/* DUPLICATOR-LITE (PHP BUILD MODE) MYSQL SCRIPT CREATED ON : 2018-06-19 20:49:33 */

/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `wp_ai1ec_event_category_meta` (
  `term_id` bigint(20) NOT NULL,
  `term_color` varchar(255) NOT NULL,
  `term_image` varchar(254) DEFAULT NULL,
  PRIMARY KEY (`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_ai1ec_event_feeds` (
  `feed_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `feed_url` varchar(255) NOT NULL,
  `feed_category` varchar(255) NOT NULL,
  `feed_tags` varchar(255) NOT NULL,
  `comments_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `map_display_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `keep_tags_categories` tinyint(1) NOT NULL DEFAULT '0',
  `keep_old_events` tinyint(1) NOT NULL DEFAULT '0',
  `import_timezone` tinyint(1) NOT NULL DEFAULT '0',
  `feed_name` varchar(255) NOT NULL,
  PRIMARY KEY (`feed_id`),
  UNIQUE KEY `feed` (`feed_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_ai1ec_event_instances` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) NOT NULL,
  `start` int(10) unsigned NOT NULL,
  `end` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `evt_instance` (`post_id`,`start`)
) ENGINE=MyISAM AUTO_INCREMENT=942 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_ai1ec_event_instances_2014_07_28_27748` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) NOT NULL,
  `start` datetime NOT NULL,
  `end` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=173 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_ai1ec_events` (
  `post_id` bigint(20) NOT NULL,
  `allday` tinyint(1) NOT NULL,
  `recurrence_rules` longtext,
  `exception_rules` longtext,
  `recurrence_dates` longtext,
  `exception_dates` longtext,
  `venue` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `province` varchar(255) DEFAULT NULL,
  `postal_code` varchar(32) DEFAULT NULL,
  `show_map` tinyint(1) DEFAULT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `contact_phone` varchar(32) DEFAULT NULL,
  `contact_email` varchar(128) DEFAULT NULL,
  `cost` varchar(255) DEFAULT NULL,
  `ical_feed_url` varchar(255) DEFAULT NULL,
  `ical_source_url` varchar(255) DEFAULT NULL,
  `ical_organizer` varchar(255) DEFAULT NULL,
  `ical_contact` varchar(255) DEFAULT NULL,
  `ical_uid` varchar(255) DEFAULT NULL,
  `start` int(10) unsigned NOT NULL,
  `end` int(10) unsigned DEFAULT NULL,
  `timezone_name` varchar(50) DEFAULT NULL,
  `instant_event` tinyint(1) NOT NULL DEFAULT '0',
  `contact_url` varchar(255) DEFAULT NULL,
  `ticket_url` varchar(255) DEFAULT NULL,
  `show_coordinates` tinyint(1) DEFAULT NULL,
  `latitude` decimal(20,15) DEFAULT NULL,
  `longitude` decimal(20,15) DEFAULT NULL,
  `force_regenerate` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`post_id`),
  KEY `feed_source` (`ical_feed_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_ai1ec_events_2014_07_28_27748` (
  `post_id` bigint(20) NOT NULL,
  `start` datetime NOT NULL,
  `end` datetime DEFAULT NULL,
  `allday` tinyint(1) NOT NULL,
  `recurrence_rules` longtext,
  `exception_rules` longtext,
  `recurrence_dates` longtext,
  `exception_dates` longtext,
  `venue` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `province` varchar(255) DEFAULT NULL,
  `postal_code` varchar(32) DEFAULT NULL,
  `show_map` tinyint(1) DEFAULT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `contact_phone` varchar(32) DEFAULT NULL,
  `contact_email` varchar(128) DEFAULT NULL,
  `cost` varchar(255) DEFAULT NULL,
  `ical_feed_url` varchar(255) DEFAULT NULL,
  `ical_source_url` varchar(255) DEFAULT NULL,
  `ical_organizer` varchar(255) DEFAULT NULL,
  `ical_contact` varchar(255) DEFAULT NULL,
  `ical_uid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`post_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_charitable_campaign_donations` (
  `campaign_donation_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `donation_id` bigint(20) unsigned NOT NULL,
  `donor_id` bigint(20) unsigned NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `campaign_name` text NOT NULL,
  `amount` decimal(13,4) NOT NULL,
  PRIMARY KEY (`campaign_donation_id`),
  KEY `donation` (`donation_id`),
  KEY `campaign` (`campaign_id`),
  KEY `donor` (`donor_id`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_charitable_donors` (
  `donor_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `email` varchar(100) NOT NULL,
  `first_name` varchar(255) DEFAULT '',
  `last_name` varchar(255) DEFAULT '',
  `date_joined` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`donor_id`),
  KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_cntctfrm_field` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` char(100) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_gf_draft_submissions` (
  `uuid` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source_url` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `submission` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_gf_entry` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT '0',
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `ip` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_agent` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `currency` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `transaction_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_fulfilled` tinyint(1) DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `transaction_type` tinyint(1) DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `form_id_status` (`form_id`,`status`)
) ENGINE=MyISAM AUTO_INCREMENT=738 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_gf_entry_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `entry_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `entry_id` (`entry_id`),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=MyISAM AUTO_INCREMENT=7399 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_gf_entry_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci,
  `note_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sub_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `entry_user_key` (`entry_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_gf_form` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_trash` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_gf_form_meta` (
  `form_id` mediumint(8) unsigned NOT NULL,
  `display_meta` longtext COLLATE utf8mb4_unicode_ci,
  `entries_grid_meta` longtext COLLATE utf8mb4_unicode_ci,
  `confirmations` longtext COLLATE utf8mb4_unicode_ci,
  `notifications` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_gf_form_view` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `count` mediumint(8) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=81594 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_give_customermeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `customer_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `customer_id` (`customer_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_give_customers` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `email` varchar(50) NOT NULL,
  `name` mediumtext NOT NULL,
  `purchase_value` mediumtext NOT NULL,
  `purchase_count` bigint(20) NOT NULL,
  `payment_ids` longtext NOT NULL,
  `notes` longtext NOT NULL,
  `date_created` datetime NOT NULL,
  `token` varchar(255) NOT NULL,
  `verify_key` varchar(255) NOT NULL,
  `verify_throttle` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`),
  KEY `user` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_give_donormeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `donor_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `donor_id` (`donor_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_give_donors` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `email` varchar(50) NOT NULL,
  `name` mediumtext NOT NULL,
  `purchase_value` mediumtext NOT NULL,
  `purchase_count` bigint(20) NOT NULL,
  `payment_ids` longtext NOT NULL,
  `notes` longtext NOT NULL,
  `date_created` datetime NOT NULL,
  `token` varchar(255) NOT NULL,
  `verify_key` varchar(255) NOT NULL,
  `verify_throttle` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`),
  KEY `user` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_give_formmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `form_id` (`form_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=20005 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_give_logmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `log_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `log_id` (`log_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_give_logs` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `log_title` longtext NOT NULL,
  `log_content` longtext NOT NULL,
  `log_parent` bigint(20) NOT NULL,
  `log_type` mediumtext NOT NULL,
  `log_date` datetime NOT NULL,
  `log_date_gmt` datetime NOT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_give_paymentmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `payment_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `payment_id` (`payment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=19981 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_give_sequential_ordering` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `payment_id` bigint(20) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_layerslider` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `author` int(10) NOT NULL DEFAULT '0',
  `name` varchar(100) DEFAULT '',
  `slug` varchar(100) DEFAULT '',
  `data` mediumtext NOT NULL,
  `date_c` int(10) NOT NULL,
  `date_m` int(10) NOT NULL,
  `schedule_start` int(10) NOT NULL DEFAULT '0',
  `schedule_end` int(10) NOT NULL DEFAULT '0',
  `flag_hidden` tinyint(1) NOT NULL DEFAULT '0',
  `flag_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `flag_popup` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_layerslider_revisions` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `slider_id` int(10) NOT NULL,
  `author` int(10) NOT NULL DEFAULT '0',
  `data` mediumtext NOT NULL,
  `date_c` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_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=5 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_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=10002 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_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=utf8;

CREATE TABLE `wp_nextend2_smartslider3_sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias` varchar(255) DEFAULT NULL,
  `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',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_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=utf8;

CREATE TABLE `wp_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,
  `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=5 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=97539 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=20083 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci 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=MyISAM AUTO_INCREMENT=16088 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `advanced` longtext,
  `params` longtext NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=164 DEFAULT CHARSET=latin1;

CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE `wp_rg_form` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `date_created` datetime NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `is_trash` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_form_meta` (
  `form_id` mediumint(8) unsigned NOT NULL,
  `display_meta` longtext,
  `entries_grid_meta` longtext,
  `confirmations` longtext,
  `notifications` longtext,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_form_view` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` mediumint(8) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM AUTO_INCREMENT=81421 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_incomplete_submissions` (
  `uuid` char(32) NOT NULL,
  `email` varchar(255) DEFAULT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(39) NOT NULL,
  `source_url` longtext NOT NULL,
  `submission` longtext NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT '0',
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `ip` varchar(39) NOT NULL,
  `source_url` varchar(200) NOT NULL DEFAULT '',
  `user_agent` varchar(250) NOT NULL DEFAULT '',
  `currency` varchar(5) DEFAULT NULL,
  `payment_status` varchar(15) DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `is_fulfilled` tinyint(1) DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `transaction_type` tinyint(1) DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'active',
  `payment_method` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=731 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead_detail` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `field_number` float NOT NULL,
  `value` longtext,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_field_number` (`lead_id`,`field_number`),
  KEY `lead_field_value` (`value`(191))
) ENGINE=MyISAM AUTO_INCREMENT=7313 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead_detail_long` (
  `lead_detail_id` bigint(20) unsigned NOT NULL,
  `value` longtext,
  PRIMARY KEY (`lead_detail_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `lead_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`id`),
  KEY `lead_id` (`lead_id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `form_id_meta_key` (`form_id`,`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext,
  `note_type` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_user_key` (`lead_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_seamless_donations_audit` (
  `option_id` bigint(9) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(64) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  `donor_email` varchar(128) NOT NULL DEFAULT '',
  `created_on` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `changed_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `donor_email` (`donor_email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=255 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_wfbadleechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfblockedcommentlog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'gsb',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfblockediplog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfblocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `expiration` bigint(20) unsigned NOT NULL DEFAULT '0',
  `parameters` text,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfconfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfcrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wffilemods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT '0',
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfhits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT '0',
  `statusCode` int(11) NOT NULL DEFAULT '200',
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfhoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfknownfilelist` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfleechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wflocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wflogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfnet404s` (
  `sig` binary(16) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `URI` varchar(1000) NOT NULL,
  PRIMARY KEY (`sig`),
  KEY `k1` (`ctime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfnotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT '1000',
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfpendingissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfreversecache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfscanners` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfsnipcache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT '0',
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfstatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_wfvulnscanners` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext,
  `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=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) NOT NULL,
  `message` longtext NOT NULL,
  `context` longtext,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) 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=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE TABLE `wp_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(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) 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=MyISAM DEFAULT CHARSET=utf8mb4;


/* INSERT TABLE DATA: wp_ai1ec_event_category_meta */
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("5", "#dd9900", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("6", "#0000aa", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("10", "#992200", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("11", "#dd4433", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("12", "#007777", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("13", "#00bbaa", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("14", "#bbbb00", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("15", "#777777", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("18", "#880077", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("21", "", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("22", "", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("57", "#008800", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("67", "#aa6600", NULL);
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("69", "#777777", "");
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("70", "", "");
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("71", "", "");
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("73", "", "");
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("74", "", "");
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("75", "", "");
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("76", "#1abc9c", "");
INSERT INTO `wp_ai1ec_event_category_meta` VALUES("78", "", "");

/* INSERT TABLE DATA: wp_ai1ec_event_instances */
INSERT INTO `wp_ai1ec_event_instances` VALUES("176", "806", "1400205600", "1400214600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("177", "629", "1393088400", "1393113600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("178", "627", "1391878800", "1391904000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("179", "371", "1396022400", "1396047600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("180", "701", "1392483600", "1392508800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("181", "558", "1402156800", "1402185600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("182", "833", "1404748800", "1404777600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("183", "833", "1404835200", "1404864000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("184", "833", "1404921600", "1404950400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("185", "833", "1405008000", "1405036800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("186", "833", "1405094400", "1405123200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("195", "13071", "1414168200", "1414191600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("203", "13739", "1414684800", "1414711800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("226", "13768", "1413424800", "1413432000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("227", "13768", "1414029600", "1414036800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("228", "13768", "1414634400", "1414641600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("229", "13768", "1415242800", "1415250000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("230", "13768", "1415847600", "1415854800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("234", "837", "1416709800", "1416718800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("239", "13760", "1412438400", "1412463600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("240", "369", "1397318400", "1397343600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("241", "274", "1393432200", "1393437600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("245", "277", "1395936000", "1395961200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("249", "13801", "1423328400", "1423357200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("260", "13813", "1422723600", "1422748800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("293", "13900", "1433606400", "1433635200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("297", "13973", "1434211200", "1434236400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("298", "13979", "1438012800", "1438038000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("299", "13979", "1438099200", "1438124400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("300", "13979", "1438185600", "1438210800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("301", "13979", "1438272000", "1438297200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("302", "13979", "1438358400", "1438383600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("306", "13995", "1434819600", "1434826800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("399", "14118", "1445130000", "1445144400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("404", "14112", "1449338400", "1449345600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("406", "14170", "1455426000", "1455411600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("408", "14174", "1454778000", "1454803200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("411", "14200", "1456592400", "1456621200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("412", "14200", "1457197200", "1457226000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("418", "14235", "1454554800", "1454562000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("419", "14235", "1455159600", "1455166800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("420", "14235", "1455764400", "1455771600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("421", "14235", "1456369200", "1456376400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("422", "14235", "1456974000", "1456981200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("443", "14268", "1467648000", "1467673200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("444", "14268", "1467734400", "1467759600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("445", "14268", "1467820800", "1467846000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("446", "14268", "1467907200", "1467932400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("447", "14268", "1467993600", "1468018800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("448", "14278", "1465056000", "1465084800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("505", "14297", "1460844000", "1460849400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("506", "14297", "1461448800", "1461454200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("507", "14297", "1462053600", "1462059000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("508", "14297", "1462658400", "1462663800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("509", "14297", "1463263200", "1463268600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("510", "14297", "1464472800", "1464478200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("511", "14297", "1465077600", "1465083000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("512", "14297", "1465682400", "1465687800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("513", "14270", "1460685600", "1460692800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("514", "14270", "1461290400", "1461297600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("515", "14270", "1461895200", "1461902400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("516", "14270", "1462500000", "1462507200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("517", "14270", "1463104800", "1463112000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("524", "14311", "1464454800", "1464462000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("541", "14369", "1475784000", "1475794800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("542", "14369", "1483045200", "1483056000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("543", "14369", "1483650000", "1483660800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("544", "14369", "1484254800", "1484265600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("551", "14382", "1473991200", "1473998400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("552", "14382", "1474596000", "1474603200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("553", "14382", "1475200800", "1475208000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("554", "14382", "1475805600", "1475812800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("555", "14382", "1476410400", "1476417600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("563", "14376", "1471708800", "1471734000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("609", "14408", "1477173600", "1477179000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("610", "14408", "1477778400", "1477783800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("611", "14408", "1478383200", "1478388600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("612", "14408", "1478991600", "1478997000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("613", "14408", "1479596400", "1479601800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("614", "14408", "1480201200", "1480206600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("615", "14408", "1480806000", "1480811400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("616", "14408", "1481410800", "1481416200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("642", "14597", "1485622800", "1485633600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("705", "14609", "1489093200", "1489104000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("767", "14629", "1486832400", "1486861200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("779", "14654", "1489852800", "1489863600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("837", "14676", "1492565400", "1492572600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("845", "14673", "1492898400", "1492903800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("847", "14746", "1499122800", "1499128200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("848", "14746", "1499209200", "1499214600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("849", "14746", "1499295600", "1499301000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("850", "14746", "1499382000", "1499387400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("851", "14746", "1499727600", "1499733000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("852", "14746", "1499814000", "1499819400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("853", "14746", "1499900400", "1499905800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("854", "14746", "1499986800", "1499992200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("863", "14752", "1499122800", "1499128200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("864", "14752", "1499209200", "1499214600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("865", "14752", "1499295600", "1499301000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("866", "14752", "1499382000", "1499387400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("867", "14752", "1499727600", "1499733000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("868", "14752", "1499814000", "1499819400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("869", "14752", "1499900400", "1499905800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("870", "14752", "1499986800", "1499992200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("885", "15078", "1507996800", "1508023800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("893", "15195", "1508634000", "1508648400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("897", "15133", "1509069600", "1509076800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("898", "15133", "1509674400", "1509681600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("899", "15133", "1510282800", "1510290000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("900", "15133", "1510887600", "1510894800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("901", "15133", "1511492400", "1511499600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("903", "15215", "1508464800", "1508472000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("904", "15217", "1508013000", "1508023800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("906", "15209", "1509827400", "1509838200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("907", "15209", "1508617800", "1508628600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("908", "15209", "1509222600", "1509233400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("915", "15268", "1518145200", "1521172800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("916", "14478", "1517968800", "1519790400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("917", "14595", "1516298400", "1516320000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("926", "15329", "1522287000", "1526527800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("928", "14705", "1528560000", "1528588800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("929", "15366", "1527366600", "1527377400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("930", "15147", "1524880800", "1524956400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("931", "14759", "1534780800", "1535151600");
INSERT INTO `wp_ai1ec_event_instances` VALUES("932", "14759", "1534867200", "1535238000");
INSERT INTO `wp_ai1ec_event_instances` VALUES("933", "14759", "1534953600", "1535324400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("934", "14759", "1535040000", "1535410800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("935", "14759", "1535126400", "1535497200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("936", "15385", "1507685400", "1507686300");
INSERT INTO `wp_ai1ec_event_instances` VALUES("938", "15175", "1522373400", "1524193200");
INSERT INTO `wp_ai1ec_event_instances` VALUES("939", "15340", "1539309600", "1542344400");
INSERT INTO `wp_ai1ec_event_instances` VALUES("940", "16067", "1531359000", "1535599800");
INSERT INTO `wp_ai1ec_event_instances` VALUES("941", "16068", "1532655000", "1535684400");

/* INSERT TABLE DATA: wp_ai1ec_event_instances_2014_07_28_27748 */
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("65", "274", "2014-02-26 16:30:00", "2014-02-26 18:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("69", "277", "2014-03-27 16:00:00", "2014-03-27 23:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("70", "371", "2014-03-28 16:00:00", "2014-03-28 23:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("108", "627", "2014-02-08 17:00:00", "2014-02-09 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("109", "629", "2014-02-22 17:00:00", "2014-02-23 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("110", "558", "2014-06-07 16:00:00", "2014-06-08 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("111", "701", "2014-02-15 17:00:00", "2014-02-16 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("112", "369", "2014-04-12 16:00:00", "2014-04-12 23:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("115", "806", "2014-05-16 02:00:00", "2014-05-16 04:30:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("132", "833", "2014-07-07 16:00:00", "2014-07-08 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("133", "833", "2014-07-08 16:00:00", "2014-07-09 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("134", "833", "2014-07-09 16:00:00", "2014-07-10 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("135", "833", "2014-07-10 16:00:00", "2014-07-11 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("136", "833", "2014-07-11 16:00:00", "2014-07-12 00:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("164", "13158", "2014-10-18 16:00:00", "2014-10-18 23:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("171", "13071", "2014-10-24 16:30:00", "2014-10-24 23:00:00");
INSERT INTO `wp_ai1ec_event_instances_2014_07_28_27748` VALUES("172", "837", "2014-11-23 02:30:00", "2014-11-23 05:00:00");

/* INSERT TABLE DATA: wp_ai1ec_events */
INSERT INTO `wp_ai1ec_events` VALUES("274", "0", "", "", "", "", "St Luke Cedar Hill Anglican Church, Hall Lounge", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "South Island Centre", "250-472-2851, extension 101", "courses@localhost", "a:2:{s:4:\"cost\";s:23:\"Suggested Donation: $10\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-274@localhost", "1393432200", "1393437600", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("277", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Margaret Anderson", "250-472-2851, extension 109", "courses@localhost", "a:2:{s:4:\"cost\";s:48:\"$150 for both days (please bring your own lunch)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-277@localhost", "1395936000", "1395961200", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("369", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Margaret Anderson", "250-472-2851, extension 109", "courses@localhost", "a:2:{s:4:\"cost\";s:34:\"$125 (please bring your own lunch)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-369@localhost", "1397318400", "1397343600", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("371", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Margaret Anderson", "250-472-2851, extension 109", "courses@localhost", "a:2:{s:4:\"cost\";s:49:\"$125 for both days  (please bring your own lunch)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-371@localhost", "1396022400", "1396047600", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("558", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Bill Cole", "250-472-2851, extension 102", "courses@localhost", "a:2:{s:4:\"cost\";s:161:\"Option 1: $150 (workshop only); Option 2: $225 (workshop and 2x one-hour follow-up sessions); Option 3: $175 (3x one-hour individual couple counselling sessions)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-558@localhost", "1402156800", "1402185600", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("627", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Barbara Baillie", "250-472-2851", "courses@localhost", "a:2:{s:4:\"cost\";s:22:\"$200 (includes manual)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-627@localhost", "1391878800", "1391904000", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("629", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Barbara Baillie", "250-472-2851", "courses@localhost", "a:2:{s:4:\"cost\";s:22:\"$200 (includes manual)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-629@localhost", "1393088400", "1393113600", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("701", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Bill Cole", "250-472-2851, extension 102", "courses@localhost", "a:2:{s:4:\"cost\";s:22:\"$150 (includes manual)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-701@localhost", "1392483600", "1392508800", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("806", "0", "", "", "", "", "St Luke Cedar Hill Anglican Church Hall:  Lounge", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "South Island Centre", "250-472-2851, extension 101", "admin@localhost", "a:2:{s:4:\"cost\";s:0:\"\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-806@localhost", "1400205600", "1400214600", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("833", "0", "FREQ=DAILY;UNTIL=20140712T065959Z;", "", "", "", "South Island Centre", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Bill Cole", "250-472-2851, extension 102", "courses@localhost", "a:2:{s:4:\"cost\";s:15:\"$550 per person\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-833@localhost", "1404748800", "1404777600", "UTC", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("837", "0", "", "", "", "", "Emmanuel Baptist Church; free parking; wheel-chair accessible", "Canada", "2121 Cedar Hill Cross Road, Victoria, BC V8P 2R6, Canada", "Victoria", "British Columbia", "V8P 2R6", "1", "South Island Centre", "(250) 472-2851, extension 101", "info@localhost", "a:2:{s:4:\"cost\";s:127:\"$25 (in advance by November 14, 2014; $30 (at the door - very limited availability); Payment options: cash, cheque, credit card\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-837@localhost", "1416709800", "1416718800", "America/Vancouver", "0", "", "", "1", "48.457913000000000", "-123.314179000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13071", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Barbara Baillie (facilitator)", "250-472-2851; extension 101", "courses@localhost", "a:2:{s:4:\"cost\";s:121:\"$85 per person (deadline to register and receive payment is October 17, 2014); payment options: cash, cheque, credit card\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13071@localhost", "1414168200", "1414191600", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13739", "0", "", "", "", "", "Emmanuel Baptist Church; free parking; wheel-chair accessible", "Canada", "2121 Cedar Hill Cross Road, Victoria, BC V8P 2R6, Canada", "Victoria", "British Columbia", "V8P 2R6", "1", "South Island Centre for Counselling and Training ", "250-472-2851 ext 101 ", "courses@localhost", "a:2:{s:4:\"cost\";s:112:\"$60 for Leaders of Youth; Early bird registration: October 4, 2014; $50; Registration Deadline: October 17, 2014\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13739@localhost", "1414684800", "1414711800", "America/Vancouver", "0", "", "", "1", "48.457913000000000", "-123.314179000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13760", "0", "", "", "", "", "St Mary\'s Anglican Church (Oak Bay)", "Canada", "1701 Elgin Road, Victoria, BC V8R 5L8, Canada", "Victoria", "British Columbia", "V8R 5L8", "1", "South Island Centre for Counselling and Training ", "250-472-2851 ext 101 ", "courses@localhost", "a:2:{s:4:\"cost\";s:130:\"$89 (includes lunch and breaks); deadline for registration: Wednesday, October 1, 2014; payment options: cash, cheque, credit card\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13760@localhost", "1412438400", "1412463600", "America/Vancouver", "0", "", "", "1", "48.428102000000000", "-123.319253000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13768", "0", "FREQ=WEEKLY;UNTIL=20141119T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "0", "South Island Centre for Counselling and Training ", "250-472-2851 ext 101 ", "courses@localhost", "a:2:{s:4:\"cost\";s:150:\"$175 per person (includes materials and resources); payment options: cash, cheque, credit card; payment must be received by Wednesday, October 1, 2014\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13768@localhost", "1413424800", "1413432000", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13801", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "0", "South Island Centre for Counselling and Training ", "250-472-2851 ext 101 ", "courses@localhost", "a:2:{s:4:\"cost\";s:152:\"Option 1: $150; Option 2: $225; Option 3: $175; Registration and payment due on Friday, January 31, 2015.  Payment options: cash, cheque or credit card.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13801@localhost", "1423328400", "1423357200", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13813", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "0", "South Island Centre for Counselling and Training ", "250-472-2851 ext 101 ", "courses@localhost", "a:2:{s:4:\"cost\";s:166:\"$80 per person; registration information and payment must be received no later than Friday, January 23, 2015; payment options: cash, post-dated cheque or credit card.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13813@localhost", "1422723600", "1422748800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13900", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training ", "250-472-2851 ext 101 ", "courses@localhost", "a:2:{s:4:\"cost\";s:168:\"Deadline: May 28, 2015; Options: $150 for workshop only; $175 for workshop and two 1-hr follow-up sessions; $225 for three 1-hr individual couple\'s counselling sessions\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13900@localhost", "1433606400", "1433635200", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13973", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training ", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:132:\"$80 per person; Registration and Payment to be received no later than Thursday, June 4, 2015; payment options: Cheque or credit card\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13973@localhost", "1434211200", "1434236400", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13979", "0", "FREQ=DAILY;UNTIL=20150731T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training ", "250-472-2851 ext 101 ", "courses@localhost", "a:2:{s:4:\"cost\";s:115:\"$550 per person. Registration and payment deadline: Thursday, July 23, 2015. Payment options: Cheque or credit card\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13979@localhost", "1438012800", "1438038000", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("13995", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext 101", "courses@localhost", "a:2:{s:4:\"cost\";s:133:\"$20 per person. Registration and payment must be received no later than Thursday, June 18, 2015; Payment options: credit card, cheque\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-13995@localhost", "1434819600", "1434826800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14112", "0", "", "", "", "", "St Luke Cedar Hill Anglican Parish Hall - Lounge (White Building at Cedar Hill X and Synod Rd)", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:181:\"$30 per person; registration and payment is due on Thursday, November 26, 2015; payment options: credit card, cash or cheque (there is a surcharge for all credit card transactions).\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14112@localhost", "1449338400", "1449345600", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14118", "0", "", "", "", "", "Hotel Grand Pacific (Vancouver Island Ballroom)", "Canada", "463 Belleville St, Victoria, BC V8W 1A1, Canada", "Victoria", "British Columbia", "V8W 1A1", "1", "South Island Centre for Counselling and Training", "250 472-2851", "40thfundraiser@localhost", "a:2:{s:4:\"cost\";s:129:\"$75 per person. Payment is by Credit Card only (a service charge of $5 will apply to each transaction using the Eventbrite link).\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14118@localhost", "1445130000", "1445144400", "America/Vancouver", "0", "", "", "1", "48.420643000000000", "-123.368775000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14170", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851 ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:198:\"Per couple: $150 for full day workshop; $175 for workshop and 1-hour individual couple\'s counselling session; $225 for workshop and two 1-hr follow-up sessions; deadline: Thursday, February 4, 2016.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14170@localhost", "1455426000", "1455411600", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14174", "0", "", "", "", "", "Church of the Advent", "Canada", "510 Mt View Ave, Victoria, BC V9B 2B2, Canada", "Victoria", "British Columbia", "V9B 2B2", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:207:\"$89 per person; a bursary (discounted to $25 per person) is available for Anglican parishioners from the Selkirk Region. Payment: cheque or credit card. Payment is due no later than Monday, February 1, 2016.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14174@localhost", "1454778000", "1454803200", "America/Vancouver", "0", "", "", "1", "48.436312000000000", "-123.488089000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14200", "0", "FREQ=WEEKLY;WKST=SU;BYday=SA;UNTIL=20160305T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:166:\"$200 per person (includes $20 manual). Deadline for registration and payment: Thursday, February 18, 2016. Payment options: cheque or credit card (surcharge applies).\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14200@localhost", "1456592400", "1456621200", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14235", "0", "FREQ=WEEKLY;WKST=SU;BYday=WE;UNTIL=20160309T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:139:\"$175 per person. Registration and payment deadline: Wednesday, January 27, 2016. Payment options: cheque or credit card (surcharges apply).\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14235@localhost", "1454554800", "1454562000", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14268", "0", "FREQ=DAILY;UNTIL=20160708T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:178:\"$550 per person. Registration and payment due no later than Monday, June 27, 2016; Payment options: cheque or credit card (a $5 surcharge applies to all credit card transactions)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14268@localhost", "1467648000", "1467673200", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14270", "0", "FREQ=WEEKLY;WKST=SU;BYday=TH;UNTIL=20160519T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:169:\"$175 per person. Registration and payment due: Thursday, April 7, 2016. Payment options: cheque or credit card (there is a $5 surcharge on all credit card transactions).\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14270@localhost", "1460685600", "1460692800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14278", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:158:\"$150 per couple for 1-day workshop. Registration and payment deadline: Thursday, May 26, 2016. Payment: postdated cheque or credit card ($5 surcharge applies)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14278@localhost", "1465056000", "1465084800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14297", "0", "FREQ=WEEKLY;WKST=SU;BYday=SA;UNTIL=20160611T235959Z;", "EXDATE=20160521T000000ZUNTIL=20160521T235959Z;", "", "20160521T000000ZUNTIL=20160521T235959Z;", "South Island Centre for Counselling and Training", "Canada", "", "", "British Columbia", "V8P 3E6", "0", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:186:\"Registration and Payment deadline: $45 on Tuesday, April 12, 2016; options: cash (drop off), cheque (mail or drop off by due date); $47 credit card ($2 surcharge applies; please call us)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14297@localhost", "1460844000", "1460849400", "America/Vancouver", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14311", "0", "", "", "", "", "St Luke\'s Church Hall Lounge ", "Canada", "Cedar Hill Cross and Synod Rd, Victoria, BC ", "Victoria", "British Columbia", "", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:134:\"$30 per person; registration and payment is due on Thursday, May 19, 2016; payment options: credit card ($2 surcharge) cash or cheque.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14311@localhost", "1464454800", "1464462000", "America/Vancouver", "0", "", "", "1", "48.464412000000000", "-123.338914000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14369", "0", "FREQ=WEEKLY;WKST=SU;BYday=TH;UNTIL=20170112T235959Z;", "FREQ=WEEKLY;WKST=SU;BYday=TH;UNTIL=20161222T235959Z", "", "", "South Island Centre for Counselling and Training", "Canada", "Alumni Chip Trail connector to Cedar Hill Cross Rd, Oak Bay, BC V8P 3E6, Canada", "", "British Columbia", "V8P 3E6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:192:\"$550 per person; Registration/payment due: Thursday, Sept. 29, 2016; no class Dec 22/ 29, 2016; Payment options: cheque; debit/credit card (surcharges $5 apply to all credit card transactions)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14369@localhost", "1475784000", "1475794800", "America/Vancouver", "0", "", "", "1", "48.458507000000000", "-123.312682000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14376", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "Alumni Chip Trail connector to Cedar Hill Cross Rd, Oak Bay, BC V8P 3E6, Canada", "", "British Columbia", "V8P 3E6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:160:\"$80 per person; Registration and payment deadline: Wednesday, August 17, 2017); payment options: cheque, cash, debit card, or credit card ($5 surcharge applies)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14376@localhost", "1471708800", "1471734000", "America/Vancouver", "0", "", "", "1", "48.458507000000000", "-123.312682000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14382", "0", "FREQ=WEEKLY;WKST=SU;BYday=TH;UNTIL=20161020T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "Alumni Chip Trail connector to Cedar Hill Cross Rd, Oak Bay, BC V8P 3E6, Canada", "", "British Columbia", "V8P 3E6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:150:\"$175 per person. Registration and payment due: Thursday, September 8, 2016. Payment option: Cheque, debit card, or credit card ($5 surcharge applies).\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14382@localhost", "1473991200", "1473998400", "America/Vancouver", "0", "", "", "1", "48.458507000000000", "-123.312682000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14408", "0", "FREQ=WEEKLY;WKST=SU;BYday=SA;UNTIL=20161210T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "Alumni Chip Trail connector to Cedar Hill Cross Rd, Oak Bay, BC V8P 3E6, Canada", "", "British Columbia", "V8P 3E6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:141:\"$45 per Teen; Deadline to register and pay: Friday, October 14, 2016; Payment options: Cheque, Debit Card, Credit Card ($2 surcharge applies)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14408@localhost", "1477173600", "1477179000", "America/Vancouver", "0", "", "", "1", "48.458507000000000", "-123.312682000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14478", "0", "", "", "", "", "@ South Island Centre for Counselling and Training Conference Room", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "Dr. Vibeke Vaerum, PhD", "778-587-7468", "vnvaerum@gmail.com", "a:2:{s:4:\"cost\";s:119:\"$150 per person, Registration & payment deadline: February 1, 2018. Contact Dr. Vaerum directly for registration below.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14478@localhost", "1517968800", "1519790400", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14595", "0", "", "", "", "", "St. Peter\'s (Lakehill)", "Canada", "3939 St. Peter\'s Road, Victoria (free parking & wheelchair accessible)", "Victoria", "British Columbia", "V8P 3E6", "1", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:208:\"$95 (includes lunch & nutrition breaks) 9:30am registration & coffee; registration and payment due in full on Monday, January 15, 2018; Payment options: cash, debit card (in person), credit card ($4 surcharge\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14595@localhost", "1516298400", "1516320000", "America/Vancouver", "0", "", "", "1", "48.458507000000000", "-123.312682000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14597", "0", "", "", "", "", "St Luke\'s Community Hall Lounge (Cedar Hill X Rd at Synod Rd)", "Canada", "Alumni Chip Trail connector to Cedar Hill Cross Rd, Victoria, BC V8P 3E6, Canada", "Victoria", "British Columbia", "V8P 3E6", "1", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:196:\"Cost per person: $75 (includes MBTI Test and workshop materials); Payment options: cash, check, credit card ($5 surcharge applies); registration and payment due in full on Monday, January 23, 2017\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14597@localhost", "1485622800", "1485633600", "America/Vancouver", "0", "", "", "1", "48.458507000000000", "-123.312682000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14609", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:167:\"$550 per person; Registration/payment due: Thursday, March 2, 2017; Payment options: cheque; debit or credit card (surcharges $5 apply to all credit card transactions)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14609@localhost", "1489093200", "1489104000", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14629", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:197:\"$150/couple: 1-day workshop; OR:  $175/couple: three 1-hr individual couple\'s counselling sessions; OR: $225/couple: 1-day workshop + two 1-hr follow-up sessions; Registration deadline: 3 Feb, 2017\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14629@localhost", "1486832400", "1486861200", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14654", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "0", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:183:\"$75 per person. Payment options: cheque, credit card ($4 surcharge applies) or debit card (in person only). Registration deadline and payment in full is due on Monday, March 13, 2017.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14654@localhost", "1489852800", "1489863600", "America/Vancouver", "0", "", "", "0", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14673", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "0", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:156:\"$45 per teen; Registration deadline and payment due in full: Thursday, April 13; Payment: cheque, debit (in person only), credit card ($2 surcharge applies)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14673@localhost", "1492898400", "1492903800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14676", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "0", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:172:\"$55 per person; Registration deadline and Payment due in full: Tuesday, April 11, 2017; Payment options: cheque, debit (in person only), credit card ($3 surcharge applies).\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14676@localhost", "1492565400", "1492572600", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14705", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "0", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:209:\"$150/couple: 1-day workshop (9:00am-5:00pm; OR:  $175/couple: three 1-hr individual couple\'s counselling sessions; OR: $225 per couple: 1-day workshop + two 1-hr follow-up sessions; Registration deadline: Frid\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14705@localhost", "1528560000", "1528588800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14746", "0", "FREQ=WEEKLY;WKST=SU;BYday=MO,TU,WE,TH;UNTIL=20170713T235959Z;", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:197:\"$45 per teen; Registration deadline: Thursday, June 22, 2017 at noon; Prescreening dates: Saturday, June 17 and 24, 2017; Payment: cheque, debit (in person only), credit card ($2 surcharge applies)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14746@localhost", "1499122800", "1499128200", "America/Vancouver", "0", "", "", "0", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14752", "0", "RDATE=20170704T000000Z,20170705T000000Z,20170706T000000Z,20170710T000000Z,20170711T000000Z,20170712T000000Z,20170713T000000Z", "", "20170704T000000Z,20170705T000000Z,20170706T000000Z,20170710T000000Z,20170711T000000Z,20170712T000000Z,20170713T000000Z", "", "South Island Centre for Counselling and Training", "Canada", "3821A Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "0", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:131:\"$45 per teen; Registration deadline: Thursday, June 22; Payment: cheque, debit (in person only), credit card ($2 surcharge applies)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14752@localhost", "1499122800", "1499128200", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("14759", "0", "RDATE=20180821T000000Z,20180822T000000Z,20180823T000000Z,20180824T000000Z", NULL, "20180821T000000Z,20180822T000000Z,20180823T000000Z,20180824T000000Z", NULL, "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 2M6, Canada", "Victoria", "British Columbia", "V8P 2M6", "0", "South Island Centre for Counselling and Training", "2504722851", "courses@localhost", "a:2:{s:4:\"cost\";s:184:\"$550 (includes $50 non-refundable deposit); Registration and payment due: Wednesday, Aug. 15, 2018 ; Payment options: cheque, debit (in person only), credit card ($5 surcharge applies)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-14759@localhost", "1534780800", "1535151600", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15078", "0", "", "", "", "", "St. Peter Anglican Church", "Canada", "3939 St Peter\'s Rd, Victoria, BC V8P 2J9, Canada", "Victoria", "British Columbia", "V8P 2J9", "1", "South Island Centre for Counselling and Training", "250-472-2851, ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:189:\"$105 per person; a bursary (discounted to $15 per person) is available for Anglican parishioners from the Tolmie and Selkirk Region. Registration & payment deadline: Tues, October 10, 2017.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15078@localhost", "1507996800", "1508023800", "America/Vancouver", "0", "", "", "1", "48.465551000000000", "-123.359284000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15133", "0", "FREQ=WEEKLY;WKST=SU;BYday=TH;UNTIL=20171124T235959Z;", "", "", "", "@ South Island Centre for Counselling and Training Conference Room", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "250-472-2851 ext.101", "courses@localhost", "a:2:{s:4:\"cost\";s:89:\"$135 (includes course materials) ; Registration and payment due: Thursday, Oct. 12, 2017.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15133@localhost", "1509069600", "1509076800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15147", "0", "", "", "", "", "South Island Centre (free parking, wheelchair accessible)", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "(250) 472-2851 ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:58:\"$120; Registration and payment due: Friday, April 20, 2018\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15147@localhost", "1524880800", "1524956400", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15175", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 2M6, Canada (close to UVic and Camosun); free parking, public transit access", "Victoria", "British Columbia", "V8P 2M6", "1", "", "250-472-2851 ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:118:\"$90 (includes pre-screening, materials, refreshments and snacks); Registration and payment due: Monday, March 26, 2018\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15175@localhost", "1522373400", "1524193200", "America/Vancouver", "0", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15195", "0", "", "", "", "", "Delta Ocean Pointe (Harbour Room)", "Canada", "100 Harbour Rd, Victoria, BC V9A 0G1, Canada", "Victoria", "British Columbia", "V9A 0G1", "1", "South Island Centre", "250-472-2851 ext 101", "", "a:2:{s:4:\"cost\";s:99:\"$95 per person (Purchase tickets via phone call or from our office at 3821A Cedar Hill Cross Road.)\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15195@localhost", "1508634000", "1508648400", "America/Vancouver", "0", "www.southislandcentre.ca", "", "1", "48.426969000000000", "-123.375084000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15209", "0", "RDATE=20171021T000000Z,20171028T000000Z,20171104T000000Z", "", "20171021T000000Z,20171028T000000Z,20171104T000000Z", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "250-472-2851 ext.101", "courses@localhost", "a:2:{s:4:\"cost\";s:115:\"$45 (includes pre-screening, materials, refreshments and snacks); Registration and payment due:Â October 14th, 2017\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15209@localhost", "1508617800", "1508628600", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15215", "0", "", "", "", "", "@ South Island Centre for Counselling and Training Conference Room", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "250-472-2851 ext.101", "courses@localhost", "a:2:{s:4:\"cost\";s:89:\"$135 (includes course materials) ; Registration and payment due: Thursday, Oct. 12, 2017.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15215@localhost", "1508464800", "1508472000", "America/Vancouver", "0", "", "", "0", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15217", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "250-472-2851 ext.101", "courses@localhost", "a:2:{s:4:\"cost\";s:115:\"$45 (includes pre-screening, materials, refreshments and snacks); Registration and payment due:Â October 14th, 2017\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15217@localhost", "1508013000", "1508023800", "America/Vancouver", "0", "", "", "0", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15268", "0", "FREQ=WEEKLY;WKST=SU;BYday=TH;UNTIL=20171124T235959Z;", "", "", "", "@ South Island Centre for Counselling and Training Conference Room", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "250-472-2851 ext.101", "courses@localhost", "a:2:{s:4:\"cost\";s:106:\"$175 (includes all books, materials and resources) ; Registration and payment due: Thursday, Feb. 1, 2018.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15268@localhost", "1518145200", "1521172800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15329", "0", "", "", "", "", "@ South Island Centre for Counselling and Training Conference Room", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "250-472-2851 ext.101", "courses@localhost", "a:2:{s:4:\"cost\";s:0:\"\";s:7:\"is_free\";b:1;}", "", "", NULL, NULL, "ai1ec-15329@localhost", "1522287000", "1526527800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15340", "0", NULL, NULL, NULL, NULL, "@ South Island Centre for Counselling and Training Conference Room", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "250-472-2851 ext.101", "courses@localhost", "a:2:{s:4:\"cost\";s:89:\"$135 (includes course materials) ; Registration and payment due: Thursday, Oct. 12, 2017.\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15340@localhost", "1539309600", "1542344400", "America/Vancouver", "0", "", "", "1", "48.463524000000000", "-123.337849000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15366", "0", "", "", "", "", "South Island Centre (free parking, wheelchair accessible)", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "(250) 472-2851 ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:105:\"$95 (includes MBTI testing and workshop materials); Registration and payment due: Wednesday, May 16, 2018\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15366@localhost", "1527366600", "1527377400", "America/Vancouver", "0", "", "", "0", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("15385", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill X Rd, Victoria, BC V8P 2M6, Canada (close to UVic and Camosun); free parking, public transit access", "Victoria", "British Columbia", "V8P 2M6", "1", "", "250-472-2851 ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:123:\"$55 (includes pre-screening, materials, refreshments and snacks); Registration and payment due: Tuesday, September 19, 2017\";s:7:\"is_free\";b:0;}", "", "", NULL, NULL, "ai1ec-15385@localhost", "1507685400", "1507686300", "America/Vancouver", "1", "", "", "0", "0.000000000000000", "0.000000000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("16067", "0", NULL, NULL, NULL, NULL, "@ South Island Centre for Counselling and Training Conference Room", "Canada", "3821 Cedar Hill Cross Rd, Victoria, BC V8P 3Z6, Canada", "Victoria", "British Columbia", "V8P 3Z6", "1", "", "250-472-2851 ext.101", "courses@localhost", "a:2:{s:4:\"cost\";s:0:\"\";s:7:\"is_free\";b:1;}", NULL, NULL, NULL, NULL, "ai1ec-16067@localhost/support.southislandcentre.ca", "1531359000", "1535599800", "America/Vancouver", "0", "", "", "1", "48.463001000000000", "-123.337264000000000", "0");
INSERT INTO `wp_ai1ec_events` VALUES("16068", "0", NULL, NULL, NULL, NULL, "South Island Centre for Counselling and Training", "Canada", "Campus Services Building (SEC), 3800 Finnerty Rd, Victoria, BC V8P 5C2, Canada", "Victoria", "British Columbia", "V8P 5C2", "1", "", "250-472-2851 ext. 101", "courses@localhost", "a:2:{s:4:\"cost\";s:120:\"$90 (includes pre-screening, materials, refreshments and snacks); Registration and payment due: Thursday, July  19, 2018\";s:7:\"is_free\";b:0;}", NULL, NULL, NULL, NULL, "ai1ec-16068@localhost/support.southislandcentre.ca", "1532655000", "1535684400", "America/Vancouver", "0", "", "", "1", "48.466054000000000", "-123.309892000000000", "0");

/* INSERT TABLE DATA: wp_ai1ec_events_2014_07_28_27748 */
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("274", "2014-02-26 16:30:00", "2014-02-26 18:00:00", "0", "", "", "", "", "St Luke Cedar Hill Anglican Church, Hall Lounge", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "South Island Centre", "250-472-2851, extension 101", "courses@localhost", "Suggested Donation: $10", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("277", "2014-03-27 16:00:00", "2014-03-27 23:00:00", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Margaret Anderson", "250-472-2851, extension 109", "courses@localhost", "$150 for both days (please bring your own lunch)", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("369", "2014-04-12 16:00:00", "2014-04-12 23:00:00", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Margaret Anderson", "250-472-2851, extension 109", "courses@localhost", "$125 (please bring your own lunch)", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("371", "2014-03-28 16:00:00", "2014-03-28 23:00:00", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Margaret Anderson", "250-472-2851, extension 109", "courses@localhost", "$125 for both days  (please bring your own lunch)", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("558", "2014-06-07 16:00:00", "2014-06-08 00:00:00", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Bill Cole", "250-472-2851, extension 102", "courses@localhost", "Option 1: $150 (workshop only); Option 2: $225 (workshop and 2x one-hour follow-up sessions); Option 3: $175 (3x one-hour individual couple counselling sessions) ", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("627", "2014-02-08 17:00:00", "2014-02-09 00:00:00", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Barbara Baillie", "250-472-2851", "courses@localhost", "$200 (includes manual)", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("629", "2014-02-22 17:00:00", "2014-02-23 00:00:00", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Barbara Baillie", "250-472-2851", "courses@localhost", "$200 (includes manual)", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("701", "2014-02-15 17:00:00", "2014-02-16 00:00:00", "0", "", "", "", "", "South Island Centre ", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Bill Cole", "250-472-2851, extension 102", "courses@localhost", "$150 (includes manual)", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("806", "2014-05-16 02:00:00", "2014-05-16 04:30:00", "0", "", "", "", "", "St Luke Cedar Hill Anglican Church Hall:  Lounge", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "South Island Centre", "250-472-2851, extension 101", "admin@localhost", "", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("833", "2014-07-07 16:00:00", "2014-07-08 00:00:00", "0", "FREQ=DAILY;UNTIL=20140712T065959Z;", "", "", "", "South Island Centre", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Bill Cole", "250-472-2851, extension 102", "courses@localhost", "$550 per person", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("837", "2014-11-23 02:30:00", "2014-11-23 05:00:00", "0", "", "", "", "", "", "", "", "", "", "", "0", "South Island Centre", "(250) 472-2851, extension 101", "info@localhost", "", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("13071", "2014-10-24 16:30:00", "2014-10-24 23:00:00", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Barbara Baillie (facilitator)", "250-472-2851; extension 101", "courses@localhost", "$85 per person (deadline to register and receive payment is October 17, 2014); payment options: cash, cheque, credit card", "", "", NULL, NULL, "");
INSERT INTO `wp_ai1ec_events_2014_07_28_27748` VALUES("13158", "2014-10-18 16:00:00", "2014-10-18 23:00:00", "0", "", "", "", "", "South Island Centre for Counselling and Training", "Canada", "3821 Cedar Hill Cross Road, Victoria, BC V8P 2M4, Canada", "Victoria", "British Columbia", "V8P 2M4", "1", "Margaret Anderson", "(250) 472-2851, extension 101", "courses@localhost", "$80 per person (deadline to register and receive payment: Friday, October 10, 2014); payment options: cash, cheque, credit card", "", "", NULL, NULL, "");

/* INSERT TABLE DATA: wp_charitable_campaign_donations */
INSERT INTO `wp_charitable_campaign_donations` VALUES("1", "15398", "1", "15397", "Donations", "20.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("2", "15400", "1", "15397", "Donations", "20.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("3", "15402", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("4", "15403", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("5", "15404", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("6", "15411", "1", "15397", "Donations", "50.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("7", "15412", "1", "15397", "Donations", "20.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("8", "15414", "1", "15397", "Donations", "40.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("9", "15415", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("10", "15417", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("11", "15419", "1", "15397", "Donations", "11.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("12", "15421", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("13", "15422", "1", "15397", "Donations", "11.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("14", "15423", "1", "15397", "Donations", "5.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("15", "15425", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("16", "15426", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("17", "15427", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("18", "15430", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("19", "15432", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("20", "15438", "1", "15397", "Donations", "10.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("21", "15439", "1", "15397", "Donations", "1.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("22", "15450", "1", "15397", "Donations", "4.0000");
INSERT INTO `wp_charitable_campaign_donations` VALUES("23", "15452", "1", "15397", "Donations", "10.0000");

/* INSERT TABLE DATA: wp_charitable_donors */
INSERT INTO `wp_charitable_donors` VALUES("1", "1", "jaredjewitt@gmail.com", "Jared", "tester", "2018-03-06 21:23:16");

/* INSERT TABLE DATA: wp_cntctfrm_field */
INSERT INTO `wp_cntctfrm_field` VALUES("1", "name");
INSERT INTO `wp_cntctfrm_field` VALUES("2", "email");
INSERT INTO `wp_cntctfrm_field` VALUES("3", "subject");
INSERT INTO `wp_cntctfrm_field` VALUES("4", "message");
INSERT INTO `wp_cntctfrm_field` VALUES("5", "address");
INSERT INTO `wp_cntctfrm_field` VALUES("6", "phone");
INSERT INTO `wp_cntctfrm_field` VALUES("7", "attachment");
INSERT INTO `wp_cntctfrm_field` VALUES("8", "attachment_explanations");
INSERT INTO `wp_cntctfrm_field` VALUES("9", "send_copy");
INSERT INTO `wp_cntctfrm_field` VALUES("10", "sent_from");
INSERT INTO `wp_cntctfrm_field` VALUES("11", "date_time");
INSERT INTO `wp_cntctfrm_field` VALUES("12", "coming_from");
INSERT INTO `wp_cntctfrm_field` VALUES("13", "user_agent");

/* INSERT TABLE DATA: wp_comments */
INSERT INTO `wp_comments` VALUES("3", "153", "", "", "", "", "2018-03-26 09:32:50", "2018-03-26 09:32:50", "Status changed from Pending to Abandoned.", "0", "1", "", "give_payment_note", "0", "0");
INSERT INTO `wp_comments` VALUES("4", "15914", "", "", "", "", "2018-05-23 16:04:51", "2018-05-23 23:04:51", "Status changed from Pending to Complete.", "0", "1", "", "give_payment_note", "0", "0");
INSERT INTO `wp_comments` VALUES("5", "16066", "", "", "", "", "2018-06-14 08:11:50", "2018-06-14 15:11:50", "IPN received on 06/14/2018 at 08:11", "0", "1", "", "give_payment_note", "0", "0");
INSERT INTO `wp_comments` VALUES("6", "16066", "", "", "", "", "2018-06-14 08:11:50", "2018-06-14 15:11:50", "PayPal Transaction ID: 9L129955194035046", "0", "1", "", "give_payment_note", "0", "0");
INSERT INTO `wp_comments` VALUES("7", "16066", "", "", "", "", "2018-06-14 08:11:51", "2018-06-14 15:11:51", "Status changed from Pending to Complete.", "0", "1", "", "give_payment_note", "0", "0");

/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("1", "20180619_southislandcentre", "0d3d40b6d3e45fb74755180619204853", "20", "2018-06-19 20:49:33", "Cameron", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-19 20:48:53\";s:7:\"Version\";s:6:\"1.2.40\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.35\";s:10:\"VersionPHP\";s:5:\"7.1.8\";s:9:\"VersionOS\";s:6:\"Darwin\";s:2:\"ID\";i:1;s:4:\"Name\";s:26:\"20180619_southislandcentre\";s:4:\"Hash\";s:32:\"0d3d40b6d3e45fb74755180619204853\";s:8:\"NameHash\";s:59:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:64:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-snapshots/tmp\";s:8:\"StoreURL\";s:57:\"http://localhost:8888/TestSICPage/wordpress/wp-snapshots/\";s:8:\"ScanFile\";s:69:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:7:\"Cameron\";s:7:\"Archive\";O:11:\"DUP_Archive\":19:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";s:71:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:47:\"/Applications/MAMP/htdocs/TestSICPage/wordpress\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-19 20:48:53\";s:7:\"Version\";s:6:\"1.2.40\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.35\";s:10:\"VersionPHP\";s:5:\"7.1.8\";s:9:\"VersionOS\";s:6:\"Darwin\";s:2:\"ID\";N;s:4:\"Name\";s:26:\"20180619_southislandcentre\";s:4:\"Hash\";s:32:\"0d3d40b6d3e45fb74755180619204853\";s:8:\"NameHash\";s:59:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:64:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-snapshots/tmp\";s:8:\"StoreURL\";s:57:\"http://localhost:8888/TestSICPage/wordpress/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:73:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:10:\"\0*\0Package\";r:58;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:72:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:56:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-admin\";i:1;s:66:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/uploads\";i:2;s:68:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/languages\";i:3;s:66:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/plugins\";i:4;s:65:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/themes\";i:5;s:59:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-includes\";}}s:9:\"Installer\";r:80;s:8:\"Database\";r:88;}");

/* INSERT TABLE DATA: wp_gf_entry */
INSERT INTO `wp_gf_entry` VALUES("1", "1", NULL, "2014-07-28 19:11:53", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("2", "2", NULL, "2014-07-28 19:12:48", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("3", "1", NULL, "2014-07-29 13:51:44", NULL, "0", "0", "207.81.253.66", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("4", "2", NULL, "2014-07-31 00:25:21", NULL, "0", "0", "70.71.238.144", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("5", "1", NULL, "2014-08-18 19:21:44", NULL, "0", "0", "184.151.231.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.4.4; C6906 Build/14.4.A.0.108) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.135 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("6", "3", NULL, "2014-08-27 17:53:20", NULL, "0", "0", "216.86.119.221", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("7", "2", NULL, "2014-08-28 18:04:04", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("8", "2", NULL, "2014-08-28 18:48:06", NULL, "0", "0", "154.20.41.154", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("9", "2", NULL, "2014-08-28 20:08:58", NULL, "0", "0", "70.67.253.229", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("10", "2", NULL, "2014-08-28 21:03:03", NULL, "0", "0", "131.137.245.206", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("11", "2", NULL, "2014-08-28 23:20:44", NULL, "0", "0", "142.36.252.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("12", "2", NULL, "2014-08-29 02:14:33", NULL, "0", "0", "66.189.159.162", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Firefox/31.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("13", "1", NULL, "2014-09-02 20:38:56", NULL, "0", "0", "207.6.182.49", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("14", "1", NULL, "2014-09-04 06:22:06", NULL, "0", "0", "24.68.157.160", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("15", "1", NULL, "2014-09-07 14:49:16", NULL, "0", "0", "216.232.3.230", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("16", "1", NULL, "2014-09-08 23:11:25", NULL, "0", "0", "184.66.152.99", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("17", "1", NULL, "2014-09-09 21:03:16", NULL, "0", "0", "184.66.97.35", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("18", "3", NULL, "2014-09-14 22:59:00", NULL, "0", "0", "96.54.196.122", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("19", "2", NULL, "2014-09-18 15:43:35", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("20", "2", NULL, "2014-09-20 20:16:10", NULL, "0", "0", "24.68.157.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDS; .NET4.0C; .NET4.0E)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("21", "1", NULL, "2014-09-22 18:33:00", NULL, "0", "0", "70.67.66.233", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("22", "3", NULL, "2014-09-23 16:55:02", NULL, "0", "0", "24.68.129.169", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("23", "1", NULL, "2014-09-23 18:07:00", NULL, "0", "0", "96.50.43.132", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_0 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) GSA/4.2.0.37439 Mobile/12A365 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("24", "3", NULL, "2014-09-24 08:20:04", NULL, "0", "0", "96.50.108.62", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("25", "3", NULL, "2014-09-24 14:47:12", NULL, "0", "0", "216.113.222.106", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; LCJB; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("26", "3", NULL, "2014-09-25 00:13:42", NULL, "0", "0", "184.69.27.158", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("27", "1", NULL, "2014-09-25 20:37:43", NULL, "0", "0", "24.68.131.250", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("28", "3", NULL, "2014-10-01 21:23:00", NULL, "0", "0", "70.67.67.46", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("29", "2", NULL, "2014-10-11 05:59:32", NULL, "0", "0", "96.50.109.85", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("30", "3", NULL, "2014-10-14 19:24:16", NULL, "0", "0", "24.68.129.169", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.1.17 (KHTML, like Gecko) Version/7.1 Safari/537.85.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("31", "3", NULL, "2014-10-15 16:36:20", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("32", "3", NULL, "2014-10-16 15:45:17", NULL, "0", "0", "96.54.166.193", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:32.0) Gecko/20100101 Firefox/32.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("33", "3", NULL, "2014-10-16 18:58:48", NULL, "0", "0", "70.67.185.137", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("34", "3", NULL, "2014-10-16 19:58:35", NULL, "0", "0", "24.108.133.208", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("35", "3", NULL, "2014-10-17 02:49:56", NULL, "0", "0", "207.216.39.113", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/", "Mozilla/5.0 (Linux; Android 4.4.2; SGH-I337M Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.102 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("36", "3", NULL, "2014-10-17 17:53:37", NULL, "0", "0", "96.50.64.37", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (iPad; CPU OS 8.0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) 1Password/5.1 (like Version/12A365 Mobile/8.0 Safari/8536.25)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("37", "1", NULL, "2014-10-23 16:56:30", NULL, "0", "0", "108.180.29.10", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("38", "1", NULL, "2014-11-02 22:47:26", NULL, "0", "0", "216.13.187.190", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.1.17 (KHTML, like Gecko) Version/7.1 Safari/537.85.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("39", "6", NULL, "2014-11-02 23:58:45", NULL, "0", "0", "96.50.76.246", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("40", "3", NULL, "2014-11-04 18:50:15", NULL, "0", "0", "108.180.146.46", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("41", "1", NULL, "2014-11-04 23:28:19", NULL, "0", "0", "184.66.16.43", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("42", "3", NULL, "2014-11-05 00:41:07", NULL, "0", "0", "24.244.23.66", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Linux; Android 4.4.2; HTC One Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.114 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("43", "1", NULL, "2014-11-05 16:05:19", NULL, "0", "0", "184.66.16.43", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("44", "1", NULL, "2014-11-10 22:27:21", NULL, "0", "0", "64.141.7.66", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("45", "1", NULL, "2014-11-14 04:41:31", NULL, "0", "0", "24.68.112.161", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.74.9 (KHTML, like Gecko) Version/7.0.2 Safari/537.74.9", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("46", "1", NULL, "2014-11-14 05:16:05", NULL, "0", "0", "24.68.112.161", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("47", "6", NULL, "2014-11-16 00:41:22", NULL, "0", "0", "154.5.209.178", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201", "Mozilla/5.0 (Windows NT 5.1; rv:33.0) Gecko/20100101 Firefox/33.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("48", "1", NULL, "2014-11-17 18:37:10", NULL, "0", "0", "24.108.148.145", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.1.17 (KHTML, like Gecko) Version/7.1 Safari/537.85.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("49", "3", NULL, "2014-11-23 23:52:05", NULL, "0", "0", "24.68.113.20", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.1.25 (KHTML, like Gecko) Version/8.0 Safari/600.1.25", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("50", "1", NULL, "2014-11-24 20:15:21", NULL, "0", "0", "96.50.10.195", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B436 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("51", "1", NULL, "2014-12-04 19:32:05", NULL, "0", "0", "96.50.84.237", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:33.0) Gecko/20100101 Firefox/33.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("52", "2", NULL, "2014-12-15 19:11:58", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("53", "1", NULL, "2014-12-23 17:17:39", NULL, "0", "0", "24.108.150.98", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; ASU2JS; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("54", "1", NULL, "2014-12-29 16:18:30", NULL, "0", "0", "24.108.86.144", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.2.2; B1-730HD Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.93 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("55", "1", NULL, "2014-12-29 20:30:42", NULL, "0", "0", "24.68.113.71", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("56", "1", NULL, "2015-01-07 22:56:36", NULL, "0", "0", "24.108.82.185", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("57", "1", NULL, "2015-01-13 23:57:43", NULL, "0", "0", "24.68.12.158", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("58", "3", NULL, "2015-01-17 01:58:06", NULL, "0", "0", "184.66.139.3", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("59", "3", NULL, "2015-01-24 05:57:08", NULL, "0", "0", "24.69.67.71", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/", "Mozilla/5.0 (Windows NT 6.0; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("60", "1", NULL, "2015-01-28 22:43:38", NULL, "0", "0", "207.216.0.57", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("61", "1", NULL, "2015-02-05 19:06:50", NULL, "0", "0", "75.156.75.95", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("62", "1", NULL, "2015-02-06 18:07:47", NULL, "0", "0", "207.194.65.204", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("63", "1", NULL, "2015-02-10 20:20:07", NULL, "0", "0", "96.50.106.97", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/537.75.14", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("64", "1", NULL, "2015-02-12 16:56:39", NULL, "0", "0", "96.54.36.14", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("65", "1", NULL, "2015-02-17 05:51:02", NULL, "0", "0", "96.54.193.130", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("66", "7", NULL, "2015-02-18 20:30:04", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("67", "7", NULL, "2015-02-18 20:36:42", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "1", NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("68", "7", NULL, "2015-02-18 20:46:08", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "1", NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("69", "7", NULL, "2015-02-18 20:54:49", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "1", NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("70", "1", NULL, "2015-02-24 00:54:02", NULL, "0", "0", "184.151.231.222", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("71", "1", NULL, "2015-02-24 20:46:09", NULL, "0", "0", "184.69.26.218", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("72", "1", NULL, "2015-02-25 22:26:42", NULL, "0", "0", "209.91.107.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D169 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("73", "1", NULL, "2015-03-06 02:25:00", NULL, "0", "0", "184.66.38.210", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("74", "1", NULL, "2015-03-06 04:40:20", NULL, "0", "0", "184.66.68.233", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("75", "1", NULL, "2015-03-09 09:33:18", NULL, "0", "0", "24.69.80.72", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; Nexus 5 Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.109 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("76", "1", NULL, "2015-03-21 22:13:47", NULL, "0", "0", "142.104.37.93", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("77", "2", NULL, "2015-03-23 17:58:46", NULL, "0", "0", "184.66.135.231", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("78", "1", NULL, "2015-03-25 20:56:22", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("79", "3", NULL, "2015-03-25 21:09:15", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("80", "1", NULL, "2015-03-31 18:23:45", NULL, "0", "0", "184.66.135.231", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.104 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("81", "7", NULL, "2015-04-01 13:21:49", NULL, "0", "0", "96.50.110.41", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (iPad; CPU OS 7_0_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) GSA/3.2.0.25255 Mobile/11B511 Safari/8536.25", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("82", "3", NULL, "2015-04-07 16:35:15", NULL, "0", "0", "142.104.35.101", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("83", "1", NULL, "2015-04-12 05:12:47", NULL, "0", "0", "99.199.0.210", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("84", "1", NULL, "2015-04-12 16:53:43", NULL, "0", "0", "216.232.157.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F69 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("85", "1", NULL, "2015-04-12 16:53:44", NULL, "0", "0", "216.232.157.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F69 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("86", "7", NULL, "2015-04-14 16:16:26", NULL, "0", "0", "198.168.152.20", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("87", "3", NULL, "2015-04-14 22:00:36", NULL, "0", "0", "184.66.132.93", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/?instance_id=294", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("88", "1", NULL, "2015-04-16 00:45:16", NULL, "0", "0", "108.180.150.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("89", "3", NULL, "2015-04-16 15:41:20", NULL, "0", "0", "131.137.245.206", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("90", "3", NULL, "2015-04-29 04:24:32", NULL, "0", "0", "24.108.115.169", "http://localhost:8888/TestSICPage/wordpress/calendar/?request_type=json&ai1ec_doing_ajax=true", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.5.17 (KHTML, like Gecko) Version/8.0.5 Safari/600.5.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("91", "3", NULL, "2015-04-29 04:25:50", NULL, "0", "0", "24.108.115.169", "http://localhost:8888/TestSICPage/wordpress/calendar/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.5.17 (KHTML, like Gecko) Version/8.0.5 Safari/600.5.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("92", "1", NULL, "2015-04-30 13:58:55", NULL, "0", "0", "216.232.157.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F69 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("93", "1", NULL, "2015-05-03 15:34:36", NULL, "0", "0", "207.6.127.99", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("94", "1", NULL, "2015-05-05 15:35:39", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("95", "3", NULL, "2015-05-10 23:34:31", NULL, "0", "0", "184.66.154.230", "http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-mondays-may-25-june-1-8-2015-facilitator-rosemary-merritt/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("96", "3", NULL, "2015-05-14 16:35:27", NULL, "0", "0", "24.108.74.120", "http://localhost:8888/TestSICPage/wordpress/event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("97", "3", NULL, "2015-05-19 17:15:42", NULL, "0", "0", "192.40.236.6", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-6-2015/?instance_id=293", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("98", "3", NULL, "2015-05-20 22:47:59", NULL, "0", "0", "184.66.41.195", "http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.65 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("99", "1", NULL, "2015-05-20 23:06:49", NULL, "0", "0", "96.50.86.105", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.2.2; ME173X Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("100", "3", NULL, "2015-05-23 23:14:14", NULL, "0", "0", "173.180.30.181", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-6-2015/?instance_id=293", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("101", "1", NULL, "2015-05-26 23:49:18", NULL, "0", "0", "72.143.232.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/5.2.43972 Mobile/12F70 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("102", "1", NULL, "2015-05-30 02:05:48", NULL, "0", "0", "24.108.129.237", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("103", "2", NULL, "2015-06-02 02:34:50", NULL, "0", "0", "24.108.88.96", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:38.0) Gecko/20100101 Firefox/38.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("104", "3", NULL, "2015-06-02 18:54:06", NULL, "0", "0", "24.68.120.185", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("105", "1", NULL, "2015-06-03 17:50:22", NULL, "0", "0", "184.69.177.34", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("106", "1", NULL, "2015-06-04 14:11:53", NULL, "0", "0", "144.173.28.149", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("107", "1", NULL, "2015-06-12 04:36:00", NULL, "0", "0", "96.50.80.186", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/7.1.6 Safari/537.85.15", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("108", "3", NULL, "2015-06-15 20:14:40", NULL, "0", "0", "72.2.1.5", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("109", "3", NULL, "2015-06-16 18:16:03", NULL, "0", "0", "10.21.80.1", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("110", "1", NULL, "2015-06-28 17:58:10", NULL, "0", "0", "104.142.119.40", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("111", "1", NULL, "2015-07-06 13:49:38", NULL, "0", "0", "97.75.177.149", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("112", "1", NULL, "2015-07-11 01:16:47", NULL, "0", "0", "24.114.91.161", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D201 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("113", "1", NULL, "2015-07-16 18:44:44", NULL, "0", "0", "75.157.168.146", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("114", "8", NULL, "2015-07-30 19:54:12", NULL, "0", "0", "24.108.93.67", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("115", "2", NULL, "2015-08-06 21:23:33", NULL, "0", "0", "96.50.8.53", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/7.1.7 Safari/537.85.16", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("116", "8", NULL, "2015-08-16 01:38:37", NULL, "0", "0", "64.180.86.215", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("117", "1", NULL, "2015-08-21 03:19:39", NULL, "0", "0", "154.20.40.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.155 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("118", "2", NULL, "2015-08-25 21:53:21", NULL, "0", "0", "108.180.165.26", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.155 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("119", "1", NULL, "2015-08-25 21:56:50", NULL, "0", "0", "108.180.165.26", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.155 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("120", "1", NULL, "2015-08-29 18:25:17", NULL, "0", "0", "154.20.68.46", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("121", "1", NULL, "2015-09-07 05:49:05", NULL, "0", "0", "24.68.159.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("122", "2", NULL, "2015-09-08 18:16:25", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("123", "2", NULL, "2015-09-10 17:39:08", NULL, "0", "0", "199.107.64.228", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("124", "1", NULL, "2015-09-14 20:43:04", NULL, "0", "0", "154.20.32.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("125", "1", NULL, "2015-09-17 00:14:24", NULL, "0", "0", "154.5.183.23", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.1.1; D6603 Build/23.4.A.0.570) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/40.0.2214.89 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("126", "1", NULL, "2015-09-23 20:37:16", NULL, "0", "0", "184.71.15.166", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("127", "1", NULL, "2015-09-24 16:45:12", NULL, "0", "0", "96.54.167.1", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("128", "3", NULL, "2015-09-24 16:47:25", NULL, "0", "0", "162.156.84.37", "http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/", "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B435 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("129", "1", NULL, "2015-09-25 00:50:57", NULL, "0", "0", "184.66.114.65", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("130", "3", NULL, "2015-09-30 22:56:01", NULL, "0", "0", "184.66.114.65", "http://localhost:8888/TestSICPage/wordpress/event/14103/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("131", "1", NULL, "2015-10-11 20:37:05", NULL, "0", "0", "24.68.124.97", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("132", "8", NULL, "2015-10-12 17:17:03", NULL, "0", "0", "24.69.73.122", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("133", "1", NULL, "2015-10-13 19:32:39", NULL, "0", "0", "24.108.112.16", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("134", "1", NULL, "2015-10-14 22:29:08", NULL, "0", "0", "104.200.154.48", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("135", "1", NULL, "2015-10-15 01:03:21", NULL, "0", "0", "96.54.165.249", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("136", "1", NULL, "2015-10-16 18:32:50", NULL, "0", "0", "96.50.29.185", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS x86_64 7262.57.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.98 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("137", "3", NULL, "2015-10-19 16:25:01", NULL, "0", "0", "96.54.165.77", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("138", "1", NULL, "2015-10-20 13:01:22", NULL, "0", "0", "24.108.66.171", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("139", "3", NULL, "2015-10-20 17:01:21", NULL, "0", "0", "184.71.12.218", "http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/?instance_i", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("140", "8", NULL, "2015-10-21 00:32:31", NULL, "0", "0", "24.108.128.2", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/?instance_id=318", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; LCJB; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("141", "1", NULL, "2015-10-22 22:40:31", NULL, "0", "0", "131.137.245.208", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("142", "1", NULL, "2015-10-24 00:25:27", NULL, "0", "0", "184.66.128.166", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/6.1.3 Safari/537.75.14", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("143", "3", NULL, "2015-10-27 22:01:28", NULL, "0", "0", "184.69.2.234", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("144", "1", NULL, "2015-10-29 04:04:53", NULL, "0", "0", "96.54.177.120", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("145", "1", NULL, "2015-10-30 02:47:57", NULL, "0", "0", "24.68.101.123", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; rv:41.0) Gecko/20100101 Firefox/41.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("146", "1", NULL, "2015-10-31 16:51:16", NULL, "0", "0", "154.20.49.202", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("147", "1", NULL, "2015-11-02 18:45:35", NULL, "0", "0", "184.66.108.237", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:41.0) Gecko/20100101 Firefox/41.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("148", "8", NULL, "2015-11-02 23:06:50", NULL, "0", "0", "70.67.82.215", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/41.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("149", "8", NULL, "2015-11-02 23:11:08", NULL, "0", "0", "70.67.82.215", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/41.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("150", "1", NULL, "2015-11-04 20:34:47", NULL, "0", "0", "170.146.14.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("151", "1", NULL, "2015-11-06 22:46:48", NULL, "0", "0", "24.108.76.147", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("152", "7", NULL, "2015-11-10 07:00:41", NULL, "0", "0", "112.196.169.152", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("153", "1", NULL, "2015-11-15 20:44:08", NULL, "0", "0", "24.68.65.98", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("154", "5", NULL, "2015-11-16 04:33:17", NULL, "0", "0", "24.68.30.24", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-form-general-submission/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; MASBJS; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("155", "3", NULL, "2015-11-22 12:48:34", NULL, "0", "0", "69.12.79.149", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("156", "3", NULL, "2015-11-23 19:16:13", NULL, "0", "0", "64.114.18.129", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("157", "3", NULL, "2015-11-23 19:17:57", NULL, "0", "0", "64.114.18.129", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("158", "3", NULL, "2015-11-23 22:53:51", NULL, "0", "0", "64.114.18.129", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("159", "3", NULL, "2015-11-23 22:55:23", NULL, "0", "0", "64.114.18.129", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("160", "3", NULL, "2015-11-25 18:07:14", NULL, "0", "0", "64.114.222.252", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("161", "1", NULL, "2015-11-25 21:52:00", NULL, "0", "0", "96.50.108.129", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:42.0) Gecko/20100101 Firefox/42.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("162", "8", NULL, "2015-11-27 03:16:59", NULL, "0", "0", "154.20.196.21", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("163", "1", NULL, "2015-11-30 05:11:11", NULL, "0", "0", "184.69.163.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("164", "3", NULL, "2015-11-30 20:05:16", NULL, "0", "0", "24.108.136.68", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("165", "1", NULL, "2015-12-02 22:11:31", NULL, "0", "0", "184.66.161.123", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13B143 [FBAN/MessengerForiOS;FBAV/50.0.0.15.72;FBBV/17975388;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/9.1;FBSS/2; FBCR/Rogers;FBID/phone;FBLC/", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("166", "1", NULL, "2015-12-03 22:44:08", NULL, "0", "0", "96.54.200.228", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("167", "8", NULL, "2015-12-08 20:37:36", NULL, "0", "0", "24.108.93.67", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("168", "1", NULL, "2015-12-09 03:56:16", NULL, "0", "0", "24.68.66.211", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("169", "3", NULL, "2015-12-19 10:58:04", NULL, "0", "0", "157.7.242.53", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("170", "3", NULL, "2015-12-19 13:46:33", NULL, "0", "0", "45.40.35.131", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("171", "3", NULL, "2015-12-24 17:31:44", NULL, "0", "0", "216.158.205.235", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("172", "1", NULL, "2015-12-24 21:26:07", NULL, "0", "0", "162.156.87.15", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("173", "3", NULL, "2015-12-27 19:40:03", NULL, "0", "0", "23.92.219.19", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("174", "1", NULL, "2015-12-31 14:58:50", NULL, "0", "0", "184.66.28.163", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("175", "1", NULL, "2016-01-01 04:32:30", NULL, "0", "0", "172.218.192.82", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("176", "1", NULL, "2016-01-05 02:00:29", NULL, "0", "0", "24.108.7.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("177", "1", NULL, "2016-01-05 16:59:05", NULL, "0", "0", "162.156.87.15", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("178", "8", NULL, "2016-01-05 21:17:23", NULL, "0", "0", "24.108.22.54", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("179", "1", NULL, "2016-01-12 16:46:44", NULL, "0", "0", "204.209.209.131", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("180", "1", NULL, "2016-01-12 17:42:19", NULL, "0", "0", "96.54.214.30", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("181", "1", NULL, "2016-01-13 19:24:55", NULL, "0", "0", "70.77.194.67", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("182", "1", NULL, "2016-01-16 00:38:32", NULL, "0", "0", "154.5.182.86", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F69 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("183", "1", NULL, "2016-01-16 23:39:10", NULL, "0", "0", "96.50.8.84", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("184", "1", NULL, "2016-01-17 00:13:16", NULL, "0", "0", "184.66.14.57", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; LG-D852 Build/LRX21Y) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("185", "3", NULL, "2016-01-18 11:17:43", NULL, "0", "0", "24.69.36.80", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/", "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("186", "1", NULL, "2016-01-18 11:24:53", NULL, "0", "0", "24.69.36.80", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("187", "1", NULL, "2016-01-20 08:40:21", NULL, "0", "0", "172.218.233.109", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("188", "3", NULL, "2016-01-20 19:47:39", NULL, "0", "0", "24.108.7.45", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("189", "2", NULL, "2016-01-21 00:54:52", NULL, "0", "0", "24.108.7.45", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("190", "1", NULL, "2016-01-22 23:11:10", NULL, "0", "0", "96.50.18.202", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("191", "1", NULL, "2016-01-24 01:18:12", NULL, "0", "0", "24.244.23.132", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("192", "3", NULL, "2016-01-27 19:58:10", NULL, "0", "0", "96.50.7.9", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("193", "3", NULL, "2016-01-29 19:35:58", NULL, "0", "0", "64.114.197.221", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("194", "1", NULL, "2016-01-30 21:40:59", NULL, "0", "0", "154.5.144.158", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("195", "3", NULL, "2016-02-02 23:55:11", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("196", "2", NULL, "2016-02-05 17:26:42", NULL, "0", "0", "64.114.223.3", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("197", "1", NULL, "2016-02-06 01:53:43", NULL, "0", "0", "24.108.7.45", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("198", "3", NULL, "2016-02-11 09:49:26", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("199", "3", NULL, "2016-02-12 17:03:54", NULL, "0", "0", "216.232.157.182", "http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/", "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("200", "1", NULL, "2016-02-16 19:25:41", NULL, "0", "0", "134.87.151.89", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("201", "3", NULL, "2016-02-16 19:51:27", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("202", "1", NULL, "2016-02-16 23:12:31", NULL, "0", "0", "99.199.3.118", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13C75 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("203", "1", NULL, "2016-02-17 20:04:08", NULL, "0", "0", "162.156.84.12", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("204", "3", NULL, "2016-02-22 20:31:18", NULL, "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("205", "1", NULL, "2016-02-24 23:04:37", NULL, "0", "0", "154.20.5.227", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("206", "1", NULL, "2016-02-26 23:32:20", NULL, "0", "0", "216.232.153.63", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("207", "3", NULL, "2016-03-03 22:28:20", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/?instance_id=438", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("208", "2", NULL, "2016-03-10 00:19:39", NULL, "0", "0", "184.69.163.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("209", "3", NULL, "2016-03-11 05:45:43", NULL, "0", "0", "24.69.36.80", "http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/", "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("210", "1", NULL, "2016-03-15 23:23:24", NULL, "0", "0", "96.50.99.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("211", "1", NULL, "2016-03-18 20:08:47", NULL, "0", "0", "24.69.57.30", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("212", "3", NULL, "2016-03-24 21:35:29", NULL, "0", "0", "154.20.89.65", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("213", "1", NULL, "2016-03-25 12:04:15", NULL, "0", "0", "70.67.47.128", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("214", "10", NULL, "2016-03-25 20:33:09", NULL, "0", "0", "24.108.172.84", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("215", "1", NULL, "2016-03-30 17:16:06", NULL, "0", "0", "207.34.170.253", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("216", "10", NULL, "2016-04-01 12:36:21", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("217", "3", NULL, "2016-04-01 19:09:22", NULL, "0", "0", "64.114.199.100", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("218", "10", NULL, "2016-04-02 05:27:36", NULL, "0", "0", "24.108.95.242", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("219", "3", NULL, "2016-04-04 16:16:18", NULL, "0", "0", "216.86.119.7", "http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/", "Mozilla/5.0 (iPad; CPU OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("220", "10", NULL, "2016-04-06 00:12:35", NULL, "0", "0", "104.142.126.77", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Linux; Android 4.4.2; SGH-I337M Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.105 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("221", "10", NULL, "2016-04-06 16:31:15", NULL, "0", "0", "24.68.38.17", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("222", "10", NULL, "2016-04-06 18:58:02", NULL, "0", "0", "64.114.222.239", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("223", "1", NULL, "2016-04-06 22:43:37", NULL, "0", "0", "184.71.27.166", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("224", "3", NULL, "2016-04-07 19:18:32", NULL, "0", "0", "64.114.239.182", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("225", "3", NULL, "2016-04-09 15:55:17", NULL, "0", "0", "24.108.129.184", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("226", "10", NULL, "2016-04-09 21:17:23", NULL, "0", "0", "24.108.150.27", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("227", "3", NULL, "2016-04-11 15:59:30", NULL, "0", "0", "142.36.94.177", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("228", "10", NULL, "2016-04-11 19:20:25", NULL, "0", "0", "64.114.222.242", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("229", "3", NULL, "2016-04-11 23:02:29", NULL, "0", "0", "24.108.42.254", "http://localhost:8888/TestSICPage/wordpress/calendar/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("230", "10", NULL, "2016-04-12 15:38:17", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("231", "3", NULL, "2016-04-12 22:27:24", NULL, "0", "0", "64.180.191.57", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("232", "10", NULL, "2016-04-12 23:13:34", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("233", "1", NULL, "2016-04-13 02:20:29", NULL, "0", "0", "24.68.231.154", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("234", "3", NULL, "2016-04-13 06:23:57", NULL, "0", "0", "24.69.2.163", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("235", "3", NULL, "2016-04-13 23:55:58", NULL, "0", "0", "207.6.123.218", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("236", "1", NULL, "2016-04-14 04:00:09", NULL, "0", "0", "96.50.12.218", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("237", "1", NULL, "2016-04-15 22:29:38", NULL, "0", "0", "24.69.20.181", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("238", "3", NULL, "2016-04-19 21:11:21", NULL, "0", "0", "184.69.23.166", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("239", "3", NULL, "2016-04-20 04:18:32", NULL, "0", "0", "24.68.132.183", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("240", "3", NULL, "2016-04-20 04:36:12", NULL, "0", "0", "154.20.43.165", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("241", "1", NULL, "2016-04-20 20:14:22", NULL, "0", "0", "70.67.233.215", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("242", "3", NULL, "2016-04-23 20:26:23", NULL, "0", "0", "154.20.37.37", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("243", "1", NULL, "2016-04-26 15:51:40", NULL, "0", "0", "96.50.57.61", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("244", "3", NULL, "2016-04-26 19:50:01", NULL, "0", "0", "184.69.163.74", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("245", "1", NULL, "2016-04-27 20:03:13", NULL, "0", "0", "24.68.32.78", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("246", "12", NULL, "2016-04-28 21:49:42", NULL, "0", "0", "209.207.97.205", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("247", "3", NULL, "2016-04-30 23:45:06", NULL, "0", "0", "117.177.250.151", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("248", "3", NULL, "2016-05-05 06:28:37", NULL, "0", "0", "184.66.34.145", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("249", "1", NULL, "2016-05-05 18:28:06", NULL, "0", "0", "24.244.23.185", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("250", "1", NULL, "2016-05-05 18:31:33", NULL, "0", "0", "207.102.57.146", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("251", "1", NULL, "2016-05-06 00:49:00", NULL, "0", "0", "216.232.2.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:46.0) Gecko/20100101 Firefox/46.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("252", "1", NULL, "2016-05-06 01:07:51", NULL, "0", "0", "70.67.56.101", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("253", "3", NULL, "2016-05-06 05:30:20", NULL, "0", "0", "70.66.171.207", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("254", "3", NULL, "2016-05-09 21:16:56", NULL, "0", "0", "24.69.27.169", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("255", "1", NULL, "2016-05-11 20:53:32", NULL, "0", "0", "24.68.146.22", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("256", "3", NULL, "2016-05-11 22:22:39", NULL, "0", "0", "24.68.20.52", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("257", "12", NULL, "2016-05-11 23:28:42", NULL, "0", "0", "142.31.166.243", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("258", "1", NULL, "2016-05-12 20:56:04", NULL, "0", "0", "24.69.154.153", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("259", "1", NULL, "2016-05-13 18:02:18", NULL, "0", "0", "70.66.166.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("260", "1", NULL, "2016-05-17 22:22:46", NULL, "0", "0", "142.104.37.85", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("261", "2", NULL, "2016-05-18 05:49:09", NULL, "0", "0", "50.92.248.185", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:46.0) Gecko/20100101 Firefox/46.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("262", "1", NULL, "2016-05-20 03:21:47", NULL, "0", "0", "154.5.180.134", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("263", "1", NULL, "2016-05-23 20:16:01", NULL, "0", "0", "184.66.44.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("264", "1", NULL, "2016-05-31 19:13:50", NULL, "0", "0", "96.50.28.226", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("265", "2", NULL, "2016-06-01 23:16:38", NULL, "0", "0", "24.108.184.241", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("266", "1", NULL, "2016-06-02 03:04:57", NULL, "0", "0", "199.60.104.18", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("267", "1", NULL, "2016-06-02 21:18:24", NULL, "0", "0", "24.69.132.110", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G900W8 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.0 Chrome/44.0.2403.133 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("268", "12", NULL, "2016-06-06 22:22:24", NULL, "0", "0", "207.6.162.114", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("269", "1", NULL, "2016-06-08 03:14:14", NULL, "0", "0", "24.114.42.127", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("270", "2", NULL, "2016-06-10 20:03:51", NULL, "0", "0", "24.68.146.132", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("271", "1", NULL, "2016-06-13 18:33:37", NULL, "0", "0", "24.68.124.51", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("272", "3", NULL, "2016-06-16 15:41:29", NULL, "0", "0", "24.69.158.129", "http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("273", "2", NULL, "2016-06-17 11:02:27", NULL, "0", "0", "1.124.48.205", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (iPad; CPU OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("274", "1", NULL, "2016-06-17 18:08:11", NULL, "0", "0", "24.69.133.52", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("275", "1", NULL, "2016-06-22 13:35:51", NULL, "0", "0", "96.54.52.194", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("276", "2", NULL, "2016-06-22 15:59:43", NULL, "0", "0", "96.50.7.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("277", "12", NULL, "2016-06-25 05:59:43", NULL, "0", "0", "24.108.193.4", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("278", "3", NULL, "2016-06-27 23:30:34", NULL, "0", "0", "24.114.36.121", "http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G900W8 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.81 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("279", "1", NULL, "2016-06-28 01:13:41", NULL, "0", "0", "96.54.210.232", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("280", "12", NULL, "2016-06-28 05:36:39", NULL, "0", "0", "24.108.193.4", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("281", "1", NULL, "2016-06-30 05:27:07", NULL, "0", "0", "24.108.162.39", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("282", "1", NULL, "2016-06-30 21:56:24", NULL, "0", "0", "24.68.21.147", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("283", "12", NULL, "2016-07-01 02:42:30", NULL, "0", "0", "96.50.12.121", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("284", "12", NULL, "2016-07-09 03:25:13", NULL, "0", "0", "24.69.158.129", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("285", "1", NULL, "2016-07-11 23:00:45", NULL, "0", "0", "24.108.7.33", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("286", "1", NULL, "2016-07-12 00:37:21", NULL, "0", "0", "184.66.244.73", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("287", "1", NULL, "2016-07-14 18:54:44", NULL, "0", "0", "24.68.126.61", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("288", "3", NULL, "2016-07-18 23:38:48", NULL, "0", "0", "24.108.193.4", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("289", "3", NULL, "2016-07-19 22:01:16", NULL, "0", "0", "131.137.245.209", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/?i", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("290", "2", NULL, "2016-07-26 07:20:04", NULL, "0", "0", "207.216.68.46", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("291", "1", NULL, "2016-07-26 15:05:27", NULL, "0", "0", "75.154.241.186", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("292", "1", NULL, "2016-07-28 19:04:39", NULL, "0", "0", "70.66.188.50", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("293", "3", NULL, "2016-07-30 18:25:07", NULL, "0", "0", "221.132.113.70", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("294", "1", NULL, "2016-08-02 21:52:53", NULL, "0", "0", "99.199.2.59", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("295", "1", NULL, "2016-08-03 07:04:22", NULL, "0", "0", "24.108.37.193", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("296", "1", NULL, "2016-08-09 13:35:27", NULL, "0", "0", "75.156.73.139", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; MotoG3 Build/MPI24.65-25) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.81 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("297", "3", NULL, "2016-08-17 20:46:39", NULL, "0", "0", "96.50.28.249", "http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/?instance_id=563", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("298", "1", NULL, "2016-08-19 19:07:37", NULL, "0", "0", "96.54.213.145", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("299", "1", NULL, "2016-08-22 21:53:07", NULL, "0", "0", "154.5.209.196", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("300", "10", NULL, "2016-08-24 02:18:50", NULL, "0", "0", "64.114.29.243", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("301", "1", NULL, "2016-08-24 21:23:17", NULL, "0", "0", "75.157.168.146", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("302", "1", NULL, "2016-08-25 15:54:17", NULL, "0", "0", "69.157.5.88", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("303", "1", NULL, "2016-08-26 23:31:19", NULL, "0", "0", "64.180.21.31", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("304", "10", NULL, "2016-08-29 20:32:34", NULL, "0", "0", "184.66.35.140", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("305", "10", NULL, "2016-08-31 16:45:32", NULL, "0", "0", "24.68.236.68", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Linux; Android 4.4.2; en-ca; SM-G386W-parrot Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("306", "1", NULL, "2016-09-01 22:01:36", NULL, "0", "0", "199.60.104.18", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("307", "10", NULL, "2016-09-01 22:24:50", NULL, "0", "0", "24.108.189.102", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Linux; Android 5.0.1; YOGA Tablet 2-1050F Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("308", "10", NULL, "2016-09-03 05:46:50", NULL, "0", "0", "154.5.181.30", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("309", "10", NULL, "2016-09-06 18:57:51", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("310", "3", NULL, "2016-09-07 00:22:44", NULL, "0", "0", "75.157.239.7", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("311", "10", NULL, "2016-09-09 17:42:13", NULL, "0", "0", "184.66.36.84", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("312", "1", NULL, "2016-09-10 02:42:00", NULL, "0", "0", "154.20.7.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("313", "10", NULL, "2016-09-10 15:52:18", NULL, "0", "0", "216.232.154.254", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("314", "10", NULL, "2016-09-12 01:38:13", NULL, "0", "0", "24.69.81.140", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:17.0) Gecko/20100101 Firefox/17.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("315", "13", NULL, "2016-09-12 18:18:50", NULL, "0", "0", "70.66.210.236", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/?instance_id=592", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("316", "1", NULL, "2016-09-12 19:16:11", NULL, "0", "0", "184.71.24.162", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-A500W Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("317", "3", NULL, "2016-09-13 19:58:41", NULL, "0", "0", "24.108.4.19", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("318", "1", NULL, "2016-09-14 01:18:57", NULL, "0", "0", "96.50.6.244", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("319", "10", NULL, "2016-09-16 15:36:29", NULL, "0", "0", "184.71.27.162", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; MDDRJS; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("320", "10", NULL, "2016-09-17 22:05:32", NULL, "0", "0", "154.5.180.158", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("321", "1", NULL, "2016-09-19 23:25:39", NULL, "0", "0", "154.20.28.177", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("322", "1", NULL, "2016-09-21 22:51:45", NULL, "0", "0", "24.244.32.215", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("323", "1", NULL, "2016-09-22 05:39:46", NULL, "0", "0", "184.66.251.150", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS armv7l 8530.81.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("324", "1", NULL, "2016-09-22 13:41:04", NULL, "0", "0", "184.66.33.214", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("325", "1", NULL, "2016-09-22 16:06:36", NULL, "0", "0", "96.54.196.85", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("326", "13", NULL, "2016-09-22 18:48:16", NULL, "0", "0", "184.66.18.249", "http://localhost:8888/TestSICPage/wordpress/calendar/cat_ids~5/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("327", "1", NULL, "2016-09-22 20:03:26", NULL, "0", "0", "184.69.124.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("328", "1", NULL, "2016-09-22 20:04:08", NULL, "0", "0", "184.69.124.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("329", "13", NULL, "2016-09-24 21:29:19", NULL, "0", "0", "184.66.19.15", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("330", "3", NULL, "2016-09-26 18:38:11", NULL, "0", "0", "24.114.38.128", "http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/", "Mozilla/5.0 (Linux; Android 5.0; SM-N900W8 Build/LRX21V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("331", "10", NULL, "2016-09-26 23:56:52", NULL, "0", "0", "75.157.238.24", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("332", "13", NULL, "2016-09-30 01:37:10", NULL, "0", "0", "184.66.14.230", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("333", "1", NULL, "2016-10-02 22:58:59", NULL, "0", "0", "50.92.67.95", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("334", "1", NULL, "2016-10-04 00:05:25", NULL, "0", "0", "184.69.26.206", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("335", "1", NULL, "2016-10-04 12:10:44", NULL, "0", "0", "70.67.232.58", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("336", "13", NULL, "2016-10-04 16:56:01", NULL, "0", "0", "70.66.204.233", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("337", "1", NULL, "2016-10-05 18:55:25", NULL, "0", "0", "24.68.5.69", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("338", "1", NULL, "2016-10-06 00:10:59", NULL, "0", "0", "154.20.39.150", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A403 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("339", "1", NULL, "2016-10-09 02:50:03", NULL, "0", "0", "108.172.100.97", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_2 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/53.0.2785.109 Mobile/13F69 Safari/601.1.46", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("340", "1", NULL, "2016-10-11 01:52:18", NULL, "0", "0", "24.68.30.24", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("341", "10", NULL, "2016-10-11 18:59:35", NULL, "0", "0", "184.66.128.19", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("342", "1", NULL, "2016-10-12 17:05:18", NULL, "0", "0", "184.66.135.78", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("343", "1", NULL, "2016-10-14 00:08:15", NULL, "0", "0", "24.68.152.224", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("344", "1", NULL, "2016-10-14 07:38:59", NULL, "0", "0", "96.50.98.58", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("345", "1", NULL, "2016-10-14 22:11:40", NULL, "0", "0", "64.114.222.220", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("346", "13", NULL, "2016-10-17 18:15:50", NULL, "0", "0", "184.66.26.145", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("347", "1", NULL, "2016-10-20 01:18:03", NULL, "0", "0", "24.69.82.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("348", "1", NULL, "2016-10-25 16:28:02", NULL, "0", "0", "74.202.28.6", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("349", "1", NULL, "2016-10-25 18:01:08", NULL, "0", "0", "96.50.6.157", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("350", "1", NULL, "2016-10-30 02:00:23", NULL, "0", "0", "108.180.150.101", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/20.3.136880903 Mobile/14A456 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("351", "1", NULL, "2016-10-30 06:25:35", NULL, "0", "0", "70.68.244.108", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("352", "1", NULL, "2016-10-31 21:19:29", NULL, "0", "0", "184.69.96.10", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("353", "1", NULL, "2016-11-04 15:51:14", NULL, "0", "0", "96.50.18.6", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("354", "1", NULL, "2016-11-05 02:46:06", NULL, "0", "0", "24.108.1.27", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("355", "3", NULL, "2016-11-08 20:54:16", NULL, "0", "0", "162.211.116.80", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("357", "1", NULL, "2016-11-09 22:10:33", NULL, "0", "0", "216.232.150.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("358", "1", NULL, "2016-11-11 06:21:47", NULL, "0", "0", "50.92.250.233", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("359", "14", NULL, "2016-11-16 22:12:08", NULL, "0", "0", "24.69.18.38", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("360", "14", NULL, "2016-11-21 17:22:23", NULL, "0", "0", "24.108.180.144", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("361", "14", NULL, "2016-11-21 23:35:45", NULL, "0", "0", "184.71.13.222", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("362", "14", NULL, "2016-11-22 19:45:17", NULL, "0", "0", "96.54.203.192", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("363", "14", NULL, "2016-11-23 07:05:36", NULL, "0", "0", "96.50.63.233", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("364", "14", NULL, "2016-11-24 18:31:28", NULL, "0", "0", "96.50.29.83", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("365", "14", NULL, "2016-11-25 03:14:14", NULL, "0", "0", "24.68.28.15", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("366", "14", NULL, "2016-11-28 19:05:08", NULL, "0", "0", "24.108.21.151", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-23.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("367", "14", NULL, "2016-12-02 07:12:14", NULL, "0", "0", "184.66.128.52", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("368", "14", NULL, "2016-12-06 17:13:23", NULL, "0", "0", "96.50.1.71", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("369", "14", NULL, "2016-12-06 21:02:10", NULL, "0", "0", "184.66.231.48", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("370", "14", NULL, "2016-12-13 09:58:29", NULL, "0", "0", "75.157.131.149", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("371", "14", NULL, "2016-12-15 00:03:41", NULL, "0", "0", "70.66.179.52", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("372", "14", NULL, "2016-12-15 06:39:55", NULL, "0", "0", "24.108.212.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.4.2; SGH-I747M Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("373", "14", NULL, "2016-12-19 20:51:59", NULL, "0", "0", "96.53.5.106", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("374", "14", NULL, "2016-12-28 03:02:47", NULL, "0", "0", "24.108.11.144", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G930P Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("375", "14", NULL, "2016-12-28 17:14:54", NULL, "0", "0", "24.68.50.67", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("376", "14", NULL, "2016-12-30 04:01:23", NULL, "0", "0", "50.92.126.11", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("377", "14", NULL, "2017-01-01 19:08:54", NULL, "0", "0", "96.50.57.45", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("378", "14", NULL, "2017-01-03 03:59:15", NULL, "0", "0", "64.251.72.251", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("379", "14", NULL, "2017-01-04 19:34:54", NULL, "0", "0", "142.104.9.22", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("380", "14", NULL, "2017-01-04 22:07:53", NULL, "0", "0", "132.156.2.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("381", "14", NULL, "2017-01-05 08:02:57", NULL, "0", "0", "70.67.48.204", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("382", "14", NULL, "2017-01-08 00:20:57", NULL, "0", "0", "24.108.14.97", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-D852 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("383", "14", NULL, "2017-01-09 21:00:55", NULL, "0", "0", "24.69.142.134", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("384", "14", NULL, "2017-01-09 22:29:39", NULL, "0", "0", "24.68.14.228", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:50.0) Gecko/20100101 Firefox/50.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("385", "14", NULL, "2017-01-11 21:44:05", NULL, "0", "0", "184.66.3.24", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.0 Chrome/44.0.2403.133 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("386", "14", NULL, "2017-01-12 05:25:28", NULL, "0", "0", "184.66.238.30", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("387", "14", NULL, "2017-01-12 19:20:56", NULL, "0", "0", "184.66.234.239", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("388", "3", NULL, "2017-01-12 21:17:33", NULL, "0", "0", "24.108.212.9", "http://localhost:8888/TestSICPage/wordpress/calendar/action~agenda/page_offset~1/time_limit~1488510001/request_format~html/?request_type=json&ai1ec_doing_ajax=true", "Mozilla/5.0 (iPad; CPU OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("389", "14", NULL, "2017-01-12 22:15:52", NULL, "0", "0", "70.66.168.98", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("390", "14", NULL, "2017-01-17 03:42:46", NULL, "0", "0", "24.68.113.67", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("391", "14", NULL, "2017-01-17 16:18:30", NULL, "0", "0", "50.92.249.152", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows Phone 10.0; Android 6.0.1; Microsoft; Lumia 950 Dual SIM) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Mobile Safari/537.36 Edge/14.14393", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("392", "3", NULL, "2017-01-18 05:45:39", NULL, "0", "0", "108.172.163.250", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("393", "14", NULL, "2017-01-18 12:20:35", NULL, "0", "0", "125.22.105.35", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("394", "14", NULL, "2017-01-19 03:56:00", NULL, "0", "0", "24.69.75.25", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("395", "3", NULL, "2017-01-20 00:39:04", NULL, "0", "0", "70.67.51.254", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-20", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("396", "14", NULL, "2017-01-21 04:25:01", NULL, "0", "0", "70.66.186.183", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("397", "3", NULL, "2017-01-23 20:09:18", NULL, "0", "0", "184.69.188.106", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("398", "3", NULL, "2017-01-24 18:49:21", NULL, "0", "0", "142.36.249.97", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("399", "14", NULL, "2017-01-25 21:30:22", NULL, "0", "0", "142.36.26.36", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("400", "14", NULL, "2017-01-27 02:45:54", NULL, "0", "0", "24.68.20.54", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("401", "14", NULL, "2017-01-29 09:39:03", NULL, "0", "0", "24.68.100.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("402", "14", NULL, "2017-01-31 17:57:51", NULL, "0", "0", "24.108.181.27", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("403", "14", NULL, "2017-02-01 00:28:41", NULL, "0", "0", "142.36.27.82", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("404", "14", NULL, "2017-02-02 00:24:38", NULL, "0", "0", "96.50.25.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("405", "14", NULL, "2017-02-06 19:39:56", NULL, "0", "0", "24.69.158.171", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("406", "14", NULL, "2017-02-07 01:53:20", NULL, "0", "0", "24.69.159.172", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("407", "3", NULL, "2017-02-08 04:08:53", NULL, "0", "0", "154.20.232.17", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-saturday-march-18-2017/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("408", "14", NULL, "2017-02-10 20:42:43", NULL, "0", "0", "134.87.151.186", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("409", "14", NULL, "2017-02-10 20:55:12", NULL, "0", "0", "184.69.184.26", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("410", "14", NULL, "2017-02-10 22:38:47", NULL, "0", "0", "184.69.106.198", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("411", "14", NULL, "2017-02-19 21:39:11", NULL, "0", "0", "216.232.152.160", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; LG-V522 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("412", "14", NULL, "2017-02-21 18:50:15", NULL, "0", "0", "70.67.53.250", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("413", "15", NULL, "2017-02-22 03:01:48", NULL, "0", "0", "154.20.41.244", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("414", "14", NULL, "2017-02-22 16:14:38", NULL, "0", "0", "24.108.188.215", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("415", "14", NULL, "2017-02-22 19:03:45", NULL, "0", "0", "184.69.174.226", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("416", "14", NULL, "2017-02-22 19:07:36", NULL, "0", "0", "184.66.134.122", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("417", "14", NULL, "2017-02-23 01:07:55", NULL, "0", "0", "154.20.39.22", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.78.2 (KHTML, like Gecko) Version/7.0.6 Safari/537.78.2", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("418", "15", NULL, "2017-02-23 17:44:21", NULL, "0", "0", "24.69.186.96", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("419", "14", NULL, "2017-02-25 23:52:16", NULL, "0", "0", "184.66.17.217", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("420", "14", NULL, "2017-02-27 17:50:47", NULL, "0", "0", "24.108.171.124", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("421", "14", NULL, "2017-02-27 22:57:50", NULL, "0", "0", "173.180.44.190", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("422", "14", NULL, "2017-03-02 02:40:54", NULL, "0", "0", "134.87.169.155", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 OPR/43.0.2442.991", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("423", "14", NULL, "2017-03-02 18:59:56", NULL, "0", "0", "24.68.101.167", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("424", "14", NULL, "2017-03-03 03:02:20", NULL, "0", "0", "184.69.173.90", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("425", "10", NULL, "2017-03-07 05:21:55", NULL, "0", "0", "96.50.4.172", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("426", "14", NULL, "2017-03-07 17:10:13", NULL, "0", "0", "173.195.59.101", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("427", "3", NULL, "2017-03-07 20:56:10", NULL, "0", "0", "10.101.131.13", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-saturday-march-18-2017/", "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("428", "14", NULL, "2017-03-07 21:44:25", NULL, "0", "0", "199.60.104.18", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("429", "14", NULL, "2017-03-08 18:01:19", NULL, "0", "0", "184.69.25.118", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("430", "10", NULL, "2017-03-08 19:08:15", NULL, "0", "0", "192.40.235.106", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("431", "15", NULL, "2017-03-09 19:03:24", NULL, "0", "0", "24.68.45.80", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("432", "10", NULL, "2017-03-09 21:28:08", NULL, "0", "0", "98.158.90.229", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (Linux; Android 7.0; ONEPLUS A3000 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("433", "14", NULL, "2017-03-10 20:44:34", NULL, "0", "0", "96.50.96.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("434", "10", NULL, "2017-03-10 21:57:15", NULL, "0", "0", "132.246.193.136", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("435", "14", NULL, "2017-03-12 01:45:29", NULL, "0", "0", "70.67.164.243", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("436", "15", NULL, "2017-03-13 18:44:03", NULL, "0", "0", "24.68.45.80", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G925W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("437", "15", NULL, "2017-03-15 22:28:08", NULL, "0", "0", "70.67.164.243", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("438", "14", NULL, "2017-03-16 06:25:24", NULL, "0", "0", "184.66.145.43", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("439", "14", NULL, "2017-03-16 19:16:37", NULL, "0", "0", "64.34.217.4", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("440", "14", NULL, "2017-03-16 19:35:49", NULL, "0", "0", "216.232.155.208", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("441", "14", NULL, "2017-03-16 20:06:19", NULL, "0", "0", "24.69.27.66", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.4.2; B1-730 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("442", "14", NULL, "2017-03-19 21:48:21", NULL, "0", "0", "134.87.170.95", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("443", "15", NULL, "2017-03-21 19:57:15", NULL, "0", "0", "184.66.134.167", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("444", "14", NULL, "2017-03-21 22:28:15", NULL, "0", "0", "24.68.252.194", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("445", "14", NULL, "2017-03-24 18:02:39", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("446", "14", NULL, "2017-03-24 21:22:26", NULL, "0", "0", "24.68.112.59", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G935W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("447", "14", NULL, "2017-03-29 20:32:34", NULL, "0", "0", "24.108.6.56", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("448", "16", NULL, "2017-03-30 18:29:29", NULL, "0", "0", "184.66.49.231", "http://localhost:8888/TestSICPage/wordpress/client-counsellor-feedback-form/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("449", "14", NULL, "2017-03-31 13:02:24", NULL, "0", "0", "24.68.156.86", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("450", "14", NULL, "2017-04-02 17:26:42", NULL, "0", "0", "216.232.149.110", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("451", "14", NULL, "2017-04-03 06:06:11", NULL, "0", "0", "24.68.143.191", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("452", "14", NULL, "2017-04-04 05:37:01", NULL, "0", "0", "154.20.39.150", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("453", "14", NULL, "2017-04-04 19:43:12", NULL, "0", "0", "96.54.58.57", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/57.0.2987.137 Mobile/13G36 Safari/601.1.46", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("454", "14", NULL, "2017-04-06 23:40:47", NULL, "0", "0", "70.66.168.47", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("455", "15", NULL, "2017-04-07 15:53:00", NULL, "0", "0", "24.69.18.57", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("456", "14", NULL, "2017-04-08 05:40:45", NULL, "0", "0", "24.68.227.120", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("457", "14", NULL, "2017-04-10 04:34:50", NULL, "0", "0", "24.68.112.59", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G935W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("458", "14", NULL, "2017-04-10 04:48:40", NULL, "0", "0", "96.54.234.24", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("459", "10", NULL, "2017-04-11 18:09:08", NULL, "0", "0", "142.36.207.136", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("460", "14", NULL, "2017-04-11 22:01:01", NULL, "0", "0", "154.20.32.99", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("461", "14", NULL, "2017-04-11 22:34:54", NULL, "0", "0", "96.50.29.52", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("462", "14", NULL, "2017-04-11 22:51:54", NULL, "0", "0", "24.69.164.81", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; Moto G (4) Build/NPJ25.93-14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("463", "15", NULL, "2017-04-12 03:17:33", NULL, "0", "0", "96.50.17.242", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("464", "15", NULL, "2017-04-12 04:23:38", NULL, "0", "0", "64.180.21.231", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("465", "14", NULL, "2017-04-20 19:26:59", NULL, "0", "0", "24.68.109.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("466", "14", NULL, "2017-04-21 17:16:33", NULL, "0", "0", "207.194.40.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("467", "14", NULL, "2017-04-21 21:34:21", NULL, "0", "0", "154.20.32.249", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("468", "14", NULL, "2017-04-23 06:27:08", NULL, "0", "0", "207.6.120.197", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.2; Pixel Build/N2G47E) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("469", "14", NULL, "2017-04-23 06:48:30", NULL, "0", "0", "205.250.181.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("470", "14", NULL, "2017-04-23 23:52:33", NULL, "0", "0", "184.66.241.146", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_3_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/57.0.2987.137 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("471", "14", NULL, "2017-04-26 01:54:58", NULL, "0", "0", "209.52.88.81", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; XT1563 Build/MPDS24.107-52-3-5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("472", "14", NULL, "2017-04-26 05:11:57", NULL, "0", "0", "24.68.116.125", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("473", "14", NULL, "2017-04-27 22:43:32", NULL, "0", "0", "142.104.63.53", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("474", "14", NULL, "2017-04-28 19:12:21", NULL, "0", "0", "24.108.220.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("475", "14", NULL, "2017-04-29 21:37:49", NULL, "0", "0", "24.108.186.115", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("476", "14", NULL, "2017-04-30 23:18:52", NULL, "0", "0", "154.20.197.158", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("477", "14", NULL, "2017-05-02 21:50:44", NULL, "0", "0", "216.240.124.126", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("478", "14", NULL, "2017-05-03 02:36:53", NULL, "0", "0", "108.180.243.123", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("479", "14", NULL, "2017-05-03 15:39:00", NULL, "0", "0", "70.67.186.18", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("480", "14", NULL, "2017-05-04 22:39:10", NULL, "0", "0", "184.66.224.178", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("481", "14", NULL, "2017-05-08 22:28:02", NULL, "0", "0", "64.180.188.57", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("482", "14", NULL, "2017-05-09 18:28:08", NULL, "0", "0", "204.239.148.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("483", "14", NULL, "2017-05-10 18:41:16", NULL, "0", "0", "24.68.158.237", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("484", "14", NULL, "2017-05-11 21:04:22", NULL, "0", "0", "96.50.106.92", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; SAMSUNG-SM-N910A Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("485", "14", NULL, "2017-05-12 21:17:04", NULL, "0", "0", "75.157.26.163", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("486", "14", NULL, "2017-05-12 21:43:13", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("487", "3", NULL, "2017-05-12 21:49:25", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("488", "14", NULL, "2017-05-16 01:53:55", NULL, "0", "0", "24.108.24.50", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("489", "14", NULL, "2017-05-16 17:29:45", NULL, "0", "0", "24.69.140.83", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("490", "14", NULL, "2017-05-16 17:58:38", NULL, "0", "0", "24.69.140.27", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/58.0.3029.83 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("491", "10", NULL, "2017-05-17 03:09:13", NULL, "0", "0", "64.180.74.246", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("492", "10", NULL, "2017-05-17 20:40:28", NULL, "0", "0", "24.68.228.217", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-support-group-july-2017/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("493", "10", NULL, "2017-05-18 22:07:52", NULL, "0", "0", "184.66.248.195", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-support-group-july-2017/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("494", "10", NULL, "2017-05-19 19:09:04", NULL, "0", "0", "24.68.248.196", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/?instance_id=863", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; Win64; x64; Trident/7.0; Touch; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; Tablet PC 2.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("495", "14", NULL, "2017-05-22 01:25:37", NULL, "0", "0", "207.164.255.141", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("496", "14", NULL, "2017-05-24 16:57:27", NULL, "0", "0", "70.67.45.167", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("497", "14", NULL, "2017-05-24 20:25:19", NULL, "0", "0", "96.50.57.105", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("498", "3", NULL, "2017-05-24 20:32:04", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("499", "14", NULL, "2017-05-27 18:55:19", NULL, "0", "0", "199.60.109.231", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("500", "14", NULL, "2017-05-31 00:48:29", NULL, "0", "0", "184.66.238.247", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("501", "14", NULL, "2017-06-04 02:31:49", NULL, "0", "0", "24.68.4.162", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("502", "10", NULL, "2017-06-05 18:21:09", NULL, "0", "0", "142.104.18.231", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("503", "10", NULL, "2017-06-07 18:46:13", NULL, "0", "0", "96.54.225.248", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("504", "14", NULL, "2017-06-08 20:31:56", NULL, "0", "0", "154.20.6.208", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("505", "14", NULL, "2017-06-09 20:18:51", NULL, "0", "0", "142.36.106.133", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("506", "14", NULL, "2017-06-09 21:15:24", NULL, "0", "0", "209.52.88.145", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("507", "14", NULL, "2017-06-11 03:19:39", NULL, "0", "0", "24.108.176.13", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("508", "10", NULL, "2017-06-13 22:50:16", NULL, "0", "0", "70.66.168.46", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-support-group-july-2017/", "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("509", "14", NULL, "2017-06-13 23:06:52", NULL, "0", "0", "96.50.22.45", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("510", "10", NULL, "2017-06-16 03:44:15", NULL, "0", "0", "24.69.136.239", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-support-group-july-2017/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("511", "14", NULL, "2017-06-17 00:56:27", NULL, "0", "0", "64.180.86.138", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("512", "14", NULL, "2017-06-19 06:43:37", NULL, "0", "0", "154.5.181.171", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("513", "14", NULL, "2017-06-19 19:10:56", NULL, "0", "0", "96.54.254.164", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G920W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("514", "3", NULL, "2017-06-20 21:11:01", NULL, "0", "0", "184.66.49.231", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("515", "14", NULL, "2017-06-21 02:49:22", NULL, "0", "0", "24.68.36.206", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("516", "14", NULL, "2017-06-22 16:12:27", NULL, "0", "0", "96.54.240.139", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("517", "3", NULL, "2017-06-27 15:53:06", NULL, "0", "0", "24.68.124.237", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("518", "14", NULL, "2017-06-30 02:52:33", NULL, "0", "0", "99.199.1.31", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("519", "14", NULL, "2017-06-30 05:56:50", NULL, "0", "0", "24.69.149.95", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("520", "14", NULL, "2017-06-30 15:16:51", NULL, "0", "0", "184.151.231.29", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("521", "10", NULL, "2017-07-03 00:09:35", NULL, "0", "0", "24.108.177.179", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("522", "14", NULL, "2017-07-03 01:36:25", NULL, "0", "0", "24.69.169.227", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("523", "14", NULL, "2017-07-06 17:59:54", NULL, "0", "0", "96.50.22.207", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("524", "14", NULL, "2017-07-08 01:36:28", NULL, "0", "0", "24.69.136.239", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("525", "14", NULL, "2017-07-11 16:41:04", NULL, "0", "0", "207.194.253.26", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("526", "14", NULL, "2017-07-11 22:32:40", NULL, "0", "0", "24.108.164.184", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("527", "14", NULL, "2017-07-13 01:41:20", NULL, "0", "0", "209.52.88.27", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("528", "14", NULL, "2017-07-13 15:31:39", NULL, "0", "0", "24.68.52.250", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.1; Z850 Build/LMY47O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("529", "14", NULL, "2017-07-13 23:26:25", NULL, "0", "0", "70.66.168.46", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/29.0.159059490 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("530", "14", NULL, "2017-07-14 05:09:00", NULL, "0", "0", "24.69.140.208", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("531", "14", NULL, "2017-07-15 04:27:42", NULL, "0", "0", "24.69.158.195", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("532", "14", NULL, "2017-07-15 05:24:39", NULL, "0", "0", "24.69.140.27", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("533", "14", NULL, "2017-07-15 17:59:31", NULL, "0", "0", "96.50.105.162", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("534", "14", NULL, "2017-07-15 18:22:10", NULL, "0", "0", "184.66.246.158", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("535", "14", NULL, "2017-07-18 00:17:49", NULL, "0", "0", "70.67.111.1", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("536", "14", NULL, "2017-07-18 03:04:51", NULL, "0", "0", "184.66.255.213", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS x86_64 9460.60.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.92 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("537", "14", NULL, "2017-07-18 17:06:53", NULL, "0", "0", "75.154.237.159", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("538", "14", NULL, "2017-07-19 00:16:23", NULL, "0", "0", "24.244.32.144", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; HTC One_M8 Build/MRA58K; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("539", "14", NULL, "2017-07-19 23:12:20", NULL, "0", "0", "206.87.160.235", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("540", "14", NULL, "2017-07-21 18:36:40", NULL, "0", "0", "184.71.11.226", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("541", "14", NULL, "2017-07-22 00:16:34", NULL, "0", "0", "184.66.129.87", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("542", "14", NULL, "2017-07-27 06:34:04", NULL, "0", "0", "24.68.116.221", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G903W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("543", "14", NULL, "2017-07-27 15:55:09", NULL, "0", "0", "66.183.174.248", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.1.1; E6560T Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("544", "14", NULL, "2017-07-28 00:21:31", NULL, "0", "0", "64.180.190.16", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("545", "14", NULL, "2017-08-01 18:43:28", NULL, "0", "0", "24.69.188.123", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("546", "14", NULL, "2017-08-01 21:06:29", NULL, "0", "0", "96.50.28.78", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("547", "14", NULL, "2017-08-01 22:21:57", NULL, "0", "0", "24.68.130.38", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("548", "14", NULL, "2017-08-03 02:50:01", NULL, "0", "0", "104.142.118.10", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; HTC 10 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("549", "14", NULL, "2017-08-04 00:29:40", NULL, "0", "0", "184.71.25.154", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; Nexus 6 Build/NBD92G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("550", "14", NULL, "2017-08-06 22:09:04", NULL, "0", "0", "24.108.12.127", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("551", "14", NULL, "2017-08-08 17:10:54", NULL, "0", "0", "24.108.172.203", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("552", "14", NULL, "2017-08-08 20:03:17", NULL, "0", "0", "24.68.106.219", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.2; Pixel Build/NJH47D) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("553", "14", NULL, "2017-08-10 03:16:52", NULL, "0", "0", "24.68.144.224", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G920W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("554", "14", NULL, "2017-08-14 15:27:17", NULL, "0", "0", "70.67.58.138", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("555", "8", NULL, "2017-08-15 22:35:06", NULL, "0", "0", "70.67.51.254", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("556", "14", NULL, "2017-08-18 19:00:14", NULL, "0", "0", "70.67.60.170", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("557", "14", NULL, "2017-08-19 16:41:31", NULL, "0", "0", "96.50.26.59", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("558", "14", NULL, "2017-08-23 23:15:48", NULL, "0", "0", "2001:569:6fe3:ef51:0:4d:346b:3b01", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G920W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.107 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("559", "14", NULL, "2017-08-24 19:25:24", NULL, "0", "0", "24.108.19.129", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("560", "14", NULL, "2017-08-28 07:37:26", NULL, "0", "0", "64.180.190.16", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("561", "14", NULL, "2017-08-28 21:08:27", NULL, "0", "0", "96.50.25.118", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Android 6.0.1; Mobile; rv:55.0) Gecko/55.0 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("562", "14", NULL, "2017-08-29 18:06:31", NULL, "0", "0", "154.5.182.123", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("563", "14", NULL, "2017-08-29 18:36:17", NULL, "0", "0", "184.69.173.146", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("564", "3", NULL, "2017-08-30 23:59:51", NULL, "0", "0", "89.175.148.162", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("565", "14", NULL, "2017-08-31 14:28:42", NULL, "0", "0", "104.142.123.32", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("566", "14", NULL, "2017-09-02 05:11:17", NULL, "0", "0", "184.66.49.28", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("567", "14", NULL, "2017-09-02 05:53:51", NULL, "0", "0", "184.66.36.188", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("568", "14", NULL, "2017-09-02 06:33:07", NULL, "0", "0", "184.66.36.188", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("569", "3", NULL, "2017-09-02 14:38:45", NULL, "0", "0", "70.67.60.133", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-october-28-20", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("570", "8", NULL, "2017-09-07 03:21:30", NULL, "0", "0", "154.20.234.215", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("571", "3", NULL, "2017-09-07 18:15:34", NULL, "0", "0", "142.36.92.50", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-october-28-20", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("572", "14", NULL, "2017-09-07 19:44:44", NULL, "0", "0", "184.151.231.172", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.116 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("573", "14", NULL, "2017-09-07 20:42:45", NULL, "0", "0", "184.151.231.172", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.116 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("574", "14", NULL, "2017-09-08 16:29:28", NULL, "0", "0", "108.180.146.220", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("575", "3", NULL, "2017-09-09 07:02:18", NULL, "0", "0", "190.60.234.131", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("576", "14", NULL, "2017-09-12 17:31:41", NULL, "0", "0", "96.54.252.91", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("577", "14", NULL, "2017-09-13 10:48:32", NULL, "0", "0", "24.68.142.228", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("578", "8", NULL, "2017-09-13 15:14:48", NULL, "0", "0", "173.183.79.145", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("579", "14", NULL, "2017-09-13 15:50:07", NULL, "0", "0", "209.52.88.28", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("580", "3", NULL, "2017-09-14 23:24:49", NULL, "0", "0", "70.66.168.136", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("581", "3", NULL, "2017-09-15 05:19:36", NULL, "0", "0", "99.199.3.13", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.116 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("582", "3", NULL, "2017-09-15 05:55:29", NULL, "0", "0", "154.5.208.18", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("583", "14", NULL, "2017-09-17 22:23:05", NULL, "0", "0", "24.108.166.170", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("584", "14", NULL, "2017-09-18 05:59:35", NULL, "0", "0", "207.6.123.98", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("585", "3", NULL, "2017-09-18 20:48:22", NULL, "0", "0", "108.180.6.77", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("586", "3", NULL, "2017-09-18 22:40:45", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-for-teens-%ef%bc%883-sessions-saturdays-oct-14-nov-4-2017/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("587", "8", NULL, "2017-09-19 17:38:13", NULL, "0", "0", "154.20.4.5", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) CriOS/61.0.3163.73 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("588", "8", NULL, "2017-09-19 21:46:41", NULL, "0", "0", "70.67.107.36", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("589", "14", NULL, "2017-09-20 02:23:50", NULL, "0", "0", "108.180.146.220", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("590", "3", NULL, "2017-09-20 18:38:09", NULL, "0", "0", "70.66.175.202", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-for-teens-%ef%bc%883-sessions-saturdays-oct-14-nov-4-2017/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("591", "14", NULL, "2017-09-20 22:27:36", NULL, "0", "0", "184.69.11.186", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("592", "14", NULL, "2017-09-21 02:56:54", NULL, "0", "0", "172.218.195.146", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("593", "8", NULL, "2017-09-21 03:59:21", NULL, "0", "0", "154.20.7.128", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("594", "8", NULL, "2017-09-25 03:29:44", NULL, "0", "0", "24.69.160.117", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("595", "8", NULL, "2017-09-26 05:29:31", NULL, "0", "0", "154.20.28.35", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("596", "14", NULL, "2017-09-27 19:38:40", NULL, "0", "0", "216.232.156.190", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("597", "8", NULL, "2017-09-28 22:26:12", NULL, "0", "0", "184.66.137.14", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (iPad; CPU OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("598", "14", NULL, "2017-09-29 22:40:23", NULL, "0", "0", "96.50.12.26", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("599", "14", NULL, "2017-09-30 15:58:10", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("600", "3", NULL, "2017-10-01 00:25:06", NULL, "0", "0", "154.16.89.98", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("601", "8", NULL, "2017-10-02 19:20:36", NULL, "0", "0", "24.108.28.108", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("602", "8", NULL, "2017-10-03 16:38:30", NULL, "0", "0", "24.68.35.40", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("603", "3", NULL, "2017-10-04 04:27:58", NULL, "0", "0", "24.108.13.92", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/23.1.148956103 Mobile/12H321 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("604", "8", NULL, "2017-10-04 20:32:22", NULL, "0", "0", "24.68.35.40", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("605", "3", NULL, "2017-10-04 20:39:33", NULL, "0", "0", "96.54.227.7", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("606", "8", NULL, "2017-10-05 22:23:19", NULL, "0", "0", "24.108.184.241", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("607", "3", NULL, "2017-10-07 04:16:47", NULL, "0", "0", "96.50.18.5", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("608", "3", NULL, "2017-10-09 13:50:29", NULL, "0", "0", "216.121.132.118", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("609", "8", NULL, "2017-10-09 20:53:35", NULL, "0", "0", "154.20.6.166", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("610", "14", NULL, "2017-10-10 02:22:39", NULL, "0", "0", "216.232.148.95", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:56.0) Gecko/20100101 Firefox/56.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("611", "8", NULL, "2017-10-10 18:08:26", NULL, "0", "0", "184.71.21.162", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("612", "14", NULL, "2017-10-10 19:11:14", NULL, "0", "0", "198.103.109.141", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("613", "8", NULL, "2017-10-10 19:21:19", NULL, "0", "0", "216.232.155.179", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:56.0) Gecko/20100101 Firefox/56.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("614", "8", NULL, "2017-10-10 20:27:05", NULL, "0", "0", "70.67.110.128", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("615", "8", NULL, "2017-10-11 02:15:53", NULL, "0", "0", "64.180.23.107", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:55.0) Gecko/20100101 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("616", "8", NULL, "2017-10-11 16:29:08", NULL, "0", "0", "24.244.32.246", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("617", "3", NULL, "2017-10-11 16:49:40", NULL, "0", "0", "24.68.106.237", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_2 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A421 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("618", "14", NULL, "2017-10-12 16:24:32", NULL, "0", "0", "64.251.78.50", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("619", "3", NULL, "2017-10-13 02:35:49", NULL, "0", "0", "64.66.25.129", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Linux; Android 5.1; XT1032 Build/LPBS23.13-57-2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("620", "8", NULL, "2017-10-13 06:30:32", NULL, "0", "0", "184.69.126.246", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("621", "14", NULL, "2017-10-14 09:09:20", NULL, "0", "0", "96.54.246.107", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36 OPR/48.0.2685.35", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("622", "14", NULL, "2017-10-15 18:58:58", NULL, "0", "0", "70.67.53.71", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("623", "3", NULL, "2017-10-16 20:34:01", NULL, "0", "0", "154.20.28.35", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm/", "Mozilla/5.0 (iPad; CPU OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("624", "3", NULL, "2017-10-18 04:58:42", NULL, "0", "0", "173.183.79.145", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("625", "14", NULL, "2017-10-20 19:47:34", NULL, "0", "0", "24.108.24.162", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("626", "14", NULL, "2017-10-22 22:12:35", NULL, "0", "0", "98.158.90.229", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("627", "14", NULL, "2017-10-24 03:42:31", NULL, "0", "0", "96.54.236.52", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/37.1.171590344 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("628", "14", NULL, "2017-10-25 20:41:00", NULL, "0", "0", "184.66.236.32", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("629", "3", NULL, "2017-10-27 22:00:38", NULL, "0", "0", "24.108.0.171", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; rv:56.0) Gecko/20100101 Firefox/56.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("630", "14", NULL, "2017-10-27 22:54:42", NULL, "0", "0", "24.108.164.74", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("631", "14", NULL, "2017-10-31 20:35:51", NULL, "0", "0", "24.108.174.202", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("632", "14", NULL, "2017-10-31 21:00:52", NULL, "0", "0", "184.66.239.73", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.1.1; SAMSUNG SM-J500FN Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.3 Chrome/38.0.2125.102 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("633", "14", NULL, "2017-11-02 16:45:21", NULL, "0", "0", "96.54.240.139", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("634", "14", NULL, "2017-11-02 20:36:37", NULL, "0", "0", "75.157.26.64", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("635", "14", NULL, "2017-11-06 20:33:05", NULL, "0", "0", "134.87.139.116", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("636", "14", NULL, "2017-11-07 07:05:56", NULL, "0", "0", "24.69.25.215", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("637", "14", NULL, "2017-11-10 20:12:11", NULL, "0", "0", "173.183.122.106", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; LG-H873 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.84 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("638", "14", NULL, "2017-11-14 02:15:42", NULL, "0", "0", "24.69.174.133", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("639", "14", NULL, "2017-11-14 16:46:04", NULL, "0", "0", "66.51.139.243", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("640", "14", NULL, "2017-11-14 20:02:33", NULL, "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("641", "14", NULL, "2017-11-15 01:59:48", NULL, "0", "0", "75.154.240.119", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("642", "14", NULL, "2017-11-16 05:48:34", NULL, "0", "0", "24.244.32.215", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("643", "14", NULL, "2017-11-16 07:09:30", NULL, "0", "0", "172.218.195.112", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("644", "14", NULL, "2017-11-18 00:31:12", NULL, "0", "0", "96.54.241.201", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B150 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("645", "14", NULL, "2017-11-19 16:32:09", NULL, "0", "0", "104.142.127.38", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-J320W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.84 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("646", "14", NULL, "2017-11-19 22:09:59", NULL, "0", "0", "24.108.26.82", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS armv7l 9901.66.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.82 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("647", "14", NULL, "2017-11-21 20:49:10", NULL, "0", "0", "24.68.101.61", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("648", "14", NULL, "2017-11-23 23:09:29", NULL, "0", "0", "24.69.154.212", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("649", "14", NULL, "2017-11-26 23:43:30", NULL, "0", "0", "184.66.50.16", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_2 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Mobile/15A421 [FBAN/MessengerForiOS;FBAV/144.0.0.30.133;FBBV/80159736;FBDV/iPhone10,5;FBMD/iPhone;FBSN/iOS;FBSV/11.0.2;FBSS/3;FBCR/Rogers;FBID/phone;FBL", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("650", "14", NULL, "2017-11-28 17:45:20", NULL, "0", "0", "24.68.44.253", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("651", "14", NULL, "2017-11-28 20:41:46", NULL, "0", "0", "75.154.236.71", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("652", "3", NULL, "2017-11-30 15:46:20", NULL, "0", "0", "5.189.201.107", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("653", "14", NULL, "2017-12-01 00:02:01", NULL, "0", "0", "24.108.33.69", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("654", "14", NULL, "2017-12-01 15:01:18", NULL, "0", "0", "154.5.210.186", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("655", "14", NULL, "2017-12-09 23:39:52", NULL, "0", "0", "70.67.181.214", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("656", "14", NULL, "2017-12-11 04:48:52", NULL, "0", "0", "24.68.137.88", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("657", "14", NULL, "2017-12-11 21:46:36", NULL, "0", "0", "96.50.61.101", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("658", "14", NULL, "2017-12-11 22:05:08", NULL, "0", "0", "24.108.28.65", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.1; Moto X Play Build/NPD26.48-24-1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("659", "14", NULL, "2017-12-15 00:20:52", NULL, "0", "0", "24.108.203.48", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS x86_64 9901.77.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.97 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("660", "14", NULL, "2017-12-30 17:41:06", NULL, "0", "0", "72.143.224.189", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/27.0.155813979 Mobile/15C153 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("661", "14", NULL, "2018-01-04 19:44:13", NULL, "0", "0", "24.69.11.33", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.108 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("662", "14", NULL, "2018-01-05 18:34:10", NULL, "0", "0", "96.50.120.23", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("663", "14", NULL, "2018-01-07 21:51:35", NULL, "0", "0", "134.87.137.240", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("664", "18", NULL, "2018-01-08 23:22:13", NULL, "0", "0", "96.50.5.195", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-18-2018/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "6", NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("665", "3", NULL, "2018-01-09 18:20:57", NULL, "0", "0", "96.54.232.157", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("666", "3", NULL, "2018-01-09 18:23:52", NULL, "0", "0", "96.54.232.157", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("667", "14", NULL, "2018-01-09 20:15:12", NULL, "0", "0", "154.5.205.18", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("668", "18", NULL, "2018-01-11 19:04:33", NULL, "0", "0", "184.66.42.23", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-18-2018/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("669", "14", NULL, "2018-01-15 07:29:53", NULL, "0", "0", "184.66.139.71", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("670", "18", NULL, "2018-01-15 18:01:08", NULL, "0", "0", "154.20.28.35", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-18-2018/", "Mozilla/5.0 (iPad; CPU OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("671", "14", NULL, "2018-01-16 02:41:47", NULL, "0", "0", "108.180.146.220", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("672", "14", NULL, "2018-01-17 00:13:25", NULL, "0", "0", "154.5.182.82", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("673", "14", NULL, "2018-01-18 00:04:24", NULL, "0", "0", "70.67.230.197", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.1; SAMSUNG SM-T350 Build/NMF26X) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/6.2 Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("674", "14", NULL, "2018-01-18 00:04:39", NULL, "0", "0", "70.67.230.197", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.1; SAMSUNG SM-T350 Build/NMF26X) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/6.2 Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("675", "14", NULL, "2018-01-18 05:55:54", NULL, "0", "0", "184.66.145.43", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("676", "3", NULL, "2018-01-23 00:11:04", NULL, "0", "0", "108.180.147.111", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-feb-8-mar-15-2018-7pm-9pm/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("677", "14", NULL, "2018-01-23 00:54:45", NULL, "0", "0", "154.20.90.229", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("678", "14", NULL, "2018-01-24 10:10:29", NULL, "0", "0", "64.180.23.148", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("679", "14", NULL, "2018-01-25 03:14:42", NULL, "0", "0", "134.87.172.238", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("680", "14", NULL, "2018-01-28 23:00:33", NULL, "0", "0", "154.20.199.212", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("681", "14", NULL, "2018-01-29 04:50:39", NULL, "0", "0", "96.50.28.81", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("682", "3", NULL, "2018-01-29 20:23:34", NULL, "0", "0", "108.180.147.111", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-feb-8-mar-15-2018-7pm-9pm/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("683", "14", NULL, "2018-01-30 01:48:29", NULL, "0", "0", "24.69.160.103", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B150 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("684", "14", NULL, "2018-01-30 21:46:37", NULL, "0", "0", "184.69.181.174", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("685", "14", NULL, "2018-01-31 23:48:35", NULL, "0", "0", "142.36.194.64", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("686", "14", NULL, "2018-02-01 00:36:52", NULL, "0", "0", "45.44.120.34", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("687", "14", NULL, "2018-02-04 21:30:20", NULL, "0", "0", "154.20.30.110", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G935W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.137 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("688", "14", NULL, "2018-02-05 23:46:40", NULL, "0", "0", "184.69.98.174", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("689", "3", NULL, "2018-02-09 02:55:54", NULL, "0", "0", "24.108.220.83", "http://localhost:8888/TestSICPage/wordpress/event/triple-p-positive-parenting-program-wednesdays-jmar-28-may-16-2018-7pm-9pm/", "Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.137 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("690", "14", NULL, "2018-02-11 00:16:19", NULL, "0", "0", "70.65.234.43", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 11_2_5 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D60 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("691", "14", NULL, "2018-02-13 20:13:33", NULL, "0", "0", "24.69.162.74", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("692", "14", NULL, "2018-02-16 21:38:03", NULL, "0", "0", "64.180.23.187", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("693", "3", NULL, "2018-02-18 03:36:47", NULL, "0", "0", "184.66.37.195", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-may-26-2018-2", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("694", "14", NULL, "2018-02-18 19:32:10", NULL, "0", "0", "184.66.232.233", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G925W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.137 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("695", "14", NULL, "2018-02-19 17:41:30", NULL, "0", "0", "184.66.49.224", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("696", "14", NULL, "2018-02-19 19:25:08", NULL, "0", "0", "24.108.48.16", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("697", "14", NULL, "2018-02-20 02:36:22", NULL, "0", "0", "154.5.210.62", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("698", "14", NULL, "2018-02-21 18:44:10", NULL, "0", "0", "66.244.240.225", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("699", "14", NULL, "2018-02-22 00:10:23", NULL, "0", "0", "184.69.108.166", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("700", "14", NULL, "2018-02-22 03:25:38", NULL, "0", "0", "24.68.109.145", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("701", "14", NULL, "2018-02-25 16:40:15", NULL, "0", "0", "70.67.107.142", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("702", "14", NULL, "2018-02-26 18:07:13", NULL, "0", "0", "70.67.116.148", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("703", "14", NULL, "2018-02-26 20:36:22", NULL, "0", "0", "24.244.32.200", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("704", "14", NULL, "2018-02-27 07:03:49", NULL, "0", "0", "205.250.183.217", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("705", "14", NULL, "2018-02-27 19:28:33", NULL, "0", "0", "216.113.204.43", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("706", "14", NULL, "2018-02-27 22:35:00", NULL, "0", "0", "108.180.147.111", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_5 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D60 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("707", "3", NULL, "2018-02-28 23:20:50", NULL, "0", "0", "96.54.241.191", "http://localhost:8888/TestSICPage/wordpress/event/triple-p-positive-parenting-program-wednesdays-jmar-28-may-16-2018-7pm-9pm/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("708", "14", NULL, "2018-03-01 22:07:47", NULL, "0", "0", "70.66.167.205", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("709", "14", NULL, "2018-03-02 03:30:27", NULL, "0", "0", "209.52.88.129", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 8.1.0; Pixel 2 Build/OPM1.171019.019; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/64.0.3282.137 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("710", "14", NULL, "2018-03-02 04:55:51", NULL, "0", "0", "96.50.18.131", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("711", "14", NULL, "2018-03-03 23:59:44", NULL, "0", "0", "75.154.241.251", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("712", "3", NULL, "2018-03-06 02:19:19", NULL, "0", "0", "24.108.38.201", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-family-an-introduction-an-introduction-to-bowen-family-systems-thinking-and-family-dynamics-friday-night-april-27-saturday", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("713", "14", NULL, "2018-03-08 21:40:01", NULL, "0", "0", "154.5.210.5", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("714", "14", NULL, "2018-03-08 23:35:58", NULL, "0", "0", "24.108.25.92", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("715", "14", NULL, "2018-03-09 20:02:54", NULL, "0", "0", "96.54.238.13", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("716", "14", NULL, "2018-03-10 21:21:04", NULL, "0", "0", "24.108.14.71", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("717", "3", NULL, "2018-03-18 00:48:44", NULL, "0", "0", "184.66.33.103", "http://localhost:8888/TestSICPage/wordpress/event/support-group-for-stress-and-anxiety-thursdays-march-29-april-19-2018/", "Mozilla/5.0 (iPad; CPU OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("718", "14", NULL, "2018-03-19 16:26:17", NULL, "0", "0", "209.52.88.221", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("719", "14", NULL, "2018-03-21 01:46:20", NULL, "0", "0", "24.65.142.192", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("720", "14", NULL, "2018-03-22 14:51:23", NULL, "0", "0", "24.108.126.185", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SAMSUNG SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/6.4 Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("721", "14", NULL, "2018-03-26 00:19:51", NULL, "0", "0", "24.108.176.69", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("722", "14", NULL, "2018-03-26 00:53:21", NULL, "0", "0", "96.54.230.238", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("723", "14", NULL, "2018-03-26 16:29:25", NULL, "0", "0", "172.218.233.62", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("724", "3", NULL, "2018-03-27 05:33:17", NULL, "0", "0", "24.108.194.40", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-family-an-introduction-an-introduction-to-bowen-family-systems-thinking-and-family-dynamics-friday-night-april-27-saturday", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("725", "14", NULL, "2018-04-02 21:58:43", NULL, "0", "0", "162.158.146.57", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("726", "14", NULL, "2018-04-03 22:09:33", NULL, "0", "0", "162.158.146.111", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("727", "14", NULL, "2018-04-24 14:53:20", NULL, "0", "0", "154.20.233.227", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("728", "14", NULL, "2018-04-24 16:30:19", NULL, "0", "0", "50.99.160.126", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "3", NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("729", "14", NULL, "2018-04-24 21:25:48", NULL, "0", "0", "96.54.226.202", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("730", "14", NULL, "2018-04-25 20:03:48", NULL, "0", "0", "107.190.20.36", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("731", "14", NULL, "2018-04-27 03:04:38", NULL, "0", "0", "70.67.241.227", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 8.1.0; Nexus 6P Build/OPM3.171019.019) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("732", "14", NULL, "2018-04-27 20:52:07", NULL, "0", "0", "107.190.27.35", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("733", "14", NULL, "2018-04-30 19:50:55", NULL, "0", "0", "207.6.160.29", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("734", "14", NULL, "2018-06-14 15:58:54", NULL, "0", "0", "70.67.253.15", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "10", NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("735", "3", NULL, "2018-06-14 16:01:54", NULL, "0", "0", "70.67.253.15", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "10", NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("736", "14", NULL, "2018-06-14 16:47:17", NULL, "0", "0", "70.67.253.15", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "10", NULL, "active");
INSERT INTO `wp_gf_entry` VALUES("737", "3", NULL, "2018-06-14 16:48:04", NULL, "0", "0", "70.67.253.15", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, "10", NULL, "active");

/* INSERT TABLE DATA: wp_gf_entry_meta */
INSERT INTO `wp_gf_entry_meta` VALUES("1", "1", "1", "1.3", "Susanne");
INSERT INTO `wp_gf_entry_meta` VALUES("2", "1", "1", "1.6", "Reul-Zastre");
INSERT INTO `wp_gf_entry_meta` VALUES("3", "1", "1", "2", "sreul@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4", "1", "1", "3", "Test");
INSERT INTO `wp_gf_entry_meta` VALUES("5", "2", "2", "1.3", "Susanne");
INSERT INTO `wp_gf_entry_meta` VALUES("6", "2", "2", "1.6", "Reul-Zastre");
INSERT INTO `wp_gf_entry_meta` VALUES("7", "2", "2", "2", "sreul@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("10", "1", "3", "1.3", "Laurel");
INSERT INTO `wp_gf_entry_meta` VALUES("11", "1", "3", "1.6", "Lawford");
INSERT INTO `wp_gf_entry_meta` VALUES("12", "1", "3", "2", "lasl52@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("13", "1", "3", "3", "This is a message for Bill Cole. I left a message for you last Friday but am just wanting to make sure you received it. The next day I have off available for an appointment is Tuesday Aug 5th. Please let me know if sometime that day would work. Thank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("14", "2", "4", "1.3", "Kim");
INSERT INTO `wp_gf_entry_meta` VALUES("15", "2", "4", "1.6", "Watt");
INSERT INTO `wp_gf_entry_meta` VALUES("16", "2", "4", "2", "prostar99@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("17", "2", "4", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("18", "1", "5", "1.3", "mario");
INSERT INTO `wp_gf_entry_meta` VALUES("19", "1", "5", "1.6", "roy");
INSERT INTO `wp_gf_entry_meta` VALUES("20", "1", "5", "2", "Mario.roy@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("21", "1", "5", "3", "Hi there,  me and my fiancÃ© are looking to get married and i was told by my padre on base that I need a course to get married and he gave me your contact information.  I am just wondering what course this would be and what the cost would be. \r\n\r\nThank you for your time");
INSERT INTO `wp_gf_entry_meta` VALUES("22", "3", "6", "1.3", "Carol");
INSERT INTO `wp_gf_entry_meta` VALUES("23", "3", "6", "1.6", "Straiton");
INSERT INTO `wp_gf_entry_meta` VALUES("24", "3", "6", "2", "cstraiton@pacificcoast.net");
INSERT INTO `wp_gf_entry_meta` VALUES("25", "3", "6", "3.1", "3114 Flannagan Place");
INSERT INTO `wp_gf_entry_meta` VALUES("26", "3", "6", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("27", "3", "6", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("28", "3", "6", "3.5", "V9B 5K5");
INSERT INTO `wp_gf_entry_meta` VALUES("29", "3", "6", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("30", "3", "6", "4", "(250)474-2883");
INSERT INTO `wp_gf_entry_meta` VALUES("31", "3", "6", "7", "10/04/2014");
INSERT INTO `wp_gf_entry_meta` VALUES("32", "3", "6", "5", "Pastoral Counselling Training Workshop on Oct. 4th , 2014");
INSERT INTO `wp_gf_entry_meta` VALUES("33", "2", "7", "1.3", "Marija");
INSERT INTO `wp_gf_entry_meta` VALUES("34", "2", "7", "1.6", "Filipovic");
INSERT INTO `wp_gf_entry_meta` VALUES("35", "2", "7", "2", "marija.filipovic@viha.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("36", "2", "7", "6.3", "Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("37", "2", "8", "1.3", "Helen");
INSERT INTO `wp_gf_entry_meta` VALUES("38", "2", "8", "1.6", "Halpert");
INSERT INTO `wp_gf_entry_meta` VALUES("39", "2", "8", "2", "helen.halpert2@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("40", "2", "8", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("41", "2", "9", "1.3", "Dianne");
INSERT INTO `wp_gf_entry_meta` VALUES("42", "2", "9", "1.6", "Collery");
INSERT INTO `wp_gf_entry_meta` VALUES("43", "2", "9", "2", "diannecollery@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("44", "2", "9", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("45", "2", "10", "1.3", "Colleen");
INSERT INTO `wp_gf_entry_meta` VALUES("46", "2", "10", "1.6", "Cahoon");
INSERT INTO `wp_gf_entry_meta` VALUES("47", "2", "10", "2", "colleen.cahoon@forces.gc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("48", "2", "10", "6.3", "Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("49", "2", "11", "1.3", "Barbara");
INSERT INTO `wp_gf_entry_meta` VALUES("50", "2", "11", "1.6", "Underhill");
INSERT INTO `wp_gf_entry_meta` VALUES("51", "2", "11", "2", "bunderhill2012@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("52", "2", "11", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("53", "2", "12", "1.3", "Terry");
INSERT INTO `wp_gf_entry_meta` VALUES("54", "2", "12", "1.6", "Harper");
INSERT INTO `wp_gf_entry_meta` VALUES("55", "2", "12", "2", "terry.harper@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("56", "2", "12", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("57", "1", "13", "1.3", "David");
INSERT INTO `wp_gf_entry_meta` VALUES("58", "1", "13", "1.6", "Southern");
INSERT INTO `wp_gf_entry_meta` VALUES("59", "1", "13", "2", "southern_david@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("60", "1", "13", "3", "Hello, your agency was recommended by Kiran Bolaria,Transition Team Case Manager for the Victoria Mental Health Centre as a resource to provide help for my daughter, Nahanni, who is 40 years old.\r\n\r\nNahanni is very depressed and feels her life is not worth living, although certainly some of the depression is attributable to not quite having her meds balanced at the moment.  She has had some psychotic episodes in the past (she went off her meds a couple of months ago and ended up delusional and was apprehended under the mental health act and spent a couple of weeks at the Jubilee Psych ward).  She\'s been diagnosed in the past with schizophrenia and/or borderline personality disorder.  She was also struck by a car about 8 years ago and was in a coma for a couple of days, while she\'s recovered amazingly well I think it has had an impact on her memory and judgement.  She\'s been on long term disability through social assistance since then.\r\n\r\nSome of her problems stem from a psychologically abusive relationship with her mother (who fits the description of a narcissistic mother fairly closely, I think).  Since then she\'s had 3 or 4 relationships with males that I would also describe as abusive.  She very much wants a social life but is afraid to be around people.\r\n\r\nAnyway, I think that she has a number of issues from her past that she hasn\'t been able to successfully deal with or unpack on her own and she has (finally) agreed that a therapist/counselling might be able to help her move forward and begin to find some happiness in her life.\r\n\r\nAs I mentioned, she is on Long Term Disability and thus has income of less than $12,000 per year, however, I am able to cover the cost of her therapy (I\'m retired - my income is under $50,000 per year).  Do you think you would be able to provide some assistance to Nahanni?  She is open to counselling/therapy but, at this time, lacks the initiative to make the first move, which is why you\'re hearing from me and not her.\r\n\r\n");
INSERT INTO `wp_gf_entry_meta` VALUES("61", "1", "14", "1.3", "Whitney");
INSERT INTO `wp_gf_entry_meta` VALUES("62", "1", "14", "1.6", "Hobbs");
INSERT INTO `wp_gf_entry_meta` VALUES("63", "1", "14", "2", "the.math.geek@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("64", "1", "14", "5", "(250)884-5100");
INSERT INTO `wp_gf_entry_meta` VALUES("65", "1", "14", "3", "I am interested in communicating with Rosemary Merritt about possible counseling. If you could have her email me so we can see if it\'s the right fit, that would be appreciated. \r\n\r\nThank you,\r\n\r\nWhitney");
INSERT INTO `wp_gf_entry_meta` VALUES("66", "1", "15", "1.3", "Amber");
INSERT INTO `wp_gf_entry_meta` VALUES("67", "1", "15", "1.6", "Olson");
INSERT INTO `wp_gf_entry_meta` VALUES("68", "1", "15", "2", "amolson1012@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("69", "1", "15", "5", "(250)884-0144");
INSERT INTO `wp_gf_entry_meta` VALUES("70", "1", "15", "3", "Hello\r\nI am a licensed mental health practitioner recently moved here from Nebraska. I have my Masters in Counselling from UVic and have been practicing as a therapist in Nebraska since 2007 and have 3000 hours of direct and in-direct supervision combined. I found out that to become a registered clinical counsellor here in BC I need an additional 25 hours of \"observed\" supervision and I\'m wondering if I can make an appointment with Bill Cole so that I could see clients as an intern and get this criteria met. \r\nOr, if there is someone there who would have any other suggestions for me, I would really appreciate it! It\'s challenging to have to go through this process when I\'ve already been working as a therapist but I understand the concept of \"when in Rome...\". Please get back to me as soon as possible because the next BC College of Counsellors\' review date is December 1\r\nAmber Olson, M.Ed.");
INSERT INTO `wp_gf_entry_meta` VALUES("71", "1", "16", "1.3", "Erica");
INSERT INTO `wp_gf_entry_meta` VALUES("72", "1", "16", "1.6", "Giroux");
INSERT INTO `wp_gf_entry_meta` VALUES("73", "1", "16", "2", "ericagiroux@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("74", "1", "16", "5", "(250)896-9574");
INSERT INTO `wp_gf_entry_meta` VALUES("75", "1", "16", "3", "Hello,\r\n\r\nI would like to book an initial appointment to talk about getting some counselling services. What do I need to do to book this appointment?\r\n\r\nThank you,\r\nErica Giroux");
INSERT INTO `wp_gf_entry_meta` VALUES("76", "1", "17", "1.3", "Laurel");
INSERT INTO `wp_gf_entry_meta` VALUES("77", "1", "17", "1.6", "Lawford");
INSERT INTO `wp_gf_entry_meta` VALUES("78", "1", "17", "2", "lasl52@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("79", "1", "17", "5", "(778)426-3228");
INSERT INTO `wp_gf_entry_meta` VALUES("80", "1", "17", "3", "Hello Bill,\r\n\r\nI would be able to have an appointment with you on Friday Sept. 12th or 19th. Preferable times are between 11 & 2, however I can try to make alternate arrangements to try to fit in at another time.\r\n\r\nThank you,\r\n\r\nLaurel");
INSERT INTO `wp_gf_entry_meta` VALUES("81", "3", "18", "1.3", "Frances");
INSERT INTO `wp_gf_entry_meta` VALUES("82", "3", "18", "1.6", "Pook");
INSERT INTO `wp_gf_entry_meta` VALUES("83", "3", "18", "2", "bryderbay@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("84", "3", "18", "3.1", "2 - 1203 Beach Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("85", "3", "18", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("86", "3", "18", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("87", "3", "18", "3.5", "V8S 2N2");
INSERT INTO `wp_gf_entry_meta` VALUES("88", "3", "18", "4", "(250)360-0507");
INSERT INTO `wp_gf_entry_meta` VALUES("89", "3", "18", "7", "October 4, 2014");
INSERT INTO `wp_gf_entry_meta` VALUES("90", "3", "18", "5", "Pastoral Care Team Training");
INSERT INTO `wp_gf_entry_meta` VALUES("91", "2", "19", "1.3", "joanna");
INSERT INTO `wp_gf_entry_meta` VALUES("92", "2", "19", "1.6", "titus");
INSERT INTO `wp_gf_entry_meta` VALUES("93", "2", "19", "2", "joanna.titus@viha.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("94", "2", "19", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("95", "2", "20", "1.3", "Barb");
INSERT INTO `wp_gf_entry_meta` VALUES("96", "2", "20", "1.6", "Johnson");
INSERT INTO `wp_gf_entry_meta` VALUES("97", "2", "20", "2", "brj_johnson@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("98", "2", "20", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("99", "1", "21", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("100", "1", "21", "1.6", "Freeman");
INSERT INTO `wp_gf_entry_meta` VALUES("101", "1", "21", "2", "karenfreeman@coscowichan.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("102", "1", "21", "5", "(250)748-0232");
INSERT INTO `wp_gf_entry_meta` VALUES("103", "1", "21", "3", "Hello!  We are looking for a staff inservice/training around trauma-informed practice.  We are a not for profit counselling agency (for teens and their families) in the Cowichan Valley.  We engaged you 4-5 yrs ago to do a training in family therapy.  I would be interested in talking  about having you do another training with us.  Thanks!");
INSERT INTO `wp_gf_entry_meta` VALUES("104", "3", "22", "1.3", "susan");
INSERT INTO `wp_gf_entry_meta` VALUES("105", "3", "22", "1.6", "ghitan");
INSERT INTO `wp_gf_entry_meta` VALUES("106", "3", "22", "2", "ghitan@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("107", "3", "22", "3.1", "1609 knight ave");
INSERT INTO `wp_gf_entry_meta` VALUES("108", "3", "22", "3.3", "1609  knight ave");
INSERT INTO `wp_gf_entry_meta` VALUES("109", "3", "22", "3.4", "bc");
INSERT INTO `wp_gf_entry_meta` VALUES("110", "3", "22", "3.5", "victoria V8P 1L2");
INSERT INTO `wp_gf_entry_meta` VALUES("111", "3", "22", "4", "(250)592-7076");
INSERT INTO `wp_gf_entry_meta` VALUES("112", "3", "22", "7", "10/04/2014");
INSERT INTO `wp_gf_entry_meta` VALUES("113", "3", "22", "5", "Pastoral Care Tean Training");
INSERT INTO `wp_gf_entry_meta` VALUES("115", "1", "23", "1.3", "Linda");
INSERT INTO `wp_gf_entry_meta` VALUES("116", "1", "23", "1.6", "pinay");
INSERT INTO `wp_gf_entry_meta` VALUES("117", "1", "23", "2", "lpinay1@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("118", "1", "23", "5", "(250)478-6782");
INSERT INTO `wp_gf_entry_meta` VALUES("119", "1", "23", "3", "Hi,  how long does it take to get an appointment with a trauma/grief counsellor?");
INSERT INTO `wp_gf_entry_meta` VALUES("120", "3", "24", "1.3", "Guillermo");
INSERT INTO `wp_gf_entry_meta` VALUES("121", "3", "24", "1.6", "Carcamo");
INSERT INTO `wp_gf_entry_meta` VALUES("122", "3", "24", "2", "guicar@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("123", "3", "24", "3.1", "25-1506 Admirals Rd.");
INSERT INTO `wp_gf_entry_meta` VALUES("124", "3", "24", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("125", "3", "24", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("126", "3", "24", "3.5", "V9A 7B1");
INSERT INTO `wp_gf_entry_meta` VALUES("127", "3", "24", "4", "(250)884-4190");
INSERT INTO `wp_gf_entry_meta` VALUES("128", "3", "24", "7", "Oct/04/2014");
INSERT INTO `wp_gf_entry_meta` VALUES("129", "3", "24", "5", "Pastoral Care Team Training");
INSERT INTO `wp_gf_entry_meta` VALUES("131", "3", "25", "1.3", "Bill");
INSERT INTO `wp_gf_entry_meta` VALUES("132", "3", "25", "1.6", "Townsend");
INSERT INTO `wp_gf_entry_meta` VALUES("133", "3", "25", "2", "BandD2@uniserve.com");
INSERT INTO `wp_gf_entry_meta` VALUES("134", "3", "25", "3.1", "1020 McBriar Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("135", "3", "25", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("136", "3", "25", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("137", "3", "25", "3.5", "V8X3M5");
INSERT INTO `wp_gf_entry_meta` VALUES("138", "3", "25", "4", "(250)727-6174");
INSERT INTO `wp_gf_entry_meta` VALUES("139", "3", "25", "7", "10/4/2014");
INSERT INTO `wp_gf_entry_meta` VALUES("140", "3", "25", "5", "Pastoral Care Team Training");
INSERT INTO `wp_gf_entry_meta` VALUES("142", "3", "26", "1.3", "Dion  &   Grace");
INSERT INTO `wp_gf_entry_meta` VALUES("143", "3", "26", "1.6", "Pomponio");
INSERT INTO `wp_gf_entry_meta` VALUES("144", "3", "26", "2", "dion@pomponio.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("145", "3", "26", "3.1", "927A Goldstream Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("146", "3", "26", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("147", "3", "26", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("148", "3", "26", "3.5", "V9B 2Y2");
INSERT INTO `wp_gf_entry_meta` VALUES("149", "3", "26", "4", "(250)478-3230");
INSERT INTO `wp_gf_entry_meta` VALUES("150", "3", "26", "7", "10/04/2014");
INSERT INTO `wp_gf_entry_meta` VALUES("151", "3", "26", "5", "Pastoral Care Team Training, Saturday, October 4, 2014\r\n\r\n* will call in tomorrow before the 1pm cutoff time to pay for these two registrations   \r\nGrace Pomponio \r\nDion Pomponio");
INSERT INTO `wp_gf_entry_meta` VALUES("153", "1", "27", "1.3", "Philip");
INSERT INTO `wp_gf_entry_meta` VALUES("154", "1", "27", "1.6", "Ross");
INSERT INTO `wp_gf_entry_meta` VALUES("155", "1", "27", "2", "philiplaross@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("156", "1", "27", "5", "(250)370-0423");
INSERT INTO `wp_gf_entry_meta` VALUES("157", "3", "28", "1.3", "Claire");
INSERT INTO `wp_gf_entry_meta` VALUES("158", "3", "28", "1.6", "Coombs");
INSERT INTO `wp_gf_entry_meta` VALUES("159", "3", "28", "2", "gwcoombs@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("160", "3", "28", "3.1", "5980 Rothwell Rd.");
INSERT INTO `wp_gf_entry_meta` VALUES("161", "3", "28", "3.3", "Duncan");
INSERT INTO `wp_gf_entry_meta` VALUES("162", "3", "28", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("163", "3", "28", "3.5", "V9L 3B7");
INSERT INTO `wp_gf_entry_meta` VALUES("164", "3", "28", "4", "(250)748-4772");
INSERT INTO `wp_gf_entry_meta` VALUES("165", "3", "28", "7", "October 4, 2014");
INSERT INTO `wp_gf_entry_meta` VALUES("166", "3", "28", "5", "Pastoral Counselling Training Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("168", "2", "29", "1.3", "William");
INSERT INTO `wp_gf_entry_meta` VALUES("169", "2", "29", "1.6", "Foster");
INSERT INTO `wp_gf_entry_meta` VALUES("170", "2", "29", "2", "WilliamF@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("171", "2", "29", "7.1", "Newsletter");
INSERT INTO `wp_gf_entry_meta` VALUES("172", "2", "29", "7.2", "Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("173", "2", "29", "7.3", "All Notifications from South Island Centre");
INSERT INTO `wp_gf_entry_meta` VALUES("174", "3", "30", "1.3", "susan");
INSERT INTO `wp_gf_entry_meta` VALUES("175", "3", "30", "1.6", "ghitan");
INSERT INTO `wp_gf_entry_meta` VALUES("176", "3", "30", "2", "ghitan@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("177", "3", "30", "3.1", "1609 knight ave");
INSERT INTO `wp_gf_entry_meta` VALUES("178", "3", "30", "3.3", "victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("179", "3", "30", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("180", "3", "30", "3.5", "V8P1L2");
INSERT INTO `wp_gf_entry_meta` VALUES("181", "3", "30", "4", "(250)592-7076");
INSERT INTO `wp_gf_entry_meta` VALUES("182", "3", "30", "7", "Oct 24/14");
INSERT INTO `wp_gf_entry_meta` VALUES("183", "3", "30", "5", "Enneagram");
INSERT INTO `wp_gf_entry_meta` VALUES("185", "3", "31", "1.3", "James");
INSERT INTO `wp_gf_entry_meta` VALUES("186", "3", "31", "1.6", "Kerr");
INSERT INTO `wp_gf_entry_meta` VALUES("187", "3", "31", "2", "arbutustreed@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("188", "3", "31", "3.1", "#604-655 Douglas St");
INSERT INTO `wp_gf_entry_meta` VALUES("189", "3", "31", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("190", "3", "31", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("191", "3", "31", "3.5", "v8v 0b6");
INSERT INTO `wp_gf_entry_meta` VALUES("192", "3", "31", "4", "(250)580-9050");
INSERT INTO `wp_gf_entry_meta` VALUES("193", "3", "31", "7", "Oct/30/2014");
INSERT INTO `wp_gf_entry_meta` VALUES("194", "3", "31", "5", "Helping People Change");
INSERT INTO `wp_gf_entry_meta` VALUES("196", "3", "32", "1.3", "Carol");
INSERT INTO `wp_gf_entry_meta` VALUES("197", "3", "32", "1.6", "Stockall");
INSERT INTO `wp_gf_entry_meta` VALUES("198", "3", "32", "2", "carolstockall@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("199", "3", "32", "3.1", "505-1630 Quadra Stree");
INSERT INTO `wp_gf_entry_meta` VALUES("200", "3", "32", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("201", "3", "32", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("202", "3", "32", "3.5", "V8W 3J5");
INSERT INTO `wp_gf_entry_meta` VALUES("203", "3", "32", "4", "(250)532-0667");
INSERT INTO `wp_gf_entry_meta` VALUES("204", "3", "32", "7", "October 17");
INSERT INTO `wp_gf_entry_meta` VALUES("205", "3", "32", "5", "Enneagram");
INSERT INTO `wp_gf_entry_meta` VALUES("207", "3", "33", "1.3", "Michelle");
INSERT INTO `wp_gf_entry_meta` VALUES("208", "3", "33", "1.6", "Redfern");
INSERT INTO `wp_gf_entry_meta` VALUES("209", "3", "33", "2", "bonkferns@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("210", "3", "33", "3.1", "1251 Fisher Road");
INSERT INTO `wp_gf_entry_meta` VALUES("211", "3", "33", "3.3", "Cobble Hill");
INSERT INTO `wp_gf_entry_meta` VALUES("212", "3", "33", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("213", "3", "33", "3.5", "V0R 1L4");
INSERT INTO `wp_gf_entry_meta` VALUES("214", "3", "33", "4", "(250)743-6937");
INSERT INTO `wp_gf_entry_meta` VALUES("215", "3", "33", "7", "October 24, 2014");
INSERT INTO `wp_gf_entry_meta` VALUES("216", "3", "33", "5", "The Enneagram");
INSERT INTO `wp_gf_entry_meta` VALUES("218", "3", "34", "1.3", "Ernie");
INSERT INTO `wp_gf_entry_meta` VALUES("219", "3", "34", "1.6", "Fraser");
INSERT INTO `wp_gf_entry_meta` VALUES("220", "3", "34", "2", "erniefraser@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("221", "3", "34", "3.1", "19 - 1480 Garnet Road");
INSERT INTO `wp_gf_entry_meta` VALUES("222", "3", "34", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("223", "3", "34", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("224", "3", "34", "3.5", "V8P 5K9");
INSERT INTO `wp_gf_entry_meta` VALUES("225", "3", "34", "4", "(250)721-1124");
INSERT INTO `wp_gf_entry_meta` VALUES("226", "3", "34", "7", "Oct. 24, 2014");
INSERT INTO `wp_gf_entry_meta` VALUES("227", "3", "34", "5", "The Enneagram - A Journey of Self Discovery");
INSERT INTO `wp_gf_entry_meta` VALUES("229", "3", "35", "1.3", "emilie");
INSERT INTO `wp_gf_entry_meta` VALUES("230", "3", "35", "1.6", "campeau");
INSERT INTO `wp_gf_entry_meta` VALUES("231", "3", "35", "2", "emcampeau@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("232", "3", "35", "3.1", "2-2824 heath drive");
INSERT INTO `wp_gf_entry_meta` VALUES("233", "3", "35", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("234", "3", "35", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("235", "3", "35", "3.5", "v9a 2j5");
INSERT INTO `wp_gf_entry_meta` VALUES("236", "3", "35", "4", "(250)507-2857");
INSERT INTO `wp_gf_entry_meta` VALUES("237", "3", "35", "7", "11/29/2014");
INSERT INTO `wp_gf_entry_meta` VALUES("238", "3", "35", "5", "caregiver burnout and the need for self care");
INSERT INTO `wp_gf_entry_meta` VALUES("240", "3", "36", "1.3", "Mary");
INSERT INTO `wp_gf_entry_meta` VALUES("241", "3", "36", "1.6", "parry");
INSERT INTO `wp_gf_entry_meta` VALUES("242", "3", "36", "2", "maryparry3@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("243", "3", "36", "3.1", "5230 Beckton RoD");
INSERT INTO `wp_gf_entry_meta` VALUES("244", "3", "36", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("245", "3", "36", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("246", "3", "36", "3.5", "V8Y 2C 1");
INSERT INTO `wp_gf_entry_meta` VALUES("247", "3", "36", "4", "(250)477-0593");
INSERT INTO `wp_gf_entry_meta` VALUES("248", "3", "36", "7", "10/24/2014");
INSERT INTO `wp_gf_entry_meta` VALUES("249", "3", "36", "5", "The Ennegram Journey");
INSERT INTO `wp_gf_entry_meta` VALUES("251", "1", "37", "1.3", "LARRY");
INSERT INTO `wp_gf_entry_meta` VALUES("252", "1", "37", "1.6", "SENZIG");
INSERT INTO `wp_gf_entry_meta` VALUES("253", "1", "37", "2", "judy52@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("254", "1", "37", "5", "(250)391-9797");
INSERT INTO `wp_gf_entry_meta` VALUES("255", "1", "37", "3", "HI I AM 54,I RECENTLY LOST MY WIFE.I AM A NEW CHRISTIAN OF 2 YEARS.I HAVE HAD A PASSION TO BE A COUNSILLOR FOR MANY YEARS.I WANT TO CHANGE MY CAREER.COULD YOU PLEASE GUIDE ME ON WHERE OR HOW I CAN GO ABOUT THIS.I HAVE LOOKED ON THE INTERNET AND FOUND YOUR SITE TO BE THE MOST PROMISING.THANK YOU FOR YOUR TIME.");
INSERT INTO `wp_gf_entry_meta` VALUES("256", "1", "38", "1.3", "Karli");
INSERT INTO `wp_gf_entry_meta` VALUES("257", "1", "38", "1.6", "Mann");
INSERT INTO `wp_gf_entry_meta` VALUES("258", "1", "38", "2", "karlirmann@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("259", "1", "38", "5", "(780)953-2553");
INSERT INTO `wp_gf_entry_meta` VALUES("260", "1", "38", "3", "Hi there, I am interested in having some counselling. I am dealing with a lot of depression, anxiety and overall stress regarding my relationships, with a recent medical diagnosis and struggling how to follow what is best for myself and what God wants for me to do. I am struggling trying to sort out my cycle of thoughts by myself. I recently donated during a Church offering which is where I heard about you. If you could get back to me, I would appreciate it greatly. I am in school at UVIC from monday to friday until either 12:30 (W,F) or 2:30 (T,Th,F). I work one night per weekend at a restaurant so I mostly am free in the early afternoons, evenings and some weekends. Thanks again. My name is Karli, I can be contacted easily by phone, text or email.");
INSERT INTO `wp_gf_entry_meta` VALUES("261", "6", "39", "1.3", "Deborah");
INSERT INTO `wp_gf_entry_meta` VALUES("262", "6", "39", "1.6", "Jantzen");
INSERT INTO `wp_gf_entry_meta` VALUES("263", "6", "39", "5", "aunt_ducks@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("264", "6", "39", "6", "(250)727-6060");
INSERT INTO `wp_gf_entry_meta` VALUES("265", "6", "39", "7.1", "915 Falaise Crescent");
INSERT INTO `wp_gf_entry_meta` VALUES("266", "6", "39", "7.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("267", "6", "39", "7.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("268", "6", "39", "7.5", "V8Y1A2");
INSERT INTO `wp_gf_entry_meta` VALUES("269", "6", "39", "8.2", "Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)");
INSERT INTO `wp_gf_entry_meta` VALUES("270", "6", "39", "9", "4");
INSERT INTO `wp_gf_entry_meta` VALUES("271", "6", "39", "11.1", "cash (drop off in person when you pick up your ticket (by November 14)");
INSERT INTO `wp_gf_entry_meta` VALUES("272", "3", "40", "1.3", "Janette");
INSERT INTO `wp_gf_entry_meta` VALUES("273", "3", "40", "1.6", "Taylor");
INSERT INTO `wp_gf_entry_meta` VALUES("274", "3", "40", "2", "jat0930@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("275", "3", "40", "3.1", "423 3255 Cook St");
INSERT INTO `wp_gf_entry_meta` VALUES("276", "3", "40", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("277", "3", "40", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("278", "3", "40", "3.5", "v8x1a4");
INSERT INTO `wp_gf_entry_meta` VALUES("279", "3", "40", "4", "(778)430-0383");
INSERT INTO `wp_gf_entry_meta` VALUES("280", "3", "40", "7", "11/12/14");
INSERT INTO `wp_gf_entry_meta` VALUES("281", "3", "40", "5", "The Twilight Journey");
INSERT INTO `wp_gf_entry_meta` VALUES("283", "1", "41", "1.3", "Peter");
INSERT INTO `wp_gf_entry_meta` VALUES("284", "1", "41", "1.6", "Hickman");
INSERT INTO `wp_gf_entry_meta` VALUES("285", "1", "41", "2", "peter_hickman@can.salvationarmy.org");
INSERT INTO `wp_gf_entry_meta` VALUES("286", "1", "41", "5", "(778)433-7292");
INSERT INTO `wp_gf_entry_meta` VALUES("287", "1", "41", "3", "Good afternoon Bill, \r\n\r\nThis is Peter Hickman here; the reason I am contacting you is that I was wondering if I could take 20 minutes of your time this coming Friday (Nov 7). I am taking an counseling course and I have been asked to interview an active counselor. I am available anytime before 2:30 Just thought I ask - no worries if you can\'t fit me in. \r\n\r\nThanks, \r\nPeter.");
INSERT INTO `wp_gf_entry_meta` VALUES("288", "3", "42", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("289", "3", "42", "1.6", "Nixon");
INSERT INTO `wp_gf_entry_meta` VALUES("290", "3", "42", "2", "sarahnixon04@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("291", "3", "42", "3.1", "3171 Stevenson Place");
INSERT INTO `wp_gf_entry_meta` VALUES("292", "3", "42", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("293", "3", "42", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("294", "3", "42", "3.5", "V8X 1C4");
INSERT INTO `wp_gf_entry_meta` VALUES("295", "3", "42", "4", "(778)678-1704");
INSERT INTO `wp_gf_entry_meta` VALUES("296", "3", "42", "7", "Any");
INSERT INTO `wp_gf_entry_meta` VALUES("297", "3", "42", "5", "Any, just wanting general information updates");
INSERT INTO `wp_gf_entry_meta` VALUES("299", "1", "43", "1.3", "Peter");
INSERT INTO `wp_gf_entry_meta` VALUES("300", "1", "43", "1.6", "Hickman");
INSERT INTO `wp_gf_entry_meta` VALUES("301", "1", "43", "2", "peter_hickman@can.salvationarmy.org");
INSERT INTO `wp_gf_entry_meta` VALUES("302", "1", "43", "5", "(778)433-7292");
INSERT INTO `wp_gf_entry_meta` VALUES("303", "1", "43", "3", "Good Morning Bill, \r\n\r\nPlease disregard my last email. It looks like I found an interviewee in my neighborhood.\r\n\r\nThanks anyways, \r\nPeter Hickman.");
INSERT INTO `wp_gf_entry_meta` VALUES("304", "1", "44", "1.3", "Carolyn");
INSERT INTO `wp_gf_entry_meta` VALUES("305", "1", "44", "1.6", "Davies");
INSERT INTO `wp_gf_entry_meta` VALUES("306", "1", "44", "2", "Carolyn@cedavies.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("307", "1", "44", "5", "(778)879-3689");
INSERT INTO `wp_gf_entry_meta` VALUES("308", "1", "44", "3", "I am interested in individual or group counselling in the afternoon or evening, any day of the week but Wednesday.");
INSERT INTO `wp_gf_entry_meta` VALUES("309", "1", "45", "1.3", "Debbie");
INSERT INTO `wp_gf_entry_meta` VALUES("310", "1", "45", "1.6", "Brotherston");
INSERT INTO `wp_gf_entry_meta` VALUES("311", "1", "45", "2", "debbie.brotherston@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("312", "1", "45", "5", "(250)727-6141");
INSERT INTO `wp_gf_entry_meta` VALUES("313", "1", "45", "3", "Hi, I\'m looking into getting some counselling for my husband and me. Our medical plan covers the services of a registered psychologist or a registered social worker, but not a registered clinical counsellor. Would any of your counsellors have either of these designations? \r\n\r\nThanks for your help.\r\n\r\nDebbie");
INSERT INTO `wp_gf_entry_meta` VALUES("314", "1", "46", "1.3", "Debbie");
INSERT INTO `wp_gf_entry_meta` VALUES("315", "1", "46", "1.6", "Brotherston");
INSERT INTO `wp_gf_entry_meta` VALUES("316", "1", "46", "2", "debbie.brotherston@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("317", "1", "46", "5", "(250)727-6141");
INSERT INTO `wp_gf_entry_meta` VALUES("318", "1", "46", "3", "Hi, I sent you an email a short while ago and forgot to also ask if you provide counselling services after normal working hours or on Saturdays?\r\n\r\nThanks,\r\n\r\nDebbie");
INSERT INTO `wp_gf_entry_meta` VALUES("319", "6", "47", "1.3", "Kathy");
INSERT INTO `wp_gf_entry_meta` VALUES("320", "6", "47", "1.6", "Campbell");
INSERT INTO `wp_gf_entry_meta` VALUES("321", "6", "47", "5", "kath_chip@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("322", "6", "47", "6", "(250)598-6188");
INSERT INTO `wp_gf_entry_meta` VALUES("323", "6", "47", "7.1", "409   1436 Harrison Street");
INSERT INTO `wp_gf_entry_meta` VALUES("324", "6", "47", "7.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("325", "6", "47", "7.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("326", "6", "47", "7.5", "V8S 3S2");
INSERT INTO `wp_gf_entry_meta` VALUES("327", "6", "47", "8.2", "Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)");
INSERT INTO `wp_gf_entry_meta` VALUES("328", "6", "47", "9", "3");
INSERT INTO `wp_gf_entry_meta` VALUES("329", "6", "47", "11.2", "cheque (may be post-dated to Nov. 14 and mailed to us)");
INSERT INTO `wp_gf_entry_meta` VALUES("330", "6", "47", "12", "I am writing a cheque and will drop it off early Monday afternoon - Nov 17");
INSERT INTO `wp_gf_entry_meta` VALUES("331", "1", "48", "1.3", "Linda");
INSERT INTO `wp_gf_entry_meta` VALUES("332", "1", "48", "1.6", "Dickson");
INSERT INTO `wp_gf_entry_meta` VALUES("333", "1", "48", "2", "dickson.lindam@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("334", "1", "48", "5", "(250)721-3599");
INSERT INTO `wp_gf_entry_meta` VALUES("335", "1", "48", "3", "Please let Laurie know that I would be happy to donate art work for the silent auction, if she is interested, thank you. \r\nLinda Dickson\r\n250-721-3599\r\nAbstract Art\r\nemail:dickson.lindam@gmail.com\r\nwww.lindadicksonart.com\r\n");
INSERT INTO `wp_gf_entry_meta` VALUES("336", "3", "49", "1.3", "Erin");
INSERT INTO `wp_gf_entry_meta` VALUES("337", "3", "49", "1.6", "Bremner");
INSERT INTO `wp_gf_entry_meta` VALUES("338", "3", "49", "2", "eebremner@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("339", "3", "49", "3.1", "618 Baker st");
INSERT INTO `wp_gf_entry_meta` VALUES("340", "3", "49", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("341", "3", "49", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("342", "3", "49", "3.5", "V8Z 2H7");
INSERT INTO `wp_gf_entry_meta` VALUES("343", "3", "49", "4", "(250)818-1840");
INSERT INTO `wp_gf_entry_meta` VALUES("344", "3", "49", "7", "Feb 7 2015");
INSERT INTO `wp_gf_entry_meta` VALUES("345", "3", "49", "5", "Preparing for Marriage\r\n\r\n$225.00 per couple for one-day workshop + two 1-hour follow-up sessions\r\n\r\nOr \r\n\r\nPricing for a private full day workshop\r\n\r\n");
INSERT INTO `wp_gf_entry_meta` VALUES("347", "1", "50", "1.3", "Justice");
INSERT INTO `wp_gf_entry_meta` VALUES("348", "1", "50", "1.6", "Wilson");
INSERT INTO `wp_gf_entry_meta` VALUES("349", "1", "50", "2", "Justicewilson@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("350", "1", "50", "5", "(250)217-2118");
INSERT INTO `wp_gf_entry_meta` VALUES("351", "1", "50", "3", "Good afternoon, \r\n\r\nI am wondering what the process is to get in an see a counsellor, how the scale works as i am currently barely employed, and what the waiting list is like if there is one. \r\n\r\nAny information you could provide would be greatly appreciated, as I would like to make an appointment soon. \r\n\r\nThank you, \r\nJustice");
INSERT INTO `wp_gf_entry_meta` VALUES("352", "1", "51", "1.3", "Lacey");
INSERT INTO `wp_gf_entry_meta` VALUES("353", "1", "51", "1.6", "Hawthorne");
INSERT INTO `wp_gf_entry_meta` VALUES("354", "1", "51", "2", "lacey.d.hawthorne@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("355", "1", "51", "5", "(250)213-7781");
INSERT INTO `wp_gf_entry_meta` VALUES("356", "1", "51", "3", "Hi there, \r\n\r\nI wanted to get in touch regarding making an initial appointment. I\'ve recently moved to Victoria from Northern BC and am seeking help with ongoing issues of depression and anxiety. \r\n\r\nI\'ve had a look at your sliding fee scale, and I\'m not sure how it would work out -- I\'m a self-employed book editor, and am currently making between $26,000-30,000 a year. My husband has just gone back to university, so I\'m supporting us both. Would it be best to call and discuss a payment method before making an appointment? \r\n\r\nMany thanks,\r\n\r\nLacey");
INSERT INTO `wp_gf_entry_meta` VALUES("357", "2", "52", "1.3", "Wendy");
INSERT INTO `wp_gf_entry_meta` VALUES("358", "2", "52", "1.6", "Margetts");
INSERT INTO `wp_gf_entry_meta` VALUES("359", "2", "52", "2", "wendy.margetts@viha.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("360", "2", "52", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("361", "2", "52", "6.3", "Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("362", "1", "53", "1.3", "Margaret");
INSERT INTO `wp_gf_entry_meta` VALUES("363", "1", "53", "1.6", "Boyes");
INSERT INTO `wp_gf_entry_meta` VALUES("364", "1", "53", "2", "margboyes@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("365", "1", "53", "5", "(250)370-1573");
INSERT INTO `wp_gf_entry_meta` VALUES("366", "1", "53", "3", "Could you please tell me the best time to contact someone by phone?\r\n\r\nI\'ve tried unsuccessfully to navigate your voicemail system. Also, I can\'t get your sliding scale webpage to work.\r\n\r\nThanks so much!");
INSERT INTO `wp_gf_entry_meta` VALUES("367", "1", "54", "1.3", "Sara");
INSERT INTO `wp_gf_entry_meta` VALUES("368", "1", "54", "1.6", "McKerracher");
INSERT INTO `wp_gf_entry_meta` VALUES("369", "1", "54", "2", "mckerracher.sa@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("370", "1", "54", "5", "(250)893-6177");
INSERT INTO `wp_gf_entry_meta` VALUES("371", "1", "54", "3", "I am currently on Social Assistance, waiting for my referral to see a Psychiatrist to go through (which won\'t be for another month at least). I\'ve experienced a fair amount of trauma (sexual, physical, and emotional) in the last 4-5 months and desperately need to talk to a professional, for my own sanity. I am no longer experiencing abuse, as I discharged myself from the situation a month ago. The counsellors at Transition House are impossible to set appointments up with, unfortunately. I\'m not seeking a women\'s shelter or looking to report anything to victim services. I just need a counsellor to talk to. Since I am on Social Assistance, I can\'t afford much, so if you can let me know what fee you think seems fair. Also, please let me know if there is a waiting list for new patients, and if so, how long is the waiting list? \r\n\r\n\r\nThank you,\r\n\r\nSara");
INSERT INTO `wp_gf_entry_meta` VALUES("372", "1", "55", "1.3", "Denis");
INSERT INTO `wp_gf_entry_meta` VALUES("373", "1", "55", "1.6", "Mannion");
INSERT INTO `wp_gf_entry_meta` VALUES("374", "1", "55", "2", "tfog199@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("375", "1", "55", "5", "(250)893-4711");
INSERT INTO `wp_gf_entry_meta` VALUES("376", "1", "55", "3", "Hi, \r\nMy situation has become quite stressful due to unemployment, a lack of resources, not really knowing how to turn things around nor who to go to for guidance. I have recently ended a relationship that can only be described as a cataract of disaster from start to finish. My ex partner has called the police on me, unfairly I feel, and I am fearful that she will \"engineer\" a situation the could see me deprived of my liberty. Everywhere I go I am constantly watching my back for any sign of her just in case she uses the sighting of me to call the police! \r\nI\'m not sure if you can, or even want to help me, but if there is a possibility, I would be interested to hear how I may possibly be able to recover some of myself in all of this chaos.\r\n\r\nSincerely\r\nDenis Mannion");
INSERT INTO `wp_gf_entry_meta` VALUES("377", "1", "56", "1.3", "Susie");
INSERT INTO `wp_gf_entry_meta` VALUES("378", "1", "56", "1.6", "Davis");
INSERT INTO `wp_gf_entry_meta` VALUES("379", "1", "56", "2", "davis_sue_z_q@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("380", "1", "56", "5", "(250)744-7922");
INSERT INTO `wp_gf_entry_meta` VALUES("381", "1", "56", "3", "Hi there,\r\nI called a few days ago, hoping I would be able to schedule an appointment for my 17 year old daughter, who is having problems with anxiety.  I wanted to see if Laurie Truant had availabilty.  I left my name and number, but have not heard back from Laurie yet.  Just wanted to make sure that she received my message.\r\nCheers,\r\nSusie Davis");
INSERT INTO `wp_gf_entry_meta` VALUES("382", "1", "57", "1.3", "Angelique");
INSERT INTO `wp_gf_entry_meta` VALUES("383", "1", "57", "1.6", "Kambeitz");
INSERT INTO `wp_gf_entry_meta` VALUES("384", "1", "57", "2", "angelique@unition.com");
INSERT INTO `wp_gf_entry_meta` VALUES("385", "1", "57", "5", "(250)580-1293");
INSERT INTO `wp_gf_entry_meta` VALUES("386", "1", "57", "3", "Please pass on my email to Laurie Truant if she wants another way to contact me. Thx :) Angelique (Amber Ikle\'s Mom)");
INSERT INTO `wp_gf_entry_meta` VALUES("387", "3", "58", "1.3", "Anika");
INSERT INTO `wp_gf_entry_meta` VALUES("388", "3", "58", "1.6", "Ursuliak");
INSERT INTO `wp_gf_entry_meta` VALUES("389", "3", "58", "2", "anika.ursuliak@viha.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("390", "3", "58", "3.1", "307-825 Cook Street");
INSERT INTO `wp_gf_entry_meta` VALUES("391", "3", "58", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("392", "3", "58", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("393", "3", "58", "3.5", "V8V 3Z1");
INSERT INTO `wp_gf_entry_meta` VALUES("394", "3", "58", "4", "(250)532-1944");
INSERT INTO `wp_gf_entry_meta` VALUES("395", "3", "58", "7", "01/31/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("396", "3", "58", "5", "Caregiver Burnout: The Need for Self-Care (Professional Caregivers),");
INSERT INTO `wp_gf_entry_meta` VALUES("398", "3", "59", "1.3", "Suzanne");
INSERT INTO `wp_gf_entry_meta` VALUES("399", "3", "59", "1.6", "MacLeod");
INSERT INTO `wp_gf_entry_meta` VALUES("400", "3", "59", "2", "macsuz@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("401", "3", "59", "3.1", "2170 Pentland Road");
INSERT INTO `wp_gf_entry_meta` VALUES("402", "3", "59", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("403", "3", "59", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("404", "3", "59", "3.5", "V8S 2W6");
INSERT INTO `wp_gf_entry_meta` VALUES("405", "3", "59", "4", "(250)721-4452");
INSERT INTO `wp_gf_entry_meta` VALUES("406", "3", "59", "7", "January 31, 2015");
INSERT INTO `wp_gf_entry_meta` VALUES("407", "3", "59", "5", "Caregiver Burnout: The Need for Self-Care (Professional Caregivers)");
INSERT INTO `wp_gf_entry_meta` VALUES("409", "1", "60", "1.3", "Melissa");
INSERT INTO `wp_gf_entry_meta` VALUES("410", "1", "60", "1.6", "Kelly");
INSERT INTO `wp_gf_entry_meta` VALUES("411", "1", "60", "2", "mkelly_82@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("412", "1", "60", "5", "(250)893-8828");
INSERT INTO `wp_gf_entry_meta` VALUES("413", "1", "60", "3", "I\'m looking for counselling, my cowoker told me about your office. if I could make an appointment soon that would be wonderful.\r\n\r\nThanks so much\r\n\r\nMelissa");
INSERT INTO `wp_gf_entry_meta` VALUES("414", "1", "61", "1.3", "Mike");
INSERT INTO `wp_gf_entry_meta` VALUES("415", "1", "61", "1.6", "Schmalz");
INSERT INTO `wp_gf_entry_meta` VALUES("416", "1", "61", "2", "mi.ke@mac.com");
INSERT INTO `wp_gf_entry_meta` VALUES("417", "1", "61", "5", "(778)677-6453");
INSERT INTO `wp_gf_entry_meta` VALUES("418", "1", "61", "3", "Hi, \r\nI am searching for a counsellor. I\'m newer to the Island and am a grad student at UVic. Ideally, I\'m looking for a counsellor, for longer term, with a solid understanding of the Christian perspective and perhaps with some background in attachment/interpersonal therapy. Is there anyone at your site that might fit the bill? I\'d be open to discussing options. I\'d prefer contact through email since I\'m either working or at school most days. \r\n\r\nLooking forward to hearing back from you. \r\nThanks, \r\nMike");
INSERT INTO `wp_gf_entry_meta` VALUES("419", "1", "62", "1.3", "Susan");
INSERT INTO `wp_gf_entry_meta` VALUES("420", "1", "62", "1.6", "Lewis");
INSERT INTO `wp_gf_entry_meta` VALUES("421", "1", "62", "2", "shelby350m@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("422", "1", "62", "5", "(250)516-6823");
INSERT INTO `wp_gf_entry_meta` VALUES("423", "1", "62", "3", "Hello, I was given your name by Cedar Hill School, I would like to make an appointment for my daughter, she is struggling in school and her father and I have separated and I don\'t  believe she is dealing well with it.");
INSERT INTO `wp_gf_entry_meta` VALUES("424", "1", "63", "1.3", "Jay and christa");
INSERT INTO `wp_gf_entry_meta` VALUES("425", "1", "63", "1.6", "faujd");
INSERT INTO `wp_gf_entry_meta` VALUES("426", "1", "63", "2", "jairavia@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("427", "1", "63", "5", "(250)891-4011");
INSERT INTO `wp_gf_entry_meta` VALUES("428", "1", "63", "3", "we are a couples in our mid-thirties and need couples counselling on an emergency basis. \r\nWe\'d appreciate it if someone could call us?");
INSERT INTO `wp_gf_entry_meta` VALUES("429", "1", "64", "1.3", "Stan & Brenda");
INSERT INTO `wp_gf_entry_meta` VALUES("430", "1", "64", "1.6", "Rozendal");
INSERT INTO `wp_gf_entry_meta` VALUES("431", "1", "64", "2", "sbrozendal@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("432", "1", "64", "5", "(250)652-9896");
INSERT INTO `wp_gf_entry_meta` VALUES("433", "1", "64", "3", "We would like to make an initial appointment with Bill Coles. \r\nOur available time for an appointment is evenings (after 5:30) Monday, Tuesday, Wednesday.\r\nPlease contact us by email or by leaving a message on our machine. \r\nThank you\r\n.");
INSERT INTO `wp_gf_entry_meta` VALUES("434", "1", "65", "1.3", "Elisa");
INSERT INTO `wp_gf_entry_meta` VALUES("435", "1", "65", "1.6", "Herrala");
INSERT INTO `wp_gf_entry_meta` VALUES("436", "1", "65", "2", "eherrala@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("437", "1", "65", "5", "(250)818-7176");
INSERT INTO `wp_gf_entry_meta` VALUES("438", "1", "65", "3", "Hello. I am interested in seeing a counselor and I\'m wondering what you might have available. Thanks.");
INSERT INTO `wp_gf_entry_meta` VALUES("439", "7", "66", "8.3", "Susanne");
INSERT INTO `wp_gf_entry_meta` VALUES("440", "7", "66", "8.6", "Reul-Zastre");
INSERT INTO `wp_gf_entry_meta` VALUES("441", "7", "66", "6", "(250)472-2851");
INSERT INTO `wp_gf_entry_meta` VALUES("442", "7", "66", "7", "info@localhost");
INSERT INTO `wp_gf_entry_meta` VALUES("443", "7", "66", "5", "test");
INSERT INTO `wp_gf_entry_meta` VALUES("444", "7", "67", "8.3", "Susanne");
INSERT INTO `wp_gf_entry_meta` VALUES("445", "7", "67", "8.6", "Reul-Zastre");
INSERT INTO `wp_gf_entry_meta` VALUES("446", "7", "67", "6", "(250)472-2851");
INSERT INTO `wp_gf_entry_meta` VALUES("447", "7", "67", "7", "info@localhost");
INSERT INTO `wp_gf_entry_meta` VALUES("448", "7", "67", "5", "test 1");
INSERT INTO `wp_gf_entry_meta` VALUES("449", "7", "68", "8.3", "Susanne");
INSERT INTO `wp_gf_entry_meta` VALUES("450", "7", "68", "8.6", "Reul-Zastre");
INSERT INTO `wp_gf_entry_meta` VALUES("451", "7", "68", "6", "(250)472-2851");
INSERT INTO `wp_gf_entry_meta` VALUES("452", "7", "68", "7", "info@localhost");
INSERT INTO `wp_gf_entry_meta` VALUES("453", "7", "68", "5", "test");
INSERT INTO `wp_gf_entry_meta` VALUES("454", "7", "69", "8.3", "Susanne");
INSERT INTO `wp_gf_entry_meta` VALUES("455", "7", "69", "8.6", "Reul-Zastre");
INSERT INTO `wp_gf_entry_meta` VALUES("456", "7", "69", "6", "(250)472-2851");
INSERT INTO `wp_gf_entry_meta` VALUES("457", "7", "69", "7", "info@localhost");
INSERT INTO `wp_gf_entry_meta` VALUES("458", "7", "69", "5", "test 3");
INSERT INTO `wp_gf_entry_meta` VALUES("459", "1", "70", "1.3", "Emily");
INSERT INTO `wp_gf_entry_meta` VALUES("460", "1", "70", "1.6", "Madigan");
INSERT INTO `wp_gf_entry_meta` VALUES("461", "1", "70", "2", "madigan.emily@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("462", "1", "70", "5", "(250)634-2060");
INSERT INTO `wp_gf_entry_meta` VALUES("463", "1", "70", "3", "I\'m very interested in receiving counselling, so I would love to start seeing someone at you facility as soon as I can. Thanks!");
INSERT INTO `wp_gf_entry_meta` VALUES("464", "1", "71", "1.3", "Rob");
INSERT INTO `wp_gf_entry_meta` VALUES("465", "1", "71", "1.6", "Ringma");
INSERT INTO `wp_gf_entry_meta` VALUES("466", "1", "71", "2", "rob.ringma@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("467", "1", "71", "5", "(250)361-6105");
INSERT INTO `wp_gf_entry_meta` VALUES("468", "1", "71", "3", "Hello,\r\nSeveral years ago I had some sessions with Mr. Bill Cole and found them very helpful.\r\nI am interested in visiting him again and was hoping for the opportunity to make an appointment with him.\r\nCan you please let me know if this is a possibility and what his possible  availability looks like?\r\n\r\nThank-You,\r\n\r\nRob");
INSERT INTO `wp_gf_entry_meta` VALUES("469", "1", "72", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("470", "1", "72", "1.6", "Grant");
INSERT INTO `wp_gf_entry_meta` VALUES("471", "1", "72", "2", "sarahjeangrant@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("472", "1", "72", "5", "(778)676-1431");
INSERT INTO `wp_gf_entry_meta` VALUES("473", "1", "72", "3", "As I work full time till 4:30 every day I was wondering if you offer later hours for appointments?");
INSERT INTO `wp_gf_entry_meta` VALUES("474", "1", "73", "1.3", "Mallory");
INSERT INTO `wp_gf_entry_meta` VALUES("475", "1", "73", "1.6", "Webster");
INSERT INTO `wp_gf_entry_meta` VALUES("476", "1", "73", "2", "m-webster@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("477", "1", "73", "5", "(250)507-9681");
INSERT INTO `wp_gf_entry_meta` VALUES("478", "1", "73", "3", "Hello , my partner and I are looking for couples councelling ASAP . We have been on so many Waite lists and looking for Somthing affordable for a long time and are having no luck . We are a low income family with 2 children and a third on the way ! We would appreciate even 1 appointment soon !");
INSERT INTO `wp_gf_entry_meta` VALUES("479", "1", "74", "1.3", "Esther");
INSERT INTO `wp_gf_entry_meta` VALUES("480", "1", "74", "1.6", "Wilzewski");
INSERT INTO `wp_gf_entry_meta` VALUES("481", "1", "74", "2", "ewilzewski@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("482", "1", "74", "5", "(778)427-2220");
INSERT INTO `wp_gf_entry_meta` VALUES("483", "1", "74", "3", "Attn: Bill Cole\r\n\r\nAs per our conversation these are the resources I spoke about:\r\n\r\nhttp://www.purgatory.net/merits/somatoform.htm\r\nwww.menstrauma.com");
INSERT INTO `wp_gf_entry_meta` VALUES("484", "1", "75", "1.3", "kaitlyn");
INSERT INTO `wp_gf_entry_meta` VALUES("485", "1", "75", "1.6", "hathaway");
INSERT INTO `wp_gf_entry_meta` VALUES("486", "1", "75", "2", "katehathaway11@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("487", "1", "75", "5", "(250)616-2178");
INSERT INTO `wp_gf_entry_meta` VALUES("488", "1", "75", "3", "Hello my name is Kaitlyn and I was wondering about your availability for councils. I really need to talk to someone immediately but I don\'t know how to go about it. \r\nI have Sundays, Mondays and Tuesdays off work I can\'t afford a lot but I can\'t afford not to start counselling.\r\nAnything helps or a direction to someone who can. \r\nThank you,\r\n-K");
INSERT INTO `wp_gf_entry_meta` VALUES("489", "1", "76", "1.3", "June");
INSERT INTO `wp_gf_entry_meta` VALUES("490", "1", "76", "1.6", "Saracuse");
INSERT INTO `wp_gf_entry_meta` VALUES("491", "1", "76", "2", "jts@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("492", "1", "76", "5", "(250)721-8341");
INSERT INTO `wp_gf_entry_meta` VALUES("493", "1", "76", "3", "Hello Bill and Counsellors, \r\nI wanted to let you know about the BC Post Secondary Counsellors\' Association (PSCA) Conference entitled: Perspectives on Diversity in Post-Secondary Education that is happening May 4 - 6th, 2015 at the Parkside Hotel and Spa on Humboldt Street in Victoria. We are hoping that our theme of Diversity and the variety of speakers and panels that we have will be of interest to you and we would encourage to have a look at the website and register to join us. Here is the link to copy & paste into your browser: http://bcpsca.com/index.php/conference/perspectives-on-diversity-in-post-secondary-education/. Please let me know if you have any questions. \r\nBest Regards,\r\nJune Saracuse, M.Ed. RCC \r\nUniversity of Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("494", "2", "77", "1.3", "Angela");
INSERT INTO `wp_gf_entry_meta` VALUES("495", "2", "77", "1.6", "Cote");
INSERT INTO `wp_gf_entry_meta` VALUES("496", "2", "77", "2", "angecote@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("497", "2", "77", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("498", "1", "78", "1.3", "Caroline");
INSERT INTO `wp_gf_entry_meta` VALUES("499", "1", "78", "1.6", "Donelle");
INSERT INTO `wp_gf_entry_meta` VALUES("500", "1", "78", "2", "directordevelopment.sic@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("501", "1", "78", "5", "(250)888-7441");
INSERT INTO `wp_gf_entry_meta` VALUES("502", "1", "78", "3", "Testing testing");
INSERT INTO `wp_gf_entry_meta` VALUES("503", "3", "79", "1.3", "Caroline");
INSERT INTO `wp_gf_entry_meta` VALUES("504", "3", "79", "1.6", "Donelle");
INSERT INTO `wp_gf_entry_meta` VALUES("505", "3", "79", "2", "directordevelopment.sic@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("506", "3", "79", "3.1", "3-370 Richmond Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("507", "3", "79", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("508", "3", "79", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("509", "3", "79", "3.5", "V8S 3Y1");
INSERT INTO `wp_gf_entry_meta` VALUES("510", "3", "79", "4", "(250)888-7441");
INSERT INTO `wp_gf_entry_meta` VALUES("511", "3", "79", "7", "April 16");
INSERT INTO `wp_gf_entry_meta` VALUES("512", "3", "79", "5", "The Ebb and Flow of Life \r\n\r\nTESTING TESTING");
INSERT INTO `wp_gf_entry_meta` VALUES("514", "1", "80", "1.3", "Angela");
INSERT INTO `wp_gf_entry_meta` VALUES("515", "1", "80", "1.6", "Cote");
INSERT INTO `wp_gf_entry_meta` VALUES("516", "1", "80", "2", "angecote@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("517", "1", "80", "5", "(250)213-7277");
INSERT INTO `wp_gf_entry_meta` VALUES("518", "1", "80", "3", "Hello, I am looking for counselling and came across your website.  After reviewing your team it looks like Laurie Truant might be a good fit for what I am looking for (i.e. help with anxiety/depression).  Could she perhaps phone me to discuss a consultation?\r\nAngela");
INSERT INTO `wp_gf_entry_meta` VALUES("519", "7", "81", "8.3", "Leigh");
INSERT INTO `wp_gf_entry_meta` VALUES("520", "7", "81", "8.6", "Thornton");
INSERT INTO `wp_gf_entry_meta` VALUES("521", "7", "81", "6", "(778)677-0055");
INSERT INTO `wp_gf_entry_meta` VALUES("522", "7", "81", "7", "Lennylee@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("523", "7", "81", "5", "Hello;\r\n\r\nI\'m writing to inquire about becoming a crisis counsellor;  I have a BScN and my interests lie completely in the counselling area but I\'m not sure how or where to go about getting the training. Is there any direction you can offer me or any such thing as a mentorship with yourselves? I\'m willing to do a mentorship where I\'m not paid because I\'m so passionate about helping others and feel this is my calling.\r\n\r\nThankyou for anything you may be able to offer me:)\r\n\r\nLeigh Thornton");
INSERT INTO `wp_gf_entry_meta` VALUES("524", "3", "82", "1.3", "Divya");
INSERT INTO `wp_gf_entry_meta` VALUES("525", "3", "82", "1.6", "Bhalaik");
INSERT INTO `wp_gf_entry_meta` VALUES("526", "3", "82", "2", "dbhalaik@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("527", "3", "82", "3.1", "4081");
INSERT INTO `wp_gf_entry_meta` VALUES("528", "3", "82", "3.3", "Longview Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("529", "3", "82", "3.4", "B.C");
INSERT INTO `wp_gf_entry_meta` VALUES("530", "3", "82", "3.5", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("531", "3", "82", "4", "(604)653-6906");
INSERT INTO `wp_gf_entry_meta` VALUES("532", "3", "82", "7", "04/16/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("533", "3", "82", "5", "The ebb and flow of life: an introduction to grief and loss");
INSERT INTO `wp_gf_entry_meta` VALUES("535", "1", "83", "1.3", "Rhea");
INSERT INTO `wp_gf_entry_meta` VALUES("536", "1", "83", "1.6", "Lonsdale");
INSERT INTO `wp_gf_entry_meta` VALUES("537", "1", "83", "2", "rhea.lonsdale@usask.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("538", "1", "83", "5", "(306)880-7798");
INSERT INTO `wp_gf_entry_meta` VALUES("539", "1", "83", "3", "Hello,\r\n\r\nI would like to inquire about making an initial appointment. I was referred to your practice from the Vancouver Island Crisis Line. I am a recent graduate of a BFA program, and have been meaning to find counseling since I graduated but have not found an affordable solution. I continue to put seeking help off on the basis of not having the funds to do so and feel guilty about not being able to pay full fees, but I am eager for professional help.\r\n\r\nIf I could set up an initial appointment that would be great. Please let me know what I should bring in remuneration. Thank you,\r\n\r\n\r\nRhea");
INSERT INTO `wp_gf_entry_meta` VALUES("540", "1", "84", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("541", "1", "84", "1.6", "Fenimore");
INSERT INTO `wp_gf_entry_meta` VALUES("542", "1", "84", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("543", "1", "84", "5", "(250)508-2498");
INSERT INTO `wp_gf_entry_meta` VALUES("544", "1", "84", "3", "I have some anxieties around family relationships I\'d like some help with.  If possible, I would like an inital visit with Bill, to determine a course of counselling or therapy.  He would know me as Karen Brantley...\r\n\r\nCheers,\r\nKaren");
INSERT INTO `wp_gf_entry_meta` VALUES("545", "1", "85", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("546", "1", "85", "1.6", "Fenimore");
INSERT INTO `wp_gf_entry_meta` VALUES("547", "1", "85", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("548", "1", "85", "5", "(250)508-2498");
INSERT INTO `wp_gf_entry_meta` VALUES("549", "1", "85", "3", "I have some anxieties around family relationships I\'d like some help with.  If possible, I would like an inital visit with Bill, to determine a course of counselling or therapy.  He would know me as Karen Brantley...\r\n\r\nCheers,\r\nKaren");
INSERT INTO `wp_gf_entry_meta` VALUES("550", "7", "86", "8.3", "Judith");
INSERT INTO `wp_gf_entry_meta` VALUES("551", "7", "86", "8.6", "Horrell");
INSERT INTO `wp_gf_entry_meta` VALUES("552", "7", "86", "6", "(450)923-9986");
INSERT INTO `wp_gf_entry_meta` VALUES("553", "7", "86", "7", "horrellj@sympatico.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("554", "7", "86", "5", "Caroline, I have been wondering about you for quite awhile, and my Google search today landed me here. I thought I would reach out and say hello. I hope you are happy in your new surroundings and healthy. I faced my own health troubles in 2013-2014 with clinical depression followed by bilateral mastectomy for breast cancer, and am now reclaiming what I want out of life. Let me know that life is treating you well again...   Judith");
INSERT INTO `wp_gf_entry_meta` VALUES("555", "3", "87", "1.3", "carol");
INSERT INTO `wp_gf_entry_meta` VALUES("556", "3", "87", "1.6", "stockall");
INSERT INTO `wp_gf_entry_meta` VALUES("557", "3", "87", "2", "carolstockall@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("558", "3", "87", "3.1", "505-1630 Quadra Street");
INSERT INTO `wp_gf_entry_meta` VALUES("559", "3", "87", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("560", "3", "87", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("561", "3", "87", "3.5", "V8W 3J5");
INSERT INTO `wp_gf_entry_meta` VALUES("562", "3", "87", "4", "(250)532-0667");
INSERT INTO `wp_gf_entry_meta` VALUES("563", "3", "87", "7", "May 2");
INSERT INTO `wp_gf_entry_meta` VALUES("564", "3", "87", "5", "boundaries balance burnout");
INSERT INTO `wp_gf_entry_meta` VALUES("566", "1", "88", "1.3", "Eva");
INSERT INTO `wp_gf_entry_meta` VALUES("567", "1", "88", "1.6", "Yan");
INSERT INTO `wp_gf_entry_meta` VALUES("568", "1", "88", "2", "yan.macleod@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("569", "1", "88", "5", "(250)477-9020");
INSERT INTO `wp_gf_entry_meta` VALUES("570", "1", "88", "3", "I am interested in setting up a counselling appointment with Amber Eves regarding issues in our family.");
INSERT INTO `wp_gf_entry_meta` VALUES("571", "3", "89", "1.3", "Susan");
INSERT INTO `wp_gf_entry_meta` VALUES("572", "3", "89", "1.6", "Johnson");
INSERT INTO `wp_gf_entry_meta` VALUES("573", "3", "89", "2", "Susan.Johnson@forces.gc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("574", "3", "89", "3.1", "Nanoose RAP6 1st Floor PO Box 17000 Stn Forces");
INSERT INTO `wp_gf_entry_meta` VALUES("575", "3", "89", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("576", "3", "89", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("577", "3", "89", "3.5", "V9A 7N2");
INSERT INTO `wp_gf_entry_meta` VALUES("578", "3", "89", "4", "(250)468-5011");
INSERT INTO `wp_gf_entry_meta` VALUES("579", "3", "89", "7", "05/02/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("580", "3", "89", "5", "Boundries, Balance and Burnout: Self-Care for Women Workship");
INSERT INTO `wp_gf_entry_meta` VALUES("582", "3", "90", "1.3", "Wendy");
INSERT INTO `wp_gf_entry_meta` VALUES("583", "3", "90", "1.6", "Woollven");
INSERT INTO `wp_gf_entry_meta` VALUES("584", "3", "90", "2", "wwoollven@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("585", "3", "90", "3.1", "2112 Wildflower Rd.");
INSERT INTO `wp_gf_entry_meta` VALUES("586", "3", "90", "3.3", "Shawnigan Lake");
INSERT INTO `wp_gf_entry_meta` VALUES("587", "3", "90", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("588", "3", "90", "3.5", "V0R2W1");
INSERT INTO `wp_gf_entry_meta` VALUES("589", "3", "90", "4", "(250)701-8072");
INSERT INTO `wp_gf_entry_meta` VALUES("590", "3", "90", "7", "06/06/15");
INSERT INTO `wp_gf_entry_meta` VALUES("591", "3", "90", "5", "Option 1: $150.00 per couple for a one-day workshop (9:00am-5:00pm)");
INSERT INTO `wp_gf_entry_meta` VALUES("593", "3", "91", "1.3", "Wendy");
INSERT INTO `wp_gf_entry_meta` VALUES("594", "3", "91", "1.6", "Woollven");
INSERT INTO `wp_gf_entry_meta` VALUES("595", "3", "91", "2", "wwoollven@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("596", "3", "91", "3.1", "2112 Wildflower Rd.");
INSERT INTO `wp_gf_entry_meta` VALUES("597", "3", "91", "3.3", "Shawnigan Lake");
INSERT INTO `wp_gf_entry_meta` VALUES("598", "3", "91", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("599", "3", "91", "3.5", "V0R2W1");
INSERT INTO `wp_gf_entry_meta` VALUES("600", "3", "91", "4", "(250)701-8072");
INSERT INTO `wp_gf_entry_meta` VALUES("601", "3", "91", "7", "06/06/15");
INSERT INTO `wp_gf_entry_meta` VALUES("602", "3", "91", "5", "Option 1: $150.00 per couple for a one-day workshop (9:00am-5:00pm)\r\n\r\nFiance: Jeff Milne");
INSERT INTO `wp_gf_entry_meta` VALUES("604", "1", "92", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("605", "1", "92", "1.6", "Fenimore");
INSERT INTO `wp_gf_entry_meta` VALUES("606", "1", "92", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("607", "1", "92", "5", "(250)508-2498");
INSERT INTO `wp_gf_entry_meta` VALUES("608", "1", "92", "3", "Hi Bill,\r\n\r\nAfter reflecting, I would like to make an appointment for next week after all.  If you could please give me a call to arrange a time, I would be grateful.\r\nCheers,\r\nKaren");
INSERT INTO `wp_gf_entry_meta` VALUES("609", "1", "93", "1.3", "June Heather");
INSERT INTO `wp_gf_entry_meta` VALUES("610", "1", "93", "1.6", "Anderson");
INSERT INTO `wp_gf_entry_meta` VALUES("611", "1", "93", "2", "jh_anderson9@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("612", "1", "93", "5", "(250)381-8499");
INSERT INTO `wp_gf_entry_meta` VALUES("613", "1", "93", "3", "would like a counsellor to help with low self-esteem, bullying at work, taking care of myself.");
INSERT INTO `wp_gf_entry_meta` VALUES("614", "1", "94", "1.3", "daphne");
INSERT INTO `wp_gf_entry_meta` VALUES("615", "1", "94", "1.6", "dobko walsh");
INSERT INTO `wp_gf_entry_meta` VALUES("616", "1", "94", "2", "daphne.dobko-walsh@viha.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("617", "1", "94", "5", "(250)889-4279");
INSERT INTO `wp_gf_entry_meta` VALUES("618", "1", "94", "3", "I am interested in the workshop on Family Systems beginning July and am wondering about the dates as it is posted it will be 5 day intensive. Thanks\r\n\r\nDaphne");
INSERT INTO `wp_gf_entry_meta` VALUES("619", "3", "95", "1.3", "Joanna");
INSERT INTO `wp_gf_entry_meta` VALUES("620", "3", "95", "1.6", "Gnilica");
INSERT INTO `wp_gf_entry_meta` VALUES("621", "3", "95", "2", "joannagnilica@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("622", "3", "95", "3.1", "#201 - 505 Quadra Street");
INSERT INTO `wp_gf_entry_meta` VALUES("623", "3", "95", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("624", "3", "95", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("625", "3", "95", "3.5", "V8V 3S2");
INSERT INTO `wp_gf_entry_meta` VALUES("626", "3", "95", "4", "(250)857-1272");
INSERT INTO `wp_gf_entry_meta` VALUES("627", "3", "95", "7", "05/25/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("628", "3", "95", "5", "Strengthening well-being: A time for renewal");
INSERT INTO `wp_gf_entry_meta` VALUES("630", "3", "96", "1.3", "Susan");
INSERT INTO `wp_gf_entry_meta` VALUES("631", "3", "96", "1.6", "Benesch");
INSERT INTO `wp_gf_entry_meta` VALUES("632", "3", "96", "2", "susan@earthsoption.com");
INSERT INTO `wp_gf_entry_meta` VALUES("633", "3", "96", "3.1", "10 Kaleigh Lane");
INSERT INTO `wp_gf_entry_meta` VALUES("634", "3", "96", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("635", "3", "96", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("636", "3", "96", "3.5", "V9B 0A2");
INSERT INTO `wp_gf_entry_meta` VALUES("637", "3", "96", "4", "(250)884-8745");
INSERT INTO `wp_gf_entry_meta` VALUES("638", "3", "96", "7", "August");
INSERT INTO `wp_gf_entry_meta` VALUES("639", "3", "96", "5", "Grief and Loss");
INSERT INTO `wp_gf_entry_meta` VALUES("641", "3", "97", "1.3", "Melissa");
INSERT INTO `wp_gf_entry_meta` VALUES("642", "3", "97", "1.6", "Blais");
INSERT INTO `wp_gf_entry_meta` VALUES("643", "3", "97", "2", "mblais25@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("644", "3", "97", "3.1", "Unit 12 - 617 Battery Street");
INSERT INTO `wp_gf_entry_meta` VALUES("645", "3", "97", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("646", "3", "97", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("647", "3", "97", "3.5", "V8V 1E6");
INSERT INTO `wp_gf_entry_meta` VALUES("648", "3", "97", "4", "(250)881-5170");
INSERT INTO `wp_gf_entry_meta` VALUES("649", "3", "97", "7", "June 6, 2015");
INSERT INTO `wp_gf_entry_meta` VALUES("650", "3", "97", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("652", "3", "98", "1.3", "Kim");
INSERT INTO `wp_gf_entry_meta` VALUES("653", "3", "98", "1.6", "Creally");
INSERT INTO `wp_gf_entry_meta` VALUES("654", "3", "98", "2", "kcreally@phoenixhumanservices.org");
INSERT INTO `wp_gf_entry_meta` VALUES("655", "3", "98", "3.1", "4th Floor, 1095 McKenzie Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("656", "3", "98", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("657", "3", "98", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("658", "3", "98", "3.5", "V8P 2L5");
INSERT INTO `wp_gf_entry_meta` VALUES("659", "3", "98", "4", "(250)208-9197");
INSERT INTO `wp_gf_entry_meta` VALUES("660", "3", "98", "7", "June 13, 2015");
INSERT INTO `wp_gf_entry_meta` VALUES("661", "3", "98", "5", "Caregiver Burnout");
INSERT INTO `wp_gf_entry_meta` VALUES("663", "1", "99", "1.3", "Andrew");
INSERT INTO `wp_gf_entry_meta` VALUES("664", "1", "99", "1.6", "Fletcher");
INSERT INTO `wp_gf_entry_meta` VALUES("665", "1", "99", "2", "Andrew_Fletcher27@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("666", "1", "99", "5", "(250)380-8416");
INSERT INTO `wp_gf_entry_meta` VALUES("667", "1", "99", "3", "Hi there, my names Andrew I\'m 28, I deal with cronic back pain and such. Its been difficult so my friend suggested I come and try one of your counsellors. Just want information on costs and times available, late in the day is best if possible. Thank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("668", "3", "100", "1.3", "Ellen");
INSERT INTO `wp_gf_entry_meta` VALUES("669", "3", "100", "1.6", "Chen");
INSERT INTO `wp_gf_entry_meta` VALUES("670", "3", "100", "2", "ellen_chen8@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("671", "3", "100", "3.1", "4765 Gothard Street");
INSERT INTO `wp_gf_entry_meta` VALUES("672", "3", "100", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("673", "3", "100", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("674", "3", "100", "3.5", "V5R 3L1");
INSERT INTO `wp_gf_entry_meta` VALUES("675", "3", "100", "4", "(250)818-8162");
INSERT INTO `wp_gf_entry_meta` VALUES("676", "3", "100", "7", "06/06/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("677", "3", "100", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("679", "1", "101", "1.3", "Deanna");
INSERT INTO `wp_gf_entry_meta` VALUES("680", "1", "101", "1.6", "Raffle");
INSERT INTO `wp_gf_entry_meta` VALUES("681", "1", "101", "2", "deannaraffle@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("682", "1", "101", "5", "(250)507-3436");
INSERT INTO `wp_gf_entry_meta` VALUES("683", "1", "101", "3", "hi I am looking for addictions counselling do you do that type of counselling? If yes can I make an appointment?");
INSERT INTO `wp_gf_entry_meta` VALUES("684", "1", "102", "1.3", "Werner");
INSERT INTO `wp_gf_entry_meta` VALUES("685", "1", "102", "1.6", "Hofstatter");
INSERT INTO `wp_gf_entry_meta` VALUES("686", "1", "102", "2", "Wernerhofstatter@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("687", "1", "102", "5", "(250)858-6634");
INSERT INTO `wp_gf_entry_meta` VALUES("688", "1", "102", "3", "Hi Margaret. I am Debbie Roberts husband and we have met before. You know her background and I realize that it affects me deeply as well.\r\n\r\nPlease let me know if I can have an appointment with you as well, separately. Anytime next week would be fine.   \r\n\r\nThanks.");
INSERT INTO `wp_gf_entry_meta` VALUES("689", "2", "103", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("690", "2", "103", "1.6", "Hall");
INSERT INTO `wp_gf_entry_meta` VALUES("691", "2", "103", "2", "jenjeanhall@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("692", "2", "103", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("693", "3", "104", "1.3", "Beth");
INSERT INTO `wp_gf_entry_meta` VALUES("694", "3", "104", "1.6", "Leghorn");
INSERT INTO `wp_gf_entry_meta` VALUES("695", "3", "104", "2", "beth.leghorn@phoenixhumanservices.org");
INSERT INTO `wp_gf_entry_meta` VALUES("696", "3", "104", "3.1", "1095 McKenzie Ave 4th floor");
INSERT INTO `wp_gf_entry_meta` VALUES("697", "3", "104", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("698", "3", "104", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("699", "3", "104", "3.5", "V8P2L5");
INSERT INTO `wp_gf_entry_meta` VALUES("700", "3", "104", "4", "(250)920-8530");
INSERT INTO `wp_gf_entry_meta` VALUES("701", "3", "104", "7", "Saturday, June 20, 2015");
INSERT INTO `wp_gf_entry_meta` VALUES("702", "3", "104", "5", "Self-Injuring Youth: Understanding and Responding \r\n\r\n");
INSERT INTO `wp_gf_entry_meta` VALUES("704", "1", "105", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("705", "1", "105", "1.6", "Bjorgan");
INSERT INTO `wp_gf_entry_meta` VALUES("706", "1", "105", "2", "sjbjorgan@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("707", "1", "105", "5", "(250)857-4180");
INSERT INTO `wp_gf_entry_meta` VALUES("708", "1", "105", "3", "Hi there,\r\n\r\nI am interested in booking an appointment for my 6 year old Evelyn Bjorgan, with Amber. I am not really worried about her but a few months ago, one night she was having trouble going to sleep and telling me all her worries and troubles. I mentioned that she could talk to a counselor about things that kept bothering her. Recently she has started asking to talk to someone. So, I said I would make her an appointment. If nothing else, it is a good exercise to teach self care but I am sure we could learn some tricks for lowering anxiety and managing strife. My phone number is 250-857-4180 but I have forgotten my phone at home today so I need to email with you if you reply today. Fridays are the best day for us, also monday and wednesday am are good as well.\r\n\r\nAs for fees, I am not sure off the top of my head what our household income is but I am a full time student and I think we would qualify for the sliding scale. What do I need to provide for you to prove income.\r\n\r\nThank you.\r\nSarah Bjorgan\r\n");
INSERT INTO `wp_gf_entry_meta` VALUES("709", "1", "106", "1.3", "Antonia");
INSERT INTO `wp_gf_entry_meta` VALUES("710", "1", "106", "1.6", "Jacobson");
INSERT INTO `wp_gf_entry_meta` VALUES("711", "1", "106", "2", "hopecounselling@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("712", "1", "106", "5", "(044)752-2227");
INSERT INTO `wp_gf_entry_meta` VALUES("713", "1", "106", "3", "Dear South Island Centre Team,\r\n\r\nI have come across your Family Systems Theory â€“ 5 Day Summer Intensive (Monday-Friday, July 27-31, 2015) course and have some questions about it. \r\n\r\nI am a counsellor in England, and will be spending some time in July on Vancouver Island. I am currently reseraching options for some professional (and inevitably then personal) development options, particularly in the area of systemic therapy, which is how I stumbled across your website. Now, my question is whether this course is geared towards professionals or rather more suitable for lay persons, seeking to understand their family better. \r\n\r\nWould you also be able to provide some information on the course content in more detail? Thank you.\r\n\r\nKind regards,\r\nAntonia Jacobson\r\n\r\nPS: Please only contact me via email as the phone number above is incorrect (it would not let me enter my phone number due to the different format of international phone numbers).");
INSERT INTO `wp_gf_entry_meta` VALUES("714", "1", "107", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("715", "1", "107", "1.6", "Smith");
INSERT INTO `wp_gf_entry_meta` VALUES("716", "1", "107", "2", "sfsmith8@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("717", "1", "107", "5", "(250)889-0784");
INSERT INTO `wp_gf_entry_meta` VALUES("718", "1", "107", "3", "Hi there,\r\n\r\nMy fiancÃ© and I are getting married in November and are interested in doing some pre-marital counselling. Could you please advise what kind of services you recommend, pricing and availability?\r\n\r\nThank you,\r\nSarah");
INSERT INTO `wp_gf_entry_meta` VALUES("719", "3", "108", "1.3", "Andrea");
INSERT INTO `wp_gf_entry_meta` VALUES("720", "3", "108", "1.6", "Giese");
INSERT INTO `wp_gf_entry_meta` VALUES("721", "3", "108", "2", "andreakgiese@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("722", "3", "108", "3.1", "1375 Laurel Road");
INSERT INTO `wp_gf_entry_meta` VALUES("723", "3", "108", "3.3", "North Saanich");
INSERT INTO `wp_gf_entry_meta` VALUES("724", "3", "108", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("725", "3", "108", "3.5", "V8L5K8");
INSERT INTO `wp_gf_entry_meta` VALUES("726", "3", "108", "4", "(250)882-0875");
INSERT INTO `wp_gf_entry_meta` VALUES("727", "3", "108", "7", "06/20/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("728", "3", "108", "5", "Self injury workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("730", "3", "109", "1.3", "Whitney");
INSERT INTO `wp_gf_entry_meta` VALUES("731", "3", "109", "1.6", "Johnstone");
INSERT INTO `wp_gf_entry_meta` VALUES("732", "3", "109", "2", "whitney.johnstone@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("733", "3", "109", "3.1", "6269 Marie Meadows Road");
INSERT INTO `wp_gf_entry_meta` VALUES("734", "3", "109", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("735", "3", "109", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("736", "3", "109", "3.5", "V8Z 5Z9");
INSERT INTO `wp_gf_entry_meta` VALUES("737", "3", "109", "4", "(250)882-9419");
INSERT INTO `wp_gf_entry_meta` VALUES("738", "3", "109", "7", "July");
INSERT INTO `wp_gf_entry_meta` VALUES("739", "3", "109", "5", "Preparing for Marriage - 3 hour private sessions option ($175.00)");
INSERT INTO `wp_gf_entry_meta` VALUES("741", "1", "110", "1.3", "Chelsea");
INSERT INTO `wp_gf_entry_meta` VALUES("742", "1", "110", "1.6", "Williams");
INSERT INTO `wp_gf_entry_meta` VALUES("743", "1", "110", "2", "chelseawilliams6@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("744", "1", "110", "5", "(778)678-1024");
INSERT INTO `wp_gf_entry_meta` VALUES("745", "1", "110", "3", "Hi there,\r\n\r\nI\'m hoping to receive some counselling for intimacy issues/counselling.  I\'m really tired of being considered \"cold\" as I don\'t feel like this on the inside and it is starting to put a lot of strain on my personal relationships.  I don\'t really know where to go as when I have discussed this issue with other it has been brushed off.  If you are accepting new patients I would greatly appreciate the opportunity to talk to someone or to be referred somewhere that can help me.\r\n\r\nThank you,\r\nChelsea");
INSERT INTO `wp_gf_entry_meta` VALUES("746", "1", "111", "1.3", "Ted");
INSERT INTO `wp_gf_entry_meta` VALUES("747", "1", "111", "1.6", "Smith");
INSERT INTO `wp_gf_entry_meta` VALUES("748", "1", "111", "2", "tedsmith575@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("749", "1", "111", "5", "(801)456-8856");
INSERT INTO `wp_gf_entry_meta` VALUES("750", "1", "111", "3", "Hello, my name is Ted Smith and I am wondering what kind of counselling services you offer. Do you offer business counselling? If so, that would be great because my business is struggling and I need some help. I have been open for about six months and business hasn\'t been doing well. Perhaps I am being a little impatient, but I really want my business to do well. \r\nhttp://rivieracounselling.com.au");
INSERT INTO `wp_gf_entry_meta` VALUES("751", "1", "112", "1.3", "Mallory");
INSERT INTO `wp_gf_entry_meta` VALUES("752", "1", "112", "1.6", "Cooper");
INSERT INTO `wp_gf_entry_meta` VALUES("753", "1", "112", "2", "m_cooper7@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("754", "1", "112", "5", "(587)930-1697");
INSERT INTO `wp_gf_entry_meta` VALUES("755", "1", "112", "3", "Hello there. I\'m wondering about your counselling services and if I would need a referral for an appointment? I live in St. Albert Ab at this time but my family and I are moving to Victoria at the end of the month. My counsellor here gave me this contact info and can also send a referral if need be.\r\nThanks so much,\r\nMallory\r\n");
INSERT INTO `wp_gf_entry_meta` VALUES("756", "1", "113", "1.3", "Stephanie");
INSERT INTO `wp_gf_entry_meta` VALUES("757", "1", "113", "1.6", "Landucci");
INSERT INTO `wp_gf_entry_meta` VALUES("758", "1", "113", "2", "stephanie.landucci@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("759", "1", "113", "5", "(250)882-3821");
INSERT INTO `wp_gf_entry_meta` VALUES("760", "1", "113", "3", "Hello there,\r\n\r\nI was hoping to set up an appointment to see a counselor. The South Island Centre was recommended to me by my mother.  I have been struggling with issues with anxiety and depression and have been for many years. I have seen counselors in the past but it has been a long while I feel I would benefit from speaking with someone.\r\n\r\nAny information you can provide to me would be greatly appreciated.\r\n\r\nThank you,\r\n\r\nS. Landucci");
INSERT INTO `wp_gf_entry_meta` VALUES("761", "8", "114", "1.3", "Christine");
INSERT INTO `wp_gf_entry_meta` VALUES("762", "8", "114", "1.6", "Langerak");
INSERT INTO `wp_gf_entry_meta` VALUES("763", "8", "114", "2", "cllangerak@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("764", "8", "114", "3.1", "#36-2206 Church Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("765", "8", "114", "3.3", "Sooke");
INSERT INTO `wp_gf_entry_meta` VALUES("766", "8", "114", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("767", "8", "114", "3.5", "V9Z 0W1");
INSERT INTO `wp_gf_entry_meta` VALUES("768", "8", "114", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("769", "8", "114", "4", "(250) 216-9057");
INSERT INTO `wp_gf_entry_meta` VALUES("770", "8", "114", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("771", "8", "114", "6", "Holy Trinity Anglican Church Sooke");
INSERT INTO `wp_gf_entry_meta` VALUES("774", "8", "114", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("775", "8", "114", "11.2", "cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("776", "2", "115", "1.3", "Chantale");
INSERT INTO `wp_gf_entry_meta` VALUES("777", "2", "115", "1.6", "Laplante");
INSERT INTO `wp_gf_entry_meta` VALUES("778", "2", "115", "2", "laplante@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("779", "2", "115", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("780", "8", "116", "1.3", "Wally");
INSERT INTO `wp_gf_entry_meta` VALUES("781", "8", "116", "1.6", "Eamer");
INSERT INTO `wp_gf_entry_meta` VALUES("782", "8", "116", "2", "wallyeamer@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("783", "8", "116", "3.1", "3876 Duke Road");
INSERT INTO `wp_gf_entry_meta` VALUES("784", "8", "116", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("785", "8", "116", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("786", "8", "116", "3.5", "V9C4A5");
INSERT INTO `wp_gf_entry_meta` VALUES("787", "8", "116", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("788", "8", "116", "4", "(259) 888-6376");
INSERT INTO `wp_gf_entry_meta` VALUES("789", "8", "116", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("790", "8", "116", "6", "St. Peter & St Paul Anglican Church \r\nEsquimalt, B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("793", "8", "116", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_gf_entry_meta` VALUES("795", "8", "116", "11.1", "credit card");
INSERT INTO `wp_gf_entry_meta` VALUES("796", "1", "117", "1.3", "Kirsten");
INSERT INTO `wp_gf_entry_meta` VALUES("797", "1", "117", "1.6", "Proctor");
INSERT INTO `wp_gf_entry_meta` VALUES("798", "1", "117", "2", "specialk@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("799", "1", "117", "5", "(250) 477-4075");
INSERT INTO `wp_gf_entry_meta` VALUES("800", "1", "117", "3", "My partner, David and I, are looking for relationship counselling together, as we have been having problems since we moved in together a year ago.");
INSERT INTO `wp_gf_entry_meta` VALUES("801", "2", "118", "1.3", "Julia");
INSERT INTO `wp_gf_entry_meta` VALUES("802", "2", "118", "1.6", "Montague");
INSERT INTO `wp_gf_entry_meta` VALUES("803", "2", "118", "2", "acctjulia@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("804", "2", "118", "6.3", "Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("805", "1", "119", "1.3", "Julia");
INSERT INTO `wp_gf_entry_meta` VALUES("806", "1", "119", "1.6", "Montague");
INSERT INTO `wp_gf_entry_meta` VALUES("807", "1", "119", "2", "acctjulia@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("808", "1", "119", "5", "(604) 354-3009");
INSERT INTO `wp_gf_entry_meta` VALUES("809", "1", "119", "3", "Hi there,\r\n\r\nI represent the Association of Cooperative Counselling Therapists (ACCT) of Canada - we are a national organization with 250+ counsellors registered across the country.\r\n\r\nI am in the midst of putting together a list of approved professional development resources, and would love to include a discount or offer for workshops offered by the South Island Centre, either some sort of early-bird offer, or an overall discount exclusive to ACCT members.\r\n\r\nWe would then publish information about upcoming workshops in our member newsletters and on a page in the members-only section of our website.\r\n\r\nI have subscribed to updates about workshops and courses as well - will this be the best way to stay up to date on upcoming events?\r\n\r\nThank you for your time!\r\nJulia");
INSERT INTO `wp_gf_entry_meta` VALUES("810", "1", "120", "1.3", "Don");
INSERT INTO `wp_gf_entry_meta` VALUES("811", "1", "120", "1.6", "Craig");
INSERT INTO `wp_gf_entry_meta` VALUES("812", "1", "120", "2", "donc3@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("813", "1", "120", "5", "(250) 758-4457");
INSERT INTO `wp_gf_entry_meta` VALUES("814", "1", "120", "3", "I desperately need help.  I am in emotional turmoi;  I have had one or two men really help me but I need some professional help.");
INSERT INTO `wp_gf_entry_meta` VALUES("815", "1", "121", "1.3", "Samantha");
INSERT INTO `wp_gf_entry_meta` VALUES("816", "1", "121", "1.6", "White");
INSERT INTO `wp_gf_entry_meta` VALUES("817", "1", "121", "2", "Samikwhite@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("818", "1", "121", "5", "(250) 216-2563");
INSERT INTO `wp_gf_entry_meta` VALUES("819", "1", "121", "3", "Hello, my name is Samantha. My partner and I had an appointment booked with Bill Cole about a month ago, but was unable to make it. I am hoping to reschedule with Bill, perhaps this message will reach him so we can discuss further. Thank you.\r\n\r\nSamantha");
INSERT INTO `wp_gf_entry_meta` VALUES("820", "2", "122", "1.3", "Carlin");
INSERT INTO `wp_gf_entry_meta` VALUES("821", "2", "122", "1.6", "Lindsay");
INSERT INTO `wp_gf_entry_meta` VALUES("822", "2", "122", "2", "carlinlindsay@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("823", "2", "122", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("824", "2", "123", "1.3", "Becca");
INSERT INTO `wp_gf_entry_meta` VALUES("825", "2", "123", "1.6", "Chartrand");
INSERT INTO `wp_gf_entry_meta` VALUES("826", "2", "123", "2", "pure_joy89@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("827", "2", "123", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("828", "2", "123", "6.3", "Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("829", "1", "124", "1.3", "geoffrey (geoff)");
INSERT INTO `wp_gf_entry_meta` VALUES("830", "1", "124", "1.6", "machin");
INSERT INTO `wp_gf_entry_meta` VALUES("831", "1", "124", "2", "geoff.a.machin@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("832", "1", "124", "5", "(250) 477-7116");
INSERT INTO `wp_gf_entry_meta` VALUES("833", "1", "124", "3", "My wife of 51 years (Ann) has just been diagnosed by Maureen Matthew (Headway) with progressive supra-nuclear palsy (PSP disease). We both know and understand the course of the disease (I am a physician), but as the carer I have gone down with fairly severe anxiety and some depression in facing up to all the decisions we have to make in the medium and long term. I know I am susceptible to this, as it has happened before in the face of other types of crises (mostly in my career). I know I need counselling and Maureen Matthew feels that Margaret Anderson is a good fit. I have left a voicemail with her. I hope it may be possible for us to meet within 2-3 weeks.");
INSERT INTO `wp_gf_entry_meta` VALUES("834", "1", "125", "1.3", "sheena");
INSERT INTO `wp_gf_entry_meta` VALUES("835", "1", "125", "1.6", "atchison");
INSERT INTO `wp_gf_entry_meta` VALUES("836", "1", "125", "2", "maid_for_hire@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("837", "1", "125", "5", "(778) 350-0446");
INSERT INTO `wp_gf_entry_meta` VALUES("838", "1", "125", "3", "Hello,\r\nI\'m looking for counselling for my depression and anxiety. We are a family of 5 with a gross income last year of 42,000.00.\r\nWe do not have benefits so I\'m looking for something affordable as I do not have much to spend on counselling. I\'d like some feedback from you, to see if this is something I can afford to do.\r\nThank you for your time.\r\nSheena.");
INSERT INTO `wp_gf_entry_meta` VALUES("839", "1", "126", "1.3", "Trystan");
INSERT INTO `wp_gf_entry_meta` VALUES("840", "1", "126", "1.6", "Smyth");
INSERT INTO `wp_gf_entry_meta` VALUES("841", "1", "126", "2", "Crysshe@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("842", "1", "126", "5", "(250) 686-5666");
INSERT INTO `wp_gf_entry_meta` VALUES("843", "1", "126", "3", "Hello I am inquiring on a price for individual counselling for my fiancÃ© Trystan. He has a job and is normally not able to answer phone or emails. Wondering what the rate would be because he makes quite abit less then 50000 a year");
INSERT INTO `wp_gf_entry_meta` VALUES("844", "1", "127", "1.3", "hayley");
INSERT INTO `wp_gf_entry_meta` VALUES("845", "1", "127", "1.6", "davis");
INSERT INTO `wp_gf_entry_meta` VALUES("846", "1", "127", "2", "davishayley@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("847", "1", "127", "5", "(250) 361-5747");
INSERT INTO `wp_gf_entry_meta` VALUES("848", "1", "127", "3", "hi jozef  ter-mitchell(previous client of yours) and I Hayley Davis would really appreciate a chance to come for individual councelling as well as couples councelling.  im not sure all of what  you do but would love any help we can get i have a background of abuse growing up and trauma  and previous post dramatic stress issues and he comes with his own background of head injury time in and out of the system, both of us have previous addictions issues that are hopefully behind us but we all know how that can go.  if theres any help available pls let us know his number is 250-213 9269  mine is 250 3615747  i work till 1130am today and till 8 tomorrow .");
INSERT INTO `wp_gf_entry_meta` VALUES("849", "3", "128", "1.3", "Clementien");
INSERT INTO `wp_gf_entry_meta` VALUES("850", "3", "128", "1.6", "Wolferstan");
INSERT INTO `wp_gf_entry_meta` VALUES("851", "3", "128", "2", "2clemmy@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("852", "3", "128", "3.1", "305-845 Burdett Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("853", "3", "128", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("854", "3", "128", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("855", "3", "128", "3.5", "V8W 1B3");
INSERT INTO `wp_gf_entry_meta` VALUES("856", "3", "128", "4", "(250) 382-0235");
INSERT INTO `wp_gf_entry_meta` VALUES("857", "3", "128", "7", "October 03, 2015");
INSERT INTO `wp_gf_entry_meta` VALUES("858", "3", "128", "5", "Caregiver Burnout");
INSERT INTO `wp_gf_entry_meta` VALUES("860", "1", "129", "1.3", "Bishop Charles");
INSERT INTO `wp_gf_entry_meta` VALUES("861", "1", "129", "1.6", "Dorrington");
INSERT INTO `wp_gf_entry_meta` VALUES("862", "1", "129", "2", "revchas@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("863", "1", "129", "5", "(778) 426-3212");
INSERT INTO `wp_gf_entry_meta` VALUES("864", "1", "129", "3", "I am interested in The Twilight Journey Course being offered starting in October. How many points does this represent for the Canadian Counselling and Psychotherapy Association.");
INSERT INTO `wp_gf_entry_meta` VALUES("865", "3", "130", "1.3", "Rt. Rev\'d. Dr. Charles");
INSERT INTO `wp_gf_entry_meta` VALUES("866", "3", "130", "1.6", "Dorrington");
INSERT INTO `wp_gf_entry_meta` VALUES("867", "3", "130", "2", "revchas@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("868", "3", "130", "3.1", "70-7570 Tetayut Road");
INSERT INTO `wp_gf_entry_meta` VALUES("869", "3", "130", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("870", "3", "130", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("871", "3", "130", "3.5", "V8M 2H4");
INSERT INTO `wp_gf_entry_meta` VALUES("872", "3", "130", "4", "(250) 652-8850");
INSERT INTO `wp_gf_entry_meta` VALUES("873", "3", "130", "7", "28 October, 2015");
INSERT INTO `wp_gf_entry_meta` VALUES("874", "3", "130", "5", "The Twilight Journey");
INSERT INTO `wp_gf_entry_meta` VALUES("876", "1", "131", "1.3", "Nicole");
INSERT INTO `wp_gf_entry_meta` VALUES("877", "1", "131", "1.6", "Sleeth");
INSERT INTO `wp_gf_entry_meta` VALUES("878", "1", "131", "2", "nsleeth@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("879", "1", "131", "5", "(250) 216-0552");
INSERT INTO `wp_gf_entry_meta` VALUES("880", "1", "131", "3", "Hi, I am searching for a counsellor to help with issues such as family of origin, family dynamics, and boundary setting with family.\r\n\r\nThank you,\r\n\r\n- Nicole");
INSERT INTO `wp_gf_entry_meta` VALUES("881", "8", "132", "1.3", "Sheila");
INSERT INTO `wp_gf_entry_meta` VALUES("882", "8", "132", "1.6", "Dearsley");
INSERT INTO `wp_gf_entry_meta` VALUES("883", "8", "132", "2", "lsdearbc@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("884", "8", "132", "3.1", "617 St Charles St");
INSERT INTO `wp_gf_entry_meta` VALUES("885", "8", "132", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("886", "8", "132", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("887", "8", "132", "3.5", "V8S 3P2");
INSERT INTO `wp_gf_entry_meta` VALUES("888", "8", "132", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("889", "8", "132", "4", "(250) 474-2459");
INSERT INTO `wp_gf_entry_meta` VALUES("890", "8", "132", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("891", "8", "132", "6", "Church of the Advent in Colwood");
INSERT INTO `wp_gf_entry_meta` VALUES("894", "8", "132", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("895", "8", "132", "11.1", "credit card");
INSERT INTO `wp_gf_entry_meta` VALUES("896", "1", "133", "1.3", "Lisa");
INSERT INTO `wp_gf_entry_meta` VALUES("897", "1", "133", "1.6", "Meier");
INSERT INTO `wp_gf_entry_meta` VALUES("898", "1", "133", "2", "franzlisameier@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("899", "1", "133", "5", "(778) 967-2933");
INSERT INTO `wp_gf_entry_meta` VALUES("900", "1", "133", "3", "I will be attending Soulstreamâ€™s, Abbotsfordm Living From the Heart course in 2015/2016, a first step for myself to work towards pursuing the vocation of Spiritual Direction.  One of the requirements of the program is monthly spiritual direction concurrent with the course duration.  I am interested in connecting with one of your Spiritual Directors, Pamela Welle if she is available.  \r\n\r\nI look forward to hearing from you,\r\nSincere thanks\r\nLisa Meier");
INSERT INTO `wp_gf_entry_meta` VALUES("901", "1", "134", "1.3", "Alyssa");
INSERT INTO `wp_gf_entry_meta` VALUES("902", "1", "134", "1.6", "Koehler");
INSERT INTO `wp_gf_entry_meta` VALUES("903", "1", "134", "2", "alyssa.koehler@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("904", "1", "134", "5", "(604) 562-6625");
INSERT INTO `wp_gf_entry_meta` VALUES("905", "1", "134", "3", "Hi, this is a general inquiry about making an appointment... I\'m not sure what information you need at this point, so i\'ll leave it at that for now\r\n\r\nthanks\r\nAlyssa");
INSERT INTO `wp_gf_entry_meta` VALUES("906", "1", "135", "1.3", "Marli");
INSERT INTO `wp_gf_entry_meta` VALUES("907", "1", "135", "1.6", "Postulo");
INSERT INTO `wp_gf_entry_meta` VALUES("908", "1", "135", "2", "postulomer@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("909", "1", "135", "5", "(250) 208-3390");
INSERT INTO `wp_gf_entry_meta` VALUES("910", "1", "135", "3", "I\'m looking for more information on your sliding scale. I\'m searching for individual counselling for myself, hopefully on a weekly basis. I am transitioning from counseling that was paid for through my employer, but the sessions have all been used and I still feel I need help. Thank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("911", "1", "136", "1.3", "Amie");
INSERT INTO `wp_gf_entry_meta` VALUES("912", "1", "136", "1.6", "Jamin");
INSERT INTO `wp_gf_entry_meta` VALUES("913", "1", "136", "2", "amiejamin1@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("914", "1", "136", "5", "(250) 595-6577");
INSERT INTO `wp_gf_entry_meta` VALUES("915", "1", "136", "3", "My husband Aaron and I would like to see a counselor about some life changes we are going through.");
INSERT INTO `wp_gf_entry_meta` VALUES("916", "3", "137", "1.3", "Penni");
INSERT INTO `wp_gf_entry_meta` VALUES("917", "3", "137", "1.6", "Foresman");
INSERT INTO `wp_gf_entry_meta` VALUES("918", "3", "137", "2", "pforesman@powertobe.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("919", "3", "137", "3.1", "1017 Fort Street");
INSERT INTO `wp_gf_entry_meta` VALUES("920", "3", "137", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("921", "3", "137", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("922", "3", "137", "3.5", "V8V 3K5");
INSERT INTO `wp_gf_entry_meta` VALUES("923", "3", "137", "4", "(250) 385-2363");
INSERT INTO `wp_gf_entry_meta` VALUES("924", "3", "137", "7", "10/31/15");
INSERT INTO `wp_gf_entry_meta` VALUES("925", "3", "137", "5", "Self-Injuring Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("927", "1", "138", "1.3", "Dion");
INSERT INTO `wp_gf_entry_meta` VALUES("928", "1", "138", "1.6", "Pomponio");
INSERT INTO `wp_gf_entry_meta` VALUES("929", "1", "138", "2", "dion@pomponio.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("930", "1", "138", "5", "(250) 589-6467");
INSERT INTO `wp_gf_entry_meta` VALUES("931", "1", "138", "3", "I would like to book an appointment with Margaret Anderson if possible for my daughter Michaela.  Michaela is 18 years old, and has a sister and best friend who are struggling with mental health issues.   She is supporting them both as they seek treatment both while within institutional care and on out patient basis.   Michaela\'s faith has been severely challenged during this experience.");
INSERT INTO `wp_gf_entry_meta` VALUES("932", "3", "139", "1.3", "Marjorie");
INSERT INTO `wp_gf_entry_meta` VALUES("933", "3", "139", "1.6", "van Orden");
INSERT INTO `wp_gf_entry_meta` VALUES("934", "3", "139", "2", "lgabitous@phoenixhumanservices.org");
INSERT INTO `wp_gf_entry_meta` VALUES("935", "3", "139", "3.1", "Phoenix Human Services Association");
INSERT INTO `wp_gf_entry_meta` VALUES("936", "3", "139", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("937", "3", "139", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("938", "3", "139", "3.5", "V8P 2L5");
INSERT INTO `wp_gf_entry_meta` VALUES("939", "3", "139", "4", "(250) 995-5519");
INSERT INTO `wp_gf_entry_meta` VALUES("940", "3", "139", "7", "Nov 28th");
INSERT INTO `wp_gf_entry_meta` VALUES("941", "3", "139", "5", "Caregiver Burnout");
INSERT INTO `wp_gf_entry_meta` VALUES("943", "8", "140", "1.3", "Marion");
INSERT INTO `wp_gf_entry_meta` VALUES("944", "8", "140", "1.6", "Edgar");
INSERT INTO `wp_gf_entry_meta` VALUES("945", "8", "140", "2", "marion@danieledgar.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("946", "8", "140", "3.1", "#101 - 5110 Cordova Bay Rd.,");
INSERT INTO `wp_gf_entry_meta` VALUES("947", "8", "140", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("948", "8", "140", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("949", "8", "140", "3.5", "V8Y 2K5");
INSERT INTO `wp_gf_entry_meta` VALUES("950", "8", "140", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("951", "8", "140", "4", "(250) 658-1125");
INSERT INTO `wp_gf_entry_meta` VALUES("952", "8", "140", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("953", "8", "140", "6", "St. Michael & All Angels - 4733 West Saanich Rd. Victoria (Anglican)");
INSERT INTO `wp_gf_entry_meta` VALUES("956", "8", "140", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("957", "8", "140", "11.1", "credit card");
INSERT INTO `wp_gf_entry_meta` VALUES("958", "1", "141", "1.3", "Nora");
INSERT INTO `wp_gf_entry_meta` VALUES("959", "1", "141", "1.6", "Johnson");
INSERT INTO `wp_gf_entry_meta` VALUES("960", "1", "141", "2", "nora.johnson@forces.gc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("961", "1", "141", "5", "(250) 363-7968");
INSERT INTO `wp_gf_entry_meta` VALUES("962", "1", "141", "3", "I\'m wondering if you still run group sessions for grief and loss or if you know of any other organizations in Victoria or Westshore that do?");
INSERT INTO `wp_gf_entry_meta` VALUES("963", "1", "142", "1.3", "Sepora");
INSERT INTO `wp_gf_entry_meta` VALUES("964", "1", "142", "1.6", "Jacobson");
INSERT INTO `wp_gf_entry_meta` VALUES("965", "1", "142", "2", "seporamayim@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("966", "1", "142", "5", "(250) 208-8813");
INSERT INTO `wp_gf_entry_meta` VALUES("967", "1", "142", "3", "I am seeking counselling. I was referred by Jennifer Sutton from Island Health. I phoned & left a message today but wasn\'t sure it was the right extension. I am dealing w/ anxiety, insomnia & depression (grief too) after being diagnosed w/ Parkinson\'s. Could someone please phone me soon to make an appointment. I\"m not sure which counsellor is right for me. please advise. Thankyou.");
INSERT INTO `wp_gf_entry_meta` VALUES("968", "3", "143", "1.3", "Kate");
INSERT INTO `wp_gf_entry_meta` VALUES("969", "3", "143", "1.6", "Ritchie");
INSERT INTO `wp_gf_entry_meta` VALUES("970", "3", "143", "2", "kritchie@bgcvic.org");
INSERT INTO `wp_gf_entry_meta` VALUES("971", "3", "143", "3.1", "1195 Esquimalt Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("972", "3", "143", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("973", "3", "143", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("974", "3", "143", "3.5", "V9A 3N6");
INSERT INTO `wp_gf_entry_meta` VALUES("975", "3", "143", "4", "(250) 384-9133");
INSERT INTO `wp_gf_entry_meta` VALUES("976", "3", "143", "7", "Dec 5 2015");
INSERT INTO `wp_gf_entry_meta` VALUES("977", "3", "143", "5", "Self Injuring Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("979", "1", "144", "1.3", "Mandy");
INSERT INTO `wp_gf_entry_meta` VALUES("980", "1", "144", "1.6", "Rosts");
INSERT INTO `wp_gf_entry_meta` VALUES("981", "1", "144", "2", "amandarosts@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("982", "1", "144", "5", "(289) 241-1017");
INSERT INTO `wp_gf_entry_meta` VALUES("983", "1", "144", "3", "Hello,\r\n\r\nI have an appointment scheduled for tomorrow at 5:00 p.m. Unfortunately, I have been called into work at this time and I will be unable to make the appointment. Sorry about that.\r\n\r\nAll the best,\r\nMandy");
INSERT INTO `wp_gf_entry_meta` VALUES("984", "1", "145", "1.3", "Kate");
INSERT INTO `wp_gf_entry_meta` VALUES("985", "1", "145", "1.6", "Jenkins");
INSERT INTO `wp_gf_entry_meta` VALUES("986", "1", "145", "2", "katejenkins7@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("987", "1", "145", "5", "(250) 508-1689");
INSERT INTO `wp_gf_entry_meta` VALUES("988", "1", "145", "3", "I am so happy to have found your services. I would like to talk to you about setting up an appointment to see a counsellor. Please feel free to call me at 250-5081689. Thank you, Kate");
INSERT INTO `wp_gf_entry_meta` VALUES("989", "1", "146", "1.3", "Lauren");
INSERT INTO `wp_gf_entry_meta` VALUES("990", "1", "146", "1.6", "McKenzie");
INSERT INTO `wp_gf_entry_meta` VALUES("991", "1", "146", "2", "ljmckenz@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("992", "1", "146", "5", "(250) 588-3411");
INSERT INTO `wp_gf_entry_meta` VALUES("993", "1", "146", "3", "Hello,\r\n\r\nI was referred to you by Pastor Lyle at Lutheran Church of the Cross in regards to premarital couples counselling. I was just hoping to touch base to see what your recommendations are for how that looks and when we might be able to make it work!\r\n\r\nThanks,\r\n\r\nLauren");
INSERT INTO `wp_gf_entry_meta` VALUES("994", "1", "147", "1.3", "Lisa");
INSERT INTO `wp_gf_entry_meta` VALUES("995", "1", "147", "1.6", "Willott");
INSERT INTO `wp_gf_entry_meta` VALUES("996", "1", "147", "2", "lisawillott@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("997", "1", "147", "5", "(778) 977-7769");
INSERT INTO `wp_gf_entry_meta` VALUES("998", "1", "147", "3", "Hi there,\r\nI am interested in getting some counseling over a past relationship ending. Several months ago I had previously seen Darrel at the centre, and he was lovely, but I think I would be more comfortable speaking with a woman, if that\'s possible. The number above is my cell phone and I can be reached anytime.  Thanks,\r\nLisa Willott");
INSERT INTO `wp_gf_entry_meta` VALUES("999", "8", "148", "1.3", "Michael");
INSERT INTO `wp_gf_entry_meta` VALUES("1000", "8", "148", "1.6", "Crockford");
INSERT INTO `wp_gf_entry_meta` VALUES("1001", "8", "148", "2", "crockfordm@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1002", "8", "148", "3.1", "640 Springbank Place");
INSERT INTO `wp_gf_entry_meta` VALUES("1003", "8", "148", "3.3", "Mill Bay");
INSERT INTO `wp_gf_entry_meta` VALUES("1004", "8", "148", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("1005", "8", "148", "3.5", "V0R2P4");
INSERT INTO `wp_gf_entry_meta` VALUES("1006", "8", "148", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1007", "8", "148", "4", "(250) 929-6704");
INSERT INTO `wp_gf_entry_meta` VALUES("1008", "8", "148", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("1009", "8", "148", "6", "St Peter\'s Lakehill, Anglican, 3939 St Peter Street, Saanich");
INSERT INTO `wp_gf_entry_meta` VALUES("1012", "8", "148", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("1014", "8", "148", "11.1", "credit card");
INSERT INTO `wp_gf_entry_meta` VALUES("1015", "8", "149", "1.3", "Brenda");
INSERT INTO `wp_gf_entry_meta` VALUES("1016", "8", "149", "1.6", "Crockford");
INSERT INTO `wp_gf_entry_meta` VALUES("1017", "8", "149", "2", "crockford@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1018", "8", "149", "3.1", "640 Springbank Place");
INSERT INTO `wp_gf_entry_meta` VALUES("1019", "8", "149", "3.3", "Mill Bay");
INSERT INTO `wp_gf_entry_meta` VALUES("1020", "8", "149", "3.4", "B");
INSERT INTO `wp_gf_entry_meta` VALUES("1021", "8", "149", "3.5", "V0R2P4");
INSERT INTO `wp_gf_entry_meta` VALUES("1022", "8", "149", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1023", "8", "149", "4", "(250) 929-6704");
INSERT INTO `wp_gf_entry_meta` VALUES("1024", "8", "149", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("1025", "8", "149", "6", "St Peter\'s Lakehill, Anglican, 3939 St Peter Street, Saanich");
INSERT INTO `wp_gf_entry_meta` VALUES("1028", "8", "149", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_gf_entry_meta` VALUES("1030", "8", "149", "11.1", "credit card");
INSERT INTO `wp_gf_entry_meta` VALUES("1031", "1", "150", "1.3", "Dami");
INSERT INTO `wp_gf_entry_meta` VALUES("1032", "1", "150", "1.6", "Adeola");
INSERT INTO `wp_gf_entry_meta` VALUES("1033", "1", "150", "2", "damilola.adeola@adp.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1034", "1", "150", "5", "(905) 364-5762");
INSERT INTO `wp_gf_entry_meta` VALUES("1035", "1", "150", "3", "Hi Susanne, \r\n\r\nI had a conversation with Caroline yesterday regarding Payroll, and she said you were definitely the best person to chat with, and show the solution to determine if it would be the right fit for your organization. \r\n\r\nWhen would be the best time this week to chat? \r\n\r\nBest regards, \r\nDamilola Adeola");
INSERT INTO `wp_gf_entry_meta` VALUES("1036", "1", "151", "1.3", "Bruce");
INSERT INTO `wp_gf_entry_meta` VALUES("1037", "1", "151", "1.6", "Barnes");
INSERT INTO `wp_gf_entry_meta` VALUES("1038", "1", "151", "2", "Bruce.Edward.Barnes@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1039", "1", "151", "5", "(778) 676-3673");
INSERT INTO `wp_gf_entry_meta` VALUES("1040", "1", "151", "3", "my wife is currently seeing Margaret Anderson, she directed my wife for me to contact you to receive counselling. You may contact me at the number above or my home number 250-590-8364. \r\n\r\nBruce");
INSERT INTO `wp_gf_entry_meta` VALUES("1041", "7", "152", "8.3", "Amphil");
INSERT INTO `wp_gf_entry_meta` VALUES("1042", "7", "152", "8.6", "Solutions");
INSERT INTO `wp_gf_entry_meta` VALUES("1043", "7", "152", "6", "(989) 165-6508");
INSERT INTO `wp_gf_entry_meta` VALUES("1044", "7", "152", "7", "sales@amphilsolutions.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1045", "7", "152", "5", "If you are interested we want to increase the number of \"online customers for your business\".\r\n\r\nWe strictly work on Performance basis and can assure you of getting quality links with a proper reporting format for your site as well.\r\n\r\nPlease do let me know if you have any questions, If interested please reply with your skype id, you can also add me on your skype, my skype id is \"amphilsolutions\".\r\n\r\nWe are looking forward to a long and healthy business relationship with you and your company. If you have any questions, we will be more than happy to provide you quick assistance.");
INSERT INTO `wp_gf_entry_meta` VALUES("1046", "1", "153", "1.3", "Christina");
INSERT INTO `wp_gf_entry_meta` VALUES("1047", "1", "153", "1.6", "Price");
INSERT INTO `wp_gf_entry_meta` VALUES("1048", "1", "153", "2", "christinarprice@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1049", "1", "153", "5", "(250) 893-5972");
INSERT INTO `wp_gf_entry_meta` VALUES("1050", "1", "153", "3", "Hi there, \r\nRob Fitterer from Lambrick Park Church recommended South Island Centre for pre-marital counselling. \r\nWhat do you usually recommend for that? How many sessions? How long before the wedding? etc. \r\nThanks, \r\nChristina Price (& Jonah Timms)");
INSERT INTO `wp_gf_entry_meta` VALUES("1051", "5", "154", "1.3", "Judy");
INSERT INTO `wp_gf_entry_meta` VALUES("1052", "5", "154", "1.6", "Joyce");
INSERT INTO `wp_gf_entry_meta` VALUES("1053", "5", "154", "2", "judycjoyce@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1054", "5", "154", "3", "(250) 590-5215");
INSERT INTO `wp_gf_entry_meta` VALUES("1055", "5", "154", "4", "Good evening Mr. Cole:  \r\n\r\nI am hoping you can help me.  I am looking for a psychiatrist here in Victoria, whose practice is based on traditional Biblical teachings and Christian values.  Would you happen to know of one?\r\n\r\nThank you,\r\nJudy Joyce");
INSERT INTO `wp_gf_entry_meta` VALUES("1056", "3", "155", "1.3", "Davida");
INSERT INTO `wp_gf_entry_meta` VALUES("1057", "3", "155", "1.6", "Ceja");
INSERT INTO `wp_gf_entry_meta` VALUES("1058", "3", "155", "2", "dyudyueva.nata@mail.ru");
INSERT INTO `wp_gf_entry_meta` VALUES("1059", "3", "155", "3.1", "2329 Owen Lane");
INSERT INTO `wp_gf_entry_meta` VALUES("1060", "3", "155", "3.3", "Whitehall");
INSERT INTO `wp_gf_entry_meta` VALUES("1061", "3", "155", "3.4", "MI");
INSERT INTO `wp_gf_entry_meta` VALUES("1062", "3", "155", "3.5", "49461");
INSERT INTO `wp_gf_entry_meta` VALUES("1063", "3", "155", "4", "(231) 894-5629");
INSERT INTO `wp_gf_entry_meta` VALUES("1064", "3", "155", "7", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("1065", "3", "155", "5", "Getting The Best Call of Duty Black Ops 3 ESP");
INSERT INTO `wp_gf_entry_meta` VALUES("1069", "3", "156", "1.3", "Alana");
INSERT INTO `wp_gf_entry_meta` VALUES("1070", "3", "156", "1.6", "Goddard");
INSERT INTO `wp_gf_entry_meta` VALUES("1071", "3", "156", "2", "alana.goddard@saanich.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1072", "3", "156", "3.1", "4636 Elk Lake Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("1073", "3", "156", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1074", "3", "156", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1075", "3", "156", "3.5", "V8Z 5M1");
INSERT INTO `wp_gf_entry_meta` VALUES("1076", "3", "156", "4", "(250) 475-7624");
INSERT INTO `wp_gf_entry_meta` VALUES("1077", "3", "156", "7", "12/05/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("1078", "3", "156", "5", "Self-Injurying Youth: Understanding and Responding");
INSERT INTO `wp_gf_entry_meta` VALUES("1080", "3", "157", "1.3", "Courtney");
INSERT INTO `wp_gf_entry_meta` VALUES("1081", "3", "157", "1.6", "Demone");
INSERT INTO `wp_gf_entry_meta` VALUES("1082", "3", "157", "2", "court.demone@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1083", "3", "157", "3.1", "4636 Elk Lake Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("1084", "3", "157", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1085", "3", "157", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1086", "3", "157", "3.5", "V8Z 5M1");
INSERT INTO `wp_gf_entry_meta` VALUES("1087", "3", "157", "4", "(250) 475-7624");
INSERT INTO `wp_gf_entry_meta` VALUES("1088", "3", "157", "7", "12/05/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("1089", "3", "157", "5", "Self-Injurying Youth: Understanding and Responding\r\n\r\n*Alana Goddard (Saanich) to cover cost of all Saanich staff");
INSERT INTO `wp_gf_entry_meta` VALUES("1091", "3", "158", "1.3", "Jackson");
INSERT INTO `wp_gf_entry_meta` VALUES("1092", "3", "158", "1.6", "Martin");
INSERT INTO `wp_gf_entry_meta` VALUES("1093", "3", "158", "2", "justformar@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1094", "3", "158", "3.1", "4636 Elk Lake Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("1095", "3", "158", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1096", "3", "158", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1097", "3", "158", "3.5", "V8W 5M1");
INSERT INTO `wp_gf_entry_meta` VALUES("1098", "3", "158", "4", "(250) 475-7624");
INSERT INTO `wp_gf_entry_meta` VALUES("1099", "3", "158", "7", "12/05/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("1100", "3", "158", "5", "Self-Injurying Youth: Understanding and Responding\r\n\r\nAlana Goddard (Saanich) will pay for this workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("1102", "3", "159", "1.3", "Macayla");
INSERT INTO `wp_gf_entry_meta` VALUES("1103", "3", "159", "1.6", "Yan");
INSERT INTO `wp_gf_entry_meta` VALUES("1104", "3", "159", "2", "macayla.y@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1105", "3", "159", "3.1", "4636 Elk Lake Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("1106", "3", "159", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1107", "3", "159", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1108", "3", "159", "3.5", "V8Z 5M1");
INSERT INTO `wp_gf_entry_meta` VALUES("1109", "3", "159", "4", "(250) 475-7624");
INSERT INTO `wp_gf_entry_meta` VALUES("1110", "3", "159", "7", "12/05/2015");
INSERT INTO `wp_gf_entry_meta` VALUES("1111", "3", "159", "5", "Self-Injurying Youth: Understanding and Responding\r\n\r\nAlana Goddard (Saanich) will provide payment");
INSERT INTO `wp_gf_entry_meta` VALUES("1113", "3", "160", "1.3", "Liane");
INSERT INTO `wp_gf_entry_meta` VALUES("1114", "3", "160", "1.6", "Wohlberg");
INSERT INTO `wp_gf_entry_meta` VALUES("1115", "3", "160", "2", "lwohlberg@sd61.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1116", "3", "160", "3.1", "2829 Wyndeatt Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("1117", "3", "160", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1118", "3", "160", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1119", "3", "160", "3.5", "V9A 2L7");
INSERT INTO `wp_gf_entry_meta` VALUES("1120", "3", "160", "4", "(250) 418-5220");
INSERT INTO `wp_gf_entry_meta` VALUES("1121", "3", "160", "7", "December 5 10am-12pm");
INSERT INTO `wp_gf_entry_meta` VALUES("1122", "3", "160", "5", "Self Injurying Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("1124", "1", "161", "1.3", "Lale");
INSERT INTO `wp_gf_entry_meta` VALUES("1125", "1", "161", "1.6", "Minielly");
INSERT INTO `wp_gf_entry_meta` VALUES("1126", "1", "161", "2", "lalejess@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1127", "1", "161", "5", "(250) 592-7192");
INSERT INTO `wp_gf_entry_meta` VALUES("1128", "1", "161", "3", "Hi,\r\nMy husband and I are looking for couples counseling and counseling for us individually. We\'ve never had counseling so we\'re wondering how this works. Do we meet with counselors first before a session?\r\nI\'ve left phone messages, one just now and one last week. Is email the best way to be in contact?\r\nThank you,\r\nLale");
INSERT INTO `wp_gf_entry_meta` VALUES("1129", "8", "162", "1.3", "Adam");
INSERT INTO `wp_gf_entry_meta` VALUES("1130", "8", "162", "1.6", "Beaton");
INSERT INTO `wp_gf_entry_meta` VALUES("1131", "8", "162", "2", "writeadam@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1132", "8", "162", "3.1", "4248 Shelbourne St");
INSERT INTO `wp_gf_entry_meta` VALUES("1133", "8", "162", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1134", "8", "162", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1135", "8", "162", "3.5", "V8N 3G2");
INSERT INTO `wp_gf_entry_meta` VALUES("1136", "8", "162", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1137", "8", "162", "4", "(250) 216-3289");
INSERT INTO `wp_gf_entry_meta` VALUES("1138", "8", "162", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("1139", "8", "162", "6", "Emmanuel Baptist Church, 2121 Cedar Hill Crossroad, Victoria, BC.");
INSERT INTO `wp_gf_entry_meta` VALUES("1142", "8", "162", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_gf_entry_meta` VALUES("1143", "8", "162", "11.2", "cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("1144", "1", "163", "1.3", "Maria");
INSERT INTO `wp_gf_entry_meta` VALUES("1145", "1", "163", "1.6", "Ebenal");
INSERT INTO `wp_gf_entry_meta` VALUES("1146", "1", "163", "2", "m.ebenal@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1147", "1", "163", "5", "(250) 857-4719");
INSERT INTO `wp_gf_entry_meta` VALUES("1148", "1", "163", "3", "Hello,\r\n\r\nI am a volunteer counsellor with Citizens and I am wondering about your counselling services. I have a client whom I feel may benefit from longer term counselling (we only offer sets of 10 sessions). I am curious as to your session limitations (if you have any). Additionally, you mention that your scale is negotiable. The client in question currently pays $40/session and I do not think $50 is doable for them. Is this amount within your range of acceptance (of course this is require conversation with the client and a negotiation directly and I have no intention of guaranteeing this price for them, I just do not want to have them reach out and this not be a possibility upon discussion). \r\n\r\nThank you in advance for any and all information related to my questions you are able to provide.\r\nThanks for your time and energy,\r\nMaria");
INSERT INTO `wp_gf_entry_meta` VALUES("1149", "3", "164", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("1150", "3", "164", "1.6", "Wingert");
INSERT INTO `wp_gf_entry_meta` VALUES("1151", "3", "164", "2", "jennifer.m.wingert@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1152", "3", "164", "3.1", "4429 Torrington Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1153", "3", "164", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1154", "3", "164", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1155", "3", "164", "3.5", "V8N 4N8");
INSERT INTO `wp_gf_entry_meta` VALUES("1156", "3", "164", "4", "(250) 882-4056");
INSERT INTO `wp_gf_entry_meta` VALUES("1157", "3", "164", "7", "February 13, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1158", "3", "164", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("1160", "1", "165", "1.3", "Nyk");
INSERT INTO `wp_gf_entry_meta` VALUES("1161", "1", "165", "1.6", "Danu");
INSERT INTO `wp_gf_entry_meta` VALUES("1162", "1", "165", "2", "tattooedgurl@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1163", "1", "165", "5", "(250) 580-7377");
INSERT INTO `wp_gf_entry_meta` VALUES("1164", "1", "165", "3", "Please reply via email.\r\n\r\nHi I was looking at tut sliding scale counseling online and have a question.\r\nOn your website it says \'South Island Centre normally sets its fees on a sliding scale between $50 and $120 per 60-minute session (includes GST) depending on the level of your household income. \'\r\n\r\nDoes that mean your services don\'t go lower than $50? \r\nI am a full time student and I really need help but there is no way I can afford  $50 at this point.\r\nThanks for your time");
INSERT INTO `wp_gf_entry_meta` VALUES("1165", "1", "166", "1.3", "Taylor");
INSERT INTO `wp_gf_entry_meta` VALUES("1166", "1", "166", "1.6", "Bleaney");
INSERT INTO `wp_gf_entry_meta` VALUES("1167", "1", "166", "2", "taylorableaney@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1168", "1", "166", "5", "(604) 414-6141");
INSERT INTO `wp_gf_entry_meta` VALUES("1169", "1", "166", "3", "I was advise to seek out counselling as per my doctor. I suffer from anxiety and depression and she recommended Laurie Truant. I am a 21 year old female attending University of Victoria and find both of these disorders crippling and am desperate to find the root causes and skill in which to manage them as I find they play a role in my schooling my home life my work and my relationships.");
INSERT INTO `wp_gf_entry_meta` VALUES("1170", "8", "167", "1.3", "Elizabeth");
INSERT INTO `wp_gf_entry_meta` VALUES("1171", "8", "167", "1.6", "Johnson");
INSERT INTO `wp_gf_entry_meta` VALUES("1172", "8", "167", "2", "elljay35@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1173", "8", "167", "3.1", "16-6110 Seabroom Rd.,");
INSERT INTO `wp_gf_entry_meta` VALUES("1174", "8", "167", "3.3", "Sooke");
INSERT INTO `wp_gf_entry_meta` VALUES("1175", "8", "167", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1176", "8", "167", "3.5", "V9Z 0B8");
INSERT INTO `wp_gf_entry_meta` VALUES("1177", "8", "167", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1178", "8", "167", "4", "(250) 642-6418");
INSERT INTO `wp_gf_entry_meta` VALUES("1179", "8", "167", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("1180", "8", "167", "6", "Holy Trinity Anglican Church,   1962 Murray,  Box 519, Sooke B.C.  V9Z 1H5");
INSERT INTO `wp_gf_entry_meta` VALUES("1183", "8", "167", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("1184", "8", "167", "11.2", "cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("1185", "1", "168", "1.3", "Gillian");
INSERT INTO `wp_gf_entry_meta` VALUES("1186", "1", "168", "1.6", "Gaffney");
INSERT INTO `wp_gf_entry_meta` VALUES("1187", "1", "168", "2", "Gillianatcookstreet@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1188", "1", "168", "5", "(250) 893-4455");
INSERT INTO `wp_gf_entry_meta` VALUES("1189", "1", "168", "3", "Hi there, my name is Gillian Gaffney.  I am a stay at home mom to a 3 year old girl and full time step mom to my partner\'s two nine year old boys.  We have a very complex family dynamic and deal with a challenging relationship with the boys\' mother.  We are a very low income family but do have some coverage through my partner\'s work insurance.  The counsellor at my step sons\' school has urged us to find a sliding scale family therapist to help us and we are hoping someone at your office could do that.  Does this sound like something you could help with?  \r\n\r\nHope to hear from you soon, \r\nGillian");
INSERT INTO `wp_gf_entry_meta` VALUES("1190", "3", "169", "1.3", "Georgia");
INSERT INTO `wp_gf_entry_meta` VALUES("1191", "3", "169", "1.6", "Cloutier");
INSERT INTO `wp_gf_entry_meta` VALUES("1192", "3", "169", "2", "khalachyane@mail.ru");
INSERT INTO `wp_gf_entry_meta` VALUES("1193", "3", "169", "3.1", "3806 Pheasant Ridge Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1194", "3", "169", "3.3", "Philadelphia");
INSERT INTO `wp_gf_entry_meta` VALUES("1195", "3", "169", "3.4", "PA");
INSERT INTO `wp_gf_entry_meta` VALUES("1196", "3", "169", "3.5", "19107");
INSERT INTO `wp_gf_entry_meta` VALUES("1197", "3", "169", "4", "(215) 507-0391");
INSERT INTO `wp_gf_entry_meta` VALUES("1198", "3", "169", "7", "26");
INSERT INTO `wp_gf_entry_meta` VALUES("1199", "3", "169", "5", "The pointers for planning a intimate breakfast within just mattress start out with offering by yourself adequate season for the arrangements, then through natural environment the alarm clock, arranging your course, getting to be geared up the adornments, masking the tray, environment up the tray, finishing the breakfast arrangements, arranging the meals and far too consume upon the plate and tray, relocating towards the bed room with the breakfast tray, waking your sweetheart up and offering the tray in the direction of him or her.");
INSERT INTO `wp_gf_entry_meta` VALUES("1203", "3", "170", "1.3", "Princess");
INSERT INTO `wp_gf_entry_meta` VALUES("1204", "3", "170", "1.6", "Milner");
INSERT INTO `wp_gf_entry_meta` VALUES("1205", "3", "170", "2", "hsigdlkiv@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1206", "3", "170", "3.1", "3390 Scheuvront Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("1207", "3", "170", "3.3", "Boulder");
INSERT INTO `wp_gf_entry_meta` VALUES("1208", "3", "170", "3.4", "CO");
INSERT INTO `wp_gf_entry_meta` VALUES("1209", "3", "170", "3.5", "80301");
INSERT INTO `wp_gf_entry_meta` VALUES("1210", "3", "170", "4", "(303) 516-3810");
INSERT INTO `wp_gf_entry_meta` VALUES("1211", "3", "170", "7", "12");
INSERT INTO `wp_gf_entry_meta` VALUES("1212", "3", "170", "5", "you locomote roughly looking sad, then it isn\'t change surface Cheap Jordan Shoes");
INSERT INTO `wp_gf_entry_meta` VALUES("1216", "3", "171", "1.3", "Estela");
INSERT INTO `wp_gf_entry_meta` VALUES("1217", "3", "171", "1.6", "Himmel");
INSERT INTO `wp_gf_entry_meta` VALUES("1218", "3", "171", "2", "belotsvetov91@mail.ru");
INSERT INTO `wp_gf_entry_meta` VALUES("1219", "3", "171", "3.1", "44 Davis Court");
INSERT INTO `wp_gf_entry_meta` VALUES("1220", "3", "171", "3.3", "De Soto");
INSERT INTO `wp_gf_entry_meta` VALUES("1221", "3", "171", "3.4", "IL");
INSERT INTO `wp_gf_entry_meta` VALUES("1222", "3", "171", "3.5", "62924");
INSERT INTO `wp_gf_entry_meta` VALUES("1223", "3", "171", "4", "(618) 867-8618");
INSERT INTO `wp_gf_entry_meta` VALUES("1224", "3", "171", "7", "23");
INSERT INTO `wp_gf_entry_meta` VALUES("1225", "3", "171", "5", "Very Suggestions About Writing a blog Which Help Construct Good results");
INSERT INTO `wp_gf_entry_meta` VALUES("1229", "1", "172", "1.3", "Felicia");
INSERT INTO `wp_gf_entry_meta` VALUES("1230", "1", "172", "1.6", "Ramirez");
INSERT INTO `wp_gf_entry_meta` VALUES("1231", "1", "172", "2", "fleicia.t.r@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1232", "1", "172", "5", "(250) 634-4183");
INSERT INTO `wp_gf_entry_meta` VALUES("1233", "1", "172", "3", "I looked at your web site and wanted to set up an appointment with Amber Eaves for myself and abuse I have been through.  I have not made an appointment with this office before and would like to discuss the fees. I have just moved from Ontario with two children, I am not working as yet as I am waiting on paper work to be completed here to work as an ECE.  I have employment set up and should be starting within the month.  What step do I need to take next?\r\nThank you\r\nFelicia Ramirez");
INSERT INTO `wp_gf_entry_meta` VALUES("1234", "3", "173", "1.3", "Henrietta");
INSERT INTO `wp_gf_entry_meta` VALUES("1235", "3", "173", "1.6", "Harmer");
INSERT INTO `wp_gf_entry_meta` VALUES("1236", "3", "173", "2", "staydl1979@mail.ru");
INSERT INTO `wp_gf_entry_meta` VALUES("1237", "3", "173", "3.1", "1676 Haul Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1238", "3", "173", "3.3", "Golden Valley");
INSERT INTO `wp_gf_entry_meta` VALUES("1239", "3", "173", "3.4", "MN");
INSERT INTO `wp_gf_entry_meta` VALUES("1240", "3", "173", "3.5", "55427");
INSERT INTO `wp_gf_entry_meta` VALUES("1241", "3", "173", "4", "(651) 245-2034");
INSERT INTO `wp_gf_entry_meta` VALUES("1242", "3", "173", "7", "12");
INSERT INTO `wp_gf_entry_meta` VALUES("1243", "3", "173", "5", "Temple Run 2 Cheats For Cash And Gems Hack");
INSERT INTO `wp_gf_entry_meta` VALUES("1247", "1", "174", "1.3", "Shawna");
INSERT INTO `wp_gf_entry_meta` VALUES("1248", "1", "174", "1.6", "Milne");
INSERT INTO `wp_gf_entry_meta` VALUES("1249", "1", "174", "2", "shbeamish@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1250", "1", "174", "5", "(778) 533-3841");
INSERT INTO `wp_gf_entry_meta` VALUES("1251", "1", "174", "3", "Hello - I am seeking counselling for myself, and possibly for my son.  I work full-time, but do not receive health benefits, so I fall under the less than $50,000 annual income threshold.  \r\nWhat I am seeking is help with processing my part in the relationship with my son, who is currently involved with the justice system.  I have been a single parent for most of his upbringing, and have invested much of myself in the relationship, and now I am struggling with how to navigate this relationship from where it is, as well as recognizing my possible co-dependent tendencies within the relationship.  I have a hard time setting boundaries, and am living with a lot of anxiety, resentment, and obsessive thinking.  I need to get a life, at the same time, I want to work on maintaining a healthy relationship with my son, who is currently making choices that contradict everything I feel I have tried to impress upon him.  I have relied on family and friends for support, but I feel like I am exhausting those resources, and people are tired of hearing about my troubles.  There are many other details, I would like to discuss, and am willing to pay whatever is fair for the services of a counselor who may be able to address my situation.  Thanks");
INSERT INTO `wp_gf_entry_meta` VALUES("1252", "1", "175", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("1253", "1", "175", "1.6", "Pelletier");
INSERT INTO `wp_gf_entry_meta` VALUES("1254", "1", "175", "2", "Jenniferpelletier13@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1255", "1", "175", "5", "(250) 580-3212");
INSERT INTO `wp_gf_entry_meta` VALUES("1256", "1", "175", "3", "Hello, \r\nMy name is Jennifer and I am 22.I am looking for help. A couple years ago I lost my little brother, at the time I thought I was grieving, but I think I was more distracting myself. I am now feeling I am ready to talk about how I am feeling and help try to solve my feelings in been having because the last few months have been tough. Thank you so much for your time.\r\n\r\nJenn");
INSERT INTO `wp_gf_entry_meta` VALUES("1257", "1", "176", "1.3", "Melissa");
INSERT INTO `wp_gf_entry_meta` VALUES("1258", "1", "176", "1.6", "Henderson");
INSERT INTO `wp_gf_entry_meta` VALUES("1259", "1", "176", "2", "Mrandmrshenderson@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1260", "1", "176", "5", "(250) 818-9403");
INSERT INTO `wp_gf_entry_meta` VALUES("1261", "1", "176", "3", "Hi there, \r\nI\'d like to set up an initial meeting to discuss starting counselling. I\'m currently unemployed so it would have to be on the sliding scale. Please let me know if this is possible. \r\nThank you \r\nMelissa");
INSERT INTO `wp_gf_entry_meta` VALUES("1262", "1", "177", "1.3", "Felicia");
INSERT INTO `wp_gf_entry_meta` VALUES("1263", "1", "177", "1.6", "Ramirez");
INSERT INTO `wp_gf_entry_meta` VALUES("1264", "1", "177", "2", "felicia.t.r@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1265", "1", "177", "5", "(250) 634-4183");
INSERT INTO `wp_gf_entry_meta` VALUES("1266", "1", "177", "3", "I would like to cancel a first appointment with Amber Eves for now until I begin work which is just a few weeks.\r\nThank you\r\nFelicia Ramirez");
INSERT INTO `wp_gf_entry_meta` VALUES("1267", "8", "178", "1.3", "Charles");
INSERT INTO `wp_gf_entry_meta` VALUES("1268", "8", "178", "1.6", "Dorrington");
INSERT INTO `wp_gf_entry_meta` VALUES("1269", "8", "178", "2", "revchas@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1270", "8", "178", "3.1", "70-7570 Tetayut Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1271", "8", "178", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("1272", "8", "178", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1273", "8", "178", "3.5", "V8M 2H4");
INSERT INTO `wp_gf_entry_meta` VALUES("1274", "8", "178", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1275", "8", "178", "4", "(778) 426-3212");
INSERT INTO `wp_gf_entry_meta` VALUES("1276", "8", "178", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("1277", "8", "178", "6", "The Reformed Episcopal Church of the Holy Trinity\r\n537 Glencairn Lane\r\nColwood, B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("1280", "8", "178", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_gf_entry_meta` VALUES("1282", "8", "178", "10", "n/a");
INSERT INTO `wp_gf_entry_meta` VALUES("1283", "8", "178", "11.1", "credit card");
INSERT INTO `wp_gf_entry_meta` VALUES("1284", "1", "179", "1.3", "sydney");
INSERT INTO `wp_gf_entry_meta` VALUES("1285", "1", "179", "1.6", "dover");
INSERT INTO `wp_gf_entry_meta` VALUES("1286", "1", "179", "2", "sydneydover@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1287", "1", "179", "5", "(250) 686-2766");
INSERT INTO `wp_gf_entry_meta` VALUES("1288", "1", "179", "3", "Hi there,\r\n\r\nI am looking for counselling for my partner and I. It seems like everything we find is too expensive and we just want to try and get help resolving our issues and move forward in our relationship. Looking to do any kind of counselling or group therapy. Is there an option for relationship counselling?\r\n\r\nThanks so much,\r\n\r\nSydney");
INSERT INTO `wp_gf_entry_meta` VALUES("1289", "1", "180", "1.3", "Faith");
INSERT INTO `wp_gf_entry_meta` VALUES("1290", "1", "180", "1.6", "Gildenhuys");
INSERT INTO `wp_gf_entry_meta` VALUES("1291", "1", "180", "2", "fgilden@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1292", "1", "180", "5", "(250) 598-5803");
INSERT INTO `wp_gf_entry_meta` VALUES("1293", "1", "180", "3", "Maureen Matthew recommended that I meet with Margaret Anderson to discuss my caregiving for my husband who suffers from Parkinson\'s and Lewy body dementia.\r\nThank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("1294", "1", "181", "1.3", "Catharine");
INSERT INTO `wp_gf_entry_meta` VALUES("1295", "1", "181", "1.6", "Kintoff");
INSERT INTO `wp_gf_entry_meta` VALUES("1296", "1", "181", "2", "catkinfarrier@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1297", "1", "181", "5", "(250) 362-5524");
INSERT INTO `wp_gf_entry_meta` VALUES("1298", "1", "181", "3", "Years ago, Dr. Robert Vaughan counselled me and I wonder how he is?");
INSERT INTO `wp_gf_entry_meta` VALUES("1299", "1", "182", "1.3", "Lynne");
INSERT INTO `wp_gf_entry_meta` VALUES("1300", "1", "182", "1.6", "Humphry-Baker");
INSERT INTO `wp_gf_entry_meta` VALUES("1301", "1", "182", "2", "Chica4344@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1302", "1", "182", "5", "(250) 479-2541");
INSERT INTO `wp_gf_entry_meta` VALUES("1303", "1", "182", "3", "My partner of 25 years and I are experiencing a relationship stalemate.  I have tried to get him to talk about it, but he is reluctant or in denial. I\'m not willing to give up on us without at least trying counselling.  I feel that if I initiate the process he may consider counselling for himself too.");
INSERT INTO `wp_gf_entry_meta` VALUES("1304", "1", "183", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("1305", "1", "183", "1.6", "Renowden");
INSERT INTO `wp_gf_entry_meta` VALUES("1306", "1", "183", "2", "sarahpoberg@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1307", "1", "183", "5", "(250) 857-1879");
INSERT INTO `wp_gf_entry_meta` VALUES("1308", "1", "183", "3", "Hi there,\r\n\r\nJust curious about your counselling, is it all faith based? Is it LGBT friendly?");
INSERT INTO `wp_gf_entry_meta` VALUES("1309", "1", "184", "1.3", "Jonathan");
INSERT INTO `wp_gf_entry_meta` VALUES("1310", "1", "184", "1.6", "Seymour");
INSERT INTO `wp_gf_entry_meta` VALUES("1311", "1", "184", "2", "J.seymour89@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1312", "1", "184", "5", "(250) 507-8983");
INSERT INTO `wp_gf_entry_meta` VALUES("1313", "1", "184", "3", "Hi there i was hoping to set up an appointment for couples counselling. We were recomended here due to our low income. We strongly feel this is our last chance to save our relationship. I look forward to hearing back from you.\r\n\r\nThank you,");
INSERT INTO `wp_gf_entry_meta` VALUES("1314", "3", "185", "1.3", "Siu Lai (Gwen)");
INSERT INTO `wp_gf_entry_meta` VALUES("1315", "3", "185", "1.6", "Lam");
INSERT INTO `wp_gf_entry_meta` VALUES("1316", "3", "185", "2", "glambasham@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1317", "3", "185", "3.1", "3517 Sunheights Dr.");
INSERT INTO `wp_gf_entry_meta` VALUES("1318", "3", "185", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1319", "3", "185", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1320", "3", "185", "3.5", "V9C3T7");
INSERT INTO `wp_gf_entry_meta` VALUES("1321", "3", "185", "4", "(250) 857-9375");
INSERT INTO `wp_gf_entry_meta` VALUES("1322", "3", "185", "7", "Feb 3, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1323", "3", "185", "5", "The Ebb & Flow of Life");
INSERT INTO `wp_gf_entry_meta` VALUES("1325", "1", "186", "1.3", "Gwen");
INSERT INTO `wp_gf_entry_meta` VALUES("1326", "1", "186", "1.6", "Lam");
INSERT INTO `wp_gf_entry_meta` VALUES("1327", "1", "186", "2", "glambasham@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1328", "1", "186", "5", "(250) 857-9375");
INSERT INTO `wp_gf_entry_meta` VALUES("1329", "1", "186", "3", "Interested in Pastoral Counselling Training, pls provide more info.\r\nThanks.");
INSERT INTO `wp_gf_entry_meta` VALUES("1330", "1", "187", "1.3", "Heidi");
INSERT INTO `wp_gf_entry_meta` VALUES("1331", "1", "187", "1.6", "Bada");
INSERT INTO `wp_gf_entry_meta` VALUES("1332", "1", "187", "2", "heidibada@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1333", "1", "187", "5", "(250) 479-4232");
INSERT INTO `wp_gf_entry_meta` VALUES("1334", "1", "187", "3", "I am getting frustrated with panic-like symptoms that appear out of the blue. Toughing it out isn\'t working, because the symptoms are the same or very similar to a low blood sugar, so I have been struggling to distinguish anxiety from low blood sugar, with disastrous results with diabetes. I\'ve been seen at emergency and clinics (again, thinking I am having an unusual diabetes event) and their staff have repeatedly told me to deal with anxiety that appears obvious to them, and totally new to me. I\'m on provincial PWD income and probably could not afford much. I\'d like to make an appointment though. I feel unsafe living alone with diabetes now, unsure of being able to treat highs and lows on my own.");
INSERT INTO `wp_gf_entry_meta` VALUES("1335", "3", "188", "1.3", "Ken");
INSERT INTO `wp_gf_entry_meta` VALUES("1336", "3", "188", "1.6", "Gill");
INSERT INTO `wp_gf_entry_meta` VALUES("1337", "3", "188", "2", "obfdchaplain@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1338", "3", "188", "3.1", "2244 Cooperidge Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("1339", "3", "188", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("1340", "3", "188", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1341", "3", "188", "3.5", "V8M 1N2");
INSERT INTO `wp_gf_entry_meta` VALUES("1342", "3", "188", "4", "(250) 889-4082");
INSERT INTO `wp_gf_entry_meta` VALUES("1343", "3", "188", "7", "February 3, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1344", "3", "188", "5", "The Ebb and Flow of Life: An Introduction to Grief Loss");
INSERT INTO `wp_gf_entry_meta` VALUES("1346", "2", "189", "1.3", "Ken");
INSERT INTO `wp_gf_entry_meta` VALUES("1347", "2", "189", "1.6", "Gill");
INSERT INTO `wp_gf_entry_meta` VALUES("1348", "2", "189", "2", "obfdchaplain@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1349", "2", "189", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("1350", "1", "190", "1.3", "Roger");
INSERT INTO `wp_gf_entry_meta` VALUES("1351", "1", "190", "1.6", "Sangha");
INSERT INTO `wp_gf_entry_meta` VALUES("1352", "1", "190", "2", "roger1519@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1353", "1", "190", "5", "(250) 893-1817");
INSERT INTO `wp_gf_entry_meta` VALUES("1354", "1", "190", "3", "I am looking at getting some counseling on several issues, marriage, relationship, personel and self esteem, overall confidence, was looking to set up an appointment");
INSERT INTO `wp_gf_entry_meta` VALUES("1355", "1", "191", "1.3", "Rachel");
INSERT INTO `wp_gf_entry_meta` VALUES("1356", "1", "191", "1.6", "Trebilco");
INSERT INTO `wp_gf_entry_meta` VALUES("1357", "1", "191", "2", "Rachel.trebilco@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1358", "1", "191", "5", "(250) 661-4893");
INSERT INTO `wp_gf_entry_meta` VALUES("1359", "1", "191", "3", "Good evening!\r\n\r\nI am interested in seeking some personal and relationship counselling. What are the office hours and who might be available to help? \r\n\r\nThank you for your time,\r\n\r\nRachel Trebilco");
INSERT INTO `wp_gf_entry_meta` VALUES("1360", "3", "192", "1.3", "Lisa");
INSERT INTO `wp_gf_entry_meta` VALUES("1361", "3", "192", "1.6", "Coulson");
INSERT INTO `wp_gf_entry_meta` VALUES("1362", "3", "192", "2", "lisacoulson@silverthreads.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1363", "3", "192", "3.1", "Silver Threads Service, 286 Hampton Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1364", "3", "192", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1365", "3", "192", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1366", "3", "192", "3.5", "V8Z 1H1");
INSERT INTO `wp_gf_entry_meta` VALUES("1367", "3", "192", "4", "(250) 382-3151");
INSERT INTO `wp_gf_entry_meta` VALUES("1368", "3", "192", "7", "February 3, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1369", "3", "192", "5", "The Ebb and Flow of Life: An Introduction to Grief Loss");
INSERT INTO `wp_gf_entry_meta` VALUES("1371", "3", "193", "1.3", "Donna");
INSERT INTO `wp_gf_entry_meta` VALUES("1372", "3", "193", "1.6", "Newman");
INSERT INTO `wp_gf_entry_meta` VALUES("1373", "3", "193", "2", "donnanewmanis@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1374", "3", "193", "3.1", "2919 Glen Lake Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1375", "3", "193", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1376", "3", "193", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1377", "3", "193", "3.5", "V9B 4B2");
INSERT INTO `wp_gf_entry_meta` VALUES("1378", "3", "193", "4", "(250) 881-4182");
INSERT INTO `wp_gf_entry_meta` VALUES("1379", "3", "193", "7", "02/13/16");
INSERT INTO `wp_gf_entry_meta` VALUES("1380", "3", "193", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("1382", "1", "194", "1.3", "Emma");
INSERT INTO `wp_gf_entry_meta` VALUES("1383", "1", "194", "1.6", "Hillian");
INSERT INTO `wp_gf_entry_meta` VALUES("1384", "1", "194", "2", "hillian.emma@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1385", "1", "194", "5", "(250) 386-5699");
INSERT INTO `wp_gf_entry_meta` VALUES("1386", "1", "194", "3", "I would like to speak to someone about going through transition and my general life direction and relationship issues.");
INSERT INTO `wp_gf_entry_meta` VALUES("1387", "3", "195", "1.3", "Salvetina");
INSERT INTO `wp_gf_entry_meta` VALUES("1388", "3", "195", "1.6", "Agba");
INSERT INTO `wp_gf_entry_meta` VALUES("1389", "3", "195", "2", "salvetinaagba@yahoo.vom");
INSERT INTO `wp_gf_entry_meta` VALUES("1390", "3", "195", "3.1", "2083 Byron Street");
INSERT INTO `wp_gf_entry_meta` VALUES("1391", "3", "195", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1392", "3", "195", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1393", "3", "195", "3.5", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1394", "3", "195", "4", "(250) 893-1646");
INSERT INTO `wp_gf_entry_meta` VALUES("1395", "3", "195", "7", "Feb 13/16");
INSERT INTO `wp_gf_entry_meta` VALUES("1396", "3", "195", "5", "Marriage Preparation Workshop, Saturday, February 13, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1398", "2", "196", "1.3", "Jessica");
INSERT INTO `wp_gf_entry_meta` VALUES("1399", "2", "196", "1.6", "Hamilton");
INSERT INTO `wp_gf_entry_meta` VALUES("1400", "2", "196", "2", "jessicac_hamilton@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1401", "2", "196", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("1402", "1", "197", "1.3", "Ken");
INSERT INTO `wp_gf_entry_meta` VALUES("1403", "1", "197", "1.6", "Gill");
INSERT INTO `wp_gf_entry_meta` VALUES("1404", "1", "197", "2", "obfdchaplain@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1405", "1", "197", "5", "(250) 889-4082");
INSERT INTO `wp_gf_entry_meta` VALUES("1406", "1", "197", "3", "Hello,\r\nI would like to express interest in the Pastoral Counselling Training Course mentioned on your website. \r\nAre you planning on running this course in the new future? \r\n \r\nI would be interested and available for the 5 day course, however, I would also consider other format options.\r\n\r\nOn a side note, I attended the first â€œEbb and Flow of Lifeâ€ course session last night and found it extremely informative and interesting!  I am definitely looking forward to our future sessions. \r\n\r\nThank you,\r\n\r\nKen\r\n\r\n     \r\nOak Bay Fire Department\r\nChaplain Ken Gill\r\nobfdchaplain@shaw.ca\r\n250-889-4082");
INSERT INTO `wp_gf_entry_meta` VALUES("1407", "3", "198", "1.3", "Catherine");
INSERT INTO `wp_gf_entry_meta` VALUES("1408", "3", "198", "1.6", "Hack");
INSERT INTO `wp_gf_entry_meta` VALUES("1409", "3", "198", "2", "chack657@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1410", "3", "198", "3.1", "2129 Pan Dion Plc");
INSERT INTO `wp_gf_entry_meta` VALUES("1411", "3", "198", "3.3", "Sooke");
INSERT INTO `wp_gf_entry_meta` VALUES("1412", "3", "198", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1413", "3", "198", "3.5", "V9Z 0G1");
INSERT INTO `wp_gf_entry_meta` VALUES("1414", "3", "198", "4", "(250) 642-2003");
INSERT INTO `wp_gf_entry_meta` VALUES("1415", "3", "198", "7", "July 2-8, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1416", "3", "198", "5", "Family Systems");
INSERT INTO `wp_gf_entry_meta` VALUES("1418", "3", "199", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("1419", "3", "199", "1.6", "Fenimore");
INSERT INTO `wp_gf_entry_meta` VALUES("1420", "3", "199", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1421", "3", "199", "3.1", "2625 Avebury Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("1422", "3", "199", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1423", "3", "199", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1424", "3", "199", "3.5", "V8R 3W3");
INSERT INTO `wp_gf_entry_meta` VALUES("1425", "3", "199", "4", "(250) 477-7257");
INSERT INTO `wp_gf_entry_meta` VALUES("1426", "3", "199", "7", "02/27/16");
INSERT INTO `wp_gf_entry_meta` VALUES("1427", "3", "199", "5", "Midlife Directions Intensive");
INSERT INTO `wp_gf_entry_meta` VALUES("1429", "1", "200", "1.3", "jeff");
INSERT INTO `wp_gf_entry_meta` VALUES("1430", "1", "200", "1.6", "Stokes");
INSERT INTO `wp_gf_entry_meta` VALUES("1431", "1", "200", "2", "jeffstok@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1432", "1", "200", "5", "(778) 677-2676");
INSERT INTO `wp_gf_entry_meta` VALUES("1433", "1", "200", "3", "Hi, I\'m jeff I\'m 21 and going to school at Uvic. Over the summer I was working as a raft guide and had a couple of traumatic experiences that disoriented my person. Mainly these forced me to revert back to emotions from my teenage years where my Dad had a brain tumor and died over a period of two years. I thought that if I just stayed busy and kept propelling myself forwards that I could simply  push my way through and live life but I\'ve been hitting walls of depression and confusion, which I feel is related to this big question mark in my own history as well as my understanding of myself. I want to get counselling so that I can deal with some of these issues and live life free of internal problems within my head that prevent me from making positive decisions and the joy that I know I am capable of attaining. I feel like this is a roadblock that I have to deal with now, and hope that through counselling I can understand my self and story better and change my personal outlook to alot more optomistic perspective on my life and the world around me.");
INSERT INTO `wp_gf_entry_meta` VALUES("1434", "3", "201", "1.3", "Marija");
INSERT INTO `wp_gf_entry_meta` VALUES("1435", "3", "201", "1.6", "Filipovic");
INSERT INTO `wp_gf_entry_meta` VALUES("1436", "3", "201", "2", "marija.filipovic@viha.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1437", "3", "201", "3.1", "1030 Iris Ave.");
INSERT INTO `wp_gf_entry_meta` VALUES("1438", "3", "201", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1439", "3", "201", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1440", "3", "201", "3.5", "V8Z 2N7");
INSERT INTO `wp_gf_entry_meta` VALUES("1441", "3", "201", "4", "(250) 704-1046");
INSERT INTO `wp_gf_entry_meta` VALUES("1442", "3", "201", "7", "4 July, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1443", "3", "201", "5", "Family Systems Intensive");
INSERT INTO `wp_gf_entry_meta` VALUES("1445", "1", "202", "1.3", "Nina");
INSERT INTO `wp_gf_entry_meta` VALUES("1446", "1", "202", "1.6", "Dow");
INSERT INTO `wp_gf_entry_meta` VALUES("1447", "1", "202", "2", "Ninadow9@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1448", "1", "202", "5", "(250) 588-6561");
INSERT INTO `wp_gf_entry_meta` VALUES("1449", "1", "202", "3", "My husband Will and I have been having some marriage problems due to him having to stop working because of his MS, which has caused him depression and isolation, which has caused him to make some bad choices regarding the Internet. We are a low income family, I am on medical EI at the moment unable to work due to stress and Will is on Disability and LTD. We have had counselling through Citizens but their wait list is 6-8 weeks. We have two children 15 and 11 and I hope they could join in on some of our counselling too. We hope you have room for us.");
INSERT INTO `wp_gf_entry_meta` VALUES("1450", "1", "203", "1.3", "Josh");
INSERT INTO `wp_gf_entry_meta` VALUES("1451", "1", "203", "1.6", "Howell");
INSERT INTO `wp_gf_entry_meta` VALUES("1452", "1", "203", "2", "joshhowell@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1453", "1", "203", "5", "(250) 850-4170");
INSERT INTO `wp_gf_entry_meta` VALUES("1454", "1", "203", "3", "To whom it may concern, \r\n\r\nRecent events in my life have made me realize that the social anxiety and mood issues that have been existed my whole life have been affecting my happiness and the happiness of those I love more than I realized.  I am by no means suffering a crisis or suicidal, but I am starting to recognize that the way I think about and deal with interpersonal issues has and continues to hamper my ability to create and sustain healthy relationships, romantic and otherwise.  Specifically, I believe my tendency to be over analytical and take things very personally had inhibited my ability to naturally feel empathy towards others.  However I have a perfect life and no real troubles to speak of, so this makes me think I\'m just selfish and have been too lazy to do anything about it.  What finally made me do something about it was my fiance commenting that she did not understand me sometimes after I did something specifically un-empathetic.  This has happened many times in my life with different people pointing out insensitive things I\'ve done and the scary part is that I don\'t realize whatsoever that I am in the wrong right up until it is spelled out for me.  Then I immediately and with blinding clarity recognize the pattern of insensitive actions.  I am a relatively intelligent person and this level of obliviousness truly concerns me.  I realize that I don\'t fully understand how my brain works a lot of the time and I\'m smart enough to understand that I could be a lot happier if I did.  At this point I am messaging a few different counselling resources in the Victoria area to assess the different resources available to me.  Thank you for your time and I look forward to your response.\r\n\r\nSincerely,\r\nJosh Howell");
INSERT INTO `wp_gf_entry_meta` VALUES("1455", "3", "204", "1.3", "Caroline");
INSERT INTO `wp_gf_entry_meta` VALUES("1456", "3", "204", "1.6", "Donelle");
INSERT INTO `wp_gf_entry_meta` VALUES("1457", "3", "204", "2", "directordevelopment.sic@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1458", "3", "204", "3.1", "6-1677 Hollywood Crescent");
INSERT INTO `wp_gf_entry_meta` VALUES("1459", "3", "204", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1460", "3", "204", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1461", "3", "204", "3.5", "V8S 1J2");
INSERT INTO `wp_gf_entry_meta` VALUES("1462", "3", "204", "4", "(250) 888-7441");
INSERT INTO `wp_gf_entry_meta` VALUES("1463", "3", "204", "7", "April 14, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1464", "3", "204", "5", "The Twilight Journey");
INSERT INTO `wp_gf_entry_meta` VALUES("1466", "1", "205", "1.3", "Diane");
INSERT INTO `wp_gf_entry_meta` VALUES("1467", "1", "205", "1.6", "Appleton");
INSERT INTO `wp_gf_entry_meta` VALUES("1468", "1", "205", "2", "dianeponte@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1469", "1", "205", "5", "(250) 216-9094");
INSERT INTO `wp_gf_entry_meta` VALUES("1470", "1", "205", "3", "Hi There,\r\n\r\nJust inquiring about booking a time to meet with someone to discuss dealing with grief from recent pregnancy complications. \r\n\r\nI look forward to hearing from you!\r\n\r\nDiane");
INSERT INTO `wp_gf_entry_meta` VALUES("1471", "1", "206", "1.3", "Amanda");
INSERT INTO `wp_gf_entry_meta` VALUES("1472", "1", "206", "1.6", "Rudolph");
INSERT INTO `wp_gf_entry_meta` VALUES("1473", "1", "206", "2", "amandarudo@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1474", "1", "206", "5", "(250) 701-5993");
INSERT INTO `wp_gf_entry_meta` VALUES("1475", "1", "206", "3", "Good evening,\r\nMy name is Amanda Rudolph. I have a counselling and caregiving Diploma. But... I am struggling to help my boyfriend with his depression. It runs in his family, his dad has manic depression and his mother also suffers from depression.\r\n\r\nHis name is Keith Begg. He has suffered with depression most of his life. He has gone to counselling before but has not found success. He has also tried anti depressants that have just numbed his feelings, but not helped.\r\n\r\nHe expressed to me of having suicidal thoughts. He has had them before but lately he has been angry not sad. \r\n\r\nHe works until close to 4pm everyday. Is there anyway there are weekend or later sessions during the week?\r\n\r\nFinances are a problem in our lives at the moment. I am currently on ei and he literally has no money. I will put as much money aside as I can for his sessions. I love him and want him to get better. He knows he needs help and has agreed to go to counselling to better himself.\r\n\r\nPlease help us\r\n\r\nCheers,\r\nAmanda Rudolph\r\n250-701-5993");
INSERT INTO `wp_gf_entry_meta` VALUES("1476", "3", "207", "1.3", "shelly");
INSERT INTO `wp_gf_entry_meta` VALUES("1477", "3", "207", "1.6", "olsen");
INSERT INTO `wp_gf_entry_meta` VALUES("1478", "3", "207", "2", "shelly.olsen@viha.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1479", "3", "207", "3.1", "2nd Flr - 1947 Cook Street");
INSERT INTO `wp_gf_entry_meta` VALUES("1480", "3", "207", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1481", "3", "207", "3.4", "bc");
INSERT INTO `wp_gf_entry_meta` VALUES("1482", "3", "207", "3.5", "V8T 3P7");
INSERT INTO `wp_gf_entry_meta` VALUES("1483", "3", "207", "4", "(250) 519-3007");
INSERT INTO `wp_gf_entry_meta` VALUES("1484", "3", "207", "7", "04/17/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1485", "3", "207", "5", "The Twilight Journey");
INSERT INTO `wp_gf_entry_meta` VALUES("1487", "2", "208", "1.3", "Liz");
INSERT INTO `wp_gf_entry_meta` VALUES("1488", "2", "208", "1.6", "Radermacher");
INSERT INTO `wp_gf_entry_meta` VALUES("1489", "2", "208", "2", "lradermacher@need2.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1490", "2", "208", "6.3", "Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("1491", "3", "209", "1.3", "Siu Lai (Gwen)");
INSERT INTO `wp_gf_entry_meta` VALUES("1492", "3", "209", "1.6", "Lam");
INSERT INTO `wp_gf_entry_meta` VALUES("1493", "3", "209", "2", "glambasham@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1494", "3", "209", "3.1", "3517 Sunheights");
INSERT INTO `wp_gf_entry_meta` VALUES("1495", "3", "209", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1496", "3", "209", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1497", "3", "209", "3.5", "V9C 3T7");
INSERT INTO `wp_gf_entry_meta` VALUES("1498", "3", "209", "4", "(250) 857-9375");
INSERT INTO `wp_gf_entry_meta` VALUES("1499", "3", "209", "7", "April 14, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1500", "3", "209", "5", "The Twilight Journey - Grief, Loss & the Very Elderly");
INSERT INTO `wp_gf_entry_meta` VALUES("1502", "1", "210", "1.3", "Brittany");
INSERT INTO `wp_gf_entry_meta` VALUES("1503", "1", "210", "1.6", "MacDougall");
INSERT INTO `wp_gf_entry_meta` VALUES("1504", "1", "210", "2", "brittanymacdougall@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1505", "1", "210", "5", "(250) 589-8871");
INSERT INTO `wp_gf_entry_meta` VALUES("1506", "1", "210", "3", "hi, \r\n\r\nwanting to get an appointment for counselling.\r\n\r\nIn need of low income counselling.\r\n\r\nI\'m 16 years old.\r\n\r\nthe phone number above is for my worker at Holly House- Rebekah.\r\n\r\nThank you, \r\nBrittany");
INSERT INTO `wp_gf_entry_meta` VALUES("1507", "1", "211", "1.3", "Joshua");
INSERT INTO `wp_gf_entry_meta` VALUES("1508", "1", "211", "1.6", "Crowley");
INSERT INTO `wp_gf_entry_meta` VALUES("1509", "1", "211", "2", "Joshuadanielcrowley@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1510", "1", "211", "5", "(250) 474-9149");
INSERT INTO `wp_gf_entry_meta` VALUES("1511", "1", "211", "3", "Hi i was wondering if i could set something up so i could talk to a counseller. I am 25 years old with a 5 year old daughter. I am currently not working because of my anxiety and depression. Thank you for your time");
INSERT INTO `wp_gf_entry_meta` VALUES("1512", "3", "212", "1.3", "Danielle");
INSERT INTO `wp_gf_entry_meta` VALUES("1513", "3", "212", "1.6", "Sherwin");
INSERT INTO `wp_gf_entry_meta` VALUES("1514", "3", "212", "2", "Dsherwin10@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1515", "3", "212", "3.1", "1280 oakmount rd");
INSERT INTO `wp_gf_entry_meta` VALUES("1516", "3", "212", "3.3", "victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1517", "3", "212", "3.4", "bc");
INSERT INTO `wp_gf_entry_meta` VALUES("1518", "3", "212", "3.5", "v8p1m2");
INSERT INTO `wp_gf_entry_meta` VALUES("1519", "3", "212", "4", "(250) 208-9523");
INSERT INTO `wp_gf_entry_meta` VALUES("1520", "3", "212", "7", "05/04/16");
INSERT INTO `wp_gf_entry_meta` VALUES("1521", "3", "212", "5", "Marriage Prep Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("1523", "1", "213", "1.3", "Heather");
INSERT INTO `wp_gf_entry_meta` VALUES("1524", "1", "213", "1.6", "Furneaux");
INSERT INTO `wp_gf_entry_meta` VALUES("1525", "1", "213", "2", "heather@cloveandanchor.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1526", "1", "213", "5", "(250) 891-4851");
INSERT INTO `wp_gf_entry_meta` VALUES("1527", "1", "213", "3", "Hello, I would like to know more about your sliding scale counseling and what makes you eligible?");
INSERT INTO `wp_gf_entry_meta` VALUES("1529", "10", "214", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("1530", "10", "214", "10", "Feb 27, 1998");
INSERT INTO `wp_gf_entry_meta` VALUES("1531", "10", "214", "4", "laurabarleemorris@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1532", "10", "214", "7", "(778) 679-8724");
INSERT INTO `wp_gf_entry_meta` VALUES("1533", "10", "214", "2", "Veronica Barlee");
INSERT INTO `wp_gf_entry_meta` VALUES("1534", "10", "214", "3.1", "305-967 Collinson Street");
INSERT INTO `wp_gf_entry_meta` VALUES("1535", "10", "214", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1536", "10", "214", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1537", "10", "214", "3.5", "V8V 3B7");
INSERT INTO `wp_gf_entry_meta` VALUES("1538", "10", "214", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1539", "10", "214", "5", "Veronica.Barlee@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1540", "10", "214", "6", "(778) 679-9655");
INSERT INTO `wp_gf_entry_meta` VALUES("1541", "10", "214", "8", "phone");
INSERT INTO `wp_gf_entry_meta` VALUES("1543", "10", "214", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("1544", "10", "214", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1545", "10", "214", "17", "Zoloft (100 daily) and occasionally Ativan");
INSERT INTO `wp_gf_entry_meta` VALUES("1547", "1", "215", "1.3", "Sandy");
INSERT INTO `wp_gf_entry_meta` VALUES("1548", "1", "215", "1.6", "Bourbeau");
INSERT INTO `wp_gf_entry_meta` VALUES("1549", "1", "215", "2", "san.beau@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1550", "1", "215", "5", "(250) 881-0140");
INSERT INTO `wp_gf_entry_meta` VALUES("1551", "1", "215", "3", "Hi, One year ago, my husband and I separated after 22 years of marriage.  I am the classic codependent and he has Borderline Personality Disorder/Narcissistic Tendencies & several other diagnoses.  I have a 16 year old daughter who started to deal with the separation, the dysfunctional Dad, the dysfunctional Mom & historic physical and psychological abuse by her sister.  She was attending the Family Services for counseling when the counselor departed. She also had no closure with the counselor and this was her first time in counseling. I paid $30 per session for her. I also need counseling around bitterness, resentment, grief, low self-esteem, co-dependency- boundaries; isolation... I earn $45000 per year. My ex is supposed to pay $840 per month but that is hit and miss.  I am willing to let my daughter go to counseling first and then I will go afterwards.  Thank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("1553", "10", "216", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("1554", "10", "216", "10", "24/05/2002");
INSERT INTO `wp_gf_entry_meta` VALUES("1555", "10", "216", "4", "junkiebuddie@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1556", "10", "216", "2", "Tyson & Rachel King");
INSERT INTO `wp_gf_entry_meta` VALUES("1557", "10", "216", "3.1", "6973 Wallace Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("1558", "10", "216", "3.3", "Brentwood Bay");
INSERT INTO `wp_gf_entry_meta` VALUES("1559", "10", "216", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1560", "10", "216", "3.5", "V8M 1G2");
INSERT INTO `wp_gf_entry_meta` VALUES("1561", "10", "216", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1562", "10", "216", "5", "trt3kings@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1563", "10", "216", "6", "(250) 889-6642");
INSERT INTO `wp_gf_entry_meta` VALUES("1564", "10", "216", "8", "Phone please");
INSERT INTO `wp_gf_entry_meta` VALUES("1566", "10", "216", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1567", "10", "216", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("1568", "10", "216", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("1569", "10", "216", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("1570", "10", "216", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1571", "10", "216", "17", "Vyvanse 40 mg daily and ADHD meds");
INSERT INTO `wp_gf_entry_meta` VALUES("1572", "3", "217", "1.3", "Alison");
INSERT INTO `wp_gf_entry_meta` VALUES("1573", "3", "217", "1.6", "Donnelly");
INSERT INTO `wp_gf_entry_meta` VALUES("1574", "3", "217", "2", "a.donnellybikes@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1575", "3", "217", "3.1", "1758 Wilmot Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("1576", "3", "217", "3.3", "Cowichan Bay");
INSERT INTO `wp_gf_entry_meta` VALUES("1577", "3", "217", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1578", "3", "217", "3.5", "V0R 1N1");
INSERT INTO `wp_gf_entry_meta` VALUES("1579", "3", "217", "4", "(250) 466-5846");
INSERT INTO `wp_gf_entry_meta` VALUES("1580", "3", "217", "7", "06/04/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1581", "3", "217", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("1584", "10", "218", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("1585", "10", "218", "10", "04/09/99");
INSERT INTO `wp_gf_entry_meta` VALUES("1586", "10", "218", "4", "gloworm.delene@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1587", "10", "218", "2", "Miriam Rashleigh");
INSERT INTO `wp_gf_entry_meta` VALUES("1588", "10", "218", "3.1", "20 Newcastle Court");
INSERT INTO `wp_gf_entry_meta` VALUES("1589", "10", "218", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1590", "10", "218", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("1591", "10", "218", "3.5", "V9B 6V5");
INSERT INTO `wp_gf_entry_meta` VALUES("1592", "10", "218", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1593", "10", "218", "5", "petemiriam@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1594", "10", "218", "6", "(778) 265-5113");
INSERT INTO `wp_gf_entry_meta` VALUES("1595", "10", "218", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("1597", "10", "218", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1598", "10", "218", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("1599", "10", "218", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("1600", "10", "218", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1601", "10", "218", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("1602", "10", "218", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1603", "10", "218", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("1604", "3", "219", "1.3", "Marnie");
INSERT INTO `wp_gf_entry_meta` VALUES("1605", "3", "219", "1.6", "Bradfield");
INSERT INTO `wp_gf_entry_meta` VALUES("1606", "3", "219", "2", "Mbradfield@pacificcoast.net");
INSERT INTO `wp_gf_entry_meta` VALUES("1607", "3", "219", "3.1", "3400 Woodburn avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("1608", "3", "219", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1609", "3", "219", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1610", "3", "219", "3.5", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1611", "3", "219", "4", "(250) 598-1380");
INSERT INTO `wp_gf_entry_meta` VALUES("1612", "3", "219", "7", "Aprol 14th - May 19th, 2016.");
INSERT INTO `wp_gf_entry_meta` VALUES("1613", "3", "219", "5", "The Twillight Journey: Grief and Loss and the very Elderly");
INSERT INTO `wp_gf_entry_meta` VALUES("1616", "10", "220", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("1617", "10", "220", "10", "08/04/2002");
INSERT INTO `wp_gf_entry_meta` VALUES("1618", "10", "220", "4", "Amelie.beauvais@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1619", "10", "220", "7", "(250) 514-1079");
INSERT INTO `wp_gf_entry_meta` VALUES("1620", "10", "220", "2", "Eileen Beauvais");
INSERT INTO `wp_gf_entry_meta` VALUES("1621", "10", "220", "3.1", "1318 Treebank Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("1622", "10", "220", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1623", "10", "220", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1624", "10", "220", "3.5", "V9A 7G1");
INSERT INTO `wp_gf_entry_meta` VALUES("1625", "10", "220", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1626", "10", "220", "5", "EileenBeauvais@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1627", "10", "220", "6", "(250) 514-1079");
INSERT INTO `wp_gf_entry_meta` VALUES("1628", "10", "220", "8", "Email");
INSERT INTO `wp_gf_entry_meta` VALUES("1630", "10", "220", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1631", "10", "220", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("1632", "10", "220", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1633", "10", "220", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1634", "10", "220", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("1636", "10", "221", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("1637", "10", "221", "10", "29/03/1998");
INSERT INTO `wp_gf_entry_meta` VALUES("1638", "10", "221", "4", "tristonic98@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1639", "10", "221", "7", "(250) 217-2505");
INSERT INTO `wp_gf_entry_meta` VALUES("1640", "10", "221", "2", "Trevor Howard");
INSERT INTO `wp_gf_entry_meta` VALUES("1641", "10", "221", "3.1", "3880B Cedar Hill Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("1642", "10", "221", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1643", "10", "221", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1644", "10", "221", "3.5", "V8P3Z6");
INSERT INTO `wp_gf_entry_meta` VALUES("1645", "10", "221", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1646", "10", "221", "5", "midgardserpent@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1647", "10", "221", "6", "(778) 977-6066");
INSERT INTO `wp_gf_entry_meta` VALUES("1648", "10", "221", "8", "Text if at all possible please. Otherwise by phone.");
INSERT INTO `wp_gf_entry_meta` VALUES("1650", "10", "221", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("1651", "10", "221", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("1652", "10", "221", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("1653", "10", "221", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1654", "10", "221", "17", "Zoloft- 150 mg\r\nSeroquel- 75 mg to sleep at night, 12.5 mg as required through the day to alleviate anxiety spikes\r\n\r\n\r\nMichael Kinch from IMCRT strongly recommended we sign Tristan up for this program.");
INSERT INTO `wp_gf_entry_meta` VALUES("1656", "10", "222", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("1657", "10", "222", "10", "03/12/2001");
INSERT INTO `wp_gf_entry_meta` VALUES("1658", "10", "222", "4", "leviholland89@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1659", "10", "222", "7", "(778) 533-4602");
INSERT INTO `wp_gf_entry_meta` VALUES("1660", "10", "222", "2", "Jolette Holland");
INSERT INTO `wp_gf_entry_meta` VALUES("1661", "10", "222", "3.1", "4630 Falaise Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("1662", "10", "222", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1663", "10", "222", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1664", "10", "222", "3.5", "V8Y 1B3");
INSERT INTO `wp_gf_entry_meta` VALUES("1665", "10", "222", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1666", "10", "222", "5", "jolette.holland@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1667", "10", "222", "6", "(778) 676-0446");
INSERT INTO `wp_gf_entry_meta` VALUES("1668", "10", "222", "8", "phone (number above - cell)");
INSERT INTO `wp_gf_entry_meta` VALUES("1670", "10", "222", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1671", "10", "222", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("1672", "10", "222", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1673", "10", "222", "17", "Concerta - 54 mg");
INSERT INTO `wp_gf_entry_meta` VALUES("1674", "1", "223", "1.3", "Peter");
INSERT INTO `wp_gf_entry_meta` VALUES("1675", "1", "223", "1.6", "Graham");
INSERT INTO `wp_gf_entry_meta` VALUES("1676", "1", "223", "2", "LMcKenzie@luthercourt.org");
INSERT INTO `wp_gf_entry_meta` VALUES("1677", "1", "223", "5", "(250) 388-0919");
INSERT INTO `wp_gf_entry_meta` VALUES("1678", "1", "223", "3", "Hello,\r\n\r\nMy name is Josee Frigon and I am social work student at Luther Court Society. I am seeking counseling services on behalf of a client I have been working with, Peter Graham. Peter moved in to Luther Court four months ago and is having a hard time with the transition. Peter also has a history of depression and anxiety and has said that he really benefitted from counseling in the past. He is on the minimum allowed income from the government and 80 percent of his income comes to Luther Court for the cost of his care so he would require subsidized. Peter also has mobility issues and does not get out so easily. We were hoping that someone would be able to come over to Luther Court and meet him here if that is at all possible. \r\n\r\n The phone number I have provided goes straight to Peter\'s room so if you have any further questions or need to complete the intake process he can be reached there. I am done at LC this Friday and if you have any questions the email I provided goes to Lori McKenzie who is the registered social worker here. \r\n\r\nThank you so much. Peter is looking forward to hearing from you!\r\nJosee");
INSERT INTO `wp_gf_entry_meta` VALUES("1679", "3", "224", "1.3", "Shannon");
INSERT INTO `wp_gf_entry_meta` VALUES("1680", "3", "224", "1.6", "McRae");
INSERT INTO `wp_gf_entry_meta` VALUES("1681", "3", "224", "2", "shannon.mcrae@sd68.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1682", "3", "224", "3.1", "3431 Hammond Bay road");
INSERT INTO `wp_gf_entry_meta` VALUES("1683", "3", "224", "3.3", "Nanaimo");
INSERT INTO `wp_gf_entry_meta` VALUES("1684", "3", "224", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1685", "3", "224", "3.5", "v9s 1e7");
INSERT INTO `wp_gf_entry_meta` VALUES("1686", "3", "224", "4", "(250) 760-0833");
INSERT INTO `wp_gf_entry_meta` VALUES("1687", "3", "224", "7", "May 28th");
INSERT INTO `wp_gf_entry_meta` VALUES("1688", "3", "224", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_gf_entry_meta` VALUES("1690", "3", "225", "1.3", "Amanda");
INSERT INTO `wp_gf_entry_meta` VALUES("1691", "3", "225", "1.6", "Gillis");
INSERT INTO `wp_gf_entry_meta` VALUES("1692", "3", "225", "2", "agillis@sd61.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1693", "3", "225", "3.1", "4042 Magdelin Street");
INSERT INTO `wp_gf_entry_meta` VALUES("1694", "3", "225", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1695", "3", "225", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1696", "3", "225", "3.5", "V8N 3M8");
INSERT INTO `wp_gf_entry_meta` VALUES("1697", "3", "225", "4", "(250) 885-6478");
INSERT INTO `wp_gf_entry_meta` VALUES("1698", "3", "225", "7", "May 28/16");
INSERT INTO `wp_gf_entry_meta` VALUES("1699", "3", "225", "5", "Self-Injuring Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("1702", "10", "226", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("1703", "10", "226", "10", "26/02/2001");
INSERT INTO `wp_gf_entry_meta` VALUES("1704", "10", "226", "4", "Cheesycow58@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1705", "10", "226", "2", "Anne Pickup");
INSERT INTO `wp_gf_entry_meta` VALUES("1706", "10", "226", "3.1", "Apt. 106-3936 Gordon Head Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1707", "10", "226", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1708", "10", "226", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1709", "10", "226", "3.5", "V8p4x3");
INSERT INTO `wp_gf_entry_meta` VALUES("1710", "10", "226", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1711", "10", "226", "5", "Sectmely49@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1712", "10", "226", "6", "(250) 590-1906");
INSERT INTO `wp_gf_entry_meta` VALUES("1713", "10", "226", "8", "E-mail");
INSERT INTO `wp_gf_entry_meta` VALUES("1715", "10", "226", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1716", "10", "226", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("1717", "10", "226", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("1718", "10", "226", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1719", "10", "226", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("1720", "10", "226", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1721", "10", "226", "17", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("1722", "3", "227", "1.3", "Stephanie");
INSERT INTO `wp_gf_entry_meta` VALUES("1723", "3", "227", "1.6", "Slater");
INSERT INTO `wp_gf_entry_meta` VALUES("1724", "3", "227", "2", "simpson9@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1725", "3", "227", "3.1", "213-1013 Vancouver St.");
INSERT INTO `wp_gf_entry_meta` VALUES("1726", "3", "227", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1727", "3", "227", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1728", "3", "227", "3.5", "V8V3V9");
INSERT INTO `wp_gf_entry_meta` VALUES("1729", "3", "227", "4", "(250) 891-3917");
INSERT INTO `wp_gf_entry_meta` VALUES("1730", "3", "227", "7", "May 28, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1731", "3", "227", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_gf_entry_meta` VALUES("1734", "10", "228", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("1735", "10", "228", "10", "12/06/2001");
INSERT INTO `wp_gf_entry_meta` VALUES("1736", "10", "228", "4", "bonnie.alexander@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1737", "10", "228", "7", "(250) 592-8468");
INSERT INTO `wp_gf_entry_meta` VALUES("1738", "10", "228", "2", "Bonnie Alexander");
INSERT INTO `wp_gf_entry_meta` VALUES("1739", "10", "228", "3.1", "1227 Lockley rd");
INSERT INTO `wp_gf_entry_meta` VALUES("1740", "10", "228", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1741", "10", "228", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1742", "10", "228", "3.5", "V9A 4S9");
INSERT INTO `wp_gf_entry_meta` VALUES("1743", "10", "228", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1744", "10", "228", "5", "bonnie.alexander@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1745", "10", "228", "6", "(250) 858-1462");
INSERT INTO `wp_gf_entry_meta` VALUES("1746", "10", "228", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("1748", "10", "228", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1749", "10", "228", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("1750", "10", "228", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("1751", "10", "228", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1752", "10", "228", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("1754", "3", "229", "1.3", "Claudia");
INSERT INTO `wp_gf_entry_meta` VALUES("1755", "3", "229", "1.6", "Dorrington");
INSERT INTO `wp_gf_entry_meta` VALUES("1756", "3", "229", "2", "revchas@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1757", "3", "229", "3.1", "70-7570 Tetayut Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1758", "3", "229", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("1759", "3", "229", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1760", "3", "229", "3.5", "V8M 2H4");
INSERT INTO `wp_gf_entry_meta` VALUES("1761", "3", "229", "4", "(250) 652-8850");
INSERT INTO `wp_gf_entry_meta` VALUES("1762", "3", "229", "7", "April 14, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1763", "3", "229", "5", "The Twilight Journey");
INSERT INTO `wp_gf_entry_meta` VALUES("1766", "10", "230", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("1767", "10", "230", "10", "08/07/2000");
INSERT INTO `wp_gf_entry_meta` VALUES("1768", "10", "230", "4", "brynnharlow@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1769", "10", "230", "7", "(250) 857-8243");
INSERT INTO `wp_gf_entry_meta` VALUES("1770", "10", "230", "2", "Davana & Mike Harlow");
INSERT INTO `wp_gf_entry_meta` VALUES("1771", "10", "230", "3.1", "1627 Wilmot Place");
INSERT INTO `wp_gf_entry_meta` VALUES("1772", "10", "230", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1773", "10", "230", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1774", "10", "230", "3.5", "V8R 5S3");
INSERT INTO `wp_gf_entry_meta` VALUES("1775", "10", "230", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1776", "10", "230", "5", "davonaharlow@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1777", "10", "230", "6", "(250) 857-8644");
INSERT INTO `wp_gf_entry_meta` VALUES("1778", "10", "230", "8", "Email or cell.");
INSERT INTO `wp_gf_entry_meta` VALUES("1780", "10", "230", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1781", "10", "230", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("1782", "10", "230", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("1783", "10", "230", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1784", "10", "230", "17", "Not at this time, but most likely will be prescribed on Friday when we see Dr. Lauderdale. Brynn has been diagnosed with depression.\r\n-Davona");
INSERT INTO `wp_gf_entry_meta` VALUES("1785", "3", "231", "1.3", "Cori");
INSERT INTO `wp_gf_entry_meta` VALUES("1786", "3", "231", "1.6", "Luchuck");
INSERT INTO `wp_gf_entry_meta` VALUES("1787", "3", "231", "2", "Toosassy99@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1788", "3", "231", "3.1", "4054 knibbs green");
INSERT INTO `wp_gf_entry_meta` VALUES("1789", "3", "231", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1790", "3", "231", "3.4", "Bc");
INSERT INTO `wp_gf_entry_meta` VALUES("1791", "3", "231", "3.5", "V8z 6y7");
INSERT INTO `wp_gf_entry_meta` VALUES("1792", "3", "231", "4", "(778) 977-2674");
INSERT INTO `wp_gf_entry_meta` VALUES("1793", "3", "231", "7", "05/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1794", "3", "231", "5", "Self injuring youth: understanding and responding");
INSERT INTO `wp_gf_entry_meta` VALUES("1797", "10", "232", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("1798", "10", "232", "10", "07/12/1999");
INSERT INTO `wp_gf_entry_meta` VALUES("1799", "10", "232", "4", "chasejgbarker@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1800", "10", "232", "7", "(250) 888-2108");
INSERT INTO `wp_gf_entry_meta` VALUES("1801", "10", "232", "2", "Olga Denissova");
INSERT INTO `wp_gf_entry_meta` VALUES("1802", "10", "232", "3.1", "2946 Richmond Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1803", "10", "232", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1804", "10", "232", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1805", "10", "232", "3.5", "V8R4V1");
INSERT INTO `wp_gf_entry_meta` VALUES("1806", "10", "232", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1807", "10", "232", "5", "odenissova10@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1808", "10", "232", "6", "(250) 389-1771");
INSERT INTO `wp_gf_entry_meta` VALUES("1809", "10", "232", "8", "Please, contact Olga first by phone or e-mail");
INSERT INTO `wp_gf_entry_meta` VALUES("1811", "10", "232", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("1812", "10", "232", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("1813", "10", "232", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("1814", "10", "232", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("1815", "1", "233", "1.3", "Travis");
INSERT INTO `wp_gf_entry_meta` VALUES("1816", "1", "233", "1.6", "Brundage");
INSERT INTO `wp_gf_entry_meta` VALUES("1817", "1", "233", "2", "travislbrundage@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1818", "1", "233", "5", "(778) 678-3511");
INSERT INTO `wp_gf_entry_meta` VALUES("1819", "1", "233", "3", "Greetings,\r\n\r\nI\'m writing to you today to ask about your counselling services. My boyfriend and I are having difficulties with our open relationship, and I was wondering if you had the expertise in such a situation to aid us working such a relationship style out. If not, if you know of any service in the area that might have experience or be able to provide counselling for this situation, I would greatly appreciate any recommendations you could give us.\r\n\r\nRegards,\r\nTravis");
INSERT INTO `wp_gf_entry_meta` VALUES("1820", "3", "234", "1.3", "TAZAR");
INSERT INTO `wp_gf_entry_meta` VALUES("1821", "3", "234", "1.6", "GREWAL");
INSERT INTO `wp_gf_entry_meta` VALUES("1822", "3", "234", "2", "G-PGREWAL@SHAW.CA");
INSERT INTO `wp_gf_entry_meta` VALUES("1823", "3", "234", "3.1", "2519 FIELDING PL");
INSERT INTO `wp_gf_entry_meta` VALUES("1824", "3", "234", "3.3", "VICTORIA");
INSERT INTO `wp_gf_entry_meta` VALUES("1825", "3", "234", "3.4", "British Columbia (BC)");
INSERT INTO `wp_gf_entry_meta` VALUES("1826", "3", "234", "3.5", "V8Z 7Z8");
INSERT INTO `wp_gf_entry_meta` VALUES("1827", "3", "234", "4", "(250) 544-0219");
INSERT INTO `wp_gf_entry_meta` VALUES("1828", "3", "234", "7", "APRIL 16, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1829", "3", "234", "5", "TEEN ANXIETY SUPPORT GROUP");
INSERT INTO `wp_gf_entry_meta` VALUES("1831", "3", "235", "1.3", "Elana");
INSERT INTO `wp_gf_entry_meta` VALUES("1832", "3", "235", "1.6", "Angus");
INSERT INTO `wp_gf_entry_meta` VALUES("1833", "3", "235", "2", "her.email@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1834", "3", "235", "3.1", "66-420 Sitkum Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("1835", "3", "235", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1836", "3", "235", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1837", "3", "235", "3.5", "V9A 7G6");
INSERT INTO `wp_gf_entry_meta` VALUES("1838", "3", "235", "4", "(250) 419-2366");
INSERT INTO `wp_gf_entry_meta` VALUES("1839", "3", "235", "7", "05/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1840", "3", "235", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_gf_entry_meta` VALUES("1842", "1", "236", "1.3", "Ron");
INSERT INTO `wp_gf_entry_meta` VALUES("1843", "1", "236", "1.6", "Canning");
INSERT INTO `wp_gf_entry_meta` VALUES("1844", "1", "236", "2", "canning.ron@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1845", "1", "236", "5", "(250) 857-3909");
INSERT INTO `wp_gf_entry_meta` VALUES("1846", "1", "236", "3", "Hello,\r\n\r\nI would like to set up an initial appointment with the Counselling Supervisor and discuss the sliding scale fee.\r\n\r\nI work Tuesday to Saturday 9-5:30, so I\'m not available during those times.\r\n\r\nThank you, \r\nRon");
INSERT INTO `wp_gf_entry_meta` VALUES("1847", "1", "237", "1.3", "Allison");
INSERT INTO `wp_gf_entry_meta` VALUES("1848", "1", "237", "1.6", "Peters");
INSERT INTO `wp_gf_entry_meta` VALUES("1849", "1", "237", "2", "allicoll@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1850", "1", "237", "5", "(250) 480-9513");
INSERT INTO `wp_gf_entry_meta` VALUES("1851", "1", "237", "3", "Looking for an appointment, loss of my father unexpectedly and some trauma.  I was referred to your centre from Maryanne Tinney.");
INSERT INTO `wp_gf_entry_meta` VALUES("1852", "3", "238", "1.3", "Katarina");
INSERT INTO `wp_gf_entry_meta` VALUES("1853", "3", "238", "1.6", "Mauro");
INSERT INTO `wp_gf_entry_meta` VALUES("1854", "3", "238", "2", "katarinamauro86@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1855", "3", "238", "3.1", "208-157 Gorge Road East");
INSERT INTO `wp_gf_entry_meta` VALUES("1856", "3", "238", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1857", "3", "238", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1858", "3", "238", "3.5", "V9A 6Y2");
INSERT INTO `wp_gf_entry_meta` VALUES("1859", "3", "238", "4", "(250) 588-6533");
INSERT INTO `wp_gf_entry_meta` VALUES("1860", "3", "238", "7", "05/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1861", "3", "238", "5", "Self-Injuring Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("1863", "3", "239", "1.3", "Danika");
INSERT INTO `wp_gf_entry_meta` VALUES("1864", "3", "239", "1.6", "Bisjak");
INSERT INTO `wp_gf_entry_meta` VALUES("1865", "3", "239", "2", "danbisja@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1866", "3", "239", "3.1", "1160 Reynolds Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1867", "3", "239", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1868", "3", "239", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("1869", "3", "239", "3.5", "V8P 2K6");
INSERT INTO `wp_gf_entry_meta` VALUES("1870", "3", "239", "4", "(250) 514-4644");
INSERT INTO `wp_gf_entry_meta` VALUES("1871", "3", "239", "7", "05/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1872", "3", "239", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_gf_entry_meta` VALUES("1874", "3", "240", "1.3", "Katarina");
INSERT INTO `wp_gf_entry_meta` VALUES("1875", "3", "240", "1.6", "Mauro");
INSERT INTO `wp_gf_entry_meta` VALUES("1876", "3", "240", "2", "katarinamauro86@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1877", "3", "240", "3.1", "208-157 Gorge Rd East");
INSERT INTO `wp_gf_entry_meta` VALUES("1878", "3", "240", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1879", "3", "240", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1880", "3", "240", "3.5", "V9A 6Y2");
INSERT INTO `wp_gf_entry_meta` VALUES("1881", "3", "240", "4", "(250) 588-6533");
INSERT INTO `wp_gf_entry_meta` VALUES("1882", "3", "240", "7", "05/28/16");
INSERT INTO `wp_gf_entry_meta` VALUES("1883", "3", "240", "5", "Self-Injuring Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("1885", "1", "241", "1.3", "Caroline");
INSERT INTO `wp_gf_entry_meta` VALUES("1886", "1", "241", "1.6", "Dickson");
INSERT INTO `wp_gf_entry_meta` VALUES("1887", "1", "241", "2", "Carolinedickson@live.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1888", "1", "241", "5", "(403) 991-4009");
INSERT INTO `wp_gf_entry_meta` VALUES("1889", "1", "241", "3", "Caroline asked me (her mom Judy) to contact you about counselling. She has been diagnosed with bipolar 2 after a misdiagnosis of bipolar 1. Her Meds were changed about 8 weeks ago. She is depressed and very anxious. She has been unemployed for over one year and is applying for jobs which is building her anxiety. She moved to Victoria with her boyfriend and dog in June last year so she was closer to us (we are 2 1/2 hours away).  Their savings are running out and she knows she needs help to move forward. \r\n\r\nIf Caroline doesn\'t answer her phone, please leave a message. She will return your call. \r\n\r\nThank you!");
INSERT INTO `wp_gf_entry_meta` VALUES("1890", "3", "242", "1.3", "Sue");
INSERT INTO `wp_gf_entry_meta` VALUES("1891", "3", "242", "1.6", "Lane");
INSERT INTO `wp_gf_entry_meta` VALUES("1892", "3", "242", "2", "Suzanne.Lane@gov.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1893", "3", "242", "3.1", "669 Charmar Cr");
INSERT INTO `wp_gf_entry_meta` VALUES("1894", "3", "242", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1895", "3", "242", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1896", "3", "242", "3.5", "V9B 5W2");
INSERT INTO `wp_gf_entry_meta` VALUES("1897", "3", "242", "4", "(250) 415-9724");
INSERT INTO `wp_gf_entry_meta` VALUES("1898", "3", "242", "7", "05/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1899", "3", "242", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_gf_entry_meta` VALUES("1901", "1", "243", "1.3", "Brenda");
INSERT INTO `wp_gf_entry_meta` VALUES("1902", "1", "243", "1.6", "McCreight");
INSERT INTO `wp_gf_entry_meta` VALUES("1903", "1", "243", "2", "brenda@lifespanmediation.org");
INSERT INTO `wp_gf_entry_meta` VALUES("1904", "1", "243", "5", "(778) 678-4138");
INSERT INTO `wp_gf_entry_meta` VALUES("1905", "1", "243", "3", "Hello Bill - I haven\'t heard back from you regarding the interview so I assume that I was not the successful candidate. I\'m sure you had many highly qualified professionals from which to choose and I am pleased that I had the opportunity to be considered. Moving forward, I hope that the Pastoral Counselling course will be offered in the near future as I am very interested in taking that to add to both my counselling and mediation practices. I am intending to expand my mediation practice to work with clergy and congregations who are experiencing discord and I would appreciate it if you would keep my in mind for a referral should you hear of any need for this service. It was a pleasure to meet with you all and I hope our paths cross again.");
INSERT INTO `wp_gf_entry_meta` VALUES("1906", "3", "244", "1.3", "Melanie");
INSERT INTO `wp_gf_entry_meta` VALUES("1907", "3", "244", "1.6", "Winter");
INSERT INTO `wp_gf_entry_meta` VALUES("1908", "3", "244", "2", "mwinter@need2.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1909", "3", "244", "3.1", "1524 Fort Street");
INSERT INTO `wp_gf_entry_meta` VALUES("1910", "3", "244", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1911", "3", "244", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1912", "3", "244", "3.5", "V8V");
INSERT INTO `wp_gf_entry_meta` VALUES("1913", "3", "244", "4", "(778) 679-8358");
INSERT INTO `wp_gf_entry_meta` VALUES("1914", "3", "244", "7", "05/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1915", "3", "244", "5", "Self-injuring Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("1917", "1", "245", "1.3", "Miriam");
INSERT INTO `wp_gf_entry_meta` VALUES("1918", "1", "245", "1.6", "Enkel");
INSERT INTO `wp_gf_entry_meta` VALUES("1919", "1", "245", "2", "miriamenkel@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1920", "1", "245", "5", "(250) 634-4024");
INSERT INTO `wp_gf_entry_meta` VALUES("1921", "1", "245", "3", "South Island Centre, \r\nHi I would like to inquire about counselling for anxiety and depression. I am 19 year old, female and currently taking online courses and will be starting UVIC in the fall. Currently, I work part-time but make less than $100 per week. I am really interested in doing one on one counselling with a session once a week. \r\nDo you have any recommendations of where I could go for counselling or any free counselling options?\r\nThank you so much for your time, \r\nMiriam");
INSERT INTO `wp_gf_entry_meta` VALUES("1922", "12", "246", "1.3", "Peter");
INSERT INTO `wp_gf_entry_meta` VALUES("1923", "12", "246", "1.6", "Rashleigh");
INSERT INTO `wp_gf_entry_meta` VALUES("1924", "12", "246", "2.1", "20 Newcastle Court");
INSERT INTO `wp_gf_entry_meta` VALUES("1925", "12", "246", "2.5", "Victoria  BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1926", "12", "246", "2.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("1927", "12", "246", "3", "prashleigh@baptisthousing.org");
INSERT INTO `wp_gf_entry_meta` VALUES("1928", "12", "246", "4", "(250) 818-3222");
INSERT INTO `wp_gf_entry_meta` VALUES("1929", "12", "246", "5", "The Twilight Journey- Grief, Loss and the Very Elderly");
INSERT INTO `wp_gf_entry_meta` VALUES("1930", "3", "247", "1.3", "Son");
INSERT INTO `wp_gf_entry_meta` VALUES("1931", "3", "247", "1.6", "Steadman");
INSERT INTO `wp_gf_entry_meta` VALUES("1932", "3", "247", "2", "simonovvitimii@bk.ru");
INSERT INTO `wp_gf_entry_meta` VALUES("1933", "3", "247", "3.1", "3292 Keyser Ridge Road");
INSERT INTO `wp_gf_entry_meta` VALUES("1934", "3", "247", "3.3", "Greensboro");
INSERT INTO `wp_gf_entry_meta` VALUES("1935", "3", "247", "3.4", "NC");
INSERT INTO `wp_gf_entry_meta` VALUES("1936", "3", "247", "3.5", "27406");
INSERT INTO `wp_gf_entry_meta` VALUES("1937", "3", "247", "4", "(336) 462-2338");
INSERT INTO `wp_gf_entry_meta` VALUES("1938", "3", "247", "7", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("1939", "3", "247", "5", "Promote Your Conjunto de pÃ¡ginas da Internet conjunto de pÃ¡ginas da Internet");
INSERT INTO `wp_gf_entry_meta` VALUES("1943", "3", "248", "1.3", "Maria");
INSERT INTO `wp_gf_entry_meta` VALUES("1944", "3", "248", "1.6", "Butler");
INSERT INTO `wp_gf_entry_meta` VALUES("1945", "3", "248", "2", "mbutler2002@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1946", "3", "248", "3.1", "1585 Bonita Place");
INSERT INTO `wp_gf_entry_meta` VALUES("1947", "3", "248", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1948", "3", "248", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1949", "3", "248", "3.5", "V8N 2W1");
INSERT INTO `wp_gf_entry_meta` VALUES("1950", "3", "248", "4", "(250) 475-1920");
INSERT INTO `wp_gf_entry_meta` VALUES("1951", "3", "248", "7", "05/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("1952", "3", "248", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_gf_entry_meta` VALUES("1954", "1", "249", "1.3", "Denise");
INSERT INTO `wp_gf_entry_meta` VALUES("1955", "1", "249", "1.6", "Brown");
INSERT INTO `wp_gf_entry_meta` VALUES("1956", "1", "249", "2", "deniseannebrown@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1957", "1", "249", "5", "(250) 589-5596");
INSERT INTO `wp_gf_entry_meta` VALUES("1958", "1", "249", "3", "Hello,\r\n\r\nI would like to see about couples counselling, please. My fiance and I are getting married June 25th and I\'d like to meet with a counsellor beforehand. \r\n\r\nPlease let me know.\r\n\r\nThanks,\r\nDenise");
INSERT INTO `wp_gf_entry_meta` VALUES("1959", "1", "250", "1.3", "Denise");
INSERT INTO `wp_gf_entry_meta` VALUES("1960", "1", "250", "1.6", "Brown");
INSERT INTO `wp_gf_entry_meta` VALUES("1961", "1", "250", "2", "deniseannebrown@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1962", "1", "250", "5", "(250) 589-5596");
INSERT INTO `wp_gf_entry_meta` VALUES("1963", "1", "250", "3", "Hello,\r\n\r\nI would like to see about couples counselling, please. My fiance and I are getting married June 25th and I\'d like to meet with a counsellor beforehand. \r\n\r\nPlease let me know.\r\n\r\nThanks,\r\nDenise");
INSERT INTO `wp_gf_entry_meta` VALUES("1964", "1", "251", "1.3", "Heather");
INSERT INTO `wp_gf_entry_meta` VALUES("1965", "1", "251", "1.6", "Furneaux");
INSERT INTO `wp_gf_entry_meta` VALUES("1966", "1", "251", "2", "heather@cloveandanchor.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1967", "1", "251", "5", "(250) 891-4851");
INSERT INTO `wp_gf_entry_meta` VALUES("1968", "1", "251", "3", "Hello,\r\n\r\nI would like some counseling sessions. Am I able to do a phone in take?\r\n\r\nThank you,\r\n\r\nHeather");
INSERT INTO `wp_gf_entry_meta` VALUES("1969", "1", "252", "1.3", "Amy");
INSERT INTO `wp_gf_entry_meta` VALUES("1970", "1", "252", "1.6", "Culliford");
INSERT INTO `wp_gf_entry_meta` VALUES("1971", "1", "252", "2", "amyculliford@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1972", "1", "252", "5", "(250) 857-9283");
INSERT INTO `wp_gf_entry_meta` VALUES("1973", "1", "252", "3", "Hi there,\r\n\r\nMy name is Amy Culliford and I\'ve been looking to get individual counselling now for a few months. It\'s been quite the extensive search for me to find a counsellor - I make around $13,000 a year, recently graduated from University, still receiving financial help from family, so price for services has hindered me quite a bit from seeking help. I think it\'s time I pool my resources together and pay however much I can to receive some guidance. \r\n\r\nAbout 5 years ago when I was 19 years old I had a major falling out with my mother and step-father. Since then we have communicated on and off - now once again I haven\'t spoken to them for at least a year. I\'m not interested in re-introducing them back into my life just yet, but I would like to start building the skills and tools to help me cope with the loss of their relationships in my life, and how to cope with the possibility of communicating with them again in the future. My long term boyfriend is planning to propose, and I\'m having some difficulties with the idea (due to my mother, possibly) and would like some guidance. I find myself anxious and stressed when I think or talk about anything to do with my mother. \r\n\r\nI think this conflict is emerging in other areas of my life, so hopefully I can receive some help to sort this all out. Thanks and I look forward to hearing from you.");
INSERT INTO `wp_gf_entry_meta` VALUES("1974", "3", "253", "1.3", "Maggie");
INSERT INTO `wp_gf_entry_meta` VALUES("1975", "3", "253", "1.6", "Reidy");
INSERT INTO `wp_gf_entry_meta` VALUES("1976", "3", "253", "2", "lighthousemaggie@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1977", "3", "253", "3.1", "2313 Evelyn Heights");
INSERT INTO `wp_gf_entry_meta` VALUES("1978", "3", "253", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("1979", "3", "253", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("1980", "3", "253", "3.5", "V9B 6C7");
INSERT INTO `wp_gf_entry_meta` VALUES("1981", "3", "253", "4", "(250) 380-3504");
INSERT INTO `wp_gf_entry_meta` VALUES("1982", "3", "253", "7", "May 28/16");
INSERT INTO `wp_gf_entry_meta` VALUES("1983", "3", "253", "5", "Self Injuring Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("1985", "3", "254", "1.3", "JoAnn");
INSERT INTO `wp_gf_entry_meta` VALUES("1986", "3", "254", "1.6", "Gillespie");
INSERT INTO `wp_gf_entry_meta` VALUES("1987", "3", "254", "2", "jogillespie_1@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("1988", "3", "254", "3.1", "7998 Tiffany Place");
INSERT INTO `wp_gf_entry_meta` VALUES("1989", "3", "254", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("1990", "3", "254", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("1991", "3", "254", "3.5", "V8M 1V5");
INSERT INTO `wp_gf_entry_meta` VALUES("1992", "3", "254", "4", "(250) 652-5899");
INSERT INTO `wp_gf_entry_meta` VALUES("1993", "3", "254", "7", "05/28/16");
INSERT INTO `wp_gf_entry_meta` VALUES("1994", "3", "254", "5", "Self-Injuring Youth");
INSERT INTO `wp_gf_entry_meta` VALUES("1996", "1", "255", "1.3", "Caitlyn");
INSERT INTO `wp_gf_entry_meta` VALUES("1997", "1", "255", "1.6", "Redford");
INSERT INTO `wp_gf_entry_meta` VALUES("1998", "1", "255", "2", "Caitlynlarraine@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("1999", "1", "255", "5", "(250) 634-3261");
INSERT INTO `wp_gf_entry_meta` VALUES("2000", "1", "255", "3", "Hi there,\r\n\r\nMy husband and I have a 2.5 year old and are expecting another in September. We are having a real hard time coping with tantrums and the life transition, as well as our marriage. Initially I thought we might need a parenting course, but can you help guide us in the right direction? Not sure what will help the most. Probably anything at this point!\r\nThanks!\r\n\r\nCaitlyn");
INSERT INTO `wp_gf_entry_meta` VALUES("2001", "3", "256", "1.3", "Wendy");
INSERT INTO `wp_gf_entry_meta` VALUES("2002", "3", "256", "1.6", "Wilkins");
INSERT INTO `wp_gf_entry_meta` VALUES("2003", "3", "256", "2", "wendyberi74@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2004", "3", "256", "3.1", "2897 Parkview Dr.");
INSERT INTO `wp_gf_entry_meta` VALUES("2005", "3", "256", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2006", "3", "256", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2007", "3", "256", "3.5", "V9A2J3");
INSERT INTO `wp_gf_entry_meta` VALUES("2008", "3", "256", "4", "(250) 885-7011");
INSERT INTO `wp_gf_entry_meta` VALUES("2009", "3", "256", "7", "May/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2010", "3", "256", "5", "Self injuring youth.");
INSERT INTO `wp_gf_entry_meta` VALUES("2012", "12", "257", "1.3", "Sheila");
INSERT INTO `wp_gf_entry_meta` VALUES("2013", "12", "257", "1.6", "Needs");
INSERT INTO `wp_gf_entry_meta` VALUES("2014", "12", "257", "2.1", "6290 Soule rd");
INSERT INTO `wp_gf_entry_meta` VALUES("2015", "12", "257", "2.3", "Sooke");
INSERT INTO `wp_gf_entry_meta` VALUES("2016", "12", "257", "2.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2017", "12", "257", "2.5", "V9Z 0X5");
INSERT INTO `wp_gf_entry_meta` VALUES("2018", "12", "257", "2.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2019", "12", "257", "3", "sneeds@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2020", "12", "257", "4", "(250) 642-6939");
INSERT INTO `wp_gf_entry_meta` VALUES("2021", "12", "257", "5", "The eb and flow of life");
INSERT INTO `wp_gf_entry_meta` VALUES("2022", "1", "258", "1.3", "Kristal");
INSERT INTO `wp_gf_entry_meta` VALUES("2023", "1", "258", "1.6", "Busby");
INSERT INTO `wp_gf_entry_meta` VALUES("2024", "1", "258", "2", "kristalbusby@icloud.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2025", "1", "258", "5", "(250) 891-7241");
INSERT INTO `wp_gf_entry_meta` VALUES("2026", "1", "258", "3", "I am a fifty year old trans-woman. For the last year I have been continually harassed by an individual. The person has been evicted from my apartment building. However he still verbally assaults me in the street.\r\n\r\nI have developed a physical reaction to this person and I need counselling to find a way to not let it affect me.\r\n\r\nIs this something you can help with.\r\n\r\nMy income is $18,000.00 annually so I would be making use of the sliding scale.\r\n\r\nThank you for any info.\r\n\r\nKristal");
INSERT INTO `wp_gf_entry_meta` VALUES("2027", "1", "259", "1.3", "Lisa");
INSERT INTO `wp_gf_entry_meta` VALUES("2028", "1", "259", "1.6", "Alderson");
INSERT INTO `wp_gf_entry_meta` VALUES("2029", "1", "259", "2", "lisaalders@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2030", "1", "259", "5", "(778) 433-4138");
INSERT INTO `wp_gf_entry_meta` VALUES("2031", "1", "259", "3", "Hi, I need some counselling. I am on disability and have depression among other things. I met a fellow 12 years ago 20 years my senior and now I\'m in a caregiver position as well which is causing some of the depression. I feel very isolated and can\'t seem to figure out what to do for myself. When I go out and leave this fellow by himself I feel very guilty. Of course I know depression can make you feel guilt and I am in the middle of a new course of medication. I feel that I\'ve lost myself somewhere along the way. Nothing interests me anymore other than going for walks. And I\'m always very, very tired.  Thanks");
INSERT INTO `wp_gf_entry_meta` VALUES("2032", "1", "260", "1.3", "John");
INSERT INTO `wp_gf_entry_meta` VALUES("2033", "1", "260", "1.6", "Libson");
INSERT INTO `wp_gf_entry_meta` VALUES("2034", "1", "260", "2", "jlibson@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2035", "1", "260", "5", "(250) 721-8341");
INSERT INTO `wp_gf_entry_meta` VALUES("2036", "1", "260", "3", "Hello,\r\nA student at UVic has signed a consent to release information from Laurie Truant to a counselor at UVic for continuity of care. I would like to send the ROI over to you, but I don\'t know if I should fax it to you with the attention of the counselor if there is another way that you prefer. I would appreciate if you could get back to me.\r\nThanks,\r\n\r\nJohn");
INSERT INTO `wp_gf_entry_meta` VALUES("2037", "2", "261", "1.3", "Scott");
INSERT INTO `wp_gf_entry_meta` VALUES("2038", "2", "261", "1.6", "Guffey");
INSERT INTO `wp_gf_entry_meta` VALUES("2039", "2", "261", "2", "scottguffey@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2040", "2", "261", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("2041", "1", "262", "1.3", "Valeria");
INSERT INTO `wp_gf_entry_meta` VALUES("2042", "1", "262", "1.6", "Almeida");
INSERT INTO `wp_gf_entry_meta` VALUES("2043", "1", "262", "2", "valeria5166191@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2044", "1", "262", "5", "(250) 516-6191");
INSERT INTO `wp_gf_entry_meta` VALUES("2045", "1", "262", "3", "I am seeking for couples counselling. Concerns about anger, low self-esteem, depression and high level of anxiety.");
INSERT INTO `wp_gf_entry_meta` VALUES("2046", "1", "263", "1.3", "Daelyn");
INSERT INTO `wp_gf_entry_meta` VALUES("2047", "1", "263", "1.6", "Cahoon");
INSERT INTO `wp_gf_entry_meta` VALUES("2048", "1", "263", "2", "daelyn16@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2049", "1", "263", "5", "(250) 898-4030");
INSERT INTO `wp_gf_entry_meta` VALUES("2050", "1", "263", "3", "Hello,\r\nI am inquiring about counselling for my boyfriend, who is just out of town right now. His current income is less than 50,000 and is currently working to get into school in spring of next year. What is the approximate cost he would be looking at? As well, are the hours flexible as he works 10-7 shift most days. Thank you");
INSERT INTO `wp_gf_entry_meta` VALUES("2051", "1", "264", "1.3", "Jill");
INSERT INTO `wp_gf_entry_meta` VALUES("2052", "1", "264", "1.6", "Ciceri");
INSERT INTO `wp_gf_entry_meta` VALUES("2053", "1", "264", "2", "sandj2@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2054", "1", "264", "5", "(250) 744-1580");
INSERT INTO `wp_gf_entry_meta` VALUES("2055", "1", "264", "3", "Hello, I was wondering if you provide seniour at home counselling services. If you do not could you steer me in the right direction. My parents have recently moved into our suite and are experiencing emotional issues around the need to move here and the reasons why they needed to.  So I would guess transition counselling as well as dealing with medical issues and the emotions that arise.\r\nThanks for your time and info.\r\nJill Ciceri");
INSERT INTO `wp_gf_entry_meta` VALUES("2056", "2", "265", "1.3", "Gillian");
INSERT INTO `wp_gf_entry_meta` VALUES("2057", "2", "265", "1.6", "Hoyer");
INSERT INTO `wp_gf_entry_meta` VALUES("2058", "2", "265", "2", "gillian.hoyer@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2059", "2", "265", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("2060", "1", "266", "1.3", "Catherine");
INSERT INTO `wp_gf_entry_meta` VALUES("2061", "1", "266", "1.6", "Sindani");
INSERT INTO `wp_gf_entry_meta` VALUES("2062", "1", "266", "2", "sindani595@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2063", "1", "266", "5", "(250) 588-6074");
INSERT INTO `wp_gf_entry_meta` VALUES("2064", "1", "266", "3", "Hello, I would like to set up an appointment with a counselor to discuss issues related to my children. I am available Mondays.\r\nThank you");
INSERT INTO `wp_gf_entry_meta` VALUES("2065", "1", "267", "1.3", "Tessa");
INSERT INTO `wp_gf_entry_meta` VALUES("2066", "1", "267", "1.6", "Carlson");
INSERT INTO `wp_gf_entry_meta` VALUES("2067", "1", "267", "2", "carlson.tess@Gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2068", "1", "267", "5", "(250) 661-1742");
INSERT INTO `wp_gf_entry_meta` VALUES("2069", "1", "267", "3", "Good afternoon,\r\n\r\nMy name is Tessa Carlson and I have been suffering from depression and anxiety for many years now and I have done my fair share of counselling but I find myself in a deep hole and I am looking for help.\r\n\r\nAfter looking at your website I was interested in trying the services that you provide. I was wondering what my next steps are?\r\n\r\nThank you,\r\nTessa Carlson");
INSERT INTO `wp_gf_entry_meta` VALUES("2070", "12", "268", "1.3", "Laura");
INSERT INTO `wp_gf_entry_meta` VALUES("2071", "12", "268", "1.6", "Cochrane");
INSERT INTO `wp_gf_entry_meta` VALUES("2072", "12", "268", "2.1", "5310 Parker Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("2073", "12", "268", "2.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2074", "12", "268", "2.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2075", "12", "268", "2.5", "V8Y 2M9");
INSERT INTO `wp_gf_entry_meta` VALUES("2076", "12", "268", "2.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2077", "12", "268", "3", "lacoch@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("2078", "12", "268", "4", "(250) 727-1495");
INSERT INTO `wp_gf_entry_meta` VALUES("2079", "12", "268", "5", "Caregiver Support for Professionals");
INSERT INTO `wp_gf_entry_meta` VALUES("2080", "1", "269", "1.3", "Nicole");
INSERT INTO `wp_gf_entry_meta` VALUES("2081", "1", "269", "1.6", "Day");
INSERT INTO `wp_gf_entry_meta` VALUES("2082", "1", "269", "2", "daynicole75@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2083", "1", "269", "5", "(250) 884-7076");
INSERT INTO `wp_gf_entry_meta` VALUES("2084", "1", "269", "3", "My husband & I are wanting to start going for marriage counselling. Would like to find someone who would be willing to work out payments on a sliding scale. \r\nMonday, June 13th would work well. Any time after 2pm. If that doesn\'t work, any Monday, Wed, Fri, & Sat work. Later afternoon preferable. \r\n\r\nThank you \r\n\r\nNicole");
INSERT INTO `wp_gf_entry_meta` VALUES("2085", "2", "270", "1.3", "Cathy");
INSERT INTO `wp_gf_entry_meta` VALUES("2086", "2", "270", "1.6", "Weicker");
INSERT INTO `wp_gf_entry_meta` VALUES("2087", "2", "270", "2", "cathyweicker@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2088", "2", "270", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("2089", "1", "271", "1.3", "Kevin");
INSERT INTO `wp_gf_entry_meta` VALUES("2090", "1", "271", "1.6", "Kuypers");
INSERT INTO `wp_gf_entry_meta` VALUES("2091", "1", "271", "2", "Dakuyp@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2092", "1", "271", "5", "(250) 920-8594");
INSERT INTO `wp_gf_entry_meta` VALUES("2093", "1", "271", "3", "Hello. I would like to book an appointment to get help. This weekend I ended up n the ER PES unit, they  think I have OCD and Aspberger\'s. I spend about 3hrs a day talking to myself  out loud,I can\'t stop the thoughts and conversations in my head, I can\'t stop thinking. It interferes with my work and marriage. I forget to eat , I stop working and forget to talk to my wife.\r\nThey have started me on medication, but i need help. It takes over my life and I lose track of hours and days because I can\'t stop thinking.");
INSERT INTO `wp_gf_entry_meta` VALUES("2094", "3", "272", "1.3", "Moira");
INSERT INTO `wp_gf_entry_meta` VALUES("2095", "3", "272", "1.6", "Madamombe");
INSERT INTO `wp_gf_entry_meta` VALUES("2096", "3", "272", "2", "moiramajachani@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2097", "3", "272", "3.1", "302 S-737 Humboldt st");
INSERT INTO `wp_gf_entry_meta` VALUES("2098", "3", "272", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2099", "3", "272", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("2100", "3", "272", "3.5", "V8W 1B1");
INSERT INTO `wp_gf_entry_meta` VALUES("2101", "3", "272", "4", "(647) 955-2031");
INSERT INTO `wp_gf_entry_meta` VALUES("2102", "3", "272", "7", "4 july 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2103", "3", "272", "5", "Family systems");
INSERT INTO `wp_gf_entry_meta` VALUES("2105", "2", "273", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("2106", "2", "273", "1.6", "Cole");
INSERT INTO `wp_gf_entry_meta` VALUES("2107", "2", "273", "2", "jencole9@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2108", "2", "273", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("2109", "2", "273", "6.3", "Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("2110", "1", "274", "1.3", "Gill");
INSERT INTO `wp_gf_entry_meta` VALUES("2111", "1", "274", "1.6", "Grant");
INSERT INTO `wp_gf_entry_meta` VALUES("2112", "1", "274", "2", "gillpgrant@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2113", "1", "274", "5", "(250) 208-6425");
INSERT INTO `wp_gf_entry_meta` VALUES("2114", "1", "274", "3", "Hi there, \r\n\r\nI would like to set up an initial appointment with your Counselling Supervisor. Please let me know any additional information that is required.\r\n\r\nThanks!\r\nGill");
INSERT INTO `wp_gf_entry_meta` VALUES("2115", "1", "275", "1.3", "Allison");
INSERT INTO `wp_gf_entry_meta` VALUES("2116", "1", "275", "1.6", "Peters");
INSERT INTO `wp_gf_entry_meta` VALUES("2117", "1", "275", "2", "allicoll@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2118", "1", "275", "5", "(250) 480-9513");
INSERT INTO `wp_gf_entry_meta` VALUES("2119", "1", "275", "3", "I am so sorry for the late notice, I have a 9 am appointment with Margaret I was looking forward to but have been sick \r\nthe night and won\'t be able to be there this morning.  I would like to make another appointment and will call to do so as well as leave a message this morning.  Allison");
INSERT INTO `wp_gf_entry_meta` VALUES("2120", "2", "276", "1.3", "Toby");
INSERT INTO `wp_gf_entry_meta` VALUES("2121", "2", "276", "1.6", "Schnoor");
INSERT INTO `wp_gf_entry_meta` VALUES("2122", "2", "276", "2", "tobyschnoor@silverthreads.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2123", "2", "276", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("2124", "12", "277", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("2125", "12", "277", "1.6", "Daviau");
INSERT INTO `wp_gf_entry_meta` VALUES("2126", "12", "277", "2.1", "n/a");
INSERT INTO `wp_gf_entry_meta` VALUES("2127", "12", "277", "2.5", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2128", "12", "277", "2.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2129", "12", "277", "3", "pieceofcakecommunications@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2130", "12", "277", "4", "(250) 220-2036");
INSERT INTO `wp_gf_entry_meta` VALUES("2131", "12", "277", "5", "Ebb and flow of life");
INSERT INTO `wp_gf_entry_meta` VALUES("2132", "3", "278", "1.3", "Rebekah");
INSERT INTO `wp_gf_entry_meta` VALUES("2133", "3", "278", "1.6", "Humphrey");
INSERT INTO `wp_gf_entry_meta` VALUES("2134", "3", "278", "2", "gypsyinfinity@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2135", "3", "278", "3.1", "561 raynor Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("2136", "3", "278", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2137", "3", "278", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2138", "3", "278", "3.5", "V9a 3a9");
INSERT INTO `wp_gf_entry_meta` VALUES("2139", "3", "278", "4", "(250) 589-8871");
INSERT INTO `wp_gf_entry_meta` VALUES("2140", "3", "278", "7", "July 4th, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2141", "3", "278", "5", "Family System Intensive");
INSERT INTO `wp_gf_entry_meta` VALUES("2145", "1", "279", "1.3", "Bruce");
INSERT INTO `wp_gf_entry_meta` VALUES("2146", "1", "279", "1.6", "Bryant-Scott");
INSERT INTO `wp_gf_entry_meta` VALUES("2147", "1", "279", "2", "bbryantscott@bc.anglican.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2148", "1", "279", "5", "(250) 889-8917");
INSERT INTO `wp_gf_entry_meta` VALUES("2149", "1", "279", "3", "I am the Rector of the Anglican Parish of St. Matthias at Richmond and Richardson. Can you tell me if you have any Marriage Preparation courses planned for between now and the middle of November of 2016? Thank you!  \r\n\r\nThe Rev. Canon D. Bruce Bryant-Scott");
INSERT INTO `wp_gf_entry_meta` VALUES("2150", "12", "280", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("2151", "12", "280", "1.6", "Daviau");
INSERT INTO `wp_gf_entry_meta` VALUES("2152", "12", "280", "2.5", "V9C 3T1");
INSERT INTO `wp_gf_entry_meta` VALUES("2153", "12", "280", "2.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2154", "12", "280", "3", "pieceofcakecommunications@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2155", "12", "280", "4", "(250) 220-2036");
INSERT INTO `wp_gf_entry_meta` VALUES("2156", "12", "280", "5", "Grief and Loss");
INSERT INTO `wp_gf_entry_meta` VALUES("2157", "1", "281", "1.3", "Louise");
INSERT INTO `wp_gf_entry_meta` VALUES("2158", "1", "281", "1.6", "de Lugt");
INSERT INTO `wp_gf_entry_meta` VALUES("2159", "1", "281", "2", "ldelugt@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2160", "1", "281", "5", "(250) 382-7564");
INSERT INTO `wp_gf_entry_meta` VALUES("2161", "1", "281", "3", "Please pass this on ASAP: I want to stop seeing Amber Eves for counselling sessions effectively immediately. Thank you. Louise de Lugt\r\nP.S. Please let me know when Amber has received this information. She needs to get it before July 5.");
INSERT INTO `wp_gf_entry_meta` VALUES("2162", "1", "282", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("2163", "1", "282", "1.6", "Horgan");
INSERT INTO `wp_gf_entry_meta` VALUES("2164", "1", "282", "2", "s_horgan@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2165", "1", "282", "5", "(778) 587-7363");
INSERT INTO `wp_gf_entry_meta` VALUES("2166", "1", "282", "3", "Hi there, I\'m seeking counselling services for my anxiety and depression. I\'m new to Victoria, just moved from Courtenay in March. I had a regular doctor there that has diagnosed me with clinical depression. I have been on and off anti depressants, but aren\'t effective on their own. I\'ve seen counsellors in the past for a variety of issues, and am in need of someone to talk with again. Thanks very much");
INSERT INTO `wp_gf_entry_meta` VALUES("2167", "12", "283", "1.3", "Sandy");
INSERT INTO `wp_gf_entry_meta` VALUES("2168", "12", "283", "1.6", "Walker");
INSERT INTO `wp_gf_entry_meta` VALUES("2169", "12", "283", "3", "sandyandty@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2170", "12", "283", "4", "(250) 686-7676");
INSERT INTO `wp_gf_entry_meta` VALUES("2171", "12", "283", "5", "ebb and flow of life course");
INSERT INTO `wp_gf_entry_meta` VALUES("2172", "12", "284", "1.3", "Moira");
INSERT INTO `wp_gf_entry_meta` VALUES("2173", "12", "284", "1.6", "Madamombe");
INSERT INTO `wp_gf_entry_meta` VALUES("2174", "12", "284", "2.1", "1701 Norwood house rd");
INSERT INTO `wp_gf_entry_meta` VALUES("2175", "12", "284", "2.3", "Downingtown");
INSERT INTO `wp_gf_entry_meta` VALUES("2176", "12", "284", "2.4", "Pennsylvania");
INSERT INTO `wp_gf_entry_meta` VALUES("2177", "12", "284", "2.5", "19325");
INSERT INTO `wp_gf_entry_meta` VALUES("2178", "12", "284", "3", "moiramajachani@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2179", "12", "284", "4", "(250) 891-2618");
INSERT INTO `wp_gf_entry_meta` VALUES("2180", "12", "284", "5", "Moira Madamombe");
INSERT INTO `wp_gf_entry_meta` VALUES("2181", "1", "285", "1.3", "Angeline");
INSERT INTO `wp_gf_entry_meta` VALUES("2182", "1", "285", "1.6", "Wilde");
INSERT INTO `wp_gf_entry_meta` VALUES("2183", "1", "285", "2", "angiejwilde@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2184", "1", "285", "5", "(778) 433-2464");
INSERT INTO `wp_gf_entry_meta` VALUES("2185", "1", "285", "3", "Hi there,\r\nInquiring re: counselling services, availability and cost.\r\nWas recently released from hospital and was referred to your centre for issues related to post traumatic stress.\r\nI can be reached easiest via email, as the land-line is shared.\r\nMuch thanks!");
INSERT INTO `wp_gf_entry_meta` VALUES("2186", "1", "286", "1.3", "Christie");
INSERT INTO `wp_gf_entry_meta` VALUES("2187", "1", "286", "1.6", "Ross");
INSERT INTO `wp_gf_entry_meta` VALUES("2188", "1", "286", "2", "dance_88@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2189", "1", "286", "5", "(250) 619-2823");
INSERT INTO `wp_gf_entry_meta` VALUES("2190", "1", "286", "3", "Hi. I\'m just wanting to inquire about your counselling services and what that would look like to set something up. \r\n\r\nThank you,\r\n\r\nChristie");
INSERT INTO `wp_gf_entry_meta` VALUES("2191", "1", "287", "1.3", "Shannon");
INSERT INTO `wp_gf_entry_meta` VALUES("2192", "1", "287", "1.6", "Demontigny");
INSERT INTO `wp_gf_entry_meta` VALUES("2193", "1", "287", "2", "shannon.demontigny@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2194", "1", "287", "5", "(250) 509-1221");
INSERT INTO `wp_gf_entry_meta` VALUES("2195", "1", "287", "3", "Hello, my husband is yet to be diagnosed with depression and anxiety. He is beginning the process of seeing a doctor or antidepressants after struggling for more than 8 years. It is affecting our marriage more than ever now. I think it would best for he to see someone on his own first then eventually have couple counseling. Which counselor should he see. Please contact me so I can make an appointment, thank you so much.");
INSERT INTO `wp_gf_entry_meta` VALUES("2196", "3", "288", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("2197", "3", "288", "1.6", "Daviau");
INSERT INTO `wp_gf_entry_meta` VALUES("2198", "3", "288", "2", "pieceofcakecommunications@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2199", "3", "288", "3.1", "3542 Desmond Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("2200", "3", "288", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2201", "3", "288", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2202", "3", "288", "3.5", "V9C 3T1");
INSERT INTO `wp_gf_entry_meta` VALUES("2203", "3", "288", "4", "(250) 220-2036");
INSERT INTO `wp_gf_entry_meta` VALUES("2204", "3", "288", "7", "September/15/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2205", "3", "288", "5", "Ebb and Flow of Life");
INSERT INTO `wp_gf_entry_meta` VALUES("2207", "3", "289", "1.3", "Eliza");
INSERT INTO `wp_gf_entry_meta` VALUES("2208", "3", "289", "1.6", "Holst");
INSERT INTO `wp_gf_entry_meta` VALUES("2209", "3", "289", "2", "holsteliza@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2210", "3", "289", "3.1", "646 Galiano Crescent");
INSERT INTO `wp_gf_entry_meta` VALUES("2211", "3", "289", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2212", "3", "289", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2213", "3", "289", "3.5", "V9C 1E6");
INSERT INTO `wp_gf_entry_meta` VALUES("2214", "3", "289", "4", "(250) 478-5584");
INSERT INTO `wp_gf_entry_meta` VALUES("2215", "3", "289", "7", "September 15 (Thursday)");
INSERT INTO `wp_gf_entry_meta` VALUES("2216", "3", "289", "5", "The Ebb and Flow of Life: An Introduction to Grief and Loss");
INSERT INTO `wp_gf_entry_meta` VALUES("2218", "2", "290", "1.3", "Jamie");
INSERT INTO `wp_gf_entry_meta` VALUES("2219", "2", "290", "1.6", "Walden");
INSERT INTO `wp_gf_entry_meta` VALUES("2220", "2", "290", "2", "01jwalden@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2221", "2", "290", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_gf_entry_meta` VALUES("2222", "2", "290", "8", "North Saanich");
INSERT INTO `wp_gf_entry_meta` VALUES("2223", "1", "291", "1.3", "Cyril");
INSERT INTO `wp_gf_entry_meta` VALUES("2224", "1", "291", "1.6", "Lacko");
INSERT INTO `wp_gf_entry_meta` VALUES("2225", "1", "291", "2", "clacko099@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2226", "1", "291", "5", "(250) 508-6877");
INSERT INTO `wp_gf_entry_meta` VALUES("2227", "1", "291", "3", "I\'m on a fixed income and I\'m curious about what the costs would be.");
INSERT INTO `wp_gf_entry_meta` VALUES("2228", "1", "292", "1.3", "Catherine");
INSERT INTO `wp_gf_entry_meta` VALUES("2229", "1", "292", "1.6", "Klassen");
INSERT INTO `wp_gf_entry_meta` VALUES("2230", "1", "292", "2", "purpleplantagenet@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2231", "1", "292", "5", "(250) 479-7414");
INSERT INTO `wp_gf_entry_meta` VALUES("2232", "1", "292", "3", "Dear South Island Centre (Attn: Laurie Truant/ Counsellor):\r\n\r\nI am familiar with your volunteer counsellor driven agency in Victoria & wonder what counterpart (s) agencies/ services would be available in Montreal?\r\n\r\nMy mother Bev; deceased in 1980; was a parishioner of St. Lukes for many years & back when I went with her to church I was not aware of South Island Centre then  but have since been made aware of it.\r\n\r\nI had actually chatted with Bill Cole & others there about other issues a few years ago but am not sure if your counselling services have changed much/ would like to be brought up to date?.\r\n\r\nSince my daughter lives in Montreal your services would maybe not be practical unless you offer online or k\r\nlong distance chat/ phone services thus why I have asked for your advice/ blessing re: which counselling services(s) might be similar in Montreal?\r\n \r\nMy daughter (not a Christian but I am hoping one day) with limited funds lives there (still at present with her boyfriend of 5 years) but has begun mentioning openly to her Aunt, myself & others closer to her that things are troubled.\r\n \r\nI have just been told today that after she returned from a work related trip; which is common with her line of work; that her boyfriend has decided to move out in September.\r\n \r\nTherefore I thought instead of my reviewing web advertised agencies in Montreal without any advice; that  it would be more helpful if people at your agency could hopefullly give me any knowledge/ tips  \r\nabout the counselling scene there ie. (who fits a similar profile to yourselves/ which one/s have you heard good things about)?\r\n \r\nAlso any online resources that you might commonly refer clients to would be helpful to know as she could also access these?\r\n\r\n(My daughter is up against it as her boyfriend  \"at first blush\" has said he is not interested in working on things; so her knowing how to bring up this topic again in the least provocative/ most positive way would seem to be very important?).\r\n \r\nThankyou so much for getting back to me by internet or by letting me know a good time that I could phone & have a conversation with you?\r\n \r\nSincerely,\r\n \r\nCathy Klassen\r\npurpleplantagenet@shaw.ca \r\n(250)479-7414\r\n7/28/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2233", "3", "293", "1.3", "Babar");
INSERT INTO `wp_gf_entry_meta` VALUES("2234", "3", "293", "1.6", "Habib");
INSERT INTO `wp_gf_entry_meta` VALUES("2235", "3", "293", "2", "pastor.babarhabib@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2236", "3", "293", "3.1", "887/03 Essa Nagri Karachi-74800,Pakistan.");
INSERT INTO `wp_gf_entry_meta` VALUES("2237", "3", "293", "3.3", "Karachi");
INSERT INTO `wp_gf_entry_meta` VALUES("2238", "3", "293", "3.4", "Sindh");
INSERT INTO `wp_gf_entry_meta` VALUES("2239", "3", "293", "3.5", "74800");
INSERT INTO `wp_gf_entry_meta` VALUES("2240", "3", "293", "4", "(300) 285-1836");
INSERT INTO `wp_gf_entry_meta` VALUES("2241", "3", "293", "7", "(12 Thursdays, Oct 6, 2016 â€“ Jan. 12, 2017)");
INSERT INTO `wp_gf_entry_meta` VALUES("2242", "3", "293", "5", "Pastoral Counselling Training (12 Thursdays, Oct 6, 2016 â€“ Jan. 12, 2017)");
INSERT INTO `wp_gf_entry_meta` VALUES("2244", "1", "294", "1.3", "Susan");
INSERT INTO `wp_gf_entry_meta` VALUES("2245", "1", "294", "1.6", "Giles");
INSERT INTO `wp_gf_entry_meta` VALUES("2246", "1", "294", "2", "susan.giles@pinezone.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2247", "1", "294", "5", "(778) 977-1125");
INSERT INTO `wp_gf_entry_meta` VALUES("2248", "1", "294", "3", "I am inquiring on behalf of my son who turns 19 soon. Are any of your counsellors knowledgeable about Asperger\'s? We would like to talk to someone with SOME knowledge of the issue. I can usually be reached at 778-977-1125 on my cell during the day.\r\n\r\nThank You,\r\n\r\nSusan");
INSERT INTO `wp_gf_entry_meta` VALUES("2249", "1", "295", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("2250", "1", "295", "1.6", "Rosang");
INSERT INTO `wp_gf_entry_meta` VALUES("2251", "1", "295", "2", "jenrosang@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2252", "1", "295", "5", "(250) 544-0005");
INSERT INTO `wp_gf_entry_meta` VALUES("2253", "1", "295", "3", "Hello!\r\n\r\nI would like to enquire if any of the counsellors at South Island Centre take on practicum students?  \r\n\r\nThanks so much for your time,\r\n\r\nJen");
INSERT INTO `wp_gf_entry_meta` VALUES("2254", "1", "296", "1.3", "Alison");
INSERT INTO `wp_gf_entry_meta` VALUES("2255", "1", "296", "1.6", "Callaghan");
INSERT INTO `wp_gf_entry_meta` VALUES("2256", "1", "296", "2", "alcallaghan@hotmail.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2257", "1", "296", "5", "(778) 678-2405");
INSERT INTO `wp_gf_entry_meta` VALUES("2258", "1", "296", "3", "I\'m hoping to set up an initial consultation with an available Counselor. My focus is needed around childhood emotional abuse, BPD and destructive relationship patterns in adulthood. I am a student at UVIC looking for an affordable option. Please let me know if you have some spots available. Thank you");
INSERT INTO `wp_gf_entry_meta` VALUES("2259", "3", "297", "1.3", "Margaret");
INSERT INTO `wp_gf_entry_meta` VALUES("2260", "3", "297", "1.6", "Jacques");
INSERT INTO `wp_gf_entry_meta` VALUES("2261", "3", "297", "2", "mjacques@ssabc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2262", "3", "297", "3.1", "1550 Begbie Street");
INSERT INTO `wp_gf_entry_meta` VALUES("2263", "3", "297", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2264", "3", "297", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2265", "3", "297", "3.5", "V8R1K8");
INSERT INTO `wp_gf_entry_meta` VALUES("2266", "3", "297", "4", "(250) 589-4378");
INSERT INTO `wp_gf_entry_meta` VALUES("2267", "3", "297", "7", "August 20, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2268", "3", "297", "5", "Caring for the Caregiver");
INSERT INTO `wp_gf_entry_meta` VALUES("2270", "1", "298", "1.3", "Silas");
INSERT INTO `wp_gf_entry_meta` VALUES("2271", "1", "298", "1.6", "Rosenblatt");
INSERT INTO `wp_gf_entry_meta` VALUES("2272", "1", "298", "2", "silasmail@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2273", "1", "298", "5", "(250) 884-7061");
INSERT INTO `wp_gf_entry_meta` VALUES("2274", "1", "298", "3", "greetings\r\n\r\nI would like to set up an initial counselling appointment with Laurie Truant for counseling related to anxiety attacks and mid life change\r\n\r\nI am free most mornings\r\n\r\nthanks\r\nSilas");
INSERT INTO `wp_gf_entry_meta` VALUES("2275", "1", "299", "1.3", "Alexandra");
INSERT INTO `wp_gf_entry_meta` VALUES("2276", "1", "299", "1.6", "Shewan");
INSERT INTO `wp_gf_entry_meta` VALUES("2277", "1", "299", "2", "alexandra.shewan@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2278", "1", "299", "5", "(778) 678-8216");
INSERT INTO `wp_gf_entry_meta` VALUES("2279", "1", "299", "3", "I would like to learn more about your counselling services for anxiety. Please let me know at your earliest convenience.");
INSERT INTO `wp_gf_entry_meta` VALUES("2281", "10", "300", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2282", "10", "300", "10", "19/09/01");
INSERT INTO `wp_gf_entry_meta` VALUES("2283", "10", "300", "4", "elliot.bigsby@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2284", "10", "300", "7", "(778) 679-7434");
INSERT INTO `wp_gf_entry_meta` VALUES("2285", "10", "300", "2", "Andrea Scott");
INSERT INTO `wp_gf_entry_meta` VALUES("2286", "10", "300", "3.1", "1466 Gladstone Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("2287", "10", "300", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2288", "10", "300", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2289", "10", "300", "3.5", "V8R1S3");
INSERT INTO `wp_gf_entry_meta` VALUES("2290", "10", "300", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2291", "10", "300", "5", "andrea@islandnet.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2292", "10", "300", "6", "(250) 893-3348");
INSERT INTO `wp_gf_entry_meta` VALUES("2293", "10", "300", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("2294", "10", "300", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2295", "10", "300", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2296", "10", "300", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("2297", "10", "300", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2298", "10", "300", "17", "Sertraline 100mg");
INSERT INTO `wp_gf_entry_meta` VALUES("2299", "1", "301", "1.3", "Jamie");
INSERT INTO `wp_gf_entry_meta` VALUES("2300", "1", "301", "1.6", "Walden");
INSERT INTO `wp_gf_entry_meta` VALUES("2301", "1", "301", "2", "01jwalden@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2302", "1", "301", "5", "(250) 818-0433");
INSERT INTO `wp_gf_entry_meta` VALUES("2303", "1", "301", "3", "I would like to meet with Barbara Ballie to explore some counselling and support sessions.");
INSERT INTO `wp_gf_entry_meta` VALUES("2304", "1", "302", "1.3", "Tui");
INSERT INTO `wp_gf_entry_meta` VALUES("2305", "1", "302", "1.6", "Hartman");
INSERT INTO `wp_gf_entry_meta` VALUES("2306", "1", "302", "2", "tui.hartman@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2307", "1", "302", "5", "(289) 689-7877");
INSERT INTO `wp_gf_entry_meta` VALUES("2308", "1", "302", "3", "I currently live in Ontario, but I will be moving to BC in the winter. I would like to get therapy to deal with some issues. I think that I could be an interesting case study for someone. At any rate, I need to know how I could manage to set an appointment up with someone for when I get there. \r\n\r\nI would need a sliding scale fee. First I will be in school and looking for work. Once my financial situation is more stable I would be happy to adjust what I am paying. \r\n\r\nI have had success with cognitive behavioral therapy in the past.\r\nIssues I want to cover over time. \r\n- relationship issues (general, family and romantic) \r\n- social anxiety\r\n- emotional control\r\n- over eating \r\n-self hatred\r\n-  more\r\n\r\nI have already dealt with \r\n- sexual assault \r\n- loss (best friend suicide) \r\n- more positive outlook (cbt) \r\n- addiction\r\n- more\r\n \r\nThank you for your feedback. \r\n\r\nBest Regards, \r\nTui Hartman");
INSERT INTO `wp_gf_entry_meta` VALUES("2309", "1", "303", "1.3", "Jessica");
INSERT INTO `wp_gf_entry_meta` VALUES("2310", "1", "303", "1.6", "Pletzer");
INSERT INTO `wp_gf_entry_meta` VALUES("2311", "1", "303", "2", "Jmpletzer@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2312", "1", "303", "5", "(250) 216-4417");
INSERT INTO `wp_gf_entry_meta` VALUES("2313", "1", "303", "3", "Hi there,\r\nI\'m looking to making an appointment for my ex husband and I to attend counselling together. Our goal is to improve our relationship in order to be able to effectively co-parent our two young children.\r\nBoth of our children are in counselling with Amber Eves. Our situation is complex as I\'m sure most are. \r\nMy ex is a student and I am on disability income assistance. We have little to offer financially. We are very desperate to start counselling as soon as possible before things get worse. \r\n\r\nI am also looking for individual counselling for myself. I struggle with complex PTSD, depression, anxiety and addiction. If there is a counsellor experienced in these areas it would be perfect. \r\n\r\nThanks so much,\r\nJessica Pletzer");
INSERT INTO `wp_gf_entry_meta` VALUES("2315", "10", "304", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2316", "10", "304", "10", "11/09/1999");
INSERT INTO `wp_gf_entry_meta` VALUES("2317", "10", "304", "4", "daniakhalifa@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2318", "10", "304", "7", "(250) 477-5785");
INSERT INTO `wp_gf_entry_meta` VALUES("2319", "10", "304", "2", "Grace Khalifa");
INSERT INTO `wp_gf_entry_meta` VALUES("2320", "10", "304", "3.1", "3969 Larchwood Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("2321", "10", "304", "3.3", "Victoria.");
INSERT INTO `wp_gf_entry_meta` VALUES("2322", "10", "304", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("2323", "10", "304", "3.5", "V8N 3P4");
INSERT INTO `wp_gf_entry_meta` VALUES("2324", "10", "304", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2325", "10", "304", "5", "gracekhalifa@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2326", "10", "304", "6", "(250) 477-5785");
INSERT INTO `wp_gf_entry_meta` VALUES("2327", "10", "304", "8", "phone");
INSERT INTO `wp_gf_entry_meta` VALUES("2328", "10", "304", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("2329", "10", "304", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2330", "10", "304", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2331", "10", "304", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("2332", "10", "304", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2333", "10", "304", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("2334", "10", "304", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2335", "10", "304", "17", "sertraline 175mg\r\npropranolol 20mg");
INSERT INTO `wp_gf_entry_meta` VALUES("2337", "10", "305", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2338", "10", "305", "10", "28/03/1999");
INSERT INTO `wp_gf_entry_meta` VALUES("2339", "10", "305", "4", "bakuiscute99@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2340", "10", "305", "7", "(778) 922-4216");
INSERT INTO `wp_gf_entry_meta` VALUES("2341", "10", "305", "2", "Linda Foster");
INSERT INTO `wp_gf_entry_meta` VALUES("2342", "10", "305", "3.1", "1415 Tovido Lane");
INSERT INTO `wp_gf_entry_meta` VALUES("2343", "10", "305", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2344", "10", "305", "3.4", "bc");
INSERT INTO `wp_gf_entry_meta` VALUES("2345", "10", "305", "3.5", "V8T2S8");
INSERT INTO `wp_gf_entry_meta` VALUES("2346", "10", "305", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2347", "10", "305", "5", "lfoster@sd63.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2348", "10", "305", "6", "(250) 382-1683");
INSERT INTO `wp_gf_entry_meta` VALUES("2349", "10", "305", "8", "Email");
INSERT INTO `wp_gf_entry_meta` VALUES("2350", "10", "305", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("2351", "10", "305", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2352", "10", "305", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("2353", "10", "305", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2354", "10", "305", "17", "None");
INSERT INTO `wp_gf_entry_meta` VALUES("2355", "1", "306", "1.3", "Linda");
INSERT INTO `wp_gf_entry_meta` VALUES("2356", "1", "306", "1.6", "Morrison");
INSERT INTO `wp_gf_entry_meta` VALUES("2357", "1", "306", "2", "IslandGirl778@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2358", "1", "306", "5", "(778) 679-7900");
INSERT INTO `wp_gf_entry_meta` VALUES("2359", "1", "306", "3", "I would like to speak to someone about counseling.  I left my job on June 3rd as a result of burn-out and am wondering if it is normal to feel a lack of motivation?\r\n\r\nAlso, do you direct bill to First Nations Health Authority?");
INSERT INTO `wp_gf_entry_meta` VALUES("2361", "10", "307", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2362", "10", "307", "10", "14/06/2002");
INSERT INTO `wp_gf_entry_meta` VALUES("2363", "10", "307", "4", "Elihlefaith@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2364", "10", "307", "7", "(778) 440-6666");
INSERT INTO `wp_gf_entry_meta` VALUES("2365", "10", "307", "2", "Luanna Larusson");
INSERT INTO `wp_gf_entry_meta` VALUES("2366", "10", "307", "3.1", "#210-1020 Park Blvd");
INSERT INTO `wp_gf_entry_meta` VALUES("2367", "10", "307", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2368", "10", "307", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("2369", "10", "307", "3.5", "V8V 2T4");
INSERT INTO `wp_gf_entry_meta` VALUES("2370", "10", "307", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2371", "10", "307", "5", "mamazala@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2372", "10", "307", "6", "(778) 440-6666");
INSERT INTO `wp_gf_entry_meta` VALUES("2373", "10", "307", "8", "Email.");
INSERT INTO `wp_gf_entry_meta` VALUES("2374", "10", "307", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("2375", "10", "307", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2376", "10", "307", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2377", "10", "307", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("2378", "10", "307", "17", "No.");
INSERT INTO `wp_gf_entry_meta` VALUES("2380", "10", "308", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("2381", "10", "308", "10", "27 March 2001");
INSERT INTO `wp_gf_entry_meta` VALUES("2382", "10", "308", "4", "Sadokha.david@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2383", "10", "308", "7", "(250) 891-4207");
INSERT INTO `wp_gf_entry_meta` VALUES("2384", "10", "308", "2", "Mila");
INSERT INTO `wp_gf_entry_meta` VALUES("2385", "10", "308", "3.1", "9-0421 Saanich Road");
INSERT INTO `wp_gf_entry_meta` VALUES("2386", "10", "308", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2387", "10", "308", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("2388", "10", "308", "3.5", "V8X1Z2");
INSERT INTO `wp_gf_entry_meta` VALUES("2389", "10", "308", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2390", "10", "308", "5", "Mila.sadokha@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2391", "10", "308", "6", "(250) 891-4207");
INSERT INTO `wp_gf_entry_meta` VALUES("2392", "10", "308", "8", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2393", "10", "308", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("2394", "10", "308", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("2395", "10", "308", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2396", "10", "308", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("2397", "10", "308", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("2398", "10", "308", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2399", "10", "308", "17", "Sertralin, bifidin");
INSERT INTO `wp_gf_entry_meta` VALUES("2401", "10", "309", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2402", "10", "309", "10", "March 8th, 2002");
INSERT INTO `wp_gf_entry_meta` VALUES("2403", "10", "309", "4", "tayloratoz@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2404", "10", "309", "7", "(250) 370-0053");
INSERT INTO `wp_gf_entry_meta` VALUES("2405", "10", "309", "2", "Andrea and Jason Taylor");
INSERT INTO `wp_gf_entry_meta` VALUES("2406", "10", "309", "3.1", "435 Woodcrest Place");
INSERT INTO `wp_gf_entry_meta` VALUES("2407", "10", "309", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2408", "10", "309", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("2409", "10", "309", "3.5", "V8N 2C2");
INSERT INTO `wp_gf_entry_meta` VALUES("2410", "10", "309", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2411", "10", "309", "5", "andreatayloratoz@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2412", "10", "309", "6", "(778) 679-1313");
INSERT INTO `wp_gf_entry_meta` VALUES("2413", "10", "309", "8", "Can you call parents first using Mom\'s cell Number 778-679-1313. Thank you :)");
INSERT INTO `wp_gf_entry_meta` VALUES("2414", "10", "309", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("2415", "10", "309", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2416", "10", "309", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2417", "10", "309", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("2418", "10", "309", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("2419", "10", "309", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2420", "10", "309", "17", "Strattera 80 mg\r\nIn the process to change anxiety medication on the 14th of September");
INSERT INTO `wp_gf_entry_meta` VALUES("2421", "3", "310", "1.3", "Gabriela");
INSERT INTO `wp_gf_entry_meta` VALUES("2422", "3", "310", "1.6", "Townsend");
INSERT INTO `wp_gf_entry_meta` VALUES("2423", "3", "310", "2", "gtownsend@alzheimerbc.org");
INSERT INTO `wp_gf_entry_meta` VALUES("2424", "3", "310", "3.1", "202-306 Burnside Road W.");
INSERT INTO `wp_gf_entry_meta` VALUES("2425", "3", "310", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2426", "3", "310", "3.4", "bc");
INSERT INTO `wp_gf_entry_meta` VALUES("2427", "3", "310", "3.5", "V8Z 1M1");
INSERT INTO `wp_gf_entry_meta` VALUES("2428", "3", "310", "4", "(250) 896-8577");
INSERT INTO `wp_gf_entry_meta` VALUES("2429", "3", "310", "7", "Sept 15");
INSERT INTO `wp_gf_entry_meta` VALUES("2430", "3", "310", "5", "Ebb and Flow of Life");
INSERT INTO `wp_gf_entry_meta` VALUES("2433", "10", "311", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("2434", "10", "311", "10", "04/01/2000");
INSERT INTO `wp_gf_entry_meta` VALUES("2435", "10", "311", "4", "joe-mayer@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2436", "10", "311", "7", "(250) 580-2095");
INSERT INTO `wp_gf_entry_meta` VALUES("2437", "10", "311", "2", "Jennifer Mayer");
INSERT INTO `wp_gf_entry_meta` VALUES("2438", "10", "311", "3.1", "4939 Wesley Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("2439", "10", "311", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2440", "10", "311", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("2441", "10", "311", "3.5", "V8Y 1Y8");
INSERT INTO `wp_gf_entry_meta` VALUES("2442", "10", "311", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2443", "10", "311", "5", "mayerzoo@me.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2444", "10", "311", "6", "(250) 580-2108");
INSERT INTO `wp_gf_entry_meta` VALUES("2445", "10", "311", "8", "email preferred, but phone or text is great too");
INSERT INTO `wp_gf_entry_meta` VALUES("2446", "10", "311", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("2447", "10", "311", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2448", "10", "311", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("2449", "10", "311", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2450", "10", "311", "17", "None");
INSERT INTO `wp_gf_entry_meta` VALUES("2451", "1", "312", "1.3", "Kent");
INSERT INTO `wp_gf_entry_meta` VALUES("2452", "1", "312", "1.6", "Watts");
INSERT INTO `wp_gf_entry_meta` VALUES("2453", "1", "312", "2", "kentgwatts@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2454", "1", "312", "5", "(250) 889-1516");
INSERT INTO `wp_gf_entry_meta` VALUES("2455", "1", "312", "3", "I am father ( age 68 )interested in counselling to address challenges in my relationship with \r\nmy daughter ( age 24) who has been diagnosed with PTSD. \r\nPlease refer me to one of your staff who is trained and experienced to offer guidance in this area. \r\nThank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("2457", "10", "313", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2458", "10", "313", "10", "1/11/2002");
INSERT INTO `wp_gf_entry_meta` VALUES("2459", "10", "313", "4", "c.alexander@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("2460", "10", "313", "7", "(250) 893-1856");
INSERT INTO `wp_gf_entry_meta` VALUES("2461", "10", "313", "2", "Christina alexander");
INSERT INTO `wp_gf_entry_meta` VALUES("2462", "10", "313", "3.1", "1760 Taylor street");
INSERT INTO `wp_gf_entry_meta` VALUES("2463", "10", "313", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2464", "10", "313", "3.4", "Bc");
INSERT INTO `wp_gf_entry_meta` VALUES("2465", "10", "313", "3.5", "V8r 3e9");
INSERT INTO `wp_gf_entry_meta` VALUES("2466", "10", "313", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2467", "10", "313", "5", "c.alexander@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("2468", "10", "313", "6", "(250) 893-1856");
INSERT INTO `wp_gf_entry_meta` VALUES("2469", "10", "313", "8", "Cell phone or email");
INSERT INTO `wp_gf_entry_meta` VALUES("2470", "10", "313", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("2471", "10", "313", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2472", "10", "313", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2473", "10", "313", "17", "Melatonin 10 mg, rescue medicine");
INSERT INTO `wp_gf_entry_meta` VALUES("2476", "10", "314", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2477", "10", "314", "10", "24/06/2000");
INSERT INTO `wp_gf_entry_meta` VALUES("2478", "10", "314", "4", "quarians69@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2479", "10", "314", "7", "(250) 507-7460");
INSERT INTO `wp_gf_entry_meta` VALUES("2480", "10", "314", "2", "Julia Stolk");
INSERT INTO `wp_gf_entry_meta` VALUES("2481", "10", "314", "3.1", "2494 Windsor Road");
INSERT INTO `wp_gf_entry_meta` VALUES("2482", "10", "314", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2483", "10", "314", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2484", "10", "314", "3.5", "V8S 3E8");
INSERT INTO `wp_gf_entry_meta` VALUES("2485", "10", "314", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2486", "10", "314", "5", "juliastolk@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2487", "10", "314", "6", "(250) 589-7379");
INSERT INTO `wp_gf_entry_meta` VALUES("2488", "10", "314", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("2489", "10", "314", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("2490", "10", "314", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("2491", "10", "314", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("2492", "10", "314", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2493", "10", "314", "17", "Sertraline 100 mg daily");
INSERT INTO `wp_gf_entry_meta` VALUES("2494", "13", "315", "1.3", "Laura");
INSERT INTO `wp_gf_entry_meta` VALUES("2495", "13", "315", "1.6", "Dey");
INSERT INTO `wp_gf_entry_meta` VALUES("2496", "13", "315", "2", "lauradey18@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2497", "13", "315", "3.1", "671 Country Club Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("2498", "13", "315", "3.3", "Cobble Hill");
INSERT INTO `wp_gf_entry_meta` VALUES("2499", "13", "315", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2500", "13", "315", "3.5", "V0R 1L1");
INSERT INTO `wp_gf_entry_meta` VALUES("2501", "13", "315", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2502", "13", "315", "4", "(250) 929-8591");
INSERT INTO `wp_gf_entry_meta` VALUES("2503", "13", "315", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2504", "13", "315", "6", "St. John\'s South Cowichan");
INSERT INTO `wp_gf_entry_meta` VALUES("2505", "13", "315", "7.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2506", "13", "315", "8", "October 22, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2507", "13", "315", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("2508", "13", "315", "13", "shellfish, hazelnuts, brazilnuts, walnuts and pecans, pork, msg, strawberries, blueberries, mangoes, salmon, halibut and soybeans");
INSERT INTO `wp_gf_entry_meta` VALUES("2509", "13", "315", "11.3", "credit card (surcharges apply)");
INSERT INTO `wp_gf_entry_meta` VALUES("2510", "1", "316", "1.3", "Ellie");
INSERT INTO `wp_gf_entry_meta` VALUES("2511", "1", "316", "1.6", "Koski");
INSERT INTO `wp_gf_entry_meta` VALUES("2512", "1", "316", "2", "elliek1111@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2513", "1", "316", "5", "(250) 813-0254");
INSERT INTO `wp_gf_entry_meta` VALUES("2514", "1", "316", "3", "I\'m in need of counselling on a sliding fee scale as I don\'t have very much money but I am in desperate need of talking to someone. Please let me know wat I do next in order to see someone here. Thank you so much.\r\n\r\nEllie");
INSERT INTO `wp_gf_entry_meta` VALUES("2515", "3", "317", "1.3", "Moira");
INSERT INTO `wp_gf_entry_meta` VALUES("2516", "3", "317", "1.6", "Madamombe");
INSERT INTO `wp_gf_entry_meta` VALUES("2517", "3", "317", "2", "moiramajachani@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2518", "3", "317", "3.1", "302S-737 Humboldt st,");
INSERT INTO `wp_gf_entry_meta` VALUES("2519", "3", "317", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2520", "3", "317", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2521", "3", "317", "3.5", "V8w1b1");
INSERT INTO `wp_gf_entry_meta` VALUES("2522", "3", "317", "4", "(250) 891-2618");
INSERT INTO `wp_gf_entry_meta` VALUES("2523", "3", "317", "7", "october 6, 2012");
INSERT INTO `wp_gf_entry_meta` VALUES("2524", "3", "317", "5", "Pastoral counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("2526", "1", "318", "1.3", "Coraline");
INSERT INTO `wp_gf_entry_meta` VALUES("2527", "1", "318", "1.6", "Thomas");
INSERT INTO `wp_gf_entry_meta` VALUES("2528", "1", "318", "2", "corythomas.home@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2529", "1", "318", "5", "(250) 857-9538");
INSERT INTO `wp_gf_entry_meta` VALUES("2530", "1", "318", "3", "Hi,\r\n\r\nMy name is Coraline Thomas, I have an appt with Amber on Friday the sixteenth at one pm. \r\nTwo things, I am mute and can\'t call in to cancel/change my appt, and my school schedule is in conflict with my appt which is well and fully my fault. Can you contact me via email so we can discuss this? I really don\'t have any other options.\r\n\r\nRegards,\r\nCora");
INSERT INTO `wp_gf_entry_meta` VALUES("2532", "10", "319", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2533", "10", "319", "10", "05/04/1999");
INSERT INTO `wp_gf_entry_meta` VALUES("2534", "10", "319", "4", "erintomlinson22@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2535", "10", "319", "7", "(250) 217-0136");
INSERT INTO `wp_gf_entry_meta` VALUES("2536", "10", "319", "2", "Sherri Water Chief");
INSERT INTO `wp_gf_entry_meta` VALUES("2537", "10", "319", "3.1", "3205 Kenya Place");
INSERT INTO `wp_gf_entry_meta` VALUES("2538", "10", "319", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2539", "10", "319", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2540", "10", "319", "3.5", "V8P 3T9");
INSERT INTO `wp_gf_entry_meta` VALUES("2541", "10", "319", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2542", "10", "319", "5", "swaterchief@clvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2543", "10", "319", "6", "(250) 508-9283");
INSERT INTO `wp_gf_entry_meta` VALUES("2544", "10", "319", "8", "e-mail or text");
INSERT INTO `wp_gf_entry_meta` VALUES("2545", "10", "319", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("2546", "10", "319", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2547", "10", "319", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2548", "10", "319", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2549", "10", "319", "17", "Yes. Trazodone and Sertraline (she can provide you with the dosages).");
INSERT INTO `wp_gf_entry_meta` VALUES("2551", "10", "320", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2552", "10", "320", "10", "25/08/2001");
INSERT INTO `wp_gf_entry_meta` VALUES("2553", "10", "320", "4", "Jenllitwin@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2554", "10", "320", "7", "(778) 977-2674");
INSERT INTO `wp_gf_entry_meta` VALUES("2555", "10", "320", "2", "Cori Luchuck");
INSERT INTO `wp_gf_entry_meta` VALUES("2556", "10", "320", "3.1", "4054 knibbs green");
INSERT INTO `wp_gf_entry_meta` VALUES("2557", "10", "320", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2558", "10", "320", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2559", "10", "320", "3.5", "V8z 6y7");
INSERT INTO `wp_gf_entry_meta` VALUES("2560", "10", "320", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2561", "10", "320", "5", "Toosassy99@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2562", "10", "320", "6", "(778) 977-2674");
INSERT INTO `wp_gf_entry_meta` VALUES("2563", "10", "320", "8", "Call or email");
INSERT INTO `wp_gf_entry_meta` VALUES("2564", "10", "320", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("2565", "10", "320", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2566", "10", "320", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2567", "10", "320", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("2568", "10", "320", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2569", "10", "320", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("2570", "10", "320", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2571", "10", "320", "17", "Fluvoxitine Trazadone");
INSERT INTO `wp_gf_entry_meta` VALUES("2573", "1", "321", "1.3", "Jennie");
INSERT INTO `wp_gf_entry_meta` VALUES("2574", "1", "321", "1.6", "Carleton");
INSERT INTO `wp_gf_entry_meta` VALUES("2575", "1", "321", "2", "jenniecarleton@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2576", "1", "321", "5", "(250) 588-2018");
INSERT INTO `wp_gf_entry_meta` VALUES("2577", "1", "321", "3", "Hello,\r\n\r\nI would like to inquire about sliding-scale counselling. Thank you in advance for your assistance. My phone number is 250-588-2018.\r\n\r\nKind regards,\r\n\r\nJennie Carleton");
INSERT INTO `wp_gf_entry_meta` VALUES("2578", "1", "322", "1.3", "Amanda");
INSERT INTO `wp_gf_entry_meta` VALUES("2579", "1", "322", "1.6", "Moulton");
INSERT INTO `wp_gf_entry_meta` VALUES("2580", "1", "322", "2", "ammoulton12@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2581", "1", "322", "5", "(250) 417-9482");
INSERT INTO `wp_gf_entry_meta` VALUES("2582", "1", "322", "3", "Good Afternoon, \r\n\r\nMy name is Amanda Moulton and I\'m a Canadian Certified Counsellor, specializing in child, youth, and family therapy, who is currently looking to offer my counselling services in either an employment or volunteer capacity. If this is something that would be possible, I could send you my resume and portfolio or could pop by your centre in-person to drop off my resume and portfolio. \r\n\r\nThank you for your time and consideration, \r\n\r\n\r\nAmanda");
INSERT INTO `wp_gf_entry_meta` VALUES("2583", "1", "323", "1.3", "Selenne");
INSERT INTO `wp_gf_entry_meta` VALUES("2584", "1", "323", "1.6", "hough");
INSERT INTO `wp_gf_entry_meta` VALUES("2585", "1", "323", "2", "selennehough@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2586", "1", "323", "5", "(778) 677-0539");
INSERT INTO `wp_gf_entry_meta` VALUES("2587", "1", "323", "3", "Hi, \r\n\r\nI am looking for family counseling sessions and one-one sessions as well.  We are struggling with family anxiety and tension right now . anger and depression. Family separation too.  I am dealing with stress and anxiety anyways without these \"new\" family issues. I guess family counselling is long overdue. ..Thank you! I look forward to hearing from you. there is 5 of us.\r\n\r\nSelenne");
INSERT INTO `wp_gf_entry_meta` VALUES("2588", "1", "324", "1.3", "Lucy");
INSERT INTO `wp_gf_entry_meta` VALUES("2589", "1", "324", "1.6", "Teo");
INSERT INTO `wp_gf_entry_meta` VALUES("2590", "1", "324", "2", "swteo@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2591", "1", "324", "5", "(250) 472-8045");
INSERT INTO `wp_gf_entry_meta` VALUES("2592", "1", "324", "3", "I would like to know more about your counseling services. I am struggling with managing my teenage daughter. Please call me after 5 pm or email if it is not convenient. Thanks.");
INSERT INTO `wp_gf_entry_meta` VALUES("2593", "1", "325", "1.3", "Irmgard");
INSERT INTO `wp_gf_entry_meta` VALUES("2594", "1", "325", "1.6", "Koloska");
INSERT INTO `wp_gf_entry_meta` VALUES("2595", "1", "325", "2", "ikoloska@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2596", "1", "325", "5", "(250) 592-3392");
INSERT INTO `wp_gf_entry_meta` VALUES("2597", "1", "325", "3", "I am looking for some help with overcoming grief and feelings of betrayal and of being overwhelmed as a result of my marriage break up, which took place 3 years ago (marriage of 23 years.) I feel that I should be farther along in the process than I am. I am interested in counselling/therapy with a christian component.\r\nI am a part-time teacher, so have some insurance coverage for psychologists, but not for counsellors. My availability is Tuesdays and Thursdays during the day. Thank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("2598", "13", "326", "1.3", "Kathie");
INSERT INTO `wp_gf_entry_meta` VALUES("2599", "13", "326", "1.6", "Fielding");
INSERT INTO `wp_gf_entry_meta` VALUES("2600", "13", "326", "2", "kathiefielding@duncanunited.org");
INSERT INTO `wp_gf_entry_meta` VALUES("2601", "13", "326", "3.1", "PO Box 261");
INSERT INTO `wp_gf_entry_meta` VALUES("2602", "13", "326", "3.2", "17 Elk Road");
INSERT INTO `wp_gf_entry_meta` VALUES("2603", "13", "326", "3.3", "Lake Cowichan");
INSERT INTO `wp_gf_entry_meta` VALUES("2604", "13", "326", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2605", "13", "326", "3.5", "V0R 2G0");
INSERT INTO `wp_gf_entry_meta` VALUES("2606", "13", "326", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2607", "13", "326", "4", "(250) 746-6043");
INSERT INTO `wp_gf_entry_meta` VALUES("2608", "13", "326", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2609", "13", "326", "6", "Duncan United, 246 Ingram Street, Duncan, BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2610", "13", "326", "7.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("2611", "13", "326", "8", "October 22, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2612", "13", "326", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_gf_entry_meta` VALUES("2613", "13", "326", "13", "gluten free");
INSERT INTO `wp_gf_entry_meta` VALUES("2614", "13", "326", "10", "unknown at this time");
INSERT INTO `wp_gf_entry_meta` VALUES("2615", "13", "326", "11.2", "cheque (mail or drop off)");
INSERT INTO `wp_gf_entry_meta` VALUES("2616", "1", "327", "1.3", "Doug");
INSERT INTO `wp_gf_entry_meta` VALUES("2617", "1", "327", "1.6", "Vaughan");
INSERT INTO `wp_gf_entry_meta` VALUES("2618", "1", "327", "2", "tlvaughan56@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2619", "1", "327", "5", "(403) 835-4465");
INSERT INTO `wp_gf_entry_meta` VALUES("2620", "1", "328", "1.3", "Doug");
INSERT INTO `wp_gf_entry_meta` VALUES("2621", "1", "328", "1.6", "Vaughan");
INSERT INTO `wp_gf_entry_meta` VALUES("2622", "1", "328", "2", "tlvaughan56@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2623", "1", "328", "5", "(403) 835-4465");
INSERT INTO `wp_gf_entry_meta` VALUES("2624", "1", "328", "3", "I am interested in booking an appointment with a counsellor, hopefully as soon as next week. \r\n\r\nThanks.");
INSERT INTO `wp_gf_entry_meta` VALUES("2625", "13", "329", "1.3", "Tricia");
INSERT INTO `wp_gf_entry_meta` VALUES("2626", "13", "329", "1.6", "DatenÃ©");
INSERT INTO `wp_gf_entry_meta` VALUES("2627", "13", "329", "2", "tricia.datene@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2628", "13", "329", "3.1", "6231 Selkirk Terrace");
INSERT INTO `wp_gf_entry_meta` VALUES("2629", "13", "329", "3.3", "Duncan");
INSERT INTO `wp_gf_entry_meta` VALUES("2630", "13", "329", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2631", "13", "329", "3.5", "V9L0A6");
INSERT INTO `wp_gf_entry_meta` VALUES("2632", "13", "329", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2633", "13", "329", "4", "(250) 746-6377");
INSERT INTO `wp_gf_entry_meta` VALUES("2634", "13", "329", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2635", "13", "329", "6", "St. Peter Quamichan, (Anglican), Duncan, BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2636", "13", "329", "7.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2637", "13", "329", "8", "Oct. 22, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2638", "13", "329", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_gf_entry_meta` VALUES("2639", "13", "329", "13", "N/A");
INSERT INTO `wp_gf_entry_meta` VALUES("2640", "13", "329", "11.2", "cheque (mail or drop off)");
INSERT INTO `wp_gf_entry_meta` VALUES("2641", "3", "330", "1.3", "Emilie");
INSERT INTO `wp_gf_entry_meta` VALUES("2642", "3", "330", "1.6", "Morris-Campeau");
INSERT INTO `wp_gf_entry_meta` VALUES("2643", "3", "330", "2", "emcampeau344@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2644", "3", "330", "3.1", "425-2885 jacklin rd");
INSERT INTO `wp_gf_entry_meta` VALUES("2645", "3", "330", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2646", "3", "330", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2647", "3", "330", "3.5", "V9b3y3");
INSERT INTO `wp_gf_entry_meta` VALUES("2648", "3", "330", "4", "(250) 508-6473");
INSERT INTO `wp_gf_entry_meta` VALUES("2649", "3", "330", "7", "Nov 8 start");
INSERT INTO `wp_gf_entry_meta` VALUES("2650", "3", "330", "5", "Strengthening self");
INSERT INTO `wp_gf_entry_meta` VALUES("2653", "10", "331", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2654", "10", "331", "10", "08/04/2002");
INSERT INTO `wp_gf_entry_meta` VALUES("2655", "10", "331", "4", "Eileen.beauvais@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2656", "10", "331", "7", "(250) 514-1079");
INSERT INTO `wp_gf_entry_meta` VALUES("2657", "10", "331", "2", "Eileen Beauvais");
INSERT INTO `wp_gf_entry_meta` VALUES("2658", "10", "331", "3.1", "1318 Treebank Road West");
INSERT INTO `wp_gf_entry_meta` VALUES("2659", "10", "331", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2660", "10", "331", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("2661", "10", "331", "3.5", "V9A 7G1");
INSERT INTO `wp_gf_entry_meta` VALUES("2662", "10", "331", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2663", "10", "331", "5", "Eileen.beauvais@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2664", "10", "331", "6", "(250) 514-1079");
INSERT INTO `wp_gf_entry_meta` VALUES("2665", "10", "331", "8", "Phone");
INSERT INTO `wp_gf_entry_meta` VALUES("2666", "10", "331", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("2667", "10", "331", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2668", "10", "331", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("2669", "10", "331", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2670", "10", "331", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2671", "13", "332", "1.3", "Marilyn");
INSERT INTO `wp_gf_entry_meta` VALUES("2672", "13", "332", "1.6", "Klizs");
INSERT INTO `wp_gf_entry_meta` VALUES("2673", "13", "332", "2", "mklizs@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2674", "13", "332", "3.1", "301-275 First Street");
INSERT INTO `wp_gf_entry_meta` VALUES("2675", "13", "332", "3.3", "Duncan");
INSERT INTO `wp_gf_entry_meta` VALUES("2676", "13", "332", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("2677", "13", "332", "3.5", "V9L 1R3");
INSERT INTO `wp_gf_entry_meta` VALUES("2678", "13", "332", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2679", "13", "332", "4", "(250) 748-4534");
INSERT INTO `wp_gf_entry_meta` VALUES("2680", "13", "332", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2681", "13", "332", "6", "St. Edward the Confessor Roman Catholic Church, Duncan, BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2682", "13", "332", "7.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("2683", "13", "332", "8", "10/22/2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2684", "13", "332", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_gf_entry_meta` VALUES("2685", "13", "332", "11.2", "cheque (mail or drop off)");
INSERT INTO `wp_gf_entry_meta` VALUES("2686", "1", "333", "1.3", "Sean");
INSERT INTO `wp_gf_entry_meta` VALUES("2687", "1", "333", "1.6", "Doe");
INSERT INTO `wp_gf_entry_meta` VALUES("2688", "1", "333", "2", "s_doe@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2689", "1", "333", "5", "(250) 902-8368");
INSERT INTO `wp_gf_entry_meta` VALUES("2690", "1", "333", "3", "I would like to set up an initial appointment for counselling please.");
INSERT INTO `wp_gf_entry_meta` VALUES("2691", "1", "334", "1.3", "Lana");
INSERT INTO `wp_gf_entry_meta` VALUES("2692", "1", "334", "1.6", "Millott");
INSERT INTO `wp_gf_entry_meta` VALUES("2693", "1", "334", "2", "lmillott@beaconcs.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2694", "1", "334", "5", "(778) 433-8280");
INSERT INTO `wp_gf_entry_meta` VALUES("2695", "1", "334", "3", "Hi,\r\nI facilitate a program called Springboard to Success for at-risk youth for Beacon Community Services. I am looking for someone to come in and give a talk on mental health and addictions to my group of twelve participants. Can you please get back to me if this is something that you think you can help me out with. If not and you know someone who could please let me know. Thanks, Lana");
INSERT INTO `wp_gf_entry_meta` VALUES("2696", "1", "335", "1.3", "Melanie");
INSERT INTO `wp_gf_entry_meta` VALUES("2697", "1", "335", "1.6", "Abela");
INSERT INTO `wp_gf_entry_meta` VALUES("2698", "1", "335", "2", "Melanieabela@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2699", "1", "335", "5", "(250) 228-2122");
INSERT INTO `wp_gf_entry_meta` VALUES("2700", "1", "335", "3", "Hi, \r\nI am interested in spiritual direction sessions. I am hearing impaired and would prefer a text message by cell phone or an email for communication.\r\n   Could you tell me the price of Spiritual Direction sessions?\r\nThank you, Melanie Abela, melanieabela@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2701", "13", "336", "1.3", "Trish");
INSERT INTO `wp_gf_entry_meta` VALUES("2702", "13", "336", "1.6", "Holland");
INSERT INTO `wp_gf_entry_meta` VALUES("2703", "13", "336", "2", "info@stjohnscobblehill.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2704", "13", "336", "3.1", "3295 Cobble Hill Road");
INSERT INTO `wp_gf_entry_meta` VALUES("2705", "13", "336", "3.3", "Cobble Hill");
INSERT INTO `wp_gf_entry_meta` VALUES("2706", "13", "336", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2707", "13", "336", "3.5", "V0R 1L6");
INSERT INTO `wp_gf_entry_meta` VALUES("2708", "13", "336", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2709", "13", "336", "4", "(250) 743-3095");
INSERT INTO `wp_gf_entry_meta` VALUES("2710", "13", "336", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2711", "13", "336", "6", "St. John\'s Anglican Church \r\n3295 Cobble Hill Road\r\nCobble Hill BC\r\nV0R 1L6");
INSERT INTO `wp_gf_entry_meta` VALUES("2712", "13", "336", "7.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2713", "13", "336", "8", "October 22, 2016");
INSERT INTO `wp_gf_entry_meta` VALUES("2714", "13", "336", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("2715", "13", "336", "13", "No.");
INSERT INTO `wp_gf_entry_meta` VALUES("2716", "13", "336", "10", "Bonnie-Jean Loewen - Basic");
INSERT INTO `wp_gf_entry_meta` VALUES("2717", "13", "336", "11.2", "cheque (mail or drop off)");
INSERT INTO `wp_gf_entry_meta` VALUES("2718", "1", "337", "1.3", "Justine");
INSERT INTO `wp_gf_entry_meta` VALUES("2719", "1", "337", "1.6", "Fitzsimmons");
INSERT INTO `wp_gf_entry_meta` VALUES("2720", "1", "337", "2", "Justine@shelbournecommunitykitchen.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2721", "1", "337", "5", "(250) 590-0980");
INSERT INTO `wp_gf_entry_meta` VALUES("2722", "1", "337", "3", "Hi there,\r\n\r\nDo you have any brochures available? If so, what is the best way to obtain them? We would love to have some information available in our main room for people coming in.\r\n\r\nThank you,\r\n\r\nJustine");
INSERT INTO `wp_gf_entry_meta` VALUES("2723", "1", "338", "1.3", "Lanza");
INSERT INTO `wp_gf_entry_meta` VALUES("2724", "1", "338", "1.6", "Norris-jones");
INSERT INTO `wp_gf_entry_meta` VALUES("2725", "1", "338", "2", "Lanzanojo@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2726", "1", "338", "5", "(250) 882-9417");
INSERT INTO `wp_gf_entry_meta` VALUES("2727", "1", "338", "3", "My husband and I are newly married and have a 19 month old daughter. I got referred to you by my public health nurse. We are looking for some counselling support. Thanks");
INSERT INTO `wp_gf_entry_meta` VALUES("2728", "1", "339", "1.3", "Joanna");
INSERT INTO `wp_gf_entry_meta` VALUES("2729", "1", "339", "1.6", "Gower");
INSERT INTO `wp_gf_entry_meta` VALUES("2730", "1", "339", "2", "joanna.k.gower@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2731", "1", "339", "5", "(250) 888-1424");
INSERT INTO `wp_gf_entry_meta` VALUES("2732", "1", "339", "3", "Hello,\r\nI would like to set up a first appointment with your councilling centre. I am interested in talking to someone about issues with depression and relationships \r\n\r\nJoanna");
INSERT INTO `wp_gf_entry_meta` VALUES("2733", "1", "340", "1.3", "Els");
INSERT INTO `wp_gf_entry_meta` VALUES("2734", "1", "340", "1.6", "van Strien");
INSERT INTO `wp_gf_entry_meta` VALUES("2735", "1", "340", "2", "elsvanstrien@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2736", "1", "340", "5", "(250) 475-0016");
INSERT INTO `wp_gf_entry_meta` VALUES("2737", "1", "340", "3", "Hi  I would like to set up an initial appointment with your counselling supervisor to discuss counselling options for me.  Thank you.  Els van Strien");
INSERT INTO `wp_gf_entry_meta` VALUES("2739", "10", "341", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("2740", "10", "341", "10", "16/02/2003");
INSERT INTO `wp_gf_entry_meta` VALUES("2741", "10", "341", "4", "saxdudette@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2742", "10", "341", "7", "(250) 857-8685");
INSERT INTO `wp_gf_entry_meta` VALUES("2743", "10", "341", "2", "Kelly Dahmer");
INSERT INTO `wp_gf_entry_meta` VALUES("2744", "10", "341", "3.1", "7048 Wright Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("2745", "10", "341", "3.3", "Sooke");
INSERT INTO `wp_gf_entry_meta` VALUES("2746", "10", "341", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2747", "10", "341", "3.5", "V9Z 1M5");
INSERT INTO `wp_gf_entry_meta` VALUES("2748", "10", "341", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2749", "10", "341", "5", "kelly.dahmer@starware.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2750", "10", "341", "6", "(250) 642-7255");
INSERT INTO `wp_gf_entry_meta` VALUES("2751", "10", "341", "8", "phone");
INSERT INTO `wp_gf_entry_meta` VALUES("2752", "10", "341", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("2753", "10", "341", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("2754", "10", "341", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("2755", "10", "341", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("2756", "10", "341", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("2757", "10", "341", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2758", "1", "342", "1.3", "cassie");
INSERT INTO `wp_gf_entry_meta` VALUES("2759", "1", "342", "1.6", "lehna");
INSERT INTO `wp_gf_entry_meta` VALUES("2760", "1", "342", "2", "cutecassy@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2761", "1", "342", "5", "(250) 532-7637");
INSERT INTO `wp_gf_entry_meta` VALUES("2762", "1", "342", "3", "I would like to book an initial appointment with your counselling supervisor..  I have anxiety and depression.");
INSERT INTO `wp_gf_entry_meta` VALUES("2763", "1", "343", "1.3", "Chelsea");
INSERT INTO `wp_gf_entry_meta` VALUES("2764", "1", "343", "1.6", "Dymonds");
INSERT INTO `wp_gf_entry_meta` VALUES("2765", "1", "343", "2", "farfenugie@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2766", "1", "343", "5", "(250) 634-0788");
INSERT INTO `wp_gf_entry_meta` VALUES("2767", "1", "343", "3", "I have had counseling before, i suffer with depression, anxiety, and other issues. My father just died, i feel like ive lost all control on life. I feel i need counseling again. \r\nFeel free to leave a message on the phone number or the email. Thank you, \r\nChelsea");
INSERT INTO `wp_gf_entry_meta` VALUES("2768", "1", "344", "1.3", "Kristy");
INSERT INTO `wp_gf_entry_meta` VALUES("2769", "1", "344", "1.6", "Hoffman");
INSERT INTO `wp_gf_entry_meta` VALUES("2770", "1", "344", "2", "Bmdesigns@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2771", "1", "344", "5", "(613) 602-0571");
INSERT INTO `wp_gf_entry_meta` VALUES("2772", "1", "344", "3", "I could really use someone to talk to who is not my husband, family or friends and without judgment. I have been in counselling before and although it\'s been a while I think it\'s time to come back to it. Let\'s face it; adulting is hard sometimes! So, I\'m taking action and reaching out before things get too crappy. \r\n\r\nI\'m a married, working full time mom who\'s also in school part time. I live in Sooke but work in Victoria. I could use some help. Please get in touch, I can be reached at the email or the number above. It\'s okay if you leave a message as it is my own and its a mobile phone so I don\'t answer when driving. I will call back as soon as I can. \r\n\r\nThanks so much,\r\n  Kristy");
INSERT INTO `wp_gf_entry_meta` VALUES("2773", "1", "345", "1.3", "Irmgard");
INSERT INTO `wp_gf_entry_meta` VALUES("2774", "1", "345", "1.6", "Koloska");
INSERT INTO `wp_gf_entry_meta` VALUES("2775", "1", "345", "2", "ikoloska@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2776", "1", "345", "5", "(250) 812-3827");
INSERT INTO `wp_gf_entry_meta` VALUES("2777", "1", "345", "3", "I have an appointment with Bill Cole on Tuesday morning, Oct. 18th at 10:00. I have to cancel due to a work commitment. Please reschedule the appointment for the following Tuesday, if possible.");
INSERT INTO `wp_gf_entry_meta` VALUES("2778", "13", "346", "1.3", "AFFIE");
INSERT INTO `wp_gf_entry_meta` VALUES("2779", "13", "346", "1.6", "DUIFHUIS");
INSERT INTO `wp_gf_entry_meta` VALUES("2780", "13", "346", "2", "jduifhuis@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2781", "13", "346", "3.1", "5995 Jaynes Road");
INSERT INTO `wp_gf_entry_meta` VALUES("2782", "13", "346", "3.3", "DUNCAN");
INSERT INTO `wp_gf_entry_meta` VALUES("2783", "13", "346", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2784", "13", "346", "3.5", "V9L 3C4");
INSERT INTO `wp_gf_entry_meta` VALUES("2785", "13", "346", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("2786", "13", "346", "4", "(250) 748-8205");
INSERT INTO `wp_gf_entry_meta` VALUES("2787", "13", "346", "5.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2788", "13", "346", "6", "DUNCAN CHRISTIAN REFORMED CHURCH\r\n930 TRUNK ROAD\r\nDUNCAN");
INSERT INTO `wp_gf_entry_meta` VALUES("2789", "13", "346", "7.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("2790", "13", "346", "8", "10/22/2016 9:00 AM");
INSERT INTO `wp_gf_entry_meta` VALUES("2791", "13", "346", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("2792", "13", "346", "13", "NONE");
INSERT INTO `wp_gf_entry_meta` VALUES("2793", "13", "346", "10", "SUZANNE GABEL  -  basic\r\nDEANNA NAGTEGAAL  -  basic\r\nSUSAN WITTEVEEN  - basic");
INSERT INTO `wp_gf_entry_meta` VALUES("2794", "13", "346", "11.3", "credit card (surcharges apply)");
INSERT INTO `wp_gf_entry_meta` VALUES("2795", "1", "347", "1.3", "brie");
INSERT INTO `wp_gf_entry_meta` VALUES("2796", "1", "347", "1.6", "cassidy");
INSERT INTO `wp_gf_entry_meta` VALUES("2797", "1", "347", "2", "briealicia17@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2798", "1", "347", "5", "(250) 514-3086");
INSERT INTO `wp_gf_entry_meta` VALUES("2799", "1", "347", "3", "Hello my name is brie. I have been dealing with some anxiety, panic attacks,  and sadness/depression?  I am low income and barely afford my rent / food/ bills so financing has been a concern for me but I would really like to get some help and strategies.. \r\nThanks and I look forward to hearing from you!\r\nBrie");
INSERT INTO `wp_gf_entry_meta` VALUES("2800", "1", "348", "1.3", "Evan");
INSERT INTO `wp_gf_entry_meta` VALUES("2801", "1", "348", "1.6", "Greenbaum");
INSERT INTO `wp_gf_entry_meta` VALUES("2802", "1", "348", "2", "egreenbaum@drugrehab.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2803", "1", "348", "5", "(561) 987-2221");
INSERT INTO `wp_gf_entry_meta` VALUES("2804", "1", "348", "3", "Good Afternoon,\r\n\r\nMy name is Evan and I work with DrugRehab.com, a resource that provides information about addiction and substance abuse.\r\n\r\nSome people who suffer from PTSD turn to drugs and alcohol to self-medicate. Our organization works to spread awareness of this issue and to be an informational resource for those impacted by alcohol and drug dependence. \r\n\r\nI believe that our website would be a valuable addition to the resources listed on your page, http://localhost:8888/TestSICPage/wordpress/resources-2/\r\n\r\nPlease feel free to review our information at drugrehab.com/co-occurring-disorder/ptsd/\r\n\r\nI would love feedback on our information and to see if this is something you would like to share with others.\r\n\r\nRespectfully,\r\n\r\nEvan Greenbaum");
INSERT INTO `wp_gf_entry_meta` VALUES("2805", "1", "349", "1.3", "Michelle");
INSERT INTO `wp_gf_entry_meta` VALUES("2806", "1", "349", "1.6", "Steeves");
INSERT INTO `wp_gf_entry_meta` VALUES("2807", "1", "349", "2", "misseymoo@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2808", "1", "349", "5", "(250) 508-9000");
INSERT INTO `wp_gf_entry_meta` VALUES("2809", "1", "349", "3", "Hi. I am looking for a counselor to help with severe anxiety as well as other issues. I\'m hoping you can help? I would prefer a woman counselor, but if that can\'t be arranged that\'s ok too .I work until 5:30 or 5:45, so are evening appointments available? 6:00 pm maybe? I have reached out to other therapists, but I cannot afford the fees. I understand you charge on a sliding scale based on income? I hope to hear from you very soon. Thanks for your time.\r\nMichelle");
INSERT INTO `wp_gf_entry_meta` VALUES("2810", "1", "350", "1.3", "Melis");
INSERT INTO `wp_gf_entry_meta` VALUES("2811", "1", "350", "1.6", "Bekiroglu");
INSERT INTO `wp_gf_entry_meta` VALUES("2812", "1", "350", "2", "Melisbekiroglu7@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2813", "1", "350", "5", "(778) 922-2368");
INSERT INTO `wp_gf_entry_meta` VALUES("2814", "1", "350", "3", "Hello. I would like to make and appointment and I wonder how much it would cost. Im an international student and dont have a work here so money is a problem for me and Im im need of help. I have bpd and severe depression and anxiety issues and I would love to talk to somebody. Thank you");
INSERT INTO `wp_gf_entry_meta` VALUES("2815", "1", "351", "1.3", "Curtis");
INSERT INTO `wp_gf_entry_meta` VALUES("2816", "1", "351", "1.6", "French");
INSERT INTO `wp_gf_entry_meta` VALUES("2817", "1", "351", "2", "Curtisrfrench@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2818", "1", "351", "5", "(250) 231-5787");
INSERT INTO `wp_gf_entry_meta` VALUES("2819", "1", "351", "3", "Hi, I am seeking counselling services for depression and anxiety. Please get back to me at your earliest convenience.");
INSERT INTO `wp_gf_entry_meta` VALUES("2820", "1", "352", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("2821", "1", "352", "1.6", "McMillan");
INSERT INTO `wp_gf_entry_meta` VALUES("2822", "1", "352", "2", "sarah@woodwardandcompany.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2823", "1", "352", "5", "(250) 588-7098");
INSERT INTO `wp_gf_entry_meta` VALUES("2824", "1", "352", "3", "Good afternoon,\r\nA friend of mine was recently the victim of a very violent attack and home invasion. She has been offered counselling services through victim services but can\'t be seen for several weeks. That seems like a travesty. She is having panic attacks and is having trouble caring for her infant while sheâ€™s at home on mat leave.\r\n \r\nHer husband is self-employed and I get the sense that funds are tight. I am reaching out to people in my community to see if we can arrange for a couple of interim sessions until she can be seen through victimâ€™s services.  There may be a chance at reimbursement once sheâ€™s been processed through the system.\r\n \r\nDue to pending charges, Iâ€™m reluctant to share too many specific details but Iâ€™m happy to fill in some blanks if it helps.\r\n \r\nThank you â€“ and advice or direction is appreciated.");
INSERT INTO `wp_gf_entry_meta` VALUES("2825", "1", "353", "1.3", "Noella");
INSERT INTO `wp_gf_entry_meta` VALUES("2826", "1", "353", "1.6", "May");
INSERT INTO `wp_gf_entry_meta` VALUES("2827", "1", "353", "2", "noellamay128@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2828", "1", "353", "5", "(250) 380-0015");
INSERT INTO `wp_gf_entry_meta` VALUES("2829", "1", "353", "3", "Kindly pass this along to Margaret Anderson...\r\nWas so nice to see you this morning, Margaret.\r\nThanks for asking about the invitation and feel free to forward my email to those sending out invites.\r\nPerhaps I\'ll see you there.\r\nHave a fabulous Friday!\r\nNoella");
INSERT INTO `wp_gf_entry_meta` VALUES("2830", "1", "354", "1.3", "Elizabeth");
INSERT INTO `wp_gf_entry_meta` VALUES("2831", "1", "354", "1.6", "Cronin");
INSERT INTO `wp_gf_entry_meta` VALUES("2832", "1", "354", "2", "elcronin@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2833", "1", "354", "5", "(250) 812-6889");
INSERT INTO `wp_gf_entry_meta` VALUES("2834", "1", "354", "3", "Hi!\r\n\r\nI did a number of counselling sessions over the summer with Rosemary.  I got a longer receipt for some of them, but mostly just short little receipts.  I thought this would be alright but the insurance company is denying my claim.  Could I get more official receipts for each session? \r\n\r\nAlso, if this claim is denied I think the price I was charged is higher than it would have been based on the sliding scale, but hopefully it will be alright.  \r\n\r\nIf you could send the receipts to this address that would be great:\r\n\r\nElizabeth Cronin\r\n1284 Lonsdale Place \r\nVictoria, BC,\r\nV8P 5L3\r\n\r\nThanks!\r\n\r\nLiz (Elizabeth) Cronin");
INSERT INTO `wp_gf_entry_meta` VALUES("2835", "3", "355", "1.3", "Moira");
INSERT INTO `wp_gf_entry_meta` VALUES("2836", "3", "355", "1.6", "Madamombe");
INSERT INTO `wp_gf_entry_meta` VALUES("2837", "3", "355", "2", "moiramajachani@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2838", "3", "355", "3.1", "302S-7373 Humboldt st");
INSERT INTO `wp_gf_entry_meta` VALUES("2839", "3", "355", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("2840", "3", "355", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("2841", "3", "355", "3.5", "V8W 1B1");
INSERT INTO `wp_gf_entry_meta` VALUES("2842", "3", "355", "4", "(250) 891-2618");
INSERT INTO `wp_gf_entry_meta` VALUES("2843", "3", "355", "7", "February 2 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("2844", "3", "355", "5", "The Ebb and Flow of Life");
INSERT INTO `wp_gf_entry_meta` VALUES("2846", "1", "357", "1.3", "Herschel");
INSERT INTO `wp_gf_entry_meta` VALUES("2847", "1", "357", "1.6", "Krustovsky");
INSERT INTO `wp_gf_entry_meta` VALUES("2848", "1", "357", "2", "ocean123@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("2849", "1", "357", "5", "(250) 999-3056");
INSERT INTO `wp_gf_entry_meta` VALUES("2850", "1", "357", "3", "What are your administrative costs?");
INSERT INTO `wp_gf_entry_meta` VALUES("2851", "1", "358", "1.3", "Amanda");
INSERT INTO `wp_gf_entry_meta` VALUES("2852", "1", "358", "1.6", "St.Pierre");
INSERT INTO `wp_gf_entry_meta` VALUES("2853", "1", "358", "2", "Amandast.pierre@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2854", "1", "358", "5", "(778) 679-2139");
INSERT INTO `wp_gf_entry_meta` VALUES("2855", "1", "358", "3", "My partner and I are young parents and we have both struggled with mental health and addictions in the past. We are looking for an affordable safe place to to have healthy conversations and take care of our mental well beings and our recovery.\r\n\r\nThank you");
INSERT INTO `wp_gf_entry_meta` VALUES("2856", "14", "359", "1.3", "Emmory");
INSERT INTO `wp_gf_entry_meta` VALUES("2857", "14", "359", "1.6", "Collins");
INSERT INTO `wp_gf_entry_meta` VALUES("2858", "14", "359", "2", "24");
INSERT INTO `wp_gf_entry_meta` VALUES("2859", "14", "359", "3", "(250) 886-8116");
INSERT INTO `wp_gf_entry_meta` VALUES("2860", "14", "359", "4", "emmory_collins@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2861", "14", "359", "5", "Concerns: Depression, life transitions, relational conflict, and issues related to faith and spirituality. Referred from a GP to Mental Health intake (USTAT), completed a phone consultation and was referred to physchiatry. Had an appt. today (Nov. 16) w/ Dr. Malavi, counseling was recommended as a next step along w/ my current Rx\'s. \r\nSchedule: Available all day on Mondays, after 4:30 on Tuesdays, and evening (after 6pm) availability Wed-Sat. No preference in regards to a male or female therapist. \r\nFees: No extended benefits. Single, average of $33,000 gross annual income.");
INSERT INTO `wp_gf_entry_meta` VALUES("2862", "14", "359", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2863", "14", "359", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2864", "14", "359", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2865", "14", "359", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("2866", "14", "360", "1.3", "Vicky");
INSERT INTO `wp_gf_entry_meta` VALUES("2867", "14", "360", "1.6", "Edmiston");
INSERT INTO `wp_gf_entry_meta` VALUES("2868", "14", "360", "2", "27");
INSERT INTO `wp_gf_entry_meta` VALUES("2869", "14", "360", "3", "(778) 877-4769");
INSERT INTO `wp_gf_entry_meta` VALUES("2870", "14", "360", "4", "tori.leigh89@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2871", "14", "360", "5", "Mental health issues (confirmed depression & anxiety). Currently unemployed (on EI right now) so have open availability. Preference would be for a female therapist.");
INSERT INTO `wp_gf_entry_meta` VALUES("2872", "14", "360", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2873", "14", "360", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2874", "14", "360", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2875", "14", "360", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2876", "14", "360", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("2877", "14", "361", "1.3", "Matthew");
INSERT INTO `wp_gf_entry_meta` VALUES("2878", "14", "361", "1.6", "Cook");
INSERT INTO `wp_gf_entry_meta` VALUES("2879", "14", "361", "2", "39");
INSERT INTO `wp_gf_entry_meta` VALUES("2880", "14", "361", "3", "(250) 508-1791");
INSERT INTO `wp_gf_entry_meta` VALUES("2881", "14", "361", "4", "mcook@pacificahousing.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2882", "14", "361", "5", "I\'m actually just touching base for a client of mine who\'s on income assistance and looking for Christian based counseling and I was wondering if you could recommend anything? \r\nCheers, \r\nMatthew of pacifica housing.");
INSERT INTO `wp_gf_entry_meta` VALUES("2883", "14", "361", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2884", "14", "361", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2885", "14", "361", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("2886", "14", "362", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("2887", "14", "362", "1.6", "Kobylka");
INSERT INTO `wp_gf_entry_meta` VALUES("2888", "14", "362", "2", "48");
INSERT INTO `wp_gf_entry_meta` VALUES("2889", "14", "362", "3", "(778) 533-8768");
INSERT INTO `wp_gf_entry_meta` VALUES("2890", "14", "362", "4", "kobylkakaren@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2891", "14", "362", "5", "Hi, I am going through alot, this December 27th coming up it will be 4 years that i left my husband and walked away with nothing, it was not a great relationship but when I left the police were involved and later he tried chasing me down via a high speed chase.. UGH. then a few months after that my mother unexpectantly passed away. during this time my family disowned me as they really loved my ex, so that was hard, my moms passing was hard, but a few months after that my 2 dogs passed away (I do not have children they were like my children) a month after that my friend passed away and the next month my best friend get diagnosed with thyroid cancer. I spent the next few years just getting by. last year my father passed away on fathers day. when i was 12 i was raped and never told anyone. i was at a spiritual healing retreat about 1 month ago and it was amazing, but since then i have had new memories of my rape and it is causing me to realize that gee maybe not telling anyone is not such a great idea. i do my best to deal with all this by myself but my one sister that i am closest to is in the hospital and not doing good at all. I have moved to Victoria just since this July and I am doing way better than in Edmonton where i lived for 47 and 3/4 years. but being in a new place with no friends not really helping, i really hate to ask for help but kind of at the end of my rope, i have wished spirit to take me home several times but dam it ...they are not ready for me yet so here i seek your help.");
INSERT INTO `wp_gf_entry_meta` VALUES("2892", "14", "362", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2893", "14", "362", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2894", "14", "362", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("2895", "14", "362", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2896", "14", "362", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("2897", "14", "363", "1.3", "Mayumi");
INSERT INTO `wp_gf_entry_meta` VALUES("2898", "14", "363", "1.6", "Baker");
INSERT INTO `wp_gf_entry_meta` VALUES("2899", "14", "363", "2", "47");
INSERT INTO `wp_gf_entry_meta` VALUES("2900", "14", "363", "3", "(250) 478-3190");
INSERT INTO `wp_gf_entry_meta` VALUES("2901", "14", "363", "4", "mayumiyuma@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2902", "14", "363", "5", "I\'m seeking for counselling (separation).\r\nI prefer female therapist.");
INSERT INTO `wp_gf_entry_meta` VALUES("2903", "14", "363", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2904", "14", "363", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2905", "14", "363", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2906", "14", "363", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("2907", "14", "364", "1.3", "Rachelle");
INSERT INTO `wp_gf_entry_meta` VALUES("2908", "14", "364", "1.6", "Renaud");
INSERT INTO `wp_gf_entry_meta` VALUES("2909", "14", "364", "2", "23");
INSERT INTO `wp_gf_entry_meta` VALUES("2910", "14", "364", "3", "(250) 710-1104");
INSERT INTO `wp_gf_entry_meta` VALUES("2911", "14", "364", "4", "Greenwitchyrenaud@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("2912", "14", "364", "5", "Jealousy and insecurity issues with friendships, also sexual dysfunction/lack of sexual desire in relationships.\r\nPrefer a female therapist. No health benefits.\r\nAvailable: Wednesdays 1-2:30, Mondays after 2, Saturdays after 2, Sundays.");
INSERT INTO `wp_gf_entry_meta` VALUES("2913", "14", "364", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2914", "14", "364", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2915", "14", "364", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2916", "14", "364", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("2917", "14", "365", "1.3", "Lacey");
INSERT INTO `wp_gf_entry_meta` VALUES("2918", "14", "365", "1.6", "Mullett");
INSERT INTO `wp_gf_entry_meta` VALUES("2919", "14", "365", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("2920", "14", "365", "3", "(250) 812-0045");
INSERT INTO `wp_gf_entry_meta` VALUES("2921", "14", "365", "4", "Laceyjanette@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2922", "14", "365", "5", "I have a history of moderate anxiety and have accessed counselling many times throughout my adult life to cope. I\'ve been quiet anxious the past few months, but it\'s definitely increased in severity the past few weeks. I\'m available pretty much any time as I\'m self-employed. I don\'t currently have extended health benefits but am in the process of becoming covered under my partners\'s plan and could actually have that within the week. I would prefer a female therapist but am comfortable with a male if necessary.");
INSERT INTO `wp_gf_entry_meta` VALUES("2923", "14", "365", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2924", "14", "365", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2925", "14", "365", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2926", "14", "365", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("2927", "14", "365", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2928", "14", "365", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("2929", "14", "366", "1.3", "Bayley");
INSERT INTO `wp_gf_entry_meta` VALUES("2930", "14", "366", "1.6", "Gale");
INSERT INTO `wp_gf_entry_meta` VALUES("2931", "14", "366", "2", "30");
INSERT INTO `wp_gf_entry_meta` VALUES("2932", "14", "366", "3", "(778) 679-4215");
INSERT INTO `wp_gf_entry_meta` VALUES("2933", "14", "366", "4", "bayleygale@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2934", "14", "366", "5", "I am hoping to discuss issues related to grief and loss, particularly with regards to my son who passed away this summer after arriving prematurely. \r\n\r\nI am not available for appointments on weekdays between 2:00pm and 6:00pm, but outside of that I have a flexible schedule and am available for morning or evening appointments. \r\n\r\nI am comfortable with a male or female therapist. \r\n\r\nI do not currently have extended health benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("2935", "14", "366", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2936", "14", "366", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2937", "14", "366", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2938", "14", "366", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2939", "14", "366", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("2940", "14", "367", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("2941", "14", "367", "1.6", "Laurendeau");
INSERT INTO `wp_gf_entry_meta` VALUES("2942", "14", "367", "2", "33");
INSERT INTO `wp_gf_entry_meta` VALUES("2943", "14", "367", "3", "(250) 507-6240");
INSERT INTO `wp_gf_entry_meta` VALUES("2944", "14", "367", "4", "Remingtonsteele195@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2945", "14", "367", "5", "I feel lonely ie no friends, stress, anxiety, low self esteem, and sadness sometimes. Thursday mornings would work best for me and I prefer a female please.");
INSERT INTO `wp_gf_entry_meta` VALUES("2946", "14", "367", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2947", "14", "367", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2948", "14", "367", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2949", "14", "367", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("2950", "14", "367", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2951", "14", "367", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("2952", "14", "368", "1.3", "Dylan");
INSERT INTO `wp_gf_entry_meta` VALUES("2953", "14", "368", "1.6", "Roberts");
INSERT INTO `wp_gf_entry_meta` VALUES("2954", "14", "368", "2", "32");
INSERT INTO `wp_gf_entry_meta` VALUES("2955", "14", "368", "3", "(204) 995-9319");
INSERT INTO `wp_gf_entry_meta` VALUES("2956", "14", "368", "4", "dylan.jb.roberts@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2957", "14", "368", "5", "Suffering from fairly longstanding (>1 year) anxiety and depression - feelings of despair, almost-constant low-level panic which makes it difficult to function (although still generally able to get through the day-to-day by \"faking it\"). Temporary improvement after attending a couple of crisis counselling sessions last year. Temporary improvement after daily exercise at the gym (ongoing), but I feel as though my mental health is deteriorating again. Fully available M-F and weekends, eager to attend session(s) at whatever time is most convenient for a therapist. No preference re: male or female therapist. No extended health benefits at present. Currently unemployed and collecting employment insurance benefits but anticipate starting work in the new year.");
INSERT INTO `wp_gf_entry_meta` VALUES("2958", "14", "368", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2959", "14", "368", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2960", "14", "368", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2961", "14", "368", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2962", "14", "368", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("2963", "14", "369", "1.3", "Lauren");
INSERT INTO `wp_gf_entry_meta` VALUES("2964", "14", "369", "1.6", "Sleziak");
INSERT INTO `wp_gf_entry_meta` VALUES("2965", "14", "369", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("2966", "14", "369", "3", "(250) 893-5795");
INSERT INTO `wp_gf_entry_meta` VALUES("2967", "14", "369", "4", "laurensleziak@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2968", "14", "369", "5", "chronic major depression, generalized anxiety and social anxiety/anxiety attacks, general stress, and relationship issues.");
INSERT INTO `wp_gf_entry_meta` VALUES("2969", "14", "369", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2970", "14", "369", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("2971", "14", "369", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("2972", "14", "370", "1.3", "Leah");
INSERT INTO `wp_gf_entry_meta` VALUES("2973", "14", "370", "1.6", "Hayward");
INSERT INTO `wp_gf_entry_meta` VALUES("2974", "14", "370", "2", "30");
INSERT INTO `wp_gf_entry_meta` VALUES("2975", "14", "370", "3", "(250) 634-0315");
INSERT INTO `wp_gf_entry_meta` VALUES("2976", "14", "370", "4", "Leah_bean@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2977", "14", "370", "5", "I need some guidance on how to have productive, clear conversations with my partner about major life decisions, specifically marriage and children. I am indifferent about the gender of my counsellor. I am a new BC resident, no coverage yet (still waiting for a care card) and wanted to see what my options are for a low cost counselling in the interim (a single, focused individual session would probably suffice for now - possibility for a handful of couples sessions down the road if needed). I am best reached by email. Thank you, I look forward to hearing from you soon! Leah");
INSERT INTO `wp_gf_entry_meta` VALUES("2978", "14", "370", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2979", "14", "370", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2980", "14", "370", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("2981", "14", "370", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2982", "14", "370", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("2983", "14", "371", "1.3", "Kristy");
INSERT INTO `wp_gf_entry_meta` VALUES("2984", "14", "371", "1.6", "Hoffman");
INSERT INTO `wp_gf_entry_meta` VALUES("2985", "14", "371", "2", "39");
INSERT INTO `wp_gf_entry_meta` VALUES("2986", "14", "371", "3", "(613) 602-0571");
INSERT INTO `wp_gf_entry_meta` VALUES("2987", "14", "371", "4", "Bmdesigns@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2988", "14", "371", "5", "I am looking to talk to someone about day to day issues as well as exploring the idea of counselling for past trauma related issues. \r\n\r\nI work in Victoria and live in Sooke so it is better for me to come during working hours. I prefer a female.");
INSERT INTO `wp_gf_entry_meta` VALUES("2989", "14", "371", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2990", "14", "371", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("2991", "14", "371", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("2992", "14", "372", "1.3", "Kathryn");
INSERT INTO `wp_gf_entry_meta` VALUES("2993", "14", "372", "1.6", "Robertson");
INSERT INTO `wp_gf_entry_meta` VALUES("2994", "14", "372", "2", "38");
INSERT INTO `wp_gf_entry_meta` VALUES("2995", "14", "372", "3", "(250) 882-1477");
INSERT INTO `wp_gf_entry_meta` VALUES("2996", "14", "372", "4", "kathrynnichol6@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("2997", "14", "372", "5", "Feeling inadequate and insecure \r\n Sometimes Depressed \r\nWould like to understand why I feel so awful about myself and no sense of security in my relationship ( which leads to problems)");
INSERT INTO `wp_gf_entry_meta` VALUES("2998", "14", "372", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("2999", "14", "372", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3000", "14", "372", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3001", "14", "372", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3002", "14", "372", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3003", "14", "373", "1.3", "Tasha");
INSERT INTO `wp_gf_entry_meta` VALUES("3004", "14", "373", "1.6", "Bray");
INSERT INTO `wp_gf_entry_meta` VALUES("3005", "14", "373", "2", "23");
INSERT INTO `wp_gf_entry_meta` VALUES("3006", "14", "373", "3", "(778) 679-1901");
INSERT INTO `wp_gf_entry_meta` VALUES("3007", "14", "373", "4", "nebray@live.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3008", "14", "373", "5", "Depression, anxiety, difficulty coping with daily life activities.");
INSERT INTO `wp_gf_entry_meta` VALUES("3009", "14", "373", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3010", "14", "373", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3011", "14", "373", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3012", "14", "373", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3013", "14", "373", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3014", "14", "374", "1.3", "Sheryll");
INSERT INTO `wp_gf_entry_meta` VALUES("3015", "14", "374", "1.6", "Tabamo");
INSERT INTO `wp_gf_entry_meta` VALUES("3016", "14", "374", "2", "1591 Glencraig Place");
INSERT INTO `wp_gf_entry_meta` VALUES("3017", "14", "374", "3", "(250) 580-1108");
INSERT INTO `wp_gf_entry_meta` VALUES("3018", "14", "374", "4", "tsheryll0@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3019", "14", "374", "5", "Recently got diagnosed with depression");
INSERT INTO `wp_gf_entry_meta` VALUES("3020", "14", "374", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3021", "14", "374", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3022", "14", "374", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3023", "14", "375", "1.3", "Tannis");
INSERT INTO `wp_gf_entry_meta` VALUES("3024", "14", "375", "1.6", "Henwood");
INSERT INTO `wp_gf_entry_meta` VALUES("3025", "14", "375", "2", "29");
INSERT INTO `wp_gf_entry_meta` VALUES("3026", "14", "375", "3", "(250) 893-5092");
INSERT INTO `wp_gf_entry_meta` VALUES("3027", "14", "375", "4", "tannis.lee@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3028", "14", "375", "5", "I  have various issues which include poor self esteem, dependence on a certain family member, greif of a parent, and my intimate relationships dont last, which I think has to do with my self esteem issues and in experience of healthy relationships. I would prefer a female therapist.");
INSERT INTO `wp_gf_entry_meta` VALUES("3029", "14", "375", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3030", "14", "375", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3031", "14", "375", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3032", "14", "375", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("3033", "14", "376", "1.3", "Randy and Cindy");
INSERT INTO `wp_gf_entry_meta` VALUES("3034", "14", "376", "1.6", "Leggett");
INSERT INTO `wp_gf_entry_meta` VALUES("3035", "14", "376", "2", "Randy age 55\r\nCindy age 57");
INSERT INTO `wp_gf_entry_meta` VALUES("3036", "14", "376", "3", "(250) 634-4902");
INSERT INTO `wp_gf_entry_meta` VALUES("3037", "14", "376", "4", "cinleg2@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3038", "14", "376", "5", "Hi \r\nArnie Toews suggested we see Amber Eves for marriage counselling. Our marriage is really falling apart but neither one wants to see it end.\r\nThank you");
INSERT INTO `wp_gf_entry_meta` VALUES("3039", "14", "376", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3040", "14", "376", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3041", "14", "376", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3042", "14", "376", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("3043", "14", "377", "1.3", "Siobhan");
INSERT INTO `wp_gf_entry_meta` VALUES("3044", "14", "377", "1.6", "Prasad");
INSERT INTO `wp_gf_entry_meta` VALUES("3045", "14", "377", "2", "27");
INSERT INTO `wp_gf_entry_meta` VALUES("3046", "14", "377", "3", "(226) 456-7436");
INSERT INTO `wp_gf_entry_meta` VALUES("3047", "14", "377", "4", "siobhan.sheo@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3048", "14", "377", "5", "No preference for male/female or time/day of week. I do have very bad anxiety which can very much affect my ability to answer a call so, if possible, if I don\'t answer please don\'t give up and try calling again either right after, later that day, or next day.\r\nThank You.");
INSERT INTO `wp_gf_entry_meta` VALUES("3049", "14", "377", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3050", "14", "377", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3051", "14", "377", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3052", "14", "377", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3053", "14", "377", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3054", "14", "378", "1.3", "Ash");
INSERT INTO `wp_gf_entry_meta` VALUES("3055", "14", "378", "1.6", "Chandler-Pease");
INSERT INTO `wp_gf_entry_meta` VALUES("3056", "14", "378", "2", "30");
INSERT INTO `wp_gf_entry_meta` VALUES("3057", "14", "378", "3", "(250) 882-0046");
INSERT INTO `wp_gf_entry_meta` VALUES("3058", "14", "378", "4", "ashcp@live.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3059", "14", "378", "5", "I don\'t really know what to say here. I feel emotionless 90% of the time, and when I do feel emotion it is almost always irritation or cynicism - sometimes outright anger. It has become progressively worse over the past two years to the point now where I suspect, though I am unsure, that I am using alcohol as a crutch for my inability to convey emotion (the detachment came first, it was not at the behest of the alcohol - for the record). I recognize the state that I\'m in and the potential danger, but I find myself enjoying the emptiness and self-imposed isolation and as such don\'t really want to change my situation. There are rare moments, like this, where I can convince myself that no, I do need help - which is difficult since I am ex-army and the concept of emotional vulnerability is anathema to me. I work from 1530 to 2400hrs during the week at a hotel. I would prefer a male therapist. I have medical coverage (Morneau Shepell) through my work.");
INSERT INTO `wp_gf_entry_meta` VALUES("3060", "14", "378", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3061", "14", "378", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3062", "14", "378", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3063", "14", "378", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3064", "14", "379", "1.3", "Anders");
INSERT INTO `wp_gf_entry_meta` VALUES("3065", "14", "379", "1.6", "Jenstad-Fritz");
INSERT INTO `wp_gf_entry_meta` VALUES("3066", "14", "379", "2", "8\r\n(Mom = Janelle Jenstad. Janelle is filling out the form for Anders.)");
INSERT INTO `wp_gf_entry_meta` VALUES("3067", "14", "379", "3", "(250) 858-7269");
INSERT INTO `wp_gf_entry_meta` VALUES("3068", "14", "379", "4", "janellejenstad@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3069", "14", "379", "5", "Current issues: ADHD; sensory processing issues; anxiety about school; delayed academic achievement; impulsivity; threats of self-harm; physical violence towards older brother; swearing; lying; destruction of property; running away; separation and divorce of parents; transitions from one parent to another.\r\n\r\nHistory: Has witnessed domestic violence and been physically abused.\r\n\r\nAnders has many strengths: High verbal fluency, performance skills, musical talent, confidence on stage, good with younger children, socially adept, highly creative and imaginative, funny, athletically talented (rock climbing, skateboarding, biking, ballet, dance in general, most individual sports).");
INSERT INTO `wp_gf_entry_meta` VALUES("3070", "14", "379", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3071", "14", "379", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3072", "14", "379", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3073", "14", "379", "9.1", "$120-80");
INSERT INTO `wp_gf_entry_meta` VALUES("3074", "14", "380", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("3075", "14", "380", "1.6", "Hogg");
INSERT INTO `wp_gf_entry_meta` VALUES("3076", "14", "380", "2", "46");
INSERT INTO `wp_gf_entry_meta` VALUES("3077", "14", "380", "3", "(250) 995-9200");
INSERT INTO `wp_gf_entry_meta` VALUES("3078", "14", "380", "4", "karh01@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3079", "14", "380", "5", "I am looking for a spiritual director and would like to get in touch with Barb Baillie.\r\n\r\nI can be available evenings, weekends, and some Mondays.");
INSERT INTO `wp_gf_entry_meta` VALUES("3080", "14", "380", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3081", "14", "380", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3082", "14", "380", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3083", "14", "380", "9.1", "$120-80");
INSERT INTO `wp_gf_entry_meta` VALUES("3084", "14", "381", "1.3", "Genevieve");
INSERT INTO `wp_gf_entry_meta` VALUES("3085", "14", "381", "1.6", "Bartlam");
INSERT INTO `wp_gf_entry_meta` VALUES("3086", "14", "381", "2", "30");
INSERT INTO `wp_gf_entry_meta` VALUES("3087", "14", "381", "3", "(778) 533-0128");
INSERT INTO `wp_gf_entry_meta` VALUES("3088", "14", "381", "4", "bartlamgenevieve@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3089", "14", "381", "5", "I have been dealing with depression and anxiety for as long as I remember, it doesn\'t interfere dramatically with my daily life but does negatively affect some close relationships as well as my sense of self. I have never been to see someone about it before. I am in school full time, 8:30-4:30 Mon-Friday. I do not have any extended health coverage and only have time to work very part time. I have no preference over gender of a therapist");
INSERT INTO `wp_gf_entry_meta` VALUES("3090", "14", "381", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3091", "14", "381", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3092", "14", "381", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3093", "14", "381", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3094", "14", "382", "1.3", "Tim");
INSERT INTO `wp_gf_entry_meta` VALUES("3095", "14", "382", "1.6", "Stewart");
INSERT INTO `wp_gf_entry_meta` VALUES("3096", "14", "382", "2", "32");
INSERT INTO `wp_gf_entry_meta` VALUES("3097", "14", "382", "3", "(250) 884-8869");
INSERT INTO `wp_gf_entry_meta` VALUES("3098", "14", "382", "4", "Timraystew@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3099", "14", "382", "5", "Spiritual direction\r\nPastoral counseling \r\nCoverage for registered counselors");
INSERT INTO `wp_gf_entry_meta` VALUES("3100", "14", "382", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3101", "14", "382", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3102", "14", "382", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("3103", "14", "383", "1.3", "Josh");
INSERT INTO `wp_gf_entry_meta` VALUES("3104", "14", "383", "1.6", "Clark");
INSERT INTO `wp_gf_entry_meta` VALUES("3105", "14", "383", "2", "35 years old");
INSERT INTO `wp_gf_entry_meta` VALUES("3106", "14", "383", "3", "(902) 220-8252");
INSERT INTO `wp_gf_entry_meta` VALUES("3107", "14", "383", "4", "jrclark@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3108", "14", "383", "5", "Hi, I am writing to inquire about a certain type of counseling experience.  I\'m wondering if anyone who works at South Island Center has experience working with people who have a speech impediment?  I\'m not looking for speech therapy, but more-so someone who has worked with a client who has a mental health issue and also a speech impediment.  I struggle with anxiety and also have a severe stutter, so I\'m looking for someone to talk to who maybe has worked with someone like me before.  If I could be contacted by email, that would be great.  Thanks");
INSERT INTO `wp_gf_entry_meta` VALUES("3109", "14", "383", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3110", "14", "383", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3111", "14", "383", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3112", "14", "383", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("3113", "14", "384", "1.3", "Kenji");
INSERT INTO `wp_gf_entry_meta` VALUES("3114", "14", "384", "1.6", "Fuse");
INSERT INTO `wp_gf_entry_meta` VALUES("3115", "14", "384", "2", "51");
INSERT INTO `wp_gf_entry_meta` VALUES("3116", "14", "384", "3", "(250) 381-6502");
INSERT INTO `wp_gf_entry_meta` VALUES("3117", "14", "384", "4", "kenjijamesfuse@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3118", "14", "384", "5", "Relationship problems; I would like to learn techniques to deal with anger issues in regards to my primary relationship\r\nMy schedule is varied, and much of it is working from home, so I am fairly flexible\r\nI have no preference for a male or female therapist\r\nI do not have extended health benefits");
INSERT INTO `wp_gf_entry_meta` VALUES("3119", "14", "384", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3120", "14", "384", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("3121", "14", "384", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3122", "14", "384", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3123", "14", "385", "1.3", "Laura");
INSERT INTO `wp_gf_entry_meta` VALUES("3124", "14", "385", "1.6", "Jones");
INSERT INTO `wp_gf_entry_meta` VALUES("3125", "14", "385", "2", "29");
INSERT INTO `wp_gf_entry_meta` VALUES("3126", "14", "385", "3", "(250) 889-5127");
INSERT INTO `wp_gf_entry_meta` VALUES("3127", "14", "385", "4", "ljones87.lj@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3128", "14", "385", "5", "On social assistance\r\nWork injury.\r\n2 years of recovery.\r\nTraumatic events.\r\nDiagnosed with g.a.d.\r\nDiagnosed with depression.\r\nSaw psychiatrist through duncan mental health.\r\n\r\nAvailability: mon-thurs.\r\nNo preference as to male or female therapist.\r\nNo extended health benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("3129", "14", "385", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3130", "14", "385", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3131", "14", "385", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3132", "14", "385", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3133", "14", "385", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3134", "14", "386", "1.3", "Rachelle");
INSERT INTO `wp_gf_entry_meta` VALUES("3135", "14", "386", "1.6", "Premack");
INSERT INTO `wp_gf_entry_meta` VALUES("3136", "14", "386", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("3137", "14", "386", "3", "(778) 533-3555");
INSERT INTO `wp_gf_entry_meta` VALUES("3138", "14", "386", "4", "rachellepremack@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3139", "14", "386", "5", "Mother is diagnosed bipolar, spent time in Centre For Adult Psychiatry (CAP) in Brandon, MB. \r\nI\'ve been exhibiting behaviours consistently for past decade and am ready for diagnosis/ mild medication if recommended. \r\nUnable to focus or stay in job long term. Problem for debt and finances.\r\nWork 7am-5:30pm daily, bus transit- I could make last session of weekday or anytime weekend. Prefer female therapist if available, also fine with male but not first choice. \r\nNeed 180 more hours at work at least before possibility of benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("3140", "14", "386", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3141", "14", "386", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3142", "14", "386", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("3143", "14", "386", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3144", "14", "386", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("3145", "14", "387", "1.3", "Matthew");
INSERT INTO `wp_gf_entry_meta` VALUES("3146", "14", "387", "1.6", "DE Souza");
INSERT INTO `wp_gf_entry_meta` VALUES("3147", "14", "387", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("3148", "14", "387", "3", "(613) 483-7424");
INSERT INTO `wp_gf_entry_meta` VALUES("3149", "14", "387", "4", "mdesouzaphoto@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3150", "14", "387", "5", "- female therapist preferred \r\n- looking for counsel regarding relationship communication, conflict in relationships, letting go of/forgiving negative past experiences, and future life steps \r\n- the above phone number provided is my girlfriend\'s, as I do not have my own at this time; however, I respond to emails promptly");
INSERT INTO `wp_gf_entry_meta` VALUES("3151", "14", "387", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3152", "14", "387", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3153", "14", "387", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3154", "14", "387", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3155", "3", "388", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("3156", "3", "388", "1.6", "Coke");
INSERT INTO `wp_gf_entry_meta` VALUES("3157", "3", "388", "2", "Jencole9@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3158", "3", "388", "3.1", "302-2881 Peatt Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("3159", "3", "388", "3.3", "Langford");
INSERT INTO `wp_gf_entry_meta` VALUES("3160", "3", "388", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3161", "3", "388", "3.5", "V9B 3V7");
INSERT INTO `wp_gf_entry_meta` VALUES("3162", "3", "388", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3163", "3", "388", "4", "(403) 415-4823");
INSERT INTO `wp_gf_entry_meta` VALUES("3164", "3", "388", "7", "3/9/2017");
INSERT INTO `wp_gf_entry_meta` VALUES("3165", "3", "388", "5", "Family Systems");
INSERT INTO `wp_gf_entry_meta` VALUES("3167", "14", "389", "1.3", "William");
INSERT INTO `wp_gf_entry_meta` VALUES("3168", "14", "389", "1.6", "Shipwright");
INSERT INTO `wp_gf_entry_meta` VALUES("3169", "14", "389", "2", "7");
INSERT INTO `wp_gf_entry_meta` VALUES("3170", "14", "389", "3", "(250) 415-6156");
INSERT INTO `wp_gf_entry_meta` VALUES("3171", "14", "389", "4", "jraebryant@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3172", "14", "389", "5", "I\'m looking for counselling for my son William who is 7 , to learn coping skills for his anxiety and possible ADHD.  I\'m hoping for an appointment on any Wednesday or Thursday after school around 4:00 pm , he may like seeing a male counsellor but open to either, and looking for play therapy, Thankyou ! Jayna ( mother)");
INSERT INTO `wp_gf_entry_meta` VALUES("3173", "14", "389", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3174", "14", "389", "7", "http://localhost:8888/TestSICPage/wordpress/");
INSERT INTO `wp_gf_entry_meta` VALUES("3175", "14", "389", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3176", "14", "389", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3177", "14", "390", "1.3", "Emily");
INSERT INTO `wp_gf_entry_meta` VALUES("3178", "14", "390", "1.6", "Savage");
INSERT INTO `wp_gf_entry_meta` VALUES("3179", "14", "390", "2", "27");
INSERT INTO `wp_gf_entry_meta` VALUES("3180", "14", "390", "3", "(250) 882-1612");
INSERT INTO `wp_gf_entry_meta` VALUES("3181", "14", "390", "4", "Bellasavage52@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3182", "14", "390", "5", "Concerns: Anxiety, depression, addictions, relationship issues ( professionally and personal) stress, anger, body image, grief. \r\nI work Friday to Monday from 930 am to 6 pm. Tues, Wednesdays and Thursdays are best to meet. I would prefer a female therapist but am open to a male as well if needed. \r\nI have benefits through work, but only for clinical psychologists/ psychiatrists I believe.");
INSERT INTO `wp_gf_entry_meta` VALUES("3183", "14", "390", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3184", "14", "390", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3185", "14", "390", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3186", "14", "390", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3187", "14", "391", "1.3", "sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("3188", "14", "391", "1.6", "spencer");
INSERT INTO `wp_gf_entry_meta` VALUES("3189", "14", "391", "2", "21");
INSERT INTO `wp_gf_entry_meta` VALUES("3190", "14", "391", "3", "(250) 915-0006");
INSERT INTO `wp_gf_entry_meta` VALUES("3191", "14", "391", "4", "spencer.sarah@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3192", "14", "391", "5", "I am looking for income based counseling for mainly my little brother, but for my boyfriend and myself. My little brother recently ran away from parents to live with me after failing university for the second time. Depression and lying are issues with him.");
INSERT INTO `wp_gf_entry_meta` VALUES("3193", "14", "391", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3194", "14", "391", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3195", "14", "391", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3196", "14", "391", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3197", "14", "391", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3198", "3", "392", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("3199", "3", "392", "1.6", "Perry");
INSERT INTO `wp_gf_entry_meta` VALUES("3200", "3", "392", "2", "jennifer@exedra.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3201", "3", "392", "3.1", "#14-6038 Sterling Dr");
INSERT INTO `wp_gf_entry_meta` VALUES("3202", "3", "392", "3.3", "Duncan");
INSERT INTO `wp_gf_entry_meta` VALUES("3203", "3", "392", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3204", "3", "392", "3.5", "V9L 5K4");
INSERT INTO `wp_gf_entry_meta` VALUES("3205", "3", "392", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3206", "3", "392", "4", "(250) 748-3250");
INSERT INTO `wp_gf_entry_meta` VALUES("3207", "3", "392", "7", "January31, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("3208", "3", "392", "5", "Pastoral Care Team Dialogue");
INSERT INTO `wp_gf_entry_meta` VALUES("3210", "14", "393", "1.3", "Malisa");
INSERT INTO `wp_gf_entry_meta` VALUES("3211", "14", "393", "1.6", "Cwing");
INSERT INTO `wp_gf_entry_meta` VALUES("3212", "14", "393", "2", "12840 NE 21st Place");
INSERT INTO `wp_gf_entry_meta` VALUES("3213", "14", "393", "3", "(626) 361-3080");
INSERT INTO `wp_gf_entry_meta` VALUES("3214", "14", "393", "4", "malisa.cwing@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3215", "14", "393", "5", "Hi,\r\n \r\nI am Malisa Cwing.\r\n\r\nI was reviewing your company\'s website and believe our Hospice and Palliative Care Industry Contact List would make a big impact on your email marketing and prospecting efforts.\r\n\r\nAvailable Titles for Hospice and Palliative Care Industry Users Email List: Decision Makers, CEO, CFO, President, Chief Clinical Officer, Chief Compliance Officers, Executive Director, Hospice Medical Director, Palliative Care Program Manager, Hospice/Hospice Provisional Provider, Palliative/Spiritual Care Provider, Health Care Providers, Homecare Providers, Doctors, Nurses, Physician, Pharmacists, Psychologists, Nursing Assistants, Nurse Practitioner, Clinical Care Coordinator, Clinical Supervisor, Care Giver, Administrator, Hospice Care Consultant, Counselors, Social Workers, Healthcare Professionals, Services Provider, Home Care Aides, Hospice Agencies, Nursing Home/Hospitals and Others.\r\n\r\nPlease fill in your exact Target criteria in the below mentioned format, So that I can run counts and get back to you with samples and benefits for your review.\r\n \r\n Target Titles: _________ Target Industry: ______________   Target Geography: _____________\r\n \r\nWe have complete contacts details and verified e-mail address across all industry.\r\n 	\r\nList suitable for: Direct Mailing, Email Marketing, Tele Marketing and Fax Marketing.\r\n\r\nOur list includes: Name, title, Company Name, Permission Based E-mail address, Contact number, address and many more.\r\n\r\nGuarantee: We guarantee up to 90% on our lists. If anything does not meet our guarantee agreement, weâ€™d replace with fresh records and complete Ownership of list.\r\n  \r\nLook forward to your response. Thank you so much for reading my email even in your busy schedule.\r\n \r\nWarm Regards,\r\n\r\nMalisa Cwing\r\nMarketing Executive\r\nUS Data - European Data - Email Append - Data Append - Technology Specific Data - Email Marketing.\r\n12840 NE 21st Place, Bellevue, WA 98005, United States\r\nEmail: malisa.cwing@outlook.com\r\n________________________________________\r\nIf you\'re not interested please reply subject line as \"Leave Out\".");
INSERT INTO `wp_gf_entry_meta` VALUES("3216", "14", "393", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3217", "14", "393", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3218", "14", "393", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3219", "14", "394", "1.3", "Rachel");
INSERT INTO `wp_gf_entry_meta` VALUES("3220", "14", "394", "1.6", "Jones");
INSERT INTO `wp_gf_entry_meta` VALUES("3221", "14", "394", "2", "20");
INSERT INTO `wp_gf_entry_meta` VALUES("3222", "14", "394", "3", "(250) 709-8652");
INSERT INTO `wp_gf_entry_meta` VALUES("3223", "14", "394", "4", "rachelvnjones@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3224", "14", "394", "5", "Looking to work through issues related to past sexual abuse and other emotional issues. I usually have Tuesday, Wednesday, and Thursday off. On Friday and Saturday I am off work at 1:30 so I am available then. I don\'t have a preference about the gender of therapist. I do not have health benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("3225", "14", "394", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3226", "14", "394", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3227", "14", "394", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3228", "14", "394", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3229", "14", "394", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3230", "3", "395", "1.3", "Joy");
INSERT INTO `wp_gf_entry_meta` VALUES("3231", "3", "395", "1.6", "Gillett");
INSERT INTO `wp_gf_entry_meta` VALUES("3232", "3", "395", "2", "j.gillett@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3233", "3", "395", "3.1", "1103-325 Maitland St");
INSERT INTO `wp_gf_entry_meta` VALUES("3234", "3", "395", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("3235", "3", "395", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3236", "3", "395", "3.5", "V9A 7E9");
INSERT INTO `wp_gf_entry_meta` VALUES("3237", "3", "395", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3238", "3", "395", "4", "(778) 350-5801");
INSERT INTO `wp_gf_entry_meta` VALUES("3239", "3", "395", "7", "January 28, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("3240", "3", "395", "5", "Me and my personality");
INSERT INTO `wp_gf_entry_meta` VALUES("3242", "14", "396", "1.3", "Lisa");
INSERT INTO `wp_gf_entry_meta` VALUES("3243", "14", "396", "1.6", "Morrison");
INSERT INTO `wp_gf_entry_meta` VALUES("3244", "14", "396", "2", "48");
INSERT INTO `wp_gf_entry_meta` VALUES("3245", "14", "396", "3", "(306) 617-9446");
INSERT INTO `wp_gf_entry_meta` VALUES("3246", "14", "396", "4", "borve25@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3247", "14", "396", "5", "Grief counselling for loss of parents - my father to pancreatic cancer where I provided the palliative care and my mother to pneumonia within 2 yrs of each other. Prefer a female counsellor please");
INSERT INTO `wp_gf_entry_meta` VALUES("3248", "14", "396", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3249", "14", "396", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3250", "14", "396", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3251", "3", "397", "1.3", "Maureen");
INSERT INTO `wp_gf_entry_meta` VALUES("3252", "3", "397", "1.6", "Matthew");
INSERT INTO `wp_gf_entry_meta` VALUES("3253", "3", "397", "2", "mmatthew@vepc.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3254", "3", "397", "3.1", "202-1640 Oak Bay Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("3255", "3", "397", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("3256", "3", "397", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3257", "3", "397", "3.5", "V8R 1B2");
INSERT INTO `wp_gf_entry_meta` VALUES("3258", "3", "397", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3259", "3", "397", "4", "(250) 475-6677");
INSERT INTO `wp_gf_entry_meta` VALUES("3260", "3", "397", "7", "2/2/2017");
INSERT INTO `wp_gf_entry_meta` VALUES("3261", "3", "397", "5", "The Ebb & Flow of Life");
INSERT INTO `wp_gf_entry_meta` VALUES("3263", "3", "398", "1.3", "Janet");
INSERT INTO `wp_gf_entry_meta` VALUES("3264", "3", "398", "1.6", "Sawatsky");
INSERT INTO `wp_gf_entry_meta` VALUES("3265", "3", "398", "2", "janet.sawatsky@gov.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3266", "3", "398", "3.1", "#66 2600 Ferguson Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("3267", "3", "398", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("3268", "3", "398", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3269", "3", "398", "3.5", "V8M2C1");
INSERT INTO `wp_gf_entry_meta` VALUES("3270", "3", "398", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3271", "3", "398", "4", "(250) 588-2789");
INSERT INTO `wp_gf_entry_meta` VALUES("3272", "3", "398", "7", "Feb/02/2017");
INSERT INTO `wp_gf_entry_meta` VALUES("3273", "3", "398", "5", "Ebb and Fow course ( Feb2 - March 9 2017 )");
INSERT INTO `wp_gf_entry_meta` VALUES("3275", "14", "399", "1.3", "Melissa");
INSERT INTO `wp_gf_entry_meta` VALUES("3276", "14", "399", "1.6", "Westaff");
INSERT INTO `wp_gf_entry_meta` VALUES("3277", "14", "399", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("3278", "14", "399", "3", "(306) 501-7114");
INSERT INTO `wp_gf_entry_meta` VALUES("3279", "14", "399", "4", "mel.westaff@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3280", "14", "399", "5", "Needing grief counselling, advising on life-transition, career change etc. \r\nAvailable Monday-Friday 3:30 pm and later\r\nPrefer a female therapist");
INSERT INTO `wp_gf_entry_meta` VALUES("3281", "14", "399", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3282", "14", "399", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3283", "14", "399", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3284", "14", "399", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3285", "14", "400", "1.3", "Jaclyn");
INSERT INTO `wp_gf_entry_meta` VALUES("3286", "14", "400", "1.6", "Casler");
INSERT INTO `wp_gf_entry_meta` VALUES("3287", "14", "400", "2", "31");
INSERT INTO `wp_gf_entry_meta` VALUES("3288", "14", "400", "3", "(250) 213-5247");
INSERT INTO `wp_gf_entry_meta` VALUES("3289", "14", "400", "4", "Jaclyn.casler@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3290", "14", "400", "5", "Relationship conflict. My spouse and I are very different people but we also share many things. We\'ve been together for almost 8 years so we have a significant life history. But we have yet to learn how to manage life stress collaboratively and or make future goals. He is 42 and gender queer, coming from a family of abuse.");
INSERT INTO `wp_gf_entry_meta` VALUES("3291", "14", "400", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3292", "14", "400", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3293", "14", "400", "9.1", "$120-80");
INSERT INTO `wp_gf_entry_meta` VALUES("3294", "14", "401", "1.3", "Michaela");
INSERT INTO `wp_gf_entry_meta` VALUES("3295", "14", "401", "1.6", "Baur-Samborn");
INSERT INTO `wp_gf_entry_meta` VALUES("3296", "14", "401", "2", "22");
INSERT INTO `wp_gf_entry_meta` VALUES("3297", "14", "401", "3", "(403) 968-8247");
INSERT INTO `wp_gf_entry_meta` VALUES("3298", "14", "401", "4", "Michaela.baursamborn@hotmail.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3299", "14", "401", "5", "I am looking for counselling services for me and my boyfriend of 3 years. We are available evenings and weekends, and would be happy with either a male or female counsellor. We don\'t have any extended health benefits that we are aware of, but are looking into it. We are struggling with balancing both of our needs and expectations in our relationship, mostly relating to cleaning and diet and exercise.");
INSERT INTO `wp_gf_entry_meta` VALUES("3300", "14", "401", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3301", "14", "401", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3302", "14", "401", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3303", "14", "401", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("3304", "14", "401", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3305", "14", "402", "1.3", "Amy");
INSERT INTO `wp_gf_entry_meta` VALUES("3306", "14", "402", "1.6", "Collins");
INSERT INTO `wp_gf_entry_meta` VALUES("3307", "14", "402", "2", "32");
INSERT INTO `wp_gf_entry_meta` VALUES("3308", "14", "402", "3", "(778) 668-8425");
INSERT INTO `wp_gf_entry_meta` VALUES("3309", "14", "402", "4", "amyonsidewalks@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3310", "14", "402", "5", "anxiety, depression, self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3311", "14", "402", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3312", "14", "402", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3313", "14", "402", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3314", "14", "402", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("3315", "14", "402", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3316", "14", "402", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3317", "14", "403", "1.3", "Adrian");
INSERT INTO `wp_gf_entry_meta` VALUES("3318", "14", "403", "1.6", "Chalifour");
INSERT INTO `wp_gf_entry_meta` VALUES("3319", "14", "403", "2", "33");
INSERT INTO `wp_gf_entry_meta` VALUES("3320", "14", "403", "3", "(250) 884-3302");
INSERT INTO `wp_gf_entry_meta` VALUES("3321", "14", "403", "4", "adrian.chalifour@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3322", "14", "403", "5", "Hello, I am looking for regular, ongoing counseling/therapy to help me work through strong feelings of depression and anxiety that I have been struggling with for just over a year now.\r\n- I am an artist/musician now in my 30\'s and coping with a sense of failure after spending years working hard towards goals that haven\'t materialized\r\n- I am a new, first-time father of a baby born in December. This was an unplanned event that has knocked the wind out of my sails. Mother and I are together but our relationship is under a lot of strain.\r\n- General issues of low self-worth, failure, lack of confidence/faith in myself, anger, etc. that seem to culminate into major depressive episodes every 5 or so years.\r\n- I was raised in the charismatic Christian faith and was an active, passionate believer for most of my 20\'s, until I went through a divorce at 28. I accessed prayer counseling in my mid-twenties to help deal with depression, but have struggled for the past few years to reconcile any faith/spiritual-based treatment with my disillusionment with the church and religion.\r\n- I occasionally accessed short-term counseling from Homewood Health through my employer (BC Public Service) over the past couple years, but struggled to maintain any consistency because I had to book each appointment individually and was limited to 6 sessions per issue.\r\n- I was diagnosed with depression by a physician and prescribed antidepressants, but I haven\'t started taking them.\r\n\r\nI\'d like to try more consistent, ongoing counseling (e.g. once per week) before considering antidepressants. My hope is to find a counselor who can help me progress beyond just verbal processing and \'talking it out\', towards a deeper exploration of the underlying thought patterns, beliefs, etc. that may influence my immediate thoughts and behaviour.\r\n\r\nI work full-time daytime hours (9-5:30) with every second Friday off.");
INSERT INTO `wp_gf_entry_meta` VALUES("3323", "14", "403", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3324", "14", "403", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3325", "14", "403", "9.1", "$120-80");
INSERT INTO `wp_gf_entry_meta` VALUES("3326", "14", "404", "1.3", "Jasper");
INSERT INTO `wp_gf_entry_meta` VALUES("3327", "14", "404", "1.6", "Thomas");
INSERT INTO `wp_gf_entry_meta` VALUES("3328", "14", "404", "2", "21");
INSERT INTO `wp_gf_entry_meta` VALUES("3329", "14", "404", "3", "(250) 702-6938");
INSERT INTO `wp_gf_entry_meta` VALUES("3330", "14", "404", "4", "madcaparchaeologist@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3331", "14", "404", "5", "Depression, stress, just relocated to Victoria and have no clinical supports here. UVIC counseling services and Dr. Brydon recommended finding an off-campus councilor as the resources there are swamped.\r\n\r\nSchedule:\r\nMo: After 2:30pm\r\nTues: Pre 11:30am and after 1:30pm\r\nWed: Pre 11:30am and after 1:30pm\r\nThu: After 2:30pm\r\nFri: Pre 11:30am and after 1:30pm\r\nWeekends: open\r\n\r\nTherapist preference: male\r\n\r\nExtended medical through UVIC student plan.");
INSERT INTO `wp_gf_entry_meta` VALUES("3332", "14", "404", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3333", "14", "404", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3334", "14", "404", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3335", "14", "404", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3336", "14", "405", "1.3", "Mawney");
INSERT INTO `wp_gf_entry_meta` VALUES("3337", "14", "405", "1.6", "Somerville");
INSERT INTO `wp_gf_entry_meta` VALUES("3338", "14", "405", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("3339", "14", "405", "3", "(250) 896-0447");
INSERT INTO `wp_gf_entry_meta` VALUES("3340", "14", "405", "4", "mawneysomerville@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3341", "14", "405", "5", "Experiencing symptoms of anxiety and depression. Would prefer a female therapist.");
INSERT INTO `wp_gf_entry_meta` VALUES("3342", "14", "405", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3343", "14", "405", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3344", "14", "405", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3345", "14", "405", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3346", "14", "406", "1.3", "Manolito");
INSERT INTO `wp_gf_entry_meta` VALUES("3347", "14", "406", "1.6", "Gulla");
INSERT INTO `wp_gf_entry_meta` VALUES("3348", "14", "406", "2", "63");
INSERT INTO `wp_gf_entry_meta` VALUES("3349", "14", "406", "3", "(778) 967-3585");
INSERT INTO `wp_gf_entry_meta` VALUES("3350", "14", "406", "4", "mgulla7@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3351", "14", "406", "5", "I have persistent pain in my lower right abdomen. Medical tests turn out negative. My doctor says the pain could be the result of emotional stress, trauma or past experiences. He recommended me to you cause he said you might be able to help. Do you do prayer healing? I am on government Income Assistance. My annual income is less than $10,000. I prefer female therapist.");
INSERT INTO `wp_gf_entry_meta` VALUES("3352", "14", "406", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3353", "14", "406", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3354", "14", "406", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3355", "3", "407", "1.3", "Jamie");
INSERT INTO `wp_gf_entry_meta` VALUES("3356", "3", "407", "1.6", "Walden");
INSERT INTO `wp_gf_entry_meta` VALUES("3357", "3", "407", "2", "01jwalden@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3358", "3", "407", "3.1", "1807 Barrett Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("3359", "3", "407", "3.3", "North Saanich");
INSERT INTO `wp_gf_entry_meta` VALUES("3360", "3", "407", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3361", "3", "407", "3.5", "V8l5a3");
INSERT INTO `wp_gf_entry_meta` VALUES("3362", "3", "407", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3363", "3", "407", "4", "(250) 818-0433");
INSERT INTO `wp_gf_entry_meta` VALUES("3364", "3", "407", "7", "Mar/18/2017");
INSERT INTO `wp_gf_entry_meta` VALUES("3365", "3", "407", "5", "Me and my personality..Intro to Myers Briggs");
INSERT INTO `wp_gf_entry_meta` VALUES("3367", "14", "408", "1.3", "Erin");
INSERT INTO `wp_gf_entry_meta` VALUES("3368", "14", "408", "1.6", "Bonin");
INSERT INTO `wp_gf_entry_meta` VALUES("3369", "14", "408", "2", "20");
INSERT INTO `wp_gf_entry_meta` VALUES("3370", "14", "408", "3", "(604) 902-1488");
INSERT INTO `wp_gf_entry_meta` VALUES("3371", "14", "408", "4", "erinbonin@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3372", "14", "408", "5", "Depression, anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3373", "14", "408", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3374", "14", "408", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3375", "14", "408", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3376", "14", "408", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3377", "14", "409", "1.3", "Aaron");
INSERT INTO `wp_gf_entry_meta` VALUES("3378", "14", "409", "1.6", "Brook");
INSERT INTO `wp_gf_entry_meta` VALUES("3379", "14", "409", "2", "27 (September 12th, 1989)");
INSERT INTO `wp_gf_entry_meta` VALUES("3380", "14", "409", "3", "(250) 888-8169");
INSERT INTO `wp_gf_entry_meta` VALUES("3381", "14", "409", "4", "aaronbrook@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3382", "14", "409", "5", "I have some extended coverage from GWL, but I don\'t believe it includes counselling apart from psychologists.  Have history with psychiatry and anti-depressants, but been flying solo for about a year and a half now.");
INSERT INTO `wp_gf_entry_meta` VALUES("3383", "14", "409", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3384", "14", "409", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3385", "14", "409", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("3386", "14", "409", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3387", "14", "409", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3388", "14", "410", "1.3", "Milah");
INSERT INTO `wp_gf_entry_meta` VALUES("3389", "14", "410", "1.6", "Smith");
INSERT INTO `wp_gf_entry_meta` VALUES("3390", "14", "410", "2", "33");
INSERT INTO `wp_gf_entry_meta` VALUES("3391", "14", "410", "3", "(778) 350-1983");
INSERT INTO `wp_gf_entry_meta` VALUES("3392", "14", "410", "4", "milahrsmith@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3393", "14", "410", "5", "I would like support with some grief issues and ongoing support with insecurity and I would prefer a female counsellor.");
INSERT INTO `wp_gf_entry_meta` VALUES("3394", "14", "410", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3395", "14", "410", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3396", "14", "410", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3397", "14", "411", "1.3", "Michael");
INSERT INTO `wp_gf_entry_meta` VALUES("3398", "14", "411", "1.6", "Llarena");
INSERT INTO `wp_gf_entry_meta` VALUES("3399", "14", "411", "2", "23");
INSERT INTO `wp_gf_entry_meta` VALUES("3400", "14", "411", "3", "(778) 587-7488");
INSERT INTO `wp_gf_entry_meta` VALUES("3401", "14", "411", "4", "michael.llarena21@gmail.comme");
INSERT INTO `wp_gf_entry_meta` VALUES("3402", "14", "411", "5", "Me and my girlfriend are having a baby in july and are having relationship problems and would like some help.  My girlfriend brandie is 26 and she has extended health benefits and we always have sunday monday and if possible a female therapiat . Thank you for your time");
INSERT INTO `wp_gf_entry_meta` VALUES("3403", "14", "411", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3404", "14", "411", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3405", "14", "411", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3406", "14", "411", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3407", "14", "412", "1.3", "Regan");
INSERT INTO `wp_gf_entry_meta` VALUES("3408", "14", "412", "1.6", "Shrumm");
INSERT INTO `wp_gf_entry_meta` VALUES("3409", "14", "412", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("3410", "14", "412", "3", "(250) 896-8266");
INSERT INTO `wp_gf_entry_meta` VALUES("3411", "14", "412", "4", "rshrumm@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3412", "14", "412", "5", "I have been diagnosed with depression and anxiety, and use to use UVic\'s counselling services when I was a student there. However, it has been over a year since I graduated, and I have been in a long depression slump. I have been taking on more and more projects to make the world a better place, but it has been crippling on my own health. I am feeling very overwhelmed.\r\n\r\nI prefer a female therapist, and I do not have extended health benefits. I work Tuesday to Saturday, 8 am to 5 pm. So I would be able to come in after 5pm or during the day on Mondays and Sundays.");
INSERT INTO `wp_gf_entry_meta` VALUES("3413", "14", "412", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3414", "14", "412", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3415", "14", "412", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3416", "14", "412", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("3417", "15", "413", "1", "Renaud Dufresne");
INSERT INTO `wp_gf_entry_meta` VALUES("3418", "15", "413", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3419", "15", "413", "10", "20/02/1996");
INSERT INTO `wp_gf_entry_meta` VALUES("3420", "15", "413", "4", "kingult@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3421", "15", "413", "7", "(250) 475-3839");
INSERT INTO `wp_gf_entry_meta` VALUES("3422", "15", "413", "3.1", "12-3535 Calumet Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("3423", "15", "413", "3.2", "12-3535 Calumet Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("3424", "15", "413", "3.3", "VICTORIA");
INSERT INTO `wp_gf_entry_meta` VALUES("3425", "15", "413", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3426", "15", "413", "3.5", "V8X 1V7");
INSERT INTO `wp_gf_entry_meta` VALUES("3427", "15", "413", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3428", "15", "413", "8", "Email:\r\nkingult@yahoo.ca\r\nor \r\nPhone:\r\n250-475-3839");
INSERT INTO `wp_gf_entry_meta` VALUES("3429", "15", "413", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("3430", "15", "413", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("3431", "15", "413", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3432", "15", "413", "17", "20 mg. citalopram");
INSERT INTO `wp_gf_entry_meta` VALUES("3433", "15", "413", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_gf_entry_meta` VALUES("3434", "14", "414", "1.3", "Ellen");
INSERT INTO `wp_gf_entry_meta` VALUES("3435", "14", "414", "1.6", "Reynolds");
INSERT INTO `wp_gf_entry_meta` VALUES("3436", "14", "414", "2", "47");
INSERT INTO `wp_gf_entry_meta` VALUES("3437", "14", "414", "3", "(250) 882-3616");
INSERT INTO `wp_gf_entry_meta` VALUES("3438", "14", "414", "4", "ellenandcharlie@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3439", "14", "414", "5", "Depression and anxiety related to life transition and work.");
INSERT INTO `wp_gf_entry_meta` VALUES("3440", "14", "414", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3441", "14", "414", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("3442", "14", "414", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3443", "14", "414", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3444", "14", "415", "1.3", "Adrienne");
INSERT INTO `wp_gf_entry_meta` VALUES("3445", "14", "415", "1.6", "Jopp");
INSERT INTO `wp_gf_entry_meta` VALUES("3446", "14", "415", "2", "38");
INSERT INTO `wp_gf_entry_meta` VALUES("3447", "14", "415", "3", "(250) 661-5462");
INSERT INTO `wp_gf_entry_meta` VALUES("3448", "14", "415", "4", "adriennejopp@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3449", "14", "415", "5", "For the last 4 years I have really been struggling in my marriage and my husband is not really interested in talking about it or participating in counselling. We have two little kids who are 2 and 4 and I do everything. All the cleaning, cooking, driving, grocery shopping etc, but I also fully provide financially for myself and the two kids which is very stressful for me. My husband works full time  and has a business on the side where he works on the weekend, so he is never home  but he doesn\'t make enough money to support us and he is not willing to make changes to his lifestyle in order to make enough money to support us. I am at the end of my rope and want a divorce.I prefer a female therapist and am available to come to appointments during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3450", "14", "415", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3451", "14", "415", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3452", "14", "415", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("3453", "14", "416", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("3454", "14", "416", "1.6", "Sabourin");
INSERT INTO `wp_gf_entry_meta` VALUES("3455", "14", "416", "2", "32");
INSERT INTO `wp_gf_entry_meta` VALUES("3456", "14", "416", "3", "(403) 703-5366");
INSERT INTO `wp_gf_entry_meta` VALUES("3457", "14", "416", "4", "jensabourin@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3458", "14", "416", "5", "Complete loss of drive and passion for advancing career, interests, hobbies and life. Probably depression. \r\nAnxiety. Though not at the point of full blown attacks anymore. Mostly social anxiety.\r\nInability to maintain friendships or regular contact. I\'ve been trying to work on it this year, but have not been very effective.  \r\nLoss/grief for a family member that I haven\'t been able to let go of for 5 years for some reason. \r\nVery low self confidence. \r\nRelationship issues. Four years ago I accepted that I am predominantly interested in women. However, I now have deep anxieties with being part of the community later in life. I have been single four years. I don\'t know how to talk to people anymore, and feel there may be a lot of expectations or judgments surrounding me being so new, yet older.  \r\nNote: I do have Graves Disease, so this could potentially be a contributing factor.");
INSERT INTO `wp_gf_entry_meta` VALUES("3459", "14", "416", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3460", "14", "416", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3461", "14", "416", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3462", "14", "416", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3463", "14", "416", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("3464", "14", "417", "1.3", "Evan");
INSERT INTO `wp_gf_entry_meta` VALUES("3465", "14", "417", "1.6", "Somerville");
INSERT INTO `wp_gf_entry_meta` VALUES("3466", "14", "417", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("3467", "14", "417", "3", "(250) 896-7545");
INSERT INTO `wp_gf_entry_meta` VALUES("3468", "14", "417", "4", "esomer_9@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3469", "14", "417", "5", "Anxiety: related to\r\n \r\nâž¢	Sleep \r\no	Difficulty falling asleep \r\no	Mild somniphobia â†’ Anxious to fall asleep\r\nâž¢	Hobbies\r\no	Exercise â†’ fixated / OCD / canâ€™t focus on anything else until complete unless set time pre determined \r\nâž¢	Physical health\r\no	IBS â†’ flare up when stressed / anxious / nervous \r\no	Eczema â†’ flare up when stressed / anxious / nervous \r\no	Picking â†’ constantly nails (+biting) / skin / chest / face\r\no	Acid Reflux â†’ exercise and stressed induced \r\nâž¢	Work\r\no	Stressed / anxious even when good day ahead/low stress \r\no	Anxious about only working part time \r\nâž¢	Tasks\r\no	Procrastinate despite feeling stressed \r\no	Constantly thinking â€˜what is happening nextâ€™ (canâ€™t live in moment) \r\no	Canâ€™t concentrate \r\n\r\nEmotion: related to\r\n\r\nâž¢	Hobbies: \r\no	Guitar â†’ â€˜what is the pointâ€™\r\no	Video gaming â†’ â€˜brain goes numb donâ€™t have to thinkâ€™\r\no	Exercise â†’ unrealistic goals \r\nâž¢	Affect: \r\no	Inappropriate to the situation \r\nâ€¢	Example: says happy when facial expression, body language, tone of voice all express low/sad/irritable â†’ becomes defensive and irrational when questioned or asked about it \r\nâž¢	Mood: \r\no	Low / sad\r\no	Foggy \r\no	Loss of interest â†’ sex/hobbies/work/exercise \r\no	Angry / irritable / restless \r\no	Glass half empty attitude about everything \r\no	Hopeless \r\nâ€¢	â€œlife isnâ€™t â€˜working outâ€™ no matter what I doâ€\r\nâ€¢	â€œwish/hope work would just let me go so I donâ€™t have to worry about itâ€ \r\no	fear of rejection â†’ distressing/hurtful work feedback from past    \r\n\r\nRelationships:\r\n\r\nâž¢	personal relationships â€“ wife \r\nâž¢	social â€“ talking over people / unable to focus \r\n\r\nPersonal:\r\n\r\nâž¢	self reflection / perspective \r\nâž¢	prayer \r\nâž¢	journaling \r\nâž¢	counselor\r\nâž¢	exercise\r\nâž¢	3 things each day thankful for \r\nâž¢	follow the rabbit trail â€“ ie what is the worst case scenario \r\n\r\nWant:\r\nâž¢	plan\r\nâž¢	goal / marked progress \r\nâž¢	help \r\nâž¢	assessment / diagnosis");
INSERT INTO `wp_gf_entry_meta` VALUES("3470", "14", "417", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3471", "14", "417", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3472", "14", "417", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3473", "14", "417", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3474", "14", "417", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("3475", "15", "418", "1", "Lidia White");
INSERT INTO `wp_gf_entry_meta` VALUES("3476", "15", "418", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("3477", "15", "418", "10", "Aug.4, 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("3478", "15", "418", "4", "lidia_44@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3479", "15", "418", "7", "(250) 896-3656");
INSERT INTO `wp_gf_entry_meta` VALUES("3480", "15", "418", "3.1", "111-3187 Shelbourne St.");
INSERT INTO `wp_gf_entry_meta` VALUES("3481", "15", "418", "3.3", "Victoria,");
INSERT INTO `wp_gf_entry_meta` VALUES("3482", "15", "418", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3483", "15", "418", "3.5", "V8P 3A6");
INSERT INTO `wp_gf_entry_meta` VALUES("3484", "15", "418", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3485", "15", "418", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("3486", "15", "418", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("3487", "15", "418", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("3488", "15", "418", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3489", "15", "418", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3490", "15", "418", "17", "Risperadal 1mg twice daily\r\nZoloft 100mg once a day in morning");
INSERT INTO `wp_gf_entry_meta` VALUES("3491", "15", "418", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_gf_entry_meta` VALUES("3492", "14", "419", "1.3", "Jake");
INSERT INTO `wp_gf_entry_meta` VALUES("3493", "14", "419", "1.6", "Zaiss");
INSERT INTO `wp_gf_entry_meta` VALUES("3494", "14", "419", "2", "41");
INSERT INTO `wp_gf_entry_meta` VALUES("3495", "14", "419", "3", "(250) 510-6720");
INSERT INTO `wp_gf_entry_meta` VALUES("3496", "14", "419", "4", "jakezaiss@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3497", "14", "419", "5", "I\'m worried my marriage is breaking down. Many of the issues that we\'ve been having are not going away. Things just seem to be magnifying. \r\nMy wife and I made a deal to each look into counselling.");
INSERT INTO `wp_gf_entry_meta` VALUES("3498", "14", "419", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3499", "14", "419", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3500", "14", "419", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3501", "14", "419", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3502", "14", "420", "1.3", "Mari-Etha");
INSERT INTO `wp_gf_entry_meta` VALUES("3503", "14", "420", "1.6", "Alston");
INSERT INTO `wp_gf_entry_meta` VALUES("3504", "14", "420", "2", "56");
INSERT INTO `wp_gf_entry_meta` VALUES("3505", "14", "420", "3", "(250) 598-4286");
INSERT INTO `wp_gf_entry_meta` VALUES("3506", "14", "420", "4", "marietha@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("3507", "14", "420", "5", "I have an extensive history of counseling through an abusive marriage, traumatic divorce, grief counseling (Dr. Philip Ney) following death of spouse, single parenting and most recent abusive marriage and presently legally separated.  Recent conflicts and loss and pain caused serious thoughts of suicide over the weekend. Friends and crisis line got me through the weekend. Coping enough to show up at work and exercise. Can\'t pray and can\'t talk to loved ones.  Too scared to communicate with children, pray or go to church.\r\n\r\nMargaret Andersen, please.");
INSERT INTO `wp_gf_entry_meta` VALUES("3508", "14", "420", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3509", "14", "420", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3510", "14", "420", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3511", "14", "420", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3512", "14", "421", "1.3", "Erin");
INSERT INTO `wp_gf_entry_meta` VALUES("3513", "14", "421", "1.6", "Harland");
INSERT INTO `wp_gf_entry_meta` VALUES("3514", "14", "421", "2", "30");
INSERT INTO `wp_gf_entry_meta` VALUES("3515", "14", "421", "3", "(250) 419-3366");
INSERT INTO `wp_gf_entry_meta` VALUES("3516", "14", "421", "4", "erinharland10@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3517", "14", "421", "5", "I work M-F until 3:30pm downtown, so appointments outside of that would work best for me. I prefer a female therapist. I have extended health benefits with Empire Life. One of my close friends passed away recently, so I would like counselling in helping to deal with the loss.");
INSERT INTO `wp_gf_entry_meta` VALUES("3518", "14", "421", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3519", "14", "421", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3520", "14", "421", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3521", "14", "421", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3522", "14", "422", "1.3", "Jacqueline");
INSERT INTO `wp_gf_entry_meta` VALUES("3523", "14", "422", "1.6", "Irvine");
INSERT INTO `wp_gf_entry_meta` VALUES("3524", "14", "422", "2", "29");
INSERT INTO `wp_gf_entry_meta` VALUES("3525", "14", "422", "3", "(778) 350-1050");
INSERT INTO `wp_gf_entry_meta` VALUES("3526", "14", "422", "4", "qui.est@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3527", "14", "422", "5", "Fiance and I both struggle with severe mood disorders. Looking for premarital / marriage preparedness counselling to help be ready to support each other fully. I am a UVic student, he works as a counter top manufacturer. Prefer a male therapist, but not too picky.");
INSERT INTO `wp_gf_entry_meta` VALUES("3528", "14", "422", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3529", "14", "422", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("3530", "14", "422", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3531", "14", "422", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3532", "14", "423", "1.3", "Crystal");
INSERT INTO `wp_gf_entry_meta` VALUES("3533", "14", "423", "1.6", "Derry");
INSERT INTO `wp_gf_entry_meta` VALUES("3534", "14", "423", "2", "24");
INSERT INTO `wp_gf_entry_meta` VALUES("3535", "14", "423", "3", "(778) 533-0463");
INSERT INTO `wp_gf_entry_meta` VALUES("3536", "14", "423", "4", "crystal@synqtech.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3537", "14", "423", "5", "I was referred to you by Citizens Counselling. I saw a counsellor there last year for depression, anxiety and anorexia. I have had all these issues ongoing on and off for the last 12 years. It became worse last year as I was getting out of an abusive relationship and I sought out help again. I was better for a while after counselling at Citizens,  but it is getting worse again, and I would really like to break this cycle. \r\n\r\nI work Monday-Friday 9-5:30, so sometime outside of that would be ideal. \r\nI do not have a preference in male or female therapist.  \r\nI have no health coverage. $30 is probably all I can afford.");
INSERT INTO `wp_gf_entry_meta` VALUES("3538", "14", "423", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3539", "14", "423", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3540", "14", "423", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3541", "14", "423", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3542", "14", "424", "1.3", "Duncan");
INSERT INTO `wp_gf_entry_meta` VALUES("3543", "14", "424", "1.6", "McAllister");
INSERT INTO `wp_gf_entry_meta` VALUES("3544", "14", "424", "2", "19");
INSERT INTO `wp_gf_entry_meta` VALUES("3545", "14", "424", "3", "(604) 996-1227");
INSERT INTO `wp_gf_entry_meta` VALUES("3546", "14", "424", "4", "duncan.mcallsiter13@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3547", "14", "424", "5", "Looking for a counsellor to help with my depression and mental health concerns. Available throughout the day and evening. I would prefer a male therapist. Currently a Camosun student with the student benefits package.");
INSERT INTO `wp_gf_entry_meta` VALUES("3548", "14", "424", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3549", "14", "424", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3550", "14", "424", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3551", "14", "424", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3552", "14", "424", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3554", "10", "425", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3555", "10", "425", "10", "07/12/1999");
INSERT INTO `wp_gf_entry_meta` VALUES("3556", "10", "425", "4", "Dawnadrapeau@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3557", "10", "425", "2", "Dawna Drapeau");
INSERT INTO `wp_gf_entry_meta` VALUES("3558", "10", "425", "3.1", "592 Baran Place");
INSERT INTO `wp_gf_entry_meta` VALUES("3559", "10", "425", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("3560", "10", "425", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3561", "10", "425", "3.5", "V8Z 2A2");
INSERT INTO `wp_gf_entry_meta` VALUES("3562", "10", "425", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3563", "10", "425", "5", "Dawnadrapeau@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3564", "10", "425", "6", "(250) 477-2995");
INSERT INTO `wp_gf_entry_meta` VALUES("3565", "10", "425", "8", "Phone or e-mail");
INSERT INTO `wp_gf_entry_meta` VALUES("3566", "10", "425", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("3567", "10", "425", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3568", "10", "425", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("3569", "10", "425", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("3570", "10", "425", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3571", "10", "425", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3572", "10", "425", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3573", "10", "425", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3575", "14", "426", "1.3", "Maggie");
INSERT INTO `wp_gf_entry_meta` VALUES("3576", "14", "426", "1.6", "Campbell");
INSERT INTO `wp_gf_entry_meta` VALUES("3577", "14", "426", "2", "59");
INSERT INTO `wp_gf_entry_meta` VALUES("3578", "14", "426", "3", "(250) 216-9966");
INSERT INTO `wp_gf_entry_meta` VALUES("3579", "14", "426", "4", "maggie3@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3580", "14", "426", "5", "I just need someone to talk to. I prefer a female therapist.  I have been a pastor\'s wife for almost 29 years,  As well, I have a job outside of the church.  The past few months I have felt at the breaking point.  I am not certain I need ongoing counselling, I just need a safe listening ear where I can unload everything without fear.   Due to the nature of ministry life, having close friends is not a reality, so I am seeking the next best thing I guess.    My benefits package at work does not cover counselling services.");
INSERT INTO `wp_gf_entry_meta` VALUES("3581", "14", "426", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3582", "14", "426", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3583", "14", "426", "9.1", "$120-80");
INSERT INTO `wp_gf_entry_meta` VALUES("3584", "3", "427", "1.3", "Sophia");
INSERT INTO `wp_gf_entry_meta` VALUES("3585", "3", "427", "1.6", "Pettigrew");
INSERT INTO `wp_gf_entry_meta` VALUES("3586", "3", "427", "2", "spettigrew@sd63.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3587", "3", "427", "3.1", "1024 Benvenuto Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("3588", "3", "427", "3.3", "1024 Benventuo Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("3589", "3", "427", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3590", "3", "427", "3.5", "Brentwood Bay");
INSERT INTO `wp_gf_entry_meta` VALUES("3591", "3", "427", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3592", "3", "427", "4", "(250) 216-4530");
INSERT INTO `wp_gf_entry_meta` VALUES("3593", "3", "427", "7", "03/18/2017");
INSERT INTO `wp_gf_entry_meta` VALUES("3594", "3", "427", "5", "March 18th");
INSERT INTO `wp_gf_entry_meta` VALUES("3596", "14", "428", "1.3", "Vanisa");
INSERT INTO `wp_gf_entry_meta` VALUES("3597", "14", "428", "1.6", "Punwani");
INSERT INTO `wp_gf_entry_meta` VALUES("3598", "14", "428", "2", "23");
INSERT INTO `wp_gf_entry_meta` VALUES("3599", "14", "428", "3", "(250) 813-0151");
INSERT INTO `wp_gf_entry_meta` VALUES("3600", "14", "428", "4", "vanisapunwani@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3601", "14", "428", "5", "Tuesday afternoon\r\nWednesday afternoon or evening\r\nThursday afternoon\r\nFriday afternoon or evening\r\n\r\nPrefer female therapist\r\n\r\nYes,extended health through Greenshield.");
INSERT INTO `wp_gf_entry_meta` VALUES("3602", "14", "428", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3603", "14", "428", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3604", "14", "428", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3605", "14", "428", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3606", "14", "429", "1.3", "Ellen");
INSERT INTO `wp_gf_entry_meta` VALUES("3607", "14", "429", "1.6", "Reynolds");
INSERT INTO `wp_gf_entry_meta` VALUES("3608", "14", "429", "2", "47");
INSERT INTO `wp_gf_entry_meta` VALUES("3609", "14", "429", "3", "(250) 882-3616");
INSERT INTO `wp_gf_entry_meta` VALUES("3610", "14", "429", "4", "ellenandcharlie@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3611", "14", "429", "5", "Anxiety, life/work transitions. Vicarious trauma. I called in a few weeks ago and and did this intake but my financial situation has changed since then. Thanks :)");
INSERT INTO `wp_gf_entry_meta` VALUES("3612", "14", "429", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3613", "14", "429", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3614", "14", "429", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("3615", "14", "429", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3616", "14", "429", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3618", "10", "430", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3619", "10", "430", "10", "June 11, 1999");
INSERT INTO `wp_gf_entry_meta` VALUES("3620", "10", "430", "4", "nt5432@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3621", "10", "430", "7", "(778) 977-8176");
INSERT INTO `wp_gf_entry_meta` VALUES("3622", "10", "430", "2", "Scott Treble and Kristine Allison");
INSERT INTO `wp_gf_entry_meta` VALUES("3623", "10", "430", "3.1", "1829 Knutsford Place");
INSERT INTO `wp_gf_entry_meta` VALUES("3624", "10", "430", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("3625", "10", "430", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3626", "10", "430", "3.5", "V8N6E3");
INSERT INTO `wp_gf_entry_meta` VALUES("3627", "10", "430", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3628", "10", "430", "5", "scott.treble@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3629", "10", "430", "6", "(250) 477-4438");
INSERT INTO `wp_gf_entry_meta` VALUES("3630", "10", "430", "8", "Email:\r\nkristine.allison@shaw.ca\r\nscott.treble@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3631", "10", "430", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("3632", "10", "430", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3633", "10", "430", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("3634", "10", "430", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("3635", "10", "430", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3636", "10", "430", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3637", "10", "430", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3638", "15", "431", "1", "Stefan Overgaard");
INSERT INTO `wp_gf_entry_meta` VALUES("3639", "15", "431", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3640", "15", "431", "10", "23/03/1996");
INSERT INTO `wp_gf_entry_meta` VALUES("3641", "15", "431", "4", "sovergaard96@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3642", "15", "431", "7", "(780) 952-9877");
INSERT INTO `wp_gf_entry_meta` VALUES("3643", "15", "431", "3.1", "66 Cranfield Green SE");
INSERT INTO `wp_gf_entry_meta` VALUES("3644", "15", "431", "3.3", "Calgary");
INSERT INTO `wp_gf_entry_meta` VALUES("3645", "15", "431", "3.4", "Alberta");
INSERT INTO `wp_gf_entry_meta` VALUES("3646", "15", "431", "3.5", "T3M1C5");
INSERT INTO `wp_gf_entry_meta` VALUES("3647", "15", "431", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3648", "15", "431", "8", "7809529877");
INSERT INTO `wp_gf_entry_meta` VALUES("3649", "15", "431", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("3650", "15", "431", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3651", "15", "431", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("3652", "15", "431", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3653", "15", "431", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3654", "15", "431", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3655", "15", "431", "17", "No. Trying supplements such as magnesium and holy basil.");
INSERT INTO `wp_gf_entry_meta` VALUES("3656", "15", "431", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_gf_entry_meta` VALUES("3658", "10", "432", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("3659", "10", "432", "10", "31/05/2001");
INSERT INTO `wp_gf_entry_meta` VALUES("3660", "10", "432", "4", "sarah_morris@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3661", "10", "432", "7", "(250) 508-3224");
INSERT INTO `wp_gf_entry_meta` VALUES("3662", "10", "432", "2", "Julie Morris");
INSERT INTO `wp_gf_entry_meta` VALUES("3663", "10", "432", "3.1", "1121 totem lane");
INSERT INTO `wp_gf_entry_meta` VALUES("3664", "10", "432", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("3665", "10", "432", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3666", "10", "432", "3.5", "V8y1e8");
INSERT INTO `wp_gf_entry_meta` VALUES("3667", "10", "432", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3668", "10", "432", "5", "julie.morris@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3669", "10", "432", "6", "(250) 813-0788");
INSERT INTO `wp_gf_entry_meta` VALUES("3670", "10", "432", "8", "Cell phone");
INSERT INTO `wp_gf_entry_meta` VALUES("3671", "10", "432", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("3672", "10", "432", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3673", "10", "432", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("3674", "10", "432", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3675", "10", "432", "17", "54 mg Strattera, 3.5mg olanzapene, 20 mg escitalopram");
INSERT INTO `wp_gf_entry_meta` VALUES("3676", "14", "433", "1.3", "Hayley");
INSERT INTO `wp_gf_entry_meta` VALUES("3677", "14", "433", "1.6", "Dunahee");
INSERT INTO `wp_gf_entry_meta` VALUES("3678", "14", "433", "2", "19 (on March 27)");
INSERT INTO `wp_gf_entry_meta` VALUES("3679", "14", "433", "3", "(778) 430-0670");
INSERT INTO `wp_gf_entry_meta` VALUES("3680", "14", "433", "4", "kmdunahee@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3681", "14", "433", "5", "My name is Karen Dunahee, I am contacting you on behalf of my niece Hayley.  Hayley, who is turning 19yrs in a few weeks, has very low self esteem and social skills.  She has never really had any friends and isn\'t able to make friendships very easily.  She also has a tough home life.... I took her to counselling when she was 11yrs old because of all the difficulty she had in school and at home but because of her age her parents needed to be informed.  Unfortunately her mother forbade it and made Hayley feel guilty for going and her father didn\'t want to upset his wife.  Now that Hayley is out of the school system, she if feeling very lost... she has no direction, cannot make decisions even about simple things, and doesn\'t understand why she is so different from others.  I love my niece very much and I am very worried about her.  I don\'t know how to help her.... I try to go out for \"coffee\" once a week so that she \"can talk\" and text her daily to say hi but.... how to help her feel better about herself or to get involved with society.... is beyond what I know how to do.  \r\nI have spoken to Hayley about speaking to a professional, she was open to it a little and she didn\'t say \"no\"...but knowing her like I do, I know she just needs help taking the first step.  Obviously, I would get her permission before actually setting up an appointment but all I know how to do, right now, is reach out and get the conversation started for her.\r\nI have left my contact phone number and email to speak with me.  Meanwhile, I will let her know that I have contacted you today.\r\nI hope you can help me to help my niece.\r\n\r\nSincerely\r\nKaren Dunahee\r\n778-430-0670\r\nkmdunahee@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3682", "14", "433", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3683", "14", "433", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3684", "14", "433", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3686", "10", "434", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3687", "10", "434", "10", "05/11/2001");
INSERT INTO `wp_gf_entry_meta` VALUES("3688", "10", "434", "4", "cowman800@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3689", "10", "434", "7", "(778) 587-8378");
INSERT INTO `wp_gf_entry_meta` VALUES("3690", "10", "434", "2", "Briana Wafer");
INSERT INTO `wp_gf_entry_meta` VALUES("3691", "10", "434", "3.1", "1950 Casa Marcia Cr.");
INSERT INTO `wp_gf_entry_meta` VALUES("3692", "10", "434", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("3693", "10", "434", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3694", "10", "434", "3.5", "V8N 2X3");
INSERT INTO `wp_gf_entry_meta` VALUES("3695", "10", "434", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3696", "10", "434", "5", "briana.wafer@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3697", "10", "434", "6", "(778) 584-0778");
INSERT INTO `wp_gf_entry_meta` VALUES("3698", "10", "434", "8", "Email to guardian (cc to participant)");
INSERT INTO `wp_gf_entry_meta` VALUES("3699", "10", "434", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("3700", "10", "434", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3701", "10", "434", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3702", "10", "434", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3703", "10", "434", "17", "Has complex migraines which cannot be medicated beyond ibuprofen and anti-nausea medication, so managing stress and anxiety is very important.");
INSERT INTO `wp_gf_entry_meta` VALUES("3704", "14", "435", "1.3", "Marina");
INSERT INTO `wp_gf_entry_meta` VALUES("3705", "14", "435", "1.6", "Glassford");
INSERT INTO `wp_gf_entry_meta` VALUES("3706", "14", "435", "2", "24");
INSERT INTO `wp_gf_entry_meta` VALUES("3707", "14", "435", "3", "(250) 213-6263");
INSERT INTO `wp_gf_entry_meta` VALUES("3708", "14", "435", "4", "m.glassford@live.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3709", "14", "435", "5", "I\'m struggling with anxiety and depression and I need some help to overcome these issues so I can live a better, more productive life. I\'m available anytime at the moment. I don\'t have any extended medical benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("3710", "14", "435", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3711", "14", "435", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3712", "14", "435", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("3713", "15", "436", "1", "Stefan Overgaard");
INSERT INTO `wp_gf_entry_meta` VALUES("3714", "15", "436", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3715", "15", "436", "10", "23/03/1996");
INSERT INTO `wp_gf_entry_meta` VALUES("3716", "15", "436", "4", "sovergaard96@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3717", "15", "436", "7", "(780) 952-9877");
INSERT INTO `wp_gf_entry_meta` VALUES("3718", "15", "436", "3.1", "66 Cranfield Green SE");
INSERT INTO `wp_gf_entry_meta` VALUES("3719", "15", "436", "3.3", "Calgary");
INSERT INTO `wp_gf_entry_meta` VALUES("3720", "15", "436", "3.4", "Alberta");
INSERT INTO `wp_gf_entry_meta` VALUES("3721", "15", "436", "3.5", "T3M1C5");
INSERT INTO `wp_gf_entry_meta` VALUES("3722", "15", "436", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3723", "15", "436", "8", "7809529877");
INSERT INTO `wp_gf_entry_meta` VALUES("3724", "15", "436", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("3725", "15", "436", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3726", "15", "436", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("3727", "15", "436", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3728", "15", "436", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3729", "15", "436", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3730", "15", "436", "17", "No. Trying supplements such as magnesium and holy basil.");
INSERT INTO `wp_gf_entry_meta` VALUES("3731", "15", "436", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_gf_entry_meta` VALUES("3732", "15", "437", "1", "Marina Glassford");
INSERT INTO `wp_gf_entry_meta` VALUES("3733", "15", "437", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("3734", "15", "437", "10", "22/05/1992");
INSERT INTO `wp_gf_entry_meta` VALUES("3735", "15", "437", "4", "m.glassford@live.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3736", "15", "437", "7", "(250) 213-6263");
INSERT INTO `wp_gf_entry_meta` VALUES("3737", "15", "437", "3.1", "2840 mt newton x rd");
INSERT INTO `wp_gf_entry_meta` VALUES("3738", "15", "437", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("3739", "15", "437", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3740", "15", "437", "3.5", "V8m2e4");
INSERT INTO `wp_gf_entry_meta` VALUES("3741", "15", "437", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3742", "15", "437", "8", "Email");
INSERT INTO `wp_gf_entry_meta` VALUES("3743", "15", "437", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("3744", "15", "437", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("3745", "15", "437", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("3746", "15", "437", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3747", "15", "437", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3748", "15", "437", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3749", "15", "437", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_gf_entry_meta` VALUES("3750", "14", "438", "1.3", "Ashley");
INSERT INTO `wp_gf_entry_meta` VALUES("3751", "14", "438", "1.6", "Creed");
INSERT INTO `wp_gf_entry_meta` VALUES("3752", "14", "438", "2", "20");
INSERT INTO `wp_gf_entry_meta` VALUES("3753", "14", "438", "3", "(250) 508-9087");
INSERT INTO `wp_gf_entry_meta` VALUES("3754", "14", "438", "4", "Crashley64@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3755", "14", "438", "5", "Self esstem issues\r\nAvailability wednsday\'s after 2 or Friday\'s after 2\r\nPrefer female counsler");
INSERT INTO `wp_gf_entry_meta` VALUES("3756", "14", "438", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3757", "14", "438", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3758", "14", "438", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3759", "14", "439", "1.3", "Denise");
INSERT INTO `wp_gf_entry_meta` VALUES("3760", "14", "439", "1.6", "Morales");
INSERT INTO `wp_gf_entry_meta` VALUES("3761", "14", "439", "2", "n/a");
INSERT INTO `wp_gf_entry_meta` VALUES("3762", "14", "439", "3", "(547) 458-4585");
INSERT INTO `wp_gf_entry_meta` VALUES("3763", "14", "439", "4", "dmorales@thewaterpage.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3764", "14", "439", "5", "I wanted to send you a short email to say thanks for your page, http://localhost:8888/TestSICPage/wordpress/resources-2. I volunteer with a children\'s group, where I help plan different events. One of our members is teaching the teen group about mental health and suicide prevention, so I wanted to find some online resources for it. Your page has some great info for this - thanks so much!\r\n\r\nMy daughter, Alicia, found another page on suicide prevention while helping me research, http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/ . Can you include this in your list of links? She very passionate about spreading the word about mental health because her cousin has depression, so I thought her sharing her suggestion would give her an extra boost, plus help others online. :-)\r\n\r\nIf you have any advice for our group, feel free to share. Thanks again!\r\n\r\nBest,\r\nDenise Morales");
INSERT INTO `wp_gf_entry_meta` VALUES("3765", "14", "439", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3766", "14", "439", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3767", "14", "439", "9.1", "$120-80");
INSERT INTO `wp_gf_entry_meta` VALUES("3768", "14", "440", "1.3", "Kerry-anne");
INSERT INTO `wp_gf_entry_meta` VALUES("3769", "14", "440", "1.6", "Doole");
INSERT INTO `wp_gf_entry_meta` VALUES("3770", "14", "440", "2", "44");
INSERT INTO `wp_gf_entry_meta` VALUES("3771", "14", "440", "3", "(250) 813-2161");
INSERT INTO `wp_gf_entry_meta` VALUES("3772", "14", "440", "4", "Sammie2372@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3773", "14", "440", "5", "Struggling with weight and food issues");
INSERT INTO `wp_gf_entry_meta` VALUES("3774", "14", "440", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3775", "14", "440", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3776", "14", "440", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3777", "14", "440", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3778", "14", "441", "1.3", "Daniel");
INSERT INTO `wp_gf_entry_meta` VALUES("3779", "14", "441", "1.6", "Philion");
INSERT INTO `wp_gf_entry_meta` VALUES("3780", "14", "441", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("3781", "14", "441", "3", "(250) 419-2270");
INSERT INTO `wp_gf_entry_meta` VALUES("3782", "14", "441", "4", "daniel.philion@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3783", "14", "441", "5", "I am looking for someone to discuss past issues with and the current state of my mental health. I have been struggling with some depressed feelings and have had several life changes such as deaths of friends and family, and a long term relationship ending. I have not been through formal counselling before, but I think it would be good to be proactive about it before I get worse. I work overnight so days and weekend days work best for me. As far as preference of person, I do tend to open up faster to women because most of my friends and trusted family are, but I\'m happy with anyone as I\'m sure everyone is professional and fantastic. Thank you for taking the time to read this.");
INSERT INTO `wp_gf_entry_meta` VALUES("3784", "14", "441", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3785", "14", "441", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3786", "14", "441", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3787", "14", "441", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3788", "14", "442", "1.3", "Matthew");
INSERT INTO `wp_gf_entry_meta` VALUES("3789", "14", "442", "1.6", "Spencer");
INSERT INTO `wp_gf_entry_meta` VALUES("3790", "14", "442", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("3791", "14", "442", "3", "(306) 361-8361");
INSERT INTO `wp_gf_entry_meta` VALUES("3792", "14", "442", "4", "matthew.derek.spencer@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3793", "14", "442", "5", "Career transition, self-esteem.");
INSERT INTO `wp_gf_entry_meta` VALUES("3794", "14", "442", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3795", "14", "442", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3796", "14", "442", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3797", "14", "442", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3798", "15", "443", "1", "Dawson Vouriot");
INSERT INTO `wp_gf_entry_meta` VALUES("3799", "15", "443", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3800", "15", "443", "10", "19/10/1998");
INSERT INTO `wp_gf_entry_meta` VALUES("3801", "15", "443", "4", "Melodyvouriot@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3802", "15", "443", "7", "(250) 474-0609");
INSERT INTO `wp_gf_entry_meta` VALUES("3803", "15", "443", "3.1", "963 Bray Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("3804", "15", "443", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("3805", "15", "443", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3806", "15", "443", "3.5", "V9B2S9");
INSERT INTO `wp_gf_entry_meta` VALUES("3807", "15", "443", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3808", "15", "443", "8", "Email");
INSERT INTO `wp_gf_entry_meta` VALUES("3809", "15", "443", "18.2", "Credit Card ($3 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("3810", "15", "443", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3811", "15", "443", "17", "Zoloft 200 mg");
INSERT INTO `wp_gf_entry_meta` VALUES("3812", "15", "443", "19.3", "Weekend");
INSERT INTO `wp_gf_entry_meta` VALUES("3813", "14", "444", "1.3", "Danielle");
INSERT INTO `wp_gf_entry_meta` VALUES("3814", "14", "444", "1.6", "Ruhigisha");
INSERT INTO `wp_gf_entry_meta` VALUES("3815", "14", "444", "2", "16");
INSERT INTO `wp_gf_entry_meta` VALUES("3816", "14", "444", "3", "(778) 533-9177");
INSERT INTO `wp_gf_entry_meta` VALUES("3817", "14", "444", "4", "danielle.ruhigisha@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3818", "14", "444", "5", "Hello, \r\n\r\nMy name is Danielle Ruhigisha, I\'m part of the committee of mental health at Victor Brodeur, we are organizing a day of mental awareness  at our school and were wondering if there was a representative from your organization that would be willing to come to our school May 9th and set up a kiosk (Table would be provided if you could bring a few promotional objects that would be great) and talk to the students coming around in rotations about what your organization does for youth. \r\n\r\nThank you for your time,\r\n\r\nDanielle");
INSERT INTO `wp_gf_entry_meta` VALUES("3819", "14", "444", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3820", "14", "444", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3821", "14", "444", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3822", "14", "445", "1.3", "Morgan");
INSERT INTO `wp_gf_entry_meta` VALUES("3823", "14", "445", "1.6", "McPherson");
INSERT INTO `wp_gf_entry_meta` VALUES("3824", "14", "445", "2", "32");
INSERT INTO `wp_gf_entry_meta` VALUES("3825", "14", "445", "3", "(250) 889-7151");
INSERT INTO `wp_gf_entry_meta` VALUES("3826", "14", "445", "4", "mcpherson.morgan@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3827", "14", "445", "5", "I have always been somewhat anxious, but I have had a few incidences of feeling like it got really out of control.\r\n\r\nI am also currently struggling with a situation of my partner\'s, and having a huge increase in anxiety accordingly.");
INSERT INTO `wp_gf_entry_meta` VALUES("3828", "14", "445", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3829", "14", "445", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3830", "14", "445", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3831", "14", "445", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3832", "14", "446", "1.3", "shianne");
INSERT INTO `wp_gf_entry_meta` VALUES("3833", "14", "446", "1.6", "Adams");
INSERT INTO `wp_gf_entry_meta` VALUES("3834", "14", "446", "2", "19");
INSERT INTO `wp_gf_entry_meta` VALUES("3835", "14", "446", "3", "(250) 686-4557");
INSERT INTO `wp_gf_entry_meta` VALUES("3836", "14", "446", "4", "shirules@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3837", "14", "446", "5", "Anxiety, depression, anger. No preference. No.");
INSERT INTO `wp_gf_entry_meta` VALUES("3838", "14", "446", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3839", "14", "446", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3840", "14", "446", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3841", "14", "446", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3842", "14", "447", "1.3", "Tiffany");
INSERT INTO `wp_gf_entry_meta` VALUES("3843", "14", "447", "1.6", "Douglas");
INSERT INTO `wp_gf_entry_meta` VALUES("3844", "14", "447", "2", "21");
INSERT INTO `wp_gf_entry_meta` VALUES("3845", "14", "447", "3", "(403) 627-9697");
INSERT INTO `wp_gf_entry_meta` VALUES("3846", "14", "447", "4", "douglas.tiffany27@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3847", "14", "447", "5", "Help with figuring out my depression. Prefer female therapist. Available Mondays all day and occasional Thursdays. No extended health benefits");
INSERT INTO `wp_gf_entry_meta` VALUES("3848", "14", "447", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3849", "14", "447", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3850", "14", "447", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3851", "14", "447", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("3852", "16", "448", "17", "2017-03-30");
INSERT INTO `wp_gf_entry_meta` VALUES("3853", "16", "448", "16", "Amber");
INSERT INTO `wp_gf_entry_meta` VALUES("3854", "16", "448", "2", "Strongly agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3855", "16", "448", "3", "Strongly agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3856", "16", "448", "4", "Strongly agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3857", "16", "448", "5", "Strongly agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3858", "16", "448", "6", "Strongly agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3859", "16", "448", "7", "Somewhat agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3860", "16", "448", "8", "Somewhat agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3861", "16", "448", "9", "Somewhat agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3862", "16", "448", "10", "Strongly agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3863", "16", "448", "11", "Somewhat agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3864", "16", "448", "12", "Strongly agree");
INSERT INTO `wp_gf_entry_meta` VALUES("3865", "16", "448", "13", "Very satisfied");
INSERT INTO `wp_gf_entry_meta` VALUES("3866", "16", "448", "14", "Very satisfied");
INSERT INTO `wp_gf_entry_meta` VALUES("3867", "16", "448", "15", "Susanne making sure that this indeed works!");
INSERT INTO `wp_gf_entry_meta` VALUES("3868", "14", "449", "1.3", "Elyse");
INSERT INTO `wp_gf_entry_meta` VALUES("3869", "14", "449", "1.6", "MacDowell");
INSERT INTO `wp_gf_entry_meta` VALUES("3870", "14", "449", "2", "30");
INSERT INTO `wp_gf_entry_meta` VALUES("3871", "14", "449", "3", "(250) 709-5053");
INSERT INTO `wp_gf_entry_meta` VALUES("3872", "14", "449", "4", "emacdowell86@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3873", "14", "449", "5", "I have anxiety and phobia problems. I\'m off medication but have been on anti anxiety meds in the past. I have seen Amber Eves before through Waypoint counselling but I need something more affordable. I make about 30k a year and I have a small benefit through my work.");
INSERT INTO `wp_gf_entry_meta` VALUES("3874", "14", "449", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3875", "14", "449", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3876", "14", "449", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3877", "14", "449", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("3878", "14", "450", "1.3", "Colin");
INSERT INTO `wp_gf_entry_meta` VALUES("3879", "14", "450", "1.6", "Harper");
INSERT INTO `wp_gf_entry_meta` VALUES("3880", "14", "450", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("3881", "14", "450", "3", "(250) 720-5759");
INSERT INTO `wp_gf_entry_meta` VALUES("3882", "14", "450", "4", "Colmeng@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3883", "14", "450", "5", "Me and my girlfriend are looking for couples counselling. We both have trust issues and feel that counselling may be right for us if it is affordable enough. Availability is tough because both of our schedules move around, but weekends or weekdays after 6:30 would likely be best. No preference for male or female therapist. We may have some coverage under extended health benefits. I am a UVic student (back to school in May) and my girlfriend goes to Camosun (Currently). I\'m unsure whether or not UVic/Camosun\'s insurance plans would cover any of the cost. If it does this could be a great option for us.\r\n\r\nThank you for your time.");
INSERT INTO `wp_gf_entry_meta` VALUES("3884", "14", "450", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3885", "14", "450", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3886", "14", "450", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3887", "14", "450", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3888", "14", "450", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3889", "14", "451", "1.3", "Michaela");
INSERT INTO `wp_gf_entry_meta` VALUES("3890", "14", "451", "1.6", "Baur-Samborn");
INSERT INTO `wp_gf_entry_meta` VALUES("3891", "14", "451", "2", "22");
INSERT INTO `wp_gf_entry_meta` VALUES("3892", "14", "451", "3", "(403) 968-8247");
INSERT INTO `wp_gf_entry_meta` VALUES("3893", "14", "451", "4", "Michaela.baursamborn@hotmail.ca2");
INSERT INTO `wp_gf_entry_meta` VALUES("3894", "14", "451", "5", "I deal with a lot of anxiety, problems with self worth, depression, and disordered eating. I prefer a female therapist, am currently available everyday, and do not have any extended health benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("3895", "14", "451", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3896", "14", "451", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3897", "14", "451", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3898", "14", "451", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3899", "14", "451", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3900", "14", "452", "1.3", "Lanza");
INSERT INTO `wp_gf_entry_meta` VALUES("3901", "14", "452", "1.6", "Camden");
INSERT INTO `wp_gf_entry_meta` VALUES("3902", "14", "452", "2", "26");
INSERT INTO `wp_gf_entry_meta` VALUES("3903", "14", "452", "3", "(250) 882-9417");
INSERT INTO `wp_gf_entry_meta` VALUES("3904", "14", "452", "4", "Lanzanojo@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3905", "14", "452", "5", "My husband and I are unable to properly communicate.   We would like to do individual sessions as well as a couple. Female therapist is preferred. And we do no have extended benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("3906", "14", "452", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3907", "14", "452", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3908", "14", "452", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3909", "14", "452", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3910", "14", "453", "1.3", "Barbara");
INSERT INTO `wp_gf_entry_meta` VALUES("3911", "14", "453", "1.6", "Rider");
INSERT INTO `wp_gf_entry_meta` VALUES("3912", "14", "453", "2", "61");
INSERT INTO `wp_gf_entry_meta` VALUES("3913", "14", "453", "3", "(778) 426-1969");
INSERT INTO `wp_gf_entry_meta` VALUES("3914", "14", "453", "4", "barbararider1984@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3915", "14", "453", "5", "Not actually new client. My husband and myself saw Bill Cole for some couples counseling, related to communication issues. I now need one on one counseling for stress, anxiety and anger issues. Do not mind male or female, but I think Bill is more family, rather than individual.");
INSERT INTO `wp_gf_entry_meta` VALUES("3916", "14", "453", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3917", "14", "453", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3918", "14", "453", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("3919", "14", "454", "1.3", "Benjamin");
INSERT INTO `wp_gf_entry_meta` VALUES("3920", "14", "454", "1.6", "James-Groom");
INSERT INTO `wp_gf_entry_meta` VALUES("3921", "14", "454", "2", "27");
INSERT INTO `wp_gf_entry_meta` VALUES("3922", "14", "454", "3", "(250) 889-2976");
INSERT INTO `wp_gf_entry_meta` VALUES("3923", "14", "454", "4", "groom.benjamin@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3924", "14", "454", "5", "I cope with depression and high anxiety, and at times I have existential crises. I feel disillusioned with the world as a broke millennial, and betrayed by our classist, capitalist society. Despite holding a university degree, I feel helpless and underprepared in my futile search for gainful employment. I currently work four on-call jobs, and live in a perpetual state of apprehension around when the phone will ring (or not) for my next job. As such, I am theoretically available for an appointment at any time.\r\n\r\nI have no extended benefits as I am primarily self-employed. I have no gender preference for my therapist.");
INSERT INTO `wp_gf_entry_meta` VALUES("3925", "14", "454", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3926", "14", "454", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3927", "14", "454", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3928", "14", "454", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3929", "14", "454", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("3930", "15", "455", "1", "Jeffrey Sendall");
INSERT INTO `wp_gf_entry_meta` VALUES("3931", "15", "455", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3932", "15", "455", "10", "22/Aug/1994");
INSERT INTO `wp_gf_entry_meta` VALUES("3933", "15", "455", "4", "jeffreysendall@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3934", "15", "455", "7", "(250) 896-6742");
INSERT INTO `wp_gf_entry_meta` VALUES("3935", "15", "455", "3.1", "2385 Twin View Dr");
INSERT INTO `wp_gf_entry_meta` VALUES("3936", "15", "455", "3.3", "VICTORIA");
INSERT INTO `wp_gf_entry_meta` VALUES("3937", "15", "455", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3938", "15", "455", "3.5", "V8Z 7E9");
INSERT INTO `wp_gf_entry_meta` VALUES("3939", "15", "455", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3940", "15", "455", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("3941", "15", "455", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("3942", "15", "455", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3943", "15", "455", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3944", "15", "455", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("3945", "15", "455", "17", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("3946", "15", "455", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_gf_entry_meta` VALUES("3947", "15", "455", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_gf_entry_meta` VALUES("3948", "15", "455", "19.3", "Weekend");
INSERT INTO `wp_gf_entry_meta` VALUES("3949", "14", "456", "1.3", "Jackson");
INSERT INTO `wp_gf_entry_meta` VALUES("3950", "14", "456", "1.6", "McDonald");
INSERT INTO `wp_gf_entry_meta` VALUES("3951", "14", "456", "2", "23");
INSERT INTO `wp_gf_entry_meta` VALUES("3952", "14", "456", "3", "(250) 858-9225");
INSERT INTO `wp_gf_entry_meta` VALUES("3953", "14", "456", "4", "johnnyperogy@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3954", "14", "456", "5", "Depression, loss of energy, alcohol dependency. Feelings of hopelessness, low self-esteem, and general dissatisfaction with life. \r\n\r\nI am available all day Wednesday and Thursday and would prefer a female therapist.");
INSERT INTO `wp_gf_entry_meta` VALUES("3955", "14", "456", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3956", "14", "456", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3957", "14", "456", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3958", "14", "456", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("3959", "14", "457", "1.3", "Shianne");
INSERT INTO `wp_gf_entry_meta` VALUES("3960", "14", "457", "1.6", "Adams");
INSERT INTO `wp_gf_entry_meta` VALUES("3961", "14", "457", "2", "19");
INSERT INTO `wp_gf_entry_meta` VALUES("3962", "14", "457", "3", "(250) 686-4557");
INSERT INTO `wp_gf_entry_meta` VALUES("3963", "14", "457", "4", "natadams@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3964", "14", "457", "5", "Anxiety stress depression.  The Anxiety affects my everyday life.  I have issues with my father and childhood.  I can\'t seem to control it. I recently lost my grandma who I was close too");
INSERT INTO `wp_gf_entry_meta` VALUES("3965", "14", "457", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3966", "14", "457", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3967", "14", "457", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3968", "14", "457", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("3969", "14", "457", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("3970", "14", "458", "1.3", "Shannon");
INSERT INTO `wp_gf_entry_meta` VALUES("3971", "14", "458", "1.6", "Cummings");
INSERT INTO `wp_gf_entry_meta` VALUES("3972", "14", "458", "2", "30");
INSERT INTO `wp_gf_entry_meta` VALUES("3973", "14", "458", "3", "(250) 643-0372");
INSERT INTO `wp_gf_entry_meta` VALUES("3974", "14", "458", "4", "Shancummings@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("3975", "14", "458", "5", "Generalized depression, stress and anxiety effecting school, work, relationships.  Gets worse roughly 2 weeks out of a month, has lasted about a year now.  Daily tasks like driving or social occasions have become difficult or stressful and are avoided when overly stressed.  Possibly effecting health in other ways - lack of sleep, appetite, rash on arms, prolonged cold/flu symptoms since November.   Looking for tools to manage my problems, not my reactions to or perceptions of my problems.  No preference of gender for therapist.  I am available some weekdays from 9-11 depending on a changing work schedule, and on the weekends.   Thanks!");
INSERT INTO `wp_gf_entry_meta` VALUES("3976", "14", "458", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("3977", "14", "458", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("3978", "14", "458", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("3979", "14", "458", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("3981", "10", "459", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("3982", "10", "459", "10", "02/10/2001");
INSERT INTO `wp_gf_entry_meta` VALUES("3983", "10", "459", "4", "mrspye@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3984", "10", "459", "2", "Janet Pye");
INSERT INTO `wp_gf_entry_meta` VALUES("3985", "10", "459", "3.1", "1647 Little Road");
INSERT INTO `wp_gf_entry_meta` VALUES("3986", "10", "459", "3.2", "1647 Little Road");
INSERT INTO `wp_gf_entry_meta` VALUES("3987", "10", "459", "3.3", "1647 Little Road");
INSERT INTO `wp_gf_entry_meta` VALUES("3988", "10", "459", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("3989", "10", "459", "3.5", "Victiria");
INSERT INTO `wp_gf_entry_meta` VALUES("3990", "10", "459", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("3991", "10", "459", "5", "mrspye@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("3992", "10", "459", "6", "(250) 216-8311");
INSERT INTO `wp_gf_entry_meta` VALUES("3993", "10", "459", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("3994", "10", "459", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("3995", "10", "459", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3996", "10", "459", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("3997", "10", "459", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("3998", "10", "459", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("3999", "10", "459", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4000", "10", "459", "17", "Resperidon\r\nStratera");
INSERT INTO `wp_gf_entry_meta` VALUES("4001", "14", "460", "1.3", "Denise");
INSERT INTO `wp_gf_entry_meta` VALUES("4002", "14", "460", "1.6", "Schreyer");
INSERT INTO `wp_gf_entry_meta` VALUES("4003", "14", "460", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("4004", "14", "460", "3", "(250) 208-8341");
INSERT INTO `wp_gf_entry_meta` VALUES("4005", "14", "460", "4", "denise_morris11@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4006", "14", "460", "11", "through friends");
INSERT INTO `wp_gf_entry_meta` VALUES("4007", "14", "460", "5", "I am struggling with my work/life balance and feel it is affecting my relationships. Communication is a skill that I have a hard time with and doesn\'t come easily for me and I feel this is also impacting my relationships, especially with my husband.");
INSERT INTO `wp_gf_entry_meta` VALUES("4008", "14", "460", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4009", "14", "460", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4010", "14", "460", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("4011", "14", "461", "1.3", "Brianne");
INSERT INTO `wp_gf_entry_meta` VALUES("4012", "14", "461", "1.6", "Gutowski");
INSERT INTO `wp_gf_entry_meta` VALUES("4013", "14", "461", "2", "32");
INSERT INTO `wp_gf_entry_meta` VALUES("4014", "14", "461", "3", "(250) 812-5972");
INSERT INTO `wp_gf_entry_meta` VALUES("4015", "14", "461", "4", "branners99@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4016", "14", "461", "11", "Referred from another counseling service that was booked for next 8wks");
INSERT INTO `wp_gf_entry_meta` VALUES("4017", "14", "461", "5", "suicidal thoughts. No reason to be going through pain. Not caring about life. Stresses include family health concers, Mom recently diagnosed with cancer. In final semester of university for degree, grades have fallen, attendance has fallen. Exams start next week. started changing medication 3.5 weeks ago. currently no effect felt by new ones so at rock bottom. extended health through UVic but that may end May 1st. then I have nothing. No preference on sex of counselor.");
INSERT INTO `wp_gf_entry_meta` VALUES("4018", "14", "461", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4019", "14", "461", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4020", "14", "461", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4021", "14", "461", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4022", "14", "462", "1.3", "Denise");
INSERT INTO `wp_gf_entry_meta` VALUES("4023", "14", "462", "1.6", "Schreyer");
INSERT INTO `wp_gf_entry_meta` VALUES("4024", "14", "462", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("4025", "14", "462", "3", "(250) 208-8341");
INSERT INTO `wp_gf_entry_meta` VALUES("4026", "14", "462", "4", "denise_morris11@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4027", "14", "462", "11", "Through friends");
INSERT INTO `wp_gf_entry_meta` VALUES("4028", "14", "462", "5", "I am struggling with my work/life balance and it is affecting my relationships. Communication is a skill I have trouble with and I also feel it is impacting my relationships, especially with my husband. I would prefer a female counsellor and I have extended benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("4029", "14", "462", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4030", "14", "462", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4031", "14", "462", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4032", "14", "462", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("4033", "15", "463", "1", "Kennedy Gardiner");
INSERT INTO `wp_gf_entry_meta` VALUES("4034", "15", "463", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("4035", "15", "463", "10", "18/03/1998");
INSERT INTO `wp_gf_entry_meta` VALUES("4036", "15", "463", "4", "meagmckay@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4037", "15", "463", "7", "(250) 532-3158");
INSERT INTO `wp_gf_entry_meta` VALUES("4038", "15", "463", "3.1", "3951 Glanford Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("4039", "15", "463", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4040", "15", "463", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4041", "15", "463", "3.5", "V8Z3Z5");
INSERT INTO `wp_gf_entry_meta` VALUES("4042", "15", "463", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4043", "15", "463", "8", "email pls");
INSERT INTO `wp_gf_entry_meta` VALUES("4044", "15", "463", "18.2", "Credit Card ($3 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("4045", "15", "463", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4046", "15", "463", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("4047", "15", "463", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("4048", "15", "463", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4049", "15", "463", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4050", "15", "463", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4051", "15", "463", "17", "Kennedy is taking a medication for depression however I am not sure what it is.  I am her former foster parent and still support her.  I saw this group and offered to pay for it if she thought it would be of benefit.  She agreed so I am registering her.");
INSERT INTO `wp_gf_entry_meta` VALUES("4052", "15", "463", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_gf_entry_meta` VALUES("4053", "15", "463", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_gf_entry_meta` VALUES("4054", "15", "463", "19.3", "Weekend");
INSERT INTO `wp_gf_entry_meta` VALUES("4055", "15", "464", "1", "Macoy Jackson");
INSERT INTO `wp_gf_entry_meta` VALUES("4056", "15", "464", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("4057", "15", "464", "10", "30/11/1994");
INSERT INTO `wp_gf_entry_meta` VALUES("4058", "15", "464", "4", "macoy.jackson@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4059", "15", "464", "7", "(604) 698-6764");
INSERT INTO `wp_gf_entry_meta` VALUES("4060", "15", "464", "3.1", "3516 Henderson Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("4061", "15", "464", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4062", "15", "464", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4063", "15", "464", "3.5", "V8P 5B1");
INSERT INTO `wp_gf_entry_meta` VALUES("4064", "15", "464", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4065", "15", "464", "8", "Email");
INSERT INTO `wp_gf_entry_meta` VALUES("4066", "15", "464", "18.2", "Credit Card ($3 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("4067", "15", "464", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4068", "15", "464", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("4069", "15", "464", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("4070", "15", "464", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4071", "15", "464", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4072", "15", "464", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4073", "15", "464", "17", "Sertroline 100mg.");
INSERT INTO `wp_gf_entry_meta` VALUES("4074", "15", "464", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_gf_entry_meta` VALUES("4075", "14", "465", "1.3", "Angela");
INSERT INTO `wp_gf_entry_meta` VALUES("4076", "14", "465", "1.6", "Wilkinson");
INSERT INTO `wp_gf_entry_meta` VALUES("4077", "14", "465", "2", "DOB: July 28, 1976 - 40 yrs");
INSERT INTO `wp_gf_entry_meta` VALUES("4078", "14", "465", "3", "(250) 686-9569");
INSERT INTO `wp_gf_entry_meta` VALUES("4079", "14", "465", "4", "wilkinsonangela@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4080", "14", "465", "11", "internet");
INSERT INTO `wp_gf_entry_meta` VALUES("4081", "14", "465", "5", "Hi there, I work full-time Mon-Friday 830-6ish but do get an hour lunch (not scheduled times).  I have no extended benefits and am lower income.  I make less than $40,000 per year, less than 39,000 even.  I have an adult child who still lives at home but he pays very little towards rent.  I have no preference male or female for a therapist.\r\n\r\nI am dealing with grief and loss (as recent as yesterday, plus 5 months ago and going as far back as 21 years), I have major smiling depression, I have anxiety and sleep issues, I have self confidence issues and many past guilt issues.  I do not take any medication for any depression (firstly I can\'t afford any plus I am not able to remember to take meds daily).  I am having an issue with motivation to do even the simplest of tasks ie: putting away laundry, doing banking, booking appointments.");
INSERT INTO `wp_gf_entry_meta` VALUES("4082", "14", "465", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4083", "14", "465", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4084", "14", "465", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4085", "14", "465", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4086", "14", "465", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4087", "14", "466", "1.3", "Courtenay");
INSERT INTO `wp_gf_entry_meta` VALUES("4088", "14", "466", "1.6", "Skipsey");
INSERT INTO `wp_gf_entry_meta` VALUES("4089", "14", "466", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("4090", "14", "466", "3", "(250) 886-3218");
INSERT INTO `wp_gf_entry_meta` VALUES("4091", "14", "466", "4", "courtenayskipsey@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4092", "14", "466", "11", "Friend");
INSERT INTO `wp_gf_entry_meta` VALUES("4093", "14", "466", "5", "Looking to build my Non Violent Communication skill set and work towards building a healthier communication style and softening my \'edges\'. Learn to let go of past issues/arguments. Interested in 1 on 1 counselling or any group courses that may be available.");
INSERT INTO `wp_gf_entry_meta` VALUES("4094", "14", "466", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4095", "14", "466", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4096", "14", "466", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4097", "14", "466", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4098", "14", "466", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4099", "14", "466", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4100", "14", "466", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4101", "14", "467", "1.3", "Chris");
INSERT INTO `wp_gf_entry_meta` VALUES("4102", "14", "467", "1.6", "Rowlands");
INSERT INTO `wp_gf_entry_meta` VALUES("4103", "14", "467", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("4104", "14", "467", "3", "(778) 678-8862");
INSERT INTO `wp_gf_entry_meta` VALUES("4105", "14", "467", "4", "chrisrowlands01@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4106", "14", "467", "11", "referral from other counseling services");
INSERT INTO `wp_gf_entry_meta` VALUES("4107", "14", "467", "5", "Difficulty connecting with positive emotions; existential confusion, seeking healthy life direction; struggles to connect with creative impulses");
INSERT INTO `wp_gf_entry_meta` VALUES("4108", "14", "467", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4109", "14", "467", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4110", "14", "467", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4111", "14", "467", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4112", "14", "468", "1.3", "Chantaya");
INSERT INTO `wp_gf_entry_meta` VALUES("4113", "14", "468", "1.6", "Roloson");
INSERT INTO `wp_gf_entry_meta` VALUES("4114", "14", "468", "2", "28, but for my son who is 6.");
INSERT INTO `wp_gf_entry_meta` VALUES("4115", "14", "468", "3", "(250) 891-5312");
INSERT INTO `wp_gf_entry_meta` VALUES("4116", "14", "468", "4", "Chantaya_roloson@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4117", "14", "468", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("4118", "14", "468", "5", "I\'m requesting counselling for my son. We have an older son who is special needs, as well as has ADHD and ODD and issues with control and aggression. Our younger son had always been a target of our older son and has become emotionally irregulated due to it.");
INSERT INTO `wp_gf_entry_meta` VALUES("4119", "14", "468", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4120", "14", "468", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4121", "14", "468", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4122", "14", "469", "1.3", "Heather");
INSERT INTO `wp_gf_entry_meta` VALUES("4123", "14", "469", "1.6", "Bishop");
INSERT INTO `wp_gf_entry_meta` VALUES("4124", "14", "469", "2", "43");
INSERT INTO `wp_gf_entry_meta` VALUES("4125", "14", "469", "3", "(250) 813-2083");
INSERT INTO `wp_gf_entry_meta` VALUES("4126", "14", "469", "4", "hbishop506@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4127", "14", "469", "11", "Single parent resource center");
INSERT INTO `wp_gf_entry_meta` VALUES("4128", "14", "469", "5", "I have relationship issues with my 13 year old daughter and my mother who is her primary care taker. \r\nI am available any day as I am on disability.");
INSERT INTO `wp_gf_entry_meta` VALUES("4129", "14", "469", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4130", "14", "469", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4131", "14", "469", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4132", "14", "469", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4133", "14", "469", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4134", "14", "469", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4135", "14", "470", "1.3", "Trent");
INSERT INTO `wp_gf_entry_meta` VALUES("4136", "14", "470", "1.6", "Folan");
INSERT INTO `wp_gf_entry_meta` VALUES("4137", "14", "470", "2", "27");
INSERT INTO `wp_gf_entry_meta` VALUES("4138", "14", "470", "3", "(778) 350-5409");
INSERT INTO `wp_gf_entry_meta` VALUES("4139", "14", "470", "4", "Trentfolan@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4140", "14", "470", "11", "Sign by your offices");
INSERT INTO `wp_gf_entry_meta` VALUES("4141", "14", "470", "5", "After several years of having a low mood I feel it is time to approach it. It has become clear that it isn\'t going to simply pass and it is starting the to have an increasing impact on my day to day life. Currently, it takes hours to get up, I cannot open my email for weeks at a time due to anxiety, avoidance of most commitments including preferred activities. \r\n\r\nI had myself convinced that it was fine and that ultra-endurance cycling would aid with all of this. However, it simply worked by isolating myself from everything for hours at a time. This realisation of avoidance only became clear upon having to spend a few weeks off of the bike due to injuries/medical orders.");
INSERT INTO `wp_gf_entry_meta` VALUES("4142", "14", "470", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4143", "14", "470", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4144", "14", "470", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4145", "14", "470", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4146", "14", "471", "1.3", "Lindsay");
INSERT INTO `wp_gf_entry_meta` VALUES("4147", "14", "471", "1.6", "Epp");
INSERT INTO `wp_gf_entry_meta` VALUES("4148", "14", "471", "2", "24");
INSERT INTO `wp_gf_entry_meta` VALUES("4149", "14", "471", "3", "(778) 677-6673");
INSERT INTO `wp_gf_entry_meta` VALUES("4150", "14", "471", "4", "lindsaymepp@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4151", "14", "471", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("4152", "14", "471", "5", "I am a new teacher and in my first classroom. I need help navigating regular work stress and not allowing it to take over my life. I am medicated for Generalized Anxiety Disorder which likely enhances my stress and worry.");
INSERT INTO `wp_gf_entry_meta` VALUES("4153", "14", "471", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4154", "14", "471", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4155", "14", "471", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4156", "14", "471", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("4157", "14", "472", "1.3", "Tina");
INSERT INTO `wp_gf_entry_meta` VALUES("4158", "14", "472", "1.6", "Stokvis");
INSERT INTO `wp_gf_entry_meta` VALUES("4159", "14", "472", "2", "31");
INSERT INTO `wp_gf_entry_meta` VALUES("4160", "14", "472", "3", "(604) 250-3569");
INSERT INTO `wp_gf_entry_meta` VALUES("4161", "14", "472", "4", "tstokvis@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4162", "14", "472", "11", "Website");
INSERT INTO `wp_gf_entry_meta` VALUES("4163", "14", "472", "5", "- OCD\'s - I live my life mostly fine with them, but they are affecting my relationship, and they have affected my work in the past\r\n- Need for breathing exercises/therapy? (began holding my breath as a child in sports, and I do it when I sleep now as an adult.  I can explain more, I\'ve been to sleep clinics.  I do not have sleep apnea, and I do not snore.  Holding my breath intermittently while I sleep has affected my last 3 long term relationships in a big way)\r\n- Father is an alcoholic; mother suffers from mental health issues (both sides of my family have experienced (mild?) sexual abuse)\r\n- Am a bit anxious, but feel like that\'s going away now that I don\'t juggle multiple low paying NGO jobs, although still worth working on\r\n(Generally I\'m doing pretty well in life, like my work, and have a lot of friends, but I\'m sure I\'m affected by the latter things, and the former are rearing their heads in my relationship)\r\nPrefer M - F 5 - 8 pm, if possible.  Possibly prefer a female, though maybe either.  No extended health benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("4164", "14", "472", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4165", "14", "472", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("4166", "14", "472", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4167", "14", "472", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("4168", "14", "473", "1.3", "Caleb");
INSERT INTO `wp_gf_entry_meta` VALUES("4169", "14", "473", "1.6", "Miller");
INSERT INTO `wp_gf_entry_meta` VALUES("4170", "14", "473", "2", "25, same for Fiance: Allison Weick");
INSERT INTO `wp_gf_entry_meta` VALUES("4171", "14", "473", "3", "(778) 349-2535");
INSERT INTO `wp_gf_entry_meta` VALUES("4172", "14", "473", "4", "calebmiller@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4173", "14", "473", "11", "From retired pastor(Ross White)");
INSERT INTO `wp_gf_entry_meta` VALUES("4174", "14", "473", "5", "We were recommended to see Bill by Ross, as he\'s out of town, for marriage counselling. We\'re available most weekdays, with the exception of Thursdays.");
INSERT INTO `wp_gf_entry_meta` VALUES("4175", "14", "473", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4176", "14", "473", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4177", "14", "473", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("4178", "14", "474", "1.3", "shelley");
INSERT INTO `wp_gf_entry_meta` VALUES("4179", "14", "474", "1.6", "travis");
INSERT INTO `wp_gf_entry_meta` VALUES("4180", "14", "474", "2", "52");
INSERT INTO `wp_gf_entry_meta` VALUES("4181", "14", "474", "3", "(250) 661-2800");
INSERT INTO `wp_gf_entry_meta` VALUES("4182", "14", "474", "4", "shellstravis@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4183", "14", "474", "11", "Citizens Counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("4184", "14", "474", "5", "I suffered some severe trauma when I was a teenager (possibly much earlier). I have buried it for 35 years... and now I was triggered a couple days ago and I have so much going on inside I feel like I am disconnected from my own body.  I am emotionally all over the place and I don\'t know how to handle it. It is affecting my work and personal relationship. I am in need of help as soon as possible.");
INSERT INTO `wp_gf_entry_meta` VALUES("4185", "14", "474", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4186", "14", "474", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4187", "14", "474", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4188", "14", "474", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4189", "14", "474", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("4190", "14", "475", "1.3", "Suzanne");
INSERT INTO `wp_gf_entry_meta` VALUES("4191", "14", "475", "1.6", "Boase");
INSERT INTO `wp_gf_entry_meta` VALUES("4192", "14", "475", "2", "61");
INSERT INTO `wp_gf_entry_meta` VALUES("4193", "14", "475", "3", "(250) 391-7449");
INSERT INTO `wp_gf_entry_meta` VALUES("4194", "14", "475", "4", "sboase@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4195", "14", "475", "11", "Mental Health");
INSERT INTO `wp_gf_entry_meta` VALUES("4196", "14", "475", "5", "PTSD\r\nI am employed as a Emergency Support Worker at a local homeless shelter.  Part of my job is as a first responder to critical incidents. I have been impacted by the fentanyl crisis.");
INSERT INTO `wp_gf_entry_meta` VALUES("4197", "14", "475", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4198", "14", "475", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4199", "14", "475", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4200", "14", "476", "1.3", "Anne");
INSERT INTO `wp_gf_entry_meta` VALUES("4201", "14", "476", "1.6", "Dick");
INSERT INTO `wp_gf_entry_meta` VALUES("4202", "14", "476", "2", "33");
INSERT INTO `wp_gf_entry_meta` VALUES("4203", "14", "476", "3", "(250) 881-4205");
INSERT INTO `wp_gf_entry_meta` VALUES("4204", "14", "476", "4", "anne_dick@icloud.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4205", "14", "476", "11", "google");
INSERT INTO `wp_gf_entry_meta` VALUES("4206", "14", "476", "5", "Hello, I am looking for a counsellor who can assist me with anxiety management and difficulties allowing myself to really engage in my relationship.");
INSERT INTO `wp_gf_entry_meta` VALUES("4207", "14", "476", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4208", "14", "476", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4209", "14", "476", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4210", "14", "476", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("4211", "14", "477", "1.3", "Jon");
INSERT INTO `wp_gf_entry_meta` VALUES("4212", "14", "477", "1.6", "Newton");
INSERT INTO `wp_gf_entry_meta` VALUES("4213", "14", "477", "2", "54");
INSERT INTO `wp_gf_entry_meta` VALUES("4214", "14", "477", "3", "(250) 893-9606");
INSERT INTO `wp_gf_entry_meta` VALUES("4215", "14", "477", "4", "joncnewton@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4216", "14", "477", "11", "Wife recommended");
INSERT INTO `wp_gf_entry_meta` VALUES("4217", "14", "477", "5", "Issues with marriage concerning care and appreciation for my wife, historical issues and how to correct, make amends, and move past.");
INSERT INTO `wp_gf_entry_meta` VALUES("4218", "14", "477", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4219", "14", "477", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4220", "14", "477", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("4221", "14", "477", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4222", "14", "477", "9.1", "$120-80");
INSERT INTO `wp_gf_entry_meta` VALUES("4223", "14", "478", "1.3", "Emily");
INSERT INTO `wp_gf_entry_meta` VALUES("4224", "14", "478", "1.6", "Trenchard");
INSERT INTO `wp_gf_entry_meta` VALUES("4225", "14", "478", "2", "26");
INSERT INTO `wp_gf_entry_meta` VALUES("4226", "14", "478", "3", "(250) 327-4026");
INSERT INTO `wp_gf_entry_meta` VALUES("4227", "14", "478", "4", "eltrenchard@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4228", "14", "478", "11", "UVic");
INSERT INTO `wp_gf_entry_meta` VALUES("4229", "14", "478", "5", "Severe anxiety disorder and depression.\r\nopen availability\r\nfemale therapist\r\nstudent health benefits at University of Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4230", "14", "478", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4231", "14", "478", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4232", "14", "478", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4233", "14", "478", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4234", "14", "478", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4235", "14", "479", "1.3", "Elizabeth");
INSERT INTO `wp_gf_entry_meta` VALUES("4236", "14", "479", "1.6", "Taylor");
INSERT INTO `wp_gf_entry_meta` VALUES("4237", "14", "479", "2", "21-10542 McDonald Park Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("4238", "14", "479", "3", "(250) 655-0633");
INSERT INTO `wp_gf_entry_meta` VALUES("4239", "14", "479", "4", "lizeat@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4240", "14", "479", "11", "Website");
INSERT INTO `wp_gf_entry_meta` VALUES("4241", "14", "479", "5", "This is for my 11 year old daughter who has mentioned suicidal thoughts. Her grade 5 teacher just called me saying that my daughter has mentioned her thoughts to the Councillor at the middle school she will be transitioning into this September.");
INSERT INTO `wp_gf_entry_meta` VALUES("4242", "14", "479", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4243", "14", "479", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4244", "14", "479", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4245", "14", "480", "1.3", "Tui");
INSERT INTO `wp_gf_entry_meta` VALUES("4246", "14", "480", "1.6", "Hartman");
INSERT INTO `wp_gf_entry_meta` VALUES("4247", "14", "480", "2", "32");
INSERT INTO `wp_gf_entry_meta` VALUES("4248", "14", "480", "3", "(250) 884-8257");
INSERT INTO `wp_gf_entry_meta` VALUES("4249", "14", "480", "4", "tui.hartman@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4250", "14", "480", "11", "google");
INSERT INTO `wp_gf_entry_meta` VALUES("4251", "14", "480", "5", "Allow men to control and use me. Allow them to pressure me into have sex. Dont like who I am. I need to heal. I hang out with drug addicts even though I have been clean for years. I need to learn to trust men.");
INSERT INTO `wp_gf_entry_meta` VALUES("4252", "14", "480", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4253", "14", "480", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4254", "14", "480", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4255", "14", "480", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4256", "14", "480", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4257", "14", "481", "1.3", "Tiffany");
INSERT INTO `wp_gf_entry_meta` VALUES("4258", "14", "481", "1.6", "Saari");
INSERT INTO `wp_gf_entry_meta` VALUES("4259", "14", "481", "2", "32");
INSERT INTO `wp_gf_entry_meta` VALUES("4260", "14", "481", "3", "(250) 479-9573");
INSERT INTO `wp_gf_entry_meta` VALUES("4261", "14", "481", "4", "dm2saari@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("4262", "14", "481", "11", "internet search");
INSERT INTO `wp_gf_entry_meta` VALUES("4263", "14", "481", "5", "Severe depression/anxiety, bordering on agoraphobia. ADD\r\nUnder psychiatric care for medications.\r\nOn social assistance, designated as a Person with Disabilities.\r\nFemale.");
INSERT INTO `wp_gf_entry_meta` VALUES("4264", "14", "481", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4265", "14", "481", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4266", "14", "481", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4267", "14", "482", "1.3", "Tyler");
INSERT INTO `wp_gf_entry_meta` VALUES("4268", "14", "482", "1.6", "Johnson");
INSERT INTO `wp_gf_entry_meta` VALUES("4269", "14", "482", "2", "15");
INSERT INTO `wp_gf_entry_meta` VALUES("4270", "14", "482", "3", "(250) 889-0378");
INSERT INTO `wp_gf_entry_meta` VALUES("4271", "14", "482", "4", "tarantanderson@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4272", "14", "482", "11", "a friend");
INSERT INTO `wp_gf_entry_meta` VALUES("4273", "14", "482", "5", "I\'m Tara Anderson, Tyler\'s Mom and am the one completing this form and that is my contact info. Tyler has severe social anxiety, some general anxiety and at times has struggled with depression and last Fall had suicidal thoughts. The social anxiety has prevented him from attending \'regular\' school. I\'ve tried smaller class sizes at Westshore Learning and Training, but Tyler didn\'t like his cohort of peers, as Tyler is quite bright and was bored, and it wasn\'t the right fit for him. He is currently doing grade 9 through SIDES online schooling and I\'m working from home to be there for him and to help him. His goal is to return to regular school in the fall as he misses the social interaction, but he\'ll need some great support and tools to overcome his fears and manage his anxiety. Tyler has been bullied at school in his past and was verbally/emotionally abused by his father, who he has refused to see for 6 years, so I think there is also some trauma at the root of his symptoms. For a long time Tyler was not willing to see a counsellor, but is now open to it, so I want to book an appointment as soon as possible before he might close the door again. I\'d prefer a therapist with experience in teens with anxiety, if possible a male might be good, but the main thing is someone Tyler will feel comfortable with, that has the experience to truly help make a difference. I don\'t have extended health benefits, am working in a casual position with Interior Health. Given I\'m working from home the majority of the time (with some travel to Interior as needed) and Tyler is doing school online, we are fairly flexible in our schedule of availability. Thank you, Tara");
INSERT INTO `wp_gf_entry_meta` VALUES("4274", "14", "482", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4275", "14", "482", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4276", "14", "482", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4277", "14", "482", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("4278", "14", "483", "1.3", "Tanya");
INSERT INTO `wp_gf_entry_meta` VALUES("4279", "14", "483", "1.6", "King");
INSERT INTO `wp_gf_entry_meta` VALUES("4280", "14", "483", "2", "35");
INSERT INTO `wp_gf_entry_meta` VALUES("4281", "14", "483", "3", "(778) 440-4334");
INSERT INTO `wp_gf_entry_meta` VALUES("4282", "14", "483", "4", "tanyaking1982@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4283", "14", "483", "11", "Through a friend who has had counselling through your services.");
INSERT INTO `wp_gf_entry_meta` VALUES("4284", "14", "483", "5", "Navigating through a new discovery of personal identity that concerns my sexuality (LGBT).");
INSERT INTO `wp_gf_entry_meta` VALUES("4285", "14", "483", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4286", "14", "483", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4287", "14", "483", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4288", "14", "484", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("4289", "14", "484", "1.6", "Thompson");
INSERT INTO `wp_gf_entry_meta` VALUES("4290", "14", "484", "2", "34");
INSERT INTO `wp_gf_entry_meta` VALUES("4291", "14", "484", "3", "(778) 677-0755");
INSERT INTO `wp_gf_entry_meta` VALUES("4292", "14", "484", "4", "Thompson.Sarah@Hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4293", "14", "484", "11", "Social worker at VGH");
INSERT INTO `wp_gf_entry_meta` VALUES("4294", "14", "484", "5", "Was in an accident and have a mild tramatic brain injury. I working on neuro rehab at VGH but am looking for a little more support and guidance as I learn to work with my new brain.\r\nMain concerns: loss of self, inconsistent support from the people in my support system, lack of energy most likely due to mood issues (have had testing to rule out medical concerns such as thyroid, iron levels, etc).\r\nPrefer female therapist. I have a little coverage if it is through a registered counselor. On gradual return to work, I am making less money than cost of living. Not available mon 11-2, 6-7, tues 11-2, 7-8, we\'d 3-4, 6-7, thurs 4:30-5:30, fri 11-2, other than that I\'m fairly open.");
INSERT INTO `wp_gf_entry_meta` VALUES("4295", "14", "484", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4296", "14", "484", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4297", "14", "484", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4298", "14", "484", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4299", "14", "484", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4300", "14", "485", "1.3", "Katie");
INSERT INTO `wp_gf_entry_meta` VALUES("4301", "14", "485", "1.6", "Preiswerck");
INSERT INTO `wp_gf_entry_meta` VALUES("4302", "14", "485", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("4303", "14", "485", "3", "(250) 415-0548");
INSERT INTO `wp_gf_entry_meta` VALUES("4304", "14", "485", "4", "kpreiswerck@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4305", "14", "485", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("4306", "14", "485", "5", "My partner and I of twelve years are seeking some help. We are available evenings and weekends possibly Monday mornings");
INSERT INTO `wp_gf_entry_meta` VALUES("4307", "14", "485", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4308", "14", "485", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4309", "14", "485", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4310", "14", "485", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4311", "14", "486", "1.3", "Pauline");
INSERT INTO `wp_gf_entry_meta` VALUES("4312", "14", "486", "1.6", "Robertson");
INSERT INTO `wp_gf_entry_meta` VALUES("4313", "14", "486", "2", "inquiring re: counselling services for my daughter (age 11)");
INSERT INTO `wp_gf_entry_meta` VALUES("4314", "14", "486", "3", "(250) 889-1668");
INSERT INTO `wp_gf_entry_meta` VALUES("4315", "14", "486", "4", "pnrobertson@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4316", "14", "486", "11", "St. George\'s Anglican Church");
INSERT INTO `wp_gf_entry_meta` VALUES("4317", "14", "486", "5", "My 11 year-old daughter is \"neurodiverse\" (official diagnoses are general LD, developmental coordination disorder, and sensory processing disorder). She recently has expressed some negative self-talk & has been having some food issues at school (self regulation is tricky for her). We don\'t want to over-react, but we also don\'t want to ignore early warning signs/symptoms. We\'d like some professional support to explore these things with her. Wondering if/how/where this might fit within your practice. \r\n\r\nI have extended health coverage for registered counsellors only.");
INSERT INTO `wp_gf_entry_meta` VALUES("4318", "14", "486", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4319", "14", "486", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4320", "14", "486", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4321", "14", "486", "9.2", "$80-50");
INSERT INTO `wp_gf_entry_meta` VALUES("4322", "3", "487", "1.3", "Pauline");
INSERT INTO `wp_gf_entry_meta` VALUES("4323", "3", "487", "1.6", "Robertson");
INSERT INTO `wp_gf_entry_meta` VALUES("4324", "3", "487", "2", "pnrobertson@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4325", "3", "487", "3.1", "1918 San Pedro Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("4326", "3", "487", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4327", "3", "487", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4328", "3", "487", "3.5", "V8N 2G8");
INSERT INTO `wp_gf_entry_meta` VALUES("4329", "3", "487", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4330", "3", "487", "4", "(250) 385-1668");
INSERT INTO `wp_gf_entry_meta` VALUES("4331", "3", "487", "7", "n/a");
INSERT INTO `wp_gf_entry_meta` VALUES("4332", "3", "487", "5", "would like to be added to e-mail list for future courses");
INSERT INTO `wp_gf_entry_meta` VALUES("4334", "14", "488", "1.3", "Willo");
INSERT INTO `wp_gf_entry_meta` VALUES("4335", "14", "488", "1.6", "Stevenson");
INSERT INTO `wp_gf_entry_meta` VALUES("4336", "14", "488", "2", "67");
INSERT INTO `wp_gf_entry_meta` VALUES("4337", "14", "488", "3", "(250) 893-8134");
INSERT INTO `wp_gf_entry_meta` VALUES("4338", "14", "488", "4", "tjoys@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4339", "14", "488", "11", "Maureen at Headway provided a referral.");
INSERT INTO `wp_gf_entry_meta` VALUES("4340", "14", "488", "5", "My mother, Willo Stevenson, has Parkinson\'s Disease. She was diagnosed in 2003. One year ago, she was living at home alone on Salt Spring Island managing her own affairs with regular help, which she organized and paid for herself. She walked with a cane at home and needed a wheelchair or scooter for longer distances. She was first on the waitlist for an independent living facility in Victoria.\r\nIn June 2016 she fell, and while she had only minor cuts and bruises from the fall, her PD symptoms advanced significantly so that she was almost completely helpless. Since then, she has been in acute care at Lady Minto Hospital, acute care at Victoria General Hospital and a rehab program at Aberdeen Hospital. She is now waiting for subsidized placement at a complex care facility in Victoria. She has regained some abilities, but needs a wheelchair for mobility and can only walk several steps with assistance. She can feed herself but needs help with most other activities related to self care. She also has mild cognitive impairment and is no longer able to manage her affairs. I am her daughter and POA. My phone and email are provided in this form.\r\nWillo has struggled with depression for many years, anxiety since her PD diagnosis and now has difficulty controlling her emotions. Maureen at Headway recommended Margaret Anderson as a resource for Willo, who is desperately in need of support with navigating her feelings of grief and loss associated with this major life transition. We would also benefit from Margaret\'s assistance with end-of-life conversations and preparedness.\r\nCurrently, afternoons between 1:00pm and 5:00pm any day of the week are best for Willo\'s schedule. With notice, I have a flexible schedule.\r\nWillo does not have extended health benefits. I do.\r\nMany thanks!\r\nTia Robertson (Willo\'s daughter)");
INSERT INTO `wp_gf_entry_meta` VALUES("4341", "14", "488", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4342", "14", "488", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4343", "14", "488", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4344", "14", "488", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4345", "14", "489", "1.3", "Deborah");
INSERT INTO `wp_gf_entry_meta` VALUES("4346", "14", "489", "1.6", "Carroll");
INSERT INTO `wp_gf_entry_meta` VALUES("4347", "14", "489", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("4348", "14", "489", "3", "(613) 407-6858");
INSERT INTO `wp_gf_entry_meta` VALUES("4349", "14", "489", "4", "deborahcarroll@live.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4350", "14", "489", "11", "Internet search");
INSERT INTO `wp_gf_entry_meta` VALUES("4351", "14", "489", "5", "I have been diagnosed with generalized anxiety in the past. I am new to Victoria having just moved here from Ottawa and am looking for support.");
INSERT INTO `wp_gf_entry_meta` VALUES("4352", "14", "489", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4353", "14", "489", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4354", "14", "489", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4355", "14", "489", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4356", "14", "490", "1.3", "Erik");
INSERT INTO `wp_gf_entry_meta` VALUES("4357", "14", "490", "1.6", "Deplonty");
INSERT INTO `wp_gf_entry_meta` VALUES("4358", "14", "490", "2", "240 Superior ST");
INSERT INTO `wp_gf_entry_meta` VALUES("4359", "14", "490", "3", "(250) 739-1069");
INSERT INTO `wp_gf_entry_meta` VALUES("4360", "14", "490", "4", "Eridk.es.neopet@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4361", "14", "490", "11", "Through a friend");
INSERT INTO `wp_gf_entry_meta` VALUES("4362", "14", "490", "5", "I have many issues, and I don\'t know where to begin. I am grieving the loss of my grandmother, and feel I have no safe place to go, or supportive member in my life at times. Will make anytime work. I prefer a therapist who is accepting of all, and everyone; all walks of life. I do not have benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("4363", "14", "490", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4364", "14", "490", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4365", "14", "490", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4366", "14", "490", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4367", "14", "490", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4368", "10", "491", "20.3", "William");
INSERT INTO `wp_gf_entry_meta` VALUES("4369", "10", "491", "20.6", "LeBlanc");
INSERT INTO `wp_gf_entry_meta` VALUES("4370", "10", "491", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("4371", "10", "491", "10", "30/04/2003");
INSERT INTO `wp_gf_entry_meta` VALUES("4372", "10", "491", "4", "jncleblanc@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("4373", "10", "491", "7", "(250) 385-3971");
INSERT INTO `wp_gf_entry_meta` VALUES("4374", "10", "491", "2", "Jennifer LeBlanc");
INSERT INTO `wp_gf_entry_meta` VALUES("4375", "10", "491", "3.1", "689 Daffodil Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("4376", "10", "491", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4377", "10", "491", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4378", "10", "491", "3.5", "V8Z 2S8");
INSERT INTO `wp_gf_entry_meta` VALUES("4379", "10", "491", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4380", "10", "491", "5", "jncleblanc@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("4381", "10", "491", "6", "(250) 508-4648");
INSERT INTO `wp_gf_entry_meta` VALUES("4382", "10", "491", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("4383", "10", "491", "19", "work email");
INSERT INTO `wp_gf_entry_meta` VALUES("4384", "10", "491", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4385", "10", "491", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("4386", "10", "491", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4387", "10", "491", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("4388", "10", "491", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4389", "10", "491", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4390", "10", "491", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4391", "10", "492", "20.3", "Jake");
INSERT INTO `wp_gf_entry_meta` VALUES("4392", "10", "492", "20.6", "Takeda");
INSERT INTO `wp_gf_entry_meta` VALUES("4393", "10", "492", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("4394", "10", "492", "10", "20/01/2003");
INSERT INTO `wp_gf_entry_meta` VALUES("4395", "10", "492", "4", "jetfusion@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4396", "10", "492", "7", "(250) 744-0644");
INSERT INTO `wp_gf_entry_meta` VALUES("4397", "10", "492", "2", "Christine Takeda");
INSERT INTO `wp_gf_entry_meta` VALUES("4398", "10", "492", "3.1", "4147 Carey Road");
INSERT INTO `wp_gf_entry_meta` VALUES("4399", "10", "492", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4400", "10", "492", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4401", "10", "492", "3.5", "V8Z 4G7");
INSERT INTO `wp_gf_entry_meta` VALUES("4402", "10", "492", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4403", "10", "492", "5", "takefour@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4404", "10", "492", "6", "(250) 213-8249");
INSERT INTO `wp_gf_entry_meta` VALUES("4405", "10", "492", "8", "email.");
INSERT INTO `wp_gf_entry_meta` VALUES("4406", "10", "492", "19", "Christ Community Church");
INSERT INTO `wp_gf_entry_meta` VALUES("4407", "10", "492", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4408", "10", "492", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("4409", "10", "492", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("4410", "10", "492", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("4411", "10", "492", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4412", "10", "492", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4413", "10", "492", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4414", "10", "492", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4415", "10", "493", "20.3", "Kailyn");
INSERT INTO `wp_gf_entry_meta` VALUES("4416", "10", "493", "20.6", "Groth");
INSERT INTO `wp_gf_entry_meta` VALUES("4417", "10", "493", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("4418", "10", "493", "10", "03/11/2004");
INSERT INTO `wp_gf_entry_meta` VALUES("4419", "10", "493", "4", "kailynxoxo@me.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4420", "10", "493", "7", "(778) 977-6394");
INSERT INTO `wp_gf_entry_meta` VALUES("4421", "10", "493", "2", "Lori Ferguson");
INSERT INTO `wp_gf_entry_meta` VALUES("4422", "10", "493", "3.1", "1620 Wycliffe Place");
INSERT INTO `wp_gf_entry_meta` VALUES("4423", "10", "493", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4424", "10", "493", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4425", "10", "493", "3.5", "V8N 4X4");
INSERT INTO `wp_gf_entry_meta` VALUES("4426", "10", "493", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4427", "10", "493", "5", "leferguson@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4428", "10", "493", "6", "(250) 213-6100");
INSERT INTO `wp_gf_entry_meta` VALUES("4429", "10", "493", "8", "Parent\'s email or text youth");
INSERT INTO `wp_gf_entry_meta` VALUES("4430", "10", "493", "19", "Volunteer Victoria e-news");
INSERT INTO `wp_gf_entry_meta` VALUES("4431", "10", "493", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4432", "10", "493", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("4433", "10", "493", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4434", "10", "493", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("4435", "10", "493", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4436", "10", "493", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4437", "10", "493", "17", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4438", "10", "494", "20.3", "Mary-Anne");
INSERT INTO `wp_gf_entry_meta` VALUES("4439", "10", "494", "20.6", "Gervais");
INSERT INTO `wp_gf_entry_meta` VALUES("4440", "10", "494", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("4441", "10", "494", "10", "24/09/2000");
INSERT INTO `wp_gf_entry_meta` VALUES("4442", "10", "494", "4", "catherinegervais1@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4443", "10", "494", "7", "(250) 891-4277");
INSERT INTO `wp_gf_entry_meta` VALUES("4444", "10", "494", "2", "Catherine Gervais");
INSERT INTO `wp_gf_entry_meta` VALUES("4445", "10", "494", "3.1", "A14 - 2820 Harriet Road");
INSERT INTO `wp_gf_entry_meta` VALUES("4446", "10", "494", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4447", "10", "494", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4448", "10", "494", "3.5", "V9A 1T1");
INSERT INTO `wp_gf_entry_meta` VALUES("4449", "10", "494", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4450", "10", "494", "5", "catherinegervais1@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4451", "10", "494", "6", "(250) 891-4277");
INSERT INTO `wp_gf_entry_meta` VALUES("4452", "10", "494", "8", "phone");
INSERT INTO `wp_gf_entry_meta` VALUES("4453", "10", "494", "19", "word of mouth");
INSERT INTO `wp_gf_entry_meta` VALUES("4454", "10", "494", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4455", "10", "494", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("4456", "10", "494", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4457", "10", "494", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4458", "10", "494", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4459", "10", "494", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4460", "10", "494", "17", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("4461", "14", "495", "1.3", "Shelby");
INSERT INTO `wp_gf_entry_meta` VALUES("4462", "14", "495", "1.6", "McCoy");
INSERT INTO `wp_gf_entry_meta` VALUES("4463", "14", "495", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("4464", "14", "495", "3", "(250) 739-0981");
INSERT INTO `wp_gf_entry_meta` VALUES("4465", "14", "495", "4", "Mccoy.shelby@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4466", "14", "495", "11", "Recommended by friend");
INSERT INTO `wp_gf_entry_meta` VALUES("4467", "14", "495", "5", "Depression, anxiety attacks. \r\nFemale therapist. \r\nNo exteded health.\r\nTuesday\'s until the end of May. Then may change.");
INSERT INTO `wp_gf_entry_meta` VALUES("4468", "14", "495", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4469", "14", "495", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4470", "14", "495", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4471", "14", "496", "1.3", "Joseph");
INSERT INTO `wp_gf_entry_meta` VALUES("4472", "14", "496", "1.6", "Lake");
INSERT INTO `wp_gf_entry_meta` VALUES("4473", "14", "496", "2", "44");
INSERT INTO `wp_gf_entry_meta` VALUES("4474", "14", "496", "3", "(250) 888-4906");
INSERT INTO `wp_gf_entry_meta` VALUES("4475", "14", "496", "4", "lakejoseph@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4476", "14", "496", "11", "online");
INSERT INTO `wp_gf_entry_meta` VALUES("4477", "14", "496", "5", "i am in a 20+ year marriage. I have Rapid Cycling Bi-Polar 1, PTSD, and ADHD. I am on CPP Disability and attending Camosun college. We have 2 children (11,8) My wife is at her wit\'s end living being with me and we fight ALL the time horribly. I need help!!! WE NEED HELP!\r\nPlease call if you can help at all. I have a hard time filling out these forms.");
INSERT INTO `wp_gf_entry_meta` VALUES("4478", "14", "496", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4479", "14", "496", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4480", "14", "496", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4481", "14", "496", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4482", "14", "496", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4483", "14", "497", "1.3", "Allison");
INSERT INTO `wp_gf_entry_meta` VALUES("4484", "14", "497", "1.6", "Saturley");
INSERT INTO `wp_gf_entry_meta` VALUES("4485", "14", "497", "2", "41");
INSERT INTO `wp_gf_entry_meta` VALUES("4486", "14", "497", "3", "(250) 514-3663");
INSERT INTO `wp_gf_entry_meta` VALUES("4487", "14", "497", "4", "amsaturley@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4488", "14", "497", "11", "CMHA");
INSERT INTO `wp_gf_entry_meta` VALUES("4489", "14", "497", "5", "My daughter and I need counselling to deal with the recent death of her father and anger and fear and loss problems\r\n\r\nPrefer a female counsellor as she is afraid of strange men and afternoons would work best after school. I\'m not employed at this time and struggling so cannot afford much");
INSERT INTO `wp_gf_entry_meta` VALUES("4490", "14", "497", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4491", "14", "497", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4492", "14", "497", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4493", "14", "497", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4494", "3", "498", "1.3", "Carla");
INSERT INTO `wp_gf_entry_meta` VALUES("4495", "3", "498", "1.6", "Willock");
INSERT INTO `wp_gf_entry_meta` VALUES("4496", "3", "498", "2", "carlawillock@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4497", "3", "498", "3.1", "3361 Linwood Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("4498", "3", "498", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4499", "3", "498", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4500", "3", "498", "3.5", "V8X 1E5");
INSERT INTO `wp_gf_entry_meta` VALUES("4501", "3", "498", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4502", "3", "498", "4", "(778) 835-9549");
INSERT INTO `wp_gf_entry_meta` VALUES("4503", "3", "498", "7", "01/01/01");
INSERT INTO `wp_gf_entry_meta` VALUES("4504", "3", "498", "5", "interested in email list for any upcoming courses");
INSERT INTO `wp_gf_entry_meta` VALUES("4506", "14", "499", "1.3", "Monika");
INSERT INTO `wp_gf_entry_meta` VALUES("4507", "14", "499", "1.6", "Pakstas");
INSERT INTO `wp_gf_entry_meta` VALUES("4508", "14", "499", "2", "30");
INSERT INTO `wp_gf_entry_meta` VALUES("4509", "14", "499", "3", "(647) 213-0095");
INSERT INTO `wp_gf_entry_meta` VALUES("4510", "14", "499", "4", "monika.pakstas@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4511", "14", "499", "11", "Saw your brochure");
INSERT INTO `wp_gf_entry_meta` VALUES("4512", "14", "499", "5", "Mild anxiety & depression\r\nPast eating disorder");
INSERT INTO `wp_gf_entry_meta` VALUES("4513", "14", "499", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4514", "14", "499", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("4515", "14", "499", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4516", "14", "499", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4517", "14", "500", "1.3", "Julian");
INSERT INTO `wp_gf_entry_meta` VALUES("4518", "14", "500", "1.6", "Drouin");
INSERT INTO `wp_gf_entry_meta` VALUES("4519", "14", "500", "2", "26");
INSERT INTO `wp_gf_entry_meta` VALUES("4520", "14", "500", "3", "(778) 350-7707");
INSERT INTO `wp_gf_entry_meta` VALUES("4521", "14", "500", "4", "Julian.drouin@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4522", "14", "500", "11", "FiancÃ© screamed your name at me and demanded that I \"Fix myself\"");
INSERT INTO `wp_gf_entry_meta` VALUES("4523", "14", "500", "5", "Need help dealing with repressed memories and relationship counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("4524", "14", "500", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4525", "14", "500", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4526", "14", "500", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4527", "14", "500", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4528", "14", "500", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4529", "14", "501", "1.3", "Emily");
INSERT INTO `wp_gf_entry_meta` VALUES("4530", "14", "501", "1.6", "Coldwell");
INSERT INTO `wp_gf_entry_meta` VALUES("4531", "14", "501", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("4532", "14", "501", "3", "(250) 213-6350");
INSERT INTO `wp_gf_entry_meta` VALUES("4533", "14", "501", "4", "emilysaidthis@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4534", "14", "501", "11", "Online search");
INSERT INTO `wp_gf_entry_meta` VALUES("4535", "14", "501", "5", "Currently going through a trial-separation with my husband. Feeling depressed and I think I need some help with coping mechanisms and getting myself back. I would prefer a female therapist. My availability is kind of all over the place, but generally Thursday or Friday could work earlier in the morning. Monday late afternoon is available too. I don\'t have benefits, and would need income-based pricing as I\'m a minimum wage worker.");
INSERT INTO `wp_gf_entry_meta` VALUES("4536", "14", "501", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4537", "14", "501", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4538", "14", "501", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4539", "10", "502", "20.3", "Kaylen");
INSERT INTO `wp_gf_entry_meta` VALUES("4540", "10", "502", "20.6", "Eardley");
INSERT INTO `wp_gf_entry_meta` VALUES("4541", "10", "502", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("4542", "10", "502", "10", "03/02/2004");
INSERT INTO `wp_gf_entry_meta` VALUES("4543", "10", "502", "4", "7livelaughlove@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4544", "10", "502", "7", "(778) 678-6848");
INSERT INTO `wp_gf_entry_meta` VALUES("4545", "10", "502", "2", "Marie Eardley");
INSERT INTO `wp_gf_entry_meta` VALUES("4546", "10", "502", "3.1", "3946 Emerald Place");
INSERT INTO `wp_gf_entry_meta` VALUES("4547", "10", "502", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4548", "10", "502", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4549", "10", "502", "3.5", "V8P 4T6");
INSERT INTO `wp_gf_entry_meta` VALUES("4550", "10", "502", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4551", "10", "502", "5", "meardley@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4552", "10", "502", "6", "(250) 216-6042");
INSERT INTO `wp_gf_entry_meta` VALUES("4553", "10", "502", "8", "Email or text");
INSERT INTO `wp_gf_entry_meta` VALUES("4554", "10", "502", "19", "Big Brothers Big Sisters");
INSERT INTO `wp_gf_entry_meta` VALUES("4555", "10", "502", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4556", "10", "502", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4557", "10", "502", "18.1", "Cheque");
INSERT INTO `wp_gf_entry_meta` VALUES("4558", "10", "502", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("4559", "10", "502", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4560", "10", "502", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("4561", "10", "502", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4562", "10", "502", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4563", "10", "502", "17", "Sertraline - 75 mg, nexium - 20 mg.");
INSERT INTO `wp_gf_entry_meta` VALUES("4564", "10", "503", "20.3", "Tayah");
INSERT INTO `wp_gf_entry_meta` VALUES("4565", "10", "503", "20.6", "Thomson");
INSERT INTO `wp_gf_entry_meta` VALUES("4566", "10", "503", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("4567", "10", "503", "10", "24/03/2002");
INSERT INTO `wp_gf_entry_meta` VALUES("4568", "10", "503", "4", "xb33qu33nx@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4569", "10", "503", "7", "(778) 677-5743");
INSERT INTO `wp_gf_entry_meta` VALUES("4570", "10", "503", "2", "Andrea Koschzeck");
INSERT INTO `wp_gf_entry_meta` VALUES("4571", "10", "503", "3.1", "3182 Donald Street");
INSERT INTO `wp_gf_entry_meta` VALUES("4572", "10", "503", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4573", "10", "503", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4574", "10", "503", "3.5", "V9A 1Y3");
INSERT INTO `wp_gf_entry_meta` VALUES("4575", "10", "503", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4576", "10", "503", "5", "tayahs_mommy@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4577", "10", "503", "6", "(250) 744-4267");
INSERT INTO `wp_gf_entry_meta` VALUES("4578", "10", "503", "8", "Phone or email");
INSERT INTO `wp_gf_entry_meta` VALUES("4579", "10", "503", "19", "From sister who is a minister");
INSERT INTO `wp_gf_entry_meta` VALUES("4580", "10", "503", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4581", "10", "503", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4582", "10", "503", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("4583", "10", "503", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("4584", "10", "503", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4585", "10", "503", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4586", "10", "503", "17", "No.");
INSERT INTO `wp_gf_entry_meta` VALUES("4587", "14", "504", "1.3", "Thea");
INSERT INTO `wp_gf_entry_meta` VALUES("4588", "14", "504", "1.6", "Smith");
INSERT INTO `wp_gf_entry_meta` VALUES("4589", "14", "504", "2", "20");
INSERT INTO `wp_gf_entry_meta` VALUES("4590", "14", "504", "3", "(250) 888-6327");
INSERT INTO `wp_gf_entry_meta` VALUES("4591", "14", "504", "4", "theasmith@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("4592", "14", "504", "11", "Through the University of Victoria\'s website.");
INSERT INTO `wp_gf_entry_meta` VALUES("4593", "14", "504", "5", "I am having issues with stress and anxiety about school, work and my social life. I also struggle with anger in my personal relationships. I think I also struggle with a low self-esteem and problems trusting people in my life. \r\nI work two jobs, so my availability is only Thursday or Friday, but any time of day. \r\nI don\'t have a preference for a male or female therapist.\r\nI do have health benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("4594", "14", "504", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4595", "14", "504", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4596", "14", "504", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4597", "14", "504", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4598", "14", "505", "1.3", "Tabitha");
INSERT INTO `wp_gf_entry_meta` VALUES("4599", "14", "505", "1.6", "Bennett");
INSERT INTO `wp_gf_entry_meta` VALUES("4600", "14", "505", "2", "31");
INSERT INTO `wp_gf_entry_meta` VALUES("4601", "14", "505", "3", "(250) 415-0517");
INSERT INTO `wp_gf_entry_meta` VALUES("4602", "14", "505", "4", "tabi74@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4603", "14", "505", "11", "internet");
INSERT INTO `wp_gf_entry_meta` VALUES("4604", "14", "505", "5", "Dealing with stress of being a new parent, major relationship issues with spouse, and stressors due to financial problems");
INSERT INTO `wp_gf_entry_meta` VALUES("4605", "14", "505", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4606", "14", "505", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4607", "14", "505", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4608", "14", "505", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("4609", "14", "506", "1.3", "Jorden");
INSERT INTO `wp_gf_entry_meta` VALUES("4610", "14", "506", "1.6", "Donovan");
INSERT INTO `wp_gf_entry_meta` VALUES("4611", "14", "506", "2", "20");
INSERT INTO `wp_gf_entry_meta` VALUES("4612", "14", "506", "3", "(250) 634-1097");
INSERT INTO `wp_gf_entry_meta` VALUES("4613", "14", "506", "4", "jordendonovan@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4614", "14", "506", "11", "fellow counsellor");
INSERT INTO `wp_gf_entry_meta` VALUES("4615", "14", "506", "5", "anxiety, depression");
INSERT INTO `wp_gf_entry_meta` VALUES("4616", "14", "506", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4617", "14", "506", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4618", "14", "506", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4619", "14", "507", "1.3", "Jessica");
INSERT INTO `wp_gf_entry_meta` VALUES("4620", "14", "507", "1.6", "Speed");
INSERT INTO `wp_gf_entry_meta` VALUES("4621", "14", "507", "2", "25");
INSERT INTO `wp_gf_entry_meta` VALUES("4622", "14", "507", "3", "(250) 532-8478");
INSERT INTO `wp_gf_entry_meta` VALUES("4623", "14", "507", "4", "Jessicamspeed@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4624", "14", "507", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("4625", "14", "507", "5", "-Female therapist preferred\r\n-Health benefits through Sunlife I am not sure if it covers counselling\r\n-Best days for an appointment would be sunday or monday or any other day after 6pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4626", "14", "507", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4627", "14", "507", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4628", "14", "507", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("4629", "14", "507", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4630", "14", "507", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4631", "10", "508", "20.3", "Jaida");
INSERT INTO `wp_gf_entry_meta` VALUES("4632", "10", "508", "20.6", "Ready");
INSERT INTO `wp_gf_entry_meta` VALUES("4633", "10", "508", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("4634", "10", "508", "10", "26/04/2005");
INSERT INTO `wp_gf_entry_meta` VALUES("4635", "10", "508", "4", "jaidar1416@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4636", "10", "508", "7", "(250) 508-2829");
INSERT INTO `wp_gf_entry_meta` VALUES("4637", "10", "508", "2", "Jaime Ready");
INSERT INTO `wp_gf_entry_meta` VALUES("4638", "10", "508", "3.1", "952 Walker St");
INSERT INTO `wp_gf_entry_meta` VALUES("4639", "10", "508", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4640", "10", "508", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4641", "10", "508", "3.5", "V9A4C4");
INSERT INTO `wp_gf_entry_meta` VALUES("4642", "10", "508", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4643", "10", "508", "5", "jaiready@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4644", "10", "508", "6", "(778) 977-3135");
INSERT INTO `wp_gf_entry_meta` VALUES("4645", "10", "508", "8", "email to set up or schedule   / call or email for anything else.");
INSERT INTO `wp_gf_entry_meta` VALUES("4646", "10", "508", "19", "Shawna - Lansdowne Middle School");
INSERT INTO `wp_gf_entry_meta` VALUES("4647", "10", "508", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4648", "10", "508", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4649", "10", "508", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("4650", "10", "508", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4651", "10", "508", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("4652", "10", "508", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4653", "10", "508", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4654", "10", "508", "17", "Not at this time.");
INSERT INTO `wp_gf_entry_meta` VALUES("4655", "14", "509", "1.3", "Bryce");
INSERT INTO `wp_gf_entry_meta` VALUES("4656", "14", "509", "1.6", "Starling");
INSERT INTO `wp_gf_entry_meta` VALUES("4657", "14", "509", "2", "20");
INSERT INTO `wp_gf_entry_meta` VALUES("4658", "14", "509", "3", "(125) 068-6253");
INSERT INTO `wp_gf_entry_meta` VALUES("4659", "14", "509", "4", "Brycestarling@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4660", "14", "509", "11", "Friend");
INSERT INTO `wp_gf_entry_meta` VALUES("4661", "14", "509", "5", "I have relationship issues that i cant get over with a current relationship that im in. I also have issues from my childhood with past relationships that i feel i never resolved. For example being assulted by my x\'s uncle. Im free 5-8 anyday of the week an female or male therapist is okay!");
INSERT INTO `wp_gf_entry_meta` VALUES("4662", "14", "509", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4663", "14", "509", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4664", "14", "509", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("4665", "14", "509", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4666", "14", "509", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4667", "14", "509", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4668", "10", "510", "20.3", "Julio");
INSERT INTO `wp_gf_entry_meta` VALUES("4669", "10", "510", "20.6", "Gonzalez-Bernal");
INSERT INTO `wp_gf_entry_meta` VALUES("4670", "10", "510", "9.1", "Male");
INSERT INTO `wp_gf_entry_meta` VALUES("4671", "10", "510", "10", "13/ 12/ 2003");
INSERT INTO `wp_gf_entry_meta` VALUES("4672", "10", "510", "4", "julio1966x@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4673", "10", "510", "7", "(250) 483-5605");
INSERT INTO `wp_gf_entry_meta` VALUES("4674", "10", "510", "2", "Julissa Bernal Mora");
INSERT INTO `wp_gf_entry_meta` VALUES("4675", "10", "510", "3.1", "378 St Charles St");
INSERT INTO `wp_gf_entry_meta` VALUES("4676", "10", "510", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4677", "10", "510", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4678", "10", "510", "3.5", "V8S 3N3");
INSERT INTO `wp_gf_entry_meta` VALUES("4679", "10", "510", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4680", "10", "510", "5", "bernaljulissa@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4681", "10", "510", "6", "(250) 483-5605");
INSERT INTO `wp_gf_entry_meta` VALUES("4682", "10", "510", "8", "email");
INSERT INTO `wp_gf_entry_meta` VALUES("4683", "10", "510", "19", "Volunteer Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4684", "10", "510", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4685", "10", "510", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_gf_entry_meta` VALUES("4686", "10", "510", "12.3", "relationship challenges");
INSERT INTO `wp_gf_entry_meta` VALUES("4687", "10", "510", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4688", "10", "510", "17", "No, he is not currently taking any medication");
INSERT INTO `wp_gf_entry_meta` VALUES("4689", "14", "511", "1.3", "Sebastien");
INSERT INTO `wp_gf_entry_meta` VALUES("4690", "14", "511", "1.6", "Thuot");
INSERT INTO `wp_gf_entry_meta` VALUES("4691", "14", "511", "2", "994 Tayberry Terrace");
INSERT INTO `wp_gf_entry_meta` VALUES("4692", "14", "511", "3", "(250) 588-6127");
INSERT INTO `wp_gf_entry_meta` VALUES("4693", "14", "511", "4", "sthuot009@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4694", "14", "511", "11", "word of mouth");
INSERT INTO `wp_gf_entry_meta` VALUES("4695", "14", "511", "5", "anxiety, depression");
INSERT INTO `wp_gf_entry_meta` VALUES("4696", "14", "511", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4697", "14", "511", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4698", "14", "511", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4699", "14", "512", "1.3", "Jessica");
INSERT INTO `wp_gf_entry_meta` VALUES("4700", "14", "512", "1.6", "Matthias");
INSERT INTO `wp_gf_entry_meta` VALUES("4701", "14", "512", "2", "33");
INSERT INTO `wp_gf_entry_meta` VALUES("4702", "14", "512", "3", "(250) 889-8276");
INSERT INTO `wp_gf_entry_meta` VALUES("4703", "14", "512", "4", "matthias.jessica@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4704", "14", "512", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("4705", "14", "512", "5", "Been experiencing fluctuating anxiety and panic attacks for the last 26 years. Lots of childhood trauma, sexual abuse etc. I have done a lot of counselling in the past and have made great strides. Im currently struggling with unhealthy relationships and choosing partners who are not healthy for me. This is tied into low self esteem. I will be finishing school in the next 4 weeks so currently I can do a 4pm and on appointment but my availability will open up fully after that. I prefer a female counsellor but if there is a long wait then I am open to a male. Im hoping to work with someone who has expereince with anxiety/relationship/childhood trauma issues. Please let me know if I also need to call or if this is sufficiant to get the ball rolling.");
INSERT INTO `wp_gf_entry_meta` VALUES("4706", "14", "512", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4707", "14", "512", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4708", "14", "512", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4709", "14", "512", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4710", "14", "513", "1.3", "Samantha");
INSERT INTO `wp_gf_entry_meta` VALUES("4711", "14", "513", "1.6", "Fink");
INSERT INTO `wp_gf_entry_meta` VALUES("4712", "14", "513", "2", "24");
INSERT INTO `wp_gf_entry_meta` VALUES("4713", "14", "513", "3", "(250) 208-2814");
INSERT INTO `wp_gf_entry_meta` VALUES("4714", "14", "513", "4", "Sammi3.0x@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4715", "14", "513", "11", "Councillor & Online");
INSERT INTO `wp_gf_entry_meta` VALUES("4716", "14", "513", "5", "I need counselling for my mother & myself. We have communication problems. I also have history of drug addiction been getting clean for 2 years for my daughter which my mom has custody of.  I am on income assistance.");
INSERT INTO `wp_gf_entry_meta` VALUES("4717", "14", "513", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4718", "14", "513", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4719", "14", "513", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4720", "3", "514", "1.3", "Amber");
INSERT INTO `wp_gf_entry_meta` VALUES("4721", "3", "514", "1.6", "Eves");
INSERT INTO `wp_gf_entry_meta` VALUES("4722", "3", "514", "2", "aeves1228@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4723", "3", "514", "3.1", "640 Dunedin St.");
INSERT INTO `wp_gf_entry_meta` VALUES("4724", "3", "514", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4725", "3", "514", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4726", "3", "514", "3.5", "V8T 2L8");
INSERT INTO `wp_gf_entry_meta` VALUES("4727", "3", "514", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4728", "3", "514", "4", "(250) 884-0144");
INSERT INTO `wp_gf_entry_meta` VALUES("4729", "3", "514", "7", "October 14, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("4730", "3", "514", "5", "Pastoral Care Team Training");
INSERT INTO `wp_gf_entry_meta` VALUES("4732", "14", "515", "1.3", "Kaleigh");
INSERT INTO `wp_gf_entry_meta` VALUES("4733", "14", "515", "1.6", "Giles");
INSERT INTO `wp_gf_entry_meta` VALUES("4734", "14", "515", "2", "28");
INSERT INTO `wp_gf_entry_meta` VALUES("4735", "14", "515", "3", "(250) 415-8840");
INSERT INTO `wp_gf_entry_meta` VALUES("4736", "14", "515", "4", "kegiles@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4737", "14", "515", "11", "Citizen\'s counselling had a 2 month waiting list and forwarded me your information.");
INSERT INTO `wp_gf_entry_meta` VALUES("4738", "14", "515", "5", "I\'m in the middle of a life transition and would like some feedback. I have self esteem issues and anxiety around people, and doing the perceived \"right thing\". As a result, I often have difficulty making decisions, and following through on those decisions.\r\nI work 2-3 jobs 5 days a week, and I often feel too exhausted and apathetic to make the important decisions in my life. \r\nWhile I do work a lot during the day, many of my hours are flexible, but weekday afternoons or anytime on the weekend is preferable for a meeting.\r\nI don\'t have any extend health benefits.");
INSERT INTO `wp_gf_entry_meta` VALUES("4739", "14", "515", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4740", "14", "515", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_gf_entry_meta` VALUES("4741", "14", "515", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4742", "14", "515", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4743", "14", "516", "1.3", "Brad");
INSERT INTO `wp_gf_entry_meta` VALUES("4744", "14", "516", "1.6", "Lewis");
INSERT INTO `wp_gf_entry_meta` VALUES("4745", "14", "516", "2", "42");
INSERT INTO `wp_gf_entry_meta` VALUES("4746", "14", "516", "3", "(250) 686-1793");
INSERT INTO `wp_gf_entry_meta` VALUES("4747", "14", "516", "4", "Brad.fl@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4748", "14", "516", "11", "Wife has used your services");
INSERT INTO `wp_gf_entry_meta` VALUES("4749", "14", "516", "5", "Life stress and coping skills, communication skills.\r\nI don\'t have any preference between a man or a woman.\r\nI unfortunately don\'t have extended health benefits that would cover this cost");
INSERT INTO `wp_gf_entry_meta` VALUES("4750", "14", "516", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4751", "14", "516", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4752", "14", "516", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4753", "3", "517", "1.3", "Brody");
INSERT INTO `wp_gf_entry_meta` VALUES("4754", "3", "517", "1.6", "Hennebery");
INSERT INTO `wp_gf_entry_meta` VALUES("4755", "3", "517", "2", "lunakits@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4756", "3", "517", "3.1", "10-2111 Spring Road");
INSERT INTO `wp_gf_entry_meta` VALUES("4757", "3", "517", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4758", "3", "517", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4759", "3", "517", "3.5", "V8T3G1");
INSERT INTO `wp_gf_entry_meta` VALUES("4760", "3", "517", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4761", "3", "517", "4", "(778) 977-5253");
INSERT INTO `wp_gf_entry_meta` VALUES("4762", "3", "517", "7", "07/03/17");
INSERT INTO `wp_gf_entry_meta` VALUES("4763", "3", "517", "5", "Making it Work for Teens");
INSERT INTO `wp_gf_entry_meta` VALUES("4765", "14", "518", "1.3", "Mikke");
INSERT INTO `wp_gf_entry_meta` VALUES("4766", "14", "518", "1.6", "Duquette");
INSERT INTO `wp_gf_entry_meta` VALUES("4767", "14", "518", "2", "July 27th 1988");
INSERT INTO `wp_gf_entry_meta` VALUES("4768", "14", "518", "3", "(306) 216-5501");
INSERT INTO `wp_gf_entry_meta` VALUES("4769", "14", "518", "4", "Mikkeduquette@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4770", "14", "518", "11", "Google search");
INSERT INTO `wp_gf_entry_meta` VALUES("4771", "14", "518", "5", "Hello, \r\n\r\nMy name is Mikke. I moved here recently to start a new life. I have struggled with mental health issues since I was quite young. I was diagnosed with ADHD, most times people with acclimate to this by adulthood, I still struggle with it today. This illness is like a grab bag of mental illness that seem to change in severity at random. Some days I am riddled with ainxiety that it consumes every thought, other days I feel like I\'m drowning in my own depression. Not all days are bad, I\'ve spent a lot of energy trying to self manage myself as I know there are others worse then me. \r\n\r\nI want to start a new life, a better one with genuine happiness. My fear is that I am stuck in these perpetual cycles of which I cannot control. I find myself involuntarily making the same mistakes each time. I can no longer continue trying to self manage these issues, I do not want to continue feeling this way, I do not want to feel like a backseat driver in my own mind. \r\n\r\nI am committed to change, committed to improving my life and mental health. I\'ve come to the conclusion that I need help outside myself. I am low Income, that\'s why therapy has been a difficult challenge for me, even if I know it\'s what I need. I am hoping I can find some help with your services. \r\n\r\nI work Monday to Friday days. \r\n\r\nThank you very much for your time");
INSERT INTO `wp_gf_entry_meta` VALUES("4772", "14", "518", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4773", "14", "518", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4774", "14", "518", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4775", "14", "518", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4776", "14", "519", "1.3", "Rachel");
INSERT INTO `wp_gf_entry_meta` VALUES("4777", "14", "519", "1.6", "Saunders");
INSERT INTO `wp_gf_entry_meta` VALUES("4778", "14", "519", "2", "January 27, 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("4779", "14", "519", "3", "(250) 858-1901");
INSERT INTO `wp_gf_entry_meta` VALUES("4780", "14", "519", "4", "rachel.saunders1234@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4781", "14", "519", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("4782", "14", "519", "5", "I need help changing negative thought patterns and behaviours in my life. I need to make serious improvement in my stress and anxiety mangement as it is currently affecting my day to day life and relationships. I am very inerested in CBT, and have tried countless ways to better myself but feel I desperately need the help of a professional.");
INSERT INTO `wp_gf_entry_meta` VALUES("4783", "14", "519", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4784", "14", "519", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4785", "14", "519", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4786", "14", "519", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4787", "14", "519", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("4788", "14", "520", "1.3", "Loveica");
INSERT INTO `wp_gf_entry_meta` VALUES("4789", "14", "520", "1.6", "Mackenzie");
INSERT INTO `wp_gf_entry_meta` VALUES("4790", "14", "520", "2", "July 15 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("4791", "14", "520", "3", "(250) 740-5869");
INSERT INTO `wp_gf_entry_meta` VALUES("4792", "14", "520", "4", "Loveica.mackenzie@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4793", "14", "520", "11", "A friend");
INSERT INTO `wp_gf_entry_meta` VALUES("4794", "14", "520", "5", "A lot.. I\'m hoping to make this a regular thing if at all possible. \r\n\r\nI need to work through some of the following:\r\n-self esteem\r\n-childhood abuse\r\n-sexual abuse\r\n-feeling peace in life \r\n-depression/anxiety\r\n\r\n*I am only available Monday during the day, and Tuesday anytime. My work schedule is a bit demanding. \r\n*I also have some health coverage, up to 300, after that I\'d be paying out of pocket.");
INSERT INTO `wp_gf_entry_meta` VALUES("4795", "14", "520", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4796", "14", "520", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4797", "14", "520", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4798", "10", "521", "20.3", "Mahleeah");
INSERT INTO `wp_gf_entry_meta` VALUES("4799", "10", "521", "20.6", "Peters");
INSERT INTO `wp_gf_entry_meta` VALUES("4800", "10", "521", "9.2", "Female");
INSERT INTO `wp_gf_entry_meta` VALUES("4801", "10", "521", "10", "July 8 2002");
INSERT INTO `wp_gf_entry_meta` VALUES("4802", "10", "521", "4", "Speters2614@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4803", "10", "521", "7", "(250) 508-3887");
INSERT INTO `wp_gf_entry_meta` VALUES("4804", "10", "521", "2", "Sue Peters");
INSERT INTO `wp_gf_entry_meta` VALUES("4805", "10", "521", "3.1", "2614 Dowler Pl");
INSERT INTO `wp_gf_entry_meta` VALUES("4806", "10", "521", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4807", "10", "521", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("4808", "10", "521", "3.5", "V8T 4H8");
INSERT INTO `wp_gf_entry_meta` VALUES("4809", "10", "521", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("4810", "10", "521", "5", "Speters2614@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4811", "10", "521", "6", "(250) 508-3887");
INSERT INTO `wp_gf_entry_meta` VALUES("4812", "10", "521", "8", "Email");
INSERT INTO `wp_gf_entry_meta` VALUES("4813", "10", "521", "19", "Hulitan");
INSERT INTO `wp_gf_entry_meta` VALUES("4814", "10", "521", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4815", "10", "521", "18.2", "Debit Card (in person only)");
INSERT INTO `wp_gf_entry_meta` VALUES("4816", "10", "521", "12.1", "academic pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4817", "10", "521", "12.2", "family stress");
INSERT INTO `wp_gf_entry_meta` VALUES("4818", "10", "521", "12.4", "peer pressure");
INSERT INTO `wp_gf_entry_meta` VALUES("4819", "10", "521", "12.5", "self-esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("4820", "10", "521", "12.6", "general anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4821", "10", "521", "17", "Fluoxetine 5mg");
INSERT INTO `wp_gf_entry_meta` VALUES("4822", "14", "522", "1.3", "Rosalinde (Roz)");
INSERT INTO `wp_gf_entry_meta` VALUES("4823", "14", "522", "1.6", "Harper");
INSERT INTO `wp_gf_entry_meta` VALUES("4824", "14", "522", "2", "May 8, 1963");
INSERT INTO `wp_gf_entry_meta` VALUES("4825", "14", "522", "3", "(250) 570-2204");
INSERT INTO `wp_gf_entry_meta` VALUES("4826", "14", "522", "4", "rahrah942@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4827", "14", "522", "11", "a friend from work");
INSERT INTO `wp_gf_entry_meta` VALUES("4828", "14", "522", "5", "grief - I lost both my parents within3 months of each other, I am an only child.  Anxiety - I find myself anxious and unable to deal with stress.");
INSERT INTO `wp_gf_entry_meta` VALUES("4829", "14", "522", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4830", "14", "522", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4831", "14", "522", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("4832", "14", "522", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4833", "14", "522", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4834", "14", "523", "1.3", "Joshua");
INSERT INTO `wp_gf_entry_meta` VALUES("4835", "14", "523", "1.6", "Perez Horsland");
INSERT INTO `wp_gf_entry_meta` VALUES("4836", "14", "523", "2", "2, May, 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("4837", "14", "523", "3", "(250) 590-7301");
INSERT INTO `wp_gf_entry_meta` VALUES("4838", "14", "523", "4", "blue_joshua@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4839", "14", "523", "11", "Island Health");
INSERT INTO `wp_gf_entry_meta` VALUES("4840", "14", "523", "5", "Severe Anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("4841", "14", "523", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4842", "14", "523", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4843", "14", "523", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4844", "14", "524", "1.3", "Julio");
INSERT INTO `wp_gf_entry_meta` VALUES("4845", "14", "524", "1.6", "Gonzalez-Bernal");
INSERT INTO `wp_gf_entry_meta` VALUES("4846", "14", "524", "2", "December 13, 2003");
INSERT INTO `wp_gf_entry_meta` VALUES("4847", "14", "524", "3", "(250) 483-5605");
INSERT INTO `wp_gf_entry_meta` VALUES("4848", "14", "524", "4", "bernaljulissa@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4849", "14", "524", "11", "Amy Mckendrick");
INSERT INTO `wp_gf_entry_meta` VALUES("4850", "14", "524", "5", "Julio join the Amy youth support group. However, he asked for an individual session. He has been presenting depression and anxiety.");
INSERT INTO `wp_gf_entry_meta` VALUES("4851", "14", "524", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4852", "14", "524", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4853", "14", "524", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("4854", "14", "525", "1.3", "Robert");
INSERT INTO `wp_gf_entry_meta` VALUES("4855", "14", "525", "1.6", "Hill");
INSERT INTO `wp_gf_entry_meta` VALUES("4856", "14", "525", "2", "May 13, 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("4857", "14", "525", "3", "(250) 382-4472");
INSERT INTO `wp_gf_entry_meta` VALUES("4858", "14", "525", "4", "robertnhill@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4859", "14", "525", "11", "online");
INSERT INTO `wp_gf_entry_meta` VALUES("4860", "14", "525", "5", "anger, anxiety, stress, sexuality issues, family issues, spousal issues.");
INSERT INTO `wp_gf_entry_meta` VALUES("4861", "14", "525", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4862", "14", "525", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4863", "14", "525", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4864", "14", "525", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4865", "14", "526", "1.3", "Julia");
INSERT INTO `wp_gf_entry_meta` VALUES("4866", "14", "526", "1.6", "Asmundson");
INSERT INTO `wp_gf_entry_meta` VALUES("4867", "14", "526", "2", "20 OCT 1974");
INSERT INTO `wp_gf_entry_meta` VALUES("4868", "14", "526", "3", "(250) 208-8064");
INSERT INTO `wp_gf_entry_meta` VALUES("4869", "14", "526", "4", "healthcaring@icloud.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4870", "14", "526", "11", "Sean Lewis at The Mustard Seed Street Church");
INSERT INTO `wp_gf_entry_meta` VALUES("4871", "14", "526", "5", "I am on long term disability. I manage a bipolar type 1 disorder well with medication and am stable mood wise. I am having significant anxiety. I struggling not to isolate and eject out of my ministry and my relationship. I am engaged and long to heal from past as to not have fear about moving forward. Most difficulty is trusting my own judgement after having regained insight after psychosis. I also desire to renter the work force and my medical recommendation is to see a CBT therapist specializing in anxiety. I can tell you more about my experience iwith such a therapist.");
INSERT INTO `wp_gf_entry_meta` VALUES("4872", "14", "526", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4873", "14", "526", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4874", "14", "526", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4875", "14", "527", "1.3", "Katie");
INSERT INTO `wp_gf_entry_meta` VALUES("4876", "14", "527", "1.6", "Forbes");
INSERT INTO `wp_gf_entry_meta` VALUES("4877", "14", "527", "2", "Jan. 2 1994");
INSERT INTO `wp_gf_entry_meta` VALUES("4878", "14", "527", "3", "(587) 226-2608");
INSERT INTO `wp_gf_entry_meta` VALUES("4879", "14", "527", "4", "katie_forbes@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4880", "14", "527", "11", "Employer");
INSERT INTO `wp_gf_entry_meta` VALUES("4881", "14", "527", "5", "I am an individual who suffer from depression, anxiety, stress and in a life transition. I recently been self harming in the form of cutting but I don\'t feel that I am suicidal. I would prefer to be counselled by another woman.");
INSERT INTO `wp_gf_entry_meta` VALUES("4882", "14", "527", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4883", "14", "527", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4884", "14", "527", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4885", "14", "527", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4886", "14", "527", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("4887", "14", "528", "1.3", "Natasha");
INSERT INTO `wp_gf_entry_meta` VALUES("4888", "14", "528", "1.6", "Breitkreuz");
INSERT INTO `wp_gf_entry_meta` VALUES("4889", "14", "528", "2", "June 9/1981");
INSERT INTO `wp_gf_entry_meta` VALUES("4890", "14", "528", "3", "(778) 533-1880");
INSERT INTO `wp_gf_entry_meta` VALUES("4891", "14", "528", "4", "Tazzdark@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4892", "14", "528", "11", "Mustard seed");
INSERT INTO `wp_gf_entry_meta` VALUES("4893", "14", "528", "5", "I\'m not gonna make my appointment today. I\'m sorry but I\'ve driven myself into a bit of a spiral so I wish to wait until all the disturbing and shocking news ends before I try to heal. Thank you Bill for giving me a shot but I just can\'t do it today. I have no phone until the 27.");
INSERT INTO `wp_gf_entry_meta` VALUES("4894", "14", "528", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4895", "14", "528", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4896", "14", "528", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4897", "14", "529", "1.3", "Jaime");
INSERT INTO `wp_gf_entry_meta` VALUES("4898", "14", "529", "1.6", "Ready");
INSERT INTO `wp_gf_entry_meta` VALUES("4899", "14", "529", "2", "It is for my son Jeffery - 02/09/1999");
INSERT INTO `wp_gf_entry_meta` VALUES("4900", "14", "529", "3", "(778) 977-3135");
INSERT INTO `wp_gf_entry_meta` VALUES("4901", "14", "529", "4", "Jaiready@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4902", "14", "529", "11", "My daughter is currently taking a mindfulness camp with tou");
INSERT INTO `wp_gf_entry_meta` VALUES("4903", "14", "529", "5", "My son suffers from depression. We are looking for someone to meet with him and help him develop skills / strategies to help him on his h\r\nDaily life.");
INSERT INTO `wp_gf_entry_meta` VALUES("4904", "14", "529", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4905", "14", "529", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4906", "14", "529", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4907", "14", "529", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("4908", "14", "530", "1.3", "Patricia");
INSERT INTO `wp_gf_entry_meta` VALUES("4909", "14", "530", "1.6", "Garner");
INSERT INTO `wp_gf_entry_meta` VALUES("4910", "14", "530", "2", "April 26 1994");
INSERT INTO `wp_gf_entry_meta` VALUES("4911", "14", "530", "3", "(250) 886-2024");
INSERT INTO `wp_gf_entry_meta` VALUES("4912", "14", "530", "4", "patricia.garner88@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4913", "14", "530", "11", "Mother");
INSERT INTO `wp_gf_entry_meta` VALUES("4914", "14", "530", "5", "social anxiety, self esteem, depression, emotional instability");
INSERT INTO `wp_gf_entry_meta` VALUES("4915", "14", "530", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4916", "14", "530", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4917", "14", "530", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4918", "14", "530", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4919", "14", "530", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4920", "14", "531", "1.3", "James");
INSERT INTO `wp_gf_entry_meta` VALUES("4921", "14", "531", "1.6", "McEwen");
INSERT INTO `wp_gf_entry_meta` VALUES("4922", "14", "531", "2", "September 20th, 1984");
INSERT INTO `wp_gf_entry_meta` VALUES("4923", "14", "531", "3", "(778) 676-6836");
INSERT INTO `wp_gf_entry_meta` VALUES("4924", "14", "531", "4", "jamesalexander@hotmail.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4925", "14", "531", "11", "A friend");
INSERT INTO `wp_gf_entry_meta` VALUES("4926", "14", "531", "5", "Anxiety, existential crisis, sadness, depression, etc.");
INSERT INTO `wp_gf_entry_meta` VALUES("4927", "14", "531", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4928", "14", "531", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4929", "14", "531", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4930", "14", "531", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4931", "14", "531", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4932", "14", "532", "1.3", "Cody (Preferred: Grayson)");
INSERT INTO `wp_gf_entry_meta` VALUES("4933", "14", "532", "1.6", "Draves");
INSERT INTO `wp_gf_entry_meta` VALUES("4934", "14", "532", "2", "March 21, 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("4935", "14", "532", "3", "(250) 739-1069");
INSERT INTO `wp_gf_entry_meta` VALUES("4936", "14", "532", "4", "truesthufflepuff@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4937", "14", "532", "11", "Friend");
INSERT INTO `wp_gf_entry_meta` VALUES("4938", "14", "532", "5", "Anxiety, Depression");
INSERT INTO `wp_gf_entry_meta` VALUES("4939", "14", "532", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4940", "14", "532", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4941", "14", "532", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4942", "14", "532", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("4943", "14", "532", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4944", "14", "532", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4945", "14", "533", "1.3", "Biancha");
INSERT INTO `wp_gf_entry_meta` VALUES("4946", "14", "533", "1.6", "King");
INSERT INTO `wp_gf_entry_meta` VALUES("4947", "14", "533", "2", "November 8th 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("4948", "14", "533", "3", "(250) 217-2471");
INSERT INTO `wp_gf_entry_meta` VALUES("4949", "14", "533", "4", "bianchaking@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4950", "14", "533", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("4951", "14", "533", "5", "I am currently dealing with a lot of anxiety related to my body image, I have been struggling to lose weight over the course of the year, despite going to the gym, hot yoga, 10k runs all during the week. I am hoping to get some help with the anxiety that I have been feeling, and hope to try and reduce the panic attacks I feel.");
INSERT INTO `wp_gf_entry_meta` VALUES("4952", "14", "533", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4953", "14", "533", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4954", "14", "533", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("4955", "14", "534", "1.3", "Allisha");
INSERT INTO `wp_gf_entry_meta` VALUES("4956", "14", "534", "1.6", "Smith");
INSERT INTO `wp_gf_entry_meta` VALUES("4957", "14", "534", "2", "August 8 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("4958", "14", "534", "3", "(236) 882-2927");
INSERT INTO `wp_gf_entry_meta` VALUES("4959", "14", "534", "4", "allishasmith@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4960", "14", "534", "11", "Aaron Brook");
INSERT INTO `wp_gf_entry_meta` VALUES("4961", "14", "534", "5", "Exposed to many childhood traumas, emotionally and physically absuive alcoholic parents, lost my mother a few years ago dealing with extreme anxiety and depression since.");
INSERT INTO `wp_gf_entry_meta` VALUES("4962", "14", "534", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4963", "14", "534", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4964", "14", "534", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("4965", "14", "535", "1.3", "Lynsey");
INSERT INTO `wp_gf_entry_meta` VALUES("4966", "14", "535", "1.6", "Cawdle");
INSERT INTO `wp_gf_entry_meta` VALUES("4967", "14", "535", "2", "October 13 1986");
INSERT INTO `wp_gf_entry_meta` VALUES("4968", "14", "535", "3", "(403) 813-0402");
INSERT INTO `wp_gf_entry_meta` VALUES("4969", "14", "535", "4", "lynsey.cawdle@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4970", "14", "535", "11", "internet");
INSERT INTO `wp_gf_entry_meta` VALUES("4971", "14", "535", "5", "possible anxiety/depression. Fear of relationships, moving forward from past relationship. Becoming a better human.");
INSERT INTO `wp_gf_entry_meta` VALUES("4972", "14", "535", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4973", "14", "535", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4974", "14", "535", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("4975", "14", "535", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("4976", "14", "536", "1.3", "Elvira");
INSERT INTO `wp_gf_entry_meta` VALUES("4977", "14", "536", "1.6", "Sentes");
INSERT INTO `wp_gf_entry_meta` VALUES("4978", "14", "536", "2", "March 31, 1939");
INSERT INTO `wp_gf_entry_meta` VALUES("4979", "14", "536", "3", "(778) 265-0025");
INSERT INTO `wp_gf_entry_meta` VALUES("4980", "14", "536", "4", "elvirasentes@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("4981", "14", "536", "11", "Joanne Henning recommended Barbara Baillie");
INSERT INTO `wp_gf_entry_meta` VALUES("4982", "14", "536", "5", "Depression, searching for my truth");
INSERT INTO `wp_gf_entry_meta` VALUES("4983", "14", "536", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4984", "14", "536", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4985", "14", "536", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("4986", "14", "537", "1.3", "Carly");
INSERT INTO `wp_gf_entry_meta` VALUES("4987", "14", "537", "1.6", "Eldstrom");
INSERT INTO `wp_gf_entry_meta` VALUES("4988", "14", "537", "2", "July 8, 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("4989", "14", "537", "3", "(604) 250-3248");
INSERT INTO `wp_gf_entry_meta` VALUES("4990", "14", "537", "4", "carlye@hotmail.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("4991", "14", "537", "11", "I work for Family Services of Greater Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("4992", "14", "537", "5", "Chronic depression (diagnosed) that ebbs and flows, but my bigger concern right now is my anxiety (undiagnosed). I have been having flare-ups and \"attacks\" that paralyze me. For background: I recovered from anorexia as a teenager and benefited from inpatient treatment and a combination of DBT/CBT methods. Afterward came an addiction to cocaine, but I have been clean for 6 years. I believe that it all stems from the trauma of losing my mom to breast cancer when I was nine years old. I am a high-achieving, hard-working, and educated individual, but I am haunted every night by voices in my head that leave me in tears.");
INSERT INTO `wp_gf_entry_meta` VALUES("4993", "14", "537", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("4994", "14", "537", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("4995", "14", "537", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("4996", "14", "537", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("4997", "14", "538", "1.3", "Brittany");
INSERT INTO `wp_gf_entry_meta` VALUES("4998", "14", "538", "1.6", "Witherspoon");
INSERT INTO `wp_gf_entry_meta` VALUES("4999", "14", "538", "2", "February 27 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("5000", "14", "538", "3", "(250) 889-5348");
INSERT INTO `wp_gf_entry_meta` VALUES("5001", "14", "538", "4", "bwither1@lakeheadu.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5002", "14", "538", "11", "My sister told me to contact you");
INSERT INTO `wp_gf_entry_meta` VALUES("5003", "14", "538", "5", "Major anxiety issues that I am having issues dealing with I am not able to calm down and focus, having issues eating and sleeping.");
INSERT INTO `wp_gf_entry_meta` VALUES("5004", "14", "538", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5005", "14", "538", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5006", "14", "538", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5007", "14", "538", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5008", "14", "539", "1.3", "Michael");
INSERT INTO `wp_gf_entry_meta` VALUES("5009", "14", "539", "1.6", "Gignac");
INSERT INTO `wp_gf_entry_meta` VALUES("5010", "14", "539", "2", "Oct 17, 1984");
INSERT INTO `wp_gf_entry_meta` VALUES("5011", "14", "539", "3", "(250) 886-5113");
INSERT INTO `wp_gf_entry_meta` VALUES("5012", "14", "539", "4", "mgignac@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5013", "14", "539", "11", "Citizens Counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("5014", "14", "539", "5", "Acute Situational Depression. Severe enough to be held in emergency at the Royal Jubilee. Having extremely difficult time dealing with a breakup from someone I work with (sits right next to me). The breakup has caused me to have a lot of difficulties with how to move on, internal anger, hopelessness, loss of self esteem, inability to understand, and more. The relationship was very complicated and I\'m trying to prevent it from doing long term mental/emotional damage. Had suicidal thoughts at points.");
INSERT INTO `wp_gf_entry_meta` VALUES("5015", "14", "539", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5016", "14", "539", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5017", "14", "539", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5018", "14", "539", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("5019", "14", "540", "1.3", "Sheena");
INSERT INTO `wp_gf_entry_meta` VALUES("5020", "14", "540", "1.6", "Andersson");
INSERT INTO `wp_gf_entry_meta` VALUES("5021", "14", "540", "2", "August 10, 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("5022", "14", "540", "3", "(604) 649-0905");
INSERT INTO `wp_gf_entry_meta` VALUES("5023", "14", "540", "4", "svla22@icloud.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5024", "14", "540", "11", "Recommended via Citizens Counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("5025", "14", "540", "5", "Grief Counselling. My mom passed away unexpectedly about 4 months ago. My Dad, brothers, and I have been to some family counselling. I feel that I need some separate sessions on an affordable scale .");
INSERT INTO `wp_gf_entry_meta` VALUES("5026", "14", "540", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5027", "14", "540", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5028", "14", "540", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5029", "14", "540", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("5030", "14", "540", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("5031", "14", "541", "1.3", "Carole");
INSERT INTO `wp_gf_entry_meta` VALUES("5032", "14", "541", "1.6", "Harrison");
INSERT INTO `wp_gf_entry_meta` VALUES("5033", "14", "541", "2", "April 15 1953");
INSERT INTO `wp_gf_entry_meta` VALUES("5034", "14", "541", "3", "(250) 984-1362");
INSERT INTO `wp_gf_entry_meta` VALUES("5035", "14", "541", "4", "Caroleharrison111@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5036", "14", "541", "11", "My son found it online");
INSERT INTO `wp_gf_entry_meta` VALUES("5037", "14", "541", "5", "Depression, sleep problems, feelings of hopelessness, emotionally dealing with physical symptoms.");
INSERT INTO `wp_gf_entry_meta` VALUES("5038", "14", "541", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5039", "14", "541", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5040", "14", "541", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5041", "14", "541", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5042", "14", "542", "1.3", "Mark");
INSERT INTO `wp_gf_entry_meta` VALUES("5043", "14", "542", "1.6", "Leigh");
INSERT INTO `wp_gf_entry_meta` VALUES("5044", "14", "542", "2", "1984-04-14");
INSERT INTO `wp_gf_entry_meta` VALUES("5045", "14", "542", "3", "(250) 888-7918");
INSERT INTO `wp_gf_entry_meta` VALUES("5046", "14", "542", "4", "mark.leigh@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5047", "14", "542", "11", "Search");
INSERT INTO `wp_gf_entry_meta` VALUES("5048", "14", "542", "5", "Lack of motivation, lack of empathy, depression.");
INSERT INTO `wp_gf_entry_meta` VALUES("5049", "14", "542", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5050", "14", "542", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5051", "14", "542", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5052", "14", "542", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("5053", "14", "543", "1.3", "Jasper");
INSERT INTO `wp_gf_entry_meta` VALUES("5054", "14", "543", "1.6", "LaBounty");
INSERT INTO `wp_gf_entry_meta` VALUES("5055", "14", "543", "2", "September 14 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("5056", "14", "543", "3", "(250) 816-9639");
INSERT INTO `wp_gf_entry_meta` VALUES("5057", "14", "543", "4", "Jasperlabounty@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5058", "14", "543", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("5059", "14", "543", "5", "Codependency\r\nSocial anxiety\r\nAbandonment and trust issues");
INSERT INTO `wp_gf_entry_meta` VALUES("5060", "14", "543", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5061", "14", "543", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5062", "14", "543", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5063", "14", "543", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5064", "14", "544", "1.3", "Mohammed");
INSERT INTO `wp_gf_entry_meta` VALUES("5065", "14", "544", "1.6", "Alkathiri");
INSERT INTO `wp_gf_entry_meta` VALUES("5066", "14", "544", "2", "June 17 1977");
INSERT INTO `wp_gf_entry_meta` VALUES("5067", "14", "544", "3", "(778) 967-2993");
INSERT INTO `wp_gf_entry_meta` VALUES("5068", "14", "544", "4", "norahca@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5069", "14", "544", "11", "Citizens\' Counselling Centre");
INSERT INTO `wp_gf_entry_meta` VALUES("5070", "14", "544", "5", "Hi, I have a friend who is Canadian citizen 40 years old (his name is mohammed) who has lots of mental issues. Has been in Canada for 10 years and was once a refugee. Depression,\r\nanxiety, suicidal  ideation, other stuff I don\'t know how to describe.\r\nSuffered in last job with something that makes him disassociates\r\nfrom one\'s surrounding and got laid off and now on EI. I would like to help him see a psychologist please!! You can email me or phone me..");
INSERT INTO `wp_gf_entry_meta` VALUES("5071", "14", "544", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5072", "14", "544", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5073", "14", "544", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("5074", "14", "544", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5075", "14", "544", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5076", "14", "545", "1.3", "Amy");
INSERT INTO `wp_gf_entry_meta` VALUES("5077", "14", "545", "1.6", "Lee-Radigan");
INSERT INTO `wp_gf_entry_meta` VALUES("5078", "14", "545", "2", "August 21, 1988");
INSERT INTO `wp_gf_entry_meta` VALUES("5079", "14", "545", "3", "(250) 592-5001");
INSERT INTO `wp_gf_entry_meta` VALUES("5080", "14", "545", "4", "amy.leeradigan@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5081", "14", "545", "11", "Received counselling here previously when I was covered under the BC employee family assistant program");
INSERT INTO `wp_gf_entry_meta` VALUES("5082", "14", "545", "5", "i have struggled with bulimia and anorexia for most of my adult life though I received previous counselling for it and it has been very manageable for much of the past 5 years, however it has recently become a significant problem for me again and I think speaking to someone about it again would be a smart thing for me to do.");
INSERT INTO `wp_gf_entry_meta` VALUES("5083", "14", "545", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5084", "14", "545", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5085", "14", "545", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5086", "14", "545", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5087", "14", "546", "1.3", "Sharon");
INSERT INTO `wp_gf_entry_meta` VALUES("5088", "14", "546", "1.6", "Caldwell");
INSERT INTO `wp_gf_entry_meta` VALUES("5089", "14", "546", "2", "June 3, 1983");
INSERT INTO `wp_gf_entry_meta` VALUES("5090", "14", "546", "3", "(705) 931-7484");
INSERT INTO `wp_gf_entry_meta` VALUES("5091", "14", "546", "4", "caldwell.sharon@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5092", "14", "546", "11", "Google search :)");
INSERT INTO `wp_gf_entry_meta` VALUES("5093", "14", "546", "5", "Chronic pain (fibromyalgia), severe anxiety (GAD and social anxiety worsening again), depression. My ability to manage everything is very up and down, but it\'s been getting progressively more unmanageable. I have been seeing a trauma-focused therapist for the past few months, but am having difficulties affording it on a regular basis (I\'m on a very low income). I would be grateful for any additional support you could provide.");
INSERT INTO `wp_gf_entry_meta` VALUES("5094", "14", "546", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5095", "14", "546", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5096", "14", "546", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5097", "14", "546", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5098", "14", "546", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5099", "14", "547", "1.3", "Adrian");
INSERT INTO `wp_gf_entry_meta` VALUES("5100", "14", "547", "1.6", "Tomei");
INSERT INTO `wp_gf_entry_meta` VALUES("5101", "14", "547", "2", "Nov 20 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("5102", "14", "547", "3", "(250) 709-9239");
INSERT INTO `wp_gf_entry_meta` VALUES("5103", "14", "547", "4", "adrianvr6@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5104", "14", "547", "11", "Googled \"affordable counselling\" or something");
INSERT INTO `wp_gf_entry_meta` VALUES("5105", "14", "547", "5", "Stress, anxiety, time management, relationship issues");
INSERT INTO `wp_gf_entry_meta` VALUES("5106", "14", "547", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5107", "14", "547", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5108", "14", "547", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5109", "14", "547", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5110", "14", "548", "1.3", "Will");
INSERT INTO `wp_gf_entry_meta` VALUES("5111", "14", "548", "1.6", "Fillion");
INSERT INTO `wp_gf_entry_meta` VALUES("5112", "14", "548", "2", "October 29, 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("5113", "14", "548", "3", "(250) 385-7421");
INSERT INTO `wp_gf_entry_meta` VALUES("5114", "14", "548", "4", "williamfillion@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5115", "14", "548", "11", "Google search for local therapy options");
INSERT INTO `wp_gf_entry_meta` VALUES("5116", "14", "548", "5", "Anxiety, depression, grief from losing a parent, generally feeling lost in the world, inability to stand up for myself.");
INSERT INTO `wp_gf_entry_meta` VALUES("5117", "14", "548", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5118", "14", "548", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5119", "14", "548", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("5120", "14", "549", "1.3", "Becca");
INSERT INTO `wp_gf_entry_meta` VALUES("5121", "14", "549", "1.6", "Jorgensen");
INSERT INTO `wp_gf_entry_meta` VALUES("5122", "14", "549", "2", "January 15, 1994");
INSERT INTO `wp_gf_entry_meta` VALUES("5123", "14", "549", "3", "(250) 507-6763");
INSERT INTO `wp_gf_entry_meta` VALUES("5124", "14", "549", "4", "Mail@beccajorgensen.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5125", "14", "549", "11", "Researched online");
INSERT INTO `wp_gf_entry_meta` VALUES("5126", "14", "549", "5", "Seeking counselling for concerns regarding personal relationships, stress management, and self esteem and self worth. \r\nI recently left a short term romantic relationship with a self described abuser, as well as a relationship earlier this year with someone who was grieving the loss of a parent. \r\nI am seeking counselling to discuss and find solutions regarding my relationship with my mother, and stress management from my job as a young stage manager. \r\n\r\nPreferred appointment times: Monday evenings 5-8 (first choice), Tuesday - Friday 9-5");
INSERT INTO `wp_gf_entry_meta` VALUES("5127", "14", "549", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5128", "14", "549", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5129", "14", "549", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5130", "14", "549", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5131", "14", "550", "1.3", "Emily");
INSERT INTO `wp_gf_entry_meta` VALUES("5132", "14", "550", "1.6", "McIvor");
INSERT INTO `wp_gf_entry_meta` VALUES("5133", "14", "550", "2", "October 9, 1974");
INSERT INTO `wp_gf_entry_meta` VALUES("5134", "14", "550", "3", "(250) 213-9319");
INSERT INTO `wp_gf_entry_meta` VALUES("5135", "14", "550", "4", "mlmcvr9@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5136", "14", "550", "11", "Referral from former client, Miyoko Caubet. Requesting counsilor Peter Simmons.");
INSERT INTO `wp_gf_entry_meta` VALUES("5137", "14", "550", "5", "I\'ve been experiencing deep grief and distress triggered by my friend\'s current domestic abuse. She is leaving an abusive relationship and it\'s bringing up a lot of pain from my own past history. \r\nSymptoms include: deep sadness, distrust of men; distrust of relationships; numbness; anger; hopelessness; inability to focus;");
INSERT INTO `wp_gf_entry_meta` VALUES("5138", "14", "550", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5139", "14", "550", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5140", "14", "550", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5141", "14", "550", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5142", "14", "551", "1.3", "Susan");
INSERT INTO `wp_gf_entry_meta` VALUES("5143", "14", "551", "1.6", "Burke");
INSERT INTO `wp_gf_entry_meta` VALUES("5144", "14", "551", "2", "March 24 82");
INSERT INTO `wp_gf_entry_meta` VALUES("5145", "14", "551", "3", "(647) 988-0459");
INSERT INTO `wp_gf_entry_meta` VALUES("5146", "14", "551", "4", "q.burke@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5147", "14", "551", "11", "From a former client");
INSERT INTO `wp_gf_entry_meta` VALUES("5148", "14", "551", "5", "Depression that is severely impacting my life, work, and relationships. A partner with bi-polar whose verbal abuse and emotional manipulation is breaking me.");
INSERT INTO `wp_gf_entry_meta` VALUES("5149", "14", "551", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5150", "14", "551", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5151", "14", "551", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5152", "14", "551", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("5153", "14", "551", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5154", "14", "551", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5155", "14", "552", "1.3", "Samantha");
INSERT INTO `wp_gf_entry_meta` VALUES("5156", "14", "552", "1.6", "Seltenrich");
INSERT INTO `wp_gf_entry_meta` VALUES("5157", "14", "552", "2", "Oct 6, 1981");
INSERT INTO `wp_gf_entry_meta` VALUES("5158", "14", "552", "3", "(250) 857-1035");
INSERT INTO `wp_gf_entry_meta` VALUES("5159", "14", "552", "4", "sseltenrich@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5160", "14", "552", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("5161", "14", "552", "5", "Anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("5162", "14", "552", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5163", "14", "552", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5164", "14", "552", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5165", "14", "552", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5166", "14", "553", "1.3", "Tyler");
INSERT INTO `wp_gf_entry_meta` VALUES("5167", "14", "553", "1.6", "Beland");
INSERT INTO `wp_gf_entry_meta` VALUES("5168", "14", "553", "2", "3428 Happy Valley Road");
INSERT INTO `wp_gf_entry_meta` VALUES("5169", "14", "553", "3", "(250) 532-1570");
INSERT INTO `wp_gf_entry_meta` VALUES("5170", "14", "553", "4", "tylerbeland928@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5171", "14", "553", "11", "Online search");
INSERT INTO `wp_gf_entry_meta` VALUES("5172", "14", "553", "5", "I have anger issues and problems dealing with my reactions. I am on probation and have been asked to find 1 on 1 counseling to help in my progress in becoming less reactive.");
INSERT INTO `wp_gf_entry_meta` VALUES("5173", "14", "553", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5174", "14", "553", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5175", "14", "553", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5176", "14", "553", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("5177", "14", "554", "1.3", "Bryan");
INSERT INTO `wp_gf_entry_meta` VALUES("5178", "14", "554", "1.6", "Truong");
INSERT INTO `wp_gf_entry_meta` VALUES("5179", "14", "554", "2", "Feb 17 1987");
INSERT INTO `wp_gf_entry_meta` VALUES("5180", "14", "554", "3", "(250) 507-7509");
INSERT INTO `wp_gf_entry_meta` VALUES("5181", "14", "554", "4", "bryanbtruong@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5182", "14", "554", "11", "Friend");
INSERT INTO `wp_gf_entry_meta` VALUES("5183", "14", "554", "5", "concerns about my life, depression and bad habbits");
INSERT INTO `wp_gf_entry_meta` VALUES("5184", "14", "554", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5185", "14", "554", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5186", "14", "554", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5187", "14", "554", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("5188", "14", "554", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("5189", "14", "554", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("5190", "8", "555", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5191", "8", "555", "14.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("5192", "8", "555", "15.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("5193", "8", "555", "6", "Open Gate Church (ANiC)\r\nLangford");
INSERT INTO `wp_gf_entry_meta` VALUES("5194", "8", "555", "1.3", "Joy");
INSERT INTO `wp_gf_entry_meta` VALUES("5195", "8", "555", "1.6", "Gillett");
INSERT INTO `wp_gf_entry_meta` VALUES("5196", "8", "555", "2", "j.gillett@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5197", "8", "555", "3.1", "1103-325 Maitland St");
INSERT INTO `wp_gf_entry_meta` VALUES("5198", "8", "555", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5199", "8", "555", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5200", "8", "555", "3.5", "V9A7E9");
INSERT INTO `wp_gf_entry_meta` VALUES("5201", "8", "555", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5202", "8", "555", "4", "(778) 350-5801");
INSERT INTO `wp_gf_entry_meta` VALUES("5203", "8", "555", "9.2", "Advanced (attended a basic PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5204", "8", "555", "11.1", "Non-bursary option: cheque ($105 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5205", "14", "556", "1.3", "Neala");
INSERT INTO `wp_gf_entry_meta` VALUES("5206", "14", "556", "1.6", "Griffin");
INSERT INTO `wp_gf_entry_meta` VALUES("5207", "14", "556", "2", "June 22,79");
INSERT INTO `wp_gf_entry_meta` VALUES("5208", "14", "556", "3", "(709) 639-0716");
INSERT INTO `wp_gf_entry_meta` VALUES("5209", "14", "556", "4", "info@yogainmotion.guru");
INSERT INTO `wp_gf_entry_meta` VALUES("5210", "14", "556", "11", "Word of mouth");
INSERT INTO `wp_gf_entry_meta` VALUES("5211", "14", "556", "5", "Have recently lost a friend to suicide, and have lost many family members over the past few years. I have just moved here from NL and am trying to get my own business running...don\'t have a strong support system in place. Have struggled with anxiety and depression for years and need affordable counselling.");
INSERT INTO `wp_gf_entry_meta` VALUES("5212", "14", "556", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5213", "14", "556", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5214", "14", "556", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5215", "14", "556", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5216", "14", "556", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5217", "14", "557", "1.3", "Andrew");
INSERT INTO `wp_gf_entry_meta` VALUES("5218", "14", "557", "1.6", "Rose");
INSERT INTO `wp_gf_entry_meta` VALUES("5219", "14", "557", "2", "October 14 1981");
INSERT INTO `wp_gf_entry_meta` VALUES("5220", "14", "557", "3", "(250) 686-4759");
INSERT INTO `wp_gf_entry_meta` VALUES("5221", "14", "557", "4", "ndru_ross@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5222", "14", "557", "11", "Citizens Counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("5223", "14", "557", "5", "I\'m having concerns about my relationship, pursuing marriage and such. I\'m struggling with decision making in all aspects of my life. I\'m often angry or disgruntled and it effects others around me.");
INSERT INTO `wp_gf_entry_meta` VALUES("5224", "14", "557", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5225", "14", "557", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5226", "14", "557", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("5227", "14", "557", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5228", "14", "557", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("5229", "14", "558", "1.3", "Andy");
INSERT INTO `wp_gf_entry_meta` VALUES("5230", "14", "558", "1.6", "Platt");
INSERT INTO `wp_gf_entry_meta` VALUES("5231", "14", "558", "2", "July 26 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("5232", "14", "558", "3", "(250) 818-0222");
INSERT INTO `wp_gf_entry_meta` VALUES("5233", "14", "558", "4", "Andyplatt6505@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5234", "14", "558", "11", "Google search for sliding scale counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("5235", "14", "558", "5", "History of depression and anxiety, ptsd from psychiatric hospitalization, difficulty related to the previous in maintaining emotionally intimate relationships. Recently have felt more intense unpleasant feelings and depressed thoughts than usual.\r\n\r\nI have seen a handful of different counsellors since 2010, and most recently couldn\'t make the schedule work with a counselor i had seen for 3 years.\r\n\r\nI would prefer to talk to a male counselor, as i have primarily seen female counselors and i think that it would help to talk about certain issues with a male.");
INSERT INTO `wp_gf_entry_meta` VALUES("5236", "14", "558", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5237", "14", "558", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5238", "14", "558", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("5239", "14", "559", "1.3", "Eryn");
INSERT INTO `wp_gf_entry_meta` VALUES("5240", "14", "559", "1.6", "Wale");
INSERT INTO `wp_gf_entry_meta` VALUES("5241", "14", "559", "2", "June 7 2005");
INSERT INTO `wp_gf_entry_meta` VALUES("5242", "14", "559", "3", "(250) 208-5111");
INSERT INTO `wp_gf_entry_meta` VALUES("5243", "14", "559", "4", "manwale@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5244", "14", "559", "11", "website");
INSERT INTO `wp_gf_entry_meta` VALUES("5245", "14", "559", "5", "My name is Margaret Manville and I have a daughter Eryn who is 12 years old.  She is usually a great, happy kid but struggles with issues of self esteem and acceptance at school due to her weight.  I don\'t believe she is being bullied but she is very self conscious.  We have been dealing with this for many years, and would appreciate some advice/help with this issue of how to support her to love/accept herself as she is.");
INSERT INTO `wp_gf_entry_meta` VALUES("5246", "14", "559", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5247", "14", "559", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5248", "14", "559", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5249", "14", "559", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("5250", "14", "560", "1.3", "Nora");
INSERT INTO `wp_gf_entry_meta` VALUES("5251", "14", "560", "1.6", "Marsh");
INSERT INTO `wp_gf_entry_meta` VALUES("5252", "14", "560", "2", "10/9/1990");
INSERT INTO `wp_gf_entry_meta` VALUES("5253", "14", "560", "3", "(778) 967-2993");
INSERT INTO `wp_gf_entry_meta` VALUES("5254", "14", "560", "4", "lighttheworld3@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5255", "14", "560", "11", "Friend.");
INSERT INTO `wp_gf_entry_meta` VALUES("5256", "14", "560", "5", "Hi there,\r\n\r\nI am going through a hard time dealing with my anxieties. I have insecurities that started from a young age.\r\nIn my everyday life i tend to have:\r\n- Social anxiety. \r\n- Constant fear of the future/ being alone / cheating / failing / judgment / not being good enough /\r\n    not knowing what I want from life and school / not feeling emotionally secure or safe....etc.\r\n\r\n \r\nBut I would like to have some help dealing mostly with my:\r\n- Social anxiety.\r\n- Emotional attachment. \r\n\r\nThank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("5257", "14", "560", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5258", "14", "560", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5259", "14", "560", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5260", "14", "561", "1.3", "Ilona");
INSERT INTO `wp_gf_entry_meta` VALUES("5261", "14", "561", "1.6", "Gerrand");
INSERT INTO `wp_gf_entry_meta` VALUES("5262", "14", "561", "2", "March 4 1987");
INSERT INTO `wp_gf_entry_meta` VALUES("5263", "14", "561", "3", "(250) 661-4576");
INSERT INTO `wp_gf_entry_meta` VALUES("5264", "14", "561", "4", "ilona.jane@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5265", "14", "561", "11", "online");
INSERT INTO `wp_gf_entry_meta` VALUES("5266", "14", "561", "5", "Anxiety/mood disorder information, substance and food abuse as a result of a mood disorder, developmental sexual trauma and current grief from loss. Issues with trust in personal and professional relationships. Currently in an emotional state of apathy and depression, following an extended period of mania (at least 12 weeks). No theology, please.\r\nMondays 9am-9pm\r\nTuesday- Saturday 6pm- 9pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5267", "14", "561", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5268", "14", "561", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5269", "14", "561", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5270", "14", "562", "1.3", "Cheryl");
INSERT INTO `wp_gf_entry_meta` VALUES("5271", "14", "562", "1.6", "Grossman");
INSERT INTO `wp_gf_entry_meta` VALUES("5272", "14", "562", "2", "August 27, 1956");
INSERT INTO `wp_gf_entry_meta` VALUES("5273", "14", "562", "3", "(250) 686-9438");
INSERT INTO `wp_gf_entry_meta` VALUES("5274", "14", "562", "4", "itsabeautifulday@bell.net");
INSERT INTO `wp_gf_entry_meta` VALUES("5275", "14", "562", "11", "Citizen\'s Counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("5276", "14", "562", "5", "Moved to BC in April 2017, transitioning.  Seeking employment.  Family aging.  Difficulty maintaining daily routines/schedules.  Aging (just turned 61).  Mother passed in 2015, family dynamics are changing causing various stresses.");
INSERT INTO `wp_gf_entry_meta` VALUES("5277", "14", "562", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5278", "14", "562", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5279", "14", "562", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("5280", "14", "562", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5281", "14", "562", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5282", "14", "563", "1.3", "Christina");
INSERT INTO `wp_gf_entry_meta` VALUES("5283", "14", "563", "1.6", "Tromp");
INSERT INTO `wp_gf_entry_meta` VALUES("5284", "14", "563", "2", "July 10, 1994");
INSERT INTO `wp_gf_entry_meta` VALUES("5285", "14", "563", "3", "(778) 686-0990");
INSERT INTO `wp_gf_entry_meta` VALUES("5286", "14", "563", "4", "christinatromp94@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5287", "14", "563", "11", "Work reference.  The Mustard Seed Street Church.");
INSERT INTO `wp_gf_entry_meta` VALUES("5288", "14", "563", "5", "I suffered a traumatic incident.  I was at work, serving food to community members in need, and one became very angry with me and threw a bowl of hot soup at me.");
INSERT INTO `wp_gf_entry_meta` VALUES("5289", "14", "563", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5290", "14", "563", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5291", "14", "563", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5292", "14", "563", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5293", "14", "563", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("5294", "3", "564", "1.3", "Hildred");
INSERT INTO `wp_gf_entry_meta` VALUES("5295", "3", "564", "1.6", "Bingaman");
INSERT INTO `wp_gf_entry_meta` VALUES("5296", "3", "564", "2", "hildred_bingaman14@kipolongsleeve.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5297", "3", "564", "3.1", "742 Losh Lane");
INSERT INTO `wp_gf_entry_meta` VALUES("5298", "3", "564", "3.3", "Pittsburgh");
INSERT INTO `wp_gf_entry_meta` VALUES("5299", "3", "564", "3.4", "Saskatchewan");
INSERT INTO `wp_gf_entry_meta` VALUES("5300", "3", "564", "3.5", "15236");
INSERT INTO `wp_gf_entry_meta` VALUES("5301", "3", "564", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5302", "3", "564", "4", "(412) 650-6160");
INSERT INTO `wp_gf_entry_meta` VALUES("5303", "3", "564", "7", "KC");
INSERT INTO `wp_gf_entry_meta` VALUES("5304", "3", "564", "5", "5 winter Season style developments For males");
INSERT INTO `wp_gf_entry_meta` VALUES("5305", "3", "564", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("5306", "3", "564", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5307", "3", "564", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5308", "14", "565", "1.3", "Heather");
INSERT INTO `wp_gf_entry_meta` VALUES("5309", "14", "565", "1.6", "Bergink");
INSERT INTO `wp_gf_entry_meta` VALUES("5310", "14", "565", "2", "September 14, 1983");
INSERT INTO `wp_gf_entry_meta` VALUES("5311", "14", "565", "3", "(250) 812-5628");
INSERT INTO `wp_gf_entry_meta` VALUES("5312", "14", "565", "4", "heather.bergink@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5313", "14", "565", "11", "From several people I know");
INSERT INTO `wp_gf_entry_meta` VALUES("5314", "14", "565", "5", "Stress management, suspected depression, social withdrawal and food/eating issues.\r\n\r\nAnother consideration - one of my work colleagues, Jamie McCrum, is a volunteer counsellor with your organization.  She is very good about confidentiality, but I wonder if it is possible for me to access your services without her knowledge or participation?");
INSERT INTO `wp_gf_entry_meta` VALUES("5315", "14", "565", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5316", "14", "565", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5317", "14", "565", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5318", "14", "565", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("5319", "14", "566", "1.3", "Yola");
INSERT INTO `wp_gf_entry_meta` VALUES("5320", "14", "566", "1.6", "Hurwitz");
INSERT INTO `wp_gf_entry_meta` VALUES("5321", "14", "566", "2", "October 28, 1948");
INSERT INTO `wp_gf_entry_meta` VALUES("5322", "14", "566", "3", "(250) 480-7685");
INSERT INTO `wp_gf_entry_meta` VALUES("5323", "14", "566", "4", "firstviolincov@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5324", "14", "566", "11", "From the UVic Roman Catholic chaplain");
INSERT INTO `wp_gf_entry_meta` VALUES("5325", "14", "566", "5", "Generalized Anxiety Disorder (including OCD);  depression;  loss;  grief (as well as \"tertiary grief\").  After an appointment with the above chaplain, I have decided that I need help in working on these issues, for the sake of further healing.\r\n\r\nI am a member of a faith community (Roman Catholic).");
INSERT INTO `wp_gf_entry_meta` VALUES("5326", "14", "566", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5327", "14", "566", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5328", "14", "566", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5329", "14", "566", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("5330", "14", "566", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("5331", "14", "566", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("5332", "14", "567", "1.3", "Derrick");
INSERT INTO `wp_gf_entry_meta` VALUES("5333", "14", "567", "1.6", "Wood");
INSERT INTO `wp_gf_entry_meta` VALUES("5334", "14", "567", "2", "September 24 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("5335", "14", "567", "3", "(778) 587-8657");
INSERT INTO `wp_gf_entry_meta` VALUES("5336", "14", "567", "4", "Derrick_Wood_6@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5337", "14", "567", "11", "Friend");
INSERT INTO `wp_gf_entry_meta` VALUES("5338", "14", "567", "5", "i need someone to bounce all my thoughts off of instead of certian thoughts to certain people , my doctor told me to get councdling before but i didnt believe in it. There are a lot of things i need help with");
INSERT INTO `wp_gf_entry_meta` VALUES("5339", "14", "567", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5340", "14", "567", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5341", "14", "567", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5342", "14", "567", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5343", "14", "567", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5344", "14", "568", "1.3", "Derrick");
INSERT INTO `wp_gf_entry_meta` VALUES("5345", "14", "568", "1.6", "Wood");
INSERT INTO `wp_gf_entry_meta` VALUES("5346", "14", "568", "2", "September 24 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("5347", "14", "568", "3", "(778) 587-8657");
INSERT INTO `wp_gf_entry_meta` VALUES("5348", "14", "568", "4", "Derrick_Wood_6@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5349", "14", "568", "11", "Friend");
INSERT INTO `wp_gf_entry_meta` VALUES("5350", "14", "568", "5", "i need someone to bounce all my thoughts off of instead of certian thoughts to certain people , my doctor told me to get councdling before but i didnt believe in it. There are a lot of things i need help with");
INSERT INTO `wp_gf_entry_meta` VALUES("5351", "14", "568", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5352", "14", "568", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5353", "14", "568", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5354", "14", "568", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5355", "14", "568", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5356", "3", "569", "1.3", "Pamela");
INSERT INTO `wp_gf_entry_meta` VALUES("5357", "3", "569", "1.6", "Brown");
INSERT INTO `wp_gf_entry_meta` VALUES("5358", "3", "569", "2", "paganda@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5359", "3", "569", "3.1", "301-404 Dundas St");
INSERT INTO `wp_gf_entry_meta` VALUES("5360", "3", "569", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5361", "3", "569", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5362", "3", "569", "3.5", "V9A 3K2");
INSERT INTO `wp_gf_entry_meta` VALUES("5363", "3", "569", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5364", "3", "569", "4", "(778) 233-4900");
INSERT INTO `wp_gf_entry_meta` VALUES("5365", "3", "569", "7", "October 28, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("5366", "3", "569", "5", "Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference");
INSERT INTO `wp_gf_entry_meta` VALUES("5367", "3", "569", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5368", "8", "570", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5369", "8", "570", "14.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("5370", "8", "570", "6", "St. Johns United Church North Saanich BC 10990 West Saanich Rd.");
INSERT INTO `wp_gf_entry_meta` VALUES("5371", "8", "570", "1.3", "Eva");
INSERT INTO `wp_gf_entry_meta` VALUES("5372", "8", "570", "1.6", "Kerr");
INSERT INTO `wp_gf_entry_meta` VALUES("5373", "8", "570", "2", "eve.kerr@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("5374", "8", "570", "3.1", "8518 Moxon Tce.");
INSERT INTO `wp_gf_entry_meta` VALUES("5375", "8", "570", "3.3", "Sidney");
INSERT INTO `wp_gf_entry_meta` VALUES("5376", "8", "570", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5377", "8", "570", "3.5", "V8L1K6");
INSERT INTO `wp_gf_entry_meta` VALUES("5378", "8", "570", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5379", "8", "570", "4", "(250) 656-5273");
INSERT INTO `wp_gf_entry_meta` VALUES("5380", "8", "570", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5381", "8", "570", "11.1", "Non-bursary option: cheque ($105 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5382", "3", "571", "1.3", "Sue");
INSERT INTO `wp_gf_entry_meta` VALUES("5383", "3", "571", "1.6", "Reid");
INSERT INTO `wp_gf_entry_meta` VALUES("5384", "3", "571", "2", "susanjreid@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5385", "3", "571", "3.1", "401-4351 West Saanich Road");
INSERT INTO `wp_gf_entry_meta` VALUES("5386", "3", "571", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5387", "3", "571", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5388", "3", "571", "3.5", "V8Z 3E8");
INSERT INTO `wp_gf_entry_meta` VALUES("5389", "3", "571", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5390", "3", "571", "4", "(250) 589-6307");
INSERT INTO `wp_gf_entry_meta` VALUES("5391", "3", "571", "7", "October 28, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("5392", "3", "571", "5", "Me and My Personality");
INSERT INTO `wp_gf_entry_meta` VALUES("5393", "3", "571", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("5394", "14", "572", "1.3", "Jonathan");
INSERT INTO `wp_gf_entry_meta` VALUES("5395", "14", "572", "1.6", "Ross");
INSERT INTO `wp_gf_entry_meta` VALUES("5396", "14", "572", "2", "July 12, 1988");
INSERT INTO `wp_gf_entry_meta` VALUES("5397", "14", "572", "3", "(778) 587-7001");
INSERT INTO `wp_gf_entry_meta` VALUES("5398", "14", "572", "4", "Wolfenhart@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5399", "14", "572", "11", "My partner recommended you.");
INSERT INTO `wp_gf_entry_meta` VALUES("5400", "14", "572", "5", "I prefer female counsellors to male, as I have a much more difficult time relating and opening up to males.\r\n\r\nIve been facing a lot of issues with depression, anxiety, and some resurging anger/frustration.");
INSERT INTO `wp_gf_entry_meta` VALUES("5401", "14", "572", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5402", "14", "572", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5403", "14", "572", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5404", "14", "572", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5405", "14", "573", "1.3", "Jonathan");
INSERT INTO `wp_gf_entry_meta` VALUES("5406", "14", "573", "1.6", "Ross");
INSERT INTO `wp_gf_entry_meta` VALUES("5407", "14", "573", "2", "July 12, 1988");
INSERT INTO `wp_gf_entry_meta` VALUES("5408", "14", "573", "3", "(778) 587-7001");
INSERT INTO `wp_gf_entry_meta` VALUES("5409", "14", "573", "4", "Wolfenhart@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5410", "14", "573", "11", "My partner recommended you.");
INSERT INTO `wp_gf_entry_meta` VALUES("5411", "14", "573", "5", "I prefer female counsellors to male, as I have a much more difficult time relating and opening up to males.\r\n\r\nIve been facing a lot of issues with depression, anxiety, and some resurging anger/frustration.");
INSERT INTO `wp_gf_entry_meta` VALUES("5412", "14", "573", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5413", "14", "573", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5414", "14", "573", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5415", "14", "573", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5416", "14", "574", "1.3", "Lucy");
INSERT INTO `wp_gf_entry_meta` VALUES("5417", "14", "574", "1.6", "Brandt");
INSERT INTO `wp_gf_entry_meta` VALUES("5418", "14", "574", "2", "July 30, 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("5419", "14", "574", "3", "(250) 812-1185");
INSERT INTO `wp_gf_entry_meta` VALUES("5420", "14", "574", "4", "Lucybrandt@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5421", "14", "574", "11", "Family member");
INSERT INTO `wp_gf_entry_meta` VALUES("5422", "14", "574", "5", "Major anxiety, depression.");
INSERT INTO `wp_gf_entry_meta` VALUES("5423", "14", "574", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5424", "14", "574", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5425", "14", "574", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5426", "3", "575", "1.3", "Loren");
INSERT INTO `wp_gf_entry_meta` VALUES("5427", "3", "575", "1.6", "Camarena");
INSERT INTO `wp_gf_entry_meta` VALUES("5428", "3", "575", "2", "loren_camarena@womentopswear.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5429", "3", "575", "3.1", "3978 137th Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("5430", "3", "575", "3.3", "Edmonton");
INSERT INTO `wp_gf_entry_meta` VALUES("5431", "3", "575", "3.4", "Newfoundland &amp; Labrador");
INSERT INTO `wp_gf_entry_meta` VALUES("5432", "3", "575", "3.5", "T5b 3v4");
INSERT INTO `wp_gf_entry_meta` VALUES("5433", "3", "575", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5434", "3", "575", "4", "(780) 474-6931");
INSERT INTO `wp_gf_entry_meta` VALUES("5435", "3", "575", "7", "SJ");
INSERT INTO `wp_gf_entry_meta` VALUES("5436", "3", "575", "5", "This Is The One You Need");
INSERT INTO `wp_gf_entry_meta` VALUES("5437", "3", "575", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("5438", "3", "575", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5439", "3", "575", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5440", "14", "576", "1.3", "Hannah");
INSERT INTO `wp_gf_entry_meta` VALUES("5441", "14", "576", "1.6", "Wilkinson");
INSERT INTO `wp_gf_entry_meta` VALUES("5442", "14", "576", "2", "May 26th, 1995");
INSERT INTO `wp_gf_entry_meta` VALUES("5443", "14", "576", "3", "(250) 661-6888");
INSERT INTO `wp_gf_entry_meta` VALUES("5444", "14", "576", "4", "hannahwilkinson1@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5445", "14", "576", "11", "Anxiety Clinic at RJH");
INSERT INTO `wp_gf_entry_meta` VALUES("5446", "14", "576", "5", "Anxiety and panic, depression, I was also sexually assaulted and am trying to cope with that. I had a consult with the anxiety clinic and they recommended I contact you due to the affordable sliding scale you use.");
INSERT INTO `wp_gf_entry_meta` VALUES("5447", "14", "576", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5448", "14", "576", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5449", "14", "576", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5450", "14", "576", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5451", "14", "577", "1.3", "Aerye");
INSERT INTO `wp_gf_entry_meta` VALUES("5452", "14", "577", "1.6", "Swarek");
INSERT INTO `wp_gf_entry_meta` VALUES("5453", "14", "577", "2", "March 6, 1984");
INSERT INTO `wp_gf_entry_meta` VALUES("5454", "14", "577", "3", "(778) 762-3725");
INSERT INTO `wp_gf_entry_meta` VALUES("5455", "14", "577", "4", "Aerye.Swarek@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5456", "14", "577", "11", "Referral");
INSERT INTO `wp_gf_entry_meta` VALUES("5457", "14", "577", "5", "Complex PTSD");
INSERT INTO `wp_gf_entry_meta` VALUES("5458", "14", "577", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5459", "14", "577", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5460", "14", "577", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5461", "8", "578", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5462", "8", "578", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5463", "8", "578", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5464", "8", "578", "6", "St Phillips");
INSERT INTO `wp_gf_entry_meta` VALUES("5465", "8", "578", "1.3", "Evelyn");
INSERT INTO `wp_gf_entry_meta` VALUES("5466", "8", "578", "1.6", "Savage");
INSERT INTO `wp_gf_entry_meta` VALUES("5467", "8", "578", "2", "cedar@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("5468", "8", "578", "3.1", "1723 mamich Circle");
INSERT INTO `wp_gf_entry_meta` VALUES("5469", "8", "578", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5470", "8", "578", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5471", "8", "578", "3.5", "V8n 6M9");
INSERT INTO `wp_gf_entry_meta` VALUES("5472", "8", "578", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5473", "8", "578", "4", "(250) 479-0489");
INSERT INTO `wp_gf_entry_meta` VALUES("5474", "8", "578", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5475", "8", "578", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5476", "14", "579", "1.3", "Kalika");
INSERT INTO `wp_gf_entry_meta` VALUES("5477", "14", "579", "1.6", "Fetchuk");
INSERT INTO `wp_gf_entry_meta` VALUES("5478", "14", "579", "2", "February 14th, 1995");
INSERT INTO `wp_gf_entry_meta` VALUES("5479", "14", "579", "3", "(250) 540-8155");
INSERT INTO `wp_gf_entry_meta` VALUES("5480", "14", "579", "4", "Fetchukkalika@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5481", "14", "579", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("5482", "14", "579", "5", "Anxiety, depression and stress");
INSERT INTO `wp_gf_entry_meta` VALUES("5483", "14", "579", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5484", "14", "579", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5485", "14", "579", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5486", "14", "579", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5487", "14", "579", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5488", "3", "580", "1.3", "Seren");
INSERT INTO `wp_gf_entry_meta` VALUES("5489", "3", "580", "1.6", "Bengtson");
INSERT INTO `wp_gf_entry_meta` VALUES("5490", "3", "580", "2", "suebeng@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5491", "3", "580", "3.1", "933 Admirals Road #43");
INSERT INTO `wp_gf_entry_meta` VALUES("5492", "3", "580", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5493", "3", "580", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5494", "3", "580", "3.5", "V9A 2P1");
INSERT INTO `wp_gf_entry_meta` VALUES("5495", "3", "580", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5496", "3", "580", "4", "(778) 440-5836");
INSERT INTO `wp_gf_entry_meta` VALUES("5497", "3", "580", "7", "21/10/17");
INSERT INTO `wp_gf_entry_meta` VALUES("5498", "3", "580", "5", "Teen Anxiety Support Group: Making It Work for Teens!");
INSERT INTO `wp_gf_entry_meta` VALUES("5499", "3", "580", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5500", "3", "581", "1.3", "Tanisha");
INSERT INTO `wp_gf_entry_meta` VALUES("5501", "3", "581", "1.6", "Jensen");
INSERT INTO `wp_gf_entry_meta` VALUES("5502", "3", "581", "2", "Tanisha.k.jensen@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5503", "3", "581", "3.1", "1694 cedar hill xrd");
INSERT INTO `wp_gf_entry_meta` VALUES("5504", "3", "581", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5505", "3", "581", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5506", "3", "581", "3.5", "V8p2p7");
INSERT INTO `wp_gf_entry_meta` VALUES("5507", "3", "581", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5508", "3", "581", "4", "(778) 533-1866");
INSERT INTO `wp_gf_entry_meta` VALUES("5509", "3", "581", "7", "Sepr 26th");
INSERT INTO `wp_gf_entry_meta` VALUES("5510", "3", "581", "5", "Young adult support group");
INSERT INTO `wp_gf_entry_meta` VALUES("5511", "3", "581", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5512", "3", "582", "1.3", "Chiyoko");
INSERT INTO `wp_gf_entry_meta` VALUES("5513", "3", "582", "1.6", "Allison");
INSERT INTO `wp_gf_entry_meta` VALUES("5514", "3", "582", "2", "sunflowersun88@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5515", "3", "582", "3.1", "#308-1519 Hillside Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("5516", "3", "582", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5517", "3", "582", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5518", "3", "582", "3.5", "V8T2C1");
INSERT INTO `wp_gf_entry_meta` VALUES("5519", "3", "582", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5520", "3", "582", "4", "(250) 598-8658");
INSERT INTO `wp_gf_entry_meta` VALUES("5521", "3", "582", "7", "September 26");
INSERT INTO `wp_gf_entry_meta` VALUES("5522", "3", "582", "5", "Young adults support group for anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("5523", "3", "582", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5524", "14", "583", "1.3", "Jared");
INSERT INTO `wp_gf_entry_meta` VALUES("5525", "14", "583", "1.6", "Brown");
INSERT INTO `wp_gf_entry_meta` VALUES("5526", "14", "583", "2", "August 27th 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("5527", "14", "583", "3", "(250) 532-4619");
INSERT INTO `wp_gf_entry_meta` VALUES("5528", "14", "583", "4", "jaredbrownsound@yahoo.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5529", "14", "583", "11", "A friend used your counseling services and said it helped him and his girlfriend a lot.");
INSERT INTO `wp_gf_entry_meta` VALUES("5530", "14", "583", "5", "Dealing with PTSD and Schizophrenia. Feel extremely unstable, depressed, unable to work full time. Have family issues, in debt, I think people through demonic entities are trying to kill me and or driving me to take  my own life. unable to develop disciplined good habits and routine. Insomnia, paranoia, hallucinations, sex addiction, drug addiction. Extremely complicated. Have been seeing a registered councilor, made 5 visits at $230 per visit. Not seeing any significant improvement. I feel helpless and unable to cope. Believe in God and regularly communicate with him but feel a extraordinary force of evil at ever corner and am unable to enjoy life.");
INSERT INTO `wp_gf_entry_meta` VALUES("5531", "14", "583", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5532", "14", "583", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5533", "14", "583", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5534", "14", "583", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5535", "14", "583", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("5536", "14", "583", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("5537", "14", "584", "1.3", "Rachael");
INSERT INTO `wp_gf_entry_meta` VALUES("5538", "14", "584", "1.6", "Bourbeau");
INSERT INTO `wp_gf_entry_meta` VALUES("5539", "14", "584", "2", "December 11, 1995");
INSERT INTO `wp_gf_entry_meta` VALUES("5540", "14", "584", "3", "(250) 891-4090");
INSERT INTO `wp_gf_entry_meta` VALUES("5541", "14", "584", "4", "rbourbeaupl10@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5542", "14", "584", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("5543", "14", "584", "5", "Depression and Anxiety\r\n\r\nSeverely mentally ill father whose care has been left solely for me to deal with\r\n\r\nDifficult familial relationships \r\n\r\nFinancial stress\r\n\r\n\r\nJennifer is my partners counselor, if possible I\'d like to see someone different");
INSERT INTO `wp_gf_entry_meta` VALUES("5544", "14", "584", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5545", "14", "584", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5546", "14", "584", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5547", "3", "585", "1.3", "Carly");
INSERT INTO `wp_gf_entry_meta` VALUES("5548", "3", "585", "1.6", "Eldstrom");
INSERT INTO `wp_gf_entry_meta` VALUES("5549", "3", "585", "2", "carlye@hotmail.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5550", "3", "585", "3.1", "404-785 Caledonia Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("5551", "3", "585", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5552", "3", "585", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5553", "3", "585", "3.5", "V8T 0C3");
INSERT INTO `wp_gf_entry_meta` VALUES("5554", "3", "585", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5555", "3", "585", "4", "(604) 250-3248");
INSERT INTO `wp_gf_entry_meta` VALUES("5556", "3", "585", "7", "September 26");
INSERT INTO `wp_gf_entry_meta` VALUES("5557", "3", "585", "5", "Young adults\' Support Group for Anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("5558", "3", "585", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5559", "3", "586", "1.3", "Ava");
INSERT INTO `wp_gf_entry_meta` VALUES("5560", "3", "586", "1.6", "Alexander");
INSERT INTO `wp_gf_entry_meta` VALUES("5561", "3", "586", "2", "c.alexander@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("5562", "3", "586", "3.1", "1760 taylor street");
INSERT INTO `wp_gf_entry_meta` VALUES("5563", "3", "586", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5564", "3", "586", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5565", "3", "586", "3.5", "V8R 3E9");
INSERT INTO `wp_gf_entry_meta` VALUES("5566", "3", "586", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5567", "3", "586", "4", "(250) 893-1856");
INSERT INTO `wp_gf_entry_meta` VALUES("5568", "3", "586", "7", "October 21");
INSERT INTO `wp_gf_entry_meta` VALUES("5569", "3", "586", "5", "Making it work for Teens");
INSERT INTO `wp_gf_entry_meta` VALUES("5570", "3", "586", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5571", "8", "587", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5572", "8", "587", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5573", "8", "587", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5574", "8", "587", "6", "St  Mary the Virgin Oak Bay");
INSERT INTO `wp_gf_entry_meta` VALUES("5575", "8", "587", "1.3", "Craig");
INSERT INTO `wp_gf_entry_meta` VALUES("5576", "8", "587", "1.6", "Hiebert");
INSERT INTO `wp_gf_entry_meta` VALUES("5577", "8", "587", "2", "hellojwwatson@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5578", "8", "587", "3.1", "760 Genevieve Road");
INSERT INTO `wp_gf_entry_meta` VALUES("5579", "8", "587", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5580", "8", "587", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5581", "8", "587", "3.5", "v8X3R5");
INSERT INTO `wp_gf_entry_meta` VALUES("5582", "8", "587", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5583", "8", "587", "4", "(250) 893-5106");
INSERT INTO `wp_gf_entry_meta` VALUES("5584", "8", "587", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_gf_entry_meta` VALUES("5585", "8", "587", "11.5", "Bursary option: debit card ($15 per registrant) - in person only");
INSERT INTO `wp_gf_entry_meta` VALUES("5586", "8", "588", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5587", "8", "588", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5588", "8", "588", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5589", "8", "588", "6", "The Church of St. Mary the Virgin, Oak Bay\r\n1702 Elgin Road\r\nVictoria, BC, V8R 5L7\r\n\r\nAnglican");
INSERT INTO `wp_gf_entry_meta` VALUES("5590", "8", "588", "1.3", "Anne");
INSERT INTO `wp_gf_entry_meta` VALUES("5591", "8", "588", "1.6", "Underhill");
INSERT INTO `wp_gf_entry_meta` VALUES("5592", "8", "588", "2", "jamesunderhill@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5593", "8", "588", "3.1", "205 - 2333 Beach Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("5594", "8", "588", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5595", "8", "588", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5596", "8", "588", "3.5", "V8R 6K2");
INSERT INTO `wp_gf_entry_meta` VALUES("5597", "8", "588", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5598", "8", "588", "4", "(250) 370-5027");
INSERT INTO `wp_gf_entry_meta` VALUES("5599", "8", "588", "9.2", "Advanced (attended a basic PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5600", "8", "588", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5601", "14", "589", "1.3", "Lucy");
INSERT INTO `wp_gf_entry_meta` VALUES("5602", "14", "589", "1.6", "Brandt");
INSERT INTO `wp_gf_entry_meta` VALUES("5603", "14", "589", "2", "July 30, 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("5604", "14", "589", "3", "(250) 812-1185");
INSERT INTO `wp_gf_entry_meta` VALUES("5605", "14", "589", "4", "Lucybrandt@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5606", "14", "589", "11", "Family");
INSERT INTO `wp_gf_entry_meta` VALUES("5607", "14", "589", "5", "Depression, anxiety, BPD");
INSERT INTO `wp_gf_entry_meta` VALUES("5608", "14", "589", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5609", "14", "589", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5610", "14", "589", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5611", "14", "589", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5612", "3", "590", "1.3", "Scarlett");
INSERT INTO `wp_gf_entry_meta` VALUES("5613", "3", "590", "1.6", "Waters");
INSERT INTO `wp_gf_entry_meta` VALUES("5614", "3", "590", "2", "janeices@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5615", "3", "590", "3.1", "665 grenville ave");
INSERT INTO `wp_gf_entry_meta` VALUES("5616", "3", "590", "3.3", "victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5617", "3", "590", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5618", "3", "590", "3.5", "v9a6l5");
INSERT INTO `wp_gf_entry_meta` VALUES("5619", "3", "590", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5620", "3", "590", "4", "(250) 220-5964");
INSERT INTO `wp_gf_entry_meta` VALUES("5621", "3", "590", "7", "Oct. 21. 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("5622", "3", "590", "5", "Making it work for teens");
INSERT INTO `wp_gf_entry_meta` VALUES("5623", "3", "590", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5624", "14", "591", "1.3", "Eryn");
INSERT INTO `wp_gf_entry_meta` VALUES("5625", "14", "591", "1.6", "Brett");
INSERT INTO `wp_gf_entry_meta` VALUES("5626", "14", "591", "2", "Nov 29/1967");
INSERT INTO `wp_gf_entry_meta` VALUES("5627", "14", "591", "3", "(250) 858-8140");
INSERT INTO `wp_gf_entry_meta` VALUES("5628", "14", "591", "4", "erynbrett@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5629", "14", "591", "11", "Jan Mahoney");
INSERT INTO `wp_gf_entry_meta` VALUES("5630", "14", "591", "5", "My 17 year old daughter suffers from extreme anxiety and depression and is self medicating with marijuana and street Xanax. She has left my home last week and is staying with her drug addicted boyfriend and his parents. She is very angry with me and her older siblings, who live at my house, and refuses to come home or get help. I could really use some advice and counselling on how to handle this situation as the mom. Ultimately, we could use some family counselling to reunite our family. This is beyond my scope of experience and I am desperate to save my daughter before it is too late.");
INSERT INTO `wp_gf_entry_meta` VALUES("5631", "14", "591", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5632", "14", "591", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5633", "14", "591", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("5634", "14", "592", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("5635", "14", "592", "1.6", "Hansen");
INSERT INTO `wp_gf_entry_meta` VALUES("5636", "14", "592", "2", "Feb. 9,1981");
INSERT INTO `wp_gf_entry_meta` VALUES("5637", "14", "592", "3", "(250) 634-2191");
INSERT INTO `wp_gf_entry_meta` VALUES("5638", "14", "592", "4", "hansen.jennifer03@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5639", "14", "592", "11", "Previously been");
INSERT INTO `wp_gf_entry_meta` VALUES("5640", "14", "592", "5", "Anxiety and Depression.");
INSERT INTO `wp_gf_entry_meta` VALUES("5641", "14", "592", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5642", "14", "592", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5643", "14", "592", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5644", "8", "593", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5645", "8", "593", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5646", "8", "593", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5647", "8", "593", "6", "Saint Philip Anglican Church\r\n 2928 Eastdowne Rd, Victoria, BC V8R 5R8");
INSERT INTO `wp_gf_entry_meta` VALUES("5648", "8", "593", "1.3", "Gerianne");
INSERT INTO `wp_gf_entry_meta` VALUES("5649", "8", "593", "1.6", "Knowles-Robson");
INSERT INTO `wp_gf_entry_meta` VALUES("5650", "8", "593", "2", "whenpigsfly2@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("5651", "8", "593", "3.1", "1767 Saint Ann Street");
INSERT INTO `wp_gf_entry_meta` VALUES("5652", "8", "593", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5653", "8", "593", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("5654", "8", "593", "3.5", "V8R 5V7");
INSERT INTO `wp_gf_entry_meta` VALUES("5655", "8", "593", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5656", "8", "593", "4", "(250) 595-0232");
INSERT INTO `wp_gf_entry_meta` VALUES("5657", "8", "593", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5658", "8", "593", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5659", "8", "594", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5660", "8", "594", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5661", "8", "594", "6", "St. Michaels and All Angels   Church   West Saanich Road");
INSERT INTO `wp_gf_entry_meta` VALUES("5662", "8", "594", "1.3", "Nancy");
INSERT INTO `wp_gf_entry_meta` VALUES("5663", "8", "594", "1.6", "Paxton");
INSERT INTO `wp_gf_entry_meta` VALUES("5664", "8", "594", "2", "npaxton@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5665", "8", "594", "3.1", "301-1550 Richmond Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("5666", "8", "594", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5667", "8", "594", "3.4", "British Columbia (BC)");
INSERT INTO `wp_gf_entry_meta` VALUES("5668", "8", "594", "3.5", "V8R4P6");
INSERT INTO `wp_gf_entry_meta` VALUES("5669", "8", "594", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5670", "8", "594", "4", "(250) 370-2794");
INSERT INTO `wp_gf_entry_meta` VALUES("5671", "8", "594", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5672", "8", "594", "11.5", "Bursary option: debit card ($15 per registrant) - in person only");
INSERT INTO `wp_gf_entry_meta` VALUES("5673", "8", "595", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5674", "8", "595", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5675", "8", "595", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5676", "8", "595", "6", "St. Philip\'s Anglican Church\r\n2928 Eastdowne Rd\r\nVictoria, BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5677", "8", "595", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("5678", "8", "595", "1.6", "Fenimore");
INSERT INTO `wp_gf_entry_meta` VALUES("5679", "8", "595", "2", "karenfenimore@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5680", "8", "595", "3.1", "2625 Avebury Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("5681", "8", "595", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5682", "8", "595", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5683", "8", "595", "3.5", "V8R 3W3");
INSERT INTO `wp_gf_entry_meta` VALUES("5684", "8", "595", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5685", "8", "595", "4", "(250) 477-7257");
INSERT INTO `wp_gf_entry_meta` VALUES("5686", "8", "595", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5687", "8", "595", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5688", "14", "596", "1.3", "Erin");
INSERT INTO `wp_gf_entry_meta` VALUES("5689", "14", "596", "1.6", "McDermott");
INSERT INTO `wp_gf_entry_meta` VALUES("5690", "14", "596", "2", "June 15 1074");
INSERT INTO `wp_gf_entry_meta` VALUES("5691", "14", "596", "3", "(250) 516-7465");
INSERT INTO `wp_gf_entry_meta` VALUES("5692", "14", "596", "4", "erinmhome@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5693", "14", "596", "11", "Trent Warlow (Fiance)");
INSERT INTO `wp_gf_entry_meta` VALUES("5694", "14", "596", "5", "PTSD (Diagnosed 3 yrs ago) Panic attacks, Relationship issues (accute and contributing to my anxiety), feeling confused and helpless, interfering with work, past trauma\r\nMy mental health needs are critical at the moment. \r\n\r\nI do not work Fridays and am available all day. Amber called me today while I was working. I will return her call at 6pm as indicated.");
INSERT INTO `wp_gf_entry_meta` VALUES("5695", "14", "596", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5696", "14", "596", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5697", "14", "596", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5698", "14", "596", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("5699", "8", "597", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5700", "8", "597", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5701", "8", "597", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5702", "8", "597", "6", "St. Michaels and All Angels, Anglican, West Saanich Rd.  Victoria, BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5703", "8", "597", "1.3", "Jo Ellen");
INSERT INTO `wp_gf_entry_meta` VALUES("5704", "8", "597", "1.6", "Schoblom");
INSERT INTO `wp_gf_entry_meta` VALUES("5705", "8", "597", "2", "joellenbbr@msn.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5706", "8", "597", "3.1", "Jo Ellen Schoblom");
INSERT INTO `wp_gf_entry_meta` VALUES("5707", "8", "597", "3.2", "642 Southwood Dr.");
INSERT INTO `wp_gf_entry_meta` VALUES("5708", "8", "597", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5709", "8", "597", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5710", "8", "597", "3.5", "V9B 6R9");
INSERT INTO `wp_gf_entry_meta` VALUES("5711", "8", "597", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5712", "8", "597", "4", "(778) 265-2675");
INSERT INTO `wp_gf_entry_meta` VALUES("5713", "8", "597", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5714", "8", "597", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5715", "14", "598", "1.3", "Scott");
INSERT INTO `wp_gf_entry_meta` VALUES("5716", "14", "598", "1.6", "Thompson");
INSERT INTO `wp_gf_entry_meta` VALUES("5717", "14", "598", "2", "11/30/85");
INSERT INTO `wp_gf_entry_meta` VALUES("5718", "14", "598", "3", "(250) 508-5267");
INSERT INTO `wp_gf_entry_meta` VALUES("5719", "14", "598", "4", "seescotttalk@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5720", "14", "598", "11", "A friend");
INSERT INTO `wp_gf_entry_meta` VALUES("5721", "14", "598", "5", "I feel as though I have been cycling through the same challenges in my life for most of my adult life, it\'s held me back, and I\'m looking to get ahead of it. I\'ve tried on my own, each time failing to varying degrees. I would love some help in getting past this.");
INSERT INTO `wp_gf_entry_meta` VALUES("5722", "14", "598", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5723", "14", "598", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5724", "14", "598", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5725", "14", "599", "1.3", "Alanna");
INSERT INTO `wp_gf_entry_meta` VALUES("5726", "14", "599", "1.6", "Blishen");
INSERT INTO `wp_gf_entry_meta` VALUES("5727", "14", "599", "2", "December 22, 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("5728", "14", "599", "3", "(778) 679-7126");
INSERT INTO `wp_gf_entry_meta` VALUES("5729", "14", "599", "4", "amblishen@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5730", "14", "599", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("5731", "14", "599", "5", "Depression, Anxiety, Anger");
INSERT INTO `wp_gf_entry_meta` VALUES("5732", "14", "599", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5733", "14", "599", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5734", "14", "599", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5735", "14", "599", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5736", "14", "599", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5737", "3", "600", "1.3", "Roberto");
INSERT INTO `wp_gf_entry_meta` VALUES("5738", "3", "600", "1.6", "Volz");
INSERT INTO `wp_gf_entry_meta` VALUES("5739", "3", "600", "2", "robertovolz47@silver.variots.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5740", "3", "600", "3.1", "3020 Upton Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("5741", "3", "600", "3.3", "Westbrook");
INSERT INTO `wp_gf_entry_meta` VALUES("5742", "3", "600", "3.4", "Saskatchewan");
INSERT INTO `wp_gf_entry_meta` VALUES("5743", "3", "600", "3.5", "4092");
INSERT INTO `wp_gf_entry_meta` VALUES("5744", "3", "600", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5745", "3", "600", "4", "(207) 918-5924");
INSERT INTO `wp_gf_entry_meta` VALUES("5746", "3", "600", "7", "NZ");
INSERT INTO `wp_gf_entry_meta` VALUES("5747", "3", "600", "5", "Homeschooling-Lessons Of Opportunity: The Racing Pigeon");
INSERT INTO `wp_gf_entry_meta` VALUES("5748", "3", "600", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("5749", "3", "600", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5750", "3", "600", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5751", "8", "601", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5752", "8", "601", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5753", "8", "601", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5754", "8", "601", "6", "Two Saints (St. Peter)");
INSERT INTO `wp_gf_entry_meta` VALUES("5755", "8", "601", "1.3", "Merle");
INSERT INTO `wp_gf_entry_meta` VALUES("5756", "8", "601", "1.6", "Campbell-Moore");
INSERT INTO `wp_gf_entry_meta` VALUES("5757", "8", "601", "2", "mcampbell-moore@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5758", "8", "601", "3.1", "1715 Feltham Road");
INSERT INTO `wp_gf_entry_meta` VALUES("5759", "8", "601", "3.2", "(NONE)");
INSERT INTO `wp_gf_entry_meta` VALUES("5760", "8", "601", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5761", "8", "601", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("5762", "8", "601", "3.5", "V8N 2A4");
INSERT INTO `wp_gf_entry_meta` VALUES("5763", "8", "601", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5764", "8", "601", "4", "(250) 477-6255");
INSERT INTO `wp_gf_entry_meta` VALUES("5765", "8", "601", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5766", "8", "601", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5767", "8", "602", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5768", "8", "602", "14.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("5769", "8", "602", "15.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("5770", "8", "602", "1.3", "Soraya");
INSERT INTO `wp_gf_entry_meta` VALUES("5771", "8", "602", "1.6", "Centeno");
INSERT INTO `wp_gf_entry_meta` VALUES("5772", "8", "602", "2", "sorayacenteno@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5773", "8", "602", "3.1", "3939 Saint Peter\'s Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("5774", "8", "602", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5775", "8", "602", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5776", "8", "602", "3.5", "V8P2J9");
INSERT INTO `wp_gf_entry_meta` VALUES("5777", "8", "602", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5778", "8", "602", "4", "(778) 533-0900");
INSERT INTO `wp_gf_entry_meta` VALUES("5779", "8", "602", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5780", "8", "602", "11.3", "Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)");
INSERT INTO `wp_gf_entry_meta` VALUES("5781", "3", "603", "1.3", "Nathan");
INSERT INTO `wp_gf_entry_meta` VALUES("5782", "3", "603", "1.6", "Treble");
INSERT INTO `wp_gf_entry_meta` VALUES("5783", "3", "603", "2", "nt5432@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5784", "3", "603", "3.1", "1829");
INSERT INTO `wp_gf_entry_meta` VALUES("5785", "3", "603", "3.3", "Knutsford Place");
INSERT INTO `wp_gf_entry_meta` VALUES("5786", "3", "603", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5787", "3", "603", "3.5", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5788", "3", "603", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5789", "3", "603", "4", "(250) 477-4438");
INSERT INTO `wp_gf_entry_meta` VALUES("5790", "3", "603", "7", "Oct. 10, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("5791", "3", "603", "5", "Young Adults Support Group For Anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("5792", "3", "603", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("5793", "8", "604", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5794", "8", "604", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5795", "8", "604", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5796", "8", "604", "6", "Rector, The Two Saints Ministry: St. David by-the-Sea, Cordova Bay, and St. Peter, Lakehill");
INSERT INTO `wp_gf_entry_meta` VALUES("5797", "8", "604", "1.3", "Matthew");
INSERT INTO `wp_gf_entry_meta` VALUES("5798", "8", "604", "1.6", "Brown");
INSERT INTO `wp_gf_entry_meta` VALUES("5799", "8", "604", "2", "mbrown@bc.anglican.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5800", "8", "604", "3.1", "4-753 Pemberton Road");
INSERT INTO `wp_gf_entry_meta` VALUES("5801", "8", "604", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5802", "8", "604", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5803", "8", "604", "3.5", "V8S 3R3");
INSERT INTO `wp_gf_entry_meta` VALUES("5804", "8", "604", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5805", "8", "604", "4", "(250) 588-5959");
INSERT INTO `wp_gf_entry_meta` VALUES("5806", "8", "604", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_gf_entry_meta` VALUES("5807", "8", "604", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5808", "3", "605", "1.3", "Elizabeth");
INSERT INTO `wp_gf_entry_meta` VALUES("5809", "3", "605", "1.6", "Underhill");
INSERT INTO `wp_gf_entry_meta` VALUES("5810", "3", "605", "2", "mouse.speak@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5811", "3", "605", "3.1", "3915 Persimmon Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("5812", "3", "605", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5813", "3", "605", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5814", "3", "605", "3.5", "V8P 3R8");
INSERT INTO `wp_gf_entry_meta` VALUES("5815", "3", "605", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5816", "3", "605", "4", "(250) 414-0154");
INSERT INTO `wp_gf_entry_meta` VALUES("5817", "3", "605", "7", "October tenth 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("5818", "3", "605", "5", "Young adult support group for anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("5819", "3", "605", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5820", "8", "606", "5.2", "myself and additional persons from the same congregation.");
INSERT INTO `wp_gf_entry_meta` VALUES("5821", "8", "606", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5822", "8", "606", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5823", "8", "606", "6", "St John the Divine Anglican, Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5824", "8", "606", "1.3", "Gillian");
INSERT INTO `wp_gf_entry_meta` VALUES("5825", "8", "606", "1.6", "Hoyer");
INSERT INTO `wp_gf_entry_meta` VALUES("5826", "8", "606", "2", "gillian.hoyer@stjohnthedivine.bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5827", "8", "606", "3.1", "1611 Quadra St");
INSERT INTO `wp_gf_entry_meta` VALUES("5828", "8", "606", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5829", "8", "606", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5830", "8", "606", "3.5", "V8W 2L5");
INSERT INTO `wp_gf_entry_meta` VALUES("5831", "8", "606", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5832", "8", "606", "4", "(250) 383-7169");
INSERT INTO `wp_gf_entry_meta` VALUES("5833", "8", "606", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_gf_entry_meta` VALUES("5834", "8", "606", "10", "Barry Salter - Basic\r\nChris Eve - Basic\r\nAl Lehmann - Basic");
INSERT INTO `wp_gf_entry_meta` VALUES("5835", "8", "606", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5836", "3", "607", "1.3", "Anthony");
INSERT INTO `wp_gf_entry_meta` VALUES("5837", "3", "607", "1.6", "Wick");
INSERT INTO `wp_gf_entry_meta` VALUES("5838", "3", "607", "2", "anthonywick@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5839", "3", "607", "3.1", "3835 Quadra St");
INSERT INTO `wp_gf_entry_meta` VALUES("5840", "3", "607", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5841", "3", "607", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5842", "3", "607", "3.5", "V8X 1H9");
INSERT INTO `wp_gf_entry_meta` VALUES("5843", "3", "607", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5844", "3", "607", "4", "(250) 888-5676");
INSERT INTO `wp_gf_entry_meta` VALUES("5845", "3", "607", "7", "October 14, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("5846", "3", "607", "5", "Pastoral Care in the 21st Century");
INSERT INTO `wp_gf_entry_meta` VALUES("5847", "3", "607", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5848", "3", "608", "1.3", "Moira");
INSERT INTO `wp_gf_entry_meta` VALUES("5849", "3", "608", "1.6", "Madamombe");
INSERT INTO `wp_gf_entry_meta` VALUES("5850", "3", "608", "2", "moiramajachani@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5851", "3", "608", "3.1", "302S HUMBOLDT ST");
INSERT INTO `wp_gf_entry_meta` VALUES("5852", "3", "608", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5853", "3", "608", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5854", "3", "608", "3.5", "V8W1B1");
INSERT INTO `wp_gf_entry_meta` VALUES("5855", "3", "608", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5856", "3", "608", "4", "(250) 891-2618");
INSERT INTO `wp_gf_entry_meta` VALUES("5857", "3", "608", "7", "(Thursdays Oct. 19â€”Nov. 23, 2017: 7pmâ€”9pm)");
INSERT INTO `wp_gf_entry_meta` VALUES("5858", "3", "608", "5", "Living with Loss Part 1, an Introduction to Grief and Loss (TCNov. 23, 2017: 7pmâ€”9pm)");
INSERT INTO `wp_gf_entry_meta` VALUES("5859", "3", "608", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("5860", "8", "609", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5861", "8", "609", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5862", "8", "609", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5863", "8", "609", "6", "St. Michael\'s and All Angels. \r\nAnglican\r\n4733 West Saanich Rd. \r\nVictoria, B. C. V8Z 3G9");
INSERT INTO `wp_gf_entry_meta` VALUES("5864", "8", "609", "1.3", "Margaret");
INSERT INTO `wp_gf_entry_meta` VALUES("5865", "8", "609", "1.6", "Eagle");
INSERT INTO `wp_gf_entry_meta` VALUES("5866", "8", "609", "2", "margeagle@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("5867", "8", "609", "3.1", "2912 Island View Rd.");
INSERT INTO `wp_gf_entry_meta` VALUES("5868", "8", "609", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("5869", "8", "609", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("5870", "8", "609", "3.5", "V8M 1W4");
INSERT INTO `wp_gf_entry_meta` VALUES("5871", "8", "609", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5872", "8", "609", "4", "(250) 652-9657");
INSERT INTO `wp_gf_entry_meta` VALUES("5873", "8", "609", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5874", "8", "609", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5875", "14", "610", "1.3", "Ashley");
INSERT INTO `wp_gf_entry_meta` VALUES("5876", "14", "610", "1.6", "Berard");
INSERT INTO `wp_gf_entry_meta` VALUES("5877", "14", "610", "2", "Feb 11,1992");
INSERT INTO `wp_gf_entry_meta` VALUES("5878", "14", "610", "3", "(250) 819-9108");
INSERT INTO `wp_gf_entry_meta` VALUES("5879", "14", "610", "4", "ashleyaberard@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5880", "14", "610", "11", "A friend");
INSERT INTO `wp_gf_entry_meta` VALUES("5881", "14", "610", "5", "Previous unhealthy relationship, been having a difficult time moving on");
INSERT INTO `wp_gf_entry_meta` VALUES("5882", "14", "610", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5883", "14", "610", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5884", "14", "610", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5885", "14", "610", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5886", "14", "610", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5887", "8", "611", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5888", "8", "611", "14.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("5889", "8", "611", "15.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("5890", "8", "611", "6", "Christ Community Church; Christian Reformed Church; Victoria, B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("5891", "8", "611", "1.3", "Renee");
INSERT INTO `wp_gf_entry_meta` VALUES("5892", "8", "611", "1.6", "Vander Meulen");
INSERT INTO `wp_gf_entry_meta` VALUES("5893", "8", "611", "2", "renee.vander.meulen@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5894", "8", "611", "3.1", "4058 Copperfield Lane");
INSERT INTO `wp_gf_entry_meta` VALUES("5895", "8", "611", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5896", "8", "611", "3.4", "B.C.");
INSERT INTO `wp_gf_entry_meta` VALUES("5897", "8", "611", "3.5", "V8Z OA6");
INSERT INTO `wp_gf_entry_meta` VALUES("5898", "8", "611", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5899", "8", "611", "4", "(250) 893-9327");
INSERT INTO `wp_gf_entry_meta` VALUES("5900", "8", "611", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5901", "8", "611", "11.1", "Non-bursary option: cheque ($105 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5902", "14", "612", "1.3", "Samantha");
INSERT INTO `wp_gf_entry_meta` VALUES("5903", "14", "612", "1.6", "Proffitt");
INSERT INTO `wp_gf_entry_meta` VALUES("5904", "14", "612", "2", "1978-12-19");
INSERT INTO `wp_gf_entry_meta` VALUES("5905", "14", "612", "3", "(778) 533-0474");
INSERT INTO `wp_gf_entry_meta` VALUES("5906", "14", "612", "4", "Samantha.Proffitt@csc-scc.gc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5907", "14", "612", "11", "I live around the corner.");
INSERT INTO `wp_gf_entry_meta` VALUES("5908", "14", "612", "5", "My husband and I are experiencing a great deal of conflict and stress within our relationship.  My husband is mentally ill, which is an ongoing struggle, but I would prefer to have each of us present our sides of this struggle in person.  We have two young children and I am trying my absolutely best to keep the conflict from having a negative impact on them.");
INSERT INTO `wp_gf_entry_meta` VALUES("5909", "14", "612", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5910", "14", "612", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("5911", "14", "612", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5912", "14", "612", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("5913", "8", "613", "5.2", "myself and additional persons from the same congregation.");
INSERT INTO `wp_gf_entry_meta` VALUES("5914", "8", "613", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5915", "8", "613", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5916", "8", "613", "6", "Church of St Mary the Virgin, Oak Bay (Tolmie Region, Anglican Diocese of BC), 1701 Elgin Rd, Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5917", "8", "613", "1.3", "Craig");
INSERT INTO `wp_gf_entry_meta` VALUES("5918", "8", "613", "1.6", "Hiebert");
INSERT INTO `wp_gf_entry_meta` VALUES("5919", "8", "613", "2", "craig.hiebert@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5920", "8", "613", "3.1", "1701 Elgin Rd");
INSERT INTO `wp_gf_entry_meta` VALUES("5921", "8", "613", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5922", "8", "613", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5923", "8", "613", "3.5", "V8R5L7");
INSERT INTO `wp_gf_entry_meta` VALUES("5924", "8", "613", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5925", "8", "613", "4", "(250) 727-1328");
INSERT INTO `wp_gf_entry_meta` VALUES("5926", "8", "613", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_gf_entry_meta` VALUES("5927", "8", "613", "10", "Jane Anderson (basic)\r\nMary Creighton (advanced - prior training & experience, not South Island Centre)");
INSERT INTO `wp_gf_entry_meta` VALUES("5928", "8", "613", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5929", "8", "614", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("5930", "8", "614", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5931", "8", "614", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5932", "8", "614", "6", "St Philip Anglican Church\r\n2928 Eastdowne Road\r\nVictoria BC");
INSERT INTO `wp_gf_entry_meta` VALUES("5933", "8", "614", "1.3", "Sharon");
INSERT INTO `wp_gf_entry_meta` VALUES("5934", "8", "614", "1.6", "Richmond");
INSERT INTO `wp_gf_entry_meta` VALUES("5935", "8", "614", "2", "sharonlrichmond@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5936", "8", "614", "3.1", "2751 dewdney avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("5937", "8", "614", "3.3", "victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5938", "8", "614", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5939", "8", "614", "3.5", "V8R 3M3");
INSERT INTO `wp_gf_entry_meta` VALUES("5940", "8", "614", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5941", "8", "614", "4", "(250) 592-4073");
INSERT INTO `wp_gf_entry_meta` VALUES("5942", "8", "614", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5943", "8", "614", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5944", "8", "615", "5.2", "myself and additional persons from the same congregation.");
INSERT INTO `wp_gf_entry_meta` VALUES("5945", "8", "615", "14.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5946", "8", "615", "15.1", "yes");
INSERT INTO `wp_gf_entry_meta` VALUES("5947", "8", "615", "6", "St. George the Martyr,\r\nAnglican\r\n3909 St. George\'s Lane, Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5948", "8", "615", "1.3", "Veronica");
INSERT INTO `wp_gf_entry_meta` VALUES("5949", "8", "615", "1.6", "Druce");
INSERT INTO `wp_gf_entry_meta` VALUES("5950", "8", "615", "2", "vmdruce@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("5951", "8", "615", "3.1", "1068 Monterey Avenue,");
INSERT INTO `wp_gf_entry_meta` VALUES("5952", "8", "615", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5953", "8", "615", "3.4", "British Coliumbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5954", "8", "615", "3.5", "V8S 4V5");
INSERT INTO `wp_gf_entry_meta` VALUES("5955", "8", "615", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5956", "8", "615", "4", "(250) 598-1790");
INSERT INTO `wp_gf_entry_meta` VALUES("5957", "8", "615", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_gf_entry_meta` VALUES("5958", "8", "615", "10", "Sue Morrison - advanced\r\nMargaret Smart - advanced\r\nMarnie Bradfield - advanced");
INSERT INTO `wp_gf_entry_meta` VALUES("5959", "8", "615", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_gf_entry_meta` VALUES("5960", "8", "616", "5.2", "myself and additional persons from the same congregation.");
INSERT INTO `wp_gf_entry_meta` VALUES("5961", "8", "616", "14.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("5962", "8", "616", "6", "Victoria Alliance Church");
INSERT INTO `wp_gf_entry_meta` VALUES("5963", "8", "616", "1.3", "Rob");
INSERT INTO `wp_gf_entry_meta` VALUES("5964", "8", "616", "1.6", "Olsen");
INSERT INTO `wp_gf_entry_meta` VALUES("5965", "8", "616", "2", "pastor.robolsen@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5966", "8", "616", "3.1", "1792 Townley");
INSERT INTO `wp_gf_entry_meta` VALUES("5967", "8", "616", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5968", "8", "616", "3.4", "BB");
INSERT INTO `wp_gf_entry_meta` VALUES("5969", "8", "616", "3.5", "V8R 3A7");
INSERT INTO `wp_gf_entry_meta` VALUES("5970", "8", "616", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5971", "8", "616", "4", "(250) 744-0561");
INSERT INTO `wp_gf_entry_meta` VALUES("5972", "8", "616", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("5973", "8", "616", "10", "Cathy Stone\r\nGreg Stone");
INSERT INTO `wp_gf_entry_meta` VALUES("5974", "8", "616", "11.3", "Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)");
INSERT INTO `wp_gf_entry_meta` VALUES("5975", "3", "617", "1.3", "Sylvia");
INSERT INTO `wp_gf_entry_meta` VALUES("5976", "3", "617", "1.6", "May");
INSERT INTO `wp_gf_entry_meta` VALUES("5977", "3", "617", "2", "robsyl@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("5978", "3", "617", "3.1", "31-14 Erskine Lane");
INSERT INTO `wp_gf_entry_meta` VALUES("5979", "3", "617", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("5980", "3", "617", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("5981", "3", "617", "3.5", "V8Z7J7");
INSERT INTO `wp_gf_entry_meta` VALUES("5982", "3", "617", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("5983", "3", "617", "4", "(250) 213-7414");
INSERT INTO `wp_gf_entry_meta` VALUES("5984", "3", "617", "7", "Oct 19");
INSERT INTO `wp_gf_entry_meta` VALUES("5985", "3", "617", "5", "Living with Loss - Part 1");
INSERT INTO `wp_gf_entry_meta` VALUES("5986", "3", "617", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("5987", "14", "618", "1.3", "Megan");
INSERT INTO `wp_gf_entry_meta` VALUES("5988", "14", "618", "1.6", "Bilski");
INSERT INTO `wp_gf_entry_meta` VALUES("5989", "14", "618", "2", "07/07/1994");
INSERT INTO `wp_gf_entry_meta` VALUES("5990", "14", "618", "3", "(807) 621-0915");
INSERT INTO `wp_gf_entry_meta` VALUES("5991", "14", "618", "4", "meganbilski@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("5992", "14", "618", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("5993", "14", "618", "5", "I struggle with anxiety (generalized anxiety disorder, panic disorder) & depression. I have been to different counsellors over the years for talk therapy but would really like to start a therapy with more distinct goals. Something like CBT or DBT but I\'m open to anything that might help me.");
INSERT INTO `wp_gf_entry_meta` VALUES("5994", "14", "618", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("5995", "14", "618", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("5996", "14", "618", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("5997", "3", "619", "1.3", "Angela");
INSERT INTO `wp_gf_entry_meta` VALUES("5998", "3", "619", "1.6", "Bates");
INSERT INTO `wp_gf_entry_meta` VALUES("5999", "3", "619", "2", "vicladybug@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6000", "3", "619", "3.1", "4560 William Head Rd.");
INSERT INTO `wp_gf_entry_meta` VALUES("6001", "3", "619", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6002", "3", "619", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6003", "3", "619", "3.5", "V9C3Y6");
INSERT INTO `wp_gf_entry_meta` VALUES("6004", "3", "619", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6005", "3", "619", "4", "(250) 882-0734");
INSERT INTO `wp_gf_entry_meta` VALUES("6006", "3", "619", "7", "Oct 21/2017");
INSERT INTO `wp_gf_entry_meta` VALUES("6007", "3", "619", "5", "Making it work for teens for my son Mattias McDonald");
INSERT INTO `wp_gf_entry_meta` VALUES("6008", "3", "619", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6009", "8", "620", "5.1", "just myself");
INSERT INTO `wp_gf_entry_meta` VALUES("6010", "8", "620", "14.2", "no");
INSERT INTO `wp_gf_entry_meta` VALUES("6011", "8", "620", "1.3", "ANA MARIA");
INSERT INTO `wp_gf_entry_meta` VALUES("6012", "8", "620", "1.6", "MARIN");
INSERT INTO `wp_gf_entry_meta` VALUES("6013", "8", "620", "2", "pavonmarin@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6014", "8", "620", "3.1", "1869 SHAWNIGAN LAKE");
INSERT INTO `wp_gf_entry_meta` VALUES("6015", "8", "620", "3.3", "SHAWNIGAN LAKE");
INSERT INTO `wp_gf_entry_meta` VALUES("6016", "8", "620", "3.4", "BC");
INSERT INTO `wp_gf_entry_meta` VALUES("6017", "8", "620", "3.5", "VOR2WO");
INSERT INTO `wp_gf_entry_meta` VALUES("6018", "8", "620", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6019", "8", "620", "4", "(250) 216-5722");
INSERT INTO `wp_gf_entry_meta` VALUES("6020", "8", "620", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_gf_entry_meta` VALUES("6021", "8", "620", "11.3", "Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)");
INSERT INTO `wp_gf_entry_meta` VALUES("6022", "14", "621", "1.3", "Kainan");
INSERT INTO `wp_gf_entry_meta` VALUES("6023", "14", "621", "1.6", "Duggan");
INSERT INTO `wp_gf_entry_meta` VALUES("6024", "14", "621", "2", "September 30th 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("6025", "14", "621", "3", "(778) 350-1050");
INSERT INTO `wp_gf_entry_meta` VALUES("6026", "14", "621", "4", "qui.est@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6027", "14", "621", "11", "Previous patient for couples counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6028", "14", "621", "5", "Severe depression, suicidal thoughts, inability to function normally.");
INSERT INTO `wp_gf_entry_meta` VALUES("6029", "14", "621", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6030", "14", "621", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6031", "14", "621", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6032", "14", "621", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6033", "14", "621", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6034", "14", "622", "1.3", "Aaron and Christina");
INSERT INTO `wp_gf_entry_meta` VALUES("6035", "14", "622", "1.6", "Jones");
INSERT INTO `wp_gf_entry_meta` VALUES("6036", "14", "622", "2", "March 7 1973 and March 8 1978");
INSERT INTO `wp_gf_entry_meta` VALUES("6037", "14", "622", "3", "(250) 208-7388");
INSERT INTO `wp_gf_entry_meta` VALUES("6038", "14", "622", "4", "aaronjones29@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6039", "14", "622", "11", "I visited the centre to gather info");
INSERT INTO `wp_gf_entry_meta` VALUES("6040", "14", "622", "5", "We have been married for 13 years. We have two kids.  We have had communication issues. We both have had work stress and health issues. \r\nWe want to communicate better and resolve some issues. We need coping strategies.");
INSERT INTO `wp_gf_entry_meta` VALUES("6041", "14", "622", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6042", "14", "622", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6043", "14", "622", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("6044", "3", "623", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("6045", "3", "623", "1.6", "Fenimore");
INSERT INTO `wp_gf_entry_meta` VALUES("6046", "3", "623", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6047", "3", "623", "3.1", "2625 Avebury Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("6048", "3", "623", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6049", "3", "623", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6050", "3", "623", "3.5", "V8R 3W3");
INSERT INTO `wp_gf_entry_meta` VALUES("6051", "3", "623", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6052", "3", "623", "4", "(250) 477-7257");
INSERT INTO `wp_gf_entry_meta` VALUES("6053", "3", "623", "7", "Oct. 19, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("6054", "3", "623", "5", "Grief and Loss - Part 1");
INSERT INTO `wp_gf_entry_meta` VALUES("6055", "3", "623", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6056", "3", "624", "1.3", "Evelyn");
INSERT INTO `wp_gf_entry_meta` VALUES("6057", "3", "624", "1.6", "Savage");
INSERT INTO `wp_gf_entry_meta` VALUES("6058", "3", "624", "2", "cedar@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("6059", "3", "624", "3.1", "1723 Mamich Circle");
INSERT INTO `wp_gf_entry_meta` VALUES("6060", "3", "624", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6061", "3", "624", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6062", "3", "624", "3.5", "V8N 6M9");
INSERT INTO `wp_gf_entry_meta` VALUES("6063", "3", "624", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6064", "3", "624", "4", "(250) 479-0489");
INSERT INTO `wp_gf_entry_meta` VALUES("6065", "3", "624", "7", "Oct 19, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("6066", "3", "624", "5", "Living with Loss Part One");
INSERT INTO `wp_gf_entry_meta` VALUES("6067", "3", "624", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("6068", "14", "625", "1.3", "Kristin");
INSERT INTO `wp_gf_entry_meta` VALUES("6069", "14", "625", "1.6", "Devine");
INSERT INTO `wp_gf_entry_meta` VALUES("6070", "14", "625", "2", "December 17, 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("6071", "14", "625", "3", "(204) 509-2006");
INSERT INTO `wp_gf_entry_meta` VALUES("6072", "14", "625", "4", "krisdevine1991@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6073", "14", "625", "11", "Online google search");
INSERT INTO `wp_gf_entry_meta` VALUES("6074", "14", "625", "5", "I would like to find new ways to cope with my anxiety, mostly social anxiety. I would like to develop ways to practice being more assertive in my daily life. I would like to refrain from using drugs (cocaine) to help cope with anxiety.");
INSERT INTO `wp_gf_entry_meta` VALUES("6075", "14", "625", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6076", "14", "625", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6077", "14", "625", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6078", "14", "625", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6079", "14", "626", "1.3", "Melissa");
INSERT INTO `wp_gf_entry_meta` VALUES("6080", "14", "626", "1.6", "McKnight");
INSERT INTO `wp_gf_entry_meta` VALUES("6081", "14", "626", "2", "April 27 1979");
INSERT INTO `wp_gf_entry_meta` VALUES("6082", "14", "626", "3", "(250) 858-3407");
INSERT INTO `wp_gf_entry_meta` VALUES("6083", "14", "626", "4", "mckmel435@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6084", "14", "626", "11", "Pastor");
INSERT INTO `wp_gf_entry_meta` VALUES("6085", "14", "626", "5", "Anxiety following a family emergency .  Recurring memories and trouble sleeping.");
INSERT INTO `wp_gf_entry_meta` VALUES("6086", "14", "626", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6087", "14", "626", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6088", "14", "626", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6089", "14", "626", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("6090", "14", "627", "1.3", "Deanna");
INSERT INTO `wp_gf_entry_meta` VALUES("6091", "14", "627", "1.6", "Raffle");
INSERT INTO `wp_gf_entry_meta` VALUES("6092", "14", "627", "2", "October 11, 86");
INSERT INTO `wp_gf_entry_meta` VALUES("6093", "14", "627", "3", "(250) 507-3436");
INSERT INTO `wp_gf_entry_meta` VALUES("6094", "14", "627", "4", "Deannaraffle@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6095", "14", "627", "11", "Internet");
INSERT INTO `wp_gf_entry_meta` VALUES("6096", "14", "627", "5", "Anxiety, up and down moods, drinking");
INSERT INTO `wp_gf_entry_meta` VALUES("6097", "14", "627", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6098", "14", "627", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6099", "14", "627", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6100", "14", "627", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("6101", "14", "628", "1.3", "Nicolah");
INSERT INTO `wp_gf_entry_meta` VALUES("6102", "14", "628", "1.6", "Dinesen");
INSERT INTO `wp_gf_entry_meta` VALUES("6103", "14", "628", "2", "November 12th 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("6104", "14", "628", "3", "(250) 213-7374");
INSERT INTO `wp_gf_entry_meta` VALUES("6105", "14", "628", "4", "ndinesen1@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6106", "14", "628", "11", "Friend");
INSERT INTO `wp_gf_entry_meta` VALUES("6107", "14", "628", "5", "Anxiety and stress relating to family issues. Relationship problems with significant other.");
INSERT INTO `wp_gf_entry_meta` VALUES("6108", "14", "628", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6109", "14", "628", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6110", "14", "628", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("6111", "3", "629", "1.3", "Anneli");
INSERT INTO `wp_gf_entry_meta` VALUES("6112", "3", "629", "1.6", "Driessen");
INSERT INTO `wp_gf_entry_meta` VALUES("6113", "3", "629", "2", "annelid@telus.net");
INSERT INTO `wp_gf_entry_meta` VALUES("6114", "3", "629", "3.1", "1516 Louise Place");
INSERT INTO `wp_gf_entry_meta` VALUES("6115", "3", "629", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6116", "3", "629", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6117", "3", "629", "3.5", "V8P2T9");
INSERT INTO `wp_gf_entry_meta` VALUES("6118", "3", "629", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6119", "3", "629", "4", "(250) 472-0909");
INSERT INTO `wp_gf_entry_meta` VALUES("6120", "3", "629", "7", "October 28, 2017");
INSERT INTO `wp_gf_entry_meta` VALUES("6121", "3", "629", "5", "Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference");
INSERT INTO `wp_gf_entry_meta` VALUES("6122", "3", "629", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6123", "14", "630", "1.3", "Don");
INSERT INTO `wp_gf_entry_meta` VALUES("6124", "14", "630", "1.6", "Winsor");
INSERT INTO `wp_gf_entry_meta` VALUES("6125", "14", "630", "2", "May 4th 1961");
INSERT INTO `wp_gf_entry_meta` VALUES("6126", "14", "630", "3", "(778) 350-7001");
INSERT INTO `wp_gf_entry_meta` VALUES("6127", "14", "630", "4", "donwinsor@me.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6128", "14", "630", "11", "Island health");
INSERT INTO `wp_gf_entry_meta` VALUES("6129", "14", "630", "5", "PTSD \r\nPanic attacks \r\nAnxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("6130", "14", "630", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6131", "14", "630", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6132", "14", "630", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6133", "14", "630", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6134", "14", "631", "1.3", "Jessica");
INSERT INTO `wp_gf_entry_meta` VALUES("6135", "14", "631", "1.6", "Fram");
INSERT INTO `wp_gf_entry_meta` VALUES("6136", "14", "631", "2", "March 10, 1987");
INSERT INTO `wp_gf_entry_meta` VALUES("6137", "14", "631", "3", "(416) 520-7538");
INSERT INTO `wp_gf_entry_meta` VALUES("6138", "14", "631", "4", "jessfram@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6139", "14", "631", "11", "Google search");
INSERT INTO `wp_gf_entry_meta` VALUES("6140", "14", "631", "5", "Unrelenting depression, hopelessness about my future, many/most times wishing there wasn\'t a future. Have been single for 4 years, no friends, social anxiety. Re-traumatized by all the sex abuse things in the news. I was \"date raped\" at 16 years of age. In the last few months I have had a strong sexual aversion. If people would even kiss in a movie I would be disgusted and have to fast forward. I currently work part time, am underemployed and dislike my job. I suffer from Crohns and Colitis. I am also dealing with pure O of OCD which seems to be getting worse in the form of panic attacks and nightmares. I could write more but that would be overwhelming.");
INSERT INTO `wp_gf_entry_meta` VALUES("6141", "14", "631", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6142", "14", "631", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6143", "14", "631", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6144", "14", "631", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6145", "14", "631", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6146", "14", "631", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6147", "14", "632", "1.3", "Filippa");
INSERT INTO `wp_gf_entry_meta` VALUES("6148", "14", "632", "1.6", "Bahrke");
INSERT INTO `wp_gf_entry_meta` VALUES("6149", "14", "632", "2", "13/02/1992");
INSERT INTO `wp_gf_entry_meta` VALUES("6150", "14", "632", "3", "(778) 584-1155");
INSERT INTO `wp_gf_entry_meta` VALUES("6151", "14", "632", "4", "filippabahrke@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6152", "14", "632", "11", "from someone going into counsellor training");
INSERT INTO `wp_gf_entry_meta` VALUES("6153", "14", "632", "5", "I have experienced symptoms of depression back and forth for some time, and am currently in a rather dark place. I have previously seen counsellors and found that a constructive approach to breaking negative thought patterns helps. I\'m hoping I can be elegible although I am not (yet) a Canadian citizen.");
INSERT INTO `wp_gf_entry_meta` VALUES("6154", "14", "632", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6155", "14", "632", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6156", "14", "632", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6157", "14", "632", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6158", "14", "632", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6159", "14", "633", "1.3", "Lauren");
INSERT INTO `wp_gf_entry_meta` VALUES("6160", "14", "633", "1.6", "Williams");
INSERT INTO `wp_gf_entry_meta` VALUES("6161", "14", "633", "2", "May 14, 1979");
INSERT INTO `wp_gf_entry_meta` VALUES("6162", "14", "633", "3", "(250) 385-0996");
INSERT INTO `wp_gf_entry_meta` VALUES("6163", "14", "633", "4", "sparkygirl1989@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6164", "14", "633", "11", "Have attended in the past.");
INSERT INTO `wp_gf_entry_meta` VALUES("6165", "14", "633", "5", "I\'m actually looking for counselling for my husband and I together. We have communication issues that I feel we cannot work through by ourselves and I\'m looking for someone to help us.\r\nWe are available anytime after 3:30 Monday, Tuesday, Thursday, Friday.");
INSERT INTO `wp_gf_entry_meta` VALUES("6166", "14", "633", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6167", "14", "633", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6168", "14", "633", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6169", "14", "633", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("6170", "14", "634", "1.3", "Anne-Sophie");
INSERT INTO `wp_gf_entry_meta` VALUES("6171", "14", "634", "1.6", "Corriveau");
INSERT INTO `wp_gf_entry_meta` VALUES("6172", "14", "634", "2", "Feb 18 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("6173", "14", "634", "3", "(418) 805-2676");
INSERT INTO `wp_gf_entry_meta` VALUES("6174", "14", "634", "4", "anne_so156@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6175", "14", "634", "11", "Doctor");
INSERT INTO `wp_gf_entry_meta` VALUES("6176", "14", "634", "5", "Feeling depressed for the last tow years, was hoping that time and change in my life would help, but still struggling.");
INSERT INTO `wp_gf_entry_meta` VALUES("6177", "14", "634", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6178", "14", "634", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6179", "14", "634", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6180", "14", "634", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6181", "14", "635", "1.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6182", "14", "635", "1.6", "Gagnon");
INSERT INTO `wp_gf_entry_meta` VALUES("6183", "14", "635", "2", "Nov 5 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("6184", "14", "635", "3", "(250) 802-3637");
INSERT INTO `wp_gf_entry_meta` VALUES("6185", "14", "635", "4", "vlgagnon@uvic.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6186", "14", "635", "11", "Internet search");
INSERT INTO `wp_gf_entry_meta` VALUES("6187", "14", "635", "5", "Fear of presentations in classes (civil engineering bach) to the point where I feel like I should drop out, social anxiety, hopelessness, fear of abandonment (my dad committed suicide when I was 14)");
INSERT INTO `wp_gf_entry_meta` VALUES("6188", "14", "635", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6189", "14", "635", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6190", "14", "635", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6191", "14", "635", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6192", "14", "636", "1.3", "Katherine");
INSERT INTO `wp_gf_entry_meta` VALUES("6193", "14", "636", "1.6", "Andrews");
INSERT INTO `wp_gf_entry_meta` VALUES("6194", "14", "636", "2", "Feb 10 1972");
INSERT INTO `wp_gf_entry_meta` VALUES("6195", "14", "636", "3", "(258) 896-1182");
INSERT INTO `wp_gf_entry_meta` VALUES("6196", "14", "636", "4", "Kleeandrews@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6197", "14", "636", "11", "Web");
INSERT INTO `wp_gf_entry_meta` VALUES("6198", "14", "636", "5", "Test anxiety \r\nTrust issues\r\nHistory of ptsd /clinical depression\r\nM to Friday between 8 and 1 preferred");
INSERT INTO `wp_gf_entry_meta` VALUES("6199", "14", "636", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6200", "14", "636", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6201", "14", "636", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6202", "14", "637", "1.3", "Ashley");
INSERT INTO `wp_gf_entry_meta` VALUES("6203", "14", "637", "1.6", "Rolland");
INSERT INTO `wp_gf_entry_meta` VALUES("6204", "14", "637", "2", "May 18 1997");
INSERT INTO `wp_gf_entry_meta` VALUES("6205", "14", "637", "3", "(778) 938-8607");
INSERT INTO `wp_gf_entry_meta` VALUES("6206", "14", "637", "4", "ashleyrolland17@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6207", "14", "637", "11", "Through my doctor.");
INSERT INTO `wp_gf_entry_meta` VALUES("6208", "14", "637", "5", "Need an up to date mental health assessment and weekly counselling. Diagnosed depression and anxiety disorders. \r\n\r\nWould like to get tested for and discuss mood disorders as I\'ve I am having difficulty controlling my emotions and have family history of BPD and bipolar disorder. \r\n\r\nI am not interested in medication.");
INSERT INTO `wp_gf_entry_meta` VALUES("6209", "14", "637", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6210", "14", "637", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6211", "14", "637", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6212", "14", "637", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6213", "14", "638", "1.3", "Heather");
INSERT INTO `wp_gf_entry_meta` VALUES("6214", "14", "638", "1.6", "Storie");
INSERT INTO `wp_gf_entry_meta` VALUES("6215", "14", "638", "2", "March 23 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("6216", "14", "638", "3", "(250) 858-1379");
INSERT INTO `wp_gf_entry_meta` VALUES("6217", "14", "638", "4", "heatheraudralynn@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6218", "14", "638", "11", "VIHA Mental Health Referral");
INSERT INTO `wp_gf_entry_meta` VALUES("6219", "14", "638", "5", "I experienced a traumatic event in the summer and have ptsd as a result. I need support to work through my symptoms and regain my quality of life before my attack.");
INSERT INTO `wp_gf_entry_meta` VALUES("6220", "14", "638", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6221", "14", "638", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6222", "14", "638", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6223", "14", "638", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6224", "14", "639", "1.3", "Dan");
INSERT INTO `wp_gf_entry_meta` VALUES("6225", "14", "639", "1.6", "Hickman");
INSERT INTO `wp_gf_entry_meta` VALUES("6226", "14", "639", "2", "17 July 1955");
INSERT INTO `wp_gf_entry_meta` VALUES("6227", "14", "639", "3", "(250) 893-2940");
INSERT INTO `wp_gf_entry_meta` VALUES("6228", "14", "639", "4", "LtDan@Mail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6229", "14", "639", "11", "Shelbourne Street Church of Christ");
INSERT INTO `wp_gf_entry_meta` VALUES("6230", "14", "639", "5", "dealing with memory of former church leader.");
INSERT INTO `wp_gf_entry_meta` VALUES("6231", "14", "639", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6232", "14", "639", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6233", "14", "639", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6234", "14", "639", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("6235", "14", "640", "1.3", "Lucas");
INSERT INTO `wp_gf_entry_meta` VALUES("6236", "14", "640", "1.6", "Girouard-Stranks");
INSERT INTO `wp_gf_entry_meta` VALUES("6237", "14", "640", "2", "August 25th 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("6238", "14", "640", "3", "(250) 306-2587");
INSERT INTO `wp_gf_entry_meta` VALUES("6239", "14", "640", "4", "lustranks@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6240", "14", "640", "11", "Doctor.");
INSERT INTO `wp_gf_entry_meta` VALUES("6241", "14", "640", "5", "Major depression; worldview.");
INSERT INTO `wp_gf_entry_meta` VALUES("6242", "14", "640", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6243", "14", "640", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6244", "14", "640", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6245", "14", "641", "1.3", "Megan");
INSERT INTO `wp_gf_entry_meta` VALUES("6246", "14", "641", "1.6", "Schulz");
INSERT INTO `wp_gf_entry_meta` VALUES("6247", "14", "641", "2", "March 24, 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("6248", "14", "641", "3", "(778) 899-9234");
INSERT INTO `wp_gf_entry_meta` VALUES("6249", "14", "641", "4", "mjs.schulz@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6250", "14", "641", "11", "From a friend");
INSERT INTO `wp_gf_entry_meta` VALUES("6251", "14", "641", "5", "Depression, grief, anger. I would like to see Jennifer Cole (counsellor) please.");
INSERT INTO `wp_gf_entry_meta` VALUES("6252", "14", "641", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6253", "14", "641", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6254", "14", "641", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6255", "14", "641", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6256", "14", "641", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("6257", "14", "642", "1.3", "Glen");
INSERT INTO `wp_gf_entry_meta` VALUES("6258", "14", "642", "1.6", "Williams");
INSERT INTO `wp_gf_entry_meta` VALUES("6259", "14", "642", "2", "February 15th, 1985");
INSERT INTO `wp_gf_entry_meta` VALUES("6260", "14", "642", "3", "(778) 350-0729");
INSERT INTO `wp_gf_entry_meta` VALUES("6261", "14", "642", "4", "gjwilliams1585@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6262", "14", "642", "11", "Referral");
INSERT INTO `wp_gf_entry_meta` VALUES("6263", "14", "642", "5", "Plenty of concerns regarding how Iâ€™ve managed being adopted and the secret of said adoption within my family and my upbringing. Plus Iâ€™m expecting my first child with my partner which I love to pieces but we argue to a point that makes me believe counselling is needed for myself or for us collectively.");
INSERT INTO `wp_gf_entry_meta` VALUES("6264", "14", "642", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6265", "14", "642", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6266", "14", "642", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6267", "14", "643", "1.3", "JoHanna");
INSERT INTO `wp_gf_entry_meta` VALUES("6268", "14", "643", "1.6", "Berginc");
INSERT INTO `wp_gf_entry_meta` VALUES("6269", "14", "643", "2", "September 17. 1999");
INSERT INTO `wp_gf_entry_meta` VALUES("6270", "14", "643", "3", "(250) 661-4387");
INSERT INTO `wp_gf_entry_meta` VALUES("6271", "14", "643", "4", "jojo.berginc@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6272", "14", "643", "11", "Through a Google search for Youth counsellors");
INSERT INTO `wp_gf_entry_meta` VALUES("6273", "14", "643", "5", "Social Anxiety, Depression, academic pressure, relationship advice (how to maintain healthy relationships and fix existing problems), self image/esteem, coping mechanisms for early childhood trauma, coping mechanisms for panic attacks.");
INSERT INTO `wp_gf_entry_meta` VALUES("6274", "14", "643", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6275", "14", "643", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6276", "14", "643", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6277", "14", "643", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6278", "14", "644", "1.3", "Rhonda");
INSERT INTO `wp_gf_entry_meta` VALUES("6279", "14", "644", "1.6", "Kirwan");
INSERT INTO `wp_gf_entry_meta` VALUES("6280", "14", "644", "2", "Jan 11 1964");
INSERT INTO `wp_gf_entry_meta` VALUES("6281", "14", "644", "3", "(250) 896-9018");
INSERT INTO `wp_gf_entry_meta` VALUES("6282", "14", "644", "4", "rlmkrhonda@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6283", "14", "644", "11", "Dr. Referal");
INSERT INTO `wp_gf_entry_meta` VALUES("6284", "14", "644", "5", "Iâ€™m 5yrs into relationship, 1.5yr married. Also itâ€™s been 2yrs since I met my birth sister. She is older was adopted before my birth, now found me, now lives in Victoria from Ont. 6mths... she moved in with us till , a huge fight between she and my partner, they do not get along, Iâ€™m caught in the middle and need help with setting boundaries, what are appropriate boundaries for my situation. Iâ€™m recovering from PTSD brought on by three MVAâ€™s in 9mths, 6yr ago, compounding long term childhood incest. Stress is daily.... I have had a lot of counseling on and off over the past 30 yrs.");
INSERT INTO `wp_gf_entry_meta` VALUES("6285", "14", "644", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6286", "14", "644", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6287", "14", "644", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6288", "14", "644", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6289", "14", "644", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("6290", "14", "645", "1.3", "Jennie");
INSERT INTO `wp_gf_entry_meta` VALUES("6291", "14", "645", "1.6", "Bartosik");
INSERT INTO `wp_gf_entry_meta` VALUES("6292", "14", "645", "2", "March 20, 1984");
INSERT INTO `wp_gf_entry_meta` VALUES("6293", "14", "645", "3", "(778) 677-5307");
INSERT INTO `wp_gf_entry_meta` VALUES("6294", "14", "645", "4", "jenniebartosik@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6295", "14", "645", "11", "Sign");
INSERT INTO `wp_gf_entry_meta` VALUES("6296", "14", "645", "5", "I believe I may have Body-Focused Repetitive Behavior (a habit in which I constantly pick at skin imperfections). From what I\'ve read it may be a form of OCD. I don\'t know but it is interfering with my life and I\'d like to stop. \r\n\r\nI am available Tuesdays or Wednesdays between 9:30am and 2pm.");
INSERT INTO `wp_gf_entry_meta` VALUES("6297", "14", "645", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6298", "14", "645", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6299", "14", "645", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6300", "14", "646", "1.3", "Juanito");
INSERT INTO `wp_gf_entry_meta` VALUES("6301", "14", "646", "1.6", "Santos de Dios");
INSERT INTO `wp_gf_entry_meta` VALUES("6302", "14", "646", "2", "July 12, 1947");
INSERT INTO `wp_gf_entry_meta` VALUES("6303", "14", "646", "3", "(250) 580-0486");
INSERT INTO `wp_gf_entry_meta` VALUES("6304", "14", "646", "4", "revjcsd@juno.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6305", "14", "646", "11", "Referred by Gillian Hoyer");
INSERT INTO `wp_gf_entry_meta` VALUES("6306", "14", "646", "5", "Symptoms of depressive illness");
INSERT INTO `wp_gf_entry_meta` VALUES("6307", "14", "646", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6308", "14", "646", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6309", "14", "646", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6310", "14", "646", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6311", "14", "646", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6312", "14", "647", "1.3", "Erin");
INSERT INTO `wp_gf_entry_meta` VALUES("6313", "14", "647", "1.6", "Clair");
INSERT INTO `wp_gf_entry_meta` VALUES("6314", "14", "647", "2", "August 3, 1982");
INSERT INTO `wp_gf_entry_meta` VALUES("6315", "14", "647", "3", "(250) 686-9477");
INSERT INTO `wp_gf_entry_meta` VALUES("6316", "14", "647", "4", "erin82clair@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6317", "14", "647", "11", "Family doctor");
INSERT INTO `wp_gf_entry_meta` VALUES("6318", "14", "647", "5", "Mild depression, moderate alcohol and substance concerns");
INSERT INTO `wp_gf_entry_meta` VALUES("6319", "14", "647", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6320", "14", "647", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6321", "14", "647", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6322", "14", "647", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6323", "14", "648", "1.3", "Sophia");
INSERT INTO `wp_gf_entry_meta` VALUES("6324", "14", "648", "1.6", "Siegel");
INSERT INTO `wp_gf_entry_meta` VALUES("6325", "14", "648", "2", "02/14/69");
INSERT INTO `wp_gf_entry_meta` VALUES("6326", "14", "648", "3", "(250) 514-1214");
INSERT INTO `wp_gf_entry_meta` VALUES("6327", "14", "648", "4", "sophiasiegel@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6328", "14", "648", "11", "referral (from Prince George) for Greg Beattie");
INSERT INTO `wp_gf_entry_meta` VALUES("6329", "14", "648", "5", "Anxiety/Depression due to external factors (separation) mainly.\r\nGreg Beattie comes highly recommended to me.");
INSERT INTO `wp_gf_entry_meta` VALUES("6330", "14", "648", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6331", "14", "648", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6332", "14", "648", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6333", "14", "648", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("6334", "14", "649", "1.3", "Elizabeth");
INSERT INTO `wp_gf_entry_meta` VALUES("6335", "14", "649", "1.6", "Walker");
INSERT INTO `wp_gf_entry_meta` VALUES("6336", "14", "649", "2", "December 2, 1995");
INSERT INTO `wp_gf_entry_meta` VALUES("6337", "14", "649", "3", "(778) 977-5466");
INSERT INTO `wp_gf_entry_meta` VALUES("6338", "14", "649", "4", "Liz.walker@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6339", "14", "649", "11", "Recommended by family life coordinator at our church");
INSERT INTO `wp_gf_entry_meta` VALUES("6340", "14", "649", "5", "Looking for couples counselling. \r\nOur present concerns are communication, commitment, intimacy and happiness");
INSERT INTO `wp_gf_entry_meta` VALUES("6341", "14", "649", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6342", "14", "649", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6343", "14", "649", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("6344", "14", "649", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("6345", "14", "650", "1.3", "Jennifer");
INSERT INTO `wp_gf_entry_meta` VALUES("6346", "14", "650", "1.6", "Naunheimer");
INSERT INTO `wp_gf_entry_meta` VALUES("6347", "14", "650", "2", "June 13, 1974");
INSERT INTO `wp_gf_entry_meta` VALUES("6348", "14", "650", "3", "(250) 889-0182");
INSERT INTO `wp_gf_entry_meta` VALUES("6349", "14", "650", "4", "jnaunheimer@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6350", "14", "650", "11", "Internet");
INSERT INTO `wp_gf_entry_meta` VALUES("6351", "14", "650", "5", "Family unity is our desired outcome. Presently, we have respect issues, resentment, and anger rule our home.  Unkind words are said, and behaviour remains unchanged for all parties.   My older son has anxiety issues that impact his health and well-being.  My younger son is unhappy, and will not divulge his concerns to me - only to his brother, if at all. I am in the grips of a major depressive episode and have anger and anxiety issues as well. There has been a lot of grief to process as well, with the loss of both of my parents, and my brother over the past 5 years.  Faking it isn\'t working anymore and we need help working our way back to peace and some semblance of peace.");
INSERT INTO `wp_gf_entry_meta` VALUES("6352", "14", "650", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6353", "14", "650", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6354", "14", "650", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6355", "14", "650", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6356", "14", "650", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6357", "14", "651", "1.3", "Jada");
INSERT INTO `wp_gf_entry_meta` VALUES("6358", "14", "651", "1.6", "Belleau");
INSERT INTO `wp_gf_entry_meta` VALUES("6359", "14", "651", "2", "June 29, 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("6360", "14", "651", "3", "(250) 891-4165");
INSERT INTO `wp_gf_entry_meta` VALUES("6361", "14", "651", "4", "j.belleau@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6362", "14", "651", "11", "through a friend");
INSERT INTO `wp_gf_entry_meta` VALUES("6363", "14", "651", "5", "anxiety, depression,");
INSERT INTO `wp_gf_entry_meta` VALUES("6364", "14", "651", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6365", "14", "651", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6366", "14", "651", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6367", "14", "651", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6368", "14", "651", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6369", "3", "652", "1.3", "Charles");
INSERT INTO `wp_gf_entry_meta` VALUES("6370", "3", "652", "1.6", "Cheyne");
INSERT INTO `wp_gf_entry_meta` VALUES("6371", "3", "652", "2", "bedrunnisaerkinel@sweethome.ga");
INSERT INTO `wp_gf_entry_meta` VALUES("6372", "3", "652", "3.1", "2734 43rd Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("6373", "3", "652", "3.3", "Joussard");
INSERT INTO `wp_gf_entry_meta` VALUES("6374", "3", "652", "3.4", "Newfoundland &amp; Labrador");
INSERT INTO `wp_gf_entry_meta` VALUES("6375", "3", "652", "3.5", "Y1y 1y1");
INSERT INTO `wp_gf_entry_meta` VALUES("6376", "3", "652", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6377", "3", "652", "4", "(780) 776-2101");
INSERT INTO `wp_gf_entry_meta` VALUES("6378", "3", "652", "7", "LE");
INSERT INTO `wp_gf_entry_meta` VALUES("6379", "3", "652", "5", "The Correct Wedding Etiquette On wedding Event Day");
INSERT INTO `wp_gf_entry_meta` VALUES("6380", "3", "652", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("6381", "3", "652", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6382", "3", "652", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6383", "14", "653", "1.3", "Edna");
INSERT INTO `wp_gf_entry_meta` VALUES("6384", "14", "653", "1.6", "Shaw");
INSERT INTO `wp_gf_entry_meta` VALUES("6385", "14", "653", "2", "July 6, 1963");
INSERT INTO `wp_gf_entry_meta` VALUES("6386", "14", "653", "3", "(250) 544-1271");
INSERT INTO `wp_gf_entry_meta` VALUES("6387", "14", "653", "4", "ednashaw@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6388", "14", "653", "11", "Fr. Rolf Hasenack , Saanich Peninsula Parish Priest");
INSERT INTO `wp_gf_entry_meta` VALUES("6389", "14", "653", "5", "My husband & I have marital issues.\r\nWe are working on moving towards being together but have questions on how to proceed with our living arrangement .");
INSERT INTO `wp_gf_entry_meta` VALUES("6390", "14", "653", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6391", "14", "653", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6392", "14", "653", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("6393", "14", "654", "1.3", "Joan");
INSERT INTO `wp_gf_entry_meta` VALUES("6394", "14", "654", "1.6", "Duckett");
INSERT INTO `wp_gf_entry_meta` VALUES("6395", "14", "654", "2", "February 9, 1955");
INSERT INTO `wp_gf_entry_meta` VALUES("6396", "14", "654", "3", "(250) 381-2560");
INSERT INTO `wp_gf_entry_meta` VALUES("6397", "14", "654", "4", "Joan.duckett@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6398", "14", "654", "11", "Church newspaper");
INSERT INTO `wp_gf_entry_meta` VALUES("6399", "14", "654", "5", "Life stage changes, childhood issues, relationship oncerns.  When reading the counsellors\' bios, I thought Barbara  Baillie would be a good fit.");
INSERT INTO `wp_gf_entry_meta` VALUES("6400", "14", "654", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6401", "14", "654", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6402", "14", "654", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("6403", "14", "655", "1.3", "Scott");
INSERT INTO `wp_gf_entry_meta` VALUES("6404", "14", "655", "1.6", "Matthews");
INSERT INTO `wp_gf_entry_meta` VALUES("6405", "14", "655", "2", "July 13, 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("6406", "14", "655", "3", "(250) 208-8836");
INSERT INTO `wp_gf_entry_meta` VALUES("6407", "14", "655", "4", "scmatthews@live.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6408", "14", "655", "11", "Google Search");
INSERT INTO `wp_gf_entry_meta` VALUES("6409", "14", "655", "5", "Stress and anxiety management, self-esteem issues, family relationship conflicts, career and life path concerns");
INSERT INTO `wp_gf_entry_meta` VALUES("6410", "14", "655", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6411", "14", "655", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6412", "14", "655", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6413", "14", "655", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6414", "14", "656", "1.3", "Evan");
INSERT INTO `wp_gf_entry_meta` VALUES("6415", "14", "656", "1.6", "Foulds");
INSERT INTO `wp_gf_entry_meta` VALUES("6416", "14", "656", "2", "06/19/992");
INSERT INTO `wp_gf_entry_meta` VALUES("6417", "14", "656", "3", "(250) 885-1234");
INSERT INTO `wp_gf_entry_meta` VALUES("6418", "14", "656", "4", "efoulds@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6419", "14", "656", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("6420", "14", "656", "5", "Childhood abuse trauma anxiety, depression");
INSERT INTO `wp_gf_entry_meta` VALUES("6421", "14", "656", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6422", "14", "656", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6423", "14", "656", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6424", "14", "656", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6425", "14", "657", "1.3", "Robyn");
INSERT INTO `wp_gf_entry_meta` VALUES("6426", "14", "657", "1.6", "Mollena");
INSERT INTO `wp_gf_entry_meta` VALUES("6427", "14", "657", "2", "December 17th 1997");
INSERT INTO `wp_gf_entry_meta` VALUES("6428", "14", "657", "3", "(604) 300-4957");
INSERT INTO `wp_gf_entry_meta` VALUES("6429", "14", "657", "4", "Kama_mollena@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6430", "14", "657", "11", "Searching google");
INSERT INTO `wp_gf_entry_meta` VALUES("6431", "14", "657", "5", "Stress and anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("6432", "14", "657", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6433", "14", "657", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6434", "14", "657", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6435", "14", "657", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6436", "14", "657", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6437", "14", "657", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6438", "14", "657", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("6439", "14", "657", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6440", "14", "658", "1.3", "Lisa");
INSERT INTO `wp_gf_entry_meta` VALUES("6441", "14", "658", "1.6", "Kent");
INSERT INTO `wp_gf_entry_meta` VALUES("6442", "14", "658", "2", "Oct 7, 1962");
INSERT INTO `wp_gf_entry_meta` VALUES("6443", "14", "658", "3", "(250) 588-3876");
INSERT INTO `wp_gf_entry_meta` VALUES("6444", "14", "658", "4", "noticebyorder@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6445", "14", "658", "11", "Victoria mental health");
INSERT INTO `wp_gf_entry_meta` VALUES("6446", "14", "658", "5", "Depression, anxiety, stress");
INSERT INTO `wp_gf_entry_meta` VALUES("6447", "14", "658", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6448", "14", "658", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6449", "14", "658", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6450", "14", "659", "1.3", "Maria");
INSERT INTO `wp_gf_entry_meta` VALUES("6451", "14", "659", "1.6", "Lironi");
INSERT INTO `wp_gf_entry_meta` VALUES("6452", "14", "659", "2", "Aug 21, 1963");
INSERT INTO `wp_gf_entry_meta` VALUES("6453", "14", "659", "3", "(778) 977-8618");
INSERT INTO `wp_gf_entry_meta` VALUES("6454", "14", "659", "4", "redmango99@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6455", "14", "659", "11", "From your client Daniel Allen");
INSERT INTO `wp_gf_entry_meta` VALUES("6456", "14", "659", "5", "Hello,\r\n\r\nMy friend Daniel recommended Margaret to me. I have experienced a number of losses this year--my father died, then my mentor, and then my counsellor. My grief is complicated by the fact that I have bipolar disorder, and I have been severely depressed and unable to work since February.");
INSERT INTO `wp_gf_entry_meta` VALUES("6457", "14", "659", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6458", "14", "659", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6459", "14", "659", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6460", "14", "659", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6461", "14", "659", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6462", "14", "660", "1.3", "Apryl");
INSERT INTO `wp_gf_entry_meta` VALUES("6463", "14", "660", "1.6", "Sweenie");
INSERT INTO `wp_gf_entry_meta` VALUES("6464", "14", "660", "2", "11/28/97");
INSERT INTO `wp_gf_entry_meta` VALUES("6465", "14", "660", "3", "(250) 812-3430");
INSERT INTO `wp_gf_entry_meta` VALUES("6466", "14", "660", "4", "Apryl190@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6467", "14", "660", "11", "Web");
INSERT INTO `wp_gf_entry_meta` VALUES("6468", "14", "660", "5", "Iâ€™ve seen a few Counsellors in the past, and have been working with my doctor since May 2017 to find someone affordable that I can continue to see. I have been diagnosed with Anxiety, depression and PTSD in the past. I was on Citalopram for a year and a half, and successfully was off prescription meds for almost 10 months. Recently I have gone back into antidepressants, as my luck finding a Counsellor is not working well. I am finding life hard to cope, and missed a lot of work due to depression and anxiety. I used to be a competitive horseback rider, but last year I lost my horse that I rescued due to colic. I havenâ€™t been able to go to the barn and see my other horse, or ever ride since then. I have constant dreams where I can see events from the night he died over and over. In September, a close friend to me died in a motorcycle accident, and it extremely affected me to the point of getting night terrors again, losing lots weight from stress, and quitting my job. My boyfriend and I also had to move out of our home due to mold on Boxing Day, and currently are living in a hotel. I am always stressed and in an agitated mood. I am wanting to be able to work through this and these feelings so I can live a semi â€œnormalâ€ life again.");
INSERT INTO `wp_gf_entry_meta` VALUES("6469", "14", "660", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6470", "14", "660", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6471", "14", "660", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6472", "14", "660", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6473", "14", "661", "1.3", "Elli");
INSERT INTO `wp_gf_entry_meta` VALUES("6474", "14", "661", "1.6", "Reilander");
INSERT INTO `wp_gf_entry_meta` VALUES("6475", "14", "661", "2", "Jan 16, 1985");
INSERT INTO `wp_gf_entry_meta` VALUES("6476", "14", "661", "3", "(778) 888-6492");
INSERT INTO `wp_gf_entry_meta` VALUES("6477", "14", "661", "4", "elli.reilander@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6478", "14", "661", "11", "friend recently used your services");
INSERT INTO `wp_gf_entry_meta` VALUES("6479", "14", "661", "5", "grief, anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("6480", "14", "661", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6481", "14", "661", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6482", "14", "661", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6483", "14", "661", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6484", "14", "662", "1.3", "Marie");
INSERT INTO `wp_gf_entry_meta` VALUES("6485", "14", "662", "1.6", "Draper");
INSERT INTO `wp_gf_entry_meta` VALUES("6486", "14", "662", "2", "August 13, 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("6487", "14", "662", "3", "(778) 679-1428");
INSERT INTO `wp_gf_entry_meta` VALUES("6488", "14", "662", "4", "mariepdraper@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6489", "14", "662", "11", "Urgent Short Term Assessment and Treatment");
INSERT INTO `wp_gf_entry_meta` VALUES("6490", "14", "662", "5", "I am looking to receive CBT to help manage some generalized anxiety and negative thought patterns");
INSERT INTO `wp_gf_entry_meta` VALUES("6491", "14", "662", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6492", "14", "662", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6493", "14", "662", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6494", "14", "662", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6495", "14", "663", "1.3", "Marita");
INSERT INTO `wp_gf_entry_meta` VALUES("6496", "14", "663", "1.6", "Lindenbach");
INSERT INTO `wp_gf_entry_meta` VALUES("6497", "14", "663", "2", "December 5th, 1997");
INSERT INTO `wp_gf_entry_meta` VALUES("6498", "14", "663", "3", "(000) 000-0000");
INSERT INTO `wp_gf_entry_meta` VALUES("6499", "14", "663", "4", "marita.lindenbach@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6500", "14", "663", "11", "Pastor");
INSERT INTO `wp_gf_entry_meta` VALUES("6501", "14", "663", "5", "Anxiety\r\nSelf-Esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("6502", "14", "663", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6503", "14", "663", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6504", "14", "663", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6505", "18", "664", "1.3", "TEST");
INSERT INTO `wp_gf_entry_meta` VALUES("6506", "18", "664", "1.6", "Test");
INSERT INTO `wp_gf_entry_meta` VALUES("6507", "18", "664", "2", "leaf.p@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6508", "18", "664", "3.1", "111 XXX Rd E");
INSERT INTO `wp_gf_entry_meta` VALUES("6509", "18", "664", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6510", "18", "664", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6511", "18", "664", "3.5", "V9A1A6");
INSERT INTO `wp_gf_entry_meta` VALUES("6512", "18", "664", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6513", "18", "664", "4", "(111) 111-1111");
INSERT INTO `wp_gf_entry_meta` VALUES("6514", "18", "664", "7", "01-01-2018");
INSERT INTO `wp_gf_entry_meta` VALUES("6515", "18", "664", "5", "Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team");
INSERT INTO `wp_gf_entry_meta` VALUES("6516", "18", "664", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6517", "3", "665", "1.3", "Heather");
INSERT INTO `wp_gf_entry_meta` VALUES("6518", "3", "665", "1.6", "Prendergast");
INSERT INTO `wp_gf_entry_meta` VALUES("6519", "3", "665", "2", "heather.hpconsult@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6520", "3", "665", "3.1", "Apt. 328");
INSERT INTO `wp_gf_entry_meta` VALUES("6521", "3", "665", "3.3", "984 McKenzie Avenue");
INSERT INTO `wp_gf_entry_meta` VALUES("6522", "3", "665", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6523", "3", "665", "3.5", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6524", "3", "665", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6525", "3", "665", "4", "(250) 812-3100");
INSERT INTO `wp_gf_entry_meta` VALUES("6526", "3", "665", "7", "January 18, 2018");
INSERT INTO `wp_gf_entry_meta` VALUES("6527", "3", "665", "5", "Pastoral Care Team Training Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("6528", "3", "665", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("6529", "3", "666", "1.3", "Patti");
INSERT INTO `wp_gf_entry_meta` VALUES("6530", "3", "666", "1.6", "Dobroski");
INSERT INTO `wp_gf_entry_meta` VALUES("6531", "3", "666", "2", "pattido@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6532", "3", "666", "3.1", "4553");
INSERT INTO `wp_gf_entry_meta` VALUES("6533", "3", "666", "3.3", "Pheasantwood Terrace");
INSERT INTO `wp_gf_entry_meta` VALUES("6534", "3", "666", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6535", "3", "666", "3.5", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6536", "3", "666", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6537", "3", "666", "4", "(250) 216-5854");
INSERT INTO `wp_gf_entry_meta` VALUES("6538", "3", "666", "7", "January 18, 2018");
INSERT INTO `wp_gf_entry_meta` VALUES("6539", "3", "666", "5", "Pastoral Care Team Training Workshop");
INSERT INTO `wp_gf_entry_meta` VALUES("6540", "3", "666", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("6541", "14", "667", "1.3", "Brent");
INSERT INTO `wp_gf_entry_meta` VALUES("6542", "14", "667", "1.6", "Yardley");
INSERT INTO `wp_gf_entry_meta` VALUES("6543", "14", "667", "2", "September 30, l96l");
INSERT INTO `wp_gf_entry_meta` VALUES("6544", "14", "667", "3", "(250) 888-9358");
INSERT INTO `wp_gf_entry_meta` VALUES("6545", "14", "667", "4", "Adelina.gotera@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6546", "14", "667", "11", "website searches");
INSERT INTO `wp_gf_entry_meta` VALUES("6547", "14", "667", "5", "I am writing in behalf of my partner, Brent Yardley, who is a skilled worker  at a company in Sidney, BC,. From 2006 to the present, his wages remain the same.  It was because of a  self study course of 20 books requirement  for reclassification,  which he could not do.   Brent is a slow reader, usually overwhelmed with words and gets distracted, confused when he reads books or any reading materials.  He could not comprehend what was read.  In this regard, we thought that he should be assessed professionally for a learning disability or dyslexia.  This professional assessment will pave the way for him to bring the matter to the employer to change specifically the rule for reclassification for workers like  him who have a learning disability. \r\n\r\nWe look forward to your kind help.  \r\n\r\n\r\n\r\n\r\n him for promotion due to what he can not do. to the employer his");
INSERT INTO `wp_gf_entry_meta` VALUES("6548", "14", "667", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6549", "14", "667", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6550", "14", "667", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("6551", "18", "668", "1.3", "Matthew");
INSERT INTO `wp_gf_entry_meta` VALUES("6552", "18", "668", "1.6", "Brown");
INSERT INTO `wp_gf_entry_meta` VALUES("6553", "18", "668", "2", "mbrown@bc.anglican.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6554", "18", "668", "3.1", "4-753 Pemberton Road");
INSERT INTO `wp_gf_entry_meta` VALUES("6555", "18", "668", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6556", "18", "668", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6557", "18", "668", "3.5", "V8S 3R3");
INSERT INTO `wp_gf_entry_meta` VALUES("6558", "18", "668", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6559", "18", "668", "4", "(250) 588-5959");
INSERT INTO `wp_gf_entry_meta` VALUES("6560", "18", "668", "7", "Jan 18, 2018");
INSERT INTO `wp_gf_entry_meta` VALUES("6561", "18", "668", "5", "Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team (January 18, 2018)\r\nYou are here:");
INSERT INTO `wp_gf_entry_meta` VALUES("6562", "18", "668", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("6563", "14", "669", "1.3", "Courtney");
INSERT INTO `wp_gf_entry_meta` VALUES("6564", "14", "669", "1.6", "Poole");
INSERT INTO `wp_gf_entry_meta` VALUES("6565", "14", "669", "2", "March 17, 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("6566", "14", "669", "3", "(250) 507-1023");
INSERT INTO `wp_gf_entry_meta` VALUES("6567", "14", "669", "4", "courtney.meadow@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6568", "14", "669", "11", "Citizens Counselling resources webpage");
INSERT INTO `wp_gf_entry_meta` VALUES("6569", "14", "669", "5", "Depression and anxiety-- acute hopelessness, fixation on mortality and purpose, feelings of inferiority, undue stress about work, inappropriate sense of guilt, lack of energy, troubled sleep. I work 8-4 M-F so evening appointments would be ideal.");
INSERT INTO `wp_gf_entry_meta` VALUES("6570", "14", "669", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6571", "14", "669", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6572", "14", "669", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6573", "14", "669", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6574", "18", "670", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("6575", "18", "670", "1.6", "Fenimore");
INSERT INTO `wp_gf_entry_meta` VALUES("6576", "18", "670", "2", "karenfenimore@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6577", "18", "670", "3.1", "2625 Avebury Ave");
INSERT INTO `wp_gf_entry_meta` VALUES("6578", "18", "670", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6579", "18", "670", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6580", "18", "670", "3.5", "V8R 3W3");
INSERT INTO `wp_gf_entry_meta` VALUES("6581", "18", "670", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6582", "18", "670", "4", "(250) 508-2498");
INSERT INTO `wp_gf_entry_meta` VALUES("6583", "18", "670", "7", "Jan 18");
INSERT INTO `wp_gf_entry_meta` VALUES("6584", "18", "670", "5", "Nuts and Bolts of Pastoral Care");
INSERT INTO `wp_gf_entry_meta` VALUES("6585", "18", "670", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6586", "14", "671", "1.3", "Lucy");
INSERT INTO `wp_gf_entry_meta` VALUES("6587", "14", "671", "1.6", "Brandt");
INSERT INTO `wp_gf_entry_meta` VALUES("6588", "14", "671", "2", "July 30 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("6589", "14", "671", "3", "(250) 812-1185");
INSERT INTO `wp_gf_entry_meta` VALUES("6590", "14", "671", "4", "Lucybrandt@outlook.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6591", "14", "671", "11", "Family");
INSERT INTO `wp_gf_entry_meta` VALUES("6592", "14", "671", "5", "Anxiety, depression, BPD");
INSERT INTO `wp_gf_entry_meta` VALUES("6593", "14", "671", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6594", "14", "671", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6595", "14", "671", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6596", "14", "672", "1.3", "RACHELLE");
INSERT INTO `wp_gf_entry_meta` VALUES("6597", "14", "672", "1.6", "ANDERSON");
INSERT INTO `wp_gf_entry_meta` VALUES("6598", "14", "672", "2", "12/28/1979");
INSERT INTO `wp_gf_entry_meta` VALUES("6599", "14", "672", "3", "(250) 927-7913");
INSERT INTO `wp_gf_entry_meta` VALUES("6600", "14", "672", "4", "soulfulviolet@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6601", "14", "672", "11", "Sister");
INSERT INTO `wp_gf_entry_meta` VALUES("6602", "14", "672", "5", "I would actually like counseling for my 7 year old daughter, she has anxiety and is having problems dealing with my separation from her father and his lack of parenting.  I also have anxiety and am low income with PWD designation for rheumatoid arthritis/fibromyalgia, but I\'m more concerned about her.");
INSERT INTO `wp_gf_entry_meta` VALUES("6603", "14", "672", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6604", "14", "672", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6605", "14", "672", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6606", "14", "673", "1.3", "Gary");
INSERT INTO `wp_gf_entry_meta` VALUES("6607", "14", "673", "1.6", "Lavoie");
INSERT INTO `wp_gf_entry_meta` VALUES("6608", "14", "673", "2", "Jan 03 1981");
INSERT INTO `wp_gf_entry_meta` VALUES("6609", "14", "673", "3", "(250) 619-8106");
INSERT INTO `wp_gf_entry_meta` VALUES("6610", "14", "673", "4", "jj1781@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6611", "14", "673", "11", "My kids attended there");
INSERT INTO `wp_gf_entry_meta` VALUES("6612", "14", "673", "5", "Looking for help with anger jealousy insecurity insufficiencies Within Myself and how to learn to deal with them and someone to talk to");
INSERT INTO `wp_gf_entry_meta` VALUES("6613", "14", "673", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6614", "14", "673", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6615", "14", "673", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6616", "14", "673", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6617", "14", "674", "1.3", "Gary");
INSERT INTO `wp_gf_entry_meta` VALUES("6618", "14", "674", "1.6", "Lavoie");
INSERT INTO `wp_gf_entry_meta` VALUES("6619", "14", "674", "2", "Jan 03 1981");
INSERT INTO `wp_gf_entry_meta` VALUES("6620", "14", "674", "3", "(250) 619-8106");
INSERT INTO `wp_gf_entry_meta` VALUES("6621", "14", "674", "4", "jj1781@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6622", "14", "674", "11", "My kids attended there");
INSERT INTO `wp_gf_entry_meta` VALUES("6623", "14", "674", "5", "Looking for help with anger jealousy insecurity insufficiencies Within Myself and how to learn to deal with them and someone to talk to");
INSERT INTO `wp_gf_entry_meta` VALUES("6624", "14", "674", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6625", "14", "674", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6626", "14", "674", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6627", "14", "674", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6628", "14", "675", "1.3", "Ashley");
INSERT INTO `wp_gf_entry_meta` VALUES("6629", "14", "675", "1.6", "Creed");
INSERT INTO `wp_gf_entry_meta` VALUES("6630", "14", "675", "2", "February 19,1997");
INSERT INTO `wp_gf_entry_meta` VALUES("6631", "14", "675", "3", "(250) 508-9087");
INSERT INTO `wp_gf_entry_meta` VALUES("6632", "14", "675", "4", "Crashley64@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6633", "14", "675", "11", "Website");
INSERT INTO `wp_gf_entry_meta` VALUES("6634", "14", "675", "5", "Self-esteem, self-confidence, anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("6635", "14", "675", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6636", "14", "675", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6637", "14", "675", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6638", "3", "676", "1.3", "Amoraea (Amaya)");
INSERT INTO `wp_gf_entry_meta` VALUES("6639", "3", "676", "1.6", "O\'Duir");
INSERT INTO `wp_gf_entry_meta` VALUES("6640", "3", "676", "2", "awakeningsolshine@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6641", "3", "676", "3.1", "504~1235 Johnson St.");
INSERT INTO `wp_gf_entry_meta` VALUES("6642", "3", "676", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6643", "3", "676", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6644", "3", "676", "3.5", "V8V 3N9");
INSERT INTO `wp_gf_entry_meta` VALUES("6645", "3", "676", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6646", "3", "676", "4", "(250) 920-8097");
INSERT INTO `wp_gf_entry_meta` VALUES("6647", "3", "676", "7", "February 8");
INSERT INTO `wp_gf_entry_meta` VALUES("6648", "3", "676", "5", "Living Through Loss 2");
INSERT INTO `wp_gf_entry_meta` VALUES("6649", "3", "676", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6650", "14", "677", "1.3", "Kaylie");
INSERT INTO `wp_gf_entry_meta` VALUES("6651", "14", "677", "1.6", "Coates");
INSERT INTO `wp_gf_entry_meta` VALUES("6652", "14", "677", "2", "January 8th, 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("6653", "14", "677", "3", "(778) 679-4605");
INSERT INTO `wp_gf_entry_meta` VALUES("6654", "14", "677", "4", "k_coates@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6655", "14", "677", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("6656", "14", "677", "5", "Self-esteem, depression, anxiety, relationship issues.");
INSERT INTO `wp_gf_entry_meta` VALUES("6657", "14", "677", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6658", "14", "677", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6659", "14", "677", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6660", "14", "677", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6661", "14", "677", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6662", "14", "678", "1.3", "Emily");
INSERT INTO `wp_gf_entry_meta` VALUES("6663", "14", "678", "1.6", "Morrison");
INSERT INTO `wp_gf_entry_meta` VALUES("6664", "14", "678", "2", "February 6 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("6665", "14", "678", "3", "(778) 533-9639");
INSERT INTO `wp_gf_entry_meta` VALUES("6666", "14", "678", "4", "e_morrison3@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6667", "14", "678", "11", "Internet");
INSERT INTO `wp_gf_entry_meta` VALUES("6668", "14", "678", "5", "I have always struggled with anxiety, it presented itself as an eating disorder as a teenager and as an adult it has evolved into anxiety around self esteem, relationships and trust issues. Iâ€™ve had a very stressful year - break up, moving house, finishing university, new job, making a decision to move home to Canada after living overseas for five years. I just feel like Iâ€™m not coping with my anxiety at the moment.");
INSERT INTO `wp_gf_entry_meta` VALUES("6669", "14", "678", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6670", "14", "678", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6671", "14", "678", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6672", "14", "678", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6673", "14", "678", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6674", "14", "679", "1.3", "Alena");
INSERT INTO `wp_gf_entry_meta` VALUES("6675", "14", "679", "1.6", "Leonova");
INSERT INTO `wp_gf_entry_meta` VALUES("6676", "14", "679", "2", "1998/08/14");
INSERT INTO `wp_gf_entry_meta` VALUES("6677", "14", "679", "3", "(403) 968-3962");
INSERT INTO `wp_gf_entry_meta` VALUES("6678", "14", "679", "4", "alenaileonova@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6679", "14", "679", "11", "UVic Health Centre");
INSERT INTO `wp_gf_entry_meta` VALUES("6680", "14", "679", "5", "I am a student at UVic and was referred to the centre by my doctor. In the past I have struggled with mainly borderline personality disorder, as well as depression and anxiety. I have found that DBT therapy has helped me enormously. I have recently been struggling with my mood and was hoping for some weekly or biweekly counselling to give me some support. Since I am a university student, I do not have much money to spend on counselling and South Island Centre seemed like the best option. My hope is that I can be connected with someone who is well-versed in DBT therapy.");
INSERT INTO `wp_gf_entry_meta` VALUES("6681", "14", "679", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6682", "14", "679", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6683", "14", "679", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6684", "14", "679", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6685", "14", "679", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6686", "14", "680", "1.3", "Kathryn");
INSERT INTO `wp_gf_entry_meta` VALUES("6687", "14", "680", "1.6", "Robertson");
INSERT INTO `wp_gf_entry_meta` VALUES("6688", "14", "680", "2", "515 Falkland Road");
INSERT INTO `wp_gf_entry_meta` VALUES("6689", "14", "680", "3", "(778) 533-8623");
INSERT INTO `wp_gf_entry_meta` VALUES("6690", "14", "680", "4", "kathryn.gaby.moko@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6691", "14", "680", "11", "Friend who uses the service");
INSERT INTO `wp_gf_entry_meta` VALUES("6692", "14", "680", "5", "At the end of June, I returned to Canada after 16 years of working overseas in Indonesia and East Timor. My husband is from East Timor, and remains there for now as we go through the process of Immigration. I invested alot of myself in my work on the other side of the world, and now I am trying to figure out where I fit back here in Canada. This is prompting in me some issues around self-confidence, as well as motivation and sense of purpose. I am interested in counselling to help me: 1) integrate all of these changes; 2) recognise and honour my strengths and skills; 3) find more purpose; 4) help me to develop more positive coping strategies. I have two children, 14 and 12 so daytime appointments are better for me.");
INSERT INTO `wp_gf_entry_meta` VALUES("6693", "14", "680", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6694", "14", "680", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6695", "14", "680", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6696", "14", "680", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6697", "14", "681", "1.3", "Yona");
INSERT INTO `wp_gf_entry_meta` VALUES("6698", "14", "681", "1.6", "Chow");
INSERT INTO `wp_gf_entry_meta` VALUES("6699", "14", "681", "2", "January 28, 1995");
INSERT INTO `wp_gf_entry_meta` VALUES("6700", "14", "681", "3", "(403) 680-0298");
INSERT INTO `wp_gf_entry_meta` VALUES("6701", "14", "681", "4", "yona.chow@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6702", "14", "681", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("6703", "14", "681", "5", "Feelings of depression and anxiety, loss of self, lots of sadness, hopelessness, confusion, and anger");
INSERT INTO `wp_gf_entry_meta` VALUES("6704", "14", "681", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6705", "14", "681", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6706", "14", "681", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6707", "14", "681", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6708", "3", "682", "1.3", "Maury");
INSERT INTO `wp_gf_entry_meta` VALUES("6709", "3", "682", "1.6", "Peterman");
INSERT INTO `wp_gf_entry_meta` VALUES("6710", "3", "682", "2", "laffingmo@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6711", "3", "682", "3.1", "504- 1235 Johnson St");
INSERT INTO `wp_gf_entry_meta` VALUES("6712", "3", "682", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6713", "3", "682", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6714", "3", "682", "3.5", "V8V3N9");
INSERT INTO `wp_gf_entry_meta` VALUES("6715", "3", "682", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6716", "3", "682", "4", "(250) 580-5954");
INSERT INTO `wp_gf_entry_meta` VALUES("6717", "3", "682", "7", "February 8");
INSERT INTO `wp_gf_entry_meta` VALUES("6718", "3", "682", "5", "Living with loss part two");
INSERT INTO `wp_gf_entry_meta` VALUES("6719", "3", "682", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6720", "14", "683", "1.3", "Nicholas");
INSERT INTO `wp_gf_entry_meta` VALUES("6721", "14", "683", "1.6", "Pearce");
INSERT INTO `wp_gf_entry_meta` VALUES("6722", "14", "683", "2", "February 1st, 1998");
INSERT INTO `wp_gf_entry_meta` VALUES("6723", "14", "683", "3", "(250) 216-4969");
INSERT INTO `wp_gf_entry_meta` VALUES("6724", "14", "683", "4", "njpearce98@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6725", "14", "683", "11", "My mom");
INSERT INTO `wp_gf_entry_meta` VALUES("6726", "14", "683", "5", "I have been struggling with depression and anxiety for as long as i can remember. I feel as though it stems from my childhood and parental relationships, specifically my dad (being emotionally unattached). Itâ€™s important to note that he is recently remarried. I have come to him before and tried to explain my issues yet he was unwilling to listen.");
INSERT INTO `wp_gf_entry_meta` VALUES("6727", "14", "683", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6728", "14", "683", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6729", "14", "683", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6730", "14", "683", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6731", "14", "684", "1.3", "Amanda");
INSERT INTO `wp_gf_entry_meta` VALUES("6732", "14", "684", "1.6", "Erickson");
INSERT INTO `wp_gf_entry_meta` VALUES("6733", "14", "684", "2", "August 18, 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("6734", "14", "684", "3", "(250) 812-3134");
INSERT INTO `wp_gf_entry_meta` VALUES("6735", "14", "684", "4", "aerickson@restorehealthvictoria.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6736", "14", "684", "11", "friend");
INSERT INTO `wp_gf_entry_meta` VALUES("6737", "14", "684", "5", "recently ended a long term relationship; going through a lot of self growth and reading Brene Brown\'s books which are terrific and helpful, but looking to work with someone on a bit more; concerned about communication skills in the past and into present;");
INSERT INTO `wp_gf_entry_meta` VALUES("6738", "14", "684", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6739", "14", "684", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6740", "14", "684", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6741", "14", "684", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6742", "14", "684", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("6743", "14", "685", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("6744", "14", "685", "1.6", "Clark");
INSERT INTO `wp_gf_entry_meta` VALUES("6745", "14", "685", "2", "December 16, 29164");
INSERT INTO `wp_gf_entry_meta` VALUES("6746", "14", "685", "3", "(250) 415-3586");
INSERT INTO `wp_gf_entry_meta` VALUES("6747", "14", "685", "4", "karen.clark@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6748", "14", "685", "11", "website");
INSERT INTO `wp_gf_entry_meta` VALUES("6749", "14", "685", "5", "Significant anxiety related to financial and marital concerns.  Had to seek medication to help with sleep which I only want to do on a very short-term basis.  Seeking financial assistance with a financial advisor but am struggling to get through the days and focus and be able to sleep/eat etc.  Our home/retirement plans may be compromised due to these financial events which were based on some bad decisions on my part.");
INSERT INTO `wp_gf_entry_meta` VALUES("6750", "14", "685", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6751", "14", "685", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6752", "14", "685", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("6753", "14", "686", "1.3", "Natasha");
INSERT INTO `wp_gf_entry_meta` VALUES("6754", "14", "686", "1.6", "Craig");
INSERT INTO `wp_gf_entry_meta` VALUES("6755", "14", "686", "2", "January 22 1988");
INSERT INTO `wp_gf_entry_meta` VALUES("6756", "14", "686", "3", "(778) 679-2688");
INSERT INTO `wp_gf_entry_meta` VALUES("6757", "14", "686", "4", "ncraig22@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6758", "14", "686", "11", "Victoria Mental Heath Centre");
INSERT INTO `wp_gf_entry_meta` VALUES("6759", "14", "686", "5", "Counselling for diagnosis of General Anxiety Disorder and Bipolar 2\r\n\r\nAppointment preferences - next available appointment");
INSERT INTO `wp_gf_entry_meta` VALUES("6760", "14", "686", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6761", "14", "686", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6762", "14", "686", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6763", "14", "686", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("6764", "14", "686", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6765", "14", "686", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6766", "14", "687", "1.3", "Eric");
INSERT INTO `wp_gf_entry_meta` VALUES("6767", "14", "687", "1.6", "Oliver");
INSERT INTO `wp_gf_entry_meta` VALUES("6768", "14", "687", "2", "Jan 27 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("6769", "14", "687", "3", "(778) 967-5205");
INSERT INTO `wp_gf_entry_meta` VALUES("6770", "14", "687", "4", "Jensaunders3@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6771", "14", "687", "11", "Girlfriend");
INSERT INTO `wp_gf_entry_meta` VALUES("6772", "14", "687", "5", "Suffer from Multiple Sclerosis and having troubles dealing with my mood. Its effecting my relationship and my girlfriend recommended I seek professional help.");
INSERT INTO `wp_gf_entry_meta` VALUES("6773", "14", "687", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6774", "14", "687", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6775", "14", "687", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6776", "14", "687", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6777", "14", "687", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6778", "14", "688", "1.3", "Ericka");
INSERT INTO `wp_gf_entry_meta` VALUES("6779", "14", "688", "1.6", "Amador");
INSERT INTO `wp_gf_entry_meta` VALUES("6780", "14", "688", "2", "June 18, 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("6781", "14", "688", "3", "(250) 891-5771");
INSERT INTO `wp_gf_entry_meta` VALUES("6782", "14", "688", "4", "ericka.amador18@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6783", "14", "688", "11", "Island Health");
INSERT INTO `wp_gf_entry_meta` VALUES("6784", "14", "688", "5", "Anxiety, hypochondria");
INSERT INTO `wp_gf_entry_meta` VALUES("6785", "14", "688", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6786", "14", "688", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6787", "14", "688", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6788", "14", "688", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6789", "14", "688", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6790", "3", "689", "1.3", "Gina");
INSERT INTO `wp_gf_entry_meta` VALUES("6791", "3", "689", "1.6", "McKay");
INSERT INTO `wp_gf_entry_meta` VALUES("6792", "3", "689", "2", "info@victoriapregnancy.org");
INSERT INTO `wp_gf_entry_meta` VALUES("6793", "3", "689", "3.1", "#112-826 North Park Street");
INSERT INTO `wp_gf_entry_meta` VALUES("6794", "3", "689", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6795", "3", "689", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6796", "3", "689", "3.5", "V8W 3B4");
INSERT INTO `wp_gf_entry_meta` VALUES("6797", "3", "689", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6798", "3", "689", "4", "(250) 380-6883");
INSERT INTO `wp_gf_entry_meta` VALUES("6799", "3", "689", "7", "Apr 12");
INSERT INTO `wp_gf_entry_meta` VALUES("6800", "3", "689", "5", "Level 1 Basics of Grief and Loss. \r\n\r\nWould also like to include another staff member in the training. Emily Stewart (same contract info)");
INSERT INTO `wp_gf_entry_meta` VALUES("6801", "3", "689", "9.2", "debit card (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("6802", "14", "690", "1.3", "James");
INSERT INTO `wp_gf_entry_meta` VALUES("6803", "14", "690", "1.6", "Cooper");
INSERT INTO `wp_gf_entry_meta` VALUES("6804", "14", "690", "2", "August 2, 1991");
INSERT INTO `wp_gf_entry_meta` VALUES("6805", "14", "690", "3", "(403) 497-5352");
INSERT INTO `wp_gf_entry_meta` VALUES("6806", "14", "690", "4", "Susanmiller675@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6807", "14", "690", "11", "Internet search");
INSERT INTO `wp_gf_entry_meta` VALUES("6808", "14", "690", "5", "I suffer from anxiety and depression. I was a student at camosun college and was doing very well and then I started to experience severe anxiety. I dropped out for this semester because I couldnâ€™t sleep or really even leave my house.");
INSERT INTO `wp_gf_entry_meta` VALUES("6809", "14", "690", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6810", "14", "690", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6811", "14", "690", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6812", "14", "690", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6813", "14", "690", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6814", "14", "690", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6815", "14", "691", "1.3", "Mark");
INSERT INTO `wp_gf_entry_meta` VALUES("6816", "14", "691", "1.6", "Ednie");
INSERT INTO `wp_gf_entry_meta` VALUES("6817", "14", "691", "2", "January 19 1981");
INSERT INTO `wp_gf_entry_meta` VALUES("6818", "14", "691", "3", "(250) 896-5450");
INSERT INTO `wp_gf_entry_meta` VALUES("6819", "14", "691", "4", "mupfins@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6820", "14", "691", "11", "Friend");
INSERT INTO `wp_gf_entry_meta` VALUES("6821", "14", "691", "5", "Depression and alcohol abuse");
INSERT INTO `wp_gf_entry_meta` VALUES("6822", "14", "691", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6823", "14", "691", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6824", "14", "691", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6825", "14", "691", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6826", "14", "691", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6827", "14", "692", "1.3", "Kristina");
INSERT INTO `wp_gf_entry_meta` VALUES("6828", "14", "692", "1.6", "Durst");
INSERT INTO `wp_gf_entry_meta` VALUES("6829", "14", "692", "2", "January 15, 1985");
INSERT INTO `wp_gf_entry_meta` VALUES("6830", "14", "692", "3", "(778) 587-0252");
INSERT INTO `wp_gf_entry_meta` VALUES("6831", "14", "692", "4", "kristinadurst@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6832", "14", "692", "11", "Doctor referral / Victoria Mental Health and Addictions");
INSERT INTO `wp_gf_entry_meta` VALUES("6833", "14", "692", "5", "Depression, anxiety, suicidal thoughts. Preferred availability for appointments is Tues or Thurs between 11am and 5pm.");
INSERT INTO `wp_gf_entry_meta` VALUES("6834", "14", "692", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6835", "14", "692", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6836", "14", "692", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6837", "14", "692", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6838", "14", "692", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6839", "3", "693", "1.3", "MAY");
INSERT INTO `wp_gf_entry_meta` VALUES("6840", "3", "693", "1.6", "Shihadeh");
INSERT INTO `wp_gf_entry_meta` VALUES("6841", "3", "693", "2", "mayshihadeh@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6842", "3", "693", "3.1", "4402 SHORE WAY, saanich");
INSERT INTO `wp_gf_entry_meta` VALUES("6843", "3", "693", "3.3", "victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6844", "3", "693", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("6845", "3", "693", "3.5", "v8n 3t9");
INSERT INTO `wp_gf_entry_meta` VALUES("6846", "3", "693", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("6847", "3", "693", "4", "(778) 350-3907");
INSERT INTO `wp_gf_entry_meta` VALUES("6848", "3", "693", "7", "May 26");
INSERT INTO `wp_gf_entry_meta` VALUES("6849", "3", "693", "5", "Me & My Personality and Introduction");
INSERT INTO `wp_gf_entry_meta` VALUES("6850", "3", "693", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("6851", "14", "694", "1.3", "Naomi");
INSERT INTO `wp_gf_entry_meta` VALUES("6852", "14", "694", "1.6", "Sturrock");
INSERT INTO `wp_gf_entry_meta` VALUES("6853", "14", "694", "2", "02/03/93");
INSERT INTO `wp_gf_entry_meta` VALUES("6854", "14", "694", "3", "(250) 589-7012");
INSERT INTO `wp_gf_entry_meta` VALUES("6855", "14", "694", "4", "naeverick@googlemail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6856", "14", "694", "11", "Reddit");
INSERT INTO `wp_gf_entry_meta` VALUES("6857", "14", "694", "5", "I feel like I constantly yoyo between feeling very anxious, depressed and hating myself and then feeling on top of the world and loving everyone. It scares me and is making it hard to have relationships with people and keep up with work.");
INSERT INTO `wp_gf_entry_meta` VALUES("6858", "14", "694", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6859", "14", "694", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6860", "14", "694", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6861", "14", "694", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6862", "14", "694", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6863", "14", "695", "1.3", "Amal");
INSERT INTO `wp_gf_entry_meta` VALUES("6864", "14", "695", "1.6", "Khan");
INSERT INTO `wp_gf_entry_meta` VALUES("6865", "14", "695", "2", "April 9 1996");
INSERT INTO `wp_gf_entry_meta` VALUES("6866", "14", "695", "3", "(250) 444-8441");
INSERT INTO `wp_gf_entry_meta` VALUES("6867", "14", "695", "4", "amalfkhan@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6868", "14", "695", "11", "VIHA");
INSERT INTO `wp_gf_entry_meta` VALUES("6869", "14", "695", "5", "Severe depression\r\nHistory of abuse and assult");
INSERT INTO `wp_gf_entry_meta` VALUES("6870", "14", "695", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6871", "14", "695", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6872", "14", "695", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6873", "14", "695", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6874", "14", "695", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("6875", "14", "696", "1.3", "DahKarai");
INSERT INTO `wp_gf_entry_meta` VALUES("6876", "14", "696", "1.6", "Rempel-Moe");
INSERT INTO `wp_gf_entry_meta` VALUES("6877", "14", "696", "2", "11/08/2009");
INSERT INTO `wp_gf_entry_meta` VALUES("6878", "14", "696", "3", "(403) 336-3325");
INSERT INTO `wp_gf_entry_meta` VALUES("6879", "14", "696", "4", "jessikahmoe@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6880", "14", "696", "11", "google search");
INSERT INTO `wp_gf_entry_meta` VALUES("6881", "14", "696", "5", "My name is Jessikah Moe, and I am looking for counseling on behalf of my son. My son, DahKarai, is having many issues at school this last year in regards to his anger outbursts, and it is now to the point where his teachers feel unsafe bringing him on field trips due to his unpredictable behavior. We just moved here from Calgary, so my son needs some more support in dealing with his anxiety, depression, and anger. He used to see a counselor back in Calgary, and I am a counselor as well so he is used to the process. My son has witnessed and experienced many forms of abuse and domestic violence in his life time, and since moving here it definitely appears that his issues relating to that trauma have gotten significantly worse. I am a single mother so I would appreciate any sliding scale opportunities your agency may have.");
INSERT INTO `wp_gf_entry_meta` VALUES("6882", "14", "696", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6883", "14", "696", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6884", "14", "696", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6885", "14", "696", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6886", "14", "696", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6887", "14", "696", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6888", "14", "696", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("6889", "14", "697", "1.3", "Ashley");
INSERT INTO `wp_gf_entry_meta` VALUES("6890", "14", "697", "1.6", "Rolland");
INSERT INTO `wp_gf_entry_meta` VALUES("6891", "14", "697", "2", "979 Wilmer St.");
INSERT INTO `wp_gf_entry_meta` VALUES("6892", "14", "697", "3", "(778) 938-8607");
INSERT INTO `wp_gf_entry_meta` VALUES("6893", "14", "697", "4", "ashleyrolland17@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6894", "14", "697", "11", "Psychiatrist");
INSERT INTO `wp_gf_entry_meta` VALUES("6895", "14", "697", "5", "Mood disorder, Depression and Anxiety management");
INSERT INTO `wp_gf_entry_meta` VALUES("6896", "14", "697", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6897", "14", "697", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6898", "14", "697", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6899", "14", "697", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6900", "14", "698", "1.3", "Roger");
INSERT INTO `wp_gf_entry_meta` VALUES("6901", "14", "698", "1.6", "Mennell");
INSERT INTO `wp_gf_entry_meta` VALUES("6902", "14", "698", "2", "November 24, 1986");
INSERT INTO `wp_gf_entry_meta` VALUES("6903", "14", "698", "3", "(250) 885-0459");
INSERT INTO `wp_gf_entry_meta` VALUES("6904", "14", "698", "4", "laychusa@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6905", "14", "698", "11", "Reference from another counselling centre (citizen counselling)");
INSERT INTO `wp_gf_entry_meta` VALUES("6906", "14", "698", "5", "I am not entirely clear on the exact concerns but understand that I am in a state of self work and am coming across some barriers that I can\'t seem to find a solution to.  I am hoping for assistance in working through the things I can\'t seem to see around and developing new perspective and tools to aid in further growth.\r\nI can say luckily, I am not dealing with any severe trauma or depression, usually fairly even keeled.");
INSERT INTO `wp_gf_entry_meta` VALUES("6907", "14", "698", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6908", "14", "698", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6909", "14", "698", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6910", "14", "698", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6911", "14", "698", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("6912", "14", "699", "1.3", "Rebecca");
INSERT INTO `wp_gf_entry_meta` VALUES("6913", "14", "699", "1.6", "Wall");
INSERT INTO `wp_gf_entry_meta` VALUES("6914", "14", "699", "2", "January 4, 1985");
INSERT INTO `wp_gf_entry_meta` VALUES("6915", "14", "699", "3", "(250) 686-6827");
INSERT INTO `wp_gf_entry_meta` VALUES("6916", "14", "699", "4", "rwall@csta-bc.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6917", "14", "699", "11", "Greg Beattie - RMSE Coordinator, Roman Catholic Diocese of Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("6918", "14", "699", "5", "I am looking to find a counsellor to deal with anxiety/depression following a series of work place bullying issues over a 4 year period. Mr. Beattie was the chief investigator and has recommended I contact Amber Eves to inquire if she is current taking new clients. I would like to find out if there is possibility for an initial interview to determine if your program would be a good fit for the issue I am working on.  i have strong background in Psychology as well as a M.Ed in Special Education which could be a help with counselling but also a challenge.  I am looking for someone who can use CBT approaches with me and explore what is really going to help. \r\n\r\nThe Diocese of Victoria will be paying for the first 10 sessions of my therapy.");
INSERT INTO `wp_gf_entry_meta` VALUES("6919", "14", "699", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6920", "14", "699", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6921", "14", "699", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6922", "14", "699", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6923", "14", "699", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("6924", "14", "699", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("6925", "14", "700", "1.3", "Emily");
INSERT INTO `wp_gf_entry_meta` VALUES("6926", "14", "700", "1.6", "Trenchard");
INSERT INTO `wp_gf_entry_meta` VALUES("6927", "14", "700", "2", "June 23rd, 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("6928", "14", "700", "3", "(240) 386-6526");
INSERT INTO `wp_gf_entry_meta` VALUES("6929", "14", "700", "4", "eltrenchard@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6930", "14", "700", "11", "UVIC Health Services");
INSERT INTO `wp_gf_entry_meta` VALUES("6931", "14", "700", "5", "Depression, Severe Anxiety Disorder");
INSERT INTO `wp_gf_entry_meta` VALUES("6932", "14", "700", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6933", "14", "700", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6934", "14", "700", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6935", "14", "700", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6936", "14", "700", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6937", "14", "701", "1.3", "Bryony");
INSERT INTO `wp_gf_entry_meta` VALUES("6938", "14", "701", "1.6", "Anderson");
INSERT INTO `wp_gf_entry_meta` VALUES("6939", "14", "701", "2", "07/07/1990");
INSERT INTO `wp_gf_entry_meta` VALUES("6940", "14", "701", "3", "(778) 350-6406");
INSERT INTO `wp_gf_entry_meta` VALUES("6941", "14", "701", "4", "bryony.a.anderson@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6942", "14", "701", "11", "Researching the internet for counselling options");
INSERT INTO `wp_gf_entry_meta` VALUES("6943", "14", "701", "5", "A few things. \r\n1. Grief. Someone I really loved died before Christmas at the age of 46, he was an alcoholic. I keep thinking it will get better on its own, but I\'m still angry, and it\'s affecting my life and my relationship\r\n2. Since this event, the pre-existing anxiety that I had gotten really good at dealing with has gotten a lot worse. \r\n\r\nPreferences: I prefer to speak with women, who are older than me, otherwise I struggle to open up.");
INSERT INTO `wp_gf_entry_meta` VALUES("6944", "14", "701", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6945", "14", "701", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6946", "14", "701", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6947", "14", "701", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6948", "14", "701", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6949", "14", "701", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6950", "14", "702", "1.3", "Leona");
INSERT INTO `wp_gf_entry_meta` VALUES("6951", "14", "702", "1.6", "hanson");
INSERT INTO `wp_gf_entry_meta` VALUES("6952", "14", "702", "2", "October 24, 1954");
INSERT INTO `wp_gf_entry_meta` VALUES("6953", "14", "702", "3", "(250) 360-9075");
INSERT INTO `wp_gf_entry_meta` VALUES("6954", "14", "702", "4", "lhanson1024@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6955", "14", "702", "11", "I have seen this name on notice board");
INSERT INTO `wp_gf_entry_meta` VALUES("6956", "14", "702", "5", "I am very frustrated with myself as I have been trying to loose weight and instead I gain weight, lose a bit and gain.  I have tried different methods and about 1 year ago, started to loose and lost about 30 pounds.  I did have an accident and hurt hip and gained it back.  I am interested in CBT, I have seen books at Chapters and there are workbooks, I would need help to do this. I live alone which does not mean it makes it easier. I also do not have a job and have trouble finishing things I start.\r\n\r\nIf there is CBT counselling available, I would like to change the inside.  I do pray and have a religion, but my weight is so bad, I do not want to try new things.  I am still having my hip heal.\r\n\r\nPlease call me in the mornings when you are ready to set up an appointment.");
INSERT INTO `wp_gf_entry_meta` VALUES("6957", "14", "702", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6958", "14", "702", "12.2", "I would participate in a support group");
INSERT INTO `wp_gf_entry_meta` VALUES("6959", "14", "702", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6960", "14", "702", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6961", "14", "702", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6962", "14", "702", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6963", "14", "702", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6964", "14", "702", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("6965", "14", "703", "1.3", "Tonya");
INSERT INTO `wp_gf_entry_meta` VALUES("6966", "14", "703", "1.6", "Tudway-cains");
INSERT INTO `wp_gf_entry_meta` VALUES("6967", "14", "703", "2", "June 8, 1974");
INSERT INTO `wp_gf_entry_meta` VALUES("6968", "14", "703", "3", "(250) 208-9442");
INSERT INTO `wp_gf_entry_meta` VALUES("6969", "14", "703", "4", "Geminitonya@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("6970", "14", "703", "11", "1up");
INSERT INTO `wp_gf_entry_meta` VALUES("6971", "14", "703", "5", "My daughter is 17. Has really taken a very quick turn. Full of anxiety, trouble sleeping, eating. Started smoking, pot, drinking. Has had some trama - that she has not yet worked through.");
INSERT INTO `wp_gf_entry_meta` VALUES("6972", "14", "703", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6973", "14", "703", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6974", "14", "703", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6975", "14", "703", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6976", "14", "703", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("6977", "14", "704", "1.3", "Bradford");
INSERT INTO `wp_gf_entry_meta` VALUES("6978", "14", "704", "1.6", "Sinclair");
INSERT INTO `wp_gf_entry_meta` VALUES("6979", "14", "704", "2", "08/18/94");
INSERT INTO `wp_gf_entry_meta` VALUES("6980", "14", "704", "3", "(250) 580-0794");
INSERT INTO `wp_gf_entry_meta` VALUES("6981", "14", "704", "4", "bford.sinclair@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6982", "14", "704", "11", "Calvin Black");
INSERT INTO `wp_gf_entry_meta` VALUES("6983", "14", "704", "5", "I have had some issues with depression, lack of confidence, and attachment.");
INSERT INTO `wp_gf_entry_meta` VALUES("6984", "14", "704", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6985", "14", "704", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6986", "14", "704", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("6987", "14", "704", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("6988", "14", "704", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("6989", "14", "705", "1.3", "Dan");
INSERT INTO `wp_gf_entry_meta` VALUES("6990", "14", "705", "1.6", "Stark");
INSERT INTO `wp_gf_entry_meta` VALUES("6991", "14", "705", "2", "Dec. 31/19");
INSERT INTO `wp_gf_entry_meta` VALUES("6992", "14", "705", "3", "(250) 386-4210");
INSERT INTO `wp_gf_entry_meta` VALUES("6993", "14", "705", "4", "djs@uniserve.com");
INSERT INTO `wp_gf_entry_meta` VALUES("6994", "14", "705", "11", "From my Doctor");
INSERT INTO `wp_gf_entry_meta` VALUES("6995", "14", "705", "5", "I lost my job at the end of last year and it\'s very stressful and I am depressed.\r\nI need some feedback from a counselor to help me with my depression and other emotional issues.\r\nAs well I would like to get some feedback on how I can address my problem.");
INSERT INTO `wp_gf_entry_meta` VALUES("6996", "14", "705", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("6997", "14", "705", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6998", "14", "705", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("6999", "14", "705", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7000", "14", "705", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7001", "14", "705", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("7002", "14", "706", "1.3", "Amoraea");
INSERT INTO `wp_gf_entry_meta` VALUES("7003", "14", "706", "1.6", "O\'Duir");
INSERT INTO `wp_gf_entry_meta` VALUES("7004", "14", "706", "2", "June 20, 1972");
INSERT INTO `wp_gf_entry_meta` VALUES("7005", "14", "706", "3", "(250) 920-8097");
INSERT INTO `wp_gf_entry_meta` VALUES("7006", "14", "706", "4", "awakeningsolshine@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7007", "14", "706", "11", "Taking a course with Margaret Anderson");
INSERT INTO `wp_gf_entry_meta` VALUES("7008", "14", "706", "5", "*processing family of origin dysfunctionality \r\n*recently discovered parents â€˜functional alcholismâ€™ has amplified in retirement \r\n*primary relationship strain\r\n*professional challenges \r\n\r\n(Please, I would prefer a counsellor other than my current mentor, Margaret Anderson, thank you)");
INSERT INTO `wp_gf_entry_meta` VALUES("7009", "14", "706", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7010", "14", "706", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7011", "14", "706", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7012", "14", "706", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("7013", "3", "707", "1.3", "Katy");
INSERT INTO `wp_gf_entry_meta` VALUES("7014", "3", "707", "1.6", "Earl");
INSERT INTO `wp_gf_entry_meta` VALUES("7015", "3", "707", "2", "KATY.EARL@GMAIL.COM");
INSERT INTO `wp_gf_entry_meta` VALUES("7016", "3", "707", "3.1", "862 Ralph St.");
INSERT INTO `wp_gf_entry_meta` VALUES("7017", "3", "707", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("7018", "3", "707", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("7019", "3", "707", "3.5", "V8X 3E2");
INSERT INTO `wp_gf_entry_meta` VALUES("7020", "3", "707", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("7021", "3", "707", "4", "(250) 216-0044");
INSERT INTO `wp_gf_entry_meta` VALUES("7022", "3", "707", "7", "March 28");
INSERT INTO `wp_gf_entry_meta` VALUES("7023", "3", "707", "5", "Positive Parenting");
INSERT INTO `wp_gf_entry_meta` VALUES("7024", "3", "707", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("7025", "14", "708", "1.3", "Albina");
INSERT INTO `wp_gf_entry_meta` VALUES("7026", "14", "708", "1.6", "Vaughan");
INSERT INTO `wp_gf_entry_meta` VALUES("7027", "14", "708", "2", "921 SHIRLEY RD");
INSERT INTO `wp_gf_entry_meta` VALUES("7028", "14", "708", "3", "(250) 507-6987");
INSERT INTO `wp_gf_entry_meta` VALUES("7029", "14", "708", "4", "vons@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("7030", "14", "708", "11", "BC Health Guide");
INSERT INTO `wp_gf_entry_meta` VALUES("7031", "14", "708", "5", "Marital difficulties. My husband has mood swings, is including me less in decision-making.....he displays behaviors that make it extremely challenging to get along with him.\r\nWe\'ve been to marriage counseling in the past. I\'ve spoken privately to his former GP re his inappropriate behaviors.");
INSERT INTO `wp_gf_entry_meta` VALUES("7032", "14", "708", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7033", "14", "708", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7034", "14", "708", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7035", "14", "708", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7036", "14", "708", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("7037", "14", "708", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("7038", "14", "709", "1.3", "Jessica");
INSERT INTO `wp_gf_entry_meta` VALUES("7039", "14", "709", "1.6", "Nenson");
INSERT INTO `wp_gf_entry_meta` VALUES("7040", "14", "709", "2", "August 20th 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("7041", "14", "709", "3", "(306) 450-5059");
INSERT INTO `wp_gf_entry_meta` VALUES("7042", "14", "709", "4", "Jess.nenson@gnail.ckm");
INSERT INTO `wp_gf_entry_meta` VALUES("7043", "14", "709", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("7044", "14", "709", "5", "Co dependency and low self esteem");
INSERT INTO `wp_gf_entry_meta` VALUES("7045", "14", "709", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7046", "14", "709", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7047", "14", "709", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7048", "14", "709", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("7049", "14", "710", "1.3", "Shelley");
INSERT INTO `wp_gf_entry_meta` VALUES("7050", "14", "710", "1.6", "Cooper");
INSERT INTO `wp_gf_entry_meta` VALUES("7051", "14", "710", "2", "05/13/59");
INSERT INTO `wp_gf_entry_meta` VALUES("7052", "14", "710", "3", "(250) 474-0880");
INSERT INTO `wp_gf_entry_meta` VALUES("7053", "14", "710", "4", "sccooper@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("7054", "14", "710", "11", "Google search");
INSERT INTO `wp_gf_entry_meta` VALUES("7055", "14", "710", "5", "Depression / anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("7056", "14", "710", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7057", "14", "710", "12.2", "I would participate in a support group");
INSERT INTO `wp_gf_entry_meta` VALUES("7058", "14", "710", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7059", "14", "710", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7060", "14", "710", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("7061", "14", "710", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("7062", "14", "711", "1.3", "Beatrice");
INSERT INTO `wp_gf_entry_meta` VALUES("7063", "14", "711", "1.6", "Toner");
INSERT INTO `wp_gf_entry_meta` VALUES("7064", "14", "711", "2", "June 14, 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("7065", "14", "711", "3", "(778) 677-4099");
INSERT INTO `wp_gf_entry_meta` VALUES("7066", "14", "711", "4", "toner.beatrice@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7067", "14", "711", "11", "search engine - looking for sliding scale and affordable counselling in BC");
INSERT INTO `wp_gf_entry_meta` VALUES("7068", "14", "711", "5", "-strategies for coping with ADHD/time management/feeling \"spread too thin\"\r\n-inter-personal relationships/habits in friendships");
INSERT INTO `wp_gf_entry_meta` VALUES("7069", "14", "711", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7070", "14", "711", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7071", "14", "711", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7072", "14", "711", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7073", "14", "711", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7074", "14", "711", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7075", "14", "711", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("7076", "3", "712", "1.3", "Jen");
INSERT INTO `wp_gf_entry_meta` VALUES("7077", "3", "712", "1.6", "Rosang");
INSERT INTO `wp_gf_entry_meta` VALUES("7078", "3", "712", "2", "Jenrosang@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7079", "3", "712", "3.1", "3203 island view rd");
INSERT INTO `wp_gf_entry_meta` VALUES("7080", "3", "712", "3.3", "Saanichton");
INSERT INTO `wp_gf_entry_meta` VALUES("7081", "3", "712", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("7082", "3", "712", "3.5", "V8m1w3");
INSERT INTO `wp_gf_entry_meta` VALUES("7083", "3", "712", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("7084", "3", "712", "4", "(250) 882-1595");
INSERT INTO `wp_gf_entry_meta` VALUES("7085", "3", "712", "7", "April 27th & 28th");
INSERT INTO `wp_gf_entry_meta` VALUES("7086", "3", "712", "5", "Intro to family systems");
INSERT INTO `wp_gf_entry_meta` VALUES("7087", "3", "712", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("7088", "14", "713", "1.3", "Rebecca");
INSERT INTO `wp_gf_entry_meta` VALUES("7089", "14", "713", "1.6", "Carlos");
INSERT INTO `wp_gf_entry_meta` VALUES("7090", "14", "713", "2", "April 7th, 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("7091", "14", "713", "3", "(250) 589-0407");
INSERT INTO `wp_gf_entry_meta` VALUES("7092", "14", "713", "4", "rebecca.carlos92@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7093", "14", "713", "11", "Recommendation from Citizens Councilling. Said that you might have a shorter waitlist.");
INSERT INTO `wp_gf_entry_meta` VALUES("7094", "14", "713", "5", "Present concerns are realtionship and sexual issues. I feel quite powerless and unhappy in my life. I have never seen a councillor on a regualar bases and i think its time, because i also have unresolved childhood trama.");
INSERT INTO `wp_gf_entry_meta` VALUES("7095", "14", "713", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7096", "14", "713", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7097", "14", "713", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7098", "14", "713", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("7099", "14", "713", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7100", "14", "713", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("7101", "14", "714", "1.3", "Martin");
INSERT INTO `wp_gf_entry_meta` VALUES("7102", "14", "714", "1.6", "Drinnan");
INSERT INTO `wp_gf_entry_meta` VALUES("7103", "14", "714", "2", "14 September 1993");
INSERT INTO `wp_gf_entry_meta` VALUES("7104", "14", "714", "3", "(250) 893-9213");
INSERT INTO `wp_gf_entry_meta` VALUES("7105", "14", "714", "4", "mrdrinnan@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7106", "14", "714", "11", "Googling counselling places");
INSERT INTO `wp_gf_entry_meta` VALUES("7107", "14", "714", "5", "My girlfriend and I are looking for relationship counselling. She has not been feeling respected, as for a while I was hoping that she would change. As a result, she has developed some confidence issues.\r\nI am looking for techniques and advice to help me respect our differences more.\r\nShe is looking for advice on how to respect herself more and not be as sensitive to disrespect.");
INSERT INTO `wp_gf_entry_meta` VALUES("7108", "14", "714", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7109", "14", "714", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7110", "14", "714", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7111", "14", "714", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7112", "14", "714", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("7113", "14", "714", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("7114", "14", "715", "1.3", "Tahani");
INSERT INTO `wp_gf_entry_meta` VALUES("7115", "14", "715", "1.6", "Peters");
INSERT INTO `wp_gf_entry_meta` VALUES("7116", "14", "715", "2", "June 2nd 1995");
INSERT INTO `wp_gf_entry_meta` VALUES("7117", "14", "715", "3", "(250) 537-7002");
INSERT INTO `wp_gf_entry_meta` VALUES("7118", "14", "715", "4", "tahanip@hotmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7119", "14", "715", "11", "Google Search");
INSERT INTO `wp_gf_entry_meta` VALUES("7120", "14", "715", "5", "Anxiety\r\nSelf-deprecating thought cycle\r\nSome signs of depression\r\nChildhood trauma");
INSERT INTO `wp_gf_entry_meta` VALUES("7121", "14", "715", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7122", "14", "715", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7123", "14", "715", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("7124", "14", "715", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7125", "14", "715", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("7126", "14", "716", "1.3", "Cassandra");
INSERT INTO `wp_gf_entry_meta` VALUES("7127", "14", "716", "1.6", "Sinclair");
INSERT INTO `wp_gf_entry_meta` VALUES("7128", "14", "716", "2", "July 23, 1992");
INSERT INTO `wp_gf_entry_meta` VALUES("7129", "14", "716", "3", "(250) 220-2032");
INSERT INTO `wp_gf_entry_meta` VALUES("7130", "14", "716", "4", "cassy.sinclair@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7131", "14", "716", "11", "Calvin Black");
INSERT INTO `wp_gf_entry_meta` VALUES("7132", "14", "716", "5", "Depression, anxiety, traumatic past, emotional swings");
INSERT INTO `wp_gf_entry_meta` VALUES("7133", "14", "716", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7134", "14", "716", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7135", "14", "716", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7136", "14", "716", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7137", "14", "716", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7138", "14", "716", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("7139", "3", "717", "1.3", "Chris");
INSERT INTO `wp_gf_entry_meta` VALUES("7140", "3", "717", "1.6", "Harbord");
INSERT INTO `wp_gf_entry_meta` VALUES("7141", "3", "717", "2", "chrisharbord@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("7142", "3", "717", "3.1", "5174 Agate Lane");
INSERT INTO `wp_gf_entry_meta` VALUES("7143", "3", "717", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("7144", "3", "717", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("7145", "3", "717", "3.5", "V8Y 2L9");
INSERT INTO `wp_gf_entry_meta` VALUES("7146", "3", "717", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("7147", "3", "717", "4", "(250) 480-5920");
INSERT INTO `wp_gf_entry_meta` VALUES("7148", "3", "717", "7", "March 29");
INSERT INTO `wp_gf_entry_meta` VALUES("7149", "3", "717", "5", "Group Support for Stress and Anxiety");
INSERT INTO `wp_gf_entry_meta` VALUES("7150", "3", "717", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("7151", "14", "718", "1.3", "Courtney");
INSERT INTO `wp_gf_entry_meta` VALUES("7152", "14", "718", "1.6", "Norris-Jones");
INSERT INTO `wp_gf_entry_meta` VALUES("7153", "14", "718", "2", "1979Nov22");
INSERT INTO `wp_gf_entry_meta` VALUES("7154", "14", "718", "3", "(604) 928-9573");
INSERT INTO `wp_gf_entry_meta` VALUES("7155", "14", "718", "4", "Cmnorrisjones@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7156", "14", "718", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("7157", "14", "718", "5", "Chronic depression\r\nLife stress (relationship, financial)");
INSERT INTO `wp_gf_entry_meta` VALUES("7158", "14", "718", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7159", "14", "718", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7160", "14", "718", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7161", "14", "718", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("7162", "14", "719", "1.3", "Elyse");
INSERT INTO `wp_gf_entry_meta` VALUES("7163", "14", "719", "1.6", "Kornhauser");
INSERT INTO `wp_gf_entry_meta` VALUES("7164", "14", "719", "2", "January 17, 1990");
INSERT INTO `wp_gf_entry_meta` VALUES("7165", "14", "719", "3", "(867) 335-0874");
INSERT INTO `wp_gf_entry_meta` VALUES("7166", "14", "719", "4", "elyse.kornhauser@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7167", "14", "719", "11", "bc211");
INSERT INTO `wp_gf_entry_meta` VALUES("7168", "14", "719", "5", "Hi there. I\'m looking to find a counsellor or psychologist that would be able to provide counselling via Skype. My boyfriend is currently living in Brazil (he moved there 7 months ago), and is feeling lonely, helpless and depressed. He has mentioned considering suicide.\r\nHe went to see a counsellor in Brazil, but he finds the cultural differences to be a huge barrier. He feels that they cannot understand him nor help him there.\r\n\r\nIs this a service that you would be able to provide?");
INSERT INTO `wp_gf_entry_meta` VALUES("7169", "14", "719", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7170", "14", "719", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7171", "14", "719", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7172", "14", "719", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7173", "14", "719", "9.2", "$50-80");
INSERT INTO `wp_gf_entry_meta` VALUES("7174", "14", "720", "1.3", "Pendragon");
INSERT INTO `wp_gf_entry_meta` VALUES("7175", "14", "720", "1.6", "Smith");
INSERT INTO `wp_gf_entry_meta` VALUES("7176", "14", "720", "2", "May 3/1976");
INSERT INTO `wp_gf_entry_meta` VALUES("7177", "14", "720", "3", "(250) 709-0233");
INSERT INTO `wp_gf_entry_meta` VALUES("7178", "14", "720", "4", "pendragonloki69@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7179", "14", "720", "11", "Mental health services");
INSERT INTO `wp_gf_entry_meta` VALUES("7180", "14", "720", "5", "I have past truma from a very abusive mother growing up and have little self worth because of it.  Is affecting my relationship with my partner and I\'m very overwhelmed.");
INSERT INTO `wp_gf_entry_meta` VALUES("7181", "14", "720", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7182", "14", "720", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7183", "14", "720", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7184", "14", "720", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7185", "14", "720", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("7186", "14", "721", "1.3", "Katey");
INSERT INTO `wp_gf_entry_meta` VALUES("7187", "14", "721", "1.6", "King");
INSERT INTO `wp_gf_entry_meta` VALUES("7188", "14", "721", "2", "April 30, 1996");
INSERT INTO `wp_gf_entry_meta` VALUES("7189", "14", "721", "3", "(403) 870-2279");
INSERT INTO `wp_gf_entry_meta` VALUES("7190", "14", "721", "4", "kateyk@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("7191", "14", "721", "11", "Boyfriend goes to counselling here");
INSERT INTO `wp_gf_entry_meta` VALUES("7192", "14", "721", "5", "Mild depression and anxiety which have recently seemed to increase; recent significant life events which are still being worked through.");
INSERT INTO `wp_gf_entry_meta` VALUES("7193", "14", "721", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7194", "14", "721", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7195", "14", "721", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7196", "14", "721", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7197", "14", "721", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7198", "14", "721", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7199", "14", "721", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("7200", "14", "722", "1.3", "Douglas");
INSERT INTO `wp_gf_entry_meta` VALUES("7201", "14", "722", "1.6", "Kropp");
INSERT INTO `wp_gf_entry_meta` VALUES("7202", "14", "722", "2", "1990/12/02");
INSERT INTO `wp_gf_entry_meta` VALUES("7203", "14", "722", "3", "(250) 208-0790");
INSERT INTO `wp_gf_entry_meta` VALUES("7204", "14", "722", "4", "Dougjkropp@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7205", "14", "722", "11", "Sister");
INSERT INTO `wp_gf_entry_meta` VALUES("7206", "14", "722", "5", "Depression");
INSERT INTO `wp_gf_entry_meta` VALUES("7207", "14", "722", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7208", "14", "722", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7209", "14", "722", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7210", "14", "722", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7211", "14", "722", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7212", "14", "722", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("7213", "14", "723", "1.3", "Karen");
INSERT INTO `wp_gf_entry_meta` VALUES("7214", "14", "723", "1.6", "Barkhouse");
INSERT INTO `wp_gf_entry_meta` VALUES("7215", "14", "723", "2", "february 3,1964");
INSERT INTO `wp_gf_entry_meta` VALUES("7216", "14", "723", "3", "(250) 744-2344");
INSERT INTO `wp_gf_entry_meta` VALUES("7217", "14", "723", "4", "k.barkhouse@shaw.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("7218", "14", "723", "11", "work mate");
INSERT INTO `wp_gf_entry_meta` VALUES("7219", "14", "723", "5", "depressed, struggling to trust amd find myself.");
INSERT INTO `wp_gf_entry_meta` VALUES("7220", "14", "723", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7221", "14", "723", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7222", "14", "723", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7223", "14", "723", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("7224", "14", "723", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("7225", "3", "724", "1.3", "Sarah");
INSERT INTO `wp_gf_entry_meta` VALUES("7226", "3", "724", "1.6", "Daviau");
INSERT INTO `wp_gf_entry_meta` VALUES("7227", "3", "724", "2", "pieceofcakecommunications@yahoo.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("7228", "3", "724", "3.1", "3542 Desmond Drive");
INSERT INTO `wp_gf_entry_meta` VALUES("7229", "3", "724", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("7230", "3", "724", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("7231", "3", "724", "3.5", "V9C 3T1");
INSERT INTO `wp_gf_entry_meta` VALUES("7232", "3", "724", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("7233", "3", "724", "4", "(250) 220-2036");
INSERT INTO `wp_gf_entry_meta` VALUES("7234", "3", "724", "7", "April 27, 2018");
INSERT INTO `wp_gf_entry_meta` VALUES("7235", "3", "724", "5", "Me and My Family\r\n\r\nRequest:  Can I find out what I could expect to learn in this course?  I can\'t seem to see a poster.  Thanks.");
INSERT INTO `wp_gf_entry_meta` VALUES("7236", "3", "724", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_gf_entry_meta` VALUES("7237", "14", "725", "1.3", "Aleksandra");
INSERT INTO `wp_gf_entry_meta` VALUES("7238", "14", "725", "1.6", "Konieczna");
INSERT INTO `wp_gf_entry_meta` VALUES("7239", "14", "725", "2", "12/06/1997");
INSERT INTO `wp_gf_entry_meta` VALUES("7240", "14", "725", "3", "(250) 896-9610");
INSERT INTO `wp_gf_entry_meta` VALUES("7241", "14", "725", "4", "olenka.kon@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7242", "14", "725", "11", "The UVic counselling resources page");
INSERT INTO `wp_gf_entry_meta` VALUES("7243", "14", "725", "5", "I\'ve struggled with depression and anxiety for quite some years now. I\'ve had a troubling childhood, and I\'ve worked through some things when I was a bit younger, but I still struggle with issues as an adult. I can\'t take care of myself properly, I get upset really easily, I overthink things constantly sometimes to the point of panicking, I feel sad and unhappy most of the time, and often withdraw from the people and tasks around me. I don\'t have much support in my life, and I\'m looking for some advice and help with healing and getting through this.");
INSERT INTO `wp_gf_entry_meta` VALUES("7244", "14", "725", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7245", "14", "725", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7246", "14", "725", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7247", "14", "725", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("7248", "14", "725", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7249", "14", "725", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("7250", "14", "726", "1.3", "Gloria");
INSERT INTO `wp_gf_entry_meta` VALUES("7251", "14", "726", "1.6", "Romain");
INSERT INTO `wp_gf_entry_meta` VALUES("7252", "14", "726", "2", "July 29th, 1995");
INSERT INTO `wp_gf_entry_meta` VALUES("7253", "14", "726", "3", "(250) 634-4004");
INSERT INTO `wp_gf_entry_meta` VALUES("7254", "14", "726", "4", "gloriaromain@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7255", "14", "726", "11", "Google");
INSERT INTO `wp_gf_entry_meta` VALUES("7256", "14", "726", "5", "Anxiety, panic attacks");
INSERT INTO `wp_gf_entry_meta` VALUES("7257", "14", "726", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7258", "14", "726", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7259", "14", "726", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7260", "14", "726", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7261", "14", "726", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("7262", "14", "727", "1.3", "Kelsey");
INSERT INTO `wp_gf_entry_meta` VALUES("7263", "14", "727", "1.6", "Green");
INSERT INTO `wp_gf_entry_meta` VALUES("7264", "14", "727", "2", "March 14 1994");
INSERT INTO `wp_gf_entry_meta` VALUES("7265", "14", "727", "3", "(778) 533-8478");
INSERT INTO `wp_gf_entry_meta` VALUES("7266", "14", "727", "4", "Kelsey_green@live.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("7267", "14", "727", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("7268", "14", "727", "5", "Looking for couple counselling with my boyfriend of 3 years (we also have a 2 year old)");
INSERT INTO `wp_gf_entry_meta` VALUES("7269", "14", "727", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7270", "14", "727", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7271", "14", "727", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7272", "14", "727", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7273", "14", "727", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7274", "14", "727", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("7275", "14", "727", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("7276", "14", "727", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("7277", "14", "728", "1.3", "David");
INSERT INTO `wp_gf_entry_meta` VALUES("7278", "14", "728", "1.6", "Van Dusen");
INSERT INTO `wp_gf_entry_meta` VALUES("7279", "14", "728", "2", "01/01/1901");
INSERT INTO `wp_gf_entry_meta` VALUES("7280", "14", "728", "3", "(250) 896-2704");
INSERT INTO `wp_gf_entry_meta` VALUES("7281", "14", "728", "4", "dave@urbanweb.net");
INSERT INTO `wp_gf_entry_meta` VALUES("7282", "14", "728", "11", "internet");
INSERT INTO `wp_gf_entry_meta` VALUES("7283", "14", "728", "5", "Internet Quirks");
INSERT INTO `wp_gf_entry_meta` VALUES("7284", "14", "728", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7285", "14", "728", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7286", "14", "728", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("7287", "14", "728", "9.1", "$80-120");
INSERT INTO `wp_gf_entry_meta` VALUES("7288", "14", "729", "1.3", "Gabrielle");
INSERT INTO `wp_gf_entry_meta` VALUES("7289", "14", "729", "1.6", "Canuel");
INSERT INTO `wp_gf_entry_meta` VALUES("7290", "14", "729", "2", "June 23 1999");
INSERT INTO `wp_gf_entry_meta` VALUES("7291", "14", "729", "3", "(778) 870-9821");
INSERT INTO `wp_gf_entry_meta` VALUES("7292", "14", "729", "4", "skata@hotmail.ca");
INSERT INTO `wp_gf_entry_meta` VALUES("7293", "14", "729", "11", "Internet");
INSERT INTO `wp_gf_entry_meta` VALUES("7294", "14", "729", "5", "Social anxiety, depression, issues with my mother (we don\'t have a good relationship).");
INSERT INTO `wp_gf_entry_meta` VALUES("7295", "14", "729", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7296", "14", "729", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7297", "14", "729", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7298", "14", "729", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7299", "14", "729", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7300", "14", "729", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("7301", "14", "730", "1.3", "Seth");
INSERT INTO `wp_gf_entry_meta` VALUES("7302", "14", "730", "1.6", "Eggler");
INSERT INTO `wp_gf_entry_meta` VALUES("7303", "14", "730", "2", "January 21st 1988");
INSERT INTO `wp_gf_entry_meta` VALUES("7304", "14", "730", "3", "(250) 891-8889");
INSERT INTO `wp_gf_entry_meta` VALUES("7305", "14", "730", "4", "setheggler@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7306", "14", "730", "11", "From a friend receiving counselling from this centre");
INSERT INTO `wp_gf_entry_meta` VALUES("7307", "14", "730", "5", "Looking to seek help for issues concerning childhood sexual abuse and problems forming intimate relationships.");
INSERT INTO `wp_gf_entry_meta` VALUES("7308", "14", "730", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7309", "14", "730", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7310", "14", "730", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7311", "14", "730", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7312", "14", "730", "9.6", "$20");
INSERT INTO `wp_gf_entry_meta` VALUES("7313", "14", "731", "1.3", "Courtney");
INSERT INTO `wp_gf_entry_meta` VALUES("7314", "14", "731", "1.6", "Lang");
INSERT INTO `wp_gf_entry_meta` VALUES("7315", "14", "731", "2", "May 28/1992");
INSERT INTO `wp_gf_entry_meta` VALUES("7316", "14", "731", "3", "(250) 507-1718");
INSERT INTO `wp_gf_entry_meta` VALUES("7317", "14", "731", "4", "thermonlang@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7318", "14", "731", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("7319", "14", "731", "5", "Hi there:\r\nI\'m going through a tough time and would really appreciate some individual counseling... I\'ve been seeing another counselor who I\'ve seen for a few years (Tamara Dalrymple, who is awesome,) but she\'s away right now and I am really struggling. Is there any availability coming up soon? I am seeing my GP and am on medication, but it\'s not enough right now.\r\nThank you.");
INSERT INTO `wp_gf_entry_meta` VALUES("7320", "14", "731", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7321", "14", "731", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7322", "14", "731", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7323", "14", "731", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7324", "14", "731", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_gf_entry_meta` VALUES("7325", "14", "731", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("7326", "14", "731", "9.5", "$30");
INSERT INTO `wp_gf_entry_meta` VALUES("7327", "14", "732", "1.3", "Miss Arlin");
INSERT INTO `wp_gf_entry_meta` VALUES("7328", "14", "732", "1.6", "Ablaza");
INSERT INTO `wp_gf_entry_meta` VALUES("7329", "14", "732", "2", "February 15, 1973");
INSERT INTO `wp_gf_entry_meta` VALUES("7330", "14", "732", "3", "(250) 216-7537");
INSERT INTO `wp_gf_entry_meta` VALUES("7331", "14", "732", "4", "arlinablaza@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7332", "14", "732", "11", "via Karolina Dudzik at Island Health Mental Health Central Access & Rapid Engagement Service");
INSERT INTO `wp_gf_entry_meta` VALUES("7333", "14", "732", "5", "17-year struggle with depression, anxiety.\r\nControlled with antidepressant and mood stabilizer drugs but certain situations destabilize me so that friends have described me as \"inconsolable\".\r\nRecognized need for long-term therapy but require affordable options.\r\nAlso require flexible schedule for appointments: my job entails shift work weekdays and weekends, days, evenings and sometimes nights.  Additionally, I have commitments 5 x week to help with my physical and mental health & well-being.");
INSERT INTO `wp_gf_entry_meta` VALUES("7334", "14", "732", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7335", "14", "732", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7336", "14", "732", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7337", "14", "732", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7338", "14", "732", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7339", "14", "732", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("7340", "14", "732", "9.3", "$50");
INSERT INTO `wp_gf_entry_meta` VALUES("7341", "14", "733", "1.3", "Tanya");
INSERT INTO `wp_gf_entry_meta` VALUES("7342", "14", "733", "1.6", "Burnett");
INSERT INTO `wp_gf_entry_meta` VALUES("7343", "14", "733", "2", "February 21 1974");
INSERT INTO `wp_gf_entry_meta` VALUES("7344", "14", "733", "3", "(250) 886-9029");
INSERT INTO `wp_gf_entry_meta` VALUES("7345", "14", "733", "4", "tanyaburnett@rocketmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7346", "14", "733", "11", "internet search");
INSERT INTO `wp_gf_entry_meta` VALUES("7347", "14", "733", "5", "I have depression and anxiety and have been without help for over a year, I have been coping well to an extent, however my current relationship has become strained and I am feeling like I am helpless and quite frankly sometimes scared.  Not violent and I never think he would be, I am losing myself and I feel it is because I have no one to talk to.  \r\nI am looking for a psychiatrist as well to help me with my meds.");
INSERT INTO `wp_gf_entry_meta` VALUES("7348", "14", "733", "12.1", "I only want individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7349", "14", "733", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7350", "14", "733", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7351", "14", "733", "9.4", "$40");
INSERT INTO `wp_gf_entry_meta` VALUES("7352", "14", "734", "1.3", "Cameron");
INSERT INTO `wp_gf_entry_meta` VALUES("7353", "14", "734", "1.6", "Bowler");
INSERT INTO `wp_gf_entry_meta` VALUES("7354", "14", "734", "2", "May 3rd, 1984");
INSERT INTO `wp_gf_entry_meta` VALUES("7355", "14", "734", "3", "(250) 516-8257");
INSERT INTO `wp_gf_entry_meta` VALUES("7356", "14", "734", "4", "cameronbowler84@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7357", "14", "734", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("7358", "14", "734", "5", "This is a test intake form, i wanted to confirm confirm you received this test form !");
INSERT INTO `wp_gf_entry_meta` VALUES("7359", "14", "734", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7360", "14", "734", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_gf_entry_meta` VALUES("7361", "14", "734", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7362", "14", "734", "8.2", "No");
INSERT INTO `wp_gf_entry_meta` VALUES("7363", "14", "734", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("7364", "3", "735", "1.3", "Cameron");
INSERT INTO `wp_gf_entry_meta` VALUES("7365", "3", "735", "1.6", "Bowler");
INSERT INTO `wp_gf_entry_meta` VALUES("7366", "3", "735", "2", "cameronbowler84@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7367", "3", "735", "3.1", "407 - 935 Cloverdale ave");
INSERT INTO `wp_gf_entry_meta` VALUES("7368", "3", "735", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("7369", "3", "735", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("7370", "3", "735", "3.5", "v8x2t");
INSERT INTO `wp_gf_entry_meta` VALUES("7371", "3", "735", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("7372", "3", "735", "4", "(250) 516-8257");
INSERT INTO `wp_gf_entry_meta` VALUES("7373", "3", "735", "7", "Test");
INSERT INTO `wp_gf_entry_meta` VALUES("7374", "3", "735", "5", "Testing the Training Registration Form");
INSERT INTO `wp_gf_entry_meta` VALUES("7375", "3", "735", "9.3", "cash (in person)");
INSERT INTO `wp_gf_entry_meta` VALUES("7376", "14", "736", "1.3", "Cameron");
INSERT INTO `wp_gf_entry_meta` VALUES("7377", "14", "736", "1.6", "Test2");
INSERT INTO `wp_gf_entry_meta` VALUES("7378", "14", "736", "2", "TEst2");
INSERT INTO `wp_gf_entry_meta` VALUES("7379", "14", "736", "3", "(250) 516-8257");
INSERT INTO `wp_gf_entry_meta` VALUES("7380", "14", "736", "4", "cameronbowler84@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7381", "14", "736", "11", "Online");
INSERT INTO `wp_gf_entry_meta` VALUES("7382", "14", "736", "5", "Test#2 to confirm this form is recieved");
INSERT INTO `wp_gf_entry_meta` VALUES("7383", "14", "736", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_gf_entry_meta` VALUES("7384", "14", "736", "6.3", "Saturday daytime");
INSERT INTO `wp_gf_entry_meta` VALUES("7385", "14", "736", "8.1", "Yes");
INSERT INTO `wp_gf_entry_meta` VALUES("7386", "14", "736", "9.7", "$10");
INSERT INTO `wp_gf_entry_meta` VALUES("7387", "3", "737", "1.3", "Cameron");
INSERT INTO `wp_gf_entry_meta` VALUES("7388", "3", "737", "1.6", "Test2");
INSERT INTO `wp_gf_entry_meta` VALUES("7389", "3", "737", "2", "cameronbowler84@gmail.com");
INSERT INTO `wp_gf_entry_meta` VALUES("7390", "3", "737", "3.1", "408 - 935 Cloverdale ave");
INSERT INTO `wp_gf_entry_meta` VALUES("7391", "3", "737", "3.3", "Victoria");
INSERT INTO `wp_gf_entry_meta` VALUES("7392", "3", "737", "3.4", "British Columbia");
INSERT INTO `wp_gf_entry_meta` VALUES("7393", "3", "737", "3.5", "v8x2t");
INSERT INTO `wp_gf_entry_meta` VALUES("7394", "3", "737", "3.6", "Canada");
INSERT INTO `wp_gf_entry_meta` VALUES("7395", "3", "737", "4", "(250) 516-8257");
INSERT INTO `wp_gf_entry_meta` VALUES("7396", "3", "737", "7", "Test");
INSERT INTO `wp_gf_entry_meta` VALUES("7397", "3", "737", "5", "Test#2 to confirm this form was received");
INSERT INTO `wp_gf_entry_meta` VALUES("7398", "3", "737", "9.3", "cash (in person)");

/* INSERT TABLE DATA: wp_gf_form */
INSERT INTO `wp_gf_form` VALUES("1", "General Inquiry ", "2014-07-09 17:26:33", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("2", "Opt-in/Opt-out: E-mail Notification Option", "2014-07-23 18:48:40", NULL, "1", "1");
INSERT INTO `wp_gf_form` VALUES("3", "Register for Training", "2014-07-30 16:27:27", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("4", "Contact Form: Counselling", "2014-07-30 16:40:21", NULL, "1", "1");
INSERT INTO `wp_gf_form` VALUES("5", "Contact Form: General Submission", "2014-07-30 16:53:32", NULL, "1", "1");
INSERT INTO `wp_gf_form` VALUES("6", "2014 Fundraising Event, November 22, 2014", "2014-08-14 20:37:01", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("7", "Contact Form: Director of Development", "2015-02-18 19:54:30", NULL, "1", "1");
INSERT INTO `wp_gf_form` VALUES("8", "Pastoral Care Team Training Registration Form (Selkirk and Tolmie Regions)", "2015-07-22 18:19:24", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("9", "40th Fundraising Gala Event 2015", "2015-09-10 18:29:38", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("10", "Youth Support Group - Long Registration Form", "2016-03-22 18:29:37", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("11", "Annual Society Membership Form", "2016-04-14 18:37:20", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("12", "Register Interest in a Course/Workshop/Training Programme", "2016-04-19 17:29:12", NULL, "1", "1");
INSERT INTO `wp_gf_form` VALUES("13", "Pastoral Care Team Training Registration Form - Cowichan/Malaspina", "2016-08-03 17:08:19", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("14", "Intake Survey", "2016-11-09 17:53:10", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("15", "Young Adult Group - Long Registration Form", "2017-01-10 20:34:44", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("16", "Client-Counsellor Feedback Form", "2017-03-28 19:40:32", NULL, "1", "0");
INSERT INTO `wp_gf_form` VALUES("17", "Register for Training - Copy 1", "2017-07-27 20:09:08", NULL, "1", "1");
INSERT INTO `wp_gf_form` VALUES("18", "Register for Training ", "2017-12-20 22:41:20", NULL, "1", "0");

/* INSERT TABLE DATA: wp_gf_form_meta */
INSERT INTO `wp_gf_form_meta` VALUES("1", "{\"title\":\"General Inquiry \",\"description\":\"Please use this form to contact us if you want to set up an initial appointment with our Counselling Supervisor, or have a general question about the counselling, courses and training program services we offer.  You may also call us at (250) 472-2851 at your convenience.  Or just leave us a comment to let us know how we are doing. Thank you! \",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Personal information provided is collected under the authority of the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of providing supportive services and for statistical purposes. We do not share your email address or confidential information with any other outside source. If you have any questions, please contact us at (250) 472-2851.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":1,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not share your email address with any other outside source.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":1,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"phone\",\"id\":5,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":1,\"pageNumber\":1,\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Your Message\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":1,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"id\":1,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\",\"subLabelPlacement\":\"below\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"schedulePendingMessage\":\"\"}", "", "{\"53bd7b49e9c6a\":{\"id\":\"53bd7b49e9c6a\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us!\\u00a0We will contact you within 2-4\\u00a0business days.\\r\\n\\r\\n&nbsp;\\r\\n\\r\\n&nbsp;\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"53bd7b49e949c\":{\"isActive\":true,\"id\":\"53bd7b49e949c\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"admin@localhost\",\"toType\":\"email\",\"cc\":\"\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{Email:2}\",\"fromName\":\"{Name (First):1.3}{Name (Last):1.6}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");
INSERT INTO `wp_gf_form_meta` VALUES("2", "a:15:{s:5:\"title\";s:42:\"Opt-in/Opt-out: E-mail Notification Option\";s:11:\"description\";s:0:\"\";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:6:{i:0;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:1;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:4:\"Name\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:4:\"name\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:2;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Email\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"email\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:6;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:36:\"Opt - In: Check all boxes that apply\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"checkbox\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:3:{i:0;a:3:{s:2:\"id\";s:3:\"6.1\";s:5:\"label\";s:15:\"Newsletter only\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:3:\"6.2\";s:5:\"label\";s:41:\"Newsletter, Courses and Training Programs\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:3:\"6.3\";s:5:\"label\";s:29:\"Courses and Training Programs\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:7:\"choices\";a:3:{i:0;a:4:{s:4:\"text\";s:15:\"Newsletter only\";s:5:\"value\";s:15:\"Newsletter only\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:1;a:4:{s:4:\"text\";s:41:\"Newsletter, Courses and Training Programs\";s:5:\"value\";s:41:\"Newsletter, Courses and Training Programs\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:2;a:4:{s:4:\"text\";s:29:\"Courses and Training Programs\";s:5:\"value\";s:29:\"Courses and Training Programs\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:7;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:37:\"Opt - Out: Check all boxes that apply\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"checkbox\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:3:{i:0;a:3:{s:2:\"id\";s:3:\"7.1\";s:5:\"label\";s:10:\"Newsletter\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:3:\"7.2\";s:5:\"label\";s:29:\"Courses and Training Programs\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:3:\"7.3\";s:5:\"label\";s:42:\"All Notifications from South Island Centre\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:7:\"choices\";a:3:{i:0;a:4:{s:4:\"text\";s:10:\"Newsletter\";s:5:\"value\";s:10:\"Newsletter\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:1;a:4:{s:4:\"text\";s:29:\"Courses and Training Programs\";s:5:\"value\";s:29:\"Courses and Training Programs\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:2;a:4:{s:4:\"text\";s:42:\"All Notifications from South Island Centre\";s:5:\"value\";s:42:\"All Notifications from South Island Centre\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:8;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:12:\"Your Message\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"textarea\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:5;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:63:\"Please enter the number and letters (case sensitive!). Thanks. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:9;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:7:\"Captcha\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"captcha\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:14:\"simple_captcha\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:11:\"displayOnly\";b:1;s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}}s:2:\"id\";i:2;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;}", "", "a:1:{s:13:\"53d00388348b1\";a:8:{s:2:\"id\";s:13:\"53d00388348b1\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53d00388340e0\";a:14:{s:2:\"id\";s:13:\"53d00388340e0\";s:2:\"to\";s:15:\"Admin@localhost\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:13:\"{admin_email}\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_gf_form_meta` VALUES("3", "{\"title\":\"Register for Training\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The information you provide during the registration process is collected and used under the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering training programs, informing you of our services, and\\/or for statistical purposes. If you have questions about the collection or use oof your personal information, please call us at (250) 472-2851.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not share your email address or confidential information with any other sources.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"canadian\",\"defaultCountry\":\"Canada\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\",\"isHidden\":true},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"text\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":7,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Start Date of Course :\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Title of Training Program you are registering for\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"If you pay by credit card, please call us for telephone processing (a surcharge is added to all credit card transactions). Cash can be dropped off in person at South Island Centre from Monday-Thursday (9am-2pm). Your receipt will be available on the first day of training.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"debit card (in person)\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"cash (in person)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"value\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"debit card (in person)\",\"value\":\"debit card (in person)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"cash (in person)\",\"value\":\"cash (in person)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Please enter the case sensitive numbers and letters to prove you\'re not a robot.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Captcha\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"}],\"id\":3,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\",\"subLabelPlacement\":\"below\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"schedulePendingMessage\":\"\"}", "", "{\"53d91cefa91e6\":{\"id\":\"53d91cefa91e6\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! \\u00a0If you are submitting this form between December 16-31, 2016, we will\\u00a0address your course registration request in the new year.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"53d91cefa8a17\":{\"isActive\":true,\"id\":\"53d91cefa8a17\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"courses@localhost\",\"toType\":\"email\",\"cc\":\"\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"courses@localhost\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");
INSERT INTO `wp_gf_form_meta` VALUES("4", "a:34:{s:5:\"title\";s:25:\"Contact Form: Counselling\";s:11:\"description\";s:201:\"Please fill in the required fields below. Please feel free to share in the Your Message box the reason you are seeking counselling. We will attempt to contact you within 3-4 business days.  Thank you! \";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:5:{i:0;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:1;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:4:\"Name\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:4:\"name\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:2;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Phone\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"phone\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:8:\"standard\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:3;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Email\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"email\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:4;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:12:\"Your Message\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"textarea\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:62:\"Please enter the letters and numbers (case sensitive). Thanks!\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:5;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:7:\"Captcha\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"captcha\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:14:\"simple_captcha\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:11:\"displayOnly\";b:1;s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";}}s:2:\"id\";i:4;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", NULL, "a:1:{s:13:\"53d91ff5737b8\";a:8:{s:2:\"id\";s:13:\"53d91ff5737b8\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53d91ff572fe8\";a:14:{s:2:\"id\";s:13:\"53d91ff572fe8\";s:2:\"to\";s:21:\"counselling@localhost\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:21:\"counselling@localhost\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_gf_form_meta` VALUES("5", "a:34:{s:5:\"title\";s:32:\"Contact Form: General Submission\";s:11:\"description\";s:53:\"Please fill in the required fields below. Thank you! \";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:5:{i:0;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:1;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:4:\"Name\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:4:\"name\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:2;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Email\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"email\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:3;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Phone\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"phone\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:8:\"standard\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:4;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:12:\"Your Message\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"textarea\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:64:\"Please enter the numbers and letters (case sensitive!). Thanks. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:5;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:7:\"Captcha\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"captcha\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:14:\"simple_captcha\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:11:\"displayOnly\";b:1;s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";}}s:2:\"id\";i:5;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", NULL, "a:1:{s:13:\"53d9230c8b06a\";a:8:{s:2:\"id\";s:13:\"53d9230c8b06a\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53d9230c8a89b\";a:14:{s:2:\"id\";s:13:\"53d9230c8a89b\";s:2:\"to\";s:14:\"info@localhost\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:14:\"info@localhost\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_gf_form_meta` VALUES("6", "a:34:{s:5:\"title\";s:41:\"2014 Fundraising Event, November 22, 2014\";s:11:\"description\";s:79:\"Reserve advanced tickets for our annual fundraising event by November 14, 2014.\";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:9:{i:0;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:1;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:4:\"Name\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:4:\"name\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:136:\"We will not share, trade, sell or rent your email with any outside source. It is used solely for the purpose of communicating with you. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:5;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Email\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"email\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:6;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Phone\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"phone\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:8:\"standard\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:153:\"We will not share, trade, rent or sell your contact information with any outside source. It is solely used for the purpose of keeping in touch with you. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:7;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:7:\"Address\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"address\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:13:\"international\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";b:1;s:11:\"hideCountry\";b:1;s:9:\"hideState\";b:0;s:6:\"inputs\";a:6:{i:0;a:3:{s:2:\"id\";d:7.0999999999999996447286321199499070644378662109375;s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:7.20000000000000017763568394002504646778106689453125;s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";d:7.29999999999999982236431605997495353221893310546875;s:5:\"label\";s:4:\"City\";s:4:\"name\";s:0:\"\";}i:3;a:3:{s:2:\"id\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"label\";s:16:\"State / Province\";s:4:\"name\";s:0:\"\";}i:4;a:3:{s:2:\"id\";d:7.5;s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:0:\"\";}i:5;a:3:{s:2:\"id\";d:7.5999999999999996447286321199499070644378662109375;s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:250:\"Payment for up to 5 tickets is due at pick-up time (deadline: November 14, 2014).  Hosts may reserve tickets at any time, but payment must be received by November 14 at noon.  Ticket pick-up time: M-Th,10am-Noon from Monday, October 20, 2014 onwards.\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:8;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:93:\"Advanced Ticket Reservation Order (reserve anytime; payment due on Friday, November 14, 2014)\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"checkbox\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:4:{i:0;a:3:{s:2:\"id\";s:3:\"8.1\";s:5:\"label\";s:59:\"Single Ticket (payment is due when you pick up your ticket)\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:3:\"8.2\";s:5:\"label\";s:80:\"Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:3:\"8.3\";s:5:\"label\";s:55:\"Host:  6 Tickets (reserve anytime; payment due Nov. 14)\";s:4:\"name\";s:0:\"\";}i:3;a:3:{s:2:\"id\";s:3:\"8.4\";s:5:\"label\";s:55:\"Host: 10 Tickets (reserve anytime; payment due Nov. 14)\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:7:\"choices\";a:4:{i:0;a:4:{s:4:\"text\";s:59:\"Single Ticket (payment is due when you pick up your ticket)\";s:5:\"value\";s:59:\"Single Ticket (payment is due when you pick up your ticket)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:1;a:4:{s:4:\"text\";s:80:\"Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)\";s:5:\"value\";s:80:\"Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:2;a:4:{s:4:\"text\";s:55:\"Host:  6 Tickets (reserve anytime; payment due Nov. 14)\";s:5:\"value\";s:55:\"Host:  6 Tickets (reserve anytime; payment due Nov. 14)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:3;a:4:{s:4:\"text\";s:55:\"Host: 10 Tickets (reserve anytime; payment due Nov. 14)\";s:5:\"value\";s:55:\"Host: 10 Tickets (reserve anytime; payment due Nov. 14)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:5;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:9;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:108:\"Enter the total number of tickets you would like to purchase and will pay for by Friday, November 14, 2014. \";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:6:\"number\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:12:\"numberFormat\";s:11:\"decimal_dot\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";b:1;s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:6;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:342:\"Please drop off cash in person Monday-Thursday:10am-noon. Please make the cheque payable to South Island Centre for Counselling and Training and drop it off/mail it to: 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6; write \"tickets for Nov 22\" on the memo line.  Please call 250-472-2851 ext 101 to if you would like to pay by credit card. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:11;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:99:\"Payment Options: please check a box below to indicate how you will pay for the reserved ticket(s). \";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"checkbox\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:3:{i:0;a:3:{s:2:\"id\";s:4:\"11.1\";s:5:\"label\";s:70:\"cash (drop off in person when you pick up your ticket (by November 14)\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:4:\"11.2\";s:5:\"label\";s:54:\"cheque (may be post-dated to Nov. 14 and mailed to us)\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:4:\"11.3\";s:5:\"label\";s:63:\"credit card (please call 250-472-2851 ext 101; call by Nov. 14)\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:7:\"choices\";a:3:{i:0;a:4:{s:4:\"text\";s:70:\"cash (drop off in person when you pick up your ticket (by November 14)\";s:5:\"value\";s:70:\"cash (drop off in person when you pick up your ticket (by November 14)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:1;a:4:{s:4:\"text\";s:54:\"cheque (may be post-dated to Nov. 14 and mailed to us)\";s:5:\"value\";s:54:\"cheque (may be post-dated to Nov. 14 and mailed to us)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:2;a:4:{s:4:\"text\";s:63:\"credit card (please call 250-472-2851 ext 101; call by Nov. 14)\";s:5:\"value\";s:63:\"credit card (please call 250-472-2851 ext 101; call by Nov. 14)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:7;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:12;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:77:\"Please use this message box for any further comments or concerns. Thank you! \";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"textarea\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:8;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:64:\"Please enter the numbers and letters (case sensitive!). Thanks. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:13;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:7:\"Captcha\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"captcha\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:14:\"simple_captcha\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:11:\"displayOnly\";b:1;s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";}}s:2:\"id\";i:6;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", "", "a:1:{s:13:\"53ed1ded32437\";a:8:{s:2:\"id\";s:13:\"53ed1ded32437\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53ed1ded31c03\";a:7:{s:2:\"id\";s:13:\"53ed1ded31c03\";s:2:\"to\";s:13:\"{admin_email}\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";}}");
INSERT INTO `wp_gf_form_meta` VALUES("7", "a:36:{s:5:\"title\";s:37:\"Contact Form: Director of Development\";s:11:\"description\";s:0:\"\";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:5:{i:0;a:19:{s:2:\"id\";i:8;s:5:\"label\";s:4:\"Name\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"name\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:8.300000000000000710542735760100185871124267578125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:20:{s:2:\"id\";i:6;s:5:\"label\";s:5:\"Phone\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"phone\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"phoneFormat\";s:8:\"standard\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:19:{s:2:\"id\";i:7;s:5:\"label\";s:5:\"Email\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:19:{s:2:\"id\";i:5;s:5:\"label\";s:13:\"Your Message \";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:22:{s:2:\"id\";i:4;s:5:\"label\";s:7:\"Captcha\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:7:\"captcha\";s:10:\"isRequired\";b:0;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"displayOnly\";b:1;s:11:\"captchaType\";s:14:\"simple_captcha\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:66:\"Please enter the letters and numbers (case sensitive). Thank you. \";s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}}s:2:\"id\";i:7;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:13:\"notifications\";a:1:{s:13:\"54e4edf6c1a9a\";a:7:{s:2:\"id\";s:13:\"54e4edf6c1a9a\";s:2:\"to\";s:13:\"{admin_email}\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";}}s:13:\"confirmations\";a:1:{s:13:\"54e4edf6c42c6\";a:8:{s:2:\"id\";s:13:\"54e4edf6c42c6\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", "", "a:1:{s:13:\"54e4edf6c42c6\";a:8:{s:2:\"id\";s:13:\"54e4edf6c42c6\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"54e4fb94379d5\";a:14:{s:2:\"id\";s:13:\"54e4fb94379d5\";s:4:\"name\";s:24:\"Director of Development \";s:5:\"event\";s:15:\"form_submission\";s:2:\"to\";s:31:\"directorofdevelopment@localhost\";s:6:\"toType\";s:5:\"email\";s:3:\"bcc\";s:0:\"\";s:7:\"subject\";s:27:\"New submission {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:4:\"from\";s:29:\"{directorofdevelopment_email}\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_gf_form_meta` VALUES("8", "{\"title\":\"Pastoral Care Team Training Registration Form (Selkirk and Tolmie Regions)\",\"description\":\"Registration Form for Lay and Clergy \",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":true,\"label\":\"How many person(s) are you registering for the Pastoral Care Team Training (PCTT) workshop on Saturday, October 14, 2017? Please check one.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"5.1\",\"label\":\"just myself\",\"name\":\"\"},{\"id\":\"5.2\",\"label\":\"myself and additional persons from the same congregation.\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"just myself\",\"value\":\"just myself\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"myself and additional persons from the same congregation.\",\"value\":\"myself and additional persons from the same congregation.\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":14,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Are you (and anyone else from the same congregation you are registering) currently an Anglican parishioner from the Tolmie or Selkirk regions?\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"14.1\",\"label\":\"yes\",\"name\":\"\"},{\"id\":\"14.2\",\"label\":\"no\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"yes\",\"value\":\"yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"no\",\"value\":\"no\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":15,\"inputName\":\"\",\"isRequired\":false,\"label\":\"If Yes, have you had a conversation with your parish priest, and received their endorsement, to register for this Pastoral Care Team Training? (answering YES will make you eligible to receive a bursary towards this workshop from the Anglican Diocese of BC\'s Vision Fund.)\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"15.1\",\"label\":\"yes\",\"name\":\"\"},{\"id\":\"15.2\",\"label\":\"no\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"yes\",\"value\":\"yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"no\",\"value\":\"no\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Please list the church you are currently attending, the denomination and the location.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The personal information you provide during the registration process is collected and used under the authority of the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering courses or training programs, informing you of our services and benefits, and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101. \",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name of Principal Registrant\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not rent, trade, sell, or share your email address or confidential information with any other outside source.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"international\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":false,\"hideCountry\":false,\"hideState\":false,\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Please indicate the level of prior pastoral care team training you have received. If you have never attended a PCTT course offered with South Island Centre, please check \\\"basic\\\". If you have attended the basic level with us, please check \\\"advanced\\\". If you have never attended a PCTT course with us, but have relevant prior experience, please consult with your parish priest, if the advanced level is appropriate for you.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"Basic (never attended a PCTT workshop)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"Advanced (attended a basic PCTT workshop)\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"Basic (never attended a PCTT workshop)\",\"value\":\"Basic (never attended a PCTT workshop)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Advanced (attended a basic PCTT workshop)\",\"value\":\"Advanced (attended a basic PCTT workshop)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)\",\"value\":\"Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":10,\"inputName\":\"\",\"isRequired\":false,\"label\":\"If you are registering additional parishioners from your church, please list their names and their current training level (basic or advanced) below.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Please make the check payable to \\\"South Island Centre for Counselling and Training\\\". Debit card transactions can only made in person (M-Th, 10am-1pm). Credit card transactions can be made in person (M-Th, 10am-1pm) or over the phone during regular office hours (M-Th, 9am-1pm). \",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":11,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options (please check one of the options below); payment is due at time of registration or at the latest by Tuesday, October 10, 2017. If you have registered additional persons, you will be responsible to submit payment for the entire group at this time.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"11.1\",\"label\":\"Non-bursary option: cheque ($105 per registrant)\",\"name\":\"\"},{\"id\":\"11.2\",\"label\":\"Non-bursary option: debit card ($105 per registrant) - in person only\",\"name\":\"\"},{\"id\":\"11.3\",\"label\":\"Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)\",\"name\":\"\"},{\"id\":\"11.4\",\"label\":\"Bursary option: cheque ($15 per registrant)\",\"name\":\"\"},{\"id\":\"11.5\",\"label\":\"Bursary option: debit card ($15 per registrant) - in person only\",\"name\":\"\"},{\"id\":\"11.6\",\"label\":\"Bursary option: credit card ($15 per registrant)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"Non-bursary option: cheque ($105 per registrant)\",\"value\":\"Non-bursary option: cheque ($105 per registrant)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Non-bursary option: debit card ($105 per registrant) - in person only\",\"value\":\"Non-bursary option: debit card ($105 per registrant) - in person only\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)\",\"value\":\"Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Bursary option: cheque ($15 per registrant)\",\"value\":\"Bursary option: cheque ($15 per registrant)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Bursary option: debit card ($15 per registrant) - in person only\",\"value\":\"Bursary option: debit card ($15 per registrant) - in person only\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Bursary option: credit card ($15 per registrant)\",\"value\":\"Bursary option: credit card ($15 per registrant)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":12,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Please enter the letters and numbers that you see below to confirm that you are human (case-sensitive). Thank you.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":8,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"id\":8,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\"}", "", "{\"55afdeac6bf16\":{\"id\":\"55afdeac6bf16\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We\\u00a0will contact you within 2-4 business to confirm your course registration.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "a:1:{s:13:\"55afdeac5ffaf\";a:14:{s:2:\"id\";s:13:\"55afdeac5ffaf\";s:2:\"to\";s:13:\"{admin_email}\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:15:\"{courses_email}\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_gf_form_meta` VALUES("9", "{\"title\":\"40th Fundraising Gala Event 2015\",\"description\":\"40th Gala Fundraiser\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":9,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":2,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":9,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"This email will be used only to communicate with you about the October 17 gala. We will not share, sell, or trade this email address with any other party.\",\"emailConfirmEnabled\":false,\"formId\":9,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":4,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"4.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"4.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"4.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"4.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"4.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"4.6\",\"label\":\"Country\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"international\",\"defaultState\":\"\",\"defaultProvince\":\"\",\"defaultCountry\":\"\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":9,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":10,\"label\":\"Purchase Tickets ($75 per person plus surcharge) by credit card via EventBrite: http:\\/\\/www.eventbrite.com\\/e\\/south-island-centre-for-counsellings-40th-anniversary-fundraising-gala-tickets-18418594512 (copy and paste into a browser). Please indicate the total number of tickets purchased below.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Ticket includes buffet supper, cash bar, live entertainment (jazz from the 30s and 40s), silent auction, door prizes, complimentary underground parking; special hotel rate available for Oct.17 (contact Hotel Grand Pacific directly - quoting OCT15SOUT). \",\"formId\":9,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":9,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please confirm that you are a human. Letters are case-sensitive. Thank you!\",\"formId\":9,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":9,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}", "", "{\"55f1cc12e006a\":{\"id\":\"55f1cc12e006a\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for ordering tickets for our October 17 gala. We will contact you within 2-3 business days to process the payment and confirm the ticket order.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"55f1cc12ddd45\":{\"id\":\"55f1cc12ddd45\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_gf_form_meta` VALUES("10", "{\"title\":\"Youth Support Group - Long Registration Form\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":20,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"20.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"20.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"20.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"20.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"20.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":9,\"label\":\"Gender\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Male\",\"value\":\"Male\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Female\",\"value\":\"Female\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"other\",\"value\":\"other\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"9.1\",\"label\":\"Male\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"Female\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"other\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":10,\"label\":\"Date of Birth\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":4,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":7,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":2,\"label\":\"Guardian\'s Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please include your first and last name. \",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":3,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"3.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"3.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"3.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"3.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"3.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"3.6\",\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"canadian\",\"defaultState\":\"\",\"defaultProvince\":\"\",\"defaultCountry\":\"Canada\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":5,\"label\":\"Guardian\'s Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":6,\"label\":\"Guardian\'s Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":8,\"label\":\"Preferred Method of Contact\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please let us know how you would like to be contacted. \",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":19,\"label\":\"How did you hear about our Support Group?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":21,\"label\":\"Pre-screening Interviews (in person) - please indicate your availability.\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Saturday, June17\\/pm\",\"value\":\"Saturday, June17\\/pm\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Saturday, June 24\\/pm\",\"value\":\"Saturday, June 24\\/pm\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"21.1\",\"label\":\"Saturday, June17\\/pm\",\"name\":\"\"},{\"id\":\"21.2\",\"label\":\"Saturday, June 24\\/pm\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":18,\"label\":\"Payment Options\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Credit Card (surcharge applies)\",\"value\":\"Credit Card (surcharge applies)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Debit Card (in person only)\",\"value\":\"Debit Card (in person only)\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"18.1\",\"label\":\"Credit Card (surcharge applies)\",\"name\":\"\"},{\"id\":\"18.2\",\"label\":\"Debit Card (in person only)\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Payment is due when the registrant has been accepted into the group post pre-screening. \",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":12,\"label\":\"Current Issues (check all that apply)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"academic pressure\",\"value\":\"academic pressure\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"family stress\",\"value\":\"family stress\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"relationship challenges\",\"value\":\"relationship challenges\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"peer pressure\",\"value\":\"peer pressure\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"self-esteem\",\"value\":\"self-esteem\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"general anxiety\",\"value\":\"general anxiety\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"12.1\",\"label\":\"academic pressure\",\"name\":\"\"},{\"id\":\"12.2\",\"label\":\"family stress\",\"name\":\"\"},{\"id\":\"12.3\",\"label\":\"relationship challenges\",\"name\":\"\"},{\"id\":\"12.4\",\"label\":\"peer pressure\",\"name\":\"\"},{\"id\":\"12.5\",\"label\":\"self-esteem\",\"name\":\"\"},{\"id\":\"12.6\",\"label\":\"general anxiety\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":17,\"label\":\"Current medication? Please list name of medications and dosages.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":16,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":10,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}", "", "{\"56f18f11446a0\":{\"id\":\"56f18f11446a0\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! The course facilitator will get in touch with you shortly, to set up a pre-screening interview with the Youth to determine the Youth\'s eligibility to participate in the group.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"56f18f112c134\":{\"id\":\"56f18f112c134\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_gf_form_meta` VALUES("11", "{\"title\":\"Annual Society Membership Form\",\"description\":\"Annual Society Membership Form\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":11,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":2,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"2.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"2.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"2.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"2.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"2.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"2.6\",\"label\":\"Country\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"international\",\"defaultState\":\"\",\"defaultProvince\":\"\",\"defaultCountry\":\"\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":11,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":3,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please enter your usual contact number. \",\"formId\":11,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":4,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Notice of meetings, newsletter etc will be emailed to this address. We respect your privacy. We will not share, trade or rent this address with any outside party. \",\"emailConfirmEnabled\":false,\"formId\":11,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":5,\"label\":\"Membership Information\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"I am a new member.\",\"value\":\"I am a new member.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"I am a returning member.\",\"value\":\"I am a returning member.\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"5.1\",\"label\":\"I am a new member.\",\"name\":\"\"},{\"id\":\"5.2\",\"label\":\"I am a returning member.\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please check one box only. \",\"formId\":11,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":6,\"label\":\"Payment Options\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"cash (in person)\",\"value\":\"cash (in person)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"credit card (can be processed via telephone)\",\"value\":\"credit card (can be processed via telephone)\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"6.1\",\"label\":\"cash (in person)\",\"name\":\"\"},{\"id\":\"6.2\",\"label\":\"credit card (can be processed via telephone)\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please check one payment option. Cash payments can be made in person or via telephone by credit card.\",\"formId\":11,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":7,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"formId\":11,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":11,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}", NULL, "{\"570fe3602e2f7\":{\"id\":\"570fe3602e2f7\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for becoming a member. We look forward to working with you.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"570fe36023aff\":{\"id\":\"570fe36023aff\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_gf_form_meta` VALUES("12", "{\"title\":\"Register Interest in a Course\\/Workshop\\/Training Programme\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":12,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":2,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"2.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"2.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"2.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"2.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"2.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"2.6\",\"label\":\"Country\",\"name\":\"\"}],\"formId\":12,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":12,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":4,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":12,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":5,\"label\":\"Name of Workshop, Course or Training Programme\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please indicate the Course, Workshop or Training Programme you like to indicate interested for. \",\"formId\":12,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":6,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please type the letters and numbers to the right (case-sensitive!). \",\"formId\":12,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":12,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}", NULL, "{\"57166ae89c69d\":{\"id\":\"57166ae89c69d\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}", "{\"57166ae89bed0\":{\"id\":\"57166ae89bed0\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_gf_form_meta` VALUES("13", "{\"title\":\"Pastoral Care Team Training Registration Form - Cowichan\\/Malaspina\",\"description\":\"Registration form for lay and clergy \",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The information you provide is collected and used under the authority of the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering training programs, or informing you of our services and for statistical purposes. If you have questions please contact us at (250) 472-2851. \",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"international\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":false,\"hideCountry\":false,\"hideState\":false,\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Are you a parishioner at a church?\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"5.1\",\"label\":\"yes\",\"name\":\"\"},{\"id\":\"5.2\",\"label\":\"no\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"yes\",\"value\":\"yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"no\",\"value\":\"no\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"If yes, please list the church you are currently attending, the denomination and the location.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":7,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Are you eligible for a bursary from the Anglican Diocese of BC because you are a parishioner of an Anglican Church in the Cowichan\\/Malaspina Region?\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"7.1\",\"label\":\"yes\",\"name\":\"\"},{\"id\":\"7.2\",\"label\":\"no\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"yes\",\"value\":\"yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"no\",\"value\":\"no\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":8,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Start date of the program you are registering for (month\\/date\\/year):\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Please indicate the level of training you are registering for:\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"Basic (never attended a PCTT workshop)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"Advanced (attended a basic PCTT workshop or have relevant experience)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"Basic (never attended a PCTT workshop)\",\"value\":\"Basic (never attended a PCTT workshop)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Advanced (attended a basic PCTT workshop or have relevant experience)\",\"value\":\"Advanced (attended a basic PCTT workshop or have relevant experience)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":13,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Do you have any dietary concerns we should know about?\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":10,\"inputName\":\"\",\"isRequired\":false,\"label\":\"If you are registering for a group of people from your church, please list their names and their desired training level (basic or advanced) below.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"You may pay by debit card in person at South Island Centre M-Th, 9am-2pm.  Credit card payments can be processed over the phone.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":11,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"11.1\",\"label\":\"debit card (in person only)\",\"name\":\"\"},{\"id\":\"11.2\",\"label\":\"credit card (surcharges apply)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"debit card (in person only)\",\"value\":\"debit card (in person only)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"credit card (surcharges apply)\",\"value\":\"credit card (surcharges apply)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":12,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Please enter the letters and numbers that you see below to confirm that you are human (case-sensitive). Thank you.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":13,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"id\":13,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\"}", "", "{\"55afdeac6bf16\":{\"id\":\"55afdeac6bf16\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We\\u00a0will contact you within 2-4 business to confirm your course registration.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"55afdeac5ffaf\":{\"id\":\"55afdeac5ffaf\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"bcc\":\"\",\"from\":\"{courses_email}\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":\"\"}}");
INSERT INTO `wp_gf_form_meta` VALUES("14", "{\"title\":\"Intake Survey\",\"description\":\"If you are a new client and in need of counselling, please complete our Intake Survey. \",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"textarea\",\"id\":2,\"label\":\"Date of Birth\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"phone\",\"id\":3,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\",\"form_id\":\"\"},{\"type\":\"email\",\"id\":4,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"text\",\"id\":11,\"label\":\"How did you hear about us?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"textarea\",\"id\":5,\"label\":\"Presenting Concerns:\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please provide details about your issues and list your appointment preferences. \",\"formId\":14,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"checkbox\",\"id\":12,\"label\":\"Type of counselling you prefer\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"I only want individual counselling\",\"value\":\"I only want individual counselling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"I would participate in a support group\",\"value\":\"I would participate in a support group\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"I would consider being in a support group along with receiving individual counselling\",\"value\":\"I would consider being in a support group along with receiving individual counselling\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"12.1\",\"label\":\"I only want individual counselling\",\"name\":\"\"},{\"id\":\"12.2\",\"label\":\"I would participate in a support group\",\"name\":\"\"},{\"id\":\"12.3\",\"label\":\"I would consider being in a support group along with receiving individual counselling\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":14,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"visibility\":\"visible\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":6,\"label\":\"Preferred Appointment Times and Days Preferred (check all that apply)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"M-F, 9-5pm\",\"value\":\"M-F, 9-5pm\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"M-F, 5-8pm\",\"value\":\"M-F, 5-8pm\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Saturday daytime\",\"value\":\"Saturday daytime\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"6.1\",\"label\":\"M-F, 9-5pm\",\"name\":\"\"},{\"id\":\"6.2\",\"label\":\"M-F, 5-8pm\",\"name\":\"\"},{\"id\":\"6.3\",\"label\":\"Saturday daytime\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"website\",\"id\":7,\"label\":\"Read about our sliding fee scale - copy and paste the URL below into your browser.\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling\\/affordable-counselling\\/\",\"formId\":14,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"checkbox\",\"id\":8,\"label\":\"Extended Health Coverage (please check appropriate box)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Yes\",\"value\":\"Yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No\",\"value\":\"No\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"8.1\",\"label\":\"Yes\",\"name\":\"\"},{\"id\":\"8.2\",\"label\":\"No\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"checkbox\",\"id\":9,\"label\":\"Your Fee based on your combined annual household income (check one)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"$80-120\",\"value\":\"$80-120\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$50-80\",\"value\":\"$50-80\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$50\",\"value\":\"$50\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$40\",\"value\":\"$40\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$30\",\"value\":\"$30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$20\",\"value\":\"$20\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$10\",\"value\":\"$10\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"9.1\",\"label\":\"$80-120\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"$50-80\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"$50\",\"name\":\"\"},{\"id\":\"9.4\",\"label\":\"$40\",\"name\":\"\"},{\"id\":\"9.5\",\"label\":\"$30\",\"name\":\"\"},{\"id\":\"9.6\",\"label\":\"$20\",\"name\":\"\"},{\"id\":\"9.7\",\"label\":\"$10\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"enableChoiceValue\":true,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"}],\"version\":\"2.2.6\",\"id\":14,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"notifications\":{\"58236286e929a\":{\"isActive\":true,\"id\":\"58236286e929a\",\"name\":\"Amber Eaves\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"info@localhost\",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{Email:4}\",\"fromName\":\"{Name (First):1.3}{Name (Last):1.6}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}},\"confirmations\":{\"5823628722303\":{\"id\":\"5823628722303\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will contact you within 2-3 business days.\\r\\n\\r\\nIf this is a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24hrs\\/7 days a week.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}}", "", "{\"5823628722303\":{\"id\":\"5823628722303\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will contact you within 2-3 business days.\\r\\n\\r\\nIf this is a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24hrs\\/7 days a week.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"58236286e929a\":{\"isActive\":true,\"id\":\"58236286e929a\",\"name\":\"Amber Eaves\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"info@localhost\",\"toType\":\"email\",\"cc\":\"\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{Email:4}\",\"fromName\":\"{Name (First):1.3}{Name (Last):1.6}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");
INSERT INTO `wp_gf_form_meta` VALUES("15", "{\"title\":\"Young Adult Group - Long Registration Form\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"text\",\"id\":1,\"label\":\"First and Last Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":15,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":9,\"label\":\"Gender\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Male\",\"value\":\"Male\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Female\",\"value\":\"Female\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"other\",\"value\":\"other\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"9.1\",\"label\":\"Male\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"Female\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"other\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":10,\"label\":\"Date of Birth\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":4,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":7,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":3,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"3.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"3.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"3.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"3.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"3.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"3.6\",\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"canadian\",\"defaultState\":\"\",\"defaultProvince\":\"\",\"defaultCountry\":\"Canada\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"We will not share this information with any other source. \",\"formId\":15,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":8,\"label\":\"Preferred Method of Contact\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":15,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":20,\"label\":\"How did you hear about this Support Group?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":18,\"label\":\"Payment Options\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Credit Card (surcharge applies)\",\"value\":\"Credit Card (surcharge applies)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Debit Card (in person)\",\"value\":\"Debit Card (in person)\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"18.1\",\"label\":\"Credit Card (surcharge applies)\",\"name\":\"\"},{\"id\":\"18.2\",\"label\":\"Debit Card (in person)\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Payment must be submitted upon registration. For debit payments, please pay in person from 9am-2pm, Monday-Thursday. \",\"formId\":15,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":12,\"label\":\"Current issues (check all that apply)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"academic pressure\",\"value\":\"academic pressure\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"family stress\",\"value\":\"family stress\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"relationship challenges\",\"value\":\"relationship challenges\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"peer pressure\",\"value\":\"peer pressure\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"self-esteem\",\"value\":\"self-esteem\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"general anxiety\",\"value\":\"general anxiety\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"12.1\",\"label\":\"academic pressure\",\"name\":\"\"},{\"id\":\"12.2\",\"label\":\"family stress\",\"name\":\"\"},{\"id\":\"12.3\",\"label\":\"relationship challenges\",\"name\":\"\"},{\"id\":\"12.4\",\"label\":\"peer pressure\",\"name\":\"\"},{\"id\":\"12.5\",\"label\":\"self-esteem\",\"name\":\"\"},{\"id\":\"12.6\",\"label\":\"general anxiety\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":17,\"label\":\"Current medication? Please list names of medication and dosage.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":19,\"label\":\"A pre-screening interview will be scheduled in advance to determine suitability for participation in a group setting. Please indicate preferred times for a pre-screening appointment.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Weekday AM (9-noon)\",\"value\":\"Weekday AM (9-noon)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Weekday PM (noon-5)\",\"value\":\"Weekday PM (noon-5)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Weekend\",\"value\":\"Weekend\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"19.1\",\"label\":\"Weekday AM (9-noon)\",\"name\":\"\"},{\"id\":\"19.2\",\"label\":\"Weekday PM (noon-5)\",\"name\":\"\"},{\"id\":\"19.3\",\"label\":\"Weekend\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":16,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":15,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}", "", "{\"56f18f11446a0\":{\"id\":\"56f18f11446a0\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! The course facilitator will get in touch with you shortly, to set up a pre-screening interview with\\u00a0you to determine your\\u00a0eligibility to participate in the group.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"56f18f112c134\":{\"id\":\"56f18f112c134\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_gf_form_meta` VALUES("16", "{\"title\":\"Client-Counsellor Feedback Form\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"date\",\"id\":17,\"label\":\"Date\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"dateType\":\"datepicker\",\"calendarIconType\":\"none\",\"calendarIconUrl\":\"\",\"allowsPrepopulate\":false,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"dateFormat\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":16,\"label\":\"Your Counsellor:\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"This form is intended to provide feedback on your counsellor after your sessions have ended and are anonymous. Please choose the statement from the drop-down menu that most closely corresponds to how you feel. \",\"formId\":16,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":2,\"label\":\"About the Working Relationship with your counsellor - My counsellor was an effective listener\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"description\":\"\",\"formId\":16,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":3,\"label\":\"My counsellor understood my point of view.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":4,\"label\":\"My counsellor focused on what was important to me.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":5,\"label\":\"My counsellor accepted what I said without judging me.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":6,\"label\":\"My counsellor provided a safe and trusting environment.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":7,\"label\":\"My counsellor began and ended our sessions on time.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":8,\"label\":\"My counsellor followed my lead during our sessions when that was appropriate.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":9,\"label\":\"My counsellor provided leadership during our sessions when that was appropriate.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":10,\"label\":\"My counsellor challenged me when\\/if that was appropriate.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":11,\"label\":\"About the results of working with your counsellor: The sessions with my counsellor helped me with what had originally led me to seek counselling.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":12,\"label\":\"Any changes which might have occured in me as a result of my counselling have been positive and welcome.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":13,\"label\":\"Overall Satisfaction: My overall level of satisfaction with the service provided by my counsellor is:\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Very satisfied\",\"value\":\"Very satisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat satisfied\",\"value\":\"Somewhat satisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat dissatisfied\",\"value\":\"Somewhat dissatisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly dissatisfied\",\"value\":\"Strongly dissatisfied\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":14,\"label\":\"Based on my experience, I would recommend my counsellor to others.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Very satisfied\",\"value\":\"Very satisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat satisfied\",\"value\":\"Somewhat satisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat dissatisfied\",\"value\":\"Somewhat dissatisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly dissatisfied\",\"value\":\"Strongly dissatisfied\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":15,\"label\":\"Please use this space below for any additional comments you would like to make on behalf of the counselling services you received.\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":18,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"formId\":16,\"pageNumber\":1,\"description\":\"Please enter the letters (case sensitive) and numbers as shown above. Thank you. \",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false}],\"version\":\"1.9.12.1\",\"id\":16,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}", "", "{\"58dabc30eb235\":{\"id\":\"58dabc30eb235\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for completing the Client-Counsellor feedback form!\\r\\n\\r\\n&nbsp;\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"58dabc30df23e\":{\"isActive\":true,\"id\":\"58dabc30df23e\",\"name\":\"Amber Eaves\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"admin@localhost\",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"\",\"fromName\":\"{user:display_name}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");
INSERT INTO `wp_gf_form_meta` VALUES("17", "{\"title\":\"Register for Training - Copy 1\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The information you provide during the registration process is collected and used under the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering training programs, informing you of our services, and\\/or for statistical purposes. If you have questions about the collection or use oof your personal information, please call us at (250) 472-2851.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not share your email address or confidential information with any other sources.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"canadian\",\"defaultCountry\":\"Canada\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\",\"isHidden\":true},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"text\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":7,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Start Date of Course :\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Title of Training Program you are registering for\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"If you pay by credit card, please call us for telephone processing (a surcharge is added to all credit card transactions). Cash can be dropped off in person at South Island Centre from Monday-Thursday (9am-2pm). Your receipt will be available on the first day of training.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"debit card (in person)\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"cash (in person)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"value\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"debit card (in person)\",\"value\":\"debit card (in person)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"cash (in person)\",\"value\":\"cash (in person)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Please enter the case sensitive numbers and letters to prove you\'re not a robot.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Captcha\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"}],\"id\":17,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\",\"subLabelPlacement\":\"below\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"schedulePendingMessage\":\"\"}", NULL, "{\"53d91cefa91e6\":{\"id\":\"53d91cefa91e6\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! \\u00a0If you are submitting this form between December 16-31, 2016, we will\\u00a0address your course registration request in the new year.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"53d91cefa8a17\":{\"id\":\"53d91cefa8a17\",\"to\":\"courses@localhost\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"bcc\":\"\",\"from\":\"courses@localhost\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":\"\"}}");
INSERT INTO `wp_gf_form_meta` VALUES("18", "{\"title\":\"Register for Training \",\"description\":\" (Nuts and Bolts)\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The information you provide during the registration process is collected and used under the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering training programs, informing you of our services, and\\/or for statistical purposes. If you have questions about the collection or use oof your personal information, please call us at (250) 472-2851.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not share your email address or confidential information with any other sources.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"canadian\",\"defaultCountry\":\"Canada\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\",\"isHidden\":true},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"text\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":7,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Start Date of Course :\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Title of Training Program you are registering for\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"If you pay by credit card, please call us for telephone processing (a surcharge is added to all credit card transactions). Cash can be dropped off in person at South Island Centre from Monday-Thursday (9am-2pm). Your receipt will be available on the first day of training.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"debit card (in person)\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"cash (in person)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"value\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"debit card (in person)\",\"value\":\"debit card (in person)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"cash (in person)\",\"value\":\"cash (in person)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"section\",\"id\":13,\"label\":\"\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"formId\":18,\"pageNumber\":1,\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":10,\"inputName\":\"\",\"isRequired\":false,\"label\":\"This edition of South Island Centre\\u2019s \\u201cNuts and Bolts\\u201d training is part of The Selkirk-Tolmie Pastoral Care Initiative, supported by the Anglican Diocese of British Columbia through its Vision Fund.  The Initiative is planning a series of talks, dialogues and encounters about spiritual care, beginning in Spring 2018. For now, we call this series \\\"TOPICS in Pastoral Care\\u201d and it promises to bring you exciting, first-person looks at spiritual care in action.  Please check the box below if you\\u2019d like to be invited to \\u201cTOPICS\\u201d presentations by the Anglican Diocese.  Your email address will ONLY be used by the Diocese to let you know about upcoming \\u201cTOPICS\\u201d in Pastoral Care; and for no other purpose.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"10.1\",\"label\":\"\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"\",\"value\":\"\",\"isSelected\":true,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"above\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"enableChoiceValue\":false},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":11,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Please check below to hear about more training opportunities at South Island Centre.  Your email address will ONLY be used to let you know about training opportunities for yourself or your church.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"11.1\",\"label\":\"\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"\",\"value\":\"\",\"isSelected\":true,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"above\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":12,\"inputName\":\"\",\"isRequired\":false,\"label\":\"South Island Centre is a registered non-profit and charitable organization, whose charitable purpose includes providing low-cost or no-cost counselling to all citizens, regardless of lifestyle or belief, who might not otherwise be able to afford this important professional care for themselves and their families.   Check below for information about our fundraising activities.  Your email address will be used to inform you about South Island Centre activities and its signature annual fundraising events.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"12.1\",\"label\":\"\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"\",\"value\":\"\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"above\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Please enter the case sensitive numbers and letters to prove you\'re not a robot.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"}],\"id\":18,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\",\"subLabelPlacement\":\"below\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"schedulePendingMessage\":\"\"}", "", "{\"53d91cefa91e6\":{\"id\":\"53d91cefa91e6\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! \\u00a0If you are submitting this form between December 16-31, 2016, we will\\u00a0address your course registration request in the new year.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"53d91cefa8a17\":{\"isActive\":true,\"id\":\"53d91cefa8a17\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"courses@localhost\",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"courses@localhost\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");

/* INSERT TABLE DATA: wp_gf_form_view */
INSERT INTO `wp_gf_form_view` VALUES("1", "1", "2014-07-09 22:38:08", "173.192.239.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("2", "2", "2014-07-23 18:50:32", "184.69.11.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("3", "2", "2014-07-26 19:04:47", "96.50.14.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("4", "2", "2014-07-28 18:12:55", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("5", "1", "2014-07-28 18:18:01", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("6", "1", "2014-07-28 19:10:33", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("7", "2", "2014-07-28 19:12:16", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("8", "1", "2014-07-28 21:08:56", "173.192.239.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("9", "2", "2014-07-28 21:11:22", "184.173.183.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("10", "1", "2014-07-29 00:22:17", "184.71.26.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("11", "2", "2014-07-29 00:29:29", "184.71.26.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("12", "1", "2014-07-29 09:03:47", "66.249.66.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("13", "1", "2014-07-29 12:04:01", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("14", "2", "2014-07-29 12:14:06", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("15", "1", "2014-07-29 13:45:58", "207.81.253.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("16", "2", "2014-07-29 14:56:31", "66.249.66.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("17", "2", "2014-07-29 20:12:42", "192.34.58.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("18", "1", "2014-07-29 20:12:42", "192.34.58.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("19", "1", "2014-07-30 10:37:04", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("20", "2", "2014-07-30 10:37:07", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("21", "3", "2014-07-30 20:01:21", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("22", "1", "2014-07-30 20:41:25", "96.50.14.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("23", "1", "2014-07-30 23:43:44", "96.50.14.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("24", "3", "2014-07-30 23:43:56", "96.50.14.143", "3");
INSERT INTO `wp_gf_form_view` VALUES("25", "2", "2014-07-31 00:24:47", "70.71.238.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("26", "3", "2014-07-31 01:43:19", "173.44.62.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("27", "1", "2014-08-01 08:05:13", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("28", "2", "2014-08-01 08:05:21", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("29", "3", "2014-08-01 08:05:59", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("30", "1", "2014-08-01 19:27:45", "174.127.133.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("31", "2", "2014-08-01 19:30:51", "174.127.133.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("32", "3", "2014-08-01 19:34:53", "174.127.133.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("33", "1", "2014-08-01 20:02:45", "174.127.133.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("34", "3", "2014-08-01 21:39:19", "192.81.211.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("35", "1", "2014-08-01 21:39:19", "192.81.211.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("36", "2", "2014-08-01 21:39:19", "192.81.211.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("37", "2", "2014-08-02 06:50:59", "66.249.79.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("38", "3", "2014-08-02 09:23:59", "66.249.79.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("39", "3", "2014-08-02 23:27:30", "5.10.104.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("40", "1", "2014-08-02 23:29:11", "5.10.104.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("41", "3", "2014-08-03 07:50:14", "207.46.13.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("42", "3", "2014-08-03 15:23:15", "66.249.79.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("43", "1", "2014-08-04 05:30:50", "96.50.103.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("44", "1", "2014-08-04 06:31:29", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45", "2", "2014-08-04 06:31:38", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("46", "3", "2014-08-04 06:32:26", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("47", "1", "2014-08-04 08:05:39", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("48", "2", "2014-08-04 08:05:41", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("49", "2", "2014-08-04 10:50:16", "66.249.79.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("50", "1", "2014-08-04 15:46:42", "66.249.79.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("51", "3", "2014-08-04 17:58:01", "5.10.107.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("52", "1", "2014-08-04 17:59:42", "5.10.107.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("53", "1", "2014-08-04 20:08:55", "66.249.79.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("54", "3", "2014-08-04 20:11:28", "66.249.79.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("55", "3", "2014-08-05 08:22:05", "144.76.87.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("56", "1", "2014-08-05 15:20:34", "192.254.72.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("57", "2", "2014-08-05 17:09:19", "66.249.79.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("58", "3", "2014-08-05 17:46:28", "5.10.104.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("59", "1", "2014-08-05 17:48:10", "5.10.104.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("60", "2", "2014-08-05 22:20:31", "70.66.134.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("61", "1", "2014-08-05 22:20:47", "70.66.134.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("62", "3", "2014-08-06 04:02:54", "5.10.104.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("63", "1", "2014-08-06 04:04:36", "5.10.104.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("64", "1", "2014-08-06 06:47:48", "66.249.79.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("65", "1", "2014-08-06 08:14:52", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("66", "3", "2014-08-06 10:51:48", "23.95.105.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("67", "1", "2014-08-06 14:32:57", "162.210.196.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("68", "2", "2014-08-06 14:33:04", "162.210.196.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("69", "3", "2014-08-06 14:34:06", "162.210.196.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("70", "1", "2014-08-06 16:57:31", "157.55.39.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("71", "3", "2014-08-06 17:04:23", "66.249.79.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("72", "1", "2014-08-06 17:27:38", "66.249.79.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("73", "2", "2014-08-06 17:49:24", "157.55.39.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("74", "2", "2014-08-06 19:49:40", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("75", "3", "2014-08-07 03:11:27", "198.211.104.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("76", "1", "2014-08-07 03:11:27", "198.211.104.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("77", "2", "2014-08-07 03:11:27", "198.211.104.210", "5");
INSERT INTO `wp_gf_form_view` VALUES("78", "3", "2014-08-07 04:14:19", "69.12.84.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("79", "1", "2014-08-07 04:55:09", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("80", "2", "2014-08-07 04:55:17", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("81", "2", "2014-08-07 05:52:27", "157.55.39.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("82", "1", "2014-08-07 05:52:28", "157.55.39.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("83", "3", "2014-08-07 10:01:15", "37.203.208.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("84", "1", "2014-08-07 10:27:26", "178.19.111.205", "3");
INSERT INTO `wp_gf_form_view` VALUES("85", "2", "2014-08-07 14:59:52", "66.249.79.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("86", "3", "2014-08-07 15:49:25", "36.250.176.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("87", "3", "2014-08-08 03:47:28", "5.10.104.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("88", "1", "2014-08-08 03:49:07", "5.10.104.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("89", "1", "2014-08-08 05:20:00", "174.7.170.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("90", "3", "2014-08-08 07:23:07", "192.81.208.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("91", "1", "2014-08-08 07:23:07", "192.81.208.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("92", "2", "2014-08-08 07:23:07", "192.81.208.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("93", "2", "2014-08-08 09:50:25", "23.88.110.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("94", "1", "2014-08-08 20:09:39", "74.171.143.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("95", "2", "2014-08-08 20:09:46", "74.171.143.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("96", "3", "2014-08-08 20:10:19", "74.171.143.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("97", "1", "2014-08-08 23:44:23", "66.249.79.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("98", "2", "2014-08-09 06:02:36", "72.20.49.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("99", "3", "2014-08-09 06:02:41", "64.120.51.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("100", "1", "2014-08-09 10:09:48", "116.25.24.160", "2");
INSERT INTO `wp_gf_form_view` VALUES("101", "3", "2014-08-09 10:50:13", "117.176.189.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("102", "3", "2014-08-09 11:41:03", "173.213.80.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("103", "3", "2014-08-09 13:12:57", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("104", "3", "2014-08-09 15:29:36", "199.119.227.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("105", "3", "2014-08-09 17:21:00", "50.3.117.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("106", "3", "2014-08-09 18:34:48", "5.153.235.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("107", "2", "2014-08-09 20:42:37", "62.210.139.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("108", "2", "2014-08-10 01:02:07", "66.249.79.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("109", "1", "2014-08-10 03:07:02", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("110", "2", "2014-08-10 03:07:09", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("111", "3", "2014-08-10 03:07:47", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("112", "1", "2014-08-10 05:57:14", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("113", "2", "2014-08-10 05:57:19", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("114", "2", "2014-08-10 07:21:13", "66.249.79.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("115", "3", "2014-08-10 12:22:02", "49.213.19.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("116", "1", "2014-08-10 13:09:21", "116.25.24.160", "2");
INSERT INTO `wp_gf_form_view` VALUES("117", "2", "2014-08-10 18:54:56", "192.3.61.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("118", "2", "2014-08-10 19:04:39", "192.227.191.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("119", "3", "2014-08-10 19:04:41", "192.227.191.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("120", "2", "2014-08-10 20:34:57", "173.213.81.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("121", "1", "2014-08-11 00:39:14", "66.249.79.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("122", "3", "2014-08-11 02:13:14", "117.169.1.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("123", "2", "2014-08-11 02:28:30", "217.69.133.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("124", "2", "2014-08-11 11:19:51", "192.227.191.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("125", "3", "2014-08-11 11:19:55", "192.227.191.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("126", "3", "2014-08-11 12:07:33", "198.199.74.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("127", "1", "2014-08-11 12:07:33", "198.199.74.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("128", "2", "2014-08-11 12:07:33", "198.199.74.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("129", "2", "2014-08-11 15:32:40", "208.89.209.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("130", "2", "2014-08-11 16:37:52", "192.227.191.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("131", "3", "2014-08-11 16:37:56", "192.227.191.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("132", "2", "2014-08-11 19:33:38", "192.157.250.98", "3");
INSERT INTO `wp_gf_form_view` VALUES("133", "1", "2014-08-11 19:42:22", "217.69.133.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("134", "2", "2014-08-11 20:59:27", "172.246.129.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("135", "1", "2014-08-11 22:49:03", "68.180.224.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("136", "3", "2014-08-11 22:57:12", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("137", "2", "2014-08-12 02:08:14", "173.0.55.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("138", "2", "2014-08-12 03:39:55", "192.240.220.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("139", "3", "2014-08-12 03:39:57", "192.240.220.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("140", "3", "2014-08-12 05:34:28", "68.180.224.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("141", "2", "2014-08-12 07:06:35", "62.210.89.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("142", "3", "2014-08-12 07:42:27", "199.180.135.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("143", "2", "2014-08-12 08:27:50", "172.245.214.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("144", "3", "2014-08-12 08:32:52", "172.245.214.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("145", "2", "2014-08-12 09:10:45", "173.0.55.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("146", "2", "2014-08-12 10:52:32", "199.30.49.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("147", "3", "2014-08-12 10:52:34", "199.30.49.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("148", "2", "2014-08-12 11:02:44", "208.89.209.153", "4");
INSERT INTO `wp_gf_form_view` VALUES("149", "3", "2014-08-12 11:02:46", "208.89.209.153", "4");
INSERT INTO `wp_gf_form_view` VALUES("150", "2", "2014-08-12 12:11:13", "199.30.49.91", "3");
INSERT INTO `wp_gf_form_view` VALUES("151", "3", "2014-08-12 12:11:15", "199.30.49.91", "4");
INSERT INTO `wp_gf_form_view` VALUES("152", "2", "2014-08-12 13:34:05", "199.195.142.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("153", "2", "2014-08-12 14:20:27", "199.180.135.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("154", "3", "2014-08-12 14:20:29", "199.180.135.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("155", "2", "2014-08-12 16:53:29", "172.245.214.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("156", "3", "2014-08-12 16:53:34", "172.245.214.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("157", "1", "2014-08-12 17:44:57", "198.143.158.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("158", "2", "2014-08-12 17:45:06", "198.143.158.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("159", "3", "2014-08-12 17:45:19", "198.143.158.34", "21");
INSERT INTO `wp_gf_form_view` VALUES("160", "3", "2014-08-12 18:00:08", "66.249.79.251", "1328");
INSERT INTO `wp_gf_form_view` VALUES("161", "3", "2014-08-12 19:00:06", "66.249.79.236", "936");
INSERT INTO `wp_gf_form_view` VALUES("162", "3", "2014-08-12 20:00:04", "66.249.79.132", "995");
INSERT INTO `wp_gf_form_view` VALUES("163", "2", "2014-08-12 20:32:47", "155.94.129.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("164", "3", "2014-08-12 21:00:01", "66.249.79.145", "930");
INSERT INTO `wp_gf_form_view` VALUES("165", "1", "2014-08-12 21:24:20", "66.249.79.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("166", "3", "2014-08-12 22:00:05", "66.249.79.132", "867");
INSERT INTO `wp_gf_form_view` VALUES("167", "2", "2014-08-12 22:36:21", "173.213.81.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("168", "3", "2014-08-12 23:00:14", "66.249.79.132", "477");
INSERT INTO `wp_gf_form_view` VALUES("169", "2", "2014-08-12 23:53:04", "192.77.254.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("170", "3", "2014-08-13 00:03:38", "66.249.79.132", "674");
INSERT INTO `wp_gf_form_view` VALUES("171", "3", "2014-08-13 01:05:08", "66.249.79.145", "389");
INSERT INTO `wp_gf_form_view` VALUES("172", "2", "2014-08-13 01:41:17", "173.0.55.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("173", "3", "2014-08-13 02:01:55", "66.249.79.132", "84");
INSERT INTO `wp_gf_form_view` VALUES("174", "2", "2014-08-13 02:32:13", "173.0.49.197", "4");
INSERT INTO `wp_gf_form_view` VALUES("175", "3", "2014-08-13 03:03:49", "66.249.79.145", "588");
INSERT INTO `wp_gf_form_view` VALUES("176", "2", "2014-08-13 03:32:02", "198.23.174.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("177", "3", "2014-08-13 04:00:04", "66.249.79.132", "1575");
INSERT INTO `wp_gf_form_view` VALUES("178", "2", "2014-08-13 04:01:28", "68.180.224.243", "14");
INSERT INTO `wp_gf_form_view` VALUES("179", "1", "2014-08-13 04:08:58", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("180", "3", "2014-08-13 05:01:49", "66.249.79.145", "1664");
INSERT INTO `wp_gf_form_view` VALUES("181", "2", "2014-08-13 05:10:26", "216.107.159.35", "6");
INSERT INTO `wp_gf_form_view` VALUES("182", "3", "2014-08-13 06:00:06", "66.249.79.119", "1612");
INSERT INTO `wp_gf_form_view` VALUES("183", "2", "2014-08-13 06:16:22", "199.180.135.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("184", "3", "2014-08-13 07:00:03", "66.249.79.132", "1630");
INSERT INTO `wp_gf_form_view` VALUES("185", "3", "2014-08-13 08:00:00", "66.249.79.132", "1756");
INSERT INTO `wp_gf_form_view` VALUES("186", "3", "2014-08-13 09:00:03", "66.249.79.132", "1710");
INSERT INTO `wp_gf_form_view` VALUES("187", "3", "2014-08-13 10:00:02", "66.249.79.132", "1696");
INSERT INTO `wp_gf_form_view` VALUES("188", "3", "2014-08-13 11:00:07", "66.249.79.132", "1760");
INSERT INTO `wp_gf_form_view` VALUES("189", "3", "2014-08-13 12:00:00", "66.249.69.92", "1702");
INSERT INTO `wp_gf_form_view` VALUES("190", "3", "2014-08-13 13:00:07", "66.249.69.108", "1180");
INSERT INTO `wp_gf_form_view` VALUES("191", "3", "2014-08-13 14:03:43", "66.249.69.124", "48");
INSERT INTO `wp_gf_form_view` VALUES("192", "3", "2014-08-13 15:00:15", "66.249.69.92", "1208");
INSERT INTO `wp_gf_form_view` VALUES("193", "3", "2014-08-13 16:04:50", "66.249.69.92", "104");
INSERT INTO `wp_gf_form_view` VALUES("194", "2", "2014-08-13 16:16:03", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("195", "3", "2014-08-13 17:00:00", "66.249.69.108", "256");
INSERT INTO `wp_gf_form_view` VALUES("196", "3", "2014-08-13 18:00:23", "66.249.69.108", "1246");
INSERT INTO `wp_gf_form_view` VALUES("197", "3", "2014-08-13 19:00:00", "66.249.69.92", "1966");
INSERT INTO `wp_gf_form_view` VALUES("198", "3", "2014-08-13 20:00:02", "66.249.69.108", "2034");
INSERT INTO `wp_gf_form_view` VALUES("199", "3", "2014-08-13 21:00:00", "66.249.69.108", "2545");
INSERT INTO `wp_gf_form_view` VALUES("200", "3", "2014-08-13 22:00:09", "66.249.69.124", "3857");
INSERT INTO `wp_gf_form_view` VALUES("201", "3", "2014-08-13 23:00:27", "66.249.69.92", "2094");
INSERT INTO `wp_gf_form_view` VALUES("202", "1", "2014-08-13 23:28:37", "202.46.63.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("203", "3", "2014-08-14 00:00:12", "66.249.69.108", "1314");
INSERT INTO `wp_gf_form_view` VALUES("204", "3", "2014-08-14 01:01:18", "66.249.69.124", "196");
INSERT INTO `wp_gf_form_view` VALUES("205", "3", "2014-08-14 02:04:26", "66.249.69.108", "168");
INSERT INTO `wp_gf_form_view` VALUES("206", "3", "2014-08-14 03:02:11", "66.249.69.108", "2519");
INSERT INTO `wp_gf_form_view` VALUES("207", "3", "2014-08-14 04:00:08", "66.249.69.92", "2868");
INSERT INTO `wp_gf_form_view` VALUES("208", "3", "2014-08-14 05:00:01", "66.249.69.124", "2914");
INSERT INTO `wp_gf_form_view` VALUES("209", "3", "2014-08-14 06:00:07", "66.249.69.108", "2904");
INSERT INTO `wp_gf_form_view` VALUES("210", "3", "2014-08-14 07:00:00", "66.249.69.108", "2888");
INSERT INTO `wp_gf_form_view` VALUES("211", "3", "2014-08-14 08:00:04", "66.249.69.92", "2914");
INSERT INTO `wp_gf_form_view` VALUES("212", "3", "2014-08-14 09:00:05", "66.249.69.108", "2960");
INSERT INTO `wp_gf_form_view` VALUES("213", "3", "2014-08-14 10:00:07", "66.249.69.108", "2996");
INSERT INTO `wp_gf_form_view` VALUES("214", "2", "2014-08-14 10:55:33", "172.246.129.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("215", "3", "2014-08-14 11:00:07", "66.249.69.124", "2800");
INSERT INTO `wp_gf_form_view` VALUES("216", "3", "2014-08-14 12:00:06", "66.249.69.92", "2974");
INSERT INTO `wp_gf_form_view` VALUES("217", "3", "2014-08-14 13:00:42", "198.245.51.90", "530");
INSERT INTO `wp_gf_form_view` VALUES("218", "3", "2014-08-14 14:00:17", "46.28.53.168", "780");
INSERT INTO `wp_gf_form_view` VALUES("219", "3", "2014-08-14 15:02:39", "66.249.79.119", "1094");
INSERT INTO `wp_gf_form_view` VALUES("220", "1", "2014-08-14 15:11:35", "202.98.123.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("221", "3", "2014-08-14 16:00:11", "66.249.79.132", "2287");
INSERT INTO `wp_gf_form_view` VALUES("222", "3", "2014-08-14 17:00:04", "91.194.84.106", "3794");
INSERT INTO `wp_gf_form_view` VALUES("223", "3", "2014-08-14 18:00:07", "66.249.79.145", "2051");
INSERT INTO `wp_gf_form_view` VALUES("224", "3", "2014-08-14 19:00:04", "66.249.79.145", "2278");
INSERT INTO `wp_gf_form_view` VALUES("225", "2", "2014-08-14 19:35:25", "172.245.33.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("226", "1", "2014-08-14 19:42:13", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("227", "3", "2014-08-14 20:00:00", "66.249.79.119", "6659");
INSERT INTO `wp_gf_form_view` VALUES("228", "1", "2014-08-14 20:04:58", "157.55.39.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("229", "6", "2014-08-14 20:59:16", "66.249.79.145", "6");
INSERT INTO `wp_gf_form_view` VALUES("230", "3", "2014-08-14 21:00:09", "66.249.79.119", "3789");
INSERT INTO `wp_gf_form_view` VALUES("231", "6", "2014-08-14 21:00:11", "66.249.79.119", "740");
INSERT INTO `wp_gf_form_view` VALUES("232", "3", "2014-08-14 22:00:02", "176.9.34.171", "4269");
INSERT INTO `wp_gf_form_view` VALUES("233", "6", "2014-08-14 22:00:08", "66.249.79.119", "842");
INSERT INTO `wp_gf_form_view` VALUES("234", "3", "2014-08-14 23:00:00", "66.249.79.119", "6115");
INSERT INTO `wp_gf_form_view` VALUES("235", "6", "2014-08-14 23:00:03", "66.249.79.119", "1178");
INSERT INTO `wp_gf_form_view` VALUES("236", "1", "2014-08-14 23:17:09", "162.243.87.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("237", "3", "2014-08-15 00:00:00", "162.243.87.165", "4280");
INSERT INTO `wp_gf_form_view` VALUES("238", "6", "2014-08-15 00:00:02", "162.243.87.165", "794");
INSERT INTO `wp_gf_form_view` VALUES("239", "3", "2014-08-15 01:02:56", "66.249.79.132", "110");
INSERT INTO `wp_gf_form_view` VALUES("240", "6", "2014-08-15 01:02:59", "66.249.79.132", "22");
INSERT INTO `wp_gf_form_view` VALUES("241", "3", "2014-08-15 02:04:49", "66.249.79.145", "164");
INSERT INTO `wp_gf_form_view` VALUES("242", "6", "2014-08-15 02:04:50", "66.249.79.145", "32");
INSERT INTO `wp_gf_form_view` VALUES("243", "3", "2014-08-15 03:04:14", "66.249.79.145", "2134");
INSERT INTO `wp_gf_form_view` VALUES("244", "6", "2014-08-15 03:04:14", "66.249.79.145", "401");
INSERT INTO `wp_gf_form_view` VALUES("245", "2", "2014-08-15 03:22:24", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("246", "1", "2014-08-15 03:22:33", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("247", "3", "2014-08-15 04:03:23", "66.249.79.145", "142");
INSERT INTO `wp_gf_form_view` VALUES("248", "6", "2014-08-15 04:03:25", "66.249.79.145", "28");
INSERT INTO `wp_gf_form_view` VALUES("249", "3", "2014-08-15 05:08:44", "66.249.79.119", "84");
INSERT INTO `wp_gf_form_view` VALUES("250", "6", "2014-08-15 05:08:44", "66.249.79.119", "16");
INSERT INTO `wp_gf_form_view` VALUES("251", "3", "2014-08-15 06:03:00", "66.249.79.132", "140");
INSERT INTO `wp_gf_form_view` VALUES("252", "6", "2014-08-15 06:03:00", "66.249.79.132", "27");
INSERT INTO `wp_gf_form_view` VALUES("253", "3", "2014-08-15 07:00:14", "198.245.51.90", "1203");
INSERT INTO `wp_gf_form_view` VALUES("254", "6", "2014-08-15 07:01:25", "202.46.62.146", "227");
INSERT INTO `wp_gf_form_view` VALUES("255", "2", "2014-08-15 07:38:59", "198.23.174.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("256", "3", "2014-08-15 08:04:06", "66.249.79.145", "132");
INSERT INTO `wp_gf_form_view` VALUES("257", "6", "2014-08-15 08:04:07", "66.249.79.145", "26");
INSERT INTO `wp_gf_form_view` VALUES("258", "3", "2014-08-15 09:03:53", "66.249.79.145", "140");
INSERT INTO `wp_gf_form_view` VALUES("259", "6", "2014-08-15 09:03:54", "66.249.79.145", "28");
INSERT INTO `wp_gf_form_view` VALUES("260", "3", "2014-08-15 10:00:16", "66.249.79.145", "680");
INSERT INTO `wp_gf_form_view` VALUES("261", "6", "2014-08-15 10:00:17", "66.249.79.145", "134");
INSERT INTO `wp_gf_form_view` VALUES("262", "3", "2014-08-15 11:03:50", "66.249.79.132", "130");
INSERT INTO `wp_gf_form_view` VALUES("263", "6", "2014-08-15 11:03:51", "66.249.79.132", "26");
INSERT INTO `wp_gf_form_view` VALUES("264", "3", "2014-08-15 12:00:00", "198.27.82.147", "2312");
INSERT INTO `wp_gf_form_view` VALUES("265", "6", "2014-08-15 12:00:20", "66.249.79.132", "440");
INSERT INTO `wp_gf_form_view` VALUES("266", "3", "2014-08-15 13:02:05", "66.249.79.132", "118");
INSERT INTO `wp_gf_form_view` VALUES("267", "6", "2014-08-15 13:02:07", "66.249.79.132", "22");
INSERT INTO `wp_gf_form_view` VALUES("268", "3", "2014-08-15 14:04:22", "66.249.79.132", "1660");
INSERT INTO `wp_gf_form_view` VALUES("269", "6", "2014-08-15 14:04:23", "66.249.79.132", "326");
INSERT INTO `wp_gf_form_view` VALUES("270", "2", "2014-08-15 14:05:53", "174.140.166.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("271", "3", "2014-08-15 15:00:35", "66.249.79.119", "5669");
INSERT INTO `wp_gf_form_view` VALUES("272", "6", "2014-08-15 15:00:36", "66.249.79.119", "1112");
INSERT INTO `wp_gf_form_view` VALUES("273", "2", "2014-08-15 15:27:31", "192.240.220.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("274", "3", "2014-08-15 16:00:04", "66.249.79.119", "5967");
INSERT INTO `wp_gf_form_view` VALUES("275", "6", "2014-08-15 16:00:08", "66.249.79.119", "1145");
INSERT INTO `wp_gf_form_view` VALUES("276", "1", "2014-08-15 16:05:02", "54.87.225.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("277", "2", "2014-08-15 16:05:10", "54.167.38.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("278", "3", "2014-08-15 17:00:07", "66.249.79.132", "5636");
INSERT INTO `wp_gf_form_view` VALUES("279", "6", "2014-08-15 17:00:11", "66.249.79.132", "1116");
INSERT INTO `wp_gf_form_view` VALUES("280", "2", "2014-08-15 17:02:37", "208.89.209.107", "8");
INSERT INTO `wp_gf_form_view` VALUES("281", "3", "2014-08-15 18:00:00", "66.249.79.132", "5471");
INSERT INTO `wp_gf_form_view` VALUES("282", "6", "2014-08-15 18:00:02", "66.249.79.132", "1074");
INSERT INTO `wp_gf_form_view` VALUES("283", "2", "2014-08-15 18:01:40", "192.3.180.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("284", "3", "2014-08-15 19:00:03", "66.249.79.119", "5136");
INSERT INTO `wp_gf_form_view` VALUES("285", "6", "2014-08-15 19:00:06", "66.249.79.119", "1010");
INSERT INTO `wp_gf_form_view` VALUES("286", "2", "2014-08-15 19:19:02", "192.3.180.179", "6");
INSERT INTO `wp_gf_form_view` VALUES("287", "3", "2014-08-15 20:00:01", "66.249.79.132", "5676");
INSERT INTO `wp_gf_form_view` VALUES("288", "6", "2014-08-15 20:00:04", "66.249.79.132", "1124");
INSERT INTO `wp_gf_form_view` VALUES("289", "2", "2014-08-15 20:49:24", "192.240.220.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("290", "3", "2014-08-15 21:00:46", "66.249.79.119", "5451");
INSERT INTO `wp_gf_form_view` VALUES("291", "6", "2014-08-15 21:00:49", "66.249.79.119", "1080");
INSERT INTO `wp_gf_form_view` VALUES("292", "2", "2014-08-15 21:02:09", "204.27.60.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("293", "3", "2014-08-15 22:00:00", "66.249.79.119", "5399");
INSERT INTO `wp_gf_form_view` VALUES("294", "6", "2014-08-15 22:00:01", "66.249.79.119", "1068");
INSERT INTO `wp_gf_form_view` VALUES("295", "3", "2014-08-15 23:00:00", "66.249.79.132", "7949");
INSERT INTO `wp_gf_form_view` VALUES("296", "6", "2014-08-15 23:00:03", "66.249.79.132", "1570");
INSERT INTO `wp_gf_form_view` VALUES("297", "2", "2014-08-15 23:00:25", "192.34.58.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("298", "1", "2014-08-15 23:00:25", "192.34.58.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("299", "3", "2014-08-16 00:00:04", "66.249.79.132", "5338");
INSERT INTO `wp_gf_form_view` VALUES("300", "6", "2014-08-16 00:00:08", "66.249.79.132", "1048");
INSERT INTO `wp_gf_form_view` VALUES("301", "3", "2014-08-16 01:01:24", "66.249.79.132", "5152");
INSERT INTO `wp_gf_form_view` VALUES("302", "6", "2014-08-16 01:01:27", "66.249.79.132", "1020");
INSERT INTO `wp_gf_form_view` VALUES("303", "2", "2014-08-16 01:51:07", "204.27.60.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("304", "3", "2014-08-16 02:00:01", "66.249.79.119", "6345");
INSERT INTO `wp_gf_form_view` VALUES("305", "6", "2014-08-16 02:00:03", "66.249.79.119", "1228");
INSERT INTO `wp_gf_form_view` VALUES("306", "2", "2014-08-16 02:33:15", "174.140.166.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("307", "3", "2014-08-16 03:00:00", "66.249.79.145", "5871");
INSERT INTO `wp_gf_form_view` VALUES("308", "6", "2014-08-16 03:00:00", "198.100.146.192", "1180");
INSERT INTO `wp_gf_form_view` VALUES("309", "3", "2014-08-16 04:00:07", "66.249.79.119", "5124");
INSERT INTO `wp_gf_form_view` VALUES("310", "6", "2014-08-16 04:00:09", "66.249.79.119", "1008");
INSERT INTO `wp_gf_form_view` VALUES("311", "3", "2014-08-16 05:00:04", "66.249.79.145", "5380");
INSERT INTO `wp_gf_form_view` VALUES("312", "6", "2014-08-16 05:00:07", "66.249.79.145", "1062");
INSERT INTO `wp_gf_form_view` VALUES("313", "2", "2014-08-16 05:49:30", "62.210.139.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("314", "3", "2014-08-16 06:00:00", "66.249.79.119", "5499");
INSERT INTO `wp_gf_form_view` VALUES("315", "6", "2014-08-16 06:00:02", "66.249.79.119", "1088");
INSERT INTO `wp_gf_form_view` VALUES("316", "3", "2014-08-16 07:00:00", "66.249.79.119", "5417");
INSERT INTO `wp_gf_form_view` VALUES("317", "6", "2014-08-16 07:00:02", "66.249.79.119", "1070");
INSERT INTO `wp_gf_form_view` VALUES("318", "3", "2014-08-16 08:00:01", "66.249.79.119", "5541");
INSERT INTO `wp_gf_form_view` VALUES("319", "6", "2014-08-16 08:00:05", "66.249.79.119", "1088");
INSERT INTO `wp_gf_form_view` VALUES("320", "3", "2014-08-16 09:00:00", "66.249.79.132", "5991");
INSERT INTO `wp_gf_form_view` VALUES("321", "6", "2014-08-16 09:00:03", "66.249.79.132", "1180");
INSERT INTO `wp_gf_form_view` VALUES("322", "1", "2014-08-16 09:21:29", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("323", "2", "2014-08-16 09:22:05", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("324", "3", "2014-08-16 10:00:01", "66.249.79.119", "5322");
INSERT INTO `wp_gf_form_view` VALUES("325", "6", "2014-08-16 10:00:04", "66.249.79.119", "1050");
INSERT INTO `wp_gf_form_view` VALUES("326", "3", "2014-08-16 11:00:04", "66.249.79.119", "4507");
INSERT INTO `wp_gf_form_view` VALUES("327", "6", "2014-08-16 11:00:06", "66.249.79.119", "886");
INSERT INTO `wp_gf_form_view` VALUES("328", "3", "2014-08-16 12:00:00", "66.249.79.132", "6990");
INSERT INTO `wp_gf_form_view` VALUES("329", "6", "2014-08-16 12:00:01", "66.249.79.132", "1382");
INSERT INTO `wp_gf_form_view` VALUES("330", "3", "2014-08-16 13:00:00", "66.249.79.145", "5609");
INSERT INTO `wp_gf_form_view` VALUES("331", "6", "2014-08-16 13:00:00", "66.249.79.145", "1110");
INSERT INTO `wp_gf_form_view` VALUES("332", "3", "2014-08-16 14:00:00", "66.249.79.132", "5844");
INSERT INTO `wp_gf_form_view` VALUES("333", "6", "2014-08-16 14:00:01", "66.249.79.132", "1155");
INSERT INTO `wp_gf_form_view` VALUES("334", "1", "2014-08-16 14:09:00", "66.42.87.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("335", "2", "2014-08-16 14:09:16", "66.42.87.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("336", "3", "2014-08-16 15:00:00", "66.249.79.119", "5303");
INSERT INTO `wp_gf_form_view` VALUES("337", "6", "2014-08-16 15:00:02", "66.249.79.119", "1046");
INSERT INTO `wp_gf_form_view` VALUES("338", "3", "2014-08-16 16:00:09", "66.249.79.132", "5509");
INSERT INTO `wp_gf_form_view` VALUES("339", "6", "2014-08-16 16:00:11", "66.249.79.132", "1090");
INSERT INTO `wp_gf_form_view` VALUES("340", "3", "2014-08-16 17:00:00", "66.249.79.132", "5643");
INSERT INTO `wp_gf_form_view` VALUES("341", "6", "2014-08-16 17:00:02", "66.249.79.132", "1114");
INSERT INTO `wp_gf_form_view` VALUES("342", "3", "2014-08-16 18:00:03", "66.249.79.145", "5675");
INSERT INTO `wp_gf_form_view` VALUES("343", "6", "2014-08-16 18:00:05", "66.249.79.145", "1118");
INSERT INTO `wp_gf_form_view` VALUES("344", "3", "2014-08-16 19:00:00", "66.249.79.132", "6310");
INSERT INTO `wp_gf_form_view` VALUES("345", "6", "2014-08-16 19:00:02", "66.249.79.132", "1246");
INSERT INTO `wp_gf_form_view` VALUES("346", "3", "2014-08-16 20:00:00", "69.30.238.26", "6988");
INSERT INTO `wp_gf_form_view` VALUES("347", "6", "2014-08-16 20:00:01", "69.30.238.26", "1386");
INSERT INTO `wp_gf_form_view` VALUES("348", "3", "2014-08-16 21:00:00", "157.55.39.119", "5700");
INSERT INTO `wp_gf_form_view` VALUES("349", "6", "2014-08-16 21:00:06", "157.55.39.119", "1124");
INSERT INTO `wp_gf_form_view` VALUES("350", "3", "2014-08-16 22:00:01", "66.249.79.145", "5486");
INSERT INTO `wp_gf_form_view` VALUES("351", "6", "2014-08-16 22:00:03", "66.249.79.145", "1086");
INSERT INTO `wp_gf_form_view` VALUES("352", "3", "2014-08-16 23:00:03", "66.249.79.145", "5360");
INSERT INTO `wp_gf_form_view` VALUES("353", "6", "2014-08-16 23:00:06", "66.249.79.145", "1062");
INSERT INTO `wp_gf_form_view` VALUES("354", "3", "2014-08-17 00:00:06", "66.249.79.145", "6055");
INSERT INTO `wp_gf_form_view` VALUES("355", "6", "2014-08-17 00:00:09", "66.249.79.145", "1199");
INSERT INTO `wp_gf_form_view` VALUES("356", "1", "2014-08-17 00:56:16", "46.225.129.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("357", "2", "2014-08-17 00:56:39", "46.225.129.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("358", "3", "2014-08-17 01:00:04", "66.249.79.132", "5370");
INSERT INTO `wp_gf_form_view` VALUES("359", "6", "2014-08-17 01:00:06", "66.249.79.132", "1064");
INSERT INTO `wp_gf_form_view` VALUES("360", "2", "2014-08-17 01:07:17", "202.46.49.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("361", "3", "2014-08-17 02:00:01", "66.249.79.119", "6863");
INSERT INTO `wp_gf_form_view` VALUES("362", "6", "2014-08-17 02:00:03", "66.249.79.119", "1334");
INSERT INTO `wp_gf_form_view` VALUES("363", "3", "2014-08-17 03:00:00", "66.249.79.132", "4743");
INSERT INTO `wp_gf_form_view` VALUES("364", "6", "2014-08-17 03:00:02", "66.249.79.132", "940");
INSERT INTO `wp_gf_form_view` VALUES("365", "3", "2014-08-17 04:00:40", "66.249.79.145", "6158");
INSERT INTO `wp_gf_form_view` VALUES("366", "6", "2014-08-17 04:00:43", "66.249.79.145", "1222");
INSERT INTO `wp_gf_form_view` VALUES("367", "3", "2014-08-17 05:00:02", "66.249.79.132", "5547");
INSERT INTO `wp_gf_form_view` VALUES("368", "6", "2014-08-17 05:00:05", "66.249.79.132", "1098");
INSERT INTO `wp_gf_form_view` VALUES("369", "3", "2014-08-17 06:00:00", "66.249.79.132", "5872");
INSERT INTO `wp_gf_form_view` VALUES("370", "6", "2014-08-17 06:00:01", "66.249.79.132", "1164");
INSERT INTO `wp_gf_form_view` VALUES("371", "3", "2014-08-17 07:00:00", "66.249.79.132", "5743");
INSERT INTO `wp_gf_form_view` VALUES("372", "6", "2014-08-17 07:00:02", "66.249.79.132", "1131");
INSERT INTO `wp_gf_form_view` VALUES("373", "2", "2014-08-17 07:27:19", "66.249.79.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("374", "6", "2014-08-17 08:00:00", "66.249.79.145", "1155");
INSERT INTO `wp_gf_form_view` VALUES("375", "3", "2014-08-17 08:00:04", "66.249.79.145", "5847");
INSERT INTO `wp_gf_form_view` VALUES("376", "1", "2014-08-17 08:59:22", "192.81.218.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("377", "2", "2014-08-17 08:59:24", "192.81.218.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("378", "3", "2014-08-17 09:00:01", "66.249.79.145", "5817");
INSERT INTO `wp_gf_form_view` VALUES("379", "6", "2014-08-17 09:00:04", "66.249.79.145", "1148");
INSERT INTO `wp_gf_form_view` VALUES("380", "3", "2014-08-17 10:00:00", "66.249.79.145", "5825");
INSERT INTO `wp_gf_form_view` VALUES("381", "6", "2014-08-17 10:00:01", "66.249.79.145", "1154");
INSERT INTO `wp_gf_form_view` VALUES("382", "3", "2014-08-17 11:00:00", "66.249.79.132", "5352");
INSERT INTO `wp_gf_form_view` VALUES("383", "6", "2014-08-17 11:00:02", "66.249.79.132", "1058");
INSERT INTO `wp_gf_form_view` VALUES("384", "3", "2014-08-17 12:00:00", "66.249.79.119", "5516");
INSERT INTO `wp_gf_form_view` VALUES("385", "6", "2014-08-17 12:00:00", "66.249.79.119", "1098");
INSERT INTO `wp_gf_form_view` VALUES("386", "3", "2014-08-17 13:00:00", "66.249.79.132", "6372");
INSERT INTO `wp_gf_form_view` VALUES("387", "6", "2014-08-17 13:00:00", "66.249.79.132", "1258");
INSERT INTO `wp_gf_form_view` VALUES("388", "3", "2014-08-17 14:00:02", "144.76.95.39", "7474");
INSERT INTO `wp_gf_form_view` VALUES("389", "6", "2014-08-17 14:00:05", "144.76.95.39", "1446");
INSERT INTO `wp_gf_form_view` VALUES("390", "3", "2014-08-17 15:00:03", "66.249.79.132", "6726");
INSERT INTO `wp_gf_form_view` VALUES("391", "6", "2014-08-17 15:00:06", "66.249.79.132", "1288");
INSERT INTO `wp_gf_form_view` VALUES("392", "1", "2014-08-17 15:15:44", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("393", "2", "2014-08-17 15:58:13", "194.114.133.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("394", "3", "2014-08-17 16:00:00", "66.249.79.119", "5244");
INSERT INTO `wp_gf_form_view` VALUES("395", "6", "2014-08-17 16:00:03", "66.249.79.119", "1036");
INSERT INTO `wp_gf_form_view` VALUES("396", "3", "2014-08-17 17:00:10", "66.249.79.132", "5676");
INSERT INTO `wp_gf_form_view` VALUES("397", "6", "2014-08-17 17:00:13", "66.249.79.132", "1120");
INSERT INTO `wp_gf_form_view` VALUES("398", "2", "2014-08-17 17:22:04", "192.3.111.181", "4");
INSERT INTO `wp_gf_form_view` VALUES("399", "3", "2014-08-17 18:00:05", "66.249.79.145", "6492");
INSERT INTO `wp_gf_form_view` VALUES("400", "6", "2014-08-17 18:00:08", "66.249.79.145", "1285");
INSERT INTO `wp_gf_form_view` VALUES("401", "2", "2014-08-17 18:15:36", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("402", "3", "2014-08-17 19:00:00", "66.249.79.132", "7784");
INSERT INTO `wp_gf_form_view` VALUES("403", "6", "2014-08-17 19:00:00", "66.249.79.132", "1478");
INSERT INTO `wp_gf_form_view` VALUES("404", "2", "2014-08-17 19:07:49", "192.77.254.21", "4");
INSERT INTO `wp_gf_form_view` VALUES("405", "1", "2014-08-17 19:52:29", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("406", "3", "2014-08-17 20:00:00", "207.106.190.66", "6020");
INSERT INTO `wp_gf_form_view` VALUES("407", "6", "2014-08-17 20:00:00", "207.106.190.66", "1169");
INSERT INTO `wp_gf_form_view` VALUES("408", "2", "2014-08-17 20:00:04", "162.218.236.212", "4");
INSERT INTO `wp_gf_form_view` VALUES("409", "3", "2014-08-17 21:00:00", "66.249.79.132", "5686");
INSERT INTO `wp_gf_form_view` VALUES("410", "6", "2014-08-17 21:00:03", "66.249.79.132", "1120");
INSERT INTO `wp_gf_form_view` VALUES("411", "3", "2014-08-17 22:00:00", "66.249.79.145", "5423");
INSERT INTO `wp_gf_form_view` VALUES("412", "6", "2014-08-17 22:00:00", "66.249.79.145", "1074");
INSERT INTO `wp_gf_form_view` VALUES("413", "3", "2014-08-17 23:00:00", "66.249.79.119", "5833");
INSERT INTO `wp_gf_form_view` VALUES("414", "6", "2014-08-17 23:00:03", "66.249.79.119", "1158");
INSERT INTO `wp_gf_form_view` VALUES("415", "3", "2014-08-18 00:00:00", "66.249.79.145", "5690");
INSERT INTO `wp_gf_form_view` VALUES("416", "6", "2014-08-18 00:00:01", "66.249.79.145", "1127");
INSERT INTO `wp_gf_form_view` VALUES("417", "2", "2014-08-18 00:11:10", "192.3.111.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("418", "1", "2014-08-18 00:59:15", "95.252.192.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("419", "3", "2014-08-18 01:00:00", "95.252.192.34", "5315");
INSERT INTO `wp_gf_form_view` VALUES("420", "6", "2014-08-18 01:00:01", "66.249.79.119", "1048");
INSERT INTO `wp_gf_form_view` VALUES("421", "2", "2014-08-18 01:05:45", "172.245.214.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("422", "3", "2014-08-18 02:00:02", "66.249.79.132", "5572");
INSERT INTO `wp_gf_form_view` VALUES("423", "6", "2014-08-18 02:00:04", "66.249.79.132", "1100");
INSERT INTO `wp_gf_form_view` VALUES("424", "3", "2014-08-18 03:00:12", "66.249.79.145", "3761");
INSERT INTO `wp_gf_form_view` VALUES("425", "6", "2014-08-18 03:00:15", "66.249.79.145", "752");
INSERT INTO `wp_gf_form_view` VALUES("426", "2", "2014-08-18 03:05:53", "62.210.89.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("427", "3", "2014-08-18 04:00:00", "66.249.79.119", "6029");
INSERT INTO `wp_gf_form_view` VALUES("428", "6", "2014-08-18 04:00:02", "66.249.79.119", "1192");
INSERT INTO `wp_gf_form_view` VALUES("429", "3", "2014-08-18 05:00:00", "66.249.79.132", "5874");
INSERT INTO `wp_gf_form_view` VALUES("430", "6", "2014-08-18 05:00:01", "66.249.79.132", "1160");
INSERT INTO `wp_gf_form_view` VALUES("431", "3", "2014-08-18 06:00:00", "66.249.79.145", "5195");
INSERT INTO `wp_gf_form_view` VALUES("432", "6", "2014-08-18 06:00:03", "66.249.79.145", "1028");
INSERT INTO `wp_gf_form_view` VALUES("433", "3", "2014-08-18 07:00:00", "66.249.79.119", "5339");
INSERT INTO `wp_gf_form_view` VALUES("434", "6", "2014-08-18 07:00:03", "66.249.79.119", "1056");
INSERT INTO `wp_gf_form_view` VALUES("435", "3", "2014-08-18 08:00:03", "66.249.79.119", "5922");
INSERT INTO `wp_gf_form_view` VALUES("436", "6", "2014-08-18 08:00:05", "66.249.79.119", "1173");
INSERT INTO `wp_gf_form_view` VALUES("437", "6", "2014-08-18 09:00:00", "66.249.79.132", "1105");
INSERT INTO `wp_gf_form_view` VALUES("438", "3", "2014-08-18 09:00:02", "66.249.79.132", "5569");
INSERT INTO `wp_gf_form_view` VALUES("439", "3", "2014-08-18 10:00:00", "66.249.79.119", "5795");
INSERT INTO `wp_gf_form_view` VALUES("440", "6", "2014-08-18 10:00:02", "66.249.79.119", "1150");
INSERT INTO `wp_gf_form_view` VALUES("441", "1", "2014-08-18 10:13:30", "217.115.50.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("442", "3", "2014-08-18 11:00:01", "66.249.79.132", "7563");
INSERT INTO `wp_gf_form_view` VALUES("443", "6", "2014-08-18 11:00:05", "66.249.79.132", "1490");
INSERT INTO `wp_gf_form_view` VALUES("444", "3", "2014-08-18 12:00:00", "66.249.79.119", "5135");
INSERT INTO `wp_gf_form_view` VALUES("445", "6", "2014-08-18 12:00:00", "66.249.79.119", "1018");
INSERT INTO `wp_gf_form_view` VALUES("446", "1", "2014-08-18 12:00:33", "157.55.39.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("447", "2", "2014-08-18 12:00:37", "157.55.39.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("448", "6", "2014-08-18 13:00:00", "66.249.79.132", "1186");
INSERT INTO `wp_gf_form_view` VALUES("449", "3", "2014-08-18 13:00:01", "66.249.79.145", "5968");
INSERT INTO `wp_gf_form_view` VALUES("450", "3", "2014-08-18 14:00:03", "66.249.79.145", "5736");
INSERT INTO `wp_gf_form_view` VALUES("451", "6", "2014-08-18 14:00:06", "66.249.79.145", "1138");
INSERT INTO `wp_gf_form_view` VALUES("452", "3", "2014-08-18 15:00:00", "66.249.79.132", "5459");
INSERT INTO `wp_gf_form_view` VALUES("453", "6", "2014-08-18 15:00:04", "66.249.79.132", "1050");
INSERT INTO `wp_gf_form_view` VALUES("454", "3", "2014-08-18 16:00:00", "66.249.79.145", "5690");
INSERT INTO `wp_gf_form_view` VALUES("455", "6", "2014-08-18 16:00:04", "66.249.79.145", "1118");
INSERT INTO `wp_gf_form_view` VALUES("456", "3", "2014-08-18 17:00:03", "66.249.79.145", "5738");
INSERT INTO `wp_gf_form_view` VALUES("457", "6", "2014-08-18 17:00:06", "66.249.79.145", "1142");
INSERT INTO `wp_gf_form_view` VALUES("458", "1", "2014-08-18 17:55:51", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("459", "3", "2014-08-18 18:00:00", "66.249.79.145", "5726");
INSERT INTO `wp_gf_form_view` VALUES("460", "6", "2014-08-18 18:00:02", "66.249.79.145", "1134");
INSERT INTO `wp_gf_form_view` VALUES("461", "3", "2014-08-18 19:00:00", "66.249.79.119", "5695");
INSERT INTO `wp_gf_form_view` VALUES("462", "6", "2014-08-18 19:00:07", "66.249.79.119", "1122");
INSERT INTO `wp_gf_form_view` VALUES("463", "1", "2014-08-18 19:19:42", "184.151.231.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("464", "3", "2014-08-18 20:00:00", "95.91.6.78", "3763");
INSERT INTO `wp_gf_form_view` VALUES("465", "6", "2014-08-18 20:00:03", "95.91.6.78", "748");
INSERT INTO `wp_gf_form_view` VALUES("466", "3", "2014-08-18 21:00:16", "66.249.79.119", "4814");
INSERT INTO `wp_gf_form_view` VALUES("467", "6", "2014-08-18 21:00:19", "66.249.79.119", "952");
INSERT INTO `wp_gf_form_view` VALUES("468", "3", "2014-08-18 22:00:06", "66.249.79.145", "3948");
INSERT INTO `wp_gf_form_view` VALUES("469", "6", "2014-08-18 22:00:09", "66.249.79.145", "778");
INSERT INTO `wp_gf_form_view` VALUES("470", "3", "2014-08-18 23:00:01", "66.249.79.145", "4057");
INSERT INTO `wp_gf_form_view` VALUES("471", "6", "2014-08-18 23:00:03", "66.249.79.145", "798");
INSERT INTO `wp_gf_form_view` VALUES("472", "3", "2014-08-19 00:00:00", "144.76.95.232", "2391");
INSERT INTO `wp_gf_form_view` VALUES("473", "6", "2014-08-19 00:00:01", "144.76.95.232", "474");
INSERT INTO `wp_gf_form_view` VALUES("474", "3", "2014-08-19 01:00:19", "66.249.79.119", "2685");
INSERT INTO `wp_gf_form_view` VALUES("475", "6", "2014-08-19 01:00:20", "66.249.79.119", "532");
INSERT INTO `wp_gf_form_view` VALUES("476", "3", "2014-08-19 02:00:02", "66.249.79.145", "3392");
INSERT INTO `wp_gf_form_view` VALUES("477", "6", "2014-08-19 02:00:04", "66.249.79.145", "674");
INSERT INTO `wp_gf_form_view` VALUES("478", "1", "2014-08-19 02:10:52", "208.43.251.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("479", "2", "2014-08-19 02:33:10", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("480", "3", "2014-08-19 03:00:40", "66.249.79.132", "3291");
INSERT INTO `wp_gf_form_view` VALUES("481", "6", "2014-08-19 03:00:43", "66.249.79.132", "652");
INSERT INTO `wp_gf_form_view` VALUES("482", "3", "2014-08-19 04:00:00", "66.249.79.119", "3360");
INSERT INTO `wp_gf_form_view` VALUES("483", "6", "2014-08-19 04:00:03", "66.249.79.119", "668");
INSERT INTO `wp_gf_form_view` VALUES("484", "3", "2014-08-19 05:01:17", "66.249.79.132", "3411");
INSERT INTO `wp_gf_form_view` VALUES("485", "6", "2014-08-19 05:01:19", "66.249.79.132", "676");
INSERT INTO `wp_gf_form_view` VALUES("486", "3", "2014-08-19 06:00:46", "66.249.79.145", "3549");
INSERT INTO `wp_gf_form_view` VALUES("487", "6", "2014-08-19 06:00:48", "66.249.79.145", "702");
INSERT INTO `wp_gf_form_view` VALUES("488", "3", "2014-08-19 07:00:16", "66.249.79.145", "4140");
INSERT INTO `wp_gf_form_view` VALUES("489", "6", "2014-08-19 07:00:18", "66.249.79.145", "820");
INSERT INTO `wp_gf_form_view` VALUES("490", "3", "2014-08-19 08:00:00", "66.249.79.119", "3508");
INSERT INTO `wp_gf_form_view` VALUES("491", "6", "2014-08-19 08:00:00", "66.249.79.119", "696");
INSERT INTO `wp_gf_form_view` VALUES("492", "3", "2014-08-19 09:00:55", "66.249.79.132", "1758");
INSERT INTO `wp_gf_form_view` VALUES("493", "6", "2014-08-19 09:00:57", "66.249.79.132", "348");
INSERT INTO `wp_gf_form_view` VALUES("494", "3", "2014-08-19 10:00:27", "66.249.79.132", "1954");
INSERT INTO `wp_gf_form_view` VALUES("495", "6", "2014-08-19 10:00:28", "66.249.79.132", "390");
INSERT INTO `wp_gf_form_view` VALUES("496", "3", "2014-08-19 11:00:06", "66.249.79.119", "4198");
INSERT INTO `wp_gf_form_view` VALUES("497", "6", "2014-08-19 11:00:07", "66.249.79.119", "782");
INSERT INTO `wp_gf_form_view` VALUES("498", "3", "2014-08-19 12:00:05", "66.249.79.119", "1260");
INSERT INTO `wp_gf_form_view` VALUES("499", "6", "2014-08-19 12:00:07", "66.249.79.119", "250");
INSERT INTO `wp_gf_form_view` VALUES("500", "3", "2014-08-19 13:00:11", "66.249.79.119", "2096");
INSERT INTO `wp_gf_form_view` VALUES("501", "6", "2014-08-19 13:00:12", "66.249.79.119", "416");
INSERT INTO `wp_gf_form_view` VALUES("502", "3", "2014-08-19 14:00:51", "66.249.79.132", "3478");
INSERT INTO `wp_gf_form_view` VALUES("503", "6", "2014-08-19 14:00:53", "66.249.79.132", "688");
INSERT INTO `wp_gf_form_view` VALUES("504", "3", "2014-08-19 15:00:01", "198.27.82.146", "5170");
INSERT INTO `wp_gf_form_view` VALUES("505", "6", "2014-08-19 15:00:03", "198.27.82.146", "1024");
INSERT INTO `wp_gf_form_view` VALUES("506", "3", "2014-08-19 16:00:49", "66.249.69.124", "1810");
INSERT INTO `wp_gf_form_view` VALUES("507", "6", "2014-08-19 16:00:52", "66.249.69.124", "360");
INSERT INTO `wp_gf_form_view` VALUES("508", "3", "2014-08-19 17:00:06", "66.249.69.108", "2028");
INSERT INTO `wp_gf_form_view` VALUES("509", "6", "2014-08-19 17:00:07", "66.249.69.108", "402");
INSERT INTO `wp_gf_form_view` VALUES("510", "3", "2014-08-19 18:02:13", "66.249.69.124", "1928");
INSERT INTO `wp_gf_form_view` VALUES("511", "6", "2014-08-19 18:02:14", "66.249.69.124", "384");
INSERT INTO `wp_gf_form_view` VALUES("512", "3", "2014-08-19 19:00:03", "66.249.69.92", "3074");
INSERT INTO `wp_gf_form_view` VALUES("513", "6", "2014-08-19 19:00:05", "66.249.69.92", "608");
INSERT INTO `wp_gf_form_view` VALUES("514", "1", "2014-08-19 19:45:40", "36.248.162.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("515", "3", "2014-08-19 20:00:37", "66.249.69.124", "5024");
INSERT INTO `wp_gf_form_view` VALUES("516", "6", "2014-08-19 20:00:39", "66.249.69.124", "994");
INSERT INTO `wp_gf_form_view` VALUES("517", "3", "2014-08-19 21:02:19", "66.249.69.108", "3802");
INSERT INTO `wp_gf_form_view` VALUES("518", "6", "2014-08-19 21:02:22", "66.249.69.108", "746");
INSERT INTO `wp_gf_form_view` VALUES("519", "6", "2014-08-19 22:00:00", "66.249.69.92", "996");
INSERT INTO `wp_gf_form_view` VALUES("520", "3", "2014-08-19 22:00:17", "66.249.69.124", "5034");
INSERT INTO `wp_gf_form_view` VALUES("521", "3", "2014-08-19 23:00:00", "66.249.69.124", "5092");
INSERT INTO `wp_gf_form_view` VALUES("522", "6", "2014-08-19 23:00:03", "66.249.69.124", "1010");
INSERT INTO `wp_gf_form_view` VALUES("523", "3", "2014-08-20 00:00:06", "66.249.69.108", "2307");
INSERT INTO `wp_gf_form_view` VALUES("524", "6", "2014-08-20 00:00:09", "66.249.69.108", "452");
INSERT INTO `wp_gf_form_view` VALUES("525", "1", "2014-08-20 00:28:16", "5.10.104.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("526", "3", "2014-08-20 01:00:00", "66.249.69.124", "6652");
INSERT INTO `wp_gf_form_view` VALUES("527", "6", "2014-08-20 01:00:00", "66.249.69.124", "1316");
INSERT INTO `wp_gf_form_view` VALUES("528", "3", "2014-08-20 02:00:00", "69.30.238.26", "2969");
INSERT INTO `wp_gf_form_view` VALUES("529", "6", "2014-08-20 02:00:03", "69.30.238.26", "578");
INSERT INTO `wp_gf_form_view` VALUES("530", "3", "2014-08-20 03:00:15", "66.249.69.124", "2275");
INSERT INTO `wp_gf_form_view` VALUES("531", "6", "2014-08-20 03:00:17", "66.249.69.124", "446");
INSERT INTO `wp_gf_form_view` VALUES("532", "3", "2014-08-20 04:00:09", "66.249.69.108", "3014");
INSERT INTO `wp_gf_form_view` VALUES("533", "6", "2014-08-20 04:00:10", "66.249.69.108", "594");
INSERT INTO `wp_gf_form_view` VALUES("534", "3", "2014-08-20 05:03:10", "66.249.69.92", "3696");
INSERT INTO `wp_gf_form_view` VALUES("535", "6", "2014-08-20 05:03:12", "66.249.69.92", "738");
INSERT INTO `wp_gf_form_view` VALUES("536", "3", "2014-08-20 06:00:03", "66.249.69.92", "3376");
INSERT INTO `wp_gf_form_view` VALUES("537", "6", "2014-08-20 06:00:05", "66.249.69.92", "668");
INSERT INTO `wp_gf_form_view` VALUES("538", "3", "2014-08-20 07:00:00", "66.249.69.92", "3802");
INSERT INTO `wp_gf_form_view` VALUES("539", "6", "2014-08-20 07:00:02", "66.249.69.92", "754");
INSERT INTO `wp_gf_form_view` VALUES("540", "3", "2014-08-20 08:00:10", "66.249.69.124", "3921");
INSERT INTO `wp_gf_form_view` VALUES("541", "6", "2014-08-20 08:00:12", "66.249.69.124", "776");
INSERT INTO `wp_gf_form_view` VALUES("542", "3", "2014-08-20 09:00:45", "66.249.69.108", "3920");
INSERT INTO `wp_gf_form_view` VALUES("543", "6", "2014-08-20 09:00:47", "66.249.69.108", "776");
INSERT INTO `wp_gf_form_view` VALUES("544", "3", "2014-08-20 10:00:00", "66.249.69.108", "4714");
INSERT INTO `wp_gf_form_view` VALUES("545", "6", "2014-08-20 10:00:02", "66.249.69.108", "936");
INSERT INTO `wp_gf_form_view` VALUES("546", "3", "2014-08-20 11:00:25", "66.249.69.108", "3651");
INSERT INTO `wp_gf_form_view` VALUES("547", "6", "2014-08-20 11:00:27", "66.249.69.108", "726");
INSERT INTO `wp_gf_form_view` VALUES("548", "3", "2014-08-20 12:00:05", "66.249.69.124", "3325");
INSERT INTO `wp_gf_form_view` VALUES("549", "6", "2014-08-20 12:00:07", "66.249.69.124", "658");
INSERT INTO `wp_gf_form_view` VALUES("550", "3", "2014-08-20 13:00:00", "66.249.69.108", "4478");
INSERT INTO `wp_gf_form_view` VALUES("551", "6", "2014-08-20 13:00:00", "66.249.69.108", "888");
INSERT INTO `wp_gf_form_view` VALUES("552", "3", "2014-08-20 14:01:37", "66.249.73.73", "3434");
INSERT INTO `wp_gf_form_view` VALUES("553", "6", "2014-08-20 14:01:39", "66.249.73.73", "678");
INSERT INTO `wp_gf_form_view` VALUES("554", "3", "2014-08-20 15:00:30", "66.249.73.73", "5566");
INSERT INTO `wp_gf_form_view` VALUES("555", "6", "2014-08-20 15:00:32", "66.249.73.73", "1102");
INSERT INTO `wp_gf_form_view` VALUES("556", "6", "2014-08-20 16:00:00", "66.249.73.73", "1230");
INSERT INTO `wp_gf_form_view` VALUES("557", "3", "2014-08-20 16:00:02", "66.249.73.73", "6231");
INSERT INTO `wp_gf_form_view` VALUES("558", "3", "2014-08-20 17:00:02", "144.76.95.39", "5893");
INSERT INTO `wp_gf_form_view` VALUES("559", "6", "2014-08-20 17:00:06", "144.76.95.39", "1172");
INSERT INTO `wp_gf_form_view` VALUES("560", "3", "2014-08-20 18:00:00", "144.76.95.232", "2993");
INSERT INTO `wp_gf_form_view` VALUES("561", "6", "2014-08-20 18:00:02", "144.76.95.232", "594");
INSERT INTO `wp_gf_form_view` VALUES("562", "3", "2014-08-20 19:01:12", "66.249.73.73", "3278");
INSERT INTO `wp_gf_form_view` VALUES("563", "6", "2014-08-20 19:01:14", "66.249.73.73", "648");
INSERT INTO `wp_gf_form_view` VALUES("564", "3", "2014-08-20 20:02:49", "66.249.73.73", "2904");
INSERT INTO `wp_gf_form_view` VALUES("565", "6", "2014-08-20 20:02:51", "66.249.73.73", "576");
INSERT INTO `wp_gf_form_view` VALUES("566", "6", "2014-08-20 21:00:00", "66.249.73.73", "638");
INSERT INTO `wp_gf_form_view` VALUES("567", "3", "2014-08-20 21:00:29", "66.249.73.73", "3220");
INSERT INTO `wp_gf_form_view` VALUES("568", "3", "2014-08-20 22:00:00", "66.249.73.73", "2982");
INSERT INTO `wp_gf_form_view` VALUES("569", "6", "2014-08-20 22:00:02", "66.249.73.73", "590");
INSERT INTO `wp_gf_form_view` VALUES("570", "3", "2014-08-20 23:00:03", "66.249.73.73", "2792");
INSERT INTO `wp_gf_form_view` VALUES("571", "6", "2014-08-20 23:00:05", "66.249.73.73", "550");
INSERT INTO `wp_gf_form_view` VALUES("572", "1", "2014-08-20 23:21:37", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("573", "3", "2014-08-21 00:00:02", "66.249.73.73", "4511");
INSERT INTO `wp_gf_form_view` VALUES("574", "6", "2014-08-21 00:00:04", "66.249.73.73", "894");
INSERT INTO `wp_gf_form_view` VALUES("575", "3", "2014-08-21 01:00:00", "66.249.73.73", "3515");
INSERT INTO `wp_gf_form_view` VALUES("576", "6", "2014-08-21 01:00:02", "66.249.73.73", "698");
INSERT INTO `wp_gf_form_view` VALUES("577", "3", "2014-08-21 02:00:03", "66.249.65.76", "2192");
INSERT INTO `wp_gf_form_view` VALUES("578", "6", "2014-08-21 02:00:04", "66.249.65.76", "430");
INSERT INTO `wp_gf_form_view` VALUES("579", "3", "2014-08-21 03:00:46", "66.249.65.76", "3216");
INSERT INTO `wp_gf_form_view` VALUES("580", "6", "2014-08-21 03:00:48", "66.249.65.76", "638");
INSERT INTO `wp_gf_form_view` VALUES("581", "3", "2014-08-21 04:00:06", "66.249.65.76", "2788");
INSERT INTO `wp_gf_form_view` VALUES("582", "6", "2014-08-21 04:00:08", "66.249.65.76", "554");
INSERT INTO `wp_gf_form_view` VALUES("583", "3", "2014-08-21 05:00:05", "66.249.65.76", "2784");
INSERT INTO `wp_gf_form_view` VALUES("584", "6", "2014-08-21 05:00:07", "66.249.65.76", "550");
INSERT INTO `wp_gf_form_view` VALUES("585", "3", "2014-08-21 06:00:05", "66.249.65.84", "2750");
INSERT INTO `wp_gf_form_view` VALUES("586", "6", "2014-08-21 06:00:07", "66.249.65.84", "552");
INSERT INTO `wp_gf_form_view` VALUES("587", "3", "2014-08-21 07:00:06", "66.249.65.84", "3096");
INSERT INTO `wp_gf_form_view` VALUES("588", "6", "2014-08-21 07:00:08", "66.249.65.84", "610");
INSERT INTO `wp_gf_form_view` VALUES("589", "3", "2014-08-21 08:00:00", "66.249.65.84", "3628");
INSERT INTO `wp_gf_form_view` VALUES("590", "6", "2014-08-21 08:00:01", "66.249.65.84", "714");
INSERT INTO `wp_gf_form_view` VALUES("591", "3", "2014-08-21 09:00:09", "66.249.65.84", "3864");
INSERT INTO `wp_gf_form_view` VALUES("592", "6", "2014-08-21 09:00:11", "66.249.65.84", "764");
INSERT INTO `wp_gf_form_view` VALUES("593", "3", "2014-08-21 10:00:01", "66.249.65.76", "4140");
INSERT INTO `wp_gf_form_view` VALUES("594", "6", "2014-08-21 10:00:04", "66.249.65.76", "822");
INSERT INTO `wp_gf_form_view` VALUES("595", "6", "2014-08-21 11:00:00", "66.249.65.92", "842");
INSERT INTO `wp_gf_form_view` VALUES("596", "3", "2014-08-21 11:00:02", "66.249.65.76", "4244");
INSERT INTO `wp_gf_form_view` VALUES("597", "3", "2014-08-21 12:00:00", "66.249.65.76", "3556");
INSERT INTO `wp_gf_form_view` VALUES("598", "6", "2014-08-21 12:00:00", "66.249.65.76", "704");
INSERT INTO `wp_gf_form_view` VALUES("599", "3", "2014-08-21 13:00:04", "66.249.65.92", "2894");
INSERT INTO `wp_gf_form_view` VALUES("600", "6", "2014-08-21 13:00:06", "66.249.65.92", "572");
INSERT INTO `wp_gf_form_view` VALUES("601", "3", "2014-08-21 14:00:59", "66.249.65.84", "2526");
INSERT INTO `wp_gf_form_view` VALUES("602", "6", "2014-08-21 14:01:01", "66.249.65.84", "497");
INSERT INTO `wp_gf_form_view` VALUES("603", "6", "2014-08-21 15:00:00", "69.64.41.236", "915");
INSERT INTO `wp_gf_form_view` VALUES("604", "3", "2014-08-21 15:00:03", "69.64.41.236", "4596");
INSERT INTO `wp_gf_form_view` VALUES("605", "3", "2014-08-21 16:01:38", "66.249.67.132", "4128");
INSERT INTO `wp_gf_form_view` VALUES("606", "6", "2014-08-21 16:01:45", "66.249.67.132", "820");
INSERT INTO `wp_gf_form_view` VALUES("607", "3", "2014-08-21 17:00:05", "142.4.213.178", "5224");
INSERT INTO `wp_gf_form_view` VALUES("608", "6", "2014-08-21 17:00:07", "142.4.213.178", "1040");
INSERT INTO `wp_gf_form_view` VALUES("609", "3", "2014-08-21 18:00:01", "66.249.67.119", "6490");
INSERT INTO `wp_gf_form_view` VALUES("610", "6", "2014-08-21 18:00:04", "66.249.67.119", "1284");
INSERT INTO `wp_gf_form_view` VALUES("611", "3", "2014-08-21 19:00:16", "66.249.67.132", "5759");
INSERT INTO `wp_gf_form_view` VALUES("612", "6", "2014-08-21 19:00:21", "66.249.67.132", "1142");
INSERT INTO `wp_gf_form_view` VALUES("613", "3", "2014-08-21 20:00:02", "66.249.67.119", "8712");
INSERT INTO `wp_gf_form_view` VALUES("614", "6", "2014-08-21 20:00:05", "66.249.67.119", "1723");
INSERT INTO `wp_gf_form_view` VALUES("615", "6", "2014-08-21 21:00:00", "66.249.67.132", "1549");
INSERT INTO `wp_gf_form_view` VALUES("616", "3", "2014-08-21 21:00:00", "66.249.67.132", "7829");
INSERT INTO `wp_gf_form_view` VALUES("617", "3", "2014-08-21 22:00:00", "66.249.67.132", "7549");
INSERT INTO `wp_gf_form_view` VALUES("618", "6", "2014-08-21 22:00:00", "66.249.67.145", "1492");
INSERT INTO `wp_gf_form_view` VALUES("619", "1", "2014-08-21 22:39:17", "198.211.110.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("620", "2", "2014-08-21 22:39:17", "198.211.110.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("621", "3", "2014-08-21 23:00:00", "66.249.67.145", "7852");
INSERT INTO `wp_gf_form_view` VALUES("622", "6", "2014-08-21 23:00:01", "66.249.67.145", "1554");
INSERT INTO `wp_gf_form_view` VALUES("623", "1", "2014-08-21 23:19:36", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("624", "2", "2014-08-21 23:20:21", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("625", "3", "2014-08-22 00:00:00", "66.249.67.119", "7751");
INSERT INTO `wp_gf_form_view` VALUES("626", "6", "2014-08-22 00:00:00", "66.249.67.119", "1536");
INSERT INTO `wp_gf_form_view` VALUES("627", "3", "2014-08-22 01:00:00", "66.249.67.145", "7155");
INSERT INTO `wp_gf_form_view` VALUES("628", "6", "2014-08-22 01:00:02", "66.249.67.145", "1420");
INSERT INTO `wp_gf_form_view` VALUES("629", "3", "2014-08-22 02:00:02", "66.249.67.132", "6695");
INSERT INTO `wp_gf_form_view` VALUES("630", "6", "2014-08-22 02:00:05", "66.249.67.132", "1320");
INSERT INTO `wp_gf_form_view` VALUES("631", "3", "2014-08-22 03:00:00", "66.249.67.132", "7599");
INSERT INTO `wp_gf_form_view` VALUES("632", "6", "2014-08-22 03:00:02", "66.249.67.132", "1504");
INSERT INTO `wp_gf_form_view` VALUES("633", "3", "2014-08-22 04:00:01", "66.249.67.132", "7576");
INSERT INTO `wp_gf_form_view` VALUES("634", "6", "2014-08-22 04:00:05", "66.249.67.132", "1496");
INSERT INTO `wp_gf_form_view` VALUES("635", "3", "2014-08-22 05:00:01", "66.249.67.132", "7432");
INSERT INTO `wp_gf_form_view` VALUES("636", "6", "2014-08-22 05:00:05", "66.249.67.132", "1472");
INSERT INTO `wp_gf_form_view` VALUES("637", "3", "2014-08-22 06:00:00", "66.249.67.119", "7254");
INSERT INTO `wp_gf_form_view` VALUES("638", "6", "2014-08-22 06:00:03", "66.249.67.119", "1438");
INSERT INTO `wp_gf_form_view` VALUES("639", "3", "2014-08-22 07:00:00", "66.249.67.145", "8127");
INSERT INTO `wp_gf_form_view` VALUES("640", "6", "2014-08-22 07:00:01", "66.249.67.145", "1596");
INSERT INTO `wp_gf_form_view` VALUES("641", "2", "2014-08-22 07:42:38", "192.34.61.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("642", "1", "2014-08-22 07:42:38", "192.34.61.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("643", "3", "2014-08-22 08:00:00", "66.249.67.145", "6845");
INSERT INTO `wp_gf_form_view` VALUES("644", "6", "2014-08-22 08:00:03", "66.249.67.145", "1349");
INSERT INTO `wp_gf_form_view` VALUES("645", "1", "2014-08-22 08:57:29", "66.249.67.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("646", "6", "2014-08-22 09:00:00", "66.249.67.132", "1291");
INSERT INTO `wp_gf_form_view` VALUES("647", "3", "2014-08-22 09:00:01", "66.249.67.119", "6526");
INSERT INTO `wp_gf_form_view` VALUES("648", "1", "2014-08-22 09:29:54", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("649", "2", "2014-08-22 09:30:00", "192.99.8.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("650", "3", "2014-08-22 10:00:00", "66.249.67.119", "6215");
INSERT INTO `wp_gf_form_view` VALUES("651", "6", "2014-08-22 10:00:01", "66.249.67.119", "1228");
INSERT INTO `wp_gf_form_view` VALUES("652", "3", "2014-08-22 11:00:00", "66.249.67.119", "3560");
INSERT INTO `wp_gf_form_view` VALUES("653", "6", "2014-08-22 11:00:03", "66.249.67.119", "702");
INSERT INTO `wp_gf_form_view` VALUES("654", "3", "2014-08-22 12:02:08", "66.249.67.132", "3625");
INSERT INTO `wp_gf_form_view` VALUES("655", "6", "2014-08-22 12:02:10", "66.249.67.132", "718");
INSERT INTO `wp_gf_form_view` VALUES("656", "3", "2014-08-22 13:00:01", "66.249.67.132", "6723");
INSERT INTO `wp_gf_form_view` VALUES("657", "6", "2014-08-22 13:00:03", "66.249.67.132", "1334");
INSERT INTO `wp_gf_form_view` VALUES("658", "3", "2014-08-22 14:00:00", "66.249.67.119", "6703");
INSERT INTO `wp_gf_form_view` VALUES("659", "6", "2014-08-22 14:00:02", "66.249.67.119", "1328");
INSERT INTO `wp_gf_form_view` VALUES("660", "3", "2014-08-22 15:00:00", "66.249.79.119", "6444");
INSERT INTO `wp_gf_form_view` VALUES("661", "6", "2014-08-22 15:00:03", "66.249.79.119", "1274");
INSERT INTO `wp_gf_form_view` VALUES("662", "3", "2014-08-22 16:00:00", "66.249.79.132", "6449");
INSERT INTO `wp_gf_form_view` VALUES("663", "6", "2014-08-22 16:00:04", "66.249.79.132", "1274");
INSERT INTO `wp_gf_form_view` VALUES("664", "1", "2014-08-22 16:48:43", "222.94.145.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("665", "3", "2014-08-22 17:00:00", "66.249.79.132", "6376");
INSERT INTO `wp_gf_form_view` VALUES("666", "6", "2014-08-22 17:00:02", "66.249.79.132", "1262");
INSERT INTO `wp_gf_form_view` VALUES("667", "3", "2014-08-22 18:00:03", "66.249.79.119", "6264");
INSERT INTO `wp_gf_form_view` VALUES("668", "6", "2014-08-22 18:00:06", "66.249.79.119", "1232");
INSERT INTO `wp_gf_form_view` VALUES("669", "3", "2014-08-22 19:00:01", "66.249.79.145", "5856");
INSERT INTO `wp_gf_form_view` VALUES("670", "6", "2014-08-22 19:00:04", "66.249.79.145", "1156");
INSERT INTO `wp_gf_form_view` VALUES("671", "3", "2014-08-22 20:00:00", "66.249.79.145", "6034");
INSERT INTO `wp_gf_form_view` VALUES("672", "6", "2014-08-22 20:00:03", "66.249.79.145", "1198");
INSERT INTO `wp_gf_form_view` VALUES("673", "3", "2014-08-22 21:00:01", "66.249.79.145", "5870");
INSERT INTO `wp_gf_form_view` VALUES("674", "6", "2014-08-22 21:00:05", "66.249.79.145", "1162");
INSERT INTO `wp_gf_form_view` VALUES("675", "3", "2014-08-22 22:00:01", "66.249.79.145", "5834");
INSERT INTO `wp_gf_form_view` VALUES("676", "6", "2014-08-22 22:00:05", "66.249.79.145", "1151");
INSERT INTO `wp_gf_form_view` VALUES("677", "6", "2014-08-22 23:00:00", "66.249.79.145", "511");
INSERT INTO `wp_gf_form_view` VALUES("678", "3", "2014-08-22 23:00:03", "66.249.79.119", "2562");
INSERT INTO `wp_gf_form_view` VALUES("679", "3", "2014-08-23 00:01:23", "66.249.79.132", "2228");
INSERT INTO `wp_gf_form_view` VALUES("680", "6", "2014-08-23 00:01:25", "66.249.79.132", "444");
INSERT INTO `wp_gf_form_view` VALUES("681", "3", "2014-08-23 01:00:03", "66.249.79.145", "6354");
INSERT INTO `wp_gf_form_view` VALUES("682", "6", "2014-08-23 01:00:04", "66.249.79.145", "1260");
INSERT INTO `wp_gf_form_view` VALUES("683", "3", "2014-08-23 02:00:00", "66.249.79.145", "6356");
INSERT INTO `wp_gf_form_view` VALUES("684", "6", "2014-08-23 02:00:04", "66.249.79.145", "1253");
INSERT INTO `wp_gf_form_view` VALUES("685", "6", "2014-08-23 03:00:00", "66.249.79.119", "1271");
INSERT INTO `wp_gf_form_view` VALUES("686", "3", "2014-08-23 03:00:02", "66.249.79.132", "6409");
INSERT INTO `wp_gf_form_view` VALUES("687", "3", "2014-08-23 04:00:00", "66.249.79.119", "6497");
INSERT INTO `wp_gf_form_view` VALUES("688", "6", "2014-08-23 04:00:03", "66.249.79.119", "1294");
INSERT INTO `wp_gf_form_view` VALUES("689", "3", "2014-08-23 05:00:23", "66.249.79.132", "6248");
INSERT INTO `wp_gf_form_view` VALUES("690", "6", "2014-08-23 05:00:26", "66.249.79.132", "1238");
INSERT INTO `wp_gf_form_view` VALUES("691", "3", "2014-08-23 06:00:00", "66.249.79.145", "5642");
INSERT INTO `wp_gf_form_view` VALUES("692", "6", "2014-08-23 06:00:00", "66.249.79.145", "1118");
INSERT INTO `wp_gf_form_view` VALUES("693", "3", "2014-08-23 07:00:01", "66.249.79.132", "6064");
INSERT INTO `wp_gf_form_view` VALUES("694", "6", "2014-08-23 07:00:04", "66.249.79.132", "1196");
INSERT INTO `wp_gf_form_view` VALUES("695", "3", "2014-08-23 08:00:00", "66.249.79.119", "5895");
INSERT INTO `wp_gf_form_view` VALUES("696", "6", "2014-08-23 08:00:00", "66.249.79.119", "1166");
INSERT INTO `wp_gf_form_view` VALUES("697", "3", "2014-08-23 09:00:06", "66.249.79.145", "5602");
INSERT INTO `wp_gf_form_view` VALUES("698", "6", "2014-08-23 09:00:09", "66.249.79.145", "1102");
INSERT INTO `wp_gf_form_view` VALUES("699", "3", "2014-08-23 10:00:00", "66.249.79.145", "5020");
INSERT INTO `wp_gf_form_view` VALUES("700", "6", "2014-08-23 10:00:03", "66.249.79.145", "996");
INSERT INTO `wp_gf_form_view` VALUES("701", "3", "2014-08-23 11:00:02", "66.249.79.119", "772");
INSERT INTO `wp_gf_form_view` VALUES("702", "6", "2014-08-23 11:00:04", "66.249.79.119", "152");
INSERT INTO `wp_gf_form_view` VALUES("703", "3", "2014-08-23 12:02:54", "66.249.79.132", "4888");
INSERT INTO `wp_gf_form_view` VALUES("704", "6", "2014-08-23 12:02:54", "66.249.79.132", "962");
INSERT INTO `wp_gf_form_view` VALUES("705", "3", "2014-08-23 13:00:00", "66.249.79.132", "6325");
INSERT INTO `wp_gf_form_view` VALUES("706", "6", "2014-08-23 13:00:03", "66.249.79.132", "1250");
INSERT INTO `wp_gf_form_view` VALUES("707", "3", "2014-08-23 14:00:48", "66.249.79.119", "6277");
INSERT INTO `wp_gf_form_view` VALUES("708", "6", "2014-08-23 14:00:51", "66.249.79.119", "1246");
INSERT INTO `wp_gf_form_view` VALUES("709", "1", "2014-08-23 14:45:00", "192.114.71.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("710", "2", "2014-08-23 14:45:01", "192.114.71.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("711", "3", "2014-08-23 15:00:01", "66.249.79.119", "10161");
INSERT INTO `wp_gf_form_view` VALUES("712", "6", "2014-08-23 15:00:05", "66.249.79.119", "1948");
INSERT INTO `wp_gf_form_view` VALUES("713", "2", "2014-08-23 15:14:17", "144.76.167.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("714", "1", "2014-08-23 15:15:32", "144.76.167.214", "3");
INSERT INTO `wp_gf_form_view` VALUES("715", "3", "2014-08-23 16:00:00", "66.249.79.119", "8221");
INSERT INTO `wp_gf_form_view` VALUES("716", "6", "2014-08-23 16:00:00", "144.76.167.214", "1591");
INSERT INTO `wp_gf_form_view` VALUES("717", "3", "2014-08-23 17:00:00", "66.249.79.132", "6295");
INSERT INTO `wp_gf_form_view` VALUES("718", "6", "2014-08-23 17:00:03", "66.249.79.132", "1254");
INSERT INTO `wp_gf_form_view` VALUES("719", "3", "2014-08-23 18:00:00", "66.249.79.145", "5668");
INSERT INTO `wp_gf_form_view` VALUES("720", "6", "2014-08-23 18:00:04", "66.249.79.145", "1118");
INSERT INTO `wp_gf_form_view` VALUES("721", "2", "2014-08-23 18:11:36", "36.232.119.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("722", "3", "2014-08-23 19:00:00", "66.249.79.145", "6505");
INSERT INTO `wp_gf_form_view` VALUES("723", "6", "2014-08-23 19:00:03", "66.249.79.145", "1284");
INSERT INTO `wp_gf_form_view` VALUES("724", "3", "2014-08-23 20:00:00", "66.249.79.119", "6430");
INSERT INTO `wp_gf_form_view` VALUES("725", "6", "2014-08-23 20:00:01", "66.249.79.119", "1264");
INSERT INTO `wp_gf_form_view` VALUES("726", "3", "2014-08-23 21:00:00", "66.249.79.132", "5975");
INSERT INTO `wp_gf_form_view` VALUES("727", "6", "2014-08-23 21:00:00", "66.249.79.132", "1186");
INSERT INTO `wp_gf_form_view` VALUES("728", "3", "2014-08-23 22:00:00", "66.249.79.145", "5554");
INSERT INTO `wp_gf_form_view` VALUES("729", "6", "2014-08-23 22:00:03", "66.249.79.145", "1099");
INSERT INTO `wp_gf_form_view` VALUES("730", "6", "2014-08-23 23:00:00", "66.249.79.145", "893");
INSERT INTO `wp_gf_form_view` VALUES("731", "3", "2014-08-23 23:00:11", "66.249.79.132", "4520");
INSERT INTO `wp_gf_form_view` VALUES("732", "3", "2014-08-24 00:00:01", "66.249.79.132", "5726");
INSERT INTO `wp_gf_form_view` VALUES("733", "6", "2014-08-24 00:00:04", "66.249.79.132", "1130");
INSERT INTO `wp_gf_form_view` VALUES("734", "3", "2014-08-24 01:00:02", "66.249.79.119", "6216");
INSERT INTO `wp_gf_form_view` VALUES("735", "6", "2014-08-24 01:00:05", "66.249.79.119", "1225");
INSERT INTO `wp_gf_form_view` VALUES("736", "6", "2014-08-24 02:00:00", "66.249.79.145", "1161");
INSERT INTO `wp_gf_form_view` VALUES("737", "3", "2014-08-24 02:00:02", "66.249.79.119", "5866");
INSERT INTO `wp_gf_form_view` VALUES("738", "3", "2014-08-24 03:00:01", "66.249.79.119", "6403");
INSERT INTO `wp_gf_form_view` VALUES("739", "6", "2014-08-24 03:00:05", "66.249.79.119", "1269");
INSERT INTO `wp_gf_form_view` VALUES("740", "3", "2014-08-24 04:00:01", "66.249.79.119", "6321");
INSERT INTO `wp_gf_form_view` VALUES("741", "6", "2014-08-24 04:00:04", "66.249.79.119", "1240");
INSERT INTO `wp_gf_form_view` VALUES("742", "3", "2014-08-24 05:00:00", "66.249.79.145", "6246");
INSERT INTO `wp_gf_form_view` VALUES("743", "6", "2014-08-24 05:00:03", "66.249.79.145", "1236");
INSERT INTO `wp_gf_form_view` VALUES("744", "3", "2014-08-24 06:00:00", "66.249.79.145", "5941");
INSERT INTO `wp_gf_form_view` VALUES("745", "6", "2014-08-24 06:00:01", "66.249.79.145", "1180");
INSERT INTO `wp_gf_form_view` VALUES("746", "3", "2014-08-24 07:00:02", "66.249.79.132", "6153");
INSERT INTO `wp_gf_form_view` VALUES("747", "6", "2014-08-24 07:00:05", "66.249.79.132", "1222");
INSERT INTO `wp_gf_form_view` VALUES("748", "3", "2014-08-24 08:00:00", "66.249.79.145", "5399");
INSERT INTO `wp_gf_form_view` VALUES("749", "6", "2014-08-24 08:00:02", "66.249.79.145", "1070");
INSERT INTO `wp_gf_form_view` VALUES("750", "3", "2014-08-24 09:00:01", "66.249.79.132", "5126");
INSERT INTO `wp_gf_form_view` VALUES("751", "6", "2014-08-24 09:00:04", "66.249.79.132", "1014");
INSERT INTO `wp_gf_form_view` VALUES("752", "3", "2014-08-24 10:00:00", "66.249.79.119", "6022");
INSERT INTO `wp_gf_form_view` VALUES("753", "6", "2014-08-24 10:00:02", "66.249.79.119", "1192");
INSERT INTO `wp_gf_form_view` VALUES("754", "3", "2014-08-24 11:00:01", "66.249.79.145", "2958");
INSERT INTO `wp_gf_form_view` VALUES("755", "6", "2014-08-24 11:00:04", "66.249.79.145", "586");
INSERT INTO `wp_gf_form_view` VALUES("756", "3", "2014-08-24 12:00:02", "66.249.79.145", "5809");
INSERT INTO `wp_gf_form_view` VALUES("757", "6", "2014-08-24 12:00:04", "66.249.79.145", "1148");
INSERT INTO `wp_gf_form_view` VALUES("758", "3", "2014-08-24 13:00:00", "66.249.79.132", "5949");
INSERT INTO `wp_gf_form_view` VALUES("759", "6", "2014-08-24 13:00:01", "66.249.79.132", "1176");
INSERT INTO `wp_gf_form_view` VALUES("760", "3", "2014-08-24 14:00:01", "66.249.79.132", "6106");
INSERT INTO `wp_gf_form_view` VALUES("761", "6", "2014-08-24 14:00:05", "66.249.79.132", "1204");
INSERT INTO `wp_gf_form_view` VALUES("762", "3", "2014-08-24 15:00:01", "66.249.79.145", "6074");
INSERT INTO `wp_gf_form_view` VALUES("763", "6", "2014-08-24 15:00:05", "66.249.79.145", "1204");
INSERT INTO `wp_gf_form_view` VALUES("764", "1", "2014-08-24 15:51:47", "93.182.133.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("765", "3", "2014-08-24 16:00:00", "66.249.79.119", "5719");
INSERT INTO `wp_gf_form_view` VALUES("766", "6", "2014-08-24 16:00:00", "66.249.79.119", "1130");
INSERT INTO `wp_gf_form_view` VALUES("767", "3", "2014-08-24 17:00:00", "66.249.79.132", "5225");
INSERT INTO `wp_gf_form_view` VALUES("768", "6", "2014-08-24 17:00:04", "66.249.79.132", "1030");
INSERT INTO `wp_gf_form_view` VALUES("769", "3", "2014-08-24 18:00:00", "66.249.79.119", "4307");
INSERT INTO `wp_gf_form_view` VALUES("770", "6", "2014-08-24 18:00:03", "66.249.79.119", "852");
INSERT INTO `wp_gf_form_view` VALUES("771", "3", "2014-08-24 19:00:00", "66.249.79.145", "5017");
INSERT INTO `wp_gf_form_view` VALUES("772", "6", "2014-08-24 19:00:01", "66.249.79.145", "994");
INSERT INTO `wp_gf_form_view` VALUES("773", "3", "2014-08-24 20:00:00", "66.249.79.132", "5053");
INSERT INTO `wp_gf_form_view` VALUES("774", "6", "2014-08-24 20:00:03", "66.249.79.132", "1000");
INSERT INTO `wp_gf_form_view` VALUES("775", "3", "2014-08-24 21:00:11", "66.249.69.92", "3628");
INSERT INTO `wp_gf_form_view` VALUES("776", "6", "2014-08-24 21:00:14", "66.249.69.92", "716");
INSERT INTO `wp_gf_form_view` VALUES("777", "3", "2014-08-24 22:00:00", "66.249.79.145", "4773");
INSERT INTO `wp_gf_form_view` VALUES("778", "6", "2014-08-24 22:00:00", "66.249.79.145", "950");
INSERT INTO `wp_gf_form_view` VALUES("779", "3", "2014-08-24 23:00:02", "66.249.79.119", "2900");
INSERT INTO `wp_gf_form_view` VALUES("780", "6", "2014-08-24 23:00:05", "66.249.79.119", "574");
INSERT INTO `wp_gf_form_view` VALUES("781", "6", "2014-08-25 00:00:00", "66.249.79.119", "1234");
INSERT INTO `wp_gf_form_view` VALUES("782", "3", "2014-08-25 00:00:04", "66.249.79.119", "6212");
INSERT INTO `wp_gf_form_view` VALUES("783", "3", "2014-08-25 01:00:00", "66.249.79.145", "6284");
INSERT INTO `wp_gf_form_view` VALUES("784", "6", "2014-08-25 01:00:00", "66.249.79.145", "1242");
INSERT INTO `wp_gf_form_view` VALUES("785", "3", "2014-08-25 02:00:03", "66.249.79.119", "5906");
INSERT INTO `wp_gf_form_view` VALUES("786", "6", "2014-08-25 02:00:06", "66.249.79.119", "1166");
INSERT INTO `wp_gf_form_view` VALUES("787", "3", "2014-08-25 03:00:07", "66.249.79.119", "6745");
INSERT INTO `wp_gf_form_view` VALUES("788", "6", "2014-08-25 03:00:10", "66.249.79.119", "1334");
INSERT INTO `wp_gf_form_view` VALUES("789", "1", "2014-08-25 03:29:10", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("790", "2", "2014-08-25 03:29:49", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("791", "3", "2014-08-25 04:00:00", "66.249.79.119", "6222");
INSERT INTO `wp_gf_form_view` VALUES("792", "6", "2014-08-25 04:00:00", "66.249.79.119", "1231");
INSERT INTO `wp_gf_form_view` VALUES("793", "6", "2014-08-25 05:00:00", "66.249.79.145", "1221");
INSERT INTO `wp_gf_form_view` VALUES("794", "3", "2014-08-25 05:00:02", "66.249.79.132", "6158");
INSERT INTO `wp_gf_form_view` VALUES("795", "3", "2014-08-25 06:00:01", "66.249.79.145", "5852");
INSERT INTO `wp_gf_form_view` VALUES("796", "6", "2014-08-25 06:00:04", "66.249.79.145", "1156");
INSERT INTO `wp_gf_form_view` VALUES("797", "3", "2014-08-25 07:00:00", "66.249.79.119", "6263");
INSERT INTO `wp_gf_form_view` VALUES("798", "6", "2014-08-25 07:00:03", "66.249.79.119", "1240");
INSERT INTO `wp_gf_form_view` VALUES("799", "1", "2014-08-25 07:59:33", "183.15.95.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("800", "2", "2014-08-25 07:59:42", "183.15.95.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("801", "3", "2014-08-25 08:00:00", "183.15.95.130", "5913");
INSERT INTO `wp_gf_form_view` VALUES("802", "6", "2014-08-25 08:00:01", "183.15.95.130", "1172");
INSERT INTO `wp_gf_form_view` VALUES("803", "3", "2014-08-25 09:00:00", "66.249.79.145", "5327");
INSERT INTO `wp_gf_form_view` VALUES("804", "6", "2014-08-25 09:00:03", "66.249.79.145", "1048");
INSERT INTO `wp_gf_form_view` VALUES("805", "3", "2014-08-25 10:00:00", "66.249.79.132", "6148");
INSERT INTO `wp_gf_form_view` VALUES("806", "6", "2014-08-25 10:00:01", "66.249.79.132", "1210");
INSERT INTO `wp_gf_form_view` VALUES("807", "3", "2014-08-25 11:00:00", "66.249.79.132", "3613");
INSERT INTO `wp_gf_form_view` VALUES("808", "6", "2014-08-25 11:00:00", "66.249.79.132", "720");
INSERT INTO `wp_gf_form_view` VALUES("809", "3", "2014-08-25 12:00:03", "66.249.79.132", "7754");
INSERT INTO `wp_gf_form_view` VALUES("810", "6", "2014-08-25 12:00:05", "66.249.79.132", "1528");
INSERT INTO `wp_gf_form_view` VALUES("811", "3", "2014-08-25 13:00:00", "66.249.79.145", "8606");
INSERT INTO `wp_gf_form_view` VALUES("812", "6", "2014-08-25 13:00:00", "66.249.79.145", "1710");
INSERT INTO `wp_gf_form_view` VALUES("813", "1", "2014-08-25 13:17:41", "213.238.175.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("814", "3", "2014-08-25 14:00:00", "66.249.79.119", "6454");
INSERT INTO `wp_gf_form_view` VALUES("815", "6", "2014-08-25 14:00:01", "66.249.79.119", "1280");
INSERT INTO `wp_gf_form_view` VALUES("816", "3", "2014-08-25 15:00:00", "66.249.79.119", "6449");
INSERT INTO `wp_gf_form_view` VALUES("817", "6", "2014-08-25 15:00:03", "66.249.79.119", "1275");
INSERT INTO `wp_gf_form_view` VALUES("818", "3", "2014-08-25 16:00:00", "66.249.79.145", "6550");
INSERT INTO `wp_gf_form_view` VALUES("819", "6", "2014-08-25 16:00:00", "66.249.79.145", "1294");
INSERT INTO `wp_gf_form_view` VALUES("820", "3", "2014-08-25 17:00:03", "66.249.79.132", "6422");
INSERT INTO `wp_gf_form_view` VALUES("821", "6", "2014-08-25 17:00:06", "66.249.79.132", "1270");
INSERT INTO `wp_gf_form_view` VALUES("822", "3", "2014-08-25 18:00:00", "66.249.79.119", "4837");
INSERT INTO `wp_gf_form_view` VALUES("823", "6", "2014-08-25 18:00:00", "66.249.79.119", "960");
INSERT INTO `wp_gf_form_view` VALUES("824", "2", "2014-08-25 18:22:21", "93.182.134.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("825", "3", "2014-08-25 19:00:52", "66.249.79.132", "5924");
INSERT INTO `wp_gf_form_view` VALUES("826", "6", "2014-08-25 19:00:54", "66.249.79.132", "1172");
INSERT INTO `wp_gf_form_view` VALUES("827", "3", "2014-08-25 20:00:00", "66.249.79.119", "6197");
INSERT INTO `wp_gf_form_view` VALUES("828", "6", "2014-08-25 20:00:02", "66.249.79.132", "1227");
INSERT INTO `wp_gf_form_view` VALUES("829", "6", "2014-08-25 21:00:00", "66.249.79.119", "1044");
INSERT INTO `wp_gf_form_view` VALUES("830", "3", "2014-08-25 21:00:07", "66.249.79.132", "5289");
INSERT INTO `wp_gf_form_view` VALUES("831", "3", "2014-08-25 22:00:00", "66.249.79.132", "5976");
INSERT INTO `wp_gf_form_view` VALUES("832", "6", "2014-08-25 22:00:00", "66.249.79.132", "1182");
INSERT INTO `wp_gf_form_view` VALUES("833", "3", "2014-08-25 23:00:00", "66.249.79.145", "3721");
INSERT INTO `wp_gf_form_view` VALUES("834", "6", "2014-08-25 23:00:01", "66.249.79.145", "740");
INSERT INTO `wp_gf_form_view` VALUES("835", "3", "2014-08-26 00:00:00", "66.249.79.145", "6267");
INSERT INTO `wp_gf_form_view` VALUES("836", "6", "2014-08-26 00:00:00", "66.249.79.145", "1240");
INSERT INTO `wp_gf_form_view` VALUES("837", "3", "2014-08-26 01:00:00", "66.249.79.119", "6137");
INSERT INTO `wp_gf_form_view` VALUES("838", "6", "2014-08-26 01:00:02", "66.249.79.119", "1212");
INSERT INTO `wp_gf_form_view` VALUES("839", "3", "2014-08-26 02:01:30", "66.249.79.145", "6158");
INSERT INTO `wp_gf_form_view` VALUES("840", "6", "2014-08-26 02:01:33", "66.249.79.145", "1220");
INSERT INTO `wp_gf_form_view` VALUES("841", "3", "2014-08-26 03:00:11", "66.249.79.132", "6062");
INSERT INTO `wp_gf_form_view` VALUES("842", "6", "2014-08-26 03:00:14", "66.249.79.132", "1202");
INSERT INTO `wp_gf_form_view` VALUES("843", "6", "2014-08-26 04:00:00", "66.249.79.145", "1276");
INSERT INTO `wp_gf_form_view` VALUES("844", "3", "2014-08-26 04:00:02", "66.249.79.119", "6436");
INSERT INTO `wp_gf_form_view` VALUES("845", "3", "2014-08-26 05:00:00", "66.249.79.119", "6503");
INSERT INTO `wp_gf_form_view` VALUES("846", "6", "2014-08-26 05:00:02", "66.249.79.119", "1292");
INSERT INTO `wp_gf_form_view` VALUES("847", "1", "2014-08-26 05:14:32", "192.34.61.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("848", "2", "2014-08-26 05:14:33", "192.34.61.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("849", "3", "2014-08-26 06:00:00", "66.249.79.132", "6404");
INSERT INTO `wp_gf_form_view` VALUES("850", "6", "2014-08-26 06:00:03", "66.249.79.132", "1264");
INSERT INTO `wp_gf_form_view` VALUES("851", "3", "2014-08-26 07:00:09", "66.249.79.132", "6234");
INSERT INTO `wp_gf_form_view` VALUES("852", "6", "2014-08-26 07:00:13", "66.249.79.132", "1234");
INSERT INTO `wp_gf_form_view` VALUES("853", "6", "2014-08-26 08:00:00", "66.249.79.132", "1268");
INSERT INTO `wp_gf_form_view` VALUES("854", "3", "2014-08-26 08:00:02", "66.249.79.145", "6386");
INSERT INTO `wp_gf_form_view` VALUES("855", "3", "2014-08-26 09:00:00", "66.249.79.132", "5906");
INSERT INTO `wp_gf_form_view` VALUES("856", "6", "2014-08-26 09:00:03", "66.249.79.132", "1170");
INSERT INTO `wp_gf_form_view` VALUES("857", "3", "2014-08-26 10:00:23", "66.249.79.132", "4508");
INSERT INTO `wp_gf_form_view` VALUES("858", "6", "2014-08-26 10:00:26", "66.249.79.132", "898");
INSERT INTO `wp_gf_form_view` VALUES("859", "3", "2014-08-26 11:05:06", "66.249.69.108", "4539");
INSERT INTO `wp_gf_form_view` VALUES("860", "6", "2014-08-26 11:05:07", "66.249.69.108", "896");
INSERT INTO `wp_gf_form_view` VALUES("861", "3", "2014-08-26 12:00:00", "66.249.79.145", "6465");
INSERT INTO `wp_gf_form_view` VALUES("862", "6", "2014-08-26 12:00:01", "66.249.79.145", "1274");
INSERT INTO `wp_gf_form_view` VALUES("863", "3", "2014-08-26 13:00:00", "66.249.79.145", "6490");
INSERT INTO `wp_gf_form_view` VALUES("864", "6", "2014-08-26 13:00:04", "66.249.79.145", "1278");
INSERT INTO `wp_gf_form_view` VALUES("865", "3", "2014-08-26 14:00:00", "66.249.79.145", "6519");
INSERT INTO `wp_gf_form_view` VALUES("866", "6", "2014-08-26 14:00:02", "66.249.79.145", "1288");
INSERT INTO `wp_gf_form_view` VALUES("867", "3", "2014-08-26 15:00:00", "66.249.79.145", "5931");
INSERT INTO `wp_gf_form_view` VALUES("868", "6", "2014-08-26 15:00:01", "66.249.79.145", "1170");
INSERT INTO `wp_gf_form_view` VALUES("869", "3", "2014-08-26 16:00:00", "66.249.79.132", "6553");
INSERT INTO `wp_gf_form_view` VALUES("870", "6", "2014-08-26 16:00:01", "66.249.79.132", "1288");
INSERT INTO `wp_gf_form_view` VALUES("871", "6", "2014-08-26 17:00:00", "157.55.39.110", "1378");
INSERT INTO `wp_gf_form_view` VALUES("872", "3", "2014-08-26 17:00:00", "66.249.79.132", "6983");
INSERT INTO `wp_gf_form_view` VALUES("873", "3", "2014-08-26 18:00:01", "66.249.79.132", "6237");
INSERT INTO `wp_gf_form_view` VALUES("874", "6", "2014-08-26 18:00:05", "66.249.79.132", "1230");
INSERT INTO `wp_gf_form_view` VALUES("875", "6", "2014-08-26 19:00:00", "66.249.79.145", "914");
INSERT INTO `wp_gf_form_view` VALUES("876", "3", "2014-08-26 19:00:00", "66.249.79.145", "4615");
INSERT INTO `wp_gf_form_view` VALUES("877", "3", "2014-08-26 20:00:00", "66.249.79.145", "7008");
INSERT INTO `wp_gf_form_view` VALUES("878", "6", "2014-08-26 20:00:02", "66.249.79.145", "1378");
INSERT INTO `wp_gf_form_view` VALUES("879", "3", "2014-08-26 21:00:00", "66.249.79.145", "7315");
INSERT INTO `wp_gf_form_view` VALUES("880", "6", "2014-08-26 21:00:03", "66.249.79.145", "1442");
INSERT INTO `wp_gf_form_view` VALUES("881", "3", "2014-08-26 22:00:00", "66.249.79.132", "3077");
INSERT INTO `wp_gf_form_view` VALUES("882", "6", "2014-08-26 22:00:02", "66.249.79.132", "614");
INSERT INTO `wp_gf_form_view` VALUES("883", "3", "2014-08-26 23:00:27", "66.249.79.132", "430");
INSERT INTO `wp_gf_form_view` VALUES("884", "6", "2014-08-26 23:00:29", "66.249.79.132", "84");
INSERT INTO `wp_gf_form_view` VALUES("885", "3", "2014-08-27 00:00:00", "66.249.79.119", "1028");
INSERT INTO `wp_gf_form_view` VALUES("886", "6", "2014-08-27 00:00:00", "66.249.79.119", "206");
INSERT INTO `wp_gf_form_view` VALUES("887", "3", "2014-08-27 01:01:01", "66.249.79.119", "6554");
INSERT INTO `wp_gf_form_view` VALUES("888", "6", "2014-08-27 01:01:01", "66.249.79.119", "1296");
INSERT INTO `wp_gf_form_view` VALUES("889", "3", "2014-08-27 02:00:01", "66.249.79.132", "6657");
INSERT INTO `wp_gf_form_view` VALUES("890", "6", "2014-08-27 02:00:04", "66.249.79.132", "1322");
INSERT INTO `wp_gf_form_view` VALUES("891", "3", "2014-08-27 03:00:00", "66.249.79.119", "6347");
INSERT INTO `wp_gf_form_view` VALUES("892", "6", "2014-08-27 03:00:01", "66.249.79.119", "1260");
INSERT INTO `wp_gf_form_view` VALUES("893", "3", "2014-08-27 04:00:00", "66.249.79.132", "7061");
INSERT INTO `wp_gf_form_view` VALUES("894", "6", "2014-08-27 04:00:04", "66.249.79.132", "1394");
INSERT INTO `wp_gf_form_view` VALUES("895", "3", "2014-08-27 05:00:00", "66.249.79.119", "5616");
INSERT INTO `wp_gf_form_view` VALUES("896", "6", "2014-08-27 05:00:01", "66.249.79.119", "1109");
INSERT INTO `wp_gf_form_view` VALUES("897", "3", "2014-08-27 06:00:00", "66.249.79.119", "4434");
INSERT INTO `wp_gf_form_view` VALUES("898", "6", "2014-08-27 06:00:06", "66.249.79.119", "878");
INSERT INTO `wp_gf_form_view` VALUES("899", "3", "2014-08-27 07:00:00", "66.249.79.145", "5026");
INSERT INTO `wp_gf_form_view` VALUES("900", "6", "2014-08-27 07:00:02", "66.249.79.145", "992");
INSERT INTO `wp_gf_form_view` VALUES("901", "6", "2014-08-27 07:46:32", "66.249.79.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("902", "3", "2014-08-27 08:00:09", "66.249.79.145", "7815");
INSERT INTO `wp_gf_form_view` VALUES("903", "6", "2014-08-27 08:00:11", "66.249.79.145", "1540");
INSERT INTO `wp_gf_form_view` VALUES("904", "1", "2014-08-27 08:54:17", "37.58.100.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("905", "3", "2014-08-27 09:00:00", "66.249.79.119", "7717");
INSERT INTO `wp_gf_form_view` VALUES("906", "6", "2014-08-27 09:00:04", "66.249.79.119", "1518");
INSERT INTO `wp_gf_form_view` VALUES("907", "3", "2014-08-27 10:00:00", "66.249.79.119", "8472");
INSERT INTO `wp_gf_form_view` VALUES("908", "6", "2014-08-27 10:00:03", "66.249.79.119", "1678");
INSERT INTO `wp_gf_form_view` VALUES("909", "2", "2014-08-27 10:02:25", "37.58.100.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("910", "3", "2014-08-27 11:00:44", "66.249.66.219", "8582");
INSERT INTO `wp_gf_form_view` VALUES("911", "6", "2014-08-27 11:00:49", "66.249.66.219", "1702");
INSERT INTO `wp_gf_form_view` VALUES("912", "6", "2014-08-27 12:00:00", "66.249.66.219", "1516");
INSERT INTO `wp_gf_form_view` VALUES("913", "3", "2014-08-27 12:00:01", "66.249.66.219", "7656");
INSERT INTO `wp_gf_form_view` VALUES("914", "1", "2014-08-27 12:26:57", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("915", "2", "2014-08-27 12:27:06", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("916", "3", "2014-08-27 13:00:32", "66.249.66.219", "5732");
INSERT INTO `wp_gf_form_view` VALUES("917", "6", "2014-08-27 13:00:35", "66.249.66.219", "1132");
INSERT INTO `wp_gf_form_view` VALUES("918", "1", "2014-08-27 13:01:03", "114.46.33.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("919", "3", "2014-08-27 14:00:00", "66.249.66.219", "7532");
INSERT INTO `wp_gf_form_view` VALUES("920", "6", "2014-08-27 14:00:00", "66.249.66.219", "1494");
INSERT INTO `wp_gf_form_view` VALUES("921", "6", "2014-08-27 15:00:00", "66.249.79.145", "1214");
INSERT INTO `wp_gf_form_view` VALUES("922", "3", "2014-08-27 15:00:00", "66.249.79.145", "6190");
INSERT INTO `wp_gf_form_view` VALUES("923", "3", "2014-08-27 16:00:00", "66.249.79.119", "7570");
INSERT INTO `wp_gf_form_view` VALUES("924", "6", "2014-08-27 16:00:01", "66.249.79.119", "1502");
INSERT INTO `wp_gf_form_view` VALUES("925", "3", "2014-08-27 17:00:00", "66.249.79.145", "6753");
INSERT INTO `wp_gf_form_view` VALUES("926", "6", "2014-08-27 17:00:03", "66.249.79.145", "1338");
INSERT INTO `wp_gf_form_view` VALUES("927", "3", "2014-08-27 18:00:02", "66.249.66.219", "4684");
INSERT INTO `wp_gf_form_view` VALUES("928", "6", "2014-08-27 18:00:06", "66.249.66.219", "928");
INSERT INTO `wp_gf_form_view` VALUES("929", "3", "2014-08-27 19:00:00", "66.249.66.219", "4223");
INSERT INTO `wp_gf_form_view` VALUES("930", "6", "2014-08-27 19:00:01", "66.249.66.219", "834");
INSERT INTO `wp_gf_form_view` VALUES("931", "3", "2014-08-27 20:00:00", "66.249.66.219", "5125");
INSERT INTO `wp_gf_form_view` VALUES("932", "6", "2014-08-27 20:00:01", "66.249.66.219", "1011");
INSERT INTO `wp_gf_form_view` VALUES("933", "2", "2014-08-27 20:02:28", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("934", "6", "2014-08-27 21:00:00", "66.249.66.219", "1055");
INSERT INTO `wp_gf_form_view` VALUES("935", "3", "2014-08-27 21:00:03", "66.249.66.219", "5341");
INSERT INTO `wp_gf_form_view` VALUES("936", "3", "2014-08-27 22:00:00", "66.249.66.219", "4973");
INSERT INTO `wp_gf_form_view` VALUES("937", "6", "2014-08-27 22:00:00", "66.249.66.219", "986");
INSERT INTO `wp_gf_form_view` VALUES("938", "3", "2014-08-27 23:00:00", "66.249.66.219", "5138");
INSERT INTO `wp_gf_form_view` VALUES("939", "6", "2014-08-27 23:00:01", "66.249.66.219", "1018");
INSERT INTO `wp_gf_form_view` VALUES("940", "3", "2014-08-28 00:00:00", "66.249.66.219", "3983");
INSERT INTO `wp_gf_form_view` VALUES("941", "6", "2014-08-28 00:00:02", "66.249.66.219", "793");
INSERT INTO `wp_gf_form_view` VALUES("942", "3", "2014-08-28 01:00:00", "66.249.66.219", "5928");
INSERT INTO `wp_gf_form_view` VALUES("943", "6", "2014-08-28 01:00:02", "66.249.66.219", "1173");
INSERT INTO `wp_gf_form_view` VALUES("944", "6", "2014-08-28 02:00:00", "66.249.66.219", "1085");
INSERT INTO `wp_gf_form_view` VALUES("945", "3", "2014-08-28 02:00:11", "66.249.66.219", "5492");
INSERT INTO `wp_gf_form_view` VALUES("946", "3", "2014-08-28 03:00:37", "66.249.66.219", "4877");
INSERT INTO `wp_gf_form_view` VALUES("947", "6", "2014-08-28 03:00:40", "66.249.66.219", "964");
INSERT INTO `wp_gf_form_view` VALUES("948", "3", "2014-08-28 04:00:00", "66.249.66.219", "6069");
INSERT INTO `wp_gf_form_view` VALUES("949", "6", "2014-08-28 04:00:02", "66.249.66.219", "1200");
INSERT INTO `wp_gf_form_view` VALUES("950", "3", "2014-08-28 05:00:00", "66.249.66.219", "5546");
INSERT INTO `wp_gf_form_view` VALUES("951", "6", "2014-08-28 05:00:02", "66.249.66.219", "1094");
INSERT INTO `wp_gf_form_view` VALUES("952", "3", "2014-08-28 06:00:00", "66.249.66.219", "5798");
INSERT INTO `wp_gf_form_view` VALUES("953", "6", "2014-08-28 06:00:02", "66.249.66.219", "1146");
INSERT INTO `wp_gf_form_view` VALUES("954", "3", "2014-08-28 07:00:00", "66.249.66.219", "7460");
INSERT INTO `wp_gf_form_view` VALUES("955", "6", "2014-08-28 07:00:03", "66.249.66.219", "1476");
INSERT INTO `wp_gf_form_view` VALUES("956", "3", "2014-08-28 08:00:08", "66.249.66.219", "7620");
INSERT INTO `wp_gf_form_view` VALUES("957", "6", "2014-08-28 08:00:11", "66.249.66.219", "1502");
INSERT INTO `wp_gf_form_view` VALUES("958", "3", "2014-08-28 09:00:00", "66.249.66.219", "7638");
INSERT INTO `wp_gf_form_view` VALUES("959", "6", "2014-08-28 09:00:00", "66.249.66.219", "1508");
INSERT INTO `wp_gf_form_view` VALUES("960", "3", "2014-08-28 10:00:07", "66.249.66.219", "7800");
INSERT INTO `wp_gf_form_view` VALUES("961", "6", "2014-08-28 10:00:10", "66.249.66.219", "1539");
INSERT INTO `wp_gf_form_view` VALUES("962", "1", "2014-08-28 10:46:08", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("963", "2", "2014-08-28 10:46:58", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("964", "3", "2014-08-28 11:00:03", "66.249.66.219", "6804");
INSERT INTO `wp_gf_form_view` VALUES("965", "6", "2014-08-28 11:00:07", "66.249.66.219", "1344");
INSERT INTO `wp_gf_form_view` VALUES("966", "2", "2014-08-28 11:06:56", "66.249.66.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("967", "6", "2014-08-28 12:00:00", "66.249.66.219", "928");
INSERT INTO `wp_gf_form_view` VALUES("968", "3", "2014-08-28 12:00:04", "66.249.66.219", "4696");
INSERT INTO `wp_gf_form_view` VALUES("969", "3", "2014-08-28 13:00:00", "66.249.66.219", "7020");
INSERT INTO `wp_gf_form_view` VALUES("970", "6", "2014-08-28 13:00:00", "66.249.66.219", "1394");
INSERT INTO `wp_gf_form_view` VALUES("971", "3", "2014-08-28 14:00:06", "66.249.66.219", "7115");
INSERT INTO `wp_gf_form_view` VALUES("972", "6", "2014-08-28 14:00:10", "66.249.66.219", "1406");
INSERT INTO `wp_gf_form_view` VALUES("973", "3", "2014-08-28 15:00:00", "66.249.66.219", "4165");
INSERT INTO `wp_gf_form_view` VALUES("974", "6", "2014-08-28 15:00:00", "66.249.66.219", "820");
INSERT INTO `wp_gf_form_view` VALUES("975", "6", "2014-08-28 16:00:00", "66.249.66.219", "1096");
INSERT INTO `wp_gf_form_view` VALUES("976", "3", "2014-08-28 16:00:02", "66.249.66.219", "5568");
INSERT INTO `wp_gf_form_view` VALUES("977", "1", "2014-08-28 16:25:18", "66.249.66.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("978", "3", "2014-08-28 17:00:02", "66.249.66.219", "5691");
INSERT INTO `wp_gf_form_view` VALUES("979", "6", "2014-08-28 17:00:06", "66.249.66.219", "1122");
INSERT INTO `wp_gf_form_view` VALUES("980", "2", "2014-08-28 17:18:20", "36.232.115.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("981", "3", "2014-08-28 18:00:00", "66.249.66.219", "5611");
INSERT INTO `wp_gf_form_view` VALUES("982", "6", "2014-08-28 18:00:02", "66.249.66.219", "1108");
INSERT INTO `wp_gf_form_view` VALUES("983", "2", "2014-08-28 18:01:02", "207.194.133.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("984", "3", "2014-08-28 19:00:00", "66.249.66.219", "4934");
INSERT INTO `wp_gf_form_view` VALUES("985", "6", "2014-08-28 19:00:02", "66.249.66.219", "714");
INSERT INTO `wp_gf_form_view` VALUES("986", "2", "2014-08-28 19:24:05", "24.68.35.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("987", "3", "2014-08-28 20:00:00", "66.249.66.219", "6337");
INSERT INTO `wp_gf_form_view` VALUES("988", "2", "2014-08-28 20:07:46", "70.67.253.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("989", "6", "2014-08-28 20:38:39", "66.249.66.219", "4");
INSERT INTO `wp_gf_form_view` VALUES("990", "3", "2014-08-28 21:00:00", "66.249.66.219", "6608");
INSERT INTO `wp_gf_form_view` VALUES("991", "2", "2014-08-28 21:02:01", "131.137.245.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("992", "6", "2014-08-28 21:38:45", "24.108.136.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("993", "3", "2014-08-28 22:00:00", "66.249.66.219", "6279");
INSERT INTO `wp_gf_form_view` VALUES("994", "3", "2014-08-28 23:00:00", "66.249.66.219", "5640");
INSERT INTO `wp_gf_form_view` VALUES("995", "2", "2014-08-28 23:18:59", "142.36.252.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("996", "3", "2014-08-29 00:00:02", "66.249.66.219", "5119");
INSERT INTO `wp_gf_form_view` VALUES("997", "6", "2014-08-29 00:36:35", "66.249.66.219", "4");
INSERT INTO `wp_gf_form_view` VALUES("998", "3", "2014-08-29 01:00:00", "66.249.66.219", "5902");
INSERT INTO `wp_gf_form_view` VALUES("999", "3", "2014-08-29 02:00:00", "66.249.66.219", "6085");
INSERT INTO `wp_gf_form_view` VALUES("1000", "2", "2014-08-29 02:12:49", "66.189.159.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("1001", "6", "2014-08-29 02:20:12", "66.249.66.219", "8");
INSERT INTO `wp_gf_form_view` VALUES("1002", "3", "2014-08-29 03:00:02", "66.249.66.219", "6048");
INSERT INTO `wp_gf_form_view` VALUES("1003", "6", "2014-08-29 03:02:10", "66.249.66.219", "4");
INSERT INTO `wp_gf_form_view` VALUES("1004", "3", "2014-08-29 04:00:01", "66.249.66.219", "6826");
INSERT INTO `wp_gf_form_view` VALUES("1005", "6", "2014-08-29 04:09:22", "66.249.66.219", "4");
INSERT INTO `wp_gf_form_view` VALUES("1006", "3", "2014-08-29 05:00:00", "66.249.66.219", "6774");
INSERT INTO `wp_gf_form_view` VALUES("1007", "6", "2014-08-29 05:54:44", "157.55.39.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("1008", "3", "2014-08-29 06:00:00", "66.249.66.219", "5450");
INSERT INTO `wp_gf_form_view` VALUES("1009", "6", "2014-08-29 06:52:57", "66.249.66.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("1010", "3", "2014-08-29 07:00:00", "66.249.66.219", "8171");
INSERT INTO `wp_gf_form_view` VALUES("1011", "6", "2014-08-29 07:07:42", "66.249.66.219", "6");
INSERT INTO `wp_gf_form_view` VALUES("1012", "3", "2014-08-29 08:00:39", "66.249.66.219", "8812");
INSERT INTO `wp_gf_form_view` VALUES("1013", "3", "2014-08-29 09:00:00", "66.249.66.219", "8371");
INSERT INTO `wp_gf_form_view` VALUES("1014", "6", "2014-08-29 09:44:39", "66.249.66.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("1015", "3", "2014-08-29 10:00:00", "66.249.79.119", "9220");
INSERT INTO `wp_gf_form_view` VALUES("1016", "6", "2014-08-29 10:12:51", "66.249.79.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("1017", "3", "2014-08-29 11:00:08", "66.249.79.132", "6975");
INSERT INTO `wp_gf_form_view` VALUES("1018", "6", "2014-08-29 11:02:29", "66.249.79.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("1019", "3", "2014-08-29 12:00:00", "66.249.79.132", "7723");
INSERT INTO `wp_gf_form_view` VALUES("1020", "6", "2014-08-29 12:56:14", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1021", "3", "2014-08-29 13:00:01", "66.249.79.145", "8480");
INSERT INTO `wp_gf_form_view` VALUES("1022", "3", "2014-08-29 14:00:01", "66.249.79.119", "7962");
INSERT INTO `wp_gf_form_view` VALUES("1023", "3", "2014-08-29 15:00:00", "66.249.79.132", "5334");
INSERT INTO `wp_gf_form_view` VALUES("1024", "3", "2014-08-29 16:00:04", "66.249.79.132", "6121");
INSERT INTO `wp_gf_form_view` VALUES("1025", "3", "2014-08-29 17:00:00", "66.249.79.132", "6099");
INSERT INTO `wp_gf_form_view` VALUES("1026", "6", "2014-08-29 17:02:40", "66.249.79.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1027", "3", "2014-08-29 18:00:00", "66.249.79.132", "6546");
INSERT INTO `wp_gf_form_view` VALUES("1028", "1", "2014-08-29 18:53:15", "178.137.89.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("1029", "3", "2014-08-29 19:00:14", "66.249.79.145", "5122");
INSERT INTO `wp_gf_form_view` VALUES("1030", "3", "2014-08-29 20:00:00", "66.249.79.119", "6941");
INSERT INTO `wp_gf_form_view` VALUES("1031", "3", "2014-08-29 21:00:00", "66.249.79.132", "6248");
INSERT INTO `wp_gf_form_view` VALUES("1032", "6", "2014-08-29 21:18:52", "157.55.39.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("1033", "3", "2014-08-29 22:00:00", "202.46.63.163", "3253");
INSERT INTO `wp_gf_form_view` VALUES("1034", "6", "2014-08-29 22:15:32", "92.158.242.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("1035", "3", "2014-08-29 23:00:00", "66.249.79.145", "5644");
INSERT INTO `wp_gf_form_view` VALUES("1036", "3", "2014-08-30 00:00:00", "66.249.79.145", "5829");
INSERT INTO `wp_gf_form_view` VALUES("1037", "3", "2014-08-30 01:00:15", "66.249.79.145", "6320");
INSERT INTO `wp_gf_form_view` VALUES("1038", "6", "2014-08-30 01:04:14", "66.249.79.119", "4");
INSERT INTO `wp_gf_form_view` VALUES("1039", "3", "2014-08-30 02:00:03", "66.249.79.119", "6564");
INSERT INTO `wp_gf_form_view` VALUES("1040", "6", "2014-08-30 02:03:29", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1041", "3", "2014-08-30 03:00:00", "66.249.79.145", "7112");
INSERT INTO `wp_gf_form_view` VALUES("1042", "6", "2014-08-30 03:01:23", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1043", "3", "2014-08-30 04:00:00", "66.249.79.145", "5720");
INSERT INTO `wp_gf_form_view` VALUES("1044", "3", "2014-08-30 05:00:01", "66.249.79.145", "5972");
INSERT INTO `wp_gf_form_view` VALUES("1045", "6", "2014-08-30 05:37:06", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1046", "3", "2014-08-30 06:00:00", "66.249.79.119", "7318");
INSERT INTO `wp_gf_form_view` VALUES("1047", "3", "2014-08-30 07:00:00", "66.249.79.145", "8722");
INSERT INTO `wp_gf_form_view` VALUES("1048", "1", "2014-08-30 07:43:04", "208.68.38.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("1049", "2", "2014-08-30 07:43:04", "208.68.38.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("1050", "6", "2014-08-30 07:43:05", "208.68.38.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("1051", "3", "2014-08-30 08:00:00", "66.249.79.119", "9239");
INSERT INTO `wp_gf_form_view` VALUES("1052", "6", "2014-08-30 08:32:03", "66.249.79.145", "4");
INSERT INTO `wp_gf_form_view` VALUES("1053", "3", "2014-08-30 09:00:00", "66.249.79.145", "8647");
INSERT INTO `wp_gf_form_view` VALUES("1054", "6", "2014-08-30 09:17:59", "66.249.79.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("1055", "3", "2014-08-30 10:00:00", "66.249.79.132", "4826");
INSERT INTO `wp_gf_form_view` VALUES("1056", "6", "2014-08-30 10:19:41", "157.55.39.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("1057", "2", "2014-08-30 10:54:41", "36.250.185.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("1058", "3", "2014-08-30 11:00:08", "66.249.79.119", "6528");
INSERT INTO `wp_gf_form_view` VALUES("1059", "6", "2014-08-30 11:25:33", "66.249.79.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("1060", "3", "2014-08-30 12:00:00", "66.249.79.119", "6351");
INSERT INTO `wp_gf_form_view` VALUES("1061", "6", "2014-08-30 12:44:11", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1062", "3", "2014-08-30 13:00:00", "66.249.79.132", "6287");
INSERT INTO `wp_gf_form_view` VALUES("1063", "6", "2014-08-30 13:01:31", "66.249.79.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("1064", "3", "2014-08-30 14:00:07", "66.249.79.145", "5110");
INSERT INTO `wp_gf_form_view` VALUES("1065", "6", "2014-08-30 14:23:01", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1066", "1", "2014-08-30 14:44:49", "114.46.37.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("1067", "3", "2014-08-30 15:00:08", "66.249.79.119", "5721");
INSERT INTO `wp_gf_form_view` VALUES("1068", "6", "2014-08-30 15:33:52", "66.249.79.145", "6");
INSERT INTO `wp_gf_form_view` VALUES("1069", "3", "2014-08-30 16:00:00", "66.249.79.119", "6409");
INSERT INTO `wp_gf_form_view` VALUES("1070", "6", "2014-08-30 16:32:28", "66.249.79.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("1071", "3", "2014-08-30 17:00:03", "66.249.79.145", "5360");
INSERT INTO `wp_gf_form_view` VALUES("1072", "6", "2014-08-30 17:27:50", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1073", "3", "2014-08-30 18:00:00", "66.249.79.145", "5818");
INSERT INTO `wp_gf_form_view` VALUES("1074", "6", "2014-08-30 18:05:41", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1075", "3", "2014-08-30 19:00:16", "66.249.79.119", "5638");
INSERT INTO `wp_gf_form_view` VALUES("1076", "3", "2014-08-30 20:00:00", "66.249.79.145", "5083");
INSERT INTO `wp_gf_form_view` VALUES("1077", "6", "2014-08-30 20:01:00", "66.249.79.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1078", "3", "2014-08-30 21:00:00", "66.249.79.132", "6382");
INSERT INTO `wp_gf_form_view` VALUES("1079", "6", "2014-08-30 21:06:03", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1080", "3", "2014-08-30 22:00:05", "66.249.79.132", "5770");
INSERT INTO `wp_gf_form_view` VALUES("1081", "6", "2014-08-30 22:15:37", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1082", "3", "2014-08-30 23:00:02", "66.249.79.119", "6302");
INSERT INTO `wp_gf_form_view` VALUES("1083", "6", "2014-08-30 23:51:21", "66.249.79.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1084", "3", "2014-08-31 00:00:00", "66.249.79.119", "6352");
INSERT INTO `wp_gf_form_view` VALUES("1085", "3", "2014-08-31 01:00:04", "66.249.79.132", "6824");
INSERT INTO `wp_gf_form_view` VALUES("1086", "1", "2014-08-31 01:51:45", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1087", "6", "2014-08-31 01:52:17", "5.9.73.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("1088", "2", "2014-08-31 01:52:22", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1089", "3", "2014-08-31 02:00:00", "66.249.79.132", "6425");
INSERT INTO `wp_gf_form_view` VALUES("1090", "3", "2014-08-31 03:00:00", "66.249.79.132", "6963");
INSERT INTO `wp_gf_form_view` VALUES("1091", "3", "2014-08-31 04:00:00", "66.249.79.145", "6452");
INSERT INTO `wp_gf_form_view` VALUES("1092", "3", "2014-08-31 05:00:00", "66.249.79.132", "6658");
INSERT INTO `wp_gf_form_view` VALUES("1093", "6", "2014-08-31 05:32:48", "66.249.79.145", "4");
INSERT INTO `wp_gf_form_view` VALUES("1094", "3", "2014-08-31 06:00:00", "66.249.79.132", "6238");
INSERT INTO `wp_gf_form_view` VALUES("1095", "6", "2014-08-31 06:26:02", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1096", "3", "2014-08-31 07:00:00", "66.249.79.132", "9170");
INSERT INTO `wp_gf_form_view` VALUES("1097", "6", "2014-08-31 07:09:41", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1098", "3", "2014-08-31 08:00:02", "66.249.79.132", "8919");
INSERT INTO `wp_gf_form_view` VALUES("1099", "6", "2014-08-31 08:26:41", "66.249.79.119", "4");
INSERT INTO `wp_gf_form_view` VALUES("1100", "3", "2014-08-31 09:00:00", "66.249.79.132", "3589");
INSERT INTO `wp_gf_form_view` VALUES("1101", "3", "2014-08-31 10:00:00", "66.249.79.119", "6242");
INSERT INTO `wp_gf_form_view` VALUES("1102", "6", "2014-08-31 10:15:21", "66.249.79.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1103", "3", "2014-08-31 11:00:00", "66.249.79.132", "7220");
INSERT INTO `wp_gf_form_view` VALUES("1104", "2", "2014-08-31 11:37:28", "192.3.111.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("1105", "6", "2014-08-31 11:55:14", "66.249.79.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1106", "3", "2014-08-31 12:00:00", "66.249.79.119", "7050");
INSERT INTO `wp_gf_form_view` VALUES("1107", "2", "2014-08-31 12:06:05", "192.3.111.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("1108", "6", "2014-08-31 12:24:14", "66.249.79.145", "4");
INSERT INTO `wp_gf_form_view` VALUES("1109", "3", "2014-08-31 13:00:02", "66.249.79.145", "6516");
INSERT INTO `wp_gf_form_view` VALUES("1110", "6", "2014-08-31 13:32:27", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1111", "3", "2014-08-31 14:00:01", "66.249.79.119", "6789");
INSERT INTO `wp_gf_form_view` VALUES("1112", "6", "2014-08-31 14:08:08", "66.249.79.145", "10");
INSERT INTO `wp_gf_form_view` VALUES("1113", "3", "2014-08-31 15:00:00", "66.249.79.145", "7093");
INSERT INTO `wp_gf_form_view` VALUES("1114", "6", "2014-08-31 15:02:32", "66.249.79.119", "17");
INSERT INTO `wp_gf_form_view` VALUES("1115", "1", "2014-08-31 15:56:43", "151.237.192.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("1116", "2", "2014-08-31 15:57:28", "151.237.192.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("1117", "3", "2014-08-31 16:00:00", "66.249.79.132", "6701");
INSERT INTO `wp_gf_form_view` VALUES("1118", "6", "2014-08-31 16:12:28", "66.249.79.119", "20");
INSERT INTO `wp_gf_form_view` VALUES("1119", "1", "2014-08-31 16:31:56", "110.210.27.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("1120", "3", "2014-08-31 17:00:02", "66.249.79.132", "6086");
INSERT INTO `wp_gf_form_view` VALUES("1121", "6", "2014-08-31 17:09:39", "66.249.79.119", "22");
INSERT INTO `wp_gf_form_view` VALUES("1122", "3", "2014-08-31 18:00:00", "66.249.79.119", "6180");
INSERT INTO `wp_gf_form_view` VALUES("1123", "6", "2014-08-31 18:00:20", "66.249.79.145", "28");
INSERT INTO `wp_gf_form_view` VALUES("1124", "3", "2014-08-31 19:00:00", "66.249.79.145", "5521");
INSERT INTO `wp_gf_form_view` VALUES("1125", "6", "2014-08-31 19:24:02", "66.249.79.119", "10");
INSERT INTO `wp_gf_form_view` VALUES("1126", "3", "2014-08-31 20:00:00", "66.249.79.132", "5497");
INSERT INTO `wp_gf_form_view` VALUES("1127", "6", "2014-08-31 20:16:28", "66.249.79.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("1128", "3", "2014-08-31 21:00:14", "66.249.79.145", "5409");
INSERT INTO `wp_gf_form_view` VALUES("1129", "6", "2014-08-31 21:25:41", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1130", "3", "2014-08-31 22:00:05", "66.249.79.145", "5274");
INSERT INTO `wp_gf_form_view` VALUES("1131", "6", "2014-08-31 22:03:13", "66.249.79.145", "8");
INSERT INTO `wp_gf_form_view` VALUES("1132", "2", "2014-08-31 22:45:37", "192.227.191.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("1133", "3", "2014-08-31 23:00:03", "66.249.79.119", "5628");
INSERT INTO `wp_gf_form_view` VALUES("1134", "6", "2014-08-31 23:58:10", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1135", "3", "2014-09-01 00:00:02", "66.249.79.145", "5432");
INSERT INTO `wp_gf_form_view` VALUES("1136", "6", "2014-09-01 00:55:00", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1137", "3", "2014-09-01 01:00:00", "66.249.79.119", "6110");
INSERT INTO `wp_gf_form_view` VALUES("1138", "6", "2014-09-01 01:48:52", "66.249.79.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1139", "3", "2014-09-01 02:00:04", "66.249.79.119", "5386");
INSERT INTO `wp_gf_form_view` VALUES("1140", "6", "2014-09-01 02:25:54", "66.249.79.145", "6");
INSERT INTO `wp_gf_form_view` VALUES("1141", "3", "2014-09-01 03:00:02", "66.249.79.145", "5537");
INSERT INTO `wp_gf_form_view` VALUES("1142", "6", "2014-09-01 03:13:18", "66.249.79.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("1143", "3", "2014-09-01 04:00:00", "66.249.79.119", "5551");
INSERT INTO `wp_gf_form_view` VALUES("1144", "3", "2014-09-01 05:00:06", "66.249.79.119", "5575");
INSERT INTO `wp_gf_form_view` VALUES("1145", "6", "2014-09-01 05:04:27", "66.249.79.145", "5");
INSERT INTO `wp_gf_form_view` VALUES("1146", "3", "2014-09-01 06:00:00", "66.249.79.132", "5158");
INSERT INTO `wp_gf_form_view` VALUES("1147", "6", "2014-09-01 06:26:36", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1148", "3", "2014-09-01 07:00:01", "66.249.79.132", "9339");
INSERT INTO `wp_gf_form_view` VALUES("1149", "3", "2014-09-01 08:00:00", "66.249.79.119", "7933");
INSERT INTO `wp_gf_form_view` VALUES("1150", "6", "2014-09-01 08:19:45", "66.249.79.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("1151", "3", "2014-09-01 09:00:18", "66.249.66.219", "6594");
INSERT INTO `wp_gf_form_view` VALUES("1152", "6", "2014-09-01 09:27:46", "66.249.66.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("1153", "3", "2014-09-01 10:08:38", "104.40.66.100", "3108");
INSERT INTO `wp_gf_form_view` VALUES("1154", "3", "2014-09-01 11:00:07", "66.249.66.219", "7266");
INSERT INTO `wp_gf_form_view` VALUES("1155", "3", "2014-09-01 12:00:00", "66.249.66.219", "7652");
INSERT INTO `wp_gf_form_view` VALUES("1156", "6", "2014-09-01 12:02:10", "66.249.66.219", "6");
INSERT INTO `wp_gf_form_view` VALUES("1157", "3", "2014-09-01 13:00:35", "66.249.66.219", "7383");
INSERT INTO `wp_gf_form_view` VALUES("1158", "6", "2014-09-01 13:18:54", "66.249.66.219", "4");
INSERT INTO `wp_gf_form_view` VALUES("1159", "3", "2014-09-01 14:00:00", "66.249.66.219", "7185");
INSERT INTO `wp_gf_form_view` VALUES("1160", "1", "2014-09-01 14:11:50", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("1161", "2", "2014-09-01 14:11:56", "192.99.8.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("1162", "6", "2014-09-01 14:32:33", "66.249.66.219", "6");
INSERT INTO `wp_gf_form_view` VALUES("1163", "3", "2014-09-01 15:00:04", "66.249.66.219", "4798");
INSERT INTO `wp_gf_form_view` VALUES("1164", "6", "2014-09-01 15:29:47", "66.249.66.219", "4");
INSERT INTO `wp_gf_form_view` VALUES("1165", "3", "2014-09-01 16:00:01", "66.249.79.119", "5931");
INSERT INTO `wp_gf_form_view` VALUES("1166", "6", "2014-09-01 16:02:35", "66.249.79.145", "6");
INSERT INTO `wp_gf_form_view` VALUES("1167", "3", "2014-09-01 17:00:00", "66.249.79.132", "6446");
INSERT INTO `wp_gf_form_view` VALUES("1168", "6", "2014-09-01 17:09:16", "66.249.79.145", "8");
INSERT INTO `wp_gf_form_view` VALUES("1169", "3", "2014-09-01 18:00:00", "66.249.79.119", "6714");
INSERT INTO `wp_gf_form_view` VALUES("1170", "1", "2014-09-01 18:02:53", "72.39.152.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("1171", "6", "2014-09-01 18:34:11", "66.249.79.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1172", "3", "2014-09-01 19:00:00", "66.249.79.145", "6862");
INSERT INTO `wp_gf_form_view` VALUES("1173", "3", "2014-09-01 20:00:00", "66.249.79.132", "2162");
INSERT INTO `wp_gf_form_view` VALUES("1174", "6", "2014-09-01 20:06:43", "66.249.79.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("1175", "1", "2014-09-01 20:49:53", "49.143.192.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("1176", "3", "2014-09-01 21:00:33", "162.243.36.31", "8508");
INSERT INTO `wp_gf_form_view` VALUES("1177", "1", "2014-09-01 21:08:21", "162.243.36.31", "2");
INSERT INTO `wp_gf_form_view` VALUES("1178", "6", "2014-09-01 21:18:36", "162.243.36.31", "7");
INSERT INTO `wp_gf_form_view` VALUES("1179", "2", "2014-09-01 21:33:05", "23.92.221.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("1180", "3", "2014-09-01 22:00:00", "162.243.36.31", "7049");
INSERT INTO `wp_gf_form_view` VALUES("1181", "6", "2014-09-01 22:03:44", "162.243.36.31", "18");
INSERT INTO `wp_gf_form_view` VALUES("1182", "3", "2014-09-01 23:00:00", "66.249.79.145", "3730");
INSERT INTO `wp_gf_form_view` VALUES("1183", "6", "2014-09-01 23:58:02", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1184", "3", "2014-09-02 00:00:03", "66.249.79.132", "5621");
INSERT INTO `wp_gf_form_view` VALUES("1185", "6", "2014-09-02 00:17:43", "66.249.79.119", "8");
INSERT INTO `wp_gf_form_view` VALUES("1186", "3", "2014-09-02 01:00:00", "66.249.79.132", "6283");
INSERT INTO `wp_gf_form_view` VALUES("1187", "2", "2014-09-02 01:07:54", "198.23.174.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("1188", "6", "2014-09-02 01:33:40", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1189", "3", "2014-09-02 02:00:00", "66.249.79.132", "6702");
INSERT INTO `wp_gf_form_view` VALUES("1190", "6", "2014-09-02 02:36:38", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1191", "3", "2014-09-02 03:00:00", "66.249.79.132", "6449");
INSERT INTO `wp_gf_form_view` VALUES("1192", "3", "2014-09-02 04:00:00", "66.249.79.119", "6457");
INSERT INTO `wp_gf_form_view` VALUES("1193", "3", "2014-09-02 05:00:00", "66.249.79.119", "6173");
INSERT INTO `wp_gf_form_view` VALUES("1194", "3", "2014-09-02 06:00:01", "66.249.79.145", "5514");
INSERT INTO `wp_gf_form_view` VALUES("1195", "6", "2014-09-02 06:29:50", "66.249.79.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("1196", "3", "2014-09-02 07:00:07", "66.249.79.119", "5407");
INSERT INTO `wp_gf_form_view` VALUES("1197", "3", "2014-09-02 08:00:00", "66.249.79.145", "7227");
INSERT INTO `wp_gf_form_view` VALUES("1198", "3", "2014-09-02 09:00:00", "66.249.79.119", "4972");
INSERT INTO `wp_gf_form_view` VALUES("1199", "6", "2014-09-02 09:28:42", "66.249.79.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1200", "1", "2014-09-02 09:39:13", "98.126.26.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("1201", "3", "2014-09-02 10:00:00", "66.249.79.119", "5814");
INSERT INTO `wp_gf_form_view` VALUES("1202", "6", "2014-09-02 10:07:53", "157.55.39.90", "19");
INSERT INTO `wp_gf_form_view` VALUES("1203", "3", "2014-09-02 11:00:07", "66.249.79.119", "5125");
INSERT INTO `wp_gf_form_view` VALUES("1204", "6", "2014-09-02 11:05:14", "157.55.39.145", "16");
INSERT INTO `wp_gf_form_view` VALUES("1205", "2", "2014-09-02 11:07:53", "157.55.39.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("1206", "3", "2014-09-02 12:00:00", "66.249.79.119", "5646");
INSERT INTO `wp_gf_form_view` VALUES("1207", "6", "2014-09-02 12:26:56", "66.249.79.132", "18");
INSERT INTO `wp_gf_form_view` VALUES("1208", "3", "2014-09-02 13:00:02", "66.249.79.76", "6172");
INSERT INTO `wp_gf_form_view` VALUES("1209", "6", "2014-09-02 13:04:10", "66.249.79.84", "28");
INSERT INTO `wp_gf_form_view` VALUES("1210", "1", "2014-09-02 13:09:40", "157.55.39.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("1211", "3", "2014-09-02 14:00:02", "66.249.79.92", "3784");
INSERT INTO `wp_gf_form_view` VALUES("1212", "6", "2014-09-02 14:00:37", "66.249.79.76", "18");
INSERT INTO `wp_gf_form_view` VALUES("1213", "3", "2014-09-02 15:00:20", "66.249.79.84", "3252");
INSERT INTO `wp_gf_form_view` VALUES("1214", "6", "2014-09-02 15:06:56", "66.249.79.76", "16");
INSERT INTO `wp_gf_form_view` VALUES("1215", "3", "2014-09-02 16:00:02", "66.249.79.84", "3208");
INSERT INTO `wp_gf_form_view` VALUES("1216", "6", "2014-09-02 16:13:48", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("1217", "3", "2014-09-02 17:00:03", "66.249.79.76", "3395");
INSERT INTO `wp_gf_form_view` VALUES("1218", "6", "2014-09-02 17:07:04", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("1219", "3", "2014-09-02 18:00:00", "66.249.79.84", "5161");
INSERT INTO `wp_gf_form_view` VALUES("1220", "6", "2014-09-02 18:07:30", "66.249.79.76", "18");
INSERT INTO `wp_gf_form_view` VALUES("1221", "3", "2014-09-02 19:01:21", "66.249.79.76", "4172");
INSERT INTO `wp_gf_form_view` VALUES("1222", "3", "2014-09-02 20:00:03", "66.249.79.84", "3048");
INSERT INTO `wp_gf_form_view` VALUES("1223", "1", "2014-09-02 20:05:11", "207.6.182.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("1224", "6", "2014-09-02 20:18:08", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1225", "3", "2014-09-02 21:00:04", "66.249.79.92", "2840");
INSERT INTO `wp_gf_form_view` VALUES("1226", "6", "2014-09-02 21:03:42", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1227", "3", "2014-09-02 22:00:10", "66.249.79.76", "3832");
INSERT INTO `wp_gf_form_view` VALUES("1228", "3", "2014-09-02 23:00:05", "66.249.79.76", "3804");
INSERT INTO `wp_gf_form_view` VALUES("1229", "6", "2014-09-02 23:08:44", "66.249.79.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("1230", "1", "2014-09-02 23:18:51", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1231", "3", "2014-09-03 00:00:00", "66.249.79.84", "4194");
INSERT INTO `wp_gf_form_view` VALUES("1232", "6", "2014-09-03 00:00:03", "66.249.79.84", "34");
INSERT INTO `wp_gf_form_view` VALUES("1233", "1", "2014-09-03 00:58:44", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1234", "2", "2014-09-03 00:59:17", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1235", "3", "2014-09-03 01:00:00", "5.9.73.44", "3652");
INSERT INTO `wp_gf_form_view` VALUES("1236", "6", "2014-09-03 01:06:27", "66.249.79.76", "20");
INSERT INTO `wp_gf_form_view` VALUES("1237", "3", "2014-09-03 02:00:08", "66.249.79.84", "3756");
INSERT INTO `wp_gf_form_view` VALUES("1238", "6", "2014-09-03 02:04:45", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("1239", "3", "2014-09-03 03:00:00", "66.249.79.92", "3994");
INSERT INTO `wp_gf_form_view` VALUES("1240", "6", "2014-09-03 03:03:41", "66.249.79.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("1241", "3", "2014-09-03 04:00:03", "66.249.79.76", "4028");
INSERT INTO `wp_gf_form_view` VALUES("1242", "6", "2014-09-03 04:07:15", "66.249.79.84", "26");
INSERT INTO `wp_gf_form_view` VALUES("1243", "1", "2014-09-03 04:33:20", "58.212.96.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("1244", "3", "2014-09-03 05:00:03", "66.249.79.92", "4180");
INSERT INTO `wp_gf_form_view` VALUES("1245", "6", "2014-09-03 05:04:53", "66.249.79.92", "26");
INSERT INTO `wp_gf_form_view` VALUES("1246", "2", "2014-09-03 05:14:40", "192.3.111.174", "2");
INSERT INTO `wp_gf_form_view` VALUES("1247", "3", "2014-09-03 06:00:14", "66.249.79.92", "3961");
INSERT INTO `wp_gf_form_view` VALUES("1248", "6", "2014-09-03 06:06:47", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("1249", "2", "2014-09-03 06:48:52", "98.126.26.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("1250", "3", "2014-09-03 07:00:18", "66.249.79.84", "5054");
INSERT INTO `wp_gf_form_view` VALUES("1251", "6", "2014-09-03 07:09:00", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("1252", "3", "2014-09-03 08:00:01", "66.249.79.92", "5994");
INSERT INTO `wp_gf_form_view` VALUES("1253", "3", "2014-09-03 09:00:06", "66.249.79.92", "3454");
INSERT INTO `wp_gf_form_view` VALUES("1254", "6", "2014-09-03 09:35:22", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("1255", "3", "2014-09-03 10:00:32", "66.249.79.84", "3738");
INSERT INTO `wp_gf_form_view` VALUES("1256", "6", "2014-09-03 10:20:39", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1257", "3", "2014-09-03 11:00:06", "66.249.79.76", "1812");
INSERT INTO `wp_gf_form_view` VALUES("1258", "3", "2014-09-03 12:00:08", "66.249.79.92", "3564");
INSERT INTO `wp_gf_form_view` VALUES("1259", "6", "2014-09-03 12:08:51", "66.249.79.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("1260", "3", "2014-09-03 13:00:03", "66.249.79.76", "5925");
INSERT INTO `wp_gf_form_view` VALUES("1261", "6", "2014-09-03 13:11:06", "66.249.79.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("1262", "3", "2014-09-03 14:00:00", "66.249.79.76", "3852");
INSERT INTO `wp_gf_form_view` VALUES("1263", "6", "2014-09-03 14:33:41", "23.92.221.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("1264", "1", "2014-09-03 14:34:37", "23.92.221.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("1265", "2", "2014-09-03 14:34:59", "23.92.221.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("1266", "3", "2014-09-03 15:00:04", "66.249.79.76", "2865");
INSERT INTO `wp_gf_form_view` VALUES("1267", "6", "2014-09-03 15:15:35", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1268", "2", "2014-09-03 15:50:47", "207.112.83.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("1269", "3", "2014-09-03 16:00:00", "66.249.79.92", "3163");
INSERT INTO `wp_gf_form_view` VALUES("1270", "1", "2014-09-03 16:09:14", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1271", "3", "2014-09-03 17:00:01", "66.249.79.76", "4110");
INSERT INTO `wp_gf_form_view` VALUES("1272", "1", "2014-09-03 17:00:32", "198.211.110.246", "6");
INSERT INTO `wp_gf_form_view` VALUES("1273", "6", "2014-09-03 17:00:32", "198.211.110.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("1274", "2", "2014-09-03 17:00:33", "198.211.110.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("1275", "3", "2014-09-03 18:00:14", "66.249.79.76", "2902");
INSERT INTO `wp_gf_form_view` VALUES("1276", "3", "2014-09-03 19:00:21", "66.249.79.92", "4256");
INSERT INTO `wp_gf_form_view` VALUES("1277", "3", "2014-09-03 20:00:00", "66.249.79.76", "4968");
INSERT INTO `wp_gf_form_view` VALUES("1278", "2", "2014-09-03 20:13:28", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("1279", "6", "2014-09-03 20:18:07", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("1280", "3", "2014-09-03 21:00:00", "66.249.79.76", "6558");
INSERT INTO `wp_gf_form_view` VALUES("1281", "6", "2014-09-03 21:36:17", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1282", "3", "2014-09-03 22:00:00", "66.249.79.92", "9533");
INSERT INTO `wp_gf_form_view` VALUES("1283", "1", "2014-09-03 22:09:19", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1284", "6", "2014-09-03 22:37:53", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("1285", "2", "2014-09-03 22:56:44", "193.201.224.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1286", "3", "2014-09-03 23:00:00", "193.201.224.76", "1176");
INSERT INTO `wp_gf_form_view` VALUES("1287", "6", "2014-09-03 23:01:09", "66.249.79.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("1288", "3", "2014-09-04 00:00:23", "66.249.79.76", "3722");
INSERT INTO `wp_gf_form_view` VALUES("1289", "6", "2014-09-04 00:49:49", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1290", "3", "2014-09-04 01:00:00", "66.249.79.84", "8226");
INSERT INTO `wp_gf_form_view` VALUES("1291", "6", "2014-09-04 01:50:39", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1292", "3", "2014-09-04 02:00:02", "66.249.79.92", "8131");
INSERT INTO `wp_gf_form_view` VALUES("1293", "1", "2014-09-04 02:16:03", "89.234.68.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("1294", "6", "2014-09-04 02:28:10", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1295", "3", "2014-09-04 03:00:00", "66.249.79.76", "8968");
INSERT INTO `wp_gf_form_view` VALUES("1296", "6", "2014-09-04 03:01:04", "66.249.79.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("1297", "1", "2014-09-04 03:26:36", "77.172.204.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("1298", "2", "2014-09-04 03:26:51", "77.172.204.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("1299", "3", "2014-09-04 04:00:02", "66.249.79.92", "8550");
INSERT INTO `wp_gf_form_view` VALUES("1300", "1", "2014-09-04 04:10:26", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1301", "6", "2014-09-04 04:24:34", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1302", "3", "2014-09-04 05:00:04", "66.249.79.76", "8516");
INSERT INTO `wp_gf_form_view` VALUES("1303", "1", "2014-09-04 05:37:03", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1304", "3", "2014-09-04 06:00:00", "66.249.79.76", "6839");
INSERT INTO `wp_gf_form_view` VALUES("1305", "1", "2014-09-04 06:02:45", "192.99.221.234", "5");
INSERT INTO `wp_gf_form_view` VALUES("1306", "6", "2014-09-04 06:17:52", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1307", "3", "2014-09-04 07:00:00", "66.249.79.76", "8346");
INSERT INTO `wp_gf_form_view` VALUES("1308", "6", "2014-09-04 07:18:18", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("1309", "3", "2014-09-04 08:00:00", "66.249.79.84", "5275");
INSERT INTO `wp_gf_form_view` VALUES("1310", "3", "2014-09-04 09:01:07", "66.249.79.92", "3966");
INSERT INTO `wp_gf_form_view` VALUES("1311", "6", "2014-09-04 09:30:32", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1312", "3", "2014-09-04 10:00:00", "66.249.79.84", "6894");
INSERT INTO `wp_gf_form_view` VALUES("1313", "6", "2014-09-04 10:04:32", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("1314", "1", "2014-09-04 10:14:34", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1315", "3", "2014-09-04 11:00:00", "66.249.79.76", "6932");
INSERT INTO `wp_gf_form_view` VALUES("1316", "6", "2014-09-04 11:04:59", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("1317", "3", "2014-09-04 12:00:01", "66.249.79.92", "6803");
INSERT INTO `wp_gf_form_view` VALUES("1318", "6", "2014-09-04 12:11:09", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("1319", "1", "2014-09-04 12:18:57", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1320", "3", "2014-09-04 13:00:00", "66.249.79.92", "6754");
INSERT INTO `wp_gf_form_view` VALUES("1321", "6", "2014-09-04 13:00:37", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("1322", "3", "2014-09-04 14:00:00", "66.249.79.76", "7496");
INSERT INTO `wp_gf_form_view` VALUES("1323", "6", "2014-09-04 14:24:37", "66.249.79.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("1324", "3", "2014-09-04 15:00:02", "66.249.79.92", "6568");
INSERT INTO `wp_gf_form_view` VALUES("1325", "6", "2014-09-04 15:22:15", "66.249.79.84", "16");
INSERT INTO `wp_gf_form_view` VALUES("1326", "3", "2014-09-04 16:00:01", "66.249.79.92", "8795");
INSERT INTO `wp_gf_form_view` VALUES("1327", "6", "2014-09-04 16:03:00", "66.249.79.76", "50");
INSERT INTO `wp_gf_form_view` VALUES("1328", "1", "2014-09-04 16:05:22", "212.129.42.207", "3");
INSERT INTO `wp_gf_form_view` VALUES("1329", "3", "2014-09-04 17:00:00", "66.249.79.76", "8428");
INSERT INTO `wp_gf_form_view` VALUES("1330", "6", "2014-09-04 17:02:05", "66.249.79.92", "18");
INSERT INTO `wp_gf_form_view` VALUES("1331", "3", "2014-09-04 18:00:01", "66.249.79.76", "8462");
INSERT INTO `wp_gf_form_view` VALUES("1332", "6", "2014-09-04 18:02:53", "66.249.79.84", "20");
INSERT INTO `wp_gf_form_view` VALUES("1333", "1", "2014-09-04 18:37:13", "192.99.221.234", "6");
INSERT INTO `wp_gf_form_view` VALUES("1334", "3", "2014-09-04 19:00:00", "66.249.79.84", "8286");
INSERT INTO `wp_gf_form_view` VALUES("1335", "6", "2014-09-04 19:01:20", "66.249.79.84", "22");
INSERT INTO `wp_gf_form_view` VALUES("1336", "3", "2014-09-04 20:00:26", "66.249.79.76", "8554");
INSERT INTO `wp_gf_form_view` VALUES("1337", "6", "2014-09-04 20:04:44", "66.249.79.84", "16");
INSERT INTO `wp_gf_form_view` VALUES("1338", "2", "2014-09-04 20:10:30", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("1339", "3", "2014-09-04 21:00:17", "66.249.79.84", "5178");
INSERT INTO `wp_gf_form_view` VALUES("1340", "6", "2014-09-04 21:07:55", "66.249.79.76", "22");
INSERT INTO `wp_gf_form_view` VALUES("1341", "1", "2014-09-04 21:56:33", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1342", "3", "2014-09-04 22:00:06", "66.249.79.92", "6823");
INSERT INTO `wp_gf_form_view` VALUES("1343", "6", "2014-09-04 22:13:24", "66.249.79.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("1344", "3", "2014-09-04 23:00:00", "66.249.79.84", "6717");
INSERT INTO `wp_gf_form_view` VALUES("1345", "6", "2014-09-04 23:08:11", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("1346", "3", "2014-09-05 00:00:04", "66.249.79.92", "7933");
INSERT INTO `wp_gf_form_view` VALUES("1347", "6", "2014-09-05 00:12:55", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("1348", "1", "2014-09-05 00:30:05", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("1349", "3", "2014-09-05 01:00:00", "66.249.79.84", "7455");
INSERT INTO `wp_gf_form_view` VALUES("1350", "6", "2014-09-05 01:28:45", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1351", "1", "2014-09-05 01:31:49", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1352", "3", "2014-09-05 02:00:02", "66.249.79.84", "7632");
INSERT INTO `wp_gf_form_view` VALUES("1353", "6", "2014-09-05 02:07:24", "66.249.79.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("1354", "3", "2014-09-05 03:00:02", "66.249.79.92", "7279");
INSERT INTO `wp_gf_form_view` VALUES("1355", "6", "2014-09-05 03:05:19", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("1356", "1", "2014-09-05 03:45:15", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1357", "3", "2014-09-05 04:00:03", "66.249.79.92", "8064");
INSERT INTO `wp_gf_form_view` VALUES("1358", "6", "2014-09-05 04:18:07", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("1359", "1", "2014-09-05 04:30:06", "174.127.133.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("1360", "2", "2014-09-05 04:32:26", "174.127.133.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("1361", "3", "2014-09-05 05:00:00", "66.249.79.76", "8069");
INSERT INTO `wp_gf_form_view` VALUES("1362", "6", "2014-09-05 05:02:48", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("1363", "1", "2014-09-05 05:13:55", "174.127.133.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("1364", "3", "2014-09-05 06:00:00", "66.249.79.76", "7830");
INSERT INTO `wp_gf_form_view` VALUES("1365", "6", "2014-09-05 06:45:37", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1366", "1", "2014-09-05 06:52:53", "192.99.221.234", "4");
INSERT INTO `wp_gf_form_view` VALUES("1367", "3", "2014-09-05 07:00:00", "66.249.79.76", "6384");
INSERT INTO `wp_gf_form_view` VALUES("1368", "6", "2014-09-05 07:41:30", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1369", "3", "2014-09-05 08:00:18", "66.249.79.84", "1054");
INSERT INTO `wp_gf_form_view` VALUES("1370", "1", "2014-09-05 08:01:56", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1371", "6", "2014-09-05 08:23:03", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1372", "3", "2014-09-05 09:00:00", "66.249.79.76", "1243");
INSERT INTO `wp_gf_form_view` VALUES("1373", "1", "2014-09-05 09:16:03", "66.249.79.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("1374", "3", "2014-09-05 10:01:37", "66.249.79.92", "5482");
INSERT INTO `wp_gf_form_view` VALUES("1375", "6", "2014-09-05 10:45:49", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1376", "3", "2014-09-05 11:00:00", "66.249.79.84", "6976");
INSERT INTO `wp_gf_form_view` VALUES("1377", "2", "2014-09-05 11:05:02", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("1378", "6", "2014-09-05 11:05:57", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("1379", "3", "2014-09-05 12:00:00", "66.249.79.76", "7219");
INSERT INTO `wp_gf_form_view` VALUES("1380", "6", "2014-09-05 12:20:23", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("1381", "3", "2014-09-05 13:00:00", "66.249.79.76", "6892");
INSERT INTO `wp_gf_form_view` VALUES("1382", "6", "2014-09-05 13:27:17", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1383", "3", "2014-09-05 14:00:01", "66.249.79.76", "7122");
INSERT INTO `wp_gf_form_view` VALUES("1384", "1", "2014-09-05 14:06:05", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1385", "6", "2014-09-05 14:08:38", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1386", "3", "2014-09-05 15:00:02", "66.249.79.76", "5330");
INSERT INTO `wp_gf_form_view` VALUES("1387", "2", "2014-09-05 15:26:39", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("1388", "6", "2014-09-05 15:32:30", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1389", "3", "2014-09-05 16:00:00", "66.249.79.84", "6066");
INSERT INTO `wp_gf_form_view` VALUES("1390", "6", "2014-09-05 16:05:26", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1391", "3", "2014-09-05 17:00:00", "66.249.79.84", "7495");
INSERT INTO `wp_gf_form_view` VALUES("1392", "6", "2014-09-05 17:45:37", "79.116.31.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("1393", "1", "2014-09-05 17:46:18", "79.116.31.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("1394", "2", "2014-09-05 17:46:31", "79.116.31.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("1395", "3", "2014-09-05 18:00:00", "66.249.79.92", "7198");
INSERT INTO `wp_gf_form_view` VALUES("1396", "3", "2014-09-05 19:00:14", "66.249.79.84", "6870");
INSERT INTO `wp_gf_form_view` VALUES("1397", "6", "2014-09-05 19:40:39", "202.46.63.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1398", "1", "2014-09-05 19:47:24", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1399", "3", "2014-09-05 20:00:00", "66.249.79.92", "1766");
INSERT INTO `wp_gf_form_view` VALUES("1400", "6", "2014-09-05 20:11:50", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1401", "3", "2014-09-05 21:00:16", "66.249.79.76", "322");
INSERT INTO `wp_gf_form_view` VALUES("1402", "6", "2014-09-05 21:31:33", "216.174.134.2", "4");
INSERT INTO `wp_gf_form_view` VALUES("1403", "3", "2014-09-05 22:00:03", "5.9.73.44", "823");
INSERT INTO `wp_gf_form_view` VALUES("1404", "1", "2014-09-05 22:00:07", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1405", "6", "2014-09-05 22:00:23", "5.9.73.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("1406", "2", "2014-09-05 22:00:25", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1407", "3", "2014-09-05 23:06:33", "66.249.79.84", "300");
INSERT INTO `wp_gf_form_view` VALUES("1408", "6", "2014-09-05 23:21:37", "157.55.39.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("1409", "3", "2014-09-06 00:01:37", "66.249.79.92", "460");
INSERT INTO `wp_gf_form_view` VALUES("1410", "1", "2014-09-06 00:50:34", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1411", "3", "2014-09-06 01:00:07", "66.249.79.84", "2000");
INSERT INTO `wp_gf_form_view` VALUES("1412", "1", "2014-09-06 01:36:06", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1413", "6", "2014-09-06 01:56:55", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1414", "3", "2014-09-06 02:00:03", "66.249.79.84", "6646");
INSERT INTO `wp_gf_form_view` VALUES("1415", "6", "2014-09-06 02:36:19", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1416", "3", "2014-09-06 03:00:01", "66.249.79.76", "6778");
INSERT INTO `wp_gf_form_view` VALUES("1417", "6", "2014-09-06 03:25:43", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1418", "3", "2014-09-06 04:00:00", "66.249.79.92", "6751");
INSERT INTO `wp_gf_form_view` VALUES("1419", "3", "2014-09-06 05:00:00", "66.249.79.76", "6879");
INSERT INTO `wp_gf_form_view` VALUES("1420", "6", "2014-09-06 05:45:39", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1421", "1", "2014-09-06 05:58:08", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1422", "3", "2014-09-06 06:00:00", "66.249.79.92", "6287");
INSERT INTO `wp_gf_form_view` VALUES("1423", "3", "2014-09-06 07:00:01", "66.249.79.84", "7760");
INSERT INTO `wp_gf_form_view` VALUES("1424", "6", "2014-09-06 07:08:30", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1425", "1", "2014-09-06 07:23:06", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1426", "3", "2014-09-06 08:00:01", "66.249.79.84", "2615");
INSERT INTO `wp_gf_form_view` VALUES("1427", "6", "2014-09-06 08:04:22", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1428", "3", "2014-09-06 09:00:03", "66.249.79.84", "6374");
INSERT INTO `wp_gf_form_view` VALUES("1429", "6", "2014-09-06 09:16:47", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1430", "3", "2014-09-06 10:00:00", "66.249.79.92", "6400");
INSERT INTO `wp_gf_form_view` VALUES("1431", "3", "2014-09-06 11:00:00", "66.249.79.84", "6852");
INSERT INTO `wp_gf_form_view` VALUES("1432", "1", "2014-09-06 11:12:00", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1433", "6", "2014-09-06 11:23:18", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1434", "3", "2014-09-06 12:00:01", "66.249.79.84", "8222");
INSERT INTO `wp_gf_form_view` VALUES("1435", "6", "2014-09-06 12:46:15", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1436", "3", "2014-09-06 13:00:02", "66.249.79.84", "7320");
INSERT INTO `wp_gf_form_view` VALUES("1437", "1", "2014-09-06 13:19:49", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1438", "6", "2014-09-06 13:23:36", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1439", "3", "2014-09-06 14:00:06", "66.249.79.92", "7572");
INSERT INTO `wp_gf_form_view` VALUES("1440", "6", "2014-09-06 14:01:47", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1441", "3", "2014-09-06 15:00:00", "66.249.79.76", "7901");
INSERT INTO `wp_gf_form_view` VALUES("1442", "6", "2014-09-06 15:27:39", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1443", "3", "2014-09-06 16:00:05", "66.249.79.76", "6704");
INSERT INTO `wp_gf_form_view` VALUES("1444", "1", "2014-09-06 16:22:48", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1445", "3", "2014-09-06 17:00:04", "100.43.85.24", "6698");
INSERT INTO `wp_gf_form_view` VALUES("1446", "6", "2014-09-06 17:12:57", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1447", "3", "2014-09-06 18:00:03", "66.249.79.76", "7077");
INSERT INTO `wp_gf_form_view` VALUES("1448", "6", "2014-09-06 18:15:50", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1449", "3", "2014-09-06 19:00:00", "66.249.79.84", "6573");
INSERT INTO `wp_gf_form_view` VALUES("1450", "1", "2014-09-06 19:05:22", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1451", "2", "2014-09-06 19:13:36", "89.234.68.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("1452", "6", "2014-09-06 19:40:37", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1453", "3", "2014-09-06 20:00:00", "66.249.79.84", "7253");
INSERT INTO `wp_gf_form_view` VALUES("1454", "6", "2014-09-06 20:41:43", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("1455", "3", "2014-09-06 21:00:00", "66.249.79.84", "6988");
INSERT INTO `wp_gf_form_view` VALUES("1456", "6", "2014-09-06 21:10:27", "66.249.79.84", "7");
INSERT INTO `wp_gf_form_view` VALUES("1457", "1", "2014-09-06 21:24:31", "212.129.42.207", "3");
INSERT INTO `wp_gf_form_view` VALUES("1458", "2", "2014-09-06 21:29:08", "208.89.211.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("1459", "3", "2014-09-06 22:00:00", "66.249.79.76", "5288");
INSERT INTO `wp_gf_form_view` VALUES("1460", "6", "2014-09-06 22:31:40", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1461", "3", "2014-09-06 23:00:00", "66.249.79.84", "9185");
INSERT INTO `wp_gf_form_view` VALUES("1462", "6", "2014-09-06 23:41:33", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("1463", "3", "2014-09-07 00:00:00", "66.249.79.92", "7996");
INSERT INTO `wp_gf_form_view` VALUES("1464", "1", "2014-09-07 00:51:44", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1465", "3", "2014-09-07 01:00:02", "66.249.79.92", "7794");
INSERT INTO `wp_gf_form_view` VALUES("1466", "6", "2014-09-07 01:08:32", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1467", "3", "2014-09-07 02:00:03", "66.249.79.92", "8360");
INSERT INTO `wp_gf_form_view` VALUES("1468", "6", "2014-09-07 02:06:05", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1469", "1", "2014-09-07 02:31:19", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1470", "2", "2014-09-07 02:56:27", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("1471", "3", "2014-09-07 03:00:01", "66.249.79.84", "8087");
INSERT INTO `wp_gf_form_view` VALUES("1472", "6", "2014-09-07 03:59:01", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1473", "3", "2014-09-07 04:00:00", "66.249.79.84", "7016");
INSERT INTO `wp_gf_form_view` VALUES("1474", "3", "2014-09-07 05:00:00", "66.249.79.92", "8636");
INSERT INTO `wp_gf_form_view` VALUES("1475", "6", "2014-09-07 05:55:31", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1476", "3", "2014-09-07 06:00:00", "66.249.79.92", "6106");
INSERT INTO `wp_gf_form_view` VALUES("1477", "6", "2014-09-07 06:25:10", "66.249.79.84", "7");
INSERT INTO `wp_gf_form_view` VALUES("1478", "1", "2014-09-07 06:35:52", "49.143.192.218", "4");
INSERT INTO `wp_gf_form_view` VALUES("1479", "3", "2014-09-07 07:00:00", "66.249.79.92", "12456");
INSERT INTO `wp_gf_form_view` VALUES("1480", "6", "2014-09-07 07:06:02", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("1481", "1", "2014-09-07 07:36:21", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1482", "3", "2014-09-07 08:00:00", "66.249.79.76", "9745");
INSERT INTO `wp_gf_form_view` VALUES("1483", "6", "2014-09-07 08:23:27", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("1484", "3", "2014-09-07 09:00:00", "66.249.79.76", "10287");
INSERT INTO `wp_gf_form_view` VALUES("1485", "6", "2014-09-07 09:19:36", "217.69.133.221", "12");
INSERT INTO `wp_gf_form_view` VALUES("1486", "3", "2014-09-07 10:00:26", "66.249.79.76", "8984");
INSERT INTO `wp_gf_form_view` VALUES("1487", "6", "2014-09-07 10:04:50", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1488", "3", "2014-09-07 11:00:00", "66.249.79.92", "7300");
INSERT INTO `wp_gf_form_view` VALUES("1489", "1", "2014-09-07 11:05:44", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1490", "6", "2014-09-07 11:12:14", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1491", "3", "2014-09-07 12:00:00", "66.249.79.92", "9783");
INSERT INTO `wp_gf_form_view` VALUES("1492", "6", "2014-09-07 12:46:07", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1493", "3", "2014-09-07 13:00:00", "66.249.79.92", "8096");
INSERT INTO `wp_gf_form_view` VALUES("1494", "6", "2014-09-07 13:28:50", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1495", "3", "2014-09-07 14:00:00", "66.249.79.84", "10680");
INSERT INTO `wp_gf_form_view` VALUES("1496", "6", "2014-09-07 14:02:11", "66.249.79.84", "36");
INSERT INTO `wp_gf_form_view` VALUES("1497", "2", "2014-09-07 14:35:36", "144.76.183.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("1498", "1", "2014-09-07 14:35:57", "144.76.183.41", "5");
INSERT INTO `wp_gf_form_view` VALUES("1499", "3", "2014-09-07 15:00:00", "144.76.183.41", "11457");
INSERT INTO `wp_gf_form_view` VALUES("1500", "6", "2014-09-07 15:01:27", "144.76.183.41", "38");
INSERT INTO `wp_gf_form_view` VALUES("1501", "3", "2014-09-07 16:00:00", "66.249.79.76", "8424");
INSERT INTO `wp_gf_form_view` VALUES("1502", "6", "2014-09-07 16:15:08", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1503", "3", "2014-09-07 17:00:00", "66.249.79.76", "8463");
INSERT INTO `wp_gf_form_view` VALUES("1504", "6", "2014-09-07 17:08:37", "217.69.133.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("1505", "3", "2014-09-07 18:00:00", "66.249.79.76", "8491");
INSERT INTO `wp_gf_form_view` VALUES("1506", "6", "2014-09-07 18:05:00", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1507", "3", "2014-09-07 19:00:00", "66.249.79.92", "4095");
INSERT INTO `wp_gf_form_view` VALUES("1508", "1", "2014-09-07 19:18:06", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1509", "6", "2014-09-07 19:36:49", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1510", "3", "2014-09-07 20:00:08", "66.249.79.76", "472");
INSERT INTO `wp_gf_form_view` VALUES("1511", "6", "2014-09-07 20:05:31", "157.55.39.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("1512", "3", "2014-09-07 21:00:52", "66.249.79.76", "88");
INSERT INTO `wp_gf_form_view` VALUES("1513", "3", "2014-09-07 22:13:29", "66.249.79.92", "566");
INSERT INTO `wp_gf_form_view` VALUES("1514", "1", "2014-09-07 22:15:35", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1515", "3", "2014-09-07 23:00:06", "66.249.79.92", "656");
INSERT INTO `wp_gf_form_view` VALUES("1516", "6", "2014-09-07 23:48:30", "96.50.72.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("1517", "1", "2014-09-07 23:58:33", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1518", "3", "2014-09-08 00:00:04", "66.249.79.76", "454");
INSERT INTO `wp_gf_form_view` VALUES("1519", "3", "2014-09-08 01:00:44", "66.249.79.84", "561");
INSERT INTO `wp_gf_form_view` VALUES("1520", "6", "2014-09-08 01:09:33", "217.69.133.222", "2");
INSERT INTO `wp_gf_form_view` VALUES("1521", "3", "2014-09-08 02:00:30", "66.249.79.84", "622");
INSERT INTO `wp_gf_form_view` VALUES("1522", "3", "2014-09-08 03:03:48", "66.249.79.76", "660");
INSERT INTO `wp_gf_form_view` VALUES("1523", "3", "2014-09-08 04:00:20", "66.249.79.84", "1678");
INSERT INTO `wp_gf_form_view` VALUES("1524", "1", "2014-09-08 04:48:23", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1525", "3", "2014-09-08 05:00:01", "66.249.79.76", "6613");
INSERT INTO `wp_gf_form_view` VALUES("1526", "1", "2014-09-08 05:39:50", "162.243.174.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("1527", "2", "2014-09-08 05:39:50", "162.243.174.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("1528", "6", "2014-09-08 05:39:51", "162.243.174.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("1529", "3", "2014-09-08 06:00:00", "66.249.79.84", "6720");
INSERT INTO `wp_gf_form_view` VALUES("1530", "6", "2014-09-08 06:01:48", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("1531", "3", "2014-09-08 07:00:00", "66.249.79.76", "2148");
INSERT INTO `wp_gf_form_view` VALUES("1532", "6", "2014-09-08 07:19:40", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1533", "3", "2014-09-08 08:02:54", "66.249.79.76", "408");
INSERT INTO `wp_gf_form_view` VALUES("1534", "6", "2014-09-08 08:23:49", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1535", "1", "2014-09-08 08:25:53", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1536", "3", "2014-09-08 09:00:02", "66.249.79.76", "524");
INSERT INTO `wp_gf_form_view` VALUES("1537", "1", "2014-09-08 09:06:28", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1538", "6", "2014-09-08 09:15:01", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1539", "3", "2014-09-08 10:00:54", "66.249.79.84", "668");
INSERT INTO `wp_gf_form_view` VALUES("1540", "6", "2014-09-08 10:03:19", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("1541", "3", "2014-09-08 11:00:21", "66.249.79.84", "500");
INSERT INTO `wp_gf_form_view` VALUES("1542", "3", "2014-09-08 12:03:40", "66.249.67.76", "437");
INSERT INTO `wp_gf_form_view` VALUES("1543", "1", "2014-09-08 12:22:19", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1544", "6", "2014-09-08 12:50:29", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1545", "3", "2014-09-08 13:01:19", "66.249.67.92", "267");
INSERT INTO `wp_gf_form_view` VALUES("1546", "6", "2014-09-08 13:20:56", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1547", "3", "2014-09-08 14:05:36", "66.249.67.92", "271");
INSERT INTO `wp_gf_form_view` VALUES("1548", "6", "2014-09-08 14:12:01", "66.249.67.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("1549", "3", "2014-09-08 15:00:20", "66.249.67.92", "402");
INSERT INTO `wp_gf_form_view` VALUES("1550", "3", "2014-09-08 16:00:13", "207.194.133.9", "2276");
INSERT INTO `wp_gf_form_view` VALUES("1551", "1", "2014-09-08 16:42:30", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1552", "3", "2014-09-08 17:00:25", "66.249.79.92", "6604");
INSERT INTO `wp_gf_form_view` VALUES("1553", "3", "2014-09-08 18:00:04", "66.249.79.84", "6446");
INSERT INTO `wp_gf_form_view` VALUES("1554", "6", "2014-09-08 18:14:35", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1555", "3", "2014-09-08 19:00:13", "66.249.79.84", "804");
INSERT INTO `wp_gf_form_view` VALUES("1556", "1", "2014-09-08 20:04:08", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1557", "3", "2014-09-08 20:04:10", "192.99.221.234", "110");
INSERT INTO `wp_gf_form_view` VALUES("1558", "6", "2014-09-08 20:24:52", "184.66.43.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("1559", "3", "2014-09-08 21:00:26", "66.249.79.84", "384");
INSERT INTO `wp_gf_form_view` VALUES("1560", "3", "2014-09-08 22:00:58", "66.249.79.84", "320");
INSERT INTO `wp_gf_form_view` VALUES("1561", "1", "2014-09-08 22:15:55", "212.129.42.207", "3");
INSERT INTO `wp_gf_form_view` VALUES("1562", "3", "2014-09-08 23:02:17", "66.249.79.84", "422");
INSERT INTO `wp_gf_form_view` VALUES("1563", "1", "2014-09-08 23:09:24", "184.66.152.99", "4");
INSERT INTO `wp_gf_form_view` VALUES("1564", "6", "2014-09-08 23:59:54", "5.9.73.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("1565", "2", "2014-09-08 23:59:56", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1566", "3", "2014-09-09 00:00:00", "5.9.73.44", "579");
INSERT INTO `wp_gf_form_view` VALUES("1567", "3", "2014-09-09 01:03:11", "66.249.79.76", "318");
INSERT INTO `wp_gf_form_view` VALUES("1568", "6", "2014-09-09 01:03:58", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1569", "3", "2014-09-09 02:01:04", "66.249.79.76", "320");
INSERT INTO `wp_gf_form_view` VALUES("1570", "1", "2014-09-09 02:27:39", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1571", "3", "2014-09-09 03:04:18", "66.249.79.84", "4076");
INSERT INTO `wp_gf_form_view` VALUES("1572", "6", "2014-09-09 03:23:47", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1573", "3", "2014-09-09 04:00:00", "66.249.79.92", "5152");
INSERT INTO `wp_gf_form_view` VALUES("1574", "6", "2014-09-09 04:46:14", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1575", "3", "2014-09-09 05:00:04", "66.249.79.92", "4968");
INSERT INTO `wp_gf_form_view` VALUES("1576", "6", "2014-09-09 05:17:09", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("1577", "1", "2014-09-09 05:52:14", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1578", "3", "2014-09-09 06:00:01", "66.249.79.92", "5459");
INSERT INTO `wp_gf_form_view` VALUES("1579", "6", "2014-09-09 06:25:42", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("1580", "1", "2014-09-09 06:33:23", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1581", "3", "2014-09-09 07:00:00", "66.249.79.92", "1233");
INSERT INTO `wp_gf_form_view` VALUES("1582", "3", "2014-09-09 08:03:33", "66.249.79.92", "759");
INSERT INTO `wp_gf_form_view` VALUES("1583", "6", "2014-09-09 08:08:10", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("1584", "3", "2014-09-09 09:00:15", "66.249.79.84", "3753");
INSERT INTO `wp_gf_form_view` VALUES("1585", "6", "2014-09-09 09:03:14", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1586", "3", "2014-09-09 10:00:00", "66.249.79.84", "7460");
INSERT INTO `wp_gf_form_view` VALUES("1587", "1", "2014-09-09 10:08:17", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1588", "6", "2014-09-09 10:08:22", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1589", "3", "2014-09-09 11:00:01", "66.249.79.92", "7521");
INSERT INTO `wp_gf_form_view` VALUES("1590", "6", "2014-09-09 11:00:06", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1591", "3", "2014-09-09 12:00:00", "66.249.79.92", "7555");
INSERT INTO `wp_gf_form_view` VALUES("1592", "6", "2014-09-09 12:42:06", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1593", "3", "2014-09-09 13:00:00", "66.249.79.84", "8089");
INSERT INTO `wp_gf_form_view` VALUES("1594", "6", "2014-09-09 13:39:54", "100.43.85.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("1595", "3", "2014-09-09 14:00:00", "66.249.79.84", "8004");
INSERT INTO `wp_gf_form_view` VALUES("1596", "6", "2014-09-09 14:16:10", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1597", "1", "2014-09-09 14:43:32", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1598", "3", "2014-09-09 15:00:00", "66.249.79.92", "7934");
INSERT INTO `wp_gf_form_view` VALUES("1599", "3", "2014-09-09 16:00:00", "66.249.79.84", "7945");
INSERT INTO `wp_gf_form_view` VALUES("1600", "6", "2014-09-09 16:37:10", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1601", "3", "2014-09-09 17:00:00", "66.249.79.76", "8223");
INSERT INTO `wp_gf_form_view` VALUES("1602", "6", "2014-09-09 17:15:12", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1603", "1", "2014-09-09 17:18:22", "192.99.221.234", "4");
INSERT INTO `wp_gf_form_view` VALUES("1604", "2", "2014-09-09 17:45:02", "23.92.221.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("1605", "3", "2014-09-09 18:00:00", "66.249.79.92", "6866");
INSERT INTO `wp_gf_form_view` VALUES("1606", "6", "2014-09-09 18:22:34", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("1607", "3", "2014-09-09 19:00:05", "66.249.79.92", "866");
INSERT INTO `wp_gf_form_view` VALUES("1608", "6", "2014-09-09 19:01:38", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1609", "1", "2014-09-09 19:26:43", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1610", "3", "2014-09-09 20:00:21", "66.249.79.84", "956");
INSERT INTO `wp_gf_form_view` VALUES("1611", "6", "2014-09-09 20:08:25", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1612", "1", "2014-09-09 20:59:52", "184.66.97.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("1613", "3", "2014-09-09 21:00:33", "66.249.79.84", "1004");
INSERT INTO `wp_gf_form_view` VALUES("1614", "6", "2014-09-09 21:07:42", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1615", "3", "2014-09-09 22:00:14", "66.249.79.84", "980");
INSERT INTO `wp_gf_form_view` VALUES("1616", "2", "2014-09-09 22:40:37", "24.69.59.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("1617", "3", "2014-09-09 23:00:50", "66.249.79.92", "686");
INSERT INTO `wp_gf_form_view` VALUES("1618", "1", "2014-09-09 23:09:44", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1619", "3", "2014-09-10 00:03:10", "66.249.79.84", "622");
INSERT INTO `wp_gf_form_view` VALUES("1620", "3", "2014-09-10 01:00:04", "66.249.79.76", "1980");
INSERT INTO `wp_gf_form_view` VALUES("1621", "3", "2014-09-10 02:00:04", "66.249.79.92", "6374");
INSERT INTO `wp_gf_form_view` VALUES("1622", "6", "2014-09-10 02:11:45", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1623", "1", "2014-09-10 02:46:56", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1624", "3", "2014-09-10 03:00:00", "66.249.79.76", "7602");
INSERT INTO `wp_gf_form_view` VALUES("1625", "6", "2014-09-10 03:00:24", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("1626", "1", "2014-09-10 03:19:36", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1627", "3", "2014-09-10 04:00:00", "66.249.79.92", "7362");
INSERT INTO `wp_gf_form_view` VALUES("1628", "1", "2014-09-10 04:03:13", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1629", "6", "2014-09-10 04:04:18", "37.58.100.79", "4");
INSERT INTO `wp_gf_form_view` VALUES("1630", "3", "2014-09-10 05:00:04", "66.249.79.92", "7265");
INSERT INTO `wp_gf_form_view` VALUES("1631", "6", "2014-09-10 05:19:30", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1632", "3", "2014-09-10 06:00:00", "66.249.79.92", "2075");
INSERT INTO `wp_gf_form_view` VALUES("1633", "6", "2014-09-10 06:26:42", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("1634", "3", "2014-09-10 07:01:01", "66.249.79.92", "793");
INSERT INTO `wp_gf_form_view` VALUES("1635", "1", "2014-09-10 07:47:35", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1636", "6", "2014-09-10 08:01:53", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1637", "3", "2014-09-10 08:01:53", "66.249.79.76", "630");
INSERT INTO `wp_gf_form_view` VALUES("1638", "3", "2014-09-10 09:00:59", "66.249.79.84", "760");
INSERT INTO `wp_gf_form_view` VALUES("1639", "6", "2014-09-10 09:21:41", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("1640", "3", "2014-09-10 10:00:07", "66.249.79.76", "808");
INSERT INTO `wp_gf_form_view` VALUES("1641", "6", "2014-09-10 10:32:28", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1642", "3", "2014-09-10 11:00:13", "66.249.79.92", "654");
INSERT INTO `wp_gf_form_view` VALUES("1643", "3", "2014-09-10 12:00:22", "66.249.67.76", "560");
INSERT INTO `wp_gf_form_view` VALUES("1644", "1", "2014-09-10 12:29:01", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1645", "2", "2014-09-10 12:33:26", "193.201.224.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("1646", "3", "2014-09-10 13:03:08", "66.249.67.84", "616");
INSERT INTO `wp_gf_form_view` VALUES("1647", "6", "2014-09-10 13:56:25", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1648", "3", "2014-09-10 14:00:20", "66.249.67.76", "6116");
INSERT INTO `wp_gf_form_view` VALUES("1649", "6", "2014-09-10 14:19:12", "66.249.67.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("1650", "3", "2014-09-10 15:00:00", "66.249.67.76", "6606");
INSERT INTO `wp_gf_form_view` VALUES("1651", "6", "2014-09-10 15:02:10", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1652", "1", "2014-09-10 15:10:04", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1653", "3", "2014-09-10 16:00:00", "66.249.67.92", "7512");
INSERT INTO `wp_gf_form_view` VALUES("1654", "6", "2014-09-10 16:03:35", "66.249.67.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1655", "1", "2014-09-10 16:22:42", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1656", "2", "2014-09-10 16:58:52", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("1657", "3", "2014-09-10 17:00:00", "66.249.79.76", "6746");
INSERT INTO `wp_gf_form_view` VALUES("1658", "6", "2014-09-10 17:34:59", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1659", "3", "2014-09-10 18:00:00", "66.249.79.84", "1412");
INSERT INTO `wp_gf_form_view` VALUES("1660", "6", "2014-09-10 18:05:29", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1661", "3", "2014-09-10 19:00:14", "66.249.79.76", "360");
INSERT INTO `wp_gf_form_view` VALUES("1662", "3", "2014-09-10 20:10:54", "100.43.85.24", "542");
INSERT INTO `wp_gf_form_view` VALUES("1663", "1", "2014-09-10 20:20:47", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1664", "3", "2014-09-10 21:00:49", "66.249.79.84", "969");
INSERT INTO `wp_gf_form_view` VALUES("1665", "2", "2014-09-10 21:13:11", "54.176.253.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("1666", "1", "2014-09-10 21:13:23", "54.176.253.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("1667", "6", "2014-09-10 21:18:30", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1668", "3", "2014-09-10 22:00:32", "66.249.79.92", "110");
INSERT INTO `wp_gf_form_view` VALUES("1669", "3", "2014-09-10 23:20:22", "100.43.85.24", "28");
INSERT INTO `wp_gf_form_view` VALUES("1670", "6", "2014-09-10 23:20:23", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("1671", "3", "2014-09-11 00:06:49", "100.43.85.24", "72");
INSERT INTO `wp_gf_form_view` VALUES("1672", "1", "2014-09-11 00:47:54", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1673", "3", "2014-09-11 01:12:30", "92.85.33.170", "337");
INSERT INTO `wp_gf_form_view` VALUES("1674", "6", "2014-09-11 01:13:22", "92.85.33.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("1675", "1", "2014-09-11 01:13:48", "92.85.33.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("1676", "2", "2014-09-11 01:13:56", "92.85.33.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("1677", "3", "2014-09-11 02:00:20", "100.43.85.24", "892");
INSERT INTO `wp_gf_form_view` VALUES("1678", "1", "2014-09-11 02:05:23", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1679", "6", "2014-09-11 02:17:20", "100.43.85.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("1680", "3", "2014-09-11 03:00:01", "66.249.79.84", "6612");
INSERT INTO `wp_gf_form_view` VALUES("1681", "6", "2014-09-11 03:27:28", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("1682", "3", "2014-09-11 04:00:00", "66.249.79.84", "7012");
INSERT INTO `wp_gf_form_view` VALUES("1683", "3", "2014-09-11 05:00:17", "66.249.79.76", "7384");
INSERT INTO `wp_gf_form_view` VALUES("1684", "1", "2014-09-11 05:24:33", "212.83.173.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("1685", "6", "2014-09-11 05:44:20", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1686", "3", "2014-09-11 06:00:02", "66.249.79.76", "3926");
INSERT INTO `wp_gf_form_view` VALUES("1687", "6", "2014-09-11 06:16:32", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("1688", "1", "2014-09-11 06:17:20", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1689", "3", "2014-09-11 07:03:47", "66.249.79.84", "1458");
INSERT INTO `wp_gf_form_view` VALUES("1690", "3", "2014-09-11 08:00:00", "66.249.79.84", "6430");
INSERT INTO `wp_gf_form_view` VALUES("1691", "6", "2014-09-11 08:40:00", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1692", "3", "2014-09-11 09:00:16", "66.249.79.92", "7029");
INSERT INTO `wp_gf_form_view` VALUES("1693", "1", "2014-09-11 09:39:46", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1694", "6", "2014-09-11 09:48:22", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1695", "3", "2014-09-11 10:00:00", "66.249.79.84", "7071");
INSERT INTO `wp_gf_form_view` VALUES("1696", "6", "2014-09-11 10:18:30", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1697", "3", "2014-09-11 11:00:00", "66.249.79.84", "7031");
INSERT INTO `wp_gf_form_view` VALUES("1698", "6", "2014-09-11 11:38:37", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1699", "3", "2014-09-11 12:00:00", "66.249.79.76", "7002");
INSERT INTO `wp_gf_form_view` VALUES("1700", "6", "2014-09-11 12:23:27", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("1701", "3", "2014-09-11 13:00:00", "66.249.79.92", "7095");
INSERT INTO `wp_gf_form_view` VALUES("1702", "6", "2014-09-11 13:03:57", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1703", "1", "2014-09-11 13:09:34", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1704", "3", "2014-09-11 14:00:02", "66.249.79.76", "7099");
INSERT INTO `wp_gf_form_view` VALUES("1705", "6", "2014-09-11 14:10:14", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1706", "3", "2014-09-11 15:00:00", "66.249.79.92", "6936");
INSERT INTO `wp_gf_form_view` VALUES("1707", "3", "2014-09-11 16:00:01", "66.249.79.92", "6975");
INSERT INTO `wp_gf_form_view` VALUES("1708", "1", "2014-09-11 16:05:34", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1709", "3", "2014-09-11 17:00:00", "66.249.79.92", "6899");
INSERT INTO `wp_gf_form_view` VALUES("1710", "6", "2014-09-11 17:01:20", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1711", "3", "2014-09-11 18:00:00", "66.249.79.76", "3090");
INSERT INTO `wp_gf_form_view` VALUES("1712", "6", "2014-09-11 18:26:16", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1713", "3", "2014-09-11 19:02:47", "66.249.79.76", "1252");
INSERT INTO `wp_gf_form_view` VALUES("1714", "3", "2014-09-11 20:00:06", "66.249.79.76", "4578");
INSERT INTO `wp_gf_form_view` VALUES("1715", "1", "2014-09-11 20:14:35", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1716", "6", "2014-09-11 20:25:34", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1717", "3", "2014-09-11 21:00:00", "66.249.79.84", "6630");
INSERT INTO `wp_gf_form_view` VALUES("1718", "1", "2014-09-11 21:53:36", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1719", "3", "2014-09-11 22:00:07", "66.249.79.76", "6932");
INSERT INTO `wp_gf_form_view` VALUES("1720", "3", "2014-09-11 23:00:00", "66.249.79.76", "7054");
INSERT INTO `wp_gf_form_view` VALUES("1721", "6", "2014-09-11 23:22:35", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1722", "3", "2014-09-12 00:00:08", "66.249.79.76", "7105");
INSERT INTO `wp_gf_form_view` VALUES("1723", "1", "2014-09-12 00:04:08", "155.94.218.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("1724", "3", "2014-09-12 01:00:00", "66.249.79.84", "7551");
INSERT INTO `wp_gf_form_view` VALUES("1725", "1", "2014-09-12 01:02:05", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1726", "6", "2014-09-12 01:02:38", "5.9.73.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("1727", "2", "2014-09-12 01:02:43", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1728", "3", "2014-09-12 02:00:05", "66.249.79.84", "7084");
INSERT INTO `wp_gf_form_view` VALUES("1729", "1", "2014-09-12 02:28:46", "218.88.109.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("1730", "6", "2014-09-12 02:38:02", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1731", "3", "2014-09-12 03:00:02", "66.249.79.76", "6979");
INSERT INTO `wp_gf_form_view` VALUES("1732", "6", "2014-09-12 03:17:25", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1733", "3", "2014-09-12 04:00:00", "66.249.79.76", "6393");
INSERT INTO `wp_gf_form_view` VALUES("1734", "6", "2014-09-12 04:29:04", "100.43.85.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("1735", "2", "2014-09-12 04:40:22", "62.210.78.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("1736", "1", "2014-09-12 04:40:28", "62.210.78.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("1737", "3", "2014-09-12 05:00:03", "66.249.79.76", "6704");
INSERT INTO `wp_gf_form_view` VALUES("1738", "3", "2014-09-12 06:00:17", "66.249.79.84", "344");
INSERT INTO `wp_gf_form_view` VALUES("1739", "3", "2014-09-12 07:02:20", "66.249.79.92", "1412");
INSERT INTO `wp_gf_form_view` VALUES("1740", "1", "2014-09-12 07:52:30", "208.66.72.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("1741", "3", "2014-09-12 08:00:02", "66.249.79.84", "6664");
INSERT INTO `wp_gf_form_view` VALUES("1742", "6", "2014-09-12 08:06:20", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1743", "1", "2014-09-12 08:29:27", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1744", "3", "2014-09-12 09:00:12", "66.249.79.76", "6102");
INSERT INTO `wp_gf_form_view` VALUES("1745", "3", "2014-09-12 10:00:00", "66.249.79.92", "6976");
INSERT INTO `wp_gf_form_view` VALUES("1746", "6", "2014-09-12 10:10:58", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1747", "3", "2014-09-12 11:00:00", "66.249.79.92", "7062");
INSERT INTO `wp_gf_form_view` VALUES("1748", "1", "2014-09-12 11:06:29", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1749", "6", "2014-09-12 11:33:49", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1750", "3", "2014-09-12 12:00:00", "66.249.79.84", "6842");
INSERT INTO `wp_gf_form_view` VALUES("1751", "1", "2014-09-12 12:42:43", "157.55.39.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("1752", "3", "2014-09-12 13:00:00", "66.249.79.84", "6944");
INSERT INTO `wp_gf_form_view` VALUES("1753", "6", "2014-09-12 13:19:24", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1754", "3", "2014-09-12 14:00:00", "66.249.79.84", "6838");
INSERT INTO `wp_gf_form_view` VALUES("1755", "2", "2014-09-12 14:04:37", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("1756", "6", "2014-09-12 14:52:41", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1757", "3", "2014-09-12 15:00:00", "66.249.79.92", "6756");
INSERT INTO `wp_gf_form_view` VALUES("1758", "1", "2014-09-12 15:35:20", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1759", "3", "2014-09-12 16:00:02", "66.249.79.84", "6716");
INSERT INTO `wp_gf_form_view` VALUES("1760", "1", "2014-09-12 16:43:20", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1761", "3", "2014-09-12 17:00:35", "66.249.79.84", "3063");
INSERT INTO `wp_gf_form_view` VALUES("1762", "6", "2014-09-12 17:25:31", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1763", "1", "2014-09-12 17:41:29", "198.211.99.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("1764", "2", "2014-09-12 17:41:30", "198.211.99.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("1765", "3", "2014-09-12 18:07:48", "75.154.237.35", "42");
INSERT INTO `wp_gf_form_view` VALUES("1766", "3", "2014-09-12 19:02:48", "66.249.79.84", "2274");
INSERT INTO `wp_gf_form_view` VALUES("1767", "3", "2014-09-12 20:00:00", "66.249.79.76", "5801");
INSERT INTO `wp_gf_form_view` VALUES("1768", "6", "2014-09-12 20:44:39", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1769", "3", "2014-09-12 21:00:00", "66.249.79.92", "7716");
INSERT INTO `wp_gf_form_view` VALUES("1770", "6", "2014-09-12 21:37:59", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1771", "3", "2014-09-12 22:00:00", "66.249.79.84", "7630");
INSERT INTO `wp_gf_form_view` VALUES("1772", "1", "2014-09-12 22:57:39", "222.95.87.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("1773", "3", "2014-09-12 23:00:25", "66.249.79.92", "7562");
INSERT INTO `wp_gf_form_view` VALUES("1774", "1", "2014-09-12 23:19:38", "62.210.84.18", "3");
INSERT INTO `wp_gf_form_view` VALUES("1775", "6", "2014-09-12 23:30:54", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1776", "3", "2014-09-13 00:00:01", "66.249.79.92", "7219");
INSERT INTO `wp_gf_form_view` VALUES("1777", "6", "2014-09-13 00:24:09", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1778", "3", "2014-09-13 01:00:01", "66.249.79.76", "6698");
INSERT INTO `wp_gf_form_view` VALUES("1779", "6", "2014-09-13 01:50:40", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1780", "3", "2014-09-13 02:00:01", "66.249.79.84", "6506");
INSERT INTO `wp_gf_form_view` VALUES("1781", "6", "2014-09-13 02:26:46", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1782", "3", "2014-09-13 03:00:00", "66.249.79.92", "6056");
INSERT INTO `wp_gf_form_view` VALUES("1783", "6", "2014-09-13 03:35:16", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1784", "3", "2014-09-13 04:00:03", "66.249.79.76", "5684");
INSERT INTO `wp_gf_form_view` VALUES("1785", "6", "2014-09-13 04:59:10", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1786", "3", "2014-09-13 05:00:03", "66.249.79.76", "3106");
INSERT INTO `wp_gf_form_view` VALUES("1787", "6", "2014-09-13 05:08:22", "27.150.211.246", "6");
INSERT INTO `wp_gf_form_view` VALUES("1788", "1", "2014-09-13 05:33:28", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1789", "3", "2014-09-13 06:17:51", "66.249.79.92", "200");
INSERT INTO `wp_gf_form_view` VALUES("1790", "3", "2014-09-13 07:02:24", "66.249.79.76", "5508");
INSERT INTO `wp_gf_form_view` VALUES("1791", "3", "2014-09-13 08:00:05", "66.249.79.76", "6091");
INSERT INTO `wp_gf_form_view` VALUES("1792", "6", "2014-09-13 08:08:37", "37.58.100.234", "3");
INSERT INTO `wp_gf_form_view` VALUES("1793", "3", "2014-09-13 09:00:00", "66.249.79.84", "7356");
INSERT INTO `wp_gf_form_view` VALUES("1794", "6", "2014-09-13 09:12:40", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1795", "3", "2014-09-13 10:00:00", "66.249.79.92", "7566");
INSERT INTO `wp_gf_form_view` VALUES("1796", "2", "2014-09-13 10:02:32", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("1797", "6", "2014-09-13 10:03:20", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1798", "1", "2014-09-13 10:19:22", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1799", "3", "2014-09-13 11:00:00", "66.249.79.76", "8334");
INSERT INTO `wp_gf_form_view` VALUES("1800", "6", "2014-09-13 11:28:30", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("1801", "1", "2014-09-13 11:32:19", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1802", "3", "2014-09-13 12:00:00", "66.249.79.84", "11590");
INSERT INTO `wp_gf_form_view` VALUES("1803", "6", "2014-09-13 12:01:56", "66.249.79.92", "19");
INSERT INTO `wp_gf_form_view` VALUES("1804", "2", "2014-09-13 12:23:34", "157.55.39.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("1805", "1", "2014-09-13 12:23:37", "157.55.39.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("1806", "3", "2014-09-13 13:00:00", "66.249.79.76", "8645");
INSERT INTO `wp_gf_form_view` VALUES("1807", "6", "2014-09-13 13:09:17", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1808", "1", "2014-09-13 13:23:07", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1809", "3", "2014-09-13 14:00:00", "66.249.79.76", "8338");
INSERT INTO `wp_gf_form_view` VALUES("1810", "6", "2014-09-13 14:12:37", "66.249.79.76", "9");
INSERT INTO `wp_gf_form_view` VALUES("1811", "3", "2014-09-13 15:00:00", "66.249.79.84", "6835");
INSERT INTO `wp_gf_form_view` VALUES("1812", "6", "2014-09-13 15:00:18", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1813", "3", "2014-09-13 16:00:00", "66.249.79.76", "6631");
INSERT INTO `wp_gf_form_view` VALUES("1814", "6", "2014-09-13 16:41:46", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1815", "3", "2014-09-13 17:00:00", "66.249.79.76", "3599");
INSERT INTO `wp_gf_form_view` VALUES("1816", "6", "2014-09-13 17:07:41", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1817", "3", "2014-09-13 18:01:38", "66.249.79.84", "512");
INSERT INTO `wp_gf_form_view` VALUES("1818", "3", "2014-09-13 19:00:09", "66.249.79.84", "2488");
INSERT INTO `wp_gf_form_view` VALUES("1819", "3", "2014-09-13 20:00:07", "37.58.100.234", "20");
INSERT INTO `wp_gf_form_view` VALUES("1820", "3", "2014-09-13 21:31:01", "66.249.79.76", "40");
INSERT INTO `wp_gf_form_view` VALUES("1821", "3", "2014-09-13 22:05:46", "68.180.225.45", "292");
INSERT INTO `wp_gf_form_view` VALUES("1822", "3", "2014-09-13 23:01:53", "66.249.79.92", "340");
INSERT INTO `wp_gf_form_view` VALUES("1823", "3", "2014-09-14 00:01:19", "66.249.79.92", "454");
INSERT INTO `wp_gf_form_view` VALUES("1824", "3", "2014-09-14 01:00:05", "66.249.79.84", "812");
INSERT INTO `wp_gf_form_view` VALUES("1825", "1", "2014-09-14 01:19:09", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1826", "3", "2014-09-14 02:01:11", "66.249.79.92", "2185");
INSERT INTO `wp_gf_form_view` VALUES("1827", "6", "2014-09-14 02:20:05", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1828", "3", "2014-09-14 03:00:06", "66.249.79.76", "6183");
INSERT INTO `wp_gf_form_view` VALUES("1829", "1", "2014-09-14 03:33:50", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1830", "3", "2014-09-14 04:00:00", "66.249.79.84", "6926");
INSERT INTO `wp_gf_form_view` VALUES("1831", "6", "2014-09-14 04:02:06", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1832", "1", "2014-09-14 04:49:42", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1833", "3", "2014-09-14 05:00:00", "66.249.79.92", "4468");
INSERT INTO `wp_gf_form_view` VALUES("1834", "1", "2014-09-14 05:59:41", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1835", "3", "2014-09-14 06:00:29", "66.249.79.92", "484");
INSERT INTO `wp_gf_form_view` VALUES("1836", "6", "2014-09-14 06:58:15", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1837", "3", "2014-09-14 07:00:05", "66.249.79.84", "5550");
INSERT INTO `wp_gf_form_view` VALUES("1838", "3", "2014-09-14 08:00:50", "66.249.79.76", "3174");
INSERT INTO `wp_gf_form_view` VALUES("1839", "3", "2014-09-14 09:00:37", "66.249.79.84", "4007");
INSERT INTO `wp_gf_form_view` VALUES("1840", "3", "2014-09-14 10:00:00", "66.249.79.92", "6919");
INSERT INTO `wp_gf_form_view` VALUES("1841", "6", "2014-09-14 10:39:50", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1842", "3", "2014-09-14 11:00:02", "66.249.79.76", "6788");
INSERT INTO `wp_gf_form_view` VALUES("1843", "6", "2014-09-14 11:35:47", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1844", "3", "2014-09-14 12:00:00", "66.249.79.84", "6947");
INSERT INTO `wp_gf_form_view` VALUES("1845", "6", "2014-09-14 12:32:07", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1846", "3", "2014-09-14 13:00:01", "66.249.79.84", "6913");
INSERT INTO `wp_gf_form_view` VALUES("1847", "6", "2014-09-14 13:35:15", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1848", "3", "2014-09-14 14:00:00", "66.249.79.92", "7273");
INSERT INTO `wp_gf_form_view` VALUES("1849", "1", "2014-09-14 14:08:53", "192.187.115.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("1850", "6", "2014-09-14 14:16:50", "93.37.130.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("1851", "2", "2014-09-14 14:19:09", "93.37.130.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("1852", "3", "2014-09-14 15:00:01", "66.249.79.84", "7020");
INSERT INTO `wp_gf_form_view` VALUES("1853", "6", "2014-09-14 15:25:17", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1854", "3", "2014-09-14 16:00:00", "66.249.79.92", "6988");
INSERT INTO `wp_gf_form_view` VALUES("1855", "6", "2014-09-14 16:07:16", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1856", "3", "2014-09-14 17:00:00", "66.249.79.76", "3964");
INSERT INTO `wp_gf_form_view` VALUES("1857", "6", "2014-09-14 17:32:25", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1858", "3", "2014-09-14 18:02:31", "66.249.79.76", "3504");
INSERT INTO `wp_gf_form_view` VALUES("1859", "1", "2014-09-14 18:36:37", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1860", "3", "2014-09-14 19:00:08", "66.249.79.84", "5400");
INSERT INTO `wp_gf_form_view` VALUES("1861", "6", "2014-09-14 19:50:06", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1862", "3", "2014-09-14 20:00:11", "66.249.79.92", "6469");
INSERT INTO `wp_gf_form_view` VALUES("1863", "6", "2014-09-14 20:03:15", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1864", "1", "2014-09-14 20:51:58", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1865", "2", "2014-09-14 20:52:35", "5.9.73.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("1866", "3", "2014-09-14 21:00:07", "66.249.79.76", "4665");
INSERT INTO `wp_gf_form_view` VALUES("1867", "3", "2014-09-14 22:00:14", "66.249.79.92", "11996");
INSERT INTO `wp_gf_form_view` VALUES("1868", "6", "2014-09-14 22:19:36", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1869", "1", "2014-09-14 22:45:06", "54.203.153.15", "17");
INSERT INTO `wp_gf_form_view` VALUES("1870", "2", "2014-09-14 22:46:02", "54.203.153.15", "14");
INSERT INTO `wp_gf_form_view` VALUES("1871", "3", "2014-09-14 23:00:00", "212.129.42.207", "5155");
INSERT INTO `wp_gf_form_view` VALUES("1872", "1", "2014-09-14 23:00:04", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("1873", "3", "2014-09-15 00:00:00", "66.249.79.76", "7355");
INSERT INTO `wp_gf_form_view` VALUES("1874", "6", "2014-09-15 00:33:32", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1875", "3", "2014-09-15 01:00:00", "66.249.79.76", "6846");
INSERT INTO `wp_gf_form_view` VALUES("1876", "3", "2014-09-15 02:00:00", "66.249.79.92", "7374");
INSERT INTO `wp_gf_form_view` VALUES("1877", "6", "2014-09-15 02:43:26", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1878", "3", "2014-09-15 03:00:00", "66.249.79.84", "7396");
INSERT INTO `wp_gf_form_view` VALUES("1879", "3", "2014-09-15 04:00:01", "66.249.79.84", "6680");
INSERT INTO `wp_gf_form_view` VALUES("1880", "6", "2014-09-15 04:54:52", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1881", "3", "2014-09-15 05:00:13", "68.180.225.45", "7615");
INSERT INTO `wp_gf_form_view` VALUES("1882", "6", "2014-09-15 05:18:31", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1883", "3", "2014-09-15 06:00:00", "66.249.79.92", "4673");
INSERT INTO `wp_gf_form_view` VALUES("1884", "6", "2014-09-15 06:21:32", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1885", "3", "2014-09-15 07:00:02", "66.249.79.84", "5994");
INSERT INTO `wp_gf_form_view` VALUES("1886", "3", "2014-09-15 08:00:00", "66.249.79.76", "4732");
INSERT INTO `wp_gf_form_view` VALUES("1887", "6", "2014-09-15 08:13:18", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1888", "3", "2014-09-15 09:00:00", "66.249.79.76", "7475");
INSERT INTO `wp_gf_form_view` VALUES("1889", "1", "2014-09-15 09:16:35", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1890", "3", "2014-09-15 10:00:00", "66.249.79.92", "8056");
INSERT INTO `wp_gf_form_view` VALUES("1891", "1", "2014-09-15 10:28:45", "141.101.17.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("1892", "6", "2014-09-15 10:45:19", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1893", "3", "2014-09-15 11:00:00", "66.249.79.84", "7366");
INSERT INTO `wp_gf_form_view` VALUES("1894", "6", "2014-09-15 11:22:10", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("1895", "3", "2014-09-15 12:00:00", "66.249.79.84", "7359");
INSERT INTO `wp_gf_form_view` VALUES("1896", "3", "2014-09-15 13:00:00", "66.249.79.84", "7306");
INSERT INTO `wp_gf_form_view` VALUES("1897", "6", "2014-09-15 13:15:39", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1898", "3", "2014-09-15 14:00:00", "66.249.79.76", "7409");
INSERT INTO `wp_gf_form_view` VALUES("1899", "3", "2014-09-15 15:00:00", "66.249.79.92", "6129");
INSERT INTO `wp_gf_form_view` VALUES("1900", "6", "2014-09-15 15:13:12", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("1901", "3", "2014-09-15 16:00:04", "66.249.79.76", "7354");
INSERT INTO `wp_gf_form_view` VALUES("1902", "3", "2014-09-15 17:00:06", "66.249.79.92", "1318");
INSERT INTO `wp_gf_form_view` VALUES("1903", "1", "2014-09-15 18:09:49", "212.83.173.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("1904", "3", "2014-09-15 18:09:52", "212.83.173.82", "80");
INSERT INTO `wp_gf_form_view` VALUES("1905", "3", "2014-09-15 19:37:20", "207.46.13.4", "1511");
INSERT INTO `wp_gf_form_view` VALUES("1906", "6", "2014-09-15 19:37:22", "207.46.13.4", "11");
INSERT INTO `wp_gf_form_view` VALUES("1907", "2", "2014-09-15 19:42:42", "157.55.39.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("1908", "1", "2014-09-15 19:42:44", "157.55.39.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("1909", "3", "2014-09-15 20:09:11", "66.249.79.76", "76");
INSERT INTO `wp_gf_form_view` VALUES("1910", "1", "2014-09-15 20:18:38", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1911", "6", "2014-09-15 20:22:22", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1912", "3", "2014-09-15 21:20:14", "83.42.197.137", "287");
INSERT INTO `wp_gf_form_view` VALUES("1913", "6", "2014-09-15 21:22:10", "83.42.197.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("1914", "1", "2014-09-15 21:23:12", "83.42.197.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("1915", "2", "2014-09-15 21:23:26", "83.42.197.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("1916", "3", "2014-09-15 22:08:55", "66.249.79.76", "216");
INSERT INTO `wp_gf_form_view` VALUES("1917", "3", "2014-09-15 23:19:50", "66.249.79.76", "70");
INSERT INTO `wp_gf_form_view` VALUES("1918", "1", "2014-09-15 23:44:37", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1919", "6", "2014-09-15 23:59:37", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1920", "3", "2014-09-16 00:05:37", "66.249.79.92", "504");
INSERT INTO `wp_gf_form_view` VALUES("1921", "3", "2014-09-16 01:00:03", "66.249.79.76", "5339");
INSERT INTO `wp_gf_form_view` VALUES("1922", "6", "2014-09-16 01:05:07", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1923", "3", "2014-09-16 02:00:00", "66.249.79.76", "6658");
INSERT INTO `wp_gf_form_view` VALUES("1924", "6", "2014-09-16 02:29:15", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1925", "3", "2014-09-16 03:00:00", "66.249.79.92", "6833");
INSERT INTO `wp_gf_form_view` VALUES("1926", "3", "2014-09-16 04:00:01", "66.249.79.92", "6758");
INSERT INTO `wp_gf_form_view` VALUES("1927", "3", "2014-09-16 05:00:55", "66.249.79.84", "2102");
INSERT INTO `wp_gf_form_view` VALUES("1928", "3", "2014-09-16 06:00:00", "66.249.79.92", "5521");
INSERT INTO `wp_gf_form_view` VALUES("1929", "6", "2014-09-16 06:44:46", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("1930", "3", "2014-09-16 07:00:00", "66.249.79.92", "7061");
INSERT INTO `wp_gf_form_view` VALUES("1931", "1", "2014-09-16 07:21:19", "213.238.175.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("1932", "3", "2014-09-16 08:00:00", "66.249.79.84", "6480");
INSERT INTO `wp_gf_form_view` VALUES("1933", "6", "2014-09-16 08:23:59", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1934", "3", "2014-09-16 09:00:01", "66.249.79.76", "6556");
INSERT INTO `wp_gf_form_view` VALUES("1935", "6", "2014-09-16 09:44:43", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1936", "3", "2014-09-16 10:00:03", "66.249.79.76", "6954");
INSERT INTO `wp_gf_form_view` VALUES("1937", "6", "2014-09-16 10:20:52", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("1938", "3", "2014-09-16 11:00:01", "66.249.79.76", "6870");
INSERT INTO `wp_gf_form_view` VALUES("1939", "1", "2014-09-16 11:37:29", "23.94.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("1940", "3", "2014-09-16 12:00:01", "66.249.79.84", "6658");
INSERT INTO `wp_gf_form_view` VALUES("1941", "1", "2014-09-16 12:43:26", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1942", "3", "2014-09-16 13:00:05", "66.249.79.76", "6828");
INSERT INTO `wp_gf_form_view` VALUES("1943", "6", "2014-09-16 13:13:17", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1944", "1", "2014-09-16 13:41:20", "192.99.221.234", "4");
INSERT INTO `wp_gf_form_view` VALUES("1945", "3", "2014-09-16 14:00:00", "66.249.79.84", "6554");
INSERT INTO `wp_gf_form_view` VALUES("1946", "6", "2014-09-16 14:20:21", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1947", "3", "2014-09-16 15:00:00", "66.249.79.92", "6976");
INSERT INTO `wp_gf_form_view` VALUES("1948", "6", "2014-09-16 15:26:40", "100.43.85.24", "8");
INSERT INTO `wp_gf_form_view` VALUES("1949", "3", "2014-09-16 16:00:00", "66.249.79.92", "6598");
INSERT INTO `wp_gf_form_view` VALUES("1950", "6", "2014-09-16 16:31:10", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1951", "3", "2014-09-16 17:00:14", "66.249.79.84", "3214");
INSERT INTO `wp_gf_form_view` VALUES("1952", "1", "2014-09-16 17:45:01", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1953", "3", "2014-09-16 18:00:01", "66.249.79.76", "6611");
INSERT INTO `wp_gf_form_view` VALUES("1954", "6", "2014-09-16 18:09:26", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("1955", "3", "2014-09-16 19:00:00", "66.249.79.76", "6600");
INSERT INTO `wp_gf_form_view` VALUES("1956", "6", "2014-09-16 19:01:00", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1957", "3", "2014-09-16 20:00:00", "66.249.79.76", "7443");
INSERT INTO `wp_gf_form_view` VALUES("1958", "6", "2014-09-16 20:25:05", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("1959", "3", "2014-09-16 21:00:41", "66.249.79.92", "6617");
INSERT INTO `wp_gf_form_view` VALUES("1960", "6", "2014-09-16 21:35:20", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("1961", "3", "2014-09-16 22:00:00", "66.249.79.84", "6840");
INSERT INTO `wp_gf_form_view` VALUES("1962", "3", "2014-09-16 23:00:00", "66.249.79.76", "6537");
INSERT INTO `wp_gf_form_view` VALUES("1963", "6", "2014-09-16 23:52:37", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1964", "3", "2014-09-17 00:00:03", "66.249.79.76", "6816");
INSERT INTO `wp_gf_form_view` VALUES("1965", "1", "2014-09-17 00:50:53", "198.199.120.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("1966", "2", "2014-09-17 00:50:53", "198.199.120.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("1967", "6", "2014-09-17 00:50:54", "198.199.120.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("1968", "3", "2014-09-17 01:00:00", "66.249.79.76", "6570");
INSERT INTO `wp_gf_form_view` VALUES("1969", "3", "2014-09-17 02:00:00", "66.249.79.76", "7269");
INSERT INTO `wp_gf_form_view` VALUES("1970", "6", "2014-09-17 02:14:57", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1971", "3", "2014-09-17 03:00:00", "66.249.79.76", "7198");
INSERT INTO `wp_gf_form_view` VALUES("1972", "6", "2014-09-17 03:21:08", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("1973", "1", "2014-09-17 03:50:16", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("1974", "3", "2014-09-17 04:00:00", "66.249.79.92", "6380");
INSERT INTO `wp_gf_form_view` VALUES("1975", "6", "2014-09-17 04:02:10", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1976", "3", "2014-09-17 05:00:00", "66.249.79.92", "6795");
INSERT INTO `wp_gf_form_view` VALUES("1977", "6", "2014-09-17 05:00:19", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("1978", "3", "2014-09-17 06:00:00", "66.249.79.76", "7113");
INSERT INTO `wp_gf_form_view` VALUES("1979", "6", "2014-09-17 06:08:34", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("1980", "3", "2014-09-17 07:00:00", "66.249.79.76", "6302");
INSERT INTO `wp_gf_form_view` VALUES("1981", "1", "2014-09-17 07:19:36", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1982", "3", "2014-09-17 08:00:00", "66.249.79.84", "8890");
INSERT INTO `wp_gf_form_view` VALUES("1983", "6", "2014-09-17 08:32:13", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1984", "1", "2014-09-17 08:42:24", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("1985", "3", "2014-09-17 09:00:00", "66.249.79.76", "8843");
INSERT INTO `wp_gf_form_view` VALUES("1986", "6", "2014-09-17 09:57:13", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("1987", "3", "2014-09-17 10:00:00", "66.249.79.76", "9058");
INSERT INTO `wp_gf_form_view` VALUES("1988", "1", "2014-09-17 10:57:51", "191.239.32.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("1989", "3", "2014-09-17 11:00:03", "66.249.79.92", "8964");
INSERT INTO `wp_gf_form_view` VALUES("1990", "6", "2014-09-17 11:05:26", "191.239.32.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("1991", "3", "2014-09-17 12:00:00", "66.249.79.92", "9332");
INSERT INTO `wp_gf_form_view` VALUES("1992", "1", "2014-09-17 12:38:33", "191.239.35.255", "2");
INSERT INTO `wp_gf_form_view` VALUES("1993", "6", "2014-09-17 12:40:30", "191.239.35.255", "4");
INSERT INTO `wp_gf_form_view` VALUES("1994", "3", "2014-09-17 13:00:00", "66.249.79.92", "8799");
INSERT INTO `wp_gf_form_view` VALUES("1995", "6", "2014-09-17 13:01:55", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("1996", "3", "2014-09-17 14:00:00", "66.249.79.76", "8924");
INSERT INTO `wp_gf_form_view` VALUES("1997", "6", "2014-09-17 14:02:52", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("1998", "1", "2014-09-17 14:49:20", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("1999", "3", "2014-09-17 15:00:00", "66.249.79.84", "6203");
INSERT INTO `wp_gf_form_view` VALUES("2000", "6", "2014-09-17 15:42:31", "68.180.225.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("2001", "3", "2014-09-17 16:00:36", "66.249.79.84", "6838");
INSERT INTO `wp_gf_form_view` VALUES("2002", "6", "2014-09-17 16:31:37", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2003", "3", "2014-09-17 17:00:01", "66.249.79.76", "4065");
INSERT INTO `wp_gf_form_view` VALUES("2004", "1", "2014-09-17 17:52:53", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2005", "3", "2014-09-17 18:00:05", "66.249.79.76", "5324");
INSERT INTO `wp_gf_form_view` VALUES("2006", "6", "2014-09-17 18:33:46", "96.50.93.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("2007", "3", "2014-09-17 19:00:00", "66.249.79.92", "6460");
INSERT INTO `wp_gf_form_view` VALUES("2008", "3", "2014-09-17 20:00:00", "66.249.79.76", "6314");
INSERT INTO `wp_gf_form_view` VALUES("2009", "6", "2014-09-17 20:17:58", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2010", "3", "2014-09-17 21:00:12", "66.249.79.92", "6439");
INSERT INTO `wp_gf_form_view` VALUES("2011", "3", "2014-09-17 22:00:00", "66.249.79.84", "7053");
INSERT INTO `wp_gf_form_view` VALUES("2012", "1", "2014-09-17 22:21:48", "218.88.108.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("2013", "3", "2014-09-17 23:00:01", "66.249.79.76", "6886");
INSERT INTO `wp_gf_form_view` VALUES("2014", "6", "2014-09-17 23:15:31", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2015", "3", "2014-09-18 00:00:01", "66.249.79.76", "7286");
INSERT INTO `wp_gf_form_view` VALUES("2016", "6", "2014-09-18 00:19:31", "66.249.79.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("2017", "3", "2014-09-18 01:00:00", "66.249.79.84", "6975");
INSERT INTO `wp_gf_form_view` VALUES("2018", "3", "2014-09-18 02:00:01", "66.249.79.84", "7051");
INSERT INTO `wp_gf_form_view` VALUES("2019", "1", "2014-09-18 02:29:06", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2020", "6", "2014-09-18 02:46:28", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2021", "3", "2014-09-18 03:00:00", "66.249.79.92", "7402");
INSERT INTO `wp_gf_form_view` VALUES("2022", "1", "2014-09-18 03:16:52", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2023", "6", "2014-09-18 03:32:03", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2024", "3", "2014-09-18 04:00:00", "66.249.79.92", "3714");
INSERT INTO `wp_gf_form_view` VALUES("2025", "6", "2014-09-18 04:13:25", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2026", "3", "2014-09-18 05:00:00", "172.218.193.107", "7998");
INSERT INTO `wp_gf_form_view` VALUES("2027", "6", "2014-09-18 05:40:02", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2028", "1", "2014-09-18 05:50:49", "5.149.253.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("2029", "3", "2014-09-18 06:00:00", "66.249.79.92", "5993");
INSERT INTO `wp_gf_form_view` VALUES("2030", "6", "2014-09-18 06:12:04", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2031", "3", "2014-09-18 07:00:00", "66.249.79.92", "8421");
INSERT INTO `wp_gf_form_view` VALUES("2032", "1", "2014-09-18 07:06:06", "192.99.221.234", "8");
INSERT INTO `wp_gf_form_view` VALUES("2033", "6", "2014-09-18 07:21:33", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("2034", "3", "2014-09-18 08:00:00", "66.249.79.76", "7876");
INSERT INTO `wp_gf_form_view` VALUES("2035", "6", "2014-09-18 08:06:58", "157.55.39.6", "4");
INSERT INTO `wp_gf_form_view` VALUES("2036", "3", "2014-09-18 09:00:00", "66.249.79.84", "8064");
INSERT INTO `wp_gf_form_view` VALUES("2037", "6", "2014-09-18 09:01:18", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2038", "3", "2014-09-18 10:00:00", "66.249.79.92", "7848");
INSERT INTO `wp_gf_form_view` VALUES("2039", "6", "2014-09-18 10:49:03", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2040", "3", "2014-09-18 11:00:00", "66.249.79.76", "8437");
INSERT INTO `wp_gf_form_view` VALUES("2041", "6", "2014-09-18 11:19:05", "104.40.73.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("2042", "3", "2014-09-18 12:00:00", "66.249.79.84", "7866");
INSERT INTO `wp_gf_form_view` VALUES("2043", "1", "2014-09-18 12:24:36", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2044", "3", "2014-09-18 13:00:00", "66.249.79.84", "8359");
INSERT INTO `wp_gf_form_view` VALUES("2045", "6", "2014-09-18 13:11:04", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("2046", "3", "2014-09-18 14:00:00", "66.249.79.92", "8821");
INSERT INTO `wp_gf_form_view` VALUES("2047", "6", "2014-09-18 14:21:23", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2048", "1", "2014-09-18 14:31:37", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2049", "2", "2014-09-18 14:50:24", "104.40.140.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("2050", "3", "2014-09-18 15:00:01", "66.249.79.92", "5984");
INSERT INTO `wp_gf_form_view` VALUES("2051", "1", "2014-09-18 15:35:44", "68.180.225.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("2052", "2", "2014-09-18 15:42:37", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("2053", "3", "2014-09-18 16:00:00", "66.249.67.84", "6192");
INSERT INTO `wp_gf_form_view` VALUES("2054", "6", "2014-09-18 16:03:40", "100.43.85.24", "14");
INSERT INTO `wp_gf_form_view` VALUES("2055", "3", "2014-09-18 17:00:18", "66.249.67.76", "4882");
INSERT INTO `wp_gf_form_view` VALUES("2056", "6", "2014-09-18 17:01:57", "100.43.85.24", "12");
INSERT INTO `wp_gf_form_view` VALUES("2057", "1", "2014-09-18 17:30:54", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("2058", "3", "2014-09-18 18:00:00", "66.249.79.92", "6504");
INSERT INTO `wp_gf_form_view` VALUES("2059", "6", "2014-09-18 18:10:48", "100.43.85.24", "40");
INSERT INTO `wp_gf_form_view` VALUES("2060", "3", "2014-09-18 19:00:00", "66.249.79.92", "5892");
INSERT INTO `wp_gf_form_view` VALUES("2061", "6", "2014-09-18 19:29:24", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2062", "3", "2014-09-18 20:00:01", "66.249.79.84", "6650");
INSERT INTO `wp_gf_form_view` VALUES("2063", "6", "2014-09-18 20:11:33", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2064", "2", "2014-09-18 20:20:53", "24.68.35.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("2065", "3", "2014-09-18 21:00:00", "66.249.79.76", "6684");
INSERT INTO `wp_gf_form_view` VALUES("2066", "1", "2014-09-18 21:07:38", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2067", "6", "2014-09-18 21:17:09", "157.55.39.6", "8");
INSERT INTO `wp_gf_form_view` VALUES("2068", "3", "2014-09-18 22:00:00", "66.249.79.84", "6287");
INSERT INTO `wp_gf_form_view` VALUES("2069", "6", "2014-09-18 22:01:13", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2070", "3", "2014-09-18 23:00:03", "66.249.79.84", "6844");
INSERT INTO `wp_gf_form_view` VALUES("2071", "1", "2014-09-18 23:22:50", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2072", "3", "2014-09-19 00:00:00", "66.249.79.84", "6340");
INSERT INTO `wp_gf_form_view` VALUES("2073", "6", "2014-09-19 00:33:08", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2074", "3", "2014-09-19 01:00:03", "66.249.79.84", "6620");
INSERT INTO `wp_gf_form_view` VALUES("2075", "6", "2014-09-19 01:20:16", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2076", "3", "2014-09-19 02:00:01", "66.249.79.84", "6384");
INSERT INTO `wp_gf_form_view` VALUES("2077", "3", "2014-09-19 03:00:03", "66.249.79.92", "6571");
INSERT INTO `wp_gf_form_view` VALUES("2078", "2", "2014-09-19 03:44:27", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("2079", "3", "2014-09-19 04:00:00", "66.249.79.92", "6801");
INSERT INTO `wp_gf_form_view` VALUES("2080", "6", "2014-09-19 04:53:25", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2081", "3", "2014-09-19 05:00:03", "66.249.79.84", "6532");
INSERT INTO `wp_gf_form_view` VALUES("2082", "6", "2014-09-19 05:34:31", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2083", "3", "2014-09-19 06:00:00", "66.249.79.92", "4166");
INSERT INTO `wp_gf_form_view` VALUES("2084", "6", "2014-09-19 06:19:49", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2085", "1", "2014-09-19 06:24:25", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2086", "3", "2014-09-19 07:00:11", "66.249.79.76", "7589");
INSERT INTO `wp_gf_form_view` VALUES("2087", "6", "2014-09-19 07:42:28", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2088", "3", "2014-09-19 08:00:00", "66.249.79.84", "8268");
INSERT INTO `wp_gf_form_view` VALUES("2089", "6", "2014-09-19 08:10:21", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2090", "3", "2014-09-19 09:00:00", "66.249.79.92", "8765");
INSERT INTO `wp_gf_form_view` VALUES("2091", "6", "2014-09-19 09:36:41", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("2092", "3", "2014-09-19 10:00:00", "66.249.79.76", "8895");
INSERT INTO `wp_gf_form_view` VALUES("2093", "6", "2014-09-19 10:02:13", "100.43.85.24", "18");
INSERT INTO `wp_gf_form_view` VALUES("2094", "3", "2014-09-19 11:00:27", "66.249.79.76", "8905");
INSERT INTO `wp_gf_form_view` VALUES("2095", "6", "2014-09-19 11:10:15", "100.43.85.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("2096", "3", "2014-09-19 12:00:00", "66.249.79.92", "8819");
INSERT INTO `wp_gf_form_view` VALUES("2097", "6", "2014-09-19 12:04:42", "100.43.85.24", "20");
INSERT INTO `wp_gf_form_view` VALUES("2098", "3", "2014-09-19 13:00:00", "66.249.79.84", "8719");
INSERT INTO `wp_gf_form_view` VALUES("2099", "6", "2014-09-19 13:00:34", "100.43.85.24", "18");
INSERT INTO `wp_gf_form_view` VALUES("2100", "2", "2014-09-19 13:31:22", "93.115.94.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("2101", "1", "2014-09-19 13:31:28", "93.115.94.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("2102", "3", "2014-09-19 14:00:00", "66.249.79.84", "8622");
INSERT INTO `wp_gf_form_view` VALUES("2103", "1", "2014-09-19 14:09:27", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("2104", "6", "2014-09-19 14:13:33", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("2105", "3", "2014-09-19 15:00:00", "66.249.79.92", "6077");
INSERT INTO `wp_gf_form_view` VALUES("2106", "1", "2014-09-19 15:13:14", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2107", "3", "2014-09-19 16:00:00", "66.249.79.84", "5027");
INSERT INTO `wp_gf_form_view` VALUES("2108", "6", "2014-09-19 16:19:22", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2109", "3", "2014-09-19 17:00:00", "66.249.79.92", "6528");
INSERT INTO `wp_gf_form_view` VALUES("2110", "1", "2014-09-19 17:00:11", "202.46.62.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("2111", "3", "2014-09-19 18:00:01", "66.249.79.76", "5268");
INSERT INTO `wp_gf_form_view` VALUES("2112", "6", "2014-09-19 18:29:35", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2113", "3", "2014-09-19 19:00:00", "66.249.79.84", "7108");
INSERT INTO `wp_gf_form_view` VALUES("2114", "6", "2014-09-19 19:01:07", "100.43.85.24", "16");
INSERT INTO `wp_gf_form_view` VALUES("2115", "1", "2014-09-19 19:04:35", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2116", "3", "2014-09-19 20:00:00", "66.249.79.84", "6945");
INSERT INTO `wp_gf_form_view` VALUES("2117", "6", "2014-09-19 20:48:43", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2118", "3", "2014-09-19 21:00:00", "66.249.79.76", "6828");
INSERT INTO `wp_gf_form_view` VALUES("2119", "6", "2014-09-19 21:21:18", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2120", "2", "2014-09-19 21:40:27", "93.182.137.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("2121", "3", "2014-09-19 22:00:00", "66.249.79.92", "7030");
INSERT INTO `wp_gf_form_view` VALUES("2122", "2", "2014-09-19 22:12:36", "68.180.225.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("2123", "3", "2014-09-19 23:00:00", "66.249.79.76", "7063");
INSERT INTO `wp_gf_form_view` VALUES("2124", "1", "2014-09-19 23:18:18", "70.67.33.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("2125", "3", "2014-09-20 00:00:00", "66.249.79.76", "6822");
INSERT INTO `wp_gf_form_view` VALUES("2126", "6", "2014-09-20 00:15:36", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2127", "3", "2014-09-20 01:00:01", "66.249.79.76", "5852");
INSERT INTO `wp_gf_form_view` VALUES("2128", "3", "2014-09-20 02:00:01", "66.249.79.84", "6586");
INSERT INTO `wp_gf_form_view` VALUES("2129", "3", "2014-09-20 03:00:02", "66.249.79.92", "6947");
INSERT INTO `wp_gf_form_view` VALUES("2130", "6", "2014-09-20 03:18:57", "66.249.79.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("2131", "3", "2014-09-20 04:00:00", "66.249.79.92", "6409");
INSERT INTO `wp_gf_form_view` VALUES("2132", "6", "2014-09-20 04:47:22", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2133", "1", "2014-09-20 04:53:37", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2134", "3", "2014-09-20 05:00:00", "66.249.79.92", "6871");
INSERT INTO `wp_gf_form_view` VALUES("2135", "1", "2014-09-20 05:09:29", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2136", "3", "2014-09-20 06:00:01", "66.249.79.76", "6991");
INSERT INTO `wp_gf_form_view` VALUES("2137", "6", "2014-09-20 06:02:32", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("2138", "3", "2014-09-20 07:00:00", "66.249.79.76", "7045");
INSERT INTO `wp_gf_form_view` VALUES("2139", "1", "2014-09-20 07:32:39", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2140", "6", "2014-09-20 07:37:44", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2141", "3", "2014-09-20 08:00:00", "66.249.79.76", "7228");
INSERT INTO `wp_gf_form_view` VALUES("2142", "3", "2014-09-20 09:00:00", "66.249.79.76", "7102");
INSERT INTO `wp_gf_form_view` VALUES("2143", "6", "2014-09-20 09:24:32", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2144", "3", "2014-09-20 10:00:00", "66.249.79.84", "7157");
INSERT INTO `wp_gf_form_view` VALUES("2145", "3", "2014-09-20 11:00:00", "66.249.79.76", "7056");
INSERT INTO `wp_gf_form_view` VALUES("2146", "1", "2014-09-20 11:01:13", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2147", "6", "2014-09-20 11:02:10", "100.43.85.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("2148", "3", "2014-09-20 12:00:00", "66.249.79.92", "9125");
INSERT INTO `wp_gf_form_view` VALUES("2149", "6", "2014-09-20 12:21:18", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("2150", "3", "2014-09-20 13:00:00", "66.249.79.92", "7173");
INSERT INTO `wp_gf_form_view` VALUES("2151", "2", "2014-09-20 13:06:32", "191.233.71.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("2152", "1", "2014-09-20 13:06:39", "191.233.71.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("2153", "6", "2014-09-20 13:10:36", "191.233.71.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("2154", "3", "2014-09-20 14:00:30", "100.43.85.24", "8486");
INSERT INTO `wp_gf_form_view` VALUES("2155", "6", "2014-09-20 14:11:17", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2156", "1", "2014-09-20 14:17:00", "27.159.214.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("2157", "3", "2014-09-20 15:00:04", "66.249.79.76", "5713");
INSERT INTO `wp_gf_form_view` VALUES("2158", "6", "2014-09-20 15:00:53", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("2159", "2", "2014-09-20 15:08:32", "141.101.17.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("2160", "3", "2014-09-20 16:00:46", "66.249.79.76", "5520");
INSERT INTO `wp_gf_form_view` VALUES("2161", "3", "2014-09-20 17:00:02", "66.249.79.76", "9771");
INSERT INTO `wp_gf_form_view` VALUES("2162", "2", "2014-09-20 17:39:11", "5.9.112.67", "4");
INSERT INTO `wp_gf_form_view` VALUES("2163", "1", "2014-09-20 17:39:29", "5.9.112.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("2164", "6", "2014-09-20 17:40:11", "5.9.112.67", "29");
INSERT INTO `wp_gf_form_view` VALUES("2165", "3", "2014-09-20 18:00:00", "107.170.38.24", "12387");
INSERT INTO `wp_gf_form_view` VALUES("2166", "6", "2014-09-20 18:00:21", "5.9.112.67", "42");
INSERT INTO `wp_gf_form_view` VALUES("2167", "1", "2014-09-20 18:47:50", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2168", "3", "2014-09-20 19:00:00", "107.170.38.24", "8179");
INSERT INTO `wp_gf_form_view` VALUES("2169", "2", "2014-09-20 19:02:46", "62.210.78.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("2170", "6", "2014-09-20 19:04:12", "66.249.79.92", "24");
INSERT INTO `wp_gf_form_view` VALUES("2171", "1", "2014-09-20 19:27:51", "212.83.173.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("2172", "3", "2014-09-20 20:00:00", "66.249.79.92", "6656");
INSERT INTO `wp_gf_form_view` VALUES("2173", "2", "2014-09-20 20:15:30", "24.68.157.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("2174", "3", "2014-09-20 21:00:00", "66.249.79.84", "6707");
INSERT INTO `wp_gf_form_view` VALUES("2175", "6", "2014-09-20 21:23:56", "66.249.79.76", "13");
INSERT INTO `wp_gf_form_view` VALUES("2176", "3", "2014-09-20 22:00:42", "66.249.79.92", "6710");
INSERT INTO `wp_gf_form_view` VALUES("2177", "3", "2014-09-20 23:00:03", "66.249.79.84", "6817");
INSERT INTO `wp_gf_form_view` VALUES("2178", "6", "2014-09-20 23:15:03", "24.69.61.85", "10");
INSERT INTO `wp_gf_form_view` VALUES("2179", "3", "2014-09-21 00:00:01", "66.249.79.76", "7213");
INSERT INTO `wp_gf_form_view` VALUES("2180", "6", "2014-09-21 00:01:37", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("2181", "3", "2014-09-21 01:00:03", "66.249.79.76", "7134");
INSERT INTO `wp_gf_form_view` VALUES("2182", "6", "2014-09-21 01:35:41", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2183", "3", "2014-09-21 02:00:00", "66.249.79.92", "7228");
INSERT INTO `wp_gf_form_view` VALUES("2184", "6", "2014-09-21 02:17:25", "66.249.79.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("2185", "3", "2014-09-21 03:00:00", "66.249.79.84", "6448");
INSERT INTO `wp_gf_form_view` VALUES("2186", "3", "2014-09-21 04:00:00", "66.249.79.92", "6703");
INSERT INTO `wp_gf_form_view` VALUES("2187", "2", "2014-09-21 04:08:25", "213.238.175.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("2188", "6", "2014-09-21 04:19:30", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2189", "3", "2014-09-21 05:00:04", "66.249.79.92", "5830");
INSERT INTO `wp_gf_form_view` VALUES("2190", "1", "2014-09-21 05:20:23", "62.210.78.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("2191", "3", "2014-09-21 06:00:14", "66.249.79.92", "7108");
INSERT INTO `wp_gf_form_view` VALUES("2192", "1", "2014-09-21 06:26:16", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2193", "3", "2014-09-21 07:00:18", "66.249.79.92", "7600");
INSERT INTO `wp_gf_form_view` VALUES("2194", "3", "2014-09-21 08:00:00", "66.249.79.92", "7855");
INSERT INTO `wp_gf_form_view` VALUES("2195", "1", "2014-09-21 08:10:10", "212.83.173.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("2196", "6", "2014-09-21 08:20:35", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2197", "3", "2014-09-21 09:00:00", "66.249.79.76", "7745");
INSERT INTO `wp_gf_form_view` VALUES("2198", "1", "2014-09-21 09:27:58", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2199", "3", "2014-09-21 10:00:00", "66.249.79.92", "8024");
INSERT INTO `wp_gf_form_view` VALUES("2200", "6", "2014-09-21 10:09:40", "157.55.39.208", "6");
INSERT INTO `wp_gf_form_view` VALUES("2201", "3", "2014-09-21 11:00:02", "66.249.79.84", "8006");
INSERT INTO `wp_gf_form_view` VALUES("2202", "6", "2014-09-21 11:15:24", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2203", "3", "2014-09-21 12:00:04", "66.249.79.92", "8028");
INSERT INTO `wp_gf_form_view` VALUES("2204", "6", "2014-09-21 12:16:00", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("2205", "3", "2014-09-21 13:00:01", "66.249.79.76", "8034");
INSERT INTO `wp_gf_form_view` VALUES("2206", "6", "2014-09-21 13:01:06", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2207", "1", "2014-09-21 13:02:57", "202.46.50.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("2208", "3", "2014-09-21 14:00:27", "66.249.79.84", "8101");
INSERT INTO `wp_gf_form_view` VALUES("2209", "1", "2014-09-21 14:36:51", "192.241.144.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("2210", "2", "2014-09-21 14:36:51", "192.241.144.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("2211", "3", "2014-09-21 15:00:00", "66.249.79.92", "3682");
INSERT INTO `wp_gf_form_view` VALUES("2212", "6", "2014-09-21 15:58:51", "62.210.78.197", "4");
INSERT INTO `wp_gf_form_view` VALUES("2213", "3", "2014-09-21 16:00:01", "66.249.79.84", "7118");
INSERT INTO `wp_gf_form_view` VALUES("2214", "6", "2014-09-21 16:20:07", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2215", "3", "2014-09-21 17:00:03", "66.249.79.84", "6620");
INSERT INTO `wp_gf_form_view` VALUES("2216", "3", "2014-09-21 18:00:05", "66.249.79.92", "6810");
INSERT INTO `wp_gf_form_view` VALUES("2217", "2", "2014-09-21 18:28:10", "5.149.253.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("2218", "6", "2014-09-21 18:55:37", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2219", "3", "2014-09-21 19:00:00", "66.249.79.76", "6228");
INSERT INTO `wp_gf_form_view` VALUES("2220", "6", "2014-09-21 19:10:23", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2221", "3", "2014-09-21 20:00:00", "66.249.79.76", "6123");
INSERT INTO `wp_gf_form_view` VALUES("2222", "6", "2014-09-21 20:09:29", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2223", "3", "2014-09-21 21:00:00", "66.249.79.76", "5766");
INSERT INTO `wp_gf_form_view` VALUES("2224", "1", "2014-09-21 21:07:25", "192.99.221.234", "4");
INSERT INTO `wp_gf_form_view` VALUES("2225", "3", "2014-09-21 22:00:04", "66.249.79.92", "6451");
INSERT INTO `wp_gf_form_view` VALUES("2226", "3", "2014-09-21 23:00:00", "66.249.79.76", "6708");
INSERT INTO `wp_gf_form_view` VALUES("2227", "1", "2014-09-21 23:55:08", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2228", "3", "2014-09-22 00:00:00", "66.249.79.84", "6887");
INSERT INTO `wp_gf_form_view` VALUES("2229", "6", "2014-09-22 00:24:08", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2230", "3", "2014-09-22 01:00:00", "66.249.79.84", "6896");
INSERT INTO `wp_gf_form_view` VALUES("2231", "6", "2014-09-22 01:22:47", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2232", "3", "2014-09-22 02:00:30", "66.249.79.76", "6758");
INSERT INTO `wp_gf_form_view` VALUES("2233", "1", "2014-09-22 02:49:28", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2234", "3", "2014-09-22 03:00:01", "66.249.79.84", "6887");
INSERT INTO `wp_gf_form_view` VALUES("2235", "6", "2014-09-22 03:03:58", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2236", "3", "2014-09-22 04:00:00", "66.249.79.84", "5929");
INSERT INTO `wp_gf_form_view` VALUES("2237", "6", "2014-09-22 04:33:59", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2238", "3", "2014-09-22 05:00:02", "66.249.79.84", "7128");
INSERT INTO `wp_gf_form_view` VALUES("2239", "3", "2014-09-22 06:00:00", "66.249.79.92", "6891");
INSERT INTO `wp_gf_form_view` VALUES("2240", "2", "2014-09-22 06:05:45", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2241", "1", "2014-09-22 06:05:50", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2242", "6", "2014-09-22 06:16:48", "192.99.149.88", "8");
INSERT INTO `wp_gf_form_view` VALUES("2243", "3", "2014-09-22 07:00:00", "66.249.79.92", "7085");
INSERT INTO `wp_gf_form_view` VALUES("2244", "6", "2014-09-22 07:17:08", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("2245", "3", "2014-09-22 08:00:00", "66.249.79.76", "7207");
INSERT INTO `wp_gf_form_view` VALUES("2246", "6", "2014-09-22 08:17:06", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2247", "3", "2014-09-22 09:00:25", "66.249.79.76", "7037");
INSERT INTO `wp_gf_form_view` VALUES("2248", "2", "2014-09-22 09:26:31", "23.97.236.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("2249", "1", "2014-09-22 09:26:37", "23.97.236.23", "3");
INSERT INTO `wp_gf_form_view` VALUES("2250", "6", "2014-09-22 09:29:51", "23.97.236.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("2251", "3", "2014-09-22 10:00:00", "66.249.79.92", "7062");
INSERT INTO `wp_gf_form_view` VALUES("2252", "3", "2014-09-22 11:00:01", "66.249.79.76", "7203");
INSERT INTO `wp_gf_form_view` VALUES("2253", "1", "2014-09-22 11:11:35", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2254", "6", "2014-09-22 11:45:23", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2255", "3", "2014-09-22 12:00:00", "66.249.79.92", "6767");
INSERT INTO `wp_gf_form_view` VALUES("2256", "3", "2014-09-22 13:00:01", "66.249.79.76", "7182");
INSERT INTO `wp_gf_form_view` VALUES("2257", "1", "2014-09-22 13:11:15", "68.180.225.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("2258", "3", "2014-09-22 14:00:00", "66.249.79.92", "5498");
INSERT INTO `wp_gf_form_view` VALUES("2259", "6", "2014-09-22 14:24:10", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2260", "3", "2014-09-22 15:00:00", "66.249.79.92", "7516");
INSERT INTO `wp_gf_form_view` VALUES("2261", "6", "2014-09-22 15:01:54", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2262", "3", "2014-09-22 16:00:01", "66.249.79.84", "5069");
INSERT INTO `wp_gf_form_view` VALUES("2263", "6", "2014-09-22 16:08:18", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2264", "3", "2014-09-22 17:00:00", "66.249.79.84", "7124");
INSERT INTO `wp_gf_form_view` VALUES("2265", "3", "2014-09-22 18:00:00", "66.249.79.92", "6804");
INSERT INTO `wp_gf_form_view` VALUES("2266", "6", "2014-09-22 18:06:28", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2267", "1", "2014-09-22 18:27:01", "70.67.66.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("2268", "3", "2014-09-22 19:00:00", "66.249.79.92", "6845");
INSERT INTO `wp_gf_form_view` VALUES("2269", "6", "2014-09-22 19:05:40", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("2270", "3", "2014-09-22 20:00:00", "66.249.79.84", "7005");
INSERT INTO `wp_gf_form_view` VALUES("2271", "6", "2014-09-22 20:40:57", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2272", "3", "2014-09-22 21:00:05", "66.249.79.92", "5474");
INSERT INTO `wp_gf_form_view` VALUES("2273", "6", "2014-09-22 21:00:17", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2274", "1", "2014-09-22 21:23:58", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2275", "3", "2014-09-22 22:00:05", "66.249.79.76", "6908");
INSERT INTO `wp_gf_form_view` VALUES("2276", "6", "2014-09-22 22:04:39", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2277", "1", "2014-09-22 22:29:29", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2278", "3", "2014-09-22 23:00:00", "66.249.79.76", "6372");
INSERT INTO `wp_gf_form_view` VALUES("2279", "6", "2014-09-22 23:55:35", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2280", "3", "2014-09-23 00:00:00", "66.249.79.92", "6241");
INSERT INTO `wp_gf_form_view` VALUES("2281", "6", "2014-09-23 00:12:06", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2282", "1", "2014-09-23 00:43:54", "212.83.173.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("2283", "3", "2014-09-23 01:00:00", "66.249.79.76", "6583");
INSERT INTO `wp_gf_form_view` VALUES("2284", "6", "2014-09-23 01:54:49", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2285", "3", "2014-09-23 02:00:00", "66.249.79.76", "6711");
INSERT INTO `wp_gf_form_view` VALUES("2286", "6", "2014-09-23 02:38:09", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2287", "3", "2014-09-23 03:00:02", "66.249.79.76", "6580");
INSERT INTO `wp_gf_form_view` VALUES("2288", "1", "2014-09-23 03:01:39", "212.129.42.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("2289", "6", "2014-09-23 03:04:15", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2290", "3", "2014-09-23 04:00:00", "66.249.79.84", "5732");
INSERT INTO `wp_gf_form_view` VALUES("2291", "3", "2014-09-23 05:00:00", "66.249.79.76", "7417");
INSERT INTO `wp_gf_form_view` VALUES("2292", "6", "2014-09-23 05:27:42", "149.210.145.34", "5");
INSERT INTO `wp_gf_form_view` VALUES("2293", "1", "2014-09-23 05:28:39", "149.210.145.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("2294", "2", "2014-09-23 05:28:55", "149.210.145.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("2295", "3", "2014-09-23 06:00:00", "66.249.79.92", "6912");
INSERT INTO `wp_gf_form_view` VALUES("2296", "6", "2014-09-23 06:07:49", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("2297", "3", "2014-09-23 07:00:01", "66.249.79.76", "6782");
INSERT INTO `wp_gf_form_view` VALUES("2298", "6", "2014-09-23 07:09:33", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("2299", "3", "2014-09-23 08:00:26", "66.249.79.76", "6588");
INSERT INTO `wp_gf_form_view` VALUES("2300", "3", "2014-09-23 09:00:00", "66.249.79.84", "7480");
INSERT INTO `wp_gf_form_view` VALUES("2301", "1", "2014-09-23 09:07:56", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2302", "6", "2014-09-23 09:52:41", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2303", "3", "2014-09-23 10:00:00", "66.249.79.92", "7025");
INSERT INTO `wp_gf_form_view` VALUES("2304", "6", "2014-09-23 10:25:00", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2305", "3", "2014-09-23 11:00:00", "66.249.79.92", "7115");
INSERT INTO `wp_gf_form_view` VALUES("2306", "6", "2014-09-23 11:04:16", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("2307", "3", "2014-09-23 12:00:00", "66.249.79.84", "7044");
INSERT INTO `wp_gf_form_view` VALUES("2308", "3", "2014-09-23 13:00:19", "66.249.79.84", "6897");
INSERT INTO `wp_gf_form_view` VALUES("2309", "3", "2014-09-23 14:00:00", "66.249.79.92", "6757");
INSERT INTO `wp_gf_form_view` VALUES("2310", "6", "2014-09-23 14:05:53", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2311", "1", "2014-09-23 14:32:38", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2312", "3", "2014-09-23 15:00:00", "66.249.79.92", "6806");
INSERT INTO `wp_gf_form_view` VALUES("2313", "6", "2014-09-23 15:34:02", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2314", "3", "2014-09-23 16:00:02", "66.249.79.76", "6398");
INSERT INTO `wp_gf_form_view` VALUES("2315", "6", "2014-09-23 16:18:33", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2316", "3", "2014-09-23 17:00:00", "66.249.79.76", "7023");
INSERT INTO `wp_gf_form_view` VALUES("2317", "1", "2014-09-23 17:21:24", "212.83.173.82", "3");
INSERT INTO `wp_gf_form_view` VALUES("2318", "6", "2014-09-23 17:22:11", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2319", "3", "2014-09-23 18:00:00", "66.249.79.92", "6817");
INSERT INTO `wp_gf_form_view` VALUES("2320", "1", "2014-09-23 18:05:06", "96.50.43.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("2321", "6", "2014-09-23 18:21:16", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2322", "3", "2014-09-23 19:00:10", "100.43.85.24", "6336");
INSERT INTO `wp_gf_form_view` VALUES("2323", "6", "2014-09-23 19:34:31", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2324", "1", "2014-09-23 19:42:16", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2325", "3", "2014-09-23 20:00:20", "66.249.79.92", "5348");
INSERT INTO `wp_gf_form_view` VALUES("2326", "6", "2014-09-23 20:25:04", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2327", "3", "2014-09-23 21:00:00", "66.249.79.92", "6540");
INSERT INTO `wp_gf_form_view` VALUES("2328", "6", "2014-09-23 21:48:12", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2329", "3", "2014-09-23 22:00:03", "66.249.79.84", "6628");
INSERT INTO `wp_gf_form_view` VALUES("2330", "6", "2014-09-23 22:49:44", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2331", "3", "2014-09-23 23:00:00", "66.249.79.92", "6450");
INSERT INTO `wp_gf_form_view` VALUES("2332", "6", "2014-09-23 23:02:39", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2333", "3", "2014-09-24 00:00:03", "66.249.79.76", "7310");
INSERT INTO `wp_gf_form_view` VALUES("2334", "6", "2014-09-24 00:17:14", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2335", "3", "2014-09-24 01:00:00", "66.249.79.92", "6781");
INSERT INTO `wp_gf_form_view` VALUES("2336", "6", "2014-09-24 01:02:35", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2337", "3", "2014-09-24 02:00:00", "66.249.79.92", "6932");
INSERT INTO `wp_gf_form_view` VALUES("2338", "3", "2014-09-24 03:00:00", "66.249.79.92", "6954");
INSERT INTO `wp_gf_form_view` VALUES("2339", "6", "2014-09-24 03:11:43", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("2340", "3", "2014-09-24 04:00:00", "66.249.79.92", "6690");
INSERT INTO `wp_gf_form_view` VALUES("2341", "1", "2014-09-24 04:36:07", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2342", "3", "2014-09-24 05:00:00", "66.249.79.92", "6888");
INSERT INTO `wp_gf_form_view` VALUES("2343", "3", "2014-09-24 06:00:00", "66.249.79.92", "7098");
INSERT INTO `wp_gf_form_view` VALUES("2344", "6", "2014-09-24 06:47:53", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2345", "3", "2014-09-24 07:00:01", "66.249.79.84", "7060");
INSERT INTO `wp_gf_form_view` VALUES("2346", "1", "2014-09-24 07:09:30", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2347", "6", "2014-09-24 07:43:42", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2348", "3", "2014-09-24 08:00:02", "66.249.79.92", "6789");
INSERT INTO `wp_gf_form_view` VALUES("2349", "6", "2014-09-24 08:06:15", "207.46.13.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("2350", "1", "2014-09-24 08:37:15", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2351", "3", "2014-09-24 09:00:00", "66.249.79.84", "6977");
INSERT INTO `wp_gf_form_view` VALUES("2352", "6", "2014-09-24 09:29:38", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2353", "3", "2014-09-24 10:00:00", "66.249.79.76", "7223");
INSERT INTO `wp_gf_form_view` VALUES("2354", "6", "2014-09-24 10:03:08", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2355", "3", "2014-09-24 11:00:00", "66.249.79.76", "6724");
INSERT INTO `wp_gf_form_view` VALUES("2356", "6", "2014-09-24 11:21:56", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2357", "3", "2014-09-24 12:00:00", "66.249.79.84", "6688");
INSERT INTO `wp_gf_form_view` VALUES("2358", "3", "2014-09-24 13:00:55", "66.249.79.84", "6084");
INSERT INTO `wp_gf_form_view` VALUES("2359", "6", "2014-09-24 13:18:28", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2360", "3", "2014-09-24 14:00:01", "66.249.79.76", "6612");
INSERT INTO `wp_gf_form_view` VALUES("2361", "6", "2014-09-24 14:29:21", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2362", "3", "2014-09-24 15:00:01", "66.249.79.84", "6875");
INSERT INTO `wp_gf_form_view` VALUES("2363", "6", "2014-09-24 15:03:51", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("2364", "3", "2014-09-24 16:00:00", "66.249.79.76", "5614");
INSERT INTO `wp_gf_form_view` VALUES("2365", "6", "2014-09-24 16:12:46", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2366", "3", "2014-09-24 17:00:05", "66.249.79.92", "5654");
INSERT INTO `wp_gf_form_view` VALUES("2367", "3", "2014-09-24 18:00:00", "66.249.79.76", "6806");
INSERT INTO `wp_gf_form_view` VALUES("2368", "6", "2014-09-24 18:46:18", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2369", "1", "2014-09-24 18:46:33", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2370", "3", "2014-09-24 19:00:00", "66.249.79.84", "7016");
INSERT INTO `wp_gf_form_view` VALUES("2371", "6", "2014-09-24 19:22:52", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2372", "3", "2014-09-24 20:00:01", "66.249.79.84", "6459");
INSERT INTO `wp_gf_form_view` VALUES("2373", "6", "2014-09-24 20:16:43", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2374", "1", "2014-09-24 20:23:08", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2375", "3", "2014-09-24 21:00:00", "66.249.79.92", "6011");
INSERT INTO `wp_gf_form_view` VALUES("2376", "3", "2014-09-24 22:00:09", "66.249.79.92", "5906");
INSERT INTO `wp_gf_form_view` VALUES("2377", "3", "2014-09-24 23:00:00", "66.249.79.84", "6642");
INSERT INTO `wp_gf_form_view` VALUES("2378", "6", "2014-09-24 23:11:37", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2379", "3", "2014-09-25 00:00:07", "66.249.79.92", "6836");
INSERT INTO `wp_gf_form_view` VALUES("2380", "1", "2014-09-25 00:15:39", "212.83.173.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("2381", "3", "2014-09-25 01:00:01", "66.249.79.92", "6641");
INSERT INTO `wp_gf_form_view` VALUES("2382", "6", "2014-09-25 01:14:16", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2383", "2", "2014-09-25 01:39:38", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2384", "1", "2014-09-25 01:39:42", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2385", "3", "2014-09-25 02:00:00", "66.249.79.76", "7282");
INSERT INTO `wp_gf_form_view` VALUES("2386", "6", "2014-09-25 02:09:51", "66.249.79.84", "9");
INSERT INTO `wp_gf_form_view` VALUES("2387", "3", "2014-09-25 03:00:03", "66.249.79.84", "6702");
INSERT INTO `wp_gf_form_view` VALUES("2388", "6", "2014-09-25 03:10:59", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("2389", "3", "2014-09-25 04:00:00", "66.249.79.76", "6529");
INSERT INTO `wp_gf_form_view` VALUES("2390", "6", "2014-09-25 04:06:19", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2391", "3", "2014-09-25 05:00:00", "66.249.79.76", "7406");
INSERT INTO `wp_gf_form_view` VALUES("2392", "6", "2014-09-25 05:44:26", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2393", "3", "2014-09-25 06:00:00", "66.249.79.76", "7065");
INSERT INTO `wp_gf_form_view` VALUES("2394", "1", "2014-09-25 06:10:33", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2395", "6", "2014-09-25 06:16:05", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2396", "3", "2014-09-25 07:00:00", "66.249.79.84", "8761");
INSERT INTO `wp_gf_form_view` VALUES("2397", "6", "2014-09-25 07:15:10", "66.249.79.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("2398", "3", "2014-09-25 08:00:00", "66.249.79.84", "8825");
INSERT INTO `wp_gf_form_view` VALUES("2399", "6", "2014-09-25 08:03:44", "66.249.79.76", "7");
INSERT INTO `wp_gf_form_view` VALUES("2400", "1", "2014-09-25 08:35:11", "220.181.108.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("2401", "3", "2014-09-25 09:00:00", "66.249.79.92", "8827");
INSERT INTO `wp_gf_form_view` VALUES("2402", "3", "2014-09-25 10:00:00", "66.249.79.76", "9023");
INSERT INTO `wp_gf_form_view` VALUES("2403", "6", "2014-09-25 10:37:58", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2404", "3", "2014-09-25 11:00:00", "66.249.79.76", "8829");
INSERT INTO `wp_gf_form_view` VALUES("2405", "3", "2014-09-25 12:00:00", "66.249.79.92", "8707");
INSERT INTO `wp_gf_form_view` VALUES("2406", "3", "2014-09-25 13:00:01", "66.249.79.84", "8586");
INSERT INTO `wp_gf_form_view` VALUES("2407", "6", "2014-09-25 13:26:26", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2408", "3", "2014-09-25 14:00:00", "66.249.79.92", "3136");
INSERT INTO `wp_gf_form_view` VALUES("2409", "6", "2014-09-25 14:14:07", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2410", "3", "2014-09-25 15:00:00", "66.249.79.76", "6531");
INSERT INTO `wp_gf_form_view` VALUES("2411", "1", "2014-09-25 15:39:57", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("2412", "6", "2014-09-25 15:47:08", "66.249.79.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("2413", "3", "2014-09-25 16:00:00", "66.249.79.92", "6550");
INSERT INTO `wp_gf_form_view` VALUES("2414", "1", "2014-09-25 16:55:45", "202.46.49.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("2415", "3", "2014-09-25 17:00:00", "66.249.79.76", "5900");
INSERT INTO `wp_gf_form_view` VALUES("2416", "6", "2014-09-25 17:12:25", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2417", "3", "2014-09-25 18:00:01", "66.249.79.92", "6209");
INSERT INTO `wp_gf_form_view` VALUES("2418", "2", "2014-09-25 18:16:32", "23.20.109.166", "2");
INSERT INTO `wp_gf_form_view` VALUES("2419", "1", "2014-09-25 18:16:36", "23.20.109.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("2420", "6", "2014-09-25 18:19:39", "23.20.109.166", "9");
INSERT INTO `wp_gf_form_view` VALUES("2421", "3", "2014-09-25 19:00:00", "66.249.79.76", "5860");
INSERT INTO `wp_gf_form_view` VALUES("2422", "6", "2014-09-25 19:08:37", "66.249.79.92", "7");
INSERT INTO `wp_gf_form_view` VALUES("2423", "2", "2014-09-25 19:44:33", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2424", "3", "2014-09-25 20:00:00", "66.249.79.76", "6054");
INSERT INTO `wp_gf_form_view` VALUES("2425", "6", "2014-09-25 20:14:36", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2426", "1", "2014-09-25 20:36:37", "24.68.131.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("2427", "3", "2014-09-25 21:00:00", "66.249.79.92", "5666");
INSERT INTO `wp_gf_form_view` VALUES("2428", "6", "2014-09-25 21:25:46", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2429", "1", "2014-09-25 21:26:11", "54.224.108.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("2430", "2", "2014-09-25 21:26:49", "54.224.108.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("2431", "3", "2014-09-25 22:00:01", "66.249.79.76", "6042");
INSERT INTO `wp_gf_form_view` VALUES("2432", "6", "2014-09-25 22:21:30", "204.12.221.251", "4");
INSERT INTO `wp_gf_form_view` VALUES("2433", "3", "2014-09-25 23:00:00", "66.249.79.84", "5740");
INSERT INTO `wp_gf_form_view` VALUES("2434", "6", "2014-09-25 23:27:12", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2435", "2", "2014-09-25 23:33:37", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2436", "3", "2014-09-26 00:00:06", "66.249.79.76", "5789");
INSERT INTO `wp_gf_form_view` VALUES("2437", "1", "2014-09-26 00:20:44", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2438", "6", "2014-09-26 00:26:46", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2439", "3", "2014-09-26 01:00:00", "66.249.79.92", "5883");
INSERT INTO `wp_gf_form_view` VALUES("2440", "6", "2014-09-26 01:22:07", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2441", "3", "2014-09-26 02:00:04", "66.249.79.76", "6207");
INSERT INTO `wp_gf_form_view` VALUES("2442", "6", "2014-09-26 02:02:17", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2443", "3", "2014-09-26 03:00:00", "66.249.79.84", "6365");
INSERT INTO `wp_gf_form_view` VALUES("2444", "6", "2014-09-26 03:05:56", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2445", "3", "2014-09-26 04:00:00", "66.249.79.92", "5921");
INSERT INTO `wp_gf_form_view` VALUES("2446", "1", "2014-09-26 04:51:08", "37.58.100.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("2447", "3", "2014-09-26 05:00:00", "66.249.79.76", "6764");
INSERT INTO `wp_gf_form_view` VALUES("2448", "3", "2014-09-26 06:00:00", "66.249.79.92", "6482");
INSERT INTO `wp_gf_form_view` VALUES("2449", "6", "2014-09-26 06:32:55", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("2450", "3", "2014-09-26 07:00:00", "66.249.79.84", "8996");
INSERT INTO `wp_gf_form_view` VALUES("2451", "6", "2014-09-26 07:10:47", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2452", "3", "2014-09-26 08:00:00", "66.249.79.92", "8922");
INSERT INTO `wp_gf_form_view` VALUES("2453", "6", "2014-09-26 08:19:29", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("2454", "1", "2014-09-26 08:20:40", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2455", "3", "2014-09-26 09:00:00", "66.249.79.84", "9106");
INSERT INTO `wp_gf_form_view` VALUES("2456", "6", "2014-09-26 09:24:49", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2457", "1", "2014-09-26 09:28:04", "107.150.46.59", "3");
INSERT INTO `wp_gf_form_view` VALUES("2458", "2", "2014-09-26 09:30:51", "192.81.212.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("2459", "3", "2014-09-26 10:00:00", "66.249.79.84", "8735");
INSERT INTO `wp_gf_form_view` VALUES("2460", "6", "2014-09-26 10:15:50", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2461", "1", "2014-09-26 10:50:26", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2462", "3", "2014-09-26 11:00:00", "66.249.79.84", "8409");
INSERT INTO `wp_gf_form_view` VALUES("2463", "6", "2014-09-26 11:27:28", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2464", "3", "2014-09-26 12:00:00", "66.249.79.84", "8659");
INSERT INTO `wp_gf_form_view` VALUES("2465", "6", "2014-09-26 12:58:15", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2466", "3", "2014-09-26 13:00:12", "66.249.79.92", "8960");
INSERT INTO `wp_gf_form_view` VALUES("2467", "3", "2014-09-26 14:00:04", "66.249.79.76", "4220");
INSERT INTO `wp_gf_form_view` VALUES("2468", "6", "2014-09-26 14:47:03", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2469", "3", "2014-09-26 15:00:00", "66.249.79.76", "6690");
INSERT INTO `wp_gf_form_view` VALUES("2470", "6", "2014-09-26 15:37:51", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2471", "3", "2014-09-26 16:00:00", "68.180.225.45", "6440");
INSERT INTO `wp_gf_form_view` VALUES("2472", "6", "2014-09-26 16:54:10", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2473", "3", "2014-09-26 17:00:00", "66.249.79.84", "6437");
INSERT INTO `wp_gf_form_view` VALUES("2474", "6", "2014-09-26 17:08:35", "68.180.225.45", "10");
INSERT INTO `wp_gf_form_view` VALUES("2475", "3", "2014-09-26 18:00:00", "66.249.79.92", "6287");
INSERT INTO `wp_gf_form_view` VALUES("2476", "6", "2014-09-26 19:00:07", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2477", "3", "2014-09-26 19:00:08", "66.249.79.84", "5782");
INSERT INTO `wp_gf_form_view` VALUES("2478", "3", "2014-09-26 20:00:00", "66.249.79.92", "6062");
INSERT INTO `wp_gf_form_view` VALUES("2479", "6", "2014-09-26 20:29:34", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2480", "3", "2014-09-26 21:00:00", "66.249.79.76", "6182");
INSERT INTO `wp_gf_form_view` VALUES("2481", "6", "2014-09-26 21:06:39", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2482", "3", "2014-09-26 22:00:06", "66.249.79.84", "6184");
INSERT INTO `wp_gf_form_view` VALUES("2483", "1", "2014-09-26 22:05:13", "124.237.194.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("2484", "3", "2014-09-26 23:00:00", "66.249.79.76", "6882");
INSERT INTO `wp_gf_form_view` VALUES("2485", "3", "2014-09-27 00:00:00", "66.249.79.76", "6721");
INSERT INTO `wp_gf_form_view` VALUES("2486", "6", "2014-09-27 00:24:12", "66.249.79.76", "9");
INSERT INTO `wp_gf_form_view` VALUES("2487", "2", "2014-09-27 00:32:39", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2488", "1", "2014-09-27 00:32:44", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2489", "3", "2014-09-27 01:00:01", "66.249.79.84", "6589");
INSERT INTO `wp_gf_form_view` VALUES("2490", "6", "2014-09-27 01:23:59", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("2491", "3", "2014-09-27 02:00:00", "66.249.79.84", "6741");
INSERT INTO `wp_gf_form_view` VALUES("2492", "2", "2014-09-27 02:42:02", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("2493", "3", "2014-09-27 03:00:00", "66.249.79.84", "5343");
INSERT INTO `wp_gf_form_view` VALUES("2494", "3", "2014-09-27 04:00:00", "66.249.79.76", "6498");
INSERT INTO `wp_gf_form_view` VALUES("2495", "6", "2014-09-27 04:37:13", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2496", "3", "2014-09-27 05:00:17", "66.249.79.76", "6511");
INSERT INTO `wp_gf_form_view` VALUES("2497", "6", "2014-09-27 05:47:12", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2498", "3", "2014-09-27 06:00:00", "66.249.79.92", "6381");
INSERT INTO `wp_gf_form_view` VALUES("2499", "6", "2014-09-27 06:33:39", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2500", "1", "2014-09-27 06:49:15", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2501", "3", "2014-09-27 07:00:00", "66.249.79.84", "8891");
INSERT INTO `wp_gf_form_view` VALUES("2502", "6", "2014-09-27 07:51:02", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2503", "3", "2014-09-27 08:00:00", "66.249.79.92", "9226");
INSERT INTO `wp_gf_form_view` VALUES("2504", "6", "2014-09-27 08:09:42", "66.249.79.84", "11");
INSERT INTO `wp_gf_form_view` VALUES("2505", "1", "2014-09-27 08:56:14", "54.200.127.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("2506", "2", "2014-09-27 08:56:29", "54.200.127.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("2507", "3", "2014-09-27 09:00:00", "66.249.79.76", "9249");
INSERT INTO `wp_gf_form_view` VALUES("2508", "6", "2014-09-27 09:03:12", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2509", "3", "2014-09-27 10:00:03", "66.249.79.92", "9135");
INSERT INTO `wp_gf_form_view` VALUES("2510", "6", "2014-09-27 10:36:47", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("2511", "3", "2014-09-27 11:00:00", "66.249.79.92", "8800");
INSERT INTO `wp_gf_form_view` VALUES("2512", "6", "2014-09-27 11:10:50", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("2513", "3", "2014-09-27 12:00:00", "66.249.79.84", "8993");
INSERT INTO `wp_gf_form_view` VALUES("2514", "6", "2014-09-27 12:06:36", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2515", "2", "2014-09-27 12:24:35", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2516", "1", "2014-09-27 12:50:30", "192.99.141.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("2517", "3", "2014-09-27 13:00:00", "66.249.79.84", "8754");
INSERT INTO `wp_gf_form_view` VALUES("2518", "6", "2014-09-27 13:41:57", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2519", "3", "2014-09-27 14:00:35", "66.249.79.84", "4876");
INSERT INTO `wp_gf_form_view` VALUES("2520", "6", "2014-09-27 14:23:14", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("2521", "3", "2014-09-27 15:00:01", "66.249.79.92", "6808");
INSERT INTO `wp_gf_form_view` VALUES("2522", "6", "2014-09-27 15:06:19", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2523", "3", "2014-09-27 16:00:05", "66.249.79.76", "7040");
INSERT INTO `wp_gf_form_view` VALUES("2524", "3", "2014-09-27 17:00:04", "66.249.79.76", "6919");
INSERT INTO `wp_gf_form_view` VALUES("2525", "6", "2014-09-27 17:13:09", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2526", "3", "2014-09-27 18:00:00", "66.249.79.84", "7161");
INSERT INTO `wp_gf_form_view` VALUES("2527", "6", "2014-09-27 18:03:54", "66.249.79.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("2528", "1", "2014-09-27 18:39:11", "220.181.108.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("2529", "2", "2014-09-27 18:57:52", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2530", "3", "2014-09-27 19:00:01", "66.249.79.84", "6642");
INSERT INTO `wp_gf_form_view` VALUES("2531", "6", "2014-09-27 19:22:13", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("2532", "3", "2014-09-27 20:00:02", "66.249.79.76", "6000");
INSERT INTO `wp_gf_form_view` VALUES("2533", "3", "2014-09-27 21:00:02", "66.249.79.76", "6380");
INSERT INTO `wp_gf_form_view` VALUES("2534", "6", "2014-09-27 21:11:22", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2535", "3", "2014-09-27 22:00:03", "66.249.79.92", "6846");
INSERT INTO `wp_gf_form_view` VALUES("2536", "2", "2014-09-27 22:30:08", "107.150.46.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("2537", "6", "2014-09-27 22:48:59", "192.99.149.88", "4");
INSERT INTO `wp_gf_form_view` VALUES("2538", "3", "2014-09-27 23:00:00", "66.249.79.92", "7165");
INSERT INTO `wp_gf_form_view` VALUES("2539", "6", "2014-09-27 23:04:02", "192.3.24.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("2540", "1", "2014-09-27 23:04:36", "192.3.24.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("2541", "2", "2014-09-27 23:04:49", "192.3.24.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("2542", "3", "2014-09-28 00:00:00", "66.249.79.92", "6981");
INSERT INTO `wp_gf_form_view` VALUES("2543", "6", "2014-09-28 00:35:10", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2544", "3", "2014-09-28 01:00:00", "66.249.79.76", "6954");
INSERT INTO `wp_gf_form_view` VALUES("2545", "6", "2014-09-28 01:14:02", "66.249.79.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("2546", "3", "2014-09-28 02:00:00", "66.249.79.92", "6685");
INSERT INTO `wp_gf_form_view` VALUES("2547", "6", "2014-09-28 02:14:38", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2548", "3", "2014-09-28 03:00:52", "100.43.85.24", "7759");
INSERT INTO `wp_gf_form_view` VALUES("2549", "6", "2014-09-28 03:03:38", "66.249.79.84", "19");
INSERT INTO `wp_gf_form_view` VALUES("2550", "2", "2014-09-28 03:48:13", "157.55.39.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("2551", "1", "2014-09-28 03:48:17", "157.55.39.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("2552", "3", "2014-09-28 04:00:00", "66.249.79.76", "6827");
INSERT INTO `wp_gf_form_view` VALUES("2553", "6", "2014-09-28 04:21:39", "37.58.100.152", "8");
INSERT INTO `wp_gf_form_view` VALUES("2554", "2", "2014-09-28 04:35:45", "62.210.78.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("2555", "1", "2014-09-28 04:35:52", "62.210.78.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("2556", "3", "2014-09-28 05:00:00", "66.249.79.92", "7157");
INSERT INTO `wp_gf_form_view` VALUES("2557", "6", "2014-09-28 05:21:51", "37.58.100.166", "7");
INSERT INTO `wp_gf_form_view` VALUES("2558", "1", "2014-09-28 05:47:01", "93.37.130.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("2559", "2", "2014-09-28 05:47:27", "93.37.130.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("2560", "3", "2014-09-28 06:00:00", "66.249.79.76", "6941");
INSERT INTO `wp_gf_form_view` VALUES("2561", "6", "2014-09-28 06:16:45", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2562", "3", "2014-09-28 07:00:00", "66.249.79.84", "9541");
INSERT INTO `wp_gf_form_view` VALUES("2563", "6", "2014-09-28 07:06:24", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("2564", "1", "2014-09-28 07:40:12", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2565", "3", "2014-09-28 08:00:00", "66.249.79.92", "9131");
INSERT INTO `wp_gf_form_view` VALUES("2566", "6", "2014-09-28 08:02:43", "204.12.221.251", "8");
INSERT INTO `wp_gf_form_view` VALUES("2567", "3", "2014-09-28 09:00:03", "66.249.79.84", "9225");
INSERT INTO `wp_gf_form_view` VALUES("2568", "6", "2014-09-28 09:07:56", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("2569", "3", "2014-09-28 10:00:00", "66.249.79.84", "9234");
INSERT INTO `wp_gf_form_view` VALUES("2570", "1", "2014-09-28 10:22:06", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("2571", "6", "2014-09-28 10:59:28", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2572", "3", "2014-09-28 11:00:00", "66.249.79.84", "8972");
INSERT INTO `wp_gf_form_view` VALUES("2573", "6", "2014-09-28 11:02:44", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2574", "3", "2014-09-28 12:00:00", "66.249.79.92", "7826");
INSERT INTO `wp_gf_form_view` VALUES("2575", "6", "2014-09-28 12:14:18", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2576", "3", "2014-09-28 13:00:00", "66.249.79.76", "4929");
INSERT INTO `wp_gf_form_view` VALUES("2577", "6", "2014-09-28 13:37:55", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2578", "3", "2014-09-28 14:00:00", "66.249.79.76", "6541");
INSERT INTO `wp_gf_form_view` VALUES("2579", "3", "2014-09-28 15:00:00", "66.249.79.92", "6631");
INSERT INTO `wp_gf_form_view` VALUES("2580", "6", "2014-09-28 15:02:05", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2581", "2", "2014-09-28 15:56:37", "109.226.115.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("2582", "3", "2014-09-28 16:00:02", "66.249.79.76", "6490");
INSERT INTO `wp_gf_form_view` VALUES("2583", "6", "2014-09-28 16:09:19", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("2584", "3", "2014-09-28 17:00:00", "66.249.79.92", "6541");
INSERT INTO `wp_gf_form_view` VALUES("2585", "6", "2014-09-28 17:05:06", "195.1.61.193", "3");
INSERT INTO `wp_gf_form_view` VALUES("2586", "1", "2014-09-28 17:05:46", "195.1.61.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("2587", "2", "2014-09-28 17:05:59", "195.1.61.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("2588", "3", "2014-09-28 18:00:00", "66.249.79.92", "7187");
INSERT INTO `wp_gf_form_view` VALUES("2589", "6", "2014-09-28 18:49:14", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2590", "3", "2014-09-28 19:00:00", "66.249.79.84", "7108");
INSERT INTO `wp_gf_form_view` VALUES("2591", "6", "2014-09-28 19:34:33", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2592", "3", "2014-09-28 20:00:00", "66.249.79.92", "6813");
INSERT INTO `wp_gf_form_view` VALUES("2593", "6", "2014-09-28 20:37:13", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2594", "3", "2014-09-28 21:00:04", "66.249.79.92", "7291");
INSERT INTO `wp_gf_form_view` VALUES("2595", "1", "2014-09-28 21:02:19", "204.12.221.251", "3");
INSERT INTO `wp_gf_form_view` VALUES("2596", "6", "2014-09-28 21:19:45", "66.249.79.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("2597", "2", "2014-09-28 21:42:26", "81.202.11.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("2598", "3", "2014-09-28 22:00:00", "66.249.79.76", "7078");
INSERT INTO `wp_gf_form_view` VALUES("2599", "6", "2014-09-28 22:15:19", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2600", "3", "2014-09-28 23:00:05", "66.249.79.92", "6606");
INSERT INTO `wp_gf_form_view` VALUES("2601", "6", "2014-09-28 23:11:52", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("2602", "3", "2014-09-29 00:00:00", "66.249.79.92", "6914");
INSERT INTO `wp_gf_form_view` VALUES("2603", "3", "2014-09-29 01:00:00", "66.249.79.92", "7172");
INSERT INTO `wp_gf_form_view` VALUES("2604", "6", "2014-09-29 01:42:52", "68.180.225.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("2605", "3", "2014-09-29 02:00:00", "66.249.79.92", "7055");
INSERT INTO `wp_gf_form_view` VALUES("2606", "6", "2014-09-29 02:45:51", "204.12.221.251", "8");
INSERT INTO `wp_gf_form_view` VALUES("2607", "1", "2014-09-29 02:46:55", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2608", "3", "2014-09-29 03:00:00", "66.249.79.92", "7189");
INSERT INTO `wp_gf_form_view` VALUES("2609", "6", "2014-09-29 03:15:13", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("2610", "3", "2014-09-29 04:00:00", "66.249.79.76", "7272");
INSERT INTO `wp_gf_form_view` VALUES("2611", "6", "2014-09-29 04:00:57", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2612", "2", "2014-09-29 04:46:05", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2613", "1", "2014-09-29 04:46:09", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2614", "3", "2014-09-29 05:00:00", "66.249.79.76", "7306");
INSERT INTO `wp_gf_form_view` VALUES("2615", "6", "2014-09-29 05:14:06", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2616", "3", "2014-09-29 06:00:11", "66.249.79.84", "7046");
INSERT INTO `wp_gf_form_view` VALUES("2617", "6", "2014-09-29 06:34:32", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2618", "3", "2014-09-29 07:00:00", "66.249.79.92", "9204");
INSERT INTO `wp_gf_form_view` VALUES("2619", "6", "2014-09-29 07:00:51", "66.249.79.92", "20");
INSERT INTO `wp_gf_form_view` VALUES("2620", "3", "2014-09-29 08:00:00", "66.249.79.76", "9042");
INSERT INTO `wp_gf_form_view` VALUES("2621", "6", "2014-09-29 08:06:24", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("2622", "3", "2014-09-29 09:00:00", "66.249.79.84", "8791");
INSERT INTO `wp_gf_form_view` VALUES("2623", "6", "2014-09-29 09:20:11", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2624", "2", "2014-09-29 09:20:21", "220.181.108.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("2625", "3", "2014-09-29 10:00:00", "66.249.79.84", "9217");
INSERT INTO `wp_gf_form_view` VALUES("2626", "6", "2014-09-29 10:03:14", "66.249.79.76", "13");
INSERT INTO `wp_gf_form_view` VALUES("2627", "3", "2014-09-29 11:00:00", "66.249.79.84", "9036");
INSERT INTO `wp_gf_form_view` VALUES("2628", "6", "2014-09-29 11:30:07", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2629", "3", "2014-09-29 12:00:00", "66.249.79.84", "9588");
INSERT INTO `wp_gf_form_view` VALUES("2630", "6", "2014-09-29 12:00:00", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("2631", "2", "2014-09-29 12:20:07", "5.149.253.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("2632", "3", "2014-09-29 13:00:00", "100.43.85.24", "7685");
INSERT INTO `wp_gf_form_view` VALUES("2633", "6", "2014-09-29 13:03:23", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("2634", "3", "2014-09-29 14:00:06", "66.249.79.92", "7118");
INSERT INTO `wp_gf_form_view` VALUES("2635", "6", "2014-09-29 14:11:39", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("2636", "3", "2014-09-29 15:00:00", "66.249.79.92", "6486");
INSERT INTO `wp_gf_form_view` VALUES("2637", "6", "2014-09-29 15:12:18", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2638", "3", "2014-09-29 16:00:00", "66.249.79.84", "6795");
INSERT INTO `wp_gf_form_view` VALUES("2639", "6", "2014-09-29 16:17:35", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("2640", "3", "2014-09-29 17:00:00", "66.249.79.84", "6539");
INSERT INTO `wp_gf_form_view` VALUES("2641", "3", "2014-09-29 18:00:00", "66.249.79.84", "6534");
INSERT INTO `wp_gf_form_view` VALUES("2642", "6", "2014-09-29 18:14:29", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2643", "2", "2014-09-29 18:47:31", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2644", "3", "2014-09-29 19:00:00", "66.249.79.84", "6488");
INSERT INTO `wp_gf_form_view` VALUES("2645", "6", "2014-09-29 19:53:25", "217.69.133.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("2646", "3", "2014-09-29 20:00:00", "66.249.79.92", "4582");
INSERT INTO `wp_gf_form_view` VALUES("2647", "3", "2014-09-29 21:00:03", "66.249.79.84", "6868");
INSERT INTO `wp_gf_form_view` VALUES("2648", "1", "2014-09-29 21:04:11", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2649", "6", "2014-09-29 21:25:57", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2650", "3", "2014-09-29 22:00:01", "66.249.79.76", "6684");
INSERT INTO `wp_gf_form_view` VALUES("2651", "6", "2014-09-29 22:53:58", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2652", "3", "2014-09-29 23:00:06", "66.249.79.92", "7019");
INSERT INTO `wp_gf_form_view` VALUES("2653", "1", "2014-09-29 23:27:30", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2654", "3", "2014-09-30 00:00:00", "66.249.79.76", "6814");
INSERT INTO `wp_gf_form_view` VALUES("2655", "6", "2014-09-30 00:32:13", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2656", "3", "2014-09-30 01:00:00", "66.249.79.76", "7126");
INSERT INTO `wp_gf_form_view` VALUES("2657", "6", "2014-09-30 01:01:54", "198.199.66.80", "4");
INSERT INTO `wp_gf_form_view` VALUES("2658", "1", "2014-09-30 01:01:54", "198.199.66.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("2659", "2", "2014-09-30 01:01:54", "198.199.66.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("2660", "3", "2014-09-30 02:00:00", "66.249.79.92", "6035");
INSERT INTO `wp_gf_form_view` VALUES("2661", "6", "2014-09-30 02:20:41", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("2662", "3", "2014-09-30 03:00:28", "66.249.79.92", "6944");
INSERT INTO `wp_gf_form_view` VALUES("2663", "6", "2014-09-30 03:46:49", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2664", "3", "2014-09-30 04:00:02", "66.249.79.76", "6992");
INSERT INTO `wp_gf_form_view` VALUES("2665", "3", "2014-09-30 05:00:07", "66.249.79.76", "6920");
INSERT INTO `wp_gf_form_view` VALUES("2666", "6", "2014-09-30 05:19:46", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2667", "3", "2014-09-30 06:00:00", "66.249.79.92", "6905");
INSERT INTO `wp_gf_form_view` VALUES("2668", "6", "2014-09-30 06:55:10", "217.69.133.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("2669", "2", "2014-09-30 06:57:42", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2670", "3", "2014-09-30 07:00:00", "66.249.79.92", "9377");
INSERT INTO `wp_gf_form_view` VALUES("2671", "6", "2014-09-30 07:29:14", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2672", "3", "2014-09-30 08:00:00", "66.249.79.76", "9074");
INSERT INTO `wp_gf_form_view` VALUES("2673", "6", "2014-09-30 08:01:56", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("2674", "3", "2014-09-30 09:00:00", "66.249.79.92", "8916");
INSERT INTO `wp_gf_form_view` VALUES("2675", "6", "2014-09-30 09:00:20", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("2676", "3", "2014-09-30 10:00:00", "66.249.79.76", "8388");
INSERT INTO `wp_gf_form_view` VALUES("2677", "6", "2014-09-30 10:05:57", "217.69.133.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("2678", "3", "2014-09-30 11:00:00", "66.249.79.76", "8214");
INSERT INTO `wp_gf_form_view` VALUES("2679", "6", "2014-09-30 11:50:12", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2680", "3", "2014-09-30 12:00:00", "66.249.79.92", "8806");
INSERT INTO `wp_gf_form_view` VALUES("2681", "6", "2014-09-30 12:16:03", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2682", "3", "2014-09-30 13:01:59", "66.249.79.76", "2756");
INSERT INTO `wp_gf_form_view` VALUES("2683", "2", "2014-09-30 13:04:33", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2684", "1", "2014-09-30 13:04:39", "192.99.149.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("2685", "3", "2014-09-30 14:00:00", "66.249.79.84", "7969");
INSERT INTO `wp_gf_form_view` VALUES("2686", "6", "2014-09-30 14:23:14", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2687", "3", "2014-09-30 15:00:03", "66.249.79.76", "6701");
INSERT INTO `wp_gf_form_view` VALUES("2688", "6", "2014-09-30 15:36:16", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2689", "3", "2014-09-30 16:00:00", "66.249.79.92", "6699");
INSERT INTO `wp_gf_form_view` VALUES("2690", "6", "2014-09-30 16:44:08", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2691", "3", "2014-09-30 17:00:00", "66.249.79.92", "7366");
INSERT INTO `wp_gf_form_view` VALUES("2692", "6", "2014-09-30 17:13:44", "66.249.79.92", "9");
INSERT INTO `wp_gf_form_view` VALUES("2693", "3", "2014-09-30 18:00:00", "66.249.79.92", "7119");
INSERT INTO `wp_gf_form_view` VALUES("2694", "6", "2014-09-30 18:08:41", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2695", "3", "2014-09-30 19:00:01", "66.249.79.76", "6656");
INSERT INTO `wp_gf_form_view` VALUES("2696", "2", "2014-09-30 19:11:15", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2697", "6", "2014-09-30 19:18:06", "66.249.79.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("2698", "3", "2014-09-30 20:00:00", "66.249.79.76", "5983");
INSERT INTO `wp_gf_form_view` VALUES("2699", "3", "2014-09-30 21:00:07", "66.249.79.76", "6039");
INSERT INTO `wp_gf_form_view` VALUES("2700", "6", "2014-09-30 21:35:39", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2701", "3", "2014-09-30 22:00:00", "66.249.79.92", "6754");
INSERT INTO `wp_gf_form_view` VALUES("2702", "3", "2014-09-30 23:00:00", "66.249.79.76", "6784");
INSERT INTO `wp_gf_form_view` VALUES("2703", "1", "2014-09-30 23:53:29", "114.46.33.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("2704", "3", "2014-10-01 00:00:00", "66.249.79.84", "6926");
INSERT INTO `wp_gf_form_view` VALUES("2705", "3", "2014-10-01 01:00:00", "66.249.79.76", "6727");
INSERT INTO `wp_gf_form_view` VALUES("2706", "6", "2014-10-01 01:00:12", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2707", "3", "2014-10-01 02:00:00", "66.249.79.76", "5757");
INSERT INTO `wp_gf_form_view` VALUES("2708", "6", "2014-10-01 02:27:49", "202.46.62.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("2709", "3", "2014-10-01 03:00:00", "66.249.79.92", "7488");
INSERT INTO `wp_gf_form_view` VALUES("2710", "6", "2014-10-01 03:55:34", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2711", "3", "2014-10-01 04:00:01", "66.249.79.84", "6068");
INSERT INTO `wp_gf_form_view` VALUES("2712", "6", "2014-10-01 04:29:02", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2713", "3", "2014-10-01 05:00:00", "66.249.79.92", "7139");
INSERT INTO `wp_gf_form_view` VALUES("2714", "6", "2014-10-01 05:19:53", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2715", "3", "2014-10-01 06:00:00", "66.249.79.76", "6847");
INSERT INTO `wp_gf_form_view` VALUES("2716", "6", "2014-10-01 06:26:39", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2717", "3", "2014-10-01 07:00:00", "66.249.79.76", "10125");
INSERT INTO `wp_gf_form_view` VALUES("2718", "1", "2014-10-01 07:11:49", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2719", "6", "2014-10-01 07:26:56", "100.43.85.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("2720", "3", "2014-10-01 08:00:04", "66.249.79.92", "9358");
INSERT INTO `wp_gf_form_view` VALUES("2721", "6", "2014-10-01 08:12:22", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2722", "1", "2014-10-01 08:50:49", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("2723", "3", "2014-10-01 09:00:00", "66.249.79.92", "9174");
INSERT INTO `wp_gf_form_view` VALUES("2724", "6", "2014-10-01 09:05:57", "66.249.79.84", "9");
INSERT INTO `wp_gf_form_view` VALUES("2725", "3", "2014-10-01 10:00:00", "66.249.79.92", "9443");
INSERT INTO `wp_gf_form_view` VALUES("2726", "3", "2014-10-01 11:00:00", "66.249.79.84", "9052");
INSERT INTO `wp_gf_form_view` VALUES("2727", "6", "2014-10-01 11:25:47", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2728", "3", "2014-10-01 12:00:00", "66.249.79.84", "8376");
INSERT INTO `wp_gf_form_view` VALUES("2729", "3", "2014-10-01 13:00:10", "100.43.85.24", "4650");
INSERT INTO `wp_gf_form_view` VALUES("2730", "6", "2014-10-01 13:07:51", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2731", "3", "2014-10-01 14:00:00", "66.249.79.92", "8080");
INSERT INTO `wp_gf_form_view` VALUES("2732", "3", "2014-10-01 15:00:36", "66.249.79.76", "6234");
INSERT INTO `wp_gf_form_view` VALUES("2733", "6", "2014-10-01 15:21:15", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2734", "3", "2014-10-01 16:00:00", "66.249.79.84", "7029");
INSERT INTO `wp_gf_form_view` VALUES("2735", "6", "2014-10-01 16:04:03", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("2736", "3", "2014-10-01 17:00:00", "100.43.85.24", "6584");
INSERT INTO `wp_gf_form_view` VALUES("2737", "6", "2014-10-01 17:02:20", "100.43.85.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("2738", "2", "2014-10-01 17:23:19", "204.12.221.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("2739", "3", "2014-10-01 18:00:00", "66.249.79.76", "6461");
INSERT INTO `wp_gf_form_view` VALUES("2740", "6", "2014-10-01 18:00:19", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2741", "1", "2014-10-01 18:33:14", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2742", "3", "2014-10-01 19:00:00", "66.249.79.92", "6968");
INSERT INTO `wp_gf_form_view` VALUES("2743", "6", "2014-10-01 19:29:51", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2744", "3", "2014-10-01 20:00:00", "66.249.79.76", "6528");
INSERT INTO `wp_gf_form_view` VALUES("2745", "6", "2014-10-01 20:38:41", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2746", "3", "2014-10-01 21:00:00", "66.249.79.92", "6382");
INSERT INTO `wp_gf_form_view` VALUES("2747", "6", "2014-10-01 21:21:07", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2748", "3", "2014-10-01 22:00:01", "66.249.79.84", "6800");
INSERT INTO `wp_gf_form_view` VALUES("2749", "6", "2014-10-01 22:02:32", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2750", "3", "2014-10-01 23:00:00", "66.249.79.92", "6850");
INSERT INTO `wp_gf_form_view` VALUES("2751", "6", "2014-10-01 23:26:01", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2752", "3", "2014-10-02 00:00:01", "66.249.79.76", "6412");
INSERT INTO `wp_gf_form_view` VALUES("2753", "3", "2014-10-02 01:00:01", "66.249.79.92", "6736");
INSERT INTO `wp_gf_form_view` VALUES("2754", "6", "2014-10-02 01:26:39", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2755", "3", "2014-10-02 02:00:59", "66.249.79.92", "3412");
INSERT INTO `wp_gf_form_view` VALUES("2756", "6", "2014-10-02 02:28:17", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2757", "3", "2014-10-02 03:00:02", "66.249.79.92", "3012");
INSERT INTO `wp_gf_form_view` VALUES("2758", "3", "2014-10-02 04:00:14", "66.249.79.84", "6254");
INSERT INTO `wp_gf_form_view` VALUES("2759", "6", "2014-10-02 04:44:19", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2760", "3", "2014-10-02 05:00:01", "100.43.85.24", "6596");
INSERT INTO `wp_gf_form_view` VALUES("2761", "6", "2014-10-02 05:09:06", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("2762", "3", "2014-10-02 06:00:01", "66.249.79.76", "6398");
INSERT INTO `wp_gf_form_view` VALUES("2763", "6", "2014-10-02 06:31:08", "202.46.50.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("2764", "3", "2014-10-02 07:00:01", "66.249.79.76", "9052");
INSERT INTO `wp_gf_form_view` VALUES("2765", "6", "2014-10-02 07:16:09", "202.46.63.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("2766", "1", "2014-10-02 07:36:07", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2767", "3", "2014-10-02 08:00:00", "66.249.79.76", "8189");
INSERT INTO `wp_gf_form_view` VALUES("2768", "6", "2014-10-02 08:23:55", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2769", "2", "2014-10-02 08:33:44", "157.55.39.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("2770", "3", "2014-10-02 09:00:00", "66.249.79.84", "7491");
INSERT INTO `wp_gf_form_view` VALUES("2771", "6", "2014-10-02 09:31:56", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2772", "3", "2014-10-02 10:00:00", "66.249.79.84", "7126");
INSERT INTO `wp_gf_form_view` VALUES("2773", "6", "2014-10-02 10:22:22", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2774", "3", "2014-10-02 11:00:00", "66.249.67.84", "786");
INSERT INTO `wp_gf_form_view` VALUES("2775", "3", "2014-10-02 12:00:40", "66.249.67.84", "1060");
INSERT INTO `wp_gf_form_view` VALUES("2776", "3", "2014-10-02 13:00:01", "66.249.67.92", "5396");
INSERT INTO `wp_gf_form_view` VALUES("2777", "6", "2014-10-02 13:11:05", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2778", "3", "2014-10-02 14:00:04", "66.249.67.84", "6574");
INSERT INTO `wp_gf_form_view` VALUES("2779", "6", "2014-10-02 14:38:08", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2780", "3", "2014-10-02 15:00:01", "66.249.67.92", "5792");
INSERT INTO `wp_gf_form_view` VALUES("2781", "6", "2014-10-02 15:02:35", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2782", "3", "2014-10-02 16:00:00", "66.249.67.76", "5272");
INSERT INTO `wp_gf_form_view` VALUES("2783", "6", "2014-10-02 16:00:03", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2784", "3", "2014-10-02 17:00:15", "66.249.67.84", "5818");
INSERT INTO `wp_gf_form_view` VALUES("2785", "3", "2014-10-02 18:00:00", "66.249.67.76", "5206");
INSERT INTO `wp_gf_form_view` VALUES("2786", "1", "2014-10-02 18:01:58", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("2787", "3", "2014-10-02 19:00:00", "66.249.67.92", "5430");
INSERT INTO `wp_gf_form_view` VALUES("2788", "1", "2014-10-02 19:26:32", "157.55.39.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("2789", "6", "2014-10-02 19:31:51", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("2790", "3", "2014-10-02 20:00:00", "100.43.85.24", "5841");
INSERT INTO `wp_gf_form_view` VALUES("2791", "6", "2014-10-02 20:31:18", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2792", "3", "2014-10-02 21:00:00", "66.249.67.84", "5944");
INSERT INTO `wp_gf_form_view` VALUES("2793", "6", "2014-10-02 21:07:26", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2794", "3", "2014-10-02 22:00:00", "66.249.67.76", "5955");
INSERT INTO `wp_gf_form_view` VALUES("2795", "6", "2014-10-02 22:42:37", "202.46.63.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("2796", "3", "2014-10-02 23:00:00", "100.43.85.24", "5844");
INSERT INTO `wp_gf_form_view` VALUES("2797", "3", "2014-10-03 00:00:00", "66.249.67.92", "4214");
INSERT INTO `wp_gf_form_view` VALUES("2798", "3", "2014-10-03 01:00:00", "66.249.67.84", "6724");
INSERT INTO `wp_gf_form_view` VALUES("2799", "6", "2014-10-03 01:20:52", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2800", "3", "2014-10-03 02:00:00", "66.249.67.76", "6572");
INSERT INTO `wp_gf_form_view` VALUES("2801", "6", "2014-10-03 02:06:01", "220.181.108.120", "6");
INSERT INTO `wp_gf_form_view` VALUES("2802", "2", "2014-10-03 02:59:00", "202.46.48.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("2803", "3", "2014-10-03 03:00:01", "66.249.79.84", "6797");
INSERT INTO `wp_gf_form_view` VALUES("2804", "6", "2014-10-03 03:10:04", "62.210.167.213", "7");
INSERT INTO `wp_gf_form_view` VALUES("2805", "3", "2014-10-03 04:00:00", "66.249.79.92", "7014");
INSERT INTO `wp_gf_form_view` VALUES("2806", "6", "2014-10-03 04:42:20", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2807", "3", "2014-10-03 05:00:01", "66.249.79.76", "7018");
INSERT INTO `wp_gf_form_view` VALUES("2808", "6", "2014-10-03 05:14:07", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("2809", "3", "2014-10-03 06:00:00", "66.249.79.76", "7246");
INSERT INTO `wp_gf_form_view` VALUES("2810", "6", "2014-10-03 06:18:58", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2811", "3", "2014-10-03 07:00:01", "66.249.79.76", "8298");
INSERT INTO `wp_gf_form_view` VALUES("2812", "6", "2014-10-03 07:59:19", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2813", "3", "2014-10-03 08:00:00", "66.249.79.92", "8912");
INSERT INTO `wp_gf_form_view` VALUES("2814", "6", "2014-10-03 08:03:06", "157.55.39.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("2815", "3", "2014-10-03 09:00:00", "66.249.79.76", "8248");
INSERT INTO `wp_gf_form_view` VALUES("2816", "3", "2014-10-03 10:00:00", "66.249.79.84", "7889");
INSERT INTO `wp_gf_form_view` VALUES("2817", "6", "2014-10-03 10:32:05", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("2818", "3", "2014-10-03 11:00:00", "66.249.79.84", "3819");
INSERT INTO `wp_gf_form_view` VALUES("2819", "6", "2014-10-03 11:00:02", "100.43.85.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("2820", "2", "2014-10-03 11:17:10", "62.210.122.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("2821", "1", "2014-10-03 11:17:15", "62.210.122.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("2822", "3", "2014-10-03 12:00:00", "100.43.85.24", "2348");
INSERT INTO `wp_gf_form_view` VALUES("2823", "3", "2014-10-03 13:00:03", "66.249.79.92", "7427");
INSERT INTO `wp_gf_form_view` VALUES("2824", "6", "2014-10-03 13:36:07", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2825", "3", "2014-10-03 14:00:00", "66.249.79.84", "7486");
INSERT INTO `wp_gf_form_view` VALUES("2826", "6", "2014-10-03 14:01:19", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2827", "3", "2014-10-03 15:00:00", "66.249.79.76", "6013");
INSERT INTO `wp_gf_form_view` VALUES("2828", "6", "2014-10-03 15:21:49", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("2829", "3", "2014-10-03 16:00:01", "66.249.79.84", "6962");
INSERT INTO `wp_gf_form_view` VALUES("2830", "6", "2014-10-03 16:30:25", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2831", "3", "2014-10-03 17:00:01", "66.249.79.76", "9222");
INSERT INTO `wp_gf_form_view` VALUES("2832", "1", "2014-10-03 17:35:59", "162.243.238.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("2833", "6", "2014-10-03 17:51:32", "162.243.238.128", "2");
INSERT INTO `wp_gf_form_view` VALUES("2834", "3", "2014-10-03 18:00:00", "162.243.238.128", "10138");
INSERT INTO `wp_gf_form_view` VALUES("2835", "6", "2014-10-03 18:23:33", "162.243.238.128", "14");
INSERT INTO `wp_gf_form_view` VALUES("2836", "1", "2014-10-03 18:50:31", "5.196.107.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("2837", "3", "2014-10-03 19:00:00", "66.249.79.92", "6796");
INSERT INTO `wp_gf_form_view` VALUES("2838", "6", "2014-10-03 19:00:00", "162.243.238.128", "12");
INSERT INTO `wp_gf_form_view` VALUES("2839", "1", "2014-10-03 19:03:40", "5.196.109.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("2840", "3", "2014-10-03 20:00:00", "66.249.79.76", "7001");
INSERT INTO `wp_gf_form_view` VALUES("2841", "6", "2014-10-03 20:14:28", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2842", "2", "2014-10-03 20:35:23", "27.159.253.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("2843", "3", "2014-10-03 21:00:01", "66.249.79.92", "6120");
INSERT INTO `wp_gf_form_view` VALUES("2844", "1", "2014-10-03 21:40:39", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2845", "3", "2014-10-03 22:00:14", "66.249.79.76", "6901");
INSERT INTO `wp_gf_form_view` VALUES("2846", "6", "2014-10-03 22:05:14", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2847", "3", "2014-10-03 23:00:00", "66.249.79.84", "7361");
INSERT INTO `wp_gf_form_view` VALUES("2848", "6", "2014-10-03 23:16:58", "202.46.50.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("2849", "3", "2014-10-04 00:00:01", "66.249.79.84", "7141");
INSERT INTO `wp_gf_form_view` VALUES("2850", "6", "2014-10-04 00:01:22", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2851", "3", "2014-10-04 01:00:00", "66.249.79.76", "4059");
INSERT INTO `wp_gf_form_view` VALUES("2852", "3", "2014-10-04 02:00:01", "66.249.79.92", "7076");
INSERT INTO `wp_gf_form_view` VALUES("2853", "1", "2014-10-04 02:45:03", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("2854", "3", "2014-10-04 03:00:00", "66.249.79.92", "6550");
INSERT INTO `wp_gf_form_view` VALUES("2855", "3", "2014-10-04 04:00:01", "66.249.79.84", "6380");
INSERT INTO `wp_gf_form_view` VALUES("2856", "3", "2014-10-04 05:00:00", "66.249.79.84", "6812");
INSERT INTO `wp_gf_form_view` VALUES("2857", "6", "2014-10-04 05:45:14", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("2858", "3", "2014-10-04 06:00:00", "66.249.79.92", "6959");
INSERT INTO `wp_gf_form_view` VALUES("2859", "6", "2014-10-04 06:08:39", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("2860", "3", "2014-10-04 07:00:00", "66.249.79.76", "9578");
INSERT INTO `wp_gf_form_view` VALUES("2861", "6", "2014-10-04 07:25:52", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("2862", "3", "2014-10-04 08:00:00", "66.249.79.92", "8984");
INSERT INTO `wp_gf_form_view` VALUES("2863", "6", "2014-10-04 08:12:00", "202.46.50.41", "6");
INSERT INTO `wp_gf_form_view` VALUES("2864", "3", "2014-10-04 09:00:00", "66.249.79.76", "9143");
INSERT INTO `wp_gf_form_view` VALUES("2865", "6", "2014-10-04 09:10:14", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2866", "3", "2014-10-04 10:00:00", "66.249.79.76", "9073");
INSERT INTO `wp_gf_form_view` VALUES("2867", "6", "2014-10-04 10:49:44", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2868", "3", "2014-10-04 11:00:00", "66.249.79.84", "7881");
INSERT INTO `wp_gf_form_view` VALUES("2869", "6", "2014-10-04 11:38:40", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("2870", "3", "2014-10-04 12:00:13", "66.249.79.76", "1344");
INSERT INTO `wp_gf_form_view` VALUES("2871", "2", "2014-10-04 12:14:19", "62.210.122.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("2872", "1", "2014-10-04 12:14:24", "62.210.122.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("2873", "6", "2014-10-04 12:30:40", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("2874", "3", "2014-10-04 13:00:09", "66.249.79.76", "1306");
INSERT INTO `wp_gf_form_view` VALUES("2875", "2", "2014-10-04 13:05:54", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2876", "1", "2014-10-04 13:05:56", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("2877", "3", "2014-10-04 14:00:10", "66.249.79.84", "1507");
INSERT INTO `wp_gf_form_view` VALUES("2878", "6", "2014-10-04 14:15:23", "100.43.85.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("2879", "1", "2014-10-04 14:20:22", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("2880", "2", "2014-10-04 14:53:34", "198.211.106.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("2881", "3", "2014-10-04 15:00:17", "66.249.79.92", "1724");
INSERT INTO `wp_gf_form_view` VALUES("2882", "3", "2014-10-04 16:00:03", "66.249.79.76", "6434");
INSERT INTO `wp_gf_form_view` VALUES("2883", "6", "2014-10-04 16:20:25", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("2884", "3", "2014-10-04 17:00:00", "66.249.79.92", "6392");
INSERT INTO `wp_gf_form_view` VALUES("2885", "3", "2014-10-04 18:00:00", "66.249.79.84", "6963");
INSERT INTO `wp_gf_form_view` VALUES("2886", "3", "2014-10-04 19:00:00", "66.249.79.84", "6648");
INSERT INTO `wp_gf_form_view` VALUES("2887", "6", "2014-10-04 19:44:56", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("2888", "3", "2014-10-04 20:00:00", "66.249.79.76", "6532");
INSERT INTO `wp_gf_form_view` VALUES("2889", "3", "2014-10-04 21:00:00", "66.249.79.92", "6419");
INSERT INTO `wp_gf_form_view` VALUES("2890", "6", "2014-10-04 21:19:07", "192.99.149.88", "6");
INSERT INTO `wp_gf_form_view` VALUES("2891", "3", "2014-10-04 22:00:01", "66.249.79.76", "6632");
INSERT INTO `wp_gf_form_view` VALUES("2892", "3", "2014-10-04 23:00:04", "66.249.79.76", "4990");
INSERT INTO `wp_gf_form_view` VALUES("2893", "6", "2014-10-04 23:00:06", "66.249.79.76", "1218");
INSERT INTO `wp_gf_form_view` VALUES("2894", "3", "2014-10-05 00:00:00", "66.249.79.76", "2760");
INSERT INTO `wp_gf_form_view` VALUES("2895", "6", "2014-10-05 00:00:01", "66.249.79.76", "668");
INSERT INTO `wp_gf_form_view` VALUES("2896", "3", "2014-10-05 01:00:28", "66.249.79.92", "2298");
INSERT INTO `wp_gf_form_view` VALUES("2897", "6", "2014-10-05 01:00:29", "66.249.79.92", "564");
INSERT INTO `wp_gf_form_view` VALUES("2898", "3", "2014-10-05 02:00:09", "66.249.79.92", "5346");
INSERT INTO `wp_gf_form_view` VALUES("2899", "6", "2014-10-05 02:00:10", "66.249.79.92", "1324");
INSERT INTO `wp_gf_form_view` VALUES("2900", "3", "2014-10-05 03:00:00", "66.249.79.76", "5632");
INSERT INTO `wp_gf_form_view` VALUES("2901", "6", "2014-10-05 03:00:02", "66.249.79.76", "1378");
INSERT INTO `wp_gf_form_view` VALUES("2902", "2", "2014-10-05 03:19:24", "140.237.37.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("2903", "3", "2014-10-05 04:00:00", "66.249.79.76", "5369");
INSERT INTO `wp_gf_form_view` VALUES("2904", "6", "2014-10-05 04:00:01", "66.249.79.76", "1322");
INSERT INTO `wp_gf_form_view` VALUES("2905", "3", "2014-10-05 05:00:00", "66.249.79.84", "5795");
INSERT INTO `wp_gf_form_view` VALUES("2906", "6", "2014-10-05 05:00:02", "66.249.79.84", "1435");
INSERT INTO `wp_gf_form_view` VALUES("2907", "6", "2014-10-05 06:00:00", "66.249.79.84", "1363");
INSERT INTO `wp_gf_form_view` VALUES("2908", "3", "2014-10-05 06:00:03", "66.249.79.84", "5548");
INSERT INTO `wp_gf_form_view` VALUES("2909", "2", "2014-10-05 06:30:43", "27.150.197.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("2910", "1", "2014-10-05 06:38:26", "27.150.197.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("2911", "3", "2014-10-05 07:00:16", "66.249.79.76", "6821");
INSERT INTO `wp_gf_form_view` VALUES("2912", "6", "2014-10-05 07:00:19", "66.249.79.76", "1662");
INSERT INTO `wp_gf_form_view` VALUES("2913", "1", "2014-10-05 07:45:21", "192.99.221.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("2914", "3", "2014-10-05 08:00:00", "66.249.79.76", "5013");
INSERT INTO `wp_gf_form_view` VALUES("2915", "6", "2014-10-05 08:00:01", "66.249.79.76", "1240");
INSERT INTO `wp_gf_form_view` VALUES("2916", "3", "2014-10-05 09:00:01", "66.249.79.84", "6325");
INSERT INTO `wp_gf_form_view` VALUES("2917", "6", "2014-10-05 09:00:03", "66.249.79.84", "1542");
INSERT INTO `wp_gf_form_view` VALUES("2918", "3", "2014-10-05 10:00:00", "66.249.79.84", "6578");
INSERT INTO `wp_gf_form_view` VALUES("2919", "6", "2014-10-05 10:00:01", "66.249.79.84", "1606");
INSERT INTO `wp_gf_form_view` VALUES("2920", "1", "2014-10-05 10:31:59", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("2921", "3", "2014-10-05 11:00:00", "66.249.79.76", "2991");
INSERT INTO `wp_gf_form_view` VALUES("2922", "6", "2014-10-05 11:00:03", "66.249.79.76", "728");
INSERT INTO `wp_gf_form_view` VALUES("2923", "3", "2014-10-05 12:00:41", "66.249.79.76", "1743");
INSERT INTO `wp_gf_form_view` VALUES("2924", "6", "2014-10-05 12:00:43", "66.249.79.76", "432");
INSERT INTO `wp_gf_form_view` VALUES("2925", "3", "2014-10-05 13:00:02", "66.249.79.76", "6070");
INSERT INTO `wp_gf_form_view` VALUES("2926", "6", "2014-10-05 13:00:03", "66.249.79.76", "1495");
INSERT INTO `wp_gf_form_view` VALUES("2927", "3", "2014-10-05 14:00:00", "66.249.79.92", "6177");
INSERT INTO `wp_gf_form_view` VALUES("2928", "6", "2014-10-05 14:00:02", "66.249.79.92", "1528");
INSERT INTO `wp_gf_form_view` VALUES("2929", "3", "2014-10-05 15:00:04", "66.249.79.84", "5128");
INSERT INTO `wp_gf_form_view` VALUES("2930", "6", "2014-10-05 15:00:06", "66.249.79.84", "1274");
INSERT INTO `wp_gf_form_view` VALUES("2931", "3", "2014-10-05 16:00:00", "66.249.79.84", "5098");
INSERT INTO `wp_gf_form_view` VALUES("2932", "6", "2014-10-05 16:00:01", "66.249.79.84", "1260");
INSERT INTO `wp_gf_form_view` VALUES("2933", "3", "2014-10-05 17:00:02", "66.249.79.92", "4889");
INSERT INTO `wp_gf_form_view` VALUES("2934", "6", "2014-10-05 17:00:04", "66.249.79.92", "1202");
INSERT INTO `wp_gf_form_view` VALUES("2935", "3", "2014-10-05 18:00:00", "66.249.79.76", "4933");
INSERT INTO `wp_gf_form_view` VALUES("2936", "6", "2014-10-05 18:00:01", "66.249.79.76", "1218");
INSERT INTO `wp_gf_form_view` VALUES("2937", "3", "2014-10-05 19:00:02", "66.249.79.84", "4694");
INSERT INTO `wp_gf_form_view` VALUES("2938", "6", "2014-10-05 19:00:04", "66.249.79.84", "1150");
INSERT INTO `wp_gf_form_view` VALUES("2939", "3", "2014-10-05 20:00:01", "66.249.79.92", "6490");
INSERT INTO `wp_gf_form_view` VALUES("2940", "6", "2014-10-05 20:00:03", "66.249.79.92", "1582");
INSERT INTO `wp_gf_form_view` VALUES("2941", "3", "2014-10-05 21:00:01", "66.249.79.92", "6284");
INSERT INTO `wp_gf_form_view` VALUES("2942", "6", "2014-10-05 21:00:04", "66.249.79.92", "1514");
INSERT INTO `wp_gf_form_view` VALUES("2943", "1", "2014-10-05 21:35:29", "27.159.20.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("2944", "3", "2014-10-05 22:00:00", "66.249.79.76", "5815");
INSERT INTO `wp_gf_form_view` VALUES("2945", "6", "2014-10-05 22:00:02", "66.249.79.76", "1420");
INSERT INTO `wp_gf_form_view` VALUES("2946", "3", "2014-10-05 23:00:00", "66.249.79.84", "1445");
INSERT INTO `wp_gf_form_view` VALUES("2947", "6", "2014-10-05 23:00:01", "66.249.79.84", "350");
INSERT INTO `wp_gf_form_view` VALUES("2948", "2", "2014-10-05 23:12:27", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("2949", "3", "2014-10-06 00:00:27", "66.249.79.92", "3489");
INSERT INTO `wp_gf_form_view` VALUES("2950", "6", "2014-10-06 00:00:28", "66.249.79.92", "856");
INSERT INTO `wp_gf_form_view` VALUES("2951", "6", "2014-10-06 01:00:00", "66.249.79.84", "1392");
INSERT INTO `wp_gf_form_view` VALUES("2952", "3", "2014-10-06 01:00:03", "66.249.79.76", "5642");
INSERT INTO `wp_gf_form_view` VALUES("2953", "3", "2014-10-06 02:00:11", "66.249.79.76", "5720");
INSERT INTO `wp_gf_form_view` VALUES("2954", "6", "2014-10-06 02:00:14", "66.249.79.76", "1421");
INSERT INTO `wp_gf_form_view` VALUES("2955", "6", "2014-10-06 03:00:00", "66.249.79.84", "1451");
INSERT INTO `wp_gf_form_view` VALUES("2956", "3", "2014-10-06 03:00:02", "66.249.79.92", "5836");
INSERT INTO `wp_gf_form_view` VALUES("2957", "3", "2014-10-06 04:00:01", "66.249.79.84", "5930");
INSERT INTO `wp_gf_form_view` VALUES("2958", "6", "2014-10-06 04:00:03", "66.249.79.84", "1458");
INSERT INTO `wp_gf_form_view` VALUES("2959", "1", "2014-10-06 04:00:32", "212.129.42.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("2960", "3", "2014-10-06 05:00:00", "66.249.79.76", "6251");
INSERT INTO `wp_gf_form_view` VALUES("2961", "6", "2014-10-06 05:00:00", "66.249.79.76", "1538");
INSERT INTO `wp_gf_form_view` VALUES("2962", "3", "2014-10-06 06:00:00", "66.249.79.92", "5796");
INSERT INTO `wp_gf_form_view` VALUES("2963", "6", "2014-10-06 06:00:01", "66.249.79.92", "1428");
INSERT INTO `wp_gf_form_view` VALUES("2964", "3", "2014-10-06 07:00:00", "66.249.79.84", "5797");
INSERT INTO `wp_gf_form_view` VALUES("2965", "6", "2014-10-06 07:00:03", "66.249.79.84", "1429");
INSERT INTO `wp_gf_form_view` VALUES("2966", "3", "2014-10-06 08:00:00", "66.249.79.92", "6006");
INSERT INTO `wp_gf_form_view` VALUES("2967", "6", "2014-10-06 08:00:03", "66.249.79.92", "1484");
INSERT INTO `wp_gf_form_view` VALUES("2968", "3", "2014-10-06 09:00:01", "66.249.79.92", "6001");
INSERT INTO `wp_gf_form_view` VALUES("2969", "6", "2014-10-06 09:00:04", "66.249.79.92", "1474");
INSERT INTO `wp_gf_form_view` VALUES("2970", "6", "2014-10-06 10:00:00", "66.249.79.92", "659");
INSERT INTO `wp_gf_form_view` VALUES("2971", "3", "2014-10-06 10:00:02", "66.249.79.92", "2688");
INSERT INTO `wp_gf_form_view` VALUES("2972", "3", "2014-10-06 11:00:01", "66.249.79.84", "894");
INSERT INTO `wp_gf_form_view` VALUES("2973", "6", "2014-10-06 11:00:03", "66.249.79.84", "222");
INSERT INTO `wp_gf_form_view` VALUES("2974", "3", "2014-10-06 12:00:07", "66.249.79.92", "4847");
INSERT INTO `wp_gf_form_view` VALUES("2975", "6", "2014-10-06 12:00:08", "66.249.79.92", "1190");
INSERT INTO `wp_gf_form_view` VALUES("2976", "3", "2014-10-06 13:00:00", "66.249.79.76", "6015");
INSERT INTO `wp_gf_form_view` VALUES("2977", "6", "2014-10-06 13:00:01", "66.249.79.84", "1484");
INSERT INTO `wp_gf_form_view` VALUES("2978", "3", "2014-10-06 14:00:02", "66.249.79.76", "5978");
INSERT INTO `wp_gf_form_view` VALUES("2979", "6", "2014-10-06 14:00:05", "66.249.79.76", "1472");
INSERT INTO `wp_gf_form_view` VALUES("2980", "6", "2014-10-06 15:00:00", "66.249.79.92", "1488");
INSERT INTO `wp_gf_form_view` VALUES("2981", "3", "2014-10-06 15:00:02", "66.249.79.92", "6037");
INSERT INTO `wp_gf_form_view` VALUES("2982", "1", "2014-10-06 15:06:43", "184.69.27.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("2983", "3", "2014-10-06 16:00:00", "66.249.79.76", "6063");
INSERT INTO `wp_gf_form_view` VALUES("2984", "6", "2014-10-06 16:00:01", "66.249.79.76", "1484");
INSERT INTO `wp_gf_form_view` VALUES("2985", "3", "2014-10-06 17:00:00", "66.249.79.84", "5958");
INSERT INTO `wp_gf_form_view` VALUES("2986", "6", "2014-10-06 17:00:01", "66.249.79.84", "1460");
INSERT INTO `wp_gf_form_view` VALUES("2987", "3", "2014-10-06 18:00:00", "66.249.79.92", "6309");
INSERT INTO `wp_gf_form_view` VALUES("2988", "6", "2014-10-06 18:00:01", "66.249.79.92", "1560");
INSERT INTO `wp_gf_form_view` VALUES("2989", "1", "2014-10-06 18:03:40", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("2990", "3", "2014-10-06 19:00:00", "66.249.79.92", "6159");
INSERT INTO `wp_gf_form_view` VALUES("2991", "6", "2014-10-06 19:00:02", "66.249.79.92", "1514");
INSERT INTO `wp_gf_form_view` VALUES("2992", "3", "2014-10-06 20:00:03", "66.249.79.92", "5977");
INSERT INTO `wp_gf_form_view` VALUES("2993", "6", "2014-10-06 20:00:06", "66.249.79.92", "1464");
INSERT INTO `wp_gf_form_view` VALUES("2994", "1", "2014-10-06 20:47:42", "24.69.105.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("2995", "6", "2014-10-06 21:00:00", "66.249.79.92", "1834");
INSERT INTO `wp_gf_form_view` VALUES("2996", "3", "2014-10-06 21:00:00", "66.249.79.76", "7407");
INSERT INTO `wp_gf_form_view` VALUES("2997", "3", "2014-10-06 22:00:01", "66.249.79.84", "7912");
INSERT INTO `wp_gf_form_view` VALUES("2998", "6", "2014-10-06 22:00:04", "66.249.79.84", "1953");
INSERT INTO `wp_gf_form_view` VALUES("2999", "6", "2014-10-06 23:00:00", "66.249.79.84", "829");
INSERT INTO `wp_gf_form_view` VALUES("3000", "3", "2014-10-06 23:00:00", "66.249.79.76", "3389");
INSERT INTO `wp_gf_form_view` VALUES("3001", "3", "2014-10-07 00:00:00", "66.249.79.84", "6944");
INSERT INTO `wp_gf_form_view` VALUES("3002", "6", "2014-10-07 00:00:00", "66.249.79.84", "1710");
INSERT INTO `wp_gf_form_view` VALUES("3003", "3", "2014-10-07 01:00:00", "66.249.79.84", "7950");
INSERT INTO `wp_gf_form_view` VALUES("3004", "6", "2014-10-07 01:00:01", "66.249.79.84", "1965");
INSERT INTO `wp_gf_form_view` VALUES("3005", "3", "2014-10-07 02:00:00", "66.249.79.92", "7751");
INSERT INTO `wp_gf_form_view` VALUES("3006", "6", "2014-10-07 02:00:00", "66.249.79.76", "1919");
INSERT INTO `wp_gf_form_view` VALUES("3007", "3", "2014-10-07 03:00:00", "66.249.79.84", "7896");
INSERT INTO `wp_gf_form_view` VALUES("3008", "6", "2014-10-07 03:00:00", "66.249.79.76", "1938");
INSERT INTO `wp_gf_form_view` VALUES("3009", "3", "2014-10-07 04:00:01", "66.249.79.92", "7812");
INSERT INTO `wp_gf_form_view` VALUES("3010", "6", "2014-10-07 04:00:04", "66.249.79.92", "1913");
INSERT INTO `wp_gf_form_view` VALUES("3011", "6", "2014-10-07 05:00:00", "66.249.79.92", "1772");
INSERT INTO `wp_gf_form_view` VALUES("3012", "3", "2014-10-07 05:00:01", "66.249.79.92", "7199");
INSERT INTO `wp_gf_form_view` VALUES("3013", "1", "2014-10-07 05:45:33", "37.153.195.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("3014", "2", "2014-10-07 05:45:48", "37.153.195.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("3015", "3", "2014-10-07 06:00:01", "66.249.79.92", "7628");
INSERT INTO `wp_gf_form_view` VALUES("3016", "6", "2014-10-07 06:00:04", "66.249.79.92", "1880");
INSERT INTO `wp_gf_form_view` VALUES("3017", "3", "2014-10-07 07:00:00", "66.249.79.76", "7663");
INSERT INTO `wp_gf_form_view` VALUES("3018", "6", "2014-10-07 07:00:00", "66.249.79.76", "1887");
INSERT INTO `wp_gf_form_view` VALUES("3019", "3", "2014-10-07 08:00:00", "66.249.79.84", "8275");
INSERT INTO `wp_gf_form_view` VALUES("3020", "6", "2014-10-07 08:00:02", "66.249.79.84", "2046");
INSERT INTO `wp_gf_form_view` VALUES("3021", "3", "2014-10-07 09:00:00", "66.249.79.84", "8109");
INSERT INTO `wp_gf_form_view` VALUES("3022", "6", "2014-10-07 09:00:02", "66.249.79.84", "2012");
INSERT INTO `wp_gf_form_view` VALUES("3023", "3", "2014-10-07 10:00:00", "66.249.79.84", "5155");
INSERT INTO `wp_gf_form_view` VALUES("3024", "6", "2014-10-07 10:00:02", "66.249.79.84", "1260");
INSERT INTO `wp_gf_form_view` VALUES("3025", "2", "2014-10-07 10:10:50", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("3026", "3", "2014-10-07 11:00:02", "66.249.79.76", "3992");
INSERT INTO `wp_gf_form_view` VALUES("3027", "6", "2014-10-07 11:00:04", "66.249.79.76", "972");
INSERT INTO `wp_gf_form_view` VALUES("3028", "3", "2014-10-07 12:00:01", "66.249.79.84", "6584");
INSERT INTO `wp_gf_form_view` VALUES("3029", "6", "2014-10-07 12:00:03", "66.249.79.84", "1613");
INSERT INTO `wp_gf_form_view` VALUES("3030", "3", "2014-10-07 13:00:00", "66.249.79.76", "6309");
INSERT INTO `wp_gf_form_view` VALUES("3031", "6", "2014-10-07 13:00:00", "66.249.79.76", "1554");
INSERT INTO `wp_gf_form_view` VALUES("3032", "3", "2014-10-07 14:00:00", "66.249.79.92", "5903");
INSERT INTO `wp_gf_form_view` VALUES("3033", "6", "2014-10-07 14:00:03", "66.249.79.92", "1456");
INSERT INTO `wp_gf_form_view` VALUES("3034", "3", "2014-10-07 15:00:00", "66.249.79.92", "5995");
INSERT INTO `wp_gf_form_view` VALUES("3035", "6", "2014-10-07 15:00:01", "66.249.79.92", "1482");
INSERT INTO `wp_gf_form_view` VALUES("3036", "3", "2014-10-07 16:00:01", "66.249.79.92", "6356");
INSERT INTO `wp_gf_form_view` VALUES("3037", "6", "2014-10-07 16:00:04", "66.249.79.92", "1570");
INSERT INTO `wp_gf_form_view` VALUES("3038", "3", "2014-10-07 17:00:00", "66.249.79.76", "10168");
INSERT INTO `wp_gf_form_view` VALUES("3039", "6", "2014-10-07 17:00:01", "66.249.79.76", "2414");
INSERT INTO `wp_gf_form_view` VALUES("3040", "2", "2014-10-07 17:00:08", "5.9.127.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("3041", "1", "2014-10-07 17:01:29", "5.9.127.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("3042", "6", "2014-10-07 18:00:00", "66.249.79.92", "1569");
INSERT INTO `wp_gf_form_view` VALUES("3043", "3", "2014-10-07 18:00:00", "5.9.127.154", "6422");
INSERT INTO `wp_gf_form_view` VALUES("3044", "3", "2014-10-07 19:00:00", "66.249.79.92", "5639");
INSERT INTO `wp_gf_form_view` VALUES("3045", "6", "2014-10-07 19:00:03", "66.249.79.92", "1388");
INSERT INTO `wp_gf_form_view` VALUES("3046", "1", "2014-10-07 19:11:30", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("3047", "3", "2014-10-07 20:00:00", "66.249.79.92", "5985");
INSERT INTO `wp_gf_form_view` VALUES("3048", "6", "2014-10-07 20:00:00", "66.249.79.92", "1464");
INSERT INTO `wp_gf_form_view` VALUES("3049", "6", "2014-10-07 21:00:00", "66.249.79.76", "1516");
INSERT INTO `wp_gf_form_view` VALUES("3050", "3", "2014-10-07 21:00:04", "66.249.79.92", "6190");
INSERT INTO `wp_gf_form_view` VALUES("3051", "1", "2014-10-07 21:01:44", "72.46.156.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("3052", "3", "2014-10-07 22:00:00", "66.249.79.76", "3184");
INSERT INTO `wp_gf_form_view` VALUES("3053", "6", "2014-10-07 22:00:03", "66.249.79.76", "776");
INSERT INTO `wp_gf_form_view` VALUES("3054", "3", "2014-10-07 23:00:38", "66.249.79.84", "1371");
INSERT INTO `wp_gf_form_view` VALUES("3055", "6", "2014-10-07 23:00:40", "66.249.79.84", "333");
INSERT INTO `wp_gf_form_view` VALUES("3056", "1", "2014-10-07 23:10:39", "37.77.117.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("3057", "2", "2014-10-07 23:10:59", "37.77.117.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("3058", "3", "2014-10-08 00:00:03", "66.249.79.92", "2963");
INSERT INTO `wp_gf_form_view` VALUES("3059", "6", "2014-10-08 00:00:04", "66.249.79.92", "724");
INSERT INTO `wp_gf_form_view` VALUES("3060", "3", "2014-10-08 01:00:00", "66.249.79.84", "5988");
INSERT INTO `wp_gf_form_view` VALUES("3061", "6", "2014-10-08 01:00:00", "66.249.79.84", "1476");
INSERT INTO `wp_gf_form_view` VALUES("3062", "3", "2014-10-08 02:00:00", "66.249.79.84", "6384");
INSERT INTO `wp_gf_form_view` VALUES("3063", "6", "2014-10-08 02:00:01", "66.249.79.84", "1576");
INSERT INTO `wp_gf_form_view` VALUES("3064", "2", "2014-10-08 02:20:21", "202.46.49.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("3065", "3", "2014-10-08 03:00:02", "66.249.67.84", "6263");
INSERT INTO `wp_gf_form_view` VALUES("3066", "6", "2014-10-08 03:00:04", "66.249.67.84", "1538");
INSERT INTO `wp_gf_form_view` VALUES("3067", "3", "2014-10-08 04:00:00", "66.249.67.76", "6416");
INSERT INTO `wp_gf_form_view` VALUES("3068", "6", "2014-10-08 04:00:01", "66.249.67.76", "1582");
INSERT INTO `wp_gf_form_view` VALUES("3069", "3", "2014-10-08 05:00:00", "66.249.67.76", "6285");
INSERT INTO `wp_gf_form_view` VALUES("3070", "6", "2014-10-08 05:00:01", "66.249.67.76", "1556");
INSERT INTO `wp_gf_form_view` VALUES("3071", "3", "2014-10-08 06:00:03", "66.249.67.92", "5886");
INSERT INTO `wp_gf_form_view` VALUES("3072", "6", "2014-10-08 06:00:06", "66.249.67.92", "1458");
INSERT INTO `wp_gf_form_view` VALUES("3073", "3", "2014-10-08 07:00:00", "66.249.67.92", "5564");
INSERT INTO `wp_gf_form_view` VALUES("3074", "6", "2014-10-08 07:00:02", "66.249.67.92", "1380");
INSERT INTO `wp_gf_form_view` VALUES("3075", "3", "2014-10-08 08:00:02", "66.249.67.92", "5869");
INSERT INTO `wp_gf_form_view` VALUES("3076", "6", "2014-10-08 08:00:05", "66.249.67.92", "1439");
INSERT INTO `wp_gf_form_view` VALUES("3077", "3", "2014-10-08 09:00:00", "66.249.67.84", "6352");
INSERT INTO `wp_gf_form_view` VALUES("3078", "6", "2014-10-08 09:00:00", "66.249.67.84", "1564");
INSERT INTO `wp_gf_form_view` VALUES("3079", "6", "2014-10-08 10:00:00", "66.249.67.92", "971");
INSERT INTO `wp_gf_form_view` VALUES("3080", "3", "2014-10-08 10:00:01", "66.249.67.92", "3938");
INSERT INTO `wp_gf_form_view` VALUES("3081", "3", "2014-10-08 11:00:04", "66.249.67.76", "2668");
INSERT INTO `wp_gf_form_view` VALUES("3082", "6", "2014-10-08 11:00:06", "66.249.67.76", "658");
INSERT INTO `wp_gf_form_view` VALUES("3083", "3", "2014-10-08 12:00:04", "66.249.67.84", "5522");
INSERT INTO `wp_gf_form_view` VALUES("3084", "6", "2014-10-08 12:00:06", "66.249.67.84", "1356");
INSERT INTO `wp_gf_form_view` VALUES("3085", "3", "2014-10-08 13:00:01", "66.249.67.92", "5499");
INSERT INTO `wp_gf_form_view` VALUES("3086", "6", "2014-10-08 13:00:04", "66.249.67.92", "1352");
INSERT INTO `wp_gf_form_view` VALUES("3087", "3", "2014-10-08 14:00:00", "66.249.67.84", "5525");
INSERT INTO `wp_gf_form_view` VALUES("3088", "6", "2014-10-08 14:00:00", "66.249.67.84", "1358");
INSERT INTO `wp_gf_form_view` VALUES("3089", "1", "2014-10-08 14:48:27", "192.99.141.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("3090", "3", "2014-10-08 15:00:00", "66.249.67.76", "5213");
INSERT INTO `wp_gf_form_view` VALUES("3091", "6", "2014-10-08 15:00:02", "66.249.67.76", "1278");
INSERT INTO `wp_gf_form_view` VALUES("3092", "3", "2014-10-08 16:00:00", "66.249.67.92", "5032");
INSERT INTO `wp_gf_form_view` VALUES("3093", "6", "2014-10-08 16:00:00", "66.249.67.92", "1238");
INSERT INTO `wp_gf_form_view` VALUES("3094", "1", "2014-10-08 16:42:58", "66.249.67.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("3095", "6", "2014-10-08 17:00:00", "66.249.67.92", "1427");
INSERT INTO `wp_gf_form_view` VALUES("3096", "3", "2014-10-08 17:00:03", "66.249.67.76", "5846");
INSERT INTO `wp_gf_form_view` VALUES("3097", "3", "2014-10-08 18:00:00", "66.249.67.92", "5750");
INSERT INTO `wp_gf_form_view` VALUES("3098", "6", "2014-10-08 18:00:01", "66.249.67.92", "1404");
INSERT INTO `wp_gf_form_view` VALUES("3099", "3", "2014-10-08 19:00:00", "66.249.67.92", "5785");
INSERT INTO `wp_gf_form_view` VALUES("3100", "6", "2014-10-08 19:00:03", "66.249.67.92", "1403");
INSERT INTO `wp_gf_form_view` VALUES("3101", "3", "2014-10-08 20:00:00", "66.249.67.92", "5496");
INSERT INTO `wp_gf_form_view` VALUES("3102", "6", "2014-10-08 20:00:01", "66.249.67.92", "1340");
INSERT INTO `wp_gf_form_view` VALUES("3103", "3", "2014-10-08 21:00:00", "66.249.67.76", "5300");
INSERT INTO `wp_gf_form_view` VALUES("3104", "6", "2014-10-08 21:00:03", "66.249.67.76", "1298");
INSERT INTO `wp_gf_form_view` VALUES("3105", "3", "2014-10-08 22:00:01", "66.249.67.92", "2162");
INSERT INTO `wp_gf_form_view` VALUES("3106", "6", "2014-10-08 22:00:05", "66.249.67.92", "534");
INSERT INTO `wp_gf_form_view` VALUES("3107", "3", "2014-10-08 23:01:33", "66.249.67.84", "3514");
INSERT INTO `wp_gf_form_view` VALUES("3108", "6", "2014-10-08 23:01:34", "66.249.67.84", "866");
INSERT INTO `wp_gf_form_view` VALUES("3109", "3", "2014-10-09 00:00:08", "66.249.67.92", "5230");
INSERT INTO `wp_gf_form_view` VALUES("3110", "6", "2014-10-09 00:00:09", "66.249.67.92", "1294");
INSERT INTO `wp_gf_form_view` VALUES("3111", "3", "2014-10-09 01:00:01", "66.249.67.84", "5224");
INSERT INTO `wp_gf_form_view` VALUES("3112", "6", "2014-10-09 01:00:03", "66.249.67.84", "1285");
INSERT INTO `wp_gf_form_view` VALUES("3113", "6", "2014-10-09 02:00:00", "66.249.67.84", "1265");
INSERT INTO `wp_gf_form_view` VALUES("3114", "3", "2014-10-09 02:00:03", "66.249.67.76", "5100");
INSERT INTO `wp_gf_form_view` VALUES("3115", "6", "2014-10-09 03:00:01", "195.211.155.165", "1152");
INSERT INTO `wp_gf_form_view` VALUES("3116", "3", "2014-10-09 03:00:04", "66.249.67.92", "4690");
INSERT INTO `wp_gf_form_view` VALUES("3117", "3", "2014-10-09 04:00:01", "66.249.67.92", "5558");
INSERT INTO `wp_gf_form_view` VALUES("3118", "6", "2014-10-09 04:00:03", "66.249.67.92", "1348");
INSERT INTO `wp_gf_form_view` VALUES("3119", "1", "2014-10-09 04:46:55", "198.100.158.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("3120", "3", "2014-10-09 05:00:01", "66.249.67.84", "5616");
INSERT INTO `wp_gf_form_view` VALUES("3121", "6", "2014-10-09 05:00:04", "66.249.67.84", "1357");
INSERT INTO `wp_gf_form_view` VALUES("3122", "6", "2014-10-09 06:00:00", "66.249.67.92", "1435");
INSERT INTO `wp_gf_form_view` VALUES("3123", "3", "2014-10-09 06:00:03", "66.249.67.92", "5858");
INSERT INTO `wp_gf_form_view` VALUES("3124", "3", "2014-10-09 07:00:04", "66.249.67.76", "5794");
INSERT INTO `wp_gf_form_view` VALUES("3125", "6", "2014-10-09 07:00:06", "66.249.67.76", "1412");
INSERT INTO `wp_gf_form_view` VALUES("3126", "3", "2014-10-09 08:00:00", "66.249.67.84", "5726");
INSERT INTO `wp_gf_form_view` VALUES("3127", "6", "2014-10-09 08:00:02", "66.249.67.84", "1398");
INSERT INTO `wp_gf_form_view` VALUES("3128", "3", "2014-10-09 09:00:00", "66.249.67.76", "5658");
INSERT INTO `wp_gf_form_view` VALUES("3129", "6", "2014-10-09 09:00:00", "66.249.67.76", "1384");
INSERT INTO `wp_gf_form_view` VALUES("3130", "3", "2014-10-09 10:00:00", "66.249.67.92", "2012");
INSERT INTO `wp_gf_form_view` VALUES("3131", "6", "2014-10-09 10:00:02", "66.249.67.92", "496");
INSERT INTO `wp_gf_form_view` VALUES("3132", "3", "2014-10-09 11:01:08", "66.249.67.84", "4441");
INSERT INTO `wp_gf_form_view` VALUES("3133", "6", "2014-10-09 11:01:09", "66.249.67.84", "1088");
INSERT INTO `wp_gf_form_view` VALUES("3134", "3", "2014-10-09 12:00:00", "66.249.67.76", "5372");
INSERT INTO `wp_gf_form_view` VALUES("3135", "6", "2014-10-09 12:00:00", "66.249.67.76", "1300");
INSERT INTO `wp_gf_form_view` VALUES("3136", "3", "2014-10-09 13:00:00", "66.249.67.84", "5450");
INSERT INTO `wp_gf_form_view` VALUES("3137", "6", "2014-10-09 13:00:01", "66.249.67.84", "1340");
INSERT INTO `wp_gf_form_view` VALUES("3138", "3", "2014-10-09 14:00:07", "66.249.67.92", "5190");
INSERT INTO `wp_gf_form_view` VALUES("3139", "6", "2014-10-09 14:00:09", "66.249.67.92", "1272");
INSERT INTO `wp_gf_form_view` VALUES("3140", "3", "2014-10-09 15:00:00", "66.249.67.92", "4692");
INSERT INTO `wp_gf_form_view` VALUES("3141", "6", "2014-10-09 15:00:02", "66.249.67.92", "1144");
INSERT INTO `wp_gf_form_view` VALUES("3142", "3", "2014-10-09 16:00:00", "66.249.67.84", "5744");
INSERT INTO `wp_gf_form_view` VALUES("3143", "6", "2014-10-09 16:00:01", "66.249.67.84", "1410");
INSERT INTO `wp_gf_form_view` VALUES("3144", "3", "2014-10-09 17:00:00", "66.249.67.84", "6296");
INSERT INTO `wp_gf_form_view` VALUES("3145", "6", "2014-10-09 17:00:03", "66.249.67.84", "1536");
INSERT INTO `wp_gf_form_view` VALUES("3146", "3", "2014-10-09 18:00:00", "66.249.67.76", "6093");
INSERT INTO `wp_gf_form_view` VALUES("3147", "6", "2014-10-09 18:00:03", "66.249.67.76", "1486");
INSERT INTO `wp_gf_form_view` VALUES("3148", "6", "2014-10-09 19:00:00", "66.249.67.76", "1474");
INSERT INTO `wp_gf_form_view` VALUES("3149", "3", "2014-10-09 19:00:03", "66.249.67.76", "6033");
INSERT INTO `wp_gf_form_view` VALUES("3150", "3", "2014-10-09 20:00:00", "66.249.67.76", "6217");
INSERT INTO `wp_gf_form_view` VALUES("3151", "6", "2014-10-09 20:00:02", "66.249.67.76", "1520");
INSERT INTO `wp_gf_form_view` VALUES("3152", "3", "2014-10-09 21:00:00", "66.249.67.76", "5914");
INSERT INTO `wp_gf_form_view` VALUES("3153", "6", "2014-10-09 21:00:03", "66.249.67.76", "1440");
INSERT INTO `wp_gf_form_view` VALUES("3154", "3", "2014-10-09 22:00:00", "66.249.67.76", "1552");
INSERT INTO `wp_gf_form_view` VALUES("3155", "6", "2014-10-09 22:00:00", "66.249.67.76", "378");
INSERT INTO `wp_gf_form_view` VALUES("3156", "3", "2014-10-09 23:00:36", "66.249.67.92", "4409");
INSERT INTO `wp_gf_form_view` VALUES("3157", "6", "2014-10-09 23:00:38", "66.249.67.92", "1082");
INSERT INTO `wp_gf_form_view` VALUES("3158", "3", "2014-10-10 00:00:00", "66.249.67.76", "5539");
INSERT INTO `wp_gf_form_view` VALUES("3159", "6", "2014-10-10 00:00:00", "66.249.67.76", "1358");
INSERT INTO `wp_gf_form_view` VALUES("3160", "3", "2014-10-10 01:00:05", "66.249.67.84", "5433");
INSERT INTO `wp_gf_form_view` VALUES("3161", "6", "2014-10-10 01:00:07", "66.249.67.84", "1336");
INSERT INTO `wp_gf_form_view` VALUES("3162", "3", "2014-10-10 02:00:00", "66.249.67.84", "5072");
INSERT INTO `wp_gf_form_view` VALUES("3163", "6", "2014-10-10 02:00:02", "66.249.67.84", "1252");
INSERT INTO `wp_gf_form_view` VALUES("3164", "1", "2014-10-10 02:29:36", "192.81.212.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("3165", "2", "2014-10-10 02:29:36", "192.81.212.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("3166", "3", "2014-10-10 03:00:08", "66.249.67.76", "5305");
INSERT INTO `wp_gf_form_view` VALUES("3167", "6", "2014-10-10 03:00:10", "66.249.67.76", "1304");
INSERT INTO `wp_gf_form_view` VALUES("3168", "1", "2014-10-10 03:47:39", "182.96.174.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("3169", "2", "2014-10-10 03:47:46", "182.96.174.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("3170", "3", "2014-10-10 04:00:00", "66.249.67.84", "4865");
INSERT INTO `wp_gf_form_view` VALUES("3171", "6", "2014-10-10 04:00:01", "66.249.67.84", "1198");
INSERT INTO `wp_gf_form_view` VALUES("3172", "3", "2014-10-10 05:00:02", "66.249.67.84", "5368");
INSERT INTO `wp_gf_form_view` VALUES("3173", "6", "2014-10-10 05:00:04", "66.249.67.84", "1302");
INSERT INTO `wp_gf_form_view` VALUES("3174", "6", "2014-10-10 06:00:00", "66.249.67.92", "1364");
INSERT INTO `wp_gf_form_view` VALUES("3175", "3", "2014-10-10 06:00:03", "66.249.67.76", "5550");
INSERT INTO `wp_gf_form_view` VALUES("3176", "3", "2014-10-10 07:00:04", "66.249.67.84", "5514");
INSERT INTO `wp_gf_form_view` VALUES("3177", "6", "2014-10-10 07:00:06", "66.249.67.84", "1340");
INSERT INTO `wp_gf_form_view` VALUES("3178", "3", "2014-10-10 08:00:00", "66.249.67.84", "5497");
INSERT INTO `wp_gf_form_view` VALUES("3179", "6", "2014-10-10 08:00:00", "66.249.67.84", "1342");
INSERT INTO `wp_gf_form_view` VALUES("3180", "3", "2014-10-10 09:00:00", "66.249.67.92", "5143");
INSERT INTO `wp_gf_form_view` VALUES("3181", "6", "2014-10-10 09:00:00", "66.249.67.92", "1252");
INSERT INTO `wp_gf_form_view` VALUES("3182", "3", "2014-10-10 10:01:02", "66.249.67.76", "1024");
INSERT INTO `wp_gf_form_view` VALUES("3183", "6", "2014-10-10 10:01:04", "66.249.67.76", "246");
INSERT INTO `wp_gf_form_view` VALUES("3184", "1", "2014-10-10 10:12:28", "182.96.174.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("3185", "2", "2014-10-10 10:12:39", "182.96.174.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("3186", "3", "2014-10-10 11:00:08", "66.249.67.92", "5000");
INSERT INTO `wp_gf_form_view` VALUES("3187", "6", "2014-10-10 11:00:08", "66.249.67.92", "1214");
INSERT INTO `wp_gf_form_view` VALUES("3188", "3", "2014-10-10 12:00:03", "66.249.67.92", "5226");
INSERT INTO `wp_gf_form_view` VALUES("3189", "6", "2014-10-10 12:00:05", "66.249.67.92", "1282");
INSERT INTO `wp_gf_form_view` VALUES("3190", "6", "2014-10-10 13:00:00", "66.249.67.92", "1172");
INSERT INTO `wp_gf_form_view` VALUES("3191", "3", "2014-10-10 13:00:03", "66.249.67.84", "4809");
INSERT INTO `wp_gf_form_view` VALUES("3192", "3", "2014-10-10 14:00:00", "66.249.67.92", "5271");
INSERT INTO `wp_gf_form_view` VALUES("3193", "6", "2014-10-10 14:00:01", "66.249.67.92", "1294");
INSERT INTO `wp_gf_form_view` VALUES("3194", "3", "2014-10-10 15:00:00", "66.249.67.84", "5178");
INSERT INTO `wp_gf_form_view` VALUES("3195", "6", "2014-10-10 15:00:00", "66.249.67.84", "1278");
INSERT INTO `wp_gf_form_view` VALUES("3196", "3", "2014-10-10 16:00:00", "66.249.67.76", "4881");
INSERT INTO `wp_gf_form_view` VALUES("3197", "6", "2014-10-10 16:00:02", "66.249.67.76", "1208");
INSERT INTO `wp_gf_form_view` VALUES("3198", "3", "2014-10-10 17:00:00", "66.249.67.92", "5159");
INSERT INTO `wp_gf_form_view` VALUES("3199", "6", "2014-10-10 17:00:00", "66.249.67.92", "1266");
INSERT INTO `wp_gf_form_view` VALUES("3200", "6", "2014-10-10 18:00:00", "66.249.67.76", "1282");
INSERT INTO `wp_gf_form_view` VALUES("3201", "3", "2014-10-10 18:00:00", "66.249.67.92", "5209");
INSERT INTO `wp_gf_form_view` VALUES("3202", "3", "2014-10-10 19:00:00", "66.249.67.84", "5264");
INSERT INTO `wp_gf_form_view` VALUES("3203", "6", "2014-10-10 19:00:01", "66.249.67.84", "1298");
INSERT INTO `wp_gf_form_view` VALUES("3204", "3", "2014-10-10 20:00:00", "66.249.67.84", "5245");
INSERT INTO `wp_gf_form_view` VALUES("3205", "6", "2014-10-10 20:00:01", "66.249.67.84", "1294");
INSERT INTO `wp_gf_form_view` VALUES("3206", "3", "2014-10-10 21:00:00", "66.249.67.76", "4876");
INSERT INTO `wp_gf_form_view` VALUES("3207", "6", "2014-10-10 21:00:02", "66.249.67.76", "1198");
INSERT INTO `wp_gf_form_view` VALUES("3208", "3", "2014-10-10 22:00:01", "24.84.237.133", "2238");
INSERT INTO `wp_gf_form_view` VALUES("3209", "6", "2014-10-10 22:00:03", "24.84.237.133", "544");
INSERT INTO `wp_gf_form_view` VALUES("3210", "3", "2014-10-10 23:00:00", "66.249.67.84", "5278");
INSERT INTO `wp_gf_form_view` VALUES("3211", "6", "2014-10-10 23:00:01", "66.249.67.84", "1300");
INSERT INTO `wp_gf_form_view` VALUES("3212", "3", "2014-10-11 00:00:02", "66.249.67.84", "5402");
INSERT INTO `wp_gf_form_view` VALUES("3213", "6", "2014-10-11 00:00:04", "66.249.67.84", "1322");
INSERT INTO `wp_gf_form_view` VALUES("3214", "3", "2014-10-11 01:00:00", "66.249.67.84", "4928");
INSERT INTO `wp_gf_form_view` VALUES("3215", "6", "2014-10-11 01:00:00", "66.249.67.84", "1210");
INSERT INTO `wp_gf_form_view` VALUES("3216", "3", "2014-10-11 02:00:00", "66.249.67.92", "5395");
INSERT INTO `wp_gf_form_view` VALUES("3217", "6", "2014-10-11 02:00:00", "66.249.67.92", "1325");
INSERT INTO `wp_gf_form_view` VALUES("3218", "3", "2014-10-11 03:00:01", "66.249.67.92", "5334");
INSERT INTO `wp_gf_form_view` VALUES("3219", "6", "2014-10-11 03:00:03", "66.249.67.92", "1303");
INSERT INTO `wp_gf_form_view` VALUES("3220", "6", "2014-10-11 04:00:00", "66.249.67.92", "1319");
INSERT INTO `wp_gf_form_view` VALUES("3221", "3", "2014-10-11 04:00:02", "66.249.67.84", "5391");
INSERT INTO `wp_gf_form_view` VALUES("3222", "3", "2014-10-11 05:00:00", "66.249.67.76", "5327");
INSERT INTO `wp_gf_form_view` VALUES("3223", "6", "2014-10-11 05:00:01", "66.249.67.76", "1312");
INSERT INTO `wp_gf_form_view` VALUES("3224", "2", "2014-10-11 05:58:07", "96.50.109.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("3225", "3", "2014-10-11 06:00:00", "66.249.67.84", "5438");
INSERT INTO `wp_gf_form_view` VALUES("3226", "6", "2014-10-11 06:00:00", "66.249.67.84", "1331");
INSERT INTO `wp_gf_form_view` VALUES("3227", "6", "2014-10-11 07:00:00", "66.249.67.92", "1327");
INSERT INTO `wp_gf_form_view` VALUES("3228", "3", "2014-10-11 07:00:02", "66.249.67.92", "5392");
INSERT INTO `wp_gf_form_view` VALUES("3229", "6", "2014-10-11 08:00:00", "66.249.67.92", "1332");
INSERT INTO `wp_gf_form_view` VALUES("3230", "3", "2014-10-11 08:00:08", "66.249.67.92", "5392");
INSERT INTO `wp_gf_form_view` VALUES("3231", "3", "2014-10-11 09:00:00", "66.249.67.92", "2604");
INSERT INTO `wp_gf_form_view` VALUES("3232", "6", "2014-10-11 09:00:02", "66.249.67.92", "640");
INSERT INTO `wp_gf_form_view` VALUES("3233", "3", "2014-10-11 10:00:47", "66.249.67.92", "1076");
INSERT INTO `wp_gf_form_view` VALUES("3234", "6", "2014-10-11 10:00:49", "66.249.67.92", "268");
INSERT INTO `wp_gf_form_view` VALUES("3235", "3", "2014-10-11 11:00:02", "66.249.67.76", "5017");
INSERT INTO `wp_gf_form_view` VALUES("3236", "6", "2014-10-11 11:00:02", "66.249.67.76", "1226");
INSERT INTO `wp_gf_form_view` VALUES("3237", "3", "2014-10-11 12:00:00", "66.249.67.84", "5326");
INSERT INTO `wp_gf_form_view` VALUES("3238", "6", "2014-10-11 12:00:01", "66.249.67.84", "1308");
INSERT INTO `wp_gf_form_view` VALUES("3239", "3", "2014-10-11 13:00:01", "66.249.67.84", "5654");
INSERT INTO `wp_gf_form_view` VALUES("3240", "6", "2014-10-11 13:00:04", "66.249.67.84", "1384");
INSERT INTO `wp_gf_form_view` VALUES("3241", "3", "2014-10-11 14:00:02", "66.249.67.84", "5444");
INSERT INTO `wp_gf_form_view` VALUES("3242", "6", "2014-10-11 14:00:05", "66.249.67.84", "1344");
INSERT INTO `wp_gf_form_view` VALUES("3243", "3", "2014-10-11 15:00:06", "66.249.67.76", "5585");
INSERT INTO `wp_gf_form_view` VALUES("3244", "6", "2014-10-11 15:00:08", "66.249.67.76", "1371");
INSERT INTO `wp_gf_form_view` VALUES("3245", "1", "2014-10-11 15:15:05", "204.45.103.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("3246", "2", "2014-10-11 15:15:19", "204.45.103.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("3247", "3", "2014-10-11 16:00:00", "66.249.67.92", "5245");
INSERT INTO `wp_gf_form_view` VALUES("3248", "6", "2014-10-11 16:00:02", "66.249.67.92", "1284");
INSERT INTO `wp_gf_form_view` VALUES("3249", "1", "2014-10-11 16:15:52", "192.99.141.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("3250", "3", "2014-10-11 17:00:02", "66.249.67.76", "5349");
INSERT INTO `wp_gf_form_view` VALUES("3251", "6", "2014-10-11 17:00:04", "66.249.67.76", "1316");
INSERT INTO `wp_gf_form_view` VALUES("3252", "6", "2014-10-11 18:00:00", "66.249.67.92", "1325");
INSERT INTO `wp_gf_form_view` VALUES("3253", "3", "2014-10-11 18:00:07", "66.249.67.84", "5376");
INSERT INTO `wp_gf_form_view` VALUES("3254", "3", "2014-10-11 19:00:00", "66.249.67.84", "5656");
INSERT INTO `wp_gf_form_view` VALUES("3255", "6", "2014-10-11 19:00:00", "66.249.67.84", "1382");
INSERT INTO `wp_gf_form_view` VALUES("3256", "3", "2014-10-11 20:00:00", "66.249.67.76", "5492");
INSERT INTO `wp_gf_form_view` VALUES("3257", "6", "2014-10-11 20:00:01", "66.249.67.76", "1348");
INSERT INTO `wp_gf_form_view` VALUES("3258", "6", "2014-10-11 21:00:00", "66.249.67.76", "676");
INSERT INTO `wp_gf_form_view` VALUES("3259", "3", "2014-10-11 21:00:03", "66.249.67.84", "2744");
INSERT INTO `wp_gf_form_view` VALUES("3260", "3", "2014-10-11 22:01:20", "66.249.67.76", "2982");
INSERT INTO `wp_gf_form_view` VALUES("3261", "6", "2014-10-11 22:01:21", "66.249.67.76", "732");
INSERT INTO `wp_gf_form_view` VALUES("3262", "6", "2014-10-11 23:00:00", "66.249.67.76", "1288");
INSERT INTO `wp_gf_form_view` VALUES("3263", "3", "2014-10-11 23:00:04", "66.249.67.84", "5214");
INSERT INTO `wp_gf_form_view` VALUES("3264", "3", "2014-10-12 00:00:23", "66.249.67.76", "5540");
INSERT INTO `wp_gf_form_view` VALUES("3265", "6", "2014-10-12 00:00:26", "66.249.67.76", "1360");
INSERT INTO `wp_gf_form_view` VALUES("3266", "3", "2014-10-12 01:00:00", "66.249.67.84", "5552");
INSERT INTO `wp_gf_form_view` VALUES("3267", "6", "2014-10-12 01:00:02", "66.249.67.84", "1364");
INSERT INTO `wp_gf_form_view` VALUES("3268", "3", "2014-10-12 02:00:00", "66.249.67.92", "5500");
INSERT INTO `wp_gf_form_view` VALUES("3269", "6", "2014-10-12 02:00:01", "66.249.67.92", "1356");
INSERT INTO `wp_gf_form_view` VALUES("3270", "3", "2014-10-12 03:00:00", "66.249.67.92", "5405");
INSERT INTO `wp_gf_form_view` VALUES("3271", "6", "2014-10-12 03:00:00", "66.249.67.92", "1332");
INSERT INTO `wp_gf_form_view` VALUES("3272", "6", "2014-10-12 04:00:00", "66.249.67.92", "1270");
INSERT INTO `wp_gf_form_view` VALUES("3273", "3", "2014-10-12 04:00:03", "66.249.67.76", "5154");
INSERT INTO `wp_gf_form_view` VALUES("3274", "3", "2014-10-12 05:00:02", "66.249.67.84", "5026");
INSERT INTO `wp_gf_form_view` VALUES("3275", "6", "2014-10-12 05:00:04", "66.249.67.84", "1244");
INSERT INTO `wp_gf_form_view` VALUES("3276", "3", "2014-10-12 06:00:02", "66.249.67.76", "5322");
INSERT INTO `wp_gf_form_view` VALUES("3277", "6", "2014-10-12 06:00:04", "66.249.67.76", "1304");
INSERT INTO `wp_gf_form_view` VALUES("3278", "3", "2014-10-12 07:00:03", "66.249.67.76", "5493");
INSERT INTO `wp_gf_form_view` VALUES("3279", "6", "2014-10-12 07:00:05", "66.249.67.76", "1346");
INSERT INTO `wp_gf_form_view` VALUES("3280", "3", "2014-10-12 08:00:00", "66.249.67.76", "5300");
INSERT INTO `wp_gf_form_view` VALUES("3281", "6", "2014-10-12 08:00:00", "66.249.67.76", "1300");
INSERT INTO `wp_gf_form_view` VALUES("3282", "3", "2014-10-12 09:00:02", "66.249.67.76", "1338");
INSERT INTO `wp_gf_form_view` VALUES("3283", "6", "2014-10-12 09:00:04", "66.249.67.76", "328");
INSERT INTO `wp_gf_form_view` VALUES("3284", "3", "2014-10-12 10:00:09", "66.249.67.76", "4522");
INSERT INTO `wp_gf_form_view` VALUES("3285", "6", "2014-10-12 10:00:10", "66.249.67.76", "1104");
INSERT INTO `wp_gf_form_view` VALUES("3286", "3", "2014-10-12 11:00:00", "66.249.67.84", "5577");
INSERT INTO `wp_gf_form_view` VALUES("3287", "6", "2014-10-12 11:00:02", "66.249.67.84", "1380");
INSERT INTO `wp_gf_form_view` VALUES("3288", "1", "2014-10-12 11:50:17", "207.63.249.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("3289", "2", "2014-10-12 11:50:27", "207.63.249.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("3290", "3", "2014-10-12 12:00:00", "66.249.67.92", "5446");
INSERT INTO `wp_gf_form_view` VALUES("3291", "6", "2014-10-12 12:00:03", "66.249.67.92", "1348");
INSERT INTO `wp_gf_form_view` VALUES("3292", "1", "2014-10-12 12:05:14", "192.99.141.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("3293", "3", "2014-10-12 13:00:01", "66.249.67.92", "5486");
INSERT INTO `wp_gf_form_view` VALUES("3294", "6", "2014-10-12 13:00:04", "66.249.67.92", "1346");
INSERT INTO `wp_gf_form_view` VALUES("3295", "6", "2014-10-12 14:00:00", "66.249.67.76", "1348");
INSERT INTO `wp_gf_form_view` VALUES("3296", "3", "2014-10-12 14:00:03", "66.249.67.92", "5473");
INSERT INTO `wp_gf_form_view` VALUES("3297", "3", "2014-10-12 15:00:00", "66.249.67.76", "4305");
INSERT INTO `wp_gf_form_view` VALUES("3298", "6", "2014-10-12 15:00:00", "66.249.67.76", "1058");
INSERT INTO `wp_gf_form_view` VALUES("3299", "3", "2014-10-12 16:00:07", "66.249.67.84", "5584");
INSERT INTO `wp_gf_form_view` VALUES("3300", "6", "2014-10-12 16:00:09", "66.249.67.84", "1374");
INSERT INTO `wp_gf_form_view` VALUES("3301", "3", "2014-10-12 17:00:00", "66.249.67.76", "5436");
INSERT INTO `wp_gf_form_view` VALUES("3302", "6", "2014-10-12 17:00:04", "66.249.67.76", "1346");
INSERT INTO `wp_gf_form_view` VALUES("3303", "3", "2014-10-12 18:00:14", "66.249.67.76", "4782");
INSERT INTO `wp_gf_form_view` VALUES("3304", "6", "2014-10-12 18:00:16", "66.249.67.76", "1172");
INSERT INTO `wp_gf_form_view` VALUES("3305", "3", "2014-10-12 19:00:01", "66.249.67.76", "5042");
INSERT INTO `wp_gf_form_view` VALUES("3306", "6", "2014-10-12 19:00:03", "66.249.67.76", "1240");
INSERT INTO `wp_gf_form_view` VALUES("3307", "3", "2014-10-12 20:00:01", "66.249.67.84", "5127");
INSERT INTO `wp_gf_form_view` VALUES("3308", "6", "2014-10-12 20:00:03", "66.249.67.84", "1260");
INSERT INTO `wp_gf_form_view` VALUES("3309", "3", "2014-10-12 21:00:00", "66.249.67.84", "1654");
INSERT INTO `wp_gf_form_view` VALUES("3310", "6", "2014-10-12 21:00:00", "66.249.67.84", "406");
INSERT INTO `wp_gf_form_view` VALUES("3311", "3", "2014-10-12 22:00:31", "66.249.67.76", "2648");
INSERT INTO `wp_gf_form_view` VALUES("3312", "6", "2014-10-12 22:00:32", "66.249.67.76", "650");
INSERT INTO `wp_gf_form_view` VALUES("3313", "3", "2014-10-12 23:00:01", "66.249.67.92", "5542");
INSERT INTO `wp_gf_form_view` VALUES("3314", "6", "2014-10-12 23:00:02", "66.249.67.92", "1366");
INSERT INTO `wp_gf_form_view` VALUES("3315", "3", "2014-10-13 00:00:00", "66.249.67.76", "5684");
INSERT INTO `wp_gf_form_view` VALUES("3316", "6", "2014-10-13 00:00:02", "66.249.67.76", "1408");
INSERT INTO `wp_gf_form_view` VALUES("3317", "2", "2014-10-13 00:37:17", "23.254.130.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("3318", "1", "2014-10-13 00:37:23", "23.254.130.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("3319", "3", "2014-10-13 01:00:06", "66.249.67.76", "5740");
INSERT INTO `wp_gf_form_view` VALUES("3320", "6", "2014-10-13 01:00:09", "66.249.67.76", "1408");
INSERT INTO `wp_gf_form_view` VALUES("3321", "3", "2014-10-13 02:00:02", "66.249.67.84", "5692");
INSERT INTO `wp_gf_form_view` VALUES("3322", "6", "2014-10-13 02:00:04", "66.249.67.84", "1402");
INSERT INTO `wp_gf_form_view` VALUES("3323", "3", "2014-10-13 03:00:00", "66.249.67.84", "5601");
INSERT INTO `wp_gf_form_view` VALUES("3324", "6", "2014-10-13 03:00:02", "66.249.67.84", "1376");
INSERT INTO `wp_gf_form_view` VALUES("3325", "3", "2014-10-13 04:00:00", "66.249.67.76", "5664");
INSERT INTO `wp_gf_form_view` VALUES("3326", "6", "2014-10-13 04:00:00", "66.249.67.76", "1396");
INSERT INTO `wp_gf_form_view` VALUES("3327", "3", "2014-10-13 05:00:00", "66.249.67.76", "5677");
INSERT INTO `wp_gf_form_view` VALUES("3328", "6", "2014-10-13 05:00:02", "66.249.67.76", "1392");
INSERT INTO `wp_gf_form_view` VALUES("3329", "3", "2014-10-13 06:00:00", "66.249.67.76", "5623");
INSERT INTO `wp_gf_form_view` VALUES("3330", "6", "2014-10-13 06:00:01", "66.249.67.76", "1367");
INSERT INTO `wp_gf_form_view` VALUES("3331", "6", "2014-10-13 07:00:00", "66.249.67.76", "1371");
INSERT INTO `wp_gf_form_view` VALUES("3332", "3", "2014-10-13 07:00:00", "66.249.67.76", "5632");
INSERT INTO `wp_gf_form_view` VALUES("3333", "3", "2014-10-13 08:00:00", "66.249.67.84", "5468");
INSERT INTO `wp_gf_form_view` VALUES("3334", "6", "2014-10-13 08:00:02", "66.249.67.84", "1348");
INSERT INTO `wp_gf_form_view` VALUES("3335", "3", "2014-10-13 09:01:16", "66.249.67.76", "793");
INSERT INTO `wp_gf_form_view` VALUES("3336", "6", "2014-10-13 09:01:18", "66.249.67.76", "196");
INSERT INTO `wp_gf_form_view` VALUES("3337", "3", "2014-10-13 10:00:00", "66.249.67.84", "4879");
INSERT INTO `wp_gf_form_view` VALUES("3338", "6", "2014-10-13 10:00:00", "66.249.67.84", "1202");
INSERT INTO `wp_gf_form_view` VALUES("3339", "3", "2014-10-13 11:00:00", "66.249.67.76", "5514");
INSERT INTO `wp_gf_form_view` VALUES("3340", "6", "2014-10-13 11:00:00", "66.249.67.76", "1354");
INSERT INTO `wp_gf_form_view` VALUES("3341", "3", "2014-10-13 12:00:02", "66.249.67.84", "5676");
INSERT INTO `wp_gf_form_view` VALUES("3342", "6", "2014-10-13 12:00:04", "66.249.67.84", "1396");
INSERT INTO `wp_gf_form_view` VALUES("3343", "3", "2014-10-13 13:00:01", "66.249.67.92", "5700");
INSERT INTO `wp_gf_form_view` VALUES("3344", "6", "2014-10-13 13:00:03", "66.249.67.92", "1402");
INSERT INTO `wp_gf_form_view` VALUES("3345", "3", "2014-10-13 14:00:01", "66.249.67.84", "5834");
INSERT INTO `wp_gf_form_view` VALUES("3346", "6", "2014-10-13 14:00:03", "66.249.67.84", "1432");
INSERT INTO `wp_gf_form_view` VALUES("3347", "3", "2014-10-13 15:00:03", "66.249.67.84", "5232");
INSERT INTO `wp_gf_form_view` VALUES("3348", "6", "2014-10-13 15:00:05", "66.249.67.84", "1284");
INSERT INTO `wp_gf_form_view` VALUES("3349", "6", "2014-10-13 16:00:00", "66.249.67.84", "1326");
INSERT INTO `wp_gf_form_view` VALUES("3350", "3", "2014-10-13 16:00:03", "66.249.67.84", "5374");
INSERT INTO `wp_gf_form_view` VALUES("3351", "3", "2014-10-13 17:00:02", "66.249.67.84", "5381");
INSERT INTO `wp_gf_form_view` VALUES("3352", "6", "2014-10-13 17:00:04", "66.249.67.84", "1324");
INSERT INTO `wp_gf_form_view` VALUES("3353", "3", "2014-10-13 18:00:00", "66.249.67.84", "5405");
INSERT INTO `wp_gf_form_view` VALUES("3354", "6", "2014-10-13 18:00:00", "66.249.67.84", "1330");
INSERT INTO `wp_gf_form_view` VALUES("3355", "3", "2014-10-13 19:00:00", "66.249.67.84", "5285");
INSERT INTO `wp_gf_form_view` VALUES("3356", "6", "2014-10-13 19:00:01", "66.249.67.84", "1300");
INSERT INTO `wp_gf_form_view` VALUES("3357", "3", "2014-10-13 20:00:00", "66.249.67.92", "3519");
INSERT INTO `wp_gf_form_view` VALUES("3358", "6", "2014-10-13 20:00:01", "66.249.67.92", "872");
INSERT INTO `wp_gf_form_view` VALUES("3359", "3", "2014-10-13 21:01:39", "66.249.67.92", "1176");
INSERT INTO `wp_gf_form_view` VALUES("3360", "6", "2014-10-13 21:01:41", "66.249.67.92", "290");
INSERT INTO `wp_gf_form_view` VALUES("3361", "3", "2014-10-13 22:00:03", "66.249.67.84", "4997");
INSERT INTO `wp_gf_form_view` VALUES("3362", "6", "2014-10-13 22:00:03", "66.249.67.84", "1224");
INSERT INTO `wp_gf_form_view` VALUES("3363", "3", "2014-10-13 23:00:00", "66.249.67.76", "5195");
INSERT INTO `wp_gf_form_view` VALUES("3364", "6", "2014-10-13 23:00:00", "66.249.67.76", "1282");
INSERT INTO `wp_gf_form_view` VALUES("3365", "3", "2014-10-14 00:00:02", "66.249.67.84", "4620");
INSERT INTO `wp_gf_form_view` VALUES("3366", "6", "2014-10-14 00:00:04", "66.249.67.84", "1140");
INSERT INTO `wp_gf_form_view` VALUES("3367", "3", "2014-10-14 01:00:45", "66.249.67.92", "4135");
INSERT INTO `wp_gf_form_view` VALUES("3368", "6", "2014-10-14 01:00:47", "66.249.67.92", "1015");
INSERT INTO `wp_gf_form_view` VALUES("3369", "1", "2014-10-14 01:14:29", "65.49.14.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("3370", "3", "2014-10-14 02:00:00", "66.249.67.84", "6134");
INSERT INTO `wp_gf_form_view` VALUES("3371", "6", "2014-10-14 02:00:00", "66.249.67.84", "1523");
INSERT INTO `wp_gf_form_view` VALUES("3372", "2", "2014-10-14 02:07:08", "65.49.14.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("3373", "1", "2014-10-14 02:41:55", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3374", "3", "2014-10-14 03:00:00", "66.249.67.76", "6437");
INSERT INTO `wp_gf_form_view` VALUES("3375", "6", "2014-10-14 03:00:03", "66.249.67.76", "1567");
INSERT INTO `wp_gf_form_view` VALUES("3376", "3", "2014-10-14 04:00:00", "66.249.67.84", "5828");
INSERT INTO `wp_gf_form_view` VALUES("3377", "6", "2014-10-14 04:00:02", "66.249.67.84", "1438");
INSERT INTO `wp_gf_form_view` VALUES("3378", "3", "2014-10-14 05:00:41", "116.102.130.138", "5746");
INSERT INTO `wp_gf_form_view` VALUES("3379", "6", "2014-10-14 05:00:44", "116.102.130.138", "1408");
INSERT INTO `wp_gf_form_view` VALUES("3380", "3", "2014-10-14 06:00:02", "66.249.67.76", "6794");
INSERT INTO `wp_gf_form_view` VALUES("3381", "6", "2014-10-14 06:00:04", "66.249.67.76", "1657");
INSERT INTO `wp_gf_form_view` VALUES("3382", "2", "2014-10-14 06:33:13", "198.143.158.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("3383", "1", "2014-10-14 06:36:20", "198.143.158.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("3384", "3", "2014-10-14 07:00:04", "66.249.67.84", "5428");
INSERT INTO `wp_gf_form_view` VALUES("3385", "6", "2014-10-14 07:00:07", "66.249.67.84", "1339");
INSERT INTO `wp_gf_form_view` VALUES("3386", "3", "2014-10-14 08:00:00", "66.249.67.84", "1812");
INSERT INTO `wp_gf_form_view` VALUES("3387", "6", "2014-10-14 08:00:03", "66.249.67.84", "442");
INSERT INTO `wp_gf_form_view` VALUES("3388", "3", "2014-10-14 09:01:16", "66.249.67.76", "2164");
INSERT INTO `wp_gf_form_view` VALUES("3389", "6", "2014-10-14 09:01:17", "66.249.67.76", "534");
INSERT INTO `wp_gf_form_view` VALUES("3390", "3", "2014-10-14 10:00:06", "66.249.67.92", "5381");
INSERT INTO `wp_gf_form_view` VALUES("3391", "6", "2014-10-14 10:00:07", "66.249.67.92", "1316");
INSERT INTO `wp_gf_form_view` VALUES("3392", "3", "2014-10-14 11:00:00", "66.249.67.76", "5465");
INSERT INTO `wp_gf_form_view` VALUES("3393", "6", "2014-10-14 11:00:01", "66.249.67.76", "1342");
INSERT INTO `wp_gf_form_view` VALUES("3394", "3", "2014-10-14 12:00:00", "66.249.67.76", "5060");
INSERT INTO `wp_gf_form_view` VALUES("3395", "6", "2014-10-14 12:00:00", "66.249.67.76", "1246");
INSERT INTO `wp_gf_form_view` VALUES("3396", "3", "2014-10-14 13:00:00", "66.249.67.84", "5526");
INSERT INTO `wp_gf_form_view` VALUES("3397", "6", "2014-10-14 13:00:00", "66.249.67.84", "1362");
INSERT INTO `wp_gf_form_view` VALUES("3398", "3", "2014-10-14 14:00:01", "66.249.67.92", "6209");
INSERT INTO `wp_gf_form_view` VALUES("3399", "6", "2014-10-14 14:00:03", "66.249.67.92", "1520");
INSERT INTO `wp_gf_form_view` VALUES("3400", "3", "2014-10-14 15:00:01", "66.249.67.92", "5400");
INSERT INTO `wp_gf_form_view` VALUES("3401", "6", "2014-10-14 15:00:04", "66.249.67.92", "1326");
INSERT INTO `wp_gf_form_view` VALUES("3402", "3", "2014-10-14 16:00:01", "66.249.67.76", "5548");
INSERT INTO `wp_gf_form_view` VALUES("3403", "6", "2014-10-14 16:00:04", "66.249.67.76", "1364");
INSERT INTO `wp_gf_form_view` VALUES("3404", "3", "2014-10-14 17:00:00", "66.249.67.76", "5945");
INSERT INTO `wp_gf_form_view` VALUES("3405", "6", "2014-10-14 17:00:01", "66.249.67.76", "1460");
INSERT INTO `wp_gf_form_view` VALUES("3406", "1", "2014-10-14 17:19:24", "174.127.133.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("3407", "2", "2014-10-14 17:21:50", "174.127.133.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("3408", "3", "2014-10-14 18:00:00", "66.249.67.76", "4904");
INSERT INTO `wp_gf_form_view` VALUES("3409", "6", "2014-10-14 18:00:02", "66.249.67.76", "1202");
INSERT INTO `wp_gf_form_view` VALUES("3410", "6", "2014-10-14 19:00:00", "66.249.67.92", "1254");
INSERT INTO `wp_gf_form_view` VALUES("3411", "3", "2014-10-14 19:00:05", "66.249.67.76", "5140");
INSERT INTO `wp_gf_form_view` VALUES("3412", "3", "2014-10-14 20:00:00", "66.249.79.76", "1424");
INSERT INTO `wp_gf_form_view` VALUES("3413", "6", "2014-10-14 20:00:03", "66.249.79.76", "352");
INSERT INTO `wp_gf_form_view` VALUES("3414", "3", "2014-10-14 21:14:24", "66.249.79.76", "1484");
INSERT INTO `wp_gf_form_view` VALUES("3415", "6", "2014-10-14 21:14:25", "66.249.79.76", "366");
INSERT INTO `wp_gf_form_view` VALUES("3416", "3", "2014-10-14 22:00:05", "66.249.79.92", "5215");
INSERT INTO `wp_gf_form_view` VALUES("3417", "6", "2014-10-14 22:00:06", "66.249.79.92", "1288");
INSERT INTO `wp_gf_form_view` VALUES("3418", "3", "2014-10-14 23:00:00", "66.249.79.76", "5533");
INSERT INTO `wp_gf_form_view` VALUES("3419", "6", "2014-10-14 23:00:00", "66.249.79.76", "1354");
INSERT INTO `wp_gf_form_view` VALUES("3420", "3", "2014-10-15 00:00:02", "66.249.79.84", "5452");
INSERT INTO `wp_gf_form_view` VALUES("3421", "6", "2014-10-15 00:00:04", "66.249.79.84", "1328");
INSERT INTO `wp_gf_form_view` VALUES("3422", "6", "2014-10-15 01:00:00", "66.249.79.84", "1372");
INSERT INTO `wp_gf_form_view` VALUES("3423", "3", "2014-10-15 01:00:05", "66.249.79.92", "5569");
INSERT INTO `wp_gf_form_view` VALUES("3424", "2", "2014-10-15 01:15:44", "65.49.14.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("3425", "3", "2014-10-15 02:00:00", "66.249.79.92", "5415");
INSERT INTO `wp_gf_form_view` VALUES("3426", "6", "2014-10-15 02:00:02", "66.249.79.92", "1328");
INSERT INTO `wp_gf_form_view` VALUES("3427", "3", "2014-10-15 03:00:01", "66.249.79.84", "5496");
INSERT INTO `wp_gf_form_view` VALUES("3428", "6", "2014-10-15 03:00:03", "66.249.79.84", "1345");
INSERT INTO `wp_gf_form_view` VALUES("3429", "6", "2014-10-15 04:00:00", "66.249.79.92", "1311");
INSERT INTO `wp_gf_form_view` VALUES("3430", "3", "2014-10-15 04:00:02", "66.249.79.92", "5352");
INSERT INTO `wp_gf_form_view` VALUES("3431", "3", "2014-10-15 05:00:00", "66.249.79.92", "4308");
INSERT INTO `wp_gf_form_view` VALUES("3432", "6", "2014-10-15 05:00:04", "66.249.79.92", "1060");
INSERT INTO `wp_gf_form_view` VALUES("3433", "2", "2014-10-15 05:28:03", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("3434", "1", "2014-10-15 05:28:11", "192.99.149.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("3435", "3", "2014-10-15 06:00:59", "66.249.79.84", "5616");
INSERT INTO `wp_gf_form_view` VALUES("3436", "6", "2014-10-15 06:01:01", "66.249.79.84", "1378");
INSERT INTO `wp_gf_form_view` VALUES("3437", "3", "2014-10-15 07:00:00", "66.249.79.92", "5588");
INSERT INTO `wp_gf_form_view` VALUES("3438", "6", "2014-10-15 07:00:03", "66.249.79.92", "1372");
INSERT INTO `wp_gf_form_view` VALUES("3439", "3", "2014-10-15 08:00:00", "66.249.79.84", "4259");
INSERT INTO `wp_gf_form_view` VALUES("3440", "6", "2014-10-15 08:00:02", "66.249.79.84", "1025");
INSERT INTO `wp_gf_form_view` VALUES("3441", "2", "2014-10-15 08:18:04", "5.9.82.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("3442", "1", "2014-10-15 08:18:08", "5.9.82.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("3443", "3", "2014-10-15 09:05:14", "66.249.79.76", "1214");
INSERT INTO `wp_gf_form_view` VALUES("3444", "6", "2014-10-15 09:05:16", "66.249.79.76", "300");
INSERT INTO `wp_gf_form_view` VALUES("3445", "3", "2014-10-15 10:00:00", "66.249.79.92", "5381");
INSERT INTO `wp_gf_form_view` VALUES("3446", "6", "2014-10-15 10:00:01", "66.249.79.92", "1316");
INSERT INTO `wp_gf_form_view` VALUES("3447", "3", "2014-10-15 11:00:01", "66.249.79.84", "5436");
INSERT INTO `wp_gf_form_view` VALUES("3448", "6", "2014-10-15 11:00:03", "66.249.79.84", "1318");
INSERT INTO `wp_gf_form_view` VALUES("3449", "3", "2014-10-15 12:00:01", "66.249.79.92", "5566");
INSERT INTO `wp_gf_form_view` VALUES("3450", "6", "2014-10-15 12:00:03", "66.249.79.92", "1366");
INSERT INTO `wp_gf_form_view` VALUES("3451", "1", "2014-10-15 12:04:54", "175.44.34.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("3452", "3", "2014-10-15 13:00:00", "66.249.79.84", "5556");
INSERT INTO `wp_gf_form_view` VALUES("3453", "6", "2014-10-15 13:00:02", "66.249.79.84", "1357");
INSERT INTO `wp_gf_form_view` VALUES("3454", "6", "2014-10-15 14:00:00", "66.249.79.92", "1351");
INSERT INTO `wp_gf_form_view` VALUES("3455", "3", "2014-10-15 14:00:04", "66.249.79.84", "5489");
INSERT INTO `wp_gf_form_view` VALUES("3456", "3", "2014-10-15 15:00:00", "66.249.79.84", "5593");
INSERT INTO `wp_gf_form_view` VALUES("3457", "6", "2014-10-15 15:00:02", "66.249.79.84", "1376");
INSERT INTO `wp_gf_form_view` VALUES("3458", "3", "2014-10-15 16:00:01", "66.249.79.84", "5557");
INSERT INTO `wp_gf_form_view` VALUES("3459", "6", "2014-10-15 16:00:03", "66.249.79.84", "1362");
INSERT INTO `wp_gf_form_view` VALUES("3460", "1", "2014-10-15 16:47:22", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("3461", "3", "2014-10-15 17:00:00", "66.249.79.76", "5544");
INSERT INTO `wp_gf_form_view` VALUES("3462", "6", "2014-10-15 17:00:02", "66.249.79.76", "1348");
INSERT INTO `wp_gf_form_view` VALUES("3463", "3", "2014-10-15 18:00:00", "66.249.79.76", "5903");
INSERT INTO `wp_gf_form_view` VALUES("3464", "6", "2014-10-15 18:00:01", "66.249.79.76", "1443");
INSERT INTO `wp_gf_form_view` VALUES("3465", "1", "2014-10-15 18:15:55", "108.59.8.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("3466", "2", "2014-10-15 18:16:12", "108.59.8.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("3467", "3", "2014-10-15 19:00:01", "66.249.79.92", "5459");
INSERT INTO `wp_gf_form_view` VALUES("3468", "6", "2014-10-15 19:00:04", "66.249.79.92", "1344");
INSERT INTO `wp_gf_form_view` VALUES("3469", "1", "2014-10-15 19:59:46", "192.81.212.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("3470", "2", "2014-10-15 19:59:47", "192.81.212.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("3471", "3", "2014-10-15 20:00:02", "66.249.79.92", "860");
INSERT INTO `wp_gf_form_view` VALUES("3472", "6", "2014-10-15 20:00:04", "66.249.79.92", "212");
INSERT INTO `wp_gf_form_view` VALUES("3473", "3", "2014-10-15 21:00:51", "66.249.79.76", "2394");
INSERT INTO `wp_gf_form_view` VALUES("3474", "6", "2014-10-15 21:00:52", "66.249.79.76", "584");
INSERT INTO `wp_gf_form_view` VALUES("3475", "3", "2014-10-15 22:00:01", "66.249.79.76", "5406");
INSERT INTO `wp_gf_form_view` VALUES("3476", "6", "2014-10-15 22:00:02", "66.249.79.76", "1314");
INSERT INTO `wp_gf_form_view` VALUES("3477", "3", "2014-10-15 23:00:36", "66.249.79.92", "5562");
INSERT INTO `wp_gf_form_view` VALUES("3478", "6", "2014-10-15 23:00:38", "66.249.79.92", "1368");
INSERT INTO `wp_gf_form_view` VALUES("3479", "3", "2014-10-16 00:00:00", "66.249.79.84", "5456");
INSERT INTO `wp_gf_form_view` VALUES("3480", "6", "2014-10-16 00:00:02", "66.249.79.84", "1344");
INSERT INTO `wp_gf_form_view` VALUES("3481", "3", "2014-10-16 01:00:00", "66.249.79.84", "5602");
INSERT INTO `wp_gf_form_view` VALUES("3482", "6", "2014-10-16 01:00:01", "66.249.79.84", "1366");
INSERT INTO `wp_gf_form_view` VALUES("3483", "1", "2014-10-16 01:31:53", "117.174.236.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("3484", "3", "2014-10-16 02:00:01", "66.249.79.92", "5592");
INSERT INTO `wp_gf_form_view` VALUES("3485", "6", "2014-10-16 02:00:03", "66.249.79.92", "1368");
INSERT INTO `wp_gf_form_view` VALUES("3486", "3", "2014-10-16 03:00:04", "66.249.79.92", "5793");
INSERT INTO `wp_gf_form_view` VALUES("3487", "6", "2014-10-16 03:00:06", "66.249.79.92", "1408");
INSERT INTO `wp_gf_form_view` VALUES("3488", "3", "2014-10-16 04:00:00", "66.249.79.84", "7259");
INSERT INTO `wp_gf_form_view` VALUES("3489", "6", "2014-10-16 04:00:01", "66.249.79.84", "1438");
INSERT INTO `wp_gf_form_view` VALUES("3490", "3", "2014-10-16 05:00:10", "68.180.228.184", "6926");
INSERT INTO `wp_gf_form_view` VALUES("3491", "6", "2014-10-16 05:00:14", "66.249.79.92", "1370");
INSERT INTO `wp_gf_form_view` VALUES("3492", "3", "2014-10-16 06:00:00", "66.249.79.76", "6852");
INSERT INTO `wp_gf_form_view` VALUES("3493", "6", "2014-10-16 06:00:04", "66.249.79.84", "1350");
INSERT INTO `wp_gf_form_view` VALUES("3494", "3", "2014-10-16 07:00:12", "66.249.79.76", "6270");
INSERT INTO `wp_gf_form_view` VALUES("3495", "6", "2014-10-16 07:00:15", "66.249.79.76", "1234");
INSERT INTO `wp_gf_form_view` VALUES("3496", "3", "2014-10-16 08:01:55", "66.249.79.76", "124");
INSERT INTO `wp_gf_form_view` VALUES("3497", "6", "2014-10-16 08:01:58", "66.249.79.76", "24");
INSERT INTO `wp_gf_form_view` VALUES("3498", "3", "2014-10-16 09:00:43", "66.249.79.76", "2274");
INSERT INTO `wp_gf_form_view` VALUES("3499", "6", "2014-10-16 09:00:43", "66.249.79.76", "448");
INSERT INTO `wp_gf_form_view` VALUES("3500", "3", "2014-10-16 10:00:07", "66.249.79.84", "6550");
INSERT INTO `wp_gf_form_view` VALUES("3501", "6", "2014-10-16 10:00:08", "66.249.79.84", "1292");
INSERT INTO `wp_gf_form_view` VALUES("3502", "3", "2014-10-16 11:00:00", "66.249.79.76", "7010");
INSERT INTO `wp_gf_form_view` VALUES("3503", "6", "2014-10-16 11:00:04", "66.249.79.76", "1382");
INSERT INTO `wp_gf_form_view` VALUES("3504", "3", "2014-10-16 12:00:01", "66.249.79.84", "7339");
INSERT INTO `wp_gf_form_view` VALUES("3505", "6", "2014-10-16 12:00:04", "66.249.79.84", "1442");
INSERT INTO `wp_gf_form_view` VALUES("3506", "3", "2014-10-16 13:00:00", "66.249.79.92", "6995");
INSERT INTO `wp_gf_form_view` VALUES("3507", "6", "2014-10-16 13:00:04", "66.249.79.92", "1386");
INSERT INTO `wp_gf_form_view` VALUES("3508", "3", "2014-10-16 14:00:05", "66.249.79.84", "6981");
INSERT INTO `wp_gf_form_view` VALUES("3509", "6", "2014-10-16 14:00:08", "66.249.79.84", "1372");
INSERT INTO `wp_gf_form_view` VALUES("3510", "3", "2014-10-16 15:00:00", "66.249.79.76", "6883");
INSERT INTO `wp_gf_form_view` VALUES("3511", "6", "2014-10-16 15:00:02", "66.249.79.76", "1362");
INSERT INTO `wp_gf_form_view` VALUES("3512", "1", "2014-10-16 15:46:24", "106.185.42.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("3513", "6", "2014-10-16 16:00:00", "66.249.79.92", "1440");
INSERT INTO `wp_gf_form_view` VALUES("3514", "3", "2014-10-16 16:00:00", "66.249.79.92", "7277");
INSERT INTO `wp_gf_form_view` VALUES("3515", "3", "2014-10-16 17:00:00", "66.249.79.84", "4439");
INSERT INTO `wp_gf_form_view` VALUES("3516", "6", "2014-10-16 17:00:04", "66.249.79.92", "880");
INSERT INTO `wp_gf_form_view` VALUES("3517", "3", "2014-10-16 18:00:01", "66.249.79.76", "7699");
INSERT INTO `wp_gf_form_view` VALUES("3518", "6", "2014-10-16 18:00:04", "66.249.79.76", "1519");
INSERT INTO `wp_gf_form_view` VALUES("3519", "3", "2014-10-16 19:00:00", "66.249.79.84", "7468");
INSERT INTO `wp_gf_form_view` VALUES("3520", "6", "2014-10-16 19:00:00", "66.249.79.76", "1467");
INSERT INTO `wp_gf_form_view` VALUES("3521", "3", "2014-10-16 20:00:00", "66.249.79.76", "1327");
INSERT INTO `wp_gf_form_view` VALUES("3522", "6", "2014-10-16 20:00:03", "66.249.79.76", "260");
INSERT INTO `wp_gf_form_view` VALUES("3523", "3", "2014-10-16 21:01:42", "66.249.79.84", "5663");
INSERT INTO `wp_gf_form_view` VALUES("3524", "6", "2014-10-16 21:01:43", "66.249.79.84", "1118");
INSERT INTO `wp_gf_form_view` VALUES("3525", "3", "2014-10-16 22:00:00", "66.249.79.92", "7662");
INSERT INTO `wp_gf_form_view` VALUES("3526", "6", "2014-10-16 22:00:01", "66.249.79.92", "1508");
INSERT INTO `wp_gf_form_view` VALUES("3527", "3", "2014-10-16 23:00:02", "66.249.79.76", "7259");
INSERT INTO `wp_gf_form_view` VALUES("3528", "6", "2014-10-16 23:00:05", "66.249.79.76", "1425");
INSERT INTO `wp_gf_form_view` VALUES("3529", "6", "2014-10-17 00:00:00", "66.249.79.84", "1357");
INSERT INTO `wp_gf_form_view` VALUES("3530", "3", "2014-10-17 00:00:00", "66.249.79.76", "6893");
INSERT INTO `wp_gf_form_view` VALUES("3531", "3", "2014-10-17 01:00:00", "66.249.79.76", "7501");
INSERT INTO `wp_gf_form_view` VALUES("3532", "6", "2014-10-17 01:00:02", "66.249.79.76", "1478");
INSERT INTO `wp_gf_form_view` VALUES("3533", "1", "2014-10-17 01:47:54", "146.166.215.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("3534", "6", "2014-10-17 02:00:00", "100.43.85.24", "1490");
INSERT INTO `wp_gf_form_view` VALUES("3535", "3", "2014-10-17 02:00:00", "100.43.85.24", "7536");
INSERT INTO `wp_gf_form_view` VALUES("3536", "3", "2014-10-17 03:00:00", "66.249.79.92", "7769");
INSERT INTO `wp_gf_form_view` VALUES("3537", "6", "2014-10-17 03:00:03", "66.249.79.92", "1524");
INSERT INTO `wp_gf_form_view` VALUES("3538", "3", "2014-10-17 04:00:06", "66.249.79.84", "4939");
INSERT INTO `wp_gf_form_view` VALUES("3539", "6", "2014-10-17 04:00:08", "66.249.79.84", "972");
INSERT INTO `wp_gf_form_view` VALUES("3540", "3", "2014-10-17 05:00:00", "66.249.79.92", "7359");
INSERT INTO `wp_gf_form_view` VALUES("3541", "6", "2014-10-17 05:00:00", "66.249.79.92", "1454");
INSERT INTO `wp_gf_form_view` VALUES("3542", "1", "2014-10-17 05:13:54", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("3543", "2", "2014-10-17 05:31:35", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("3544", "3", "2014-10-17 06:00:00", "66.249.79.76", "6997");
INSERT INTO `wp_gf_form_view` VALUES("3545", "6", "2014-10-17 06:00:02", "66.249.79.76", "1378");
INSERT INTO `wp_gf_form_view` VALUES("3546", "3", "2014-10-17 07:00:00", "66.249.79.92", "4605");
INSERT INTO `wp_gf_form_view` VALUES("3547", "6", "2014-10-17 07:00:00", "66.249.79.92", "906");
INSERT INTO `wp_gf_form_view` VALUES("3548", "3", "2014-10-17 08:03:44", "100.43.85.24", "480");
INSERT INTO `wp_gf_form_view` VALUES("3549", "6", "2014-10-17 08:03:45", "100.43.85.24", "94");
INSERT INTO `wp_gf_form_view` VALUES("3550", "3", "2014-10-17 09:00:07", "66.249.79.76", "5404");
INSERT INTO `wp_gf_form_view` VALUES("3551", "6", "2014-10-17 09:00:07", "66.249.79.76", "1066");
INSERT INTO `wp_gf_form_view` VALUES("3552", "3", "2014-10-17 10:00:00", "66.249.79.76", "6561");
INSERT INTO `wp_gf_form_view` VALUES("3553", "6", "2014-10-17 10:00:03", "66.249.79.76", "1288");
INSERT INTO `wp_gf_form_view` VALUES("3554", "3", "2014-10-17 11:00:02", "66.249.79.84", "6538");
INSERT INTO `wp_gf_form_view` VALUES("3555", "6", "2014-10-17 11:00:04", "66.249.79.84", "1288");
INSERT INTO `wp_gf_form_view` VALUES("3556", "1", "2014-10-17 11:34:30", "223.68.6.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("3557", "3", "2014-10-17 12:00:00", "66.249.79.84", "6968");
INSERT INTO `wp_gf_form_view` VALUES("3558", "6", "2014-10-17 12:00:01", "66.249.79.84", "1376");
INSERT INTO `wp_gf_form_view` VALUES("3559", "3", "2014-10-17 13:00:00", "66.249.79.76", "6985");
INSERT INTO `wp_gf_form_view` VALUES("3560", "6", "2014-10-17 13:00:00", "66.249.79.76", "1380");
INSERT INTO `wp_gf_form_view` VALUES("3561", "3", "2014-10-17 14:00:00", "66.249.79.84", "8508");
INSERT INTO `wp_gf_form_view` VALUES("3562", "6", "2014-10-17 14:00:02", "66.249.79.76", "1679");
INSERT INTO `wp_gf_form_view` VALUES("3563", "6", "2014-10-17 15:00:00", "66.249.79.92", "1583");
INSERT INTO `wp_gf_form_view` VALUES("3564", "3", "2014-10-17 15:00:00", "66.249.79.92", "7991");
INSERT INTO `wp_gf_form_view` VALUES("3565", "1", "2014-10-17 15:47:18", "209.66.220.124", "4");
INSERT INTO `wp_gf_form_view` VALUES("3566", "3", "2014-10-17 16:00:00", "66.249.79.76", "7115");
INSERT INTO `wp_gf_form_view` VALUES("3567", "6", "2014-10-17 16:00:02", "66.249.79.76", "1396");
INSERT INTO `wp_gf_form_view` VALUES("3568", "3", "2014-10-17 17:00:01", "66.249.79.60", "7179");
INSERT INTO `wp_gf_form_view` VALUES("3569", "6", "2014-10-17 17:00:03", "66.249.79.60", "1424");
INSERT INTO `wp_gf_form_view` VALUES("3570", "3", "2014-10-17 18:00:00", "66.249.79.92", "6105");
INSERT INTO `wp_gf_form_view` VALUES("3571", "6", "2014-10-17 18:00:03", "66.249.79.92", "1206");
INSERT INTO `wp_gf_form_view` VALUES("3572", "2", "2014-10-17 18:47:24", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("3573", "3", "2014-10-17 19:00:01", "66.249.79.76", "4756");
INSERT INTO `wp_gf_form_view` VALUES("3574", "6", "2014-10-17 19:00:03", "66.249.79.76", "940");
INSERT INTO `wp_gf_form_view` VALUES("3575", "3", "2014-10-17 20:01:53", "66.249.79.84", "1071");
INSERT INTO `wp_gf_form_view` VALUES("3576", "6", "2014-10-17 20:01:55", "66.249.79.84", "214");
INSERT INTO `wp_gf_form_view` VALUES("3577", "3", "2014-10-17 21:00:01", "66.249.79.84", "6190");
INSERT INTO `wp_gf_form_view` VALUES("3578", "6", "2014-10-17 21:00:01", "66.249.79.84", "1220");
INSERT INTO `wp_gf_form_view` VALUES("3579", "3", "2014-10-17 22:00:02", "66.249.79.76", "5416");
INSERT INTO `wp_gf_form_view` VALUES("3580", "6", "2014-10-17 22:00:04", "66.249.79.76", "1070");
INSERT INTO `wp_gf_form_view` VALUES("3581", "3", "2014-10-17 23:00:02", "66.249.79.84", "5224");
INSERT INTO `wp_gf_form_view` VALUES("3582", "6", "2014-10-17 23:00:05", "66.249.79.84", "1026");
INSERT INTO `wp_gf_form_view` VALUES("3583", "1", "2014-10-17 23:50:32", "96.50.11.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("3584", "3", "2014-10-18 00:00:02", "66.249.79.76", "5342");
INSERT INTO `wp_gf_form_view` VALUES("3585", "6", "2014-10-18 00:00:04", "66.249.79.76", "1050");
INSERT INTO `wp_gf_form_view` VALUES("3586", "3", "2014-10-18 01:00:00", "66.249.79.84", "4828");
INSERT INTO `wp_gf_form_view` VALUES("3587", "6", "2014-10-18 01:00:01", "66.249.79.84", "944");
INSERT INTO `wp_gf_form_view` VALUES("3588", "3", "2014-10-18 02:00:00", "66.249.79.84", "5262");
INSERT INTO `wp_gf_form_view` VALUES("3589", "6", "2014-10-18 02:00:01", "66.249.79.84", "1034");
INSERT INTO `wp_gf_form_view` VALUES("3590", "3", "2014-10-18 03:00:00", "66.249.79.92", "5504");
INSERT INTO `wp_gf_form_view` VALUES("3591", "6", "2014-10-18 03:00:01", "66.249.79.92", "1086");
INSERT INTO `wp_gf_form_view` VALUES("3592", "3", "2014-10-18 04:00:11", "66.249.79.92", "5246");
INSERT INTO `wp_gf_form_view` VALUES("3593", "6", "2014-10-18 04:00:13", "66.249.79.92", "1035");
INSERT INTO `wp_gf_form_view` VALUES("3594", "3", "2014-10-18 05:00:00", "66.249.79.92", "5127");
INSERT INTO `wp_gf_form_view` VALUES("3595", "6", "2014-10-18 05:00:02", "66.249.79.92", "1016");
INSERT INTO `wp_gf_form_view` VALUES("3596", "3", "2014-10-18 06:00:00", "66.249.79.84", "5466");
INSERT INTO `wp_gf_form_view` VALUES("3597", "6", "2014-10-18 06:00:02", "66.249.79.84", "1074");
INSERT INTO `wp_gf_form_view` VALUES("3598", "3", "2014-10-18 07:00:00", "66.249.79.76", "8333");
INSERT INTO `wp_gf_form_view` VALUES("3599", "6", "2014-10-18 07:00:05", "66.249.79.84", "1632");
INSERT INTO `wp_gf_form_view` VALUES("3600", "3", "2014-10-18 08:00:00", "66.249.79.92", "6420");
INSERT INTO `wp_gf_form_view` VALUES("3601", "6", "2014-10-18 08:00:01", "66.249.79.92", "1268");
INSERT INTO `wp_gf_form_view` VALUES("3602", "3", "2014-10-18 09:01:50", "66.249.79.84", "4881");
INSERT INTO `wp_gf_form_view` VALUES("3603", "6", "2014-10-18 09:01:52", "66.249.79.84", "954");
INSERT INTO `wp_gf_form_view` VALUES("3604", "3", "2014-10-18 10:00:00", "66.249.79.92", "7323");
INSERT INTO `wp_gf_form_view` VALUES("3605", "6", "2014-10-18 10:00:00", "66.249.79.92", "1446");
INSERT INTO `wp_gf_form_view` VALUES("3606", "3", "2014-10-18 11:00:01", "66.249.79.76", "6909");
INSERT INTO `wp_gf_form_view` VALUES("3607", "6", "2014-10-18 11:00:04", "66.249.79.76", "1358");
INSERT INTO `wp_gf_form_view` VALUES("3608", "3", "2014-10-18 12:00:00", "66.249.79.84", "7591");
INSERT INTO `wp_gf_form_view` VALUES("3609", "6", "2014-10-18 12:00:04", "66.249.79.76", "1497");
INSERT INTO `wp_gf_form_view` VALUES("3610", "1", "2014-10-18 12:11:24", "104.152.185.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("3611", "2", "2014-10-18 12:11:44", "104.152.185.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("3612", "3", "2014-10-18 13:00:00", "66.249.79.76", "7170");
INSERT INTO `wp_gf_form_view` VALUES("3613", "6", "2014-10-18 13:00:04", "66.249.79.92", "1408");
INSERT INTO `wp_gf_form_view` VALUES("3614", "3", "2014-10-18 14:00:06", "66.249.79.76", "6902");
INSERT INTO `wp_gf_form_view` VALUES("3615", "6", "2014-10-18 14:00:08", "66.249.79.76", "1353");
INSERT INTO `wp_gf_form_view` VALUES("3616", "6", "2014-10-18 15:00:00", "66.249.79.84", "985");
INSERT INTO `wp_gf_form_view` VALUES("3617", "3", "2014-10-18 15:00:00", "66.249.79.84", "4991");
INSERT INTO `wp_gf_form_view` VALUES("3618", "3", "2014-10-18 16:00:00", "66.249.79.76", "5635");
INSERT INTO `wp_gf_form_view` VALUES("3619", "6", "2014-10-18 16:00:01", "66.249.79.76", "1108");
INSERT INTO `wp_gf_form_view` VALUES("3620", "3", "2014-10-18 17:00:00", "66.249.79.84", "5676");
INSERT INTO `wp_gf_form_view` VALUES("3621", "6", "2014-10-18 17:00:00", "66.249.79.84", "1110");
INSERT INTO `wp_gf_form_view` VALUES("3622", "3", "2014-10-18 18:00:00", "66.249.79.92", "5648");
INSERT INTO `wp_gf_form_view` VALUES("3623", "6", "2014-10-18 18:00:02", "66.249.79.92", "1104");
INSERT INTO `wp_gf_form_view` VALUES("3624", "3", "2014-10-18 19:00:00", "66.249.79.84", "4981");
INSERT INTO `wp_gf_form_view` VALUES("3625", "6", "2014-10-18 19:00:00", "66.249.79.84", "982");
INSERT INTO `wp_gf_form_view` VALUES("3626", "3", "2014-10-18 20:00:00", "66.249.79.92", "2490");
INSERT INTO `wp_gf_form_view` VALUES("3627", "6", "2014-10-18 20:00:02", "66.249.79.92", "494");
INSERT INTO `wp_gf_form_view` VALUES("3628", "1", "2014-10-18 20:12:08", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("3629", "3", "2014-10-18 21:00:06", "66.249.79.84", "5466");
INSERT INTO `wp_gf_form_view` VALUES("3630", "6", "2014-10-18 21:00:07", "66.249.79.84", "1078");
INSERT INTO `wp_gf_form_view` VALUES("3631", "3", "2014-10-18 22:00:01", "66.249.79.92", "5143");
INSERT INTO `wp_gf_form_view` VALUES("3632", "6", "2014-10-18 22:00:04", "66.249.79.92", "1010");
INSERT INTO `wp_gf_form_view` VALUES("3633", "3", "2014-10-18 23:00:00", "66.249.79.76", "4633");
INSERT INTO `wp_gf_form_view` VALUES("3634", "6", "2014-10-18 23:00:03", "66.249.79.84", "1134");
INSERT INTO `wp_gf_form_view` VALUES("3635", "3", "2014-10-19 00:00:00", "66.249.79.76", "5224");
INSERT INTO `wp_gf_form_view` VALUES("3636", "6", "2014-10-19 00:00:02", "66.249.79.76", "1270");
INSERT INTO `wp_gf_form_view` VALUES("3637", "3", "2014-10-19 01:00:03", "66.249.79.84", "5252");
INSERT INTO `wp_gf_form_view` VALUES("3638", "6", "2014-10-19 01:00:05", "66.249.79.84", "1287");
INSERT INTO `wp_gf_form_view` VALUES("3639", "3", "2014-10-19 02:00:00", "66.249.79.84", "5534");
INSERT INTO `wp_gf_form_view` VALUES("3640", "6", "2014-10-19 02:00:03", "66.249.79.76", "1356");
INSERT INTO `wp_gf_form_view` VALUES("3641", "2", "2014-10-19 02:29:45", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("3642", "1", "2014-10-19 02:29:49", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("3643", "3", "2014-10-19 03:00:00", "66.249.79.84", "5019");
INSERT INTO `wp_gf_form_view` VALUES("3644", "6", "2014-10-19 03:00:01", "66.249.79.84", "1228");
INSERT INTO `wp_gf_form_view` VALUES("3645", "3", "2014-10-19 04:00:00", "66.249.79.76", "5324");
INSERT INTO `wp_gf_form_view` VALUES("3646", "6", "2014-10-19 04:00:01", "66.249.79.76", "1296");
INSERT INTO `wp_gf_form_view` VALUES("3647", "3", "2014-10-19 05:00:00", "66.249.79.84", "5366");
INSERT INTO `wp_gf_form_view` VALUES("3648", "6", "2014-10-19 05:00:01", "66.249.79.84", "1305");
INSERT INTO `wp_gf_form_view` VALUES("3649", "1", "2014-10-19 05:07:15", "37.153.195.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("3650", "2", "2014-10-19 05:07:26", "37.153.195.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("3651", "3", "2014-10-19 06:00:02", "66.249.79.76", "5300");
INSERT INTO `wp_gf_form_view` VALUES("3652", "6", "2014-10-19 06:00:03", "66.249.79.76", "1288");
INSERT INTO `wp_gf_form_view` VALUES("3653", "3", "2014-10-19 07:00:00", "66.249.79.92", "6523");
INSERT INTO `wp_gf_form_view` VALUES("3654", "6", "2014-10-19 07:00:01", "66.249.79.92", "1600");
INSERT INTO `wp_gf_form_view` VALUES("3655", "3", "2014-10-19 08:03:34", "66.249.79.76", "2932");
INSERT INTO `wp_gf_form_view` VALUES("3656", "6", "2014-10-19 08:03:36", "66.249.79.76", "730");
INSERT INTO `wp_gf_form_view` VALUES("3657", "3", "2014-10-19 09:00:01", "66.249.79.92", "5570");
INSERT INTO `wp_gf_form_view` VALUES("3658", "6", "2014-10-19 09:00:02", "66.249.79.92", "1361");
INSERT INTO `wp_gf_form_view` VALUES("3659", "6", "2014-10-19 10:00:00", "66.249.79.76", "1375");
INSERT INTO `wp_gf_form_view` VALUES("3660", "3", "2014-10-19 10:00:00", "66.249.79.76", "5609");
INSERT INTO `wp_gf_form_view` VALUES("3661", "3", "2014-10-19 11:00:00", "66.249.79.92", "5486");
INSERT INTO `wp_gf_form_view` VALUES("3662", "6", "2014-10-19 11:00:01", "66.249.79.92", "1346");
INSERT INTO `wp_gf_form_view` VALUES("3663", "3", "2014-10-19 12:00:00", "66.249.79.92", "5561");
INSERT INTO `wp_gf_form_view` VALUES("3664", "6", "2014-10-19 12:00:04", "66.249.79.92", "1358");
INSERT INTO `wp_gf_form_view` VALUES("3665", "3", "2014-10-19 13:00:00", "66.249.79.92", "5472");
INSERT INTO `wp_gf_form_view` VALUES("3666", "6", "2014-10-19 13:00:02", "66.249.79.92", "1338");
INSERT INTO `wp_gf_form_view` VALUES("3667", "3", "2014-10-19 14:00:00", "66.249.79.76", "5509");
INSERT INTO `wp_gf_form_view` VALUES("3668", "6", "2014-10-19 14:00:00", "66.249.79.76", "1356");
INSERT INTO `wp_gf_form_view` VALUES("3669", "3", "2014-10-19 15:00:01", "66.249.79.76", "5276");
INSERT INTO `wp_gf_form_view` VALUES("3670", "6", "2014-10-19 15:00:03", "66.249.79.76", "1290");
INSERT INTO `wp_gf_form_view` VALUES("3671", "3", "2014-10-19 16:00:03", "66.249.79.76", "5500");
INSERT INTO `wp_gf_form_view` VALUES("3672", "6", "2014-10-19 16:00:04", "66.249.79.76", "1354");
INSERT INTO `wp_gf_form_view` VALUES("3673", "3", "2014-10-19 17:00:00", "66.249.79.76", "5683");
INSERT INTO `wp_gf_form_view` VALUES("3674", "6", "2014-10-19 17:00:02", "66.249.79.76", "1400");
INSERT INTO `wp_gf_form_view` VALUES("3675", "2", "2014-10-19 17:18:46", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("3676", "1", "2014-10-19 17:18:51", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("3677", "3", "2014-10-19 18:00:00", "66.249.79.84", "4986");
INSERT INTO `wp_gf_form_view` VALUES("3678", "6", "2014-10-19 18:00:03", "66.249.79.92", "1207");
INSERT INTO `wp_gf_form_view` VALUES("3679", "3", "2014-10-19 19:00:00", "192.99.149.88", "97");
INSERT INTO `wp_gf_form_view` VALUES("3680", "6", "2014-10-19 19:00:01", "192.99.149.88", "24");
INSERT INTO `wp_gf_form_view` VALUES("3681", "3", "2014-10-19 20:00:23", "202.46.63.82", "1250");
INSERT INTO `wp_gf_form_view` VALUES("3682", "6", "2014-10-19 20:00:24", "202.46.63.82", "310");
INSERT INTO `wp_gf_form_view` VALUES("3683", "3", "2014-10-19 21:00:00", "192.99.149.88", "3730");
INSERT INTO `wp_gf_form_view` VALUES("3684", "6", "2014-10-19 21:00:01", "192.99.149.88", "910");
INSERT INTO `wp_gf_form_view` VALUES("3685", "3", "2014-10-19 22:00:00", "66.249.79.76", "3977");
INSERT INTO `wp_gf_form_view` VALUES("3686", "6", "2014-10-19 22:00:00", "66.249.79.76", "976");
INSERT INTO `wp_gf_form_view` VALUES("3687", "3", "2014-10-19 23:00:00", "66.249.79.84", "4452");
INSERT INTO `wp_gf_form_view` VALUES("3688", "6", "2014-10-19 23:00:01", "66.249.79.84", "1084");
INSERT INTO `wp_gf_form_view` VALUES("3689", "3", "2014-10-20 00:00:02", "66.249.79.76", "4696");
INSERT INTO `wp_gf_form_view` VALUES("3690", "6", "2014-10-20 00:00:03", "66.249.79.76", "1140");
INSERT INTO `wp_gf_form_view` VALUES("3691", "3", "2014-10-20 01:00:00", "66.249.79.92", "5094");
INSERT INTO `wp_gf_form_view` VALUES("3692", "6", "2014-10-20 01:00:00", "66.249.79.92", "1244");
INSERT INTO `wp_gf_form_view` VALUES("3693", "1", "2014-10-20 01:10:56", "65.49.14.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("3694", "3", "2014-10-20 02:00:18", "66.249.79.92", "4963");
INSERT INTO `wp_gf_form_view` VALUES("3695", "6", "2014-10-20 02:00:20", "66.249.79.92", "1220");
INSERT INTO `wp_gf_form_view` VALUES("3696", "3", "2014-10-20 03:00:00", "66.249.79.84", "5202");
INSERT INTO `wp_gf_form_view` VALUES("3697", "6", "2014-10-20 03:00:00", "66.249.79.84", "1290");
INSERT INTO `wp_gf_form_view` VALUES("3698", "3", "2014-10-20 04:00:00", "66.249.79.92", "5535");
INSERT INTO `wp_gf_form_view` VALUES("3699", "6", "2014-10-20 04:00:03", "66.249.79.84", "1360");
INSERT INTO `wp_gf_form_view` VALUES("3700", "2", "2014-10-20 04:14:01", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("3701", "1", "2014-10-20 04:14:07", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("3702", "3", "2014-10-20 05:00:00", "66.249.79.92", "5482");
INSERT INTO `wp_gf_form_view` VALUES("3703", "6", "2014-10-20 05:00:01", "66.249.79.92", "1342");
INSERT INTO `wp_gf_form_view` VALUES("3704", "3", "2014-10-20 06:00:00", "66.249.79.84", "5220");
INSERT INTO `wp_gf_form_view` VALUES("3705", "6", "2014-10-20 06:00:00", "66.249.79.84", "1294");
INSERT INTO `wp_gf_form_view` VALUES("3706", "3", "2014-10-20 07:00:00", "66.249.79.76", "1320");
INSERT INTO `wp_gf_form_view` VALUES("3707", "6", "2014-10-20 07:00:02", "66.249.79.76", "320");
INSERT INTO `wp_gf_form_view` VALUES("3708", "3", "2014-10-20 08:00:10", "66.249.79.76", "2850");
INSERT INTO `wp_gf_form_view` VALUES("3709", "6", "2014-10-20 08:00:11", "66.249.79.76", "698");
INSERT INTO `wp_gf_form_view` VALUES("3710", "3", "2014-10-20 09:00:04", "66.249.79.76", "3406");
INSERT INTO `wp_gf_form_view` VALUES("3711", "6", "2014-10-20 09:00:05", "66.249.79.76", "837");
INSERT INTO `wp_gf_form_view` VALUES("3712", "3", "2014-10-20 10:00:05", "66.249.79.84", "4064");
INSERT INTO `wp_gf_form_view` VALUES("3713", "6", "2014-10-20 10:00:06", "66.249.79.84", "1000");
INSERT INTO `wp_gf_form_view` VALUES("3714", "3", "2014-10-20 11:00:00", "66.249.79.92", "5212");
INSERT INTO `wp_gf_form_view` VALUES("3715", "6", "2014-10-20 11:00:01", "66.249.79.92", "1280");
INSERT INTO `wp_gf_form_view` VALUES("3716", "3", "2014-10-20 12:00:00", "66.249.79.84", "5445");
INSERT INTO `wp_gf_form_view` VALUES("3717", "6", "2014-10-20 12:00:00", "66.249.79.84", "1342");
INSERT INTO `wp_gf_form_view` VALUES("3718", "1", "2014-10-20 12:57:01", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("3719", "3", "2014-10-20 13:00:00", "66.249.79.84", "5501");
INSERT INTO `wp_gf_form_view` VALUES("3720", "6", "2014-10-20 13:00:02", "66.249.79.84", "1346");
INSERT INTO `wp_gf_form_view` VALUES("3721", "3", "2014-10-20 14:00:02", "66.249.79.84", "5424");
INSERT INTO `wp_gf_form_view` VALUES("3722", "6", "2014-10-20 14:00:04", "66.249.79.84", "1336");
INSERT INTO `wp_gf_form_view` VALUES("3723", "3", "2014-10-20 15:00:00", "66.249.79.76", "4877");
INSERT INTO `wp_gf_form_view` VALUES("3724", "6", "2014-10-20 15:00:00", "66.249.79.76", "1200");
INSERT INTO `wp_gf_form_view` VALUES("3725", "3", "2014-10-20 16:00:00", "66.249.79.92", "5103");
INSERT INTO `wp_gf_form_view` VALUES("3726", "6", "2014-10-20 16:00:02", "66.249.79.92", "1252");
INSERT INTO `wp_gf_form_view` VALUES("3727", "3", "2014-10-20 17:00:00", "66.249.79.84", "5053");
INSERT INTO `wp_gf_form_view` VALUES("3728", "6", "2014-10-20 17:00:00", "66.249.79.84", "1240");
INSERT INTO `wp_gf_form_view` VALUES("3729", "3", "2014-10-20 18:00:00", "66.249.79.84", "2466");
INSERT INTO `wp_gf_form_view` VALUES("3730", "6", "2014-10-20 18:00:05", "66.249.79.92", "606");
INSERT INTO `wp_gf_form_view` VALUES("3731", "3", "2014-10-20 19:15:38", "66.249.79.92", "494");
INSERT INTO `wp_gf_form_view` VALUES("3732", "6", "2014-10-20 19:15:39", "66.249.79.92", "120");
INSERT INTO `wp_gf_form_view` VALUES("3733", "3", "2014-10-20 20:00:15", "66.249.79.84", "4695");
INSERT INTO `wp_gf_form_view` VALUES("3734", "6", "2014-10-20 20:00:15", "66.249.79.84", "1148");
INSERT INTO `wp_gf_form_view` VALUES("3735", "3", "2014-10-20 21:00:00", "66.249.79.84", "4935");
INSERT INTO `wp_gf_form_view` VALUES("3736", "6", "2014-10-20 21:00:00", "66.249.79.84", "1219");
INSERT INTO `wp_gf_form_view` VALUES("3737", "6", "2014-10-20 22:00:00", "66.249.79.92", "791");
INSERT INTO `wp_gf_form_view` VALUES("3738", "3", "2014-10-20 22:00:01", "66.249.79.92", "3248");
INSERT INTO `wp_gf_form_view` VALUES("3739", "2", "2014-10-20 22:21:20", "37.213.12.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("3740", "6", "2014-10-20 23:00:00", "66.249.79.92", "1280");
INSERT INTO `wp_gf_form_view` VALUES("3741", "3", "2014-10-20 23:00:00", "66.249.79.92", "5241");
INSERT INTO `wp_gf_form_view` VALUES("3742", "3", "2014-10-21 00:00:00", "66.249.79.92", "5521");
INSERT INTO `wp_gf_form_view` VALUES("3743", "6", "2014-10-21 00:00:03", "66.249.79.76", "1344");
INSERT INTO `wp_gf_form_view` VALUES("3744", "3", "2014-10-21 01:00:00", "66.249.79.92", "5297");
INSERT INTO `wp_gf_form_view` VALUES("3745", "6", "2014-10-21 01:00:02", "66.249.79.92", "1304");
INSERT INTO `wp_gf_form_view` VALUES("3746", "3", "2014-10-21 02:00:00", "66.249.79.76", "5265");
INSERT INTO `wp_gf_form_view` VALUES("3747", "6", "2014-10-21 02:00:01", "66.249.79.76", "1294");
INSERT INTO `wp_gf_form_view` VALUES("3748", "3", "2014-10-21 03:00:00", "66.249.79.76", "5391");
INSERT INTO `wp_gf_form_view` VALUES("3749", "6", "2014-10-21 03:00:02", "66.249.79.76", "1316");
INSERT INTO `wp_gf_form_view` VALUES("3750", "6", "2014-10-21 04:00:00", "66.249.79.92", "1244");
INSERT INTO `wp_gf_form_view` VALUES("3751", "3", "2014-10-21 04:00:00", "66.249.79.92", "5090");
INSERT INTO `wp_gf_form_view` VALUES("3752", "3", "2014-10-21 05:00:00", "66.249.79.84", "4208");
INSERT INTO `wp_gf_form_view` VALUES("3753", "6", "2014-10-21 05:00:02", "66.249.79.84", "1026");
INSERT INTO `wp_gf_form_view` VALUES("3754", "3", "2014-10-21 06:37:54", "202.46.50.36", "18");
INSERT INTO `wp_gf_form_view` VALUES("3755", "6", "2014-10-21 06:37:56", "202.46.50.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("3756", "3", "2014-10-21 07:04:56", "66.249.79.76", "1183");
INSERT INTO `wp_gf_form_view` VALUES("3757", "6", "2014-10-21 07:04:57", "66.249.79.76", "299");
INSERT INTO `wp_gf_form_view` VALUES("3758", "1", "2014-10-21 07:10:43", "27.159.207.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("3759", "2", "2014-10-21 07:19:27", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3760", "3", "2014-10-21 08:00:23", "66.249.79.76", "5216");
INSERT INTO `wp_gf_form_view` VALUES("3761", "6", "2014-10-21 08:00:23", "66.249.79.76", "1287");
INSERT INTO `wp_gf_form_view` VALUES("3762", "1", "2014-10-21 08:14:12", "86.123.241.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("3763", "2", "2014-10-21 08:14:25", "86.123.241.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("3764", "3", "2014-10-21 09:00:00", "66.249.79.92", "5234");
INSERT INTO `wp_gf_form_view` VALUES("3765", "6", "2014-10-21 09:00:01", "66.249.79.92", "1278");
INSERT INTO `wp_gf_form_view` VALUES("3766", "3", "2014-10-21 10:00:02", "66.249.79.92", "5134");
INSERT INTO `wp_gf_form_view` VALUES("3767", "6", "2014-10-21 10:00:03", "66.249.79.92", "1258");
INSERT INTO `wp_gf_form_view` VALUES("3768", "2", "2014-10-21 10:26:20", "193.201.224.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("3769", "3", "2014-10-21 11:00:00", "66.249.79.76", "4598");
INSERT INTO `wp_gf_form_view` VALUES("3770", "6", "2014-10-21 11:00:01", "66.249.79.76", "1118");
INSERT INTO `wp_gf_form_view` VALUES("3771", "3", "2014-10-21 12:00:02", "66.249.79.84", "5122");
INSERT INTO `wp_gf_form_view` VALUES("3772", "6", "2014-10-21 12:00:03", "66.249.79.84", "1256");
INSERT INTO `wp_gf_form_view` VALUES("3773", "1", "2014-10-21 12:19:37", "79.116.31.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("3774", "2", "2014-10-21 12:19:52", "79.116.31.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("3775", "6", "2014-10-21 13:00:00", "66.249.79.84", "1355");
INSERT INTO `wp_gf_form_view` VALUES("3776", "3", "2014-10-21 13:00:00", "66.249.79.84", "5558");
INSERT INTO `wp_gf_form_view` VALUES("3777", "3", "2014-10-21 14:00:02", "66.249.79.76", "5407");
INSERT INTO `wp_gf_form_view` VALUES("3778", "6", "2014-10-21 14:00:04", "66.249.79.76", "1316");
INSERT INTO `wp_gf_form_view` VALUES("3779", "3", "2014-10-21 15:00:00", "66.249.79.76", "4552");
INSERT INTO `wp_gf_form_view` VALUES("3780", "6", "2014-10-21 15:00:01", "66.249.79.76", "1116");
INSERT INTO `wp_gf_form_view` VALUES("3781", "1", "2014-10-21 15:40:38", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("3782", "3", "2014-10-21 16:00:00", "66.249.79.84", "2985");
INSERT INTO `wp_gf_form_view` VALUES("3783", "6", "2014-10-21 16:00:02", "66.249.79.84", "732");
INSERT INTO `wp_gf_form_view` VALUES("3784", "1", "2014-10-21 16:26:30", "198.199.66.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("3785", "2", "2014-10-21 16:26:31", "198.199.66.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("3786", "3", "2014-10-21 17:05:27", "100.43.90.9", "50");
INSERT INTO `wp_gf_form_view` VALUES("3787", "6", "2014-10-21 17:05:28", "100.43.90.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("3788", "3", "2014-10-21 18:00:05", "195.211.155.158", "85");
INSERT INTO `wp_gf_form_view` VALUES("3789", "3", "2014-10-21 18:00:05", "195.211.155.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("3790", "6", "2014-10-21 18:00:06", "195.211.155.158", "23");
INSERT INTO `wp_gf_form_view` VALUES("3791", "6", "2014-10-21 18:00:06", "195.211.155.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("3792", "3", "2014-10-21 19:01:37", "157.55.39.36", "120");
INSERT INTO `wp_gf_form_view` VALUES("3793", "6", "2014-10-21 19:01:38", "157.55.39.36", "30");
INSERT INTO `wp_gf_form_view` VALUES("3794", "3", "2014-10-21 20:00:41", "66.249.79.84", "848");
INSERT INTO `wp_gf_form_view` VALUES("3795", "6", "2014-10-21 20:00:41", "66.249.79.84", "208");
INSERT INTO `wp_gf_form_view` VALUES("3796", "1", "2014-10-21 20:16:33", "183.221.160.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("3797", "3", "2014-10-21 21:00:02", "66.249.79.76", "5092");
INSERT INTO `wp_gf_form_view` VALUES("3798", "6", "2014-10-21 21:00:03", "66.249.79.76", "1248");
INSERT INTO `wp_gf_form_view` VALUES("3799", "1", "2014-10-21 21:24:59", "175.44.32.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("3800", "3", "2014-10-21 22:00:00", "66.249.79.76", "4292");
INSERT INTO `wp_gf_form_view` VALUES("3801", "6", "2014-10-21 22:00:04", "66.249.79.92", "1050");
INSERT INTO `wp_gf_form_view` VALUES("3802", "3", "2014-10-21 23:00:01", "66.249.79.92", "4924");
INSERT INTO `wp_gf_form_view` VALUES("3803", "6", "2014-10-21 23:00:03", "66.249.79.92", "1202");
INSERT INTO `wp_gf_form_view` VALUES("3804", "3", "2014-10-22 00:00:13", "66.249.79.76", "5079");
INSERT INTO `wp_gf_form_view` VALUES("3805", "6", "2014-10-22 00:00:17", "66.249.79.76", "1240");
INSERT INTO `wp_gf_form_view` VALUES("3806", "3", "2014-10-22 01:00:00", "66.249.79.84", "5289");
INSERT INTO `wp_gf_form_view` VALUES("3807", "6", "2014-10-22 01:00:00", "66.249.79.84", "1306");
INSERT INTO `wp_gf_form_view` VALUES("3808", "3", "2014-10-22 02:00:08", "66.249.79.84", "5028");
INSERT INTO `wp_gf_form_view` VALUES("3809", "6", "2014-10-22 02:00:10", "66.249.79.84", "1230");
INSERT INTO `wp_gf_form_view` VALUES("3810", "3", "2014-10-22 03:00:00", "66.249.79.92", "5188");
INSERT INTO `wp_gf_form_view` VALUES("3811", "6", "2014-10-22 03:00:01", "66.249.79.92", "1267");
INSERT INTO `wp_gf_form_view` VALUES("3812", "6", "2014-10-22 04:00:00", "66.249.79.84", "1477");
INSERT INTO `wp_gf_form_view` VALUES("3813", "3", "2014-10-22 04:00:00", "66.249.79.84", "6073");
INSERT INTO `wp_gf_form_view` VALUES("3814", "1", "2014-10-22 04:28:17", "54.186.164.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("3815", "2", "2014-10-22 04:31:25", "54.186.164.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("3816", "3", "2014-10-22 05:00:00", "66.249.79.76", "5325");
INSERT INTO `wp_gf_form_view` VALUES("3817", "6", "2014-10-22 05:00:02", "66.249.79.76", "1294");
INSERT INTO `wp_gf_form_view` VALUES("3818", "3", "2014-10-22 06:00:00", "66.249.79.76", "5301");
INSERT INTO `wp_gf_form_view` VALUES("3819", "6", "2014-10-22 06:00:00", "66.249.79.76", "1290");
INSERT INTO `wp_gf_form_view` VALUES("3820", "3", "2014-10-22 07:03:36", "157.55.39.81", "826");
INSERT INTO `wp_gf_form_view` VALUES("3821", "6", "2014-10-22 07:03:37", "157.55.39.81", "188");
INSERT INTO `wp_gf_form_view` VALUES("3822", "3", "2014-10-22 08:00:05", "66.249.79.92", "1494");
INSERT INTO `wp_gf_form_view` VALUES("3823", "6", "2014-10-22 08:00:05", "66.249.79.92", "352");
INSERT INTO `wp_gf_form_view` VALUES("3824", "3", "2014-10-22 09:00:02", "66.249.79.92", "5872");
INSERT INTO `wp_gf_form_view` VALUES("3825", "6", "2014-10-22 09:00:03", "66.249.79.92", "1434");
INSERT INTO `wp_gf_form_view` VALUES("3826", "3", "2014-10-22 10:00:02", "66.249.79.92", "5994");
INSERT INTO `wp_gf_form_view` VALUES("3827", "6", "2014-10-22 10:00:04", "66.249.79.92", "1468");
INSERT INTO `wp_gf_form_view` VALUES("3828", "3", "2014-10-22 11:00:08", "66.249.79.76", "6328");
INSERT INTO `wp_gf_form_view` VALUES("3829", "6", "2014-10-22 11:00:10", "66.249.79.76", "1552");
INSERT INTO `wp_gf_form_view` VALUES("3830", "3", "2014-10-22 12:00:00", "66.249.79.76", "6150");
INSERT INTO `wp_gf_form_view` VALUES("3831", "6", "2014-10-22 12:00:02", "66.249.79.76", "1498");
INSERT INTO `wp_gf_form_view` VALUES("3832", "3", "2014-10-22 13:00:00", "66.249.79.92", "6253");
INSERT INTO `wp_gf_form_view` VALUES("3833", "6", "2014-10-22 13:00:02", "66.249.79.92", "1524");
INSERT INTO `wp_gf_form_view` VALUES("3834", "3", "2014-10-22 14:00:00", "66.249.79.84", "5881");
INSERT INTO `wp_gf_form_view` VALUES("3835", "6", "2014-10-22 14:00:01", "66.249.79.84", "1446");
INSERT INTO `wp_gf_form_view` VALUES("3836", "3", "2014-10-22 15:00:02", "66.249.79.92", "5718");
INSERT INTO `wp_gf_form_view` VALUES("3837", "6", "2014-10-22 15:00:04", "66.249.79.92", "1402");
INSERT INTO `wp_gf_form_view` VALUES("3838", "3", "2014-10-22 16:00:01", "66.249.79.84", "5255");
INSERT INTO `wp_gf_form_view` VALUES("3839", "6", "2014-10-22 16:00:02", "66.249.79.84", "1288");
INSERT INTO `wp_gf_form_view` VALUES("3840", "3", "2014-10-22 17:00:00", "66.249.79.92", "5703");
INSERT INTO `wp_gf_form_view` VALUES("3841", "6", "2014-10-22 17:00:01", "66.249.79.92", "1388");
INSERT INTO `wp_gf_form_view` VALUES("3842", "3", "2014-10-22 18:00:03", "66.249.79.76", "2482");
INSERT INTO `wp_gf_form_view` VALUES("3843", "6", "2014-10-22 18:00:05", "66.249.79.76", "610");
INSERT INTO `wp_gf_form_view` VALUES("3844", "3", "2014-10-22 19:00:34", "68.180.229.33", "918");
INSERT INTO `wp_gf_form_view` VALUES("3845", "6", "2014-10-22 19:00:35", "68.180.229.33", "230");
INSERT INTO `wp_gf_form_view` VALUES("3846", "3", "2014-10-22 20:00:25", "66.249.79.76", "2350");
INSERT INTO `wp_gf_form_view` VALUES("3847", "6", "2014-10-22 20:00:25", "66.249.79.76", "571");
INSERT INTO `wp_gf_form_view` VALUES("3848", "3", "2014-10-22 21:00:03", "66.249.79.84", "4566");
INSERT INTO `wp_gf_form_view` VALUES("3849", "6", "2014-10-22 21:00:04", "66.249.79.84", "1120");
INSERT INTO `wp_gf_form_view` VALUES("3850", "1", "2014-10-22 21:00:40", "54.213.230.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("3851", "2", "2014-10-22 21:01:26", "54.213.230.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("3852", "3", "2014-10-22 22:00:00", "66.249.79.84", "4571");
INSERT INTO `wp_gf_form_view` VALUES("3853", "6", "2014-10-22 22:00:02", "66.249.79.84", "1120");
INSERT INTO `wp_gf_form_view` VALUES("3854", "3", "2014-10-22 23:00:00", "66.249.79.84", "4536");
INSERT INTO `wp_gf_form_view` VALUES("3855", "6", "2014-10-22 23:00:09", "66.249.79.76", "1104");
INSERT INTO `wp_gf_form_view` VALUES("3856", "2", "2014-10-22 23:58:01", "188.165.15.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("3857", "3", "2014-10-23 00:00:00", "66.249.79.76", "4083");
INSERT INTO `wp_gf_form_view` VALUES("3858", "6", "2014-10-23 00:00:00", "66.249.79.76", "1002");
INSERT INTO `wp_gf_form_view` VALUES("3859", "3", "2014-10-23 01:00:14", "66.249.79.76", "4102");
INSERT INTO `wp_gf_form_view` VALUES("3860", "6", "2014-10-23 01:00:15", "66.249.79.76", "1001");
INSERT INTO `wp_gf_form_view` VALUES("3861", "3", "2014-10-23 02:00:00", "66.249.79.76", "4360");
INSERT INTO `wp_gf_form_view` VALUES("3862", "6", "2014-10-23 02:00:01", "66.249.79.76", "1078");
INSERT INTO `wp_gf_form_view` VALUES("3863", "3", "2014-10-23 03:00:00", "66.249.79.76", "3497");
INSERT INTO `wp_gf_form_view` VALUES("3864", "6", "2014-10-23 03:00:02", "66.249.79.76", "844");
INSERT INTO `wp_gf_form_view` VALUES("3865", "3", "2014-10-23 04:00:00", "66.249.79.76", "4269");
INSERT INTO `wp_gf_form_view` VALUES("3866", "6", "2014-10-23 04:00:00", "66.249.79.76", "1058");
INSERT INTO `wp_gf_form_view` VALUES("3867", "3", "2014-10-23 05:00:52", "66.249.79.92", "4338");
INSERT INTO `wp_gf_form_view` VALUES("3868", "6", "2014-10-23 05:00:54", "66.249.79.92", "1066");
INSERT INTO `wp_gf_form_view` VALUES("3869", "3", "2014-10-23 06:00:00", "66.249.79.76", "3052");
INSERT INTO `wp_gf_form_view` VALUES("3870", "6", "2014-10-23 06:00:00", "66.249.79.76", "752");
INSERT INTO `wp_gf_form_view` VALUES("3871", "3", "2014-10-23 07:00:00", "66.249.79.84", "7374");
INSERT INTO `wp_gf_form_view` VALUES("3872", "6", "2014-10-23 07:00:01", "66.249.79.84", "1816");
INSERT INTO `wp_gf_form_view` VALUES("3873", "3", "2014-10-23 08:00:10", "66.249.79.92", "5262");
INSERT INTO `wp_gf_form_view` VALUES("3874", "6", "2014-10-23 08:00:12", "66.249.79.92", "1288");
INSERT INTO `wp_gf_form_view` VALUES("3875", "3", "2014-10-23 09:00:34", "66.249.79.84", "482");
INSERT INTO `wp_gf_form_view` VALUES("3876", "6", "2014-10-23 09:00:35", "66.249.79.84", "116");
INSERT INTO `wp_gf_form_view` VALUES("3877", "3", "2014-10-23 10:01:40", "66.249.79.84", "1243");
INSERT INTO `wp_gf_form_view` VALUES("3878", "6", "2014-10-23 10:01:41", "66.249.79.84", "304");
INSERT INTO `wp_gf_form_view` VALUES("3879", "3", "2014-10-23 11:00:02", "66.249.79.92", "6339");
INSERT INTO `wp_gf_form_view` VALUES("3880", "6", "2014-10-23 11:00:02", "66.249.79.92", "1557");
INSERT INTO `wp_gf_form_view` VALUES("3881", "1", "2014-10-23 11:20:24", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("3882", "2", "2014-10-23 11:20:41", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("3883", "3", "2014-10-23 12:00:00", "66.249.79.92", "7108");
INSERT INTO `wp_gf_form_view` VALUES("3884", "6", "2014-10-23 12:00:03", "66.249.79.76", "1747");
INSERT INTO `wp_gf_form_view` VALUES("3885", "2", "2014-10-23 12:37:25", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3886", "1", "2014-10-23 12:37:26", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3887", "3", "2014-10-23 13:00:00", "66.249.79.84", "6916");
INSERT INTO `wp_gf_form_view` VALUES("3888", "6", "2014-10-23 13:00:02", "66.249.79.84", "1690");
INSERT INTO `wp_gf_form_view` VALUES("3889", "1", "2014-10-23 13:27:55", "158.85.89.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("3890", "3", "2014-10-23 14:00:00", "66.249.79.76", "6631");
INSERT INTO `wp_gf_form_view` VALUES("3891", "6", "2014-10-23 14:00:03", "66.249.79.76", "1624");
INSERT INTO `wp_gf_form_view` VALUES("3892", "6", "2014-10-23 15:00:00", "66.249.79.92", "1218");
INSERT INTO `wp_gf_form_view` VALUES("3893", "3", "2014-10-23 15:00:00", "66.249.79.92", "4984");
INSERT INTO `wp_gf_form_view` VALUES("3894", "6", "2014-10-23 16:00:00", "66.249.79.92", "1380");
INSERT INTO `wp_gf_form_view` VALUES("3895", "3", "2014-10-23 16:00:00", "66.249.79.92", "5594");
INSERT INTO `wp_gf_form_view` VALUES("3896", "1", "2014-10-23 16:46:01", "108.180.29.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("3897", "3", "2014-10-23 17:00:00", "66.249.79.92", "5091");
INSERT INTO `wp_gf_form_view` VALUES("3898", "6", "2014-10-23 17:00:01", "66.249.79.92", "1242");
INSERT INTO `wp_gf_form_view` VALUES("3899", "1", "2014-10-23 17:31:16", "184.66.33.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("3900", "3", "2014-10-23 18:00:07", "66.249.79.92", "3714");
INSERT INTO `wp_gf_form_view` VALUES("3901", "6", "2014-10-23 18:00:10", "66.249.79.92", "906");
INSERT INTO `wp_gf_form_view` VALUES("3902", "3", "2014-10-23 19:00:08", "66.249.79.84", "3086");
INSERT INTO `wp_gf_form_view` VALUES("3903", "6", "2014-10-23 19:00:09", "66.249.79.84", "756");
INSERT INTO `wp_gf_form_view` VALUES("3904", "3", "2014-10-23 20:00:00", "66.249.79.76", "5063");
INSERT INTO `wp_gf_form_view` VALUES("3905", "6", "2014-10-23 20:00:02", "66.249.79.76", "1256");
INSERT INTO `wp_gf_form_view` VALUES("3906", "2", "2014-10-23 20:32:47", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3907", "1", "2014-10-23 20:32:47", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3908", "6", "2014-10-23 21:00:00", "66.249.79.84", "1103");
INSERT INTO `wp_gf_form_view` VALUES("3909", "3", "2014-10-23 21:00:00", "66.249.79.84", "4505");
INSERT INTO `wp_gf_form_view` VALUES("3910", "3", "2014-10-23 22:00:00", "66.249.67.84", "5151");
INSERT INTO `wp_gf_form_view` VALUES("3911", "6", "2014-10-23 22:00:03", "66.249.67.76", "1258");
INSERT INTO `wp_gf_form_view` VALUES("3912", "3", "2014-10-23 23:00:00", "66.249.79.84", "4947");
INSERT INTO `wp_gf_form_view` VALUES("3913", "6", "2014-10-23 23:00:02", "66.249.79.84", "1206");
INSERT INTO `wp_gf_form_view` VALUES("3914", "1", "2014-10-23 23:20:14", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("3915", "3", "2014-10-24 00:00:00", "66.249.79.84", "5309");
INSERT INTO `wp_gf_form_view` VALUES("3916", "6", "2014-10-24 00:00:10", "66.249.79.76", "1298");
INSERT INTO `wp_gf_form_view` VALUES("3917", "1", "2014-10-24 00:09:49", "208.43.252.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("3918", "3", "2014-10-24 01:00:00", "66.249.79.76", "5915");
INSERT INTO `wp_gf_form_view` VALUES("3919", "6", "2014-10-24 01:00:01", "66.249.79.76", "1436");
INSERT INTO `wp_gf_form_view` VALUES("3920", "2", "2014-10-24 01:09:05", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3921", "1", "2014-10-24 01:09:06", "174.48.23.201", "3");
INSERT INTO `wp_gf_form_view` VALUES("3922", "3", "2014-10-24 02:00:06", "66.249.79.84", "4890");
INSERT INTO `wp_gf_form_view` VALUES("3923", "6", "2014-10-24 02:00:08", "66.249.79.84", "1206");
INSERT INTO `wp_gf_form_view` VALUES("3924", "3", "2014-10-24 03:00:02", "66.249.79.92", "5224");
INSERT INTO `wp_gf_form_view` VALUES("3925", "6", "2014-10-24 03:00:03", "66.249.79.92", "1276");
INSERT INTO `wp_gf_form_view` VALUES("3926", "3", "2014-10-24 04:00:01", "66.249.79.84", "5362");
INSERT INTO `wp_gf_form_view` VALUES("3927", "6", "2014-10-24 04:00:03", "66.249.79.84", "1316");
INSERT INTO `wp_gf_form_view` VALUES("3928", "3", "2014-10-24 05:00:00", "66.249.79.84", "5310");
INSERT INTO `wp_gf_form_view` VALUES("3929", "6", "2014-10-24 05:00:01", "66.249.79.84", "1298");
INSERT INTO `wp_gf_form_view` VALUES("3930", "3", "2014-10-24 06:00:05", "66.249.79.92", "5253");
INSERT INTO `wp_gf_form_view` VALUES("3931", "6", "2014-10-24 06:00:07", "66.249.79.92", "1280");
INSERT INTO `wp_gf_form_view` VALUES("3932", "3", "2014-10-24 07:00:00", "66.249.79.92", "2565");
INSERT INTO `wp_gf_form_view` VALUES("3933", "6", "2014-10-24 07:00:00", "66.249.79.92", "628");
INSERT INTO `wp_gf_form_view` VALUES("3934", "3", "2014-10-24 08:00:05", "66.249.79.84", "5456");
INSERT INTO `wp_gf_form_view` VALUES("3935", "6", "2014-10-24 08:00:07", "66.249.79.84", "1336");
INSERT INTO `wp_gf_form_view` VALUES("3936", "1", "2014-10-24 08:11:33", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("3937", "3", "2014-10-24 09:00:00", "66.249.79.92", "5992");
INSERT INTO `wp_gf_form_view` VALUES("3938", "6", "2014-10-24 09:00:00", "66.249.79.92", "1475");
INSERT INTO `wp_gf_form_view` VALUES("3939", "6", "2014-10-24 10:00:00", "66.249.79.84", "1451");
INSERT INTO `wp_gf_form_view` VALUES("3940", "3", "2014-10-24 10:00:00", "66.249.79.84", "5941");
INSERT INTO `wp_gf_form_view` VALUES("3941", "3", "2014-10-24 11:00:00", "66.249.79.76", "6606");
INSERT INTO `wp_gf_form_view` VALUES("3942", "6", "2014-10-24 11:00:04", "66.249.79.84", "1627");
INSERT INTO `wp_gf_form_view` VALUES("3943", "2", "2014-10-24 11:36:28", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3944", "1", "2014-10-24 11:36:29", "174.48.23.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("3945", "3", "2014-10-24 12:00:01", "66.249.79.84", "5981");
INSERT INTO `wp_gf_form_view` VALUES("3946", "6", "2014-10-24 12:00:03", "66.249.79.84", "1458");
INSERT INTO `wp_gf_form_view` VALUES("3947", "3", "2014-10-24 13:00:00", "66.249.79.92", "6040");
INSERT INTO `wp_gf_form_view` VALUES("3948", "6", "2014-10-24 13:00:02", "66.249.79.92", "1480");
INSERT INTO `wp_gf_form_view` VALUES("3949", "3", "2014-10-24 14:00:00", "66.249.79.92", "5946");
INSERT INTO `wp_gf_form_view` VALUES("3950", "6", "2014-10-24 14:00:02", "66.249.79.92", "1452");
INSERT INTO `wp_gf_form_view` VALUES("3951", "3", "2014-10-24 15:00:00", "66.249.79.84", "4222");
INSERT INTO `wp_gf_form_view` VALUES("3952", "6", "2014-10-24 15:00:19", "66.249.79.76", "1024");
INSERT INTO `wp_gf_form_view` VALUES("3953", "3", "2014-10-24 16:00:00", "66.249.79.92", "4650");
INSERT INTO `wp_gf_form_view` VALUES("3954", "6", "2014-10-24 16:00:02", "66.249.79.84", "1138");
INSERT INTO `wp_gf_form_view` VALUES("3955", "3", "2014-10-24 17:00:00", "66.249.79.84", "3829");
INSERT INTO `wp_gf_form_view` VALUES("3956", "6", "2014-10-24 17:00:08", "66.249.79.76", "1248");
INSERT INTO `wp_gf_form_view` VALUES("3957", "3", "2014-10-24 18:00:00", "66.249.79.76", "1944");
INSERT INTO `wp_gf_form_view` VALUES("3958", "6", "2014-10-24 18:00:01", "66.249.79.76", "643");
INSERT INTO `wp_gf_form_view` VALUES("3959", "2", "2014-10-24 18:23:43", "110.89.52.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("3960", "6", "2014-10-24 19:00:00", "66.249.79.92", "1423");
INSERT INTO `wp_gf_form_view` VALUES("3961", "3", "2014-10-24 19:00:00", "66.249.79.92", "4324");
INSERT INTO `wp_gf_form_view` VALUES("3962", "3", "2014-10-24 20:00:00", "66.249.79.76", "4508");
INSERT INTO `wp_gf_form_view` VALUES("3963", "6", "2014-10-24 20:00:01", "66.249.79.76", "1484");
INSERT INTO `wp_gf_form_view` VALUES("3964", "3", "2014-10-24 21:00:05", "66.249.79.92", "4308");
INSERT INTO `wp_gf_form_view` VALUES("3965", "6", "2014-10-24 21:00:07", "66.249.79.92", "1410");
INSERT INTO `wp_gf_form_view` VALUES("3966", "3", "2014-10-24 22:00:01", "66.249.79.84", "4545");
INSERT INTO `wp_gf_form_view` VALUES("3967", "6", "2014-10-24 22:00:02", "66.249.79.84", "1496");
INSERT INTO `wp_gf_form_view` VALUES("3968", "3", "2014-10-24 23:00:00", "66.249.79.92", "3050");
INSERT INTO `wp_gf_form_view` VALUES("3969", "6", "2014-10-24 23:00:00", "66.249.79.92", "1486");
INSERT INTO `wp_gf_form_view` VALUES("3970", "3", "2014-10-25 00:00:03", "66.249.79.76", "2396");
INSERT INTO `wp_gf_form_view` VALUES("3971", "6", "2014-10-25 00:00:04", "66.249.79.76", "1164");
INSERT INTO `wp_gf_form_view` VALUES("3972", "3", "2014-10-25 01:00:01", "66.249.79.92", "3247");
INSERT INTO `wp_gf_form_view` VALUES("3973", "6", "2014-10-25 01:00:01", "66.249.79.92", "1578");
INSERT INTO `wp_gf_form_view` VALUES("3974", "3", "2014-10-25 02:00:00", "66.249.79.84", "3073");
INSERT INTO `wp_gf_form_view` VALUES("3975", "6", "2014-10-25 02:00:04", "66.249.79.92", "1508");
INSERT INTO `wp_gf_form_view` VALUES("3976", "1", "2014-10-25 02:39:55", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("3977", "3", "2014-10-25 03:00:02", "66.249.79.92", "3196");
INSERT INTO `wp_gf_form_view` VALUES("3978", "6", "2014-10-25 03:00:03", "66.249.79.92", "1558");
INSERT INTO `wp_gf_form_view` VALUES("3979", "3", "2014-10-25 04:00:01", "66.249.79.76", "3054");
INSERT INTO `wp_gf_form_view` VALUES("3980", "6", "2014-10-25 04:00:01", "66.249.79.76", "1492");
INSERT INTO `wp_gf_form_view` VALUES("3981", "3", "2014-10-25 05:00:01", "66.249.79.84", "1098");
INSERT INTO `wp_gf_form_view` VALUES("3982", "6", "2014-10-25 05:00:02", "66.249.79.84", "530");
INSERT INTO `wp_gf_form_view` VALUES("3983", "3", "2014-10-25 06:00:29", "66.249.79.92", "276");
INSERT INTO `wp_gf_form_view` VALUES("3984", "6", "2014-10-25 06:00:29", "66.249.79.92", "134");
INSERT INTO `wp_gf_form_view` VALUES("3985", "3", "2014-10-25 07:00:25", "66.249.79.84", "2338");
INSERT INTO `wp_gf_form_view` VALUES("3986", "6", "2014-10-25 07:00:25", "66.249.79.84", "1150");
INSERT INTO `wp_gf_form_view` VALUES("3987", "3", "2014-10-25 08:00:02", "66.249.79.76", "2644");
INSERT INTO `wp_gf_form_view` VALUES("3988", "6", "2014-10-25 08:00:02", "66.249.79.76", "1298");
INSERT INTO `wp_gf_form_view` VALUES("3989", "3", "2014-10-25 09:00:00", "66.249.79.92", "2853");
INSERT INTO `wp_gf_form_view` VALUES("3990", "6", "2014-10-25 09:00:00", "66.249.79.92", "1394");
INSERT INTO `wp_gf_form_view` VALUES("3991", "3", "2014-10-25 10:00:00", "158.85.89.6", "2784");
INSERT INTO `wp_gf_form_view` VALUES("3992", "6", "2014-10-25 10:00:00", "158.85.89.6", "1368");
INSERT INTO `wp_gf_form_view` VALUES("3993", "1", "2014-10-25 10:00:39", "158.85.89.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("3994", "3", "2014-10-25 11:00:03", "66.249.79.76", "2800");
INSERT INTO `wp_gf_form_view` VALUES("3995", "6", "2014-10-25 11:00:04", "66.249.79.76", "1381");
INSERT INTO `wp_gf_form_view` VALUES("3996", "1", "2014-10-25 11:53:54", "54.200.127.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("3997", "2", "2014-10-25 11:54:04", "54.200.127.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("3998", "3", "2014-10-25 12:00:02", "66.249.79.92", "2724");
INSERT INTO `wp_gf_form_view` VALUES("3999", "6", "2014-10-25 12:00:02", "66.249.79.92", "1336");
INSERT INTO `wp_gf_form_view` VALUES("4000", "3", "2014-10-25 13:00:00", "66.249.79.84", "2782");
INSERT INTO `wp_gf_form_view` VALUES("4001", "6", "2014-10-25 13:00:01", "66.249.79.84", "1376");
INSERT INTO `wp_gf_form_view` VALUES("4002", "3", "2014-10-25 14:00:04", "66.249.79.76", "2875");
INSERT INTO `wp_gf_form_view` VALUES("4003", "6", "2014-10-25 14:00:04", "66.249.79.76", "1398");
INSERT INTO `wp_gf_form_view` VALUES("4004", "3", "2014-10-25 15:00:02", "66.249.79.84", "2736");
INSERT INTO `wp_gf_form_view` VALUES("4005", "6", "2014-10-25 15:00:02", "66.249.79.84", "1330");
INSERT INTO `wp_gf_form_view` VALUES("4006", "3", "2014-10-25 16:00:01", "66.249.79.92", "2644");
INSERT INTO `wp_gf_form_view` VALUES("4007", "6", "2014-10-25 16:00:02", "66.249.79.92", "1308");
INSERT INTO `wp_gf_form_view` VALUES("4008", "3", "2014-10-25 17:00:03", "66.249.79.84", "830");
INSERT INTO `wp_gf_form_view` VALUES("4009", "6", "2014-10-25 17:00:04", "66.249.79.84", "408");
INSERT INTO `wp_gf_form_view` VALUES("4010", "1", "2014-10-25 17:20:18", "62.217.63.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("4011", "3", "2014-10-25 18:00:03", "66.249.79.92", "1106");
INSERT INTO `wp_gf_form_view` VALUES("4012", "6", "2014-10-25 18:00:03", "66.249.79.92", "540");
INSERT INTO `wp_gf_form_view` VALUES("4013", "3", "2014-10-25 19:00:01", "66.249.79.76", "2738");
INSERT INTO `wp_gf_form_view` VALUES("4014", "6", "2014-10-25 19:00:01", "66.249.79.76", "1340");
INSERT INTO `wp_gf_form_view` VALUES("4015", "3", "2014-10-25 20:00:03", "66.249.79.76", "2806");
INSERT INTO `wp_gf_form_view` VALUES("4016", "6", "2014-10-25 20:00:03", "66.249.79.76", "1366");
INSERT INTO `wp_gf_form_view` VALUES("4017", "3", "2014-10-25 21:00:02", "66.249.79.76", "2816");
INSERT INTO `wp_gf_form_view` VALUES("4018", "6", "2014-10-25 21:00:02", "66.249.79.76", "1384");
INSERT INTO `wp_gf_form_view` VALUES("4019", "3", "2014-10-25 22:00:00", "66.249.79.92", "2811");
INSERT INTO `wp_gf_form_view` VALUES("4020", "6", "2014-10-25 22:00:00", "66.249.79.92", "1380");
INSERT INTO `wp_gf_form_view` VALUES("4021", "3", "2014-10-25 23:00:00", "66.249.79.84", "2791");
INSERT INTO `wp_gf_form_view` VALUES("4022", "6", "2014-10-25 23:00:03", "66.249.79.84", "1358");
INSERT INTO `wp_gf_form_view` VALUES("4023", "3", "2014-10-26 00:00:03", "66.249.79.92", "2744");
INSERT INTO `wp_gf_form_view` VALUES("4024", "6", "2014-10-26 00:00:03", "66.249.79.92", "1352");
INSERT INTO `wp_gf_form_view` VALUES("4025", "3", "2014-10-26 01:00:01", "66.249.79.84", "2788");
INSERT INTO `wp_gf_form_view` VALUES("4026", "6", "2014-10-26 01:00:01", "66.249.79.84", "1362");
INSERT INTO `wp_gf_form_view` VALUES("4027", "3", "2014-10-26 02:00:00", "66.249.79.84", "2762");
INSERT INTO `wp_gf_form_view` VALUES("4028", "6", "2014-10-26 02:00:00", "66.249.79.84", "1356");
INSERT INTO `wp_gf_form_view` VALUES("4029", "3", "2014-10-26 03:00:00", "66.249.79.76", "2720");
INSERT INTO `wp_gf_form_view` VALUES("4030", "6", "2014-10-26 03:00:01", "66.249.79.76", "1336");
INSERT INTO `wp_gf_form_view` VALUES("4031", "3", "2014-10-26 04:00:02", "66.249.79.76", "2574");
INSERT INTO `wp_gf_form_view` VALUES("4032", "6", "2014-10-26 04:00:02", "66.249.79.76", "1264");
INSERT INTO `wp_gf_form_view` VALUES("4033", "6", "2014-10-26 05:00:00", "66.249.79.76", "314");
INSERT INTO `wp_gf_form_view` VALUES("4034", "3", "2014-10-26 05:00:00", "66.249.79.76", "640");
INSERT INTO `wp_gf_form_view` VALUES("4035", "2", "2014-10-26 05:42:07", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("4036", "3", "2014-10-26 06:01:29", "66.249.79.76", "280");
INSERT INTO `wp_gf_form_view` VALUES("4037", "6", "2014-10-26 06:01:29", "66.249.79.76", "135");
INSERT INTO `wp_gf_form_view` VALUES("4038", "1", "2014-10-26 06:44:14", "54.76.143.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("4039", "2", "2014-10-26 06:45:01", "54.76.143.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("4040", "3", "2014-10-26 07:00:03", "66.249.79.92", "2396");
INSERT INTO `wp_gf_form_view` VALUES("4041", "6", "2014-10-26 07:00:03", "66.249.79.92", "1178");
INSERT INTO `wp_gf_form_view` VALUES("4042", "3", "2014-10-26 08:01:13", "66.249.79.76", "2776");
INSERT INTO `wp_gf_form_view` VALUES("4043", "6", "2014-10-26 08:01:14", "66.249.79.76", "1358");
INSERT INTO `wp_gf_form_view` VALUES("4044", "3", "2014-10-26 09:00:01", "66.249.79.84", "2880");
INSERT INTO `wp_gf_form_view` VALUES("4045", "6", "2014-10-26 09:00:02", "66.249.79.84", "1410");
INSERT INTO `wp_gf_form_view` VALUES("4046", "3", "2014-10-26 10:00:02", "66.249.79.92", "3039");
INSERT INTO `wp_gf_form_view` VALUES("4047", "6", "2014-10-26 10:00:03", "66.249.79.92", "1482");
INSERT INTO `wp_gf_form_view` VALUES("4048", "1", "2014-10-26 10:49:00", "36.248.167.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("4049", "3", "2014-10-26 11:00:00", "66.249.79.92", "2853");
INSERT INTO `wp_gf_form_view` VALUES("4050", "6", "2014-10-26 11:00:00", "66.249.79.92", "1406");
INSERT INTO `wp_gf_form_view` VALUES("4051", "3", "2014-10-26 12:00:03", "66.249.79.84", "2856");
INSERT INTO `wp_gf_form_view` VALUES("4052", "6", "2014-10-26 12:00:04", "66.249.79.84", "1404");
INSERT INTO `wp_gf_form_view` VALUES("4053", "3", "2014-10-26 13:00:01", "66.249.79.92", "2912");
INSERT INTO `wp_gf_form_view` VALUES("4054", "6", "2014-10-26 13:00:02", "66.249.79.92", "1428");
INSERT INTO `wp_gf_form_view` VALUES("4055", "1", "2014-10-26 13:50:57", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("4056", "3", "2014-10-26 14:00:00", "66.249.79.84", "2836");
INSERT INTO `wp_gf_form_view` VALUES("4057", "6", "2014-10-26 14:00:00", "66.249.79.84", "1388");
INSERT INTO `wp_gf_form_view` VALUES("4058", "3", "2014-10-26 15:00:08", "66.249.79.76", "2864");
INSERT INTO `wp_gf_form_view` VALUES("4059", "6", "2014-10-26 15:00:08", "66.249.79.76", "1416");
INSERT INTO `wp_gf_form_view` VALUES("4060", "3", "2014-10-26 16:00:00", "66.249.79.92", "2504");
INSERT INTO `wp_gf_form_view` VALUES("4061", "6", "2014-10-26 16:00:00", "66.249.79.92", "1230");
INSERT INTO `wp_gf_form_view` VALUES("4062", "3", "2014-10-26 17:07:22", "66.249.79.92", "108");
INSERT INTO `wp_gf_form_view` VALUES("4063", "6", "2014-10-26 17:07:22", "66.249.79.92", "52");
INSERT INTO `wp_gf_form_view` VALUES("4064", "3", "2014-10-26 18:00:40", "66.249.79.76", "1594");
INSERT INTO `wp_gf_form_view` VALUES("4065", "6", "2014-10-26 18:00:40", "66.249.79.76", "778");
INSERT INTO `wp_gf_form_view` VALUES("4066", "1", "2014-10-26 18:14:29", "72.46.156.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("4067", "3", "2014-10-26 19:00:00", "66.249.79.76", "2600");
INSERT INTO `wp_gf_form_view` VALUES("4068", "6", "2014-10-26 19:00:00", "66.249.79.76", "1282");
INSERT INTO `wp_gf_form_view` VALUES("4069", "3", "2014-10-26 20:00:00", "96.54.205.189", "2664");
INSERT INTO `wp_gf_form_view` VALUES("4070", "6", "2014-10-26 20:00:00", "96.54.205.189", "1304");
INSERT INTO `wp_gf_form_view` VALUES("4071", "3", "2014-10-26 21:00:05", "66.249.79.84", "2762");
INSERT INTO `wp_gf_form_view` VALUES("4072", "6", "2014-10-26 21:00:05", "66.249.79.84", "1349");
INSERT INTO `wp_gf_form_view` VALUES("4073", "1", "2014-10-26 21:52:32", "197.160.170.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("4074", "6", "2014-10-26 22:00:00", "66.249.79.84", "1345");
INSERT INTO `wp_gf_form_view` VALUES("4075", "3", "2014-10-26 22:00:00", "66.249.79.84", "2740");
INSERT INTO `wp_gf_form_view` VALUES("4076", "3", "2014-10-26 23:00:05", "66.249.79.92", "2570");
INSERT INTO `wp_gf_form_view` VALUES("4077", "6", "2014-10-26 23:00:07", "66.249.79.92", "1256");
INSERT INTO `wp_gf_form_view` VALUES("4078", "3", "2014-10-27 00:00:01", "66.249.79.84", "2832");
INSERT INTO `wp_gf_form_view` VALUES("4079", "6", "2014-10-27 00:00:01", "66.249.79.84", "1396");
INSERT INTO `wp_gf_form_view` VALUES("4080", "3", "2014-10-27 01:00:01", "66.249.79.92", "2722");
INSERT INTO `wp_gf_form_view` VALUES("4081", "6", "2014-10-27 01:00:01", "66.249.79.92", "1344");
INSERT INTO `wp_gf_form_view` VALUES("4082", "3", "2014-10-27 02:00:00", "66.249.79.76", "2490");
INSERT INTO `wp_gf_form_view` VALUES("4083", "6", "2014-10-27 02:00:00", "66.249.79.76", "1222");
INSERT INTO `wp_gf_form_view` VALUES("4084", "3", "2014-10-27 03:00:08", "66.249.79.92", "2760");
INSERT INTO `wp_gf_form_view` VALUES("4085", "6", "2014-10-27 03:00:09", "66.249.79.92", "1352");
INSERT INTO `wp_gf_form_view` VALUES("4086", "3", "2014-10-27 04:00:00", "66.249.79.76", "2196");
INSERT INTO `wp_gf_form_view` VALUES("4087", "6", "2014-10-27 04:00:01", "66.249.79.76", "1082");
INSERT INTO `wp_gf_form_view` VALUES("4088", "3", "2014-10-27 05:22:58", "66.249.79.92", "1214");
INSERT INTO `wp_gf_form_view` VALUES("4089", "6", "2014-10-27 05:22:58", "66.249.79.92", "528");
INSERT INTO `wp_gf_form_view` VALUES("4090", "1", "2014-10-27 05:42:31", "107.170.4.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("4091", "3", "2014-10-27 06:00:01", "107.170.4.221", "5657");
INSERT INTO `wp_gf_form_view` VALUES("4092", "6", "2014-10-27 06:00:01", "107.170.4.221", "2394");
INSERT INTO `wp_gf_form_view` VALUES("4093", "3", "2014-10-27 07:00:01", "66.249.79.84", "2724");
INSERT INTO `wp_gf_form_view` VALUES("4094", "6", "2014-10-27 07:00:01", "66.249.79.84", "1328");
INSERT INTO `wp_gf_form_view` VALUES("4095", "3", "2014-10-27 08:00:03", "66.249.79.92", "2614");
INSERT INTO `wp_gf_form_view` VALUES("4096", "6", "2014-10-27 08:00:04", "66.249.79.92", "1280");
INSERT INTO `wp_gf_form_view` VALUES("4097", "3", "2014-10-27 09:00:02", "66.249.79.84", "2785");
INSERT INTO `wp_gf_form_view` VALUES("4098", "6", "2014-10-27 09:00:03", "66.249.79.84", "1348");
INSERT INTO `wp_gf_form_view` VALUES("4099", "3", "2014-10-27 10:00:00", "66.249.79.92", "2723");
INSERT INTO `wp_gf_form_view` VALUES("4100", "6", "2014-10-27 10:00:04", "66.249.79.84", "1344");
INSERT INTO `wp_gf_form_view` VALUES("4101", "1", "2014-10-27 10:43:39", "183.224.1.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("4102", "3", "2014-10-27 11:00:02", "66.249.79.84", "2849");
INSERT INTO `wp_gf_form_view` VALUES("4103", "6", "2014-10-27 11:00:03", "66.249.79.84", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4104", "3", "2014-10-27 12:00:00", "66.249.79.76", "2763");
INSERT INTO `wp_gf_form_view` VALUES("4105", "6", "2014-10-27 12:00:04", "66.249.79.76", "1360");
INSERT INTO `wp_gf_form_view` VALUES("4106", "3", "2014-10-27 13:00:01", "66.249.79.84", "2786");
INSERT INTO `wp_gf_form_view` VALUES("4107", "6", "2014-10-27 13:00:01", "66.249.79.84", "1370");
INSERT INTO `wp_gf_form_view` VALUES("4108", "3", "2014-10-27 14:00:04", "66.249.79.76", "2710");
INSERT INTO `wp_gf_form_view` VALUES("4109", "6", "2014-10-27 14:00:04", "66.249.79.76", "1328");
INSERT INTO `wp_gf_form_view` VALUES("4110", "3", "2014-10-27 15:00:02", "66.249.79.76", "2788");
INSERT INTO `wp_gf_form_view` VALUES("4111", "6", "2014-10-27 15:00:02", "66.249.79.76", "1364");
INSERT INTO `wp_gf_form_view` VALUES("4112", "1", "2014-10-27 15:49:58", "184.66.21.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("4113", "3", "2014-10-27 16:00:00", "66.249.79.84", "2235");
INSERT INTO `wp_gf_form_view` VALUES("4114", "6", "2014-10-27 16:00:10", "66.249.79.76", "1096");
INSERT INTO `wp_gf_form_view` VALUES("4115", "3", "2014-10-27 17:01:14", "66.249.79.76", "126");
INSERT INTO `wp_gf_form_view` VALUES("4116", "6", "2014-10-27 17:01:15", "66.249.79.76", "62");
INSERT INTO `wp_gf_form_view` VALUES("4117", "3", "2014-10-27 18:00:11", "66.249.79.84", "2208");
INSERT INTO `wp_gf_form_view` VALUES("4118", "6", "2014-10-27 18:00:11", "66.249.79.84", "1078");
INSERT INTO `wp_gf_form_view` VALUES("4119", "3", "2014-10-27 19:00:03", "66.249.79.76", "1922");
INSERT INTO `wp_gf_form_view` VALUES("4120", "6", "2014-10-27 19:00:04", "66.249.79.76", "758");
INSERT INTO `wp_gf_form_view` VALUES("4121", "3", "2014-10-27 20:00:03", "66.249.79.92", "4264");
INSERT INTO `wp_gf_form_view` VALUES("4122", "6", "2014-10-27 20:00:04", "66.249.79.92", "1401");
INSERT INTO `wp_gf_form_view` VALUES("4123", "6", "2014-10-27 21:00:00", "66.249.79.92", "1422");
INSERT INTO `wp_gf_form_view` VALUES("4124", "3", "2014-10-27 21:00:00", "66.249.79.92", "4373");
INSERT INTO `wp_gf_form_view` VALUES("4125", "1", "2014-10-27 21:38:20", "192.81.211.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("4126", "2", "2014-10-27 21:38:20", "192.81.211.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("4127", "6", "2014-10-27 22:00:00", "66.249.79.76", "1412");
INSERT INTO `wp_gf_form_view` VALUES("4128", "3", "2014-10-27 22:00:00", "66.249.79.76", "4307");
INSERT INTO `wp_gf_form_view` VALUES("4129", "3", "2014-10-27 23:00:01", "66.249.79.76", "4318");
INSERT INTO `wp_gf_form_view` VALUES("4130", "6", "2014-10-27 23:00:02", "66.249.79.76", "1420");
INSERT INTO `wp_gf_form_view` VALUES("4131", "3", "2014-10-28 00:00:00", "66.249.79.76", "4526");
INSERT INTO `wp_gf_form_view` VALUES("4132", "6", "2014-10-28 00:00:02", "66.249.79.92", "1483");
INSERT INTO `wp_gf_form_view` VALUES("4133", "6", "2014-10-28 01:00:00", "66.249.79.92", "1347");
INSERT INTO `wp_gf_form_view` VALUES("4134", "3", "2014-10-28 01:00:00", "66.249.79.92", "4104");
INSERT INTO `wp_gf_form_view` VALUES("4135", "3", "2014-10-28 02:00:00", "66.249.79.92", "3594");
INSERT INTO `wp_gf_form_view` VALUES("4136", "6", "2014-10-28 02:00:00", "66.249.79.92", "1182");
INSERT INTO `wp_gf_form_view` VALUES("4137", "3", "2014-10-28 03:00:02", "66.249.79.92", "3676");
INSERT INTO `wp_gf_form_view` VALUES("4138", "6", "2014-10-28 03:00:02", "66.249.79.92", "1212");
INSERT INTO `wp_gf_form_view` VALUES("4139", "3", "2014-10-28 04:00:13", "202.46.62.169", "3698");
INSERT INTO `wp_gf_form_view` VALUES("4140", "6", "2014-10-28 04:00:13", "202.46.62.169", "1212");
INSERT INTO `wp_gf_form_view` VALUES("4141", "3", "2014-10-28 05:00:17", "66.249.79.92", "562");
INSERT INTO `wp_gf_form_view` VALUES("4142", "6", "2014-10-28 05:00:18", "66.249.79.92", "184");
INSERT INTO `wp_gf_form_view` VALUES("4143", "3", "2014-10-28 06:00:00", "66.249.79.84", "3923");
INSERT INTO `wp_gf_form_view` VALUES("4144", "6", "2014-10-28 06:00:00", "66.249.79.84", "1286");
INSERT INTO `wp_gf_form_view` VALUES("4145", "3", "2014-10-28 07:00:01", "66.249.79.92", "4067");
INSERT INTO `wp_gf_form_view` VALUES("4146", "6", "2014-10-28 07:00:02", "66.249.79.92", "1342");
INSERT INTO `wp_gf_form_view` VALUES("4147", "3", "2014-10-28 08:00:00", "66.249.79.92", "3879");
INSERT INTO `wp_gf_form_view` VALUES("4148", "6", "2014-10-28 08:00:05", "66.249.79.92", "1278");
INSERT INTO `wp_gf_form_view` VALUES("4149", "2", "2014-10-28 08:22:03", "76.164.194.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("4150", "3", "2014-10-28 09:00:00", "66.249.79.92", "3581");
INSERT INTO `wp_gf_form_view` VALUES("4151", "6", "2014-10-28 09:00:01", "66.249.79.92", "1174");
INSERT INTO `wp_gf_form_view` VALUES("4152", "3", "2014-10-28 10:00:00", "66.249.79.84", "4285");
INSERT INTO `wp_gf_form_view` VALUES("4153", "6", "2014-10-28 10:00:00", "66.249.79.84", "1420");
INSERT INTO `wp_gf_form_view` VALUES("4154", "3", "2014-10-28 11:00:00", "66.249.79.84", "4266");
INSERT INTO `wp_gf_form_view` VALUES("4155", "6", "2014-10-28 11:00:02", "66.249.79.76", "1406");
INSERT INTO `wp_gf_form_view` VALUES("4156", "3", "2014-10-28 12:00:01", "66.249.79.92", "4378");
INSERT INTO `wp_gf_form_view` VALUES("4157", "6", "2014-10-28 12:00:01", "66.249.79.92", "1437");
INSERT INTO `wp_gf_form_view` VALUES("4158", "1", "2014-10-28 12:51:59", "64.132.142.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("4159", "2", "2014-10-28 12:52:10", "64.132.142.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("4160", "3", "2014-10-28 13:00:00", "66.249.79.92", "4152");
INSERT INTO `wp_gf_form_view` VALUES("4161", "6", "2014-10-28 13:00:00", "66.249.79.92", "1368");
INSERT INTO `wp_gf_form_view` VALUES("4162", "3", "2014-10-28 14:00:04", "66.249.79.92", "4014");
INSERT INTO `wp_gf_form_view` VALUES("4163", "6", "2014-10-28 14:00:04", "66.249.79.92", "1319");
INSERT INTO `wp_gf_form_view` VALUES("4164", "6", "2014-10-28 15:00:00", "66.249.79.84", "1227");
INSERT INTO `wp_gf_form_view` VALUES("4165", "3", "2014-10-28 15:00:00", "66.249.79.84", "3709");
INSERT INTO `wp_gf_form_view` VALUES("4166", "1", "2014-10-28 15:29:34", "158.85.89.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("4167", "3", "2014-10-28 16:00:04", "66.249.79.76", "2317");
INSERT INTO `wp_gf_form_view` VALUES("4168", "6", "2014-10-28 16:00:05", "66.249.79.76", "766");
INSERT INTO `wp_gf_form_view` VALUES("4169", "2", "2014-10-28 16:36:40", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("4170", "3", "2014-10-28 17:01:06", "66.249.79.84", "1644");
INSERT INTO `wp_gf_form_view` VALUES("4171", "6", "2014-10-28 17:01:07", "66.249.79.84", "540");
INSERT INTO `wp_gf_form_view` VALUES("4172", "3", "2014-10-28 18:00:03", "66.249.79.84", "4046");
INSERT INTO `wp_gf_form_view` VALUES("4173", "6", "2014-10-28 18:00:05", "66.249.79.84", "1334");
INSERT INTO `wp_gf_form_view` VALUES("4174", "3", "2014-10-28 19:00:03", "66.249.79.76", "3992");
INSERT INTO `wp_gf_form_view` VALUES("4175", "6", "2014-10-28 19:00:03", "66.249.79.76", "1324");
INSERT INTO `wp_gf_form_view` VALUES("4176", "3", "2014-10-28 20:00:00", "66.249.79.76", "4206");
INSERT INTO `wp_gf_form_view` VALUES("4177", "6", "2014-10-28 20:00:04", "66.249.79.92", "1391");
INSERT INTO `wp_gf_form_view` VALUES("4178", "6", "2014-10-28 21:00:00", "66.249.79.92", "1457");
INSERT INTO `wp_gf_form_view` VALUES("4179", "3", "2014-10-28 21:00:00", "66.249.79.92", "4425");
INSERT INTO `wp_gf_form_view` VALUES("4180", "3", "2014-10-28 22:00:00", "66.249.79.92", "3551");
INSERT INTO `wp_gf_form_view` VALUES("4181", "6", "2014-10-28 22:00:10", "66.249.79.84", "1178");
INSERT INTO `wp_gf_form_view` VALUES("4182", "3", "2014-10-28 23:00:02", "66.249.79.84", "3954");
INSERT INTO `wp_gf_form_view` VALUES("4183", "6", "2014-10-28 23:00:02", "66.249.79.84", "1308");
INSERT INTO `wp_gf_form_view` VALUES("4184", "3", "2014-10-29 00:00:00", "66.249.79.84", "4284");
INSERT INTO `wp_gf_form_view` VALUES("4185", "6", "2014-10-29 00:00:01", "66.249.79.84", "1422");
INSERT INTO `wp_gf_form_view` VALUES("4186", "1", "2014-10-29 00:12:14", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("4187", "3", "2014-10-29 01:00:03", "66.249.79.84", "3784");
INSERT INTO `wp_gf_form_view` VALUES("4188", "6", "2014-10-29 01:00:03", "66.249.79.84", "1248");
INSERT INTO `wp_gf_form_view` VALUES("4189", "3", "2014-10-29 02:00:01", "66.249.79.84", "4356");
INSERT INTO `wp_gf_form_view` VALUES("4190", "6", "2014-10-29 02:00:01", "66.249.79.84", "1441");
INSERT INTO `wp_gf_form_view` VALUES("4191", "6", "2014-10-29 03:00:00", "66.249.79.92", "1467");
INSERT INTO `wp_gf_form_view` VALUES("4192", "3", "2014-10-29 03:00:00", "66.249.79.92", "4447");
INSERT INTO `wp_gf_form_view` VALUES("4193", "3", "2014-10-29 04:00:04", "66.249.79.92", "1600");
INSERT INTO `wp_gf_form_view` VALUES("4194", "6", "2014-10-29 04:00:05", "66.249.79.92", "530");
INSERT INTO `wp_gf_form_view` VALUES("4195", "3", "2014-10-29 05:01:08", "66.249.79.92", "1156");
INSERT INTO `wp_gf_form_view` VALUES("4196", "6", "2014-10-29 05:01:08", "66.249.79.92", "384");
INSERT INTO `wp_gf_form_view` VALUES("4197", "1", "2014-10-29 05:09:04", "199.168.141.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("4198", "3", "2014-10-29 06:00:03", "66.249.79.84", "4086");
INSERT INTO `wp_gf_form_view` VALUES("4199", "6", "2014-10-29 06:00:03", "66.249.79.84", "1346");
INSERT INTO `wp_gf_form_view` VALUES("4200", "3", "2014-10-29 07:00:00", "66.249.79.84", "4144");
INSERT INTO `wp_gf_form_view` VALUES("4201", "6", "2014-10-29 07:00:00", "66.249.79.84", "1366");
INSERT INTO `wp_gf_form_view` VALUES("4202", "3", "2014-10-29 08:00:04", "66.249.79.92", "3914");
INSERT INTO `wp_gf_form_view` VALUES("4203", "6", "2014-10-29 08:00:05", "66.249.79.92", "1292");
INSERT INTO `wp_gf_form_view` VALUES("4204", "3", "2014-10-29 09:00:08", "66.249.79.84", "3875");
INSERT INTO `wp_gf_form_view` VALUES("4205", "6", "2014-10-29 09:00:08", "66.249.79.84", "1276");
INSERT INTO `wp_gf_form_view` VALUES("4206", "3", "2014-10-29 10:00:00", "66.249.79.76", "4166");
INSERT INTO `wp_gf_form_view` VALUES("4207", "6", "2014-10-29 10:00:03", "192.240.220.29", "1374");
INSERT INTO `wp_gf_form_view` VALUES("4208", "3", "2014-10-29 11:00:08", "66.249.79.92", "4229");
INSERT INTO `wp_gf_form_view` VALUES("4209", "6", "2014-10-29 11:00:09", "66.249.79.92", "1390");
INSERT INTO `wp_gf_form_view` VALUES("4210", "3", "2014-10-29 12:00:00", "66.249.79.76", "4262");
INSERT INTO `wp_gf_form_view` VALUES("4211", "6", "2014-10-29 12:00:04", "66.249.79.84", "1404");
INSERT INTO `wp_gf_form_view` VALUES("4212", "3", "2014-10-29 13:00:00", "66.249.79.76", "4229");
INSERT INTO `wp_gf_form_view` VALUES("4213", "6", "2014-10-29 13:00:04", "66.249.79.92", "1394");
INSERT INTO `wp_gf_form_view` VALUES("4214", "3", "2014-10-29 14:00:03", "66.249.79.84", "4258");
INSERT INTO `wp_gf_form_view` VALUES("4215", "6", "2014-10-29 14:00:03", "66.249.79.84", "1404");
INSERT INTO `wp_gf_form_view` VALUES("4216", "3", "2014-10-29 15:00:01", "66.249.79.76", "4176");
INSERT INTO `wp_gf_form_view` VALUES("4217", "6", "2014-10-29 15:00:02", "66.249.79.76", "1374");
INSERT INTO `wp_gf_form_view` VALUES("4218", "3", "2014-10-29 16:00:00", "66.249.79.84", "1280");
INSERT INTO `wp_gf_form_view` VALUES("4219", "6", "2014-10-29 16:00:00", "66.249.79.84", "424");
INSERT INTO `wp_gf_form_view` VALUES("4220", "3", "2014-10-29 17:01:38", "66.249.79.76", "2014");
INSERT INTO `wp_gf_form_view` VALUES("4221", "6", "2014-10-29 17:01:39", "66.249.79.76", "666");
INSERT INTO `wp_gf_form_view` VALUES("4222", "3", "2014-10-29 18:00:00", "66.249.79.84", "3923");
INSERT INTO `wp_gf_form_view` VALUES("4223", "6", "2014-10-29 18:00:01", "66.249.79.84", "1298");
INSERT INTO `wp_gf_form_view` VALUES("4224", "3", "2014-10-29 19:00:00", "66.249.79.84", "3881");
INSERT INTO `wp_gf_form_view` VALUES("4225", "6", "2014-10-29 19:00:00", "66.249.79.84", "1286");
INSERT INTO `wp_gf_form_view` VALUES("4226", "3", "2014-10-29 20:00:00", "66.249.79.92", "3980");
INSERT INTO `wp_gf_form_view` VALUES("4227", "6", "2014-10-29 20:00:04", "66.249.79.84", "1316");
INSERT INTO `wp_gf_form_view` VALUES("4228", "3", "2014-10-29 21:00:00", "66.249.79.92", "4107");
INSERT INTO `wp_gf_form_view` VALUES("4229", "6", "2014-10-29 21:00:04", "66.249.79.92", "1356");
INSERT INTO `wp_gf_form_view` VALUES("4230", "1", "2014-10-29 21:58:50", "24.108.130.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("4231", "3", "2014-10-29 22:00:00", "66.249.79.76", "3942");
INSERT INTO `wp_gf_form_view` VALUES("4232", "6", "2014-10-29 22:00:02", "66.249.79.84", "1304");
INSERT INTO `wp_gf_form_view` VALUES("4233", "1", "2014-10-29 22:00:23", "24.108.130.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("4234", "3", "2014-10-29 23:00:00", "66.249.79.76", "3957");
INSERT INTO `wp_gf_form_view` VALUES("4235", "6", "2014-10-29 23:00:00", "66.249.79.76", "1314");
INSERT INTO `wp_gf_form_view` VALUES("4236", "3", "2014-10-30 00:00:00", "66.249.79.92", "4157");
INSERT INTO `wp_gf_form_view` VALUES("4237", "6", "2014-10-30 00:00:01", "66.249.79.92", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4238", "3", "2014-10-30 01:00:00", "66.249.79.76", "4176");
INSERT INTO `wp_gf_form_view` VALUES("4239", "6", "2014-10-30 01:00:01", "66.249.79.76", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4240", "3", "2014-10-30 02:00:05", "66.249.79.92", "4098");
INSERT INTO `wp_gf_form_view` VALUES("4241", "6", "2014-10-30 02:00:06", "66.249.79.92", "1352");
INSERT INTO `wp_gf_form_view` VALUES("4242", "3", "2014-10-30 03:00:02", "66.249.79.76", "3570");
INSERT INTO `wp_gf_form_view` VALUES("4243", "6", "2014-10-30 03:00:02", "66.249.79.76", "1184");
INSERT INTO `wp_gf_form_view` VALUES("4244", "6", "2014-10-30 04:02:29", "100.43.85.24", "78");
INSERT INTO `wp_gf_form_view` VALUES("4245", "3", "2014-10-30 04:02:30", "100.43.85.24", "246");
INSERT INTO `wp_gf_form_view` VALUES("4246", "1", "2014-10-30 04:25:25", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("4247", "3", "2014-10-30 05:02:38", "66.249.79.84", "1360");
INSERT INTO `wp_gf_form_view` VALUES("4248", "6", "2014-10-30 05:02:38", "66.249.79.84", "450");
INSERT INTO `wp_gf_form_view` VALUES("4249", "3", "2014-10-30 06:00:03", "66.249.79.84", "3925");
INSERT INTO `wp_gf_form_view` VALUES("4250", "6", "2014-10-30 06:00:03", "66.249.79.84", "1288");
INSERT INTO `wp_gf_form_view` VALUES("4251", "3", "2014-10-30 07:00:02", "66.249.79.84", "4353");
INSERT INTO `wp_gf_form_view` VALUES("4252", "6", "2014-10-30 07:00:03", "66.249.79.84", "1447");
INSERT INTO `wp_gf_form_view` VALUES("4253", "2", "2014-10-30 07:55:02", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("4254", "3", "2014-10-30 08:00:00", "66.249.79.76", "4229");
INSERT INTO `wp_gf_form_view` VALUES("4255", "6", "2014-10-30 08:00:00", "66.249.79.76", "1398");
INSERT INTO `wp_gf_form_view` VALUES("4256", "3", "2014-10-30 09:00:00", "66.249.79.92", "4241");
INSERT INTO `wp_gf_form_view` VALUES("4257", "6", "2014-10-30 09:00:00", "66.249.79.92", "1390");
INSERT INTO `wp_gf_form_view` VALUES("4258", "3", "2014-10-30 10:00:00", "66.249.79.92", "4384");
INSERT INTO `wp_gf_form_view` VALUES("4259", "6", "2014-10-30 10:00:00", "66.249.79.92", "1448");
INSERT INTO `wp_gf_form_view` VALUES("4260", "3", "2014-10-30 11:00:01", "66.249.79.76", "4312");
INSERT INTO `wp_gf_form_view` VALUES("4261", "6", "2014-10-30 11:00:02", "66.249.79.76", "1418");
INSERT INTO `wp_gf_form_view` VALUES("4262", "3", "2014-10-30 12:00:04", "66.249.79.92", "4213");
INSERT INTO `wp_gf_form_view` VALUES("4263", "6", "2014-10-30 12:00:05", "66.249.79.92", "1392");
INSERT INTO `wp_gf_form_view` VALUES("4264", "3", "2014-10-30 13:00:00", "66.249.79.84", "4219");
INSERT INTO `wp_gf_form_view` VALUES("4265", "6", "2014-10-30 13:00:03", "66.249.79.84", "1390");
INSERT INTO `wp_gf_form_view` VALUES("4266", "3", "2014-10-30 14:00:00", "66.249.79.76", "4228");
INSERT INTO `wp_gf_form_view` VALUES("4267", "6", "2014-10-30 14:00:01", "66.249.79.76", "1396");
INSERT INTO `wp_gf_form_view` VALUES("4268", "3", "2014-10-30 15:00:02", "66.249.79.84", "3662");
INSERT INTO `wp_gf_form_view` VALUES("4269", "6", "2014-10-30 15:00:03", "66.249.79.84", "1204");
INSERT INTO `wp_gf_form_view` VALUES("4270", "3", "2014-10-30 16:00:25", "157.55.39.194", "134");
INSERT INTO `wp_gf_form_view` VALUES("4271", "6", "2014-10-30 16:00:27", "157.55.39.194", "44");
INSERT INTO `wp_gf_form_view` VALUES("4272", "2", "2014-10-30 16:11:34", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("4273", "3", "2014-10-30 17:01:54", "66.249.79.84", "518");
INSERT INTO `wp_gf_form_view` VALUES("4274", "6", "2014-10-30 17:01:54", "66.249.79.84", "176");
INSERT INTO `wp_gf_form_view` VALUES("4275", "3", "2014-10-30 18:00:16", "66.249.79.76", "3898");
INSERT INTO `wp_gf_form_view` VALUES("4276", "6", "2014-10-30 18:00:17", "66.249.79.76", "1288");
INSERT INTO `wp_gf_form_view` VALUES("4277", "3", "2014-10-30 19:00:00", "157.55.39.194", "4070");
INSERT INTO `wp_gf_form_view` VALUES("4278", "6", "2014-10-30 19:00:01", "66.249.79.84", "1334");
INSERT INTO `wp_gf_form_view` VALUES("4279", "3", "2014-10-30 20:00:01", "66.249.79.84", "4268");
INSERT INTO `wp_gf_form_view` VALUES("4280", "6", "2014-10-30 20:00:02", "66.249.79.84", "1409");
INSERT INTO `wp_gf_form_view` VALUES("4281", "6", "2014-10-30 21:00:00", "66.249.79.84", "1241");
INSERT INTO `wp_gf_form_view` VALUES("4282", "3", "2014-10-30 21:00:00", "66.249.79.84", "3759");
INSERT INTO `wp_gf_form_view` VALUES("4283", "3", "2014-10-30 22:00:01", "66.249.79.84", "4330");
INSERT INTO `wp_gf_form_view` VALUES("4284", "6", "2014-10-30 22:00:01", "66.249.79.84", "1424");
INSERT INTO `wp_gf_form_view` VALUES("4285", "3", "2014-10-30 23:00:01", "66.249.79.92", "3502");
INSERT INTO `wp_gf_form_view` VALUES("4286", "6", "2014-10-30 23:00:01", "66.249.79.92", "1394");
INSERT INTO `wp_gf_form_view` VALUES("4287", "6", "2014-10-31 00:00:01", "66.249.79.76", "1440");
INSERT INTO `wp_gf_form_view` VALUES("4288", "3", "2014-10-31 00:00:02", "66.249.79.76", "2938");
INSERT INTO `wp_gf_form_view` VALUES("4289", "6", "2014-10-31 01:00:09", "66.249.79.92", "1420");
INSERT INTO `wp_gf_form_view` VALUES("4290", "3", "2014-10-31 01:00:09", "66.249.79.92", "2892");
INSERT INTO `wp_gf_form_view` VALUES("4291", "6", "2014-10-31 02:00:02", "66.249.79.92", "1334");
INSERT INTO `wp_gf_form_view` VALUES("4292", "3", "2014-10-31 02:00:02", "66.249.79.92", "2704");
INSERT INTO `wp_gf_form_view` VALUES("4293", "6", "2014-10-31 03:00:04", "66.249.79.76", "912");
INSERT INTO `wp_gf_form_view` VALUES("4294", "3", "2014-10-31 03:00:04", "66.249.79.76", "1866");
INSERT INTO `wp_gf_form_view` VALUES("4295", "6", "2014-10-31 04:04:59", "66.249.79.84", "70");
INSERT INTO `wp_gf_form_view` VALUES("4296", "3", "2014-10-31 04:05:00", "66.249.79.84", "152");
INSERT INTO `wp_gf_form_view` VALUES("4297", "6", "2014-10-31 05:00:21", "66.249.79.92", "982");
INSERT INTO `wp_gf_form_view` VALUES("4298", "3", "2014-10-31 05:00:21", "66.249.79.92", "2014");
INSERT INTO `wp_gf_form_view` VALUES("4299", "6", "2014-10-31 06:00:09", "66.249.79.76", "1296");
INSERT INTO `wp_gf_form_view` VALUES("4300", "3", "2014-10-31 06:00:10", "66.249.79.76", "2624");
INSERT INTO `wp_gf_form_view` VALUES("4301", "6", "2014-10-31 07:00:02", "66.249.79.76", "1327");
INSERT INTO `wp_gf_form_view` VALUES("4302", "3", "2014-10-31 07:00:03", "66.249.79.76", "2729");
INSERT INTO `wp_gf_form_view` VALUES("4303", "3", "2014-10-31 08:00:00", "66.249.79.76", "2732");
INSERT INTO `wp_gf_form_view` VALUES("4304", "6", "2014-10-31 08:00:05", "66.249.79.92", "1332");
INSERT INTO `wp_gf_form_view` VALUES("4305", "6", "2014-10-31 09:00:01", "66.249.79.84", "1328");
INSERT INTO `wp_gf_form_view` VALUES("4306", "3", "2014-10-31 09:00:01", "66.249.79.84", "2708");
INSERT INTO `wp_gf_form_view` VALUES("4307", "6", "2014-10-31 10:00:05", "66.249.79.84", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4308", "3", "2014-10-31 10:00:05", "66.249.79.84", "2812");
INSERT INTO `wp_gf_form_view` VALUES("4309", "3", "2014-10-31 11:00:00", "66.249.79.76", "2760");
INSERT INTO `wp_gf_form_view` VALUES("4310", "6", "2014-10-31 11:00:10", "66.249.79.92", "1362");
INSERT INTO `wp_gf_form_view` VALUES("4311", "6", "2014-10-31 12:00:01", "66.249.79.92", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4312", "3", "2014-10-31 12:00:01", "66.249.79.92", "2820");
INSERT INTO `wp_gf_form_view` VALUES("4313", "6", "2014-10-31 13:00:02", "66.249.79.76", "1362");
INSERT INTO `wp_gf_form_view` VALUES("4314", "3", "2014-10-31 13:00:03", "66.249.79.76", "2798");
INSERT INTO `wp_gf_form_view` VALUES("4315", "6", "2014-10-31 14:00:02", "66.249.79.84", "1361");
INSERT INTO `wp_gf_form_view` VALUES("4316", "3", "2014-10-31 14:00:02", "66.249.79.84", "2774");
INSERT INTO `wp_gf_form_view` VALUES("4317", "3", "2014-10-31 15:00:04", "66.249.79.92", "1834");
INSERT INTO `wp_gf_form_view` VALUES("4318", "6", "2014-10-31 15:00:05", "66.249.79.92", "898");
INSERT INTO `wp_gf_form_view` VALUES("4319", "6", "2014-10-31 16:03:21", "66.249.79.84", "72");
INSERT INTO `wp_gf_form_view` VALUES("4320", "3", "2014-10-31 16:03:29", "66.249.79.84", "144");
INSERT INTO `wp_gf_form_view` VALUES("4321", "1", "2014-10-31 16:28:54", "198.23.216.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("4322", "6", "2014-10-31 17:00:06", "66.249.79.84", "538");
INSERT INTO `wp_gf_form_view` VALUES("4323", "3", "2014-10-31 17:00:06", "66.249.79.84", "1086");
INSERT INTO `wp_gf_form_view` VALUES("4324", "6", "2014-10-31 18:00:14", "66.249.79.76", "1150");
INSERT INTO `wp_gf_form_view` VALUES("4325", "3", "2014-10-31 18:00:14", "66.249.79.76", "2340");
INSERT INTO `wp_gf_form_view` VALUES("4326", "1", "2014-10-31 18:19:15", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("4327", "6", "2014-10-31 19:00:02", "66.249.79.92", "1170");
INSERT INTO `wp_gf_form_view` VALUES("4328", "3", "2014-10-31 19:00:03", "66.249.79.92", "2373");
INSERT INTO `wp_gf_form_view` VALUES("4329", "6", "2014-10-31 20:00:00", "66.249.79.84", "1320");
INSERT INTO `wp_gf_form_view` VALUES("4330", "3", "2014-10-31 20:00:01", "66.249.79.84", "2692");
INSERT INTO `wp_gf_form_view` VALUES("4331", "6", "2014-10-31 21:00:03", "66.249.79.84", "1186");
INSERT INTO `wp_gf_form_view` VALUES("4332", "3", "2014-10-31 21:00:04", "66.249.79.84", "2426");
INSERT INTO `wp_gf_form_view` VALUES("4333", "6", "2014-10-31 22:00:01", "66.249.79.84", "1378");
INSERT INTO `wp_gf_form_view` VALUES("4334", "3", "2014-10-31 22:00:01", "66.249.79.84", "2824");
INSERT INTO `wp_gf_form_view` VALUES("4335", "6", "2014-10-31 23:00:02", "66.249.79.84", "1414");
INSERT INTO `wp_gf_form_view` VALUES("4336", "3", "2014-10-31 23:00:02", "66.249.79.84", "2872");
INSERT INTO `wp_gf_form_view` VALUES("4337", "6", "2014-11-01 00:00:03", "66.249.79.92", "1406");
INSERT INTO `wp_gf_form_view` VALUES("4338", "3", "2014-11-01 00:00:04", "66.249.79.92", "2840");
INSERT INTO `wp_gf_form_view` VALUES("4339", "6", "2014-11-01 01:00:00", "66.249.79.84", "1108");
INSERT INTO `wp_gf_form_view` VALUES("4340", "3", "2014-11-01 01:00:00", "66.249.79.84", "2294");
INSERT INTO `wp_gf_form_view` VALUES("4341", "6", "2014-11-01 02:00:03", "66.249.79.76", "1362");
INSERT INTO `wp_gf_form_view` VALUES("4342", "3", "2014-11-01 02:00:03", "66.249.79.76", "2764");
INSERT INTO `wp_gf_form_view` VALUES("4343", "1", "2014-11-01 02:13:23", "192.99.141.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("4344", "6", "2014-11-01 03:00:00", "66.249.79.84", "1448");
INSERT INTO `wp_gf_form_view` VALUES("4345", "3", "2014-11-01 03:00:00", "66.249.79.84", "2963");
INSERT INTO `wp_gf_form_view` VALUES("4346", "3", "2014-11-01 04:00:21", "202.46.48.153", "230");
INSERT INTO `wp_gf_form_view` VALUES("4347", "6", "2014-11-01 04:00:22", "202.46.48.153", "112");
INSERT INTO `wp_gf_form_view` VALUES("4348", "6", "2014-11-01 05:03:15", "66.249.79.84", "974");
INSERT INTO `wp_gf_form_view` VALUES("4349", "3", "2014-11-01 05:03:15", "66.249.79.84", "1997");
INSERT INTO `wp_gf_form_view` VALUES("4350", "3", "2014-11-01 06:00:00", "66.249.79.92", "2545");
INSERT INTO `wp_gf_form_view` VALUES("4351", "6", "2014-11-01 06:00:05", "66.249.79.84", "1244");
INSERT INTO `wp_gf_form_view` VALUES("4352", "1", "2014-11-01 06:12:56", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("4353", "6", "2014-11-01 07:00:03", "66.249.79.84", "1342");
INSERT INTO `wp_gf_form_view` VALUES("4354", "3", "2014-11-01 07:00:03", "66.249.79.84", "2748");
INSERT INTO `wp_gf_form_view` VALUES("4355", "3", "2014-11-01 08:00:00", "66.249.79.84", "2480");
INSERT INTO `wp_gf_form_view` VALUES("4356", "6", "2014-11-01 08:00:01", "66.249.79.92", "1204");
INSERT INTO `wp_gf_form_view` VALUES("4357", "6", "2014-11-01 09:00:02", "66.249.79.92", "1212");
INSERT INTO `wp_gf_form_view` VALUES("4358", "3", "2014-11-01 09:00:02", "66.249.79.92", "2488");
INSERT INTO `wp_gf_form_view` VALUES("4359", "6", "2014-11-01 10:00:01", "66.249.79.92", "1508");
INSERT INTO `wp_gf_form_view` VALUES("4360", "3", "2014-11-01 10:00:01", "66.249.79.92", "3079");
INSERT INTO `wp_gf_form_view` VALUES("4361", "6", "2014-11-01 11:00:00", "66.249.79.84", "1546");
INSERT INTO `wp_gf_form_view` VALUES("4362", "3", "2014-11-01 11:00:01", "66.249.79.84", "3144");
INSERT INTO `wp_gf_form_view` VALUES("4363", "1", "2014-11-01 11:59:10", "158.85.89.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("4364", "3", "2014-11-01 12:00:00", "158.85.94.4", "2719");
INSERT INTO `wp_gf_form_view` VALUES("4365", "6", "2014-11-01 12:00:01", "66.249.79.84", "1336");
INSERT INTO `wp_gf_form_view` VALUES("4366", "6", "2014-11-01 13:00:08", "66.249.79.76", "1476");
INSERT INTO `wp_gf_form_view` VALUES("4367", "3", "2014-11-01 13:00:08", "66.249.79.76", "3006");
INSERT INTO `wp_gf_form_view` VALUES("4368", "6", "2014-11-01 14:00:00", "66.249.79.84", "1523");
INSERT INTO `wp_gf_form_view` VALUES("4369", "3", "2014-11-01 14:00:00", "66.249.79.84", "3081");
INSERT INTO `wp_gf_form_view` VALUES("4370", "6", "2014-11-01 15:00:02", "66.249.79.76", "742");
INSERT INTO `wp_gf_form_view` VALUES("4371", "3", "2014-11-01 15:00:03", "66.249.79.76", "1504");
INSERT INTO `wp_gf_form_view` VALUES("4372", "6", "2014-11-01 16:01:30", "66.249.79.76", "231");
INSERT INTO `wp_gf_form_view` VALUES("4373", "3", "2014-11-01 16:01:30", "66.249.79.76", "483");
INSERT INTO `wp_gf_form_view` VALUES("4374", "1", "2014-11-01 16:23:08", "37.77.122.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("4375", "2", "2014-11-01 16:23:25", "37.77.122.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("4376", "6", "2014-11-01 17:00:01", "66.249.79.84", "1220");
INSERT INTO `wp_gf_form_view` VALUES("4377", "3", "2014-11-01 17:00:02", "66.249.79.84", "2488");
INSERT INTO `wp_gf_form_view` VALUES("4378", "6", "2014-11-01 18:00:02", "66.249.79.76", "1364");
INSERT INTO `wp_gf_form_view` VALUES("4379", "3", "2014-11-01 18:00:02", "66.249.79.76", "2787");
INSERT INTO `wp_gf_form_view` VALUES("4380", "3", "2014-11-01 19:00:00", "66.249.79.76", "2712");
INSERT INTO `wp_gf_form_view` VALUES("4381", "6", "2014-11-01 19:00:04", "66.249.79.84", "1326");
INSERT INTO `wp_gf_form_view` VALUES("4382", "6", "2014-11-01 20:00:00", "66.249.79.92", "1388");
INSERT INTO `wp_gf_form_view` VALUES("4383", "3", "2014-11-01 20:00:00", "66.249.79.92", "2821");
INSERT INTO `wp_gf_form_view` VALUES("4384", "3", "2014-11-01 21:00:00", "66.249.79.76", "2955");
INSERT INTO `wp_gf_form_view` VALUES("4385", "6", "2014-11-01 21:00:03", "66.249.79.76", "1450");
INSERT INTO `wp_gf_form_view` VALUES("4386", "6", "2014-11-01 22:00:00", "66.249.79.84", "1414");
INSERT INTO `wp_gf_form_view` VALUES("4387", "3", "2014-11-01 22:00:01", "66.249.79.84", "2870");
INSERT INTO `wp_gf_form_view` VALUES("4388", "6", "2014-11-01 23:00:25", "66.249.79.76", "682");
INSERT INTO `wp_gf_form_view` VALUES("4389", "3", "2014-11-01 23:00:25", "66.249.79.76", "1391");
INSERT INTO `wp_gf_form_view` VALUES("4390", "6", "2014-11-02 00:04:32", "66.249.79.92", "74");
INSERT INTO `wp_gf_form_view` VALUES("4391", "3", "2014-11-02 00:04:32", "66.249.79.92", "160");
INSERT INTO `wp_gf_form_view` VALUES("4392", "6", "2014-11-02 01:00:00", "158.85.89.7", "96");
INSERT INTO `wp_gf_form_view` VALUES("4393", "3", "2014-11-02 01:00:00", "158.85.89.7", "197");
INSERT INTO `wp_gf_form_view` VALUES("4394", "1", "2014-11-02 01:01:42", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("4395", "6", "2014-11-02 02:00:23", "66.249.79.84", "86");
INSERT INTO `wp_gf_form_view` VALUES("4396", "3", "2014-11-02 02:00:23", "66.249.79.84", "184");
INSERT INTO `wp_gf_form_view` VALUES("4397", "3", "2014-11-02 03:00:06", "66.249.79.92", "178");
INSERT INTO `wp_gf_form_view` VALUES("4398", "6", "2014-11-02 03:00:06", "66.249.79.92", "86");
INSERT INTO `wp_gf_form_view` VALUES("4399", "3", "2014-11-02 04:00:04", "91.200.12.8", "86");
INSERT INTO `wp_gf_form_view` VALUES("4400", "6", "2014-11-02 04:00:04", "91.200.12.8", "38");
INSERT INTO `wp_gf_form_view` VALUES("4401", "6", "2014-11-02 05:04:09", "66.249.79.84", "48");
INSERT INTO `wp_gf_form_view` VALUES("4402", "3", "2014-11-02 05:04:09", "66.249.79.84", "106");
INSERT INTO `wp_gf_form_view` VALUES("4403", "1", "2014-11-02 05:26:31", "171.213.23.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("4404", "3", "2014-11-02 06:05:51", "104.194.28.146", "46");
INSERT INTO `wp_gf_form_view` VALUES("4405", "6", "2014-11-02 06:05:52", "104.194.28.146", "20");
INSERT INTO `wp_gf_form_view` VALUES("4406", "6", "2014-11-02 07:14:16", "157.55.39.185", "24");
INSERT INTO `wp_gf_form_view` VALUES("4407", "3", "2014-11-02 07:14:16", "157.55.39.185", "52");
INSERT INTO `wp_gf_form_view` VALUES("4408", "3", "2014-11-02 08:07:21", "157.55.39.34", "138");
INSERT INTO `wp_gf_form_view` VALUES("4409", "6", "2014-11-02 08:07:22", "157.55.39.34", "62");
INSERT INTO `wp_gf_form_view` VALUES("4410", "3", "2014-11-02 09:00:00", "157.55.39.185", "116");
INSERT INTO `wp_gf_form_view` VALUES("4411", "6", "2014-11-02 09:00:01", "157.55.39.185", "56");
INSERT INTO `wp_gf_form_view` VALUES("4412", "1", "2014-11-02 09:06:01", "54.68.30.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("4413", "6", "2014-11-02 10:01:19", "157.55.39.194", "1196");
INSERT INTO `wp_gf_form_view` VALUES("4414", "3", "2014-11-02 10:01:19", "157.55.39.194", "2424");
INSERT INTO `wp_gf_form_view` VALUES("4415", "6", "2014-11-02 11:00:00", "66.249.79.84", "1618");
INSERT INTO `wp_gf_form_view` VALUES("4416", "3", "2014-11-02 11:00:00", "66.249.79.84", "3278");
INSERT INTO `wp_gf_form_view` VALUES("4417", "6", "2014-11-02 12:00:00", "66.249.79.76", "1890");
INSERT INTO `wp_gf_form_view` VALUES("4418", "3", "2014-11-02 12:00:01", "66.249.79.76", "3884");
INSERT INTO `wp_gf_form_view` VALUES("4419", "6", "2014-11-02 13:00:01", "66.249.79.84", "1840");
INSERT INTO `wp_gf_form_view` VALUES("4420", "3", "2014-11-02 13:00:01", "66.249.79.84", "3717");
INSERT INTO `wp_gf_form_view` VALUES("4421", "3", "2014-11-02 14:00:00", "66.249.79.76", "3873");
INSERT INTO `wp_gf_form_view` VALUES("4422", "6", "2014-11-02 14:00:01", "66.249.79.76", "1906");
INSERT INTO `wp_gf_form_view` VALUES("4423", "1", "2014-11-02 14:50:53", "171.213.23.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("4424", "6", "2014-11-02 15:00:01", "66.249.79.76", "1774");
INSERT INTO `wp_gf_form_view` VALUES("4425", "3", "2014-11-02 15:00:01", "66.249.79.76", "3588");
INSERT INTO `wp_gf_form_view` VALUES("4426", "6", "2014-11-02 16:00:00", "66.249.79.76", "2022");
INSERT INTO `wp_gf_form_view` VALUES("4427", "3", "2014-11-02 16:00:00", "66.249.79.76", "4140");
INSERT INTO `wp_gf_form_view` VALUES("4428", "1", "2014-11-02 16:42:37", "24.68.153.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("4429", "6", "2014-11-02 17:00:01", "66.249.79.92", "1722");
INSERT INTO `wp_gf_form_view` VALUES("4430", "3", "2014-11-02 17:00:01", "66.249.79.92", "3504");
INSERT INTO `wp_gf_form_view` VALUES("4431", "6", "2014-11-02 18:00:32", "66.249.79.84", "602");
INSERT INTO `wp_gf_form_view` VALUES("4432", "3", "2014-11-02 18:00:33", "66.249.79.84", "1214");
INSERT INTO `wp_gf_form_view` VALUES("4433", "6", "2014-11-02 19:00:01", "66.249.79.84", "1400");
INSERT INTO `wp_gf_form_view` VALUES("4434", "3", "2014-11-02 19:00:01", "66.249.79.84", "2824");
INSERT INTO `wp_gf_form_view` VALUES("4435", "6", "2014-11-02 20:00:02", "66.249.79.76", "1560");
INSERT INTO `wp_gf_form_view` VALUES("4436", "3", "2014-11-02 20:00:03", "66.249.79.76", "3214");
INSERT INTO `wp_gf_form_view` VALUES("4437", "6", "2014-11-02 21:00:00", "66.249.79.84", "1612");
INSERT INTO `wp_gf_form_view` VALUES("4438", "3", "2014-11-02 21:00:00", "66.249.79.84", "3270");
INSERT INTO `wp_gf_form_view` VALUES("4439", "6", "2014-11-02 22:00:02", "66.249.79.92", "1558");
INSERT INTO `wp_gf_form_view` VALUES("4440", "3", "2014-11-02 22:00:03", "66.249.79.92", "3188");
INSERT INTO `wp_gf_form_view` VALUES("4441", "1", "2014-11-02 22:43:52", "216.13.187.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("4442", "6", "2014-11-02 23:00:00", "66.249.79.76", "1584");
INSERT INTO `wp_gf_form_view` VALUES("4443", "3", "2014-11-02 23:00:00", "66.249.79.76", "3202");
INSERT INTO `wp_gf_form_view` VALUES("4444", "1", "2014-11-02 23:21:41", "198.199.66.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("4445", "2", "2014-11-02 23:21:41", "198.199.66.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("4446", "6", "2014-11-03 00:00:00", "66.249.79.76", "1536");
INSERT INTO `wp_gf_form_view` VALUES("4447", "3", "2014-11-03 00:00:00", "66.249.79.76", "3102");
INSERT INTO `wp_gf_form_view` VALUES("4448", "3", "2014-11-03 01:00:00", "66.249.79.76", "3145");
INSERT INTO `wp_gf_form_view` VALUES("4449", "6", "2014-11-03 01:00:03", "66.249.79.76", "1556");
INSERT INTO `wp_gf_form_view` VALUES("4450", "3", "2014-11-03 02:00:00", "66.249.79.84", "3168");
INSERT INTO `wp_gf_form_view` VALUES("4451", "6", "2014-11-03 02:00:03", "66.249.79.76", "1556");
INSERT INTO `wp_gf_form_view` VALUES("4452", "6", "2014-11-03 03:00:01", "66.249.79.84", "678");
INSERT INTO `wp_gf_form_view` VALUES("4453", "3", "2014-11-03 03:00:02", "66.249.79.84", "1378");
INSERT INTO `wp_gf_form_view` VALUES("4454", "1", "2014-11-03 03:28:41", "202.46.61.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("4455", "6", "2014-11-03 04:01:20", "66.249.79.84", "780");
INSERT INTO `wp_gf_form_view` VALUES("4456", "3", "2014-11-03 04:01:20", "66.249.79.84", "1576");
INSERT INTO `wp_gf_form_view` VALUES("4457", "6", "2014-11-03 05:00:04", "66.249.79.84", "1287");
INSERT INTO `wp_gf_form_view` VALUES("4458", "3", "2014-11-03 05:00:04", "66.249.79.84", "2651");
INSERT INTO `wp_gf_form_view` VALUES("4459", "1", "2014-11-03 05:59:13", "5.39.19.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("4460", "6", "2014-11-03 06:00:04", "66.249.79.76", "1396");
INSERT INTO `wp_gf_form_view` VALUES("4461", "3", "2014-11-03 06:00:05", "66.249.79.76", "2832");
INSERT INTO `wp_gf_form_view` VALUES("4462", "6", "2014-11-03 07:00:02", "66.249.79.76", "1316");
INSERT INTO `wp_gf_form_view` VALUES("4463", "3", "2014-11-03 07:00:02", "66.249.79.76", "2682");
INSERT INTO `wp_gf_form_view` VALUES("4464", "6", "2014-11-03 08:00:00", "66.249.79.76", "1368");
INSERT INTO `wp_gf_form_view` VALUES("4465", "3", "2014-11-03 08:00:00", "66.249.79.76", "2779");
INSERT INTO `wp_gf_form_view` VALUES("4466", "6", "2014-11-03 09:00:09", "66.249.79.92", "1340");
INSERT INTO `wp_gf_form_view` VALUES("4467", "3", "2014-11-03 09:00:10", "66.249.79.92", "2729");
INSERT INTO `wp_gf_form_view` VALUES("4468", "6", "2014-11-03 10:00:06", "66.249.79.92", "1330");
INSERT INTO `wp_gf_form_view` VALUES("4469", "3", "2014-11-03 10:00:07", "66.249.79.92", "2694");
INSERT INTO `wp_gf_form_view` VALUES("4470", "6", "2014-11-03 11:00:03", "66.249.79.92", "1344");
INSERT INTO `wp_gf_form_view` VALUES("4471", "3", "2014-11-03 11:00:04", "66.249.79.92", "2740");
INSERT INTO `wp_gf_form_view` VALUES("4472", "6", "2014-11-03 12:00:00", "66.249.79.84", "1334");
INSERT INTO `wp_gf_form_view` VALUES("4473", "3", "2014-11-03 12:00:01", "66.249.79.84", "2704");
INSERT INTO `wp_gf_form_view` VALUES("4474", "6", "2014-11-03 13:00:03", "66.249.79.92", "1292");
INSERT INTO `wp_gf_form_view` VALUES("4475", "3", "2014-11-03 13:00:03", "66.249.79.92", "2618");
INSERT INTO `wp_gf_form_view` VALUES("4476", "1", "2014-11-03 13:11:20", "60.148.123.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("4477", "3", "2014-11-03 14:00:00", "66.249.79.92", "1722");
INSERT INTO `wp_gf_form_view` VALUES("4478", "6", "2014-11-03 14:00:05", "66.249.79.84", "848");
INSERT INTO `wp_gf_form_view` VALUES("4479", "6", "2014-11-03 15:00:38", "66.249.79.84", "86");
INSERT INTO `wp_gf_form_view` VALUES("4480", "3", "2014-11-03 15:00:39", "66.249.79.84", "182");
INSERT INTO `wp_gf_form_view` VALUES("4481", "6", "2014-11-03 16:00:07", "109.241.118.159", "1050");
INSERT INTO `wp_gf_form_view` VALUES("4482", "3", "2014-11-03 16:00:07", "109.241.118.159", "2136");
INSERT INTO `wp_gf_form_view` VALUES("4483", "6", "2014-11-03 17:00:02", "66.249.79.92", "1014");
INSERT INTO `wp_gf_form_view` VALUES("4484", "3", "2014-11-03 17:00:02", "66.249.79.92", "2062");
INSERT INTO `wp_gf_form_view` VALUES("4485", "6", "2014-11-03 18:00:04", "66.249.79.76", "1368");
INSERT INTO `wp_gf_form_view` VALUES("4486", "3", "2014-11-03 18:00:04", "66.249.79.76", "2778");
INSERT INTO `wp_gf_form_view` VALUES("4487", "6", "2014-11-03 19:00:01", "66.249.79.84", "1334");
INSERT INTO `wp_gf_form_view` VALUES("4488", "3", "2014-11-03 19:00:02", "66.249.79.84", "2701");
INSERT INTO `wp_gf_form_view` VALUES("4489", "2", "2014-11-03 19:02:37", "66.232.113.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("4490", "1", "2014-11-03 19:02:40", "66.232.113.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("4491", "3", "2014-11-03 20:00:00", "66.249.79.76", "1615");
INSERT INTO `wp_gf_form_view` VALUES("4492", "6", "2014-11-03 20:00:03", "66.249.79.92", "794");
INSERT INTO `wp_gf_form_view` VALUES("4493", "2", "2014-11-03 20:05:38", "62.210.91.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("4494", "1", "2014-11-03 20:05:39", "62.210.91.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("4495", "6", "2014-11-03 21:00:03", "66.249.79.84", "1426");
INSERT INTO `wp_gf_form_view` VALUES("4496", "3", "2014-11-03 21:00:03", "66.249.79.84", "2877");
INSERT INTO `wp_gf_form_view` VALUES("4497", "3", "2014-11-03 22:00:00", "66.249.79.76", "2935");
INSERT INTO `wp_gf_form_view` VALUES("4498", "6", "2014-11-03 22:00:04", "66.249.79.76", "1444");
INSERT INTO `wp_gf_form_view` VALUES("4499", "3", "2014-11-03 23:00:00", "66.249.79.92", "2930");
INSERT INTO `wp_gf_form_view` VALUES("4500", "6", "2014-11-03 23:00:04", "66.249.79.76", "1444");
INSERT INTO `wp_gf_form_view` VALUES("4501", "6", "2014-11-04 00:00:02", "66.249.79.84", "1436");
INSERT INTO `wp_gf_form_view` VALUES("4502", "3", "2014-11-04 00:00:03", "66.249.79.84", "2920");
INSERT INTO `wp_gf_form_view` VALUES("4503", "6", "2014-11-04 01:00:18", "66.249.79.92", "1404");
INSERT INTO `wp_gf_form_view` VALUES("4504", "3", "2014-11-04 01:00:18", "66.249.79.92", "2842");
INSERT INTO `wp_gf_form_view` VALUES("4505", "6", "2014-11-04 02:00:04", "66.249.79.84", "1258");
INSERT INTO `wp_gf_form_view` VALUES("4506", "3", "2014-11-04 02:00:04", "66.249.79.84", "2551");
INSERT INTO `wp_gf_form_view` VALUES("4507", "6", "2014-11-04 03:01:08", "66.249.79.76", "84");
INSERT INTO `wp_gf_form_view` VALUES("4508", "3", "2014-11-04 03:01:08", "66.249.79.76", "170");
INSERT INTO `wp_gf_form_view` VALUES("4509", "6", "2014-11-04 04:00:31", "66.249.79.84", "1260");
INSERT INTO `wp_gf_form_view` VALUES("4510", "3", "2014-11-04 04:00:31", "66.249.79.84", "2542");
INSERT INTO `wp_gf_form_view` VALUES("4511", "6", "2014-11-04 05:00:00", "66.249.79.76", "1510");
INSERT INTO `wp_gf_form_view` VALUES("4512", "3", "2014-11-04 05:00:00", "66.249.79.76", "3051");
INSERT INTO `wp_gf_form_view` VALUES("4513", "6", "2014-11-04 06:00:02", "66.249.79.92", "1542");
INSERT INTO `wp_gf_form_view` VALUES("4514", "3", "2014-11-04 06:00:03", "66.249.79.92", "3150");
INSERT INTO `wp_gf_form_view` VALUES("4515", "6", "2014-11-04 07:00:00", "66.249.79.92", "1516");
INSERT INTO `wp_gf_form_view` VALUES("4516", "3", "2014-11-04 07:00:00", "66.249.79.92", "3080");
INSERT INTO `wp_gf_form_view` VALUES("4517", "6", "2014-11-04 08:00:00", "66.249.79.92", "1443");
INSERT INTO `wp_gf_form_view` VALUES("4518", "3", "2014-11-04 08:00:01", "66.249.79.92", "2949");
INSERT INTO `wp_gf_form_view` VALUES("4519", "3", "2014-11-04 09:00:00", "66.249.79.76", "2889");
INSERT INTO `wp_gf_form_view` VALUES("4520", "6", "2014-11-04 09:00:04", "66.249.79.84", "1424");
INSERT INTO `wp_gf_form_view` VALUES("4521", "2", "2014-11-04 09:32:55", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("4522", "6", "2014-11-04 10:00:18", "66.249.79.92", "1454");
INSERT INTO `wp_gf_form_view` VALUES("4523", "3", "2014-11-04 10:00:18", "66.249.79.92", "2958");
INSERT INTO `wp_gf_form_view` VALUES("4524", "6", "2014-11-04 11:00:48", "66.249.79.92", "1308");
INSERT INTO `wp_gf_form_view` VALUES("4525", "3", "2014-11-04 11:00:48", "66.249.79.92", "2661");
INSERT INTO `wp_gf_form_view` VALUES("4526", "6", "2014-11-04 12:00:03", "66.249.79.76", "1192");
INSERT INTO `wp_gf_form_view` VALUES("4527", "3", "2014-11-04 12:00:04", "66.249.79.76", "2432");
INSERT INTO `wp_gf_form_view` VALUES("4528", "6", "2014-11-04 13:00:02", "66.249.79.76", "952");
INSERT INTO `wp_gf_form_view` VALUES("4529", "3", "2014-11-04 13:00:02", "66.249.79.76", "1966");
INSERT INTO `wp_gf_form_view` VALUES("4530", "3", "2014-11-04 14:00:04", "66.249.79.76", "1266");
INSERT INTO `wp_gf_form_view` VALUES("4531", "6", "2014-11-04 14:00:05", "66.249.79.76", "620");
INSERT INTO `wp_gf_form_view` VALUES("4532", "6", "2014-11-04 15:01:52", "66.249.79.76", "112");
INSERT INTO `wp_gf_form_view` VALUES("4533", "3", "2014-11-04 15:01:52", "66.249.79.76", "240");
INSERT INTO `wp_gf_form_view` VALUES("4534", "1", "2014-11-04 15:57:40", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("4535", "6", "2014-11-04 16:00:08", "66.249.79.76", "1134");
INSERT INTO `wp_gf_form_view` VALUES("4536", "3", "2014-11-04 16:00:08", "66.249.79.76", "2330");
INSERT INTO `wp_gf_form_view` VALUES("4537", "6", "2014-11-04 17:00:08", "66.249.79.76", "1190");
INSERT INTO `wp_gf_form_view` VALUES("4538", "3", "2014-11-04 17:00:08", "66.249.79.76", "2450");
INSERT INTO `wp_gf_form_view` VALUES("4539", "6", "2014-11-04 18:00:02", "66.249.79.84", "1490");
INSERT INTO `wp_gf_form_view` VALUES("4540", "3", "2014-11-04 18:00:02", "66.249.79.84", "3015");
INSERT INTO `wp_gf_form_view` VALUES("4541", "6", "2014-11-04 19:00:00", "66.249.79.76", "1590");
INSERT INTO `wp_gf_form_view` VALUES("4542", "3", "2014-11-04 19:00:00", "66.249.79.76", "3249");
INSERT INTO `wp_gf_form_view` VALUES("4543", "1", "2014-11-04 19:13:03", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("4544", "6", "2014-11-04 20:00:01", "66.249.79.76", "1390");
INSERT INTO `wp_gf_form_view` VALUES("4545", "3", "2014-11-04 20:00:02", "66.249.79.76", "2891");
INSERT INTO `wp_gf_form_view` VALUES("4546", "6", "2014-11-04 21:03:32", "157.55.39.125", "1409");
INSERT INTO `wp_gf_form_view` VALUES("4547", "3", "2014-11-04 21:03:32", "157.55.39.125", "2911");
INSERT INTO `wp_gf_form_view` VALUES("4548", "1", "2014-11-04 21:08:18", "79.116.31.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("4549", "2", "2014-11-04 21:08:27", "79.116.31.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("4550", "6", "2014-11-04 22:00:02", "66.249.79.76", "1564");
INSERT INTO `wp_gf_form_view` VALUES("4551", "3", "2014-11-04 22:00:03", "66.249.79.76", "3230");
INSERT INTO `wp_gf_form_view` VALUES("4552", "1", "2014-11-04 22:06:29", "184.66.16.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("4553", "6", "2014-11-04 23:00:24", "66.249.79.76", "1565");
INSERT INTO `wp_gf_form_view` VALUES("4554", "3", "2014-11-04 23:00:24", "66.249.79.76", "3204");
INSERT INTO `wp_gf_form_view` VALUES("4555", "1", "2014-11-04 23:22:27", "184.66.16.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("4556", "6", "2014-11-05 00:00:03", "66.249.79.84", "1448");
INSERT INTO `wp_gf_form_view` VALUES("4557", "3", "2014-11-05 00:00:04", "66.249.79.84", "2987");
INSERT INTO `wp_gf_form_view` VALUES("4558", "1", "2014-11-05 00:43:38", "36.248.167.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("4559", "6", "2014-11-05 01:00:00", "66.249.79.76", "1312");
INSERT INTO `wp_gf_form_view` VALUES("4560", "3", "2014-11-05 01:00:00", "66.249.79.76", "2669");
INSERT INTO `wp_gf_form_view` VALUES("4561", "3", "2014-11-05 02:00:00", "66.249.79.84", "2230");
INSERT INTO `wp_gf_form_view` VALUES("4562", "6", "2014-11-05 02:00:04", "66.249.79.84", "1086");
INSERT INTO `wp_gf_form_view` VALUES("4563", "2", "2014-11-05 02:24:34", "80.79.126.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("4564", "1", "2014-11-05 02:25:06", "91.223.159.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("4565", "6", "2014-11-05 03:00:42", "217.69.133.230", "250");
INSERT INTO `wp_gf_form_view` VALUES("4566", "3", "2014-11-05 03:00:43", "217.69.133.230", "536");
INSERT INTO `wp_gf_form_view` VALUES("4567", "3", "2014-11-05 04:00:00", "66.249.79.76", "2818");
INSERT INTO `wp_gf_form_view` VALUES("4568", "6", "2014-11-05 04:00:02", "66.249.79.84", "1358");
INSERT INTO `wp_gf_form_view` VALUES("4569", "6", "2014-11-05 05:00:03", "66.249.79.76", "1421");
INSERT INTO `wp_gf_form_view` VALUES("4570", "3", "2014-11-05 05:00:03", "66.249.79.76", "2957");
INSERT INTO `wp_gf_form_view` VALUES("4571", "6", "2014-11-05 06:00:02", "66.249.79.76", "1541");
INSERT INTO `wp_gf_form_view` VALUES("4572", "3", "2014-11-05 06:00:03", "66.249.79.76", "3158");
INSERT INTO `wp_gf_form_view` VALUES("4573", "6", "2014-11-05 07:00:02", "66.249.79.92", "1326");
INSERT INTO `wp_gf_form_view` VALUES("4574", "3", "2014-11-05 07:00:03", "66.249.79.92", "2730");
INSERT INTO `wp_gf_form_view` VALUES("4575", "6", "2014-11-05 08:00:04", "66.249.79.84", "1422");
INSERT INTO `wp_gf_form_view` VALUES("4576", "3", "2014-11-05 08:00:04", "66.249.79.84", "2928");
INSERT INTO `wp_gf_form_view` VALUES("4577", "6", "2014-11-05 09:00:01", "66.249.79.92", "1541");
INSERT INTO `wp_gf_form_view` VALUES("4578", "3", "2014-11-05 09:00:02", "66.249.79.92", "3149");
INSERT INTO `wp_gf_form_view` VALUES("4579", "1", "2014-11-05 09:15:29", "158.85.89.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("4580", "6", "2014-11-05 10:00:00", "66.249.79.76", "1323");
INSERT INTO `wp_gf_form_view` VALUES("4581", "3", "2014-11-05 10:00:00", "66.249.79.76", "2719");
INSERT INTO `wp_gf_form_view` VALUES("4582", "6", "2014-11-05 11:00:02", "66.249.79.76", "1448");
INSERT INTO `wp_gf_form_view` VALUES("4583", "3", "2014-11-05 11:00:03", "66.249.79.76", "2946");
INSERT INTO `wp_gf_form_view` VALUES("4584", "3", "2014-11-05 12:00:00", "66.249.79.84", "2923");
INSERT INTO `wp_gf_form_view` VALUES("4585", "6", "2014-11-05 12:00:05", "66.249.79.92", "1420");
INSERT INTO `wp_gf_form_view` VALUES("4586", "6", "2014-11-05 13:00:01", "66.249.79.76", "1370");
INSERT INTO `wp_gf_form_view` VALUES("4587", "3", "2014-11-05 13:00:02", "66.249.79.76", "2815");
INSERT INTO `wp_gf_form_view` VALUES("4588", "6", "2014-11-05 14:00:02", "66.249.79.84", "944");
INSERT INTO `wp_gf_form_view` VALUES("4589", "3", "2014-11-05 14:00:02", "66.249.79.84", "1945");
INSERT INTO `wp_gf_form_view` VALUES("4590", "6", "2014-11-05 15:00:00", "158.85.89.4", "590");
INSERT INTO `wp_gf_form_view` VALUES("4591", "3", "2014-11-05 15:00:00", "158.85.89.4", "1222");
INSERT INTO `wp_gf_form_view` VALUES("4592", "1", "2014-11-05 15:01:17", "158.85.89.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("4593", "6", "2014-11-05 16:00:03", "66.249.79.84", "1351");
INSERT INTO `wp_gf_form_view` VALUES("4594", "3", "2014-11-05 16:00:03", "66.249.79.84", "2785");
INSERT INTO `wp_gf_form_view` VALUES("4595", "1", "2014-11-05 16:03:31", "184.66.16.43", "4");
INSERT INTO `wp_gf_form_view` VALUES("4596", "2", "2014-11-05 16:33:30", "61.16.251.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("4597", "6", "2014-11-05 17:00:00", "66.249.79.84", "1410");
INSERT INTO `wp_gf_form_view` VALUES("4598", "3", "2014-11-05 17:00:02", "66.249.79.84", "2879");
INSERT INTO `wp_gf_form_view` VALUES("4599", "1", "2014-11-05 17:27:03", "158.85.89.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("4600", "6", "2014-11-05 18:00:03", "66.249.79.76", "1342");
INSERT INTO `wp_gf_form_view` VALUES("4601", "3", "2014-11-05 18:00:03", "66.249.79.76", "2798");
INSERT INTO `wp_gf_form_view` VALUES("4602", "6", "2014-11-05 19:00:03", "66.249.79.84", "1274");
INSERT INTO `wp_gf_form_view` VALUES("4603", "3", "2014-11-05 19:00:04", "66.249.79.84", "2606");
INSERT INTO `wp_gf_form_view` VALUES("4604", "1", "2014-11-05 19:04:34", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("4605", "6", "2014-11-05 20:00:03", "66.249.79.84", "1352");
INSERT INTO `wp_gf_form_view` VALUES("4606", "3", "2014-11-05 20:00:03", "66.249.79.84", "2758");
INSERT INTO `wp_gf_form_view` VALUES("4607", "6", "2014-11-05 21:00:03", "66.249.79.76", "1393");
INSERT INTO `wp_gf_form_view` VALUES("4608", "3", "2014-11-05 21:00:03", "66.249.79.76", "2845");
INSERT INTO `wp_gf_form_view` VALUES("4609", "1", "2014-11-05 21:24:24", "77.231.29.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("4610", "2", "2014-11-05 21:24:58", "77.231.29.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("4611", "6", "2014-11-05 22:00:02", "66.249.79.76", "1240");
INSERT INTO `wp_gf_form_view` VALUES("4612", "3", "2014-11-05 22:00:03", "66.249.79.76", "2515");
INSERT INTO `wp_gf_form_view` VALUES("4613", "6", "2014-11-05 23:00:00", "66.249.79.84", "1410");
INSERT INTO `wp_gf_form_view` VALUES("4614", "3", "2014-11-05 23:00:00", "66.249.79.84", "2861");
INSERT INTO `wp_gf_form_view` VALUES("4615", "6", "2014-11-06 00:00:03", "66.249.79.92", "1374");
INSERT INTO `wp_gf_form_view` VALUES("4616", "3", "2014-11-06 00:00:03", "66.249.79.92", "2811");
INSERT INTO `wp_gf_form_view` VALUES("4617", "1", "2014-11-06 00:35:58", "121.227.119.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("4618", "6", "2014-11-06 01:00:02", "66.249.79.92", "1514");
INSERT INTO `wp_gf_form_view` VALUES("4619", "3", "2014-11-06 01:00:03", "66.249.79.92", "3075");
INSERT INTO `wp_gf_form_view` VALUES("4620", "1", "2014-11-06 01:10:37", "96.50.22.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("4621", "6", "2014-11-06 02:00:02", "66.249.79.76", "830");
INSERT INTO `wp_gf_form_view` VALUES("4622", "3", "2014-11-06 02:00:02", "66.249.79.76", "1684");
INSERT INTO `wp_gf_form_view` VALUES("4623", "2", "2014-11-06 02:05:02", "209.190.29.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("4624", "1", "2014-11-06 02:05:08", "209.190.29.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("4625", "6", "2014-11-06 03:01:14", "66.249.79.84", "932");
INSERT INTO `wp_gf_form_view` VALUES("4626", "3", "2014-11-06 03:01:14", "66.249.79.84", "1906");
INSERT INTO `wp_gf_form_view` VALUES("4627", "6", "2014-11-06 04:00:02", "66.249.79.76", "1630");
INSERT INTO `wp_gf_form_view` VALUES("4628", "3", "2014-11-06 04:00:03", "66.249.79.76", "3328");
INSERT INTO `wp_gf_form_view` VALUES("4629", "1", "2014-11-06 04:19:11", "158.85.89.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("4630", "6", "2014-11-06 05:00:01", "66.249.79.92", "1538");
INSERT INTO `wp_gf_form_view` VALUES("4631", "3", "2014-11-06 05:00:02", "157.55.39.67", "3146");
INSERT INTO `wp_gf_form_view` VALUES("4632", "6", "2014-11-06 06:00:04", "66.249.79.84", "1520");
INSERT INTO `wp_gf_form_view` VALUES("4633", "3", "2014-11-06 06:00:04", "66.249.79.84", "3108");
INSERT INTO `wp_gf_form_view` VALUES("4634", "6", "2014-11-06 07:00:00", "66.249.79.84", "1508");
INSERT INTO `wp_gf_form_view` VALUES("4635", "3", "2014-11-06 07:00:00", "66.249.79.84", "3083");
INSERT INTO `wp_gf_form_view` VALUES("4636", "6", "2014-11-06 08:00:04", "66.249.79.76", "1492");
INSERT INTO `wp_gf_form_view` VALUES("4637", "3", "2014-11-06 08:00:04", "66.249.79.76", "3048");
INSERT INTO `wp_gf_form_view` VALUES("4638", "3", "2014-11-06 09:00:00", "66.249.79.76", "3083");
INSERT INTO `wp_gf_form_view` VALUES("4639", "6", "2014-11-06 09:00:04", "66.249.79.84", "1466");
INSERT INTO `wp_gf_form_view` VALUES("4640", "6", "2014-11-06 10:00:01", "66.249.79.76", "1433");
INSERT INTO `wp_gf_form_view` VALUES("4641", "3", "2014-11-06 10:00:02", "66.249.79.76", "2913");
INSERT INTO `wp_gf_form_view` VALUES("4642", "1", "2014-11-06 10:08:39", "31.151.106.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("4643", "2", "2014-11-06 10:08:51", "31.151.106.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("4644", "6", "2014-11-06 11:00:06", "66.249.79.76", "1008");
INSERT INTO `wp_gf_form_view` VALUES("4645", "3", "2014-11-06 11:00:06", "66.249.79.76", "2064");
INSERT INTO `wp_gf_form_view` VALUES("4646", "6", "2014-11-06 12:01:28", "207.46.13.125", "822");
INSERT INTO `wp_gf_form_view` VALUES("4647", "3", "2014-11-06 12:01:28", "207.46.13.125", "1651");
INSERT INTO `wp_gf_form_view` VALUES("4648", "3", "2014-11-06 13:00:00", "157.55.39.47", "1855");
INSERT INTO `wp_gf_form_view` VALUES("4649", "6", "2014-11-06 13:03:12", "66.249.79.92", "912");
INSERT INTO `wp_gf_form_view` VALUES("4650", "6", "2014-11-06 14:01:40", "207.46.13.125", "1648");
INSERT INTO `wp_gf_form_view` VALUES("4651", "3", "2014-11-06 14:01:40", "207.46.13.125", "3367");
INSERT INTO `wp_gf_form_view` VALUES("4652", "3", "2014-11-06 15:00:00", "66.249.79.84", "1023");
INSERT INTO `wp_gf_form_view` VALUES("4653", "6", "2014-11-06 15:00:03", "157.55.39.47", "506");
INSERT INTO `wp_gf_form_view` VALUES("4654", "3", "2014-11-06 16:00:00", "66.249.79.84", "2270");
INSERT INTO `wp_gf_form_view` VALUES("4655", "6", "2014-11-06 16:00:05", "66.249.79.76", "1110");
INSERT INTO `wp_gf_form_view` VALUES("4656", "6", "2014-11-06 17:00:01", "66.249.79.84", "1544");
INSERT INTO `wp_gf_form_view` VALUES("4657", "3", "2014-11-06 17:00:02", "66.249.79.84", "3138");
INSERT INTO `wp_gf_form_view` VALUES("4658", "1", "2014-11-06 17:02:46", "54.202.77.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("4659", "2", "2014-11-06 17:03:21", "54.202.77.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("4660", "3", "2014-11-06 18:00:00", "66.249.79.84", "2892");
INSERT INTO `wp_gf_form_view` VALUES("4661", "6", "2014-11-06 18:00:10", "66.249.79.76", "1426");
INSERT INTO `wp_gf_form_view` VALUES("4662", "1", "2014-11-06 18:30:10", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("4663", "6", "2014-11-06 19:00:03", "66.249.79.84", "1354");
INSERT INTO `wp_gf_form_view` VALUES("4664", "3", "2014-11-06 19:00:04", "66.249.79.84", "2751");
INSERT INTO `wp_gf_form_view` VALUES("4665", "3", "2014-11-06 20:00:00", "157.55.39.47", "2885");
INSERT INTO `wp_gf_form_view` VALUES("4666", "6", "2014-11-06 20:00:03", "66.249.79.92", "1408");
INSERT INTO `wp_gf_form_view` VALUES("4667", "3", "2014-11-06 21:00:02", "66.249.79.76", "2516");
INSERT INTO `wp_gf_form_view` VALUES("4668", "6", "2014-11-06 21:00:02", "66.249.79.76", "1241");
INSERT INTO `wp_gf_form_view` VALUES("4669", "1", "2014-11-06 21:08:08", "54.171.71.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("4670", "2", "2014-11-06 21:08:32", "54.171.71.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("4671", "6", "2014-11-06 22:01:30", "66.249.79.92", "1224");
INSERT INTO `wp_gf_form_view` VALUES("4672", "3", "2014-11-06 22:01:31", "66.249.79.92", "2474");
INSERT INTO `wp_gf_form_view` VALUES("4673", "6", "2014-11-06 23:00:03", "66.249.67.84", "1414");
INSERT INTO `wp_gf_form_view` VALUES("4674", "3", "2014-11-06 23:00:03", "66.249.67.84", "2869");
INSERT INTO `wp_gf_form_view` VALUES("4675", "6", "2014-11-07 00:00:03", "158.85.89.6", "1378");
INSERT INTO `wp_gf_form_view` VALUES("4676", "3", "2014-11-07 00:00:03", "158.85.89.6", "2786");
INSERT INTO `wp_gf_form_view` VALUES("4677", "1", "2014-11-07 00:00:37", "158.85.89.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("4678", "6", "2014-11-07 01:00:02", "66.249.79.84", "1403");
INSERT INTO `wp_gf_form_view` VALUES("4679", "3", "2014-11-07 01:00:02", "66.249.79.84", "2900");
INSERT INTO `wp_gf_form_view` VALUES("4680", "1", "2014-11-07 01:25:47", "54.187.150.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("4681", "2", "2014-11-07 01:26:35", "54.187.150.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("4682", "6", "2014-11-07 02:00:00", "66.249.79.92", "640");
INSERT INTO `wp_gf_form_view` VALUES("4683", "3", "2014-11-07 02:00:01", "66.249.79.92", "1326");
INSERT INTO `wp_gf_form_view` VALUES("4684", "6", "2014-11-07 03:00:17", "157.55.39.67", "608");
INSERT INTO `wp_gf_form_view` VALUES("4685", "3", "2014-11-07 03:00:17", "157.55.39.67", "1269");
INSERT INTO `wp_gf_form_view` VALUES("4686", "6", "2014-11-07 04:00:46", "157.55.39.48", "1370");
INSERT INTO `wp_gf_form_view` VALUES("4687", "3", "2014-11-07 04:00:46", "157.55.39.48", "2805");
INSERT INTO `wp_gf_form_view` VALUES("4688", "1", "2014-11-07 04:18:10", "158.85.89.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("4689", "3", "2014-11-07 05:00:00", "66.249.79.84", "3080");
INSERT INTO `wp_gf_form_view` VALUES("4690", "6", "2014-11-07 05:00:06", "66.249.79.92", "1508");
INSERT INTO `wp_gf_form_view` VALUES("4691", "6", "2014-11-07 06:00:03", "66.249.79.84", "1466");
INSERT INTO `wp_gf_form_view` VALUES("4692", "3", "2014-11-07 06:00:04", "66.249.79.84", "2998");
INSERT INTO `wp_gf_form_view` VALUES("4693", "3", "2014-11-07 07:00:04", "207.46.13.125", "3048");
INSERT INTO `wp_gf_form_view` VALUES("4694", "6", "2014-11-07 07:00:05", "207.46.13.125", "1478");
INSERT INTO `wp_gf_form_view` VALUES("4695", "6", "2014-11-07 08:00:02", "66.249.79.76", "1438");
INSERT INTO `wp_gf_form_view` VALUES("4696", "3", "2014-11-07 08:00:03", "66.249.79.76", "2938");
INSERT INTO `wp_gf_form_view` VALUES("4697", "3", "2014-11-07 09:00:00", "66.249.79.76", "3002");
INSERT INTO `wp_gf_form_view` VALUES("4698", "6", "2014-11-07 09:00:02", "66.249.79.92", "1464");
INSERT INTO `wp_gf_form_view` VALUES("4699", "6", "2014-11-07 10:00:02", "66.249.79.92", "1359");
INSERT INTO `wp_gf_form_view` VALUES("4700", "3", "2014-11-07 10:00:02", "66.249.79.92", "2792");
INSERT INTO `wp_gf_form_view` VALUES("4701", "3", "2014-11-07 11:02:17", "207.46.13.102", "962");
INSERT INTO `wp_gf_form_view` VALUES("4702", "6", "2014-11-07 11:02:17", "207.46.13.102", "460");
INSERT INTO `wp_gf_form_view` VALUES("4703", "6", "2014-11-07 12:00:24", "66.249.79.84", "2038");
INSERT INTO `wp_gf_form_view` VALUES("4704", "3", "2014-11-07 12:00:24", "66.249.79.84", "4145");
INSERT INTO `wp_gf_form_view` VALUES("4705", "3", "2014-11-07 13:00:00", "66.249.79.76", "4161");
INSERT INTO `wp_gf_form_view` VALUES("4706", "6", "2014-11-07 13:00:02", "66.249.79.84", "2039");
INSERT INTO `wp_gf_form_view` VALUES("4707", "6", "2014-11-07 14:00:00", "66.249.79.92", "583");
INSERT INTO `wp_gf_form_view` VALUES("4708", "3", "2014-11-07 14:00:00", "66.249.79.92", "1200");
INSERT INTO `wp_gf_form_view` VALUES("4709", "6", "2014-11-07 15:00:00", "66.249.79.92", "1040");
INSERT INTO `wp_gf_form_view` VALUES("4710", "3", "2014-11-07 15:00:00", "66.249.79.92", "2163");
INSERT INTO `wp_gf_form_view` VALUES("4711", "3", "2014-11-07 16:00:00", "66.249.79.92", "2585");
INSERT INTO `wp_gf_form_view` VALUES("4712", "6", "2014-11-07 16:00:03", "66.249.79.76", "1256");
INSERT INTO `wp_gf_form_view` VALUES("4713", "6", "2014-11-07 17:00:01", "66.249.79.76", "1522");
INSERT INTO `wp_gf_form_view` VALUES("4714", "3", "2014-11-07 17:00:02", "66.249.79.76", "3109");
INSERT INTO `wp_gf_form_view` VALUES("4715", "1", "2014-11-07 17:35:39", "158.85.89.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("4716", "3", "2014-11-07 18:00:00", "66.249.79.76", "2924");
INSERT INTO `wp_gf_form_view` VALUES("4717", "6", "2014-11-07 18:00:02", "66.249.79.92", "1432");
INSERT INTO `wp_gf_form_view` VALUES("4718", "6", "2014-11-07 19:00:00", "66.249.79.92", "1426");
INSERT INTO `wp_gf_form_view` VALUES("4719", "3", "2014-11-07 19:00:00", "66.249.79.92", "2903");
INSERT INTO `wp_gf_form_view` VALUES("4720", "6", "2014-11-07 20:00:00", "66.249.79.76", "1362");
INSERT INTO `wp_gf_form_view` VALUES("4721", "3", "2014-11-07 20:00:01", "66.249.79.76", "2810");
INSERT INTO `wp_gf_form_view` VALUES("4722", "6", "2014-11-07 21:00:02", "66.249.79.84", "1412");
INSERT INTO `wp_gf_form_view` VALUES("4723", "3", "2014-11-07 21:00:02", "66.249.79.84", "2892");
INSERT INTO `wp_gf_form_view` VALUES("4724", "6", "2014-11-07 22:00:00", "66.249.79.92", "1436");
INSERT INTO `wp_gf_form_view` VALUES("4725", "3", "2014-11-07 22:00:01", "66.249.79.92", "2926");
INSERT INTO `wp_gf_form_view` VALUES("4726", "3", "2014-11-07 23:00:00", "66.249.79.76", "2860");
INSERT INTO `wp_gf_form_view` VALUES("4727", "6", "2014-11-07 23:00:09", "66.249.79.76", "1406");
INSERT INTO `wp_gf_form_view` VALUES("4728", "6", "2014-11-08 00:00:02", "66.249.79.84", "1408");
INSERT INTO `wp_gf_form_view` VALUES("4729", "3", "2014-11-08 00:00:03", "66.249.79.84", "2862");
INSERT INTO `wp_gf_form_view` VALUES("4730", "6", "2014-11-08 01:00:00", "66.249.79.76", "1326");
INSERT INTO `wp_gf_form_view` VALUES("4731", "3", "2014-11-08 01:00:00", "66.249.79.76", "2695");
INSERT INTO `wp_gf_form_view` VALUES("4732", "6", "2014-11-08 02:00:17", "157.55.39.35", "505");
INSERT INTO `wp_gf_form_view` VALUES("4733", "3", "2014-11-08 02:00:18", "157.55.39.35", "1051");
INSERT INTO `wp_gf_form_view` VALUES("4734", "1", "2014-11-08 02:22:56", "54.77.113.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("4735", "2", "2014-11-08 02:23:23", "54.77.113.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("4736", "6", "2014-11-08 03:00:03", "66.249.79.92", "1382");
INSERT INTO `wp_gf_form_view` VALUES("4737", "3", "2014-11-08 03:00:03", "66.249.79.92", "2817");
INSERT INTO `wp_gf_form_view` VALUES("4738", "1", "2014-11-08 03:13:48", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("4739", "6", "2014-11-08 04:00:02", "66.249.79.84", "1380");
INSERT INTO `wp_gf_form_view` VALUES("4740", "3", "2014-11-08 04:00:02", "66.249.79.84", "2797");
INSERT INTO `wp_gf_form_view` VALUES("4741", "2", "2014-11-08 04:34:44", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("4742", "6", "2014-11-08 05:00:00", "66.249.79.92", "1424");
INSERT INTO `wp_gf_form_view` VALUES("4743", "3", "2014-11-08 05:00:00", "66.249.79.92", "2898");
INSERT INTO `wp_gf_form_view` VALUES("4744", "6", "2014-11-08 06:00:01", "66.249.79.76", "1450");
INSERT INTO `wp_gf_form_view` VALUES("4745", "3", "2014-11-08 06:00:01", "66.249.79.76", "2936");
INSERT INTO `wp_gf_form_view` VALUES("4746", "6", "2014-11-08 07:00:03", "66.249.79.92", "1528");
INSERT INTO `wp_gf_form_view` VALUES("4747", "3", "2014-11-08 07:00:04", "66.249.79.92", "3109");
INSERT INTO `wp_gf_form_view` VALUES("4748", "1", "2014-11-08 07:07:17", "158.85.89.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("4749", "6", "2014-11-08 08:00:04", "66.249.79.84", "1408");
INSERT INTO `wp_gf_form_view` VALUES("4750", "3", "2014-11-08 08:00:04", "66.249.79.84", "2865");
INSERT INTO `wp_gf_form_view` VALUES("4751", "6", "2014-11-08 09:00:00", "66.249.79.84", "1352");
INSERT INTO `wp_gf_form_view` VALUES("4752", "3", "2014-11-08 09:00:01", "66.249.79.84", "2758");
INSERT INTO `wp_gf_form_view` VALUES("4753", "1", "2014-11-08 09:48:14", "202.46.49.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("4754", "6", "2014-11-08 10:00:05", "66.249.79.92", "1342");
INSERT INTO `wp_gf_form_view` VALUES("4755", "3", "2014-11-08 10:00:06", "66.249.79.92", "2770");
INSERT INTO `wp_gf_form_view` VALUES("4756", "6", "2014-11-08 11:00:05", "66.249.79.84", "1300");
INSERT INTO `wp_gf_form_view` VALUES("4757", "3", "2014-11-08 11:00:06", "66.249.79.84", "2646");
INSERT INTO `wp_gf_form_view` VALUES("4758", "6", "2014-11-08 12:00:00", "66.249.67.84", "1330");
INSERT INTO `wp_gf_form_view` VALUES("4759", "3", "2014-11-08 12:00:00", "66.249.67.84", "2686");
INSERT INTO `wp_gf_form_view` VALUES("4760", "3", "2014-11-08 13:00:00", "66.249.79.84", "1031");
INSERT INTO `wp_gf_form_view` VALUES("4761", "6", "2014-11-08 13:00:00", "158.85.94.4", "508");
INSERT INTO `wp_gf_form_view` VALUES("4762", "1", "2014-11-08 13:01:05", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("4763", "6", "2014-11-08 14:00:18", "202.46.49.35", "102");
INSERT INTO `wp_gf_form_view` VALUES("4764", "3", "2014-11-08 14:00:19", "202.46.49.35", "206");
INSERT INTO `wp_gf_form_view` VALUES("4765", "6", "2014-11-08 15:01:16", "66.249.79.84", "718");
INSERT INTO `wp_gf_form_view` VALUES("4766", "3", "2014-11-08 15:01:16", "66.249.79.84", "1454");
INSERT INTO `wp_gf_form_view` VALUES("4767", "1", "2014-11-08 15:22:01", "158.85.89.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("4768", "6", "2014-11-08 16:00:11", "66.249.79.76", "1284");
INSERT INTO `wp_gf_form_view` VALUES("4769", "3", "2014-11-08 16:00:11", "66.249.79.76", "2608");
INSERT INTO `wp_gf_form_view` VALUES("4770", "6", "2014-11-08 17:00:02", "66.249.79.84", "1374");
INSERT INTO `wp_gf_form_view` VALUES("4771", "3", "2014-11-08 17:00:02", "66.249.79.84", "2820");
INSERT INTO `wp_gf_form_view` VALUES("4772", "3", "2014-11-08 18:00:00", "66.249.79.76", "2903");
INSERT INTO `wp_gf_form_view` VALUES("4773", "6", "2014-11-08 18:00:02", "66.249.79.76", "1418");
INSERT INTO `wp_gf_form_view` VALUES("4774", "6", "2014-11-08 19:00:03", "66.249.79.76", "1370");
INSERT INTO `wp_gf_form_view` VALUES("4775", "3", "2014-11-08 19:00:03", "66.249.79.76", "2788");
INSERT INTO `wp_gf_form_view` VALUES("4776", "3", "2014-11-08 20:00:00", "66.249.79.92", "2634");
INSERT INTO `wp_gf_form_view` VALUES("4777", "6", "2014-11-08 20:00:04", "66.249.79.84", "1284");
INSERT INTO `wp_gf_form_view` VALUES("4778", "6", "2014-11-08 21:00:00", "66.249.79.76", "1364");
INSERT INTO `wp_gf_form_view` VALUES("4779", "3", "2014-11-08 21:00:00", "66.249.79.76", "2762");
INSERT INTO `wp_gf_form_view` VALUES("4780", "6", "2014-11-08 22:00:02", "66.249.79.76", "1244");
INSERT INTO `wp_gf_form_view` VALUES("4781", "3", "2014-11-08 22:00:03", "66.249.79.76", "2544");
INSERT INTO `wp_gf_form_view` VALUES("4782", "6", "2014-11-08 23:01:03", "66.249.79.84", "1206");
INSERT INTO `wp_gf_form_view` VALUES("4783", "3", "2014-11-08 23:01:03", "66.249.79.84", "2452");
INSERT INTO `wp_gf_form_view` VALUES("4784", "6", "2014-11-09 00:00:06", "66.249.79.92", "1142");
INSERT INTO `wp_gf_form_view` VALUES("4785", "3", "2014-11-09 00:00:07", "66.249.79.92", "2304");
INSERT INTO `wp_gf_form_view` VALUES("4786", "6", "2014-11-09 01:00:01", "66.249.79.84", "854");
INSERT INTO `wp_gf_form_view` VALUES("4787", "3", "2014-11-09 01:00:01", "66.249.79.84", "1731");
INSERT INTO `wp_gf_form_view` VALUES("4788", "6", "2014-11-09 02:00:16", "66.249.79.76", "256");
INSERT INTO `wp_gf_form_view` VALUES("4789", "3", "2014-11-09 02:00:17", "66.249.79.76", "522");
INSERT INTO `wp_gf_form_view` VALUES("4790", "6", "2014-11-09 03:00:02", "66.249.79.84", "1278");
INSERT INTO `wp_gf_form_view` VALUES("4791", "3", "2014-11-09 03:00:03", "66.249.79.84", "2596");
INSERT INTO `wp_gf_form_view` VALUES("4792", "6", "2014-11-09 04:00:02", "66.249.79.92", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4793", "3", "2014-11-09 04:00:03", "66.249.79.92", "2820");
INSERT INTO `wp_gf_form_view` VALUES("4794", "6", "2014-11-09 05:00:05", "66.249.79.84", "1388");
INSERT INTO `wp_gf_form_view` VALUES("4795", "3", "2014-11-09 05:00:06", "66.249.79.84", "2806");
INSERT INTO `wp_gf_form_view` VALUES("4796", "6", "2014-11-09 06:00:02", "66.249.79.92", "1462");
INSERT INTO `wp_gf_form_view` VALUES("4797", "3", "2014-11-09 06:00:02", "66.249.79.92", "2957");
INSERT INTO `wp_gf_form_view` VALUES("4798", "1", "2014-11-09 06:39:43", "158.85.89.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("4799", "6", "2014-11-09 07:00:07", "66.249.79.92", "1402");
INSERT INTO `wp_gf_form_view` VALUES("4800", "3", "2014-11-09 07:00:08", "66.249.79.92", "2856");
INSERT INTO `wp_gf_form_view` VALUES("4801", "6", "2014-11-09 08:00:03", "66.249.79.76", "1422");
INSERT INTO `wp_gf_form_view` VALUES("4802", "3", "2014-11-09 08:00:04", "66.249.79.76", "2874");
INSERT INTO `wp_gf_form_view` VALUES("4803", "6", "2014-11-09 09:00:00", "66.249.79.92", "1390");
INSERT INTO `wp_gf_form_view` VALUES("4804", "3", "2014-11-09 09:00:00", "66.249.79.92", "2825");
INSERT INTO `wp_gf_form_view` VALUES("4805", "6", "2014-11-09 10:00:01", "66.249.79.76", "1364");
INSERT INTO `wp_gf_form_view` VALUES("4806", "3", "2014-11-09 10:00:01", "66.249.79.76", "2784");
INSERT INTO `wp_gf_form_view` VALUES("4807", "6", "2014-11-09 11:00:02", "66.249.79.84", "1442");
INSERT INTO `wp_gf_form_view` VALUES("4808", "3", "2014-11-09 11:00:02", "66.249.79.84", "2936");
INSERT INTO `wp_gf_form_view` VALUES("4809", "1", "2014-11-09 11:34:15", "158.85.89.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("4810", "2", "2014-11-09 11:48:44", "192.34.59.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("4811", "6", "2014-11-09 12:00:03", "66.249.79.76", "1288");
INSERT INTO `wp_gf_form_view` VALUES("4812", "3", "2014-11-09 12:00:03", "66.249.79.76", "2634");
INSERT INTO `wp_gf_form_view` VALUES("4813", "6", "2014-11-09 13:00:00", "66.249.79.76", "760");
INSERT INTO `wp_gf_form_view` VALUES("4814", "3", "2014-11-09 13:00:01", "66.249.79.76", "1548");
INSERT INTO `wp_gf_form_view` VALUES("4815", "6", "2014-11-09 14:00:51", "66.249.79.92", "454");
INSERT INTO `wp_gf_form_view` VALUES("4816", "3", "2014-11-09 14:00:51", "66.249.79.92", "940");
INSERT INTO `wp_gf_form_view` VALUES("4817", "6", "2014-11-09 15:00:02", "66.249.79.92", "1612");
INSERT INTO `wp_gf_form_view` VALUES("4818", "3", "2014-11-09 15:00:03", "66.249.79.92", "3270");
INSERT INTO `wp_gf_form_view` VALUES("4819", "6", "2014-11-09 16:00:00", "66.249.79.92", "1576");
INSERT INTO `wp_gf_form_view` VALUES("4820", "3", "2014-11-09 16:00:00", "66.249.79.92", "3220");
INSERT INTO `wp_gf_form_view` VALUES("4821", "6", "2014-11-09 17:00:05", "66.249.79.76", "1568");
INSERT INTO `wp_gf_form_view` VALUES("4822", "3", "2014-11-09 17:00:05", "66.249.79.76", "3188");
INSERT INTO `wp_gf_form_view` VALUES("4823", "3", "2014-11-09 18:00:00", "66.249.79.76", "3032");
INSERT INTO `wp_gf_form_view` VALUES("4824", "6", "2014-11-09 18:00:04", "66.249.79.92", "1490");
INSERT INTO `wp_gf_form_view` VALUES("4825", "6", "2014-11-09 19:00:02", "66.249.79.92", "1464");
INSERT INTO `wp_gf_form_view` VALUES("4826", "3", "2014-11-09 19:00:03", "66.249.79.92", "2964");
INSERT INTO `wp_gf_form_view` VALUES("4827", "6", "2014-11-09 20:00:03", "66.249.79.92", "1328");
INSERT INTO `wp_gf_form_view` VALUES("4828", "3", "2014-11-09 20:00:04", "66.249.79.92", "2686");
INSERT INTO `wp_gf_form_view` VALUES("4829", "6", "2014-11-09 21:00:00", "66.249.79.92", "1360");
INSERT INTO `wp_gf_form_view` VALUES("4830", "3", "2014-11-09 21:00:01", "66.249.79.92", "2755");
INSERT INTO `wp_gf_form_view` VALUES("4831", "1", "2014-11-09 21:10:48", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("4832", "6", "2014-11-09 22:00:01", "66.249.79.84", "1084");
INSERT INTO `wp_gf_form_view` VALUES("4833", "3", "2014-11-09 22:00:02", "66.249.79.84", "2226");
INSERT INTO `wp_gf_form_view` VALUES("4834", "6", "2014-11-09 23:00:06", "66.249.79.92", "967");
INSERT INTO `wp_gf_form_view` VALUES("4835", "3", "2014-11-09 23:00:06", "66.249.79.92", "1973");
INSERT INTO `wp_gf_form_view` VALUES("4836", "6", "2014-11-10 00:00:01", "66.249.79.92", "1040");
INSERT INTO `wp_gf_form_view` VALUES("4837", "3", "2014-11-10 00:00:01", "66.249.79.92", "2115");
INSERT INTO `wp_gf_form_view` VALUES("4838", "1", "2014-11-10 00:37:40", "158.85.89.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("4839", "6", "2014-11-10 01:00:02", "66.249.79.76", "474");
INSERT INTO `wp_gf_form_view` VALUES("4840", "3", "2014-11-10 01:00:02", "66.249.79.76", "970");
INSERT INTO `wp_gf_form_view` VALUES("4841", "6", "2014-11-10 02:00:28", "66.249.79.92", "938");
INSERT INTO `wp_gf_form_view` VALUES("4842", "3", "2014-11-10 02:00:28", "66.249.79.92", "1906");
INSERT INTO `wp_gf_form_view` VALUES("4843", "6", "2014-11-10 03:00:01", "66.249.79.76", "1496");
INSERT INTO `wp_gf_form_view` VALUES("4844", "3", "2014-11-10 03:00:01", "66.249.79.76", "3044");
INSERT INTO `wp_gf_form_view` VALUES("4845", "6", "2014-11-10 04:01:00", "66.249.79.92", "1428");
INSERT INTO `wp_gf_form_view` VALUES("4846", "3", "2014-11-10 04:01:01", "66.249.79.92", "2897");
INSERT INTO `wp_gf_form_view` VALUES("4847", "6", "2014-11-10 05:00:01", "66.249.79.84", "1498");
INSERT INTO `wp_gf_form_view` VALUES("4848", "3", "2014-11-10 05:00:02", "66.249.79.84", "3064");
INSERT INTO `wp_gf_form_view` VALUES("4849", "6", "2014-11-10 06:00:01", "66.249.79.92", "1234");
INSERT INTO `wp_gf_form_view` VALUES("4850", "3", "2014-11-10 06:00:02", "66.249.79.92", "2511");
INSERT INTO `wp_gf_form_view` VALUES("4851", "6", "2014-11-10 07:00:03", "66.249.79.84", "1382");
INSERT INTO `wp_gf_form_view` VALUES("4852", "3", "2014-11-10 07:00:03", "66.249.79.84", "2804");
INSERT INTO `wp_gf_form_view` VALUES("4853", "6", "2014-11-10 08:00:03", "66.249.79.92", "1338");
INSERT INTO `wp_gf_form_view` VALUES("4854", "3", "2014-11-10 08:00:04", "66.249.79.92", "2714");
INSERT INTO `wp_gf_form_view` VALUES("4855", "6", "2014-11-10 09:00:01", "66.249.79.76", "1531");
INSERT INTO `wp_gf_form_view` VALUES("4856", "3", "2014-11-10 09:00:01", "66.249.79.76", "3157");
INSERT INTO `wp_gf_form_view` VALUES("4857", "3", "2014-11-10 10:00:00", "66.249.79.84", "2645");
INSERT INTO `wp_gf_form_view` VALUES("4858", "6", "2014-11-10 10:00:04", "66.249.79.92", "1286");
INSERT INTO `wp_gf_form_view` VALUES("4859", "6", "2014-11-10 11:00:02", "66.249.79.92", "1186");
INSERT INTO `wp_gf_form_view` VALUES("4860", "3", "2014-11-10 11:00:02", "66.249.79.92", "2400");
INSERT INTO `wp_gf_form_view` VALUES("4861", "6", "2014-11-10 12:00:01", "66.249.79.92", "1034");
INSERT INTO `wp_gf_form_view` VALUES("4862", "3", "2014-11-10 12:00:02", "66.249.79.92", "2095");
INSERT INTO `wp_gf_form_view` VALUES("4863", "6", "2014-11-10 13:00:50", "66.249.79.76", "82");
INSERT INTO `wp_gf_form_view` VALUES("4864", "3", "2014-11-10 13:00:50", "66.249.79.76", "166");
INSERT INTO `wp_gf_form_view` VALUES("4865", "6", "2014-11-10 14:00:30", "66.249.79.92", "902");
INSERT INTO `wp_gf_form_view` VALUES("4866", "3", "2014-11-10 14:00:30", "66.249.79.92", "1834");
INSERT INTO `wp_gf_form_view` VALUES("4867", "3", "2014-11-10 15:00:01", "66.249.67.140", "2760");
INSERT INTO `wp_gf_form_view` VALUES("4868", "6", "2014-11-10 15:00:02", "66.249.67.140", "1348");
INSERT INTO `wp_gf_form_view` VALUES("4869", "6", "2014-11-10 16:00:03", "66.249.67.140", "1388");
INSERT INTO `wp_gf_form_view` VALUES("4870", "3", "2014-11-10 16:00:03", "66.249.67.140", "2814");
INSERT INTO `wp_gf_form_view` VALUES("4871", "6", "2014-11-10 17:00:00", "66.249.79.92", "1398");
INSERT INTO `wp_gf_form_view` VALUES("4872", "3", "2014-11-10 17:00:00", "66.249.79.92", "2840");
INSERT INTO `wp_gf_form_view` VALUES("4873", "6", "2014-11-10 18:00:02", "66.249.79.76", "1388");
INSERT INTO `wp_gf_form_view` VALUES("4874", "3", "2014-11-10 18:00:02", "66.249.79.76", "2786");
INSERT INTO `wp_gf_form_view` VALUES("4875", "6", "2014-11-10 19:00:09", "66.249.79.92", "1402");
INSERT INTO `wp_gf_form_view` VALUES("4876", "3", "2014-11-10 19:00:10", "66.249.79.92", "2846");
INSERT INTO `wp_gf_form_view` VALUES("4877", "6", "2014-11-10 20:00:00", "66.249.79.84", "1424");
INSERT INTO `wp_gf_form_view` VALUES("4878", "3", "2014-11-10 20:00:01", "66.249.79.84", "2879");
INSERT INTO `wp_gf_form_view` VALUES("4879", "6", "2014-11-10 21:00:00", "66.249.79.92", "1412");
INSERT INTO `wp_gf_form_view` VALUES("4880", "3", "2014-11-10 21:00:00", "66.249.79.92", "2864");
INSERT INTO `wp_gf_form_view` VALUES("4881", "1", "2014-11-10 21:00:48", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("4882", "6", "2014-11-10 22:00:00", "66.249.79.92", "1352");
INSERT INTO `wp_gf_form_view` VALUES("4883", "3", "2014-11-10 22:00:01", "66.249.79.92", "2736");
INSERT INTO `wp_gf_form_view` VALUES("4884", "1", "2014-11-10 22:24:56", "64.141.7.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("4885", "3", "2014-11-10 23:00:00", "66.249.79.84", "2442");
INSERT INTO `wp_gf_form_view` VALUES("4886", "6", "2014-11-10 23:00:03", "66.249.79.76", "1206");
INSERT INTO `wp_gf_form_view` VALUES("4887", "6", "2014-11-11 00:00:01", "66.249.79.84", "1266");
INSERT INTO `wp_gf_form_view` VALUES("4888", "3", "2014-11-11 00:00:01", "66.249.79.84", "2568");
INSERT INTO `wp_gf_form_view` VALUES("4889", "6", "2014-11-11 01:00:12", "207.46.13.82", "76");
INSERT INTO `wp_gf_form_view` VALUES("4890", "3", "2014-11-11 01:00:12", "207.46.13.82", "160");
INSERT INTO `wp_gf_form_view` VALUES("4891", "6", "2014-11-11 02:00:41", "66.249.79.76", "312");
INSERT INTO `wp_gf_form_view` VALUES("4892", "3", "2014-11-11 02:00:41", "66.249.79.76", "627");
INSERT INTO `wp_gf_form_view` VALUES("4893", "3", "2014-11-11 03:00:00", "66.249.79.84", "2671");
INSERT INTO `wp_gf_form_view` VALUES("4894", "6", "2014-11-11 03:00:04", "66.249.79.92", "1324");
INSERT INTO `wp_gf_form_view` VALUES("4895", "6", "2014-11-11 04:00:02", "66.249.79.92", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4896", "3", "2014-11-11 04:00:03", "66.249.79.92", "2806");
INSERT INTO `wp_gf_form_view` VALUES("4897", "6", "2014-11-11 05:00:16", "66.249.79.92", "1312");
INSERT INTO `wp_gf_form_view` VALUES("4898", "3", "2014-11-11 05:00:16", "66.249.79.92", "2683");
INSERT INTO `wp_gf_form_view` VALUES("4899", "2", "2014-11-11 05:16:42", "155.94.141.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("4900", "6", "2014-11-11 06:00:03", "66.249.79.84", "1342");
INSERT INTO `wp_gf_form_view` VALUES("4901", "3", "2014-11-11 06:00:03", "66.249.79.84", "2737");
INSERT INTO `wp_gf_form_view` VALUES("4902", "6", "2014-11-11 07:00:00", "66.249.79.84", "1312");
INSERT INTO `wp_gf_form_view` VALUES("4903", "3", "2014-11-11 07:00:01", "66.249.79.84", "2674");
INSERT INTO `wp_gf_form_view` VALUES("4904", "6", "2014-11-11 08:00:01", "66.249.79.76", "1366");
INSERT INTO `wp_gf_form_view` VALUES("4905", "3", "2014-11-11 08:00:01", "66.249.79.76", "2774");
INSERT INTO `wp_gf_form_view` VALUES("4906", "6", "2014-11-11 09:00:03", "66.249.79.92", "1458");
INSERT INTO `wp_gf_form_view` VALUES("4907", "3", "2014-11-11 09:00:03", "66.249.79.92", "2958");
INSERT INTO `wp_gf_form_view` VALUES("4908", "6", "2014-11-11 10:00:02", "66.249.79.76", "1366");
INSERT INTO `wp_gf_form_view` VALUES("4909", "3", "2014-11-11 10:00:02", "66.249.79.76", "2804");
INSERT INTO `wp_gf_form_view` VALUES("4910", "6", "2014-11-11 11:00:03", "66.249.79.92", "1399");
INSERT INTO `wp_gf_form_view` VALUES("4911", "3", "2014-11-11 11:00:04", "66.249.79.92", "2844");
INSERT INTO `wp_gf_form_view` VALUES("4912", "1", "2014-11-11 11:21:24", "158.85.89.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("4913", "6", "2014-11-11 12:00:00", "66.249.79.92", "1290");
INSERT INTO `wp_gf_form_view` VALUES("4914", "3", "2014-11-11 12:00:01", "66.249.79.92", "2628");
INSERT INTO `wp_gf_form_view` VALUES("4915", "6", "2014-11-11 13:00:10", "66.249.79.76", "646");
INSERT INTO `wp_gf_form_view` VALUES("4916", "3", "2014-11-11 13:00:10", "66.249.79.76", "1316");
INSERT INTO `wp_gf_form_view` VALUES("4917", "6", "2014-11-11 14:02:37", "66.249.67.132", "540");
INSERT INTO `wp_gf_form_view` VALUES("4918", "3", "2014-11-11 14:02:38", "66.249.67.132", "1118");
INSERT INTO `wp_gf_form_view` VALUES("4919", "2", "2014-11-11 14:55:09", "157.55.39.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("4920", "6", "2014-11-11 15:00:02", "66.249.79.92", "974");
INSERT INTO `wp_gf_form_view` VALUES("4921", "3", "2014-11-11 15:00:02", "66.249.79.92", "2000");
INSERT INTO `wp_gf_form_view` VALUES("4922", "6", "2014-11-11 16:00:11", "66.249.79.92", "1378");
INSERT INTO `wp_gf_form_view` VALUES("4923", "3", "2014-11-11 16:00:11", "66.249.79.92", "2787");
INSERT INTO `wp_gf_form_view` VALUES("4924", "1", "2014-11-11 16:24:22", "158.85.89.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("4925", "6", "2014-11-11 17:00:03", "66.249.79.76", "1394");
INSERT INTO `wp_gf_form_view` VALUES("4926", "3", "2014-11-11 17:00:04", "66.249.79.76", "2820");
INSERT INTO `wp_gf_form_view` VALUES("4927", "6", "2014-11-11 18:00:06", "66.249.79.76", "1560");
INSERT INTO `wp_gf_form_view` VALUES("4928", "3", "2014-11-11 18:00:06", "66.249.79.76", "3179");
INSERT INTO `wp_gf_form_view` VALUES("4929", "2", "2014-11-11 18:48:46", "103.229.125.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("4930", "1", "2014-11-11 18:48:50", "103.229.125.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("4931", "6", "2014-11-11 19:00:02", "66.249.79.92", "1358");
INSERT INTO `wp_gf_form_view` VALUES("4932", "3", "2014-11-11 19:00:02", "66.249.79.92", "2774");
INSERT INTO `wp_gf_form_view` VALUES("4933", "6", "2014-11-11 20:00:00", "66.249.79.84", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4934", "3", "2014-11-11 20:00:01", "66.249.79.84", "2800");
INSERT INTO `wp_gf_form_view` VALUES("4935", "6", "2014-11-11 21:00:01", "66.249.79.92", "1324");
INSERT INTO `wp_gf_form_view` VALUES("4936", "3", "2014-11-11 21:00:01", "66.249.79.92", "2702");
INSERT INTO `wp_gf_form_view` VALUES("4937", "6", "2014-11-11 22:00:09", "66.249.79.76", "1164");
INSERT INTO `wp_gf_form_view` VALUES("4938", "3", "2014-11-11 22:00:09", "66.249.79.76", "2364");
INSERT INTO `wp_gf_form_view` VALUES("4939", "6", "2014-11-11 23:00:02", "66.249.79.76", "1230");
INSERT INTO `wp_gf_form_view` VALUES("4940", "3", "2014-11-11 23:00:03", "66.249.79.76", "2500");
INSERT INTO `wp_gf_form_view` VALUES("4941", "6", "2014-11-12 00:00:02", "66.249.79.92", "1150");
INSERT INTO `wp_gf_form_view` VALUES("4942", "3", "2014-11-12 00:00:02", "66.249.79.92", "2326");
INSERT INTO `wp_gf_form_view` VALUES("4943", "6", "2014-11-12 01:00:02", "66.249.79.76", "840");
INSERT INTO `wp_gf_form_view` VALUES("4944", "3", "2014-11-12 01:00:02", "66.249.79.76", "1690");
INSERT INTO `wp_gf_form_view` VALUES("4945", "6", "2014-11-12 02:01:06", "66.249.79.92", "284");
INSERT INTO `wp_gf_form_view` VALUES("4946", "3", "2014-11-12 02:01:07", "66.249.79.92", "572");
INSERT INTO `wp_gf_form_view` VALUES("4947", "2", "2014-11-12 02:13:48", "188.165.15.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("4948", "6", "2014-11-12 03:00:03", "66.249.79.84", "1340");
INSERT INTO `wp_gf_form_view` VALUES("4949", "3", "2014-11-12 03:00:04", "66.249.79.84", "2733");
INSERT INTO `wp_gf_form_view` VALUES("4950", "6", "2014-11-12 04:00:01", "66.249.79.92", "1374");
INSERT INTO `wp_gf_form_view` VALUES("4951", "3", "2014-11-12 04:00:01", "66.249.79.92", "2804");
INSERT INTO `wp_gf_form_view` VALUES("4952", "6", "2014-11-12 05:00:00", "66.249.79.76", "1378");
INSERT INTO `wp_gf_form_view` VALUES("4953", "3", "2014-11-12 05:00:00", "66.249.79.76", "2786");
INSERT INTO `wp_gf_form_view` VALUES("4954", "6", "2014-11-12 06:00:05", "66.249.79.92", "1374");
INSERT INTO `wp_gf_form_view` VALUES("4955", "3", "2014-11-12 06:00:06", "66.249.79.92", "2806");
INSERT INTO `wp_gf_form_view` VALUES("4956", "6", "2014-11-12 07:00:00", "66.249.79.92", "1376");
INSERT INTO `wp_gf_form_view` VALUES("4957", "3", "2014-11-12 07:00:01", "66.249.79.92", "2795");
INSERT INTO `wp_gf_form_view` VALUES("4958", "2", "2014-11-12 07:13:37", "69.12.82.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("4959", "3", "2014-11-12 08:00:00", "66.249.79.76", "2795");
INSERT INTO `wp_gf_form_view` VALUES("4960", "6", "2014-11-12 08:00:04", "66.249.79.76", "1376");
INSERT INTO `wp_gf_form_view` VALUES("4961", "6", "2014-11-12 09:00:06", "66.249.79.92", "1386");
INSERT INTO `wp_gf_form_view` VALUES("4962", "3", "2014-11-12 09:00:06", "66.249.79.92", "2812");
INSERT INTO `wp_gf_form_view` VALUES("4963", "1", "2014-11-12 09:41:50", "157.55.39.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("4964", "6", "2014-11-12 10:00:02", "66.249.79.84", "1350");
INSERT INTO `wp_gf_form_view` VALUES("4965", "3", "2014-11-12 10:00:02", "66.249.79.84", "2757");
INSERT INTO `wp_gf_form_view` VALUES("4966", "3", "2014-11-12 11:00:02", "66.249.79.84", "2639");
INSERT INTO `wp_gf_form_view` VALUES("4967", "6", "2014-11-12 11:00:03", "66.249.79.84", "1296");
INSERT INTO `wp_gf_form_view` VALUES("4968", "1", "2014-11-12 11:17:38", "158.85.89.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("4969", "6", "2014-11-12 12:00:03", "66.249.79.84", "1188");
INSERT INTO `wp_gf_form_view` VALUES("4970", "3", "2014-11-12 12:00:03", "66.249.79.84", "2400");
INSERT INTO `wp_gf_form_view` VALUES("4971", "6", "2014-11-12 13:00:00", "66.249.79.92", "854");
INSERT INTO `wp_gf_form_view` VALUES("4972", "3", "2014-11-12 13:00:00", "66.249.79.92", "1760");
INSERT INTO `wp_gf_form_view` VALUES("4973", "6", "2014-11-12 14:00:51", "66.249.79.84", "96");
INSERT INTO `wp_gf_form_view` VALUES("4974", "3", "2014-11-12 14:00:52", "66.249.79.84", "198");
INSERT INTO `wp_gf_form_view` VALUES("4975", "6", "2014-11-12 15:00:23", "66.249.79.92", "1072");
INSERT INTO `wp_gf_form_view` VALUES("4976", "3", "2014-11-12 15:00:23", "66.249.79.92", "2208");
INSERT INTO `wp_gf_form_view` VALUES("4977", "6", "2014-11-12 16:00:02", "66.249.69.108", "1442");
INSERT INTO `wp_gf_form_view` VALUES("4978", "3", "2014-11-12 16:00:02", "66.249.69.108", "2936");
INSERT INTO `wp_gf_form_view` VALUES("4979", "6", "2014-11-12 17:00:05", "66.249.69.92", "1492");
INSERT INTO `wp_gf_form_view` VALUES("4980", "3", "2014-11-12 17:00:06", "66.249.69.92", "3032");
INSERT INTO `wp_gf_form_view` VALUES("4981", "6", "2014-11-12 18:00:02", "66.249.69.92", "1430");
INSERT INTO `wp_gf_form_view` VALUES("4982", "3", "2014-11-12 18:00:03", "66.249.69.92", "2922");
INSERT INTO `wp_gf_form_view` VALUES("4983", "6", "2014-11-12 19:00:01", "66.249.69.92", "1450");
INSERT INTO `wp_gf_form_view` VALUES("4984", "3", "2014-11-12 19:00:01", "66.249.69.92", "2920");
INSERT INTO `wp_gf_form_view` VALUES("4985", "6", "2014-11-12 20:00:07", "66.249.69.108", "1086");
INSERT INTO `wp_gf_form_view` VALUES("4986", "3", "2014-11-12 20:00:08", "66.249.69.108", "2208");
INSERT INTO `wp_gf_form_view` VALUES("4987", "6", "2014-11-12 21:00:02", "66.249.69.124", "1374");
INSERT INTO `wp_gf_form_view` VALUES("4988", "3", "2014-11-12 21:00:02", "66.249.69.124", "2794");
INSERT INTO `wp_gf_form_view` VALUES("4989", "3", "2014-11-12 22:00:01", "66.249.69.108", "3170");
INSERT INTO `wp_gf_form_view` VALUES("4990", "6", "2014-11-12 22:00:02", "66.249.69.108", "1564");
INSERT INTO `wp_gf_form_view` VALUES("4991", "6", "2014-11-12 23:00:04", "66.249.69.124", "1526");
INSERT INTO `wp_gf_form_view` VALUES("4992", "3", "2014-11-12 23:00:04", "66.249.69.124", "3096");
INSERT INTO `wp_gf_form_view` VALUES("4993", "3", "2014-11-13 00:00:00", "66.249.69.124", "3122");
INSERT INTO `wp_gf_form_view` VALUES("4994", "6", "2014-11-13 00:00:04", "66.249.69.108", "1534");
INSERT INTO `wp_gf_form_view` VALUES("4995", "6", "2014-11-13 01:00:01", "66.249.69.108", "370");
INSERT INTO `wp_gf_form_view` VALUES("4996", "3", "2014-11-13 01:00:01", "66.249.69.108", "756");
INSERT INTO `wp_gf_form_view` VALUES("4997", "6", "2014-11-13 02:00:07", "66.249.69.108", "406");
INSERT INTO `wp_gf_form_view` VALUES("4998", "3", "2014-11-13 02:00:07", "66.249.69.108", "816");
INSERT INTO `wp_gf_form_view` VALUES("4999", "6", "2014-11-13 03:00:02", "66.249.69.108", "1294");
INSERT INTO `wp_gf_form_view` VALUES("5000", "3", "2014-11-13 03:00:02", "66.249.69.108", "2641");
INSERT INTO `wp_gf_form_view` VALUES("5001", "6", "2014-11-13 04:00:00", "66.249.69.124", "1364");
INSERT INTO `wp_gf_form_view` VALUES("5002", "3", "2014-11-13 04:00:00", "66.249.69.124", "2777");
INSERT INTO `wp_gf_form_view` VALUES("5003", "6", "2014-11-13 05:00:05", "66.249.69.108", "1370");
INSERT INTO `wp_gf_form_view` VALUES("5004", "3", "2014-11-13 05:00:05", "66.249.69.108", "2764");
INSERT INTO `wp_gf_form_view` VALUES("5005", "6", "2014-11-13 06:00:01", "66.249.69.124", "1352");
INSERT INTO `wp_gf_form_view` VALUES("5006", "3", "2014-11-13 06:00:02", "66.249.69.124", "2742");
INSERT INTO `wp_gf_form_view` VALUES("5007", "3", "2014-11-13 07:00:00", "66.249.69.92", "2890");
INSERT INTO `wp_gf_form_view` VALUES("5008", "6", "2014-11-13 07:00:00", "66.249.69.92", "1412");
INSERT INTO `wp_gf_form_view` VALUES("5009", "1", "2014-11-13 07:59:13", "222.93.98.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("5010", "6", "2014-11-13 08:00:02", "66.249.69.92", "1408");
INSERT INTO `wp_gf_form_view` VALUES("5011", "3", "2014-11-13 08:00:03", "66.249.69.92", "2856");
INSERT INTO `wp_gf_form_view` VALUES("5012", "6", "2014-11-13 09:00:00", "66.249.69.108", "1360");
INSERT INTO `wp_gf_form_view` VALUES("5013", "3", "2014-11-13 09:00:01", "66.249.69.108", "2755");
INSERT INTO `wp_gf_form_view` VALUES("5014", "6", "2014-11-13 10:00:00", "66.249.69.108", "1400");
INSERT INTO `wp_gf_form_view` VALUES("5015", "3", "2014-11-13 10:00:00", "66.249.69.108", "2849");
INSERT INTO `wp_gf_form_view` VALUES("5016", "1", "2014-11-13 10:29:36", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("5017", "6", "2014-11-13 11:00:01", "66.249.69.92", "1340");
INSERT INTO `wp_gf_form_view` VALUES("5018", "3", "2014-11-13 11:00:01", "66.249.69.92", "2722");
INSERT INTO `wp_gf_form_view` VALUES("5019", "6", "2014-11-13 12:00:00", "66.249.69.108", "1374");
INSERT INTO `wp_gf_form_view` VALUES("5020", "3", "2014-11-13 12:00:01", "66.249.69.108", "2811");
INSERT INTO `wp_gf_form_view` VALUES("5021", "3", "2014-11-13 13:00:00", "66.249.69.92", "211");
INSERT INTO `wp_gf_form_view` VALUES("5022", "6", "2014-11-13 13:00:01", "66.249.69.124", "102");
INSERT INTO `wp_gf_form_view` VALUES("5023", "1", "2014-11-13 13:24:52", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("5024", "6", "2014-11-13 14:00:12", "66.249.69.124", "350");
INSERT INTO `wp_gf_form_view` VALUES("5025", "3", "2014-11-13 14:00:12", "66.249.69.124", "704");
INSERT INTO `wp_gf_form_view` VALUES("5026", "6", "2014-11-13 15:00:07", "66.249.69.124", "1104");
INSERT INTO `wp_gf_form_view` VALUES("5027", "3", "2014-11-13 15:00:07", "66.249.69.124", "2262");
INSERT INTO `wp_gf_form_view` VALUES("5028", "6", "2014-11-13 16:00:01", "66.249.69.92", "1282");
INSERT INTO `wp_gf_form_view` VALUES("5029", "3", "2014-11-13 16:00:01", "66.249.69.92", "2612");
INSERT INTO `wp_gf_form_view` VALUES("5030", "6", "2014-11-13 17:00:01", "66.249.69.92", "1290");
INSERT INTO `wp_gf_form_view` VALUES("5031", "3", "2014-11-13 17:00:02", "66.249.69.92", "2658");
INSERT INTO `wp_gf_form_view` VALUES("5032", "1", "2014-11-13 17:59:59", "174.127.133.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("5033", "6", "2014-11-13 18:00:00", "174.127.133.92", "1520");
INSERT INTO `wp_gf_form_view` VALUES("5034", "3", "2014-11-13 18:00:00", "174.127.133.92", "3097");
INSERT INTO `wp_gf_form_view` VALUES("5035", "2", "2014-11-13 18:02:25", "174.127.133.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("5036", "1", "2014-11-13 18:29:27", "174.127.133.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("5037", "6", "2014-11-13 19:00:03", "66.249.79.84", "1332");
INSERT INTO `wp_gf_form_view` VALUES("5038", "3", "2014-11-13 19:00:03", "66.249.79.84", "2720");
INSERT INTO `wp_gf_form_view` VALUES("5039", "6", "2014-11-13 20:00:00", "66.249.79.76", "1487");
INSERT INTO `wp_gf_form_view` VALUES("5040", "3", "2014-11-13 20:00:01", "66.249.79.76", "3015");
INSERT INTO `wp_gf_form_view` VALUES("5041", "1", "2014-11-13 20:56:31", "74.247.76.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("5042", "2", "2014-11-13 20:56:47", "74.247.76.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("5043", "3", "2014-11-13 21:00:00", "66.249.79.76", "3580");
INSERT INTO `wp_gf_form_view` VALUES("5044", "6", "2014-11-13 21:00:02", "66.249.79.76", "1745");
INSERT INTO `wp_gf_form_view` VALUES("5045", "2", "2014-11-13 21:06:54", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("5046", "1", "2014-11-13 21:07:03", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("5047", "3", "2014-11-13 22:00:00", "66.249.79.76", "3028");
INSERT INTO `wp_gf_form_view` VALUES("5048", "6", "2014-11-13 22:00:02", "100.43.85.24", "1490");
INSERT INTO `wp_gf_form_view` VALUES("5049", "1", "2014-11-13 22:36:37", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("5050", "6", "2014-11-13 23:00:00", "66.249.79.76", "1246");
INSERT INTO `wp_gf_form_view` VALUES("5051", "3", "2014-11-13 23:00:01", "66.249.79.76", "2536");
INSERT INTO `wp_gf_form_view` VALUES("5052", "6", "2014-11-14 00:00:01", "66.249.79.84", "1340");
INSERT INTO `wp_gf_form_view` VALUES("5053", "3", "2014-11-14 00:00:01", "66.249.79.84", "2714");
INSERT INTO `wp_gf_form_view` VALUES("5054", "6", "2014-11-14 01:00:10", "66.249.79.84", "238");
INSERT INTO `wp_gf_form_view` VALUES("5055", "3", "2014-11-14 01:00:10", "66.249.79.84", "474");
INSERT INTO `wp_gf_form_view` VALUES("5056", "1", "2014-11-14 01:51:26", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("5057", "6", "2014-11-14 02:01:25", "66.249.79.92", "633");
INSERT INTO `wp_gf_form_view` VALUES("5058", "3", "2014-11-14 02:01:25", "66.249.79.92", "1301");
INSERT INTO `wp_gf_form_view` VALUES("5059", "6", "2014-11-14 03:00:04", "66.249.79.92", "1178");
INSERT INTO `wp_gf_form_view` VALUES("5060", "3", "2014-11-14 03:00:04", "66.249.79.92", "2418");
INSERT INTO `wp_gf_form_view` VALUES("5061", "6", "2014-11-14 04:00:03", "66.249.79.84", "1332");
INSERT INTO `wp_gf_form_view` VALUES("5062", "3", "2014-11-14 04:00:04", "66.249.79.84", "2704");
INSERT INTO `wp_gf_form_view` VALUES("5063", "1", "2014-11-14 04:38:28", "24.68.112.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("5064", "6", "2014-11-14 05:00:06", "66.249.79.84", "1384");
INSERT INTO `wp_gf_form_view` VALUES("5065", "3", "2014-11-14 05:00:06", "66.249.79.84", "2818");
INSERT INTO `wp_gf_form_view` VALUES("5066", "1", "2014-11-14 05:14:48", "24.68.112.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("5067", "6", "2014-11-14 06:00:08", "66.249.79.76", "1368");
INSERT INTO `wp_gf_form_view` VALUES("5068", "3", "2014-11-14 06:00:08", "66.249.79.76", "2778");
INSERT INTO `wp_gf_form_view` VALUES("5069", "3", "2014-11-14 07:00:00", "66.249.79.84", "2917");
INSERT INTO `wp_gf_form_view` VALUES("5070", "6", "2014-11-14 07:00:04", "66.249.79.92", "1440");
INSERT INTO `wp_gf_form_view` VALUES("5071", "6", "2014-11-14 08:00:03", "66.249.79.76", "1342");
INSERT INTO `wp_gf_form_view` VALUES("5072", "3", "2014-11-14 08:00:03", "66.249.79.76", "2729");
INSERT INTO `wp_gf_form_view` VALUES("5073", "3", "2014-11-14 09:00:00", "66.249.79.92", "2375");
INSERT INTO `wp_gf_form_view` VALUES("5074", "6", "2014-11-14 09:00:01", "66.249.79.92", "1158");
INSERT INTO `wp_gf_form_view` VALUES("5075", "6", "2014-11-14 10:00:01", "66.249.79.76", "1336");
INSERT INTO `wp_gf_form_view` VALUES("5076", "3", "2014-11-14 10:00:01", "66.249.79.76", "2718");
INSERT INTO `wp_gf_form_view` VALUES("5077", "6", "2014-11-14 11:00:01", "66.249.79.84", "1312");
INSERT INTO `wp_gf_form_view` VALUES("5078", "3", "2014-11-14 11:00:01", "66.249.79.84", "2672");
INSERT INTO `wp_gf_form_view` VALUES("5079", "6", "2014-11-14 12:00:00", "66.249.79.92", "1392");
INSERT INTO `wp_gf_form_view` VALUES("5080", "3", "2014-11-14 12:00:00", "66.249.79.92", "2841");
INSERT INTO `wp_gf_form_view` VALUES("5081", "1", "2014-11-14 12:18:24", "158.85.89.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("5082", "6", "2014-11-14 13:00:16", "66.249.79.92", "96");
INSERT INTO `wp_gf_form_view` VALUES("5083", "3", "2014-11-14 13:00:17", "66.249.79.92", "196");
INSERT INTO `wp_gf_form_view` VALUES("5084", "6", "2014-11-14 14:00:16", "66.249.79.84", "967");
INSERT INTO `wp_gf_form_view` VALUES("5085", "3", "2014-11-14 14:00:16", "66.249.79.84", "1964");
INSERT INTO `wp_gf_form_view` VALUES("5086", "6", "2014-11-14 15:00:03", "66.249.79.84", "1292");
INSERT INTO `wp_gf_form_view` VALUES("5087", "3", "2014-11-14 15:00:03", "66.249.79.84", "2630");
INSERT INTO `wp_gf_form_view` VALUES("5088", "6", "2014-11-14 16:00:02", "66.249.79.76", "1342");
INSERT INTO `wp_gf_form_view` VALUES("5089", "3", "2014-11-14 16:00:03", "66.249.79.76", "2748");
INSERT INTO `wp_gf_form_view` VALUES("5090", "1", "2014-11-14 16:22:42", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("5091", "6", "2014-11-14 17:00:01", "66.249.79.84", "1396");
INSERT INTO `wp_gf_form_view` VALUES("5092", "3", "2014-11-14 17:00:02", "66.249.79.84", "2834");
INSERT INTO `wp_gf_form_view` VALUES("5093", "6", "2014-11-14 18:00:03", "66.249.79.76", "1276");
INSERT INTO `wp_gf_form_view` VALUES("5094", "3", "2014-11-14 18:00:04", "66.249.79.76", "2604");
INSERT INTO `wp_gf_form_view` VALUES("5095", "6", "2014-11-14 19:00:01", "66.249.79.76", "1370");
INSERT INTO `wp_gf_form_view` VALUES("5096", "3", "2014-11-14 19:00:01", "66.249.79.76", "2802");
INSERT INTO `wp_gf_form_view` VALUES("5097", "6", "2014-11-14 20:00:03", "66.249.79.76", "1336");
INSERT INTO `wp_gf_form_view` VALUES("5098", "3", "2014-11-14 20:00:04", "66.249.79.76", "2700");
INSERT INTO `wp_gf_form_view` VALUES("5099", "6", "2014-11-14 21:00:01", "66.249.79.76", "1368");
INSERT INTO `wp_gf_form_view` VALUES("5100", "3", "2014-11-14 21:00:01", "66.249.79.76", "2782");
INSERT INTO `wp_gf_form_view` VALUES("5101", "6", "2014-11-14 22:00:02", "66.249.79.92", "1461");
INSERT INTO `wp_gf_form_view` VALUES("5102", "3", "2014-11-14 22:00:02", "66.249.79.92", "3020");
INSERT INTO `wp_gf_form_view` VALUES("5103", "6", "2014-11-14 23:00:01", "66.249.79.84", "1395");
INSERT INTO `wp_gf_form_view` VALUES("5104", "3", "2014-11-14 23:00:01", "66.249.79.84", "2837");
INSERT INTO `wp_gf_form_view` VALUES("5105", "6", "2014-11-15 00:00:03", "66.249.79.92", "1276");
INSERT INTO `wp_gf_form_view` VALUES("5106", "3", "2014-11-15 00:00:03", "66.249.79.92", "2592");
INSERT INTO `wp_gf_form_view` VALUES("5107", "6", "2014-11-15 01:01:07", "66.249.79.76", "96");
INSERT INTO `wp_gf_form_view` VALUES("5108", "3", "2014-11-15 01:01:08", "66.249.79.76", "195");
INSERT INTO `wp_gf_form_view` VALUES("5109", "6", "2014-11-15 02:00:48", "66.249.79.76", "616");
INSERT INTO `wp_gf_form_view` VALUES("5110", "3", "2014-11-15 02:00:48", "66.249.79.76", "1252");
INSERT INTO `wp_gf_form_view` VALUES("5111", "1", "2014-11-15 02:19:52", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("5112", "6", "2014-11-15 03:01:29", "66.249.79.92", "1120");
INSERT INTO `wp_gf_form_view` VALUES("5113", "3", "2014-11-15 03:01:29", "66.249.79.92", "2285");
INSERT INTO `wp_gf_form_view` VALUES("5114", "1", "2014-11-15 03:44:28", "158.85.89.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("5115", "6", "2014-11-15 04:00:24", "66.249.79.76", "1214");
INSERT INTO `wp_gf_form_view` VALUES("5116", "3", "2014-11-15 04:00:25", "66.249.79.76", "2498");
INSERT INTO `wp_gf_form_view` VALUES("5117", "6", "2014-11-15 05:00:02", "66.249.79.76", "1388");
INSERT INTO `wp_gf_form_view` VALUES("5118", "3", "2014-11-15 05:00:02", "66.249.79.76", "2800");
INSERT INTO `wp_gf_form_view` VALUES("5119", "6", "2014-11-15 06:00:03", "66.249.79.92", "1298");
INSERT INTO `wp_gf_form_view` VALUES("5120", "3", "2014-11-15 06:00:03", "66.249.79.92", "2644");
INSERT INTO `wp_gf_form_view` VALUES("5121", "6", "2014-11-15 07:00:03", "66.249.79.92", "1048");
INSERT INTO `wp_gf_form_view` VALUES("5122", "3", "2014-11-15 07:00:04", "66.249.79.92", "2117");
INSERT INTO `wp_gf_form_view` VALUES("5123", "6", "2014-11-15 08:00:04", "66.249.79.76", "1400");
INSERT INTO `wp_gf_form_view` VALUES("5124", "3", "2014-11-15 08:00:04", "66.249.79.76", "2846");
INSERT INTO `wp_gf_form_view` VALUES("5125", "6", "2014-11-15 09:00:03", "66.249.79.84", "1374");
INSERT INTO `wp_gf_form_view` VALUES("5126", "3", "2014-11-15 09:00:04", "66.249.79.84", "2806");
INSERT INTO `wp_gf_form_view` VALUES("5127", "1", "2014-11-15 09:36:57", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("5128", "6", "2014-11-15 10:00:18", "66.249.79.76", "1068");
INSERT INTO `wp_gf_form_view` VALUES("5129", "3", "2014-11-15 10:00:19", "66.249.79.76", "2186");
INSERT INTO `wp_gf_form_view` VALUES("5130", "6", "2014-11-15 11:00:01", "66.249.79.92", "1306");
INSERT INTO `wp_gf_form_view` VALUES("5131", "3", "2014-11-15 11:00:01", "66.249.79.92", "2654");
INSERT INTO `wp_gf_form_view` VALUES("5132", "6", "2014-11-15 12:00:00", "66.249.79.84", "1896");
INSERT INTO `wp_gf_form_view` VALUES("5133", "3", "2014-11-15 12:00:01", "66.249.79.84", "3882");
INSERT INTO `wp_gf_form_view` VALUES("5134", "1", "2014-11-15 12:14:28", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5135", "3", "2014-11-15 13:00:00", "66.249.79.84", "195");
INSERT INTO `wp_gf_form_view` VALUES("5136", "6", "2014-11-15 13:00:03", "66.249.79.76", "96");
INSERT INTO `wp_gf_form_view` VALUES("5137", "6", "2014-11-15 14:00:00", "66.249.79.76", "902");
INSERT INTO `wp_gf_form_view` VALUES("5138", "3", "2014-11-15 14:00:00", "66.249.79.76", "1823");
INSERT INTO `wp_gf_form_view` VALUES("5139", "6", "2014-11-15 15:00:02", "66.249.79.76", "1000");
INSERT INTO `wp_gf_form_view` VALUES("5140", "3", "2014-11-15 15:00:02", "66.249.79.76", "2050");
INSERT INTO `wp_gf_form_view` VALUES("5141", "6", "2014-11-15 16:00:17", "66.249.79.92", "1122");
INSERT INTO `wp_gf_form_view` VALUES("5142", "3", "2014-11-15 16:00:18", "66.249.79.92", "2289");
INSERT INTO `wp_gf_form_view` VALUES("5143", "1", "2014-11-15 16:41:43", "158.85.89.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("5144", "6", "2014-11-15 17:01:55", "66.249.79.76", "1252");
INSERT INTO `wp_gf_form_view` VALUES("5145", "3", "2014-11-15 17:01:55", "66.249.79.76", "2551");
INSERT INTO `wp_gf_form_view` VALUES("5146", "6", "2014-11-15 18:00:02", "66.249.79.92", "1240");
INSERT INTO `wp_gf_form_view` VALUES("5147", "3", "2014-11-15 18:00:02", "66.249.79.92", "2532");
INSERT INTO `wp_gf_form_view` VALUES("5148", "6", "2014-11-15 19:00:00", "66.249.79.92", "770");
INSERT INTO `wp_gf_form_view` VALUES("5149", "3", "2014-11-15 19:00:01", "66.249.79.92", "1550");
INSERT INTO `wp_gf_form_view` VALUES("5150", "6", "2014-11-15 20:00:01", "66.249.79.84", "1384");
INSERT INTO `wp_gf_form_view` VALUES("5151", "3", "2014-11-15 20:00:02", "66.249.79.84", "2814");
INSERT INTO `wp_gf_form_view` VALUES("5152", "6", "2014-11-15 21:00:02", "66.249.79.92", "1178");
INSERT INTO `wp_gf_form_view` VALUES("5153", "3", "2014-11-15 21:00:02", "66.249.79.92", "2396");
INSERT INTO `wp_gf_form_view` VALUES("5154", "6", "2014-11-15 22:00:17", "66.249.79.76", "1396");
INSERT INTO `wp_gf_form_view` VALUES("5155", "3", "2014-11-15 22:00:17", "66.249.79.76", "2837");
INSERT INTO `wp_gf_form_view` VALUES("5156", "6", "2014-11-15 23:00:00", "66.249.79.84", "1433");
INSERT INTO `wp_gf_form_view` VALUES("5157", "3", "2014-11-15 23:00:00", "66.249.79.84", "2907");
INSERT INTO `wp_gf_form_view` VALUES("5158", "3", "2014-11-16 00:00:00", "66.249.79.84", "2940");
INSERT INTO `wp_gf_form_view` VALUES("5159", "6", "2014-11-16 00:00:02", "66.249.79.84", "1448");
INSERT INTO `wp_gf_form_view` VALUES("5160", "6", "2014-11-16 01:00:02", "66.249.79.76", "584");
INSERT INTO `wp_gf_form_view` VALUES("5161", "3", "2014-11-16 01:00:02", "66.249.79.76", "1189");
INSERT INTO `wp_gf_form_view` VALUES("5162", "1", "2014-11-16 01:11:21", "158.85.89.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("5163", "6", "2014-11-16 02:06:43", "207.46.13.102", "220");
INSERT INTO `wp_gf_form_view` VALUES("5164", "3", "2014-11-16 02:06:43", "207.46.13.102", "452");
INSERT INTO `wp_gf_form_view` VALUES("5165", "6", "2014-11-16 03:00:11", "66.249.79.92", "1192");
INSERT INTO `wp_gf_form_view` VALUES("5166", "3", "2014-11-16 03:00:11", "66.249.79.92", "2451");
INSERT INTO `wp_gf_form_view` VALUES("5167", "1", "2014-11-16 03:24:05", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("5168", "6", "2014-11-16 04:00:01", "66.249.79.92", "1588");
INSERT INTO `wp_gf_form_view` VALUES("5169", "3", "2014-11-16 04:00:02", "66.249.79.92", "3228");
INSERT INTO `wp_gf_form_view` VALUES("5170", "6", "2014-11-16 05:00:06", "66.249.79.84", "1248");
INSERT INTO `wp_gf_form_view` VALUES("5171", "3", "2014-11-16 05:00:07", "66.249.79.84", "2523");
INSERT INTO `wp_gf_form_view` VALUES("5172", "6", "2014-11-16 06:00:00", "66.249.79.76", "1564");
INSERT INTO `wp_gf_form_view` VALUES("5173", "3", "2014-11-16 06:00:00", "66.249.79.76", "3168");
INSERT INTO `wp_gf_form_view` VALUES("5174", "6", "2014-11-16 07:00:01", "66.249.79.84", "1410");
INSERT INTO `wp_gf_form_view` VALUES("5175", "3", "2014-11-16 07:00:01", "66.249.79.84", "2883");
INSERT INTO `wp_gf_form_view` VALUES("5176", "1", "2014-11-16 07:40:00", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("5177", "6", "2014-11-16 08:00:00", "66.249.79.84", "1598");
INSERT INTO `wp_gf_form_view` VALUES("5178", "3", "2014-11-16 08:00:01", "66.249.79.84", "3249");
INSERT INTO `wp_gf_form_view` VALUES("5179", "1", "2014-11-16 08:09:50", "192.241.144.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("5180", "2", "2014-11-16 08:09:55", "192.241.144.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("5181", "6", "2014-11-16 09:00:01", "66.249.79.92", "1672");
INSERT INTO `wp_gf_form_view` VALUES("5182", "3", "2014-11-16 09:00:01", "66.249.79.92", "3380");
INSERT INTO `wp_gf_form_view` VALUES("5183", "6", "2014-11-16 10:00:00", "66.249.79.76", "1386");
INSERT INTO `wp_gf_form_view` VALUES("5184", "3", "2014-11-16 10:00:00", "66.249.79.76", "2786");
INSERT INTO `wp_gf_form_view` VALUES("5185", "6", "2014-11-16 11:00:02", "66.249.79.92", "1264");
INSERT INTO `wp_gf_form_view` VALUES("5186", "3", "2014-11-16 11:00:02", "66.249.79.92", "2542");
INSERT INTO `wp_gf_form_view` VALUES("5187", "6", "2014-11-16 12:00:02", "66.249.79.76", "1332");
INSERT INTO `wp_gf_form_view` VALUES("5188", "3", "2014-11-16 12:00:03", "66.249.79.76", "2686");
INSERT INTO `wp_gf_form_view` VALUES("5189", "6", "2014-11-16 13:01:47", "66.249.79.84", "46");
INSERT INTO `wp_gf_form_view` VALUES("5190", "3", "2014-11-16 13:01:47", "66.249.79.84", "96");
INSERT INTO `wp_gf_form_view` VALUES("5191", "3", "2014-11-16 14:01:02", "72.46.156.99", "1460");
INSERT INTO `wp_gf_form_view` VALUES("5192", "6", "2014-11-16 14:01:03", "72.46.156.99", "716");
INSERT INTO `wp_gf_form_view` VALUES("5193", "6", "2014-11-16 15:00:56", "66.249.79.92", "744");
INSERT INTO `wp_gf_form_view` VALUES("5194", "3", "2014-11-16 15:00:56", "66.249.79.92", "1515");
INSERT INTO `wp_gf_form_view` VALUES("5195", "6", "2014-11-16 16:00:02", "66.249.79.92", "850");
INSERT INTO `wp_gf_form_view` VALUES("5196", "3", "2014-11-16 16:00:02", "66.249.79.92", "1712");
INSERT INTO `wp_gf_form_view` VALUES("5197", "6", "2014-11-16 17:00:05", "66.249.79.92", "1096");
INSERT INTO `wp_gf_form_view` VALUES("5198", "3", "2014-11-16 17:00:05", "66.249.79.92", "2234");
INSERT INTO `wp_gf_form_view` VALUES("5199", "6", "2014-11-16 18:00:03", "66.249.79.84", "1208");
INSERT INTO `wp_gf_form_view` VALUES("5200", "3", "2014-11-16 18:00:03", "66.249.79.84", "2473");
INSERT INTO `wp_gf_form_view` VALUES("5201", "1", "2014-11-16 18:56:16", "192.99.141.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("5202", "6", "2014-11-16 19:00:02", "66.249.79.92", "1452");
INSERT INTO `wp_gf_form_view` VALUES("5203", "3", "2014-11-16 19:00:02", "66.249.79.92", "2960");
INSERT INTO `wp_gf_form_view` VALUES("5204", "3", "2014-11-16 20:00:00", "66.249.79.84", "2386");
INSERT INTO `wp_gf_form_view` VALUES("5205", "6", "2014-11-16 20:00:04", "66.249.79.92", "1172");
INSERT INTO `wp_gf_form_view` VALUES("5206", "6", "2014-11-16 21:00:04", "66.249.79.84", "1344");
INSERT INTO `wp_gf_form_view` VALUES("5207", "3", "2014-11-16 21:00:05", "66.249.79.84", "2726");
INSERT INTO `wp_gf_form_view` VALUES("5208", "6", "2014-11-16 22:00:03", "66.249.79.92", "1236");
INSERT INTO `wp_gf_form_view` VALUES("5209", "3", "2014-11-16 22:00:03", "66.249.79.92", "2522");
INSERT INTO `wp_gf_form_view` VALUES("5210", "6", "2014-11-16 23:00:00", "66.249.79.84", "1220");
INSERT INTO `wp_gf_form_view` VALUES("5211", "3", "2014-11-16 23:00:00", "66.249.79.84", "2485");
INSERT INTO `wp_gf_form_view` VALUES("5212", "6", "2014-11-17 00:00:03", "66.249.79.76", "546");
INSERT INTO `wp_gf_form_view` VALUES("5213", "3", "2014-11-17 00:00:03", "66.249.79.76", "1103");
INSERT INTO `wp_gf_form_view` VALUES("5214", "3", "2014-11-17 01:00:00", "66.249.79.76", "810");
INSERT INTO `wp_gf_form_view` VALUES("5215", "6", "2014-11-17 01:03:54", "66.249.79.76", "392");
INSERT INTO `wp_gf_form_view` VALUES("5216", "1", "2014-11-17 01:32:32", "158.85.89.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("5217", "6", "2014-11-17 02:00:02", "66.249.79.76", "824");
INSERT INTO `wp_gf_form_view` VALUES("5218", "3", "2014-11-17 02:00:02", "66.249.79.76", "1698");
INSERT INTO `wp_gf_form_view` VALUES("5219", "3", "2014-11-17 03:00:00", "66.249.79.84", "1183");
INSERT INTO `wp_gf_form_view` VALUES("5220", "6", "2014-11-17 03:00:07", "66.249.79.84", "588");
INSERT INTO `wp_gf_form_view` VALUES("5221", "6", "2014-11-17 04:05:52", "217.69.133.69", "860");
INSERT INTO `wp_gf_form_view` VALUES("5222", "3", "2014-11-17 04:05:52", "217.69.133.69", "1750");
INSERT INTO `wp_gf_form_view` VALUES("5223", "3", "2014-11-17 05:00:00", "66.249.79.84", "3130");
INSERT INTO `wp_gf_form_view` VALUES("5224", "6", "2014-11-17 05:00:10", "66.249.79.84", "1542");
INSERT INTO `wp_gf_form_view` VALUES("5225", "1", "2014-11-17 05:54:37", "158.85.89.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("5226", "6", "2014-11-17 06:00:00", "66.249.79.92", "1490");
INSERT INTO `wp_gf_form_view` VALUES("5227", "3", "2014-11-17 06:00:01", "66.249.79.92", "3005");
INSERT INTO `wp_gf_form_view` VALUES("5228", "6", "2014-11-17 07:00:03", "66.249.79.84", "1598");
INSERT INTO `wp_gf_form_view` VALUES("5229", "3", "2014-11-17 07:00:03", "66.249.79.84", "3228");
INSERT INTO `wp_gf_form_view` VALUES("5230", "6", "2014-11-17 08:00:02", "66.249.79.76", "1606");
INSERT INTO `wp_gf_form_view` VALUES("5231", "3", "2014-11-17 08:00:02", "66.249.79.76", "3292");
INSERT INTO `wp_gf_form_view` VALUES("5232", "6", "2014-11-17 09:00:00", "66.249.79.84", "1552");
INSERT INTO `wp_gf_form_view` VALUES("5233", "3", "2014-11-17 09:00:00", "66.249.79.84", "3192");
INSERT INTO `wp_gf_form_view` VALUES("5234", "6", "2014-11-17 10:00:01", "66.249.79.76", "1438");
INSERT INTO `wp_gf_form_view` VALUES("5235", "3", "2014-11-17 10:00:02", "66.249.79.76", "2948");
INSERT INTO `wp_gf_form_view` VALUES("5236", "6", "2014-11-17 11:00:00", "66.249.79.76", "1188");
INSERT INTO `wp_gf_form_view` VALUES("5237", "3", "2014-11-17 11:00:00", "66.249.79.76", "2405");
INSERT INTO `wp_gf_form_view` VALUES("5238", "6", "2014-11-17 12:00:05", "66.249.79.76", "124");
INSERT INTO `wp_gf_form_view` VALUES("5239", "3", "2014-11-17 12:00:05", "66.249.79.76", "255");
INSERT INTO `wp_gf_form_view` VALUES("5240", "6", "2014-11-17 13:00:35", "66.249.79.92", "76");
INSERT INTO `wp_gf_form_view` VALUES("5241", "3", "2014-11-17 13:00:35", "66.249.79.92", "152");
INSERT INTO `wp_gf_form_view` VALUES("5242", "6", "2014-11-17 14:00:51", "66.249.79.92", "136");
INSERT INTO `wp_gf_form_view` VALUES("5243", "3", "2014-11-17 14:00:51", "66.249.79.92", "285");
INSERT INTO `wp_gf_form_view` VALUES("5244", "6", "2014-11-17 15:00:00", "66.249.79.92", "1160");
INSERT INTO `wp_gf_form_view` VALUES("5245", "3", "2014-11-17 15:00:00", "66.249.79.92", "2372");
INSERT INTO `wp_gf_form_view` VALUES("5246", "6", "2014-11-17 16:00:06", "66.249.79.92", "1315");
INSERT INTO `wp_gf_form_view` VALUES("5247", "3", "2014-11-17 16:00:07", "66.249.79.92", "2669");
INSERT INTO `wp_gf_form_view` VALUES("5248", "3", "2014-11-17 17:00:00", "66.249.79.76", "2744");
INSERT INTO `wp_gf_form_view` VALUES("5249", "6", "2014-11-17 17:00:04", "66.249.79.76", "1347");
INSERT INTO `wp_gf_form_view` VALUES("5250", "1", "2014-11-17 17:21:13", "63.142.244.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("5251", "2", "2014-11-17 17:21:21", "63.142.244.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("5252", "6", "2014-11-17 18:00:02", "66.249.79.76", "2166");
INSERT INTO `wp_gf_form_view` VALUES("5253", "3", "2014-11-17 18:00:02", "66.249.79.76", "4392");
INSERT INTO `wp_gf_form_view` VALUES("5254", "1", "2014-11-17 18:26:33", "24.108.148.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("5255", "6", "2014-11-17 19:00:02", "107.170.42.27", "2104");
INSERT INTO `wp_gf_form_view` VALUES("5256", "3", "2014-11-17 19:00:03", "107.170.42.27", "4374");
INSERT INTO `wp_gf_form_view` VALUES("5257", "6", "2014-11-17 20:00:03", "66.249.79.92", "960");
INSERT INTO `wp_gf_form_view` VALUES("5258", "3", "2014-11-17 20:00:03", "66.249.79.92", "1948");
INSERT INTO `wp_gf_form_view` VALUES("5259", "6", "2014-11-17 21:00:01", "66.249.79.92", "1282");
INSERT INTO `wp_gf_form_view` VALUES("5260", "3", "2014-11-17 21:00:01", "66.249.79.92", "2596");
INSERT INTO `wp_gf_form_view` VALUES("5261", "6", "2014-11-17 22:00:00", "66.249.79.84", "1294");
INSERT INTO `wp_gf_form_view` VALUES("5262", "3", "2014-11-17 22:00:00", "66.249.79.84", "2626");
INSERT INTO `wp_gf_form_view` VALUES("5263", "6", "2014-11-17 23:00:04", "66.249.79.76", "1260");
INSERT INTO `wp_gf_form_view` VALUES("5264", "3", "2014-11-17 23:00:04", "66.249.79.76", "2577");
INSERT INTO `wp_gf_form_view` VALUES("5265", "6", "2014-11-18 00:00:00", "66.249.79.92", "451");
INSERT INTO `wp_gf_form_view` VALUES("5266", "3", "2014-11-18 00:00:00", "66.249.79.92", "933");
INSERT INTO `wp_gf_form_view` VALUES("5267", "2", "2014-11-18 00:49:26", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("5268", "6", "2014-11-18 01:05:26", "66.249.79.76", "45");
INSERT INTO `wp_gf_form_view` VALUES("5269", "3", "2014-11-18 01:05:26", "66.249.79.76", "99");
INSERT INTO `wp_gf_form_view` VALUES("5270", "1", "2014-11-18 01:12:22", "212.187.107.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("5271", "2", "2014-11-18 01:12:28", "212.187.107.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("5272", "6", "2014-11-18 02:13:43", "188.165.15.223", "34");
INSERT INTO `wp_gf_form_view` VALUES("5273", "3", "2014-11-18 02:13:43", "188.165.15.223", "68");
INSERT INTO `wp_gf_form_view` VALUES("5274", "6", "2014-11-18 03:01:16", "66.249.79.84", "702");
INSERT INTO `wp_gf_form_view` VALUES("5275", "3", "2014-11-18 03:01:16", "66.249.79.84", "1408");
INSERT INTO `wp_gf_form_view` VALUES("5276", "6", "2014-11-18 04:00:03", "66.249.79.92", "1140");
INSERT INTO `wp_gf_form_view` VALUES("5277", "3", "2014-11-18 04:00:04", "66.249.79.92", "2328");
INSERT INTO `wp_gf_form_view` VALUES("5278", "6", "2014-11-18 05:00:10", "66.249.79.76", "1368");
INSERT INTO `wp_gf_form_view` VALUES("5279", "3", "2014-11-18 05:00:10", "66.249.79.76", "2776");
INSERT INTO `wp_gf_form_view` VALUES("5280", "6", "2014-11-18 06:00:00", "66.249.79.84", "1462");
INSERT INTO `wp_gf_form_view` VALUES("5281", "3", "2014-11-18 06:00:00", "66.249.79.84", "2953");
INSERT INTO `wp_gf_form_view` VALUES("5282", "6", "2014-11-18 07:00:01", "66.249.79.76", "1542");
INSERT INTO `wp_gf_form_view` VALUES("5283", "3", "2014-11-18 07:00:02", "66.249.79.76", "3129");
INSERT INTO `wp_gf_form_view` VALUES("5284", "1", "2014-11-18 07:40:55", "158.85.89.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("5285", "6", "2014-11-18 08:00:02", "66.249.79.92", "1264");
INSERT INTO `wp_gf_form_view` VALUES("5286", "3", "2014-11-18 08:00:02", "66.249.79.92", "2538");
INSERT INTO `wp_gf_form_view` VALUES("5287", "6", "2014-11-18 09:00:03", "66.249.79.76", "1496");
INSERT INTO `wp_gf_form_view` VALUES("5288", "3", "2014-11-18 09:00:03", "66.249.79.76", "3052");
INSERT INTO `wp_gf_form_view` VALUES("5289", "1", "2014-11-18 09:04:28", "183.222.251.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("5290", "6", "2014-11-18 10:00:00", "66.249.79.92", "1446");
INSERT INTO `wp_gf_form_view` VALUES("5291", "3", "2014-11-18 10:00:01", "66.249.79.92", "2924");
INSERT INTO `wp_gf_form_view` VALUES("5292", "3", "2014-11-18 11:00:00", "66.249.79.76", "2481");
INSERT INTO `wp_gf_form_view` VALUES("5293", "6", "2014-11-18 11:00:06", "66.249.79.84", "1215");
INSERT INTO `wp_gf_form_view` VALUES("5294", "1", "2014-11-18 11:39:34", "5.39.223.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("5295", "2", "2014-11-18 11:39:56", "5.39.223.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("5296", "6", "2014-11-18 12:10:25", "100.43.85.24", "14");
INSERT INTO `wp_gf_form_view` VALUES("5297", "3", "2014-11-18 12:10:25", "100.43.85.24", "28");
INSERT INTO `wp_gf_form_view` VALUES("5298", "6", "2014-11-18 13:03:15", "66.249.79.84", "52");
INSERT INTO `wp_gf_form_view` VALUES("5299", "3", "2014-11-18 13:03:16", "66.249.79.84", "102");
INSERT INTO `wp_gf_form_view` VALUES("5300", "6", "2014-11-18 14:00:12", "66.249.79.92", "158");
INSERT INTO `wp_gf_form_view` VALUES("5301", "3", "2014-11-18 14:00:12", "66.249.79.92", "322");
INSERT INTO `wp_gf_form_view` VALUES("5302", "6", "2014-11-18 15:00:15", "66.249.79.92", "472");
INSERT INTO `wp_gf_form_view` VALUES("5303", "3", "2014-11-18 15:00:15", "66.249.79.92", "972");
INSERT INTO `wp_gf_form_view` VALUES("5304", "6", "2014-11-18 16:00:07", "66.249.79.84", "722");
INSERT INTO `wp_gf_form_view` VALUES("5305", "3", "2014-11-18 16:00:07", "66.249.79.84", "1450");
INSERT INTO `wp_gf_form_view` VALUES("5306", "6", "2014-11-18 17:00:05", "66.249.79.84", "1268");
INSERT INTO `wp_gf_form_view` VALUES("5307", "3", "2014-11-18 17:00:05", "66.249.79.84", "2592");
INSERT INTO `wp_gf_form_view` VALUES("5308", "6", "2014-11-18 18:00:33", "66.249.79.84", "1484");
INSERT INTO `wp_gf_form_view` VALUES("5309", "3", "2014-11-18 18:00:34", "66.249.79.84", "3032");
INSERT INTO `wp_gf_form_view` VALUES("5310", "6", "2014-11-18 19:00:28", "66.249.79.92", "1560");
INSERT INTO `wp_gf_form_view` VALUES("5311", "3", "2014-11-18 19:00:28", "66.249.79.92", "3160");
INSERT INTO `wp_gf_form_view` VALUES("5312", "3", "2014-11-18 20:00:00", "66.249.79.92", "3092");
INSERT INTO `wp_gf_form_view` VALUES("5313", "6", "2014-11-18 20:00:01", "66.249.79.92", "1512");
INSERT INTO `wp_gf_form_view` VALUES("5314", "6", "2014-11-18 21:00:03", "66.249.79.92", "1430");
INSERT INTO `wp_gf_form_view` VALUES("5315", "3", "2014-11-18 21:00:03", "66.249.79.92", "2923");
INSERT INTO `wp_gf_form_view` VALUES("5316", "1", "2014-11-18 21:02:44", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("5317", "2", "2014-11-18 21:05:26", "208.115.111.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("5318", "6", "2014-11-18 22:00:00", "66.249.79.84", "1180");
INSERT INTO `wp_gf_form_view` VALUES("5319", "3", "2014-11-18 22:00:00", "66.249.79.84", "2390");
INSERT INTO `wp_gf_form_view` VALUES("5320", "6", "2014-11-18 23:00:51", "66.249.79.84", "378");
INSERT INTO `wp_gf_form_view` VALUES("5321", "3", "2014-11-18 23:00:52", "66.249.79.84", "778");
INSERT INTO `wp_gf_form_view` VALUES("5322", "6", "2014-11-19 00:00:01", "66.249.79.84", "898");
INSERT INTO `wp_gf_form_view` VALUES("5323", "3", "2014-11-19 00:00:01", "66.249.79.84", "1846");
INSERT INTO `wp_gf_form_view` VALUES("5324", "6", "2014-11-19 01:00:17", "66.249.79.84", "174");
INSERT INTO `wp_gf_form_view` VALUES("5325", "3", "2014-11-19 01:00:17", "66.249.79.84", "362");
INSERT INTO `wp_gf_form_view` VALUES("5326", "1", "2014-11-19 01:08:02", "158.85.89.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("5327", "6", "2014-11-19 02:07:20", "66.249.79.84", "510");
INSERT INTO `wp_gf_form_view` VALUES("5328", "3", "2014-11-19 02:07:21", "66.249.79.84", "1036");
INSERT INTO `wp_gf_form_view` VALUES("5329", "6", "2014-11-19 03:01:42", "66.249.79.92", "1132");
INSERT INTO `wp_gf_form_view` VALUES("5330", "3", "2014-11-19 03:01:42", "66.249.79.92", "2300");
INSERT INTO `wp_gf_form_view` VALUES("5331", "6", "2014-11-19 04:00:07", "66.249.79.92", "1446");
INSERT INTO `wp_gf_form_view` VALUES("5332", "3", "2014-11-19 04:00:07", "66.249.79.92", "2951");
INSERT INTO `wp_gf_form_view` VALUES("5333", "6", "2014-11-19 05:00:00", "66.249.79.92", "1390");
INSERT INTO `wp_gf_form_view` VALUES("5334", "3", "2014-11-19 05:00:00", "66.249.79.92", "2832");
INSERT INTO `wp_gf_form_view` VALUES("5335", "6", "2014-11-19 06:00:00", "66.249.79.84", "1034");
INSERT INTO `wp_gf_form_view` VALUES("5336", "3", "2014-11-19 06:00:00", "66.249.79.84", "2105");
INSERT INTO `wp_gf_form_view` VALUES("5337", "1", "2014-11-19 06:13:16", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("5338", "6", "2014-11-19 07:01:08", "66.249.79.76", "1422");
INSERT INTO `wp_gf_form_view` VALUES("5339", "3", "2014-11-19 07:01:09", "66.249.79.76", "2882");
INSERT INTO `wp_gf_form_view` VALUES("5340", "6", "2014-11-19 08:00:06", "66.249.79.76", "1812");
INSERT INTO `wp_gf_form_view` VALUES("5341", "3", "2014-11-19 08:00:06", "66.249.79.76", "3710");
INSERT INTO `wp_gf_form_view` VALUES("5342", "6", "2014-11-19 09:00:37", "66.249.79.76", "1058");
INSERT INTO `wp_gf_form_view` VALUES("5343", "3", "2014-11-19 09:00:37", "66.249.79.76", "2210");
INSERT INTO `wp_gf_form_view` VALUES("5344", "1", "2014-11-19 09:16:53", "54.171.66.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("5345", "2", "2014-11-19 09:17:30", "54.171.66.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("5346", "6", "2014-11-19 10:00:02", "66.249.79.84", "1865");
INSERT INTO `wp_gf_form_view` VALUES("5347", "3", "2014-11-19 10:00:02", "66.249.79.84", "3773");
INSERT INTO `wp_gf_form_view` VALUES("5348", "6", "2014-11-19 11:00:02", "66.249.79.84", "1399");
INSERT INTO `wp_gf_form_view` VALUES("5349", "3", "2014-11-19 11:00:02", "66.249.79.84", "2852");
INSERT INTO `wp_gf_form_view` VALUES("5350", "1", "2014-11-19 11:12:59", "46.37.69.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("5351", "2", "2014-11-19 11:13:13", "46.37.69.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("5352", "6", "2014-11-19 12:00:00", "66.249.79.76", "1604");
INSERT INTO `wp_gf_form_view` VALUES("5353", "3", "2014-11-19 12:00:00", "66.249.79.76", "3234");
INSERT INTO `wp_gf_form_view` VALUES("5354", "1", "2014-11-19 12:01:54", "158.85.89.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("5355", "3", "2014-11-19 13:00:00", "66.249.79.76", "702");
INSERT INTO `wp_gf_form_view` VALUES("5356", "6", "2014-11-19 13:00:01", "66.249.79.84", "340");
INSERT INTO `wp_gf_form_view` VALUES("5357", "1", "2014-11-19 13:50:46", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("5358", "6", "2014-11-19 14:00:00", "66.249.79.92", "510");
INSERT INTO `wp_gf_form_view` VALUES("5359", "3", "2014-11-19 14:00:00", "66.249.79.92", "1014");
INSERT INTO `wp_gf_form_view` VALUES("5360", "6", "2014-11-19 15:03:06", "192.99.141.252", "506");
INSERT INTO `wp_gf_form_view` VALUES("5361", "3", "2014-11-19 15:03:07", "192.99.141.252", "1013");
INSERT INTO `wp_gf_form_view` VALUES("5362", "1", "2014-11-19 15:50:57", "158.85.89.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("5363", "6", "2014-11-19 16:00:08", "66.249.79.76", "1622");
INSERT INTO `wp_gf_form_view` VALUES("5364", "3", "2014-11-19 16:00:09", "66.249.79.76", "3288");
INSERT INTO `wp_gf_form_view` VALUES("5365", "3", "2014-11-19 17:00:00", "66.249.79.92", "3003");
INSERT INTO `wp_gf_form_view` VALUES("5366", "6", "2014-11-19 17:00:02", "66.249.79.76", "1474");
INSERT INTO `wp_gf_form_view` VALUES("5367", "6", "2014-11-19 18:00:01", "66.249.79.84", "1470");
INSERT INTO `wp_gf_form_view` VALUES("5368", "3", "2014-11-19 18:00:01", "66.249.79.84", "3034");
INSERT INTO `wp_gf_form_view` VALUES("5369", "6", "2014-11-19 19:00:02", "66.249.79.84", "1388");
INSERT INTO `wp_gf_form_view` VALUES("5370", "3", "2014-11-19 19:00:02", "66.249.79.84", "2814");
INSERT INTO `wp_gf_form_view` VALUES("5371", "6", "2014-11-19 20:01:11", "66.249.79.92", "1510");
INSERT INTO `wp_gf_form_view` VALUES("5372", "3", "2014-11-19 20:01:11", "66.249.79.92", "3085");
INSERT INTO `wp_gf_form_view` VALUES("5373", "1", "2014-11-19 20:45:20", "158.85.94.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("5374", "6", "2014-11-19 21:00:04", "66.249.79.76", "1576");
INSERT INTO `wp_gf_form_view` VALUES("5375", "3", "2014-11-19 21:00:05", "66.249.79.76", "3272");
INSERT INTO `wp_gf_form_view` VALUES("5376", "6", "2014-11-19 22:00:09", "66.249.79.76", "1522");
INSERT INTO `wp_gf_form_view` VALUES("5377", "3", "2014-11-19 22:00:10", "66.249.79.76", "3116");
INSERT INTO `wp_gf_form_view` VALUES("5378", "6", "2014-11-19 23:00:00", "66.249.79.76", "1034");
INSERT INTO `wp_gf_form_view` VALUES("5379", "3", "2014-11-19 23:00:00", "66.249.79.76", "2096");
INSERT INTO `wp_gf_form_view` VALUES("5380", "6", "2014-11-20 00:00:01", "66.249.79.92", "2132");
INSERT INTO `wp_gf_form_view` VALUES("5381", "3", "2014-11-20 00:00:02", "66.249.79.92", "4313");
INSERT INTO `wp_gf_form_view` VALUES("5382", "6", "2014-11-20 01:00:01", "66.249.79.92", "920");
INSERT INTO `wp_gf_form_view` VALUES("5383", "3", "2014-11-20 01:00:02", "66.249.79.92", "1872");
INSERT INTO `wp_gf_form_view` VALUES("5384", "6", "2014-11-20 02:00:03", "66.249.79.84", "668");
INSERT INTO `wp_gf_form_view` VALUES("5385", "3", "2014-11-20 02:00:03", "66.249.79.84", "1356");
INSERT INTO `wp_gf_form_view` VALUES("5386", "6", "2014-11-20 03:02:06", "66.249.79.84", "1280");
INSERT INTO `wp_gf_form_view` VALUES("5387", "3", "2014-11-20 03:02:06", "66.249.79.84", "2606");
INSERT INTO `wp_gf_form_view` VALUES("5388", "6", "2014-11-20 04:00:01", "66.249.79.76", "1082");
INSERT INTO `wp_gf_form_view` VALUES("5389", "3", "2014-11-20 04:00:02", "66.249.79.76", "2208");
INSERT INTO `wp_gf_form_view` VALUES("5390", "6", "2014-11-20 05:00:17", "66.249.79.92", "944");
INSERT INTO `wp_gf_form_view` VALUES("5391", "3", "2014-11-20 05:00:18", "66.249.79.92", "1924");
INSERT INTO `wp_gf_form_view` VALUES("5392", "6", "2014-11-20 06:03:08", "66.249.79.92", "740");
INSERT INTO `wp_gf_form_view` VALUES("5393", "3", "2014-11-20 06:03:08", "66.249.79.92", "1510");
INSERT INTO `wp_gf_form_view` VALUES("5394", "3", "2014-11-20 07:00:23", "66.249.79.76", "2157");
INSERT INTO `wp_gf_form_view` VALUES("5395", "6", "2014-11-20 07:00:24", "66.249.79.76", "1066");
INSERT INTO `wp_gf_form_view` VALUES("5396", "6", "2014-11-20 08:00:01", "66.249.79.92", "850");
INSERT INTO `wp_gf_form_view` VALUES("5397", "3", "2014-11-20 08:00:01", "66.249.79.92", "1744");
INSERT INTO `wp_gf_form_view` VALUES("5398", "6", "2014-11-20 09:09:28", "66.249.79.92", "474");
INSERT INTO `wp_gf_form_view` VALUES("5399", "3", "2014-11-20 09:09:28", "66.249.79.92", "966");
INSERT INTO `wp_gf_form_view` VALUES("5400", "6", "2014-11-20 10:00:06", "66.249.79.84", "960");
INSERT INTO `wp_gf_form_view` VALUES("5401", "3", "2014-11-20 10:00:06", "66.249.79.84", "1938");
INSERT INTO `wp_gf_form_view` VALUES("5402", "6", "2014-11-20 11:00:13", "66.249.79.92", "1947");
INSERT INTO `wp_gf_form_view` VALUES("5403", "3", "2014-11-20 11:00:14", "66.249.79.92", "3954");
INSERT INTO `wp_gf_form_view` VALUES("5404", "1", "2014-11-20 11:24:01", "54.77.23.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("5405", "2", "2014-11-20 11:24:40", "54.77.23.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("5406", "6", "2014-11-20 12:00:00", "66.249.79.76", "1990");
INSERT INTO `wp_gf_form_view` VALUES("5407", "3", "2014-11-20 12:00:00", "66.249.79.76", "4065");
INSERT INTO `wp_gf_form_view` VALUES("5408", "3", "2014-11-20 13:00:00", "66.249.79.92", "2660");
INSERT INTO `wp_gf_form_view` VALUES("5409", "6", "2014-11-20 13:00:01", "66.249.79.92", "1300");
INSERT INTO `wp_gf_form_view` VALUES("5410", "6", "2014-11-20 14:01:28", "66.249.79.84", "76");
INSERT INTO `wp_gf_form_view` VALUES("5411", "3", "2014-11-20 14:01:29", "66.249.79.84", "160");
INSERT INTO `wp_gf_form_view` VALUES("5412", "6", "2014-11-20 15:02:08", "66.249.67.92", "318");
INSERT INTO `wp_gf_form_view` VALUES("5413", "3", "2014-11-20 15:02:08", "66.249.67.92", "644");
INSERT INTO `wp_gf_form_view` VALUES("5414", "3", "2014-11-20 16:00:00", "66.249.79.92", "1768");
INSERT INTO `wp_gf_form_view` VALUES("5415", "6", "2014-11-20 16:00:19", "66.249.79.92", "868");
INSERT INTO `wp_gf_form_view` VALUES("5416", "6", "2014-11-20 17:03:12", "66.249.79.76", "740");
INSERT INTO `wp_gf_form_view` VALUES("5417", "3", "2014-11-20 17:03:12", "66.249.79.76", "1522");
INSERT INTO `wp_gf_form_view` VALUES("5418", "6", "2014-11-20 18:01:03", "66.249.79.84", "1049");
INSERT INTO `wp_gf_form_view` VALUES("5419", "3", "2014-11-20 18:01:04", "66.249.79.84", "2143");
INSERT INTO `wp_gf_form_view` VALUES("5420", "6", "2014-11-20 19:01:24", "66.249.79.92", "862");
INSERT INTO `wp_gf_form_view` VALUES("5421", "3", "2014-11-20 19:01:24", "66.249.79.92", "1784");
INSERT INTO `wp_gf_form_view` VALUES("5422", "6", "2014-11-20 20:00:00", "66.249.79.92", "1394");
INSERT INTO `wp_gf_form_view` VALUES("5423", "3", "2014-11-20 20:00:00", "66.249.79.92", "2844");
INSERT INTO `wp_gf_form_view` VALUES("5424", "3", "2014-11-20 21:00:00", "66.249.79.84", "1658");
INSERT INTO `wp_gf_form_view` VALUES("5425", "6", "2014-11-20 21:03:12", "66.249.79.84", "820");
INSERT INTO `wp_gf_form_view` VALUES("5426", "6", "2014-11-20 22:02:53", "66.249.79.76", "1740");
INSERT INTO `wp_gf_form_view` VALUES("5427", "3", "2014-11-20 22:02:53", "66.249.79.76", "3542");
INSERT INTO `wp_gf_form_view` VALUES("5428", "6", "2014-11-20 23:00:12", "66.249.79.76", "1875");
INSERT INTO `wp_gf_form_view` VALUES("5429", "3", "2014-11-20 23:00:13", "66.249.79.76", "3818");
INSERT INTO `wp_gf_form_view` VALUES("5430", "6", "2014-11-21 00:00:00", "66.249.79.92", "1141");
INSERT INTO `wp_gf_form_view` VALUES("5431", "3", "2014-11-21 00:00:00", "66.249.79.92", "2335");
INSERT INTO `wp_gf_form_view` VALUES("5432", "6", "2014-11-21 01:01:12", "66.249.79.76", "524");
INSERT INTO `wp_gf_form_view` VALUES("5433", "3", "2014-11-21 01:01:12", "66.249.79.76", "1072");
INSERT INTO `wp_gf_form_view` VALUES("5434", "2", "2014-11-21 01:02:11", "192.99.141.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("5435", "6", "2014-11-21 02:03:06", "66.249.79.84", "278");
INSERT INTO `wp_gf_form_view` VALUES("5436", "3", "2014-11-21 02:03:06", "66.249.79.84", "568");
INSERT INTO `wp_gf_form_view` VALUES("5437", "6", "2014-11-21 03:00:02", "66.249.79.76", "1300");
INSERT INTO `wp_gf_form_view` VALUES("5438", "3", "2014-11-21 03:00:02", "66.249.79.76", "2626");
INSERT INTO `wp_gf_form_view` VALUES("5439", "6", "2014-11-21 04:03:01", "66.249.79.84", "1514");
INSERT INTO `wp_gf_form_view` VALUES("5440", "3", "2014-11-21 04:03:02", "66.249.79.84", "3092");
INSERT INTO `wp_gf_form_view` VALUES("5441", "1", "2014-11-21 04:52:18", "112.5.16.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("5442", "3", "2014-11-21 05:00:00", "66.249.79.92", "5142");
INSERT INTO `wp_gf_form_view` VALUES("5443", "6", "2014-11-21 05:00:02", "66.249.79.92", "2356");
INSERT INTO `wp_gf_form_view` VALUES("5444", "2", "2014-11-21 05:22:51", "5.9.112.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("5445", "1", "2014-11-21 05:25:08", "5.9.112.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("5446", "6", "2014-11-21 06:00:00", "5.9.112.68", "1056");
INSERT INTO `wp_gf_form_view` VALUES("5447", "3", "2014-11-21 06:00:00", "5.9.112.68", "2193");
INSERT INTO `wp_gf_form_view` VALUES("5448", "1", "2014-11-21 06:56:45", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("5449", "2", "2014-11-21 06:56:53", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("5450", "6", "2014-11-21 07:00:24", "66.249.79.92", "834");
INSERT INTO `wp_gf_form_view` VALUES("5451", "3", "2014-11-21 07:00:24", "66.249.79.92", "1678");
INSERT INTO `wp_gf_form_view` VALUES("5452", "3", "2014-11-21 08:00:00", "66.249.79.92", "3466");
INSERT INTO `wp_gf_form_view` VALUES("5453", "6", "2014-11-21 08:00:01", "66.249.79.84", "1700");
INSERT INTO `wp_gf_form_view` VALUES("5454", "6", "2014-11-21 09:00:04", "66.249.79.92", "1070");
INSERT INTO `wp_gf_form_view` VALUES("5455", "3", "2014-11-21 09:00:04", "66.249.79.92", "2180");
INSERT INTO `wp_gf_form_view` VALUES("5456", "6", "2014-11-21 10:00:17", "66.249.79.92", "1870");
INSERT INTO `wp_gf_form_view` VALUES("5457", "3", "2014-11-21 10:00:17", "66.249.79.92", "3798");
INSERT INTO `wp_gf_form_view` VALUES("5458", "6", "2014-11-21 11:00:53", "66.249.79.92", "1420");
INSERT INTO `wp_gf_form_view` VALUES("5459", "3", "2014-11-21 11:00:55", "66.249.79.92", "2890");
INSERT INTO `wp_gf_form_view` VALUES("5460", "6", "2014-11-21 12:00:42", "66.249.79.76", "950");
INSERT INTO `wp_gf_form_view` VALUES("5461", "3", "2014-11-21 12:00:42", "66.249.79.76", "1932");
INSERT INTO `wp_gf_form_view` VALUES("5462", "6", "2014-11-21 13:00:01", "66.249.79.92", "506");
INSERT INTO `wp_gf_form_view` VALUES("5463", "3", "2014-11-21 13:00:01", "66.249.79.92", "1041");
INSERT INTO `wp_gf_form_view` VALUES("5464", "1", "2014-11-21 13:36:04", "5.39.37.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("5465", "6", "2014-11-21 14:00:31", "66.249.79.92", "482");
INSERT INTO `wp_gf_form_view` VALUES("5466", "3", "2014-11-21 14:00:31", "66.249.79.92", "970");
INSERT INTO `wp_gf_form_view` VALUES("5467", "6", "2014-11-21 15:00:05", "66.249.79.76", "739");
INSERT INTO `wp_gf_form_view` VALUES("5468", "3", "2014-11-21 15:00:05", "66.249.79.76", "1504");
INSERT INTO `wp_gf_form_view` VALUES("5469", "6", "2014-11-21 16:02:32", "66.249.79.76", "706");
INSERT INTO `wp_gf_form_view` VALUES("5470", "3", "2014-11-21 16:02:36", "66.249.79.76", "1464");
INSERT INTO `wp_gf_form_view` VALUES("5471", "1", "2014-11-21 16:13:17", "192.99.141.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("5472", "6", "2014-11-21 17:00:24", "54.171.0.50", "801");
INSERT INTO `wp_gf_form_view` VALUES("5473", "3", "2014-11-21 17:00:24", "54.171.0.50", "1647");
INSERT INTO `wp_gf_form_view` VALUES("5474", "1", "2014-11-21 17:05:20", "54.171.0.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("5475", "2", "2014-11-21 17:05:59", "54.171.0.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("5476", "6", "2014-11-21 18:00:01", "66.249.79.92", "1656");
INSERT INTO `wp_gf_form_view` VALUES("5477", "3", "2014-11-21 18:00:01", "66.249.79.92", "3330");
INSERT INTO `wp_gf_form_view` VALUES("5478", "6", "2014-11-21 19:00:01", "66.249.79.92", "1858");
INSERT INTO `wp_gf_form_view` VALUES("5479", "3", "2014-11-21 19:00:02", "66.249.79.92", "3754");
INSERT INTO `wp_gf_form_view` VALUES("5480", "3", "2014-11-21 20:00:00", "66.249.79.84", "3060");
INSERT INTO `wp_gf_form_view` VALUES("5481", "6", "2014-11-21 20:00:01", "66.249.79.76", "1496");
INSERT INTO `wp_gf_form_view` VALUES("5482", "6", "2014-11-21 21:00:00", "66.249.79.92", "1838");
INSERT INTO `wp_gf_form_view` VALUES("5483", "3", "2014-11-21 21:00:00", "66.249.79.92", "3759");
INSERT INTO `wp_gf_form_view` VALUES("5484", "3", "2014-11-21 22:00:00", "66.249.79.84", "2874");
INSERT INTO `wp_gf_form_view` VALUES("5485", "6", "2014-11-21 22:00:03", "66.249.79.92", "1424");
INSERT INTO `wp_gf_form_view` VALUES("5486", "3", "2014-11-21 23:00:00", "66.249.79.76", "1651");
INSERT INTO `wp_gf_form_view` VALUES("5487", "6", "2014-11-21 23:00:01", "66.249.79.92", "808");
INSERT INTO `wp_gf_form_view` VALUES("5488", "6", "2014-11-22 00:00:00", "66.249.79.92", "1290");
INSERT INTO `wp_gf_form_view` VALUES("5489", "3", "2014-11-22 00:00:00", "66.249.79.92", "2642");
INSERT INTO `wp_gf_form_view` VALUES("5490", "6", "2014-11-22 01:00:00", "66.249.79.76", "786");
INSERT INTO `wp_gf_form_view` VALUES("5491", "3", "2014-11-22 01:00:00", "66.249.79.76", "1624");
INSERT INTO `wp_gf_form_view` VALUES("5492", "1", "2014-11-22 01:10:23", "117.174.208.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("5493", "6", "2014-11-22 02:00:20", "66.249.79.76", "1146");
INSERT INTO `wp_gf_form_view` VALUES("5494", "3", "2014-11-22 02:00:20", "66.249.79.76", "2320");
INSERT INTO `wp_gf_form_view` VALUES("5495", "6", "2014-11-22 03:00:00", "66.249.79.76", "1320");
INSERT INTO `wp_gf_form_view` VALUES("5496", "3", "2014-11-22 03:00:01", "66.249.79.76", "2679");
INSERT INTO `wp_gf_form_view` VALUES("5497", "3", "2014-11-22 04:00:00", "66.249.79.76", "1373");
INSERT INTO `wp_gf_form_view` VALUES("5498", "6", "2014-11-22 04:00:01", "66.249.79.76", "666");
INSERT INTO `wp_gf_form_view` VALUES("5499", "6", "2014-11-22 05:03:15", "66.249.79.76", "778");
INSERT INTO `wp_gf_form_view` VALUES("5500", "3", "2014-11-22 05:03:15", "66.249.79.76", "1588");
INSERT INTO `wp_gf_form_view` VALUES("5501", "6", "2014-11-22 06:02:31", "66.249.79.76", "910");
INSERT INTO `wp_gf_form_view` VALUES("5502", "3", "2014-11-22 06:02:31", "66.249.79.76", "1842");
INSERT INTO `wp_gf_form_view` VALUES("5503", "6", "2014-11-22 07:00:05", "66.249.79.92", "872");
INSERT INTO `wp_gf_form_view` VALUES("5504", "3", "2014-11-22 07:00:05", "66.249.79.92", "1764");
INSERT INTO `wp_gf_form_view` VALUES("5505", "3", "2014-11-22 08:00:00", "66.249.79.92", "2316");
INSERT INTO `wp_gf_form_view` VALUES("5506", "6", "2014-11-22 08:00:01", "66.249.79.76", "1140");
INSERT INTO `wp_gf_form_view` VALUES("5507", "6", "2014-11-22 09:00:00", "66.249.79.84", "1992");
INSERT INTO `wp_gf_form_view` VALUES("5508", "3", "2014-11-22 09:00:00", "66.249.79.84", "4047");
INSERT INTO `wp_gf_form_view` VALUES("5509", "3", "2014-11-22 10:00:00", "66.249.79.84", "2417");
INSERT INTO `wp_gf_form_view` VALUES("5510", "6", "2014-11-22 10:00:08", "66.249.79.84", "1194");
INSERT INTO `wp_gf_form_view` VALUES("5511", "6", "2014-11-22 11:00:01", "66.249.79.92", "1898");
INSERT INTO `wp_gf_form_view` VALUES("5512", "3", "2014-11-22 11:00:01", "66.249.79.92", "3856");
INSERT INTO `wp_gf_form_view` VALUES("5513", "6", "2014-11-22 12:00:19", "66.249.79.76", "1514");
INSERT INTO `wp_gf_form_view` VALUES("5514", "3", "2014-11-22 12:00:19", "66.249.79.76", "3060");
INSERT INTO `wp_gf_form_view` VALUES("5515", "6", "2014-11-22 13:02:37", "66.249.79.84", "528");
INSERT INTO `wp_gf_form_view` VALUES("5516", "3", "2014-11-22 13:02:37", "66.249.79.84", "1048");
INSERT INTO `wp_gf_form_view` VALUES("5517", "6", "2014-11-22 14:00:04", "66.249.79.76", "846");
INSERT INTO `wp_gf_form_view` VALUES("5518", "3", "2014-11-22 14:00:04", "66.249.79.76", "1706");
INSERT INTO `wp_gf_form_view` VALUES("5519", "6", "2014-11-22 15:01:10", "66.249.79.92", "1402");
INSERT INTO `wp_gf_form_view` VALUES("5520", "3", "2014-11-22 15:01:10", "66.249.79.92", "2812");
INSERT INTO `wp_gf_form_view` VALUES("5521", "6", "2014-11-22 16:00:05", "66.249.79.92", "1624");
INSERT INTO `wp_gf_form_view` VALUES("5522", "3", "2014-11-22 16:00:06", "66.249.79.92", "3306");
INSERT INTO `wp_gf_form_view` VALUES("5523", "1", "2014-11-22 16:33:19", "218.88.94.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("5524", "3", "2014-11-22 17:00:00", "66.249.79.76", "3755");
INSERT INTO `wp_gf_form_view` VALUES("5525", "6", "2014-11-22 17:00:03", "66.249.79.84", "1857");
INSERT INTO `wp_gf_form_view` VALUES("5526", "6", "2014-11-22 18:00:02", "66.249.79.92", "1696");
INSERT INTO `wp_gf_form_view` VALUES("5527", "3", "2014-11-22 18:00:02", "66.249.79.92", "3439");
INSERT INTO `wp_gf_form_view` VALUES("5528", "6", "2014-11-22 19:00:00", "66.249.79.84", "1763");
INSERT INTO `wp_gf_form_view` VALUES("5529", "3", "2014-11-22 19:00:00", "66.249.79.84", "3576");
INSERT INTO `wp_gf_form_view` VALUES("5530", "6", "2014-11-22 20:00:03", "66.249.79.76", "1770");
INSERT INTO `wp_gf_form_view` VALUES("5531", "3", "2014-11-22 20:00:03", "66.249.79.76", "3582");
INSERT INTO `wp_gf_form_view` VALUES("5532", "6", "2014-11-22 21:00:01", "66.249.79.76", "1246");
INSERT INTO `wp_gf_form_view` VALUES("5533", "3", "2014-11-22 21:00:01", "66.249.79.76", "2534");
INSERT INTO `wp_gf_form_view` VALUES("5534", "6", "2014-11-22 22:01:54", "66.249.79.92", "1786");
INSERT INTO `wp_gf_form_view` VALUES("5535", "3", "2014-11-22 22:01:54", "66.249.79.92", "3594");
INSERT INTO `wp_gf_form_view` VALUES("5536", "1", "2014-11-22 22:12:10", "75.157.175.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("5537", "6", "2014-11-22 23:01:39", "66.249.79.76", "316");
INSERT INTO `wp_gf_form_view` VALUES("5538", "3", "2014-11-22 23:01:40", "66.249.79.76", "640");
INSERT INTO `wp_gf_form_view` VALUES("5539", "6", "2014-11-23 00:00:02", "66.249.79.76", "1208");
INSERT INTO `wp_gf_form_view` VALUES("5540", "3", "2014-11-23 00:00:03", "66.249.79.76", "2458");
INSERT INTO `wp_gf_form_view` VALUES("5541", "6", "2014-11-23 01:00:02", "66.249.79.76", "1312");
INSERT INTO `wp_gf_form_view` VALUES("5542", "3", "2014-11-23 01:00:02", "66.249.79.76", "2645");
INSERT INTO `wp_gf_form_view` VALUES("5543", "6", "2014-11-23 02:00:02", "66.249.79.84", "1442");
INSERT INTO `wp_gf_form_view` VALUES("5544", "3", "2014-11-23 02:00:03", "66.249.79.84", "2937");
INSERT INTO `wp_gf_form_view` VALUES("5545", "1", "2014-11-23 02:22:29", "208.68.38.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("5546", "2", "2014-11-23 02:22:29", "208.68.38.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("5547", "6", "2014-11-23 03:00:04", "66.249.79.76", "1440");
INSERT INTO `wp_gf_form_view` VALUES("5548", "3", "2014-11-23 03:00:04", "66.249.79.76", "2928");
INSERT INTO `wp_gf_form_view` VALUES("5549", "1", "2014-11-23 03:55:25", "131.109.42.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("5550", "6", "2014-11-23 04:00:00", "66.249.79.76", "1500");
INSERT INTO `wp_gf_form_view` VALUES("5551", "3", "2014-11-23 04:00:01", "66.249.79.76", "3080");
INSERT INTO `wp_gf_form_view` VALUES("5552", "6", "2014-11-23 05:00:00", "66.249.79.76", "15");
INSERT INTO `wp_gf_form_view` VALUES("5553", "3", "2014-11-23 05:00:00", "66.249.79.76", "2977");
INSERT INTO `wp_gf_form_view` VALUES("5554", "1", "2014-11-23 05:14:46", "54.72.93.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("5555", "2", "2014-11-23 05:15:42", "54.72.93.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("5556", "3", "2014-11-23 06:00:00", "66.249.79.84", "3062");
INSERT INTO `wp_gf_form_view` VALUES("5557", "6", "2014-11-23 06:03:55", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("5558", "3", "2014-11-23 07:00:00", "66.249.79.92", "2934");
INSERT INTO `wp_gf_form_view` VALUES("5559", "6", "2014-11-23 07:04:07", "66.249.79.84", "18");
INSERT INTO `wp_gf_form_view` VALUES("5560", "3", "2014-11-23 08:00:02", "66.249.79.76", "3010");
INSERT INTO `wp_gf_form_view` VALUES("5561", "6", "2014-11-23 08:12:37", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5562", "3", "2014-11-23 09:00:01", "66.249.79.84", "3106");
INSERT INTO `wp_gf_form_view` VALUES("5563", "6", "2014-11-23 09:17:43", "66.249.79.84", "13");
INSERT INTO `wp_gf_form_view` VALUES("5564", "1", "2014-11-23 09:21:38", "54.77.227.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("5565", "2", "2014-11-23 09:22:31", "54.77.227.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("5566", "3", "2014-11-23 10:00:00", "66.249.79.92", "1684");
INSERT INTO `wp_gf_form_view` VALUES("5567", "3", "2014-11-23 11:00:47", "66.249.79.76", "838");
INSERT INTO `wp_gf_form_view` VALUES("5568", "6", "2014-11-23 11:58:00", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5569", "3", "2014-11-23 12:00:07", "66.249.79.92", "2484");
INSERT INTO `wp_gf_form_view` VALUES("5570", "6", "2014-11-23 12:22:29", "66.249.79.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("5571", "3", "2014-11-23 13:00:34", "66.249.79.84", "2742");
INSERT INTO `wp_gf_form_view` VALUES("5572", "6", "2014-11-23 13:09:39", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5573", "3", "2014-11-23 14:00:00", "66.249.79.76", "2600");
INSERT INTO `wp_gf_form_view` VALUES("5574", "6", "2014-11-23 14:11:57", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5575", "3", "2014-11-23 15:00:04", "66.249.79.92", "2928");
INSERT INTO `wp_gf_form_view` VALUES("5576", "6", "2014-11-23 15:28:25", "66.249.79.76", "7");
INSERT INTO `wp_gf_form_view` VALUES("5577", "1", "2014-11-23 15:52:19", "54.171.98.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("5578", "2", "2014-11-23 15:53:03", "54.171.98.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("5579", "3", "2014-11-23 16:00:02", "66.249.79.84", "3154");
INSERT INTO `wp_gf_form_view` VALUES("5580", "6", "2014-11-23 16:06:19", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("5581", "3", "2014-11-23 17:00:04", "66.249.79.92", "3030");
INSERT INTO `wp_gf_form_view` VALUES("5582", "6", "2014-11-23 17:18:47", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5583", "3", "2014-11-23 18:00:01", "66.249.79.84", "2866");
INSERT INTO `wp_gf_form_view` VALUES("5584", "3", "2014-11-23 19:00:43", "66.249.79.76", "2764");
INSERT INTO `wp_gf_form_view` VALUES("5585", "6", "2014-11-23 19:07:10", "66.249.79.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("5586", "3", "2014-11-23 20:00:06", "66.249.79.84", "2704");
INSERT INTO `wp_gf_form_view` VALUES("5587", "6", "2014-11-23 20:13:38", "66.249.79.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("5588", "3", "2014-11-23 21:00:01", "66.249.79.84", "2517");
INSERT INTO `wp_gf_form_view` VALUES("5589", "6", "2014-11-23 21:14:47", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5590", "3", "2014-11-23 22:00:02", "66.249.79.92", "1335");
INSERT INTO `wp_gf_form_view` VALUES("5591", "6", "2014-11-23 22:22:12", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5592", "3", "2014-11-23 23:00:06", "66.249.79.84", "220");
INSERT INTO `wp_gf_form_view` VALUES("5593", "6", "2014-11-23 23:16:26", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5594", "3", "2014-11-24 00:02:45", "66.249.79.76", "160");
INSERT INTO `wp_gf_form_view` VALUES("5595", "6", "2014-11-24 00:08:18", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5596", "3", "2014-11-24 01:00:17", "66.249.79.92", "118");
INSERT INTO `wp_gf_form_view` VALUES("5597", "3", "2014-11-24 02:01:38", "66.249.79.76", "122");
INSERT INTO `wp_gf_form_view` VALUES("5598", "6", "2014-11-24 02:04:29", "202.46.63.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("5599", "3", "2014-11-24 03:01:11", "66.249.79.92", "144");
INSERT INTO `wp_gf_form_view` VALUES("5600", "3", "2014-11-24 04:01:08", "66.249.79.92", "932");
INSERT INTO `wp_gf_form_view` VALUES("5601", "6", "2014-11-24 04:04:54", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5602", "3", "2014-11-24 05:00:03", "66.249.79.92", "1883");
INSERT INTO `wp_gf_form_view` VALUES("5603", "6", "2014-11-24 05:31:26", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5604", "3", "2014-11-24 06:00:00", "66.249.79.84", "3075");
INSERT INTO `wp_gf_form_view` VALUES("5605", "6", "2014-11-24 06:04:47", "54.76.17.217", "13");
INSERT INTO `wp_gf_form_view` VALUES("5606", "1", "2014-11-24 06:07:29", "54.76.17.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("5607", "2", "2014-11-24 06:08:04", "54.76.17.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("5608", "3", "2014-11-24 07:00:03", "66.249.79.92", "3028");
INSERT INTO `wp_gf_form_view` VALUES("5609", "6", "2014-11-24 07:20:41", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("5610", "3", "2014-11-24 08:00:03", "66.249.79.92", "3208");
INSERT INTO `wp_gf_form_view` VALUES("5611", "6", "2014-11-24 08:02:50", "66.249.79.92", "20");
INSERT INTO `wp_gf_form_view` VALUES("5612", "1", "2014-11-24 08:30:42", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("5613", "3", "2014-11-24 09:00:02", "66.249.79.76", "3100");
INSERT INTO `wp_gf_form_view` VALUES("5614", "6", "2014-11-24 09:00:15", "66.249.79.84", "16");
INSERT INTO `wp_gf_form_view` VALUES("5615", "3", "2014-11-24 10:00:03", "66.249.79.76", "3064");
INSERT INTO `wp_gf_form_view` VALUES("5616", "6", "2014-11-24 10:08:43", "66.249.79.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("5617", "3", "2014-11-24 11:00:03", "66.249.79.84", "2846");
INSERT INTO `wp_gf_form_view` VALUES("5618", "6", "2014-11-24 11:50:34", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("5619", "3", "2014-11-24 12:00:02", "66.249.79.92", "2242");
INSERT INTO `wp_gf_form_view` VALUES("5620", "6", "2014-11-24 12:03:45", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5621", "3", "2014-11-24 13:00:04", "66.249.79.92", "2204");
INSERT INTO `wp_gf_form_view` VALUES("5622", "6", "2014-11-24 13:40:42", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("5623", "3", "2014-11-24 14:00:03", "66.249.79.92", "2058");
INSERT INTO `wp_gf_form_view` VALUES("5624", "6", "2014-11-24 14:00:48", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5625", "1", "2014-11-24 14:19:41", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("5626", "3", "2014-11-24 15:02:59", "66.249.79.84", "425");
INSERT INTO `wp_gf_form_view` VALUES("5627", "6", "2014-11-24 15:14:43", "68.180.229.33", "3");
INSERT INTO `wp_gf_form_view` VALUES("5628", "2", "2014-11-24 15:57:27", "185.10.50.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("5629", "1", "2014-11-24 15:57:40", "185.10.50.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("5630", "3", "2014-11-24 16:00:10", "54.171.78.65", "310");
INSERT INTO `wp_gf_form_view` VALUES("5631", "3", "2014-11-24 17:00:04", "66.249.79.76", "588");
INSERT INTO `wp_gf_form_view` VALUES("5632", "6", "2014-11-24 17:08:49", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5633", "3", "2014-11-24 18:01:14", "66.249.79.92", "1814");
INSERT INTO `wp_gf_form_view` VALUES("5634", "6", "2014-11-24 18:12:02", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5635", "3", "2014-11-24 19:00:07", "66.249.79.92", "1466");
INSERT INTO `wp_gf_form_view` VALUES("5636", "6", "2014-11-24 19:52:20", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("5637", "3", "2014-11-24 20:00:00", "66.249.79.92", "1950");
INSERT INTO `wp_gf_form_view` VALUES("5638", "1", "2014-11-24 20:12:32", "96.50.10.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("5639", "6", "2014-11-24 20:48:06", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5640", "3", "2014-11-24 21:00:01", "66.249.79.84", "2325");
INSERT INTO `wp_gf_form_view` VALUES("5641", "6", "2014-11-24 21:04:29", "207.46.13.102", "13");
INSERT INTO `wp_gf_form_view` VALUES("5642", "1", "2014-11-24 21:42:59", "46.37.69.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("5643", "2", "2014-11-24 21:43:09", "46.37.69.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("5644", "3", "2014-11-24 22:00:02", "66.249.79.76", "2360");
INSERT INTO `wp_gf_form_view` VALUES("5645", "6", "2014-11-24 22:49:28", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5646", "3", "2014-11-24 23:00:02", "66.249.79.84", "3379");
INSERT INTO `wp_gf_form_view` VALUES("5647", "6", "2014-11-24 23:06:14", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5648", "3", "2014-11-25 00:00:03", "66.249.79.92", "3551");
INSERT INTO `wp_gf_form_view` VALUES("5649", "6", "2014-11-25 00:07:45", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("5650", "3", "2014-11-25 01:00:00", "66.249.79.92", "3683");
INSERT INTO `wp_gf_form_view` VALUES("5651", "6", "2014-11-25 01:00:55", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5652", "3", "2014-11-25 02:00:00", "66.249.79.92", "3026");
INSERT INTO `wp_gf_form_view` VALUES("5653", "6", "2014-11-25 02:05:00", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("5654", "3", "2014-11-25 03:00:08", "66.249.79.76", "276");
INSERT INTO `wp_gf_form_view` VALUES("5655", "3", "2014-11-25 04:00:17", "66.249.79.84", "1248");
INSERT INTO `wp_gf_form_view` VALUES("5656", "6", "2014-11-25 04:10:19", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("5657", "3", "2014-11-25 05:00:04", "66.249.79.84", "2296");
INSERT INTO `wp_gf_form_view` VALUES("5658", "6", "2014-11-25 05:03:29", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("5659", "3", "2014-11-25 06:00:01", "66.249.79.92", "2426");
INSERT INTO `wp_gf_form_view` VALUES("5660", "6", "2014-11-25 06:11:17", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5661", "3", "2014-11-25 07:00:03", "66.249.79.92", "2718");
INSERT INTO `wp_gf_form_view` VALUES("5662", "6", "2014-11-25 07:09:01", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5663", "3", "2014-11-25 08:00:08", "66.249.79.92", "2837");
INSERT INTO `wp_gf_form_view` VALUES("5664", "6", "2014-11-25 08:10:55", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5665", "3", "2014-11-25 09:00:00", "66.249.79.92", "3436");
INSERT INTO `wp_gf_form_view` VALUES("5666", "6", "2014-11-25 09:09:05", "54.76.208.225", "7");
INSERT INTO `wp_gf_form_view` VALUES("5667", "1", "2014-11-25 09:12:12", "54.76.208.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("5668", "2", "2014-11-25 09:12:36", "54.76.208.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("5669", "3", "2014-11-25 10:00:00", "66.249.79.76", "2870");
INSERT INTO `wp_gf_form_view` VALUES("5670", "6", "2014-11-25 10:25:58", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5671", "3", "2014-11-25 11:00:03", "66.249.79.84", "3529");
INSERT INTO `wp_gf_form_view` VALUES("5672", "6", "2014-11-25 11:10:14", "66.249.79.92", "20");
INSERT INTO `wp_gf_form_view` VALUES("5673", "1", "2014-11-25 11:57:37", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("5674", "3", "2014-11-25 12:00:00", "66.249.79.92", "3272");
INSERT INTO `wp_gf_form_view` VALUES("5675", "6", "2014-11-25 12:06:45", "66.249.79.84", "11");
INSERT INTO `wp_gf_form_view` VALUES("5676", "3", "2014-11-25 13:00:03", "66.249.79.76", "3160");
INSERT INTO `wp_gf_form_view` VALUES("5677", "6", "2014-11-25 13:03:16", "66.249.79.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("5678", "3", "2014-11-25 14:00:01", "66.249.79.92", "2871");
INSERT INTO `wp_gf_form_view` VALUES("5679", "6", "2014-11-25 14:09:18", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5680", "3", "2014-11-25 15:00:01", "66.249.79.76", "790");
INSERT INTO `wp_gf_form_view` VALUES("5681", "6", "2014-11-25 15:51:02", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5682", "3", "2014-11-25 16:00:04", "66.249.79.92", "2530");
INSERT INTO `wp_gf_form_view` VALUES("5683", "6", "2014-11-25 16:16:09", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("5684", "3", "2014-11-25 17:00:04", "66.249.79.76", "2431");
INSERT INTO `wp_gf_form_view` VALUES("5685", "6", "2014-11-25 17:00:46", "188.165.15.223", "5");
INSERT INTO `wp_gf_form_view` VALUES("5686", "3", "2014-11-25 18:00:02", "66.249.79.76", "2776");
INSERT INTO `wp_gf_form_view` VALUES("5687", "6", "2014-11-25 18:01:57", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("5688", "3", "2014-11-25 19:02:20", "66.249.79.84", "2554");
INSERT INTO `wp_gf_form_view` VALUES("5689", "6", "2014-11-25 19:02:42", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("5690", "3", "2014-11-25 20:00:05", "66.249.79.84", "2780");
INSERT INTO `wp_gf_form_view` VALUES("5691", "6", "2014-11-25 20:04:51", "86.123.247.158", "7");
INSERT INTO `wp_gf_form_view` VALUES("5692", "1", "2014-11-25 20:05:13", "86.123.247.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("5693", "2", "2014-11-25 20:05:19", "86.123.247.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("5694", "3", "2014-11-25 21:00:00", "66.249.79.76", "2716");
INSERT INTO `wp_gf_form_view` VALUES("5695", "6", "2014-11-25 21:17:19", "66.249.79.76", "11");
INSERT INTO `wp_gf_form_view` VALUES("5696", "3", "2014-11-25 22:00:01", "66.249.79.92", "2704");
INSERT INTO `wp_gf_form_view` VALUES("5697", "6", "2014-11-25 22:05:19", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("5698", "3", "2014-11-25 23:00:03", "66.249.79.92", "2628");
INSERT INTO `wp_gf_form_view` VALUES("5699", "6", "2014-11-25 23:53:35", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("5700", "3", "2014-11-26 00:00:03", "66.249.79.76", "2779");
INSERT INTO `wp_gf_form_view` VALUES("5701", "6", "2014-11-26 00:12:06", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5702", "3", "2014-11-26 01:00:00", "66.249.79.92", "2941");
INSERT INTO `wp_gf_form_view` VALUES("5703", "6", "2014-11-26 01:43:34", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5704", "3", "2014-11-26 02:00:02", "66.249.79.84", "2008");
INSERT INTO `wp_gf_form_view` VALUES("5705", "6", "2014-11-26 02:10:09", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5706", "3", "2014-11-26 03:00:39", "66.249.79.92", "1030");
INSERT INTO `wp_gf_form_view` VALUES("5707", "6", "2014-11-26 03:07:35", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5708", "1", "2014-11-26 03:27:28", "218.88.94.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("5709", "3", "2014-11-26 04:00:02", "66.249.79.84", "2486");
INSERT INTO `wp_gf_form_view` VALUES("5710", "3", "2014-11-26 05:00:00", "66.249.79.84", "2501");
INSERT INTO `wp_gf_form_view` VALUES("5711", "6", "2014-11-26 05:04:24", "66.249.79.92", "9");
INSERT INTO `wp_gf_form_view` VALUES("5712", "1", "2014-11-26 05:24:53", "54.77.243.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("5713", "2", "2014-11-26 05:25:35", "54.77.243.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("5714", "3", "2014-11-26 06:00:05", "66.249.79.92", "2631");
INSERT INTO `wp_gf_form_view` VALUES("5715", "6", "2014-11-26 06:00:10", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("5716", "3", "2014-11-26 07:00:03", "66.249.79.84", "2570");
INSERT INTO `wp_gf_form_view` VALUES("5717", "6", "2014-11-26 07:38:00", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5718", "3", "2014-11-26 08:00:03", "66.249.79.92", "2598");
INSERT INTO `wp_gf_form_view` VALUES("5719", "6", "2014-11-26 08:13:56", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("5720", "3", "2014-11-26 09:00:03", "66.249.79.92", "2750");
INSERT INTO `wp_gf_form_view` VALUES("5721", "6", "2014-11-26 09:10:27", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("5722", "3", "2014-11-26 10:00:00", "66.249.79.92", "2782");
INSERT INTO `wp_gf_form_view` VALUES("5723", "6", "2014-11-26 10:04:50", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("5724", "3", "2014-11-26 11:00:04", "66.249.79.92", "2646");
INSERT INTO `wp_gf_form_view` VALUES("5725", "6", "2014-11-26 11:11:52", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("5726", "1", "2014-11-26 11:42:57", "46.29.21.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("5727", "3", "2014-11-26 12:00:01", "66.249.79.84", "2653");
INSERT INTO `wp_gf_form_view` VALUES("5728", "6", "2014-11-26 12:07:50", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5729", "3", "2014-11-26 13:00:00", "66.249.79.84", "2615");
INSERT INTO `wp_gf_form_view` VALUES("5730", "6", "2014-11-26 13:12:35", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("5731", "3", "2014-11-26 14:00:13", "66.249.79.76", "532");
INSERT INTO `wp_gf_form_view` VALUES("5732", "6", "2014-11-26 14:08:00", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("5733", "3", "2014-11-26 15:02:39", "66.249.79.76", "70");
INSERT INTO `wp_gf_form_view` VALUES("5734", "3", "2014-11-26 16:00:30", "66.249.79.84", "112");
INSERT INTO `wp_gf_form_view` VALUES("5735", "3", "2014-11-26 17:00:41", "66.249.79.84", "340");
INSERT INTO `wp_gf_form_view` VALUES("5736", "6", "2014-11-26 17:05:38", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("5737", "3", "2014-11-26 18:00:23", "66.249.79.76", "436");
INSERT INTO `wp_gf_form_view` VALUES("5738", "3", "2014-11-26 19:00:11", "66.249.79.84", "2612");
INSERT INTO `wp_gf_form_view` VALUES("5739", "6", "2014-11-26 19:12:46", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("5740", "3", "2014-11-26 20:00:02", "66.249.79.92", "3484");
INSERT INTO `wp_gf_form_view` VALUES("5741", "6", "2014-11-26 20:05:40", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5742", "3", "2014-11-26 21:00:04", "66.249.79.84", "4202");
INSERT INTO `wp_gf_form_view` VALUES("5743", "6", "2014-11-26 21:45:05", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5744", "3", "2014-11-26 22:00:02", "66.249.79.76", "4266");
INSERT INTO `wp_gf_form_view` VALUES("5745", "6", "2014-11-26 22:15:12", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("5746", "3", "2014-11-26 23:00:01", "66.249.79.76", "4338");
INSERT INTO `wp_gf_form_view` VALUES("5747", "6", "2014-11-26 23:13:20", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5748", "3", "2014-11-27 00:00:00", "66.249.79.92", "4602");
INSERT INTO `wp_gf_form_view` VALUES("5749", "6", "2014-11-27 00:15:17", "66.249.79.76", "16");
INSERT INTO `wp_gf_form_view` VALUES("5750", "3", "2014-11-27 01:00:00", "66.249.79.84", "4824");
INSERT INTO `wp_gf_form_view` VALUES("5751", "6", "2014-11-27 01:18:04", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5752", "3", "2014-11-27 02:00:02", "66.249.79.92", "2026");
INSERT INTO `wp_gf_form_view` VALUES("5753", "6", "2014-11-27 02:03:32", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("5754", "3", "2014-11-27 03:00:16", "66.249.79.92", "1257");
INSERT INTO `wp_gf_form_view` VALUES("5755", "6", "2014-11-27 03:10:15", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5756", "3", "2014-11-27 04:00:00", "66.249.79.84", "4357");
INSERT INTO `wp_gf_form_view` VALUES("5757", "6", "2014-11-27 04:04:40", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("5758", "3", "2014-11-27 05:00:00", "66.249.79.84", "4325");
INSERT INTO `wp_gf_form_view` VALUES("5759", "6", "2014-11-27 05:08:28", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("5760", "1", "2014-11-27 05:48:00", "96.50.24.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("5761", "3", "2014-11-27 06:00:05", "66.249.79.76", "4868");
INSERT INTO `wp_gf_form_view` VALUES("5762", "6", "2014-11-27 06:03:25", "66.249.79.76", "16");
INSERT INTO `wp_gf_form_view` VALUES("5763", "3", "2014-11-27 07:00:04", "66.249.79.92", "4814");
INSERT INTO `wp_gf_form_view` VALUES("5764", "6", "2014-11-27 07:03:05", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("5765", "1", "2014-11-27 07:53:22", "14.18.16.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("5766", "3", "2014-11-27 08:00:00", "66.249.79.84", "4873");
INSERT INTO `wp_gf_form_view` VALUES("5767", "6", "2014-11-27 08:13:22", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("5768", "3", "2014-11-27 09:00:00", "66.249.79.84", "4710");
INSERT INTO `wp_gf_form_view` VALUES("5769", "6", "2014-11-27 09:05:41", "66.249.79.92", "20");
INSERT INTO `wp_gf_form_view` VALUES("5770", "3", "2014-11-27 10:00:01", "66.249.79.76", "4299");
INSERT INTO `wp_gf_form_view` VALUES("5771", "6", "2014-11-27 10:03:27", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5772", "3", "2014-11-27 11:00:00", "66.249.79.76", "3908");
INSERT INTO `wp_gf_form_view` VALUES("5773", "6", "2014-11-27 11:03:07", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5774", "3", "2014-11-27 12:00:00", "66.249.79.76", "4321");
INSERT INTO `wp_gf_form_view` VALUES("5775", "2", "2014-11-27 12:28:16", "202.46.48.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("5776", "6", "2014-11-27 12:30:50", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5777", "3", "2014-11-27 13:00:03", "66.249.79.76", "4603");
INSERT INTO `wp_gf_form_view` VALUES("5778", "6", "2014-11-27 13:04:54", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5779", "2", "2014-11-27 13:34:40", "195.154.199.88", "3");
INSERT INTO `wp_gf_form_view` VALUES("5780", "3", "2014-11-27 14:00:00", "66.249.79.84", "943");
INSERT INTO `wp_gf_form_view` VALUES("5781", "6", "2014-11-27 14:07:50", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5782", "2", "2014-11-27 14:42:45", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("5783", "3", "2014-11-27 15:00:01", "66.249.79.76", "1970");
INSERT INTO `wp_gf_form_view` VALUES("5784", "6", "2014-11-27 15:30:30", "66.249.79.76", "7");
INSERT INTO `wp_gf_form_view` VALUES("5785", "1", "2014-11-27 15:46:50", "54.171.70.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("5786", "2", "2014-11-27 15:47:40", "54.171.70.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("5787", "3", "2014-11-27 16:00:08", "66.249.79.84", "4074");
INSERT INTO `wp_gf_form_view` VALUES("5788", "6", "2014-11-27 16:22:03", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5789", "3", "2014-11-27 17:00:03", "66.249.79.84", "4097");
INSERT INTO `wp_gf_form_view` VALUES("5790", "6", "2014-11-27 17:09:30", "66.249.79.92", "16");
INSERT INTO `wp_gf_form_view` VALUES("5791", "3", "2014-11-27 18:00:03", "66.249.79.84", "4255");
INSERT INTO `wp_gf_form_view` VALUES("5792", "6", "2014-11-27 18:06:03", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5793", "3", "2014-11-27 19:00:01", "66.249.79.92", "4261");
INSERT INTO `wp_gf_form_view` VALUES("5794", "6", "2014-11-27 19:09:19", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5795", "3", "2014-11-27 20:00:07", "66.249.79.92", "4134");
INSERT INTO `wp_gf_form_view` VALUES("5796", "6", "2014-11-27 20:13:43", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("5797", "3", "2014-11-27 21:00:01", "66.249.79.92", "4090");
INSERT INTO `wp_gf_form_view` VALUES("5798", "1", "2014-11-27 21:35:39", "202.46.49.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("5799", "6", "2014-11-27 21:36:45", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5800", "3", "2014-11-27 22:00:00", "66.249.79.92", "4058");
INSERT INTO `wp_gf_form_view` VALUES("5801", "6", "2014-11-27 22:25:53", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("5802", "3", "2014-11-27 23:00:10", "66.249.79.76", "3936");
INSERT INTO `wp_gf_form_view` VALUES("5803", "6", "2014-11-27 23:02:14", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5804", "3", "2014-11-28 00:00:02", "66.249.79.76", "3999");
INSERT INTO `wp_gf_form_view` VALUES("5805", "6", "2014-11-28 00:22:05", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5806", "3", "2014-11-28 01:00:02", "66.249.79.84", "4038");
INSERT INTO `wp_gf_form_view` VALUES("5807", "6", "2014-11-28 01:03:05", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("5808", "3", "2014-11-28 02:00:03", "66.249.79.92", "536");
INSERT INTO `wp_gf_form_view` VALUES("5809", "6", "2014-11-28 02:01:15", "207.46.13.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("5810", "3", "2014-11-28 03:01:20", "66.249.79.76", "1275");
INSERT INTO `wp_gf_form_view` VALUES("5811", "3", "2014-11-28 04:00:07", "66.249.79.84", "3713");
INSERT INTO `wp_gf_form_view` VALUES("5812", "6", "2014-11-28 04:09:51", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5813", "3", "2014-11-28 05:00:00", "66.249.79.92", "3146");
INSERT INTO `wp_gf_form_view` VALUES("5814", "1", "2014-11-28 05:47:42", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("5815", "6", "2014-11-28 05:56:59", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5816", "3", "2014-11-28 06:00:00", "66.249.79.76", "4214");
INSERT INTO `wp_gf_form_view` VALUES("5817", "6", "2014-11-28 06:33:33", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("5818", "3", "2014-11-28 07:00:03", "66.249.79.92", "4219");
INSERT INTO `wp_gf_form_view` VALUES("5819", "6", "2014-11-28 07:02:37", "66.249.79.84", "18");
INSERT INTO `wp_gf_form_view` VALUES("5820", "3", "2014-11-28 08:00:00", "66.249.79.84", "4163");
INSERT INTO `wp_gf_form_view` VALUES("5821", "6", "2014-11-28 08:01:21", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("5822", "3", "2014-11-28 09:00:06", "66.249.79.92", "4244");
INSERT INTO `wp_gf_form_view` VALUES("5823", "6", "2014-11-28 09:01:21", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("5824", "3", "2014-11-28 10:00:02", "66.249.79.92", "3840");
INSERT INTO `wp_gf_form_view` VALUES("5825", "6", "2014-11-28 10:20:22", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("5826", "3", "2014-11-28 11:00:00", "66.249.79.92", "3871");
INSERT INTO `wp_gf_form_view` VALUES("5827", "6", "2014-11-28 11:06:42", "66.249.79.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("5828", "3", "2014-11-28 12:00:05", "66.249.79.76", "4190");
INSERT INTO `wp_gf_form_view` VALUES("5829", "6", "2014-11-28 12:11:40", "66.249.79.76", "18");
INSERT INTO `wp_gf_form_view` VALUES("5830", "3", "2014-11-28 13:00:02", "66.249.79.76", "3178");
INSERT INTO `wp_gf_form_view` VALUES("5831", "6", "2014-11-28 13:05:16", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5832", "3", "2014-11-28 14:01:03", "66.249.79.92", "252");
INSERT INTO `wp_gf_form_view` VALUES("5833", "3", "2014-11-28 15:00:14", "66.249.79.92", "3099");
INSERT INTO `wp_gf_form_view` VALUES("5834", "6", "2014-11-28 15:04:55", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5835", "3", "2014-11-28 16:00:32", "66.249.79.76", "3463");
INSERT INTO `wp_gf_form_view` VALUES("5836", "6", "2014-11-28 16:07:20", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5837", "3", "2014-11-28 17:00:00", "66.249.79.84", "3819");
INSERT INTO `wp_gf_form_view` VALUES("5838", "6", "2014-11-28 17:21:25", "66.249.79.92", "16");
INSERT INTO `wp_gf_form_view` VALUES("5839", "3", "2014-11-28 18:00:01", "66.249.79.76", "3762");
INSERT INTO `wp_gf_form_view` VALUES("5840", "6", "2014-11-28 18:07:41", "66.249.79.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("5841", "1", "2014-11-28 18:19:42", "24.68.12.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("5842", "3", "2014-11-28 19:00:00", "66.249.79.92", "4152");
INSERT INTO `wp_gf_form_view` VALUES("5843", "6", "2014-11-28 19:15:12", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("5844", "3", "2014-11-28 20:00:04", "66.249.79.84", "4154");
INSERT INTO `wp_gf_form_view` VALUES("5845", "6", "2014-11-28 20:03:32", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("5846", "3", "2014-11-28 21:00:02", "66.249.79.84", "4187");
INSERT INTO `wp_gf_form_view` VALUES("5847", "6", "2014-11-28 21:00:19", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5848", "3", "2014-11-28 22:00:02", "66.249.79.84", "3860");
INSERT INTO `wp_gf_form_view` VALUES("5849", "6", "2014-11-28 22:56:56", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5850", "3", "2014-11-28 23:00:05", "66.249.79.84", "3888");
INSERT INTO `wp_gf_form_view` VALUES("5851", "6", "2014-11-28 23:45:08", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5852", "3", "2014-11-29 00:00:00", "66.249.79.92", "4186");
INSERT INTO `wp_gf_form_view` VALUES("5853", "6", "2014-11-29 00:05:32", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("5854", "3", "2014-11-29 01:00:00", "66.249.79.92", "3817");
INSERT INTO `wp_gf_form_view` VALUES("5855", "6", "2014-11-29 01:01:30", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5856", "3", "2014-11-29 02:00:55", "66.249.79.92", "437");
INSERT INTO `wp_gf_form_view` VALUES("5857", "1", "2014-11-29 02:55:38", "188.165.15.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("5858", "6", "2014-11-29 02:58:08", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("5859", "3", "2014-11-29 03:00:11", "66.249.79.92", "4036");
INSERT INTO `wp_gf_form_view` VALUES("5860", "6", "2014-11-29 03:37:01", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5861", "3", "2014-11-29 04:00:00", "66.249.79.92", "4412");
INSERT INTO `wp_gf_form_view` VALUES("5862", "6", "2014-11-29 04:02:38", "66.249.79.92", "18");
INSERT INTO `wp_gf_form_view` VALUES("5863", "3", "2014-11-29 05:00:04", "66.249.79.76", "4374");
INSERT INTO `wp_gf_form_view` VALUES("5864", "6", "2014-11-29 05:09:02", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5865", "2", "2014-11-29 05:37:27", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("5866", "3", "2014-11-29 06:00:01", "66.249.79.76", "4248");
INSERT INTO `wp_gf_form_view` VALUES("5867", "6", "2014-11-29 06:10:18", "66.249.79.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("5868", "3", "2014-11-29 07:00:00", "66.249.79.92", "3658");
INSERT INTO `wp_gf_form_view` VALUES("5869", "6", "2014-11-29 07:02:11", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5870", "3", "2014-11-29 08:02:11", "66.249.79.92", "3594");
INSERT INTO `wp_gf_form_view` VALUES("5871", "6", "2014-11-29 08:17:52", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("5872", "3", "2014-11-29 09:00:03", "66.249.79.76", "2900");
INSERT INTO `wp_gf_form_view` VALUES("5873", "6", "2014-11-29 09:04:15", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5874", "3", "2014-11-29 10:00:04", "66.249.79.76", "4901");
INSERT INTO `wp_gf_form_view` VALUES("5875", "6", "2014-11-29 10:17:32", "66.249.79.92", "11");
INSERT INTO `wp_gf_form_view` VALUES("5876", "1", "2014-11-29 10:34:20", "54.77.158.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("5877", "2", "2014-11-29 10:35:09", "54.77.158.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("5878", "3", "2014-11-29 11:00:02", "66.249.79.76", "4767");
INSERT INTO `wp_gf_form_view` VALUES("5879", "6", "2014-11-29 11:13:46", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5880", "3", "2014-11-29 12:01:02", "66.249.79.92", "4070");
INSERT INTO `wp_gf_form_view` VALUES("5881", "6", "2014-11-29 12:14:10", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("5882", "3", "2014-11-29 13:00:02", "66.249.79.84", "1595");
INSERT INTO `wp_gf_form_view` VALUES("5883", "6", "2014-11-29 13:04:26", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("5884", "3", "2014-11-29 14:00:30", "66.249.79.92", "1069");
INSERT INTO `wp_gf_form_view` VALUES("5885", "6", "2014-11-29 14:15:33", "54.76.249.115", "8");
INSERT INTO `wp_gf_form_view` VALUES("5886", "1", "2014-11-29 14:22:32", "54.76.249.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("5887", "2", "2014-11-29 14:23:27", "54.76.249.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("5888", "3", "2014-11-29 15:00:03", "66.249.79.76", "2834");
INSERT INTO `wp_gf_form_view` VALUES("5889", "6", "2014-11-29 15:04:18", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5890", "3", "2014-11-29 16:00:00", "66.249.79.84", "3164");
INSERT INTO `wp_gf_form_view` VALUES("5891", "6", "2014-11-29 16:27:10", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("5892", "3", "2014-11-29 17:00:01", "66.249.79.76", "4542");
INSERT INTO `wp_gf_form_view` VALUES("5893", "6", "2014-11-29 17:06:41", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("5894", "3", "2014-11-29 18:00:01", "66.249.79.76", "3392");
INSERT INTO `wp_gf_form_view` VALUES("5895", "6", "2014-11-29 18:04:10", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("5896", "3", "2014-11-29 19:03:04", "66.249.79.92", "2660");
INSERT INTO `wp_gf_form_view` VALUES("5897", "6", "2014-11-29 19:19:43", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("5898", "3", "2014-11-29 20:00:12", "66.249.79.76", "2666");
INSERT INTO `wp_gf_form_view` VALUES("5899", "6", "2014-11-29 20:31:11", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("5900", "3", "2014-11-29 21:00:52", "66.249.79.84", "3487");
INSERT INTO `wp_gf_form_view` VALUES("5901", "6", "2014-11-29 21:22:37", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5902", "1", "2014-11-29 21:57:52", "198.199.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("5903", "2", "2014-11-29 21:57:53", "198.199.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("5904", "3", "2014-11-29 22:00:06", "66.249.79.92", "2738");
INSERT INTO `wp_gf_form_view` VALUES("5905", "6", "2014-11-29 22:14:25", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5906", "3", "2014-11-29 23:00:44", "66.249.79.76", "5300");
INSERT INTO `wp_gf_form_view` VALUES("5907", "6", "2014-11-29 23:36:26", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5908", "3", "2014-11-30 00:00:02", "66.249.79.76", "3987");
INSERT INTO `wp_gf_form_view` VALUES("5909", "6", "2014-11-30 00:09:13", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("5910", "3", "2014-11-30 01:02:10", "66.249.79.84", "5931");
INSERT INTO `wp_gf_form_view` VALUES("5911", "6", "2014-11-30 01:03:06", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("5912", "3", "2014-11-30 02:00:00", "66.249.79.84", "4760");
INSERT INTO `wp_gf_form_view` VALUES("5913", "6", "2014-11-30 02:04:25", "66.249.79.84", "18");
INSERT INTO `wp_gf_form_view` VALUES("5914", "1", "2014-11-30 02:47:29", "181.49.15.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("5915", "3", "2014-11-30 03:00:00", "66.249.79.76", "803");
INSERT INTO `wp_gf_form_view` VALUES("5916", "3", "2014-11-30 04:00:36", "66.249.79.84", "3762");
INSERT INTO `wp_gf_form_view` VALUES("5917", "6", "2014-11-30 04:30:17", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("5918", "3", "2014-11-30 05:00:01", "66.249.79.92", "3856");
INSERT INTO `wp_gf_form_view` VALUES("5919", "6", "2014-11-30 05:01:09", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5920", "3", "2014-11-30 06:00:01", "66.249.79.92", "4708");
INSERT INTO `wp_gf_form_view` VALUES("5921", "6", "2014-11-30 06:33:43", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5922", "3", "2014-11-30 07:00:08", "66.249.79.84", "4772");
INSERT INTO `wp_gf_form_view` VALUES("5923", "6", "2014-11-30 07:00:13", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("5924", "3", "2014-11-30 08:00:00", "66.249.79.84", "4822");
INSERT INTO `wp_gf_form_view` VALUES("5925", "6", "2014-11-30 08:23:58", "66.249.79.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("5926", "3", "2014-11-30 09:00:00", "66.249.79.84", "4396");
INSERT INTO `wp_gf_form_view` VALUES("5927", "6", "2014-11-30 09:03:50", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("5928", "3", "2014-11-30 10:00:00", "66.249.79.92", "4868");
INSERT INTO `wp_gf_form_view` VALUES("5929", "6", "2014-11-30 10:05:29", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("5930", "3", "2014-11-30 11:00:05", "66.249.79.84", "4863");
INSERT INTO `wp_gf_form_view` VALUES("5931", "6", "2014-11-30 11:09:31", "66.249.79.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("5932", "3", "2014-11-30 12:00:00", "66.249.79.92", "4882");
INSERT INTO `wp_gf_form_view` VALUES("5933", "6", "2014-11-30 12:00:53", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5934", "3", "2014-11-30 13:00:00", "66.249.79.76", "1802");
INSERT INTO `wp_gf_form_view` VALUES("5935", "3", "2014-11-30 14:00:09", "66.249.79.92", "1524");
INSERT INTO `wp_gf_form_view` VALUES("5936", "3", "2014-11-30 15:01:21", "66.249.79.84", "3478");
INSERT INTO `wp_gf_form_view` VALUES("5937", "6", "2014-11-30 15:26:37", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5938", "3", "2014-11-30 16:00:02", "66.249.79.92", "3322");
INSERT INTO `wp_gf_form_view` VALUES("5939", "6", "2014-11-30 16:05:02", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("5940", "3", "2014-11-30 17:00:00", "66.249.79.76", "4052");
INSERT INTO `wp_gf_form_view` VALUES("5941", "6", "2014-11-30 17:02:30", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5942", "3", "2014-11-30 18:00:02", "66.249.79.84", "3636");
INSERT INTO `wp_gf_form_view` VALUES("5943", "6", "2014-11-30 18:16:47", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5944", "3", "2014-11-30 19:00:01", "66.249.79.84", "4166");
INSERT INTO `wp_gf_form_view` VALUES("5945", "6", "2014-11-30 19:00:37", "68.180.229.33", "5");
INSERT INTO `wp_gf_form_view` VALUES("5946", "3", "2014-11-30 20:00:06", "66.249.79.76", "4220");
INSERT INTO `wp_gf_form_view` VALUES("5947", "6", "2014-11-30 20:00:41", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5948", "3", "2014-11-30 21:00:00", "66.249.79.76", "4156");
INSERT INTO `wp_gf_form_view` VALUES("5949", "6", "2014-11-30 21:06:43", "66.249.79.76", "22");
INSERT INTO `wp_gf_form_view` VALUES("5950", "3", "2014-11-30 22:00:03", "66.249.79.92", "4088");
INSERT INTO `wp_gf_form_view` VALUES("5951", "6", "2014-11-30 22:33:56", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5952", "3", "2014-11-30 23:00:05", "66.249.79.84", "2710");
INSERT INTO `wp_gf_form_view` VALUES("5953", "6", "2014-11-30 23:13:04", "66.249.79.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("5954", "3", "2014-12-01 00:01:01", "66.249.79.76", "3213");
INSERT INTO `wp_gf_form_view` VALUES("5955", "6", "2014-12-01 00:38:01", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5956", "3", "2014-12-01 01:00:00", "66.249.79.76", "4108");
INSERT INTO `wp_gf_form_view` VALUES("5957", "6", "2014-12-01 01:18:00", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("5958", "3", "2014-12-01 02:00:56", "66.249.79.84", "3517");
INSERT INTO `wp_gf_form_view` VALUES("5959", "6", "2014-12-01 02:10:51", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5960", "3", "2014-12-01 03:00:04", "66.249.79.84", "3854");
INSERT INTO `wp_gf_form_view` VALUES("5961", "6", "2014-12-01 03:10:48", "66.249.79.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("5962", "3", "2014-12-01 04:00:01", "66.249.79.84", "3846");
INSERT INTO `wp_gf_form_view` VALUES("5963", "6", "2014-12-01 04:12:05", "66.249.79.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("5964", "3", "2014-12-01 05:00:04", "66.249.79.84", "4092");
INSERT INTO `wp_gf_form_view` VALUES("5965", "6", "2014-12-01 05:13:21", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5966", "3", "2014-12-01 06:00:01", "66.249.79.76", "4057");
INSERT INTO `wp_gf_form_view` VALUES("5967", "6", "2014-12-01 06:04:18", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("5968", "3", "2014-12-01 07:00:00", "66.249.79.92", "4100");
INSERT INTO `wp_gf_form_view` VALUES("5969", "6", "2014-12-01 07:11:14", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("5970", "3", "2014-12-01 08:00:00", "66.249.79.92", "4218");
INSERT INTO `wp_gf_form_view` VALUES("5971", "6", "2014-12-01 08:21:17", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5972", "3", "2014-12-01 09:00:02", "66.249.79.132", "3787");
INSERT INTO `wp_gf_form_view` VALUES("5973", "6", "2014-12-01 09:06:41", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5974", "3", "2014-12-01 10:00:00", "66.249.79.92", "4763");
INSERT INTO `wp_gf_form_view` VALUES("5975", "6", "2014-12-01 10:24:43", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("5976", "3", "2014-12-01 11:00:20", "66.249.79.76", "4016");
INSERT INTO `wp_gf_form_view` VALUES("5977", "6", "2014-12-01 11:07:41", "66.249.79.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("5978", "3", "2014-12-01 12:00:03", "66.249.79.92", "3100");
INSERT INTO `wp_gf_form_view` VALUES("5979", "6", "2014-12-01 12:15:43", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("5980", "3", "2014-12-01 13:00:48", "66.249.79.92", "286");
INSERT INTO `wp_gf_form_view` VALUES("5981", "3", "2014-12-01 14:01:24", "66.249.79.84", "2124");
INSERT INTO `wp_gf_form_view` VALUES("5982", "6", "2014-12-01 14:52:20", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("5983", "3", "2014-12-01 15:00:01", "66.249.79.92", "4175");
INSERT INTO `wp_gf_form_view` VALUES("5984", "6", "2014-12-01 15:46:33", "66.249.79.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("5985", "3", "2014-12-01 16:00:00", "66.249.79.76", "3115");
INSERT INTO `wp_gf_form_view` VALUES("5986", "1", "2014-12-01 16:01:58", "54.171.60.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("5987", "2", "2014-12-01 16:02:46", "54.171.60.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("5988", "6", "2014-12-01 16:27:34", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("5989", "3", "2014-12-01 17:00:00", "66.249.79.84", "2368");
INSERT INTO `wp_gf_form_view` VALUES("5990", "6", "2014-12-01 17:07:23", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5991", "3", "2014-12-01 18:01:05", "66.249.79.92", "1828");
INSERT INTO `wp_gf_form_view` VALUES("5992", "6", "2014-12-01 18:55:50", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5993", "3", "2014-12-01 19:00:00", "66.249.79.76", "2926");
INSERT INTO `wp_gf_form_view` VALUES("5994", "6", "2014-12-01 19:08:35", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("5995", "3", "2014-12-01 20:00:05", "66.249.79.92", "3313");
INSERT INTO `wp_gf_form_view` VALUES("5996", "6", "2014-12-01 20:05:53", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5997", "3", "2014-12-01 21:00:00", "66.249.79.92", "2636");
INSERT INTO `wp_gf_form_view` VALUES("5998", "6", "2014-12-01 21:30:30", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("5999", "3", "2014-12-01 22:00:00", "66.249.79.84", "3564");
INSERT INTO `wp_gf_form_view` VALUES("6000", "6", "2014-12-01 22:25:24", "24.69.67.4", "4");
INSERT INTO `wp_gf_form_view` VALUES("6001", "3", "2014-12-01 23:00:01", "66.249.79.92", "3270");
INSERT INTO `wp_gf_form_view` VALUES("6002", "3", "2014-12-02 00:00:34", "66.249.79.92", "3650");
INSERT INTO `wp_gf_form_view` VALUES("6003", "6", "2014-12-02 00:19:08", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("6004", "3", "2014-12-02 01:01:32", "66.249.79.84", "3276");
INSERT INTO `wp_gf_form_view` VALUES("6005", "2", "2014-12-02 01:09:19", "82.192.74.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("6006", "1", "2014-12-02 01:09:36", "82.192.74.175", "3");
INSERT INTO `wp_gf_form_view` VALUES("6007", "6", "2014-12-02 01:58:08", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6008", "3", "2014-12-02 02:00:00", "66.249.79.92", "4094");
INSERT INTO `wp_gf_form_view` VALUES("6009", "6", "2014-12-02 02:16:46", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6010", "3", "2014-12-02 03:00:14", "66.249.79.84", "3494");
INSERT INTO `wp_gf_form_view` VALUES("6011", "6", "2014-12-02 03:18:06", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6012", "1", "2014-12-02 03:25:35", "181.160.57.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("6013", "3", "2014-12-02 04:00:00", "66.249.79.92", "7148");
INSERT INTO `wp_gf_form_view` VALUES("6014", "6", "2014-12-02 04:35:36", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("6015", "3", "2014-12-02 05:00:03", "66.249.79.84", "5330");
INSERT INTO `wp_gf_form_view` VALUES("6016", "1", "2014-12-02 05:23:07", "171.213.22.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("6017", "6", "2014-12-02 05:35:12", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6018", "3", "2014-12-02 06:00:00", "66.249.79.76", "6173");
INSERT INTO `wp_gf_form_view` VALUES("6019", "6", "2014-12-02 06:24:55", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("6020", "3", "2014-12-02 07:00:00", "66.249.79.92", "5548");
INSERT INTO `wp_gf_form_view` VALUES("6021", "6", "2014-12-02 07:31:15", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6022", "3", "2014-12-02 08:00:00", "66.249.79.76", "5589");
INSERT INTO `wp_gf_form_view` VALUES("6023", "3", "2014-12-02 09:00:00", "66.249.79.76", "6864");
INSERT INTO `wp_gf_form_view` VALUES("6024", "6", "2014-12-02 09:01:17", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("6025", "3", "2014-12-02 10:00:00", "66.249.79.92", "5563");
INSERT INTO `wp_gf_form_view` VALUES("6026", "6", "2014-12-02 10:04:24", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("6027", "3", "2014-12-02 11:00:00", "66.249.79.92", "5609");
INSERT INTO `wp_gf_form_view` VALUES("6028", "2", "2014-12-02 11:06:13", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6029", "3", "2014-12-02 12:00:00", "66.249.79.92", "6950");
INSERT INTO `wp_gf_form_view` VALUES("6030", "6", "2014-12-02 12:44:05", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6031", "3", "2014-12-02 13:00:00", "66.249.79.84", "5916");
INSERT INTO `wp_gf_form_view` VALUES("6032", "6", "2014-12-02 13:02:22", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6033", "3", "2014-12-02 14:00:17", "66.249.79.84", "7165");
INSERT INTO `wp_gf_form_view` VALUES("6034", "1", "2014-12-02 14:06:26", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6035", "2", "2014-12-02 14:19:42", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6036", "3", "2014-12-02 15:00:00", "66.249.79.84", "2423");
INSERT INTO `wp_gf_form_view` VALUES("6037", "3", "2014-12-02 16:00:00", "66.249.67.84", "6536");
INSERT INTO `wp_gf_form_view` VALUES("6038", "1", "2014-12-02 16:09:47", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6039", "6", "2014-12-02 16:11:57", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6040", "3", "2014-12-02 17:00:10", "66.249.67.92", "4260");
INSERT INTO `wp_gf_form_view` VALUES("6041", "2", "2014-12-02 17:36:57", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6042", "3", "2014-12-02 18:00:05", "66.249.67.76", "6294");
INSERT INTO `wp_gf_form_view` VALUES("6043", "6", "2014-12-02 18:13:01", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6044", "3", "2014-12-02 19:00:00", "66.249.67.84", "5502");
INSERT INTO `wp_gf_form_view` VALUES("6045", "6", "2014-12-02 19:36:43", "66.249.67.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("6046", "3", "2014-12-02 20:00:10", "66.249.67.76", "5704");
INSERT INTO `wp_gf_form_view` VALUES("6047", "6", "2014-12-02 20:05:15", "66.249.67.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("6048", "3", "2014-12-02 21:00:01", "66.249.67.92", "5650");
INSERT INTO `wp_gf_form_view` VALUES("6049", "1", "2014-12-02 21:12:04", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6050", "6", "2014-12-02 21:16:48", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6051", "3", "2014-12-02 22:00:00", "66.249.67.84", "4455");
INSERT INTO `wp_gf_form_view` VALUES("6052", "2", "2014-12-02 22:37:45", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6053", "6", "2014-12-02 22:43:22", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6054", "3", "2014-12-02 23:00:29", "66.249.67.76", "4108");
INSERT INTO `wp_gf_form_view` VALUES("6055", "6", "2014-12-02 23:11:15", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6056", "3", "2014-12-03 00:00:19", "66.249.67.76", "5128");
INSERT INTO `wp_gf_form_view` VALUES("6057", "6", "2014-12-03 00:16:50", "66.249.67.92", "5");
INSERT INTO `wp_gf_form_view` VALUES("6058", "1", "2014-12-03 00:28:05", "54.76.13.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("6059", "2", "2014-12-03 00:28:52", "54.76.13.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("6060", "3", "2014-12-03 01:00:03", "66.249.67.84", "4832");
INSERT INTO `wp_gf_form_view` VALUES("6061", "6", "2014-12-03 01:22:05", "66.249.67.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6062", "3", "2014-12-03 02:00:03", "66.249.67.76", "5906");
INSERT INTO `wp_gf_form_view` VALUES("6063", "6", "2014-12-03 02:18:04", "66.249.67.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("6064", "3", "2014-12-03 03:00:03", "66.249.67.76", "2658");
INSERT INTO `wp_gf_form_view` VALUES("6065", "6", "2014-12-03 03:23:07", "66.249.67.76", "18");
INSERT INTO `wp_gf_form_view` VALUES("6066", "1", "2014-12-03 03:56:54", "171.213.22.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("6067", "3", "2014-12-03 04:00:01", "66.249.67.76", "5798");
INSERT INTO `wp_gf_form_view` VALUES("6068", "6", "2014-12-03 04:06:52", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6069", "1", "2014-12-03 04:19:50", "66.249.67.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("6070", "3", "2014-12-03 05:00:02", "66.249.67.84", "5620");
INSERT INTO `wp_gf_form_view` VALUES("6071", "6", "2014-12-03 05:28:19", "66.249.67.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("6072", "3", "2014-12-03 06:00:00", "66.249.67.92", "5574");
INSERT INTO `wp_gf_form_view` VALUES("6073", "6", "2014-12-03 06:05:02", "66.249.67.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6074", "3", "2014-12-03 07:00:01", "66.249.67.76", "5732");
INSERT INTO `wp_gf_form_view` VALUES("6075", "6", "2014-12-03 07:24:05", "66.249.67.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("6076", "1", "2014-12-03 07:58:44", "111.1.3.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("6077", "3", "2014-12-03 08:00:03", "66.249.67.76", "5790");
INSERT INTO `wp_gf_form_view` VALUES("6078", "6", "2014-12-03 08:06:36", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6079", "3", "2014-12-03 09:00:01", "66.249.67.84", "5468");
INSERT INTO `wp_gf_form_view` VALUES("6080", "6", "2014-12-03 09:34:11", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6081", "3", "2014-12-03 10:00:03", "66.249.67.76", "5971");
INSERT INTO `wp_gf_form_view` VALUES("6082", "6", "2014-12-03 10:12:53", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6083", "3", "2014-12-03 11:00:00", "66.249.67.76", "5580");
INSERT INTO `wp_gf_form_view` VALUES("6084", "6", "2014-12-03 11:28:00", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6085", "3", "2014-12-03 12:00:00", "66.249.67.84", "5797");
INSERT INTO `wp_gf_form_view` VALUES("6086", "6", "2014-12-03 12:04:18", "66.249.67.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("6087", "1", "2014-12-03 12:04:58", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6088", "3", "2014-12-03 13:00:00", "66.249.67.76", "5937");
INSERT INTO `wp_gf_form_view` VALUES("6089", "6", "2014-12-03 13:16:43", "66.249.67.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("6090", "3", "2014-12-03 14:00:03", "66.249.67.92", "5498");
INSERT INTO `wp_gf_form_view` VALUES("6091", "6", "2014-12-03 14:22:47", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6092", "3", "2014-12-03 15:02:45", "66.249.67.84", "3943");
INSERT INTO `wp_gf_form_view` VALUES("6093", "6", "2014-12-03 15:43:56", "66.249.67.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("6094", "1", "2014-12-03 15:45:57", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("6095", "3", "2014-12-03 16:00:13", "66.249.79.76", "5470");
INSERT INTO `wp_gf_form_view` VALUES("6096", "3", "2014-12-03 17:00:00", "66.249.79.92", "5525");
INSERT INTO `wp_gf_form_view` VALUES("6097", "6", "2014-12-03 17:03:58", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6098", "3", "2014-12-03 18:00:00", "66.249.79.92", "6028");
INSERT INTO `wp_gf_form_view` VALUES("6099", "6", "2014-12-03 18:36:59", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6100", "3", "2014-12-03 19:00:00", "66.249.79.92", "5930");
INSERT INTO `wp_gf_form_view` VALUES("6101", "6", "2014-12-03 19:15:23", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6102", "3", "2014-12-03 20:00:04", "66.249.79.84", "6138");
INSERT INTO `wp_gf_form_view` VALUES("6103", "6", "2014-12-03 20:05:53", "66.249.79.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("6104", "3", "2014-12-03 21:00:00", "66.249.79.76", "6121");
INSERT INTO `wp_gf_form_view` VALUES("6105", "6", "2014-12-03 21:23:51", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("6106", "1", "2014-12-03 21:55:23", "162.243.170.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("6107", "2", "2014-12-03 21:55:23", "162.243.170.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("6108", "3", "2014-12-03 22:00:08", "66.249.79.124", "6072");
INSERT INTO `wp_gf_form_view` VALUES("6109", "6", "2014-12-03 22:01:24", "66.249.79.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("6110", "3", "2014-12-03 23:00:01", "66.249.79.84", "5566");
INSERT INTO `wp_gf_form_view` VALUES("6111", "6", "2014-12-03 23:00:04", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6112", "3", "2014-12-04 00:00:00", "66.249.79.76", "6106");
INSERT INTO `wp_gf_form_view` VALUES("6113", "6", "2014-12-04 00:24:59", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6114", "3", "2014-12-04 01:00:00", "66.249.79.84", "6769");
INSERT INTO `wp_gf_form_view` VALUES("6115", "3", "2014-12-04 02:00:00", "66.249.79.76", "4849");
INSERT INTO `wp_gf_form_view` VALUES("6116", "3", "2014-12-04 03:01:22", "66.249.79.76", "4842");
INSERT INTO `wp_gf_form_view` VALUES("6117", "3", "2014-12-04 04:00:00", "66.249.79.92", "6077");
INSERT INTO `wp_gf_form_view` VALUES("6118", "2", "2014-12-04 04:32:49", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6119", "6", "2014-12-04 04:51:06", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6120", "3", "2014-12-04 05:00:00", "66.249.79.84", "6729");
INSERT INTO `wp_gf_form_view` VALUES("6121", "6", "2014-12-04 05:01:47", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6122", "3", "2014-12-04 06:00:00", "66.249.79.84", "6532");
INSERT INTO `wp_gf_form_view` VALUES("6123", "2", "2014-12-04 06:13:55", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("6124", "6", "2014-12-04 06:21:14", "66.249.79.92", "7");
INSERT INTO `wp_gf_form_view` VALUES("6125", "3", "2014-12-04 07:00:00", "66.249.79.76", "6175");
INSERT INTO `wp_gf_form_view` VALUES("6126", "1", "2014-12-04 07:01:23", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6127", "6", "2014-12-04 07:26:54", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6128", "3", "2014-12-04 08:00:02", "66.249.79.84", "6789");
INSERT INTO `wp_gf_form_view` VALUES("6129", "6", "2014-12-04 08:19:59", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("6130", "3", "2014-12-04 09:00:00", "66.249.79.76", "6523");
INSERT INTO `wp_gf_form_view` VALUES("6131", "6", "2014-12-04 09:20:00", "66.249.79.92", "16");
INSERT INTO `wp_gf_form_view` VALUES("6132", "3", "2014-12-04 10:00:00", "66.249.79.92", "6644");
INSERT INTO `wp_gf_form_view` VALUES("6133", "6", "2014-12-04 10:18:29", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("6134", "3", "2014-12-04 11:00:01", "66.249.79.76", "6860");
INSERT INTO `wp_gf_form_view` VALUES("6135", "6", "2014-12-04 11:00:05", "66.249.79.84", "20");
INSERT INTO `wp_gf_form_view` VALUES("6136", "1", "2014-12-04 11:08:41", "113.193.248.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("6137", "3", "2014-12-04 12:00:00", "66.249.79.84", "6065");
INSERT INTO `wp_gf_form_view` VALUES("6138", "6", "2014-12-04 12:36:46", "202.46.62.107", "5");
INSERT INTO `wp_gf_form_view` VALUES("6139", "3", "2014-12-04 13:00:00", "66.249.79.92", "6615");
INSERT INTO `wp_gf_form_view` VALUES("6140", "6", "2014-12-04 13:22:08", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6141", "3", "2014-12-04 14:00:00", "66.249.79.76", "2793");
INSERT INTO `wp_gf_form_view` VALUES("6142", "6", "2014-12-04 14:02:41", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("6143", "3", "2014-12-04 15:00:00", "66.249.79.92", "5978");
INSERT INTO `wp_gf_form_view` VALUES("6144", "6", "2014-12-04 15:21:00", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6145", "3", "2014-12-04 16:00:00", "66.249.79.76", "6135");
INSERT INTO `wp_gf_form_view` VALUES("6146", "6", "2014-12-04 16:09:35", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("6147", "3", "2014-12-04 17:00:00", "66.249.79.92", "5405");
INSERT INTO `wp_gf_form_view` VALUES("6148", "6", "2014-12-04 17:06:38", "66.249.79.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("6149", "3", "2014-12-04 18:00:00", "66.249.79.92", "6330");
INSERT INTO `wp_gf_form_view` VALUES("6150", "6", "2014-12-04 18:16:57", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("6151", "3", "2014-12-04 19:00:00", "66.249.79.92", "15560");
INSERT INTO `wp_gf_form_view` VALUES("6152", "1", "2014-12-04 19:19:24", "96.50.84.237", "4");
INSERT INTO `wp_gf_form_view` VALUES("6153", "2", "2014-12-04 19:23:16", "82.80.249.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("6154", "6", "2014-12-04 19:24:59", "82.80.249.155", "20");
INSERT INTO `wp_gf_form_view` VALUES("6155", "3", "2014-12-04 20:00:00", "66.249.79.76", "4496");
INSERT INTO `wp_gf_form_view` VALUES("6156", "6", "2014-12-04 20:26:29", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6157", "3", "2014-12-04 21:00:00", "66.249.79.92", "5537");
INSERT INTO `wp_gf_form_view` VALUES("6158", "3", "2014-12-04 22:00:00", "66.249.79.76", "5836");
INSERT INTO `wp_gf_form_view` VALUES("6159", "6", "2014-12-04 22:53:17", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6160", "3", "2014-12-04 23:00:00", "66.249.79.76", "6150");
INSERT INTO `wp_gf_form_view` VALUES("6161", "6", "2014-12-04 23:14:43", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("6162", "3", "2014-12-05 00:00:01", "66.249.79.92", "6236");
INSERT INTO `wp_gf_form_view` VALUES("6163", "6", "2014-12-05 00:07:32", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6164", "3", "2014-12-05 01:00:00", "66.249.79.92", "6534");
INSERT INTO `wp_gf_form_view` VALUES("6165", "6", "2014-12-05 01:21:37", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("6166", "3", "2014-12-05 02:00:00", "66.249.79.84", "3293");
INSERT INTO `wp_gf_form_view` VALUES("6167", "6", "2014-12-05 02:26:04", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6168", "3", "2014-12-05 03:00:03", "66.249.79.76", "1003");
INSERT INTO `wp_gf_form_view` VALUES("6169", "2", "2014-12-05 03:27:52", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("6170", "6", "2014-12-05 03:28:58", "109.169.29.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("6171", "3", "2014-12-05 04:00:14", "66.249.79.92", "570");
INSERT INTO `wp_gf_form_view` VALUES("6172", "3", "2014-12-05 05:01:43", "66.249.79.92", "562");
INSERT INTO `wp_gf_form_view` VALUES("6173", "3", "2014-12-05 06:01:04", "66.249.79.84", "590");
INSERT INTO `wp_gf_form_view` VALUES("6174", "3", "2014-12-05 07:00:10", "66.249.79.84", "1328");
INSERT INTO `wp_gf_form_view` VALUES("6175", "2", "2014-12-05 07:21:19", "184.71.26.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("6176", "3", "2014-12-05 08:00:54", "66.249.79.84", "1262");
INSERT INTO `wp_gf_form_view` VALUES("6177", "2", "2014-12-05 08:16:43", "107.182.116.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("6178", "3", "2014-12-05 09:00:17", "66.249.79.84", "1846");
INSERT INTO `wp_gf_form_view` VALUES("6179", "6", "2014-12-05 09:24:50", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6180", "3", "2014-12-05 10:00:20", "66.249.79.84", "1350");
INSERT INTO `wp_gf_form_view` VALUES("6181", "6", "2014-12-05 10:38:44", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6182", "3", "2014-12-05 11:00:12", "66.249.79.92", "536");
INSERT INTO `wp_gf_form_view` VALUES("6183", "3", "2014-12-05 12:00:59", "66.249.79.84", "370");
INSERT INTO `wp_gf_form_view` VALUES("6184", "6", "2014-12-05 12:02:09", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6185", "1", "2014-12-05 12:12:54", "198.55.112.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("6186", "3", "2014-12-05 13:01:40", "66.249.67.92", "658");
INSERT INTO `wp_gf_form_view` VALUES("6187", "6", "2014-12-05 13:14:38", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6188", "3", "2014-12-05 14:00:19", "66.249.67.92", "3332");
INSERT INTO `wp_gf_form_view` VALUES("6189", "6", "2014-12-05 14:11:51", "66.249.67.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("6190", "3", "2014-12-05 15:00:06", "66.249.67.84", "3408");
INSERT INTO `wp_gf_form_view` VALUES("6191", "2", "2014-12-05 15:40:24", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("6192", "3", "2014-12-05 16:00:07", "66.249.79.76", "2970");
INSERT INTO `wp_gf_form_view` VALUES("6193", "6", "2014-12-05 16:38:15", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6194", "3", "2014-12-05 17:00:04", "66.249.79.76", "3599");
INSERT INTO `wp_gf_form_view` VALUES("6195", "3", "2014-12-05 18:00:03", "66.249.79.84", "4824");
INSERT INTO `wp_gf_form_view` VALUES("6196", "6", "2014-12-05 18:17:01", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("6197", "1", "2014-12-05 18:52:20", "107.170.56.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("6198", "3", "2014-12-05 19:00:00", "66.249.79.92", "9911");
INSERT INTO `wp_gf_form_view` VALUES("6199", "6", "2014-12-05 19:25:32", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6200", "3", "2014-12-05 20:00:00", "66.249.79.92", "6277");
INSERT INTO `wp_gf_form_view` VALUES("6201", "1", "2014-12-05 20:33:53", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("6202", "3", "2014-12-05 21:00:45", "66.249.79.92", "3446");
INSERT INTO `wp_gf_form_view` VALUES("6203", "6", "2014-12-05 21:57:06", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6204", "3", "2014-12-05 22:00:03", "66.249.79.84", "3504");
INSERT INTO `wp_gf_form_view` VALUES("6205", "6", "2014-12-05 22:02:14", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("6206", "3", "2014-12-05 23:00:05", "66.249.79.84", "2888");
INSERT INTO `wp_gf_form_view` VALUES("6207", "6", "2014-12-05 23:05:42", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("6208", "3", "2014-12-06 00:00:13", "66.249.79.76", "128");
INSERT INTO `wp_gf_form_view` VALUES("6209", "3", "2014-12-06 01:02:32", "192.99.134.49", "131");
INSERT INTO `wp_gf_form_view` VALUES("6210", "3", "2014-12-06 02:01:49", "100.43.85.24", "162");
INSERT INTO `wp_gf_form_view` VALUES("6211", "3", "2014-12-06 03:04:13", "157.55.39.127", "502");
INSERT INTO `wp_gf_form_view` VALUES("6212", "3", "2014-12-06 04:00:08", "68.180.229.33", "798");
INSERT INTO `wp_gf_form_view` VALUES("6213", "3", "2014-12-06 05:00:50", "66.249.79.84", "922");
INSERT INTO `wp_gf_form_view` VALUES("6214", "3", "2014-12-06 06:00:59", "66.249.79.84", "908");
INSERT INTO `wp_gf_form_view` VALUES("6215", "6", "2014-12-06 06:18:58", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6216", "3", "2014-12-06 07:00:38", "66.249.79.92", "857");
INSERT INTO `wp_gf_form_view` VALUES("6217", "3", "2014-12-06 08:00:13", "66.249.79.76", "1286");
INSERT INTO `wp_gf_form_view` VALUES("6218", "6", "2014-12-06 08:54:32", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6219", "3", "2014-12-06 09:00:14", "66.249.79.76", "1456");
INSERT INTO `wp_gf_form_view` VALUES("6220", "3", "2014-12-06 10:00:17", "66.249.79.92", "1348");
INSERT INTO `wp_gf_form_view` VALUES("6221", "2", "2014-12-06 10:52:38", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6222", "6", "2014-12-06 10:56:44", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6223", "3", "2014-12-06 11:00:14", "66.249.79.76", "661");
INSERT INTO `wp_gf_form_view` VALUES("6224", "3", "2014-12-06 12:11:57", "100.43.85.24", "51");
INSERT INTO `wp_gf_form_view` VALUES("6225", "3", "2014-12-06 13:00:05", "68.180.229.33", "272");
INSERT INTO `wp_gf_form_view` VALUES("6226", "6", "2014-12-06 13:56:21", "157.55.39.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("6227", "3", "2014-12-06 14:00:52", "68.180.229.33", "155");
INSERT INTO `wp_gf_form_view` VALUES("6228", "2", "2014-12-06 14:15:38", "167.160.110.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6229", "1", "2014-12-06 14:22:20", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("6230", "6", "2014-12-06 14:37:51", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("6231", "3", "2014-12-06 15:00:25", "66.249.79.92", "360");
INSERT INTO `wp_gf_form_view` VALUES("6232", "3", "2014-12-06 16:03:31", "66.249.79.92", "272");
INSERT INTO `wp_gf_form_view` VALUES("6233", "3", "2014-12-06 17:07:18", "66.249.79.76", "234");
INSERT INTO `wp_gf_form_view` VALUES("6234", "3", "2014-12-06 18:01:30", "66.249.79.76", "422");
INSERT INTO `wp_gf_form_view` VALUES("6235", "3", "2014-12-06 19:04:43", "66.249.79.92", "147");
INSERT INTO `wp_gf_form_view` VALUES("6236", "3", "2014-12-06 20:00:18", "162.244.13.28", "232");
INSERT INTO `wp_gf_form_view` VALUES("6237", "1", "2014-12-06 20:00:19", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6238", "3", "2014-12-06 21:00:15", "66.249.79.76", "496");
INSERT INTO `wp_gf_form_view` VALUES("6239", "3", "2014-12-06 22:00:07", "66.249.79.76", "642");
INSERT INTO `wp_gf_form_view` VALUES("6240", "3", "2014-12-06 23:00:16", "66.249.79.76", "398");
INSERT INTO `wp_gf_form_view` VALUES("6241", "3", "2014-12-07 00:12:21", "202.46.61.105", "172");
INSERT INTO `wp_gf_form_view` VALUES("6242", "3", "2014-12-07 01:01:03", "100.43.85.24", "194");
INSERT INTO `wp_gf_form_view` VALUES("6243", "3", "2014-12-07 02:00:04", "100.43.85.24", "551");
INSERT INTO `wp_gf_form_view` VALUES("6244", "1", "2014-12-07 02:35:59", "27.150.242.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("6245", "3", "2014-12-07 03:00:22", "66.249.79.84", "1498");
INSERT INTO `wp_gf_form_view` VALUES("6246", "3", "2014-12-07 04:00:17", "66.249.79.76", "1644");
INSERT INTO `wp_gf_form_view` VALUES("6247", "3", "2014-12-07 05:00:05", "66.249.79.84", "1742");
INSERT INTO `wp_gf_form_view` VALUES("6248", "6", "2014-12-07 05:29:46", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6249", "3", "2014-12-07 06:00:00", "66.249.79.92", "1552");
INSERT INTO `wp_gf_form_view` VALUES("6250", "3", "2014-12-07 07:00:05", "66.249.79.76", "608");
INSERT INTO `wp_gf_form_view` VALUES("6251", "3", "2014-12-07 08:05:19", "66.249.79.84", "210");
INSERT INTO `wp_gf_form_view` VALUES("6252", "3", "2014-12-07 09:03:05", "207.46.13.31", "532");
INSERT INTO `wp_gf_form_view` VALUES("6253", "2", "2014-12-07 09:56:43", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("6254", "3", "2014-12-07 10:00:10", "66.249.79.76", "494");
INSERT INTO `wp_gf_form_view` VALUES("6255", "3", "2014-12-07 11:00:00", "66.249.79.92", "756");
INSERT INTO `wp_gf_form_view` VALUES("6256", "6", "2014-12-07 11:53:43", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6257", "3", "2014-12-07 12:00:15", "66.249.79.84", "600");
INSERT INTO `wp_gf_form_view` VALUES("6258", "6", "2014-12-07 12:57:37", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("6259", "3", "2014-12-07 13:06:15", "100.43.85.24", "260");
INSERT INTO `wp_gf_form_view` VALUES("6260", "3", "2014-12-07 14:06:31", "157.55.39.62", "1052");
INSERT INTO `wp_gf_form_view` VALUES("6261", "6", "2014-12-07 14:54:36", "157.55.39.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("6262", "3", "2014-12-07 15:00:26", "66.249.79.92", "1070");
INSERT INTO `wp_gf_form_view` VALUES("6263", "3", "2014-12-07 16:00:03", "66.249.79.76", "1038");
INSERT INTO `wp_gf_form_view` VALUES("6264", "3", "2014-12-07 17:00:06", "66.249.79.76", "1008");
INSERT INTO `wp_gf_form_view` VALUES("6265", "6", "2014-12-07 17:43:47", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6266", "3", "2014-12-07 18:00:17", "66.249.79.76", "1456");
INSERT INTO `wp_gf_form_view` VALUES("6267", "6", "2014-12-07 18:13:41", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6268", "3", "2014-12-07 19:00:22", "66.249.79.84", "1685");
INSERT INTO `wp_gf_form_view` VALUES("6269", "3", "2014-12-07 20:00:00", "66.249.79.84", "1872");
INSERT INTO `wp_gf_form_view` VALUES("6270", "6", "2014-12-07 20:51:48", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6271", "3", "2014-12-07 21:00:00", "66.249.79.92", "1435");
INSERT INTO `wp_gf_form_view` VALUES("6272", "6", "2014-12-07 21:23:07", "68.180.229.33", "3");
INSERT INTO `wp_gf_form_view` VALUES("6273", "3", "2014-12-07 22:00:00", "27.150.242.156", "1401");
INSERT INTO `wp_gf_form_view` VALUES("6274", "3", "2014-12-07 23:00:18", "66.249.79.84", "1030");
INSERT INTO `wp_gf_form_view` VALUES("6275", "2", "2014-12-07 23:49:25", "27.150.242.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("6276", "3", "2014-12-08 00:00:26", "66.249.79.76", "1588");
INSERT INTO `wp_gf_form_view` VALUES("6277", "3", "2014-12-08 01:00:02", "66.249.79.92", "1792");
INSERT INTO `wp_gf_form_view` VALUES("6278", "3", "2014-12-08 02:00:11", "100.43.85.24", "1689");
INSERT INTO `wp_gf_form_view` VALUES("6279", "6", "2014-12-08 02:02:49", "188.165.15.129", "3");
INSERT INTO `wp_gf_form_view` VALUES("6280", "3", "2014-12-08 03:00:14", "66.249.79.84", "1354");
INSERT INTO `wp_gf_form_view` VALUES("6281", "6", "2014-12-08 03:09:28", "66.249.79.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("6282", "3", "2014-12-08 04:00:22", "66.249.79.92", "360");
INSERT INTO `wp_gf_form_view` VALUES("6283", "3", "2014-12-08 05:04:00", "66.249.79.76", "284");
INSERT INTO `wp_gf_form_view` VALUES("6284", "3", "2014-12-08 06:00:17", "100.43.85.24", "924");
INSERT INTO `wp_gf_form_view` VALUES("6285", "3", "2014-12-08 07:00:29", "66.249.79.92", "472");
INSERT INTO `wp_gf_form_view` VALUES("6286", "6", "2014-12-08 07:33:03", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6287", "3", "2014-12-08 08:02:23", "100.43.85.24", "536");
INSERT INTO `wp_gf_form_view` VALUES("6288", "3", "2014-12-08 09:03:43", "66.249.79.92", "362");
INSERT INTO `wp_gf_form_view` VALUES("6289", "3", "2014-12-08 10:00:07", "66.249.79.92", "498");
INSERT INTO `wp_gf_form_view` VALUES("6290", "3", "2014-12-08 11:00:29", "66.249.79.76", "254");
INSERT INTO `wp_gf_form_view` VALUES("6291", "3", "2014-12-08 12:02:38", "157.55.39.212", "70");
INSERT INTO `wp_gf_form_view` VALUES("6292", "3", "2014-12-08 13:03:29", "66.249.79.84", "82");
INSERT INTO `wp_gf_form_view` VALUES("6293", "3", "2014-12-08 14:02:04", "66.249.79.92", "76");
INSERT INTO `wp_gf_form_view` VALUES("6294", "3", "2014-12-08 15:00:10", "100.43.85.24", "140");
INSERT INTO `wp_gf_form_view` VALUES("6295", "2", "2014-12-08 15:39:01", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("6296", "3", "2014-12-08 16:09:26", "100.43.85.24", "317");
INSERT INTO `wp_gf_form_view` VALUES("6297", "3", "2014-12-08 17:00:28", "66.249.79.76", "720");
INSERT INTO `wp_gf_form_view` VALUES("6298", "3", "2014-12-08 18:00:23", "66.249.79.76", "398");
INSERT INTO `wp_gf_form_view` VALUES("6299", "1", "2014-12-08 18:05:10", "192.99.141.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("6300", "3", "2014-12-08 19:08:51", "157.55.39.212", "70");
INSERT INTO `wp_gf_form_view` VALUES("6301", "3", "2014-12-08 20:17:03", "100.43.85.24", "234");
INSERT INTO `wp_gf_form_view` VALUES("6302", "3", "2014-12-08 21:01:03", "66.249.79.76", "350");
INSERT INTO `wp_gf_form_view` VALUES("6303", "3", "2014-12-08 22:01:41", "66.249.79.92", "352");
INSERT INTO `wp_gf_form_view` VALUES("6304", "3", "2014-12-08 23:00:10", "66.249.79.84", "402");
INSERT INTO `wp_gf_form_view` VALUES("6305", "2", "2014-12-08 23:07:34", "27.159.216.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("6306", "3", "2014-12-09 00:01:41", "66.249.79.92", "5496");
INSERT INTO `wp_gf_form_view` VALUES("6307", "3", "2014-12-09 01:00:05", "66.249.79.76", "6810");
INSERT INTO `wp_gf_form_view` VALUES("6308", "3", "2014-12-09 02:00:00", "66.249.79.84", "6343");
INSERT INTO `wp_gf_form_view` VALUES("6309", "6", "2014-12-09 02:53:38", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("6310", "3", "2014-12-09 03:00:01", "66.249.79.84", "7626");
INSERT INTO `wp_gf_form_view` VALUES("6311", "6", "2014-12-09 03:47:31", "74.247.76.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("6312", "1", "2014-12-09 03:48:18", "74.247.76.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("6313", "2", "2014-12-09 03:48:29", "74.247.76.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("6314", "3", "2014-12-09 04:00:00", "66.249.79.92", "6921");
INSERT INTO `wp_gf_form_view` VALUES("6315", "3", "2014-12-09 05:00:01", "66.249.79.84", "5785");
INSERT INTO `wp_gf_form_view` VALUES("6316", "3", "2014-12-09 06:00:45", "66.249.79.84", "7032");
INSERT INTO `wp_gf_form_view` VALUES("6317", "6", "2014-12-09 06:03:15", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6318", "3", "2014-12-09 07:00:00", "66.249.79.92", "6274");
INSERT INTO `wp_gf_form_view` VALUES("6319", "6", "2014-12-09 07:54:59", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6320", "3", "2014-12-09 08:00:02", "66.249.79.92", "5784");
INSERT INTO `wp_gf_form_view` VALUES("6321", "3", "2014-12-09 09:00:00", "66.249.79.76", "6617");
INSERT INTO `wp_gf_form_view` VALUES("6322", "6", "2014-12-09 09:21:38", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6323", "3", "2014-12-09 10:00:02", "66.249.79.84", "5964");
INSERT INTO `wp_gf_form_view` VALUES("6324", "1", "2014-12-09 10:34:44", "91.200.12.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("6325", "3", "2014-12-09 11:01:07", "66.249.79.76", "804");
INSERT INTO `wp_gf_form_view` VALUES("6326", "1", "2014-12-09 11:39:48", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6327", "3", "2014-12-09 12:00:31", "66.249.79.92", "451");
INSERT INTO `wp_gf_form_view` VALUES("6328", "6", "2014-12-09 12:17:11", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6329", "3", "2014-12-09 13:00:00", "66.249.79.84", "2094");
INSERT INTO `wp_gf_form_view` VALUES("6330", "3", "2014-12-09 14:00:08", "66.249.79.76", "3553");
INSERT INTO `wp_gf_form_view` VALUES("6331", "3", "2014-12-09 15:00:02", "66.249.79.76", "3856");
INSERT INTO `wp_gf_form_view` VALUES("6332", "3", "2014-12-09 16:00:01", "66.249.79.76", "3564");
INSERT INTO `wp_gf_form_view` VALUES("6333", "6", "2014-12-09 16:28:38", "100.43.85.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("6334", "1", "2014-12-09 16:33:47", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6335", "3", "2014-12-09 17:00:07", "66.249.79.84", "3440");
INSERT INTO `wp_gf_form_view` VALUES("6336", "1", "2014-12-09 17:44:47", "198.199.123.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("6337", "2", "2014-12-09 17:44:47", "198.199.123.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("6338", "3", "2014-12-09 18:00:05", "66.249.79.76", "3414");
INSERT INTO `wp_gf_form_view` VALUES("6339", "3", "2014-12-09 19:00:04", "66.249.79.76", "4001");
INSERT INTO `wp_gf_form_view` VALUES("6340", "6", "2014-12-09 19:23:19", "79.116.31.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("6341", "1", "2014-12-09 19:24:02", "79.116.31.254", "3");
INSERT INTO `wp_gf_form_view` VALUES("6342", "2", "2014-12-09 19:24:12", "79.116.31.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("6343", "3", "2014-12-09 20:00:04", "66.249.79.84", "3018");
INSERT INTO `wp_gf_form_view` VALUES("6344", "3", "2014-12-09 21:00:01", "66.249.79.76", "3250");
INSERT INTO `wp_gf_form_view` VALUES("6345", "6", "2014-12-09 21:52:39", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6346", "6", "2014-12-09 22:00:09", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6347", "3", "2014-12-09 22:00:10", "66.249.79.92", "1608");
INSERT INTO `wp_gf_form_view` VALUES("6348", "3", "2014-12-09 23:00:23", "66.249.79.76", "888");
INSERT INTO `wp_gf_form_view` VALUES("6349", "6", "2014-12-09 23:18:32", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("6350", "3", "2014-12-10 00:00:13", "66.249.79.92", "596");
INSERT INTO `wp_gf_form_view` VALUES("6351", "6", "2014-12-10 00:59:28", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("6352", "3", "2014-12-10 01:00:08", "66.249.79.92", "764");
INSERT INTO `wp_gf_form_view` VALUES("6353", "3", "2014-12-10 02:00:02", "66.249.79.84", "1220");
INSERT INTO `wp_gf_form_view` VALUES("6354", "6", "2014-12-10 02:39:57", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6355", "3", "2014-12-10 03:00:14", "66.249.79.76", "1559");
INSERT INTO `wp_gf_form_view` VALUES("6356", "6", "2014-12-10 03:23:36", "202.46.50.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("6357", "3", "2014-12-10 04:00:02", "66.249.79.84", "1676");
INSERT INTO `wp_gf_form_view` VALUES("6358", "6", "2014-12-10 04:32:47", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6359", "3", "2014-12-10 05:00:09", "66.249.79.92", "944");
INSERT INTO `wp_gf_form_view` VALUES("6360", "3", "2014-12-10 06:00:24", "66.249.79.84", "898");
INSERT INTO `wp_gf_form_view` VALUES("6361", "1", "2014-12-10 06:41:02", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("6362", "3", "2014-12-10 07:00:08", "66.249.79.84", "392");
INSERT INTO `wp_gf_form_view` VALUES("6363", "3", "2014-12-10 08:00:38", "66.249.79.76", "290");
INSERT INTO `wp_gf_form_view` VALUES("6364", "3", "2014-12-10 09:00:20", "66.249.79.92", "816");
INSERT INTO `wp_gf_form_view` VALUES("6365", "3", "2014-12-10 10:01:14", "66.249.79.92", "850");
INSERT INTO `wp_gf_form_view` VALUES("6366", "3", "2014-12-10 11:00:20", "66.249.79.84", "690");
INSERT INTO `wp_gf_form_view` VALUES("6367", "3", "2014-12-10 12:00:03", "66.249.79.92", "5442");
INSERT INTO `wp_gf_form_view` VALUES("6368", "2", "2014-12-10 12:09:54", "144.76.182.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("6369", "1", "2014-12-10 12:10:03", "144.76.182.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("6370", "6", "2014-12-10 12:17:32", "144.76.182.149", "11");
INSERT INTO `wp_gf_form_view` VALUES("6371", "3", "2014-12-10 13:00:03", "144.76.182.149", "5928");
INSERT INTO `wp_gf_form_view` VALUES("6372", "6", "2014-12-10 13:37:40", "144.76.182.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("6373", "3", "2014-12-10 14:00:01", "144.76.182.149", "3568");
INSERT INTO `wp_gf_form_view` VALUES("6374", "6", "2014-12-10 14:48:41", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6375", "3", "2014-12-10 15:00:17", "66.249.79.76", "2114");
INSERT INTO `wp_gf_form_view` VALUES("6376", "6", "2014-12-10 15:11:52", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6377", "3", "2014-12-10 16:00:08", "66.249.79.92", "2002");
INSERT INTO `wp_gf_form_view` VALUES("6378", "3", "2014-12-10 17:00:00", "66.249.79.76", "2080");
INSERT INTO `wp_gf_form_view` VALUES("6379", "3", "2014-12-10 18:00:08", "66.249.79.84", "2124");
INSERT INTO `wp_gf_form_view` VALUES("6380", "6", "2014-12-10 18:09:55", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("6381", "3", "2014-12-10 19:00:23", "66.249.79.76", "672");
INSERT INTO `wp_gf_form_view` VALUES("6382", "6", "2014-12-10 19:14:07", "188.165.15.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("6383", "1", "2014-12-10 19:54:51", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6384", "3", "2014-12-10 20:03:28", "66.249.79.84", "190");
INSERT INTO `wp_gf_form_view` VALUES("6385", "3", "2014-12-10 21:02:37", "100.43.85.24", "128");
INSERT INTO `wp_gf_form_view` VALUES("6386", "3", "2014-12-10 22:24:47", "188.165.15.235", "60");
INSERT INTO `wp_gf_form_view` VALUES("6387", "3", "2014-12-10 23:10:31", "66.249.79.76", "230");
INSERT INTO `wp_gf_form_view` VALUES("6388", "3", "2014-12-11 00:05:02", "66.249.79.92", "540");
INSERT INTO `wp_gf_form_view` VALUES("6389", "6", "2014-12-11 00:15:32", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6390", "3", "2014-12-11 01:01:12", "66.249.79.76", "1716");
INSERT INTO `wp_gf_form_view` VALUES("6391", "1", "2014-12-11 01:08:47", "85.17.73.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("6392", "2", "2014-12-11 01:10:17", "85.17.73.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("6393", "3", "2014-12-11 02:00:06", "66.249.79.84", "2070");
INSERT INTO `wp_gf_form_view` VALUES("6394", "3", "2014-12-11 03:00:05", "66.249.79.84", "2290");
INSERT INTO `wp_gf_form_view` VALUES("6395", "3", "2014-12-11 04:00:14", "66.249.79.76", "2084");
INSERT INTO `wp_gf_form_view` VALUES("6396", "3", "2014-12-11 05:00:00", "66.249.79.92", "2160");
INSERT INTO `wp_gf_form_view` VALUES("6397", "6", "2014-12-11 05:11:40", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6398", "3", "2014-12-11 06:00:08", "66.249.79.84", "2367");
INSERT INTO `wp_gf_form_view` VALUES("6399", "1", "2014-12-11 06:20:26", "107.150.36.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("6400", "3", "2014-12-11 07:00:11", "66.249.79.76", "2030");
INSERT INTO `wp_gf_form_view` VALUES("6401", "6", "2014-12-11 07:23:37", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6402", "3", "2014-12-11 08:00:12", "157.55.39.162", "2334");
INSERT INTO `wp_gf_form_view` VALUES("6403", "3", "2014-12-11 09:00:08", "66.249.79.84", "1784");
INSERT INTO `wp_gf_form_view` VALUES("6404", "6", "2014-12-11 09:35:14", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6405", "3", "2014-12-11 10:00:28", "100.43.85.24", "180");
INSERT INTO `wp_gf_form_view` VALUES("6406", "3", "2014-12-11 11:04:36", "66.249.79.76", "202");
INSERT INTO `wp_gf_form_view` VALUES("6407", "6", "2014-12-11 11:35:06", "100.43.85.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("6408", "3", "2014-12-11 12:05:30", "157.55.39.212", "348");
INSERT INTO `wp_gf_form_view` VALUES("6409", "1", "2014-12-11 12:32:42", "120.71.26.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("6410", "3", "2014-12-11 13:00:53", "66.249.79.76", "292");
INSERT INTO `wp_gf_form_view` VALUES("6411", "2", "2014-12-11 13:11:41", "188.165.15.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("6412", "3", "2014-12-11 14:02:15", "66.249.79.92", "338");
INSERT INTO `wp_gf_form_view` VALUES("6413", "6", "2014-12-11 14:05:34", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("6414", "3", "2014-12-11 15:09:18", "216.244.81.35", "220");
INSERT INTO `wp_gf_form_view` VALUES("6415", "3", "2014-12-11 16:00:05", "66.249.79.84", "1424");
INSERT INTO `wp_gf_form_view` VALUES("6416", "3", "2014-12-11 17:00:04", "66.249.79.84", "1690");
INSERT INTO `wp_gf_form_view` VALUES("6417", "3", "2014-12-11 18:00:22", "66.249.79.84", "1464");
INSERT INTO `wp_gf_form_view` VALUES("6418", "3", "2014-12-11 19:00:02", "66.249.79.92", "2132");
INSERT INTO `wp_gf_form_view` VALUES("6419", "6", "2014-12-11 19:38:34", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6420", "3", "2014-12-11 20:00:05", "66.249.79.76", "2283");
INSERT INTO `wp_gf_form_view` VALUES("6421", "3", "2014-12-11 21:02:17", "24.108.89.147", "442");
INSERT INTO `wp_gf_form_view` VALUES("6422", "3", "2014-12-11 22:00:01", "208.43.245.104", "1109");
INSERT INTO `wp_gf_form_view` VALUES("6423", "1", "2014-12-11 22:02:56", "208.43.245.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("6424", "6", "2014-12-11 22:07:09", "208.43.245.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("6425", "3", "2014-12-11 23:01:51", "100.43.85.24", "230");
INSERT INTO `wp_gf_form_view` VALUES("6426", "3", "2014-12-12 00:00:04", "107.168.11.92", "339");
INSERT INTO `wp_gf_form_view` VALUES("6427", "3", "2014-12-12 01:00:20", "66.249.79.84", "988");
INSERT INTO `wp_gf_form_view` VALUES("6428", "6", "2014-12-12 01:03:00", "157.55.39.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("6429", "2", "2014-12-12 01:04:53", "157.55.39.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("6430", "3", "2014-12-12 02:00:11", "66.249.79.92", "618");
INSERT INTO `wp_gf_form_view` VALUES("6431", "3", "2014-12-12 03:00:01", "24.244.23.214", "656");
INSERT INTO `wp_gf_form_view` VALUES("6432", "3", "2014-12-12 04:00:00", "66.249.79.92", "876");
INSERT INTO `wp_gf_form_view` VALUES("6433", "3", "2014-12-12 05:00:11", "66.249.79.84", "524");
INSERT INTO `wp_gf_form_view` VALUES("6434", "3", "2014-12-12 06:03:00", "66.249.79.84", "662");
INSERT INTO `wp_gf_form_view` VALUES("6435", "3", "2014-12-12 07:00:00", "24.108.74.143", "606");
INSERT INTO `wp_gf_form_view` VALUES("6436", "1", "2014-12-12 07:08:33", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6437", "3", "2014-12-12 08:00:25", "66.249.79.76", "441");
INSERT INTO `wp_gf_form_view` VALUES("6438", "3", "2014-12-12 09:08:16", "157.55.39.212", "154");
INSERT INTO `wp_gf_form_view` VALUES("6439", "3", "2014-12-12 10:03:04", "66.249.79.92", "330");
INSERT INTO `wp_gf_form_view` VALUES("6440", "3", "2014-12-12 11:00:10", "157.55.39.62", "230");
INSERT INTO `wp_gf_form_view` VALUES("6441", "3", "2014-12-12 12:01:47", "157.55.39.62", "296");
INSERT INTO `wp_gf_form_view` VALUES("6442", "3", "2014-12-12 13:02:19", "66.249.79.92", "1274");
INSERT INTO `wp_gf_form_view` VALUES("6443", "3", "2014-12-12 14:00:07", "66.249.79.92", "1422");
INSERT INTO `wp_gf_form_view` VALUES("6444", "3", "2014-12-12 15:00:05", "66.249.79.92", "1270");
INSERT INTO `wp_gf_form_view` VALUES("6445", "6", "2014-12-12 15:53:53", "216.244.81.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("6446", "3", "2014-12-12 16:00:00", "66.249.79.84", "798");
INSERT INTO `wp_gf_form_view` VALUES("6447", "3", "2014-12-12 17:00:27", "66.249.79.92", "414");
INSERT INTO `wp_gf_form_view` VALUES("6448", "3", "2014-12-12 18:04:01", "66.249.79.84", "314");
INSERT INTO `wp_gf_form_view` VALUES("6449", "1", "2014-12-12 18:12:33", "98.143.144.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("6450", "3", "2014-12-12 19:02:06", "157.55.39.62", "206");
INSERT INTO `wp_gf_form_view` VALUES("6451", "1", "2014-12-12 19:34:20", "98.143.144.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("6452", "3", "2014-12-12 20:03:57", "66.249.79.76", "213");
INSERT INTO `wp_gf_form_view` VALUES("6453", "3", "2014-12-12 21:00:05", "66.249.79.76", "574");
INSERT INTO `wp_gf_form_view` VALUES("6454", "3", "2014-12-12 22:00:20", "66.249.79.92", "708");
INSERT INTO `wp_gf_form_view` VALUES("6455", "6", "2014-12-12 22:43:44", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6456", "3", "2014-12-12 23:00:20", "66.249.79.92", "1114");
INSERT INTO `wp_gf_form_view` VALUES("6457", "1", "2014-12-12 23:51:11", "174.127.133.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("6458", "2", "2014-12-12 23:54:48", "174.127.133.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("6459", "3", "2014-12-13 00:00:15", "66.249.79.76", "694");
INSERT INTO `wp_gf_form_view` VALUES("6460", "3", "2014-12-13 01:00:01", "66.249.79.76", "942");
INSERT INTO `wp_gf_form_view` VALUES("6461", "6", "2014-12-13 01:49:36", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("6462", "3", "2014-12-13 02:00:03", "66.249.79.76", "1702");
INSERT INTO `wp_gf_form_view` VALUES("6463", "3", "2014-12-13 03:00:07", "66.249.79.76", "1218");
INSERT INTO `wp_gf_form_view` VALUES("6464", "3", "2014-12-13 04:00:00", "66.249.79.76", "1647");
INSERT INTO `wp_gf_form_view` VALUES("6465", "6", "2014-12-13 04:04:53", "66.249.79.92", "5");
INSERT INTO `wp_gf_form_view` VALUES("6466", "3", "2014-12-13 05:00:22", "66.249.79.84", "1486");
INSERT INTO `wp_gf_form_view` VALUES("6467", "3", "2014-12-13 06:00:06", "66.249.79.92", "678");
INSERT INTO `wp_gf_form_view` VALUES("6468", "3", "2014-12-13 07:01:57", "66.249.79.92", "934");
INSERT INTO `wp_gf_form_view` VALUES("6469", "3", "2014-12-13 08:00:11", "66.249.79.92", "932");
INSERT INTO `wp_gf_form_view` VALUES("6470", "3", "2014-12-13 09:00:05", "66.249.79.76", "923");
INSERT INTO `wp_gf_form_view` VALUES("6471", "1", "2014-12-13 09:53:43", "5.135.216.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("6472", "3", "2014-12-13 10:00:00", "66.249.79.76", "904");
INSERT INTO `wp_gf_form_view` VALUES("6473", "3", "2014-12-13 11:00:26", "66.249.79.84", "428");
INSERT INTO `wp_gf_form_view` VALUES("6474", "3", "2014-12-13 12:02:43", "157.55.39.212", "190");
INSERT INTO `wp_gf_form_view` VALUES("6475", "1", "2014-12-13 12:20:41", "91.200.12.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("6476", "3", "2014-12-13 13:03:47", "157.55.39.162", "438");
INSERT INTO `wp_gf_form_view` VALUES("6477", "3", "2014-12-13 14:00:12", "66.249.79.76", "462");
INSERT INTO `wp_gf_form_view` VALUES("6478", "3", "2014-12-13 15:00:02", "66.249.79.92", "751");
INSERT INTO `wp_gf_form_view` VALUES("6479", "6", "2014-12-13 15:33:42", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6480", "3", "2014-12-13 16:00:27", "66.249.79.84", "682");
INSERT INTO `wp_gf_form_view` VALUES("6481", "3", "2014-12-13 17:02:01", "157.55.39.211", "636");
INSERT INTO `wp_gf_form_view` VALUES("6482", "3", "2014-12-13 18:00:05", "66.249.79.84", "662");
INSERT INTO `wp_gf_form_view` VALUES("6483", "3", "2014-12-13 19:01:35", "157.55.39.162", "362");
INSERT INTO `wp_gf_form_view` VALUES("6484", "3", "2014-12-13 20:04:05", "157.55.39.162", "136");
INSERT INTO `wp_gf_form_view` VALUES("6485", "3", "2014-12-13 21:00:06", "157.55.39.162", "265");
INSERT INTO `wp_gf_form_view` VALUES("6486", "3", "2014-12-13 22:02:02", "157.55.39.211", "290");
INSERT INTO `wp_gf_form_view` VALUES("6487", "6", "2014-12-13 22:18:35", "157.55.39.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("6488", "3", "2014-12-13 23:03:30", "157.55.39.25", "483");
INSERT INTO `wp_gf_form_view` VALUES("6489", "6", "2014-12-13 23:06:51", "89.123.55.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("6490", "1", "2014-12-13 23:07:25", "89.123.55.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("6491", "3", "2014-12-14 00:00:41", "157.55.39.221", "282");
INSERT INTO `wp_gf_form_view` VALUES("6492", "6", "2014-12-14 00:54:20", "157.55.39.212", "2");
INSERT INTO `wp_gf_form_view` VALUES("6493", "3", "2014-12-14 01:00:44", "157.55.39.213", "302");
INSERT INTO `wp_gf_form_view` VALUES("6494", "3", "2014-12-14 02:05:07", "66.249.79.76", "350");
INSERT INTO `wp_gf_form_view` VALUES("6495", "3", "2014-12-14 03:05:06", "157.55.39.162", "438");
INSERT INTO `wp_gf_form_view` VALUES("6496", "3", "2014-12-14 04:00:39", "66.249.79.76", "480");
INSERT INTO `wp_gf_form_view` VALUES("6497", "6", "2014-12-14 04:10:24", "216.244.81.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("6498", "3", "2014-12-14 05:01:59", "66.249.79.76", "290");
INSERT INTO `wp_gf_form_view` VALUES("6499", "3", "2014-12-14 06:00:52", "157.55.39.62", "272");
INSERT INTO `wp_gf_form_view` VALUES("6500", "3", "2014-12-14 07:01:11", "157.55.39.62", "210");
INSERT INTO `wp_gf_form_view` VALUES("6501", "1", "2014-12-14 08:04:47", "192.200.24.249", "3");
INSERT INTO `wp_gf_form_view` VALUES("6502", "3", "2014-12-14 08:04:47", "192.200.24.249", "638");
INSERT INTO `wp_gf_form_view` VALUES("6503", "2", "2014-12-14 08:29:57", "62.210.142.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("6504", "3", "2014-12-14 09:07:00", "157.55.39.62", "214");
INSERT INTO `wp_gf_form_view` VALUES("6505", "3", "2014-12-14 10:06:12", "157.55.39.211", "236");
INSERT INTO `wp_gf_form_view` VALUES("6506", "3", "2014-12-14 11:02:32", "157.55.39.62", "200");
INSERT INTO `wp_gf_form_view` VALUES("6507", "1", "2014-12-14 11:38:41", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6508", "3", "2014-12-14 12:04:30", "46.118.39.29", "180");
INSERT INTO `wp_gf_form_view` VALUES("6509", "3", "2014-12-14 13:06:15", "157.55.39.211", "266");
INSERT INTO `wp_gf_form_view` VALUES("6510", "3", "2014-12-14 14:07:08", "157.55.39.13", "409");
INSERT INTO `wp_gf_form_view` VALUES("6511", "3", "2014-12-14 15:00:05", "66.249.79.76", "428");
INSERT INTO `wp_gf_form_view` VALUES("6512", "3", "2014-12-14 16:11:30", "66.249.79.92", "796");
INSERT INTO `wp_gf_form_view` VALUES("6513", "6", "2014-12-14 16:33:45", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6514", "3", "2014-12-14 17:00:33", "66.249.79.84", "980");
INSERT INTO `wp_gf_form_view` VALUES("6515", "3", "2014-12-14 18:02:28", "24.68.239.2", "455");
INSERT INTO `wp_gf_form_view` VALUES("6516", "3", "2014-12-14 18:02:28", "24.68.239.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("6517", "1", "2014-12-14 18:11:54", "174.127.133.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("6518", "3", "2014-12-14 19:00:10", "66.249.79.76", "636");
INSERT INTO `wp_gf_form_view` VALUES("6519", "3", "2014-12-14 20:06:03", "157.55.39.221", "480");
INSERT INTO `wp_gf_form_view` VALUES("6520", "3", "2014-12-14 21:00:00", "66.249.79.84", "786");
INSERT INTO `wp_gf_form_view` VALUES("6521", "3", "2014-12-14 22:00:12", "74.214.134.243", "824");
INSERT INTO `wp_gf_form_view` VALUES("6522", "3", "2014-12-14 23:04:43", "66.249.79.84", "592");
INSERT INTO `wp_gf_form_view` VALUES("6523", "3", "2014-12-15 00:00:29", "66.249.79.84", "262");
INSERT INTO `wp_gf_form_view` VALUES("6524", "3", "2014-12-15 01:02:20", "157.55.39.162", "464");
INSERT INTO `wp_gf_form_view` VALUES("6525", "3", "2014-12-15 02:00:24", "66.249.79.84", "396");
INSERT INTO `wp_gf_form_view` VALUES("6526", "3", "2014-12-15 03:08:55", "66.249.79.84", "562");
INSERT INTO `wp_gf_form_view` VALUES("6527", "3", "2014-12-15 04:00:39", "66.249.79.84", "948");
INSERT INTO `wp_gf_form_view` VALUES("6528", "6", "2014-12-15 04:51:05", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6529", "3", "2014-12-15 05:00:16", "66.249.79.92", "838");
INSERT INTO `wp_gf_form_view` VALUES("6530", "6", "2014-12-15 05:59:40", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6531", "3", "2014-12-15 06:00:00", "66.249.79.76", "500");
INSERT INTO `wp_gf_form_view` VALUES("6532", "6", "2014-12-15 06:24:34", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6533", "3", "2014-12-15 07:01:48", "66.249.79.76", "130");
INSERT INTO `wp_gf_form_view` VALUES("6534", "3", "2014-12-15 08:10:35", "157.55.39.15", "58");
INSERT INTO `wp_gf_form_view` VALUES("6535", "3", "2014-12-15 09:27:25", "157.55.39.211", "60");
INSERT INTO `wp_gf_form_view` VALUES("6536", "1", "2014-12-15 09:28:53", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6537", "3", "2014-12-15 10:15:19", "66.249.79.84", "70");
INSERT INTO `wp_gf_form_view` VALUES("6538", "3", "2014-12-15 11:11:58", "157.55.39.212", "54");
INSERT INTO `wp_gf_form_view` VALUES("6539", "3", "2014-12-15 12:10:37", "66.249.67.92", "70");
INSERT INTO `wp_gf_form_view` VALUES("6540", "3", "2014-12-15 13:11:35", "100.43.85.24", "440");
INSERT INTO `wp_gf_form_view` VALUES("6541", "6", "2014-12-15 13:38:40", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("6542", "3", "2014-12-15 14:04:28", "66.249.67.92", "164");
INSERT INTO `wp_gf_form_view` VALUES("6543", "3", "2014-12-15 15:00:13", "66.249.67.84", "6404");
INSERT INTO `wp_gf_form_view` VALUES("6544", "2", "2014-12-15 15:24:22", "5.9.223.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("6545", "1", "2014-12-15 15:24:41", "5.9.223.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("6546", "6", "2014-12-15 15:24:59", "5.9.223.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("6547", "3", "2014-12-15 16:00:01", "5.9.223.170", "616");
INSERT INTO `wp_gf_form_view` VALUES("6548", "6", "2014-12-15 16:41:55", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("6549", "3", "2014-12-15 17:00:03", "202.46.63.160", "184");
INSERT INTO `wp_gf_form_view` VALUES("6550", "3", "2014-12-15 18:02:54", "68.180.229.33", "54");
INSERT INTO `wp_gf_form_view` VALUES("6551", "3", "2014-12-15 19:08:59", "100.43.85.24", "213");
INSERT INTO `wp_gf_form_view` VALUES("6552", "2", "2014-12-15 19:10:59", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("6553", "1", "2014-12-15 19:59:15", "192.81.211.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("6554", "1", "2014-12-15 20:03:57", "27.150.228.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("6555", "3", "2014-12-15 20:03:57", "27.150.228.190", "102");
INSERT INTO `wp_gf_form_view` VALUES("6556", "3", "2014-12-15 21:02:20", "207.194.133.9", "250");
INSERT INTO `wp_gf_form_view` VALUES("6557", "3", "2014-12-15 22:04:28", "66.249.79.92", "100");
INSERT INTO `wp_gf_form_view` VALUES("6558", "3", "2014-12-15 23:22:51", "202.46.63.65", "104");
INSERT INTO `wp_gf_form_view` VALUES("6559", "3", "2014-12-16 00:05:26", "66.249.79.84", "140");
INSERT INTO `wp_gf_form_view` VALUES("6560", "3", "2014-12-16 01:14:26", "157.55.39.62", "142");
INSERT INTO `wp_gf_form_view` VALUES("6561", "3", "2014-12-16 02:05:14", "66.249.79.76", "322");
INSERT INTO `wp_gf_form_view` VALUES("6562", "3", "2014-12-16 03:00:12", "66.249.79.92", "427");
INSERT INTO `wp_gf_form_view` VALUES("6563", "6", "2014-12-16 03:47:29", "188.165.15.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("6564", "3", "2014-12-16 04:01:20", "66.249.79.84", "404");
INSERT INTO `wp_gf_form_view` VALUES("6565", "3", "2014-12-16 05:00:39", "66.249.79.76", "376");
INSERT INTO `wp_gf_form_view` VALUES("6566", "3", "2014-12-16 06:00:07", "66.249.79.84", "497");
INSERT INTO `wp_gf_form_view` VALUES("6567", "6", "2014-12-16 06:31:49", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("6568", "3", "2014-12-16 07:09:52", "66.249.79.76", "228");
INSERT INTO `wp_gf_form_view` VALUES("6569", "3", "2014-12-16 08:05:30", "188.165.15.208", "60");
INSERT INTO `wp_gf_form_view` VALUES("6570", "1", "2014-12-16 08:15:49", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6571", "3", "2014-12-16 09:00:30", "66.249.79.76", "250");
INSERT INTO `wp_gf_form_view` VALUES("6572", "3", "2014-12-16 10:00:00", "66.249.79.84", "220");
INSERT INTO `wp_gf_form_view` VALUES("6573", "2", "2014-12-16 10:27:58", "77.245.71.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("6574", "3", "2014-12-16 11:04:04", "66.249.79.76", "320");
INSERT INTO `wp_gf_form_view` VALUES("6575", "3", "2014-12-16 12:00:01", "66.249.79.84", "374");
INSERT INTO `wp_gf_form_view` VALUES("6576", "3", "2014-12-16 13:00:25", "66.249.79.76", "406");
INSERT INTO `wp_gf_form_view` VALUES("6577", "6", "2014-12-16 14:00:16", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6578", "3", "2014-12-16 14:00:16", "66.249.79.76", "532");
INSERT INTO `wp_gf_form_view` VALUES("6579", "3", "2014-12-16 15:00:29", "66.249.79.84", "146");
INSERT INTO `wp_gf_form_view` VALUES("6580", "3", "2014-12-16 16:01:31", "66.249.79.76", "80");
INSERT INTO `wp_gf_form_view` VALUES("6581", "3", "2014-12-16 17:01:34", "66.249.79.76", "100");
INSERT INTO `wp_gf_form_view` VALUES("6582", "3", "2014-12-16 18:04:40", "78.26.169.14", "140");
INSERT INTO `wp_gf_form_view` VALUES("6583", "6", "2014-12-16 18:31:04", "216.244.81.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("6584", "3", "2014-12-16 19:04:19", "66.249.79.84", "482");
INSERT INTO `wp_gf_form_view` VALUES("6585", "3", "2014-12-16 20:00:07", "66.249.79.84", "496");
INSERT INTO `wp_gf_form_view` VALUES("6586", "6", "2014-12-16 20:00:08", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6587", "3", "2014-12-16 21:00:13", "66.249.79.84", "790");
INSERT INTO `wp_gf_form_view` VALUES("6588", "6", "2014-12-16 21:20:05", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("6589", "3", "2014-12-16 22:00:02", "96.50.90.68", "298");
INSERT INTO `wp_gf_form_view` VALUES("6590", "3", "2014-12-16 23:12:40", "157.55.39.162", "30");
INSERT INTO `wp_gf_form_view` VALUES("6591", "3", "2014-12-17 00:11:00", "66.249.79.76", "50");
INSERT INTO `wp_gf_form_view` VALUES("6592", "3", "2014-12-17 01:07:59", "192.0.17.138", "90");
INSERT INTO `wp_gf_form_view` VALUES("6593", "3", "2014-12-17 02:08:14", "66.249.79.76", "186");
INSERT INTO `wp_gf_form_view` VALUES("6594", "2", "2014-12-17 02:18:19", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("6595", "3", "2014-12-17 03:00:29", "66.249.79.92", "288");
INSERT INTO `wp_gf_form_view` VALUES("6596", "3", "2014-12-17 04:08:25", "91.200.12.170", "288");
INSERT INTO `wp_gf_form_view` VALUES("6597", "1", "2014-12-17 04:18:08", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6598", "3", "2014-12-17 05:00:11", "66.249.79.76", "650");
INSERT INTO `wp_gf_form_view` VALUES("6599", "1", "2014-12-17 05:12:28", "96.50.106.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("6600", "3", "2014-12-17 06:00:07", "66.249.79.92", "128");
INSERT INTO `wp_gf_form_view` VALUES("6601", "3", "2014-12-17 07:00:58", "66.249.79.76", "506");
INSERT INTO `wp_gf_form_view` VALUES("6602", "6", "2014-12-17 07:28:43", "54.77.202.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("6603", "1", "2014-12-17 07:31:51", "54.77.202.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("6604", "2", "2014-12-17 07:51:32", "61.16.251.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("6605", "3", "2014-12-17 08:11:42", "24.68.108.232", "72");
INSERT INTO `wp_gf_form_view` VALUES("6606", "3", "2014-12-17 09:27:09", "198.15.178.39", "60");
INSERT INTO `wp_gf_form_view` VALUES("6607", "2", "2014-12-17 10:00:03", "198.15.178.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("6608", "3", "2014-12-17 10:00:03", "198.15.178.39", "160");
INSERT INTO `wp_gf_form_view` VALUES("6609", "1", "2014-12-17 10:21:49", "37.115.184.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("6610", "3", "2014-12-17 11:10:58", "66.249.79.92", "82");
INSERT INTO `wp_gf_form_view` VALUES("6611", "3", "2014-12-17 12:10:24", "66.249.79.76", "270");
INSERT INTO `wp_gf_form_view` VALUES("6612", "3", "2014-12-17 13:41:00", "157.55.39.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("6613", "3", "2014-12-17 14:36:09", "202.46.50.182", "30");
INSERT INTO `wp_gf_form_view` VALUES("6614", "3", "2014-12-17 15:11:24", "198.15.178.39", "60");
INSERT INTO `wp_gf_form_view` VALUES("6615", "3", "2014-12-17 16:16:53", "66.249.67.92", "510");
INSERT INTO `wp_gf_form_view` VALUES("6616", "3", "2014-12-17 17:00:09", "66.249.67.92", "552");
INSERT INTO `wp_gf_form_view` VALUES("6617", "3", "2014-12-17 18:01:24", "198.15.178.39", "585");
INSERT INTO `wp_gf_form_view` VALUES("6618", "6", "2014-12-17 18:16:55", "202.46.61.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("6619", "3", "2014-12-17 19:00:15", "66.249.67.92", "432");
INSERT INTO `wp_gf_form_view` VALUES("6620", "1", "2014-12-17 20:02:19", "198.15.178.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("6621", "3", "2014-12-17 20:02:20", "198.15.178.39", "120");
INSERT INTO `wp_gf_form_view` VALUES("6622", "3", "2014-12-17 21:00:12", "66.249.67.84", "570");
INSERT INTO `wp_gf_form_view` VALUES("6623", "6", "2014-12-17 21:29:41", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6624", "3", "2014-12-17 22:00:05", "66.249.67.92", "825");
INSERT INTO `wp_gf_form_view` VALUES("6625", "6", "2014-12-17 22:09:47", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("6626", "1", "2014-12-17 22:10:19", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("6627", "2", "2014-12-17 22:10:26", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("6628", "3", "2014-12-17 23:00:00", "66.249.67.92", "780");
INSERT INTO `wp_gf_form_view` VALUES("6629", "3", "2014-12-18 00:00:08", "66.249.67.76", "774");
INSERT INTO `wp_gf_form_view` VALUES("6630", "6", "2014-12-18 00:43:15", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6631", "3", "2014-12-18 01:00:09", "66.249.67.76", "670");
INSERT INTO `wp_gf_form_view` VALUES("6632", "3", "2014-12-18 02:00:07", "66.249.67.76", "656");
INSERT INTO `wp_gf_form_view` VALUES("6633", "3", "2014-12-18 03:02:06", "68.180.229.33", "958");
INSERT INTO `wp_gf_form_view` VALUES("6634", "3", "2014-12-18 04:00:00", "66.249.67.84", "422");
INSERT INTO `wp_gf_form_view` VALUES("6635", "3", "2014-12-18 05:15:06", "66.249.67.92", "300");
INSERT INTO `wp_gf_form_view` VALUES("6636", "3", "2014-12-18 06:00:16", "66.249.67.84", "454");
INSERT INTO `wp_gf_form_view` VALUES("6637", "3", "2014-12-18 08:23:41", "68.180.229.33", "250");
INSERT INTO `wp_gf_form_view` VALUES("6638", "6", "2014-12-18 08:25:49", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("6639", "3", "2014-12-18 09:00:11", "66.249.67.92", "682");
INSERT INTO `wp_gf_form_view` VALUES("6640", "6", "2014-12-18 09:29:18", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6641", "3", "2014-12-18 10:00:13", "66.249.67.84", "380");
INSERT INTO `wp_gf_form_view` VALUES("6642", "3", "2014-12-18 11:00:13", "66.249.67.76", "786");
INSERT INTO `wp_gf_form_view` VALUES("6643", "3", "2014-12-18 12:18:14", "68.180.229.33", "30");
INSERT INTO `wp_gf_form_view` VALUES("6644", "3", "2014-12-18 13:01:42", "66.249.67.76", "56");
INSERT INTO `wp_gf_form_view` VALUES("6645", "3", "2014-12-18 14:11:36", "66.249.67.84", "232");
INSERT INTO `wp_gf_form_view` VALUES("6646", "3", "2014-12-18 15:01:16", "66.249.67.84", "452");
INSERT INTO `wp_gf_form_view` VALUES("6647", "6", "2014-12-18 15:30:14", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6648", "3", "2014-12-18 16:00:20", "66.249.67.76", "352");
INSERT INTO `wp_gf_form_view` VALUES("6649", "3", "2014-12-18 17:00:11", "66.249.67.76", "280");
INSERT INTO `wp_gf_form_view` VALUES("6650", "3", "2014-12-18 18:00:28", "66.249.67.92", "50");
INSERT INTO `wp_gf_form_view` VALUES("6651", "3", "2014-12-18 19:10:36", "62.210.142.7", "184");
INSERT INTO `wp_gf_form_view` VALUES("6652", "2", "2014-12-18 19:10:42", "62.210.142.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("6653", "1", "2014-12-18 19:10:46", "62.210.142.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("6654", "3", "2014-12-18 20:43:58", "216.232.202.228", "40");
INSERT INTO `wp_gf_form_view` VALUES("6655", "3", "2014-12-18 21:12:02", "24.68.98.225", "32");
INSERT INTO `wp_gf_form_view` VALUES("6656", "3", "2014-12-18 22:00:23", "66.249.67.84", "320");
INSERT INTO `wp_gf_form_view` VALUES("6657", "6", "2014-12-18 22:17:47", "68.180.229.33", "4");
INSERT INTO `wp_gf_form_view` VALUES("6658", "3", "2014-12-18 23:00:23", "66.249.67.76", "720");
INSERT INTO `wp_gf_form_view` VALUES("6659", "2", "2014-12-18 23:22:47", "195.154.181.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("6660", "3", "2014-12-19 00:00:02", "66.249.67.76", "40");
INSERT INTO `wp_gf_form_view` VALUES("6661", "2", "2014-12-19 01:04:34", "167.160.127.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("6662", "3", "2014-12-19 01:04:34", "167.160.127.99", "556");
INSERT INTO `wp_gf_form_view` VALUES("6663", "1", "2014-12-19 01:15:06", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("6664", "6", "2014-12-19 01:57:25", "54.171.98.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("6665", "3", "2014-12-19 02:00:06", "91.200.12.170", "547");
INSERT INTO `wp_gf_form_view` VALUES("6666", "1", "2014-12-19 02:01:25", "54.171.98.192", "3");
INSERT INTO `wp_gf_form_view` VALUES("6667", "2", "2014-12-19 02:02:12", "54.171.98.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("6668", "1", "2014-12-19 03:07:40", "107.150.36.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("6669", "3", "2014-12-19 03:07:40", "107.150.36.162", "259");
INSERT INTO `wp_gf_form_view` VALUES("6670", "6", "2014-12-19 03:09:13", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("6671", "3", "2014-12-19 04:08:09", "202.46.48.207", "72");
INSERT INTO `wp_gf_form_view` VALUES("6672", "3", "2014-12-19 05:12:43", "66.249.79.76", "42");
INSERT INTO `wp_gf_form_view` VALUES("6673", "3", "2014-12-19 06:04:39", "157.55.39.211", "90");
INSERT INTO `wp_gf_form_view` VALUES("6674", "3", "2014-12-19 07:00:02", "69.12.73.114", "297");
INSERT INTO `wp_gf_form_view` VALUES("6675", "3", "2014-12-19 08:00:17", "202.46.49.188", "462");
INSERT INTO `wp_gf_form_view` VALUES("6676", "3", "2014-12-19 09:01:53", "66.249.79.84", "543");
INSERT INTO `wp_gf_form_view` VALUES("6677", "1", "2014-12-19 09:19:31", "107.150.36.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("6678", "6", "2014-12-19 09:59:56", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6679", "3", "2014-12-19 10:00:17", "66.249.79.92", "370");
INSERT INTO `wp_gf_form_view` VALUES("6680", "3", "2014-12-19 11:00:05", "66.249.79.84", "860");
INSERT INTO `wp_gf_form_view` VALUES("6681", "3", "2014-12-19 12:00:14", "66.249.79.92", "978");
INSERT INTO `wp_gf_form_view` VALUES("6682", "3", "2014-12-19 13:00:02", "66.249.79.84", "1090");
INSERT INTO `wp_gf_form_view` VALUES("6683", "3", "2014-12-19 14:00:37", "66.249.79.84", "720");
INSERT INTO `wp_gf_form_view` VALUES("6684", "3", "2014-12-19 15:19:54", "66.249.79.84", "192");
INSERT INTO `wp_gf_form_view` VALUES("6685", "6", "2014-12-19 15:59:17", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6686", "3", "2014-12-19 16:00:29", "66.249.79.92", "798");
INSERT INTO `wp_gf_form_view` VALUES("6687", "3", "2014-12-19 17:00:07", "66.249.79.84", "1176");
INSERT INTO `wp_gf_form_view` VALUES("6688", "3", "2014-12-19 18:00:07", "66.249.79.84", "1287");
INSERT INTO `wp_gf_form_view` VALUES("6689", "2", "2014-12-19 18:10:46", "104.128.23.5", "3");
INSERT INTO `wp_gf_form_view` VALUES("6690", "3", "2014-12-19 19:02:33", "66.249.79.92", "1114");
INSERT INTO `wp_gf_form_view` VALUES("6691", "2", "2014-12-19 19:33:00", "69.12.77.147", "5");
INSERT INTO `wp_gf_form_view` VALUES("6692", "3", "2014-12-19 20:00:11", "66.249.79.76", "1232");
INSERT INTO `wp_gf_form_view` VALUES("6693", "6", "2014-12-19 20:15:31", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6694", "3", "2014-12-19 21:00:16", "66.249.67.84", "1200");
INSERT INTO `wp_gf_form_view` VALUES("6695", "2", "2014-12-19 21:10:54", "157.55.39.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("6696", "6", "2014-12-19 21:24:28", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6697", "3", "2014-12-19 22:00:09", "66.249.67.84", "2098");
INSERT INTO `wp_gf_form_view` VALUES("6698", "2", "2014-12-19 22:15:15", "77.245.71.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("6699", "1", "2014-12-19 22:20:14", "198.143.158.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("6700", "6", "2014-12-19 22:23:29", "198.143.158.34", "5");
INSERT INTO `wp_gf_form_view` VALUES("6701", "3", "2014-12-19 23:12:12", "24.68.239.169", "212");
INSERT INTO `wp_gf_form_view` VALUES("6702", "1", "2014-12-19 23:18:39", "24.68.239.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("6703", "3", "2014-12-20 00:00:10", "66.249.79.76", "370");
INSERT INTO `wp_gf_form_view` VALUES("6704", "6", "2014-12-20 00:45:30", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6705", "3", "2014-12-20 01:00:02", "66.249.79.76", "452");
INSERT INTO `wp_gf_form_view` VALUES("6706", "2", "2014-12-20 01:46:57", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6707", "3", "2014-12-20 02:00:07", "66.249.79.84", "550");
INSERT INTO `wp_gf_form_view` VALUES("6708", "1", "2014-12-20 02:26:14", "27.150.228.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("6709", "3", "2014-12-20 03:00:35", "66.249.79.76", "492");
INSERT INTO `wp_gf_form_view` VALUES("6710", "3", "2014-12-20 04:00:18", "66.249.79.76", "654");
INSERT INTO `wp_gf_form_view` VALUES("6711", "6", "2014-12-20 04:30:15", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6712", "3", "2014-12-20 05:02:38", "66.249.79.92", "422");
INSERT INTO `wp_gf_form_view` VALUES("6713", "3", "2014-12-20 06:06:29", "157.55.39.211", "236");
INSERT INTO `wp_gf_form_view` VALUES("6714", "1", "2014-12-20 06:37:11", "157.55.39.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("6715", "3", "2014-12-20 07:19:47", "66.249.79.92", "44");
INSERT INTO `wp_gf_form_view` VALUES("6716", "3", "2014-12-20 08:03:41", "66.249.79.92", "102");
INSERT INTO `wp_gf_form_view` VALUES("6717", "3", "2014-12-20 09:07:06", "66.249.79.76", "74");
INSERT INTO `wp_gf_form_view` VALUES("6718", "3", "2014-12-20 10:21:36", "66.249.79.92", "40");
INSERT INTO `wp_gf_form_view` VALUES("6719", "3", "2014-12-20 11:13:51", "66.249.79.84", "234");
INSERT INTO `wp_gf_form_view` VALUES("6720", "3", "2014-12-20 12:00:30", "66.249.79.84", "462");
INSERT INTO `wp_gf_form_view` VALUES("6721", "3", "2014-12-20 13:00:00", "66.249.79.76", "382");
INSERT INTO `wp_gf_form_view` VALUES("6722", "3", "2014-12-20 14:04:34", "66.249.79.84", "565");
INSERT INTO `wp_gf_form_view` VALUES("6723", "6", "2014-12-20 14:10:14", "73.51.219.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("6724", "1", "2014-12-20 14:10:38", "73.51.219.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("6725", "2", "2014-12-20 14:10:43", "73.51.219.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("6726", "3", "2014-12-20 15:00:14", "66.249.79.84", "240");
INSERT INTO `wp_gf_form_view` VALUES("6727", "6", "2014-12-20 15:05:38", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6728", "1", "2014-12-20 15:40:48", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("6729", "3", "2014-12-20 16:32:51", "202.46.50.101", "165");
INSERT INTO `wp_gf_form_view` VALUES("6730", "1", "2014-12-20 16:43:51", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6731", "2", "2014-12-20 16:58:04", "192.240.212.197", "5");
INSERT INTO `wp_gf_form_view` VALUES("6732", "3", "2014-12-20 17:08:32", "66.249.79.76", "40");
INSERT INTO `wp_gf_form_view` VALUES("6733", "3", "2014-12-20 18:03:34", "107.182.125.175", "502");
INSERT INTO `wp_gf_form_view` VALUES("6734", "6", "2014-12-20 18:35:57", "54.77.50.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("6735", "1", "2014-12-20 18:44:58", "54.77.50.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("6736", "2", "2014-12-20 18:45:57", "54.77.50.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("6737", "3", "2014-12-20 19:00:10", "66.249.79.76", "738");
INSERT INTO `wp_gf_form_view` VALUES("6738", "3", "2014-12-20 20:00:08", "66.249.79.76", "763");
INSERT INTO `wp_gf_form_view` VALUES("6739", "2", "2014-12-20 20:38:55", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6740", "6", "2014-12-20 20:45:51", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("6741", "3", "2014-12-20 21:00:26", "66.249.79.76", "890");
INSERT INTO `wp_gf_form_view` VALUES("6742", "3", "2014-12-20 22:01:09", "66.249.79.76", "615");
INSERT INTO `wp_gf_form_view` VALUES("6743", "3", "2014-12-20 23:00:28", "66.249.79.84", "40");
INSERT INTO `wp_gf_form_view` VALUES("6744", "3", "2014-12-21 00:12:10", "66.249.79.84", "231");
INSERT INTO `wp_gf_form_view` VALUES("6745", "6", "2014-12-21 00:50:11", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6746", "2", "2014-12-21 00:56:24", "167.160.109.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("6747", "3", "2014-12-21 01:00:00", "66.249.79.92", "624");
INSERT INTO `wp_gf_form_view` VALUES("6748", "1", "2014-12-21 01:22:18", "31.184.238.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("6749", "3", "2014-12-21 02:04:16", "66.249.79.84", "580");
INSERT INTO `wp_gf_form_view` VALUES("6750", "2", "2014-12-21 02:33:14", "192.230.61.13", "3");
INSERT INTO `wp_gf_form_view` VALUES("6751", "3", "2014-12-21 03:00:34", "100.43.85.24", "554");
INSERT INTO `wp_gf_form_view` VALUES("6752", "6", "2014-12-21 03:24:00", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6753", "2", "2014-12-21 03:34:07", "167.160.127.98", "3");
INSERT INTO `wp_gf_form_view` VALUES("6754", "3", "2014-12-21 04:03:19", "66.249.79.92", "737");
INSERT INTO `wp_gf_form_view` VALUES("6755", "2", "2014-12-21 04:14:03", "167.160.127.70", "5");
INSERT INTO `wp_gf_form_view` VALUES("6756", "3", "2014-12-21 05:00:15", "66.249.79.84", "425");
INSERT INTO `wp_gf_form_view` VALUES("6757", "6", "2014-12-21 05:15:34", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6758", "3", "2014-12-21 06:00:31", "66.249.79.92", "733");
INSERT INTO `wp_gf_form_view` VALUES("6759", "2", "2014-12-21 06:05:25", "69.12.72.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("6760", "6", "2014-12-21 06:57:28", "54.72.221.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("6761", "3", "2014-12-21 07:00:01", "54.72.221.137", "707");
INSERT INTO `wp_gf_form_view` VALUES("6762", "1", "2014-12-21 07:01:46", "54.72.221.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("6763", "2", "2014-12-21 07:26:47", "192.230.61.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("6764", "3", "2014-12-21 08:02:31", "66.249.79.92", "596");
INSERT INTO `wp_gf_form_view` VALUES("6765", "2", "2014-12-21 08:16:21", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6766", "3", "2014-12-21 09:00:37", "66.249.79.76", "247");
INSERT INTO `wp_gf_form_view` VALUES("6767", "3", "2014-12-21 10:02:21", "104.128.23.8", "173");
INSERT INTO `wp_gf_form_view` VALUES("6768", "2", "2014-12-21 10:35:35", "69.12.77.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("6769", "1", "2014-12-21 10:49:08", "49.113.137.57", "4");
INSERT INTO `wp_gf_form_view` VALUES("6770", "3", "2014-12-21 11:18:17", "198.50.26.206", "164");
INSERT INTO `wp_gf_form_view` VALUES("6771", "3", "2014-12-21 12:12:30", "202.46.50.199", "216");
INSERT INTO `wp_gf_form_view` VALUES("6772", "2", "2014-12-21 12:23:53", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6773", "3", "2014-12-21 13:01:16", "91.200.12.145", "662");
INSERT INTO `wp_gf_form_view` VALUES("6774", "2", "2014-12-21 14:02:38", "192.200.24.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("6775", "3", "2014-12-21 14:02:38", "192.200.24.137", "686");
INSERT INTO `wp_gf_form_view` VALUES("6776", "3", "2014-12-21 15:00:13", "66.249.79.76", "488");
INSERT INTO `wp_gf_form_view` VALUES("6777", "6", "2014-12-21 15:25:09", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6778", "3", "2014-12-21 16:00:15", "66.249.79.92", "174");
INSERT INTO `wp_gf_form_view` VALUES("6779", "3", "2014-12-21 18:29:23", "66.249.79.92", "503");
INSERT INTO `wp_gf_form_view` VALUES("6780", "6", "2014-12-21 18:39:21", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6781", "2", "2014-12-21 18:54:07", "167.160.110.60", "4");
INSERT INTO `wp_gf_form_view` VALUES("6782", "3", "2014-12-21 19:00:11", "66.249.79.76", "765");
INSERT INTO `wp_gf_form_view` VALUES("6783", "2", "2014-12-21 19:14:06", "69.12.73.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("6784", "3", "2014-12-21 20:00:08", "66.249.79.84", "561");
INSERT INTO `wp_gf_form_view` VALUES("6785", "1", "2014-12-21 20:51:03", "192.34.58.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("6786", "2", "2014-12-21 20:51:03", "192.34.58.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("6787", "3", "2014-12-21 21:05:44", "157.55.39.162", "256");
INSERT INTO `wp_gf_form_view` VALUES("6788", "3", "2014-12-21 22:00:00", "195.211.155.182", "171");
INSERT INTO `wp_gf_form_view` VALUES("6789", "2", "2014-12-21 22:20:16", "162.244.13.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("6790", "1", "2014-12-21 22:49:10", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6791", "3", "2014-12-21 23:24:00", "162.244.13.28", "70");
INSERT INTO `wp_gf_form_view` VALUES("6792", "2", "2014-12-21 23:32:15", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6793", "3", "2014-12-22 00:00:33", "66.249.79.92", "303");
INSERT INTO `wp_gf_form_view` VALUES("6794", "2", "2014-12-22 00:25:49", "167.160.110.89", "3");
INSERT INTO `wp_gf_form_view` VALUES("6795", "3", "2014-12-22 01:00:09", "66.249.79.76", "424");
INSERT INTO `wp_gf_form_view` VALUES("6796", "3", "2014-12-22 02:00:08", "66.249.79.92", "696");
INSERT INTO `wp_gf_form_view` VALUES("6797", "2", "2014-12-22 02:00:48", "167.160.112.205", "6");
INSERT INTO `wp_gf_form_view` VALUES("6798", "6", "2014-12-22 02:05:13", "54.76.11.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("6799", "1", "2014-12-22 02:08:57", "54.76.11.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("6800", "3", "2014-12-22 03:00:32", "66.249.79.148", "615");
INSERT INTO `wp_gf_form_view` VALUES("6801", "2", "2014-12-22 03:09:13", "69.12.77.147", "3");
INSERT INTO `wp_gf_form_view` VALUES("6802", "3", "2014-12-22 04:00:36", "66.249.79.76", "586");
INSERT INTO `wp_gf_form_view` VALUES("6803", "6", "2014-12-22 04:14:56", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6804", "2", "2014-12-22 04:21:12", "192.230.52.210", "7");
INSERT INTO `wp_gf_form_view` VALUES("6805", "3", "2014-12-22 05:00:01", "66.249.79.76", "620");
INSERT INTO `wp_gf_form_view` VALUES("6806", "6", "2014-12-22 05:50:22", "54.72.234.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("6807", "1", "2014-12-22 05:57:20", "54.72.234.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("6808", "2", "2014-12-22 05:58:14", "54.72.234.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("6809", "3", "2014-12-22 06:00:24", "54.72.234.195", "241");
INSERT INTO `wp_gf_form_view` VALUES("6810", "3", "2014-12-22 07:08:53", "66.249.79.76", "99");
INSERT INTO `wp_gf_form_view` VALUES("6811", "3", "2014-12-22 08:26:06", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("6812", "3", "2014-12-22 09:42:02", "69.12.73.115", "113");
INSERT INTO `wp_gf_form_view` VALUES("6813", "2", "2014-12-22 10:13:29", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("6814", "3", "2014-12-22 10:13:29", "68.180.229.33", "40");
INSERT INTO `wp_gf_form_view` VALUES("6815", "3", "2014-12-22 11:10:36", "107.182.116.242", "166");
INSERT INTO `wp_gf_form_view` VALUES("6816", "3", "2014-12-22 12:01:36", "192.240.214.145", "313");
INSERT INTO `wp_gf_form_view` VALUES("6817", "3", "2014-12-22 13:02:19", "66.249.79.76", "50");
INSERT INTO `wp_gf_form_view` VALUES("6818", "3", "2014-12-22 14:19:47", "66.249.79.84", "140");
INSERT INTO `wp_gf_form_view` VALUES("6819", "3", "2014-12-22 15:00:45", "157.55.39.162", "280");
INSERT INTO `wp_gf_form_view` VALUES("6820", "3", "2014-12-22 16:17:08", "66.249.79.92", "60");
INSERT INTO `wp_gf_form_view` VALUES("6821", "3", "2014-12-22 17:04:53", "207.46.13.71", "31");
INSERT INTO `wp_gf_form_view` VALUES("6822", "3", "2014-12-22 18:21:21", "142.36.68.228", "152");
INSERT INTO `wp_gf_form_view` VALUES("6823", "3", "2014-12-22 19:16:45", "66.249.79.76", "40");
INSERT INTO `wp_gf_form_view` VALUES("6824", "3", "2014-12-22 20:00:23", "184.66.97.147", "298");
INSERT INTO `wp_gf_form_view` VALUES("6825", "3", "2014-12-22 21:00:19", "66.249.79.76", "861");
INSERT INTO `wp_gf_form_view` VALUES("6826", "6", "2014-12-22 21:33:06", "31.3.254.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("6827", "1", "2014-12-22 21:33:53", "31.3.254.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("6828", "3", "2014-12-22 22:00:29", "66.249.79.92", "616");
INSERT INTO `wp_gf_form_view` VALUES("6829", "6", "2014-12-22 22:21:57", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6830", "3", "2014-12-22 23:00:01", "66.249.79.76", "572");
INSERT INTO `wp_gf_form_view` VALUES("6831", "3", "2014-12-23 00:00:02", "66.249.79.92", "880");
INSERT INTO `wp_gf_form_view` VALUES("6832", "3", "2014-12-23 01:00:01", "66.249.79.76", "946");
INSERT INTO `wp_gf_form_view` VALUES("6833", "3", "2014-12-23 02:00:34", "66.249.79.76", "732");
INSERT INTO `wp_gf_form_view` VALUES("6834", "6", "2014-12-23 02:19:10", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6835", "3", "2014-12-23 03:00:21", "66.249.79.92", "570");
INSERT INTO `wp_gf_form_view` VALUES("6836", "3", "2014-12-23 04:09:12", "66.249.79.92", "271");
INSERT INTO `wp_gf_form_view` VALUES("6837", "3", "2014-12-23 05:00:38", "66.249.79.76", "1007");
INSERT INTO `wp_gf_form_view` VALUES("6838", "6", "2014-12-23 05:24:23", "54.72.136.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("6839", "1", "2014-12-23 05:29:24", "54.72.136.87", "2");
INSERT INTO `wp_gf_form_view` VALUES("6840", "2", "2014-12-23 05:30:03", "54.72.136.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("6841", "3", "2014-12-23 06:01:56", "66.249.79.76", "572");
INSERT INTO `wp_gf_form_view` VALUES("6842", "3", "2014-12-23 07:00:16", "66.249.79.76", "1016");
INSERT INTO `wp_gf_form_view` VALUES("6843", "6", "2014-12-23 07:49:58", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6844", "1", "2014-12-23 07:52:56", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("6845", "3", "2014-12-23 08:00:20", "66.249.79.76", "1324");
INSERT INTO `wp_gf_form_view` VALUES("6846", "3", "2014-12-23 09:00:00", "66.249.79.76", "950");
INSERT INTO `wp_gf_form_view` VALUES("6847", "3", "2014-12-23 10:02:15", "66.249.79.76", "1080");
INSERT INTO `wp_gf_form_view` VALUES("6848", "1", "2014-12-23 10:59:59", "107.150.36.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("6849", "3", "2014-12-23 11:00:01", "107.150.36.162", "1228");
INSERT INTO `wp_gf_form_view` VALUES("6850", "1", "2014-12-23 11:00:03", "107.150.36.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("6851", "6", "2014-12-23 11:19:46", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("6852", "3", "2014-12-23 12:00:11", "66.249.79.76", "1046");
INSERT INTO `wp_gf_form_view` VALUES("6853", "6", "2014-12-23 12:34:36", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("6854", "3", "2014-12-23 13:00:16", "66.249.79.92", "888");
INSERT INTO `wp_gf_form_view` VALUES("6855", "6", "2014-12-23 13:04:34", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6856", "3", "2014-12-23 14:00:04", "66.249.79.92", "240");
INSERT INTO `wp_gf_form_view` VALUES("6857", "3", "2014-12-23 15:02:21", "66.249.79.76", "134");
INSERT INTO `wp_gf_form_view` VALUES("6858", "3", "2014-12-23 16:00:13", "66.249.79.76", "146");
INSERT INTO `wp_gf_form_view` VALUES("6859", "3", "2014-12-23 17:00:00", "66.249.79.76", "478");
INSERT INTO `wp_gf_form_view` VALUES("6860", "1", "2014-12-23 17:14:51", "24.108.150.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("6861", "3", "2014-12-23 18:00:35", "66.249.79.76", "738");
INSERT INTO `wp_gf_form_view` VALUES("6862", "2", "2014-12-23 18:31:10", "107.182.125.216", "3");
INSERT INTO `wp_gf_form_view` VALUES("6863", "6", "2014-12-23 18:41:48", "54.171.151.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("6864", "1", "2014-12-23 18:46:06", "54.171.151.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("6865", "3", "2014-12-23 19:00:16", "66.249.79.84", "472");
INSERT INTO `wp_gf_form_view` VALUES("6866", "3", "2014-12-23 20:00:36", "66.249.79.76", "377");
INSERT INTO `wp_gf_form_view` VALUES("6867", "3", "2014-12-23 21:00:24", "66.249.79.84", "518");
INSERT INTO `wp_gf_form_view` VALUES("6868", "3", "2014-12-23 22:00:10", "66.249.79.76", "484");
INSERT INTO `wp_gf_form_view` VALUES("6869", "3", "2014-12-23 23:16:12", "142.104.37.70", "82");
INSERT INTO `wp_gf_form_view` VALUES("6870", "3", "2014-12-24 00:12:58", "167.160.109.7", "183");
INSERT INTO `wp_gf_form_view` VALUES("6871", "3", "2014-12-24 01:09:58", "188.165.15.10", "104");
INSERT INTO `wp_gf_form_view` VALUES("6872", "2", "2014-12-24 01:27:25", "167.160.112.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("6873", "3", "2014-12-24 02:25:56", "192.230.52.210", "70");
INSERT INTO `wp_gf_form_view` VALUES("6874", "3", "2014-12-24 03:04:16", "69.12.73.115", "109");
INSERT INTO `wp_gf_form_view` VALUES("6875", "6", "2014-12-24 03:28:22", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6876", "3", "2014-12-24 04:12:05", "157.55.39.212", "376");
INSERT INTO `wp_gf_form_view` VALUES("6877", "6", "2014-12-24 04:26:05", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("6878", "1", "2014-12-24 04:26:35", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("6879", "2", "2014-12-24 04:26:42", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("6880", "3", "2014-12-24 05:04:05", "23.247.173.133", "382");
INSERT INTO `wp_gf_form_view` VALUES("6881", "1", "2014-12-24 05:25:19", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("6882", "3", "2014-12-24 06:13:09", "157.55.39.13", "20");
INSERT INTO `wp_gf_form_view` VALUES("6883", "3", "2014-12-24 07:02:19", "162.244.13.28", "32");
INSERT INTO `wp_gf_form_view` VALUES("6884", "3", "2014-12-24 08:35:36", "66.249.79.92", "20");
INSERT INTO `wp_gf_form_view` VALUES("6885", "3", "2014-12-24 09:15:50", "66.249.79.84", "50");
INSERT INTO `wp_gf_form_view` VALUES("6886", "6", "2014-12-24 09:50:26", "207.46.13.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("6887", "3", "2014-12-24 10:03:15", "66.249.79.84", "40");
INSERT INTO `wp_gf_form_view` VALUES("6888", "3", "2014-12-24 11:08:50", "188.165.15.181", "32");
INSERT INTO `wp_gf_form_view` VALUES("6889", "3", "2014-12-24 12:00:29", "66.249.79.84", "30");
INSERT INTO `wp_gf_form_view` VALUES("6890", "3", "2014-12-24 13:04:45", "66.249.79.92", "81");
INSERT INTO `wp_gf_form_view` VALUES("6891", "3", "2014-12-24 14:01:22", "66.249.79.92", "30");
INSERT INTO `wp_gf_form_view` VALUES("6892", "3", "2014-12-24 15:01:28", "66.249.79.84", "50");
INSERT INTO `wp_gf_form_view` VALUES("6893", "3", "2014-12-24 16:07:24", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("6894", "3", "2014-12-24 17:00:49", "66.249.79.84", "51");
INSERT INTO `wp_gf_form_view` VALUES("6895", "1", "2014-12-24 17:10:33", "192.99.141.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("6896", "3", "2014-12-24 18:02:10", "157.55.39.212", "52");
INSERT INTO `wp_gf_form_view` VALUES("6897", "3", "2014-12-24 20:10:33", "220.181.108.95", "68");
INSERT INTO `wp_gf_form_view` VALUES("6898", "3", "2014-12-24 22:14:50", "157.55.39.221", "20");
INSERT INTO `wp_gf_form_view` VALUES("6899", "3", "2014-12-24 23:04:57", "207.46.13.71", "132");
INSERT INTO `wp_gf_form_view` VALUES("6900", "3", "2014-12-25 00:00:18", "66.249.79.84", "408");
INSERT INTO `wp_gf_form_view` VALUES("6901", "3", "2014-12-25 01:00:06", "66.249.79.84", "554");
INSERT INTO `wp_gf_form_view` VALUES("6902", "6", "2014-12-25 01:24:48", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6903", "3", "2014-12-25 02:04:33", "66.249.79.84", "399");
INSERT INTO `wp_gf_form_view` VALUES("6904", "6", "2014-12-25 02:58:48", "54.77.239.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("6905", "3", "2014-12-25 03:00:18", "66.249.79.76", "340");
INSERT INTO `wp_gf_form_view` VALUES("6906", "1", "2014-12-25 03:03:01", "54.77.239.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("6907", "2", "2014-12-25 03:03:38", "54.77.239.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("6908", "3", "2014-12-25 04:08:25", "207.46.13.71", "120");
INSERT INTO `wp_gf_form_view` VALUES("6909", "1", "2014-12-25 04:14:13", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6910", "6", "2014-12-25 04:17:23", "207.46.13.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("6911", "3", "2014-12-25 05:39:23", "68.180.229.33", "68");
INSERT INTO `wp_gf_form_view` VALUES("6912", "3", "2014-12-25 06:10:07", "66.249.79.76", "70");
INSERT INTO `wp_gf_form_view` VALUES("6913", "3", "2014-12-25 07:55:26", "66.249.79.84", "30");
INSERT INTO `wp_gf_form_view` VALUES("6914", "3", "2014-12-25 08:00:30", "66.249.79.92", "426");
INSERT INTO `wp_gf_form_view` VALUES("6915", "3", "2014-12-25 09:00:00", "66.249.79.76", "571");
INSERT INTO `wp_gf_form_view` VALUES("6916", "3", "2014-12-25 10:00:22", "66.249.79.84", "526");
INSERT INTO `wp_gf_form_view` VALUES("6917", "6", "2014-12-25 10:39:58", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6918", "3", "2014-12-25 11:00:21", "66.249.79.92", "666");
INSERT INTO `wp_gf_form_view` VALUES("6919", "6", "2014-12-25 11:45:19", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6920", "3", "2014-12-25 12:05:49", "157.55.39.212", "20");
INSERT INTO `wp_gf_form_view` VALUES("6921", "3", "2014-12-25 13:22:41", "157.55.39.26", "330");
INSERT INTO `wp_gf_form_view` VALUES("6922", "3", "2014-12-25 14:09:40", "66.249.79.84", "20");
INSERT INTO `wp_gf_form_view` VALUES("6923", "3", "2014-12-25 15:41:55", "14.145.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("6924", "3", "2014-12-25 16:13:43", "172.218.235.246", "272");
INSERT INTO `wp_gf_form_view` VALUES("6925", "3", "2014-12-25 17:00:19", "66.249.79.76", "442");
INSERT INTO `wp_gf_form_view` VALUES("6926", "6", "2014-12-25 17:57:22", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6927", "3", "2014-12-25 18:00:18", "66.249.79.84", "622");
INSERT INTO `wp_gf_form_view` VALUES("6928", "3", "2014-12-25 19:00:55", "66.249.79.84", "674");
INSERT INTO `wp_gf_form_view` VALUES("6929", "3", "2014-12-25 20:00:26", "66.249.79.84", "626");
INSERT INTO `wp_gf_form_view` VALUES("6930", "3", "2014-12-25 21:00:23", "66.249.79.84", "610");
INSERT INTO `wp_gf_form_view` VALUES("6931", "3", "2014-12-25 22:02:42", "66.249.79.92", "891");
INSERT INTO `wp_gf_form_view` VALUES("6932", "6", "2014-12-25 22:19:04", "54.72.34.134", "5");
INSERT INTO `wp_gf_form_view` VALUES("6933", "1", "2014-12-25 22:23:03", "54.72.34.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("6934", "3", "2014-12-25 23:01:13", "66.249.79.76", "662");
INSERT INTO `wp_gf_form_view` VALUES("6935", "3", "2014-12-26 00:00:11", "66.249.79.76", "465");
INSERT INTO `wp_gf_form_view` VALUES("6936", "6", "2014-12-26 00:05:34", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6937", "1", "2014-12-26 00:55:11", "69.12.77.207", "3");
INSERT INTO `wp_gf_form_view` VALUES("6938", "3", "2014-12-26 01:00:09", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("6939", "3", "2014-12-26 02:06:32", "69.12.72.166", "191");
INSERT INTO `wp_gf_form_view` VALUES("6940", "3", "2014-12-26 03:02:17", "69.12.77.147", "88");
INSERT INTO `wp_gf_form_view` VALUES("6941", "3", "2014-12-26 04:52:54", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("6942", "3", "2014-12-26 05:07:48", "89.47.18.155", "22");
INSERT INTO `wp_gf_form_view` VALUES("6943", "3", "2014-12-26 06:22:36", "66.249.79.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("6944", "3", "2014-12-26 07:03:55", "66.249.79.92", "215");
INSERT INTO `wp_gf_form_view` VALUES("6945", "6", "2014-12-26 07:39:05", "54.77.91.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("6946", "1", "2014-12-26 07:43:21", "54.77.91.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("6947", "3", "2014-12-26 08:15:41", "217.69.133.228", "46");
INSERT INTO `wp_gf_form_view` VALUES("6948", "3", "2014-12-26 09:07:09", "31.184.238.181", "50");
INSERT INTO `wp_gf_form_view` VALUES("6949", "3", "2014-12-26 10:07:34", "66.249.79.76", "50");
INSERT INTO `wp_gf_form_view` VALUES("6950", "3", "2014-12-26 11:25:41", "217.69.133.230", "52");
INSERT INTO `wp_gf_form_view` VALUES("6951", "3", "2014-12-26 12:05:52", "66.249.79.92", "32");
INSERT INTO `wp_gf_form_view` VALUES("6952", "3", "2014-12-26 13:01:58", "217.69.133.231", "160");
INSERT INTO `wp_gf_form_view` VALUES("6953", "3", "2014-12-26 14:01:01", "66.249.79.84", "3741");
INSERT INTO `wp_gf_form_view` VALUES("6954", "6", "2014-12-26 14:38:55", "217.69.133.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("6955", "2", "2014-12-26 14:42:42", "5.9.125.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("6956", "1", "2014-12-26 14:43:00", "5.9.125.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("6957", "3", "2014-12-26 15:00:00", "5.9.125.26", "3393");
INSERT INTO `wp_gf_form_view` VALUES("6958", "3", "2014-12-26 16:07:16", "202.46.62.109", "42");
INSERT INTO `wp_gf_form_view` VALUES("6959", "3", "2014-12-26 17:52:23", "217.69.133.231", "296");
INSERT INTO `wp_gf_form_view` VALUES("6960", "3", "2014-12-26 18:00:45", "66.249.79.76", "116");
INSERT INTO `wp_gf_form_view` VALUES("6961", "6", "2014-12-26 18:08:53", "207.46.13.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("6962", "3", "2014-12-26 19:00:25", "66.249.79.92", "190");
INSERT INTO `wp_gf_form_view` VALUES("6963", "6", "2014-12-26 19:35:15", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6964", "3", "2014-12-26 20:00:35", "66.249.79.84", "403");
INSERT INTO `wp_gf_form_view` VALUES("6965", "3", "2014-12-26 21:00:38", "66.249.79.84", "152");
INSERT INTO `wp_gf_form_view` VALUES("6966", "6", "2014-12-26 21:03:42", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("6967", "2", "2014-12-26 22:38:54", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("6968", "3", "2014-12-26 22:38:55", "100.43.85.24", "24");
INSERT INTO `wp_gf_form_view` VALUES("6969", "3", "2014-12-26 23:19:56", "66.249.79.76", "20");
INSERT INTO `wp_gf_form_view` VALUES("6970", "1", "2014-12-26 23:36:24", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6971", "3", "2014-12-27 00:05:10", "66.249.79.84", "194");
INSERT INTO `wp_gf_form_view` VALUES("6972", "3", "2014-12-27 01:05:11", "66.249.79.92", "368");
INSERT INTO `wp_gf_form_view` VALUES("6973", "3", "2014-12-27 02:00:00", "66.249.79.84", "618");
INSERT INTO `wp_gf_form_view` VALUES("6974", "3", "2014-12-27 03:00:34", "66.249.79.92", "616");
INSERT INTO `wp_gf_form_view` VALUES("6975", "6", "2014-12-27 03:54:15", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("6976", "3", "2014-12-27 04:00:04", "66.249.79.76", "516");
INSERT INTO `wp_gf_form_view` VALUES("6977", "3", "2014-12-27 05:00:19", "66.249.79.84", "552");
INSERT INTO `wp_gf_form_view` VALUES("6978", "3", "2014-12-27 06:00:21", "66.249.79.84", "670");
INSERT INTO `wp_gf_form_view` VALUES("6979", "2", "2014-12-27 06:08:50", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("6980", "6", "2014-12-27 06:54:25", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6981", "3", "2014-12-27 07:00:15", "66.249.79.76", "558");
INSERT INTO `wp_gf_form_view` VALUES("6982", "3", "2014-12-27 08:07:53", "68.180.229.33", "64");
INSERT INTO `wp_gf_form_view` VALUES("6983", "3", "2014-12-27 09:10:38", "54.171.158.40", "265");
INSERT INTO `wp_gf_form_view` VALUES("6984", "6", "2014-12-27 09:17:15", "54.171.158.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("6985", "1", "2014-12-27 09:20:53", "54.171.158.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("6986", "2", "2014-12-27 09:21:36", "54.171.158.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("6987", "3", "2014-12-27 10:01:35", "217.69.133.228", "298");
INSERT INTO `wp_gf_form_view` VALUES("6988", "3", "2014-12-27 11:00:18", "66.249.79.84", "800");
INSERT INTO `wp_gf_form_view` VALUES("6989", "6", "2014-12-27 11:33:40", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6990", "3", "2014-12-27 12:00:06", "66.249.79.76", "1076");
INSERT INTO `wp_gf_form_view` VALUES("6991", "3", "2014-12-27 13:00:15", "66.249.69.124", "746");
INSERT INTO `wp_gf_form_view` VALUES("6992", "6", "2014-12-27 13:35:40", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("6993", "3", "2014-12-27 14:00:16", "66.249.79.84", "634");
INSERT INTO `wp_gf_form_view` VALUES("6994", "1", "2014-12-27 14:43:11", "107.150.36.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("6995", "6", "2014-12-27 14:53:18", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("6996", "3", "2014-12-27 15:00:18", "66.249.79.92", "1058");
INSERT INTO `wp_gf_form_view` VALUES("6997", "3", "2014-12-27 16:00:05", "66.249.79.84", "1004");
INSERT INTO `wp_gf_form_view` VALUES("6998", "6", "2014-12-27 16:28:24", "217.69.133.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("6999", "3", "2014-12-27 17:00:14", "66.249.79.84", "1012");
INSERT INTO `wp_gf_form_view` VALUES("7000", "6", "2014-12-27 17:27:43", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7001", "3", "2014-12-27 18:00:12", "66.249.79.84", "1066");
INSERT INTO `wp_gf_form_view` VALUES("7002", "1", "2014-12-27 18:43:50", "171.217.145.124", "4");
INSERT INTO `wp_gf_form_view` VALUES("7003", "3", "2014-12-27 19:00:30", "66.249.79.92", "1212");
INSERT INTO `wp_gf_form_view` VALUES("7004", "1", "2014-12-27 19:02:34", "5.45.77.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("7005", "6", "2014-12-27 19:09:55", "66.249.79.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("7006", "3", "2014-12-27 20:00:10", "66.249.79.76", "1264");
INSERT INTO `wp_gf_form_view` VALUES("7007", "6", "2014-12-27 20:33:03", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7008", "3", "2014-12-27 21:00:24", "66.249.79.84", "104");
INSERT INTO `wp_gf_form_view` VALUES("7009", "3", "2014-12-27 22:07:34", "66.249.79.84", "170");
INSERT INTO `wp_gf_form_view` VALUES("7010", "3", "2014-12-27 23:03:41", "66.249.79.84", "192");
INSERT INTO `wp_gf_form_view` VALUES("7011", "3", "2014-12-28 00:00:05", "66.249.79.76", "866");
INSERT INTO `wp_gf_form_view` VALUES("7012", "3", "2014-12-28 01:00:20", "66.249.79.76", "994");
INSERT INTO `wp_gf_form_view` VALUES("7013", "6", "2014-12-28 01:29:57", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7014", "3", "2014-12-28 02:00:01", "66.249.79.84", "1194");
INSERT INTO `wp_gf_form_view` VALUES("7015", "3", "2014-12-28 03:00:06", "66.249.79.84", "637");
INSERT INTO `wp_gf_form_view` VALUES("7016", "6", "2014-12-28 03:34:36", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7017", "3", "2014-12-28 04:00:54", "66.249.79.84", "964");
INSERT INTO `wp_gf_form_view` VALUES("7018", "3", "2014-12-28 05:00:03", "66.249.79.92", "360");
INSERT INTO `wp_gf_form_view` VALUES("7019", "3", "2014-12-28 06:22:27", "54.72.112.186", "347");
INSERT INTO `wp_gf_form_view` VALUES("7020", "6", "2014-12-28 06:30:20", "54.72.112.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("7021", "1", "2014-12-28 06:34:31", "54.72.112.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("7022", "2", "2014-12-28 06:35:20", "54.72.112.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("7023", "3", "2014-12-28 07:00:29", "58.22.70.23", "177");
INSERT INTO `wp_gf_form_view` VALUES("7024", "2", "2014-12-28 07:34:43", "162.243.170.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("7025", "1", "2014-12-28 07:34:44", "162.243.170.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("7026", "3", "2014-12-28 08:01:25", "192.240.214.158", "240");
INSERT INTO `wp_gf_form_view` VALUES("7027", "2", "2014-12-28 08:18:59", "192.230.61.13", "4");
INSERT INTO `wp_gf_form_view` VALUES("7028", "3", "2014-12-28 09:01:52", "112.111.165.20", "313");
INSERT INTO `wp_gf_form_view` VALUES("7029", "3", "2014-12-28 10:01:18", "112.111.165.151", "166");
INSERT INTO `wp_gf_form_view` VALUES("7030", "2", "2014-12-28 10:20:18", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("7031", "1", "2014-12-28 10:32:51", "14.123.59.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7032", "3", "2014-12-28 11:04:34", "66.249.79.84", "222");
INSERT INTO `wp_gf_form_view` VALUES("7033", "3", "2014-12-28 12:00:23", "66.249.79.92", "400");
INSERT INTO `wp_gf_form_view` VALUES("7034", "3", "2014-12-28 13:00:23", "66.249.79.76", "423");
INSERT INTO `wp_gf_form_view` VALUES("7035", "2", "2014-12-28 13:48:01", "192.240.214.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("7036", "3", "2014-12-28 14:00:20", "66.249.79.92", "366");
INSERT INTO `wp_gf_form_view` VALUES("7037", "6", "2014-12-28 14:39:34", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7038", "3", "2014-12-28 15:01:57", "68.180.229.33", "492");
INSERT INTO `wp_gf_form_view` VALUES("7039", "3", "2014-12-28 16:00:15", "66.249.79.84", "399");
INSERT INTO `wp_gf_form_view` VALUES("7040", "3", "2014-12-28 17:02:12", "66.249.79.84", "803");
INSERT INTO `wp_gf_form_view` VALUES("7041", "6", "2014-12-28 17:07:02", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7042", "2", "2014-12-28 17:41:50", "195.154.181.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("7043", "3", "2014-12-28 18:03:15", "66.249.79.84", "508");
INSERT INTO `wp_gf_form_view` VALUES("7044", "3", "2014-12-28 19:00:10", "66.249.79.76", "739");
INSERT INTO `wp_gf_form_view` VALUES("7045", "3", "2014-12-28 20:00:29", "66.249.79.84", "110");
INSERT INTO `wp_gf_form_view` VALUES("7046", "3", "2014-12-28 21:12:47", "202.46.63.207", "38");
INSERT INTO `wp_gf_form_view` VALUES("7047", "3", "2014-12-28 22:00:25", "66.249.79.84", "91");
INSERT INTO `wp_gf_form_view` VALUES("7048", "2", "2014-12-28 22:25:51", "162.244.13.28", "4");
INSERT INTO `wp_gf_form_view` VALUES("7049", "3", "2014-12-28 23:02:41", "66.249.79.76", "305");
INSERT INTO `wp_gf_form_view` VALUES("7050", "6", "2014-12-28 23:51:09", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("7051", "2", "2014-12-29 00:23:21", "107.182.116.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("7052", "3", "2014-12-29 00:23:21", "107.182.116.195", "176");
INSERT INTO `wp_gf_form_view` VALUES("7053", "3", "2014-12-29 01:00:34", "66.249.79.92", "246");
INSERT INTO `wp_gf_form_view` VALUES("7054", "3", "2014-12-29 02:01:09", "162.244.13.28", "304");
INSERT INTO `wp_gf_form_view` VALUES("7055", "6", "2014-12-29 02:15:32", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7056", "3", "2014-12-29 03:00:02", "66.249.79.84", "376");
INSERT INTO `wp_gf_form_view` VALUES("7057", "3", "2014-12-29 04:00:22", "66.249.79.76", "86");
INSERT INTO `wp_gf_form_view` VALUES("7058", "3", "2014-12-29 05:25:25", "66.249.79.84", "202");
INSERT INTO `wp_gf_form_view` VALUES("7059", "3", "2014-12-29 06:22:20", "195.211.155.183", "284");
INSERT INTO `wp_gf_form_view` VALUES("7060", "2", "2014-12-29 06:23:47", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("7061", "3", "2014-12-29 07:00:09", "183.252.52.161", "332");
INSERT INTO `wp_gf_form_view` VALUES("7062", "3", "2014-12-29 08:01:16", "157.55.39.191", "190");
INSERT INTO `wp_gf_form_view` VALUES("7063", "3", "2014-12-29 09:00:33", "66.249.79.76", "466");
INSERT INTO `wp_gf_form_view` VALUES("7064", "3", "2014-12-29 10:00:16", "66.249.79.92", "404");
INSERT INTO `wp_gf_form_view` VALUES("7065", "3", "2014-12-29 11:00:07", "66.249.79.76", "600");
INSERT INTO `wp_gf_form_view` VALUES("7066", "3", "2014-12-29 12:00:07", "66.249.79.84", "522");
INSERT INTO `wp_gf_form_view` VALUES("7067", "3", "2014-12-29 13:00:32", "66.249.79.92", "316");
INSERT INTO `wp_gf_form_view` VALUES("7068", "3", "2014-12-29 14:01:27", "46.235.65.149", "125");
INSERT INTO `wp_gf_form_view` VALUES("7069", "3", "2014-12-29 15:07:55", "192.230.61.137", "212");
INSERT INTO `wp_gf_form_view` VALUES("7070", "2", "2014-12-29 15:59:53", "167.160.110.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("7071", "3", "2014-12-29 16:00:00", "167.160.110.60", "426");
INSERT INTO `wp_gf_form_view` VALUES("7072", "2", "2014-12-29 16:00:03", "167.160.110.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("7073", "1", "2014-12-29 16:01:07", "24.108.86.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("7074", "3", "2014-12-29 17:17:54", "66.249.79.92", "564");
INSERT INTO `wp_gf_form_view` VALUES("7075", "3", "2014-12-29 18:02:16", "66.249.79.92", "726");
INSERT INTO `wp_gf_form_view` VALUES("7076", "1", "2014-12-29 18:43:14", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("7077", "3", "2014-12-29 19:00:01", "66.249.79.84", "640");
INSERT INTO `wp_gf_form_view` VALUES("7078", "6", "2014-12-29 19:40:42", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7079", "3", "2014-12-29 20:00:06", "66.249.79.84", "980");
INSERT INTO `wp_gf_form_view` VALUES("7080", "1", "2014-12-29 20:21:32", "24.68.113.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("7081", "6", "2014-12-29 20:39:04", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7082", "3", "2014-12-29 21:00:02", "66.249.79.76", "792");
INSERT INTO `wp_gf_form_view` VALUES("7083", "3", "2014-12-29 22:00:06", "66.249.79.76", "706");
INSERT INTO `wp_gf_form_view` VALUES("7084", "3", "2014-12-29 23:00:32", "66.249.79.92", "822");
INSERT INTO `wp_gf_form_view` VALUES("7085", "1", "2014-12-29 23:06:02", "119.126.36.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("7086", "2", "2014-12-29 23:13:28", "54.69.0.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("7087", "3", "2014-12-30 00:27:42", "124.73.9.4", "264");
INSERT INTO `wp_gf_form_view` VALUES("7088", "3", "2014-12-30 01:00:30", "66.249.79.92", "412");
INSERT INTO `wp_gf_form_view` VALUES("7089", "6", "2014-12-30 01:54:45", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7090", "3", "2014-12-30 02:00:13", "66.249.79.92", "582");
INSERT INTO `wp_gf_form_view` VALUES("7091", "2", "2014-12-30 02:37:58", "162.244.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("7092", "3", "2014-12-30 03:00:24", "66.249.79.76", "666");
INSERT INTO `wp_gf_form_view` VALUES("7093", "6", "2014-12-30 03:14:52", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7094", "3", "2014-12-30 04:02:10", "66.249.79.76", "612");
INSERT INTO `wp_gf_form_view` VALUES("7095", "6", "2014-12-30 04:54:15", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7096", "3", "2014-12-30 05:00:05", "66.249.79.92", "644");
INSERT INTO `wp_gf_form_view` VALUES("7097", "6", "2014-12-30 05:09:38", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7098", "3", "2014-12-30 06:00:37", "66.249.79.84", "664");
INSERT INTO `wp_gf_form_view` VALUES("7099", "3", "2014-12-30 07:00:14", "66.249.79.76", "414");
INSERT INTO `wp_gf_form_view` VALUES("7100", "3", "2014-12-30 08:05:58", "66.249.79.84", "268");
INSERT INTO `wp_gf_form_view` VALUES("7101", "6", "2014-12-30 08:06:02", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7102", "1", "2014-12-30 08:46:59", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("7103", "3", "2014-12-30 09:25:31", "202.46.48.48", "30");
INSERT INTO `wp_gf_form_view` VALUES("7104", "3", "2014-12-30 10:04:37", "23.232.148.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("7105", "3", "2014-12-30 11:07:36", "54.69.0.59", "297");
INSERT INTO `wp_gf_form_view` VALUES("7106", "3", "2014-12-30 12:01:28", "54.69.0.59", "236");
INSERT INTO `wp_gf_form_view` VALUES("7107", "6", "2014-12-30 12:37:53", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("7108", "3", "2014-12-30 13:11:33", "66.249.79.84", "62");
INSERT INTO `wp_gf_form_view` VALUES("7109", "3", "2014-12-30 14:11:11", "217.69.133.228", "152");
INSERT INTO `wp_gf_form_view` VALUES("7110", "3", "2014-12-30 15:00:27", "66.249.79.76", "564");
INSERT INTO `wp_gf_form_view` VALUES("7111", "3", "2014-12-30 16:00:21", "66.249.79.92", "326");
INSERT INTO `wp_gf_form_view` VALUES("7112", "3", "2014-12-30 17:00:15", "66.249.79.92", "606");
INSERT INTO `wp_gf_form_view` VALUES("7113", "6", "2014-12-30 17:44:40", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7114", "3", "2014-12-30 18:00:20", "66.249.79.92", "480");
INSERT INTO `wp_gf_form_view` VALUES("7115", "3", "2014-12-30 19:00:28", "66.249.79.76", "811");
INSERT INTO `wp_gf_form_view` VALUES("7116", "3", "2014-12-30 20:00:41", "183.252.52.211", "498");
INSERT INTO `wp_gf_form_view` VALUES("7117", "6", "2014-12-30 20:25:20", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("7118", "3", "2014-12-30 21:01:39", "183.252.52.115", "398");
INSERT INTO `wp_gf_form_view` VALUES("7119", "3", "2014-12-30 22:04:32", "183.252.52.184", "353");
INSERT INTO `wp_gf_form_view` VALUES("7120", "3", "2014-12-30 23:04:19", "66.249.79.84", "336");
INSERT INTO `wp_gf_form_view` VALUES("7121", "3", "2014-12-31 00:02:48", "183.252.52.111", "371");
INSERT INTO `wp_gf_form_view` VALUES("7122", "3", "2014-12-31 01:00:02", "183.252.52.9", "106");
INSERT INTO `wp_gf_form_view` VALUES("7123", "3", "2014-12-31 02:16:37", "183.252.52.155", "92");
INSERT INTO `wp_gf_form_view` VALUES("7124", "3", "2014-12-31 03:00:26", "183.252.52.162", "154");
INSERT INTO `wp_gf_form_view` VALUES("7125", "3", "2014-12-31 04:08:21", "183.252.52.19", "368");
INSERT INTO `wp_gf_form_view` VALUES("7126", "1", "2014-12-31 04:27:23", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("7127", "3", "2014-12-31 05:30:40", "66.249.79.92", "58");
INSERT INTO `wp_gf_form_view` VALUES("7128", "3", "2014-12-31 06:18:55", "68.180.229.33", "102");
INSERT INTO `wp_gf_form_view` VALUES("7129", "3", "2014-12-31 07:02:40", "183.252.52.118", "619");
INSERT INTO `wp_gf_form_view` VALUES("7130", "2", "2014-12-31 07:46:33", "37.16.72.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("7131", "1", "2014-12-31 07:51:53", "37.16.72.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("7132", "3", "2014-12-31 08:03:28", "183.252.52.133", "88");
INSERT INTO `wp_gf_form_view` VALUES("7133", "3", "2014-12-31 09:28:56", "66.249.79.92", "90");
INSERT INTO `wp_gf_form_view` VALUES("7134", "3", "2014-12-31 10:02:49", "66.249.79.92", "222");
INSERT INTO `wp_gf_form_view` VALUES("7135", "3", "2014-12-31 11:01:32", "27.159.231.187", "416");
INSERT INTO `wp_gf_form_view` VALUES("7136", "3", "2014-12-31 13:07:32", "183.252.52.64", "188");
INSERT INTO `wp_gf_form_view` VALUES("7137", "3", "2014-12-31 14:02:38", "216.218.29.188", "162");
INSERT INTO `wp_gf_form_view` VALUES("7138", "3", "2014-12-31 15:12:37", "66.249.79.76", "636");
INSERT INTO `wp_gf_form_view` VALUES("7139", "6", "2014-12-31 15:51:29", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7140", "3", "2014-12-31 16:00:09", "183.252.52.32", "104");
INSERT INTO `wp_gf_form_view` VALUES("7141", "3", "2014-12-31 17:01:41", "183.252.52.222", "149");
INSERT INTO `wp_gf_form_view` VALUES("7142", "3", "2014-12-31 18:03:49", "66.249.79.76", "206");
INSERT INTO `wp_gf_form_view` VALUES("7143", "3", "2014-12-31 19:00:05", "66.249.79.84", "212");
INSERT INTO `wp_gf_form_view` VALUES("7144", "3", "2014-12-31 20:00:38", "66.249.79.76", "366");
INSERT INTO `wp_gf_form_view` VALUES("7145", "1", "2014-12-31 20:05:11", "118.97.158.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("7146", "3", "2014-12-31 21:00:21", "66.249.79.92", "568");
INSERT INTO `wp_gf_form_view` VALUES("7147", "3", "2014-12-31 22:00:21", "66.249.79.92", "568");
INSERT INTO `wp_gf_form_view` VALUES("7148", "3", "2014-12-31 23:01:25", "66.249.79.76", "649");
INSERT INTO `wp_gf_form_view` VALUES("7149", "3", "2015-01-01 00:02:43", "66.249.79.92", "472");
INSERT INTO `wp_gf_form_view` VALUES("7150", "3", "2015-01-01 01:00:20", "66.249.79.76", "606");
INSERT INTO `wp_gf_form_view` VALUES("7151", "3", "2015-01-01 02:00:02", "66.249.79.84", "514");
INSERT INTO `wp_gf_form_view` VALUES("7152", "1", "2015-01-01 02:32:11", "171.217.145.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("7153", "3", "2015-01-01 03:02:16", "66.249.79.84", "66");
INSERT INTO `wp_gf_form_view` VALUES("7154", "3", "2015-01-01 04:02:29", "66.249.79.92", "70");
INSERT INTO `wp_gf_form_view` VALUES("7155", "3", "2015-01-01 05:00:15", "66.249.79.76", "536");
INSERT INTO `wp_gf_form_view` VALUES("7156", "1", "2015-01-01 05:23:54", "188.165.15.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("7157", "6", "2015-01-01 05:58:19", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7158", "3", "2015-01-01 06:00:21", "66.249.79.84", "622");
INSERT INTO `wp_gf_form_view` VALUES("7159", "3", "2015-01-01 07:00:08", "66.249.79.84", "542");
INSERT INTO `wp_gf_form_view` VALUES("7160", "3", "2015-01-01 08:00:26", "66.249.79.92", "907");
INSERT INTO `wp_gf_form_view` VALUES("7161", "3", "2015-01-01 09:00:23", "66.249.79.76", "7434");
INSERT INTO `wp_gf_form_view` VALUES("7162", "1", "2015-01-01 09:12:15", "162.243.36.31", "2");
INSERT INTO `wp_gf_form_view` VALUES("7163", "2", "2015-01-01 09:17:05", "69.50.234.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("7164", "6", "2015-01-01 09:19:42", "193.253.238.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("7165", "3", "2015-01-01 10:00:00", "162.243.36.31", "4811");
INSERT INTO `wp_gf_form_view` VALUES("7166", "6", "2015-01-01 10:39:13", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("7167", "3", "2015-01-01 11:00:18", "66.249.79.84", "748");
INSERT INTO `wp_gf_form_view` VALUES("7168", "6", "2015-01-01 11:24:35", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7169", "3", "2015-01-01 12:00:17", "66.249.79.84", "660");
INSERT INTO `wp_gf_form_view` VALUES("7170", "3", "2015-01-01 13:00:21", "66.249.79.84", "844");
INSERT INTO `wp_gf_form_view` VALUES("7171", "3", "2015-01-01 14:00:09", "66.249.79.76", "65");
INSERT INTO `wp_gf_form_view` VALUES("7172", "3", "2015-01-01 15:10:28", "66.249.79.84", "376");
INSERT INTO `wp_gf_form_view` VALUES("7173", "6", "2015-01-01 15:14:40", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7174", "3", "2015-01-01 16:00:14", "66.249.79.92", "726");
INSERT INTO `wp_gf_form_view` VALUES("7175", "3", "2015-01-01 17:00:08", "66.249.79.84", "982");
INSERT INTO `wp_gf_form_view` VALUES("7176", "6", "2015-01-01 17:27:25", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7177", "3", "2015-01-01 18:00:03", "66.249.79.84", "926");
INSERT INTO `wp_gf_form_view` VALUES("7178", "3", "2015-01-01 19:00:05", "66.249.79.92", "1084");
INSERT INTO `wp_gf_form_view` VALUES("7179", "3", "2015-01-01 20:00:04", "66.249.79.92", "1128");
INSERT INTO `wp_gf_form_view` VALUES("7180", "6", "2015-01-01 20:32:53", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7181", "3", "2015-01-01 21:00:03", "66.249.79.92", "1256");
INSERT INTO `wp_gf_form_view` VALUES("7182", "1", "2015-01-01 21:48:43", "218.88.92.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("7183", "3", "2015-01-01 22:00:00", "202.46.50.180", "671");
INSERT INTO `wp_gf_form_view` VALUES("7184", "6", "2015-01-01 22:04:04", "213.238.175.29", "4");
INSERT INTO `wp_gf_form_view` VALUES("7185", "2", "2015-01-01 23:04:35", "91.121.163.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("7186", "3", "2015-01-01 23:04:35", "91.121.163.214", "24");
INSERT INTO `wp_gf_form_view` VALUES("7187", "3", "2015-01-02 00:00:03", "202.46.49.130", "114");
INSERT INTO `wp_gf_form_view` VALUES("7188", "3", "2015-01-02 01:16:48", "24.87.25.139", "70");
INSERT INTO `wp_gf_form_view` VALUES("7189", "3", "2015-01-02 02:07:03", "66.249.79.84", "226");
INSERT INTO `wp_gf_form_view` VALUES("7190", "6", "2015-01-02 02:55:33", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7191", "3", "2015-01-02 03:00:00", "66.249.79.76", "388");
INSERT INTO `wp_gf_form_view` VALUES("7192", "3", "2015-01-02 04:00:02", "66.249.79.92", "424");
INSERT INTO `wp_gf_form_view` VALUES("7193", "3", "2015-01-02 05:00:12", "66.249.79.92", "522");
INSERT INTO `wp_gf_form_view` VALUES("7194", "3", "2015-01-02 06:00:15", "66.249.79.92", "708");
INSERT INTO `wp_gf_form_view` VALUES("7195", "3", "2015-01-02 07:02:11", "66.249.79.76", "708");
INSERT INTO `wp_gf_form_view` VALUES("7196", "3", "2015-01-02 08:02:35", "66.249.79.84", "914");
INSERT INTO `wp_gf_form_view` VALUES("7197", "3", "2015-01-02 09:00:02", "66.249.79.92", "820");
INSERT INTO `wp_gf_form_view` VALUES("7198", "3", "2015-01-02 10:01:08", "144.76.201.69", "302");
INSERT INTO `wp_gf_form_view` VALUES("7199", "3", "2015-01-02 11:00:26", "66.249.79.92", "690");
INSERT INTO `wp_gf_form_view` VALUES("7200", "2", "2015-01-02 11:41:49", "107.161.85.99", "4");
INSERT INTO `wp_gf_form_view` VALUES("7201", "3", "2015-01-02 12:00:19", "66.249.79.76", "1108");
INSERT INTO `wp_gf_form_view` VALUES("7202", "3", "2015-01-02 13:01:13", "202.46.62.147", "858");
INSERT INTO `wp_gf_form_view` VALUES("7203", "3", "2015-01-02 14:00:38", "66.249.79.84", "758");
INSERT INTO `wp_gf_form_view` VALUES("7204", "3", "2015-01-02 15:00:28", "66.249.79.92", "868");
INSERT INTO `wp_gf_form_view` VALUES("7205", "3", "2015-01-02 16:02:46", "66.249.79.84", "1001");
INSERT INTO `wp_gf_form_view` VALUES("7206", "3", "2015-01-02 17:00:15", "66.249.79.76", "682");
INSERT INTO `wp_gf_form_view` VALUES("7207", "3", "2015-01-02 18:00:15", "66.249.79.92", "708");
INSERT INTO `wp_gf_form_view` VALUES("7208", "3", "2015-01-02 19:00:13", "66.249.79.84", "398");
INSERT INTO `wp_gf_form_view` VALUES("7209", "3", "2015-01-02 20:01:06", "66.249.79.84", "484");
INSERT INTO `wp_gf_form_view` VALUES("7210", "6", "2015-01-02 20:22:39", "199.15.251.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("7211", "3", "2015-01-02 21:31:58", "202.46.63.162", "62");
INSERT INTO `wp_gf_form_view` VALUES("7212", "1", "2015-01-02 21:36:46", "5.53.168.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("7213", "2", "2015-01-02 21:42:27", "23.95.93.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("7214", "3", "2015-01-02 22:16:27", "183.252.52.192", "198");
INSERT INTO `wp_gf_form_view` VALUES("7215", "3", "2015-01-02 23:06:53", "183.252.52.236", "22");
INSERT INTO `wp_gf_form_view` VALUES("7216", "3", "2015-01-03 00:14:23", "157.55.39.191", "126");
INSERT INTO `wp_gf_form_view` VALUES("7217", "3", "2015-01-03 01:17:18", "202.46.62.89", "167");
INSERT INTO `wp_gf_form_view` VALUES("7218", "3", "2015-01-03 02:03:10", "91.200.12.145", "145");
INSERT INTO `wp_gf_form_view` VALUES("7219", "3", "2015-01-03 02:03:10", "91.200.12.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("7220", "6", "2015-01-03 02:09:03", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("7221", "3", "2015-01-03 03:13:53", "202.46.61.124", "30");
INSERT INTO `wp_gf_form_view` VALUES("7222", "3", "2015-01-03 04:02:46", "109.169.29.30", "453");
INSERT INTO `wp_gf_form_view` VALUES("7223", "2", "2015-01-03 04:06:34", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("7224", "6", "2015-01-03 04:07:42", "109.169.29.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("7225", "3", "2015-01-03 05:00:40", "66.249.79.84", "2919");
INSERT INTO `wp_gf_form_view` VALUES("7226", "2", "2015-01-03 05:54:00", "167.160.107.94", "6");
INSERT INTO `wp_gf_form_view` VALUES("7227", "3", "2015-01-03 06:00:00", "66.249.79.76", "3593");
INSERT INTO `wp_gf_form_view` VALUES("7228", "3", "2015-01-03 07:00:01", "66.249.79.84", "7063");
INSERT INTO `wp_gf_form_view` VALUES("7229", "6", "2015-01-03 07:19:04", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("7230", "1", "2015-01-03 07:24:14", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("7231", "3", "2015-01-03 08:00:00", "66.249.79.92", "7008");
INSERT INTO `wp_gf_form_view` VALUES("7232", "3", "2015-01-03 09:00:00", "66.249.79.84", "7205");
INSERT INTO `wp_gf_form_view` VALUES("7233", "6", "2015-01-03 09:02:34", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7234", "3", "2015-01-03 10:00:00", "66.249.79.76", "6942");
INSERT INTO `wp_gf_form_view` VALUES("7235", "6", "2015-01-03 10:06:35", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7236", "3", "2015-01-03 11:00:00", "66.249.79.92", "7354");
INSERT INTO `wp_gf_form_view` VALUES("7237", "2", "2015-01-03 11:55:00", "144.76.42.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("7238", "6", "2015-01-03 11:59:42", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7239", "3", "2015-01-03 12:00:06", "66.249.79.84", "7050");
INSERT INTO `wp_gf_form_view` VALUES("7240", "3", "2015-01-03 13:00:01", "66.249.79.92", "7273");
INSERT INTO `wp_gf_form_view` VALUES("7241", "6", "2015-01-03 13:42:23", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7242", "3", "2015-01-03 14:00:00", "66.249.79.76", "7275");
INSERT INTO `wp_gf_form_view` VALUES("7243", "3", "2015-01-03 15:00:00", "66.249.79.92", "7475");
INSERT INTO `wp_gf_form_view` VALUES("7244", "3", "2015-01-03 16:00:06", "66.249.79.84", "632");
INSERT INTO `wp_gf_form_view` VALUES("7245", "3", "2015-01-03 17:01:22", "66.249.79.92", "3134");
INSERT INTO `wp_gf_form_view` VALUES("7246", "3", "2015-01-03 18:00:00", "66.249.79.92", "7163");
INSERT INTO `wp_gf_form_view` VALUES("7247", "3", "2015-01-03 19:00:06", "66.249.79.92", "6757");
INSERT INTO `wp_gf_form_view` VALUES("7248", "3", "2015-01-03 20:00:00", "66.249.79.84", "6484");
INSERT INTO `wp_gf_form_view` VALUES("7249", "6", "2015-01-03 20:47:17", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7250", "3", "2015-01-03 21:00:02", "66.249.79.92", "6356");
INSERT INTO `wp_gf_form_view` VALUES("7251", "3", "2015-01-03 22:00:02", "66.249.79.84", "6812");
INSERT INTO `wp_gf_form_view` VALUES("7252", "6", "2015-01-03 22:39:29", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7253", "2", "2015-01-03 22:57:29", "107.161.85.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("7254", "3", "2015-01-03 23:00:00", "66.249.79.76", "6992");
INSERT INTO `wp_gf_form_view` VALUES("7255", "6", "2015-01-03 23:00:08", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7256", "3", "2015-01-04 00:00:00", "66.249.79.76", "7075");
INSERT INTO `wp_gf_form_view` VALUES("7257", "6", "2015-01-04 00:32:03", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("7258", "3", "2015-01-04 01:00:00", "66.249.79.76", "7539");
INSERT INTO `wp_gf_form_view` VALUES("7259", "6", "2015-01-04 01:53:48", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7260", "3", "2015-01-04 02:00:01", "66.249.79.92", "7053");
INSERT INTO `wp_gf_form_view` VALUES("7261", "6", "2015-01-04 02:08:17", "66.249.79.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("7262", "3", "2015-01-04 03:00:02", "66.249.79.76", "7008");
INSERT INTO `wp_gf_form_view` VALUES("7263", "6", "2015-01-04 03:01:25", "66.249.79.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("7264", "3", "2015-01-04 04:00:02", "66.249.79.84", "1989");
INSERT INTO `wp_gf_form_view` VALUES("7265", "1", "2015-01-04 04:33:45", "198.199.66.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("7266", "2", "2015-01-04 04:33:45", "198.199.66.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("7267", "3", "2015-01-04 05:04:14", "66.249.79.76", "210");
INSERT INTO `wp_gf_form_view` VALUES("7268", "3", "2015-01-04 06:07:36", "66.249.79.76", "265");
INSERT INTO `wp_gf_form_view` VALUES("7269", "3", "2015-01-04 07:02:59", "66.249.79.92", "684");
INSERT INTO `wp_gf_form_view` VALUES("7270", "3", "2015-01-04 08:00:32", "66.249.79.84", "692");
INSERT INTO `wp_gf_form_view` VALUES("7271", "3", "2015-01-04 09:00:21", "66.249.79.84", "462");
INSERT INTO `wp_gf_form_view` VALUES("7272", "3", "2015-01-04 10:00:34", "66.249.79.84", "122");
INSERT INTO `wp_gf_form_view` VALUES("7273", "6", "2015-01-04 10:04:11", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7274", "3", "2015-01-04 11:08:15", "66.249.79.84", "50");
INSERT INTO `wp_gf_form_view` VALUES("7275", "3", "2015-01-04 12:05:32", "66.249.79.84", "360");
INSERT INTO `wp_gf_form_view` VALUES("7276", "3", "2015-01-04 13:00:23", "66.249.79.76", "418");
INSERT INTO `wp_gf_form_view` VALUES("7277", "3", "2015-01-04 14:03:00", "66.249.79.84", "484");
INSERT INTO `wp_gf_form_view` VALUES("7278", "6", "2015-01-04 14:25:28", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7279", "3", "2015-01-04 15:02:56", "66.249.79.84", "703");
INSERT INTO `wp_gf_form_view` VALUES("7280", "6", "2015-01-04 15:18:30", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("7281", "2", "2015-01-04 15:20:47", "192.3.166.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("7282", "1", "2015-01-04 15:54:27", "171.217.146.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("7283", "3", "2015-01-04 16:00:02", "66.249.79.92", "648");
INSERT INTO `wp_gf_form_view` VALUES("7284", "1", "2015-01-04 16:18:19", "171.217.146.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("7285", "3", "2015-01-04 17:00:22", "66.249.79.84", "2441");
INSERT INTO `wp_gf_form_view` VALUES("7286", "1", "2015-01-04 17:14:49", "104.37.56.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("7287", "2", "2015-01-04 17:51:52", "213.238.175.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("7288", "3", "2015-01-04 18:00:04", "66.249.79.92", "2891");
INSERT INTO `wp_gf_form_view` VALUES("7289", "1", "2015-01-04 18:09:39", "171.217.146.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("7290", "3", "2015-01-04 19:00:02", "66.249.79.84", "2607");
INSERT INTO `wp_gf_form_view` VALUES("7291", "2", "2015-01-04 19:01:16", "77.68.227.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("7292", "3", "2015-01-04 20:00:15", "66.249.79.76", "2478");
INSERT INTO `wp_gf_form_view` VALUES("7293", "3", "2015-01-04 21:01:39", "66.249.79.92", "2672");
INSERT INTO `wp_gf_form_view` VALUES("7294", "6", "2015-01-04 21:47:07", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7295", "3", "2015-01-04 22:00:21", "66.249.79.92", "2643");
INSERT INTO `wp_gf_form_view` VALUES("7296", "3", "2015-01-04 23:00:00", "66.249.79.84", "3123");
INSERT INTO `wp_gf_form_view` VALUES("7297", "1", "2015-01-04 23:17:27", "64.114.25.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("7298", "3", "2015-01-05 00:00:08", "66.249.79.84", "2918");
INSERT INTO `wp_gf_form_view` VALUES("7299", "3", "2015-01-05 01:00:05", "66.249.79.92", "3041");
INSERT INTO `wp_gf_form_view` VALUES("7300", "6", "2015-01-05 01:08:36", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("7301", "1", "2015-01-05 01:09:20", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("7302", "2", "2015-01-05 01:09:28", "79.116.31.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("7303", "3", "2015-01-05 02:00:03", "66.249.79.84", "2224");
INSERT INTO `wp_gf_form_view` VALUES("7304", "6", "2015-01-05 02:13:36", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7305", "3", "2015-01-05 03:00:31", "66.249.79.76", "136");
INSERT INTO `wp_gf_form_view` VALUES("7306", "3", "2015-01-05 04:01:11", "91.200.12.45", "308");
INSERT INTO `wp_gf_form_view` VALUES("7307", "3", "2015-01-05 05:04:12", "66.249.79.76", "2130");
INSERT INTO `wp_gf_form_view` VALUES("7308", "3", "2015-01-05 06:00:04", "66.249.79.84", "4433");
INSERT INTO `wp_gf_form_view` VALUES("7309", "6", "2015-01-05 06:34:47", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7310", "3", "2015-01-05 07:00:00", "66.249.79.92", "4665");
INSERT INTO `wp_gf_form_view` VALUES("7311", "3", "2015-01-05 08:00:04", "66.249.79.92", "4518");
INSERT INTO `wp_gf_form_view` VALUES("7312", "6", "2015-01-05 08:00:39", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7313", "3", "2015-01-05 09:00:06", "66.249.79.76", "4374");
INSERT INTO `wp_gf_form_view` VALUES("7314", "3", "2015-01-05 10:00:09", "66.249.79.92", "4034");
INSERT INTO `wp_gf_form_view` VALUES("7315", "3", "2015-01-05 11:00:02", "66.249.79.92", "4174");
INSERT INTO `wp_gf_form_view` VALUES("7316", "6", "2015-01-05 11:22:20", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("7317", "3", "2015-01-05 12:00:05", "66.249.79.92", "4609");
INSERT INTO `wp_gf_form_view` VALUES("7318", "3", "2015-01-05 13:00:00", "66.249.79.76", "4738");
INSERT INTO `wp_gf_form_view` VALUES("7319", "2", "2015-01-05 13:18:51", "80.76.206.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("7320", "1", "2015-01-05 13:18:51", "80.76.206.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("7321", "3", "2015-01-05 14:00:04", "66.249.79.76", "4422");
INSERT INTO `wp_gf_form_view` VALUES("7322", "2", "2015-01-05 14:16:19", "204.44.83.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("7323", "6", "2015-01-05 14:25:14", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7324", "3", "2015-01-05 15:00:08", "66.249.79.92", "1893");
INSERT INTO `wp_gf_form_view` VALUES("7325", "3", "2015-01-05 16:01:45", "66.249.79.76", "541");
INSERT INTO `wp_gf_form_view` VALUES("7326", "6", "2015-01-05 16:01:45", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("7327", "3", "2015-01-05 17:00:20", "66.249.79.92", "778");
INSERT INTO `wp_gf_form_view` VALUES("7328", "1", "2015-01-05 17:19:30", "24.68.239.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("7329", "3", "2015-01-05 18:00:08", "66.249.79.84", "579");
INSERT INTO `wp_gf_form_view` VALUES("7330", "3", "2015-01-05 19:00:05", "66.249.79.92", "240");
INSERT INTO `wp_gf_form_view` VALUES("7331", "6", "2015-01-05 19:10:11", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7332", "3", "2015-01-05 20:02:38", "66.249.79.84", "248");
INSERT INTO `wp_gf_form_view` VALUES("7333", "3", "2015-01-05 21:04:28", "66.249.79.92", "478");
INSERT INTO `wp_gf_form_view` VALUES("7334", "6", "2015-01-05 21:21:47", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7335", "3", "2015-01-05 22:00:19", "66.249.79.92", "1041");
INSERT INTO `wp_gf_form_view` VALUES("7336", "3", "2015-01-05 23:03:04", "66.249.79.92", "648");
INSERT INTO `wp_gf_form_view` VALUES("7337", "2", "2015-01-05 23:59:35", "204.44.83.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("7338", "3", "2015-01-06 00:00:00", "66.249.79.76", "665");
INSERT INTO `wp_gf_form_view` VALUES("7339", "2", "2015-01-06 00:01:40", "23.95.93.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("7340", "3", "2015-01-06 01:00:12", "66.249.79.92", "524");
INSERT INTO `wp_gf_form_view` VALUES("7341", "3", "2015-01-06 02:00:15", "66.249.79.84", "598");
INSERT INTO `wp_gf_form_view` VALUES("7342", "2", "2015-01-06 02:52:18", "104.37.56.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("7343", "3", "2015-01-06 03:00:27", "66.249.79.84", "580");
INSERT INTO `wp_gf_form_view` VALUES("7344", "3", "2015-01-06 04:00:30", "66.249.79.84", "582");
INSERT INTO `wp_gf_form_view` VALUES("7345", "3", "2015-01-06 05:00:31", "66.249.79.84", "403");
INSERT INTO `wp_gf_form_view` VALUES("7346", "2", "2015-01-06 05:10:06", "23.95.93.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("7347", "6", "2015-01-06 05:48:40", "202.46.48.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("7348", "3", "2015-01-06 06:03:38", "202.46.50.129", "194");
INSERT INTO `wp_gf_form_view` VALUES("7349", "3", "2015-01-06 07:00:42", "66.249.79.92", "910");
INSERT INTO `wp_gf_form_view` VALUES("7350", "3", "2015-01-06 08:00:10", "66.249.79.76", "1248");
INSERT INTO `wp_gf_form_view` VALUES("7351", "3", "2015-01-06 09:00:03", "66.249.79.92", "1599");
INSERT INTO `wp_gf_form_view` VALUES("7352", "6", "2015-01-06 09:09:54", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7353", "3", "2015-01-06 10:00:22", "66.249.79.84", "1370");
INSERT INTO `wp_gf_form_view` VALUES("7354", "3", "2015-01-06 11:00:14", "66.249.79.84", "1189");
INSERT INTO `wp_gf_form_view` VALUES("7355", "3", "2015-01-06 12:02:53", "188.165.15.84", "312");
INSERT INTO `wp_gf_form_view` VALUES("7356", "1", "2015-01-06 12:53:59", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("7357", "3", "2015-01-06 13:00:03", "66.249.79.84", "204");
INSERT INTO `wp_gf_form_view` VALUES("7358", "3", "2015-01-06 14:04:55", "66.249.79.92", "48");
INSERT INTO `wp_gf_form_view` VALUES("7359", "3", "2015-01-06 15:11:08", "202.46.63.68", "94");
INSERT INTO `wp_gf_form_view` VALUES("7360", "3", "2015-01-06 16:00:25", "183.252.52.7", "210");
INSERT INTO `wp_gf_form_view` VALUES("7361", "3", "2015-01-06 17:01:22", "66.249.79.76", "1286");
INSERT INTO `wp_gf_form_view` VALUES("7362", "3", "2015-01-06 18:00:14", "66.249.79.76", "1852");
INSERT INTO `wp_gf_form_view` VALUES("7363", "3", "2015-01-06 19:00:17", "66.249.79.92", "1872");
INSERT INTO `wp_gf_form_view` VALUES("7364", "3", "2015-01-06 20:00:11", "66.249.79.76", "1828");
INSERT INTO `wp_gf_form_view` VALUES("7365", "3", "2015-01-06 21:00:15", "66.249.79.92", "2017");
INSERT INTO `wp_gf_form_view` VALUES("7366", "1", "2015-01-06 21:48:46", "171.217.146.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("7367", "3", "2015-01-06 22:00:11", "66.249.79.84", "1920");
INSERT INTO `wp_gf_form_view` VALUES("7368", "6", "2015-01-06 22:02:28", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7369", "3", "2015-01-06 23:00:38", "66.249.79.84", "1946");
INSERT INTO `wp_gf_form_view` VALUES("7370", "3", "2015-01-07 00:00:13", "66.249.79.92", "1858");
INSERT INTO `wp_gf_form_view` VALUES("7371", "3", "2015-01-07 01:00:13", "66.249.79.84", "1414");
INSERT INTO `wp_gf_form_view` VALUES("7372", "3", "2015-01-07 02:00:35", "183.252.52.177", "68");
INSERT INTO `wp_gf_form_view` VALUES("7373", "3", "2015-01-07 03:03:25", "100.43.85.24", "214");
INSERT INTO `wp_gf_form_view` VALUES("7374", "3", "2015-01-07 04:03:25", "66.249.79.92", "941");
INSERT INTO `wp_gf_form_view` VALUES("7375", "3", "2015-01-07 05:00:07", "66.249.79.76", "2986");
INSERT INTO `wp_gf_form_view` VALUES("7376", "1", "2015-01-07 05:23:58", "24.68.31.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("7377", "3", "2015-01-07 06:00:00", "66.249.79.76", "3127");
INSERT INTO `wp_gf_form_view` VALUES("7378", "6", "2015-01-07 06:11:29", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7379", "3", "2015-01-07 07:00:06", "66.249.79.76", "3246");
INSERT INTO `wp_gf_form_view` VALUES("7380", "6", "2015-01-07 07:50:40", "69.12.77.248", "10");
INSERT INTO `wp_gf_form_view` VALUES("7381", "3", "2015-01-07 08:00:07", "66.249.79.84", "3133");
INSERT INTO `wp_gf_form_view` VALUES("7382", "2", "2015-01-07 08:42:57", "167.160.110.126", "4");
INSERT INTO `wp_gf_form_view` VALUES("7383", "3", "2015-01-07 09:00:08", "66.249.79.92", "3158");
INSERT INTO `wp_gf_form_view` VALUES("7384", "6", "2015-01-07 09:38:57", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("7385", "3", "2015-01-07 10:00:09", "66.249.79.84", "3224");
INSERT INTO `wp_gf_form_view` VALUES("7386", "3", "2015-01-07 11:00:09", "66.249.79.92", "3437");
INSERT INTO `wp_gf_form_view` VALUES("7387", "6", "2015-01-07 11:21:38", "192.230.41.225", "4");
INSERT INTO `wp_gf_form_view` VALUES("7388", "3", "2015-01-07 12:00:00", "66.249.79.84", "3663");
INSERT INTO `wp_gf_form_view` VALUES("7389", "6", "2015-01-07 12:00:26", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7390", "3", "2015-01-07 13:00:19", "66.249.79.76", "1668");
INSERT INTO `wp_gf_form_view` VALUES("7391", "6", "2015-01-07 13:01:41", "192.3.176.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("7392", "3", "2015-01-07 14:00:14", "183.252.52.197", "141");
INSERT INTO `wp_gf_form_view` VALUES("7393", "6", "2015-01-07 14:43:09", "119.40.97.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("7394", "3", "2015-01-07 15:07:56", "167.160.112.217", "442");
INSERT INTO `wp_gf_form_view` VALUES("7395", "3", "2015-01-07 16:00:21", "66.249.79.92", "3958");
INSERT INTO `wp_gf_form_view` VALUES("7396", "1", "2015-01-07 16:45:16", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("7397", "3", "2015-01-07 17:00:07", "66.249.79.76", "6726");
INSERT INTO `wp_gf_form_view` VALUES("7398", "2", "2015-01-07 17:58:52", "167.160.112.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("7399", "3", "2015-01-07 18:00:00", "66.249.79.92", "6474");
INSERT INTO `wp_gf_form_view` VALUES("7400", "6", "2015-01-07 18:46:31", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7401", "3", "2015-01-07 19:00:00", "66.249.79.92", "6161");
INSERT INTO `wp_gf_form_view` VALUES("7402", "6", "2015-01-07 19:23:11", "157.55.39.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("7403", "3", "2015-01-07 20:00:00", "66.249.79.76", "6333");
INSERT INTO `wp_gf_form_view` VALUES("7404", "1", "2015-01-07 20:25:46", "83.85.21.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("7405", "3", "2015-01-07 21:00:00", "66.249.79.84", "5865");
INSERT INTO `wp_gf_form_view` VALUES("7406", "3", "2015-01-07 22:01:22", "66.249.79.76", "6256");
INSERT INTO `wp_gf_form_view` VALUES("7407", "1", "2015-01-07 22:54:08", "24.108.82.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("7408", "3", "2015-01-07 23:00:00", "66.249.79.92", "5925");
INSERT INTO `wp_gf_form_view` VALUES("7409", "3", "2015-01-08 00:00:00", "66.249.79.84", "6826");
INSERT INTO `wp_gf_form_view` VALUES("7410", "6", "2015-01-08 00:10:48", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7411", "3", "2015-01-08 01:00:00", "66.249.79.92", "6509");
INSERT INTO `wp_gf_form_view` VALUES("7412", "3", "2015-01-08 02:00:03", "66.249.79.92", "6962");
INSERT INTO `wp_gf_form_view` VALUES("7413", "6", "2015-01-08 02:58:57", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7414", "3", "2015-01-08 03:00:00", "66.249.79.92", "6426");
INSERT INTO `wp_gf_form_view` VALUES("7415", "3", "2015-01-08 04:00:00", "66.249.79.76", "6879");
INSERT INTO `wp_gf_form_view` VALUES("7416", "1", "2015-01-08 04:17:35", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("7417", "3", "2015-01-08 05:00:00", "66.249.79.84", "3996");
INSERT INTO `wp_gf_form_view` VALUES("7418", "1", "2015-01-08 05:54:31", "171.217.146.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("7419", "3", "2015-01-08 06:00:01", "66.249.79.92", "7368");
INSERT INTO `wp_gf_form_view` VALUES("7420", "3", "2015-01-08 07:00:06", "66.249.79.92", "6372");
INSERT INTO `wp_gf_form_view` VALUES("7421", "3", "2015-01-08 08:00:05", "66.249.79.76", "7214");
INSERT INTO `wp_gf_form_view` VALUES("7422", "6", "2015-01-08 08:12:16", "66.249.79.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("7423", "2", "2015-01-08 08:36:06", "92.85.165.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("7424", "3", "2015-01-08 09:00:00", "66.249.79.76", "6507");
INSERT INTO `wp_gf_form_view` VALUES("7425", "6", "2015-01-08 09:14:57", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("7426", "3", "2015-01-08 10:00:00", "66.249.79.84", "6398");
INSERT INTO `wp_gf_form_view` VALUES("7427", "6", "2015-01-08 10:08:12", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7428", "3", "2015-01-08 11:00:00", "66.249.79.84", "6298");
INSERT INTO `wp_gf_form_view` VALUES("7429", "3", "2015-01-08 12:00:00", "66.249.79.76", "6535");
INSERT INTO `wp_gf_form_view` VALUES("7430", "6", "2015-01-08 12:35:05", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7431", "3", "2015-01-08 13:00:00", "66.249.79.84", "6501");
INSERT INTO `wp_gf_form_view` VALUES("7432", "6", "2015-01-08 13:19:17", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7433", "2", "2015-01-08 13:42:42", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("7434", "3", "2015-01-08 14:00:00", "66.249.79.92", "6365");
INSERT INTO `wp_gf_form_view` VALUES("7435", "3", "2015-01-08 15:00:00", "66.249.79.92", "6858");
INSERT INTO `wp_gf_form_view` VALUES("7436", "3", "2015-01-08 16:00:00", "66.249.79.92", "6497");
INSERT INTO `wp_gf_form_view` VALUES("7437", "2", "2015-01-08 16:37:27", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("7438", "3", "2015-01-08 17:00:00", "66.249.79.92", "3612");
INSERT INTO `wp_gf_form_view` VALUES("7439", "3", "2015-01-08 18:00:05", "66.249.79.84", "4754");
INSERT INTO `wp_gf_form_view` VALUES("7440", "3", "2015-01-08 19:00:51", "66.249.79.92", "4929");
INSERT INTO `wp_gf_form_view` VALUES("7441", "3", "2015-01-08 20:00:04", "66.249.79.92", "5458");
INSERT INTO `wp_gf_form_view` VALUES("7442", "3", "2015-01-08 21:00:00", "66.249.79.84", "6041");
INSERT INTO `wp_gf_form_view` VALUES("7443", "2", "2015-01-08 21:36:50", "188.165.15.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("7444", "3", "2015-01-08 22:00:00", "183.252.52.157", "5148");
INSERT INTO `wp_gf_form_view` VALUES("7445", "3", "2015-01-08 23:00:00", "66.249.79.92", "5946");
INSERT INTO `wp_gf_form_view` VALUES("7446", "6", "2015-01-08 23:22:01", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7447", "3", "2015-01-09 00:00:01", "66.249.79.84", "5874");
INSERT INTO `wp_gf_form_view` VALUES("7448", "6", "2015-01-09 00:18:51", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7449", "3", "2015-01-09 01:00:26", "66.249.79.84", "5785");
INSERT INTO `wp_gf_form_view` VALUES("7450", "3", "2015-01-09 02:00:00", "66.249.79.84", "2197");
INSERT INTO `wp_gf_form_view` VALUES("7451", "3", "2015-01-09 03:02:45", "66.249.79.84", "248");
INSERT INTO `wp_gf_form_view` VALUES("7452", "3", "2015-01-09 04:00:02", "24.108.130.110", "398");
INSERT INTO `wp_gf_form_view` VALUES("7453", "1", "2015-01-09 04:46:26", "185.25.151.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("7454", "3", "2015-01-09 05:00:18", "66.249.79.76", "2008");
INSERT INTO `wp_gf_form_view` VALUES("7455", "6", "2015-01-09 05:29:51", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7456", "3", "2015-01-09 06:00:03", "66.249.79.92", "2420");
INSERT INTO `wp_gf_form_view` VALUES("7457", "3", "2015-01-09 07:00:08", "66.249.79.84", "2862");
INSERT INTO `wp_gf_form_view` VALUES("7458", "3", "2015-01-09 08:00:15", "66.249.79.76", "2690");
INSERT INTO `wp_gf_form_view` VALUES("7459", "2", "2015-01-09 08:12:23", "54.68.187.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("7460", "6", "2015-01-09 08:39:37", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7461", "3", "2015-01-09 09:00:17", "66.249.79.84", "2520");
INSERT INTO `wp_gf_form_view` VALUES("7462", "3", "2015-01-09 10:00:10", "66.249.79.76", "2736");
INSERT INTO `wp_gf_form_view` VALUES("7463", "3", "2015-01-09 11:00:03", "66.249.79.84", "2611");
INSERT INTO `wp_gf_form_view` VALUES("7464", "6", "2015-01-09 11:13:32", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7465", "3", "2015-01-09 12:00:06", "66.249.79.92", "1608");
INSERT INTO `wp_gf_form_view` VALUES("7466", "3", "2015-01-09 13:03:48", "183.252.52.244", "216");
INSERT INTO `wp_gf_form_view` VALUES("7467", "3", "2015-01-09 14:08:16", "183.252.52.125", "264");
INSERT INTO `wp_gf_form_view` VALUES("7468", "3", "2015-01-09 15:07:31", "155.94.132.187", "277");
INSERT INTO `wp_gf_form_view` VALUES("7469", "3", "2015-01-09 16:00:05", "66.249.79.84", "586");
INSERT INTO `wp_gf_form_view` VALUES("7470", "3", "2015-01-09 17:01:00", "66.249.79.84", "1755");
INSERT INTO `wp_gf_form_view` VALUES("7471", "3", "2015-01-09 18:00:00", "66.249.79.84", "1957");
INSERT INTO `wp_gf_form_view` VALUES("7472", "3", "2015-01-09 19:00:20", "66.249.79.84", "2394");
INSERT INTO `wp_gf_form_view` VALUES("7473", "3", "2015-01-09 20:00:41", "66.249.79.76", "2062");
INSERT INTO `wp_gf_form_view` VALUES("7474", "6", "2015-01-09 20:36:38", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7475", "3", "2015-01-09 21:00:06", "64.114.222.229", "2042");
INSERT INTO `wp_gf_form_view` VALUES("7476", "3", "2015-01-09 22:00:05", "66.249.79.84", "2052");
INSERT INTO `wp_gf_form_view` VALUES("7477", "3", "2015-01-09 23:00:00", "66.249.79.84", "2172");
INSERT INTO `wp_gf_form_view` VALUES("7478", "3", "2015-01-10 00:00:19", "66.249.79.92", "2622");
INSERT INTO `wp_gf_form_view` VALUES("7479", "6", "2015-01-10 00:06:10", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7480", "3", "2015-01-10 01:00:17", "68.180.229.33", "150");
INSERT INTO `wp_gf_form_view` VALUES("7481", "3", "2015-01-10 02:00:31", "66.249.79.76", "44");
INSERT INTO `wp_gf_form_view` VALUES("7482", "3", "2015-01-10 03:38:57", "66.249.79.76", "140");
INSERT INTO `wp_gf_form_view` VALUES("7483", "3", "2015-01-10 04:00:30", "66.249.79.76", "2446");
INSERT INTO `wp_gf_form_view` VALUES("7484", "3", "2015-01-10 05:00:08", "66.249.79.84", "3178");
INSERT INTO `wp_gf_form_view` VALUES("7485", "6", "2015-01-10 05:22:54", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("7486", "3", "2015-01-10 06:00:07", "66.249.79.92", "2736");
INSERT INTO `wp_gf_form_view` VALUES("7487", "6", "2015-01-10 06:45:01", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7488", "3", "2015-01-10 07:00:00", "66.249.79.84", "3380");
INSERT INTO `wp_gf_form_view` VALUES("7489", "3", "2015-01-10 08:00:00", "66.249.79.92", "3614");
INSERT INTO `wp_gf_form_view` VALUES("7490", "3", "2015-01-10 09:00:05", "66.249.79.84", "3724");
INSERT INTO `wp_gf_form_view` VALUES("7491", "3", "2015-01-10 10:00:00", "66.249.79.92", "3570");
INSERT INTO `wp_gf_form_view` VALUES("7492", "6", "2015-01-10 10:28:06", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7493", "3", "2015-01-10 11:00:03", "66.249.79.84", "3543");
INSERT INTO `wp_gf_form_view` VALUES("7494", "6", "2015-01-10 11:42:52", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7495", "3", "2015-01-10 12:00:08", "66.249.79.92", "3434");
INSERT INTO `wp_gf_form_view` VALUES("7496", "3", "2015-01-10 13:00:04", "66.249.79.92", "702");
INSERT INTO `wp_gf_form_view` VALUES("7497", "3", "2015-01-10 14:08:43", "66.249.79.76", "344");
INSERT INTO `wp_gf_form_view` VALUES("7498", "3", "2015-01-10 15:03:01", "195.211.155.183", "288");
INSERT INTO `wp_gf_form_view` VALUES("7499", "3", "2015-01-10 16:00:13", "66.249.79.84", "1666");
INSERT INTO `wp_gf_form_view` VALUES("7500", "6", "2015-01-10 16:58:55", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7501", "3", "2015-01-10 17:00:32", "66.249.79.84", "2118");
INSERT INTO `wp_gf_form_view` VALUES("7502", "3", "2015-01-10 18:00:35", "66.249.79.76", "1820");
INSERT INTO `wp_gf_form_view` VALUES("7503", "3", "2015-01-10 19:00:31", "66.249.79.92", "2198");
INSERT INTO `wp_gf_form_view` VALUES("7504", "6", "2015-01-10 19:18:54", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7505", "3", "2015-01-10 20:00:13", "66.249.79.92", "3152");
INSERT INTO `wp_gf_form_view` VALUES("7506", "1", "2015-01-10 20:31:11", "171.213.23.203", "2");
INSERT INTO `wp_gf_form_view` VALUES("7507", "3", "2015-01-10 21:00:07", "66.249.79.92", "3064");
INSERT INTO `wp_gf_form_view` VALUES("7508", "6", "2015-01-10 21:12:03", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("7509", "3", "2015-01-10 22:00:07", "66.249.79.84", "2926");
INSERT INTO `wp_gf_form_view` VALUES("7510", "6", "2015-01-10 22:49:40", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7511", "3", "2015-01-10 23:00:01", "66.249.79.84", "2910");
INSERT INTO `wp_gf_form_view` VALUES("7512", "3", "2015-01-11 00:00:13", "66.249.79.76", "2640");
INSERT INTO `wp_gf_form_view` VALUES("7513", "3", "2015-01-11 01:00:14", "66.249.79.92", "436");
INSERT INTO `wp_gf_form_view` VALUES("7514", "3", "2015-01-11 02:00:12", "66.249.79.84", "346");
INSERT INTO `wp_gf_form_view` VALUES("7515", "3", "2015-01-11 03:00:08", "66.249.79.76", "494");
INSERT INTO `wp_gf_form_view` VALUES("7516", "3", "2015-01-11 04:00:07", "66.249.79.92", "527");
INSERT INTO `wp_gf_form_view` VALUES("7517", "3", "2015-01-11 05:05:18", "66.249.79.92", "591");
INSERT INTO `wp_gf_form_view` VALUES("7518", "3", "2015-01-11 06:00:22", "66.249.79.76", "946");
INSERT INTO `wp_gf_form_view` VALUES("7519", "3", "2015-01-11 07:00:21", "66.249.79.76", "1132");
INSERT INTO `wp_gf_form_view` VALUES("7520", "3", "2015-01-11 08:01:02", "66.249.79.92", "990");
INSERT INTO `wp_gf_form_view` VALUES("7521", "3", "2015-01-11 09:05:02", "66.249.79.84", "312");
INSERT INTO `wp_gf_form_view` VALUES("7522", "3", "2015-01-11 10:05:29", "68.180.229.33", "42");
INSERT INTO `wp_gf_form_view` VALUES("7523", "1", "2015-01-11 11:03:40", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("7524", "3", "2015-01-11 11:03:40", "66.249.79.76", "328");
INSERT INTO `wp_gf_form_view` VALUES("7525", "6", "2015-01-11 11:53:58", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7526", "3", "2015-01-11 12:00:44", "66.249.79.92", "338");
INSERT INTO `wp_gf_form_view` VALUES("7527", "3", "2015-01-11 13:00:06", "66.249.79.92", "373");
INSERT INTO `wp_gf_form_view` VALUES("7528", "2", "2015-01-11 13:19:14", "198.211.106.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("7529", "1", "2015-01-11 13:19:15", "198.211.106.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("7530", "3", "2015-01-11 14:03:32", "183.252.52.90", "60");
INSERT INTO `wp_gf_form_view` VALUES("7531", "3", "2015-01-11 15:07:49", "82.192.74.118", "266");
INSERT INTO `wp_gf_form_view` VALUES("7532", "1", "2015-01-11 15:08:03", "82.192.74.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("7533", "2", "2015-01-11 15:08:15", "82.192.74.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("7534", "3", "2015-01-11 16:02:37", "66.249.79.76", "162");
INSERT INTO `wp_gf_form_view` VALUES("7535", "3", "2015-01-11 17:00:36", "66.249.79.76", "801");
INSERT INTO `wp_gf_form_view` VALUES("7536", "3", "2015-01-11 18:00:35", "66.249.79.84", "1302");
INSERT INTO `wp_gf_form_view` VALUES("7537", "6", "2015-01-11 18:47:49", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("7538", "3", "2015-01-11 19:00:01", "66.249.79.92", "1418");
INSERT INTO `wp_gf_form_view` VALUES("7539", "2", "2015-01-11 19:31:29", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("7540", "1", "2015-01-11 19:31:33", "192.99.149.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("7541", "3", "2015-01-11 20:02:33", "66.249.79.92", "1642");
INSERT INTO `wp_gf_form_view` VALUES("7542", "3", "2015-01-11 21:00:26", "66.249.79.76", "1574");
INSERT INTO `wp_gf_form_view` VALUES("7543", "3", "2015-01-11 22:00:27", "66.249.79.76", "1365");
INSERT INTO `wp_gf_form_view` VALUES("7544", "3", "2015-01-11 23:12:42", "202.46.61.123", "43");
INSERT INTO `wp_gf_form_view` VALUES("7545", "3", "2015-01-12 00:00:03", "24.68.23.2", "314");
INSERT INTO `wp_gf_form_view` VALUES("7546", "3", "2015-01-12 01:07:36", "66.249.79.84", "238");
INSERT INTO `wp_gf_form_view` VALUES("7547", "3", "2015-01-12 02:01:39", "192.99.33.150", "720");
INSERT INTO `wp_gf_form_view` VALUES("7548", "3", "2015-01-12 03:01:37", "91.200.12.145", "526");
INSERT INTO `wp_gf_form_view` VALUES("7549", "3", "2015-01-12 03:01:37", "91.200.12.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("7550", "1", "2015-01-12 03:16:21", "213.238.175.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("7551", "3", "2015-01-12 04:07:26", "202.46.49.35", "311");
INSERT INTO `wp_gf_form_view` VALUES("7552", "3", "2015-01-12 05:01:20", "66.249.79.92", "732");
INSERT INTO `wp_gf_form_view` VALUES("7553", "3", "2015-01-12 06:01:50", "184.69.162.158", "1838");
INSERT INTO `wp_gf_form_view` VALUES("7554", "3", "2015-01-12 07:00:12", "66.249.79.92", "2058");
INSERT INTO `wp_gf_form_view` VALUES("7555", "3", "2015-01-12 08:00:07", "66.249.79.84", "1846");
INSERT INTO `wp_gf_form_view` VALUES("7556", "3", "2015-01-12 09:00:21", "66.249.79.92", "2142");
INSERT INTO `wp_gf_form_view` VALUES("7557", "3", "2015-01-12 10:00:13", "66.249.79.76", "2048");
INSERT INTO `wp_gf_form_view` VALUES("7558", "3", "2015-01-12 11:00:03", "66.249.79.76", "1372");
INSERT INTO `wp_gf_form_view` VALUES("7559", "6", "2015-01-12 11:21:40", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("7560", "3", "2015-01-12 12:06:00", "66.249.79.84", "156");
INSERT INTO `wp_gf_form_view` VALUES("7561", "6", "2015-01-12 12:08:33", "66.249.79.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7562", "3", "2015-01-12 13:05:32", "66.249.67.84", "202");
INSERT INTO `wp_gf_form_view` VALUES("7563", "6", "2015-01-12 13:14:34", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7564", "3", "2015-01-12 14:04:14", "100.43.85.24", "192");
INSERT INTO `wp_gf_form_view` VALUES("7565", "3", "2015-01-12 15:07:13", "100.43.85.24", "326");
INSERT INTO `wp_gf_form_view` VALUES("7566", "3", "2015-01-12 16:00:00", "66.249.79.84", "474");
INSERT INTO `wp_gf_form_view` VALUES("7567", "1", "2015-01-12 16:42:35", "195.154.250.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("7568", "6", "2015-01-12 16:47:33", "157.55.39.232", "2");
INSERT INTO `wp_gf_form_view` VALUES("7569", "3", "2015-01-12 17:01:25", "183.252.52.68", "506");
INSERT INTO `wp_gf_form_view` VALUES("7570", "3", "2015-01-12 18:00:58", "66.249.79.84", "1446");
INSERT INTO `wp_gf_form_view` VALUES("7571", "3", "2015-01-12 19:00:09", "66.249.79.92", "1668");
INSERT INTO `wp_gf_form_view` VALUES("7572", "3", "2015-01-12 20:00:13", "66.249.79.92", "1824");
INSERT INTO `wp_gf_form_view` VALUES("7573", "6", "2015-01-12 20:08:51", "24.132.86.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("7574", "1", "2015-01-12 20:11:05", "24.132.86.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("7575", "2", "2015-01-12 20:11:21", "24.132.86.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("7576", "3", "2015-01-12 21:00:40", "66.249.79.84", "1794");
INSERT INTO `wp_gf_form_view` VALUES("7577", "3", "2015-01-12 22:00:02", "66.249.79.84", "2206");
INSERT INTO `wp_gf_form_view` VALUES("7578", "1", "2015-01-12 22:53:58", "68.180.229.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("7579", "3", "2015-01-12 23:04:08", "24.108.148.45", "572");
INSERT INTO `wp_gf_form_view` VALUES("7580", "3", "2015-01-13 00:03:05", "183.252.52.188", "776");
INSERT INTO `wp_gf_form_view` VALUES("7581", "3", "2015-01-13 01:02:16", "183.252.52.158", "730");
INSERT INTO `wp_gf_form_view` VALUES("7582", "3", "2015-01-13 02:00:10", "66.249.79.84", "428");
INSERT INTO `wp_gf_form_view` VALUES("7583", "3", "2015-01-13 03:01:11", "66.249.79.76", "4777");
INSERT INTO `wp_gf_form_view` VALUES("7584", "2", "2015-01-13 03:39:41", "5.9.127.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("7585", "1", "2015-01-13 03:40:02", "5.9.127.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("7586", "6", "2015-01-13 03:41:38", "5.9.127.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("7587", "3", "2015-01-13 04:00:01", "5.9.127.154", "6106");
INSERT INTO `wp_gf_form_view` VALUES("7588", "6", "2015-01-13 04:00:07", "5.9.127.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("7589", "3", "2015-01-13 05:00:06", "66.249.79.84", "808");
INSERT INTO `wp_gf_form_view` VALUES("7590", "6", "2015-01-13 05:00:39", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7591", "3", "2015-01-13 06:01:20", "66.249.79.76", "680");
INSERT INTO `wp_gf_form_view` VALUES("7592", "6", "2015-01-13 06:24:48", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7593", "3", "2015-01-13 07:06:44", "66.249.79.84", "606");
INSERT INTO `wp_gf_form_view` VALUES("7594", "3", "2015-01-13 08:01:19", "202.46.49.101", "420");
INSERT INTO `wp_gf_form_view` VALUES("7595", "3", "2015-01-13 09:03:21", "66.249.79.92", "576");
INSERT INTO `wp_gf_form_view` VALUES("7596", "3", "2015-01-13 10:00:50", "66.249.79.76", "1110");
INSERT INTO `wp_gf_form_view` VALUES("7597", "3", "2015-01-13 11:00:02", "66.249.79.92", "1232");
INSERT INTO `wp_gf_form_view` VALUES("7598", "6", "2015-01-13 11:26:25", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("7599", "3", "2015-01-13 12:00:48", "66.249.79.84", "1204");
INSERT INTO `wp_gf_form_view` VALUES("7600", "6", "2015-01-13 12:04:15", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7601", "3", "2015-01-13 13:00:43", "66.249.79.76", "1504");
INSERT INTO `wp_gf_form_view` VALUES("7602", "6", "2015-01-13 13:36:35", "66.249.79.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("7603", "3", "2015-01-13 14:00:03", "66.249.79.76", "1220");
INSERT INTO `wp_gf_form_view` VALUES("7604", "3", "2015-01-13 15:00:12", "66.249.79.84", "1180");
INSERT INTO `wp_gf_form_view` VALUES("7605", "3", "2015-01-13 16:00:33", "66.249.79.84", "1302");
INSERT INTO `wp_gf_form_view` VALUES("7606", "3", "2015-01-13 17:01:15", "66.249.79.76", "1396");
INSERT INTO `wp_gf_form_view` VALUES("7607", "3", "2015-01-13 18:21:27", "66.249.79.84", "326");
INSERT INTO `wp_gf_form_view` VALUES("7608", "6", "2015-01-13 18:34:01", "157.55.39.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("7609", "3", "2015-01-13 19:05:31", "192.99.149.88", "1086");
INSERT INTO `wp_gf_form_view` VALUES("7610", "3", "2015-01-13 20:00:13", "66.249.79.76", "1346");
INSERT INTO `wp_gf_form_view` VALUES("7611", "6", "2015-01-13 20:36:01", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7612", "3", "2015-01-13 21:00:01", "66.249.79.92", "2252");
INSERT INTO `wp_gf_form_view` VALUES("7613", "3", "2015-01-13 22:00:06", "66.249.79.84", "4032");
INSERT INTO `wp_gf_form_view` VALUES("7614", "6", "2015-01-13 22:38:31", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("7615", "3", "2015-01-13 23:00:19", "66.249.79.92", "1352");
INSERT INTO `wp_gf_form_view` VALUES("7616", "1", "2015-01-13 23:55:28", "24.68.12.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("7617", "3", "2015-01-14 00:00:35", "66.249.79.76", "524");
INSERT INTO `wp_gf_form_view` VALUES("7618", "3", "2015-01-14 01:03:39", "91.200.12.49", "774");
INSERT INTO `wp_gf_form_view` VALUES("7619", "6", "2015-01-14 01:23:03", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("7620", "3", "2015-01-14 02:07:13", "66.249.79.92", "184");
INSERT INTO `wp_gf_form_view` VALUES("7621", "3", "2015-01-14 03:01:22", "68.180.229.33", "332");
INSERT INTO `wp_gf_form_view` VALUES("7622", "3", "2015-01-14 04:00:19", "104.158.10.142", "282");
INSERT INTO `wp_gf_form_view` VALUES("7623", "1", "2015-01-14 04:09:21", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("7624", "3", "2015-01-14 05:06:16", "66.249.79.76", "1884");
INSERT INTO `wp_gf_form_view` VALUES("7625", "6", "2015-01-14 05:28:07", "62.210.82.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("7626", "2", "2015-01-14 05:28:37", "62.210.82.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("7627", "1", "2015-01-14 05:28:39", "62.210.82.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("7628", "3", "2015-01-14 06:00:33", "66.249.79.76", "236");
INSERT INTO `wp_gf_form_view` VALUES("7629", "3", "2015-01-14 07:02:46", "66.249.79.92", "2762");
INSERT INTO `wp_gf_form_view` VALUES("7630", "6", "2015-01-14 07:34:23", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7631", "3", "2015-01-14 08:00:05", "66.249.79.76", "1204");
INSERT INTO `wp_gf_form_view` VALUES("7632", "2", "2015-01-14 08:23:00", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("7633", "6", "2015-01-14 08:45:44", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("7634", "3", "2015-01-14 09:00:27", "66.249.79.84", "4132");
INSERT INTO `wp_gf_form_view` VALUES("7635", "6", "2015-01-14 09:25:28", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7636", "3", "2015-01-14 10:00:08", "66.249.79.76", "1945");
INSERT INTO `wp_gf_form_view` VALUES("7637", "6", "2015-01-14 10:00:09", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7638", "3", "2015-01-14 11:00:02", "66.249.79.76", "2487");
INSERT INTO `wp_gf_form_view` VALUES("7639", "3", "2015-01-14 12:00:18", "66.249.79.84", "2529");
INSERT INTO `wp_gf_form_view` VALUES("7640", "6", "2015-01-14 12:31:53", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("7641", "3", "2015-01-14 13:36:18", "66.249.79.76", "42");
INSERT INTO `wp_gf_form_view` VALUES("7642", "3", "2015-01-14 14:04:22", "68.180.229.33", "140");
INSERT INTO `wp_gf_form_view` VALUES("7643", "1", "2015-01-14 14:05:58", "5.53.168.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("7644", "3", "2015-01-14 15:02:46", "188.165.15.227", "965");
INSERT INTO `wp_gf_form_view` VALUES("7645", "6", "2015-01-14 15:40:51", "66.249.79.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("7646", "3", "2015-01-14 16:00:04", "66.249.79.92", "1429");
INSERT INTO `wp_gf_form_view` VALUES("7647", "3", "2015-01-14 17:00:08", "66.249.79.92", "1094");
INSERT INTO `wp_gf_form_view` VALUES("7648", "1", "2015-01-14 17:02:28", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("7649", "3", "2015-01-14 18:00:19", "66.249.79.92", "1423");
INSERT INTO `wp_gf_form_view` VALUES("7650", "3", "2015-01-14 19:00:52", "66.249.79.76", "676");
INSERT INTO `wp_gf_form_view` VALUES("7651", "3", "2015-01-14 20:00:55", "66.249.79.76", "302");
INSERT INTO `wp_gf_form_view` VALUES("7652", "3", "2015-01-14 21:07:44", "66.249.79.84", "1276");
INSERT INTO `wp_gf_form_view` VALUES("7653", "3", "2015-01-14 22:00:47", "66.249.79.84", "912");
INSERT INTO `wp_gf_form_view` VALUES("7654", "3", "2015-01-14 23:02:45", "66.249.79.92", "376");
INSERT INTO `wp_gf_form_view` VALUES("7655", "3", "2015-01-15 00:00:04", "66.249.79.84", "962");
INSERT INTO `wp_gf_form_view` VALUES("7656", "6", "2015-01-15 00:24:56", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("7657", "3", "2015-01-15 01:00:45", "66.249.79.76", "541");
INSERT INTO `wp_gf_form_view` VALUES("7658", "3", "2015-01-15 02:00:05", "202.46.62.53", "946");
INSERT INTO `wp_gf_form_view` VALUES("7659", "2", "2015-01-15 02:46:57", "204.44.91.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("7660", "6", "2015-01-15 02:56:49", "188.165.15.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("7661", "3", "2015-01-15 03:00:00", "66.249.79.84", "886");
INSERT INTO `wp_gf_form_view` VALUES("7662", "3", "2015-01-15 04:01:13", "66.249.79.84", "1468");
INSERT INTO `wp_gf_form_view` VALUES("7663", "3", "2015-01-15 05:01:37", "188.165.15.187", "112");
INSERT INTO `wp_gf_form_view` VALUES("7664", "3", "2015-01-15 06:07:13", "68.180.229.33", "261");
INSERT INTO `wp_gf_form_view` VALUES("7665", "6", "2015-01-15 06:11:25", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("7666", "1", "2015-01-15 06:18:33", "62.210.93.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("7667", "2", "2015-01-15 06:52:27", "192.3.166.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("7668", "2", "2015-01-15 07:22:09", "192.3.166.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("7669", "3", "2015-01-15 07:22:09", "192.3.166.40", "56");
INSERT INTO `wp_gf_form_view` VALUES("7670", "3", "2015-01-15 08:12:45", "202.46.48.152", "275");
INSERT INTO `wp_gf_form_view` VALUES("7671", "2", "2015-01-15 09:09:08", "167.160.107.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("7672", "3", "2015-01-15 09:09:08", "167.160.107.81", "182");
INSERT INTO `wp_gf_form_view` VALUES("7673", "6", "2015-01-15 09:10:18", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("7674", "3", "2015-01-15 10:15:35", "192.187.127.122", "42");
INSERT INTO `wp_gf_form_view` VALUES("7675", "3", "2015-01-15 11:12:37", "66.249.79.76", "28");
INSERT INTO `wp_gf_form_view` VALUES("7676", "2", "2015-01-15 11:31:20", "69.12.65.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("7677", "3", "2015-01-15 12:15:04", "202.46.63.209", "264");
INSERT INTO `wp_gf_form_view` VALUES("7678", "2", "2015-01-15 12:35:30", "167.160.112.224", "3");
INSERT INTO `wp_gf_form_view` VALUES("7679", "3", "2015-01-15 13:37:27", "2.91.246.229", "29");
INSERT INTO `wp_gf_form_view` VALUES("7680", "2", "2015-01-15 13:56:25", "155.94.132.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("7681", "3", "2015-01-15 14:34:17", "167.160.107.6", "132");
INSERT INTO `wp_gf_form_view` VALUES("7682", "3", "2015-01-15 15:28:14", "202.46.61.105", "60");
INSERT INTO `wp_gf_form_view` VALUES("7683", "3", "2015-01-15 16:01:13", "8.28.16.254", "654");
INSERT INTO `wp_gf_form_view` VALUES("7684", "3", "2015-01-15 17:07:25", "204.44.83.151", "214");
INSERT INTO `wp_gf_form_view` VALUES("7685", "2", "2015-01-15 17:31:41", "202.46.62.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("7686", "3", "2015-01-15 18:00:44", "66.249.79.92", "1173");
INSERT INTO `wp_gf_form_view` VALUES("7687", "6", "2015-01-15 18:48:20", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7688", "3", "2015-01-15 19:00:00", "66.249.79.76", "1005");
INSERT INTO `wp_gf_form_view` VALUES("7689", "2", "2015-01-15 19:40:10", "23.89.160.199", "3");
INSERT INTO `wp_gf_form_view` VALUES("7690", "3", "2015-01-15 20:00:32", "66.249.79.92", "2137");
INSERT INTO `wp_gf_form_view` VALUES("7691", "2", "2015-01-15 20:30:16", "213.238.175.29", "3");
INSERT INTO `wp_gf_form_view` VALUES("7692", "6", "2015-01-15 20:50:06", "66.249.79.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("7693", "3", "2015-01-15 21:09:18", "202.46.63.68", "316");
INSERT INTO `wp_gf_form_view` VALUES("7694", "3", "2015-01-15 22:27:48", "66.249.79.92", "970");
INSERT INTO `wp_gf_form_view` VALUES("7695", "3", "2015-01-15 23:01:43", "66.249.79.76", "1054");
INSERT INTO `wp_gf_form_view` VALUES("7696", "2", "2015-01-15 23:26:21", "198.12.74.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("7697", "3", "2015-01-16 00:00:02", "66.249.79.84", "1784");
INSERT INTO `wp_gf_form_view` VALUES("7698", "1", "2015-01-16 00:39:37", "174.127.133.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("7699", "2", "2015-01-16 00:42:23", "174.127.133.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("7700", "6", "2015-01-16 00:50:22", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7701", "3", "2015-01-16 01:00:13", "66.249.79.84", "1362");
INSERT INTO `wp_gf_form_view` VALUES("7702", "2", "2015-01-16 01:09:35", "107.183.229.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("7703", "1", "2015-01-16 01:16:21", "174.127.133.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("7704", "3", "2015-01-16 02:00:57", "66.249.79.92", "504");
INSERT INTO `wp_gf_form_view` VALUES("7705", "3", "2015-01-16 03:00:47", "66.249.79.84", "656");
INSERT INTO `wp_gf_form_view` VALUES("7706", "2", "2015-01-16 03:02:27", "167.160.112.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("7707", "3", "2015-01-16 04:01:16", "167.160.107.6", "112");
INSERT INTO `wp_gf_form_view` VALUES("7708", "2", "2015-01-16 04:46:03", "23.94.79.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("7709", "3", "2015-01-16 05:04:06", "204.44.83.184", "237");
INSERT INTO `wp_gf_form_view` VALUES("7710", "1", "2015-01-16 05:05:18", "75.156.75.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("7711", "3", "2015-01-16 06:03:31", "66.249.79.76", "860");
INSERT INTO `wp_gf_form_view` VALUES("7712", "2", "2015-01-16 06:31:26", "107.161.85.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("7713", "3", "2015-01-16 07:00:18", "66.249.79.92", "738");
INSERT INTO `wp_gf_form_view` VALUES("7714", "3", "2015-01-16 08:01:28", "66.249.79.84", "758");
INSERT INTO `wp_gf_form_view` VALUES("7715", "6", "2015-01-16 08:34:47", "68.180.229.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("7716", "3", "2015-01-16 09:11:05", "204.44.113.222", "56");
INSERT INTO `wp_gf_form_view` VALUES("7717", "3", "2015-01-16 10:01:07", "66.249.79.92", "271");
INSERT INTO `wp_gf_form_view` VALUES("7718", "2", "2015-01-16 10:11:44", "23.89.160.147", "5");
INSERT INTO `wp_gf_form_view` VALUES("7719", "3", "2015-01-16 11:20:01", "66.249.79.84", "96");
INSERT INTO `wp_gf_form_view` VALUES("7720", "2", "2015-01-16 11:57:06", "23.95.21.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("7721", "3", "2015-01-16 12:07:21", "188.165.15.212", "255");
INSERT INTO `wp_gf_form_view` VALUES("7722", "3", "2015-01-16 13:11:45", "202.46.61.105", "80");
INSERT INTO `wp_gf_form_view` VALUES("7723", "2", "2015-01-16 13:59:22", "155.94.132.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("7724", "3", "2015-01-16 14:06:19", "66.249.79.76", "98");
INSERT INTO `wp_gf_form_view` VALUES("7725", "3", "2015-01-16 15:18:14", "198.12.74.212", "76");
INSERT INTO `wp_gf_form_view` VALUES("7726", "3", "2015-01-16 16:03:12", "100.43.85.24", "74");
INSERT INTO `wp_gf_form_view` VALUES("7727", "2", "2015-01-16 16:10:40", "155.94.132.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("7728", "3", "2015-01-16 17:06:40", "66.249.79.92", "774");
INSERT INTO `wp_gf_form_view` VALUES("7729", "3", "2015-01-16 18:00:37", "66.249.79.84", "362");
INSERT INTO `wp_gf_form_view` VALUES("7730", "3", "2015-01-16 19:00:50", "66.249.79.76", "405");
INSERT INTO `wp_gf_form_view` VALUES("7731", "3", "2015-01-16 20:01:05", "66.249.79.76", "184");
INSERT INTO `wp_gf_form_view` VALUES("7732", "3", "2015-01-16 21:00:09", "66.249.79.76", "182");
INSERT INTO `wp_gf_form_view` VALUES("7733", "3", "2015-01-16 22:15:19", "66.249.79.76", "200");
INSERT INTO `wp_gf_form_view` VALUES("7734", "3", "2015-01-16 23:00:15", "66.249.79.76", "1548");
INSERT INTO `wp_gf_form_view` VALUES("7735", "3", "2015-01-17 00:02:17", "70.67.81.5", "128");
INSERT INTO `wp_gf_form_view` VALUES("7736", "3", "2015-01-17 01:11:31", "192.187.127.122", "202");
INSERT INTO `wp_gf_form_view` VALUES("7737", "3", "2015-01-17 02:00:12", "66.249.79.84", "310");
INSERT INTO `wp_gf_form_view` VALUES("7738", "3", "2015-01-17 03:00:57", "66.249.79.92", "178");
INSERT INTO `wp_gf_form_view` VALUES("7739", "3", "2015-01-17 04:13:00", "74.91.23.52", "216");
INSERT INTO `wp_gf_form_view` VALUES("7740", "3", "2015-01-17 05:05:50", "66.249.79.92", "140");
INSERT INTO `wp_gf_form_view` VALUES("7741", "3", "2015-01-17 06:01:14", "66.249.79.76", "252");
INSERT INTO `wp_gf_form_view` VALUES("7742", "3", "2015-01-17 07:05:49", "66.249.79.76", "248");
INSERT INTO `wp_gf_form_view` VALUES("7743", "3", "2015-01-17 08:29:45", "66.249.79.92", "328");
INSERT INTO `wp_gf_form_view` VALUES("7744", "2", "2015-01-17 08:53:32", "155.94.132.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("7745", "3", "2015-01-17 09:00:04", "66.249.79.92", "238");
INSERT INTO `wp_gf_form_view` VALUES("7746", "3", "2015-01-17 10:01:11", "66.249.79.84", "182");
INSERT INTO `wp_gf_form_view` VALUES("7747", "3", "2015-01-17 11:00:55", "66.249.79.92", "184");
INSERT INTO `wp_gf_form_view` VALUES("7748", "2", "2015-01-17 11:02:58", "202.46.62.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("7749", "3", "2015-01-17 12:08:49", "188.165.15.212", "134");
INSERT INTO `wp_gf_form_view` VALUES("7750", "3", "2015-01-17 13:03:17", "192.187.127.122", "80");
INSERT INTO `wp_gf_form_view` VALUES("7751", "3", "2015-01-17 14:14:23", "202.46.50.37", "78");
INSERT INTO `wp_gf_form_view` VALUES("7752", "3", "2015-01-17 15:18:02", "204.44.83.184", "205");
INSERT INTO `wp_gf_form_view` VALUES("7753", "3", "2015-01-17 16:00:30", "66.249.79.76", "320");
INSERT INTO `wp_gf_form_view` VALUES("7754", "3", "2015-01-17 17:01:15", "66.249.79.92", "216");
INSERT INTO `wp_gf_form_view` VALUES("7755", "1", "2015-01-17 17:37:45", "62.210.93.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("7756", "3", "2015-01-17 18:02:13", "204.44.83.151", "288");
INSERT INTO `wp_gf_form_view` VALUES("7757", "3", "2015-01-17 19:03:54", "202.46.63.207", "257");
INSERT INTO `wp_gf_form_view` VALUES("7758", "2", "2015-01-17 19:20:03", "167.160.112.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("7759", "3", "2015-01-17 20:11:00", "69.12.65.82", "197");
INSERT INTO `wp_gf_form_view` VALUES("7760", "3", "2015-01-17 21:00:00", "192.187.127.122", "312");
INSERT INTO `wp_gf_form_view` VALUES("7761", "3", "2015-01-17 22:02:51", "69.12.65.52", "260");
INSERT INTO `wp_gf_form_view` VALUES("7762", "3", "2015-01-17 23:01:16", "66.249.79.76", "358");
INSERT INTO `wp_gf_form_view` VALUES("7763", "3", "2015-01-18 00:05:17", "66.249.79.76", "512");
INSERT INTO `wp_gf_form_view` VALUES("7764", "3", "2015-01-18 01:40:05", "220.181.108.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("7765", "3", "2015-01-18 02:13:22", "220.181.108.186", "382");
INSERT INTO `wp_gf_form_view` VALUES("7766", "6", "2015-01-18 02:26:37", "199.72.16.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("7767", "1", "2015-01-18 02:28:33", "199.72.16.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("7768", "2", "2015-01-18 02:29:11", "199.72.16.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("7769", "3", "2015-01-18 03:05:14", "68.180.229.33", "138");
INSERT INTO `wp_gf_form_view` VALUES("7770", "3", "2015-01-18 04:01:42", "202.46.50.128", "144");
INSERT INTO `wp_gf_form_view` VALUES("7771", "3", "2015-01-18 05:05:08", "66.249.79.76", "430");
INSERT INTO `wp_gf_form_view` VALUES("7772", "3", "2015-01-18 06:00:45", "66.249.79.76", "1720");
INSERT INTO `wp_gf_form_view` VALUES("7773", "2", "2015-01-18 06:22:58", "194.58.61.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("7774", "6", "2015-01-18 06:36:42", "120.202.249.203", "2");
INSERT INTO `wp_gf_form_view` VALUES("7775", "3", "2015-01-18 07:14:01", "77.174.247.250", "2780");
INSERT INTO `wp_gf_form_view` VALUES("7776", "6", "2015-01-18 07:20:49", "200.18.5.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("7777", "2", "2015-01-18 07:21:37", "200.18.5.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("7778", "1", "2015-01-18 07:23:44", "216.86.146.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("7779", "3", "2015-01-18 08:00:03", "171.97.148.243", "2329");
INSERT INTO `wp_gf_form_view` VALUES("7780", "1", "2015-01-18 08:03:26", "171.97.148.243", "4");
INSERT INTO `wp_gf_form_view` VALUES("7781", "6", "2015-01-18 08:43:15", "124.122.60.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("7782", "2", "2015-01-18 08:45:22", "124.122.60.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("7783", "3", "2015-01-18 09:08:11", "77.58.224.171", "4013");
INSERT INTO `wp_gf_form_view` VALUES("7784", "1", "2015-01-18 09:20:27", "93.63.195.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("7785", "2", "2015-01-18 09:20:52", "93.63.195.196", "4");
INSERT INTO `wp_gf_form_view` VALUES("7786", "6", "2015-01-18 09:22:58", "145.97.196.166", "2");
INSERT INTO `wp_gf_form_view` VALUES("7787", "3", "2015-01-18 10:01:29", "162.243.108.121", "2497");
INSERT INTO `wp_gf_form_view` VALUES("7788", "1", "2015-01-18 10:31:52", "49.156.36.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("7789", "2", "2015-01-18 10:32:29", "49.156.36.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("7790", "3", "2015-01-18 11:16:32", "93.63.195.196", "1401");
INSERT INTO `wp_gf_form_view` VALUES("7791", "1", "2015-01-18 11:19:56", "93.63.195.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("7792", "3", "2015-01-18 12:02:18", "192.187.127.122", "1985");
INSERT INTO `wp_gf_form_view` VALUES("7793", "6", "2015-01-18 12:18:25", "207.236.194.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("7794", "2", "2015-01-18 12:23:16", "207.236.194.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("7795", "1", "2015-01-18 12:23:37", "207.236.194.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("7796", "3", "2015-01-18 13:01:35", "2.139.253.147", "1348");
INSERT INTO `wp_gf_form_view` VALUES("7797", "1", "2015-01-18 13:05:56", "2.139.253.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("7798", "2", "2015-01-18 13:07:10", "2.139.253.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("7799", "6", "2015-01-18 13:16:26", "188.165.15.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("7800", "3", "2015-01-18 14:00:03", "210.128.72.155", "916");
INSERT INTO `wp_gf_form_view` VALUES("7801", "2", "2015-01-18 14:02:11", "210.128.72.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("7802", "3", "2015-01-18 15:06:46", "201.242.48.241", "2617");
INSERT INTO `wp_gf_form_view` VALUES("7803", "1", "2015-01-18 15:11:46", "201.242.48.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("7804", "2", "2015-01-18 15:12:19", "201.242.48.241", "2");
INSERT INTO `wp_gf_form_view` VALUES("7805", "3", "2015-01-18 16:14:42", "202.46.49.129", "1768");
INSERT INTO `wp_gf_form_view` VALUES("7806", "6", "2015-01-18 16:21:20", "201.49.212.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("7807", "2", "2015-01-18 16:22:14", "201.49.212.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("7808", "1", "2015-01-18 16:22:20", "201.49.212.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("7809", "3", "2015-01-18 17:00:01", "125.143.70.211", "691");
INSERT INTO `wp_gf_form_view` VALUES("7810", "6", "2015-01-18 17:10:14", "92.85.57.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("7811", "3", "2015-01-18 18:00:15", "192.3.166.225", "1599");
INSERT INTO `wp_gf_form_view` VALUES("7812", "1", "2015-01-18 18:15:19", "201.211.100.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("7813", "2", "2015-01-18 18:49:21", "37.187.152.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("7814", "3", "2015-01-18 19:01:50", "66.249.79.92", "1543");
INSERT INTO `wp_gf_form_view` VALUES("7815", "6", "2015-01-18 19:45:48", "66.249.79.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("7816", "3", "2015-01-18 20:00:00", "162.243.54.225", "9804");
INSERT INTO `wp_gf_form_view` VALUES("7817", "1", "2015-01-18 20:05:08", "162.243.54.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("7818", "6", "2015-01-18 20:19:55", "195.50.10.23", "3");
INSERT INTO `wp_gf_form_view` VALUES("7819", "2", "2015-01-18 20:20:49", "195.50.10.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("7820", "3", "2015-01-18 21:00:00", "162.243.54.225", "2918");
INSERT INTO `wp_gf_form_view` VALUES("7821", "2", "2015-01-18 21:06:04", "186.89.208.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("7822", "3", "2015-01-18 22:25:03", "68.180.229.33", "658");
INSERT INTO `wp_gf_form_view` VALUES("7823", "2", "2015-01-18 22:36:51", "190.204.118.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("7824", "3", "2015-01-18 23:07:19", "192.187.127.122", "174");
INSERT INTO `wp_gf_form_view` VALUES("7825", "3", "2015-01-19 00:00:47", "202.46.62.203", "1821");
INSERT INTO `wp_gf_form_view` VALUES("7826", "2", "2015-01-19 00:26:02", "131.0.116.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("7827", "3", "2015-01-19 01:10:43", "202.46.49.197", "700");
INSERT INTO `wp_gf_form_view` VALUES("7828", "1", "2015-01-19 01:43:17", "190.75.33.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("7829", "3", "2015-01-19 02:02:03", "186.93.96.187", "875");
INSERT INTO `wp_gf_form_view` VALUES("7830", "2", "2015-01-19 02:32:42", "107.161.85.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("7831", "3", "2015-01-19 03:05:51", "66.249.79.92", "245");
INSERT INTO `wp_gf_form_view` VALUES("7832", "3", "2015-01-19 04:09:11", "120.59.97.136", "221");
INSERT INTO `wp_gf_form_view` VALUES("7833", "1", "2015-01-19 04:12:56", "198.211.106.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("7834", "2", "2015-01-19 04:12:56", "198.211.106.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("7835", "3", "2015-01-19 05:11:20", "23.95.21.217", "182");
INSERT INTO `wp_gf_form_view` VALUES("7836", "3", "2015-01-19 06:05:42", "66.249.79.76", "266");
INSERT INTO `wp_gf_form_view` VALUES("7837", "3", "2015-01-19 07:01:35", "66.249.79.92", "642");
INSERT INTO `wp_gf_form_view` VALUES("7838", "3", "2015-01-19 08:00:26", "66.249.79.92", "616");
INSERT INTO `wp_gf_form_view` VALUES("7839", "2", "2015-01-19 08:44:34", "192.3.166.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("7840", "3", "2015-01-19 09:01:33", "68.180.229.33", "327");
INSERT INTO `wp_gf_form_view` VALUES("7841", "2", "2015-01-19 09:21:45", "167.160.110.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("7842", "3", "2015-01-19 10:47:45", "208.115.113.83", "14");
INSERT INTO `wp_gf_form_view` VALUES("7843", "3", "2015-01-19 11:12:37", "66.249.79.84", "70");
INSERT INTO `wp_gf_form_view` VALUES("7844", "3", "2015-01-19 12:05:32", "66.249.79.76", "84");
INSERT INTO `wp_gf_form_view` VALUES("7845", "3", "2015-01-19 13:02:40", "66.249.79.76", "112");
INSERT INTO `wp_gf_form_view` VALUES("7846", "6", "2015-01-19 13:12:18", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("7847", "3", "2015-01-19 14:27:42", "66.249.79.76", "234");
INSERT INTO `wp_gf_form_view` VALUES("7848", "3", "2015-01-19 15:02:40", "66.249.79.76", "113");
INSERT INTO `wp_gf_form_view` VALUES("7849", "3", "2015-01-19 16:33:46", "205.211.144.167", "138");
INSERT INTO `wp_gf_form_view` VALUES("7850", "3", "2015-01-19 17:00:55", "205.211.144.167", "16");
INSERT INTO `wp_gf_form_view` VALUES("7851", "3", "2015-01-19 18:10:12", "96.54.204.94", "182");
INSERT INTO `wp_gf_form_view` VALUES("7852", "3", "2015-01-19 19:29:25", "202.46.49.188", "14");
INSERT INTO `wp_gf_form_view` VALUES("7853", "3", "2015-01-19 20:00:01", "66.249.79.76", "574");
INSERT INTO `wp_gf_form_view` VALUES("7854", "3", "2015-01-19 21:00:31", "66.249.79.84", "128");
INSERT INTO `wp_gf_form_view` VALUES("7855", "3", "2015-01-19 22:15:32", "66.249.79.76", "332");
INSERT INTO `wp_gf_form_view` VALUES("7856", "3", "2015-01-19 23:01:01", "66.249.79.92", "164");
INSERT INTO `wp_gf_form_view` VALUES("7857", "6", "2015-01-19 23:16:14", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7858", "3", "2015-01-20 00:19:13", "66.249.79.76", "70");
INSERT INTO `wp_gf_form_view` VALUES("7859", "3", "2015-01-20 01:02:09", "66.249.79.92", "255");
INSERT INTO `wp_gf_form_view` VALUES("7860", "3", "2015-01-20 02:14:33", "78.85.78.151", "220");
INSERT INTO `wp_gf_form_view` VALUES("7861", "3", "2015-01-20 03:48:48", "66.249.79.92", "70");
INSERT INTO `wp_gf_form_view` VALUES("7862", "1", "2015-01-20 04:11:13", "96.50.14.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("7863", "3", "2015-01-20 04:11:13", "96.50.14.252", "263");
INSERT INTO `wp_gf_form_view` VALUES("7864", "2", "2015-01-20 04:54:29", "107.183.229.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("7865", "3", "2015-01-20 05:13:47", "66.249.79.92", "108");
INSERT INTO `wp_gf_form_view` VALUES("7866", "6", "2015-01-20 05:29:36", "66.249.79.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("7867", "3", "2015-01-20 06:00:49", "220.181.108.174", "304");
INSERT INTO `wp_gf_form_view` VALUES("7868", "2", "2015-01-20 07:02:37", "23.89.160.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("7869", "3", "2015-01-20 07:02:37", "23.89.160.51", "266");
INSERT INTO `wp_gf_form_view` VALUES("7870", "3", "2015-01-20 08:06:23", "107.182.125.47", "1218");
INSERT INTO `wp_gf_form_view` VALUES("7871", "3", "2015-01-20 09:00:06", "66.249.79.76", "462");
INSERT INTO `wp_gf_form_view` VALUES("7872", "3", "2015-01-20 10:01:29", "66.249.79.76", "1002");
INSERT INTO `wp_gf_form_view` VALUES("7873", "3", "2015-01-20 11:00:51", "66.249.79.92", "786");
INSERT INTO `wp_gf_form_view` VALUES("7874", "3", "2015-01-20 12:01:05", "66.249.79.92", "144");
INSERT INTO `wp_gf_form_view` VALUES("7875", "3", "2015-01-20 13:03:19", "66.249.79.84", "96");
INSERT INTO `wp_gf_form_view` VALUES("7876", "3", "2015-01-20 14:07:02", "202.46.49.194", "383");
INSERT INTO `wp_gf_form_view` VALUES("7877", "3", "2015-01-20 15:01:04", "66.249.79.92", "324");
INSERT INTO `wp_gf_form_view` VALUES("7878", "1", "2015-01-20 16:00:05", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7879", "3", "2015-01-20 16:00:05", "66.249.79.76", "499");
INSERT INTO `wp_gf_form_view` VALUES("7880", "2", "2015-01-20 16:33:03", "104.37.56.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("7881", "3", "2015-01-20 17:01:24", "66.249.79.84", "1092");
INSERT INTO `wp_gf_form_view` VALUES("7882", "3", "2015-01-20 18:00:07", "66.249.79.84", "1858");
INSERT INTO `wp_gf_form_view` VALUES("7883", "3", "2015-01-20 19:00:09", "66.249.79.76", "666");
INSERT INTO `wp_gf_form_view` VALUES("7884", "6", "2015-01-20 20:00:04", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("7885", "3", "2015-01-20 20:00:04", "100.43.85.24", "250");
INSERT INTO `wp_gf_form_view` VALUES("7886", "3", "2015-01-20 21:07:45", "68.180.229.33", "758");
INSERT INTO `wp_gf_form_view` VALUES("7887", "6", "2015-01-20 21:55:12", "104.152.191.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("7888", "1", "2015-01-20 21:56:59", "104.152.191.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("7889", "2", "2015-01-20 21:57:21", "104.152.191.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("7890", "3", "2015-01-20 22:00:44", "66.249.79.76", "240");
INSERT INTO `wp_gf_form_view` VALUES("7891", "3", "2015-01-20 23:00:47", "66.249.79.84", "534");
INSERT INTO `wp_gf_form_view` VALUES("7892", "3", "2015-01-21 00:00:49", "66.249.79.76", "4323");
INSERT INTO `wp_gf_form_view` VALUES("7893", "1", "2015-01-21 00:12:11", "24.69.68.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("7894", "3", "2015-01-21 01:00:00", "66.249.79.84", "6122");
INSERT INTO `wp_gf_form_view` VALUES("7895", "3", "2015-01-21 02:00:00", "66.249.79.76", "6322");
INSERT INTO `wp_gf_form_view` VALUES("7896", "3", "2015-01-21 03:00:00", "66.249.79.92", "5851");
INSERT INTO `wp_gf_form_view` VALUES("7897", "6", "2015-01-21 03:55:45", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7898", "3", "2015-01-21 04:00:06", "66.249.79.76", "5584");
INSERT INTO `wp_gf_form_view` VALUES("7899", "6", "2015-01-21 04:24:19", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("7900", "3", "2015-01-21 05:00:01", "66.249.79.84", "5867");
INSERT INTO `wp_gf_form_view` VALUES("7901", "6", "2015-01-21 05:38:07", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7902", "3", "2015-01-21 06:00:00", "66.249.79.84", "6430");
INSERT INTO `wp_gf_form_view` VALUES("7903", "2", "2015-01-21 06:42:03", "167.160.107.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("7904", "6", "2015-01-21 06:46:45", "66.249.79.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("7905", "3", "2015-01-21 07:00:01", "69.199.12.146", "6157");
INSERT INTO `wp_gf_form_view` VALUES("7906", "1", "2015-01-21 07:00:13", "69.199.12.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("7907", "2", "2015-01-21 07:00:26", "69.199.12.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("7908", "3", "2015-01-21 08:00:00", "66.249.79.92", "6079");
INSERT INTO `wp_gf_form_view` VALUES("7909", "3", "2015-01-21 09:00:00", "66.249.79.84", "5608");
INSERT INTO `wp_gf_form_view` VALUES("7910", "3", "2015-01-21 10:00:04", "66.249.79.76", "6370");
INSERT INTO `wp_gf_form_view` VALUES("7911", "3", "2015-01-21 11:00:03", "66.249.79.92", "6173");
INSERT INTO `wp_gf_form_view` VALUES("7912", "6", "2015-01-21 11:41:00", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7913", "3", "2015-01-21 12:00:00", "66.249.79.76", "6091");
INSERT INTO `wp_gf_form_view` VALUES("7914", "3", "2015-01-21 13:00:02", "66.249.79.76", "4833");
INSERT INTO `wp_gf_form_view` VALUES("7915", "3", "2015-01-21 14:00:41", "66.249.79.84", "4779");
INSERT INTO `wp_gf_form_view` VALUES("7916", "3", "2015-01-21 15:00:00", "66.249.79.76", "6153");
INSERT INTO `wp_gf_form_view` VALUES("7917", "3", "2015-01-21 16:00:02", "66.249.79.92", "6303");
INSERT INTO `wp_gf_form_view` VALUES("7918", "6", "2015-01-21 16:14:03", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7919", "3", "2015-01-21 17:00:00", "66.249.79.92", "5802");
INSERT INTO `wp_gf_form_view` VALUES("7920", "3", "2015-01-21 18:00:00", "66.249.67.84", "6357");
INSERT INTO `wp_gf_form_view` VALUES("7921", "3", "2015-01-21 19:00:00", "66.249.67.92", "6019");
INSERT INTO `wp_gf_form_view` VALUES("7922", "3", "2015-01-21 20:00:02", "66.249.67.84", "5370");
INSERT INTO `wp_gf_form_view` VALUES("7923", "3", "2015-01-21 21:00:00", "66.249.67.84", "6036");
INSERT INTO `wp_gf_form_view` VALUES("7924", "6", "2015-01-21 21:27:33", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7925", "3", "2015-01-21 22:00:00", "66.249.67.76", "5819");
INSERT INTO `wp_gf_form_view` VALUES("7926", "3", "2015-01-21 23:00:00", "66.249.67.92", "6157");
INSERT INTO `wp_gf_form_view` VALUES("7927", "3", "2015-01-22 00:00:00", "66.249.67.76", "6620");
INSERT INTO `wp_gf_form_view` VALUES("7928", "3", "2015-01-22 01:00:00", "66.249.67.92", "3980");
INSERT INTO `wp_gf_form_view` VALUES("7929", "6", "2015-01-22 01:35:56", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("7930", "3", "2015-01-22 02:01:13", "66.249.67.84", "448");
INSERT INTO `wp_gf_form_view` VALUES("7931", "3", "2015-01-22 03:00:37", "66.249.67.84", "7923");
INSERT INTO `wp_gf_form_view` VALUES("7932", "1", "2015-01-22 03:09:35", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("7933", "3", "2015-01-22 04:00:00", "66.249.67.84", "5999");
INSERT INTO `wp_gf_form_view` VALUES("7934", "3", "2015-01-22 05:00:03", "66.249.67.92", "6424");
INSERT INTO `wp_gf_form_view` VALUES("7935", "6", "2015-01-22 05:07:18", "66.249.67.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("7936", "2", "2015-01-22 05:54:10", "193.201.224.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("7937", "3", "2015-01-22 06:00:03", "66.249.67.76", "7064");
INSERT INTO `wp_gf_form_view` VALUES("7938", "2", "2015-01-22 06:14:19", "91.108.182.82", "5");
INSERT INTO `wp_gf_form_view` VALUES("7939", "6", "2015-01-22 06:48:22", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7940", "3", "2015-01-22 07:00:00", "66.249.67.76", "6561");
INSERT INTO `wp_gf_form_view` VALUES("7941", "6", "2015-01-22 07:24:58", "66.249.67.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("7942", "3", "2015-01-22 08:00:00", "66.249.67.76", "6276");
INSERT INTO `wp_gf_form_view` VALUES("7943", "2", "2015-01-22 08:02:46", "5.157.36.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("7944", "3", "2015-01-22 09:00:00", "66.249.67.92", "5978");
INSERT INTO `wp_gf_form_view` VALUES("7945", "2", "2015-01-22 09:43:52", "178.216.54.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("7946", "3", "2015-01-22 10:00:08", "66.249.67.76", "7108");
INSERT INTO `wp_gf_form_view` VALUES("7947", "6", "2015-01-22 10:14:45", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("7948", "3", "2015-01-22 11:00:07", "66.249.67.76", "6563");
INSERT INTO `wp_gf_form_view` VALUES("7949", "2", "2015-01-22 11:24:56", "37.203.208.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("7950", "3", "2015-01-22 12:00:00", "66.249.67.84", "6754");
INSERT INTO `wp_gf_form_view` VALUES("7951", "6", "2015-01-22 12:11:33", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("7952", "3", "2015-01-22 13:00:01", "66.249.67.76", "3368");
INSERT INTO `wp_gf_form_view` VALUES("7953", "2", "2015-01-22 13:32:07", "66.249.67.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("7954", "3", "2015-01-22 14:00:50", "66.249.67.92", "3604");
INSERT INTO `wp_gf_form_view` VALUES("7955", "3", "2015-01-22 15:00:30", "66.249.67.92", "6689");
INSERT INTO `wp_gf_form_view` VALUES("7956", "3", "2015-01-22 16:00:00", "66.249.67.76", "6505");
INSERT INTO `wp_gf_form_view` VALUES("7957", "1", "2015-01-22 16:48:51", "220.181.108.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("7958", "3", "2015-01-22 17:00:03", "66.249.67.76", "6495");
INSERT INTO `wp_gf_form_view` VALUES("7959", "2", "2015-01-22 17:10:49", "65.111.164.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("7960", "3", "2015-01-22 18:00:00", "66.249.67.92", "7048");
INSERT INTO `wp_gf_form_view` VALUES("7961", "3", "2015-01-22 19:00:00", "66.249.67.92", "5930");
INSERT INTO `wp_gf_form_view` VALUES("7962", "3", "2015-01-22 20:00:05", "66.249.67.84", "6474");
INSERT INTO `wp_gf_form_view` VALUES("7963", "3", "2015-01-22 21:00:00", "66.249.67.92", "6750");
INSERT INTO `wp_gf_form_view` VALUES("7964", "3", "2015-01-22 22:00:00", "66.249.67.92", "6790");
INSERT INTO `wp_gf_form_view` VALUES("7965", "3", "2015-01-22 23:00:00", "66.249.67.76", "6529");
INSERT INTO `wp_gf_form_view` VALUES("7966", "3", "2015-01-23 00:00:00", "66.249.67.76", "6591");
INSERT INTO `wp_gf_form_view` VALUES("7967", "6", "2015-01-23 00:24:47", "68.180.228.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("7968", "3", "2015-01-23 01:00:06", "66.249.67.76", "1296");
INSERT INTO `wp_gf_form_view` VALUES("7969", "3", "2015-01-23 02:02:38", "184.66.155.69", "648");
INSERT INTO `wp_gf_form_view` VALUES("7970", "2", "2015-01-23 02:54:40", "193.201.224.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("7971", "3", "2015-01-23 03:01:08", "66.249.67.84", "3751");
INSERT INTO `wp_gf_form_view` VALUES("7972", "2", "2015-01-23 03:03:09", "193.201.224.41", "4");
INSERT INTO `wp_gf_form_view` VALUES("7973", "6", "2015-01-23 03:18:14", "81.10.155.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("7974", "1", "2015-01-23 03:18:54", "81.10.155.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("7975", "3", "2015-01-23 04:00:07", "66.249.67.76", "5978");
INSERT INTO `wp_gf_form_view` VALUES("7976", "3", "2015-01-23 05:00:05", "66.249.67.84", "5469");
INSERT INTO `wp_gf_form_view` VALUES("7977", "3", "2015-01-23 06:00:00", "66.249.67.76", "5580");
INSERT INTO `wp_gf_form_view` VALUES("7978", "3", "2015-01-23 07:00:04", "66.249.67.76", "5512");
INSERT INTO `wp_gf_form_view` VALUES("7979", "3", "2015-01-23 08:00:04", "66.249.67.76", "6237");
INSERT INTO `wp_gf_form_view` VALUES("7980", "3", "2015-01-23 09:00:00", "66.249.67.76", "5768");
INSERT INTO `wp_gf_form_view` VALUES("7981", "3", "2015-01-23 10:00:06", "66.249.67.92", "6292");
INSERT INTO `wp_gf_form_view` VALUES("7982", "3", "2015-01-23 11:00:08", "66.249.67.76", "5590");
INSERT INTO `wp_gf_form_view` VALUES("7983", "3", "2015-01-23 12:00:01", "66.249.67.92", "5158");
INSERT INTO `wp_gf_form_view` VALUES("7984", "6", "2015-01-23 12:41:34", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("7985", "3", "2015-01-23 13:00:23", "66.249.67.76", "1318");
INSERT INTO `wp_gf_form_view` VALUES("7986", "3", "2015-01-23 14:10:09", "66.249.67.84", "320");
INSERT INTO `wp_gf_form_view` VALUES("7987", "3", "2015-01-23 15:03:52", "66.249.67.76", "550");
INSERT INTO `wp_gf_form_view` VALUES("7988", "3", "2015-01-23 16:00:33", "66.249.67.84", "746");
INSERT INTO `wp_gf_form_view` VALUES("7989", "6", "2015-01-23 16:53:49", "188.165.15.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("7990", "3", "2015-01-23 17:00:24", "66.249.67.84", "746");
INSERT INTO `wp_gf_form_view` VALUES("7991", "3", "2015-01-23 18:00:09", "66.249.67.84", "1070");
INSERT INTO `wp_gf_form_view` VALUES("7992", "3", "2015-01-23 19:01:09", "66.249.67.84", "2570");
INSERT INTO `wp_gf_form_view` VALUES("7993", "6", "2015-01-23 19:18:49", "66.249.67.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("7994", "1", "2015-01-23 19:29:14", "162.213.42.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("7995", "2", "2015-01-23 19:42:50", "162.213.42.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("7996", "3", "2015-01-23 20:00:04", "66.249.67.92", "1617");
INSERT INTO `wp_gf_form_view` VALUES("7997", "3", "2015-01-23 21:00:48", "68.180.228.245", "143");
INSERT INTO `wp_gf_form_view` VALUES("7998", "2", "2015-01-23 21:44:05", "202.46.48.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("7999", "6", "2015-01-23 21:51:07", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8000", "3", "2015-01-23 22:01:57", "100.43.85.24", "88");
INSERT INTO `wp_gf_form_view` VALUES("8001", "3", "2015-01-23 23:04:17", "207.46.13.110", "16");
INSERT INTO `wp_gf_form_view` VALUES("8002", "3", "2015-01-24 00:07:59", "202.46.62.108", "93");
INSERT INTO `wp_gf_form_view` VALUES("8003", "3", "2015-01-24 01:12:40", "66.249.67.92", "154");
INSERT INTO `wp_gf_form_view` VALUES("8004", "3", "2015-01-24 02:00:22", "66.249.67.76", "859");
INSERT INTO `wp_gf_form_view` VALUES("8005", "3", "2015-01-24 03:01:06", "68.180.228.245", "494");
INSERT INTO `wp_gf_form_view` VALUES("8006", "3", "2015-01-24 04:00:09", "207.81.252.136", "290");
INSERT INTO `wp_gf_form_view` VALUES("8007", "3", "2015-01-24 05:04:17", "66.249.67.76", "276");
INSERT INTO `wp_gf_form_view` VALUES("8008", "3", "2015-01-24 06:20:22", "167.160.107.46", "190");
INSERT INTO `wp_gf_form_view` VALUES("8009", "3", "2015-01-24 07:14:22", "157.55.39.121", "162");
INSERT INTO `wp_gf_form_view` VALUES("8010", "3", "2015-01-24 08:00:28", "66.249.67.84", "646");
INSERT INTO `wp_gf_form_view` VALUES("8011", "3", "2015-01-24 09:00:25", "66.249.67.76", "912");
INSERT INTO `wp_gf_form_view` VALUES("8012", "3", "2015-01-24 10:11:40", "107.183.229.38", "166");
INSERT INTO `wp_gf_form_view` VALUES("8013", "3", "2015-01-24 11:22:49", "68.180.228.245", "72");
INSERT INTO `wp_gf_form_view` VALUES("8014", "3", "2015-01-24 12:02:26", "167.160.112.222", "196");
INSERT INTO `wp_gf_form_view` VALUES("8015", "3", "2015-01-24 13:01:06", "207.46.13.110", "156");
INSERT INTO `wp_gf_form_view` VALUES("8016", "3", "2015-01-24 14:00:37", "66.249.67.92", "1496");
INSERT INTO `wp_gf_form_view` VALUES("8017", "3", "2015-01-24 15:00:28", "66.249.67.76", "5520");
INSERT INTO `wp_gf_form_view` VALUES("8018", "6", "2015-01-24 15:23:23", "208.115.113.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("8019", "3", "2015-01-24 16:00:03", "66.249.67.84", "5452");
INSERT INTO `wp_gf_form_view` VALUES("8020", "3", "2015-01-24 17:00:01", "66.249.67.84", "5345");
INSERT INTO `wp_gf_form_view` VALUES("8021", "3", "2015-01-24 18:00:04", "66.249.67.76", "5536");
INSERT INTO `wp_gf_form_view` VALUES("8022", "3", "2015-01-24 19:00:00", "66.249.67.92", "5154");
INSERT INTO `wp_gf_form_view` VALUES("8023", "3", "2015-01-24 20:00:00", "217.69.133.233", "5280");
INSERT INTO `wp_gf_form_view` VALUES("8024", "6", "2015-01-24 20:04:16", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8025", "3", "2015-01-24 21:00:00", "66.249.67.84", "5428");
INSERT INTO `wp_gf_form_view` VALUES("8026", "3", "2015-01-24 22:00:00", "66.249.67.92", "3296");
INSERT INTO `wp_gf_form_view` VALUES("8027", "3", "2015-01-24 23:10:45", "217.69.133.230", "587");
INSERT INTO `wp_gf_form_view` VALUES("8028", "2", "2015-01-24 23:12:45", "195.154.181.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("8029", "3", "2015-01-25 00:11:32", "66.249.67.76", "44");
INSERT INTO `wp_gf_form_view` VALUES("8030", "3", "2015-01-25 01:16:57", "208.110.84.142", "66");
INSERT INTO `wp_gf_form_view` VALUES("8031", "3", "2015-01-25 02:08:28", "144.76.201.69", "1342");
INSERT INTO `wp_gf_form_view` VALUES("8032", "2", "2015-01-25 02:22:07", "36.248.167.2", "3");
INSERT INTO `wp_gf_form_view` VALUES("8033", "6", "2015-01-25 02:49:17", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8034", "3", "2015-01-25 03:00:35", "66.249.67.76", "1778");
INSERT INTO `wp_gf_form_view` VALUES("8035", "3", "2015-01-25 04:00:00", "66.249.67.76", "2522");
INSERT INTO `wp_gf_form_view` VALUES("8036", "3", "2015-01-25 05:00:08", "66.249.67.84", "2486");
INSERT INTO `wp_gf_form_view` VALUES("8037", "2", "2015-01-25 05:30:24", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("8038", "3", "2015-01-25 06:00:15", "66.249.67.92", "2526");
INSERT INTO `wp_gf_form_view` VALUES("8039", "3", "2015-01-25 07:00:02", "66.249.67.84", "2480");
INSERT INTO `wp_gf_form_view` VALUES("8040", "3", "2015-01-25 08:00:10", "66.249.67.84", "2574");
INSERT INTO `wp_gf_form_view` VALUES("8041", "3", "2015-01-25 09:00:17", "66.249.67.92", "2620");
INSERT INTO `wp_gf_form_view` VALUES("8042", "3", "2015-01-25 10:00:05", "66.249.67.76", "889");
INSERT INTO `wp_gf_form_view` VALUES("8043", "2", "2015-01-25 10:39:45", "167.160.112.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("8044", "3", "2015-01-25 11:05:42", "207.46.13.110", "108");
INSERT INTO `wp_gf_form_view` VALUES("8045", "3", "2015-01-25 12:16:09", "188.165.15.136", "241");
INSERT INTO `wp_gf_form_view` VALUES("8046", "3", "2015-01-25 13:02:04", "142.54.173.19", "266");
INSERT INTO `wp_gf_form_view` VALUES("8047", "3", "2015-01-25 14:01:27", "66.249.67.84", "561");
INSERT INTO `wp_gf_form_view` VALUES("8048", "3", "2015-01-25 15:00:26", "217.69.133.69", "754");
INSERT INTO `wp_gf_form_view` VALUES("8049", "3", "2015-01-25 16:00:09", "66.249.67.92", "623");
INSERT INTO `wp_gf_form_view` VALUES("8050", "6", "2015-01-25 16:24:14", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8051", "3", "2015-01-25 17:00:58", "66.249.67.92", "1064");
INSERT INTO `wp_gf_form_view` VALUES("8052", "6", "2015-01-25 17:19:19", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8053", "3", "2015-01-25 18:05:33", "66.249.67.84", "312");
INSERT INTO `wp_gf_form_view` VALUES("8054", "1", "2015-01-25 18:11:09", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("8055", "3", "2015-01-25 19:00:31", "66.249.67.76", "706");
INSERT INTO `wp_gf_form_view` VALUES("8056", "3", "2015-01-25 20:01:02", "66.249.67.76", "664");
INSERT INTO `wp_gf_form_view` VALUES("8057", "6", "2015-01-25 20:25:59", "208.115.111.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("8058", "3", "2015-01-25 21:00:00", "66.249.67.76", "1144");
INSERT INTO `wp_gf_form_view` VALUES("8059", "6", "2015-01-25 21:50:58", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8060", "3", "2015-01-25 22:00:17", "66.249.67.92", "718");
INSERT INTO `wp_gf_form_view` VALUES("8061", "6", "2015-01-25 22:45:34", "66.249.67.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("8062", "3", "2015-01-25 23:00:09", "66.249.67.84", "902");
INSERT INTO `wp_gf_form_view` VALUES("8063", "6", "2015-01-25 23:29:19", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8064", "3", "2015-01-26 00:00:18", "66.249.67.84", "892");
INSERT INTO `wp_gf_form_view` VALUES("8065", "3", "2015-01-26 01:00:30", "66.249.67.76", "1382");
INSERT INTO `wp_gf_form_view` VALUES("8066", "6", "2015-01-26 01:07:52", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8067", "3", "2015-01-26 02:00:05", "66.249.67.84", "584");
INSERT INTO `wp_gf_form_view` VALUES("8068", "3", "2015-01-26 03:04:10", "96.50.94.96", "186");
INSERT INTO `wp_gf_form_view` VALUES("8069", "3", "2015-01-26 04:02:42", "66.249.67.76", "128");
INSERT INTO `wp_gf_form_view` VALUES("8070", "1", "2015-01-26 04:46:02", "207.81.252.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("8071", "3", "2015-01-26 05:02:19", "220.181.108.85", "260");
INSERT INTO `wp_gf_form_view` VALUES("8072", "2", "2015-01-26 05:18:40", "204.44.113.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("8073", "3", "2015-01-26 06:12:26", "192.187.127.122", "82");
INSERT INTO `wp_gf_form_view` VALUES("8074", "3", "2015-01-26 07:03:42", "68.180.228.245", "680");
INSERT INTO `wp_gf_form_view` VALUES("8075", "3", "2015-01-26 08:02:34", "68.180.228.245", "74");
INSERT INTO `wp_gf_form_view` VALUES("8076", "3", "2015-01-26 09:12:28", "204.44.91.41", "42");
INSERT INTO `wp_gf_form_view` VALUES("8077", "1", "2015-01-26 09:38:48", "202.46.61.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("8078", "3", "2015-01-26 10:23:27", "66.249.67.76", "85");
INSERT INTO `wp_gf_form_view` VALUES("8079", "3", "2015-01-26 11:02:24", "204.44.83.184", "428");
INSERT INTO `wp_gf_form_view` VALUES("8080", "6", "2015-01-26 11:12:38", "69.63.88.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("8081", "3", "2015-01-26 12:01:37", "188.165.15.203", "210");
INSERT INTO `wp_gf_form_view` VALUES("8082", "3", "2015-01-26 13:00:15", "66.249.67.92", "547");
INSERT INTO `wp_gf_form_view` VALUES("8083", "2", "2015-01-26 13:54:50", "155.94.132.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("8084", "3", "2015-01-26 14:05:54", "66.249.67.76", "310");
INSERT INTO `wp_gf_form_view` VALUES("8085", "3", "2015-01-26 15:01:02", "66.249.67.76", "766");
INSERT INTO `wp_gf_form_view` VALUES("8086", "3", "2015-01-26 16:00:32", "24.114.45.50", "1176");
INSERT INTO `wp_gf_form_view` VALUES("8087", "6", "2015-01-26 16:27:01", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8088", "3", "2015-01-26 17:00:10", "66.249.67.84", "1616");
INSERT INTO `wp_gf_form_view` VALUES("8089", "3", "2015-01-26 18:00:10", "202.46.49.36", "2332");
INSERT INTO `wp_gf_form_view` VALUES("8090", "3", "2015-01-26 19:00:06", "66.249.79.84", "2822");
INSERT INTO `wp_gf_form_view` VALUES("8091", "6", "2015-01-26 19:12:39", "66.249.79.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("8092", "3", "2015-01-26 20:00:34", "66.249.67.76", "3737");
INSERT INTO `wp_gf_form_view` VALUES("8093", "3", "2015-01-26 21:00:00", "66.249.67.92", "4779");
INSERT INTO `wp_gf_form_view` VALUES("8094", "6", "2015-01-26 21:53:37", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8095", "3", "2015-01-26 22:03:06", "202.46.63.163", "208");
INSERT INTO `wp_gf_form_view` VALUES("8096", "3", "2015-01-26 23:00:23", "66.249.67.84", "6140");
INSERT INTO `wp_gf_form_view` VALUES("8097", "6", "2015-01-26 23:01:42", "84.85.74.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("8098", "1", "2015-01-26 23:02:31", "84.85.74.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("8099", "2", "2015-01-26 23:02:40", "84.85.74.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("8100", "3", "2015-01-27 00:00:00", "66.249.67.76", "5035");
INSERT INTO `wp_gf_form_view` VALUES("8101", "6", "2015-01-27 00:49:50", "202.46.62.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("8102", "3", "2015-01-27 01:16:41", "216.232.158.234", "376");
INSERT INTO `wp_gf_form_view` VALUES("8103", "3", "2015-01-27 02:00:48", "66.249.67.84", "5309");
INSERT INTO `wp_gf_form_view` VALUES("8104", "3", "2015-01-27 03:00:00", "66.249.67.84", "6276");
INSERT INTO `wp_gf_form_view` VALUES("8105", "6", "2015-01-27 03:46:24", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8106", "3", "2015-01-27 04:00:00", "66.249.67.84", "6906");
INSERT INTO `wp_gf_form_view` VALUES("8107", "3", "2015-01-27 05:00:02", "66.249.67.92", "6284");
INSERT INTO `wp_gf_form_view` VALUES("8108", "6", "2015-01-27 05:20:57", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8109", "3", "2015-01-27 06:00:02", "66.249.67.92", "6793");
INSERT INTO `wp_gf_form_view` VALUES("8110", "6", "2015-01-27 06:29:34", "66.249.67.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("8111", "2", "2015-01-27 06:43:35", "23.238.19.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("8112", "1", "2015-01-27 06:43:43", "23.238.19.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("8113", "3", "2015-01-27 07:00:01", "66.249.67.92", "5832");
INSERT INTO `wp_gf_form_view` VALUES("8114", "6", "2015-01-27 07:50:17", "66.249.67.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("8115", "3", "2015-01-27 08:00:00", "66.249.67.92", "6565");
INSERT INTO `wp_gf_form_view` VALUES("8116", "6", "2015-01-27 08:12:49", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8117", "2", "2015-01-27 08:28:06", "23.95.21.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("8118", "3", "2015-01-27 09:00:00", "66.249.67.76", "5718");
INSERT INTO `wp_gf_form_view` VALUES("8119", "3", "2015-01-27 10:00:01", "104.37.56.68", "5912");
INSERT INTO `wp_gf_form_view` VALUES("8120", "6", "2015-01-27 10:43:24", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8121", "3", "2015-01-27 11:00:01", "66.249.67.84", "6668");
INSERT INTO `wp_gf_form_view` VALUES("8122", "3", "2015-01-27 12:00:01", "66.249.67.92", "406");
INSERT INTO `wp_gf_form_view` VALUES("8123", "3", "2015-01-27 13:01:36", "66.249.67.92", "681");
INSERT INTO `wp_gf_form_view` VALUES("8124", "2", "2015-01-27 13:38:32", "36.248.167.232", "3");
INSERT INTO `wp_gf_form_view` VALUES("8125", "3", "2015-01-27 14:02:42", "66.249.67.92", "3196");
INSERT INTO `wp_gf_form_view` VALUES("8126", "6", "2015-01-27 14:36:04", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8127", "3", "2015-01-27 15:00:07", "66.249.67.84", "6599");
INSERT INTO `wp_gf_form_view` VALUES("8128", "3", "2015-01-27 16:00:00", "66.249.67.76", "6408");
INSERT INTO `wp_gf_form_view` VALUES("8129", "3", "2015-01-27 17:00:00", "66.249.67.76", "6242");
INSERT INTO `wp_gf_form_view` VALUES("8130", "6", "2015-01-27 17:17:25", "66.249.67.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("8131", "3", "2015-01-27 18:00:00", "66.249.67.76", "6385");
INSERT INTO `wp_gf_form_view` VALUES("8132", "6", "2015-01-27 18:05:50", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8133", "3", "2015-01-27 19:00:02", "66.249.67.76", "6179");
INSERT INTO `wp_gf_form_view` VALUES("8134", "3", "2015-01-27 20:00:00", "66.249.67.92", "6146");
INSERT INTO `wp_gf_form_view` VALUES("8135", "2", "2015-01-27 20:31:01", "23.94.79.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("8136", "3", "2015-01-27 21:00:00", "66.249.67.84", "5932");
INSERT INTO `wp_gf_form_view` VALUES("8137", "1", "2015-01-27 21:11:34", "207.6.183.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("8138", "3", "2015-01-27 22:00:00", "66.249.67.76", "5017");
INSERT INTO `wp_gf_form_view` VALUES("8139", "2", "2015-01-27 22:54:24", "62.210.91.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("8140", "3", "2015-01-27 23:29:20", "202.46.63.80", "278");
INSERT INTO `wp_gf_form_view` VALUES("8141", "3", "2015-01-28 00:16:18", "66.249.67.92", "423");
INSERT INTO `wp_gf_form_view` VALUES("8142", "3", "2015-01-28 01:21:06", "167.160.107.7", "96");
INSERT INTO `wp_gf_form_view` VALUES("8143", "3", "2015-01-28 02:01:54", "220.181.108.170", "28");
INSERT INTO `wp_gf_form_view` VALUES("8144", "3", "2015-01-28 03:12:52", "104.37.56.61", "246");
INSERT INTO `wp_gf_form_view` VALUES("8145", "3", "2015-01-28 04:00:11", "202.46.50.159", "111");
INSERT INTO `wp_gf_form_view` VALUES("8146", "3", "2015-01-28 05:15:58", "167.160.107.6", "133");
INSERT INTO `wp_gf_form_view` VALUES("8147", "3", "2015-01-28 06:17:51", "66.249.67.84", "56");
INSERT INTO `wp_gf_form_view` VALUES("8148", "6", "2015-01-28 07:03:49", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8149", "3", "2015-01-28 07:03:49", "66.249.67.76", "304");
INSERT INTO `wp_gf_form_view` VALUES("8150", "1", "2015-01-28 07:23:30", "66.249.67.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("8151", "2", "2015-01-28 07:46:20", "155.94.135.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("8152", "3", "2015-01-28 08:01:33", "202.46.49.38", "265");
INSERT INTO `wp_gf_form_view` VALUES("8153", "6", "2015-01-28 09:14:30", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8154", "3", "2015-01-28 09:14:32", "66.249.67.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("8155", "3", "2015-01-28 10:18:30", "68.180.228.245", "252");
INSERT INTO `wp_gf_form_view` VALUES("8156", "3", "2015-01-28 11:34:24", "66.249.67.84", "42");
INSERT INTO `wp_gf_form_view` VALUES("8157", "3", "2015-01-28 12:00:43", "202.46.62.108", "132");
INSERT INTO `wp_gf_form_view` VALUES("8158", "6", "2015-01-28 13:02:00", "207.46.13.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("8159", "3", "2015-01-28 13:02:01", "207.46.13.116", "131");
INSERT INTO `wp_gf_form_view` VALUES("8160", "3", "2015-01-28 14:08:36", "68.180.228.245", "72");
INSERT INTO `wp_gf_form_view` VALUES("8161", "3", "2015-01-28 15:06:28", "202.46.63.164", "171");
INSERT INTO `wp_gf_form_view` VALUES("8162", "6", "2015-01-28 16:30:02", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8163", "3", "2015-01-28 16:30:02", "66.249.67.76", "171");
INSERT INTO `wp_gf_form_view` VALUES("8164", "2", "2015-01-28 16:51:17", "107.183.229.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("8165", "3", "2015-01-28 17:07:01", "69.12.65.82", "228");
INSERT INTO `wp_gf_form_view` VALUES("8166", "3", "2015-01-28 18:38:34", "202.46.48.153", "14");
INSERT INTO `wp_gf_form_view` VALUES("8167", "3", "2015-01-28 19:14:55", "207.46.13.23", "82");
INSERT INTO `wp_gf_form_view` VALUES("8168", "3", "2015-01-28 20:09:14", "202.46.62.108", "72");
INSERT INTO `wp_gf_form_view` VALUES("8169", "3", "2015-01-28 21:06:36", "204.44.91.4", "313");
INSERT INTO `wp_gf_form_view` VALUES("8170", "1", "2015-01-28 21:49:27", "207.216.0.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("8171", "3", "2015-01-28 22:00:02", "66.249.67.92", "414");
INSERT INTO `wp_gf_form_view` VALUES("8172", "1", "2015-01-28 22:42:15", "207.216.0.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("8173", "3", "2015-01-28 23:05:23", "69.12.65.52", "390");
INSERT INTO `wp_gf_form_view` VALUES("8174", "3", "2015-01-29 00:04:32", "66.249.67.84", "1290");
INSERT INTO `wp_gf_form_view` VALUES("8175", "6", "2015-01-29 00:43:39", "68.180.228.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("8176", "3", "2015-01-29 01:00:13", "66.249.67.76", "776");
INSERT INTO `wp_gf_form_view` VALUES("8177", "3", "2015-01-29 02:01:46", "66.249.67.76", "916");
INSERT INTO `wp_gf_form_view` VALUES("8178", "3", "2015-01-29 03:02:36", "66.55.134.213", "1218");
INSERT INTO `wp_gf_form_view` VALUES("8179", "6", "2015-01-29 03:40:26", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8180", "3", "2015-01-29 04:00:12", "66.249.67.76", "3044");
INSERT INTO `wp_gf_form_view` VALUES("8181", "3", "2015-01-29 05:00:00", "66.249.67.92", "3591");
INSERT INTO `wp_gf_form_view` VALUES("8182", "3", "2015-01-29 06:00:00", "66.249.67.76", "3239");
INSERT INTO `wp_gf_form_view` VALUES("8183", "3", "2015-01-29 07:00:18", "68.180.228.245", "1943");
INSERT INTO `wp_gf_form_view` VALUES("8184", "3", "2015-01-29 08:00:00", "66.249.67.76", "4916");
INSERT INTO `wp_gf_form_view` VALUES("8185", "3", "2015-01-29 09:00:03", "66.249.67.84", "4491");
INSERT INTO `wp_gf_form_view` VALUES("8186", "6", "2015-01-29 09:54:09", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8187", "3", "2015-01-29 10:01:41", "66.249.67.84", "1093");
INSERT INTO `wp_gf_form_view` VALUES("8188", "3", "2015-01-29 11:00:20", "66.249.67.92", "6219");
INSERT INTO `wp_gf_form_view` VALUES("8189", "6", "2015-01-29 11:04:52", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8190", "3", "2015-01-29 12:00:00", "46.119.156.123", "4574");
INSERT INTO `wp_gf_form_view` VALUES("8191", "6", "2015-01-29 12:21:48", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8192", "3", "2015-01-29 13:00:00", "66.249.67.76", "5432");
INSERT INTO `wp_gf_form_view` VALUES("8193", "6", "2015-01-29 13:16:22", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("8194", "3", "2015-01-29 14:00:10", "66.249.67.84", "4588");
INSERT INTO `wp_gf_form_view` VALUES("8195", "6", "2015-01-29 14:00:25", "66.249.67.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("8196", "3", "2015-01-29 15:00:30", "66.249.67.76", "5266");
INSERT INTO `wp_gf_form_view` VALUES("8197", "3", "2015-01-29 16:00:09", "66.249.67.92", "4572");
INSERT INTO `wp_gf_form_view` VALUES("8198", "3", "2015-01-29 17:00:00", "66.249.67.76", "4627");
INSERT INTO `wp_gf_form_view` VALUES("8199", "3", "2015-01-29 18:00:04", "66.249.67.84", "4950");
INSERT INTO `wp_gf_form_view` VALUES("8200", "3", "2015-01-29 19:00:04", "66.249.67.92", "5803");
INSERT INTO `wp_gf_form_view` VALUES("8201", "2", "2015-01-29 19:03:10", "213.238.175.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("8202", "3", "2015-01-29 20:00:00", "66.249.67.84", "4898");
INSERT INTO `wp_gf_form_view` VALUES("8203", "3", "2015-01-29 21:00:00", "66.249.67.92", "5327");
INSERT INTO `wp_gf_form_view` VALUES("8204", "3", "2015-01-29 22:00:03", "66.249.67.84", "5602");
INSERT INTO `wp_gf_form_view` VALUES("8205", "6", "2015-01-29 22:03:57", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8206", "3", "2015-01-29 23:00:04", "66.249.67.76", "2308");
INSERT INTO `wp_gf_form_view` VALUES("8207", "3", "2015-01-30 00:00:39", "66.249.67.92", "2804");
INSERT INTO `wp_gf_form_view` VALUES("8208", "1", "2015-01-30 00:14:27", "31.184.238.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("8209", "6", "2015-01-30 00:52:21", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8210", "3", "2015-01-30 01:00:01", "66.249.67.92", "6504");
INSERT INTO `wp_gf_form_view` VALUES("8211", "6", "2015-01-30 01:01:17", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8212", "1", "2015-01-30 01:43:47", "202.46.49.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("8213", "3", "2015-01-30 02:00:00", "66.249.67.92", "5644");
INSERT INTO `wp_gf_form_view` VALUES("8214", "6", "2015-01-30 02:19:36", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8215", "3", "2015-01-30 03:00:04", "66.249.67.84", "5792");
INSERT INTO `wp_gf_form_view` VALUES("8216", "3", "2015-01-30 04:00:00", "66.249.67.84", "6190");
INSERT INTO `wp_gf_form_view` VALUES("8217", "6", "2015-01-30 04:22:14", "66.249.67.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("8218", "1", "2015-01-30 04:54:35", "66.249.67.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("8219", "3", "2015-01-30 05:00:06", "66.249.67.84", "5930");
INSERT INTO `wp_gf_form_view` VALUES("8220", "2", "2015-01-30 05:11:06", "157.55.39.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("8221", "6", "2015-01-30 05:43:10", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("8222", "3", "2015-01-30 06:00:00", "66.249.67.84", "5524");
INSERT INTO `wp_gf_form_view` VALUES("8223", "3", "2015-01-30 07:00:01", "66.249.67.84", "6044");
INSERT INTO `wp_gf_form_view` VALUES("8224", "3", "2015-01-30 08:00:00", "66.249.67.84", "6288");
INSERT INTO `wp_gf_form_view` VALUES("8225", "3", "2015-01-30 09:00:09", "66.249.67.92", "5576");
INSERT INTO `wp_gf_form_view` VALUES("8226", "3", "2015-01-30 10:00:00", "66.249.67.92", "6514");
INSERT INTO `wp_gf_form_view` VALUES("8227", "6", "2015-01-30 10:22:40", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8228", "3", "2015-01-30 11:00:01", "66.249.67.76", "1434");
INSERT INTO `wp_gf_form_view` VALUES("8229", "3", "2015-01-30 12:02:10", "202.46.49.101", "70");
INSERT INTO `wp_gf_form_view` VALUES("8230", "3", "2015-01-30 13:02:07", "107.182.125.70", "157");
INSERT INTO `wp_gf_form_view` VALUES("8231", "6", "2015-01-30 13:56:53", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8232", "3", "2015-01-30 14:07:14", "66.249.67.84", "60");
INSERT INTO `wp_gf_form_view` VALUES("8233", "3", "2015-01-30 15:06:42", "184.66.114.201", "134");
INSERT INTO `wp_gf_form_view` VALUES("8234", "1", "2015-01-30 15:32:40", "157.55.39.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("8235", "3", "2015-01-30 16:01:27", "66.249.67.76", "240");
INSERT INTO `wp_gf_form_view` VALUES("8236", "3", "2015-01-30 17:19:09", "66.249.67.76", "272");
INSERT INTO `wp_gf_form_view` VALUES("8237", "3", "2015-01-30 18:13:30", "66.249.67.92", "162");
INSERT INTO `wp_gf_form_view` VALUES("8238", "1", "2015-01-30 18:56:29", "125.71.53.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("8239", "3", "2015-01-30 19:02:50", "66.249.67.84", "98");
INSERT INTO `wp_gf_form_view` VALUES("8240", "3", "2015-01-30 20:01:44", "142.36.192.144", "210");
INSERT INTO `wp_gf_form_view` VALUES("8241", "3", "2015-01-30 21:00:56", "207.46.13.116", "279");
INSERT INTO `wp_gf_form_view` VALUES("8242", "3", "2015-01-30 22:01:21", "202.46.62.147", "126");
INSERT INTO `wp_gf_form_view` VALUES("8243", "6", "2015-01-30 22:36:42", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8244", "3", "2015-01-30 23:18:24", "202.46.61.125", "234");
INSERT INTO `wp_gf_form_view` VALUES("8245", "1", "2015-01-30 23:35:22", "66.249.67.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("8246", "3", "2015-01-31 00:09:42", "66.249.67.84", "130");
INSERT INTO `wp_gf_form_view` VALUES("8247", "3", "2015-01-31 01:04:03", "202.46.61.100", "68");
INSERT INTO `wp_gf_form_view` VALUES("8248", "3", "2015-01-31 02:04:03", "202.46.49.195", "132");
INSERT INTO `wp_gf_form_view` VALUES("8249", "3", "2015-01-31 03:02:03", "68.180.228.245", "141");
INSERT INTO `wp_gf_form_view` VALUES("8250", "3", "2015-01-31 04:07:35", "66.249.67.84", "179");
INSERT INTO `wp_gf_form_view` VALUES("8251", "2", "2015-01-31 04:49:21", "204.44.83.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("8252", "3", "2015-01-31 05:12:42", "202.46.61.104", "242");
INSERT INTO `wp_gf_form_view` VALUES("8253", "3", "2015-01-31 06:02:54", "66.249.67.92", "5280");
INSERT INTO `wp_gf_form_view` VALUES("8254", "6", "2015-01-31 06:02:55", "66.249.67.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("8255", "3", "2015-01-31 07:00:00", "66.249.67.92", "5258");
INSERT INTO `wp_gf_form_view` VALUES("8256", "6", "2015-01-31 07:22:10", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8257", "2", "2015-01-31 07:56:14", "85.25.210.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("8258", "3", "2015-01-31 08:00:01", "66.249.67.84", "5801");
INSERT INTO `wp_gf_form_view` VALUES("8259", "3", "2015-01-31 09:00:00", "66.249.67.92", "4938");
INSERT INTO `wp_gf_form_view` VALUES("8260", "3", "2015-01-31 10:00:00", "66.249.67.84", "731");
INSERT INTO `wp_gf_form_view` VALUES("8261", "6", "2015-01-31 10:01:22", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8262", "3", "2015-01-31 11:00:25", "66.249.67.84", "6983");
INSERT INTO `wp_gf_form_view` VALUES("8263", "3", "2015-01-31 12:00:00", "66.249.67.84", "5190");
INSERT INTO `wp_gf_form_view` VALUES("8264", "3", "2015-01-31 13:00:03", "66.249.67.84", "5688");
INSERT INTO `wp_gf_form_view` VALUES("8265", "3", "2015-01-31 14:00:00", "66.249.67.76", "6208");
INSERT INTO `wp_gf_form_view` VALUES("8266", "6", "2015-01-31 14:07:33", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8267", "3", "2015-01-31 15:00:01", "66.249.67.84", "5876");
INSERT INTO `wp_gf_form_view` VALUES("8268", "6", "2015-01-31 15:11:54", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8269", "3", "2015-01-31 16:00:00", "66.249.67.92", "6112");
INSERT INTO `wp_gf_form_view` VALUES("8270", "3", "2015-01-31 17:00:10", "66.249.67.92", "5886");
INSERT INTO `wp_gf_form_view` VALUES("8271", "6", "2015-01-31 17:44:01", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8272", "3", "2015-01-31 18:00:04", "66.249.67.76", "6307");
INSERT INTO `wp_gf_form_view` VALUES("8273", "6", "2015-01-31 18:17:19", "66.249.67.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("8274", "3", "2015-01-31 19:00:00", "66.249.67.92", "6157");
INSERT INTO `wp_gf_form_view` VALUES("8275", "6", "2015-01-31 19:09:23", "66.249.67.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("8276", "1", "2015-01-31 19:26:33", "71.29.84.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("8277", "2", "2015-01-31 19:26:48", "71.29.84.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("8278", "3", "2015-01-31 20:00:00", "66.249.67.76", "5944");
INSERT INTO `wp_gf_form_view` VALUES("8279", "6", "2015-01-31 20:00:35", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("8280", "3", "2015-01-31 21:00:00", "136.243.36.96", "7104");
INSERT INTO `wp_gf_form_view` VALUES("8281", "1", "2015-01-31 21:01:02", "136.243.36.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("8282", "2", "2015-01-31 21:01:30", "136.243.36.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("8283", "6", "2015-01-31 21:14:39", "136.243.36.96", "3");
INSERT INTO `wp_gf_form_view` VALUES("8284", "3", "2015-01-31 22:00:00", "66.249.67.84", "4849");
INSERT INTO `wp_gf_form_view` VALUES("8285", "6", "2015-01-31 22:35:14", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8286", "3", "2015-01-31 23:01:24", "66.249.67.84", "58");
INSERT INTO `wp_gf_form_view` VALUES("8287", "3", "2015-02-01 00:06:46", "66.249.67.92", "228");
INSERT INTO `wp_gf_form_view` VALUES("8288", "1", "2015-02-01 00:41:12", "183.48.172.159", "4");
INSERT INTO `wp_gf_form_view` VALUES("8289", "3", "2015-02-01 01:06:16", "207.46.13.116", "101");
INSERT INTO `wp_gf_form_view` VALUES("8290", "3", "2015-02-01 02:00:10", "66.249.67.92", "269");
INSERT INTO `wp_gf_form_view` VALUES("8291", "3", "2015-02-01 03:00:03", "68.180.228.245", "709");
INSERT INTO `wp_gf_form_view` VALUES("8292", "1", "2015-02-01 03:35:56", "136.243.14.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("8293", "3", "2015-02-01 04:04:18", "192.151.152.219", "411");
INSERT INTO `wp_gf_form_view` VALUES("8294", "1", "2015-02-01 04:09:56", "96.50.14.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("8295", "3", "2015-02-01 05:00:10", "66.249.67.76", "500");
INSERT INTO `wp_gf_form_view` VALUES("8296", "3", "2015-02-01 06:01:03", "66.249.67.84", "246");
INSERT INTO `wp_gf_form_view` VALUES("8297", "3", "2015-02-01 07:00:29", "66.249.67.92", "1852");
INSERT INTO `wp_gf_form_view` VALUES("8298", "3", "2015-02-01 08:00:02", "66.249.67.92", "1354");
INSERT INTO `wp_gf_form_view` VALUES("8299", "2", "2015-02-01 08:21:48", "66.249.67.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("8300", "3", "2015-02-01 09:23:41", "66.249.67.92", "2746");
INSERT INTO `wp_gf_form_view` VALUES("8301", "3", "2015-02-01 10:00:01", "66.249.67.84", "6591");
INSERT INTO `wp_gf_form_view` VALUES("8302", "6", "2015-02-01 10:00:04", "5.9.24.198", "5");
INSERT INTO `wp_gf_form_view` VALUES("8303", "3", "2015-02-01 11:00:01", "66.249.67.84", "6214");
INSERT INTO `wp_gf_form_view` VALUES("8304", "6", "2015-02-01 11:08:53", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("8305", "3", "2015-02-01 12:00:00", "66.249.67.76", "6288");
INSERT INTO `wp_gf_form_view` VALUES("8306", "6", "2015-02-01 12:25:08", "208.115.111.66", "5");
INSERT INTO `wp_gf_form_view` VALUES("8307", "3", "2015-02-01 13:00:01", "66.249.67.76", "6142");
INSERT INTO `wp_gf_form_view` VALUES("8308", "6", "2015-02-01 13:53:32", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8309", "3", "2015-02-01 14:00:05", "66.249.67.76", "5356");
INSERT INTO `wp_gf_form_view` VALUES("8310", "3", "2015-02-01 15:00:51", "66.249.67.84", "5352");
INSERT INTO `wp_gf_form_view` VALUES("8311", "2", "2015-02-01 15:21:46", "162.213.42.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("8312", "3", "2015-02-01 16:00:09", "66.249.67.92", "5855");
INSERT INTO `wp_gf_form_view` VALUES("8313", "6", "2015-02-01 16:12:48", "66.249.67.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("8314", "2", "2015-02-01 16:35:44", "192.3.166.224", "3");
INSERT INTO `wp_gf_form_view` VALUES("8315", "3", "2015-02-01 17:00:00", "66.249.67.84", "6712");
INSERT INTO `wp_gf_form_view` VALUES("8316", "1", "2015-02-01 17:03:58", "202.46.63.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("8317", "3", "2015-02-01 18:00:03", "66.249.67.84", "5807");
INSERT INTO `wp_gf_form_view` VALUES("8318", "6", "2015-02-01 18:39:32", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8319", "3", "2015-02-01 19:00:00", "66.249.67.76", "3726");
INSERT INTO `wp_gf_form_view` VALUES("8320", "2", "2015-02-01 19:56:54", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("8321", "6", "2015-02-01 19:57:47", "109.169.29.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("8322", "3", "2015-02-01 20:04:24", "202.46.48.151", "5258");
INSERT INTO `wp_gf_form_view` VALUES("8323", "6", "2015-02-01 20:33:57", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8324", "3", "2015-02-01 21:00:01", "66.249.67.76", "5350");
INSERT INTO `wp_gf_form_view` VALUES("8325", "3", "2015-02-01 22:00:02", "66.249.67.84", "3820");
INSERT INTO `wp_gf_form_view` VALUES("8326", "6", "2015-02-01 22:44:24", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8327", "3", "2015-02-01 23:00:10", "66.249.67.76", "624");
INSERT INTO `wp_gf_form_view` VALUES("8328", "6", "2015-02-01 23:49:58", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8329", "3", "2015-02-02 00:00:26", "66.249.67.84", "2826");
INSERT INTO `wp_gf_form_view` VALUES("8330", "6", "2015-02-02 00:35:48", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("8331", "3", "2015-02-02 01:00:00", "66.249.67.76", "4571");
INSERT INTO `wp_gf_form_view` VALUES("8332", "1", "2015-02-02 01:38:55", "5.9.24.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("8333", "6", "2015-02-02 01:49:43", "66.249.67.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("8334", "3", "2015-02-02 02:00:05", "66.249.67.92", "4093");
INSERT INTO `wp_gf_form_view` VALUES("8335", "2", "2015-02-02 02:34:42", "192.3.166.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("8336", "3", "2015-02-02 03:00:03", "66.249.67.84", "4428");
INSERT INTO `wp_gf_form_view` VALUES("8337", "3", "2015-02-02 04:00:01", "66.249.67.76", "4687");
INSERT INTO `wp_gf_form_view` VALUES("8338", "6", "2015-02-02 04:43:34", "37.16.72.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("8339", "3", "2015-02-02 05:00:05", "66.249.67.84", "4630");
INSERT INTO `wp_gf_form_view` VALUES("8340", "6", "2015-02-02 05:48:51", "66.249.67.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8341", "3", "2015-02-02 06:00:08", "66.249.67.76", "4583");
INSERT INTO `wp_gf_form_view` VALUES("8342", "1", "2015-02-02 06:08:56", "96.50.14.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("8343", "6", "2015-02-02 06:22:59", "66.249.67.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("8344", "3", "2015-02-02 07:00:03", "66.249.67.84", "1778");
INSERT INTO `wp_gf_form_view` VALUES("8345", "3", "2015-02-02 08:00:13", "66.249.67.84", "172");
INSERT INTO `wp_gf_form_view` VALUES("8346", "3", "2015-02-02 09:06:49", "192.3.166.246", "144");
INSERT INTO `wp_gf_form_view` VALUES("8347", "3", "2015-02-02 10:03:43", "157.55.39.66", "364");
INSERT INTO `wp_gf_form_view` VALUES("8348", "3", "2015-02-02 11:00:14", "66.249.67.76", "418");
INSERT INTO `wp_gf_form_view` VALUES("8349", "6", "2015-02-02 11:20:13", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8350", "3", "2015-02-02 12:14:42", "195.154.216.165", "508");
INSERT INTO `wp_gf_form_view` VALUES("8351", "3", "2015-02-02 13:00:24", "66.249.67.76", "680");
INSERT INTO `wp_gf_form_view` VALUES("8352", "6", "2015-02-02 13:10:05", "66.249.67.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("8353", "3", "2015-02-02 14:00:12", "66.249.67.92", "554");
INSERT INTO `wp_gf_form_view` VALUES("8354", "3", "2015-02-02 15:00:01", "66.249.67.132", "803");
INSERT INTO `wp_gf_form_view` VALUES("8355", "3", "2015-02-02 16:05:52", "66.249.67.132", "200");
INSERT INTO `wp_gf_form_view` VALUES("8356", "3", "2015-02-02 17:13:59", "195.154.216.165", "161");
INSERT INTO `wp_gf_form_view` VALUES("8357", "3", "2015-02-02 18:00:21", "195.154.216.165", "102");
INSERT INTO `wp_gf_form_view` VALUES("8358", "3", "2015-02-02 19:04:49", "66.249.67.84", "276");
INSERT INTO `wp_gf_form_view` VALUES("8359", "3", "2015-02-02 20:00:07", "66.249.67.84", "649");
INSERT INTO `wp_gf_form_view` VALUES("8360", "6", "2015-02-02 20:24:09", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("8361", "3", "2015-02-02 21:00:18", "66.249.67.84", "779");
INSERT INTO `wp_gf_form_view` VALUES("8362", "3", "2015-02-02 22:00:07", "66.249.67.76", "1178");
INSERT INTO `wp_gf_form_view` VALUES("8363", "6", "2015-02-02 22:41:31", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("8364", "1", "2015-02-02 22:42:10", "84.85.74.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("8365", "3", "2015-02-02 23:00:27", "66.249.67.92", "208");
INSERT INTO `wp_gf_form_view` VALUES("8366", "3", "2015-02-03 00:04:25", "68.180.228.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("8367", "3", "2015-02-03 01:03:42", "195.154.216.165", "136");
INSERT INTO `wp_gf_form_view` VALUES("8368", "3", "2015-02-03 02:00:22", "172.218.193.246", "190");
INSERT INTO `wp_gf_form_view` VALUES("8369", "3", "2015-02-03 03:16:31", "184.69.101.178", "52");
INSERT INTO `wp_gf_form_view` VALUES("8370", "3", "2015-02-03 04:08:48", "195.154.216.165", "110");
INSERT INTO `wp_gf_form_view` VALUES("8371", "3", "2015-02-03 05:02:27", "195.154.216.165", "136");
INSERT INTO `wp_gf_form_view` VALUES("8372", "2", "2015-02-03 05:49:32", "193.201.224.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("8373", "3", "2015-02-03 06:00:01", "195.154.216.165", "100");
INSERT INTO `wp_gf_form_view` VALUES("8374", "1", "2015-02-03 06:50:51", "130.204.58.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("8375", "3", "2015-02-03 07:22:21", "66.249.67.92", "95");
INSERT INTO `wp_gf_form_view` VALUES("8376", "3", "2015-02-03 08:10:58", "66.249.67.76", "201");
INSERT INTO `wp_gf_form_view` VALUES("8377", "3", "2015-02-03 09:01:28", "66.249.67.76", "77");
INSERT INTO `wp_gf_form_view` VALUES("8378", "3", "2015-02-03 10:14:01", "192.151.152.219", "63");
INSERT INTO `wp_gf_form_view` VALUES("8379", "3", "2015-02-03 11:00:02", "202.46.48.49", "120");
INSERT INTO `wp_gf_form_view` VALUES("8380", "3", "2015-02-03 12:00:50", "202.46.50.199", "123");
INSERT INTO `wp_gf_form_view` VALUES("8381", "3", "2015-02-03 13:01:39", "66.249.67.92", "48");
INSERT INTO `wp_gf_form_view` VALUES("8382", "3", "2015-02-03 14:08:07", "66.249.67.92", "136");
INSERT INTO `wp_gf_form_view` VALUES("8383", "3", "2015-02-03 15:17:03", "104.218.197.147", "130");
INSERT INTO `wp_gf_form_view` VALUES("8384", "3", "2015-02-03 16:13:12", "202.46.62.146", "306");
INSERT INTO `wp_gf_form_view` VALUES("8385", "2", "2015-02-03 16:24:29", "155.94.164.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("8386", "3", "2015-02-03 17:10:16", "202.46.62.108", "312");
INSERT INTO `wp_gf_form_view` VALUES("8387", "3", "2015-02-03 18:04:17", "144.76.155.8", "182");
INSERT INTO `wp_gf_form_view` VALUES("8388", "1", "2015-02-03 18:24:10", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("8389", "3", "2015-02-03 19:07:07", "68.180.228.245", "228");
INSERT INTO `wp_gf_form_view` VALUES("8390", "3", "2015-02-03 20:05:58", "202.46.49.36", "114");
INSERT INTO `wp_gf_form_view` VALUES("8391", "3", "2015-02-03 21:19:05", "66.249.67.92", "212");
INSERT INTO `wp_gf_form_view` VALUES("8392", "3", "2015-02-03 22:00:39", "202.46.62.148", "871");
INSERT INTO `wp_gf_form_view` VALUES("8393", "2", "2015-02-03 22:56:46", "157.55.39.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("8394", "1", "2015-02-03 22:56:48", "157.55.39.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("8395", "3", "2015-02-03 23:02:28", "192.240.201.10", "256");
INSERT INTO `wp_gf_form_view` VALUES("8396", "3", "2015-02-04 00:05:28", "202.46.50.140", "138");
INSERT INTO `wp_gf_form_view` VALUES("8397", "1", "2015-02-04 00:51:13", "62.210.93.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("8398", "3", "2015-02-04 01:01:35", "107.182.116.150", "150");
INSERT INTO `wp_gf_form_view` VALUES("8399", "3", "2015-02-04 02:07:23", "207.46.13.23", "799");
INSERT INTO `wp_gf_form_view` VALUES("8400", "6", "2015-02-04 02:17:20", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8401", "3", "2015-02-04 03:08:48", "82.76.87.24", "414");
INSERT INTO `wp_gf_form_view` VALUES("8402", "6", "2015-02-04 03:09:32", "82.76.87.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("8403", "1", "2015-02-04 03:10:08", "82.76.87.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("8404", "2", "2015-02-04 03:10:15", "82.76.87.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("8405", "3", "2015-02-04 04:06:02", "66.249.67.84", "96");
INSERT INTO `wp_gf_form_view` VALUES("8406", "3", "2015-02-04 05:02:33", "66.249.67.92", "254");
INSERT INTO `wp_gf_form_view` VALUES("8407", "1", "2015-02-04 05:11:42", "202.46.61.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("8408", "2", "2015-02-04 05:12:42", "36.248.167.87", "2");
INSERT INTO `wp_gf_form_view` VALUES("8409", "3", "2015-02-04 06:13:59", "68.180.228.245", "80");
INSERT INTO `wp_gf_form_view` VALUES("8410", "3", "2015-02-04 07:17:35", "66.249.67.84", "48");
INSERT INTO `wp_gf_form_view` VALUES("8411", "3", "2015-02-04 08:05:17", "66.249.67.76", "74");
INSERT INTO `wp_gf_form_view` VALUES("8412", "3", "2015-02-04 09:19:38", "66.249.67.76", "24");
INSERT INTO `wp_gf_form_view` VALUES("8413", "3", "2015-02-04 10:04:52", "66.249.67.84", "94");
INSERT INTO `wp_gf_form_view` VALUES("8414", "3", "2015-02-04 11:03:44", "202.46.62.89", "78");
INSERT INTO `wp_gf_form_view` VALUES("8415", "3", "2015-02-04 12:05:27", "66.249.67.84", "48");
INSERT INTO `wp_gf_form_view` VALUES("8416", "3", "2015-02-04 13:23:45", "68.180.228.245", "80");
INSERT INTO `wp_gf_form_view` VALUES("8417", "3", "2015-02-04 14:06:39", "202.46.50.199", "84");
INSERT INTO `wp_gf_form_view` VALUES("8418", "3", "2015-02-04 15:19:33", "66.249.67.92", "96");
INSERT INTO `wp_gf_form_view` VALUES("8419", "3", "2015-02-04 16:12:26", "107.150.49.242", "73");
INSERT INTO `wp_gf_form_view` VALUES("8420", "3", "2015-02-04 17:03:04", "188.165.15.192", "181");
INSERT INTO `wp_gf_form_view` VALUES("8421", "3", "2015-02-04 18:01:47", "24.108.3.240", "355");
INSERT INTO `wp_gf_form_view` VALUES("8422", "3", "2015-02-04 19:00:00", "68.180.228.245", "386");
INSERT INTO `wp_gf_form_view` VALUES("8423", "3", "2015-02-04 20:26:47", "100.43.85.24", "82");
INSERT INTO `wp_gf_form_view` VALUES("8424", "3", "2015-02-04 21:05:16", "195.154.216.165", "226");
INSERT INTO `wp_gf_form_view` VALUES("8425", "3", "2015-02-04 22:10:08", "66.249.67.84", "52");
INSERT INTO `wp_gf_form_view` VALUES("8426", "3", "2015-02-04 23:09:50", "207.81.255.44", "146");
INSERT INTO `wp_gf_form_view` VALUES("8427", "3", "2015-02-05 00:00:46", "195.154.216.165", "112");
INSERT INTO `wp_gf_form_view` VALUES("8428", "3", "2015-02-05 01:17:44", "195.154.216.165", "38");
INSERT INTO `wp_gf_form_view` VALUES("8429", "3", "2015-02-05 02:01:54", "100.43.85.24", "411");
INSERT INTO `wp_gf_form_view` VALUES("8430", "3", "2015-02-05 03:01:53", "195.154.216.165", "254");
INSERT INTO `wp_gf_form_view` VALUES("8431", "3", "2015-02-05 04:06:42", "68.180.228.245", "2808");
INSERT INTO `wp_gf_form_view` VALUES("8432", "6", "2015-02-05 04:31:31", "66.249.67.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("8433", "1", "2015-02-05 04:34:10", "66.249.67.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("8434", "3", "2015-02-05 05:00:01", "66.249.67.92", "1538");
INSERT INTO `wp_gf_form_view` VALUES("8435", "6", "2015-02-05 05:06:07", "66.249.67.84", "7");
INSERT INTO `wp_gf_form_view` VALUES("8436", "3", "2015-02-05 06:01:58", "66.249.67.84", "2868");
INSERT INTO `wp_gf_form_view` VALUES("8437", "2", "2015-02-05 06:23:59", "193.201.224.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("8438", "3", "2015-02-05 07:00:04", "162.243.32.128", "9115");
INSERT INTO `wp_gf_form_view` VALUES("8439", "1", "2015-02-05 07:05:00", "162.243.32.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("8440", "2", "2015-02-05 07:42:18", "66.249.67.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("8441", "3", "2015-02-05 08:00:00", "162.243.32.128", "6750");
INSERT INTO `wp_gf_form_view` VALUES("8442", "3", "2015-02-05 09:00:15", "66.249.67.76", "1100");
INSERT INTO `wp_gf_form_view` VALUES("8443", "2", "2015-02-05 09:15:39", "36.248.167.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("8444", "3", "2015-02-05 10:00:07", "66.249.67.84", "1338");
INSERT INTO `wp_gf_form_view` VALUES("8445", "3", "2015-02-05 11:00:00", "66.249.67.84", "984");
INSERT INTO `wp_gf_form_view` VALUES("8446", "3", "2015-02-05 12:16:10", "66.249.67.84", "138");
INSERT INTO `wp_gf_form_view` VALUES("8447", "3", "2015-02-05 13:03:12", "68.180.228.245", "450");
INSERT INTO `wp_gf_form_view` VALUES("8448", "3", "2015-02-05 14:01:11", "66.249.67.84", "863");
INSERT INTO `wp_gf_form_view` VALUES("8449", "3", "2015-02-05 15:00:04", "66.249.67.92", "1194");
INSERT INTO `wp_gf_form_view` VALUES("8450", "3", "2015-02-05 16:00:01", "66.249.67.92", "1481");
INSERT INTO `wp_gf_form_view` VALUES("8451", "6", "2015-02-05 16:05:27", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8452", "3", "2015-02-05 17:00:05", "66.249.67.76", "1564");
INSERT INTO `wp_gf_form_view` VALUES("8453", "6", "2015-02-05 17:21:30", "66.249.67.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8454", "3", "2015-02-05 18:16:09", "66.249.67.76", "282");
INSERT INTO `wp_gf_form_view` VALUES("8455", "3", "2015-02-05 19:00:25", "66.249.67.84", "918");
INSERT INTO `wp_gf_form_view` VALUES("8456", "3", "2015-02-05 20:00:11", "66.249.67.92", "1536");
INSERT INTO `wp_gf_form_view` VALUES("8457", "3", "2015-02-05 21:00:04", "66.249.67.92", "1490");
INSERT INTO `wp_gf_form_view` VALUES("8458", "3", "2015-02-05 22:00:01", "66.249.67.76", "1402");
INSERT INTO `wp_gf_form_view` VALUES("8459", "6", "2015-02-05 22:51:26", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8460", "3", "2015-02-05 23:00:11", "66.249.67.84", "1398");
INSERT INTO `wp_gf_form_view` VALUES("8461", "3", "2015-02-06 00:01:12", "66.249.67.76", "521");
INSERT INTO `wp_gf_form_view` VALUES("8462", "3", "2015-02-06 01:00:49", "66.249.67.84", "338");
INSERT INTO `wp_gf_form_view` VALUES("8463", "3", "2015-02-06 02:00:32", "68.180.228.245", "593");
INSERT INTO `wp_gf_form_view` VALUES("8464", "1", "2015-02-06 02:55:55", "85.25.210.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("8465", "3", "2015-02-06 03:00:39", "66.249.67.76", "1270");
INSERT INTO `wp_gf_form_view` VALUES("8466", "2", "2015-02-06 03:50:13", "157.55.39.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("8467", "1", "2015-02-06 03:50:15", "157.55.39.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("8468", "6", "2015-02-06 03:56:12", "66.249.67.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("8469", "3", "2015-02-06 04:00:37", "66.249.67.92", "355");
INSERT INTO `wp_gf_form_view` VALUES("8470", "3", "2015-02-06 05:00:22", "66.249.67.92", "744");
INSERT INTO `wp_gf_form_view` VALUES("8471", "3", "2015-02-06 06:12:44", "24.108.72.49", "141");
INSERT INTO `wp_gf_form_view` VALUES("8472", "3", "2015-02-06 07:06:00", "66.249.67.84", "100");
INSERT INTO `wp_gf_form_view` VALUES("8473", "3", "2015-02-06 08:00:28", "66.249.67.92", "132");
INSERT INTO `wp_gf_form_view` VALUES("8474", "3", "2015-02-06 09:03:30", "192.187.127.122", "192");
INSERT INTO `wp_gf_form_view` VALUES("8475", "3", "2015-02-06 10:04:51", "66.249.67.92", "178");
INSERT INTO `wp_gf_form_view` VALUES("8476", "3", "2015-02-06 11:01:38", "66.249.67.84", "172");
INSERT INTO `wp_gf_form_view` VALUES("8477", "3", "2015-02-06 12:04:14", "66.249.67.92", "201");
INSERT INTO `wp_gf_form_view` VALUES("8478", "6", "2015-02-06 12:18:07", "100.43.85.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("8479", "3", "2015-02-06 13:00:15", "202.46.61.57", "98");
INSERT INTO `wp_gf_form_view` VALUES("8480", "2", "2015-02-06 14:01:32", "220.181.108.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("8481", "3", "2015-02-06 14:01:32", "220.181.108.117", "670");
INSERT INTO `wp_gf_form_view` VALUES("8482", "3", "2015-02-06 15:06:16", "66.249.67.84", "142");
INSERT INTO `wp_gf_form_view` VALUES("8483", "3", "2015-02-06 16:01:25", "66.249.67.132", "90");
INSERT INTO `wp_gf_form_view` VALUES("8484", "6", "2015-02-06 16:37:49", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8485", "3", "2015-02-06 17:02:29", "100.43.85.24", "836");
INSERT INTO `wp_gf_form_view` VALUES("8486", "1", "2015-02-06 17:54:34", "207.194.65.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("8487", "3", "2015-02-06 18:00:22", "96.54.36.14", "328");
INSERT INTO `wp_gf_form_view` VALUES("8488", "1", "2015-02-06 18:05:40", "207.194.65.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("8489", "3", "2015-02-06 19:04:09", "217.69.133.232", "377");
INSERT INTO `wp_gf_form_view` VALUES("8490", "3", "2015-02-06 20:00:21", "66.249.67.84", "785");
INSERT INTO `wp_gf_form_view` VALUES("8491", "3", "2015-02-06 21:00:38", "66.249.67.76", "734");
INSERT INTO `wp_gf_form_view` VALUES("8492", "3", "2015-02-06 22:00:00", "66.249.67.84", "1024");
INSERT INTO `wp_gf_form_view` VALUES("8493", "6", "2015-02-06 22:28:10", "208.115.113.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("8494", "3", "2015-02-06 23:00:37", "66.249.79.84", "990");
INSERT INTO `wp_gf_form_view` VALUES("8495", "3", "2015-02-07 00:02:52", "66.249.79.92", "278");
INSERT INTO `wp_gf_form_view` VALUES("8496", "3", "2015-02-07 01:07:07", "100.43.85.24", "212");
INSERT INTO `wp_gf_form_view` VALUES("8497", "6", "2015-02-07 01:25:28", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("8498", "3", "2015-02-07 02:00:48", "192.187.127.122", "490");
INSERT INTO `wp_gf_form_view` VALUES("8499", "3", "2015-02-07 03:00:23", "66.249.79.84", "722");
INSERT INTO `wp_gf_form_view` VALUES("8500", "3", "2015-02-07 04:00:15", "66.249.79.76", "643");
INSERT INTO `wp_gf_form_view` VALUES("8501", "2", "2015-02-07 04:46:31", "62.210.93.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("8502", "6", "2015-02-07 04:49:54", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8503", "3", "2015-02-07 05:00:42", "66.249.79.84", "783");
INSERT INTO `wp_gf_form_view` VALUES("8504", "3", "2015-02-07 06:00:19", "66.249.79.92", "592");
INSERT INTO `wp_gf_form_view` VALUES("8505", "3", "2015-02-07 07:00:51", "107.182.116.122", "155");
INSERT INTO `wp_gf_form_view` VALUES("8506", "2", "2015-02-07 07:21:19", "107.153.85.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("8507", "6", "2015-02-07 07:50:48", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("8508", "3", "2015-02-07 08:14:53", "66.249.79.92", "117");
INSERT INTO `wp_gf_form_view` VALUES("8509", "3", "2015-02-07 09:01:09", "66.249.79.92", "114");
INSERT INTO `wp_gf_form_view` VALUES("8510", "6", "2015-02-07 09:21:08", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("8511", "3", "2015-02-07 10:05:46", "202.46.48.151", "246");
INSERT INTO `wp_gf_form_view` VALUES("8512", "2", "2015-02-07 10:37:01", "107.153.85.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("8513", "1", "2015-02-07 10:58:54", "186.222.220.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("8514", "3", "2015-02-07 11:01:24", "217.69.133.69", "1514");
INSERT INTO `wp_gf_form_view` VALUES("8515", "1", "2015-02-07 11:35:57", "85.17.73.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("8516", "2", "2015-02-07 11:38:41", "85.17.73.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("8517", "3", "2015-02-07 12:20:05", "202.46.63.82", "139");
INSERT INTO `wp_gf_form_view` VALUES("8518", "2", "2015-02-07 12:41:28", "104.143.16.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("8519", "3", "2015-02-07 13:44:06", "66.249.79.92", "42");
INSERT INTO `wp_gf_form_view` VALUES("8520", "3", "2015-02-07 14:13:40", "217.69.133.230", "138");
INSERT INTO `wp_gf_form_view` VALUES("8521", "2", "2015-02-07 14:37:01", "192.230.61.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("8522", "3", "2015-02-07 15:08:01", "202.46.48.149", "118");
INSERT INTO `wp_gf_form_view` VALUES("8523", "2", "2015-02-07 16:19:10", "172.245.133.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("8524", "3", "2015-02-07 16:19:10", "172.245.133.129", "28");
INSERT INTO `wp_gf_form_view` VALUES("8525", "3", "2015-02-07 17:21:45", "100.43.85.24", "66");
INSERT INTO `wp_gf_form_view` VALUES("8526", "3", "2015-02-07 18:00:00", "207.46.13.38", "126");
INSERT INTO `wp_gf_form_view` VALUES("8527", "1", "2015-02-07 18:38:56", "189.12.86.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("8528", "3", "2015-02-07 19:39:34", "202.46.50.128", "90");
INSERT INTO `wp_gf_form_view` VALUES("8529", "3", "2015-02-07 20:05:44", "66.249.79.76", "100");
INSERT INTO `wp_gf_form_view` VALUES("8530", "3", "2015-02-07 21:10:49", "66.249.79.140", "80");
INSERT INTO `wp_gf_form_view` VALUES("8531", "3", "2015-02-07 22:02:13", "66.249.79.84", "544");
INSERT INTO `wp_gf_form_view` VALUES("8532", "3", "2015-02-07 23:02:37", "100.43.85.24", "604");
INSERT INTO `wp_gf_form_view` VALUES("8533", "3", "2015-02-08 00:30:21", "66.249.79.84", "167");
INSERT INTO `wp_gf_form_view` VALUES("8534", "2", "2015-02-08 00:56:02", "167.160.103.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("8535", "2", "2015-02-08 01:08:46", "104.143.16.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("8536", "3", "2015-02-08 01:08:46", "104.143.16.173", "48");
INSERT INTO `wp_gf_form_view` VALUES("8537", "3", "2015-02-08 02:14:31", "66.249.79.92", "116");
INSERT INTO `wp_gf_form_view` VALUES("8538", "2", "2015-02-08 02:57:36", "104.143.16.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("8539", "3", "2015-02-08 03:04:57", "68.180.228.245", "68");
INSERT INTO `wp_gf_form_view` VALUES("8540", "2", "2015-02-08 04:10:48", "172.245.133.205", "5");
INSERT INTO `wp_gf_form_view` VALUES("8541", "3", "2015-02-08 04:10:48", "172.245.133.205", "207");
INSERT INTO `wp_gf_form_view` VALUES("8542", "3", "2015-02-08 05:03:09", "66.249.79.84", "174");
INSERT INTO `wp_gf_form_view` VALUES("8543", "2", "2015-02-08 05:56:42", "107.182.116.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("8544", "3", "2015-02-08 06:00:08", "66.249.79.92", "191");
INSERT INTO `wp_gf_form_view` VALUES("8545", "2", "2015-02-08 06:20:53", "23.247.173.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("8546", "3", "2015-02-08 07:00:59", "66.249.79.76", "1862");
INSERT INTO `wp_gf_form_view` VALUES("8547", "6", "2015-02-08 07:30:05", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8548", "2", "2015-02-08 07:38:46", "104.143.16.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("8549", "3", "2015-02-08 08:08:51", "66.249.79.76", "82");
INSERT INTO `wp_gf_form_view` VALUES("8550", "3", "2015-02-08 09:16:18", "66.249.79.92", "74");
INSERT INTO `wp_gf_form_view` VALUES("8551", "2", "2015-02-08 09:19:26", "198.12.74.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("8552", "3", "2015-02-08 10:07:25", "202.46.49.102", "110");
INSERT INTO `wp_gf_form_view` VALUES("8553", "3", "2015-02-08 11:02:17", "202.46.50.128", "76");
INSERT INTO `wp_gf_form_view` VALUES("8554", "3", "2015-02-08 12:21:34", "188.165.15.44", "141");
INSERT INTO `wp_gf_form_view` VALUES("8555", "1", "2015-02-08 12:31:15", "208.115.111.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("8556", "3", "2015-02-08 13:11:35", "68.180.228.245", "195");
INSERT INTO `wp_gf_form_view` VALUES("8557", "2", "2015-02-08 13:23:49", "104.143.16.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("8558", "1", "2015-02-08 14:03:01", "221.237.21.150", "2");
INSERT INTO `wp_gf_form_view` VALUES("8559", "3", "2015-02-08 14:03:01", "221.237.21.150", "122");
INSERT INTO `wp_gf_form_view` VALUES("8560", "2", "2015-02-08 14:51:24", "36.248.167.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("8561", "3", "2015-02-08 15:12:44", "68.180.228.245", "102");
INSERT INTO `wp_gf_form_view` VALUES("8562", "3", "2015-02-08 16:15:18", "85.25.210.189", "151");
INSERT INTO `wp_gf_form_view` VALUES("8563", "3", "2015-02-08 17:03:04", "188.165.15.231", "108");
INSERT INTO `wp_gf_form_view` VALUES("8564", "3", "2015-02-08 18:06:32", "66.249.79.92", "140");
INSERT INTO `wp_gf_form_view` VALUES("8565", "3", "2015-02-08 19:16:29", "76.69.13.202", "147");
INSERT INTO `wp_gf_form_view` VALUES("8566", "2", "2015-02-08 19:33:01", "107.153.85.201", "4");
INSERT INTO `wp_gf_form_view` VALUES("8567", "3", "2015-02-08 20:03:15", "68.180.228.245", "138");
INSERT INTO `wp_gf_form_view` VALUES("8568", "1", "2015-02-08 20:30:37", "177.134.112.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("8569", "3", "2015-02-08 21:01:28", "202.46.63.67", "236");
INSERT INTO `wp_gf_form_view` VALUES("8570", "2", "2015-02-08 21:18:25", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8571", "3", "2015-02-08 22:04:30", "66.249.79.92", "196");
INSERT INTO `wp_gf_form_view` VALUES("8572", "3", "2015-02-08 23:02:02", "68.180.228.245", "378");
INSERT INTO `wp_gf_form_view` VALUES("8573", "2", "2015-02-08 23:18:56", "198.12.74.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("8574", "3", "2015-02-09 00:04:30", "66.249.79.92", "158");
INSERT INTO `wp_gf_form_view` VALUES("8575", "6", "2015-02-09 00:31:14", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("8576", "3", "2015-02-09 01:07:42", "66.249.79.76", "166");
INSERT INTO `wp_gf_form_view` VALUES("8577", "2", "2015-02-09 01:35:00", "198.12.74.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("8578", "3", "2015-02-09 02:01:54", "66.249.79.76", "223");
INSERT INTO `wp_gf_form_view` VALUES("8579", "2", "2015-02-09 02:41:03", "107.182.116.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("8580", "3", "2015-02-09 03:35:30", "68.180.228.245", "133");
INSERT INTO `wp_gf_form_view` VALUES("8581", "1", "2015-02-09 03:35:30", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("8582", "3", "2015-02-09 04:00:27", "66.249.79.92", "180");
INSERT INTO `wp_gf_form_view` VALUES("8583", "3", "2015-02-09 05:00:10", "68.180.228.245", "144");
INSERT INTO `wp_gf_form_view` VALUES("8584", "3", "2015-02-09 06:01:23", "66.249.79.76", "132");
INSERT INTO `wp_gf_form_view` VALUES("8585", "2", "2015-02-09 06:30:24", "36.248.167.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("8586", "3", "2015-02-09 07:03:22", "202.46.50.129", "94");
INSERT INTO `wp_gf_form_view` VALUES("8587", "3", "2015-02-09 08:07:20", "68.180.228.245", "241");
INSERT INTO `wp_gf_form_view` VALUES("8588", "3", "2015-02-09 09:09:33", "66.249.79.76", "130");
INSERT INTO `wp_gf_form_view` VALUES("8589", "3", "2015-02-09 10:02:30", "198.12.74.33", "166");
INSERT INTO `wp_gf_form_view` VALUES("8590", "3", "2015-02-09 11:01:01", "66.249.79.84", "346");
INSERT INTO `wp_gf_form_view` VALUES("8591", "3", "2015-02-09 12:00:34", "66.249.79.84", "351");
INSERT INTO `wp_gf_form_view` VALUES("8592", "3", "2015-02-09 13:26:56", "202.46.48.202", "40");
INSERT INTO `wp_gf_form_view` VALUES("8593", "3", "2015-02-09 14:01:12", "66.249.79.92", "103");
INSERT INTO `wp_gf_form_view` VALUES("8594", "3", "2015-02-09 15:02:02", "68.180.228.245", "110");
INSERT INTO `wp_gf_form_view` VALUES("8595", "2", "2015-02-09 16:04:56", "188.165.15.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("8596", "3", "2015-02-09 16:04:57", "188.165.15.231", "168");
INSERT INTO `wp_gf_form_view` VALUES("8597", "3", "2015-02-09 17:00:20", "66.249.79.84", "412");
INSERT INTO `wp_gf_form_view` VALUES("8598", "3", "2015-02-09 18:00:39", "207.6.161.195", "430");
INSERT INTO `wp_gf_form_view` VALUES("8599", "1", "2015-02-09 18:11:09", "207.6.161.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("8600", "3", "2015-02-09 19:00:14", "66.249.79.84", "246");
INSERT INTO `wp_gf_form_view` VALUES("8601", "3", "2015-02-09 20:12:12", "66.249.93.194", "152");
INSERT INTO `wp_gf_form_view` VALUES("8602", "6", "2015-02-09 20:25:41", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("8603", "3", "2015-02-09 21:01:23", "66.249.79.84", "307");
INSERT INTO `wp_gf_form_view` VALUES("8604", "1", "2015-02-09 21:57:26", "24.231.239.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("8605", "3", "2015-02-09 22:18:59", "68.180.228.245", "43");
INSERT INTO `wp_gf_form_view` VALUES("8606", "3", "2015-02-09 23:15:56", "202.46.48.202", "92");
INSERT INTO `wp_gf_form_view` VALUES("8607", "3", "2015-02-10 00:07:19", "68.180.228.245", "74");
INSERT INTO `wp_gf_form_view` VALUES("8608", "3", "2015-02-10 01:29:15", "66.249.79.92", "98");
INSERT INTO `wp_gf_form_view` VALUES("8609", "3", "2015-02-10 02:06:44", "66.249.79.76", "124");
INSERT INTO `wp_gf_form_view` VALUES("8610", "3", "2015-02-10 03:23:21", "202.46.63.84", "42");
INSERT INTO `wp_gf_form_view` VALUES("8611", "2", "2015-02-10 04:00:31", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("8612", "3", "2015-02-10 04:00:31", "68.180.228.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("8613", "3", "2015-02-10 05:34:45", "66.249.79.92", "36");
INSERT INTO `wp_gf_form_view` VALUES("8614", "3", "2015-02-10 06:03:12", "68.180.228.245", "164");
INSERT INTO `wp_gf_form_view` VALUES("8615", "3", "2015-02-10 07:00:42", "66.249.79.92", "60");
INSERT INTO `wp_gf_form_view` VALUES("8616", "3", "2015-02-10 08:01:09", "66.249.79.84", "76");
INSERT INTO `wp_gf_form_view` VALUES("8617", "3", "2015-02-10 09:54:07", "66.249.79.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("8618", "3", "2015-02-10 10:29:32", "220.181.108.151", "36");
INSERT INTO `wp_gf_form_view` VALUES("8619", "3", "2015-02-10 11:48:30", "188.165.15.64", "12");
INSERT INTO `wp_gf_form_view` VALUES("8620", "3", "2015-02-10 12:10:46", "66.249.79.84", "235");
INSERT INTO `wp_gf_form_view` VALUES("8621", "3", "2015-02-10 13:15:51", "217.69.133.233", "42");
INSERT INTO `wp_gf_form_view` VALUES("8622", "3", "2015-02-10 14:06:44", "66.249.79.84", "76");
INSERT INTO `wp_gf_form_view` VALUES("8623", "3", "2015-02-10 15:00:36", "66.249.79.76", "128");
INSERT INTO `wp_gf_form_view` VALUES("8624", "3", "2015-02-10 16:02:05", "66.249.79.84", "110");
INSERT INTO `wp_gf_form_view` VALUES("8625", "3", "2015-02-10 17:03:20", "202.46.61.100", "112");
INSERT INTO `wp_gf_form_view` VALUES("8626", "3", "2015-02-10 18:10:51", "66.249.79.84", "68");
INSERT INTO `wp_gf_form_view` VALUES("8627", "3", "2015-02-10 19:06:26", "66.249.79.84", "162");
INSERT INTO `wp_gf_form_view` VALUES("8628", "6", "2015-02-10 19:51:42", "66.249.79.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("8629", "3", "2015-02-10 20:04:05", "66.249.79.84", "348");
INSERT INTO `wp_gf_form_view` VALUES("8630", "1", "2015-02-10 20:18:51", "96.50.106.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("8631", "3", "2015-02-10 21:11:06", "96.50.106.97", "50");
INSERT INTO `wp_gf_form_view` VALUES("8632", "1", "2015-02-10 21:51:36", "81.149.25.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("8633", "3", "2015-02-10 22:06:17", "202.46.50.39", "484");
INSERT INTO `wp_gf_form_view` VALUES("8634", "3", "2015-02-10 23:21:18", "202.46.63.80", "94");
INSERT INTO `wp_gf_form_view` VALUES("8635", "3", "2015-02-11 00:11:49", "66.249.79.93", "30");
INSERT INTO `wp_gf_form_view` VALUES("8636", "3", "2015-02-11 01:03:24", "188.165.15.87", "255");
INSERT INTO `wp_gf_form_view` VALUES("8637", "2", "2015-02-11 01:59:36", "65.111.164.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("8638", "3", "2015-02-11 02:00:44", "66.249.79.93", "190");
INSERT INTO `wp_gf_form_view` VALUES("8639", "3", "2015-02-11 03:29:58", "66.249.79.85", "20");
INSERT INTO `wp_gf_form_view` VALUES("8640", "3", "2015-02-11 04:14:46", "66.249.79.77", "96");
INSERT INTO `wp_gf_form_view` VALUES("8641", "6", "2015-02-11 04:15:44", "188.165.15.87", "2");
INSERT INTO `wp_gf_form_view` VALUES("8642", "3", "2015-02-11 05:21:17", "69.58.178.59", "144");
INSERT INTO `wp_gf_form_view` VALUES("8643", "3", "2015-02-11 06:00:28", "66.249.79.85", "1427");
INSERT INTO `wp_gf_form_view` VALUES("8644", "2", "2015-02-11 06:43:30", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("8645", "1", "2015-02-11 06:43:39", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("8646", "6", "2015-02-11 06:57:12", "81.144.138.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("8647", "3", "2015-02-11 07:00:14", "81.144.138.34", "1228");
INSERT INTO `wp_gf_form_view` VALUES("8648", "6", "2015-02-11 07:54:16", "66.249.79.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("8649", "3", "2015-02-11 08:01:50", "217.69.133.230", "208");
INSERT INTO `wp_gf_form_view` VALUES("8650", "3", "2015-02-11 09:07:18", "66.249.79.77", "70");
INSERT INTO `wp_gf_form_view` VALUES("8651", "3", "2015-02-11 10:08:51", "66.249.79.77", "73");
INSERT INTO `wp_gf_form_view` VALUES("8652", "2", "2015-02-11 11:09:33", "104.143.16.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("8653", "3", "2015-02-11 11:09:33", "104.143.16.18", "107");
INSERT INTO `wp_gf_form_view` VALUES("8654", "3", "2015-02-11 12:03:17", "202.46.62.149", "364");
INSERT INTO `wp_gf_form_view` VALUES("8655", "3", "2015-02-11 13:00:30", "66.249.79.77", "336");
INSERT INTO `wp_gf_form_view` VALUES("8656", "3", "2015-02-11 14:00:21", "66.249.79.85", "374");
INSERT INTO `wp_gf_form_view` VALUES("8657", "3", "2015-02-11 15:00:25", "66.249.79.85", "112");
INSERT INTO `wp_gf_form_view` VALUES("8658", "3", "2015-02-11 16:30:41", "208.115.111.66", "60");
INSERT INTO `wp_gf_form_view` VALUES("8659", "3", "2015-02-11 17:12:36", "207.194.133.9", "30");
INSERT INTO `wp_gf_form_view` VALUES("8660", "3", "2015-02-11 18:06:29", "184.69.178.254", "126");
INSERT INTO `wp_gf_form_view` VALUES("8661", "3", "2015-02-11 19:08:14", "184.66.18.184", "171");
INSERT INTO `wp_gf_form_view` VALUES("8662", "2", "2015-02-11 19:29:57", "192.230.61.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("8663", "3", "2015-02-11 20:00:23", "66.249.79.93", "50");
INSERT INTO `wp_gf_form_view` VALUES("8664", "3", "2015-02-11 21:01:00", "66.249.79.77", "60");
INSERT INTO `wp_gf_form_view` VALUES("8665", "2", "2015-02-11 22:48:31", "23.247.173.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("8666", "3", "2015-02-11 22:48:31", "23.247.173.157", "125");
INSERT INTO `wp_gf_form_view` VALUES("8667", "3", "2015-02-11 23:00:50", "216.232.3.213", "50");
INSERT INTO `wp_gf_form_view` VALUES("8668", "3", "2015-02-12 00:00:01", "66.249.79.77", "68");
INSERT INTO `wp_gf_form_view` VALUES("8669", "3", "2015-02-12 01:18:53", "155.94.164.53", "156");
INSERT INTO `wp_gf_form_view` VALUES("8670", "3", "2015-02-12 02:05:28", "202.46.63.160", "116");
INSERT INTO `wp_gf_form_view` VALUES("8671", "3", "2015-02-12 03:12:16", "202.46.50.101", "38");
INSERT INTO `wp_gf_form_view` VALUES("8672", "3", "2015-02-12 04:04:25", "217.69.133.227", "66");
INSERT INTO `wp_gf_form_view` VALUES("8673", "3", "2015-02-12 05:06:39", "107.153.85.204", "86");
INSERT INTO `wp_gf_form_view` VALUES("8674", "3", "2015-02-12 06:09:08", "202.46.50.38", "80");
INSERT INTO `wp_gf_form_view` VALUES("8675", "3", "2015-02-12 07:15:10", "217.69.133.230", "32");
INSERT INTO `wp_gf_form_view` VALUES("8676", "3", "2015-02-12 08:04:48", "68.180.228.245", "70");
INSERT INTO `wp_gf_form_view` VALUES("8677", "3", "2015-02-12 09:35:59", "202.46.49.36", "10");
INSERT INTO `wp_gf_form_view` VALUES("8678", "3", "2015-02-12 10:03:46", "209.240.101.210", "158");
INSERT INTO `wp_gf_form_view` VALUES("8679", "6", "2015-02-12 10:21:57", "217.69.133.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("8680", "3", "2015-02-12 11:10:07", "66.249.79.125", "20");
INSERT INTO `wp_gf_form_view` VALUES("8681", "3", "2015-02-12 12:04:09", "100.43.85.24", "50");
INSERT INTO `wp_gf_form_view` VALUES("8682", "3", "2015-02-12 13:01:13", "202.46.48.147", "68");
INSERT INTO `wp_gf_form_view` VALUES("8683", "3", "2015-02-12 14:09:44", "91.121.35.151", "72");
INSERT INTO `wp_gf_form_view` VALUES("8684", "3", "2015-02-12 15:04:22", "217.69.133.69", "32");
INSERT INTO `wp_gf_form_view` VALUES("8685", "3", "2015-02-12 16:26:45", "184.69.102.54", "173");
INSERT INTO `wp_gf_form_view` VALUES("8686", "1", "2015-02-12 16:48:50", "96.54.36.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("8687", "3", "2015-02-12 17:21:30", "66.249.79.85", "291");
INSERT INTO `wp_gf_form_view` VALUES("8688", "2", "2015-02-12 17:33:35", "198.12.74.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("8689", "3", "2015-02-12 18:16:56", "184.69.102.54", "50");
INSERT INTO `wp_gf_form_view` VALUES("8690", "3", "2015-02-12 19:52:14", "157.55.39.66", "30");
INSERT INTO `wp_gf_form_view` VALUES("8691", "3", "2015-02-12 20:10:13", "220.181.108.114", "84");
INSERT INTO `wp_gf_form_view` VALUES("8692", "3", "2015-02-12 21:09:27", "202.46.48.208", "177");
INSERT INTO `wp_gf_form_view` VALUES("8693", "1", "2015-02-12 21:13:33", "162.243.170.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("8694", "2", "2015-02-12 21:13:33", "162.243.170.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("8695", "3", "2015-02-12 22:10:51", "184.69.29.54", "94");
INSERT INTO `wp_gf_form_view` VALUES("8696", "1", "2015-02-12 23:03:44", "172.245.133.205", "2");
INSERT INTO `wp_gf_form_view` VALUES("8697", "3", "2015-02-12 23:03:45", "172.245.133.205", "199");
INSERT INTO `wp_gf_form_view` VALUES("8698", "3", "2015-02-13 00:06:46", "96.50.88.170", "146");
INSERT INTO `wp_gf_form_view` VALUES("8699", "3", "2015-02-13 01:40:37", "202.46.50.35", "44");
INSERT INTO `wp_gf_form_view` VALUES("8700", "3", "2015-02-13 02:06:43", "68.180.228.245", "84");
INSERT INTO `wp_gf_form_view` VALUES("8701", "3", "2015-02-13 03:01:11", "66.249.79.85", "46");
INSERT INTO `wp_gf_form_view` VALUES("8702", "3", "2015-02-13 04:16:40", "154.20.196.63", "110");
INSERT INTO `wp_gf_form_view` VALUES("8703", "6", "2015-02-13 04:34:18", "208.115.111.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("8704", "3", "2015-02-13 05:32:56", "100.43.85.24", "40");
INSERT INTO `wp_gf_form_view` VALUES("8705", "3", "2015-02-13 06:17:46", "104.245.101.67", "112");
INSERT INTO `wp_gf_form_view` VALUES("8706", "3", "2015-02-13 07:11:23", "66.249.79.85", "30");
INSERT INTO `wp_gf_form_view` VALUES("8707", "3", "2015-02-13 08:17:39", "202.46.50.128", "42");
INSERT INTO `wp_gf_form_view` VALUES("8708", "3", "2015-02-13 09:02:22", "202.46.62.56", "30");
INSERT INTO `wp_gf_form_view` VALUES("8709", "1", "2015-02-13 09:44:33", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("8710", "3", "2015-02-13 10:26:49", "66.249.79.93", "25");
INSERT INTO `wp_gf_form_view` VALUES("8711", "3", "2015-02-13 11:14:52", "68.180.228.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("8712", "3", "2015-02-13 12:18:24", "66.249.79.85", "10");
INSERT INTO `wp_gf_form_view` VALUES("8713", "3", "2015-02-13 13:08:28", "157.55.39.209", "44");
INSERT INTO `wp_gf_form_view` VALUES("8714", "6", "2015-02-13 13:44:05", "66.249.79.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("8715", "6", "2015-02-13 14:31:03", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8716", "3", "2015-02-13 14:31:04", "68.180.228.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("8717", "3", "2015-02-13 15:38:42", "8.28.16.254", "130");
INSERT INTO `wp_gf_form_view` VALUES("8718", "3", "2015-02-13 16:11:50", "66.249.79.85", "63");
INSERT INTO `wp_gf_form_view` VALUES("8719", "3", "2015-02-13 18:07:41", "68.180.228.245", "42");
INSERT INTO `wp_gf_form_view` VALUES("8720", "3", "2015-02-13 19:59:29", "68.180.228.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("8721", "3", "2015-02-13 20:16:10", "66.249.79.85", "334");
INSERT INTO `wp_gf_form_view` VALUES("8722", "1", "2015-02-13 20:51:03", "174.127.133.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("8723", "2", "2015-02-13 20:53:26", "174.127.133.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("8724", "3", "2015-02-13 21:09:14", "202.46.63.68", "288");
INSERT INTO `wp_gf_form_view` VALUES("8725", "1", "2015-02-13 21:22:32", "174.127.133.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("8726", "3", "2015-02-13 22:00:49", "100.43.85.24", "111");
INSERT INTO `wp_gf_form_view` VALUES("8727", "3", "2015-02-13 23:07:35", "66.249.79.77", "54");
INSERT INTO `wp_gf_form_view` VALUES("8728", "3", "2015-02-14 00:12:26", "100.43.85.24", "150");
INSERT INTO `wp_gf_form_view` VALUES("8729", "3", "2015-02-14 01:02:12", "66.249.79.93", "66");
INSERT INTO `wp_gf_form_view` VALUES("8730", "3", "2015-02-14 02:11:02", "167.160.103.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("8731", "3", "2015-02-14 03:06:32", "202.46.50.199", "50");
INSERT INTO `wp_gf_form_view` VALUES("8732", "3", "2015-02-14 04:00:10", "100.43.85.24", "316");
INSERT INTO `wp_gf_form_view` VALUES("8733", "6", "2015-02-14 04:10:31", "66.249.79.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("8734", "3", "2015-02-14 05:03:26", "188.165.15.214", "154");
INSERT INTO `wp_gf_form_view` VALUES("8735", "2", "2015-02-14 06:01:25", "36.248.167.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("8736", "3", "2015-02-14 06:01:25", "36.248.167.197", "81");
INSERT INTO `wp_gf_form_view` VALUES("8737", "3", "2015-02-14 07:11:35", "68.180.228.245", "440");
INSERT INTO `wp_gf_form_view` VALUES("8738", "6", "2015-02-14 07:14:12", "68.180.228.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("8739", "1", "2015-02-14 07:42:47", "24.69.69.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("8740", "3", "2015-02-14 08:10:29", "100.43.85.24", "84");
INSERT INTO `wp_gf_form_view` VALUES("8741", "3", "2015-02-14 09:05:32", "100.43.85.24", "40");
INSERT INTO `wp_gf_form_view` VALUES("8742", "3", "2015-02-14 10:46:54", "66.249.79.77", "20");
INSERT INTO `wp_gf_form_view` VALUES("8743", "3", "2015-02-14 11:02:08", "100.43.85.24", "34");
INSERT INTO `wp_gf_form_view` VALUES("8744", "3", "2015-02-14 12:04:53", "202.46.61.56", "60");
INSERT INTO `wp_gf_form_view` VALUES("8745", "3", "2015-02-14 13:24:53", "68.180.228.245", "564");
INSERT INTO `wp_gf_form_view` VALUES("8746", "1", "2015-02-14 13:27:45", "199.96.83.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("8747", "3", "2015-02-14 14:03:10", "68.180.228.245", "80");
INSERT INTO `wp_gf_form_view` VALUES("8748", "1", "2015-02-14 14:07:14", "125.71.54.4", "3");
INSERT INTO `wp_gf_form_view` VALUES("8749", "3", "2015-02-14 15:01:52", "68.180.228.245", "143");
INSERT INTO `wp_gf_form_view` VALUES("8750", "3", "2015-02-14 16:01:34", "172.245.133.205", "161");
INSERT INTO `wp_gf_form_view` VALUES("8751", "3", "2015-02-14 17:04:25", "157.55.39.66", "1184");
INSERT INTO `wp_gf_form_view` VALUES("8752", "3", "2015-02-14 18:04:50", "68.180.228.245", "52");
INSERT INTO `wp_gf_form_view` VALUES("8753", "1", "2015-02-14 19:24:22", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("8754", "3", "2015-02-14 19:24:26", "100.43.85.24", "70");
INSERT INTO `wp_gf_form_view` VALUES("8755", "3", "2015-02-14 20:00:41", "202.46.48.47", "60");
INSERT INTO `wp_gf_form_view` VALUES("8756", "3", "2015-02-14 21:10:39", "66.249.79.93", "90");
INSERT INTO `wp_gf_form_view` VALUES("8757", "1", "2015-02-14 21:46:48", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("8758", "3", "2015-02-14 22:02:35", "66.249.79.77", "220");
INSERT INTO `wp_gf_form_view` VALUES("8759", "3", "2015-02-14 23:01:31", "66.249.79.77", "120");
INSERT INTO `wp_gf_form_view` VALUES("8760", "3", "2015-02-15 00:01:59", "100.43.85.24", "70");
INSERT INTO `wp_gf_form_view` VALUES("8761", "3", "2015-02-15 01:01:24", "66.249.79.85", "116");
INSERT INTO `wp_gf_form_view` VALUES("8762", "3", "2015-02-15 02:21:38", "66.249.79.93", "54");
INSERT INTO `wp_gf_form_view` VALUES("8763", "3", "2015-02-15 03:14:39", "100.43.85.24", "36");
INSERT INTO `wp_gf_form_view` VALUES("8764", "3", "2015-02-15 04:00:00", "66.249.79.77", "525");
INSERT INTO `wp_gf_form_view` VALUES("8765", "3", "2015-02-15 05:00:29", "66.249.79.85", "584");
INSERT INTO `wp_gf_form_view` VALUES("8766", "3", "2015-02-15 06:00:46", "66.249.79.93", "452");
INSERT INTO `wp_gf_form_view` VALUES("8767", "1", "2015-02-15 06:26:58", "198.27.77.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("8768", "3", "2015-02-15 07:09:12", "66.249.79.93", "82");
INSERT INTO `wp_gf_form_view` VALUES("8769", "1", "2015-02-15 07:26:43", "96.50.106.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("8770", "3", "2015-02-15 08:07:36", "66.249.79.85", "130");
INSERT INTO `wp_gf_form_view` VALUES("8771", "3", "2015-02-15 09:16:00", "66.249.79.93", "90");
INSERT INTO `wp_gf_form_view` VALUES("8772", "3", "2015-02-15 10:00:20", "66.249.79.93", "408");
INSERT INTO `wp_gf_form_view` VALUES("8773", "3", "2015-02-15 11:02:35", "66.249.79.85", "396");
INSERT INTO `wp_gf_form_view` VALUES("8774", "6", "2015-02-15 11:31:12", "157.55.39.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("8775", "1", "2015-02-15 11:47:07", "66.249.79.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("8776", "3", "2015-02-15 12:00:24", "66.249.79.85", "263");
INSERT INTO `wp_gf_form_view` VALUES("8777", "3", "2015-02-15 13:07:58", "66.249.79.85", "60");
INSERT INTO `wp_gf_form_view` VALUES("8778", "3", "2015-02-15 14:10:27", "66.249.79.93", "70");
INSERT INTO `wp_gf_form_view` VALUES("8779", "6", "2015-02-15 14:16:06", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("8780", "3", "2015-02-15 15:10:00", "66.249.79.77", "60");
INSERT INTO `wp_gf_form_view` VALUES("8781", "3", "2015-02-15 16:00:29", "100.43.85.24", "80");
INSERT INTO `wp_gf_form_view` VALUES("8782", "3", "2015-02-15 17:07:48", "100.43.85.24", "80");
INSERT INTO `wp_gf_form_view` VALUES("8783", "3", "2015-02-15 18:08:03", "66.249.79.85", "126");
INSERT INTO `wp_gf_form_view` VALUES("8784", "3", "2015-02-15 19:13:29", "188.165.15.13", "203");
INSERT INTO `wp_gf_form_view` VALUES("8785", "3", "2015-02-15 20:12:32", "66.249.79.77", "170");
INSERT INTO `wp_gf_form_view` VALUES("8786", "3", "2015-02-15 21:01:36", "66.249.79.85", "60");
INSERT INTO `wp_gf_form_view` VALUES("8787", "3", "2015-02-15 22:01:35", "100.43.85.24", "30");
INSERT INTO `wp_gf_form_view` VALUES("8788", "3", "2015-02-15 23:07:59", "66.249.79.93", "20");
INSERT INTO `wp_gf_form_view` VALUES("8789", "3", "2015-02-16 00:23:02", "75.156.79.28", "60");
INSERT INTO `wp_gf_form_view` VALUES("8790", "3", "2015-02-16 01:16:02", "100.43.85.24", "32");
INSERT INTO `wp_gf_form_view` VALUES("8791", "3", "2015-02-16 02:07:51", "68.180.228.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("8792", "3", "2015-02-16 03:04:46", "100.43.85.24", "104");
INSERT INTO `wp_gf_form_view` VALUES("8793", "3", "2015-02-16 04:02:53", "66.249.79.93", "66");
INSERT INTO `wp_gf_form_view` VALUES("8794", "3", "2015-02-16 05:24:35", "65.93.207.115", "156");
INSERT INTO `wp_gf_form_view` VALUES("8795", "6", "2015-02-16 05:39:37", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("8796", "3", "2015-02-16 06:41:06", "100.43.85.24", "58");
INSERT INTO `wp_gf_form_view` VALUES("8797", "3", "2015-02-16 07:12:55", "202.46.61.55", "56");
INSERT INTO `wp_gf_form_view` VALUES("8798", "3", "2015-02-16 08:06:48", "66.249.79.93", "207");
INSERT INTO `wp_gf_form_view` VALUES("8799", "3", "2015-02-16 09:01:50", "66.249.79.93", "54");
INSERT INTO `wp_gf_form_view` VALUES("8800", "3", "2015-02-16 10:04:12", "66.249.79.93", "84");
INSERT INTO `wp_gf_form_view` VALUES("8801", "3", "2015-02-16 11:23:00", "66.249.79.85", "63");
INSERT INTO `wp_gf_form_view` VALUES("8802", "3", "2015-02-16 13:06:36", "202.46.63.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("8803", "3", "2015-02-16 14:01:03", "66.249.79.77", "132");
INSERT INTO `wp_gf_form_view` VALUES("8804", "2", "2015-02-16 14:56:25", "66.249.79.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("8805", "3", "2015-02-16 15:07:37", "66.249.79.93", "100");
INSERT INTO `wp_gf_form_view` VALUES("8806", "3", "2015-02-16 16:01:19", "66.249.79.93", "90");
INSERT INTO `wp_gf_form_view` VALUES("8807", "2", "2015-02-16 17:01:21", "62.210.129.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("8808", "3", "2015-02-16 17:01:21", "62.210.129.223", "50");
INSERT INTO `wp_gf_form_view` VALUES("8809", "3", "2015-02-16 18:00:40", "66.249.79.93", "197");
INSERT INTO `wp_gf_form_view` VALUES("8810", "3", "2015-02-16 19:14:13", "188.165.15.75", "96");
INSERT INTO `wp_gf_form_view` VALUES("8811", "3", "2015-02-16 20:00:53", "157.55.39.66", "199");
INSERT INTO `wp_gf_form_view` VALUES("8812", "2", "2015-02-16 20:20:42", "167.160.103.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("8813", "3", "2015-02-16 21:00:15", "202.46.49.199", "34");
INSERT INTO `wp_gf_form_view` VALUES("8814", "3", "2015-02-16 22:52:30", "202.46.50.35", "28");
INSERT INTO `wp_gf_form_view` VALUES("8815", "3", "2015-02-16 23:00:31", "202.46.50.36", "158");
INSERT INTO `wp_gf_form_view` VALUES("8816", "3", "2015-02-17 00:01:09", "184.151.231.12", "148");
INSERT INTO `wp_gf_form_view` VALUES("8817", "3", "2015-02-17 01:00:51", "202.46.49.188", "70");
INSERT INTO `wp_gf_form_view` VALUES("8818", "3", "2015-02-17 02:00:39", "66.249.67.85", "117");
INSERT INTO `wp_gf_form_view` VALUES("8819", "3", "2015-02-17 03:00:00", "157.55.39.66", "421");
INSERT INTO `wp_gf_form_view` VALUES("8820", "6", "2015-02-17 03:00:23", "207.46.13.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("8821", "3", "2015-02-17 04:01:02", "66.249.67.85", "94");
INSERT INTO `wp_gf_form_view` VALUES("8822", "3", "2015-02-17 05:00:52", "202.46.62.147", "120");
INSERT INTO `wp_gf_form_view` VALUES("8823", "1", "2015-02-17 05:49:29", "96.54.193.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("8824", "3", "2015-02-17 06:35:18", "202.46.49.188", "24");
INSERT INTO `wp_gf_form_view` VALUES("8825", "3", "2015-02-17 07:01:24", "202.46.49.101", "60");
INSERT INTO `wp_gf_form_view` VALUES("8826", "3", "2015-02-17 08:01:42", "202.46.61.100", "58");
INSERT INTO `wp_gf_form_view` VALUES("8827", "3", "2015-02-17 09:02:09", "68.180.228.245", "95");
INSERT INTO `wp_gf_form_view` VALUES("8828", "6", "2015-02-17 09:15:37", "144.76.185.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("8829", "3", "2015-02-17 10:03:13", "202.46.48.100", "139");
INSERT INTO `wp_gf_form_view` VALUES("8830", "6", "2015-02-17 10:36:05", "202.46.61.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("8831", "3", "2015-02-17 11:02:37", "202.46.62.56", "84");
INSERT INTO `wp_gf_form_view` VALUES("8832", "3", "2015-02-17 12:00:42", "202.46.62.146", "42");
INSERT INTO `wp_gf_form_view` VALUES("8833", "3", "2015-02-17 13:07:34", "66.249.67.85", "68");
INSERT INTO `wp_gf_form_view` VALUES("8834", "3", "2015-02-17 14:11:13", "66.249.67.85", "84");
INSERT INTO `wp_gf_form_view` VALUES("8835", "3", "2015-02-17 15:12:22", "188.165.15.13", "82");
INSERT INTO `wp_gf_form_view` VALUES("8836", "3", "2015-02-17 16:02:42", "202.46.50.39", "75");
INSERT INTO `wp_gf_form_view` VALUES("8837", "3", "2015-02-17 17:00:41", "199.58.77.91", "166");
INSERT INTO `wp_gf_form_view` VALUES("8838", "2", "2015-02-17 17:36:15", "36.248.167.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("8839", "3", "2015-02-17 18:00:12", "209.240.101.210", "507");
INSERT INTO `wp_gf_form_view` VALUES("8840", "3", "2015-02-17 19:05:17", "157.55.39.66", "50");
INSERT INTO `wp_gf_form_view` VALUES("8841", "3", "2015-02-17 20:03:14", "68.180.228.245", "50");
INSERT INTO `wp_gf_form_view` VALUES("8842", "3", "2015-02-17 21:00:26", "209.240.101.210", "218");
INSERT INTO `wp_gf_form_view` VALUES("8843", "3", "2015-02-17 22:09:19", "202.46.62.107", "54");
INSERT INTO `wp_gf_form_view` VALUES("8844", "3", "2015-02-17 23:00:27", "188.165.15.41", "145");
INSERT INTO `wp_gf_form_view` VALUES("8845", "2", "2015-02-17 23:29:11", "155.94.136.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("8846", "3", "2015-02-18 00:11:50", "66.249.67.85", "64");
INSERT INTO `wp_gf_form_view` VALUES("8847", "3", "2015-02-18 01:22:58", "188.165.15.41", "20");
INSERT INTO `wp_gf_form_view` VALUES("8848", "3", "2015-02-18 02:16:02", "66.249.67.85", "551");
INSERT INTO `wp_gf_form_view` VALUES("8849", "3", "2015-02-18 03:13:49", "66.249.67.93", "102");
INSERT INTO `wp_gf_form_view` VALUES("8850", "3", "2015-02-18 04:04:44", "202.46.50.180", "80");
INSERT INTO `wp_gf_form_view` VALUES("8851", "3", "2015-02-18 05:21:12", "68.180.228.245", "40");
INSERT INTO `wp_gf_form_view` VALUES("8852", "1", "2015-02-18 05:24:22", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("8853", "3", "2015-02-18 06:13:44", "66.249.67.77", "23");
INSERT INTO `wp_gf_form_view` VALUES("8854", "3", "2015-02-18 07:07:28", "66.249.67.93", "80");
INSERT INTO `wp_gf_form_view` VALUES("8855", "3", "2015-02-18 08:02:20", "66.249.67.77", "40");
INSERT INTO `wp_gf_form_view` VALUES("8856", "3", "2015-02-18 09:04:57", "148.251.69.136", "40");
INSERT INTO `wp_gf_form_view` VALUES("8857", "3", "2015-02-18 10:16:02", "66.249.67.93", "20");
INSERT INTO `wp_gf_form_view` VALUES("8858", "3", "2015-02-18 11:07:07", "188.165.15.202", "40");
INSERT INTO `wp_gf_form_view` VALUES("8859", "3", "2015-02-18 12:10:50", "66.249.67.93", "66");
INSERT INTO `wp_gf_form_view` VALUES("8860", "3", "2015-02-18 13:00:00", "157.55.39.142", "92");
INSERT INTO `wp_gf_form_view` VALUES("8861", "3", "2015-02-18 14:08:01", "66.249.67.93", "110");
INSERT INTO `wp_gf_form_view` VALUES("8862", "3", "2015-02-18 15:02:03", "157.55.39.41", "134");
INSERT INTO `wp_gf_form_view` VALUES("8863", "1", "2015-02-18 15:23:50", "207.46.13.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("8864", "3", "2015-02-18 16:12:37", "66.249.67.85", "71");
INSERT INTO `wp_gf_form_view` VALUES("8865", "2", "2015-02-18 16:18:36", "207.46.13.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("8866", "3", "2015-02-18 17:02:34", "207.46.13.72", "318");
INSERT INTO `wp_gf_form_view` VALUES("8867", "3", "2015-02-18 18:03:52", "207.46.13.72", "60");
INSERT INTO `wp_gf_form_view` VALUES("8868", "3", "2015-02-18 19:01:31", "96.50.93.42", "120");
INSERT INTO `wp_gf_form_view` VALUES("8869", "3", "2015-02-18 20:00:02", "207.46.13.72", "239");
INSERT INTO `wp_gf_form_view` VALUES("8870", "6", "2015-02-18 20:00:03", "207.46.13.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("8871", "7", "2015-02-18 20:29:37", "96.50.93.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("8872", "3", "2015-02-18 21:06:19", "66.249.67.93", "211");
INSERT INTO `wp_gf_form_view` VALUES("8873", "7", "2015-02-18 21:20:52", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("8874", "1", "2015-02-18 21:44:50", "207.46.13.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("8875", "3", "2015-02-18 22:06:08", "66.249.67.85", "240");
INSERT INTO `wp_gf_form_view` VALUES("8876", "7", "2015-02-18 22:33:13", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("8877", "3", "2015-02-18 23:00:01", "68.180.228.245", "182");
INSERT INTO `wp_gf_form_view` VALUES("8878", "3", "2015-02-19 00:02:36", "66.249.67.85", "152");
INSERT INTO `wp_gf_form_view` VALUES("8879", "6", "2015-02-19 00:13:43", "66.249.67.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("8880", "3", "2015-02-19 01:01:24", "167.160.103.134", "210");
INSERT INTO `wp_gf_form_view` VALUES("8881", "2", "2015-02-19 01:48:25", "104.143.16.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("8882", "3", "2015-02-19 02:00:06", "69.196.177.211", "90");
INSERT INTO `wp_gf_form_view` VALUES("8883", "3", "2015-02-19 03:00:23", "66.249.67.93", "162");
INSERT INTO `wp_gf_form_view` VALUES("8884", "6", "2015-02-19 03:45:27", "66.249.67.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("8885", "3", "2015-02-19 04:44:48", "66.249.67.77", "106");
INSERT INTO `wp_gf_form_view` VALUES("8886", "3", "2015-02-19 05:00:25", "68.180.228.245", "94");
INSERT INTO `wp_gf_form_view` VALUES("8887", "3", "2015-02-19 06:00:09", "66.249.67.93", "291");
INSERT INTO `wp_gf_form_view` VALUES("8888", "3", "2015-02-19 07:01:16", "66.249.67.85", "346");
INSERT INTO `wp_gf_form_view` VALUES("8889", "3", "2015-02-19 08:00:23", "66.249.67.85", "172");
INSERT INTO `wp_gf_form_view` VALUES("8890", "7", "2015-02-19 09:01:45", "66.249.67.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("8891", "3", "2015-02-19 09:01:45", "66.249.67.77", "140");
INSERT INTO `wp_gf_form_view` VALUES("8892", "3", "2015-02-19 10:02:14", "66.249.67.93", "60");
INSERT INTO `wp_gf_form_view` VALUES("8893", "7", "2015-02-19 10:22:08", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("8894", "3", "2015-02-19 11:24:57", "66.249.67.77", "42");
INSERT INTO `wp_gf_form_view` VALUES("8895", "3", "2015-02-19 12:06:41", "66.249.67.85", "112");
INSERT INTO `wp_gf_form_view` VALUES("8896", "3", "2015-02-19 13:04:10", "66.249.67.85", "140");
INSERT INTO `wp_gf_form_view` VALUES("8897", "3", "2015-02-19 14:05:39", "66.249.67.93", "148");
INSERT INTO `wp_gf_form_view` VALUES("8898", "3", "2015-02-19 15:03:48", "66.249.67.77", "116");
INSERT INTO `wp_gf_form_view` VALUES("8899", "3", "2015-02-19 16:02:44", "66.249.67.85", "120");
INSERT INTO `wp_gf_form_view` VALUES("8900", "3", "2015-02-19 17:08:52", "202.46.48.208", "70");
INSERT INTO `wp_gf_form_view` VALUES("8901", "1", "2015-02-19 17:49:18", "207.46.13.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("8902", "3", "2015-02-19 18:01:47", "157.55.39.41", "340");
INSERT INTO `wp_gf_form_view` VALUES("8903", "2", "2015-02-19 18:13:47", "207.46.13.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("8904", "3", "2015-02-19 19:00:17", "207.46.13.72", "774");
INSERT INTO `wp_gf_form_view` VALUES("8905", "3", "2015-02-19 20:04:17", "207.46.13.72", "124");
INSERT INTO `wp_gf_form_view` VALUES("8906", "3", "2015-02-19 21:02:37", "66.249.67.93", "112");
INSERT INTO `wp_gf_form_view` VALUES("8907", "7", "2015-02-19 21:34:29", "173.183.76.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("8908", "3", "2015-02-19 22:01:11", "220.181.108.154", "114");
INSERT INTO `wp_gf_form_view` VALUES("8909", "3", "2015-02-19 23:07:50", "66.249.67.85", "40");
INSERT INTO `wp_gf_form_view` VALUES("8910", "3", "2015-02-20 00:01:10", "66.249.67.85", "54");
INSERT INTO `wp_gf_form_view` VALUES("8911", "3", "2015-02-20 01:04:10", "207.46.13.72", "60");
INSERT INTO `wp_gf_form_view` VALUES("8912", "3", "2015-02-20 02:17:51", "66.249.67.93", "142");
INSERT INTO `wp_gf_form_view` VALUES("8913", "3", "2015-02-20 03:00:12", "37.140.141.15", "1450");
INSERT INTO `wp_gf_form_view` VALUES("8914", "1", "2015-02-20 03:51:33", "125.71.53.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("8915", "3", "2015-02-20 04:00:28", "68.180.228.245", "427");
INSERT INTO `wp_gf_form_view` VALUES("8916", "1", "2015-02-20 04:13:19", "209.121.11.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("8917", "3", "2015-02-20 05:06:02", "68.180.228.245", "72");
INSERT INTO `wp_gf_form_view` VALUES("8918", "3", "2015-02-20 06:01:38", "66.249.67.85", "110");
INSERT INTO `wp_gf_form_view` VALUES("8919", "3", "2015-02-20 07:05:36", "66.249.67.93", "62");
INSERT INTO `wp_gf_form_view` VALUES("8920", "3", "2015-02-20 08:05:20", "66.249.67.77", "112");
INSERT INTO `wp_gf_form_view` VALUES("8921", "3", "2015-02-20 09:06:22", "66.249.67.93", "114");
INSERT INTO `wp_gf_form_view` VALUES("8922", "3", "2015-02-20 10:04:57", "202.46.48.147", "160");
INSERT INTO `wp_gf_form_view` VALUES("8923", "3", "2015-02-20 11:04:59", "202.46.49.188", "116");
INSERT INTO `wp_gf_form_view` VALUES("8924", "3", "2015-02-20 12:00:34", "202.46.48.153", "152");
INSERT INTO `wp_gf_form_view` VALUES("8925", "3", "2015-02-20 13:01:31", "66.249.67.93", "292");
INSERT INTO `wp_gf_form_view` VALUES("8926", "3", "2015-02-20 14:13:48", "37.140.141.15", "118");
INSERT INTO `wp_gf_form_view` VALUES("8927", "3", "2015-02-20 15:01:04", "5.255.253.92", "414");
INSERT INTO `wp_gf_form_view` VALUES("8928", "3", "2015-02-20 16:00:27", "37.140.141.13", "166");
INSERT INTO `wp_gf_form_view` VALUES("8929", "3", "2015-02-20 17:10:58", "202.46.48.100", "70");
INSERT INTO `wp_gf_form_view` VALUES("8930", "3", "2015-02-20 18:00:23", "184.66.141.235", "202");
INSERT INTO `wp_gf_form_view` VALUES("8931", "1", "2015-02-20 18:02:48", "184.66.141.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("8932", "3", "2015-02-20 19:04:22", "5.255.253.92", "96");
INSERT INTO `wp_gf_form_view` VALUES("8933", "6", "2015-02-20 19:13:40", "5.255.253.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("8934", "3", "2015-02-20 20:01:32", "66.249.67.77", "86");
INSERT INTO `wp_gf_form_view` VALUES("8935", "3", "2015-02-20 21:30:45", "66.249.67.93", "62");
INSERT INTO `wp_gf_form_view` VALUES("8936", "3", "2015-02-20 22:09:12", "202.46.63.82", "92");
INSERT INTO `wp_gf_form_view` VALUES("8937", "3", "2015-02-20 23:00:00", "5.255.253.92", "108");
INSERT INTO `wp_gf_form_view` VALUES("8938", "7", "2015-02-20 23:03:30", "178.154.202.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("8939", "3", "2015-02-21 00:18:30", "207.46.13.72", "34");
INSERT INTO `wp_gf_form_view` VALUES("8940", "3", "2015-02-21 01:04:41", "66.249.67.77", "52");
INSERT INTO `wp_gf_form_view` VALUES("8941", "3", "2015-02-21 02:13:22", "66.249.67.85", "390");
INSERT INTO `wp_gf_form_view` VALUES("8942", "3", "2015-02-21 03:09:22", "202.46.49.128", "10");
INSERT INTO `wp_gf_form_view` VALUES("8943", "2", "2015-02-21 04:09:49", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("8944", "3", "2015-02-21 04:09:51", "68.180.228.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("8945", "3", "2015-02-21 05:40:21", "66.249.67.93", "51");
INSERT INTO `wp_gf_form_view` VALUES("8946", "3", "2015-02-21 06:05:39", "66.249.67.77", "90");
INSERT INTO `wp_gf_form_view` VALUES("8947", "1", "2015-02-21 06:59:53", "24.68.119.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("8948", "3", "2015-02-21 07:00:32", "24.68.119.197", "60");
INSERT INTO `wp_gf_form_view` VALUES("8949", "3", "2015-02-21 08:04:37", "66.249.67.77", "62");
INSERT INTO `wp_gf_form_view` VALUES("8950", "6", "2015-02-21 08:21:57", "207.46.13.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("8951", "3", "2015-02-21 09:31:00", "202.46.50.101", "98");
INSERT INTO `wp_gf_form_view` VALUES("8952", "3", "2015-02-21 10:01:45", "66.249.67.77", "680");
INSERT INTO `wp_gf_form_view` VALUES("8953", "7", "2015-02-21 10:40:19", "198.27.77.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("8954", "1", "2015-02-21 10:40:44", "198.27.77.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("8955", "2", "2015-02-21 10:40:54", "198.27.77.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("8956", "6", "2015-02-21 10:45:50", "37.140.141.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("8957", "3", "2015-02-21 11:11:12", "5.255.253.92", "178");
INSERT INTO `wp_gf_form_view` VALUES("8958", "3", "2015-02-21 12:32:46", "37.140.141.13", "82");
INSERT INTO `wp_gf_form_view` VALUES("8959", "3", "2015-02-21 13:40:32", "85.25.210.189", "40");
INSERT INTO `wp_gf_form_view` VALUES("8960", "3", "2015-02-21 14:01:09", "66.249.67.85", "2124");
INSERT INTO `wp_gf_form_view` VALUES("8961", "2", "2015-02-21 14:34:08", "173.70.141.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("8962", "7", "2015-02-21 14:35:12", "173.70.141.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("8963", "1", "2015-02-21 14:35:40", "173.70.141.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("8964", "6", "2015-02-21 14:43:22", "173.70.141.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("8965", "3", "2015-02-21 15:13:03", "207.46.13.120", "22");
INSERT INTO `wp_gf_form_view` VALUES("8966", "3", "2015-02-21 16:08:38", "174.129.237.157", "2625");
INSERT INTO `wp_gf_form_view` VALUES("8967", "6", "2015-02-21 16:55:59", "207.46.13.120", "5");
INSERT INTO `wp_gf_form_view` VALUES("8968", "3", "2015-02-21 17:00:00", "157.55.39.40", "3423");
INSERT INTO `wp_gf_form_view` VALUES("8969", "6", "2015-02-21 17:00:48", "157.55.39.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("8970", "3", "2015-02-21 18:00:37", "66.249.67.77", "328");
INSERT INTO `wp_gf_form_view` VALUES("8971", "3", "2015-02-21 19:00:23", "66.249.67.85", "132");
INSERT INTO `wp_gf_form_view` VALUES("8972", "3", "2015-02-21 20:00:10", "202.46.61.124", "170");
INSERT INTO `wp_gf_form_view` VALUES("8973", "3", "2015-02-21 21:00:09", "66.249.67.77", "442");
INSERT INTO `wp_gf_form_view` VALUES("8974", "3", "2015-02-21 22:01:04", "66.249.67.85", "451");
INSERT INTO `wp_gf_form_view` VALUES("8975", "3", "2015-02-21 23:00:09", "66.249.67.77", "394");
INSERT INTO `wp_gf_form_view` VALUES("8976", "3", "2015-02-22 00:00:08", "66.249.67.77", "406");
INSERT INTO `wp_gf_form_view` VALUES("8977", "3", "2015-02-22 01:00:31", "66.249.67.77", "354");
INSERT INTO `wp_gf_form_view` VALUES("8978", "3", "2015-02-22 02:00:04", "5.231.76.116", "160");
INSERT INTO `wp_gf_form_view` VALUES("8979", "2", "2015-02-22 02:35:43", "23.247.173.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("8980", "3", "2015-02-22 03:17:54", "66.249.67.77", "272");
INSERT INTO `wp_gf_form_view` VALUES("8981", "6", "2015-02-22 03:20:57", "66.249.67.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("8982", "3", "2015-02-22 04:00:11", "66.249.67.85", "430");
INSERT INTO `wp_gf_form_view` VALUES("8983", "3", "2015-02-22 05:01:21", "66.249.67.85", "449");
INSERT INTO `wp_gf_form_view` VALUES("8984", "3", "2015-02-22 06:00:28", "66.249.67.93", "472");
INSERT INTO `wp_gf_form_view` VALUES("8985", "3", "2015-02-22 07:01:16", "66.249.67.85", "208");
INSERT INTO `wp_gf_form_view` VALUES("8986", "3", "2015-02-22 08:13:40", "66.249.67.77", "111");
INSERT INTO `wp_gf_form_view` VALUES("8987", "3", "2015-02-22 09:02:56", "202.46.61.101", "172");
INSERT INTO `wp_gf_form_view` VALUES("8988", "3", "2015-02-22 10:00:28", "66.249.67.77", "640");
INSERT INTO `wp_gf_form_view` VALUES("8989", "3", "2015-02-22 11:00:49", "66.249.67.77", "370");
INSERT INTO `wp_gf_form_view` VALUES("8990", "6", "2015-02-22 11:35:50", "66.249.67.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("8991", "3", "2015-02-22 12:00:24", "66.249.67.93", "388");
INSERT INTO `wp_gf_form_view` VALUES("8992", "3", "2015-02-22 13:01:05", "66.249.67.93", "402");
INSERT INTO `wp_gf_form_view` VALUES("8993", "3", "2015-02-22 14:00:03", "66.249.67.85", "366");
INSERT INTO `wp_gf_form_view` VALUES("8994", "3", "2015-02-22 15:02:48", "37.140.141.39", "86");
INSERT INTO `wp_gf_form_view` VALUES("8995", "3", "2015-02-22 16:03:00", "66.249.67.85", "70");
INSERT INTO `wp_gf_form_view` VALUES("8996", "3", "2015-02-22 17:20:23", "66.249.67.77", "74");
INSERT INTO `wp_gf_form_view` VALUES("8997", "7", "2015-02-22 18:04:52", "188.165.15.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("8998", "3", "2015-02-22 18:04:52", "188.165.15.19", "53");
INSERT INTO `wp_gf_form_view` VALUES("8999", "3", "2015-02-22 19:17:08", "66.249.67.77", "343");
INSERT INTO `wp_gf_form_view` VALUES("9000", "3", "2015-02-22 20:02:59", "68.180.228.245", "342");
INSERT INTO `wp_gf_form_view` VALUES("9001", "3", "2015-02-22 21:01:49", "66.249.79.85", "154");
INSERT INTO `wp_gf_form_view` VALUES("9002", "3", "2015-02-22 22:06:14", "66.249.79.77", "136");
INSERT INTO `wp_gf_form_view` VALUES("9003", "3", "2015-02-22 23:03:05", "66.249.79.77", "188");
INSERT INTO `wp_gf_form_view` VALUES("9004", "3", "2015-02-23 00:19:32", "202.46.61.100", "20");
INSERT INTO `wp_gf_form_view` VALUES("9005", "3", "2015-02-23 01:11:53", "188.165.15.60", "113");
INSERT INTO `wp_gf_form_view` VALUES("9006", "1", "2015-02-23 01:28:53", "198.211.104.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("9007", "2", "2015-02-23 01:28:54", "198.211.104.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("9008", "3", "2015-02-23 02:03:09", "207.106.190.66", "534");
INSERT INTO `wp_gf_form_view` VALUES("9009", "1", "2015-02-23 02:03:26", "207.106.190.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("9010", "7", "2015-02-23 02:38:03", "84.86.138.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("9011", "2", "2015-02-23 02:38:27", "84.86.138.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("9012", "3", "2015-02-23 03:02:48", "66.249.79.93", "68");
INSERT INTO `wp_gf_form_view` VALUES("9013", "3", "2015-02-23 04:36:47", "202.46.63.162", "48");
INSERT INTO `wp_gf_form_view` VALUES("9014", "3", "2015-02-23 05:17:01", "202.46.50.183", "1570");
INSERT INTO `wp_gf_form_view` VALUES("9015", "6", "2015-02-23 05:25:15", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("9016", "3", "2015-02-23 06:38:43", "202.46.50.181", "28");
INSERT INTO `wp_gf_form_view` VALUES("9017", "3", "2015-02-23 07:18:29", "202.46.48.49", "20");
INSERT INTO `wp_gf_form_view` VALUES("9018", "3", "2015-02-23 08:03:12", "220.181.108.76", "108");
INSERT INTO `wp_gf_form_view` VALUES("9019", "3", "2015-02-23 09:05:45", "66.249.67.85", "132");
INSERT INTO `wp_gf_form_view` VALUES("9020", "3", "2015-02-23 10:00:53", "68.180.228.245", "78");
INSERT INTO `wp_gf_form_view` VALUES("9021", "3", "2015-02-23 11:12:03", "66.249.67.93", "34");
INSERT INTO `wp_gf_form_view` VALUES("9022", "3", "2015-02-23 12:22:35", "68.180.228.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("9023", "3", "2015-02-23 13:22:47", "68.180.228.245", "40");
INSERT INTO `wp_gf_form_view` VALUES("9024", "3", "2015-02-23 14:59:32", "66.249.67.77", "10");
INSERT INTO `wp_gf_form_view` VALUES("9025", "3", "2015-02-23 15:25:41", "66.249.67.77", "140");
INSERT INTO `wp_gf_form_view` VALUES("9026", "3", "2015-02-23 16:07:16", "188.165.15.196", "198");
INSERT INTO `wp_gf_form_view` VALUES("9027", "3", "2015-02-23 17:24:08", "66.249.67.77", "30");
INSERT INTO `wp_gf_form_view` VALUES("9028", "3", "2015-02-23 18:04:36", "202.46.50.38", "162");
INSERT INTO `wp_gf_form_view` VALUES("9029", "6", "2015-02-23 18:08:16", "157.55.39.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("9030", "3", "2015-02-23 19:36:13", "66.249.67.77", "64");
INSERT INTO `wp_gf_form_view` VALUES("9031", "3", "2015-02-23 20:01:46", "66.249.67.77", "114");
INSERT INTO `wp_gf_form_view` VALUES("9032", "3", "2015-02-23 21:05:54", "66.249.67.85", "124");
INSERT INTO `wp_gf_form_view` VALUES("9033", "3", "2015-02-23 22:05:58", "66.249.67.85", "158");
INSERT INTO `wp_gf_form_view` VALUES("9034", "3", "2015-02-23 23:01:25", "66.249.67.85", "331");
INSERT INTO `wp_gf_form_view` VALUES("9035", "1", "2015-02-23 23:33:00", "199.21.99.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("9036", "3", "2015-02-24 00:00:53", "100.43.81.143", "426");
INSERT INTO `wp_gf_form_view` VALUES("9037", "1", "2015-02-24 00:50:50", "184.151.231.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("9038", "3", "2015-02-24 01:01:35", "66.249.67.85", "242");
INSERT INTO `wp_gf_form_view` VALUES("9039", "7", "2015-02-24 01:29:42", "100.43.91.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("9040", "3", "2015-02-24 02:01:26", "66.249.67.93", "154");
INSERT INTO `wp_gf_form_view` VALUES("9041", "3", "2015-02-24 03:04:26", "66.249.67.93", "576");
INSERT INTO `wp_gf_form_view` VALUES("9042", "2", "2015-02-24 03:13:09", "100.43.81.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("9043", "3", "2015-02-24 04:00:02", "68.180.228.245", "324");
INSERT INTO `wp_gf_form_view` VALUES("9044", "1", "2015-02-24 04:07:34", "24.68.96.10", "4");
INSERT INTO `wp_gf_form_view` VALUES("9045", "3", "2015-02-24 05:01:08", "66.249.67.85", "302");
INSERT INTO `wp_gf_form_view` VALUES("9046", "3", "2015-02-24 06:00:58", "66.249.67.77", "396");
INSERT INTO `wp_gf_form_view` VALUES("9047", "3", "2015-02-24 07:00:53", "66.249.67.93", "304");
INSERT INTO `wp_gf_form_view` VALUES("9048", "3", "2015-02-24 08:01:09", "66.249.67.77", "237");
INSERT INTO `wp_gf_form_view` VALUES("9049", "3", "2015-02-24 09:00:20", "66.249.67.93", "132");
INSERT INTO `wp_gf_form_view` VALUES("9050", "2", "2015-02-24 09:20:36", "104.143.16.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("9051", "3", "2015-02-24 10:06:34", "66.249.67.85", "131");
INSERT INTO `wp_gf_form_view` VALUES("9052", "1", "2015-02-24 10:12:35", "31.187.64.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("9053", "3", "2015-02-24 11:02:40", "66.249.67.93", "98");
INSERT INTO `wp_gf_form_view` VALUES("9054", "3", "2015-02-24 12:01:42", "66.249.67.85", "104");
INSERT INTO `wp_gf_form_view` VALUES("9055", "3", "2015-02-24 13:00:59", "66.249.67.93", "178");
INSERT INTO `wp_gf_form_view` VALUES("9056", "3", "2015-02-24 14:00:24", "66.249.67.93", "296");
INSERT INTO `wp_gf_form_view` VALUES("9057", "3", "2015-02-24 15:02:20", "217.69.133.229", "368");
INSERT INTO `wp_gf_form_view` VALUES("9058", "1", "2015-02-24 15:10:28", "77.255.197.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("9059", "3", "2015-02-24 16:00:08", "66.249.67.77", "254");
INSERT INTO `wp_gf_form_view` VALUES("9060", "3", "2015-02-24 17:05:33", "108.180.30.104", "81");
INSERT INTO `wp_gf_form_view` VALUES("9061", "3", "2015-02-24 18:00:46", "141.8.147.24", "104");
INSERT INTO `wp_gf_form_view` VALUES("9062", "3", "2015-02-24 19:02:16", "24.69.68.180", "184");
INSERT INTO `wp_gf_form_view` VALUES("9063", "3", "2015-02-24 20:00:30", "100.43.81.143", "154");
INSERT INTO `wp_gf_form_view` VALUES("9064", "1", "2015-02-24 20:41:46", "184.69.26.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("9065", "3", "2015-02-24 21:00:39", "66.249.67.93", "162");
INSERT INTO `wp_gf_form_view` VALUES("9066", "1", "2015-02-24 21:47:49", "66.249.67.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("9067", "3", "2015-02-24 22:01:30", "66.249.67.85", "338");
INSERT INTO `wp_gf_form_view` VALUES("9068", "1", "2015-02-24 22:14:17", "184.151.231.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("9069", "3", "2015-02-24 23:01:44", "66.249.67.93", "226");
INSERT INTO `wp_gf_form_view` VALUES("9070", "3", "2015-02-25 00:08:53", "100.43.81.143", "362");
INSERT INTO `wp_gf_form_view` VALUES("9071", "7", "2015-02-25 00:59:09", "82.49.173.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("9072", "1", "2015-02-25 00:59:25", "82.49.173.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("9073", "3", "2015-02-25 01:02:26", "100.43.81.143", "166");
INSERT INTO `wp_gf_form_view` VALUES("9074", "1", "2015-02-25 02:00:31", "31.187.64.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("9075", "3", "2015-02-25 02:00:31", "31.187.64.236", "1226");
INSERT INTO `wp_gf_form_view` VALUES("9076", "3", "2015-02-25 03:00:26", "66.249.67.85", "343");
INSERT INTO `wp_gf_form_view` VALUES("9077", "3", "2015-02-25 04:01:03", "66.249.67.93", "262");
INSERT INTO `wp_gf_form_view` VALUES("9078", "6", "2015-02-25 04:12:16", "100.43.85.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("9079", "3", "2015-02-25 05:07:36", "100.43.81.143", "84");
INSERT INTO `wp_gf_form_view` VALUES("9080", "3", "2015-02-25 06:01:06", "100.43.81.143", "234");
INSERT INTO `wp_gf_form_view` VALUES("9081", "3", "2015-02-25 07:00:39", "217.69.133.230", "142");
INSERT INTO `wp_gf_form_view` VALUES("9082", "3", "2015-02-25 08:06:55", "66.249.67.85", "172");
INSERT INTO `wp_gf_form_view` VALUES("9083", "3", "2015-02-25 09:02:52", "68.180.228.245", "170");
INSERT INTO `wp_gf_form_view` VALUES("9084", "1", "2015-02-25 10:00:35", "58.48.28.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("9085", "3", "2015-02-25 10:00:36", "58.48.28.136", "231");
INSERT INTO `wp_gf_form_view` VALUES("9086", "3", "2015-02-25 11:05:16", "202.46.49.197", "54");
INSERT INTO `wp_gf_form_view` VALUES("9087", "3", "2015-02-25 12:17:24", "100.43.91.18", "60");
INSERT INTO `wp_gf_form_view` VALUES("9088", "3", "2015-02-25 13:05:00", "66.249.67.77", "196");
INSERT INTO `wp_gf_form_view` VALUES("9089", "3", "2015-02-25 14:01:45", "66.249.67.93", "149");
INSERT INTO `wp_gf_form_view` VALUES("9090", "3", "2015-02-25 15:00:00", "217.69.133.228", "100");
INSERT INTO `wp_gf_form_view` VALUES("9091", "3", "2015-02-25 16:05:08", "100.43.91.18", "361");
INSERT INTO `wp_gf_form_view` VALUES("9092", "1", "2015-02-25 16:32:50", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("9093", "3", "2015-02-25 17:02:40", "100.43.81.143", "374");
INSERT INTO `wp_gf_form_view` VALUES("9094", "1", "2015-02-25 17:05:52", "199.21.99.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("9095", "2", "2015-02-25 17:14:12", "100.43.81.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("9096", "7", "2015-02-25 17:17:08", "100.43.91.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("9097", "3", "2015-02-25 18:04:01", "96.54.41.203", "72");
INSERT INTO `wp_gf_form_view` VALUES("9098", "3", "2015-02-25 19:08:32", "68.180.228.245", "902");
INSERT INTO `wp_gf_form_view` VALUES("9099", "3", "2015-02-25 20:13:41", "66.249.67.93", "196");
INSERT INTO `wp_gf_form_view` VALUES("9100", "3", "2015-02-25 21:06:22", "202.46.62.56", "60");
INSERT INTO `wp_gf_form_view` VALUES("9101", "3", "2015-02-25 22:14:13", "68.180.228.245", "72");
INSERT INTO `wp_gf_form_view` VALUES("9102", "1", "2015-02-25 22:19:37", "209.91.107.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("9103", "3", "2015-02-25 23:01:16", "68.180.228.245", "124");
INSERT INTO `wp_gf_form_view` VALUES("9104", "1", "2015-02-25 23:46:45", "209.91.107.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("9105", "3", "2015-02-26 00:02:09", "66.249.79.93", "40");
INSERT INTO `wp_gf_form_view` VALUES("9106", "3", "2015-02-26 01:06:34", "66.249.79.77", "276");
INSERT INTO `wp_gf_form_view` VALUES("9107", "1", "2015-02-26 01:38:23", "125.71.52.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("9108", "3", "2015-02-26 02:00:32", "100.43.85.24", "112");
INSERT INTO `wp_gf_form_view` VALUES("9109", "3", "2015-02-26 03:22:44", "66.249.79.77", "60");
INSERT INTO `wp_gf_form_view` VALUES("9110", "1", "2015-02-26 04:01:53", "96.50.106.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("9111", "3", "2015-02-26 04:01:53", "96.50.106.97", "160");
INSERT INTO `wp_gf_form_view` VALUES("9112", "3", "2015-02-26 05:06:53", "66.249.79.85", "150");
INSERT INTO `wp_gf_form_view` VALUES("9113", "3", "2015-02-26 06:15:06", "66.249.79.93", "50");
INSERT INTO `wp_gf_form_view` VALUES("9114", "3", "2015-02-26 07:02:14", "66.249.79.93", "138");
INSERT INTO `wp_gf_form_view` VALUES("9115", "2", "2015-02-26 07:51:43", "36.248.167.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("9116", "3", "2015-02-26 08:08:01", "66.249.79.85", "108");
INSERT INTO `wp_gf_form_view` VALUES("9117", "2", "2015-02-26 08:11:28", "36.248.167.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("9118", "3", "2015-02-26 09:16:26", "220.181.108.183", "120");
INSERT INTO `wp_gf_form_view` VALUES("9119", "3", "2015-02-26 10:04:51", "91.200.12.145", "178");
INSERT INTO `wp_gf_form_view` VALUES("9120", "3", "2015-02-26 11:03:09", "66.249.79.85", "80");
INSERT INTO `wp_gf_form_view` VALUES("9121", "3", "2015-02-26 12:03:49", "68.180.228.245", "446");
INSERT INTO `wp_gf_form_view` VALUES("9122", "3", "2015-02-26 13:07:02", "207.46.13.133", "3930");
INSERT INTO `wp_gf_form_view` VALUES("9123", "6", "2015-02-26 13:07:11", "207.46.13.133", "6");
INSERT INTO `wp_gf_form_view` VALUES("9124", "1", "2015-02-26 13:23:27", "65.111.164.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("9125", "3", "2015-02-26 14:05:40", "66.249.79.93", "120");
INSERT INTO `wp_gf_form_view` VALUES("9126", "3", "2015-02-26 15:03:10", "199.21.99.205", "146");
INSERT INTO `wp_gf_form_view` VALUES("9127", "3", "2015-02-26 16:03:08", "66.249.79.85", "100");
INSERT INTO `wp_gf_form_view` VALUES("9128", "3", "2015-02-26 17:05:49", "66.249.79.77", "70");
INSERT INTO `wp_gf_form_view` VALUES("9129", "3", "2015-02-26 18:01:20", "66.249.79.77", "80");
INSERT INTO `wp_gf_form_view` VALUES("9130", "3", "2015-02-26 19:16:42", "66.249.79.77", "54");
INSERT INTO `wp_gf_form_view` VALUES("9131", "3", "2015-02-26 20:02:41", "66.249.79.77", "108");
INSERT INTO `wp_gf_form_view` VALUES("9132", "3", "2015-02-26 21:01:49", "66.249.79.85", "60");
INSERT INTO `wp_gf_form_view` VALUES("9133", "3", "2015-02-26 22:05:45", "66.249.79.93", "94");
INSERT INTO `wp_gf_form_view` VALUES("9134", "3", "2015-02-26 23:00:51", "96.50.93.42", "140");
INSERT INTO `wp_gf_form_view` VALUES("9135", "1", "2015-02-26 23:14:00", "100.43.81.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("9136", "3", "2015-02-27 00:30:59", "68.180.228.245", "84");
INSERT INTO `wp_gf_form_view` VALUES("9137", "3", "2015-02-27 01:00:39", "66.249.79.85", "114");
INSERT INTO `wp_gf_form_view` VALUES("9138", "6", "2015-02-27 01:16:57", "199.21.99.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("9139", "3", "2015-02-27 02:08:21", "100.43.81.143", "30");
INSERT INTO `wp_gf_form_view` VALUES("9140", "3", "2015-02-27 03:03:27", "207.46.13.50", "160");
INSERT INTO `wp_gf_form_view` VALUES("9141", "3", "2015-02-27 04:06:07", "66.249.79.85", "170");
INSERT INTO `wp_gf_form_view` VALUES("9142", "2", "2015-02-27 04:24:10", "36.248.167.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("9143", "3", "2015-02-27 05:05:48", "66.249.79.77", "210");
INSERT INTO `wp_gf_form_view` VALUES("9144", "3", "2015-02-27 06:05:28", "207.46.13.50", "100");
INSERT INTO `wp_gf_form_view` VALUES("9145", "3", "2015-02-27 07:02:00", "66.249.79.85", "122");
INSERT INTO `wp_gf_form_view` VALUES("9146", "1", "2015-02-27 07:22:30", "192.99.141.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("9147", "3", "2015-02-27 08:02:13", "100.43.85.24", "80");
INSERT INTO `wp_gf_form_view` VALUES("9148", "3", "2015-02-27 09:07:39", "66.249.79.77", "70");
INSERT INTO `wp_gf_form_view` VALUES("9149", "3", "2015-02-27 10:05:17", "66.249.79.77", "60");
INSERT INTO `wp_gf_form_view` VALUES("9150", "1", "2015-02-27 10:39:28", "81.149.25.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("9151", "3", "2015-02-27 11:09:32", "66.249.79.85", "98");
INSERT INTO `wp_gf_form_view` VALUES("9152", "2", "2015-02-27 11:12:14", "36.248.167.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("9153", "7", "2015-02-27 11:58:57", "100.43.91.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("9154", "3", "2015-02-27 12:10:41", "66.249.79.93", "30");
INSERT INTO `wp_gf_form_view` VALUES("9155", "3", "2015-02-27 13:03:26", "66.249.79.77", "64");
INSERT INTO `wp_gf_form_view` VALUES("9156", "3", "2015-02-27 14:26:43", "66.249.79.77", "40");
INSERT INTO `wp_gf_form_view` VALUES("9157", "6", "2015-02-27 14:42:07", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("9158", "3", "2015-02-27 15:00:00", "66.249.79.93", "188");
INSERT INTO `wp_gf_form_view` VALUES("9159", "2", "2015-02-27 15:51:43", "66.249.79.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("9160", "3", "2015-02-27 16:06:31", "66.249.79.85", "100");
INSERT INTO `wp_gf_form_view` VALUES("9161", "3", "2015-02-27 17:01:29", "66.249.79.141", "214");
INSERT INTO `wp_gf_form_view` VALUES("9162", "6", "2015-02-27 17:22:33", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("9163", "2", "2015-02-27 17:26:18", "36.248.167.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("9164", "1", "2015-02-27 18:05:31", "202.46.48.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("9165", "3", "2015-02-27 18:05:31", "202.46.48.48", "122");
INSERT INTO `wp_gf_form_view` VALUES("9166", "3", "2015-02-27 19:07:39", "66.249.79.77", "50");
INSERT INTO `wp_gf_form_view` VALUES("9167", "1", "2015-02-27 20:06:32", "62.210.250.221", "2");
INSERT INTO `wp_gf_form_view` VALUES("9168", "3", "2015-02-27 20:06:33", "62.210.250.221", "172");
INSERT INTO `wp_gf_form_view` VALUES("9169", "3", "2015-02-27 21:09:37", "66.249.79.85", "64");
INSERT INTO `wp_gf_form_view` VALUES("9170", "3", "2015-02-27 22:17:40", "66.249.79.85", "32");
INSERT INTO `wp_gf_form_view` VALUES("9171", "3", "2015-02-27 23:06:56", "66.249.79.85", "65");
INSERT INTO `wp_gf_form_view` VALUES("9172", "3", "2015-02-28 00:03:20", "68.180.228.245", "420");
INSERT INTO `wp_gf_form_view` VALUES("9173", "3", "2015-02-28 01:04:21", "220.181.108.76", "20");
INSERT INTO `wp_gf_form_view` VALUES("9174", "3", "2015-02-28 02:00:30", "207.46.13.50", "102");
INSERT INTO `wp_gf_form_view` VALUES("9175", "3", "2015-02-28 03:09:51", "157.55.39.142", "2610");
INSERT INTO `wp_gf_form_view` VALUES("9176", "3", "2015-02-28 04:00:40", "157.55.39.15", "3361");
INSERT INTO `wp_gf_form_view` VALUES("9177", "3", "2015-02-28 05:00:08", "207.46.13.50", "3777");
INSERT INTO `wp_gf_form_view` VALUES("9178", "6", "2015-02-28 05:47:58", "207.46.13.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("9179", "3", "2015-02-28 06:00:06", "207.46.13.50", "3602");
INSERT INTO `wp_gf_form_view` VALUES("9180", "6", "2015-02-28 06:08:06", "157.55.39.14", "8");
INSERT INTO `wp_gf_form_view` VALUES("9181", "3", "2015-02-28 07:00:10", "157.55.39.183", "3783");
INSERT INTO `wp_gf_form_view` VALUES("9182", "3", "2015-02-28 08:00:00", "157.55.39.183", "4102");
INSERT INTO `wp_gf_form_view` VALUES("9183", "6", "2015-02-28 08:46:38", "207.46.13.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("9184", "3", "2015-02-28 09:00:16", "157.55.39.183", "4012");
INSERT INTO `wp_gf_form_view` VALUES("9185", "7", "2015-02-28 09:08:08", "188.165.15.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("9186", "3", "2015-02-28 10:00:00", "157.55.39.183", "3532");
INSERT INTO `wp_gf_form_view` VALUES("9187", "6", "2015-02-28 10:06:09", "157.55.39.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("9188", "3", "2015-02-28 11:00:00", "157.55.39.183", "3073");
INSERT INTO `wp_gf_form_view` VALUES("9189", "3", "2015-02-28 12:00:06", "157.55.39.183", "3968");
INSERT INTO `wp_gf_form_view` VALUES("9190", "6", "2015-02-28 12:05:04", "157.55.39.143", "6");
INSERT INTO `wp_gf_form_view` VALUES("9191", "3", "2015-02-28 13:00:17", "157.55.39.183", "3639");
INSERT INTO `wp_gf_form_view` VALUES("9192", "6", "2015-02-28 13:38:23", "157.55.39.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("9193", "3", "2015-02-28 14:00:21", "157.55.39.183", "3605");
INSERT INTO `wp_gf_form_view` VALUES("9194", "6", "2015-02-28 14:33:44", "157.55.39.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("9195", "3", "2015-02-28 15:00:00", "68.180.228.245", "3426");
INSERT INTO `wp_gf_form_view` VALUES("9196", "6", "2015-02-28 15:16:54", "157.55.39.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("9197", "3", "2015-02-28 16:00:02", "157.55.39.14", "3435");
INSERT INTO `wp_gf_form_view` VALUES("9198", "3", "2015-02-28 17:00:06", "207.46.13.50", "3789");
INSERT INTO `wp_gf_form_view` VALUES("9199", "3", "2015-02-28 18:00:00", "157.55.39.183", "3065");
INSERT INTO `wp_gf_form_view` VALUES("9200", "6", "2015-02-28 18:25:56", "207.46.13.50", "6");
INSERT INTO `wp_gf_form_view` VALUES("9201", "3", "2015-02-28 19:00:25", "207.46.13.50", "2763");
INSERT INTO `wp_gf_form_view` VALUES("9202", "6", "2015-02-28 19:38:10", "157.55.39.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("9203", "3", "2015-02-28 20:00:52", "157.55.39.14", "2747");
INSERT INTO `wp_gf_form_view` VALUES("9204", "6", "2015-02-28 20:30:42", "207.46.13.50", "6");
INSERT INTO `wp_gf_form_view` VALUES("9205", "3", "2015-02-28 21:00:16", "157.55.39.14", "2665");
INSERT INTO `wp_gf_form_view` VALUES("9206", "3", "2015-02-28 22:00:36", "157.55.39.183", "2492");
INSERT INTO `wp_gf_form_view` VALUES("9207", "6", "2015-02-28 22:06:51", "157.55.39.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("9208", "7", "2015-02-28 22:13:59", "207.46.13.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("9209", "3", "2015-02-28 23:00:09", "157.55.39.14", "2461");
INSERT INTO `wp_gf_form_view` VALUES("9210", "6", "2015-02-28 23:35:30", "207.46.13.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("9211", "3", "2015-03-01 00:00:04", "207.46.13.50", "2654");
INSERT INTO `wp_gf_form_view` VALUES("9212", "6", "2015-03-01 00:06:41", "157.55.39.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("9213", "2", "2015-03-01 00:30:29", "188.165.15.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("9214", "3", "2015-03-01 01:00:14", "157.55.39.14", "1840");
INSERT INTO `wp_gf_form_view` VALUES("9215", "6", "2015-03-01 01:55:40", "157.55.39.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("9216", "3", "2015-03-01 02:00:10", "157.55.39.183", "2014");
INSERT INTO `wp_gf_form_view` VALUES("9217", "3", "2015-03-01 03:00:06", "157.55.39.14", "2000");
INSERT INTO `wp_gf_form_view` VALUES("9218", "6", "2015-03-01 03:25:13", "157.55.39.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("9219", "3", "2015-03-01 04:00:06", "157.55.39.14", "2019");
INSERT INTO `wp_gf_form_view` VALUES("9220", "6", "2015-03-01 04:18:59", "207.46.13.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("9221", "3", "2015-03-01 05:00:28", "157.55.39.14", "2122");
INSERT INTO `wp_gf_form_view` VALUES("9222", "6", "2015-03-01 05:41:34", "157.55.39.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("9223", "3", "2015-03-01 06:00:12", "157.55.39.14", "2259");
INSERT INTO `wp_gf_form_view` VALUES("9224", "6", "2015-03-01 06:15:38", "157.55.39.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("9225", "3", "2015-03-01 07:00:20", "207.46.13.50", "2131");
INSERT INTO `wp_gf_form_view` VALUES("9226", "6", "2015-03-01 07:13:27", "157.55.39.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("9227", "3", "2015-03-01 08:00:10", "157.55.39.183", "1810");
INSERT INTO `wp_gf_form_view` VALUES("9228", "6", "2015-03-01 08:58:25", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("9229", "3", "2015-03-01 09:00:20", "207.46.13.50", "2179");
INSERT INTO `wp_gf_form_view` VALUES("9230", "6", "2015-03-01 09:31:06", "207.46.13.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("9231", "3", "2015-03-01 10:00:01", "157.55.39.183", "2206");
INSERT INTO `wp_gf_form_view` VALUES("9232", "3", "2015-03-01 11:00:16", "157.55.39.183", "2024");
INSERT INTO `wp_gf_form_view` VALUES("9233", "6", "2015-03-01 11:07:23", "157.55.39.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("9234", "6", "2015-03-01 12:00:21", "207.46.13.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("9235", "3", "2015-03-01 12:00:22", "207.46.13.50", "1935");
INSERT INTO `wp_gf_form_view` VALUES("9236", "3", "2015-03-01 13:00:09", "207.46.13.50", "2220");
INSERT INTO `wp_gf_form_view` VALUES("9237", "6", "2015-03-01 13:03:54", "157.55.39.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("9238", "7", "2015-03-01 13:22:40", "66.249.79.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("9239", "3", "2015-03-01 14:00:07", "157.55.39.183", "2125");
INSERT INTO `wp_gf_form_view` VALUES("9240", "6", "2015-03-01 14:21:49", "157.55.39.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("9241", "3", "2015-03-01 15:02:01", "157.55.39.183", "2254");
INSERT INTO `wp_gf_form_view` VALUES("9242", "6", "2015-03-01 15:46:48", "157.55.39.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("9243", "3", "2015-03-01 16:01:12", "207.46.13.50", "2059");
INSERT INTO `wp_gf_form_view` VALUES("9244", "6", "2015-03-01 16:19:52", "207.46.13.50", "8");
INSERT INTO `wp_gf_form_view` VALUES("9245", "3", "2015-03-01 17:00:42", "207.46.13.50", "2156");
INSERT INTO `wp_gf_form_view` VALUES("9246", "6", "2015-03-01 17:25:23", "207.46.13.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("9247", "3", "2015-03-01 18:00:13", "157.55.39.183", "2352");
INSERT INTO `wp_gf_form_view` VALUES("9248", "7", "2015-03-01 18:02:54", "70.121.184.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("9249", "1", "2015-03-01 18:03:23", "70.121.184.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("9250", "6", "2015-03-01 18:29:04", "207.46.13.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("9251", "3", "2015-03-01 19:00:43", "157.55.39.183", "2061");
INSERT INTO `wp_gf_form_view` VALUES("9252", "6", "2015-03-01 19:15:37", "207.46.13.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("9253", "1", "2015-03-01 19:29:28", "62.210.250.221", "2");
INSERT INTO `wp_gf_form_view` VALUES("9254", "3", "2015-03-01 20:00:08", "157.55.39.183", "2309");
INSERT INTO `wp_gf_form_view` VALUES("9255", "6", "2015-03-01 20:02:46", "157.55.39.14", "8");
INSERT INTO `wp_gf_form_view` VALUES("9256", "3", "2015-03-01 21:00:06", "157.55.39.183", "2752");
INSERT INTO `wp_gf_form_view` VALUES("9257", "6", "2015-03-01 21:00:48", "207.46.13.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("9258", "7", "2015-03-01 21:15:48", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("9259", "2", "2015-03-01 21:16:48", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("9260", "3", "2015-03-01 22:00:13", "157.55.39.14", "2250");
INSERT INTO `wp_gf_form_view` VALUES("9261", "3", "2015-03-01 23:00:48", "157.55.39.14", "2028");
INSERT INTO `wp_gf_form_view` VALUES("9262", "6", "2015-03-01 23:17:29", "207.46.13.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("9263", "3", "2015-03-02 00:00:03", "157.55.39.14", "1513");
INSERT INTO `wp_gf_form_view` VALUES("9264", "6", "2015-03-02 00:16:55", "157.55.39.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("9265", "3", "2015-03-02 01:00:45", "157.55.39.183", "1538");
INSERT INTO `wp_gf_form_view` VALUES("9266", "3", "2015-03-02 02:00:06", "157.55.39.183", "1473");
INSERT INTO `wp_gf_form_view` VALUES("9267", "3", "2015-03-02 03:00:14", "157.55.39.183", "1269");
INSERT INTO `wp_gf_form_view` VALUES("9268", "6", "2015-03-02 03:12:48", "157.55.39.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("9269", "3", "2015-03-02 04:00:00", "157.55.39.183", "578");
INSERT INTO `wp_gf_form_view` VALUES("9270", "3", "2015-03-02 05:05:59", "157.55.39.183", "138");
INSERT INTO `wp_gf_form_view` VALUES("9271", "3", "2015-03-02 06:05:24", "157.55.39.14", "315");
INSERT INTO `wp_gf_form_view` VALUES("9272", "3", "2015-03-02 07:00:34", "68.180.228.245", "78");
INSERT INTO `wp_gf_form_view` VALUES("9273", "3", "2015-03-02 08:02:40", "66.249.79.93", "152");
INSERT INTO `wp_gf_form_view` VALUES("9274", "6", "2015-03-02 08:39:46", "100.43.85.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("9275", "3", "2015-03-02 09:06:28", "66.249.79.77", "16");
INSERT INTO `wp_gf_form_view` VALUES("9276", "3", "2015-03-02 10:35:05", "66.249.79.77", "16");
INSERT INTO `wp_gf_form_view` VALUES("9277", "3", "2015-03-02 11:00:17", "188.165.15.202", "108");
INSERT INTO `wp_gf_form_view` VALUES("9278", "3", "2015-03-02 12:06:33", "66.249.79.85", "90");
INSERT INTO `wp_gf_form_view` VALUES("9279", "3", "2015-03-02 13:11:00", "66.249.79.85", "32");
INSERT INTO `wp_gf_form_view` VALUES("9280", "2", "2015-03-02 14:02:05", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("9281", "3", "2015-03-02 14:02:05", "68.180.228.245", "76");
INSERT INTO `wp_gf_form_view` VALUES("9282", "3", "2015-03-02 15:07:37", "66.249.79.77", "61");
INSERT INTO `wp_gf_form_view` VALUES("9283", "3", "2015-03-02 16:19:21", "208.87.234.180", "48");
INSERT INTO `wp_gf_form_view` VALUES("9284", "3", "2015-03-02 17:13:26", "68.180.228.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("9285", "3", "2015-03-02 18:12:54", "188.165.15.162", "217");
INSERT INTO `wp_gf_form_view` VALUES("9286", "1", "2015-03-02 18:36:55", "96.50.84.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("9287", "3", "2015-03-02 19:20:02", "66.249.79.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("9288", "3", "2015-03-02 20:07:04", "100.43.85.24", "48");
INSERT INTO `wp_gf_form_view` VALUES("9289", "3", "2015-03-02 21:26:45", "66.249.79.77", "64");
INSERT INTO `wp_gf_form_view` VALUES("9290", "3", "2015-03-02 22:07:33", "68.180.228.245", "108");
INSERT INTO `wp_gf_form_view` VALUES("9291", "1", "2015-03-02 22:21:23", "62.210.250.221", "2");
INSERT INTO `wp_gf_form_view` VALUES("9292", "3", "2015-03-02 23:03:16", "202.46.62.147", "62");
INSERT INTO `wp_gf_form_view` VALUES("9293", "3", "2015-03-03 00:08:45", "68.180.228.245", "46");
INSERT INTO `wp_gf_form_view` VALUES("9294", "3", "2015-03-03 01:00:00", "68.180.228.245", "282");
INSERT INTO `wp_gf_form_view` VALUES("9295", "7", "2015-03-03 01:23:15", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("9296", "3", "2015-03-03 02:12:40", "66.249.79.85", "26");
INSERT INTO `wp_gf_form_view` VALUES("9297", "3", "2015-03-03 03:02:36", "66.249.79.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("9298", "3", "2015-03-03 04:06:46", "66.249.79.77", "380");
INSERT INTO `wp_gf_form_view` VALUES("9299", "6", "2015-03-03 04:39:47", "207.46.13.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("9300", "2", "2015-03-03 04:39:54", "207.46.13.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("9301", "3", "2015-03-03 05:00:19", "66.249.79.93", "162");
INSERT INTO `wp_gf_form_view` VALUES("9302", "6", "2015-03-03 05:07:08", "207.46.13.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("9303", "3", "2015-03-03 06:50:55", "66.249.79.77", "8");
INSERT INTO `wp_gf_form_view` VALUES("9304", "3", "2015-03-03 07:23:16", "68.180.228.245", "44");
INSERT INTO `wp_gf_form_view` VALUES("9305", "3", "2015-03-03 08:08:04", "66.249.79.85", "22");
INSERT INTO `wp_gf_form_view` VALUES("9306", "3", "2015-03-03 09:30:07", "66.249.79.77", "8");
INSERT INTO `wp_gf_form_view` VALUES("9307", "3", "2015-03-03 10:04:37", "66.249.79.85", "36");
INSERT INTO `wp_gf_form_view` VALUES("9308", "3", "2015-03-03 11:08:09", "202.46.49.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("9309", "3", "2015-03-03 12:05:02", "66.249.79.93", "594");
INSERT INTO `wp_gf_form_view` VALUES("9310", "3", "2015-03-03 13:03:54", "66.249.79.85", "34");
INSERT INTO `wp_gf_form_view` VALUES("9311", "3", "2015-03-03 14:11:55", "66.249.79.93", "50");
INSERT INTO `wp_gf_form_view` VALUES("9312", "3", "2015-03-03 15:07:37", "66.249.79.85", "65");
INSERT INTO `wp_gf_form_view` VALUES("9313", "3", "2015-03-03 16:01:38", "144.76.155.8", "121");
INSERT INTO `wp_gf_form_view` VALUES("9314", "3", "2015-03-03 17:00:00", "66.249.79.93", "17");
INSERT INTO `wp_gf_form_view` VALUES("9315", "3", "2015-03-03 18:02:58", "66.249.79.85", "80");
INSERT INTO `wp_gf_form_view` VALUES("9316", "3", "2015-03-03 19:02:17", "66.249.79.77", "64");
INSERT INTO `wp_gf_form_view` VALUES("9317", "3", "2015-03-03 20:13:03", "24.69.69.153", "194");
INSERT INTO `wp_gf_form_view` VALUES("9318", "3", "2015-03-03 21:17:38", "66.249.79.93", "64");
INSERT INTO `wp_gf_form_view` VALUES("9319", "3", "2015-03-03 22:02:44", "91.200.12.49", "250");
INSERT INTO `wp_gf_form_view` VALUES("9320", "3", "2015-03-03 23:01:45", "66.249.79.85", "32");
INSERT INTO `wp_gf_form_view` VALUES("9321", "3", "2015-03-04 00:18:03", "157.55.39.121", "72");
INSERT INTO `wp_gf_form_view` VALUES("9322", "3", "2015-03-04 01:05:57", "66.249.79.77", "48");
INSERT INTO `wp_gf_form_view` VALUES("9323", "3", "2015-03-04 02:08:34", "66.249.79.93", "106");
INSERT INTO `wp_gf_form_view` VALUES("9324", "3", "2015-03-04 03:01:58", "66.249.79.93", "48");
INSERT INTO `wp_gf_form_view` VALUES("9325", "3", "2015-03-04 04:00:35", "5.45.80.5", "88");
INSERT INTO `wp_gf_form_view` VALUES("9326", "3", "2015-03-04 05:07:19", "24.108.90.101", "16");
INSERT INTO `wp_gf_form_view` VALUES("9327", "3", "2015-03-04 06:11:31", "66.249.79.85", "62");
INSERT INTO `wp_gf_form_view` VALUES("9328", "3", "2015-03-04 07:04:30", "157.55.39.121", "76");
INSERT INTO `wp_gf_form_view` VALUES("9329", "3", "2015-03-04 08:02:39", "66.249.79.77", "48");
INSERT INTO `wp_gf_form_view` VALUES("9330", "3", "2015-03-04 09:22:42", "66.249.79.93", "50");
INSERT INTO `wp_gf_form_view` VALUES("9331", "3", "2015-03-04 10:01:34", "68.180.228.245", "190");
INSERT INTO `wp_gf_form_view` VALUES("9332", "7", "2015-03-04 10:59:54", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("9333", "3", "2015-03-04 11:00:00", "84.85.74.170", "460");
INSERT INTO `wp_gf_form_view` VALUES("9334", "1", "2015-03-04 11:00:08", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("9335", "6", "2015-03-04 11:36:34", "157.55.39.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("9336", "3", "2015-03-04 12:10:01", "207.46.13.50", "198");
INSERT INTO `wp_gf_form_view` VALUES("9337", "6", "2015-03-04 12:11:48", "207.46.13.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("9338", "2", "2015-03-04 12:11:54", "207.46.13.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("9339", "3", "2015-03-04 13:22:39", "66.249.79.93", "16");
INSERT INTO `wp_gf_form_view` VALUES("9340", "3", "2015-03-04 14:04:04", "66.249.79.85", "540");
INSERT INTO `wp_gf_form_view` VALUES("9341", "6", "2015-03-04 14:56:20", "68.180.228.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("9342", "3", "2015-03-04 15:00:00", "68.180.228.245", "148");
INSERT INTO `wp_gf_form_view` VALUES("9343", "3", "2015-03-04 16:02:29", "66.249.79.93", "104");
INSERT INTO `wp_gf_form_view` VALUES("9344", "3", "2015-03-04 17:29:45", "184.69.125.34", "50");
INSERT INTO `wp_gf_form_view` VALUES("9345", "3", "2015-03-04 18:02:42", "184.66.155.53", "204");
INSERT INTO `wp_gf_form_view` VALUES("9346", "1", "2015-03-04 18:23:50", "125.71.53.39", "4");
INSERT INTO `wp_gf_form_view` VALUES("9347", "3", "2015-03-04 19:13:12", "184.69.125.34", "84");
INSERT INTO `wp_gf_form_view` VALUES("9348", "3", "2015-03-04 20:00:31", "66.249.79.77", "80");
INSERT INTO `wp_gf_form_view` VALUES("9349", "3", "2015-03-04 21:07:37", "66.249.79.77", "81");
INSERT INTO `wp_gf_form_view` VALUES("9350", "6", "2015-03-04 21:12:56", "174.48.23.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("9351", "3", "2015-03-04 22:00:40", "207.81.254.204", "164");
INSERT INTO `wp_gf_form_view` VALUES("9352", "7", "2015-03-04 22:50:02", "99.242.131.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("9353", "3", "2015-03-04 23:00:27", "96.50.93.42", "128");
INSERT INTO `wp_gf_form_view` VALUES("9354", "3", "2015-03-05 00:00:19", "66.249.79.77", "66");
INSERT INTO `wp_gf_form_view` VALUES("9355", "3", "2015-03-05 01:05:33", "68.180.228.245", "144");
INSERT INTO `wp_gf_form_view` VALUES("9356", "3", "2015-03-05 02:00:43", "68.180.228.245", "188");
INSERT INTO `wp_gf_form_view` VALUES("9357", "3", "2015-03-05 03:07:37", "66.249.79.77", "56");
INSERT INTO `wp_gf_form_view` VALUES("9358", "3", "2015-03-05 04:00:27", "66.249.79.85", "112");
INSERT INTO `wp_gf_form_view` VALUES("9359", "6", "2015-03-05 04:54:28", "144.76.185.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("9360", "3", "2015-03-05 05:05:49", "66.249.79.93", "204");
INSERT INTO `wp_gf_form_view` VALUES("9361", "3", "2015-03-05 06:01:27", "66.249.79.85", "200");
INSERT INTO `wp_gf_form_view` VALUES("9362", "3", "2015-03-05 07:00:20", "66.249.79.85", "270");
INSERT INTO `wp_gf_form_view` VALUES("9363", "3", "2015-03-05 08:01:14", "66.249.79.93", "200");
INSERT INTO `wp_gf_form_view` VALUES("9364", "3", "2015-03-05 09:32:36", "66.249.79.93", "32");
INSERT INTO `wp_gf_form_view` VALUES("9365", "3", "2015-03-05 10:00:36", "66.249.79.85", "104");
INSERT INTO `wp_gf_form_view` VALUES("9366", "3", "2015-03-05 11:13:13", "66.249.79.85", "133");
INSERT INTO `wp_gf_form_view` VALUES("9367", "3", "2015-03-05 12:00:28", "66.249.79.77", "300");
INSERT INTO `wp_gf_form_view` VALUES("9368", "3", "2015-03-05 13:00:48", "66.249.79.93", "410");
INSERT INTO `wp_gf_form_view` VALUES("9369", "3", "2015-03-05 14:00:13", "66.249.79.77", "370");
INSERT INTO `wp_gf_form_view` VALUES("9370", "6", "2015-03-05 14:46:35", "66.249.79.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("9371", "3", "2015-03-05 15:00:27", "66.249.79.85", "136");
INSERT INTO `wp_gf_form_view` VALUES("9372", "6", "2015-03-05 15:30:16", "162.210.196.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("9373", "1", "2015-03-05 15:59:51", "125.71.53.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("9374", "3", "2015-03-05 16:25:47", "66.249.79.85", "56");
INSERT INTO `wp_gf_form_view` VALUES("9375", "3", "2015-03-05 17:04:24", "66.249.79.77", "184");
INSERT INTO `wp_gf_form_view` VALUES("9376", "3", "2015-03-05 18:00:50", "66.249.79.85", "274");
INSERT INTO `wp_gf_form_view` VALUES("9377", "6", "2015-03-05 18:19:54", "66.249.79.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("9378", "3", "2015-03-05 19:01:28", "66.249.79.93", "218");
INSERT INTO `wp_gf_form_view` VALUES("9379", "6", "2015-03-05 19:06:33", "157.55.39.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("9380", "3", "2015-03-05 20:06:16", "66.249.79.93", "258");
INSERT INTO `wp_gf_form_view` VALUES("9381", "1", "2015-03-05 20:51:00", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("9382", "3", "2015-03-05 21:01:13", "66.249.79.93", "301");
INSERT INTO `wp_gf_form_view` VALUES("9383", "7", "2015-03-05 21:33:40", "184.69.117.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("9384", "3", "2015-03-05 22:00:57", "66.249.79.93", "132");
INSERT INTO `wp_gf_form_view` VALUES("9385", "7", "2015-03-05 22:24:08", "66.249.79.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("9386", "3", "2015-03-05 23:01:43", "66.249.79.77", "110");
INSERT INTO `wp_gf_form_view` VALUES("9387", "3", "2015-03-06 00:06:29", "66.249.79.93", "258");
INSERT INTO `wp_gf_form_view` VALUES("9388", "3", "2015-03-06 01:00:59", "66.249.79.93", "350");
INSERT INTO `wp_gf_form_view` VALUES("9389", "7", "2015-03-06 01:23:57", "202.46.62.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("9390", "6", "2015-03-06 01:36:15", "66.249.79.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("9391", "3", "2015-03-06 02:01:21", "66.249.79.77", "488");
INSERT INTO `wp_gf_form_view` VALUES("9392", "1", "2015-03-06 02:22:56", "184.66.38.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("9393", "3", "2015-03-06 03:00:20", "66.249.79.93", "334");
INSERT INTO `wp_gf_form_view` VALUES("9394", "3", "2015-03-06 04:00:12", "66.249.79.93", "152");
INSERT INTO `wp_gf_form_view` VALUES("9395", "1", "2015-03-06 04:30:56", "184.66.68.233", "4");
INSERT INTO `wp_gf_form_view` VALUES("9396", "3", "2015-03-06 05:03:52", "66.249.79.93", "120");
INSERT INTO `wp_gf_form_view` VALUES("9397", "2", "2015-03-06 05:24:56", "36.248.167.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("9398", "3", "2015-03-06 06:01:10", "66.249.79.85", "210");
INSERT INTO `wp_gf_form_view` VALUES("9399", "3", "2015-03-06 07:00:40", "66.249.79.85", "278");
INSERT INTO `wp_gf_form_view` VALUES("9400", "3", "2015-03-06 08:00:03", "66.249.79.77", "404");
INSERT INTO `wp_gf_form_view` VALUES("9401", "2", "2015-03-06 08:03:23", "36.248.167.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("9402", "3", "2015-03-06 09:00:51", "66.249.79.77", "1149");
INSERT INTO `wp_gf_form_view` VALUES("9403", "7", "2015-03-06 09:17:12", "54.174.55.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("9404", "1", "2015-03-06 09:17:33", "54.174.58.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("9405", "2", "2015-03-06 09:17:44", "54.174.57.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("9406", "3", "2015-03-06 10:00:27", "66.249.79.77", "250");
INSERT INTO `wp_gf_form_view` VALUES("9407", "3", "2015-03-06 11:05:41", "63.141.239.186", "2326");
INSERT INTO `wp_gf_form_view` VALUES("9408", "7", "2015-03-06 11:57:06", "207.46.13.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("9409", "6", "2015-03-06 11:59:08", "207.46.13.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("9410", "3", "2015-03-06 12:00:00", "157.55.39.121", "1040");
INSERT INTO `wp_gf_form_view` VALUES("9411", "6", "2015-03-06 12:00:26", "157.55.39.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("9412", "3", "2015-03-06 13:01:36", "66.249.79.93", "188");
INSERT INTO `wp_gf_form_view` VALUES("9413", "1", "2015-03-06 13:07:16", "198.27.66.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("9414", "3", "2015-03-06 14:00:31", "66.249.79.93", "314");
INSERT INTO `wp_gf_form_view` VALUES("9415", "1", "2015-03-06 14:18:47", "96.50.72.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("9416", "6", "2015-03-06 14:34:23", "66.249.79.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("9417", "3", "2015-03-06 15:01:21", "66.249.79.85", "298");
INSERT INTO `wp_gf_form_view` VALUES("9418", "3", "2015-03-06 16:04:33", "66.249.79.93", "250");
INSERT INTO `wp_gf_form_view` VALUES("9419", "3", "2015-03-06 17:00:02", "66.249.79.85", "256");
INSERT INTO `wp_gf_form_view` VALUES("9420", "3", "2015-03-06 18:01:10", "66.249.79.85", "64");
INSERT INTO `wp_gf_form_view` VALUES("9421", "7", "2015-03-06 18:06:29", "220.181.108.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("9422", "3", "2015-03-06 19:01:02", "184.66.97.35", "64");
INSERT INTO `wp_gf_form_view` VALUES("9423", "3", "2015-03-06 20:00:46", "220.181.108.120", "138");
INSERT INTO `wp_gf_form_view` VALUES("9424", "3", "2015-03-06 21:03:02", "184.151.231.120", "96");
INSERT INTO `wp_gf_form_view` VALUES("9425", "3", "2015-03-06 22:00:17", "66.249.79.85", "200");
INSERT INTO `wp_gf_form_view` VALUES("9426", "3", "2015-03-06 23:08:53", "66.249.79.77", "160");
INSERT INTO `wp_gf_form_view` VALUES("9427", "3", "2015-03-07 00:01:37", "207.46.13.101", "84");
INSERT INTO `wp_gf_form_view` VALUES("9428", "3", "2015-03-07 01:02:34", "66.249.79.85", "104");
INSERT INTO `wp_gf_form_view` VALUES("9429", "3", "2015-03-07 02:12:37", "66.249.79.77", "48");
INSERT INTO `wp_gf_form_view` VALUES("9430", "3", "2015-03-07 03:05:50", "66.249.79.85", "327");
INSERT INTO `wp_gf_form_view` VALUES("9431", "2", "2015-03-07 03:37:59", "172.245.66.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("9432", "7", "2015-03-07 03:42:26", "185.13.202.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("9433", "1", "2015-03-07 03:42:48", "185.13.202.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("9434", "3", "2015-03-07 04:00:51", "66.249.79.85", "168");
INSERT INTO `wp_gf_form_view` VALUES("9435", "3", "2015-03-07 05:02:26", "75.154.237.159", "184");
INSERT INTO `wp_gf_form_view` VALUES("9436", "3", "2015-03-07 06:00:05", "68.180.228.245", "146");
INSERT INTO `wp_gf_form_view` VALUES("9437", "3", "2015-03-07 07:01:07", "66.249.79.77", "322");
INSERT INTO `wp_gf_form_view` VALUES("9438", "3", "2015-03-07 08:00:39", "66.249.79.85", "400");
INSERT INTO `wp_gf_form_view` VALUES("9439", "3", "2015-03-07 09:00:50", "66.249.79.85", "334");
INSERT INTO `wp_gf_form_view` VALUES("9440", "6", "2015-03-07 09:26:41", "66.249.79.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("9441", "3", "2015-03-07 10:02:45", "66.249.79.93", "170");
INSERT INTO `wp_gf_form_view` VALUES("9442", "1", "2015-03-07 10:37:54", "66.249.79.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("9443", "3", "2015-03-07 11:00:39", "66.249.79.93", "172");
INSERT INTO `wp_gf_form_view` VALUES("9444", "3", "2015-03-07 12:00:26", "66.249.79.77", "128");
INSERT INTO `wp_gf_form_view` VALUES("9445", "3", "2015-03-07 13:03:37", "207.46.13.51", "92");
INSERT INTO `wp_gf_form_view` VALUES("9446", "3", "2015-03-07 14:00:52", "100.43.85.24", "228");
INSERT INTO `wp_gf_form_view` VALUES("9447", "2", "2015-03-07 14:01:48", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("9448", "3", "2015-03-07 15:00:54", "66.249.79.77", "286");
INSERT INTO `wp_gf_form_view` VALUES("9449", "3", "2015-03-07 16:00:12", "66.249.79.77", "278");
INSERT INTO `wp_gf_form_view` VALUES("9450", "1", "2015-03-07 16:44:16", "125.71.53.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("9451", "3", "2015-03-07 17:00:11", "66.249.79.93", "174");
INSERT INTO `wp_gf_form_view` VALUES("9452", "2", "2015-03-07 17:01:28", "36.248.167.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("9453", "3", "2015-03-07 18:01:19", "66.249.79.85", "142");
INSERT INTO `wp_gf_form_view` VALUES("9454", "6", "2015-03-07 18:30:59", "100.43.81.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("9455", "3", "2015-03-07 19:05:38", "66.249.79.85", "164");
INSERT INTO `wp_gf_form_view` VALUES("9456", "3", "2015-03-07 20:00:52", "66.249.79.77", "1650");
INSERT INTO `wp_gf_form_view` VALUES("9457", "2", "2015-03-07 20:22:34", "36.248.167.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("9458", "6", "2015-03-07 20:24:33", "66.249.79.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("9459", "3", "2015-03-07 21:00:00", "207.46.13.6", "6734");
INSERT INTO `wp_gf_form_view` VALUES("9460", "3", "2015-03-07 22:00:17", "207.46.13.6", "7314");
INSERT INTO `wp_gf_form_view` VALUES("9461", "6", "2015-03-07 22:27:03", "66.249.79.85", "4");
INSERT INTO `wp_gf_form_view` VALUES("9462", "3", "2015-03-07 23:00:00", "207.46.13.6", "7133");
INSERT INTO `wp_gf_form_view` VALUES("9463", "3", "2015-03-08 00:00:00", "207.46.13.51", "7212");
INSERT INTO `wp_gf_form_view` VALUES("9464", "3", "2015-03-08 01:00:00", "157.55.39.12", "7242");
INSERT INTO `wp_gf_form_view` VALUES("9465", "3", "2015-03-08 02:00:00", "207.46.13.6", "7078");
INSERT INTO `wp_gf_form_view` VALUES("9466", "3", "2015-03-08 03:00:00", "157.55.39.12", "7496");
INSERT INTO `wp_gf_form_view` VALUES("9467", "3", "2015-03-08 04:00:09", "207.46.13.101", "8300");
INSERT INTO `wp_gf_form_view` VALUES("9468", "1", "2015-03-08 04:51:08", "162.243.218.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("9469", "3", "2015-03-08 05:00:00", "207.46.13.6", "8929");
INSERT INTO `wp_gf_form_view` VALUES("9470", "6", "2015-03-08 05:09:01", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("9471", "3", "2015-03-08 06:00:08", "157.55.39.11", "6118");
INSERT INTO `wp_gf_form_view` VALUES("9472", "3", "2015-03-08 07:00:15", "207.46.13.51", "5951");
INSERT INTO `wp_gf_form_view` VALUES("9473", "3", "2015-03-08 08:00:00", "207.46.13.6", "5642");
INSERT INTO `wp_gf_form_view` VALUES("9474", "6", "2015-03-08 08:26:37", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9475", "3", "2015-03-08 09:00:01", "207.46.13.51", "5350");
INSERT INTO `wp_gf_form_view` VALUES("9476", "3", "2015-03-08 10:00:00", "207.46.13.51", "5413");
INSERT INTO `wp_gf_form_view` VALUES("9477", "3", "2015-03-08 11:00:14", "207.46.13.6", "5287");
INSERT INTO `wp_gf_form_view` VALUES("9478", "3", "2015-03-08 12:00:00", "207.46.13.6", "5658");
INSERT INTO `wp_gf_form_view` VALUES("9479", "3", "2015-03-08 13:00:07", "157.55.39.11", "6732");
INSERT INTO `wp_gf_form_view` VALUES("9480", "3", "2015-03-08 14:00:00", "207.46.13.51", "5980");
INSERT INTO `wp_gf_form_view` VALUES("9481", "3", "2015-03-08 15:00:00", "207.46.13.6", "5622");
INSERT INTO `wp_gf_form_view` VALUES("9482", "3", "2015-03-08 16:00:00", "207.46.13.6", "7265");
INSERT INTO `wp_gf_form_view` VALUES("9483", "3", "2015-03-08 16:00:00", "207.46.13.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("9484", "3", "2015-03-08 17:00:14", "207.46.13.51", "6837");
INSERT INTO `wp_gf_form_view` VALUES("9485", "6", "2015-03-08 17:23:18", "207.46.13.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("9486", "1", "2015-03-08 17:48:16", "198.27.66.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("9487", "3", "2015-03-08 18:00:05", "207.46.13.6", "6205");
INSERT INTO `wp_gf_form_view` VALUES("9488", "3", "2015-03-08 19:00:01", "207.46.13.51", "6009");
INSERT INTO `wp_gf_form_view` VALUES("9489", "3", "2015-03-08 20:00:00", "207.46.13.51", "5804");
INSERT INTO `wp_gf_form_view` VALUES("9490", "3", "2015-03-08 21:00:06", "157.55.39.12", "6421");
INSERT INTO `wp_gf_form_view` VALUES("9491", "2", "2015-03-08 21:13:41", "36.248.167.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("9492", "3", "2015-03-08 22:00:00", "207.46.13.51", "5916");
INSERT INTO `wp_gf_form_view` VALUES("9493", "3", "2015-03-08 23:00:03", "207.46.13.51", "6511");
INSERT INTO `wp_gf_form_view` VALUES("9494", "3", "2015-03-09 00:00:00", "207.46.13.6", "5776");
INSERT INTO `wp_gf_form_view` VALUES("9495", "3", "2015-03-09 01:00:04", "207.46.13.52", "6549");
INSERT INTO `wp_gf_form_view` VALUES("9496", "3", "2015-03-09 02:00:00", "207.46.13.6", "5057");
INSERT INTO `wp_gf_form_view` VALUES("9497", "6", "2015-03-09 02:57:42", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9498", "3", "2015-03-09 03:00:00", "207.46.13.52", "6054");
INSERT INTO `wp_gf_form_view` VALUES("9499", "3", "2015-03-09 04:00:00", "207.46.13.6", "6132");
INSERT INTO `wp_gf_form_view` VALUES("9500", "6", "2015-03-09 04:03:35", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9501", "3", "2015-03-09 05:00:01", "157.55.39.12", "6211");
INSERT INTO `wp_gf_form_view` VALUES("9502", "6", "2015-03-09 05:24:06", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9503", "3", "2015-03-09 06:00:04", "207.46.13.51", "6027");
INSERT INTO `wp_gf_form_view` VALUES("9504", "1", "2015-03-09 06:33:51", "204.124.183.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("9505", "7", "2015-03-09 06:40:09", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("9506", "3", "2015-03-09 07:00:00", "207.46.13.6", "5887");
INSERT INTO `wp_gf_form_view` VALUES("9507", "3", "2015-03-09 08:00:00", "207.46.13.52", "6473");
INSERT INTO `wp_gf_form_view` VALUES("9508", "3", "2015-03-09 09:00:01", "207.46.13.6", "6482");
INSERT INTO `wp_gf_form_view` VALUES("9509", "1", "2015-03-09 09:28:56", "24.69.80.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("9510", "3", "2015-03-09 10:00:00", "157.55.39.12", "6248");
INSERT INTO `wp_gf_form_view` VALUES("9511", "3", "2015-03-09 11:00:00", "157.55.39.12", "6419");
INSERT INTO `wp_gf_form_view` VALUES("9512", "6", "2015-03-09 11:58:57", "207.46.13.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("9513", "3", "2015-03-09 12:00:03", "207.46.13.6", "6287");
INSERT INTO `wp_gf_form_view` VALUES("9514", "3", "2015-03-09 13:00:00", "157.55.39.12", "5954");
INSERT INTO `wp_gf_form_view` VALUES("9515", "3", "2015-03-09 14:00:01", "157.55.39.12", "6010");
INSERT INTO `wp_gf_form_view` VALUES("9516", "6", "2015-03-09 14:38:32", "66.249.67.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("9517", "3", "2015-03-09 15:00:00", "207.46.13.51", "5591");
INSERT INTO `wp_gf_form_view` VALUES("9518", "3", "2015-03-09 16:00:00", "207.46.13.51", "6236");
INSERT INTO `wp_gf_form_view` VALUES("9519", "3", "2015-03-09 17:00:00", "207.46.13.51", "5915");
INSERT INTO `wp_gf_form_view` VALUES("9520", "3", "2015-03-09 18:00:00", "157.55.39.12", "6324");
INSERT INTO `wp_gf_form_view` VALUES("9521", "6", "2015-03-09 18:38:36", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("9522", "3", "2015-03-09 19:00:04", "66.249.67.77", "6385");
INSERT INTO `wp_gf_form_view` VALUES("9523", "3", "2015-03-09 20:00:05", "207.46.13.51", "6256");
INSERT INTO `wp_gf_form_view` VALUES("9524", "3", "2015-03-09 21:00:24", "207.46.13.6", "5414");
INSERT INTO `wp_gf_form_view` VALUES("9525", "7", "2015-03-09 21:58:08", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("9526", "3", "2015-03-09 22:00:46", "207.46.13.52", "1742");
INSERT INTO `wp_gf_form_view` VALUES("9527", "6", "2015-03-09 22:45:05", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("9528", "3", "2015-03-09 23:00:29", "207.46.13.52", "1339");
INSERT INTO `wp_gf_form_view` VALUES("9529", "6", "2015-03-09 23:32:51", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9530", "3", "2015-03-10 00:00:09", "207.46.13.51", "1428");
INSERT INTO `wp_gf_form_view` VALUES("9531", "3", "2015-03-10 01:00:16", "207.46.13.6", "1504");
INSERT INTO `wp_gf_form_view` VALUES("9532", "3", "2015-03-10 02:00:17", "207.46.13.52", "1182");
INSERT INTO `wp_gf_form_view` VALUES("9533", "7", "2015-03-10 02:48:10", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("9534", "6", "2015-03-10 02:55:41", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("9535", "3", "2015-03-10 03:00:10", "207.46.13.6", "1683");
INSERT INTO `wp_gf_form_view` VALUES("9536", "7", "2015-03-10 03:10:39", "100.43.85.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("9537", "6", "2015-03-10 03:37:41", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9538", "3", "2015-03-10 04:00:00", "157.55.39.12", "1635");
INSERT INTO `wp_gf_form_view` VALUES("9539", "6", "2015-03-10 04:27:38", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9540", "3", "2015-03-10 05:00:28", "157.55.39.12", "1552");
INSERT INTO `wp_gf_form_view` VALUES("9541", "3", "2015-03-10 06:01:01", "207.46.13.52", "1763");
INSERT INTO `wp_gf_form_view` VALUES("9542", "6", "2015-03-10 06:04:39", "207.46.13.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("9543", "3", "2015-03-10 07:00:02", "207.46.13.51", "1406");
INSERT INTO `wp_gf_form_view` VALUES("9544", "6", "2015-03-10 07:40:27", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("9545", "3", "2015-03-10 08:00:12", "207.46.13.6", "1538");
INSERT INTO `wp_gf_form_view` VALUES("9546", "3", "2015-03-10 09:00:00", "207.46.13.52", "1378");
INSERT INTO `wp_gf_form_view` VALUES("9547", "6", "2015-03-10 09:31:38", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9548", "3", "2015-03-10 10:00:38", "157.55.39.12", "1704");
INSERT INTO `wp_gf_form_view` VALUES("9549", "6", "2015-03-10 10:24:46", "207.46.13.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("9550", "3", "2015-03-10 11:00:26", "207.46.13.51", "1582");
INSERT INTO `wp_gf_form_view` VALUES("9551", "6", "2015-03-10 11:29:50", "207.46.13.6", "4");
INSERT INTO `wp_gf_form_view` VALUES("9552", "3", "2015-03-10 12:00:17", "207.46.13.51", "1212");
INSERT INTO `wp_gf_form_view` VALUES("9553", "3", "2015-03-10 13:00:31", "207.46.13.52", "1576");
INSERT INTO `wp_gf_form_view` VALUES("9554", "1", "2015-03-10 13:34:41", "195.154.250.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("9555", "3", "2015-03-10 14:00:38", "207.46.13.6", "1328");
INSERT INTO `wp_gf_form_view` VALUES("9556", "6", "2015-03-10 14:34:08", "207.46.13.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("9557", "3", "2015-03-10 15:00:59", "66.249.67.77", "1586");
INSERT INTO `wp_gf_form_view` VALUES("9558", "6", "2015-03-10 15:12:49", "157.55.39.12", "4");
INSERT INTO `wp_gf_form_view` VALUES("9559", "3", "2015-03-10 16:00:51", "68.180.228.245", "1249");
INSERT INTO `wp_gf_form_view` VALUES("9560", "3", "2015-03-10 17:00:45", "207.46.13.51", "1552");
INSERT INTO `wp_gf_form_view` VALUES("9561", "1", "2015-03-10 17:50:57", "195.154.250.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("9562", "6", "2015-03-10 17:56:51", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9563", "3", "2015-03-10 18:00:04", "207.46.13.51", "1559");
INSERT INTO `wp_gf_form_view` VALUES("9564", "2", "2015-03-10 18:22:30", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("9565", "7", "2015-03-10 18:24:35", "154.20.7.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("9566", "1", "2015-03-10 18:27:29", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("9567", "6", "2015-03-10 18:52:12", "207.46.13.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("9568", "3", "2015-03-10 19:00:45", "157.55.39.12", "1502");
INSERT INTO `wp_gf_form_view` VALUES("9569", "6", "2015-03-10 19:00:56", "207.46.13.6", "4");
INSERT INTO `wp_gf_form_view` VALUES("9570", "3", "2015-03-10 20:00:42", "157.55.39.12", "1606");
INSERT INTO `wp_gf_form_view` VALUES("9571", "3", "2015-03-10 21:00:51", "207.46.13.6", "1440");
INSERT INTO `wp_gf_form_view` VALUES("9572", "6", "2015-03-10 21:01:27", "207.46.13.52", "4");
INSERT INTO `wp_gf_form_view` VALUES("9573", "3", "2015-03-10 22:00:15", "207.46.13.6", "1634");
INSERT INTO `wp_gf_form_view` VALUES("9574", "7", "2015-03-10 22:42:02", "207.46.13.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("9575", "3", "2015-03-10 23:01:16", "207.46.13.51", "2078");
INSERT INTO `wp_gf_form_view` VALUES("9576", "3", "2015-03-11 00:00:09", "207.46.13.52", "1340");
INSERT INTO `wp_gf_form_view` VALUES("9577", "6", "2015-03-11 00:10:42", "157.55.39.12", "6");
INSERT INTO `wp_gf_form_view` VALUES("9578", "3", "2015-03-11 01:00:25", "207.46.13.51", "1570");
INSERT INTO `wp_gf_form_view` VALUES("9579", "6", "2015-03-11 01:09:41", "207.46.13.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("9580", "7", "2015-03-11 01:20:41", "175.142.180.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("9581", "1", "2015-03-11 01:20:59", "175.142.180.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("9582", "3", "2015-03-11 02:00:19", "207.46.13.51", "1204");
INSERT INTO `wp_gf_form_view` VALUES("9583", "1", "2015-03-11 02:46:21", "195.154.250.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("9584", "3", "2015-03-11 03:00:42", "217.69.133.227", "1796");
INSERT INTO `wp_gf_form_view` VALUES("9585", "6", "2015-03-11 03:46:41", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9586", "3", "2015-03-11 04:00:00", "207.46.13.52", "1262");
INSERT INTO `wp_gf_form_view` VALUES("9587", "7", "2015-03-11 04:44:18", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("9588", "6", "2015-03-11 04:49:22", "157.55.39.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("9589", "3", "2015-03-11 05:00:00", "207.46.13.52", "1366");
INSERT INTO `wp_gf_form_view` VALUES("9590", "1", "2015-03-11 05:19:05", "195.154.250.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("9591", "3", "2015-03-11 06:00:17", "207.46.13.51", "1484");
INSERT INTO `wp_gf_form_view` VALUES("9592", "6", "2015-03-11 06:03:53", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9593", "3", "2015-03-11 07:01:02", "207.46.13.51", "1116");
INSERT INTO `wp_gf_form_view` VALUES("9594", "6", "2015-03-11 07:05:00", "157.55.39.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("9595", "3", "2015-03-11 08:00:11", "207.46.13.51", "1290");
INSERT INTO `wp_gf_form_view` VALUES("9596", "6", "2015-03-11 08:21:35", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9597", "3", "2015-03-11 09:00:14", "68.180.228.245", "1524");
INSERT INTO `wp_gf_form_view` VALUES("9598", "6", "2015-03-11 09:36:21", "207.46.13.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("9599", "3", "2015-03-11 10:00:21", "207.46.13.6", "1062");
INSERT INTO `wp_gf_form_view` VALUES("9600", "3", "2015-03-11 11:00:47", "157.55.39.84", "1146");
INSERT INTO `wp_gf_form_view` VALUES("9601", "2", "2015-03-11 11:58:14", "66.249.67.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("9602", "3", "2015-03-11 12:01:06", "66.249.67.77", "834");
INSERT INTO `wp_gf_form_view` VALUES("9603", "6", "2015-03-11 12:23:47", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9604", "3", "2015-03-11 13:00:33", "207.46.13.52", "1358");
INSERT INTO `wp_gf_form_view` VALUES("9605", "3", "2015-03-11 14:01:50", "207.46.13.52", "1070");
INSERT INTO `wp_gf_form_view` VALUES("9606", "3", "2015-03-11 15:00:12", "66.249.67.85", "1749");
INSERT INTO `wp_gf_form_view` VALUES("9607", "3", "2015-03-11 16:00:42", "157.55.39.84", "2179");
INSERT INTO `wp_gf_form_view` VALUES("9608", "6", "2015-03-11 16:28:11", "207.46.13.6", "4");
INSERT INTO `wp_gf_form_view` VALUES("9609", "3", "2015-03-11 17:00:53", "66.249.67.93", "1424");
INSERT INTO `wp_gf_form_view` VALUES("9610", "6", "2015-03-11 17:26:33", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9611", "3", "2015-03-11 18:00:14", "207.46.13.51", "1832");
INSERT INTO `wp_gf_form_view` VALUES("9612", "6", "2015-03-11 18:45:56", "207.46.13.52", "4");
INSERT INTO `wp_gf_form_view` VALUES("9613", "3", "2015-03-11 19:00:15", "157.55.39.84", "1734");
INSERT INTO `wp_gf_form_view` VALUES("9614", "1", "2015-03-11 19:13:14", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("9615", "6", "2015-03-11 19:21:40", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9616", "3", "2015-03-11 20:00:24", "157.55.39.84", "1756");
INSERT INTO `wp_gf_form_view` VALUES("9617", "3", "2015-03-11 21:00:22", "66.249.67.93", "1568");
INSERT INTO `wp_gf_form_view` VALUES("9618", "6", "2015-03-11 21:36:06", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9619", "3", "2015-03-11 22:00:04", "207.46.13.6", "1416");
INSERT INTO `wp_gf_form_view` VALUES("9620", "3", "2015-03-11 23:00:39", "66.249.67.85", "5791");
INSERT INTO `wp_gf_form_view` VALUES("9621", "7", "2015-03-11 23:31:41", "217.160.166.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("9622", "2", "2015-03-11 23:31:55", "217.160.166.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("9623", "1", "2015-03-11 23:31:58", "217.160.166.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("9624", "3", "2015-03-12 00:00:00", "217.160.166.101", "2299");
INSERT INTO `wp_gf_form_view` VALUES("9625", "6", "2015-03-12 00:02:16", "217.160.166.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("9626", "2", "2015-03-12 00:10:50", "188.165.15.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("9627", "1", "2015-03-12 00:15:12", "208.43.252.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("9628", "7", "2015-03-12 00:15:26", "208.43.252.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("9629", "3", "2015-03-12 01:00:24", "157.55.39.84", "1452");
INSERT INTO `wp_gf_form_view` VALUES("9630", "6", "2015-03-12 01:19:53", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9631", "6", "2015-03-12 02:00:32", "46.211.11.0", "4");
INSERT INTO `wp_gf_form_view` VALUES("9632", "3", "2015-03-12 02:00:33", "46.211.11.0", "1859");
INSERT INTO `wp_gf_form_view` VALUES("9633", "3", "2015-03-12 03:00:00", "207.46.13.52", "1782");
INSERT INTO `wp_gf_form_view` VALUES("9634", "2", "2015-03-12 03:15:42", "172.245.120.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("9635", "6", "2015-03-12 03:47:25", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9636", "3", "2015-03-12 04:00:03", "157.55.39.84", "1546");
INSERT INTO `wp_gf_form_view` VALUES("9637", "6", "2015-03-12 04:14:47", "207.46.13.52", "5");
INSERT INTO `wp_gf_form_view` VALUES("9638", "3", "2015-03-12 05:00:22", "207.46.13.51", "1742");
INSERT INTO `wp_gf_form_view` VALUES("9639", "6", "2015-03-12 05:59:15", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("9640", "3", "2015-03-12 06:00:11", "157.55.39.84", "1776");
INSERT INTO `wp_gf_form_view` VALUES("9641", "3", "2015-03-12 07:00:36", "157.55.39.84", "1670");
INSERT INTO `wp_gf_form_view` VALUES("9642", "3", "2015-03-12 08:00:19", "207.46.13.52", "1560");
INSERT INTO `wp_gf_form_view` VALUES("9643", "6", "2015-03-12 08:24:10", "207.46.13.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("9644", "3", "2015-03-12 09:00:28", "66.249.67.85", "1434");
INSERT INTO `wp_gf_form_view` VALUES("9645", "3", "2015-03-12 10:00:17", "207.46.13.51", "1620");
INSERT INTO `wp_gf_form_view` VALUES("9646", "6", "2015-03-12 10:39:42", "68.180.228.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("9647", "3", "2015-03-12 11:02:40", "66.249.67.77", "1210");
INSERT INTO `wp_gf_form_view` VALUES("9648", "6", "2015-03-12 11:14:28", "157.55.39.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("9649", "3", "2015-03-12 12:00:06", "207.46.13.51", "1246");
INSERT INTO `wp_gf_form_view` VALUES("9650", "3", "2015-03-12 13:00:23", "207.46.13.51", "1125");
INSERT INTO `wp_gf_form_view` VALUES("9651", "6", "2015-03-12 13:52:06", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9652", "3", "2015-03-12 14:00:10", "207.46.13.51", "1158");
INSERT INTO `wp_gf_form_view` VALUES("9653", "6", "2015-03-12 14:35:21", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9654", "3", "2015-03-12 15:00:33", "207.46.13.51", "1246");
INSERT INTO `wp_gf_form_view` VALUES("9655", "6", "2015-03-12 15:28:19", "207.46.13.52", "4");
INSERT INTO `wp_gf_form_view` VALUES("9656", "2", "2015-03-12 15:57:21", "84.155.179.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("9657", "3", "2015-03-12 16:00:48", "207.46.13.52", "1254");
INSERT INTO `wp_gf_form_view` VALUES("9658", "7", "2015-03-12 16:04:38", "202.46.61.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("9659", "6", "2015-03-12 16:26:33", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9660", "3", "2015-03-12 17:00:00", "157.55.39.105", "902");
INSERT INTO `wp_gf_form_view` VALUES("9661", "1", "2015-03-12 17:37:44", "155.133.18.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("9662", "3", "2015-03-12 18:00:24", "207.46.13.51", "1344");
INSERT INTO `wp_gf_form_view` VALUES("9663", "6", "2015-03-12 18:50:56", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("9664", "3", "2015-03-12 19:00:27", "66.249.67.93", "1556");
INSERT INTO `wp_gf_form_view` VALUES("9665", "7", "2015-03-12 19:02:58", "207.46.13.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("9666", "6", "2015-03-12 19:13:51", "207.46.13.51", "8");
INSERT INTO `wp_gf_form_view` VALUES("9667", "3", "2015-03-12 20:00:22", "207.46.13.51", "1132");
INSERT INTO `wp_gf_form_view` VALUES("9668", "6", "2015-03-12 20:02:37", "207.46.13.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("9669", "2", "2015-03-12 20:54:26", "209.222.8.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("9670", "3", "2015-03-12 21:00:15", "157.55.39.105", "1245");
INSERT INTO `wp_gf_form_view` VALUES("9671", "6", "2015-03-12 21:00:23", "207.46.13.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("9672", "3", "2015-03-12 22:00:03", "157.55.39.105", "990");
INSERT INTO `wp_gf_form_view` VALUES("9673", "6", "2015-03-12 22:37:53", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9674", "3", "2015-03-12 23:00:15", "207.46.13.52", "988");
INSERT INTO `wp_gf_form_view` VALUES("9675", "3", "2015-03-13 00:04:02", "207.46.13.52", "1176");
INSERT INTO `wp_gf_form_view` VALUES("9676", "7", "2015-03-13 00:06:11", "207.46.13.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("9677", "6", "2015-03-13 00:44:21", "207.46.13.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("9678", "3", "2015-03-13 01:00:57", "209.222.8.75", "828");
INSERT INTO `wp_gf_form_view` VALUES("9679", "1", "2015-03-13 01:09:18", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("9680", "3", "2015-03-13 02:00:53", "207.46.13.51", "1104");
INSERT INTO `wp_gf_form_view` VALUES("9681", "6", "2015-03-13 02:03:28", "157.55.39.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("9682", "3", "2015-03-13 03:00:02", "157.55.39.105", "1077");
INSERT INTO `wp_gf_form_view` VALUES("9683", "6", "2015-03-13 03:34:21", "157.55.39.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("9684", "3", "2015-03-13 04:00:33", "207.46.13.51", "369");
INSERT INTO `wp_gf_form_view` VALUES("9685", "3", "2015-03-13 05:05:02", "66.249.67.77", "352");
INSERT INTO `wp_gf_form_view` VALUES("9686", "3", "2015-03-13 06:00:19", "157.55.39.105", "580");
INSERT INTO `wp_gf_form_view` VALUES("9687", "6", "2015-03-13 06:03:15", "66.249.67.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("9688", "2", "2015-03-13 06:14:29", "82.192.75.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("9689", "1", "2015-03-13 06:14:48", "82.192.75.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("9690", "7", "2015-03-13 06:15:19", "82.192.75.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("9691", "3", "2015-03-13 07:00:07", "66.249.67.93", "492");
INSERT INTO `wp_gf_form_view` VALUES("9692", "3", "2015-03-13 08:03:17", "157.55.39.105", "278");
INSERT INTO `wp_gf_form_view` VALUES("9693", "3", "2015-03-13 09:01:08", "66.249.67.77", "364");
INSERT INTO `wp_gf_form_view` VALUES("9694", "3", "2015-03-13 10:02:44", "157.55.39.105", "676");
INSERT INTO `wp_gf_form_view` VALUES("9695", "3", "2015-03-13 11:02:38", "66.249.67.85", "290");
INSERT INTO `wp_gf_form_view` VALUES("9696", "3", "2015-03-13 12:01:09", "66.249.67.85", "228");
INSERT INTO `wp_gf_form_view` VALUES("9697", "3", "2015-03-13 13:04:37", "66.249.67.85", "166");
INSERT INTO `wp_gf_form_view` VALUES("9698", "3", "2015-03-13 14:00:48", "66.249.67.93", "160");
INSERT INTO `wp_gf_form_view` VALUES("9699", "3", "2015-03-13 15:01:20", "66.249.67.85", "136");
INSERT INTO `wp_gf_form_view` VALUES("9700", "3", "2015-03-13 16:08:43", "66.249.67.77", "146");
INSERT INTO `wp_gf_form_view` VALUES("9701", "3", "2015-03-13 17:03:21", "66.249.67.93", "132");
INSERT INTO `wp_gf_form_view` VALUES("9702", "3", "2015-03-13 18:01:17", "66.249.67.85", "506");
INSERT INTO `wp_gf_form_view` VALUES("9703", "1", "2015-03-13 18:57:50", "174.127.133.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("9704", "2", "2015-03-13 19:00:07", "174.127.133.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("9705", "3", "2015-03-13 19:00:07", "174.127.133.51", "515");
INSERT INTO `wp_gf_form_view` VALUES("9706", "1", "2015-03-13 19:23:47", "174.127.133.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("9707", "3", "2015-03-13 20:00:22", "66.249.67.77", "582");
INSERT INTO `wp_gf_form_view` VALUES("9708", "2", "2015-03-13 20:03:22", "157.55.39.235", "2");
INSERT INTO `wp_gf_form_view` VALUES("9709", "3", "2015-03-13 21:00:07", "66.249.67.77", "454");
INSERT INTO `wp_gf_form_view` VALUES("9710", "3", "2015-03-13 22:03:09", "66.249.67.93", "866");
INSERT INTO `wp_gf_form_view` VALUES("9711", "1", "2015-03-13 22:45:55", "117.169.1.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("9712", "3", "2015-03-13 23:00:19", "66.249.67.85", "448");
INSERT INTO `wp_gf_form_view` VALUES("9713", "3", "2015-03-14 00:01:23", "66.249.67.77", "842");
INSERT INTO `wp_gf_form_view` VALUES("9714", "6", "2015-03-14 00:11:33", "157.55.39.79", "4");
INSERT INTO `wp_gf_form_view` VALUES("9715", "3", "2015-03-14 01:00:03", "66.249.67.77", "705");
INSERT INTO `wp_gf_form_view` VALUES("9716", "7", "2015-03-14 01:06:36", "100.43.81.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("9717", "3", "2015-03-14 02:01:14", "157.55.39.79", "386");
INSERT INTO `wp_gf_form_view` VALUES("9718", "3", "2015-03-14 03:00:22", "66.249.67.85", "452");
INSERT INTO `wp_gf_form_view` VALUES("9719", "1", "2015-03-14 03:27:08", "157.55.39.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("9720", "3", "2015-03-14 04:03:47", "157.55.39.192", "620");
INSERT INTO `wp_gf_form_view` VALUES("9721", "3", "2015-03-14 05:00:08", "66.249.67.77", "414");
INSERT INTO `wp_gf_form_view` VALUES("9722", "6", "2015-03-14 05:58:37", "66.249.67.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("9723", "3", "2015-03-14 06:01:11", "66.249.67.93", "350");
INSERT INTO `wp_gf_form_view` VALUES("9724", "3", "2015-03-14 07:01:09", "157.55.39.235", "310");
INSERT INTO `wp_gf_form_view` VALUES("9725", "3", "2015-03-14 08:01:06", "157.55.39.235", "491");
INSERT INTO `wp_gf_form_view` VALUES("9726", "3", "2015-03-14 08:01:06", "157.55.39.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("9727", "6", "2015-03-14 08:13:05", "157.55.39.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("9728", "1", "2015-03-14 08:15:05", "221.178.126.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("9729", "3", "2015-03-14 09:01:21", "66.249.67.93", "158");
INSERT INTO `wp_gf_form_view` VALUES("9730", "3", "2015-03-14 10:01:59", "207.46.13.6", "316");
INSERT INTO `wp_gf_form_view` VALUES("9731", "1", "2015-03-14 10:26:46", "155.133.18.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("9732", "3", "2015-03-14 11:01:16", "157.55.39.79", "246");
INSERT INTO `wp_gf_form_view` VALUES("9733", "3", "2015-03-14 12:00:12", "66.249.67.85", "282");
INSERT INTO `wp_gf_form_view` VALUES("9734", "3", "2015-03-14 13:00:04", "66.249.67.85", "236");
INSERT INTO `wp_gf_form_view` VALUES("9735", "3", "2015-03-14 14:00:01", "157.55.39.191", "344");
INSERT INTO `wp_gf_form_view` VALUES("9736", "3", "2015-03-14 15:00:53", "157.55.39.235", "364");
INSERT INTO `wp_gf_form_view` VALUES("9737", "6", "2015-03-14 15:10:48", "157.55.39.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("9738", "3", "2015-03-14 16:00:11", "157.55.39.235", "600");
INSERT INTO `wp_gf_form_view` VALUES("9739", "3", "2015-03-14 17:00:31", "157.55.39.235", "298");
INSERT INTO `wp_gf_form_view` VALUES("9740", "3", "2015-03-14 18:01:19", "209.222.8.75", "404");
INSERT INTO `wp_gf_form_view` VALUES("9741", "3", "2015-03-14 19:06:30", "66.249.67.85", "264");
INSERT INTO `wp_gf_form_view` VALUES("9742", "3", "2015-03-14 20:01:36", "157.55.39.235", "298");
INSERT INTO `wp_gf_form_view` VALUES("9743", "3", "2015-03-14 21:01:17", "157.55.39.191", "412");
INSERT INTO `wp_gf_form_view` VALUES("9744", "3", "2015-03-14 22:00:05", "157.55.39.235", "604");
INSERT INTO `wp_gf_form_view` VALUES("9745", "3", "2015-03-14 23:03:47", "207.46.13.6", "374");
INSERT INTO `wp_gf_form_view` VALUES("9746", "3", "2015-03-15 00:00:12", "157.55.39.235", "256");
INSERT INTO `wp_gf_form_view` VALUES("9747", "3", "2015-03-15 01:05:34", "157.55.39.191", "184");
INSERT INTO `wp_gf_form_view` VALUES("9748", "1", "2015-03-15 01:19:14", "199.21.99.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("9749", "3", "2015-03-15 02:00:27", "157.55.39.235", "290");
INSERT INTO `wp_gf_form_view` VALUES("9750", "3", "2015-03-15 03:00:06", "66.249.67.77", "186");
INSERT INTO `wp_gf_form_view` VALUES("9751", "3", "2015-03-15 04:00:49", "66.249.67.85", "240");
INSERT INTO `wp_gf_form_view` VALUES("9752", "3", "2015-03-15 05:01:20", "66.249.67.77", "422");
INSERT INTO `wp_gf_form_view` VALUES("9753", "2", "2015-03-15 05:26:14", "5.255.253.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("9754", "3", "2015-03-15 06:01:20", "66.249.67.85", "136");
INSERT INTO `wp_gf_form_view` VALUES("9755", "3", "2015-03-15 07:02:16", "157.55.39.235", "108");
INSERT INTO `wp_gf_form_view` VALUES("9756", "3", "2015-03-15 08:02:47", "202.46.50.38", "206");
INSERT INTO `wp_gf_form_view` VALUES("9757", "3", "2015-03-15 09:04:57", "157.55.39.191", "212");
INSERT INTO `wp_gf_form_view` VALUES("9758", "6", "2015-03-15 09:28:27", "157.55.39.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("9759", "3", "2015-03-15 10:00:21", "157.55.39.235", "202");
INSERT INTO `wp_gf_form_view` VALUES("9760", "3", "2015-03-15 11:02:57", "157.55.39.235", "238");
INSERT INTO `wp_gf_form_view` VALUES("9761", "3", "2015-03-15 12:00:21", "157.55.39.191", "181");
INSERT INTO `wp_gf_form_view` VALUES("9762", "1", "2015-03-15 12:27:10", "50.115.175.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("9763", "3", "2015-03-15 13:05:36", "157.55.39.235", "238");
INSERT INTO `wp_gf_form_view` VALUES("9764", "3", "2015-03-15 14:01:46", "207.46.13.6", "225");
INSERT INTO `wp_gf_form_view` VALUES("9765", "3", "2015-03-15 15:01:47", "66.249.67.85", "254");
INSERT INTO `wp_gf_form_view` VALUES("9766", "3", "2015-03-15 16:02:20", "66.249.67.93", "366");
INSERT INTO `wp_gf_form_view` VALUES("9767", "3", "2015-03-15 17:00:06", "66.249.67.77", "264");
INSERT INTO `wp_gf_form_view` VALUES("9768", "1", "2015-03-15 17:02:56", "141.8.189.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("9769", "3", "2015-03-15 18:04:39", "141.8.189.103", "300");
INSERT INTO `wp_gf_form_view` VALUES("9770", "3", "2015-03-15 19:00:28", "66.249.67.93", "270");
INSERT INTO `wp_gf_form_view` VALUES("9771", "3", "2015-03-15 20:00:22", "207.46.13.53", "246");
INSERT INTO `wp_gf_form_view` VALUES("9772", "3", "2015-03-15 21:00:40", "207.46.13.6", "1271");
INSERT INTO `wp_gf_form_view` VALUES("9773", "6", "2015-03-15 21:16:14", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9774", "3", "2015-03-15 22:00:03", "207.46.13.6", "2512");
INSERT INTO `wp_gf_form_view` VALUES("9775", "3", "2015-03-15 23:00:03", "207.46.13.6", "2724");
INSERT INTO `wp_gf_form_view` VALUES("9776", "6", "2015-03-15 23:37:49", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9777", "7", "2015-03-15 23:41:08", "141.8.189.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("9778", "3", "2015-03-16 00:00:34", "66.249.67.77", "3302");
INSERT INTO `wp_gf_form_view` VALUES("9779", "6", "2015-03-16 00:08:49", "157.55.39.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("9780", "3", "2015-03-16 01:00:11", "157.55.39.191", "3488");
INSERT INTO `wp_gf_form_view` VALUES("9781", "6", "2015-03-16 01:34:25", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9782", "3", "2015-03-16 02:00:01", "207.46.13.53", "3706");
INSERT INTO `wp_gf_form_view` VALUES("9783", "3", "2015-03-16 03:00:07", "207.46.13.6", "3188");
INSERT INTO `wp_gf_form_view` VALUES("9784", "6", "2015-03-16 03:19:44", "157.55.39.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("9785", "1", "2015-03-16 03:25:01", "24.68.48.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("9786", "3", "2015-03-16 04:00:05", "207.46.13.53", "3032");
INSERT INTO `wp_gf_form_view` VALUES("9787", "6", "2015-03-16 04:07:55", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9788", "3", "2015-03-16 05:00:07", "157.55.39.79", "2744");
INSERT INTO `wp_gf_form_view` VALUES("9789", "3", "2015-03-16 06:00:18", "207.46.13.53", "2408");
INSERT INTO `wp_gf_form_view` VALUES("9790", "3", "2015-03-16 07:00:00", "157.55.39.191", "3326");
INSERT INTO `wp_gf_form_view` VALUES("9791", "3", "2015-03-16 08:00:03", "207.46.13.53", "3042");
INSERT INTO `wp_gf_form_view` VALUES("9792", "6", "2015-03-16 08:18:28", "157.55.39.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("9793", "3", "2015-03-16 09:00:00", "157.55.39.206", "2717");
INSERT INTO `wp_gf_form_view` VALUES("9794", "6", "2015-03-16 09:37:04", "157.55.39.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("9795", "3", "2015-03-16 10:00:23", "207.46.13.53", "3016");
INSERT INTO `wp_gf_form_view` VALUES("9796", "2", "2015-03-16 10:35:50", "141.8.189.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("9797", "6", "2015-03-16 10:49:47", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9798", "3", "2015-03-16 11:00:06", "66.249.67.77", "3516");
INSERT INTO `wp_gf_form_view` VALUES("9799", "1", "2015-03-16 11:45:42", "188.165.15.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("9800", "3", "2015-03-16 12:00:11", "207.46.13.53", "2760");
INSERT INTO `wp_gf_form_view` VALUES("9801", "3", "2015-03-16 13:00:00", "207.46.13.8", "4376");
INSERT INTO `wp_gf_form_view` VALUES("9802", "6", "2015-03-16 13:03:43", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("9803", "3", "2015-03-16 14:00:00", "207.46.13.8", "4154");
INSERT INTO `wp_gf_form_view` VALUES("9804", "6", "2015-03-16 14:31:13", "157.55.39.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("9805", "3", "2015-03-16 15:00:05", "207.46.13.53", "5199");
INSERT INTO `wp_gf_form_view` VALUES("9806", "7", "2015-03-16 15:43:41", "136.243.36.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("9807", "1", "2015-03-16 15:44:03", "136.243.36.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("9808", "2", "2015-03-16 15:44:13", "136.243.36.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("9809", "6", "2015-03-16 15:55:01", "136.243.36.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("9810", "3", "2015-03-16 16:00:06", "207.46.13.8", "4186");
INSERT INTO `wp_gf_form_view` VALUES("9811", "3", "2015-03-16 17:00:20", "66.249.67.85", "3790");
INSERT INTO `wp_gf_form_view` VALUES("9812", "6", "2015-03-16 17:09:55", "207.46.13.53", "4");
INSERT INTO `wp_gf_form_view` VALUES("9813", "3", "2015-03-16 18:00:09", "207.46.13.8", "4042");
INSERT INTO `wp_gf_form_view` VALUES("9814", "6", "2015-03-16 18:25:42", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9815", "1", "2015-03-16 18:48:40", "117.169.1.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("9816", "3", "2015-03-16 19:00:07", "157.55.39.191", "3590");
INSERT INTO `wp_gf_form_view` VALUES("9817", "3", "2015-03-16 20:00:15", "157.55.39.191", "4309");
INSERT INTO `wp_gf_form_view` VALUES("9818", "3", "2015-03-16 20:00:15", "207.46.13.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("9819", "6", "2015-03-16 20:23:11", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("9820", "3", "2015-03-16 21:00:18", "207.46.13.53", "3576");
INSERT INTO `wp_gf_form_view` VALUES("9821", "3", "2015-03-16 22:00:12", "207.46.13.8", "3192");
INSERT INTO `wp_gf_form_view` VALUES("9822", "6", "2015-03-16 22:09:44", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9823", "3", "2015-03-16 23:00:02", "157.55.39.191", "3794");
INSERT INTO `wp_gf_form_view` VALUES("9824", "6", "2015-03-16 23:41:42", "96.54.164.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("9825", "3", "2015-03-17 00:00:09", "157.55.39.67", "3692");
INSERT INTO `wp_gf_form_view` VALUES("9826", "3", "2015-03-17 01:00:13", "157.55.39.67", "3475");
INSERT INTO `wp_gf_form_view` VALUES("9827", "1", "2015-03-17 01:02:02", "198.167.138.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("9828", "6", "2015-03-17 01:08:13", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("9829", "3", "2015-03-17 02:00:05", "157.55.39.67", "3520");
INSERT INTO `wp_gf_form_view` VALUES("9830", "6", "2015-03-17 02:24:07", "66.249.67.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("9831", "3", "2015-03-17 03:00:04", "157.55.39.191", "3770");
INSERT INTO `wp_gf_form_view` VALUES("9832", "6", "2015-03-17 03:02:54", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9833", "3", "2015-03-17 04:00:12", "157.55.39.67", "3916");
INSERT INTO `wp_gf_form_view` VALUES("9834", "1", "2015-03-17 04:42:15", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("9835", "3", "2015-03-17 05:00:38", "66.249.64.113", "3495");
INSERT INTO `wp_gf_form_view` VALUES("9836", "6", "2015-03-17 05:03:29", "207.46.13.53", "8");
INSERT INTO `wp_gf_form_view` VALUES("9837", "3", "2015-03-17 06:00:00", "157.55.39.66", "3337");
INSERT INTO `wp_gf_form_view` VALUES("9838", "6", "2015-03-17 06:35:06", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9839", "3", "2015-03-17 07:00:22", "68.180.228.245", "4046");
INSERT INTO `wp_gf_form_view` VALUES("9840", "6", "2015-03-17 07:03:01", "68.180.228.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("9841", "3", "2015-03-17 08:00:01", "157.55.39.191", "3596");
INSERT INTO `wp_gf_form_view` VALUES("9842", "3", "2015-03-17 09:00:21", "157.55.39.67", "2948");
INSERT INTO `wp_gf_form_view` VALUES("9843", "6", "2015-03-17 09:54:15", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("9844", "3", "2015-03-17 10:00:00", "207.46.13.8", "2102");
INSERT INTO `wp_gf_form_view` VALUES("9845", "3", "2015-03-17 11:00:01", "207.46.13.8", "1988");
INSERT INTO `wp_gf_form_view` VALUES("9846", "3", "2015-03-17 12:00:22", "157.55.39.67", "2542");
INSERT INTO `wp_gf_form_view` VALUES("9847", "6", "2015-03-17 12:52:42", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("9848", "3", "2015-03-17 13:00:16", "207.46.13.8", "3361");
INSERT INTO `wp_gf_form_view` VALUES("9849", "3", "2015-03-17 14:00:00", "207.46.13.8", "3561");
INSERT INTO `wp_gf_form_view` VALUES("9850", "6", "2015-03-17 14:15:57", "157.55.39.67", "4");
INSERT INTO `wp_gf_form_view` VALUES("9851", "3", "2015-03-17 15:00:00", "157.55.39.66", "4265");
INSERT INTO `wp_gf_form_view` VALUES("9852", "6", "2015-03-17 15:30:59", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9853", "3", "2015-03-17 16:00:01", "157.55.39.204", "4512");
INSERT INTO `wp_gf_form_view` VALUES("9854", "6", "2015-03-17 16:17:50", "157.55.39.204", "4");
INSERT INTO `wp_gf_form_view` VALUES("9855", "3", "2015-03-17 17:00:00", "207.46.13.8", "4582");
INSERT INTO `wp_gf_form_view` VALUES("9856", "1", "2015-03-17 17:57:54", "142.36.192.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("9857", "3", "2015-03-17 18:00:00", "207.46.13.8", "3790");
INSERT INTO `wp_gf_form_view` VALUES("9858", "6", "2015-03-17 18:18:01", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9859", "3", "2015-03-17 19:00:01", "157.55.39.204", "3694");
INSERT INTO `wp_gf_form_view` VALUES("9860", "3", "2015-03-17 20:00:01", "207.46.13.65", "2544");
INSERT INTO `wp_gf_form_view` VALUES("9861", "7", "2015-03-17 20:13:04", "207.46.13.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("9862", "3", "2015-03-17 21:00:01", "207.46.13.8", "3726");
INSERT INTO `wp_gf_form_view` VALUES("9863", "1", "2015-03-17 21:12:03", "157.55.39.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("9864", "3", "2015-03-17 22:00:00", "157.55.39.204", "4388");
INSERT INTO `wp_gf_form_view` VALUES("9865", "2", "2015-03-17 22:37:29", "141.8.189.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("9866", "3", "2015-03-17 23:00:04", "207.46.13.65", "4198");
INSERT INTO `wp_gf_form_view` VALUES("9867", "1", "2015-03-17 23:05:51", "221.237.17.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("9868", "3", "2015-03-18 00:00:04", "207.46.13.65", "4583");
INSERT INTO `wp_gf_form_view` VALUES("9869", "3", "2015-03-18 01:00:00", "207.46.13.65", "4121");
INSERT INTO `wp_gf_form_view` VALUES("9870", "3", "2015-03-18 02:00:04", "157.55.39.204", "4818");
INSERT INTO `wp_gf_form_view` VALUES("9871", "6", "2015-03-18 02:12:57", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9872", "3", "2015-03-18 03:00:03", "207.46.13.103", "4568");
INSERT INTO `wp_gf_form_view` VALUES("9873", "3", "2015-03-18 04:00:02", "207.46.13.103", "4627");
INSERT INTO `wp_gf_form_view` VALUES("9874", "6", "2015-03-18 04:11:12", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("9875", "3", "2015-03-18 05:00:13", "157.55.39.204", "4627");
INSERT INTO `wp_gf_form_view` VALUES("9876", "6", "2015-03-18 05:42:39", "207.46.13.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("9877", "3", "2015-03-18 06:00:00", "207.46.13.8", "4305");
INSERT INTO `wp_gf_form_view` VALUES("9878", "3", "2015-03-18 07:00:07", "207.46.13.103", "4300");
INSERT INTO `wp_gf_form_view` VALUES("9879", "3", "2015-03-18 08:00:12", "207.46.13.103", "4260");
INSERT INTO `wp_gf_form_view` VALUES("9880", "6", "2015-03-18 08:05:19", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("9881", "3", "2015-03-18 09:00:00", "157.55.39.204", "4385");
INSERT INTO `wp_gf_form_view` VALUES("9882", "1", "2015-03-18 09:19:46", "188.143.233.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("9883", "6", "2015-03-18 09:26:05", "157.55.39.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("9884", "3", "2015-03-18 10:00:02", "207.46.13.65", "4272");
INSERT INTO `wp_gf_form_view` VALUES("9885", "6", "2015-03-18 10:12:48", "207.46.13.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("9886", "3", "2015-03-18 11:00:02", "207.46.13.8", "4010");
INSERT INTO `wp_gf_form_view` VALUES("9887", "3", "2015-03-18 12:00:07", "157.55.39.204", "4138");
INSERT INTO `wp_gf_form_view` VALUES("9888", "3", "2015-03-18 13:00:04", "207.46.13.8", "3071");
INSERT INTO `wp_gf_form_view` VALUES("9889", "6", "2015-03-18 13:55:50", "157.55.39.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("9890", "3", "2015-03-18 14:00:14", "207.46.13.65", "4179");
INSERT INTO `wp_gf_form_view` VALUES("9891", "1", "2015-03-18 14:25:28", "208.68.38.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("9892", "2", "2015-03-18 14:25:30", "208.68.38.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("9893", "6", "2015-03-18 14:59:12", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9894", "3", "2015-03-18 15:00:00", "207.46.13.103", "4279");
INSERT INTO `wp_gf_form_view` VALUES("9895", "6", "2015-03-18 15:15:11", "157.55.39.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("9896", "3", "2015-03-18 16:00:00", "207.46.13.8", "4609");
INSERT INTO `wp_gf_form_view` VALUES("9897", "3", "2015-03-18 17:00:03", "157.55.39.204", "4226");
INSERT INTO `wp_gf_form_view` VALUES("9898", "6", "2015-03-18 17:27:13", "157.55.39.204", "4");
INSERT INTO `wp_gf_form_view` VALUES("9899", "3", "2015-03-18 18:00:37", "157.55.39.204", "4802");
INSERT INTO `wp_gf_form_view` VALUES("9900", "6", "2015-03-18 18:10:11", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("9901", "3", "2015-03-18 19:00:06", "207.46.13.65", "5111");
INSERT INTO `wp_gf_form_view` VALUES("9902", "3", "2015-03-18 20:00:02", "207.46.13.65", "5942");
INSERT INTO `wp_gf_form_view` VALUES("9903", "3", "2015-03-18 21:00:02", "157.55.39.204", "5562");
INSERT INTO `wp_gf_form_view` VALUES("9904", "6", "2015-03-18 21:36:47", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9905", "3", "2015-03-18 22:00:03", "207.46.13.65", "5392");
INSERT INTO `wp_gf_form_view` VALUES("9906", "3", "2015-03-18 23:00:00", "207.46.13.65", "5447");
INSERT INTO `wp_gf_form_view` VALUES("9907", "6", "2015-03-18 23:38:05", "207.46.13.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("9908", "3", "2015-03-19 00:00:24", "207.46.13.8", "5490");
INSERT INTO `wp_gf_form_view` VALUES("9909", "3", "2015-03-19 01:00:05", "207.46.13.65", "5704");
INSERT INTO `wp_gf_form_view` VALUES("9910", "7", "2015-03-19 01:30:27", "66.249.67.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("9911", "3", "2015-03-19 02:00:02", "207.46.13.103", "5398");
INSERT INTO `wp_gf_form_view` VALUES("9912", "1", "2015-03-19 02:23:47", "113.36.26.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("9913", "6", "2015-03-19 02:32:01", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("9914", "3", "2015-03-19 03:00:04", "207.46.13.103", "5575");
INSERT INTO `wp_gf_form_view` VALUES("9915", "3", "2015-03-19 04:00:00", "207.46.13.103", "5563");
INSERT INTO `wp_gf_form_view` VALUES("9916", "6", "2015-03-19 04:11:37", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("9917", "3", "2015-03-19 05:00:08", "207.46.13.8", "5106");
INSERT INTO `wp_gf_form_view` VALUES("9918", "3", "2015-03-19 06:00:16", "207.46.13.103", "5616");
INSERT INTO `wp_gf_form_view` VALUES("9919", "3", "2015-03-19 07:00:11", "207.46.13.65", "5190");
INSERT INTO `wp_gf_form_view` VALUES("9920", "3", "2015-03-19 08:00:00", "207.46.13.103", "5326");
INSERT INTO `wp_gf_form_view` VALUES("9921", "6", "2015-03-19 08:21:32", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9922", "3", "2015-03-19 09:00:06", "157.55.39.204", "5735");
INSERT INTO `wp_gf_form_view` VALUES("9923", "6", "2015-03-19 09:00:44", "207.46.13.65", "10");
INSERT INTO `wp_gf_form_view` VALUES("9924", "3", "2015-03-19 10:00:00", "207.46.13.65", "5497");
INSERT INTO `wp_gf_form_view` VALUES("9925", "6", "2015-03-19 10:07:45", "207.46.13.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("9926", "3", "2015-03-19 11:00:01", "207.46.13.65", "5382");
INSERT INTO `wp_gf_form_view` VALUES("9927", "6", "2015-03-19 11:38:51", "157.55.39.204", "4");
INSERT INTO `wp_gf_form_view` VALUES("9928", "3", "2015-03-19 12:00:06", "207.46.13.8", "5892");
INSERT INTO `wp_gf_form_view` VALUES("9929", "3", "2015-03-19 13:00:01", "207.46.13.103", "5602");
INSERT INTO `wp_gf_form_view` VALUES("9930", "6", "2015-03-19 13:52:02", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9931", "3", "2015-03-19 14:00:02", "66.249.67.77", "5790");
INSERT INTO `wp_gf_form_view` VALUES("9932", "6", "2015-03-19 14:05:51", "66.249.67.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("9933", "3", "2015-03-19 15:00:02", "157.55.39.204", "5916");
INSERT INTO `wp_gf_form_view` VALUES("9934", "3", "2015-03-19 16:00:00", "157.55.39.204", "5983");
INSERT INTO `wp_gf_form_view` VALUES("9935", "3", "2015-03-19 17:00:00", "207.46.13.103", "4907");
INSERT INTO `wp_gf_form_view` VALUES("9936", "3", "2015-03-19 18:00:02", "66.249.67.93", "4118");
INSERT INTO `wp_gf_form_view` VALUES("9937", "6", "2015-03-19 18:01:52", "157.55.39.204", "4");
INSERT INTO `wp_gf_form_view` VALUES("9938", "3", "2015-03-19 19:00:03", "157.55.39.204", "852");
INSERT INTO `wp_gf_form_view` VALUES("9939", "3", "2015-03-19 20:00:02", "66.249.67.85", "458");
INSERT INTO `wp_gf_form_view` VALUES("9940", "6", "2015-03-19 20:04:37", "66.249.67.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("9941", "3", "2015-03-19 21:01:13", "66.249.67.85", "402");
INSERT INTO `wp_gf_form_view` VALUES("9942", "3", "2015-03-19 22:00:02", "66.249.67.77", "448");
INSERT INTO `wp_gf_form_view` VALUES("9943", "3", "2015-03-19 23:02:33", "207.46.13.8", "386");
INSERT INTO `wp_gf_form_view` VALUES("9944", "3", "2015-03-20 00:00:32", "66.249.67.77", "586");
INSERT INTO `wp_gf_form_view` VALUES("9945", "3", "2015-03-20 01:00:03", "207.46.13.65", "522");
INSERT INTO `wp_gf_form_view` VALUES("9946", "6", "2015-03-20 01:23:16", "66.249.67.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("9947", "3", "2015-03-20 02:00:56", "66.249.67.93", "378");
INSERT INTO `wp_gf_form_view` VALUES("9948", "3", "2015-03-20 03:00:17", "66.249.67.77", "306");
INSERT INTO `wp_gf_form_view` VALUES("9949", "3", "2015-03-20 04:02:09", "207.46.13.65", "342");
INSERT INTO `wp_gf_form_view` VALUES("9950", "3", "2015-03-20 05:00:31", "157.55.39.204", "506");
INSERT INTO `wp_gf_form_view` VALUES("9951", "6", "2015-03-20 05:26:08", "157.55.39.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("9952", "3", "2015-03-20 06:00:37", "66.249.67.77", "453");
INSERT INTO `wp_gf_form_view` VALUES("9953", "6", "2015-03-20 06:08:52", "157.55.39.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("9954", "3", "2015-03-20 07:00:55", "66.249.67.93", "546");
INSERT INTO `wp_gf_form_view` VALUES("9955", "3", "2015-03-20 08:00:38", "157.55.39.204", "435");
INSERT INTO `wp_gf_form_view` VALUES("9956", "3", "2015-03-20 09:00:28", "157.55.39.204", "236");
INSERT INTO `wp_gf_form_view` VALUES("9957", "3", "2015-03-20 10:03:08", "66.249.67.77", "378");
INSERT INTO `wp_gf_form_view` VALUES("9958", "6", "2015-03-20 10:23:07", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9959", "3", "2015-03-20 11:00:20", "66.249.67.77", "474");
INSERT INTO `wp_gf_form_view` VALUES("9960", "3", "2015-03-20 12:00:37", "66.249.67.93", "406");
INSERT INTO `wp_gf_form_view` VALUES("9961", "3", "2015-03-20 13:00:16", "66.249.67.85", "525");
INSERT INTO `wp_gf_form_view` VALUES("9962", "3", "2015-03-20 14:00:33", "66.249.67.93", "430");
INSERT INTO `wp_gf_form_view` VALUES("9963", "1", "2015-03-20 14:45:12", "66.249.67.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("9964", "3", "2015-03-20 15:00:51", "66.249.67.93", "306");
INSERT INTO `wp_gf_form_view` VALUES("9965", "3", "2015-03-20 16:01:31", "207.46.13.65", "458");
INSERT INTO `wp_gf_form_view` VALUES("9966", "6", "2015-03-20 16:20:20", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9967", "3", "2015-03-20 17:00:48", "66.249.67.93", "352");
INSERT INTO `wp_gf_form_view` VALUES("9968", "3", "2015-03-20 18:00:09", "207.46.13.103", "599");
INSERT INTO `wp_gf_form_view` VALUES("9969", "6", "2015-03-20 18:36:33", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("9970", "3", "2015-03-20 19:00:27", "66.249.67.77", "494");
INSERT INTO `wp_gf_form_view` VALUES("9971", "3", "2015-03-20 20:01:04", "157.55.39.204", "636");
INSERT INTO `wp_gf_form_view` VALUES("9972", "3", "2015-03-20 21:00:06", "157.55.39.204", "506");
INSERT INTO `wp_gf_form_view` VALUES("9973", "3", "2015-03-20 22:00:30", "157.55.39.204", "390");
INSERT INTO `wp_gf_form_view` VALUES("9974", "3", "2015-03-20 23:00:26", "207.46.13.65", "378");
INSERT INTO `wp_gf_form_view` VALUES("9975", "6", "2015-03-20 23:52:13", "100.43.81.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("9976", "3", "2015-03-21 00:00:34", "207.46.13.65", "516");
INSERT INTO `wp_gf_form_view` VALUES("9977", "3", "2015-03-21 01:00:06", "157.55.39.204", "434");
INSERT INTO `wp_gf_form_view` VALUES("9978", "3", "2015-03-21 02:00:32", "157.55.39.204", "522");
INSERT INTO `wp_gf_form_view` VALUES("9979", "3", "2015-03-21 03:00:44", "66.249.67.93", "470");
INSERT INTO `wp_gf_form_view` VALUES("9980", "3", "2015-03-21 04:01:28", "66.249.67.77", "352");
INSERT INTO `wp_gf_form_view` VALUES("9981", "3", "2015-03-21 05:00:49", "157.55.39.204", "520");
INSERT INTO `wp_gf_form_view` VALUES("9982", "3", "2015-03-21 06:03:35", "66.249.67.93", "460");
INSERT INTO `wp_gf_form_view` VALUES("9983", "3", "2015-03-21 07:00:19", "188.165.15.22", "548");
INSERT INTO `wp_gf_form_view` VALUES("9984", "3", "2015-03-21 08:00:29", "66.249.67.85", "476");
INSERT INTO `wp_gf_form_view` VALUES("9985", "3", "2015-03-21 09:00:32", "66.249.67.77", "430");
INSERT INTO `wp_gf_form_view` VALUES("9986", "3", "2015-03-21 10:00:49", "208.43.252.203", "850");
INSERT INTO `wp_gf_form_view` VALUES("9987", "1", "2015-03-21 10:36:35", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("9988", "3", "2015-03-21 11:00:40", "66.249.67.85", "794");
INSERT INTO `wp_gf_form_view` VALUES("9989", "6", "2015-03-21 11:25:03", "66.249.67.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("9990", "1", "2015-03-21 11:46:29", "221.237.17.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("9991", "3", "2015-03-21 12:00:04", "66.249.67.93", "1172");
INSERT INTO `wp_gf_form_view` VALUES("9992", "3", "2015-03-21 13:00:03", "66.249.67.77", "1196");
INSERT INTO `wp_gf_form_view` VALUES("9993", "2", "2015-03-21 13:33:52", "100.43.85.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("9994", "3", "2015-03-21 14:00:02", "66.249.67.85", "1520");
INSERT INTO `wp_gf_form_view` VALUES("9995", "3", "2015-03-21 15:00:00", "66.249.67.77", "1449");
INSERT INTO `wp_gf_form_view` VALUES("9996", "7", "2015-03-21 15:10:23", "100.43.85.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("9997", "6", "2015-03-21 15:21:16", "66.249.67.85", "5");
INSERT INTO `wp_gf_form_view` VALUES("9998", "3", "2015-03-21 16:00:47", "66.249.67.93", "1309");
INSERT INTO `wp_gf_form_view` VALUES("9999", "3", "2015-03-21 17:00:15", "66.249.67.93", "814");
INSERT INTO `wp_gf_form_view` VALUES("10000", "3", "2015-03-21 18:00:05", "66.249.67.93", "2188");
INSERT INTO `wp_gf_form_view` VALUES("10001", "6", "2015-03-21 18:05:48", "66.249.67.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("10002", "7", "2015-03-21 18:06:14", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("10003", "2", "2015-03-21 18:06:33", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("10004", "1", "2015-03-21 18:06:37", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("10005", "3", "2015-03-21 19:00:33", "66.249.67.93", "1142");
INSERT INTO `wp_gf_form_view` VALUES("10006", "6", "2015-03-21 19:00:34", "66.249.67.93", "6");
INSERT INTO `wp_gf_form_view` VALUES("10007", "3", "2015-03-21 20:00:02", "66.249.67.93", "1098");
INSERT INTO `wp_gf_form_view` VALUES("10008", "3", "2015-03-21 21:00:18", "66.249.67.85", "1042");
INSERT INTO `wp_gf_form_view` VALUES("10009", "6", "2015-03-21 21:16:33", "66.249.67.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("10010", "3", "2015-03-21 22:00:52", "66.249.67.93", "546");
INSERT INTO `wp_gf_form_view` VALUES("10011", "1", "2015-03-21 22:03:10", "142.104.37.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("10012", "3", "2015-03-21 23:00:20", "207.46.13.8", "292");
INSERT INTO `wp_gf_form_view` VALUES("10013", "6", "2015-03-21 23:15:06", "100.43.85.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("10014", "3", "2015-03-22 00:00:02", "66.249.67.93", "618");
INSERT INTO `wp_gf_form_view` VALUES("10015", "3", "2015-03-22 01:00:19", "66.249.67.77", "756");
INSERT INTO `wp_gf_form_view` VALUES("10016", "3", "2015-03-22 02:00:20", "66.249.67.85", "695");
INSERT INTO `wp_gf_form_view` VALUES("10017", "6", "2015-03-22 02:47:24", "217.69.133.230", "3");
INSERT INTO `wp_gf_form_view` VALUES("10018", "3", "2015-03-22 03:00:12", "66.249.67.93", "900");
INSERT INTO `wp_gf_form_view` VALUES("10019", "1", "2015-03-22 03:31:44", "104.193.9.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("10020", "3", "2015-03-22 04:00:26", "157.55.39.137", "880");
INSERT INTO `wp_gf_form_view` VALUES("10021", "1", "2015-03-22 04:41:45", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("10022", "6", "2015-03-22 04:58:09", "100.43.85.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("10023", "3", "2015-03-22 05:00:29", "157.55.39.137", "452");
INSERT INTO `wp_gf_form_view` VALUES("10024", "3", "2015-03-22 06:00:55", "157.55.39.137", "390");
INSERT INTO `wp_gf_form_view` VALUES("10025", "6", "2015-03-22 06:33:24", "157.55.39.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("10026", "3", "2015-03-22 07:01:21", "157.55.39.137", "519");
INSERT INTO `wp_gf_form_view` VALUES("10027", "6", "2015-03-22 07:43:13", "157.55.39.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("10028", "3", "2015-03-22 08:00:22", "66.249.67.77", "758");
INSERT INTO `wp_gf_form_view` VALUES("10029", "1", "2015-03-22 08:27:08", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("10030", "3", "2015-03-22 09:00:16", "66.249.67.85", "664");
INSERT INTO `wp_gf_form_view` VALUES("10031", "3", "2015-03-22 10:00:23", "66.249.67.85", "361");
INSERT INTO `wp_gf_form_view` VALUES("10032", "3", "2015-03-22 11:01:23", "66.249.67.77", "486");
INSERT INTO `wp_gf_form_view` VALUES("10033", "1", "2015-03-22 11:16:27", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("10034", "3", "2015-03-22 12:00:28", "66.249.67.85", "386");
INSERT INTO `wp_gf_form_view` VALUES("10035", "3", "2015-03-22 13:00:00", "66.249.67.93", "382");
INSERT INTO `wp_gf_form_view` VALUES("10036", "3", "2015-03-22 14:02:19", "66.249.67.85", "354");
INSERT INTO `wp_gf_form_view` VALUES("10037", "3", "2015-03-22 15:01:32", "66.249.67.85", "246");
INSERT INTO `wp_gf_form_view` VALUES("10038", "3", "2015-03-22 16:01:02", "66.249.67.77", "328");
INSERT INTO `wp_gf_form_view` VALUES("10039", "3", "2015-03-22 17:00:25", "96.50.100.195", "380");
INSERT INTO `wp_gf_form_view` VALUES("10040", "3", "2015-03-22 18:00:34", "66.249.67.85", "309");
INSERT INTO `wp_gf_form_view` VALUES("10041", "3", "2015-03-22 19:01:10", "207.46.13.8", "188");
INSERT INTO `wp_gf_form_view` VALUES("10042", "3", "2015-03-22 20:03:17", "66.249.67.77", "280");
INSERT INTO `wp_gf_form_view` VALUES("10043", "3", "2015-03-22 21:00:06", "157.55.39.113", "790");
INSERT INTO `wp_gf_form_view` VALUES("10044", "7", "2015-03-22 21:44:55", "104.193.9.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("10045", "2", "2015-03-22 21:44:58", "104.193.9.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("10046", "1", "2015-03-22 21:45:06", "104.193.9.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("10047", "3", "2015-03-22 22:00:10", "68.180.228.245", "906");
INSERT INTO `wp_gf_form_view` VALUES("10048", "6", "2015-03-22 22:04:22", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10049", "3", "2015-03-22 23:00:07", "207.46.13.65", "460");
INSERT INTO `wp_gf_form_view` VALUES("10050", "3", "2015-03-23 00:01:10", "207.46.13.65", "620");
INSERT INTO `wp_gf_form_view` VALUES("10051", "7", "2015-03-23 00:39:10", "100.43.85.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("10052", "3", "2015-03-23 01:00:17", "66.249.67.77", "686");
INSERT INTO `wp_gf_form_view` VALUES("10053", "3", "2015-03-23 02:00:05", "24.68.227.72", "616");
INSERT INTO `wp_gf_form_view` VALUES("10054", "3", "2015-03-23 03:01:38", "66.249.67.77", "930");
INSERT INTO `wp_gf_form_view` VALUES("10055", "6", "2015-03-23 03:13:17", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("10056", "1", "2015-03-23 03:41:09", "212.83.173.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("10057", "3", "2015-03-23 04:01:42", "207.46.13.8", "418");
INSERT INTO `wp_gf_form_view` VALUES("10058", "3", "2015-03-23 05:03:57", "188.165.15.22", "582");
INSERT INTO `wp_gf_form_view` VALUES("10059", "3", "2015-03-23 06:00:00", "66.249.67.93", "558");
INSERT INTO `wp_gf_form_view` VALUES("10060", "3", "2015-03-23 07:00:56", "66.249.67.77", "800");
INSERT INTO `wp_gf_form_view` VALUES("10061", "3", "2015-03-23 08:00:07", "107.170.50.206", "6030");
INSERT INTO `wp_gf_form_view` VALUES("10062", "1", "2015-03-23 08:01:59", "107.170.50.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("10063", "3", "2015-03-23 09:00:00", "107.170.50.206", "3040");
INSERT INTO `wp_gf_form_view` VALUES("10064", "3", "2015-03-23 10:00:22", "66.249.67.93", "1579");
INSERT INTO `wp_gf_form_view` VALUES("10065", "7", "2015-03-23 10:42:14", "118.140.38.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("10066", "2", "2015-03-23 10:42:32", "118.140.38.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("10067", "1", "2015-03-23 10:42:32", "118.140.38.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("10068", "3", "2015-03-23 11:00:14", "66.249.67.77", "656");
INSERT INTO `wp_gf_form_view` VALUES("10069", "6", "2015-03-23 11:04:48", "207.46.13.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("10070", "3", "2015-03-23 12:02:01", "66.249.67.85", "878");
INSERT INTO `wp_gf_form_view` VALUES("10071", "6", "2015-03-23 12:12:45", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("10072", "2", "2015-03-23 12:58:36", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("10073", "3", "2015-03-23 13:00:48", "66.249.67.93", "408");
INSERT INTO `wp_gf_form_view` VALUES("10074", "3", "2015-03-23 14:01:24", "66.249.67.85", "698");
INSERT INTO `wp_gf_form_view` VALUES("10075", "3", "2015-03-23 15:01:16", "66.249.67.85", "440");
INSERT INTO `wp_gf_form_view` VALUES("10076", "3", "2015-03-23 16:00:31", "66.249.67.77", "608");
INSERT INTO `wp_gf_form_view` VALUES("10077", "1", "2015-03-23 16:35:29", "162.156.84.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("10078", "3", "2015-03-23 17:00:20", "66.249.67.85", "707");
INSERT INTO `wp_gf_form_view` VALUES("10079", "6", "2015-03-23 17:55:52", "157.55.39.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10080", "2", "2015-03-23 17:57:56", "184.66.135.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("10081", "7", "2015-03-23 17:59:12", "184.66.135.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("10082", "3", "2015-03-23 18:00:32", "66.249.67.93", "542");
INSERT INTO `wp_gf_form_view` VALUES("10083", "3", "2015-03-23 19:00:07", "66.249.67.93", "390");
INSERT INTO `wp_gf_form_view` VALUES("10084", "3", "2015-03-23 20:00:14", "157.55.39.113", "516");
INSERT INTO `wp_gf_form_view` VALUES("10085", "6", "2015-03-23 20:29:13", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10086", "3", "2015-03-23 21:00:01", "70.77.194.32", "636");
INSERT INTO `wp_gf_form_view` VALUES("10087", "6", "2015-03-23 21:40:50", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10088", "3", "2015-03-23 22:04:14", "157.55.39.113", "378");
INSERT INTO `wp_gf_form_view` VALUES("10089", "3", "2015-03-23 23:00:20", "66.249.67.77", "406");
INSERT INTO `wp_gf_form_view` VALUES("10090", "3", "2015-03-24 00:01:19", "66.249.67.85", "1452");
INSERT INTO `wp_gf_form_view` VALUES("10091", "3", "2015-03-24 01:03:11", "100.43.85.8", "256");
INSERT INTO `wp_gf_form_view` VALUES("10092", "3", "2015-03-24 02:04:25", "207.46.13.8", "362");
INSERT INTO `wp_gf_form_view` VALUES("10093", "3", "2015-03-24 03:00:45", "66.249.67.77", "376");
INSERT INTO `wp_gf_form_view` VALUES("10094", "3", "2015-03-24 04:01:34", "66.249.67.77", "394");
INSERT INTO `wp_gf_form_view` VALUES("10095", "3", "2015-03-24 05:05:20", "66.249.67.93", "334");
INSERT INTO `wp_gf_form_view` VALUES("10096", "6", "2015-03-24 05:11:08", "100.43.85.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("10097", "3", "2015-03-24 06:01:35", "66.249.67.85", "416");
INSERT INTO `wp_gf_form_view` VALUES("10098", "3", "2015-03-24 07:00:12", "66.249.67.85", "268");
INSERT INTO `wp_gf_form_view` VALUES("10099", "3", "2015-03-24 08:00:12", "66.249.67.93", "362");
INSERT INTO `wp_gf_form_view` VALUES("10100", "3", "2015-03-24 09:05:48", "66.249.67.85", "421");
INSERT INTO `wp_gf_form_view` VALUES("10101", "6", "2015-03-24 09:16:02", "157.55.39.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10102", "3", "2015-03-24 10:00:00", "157.55.39.113", "474");
INSERT INTO `wp_gf_form_view` VALUES("10103", "3", "2015-03-24 11:00:51", "66.249.67.77", "400");
INSERT INTO `wp_gf_form_view` VALUES("10104", "3", "2015-03-24 12:00:51", "66.249.67.85", "338");
INSERT INTO `wp_gf_form_view` VALUES("10105", "3", "2015-03-24 13:00:01", "66.249.67.93", "580");
INSERT INTO `wp_gf_form_view` VALUES("10106", "7", "2015-03-24 13:47:15", "159.149.133.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("10107", "2", "2015-03-24 13:53:11", "159.149.133.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("10108", "1", "2015-03-24 13:54:23", "159.149.133.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("10109", "3", "2015-03-24 14:00:12", "66.249.67.77", "763");
INSERT INTO `wp_gf_form_view` VALUES("10110", "7", "2015-03-24 14:23:32", "109.102.30.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("10111", "1", "2015-03-24 14:23:49", "109.102.30.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("10112", "2", "2015-03-24 14:23:58", "109.102.30.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("10113", "3", "2015-03-24 15:01:16", "207.46.13.8", "296");
INSERT INTO `wp_gf_form_view` VALUES("10114", "3", "2015-03-24 16:00:30", "66.249.67.85", "402");
INSERT INTO `wp_gf_form_view` VALUES("10115", "3", "2015-03-24 17:00:39", "66.249.67.85", "448");
INSERT INTO `wp_gf_form_view` VALUES("10116", "3", "2015-03-24 18:00:30", "66.249.67.85", "452");
INSERT INTO `wp_gf_form_view` VALUES("10117", "6", "2015-03-24 18:46:29", "66.249.67.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("10118", "3", "2015-03-24 19:00:30", "66.249.67.85", "444");
INSERT INTO `wp_gf_form_view` VALUES("10119", "3", "2015-03-24 20:00:18", "66.249.67.93", "460");
INSERT INTO `wp_gf_form_view` VALUES("10120", "6", "2015-03-24 20:11:29", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10121", "3", "2015-03-24 21:00:53", "66.249.67.93", "258");
INSERT INTO `wp_gf_form_view` VALUES("10122", "3", "2015-03-24 22:04:35", "207.46.13.65", "380");
INSERT INTO `wp_gf_form_view` VALUES("10123", "3", "2015-03-24 23:00:15", "66.249.67.93", "424");
INSERT INTO `wp_gf_form_view` VALUES("10124", "3", "2015-03-25 00:00:09", "66.249.67.77", "446");
INSERT INTO `wp_gf_form_view` VALUES("10125", "2", "2015-03-25 00:18:53", "66.249.67.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("10126", "3", "2015-03-25 01:00:45", "66.249.67.77", "524");
INSERT INTO `wp_gf_form_view` VALUES("10127", "3", "2015-03-25 02:00:15", "66.249.67.77", "458");
INSERT INTO `wp_gf_form_view` VALUES("10128", "3", "2015-03-25 03:00:11", "24.108.88.203", "316");
INSERT INTO `wp_gf_form_view` VALUES("10129", "3", "2015-03-25 04:00:56", "100.43.85.8", "488");
INSERT INTO `wp_gf_form_view` VALUES("10130", "3", "2015-03-25 05:00:14", "157.55.39.113", "428");
INSERT INTO `wp_gf_form_view` VALUES("10131", "3", "2015-03-25 06:02:33", "66.249.67.93", "460");
INSERT INTO `wp_gf_form_view` VALUES("10132", "1", "2015-03-25 06:58:36", "192.3.30.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("10133", "3", "2015-03-25 07:00:13", "207.46.13.65", "458");
INSERT INTO `wp_gf_form_view` VALUES("10134", "3", "2015-03-25 08:00:51", "207.46.13.65", "383");
INSERT INTO `wp_gf_form_view` VALUES("10135", "3", "2015-03-25 09:01:38", "66.249.67.85", "288");
INSERT INTO `wp_gf_form_view` VALUES("10136", "3", "2015-03-25 10:01:16", "157.55.39.113", "312");
INSERT INTO `wp_gf_form_view` VALUES("10137", "3", "2015-03-25 11:02:39", "66.249.67.93", "554");
INSERT INTO `wp_gf_form_view` VALUES("10138", "3", "2015-03-25 12:01:06", "157.55.39.113", "472");
INSERT INTO `wp_gf_form_view` VALUES("10139", "3", "2015-03-25 13:01:02", "66.249.67.85", "564");
INSERT INTO `wp_gf_form_view` VALUES("10140", "3", "2015-03-25 14:00:40", "66.249.67.77", "366");
INSERT INTO `wp_gf_form_view` VALUES("10141", "3", "2015-03-25 15:02:55", "157.55.39.113", "370");
INSERT INTO `wp_gf_form_view` VALUES("10142", "3", "2015-03-25 16:00:41", "157.55.39.113", "414");
INSERT INTO `wp_gf_form_view` VALUES("10143", "3", "2015-03-25 17:00:38", "66.249.67.85", "442");
INSERT INTO `wp_gf_form_view` VALUES("10144", "1", "2015-03-25 17:06:54", "62.210.250.221", "2");
INSERT INTO `wp_gf_form_view` VALUES("10145", "3", "2015-03-25 18:01:18", "209.222.8.75", "442");
INSERT INTO `wp_gf_form_view` VALUES("10146", "2", "2015-03-25 18:14:02", "209.222.8.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("10147", "6", "2015-03-25 18:54:31", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10148", "3", "2015-03-25 19:03:22", "66.249.67.77", "464");
INSERT INTO `wp_gf_form_view` VALUES("10149", "3", "2015-03-25 20:00:15", "66.249.67.85", "474");
INSERT INTO `wp_gf_form_view` VALUES("10150", "1", "2015-03-25 20:55:16", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("10151", "3", "2015-03-25 21:00:25", "66.249.67.93", "771");
INSERT INTO `wp_gf_form_view` VALUES("10152", "1", "2015-03-25 21:04:05", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("10153", "3", "2015-03-25 22:00:17", "80.122.213.230", "1236");
INSERT INTO `wp_gf_form_view` VALUES("10154", "3", "2015-03-25 23:00:35", "157.55.39.113", "2378");
INSERT INTO `wp_gf_form_view` VALUES("10155", "3", "2015-03-26 00:00:20", "157.55.39.113", "2553");
INSERT INTO `wp_gf_form_view` VALUES("10156", "2", "2015-03-26 00:23:37", "198.211.108.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("10157", "1", "2015-03-26 00:23:37", "198.211.108.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("10158", "3", "2015-03-26 01:00:05", "207.46.13.65", "2485");
INSERT INTO `wp_gf_form_view` VALUES("10159", "1", "2015-03-26 01:17:02", "198.23.227.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("10160", "3", "2015-03-26 02:00:09", "157.55.39.46", "2896");
INSERT INTO `wp_gf_form_view` VALUES("10161", "1", "2015-03-26 02:02:36", "58.49.31.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("10162", "3", "2015-03-26 03:00:04", "207.46.13.65", "2496");
INSERT INTO `wp_gf_form_view` VALUES("10163", "3", "2015-03-26 04:00:24", "157.55.39.46", "2132");
INSERT INTO `wp_gf_form_view` VALUES("10164", "3", "2015-03-26 05:00:26", "157.55.39.46", "2274");
INSERT INTO `wp_gf_form_view` VALUES("10165", "3", "2015-03-26 06:00:16", "207.46.13.65", "2430");
INSERT INTO `wp_gf_form_view` VALUES("10166", "3", "2015-03-26 07:00:02", "157.55.39.46", "2922");
INSERT INTO `wp_gf_form_view` VALUES("10167", "3", "2015-03-26 08:00:14", "157.55.39.46", "2430");
INSERT INTO `wp_gf_form_view` VALUES("10168", "3", "2015-03-26 09:00:11", "207.46.13.65", "2520");
INSERT INTO `wp_gf_form_view` VALUES("10169", "3", "2015-03-26 10:00:07", "157.55.39.46", "2517");
INSERT INTO `wp_gf_form_view` VALUES("10170", "3", "2015-03-26 11:00:17", "207.46.13.65", "2394");
INSERT INTO `wp_gf_form_view` VALUES("10171", "3", "2015-03-26 12:00:14", "157.55.39.46", "2358");
INSERT INTO `wp_gf_form_view` VALUES("10172", "3", "2015-03-26 13:00:07", "157.55.39.113", "2222");
INSERT INTO `wp_gf_form_view` VALUES("10173", "3", "2015-03-26 14:00:04", "157.55.39.46", "2861");
INSERT INTO `wp_gf_form_view` VALUES("10174", "7", "2015-03-26 14:01:16", "155.94.169.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10175", "2", "2015-03-26 14:01:51", "155.94.169.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10176", "1", "2015-03-26 14:01:56", "155.94.169.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10177", "3", "2015-03-26 15:00:09", "207.46.13.8", "2690");
INSERT INTO `wp_gf_form_view` VALUES("10178", "6", "2015-03-26 15:15:39", "66.249.67.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("10179", "3", "2015-03-26 16:00:39", "157.55.39.46", "2296");
INSERT INTO `wp_gf_form_view` VALUES("10180", "3", "2015-03-26 17:00:28", "157.55.39.113", "2730");
INSERT INTO `wp_gf_form_view` VALUES("10181", "3", "2015-03-26 18:00:35", "207.46.13.8", "2834");
INSERT INTO `wp_gf_form_view` VALUES("10182", "3", "2015-03-26 19:00:06", "207.46.13.65", "2546");
INSERT INTO `wp_gf_form_view` VALUES("10183", "3", "2015-03-26 20:00:17", "207.46.13.65", "2650");
INSERT INTO `wp_gf_form_view` VALUES("10184", "3", "2015-03-26 21:00:24", "66.249.67.77", "2921");
INSERT INTO `wp_gf_form_view` VALUES("10185", "1", "2015-03-26 21:03:28", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("10186", "5", "2015-03-26 21:04:06", "96.50.93.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("10187", "3", "2015-03-26 22:00:11", "157.55.39.46", "2468");
INSERT INTO `wp_gf_form_view` VALUES("10188", "7", "2015-03-26 22:02:30", "207.46.13.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("10189", "5", "2015-03-26 22:24:14", "207.46.13.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("10190", "3", "2015-03-26 23:00:38", "207.46.13.8", "1716");
INSERT INTO `wp_gf_form_view` VALUES("10191", "3", "2015-03-27 00:00:06", "207.46.13.65", "972");
INSERT INTO `wp_gf_form_view` VALUES("10192", "3", "2015-03-27 01:02:38", "66.249.67.77", "660");
INSERT INTO `wp_gf_form_view` VALUES("10193", "3", "2015-03-27 02:04:56", "66.249.67.77", "2184");
INSERT INTO `wp_gf_form_view` VALUES("10194", "3", "2015-03-27 03:00:14", "207.46.13.65", "3654");
INSERT INTO `wp_gf_form_view` VALUES("10195", "3", "2015-03-27 04:00:09", "207.46.13.65", "3102");
INSERT INTO `wp_gf_form_view` VALUES("10196", "3", "2015-03-27 05:00:07", "157.55.39.46", "1894");
INSERT INTO `wp_gf_form_view` VALUES("10197", "3", "2015-03-27 06:00:02", "66.249.67.77", "1984");
INSERT INTO `wp_gf_form_view` VALUES("10198", "3", "2015-03-27 07:00:20", "157.55.39.46", "2446");
INSERT INTO `wp_gf_form_view` VALUES("10199", "3", "2015-03-27 08:00:00", "207.46.13.65", "2364");
INSERT INTO `wp_gf_form_view` VALUES("10200", "3", "2015-03-27 09:00:29", "207.46.13.65", "2078");
INSERT INTO `wp_gf_form_view` VALUES("10201", "3", "2015-03-27 10:00:03", "66.249.67.93", "2250");
INSERT INTO `wp_gf_form_view` VALUES("10202", "3", "2015-03-27 11:00:06", "157.55.39.113", "2054");
INSERT INTO `wp_gf_form_view` VALUES("10203", "3", "2015-03-27 12:00:40", "207.46.13.65", "2254");
INSERT INTO `wp_gf_form_view` VALUES("10204", "3", "2015-03-27 13:00:19", "207.46.13.65", "2262");
INSERT INTO `wp_gf_form_view` VALUES("10205", "3", "2015-03-27 14:00:37", "66.249.67.77", "2534");
INSERT INTO `wp_gf_form_view` VALUES("10206", "3", "2015-03-27 15:00:00", "207.46.13.65", "2332");
INSERT INTO `wp_gf_form_view` VALUES("10207", "3", "2015-03-27 16:00:35", "157.55.39.46", "2202");
INSERT INTO `wp_gf_form_view` VALUES("10208", "7", "2015-03-27 16:41:36", "205.250.84.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("10209", "3", "2015-03-27 17:00:17", "207.46.13.65", "2196");
INSERT INTO `wp_gf_form_view` VALUES("10210", "1", "2015-03-27 17:29:37", "58.49.31.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("10211", "2", "2015-03-27 17:29:40", "58.49.31.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("10212", "3", "2015-03-27 18:00:33", "207.46.13.65", "1582");
INSERT INTO `wp_gf_form_view` VALUES("10213", "3", "2015-03-27 19:00:37", "66.249.67.77", "2164");
INSERT INTO `wp_gf_form_view` VALUES("10214", "3", "2015-03-27 20:00:07", "66.249.67.93", "2518");
INSERT INTO `wp_gf_form_view` VALUES("10215", "3", "2015-03-27 21:00:23", "207.46.13.65", "2722");
INSERT INTO `wp_gf_form_view` VALUES("10216", "3", "2015-03-27 22:01:00", "66.249.79.93", "2172");
INSERT INTO `wp_gf_form_view` VALUES("10217", "3", "2015-03-27 23:00:12", "207.46.13.65", "1804");
INSERT INTO `wp_gf_form_view` VALUES("10218", "3", "2015-03-28 00:01:27", "66.249.79.85", "3218");
INSERT INTO `wp_gf_form_view` VALUES("10219", "3", "2015-03-28 01:00:21", "207.46.13.65", "4349");
INSERT INTO `wp_gf_form_view` VALUES("10220", "5", "2015-03-28 01:04:02", "66.249.79.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("10221", "6", "2015-03-28 01:08:59", "188.165.15.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("10222", "7", "2015-03-28 01:47:46", "188.165.15.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("10223", "3", "2015-03-28 02:00:05", "157.55.39.46", "3967");
INSERT INTO `wp_gf_form_view` VALUES("10224", "3", "2015-03-28 03:00:08", "157.55.39.46", "2948");
INSERT INTO `wp_gf_form_view` VALUES("10225", "6", "2015-03-28 03:48:09", "148.251.69.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("10226", "3", "2015-03-28 04:00:15", "157.55.39.46", "2624");
INSERT INTO `wp_gf_form_view` VALUES("10227", "3", "2015-03-28 05:00:33", "207.46.13.65", "2752");
INSERT INTO `wp_gf_form_view` VALUES("10228", "2", "2015-03-28 05:05:17", "188.165.15.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("10229", "3", "2015-03-28 06:00:05", "207.46.13.8", "2731");
INSERT INTO `wp_gf_form_view` VALUES("10230", "7", "2015-03-28 06:56:25", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("10231", "1", "2015-03-28 06:56:51", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("10232", "2", "2015-03-28 06:57:04", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("10233", "3", "2015-03-28 07:00:05", "68.180.228.245", "2880");
INSERT INTO `wp_gf_form_view` VALUES("10234", "1", "2015-03-28 07:33:20", "58.49.31.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("10235", "6", "2015-03-28 07:50:44", "100.43.85.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("10236", "3", "2015-03-28 08:00:01", "157.55.39.46", "2706");
INSERT INTO `wp_gf_form_view` VALUES("10237", "6", "2015-03-28 08:40:43", "66.249.79.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("10238", "3", "2015-03-28 09:00:08", "207.46.13.65", "2324");
INSERT INTO `wp_gf_form_view` VALUES("10239", "3", "2015-03-28 10:00:29", "66.249.79.85", "1604");
INSERT INTO `wp_gf_form_view` VALUES("10240", "6", "2015-03-28 10:19:20", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10241", "1", "2015-03-28 10:49:50", "58.49.31.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("10242", "3", "2015-03-28 11:00:02", "157.55.39.46", "823");
INSERT INTO `wp_gf_form_view` VALUES("10243", "3", "2015-03-28 12:00:29", "157.55.39.113", "626");
INSERT INTO `wp_gf_form_view` VALUES("10244", "3", "2015-03-28 13:00:29", "66.249.79.85", "943");
INSERT INTO `wp_gf_form_view` VALUES("10245", "2", "2015-03-28 13:09:08", "58.49.31.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("10246", "3", "2015-03-28 14:00:17", "157.55.39.46", "774");
INSERT INTO `wp_gf_form_view` VALUES("10247", "7", "2015-03-28 14:46:45", "209.222.8.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("10248", "3", "2015-03-28 15:00:20", "68.180.228.245", "996");
INSERT INTO `wp_gf_form_view` VALUES("10249", "6", "2015-03-28 15:00:20", "68.180.228.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("10250", "3", "2015-03-28 16:01:23", "66.249.79.93", "993");
INSERT INTO `wp_gf_form_view` VALUES("10251", "3", "2015-03-28 17:01:50", "157.55.39.46", "648");
INSERT INTO `wp_gf_form_view` VALUES("10252", "3", "2015-03-28 18:00:22", "66.249.79.77", "639");
INSERT INTO `wp_gf_form_view` VALUES("10253", "2", "2015-03-28 18:58:12", "183.203.22.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("10254", "3", "2015-03-28 19:00:26", "157.55.39.46", "745");
INSERT INTO `wp_gf_form_view` VALUES("10255", "3", "2015-03-28 20:00:00", "157.55.39.46", "643");
INSERT INTO `wp_gf_form_view` VALUES("10256", "3", "2015-03-28 21:00:13", "207.46.13.65", "648");
INSERT INTO `wp_gf_form_view` VALUES("10257", "3", "2015-03-28 22:01:18", "207.46.13.65", "678");
INSERT INTO `wp_gf_form_view` VALUES("10258", "3", "2015-03-28 23:00:49", "66.249.79.77", "697");
INSERT INTO `wp_gf_form_view` VALUES("10259", "3", "2015-03-29 00:00:07", "207.46.13.65", "729");
INSERT INTO `wp_gf_form_view` VALUES("10260", "3", "2015-03-29 01:00:20", "157.55.39.46", "680");
INSERT INTO `wp_gf_form_view` VALUES("10261", "6", "2015-03-29 01:59:36", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("10262", "3", "2015-03-29 02:01:04", "157.55.39.113", "581");
INSERT INTO `wp_gf_form_view` VALUES("10263", "3", "2015-03-29 03:00:16", "157.55.39.46", "776");
INSERT INTO `wp_gf_form_view` VALUES("10264", "3", "2015-03-29 04:00:05", "157.55.39.46", "619");
INSERT INTO `wp_gf_form_view` VALUES("10265", "1", "2015-03-29 04:03:13", "184.66.148.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("10266", "3", "2015-03-29 05:00:11", "207.46.13.65", "590");
INSERT INTO `wp_gf_form_view` VALUES("10267", "3", "2015-03-29 06:00:45", "157.55.39.113", "569");
INSERT INTO `wp_gf_form_view` VALUES("10268", "3", "2015-03-29 07:00:28", "157.55.39.46", "662");
INSERT INTO `wp_gf_form_view` VALUES("10269", "3", "2015-03-29 08:00:00", "157.55.39.113", "774");
INSERT INTO `wp_gf_form_view` VALUES("10270", "5", "2015-03-29 08:10:05", "66.249.79.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("10271", "3", "2015-03-29 09:00:19", "207.46.13.65", "557");
INSERT INTO `wp_gf_form_view` VALUES("10272", "3", "2015-03-29 10:00:42", "66.249.79.85", "737");
INSERT INTO `wp_gf_form_view` VALUES("10273", "1", "2015-03-29 10:44:39", "58.49.31.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("10274", "3", "2015-03-29 11:00:03", "157.55.39.46", "766");
INSERT INTO `wp_gf_form_view` VALUES("10275", "3", "2015-03-29 12:00:04", "207.46.13.65", "700");
INSERT INTO `wp_gf_form_view` VALUES("10276", "3", "2015-03-29 13:00:56", "207.46.13.65", "825");
INSERT INTO `wp_gf_form_view` VALUES("10277", "7", "2015-03-29 13:58:13", "184.144.134.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("10278", "3", "2015-03-29 14:00:15", "184.144.134.172", "780");
INSERT INTO `wp_gf_form_view` VALUES("10279", "3", "2015-03-29 15:00:07", "157.55.39.46", "658");
INSERT INTO `wp_gf_form_view` VALUES("10280", "3", "2015-03-29 16:00:06", "157.55.39.46", "773");
INSERT INTO `wp_gf_form_view` VALUES("10281", "3", "2015-03-29 17:00:14", "207.46.13.65", "760");
INSERT INTO `wp_gf_form_view` VALUES("10282", "6", "2015-03-29 17:08:09", "100.43.90.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("10283", "3", "2015-03-29 18:00:09", "66.249.79.93", "816");
INSERT INTO `wp_gf_form_view` VALUES("10284", "2", "2015-03-29 18:26:05", "62.210.83.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("10285", "7", "2015-03-29 18:47:58", "66.249.79.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("10286", "3", "2015-03-29 19:00:28", "207.46.13.65", "740");
INSERT INTO `wp_gf_form_view` VALUES("10287", "3", "2015-03-29 20:00:48", "207.46.13.65", "653");
INSERT INTO `wp_gf_form_view` VALUES("10288", "3", "2015-03-29 21:00:09", "207.46.13.65", "724");
INSERT INTO `wp_gf_form_view` VALUES("10289", "3", "2015-03-29 22:01:19", "62.210.83.64", "561");
INSERT INTO `wp_gf_form_view` VALUES("10290", "1", "2015-03-29 22:38:46", "5.157.15.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("10291", "3", "2015-03-29 23:01:21", "207.46.13.65", "1686");
INSERT INTO `wp_gf_form_view` VALUES("10292", "7", "2015-03-29 23:17:45", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("10293", "5", "2015-03-29 23:18:05", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("10294", "2", "2015-03-29 23:18:56", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("10295", "6", "2015-03-29 23:22:04", "109.169.29.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("10296", "3", "2015-03-30 00:00:45", "66.249.79.85", "1054");
INSERT INTO `wp_gf_form_view` VALUES("10297", "7", "2015-03-30 00:43:20", "5.39.223.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("10298", "1", "2015-03-30 00:43:48", "5.39.223.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("10299", "2", "2015-03-30 00:44:04", "5.39.223.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("10300", "3", "2015-03-30 01:00:42", "207.46.13.65", "424");
INSERT INTO `wp_gf_form_view` VALUES("10301", "3", "2015-03-30 02:03:39", "157.55.39.46", "74");
INSERT INTO `wp_gf_form_view` VALUES("10302", "3", "2015-03-30 03:01:31", "66.249.79.77", "68");
INSERT INTO `wp_gf_form_view` VALUES("10303", "3", "2015-03-30 04:00:42", "209.121.9.25", "460");
INSERT INTO `wp_gf_form_view` VALUES("10304", "3", "2015-03-30 05:00:08", "66.249.79.85", "130");
INSERT INTO `wp_gf_form_view` VALUES("10305", "3", "2015-03-30 06:00:28", "68.180.228.245", "361");
INSERT INTO `wp_gf_form_view` VALUES("10306", "3", "2015-03-30 07:04:26", "66.249.79.77", "80");
INSERT INTO `wp_gf_form_view` VALUES("10307", "1", "2015-03-30 07:40:00", "104.193.9.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("10308", "3", "2015-03-30 08:01:43", "66.249.79.93", "104");
INSERT INTO `wp_gf_form_view` VALUES("10309", "3", "2015-03-30 09:00:24", "66.249.79.77", "96");
INSERT INTO `wp_gf_form_view` VALUES("10310", "3", "2015-03-30 10:00:35", "66.249.79.85", "144");
INSERT INTO `wp_gf_form_view` VALUES("10311", "3", "2015-03-30 11:00:08", "157.55.39.46", "106");
INSERT INTO `wp_gf_form_view` VALUES("10312", "3", "2015-03-30 12:03:45", "173.61.113.14", "421");
INSERT INTO `wp_gf_form_view` VALUES("10313", "7", "2015-03-30 12:04:20", "173.61.113.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("10314", "1", "2015-03-30 12:04:29", "173.61.113.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("10315", "2", "2015-03-30 12:04:34", "173.61.113.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("10316", "3", "2015-03-30 13:10:06", "66.249.79.85", "287");
INSERT INTO `wp_gf_form_view` VALUES("10317", "3", "2015-03-30 14:01:31", "66.249.79.85", "112");
INSERT INTO `wp_gf_form_view` VALUES("10318", "3", "2015-03-30 15:01:36", "66.249.79.93", "138");
INSERT INTO `wp_gf_form_view` VALUES("10319", "3", "2015-03-30 16:00:51", "66.249.79.77", "98");
INSERT INTO `wp_gf_form_view` VALUES("10320", "3", "2015-03-30 17:01:24", "66.249.79.77", "80");
INSERT INTO `wp_gf_form_view` VALUES("10321", "3", "2015-03-30 18:02:40", "66.249.79.85", "359");
INSERT INTO `wp_gf_form_view` VALUES("10322", "3", "2015-03-30 19:02:10", "157.55.39.46", "652");
INSERT INTO `wp_gf_form_view` VALUES("10323", "3", "2015-03-30 20:01:54", "207.46.13.65", "698");
INSERT INTO `wp_gf_form_view` VALUES("10324", "3", "2015-03-30 21:00:07", "207.46.13.65", "964");
INSERT INTO `wp_gf_form_view` VALUES("10325", "5", "2015-03-30 21:02:40", "209.222.8.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("10326", "1", "2015-03-30 21:53:06", "184.66.135.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("10327", "3", "2015-03-30 22:00:48", "207.46.13.65", "696");
INSERT INTO `wp_gf_form_view` VALUES("10328", "3", "2015-03-30 23:02:48", "207.46.13.65", "722");
INSERT INTO `wp_gf_form_view` VALUES("10329", "1", "2015-03-30 23:30:21", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("10330", "3", "2015-03-31 00:00:11", "157.55.39.113", "802");
INSERT INTO `wp_gf_form_view` VALUES("10331", "3", "2015-03-31 01:00:59", "68.180.228.245", "963");
INSERT INTO `wp_gf_form_view` VALUES("10332", "3", "2015-03-31 02:01:26", "207.46.13.65", "704");
INSERT INTO `wp_gf_form_view` VALUES("10333", "3", "2015-03-31 03:00:36", "207.46.13.65", "574");
INSERT INTO `wp_gf_form_view` VALUES("10334", "3", "2015-03-31 04:03:27", "157.55.39.46", "534");
INSERT INTO `wp_gf_form_view` VALUES("10335", "3", "2015-03-31 05:00:00", "157.55.39.46", "936");
INSERT INTO `wp_gf_form_view` VALUES("10336", "1", "2015-03-31 05:41:05", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("10337", "3", "2015-03-31 06:00:32", "207.46.13.65", "794");
INSERT INTO `wp_gf_form_view` VALUES("10338", "3", "2015-03-31 07:01:39", "207.46.13.65", "748");
INSERT INTO `wp_gf_form_view` VALUES("10339", "3", "2015-03-31 08:00:03", "66.249.79.93", "748");
INSERT INTO `wp_gf_form_view` VALUES("10340", "3", "2015-03-31 09:00:54", "157.55.39.46", "1048");
INSERT INTO `wp_gf_form_view` VALUES("10341", "3", "2015-03-31 10:00:56", "157.55.39.46", "796");
INSERT INTO `wp_gf_form_view` VALUES("10342", "1", "2015-03-31 10:04:50", "157.55.39.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10343", "2", "2015-03-31 10:05:43", "58.49.236.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("10344", "3", "2015-03-31 11:02:04", "157.55.39.46", "878");
INSERT INTO `wp_gf_form_view` VALUES("10345", "3", "2015-03-31 12:00:21", "207.46.13.65", "820");
INSERT INTO `wp_gf_form_view` VALUES("10346", "2", "2015-03-31 12:35:16", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("10347", "3", "2015-03-31 13:00:13", "207.46.13.65", "810");
INSERT INTO `wp_gf_form_view` VALUES("10348", "3", "2015-03-31 14:00:14", "157.55.39.46", "712");
INSERT INTO `wp_gf_form_view` VALUES("10349", "3", "2015-03-31 15:00:27", "66.249.79.85", "868");
INSERT INTO `wp_gf_form_view` VALUES("10350", "6", "2015-03-31 15:56:14", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10351", "3", "2015-03-31 16:00:02", "207.46.13.65", "748");
INSERT INTO `wp_gf_form_view` VALUES("10352", "3", "2015-03-31 17:00:26", "207.46.13.8", "1054");
INSERT INTO `wp_gf_form_view` VALUES("10353", "3", "2015-03-31 18:00:08", "207.46.13.65", "813");
INSERT INTO `wp_gf_form_view` VALUES("10354", "3", "2015-03-31 19:00:14", "207.46.13.65", "738");
INSERT INTO `wp_gf_form_view` VALUES("10355", "3", "2015-03-31 20:00:28", "66.249.79.85", "822");
INSERT INTO `wp_gf_form_view` VALUES("10356", "6", "2015-03-31 20:10:42", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10357", "1", "2015-03-31 20:43:44", "209.249.5.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("10358", "3", "2015-03-31 21:00:50", "157.55.39.46", "892");
INSERT INTO `wp_gf_form_view` VALUES("10359", "3", "2015-03-31 22:00:33", "157.55.39.46", "904");
INSERT INTO `wp_gf_form_view` VALUES("10360", "3", "2015-03-31 23:00:09", "157.55.39.46", "1044");
INSERT INTO `wp_gf_form_view` VALUES("10361", "5", "2015-03-31 23:11:11", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("10362", "3", "2015-04-01 00:01:25", "207.46.13.65", "930");
INSERT INTO `wp_gf_form_view` VALUES("10363", "3", "2015-04-01 01:00:07", "157.55.39.46", "946");
INSERT INTO `wp_gf_form_view` VALUES("10364", "6", "2015-04-01 01:25:35", "66.249.79.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("10365", "1", "2015-04-01 01:58:06", "157.55.39.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10366", "3", "2015-04-01 02:00:19", "66.249.79.77", "890");
INSERT INTO `wp_gf_form_view` VALUES("10367", "3", "2015-04-01 03:00:15", "66.249.79.85", "1061");
INSERT INTO `wp_gf_form_view` VALUES("10368", "2", "2015-04-01 03:50:10", "195.154.181.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("10369", "3", "2015-04-01 04:00:53", "157.55.39.46", "794");
INSERT INTO `wp_gf_form_view` VALUES("10370", "3", "2015-04-01 05:01:01", "66.249.79.85", "834");
INSERT INTO `wp_gf_form_view` VALUES("10371", "3", "2015-04-01 06:00:12", "157.55.39.46", "792");
INSERT INTO `wp_gf_form_view` VALUES("10372", "1", "2015-04-01 06:00:27", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("10373", "3", "2015-04-01 07:00:17", "207.46.13.65", "732");
INSERT INTO `wp_gf_form_view` VALUES("10374", "3", "2015-04-01 08:00:56", "157.55.39.46", "1151");
INSERT INTO `wp_gf_form_view` VALUES("10375", "6", "2015-04-01 08:36:13", "157.55.39.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("10376", "3", "2015-04-01 09:00:04", "207.46.13.65", "706");
INSERT INTO `wp_gf_form_view` VALUES("10377", "3", "2015-04-01 10:01:43", "157.55.39.113", "782");
INSERT INTO `wp_gf_form_view` VALUES("10378", "3", "2015-04-01 11:00:05", "66.249.67.77", "826");
INSERT INTO `wp_gf_form_view` VALUES("10379", "3", "2015-04-01 12:00:16", "207.46.13.65", "796");
INSERT INTO `wp_gf_form_view` VALUES("10380", "3", "2015-04-01 13:00:22", "157.55.39.46", "772");
INSERT INTO `wp_gf_form_view` VALUES("10381", "7", "2015-04-01 13:17:43", "96.50.110.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("10382", "3", "2015-04-01 14:01:39", "207.46.13.8", "786");
INSERT INTO `wp_gf_form_view` VALUES("10383", "3", "2015-04-01 15:00:53", "207.46.13.65", "818");
INSERT INTO `wp_gf_form_view` VALUES("10384", "3", "2015-04-01 16:00:28", "207.46.13.65", "1030");
INSERT INTO `wp_gf_form_view` VALUES("10385", "3", "2015-04-01 17:01:02", "157.55.39.46", "1119");
INSERT INTO `wp_gf_form_view` VALUES("10386", "7", "2015-04-01 17:27:01", "93.0.218.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("10387", "1", "2015-04-01 17:27:27", "93.0.218.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("10388", "2", "2015-04-01 17:27:41", "93.0.218.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("10389", "6", "2015-04-01 17:31:32", "66.249.79.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("10390", "3", "2015-04-01 18:00:00", "104.245.101.68", "1014");
INSERT INTO `wp_gf_form_view` VALUES("10391", "3", "2015-04-01 19:01:13", "157.55.39.46", "648");
INSERT INTO `wp_gf_form_view` VALUES("10392", "3", "2015-04-01 20:00:17", "207.46.13.65", "669");
INSERT INTO `wp_gf_form_view` VALUES("10393", "3", "2015-04-01 21:05:12", "157.55.39.46", "652");
INSERT INTO `wp_gf_form_view` VALUES("10394", "3", "2015-04-01 22:00:39", "157.55.39.46", "533");
INSERT INTO `wp_gf_form_view` VALUES("10395", "3", "2015-04-01 23:00:09", "66.249.79.77", "606");
INSERT INTO `wp_gf_form_view` VALUES("10396", "3", "2015-04-02 00:00:34", "66.249.79.77", "444");
INSERT INTO `wp_gf_form_view` VALUES("10397", "3", "2015-04-02 01:00:31", "66.249.79.77", "146");
INSERT INTO `wp_gf_form_view` VALUES("10398", "3", "2015-04-02 02:26:08", "134.249.53.8", "56");
INSERT INTO `wp_gf_form_view` VALUES("10399", "3", "2015-04-02 03:00:24", "66.249.79.77", "42");
INSERT INTO `wp_gf_form_view` VALUES("10400", "3", "2015-04-02 04:11:32", "66.249.79.93", "436");
INSERT INTO `wp_gf_form_view` VALUES("10401", "3", "2015-04-02 05:01:13", "66.249.79.93", "146");
INSERT INTO `wp_gf_form_view` VALUES("10402", "3", "2015-04-02 06:01:33", "66.249.79.77", "195");
INSERT INTO `wp_gf_form_view` VALUES("10403", "6", "2015-04-02 06:07:12", "157.55.39.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10404", "7", "2015-04-02 06:40:38", "202.46.48.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("10405", "3", "2015-04-02 07:00:08", "66.249.79.85", "210");
INSERT INTO `wp_gf_form_view` VALUES("10406", "3", "2015-04-02 08:00:52", "66.249.79.93", "144");
INSERT INTO `wp_gf_form_view` VALUES("10407", "3", "2015-04-02 09:00:46", "68.180.228.245", "792");
INSERT INTO `wp_gf_form_view` VALUES("10408", "1", "2015-04-02 09:22:26", "66.249.79.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("10409", "3", "2015-04-02 10:14:18", "66.249.79.85", "46");
INSERT INTO `wp_gf_form_view` VALUES("10410", "3", "2015-04-02 11:12:08", "68.180.228.245", "301");
INSERT INTO `wp_gf_form_view` VALUES("10411", "7", "2015-04-02 11:37:50", "207.63.249.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("10412", "1", "2015-04-02 11:38:20", "207.63.249.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("10413", "2", "2015-04-02 11:38:29", "207.63.249.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("10414", "3", "2015-04-02 12:08:30", "202.46.63.163", "50");
INSERT INTO `wp_gf_form_view` VALUES("10415", "6", "2015-04-02 12:25:38", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("10416", "3", "2015-04-02 13:04:00", "68.180.228.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("10417", "3", "2015-04-02 14:13:12", "66.249.79.93", "90");
INSERT INTO `wp_gf_form_view` VALUES("10418", "3", "2015-04-02 15:05:31", "68.180.228.245", "50");
INSERT INTO `wp_gf_form_view` VALUES("10419", "3", "2015-04-02 16:15:29", "66.249.79.77", "64");
INSERT INTO `wp_gf_form_view` VALUES("10420", "3", "2015-04-02 17:00:30", "68.180.228.245", "140");
INSERT INTO `wp_gf_form_view` VALUES("10421", "3", "2015-04-02 18:00:12", "207.194.133.9", "142");
INSERT INTO `wp_gf_form_view` VALUES("10422", "1", "2015-04-02 18:07:00", "125.71.52.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("10423", "3", "2015-04-02 19:01:42", "68.180.228.245", "40");
INSERT INTO `wp_gf_form_view` VALUES("10424", "3", "2015-04-02 20:26:11", "46.105.249.20", "317");
INSERT INTO `wp_gf_form_view` VALUES("10425", "7", "2015-04-02 20:27:49", "46.105.249.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("10426", "1", "2015-04-02 20:28:22", "46.105.249.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("10427", "2", "2015-04-02 20:28:37", "46.105.249.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("10428", "3", "2015-04-02 21:06:25", "157.55.39.54", "40");
INSERT INTO `wp_gf_form_view` VALUES("10429", "3", "2015-04-02 22:04:32", "66.249.79.93", "62");
INSERT INTO `wp_gf_form_view` VALUES("10430", "3", "2015-04-02 23:13:44", "66.249.79.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("10431", "3", "2015-04-03 00:03:21", "207.46.13.65", "70");
INSERT INTO `wp_gf_form_view` VALUES("10432", "3", "2015-04-03 01:03:27", "66.249.79.93", "322");
INSERT INTO `wp_gf_form_view` VALUES("10433", "7", "2015-04-03 01:59:00", "93.0.218.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("10434", "1", "2015-04-03 01:59:19", "93.0.218.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("10435", "2", "2015-04-03 01:59:27", "93.0.218.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("10436", "3", "2015-04-03 02:00:01", "93.0.218.98", "83");
INSERT INTO `wp_gf_form_view` VALUES("10437", "3", "2015-04-03 03:16:02", "66.249.79.85", "26");
INSERT INTO `wp_gf_form_view` VALUES("10438", "3", "2015-04-03 05:04:09", "207.46.13.65", "80");
INSERT INTO `wp_gf_form_view` VALUES("10439", "3", "2015-04-03 06:07:08", "157.55.39.113", "58");
INSERT INTO `wp_gf_form_view` VALUES("10440", "3", "2015-04-03 07:10:17", "66.249.79.93", "54");
INSERT INTO `wp_gf_form_view` VALUES("10441", "3", "2015-04-03 08:02:36", "202.46.61.124", "74");
INSERT INTO `wp_gf_form_view` VALUES("10442", "3", "2015-04-03 09:01:08", "202.46.50.157", "68");
INSERT INTO `wp_gf_form_view` VALUES("10443", "3", "2015-04-03 10:05:53", "192.187.108.250", "76");
INSERT INTO `wp_gf_form_view` VALUES("10444", "3", "2015-04-03 11:01:47", "66.249.79.85", "142");
INSERT INTO `wp_gf_form_view` VALUES("10445", "2", "2015-04-03 11:27:51", "58.49.236.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("10446", "3", "2015-04-03 12:08:28", "202.46.62.149", "96");
INSERT INTO `wp_gf_form_view` VALUES("10447", "3", "2015-04-03 13:06:04", "66.249.79.93", "146");
INSERT INTO `wp_gf_form_view` VALUES("10448", "7", "2015-04-03 13:20:21", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("10449", "3", "2015-04-03 14:05:35", "202.46.63.82", "117");
INSERT INTO `wp_gf_form_view` VALUES("10450", "3", "2015-04-03 15:00:58", "66.249.79.93", "92");
INSERT INTO `wp_gf_form_view` VALUES("10451", "3", "2015-04-03 16:02:37", "202.46.61.58", "479");
INSERT INTO `wp_gf_form_view` VALUES("10452", "3", "2015-04-03 17:01:08", "202.46.61.101", "355");
INSERT INTO `wp_gf_form_view` VALUES("10453", "7", "2015-04-03 17:52:53", "187.6.141.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10454", "1", "2015-04-03 17:53:12", "187.6.141.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10455", "2", "2015-04-03 17:53:25", "187.6.141.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10456", "3", "2015-04-03 18:11:22", "202.46.48.45", "98");
INSERT INTO `wp_gf_form_view` VALUES("10457", "3", "2015-04-03 19:09:56", "202.46.49.188", "70");
INSERT INTO `wp_gf_form_view` VALUES("10458", "3", "2015-04-03 20:08:28", "202.46.48.78", "116");
INSERT INTO `wp_gf_form_view` VALUES("10459", "3", "2015-04-03 21:07:00", "202.46.48.152", "108");
INSERT INTO `wp_gf_form_view` VALUES("10460", "3", "2015-04-03 22:00:03", "66.249.79.93", "112");
INSERT INTO `wp_gf_form_view` VALUES("10461", "3", "2015-04-03 23:00:20", "66.249.79.77", "108");
INSERT INTO `wp_gf_form_view` VALUES("10462", "3", "2015-04-04 00:02:36", "202.46.62.148", "132");
INSERT INTO `wp_gf_form_view` VALUES("10463", "3", "2015-04-04 01:01:08", "202.46.61.124", "216");
INSERT INTO `wp_gf_form_view` VALUES("10464", "3", "2015-04-04 02:11:22", "202.46.48.208", "68");
INSERT INTO `wp_gf_form_view` VALUES("10465", "3", "2015-04-04 03:09:55", "202.46.61.124", "58");
INSERT INTO `wp_gf_form_view` VALUES("10466", "3", "2015-04-04 04:04:18", "66.249.79.93", "982");
INSERT INTO `wp_gf_form_view` VALUES("10467", "3", "2015-04-04 05:00:09", "207.46.13.65", "2193");
INSERT INTO `wp_gf_form_view` VALUES("10468", "6", "2015-04-04 05:08:36", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10469", "3", "2015-04-04 06:00:03", "157.55.39.46", "3263");
INSERT INTO `wp_gf_form_view` VALUES("10470", "6", "2015-04-04 06:54:57", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10471", "3", "2015-04-04 07:00:23", "157.55.39.113", "5021");
INSERT INTO `wp_gf_form_view` VALUES("10472", "6", "2015-04-04 07:51:58", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10473", "3", "2015-04-04 08:00:01", "207.46.13.65", "4663");
INSERT INTO `wp_gf_form_view` VALUES("10474", "6", "2015-04-04 08:56:21", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10475", "3", "2015-04-04 09:00:15", "207.46.13.65", "3553");
INSERT INTO `wp_gf_form_view` VALUES("10476", "3", "2015-04-04 10:00:08", "157.55.39.46", "4572");
INSERT INTO `wp_gf_form_view` VALUES("10477", "3", "2015-04-04 11:00:00", "157.55.39.46", "4788");
INSERT INTO `wp_gf_form_view` VALUES("10478", "6", "2015-04-04 11:52:16", "207.46.13.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("10479", "3", "2015-04-04 12:00:02", "157.55.39.113", "5029");
INSERT INTO `wp_gf_form_view` VALUES("10480", "3", "2015-04-04 13:00:07", "207.46.13.65", "4769");
INSERT INTO `wp_gf_form_view` VALUES("10481", "6", "2015-04-04 13:02:55", "157.55.39.113", "4");
INSERT INTO `wp_gf_form_view` VALUES("10482", "3", "2015-04-04 14:00:32", "157.55.39.46", "5851");
INSERT INTO `wp_gf_form_view` VALUES("10483", "3", "2015-04-04 15:00:00", "207.46.13.65", "4925");
INSERT INTO `wp_gf_form_view` VALUES("10484", "6", "2015-04-04 15:04:41", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10485", "3", "2015-04-04 16:00:00", "207.46.13.65", "4307");
INSERT INTO `wp_gf_form_view` VALUES("10486", "1", "2015-04-04 16:07:24", "198.245.65.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("10487", "3", "2015-04-04 17:00:07", "207.46.13.65", "5082");
INSERT INTO `wp_gf_form_view` VALUES("10488", "6", "2015-04-04 17:03:23", "207.46.13.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("10489", "3", "2015-04-04 18:00:01", "157.55.39.113", "5452");
INSERT INTO `wp_gf_form_view` VALUES("10490", "6", "2015-04-04 18:38:38", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10491", "3", "2015-04-04 19:00:00", "157.55.39.46", "4948");
INSERT INTO `wp_gf_form_view` VALUES("10492", "6", "2015-04-04 19:58:45", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10493", "3", "2015-04-04 20:00:00", "157.55.39.46", "5073");
INSERT INTO `wp_gf_form_view` VALUES("10494", "7", "2015-04-04 20:12:07", "94.221.73.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("10495", "1", "2015-04-04 20:12:30", "94.221.73.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("10496", "2", "2015-04-04 20:12:45", "94.221.73.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("10497", "3", "2015-04-04 21:00:09", "157.55.39.113", "3622");
INSERT INTO `wp_gf_form_view` VALUES("10498", "7", "2015-04-04 21:35:39", "146.0.42.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("10499", "3", "2015-04-04 22:00:04", "157.55.39.113", "5156");
INSERT INTO `wp_gf_form_view` VALUES("10500", "6", "2015-04-04 22:26:38", "157.55.39.46", "8");
INSERT INTO `wp_gf_form_view` VALUES("10501", "1", "2015-04-04 22:32:52", "66.249.79.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("10502", "3", "2015-04-04 23:00:00", "157.55.39.46", "5322");
INSERT INTO `wp_gf_form_view` VALUES("10503", "6", "2015-04-04 23:23:35", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10504", "2", "2015-04-04 23:51:36", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("10505", "3", "2015-04-05 00:00:08", "207.46.13.65", "3860");
INSERT INTO `wp_gf_form_view` VALUES("10506", "3", "2015-04-05 01:00:00", "207.46.13.8", "5139");
INSERT INTO `wp_gf_form_view` VALUES("10507", "6", "2015-04-05 01:30:59", "157.55.39.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("10508", "3", "2015-04-05 02:00:01", "157.55.39.46", "4819");
INSERT INTO `wp_gf_form_view` VALUES("10509", "7", "2015-04-05 02:36:18", "172.243.238.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("10510", "6", "2015-04-05 02:46:09", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10511", "3", "2015-04-05 03:00:00", "157.55.39.46", "4384");
INSERT INTO `wp_gf_form_view` VALUES("10512", "7", "2015-04-05 03:42:06", "82.171.194.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("10513", "1", "2015-04-05 03:42:22", "82.171.194.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("10514", "2", "2015-04-05 03:42:30", "82.171.194.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("10515", "3", "2015-04-05 04:00:00", "207.46.13.8", "4369");
INSERT INTO `wp_gf_form_view` VALUES("10516", "3", "2015-04-05 05:00:05", "207.46.13.65", "4750");
INSERT INTO `wp_gf_form_view` VALUES("10517", "3", "2015-04-05 06:00:01", "157.55.39.113", "4878");
INSERT INTO `wp_gf_form_view` VALUES("10518", "6", "2015-04-05 06:47:50", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10519", "3", "2015-04-05 07:00:06", "66.249.79.77", "5158");
INSERT INTO `wp_gf_form_view` VALUES("10520", "6", "2015-04-05 07:55:03", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10521", "3", "2015-04-05 08:00:05", "157.55.39.113", "4753");
INSERT INTO `wp_gf_form_view` VALUES("10522", "6", "2015-04-05 08:05:29", "157.55.39.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("10523", "3", "2015-04-05 09:00:00", "157.55.39.46", "4371");
INSERT INTO `wp_gf_form_view` VALUES("10524", "6", "2015-04-05 09:13:22", "157.55.39.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("10525", "3", "2015-04-05 10:00:14", "207.46.13.65", "4890");
INSERT INTO `wp_gf_form_view` VALUES("10526", "6", "2015-04-05 10:55:43", "157.55.39.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("10527", "3", "2015-04-05 11:00:02", "157.55.39.46", "5307");
INSERT INTO `wp_gf_form_view` VALUES("10528", "6", "2015-04-05 11:01:16", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10529", "3", "2015-04-05 12:00:03", "207.46.13.65", "4888");
INSERT INTO `wp_gf_form_view` VALUES("10530", "6", "2015-04-05 12:07:19", "207.46.13.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("10531", "3", "2015-04-05 14:54:57", "157.55.39.113", "2425");
INSERT INTO `wp_gf_form_view` VALUES("10532", "3", "2015-04-05 14:54:57", "157.55.39.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10533", "3", "2015-04-05 14:54:57", "202.46.48.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("10534", "6", "2015-04-05 14:59:49", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10535", "3", "2015-04-05 15:00:00", "207.46.13.65", "6249");
INSERT INTO `wp_gf_form_view` VALUES("10536", "6", "2015-04-05 15:03:25", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10537", "3", "2015-04-05 16:00:01", "207.46.13.65", "4600");
INSERT INTO `wp_gf_form_view` VALUES("10538", "1", "2015-04-05 16:45:38", "162.243.170.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("10539", "2", "2015-04-05 16:45:38", "162.243.170.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("10540", "3", "2015-04-05 17:00:01", "157.55.39.46", "4668");
INSERT INTO `wp_gf_form_view` VALUES("10541", "6", "2015-04-05 17:20:08", "207.46.13.65", "6");
INSERT INTO `wp_gf_form_view` VALUES("10542", "3", "2015-04-05 18:00:06", "157.55.39.46", "5363");
INSERT INTO `wp_gf_form_view` VALUES("10543", "6", "2015-04-05 18:06:01", "157.55.39.113", "4");
INSERT INTO `wp_gf_form_view` VALUES("10544", "3", "2015-04-05 19:00:16", "157.55.39.46", "4925");
INSERT INTO `wp_gf_form_view` VALUES("10545", "6", "2015-04-05 19:30:04", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10546", "3", "2015-04-05 20:00:06", "157.55.39.46", "5029");
INSERT INTO `wp_gf_form_view` VALUES("10547", "6", "2015-04-05 20:01:21", "157.55.39.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("10548", "5", "2015-04-05 20:08:00", "188.165.15.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("10549", "3", "2015-04-05 21:00:22", "157.55.39.46", "5095");
INSERT INTO `wp_gf_form_view` VALUES("10550", "6", "2015-04-05 21:14:44", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10551", "3", "2015-04-05 22:00:00", "157.55.39.46", "5056");
INSERT INTO `wp_gf_form_view` VALUES("10552", "6", "2015-04-05 22:02:33", "207.46.13.65", "6");
INSERT INTO `wp_gf_form_view` VALUES("10553", "3", "2015-04-05 23:00:01", "207.46.13.65", "5235");
INSERT INTO `wp_gf_form_view` VALUES("10554", "6", "2015-04-05 23:11:27", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10555", "3", "2015-04-06 00:00:02", "157.55.39.46", "4688");
INSERT INTO `wp_gf_form_view` VALUES("10556", "6", "2015-04-06 00:27:34", "157.55.39.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("10557", "3", "2015-04-06 01:00:10", "207.46.13.65", "4757");
INSERT INTO `wp_gf_form_view` VALUES("10558", "6", "2015-04-06 01:15:24", "157.55.39.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("10559", "3", "2015-04-06 02:00:04", "207.46.13.65", "5440");
INSERT INTO `wp_gf_form_view` VALUES("10560", "6", "2015-04-06 02:10:28", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10561", "3", "2015-04-06 03:00:18", "157.55.39.46", "5502");
INSERT INTO `wp_gf_form_view` VALUES("10562", "6", "2015-04-06 03:13:56", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10563", "3", "2015-04-06 04:00:00", "157.55.39.46", "5072");
INSERT INTO `wp_gf_form_view` VALUES("10564", "6", "2015-04-06 04:15:26", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10565", "3", "2015-04-06 05:00:00", "157.55.39.46", "5282");
INSERT INTO `wp_gf_form_view` VALUES("10566", "6", "2015-04-06 05:08:21", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10567", "3", "2015-04-06 06:00:01", "207.46.13.65", "6049");
INSERT INTO `wp_gf_form_view` VALUES("10568", "6", "2015-04-06 06:15:12", "207.46.13.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("10569", "1", "2015-04-06 06:57:15", "162.243.215.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("10570", "3", "2015-04-06 07:00:00", "162.243.215.90", "7582");
INSERT INTO `wp_gf_form_view` VALUES("10571", "3", "2015-04-06 08:00:06", "207.46.13.65", "4993");
INSERT INTO `wp_gf_form_view` VALUES("10572", "3", "2015-04-06 09:00:06", "157.55.39.113", "5377");
INSERT INTO `wp_gf_form_view` VALUES("10573", "6", "2015-04-06 09:20:24", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10574", "3", "2015-04-06 10:00:00", "207.46.13.8", "4727");
INSERT INTO `wp_gf_form_view` VALUES("10575", "6", "2015-04-06 10:02:02", "207.46.13.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("10576", "3", "2015-04-06 11:00:11", "157.55.39.46", "4967");
INSERT INTO `wp_gf_form_view` VALUES("10577", "6", "2015-04-06 11:47:53", "142.4.213.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("10578", "3", "2015-04-06 12:00:00", "157.55.39.46", "7351");
INSERT INTO `wp_gf_form_view` VALUES("10579", "6", "2015-04-06 12:16:19", "148.251.69.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("10580", "2", "2015-04-06 12:21:47", "46.4.189.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("10581", "7", "2015-04-06 12:41:47", "188.120.218.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("10582", "1", "2015-04-06 12:42:09", "188.120.218.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("10583", "3", "2015-04-06 13:00:01", "157.55.39.46", "4853");
INSERT INTO `wp_gf_form_view` VALUES("10584", "6", "2015-04-06 13:14:41", "157.55.39.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("10585", "3", "2015-04-06 14:00:00", "157.55.39.46", "4948");
INSERT INTO `wp_gf_form_view` VALUES("10586", "6", "2015-04-06 14:06:45", "157.55.39.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("10587", "2", "2015-04-06 14:12:59", "176.10.104.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("10588", "1", "2015-04-06 14:13:02", "176.10.104.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("10589", "7", "2015-04-06 14:13:14", "176.10.104.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("10590", "3", "2015-04-06 15:00:01", "207.46.13.65", "4033");
INSERT INTO `wp_gf_form_view` VALUES("10591", "6", "2015-04-06 15:24:28", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10592", "3", "2015-04-06 16:00:05", "157.55.39.46", "4157");
INSERT INTO `wp_gf_form_view` VALUES("10593", "3", "2015-04-06 17:00:17", "157.55.39.46", "6644");
INSERT INTO `wp_gf_form_view` VALUES("10594", "6", "2015-04-06 17:27:34", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10595", "3", "2015-04-06 18:00:00", "207.46.13.8", "5823");
INSERT INTO `wp_gf_form_view` VALUES("10596", "7", "2015-04-06 18:28:59", "162.223.100.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("10597", "3", "2015-04-06 19:00:00", "157.55.39.46", "5238");
INSERT INTO `wp_gf_form_view` VALUES("10598", "6", "2015-04-06 19:49:39", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("10599", "3", "2015-04-06 20:00:00", "157.55.39.46", "4540");
INSERT INTO `wp_gf_form_view` VALUES("10600", "6", "2015-04-06 20:55:10", "157.55.39.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("10601", "3", "2015-04-06 21:00:02", "207.46.13.65", "5544");
INSERT INTO `wp_gf_form_view` VALUES("10602", "6", "2015-04-06 21:00:06", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10603", "3", "2015-04-06 22:00:00", "207.46.13.8", "7360");
INSERT INTO `wp_gf_form_view` VALUES("10604", "1", "2015-04-06 22:07:37", "174.127.133.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("10605", "2", "2015-04-06 22:09:18", "174.127.133.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("10606", "7", "2015-04-06 22:12:48", "174.127.133.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("10607", "6", "2015-04-06 22:13:10", "144.76.137.226", "6");
INSERT INTO `wp_gf_form_view` VALUES("10608", "3", "2015-04-06 23:00:00", "136.243.24.27", "5194");
INSERT INTO `wp_gf_form_view` VALUES("10609", "7", "2015-04-06 23:00:21", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("10610", "6", "2015-04-06 23:23:52", "157.55.39.113", "4");
INSERT INTO `wp_gf_form_view` VALUES("10611", "3", "2015-04-07 00:00:14", "136.243.5.215", "4884");
INSERT INTO `wp_gf_form_view` VALUES("10612", "3", "2015-04-07 01:00:01", "136.243.5.215", "4528");
INSERT INTO `wp_gf_form_view` VALUES("10613", "6", "2015-04-07 01:16:03", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10614", "3", "2015-04-07 02:00:00", "157.55.39.113", "4422");
INSERT INTO `wp_gf_form_view` VALUES("10615", "6", "2015-04-07 02:32:16", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10616", "3", "2015-04-07 03:00:07", "157.55.39.46", "3683");
INSERT INTO `wp_gf_form_view` VALUES("10617", "6", "2015-04-07 03:46:24", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10618", "3", "2015-04-07 04:00:28", "207.46.13.65", "5011");
INSERT INTO `wp_gf_form_view` VALUES("10619", "6", "2015-04-07 04:10:17", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10620", "3", "2015-04-07 05:00:00", "207.46.13.8", "5000");
INSERT INTO `wp_gf_form_view` VALUES("10621", "6", "2015-04-07 05:29:28", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("10622", "3", "2015-04-07 06:00:04", "157.55.39.113", "4916");
INSERT INTO `wp_gf_form_view` VALUES("10623", "6", "2015-04-07 06:25:49", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10624", "1", "2015-04-07 06:42:20", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("10625", "3", "2015-04-07 07:00:00", "207.46.13.65", "5017");
INSERT INTO `wp_gf_form_view` VALUES("10626", "6", "2015-04-07 07:20:15", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10627", "3", "2015-04-07 08:00:08", "157.55.39.46", "3802");
INSERT INTO `wp_gf_form_view` VALUES("10628", "6", "2015-04-07 08:37:05", "157.55.39.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("10629", "1", "2015-04-07 08:41:59", "74.12.116.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("10630", "3", "2015-04-07 09:00:00", "207.46.13.65", "4761");
INSERT INTO `wp_gf_form_view` VALUES("10631", "6", "2015-04-07 09:28:09", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10632", "3", "2015-04-07 10:00:00", "157.55.39.46", "3804");
INSERT INTO `wp_gf_form_view` VALUES("10633", "6", "2015-04-07 10:40:59", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10634", "3", "2015-04-07 11:00:01", "157.55.39.46", "4251");
INSERT INTO `wp_gf_form_view` VALUES("10635", "6", "2015-04-07 11:48:00", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10636", "3", "2015-04-07 12:00:01", "199.192.207.146", "3138");
INSERT INTO `wp_gf_form_view` VALUES("10637", "6", "2015-04-07 12:01:18", "199.192.207.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("10638", "3", "2015-04-07 13:00:17", "207.46.13.65", "2698");
INSERT INTO `wp_gf_form_view` VALUES("10639", "6", "2015-04-07 13:19:11", "157.55.39.113", "4");
INSERT INTO `wp_gf_form_view` VALUES("10640", "2", "2015-04-07 13:33:17", "74.12.116.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("10641", "7", "2015-04-07 13:49:11", "74.12.116.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("10642", "3", "2015-04-07 14:00:42", "68.180.228.245", "3009");
INSERT INTO `wp_gf_form_view` VALUES("10643", "2", "2015-04-07 14:07:46", "46.4.189.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("10644", "7", "2015-04-07 14:28:54", "175.144.33.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("10645", "1", "2015-04-07 14:29:14", "175.144.33.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("10646", "6", "2015-04-07 14:39:00", "157.55.39.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("10647", "3", "2015-04-07 15:00:39", "207.46.13.65", "2515");
INSERT INTO `wp_gf_form_view` VALUES("10648", "6", "2015-04-07 15:27:55", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10649", "3", "2015-04-07 16:01:15", "157.55.39.46", "4490");
INSERT INTO `wp_gf_form_view` VALUES("10650", "6", "2015-04-07 16:08:04", "188.165.15.212", "11");
INSERT INTO `wp_gf_form_view` VALUES("10651", "3", "2015-04-07 17:00:13", "157.55.39.46", "3858");
INSERT INTO `wp_gf_form_view` VALUES("10652", "6", "2015-04-07 17:05:39", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("10653", "3", "2015-04-07 18:00:02", "136.243.24.27", "6008");
INSERT INTO `wp_gf_form_view` VALUES("10654", "6", "2015-04-07 18:18:13", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10655", "3", "2015-04-07 19:00:01", "157.55.39.46", "5063");
INSERT INTO `wp_gf_form_view` VALUES("10656", "3", "2015-04-07 20:00:12", "157.55.39.46", "6431");
INSERT INTO `wp_gf_form_view` VALUES("10657", "6", "2015-04-07 20:11:34", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10658", "3", "2015-04-07 21:00:00", "157.55.39.46", "7389");
INSERT INTO `wp_gf_form_view` VALUES("10659", "6", "2015-04-07 21:29:50", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10660", "3", "2015-04-07 22:00:01", "207.46.13.65", "3087");
INSERT INTO `wp_gf_form_view` VALUES("10661", "3", "2015-04-07 23:00:00", "157.55.39.46", "2690");
INSERT INTO `wp_gf_form_view` VALUES("10662", "3", "2015-04-08 00:00:02", "157.55.39.46", "4380");
INSERT INTO `wp_gf_form_view` VALUES("10663", "6", "2015-04-08 00:06:29", "198.27.66.185", "8");
INSERT INTO `wp_gf_form_view` VALUES("10664", "3", "2015-04-08 01:00:09", "157.55.39.46", "2278");
INSERT INTO `wp_gf_form_view` VALUES("10665", "3", "2015-04-08 02:00:01", "157.55.39.113", "2302");
INSERT INTO `wp_gf_form_view` VALUES("10666", "3", "2015-04-08 03:00:07", "207.46.13.65", "2440");
INSERT INTO `wp_gf_form_view` VALUES("10667", "1", "2015-04-08 03:45:15", "104.193.9.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("10668", "3", "2015-04-08 04:00:54", "157.55.39.113", "1540");
INSERT INTO `wp_gf_form_view` VALUES("10669", "3", "2015-04-08 05:00:37", "157.55.39.46", "1594");
INSERT INTO `wp_gf_form_view` VALUES("10670", "3", "2015-04-08 06:00:28", "207.46.13.65", "1329");
INSERT INTO `wp_gf_form_view` VALUES("10671", "3", "2015-04-08 07:00:21", "157.55.39.113", "1266");
INSERT INTO `wp_gf_form_view` VALUES("10672", "3", "2015-04-08 08:01:07", "207.46.13.65", "1279");
INSERT INTO `wp_gf_form_view` VALUES("10673", "3", "2015-04-08 08:01:07", "207.46.13.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("10674", "3", "2015-04-08 09:00:45", "207.46.13.65", "2737");
INSERT INTO `wp_gf_form_view` VALUES("10675", "3", "2015-04-08 10:00:00", "144.76.137.226", "1468");
INSERT INTO `wp_gf_form_view` VALUES("10676", "3", "2015-04-08 11:00:17", "157.55.39.46", "2191");
INSERT INTO `wp_gf_form_view` VALUES("10677", "3", "2015-04-08 12:00:03", "157.55.39.46", "5270");
INSERT INTO `wp_gf_form_view` VALUES("10678", "6", "2015-04-08 12:36:32", "176.36.80.39", "4");
INSERT INTO `wp_gf_form_view` VALUES("10679", "3", "2015-04-08 13:00:03", "176.36.80.39", "1817");
INSERT INTO `wp_gf_form_view` VALUES("10680", "3", "2015-04-08 14:00:16", "207.46.13.65", "1373");
INSERT INTO `wp_gf_form_view` VALUES("10681", "3", "2015-04-08 15:00:26", "207.46.13.65", "1139");
INSERT INTO `wp_gf_form_view` VALUES("10682", "3", "2015-04-08 16:00:13", "207.46.13.65", "2466");
INSERT INTO `wp_gf_form_view` VALUES("10683", "6", "2015-04-08 16:38:57", "68.180.228.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("10684", "3", "2015-04-08 17:00:08", "68.180.228.245", "1611");
INSERT INTO `wp_gf_form_view` VALUES("10685", "3", "2015-04-08 18:00:02", "157.55.39.46", "2480");
INSERT INTO `wp_gf_form_view` VALUES("10686", "7", "2015-04-08 18:11:54", "75.152.184.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10687", "1", "2015-04-08 18:42:14", "184.66.135.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("10688", "3", "2015-04-08 19:00:09", "207.46.13.65", "4454");
INSERT INTO `wp_gf_form_view` VALUES("10689", "3", "2015-04-08 20:00:02", "157.55.39.46", "3403");
INSERT INTO `wp_gf_form_view` VALUES("10690", "3", "2015-04-08 21:00:12", "157.55.39.46", "3716");
INSERT INTO `wp_gf_form_view` VALUES("10691", "3", "2015-04-08 22:00:13", "66.249.67.77", "6413");
INSERT INTO `wp_gf_form_view` VALUES("10692", "3", "2015-04-08 23:00:13", "207.46.13.69", "3366");
INSERT INTO `wp_gf_form_view` VALUES("10693", "3", "2015-04-09 00:01:11", "207.46.13.69", "2487");
INSERT INTO `wp_gf_form_view` VALUES("10694", "3", "2015-04-09 01:00:08", "207.46.13.69", "1433");
INSERT INTO `wp_gf_form_view` VALUES("10695", "3", "2015-04-09 02:02:12", "66.249.67.77", "4872");
INSERT INTO `wp_gf_form_view` VALUES("10696", "1", "2015-04-09 02:10:08", "104.193.9.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("10697", "2", "2015-04-09 02:25:37", "66.249.67.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("10698", "6", "2015-04-09 02:31:35", "88.198.164.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("10699", "7", "2015-04-09 02:48:49", "134.249.48.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("10700", "3", "2015-04-09 03:00:03", "157.55.39.46", "2325");
INSERT INTO `wp_gf_form_view` VALUES("10701", "3", "2015-04-09 04:00:16", "157.55.39.46", "1358");
INSERT INTO `wp_gf_form_view` VALUES("10702", "3", "2015-04-09 05:00:54", "66.249.67.93", "841");
INSERT INTO `wp_gf_form_view` VALUES("10703", "3", "2015-04-09 06:00:58", "66.249.67.77", "637");
INSERT INTO `wp_gf_form_view` VALUES("10704", "6", "2015-04-09 06:52:22", "104.255.68.191", "4");
INSERT INTO `wp_gf_form_view` VALUES("10705", "3", "2015-04-09 07:01:01", "66.249.67.77", "939");
INSERT INTO `wp_gf_form_view` VALUES("10706", "5", "2015-04-09 07:22:41", "188.165.15.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("10707", "3", "2015-04-09 08:00:02", "68.180.228.245", "1289");
INSERT INTO `wp_gf_form_view` VALUES("10708", "3", "2015-04-09 09:01:18", "202.46.63.66", "1141");
INSERT INTO `wp_gf_form_view` VALUES("10709", "3", "2015-04-09 10:01:10", "157.55.39.46", "644");
INSERT INTO `wp_gf_form_view` VALUES("10710", "3", "2015-04-09 11:00:32", "66.249.67.93", "689");
INSERT INTO `wp_gf_form_view` VALUES("10711", "3", "2015-04-09 12:00:05", "66.249.67.85", "371");
INSERT INTO `wp_gf_form_view` VALUES("10712", "3", "2015-04-09 13:01:05", "66.249.67.77", "980");
INSERT INTO `wp_gf_form_view` VALUES("10713", "3", "2015-04-09 14:02:06", "66.249.67.85", "5725");
INSERT INTO `wp_gf_form_view` VALUES("10714", "3", "2015-04-09 15:00:01", "157.55.39.183", "7044");
INSERT INTO `wp_gf_form_view` VALUES("10715", "3", "2015-04-09 16:00:01", "157.55.39.62", "5584");
INSERT INTO `wp_gf_form_view` VALUES("10716", "3", "2015-04-09 17:00:05", "157.55.39.183", "4715");
INSERT INTO `wp_gf_form_view` VALUES("10717", "3", "2015-04-09 18:00:00", "207.46.13.65", "5334");
INSERT INTO `wp_gf_form_view` VALUES("10718", "3", "2015-04-09 19:00:05", "157.55.39.46", "9499");
INSERT INTO `wp_gf_form_view` VALUES("10719", "6", "2015-04-09 19:34:59", "157.55.39.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("10720", "3", "2015-04-09 20:00:00", "207.46.13.65", "5025");
INSERT INTO `wp_gf_form_view` VALUES("10721", "1", "2015-04-09 20:55:32", "199.58.86.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("10722", "2", "2015-04-09 20:55:44", "199.58.86.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("10723", "3", "2015-04-09 21:00:00", "157.55.39.46", "4464");
INSERT INTO `wp_gf_form_view` VALUES("10724", "3", "2015-04-09 22:00:08", "66.249.67.85", "4048");
INSERT INTO `wp_gf_form_view` VALUES("10725", "7", "2015-04-09 22:33:55", "5.9.145.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("10726", "3", "2015-04-09 23:00:06", "207.46.13.65", "4472");
INSERT INTO `wp_gf_form_view` VALUES("10727", "3", "2015-04-10 00:00:00", "157.55.39.183", "5354");
INSERT INTO `wp_gf_form_view` VALUES("10728", "3", "2015-04-10 01:00:00", "157.55.39.183", "4238");
INSERT INTO `wp_gf_form_view` VALUES("10729", "3", "2015-04-10 02:00:05", "157.55.39.183", "4095");
INSERT INTO `wp_gf_form_view` VALUES("10730", "3", "2015-04-10 03:00:20", "207.46.13.65", "4511");
INSERT INTO `wp_gf_form_view` VALUES("10731", "3", "2015-04-10 04:00:03", "157.55.39.46", "5190");
INSERT INTO `wp_gf_form_view` VALUES("10732", "3", "2015-04-10 05:00:00", "207.46.13.65", "4194");
INSERT INTO `wp_gf_form_view` VALUES("10733", "3", "2015-04-10 06:00:13", "157.55.39.183", "3703");
INSERT INTO `wp_gf_form_view` VALUES("10734", "2", "2015-04-10 06:33:01", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("10735", "3", "2015-04-10 07:00:00", "207.46.13.65", "3842");
INSERT INTO `wp_gf_form_view` VALUES("10736", "3", "2015-04-10 08:00:00", "157.55.39.183", "3398");
INSERT INTO `wp_gf_form_view` VALUES("10737", "3", "2015-04-10 09:00:00", "157.55.39.183", "4287");
INSERT INTO `wp_gf_form_view` VALUES("10738", "3", "2015-04-10 10:00:00", "157.55.39.183", "3245");
INSERT INTO `wp_gf_form_view` VALUES("10739", "3", "2015-04-10 11:00:03", "207.46.13.65", "3685");
INSERT INTO `wp_gf_form_view` VALUES("10740", "2", "2015-04-10 11:58:48", "209.222.8.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("10741", "3", "2015-04-10 12:00:09", "207.46.13.65", "4054");
INSERT INTO `wp_gf_form_view` VALUES("10742", "2", "2015-04-10 12:03:49", "46.4.189.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("10743", "1", "2015-04-10 12:44:16", "209.222.8.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("10744", "3", "2015-04-10 13:00:12", "157.55.39.46", "5032");
INSERT INTO `wp_gf_form_view` VALUES("10745", "5", "2015-04-10 13:33:25", "144.76.8.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("10746", "3", "2015-04-10 14:00:43", "157.55.39.46", "4433");
INSERT INTO `wp_gf_form_view` VALUES("10747", "3", "2015-04-10 15:00:00", "157.55.39.183", "4198");
INSERT INTO `wp_gf_form_view` VALUES("10748", "6", "2015-04-10 15:09:08", "157.55.39.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("10749", "7", "2015-04-10 15:49:29", "209.222.8.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("10750", "5", "2015-04-10 15:58:37", "209.222.8.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("10751", "3", "2015-04-10 16:00:03", "207.46.13.65", "3725");
INSERT INTO `wp_gf_form_view` VALUES("10752", "3", "2015-04-10 17:00:10", "157.55.39.46", "4314");
INSERT INTO `wp_gf_form_view` VALUES("10753", "3", "2015-04-10 18:00:00", "202.46.48.200", "4890");
INSERT INTO `wp_gf_form_view` VALUES("10754", "7", "2015-04-10 18:16:13", "207.46.13.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("10755", "1", "2015-04-10 18:16:57", "157.55.39.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("10756", "2", "2015-04-10 18:17:00", "157.55.39.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("10757", "3", "2015-04-10 19:00:00", "207.46.13.65", "5974");
INSERT INTO `wp_gf_form_view` VALUES("10758", "3", "2015-04-10 20:00:02", "157.55.39.183", "4096");
INSERT INTO `wp_gf_form_view` VALUES("10759", "3", "2015-04-10 21:00:03", "157.55.39.183", "4309");
INSERT INTO `wp_gf_form_view` VALUES("10760", "6", "2015-04-10 21:14:39", "157.55.39.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("10761", "3", "2015-04-10 22:00:00", "157.55.39.46", "3439");
INSERT INTO `wp_gf_form_view` VALUES("10762", "3", "2015-04-10 23:00:25", "157.55.39.183", "4596");
INSERT INTO `wp_gf_form_view` VALUES("10763", "3", "2015-04-11 00:00:07", "157.55.39.46", "3456");
INSERT INTO `wp_gf_form_view` VALUES("10764", "2", "2015-04-11 00:22:27", "220.181.51.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("10765", "3", "2015-04-11 01:00:06", "207.46.13.65", "3580");
INSERT INTO `wp_gf_form_view` VALUES("10766", "3", "2015-04-11 02:00:00", "157.55.39.183", "5111");
INSERT INTO `wp_gf_form_view` VALUES("10767", "7", "2015-04-11 02:23:29", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("10768", "3", "2015-04-11 03:00:00", "157.55.39.46", "6922");
INSERT INTO `wp_gf_form_view` VALUES("10769", "3", "2015-04-11 04:00:01", "157.55.39.46", "6372");
INSERT INTO `wp_gf_form_view` VALUES("10770", "7", "2015-04-11 04:35:32", "69.50.234.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("10771", "1", "2015-04-11 04:37:40", "99.199.0.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("10772", "3", "2015-04-11 05:00:09", "157.55.39.46", "5764");
INSERT INTO `wp_gf_form_view` VALUES("10773", "1", "2015-04-11 05:02:08", "99.199.0.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("10774", "3", "2015-04-11 06:00:02", "207.46.13.65", "6524");
INSERT INTO `wp_gf_form_view` VALUES("10775", "6", "2015-04-11 06:53:33", "74.106.14.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("10776", "3", "2015-04-11 07:00:00", "207.46.13.65", "6386");
INSERT INTO `wp_gf_form_view` VALUES("10777", "3", "2015-04-11 08:00:00", "207.46.13.65", "6415");
INSERT INTO `wp_gf_form_view` VALUES("10778", "6", "2015-04-11 08:33:12", "207.46.13.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("10779", "3", "2015-04-11 09:00:01", "207.46.13.65", "8107");
INSERT INTO `wp_gf_form_view` VALUES("10780", "3", "2015-04-11 10:00:01", "157.55.39.183", "5880");
INSERT INTO `wp_gf_form_view` VALUES("10781", "3", "2015-04-11 11:00:00", "207.46.13.65", "6589");
INSERT INTO `wp_gf_form_view` VALUES("10782", "3", "2015-04-11 12:00:05", "157.55.39.46", "6036");
INSERT INTO `wp_gf_form_view` VALUES("10783", "3", "2015-04-11 13:00:08", "198.27.82.152", "5432");
INSERT INTO `wp_gf_form_view` VALUES("10784", "7", "2015-04-11 13:44:23", "66.249.67.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("10785", "3", "2015-04-11 14:00:54", "157.55.39.46", "5362");
INSERT INTO `wp_gf_form_view` VALUES("10786", "3", "2015-04-11 15:00:04", "157.55.39.46", "4500");
INSERT INTO `wp_gf_form_view` VALUES("10787", "3", "2015-04-11 16:00:24", "157.55.39.53", "4809");
INSERT INTO `wp_gf_form_view` VALUES("10788", "3", "2015-04-11 17:00:08", "157.55.39.62", "5800");
INSERT INTO `wp_gf_form_view` VALUES("10789", "1", "2015-04-11 17:00:34", "223.94.156.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("10790", "3", "2015-04-11 18:00:07", "202.46.48.101", "5303");
INSERT INTO `wp_gf_form_view` VALUES("10791", "1", "2015-04-11 18:55:35", "91.200.12.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("10792", "3", "2015-04-11 19:00:27", "157.55.39.46", "5702");
INSERT INTO `wp_gf_form_view` VALUES("10793", "3", "2015-04-11 20:00:01", "157.55.39.46", "5673");
INSERT INTO `wp_gf_form_view` VALUES("10794", "3", "2015-04-11 21:00:00", "157.55.39.62", "5413");
INSERT INTO `wp_gf_form_view` VALUES("10795", "1", "2015-04-11 21:04:14", "217.12.204.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("10796", "3", "2015-04-11 22:00:00", "157.55.39.62", "6587");
INSERT INTO `wp_gf_form_view` VALUES("10797", "6", "2015-04-11 22:27:11", "142.4.213.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("10798", "3", "2015-04-11 23:00:00", "157.55.39.46", "5539");
INSERT INTO `wp_gf_form_view` VALUES("10799", "3", "2015-04-12 00:00:06", "157.55.39.46", "4299");
INSERT INTO `wp_gf_form_view` VALUES("10800", "3", "2015-04-12 01:00:10", "157.55.39.46", "3077");
INSERT INTO `wp_gf_form_view` VALUES("10801", "7", "2015-04-12 01:30:02", "155.94.169.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10802", "2", "2015-04-12 01:30:19", "155.94.169.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10803", "1", "2015-04-12 01:30:21", "155.94.169.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("10804", "3", "2015-04-12 02:00:06", "157.55.39.46", "3126");
INSERT INTO `wp_gf_form_view` VALUES("10805", "3", "2015-04-12 03:00:00", "157.55.39.46", "4225");
INSERT INTO `wp_gf_form_view` VALUES("10806", "3", "2015-04-12 04:00:00", "157.55.39.62", "4120");
INSERT INTO `wp_gf_form_view` VALUES("10807", "3", "2015-04-12 05:00:00", "157.55.39.46", "7687");
INSERT INTO `wp_gf_form_view` VALUES("10808", "1", "2015-04-12 05:07:20", "99.199.0.210", "3");
INSERT INTO `wp_gf_form_view` VALUES("10809", "6", "2015-04-12 05:09:04", "94.23.46.192", "2");
INSERT INTO `wp_gf_form_view` VALUES("10810", "7", "2015-04-12 05:41:58", "82.171.156.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("10811", "2", "2015-04-12 05:42:31", "82.171.156.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("10812", "3", "2015-04-12 06:00:02", "157.55.39.46", "4376");
INSERT INTO `wp_gf_form_view` VALUES("10813", "3", "2015-04-12 07:00:05", "157.55.39.46", "4079");
INSERT INTO `wp_gf_form_view` VALUES("10814", "1", "2015-04-12 07:12:52", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("10815", "3", "2015-04-12 08:03:08", "202.46.61.106", "4093");
INSERT INTO `wp_gf_form_view` VALUES("10816", "1", "2015-04-12 08:58:54", "217.12.204.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("10817", "3", "2015-04-12 09:00:04", "157.55.39.46", "3714");
INSERT INTO `wp_gf_form_view` VALUES("10818", "6", "2015-04-12 09:38:55", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10819", "3", "2015-04-12 10:00:05", "157.55.39.46", "3731");
INSERT INTO `wp_gf_form_view` VALUES("10820", "3", "2015-04-12 11:00:03", "157.55.39.46", "4521");
INSERT INTO `wp_gf_form_view` VALUES("10821", "3", "2015-04-12 12:00:00", "208.107.41.62", "6774");
INSERT INTO `wp_gf_form_view` VALUES("10822", "3", "2015-04-12 13:00:00", "46.4.12.20", "9100");
INSERT INTO `wp_gf_form_view` VALUES("10823", "1", "2015-04-12 13:39:58", "66.249.67.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("10824", "3", "2015-04-12 14:00:10", "157.55.39.46", "8190");
INSERT INTO `wp_gf_form_view` VALUES("10825", "3", "2015-04-12 15:00:00", "207.46.13.65", "7664");
INSERT INTO `wp_gf_form_view` VALUES("10826", "6", "2015-04-12 15:15:35", "207.46.13.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("10827", "3", "2015-04-12 16:00:00", "157.55.39.62", "7510");
INSERT INTO `wp_gf_form_view` VALUES("10828", "1", "2015-04-12 16:43:11", "216.232.157.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("10829", "3", "2015-04-12 17:00:00", "207.46.13.65", "7684");
INSERT INTO `wp_gf_form_view` VALUES("10830", "3", "2015-04-12 18:00:01", "207.46.13.65", "6070");
INSERT INTO `wp_gf_form_view` VALUES("10831", "3", "2015-04-12 19:00:01", "207.46.13.65", "4756");
INSERT INTO `wp_gf_form_view` VALUES("10832", "3", "2015-04-12 20:00:07", "207.46.13.65", "4652");
INSERT INTO `wp_gf_form_view` VALUES("10833", "3", "2015-04-12 21:00:11", "66.249.67.93", "4637");
INSERT INTO `wp_gf_form_view` VALUES("10834", "3", "2015-04-12 22:00:00", "207.46.13.65", "5437");
INSERT INTO `wp_gf_form_view` VALUES("10835", "2", "2015-04-12 22:07:01", "37.187.142.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("10836", "1", "2015-04-12 22:07:12", "37.187.142.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("10837", "7", "2015-04-12 22:07:31", "37.187.142.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("10838", "3", "2015-04-12 23:00:00", "207.46.13.65", "5514");
INSERT INTO `wp_gf_form_view` VALUES("10839", "7", "2015-04-12 23:25:36", "144.76.182.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("10840", "2", "2015-04-12 23:27:11", "144.76.182.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("10841", "1", "2015-04-12 23:27:32", "144.76.182.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("10842", "5", "2015-04-12 23:42:49", "144.76.182.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("10843", "6", "2015-04-12 23:51:22", "144.76.182.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("10844", "3", "2015-04-13 00:00:12", "144.76.182.149", "3619");
INSERT INTO `wp_gf_form_view` VALUES("10845", "6", "2015-04-13 00:55:05", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10846", "3", "2015-04-13 01:00:01", "144.76.182.149", "3584");
INSERT INTO `wp_gf_form_view` VALUES("10847", "6", "2015-04-13 01:50:32", "144.76.182.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("10848", "3", "2015-04-13 02:00:00", "157.55.39.46", "3392");
INSERT INTO `wp_gf_form_view` VALUES("10849", "3", "2015-04-13 03:00:35", "66.249.67.85", "954");
INSERT INTO `wp_gf_form_view` VALUES("10850", "3", "2015-04-13 04:00:36", "66.249.67.93", "1586");
INSERT INTO `wp_gf_form_view` VALUES("10851", "3", "2015-04-13 05:00:01", "66.249.67.85", "6002");
INSERT INTO `wp_gf_form_view` VALUES("10852", "3", "2015-04-13 06:00:36", "66.249.67.85", "482");
INSERT INTO `wp_gf_form_view` VALUES("10853", "3", "2015-04-13 07:00:01", "66.249.67.85", "226");
INSERT INTO `wp_gf_form_view` VALUES("10854", "3", "2015-04-13 08:00:25", "66.249.67.85", "520");
INSERT INTO `wp_gf_form_view` VALUES("10855", "1", "2015-04-13 08:34:15", "219.130.219.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("10856", "2", "2015-04-13 08:34:18", "219.130.219.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("10857", "7", "2015-04-13 08:34:37", "219.130.219.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("10858", "3", "2015-04-13 09:00:20", "66.249.67.93", "356");
INSERT INTO `wp_gf_form_view` VALUES("10859", "3", "2015-04-13 10:00:22", "202.46.62.149", "1714");
INSERT INTO `wp_gf_form_view` VALUES("10860", "6", "2015-04-13 10:20:16", "5.9.104.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10861", "3", "2015-04-13 11:00:13", "66.249.67.77", "368");
INSERT INTO `wp_gf_form_view` VALUES("10862", "1", "2015-04-13 11:09:14", "217.12.204.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("10863", "3", "2015-04-13 12:01:59", "157.55.39.62", "686");
INSERT INTO `wp_gf_form_view` VALUES("10864", "3", "2015-04-13 13:00:09", "66.249.67.93", "404");
INSERT INTO `wp_gf_form_view` VALUES("10865", "3", "2015-04-13 14:00:04", "66.249.67.93", "666");
INSERT INTO `wp_gf_form_view` VALUES("10866", "3", "2015-04-13 15:00:04", "66.249.67.85", "344");
INSERT INTO `wp_gf_form_view` VALUES("10867", "3", "2015-04-13 16:01:13", "66.249.67.85", "1099");
INSERT INTO `wp_gf_form_view` VALUES("10868", "7", "2015-04-13 16:26:45", "202.46.50.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("10869", "3", "2015-04-13 17:01:15", "66.249.67.93", "370");
INSERT INTO `wp_gf_form_view` VALUES("10870", "1", "2015-04-13 17:19:02", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("10871", "2", "2015-04-13 17:19:02", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("10872", "3", "2015-04-13 18:00:07", "66.249.67.93", "432");
INSERT INTO `wp_gf_form_view` VALUES("10873", "6", "2015-04-13 18:06:27", "62.212.73.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("10874", "3", "2015-04-13 19:00:16", "66.249.67.77", "798");
INSERT INTO `wp_gf_form_view` VALUES("10875", "3", "2015-04-13 20:00:17", "66.249.67.77", "420");
INSERT INTO `wp_gf_form_view` VALUES("10876", "3", "2015-04-13 21:01:06", "66.249.67.93", "2630");
INSERT INTO `wp_gf_form_view` VALUES("10877", "3", "2015-04-13 22:00:02", "88.198.164.52", "1060");
INSERT INTO `wp_gf_form_view` VALUES("10878", "3", "2015-04-13 23:00:10", "66.249.67.85", "788");
INSERT INTO `wp_gf_form_view` VALUES("10879", "3", "2015-04-14 00:03:21", "202.46.48.149", "189");
INSERT INTO `wp_gf_form_view` VALUES("10880", "3", "2015-04-14 01:00:46", "66.249.67.85", "772");
INSERT INTO `wp_gf_form_view` VALUES("10881", "3", "2015-04-14 02:00:27", "202.46.48.151", "466");
INSERT INTO `wp_gf_form_view` VALUES("10882", "3", "2015-04-14 03:00:22", "66.249.67.77", "1388");
INSERT INTO `wp_gf_form_view` VALUES("10883", "3", "2015-04-14 04:00:00", "136.243.24.27", "872");
INSERT INTO `wp_gf_form_view` VALUES("10884", "3", "2015-04-14 05:01:16", "66.249.67.77", "750");
INSERT INTO `wp_gf_form_view` VALUES("10885", "3", "2015-04-14 06:00:17", "46.119.113.155", "708");
INSERT INTO `wp_gf_form_view` VALUES("10886", "1", "2015-04-14 06:02:56", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("10887", "3", "2015-04-14 07:00:51", "66.249.67.85", "372");
INSERT INTO `wp_gf_form_view` VALUES("10888", "3", "2015-04-14 08:03:19", "66.249.67.93", "281");
INSERT INTO `wp_gf_form_view` VALUES("10889", "6", "2015-04-14 08:44:08", "209.222.8.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("10890", "3", "2015-04-14 09:00:38", "66.249.67.77", "344");
INSERT INTO `wp_gf_form_view` VALUES("10891", "3", "2015-04-14 10:00:06", "68.180.228.245", "684");
INSERT INTO `wp_gf_form_view` VALUES("10892", "1", "2015-04-14 10:04:33", "42.3.203.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("10893", "2", "2015-04-14 10:04:37", "124.244.26.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("10894", "7", "2015-04-14 10:05:01", "42.3.203.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("10895", "3", "2015-04-14 11:00:39", "66.249.67.93", "1160");
INSERT INTO `wp_gf_form_view` VALUES("10896", "6", "2015-04-14 11:50:38", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("10897", "3", "2015-04-14 12:01:58", "66.249.67.85", "452");
INSERT INTO `wp_gf_form_view` VALUES("10898", "6", "2015-04-14 12:04:38", "66.249.67.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("10899", "3", "2015-04-14 13:00:47", "66.249.67.85", "353");
INSERT INTO `wp_gf_form_view` VALUES("10900", "3", "2015-04-14 14:01:59", "66.249.67.77", "402");
INSERT INTO `wp_gf_form_view` VALUES("10901", "6", "2015-04-14 14:33:00", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("10902", "3", "2015-04-14 15:00:39", "66.249.67.77", "3388");
INSERT INTO `wp_gf_form_view` VALUES("10903", "3", "2015-04-14 16:00:00", "142.4.213.178", "1436");
INSERT INTO `wp_gf_form_view` VALUES("10904", "7", "2015-04-14 16:11:35", "199.19.249.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("10905", "3", "2015-04-14 17:00:37", "66.249.67.77", "336");
INSERT INTO `wp_gf_form_view` VALUES("10906", "3", "2015-04-14 18:00:32", "202.46.48.48", "408");
INSERT INTO `wp_gf_form_view` VALUES("10907", "3", "2015-04-14 19:00:37", "66.249.67.85", "462");
INSERT INTO `wp_gf_form_view` VALUES("10908", "3", "2015-04-14 20:00:08", "74.106.14.50", "2080");
INSERT INTO `wp_gf_form_view` VALUES("10909", "3", "2015-04-14 21:00:10", "24.68.15.111", "362");
INSERT INTO `wp_gf_form_view` VALUES("10910", "3", "2015-04-14 22:00:38", "66.249.67.77", "662");
INSERT INTO `wp_gf_form_view` VALUES("10911", "5", "2015-04-14 22:18:09", "202.46.63.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("10912", "3", "2015-04-14 23:00:37", "66.249.67.93", "1769");
INSERT INTO `wp_gf_form_view` VALUES("10913", "2", "2015-04-14 23:23:33", "37.187.133.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10914", "1", "2015-04-14 23:23:38", "37.187.133.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10915", "7", "2015-04-14 23:23:52", "37.187.133.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("10916", "3", "2015-04-15 00:00:00", "157.55.39.46", "1514");
INSERT INTO `wp_gf_form_view` VALUES("10917", "3", "2015-04-15 01:00:04", "157.55.39.62", "2358");
INSERT INTO `wp_gf_form_view` VALUES("10918", "3", "2015-04-15 02:00:20", "207.46.13.27", "2136");
INSERT INTO `wp_gf_form_view` VALUES("10919", "3", "2015-04-15 03:00:35", "157.55.39.184", "1960");
INSERT INTO `wp_gf_form_view` VALUES("10920", "3", "2015-04-15 04:00:00", "157.55.39.46", "1860");
INSERT INTO `wp_gf_form_view` VALUES("10921", "3", "2015-04-15 05:00:25", "157.55.39.183", "1884");
INSERT INTO `wp_gf_form_view` VALUES("10922", "3", "2015-04-15 06:00:05", "157.55.39.46", "1820");
INSERT INTO `wp_gf_form_view` VALUES("10923", "6", "2015-04-15 06:46:18", "207.46.13.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("10924", "3", "2015-04-15 07:00:10", "207.46.13.27", "3484");
INSERT INTO `wp_gf_form_view` VALUES("10925", "1", "2015-04-15 07:28:19", "157.55.39.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("10926", "6", "2015-04-15 07:30:42", "207.46.13.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("10927", "3", "2015-04-15 08:00:25", "66.249.67.77", "2404");
INSERT INTO `wp_gf_form_view` VALUES("10928", "7", "2015-04-15 08:39:57", "93.36.118.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("10929", "1", "2015-04-15 08:40:12", "93.36.118.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("10930", "2", "2015-04-15 08:40:20", "93.36.118.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("10931", "3", "2015-04-15 09:00:00", "66.249.67.93", "2170");
INSERT INTO `wp_gf_form_view` VALUES("10932", "6", "2015-04-15 09:36:51", "207.46.13.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("10933", "3", "2015-04-15 10:00:07", "207.46.13.27", "2556");
INSERT INTO `wp_gf_form_view` VALUES("10934", "3", "2015-04-15 11:00:14", "66.249.67.85", "3524");
INSERT INTO `wp_gf_form_view` VALUES("10935", "3", "2015-04-15 12:01:06", "207.46.13.27", "1994");
INSERT INTO `wp_gf_form_view` VALUES("10936", "6", "2015-04-15 12:09:38", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10937", "3", "2015-04-15 13:00:02", "207.46.13.27", "2056");
INSERT INTO `wp_gf_form_view` VALUES("10938", "1", "2015-04-15 13:10:38", "217.12.204.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("10939", "3", "2015-04-15 14:00:02", "157.55.39.46", "2658");
INSERT INTO `wp_gf_form_view` VALUES("10940", "6", "2015-04-15 14:07:01", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10941", "3", "2015-04-15 15:00:16", "207.46.13.27", "2170");
INSERT INTO `wp_gf_form_view` VALUES("10942", "3", "2015-04-15 16:00:08", "207.46.13.27", "1974");
INSERT INTO `wp_gf_form_view` VALUES("10943", "6", "2015-04-15 16:17:12", "157.55.39.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("10944", "3", "2015-04-15 17:00:04", "66.249.67.77", "2345");
INSERT INTO `wp_gf_form_view` VALUES("10945", "3", "2015-04-15 18:00:40", "202.46.48.100", "3860");
INSERT INTO `wp_gf_form_view` VALUES("10946", "3", "2015-04-15 19:00:10", "157.55.39.183", "2658");
INSERT INTO `wp_gf_form_view` VALUES("10947", "3", "2015-04-15 20:00:02", "157.55.39.46", "1404");
INSERT INTO `wp_gf_form_view` VALUES("10948", "3", "2015-04-15 21:00:14", "157.55.39.183", "1747");
INSERT INTO `wp_gf_form_view` VALUES("10949", "7", "2015-04-15 21:06:11", "58.243.46.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("10950", "1", "2015-04-15 21:06:13", "58.243.46.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("10951", "2", "2015-04-15 21:06:13", "58.243.46.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("10952", "3", "2015-04-15 22:00:20", "207.46.13.27", "2364");
INSERT INTO `wp_gf_form_view` VALUES("10953", "3", "2015-04-15 23:00:00", "157.55.39.183", "2822");
INSERT INTO `wp_gf_form_view` VALUES("10954", "6", "2015-04-15 23:04:14", "157.55.39.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("10955", "3", "2015-04-16 00:00:24", "157.55.39.217", "2708");
INSERT INTO `wp_gf_form_view` VALUES("10956", "1", "2015-04-16 00:43:29", "108.180.150.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("10957", "3", "2015-04-16 01:00:15", "207.46.13.27", "3011");
INSERT INTO `wp_gf_form_view` VALUES("10958", "6", "2015-04-16 01:25:26", "207.46.13.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("10959", "1", "2015-04-16 01:33:56", "58.243.46.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("10960", "3", "2015-04-16 02:00:16", "157.55.39.183", "1732");
INSERT INTO `wp_gf_form_view` VALUES("10961", "3", "2015-04-16 03:00:37", "207.46.13.27", "2324");
INSERT INTO `wp_gf_form_view` VALUES("10962", "3", "2015-04-16 04:00:00", "157.55.39.135", "2636");
INSERT INTO `wp_gf_form_view` VALUES("10963", "3", "2015-04-16 05:00:21", "207.46.13.27", "2426");
INSERT INTO `wp_gf_form_view` VALUES("10964", "6", "2015-04-16 05:14:08", "207.46.13.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("10965", "3", "2015-04-16 06:00:37", "157.55.39.213", "1644");
INSERT INTO `wp_gf_form_view` VALUES("10966", "3", "2015-04-16 07:01:13", "207.46.13.27", "1638");
INSERT INTO `wp_gf_form_view` VALUES("10967", "3", "2015-04-16 08:00:15", "207.46.13.27", "2139");
INSERT INTO `wp_gf_form_view` VALUES("10968", "7", "2015-04-16 08:18:55", "93.36.118.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("10969", "1", "2015-04-16 08:19:11", "93.36.118.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("10970", "2", "2015-04-16 08:19:19", "93.36.118.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("10971", "3", "2015-04-16 09:00:02", "157.55.39.183", "1767");
INSERT INTO `wp_gf_form_view` VALUES("10972", "3", "2015-04-16 10:00:00", "207.46.13.27", "3132");
INSERT INTO `wp_gf_form_view` VALUES("10973", "3", "2015-04-16 11:00:00", "157.55.39.183", "1454");
INSERT INTO `wp_gf_form_view` VALUES("10974", "3", "2015-04-16 12:00:32", "207.46.13.27", "1302");
INSERT INTO `wp_gf_form_view` VALUES("10975", "6", "2015-04-16 12:23:00", "207.46.13.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("10976", "3", "2015-04-16 13:00:49", "207.46.13.27", "1716");
INSERT INTO `wp_gf_form_view` VALUES("10977", "6", "2015-04-16 13:18:23", "207.46.13.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("10978", "3", "2015-04-16 14:00:03", "157.55.39.183", "1422");
INSERT INTO `wp_gf_form_view` VALUES("10979", "3", "2015-04-16 15:02:33", "207.46.13.23", "1740");
INSERT INTO `wp_gf_form_view` VALUES("10980", "3", "2015-04-16 16:00:17", "157.55.39.183", "1324");
INSERT INTO `wp_gf_form_view` VALUES("10981", "3", "2015-04-16 17:00:47", "207.46.13.27", "1452");
INSERT INTO `wp_gf_form_view` VALUES("10982", "7", "2015-04-16 17:59:50", "79.116.29.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("10983", "3", "2015-04-16 18:00:04", "79.116.29.69", "1435");
INSERT INTO `wp_gf_form_view` VALUES("10984", "1", "2015-04-16 18:00:10", "79.116.29.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("10985", "2", "2015-04-16 18:00:19", "79.116.29.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("10986", "6", "2015-04-16 18:37:41", "157.55.39.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("10987", "3", "2015-04-16 19:00:07", "207.46.13.27", "2899");
INSERT INTO `wp_gf_form_view` VALUES("10988", "1", "2015-04-16 19:49:44", "58.243.46.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("10989", "7", "2015-04-16 19:49:44", "58.243.46.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("10990", "2", "2015-04-16 19:49:45", "58.243.46.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("10991", "3", "2015-04-16 20:00:04", "207.46.13.27", "2510");
INSERT INTO `wp_gf_form_view` VALUES("10992", "3", "2015-04-16 21:00:00", "207.46.13.27", "1656");
INSERT INTO `wp_gf_form_view` VALUES("10993", "6", "2015-04-16 21:30:45", "207.46.13.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("10994", "1", "2015-04-16 21:35:22", "58.243.46.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("10995", "3", "2015-04-16 22:00:05", "157.55.39.183", "1716");
INSERT INTO `wp_gf_form_view` VALUES("10996", "7", "2015-04-16 22:04:53", "207.46.13.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("10997", "1", "2015-04-16 22:13:09", "217.12.204.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("10998", "3", "2015-04-16 23:01:33", "66.249.67.93", "1180");
INSERT INTO `wp_gf_form_view` VALUES("10999", "6", "2015-04-16 23:48:20", "157.55.39.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("11000", "3", "2015-04-17 00:00:09", "207.46.13.27", "1620");
INSERT INTO `wp_gf_form_view` VALUES("11001", "6", "2015-04-17 00:07:02", "104.193.9.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("11002", "3", "2015-04-17 01:00:11", "104.193.9.137", "1457");
INSERT INTO `wp_gf_form_view` VALUES("11003", "7", "2015-04-17 01:05:40", "187.6.141.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("11004", "1", "2015-04-17 01:06:05", "187.6.141.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("11005", "2", "2015-04-17 01:06:19", "187.6.141.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("11006", "3", "2015-04-17 02:00:11", "66.249.67.93", "1032");
INSERT INTO `wp_gf_form_view` VALUES("11007", "3", "2015-04-17 03:00:16", "207.46.13.27", "1432");
INSERT INTO `wp_gf_form_view` VALUES("11008", "3", "2015-04-17 04:00:04", "157.55.39.166", "1872");
INSERT INTO `wp_gf_form_view` VALUES("11009", "6", "2015-04-17 04:58:00", "157.55.39.212", "4");
INSERT INTO `wp_gf_form_view` VALUES("11010", "3", "2015-04-17 05:00:04", "207.46.13.27", "2735");
INSERT INTO `wp_gf_form_view` VALUES("11011", "1", "2015-04-17 05:31:34", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11012", "6", "2015-04-17 05:32:01", "157.55.39.166", "4");
INSERT INTO `wp_gf_form_view` VALUES("11013", "3", "2015-04-17 06:00:05", "157.55.39.212", "2869");
INSERT INTO `wp_gf_form_view` VALUES("11014", "6", "2015-04-17 06:09:00", "157.55.39.166", "4");
INSERT INTO `wp_gf_form_view` VALUES("11015", "3", "2015-04-17 07:00:02", "207.46.13.23", "2865");
INSERT INTO `wp_gf_form_view` VALUES("11016", "3", "2015-04-17 08:00:19", "207.46.13.27", "3700");
INSERT INTO `wp_gf_form_view` VALUES("11017", "6", "2015-04-17 08:08:16", "157.55.39.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("11018", "7", "2015-04-17 08:30:41", "37.115.191.4", "3");
INSERT INTO `wp_gf_form_view` VALUES("11019", "2", "2015-04-17 08:31:00", "37.115.191.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("11020", "1", "2015-04-17 08:31:03", "37.115.191.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("11021", "3", "2015-04-17 09:00:02", "157.55.39.166", "4514");
INSERT INTO `wp_gf_form_view` VALUES("11022", "6", "2015-04-17 09:16:10", "207.46.13.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("11023", "3", "2015-04-17 10:00:04", "142.4.214.124", "3475");
INSERT INTO `wp_gf_form_view` VALUES("11024", "6", "2015-04-17 10:05:47", "66.249.67.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("11025", "3", "2015-04-17 11:00:10", "66.249.67.93", "2592");
INSERT INTO `wp_gf_form_view` VALUES("11026", "6", "2015-04-17 11:10:56", "207.46.13.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("11027", "3", "2015-04-17 12:00:18", "66.249.67.93", "2793");
INSERT INTO `wp_gf_form_view` VALUES("11028", "6", "2015-04-17 12:05:03", "207.46.13.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("11029", "3", "2015-04-17 13:00:15", "207.46.13.27", "4375");
INSERT INTO `wp_gf_form_view` VALUES("11030", "6", "2015-04-17 13:31:03", "157.55.39.166", "8");
INSERT INTO `wp_gf_form_view` VALUES("11031", "3", "2015-04-17 14:00:02", "216.107.155.114", "2982");
INSERT INTO `wp_gf_form_view` VALUES("11032", "3", "2015-04-17 15:00:31", "216.107.155.114", "3267");
INSERT INTO `wp_gf_form_view` VALUES("11033", "6", "2015-04-17 15:38:44", "157.55.39.166", "8");
INSERT INTO `wp_gf_form_view` VALUES("11034", "1", "2015-04-17 15:59:07", "89.230.127.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("11035", "3", "2015-04-17 16:00:02", "157.55.39.255", "5309");
INSERT INTO `wp_gf_form_view` VALUES("11036", "6", "2015-04-17 16:22:38", "207.46.13.23", "6");
INSERT INTO `wp_gf_form_view` VALUES("11037", "1", "2015-04-17 16:23:44", "198.245.65.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("11038", "3", "2015-04-17 17:00:00", "207.46.13.27", "6488");
INSERT INTO `wp_gf_form_view` VALUES("11039", "7", "2015-04-17 17:35:01", "207.46.13.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("11040", "6", "2015-04-17 17:36:20", "157.55.39.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("11041", "3", "2015-04-17 18:00:00", "157.55.39.166", "4927");
INSERT INTO `wp_gf_form_view` VALUES("11042", "6", "2015-04-17 18:42:14", "207.46.13.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("11043", "3", "2015-04-17 19:00:00", "157.55.39.6", "4272");
INSERT INTO `wp_gf_form_view` VALUES("11044", "6", "2015-04-17 19:08:58", "207.46.13.63", "6");
INSERT INTO `wp_gf_form_view` VALUES("11045", "3", "2015-04-17 20:00:08", "207.46.13.63", "3713");
INSERT INTO `wp_gf_form_view` VALUES("11046", "6", "2015-04-17 20:18:48", "207.46.13.20", "6");
INSERT INTO `wp_gf_form_view` VALUES("11047", "7", "2015-04-17 20:44:00", "75.154.237.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("11048", "3", "2015-04-17 21:00:03", "207.46.13.63", "4539");
INSERT INTO `wp_gf_form_view` VALUES("11049", "7", "2015-04-17 21:14:58", "154.20.41.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("11050", "3", "2015-04-17 22:00:02", "66.249.67.93", "4318");
INSERT INTO `wp_gf_form_view` VALUES("11051", "3", "2015-04-17 23:00:00", "207.46.13.16", "3225");
INSERT INTO `wp_gf_form_view` VALUES("11052", "5", "2015-04-17 23:09:13", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11053", "6", "2015-04-17 23:43:56", "5.9.104.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("11054", "3", "2015-04-18 00:00:09", "5.9.104.46", "3305");
INSERT INTO `wp_gf_form_view` VALUES("11055", "6", "2015-04-18 00:00:25", "188.165.15.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("11056", "3", "2015-04-18 01:00:11", "207.46.13.63", "1646");
INSERT INTO `wp_gf_form_view` VALUES("11057", "3", "2015-04-18 02:00:01", "207.46.13.20", "3107");
INSERT INTO `wp_gf_form_view` VALUES("11058", "6", "2015-04-18 02:23:05", "157.55.39.166", "10");
INSERT INTO `wp_gf_form_view` VALUES("11059", "3", "2015-04-18 03:00:05", "207.46.13.20", "1954");
INSERT INTO `wp_gf_form_view` VALUES("11060", "6", "2015-04-18 03:17:08", "207.46.13.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("11061", "2", "2015-04-18 03:29:52", "58.243.235.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("11062", "3", "2015-04-18 04:00:08", "157.55.39.1", "2806");
INSERT INTO `wp_gf_form_view` VALUES("11063", "6", "2015-04-18 04:50:09", "157.55.39.1", "4");
INSERT INTO `wp_gf_form_view` VALUES("11064", "3", "2015-04-18 05:00:02", "207.46.13.16", "2391");
INSERT INTO `wp_gf_form_view` VALUES("11065", "6", "2015-04-18 05:50:37", "207.46.13.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("11066", "3", "2015-04-18 06:00:00", "157.55.39.166", "4126");
INSERT INTO `wp_gf_form_view` VALUES("11067", "6", "2015-04-18 06:07:59", "207.46.13.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("11068", "3", "2015-04-18 07:00:04", "217.79.184.51", "1561");
INSERT INTO `wp_gf_form_view` VALUES("11069", "6", "2015-04-18 07:26:04", "209.222.8.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("11070", "3", "2015-04-18 08:00:03", "207.46.13.16", "1243");
INSERT INTO `wp_gf_form_view` VALUES("11071", "7", "2015-04-18 08:14:19", "41.130.152.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("11072", "1", "2015-04-18 08:14:40", "41.130.152.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("11073", "2", "2015-04-18 08:14:51", "41.130.152.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("11074", "6", "2015-04-18 08:26:25", "207.46.13.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("11075", "3", "2015-04-18 09:00:14", "66.249.67.77", "841");
INSERT INTO `wp_gf_form_view` VALUES("11076", "3", "2015-04-18 09:00:14", "207.46.13.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("11077", "6", "2015-04-18 09:39:21", "157.55.39.166", "4");
INSERT INTO `wp_gf_form_view` VALUES("11078", "3", "2015-04-18 10:00:19", "207.46.13.20", "1008");
INSERT INTO `wp_gf_form_view` VALUES("11079", "6", "2015-04-18 10:03:37", "207.46.13.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("11080", "3", "2015-04-18 11:00:01", "207.46.13.16", "1996");
INSERT INTO `wp_gf_form_view` VALUES("11081", "6", "2015-04-18 11:07:18", "157.55.39.1", "4");
INSERT INTO `wp_gf_form_view` VALUES("11082", "3", "2015-04-18 12:00:16", "68.180.228.245", "2264");
INSERT INTO `wp_gf_form_view` VALUES("11083", "6", "2015-04-18 12:54:26", "157.55.39.166", "2");
INSERT INTO `wp_gf_form_view` VALUES("11084", "3", "2015-04-18 13:00:01", "157.55.39.166", "1561");
INSERT INTO `wp_gf_form_view` VALUES("11085", "6", "2015-04-18 13:32:38", "207.46.13.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("11086", "3", "2015-04-18 14:00:15", "207.46.13.20", "2408");
INSERT INTO `wp_gf_form_view` VALUES("11087", "6", "2015-04-18 14:00:52", "207.46.13.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("11088", "3", "2015-04-18 15:00:07", "207.46.13.16", "2774");
INSERT INTO `wp_gf_form_view` VALUES("11089", "6", "2015-04-18 15:10:32", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11090", "3", "2015-04-18 16:00:02", "157.55.39.166", "2402");
INSERT INTO `wp_gf_form_view` VALUES("11091", "6", "2015-04-18 16:52:40", "157.55.39.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("11092", "3", "2015-04-18 17:00:01", "157.55.39.1", "2639");
INSERT INTO `wp_gf_form_view` VALUES("11093", "6", "2015-04-18 17:25:29", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11094", "3", "2015-04-18 18:00:06", "207.46.13.20", "3852");
INSERT INTO `wp_gf_form_view` VALUES("11095", "6", "2015-04-18 18:03:20", "157.55.39.166", "8");
INSERT INTO `wp_gf_form_view` VALUES("11096", "1", "2015-04-18 18:30:42", "100.43.85.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("11097", "3", "2015-04-18 19:00:01", "207.46.13.20", "3749");
INSERT INTO `wp_gf_form_view` VALUES("11098", "6", "2015-04-18 19:02:59", "157.55.39.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("11099", "3", "2015-04-18 20:00:03", "157.55.39.1", "2279");
INSERT INTO `wp_gf_form_view` VALUES("11100", "7", "2015-04-18 20:26:57", "24.114.36.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("11101", "6", "2015-04-18 20:32:54", "207.46.13.16", "4");
INSERT INTO `wp_gf_form_view` VALUES("11102", "3", "2015-04-18 21:00:07", "136.243.24.27", "2249");
INSERT INTO `wp_gf_form_view` VALUES("11103", "3", "2015-04-18 22:00:01", "207.46.13.20", "2889");
INSERT INTO `wp_gf_form_view` VALUES("11104", "6", "2015-04-18 22:14:25", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11105", "3", "2015-04-18 23:00:05", "207.46.13.20", "2257");
INSERT INTO `wp_gf_form_view` VALUES("11106", "6", "2015-04-18 23:02:46", "207.46.13.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("11107", "3", "2015-04-19 00:00:00", "157.55.39.1", "1980");
INSERT INTO `wp_gf_form_view` VALUES("11108", "3", "2015-04-19 01:00:02", "207.46.13.16", "2835");
INSERT INTO `wp_gf_form_view` VALUES("11109", "3", "2015-04-19 02:00:00", "207.46.13.16", "3193");
INSERT INTO `wp_gf_form_view` VALUES("11110", "1", "2015-04-19 02:10:41", "118.26.150.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("11111", "3", "2015-04-19 03:00:00", "66.249.67.93", "3476");
INSERT INTO `wp_gf_form_view` VALUES("11112", "3", "2015-04-19 04:00:07", "157.55.39.1", "3065");
INSERT INTO `wp_gf_form_view` VALUES("11113", "6", "2015-04-19 04:06:19", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11114", "3", "2015-04-19 05:00:00", "157.55.39.239", "3702");
INSERT INTO `wp_gf_form_view` VALUES("11115", "3", "2015-04-19 06:00:00", "207.46.13.16", "2927");
INSERT INTO `wp_gf_form_view` VALUES("11116", "3", "2015-04-19 07:00:00", "157.55.39.239", "3614");
INSERT INTO `wp_gf_form_view` VALUES("11117", "3", "2015-04-19 08:00:02", "207.46.13.20", "3459");
INSERT INTO `wp_gf_form_view` VALUES("11118", "2", "2015-04-19 08:49:35", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11119", "3", "2015-04-19 09:00:06", "157.55.39.1", "3625");
INSERT INTO `wp_gf_form_view` VALUES("11120", "3", "2015-04-19 10:00:02", "157.55.39.1", "3693");
INSERT INTO `wp_gf_form_view` VALUES("11121", "3", "2015-04-19 11:00:00", "157.55.39.1", "2876");
INSERT INTO `wp_gf_form_view` VALUES("11122", "3", "2015-04-19 12:00:00", "207.46.13.20", "2780");
INSERT INTO `wp_gf_form_view` VALUES("11123", "3", "2015-04-19 13:00:00", "157.55.39.1", "2623");
INSERT INTO `wp_gf_form_view` VALUES("11124", "3", "2015-04-19 14:00:02", "157.55.39.1", "5544");
INSERT INTO `wp_gf_form_view` VALUES("11125", "3", "2015-04-19 15:00:05", "157.55.39.239", "2647");
INSERT INTO `wp_gf_form_view` VALUES("11126", "3", "2015-04-19 16:00:01", "207.46.13.16", "2869");
INSERT INTO `wp_gf_form_view` VALUES("11127", "6", "2015-04-19 16:04:26", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11128", "3", "2015-04-19 17:00:37", "157.55.39.239", "2855");
INSERT INTO `wp_gf_form_view` VALUES("11129", "3", "2015-04-19 18:00:00", "207.46.13.20", "3052");
INSERT INTO `wp_gf_form_view` VALUES("11130", "3", "2015-04-19 19:00:00", "157.55.39.239", "2706");
INSERT INTO `wp_gf_form_view` VALUES("11131", "3", "2015-04-19 20:00:00", "207.46.13.16", "2936");
INSERT INTO `wp_gf_form_view` VALUES("11132", "3", "2015-04-19 21:00:09", "207.46.13.16", "3062");
INSERT INTO `wp_gf_form_view` VALUES("11133", "6", "2015-04-19 21:13:15", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("11134", "3", "2015-04-19 22:00:14", "157.55.39.1", "2947");
INSERT INTO `wp_gf_form_view` VALUES("11135", "3", "2015-04-19 23:00:04", "157.55.39.1", "3038");
INSERT INTO `wp_gf_form_view` VALUES("11136", "3", "2015-04-20 00:00:11", "157.55.39.239", "3630");
INSERT INTO `wp_gf_form_view` VALUES("11137", "3", "2015-04-20 01:00:00", "207.46.13.20", "3700");
INSERT INTO `wp_gf_form_view` VALUES("11138", "6", "2015-04-20 01:37:57", "178.200.183.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("11139", "3", "2015-04-20 02:00:01", "157.55.39.1", "2965");
INSERT INTO `wp_gf_form_view` VALUES("11140", "6", "2015-04-20 02:57:30", "46.4.12.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("11141", "3", "2015-04-20 03:00:00", "46.4.12.20", "3119");
INSERT INTO `wp_gf_form_view` VALUES("11142", "1", "2015-04-20 03:28:49", "198.204.241.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("11143", "3", "2015-04-20 04:00:26", "207.46.13.16", "2901");
INSERT INTO `wp_gf_form_view` VALUES("11144", "3", "2015-04-20 05:00:08", "207.46.13.20", "2926");
INSERT INTO `wp_gf_form_view` VALUES("11145", "7", "2015-04-20 05:57:36", "92.109.102.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("11146", "1", "2015-04-20 05:57:49", "92.109.102.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("11147", "2", "2015-04-20 05:57:55", "92.109.102.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("11148", "3", "2015-04-20 06:00:06", "157.55.39.239", "2889");
INSERT INTO `wp_gf_form_view` VALUES("11149", "6", "2015-04-20 06:15:01", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11150", "3", "2015-04-20 07:00:08", "207.46.13.20", "2391");
INSERT INTO `wp_gf_form_view` VALUES("11151", "3", "2015-04-20 08:00:18", "66.249.67.93", "3105");
INSERT INTO `wp_gf_form_view` VALUES("11152", "3", "2015-04-20 09:00:00", "207.46.13.20", "3418");
INSERT INTO `wp_gf_form_view` VALUES("11153", "3", "2015-04-20 10:00:00", "66.249.67.77", "2640");
INSERT INTO `wp_gf_form_view` VALUES("11154", "3", "2015-04-20 11:00:02", "207.46.13.16", "2947");
INSERT INTO `wp_gf_form_view` VALUES("11155", "3", "2015-04-20 12:00:00", "207.46.13.71", "3418");
INSERT INTO `wp_gf_form_view` VALUES("11156", "6", "2015-04-20 12:51:57", "66.249.67.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("11157", "3", "2015-04-20 13:00:00", "66.249.67.85", "4696");
INSERT INTO `wp_gf_form_view` VALUES("11158", "3", "2015-04-20 14:00:01", "157.55.39.1", "3147");
INSERT INTO `wp_gf_form_view` VALUES("11159", "3", "2015-04-20 15:00:18", "207.46.13.71", "2855");
INSERT INTO `wp_gf_form_view` VALUES("11160", "3", "2015-04-20 16:00:01", "207.46.13.71", "2929");
INSERT INTO `wp_gf_form_view` VALUES("11161", "7", "2015-04-20 16:18:59", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("11162", "1", "2015-04-20 16:19:16", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("11163", "2", "2015-04-20 16:19:25", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("11164", "3", "2015-04-20 17:00:08", "157.55.39.1", "2876");
INSERT INTO `wp_gf_form_view` VALUES("11165", "3", "2015-04-20 18:00:03", "207.46.13.71", "3095");
INSERT INTO `wp_gf_form_view` VALUES("11166", "2", "2015-04-20 18:59:20", "45.55.133.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11167", "1", "2015-04-20 18:59:21", "45.55.133.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11168", "3", "2015-04-20 19:00:02", "207.46.13.71", "2904");
INSERT INTO `wp_gf_form_view` VALUES("11169", "3", "2015-04-20 20:00:00", "157.55.39.1", "2966");
INSERT INTO `wp_gf_form_view` VALUES("11170", "3", "2015-04-20 21:00:00", "157.55.39.1", "3219");
INSERT INTO `wp_gf_form_view` VALUES("11171", "3", "2015-04-20 22:00:01", "157.55.39.1", "3279");
INSERT INTO `wp_gf_form_view` VALUES("11172", "5", "2015-04-20 22:17:12", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("11173", "3", "2015-04-20 23:00:03", "207.46.13.16", "3075");
INSERT INTO `wp_gf_form_view` VALUES("11174", "3", "2015-04-21 00:00:05", "207.46.13.16", "2621");
INSERT INTO `wp_gf_form_view` VALUES("11175", "7", "2015-04-21 00:08:21", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11176", "3", "2015-04-21 01:00:07", "157.55.39.1", "3035");
INSERT INTO `wp_gf_form_view` VALUES("11177", "3", "2015-04-21 02:00:29", "207.46.13.16", "3042");
INSERT INTO `wp_gf_form_view` VALUES("11178", "3", "2015-04-21 03:00:00", "157.55.39.239", "4003");
INSERT INTO `wp_gf_form_view` VALUES("11179", "7", "2015-04-21 03:29:18", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("11180", "1", "2015-04-21 03:29:36", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("11181", "2", "2015-04-21 03:29:44", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("11182", "3", "2015-04-21 04:00:02", "77.248.252.113", "1857");
INSERT INTO `wp_gf_form_view` VALUES("11183", "3", "2015-04-21 05:00:46", "66.249.67.85", "451");
INSERT INTO `wp_gf_form_view` VALUES("11184", "1", "2015-04-21 05:41:10", "104.193.9.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("11185", "3", "2015-04-21 06:00:48", "66.249.67.85", "544");
INSERT INTO `wp_gf_form_view` VALUES("11186", "3", "2015-04-21 07:00:47", "66.249.67.77", "563");
INSERT INTO `wp_gf_form_view` VALUES("11187", "3", "2015-04-21 08:00:08", "157.55.39.239", "676");
INSERT INTO `wp_gf_form_view` VALUES("11188", "3", "2015-04-21 09:00:46", "66.249.67.93", "406");
INSERT INTO `wp_gf_form_view` VALUES("11189", "3", "2015-04-21 10:00:46", "66.249.67.77", "435");
INSERT INTO `wp_gf_form_view` VALUES("11190", "7", "2015-04-21 10:34:40", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11191", "1", "2015-04-21 10:34:40", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11192", "2", "2015-04-21 10:34:41", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11193", "3", "2015-04-21 11:00:00", "66.249.67.93", "164");
INSERT INTO `wp_gf_form_view` VALUES("11194", "3", "2015-04-21 12:00:33", "66.249.67.77", "261");
INSERT INTO `wp_gf_form_view` VALUES("11195", "3", "2015-04-21 13:00:34", "66.249.67.93", "280");
INSERT INTO `wp_gf_form_view` VALUES("11196", "3", "2015-04-21 14:00:32", "66.249.67.93", "468");
INSERT INTO `wp_gf_form_view` VALUES("11197", "3", "2015-04-21 15:00:32", "66.249.67.93", "294");
INSERT INTO `wp_gf_form_view` VALUES("11198", "3", "2015-04-21 16:00:32", "66.249.67.77", "324");
INSERT INTO `wp_gf_form_view` VALUES("11199", "3", "2015-04-21 17:02:12", "66.249.67.93", "244");
INSERT INTO `wp_gf_form_view` VALUES("11200", "6", "2015-04-21 17:07:24", "209.222.8.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("11201", "3", "2015-04-21 18:01:20", "66.249.67.77", "326");
INSERT INTO `wp_gf_form_view` VALUES("11202", "3", "2015-04-21 19:11:41", "66.249.67.93", "142");
INSERT INTO `wp_gf_form_view` VALUES("11203", "1", "2015-04-21 19:57:19", "209.53.121.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("11204", "3", "2015-04-21 20:00:13", "66.249.67.77", "252");
INSERT INTO `wp_gf_form_view` VALUES("11205", "3", "2015-04-21 21:02:21", "66.249.67.77", "328");
INSERT INTO `wp_gf_form_view` VALUES("11206", "1", "2015-04-21 21:46:22", "195.154.169.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("11207", "3", "2015-04-21 22:00:50", "66.249.67.93", "304");
INSERT INTO `wp_gf_form_view` VALUES("11208", "3", "2015-04-21 23:00:14", "66.249.67.93", "264");
INSERT INTO `wp_gf_form_view` VALUES("11209", "3", "2015-04-22 00:00:32", "66.249.67.93", "252");
INSERT INTO `wp_gf_form_view` VALUES("11210", "7", "2015-04-22 00:20:42", "66.249.67.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("11211", "3", "2015-04-22 01:00:56", "66.249.67.93", "202");
INSERT INTO `wp_gf_form_view` VALUES("11212", "3", "2015-04-22 02:02:48", "66.249.67.93", "210");
INSERT INTO `wp_gf_form_view` VALUES("11213", "3", "2015-04-22 03:03:35", "66.249.67.85", "232");
INSERT INTO `wp_gf_form_view` VALUES("11214", "3", "2015-04-22 04:01:32", "66.249.67.85", "224");
INSERT INTO `wp_gf_form_view` VALUES("11215", "3", "2015-04-22 05:00:27", "66.249.67.77", "382");
INSERT INTO `wp_gf_form_view` VALUES("11216", "7", "2015-04-22 05:15:46", "95.241.84.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("11217", "1", "2015-04-22 05:16:00", "95.241.84.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("11218", "2", "2015-04-22 05:16:06", "95.241.84.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("11219", "6", "2015-04-22 05:50:06", "66.249.67.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("11220", "3", "2015-04-22 06:00:17", "66.249.67.85", "598");
INSERT INTO `wp_gf_form_view` VALUES("11221", "3", "2015-04-22 07:00:07", "66.249.67.93", "232");
INSERT INTO `wp_gf_form_view` VALUES("11222", "3", "2015-04-22 08:00:08", "66.249.67.77", "405");
INSERT INTO `wp_gf_form_view` VALUES("11223", "7", "2015-04-22 08:59:01", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11224", "2", "2015-04-22 08:59:01", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11225", "1", "2015-04-22 08:59:02", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11226", "3", "2015-04-22 09:00:47", "66.249.67.85", "248");
INSERT INTO `wp_gf_form_view` VALUES("11227", "3", "2015-04-22 10:00:09", "36.33.45.64", "376");
INSERT INTO `wp_gf_form_view` VALUES("11228", "3", "2015-04-22 11:00:30", "66.249.67.77", "232");
INSERT INTO `wp_gf_form_view` VALUES("11229", "3", "2015-04-22 12:00:27", "66.249.67.77", "260");
INSERT INTO `wp_gf_form_view` VALUES("11230", "3", "2015-04-22 13:00:21", "66.249.67.77", "192");
INSERT INTO `wp_gf_form_view` VALUES("11231", "3", "2015-04-22 14:02:23", "66.249.67.93", "208");
INSERT INTO `wp_gf_form_view` VALUES("11232", "6", "2015-04-22 14:35:25", "66.249.67.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("11233", "3", "2015-04-22 15:00:28", "66.249.67.77", "266");
INSERT INTO `wp_gf_form_view` VALUES("11234", "3", "2015-04-22 16:00:03", "66.249.67.77", "250");
INSERT INTO `wp_gf_form_view` VALUES("11235", "7", "2015-04-22 16:59:24", "205.250.84.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("11236", "3", "2015-04-22 17:00:26", "66.249.67.77", "204");
INSERT INTO `wp_gf_form_view` VALUES("11237", "3", "2015-04-22 18:00:56", "66.249.67.85", "447");
INSERT INTO `wp_gf_form_view` VALUES("11238", "7", "2015-04-22 18:08:14", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11239", "1", "2015-04-22 18:08:16", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11240", "2", "2015-04-22 18:08:16", "36.33.45.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("11241", "3", "2015-04-22 19:00:55", "66.249.67.77", "273");
INSERT INTO `wp_gf_form_view` VALUES("11242", "1", "2015-04-22 19:04:39", "36.33.45.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("11243", "3", "2015-04-22 20:00:54", "66.249.67.85", "228");
INSERT INTO `wp_gf_form_view` VALUES("11244", "3", "2015-04-22 21:00:16", "142.104.37.76", "1117");
INSERT INTO `wp_gf_form_view` VALUES("11245", "1", "2015-04-22 21:12:24", "142.104.37.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("11246", "3", "2015-04-22 22:00:02", "107.170.139.134", "3848");
INSERT INTO `wp_gf_form_view` VALUES("11247", "3", "2015-04-22 23:00:07", "107.170.139.134", "577");
INSERT INTO `wp_gf_form_view` VALUES("11248", "3", "2015-04-23 00:01:51", "66.249.67.93", "252");
INSERT INTO `wp_gf_form_view` VALUES("11249", "3", "2015-04-23 01:00:49", "66.249.67.85", "246");
INSERT INTO `wp_gf_form_view` VALUES("11250", "3", "2015-04-23 02:00:49", "66.249.67.77", "1984");
INSERT INTO `wp_gf_form_view` VALUES("11251", "6", "2015-04-23 02:48:55", "104.255.67.238", "4");
INSERT INTO `wp_gf_form_view` VALUES("11252", "3", "2015-04-23 03:00:04", "104.255.67.238", "664");
INSERT INTO `wp_gf_form_view` VALUES("11253", "3", "2015-04-23 04:00:30", "66.249.67.93", "2523");
INSERT INTO `wp_gf_form_view` VALUES("11254", "6", "2015-04-23 04:46:29", "68.180.228.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("11255", "3", "2015-04-23 05:00:04", "207.46.13.125", "2736");
INSERT INTO `wp_gf_form_view` VALUES("11256", "6", "2015-04-23 05:01:38", "157.55.39.218", "4");
INSERT INTO `wp_gf_form_view` VALUES("11257", "3", "2015-04-23 06:00:07", "207.46.13.16", "3058");
INSERT INTO `wp_gf_form_view` VALUES("11258", "3", "2015-04-23 07:00:06", "157.55.39.218", "2861");
INSERT INTO `wp_gf_form_view` VALUES("11259", "3", "2015-04-23 08:00:00", "157.55.39.217", "2800");
INSERT INTO `wp_gf_form_view` VALUES("11260", "1", "2015-04-23 08:27:29", "157.55.39.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("11261", "3", "2015-04-23 09:00:00", "207.46.13.16", "2925");
INSERT INTO `wp_gf_form_view` VALUES("11262", "6", "2015-04-23 09:07:30", "66.249.67.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("11263", "3", "2015-04-23 10:00:15", "157.55.39.1", "3143");
INSERT INTO `wp_gf_form_view` VALUES("11264", "3", "2015-04-23 11:00:00", "157.55.39.217", "3082");
INSERT INTO `wp_gf_form_view` VALUES("11265", "5", "2015-04-23 11:05:14", "199.21.99.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("11266", "3", "2015-04-23 12:00:00", "207.46.13.16", "3026");
INSERT INTO `wp_gf_form_view` VALUES("11267", "3", "2015-04-23 13:00:07", "157.55.39.218", "2759");
INSERT INTO `wp_gf_form_view` VALUES("11268", "6", "2015-04-23 13:09:08", "157.55.39.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("11269", "3", "2015-04-23 14:00:00", "207.46.13.16", "2984");
INSERT INTO `wp_gf_form_view` VALUES("11270", "7", "2015-04-23 14:38:07", "67.79.122.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("11271", "1", "2015-04-23 14:38:29", "67.79.122.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("11272", "2", "2015-04-23 14:38:35", "67.79.122.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("11273", "6", "2015-04-23 14:42:17", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11274", "3", "2015-04-23 15:00:00", "207.46.13.125", "3063");
INSERT INTO `wp_gf_form_view` VALUES("11275", "6", "2015-04-23 15:34:49", "207.46.13.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("11276", "3", "2015-04-23 16:00:01", "207.46.13.125", "3267");
INSERT INTO `wp_gf_form_view` VALUES("11277", "6", "2015-04-23 16:34:44", "207.46.13.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("11278", "3", "2015-04-23 17:00:01", "157.55.39.217", "3001");
INSERT INTO `wp_gf_form_view` VALUES("11279", "6", "2015-04-23 17:31:13", "157.55.39.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("11280", "3", "2015-04-23 18:00:00", "157.55.39.217", "3378");
INSERT INTO `wp_gf_form_view` VALUES("11281", "6", "2015-04-23 18:43:29", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11282", "3", "2015-04-23 19:00:00", "157.55.39.1", "3334");
INSERT INTO `wp_gf_form_view` VALUES("11283", "6", "2015-04-23 19:33:06", "207.46.13.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("11284", "3", "2015-04-23 20:00:01", "207.46.13.16", "3366");
INSERT INTO `wp_gf_form_view` VALUES("11285", "3", "2015-04-23 21:00:00", "207.46.13.16", "3218");
INSERT INTO `wp_gf_form_view` VALUES("11286", "2", "2015-04-23 21:16:15", "100.43.85.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("11287", "6", "2015-04-23 21:58:48", "157.55.39.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("11288", "3", "2015-04-23 22:00:05", "157.55.39.218", "3349");
INSERT INTO `wp_gf_form_view` VALUES("11289", "6", "2015-04-23 22:12:27", "66.249.67.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("11290", "3", "2015-04-23 23:00:00", "157.55.39.1", "3234");
INSERT INTO `wp_gf_form_view` VALUES("11291", "6", "2015-04-23 23:08:50", "157.55.39.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("11292", "3", "2015-04-24 00:00:00", "157.55.39.218", "4748");
INSERT INTO `wp_gf_form_view` VALUES("11293", "6", "2015-04-24 00:32:01", "157.55.39.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("11294", "3", "2015-04-24 01:00:00", "157.55.39.218", "6588");
INSERT INTO `wp_gf_form_view` VALUES("11295", "3", "2015-04-24 02:00:00", "157.55.39.218", "6947");
INSERT INTO `wp_gf_form_view` VALUES("11296", "6", "2015-04-24 02:15:56", "207.46.13.125", "4");
INSERT INTO `wp_gf_form_view` VALUES("11297", "3", "2015-04-24 03:00:05", "207.46.13.16", "6242");
INSERT INTO `wp_gf_form_view` VALUES("11298", "3", "2015-04-24 04:00:00", "157.55.39.218", "5587");
INSERT INTO `wp_gf_form_view` VALUES("11299", "3", "2015-04-24 05:00:07", "157.55.39.218", "4719");
INSERT INTO `wp_gf_form_view` VALUES("11300", "6", "2015-04-24 05:08:31", "207.46.13.16", "4");
INSERT INTO `wp_gf_form_view` VALUES("11301", "3", "2015-04-24 06:00:00", "207.46.13.125", "4216");
INSERT INTO `wp_gf_form_view` VALUES("11302", "6", "2015-04-24 06:40:57", "157.55.39.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("11303", "3", "2015-04-24 07:00:00", "157.55.39.1", "3605");
INSERT INTO `wp_gf_form_view` VALUES("11304", "6", "2015-04-24 07:10:20", "207.46.13.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("11305", "3", "2015-04-24 08:00:00", "157.55.39.1", "3484");
INSERT INTO `wp_gf_form_view` VALUES("11306", "6", "2015-04-24 08:58:46", "157.55.39.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("11307", "3", "2015-04-24 09:00:02", "207.46.13.16", "3288");
INSERT INTO `wp_gf_form_view` VALUES("11308", "3", "2015-04-24 10:00:02", "157.55.39.1", "3204");
INSERT INTO `wp_gf_form_view` VALUES("11309", "3", "2015-04-24 11:00:00", "207.46.13.16", "3241");
INSERT INTO `wp_gf_form_view` VALUES("11310", "6", "2015-04-24 11:01:02", "207.46.13.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("11311", "3", "2015-04-24 12:00:00", "157.55.39.218", "3212");
INSERT INTO `wp_gf_form_view` VALUES("11312", "3", "2015-04-24 13:00:02", "157.55.39.218", "3088");
INSERT INTO `wp_gf_form_view` VALUES("11313", "3", "2015-04-24 14:00:00", "157.55.39.117", "3120");
INSERT INTO `wp_gf_form_view` VALUES("11314", "3", "2015-04-24 15:00:00", "157.55.39.217", "3366");
INSERT INTO `wp_gf_form_view` VALUES("11315", "2", "2015-04-24 15:07:43", "66.249.67.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("11316", "3", "2015-04-24 16:00:04", "157.55.39.218", "3112");
INSERT INTO `wp_gf_form_view` VALUES("11317", "3", "2015-04-24 17:00:00", "157.55.39.218", "3189");
INSERT INTO `wp_gf_form_view` VALUES("11318", "3", "2015-04-24 18:00:05", "207.46.13.16", "3488");
INSERT INTO `wp_gf_form_view` VALUES("11319", "2", "2015-04-24 18:24:10", "45.55.134.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("11320", "1", "2015-04-24 18:24:10", "45.55.134.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("11321", "3", "2015-04-24 19:00:07", "207.46.13.16", "5699");
INSERT INTO `wp_gf_form_view` VALUES("11322", "3", "2015-04-24 20:00:02", "207.46.13.16", "3623");
INSERT INTO `wp_gf_form_view` VALUES("11323", "3", "2015-04-24 21:00:03", "207.46.13.16", "3470");
INSERT INTO `wp_gf_form_view` VALUES("11324", "7", "2015-04-24 21:05:07", "89.123.61.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("11325", "1", "2015-04-24 21:07:29", "89.123.61.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("11326", "3", "2015-04-24 22:00:02", "207.46.13.16", "3727");
INSERT INTO `wp_gf_form_view` VALUES("11327", "3", "2015-04-24 23:00:04", "207.46.13.16", "4358");
INSERT INTO `wp_gf_form_view` VALUES("11328", "6", "2015-04-24 23:25:48", "157.55.39.117", "4");
INSERT INTO `wp_gf_form_view` VALUES("11329", "3", "2015-04-25 00:00:00", "207.46.13.16", "3305");
INSERT INTO `wp_gf_form_view` VALUES("11330", "3", "2015-04-25 01:00:08", "157.55.39.117", "3744");
INSERT INTO `wp_gf_form_view` VALUES("11331", "6", "2015-04-25 01:24:24", "157.55.39.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("11332", "3", "2015-04-25 02:00:00", "157.55.39.117", "3500");
INSERT INTO `wp_gf_form_view` VALUES("11333", "3", "2015-04-25 03:00:01", "157.55.39.117", "3449");
INSERT INTO `wp_gf_form_view` VALUES("11334", "3", "2015-04-25 04:00:00", "207.46.13.125", "1988");
INSERT INTO `wp_gf_form_view` VALUES("11335", "6", "2015-04-25 04:15:03", "207.46.13.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("11336", "3", "2015-04-25 05:00:22", "157.55.39.117", "1360");
INSERT INTO `wp_gf_form_view` VALUES("11337", "3", "2015-04-25 06:00:10", "157.55.39.218", "928");
INSERT INTO `wp_gf_form_view` VALUES("11338", "3", "2015-04-25 07:00:06", "157.55.39.218", "1385");
INSERT INTO `wp_gf_form_view` VALUES("11339", "3", "2015-04-25 08:00:09", "66.249.79.77", "1846");
INSERT INTO `wp_gf_form_view` VALUES("11340", "6", "2015-04-25 08:17:37", "207.46.13.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("11341", "3", "2015-04-25 09:00:05", "157.55.39.117", "2558");
INSERT INTO `wp_gf_form_view` VALUES("11342", "6", "2015-04-25 09:08:21", "178.63.49.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("11343", "3", "2015-04-25 10:00:03", "207.46.13.16", "1764");
INSERT INTO `wp_gf_form_view` VALUES("11344", "2", "2015-04-25 10:06:51", "100.43.90.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("11345", "3", "2015-04-25 11:00:07", "207.46.13.16", "1719");
INSERT INTO `wp_gf_form_view` VALUES("11346", "3", "2015-04-25 12:00:17", "207.46.13.16", "1258");
INSERT INTO `wp_gf_form_view` VALUES("11347", "2", "2015-04-25 12:13:18", "157.55.39.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("11348", "3", "2015-04-25 13:00:21", "66.249.79.85", "1350");
INSERT INTO `wp_gf_form_view` VALUES("11349", "3", "2015-04-25 14:00:01", "207.46.13.16", "890");
INSERT INTO `wp_gf_form_view` VALUES("11350", "3", "2015-04-25 15:01:34", "157.55.39.218", "1084");
INSERT INTO `wp_gf_form_view` VALUES("11351", "3", "2015-04-25 16:00:00", "66.249.79.93", "890");
INSERT INTO `wp_gf_form_view` VALUES("11352", "6", "2015-04-25 16:33:35", "157.55.39.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("11353", "3", "2015-04-25 17:00:26", "66.249.79.77", "1254");
INSERT INTO `wp_gf_form_view` VALUES("11354", "3", "2015-04-25 18:00:06", "157.55.39.218", "942");
INSERT INTO `wp_gf_form_view` VALUES("11355", "3", "2015-04-25 19:00:14", "207.46.13.16", "884");
INSERT INTO `wp_gf_form_view` VALUES("11356", "3", "2015-04-25 20:01:09", "66.249.79.85", "1202");
INSERT INTO `wp_gf_form_view` VALUES("11357", "3", "2015-04-25 21:00:03", "66.249.79.77", "1122");
INSERT INTO `wp_gf_form_view` VALUES("11358", "3", "2015-04-25 22:00:00", "157.55.39.117", "1138");
INSERT INTO `wp_gf_form_view` VALUES("11359", "3", "2015-04-25 23:01:16", "66.249.79.77", "2376");
INSERT INTO `wp_gf_form_view` VALUES("11360", "6", "2015-04-25 23:44:21", "157.55.39.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("11361", "3", "2015-04-26 00:00:02", "5.9.156.107", "3664");
INSERT INTO `wp_gf_form_view` VALUES("11362", "3", "2015-04-26 01:00:04", "207.46.13.16", "2366");
INSERT INTO `wp_gf_form_view` VALUES("11363", "3", "2015-04-26 02:00:07", "207.46.13.125", "2080");
INSERT INTO `wp_gf_form_view` VALUES("11364", "3", "2015-04-26 03:00:02", "207.46.13.16", "1468");
INSERT INTO `wp_gf_form_view` VALUES("11365", "3", "2015-04-26 04:00:09", "207.46.13.16", "1314");
INSERT INTO `wp_gf_form_view` VALUES("11366", "3", "2015-04-26 05:00:04", "207.46.13.16", "1066");
INSERT INTO `wp_gf_form_view` VALUES("11367", "3", "2015-04-26 06:00:26", "207.46.13.16", "1261");
INSERT INTO `wp_gf_form_view` VALUES("11368", "3", "2015-04-26 07:00:34", "207.46.13.132", "946");
INSERT INTO `wp_gf_form_view` VALUES("11369", "3", "2015-04-26 08:00:02", "207.46.13.135", "902");
INSERT INTO `wp_gf_form_view` VALUES("11370", "3", "2015-04-26 09:00:13", "207.46.13.135", "1036");
INSERT INTO `wp_gf_form_view` VALUES("11371", "3", "2015-04-26 10:00:11", "157.55.39.117", "1098");
INSERT INTO `wp_gf_form_view` VALUES("11372", "1", "2015-04-26 10:04:52", "66.249.79.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("11373", "3", "2015-04-26 11:00:28", "207.46.13.135", "1122");
INSERT INTO `wp_gf_form_view` VALUES("11374", "6", "2015-04-26 11:49:45", "157.55.39.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("11375", "3", "2015-04-26 12:01:07", "157.55.39.71", "991");
INSERT INTO `wp_gf_form_view` VALUES("11376", "6", "2015-04-26 12:30:34", "66.249.79.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("11377", "1", "2015-04-26 12:58:23", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11378", "3", "2015-04-26 13:00:01", "157.55.39.218", "1076");
INSERT INTO `wp_gf_form_view` VALUES("11379", "3", "2015-04-26 14:00:08", "207.46.13.135", "1446");
INSERT INTO `wp_gf_form_view` VALUES("11380", "3", "2015-04-26 15:00:14", "157.55.39.218", "958");
INSERT INTO `wp_gf_form_view` VALUES("11381", "3", "2015-04-26 16:00:11", "207.46.13.135", "988");
INSERT INTO `wp_gf_form_view` VALUES("11382", "3", "2015-04-26 17:00:03", "66.249.79.85", "1182");
INSERT INTO `wp_gf_form_view` VALUES("11383", "3", "2015-04-26 18:00:13", "157.55.39.117", "1762");
INSERT INTO `wp_gf_form_view` VALUES("11384", "3", "2015-04-26 19:00:08", "157.55.39.71", "1334");
INSERT INTO `wp_gf_form_view` VALUES("11385", "6", "2015-04-26 19:00:11", "157.55.39.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("11386", "1", "2015-04-26 19:03:29", "195.154.169.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("11387", "3", "2015-04-26 20:00:05", "157.55.39.218", "1122");
INSERT INTO `wp_gf_form_view` VALUES("11388", "7", "2015-04-26 20:38:19", "199.21.99.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("11389", "3", "2015-04-26 21:01:08", "157.55.39.218", "1548");
INSERT INTO `wp_gf_form_view` VALUES("11390", "3", "2015-04-26 22:00:10", "157.55.39.117", "1732");
INSERT INTO `wp_gf_form_view` VALUES("11391", "3", "2015-04-26 23:00:03", "157.55.39.117", "1387");
INSERT INTO `wp_gf_form_view` VALUES("11392", "3", "2015-04-27 00:00:22", "207.46.13.135", "2390");
INSERT INTO `wp_gf_form_view` VALUES("11393", "3", "2015-04-27 01:00:01", "198.27.82.152", "1896");
INSERT INTO `wp_gf_form_view` VALUES("11394", "7", "2015-04-27 01:08:20", "157.55.39.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("11395", "6", "2015-04-27 01:12:14", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("11396", "3", "2015-04-27 02:00:03", "66.249.79.85", "1446");
INSERT INTO `wp_gf_form_view` VALUES("11397", "6", "2015-04-27 02:47:18", "157.55.39.117", "4");
INSERT INTO `wp_gf_form_view` VALUES("11398", "3", "2015-04-27 03:00:03", "207.46.13.135", "1407");
INSERT INTO `wp_gf_form_view` VALUES("11399", "3", "2015-04-27 04:00:00", "157.55.39.71", "1326");
INSERT INTO `wp_gf_form_view` VALUES("11400", "3", "2015-04-27 05:00:18", "66.249.79.77", "1524");
INSERT INTO `wp_gf_form_view` VALUES("11401", "3", "2015-04-27 06:00:26", "157.55.39.71", "1564");
INSERT INTO `wp_gf_form_view` VALUES("11402", "3", "2015-04-27 07:00:18", "66.249.79.85", "1211");
INSERT INTO `wp_gf_form_view` VALUES("11403", "6", "2015-04-27 07:19:51", "157.55.39.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("11404", "3", "2015-04-27 08:00:00", "157.55.39.117", "1392");
INSERT INTO `wp_gf_form_view` VALUES("11405", "3", "2015-04-27 09:00:00", "157.55.39.71", "1200");
INSERT INTO `wp_gf_form_view` VALUES("11406", "7", "2015-04-27 09:41:05", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11407", "3", "2015-04-27 10:00:50", "157.55.39.71", "1174");
INSERT INTO `wp_gf_form_view` VALUES("11408", "3", "2015-04-27 11:00:13", "157.55.39.218", "1182");
INSERT INTO `wp_gf_form_view` VALUES("11409", "3", "2015-04-27 12:00:03", "207.46.13.135", "1230");
INSERT INTO `wp_gf_form_view` VALUES("11410", "3", "2015-04-27 13:00:14", "157.55.39.117", "1038");
INSERT INTO `wp_gf_form_view` VALUES("11411", "3", "2015-04-27 14:00:00", "157.55.39.71", "1032");
INSERT INTO `wp_gf_form_view` VALUES("11412", "3", "2015-04-27 15:00:02", "157.55.39.117", "1078");
INSERT INTO `wp_gf_form_view` VALUES("11413", "7", "2015-04-27 15:38:47", "157.55.39.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("11414", "3", "2015-04-27 16:00:09", "157.55.39.117", "1072");
INSERT INTO `wp_gf_form_view` VALUES("11415", "3", "2015-04-27 17:00:20", "157.55.39.117", "962");
INSERT INTO `wp_gf_form_view` VALUES("11416", "3", "2015-04-27 18:00:01", "66.249.79.77", "786");
INSERT INTO `wp_gf_form_view` VALUES("11417", "3", "2015-04-27 19:00:12", "157.55.39.117", "1546");
INSERT INTO `wp_gf_form_view` VALUES("11418", "3", "2015-04-27 20:00:41", "157.55.39.117", "1382");
INSERT INTO `wp_gf_form_view` VALUES("11419", "6", "2015-04-27 20:27:56", "157.55.39.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("11420", "3", "2015-04-27 21:02:44", "157.55.39.217", "1056");
INSERT INTO `wp_gf_form_view` VALUES("11421", "3", "2015-04-27 22:01:09", "66.249.79.77", "1593");
INSERT INTO `wp_gf_form_view` VALUES("11422", "3", "2015-04-27 23:00:29", "66.249.79.93", "1712");
INSERT INTO `wp_gf_form_view` VALUES("11423", "7", "2015-04-27 23:01:26", "144.76.201.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("11424", "2", "2015-04-27 23:45:17", "54.227.13.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("11425", "1", "2015-04-27 23:45:19", "54.227.13.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("11426", "3", "2015-04-28 00:00:46", "157.55.39.71", "1932");
INSERT INTO `wp_gf_form_view` VALUES("11427", "3", "2015-04-28 01:00:08", "157.55.39.117", "1200");
INSERT INTO `wp_gf_form_view` VALUES("11428", "3", "2015-04-28 02:00:04", "157.55.39.71", "1274");
INSERT INTO `wp_gf_form_view` VALUES("11429", "3", "2015-04-28 03:00:06", "157.55.39.253", "2687");
INSERT INTO `wp_gf_form_view` VALUES("11430", "3", "2015-04-28 04:00:06", "157.55.39.253", "1289");
INSERT INTO `wp_gf_form_view` VALUES("11431", "3", "2015-04-28 05:00:18", "157.55.39.253", "1210");
INSERT INTO `wp_gf_form_view` VALUES("11432", "3", "2015-04-28 06:00:01", "157.55.39.71", "1262");
INSERT INTO `wp_gf_form_view` VALUES("11433", "3", "2015-04-28 07:00:07", "66.249.79.85", "1622");
INSERT INTO `wp_gf_form_view` VALUES("11434", "3", "2015-04-28 08:00:08", "207.46.13.135", "986");
INSERT INTO `wp_gf_form_view` VALUES("11435", "3", "2015-04-28 09:02:33", "157.55.39.71", "290");
INSERT INTO `wp_gf_form_view` VALUES("11436", "3", "2015-04-28 10:01:09", "157.55.39.71", "312");
INSERT INTO `wp_gf_form_view` VALUES("11437", "3", "2015-04-28 11:00:14", "157.55.39.71", "274");
INSERT INTO `wp_gf_form_view` VALUES("11438", "3", "2015-04-28 12:00:00", "157.55.39.71", "236");
INSERT INTO `wp_gf_form_view` VALUES("11439", "3", "2015-04-28 13:01:20", "66.249.79.85", "105");
INSERT INTO `wp_gf_form_view` VALUES("11440", "3", "2015-04-28 14:00:50", "68.180.228.245", "292");
INSERT INTO `wp_gf_form_view` VALUES("11441", "6", "2015-04-28 14:04:17", "157.55.39.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("11442", "3", "2015-04-28 15:32:09", "68.180.228.245", "125");
INSERT INTO `wp_gf_form_view` VALUES("11443", "3", "2015-04-28 16:00:14", "144.76.29.162", "1668");
INSERT INTO `wp_gf_form_view` VALUES("11444", "6", "2015-04-28 16:43:40", "64.251.74.130", "7");
INSERT INTO `wp_gf_form_view` VALUES("11445", "3", "2015-04-28 17:00:05", "198.27.82.152", "210");
INSERT INTO `wp_gf_form_view` VALUES("11446", "3", "2015-04-28 18:02:16", "131.137.245.207", "222");
INSERT INTO `wp_gf_form_view` VALUES("11447", "6", "2015-04-28 18:51:30", "95.130.11.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("11448", "3", "2015-04-28 19:49:50", "68.180.228.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("11449", "1", "2015-04-28 20:05:32", "45.55.133.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("11450", "3", "2015-04-28 20:05:32", "45.55.133.243", "42");
INSERT INTO `wp_gf_form_view` VALUES("11451", "2", "2015-04-28 20:05:33", "45.55.133.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("11452", "3", "2015-04-28 21:04:03", "178.137.19.143", "35");
INSERT INTO `wp_gf_form_view` VALUES("11453", "3", "2015-04-28 21:04:03", "178.137.19.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("11454", "3", "2015-04-28 22:03:25", "68.180.228.245", "20");
INSERT INTO `wp_gf_form_view` VALUES("11455", "3", "2015-04-28 23:07:14", "66.249.79.93", "40");
INSERT INTO `wp_gf_form_view` VALUES("11456", "3", "2015-04-29 00:00:04", "199.21.99.218", "363");
INSERT INTO `wp_gf_form_view` VALUES("11457", "6", "2015-04-29 00:40:24", "157.55.39.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("11458", "3", "2015-04-29 01:02:37", "66.249.79.93", "42");
INSERT INTO `wp_gf_form_view` VALUES("11459", "3", "2015-04-29 02:00:21", "66.249.79.77", "325");
INSERT INTO `wp_gf_form_view` VALUES("11460", "3", "2015-04-29 03:00:04", "142.4.213.178", "561");
INSERT INTO `wp_gf_form_view` VALUES("11461", "3", "2015-04-29 04:00:10", "142.4.213.178", "228");
INSERT INTO `wp_gf_form_view` VALUES("11462", "3", "2015-04-29 05:00:04", "157.55.39.253", "170");
INSERT INTO `wp_gf_form_view` VALUES("11463", "2", "2015-04-29 05:41:50", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11464", "3", "2015-04-29 06:00:21", "207.46.13.135", "763");
INSERT INTO `wp_gf_form_view` VALUES("11465", "6", "2015-04-29 06:17:02", "68.180.228.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("11466", "3", "2015-04-29 07:00:05", "66.249.79.77", "688");
INSERT INTO `wp_gf_form_view` VALUES("11467", "3", "2015-04-29 08:00:00", "91.12.70.117", "654");
INSERT INTO `wp_gf_form_view` VALUES("11468", "3", "2015-04-29 09:00:34", "36.33.43.116", "161");
INSERT INTO `wp_gf_form_view` VALUES("11469", "6", "2015-04-29 09:59:15", "66.249.79.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("11470", "3", "2015-04-29 10:00:40", "66.249.79.77", "231");
INSERT INTO `wp_gf_form_view` VALUES("11471", "6", "2015-04-29 10:02:07", "66.249.79.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("11472", "2", "2015-04-29 10:30:26", "36.33.43.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("11473", "3", "2015-04-29 11:00:53", "66.249.79.93", "145");
INSERT INTO `wp_gf_form_view` VALUES("11474", "3", "2015-04-29 12:00:57", "66.249.79.85", "127");
INSERT INTO `wp_gf_form_view` VALUES("11475", "3", "2015-04-29 13:01:03", "66.249.79.85", "154");
INSERT INTO `wp_gf_form_view` VALUES("11476", "3", "2015-04-29 14:01:15", "66.249.79.93", "790");
INSERT INTO `wp_gf_form_view` VALUES("11477", "3", "2015-04-29 15:00:03", "66.249.79.93", "172");
INSERT INTO `wp_gf_form_view` VALUES("11478", "3", "2015-04-29 16:00:16", "66.249.79.77", "177");
INSERT INTO `wp_gf_form_view` VALUES("11479", "3", "2015-04-29 17:00:27", "66.249.79.77", "111");
INSERT INTO `wp_gf_form_view` VALUES("11480", "3", "2015-04-29 18:00:39", "66.249.79.77", "181");
INSERT INTO `wp_gf_form_view` VALUES("11481", "3", "2015-04-29 19:00:09", "157.55.39.147", "638");
INSERT INTO `wp_gf_form_view` VALUES("11482", "6", "2015-04-29 19:41:45", "66.249.79.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("11483", "3", "2015-04-29 20:00:25", "157.55.39.71", "1204");
INSERT INTO `wp_gf_form_view` VALUES("11484", "6", "2015-04-29 20:41:45", "178.63.49.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("11485", "3", "2015-04-29 21:00:01", "157.55.39.71", "446");
INSERT INTO `wp_gf_form_view` VALUES("11486", "3", "2015-04-29 22:00:03", "207.46.13.135", "357");
INSERT INTO `wp_gf_form_view` VALUES("11487", "3", "2015-04-29 23:00:24", "66.249.79.93", "278");
INSERT INTO `wp_gf_form_view` VALUES("11488", "3", "2015-04-30 00:00:36", "157.55.39.253", "390");
INSERT INTO `wp_gf_form_view` VALUES("11489", "2", "2015-04-30 00:37:28", "36.33.43.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("11490", "3", "2015-04-30 01:00:14", "66.249.79.85", "506");
INSERT INTO `wp_gf_form_view` VALUES("11491", "3", "2015-04-30 02:00:02", "207.46.13.135", "466");
INSERT INTO `wp_gf_form_view` VALUES("11492", "3", "2015-04-30 03:00:06", "207.46.13.135", "575");
INSERT INTO `wp_gf_form_view` VALUES("11493", "3", "2015-04-30 04:00:21", "157.55.39.148", "821");
INSERT INTO `wp_gf_form_view` VALUES("11494", "1", "2015-04-30 04:32:34", "36.33.43.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("11495", "3", "2015-04-30 05:00:34", "157.55.39.71", "416");
INSERT INTO `wp_gf_form_view` VALUES("11496", "3", "2015-04-30 06:00:27", "157.55.39.71", "323");
INSERT INTO `wp_gf_form_view` VALUES("11497", "3", "2015-04-30 07:00:06", "157.55.39.71", "813");
INSERT INTO `wp_gf_form_view` VALUES("11498", "3", "2015-04-30 08:00:03", "5.9.89.170", "979");
INSERT INTO `wp_gf_form_view` VALUES("11499", "3", "2015-04-30 09:00:09", "207.46.13.135", "402");
INSERT INTO `wp_gf_form_view` VALUES("11500", "3", "2015-04-30 10:00:24", "66.249.79.85", "375");
INSERT INTO `wp_gf_form_view` VALUES("11501", "3", "2015-04-30 11:00:22", "207.46.13.135", "735");
INSERT INTO `wp_gf_form_view` VALUES("11502", "3", "2015-04-30 12:00:03", "198.27.82.152", "1017");
INSERT INTO `wp_gf_form_view` VALUES("11503", "3", "2015-04-30 13:00:01", "66.249.79.93", "468");
INSERT INTO `wp_gf_form_view` VALUES("11504", "1", "2015-04-30 13:53:28", "216.232.157.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("11505", "3", "2015-04-30 14:01:13", "66.249.79.93", "218");
INSERT INTO `wp_gf_form_view` VALUES("11506", "3", "2015-04-30 15:02:19", "157.55.39.253", "156");
INSERT INTO `wp_gf_form_view` VALUES("11507", "3", "2015-04-30 16:00:04", "66.249.79.93", "205");
INSERT INTO `wp_gf_form_view` VALUES("11508", "3", "2015-04-30 17:01:17", "66.249.79.77", "102");
INSERT INTO `wp_gf_form_view` VALUES("11509", "3", "2015-04-30 18:00:40", "66.249.79.93", "207");
INSERT INTO `wp_gf_form_view` VALUES("11510", "3", "2015-04-30 19:02:39", "198.27.82.152", "280");
INSERT INTO `wp_gf_form_view` VALUES("11511", "6", "2015-04-30 19:14:56", "198.27.82.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("11512", "3", "2015-04-30 20:00:32", "207.216.37.169", "182");
INSERT INTO `wp_gf_form_view` VALUES("11513", "3", "2015-04-30 21:01:56", "207.46.13.96", "510");
INSERT INTO `wp_gf_form_view` VALUES("11514", "7", "2015-04-30 21:31:45", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("11515", "5", "2015-04-30 21:32:06", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("11516", "2", "2015-04-30 21:32:59", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("11517", "3", "2015-04-30 22:00:33", "188.165.15.99", "160");
INSERT INTO `wp_gf_form_view` VALUES("11518", "3", "2015-04-30 23:00:26", "66.249.79.77", "182");
INSERT INTO `wp_gf_form_view` VALUES("11519", "3", "2015-05-01 00:02:04", "66.249.79.85", "331");
INSERT INTO `wp_gf_form_view` VALUES("11520", "3", "2015-05-01 01:01:09", "66.249.79.77", "2165");
INSERT INTO `wp_gf_form_view` VALUES("11521", "6", "2015-05-01 01:13:33", "157.55.39.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("11522", "2", "2015-05-01 01:24:45", "71.176.122.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("11523", "3", "2015-05-01 02:00:06", "198.245.51.90", "659");
INSERT INTO `wp_gf_form_view` VALUES("11524", "3", "2015-05-01 03:00:30", "68.180.228.245", "387");
INSERT INTO `wp_gf_form_view` VALUES("11525", "3", "2015-05-01 04:00:58", "157.55.39.77", "676");
INSERT INTO `wp_gf_form_view` VALUES("11526", "3", "2015-05-01 05:00:19", "207.46.13.135", "587");
INSERT INTO `wp_gf_form_view` VALUES("11527", "3", "2015-05-01 06:00:00", "207.46.13.96", "295");
INSERT INTO `wp_gf_form_view` VALUES("11528", "3", "2015-05-01 07:00:16", "157.55.39.77", "409");
INSERT INTO `wp_gf_form_view` VALUES("11529", "6", "2015-05-01 07:44:49", "157.55.39.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("11530", "3", "2015-05-01 08:00:21", "157.55.39.77", "477");
INSERT INTO `wp_gf_form_view` VALUES("11531", "3", "2015-05-01 09:00:04", "66.249.79.77", "328");
INSERT INTO `wp_gf_form_view` VALUES("11532", "1", "2015-05-01 09:48:29", "100.43.85.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("11533", "2", "2015-05-01 09:48:36", "100.43.85.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("11534", "3", "2015-05-01 10:00:03", "207.46.13.96", "423");
INSERT INTO `wp_gf_form_view` VALUES("11535", "3", "2015-05-01 11:00:38", "157.55.39.50", "330");
INSERT INTO `wp_gf_form_view` VALUES("11536", "2", "2015-05-01 11:08:29", "142.4.218.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("11537", "1", "2015-05-01 11:08:38", "142.4.218.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("11538", "7", "2015-05-01 11:08:58", "142.4.218.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("11539", "3", "2015-05-01 12:00:42", "157.55.39.51", "503");
INSERT INTO `wp_gf_form_view` VALUES("11540", "6", "2015-05-01 12:06:57", "208.107.41.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("11541", "3", "2015-05-01 13:00:01", "157.55.39.51", "385");
INSERT INTO `wp_gf_form_view` VALUES("11542", "3", "2015-05-01 14:00:00", "157.55.39.253", "524");
INSERT INTO `wp_gf_form_view` VALUES("11543", "3", "2015-05-01 15:00:06", "157.55.39.51", "463");
INSERT INTO `wp_gf_form_view` VALUES("11544", "6", "2015-05-01 15:01:26", "157.55.39.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("11545", "3", "2015-05-01 16:00:07", "207.46.13.96", "470");
INSERT INTO `wp_gf_form_view` VALUES("11546", "7", "2015-05-01 16:33:36", "185.53.44.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("11547", "3", "2015-05-01 17:00:58", "157.55.39.51", "429");
INSERT INTO `wp_gf_form_view` VALUES("11548", "3", "2015-05-01 18:01:15", "157.55.39.51", "358");
INSERT INTO `wp_gf_form_view` VALUES("11549", "6", "2015-05-01 18:19:27", "66.249.79.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("11550", "3", "2015-05-01 19:00:18", "157.55.39.51", "244");
INSERT INTO `wp_gf_form_view` VALUES("11551", "3", "2015-05-01 20:01:06", "157.55.39.81", "373");
INSERT INTO `wp_gf_form_view` VALUES("11552", "1", "2015-05-01 20:08:08", "217.12.204.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("11553", "3", "2015-05-01 21:00:06", "66.249.79.85", "480");
INSERT INTO `wp_gf_form_view` VALUES("11554", "3", "2015-05-01 22:00:20", "157.55.39.77", "328");
INSERT INTO `wp_gf_form_view` VALUES("11555", "3", "2015-05-01 23:02:26", "157.55.39.81", "557");
INSERT INTO `wp_gf_form_view` VALUES("11556", "6", "2015-05-01 23:47:54", "157.55.39.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("11557", "3", "2015-05-02 00:01:59", "157.55.39.51", "245");
INSERT INTO `wp_gf_form_view` VALUES("11558", "3", "2015-05-02 01:01:36", "157.55.39.81", "248");
INSERT INTO `wp_gf_form_view` VALUES("11559", "3", "2015-05-02 02:00:14", "157.55.39.51", "385");
INSERT INTO `wp_gf_form_view` VALUES("11560", "3", "2015-05-02 03:00:01", "157.55.39.51", "222");
INSERT INTO `wp_gf_form_view` VALUES("11561", "3", "2015-05-02 04:00:25", "157.55.39.81", "389");
INSERT INTO `wp_gf_form_view` VALUES("11562", "3", "2015-05-02 05:00:11", "207.46.13.96", "343");
INSERT INTO `wp_gf_form_view` VALUES("11563", "3", "2015-05-02 06:01:17", "157.55.39.81", "338");
INSERT INTO `wp_gf_form_view` VALUES("11564", "3", "2015-05-02 07:00:48", "157.55.39.77", "346");
INSERT INTO `wp_gf_form_view` VALUES("11565", "3", "2015-05-02 08:00:04", "157.55.39.81", "344");
INSERT INTO `wp_gf_form_view` VALUES("11566", "3", "2015-05-02 09:00:48", "157.55.39.77", "338");
INSERT INTO `wp_gf_form_view` VALUES("11567", "3", "2015-05-02 10:00:02", "207.46.13.96", "528");
INSERT INTO `wp_gf_form_view` VALUES("11568", "7", "2015-05-02 10:22:20", "178.137.88.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("11569", "2", "2015-05-02 10:56:29", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("11570", "1", "2015-05-02 10:56:33", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("11571", "5", "2015-05-02 10:59:35", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("11572", "3", "2015-05-02 11:00:16", "66.249.79.93", "699");
INSERT INTO `wp_gf_form_view` VALUES("11573", "3", "2015-05-02 12:00:11", "157.55.39.77", "288");
INSERT INTO `wp_gf_form_view` VALUES("11574", "3", "2015-05-02 13:01:11", "157.55.39.51", "312");
INSERT INTO `wp_gf_form_view` VALUES("11575", "3", "2015-05-02 14:00:05", "157.55.39.77", "255");
INSERT INTO `wp_gf_form_view` VALUES("11576", "3", "2015-05-02 15:00:41", "157.55.39.81", "331");
INSERT INTO `wp_gf_form_view` VALUES("11577", "3", "2015-05-02 16:01:09", "157.55.39.51", "308");
INSERT INTO `wp_gf_form_view` VALUES("11578", "3", "2015-05-02 17:00:28", "157.55.39.81", "480");
INSERT INTO `wp_gf_form_view` VALUES("11579", "3", "2015-05-02 18:00:23", "157.55.39.51", "390");
INSERT INTO `wp_gf_form_view` VALUES("11580", "3", "2015-05-02 19:01:36", "66.249.79.77", "461");
INSERT INTO `wp_gf_form_view` VALUES("11581", "3", "2015-05-02 20:00:32", "66.249.79.93", "401");
INSERT INTO `wp_gf_form_view` VALUES("11582", "3", "2015-05-02 21:00:21", "68.180.228.245", "424");
INSERT INTO `wp_gf_form_view` VALUES("11583", "3", "2015-05-02 22:00:08", "66.249.79.93", "393");
INSERT INTO `wp_gf_form_view` VALUES("11584", "3", "2015-05-02 23:00:13", "157.55.39.81", "242");
INSERT INTO `wp_gf_form_view` VALUES("11585", "3", "2015-05-03 00:00:23", "157.55.39.77", "232");
INSERT INTO `wp_gf_form_view` VALUES("11586", "3", "2015-05-03 01:00:05", "207.46.13.96", "228");
INSERT INTO `wp_gf_form_view` VALUES("11587", "3", "2015-05-03 02:00:17", "207.46.13.96", "240");
INSERT INTO `wp_gf_form_view` VALUES("11588", "3", "2015-05-03 03:01:00", "157.55.39.81", "128");
INSERT INTO `wp_gf_form_view` VALUES("11589", "3", "2015-05-03 04:01:19", "66.249.79.77", "129");
INSERT INTO `wp_gf_form_view` VALUES("11590", "3", "2015-05-03 05:00:35", "66.249.79.85", "119");
INSERT INTO `wp_gf_form_view` VALUES("11591", "3", "2015-05-03 06:01:01", "157.55.39.77", "176");
INSERT INTO `wp_gf_form_view` VALUES("11592", "3", "2015-05-03 07:00:10", "66.249.79.77", "248");
INSERT INTO `wp_gf_form_view` VALUES("11593", "3", "2015-05-03 08:00:19", "66.249.79.93", "246");
INSERT INTO `wp_gf_form_view` VALUES("11594", "3", "2015-05-03 09:00:26", "66.249.79.77", "218");
INSERT INTO `wp_gf_form_view` VALUES("11595", "3", "2015-05-03 10:00:56", "207.46.13.96", "304");
INSERT INTO `wp_gf_form_view` VALUES("11596", "6", "2015-05-03 10:49:25", "66.249.79.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("11597", "3", "2015-05-03 11:00:43", "66.249.79.93", "266");
INSERT INTO `wp_gf_form_view` VALUES("11598", "3", "2015-05-03 12:00:51", "66.249.79.85", "194");
INSERT INTO `wp_gf_form_view` VALUES("11599", "3", "2015-05-03 13:00:58", "66.249.79.77", "384");
INSERT INTO `wp_gf_form_view` VALUES("11600", "3", "2015-05-03 14:00:02", "157.55.39.75", "432");
INSERT INTO `wp_gf_form_view` VALUES("11601", "6", "2015-05-03 14:11:59", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("11602", "3", "2015-05-03 15:00:03", "157.55.39.75", "384");
INSERT INTO `wp_gf_form_view` VALUES("11603", "1", "2015-05-03 15:31:52", "207.6.127.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("11604", "6", "2015-05-03 15:50:04", "68.180.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("11605", "3", "2015-05-03 16:00:03", "66.249.79.85", "411");
INSERT INTO `wp_gf_form_view` VALUES("11606", "3", "2015-05-03 17:00:11", "66.249.79.93", "352");
INSERT INTO `wp_gf_form_view` VALUES("11607", "3", "2015-05-03 18:00:19", "66.249.79.93", "333");
INSERT INTO `wp_gf_form_view` VALUES("11608", "3", "2015-05-03 19:00:27", "66.249.79.85", "299");
INSERT INTO `wp_gf_form_view` VALUES("11609", "3", "2015-05-03 20:00:10", "157.55.39.75", "281");
INSERT INTO `wp_gf_form_view` VALUES("11610", "3", "2015-05-03 21:00:20", "157.55.39.77", "280");
INSERT INTO `wp_gf_form_view` VALUES("11611", "3", "2015-05-03 22:00:15", "66.249.79.77", "270");
INSERT INTO `wp_gf_form_view` VALUES("11612", "6", "2015-05-03 22:07:36", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11613", "3", "2015-05-03 23:00:13", "207.46.13.96", "280");
INSERT INTO `wp_gf_form_view` VALUES("11614", "3", "2015-05-04 00:00:04", "157.55.39.75", "268");
INSERT INTO `wp_gf_form_view` VALUES("11615", "3", "2015-05-04 01:00:06", "66.249.79.85", "364");
INSERT INTO `wp_gf_form_view` VALUES("11616", "3", "2015-05-04 02:00:59", "66.249.79.93", "313");
INSERT INTO `wp_gf_form_view` VALUES("11617", "3", "2015-05-04 03:00:24", "157.55.39.81", "243");
INSERT INTO `wp_gf_form_view` VALUES("11618", "3", "2015-05-04 04:00:56", "207.46.13.96", "312");
INSERT INTO `wp_gf_form_view` VALUES("11619", "3", "2015-05-04 05:00:10", "157.55.39.81", "295");
INSERT INTO `wp_gf_form_view` VALUES("11620", "3", "2015-05-04 06:00:19", "157.55.39.77", "287");
INSERT INTO `wp_gf_form_view` VALUES("11621", "3", "2015-05-04 07:00:57", "66.249.79.77", "296");
INSERT INTO `wp_gf_form_view` VALUES("11622", "3", "2015-05-04 08:01:00", "66.249.79.93", "209");
INSERT INTO `wp_gf_form_view` VALUES("11623", "3", "2015-05-04 09:00:46", "157.55.39.75", "269");
INSERT INTO `wp_gf_form_view` VALUES("11624", "3", "2015-05-04 10:00:41", "157.55.39.81", "250");
INSERT INTO `wp_gf_form_view` VALUES("11625", "3", "2015-05-04 11:01:01", "66.249.79.93", "231");
INSERT INTO `wp_gf_form_view` VALUES("11626", "3", "2015-05-04 12:00:02", "157.55.39.77", "161");
INSERT INTO `wp_gf_form_view` VALUES("11627", "3", "2015-05-04 13:00:00", "157.55.39.4", "269");
INSERT INTO `wp_gf_form_view` VALUES("11628", "3", "2015-05-04 14:01:37", "157.55.39.81", "210");
INSERT INTO `wp_gf_form_view` VALUES("11629", "3", "2015-05-04 15:00:43", "157.55.39.4", "194");
INSERT INTO `wp_gf_form_view` VALUES("11630", "7", "2015-05-04 15:57:04", "216.232.155.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("11631", "3", "2015-05-04 16:00:24", "157.55.39.81", "140");
INSERT INTO `wp_gf_form_view` VALUES("11632", "3", "2015-05-04 17:00:52", "66.249.79.85", "224");
INSERT INTO `wp_gf_form_view` VALUES("11633", "3", "2015-05-04 18:01:06", "157.55.39.75", "371");
INSERT INTO `wp_gf_form_view` VALUES("11634", "3", "2015-05-04 19:00:25", "157.55.39.81", "378");
INSERT INTO `wp_gf_form_view` VALUES("11635", "3", "2015-05-04 20:00:01", "157.55.39.75", "326");
INSERT INTO `wp_gf_form_view` VALUES("11636", "3", "2015-05-04 21:00:25", "157.55.39.81", "280");
INSERT INTO `wp_gf_form_view` VALUES("11637", "6", "2015-05-04 21:17:16", "199.21.99.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("11638", "3", "2015-05-04 22:02:12", "66.249.79.77", "295");
INSERT INTO `wp_gf_form_view` VALUES("11639", "6", "2015-05-04 22:34:02", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11640", "3", "2015-05-04 23:00:05", "207.46.13.96", "260");
INSERT INTO `wp_gf_form_view` VALUES("11641", "3", "2015-05-05 00:03:47", "66.249.79.93", "350");
INSERT INTO `wp_gf_form_view` VALUES("11642", "3", "2015-05-05 01:04:30", "100.43.85.8", "314");
INSERT INTO `wp_gf_form_view` VALUES("11643", "3", "2015-05-05 02:00:40", "207.46.13.96", "126");
INSERT INTO `wp_gf_form_view` VALUES("11644", "3", "2015-05-05 03:01:07", "157.55.39.81", "159");
INSERT INTO `wp_gf_form_view` VALUES("11645", "3", "2015-05-05 04:00:13", "66.249.79.93", "107");
INSERT INTO `wp_gf_form_view` VALUES("11646", "3", "2015-05-05 05:01:02", "157.55.39.81", "93");
INSERT INTO `wp_gf_form_view` VALUES("11647", "3", "2015-05-05 06:01:46", "157.55.39.81", "113");
INSERT INTO `wp_gf_form_view` VALUES("11648", "3", "2015-05-05 07:00:31", "66.249.79.85", "121");
INSERT INTO `wp_gf_form_view` VALUES("11649", "3", "2015-05-05 08:00:15", "157.55.39.81", "152");
INSERT INTO `wp_gf_form_view` VALUES("11650", "3", "2015-05-05 09:00:00", "157.55.39.81", "101");
INSERT INTO `wp_gf_form_view` VALUES("11651", "3", "2015-05-05 10:00:43", "157.55.39.177", "112");
INSERT INTO `wp_gf_form_view` VALUES("11652", "3", "2015-05-05 11:02:40", "66.249.79.93", "101");
INSERT INTO `wp_gf_form_view` VALUES("11653", "3", "2015-05-05 12:00:19", "157.55.39.81", "100");
INSERT INTO `wp_gf_form_view` VALUES("11654", "7", "2015-05-05 12:47:01", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11655", "3", "2015-05-05 13:03:25", "157.55.39.228", "130");
INSERT INTO `wp_gf_form_view` VALUES("11656", "1", "2015-05-05 13:03:29", "195.154.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("11657", "3", "2015-05-05 14:03:08", "66.249.79.85", "112");
INSERT INTO `wp_gf_form_view` VALUES("11658", "3", "2015-05-05 15:00:25", "157.55.39.81", "109");
INSERT INTO `wp_gf_form_view` VALUES("11659", "1", "2015-05-05 15:33:59", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("11660", "3", "2015-05-05 16:05:24", "207.46.13.110", "138");
INSERT INTO `wp_gf_form_view` VALUES("11661", "3", "2015-05-05 17:00:02", "157.55.39.81", "148");
INSERT INTO `wp_gf_form_view` VALUES("11662", "3", "2015-05-05 18:00:42", "157.55.39.81", "121");
INSERT INTO `wp_gf_form_view` VALUES("11663", "3", "2015-05-05 19:00:15", "207.46.13.110", "157");
INSERT INTO `wp_gf_form_view` VALUES("11664", "3", "2015-05-05 20:00:22", "157.55.39.133", "157");
INSERT INTO `wp_gf_form_view` VALUES("11665", "3", "2015-05-05 21:00:21", "207.46.13.55", "185");
INSERT INTO `wp_gf_form_view` VALUES("11666", "3", "2015-05-05 22:02:16", "207.46.13.110", "98");
INSERT INTO `wp_gf_form_view` VALUES("11667", "3", "2015-05-05 23:02:03", "157.55.39.133", "148");
INSERT INTO `wp_gf_form_view` VALUES("11668", "3", "2015-05-06 00:00:59", "207.46.13.110", "80");
INSERT INTO `wp_gf_form_view` VALUES("11669", "3", "2015-05-06 01:00:13", "157.55.39.81", "56");
INSERT INTO `wp_gf_form_view` VALUES("11670", "3", "2015-05-06 02:01:54", "157.55.39.81", "14");
INSERT INTO `wp_gf_form_view` VALUES("11671", "3", "2015-05-06 03:07:18", "66.249.79.133", "77");
INSERT INTO `wp_gf_form_view` VALUES("11672", "3", "2015-05-06 04:00:32", "66.249.79.146", "101");
INSERT INTO `wp_gf_form_view` VALUES("11673", "3", "2015-05-06 05:00:54", "66.249.79.133", "124");
INSERT INTO `wp_gf_form_view` VALUES("11674", "3", "2015-05-06 06:00:03", "66.249.79.120", "241");
INSERT INTO `wp_gf_form_view` VALUES("11675", "3", "2015-05-06 07:00:24", "66.249.79.146", "208");
INSERT INTO `wp_gf_form_view` VALUES("11676", "3", "2015-05-06 08:00:12", "207.46.13.55", "192");
INSERT INTO `wp_gf_form_view` VALUES("11677", "3", "2015-05-06 09:00:29", "207.46.13.55", "172");
INSERT INTO `wp_gf_form_view` VALUES("11678", "3", "2015-05-06 10:00:45", "207.46.13.110", "394");
INSERT INTO `wp_gf_form_view` VALUES("11679", "1", "2015-05-06 10:21:39", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11680", "3", "2015-05-06 11:00:32", "207.46.13.55", "193");
INSERT INTO `wp_gf_form_view` VALUES("11681", "3", "2015-05-06 12:00:36", "207.46.13.55", "207");
INSERT INTO `wp_gf_form_view` VALUES("11682", "3", "2015-05-06 13:00:35", "66.249.79.146", "205");
INSERT INTO `wp_gf_form_view` VALUES("11683", "3", "2015-05-06 14:00:19", "157.55.39.133", "167");
INSERT INTO `wp_gf_form_view` VALUES("11684", "3", "2015-05-06 15:00:06", "207.46.13.55", "187");
INSERT INTO `wp_gf_form_view` VALUES("11685", "6", "2015-05-06 15:33:26", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("11686", "3", "2015-05-06 16:00:23", "157.55.39.133", "213");
INSERT INTO `wp_gf_form_view` VALUES("11687", "3", "2015-05-06 17:02:47", "207.46.13.55", "150");
INSERT INTO `wp_gf_form_view` VALUES("11688", "3", "2015-05-06 18:01:03", "66.249.79.133", "1274");
INSERT INTO `wp_gf_form_view` VALUES("11689", "3", "2015-05-06 19:02:07", "66.249.79.133", "273");
INSERT INTO `wp_gf_form_view` VALUES("11690", "3", "2015-05-06 20:01:03", "66.249.79.146", "501");
INSERT INTO `wp_gf_form_view` VALUES("11691", "3", "2015-05-06 21:00:01", "66.249.79.120", "952");
INSERT INTO `wp_gf_form_view` VALUES("11692", "3", "2015-05-06 22:00:00", "157.55.39.133", "1197");
INSERT INTO `wp_gf_form_view` VALUES("11693", "3", "2015-05-06 23:00:05", "66.249.79.133", "1271");
INSERT INTO `wp_gf_form_view` VALUES("11694", "1", "2015-05-06 23:24:31", "199.168.141.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("11695", "3", "2015-05-07 00:00:15", "157.55.39.81", "1203");
INSERT INTO `wp_gf_form_view` VALUES("11696", "3", "2015-05-07 01:00:00", "66.249.79.146", "1298");
INSERT INTO `wp_gf_form_view` VALUES("11697", "3", "2015-05-07 02:00:14", "157.55.39.81", "1533");
INSERT INTO `wp_gf_form_view` VALUES("11698", "3", "2015-05-07 03:00:49", "157.55.39.133", "2376");
INSERT INTO `wp_gf_form_view` VALUES("11699", "7", "2015-05-07 03:55:14", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("11700", "3", "2015-05-07 04:00:55", "207.46.13.110", "2293");
INSERT INTO `wp_gf_form_view` VALUES("11701", "6", "2015-05-07 04:38:57", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("11702", "3", "2015-05-07 05:00:00", "207.46.13.55", "1700");
INSERT INTO `wp_gf_form_view` VALUES("11703", "3", "2015-05-07 06:00:16", "157.55.39.81", "1554");
INSERT INTO `wp_gf_form_view` VALUES("11704", "6", "2015-05-07 06:50:02", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("11705", "3", "2015-05-07 07:00:19", "207.46.13.110", "1888");
INSERT INTO `wp_gf_form_view` VALUES("11706", "2", "2015-05-07 07:59:24", "45.55.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("11707", "1", "2015-05-07 07:59:24", "45.55.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("11708", "3", "2015-05-07 08:00:44", "157.55.39.81", "1765");
INSERT INTO `wp_gf_form_view` VALUES("11709", "3", "2015-05-07 09:00:02", "157.55.39.133", "1927");
INSERT INTO `wp_gf_form_view` VALUES("11710", "5", "2015-05-07 09:17:30", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11711", "3", "2015-05-07 10:00:09", "220.181.108.84", "1716");
INSERT INTO `wp_gf_form_view` VALUES("11712", "1", "2015-05-07 10:45:49", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("11713", "6", "2015-05-07 10:50:48", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("11714", "3", "2015-05-07 11:00:26", "157.55.39.81", "1942");
INSERT INTO `wp_gf_form_view` VALUES("11715", "1", "2015-05-07 11:46:29", "192.241.142.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("11716", "2", "2015-05-07 11:46:29", "192.241.142.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("11717", "6", "2015-05-07 11:52:18", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("11718", "3", "2015-05-07 12:00:06", "157.55.39.133", "1770");
INSERT INTO `wp_gf_form_view` VALUES("11719", "3", "2015-05-07 13:00:02", "157.55.39.81", "1783");
INSERT INTO `wp_gf_form_view` VALUES("11720", "3", "2015-05-07 14:00:33", "66.249.79.120", "2381");
INSERT INTO `wp_gf_form_view` VALUES("11721", "3", "2015-05-07 15:00:02", "207.46.13.110", "1522");
INSERT INTO `wp_gf_form_view` VALUES("11722", "6", "2015-05-07 15:46:33", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("11723", "3", "2015-05-07 16:00:24", "157.55.39.81", "2554");
INSERT INTO `wp_gf_form_view` VALUES("11724", "3", "2015-05-07 17:00:53", "66.249.79.133", "1752");
INSERT INTO `wp_gf_form_view` VALUES("11725", "3", "2015-05-07 18:00:03", "207.46.13.55", "2201");
INSERT INTO `wp_gf_form_view` VALUES("11726", "7", "2015-05-07 18:07:24", "100.43.91.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("11727", "3", "2015-05-07 19:00:27", "207.46.13.110", "2092");
INSERT INTO `wp_gf_form_view` VALUES("11728", "6", "2015-05-07 19:33:44", "207.46.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("11729", "3", "2015-05-07 20:00:04", "157.55.39.81", "1536");
INSERT INTO `wp_gf_form_view` VALUES("11730", "3", "2015-05-07 21:00:05", "157.55.39.133", "2137");
INSERT INTO `wp_gf_form_view` VALUES("11731", "6", "2015-05-07 21:03:57", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("11732", "1", "2015-05-07 21:10:42", "199.168.141.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("11733", "3", "2015-05-07 22:00:00", "157.55.39.133", "1802");
INSERT INTO `wp_gf_form_view` VALUES("11734", "7", "2015-05-07 22:12:13", "142.104.61.221", "2");
INSERT INTO `wp_gf_form_view` VALUES("11735", "3", "2015-05-07 23:00:09", "157.55.39.133", "1717");
INSERT INTO `wp_gf_form_view` VALUES("11736", "3", "2015-05-08 00:00:00", "66.249.79.120", "1855");
INSERT INTO `wp_gf_form_view` VALUES("11737", "3", "2015-05-08 01:00:30", "157.55.39.81", "2416");
INSERT INTO `wp_gf_form_view` VALUES("11738", "6", "2015-05-08 01:56:06", "157.55.39.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("11739", "3", "2015-05-08 02:00:07", "157.55.39.81", "2150");
INSERT INTO `wp_gf_form_view` VALUES("11740", "3", "2015-05-08 03:00:05", "157.55.39.81", "2043");
INSERT INTO `wp_gf_form_view` VALUES("11741", "2", "2015-05-08 03:33:18", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11742", "3", "2015-05-08 04:00:21", "207.46.13.110", "2465");
INSERT INTO `wp_gf_form_view` VALUES("11743", "3", "2015-05-08 05:00:03", "207.46.13.110", "2282");
INSERT INTO `wp_gf_form_view` VALUES("11744", "2", "2015-05-08 05:08:34", "192.99.150.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("11745", "1", "2015-05-08 05:08:43", "192.99.150.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("11746", "7", "2015-05-08 05:09:00", "192.99.150.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("11747", "3", "2015-05-08 06:00:01", "157.55.39.81", "2178");
INSERT INTO `wp_gf_form_view` VALUES("11748", "3", "2015-05-08 07:00:17", "157.55.39.81", "2231");
INSERT INTO `wp_gf_form_view` VALUES("11749", "3", "2015-05-08 08:00:30", "157.55.39.81", "2495");
INSERT INTO `wp_gf_form_view` VALUES("11750", "3", "2015-05-08 09:00:02", "157.55.39.81", "2471");
INSERT INTO `wp_gf_form_view` VALUES("11751", "2", "2015-05-08 09:28:13", "195.154.211.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("11752", "3", "2015-05-08 10:00:04", "157.55.39.133", "1966");
INSERT INTO `wp_gf_form_view` VALUES("11753", "3", "2015-05-08 11:00:00", "207.46.13.110", "1941");
INSERT INTO `wp_gf_form_view` VALUES("11754", "3", "2015-05-08 12:00:00", "157.55.39.14", "2097");
INSERT INTO `wp_gf_form_view` VALUES("11755", "3", "2015-05-08 13:00:11", "157.55.39.133", "1865");
INSERT INTO `wp_gf_form_view` VALUES("11756", "1", "2015-05-08 13:24:55", "120.209.194.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("11757", "3", "2015-05-08 14:00:00", "66.249.79.120", "1985");
INSERT INTO `wp_gf_form_view` VALUES("11758", "1", "2015-05-08 14:43:40", "217.12.204.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("11759", "3", "2015-05-08 15:00:03", "207.46.13.110", "1737");
INSERT INTO `wp_gf_form_view` VALUES("11760", "3", "2015-05-08 16:00:08", "157.55.39.133", "1626");
INSERT INTO `wp_gf_form_view` VALUES("11761", "3", "2015-05-08 17:00:00", "157.55.39.15", "2190");
INSERT INTO `wp_gf_form_view` VALUES("11762", "3", "2015-05-08 18:00:25", "157.55.39.14", "1191");
INSERT INTO `wp_gf_form_view` VALUES("11763", "3", "2015-05-08 19:00:03", "66.249.79.146", "436");
INSERT INTO `wp_gf_form_view` VALUES("11764", "3", "2015-05-08 20:17:08", "68.180.228.245", "47");
INSERT INTO `wp_gf_form_view` VALUES("11765", "3", "2015-05-08 21:01:34", "66.249.79.133", "519");
INSERT INTO `wp_gf_form_view` VALUES("11766", "3", "2015-05-08 22:00:21", "157.55.39.133", "1451");
INSERT INTO `wp_gf_form_view` VALUES("11767", "6", "2015-05-08 22:07:05", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("11768", "3", "2015-05-08 23:00:51", "157.55.39.133", "1698");
INSERT INTO `wp_gf_form_view` VALUES("11769", "6", "2015-05-08 23:09:54", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11770", "3", "2015-05-09 00:00:00", "207.46.13.110", "1534");
INSERT INTO `wp_gf_form_view` VALUES("11771", "3", "2015-05-09 01:00:04", "157.55.39.14", "1372");
INSERT INTO `wp_gf_form_view` VALUES("11772", "3", "2015-05-09 02:00:26", "66.249.79.120", "1577");
INSERT INTO `wp_gf_form_view` VALUES("11773", "6", "2015-05-09 02:15:03", "66.249.79.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("11774", "3", "2015-05-09 03:00:28", "207.46.13.110", "1475");
INSERT INTO `wp_gf_form_view` VALUES("11775", "3", "2015-05-09 04:02:31", "157.55.39.14", "1003");
INSERT INTO `wp_gf_form_view` VALUES("11776", "3", "2015-05-09 05:00:20", "157.55.39.81", "1148");
INSERT INTO `wp_gf_form_view` VALUES("11777", "3", "2015-05-09 06:01:48", "157.55.39.14", "801");
INSERT INTO `wp_gf_form_view` VALUES("11778", "3", "2015-05-09 07:01:09", "157.55.39.14", "868");
INSERT INTO `wp_gf_form_view` VALUES("11779", "3", "2015-05-09 08:00:10", "207.46.13.110", "1003");
INSERT INTO `wp_gf_form_view` VALUES("11780", "6", "2015-05-09 08:22:27", "100.43.85.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("11781", "3", "2015-05-09 09:00:03", "157.55.39.14", "863");
INSERT INTO `wp_gf_form_view` VALUES("11782", "5", "2015-05-09 09:53:50", "207.46.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("11783", "3", "2015-05-09 10:00:06", "157.55.39.81", "1134");
INSERT INTO `wp_gf_form_view` VALUES("11784", "3", "2015-05-09 11:00:22", "157.55.39.14", "888");
INSERT INTO `wp_gf_form_view` VALUES("11785", "3", "2015-05-09 12:00:24", "66.249.79.146", "569");
INSERT INTO `wp_gf_form_view` VALUES("11786", "1", "2015-05-09 12:28:53", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("11787", "3", "2015-05-09 13:00:53", "157.55.39.81", "1027");
INSERT INTO `wp_gf_form_view` VALUES("11788", "3", "2015-05-09 14:01:02", "157.55.39.81", "525");
INSERT INTO `wp_gf_form_view` VALUES("11789", "3", "2015-05-09 15:01:11", "68.180.228.245", "234");
INSERT INTO `wp_gf_form_view` VALUES("11790", "3", "2015-05-09 16:00:41", "157.55.39.81", "216");
INSERT INTO `wp_gf_form_view` VALUES("11791", "3", "2015-05-09 17:02:04", "157.55.39.81", "355");
INSERT INTO `wp_gf_form_view` VALUES("11792", "3", "2015-05-09 18:01:41", "66.249.79.146", "352");
INSERT INTO `wp_gf_form_view` VALUES("11793", "2", "2015-05-09 18:44:05", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("11794", "3", "2015-05-09 19:02:05", "157.55.39.14", "270");
INSERT INTO `wp_gf_form_view` VALUES("11795", "3", "2015-05-09 20:00:50", "157.55.39.14", "111");
INSERT INTO `wp_gf_form_view` VALUES("11796", "3", "2015-05-09 21:05:03", "199.21.99.206", "258");
INSERT INTO `wp_gf_form_view` VALUES("11797", "3", "2015-05-09 22:04:41", "100.43.85.7", "587");
INSERT INTO `wp_gf_form_view` VALUES("11798", "3", "2015-05-09 23:01:23", "157.55.39.139", "492");
INSERT INTO `wp_gf_form_view` VALUES("11799", "3", "2015-05-10 00:00:10", "68.180.228.245", "478");
INSERT INTO `wp_gf_form_view` VALUES("11800", "3", "2015-05-10 01:00:46", "157.55.39.14", "646");
INSERT INTO `wp_gf_form_view` VALUES("11801", "3", "2015-05-10 02:00:10", "207.46.13.110", "1114");
INSERT INTO `wp_gf_form_view` VALUES("11802", "7", "2015-05-10 02:04:40", "36.34.0.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("11803", "2", "2015-05-10 02:04:49", "36.34.0.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("11804", "1", "2015-05-10 02:05:02", "36.34.0.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("11805", "3", "2015-05-10 03:03:51", "207.46.13.110", "775");
INSERT INTO `wp_gf_form_view` VALUES("11806", "7", "2015-05-10 03:42:57", "192.114.71.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("11807", "2", "2015-05-10 03:42:58", "192.114.71.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("11808", "1", "2015-05-10 03:42:58", "192.114.71.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("11809", "3", "2015-05-10 04:00:13", "157.55.39.133", "976");
INSERT INTO `wp_gf_form_view` VALUES("11810", "3", "2015-05-10 05:00:24", "157.55.39.133", "1273");
INSERT INTO `wp_gf_form_view` VALUES("11811", "3", "2015-05-10 06:00:05", "157.55.39.139", "847");
INSERT INTO `wp_gf_form_view` VALUES("11812", "3", "2015-05-10 07:00:22", "157.55.39.14", "891");
INSERT INTO `wp_gf_form_view` VALUES("11813", "3", "2015-05-10 08:00:07", "157.55.39.133", "899");
INSERT INTO `wp_gf_form_view` VALUES("11814", "3", "2015-05-10 09:00:19", "157.55.39.14", "751");
INSERT INTO `wp_gf_form_view` VALUES("11815", "1", "2015-05-10 09:30:44", "36.72.153.205", "2");
INSERT INTO `wp_gf_form_view` VALUES("11816", "3", "2015-05-10 10:03:00", "157.55.39.133", "441");
INSERT INTO `wp_gf_form_view` VALUES("11817", "3", "2015-05-10 11:04:00", "68.180.228.245", "691");
INSERT INTO `wp_gf_form_view` VALUES("11818", "3", "2015-05-10 12:00:45", "66.249.79.120", "1095");
INSERT INTO `wp_gf_form_view` VALUES("11819", "3", "2015-05-10 13:00:29", "157.55.39.14", "1039");
INSERT INTO `wp_gf_form_view` VALUES("11820", "3", "2015-05-10 14:00:44", "66.249.79.133", "919");
INSERT INTO `wp_gf_form_view` VALUES("11821", "6", "2015-05-10 14:09:50", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11822", "3", "2015-05-10 15:00:30", "157.55.39.14", "450");
INSERT INTO `wp_gf_form_view` VALUES("11823", "3", "2015-05-10 16:00:37", "157.55.39.14", "815");
INSERT INTO `wp_gf_form_view` VALUES("11824", "1", "2015-05-10 16:09:00", "176.97.116.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("11825", "3", "2015-05-10 17:00:58", "66.249.67.120", "782");
INSERT INTO `wp_gf_form_view` VALUES("11826", "3", "2015-05-10 18:00:59", "68.180.228.245", "880");
INSERT INTO `wp_gf_form_view` VALUES("11827", "3", "2015-05-10 19:01:22", "66.249.67.120", "957");
INSERT INTO `wp_gf_form_view` VALUES("11828", "3", "2015-05-10 20:00:15", "157.55.39.133", "841");
INSERT INTO `wp_gf_form_view` VALUES("11829", "3", "2015-05-10 21:00:00", "157.55.39.133", "589");
INSERT INTO `wp_gf_form_view` VALUES("11830", "3", "2015-05-10 22:00:49", "68.180.228.245", "585");
INSERT INTO `wp_gf_form_view` VALUES("11831", "3", "2015-05-10 23:00:37", "157.55.39.140", "1071");
INSERT INTO `wp_gf_form_view` VALUES("11832", "3", "2015-05-11 00:00:05", "66.249.67.120", "801");
INSERT INTO `wp_gf_form_view` VALUES("11833", "3", "2015-05-11 01:00:05", "66.249.67.146", "846");
INSERT INTO `wp_gf_form_view` VALUES("11834", "3", "2015-05-11 02:00:07", "66.249.67.120", "729");
INSERT INTO `wp_gf_form_view` VALUES("11835", "3", "2015-05-11 03:00:06", "66.249.67.133", "164");
INSERT INTO `wp_gf_form_view` VALUES("11836", "3", "2015-05-11 04:04:11", "66.249.67.120", "224");
INSERT INTO `wp_gf_form_view` VALUES("11837", "6", "2015-05-11 04:17:29", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("11838", "7", "2015-05-11 04:47:54", "188.165.15.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("11839", "3", "2015-05-11 05:13:45", "66.249.67.146", "170");
INSERT INTO `wp_gf_form_view` VALUES("11840", "6", "2015-05-11 05:51:05", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("11841", "3", "2015-05-11 06:01:43", "207.46.13.110", "216");
INSERT INTO `wp_gf_form_view` VALUES("11842", "3", "2015-05-11 07:01:11", "66.249.67.146", "367");
INSERT INTO `wp_gf_form_view` VALUES("11843", "3", "2015-05-11 08:00:07", "66.249.67.146", "544");
INSERT INTO `wp_gf_form_view` VALUES("11844", "3", "2015-05-11 09:01:19", "66.249.67.133", "526");
INSERT INTO `wp_gf_form_view` VALUES("11845", "3", "2015-05-11 10:01:44", "66.249.67.133", "481");
INSERT INTO `wp_gf_form_view` VALUES("11846", "3", "2015-05-11 11:00:46", "66.249.67.133", "852");
INSERT INTO `wp_gf_form_view` VALUES("11847", "3", "2015-05-11 12:00:46", "66.249.67.146", "562");
INSERT INTO `wp_gf_form_view` VALUES("11848", "3", "2015-05-11 13:00:46", "66.249.67.120", "516");
INSERT INTO `wp_gf_form_view` VALUES("11849", "3", "2015-05-11 14:00:44", "157.55.39.139", "505");
INSERT INTO `wp_gf_form_view` VALUES("11850", "3", "2015-05-11 15:01:53", "157.55.39.139", "549");
INSERT INTO `wp_gf_form_view` VALUES("11851", "6", "2015-05-11 15:25:13", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("11852", "3", "2015-05-11 16:00:51", "207.46.13.110", "563");
INSERT INTO `wp_gf_form_view` VALUES("11853", "3", "2015-05-11 17:00:01", "217.69.133.229", "742");
INSERT INTO `wp_gf_form_view` VALUES("11854", "3", "2015-05-11 18:01:01", "66.249.67.146", "626");
INSERT INTO `wp_gf_form_view` VALUES("11855", "3", "2015-05-11 19:01:49", "66.249.67.133", "709");
INSERT INTO `wp_gf_form_view` VALUES("11856", "3", "2015-05-11 20:00:02", "207.46.13.110", "720");
INSERT INTO `wp_gf_form_view` VALUES("11857", "3", "2015-05-11 21:00:57", "66.249.67.133", "517");
INSERT INTO `wp_gf_form_view` VALUES("11858", "3", "2015-05-11 22:00:50", "202.46.61.100", "547");
INSERT INTO `wp_gf_form_view` VALUES("11859", "3", "2015-05-11 23:02:50", "157.55.39.14", "537");
INSERT INTO `wp_gf_form_view` VALUES("11860", "3", "2015-05-12 00:00:07", "157.55.39.139", "837");
INSERT INTO `wp_gf_form_view` VALUES("11861", "3", "2015-05-12 01:01:31", "207.46.13.110", "711");
INSERT INTO `wp_gf_form_view` VALUES("11862", "3", "2015-05-12 02:00:38", "157.55.39.14", "480");
INSERT INTO `wp_gf_form_view` VALUES("11863", "3", "2015-05-12 03:01:45", "157.55.39.133", "586");
INSERT INTO `wp_gf_form_view` VALUES("11864", "3", "2015-05-12 04:00:17", "24.85.180.129", "648");
INSERT INTO `wp_gf_form_view` VALUES("11865", "3", "2015-05-12 05:00:31", "192.187.126.3", "645");
INSERT INTO `wp_gf_form_view` VALUES("11866", "3", "2015-05-12 06:00:50", "202.46.49.195", "665");
INSERT INTO `wp_gf_form_view` VALUES("11867", "3", "2015-05-12 07:00:46", "66.249.67.133", "689");
INSERT INTO `wp_gf_form_view` VALUES("11868", "1", "2015-05-12 07:23:26", "192.187.126.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("11869", "3", "2015-05-12 08:00:05", "207.46.13.110", "673");
INSERT INTO `wp_gf_form_view` VALUES("11870", "6", "2015-05-12 08:52:36", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("11871", "1", "2015-05-12 08:58:46", "192.187.126.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("11872", "3", "2015-05-12 09:01:57", "66.249.67.146", "535");
INSERT INTO `wp_gf_form_view` VALUES("11873", "3", "2015-05-12 10:04:13", "157.55.39.139", "669");
INSERT INTO `wp_gf_form_view` VALUES("11874", "3", "2015-05-12 11:01:27", "157.55.39.133", "584");
INSERT INTO `wp_gf_form_view` VALUES("11875", "3", "2015-05-12 12:02:04", "157.55.39.139", "663");
INSERT INTO `wp_gf_form_view` VALUES("11876", "3", "2015-05-12 13:01:07", "66.249.67.120", "609");
INSERT INTO `wp_gf_form_view` VALUES("11877", "3", "2015-05-12 14:01:23", "136.243.17.161", "870");
INSERT INTO `wp_gf_form_view` VALUES("11878", "3", "2015-05-12 15:01:16", "66.249.67.120", "501");
INSERT INTO `wp_gf_form_view` VALUES("11879", "3", "2015-05-12 16:01:20", "157.55.39.14", "410");
INSERT INTO `wp_gf_form_view` VALUES("11880", "3", "2015-05-12 17:00:23", "157.55.39.14", "539");
INSERT INTO `wp_gf_form_view` VALUES("11881", "3", "2015-05-12 18:00:41", "157.55.39.14", "743");
INSERT INTO `wp_gf_form_view` VALUES("11882", "7", "2015-05-12 18:03:49", "24.108.150.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("11883", "6", "2015-05-12 18:52:12", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11884", "3", "2015-05-12 19:01:20", "66.249.67.120", "673");
INSERT INTO `wp_gf_form_view` VALUES("11885", "6", "2015-05-12 19:59:53", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("11886", "3", "2015-05-12 20:00:00", "217.69.133.233", "728");
INSERT INTO `wp_gf_form_view` VALUES("11887", "3", "2015-05-12 21:00:49", "157.55.39.139", "620");
INSERT INTO `wp_gf_form_view` VALUES("11888", "3", "2015-05-12 22:00:06", "207.46.13.110", "915");
INSERT INTO `wp_gf_form_view` VALUES("11889", "1", "2015-05-12 22:53:38", "216.232.155.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("11890", "3", "2015-05-12 23:00:38", "66.249.67.133", "710");
INSERT INTO `wp_gf_form_view` VALUES("11891", "3", "2015-05-13 00:00:34", "157.55.39.133", "682");
INSERT INTO `wp_gf_form_view` VALUES("11892", "6", "2015-05-13 00:39:36", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("11893", "3", "2015-05-13 01:00:04", "207.46.13.110", "729");
INSERT INTO `wp_gf_form_view` VALUES("11894", "3", "2015-05-13 02:00:39", "157.55.39.133", "648");
INSERT INTO `wp_gf_form_view` VALUES("11895", "3", "2015-05-13 03:00:38", "66.249.67.120", "682");
INSERT INTO `wp_gf_form_view` VALUES("11896", "1", "2015-05-13 03:39:15", "192.187.126.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("11897", "3", "2015-05-13 04:00:32", "157.55.39.133", "666");
INSERT INTO `wp_gf_form_view` VALUES("11898", "3", "2015-05-13 05:02:12", "157.55.39.139", "872");
INSERT INTO `wp_gf_form_view` VALUES("11899", "7", "2015-05-13 05:45:36", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("11900", "2", "2015-05-13 05:46:46", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("11901", "1", "2015-05-13 05:46:59", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("11902", "3", "2015-05-13 06:00:34", "66.249.67.133", "712");
INSERT INTO `wp_gf_form_view` VALUES("11903", "3", "2015-05-13 07:00:00", "68.180.228.245", "796");
INSERT INTO `wp_gf_form_view` VALUES("11904", "3", "2015-05-13 08:00:22", "66.249.67.146", "779");
INSERT INTO `wp_gf_form_view` VALUES("11905", "1", "2015-05-13 08:04:39", "192.187.126.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("11906", "6", "2015-05-13 08:08:52", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11907", "3", "2015-05-13 09:00:03", "157.55.39.133", "778");
INSERT INTO `wp_gf_form_view` VALUES("11908", "3", "2015-05-13 10:00:11", "66.249.67.133", "802");
INSERT INTO `wp_gf_form_view` VALUES("11909", "3", "2015-05-13 11:00:02", "207.46.13.110", "665");
INSERT INTO `wp_gf_form_view` VALUES("11910", "6", "2015-05-13 11:47:54", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("11911", "3", "2015-05-13 12:01:35", "157.55.39.14", "1413");
INSERT INTO `wp_gf_form_view` VALUES("11912", "7", "2015-05-13 12:20:22", "195.154.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("11913", "1", "2015-05-13 12:20:51", "195.154.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("11914", "2", "2015-05-13 12:21:32", "195.154.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("11915", "3", "2015-05-13 13:02:07", "66.249.67.146", "625");
INSERT INTO `wp_gf_form_view` VALUES("11916", "6", "2015-05-13 13:24:36", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("11917", "3", "2015-05-13 14:01:14", "66.249.67.146", "495");
INSERT INTO `wp_gf_form_view` VALUES("11918", "3", "2015-05-13 15:00:13", "217.69.133.69", "582");
INSERT INTO `wp_gf_form_view` VALUES("11919", "3", "2015-05-13 16:00:21", "202.46.63.68", "399");
INSERT INTO `wp_gf_form_view` VALUES("11920", "3", "2015-05-13 17:00:49", "157.55.39.133", "434");
INSERT INTO `wp_gf_form_view` VALUES("11921", "3", "2015-05-13 18:01:38", "66.249.67.133", "476");
INSERT INTO `wp_gf_form_view` VALUES("11922", "3", "2015-05-13 19:00:38", "157.55.39.140", "795");
INSERT INTO `wp_gf_form_view` VALUES("11923", "3", "2015-05-13 20:00:32", "157.55.39.14", "457");
INSERT INTO `wp_gf_form_view` VALUES("11924", "3", "2015-05-13 21:00:19", "157.55.39.139", "302");
INSERT INTO `wp_gf_form_view` VALUES("11925", "6", "2015-05-13 21:19:47", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("11926", "3", "2015-05-13 22:00:16", "66.249.67.120", "723");
INSERT INTO `wp_gf_form_view` VALUES("11927", "1", "2015-05-13 22:40:52", "100.43.85.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("11928", "3", "2015-05-13 23:01:35", "66.249.67.120", "602");
INSERT INTO `wp_gf_form_view` VALUES("11929", "3", "2015-05-14 00:00:12", "157.55.39.139", "472");
INSERT INTO `wp_gf_form_view` VALUES("11930", "1", "2015-05-14 00:58:54", "192.187.126.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("11931", "3", "2015-05-14 01:03:58", "157.55.39.133", "703");
INSERT INTO `wp_gf_form_view` VALUES("11932", "3", "2015-05-14 02:00:06", "157.55.39.139", "657");
INSERT INTO `wp_gf_form_view` VALUES("11933", "1", "2015-05-14 02:01:32", "188.165.15.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("11934", "3", "2015-05-14 03:00:30", "157.55.39.133", "797");
INSERT INTO `wp_gf_form_view` VALUES("11935", "1", "2015-05-14 03:15:06", "192.187.126.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("11936", "3", "2015-05-14 04:02:26", "157.55.39.139", "818");
INSERT INTO `wp_gf_form_view` VALUES("11937", "3", "2015-05-14 05:00:11", "157.55.39.14", "893");
INSERT INTO `wp_gf_form_view` VALUES("11938", "3", "2015-05-14 06:01:52", "66.249.67.120", "807");
INSERT INTO `wp_gf_form_view` VALUES("11939", "3", "2015-05-14 07:01:19", "66.249.67.120", "512");
INSERT INTO `wp_gf_form_view` VALUES("11940", "7", "2015-05-14 07:34:44", "100.43.85.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("11941", "3", "2015-05-14 08:00:52", "66.249.67.146", "571");
INSERT INTO `wp_gf_form_view` VALUES("11942", "3", "2015-05-14 09:00:14", "66.249.67.120", "568");
INSERT INTO `wp_gf_form_view` VALUES("11943", "3", "2015-05-14 10:00:38", "157.55.39.140", "740");
INSERT INTO `wp_gf_form_view` VALUES("11944", "3", "2015-05-14 11:00:27", "157.55.39.14", "458");
INSERT INTO `wp_gf_form_view` VALUES("11945", "3", "2015-05-14 12:00:41", "68.180.228.245", "683");
INSERT INTO `wp_gf_form_view` VALUES("11946", "3", "2015-05-14 13:01:03", "66.249.67.120", "408");
INSERT INTO `wp_gf_form_view` VALUES("11947", "3", "2015-05-14 14:00:39", "207.46.13.110", "586");
INSERT INTO `wp_gf_form_view` VALUES("11948", "3", "2015-05-14 15:00:33", "66.249.67.146", "680");
INSERT INTO `wp_gf_form_view` VALUES("11949", "1", "2015-05-14 15:22:20", "96.54.166.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("11950", "3", "2015-05-14 16:00:16", "66.249.67.146", "643");
INSERT INTO `wp_gf_form_view` VALUES("11951", "2", "2015-05-14 16:56:39", "46.102.98.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("11952", "3", "2015-05-14 17:00:50", "66.249.67.133", "438");
INSERT INTO `wp_gf_form_view` VALUES("11953", "3", "2015-05-14 18:00:34", "157.55.39.133", "576");
INSERT INTO `wp_gf_form_view` VALUES("11954", "2", "2015-05-14 18:45:23", "188.165.15.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("11955", "1", "2015-05-14 18:52:35", "104.193.9.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("11956", "3", "2015-05-14 19:00:18", "207.46.13.110", "894");
INSERT INTO `wp_gf_form_view` VALUES("11957", "3", "2015-05-14 20:00:40", "66.249.67.120", "619");
INSERT INTO `wp_gf_form_view` VALUES("11958", "3", "2015-05-14 21:00:29", "66.249.67.133", "763");
INSERT INTO `wp_gf_form_view` VALUES("11959", "6", "2015-05-14 21:09:15", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("11960", "3", "2015-05-14 22:01:14", "66.249.67.120", "182");
INSERT INTO `wp_gf_form_view` VALUES("11961", "3", "2015-05-14 23:40:20", "94.153.9.66", "25");
INSERT INTO `wp_gf_form_view` VALUES("11962", "3", "2015-05-14 23:40:20", "94.153.9.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("11963", "3", "2015-05-14 23:40:20", "94.153.9.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("11964", "3", "2015-05-15 00:21:52", "68.180.228.245", "75");
INSERT INTO `wp_gf_form_view` VALUES("11965", "3", "2015-05-15 01:00:40", "157.55.39.140", "501");
INSERT INTO `wp_gf_form_view` VALUES("11966", "3", "2015-05-15 02:00:02", "157.55.39.133", "612");
INSERT INTO `wp_gf_form_view` VALUES("11967", "3", "2015-05-15 03:00:38", "157.55.39.14", "560");
INSERT INTO `wp_gf_form_view` VALUES("11968", "1", "2015-05-15 03:36:54", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11969", "3", "2015-05-15 04:00:10", "157.55.39.139", "859");
INSERT INTO `wp_gf_form_view` VALUES("11970", "1", "2015-05-15 04:35:12", "192.187.126.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("11971", "3", "2015-05-15 05:01:29", "157.55.39.14", "818");
INSERT INTO `wp_gf_form_view` VALUES("11972", "1", "2015-05-15 05:06:15", "157.55.39.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("11973", "6", "2015-05-15 05:16:58", "157.55.39.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("11974", "3", "2015-05-15 06:04:39", "207.46.13.110", "425");
INSERT INTO `wp_gf_form_view` VALUES("11975", "3", "2015-05-15 07:01:06", "157.55.39.139", "935");
INSERT INTO `wp_gf_form_view` VALUES("11976", "3", "2015-05-15 08:02:07", "157.55.39.15", "418");
INSERT INTO `wp_gf_form_view` VALUES("11977", "3", "2015-05-15 09:00:36", "157.55.39.140", "492");
INSERT INTO `wp_gf_form_view` VALUES("11978", "3", "2015-05-15 10:01:06", "157.55.39.133", "728");
INSERT INTO `wp_gf_form_view` VALUES("11979", "3", "2015-05-15 11:00:56", "157.55.39.139", "793");
INSERT INTO `wp_gf_form_view` VALUES("11980", "3", "2015-05-15 12:02:07", "207.46.13.110", "628");
INSERT INTO `wp_gf_form_view` VALUES("11981", "6", "2015-05-15 12:37:15", "157.55.39.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("11982", "3", "2015-05-15 13:01:22", "157.55.39.14", "577");
INSERT INTO `wp_gf_form_view` VALUES("11983", "6", "2015-05-15 13:42:19", "157.55.39.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("11984", "3", "2015-05-15 14:00:10", "207.46.13.96", "555");
INSERT INTO `wp_gf_form_view` VALUES("11985", "3", "2015-05-15 15:00:31", "157.55.39.149", "647");
INSERT INTO `wp_gf_form_view` VALUES("11986", "6", "2015-05-15 15:06:15", "207.46.13.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("11987", "3", "2015-05-15 16:03:30", "207.46.13.96", "508");
INSERT INTO `wp_gf_form_view` VALUES("11988", "3", "2015-05-15 17:00:12", "207.46.13.96", "520");
INSERT INTO `wp_gf_form_view` VALUES("11989", "3", "2015-05-15 18:00:35", "157.55.39.149", "562");
INSERT INTO `wp_gf_form_view` VALUES("11990", "3", "2015-05-15 19:00:49", "202.46.61.102", "567");
INSERT INTO `wp_gf_form_view` VALUES("11991", "7", "2015-05-15 19:44:03", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11992", "3", "2015-05-15 20:00:19", "202.46.62.148", "515");
INSERT INTO `wp_gf_form_view` VALUES("11993", "5", "2015-05-15 20:38:56", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("11994", "3", "2015-05-15 21:00:11", "207.46.13.96", "523");
INSERT INTO `wp_gf_form_view` VALUES("11995", "3", "2015-05-15 22:01:50", "157.55.39.149", "820");
INSERT INTO `wp_gf_form_view` VALUES("11996", "3", "2015-05-15 23:00:47", "157.55.39.149", "814");
INSERT INTO `wp_gf_form_view` VALUES("11997", "3", "2015-05-16 00:00:04", "68.180.228.245", "429");
INSERT INTO `wp_gf_form_view` VALUES("11998", "6", "2015-05-16 00:34:06", "157.55.39.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("11999", "3", "2015-05-16 01:00:12", "157.55.39.14", "684");
INSERT INTO `wp_gf_form_view` VALUES("12000", "6", "2015-05-16 01:04:27", "157.55.39.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("12001", "3", "2015-05-16 02:00:26", "157.55.39.140", "324");
INSERT INTO `wp_gf_form_view` VALUES("12002", "3", "2015-05-16 03:05:52", "68.180.228.245", "487");
INSERT INTO `wp_gf_form_view` VALUES("12003", "3", "2015-05-16 04:21:32", "157.55.39.149", "46");
INSERT INTO `wp_gf_form_view` VALUES("12004", "6", "2015-05-16 05:05:53", "66.249.67.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12005", "3", "2015-05-16 05:05:54", "66.249.67.133", "413");
INSERT INTO `wp_gf_form_view` VALUES("12006", "3", "2015-05-16 06:02:36", "157.55.39.149", "523");
INSERT INTO `wp_gf_form_view` VALUES("12007", "1", "2015-05-16 06:51:57", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("12008", "3", "2015-05-16 07:05:17", "68.180.228.245", "619");
INSERT INTO `wp_gf_form_view` VALUES("12009", "1", "2015-05-16 07:39:44", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("12010", "3", "2015-05-16 08:00:05", "157.55.39.139", "526");
INSERT INTO `wp_gf_form_view` VALUES("12011", "3", "2015-05-16 09:00:32", "207.46.13.96", "611");
INSERT INTO `wp_gf_form_view` VALUES("12012", "3", "2015-05-16 10:00:36", "157.55.39.14", "488");
INSERT INTO `wp_gf_form_view` VALUES("12013", "1", "2015-05-16 10:10:49", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("12014", "3", "2015-05-16 11:00:10", "157.55.39.139", "619");
INSERT INTO `wp_gf_form_view` VALUES("12015", "3", "2015-05-16 12:00:09", "207.46.13.96", "2003");
INSERT INTO `wp_gf_form_view` VALUES("12016", "7", "2015-05-16 12:37:05", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("12017", "2", "2015-05-16 12:37:28", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("12018", "1", "2015-05-16 12:37:33", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("12019", "5", "2015-05-16 12:41:09", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("12020", "3", "2015-05-16 13:00:19", "207.46.13.96", "783");
INSERT INTO `wp_gf_form_view` VALUES("12021", "3", "2015-05-16 14:04:10", "157.55.39.149", "758");
INSERT INTO `wp_gf_form_view` VALUES("12022", "1", "2015-05-16 14:48:20", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("12023", "2", "2015-05-16 14:48:20", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("12024", "3", "2015-05-16 15:02:58", "207.46.13.96", "733");
INSERT INTO `wp_gf_form_view` VALUES("12025", "7", "2015-05-16 15:53:54", "154.20.45.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("12026", "3", "2015-05-16 16:00:53", "207.46.13.96", "652");
INSERT INTO `wp_gf_form_view` VALUES("12027", "3", "2015-05-16 17:00:08", "157.55.39.149", "647");
INSERT INTO `wp_gf_form_view` VALUES("12028", "3", "2015-05-16 18:01:16", "202.46.63.162", "550");
INSERT INTO `wp_gf_form_view` VALUES("12029", "3", "2015-05-16 19:00:04", "157.55.39.139", "610");
INSERT INTO `wp_gf_form_view` VALUES("12030", "3", "2015-05-16 20:01:06", "207.46.13.96", "493");
INSERT INTO `wp_gf_form_view` VALUES("12031", "3", "2015-05-16 21:01:03", "157.55.39.139", "612");
INSERT INTO `wp_gf_form_view` VALUES("12032", "3", "2015-05-16 22:00:56", "157.55.39.139", "567");
INSERT INTO `wp_gf_form_view` VALUES("12033", "3", "2015-05-16 23:01:01", "66.249.67.133", "614");
INSERT INTO `wp_gf_form_view` VALUES("12034", "3", "2015-05-17 00:01:03", "157.55.39.139", "717");
INSERT INTO `wp_gf_form_view` VALUES("12035", "3", "2015-05-17 01:01:05", "157.55.39.139", "727");
INSERT INTO `wp_gf_form_view` VALUES("12036", "3", "2015-05-17 02:00:54", "157.55.39.14", "519");
INSERT INTO `wp_gf_form_view` VALUES("12037", "1", "2015-05-17 02:44:34", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("12038", "3", "2015-05-17 03:01:39", "157.55.39.140", "516");
INSERT INTO `wp_gf_form_view` VALUES("12039", "3", "2015-05-17 04:00:04", "157.55.39.149", "794");
INSERT INTO `wp_gf_form_view` VALUES("12040", "3", "2015-05-17 05:00:09", "157.55.39.150", "651");
INSERT INTO `wp_gf_form_view` VALUES("12041", "3", "2015-05-17 06:00:06", "157.55.39.149", "581");
INSERT INTO `wp_gf_form_view` VALUES("12042", "3", "2015-05-17 07:01:10", "157.55.39.139", "549");
INSERT INTO `wp_gf_form_view` VALUES("12043", "3", "2015-05-17 08:00:12", "207.46.13.96", "575");
INSERT INTO `wp_gf_form_view` VALUES("12044", "3", "2015-05-17 09:00:32", "157.55.39.14", "462");
INSERT INTO `wp_gf_form_view` VALUES("12045", "3", "2015-05-17 10:00:42", "157.55.39.140", "593");
INSERT INTO `wp_gf_form_view` VALUES("12046", "3", "2015-05-17 11:01:21", "157.55.39.140", "689");
INSERT INTO `wp_gf_form_view` VALUES("12047", "1", "2015-05-17 11:25:14", "175.195.192.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("12048", "3", "2015-05-17 12:00:05", "157.55.39.139", "541");
INSERT INTO `wp_gf_form_view` VALUES("12049", "3", "2015-05-17 13:00:21", "157.55.39.14", "691");
INSERT INTO `wp_gf_form_view` VALUES("12050", "3", "2015-05-17 14:00:46", "157.55.39.14", "493");
INSERT INTO `wp_gf_form_view` VALUES("12051", "3", "2015-05-17 15:00:35", "207.46.13.96", "807");
INSERT INTO `wp_gf_form_view` VALUES("12052", "3", "2015-05-17 16:02:26", "157.55.39.150", "614");
INSERT INTO `wp_gf_form_view` VALUES("12053", "3", "2015-05-17 17:01:05", "207.46.13.96", "575");
INSERT INTO `wp_gf_form_view` VALUES("12054", "3", "2015-05-17 18:00:32", "157.55.39.14", "1290");
INSERT INTO `wp_gf_form_view` VALUES("12055", "3", "2015-05-17 19:00:08", "68.180.228.245", "791");
INSERT INTO `wp_gf_form_view` VALUES("12056", "3", "2015-05-17 20:00:38", "157.55.39.14", "608");
INSERT INTO `wp_gf_form_view` VALUES("12057", "3", "2015-05-17 21:00:17", "207.46.13.96", "616");
INSERT INTO `wp_gf_form_view` VALUES("12058", "3", "2015-05-17 22:00:57", "157.55.39.139", "708");
INSERT INTO `wp_gf_form_view` VALUES("12059", "3", "2015-05-17 23:00:37", "66.249.67.120", "217");
INSERT INTO `wp_gf_form_view` VALUES("12060", "3", "2015-05-18 00:05:11", "202.46.62.57", "91");
INSERT INTO `wp_gf_form_view` VALUES("12061", "3", "2015-05-18 01:03:44", "202.46.62.204", "46");
INSERT INTO `wp_gf_form_view` VALUES("12062", "3", "2015-05-18 02:12:40", "157.55.39.140", "89");
INSERT INTO `wp_gf_form_view` VALUES("12063", "3", "2015-05-18 03:00:49", "202.46.62.56", "35");
INSERT INTO `wp_gf_form_view` VALUES("12064", "3", "2015-05-18 04:08:51", "157.55.39.149", "64");
INSERT INTO `wp_gf_form_view` VALUES("12065", "3", "2015-05-18 05:33:56", "66.249.67.146", "29");
INSERT INTO `wp_gf_form_view` VALUES("12066", "6", "2015-05-18 05:39:31", "207.46.13.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("12067", "3", "2015-05-18 06:09:07", "202.46.63.83", "118");
INSERT INTO `wp_gf_form_view` VALUES("12068", "6", "2015-05-18 06:48:26", "66.249.67.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12069", "3", "2015-05-18 07:01:39", "68.180.228.245", "86");
INSERT INTO `wp_gf_form_view` VALUES("12070", "3", "2015-05-18 08:01:58", "66.249.67.133", "246");
INSERT INTO `wp_gf_form_view` VALUES("12071", "3", "2015-05-18 09:03:16", "66.249.67.133", "234");
INSERT INTO `wp_gf_form_view` VALUES("12072", "3", "2015-05-18 10:00:46", "66.249.67.120", "300");
INSERT INTO `wp_gf_form_view` VALUES("12073", "1", "2015-05-18 10:24:11", "37.57.231.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("12074", "3", "2015-05-18 11:02:06", "66.249.67.120", "236");
INSERT INTO `wp_gf_form_view` VALUES("12075", "3", "2015-05-18 12:05:21", "66.249.67.120", "64");
INSERT INTO `wp_gf_form_view` VALUES("12076", "3", "2015-05-18 13:08:34", "202.46.61.105", "83");
INSERT INTO `wp_gf_form_view` VALUES("12077", "3", "2015-05-18 14:20:47", "202.46.63.164", "60");
INSERT INTO `wp_gf_form_view` VALUES("12078", "3", "2015-05-18 15:41:55", "202.46.63.68", "10");
INSERT INTO `wp_gf_form_view` VALUES("12079", "3", "2015-05-18 16:16:54", "202.46.61.121", "9");
INSERT INTO `wp_gf_form_view` VALUES("12080", "3", "2015-05-18 17:02:51", "68.180.228.245", "212");
INSERT INTO `wp_gf_form_view` VALUES("12081", "3", "2015-05-18 18:00:18", "99.199.0.210", "91");
INSERT INTO `wp_gf_form_view` VALUES("12082", "3", "2015-05-18 19:00:26", "202.46.63.80", "110");
INSERT INTO `wp_gf_form_view` VALUES("12083", "2", "2015-05-18 19:22:42", "46.4.189.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("12084", "1", "2015-05-18 19:47:05", "24.68.135.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("12085", "3", "2015-05-18 20:01:02", "199.21.99.206", "195");
INSERT INTO `wp_gf_form_view` VALUES("12086", "3", "2015-05-18 21:01:02", "66.249.67.133", "372");
INSERT INTO `wp_gf_form_view` VALUES("12087", "3", "2015-05-18 22:01:18", "66.249.67.146", "388");
INSERT INTO `wp_gf_form_view` VALUES("12088", "3", "2015-05-18 23:01:13", "68.180.228.245", "909");
INSERT INTO `wp_gf_form_view` VALUES("12089", "7", "2015-05-18 23:47:48", "52.8.5.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("12090", "2", "2015-05-18 23:49:04", "52.8.5.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("12091", "1", "2015-05-18 23:49:18", "52.8.5.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("12092", "3", "2015-05-19 00:01:50", "66.249.67.133", "320");
INSERT INTO `wp_gf_form_view` VALUES("12093", "7", "2015-05-19 00:58:57", "66.249.67.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12094", "3", "2015-05-19 01:00:45", "66.249.67.133", "190");
INSERT INTO `wp_gf_form_view` VALUES("12095", "6", "2015-05-19 01:17:53", "66.249.67.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12096", "3", "2015-05-19 02:01:57", "202.46.61.121", "244");
INSERT INTO `wp_gf_form_view` VALUES("12097", "3", "2015-05-19 03:00:26", "202.46.63.209", "373");
INSERT INTO `wp_gf_form_view` VALUES("12098", "1", "2015-05-19 03:30:21", "117.102.48.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("12099", "6", "2015-05-19 04:02:49", "112.18.66.238", "4");
INSERT INTO `wp_gf_form_view` VALUES("12100", "3", "2015-05-19 04:02:49", "112.18.66.238", "6901");
INSERT INTO `wp_gf_form_view` VALUES("12101", "3", "2015-05-19 05:00:18", "66.249.67.146", "2586");
INSERT INTO `wp_gf_form_view` VALUES("12102", "3", "2015-05-19 06:01:39", "66.249.67.133", "218");
INSERT INTO `wp_gf_form_view` VALUES("12103", "3", "2015-05-19 07:01:05", "66.249.67.133", "223");
INSERT INTO `wp_gf_form_view` VALUES("12104", "2", "2015-05-19 07:17:46", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12105", "6", "2015-05-19 07:21:23", "66.249.67.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12106", "3", "2015-05-19 08:02:03", "66.249.67.146", "231");
INSERT INTO `wp_gf_form_view` VALUES("12107", "3", "2015-05-19 09:03:10", "66.249.67.133", "246");
INSERT INTO `wp_gf_form_view` VALUES("12108", "3", "2015-05-19 10:01:54", "202.46.63.164", "265");
INSERT INTO `wp_gf_form_view` VALUES("12109", "6", "2015-05-19 10:14:06", "66.249.67.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12110", "3", "2015-05-19 11:01:06", "66.249.67.146", "226");
INSERT INTO `wp_gf_form_view` VALUES("12111", "3", "2015-05-19 12:00:03", "66.249.67.133", "273");
INSERT INTO `wp_gf_form_view` VALUES("12112", "3", "2015-05-19 13:01:10", "66.249.67.133", "225");
INSERT INTO `wp_gf_form_view` VALUES("12113", "6", "2015-05-19 13:41:43", "66.249.67.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12114", "3", "2015-05-19 14:02:40", "66.249.67.120", "165");
INSERT INTO `wp_gf_form_view` VALUES("12115", "3", "2015-05-19 15:02:15", "66.249.67.146", "136");
INSERT INTO `wp_gf_form_view` VALUES("12116", "3", "2015-05-19 16:01:50", "66.249.67.133", "193");
INSERT INTO `wp_gf_form_view` VALUES("12117", "3", "2015-05-19 17:03:48", "66.249.67.133", "182");
INSERT INTO `wp_gf_form_view` VALUES("12118", "3", "2015-05-19 18:01:00", "66.249.67.133", "92");
INSERT INTO `wp_gf_form_view` VALUES("12119", "6", "2015-05-19 18:10:31", "66.249.67.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12120", "3", "2015-05-19 19:21:16", "157.55.39.14", "285");
INSERT INTO `wp_gf_form_view` VALUES("12121", "3", "2015-05-19 20:01:50", "157.55.39.140", "92");
INSERT INTO `wp_gf_form_view` VALUES("12122", "3", "2015-05-19 21:00:41", "66.249.67.146", "155");
INSERT INTO `wp_gf_form_view` VALUES("12123", "2", "2015-05-19 21:59:43", "46.4.189.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("12124", "3", "2015-05-19 22:02:01", "66.249.67.120", "135");
INSERT INTO `wp_gf_form_view` VALUES("12125", "6", "2015-05-19 22:04:41", "66.249.67.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("12126", "3", "2015-05-19 23:03:39", "66.249.67.133", "54");
INSERT INTO `wp_gf_form_view` VALUES("12127", "3", "2015-05-20 00:00:06", "66.249.67.146", "174");
INSERT INTO `wp_gf_form_view` VALUES("12128", "1", "2015-05-20 00:00:54", "96.50.86.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("12129", "3", "2015-05-20 01:06:37", "66.249.67.146", "189");
INSERT INTO `wp_gf_form_view` VALUES("12130", "3", "2015-05-20 02:02:01", "66.249.67.133", "126");
INSERT INTO `wp_gf_form_view` VALUES("12131", "3", "2015-05-20 03:04:06", "66.249.67.120", "190");
INSERT INTO `wp_gf_form_view` VALUES("12132", "3", "2015-05-20 04:01:44", "66.249.67.120", "258");
INSERT INTO `wp_gf_form_view` VALUES("12133", "3", "2015-05-20 05:01:48", "66.249.67.133", "169");
INSERT INTO `wp_gf_form_view` VALUES("12134", "6", "2015-05-20 05:03:48", "66.249.67.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12135", "3", "2015-05-20 06:03:39", "66.249.67.146", "145");
INSERT INTO `wp_gf_form_view` VALUES("12136", "1", "2015-05-20 06:51:45", "104.193.9.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("12137", "3", "2015-05-20 07:08:36", "46.101.160.236", "18");
INSERT INTO `wp_gf_form_view` VALUES("12138", "3", "2015-05-20 08:15:55", "207.46.13.121", "177");
INSERT INTO `wp_gf_form_view` VALUES("12139", "3", "2015-05-20 09:01:24", "66.249.67.146", "216");
INSERT INTO `wp_gf_form_view` VALUES("12140", "3", "2015-05-20 10:00:00", "66.249.67.146", "270");
INSERT INTO `wp_gf_form_view` VALUES("12141", "3", "2015-05-20 11:00:10", "66.249.67.133", "290");
INSERT INTO `wp_gf_form_view` VALUES("12142", "3", "2015-05-20 12:00:19", "66.249.67.133", "279");
INSERT INTO `wp_gf_form_view` VALUES("12143", "3", "2015-05-20 13:02:04", "66.249.67.120", "36");
INSERT INTO `wp_gf_form_view` VALUES("12144", "3", "2015-05-20 14:09:06", "68.180.228.245", "129");
INSERT INTO `wp_gf_form_view` VALUES("12145", "3", "2015-05-20 15:06:43", "66.249.67.120", "55");
INSERT INTO `wp_gf_form_view` VALUES("12146", "3", "2015-05-20 16:01:55", "66.249.67.133", "334");
INSERT INTO `wp_gf_form_view` VALUES("12147", "3", "2015-05-20 17:00:50", "66.249.67.120", "389");
INSERT INTO `wp_gf_form_view` VALUES("12148", "3", "2015-05-20 18:01:05", "66.249.67.120", "406");
INSERT INTO `wp_gf_form_view` VALUES("12149", "3", "2015-05-20 19:00:39", "66.249.67.146", "430");
INSERT INTO `wp_gf_form_view` VALUES("12150", "3", "2015-05-20 20:00:32", "157.55.39.42", "174");
INSERT INTO `wp_gf_form_view` VALUES("12151", "3", "2015-05-20 21:01:37", "157.55.39.53", "177");
INSERT INTO `wp_gf_form_view` VALUES("12152", "3", "2015-05-20 22:00:01", "66.249.67.146", "436");
INSERT INTO `wp_gf_form_view` VALUES("12153", "1", "2015-05-20 22:59:33", "96.50.86.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("12154", "3", "2015-05-20 23:01:46", "66.249.67.146", "471");
INSERT INTO `wp_gf_form_view` VALUES("12155", "3", "2015-05-21 00:00:17", "66.249.67.120", "320");
INSERT INTO `wp_gf_form_view` VALUES("12156", "6", "2015-05-21 00:55:23", "66.249.67.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12157", "3", "2015-05-21 01:12:42", "157.55.39.42", "72");
INSERT INTO `wp_gf_form_view` VALUES("12158", "3", "2015-05-21 02:03:26", "68.180.228.245", "406");
INSERT INTO `wp_gf_form_view` VALUES("12159", "3", "2015-05-21 03:01:05", "66.249.67.133", "381");
INSERT INTO `wp_gf_form_view` VALUES("12160", "3", "2015-05-21 04:00:13", "66.249.67.133", "531");
INSERT INTO `wp_gf_form_view` VALUES("12161", "3", "2015-05-21 05:00:32", "66.249.67.120", "456");
INSERT INTO `wp_gf_form_view` VALUES("12162", "3", "2015-05-21 06:00:49", "66.249.67.146", "272");
INSERT INTO `wp_gf_form_view` VALUES("12163", "3", "2015-05-21 07:00:00", "66.249.67.146", "218");
INSERT INTO `wp_gf_form_view` VALUES("12164", "3", "2015-05-21 08:10:22", "66.249.67.120", "3294");
INSERT INTO `wp_gf_form_view` VALUES("12165", "6", "2015-05-21 08:49:28", "157.55.39.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("12166", "3", "2015-05-21 09:00:53", "66.249.67.120", "226");
INSERT INTO `wp_gf_form_view` VALUES("12167", "3", "2015-05-21 10:00:49", "157.55.39.42", "4488");
INSERT INTO `wp_gf_form_view` VALUES("12168", "6", "2015-05-21 10:01:25", "157.55.39.42", "7");
INSERT INTO `wp_gf_form_view` VALUES("12169", "3", "2015-05-21 11:01:14", "66.249.67.133", "235");
INSERT INTO `wp_gf_form_view` VALUES("12170", "3", "2015-05-21 12:00:43", "66.249.67.146", "336");
INSERT INTO `wp_gf_form_view` VALUES("12171", "3", "2015-05-21 13:00:08", "66.249.67.120", "380");
INSERT INTO `wp_gf_form_view` VALUES("12172", "3", "2015-05-21 14:03:56", "66.249.67.146", "341");
INSERT INTO `wp_gf_form_view` VALUES("12173", "3", "2015-05-21 15:11:48", "66.249.67.120", "146");
INSERT INTO `wp_gf_form_view` VALUES("12174", "1", "2015-05-21 15:42:45", "104.193.9.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("12175", "3", "2015-05-21 16:00:37", "66.249.67.120", "359");
INSERT INTO `wp_gf_form_view` VALUES("12176", "6", "2015-05-21 16:42:42", "157.55.39.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("12177", "3", "2015-05-21 17:01:37", "66.249.67.133", "199");
INSERT INTO `wp_gf_form_view` VALUES("12178", "3", "2015-05-21 18:04:39", "66.249.67.120", "285");
INSERT INTO `wp_gf_form_view` VALUES("12179", "1", "2015-05-21 18:12:02", "104.193.9.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("12180", "3", "2015-05-21 19:00:58", "68.180.228.245", "477");
INSERT INTO `wp_gf_form_view` VALUES("12181", "3", "2015-05-21 20:00:32", "66.249.67.146", "153");
INSERT INTO `wp_gf_form_view` VALUES("12182", "3", "2015-05-21 21:26:49", "216.57.188.125", "65");
INSERT INTO `wp_gf_form_view` VALUES("12183", "7", "2015-05-21 21:33:27", "88.200.215.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("12184", "3", "2015-05-21 22:02:42", "68.180.228.245", "43");
INSERT INTO `wp_gf_form_view` VALUES("12185", "6", "2015-05-21 22:11:20", "66.249.67.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12186", "3", "2015-05-21 23:34:30", "66.249.67.146", "72");
INSERT INTO `wp_gf_form_view` VALUES("12187", "3", "2015-05-22 00:02:56", "66.249.67.146", "155");
INSERT INTO `wp_gf_form_view` VALUES("12188", "3", "2015-05-22 01:03:05", "66.249.67.146", "159");
INSERT INTO `wp_gf_form_view` VALUES("12189", "3", "2015-05-22 02:00:05", "66.249.67.146", "128");
INSERT INTO `wp_gf_form_view` VALUES("12190", "3", "2015-05-22 03:03:26", "66.249.67.146", "180");
INSERT INTO `wp_gf_form_view` VALUES("12191", "3", "2015-05-22 04:00:25", "66.249.67.146", "182");
INSERT INTO `wp_gf_form_view` VALUES("12192", "3", "2015-05-22 05:00:28", "184.71.26.154", "118");
INSERT INTO `wp_gf_form_view` VALUES("12193", "3", "2015-05-22 06:00:48", "66.249.67.146", "129");
INSERT INTO `wp_gf_form_view` VALUES("12194", "3", "2015-05-22 07:04:06", "66.249.67.133", "110");
INSERT INTO `wp_gf_form_view` VALUES("12195", "3", "2015-05-22 08:01:07", "66.249.67.146", "231");
INSERT INTO `wp_gf_form_view` VALUES("12196", "1", "2015-05-22 08:55:35", "104.193.9.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("12197", "3", "2015-05-22 09:01:15", "66.249.67.133", "225");
INSERT INTO `wp_gf_form_view` VALUES("12198", "3", "2015-05-22 10:07:46", "66.249.67.133", "154");
INSERT INTO `wp_gf_form_view` VALUES("12199", "1", "2015-05-22 10:45:10", "125.71.40.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("12200", "3", "2015-05-22 11:01:35", "66.249.67.133", "130");
INSERT INTO `wp_gf_form_view` VALUES("12201", "3", "2015-05-22 12:08:05", "66.249.67.133", "750");
INSERT INTO `wp_gf_form_view` VALUES("12202", "6", "2015-05-22 12:14:20", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12203", "1", "2015-05-22 12:45:57", "66.249.67.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12204", "3", "2015-05-22 13:01:12", "202.46.54.33", "198");
INSERT INTO `wp_gf_form_view` VALUES("12205", "3", "2015-05-22 14:01:36", "178.137.19.143", "222");
INSERT INTO `wp_gf_form_view` VALUES("12206", "3", "2015-05-22 15:09:59", "202.46.49.96", "347");
INSERT INTO `wp_gf_form_view` VALUES("12207", "3", "2015-05-22 16:04:51", "157.55.39.114", "142");
INSERT INTO `wp_gf_form_view` VALUES("12208", "3", "2015-05-22 17:02:37", "66.249.67.146", "192");
INSERT INTO `wp_gf_form_view` VALUES("12209", "3", "2015-05-22 18:02:48", "66.249.67.133", "200");
INSERT INTO `wp_gf_form_view` VALUES("12210", "3", "2015-05-22 19:04:08", "202.46.50.16", "223");
INSERT INTO `wp_gf_form_view` VALUES("12211", "3", "2015-05-22 20:02:45", "202.46.51.179", "195");
INSERT INTO `wp_gf_form_view` VALUES("12212", "1", "2015-05-22 20:33:40", "125.71.40.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("12213", "3", "2015-05-22 21:01:12", "202.46.57.18", "4898");
INSERT INTO `wp_gf_form_view` VALUES("12214", "6", "2015-05-22 21:49:43", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("12215", "3", "2015-05-22 22:00:18", "66.249.79.120", "202");
INSERT INTO `wp_gf_form_view` VALUES("12216", "6", "2015-05-22 22:16:00", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12217", "3", "2015-05-22 23:06:46", "66.249.79.133", "266");
INSERT INTO `wp_gf_form_view` VALUES("12218", "3", "2015-05-23 00:00:41", "66.249.79.120", "618");
INSERT INTO `wp_gf_form_view` VALUES("12219", "3", "2015-05-23 01:00:49", "66.249.79.133", "646");
INSERT INTO `wp_gf_form_view` VALUES("12220", "5", "2015-05-23 01:49:36", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12221", "3", "2015-05-23 02:00:20", "66.249.79.133", "832");
INSERT INTO `wp_gf_form_view` VALUES("12222", "7", "2015-05-23 02:24:05", "96.54.161.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("12223", "3", "2015-05-23 03:00:14", "66.249.79.133", "566");
INSERT INTO `wp_gf_form_view` VALUES("12224", "3", "2015-05-23 04:00:18", "66.249.79.133", "583");
INSERT INTO `wp_gf_form_view` VALUES("12225", "3", "2015-05-23 05:00:20", "66.249.79.146", "668");
INSERT INTO `wp_gf_form_view` VALUES("12226", "6", "2015-05-23 05:13:19", "207.46.13.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("12227", "3", "2015-05-23 06:02:02", "66.249.79.120", "263");
INSERT INTO `wp_gf_form_view` VALUES("12228", "3", "2015-05-23 07:02:21", "66.249.79.146", "356");
INSERT INTO `wp_gf_form_view` VALUES("12229", "1", "2015-05-23 07:26:26", "117.177.243.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("12230", "3", "2015-05-23 08:00:36", "66.249.79.133", "456");
INSERT INTO `wp_gf_form_view` VALUES("12231", "3", "2015-05-23 09:00:43", "66.249.79.146", "452");
INSERT INTO `wp_gf_form_view` VALUES("12232", "3", "2015-05-23 10:00:35", "66.249.79.133", "578");
INSERT INTO `wp_gf_form_view` VALUES("12233", "3", "2015-05-23 11:00:00", "61.16.251.194", "502");
INSERT INTO `wp_gf_form_view` VALUES("12234", "7", "2015-05-23 11:00:04", "61.16.251.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("12235", "1", "2015-05-23 11:00:26", "61.16.251.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("12236", "2", "2015-05-23 11:00:36", "61.16.251.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("12237", "3", "2015-05-23 12:00:34", "66.249.79.133", "556");
INSERT INTO `wp_gf_form_view` VALUES("12238", "3", "2015-05-23 13:00:35", "66.249.79.120", "475");
INSERT INTO `wp_gf_form_view` VALUES("12239", "3", "2015-05-23 14:00:33", "66.249.79.146", "399");
INSERT INTO `wp_gf_form_view` VALUES("12240", "3", "2015-05-23 15:00:52", "202.46.52.110", "376");
INSERT INTO `wp_gf_form_view` VALUES("12241", "3", "2015-05-23 16:00:24", "202.46.51.192", "379");
INSERT INTO `wp_gf_form_view` VALUES("12242", "3", "2015-05-23 17:04:02", "66.249.79.146", "330");
INSERT INTO `wp_gf_form_view` VALUES("12243", "3", "2015-05-23 18:01:39", "66.249.79.120", "423");
INSERT INTO `wp_gf_form_view` VALUES("12244", "3", "2015-05-23 19:01:22", "66.249.79.146", "512");
INSERT INTO `wp_gf_form_view` VALUES("12245", "1", "2015-05-23 19:19:50", "31.148.219.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("12246", "3", "2015-05-23 20:06:15", "202.46.57.208", "301");
INSERT INTO `wp_gf_form_view` VALUES("12247", "3", "2015-05-23 21:02:19", "66.249.79.133", "317");
INSERT INTO `wp_gf_form_view` VALUES("12248", "1", "2015-05-23 21:37:06", "128.204.196.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12249", "3", "2015-05-23 22:01:04", "66.249.79.133", "304");
INSERT INTO `wp_gf_form_view` VALUES("12250", "3", "2015-05-23 23:01:51", "202.46.51.158", "490");
INSERT INTO `wp_gf_form_view` VALUES("12251", "3", "2015-05-24 00:00:23", "202.46.50.130", "1288");
INSERT INTO `wp_gf_form_view` VALUES("12252", "1", "2015-05-24 00:33:09", "162.243.251.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("12253", "7", "2015-05-24 00:39:04", "162.243.251.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("12254", "5", "2015-05-24 00:40:09", "162.243.251.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("12255", "3", "2015-05-24 01:00:03", "68.180.228.245", "370");
INSERT INTO `wp_gf_form_view` VALUES("12256", "3", "2015-05-24 02:02:19", "66.249.79.133", "271");
INSERT INTO `wp_gf_form_view` VALUES("12257", "3", "2015-05-24 03:00:04", "66.249.79.120", "324");
INSERT INTO `wp_gf_form_view` VALUES("12258", "3", "2015-05-24 04:02:58", "66.249.79.146", "261");
INSERT INTO `wp_gf_form_view` VALUES("12259", "3", "2015-05-24 05:00:46", "66.249.79.133", "574");
INSERT INTO `wp_gf_form_view` VALUES("12260", "7", "2015-05-24 05:10:35", "143.176.126.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("12261", "1", "2015-05-24 05:11:04", "143.176.126.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("12262", "2", "2015-05-24 05:11:12", "143.176.126.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("12263", "3", "2015-05-24 06:00:16", "66.249.79.120", "387");
INSERT INTO `wp_gf_form_view` VALUES("12264", "3", "2015-05-24 07:01:28", "66.249.79.146", "207");
INSERT INTO `wp_gf_form_view` VALUES("12265", "3", "2015-05-24 08:00:24", "202.46.49.134", "147");
INSERT INTO `wp_gf_form_view` VALUES("12266", "3", "2015-05-24 09:10:05", "66.249.79.133", "146");
INSERT INTO `wp_gf_form_view` VALUES("12267", "3", "2015-05-24 10:09:10", "202.46.52.147", "153");
INSERT INTO `wp_gf_form_view` VALUES("12268", "3", "2015-05-24 11:01:18", "66.249.79.120", "184");
INSERT INTO `wp_gf_form_view` VALUES("12269", "3", "2015-05-24 12:02:15", "66.249.69.61", "210");
INSERT INTO `wp_gf_form_view` VALUES("12270", "6", "2015-05-24 12:57:18", "66.249.69.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("12271", "3", "2015-05-24 13:00:36", "66.249.69.53", "225");
INSERT INTO `wp_gf_form_view` VALUES("12272", "3", "2015-05-24 14:02:40", "66.249.69.53", "180");
INSERT INTO `wp_gf_form_view` VALUES("12273", "3", "2015-05-24 15:01:51", "202.46.49.130", "140");
INSERT INTO `wp_gf_form_view` VALUES("12274", "3", "2015-05-24 16:00:23", "202.46.51.169", "192");
INSERT INTO `wp_gf_form_view` VALUES("12275", "3", "2015-05-24 17:03:43", "66.249.69.61", "118");
INSERT INTO `wp_gf_form_view` VALUES("12276", "3", "2015-05-24 18:09:10", "202.46.52.173", "1536");
INSERT INTO `wp_gf_form_view` VALUES("12277", "6", "2015-05-24 18:18:57", "157.55.39.181", "5");
INSERT INTO `wp_gf_form_view` VALUES("12278", "3", "2015-05-24 19:00:50", "66.249.69.61", "407");
INSERT INTO `wp_gf_form_view` VALUES("12279", "7", "2015-05-24 19:12:25", "82.208.160.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("12280", "3", "2015-05-24 20:01:14", "66.249.69.45", "137");
INSERT INTO `wp_gf_form_view` VALUES("12281", "3", "2015-05-24 21:01:24", "66.249.69.53", "265");
INSERT INTO `wp_gf_form_view` VALUES("12282", "1", "2015-05-24 21:08:20", "125.71.40.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("12283", "2", "2015-05-24 21:46:41", "66.249.64.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("12284", "3", "2015-05-24 22:03:20", "202.46.58.202", "203");
INSERT INTO `wp_gf_form_view` VALUES("12285", "3", "2015-05-24 23:01:50", "202.46.56.97", "111");
INSERT INTO `wp_gf_form_view` VALUES("12286", "3", "2015-05-25 00:00:23", "202.46.58.58", "163");
INSERT INTO `wp_gf_form_view` VALUES("12287", "3", "2015-05-25 01:10:37", "202.46.54.184", "205");
INSERT INTO `wp_gf_form_view` VALUES("12288", "3", "2015-05-25 02:09:10", "202.46.58.210", "131");
INSERT INTO `wp_gf_form_view` VALUES("12289", "3", "2015-05-25 03:07:42", "202.46.48.210", "160");
INSERT INTO `wp_gf_form_view` VALUES("12290", "3", "2015-05-25 04:06:08", "66.249.69.53", "194");
INSERT INTO `wp_gf_form_view` VALUES("12291", "6", "2015-05-25 04:41:22", "66.249.69.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("12292", "3", "2015-05-25 05:00:10", "66.249.69.61", "241");
INSERT INTO `wp_gf_form_view` VALUES("12293", "6", "2015-05-25 05:33:04", "66.249.69.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("12294", "3", "2015-05-25 06:03:18", "202.46.50.124", "249");
INSERT INTO `wp_gf_form_view` VALUES("12295", "3", "2015-05-25 07:00:01", "66.249.69.45", "173");
INSERT INTO `wp_gf_form_view` VALUES("12296", "3", "2015-05-25 08:00:26", "202.46.50.155", "130");
INSERT INTO `wp_gf_form_view` VALUES("12297", "6", "2015-05-25 08:48:12", "66.249.69.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("12298", "3", "2015-05-25 09:01:48", "66.249.69.53", "289");
INSERT INTO `wp_gf_form_view` VALUES("12299", "3", "2015-05-25 10:01:41", "66.249.69.45", "280");
INSERT INTO `wp_gf_form_view` VALUES("12300", "3", "2015-05-25 11:01:38", "66.249.69.45", "324");
INSERT INTO `wp_gf_form_view` VALUES("12301", "2", "2015-05-25 11:31:43", "89.234.157.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("12302", "3", "2015-05-25 12:01:39", "66.249.69.45", "304");
INSERT INTO `wp_gf_form_view` VALUES("12303", "3", "2015-05-25 13:01:30", "66.249.79.146", "278");
INSERT INTO `wp_gf_form_view` VALUES("12304", "6", "2015-05-25 13:13:02", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12305", "3", "2015-05-25 14:01:10", "66.249.79.133", "288");
INSERT INTO `wp_gf_form_view` VALUES("12306", "3", "2015-05-25 15:00:05", "66.249.79.120", "308");
INSERT INTO `wp_gf_form_view` VALUES("12307", "1", "2015-05-25 15:27:30", "94.136.142.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("12308", "3", "2015-05-25 16:01:03", "202.46.53.124", "570");
INSERT INTO `wp_gf_form_view` VALUES("12309", "1", "2015-05-25 16:26:29", "45.59.185.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("12310", "3", "2015-05-25 17:00:46", "66.249.79.120", "357");
INSERT INTO `wp_gf_form_view` VALUES("12311", "3", "2015-05-25 18:03:12", "66.249.79.133", "438");
INSERT INTO `wp_gf_form_view` VALUES("12312", "3", "2015-05-25 19:00:14", "66.249.79.133", "597");
INSERT INTO `wp_gf_form_view` VALUES("12313", "3", "2015-05-25 20:02:41", "66.249.79.120", "327");
INSERT INTO `wp_gf_form_view` VALUES("12314", "6", "2015-05-25 20:06:16", "202.46.51.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("12315", "3", "2015-05-25 21:01:31", "66.249.79.133", "409");
INSERT INTO `wp_gf_form_view` VALUES("12316", "3", "2015-05-25 22:02:09", "66.249.79.133", "278");
INSERT INTO `wp_gf_form_view` VALUES("12317", "3", "2015-05-25 23:01:50", "202.46.49.130", "357");
INSERT INTO `wp_gf_form_view` VALUES("12318", "3", "2015-05-26 00:00:23", "202.46.52.41", "267");
INSERT INTO `wp_gf_form_view` VALUES("12319", "3", "2015-05-26 01:00:29", "66.249.79.133", "292");
INSERT INTO `wp_gf_form_view` VALUES("12320", "3", "2015-05-26 02:01:11", "66.249.79.120", "183");
INSERT INTO `wp_gf_form_view` VALUES("12321", "3", "2015-05-26 03:01:21", "66.249.79.120", "210");
INSERT INTO `wp_gf_form_view` VALUES("12322", "3", "2015-05-26 04:01:18", "66.249.79.120", "265");
INSERT INTO `wp_gf_form_view` VALUES("12323", "3", "2015-05-26 05:01:13", "66.249.79.120", "224");
INSERT INTO `wp_gf_form_view` VALUES("12324", "3", "2015-05-26 06:01:09", "66.249.79.146", "226");
INSERT INTO `wp_gf_form_view` VALUES("12325", "3", "2015-05-26 07:00:49", "68.180.228.245", "254");
INSERT INTO `wp_gf_form_view` VALUES("12326", "3", "2015-05-26 08:00:23", "202.46.51.161", "188");
INSERT INTO `wp_gf_form_view` VALUES("12327", "3", "2015-05-26 09:07:10", "66.249.79.133", "211");
INSERT INTO `wp_gf_form_view` VALUES("12328", "1", "2015-05-26 09:40:37", "91.200.12.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("12329", "3", "2015-05-26 10:04:43", "66.249.79.120", "169");
INSERT INTO `wp_gf_form_view` VALUES("12330", "3", "2015-05-26 11:02:10", "66.249.79.146", "197");
INSERT INTO `wp_gf_form_view` VALUES("12331", "3", "2015-05-26 12:02:10", "66.249.79.120", "191");
INSERT INTO `wp_gf_form_view` VALUES("12332", "3", "2015-05-26 13:02:10", "66.249.79.146", "196");
INSERT INTO `wp_gf_form_view` VALUES("12333", "3", "2015-05-26 14:01:07", "66.249.79.133", "124");
INSERT INTO `wp_gf_form_view` VALUES("12334", "3", "2015-05-26 15:01:50", "202.46.48.131", "182");
INSERT INTO `wp_gf_form_view` VALUES("12335", "1", "2015-05-26 15:50:18", "184.66.28.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("12336", "3", "2015-05-26 16:00:22", "202.46.53.201", "257");
INSERT INTO `wp_gf_form_view` VALUES("12337", "6", "2015-05-26 16:10:06", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12338", "3", "2015-05-26 17:03:06", "66.249.79.133", "190");
INSERT INTO `wp_gf_form_view` VALUES("12339", "3", "2015-05-26 18:02:46", "66.249.79.133", "101");
INSERT INTO `wp_gf_form_view` VALUES("12340", "2", "2015-05-26 18:47:41", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12341", "3", "2015-05-26 19:02:26", "66.249.79.133", "236");
INSERT INTO `wp_gf_form_view` VALUES("12342", "3", "2015-05-26 20:05:07", "66.249.79.120", "126");
INSERT INTO `wp_gf_form_view` VALUES("12343", "3", "2015-05-26 21:03:03", "68.180.228.245", "184");
INSERT INTO `wp_gf_form_view` VALUES("12344", "3", "2015-05-26 22:01:13", "66.249.79.120", "211");
INSERT INTO `wp_gf_form_view` VALUES("12345", "3", "2015-05-26 23:01:50", "202.46.52.18", "153");
INSERT INTO `wp_gf_form_view` VALUES("12346", "1", "2015-05-26 23:47:28", "72.143.232.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("12347", "3", "2015-05-27 00:00:23", "202.46.56.210", "176");
INSERT INTO `wp_gf_form_view` VALUES("12348", "2", "2015-05-27 00:53:48", "96.44.189.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("12349", "3", "2015-05-27 01:09:58", "66.249.79.146", "119");
INSERT INTO `wp_gf_form_view` VALUES("12350", "6", "2015-05-27 01:10:38", "202.46.48.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12351", "3", "2015-05-27 02:09:09", "202.46.48.205", "127");
INSERT INTO `wp_gf_form_view` VALUES("12352", "2", "2015-05-27 02:44:16", "202.46.53.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("12353", "3", "2015-05-27 03:01:57", "66.249.79.133", "103");
INSERT INTO `wp_gf_form_view` VALUES("12354", "3", "2015-05-27 04:06:13", "202.46.52.144", "3507");
INSERT INTO `wp_gf_form_view` VALUES("12355", "6", "2015-05-27 04:53:08", "207.46.13.8", "11");
INSERT INTO `wp_gf_form_view` VALUES("12356", "3", "2015-05-27 05:00:00", "157.55.39.195", "1389");
INSERT INTO `wp_gf_form_view` VALUES("12357", "6", "2015-05-27 05:00:31", "157.55.39.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("12358", "3", "2015-05-27 06:03:17", "202.46.55.175", "461");
INSERT INTO `wp_gf_form_view` VALUES("12359", "7", "2015-05-27 06:34:48", "128.187.97.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("12360", "2", "2015-05-27 06:34:57", "128.187.97.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("12361", "1", "2015-05-27 06:34:58", "128.187.97.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("12362", "5", "2015-05-27 06:36:14", "128.187.97.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("12363", "3", "2015-05-27 07:00:36", "68.180.228.245", "55");
INSERT INTO `wp_gf_form_view` VALUES("12364", "3", "2015-05-27 08:00:24", "202.46.49.209", "64");
INSERT INTO `wp_gf_form_view` VALUES("12365", "3", "2015-05-27 09:10:42", "202.46.56.91", "65");
INSERT INTO `wp_gf_form_view` VALUES("12366", "3", "2015-05-27 10:09:10", "202.46.55.195", "51");
INSERT INTO `wp_gf_form_view` VALUES("12367", "3", "2015-05-27 11:07:42", "202.46.51.86", "1461");
INSERT INTO `wp_gf_form_view` VALUES("12368", "3", "2015-05-27 12:06:13", "202.46.48.201", "50");
INSERT INTO `wp_gf_form_view` VALUES("12369", "3", "2015-05-27 13:04:45", "202.46.53.197", "142");
INSERT INTO `wp_gf_form_view` VALUES("12370", "1", "2015-05-27 13:13:55", "45.55.133.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("12371", "2", "2015-05-27 13:13:56", "45.55.133.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("12372", "3", "2015-05-27 14:03:18", "202.46.52.110", "61");
INSERT INTO `wp_gf_form_view` VALUES("12373", "3", "2015-05-27 15:01:49", "202.46.57.182", "79");
INSERT INTO `wp_gf_form_view` VALUES("12374", "6", "2015-05-27 15:02:28", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12375", "3", "2015-05-27 16:00:23", "202.46.48.193", "68");
INSERT INTO `wp_gf_form_view` VALUES("12376", "3", "2015-05-27 17:10:37", "202.46.53.149", "90");
INSERT INTO `wp_gf_form_view` VALUES("12377", "3", "2015-05-27 18:00:07", "24.69.222.231", "248");
INSERT INTO `wp_gf_form_view` VALUES("12378", "3", "2015-05-27 19:07:41", "202.46.53.54", "78");
INSERT INTO `wp_gf_form_view` VALUES("12379", "6", "2015-05-27 19:49:48", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12380", "3", "2015-05-27 20:06:13", "202.46.53.160", "126");
INSERT INTO `wp_gf_form_view` VALUES("12381", "6", "2015-05-27 20:20:08", "188.165.15.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("12382", "3", "2015-05-27 21:04:46", "202.46.53.200", "357");
INSERT INTO `wp_gf_form_view` VALUES("12383", "1", "2015-05-27 21:37:28", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("12384", "3", "2015-05-27 22:03:18", "202.46.48.96", "73");
INSERT INTO `wp_gf_form_view` VALUES("12385", "1", "2015-05-27 22:42:59", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12386", "5", "2015-05-27 22:56:58", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12387", "3", "2015-05-27 23:01:50", "202.46.52.210", "83");
INSERT INTO `wp_gf_form_view` VALUES("12388", "3", "2015-05-28 00:00:21", "202.46.56.14", "83");
INSERT INTO `wp_gf_form_view` VALUES("12389", "3", "2015-05-28 01:10:38", "202.46.55.154", "57");
INSERT INTO `wp_gf_form_view` VALUES("12390", "3", "2015-05-28 02:09:09", "202.46.51.192", "36");
INSERT INTO `wp_gf_form_view` VALUES("12391", "3", "2015-05-28 03:19:31", "202.46.51.170", "56");
INSERT INTO `wp_gf_form_view` VALUES("12392", "1", "2015-05-28 03:35:25", "50.7.192.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("12393", "3", "2015-05-28 04:06:13", "202.46.58.133", "56");
INSERT INTO `wp_gf_form_view` VALUES("12394", "3", "2015-05-28 05:04:46", "202.46.49.141", "69");
INSERT INTO `wp_gf_form_view` VALUES("12395", "7", "2015-05-28 05:20:24", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12396", "3", "2015-05-28 06:03:18", "202.46.52.158", "57");
INSERT INTO `wp_gf_form_view` VALUES("12397", "3", "2015-05-28 07:01:50", "202.46.58.96", "70");
INSERT INTO `wp_gf_form_view` VALUES("12398", "3", "2015-05-28 08:00:22", "202.46.55.138", "2229");
INSERT INTO `wp_gf_form_view` VALUES("12399", "6", "2015-05-28 08:32:49", "144.76.153.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("12400", "3", "2015-05-28 09:10:36", "202.46.54.203", "41");
INSERT INTO `wp_gf_form_view` VALUES("12401", "3", "2015-05-28 10:09:08", "202.46.48.193", "116");
INSERT INTO `wp_gf_form_view` VALUES("12402", "2", "2015-05-28 10:53:07", "157.55.39.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("12403", "1", "2015-05-28 10:53:08", "157.55.39.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("12404", "3", "2015-05-28 11:01:57", "66.249.79.146", "435");
INSERT INTO `wp_gf_form_view` VALUES("12405", "3", "2015-05-28 12:01:00", "142.4.214.124", "1016");
INSERT INTO `wp_gf_form_view` VALUES("12406", "7", "2015-05-28 12:31:56", "157.55.39.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("12407", "3", "2015-05-28 13:00:13", "142.4.214.124", "1034");
INSERT INTO `wp_gf_form_view` VALUES("12408", "3", "2015-05-28 14:03:18", "202.46.57.198", "59");
INSERT INTO `wp_gf_form_view` VALUES("12409", "3", "2015-05-28 15:01:49", "202.46.52.79", "37");
INSERT INTO `wp_gf_form_view` VALUES("12410", "3", "2015-05-28 16:00:21", "202.46.51.112", "107");
INSERT INTO `wp_gf_form_view` VALUES("12411", "3", "2015-05-28 17:00:42", "68.180.228.245", "201");
INSERT INTO `wp_gf_form_view` VALUES("12412", "1", "2015-05-28 17:06:47", "157.56.2.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("12413", "7", "2015-05-28 17:06:49", "157.56.2.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("12414", "2", "2015-05-28 17:07:10", "157.56.2.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("12415", "3", "2015-05-28 18:02:46", "66.249.79.133", "216");
INSERT INTO `wp_gf_form_view` VALUES("12416", "3", "2015-05-28 19:01:09", "66.249.79.120", "182");
INSERT INTO `wp_gf_form_view` VALUES("12417", "2", "2015-05-28 19:47:55", "89.105.194.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("12418", "3", "2015-05-28 20:06:12", "202.46.52.151", "86");
INSERT INTO `wp_gf_form_view` VALUES("12419", "3", "2015-05-28 21:04:47", "202.46.52.100", "98");
INSERT INTO `wp_gf_form_view` VALUES("12420", "3", "2015-05-28 22:15:02", "202.46.49.96", "76");
INSERT INTO `wp_gf_form_view` VALUES("12421", "6", "2015-05-28 22:43:42", "5.9.106.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("12422", "3", "2015-05-28 23:02:05", "202.46.51.11", "106");
INSERT INTO `wp_gf_form_view` VALUES("12423", "3", "2015-05-29 00:00:25", "68.180.228.245", "816");
INSERT INTO `wp_gf_form_view` VALUES("12424", "7", "2015-05-29 00:03:17", "194.181.107.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("12425", "2", "2015-05-29 00:03:46", "194.181.107.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("12426", "1", "2015-05-29 00:03:48", "194.181.107.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("12427", "5", "2015-05-29 00:20:37", "194.181.107.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("12428", "3", "2015-05-29 01:10:36", "202.46.49.191", "89");
INSERT INTO `wp_gf_form_view` VALUES("12429", "3", "2015-05-29 02:20:09", "68.180.228.245", "148");
INSERT INTO `wp_gf_form_view` VALUES("12430", "3", "2015-05-29 03:01:28", "157.55.39.44", "11390");
INSERT INTO `wp_gf_form_view` VALUES("12431", "6", "2015-05-29 03:28:10", "157.55.39.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("12432", "3", "2015-05-29 04:03:20", "66.249.67.146", "336");
INSERT INTO `wp_gf_form_view` VALUES("12433", "3", "2015-05-29 05:03:32", "66.249.67.146", "146");
INSERT INTO `wp_gf_form_view` VALUES("12434", "3", "2015-05-29 06:00:52", "66.249.67.133", "191");
INSERT INTO `wp_gf_form_view` VALUES("12435", "3", "2015-05-29 07:01:56", "202.46.50.153", "192");
INSERT INTO `wp_gf_form_view` VALUES("12436", "2", "2015-05-29 07:34:33", "23.95.241.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("12437", "3", "2015-05-29 08:00:20", "202.46.49.79", "153");
INSERT INTO `wp_gf_form_view` VALUES("12438", "3", "2015-05-29 09:04:20", "66.249.67.120", "2128");
INSERT INTO `wp_gf_form_view` VALUES("12439", "3", "2015-05-29 10:00:04", "188.40.109.147", "122");
INSERT INTO `wp_gf_form_view` VALUES("12440", "3", "2015-05-29 11:00:25", "188.165.15.32", "47");
INSERT INTO `wp_gf_form_view` VALUES("12441", "3", "2015-05-29 12:06:12", "202.46.53.192", "144");
INSERT INTO `wp_gf_form_view` VALUES("12442", "3", "2015-05-29 13:02:18", "66.249.67.146", "185");
INSERT INTO `wp_gf_form_view` VALUES("12443", "3", "2015-05-29 14:04:34", "66.249.67.120", "160");
INSERT INTO `wp_gf_form_view` VALUES("12444", "3", "2015-05-29 15:00:57", "66.249.79.146", "151");
INSERT INTO `wp_gf_form_view` VALUES("12445", "3", "2015-05-29 16:01:15", "66.249.79.120", "369");
INSERT INTO `wp_gf_form_view` VALUES("12446", "3", "2015-05-29 17:03:43", "66.249.79.146", "424");
INSERT INTO `wp_gf_form_view` VALUES("12447", "3", "2015-05-29 18:00:12", "68.180.228.245", "188");
INSERT INTO `wp_gf_form_view` VALUES("12448", "3", "2015-05-29 19:02:53", "66.249.79.133", "317");
INSERT INTO `wp_gf_form_view` VALUES("12449", "3", "2015-05-29 20:00:17", "136.243.5.87", "1323");
INSERT INTO `wp_gf_form_view` VALUES("12450", "3", "2015-05-29 21:00:16", "136.243.5.87", "3923");
INSERT INTO `wp_gf_form_view` VALUES("12451", "3", "2015-05-29 22:00:05", "157.55.39.195", "5165");
INSERT INTO `wp_gf_form_view` VALUES("12452", "6", "2015-05-29 22:08:28", "157.55.39.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("12453", "3", "2015-05-29 23:00:00", "157.55.39.181", "5576");
INSERT INTO `wp_gf_form_view` VALUES("12454", "7", "2015-05-29 23:01:38", "207.46.13.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("12455", "6", "2015-05-29 23:02:07", "157.55.39.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("12456", "3", "2015-05-30 00:00:00", "207.46.13.147", "6946");
INSERT INTO `wp_gf_form_view` VALUES("12457", "6", "2015-05-30 00:06:13", "157.55.39.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("12458", "1", "2015-05-30 00:39:29", "185.75.56.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("12459", "2", "2015-05-30 00:39:33", "185.75.56.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("12460", "7", "2015-05-30 00:39:52", "185.75.56.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("12461", "3", "2015-05-30 01:00:14", "157.55.39.181", "4024");
INSERT INTO `wp_gf_form_view` VALUES("12462", "3", "2015-05-30 02:00:03", "207.46.13.149", "6700");
INSERT INTO `wp_gf_form_view` VALUES("12463", "1", "2015-05-30 02:03:06", "24.108.129.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("12464", "6", "2015-05-30 02:12:17", "207.46.13.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("12465", "3", "2015-05-30 03:00:00", "207.46.13.147", "6278");
INSERT INTO `wp_gf_form_view` VALUES("12466", "6", "2015-05-30 03:20:10", "157.55.39.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("12467", "3", "2015-05-30 04:00:22", "207.46.13.147", "6002");
INSERT INTO `wp_gf_form_view` VALUES("12468", "6", "2015-05-30 04:09:35", "157.55.39.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("12469", "1", "2015-05-30 04:40:50", "50.7.192.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("12470", "7", "2015-05-30 04:43:45", "37.213.110.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("12471", "3", "2015-05-30 05:00:11", "157.55.39.195", "5727");
INSERT INTO `wp_gf_form_view` VALUES("12472", "6", "2015-05-30 05:05:29", "207.46.13.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("12473", "3", "2015-05-30 06:00:00", "207.46.13.149", "6491");
INSERT INTO `wp_gf_form_view` VALUES("12474", "6", "2015-05-30 06:32:27", "207.46.13.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("12475", "3", "2015-05-30 07:00:00", "207.46.13.147", "5987");
INSERT INTO `wp_gf_form_view` VALUES("12476", "6", "2015-05-30 07:13:36", "157.55.39.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("12477", "3", "2015-05-30 08:00:00", "157.55.39.195", "5789");
INSERT INTO `wp_gf_form_view` VALUES("12478", "3", "2015-05-30 09:00:00", "157.55.39.184", "4893");
INSERT INTO `wp_gf_form_view` VALUES("12479", "3", "2015-05-30 10:00:03", "157.55.39.195", "6374");
INSERT INTO `wp_gf_form_view` VALUES("12480", "6", "2015-05-30 10:49:02", "157.55.39.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("12481", "3", "2015-05-30 11:00:00", "207.46.13.149", "5302");
INSERT INTO `wp_gf_form_view` VALUES("12482", "6", "2015-05-30 11:01:38", "207.46.13.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("12483", "3", "2015-05-30 12:00:33", "157.55.39.182", "4446");
INSERT INTO `wp_gf_form_view` VALUES("12484", "6", "2015-05-30 12:11:11", "207.46.13.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("12485", "3", "2015-05-30 13:00:00", "157.55.39.195", "5248");
INSERT INTO `wp_gf_form_view` VALUES("12486", "6", "2015-05-30 13:00:12", "157.55.39.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("12487", "3", "2015-05-30 14:00:12", "157.55.39.195", "6140");
INSERT INTO `wp_gf_form_view` VALUES("12488", "6", "2015-05-30 14:30:15", "66.249.79.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("12489", "3", "2015-05-30 15:00:00", "207.46.13.149", "9292");
INSERT INTO `wp_gf_form_view` VALUES("12490", "6", "2015-05-30 15:00:01", "207.46.13.149", "9");
INSERT INTO `wp_gf_form_view` VALUES("12491", "3", "2015-05-30 16:00:07", "207.46.13.149", "6839");
INSERT INTO `wp_gf_form_view` VALUES("12492", "6", "2015-05-30 16:26:04", "157.55.39.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("12493", "3", "2015-05-30 17:00:04", "157.55.39.181", "7307");
INSERT INTO `wp_gf_form_view` VALUES("12494", "6", "2015-05-30 17:01:34", "157.55.39.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("12495", "7", "2015-05-30 17:02:18", "176.31.126.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("12496", "2", "2015-05-30 17:02:47", "176.31.126.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("12497", "1", "2015-05-30 17:02:53", "176.31.126.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("12498", "5", "2015-05-30 17:07:05", "176.31.126.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("12499", "3", "2015-05-30 18:00:00", "207.46.13.147", "4017");
INSERT INTO `wp_gf_form_view` VALUES("12500", "3", "2015-05-30 19:00:15", "157.55.39.181", "4566");
INSERT INTO `wp_gf_form_view` VALUES("12501", "6", "2015-05-30 19:11:27", "207.46.13.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("12502", "1", "2015-05-30 19:47:14", "24.108.129.237", "2");
INSERT INTO `wp_gf_form_view` VALUES("12503", "3", "2015-05-30 20:00:00", "207.46.13.149", "7498");
INSERT INTO `wp_gf_form_view` VALUES("12504", "6", "2015-05-30 20:24:20", "157.55.39.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("12505", "3", "2015-05-30 21:00:00", "157.55.39.182", "6288");
INSERT INTO `wp_gf_form_view` VALUES("12506", "6", "2015-05-30 21:03:25", "207.46.13.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("12507", "3", "2015-05-30 22:00:21", "157.55.39.195", "4741");
INSERT INTO `wp_gf_form_view` VALUES("12508", "6", "2015-05-30 22:28:28", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12509", "3", "2015-05-30 23:00:02", "207.46.13.147", "6792");
INSERT INTO `wp_gf_form_view` VALUES("12510", "6", "2015-05-30 23:12:17", "207.46.13.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("12511", "3", "2015-05-31 00:00:01", "157.55.39.181", "5619");
INSERT INTO `wp_gf_form_view` VALUES("12512", "6", "2015-05-31 00:04:50", "207.46.13.147", "3");
INSERT INTO `wp_gf_form_view` VALUES("12513", "2", "2015-05-31 00:29:32", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("12514", "3", "2015-05-31 01:00:13", "157.55.39.195", "3739");
INSERT INTO `wp_gf_form_view` VALUES("12515", "2", "2015-05-31 01:10:52", "36.33.242.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("12516", "3", "2015-05-31 02:00:05", "157.55.39.181", "4214");
INSERT INTO `wp_gf_form_view` VALUES("12517", "3", "2015-05-31 03:00:10", "157.55.39.195", "3756");
INSERT INTO `wp_gf_form_view` VALUES("12518", "6", "2015-05-31 03:02:10", "157.55.39.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("12519", "3", "2015-05-31 04:00:15", "157.55.39.195", "1819");
INSERT INTO `wp_gf_form_view` VALUES("12520", "3", "2015-05-31 05:00:10", "207.46.13.149", "4034");
INSERT INTO `wp_gf_form_view` VALUES("12521", "6", "2015-05-31 05:44:16", "157.55.39.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("12522", "3", "2015-05-31 06:00:01", "207.46.13.149", "5970");
INSERT INTO `wp_gf_form_view` VALUES("12523", "6", "2015-05-31 06:21:39", "207.46.13.147", "3");
INSERT INTO `wp_gf_form_view` VALUES("12524", "3", "2015-05-31 07:00:00", "207.46.13.149", "8965");
INSERT INTO `wp_gf_form_view` VALUES("12525", "3", "2015-05-31 07:00:00", "207.46.13.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("12526", "7", "2015-05-31 07:13:13", "151.80.31.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("12527", "3", "2015-05-31 08:00:00", "207.46.13.149", "7114");
INSERT INTO `wp_gf_form_view` VALUES("12528", "6", "2015-05-31 08:11:40", "157.55.39.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("12529", "7", "2015-05-31 08:58:18", "191.238.33.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("12530", "2", "2015-05-31 08:58:43", "191.238.33.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("12531", "1", "2015-05-31 08:58:49", "191.238.33.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("12532", "3", "2015-05-31 09:00:01", "207.46.13.149", "5237");
INSERT INTO `wp_gf_form_view` VALUES("12533", "6", "2015-05-31 09:29:02", "157.55.39.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("12534", "3", "2015-05-31 10:00:01", "207.46.13.147", "2446");
INSERT INTO `wp_gf_form_view` VALUES("12535", "6", "2015-05-31 10:13:48", "207.46.13.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("12536", "3", "2015-05-31 11:00:05", "207.46.13.149", "6011");
INSERT INTO `wp_gf_form_view` VALUES("12537", "6", "2015-05-31 11:29:14", "207.46.13.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("12538", "3", "2015-05-31 12:00:00", "207.46.13.149", "5086");
INSERT INTO `wp_gf_form_view` VALUES("12539", "6", "2015-05-31 12:05:42", "207.46.13.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("12540", "3", "2015-05-31 13:00:00", "157.55.39.181", "5815");
INSERT INTO `wp_gf_form_view` VALUES("12541", "7", "2015-05-31 13:13:54", "197.242.98.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("12542", "2", "2015-05-31 13:14:01", "197.242.98.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("12543", "1", "2015-05-31 13:14:02", "197.242.98.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("12544", "6", "2015-05-31 13:19:53", "157.55.39.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("12545", "3", "2015-05-31 14:00:00", "68.180.228.245", "4784");
INSERT INTO `wp_gf_form_view` VALUES("12546", "6", "2015-05-31 14:02:06", "207.46.13.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("12547", "3", "2015-05-31 15:00:00", "157.55.39.181", "6733");
INSERT INTO `wp_gf_form_view` VALUES("12548", "6", "2015-05-31 15:23:09", "157.55.39.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("12549", "3", "2015-05-31 16:00:17", "66.249.79.133", "7168");
INSERT INTO `wp_gf_form_view` VALUES("12550", "6", "2015-05-31 16:12:17", "207.46.13.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("12551", "3", "2015-05-31 17:00:10", "157.55.39.195", "7080");
INSERT INTO `wp_gf_form_view` VALUES("12552", "6", "2015-05-31 17:17:00", "157.55.39.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("12553", "3", "2015-05-31 18:00:01", "157.55.39.195", "6360");
INSERT INTO `wp_gf_form_view` VALUES("12554", "2", "2015-05-31 18:04:56", "178.137.93.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("12555", "6", "2015-05-31 18:06:53", "157.55.39.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("12556", "3", "2015-05-31 19:00:05", "207.46.13.149", "9149");
INSERT INTO `wp_gf_form_view` VALUES("12557", "6", "2015-05-31 19:05:46", "157.55.39.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("12558", "3", "2015-05-31 20:00:01", "66.249.79.133", "7655");
INSERT INTO `wp_gf_form_view` VALUES("12559", "6", "2015-05-31 20:19:23", "207.46.13.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("12560", "3", "2015-05-31 21:00:14", "207.46.13.147", "7488");
INSERT INTO `wp_gf_form_view` VALUES("12561", "6", "2015-05-31 21:14:38", "157.55.39.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("12562", "3", "2015-05-31 22:00:00", "157.55.39.181", "4000");
INSERT INTO `wp_gf_form_view` VALUES("12563", "6", "2015-05-31 22:00:29", "207.46.13.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("12564", "3", "2015-05-31 23:00:04", "207.46.13.147", "2734");
INSERT INTO `wp_gf_form_view` VALUES("12565", "6", "2015-05-31 23:56:06", "207.46.13.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("12566", "3", "2015-06-01 00:00:08", "66.249.79.120", "3261");
INSERT INTO `wp_gf_form_view` VALUES("12567", "2", "2015-06-01 00:19:15", "37.57.231.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("12568", "3", "2015-06-01 01:00:03", "66.249.79.146", "5006");
INSERT INTO `wp_gf_form_view` VALUES("12569", "6", "2015-06-01 01:57:26", "157.55.39.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("12570", "3", "2015-06-01 02:00:00", "66.249.79.133", "7263");
INSERT INTO `wp_gf_form_view` VALUES("12571", "6", "2015-06-01 02:57:27", "157.55.39.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("12572", "3", "2015-06-01 03:00:06", "157.55.39.182", "3903");
INSERT INTO `wp_gf_form_view` VALUES("12573", "6", "2015-06-01 03:01:01", "157.55.39.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("12574", "3", "2015-06-01 04:03:21", "66.249.79.120", "193");
INSERT INTO `wp_gf_form_view` VALUES("12575", "3", "2015-06-01 05:01:46", "157.55.39.181", "200");
INSERT INTO `wp_gf_form_view` VALUES("12576", "3", "2015-06-01 06:01:11", "66.249.67.133", "670");
INSERT INTO `wp_gf_form_view` VALUES("12577", "6", "2015-06-01 06:43:11", "207.46.13.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("12578", "1", "2015-06-01 06:58:07", "104.245.98.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("12579", "3", "2015-06-01 07:01:22", "68.180.228.245", "459");
INSERT INTO `wp_gf_form_view` VALUES("12580", "3", "2015-06-01 08:00:57", "157.55.39.195", "873");
INSERT INTO `wp_gf_form_view` VALUES("12581", "3", "2015-06-01 09:00:05", "66.249.67.120", "500");
INSERT INTO `wp_gf_form_view` VALUES("12582", "6", "2015-06-01 09:44:13", "207.46.13.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("12583", "3", "2015-06-01 10:01:23", "66.249.67.133", "214");
INSERT INTO `wp_gf_form_view` VALUES("12584", "3", "2015-06-01 11:00:37", "66.249.67.120", "543");
INSERT INTO `wp_gf_form_view` VALUES("12585", "3", "2015-06-01 12:00:13", "198.27.82.152", "2361");
INSERT INTO `wp_gf_form_view` VALUES("12586", "3", "2015-06-01 13:00:02", "198.27.82.152", "772");
INSERT INTO `wp_gf_form_view` VALUES("12587", "6", "2015-06-01 13:13:47", "198.27.82.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("12588", "3", "2015-06-01 14:00:05", "66.249.79.133", "230");
INSERT INTO `wp_gf_form_view` VALUES("12589", "5", "2015-06-01 14:26:27", "100.43.85.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("12590", "3", "2015-06-01 15:02:47", "66.249.79.146", "344");
INSERT INTO `wp_gf_form_view` VALUES("12591", "3", "2015-06-01 16:01:13", "66.249.79.133", "321");
INSERT INTO `wp_gf_form_view` VALUES("12592", "3", "2015-06-01 17:01:16", "66.249.79.133", "321");
INSERT INTO `wp_gf_form_view` VALUES("12593", "1", "2015-06-01 17:07:14", "221.237.17.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("12594", "3", "2015-06-01 18:02:00", "66.249.79.133", "185");
INSERT INTO `wp_gf_form_view` VALUES("12595", "1", "2015-06-01 18:12:18", "104.245.98.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("12596", "3", "2015-06-01 19:01:30", "66.249.79.146", "185");
INSERT INTO `wp_gf_form_view` VALUES("12597", "3", "2015-06-01 20:01:55", "66.249.79.146", "358");
INSERT INTO `wp_gf_form_view` VALUES("12598", "1", "2015-06-01 20:05:51", "205.144.165.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("12599", "3", "2015-06-01 21:00:27", "66.249.79.146", "337");
INSERT INTO `wp_gf_form_view` VALUES("12600", "1", "2015-06-01 21:32:46", "216.232.157.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("12601", "3", "2015-06-01 22:02:01", "66.249.79.133", "155");
INSERT INTO `wp_gf_form_view` VALUES("12602", "3", "2015-06-01 23:02:25", "66.249.79.133", "262");
INSERT INTO `wp_gf_form_view` VALUES("12603", "3", "2015-06-02 00:00:18", "66.249.79.133", "266");
INSERT INTO `wp_gf_form_view` VALUES("12604", "3", "2015-06-02 01:00:42", "66.249.79.146", "512");
INSERT INTO `wp_gf_form_view` VALUES("12605", "7", "2015-06-02 01:54:14", "91.142.209.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("12606", "1", "2015-06-02 01:54:40", "91.142.209.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("12607", "2", "2015-06-02 01:54:53", "91.142.209.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("12608", "3", "2015-06-02 02:00:15", "24.68.45.213", "140");
INSERT INTO `wp_gf_form_view` VALUES("12609", "2", "2015-06-02 02:34:09", "24.108.88.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("12610", "3", "2015-06-02 03:04:01", "66.249.79.146", "178");
INSERT INTO `wp_gf_form_view` VALUES("12611", "3", "2015-06-02 04:00:37", "24.68.36.198", "728");
INSERT INTO `wp_gf_form_view` VALUES("12612", "7", "2015-06-02 04:55:11", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("12613", "5", "2015-06-02 04:55:22", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("12614", "2", "2015-06-02 04:55:49", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("12615", "3", "2015-06-02 05:02:18", "66.249.79.133", "5777");
INSERT INTO `wp_gf_form_view` VALUES("12616", "6", "2015-06-02 05:52:21", "207.46.13.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("12617", "3", "2015-06-02 06:00:11", "66.249.79.133", "200");
INSERT INTO `wp_gf_form_view` VALUES("12618", "3", "2015-06-02 07:00:35", "66.249.79.146", "201");
INSERT INTO `wp_gf_form_view` VALUES("12619", "3", "2015-06-02 08:06:38", "66.249.79.120", "128");
INSERT INTO `wp_gf_form_view` VALUES("12620", "3", "2015-06-02 09:15:35", "68.180.228.245", "24");
INSERT INTO `wp_gf_form_view` VALUES("12621", "3", "2015-06-02 10:41:51", "66.249.79.146", "64");
INSERT INTO `wp_gf_form_view` VALUES("12622", "3", "2015-06-02 11:03:47", "66.249.79.133", "145");
INSERT INTO `wp_gf_form_view` VALUES("12623", "3", "2015-06-02 12:01:33", "66.249.79.133", "1774");
INSERT INTO `wp_gf_form_view` VALUES("12624", "3", "2015-06-02 13:01:33", "66.249.79.120", "238");
INSERT INTO `wp_gf_form_view` VALUES("12625", "7", "2015-06-02 13:38:33", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12626", "3", "2015-06-02 14:06:54", "66.249.79.120", "286");
INSERT INTO `wp_gf_form_view` VALUES("12627", "3", "2015-06-02 15:00:48", "66.249.79.120", "244");
INSERT INTO `wp_gf_form_view` VALUES("12628", "3", "2015-06-02 16:00:56", "66.249.79.120", "177");
INSERT INTO `wp_gf_form_view` VALUES("12629", "1", "2015-06-02 16:15:05", "221.237.17.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("12630", "6", "2015-06-02 16:51:51", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12631", "3", "2015-06-02 17:01:26", "66.249.79.146", "313");
INSERT INTO `wp_gf_form_view` VALUES("12632", "3", "2015-06-02 18:07:15", "66.249.79.133", "502");
INSERT INTO `wp_gf_form_view` VALUES("12633", "7", "2015-06-02 18:44:49", "162.253.145.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("12634", "2", "2015-06-02 18:44:53", "162.253.145.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("12635", "1", "2015-06-02 18:44:53", "162.253.145.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("12636", "3", "2015-06-02 19:03:36", "217.69.133.229", "144");
INSERT INTO `wp_gf_form_view` VALUES("12637", "3", "2015-06-02 20:00:38", "66.249.79.133", "339");
INSERT INTO `wp_gf_form_view` VALUES("12638", "3", "2015-06-02 21:00:43", "66.249.79.133", "561");
INSERT INTO `wp_gf_form_view` VALUES("12639", "6", "2015-06-02 21:40:50", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("12640", "3", "2015-06-02 22:00:06", "198.27.82.147", "939");
INSERT INTO `wp_gf_form_view` VALUES("12641", "3", "2015-06-02 23:00:02", "66.249.79.120", "232");
INSERT INTO `wp_gf_form_view` VALUES("12642", "3", "2015-06-03 00:00:48", "66.249.79.120", "1144");
INSERT INTO `wp_gf_form_view` VALUES("12643", "3", "2015-06-03 01:00:54", "66.249.79.133", "57");
INSERT INTO `wp_gf_form_view` VALUES("12644", "3", "2015-06-03 02:00:37", "66.249.79.120", "1024");
INSERT INTO `wp_gf_form_view` VALUES("12645", "6", "2015-06-03 02:53:20", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("12646", "3", "2015-06-03 03:00:45", "207.46.13.30", "471");
INSERT INTO `wp_gf_form_view` VALUES("12647", "3", "2015-06-03 04:20:24", "67.2.86.50", "63");
INSERT INTO `wp_gf_form_view` VALUES("12648", "3", "2015-06-03 05:11:24", "68.180.228.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("12649", "3", "2015-06-03 06:05:00", "217.69.133.233", "42");
INSERT INTO `wp_gf_form_view` VALUES("12650", "3", "2015-06-03 07:05:59", "68.180.228.245", "17");
INSERT INTO `wp_gf_form_view` VALUES("12651", "3", "2015-06-03 08:19:16", "24.68.118.31", "48");
INSERT INTO `wp_gf_form_view` VALUES("12652", "1", "2015-06-03 08:21:28", "24.68.118.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("12653", "3", "2015-06-03 09:26:24", "37.57.231.213", "17");
INSERT INTO `wp_gf_form_view` VALUES("12654", "1", "2015-06-03 10:24:31", "104.193.10.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("12655", "3", "2015-06-03 10:24:31", "104.193.10.49", "92");
INSERT INTO `wp_gf_form_view` VALUES("12656", "3", "2015-06-03 11:28:22", "66.249.79.120", "8");
INSERT INTO `wp_gf_form_view` VALUES("12657", "3", "2015-06-03 12:31:14", "104.237.150.212", "93");
INSERT INTO `wp_gf_form_view` VALUES("12658", "3", "2015-06-03 13:02:50", "66.249.79.146", "172");
INSERT INTO `wp_gf_form_view` VALUES("12659", "1", "2015-06-03 14:05:45", "104.193.10.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("12660", "3", "2015-06-03 14:05:47", "104.193.10.51", "217");
INSERT INTO `wp_gf_form_view` VALUES("12661", "3", "2015-06-03 15:01:40", "68.180.228.245", "161");
INSERT INTO `wp_gf_form_view` VALUES("12662", "3", "2015-06-03 16:06:19", "66.249.79.133", "138");
INSERT INTO `wp_gf_form_view` VALUES("12663", "3", "2015-06-03 17:00:54", "66.249.79.146", "237");
INSERT INTO `wp_gf_form_view` VALUES("12664", "1", "2015-06-03 17:38:23", "184.69.177.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("12665", "3", "2015-06-03 18:00:24", "96.50.93.42", "592");
INSERT INTO `wp_gf_form_view` VALUES("12666", "7", "2015-06-03 18:54:33", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("12667", "3", "2015-06-03 19:17:47", "207.228.78.23", "22");
INSERT INTO `wp_gf_form_view` VALUES("12668", "3", "2015-06-03 20:29:19", "217.69.133.233", "75");
INSERT INTO `wp_gf_form_view` VALUES("12669", "3", "2015-06-03 21:08:25", "207.46.13.114", "1938");
INSERT INTO `wp_gf_form_view` VALUES("12670", "6", "2015-06-03 21:10:58", "207.46.13.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("12671", "1", "2015-06-03 21:20:18", "104.193.10.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("12672", "6", "2015-06-03 22:05:18", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("12673", "3", "2015-06-03 22:05:19", "217.69.133.227", "24");
INSERT INTO `wp_gf_form_view` VALUES("12674", "3", "2015-06-03 23:04:37", "68.180.228.245", "264");
INSERT INTO `wp_gf_form_view` VALUES("12675", "3", "2015-06-04 00:12:13", "96.54.170.31", "64");
INSERT INTO `wp_gf_form_view` VALUES("12676", "3", "2015-06-04 01:13:55", "220.181.108.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("12677", "3", "2015-06-04 02:03:34", "91.142.209.186", "202");
INSERT INTO `wp_gf_form_view` VALUES("12678", "7", "2015-06-04 02:04:26", "91.142.209.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("12679", "1", "2015-06-04 02:04:46", "91.142.209.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("12680", "2", "2015-06-04 02:04:53", "91.142.209.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("12681", "3", "2015-06-04 03:01:38", "151.80.31.151", "89");
INSERT INTO `wp_gf_form_view` VALUES("12682", "1", "2015-06-04 03:32:40", "24.69.50.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("12683", "2", "2015-06-04 03:36:52", "151.80.31.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("12684", "3", "2015-06-04 04:03:38", "174.1.22.18", "65");
INSERT INTO `wp_gf_form_view` VALUES("12685", "3", "2015-06-04 05:10:43", "50.68.48.210", "40");
INSERT INTO `wp_gf_form_view` VALUES("12686", "6", "2015-06-04 05:51:07", "207.46.13.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("12687", "3", "2015-06-04 06:03:38", "217.69.133.232", "42");
INSERT INTO `wp_gf_form_view` VALUES("12688", "3", "2015-06-04 07:39:54", "217.69.133.232", "322");
INSERT INTO `wp_gf_form_view` VALUES("12689", "3", "2015-06-04 08:12:25", "104.143.12.10", "33");
INSERT INTO `wp_gf_form_view` VALUES("12690", "3", "2015-06-04 09:16:51", "217.69.133.69", "15");
INSERT INTO `wp_gf_form_view` VALUES("12691", "3", "2015-06-04 09:16:51", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("12692", "2", "2015-06-04 10:02:56", "107.150.42.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("12693", "3", "2015-06-04 10:03:05", "107.150.42.34", "9");
INSERT INTO `wp_gf_form_view` VALUES("12694", "1", "2015-06-04 11:26:03", "54.153.96.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("12695", "3", "2015-06-04 11:26:06", "54.148.80.105", "40");
INSERT INTO `wp_gf_form_view` VALUES("12696", "3", "2015-06-04 12:26:50", "217.69.133.231", "17");
INSERT INTO `wp_gf_form_view` VALUES("12697", "3", "2015-06-04 13:48:57", "144.173.28.149", "78");
INSERT INTO `wp_gf_form_view` VALUES("12698", "3", "2015-06-04 14:00:11", "144.173.28.149", "81");
INSERT INTO `wp_gf_form_view` VALUES("12699", "1", "2015-06-04 14:02:19", "144.173.28.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("12700", "3", "2015-06-04 15:40:04", "217.69.133.230", "9");
INSERT INTO `wp_gf_form_view` VALUES("12701", "3", "2015-06-04 16:00:14", "45.59.22.11", "49");
INSERT INTO `wp_gf_form_view` VALUES("12702", "3", "2015-06-04 17:12:03", "96.50.93.42", "59");
INSERT INTO `wp_gf_form_view` VALUES("12703", "3", "2015-06-04 18:05:03", "198.168.138.78", "52");
INSERT INTO `wp_gf_form_view` VALUES("12704", "7", "2015-06-04 18:06:13", "198.168.138.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("12705", "3", "2015-06-04 19:55:17", "188.154.143.55", "32");
INSERT INTO `wp_gf_form_view` VALUES("12706", "3", "2015-06-04 20:24:14", "68.180.228.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("12707", "2", "2015-06-04 21:15:09", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12708", "3", "2015-06-04 21:15:10", "68.180.228.245", "41");
INSERT INTO `wp_gf_form_view` VALUES("12709", "3", "2015-06-04 22:06:05", "207.46.13.114", "64");
INSERT INTO `wp_gf_form_view` VALUES("12710", "3", "2015-06-04 23:01:57", "184.69.1.226", "17");
INSERT INTO `wp_gf_form_view` VALUES("12711", "3", "2015-06-05 01:52:39", "91.200.12.65", "18");
INSERT INTO `wp_gf_form_view` VALUES("12712", "3", "2015-06-05 02:02:48", "37.133.217.210", "225");
INSERT INTO `wp_gf_form_view` VALUES("12713", "7", "2015-06-05 02:03:48", "37.133.217.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("12714", "1", "2015-06-05 02:04:08", "37.133.217.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("12715", "2", "2015-06-05 02:04:17", "37.133.217.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("12716", "3", "2015-06-05 03:06:59", "207.46.13.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("12717", "3", "2015-06-05 04:15:15", "207.46.13.138", "16");
INSERT INTO `wp_gf_form_view` VALUES("12718", "3", "2015-06-05 05:13:30", "220.181.108.116", "32");
INSERT INTO `wp_gf_form_view` VALUES("12719", "2", "2015-06-05 05:47:36", "208.115.124.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12720", "3", "2015-06-05 06:04:44", "91.200.12.65", "26");
INSERT INTO `wp_gf_form_view` VALUES("12721", "7", "2015-06-05 06:40:46", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12722", "3", "2015-06-05 07:09:09", "207.46.13.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("12723", "3", "2015-06-05 08:47:18", "68.180.228.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("12724", "3", "2015-06-05 09:21:18", "186.154.203.45", "16");
INSERT INTO `wp_gf_form_view` VALUES("12725", "3", "2015-06-05 10:50:01", "68.180.228.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("12726", "3", "2015-06-05 11:03:22", "66.249.79.146", "25");
INSERT INTO `wp_gf_form_view` VALUES("12727", "3", "2015-06-05 12:13:45", "5.39.223.29", "200");
INSERT INTO `wp_gf_form_view` VALUES("12728", "7", "2015-06-05 12:18:20", "5.39.223.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("12729", "1", "2015-06-05 12:19:31", "5.39.223.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("12730", "2", "2015-06-05 12:19:53", "5.39.223.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("12731", "3", "2015-06-05 14:47:17", "136.243.17.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("12732", "3", "2015-06-05 15:49:07", "207.46.13.114", "16");
INSERT INTO `wp_gf_form_view` VALUES("12733", "3", "2015-06-05 16:21:33", "66.249.79.133", "39");
INSERT INTO `wp_gf_form_view` VALUES("12734", "3", "2015-06-05 16:21:33", "207.46.13.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("12735", "6", "2015-06-05 16:58:41", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12736", "3", "2015-06-05 17:03:29", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12737", "3", "2015-06-05 18:02:06", "75.156.34.154", "40");
INSERT INTO `wp_gf_form_view` VALUES("12738", "3", "2015-06-05 19:51:32", "151.80.31.154", "33");
INSERT INTO `wp_gf_form_view` VALUES("12739", "3", "2015-06-05 20:08:50", "151.80.31.154", "32");
INSERT INTO `wp_gf_form_view` VALUES("12740", "3", "2015-06-05 21:08:17", "151.80.31.154", "88");
INSERT INTO `wp_gf_form_view` VALUES("12741", "3", "2015-06-05 22:15:46", "207.46.13.138", "88");
INSERT INTO `wp_gf_form_view` VALUES("12742", "3", "2015-06-05 23:06:49", "151.80.31.154", "33");
INSERT INTO `wp_gf_form_view` VALUES("12743", "3", "2015-06-06 01:05:48", "68.180.228.245", "25");
INSERT INTO `wp_gf_form_view` VALUES("12744", "3", "2015-06-06 02:20:57", "96.50.64.163", "18");
INSERT INTO `wp_gf_form_view` VALUES("12745", "1", "2015-06-06 03:05:11", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12746", "3", "2015-06-06 03:05:13", "66.249.79.133", "32");
INSERT INTO `wp_gf_form_view` VALUES("12747", "3", "2015-06-06 04:01:22", "207.46.13.138", "40");
INSERT INTO `wp_gf_form_view` VALUES("12748", "3", "2015-06-06 05:05:56", "208.115.111.66", "17");
INSERT INTO `wp_gf_form_view` VALUES("12749", "3", "2015-06-06 06:33:33", "77.75.78.167", "8");
INSERT INTO `wp_gf_form_view` VALUES("12750", "3", "2015-06-06 09:04:32", "178.137.164.249", "16");
INSERT INTO `wp_gf_form_view` VALUES("12751", "3", "2015-06-06 10:08:46", "207.46.13.138", "16");
INSERT INTO `wp_gf_form_view` VALUES("12752", "3", "2015-06-06 11:35:15", "151.80.31.139", "8");
INSERT INTO `wp_gf_form_view` VALUES("12753", "3", "2015-06-06 12:31:02", "144.76.71.83", "112");
INSERT INTO `wp_gf_form_view` VALUES("12754", "1", "2015-06-06 12:56:12", "174.127.133.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("12755", "2", "2015-06-06 12:59:54", "174.127.133.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("12756", "3", "2015-06-06 13:02:19", "174.127.133.48", "161");
INSERT INTO `wp_gf_form_view` VALUES("12757", "7", "2015-06-06 13:05:21", "174.127.133.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("12758", "3", "2015-06-06 14:02:00", "207.46.13.114", "29");
INSERT INTO `wp_gf_form_view` VALUES("12759", "3", "2015-06-06 15:30:55", "108.180.49.91", "88");
INSERT INTO `wp_gf_form_view` VALUES("12760", "3", "2015-06-06 16:05:28", "68.180.228.245", "83");
INSERT INTO `wp_gf_form_view` VALUES("12761", "1", "2015-06-06 17:00:33", "174.127.133.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("12762", "3", "2015-06-06 17:00:33", "174.127.133.52", "101");
INSERT INTO `wp_gf_form_view` VALUES("12763", "3", "2015-06-06 18:58:28", "77.75.78.165", "8");
INSERT INTO `wp_gf_form_view` VALUES("12764", "3", "2015-06-06 19:07:24", "68.180.228.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("12765", "3", "2015-06-06 20:10:33", "77.75.78.165", "56");
INSERT INTO `wp_gf_form_view` VALUES("12766", "3", "2015-06-06 21:27:03", "216.232.155.96", "58");
INSERT INTO `wp_gf_form_view` VALUES("12767", "3", "2015-06-06 22:18:08", "220.181.108.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("12768", "1", "2015-06-06 23:16:52", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12769", "3", "2015-06-06 23:16:54", "68.180.228.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("12770", "3", "2015-06-07 00:00:52", "68.180.228.245", "16");
INSERT INTO `wp_gf_form_view` VALUES("12771", "3", "2015-06-07 02:47:24", "100.43.85.8", "7");
INSERT INTO `wp_gf_form_view` VALUES("12772", "3", "2015-06-07 03:59:02", "5.175.147.200", "7");
INSERT INTO `wp_gf_form_view` VALUES("12773", "3", "2015-06-07 04:57:56", "207.46.13.108", "7");
INSERT INTO `wp_gf_form_view` VALUES("12774", "3", "2015-06-07 07:39:58", "85.70.244.166", "7");
INSERT INTO `wp_gf_form_view` VALUES("12775", "2", "2015-06-07 09:31:11", "207.46.13.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("12776", "3", "2015-06-07 09:31:14", "207.46.13.138", "7");
INSERT INTO `wp_gf_form_view` VALUES("12777", "3", "2015-06-07 10:11:45", "207.46.13.108", "14");
INSERT INTO `wp_gf_form_view` VALUES("12778", "3", "2015-06-07 11:02:35", "91.200.12.19", "109");
INSERT INTO `wp_gf_form_view` VALUES("12779", "3", "2015-06-07 13:07:09", "151.80.31.139", "28");
INSERT INTO `wp_gf_form_view` VALUES("12780", "3", "2015-06-07 14:27:23", "95.37.36.155", "15");
INSERT INTO `wp_gf_form_view` VALUES("12781", "3", "2015-06-07 15:08:32", "68.180.228.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("12782", "3", "2015-06-07 16:02:57", "66.249.79.120", "7");
INSERT INTO `wp_gf_form_view` VALUES("12783", "3", "2015-06-07 17:43:26", "195.242.80.27", "7");
INSERT INTO `wp_gf_form_view` VALUES("12784", "3", "2015-06-07 18:04:23", "104.250.147.218", "50");
INSERT INTO `wp_gf_form_view` VALUES("12785", "7", "2015-06-07 18:04:27", "104.250.147.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("12786", "3", "2015-06-07 19:09:12", "37.24.55.192", "23");
INSERT INTO `wp_gf_form_view` VALUES("12787", "3", "2015-06-07 20:20:10", "68.180.228.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("12788", "3", "2015-06-07 21:58:04", "220.181.108.185", "7");
INSERT INTO `wp_gf_form_view` VALUES("12789", "3", "2015-06-07 22:02:43", "207.46.13.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("12790", "3", "2015-06-07 23:10:34", "216.232.155.208", "37");
INSERT INTO `wp_gf_form_view` VALUES("12791", "3", "2015-06-08 00:08:17", "207.46.13.108", "21");
INSERT INTO `wp_gf_form_view` VALUES("12792", "3", "2015-06-08 01:06:40", "192.227.207.139", "76");
INSERT INTO `wp_gf_form_view` VALUES("12793", "3", "2015-06-08 03:11:37", "100.43.85.8", "43");
INSERT INTO `wp_gf_form_view` VALUES("12794", "6", "2015-06-08 04:00:35", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12795", "3", "2015-06-08 04:00:35", "68.180.228.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("12796", "1", "2015-06-08 04:42:34", "91.200.12.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("12797", "3", "2015-06-08 05:40:06", "100.43.85.8", "15");
INSERT INTO `wp_gf_form_view` VALUES("12798", "3", "2015-06-08 06:08:06", "151.80.31.154", "106");
INSERT INTO `wp_gf_form_view` VALUES("12799", "3", "2015-06-08 07:06:42", "220.181.108.173", "21");
INSERT INTO `wp_gf_form_view` VALUES("12800", "3", "2015-06-08 08:11:30", "100.43.85.7", "21");
INSERT INTO `wp_gf_form_view` VALUES("12801", "3", "2015-06-08 09:04:12", "100.43.85.8", "21");
INSERT INTO `wp_gf_form_view` VALUES("12802", "3", "2015-06-08 10:01:00", "100.43.85.8", "21");
INSERT INTO `wp_gf_form_view` VALUES("12803", "3", "2015-06-08 11:34:03", "100.43.85.8", "15");
INSERT INTO `wp_gf_form_view` VALUES("12804", "3", "2015-06-08 12:00:28", "68.180.228.245", "21");
INSERT INTO `wp_gf_form_view` VALUES("12805", "3", "2015-06-08 13:11:30", "199.21.99.219", "8");
INSERT INTO `wp_gf_form_view` VALUES("12806", "3", "2015-06-08 14:09:44", "100.43.85.8", "7");
INSERT INTO `wp_gf_form_view` VALUES("12807", "3", "2015-06-08 16:36:31", "142.31.203.21", "15");
INSERT INTO `wp_gf_form_view` VALUES("12808", "3", "2015-06-08 17:10:40", "142.31.15.254", "59");
INSERT INTO `wp_gf_form_view` VALUES("12809", "1", "2015-06-08 17:15:35", "104.193.10.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("12810", "3", "2015-06-08 18:30:54", "96.54.174.155", "7");
INSERT INTO `wp_gf_form_view` VALUES("12811", "3", "2015-06-08 19:08:14", "94.249.242.85", "57");
INSERT INTO `wp_gf_form_view` VALUES("12812", "1", "2015-06-08 19:55:46", "66.207.205.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("12813", "3", "2015-06-08 20:23:50", "157.55.39.101", "7");
INSERT INTO `wp_gf_form_view` VALUES("12814", "3", "2015-06-08 21:02:26", "24.68.128.113", "192");
INSERT INTO `wp_gf_form_view` VALUES("12815", "3", "2015-06-08 23:11:04", "148.251.54.44", "22");
INSERT INTO `wp_gf_form_view` VALUES("12816", "3", "2015-06-09 00:10:00", "157.55.39.101", "15");
INSERT INTO `wp_gf_form_view` VALUES("12817", "3", "2015-06-09 01:12:10", "5.175.147.200", "15");
INSERT INTO `wp_gf_form_view` VALUES("12818", "3", "2015-06-09 02:19:03", "157.55.39.101", "35");
INSERT INTO `wp_gf_form_view` VALUES("12819", "3", "2015-06-09 03:17:11", "66.249.67.120", "21");
INSERT INTO `wp_gf_form_view` VALUES("12820", "3", "2015-06-09 04:00:40", "176.15.24.24", "100");
INSERT INTO `wp_gf_form_view` VALUES("12821", "3", "2015-06-09 05:04:32", "68.180.228.245", "14");
INSERT INTO `wp_gf_form_view` VALUES("12822", "3", "2015-06-09 06:24:33", "68.180.228.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("12823", "2", "2015-06-09 07:35:04", "78.189.238.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("12824", "3", "2015-06-09 07:35:10", "78.189.238.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("12825", "3", "2015-06-09 08:06:26", "75.154.232.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("12826", "3", "2015-06-09 09:04:47", "220.181.108.94", "7");
INSERT INTO `wp_gf_form_view` VALUES("12827", "3", "2015-06-09 12:02:10", "68.180.228.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("12828", "3", "2015-06-09 13:16:57", "24.68.128.113", "14");
INSERT INTO `wp_gf_form_view` VALUES("12829", "3", "2015-06-09 14:00:19", "202.46.50.97", "14");
INSERT INTO `wp_gf_form_view` VALUES("12830", "3", "2015-06-09 15:19:50", "24.68.128.113", "14");
INSERT INTO `wp_gf_form_view` VALUES("12831", "3", "2015-06-09 16:03:08", "24.68.25.67", "50");
INSERT INTO `wp_gf_form_view` VALUES("12832", "3", "2015-06-09 17:48:03", "68.180.228.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("12833", "3", "2015-06-09 18:00:56", "204.101.3.194", "123");
INSERT INTO `wp_gf_form_view` VALUES("12834", "3", "2015-06-09 19:00:29", "216.232.3.242", "57");
INSERT INTO `wp_gf_form_view` VALUES("12835", "1", "2015-06-09 19:10:15", "151.80.31.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("12836", "3", "2015-06-09 20:06:31", "96.50.101.128", "92");
INSERT INTO `wp_gf_form_view` VALUES("12837", "7", "2015-06-09 20:37:44", "151.80.31.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("12838", "3", "2015-06-09 21:28:00", "151.80.31.150", "10");
INSERT INTO `wp_gf_form_view` VALUES("12839", "3", "2015-06-09 22:00:04", "104.131.32.83", "128");
INSERT INTO `wp_gf_form_view` VALUES("12840", "1", "2015-06-09 22:00:04", "104.131.32.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("12841", "2", "2015-06-09 22:00:05", "104.131.32.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("12842", "3", "2015-06-09 23:11:05", "68.180.228.245", "106");
INSERT INTO `wp_gf_form_view` VALUES("12843", "2", "2015-06-10 00:30:42", "220.181.108.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("12844", "3", "2015-06-10 00:30:42", "220.181.108.166", "14");
INSERT INTO `wp_gf_form_view` VALUES("12845", "3", "2015-06-10 01:54:39", "157.55.39.101", "21");
INSERT INTO `wp_gf_form_view` VALUES("12846", "1", "2015-06-10 01:56:15", "220.181.108.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("12847", "3", "2015-06-10 02:25:24", "68.68.133.166", "21");
INSERT INTO `wp_gf_form_view` VALUES("12848", "3", "2015-06-10 03:03:35", "96.50.50.18", "56");
INSERT INTO `wp_gf_form_view` VALUES("12849", "3", "2015-06-10 04:30:30", "184.66.122.31", "30");
INSERT INTO `wp_gf_form_view` VALUES("12850", "3", "2015-06-10 06:47:34", "202.46.53.159", "56");
INSERT INTO `wp_gf_form_view` VALUES("12851", "3", "2015-06-10 07:11:03", "202.46.53.202", "32");
INSERT INTO `wp_gf_form_view` VALUES("12852", "3", "2015-06-10 08:28:52", "5.9.145.132", "7");
INSERT INTO `wp_gf_form_view` VALUES("12853", "3", "2015-06-10 09:25:31", "68.180.228.245", "14");
INSERT INTO `wp_gf_form_view` VALUES("12854", "7", "2015-06-10 10:10:59", "220.181.108.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("12855", "3", "2015-06-10 10:11:00", "220.181.108.152", "35");
INSERT INTO `wp_gf_form_view` VALUES("12856", "3", "2015-06-10 11:55:27", "188.165.15.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("12857", "3", "2015-06-10 12:20:47", "220.181.108.172", "22");
INSERT INTO `wp_gf_form_view` VALUES("12858", "3", "2015-06-10 13:37:26", "66.249.67.120", "15");
INSERT INTO `wp_gf_form_view` VALUES("12859", "3", "2015-06-10 14:03:46", "100.43.85.8", "30");
INSERT INTO `wp_gf_form_view` VALUES("12860", "3", "2015-06-10 15:12:56", "96.54.40.57", "7");
INSERT INTO `wp_gf_form_view` VALUES("12861", "3", "2015-06-10 16:42:30", "24.68.25.67", "14");
INSERT INTO `wp_gf_form_view` VALUES("12862", "3", "2015-06-10 17:03:09", "173.252.112.113", "141");
INSERT INTO `wp_gf_form_view` VALUES("12863", "3", "2015-06-10 18:47:11", "198.103.221.52", "66");
INSERT INTO `wp_gf_form_view` VALUES("12864", "3", "2015-06-10 19:11:29", "68.180.228.245", "46");
INSERT INTO `wp_gf_form_view` VALUES("12865", "3", "2015-06-10 20:01:54", "208.131.181.126", "61");
INSERT INTO `wp_gf_form_view` VALUES("12866", "7", "2015-06-10 20:59:41", "184.66.153.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("12867", "3", "2015-06-10 21:17:03", "188.165.15.231", "21");
INSERT INTO `wp_gf_form_view` VALUES("12868", "3", "2015-06-10 22:17:37", "68.180.228.245", "40");
INSERT INTO `wp_gf_form_view` VALUES("12869", "3", "2015-06-10 23:25:02", "64.180.190.243", "45");
INSERT INTO `wp_gf_form_view` VALUES("12870", "3", "2015-06-11 00:02:19", "77.75.77.32", "61");
INSERT INTO `wp_gf_form_view` VALUES("12871", "3", "2015-06-11 01:06:48", "202.46.50.87", "9");
INSERT INTO `wp_gf_form_view` VALUES("12872", "3", "2015-06-11 02:17:32", "66.249.67.133", "56");
INSERT INTO `wp_gf_form_view` VALUES("12873", "3", "2015-06-11 03:03:44", "202.46.52.17", "122");
INSERT INTO `wp_gf_form_view` VALUES("12874", "7", "2015-06-11 03:45:29", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("12875", "3", "2015-06-11 04:47:54", "154.20.4.178", "71");
INSERT INTO `wp_gf_form_view` VALUES("12876", "3", "2015-06-11 05:01:35", "64.180.191.237", "88");
INSERT INTO `wp_gf_form_view` VALUES("12877", "3", "2015-06-11 06:08:20", "68.180.228.245", "80");
INSERT INTO `wp_gf_form_view` VALUES("12878", "2", "2015-06-11 06:37:54", "37.187.142.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("12879", "1", "2015-06-11 06:37:56", "37.187.142.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("12880", "7", "2015-06-11 06:38:01", "37.187.142.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("12881", "3", "2015-06-11 07:07:24", "188.165.15.231", "56");
INSERT INTO `wp_gf_form_view` VALUES("12882", "3", "2015-06-11 08:00:32", "66.249.67.146", "72");
INSERT INTO `wp_gf_form_view` VALUES("12883", "2", "2015-06-11 08:08:44", "66.249.67.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12884", "5", "2015-06-11 09:02:53", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12885", "3", "2015-06-11 09:02:53", "68.180.228.245", "51");
INSERT INTO `wp_gf_form_view` VALUES("12886", "3", "2015-06-11 10:05:06", "220.181.108.147", "14");
INSERT INTO `wp_gf_form_view` VALUES("12887", "3", "2015-06-11 11:04:40", "68.180.228.245", "50");
INSERT INTO `wp_gf_form_view` VALUES("12888", "1", "2015-06-11 11:21:09", "104.255.69.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("12889", "3", "2015-06-11 12:00:11", "68.180.228.245", "43");
INSERT INTO `wp_gf_form_view` VALUES("12890", "3", "2015-06-11 13:12:41", "96.50.86.244", "32");
INSERT INTO `wp_gf_form_view` VALUES("12891", "3", "2015-06-11 14:20:28", "188.165.15.231", "85");
INSERT INTO `wp_gf_form_view` VALUES("12892", "3", "2015-06-11 15:21:52", "202.46.53.52", "23");
INSERT INTO `wp_gf_form_view` VALUES("12893", "3", "2015-06-11 16:34:39", "66.249.67.133", "14");
INSERT INTO `wp_gf_form_view` VALUES("12894", "3", "2015-06-11 17:08:19", "188.165.15.231", "42");
INSERT INTO `wp_gf_form_view` VALUES("12895", "3", "2015-06-11 18:51:42", "216.107.154.146", "190");
INSERT INTO `wp_gf_form_view` VALUES("12896", "7", "2015-06-11 18:52:24", "216.107.154.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12897", "1", "2015-06-11 18:52:36", "216.107.154.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12898", "2", "2015-06-11 18:52:43", "216.107.154.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("12899", "3", "2015-06-11 19:11:09", "184.66.161.212", "126");
INSERT INTO `wp_gf_form_view` VALUES("12900", "7", "2015-06-11 19:15:37", "172.245.222.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("12901", "1", "2015-06-11 19:16:07", "172.245.222.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("12902", "2", "2015-06-11 19:16:14", "172.245.222.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("12903", "3", "2015-06-11 20:16:02", "172.218.193.248", "44");
INSERT INTO `wp_gf_form_view` VALUES("12904", "3", "2015-06-11 21:10:16", "220.181.108.177", "7");
INSERT INTO `wp_gf_form_view` VALUES("12905", "3", "2015-06-11 22:07:19", "207.46.13.88", "28");
INSERT INTO `wp_gf_form_view` VALUES("12906", "3", "2015-06-11 23:53:18", "202.46.50.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("12907", "3", "2015-06-12 00:08:57", "184.66.96.244", "72");
INSERT INTO `wp_gf_form_view` VALUES("12908", "3", "2015-06-12 01:27:02", "202.46.55.133", "70");
INSERT INTO `wp_gf_form_view` VALUES("12909", "3", "2015-06-12 02:02:42", "202.46.49.76", "36");
INSERT INTO `wp_gf_form_view` VALUES("12910", "3", "2015-06-12 03:59:17", "202.46.48.200", "7");
INSERT INTO `wp_gf_form_view` VALUES("12911", "3", "2015-06-12 04:07:51", "66.249.67.146", "198");
INSERT INTO `wp_gf_form_view` VALUES("12912", "1", "2015-06-12 04:10:24", "183.14.113.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("12913", "2", "2015-06-12 04:10:24", "183.14.113.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("12914", "7", "2015-06-12 04:10:25", "183.14.113.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("12915", "3", "2015-06-12 05:33:11", "154.20.4.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("12916", "3", "2015-06-12 06:01:55", "207.46.13.83", "30");
INSERT INTO `wp_gf_form_view` VALUES("12917", "3", "2015-06-12 07:31:22", "100.43.90.12", "15");
INSERT INTO `wp_gf_form_view` VALUES("12918", "3", "2015-06-12 08:07:00", "100.43.85.7", "7");
INSERT INTO `wp_gf_form_view` VALUES("12919", "3", "2015-06-12 10:04:06", "157.55.39.236", "532");
INSERT INTO `wp_gf_form_view` VALUES("12920", "6", "2015-06-12 10:41:51", "66.249.67.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("12921", "3", "2015-06-12 11:02:15", "157.55.39.235", "99");
INSERT INTO `wp_gf_form_view` VALUES("12922", "1", "2015-06-12 11:03:25", "91.200.12.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("12923", "3", "2015-06-12 15:19:56", "220.181.108.88", "7");
INSERT INTO `wp_gf_form_view` VALUES("12924", "3", "2015-06-12 16:06:23", "68.180.228.245", "171");
INSERT INTO `wp_gf_form_view` VALUES("12925", "3", "2015-06-12 16:06:23", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12926", "3", "2015-06-12 16:06:23", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12927", "3", "2015-06-12 18:13:53", "84.200.172.114", "35");
INSERT INTO `wp_gf_form_view` VALUES("12928", "3", "2015-06-12 19:32:27", "37.187.133.113", "134");
INSERT INTO `wp_gf_form_view` VALUES("12929", "2", "2015-06-12 19:32:48", "37.187.133.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("12930", "1", "2015-06-12 19:32:51", "37.187.133.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("12931", "7", "2015-06-12 19:32:56", "37.187.133.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("12932", "3", "2015-06-12 20:11:29", "66.249.67.146", "77");
INSERT INTO `wp_gf_form_view` VALUES("12933", "3", "2015-06-12 22:00:16", "184.71.12.218", "71");
INSERT INTO `wp_gf_form_view` VALUES("12934", "3", "2015-06-13 00:29:16", "100.43.91.24", "48");
INSERT INTO `wp_gf_form_view` VALUES("12935", "3", "2015-06-13 01:09:24", "188.165.15.231", "136");
INSERT INTO `wp_gf_form_view` VALUES("12936", "3", "2015-06-13 02:11:11", "216.232.149.234", "88");
INSERT INTO `wp_gf_form_view` VALUES("12937", "1", "2015-06-13 02:35:41", "121.54.54.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("12938", "3", "2015-06-13 03:16:52", "100.43.85.8", "7");
INSERT INTO `wp_gf_form_view` VALUES("12939", "3", "2015-06-13 04:02:46", "157.55.39.123", "50");
INSERT INTO `wp_gf_form_view` VALUES("12940", "3", "2015-06-13 05:00:15", "157.55.39.235", "21");
INSERT INTO `wp_gf_form_view` VALUES("12941", "3", "2015-06-13 06:28:32", "157.55.39.123", "28");
INSERT INTO `wp_gf_form_view` VALUES("12942", "1", "2015-06-13 06:35:20", "208.115.124.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("12943", "6", "2015-06-13 07:00:35", "188.165.15.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("12944", "3", "2015-06-13 07:00:35", "188.165.15.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("12945", "3", "2015-06-13 08:04:01", "188.165.15.231", "28");
INSERT INTO `wp_gf_form_view` VALUES("12946", "2", "2015-06-13 08:10:10", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("12947", "3", "2015-06-13 09:31:41", "46.4.189.109", "14");
INSERT INTO `wp_gf_form_view` VALUES("12948", "3", "2015-06-13 10:37:06", "148.251.124.42", "14");
INSERT INTO `wp_gf_form_view` VALUES("12949", "3", "2015-06-13 12:27:35", "220.181.108.122", "21");
INSERT INTO `wp_gf_form_view` VALUES("12950", "3", "2015-06-13 13:42:30", "104.194.197.41", "44");
INSERT INTO `wp_gf_form_view` VALUES("12951", "3", "2015-06-13 14:09:05", "68.180.228.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("12952", "3", "2015-06-13 15:11:29", "66.249.67.133", "7");
INSERT INTO `wp_gf_form_view` VALUES("12953", "3", "2015-06-13 16:11:52", "220.181.108.141", "7");
INSERT INTO `wp_gf_form_view` VALUES("12954", "3", "2015-06-13 18:00:53", "100.43.90.12", "36");
INSERT INTO `wp_gf_form_view` VALUES("12955", "3", "2015-06-13 19:03:19", "104.207.69.181", "16");
INSERT INTO `wp_gf_form_view` VALUES("12956", "3", "2015-06-13 20:02:30", "220.181.108.160", "22");
INSERT INTO `wp_gf_form_view` VALUES("12957", "3", "2015-06-13 21:04:15", "207.46.13.86", "21");
INSERT INTO `wp_gf_form_view` VALUES("12958", "3", "2015-06-13 22:53:05", "66.249.67.133", "7");
INSERT INTO `wp_gf_form_view` VALUES("12959", "3", "2015-06-13 23:00:49", "66.249.67.146", "20");
INSERT INTO `wp_gf_form_view` VALUES("12960", "3", "2015-06-14 00:07:20", "66.249.67.133", "12");
INSERT INTO `wp_gf_form_view` VALUES("12961", "3", "2015-06-14 01:09:24", "207.46.13.128", "24");
INSERT INTO `wp_gf_form_view` VALUES("12962", "1", "2015-06-14 01:27:06", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("12963", "3", "2015-06-14 02:22:21", "66.249.67.120", "56");
INSERT INTO `wp_gf_form_view` VALUES("12964", "3", "2015-06-14 03:05:01", "188.165.15.231", "26");
INSERT INTO `wp_gf_form_view` VALUES("12965", "3", "2015-06-14 04:22:19", "144.76.153.198", "6");
INSERT INTO `wp_gf_form_view` VALUES("12966", "3", "2015-06-14 05:38:35", "66.249.67.120", "6");
INSERT INTO `wp_gf_form_view` VALUES("12967", "3", "2015-06-14 06:41:32", "5.9.94.207", "23");
INSERT INTO `wp_gf_form_view` VALUES("12968", "3", "2015-06-14 08:16:29", "220.181.108.122", "12");
INSERT INTO `wp_gf_form_view` VALUES("12969", "3", "2015-06-14 09:32:18", "157.55.39.255", "6");
INSERT INTO `wp_gf_form_view` VALUES("12970", "3", "2015-06-14 11:06:08", "66.249.67.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("12971", "3", "2015-06-14 12:00:14", "83.45.10.161", "50");
INSERT INTO `wp_gf_form_view` VALUES("12972", "3", "2015-06-14 13:27:14", "157.55.39.111", "18");
INSERT INTO `wp_gf_form_view` VALUES("12973", "6", "2015-06-14 15:05:21", "144.76.155.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("12974", "3", "2015-06-14 15:05:22", "144.76.155.8", "6");
INSERT INTO `wp_gf_form_view` VALUES("12975", "3", "2015-06-14 16:03:01", "62.210.125.157", "26");
INSERT INTO `wp_gf_form_view` VALUES("12976", "2", "2015-06-14 16:07:57", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("12977", "3", "2015-06-14 17:21:10", "66.249.67.120", "24");
INSERT INTO `wp_gf_form_view` VALUES("12978", "1", "2015-06-14 17:43:27", "208.115.124.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("12979", "3", "2015-06-14 18:29:11", "46.4.189.109", "12");
INSERT INTO `wp_gf_form_view` VALUES("12980", "3", "2015-06-14 19:26:56", "100.43.90.11", "24");
INSERT INTO `wp_gf_form_view` VALUES("12981", "3", "2015-06-14 20:50:56", "68.180.228.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("12982", "1", "2015-06-14 22:29:19", "151.80.31.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("12983", "3", "2015-06-14 22:29:21", "151.80.31.152", "24");
INSERT INTO `wp_gf_form_view` VALUES("12984", "3", "2015-06-14 23:11:31", "199.21.99.206", "14");
INSERT INTO `wp_gf_form_view` VALUES("12985", "3", "2015-06-15 00:22:02", "66.249.67.146", "18");
INSERT INTO `wp_gf_form_view` VALUES("12986", "3", "2015-06-15 01:09:17", "66.249.67.146", "37");
INSERT INTO `wp_gf_form_view` VALUES("12987", "3", "2015-06-15 02:01:48", "188.165.15.231", "24");
INSERT INTO `wp_gf_form_view` VALUES("12988", "3", "2015-06-15 03:09:52", "202.46.57.75", "24");
INSERT INTO `wp_gf_form_view` VALUES("12989", "3", "2015-06-15 04:01:16", "104.193.10.50", "24");
INSERT INTO `wp_gf_form_view` VALUES("12990", "3", "2015-06-15 05:04:19", "46.4.189.109", "13");
INSERT INTO `wp_gf_form_view` VALUES("12991", "1", "2015-06-15 06:03:58", "180.191.126.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("12992", "3", "2015-06-15 06:04:00", "180.191.126.13", "72");
INSERT INTO `wp_gf_form_view` VALUES("12993", "3", "2015-06-15 07:33:59", "77.75.77.36", "6");
INSERT INTO `wp_gf_form_view` VALUES("12994", "3", "2015-06-15 08:59:26", "188.165.15.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("12995", "3", "2015-06-15 09:00:17", "207.46.13.128", "18");
INSERT INTO `wp_gf_form_view` VALUES("12996", "2", "2015-06-15 10:22:35", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("12997", "3", "2015-06-15 10:22:37", "204.12.239.250", "6");
INSERT INTO `wp_gf_form_view` VALUES("12998", "3", "2015-06-15 11:50:31", "112.111.185.68", "6");
INSERT INTO `wp_gf_form_view` VALUES("12999", "3", "2015-06-15 14:18:01", "46.4.189.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("13000", "3", "2015-06-15 16:10:07", "142.104.240.37", "12");
INSERT INTO `wp_gf_form_view` VALUES("13001", "3", "2015-06-15 17:12:49", "68.180.228.245", "132");
INSERT INTO `wp_gf_form_view` VALUES("13002", "7", "2015-06-15 17:21:31", "67.86.112.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("13003", "1", "2015-06-15 17:21:40", "67.86.112.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("13004", "2", "2015-06-15 17:21:46", "67.86.112.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("13005", "3", "2015-06-15 18:18:19", "66.249.67.70", "56");
INSERT INTO `wp_gf_form_view` VALUES("13006", "7", "2015-06-15 18:48:54", "184.66.113.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("13007", "3", "2015-06-15 19:17:07", "88.105.9.120", "57");
INSERT INTO `wp_gf_form_view` VALUES("13008", "3", "2015-06-15 20:02:22", "142.36.222.21", "68");
INSERT INTO `wp_gf_form_view` VALUES("13009", "3", "2015-06-15 21:00:03", "144.76.71.83", "12");
INSERT INTO `wp_gf_form_view` VALUES("13010", "3", "2015-06-15 22:20:59", "24.108.132.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("13011", "6", "2015-06-15 22:40:09", "24.108.72.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("13012", "3", "2015-06-15 23:13:05", "188.165.15.84", "19");
INSERT INTO `wp_gf_form_view` VALUES("13013", "3", "2015-06-16 00:20:59", "68.180.228.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("13014", "3", "2015-06-16 01:27:16", "68.180.228.245", "13");
INSERT INTO `wp_gf_form_view` VALUES("13015", "3", "2015-06-16 02:22:35", "68.180.228.245", "241");
INSERT INTO `wp_gf_form_view` VALUES("13016", "7", "2015-06-16 02:30:58", "92.85.174.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("13017", "1", "2015-06-16 02:31:11", "92.85.174.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("13018", "2", "2015-06-16 02:31:21", "92.85.174.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("13019", "3", "2015-06-16 03:18:17", "199.217.117.207", "6");
INSERT INTO `wp_gf_form_view` VALUES("13020", "3", "2015-06-16 04:27:40", "184.66.16.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("13021", "3", "2015-06-16 05:20:09", "188.165.15.84", "25");
INSERT INTO `wp_gf_form_view` VALUES("13022", "3", "2015-06-16 06:00:49", "207.46.13.60", "79");
INSERT INTO `wp_gf_form_view` VALUES("13023", "2", "2015-06-16 06:42:14", "23.92.210.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("13024", "3", "2015-06-16 07:11:07", "202.46.53.64", "58");
INSERT INTO `wp_gf_form_view` VALUES("13025", "1", "2015-06-16 07:42:07", "196.196.32.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("13026", "3", "2015-06-16 08:09:48", "202.46.48.148", "89");
INSERT INTO `wp_gf_form_view` VALUES("13027", "1", "2015-06-16 08:42:37", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("13028", "2", "2015-06-16 08:42:44", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("13029", "7", "2015-06-16 08:42:51", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("13030", "3", "2015-06-16 09:01:41", "202.46.50.93", "58");
INSERT INTO `wp_gf_form_view` VALUES("13031", "7", "2015-06-16 09:20:03", "66.249.67.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("13032", "3", "2015-06-16 10:06:43", "202.46.58.209", "66");
INSERT INTO `wp_gf_form_view` VALUES("13033", "1", "2015-06-16 10:49:40", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13034", "3", "2015-06-16 11:05:19", "202.46.52.41", "30");
INSERT INTO `wp_gf_form_view` VALUES("13035", "3", "2015-06-16 12:07:18", "202.46.50.79", "41");
INSERT INTO `wp_gf_form_view` VALUES("13036", "3", "2015-06-16 13:17:59", "202.46.50.92", "43");
INSERT INTO `wp_gf_form_view` VALUES("13037", "3", "2015-06-16 14:04:22", "202.46.48.190", "143");
INSERT INTO `wp_gf_form_view` VALUES("13038", "3", "2015-06-16 15:02:53", "202.46.51.193", "42");
INSERT INTO `wp_gf_form_view` VALUES("13039", "3", "2015-06-16 16:01:26", "202.46.49.190", "75");
INSERT INTO `wp_gf_form_view` VALUES("13040", "6", "2015-06-16 16:52:09", "100.43.85.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("13041", "3", "2015-06-16 17:11:45", "202.46.55.65", "60");
INSERT INTO `wp_gf_form_view` VALUES("13042", "3", "2015-06-16 18:08:40", "204.101.3.194", "103");
INSERT INTO `wp_gf_form_view` VALUES("13043", "3", "2015-06-16 19:08:46", "202.46.48.137", "94");
INSERT INTO `wp_gf_form_view` VALUES("13044", "3", "2015-06-16 20:07:18", "202.46.53.153", "84");
INSERT INTO `wp_gf_form_view` VALUES("13045", "3", "2015-06-16 21:10:42", "91.121.141.219", "43");
INSERT INTO `wp_gf_form_view` VALUES("13046", "3", "2015-06-16 22:04:21", "202.46.58.95", "43");
INSERT INTO `wp_gf_form_view` VALUES("13047", "1", "2015-06-16 22:21:30", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("13048", "7", "2015-06-16 23:00:48", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("13049", "3", "2015-06-16 23:00:49", "68.180.228.245", "100");
INSERT INTO `wp_gf_form_view` VALUES("13050", "1", "2015-06-16 23:23:21", "195.154.250.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("13051", "3", "2015-06-17 00:01:25", "202.46.52.109", "113");
INSERT INTO `wp_gf_form_view` VALUES("13052", "1", "2015-06-17 00:34:31", "204.124.183.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("13053", "3", "2015-06-17 01:11:40", "202.46.48.140", "54");
INSERT INTO `wp_gf_form_view` VALUES("13054", "1", "2015-06-17 01:54:59", "208.115.124.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("13055", "3", "2015-06-17 02:10:12", "202.46.55.126", "49");
INSERT INTO `wp_gf_form_view` VALUES("13056", "3", "2015-06-17 03:08:46", "202.46.54.22", "37");
INSERT INTO `wp_gf_form_view` VALUES("13057", "3", "2015-06-17 04:07:18", "202.46.56.185", "74");
INSERT INTO `wp_gf_form_view` VALUES("13058", "3", "2015-06-17 05:05:49", "202.46.48.205", "36");
INSERT INTO `wp_gf_form_view` VALUES("13059", "3", "2015-06-17 06:04:21", "202.46.50.123", "54");
INSERT INTO `wp_gf_form_view` VALUES("13060", "3", "2015-06-17 07:08:59", "202.46.52.65", "69");
INSERT INTO `wp_gf_form_view` VALUES("13061", "3", "2015-06-17 08:07:32", "202.46.53.124", "50");
INSERT INTO `wp_gf_form_view` VALUES("13062", "3", "2015-06-17 09:06:04", "202.46.48.123", "31");
INSERT INTO `wp_gf_form_view` VALUES("13063", "2", "2015-06-17 09:45:16", "202.46.54.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("13064", "3", "2015-06-17 10:12:54", "202.46.48.83", "60");
INSERT INTO `wp_gf_form_view` VALUES("13065", "3", "2015-06-17 11:03:08", "202.46.51.139", "138");
INSERT INTO `wp_gf_form_view` VALUES("13066", "1", "2015-06-17 11:10:41", "93.92.217.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("13067", "2", "2015-06-17 11:10:47", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("13068", "7", "2015-06-17 11:10:54", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("13069", "3", "2015-06-17 12:01:44", "202.46.52.157", "54");
INSERT INTO `wp_gf_form_view` VALUES("13070", "3", "2015-06-17 13:00:12", "202.46.51.12", "59");
INSERT INTO `wp_gf_form_view` VALUES("13071", "3", "2015-06-17 14:05:41", "188.165.15.84", "60");
INSERT INTO `wp_gf_form_view` VALUES("13072", "3", "2015-06-17 15:09:03", "202.46.52.143", "62");
INSERT INTO `wp_gf_form_view` VALUES("13073", "3", "2015-06-17 16:02:49", "184.71.12.214", "86");
INSERT INTO `wp_gf_form_view` VALUES("13074", "3", "2015-06-17 17:06:04", "202.46.48.122", "68");
INSERT INTO `wp_gf_form_view` VALUES("13075", "3", "2015-06-17 18:04:36", "202.46.48.11", "47");
INSERT INTO `wp_gf_form_view` VALUES("13076", "6", "2015-06-17 18:47:06", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("13077", "3", "2015-06-17 19:03:07", "202.46.51.204", "47");
INSERT INTO `wp_gf_form_view` VALUES("13078", "3", "2015-06-17 20:01:40", "202.46.54.141", "71");
INSERT INTO `wp_gf_form_view` VALUES("13079", "3", "2015-06-17 21:00:12", "202.46.52.142", "182");
INSERT INTO `wp_gf_form_view` VALUES("13080", "1", "2015-06-17 21:55:39", "45.62.55.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("13081", "3", "2015-06-17 22:10:27", "202.46.54.142", "79");
INSERT INTO `wp_gf_form_view` VALUES("13082", "1", "2015-06-17 22:39:58", "104.218.197.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("13083", "3", "2015-06-17 23:20:43", "202.46.52.72", "36");
INSERT INTO `wp_gf_form_view` VALUES("13084", "3", "2015-06-18 00:07:31", "202.46.50.153", "57");
INSERT INTO `wp_gf_form_view` VALUES("13085", "3", "2015-06-18 01:06:03", "202.46.48.13", "42");
INSERT INTO `wp_gf_form_view` VALUES("13086", "3", "2015-06-18 02:04:36", "202.46.57.177", "41");
INSERT INTO `wp_gf_form_view` VALUES("13087", "3", "2015-06-18 03:03:10", "202.46.49.198", "83");
INSERT INTO `wp_gf_form_view` VALUES("13088", "1", "2015-06-18 03:25:36", "45.61.46.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("13089", "3", "2015-06-18 04:01:40", "202.46.52.105", "56");
INSERT INTO `wp_gf_form_view` VALUES("13090", "3", "2015-06-18 05:00:12", "202.46.55.84", "131");
INSERT INTO `wp_gf_form_view` VALUES("13091", "3", "2015-06-18 06:10:31", "202.46.50.157", "66");
INSERT INTO `wp_gf_form_view` VALUES("13092", "3", "2015-06-18 07:03:41", "68.180.228.245", "107");
INSERT INTO `wp_gf_form_view` VALUES("13093", "1", "2015-06-18 07:12:52", "24.68.227.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("13094", "3", "2015-06-18 08:07:34", "202.46.56.38", "42");
INSERT INTO `wp_gf_form_view` VALUES("13095", "3", "2015-06-18 09:06:05", "202.46.55.126", "72");
INSERT INTO `wp_gf_form_view` VALUES("13096", "6", "2015-06-18 09:12:26", "93.186.202.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("13097", "3", "2015-06-18 10:04:35", "202.46.56.71", "44");
INSERT INTO `wp_gf_form_view` VALUES("13098", "3", "2015-06-18 11:03:08", "202.46.56.135", "53");
INSERT INTO `wp_gf_form_view` VALUES("13099", "6", "2015-06-18 11:20:17", "100.43.85.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("13100", "3", "2015-06-18 12:01:41", "202.46.50.135", "55");
INSERT INTO `wp_gf_form_view` VALUES("13101", "3", "2015-06-18 13:00:12", "202.46.50.14", "58");
INSERT INTO `wp_gf_form_view` VALUES("13102", "3", "2015-06-18 14:00:35", "24.114.27.79", "66");
INSERT INTO `wp_gf_form_view` VALUES("13103", "3", "2015-06-18 15:09:00", "202.46.55.152", "54");
INSERT INTO `wp_gf_form_view` VALUES("13104", "3", "2015-06-18 16:07:31", "202.46.56.130", "65");
INSERT INTO `wp_gf_form_view` VALUES("13105", "3", "2015-06-18 17:06:03", "202.46.57.123", "101");
INSERT INTO `wp_gf_form_view` VALUES("13106", "1", "2015-06-18 17:16:51", "45.61.37.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("13107", "3", "2015-06-18 18:04:38", "202.46.58.153", "36");
INSERT INTO `wp_gf_form_view` VALUES("13108", "3", "2015-06-18 19:14:51", "202.46.50.91", "36");
INSERT INTO `wp_gf_form_view` VALUES("13109", "3", "2015-06-18 20:01:39", "202.46.58.150", "55");
INSERT INTO `wp_gf_form_view` VALUES("13110", "3", "2015-06-18 21:00:11", "202.46.56.64", "59");
INSERT INTO `wp_gf_form_view` VALUES("13111", "3", "2015-06-18 22:04:08", "207.46.13.37", "55");
INSERT INTO `wp_gf_form_view` VALUES("13112", "3", "2015-06-18 23:09:01", "202.46.53.90", "65");
INSERT INTO `wp_gf_form_view` VALUES("13113", "1", "2015-06-18 23:47:23", "23.245.6.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("13114", "3", "2015-06-19 00:00:50", "117.177.243.42", "332");
INSERT INTO `wp_gf_form_view` VALUES("13115", "1", "2015-06-19 00:35:25", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("13116", "7", "2015-06-19 00:40:45", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("13117", "3", "2015-06-19 01:01:41", "157.55.39.251", "166");
INSERT INTO `wp_gf_form_view` VALUES("13118", "3", "2015-06-19 02:01:13", "207.46.13.37", "85");
INSERT INTO `wp_gf_form_view` VALUES("13119", "3", "2015-06-19 03:03:09", "202.46.52.167", "74");
INSERT INTO `wp_gf_form_view` VALUES("13120", "3", "2015-06-19 04:01:40", "202.46.51.175", "155");
INSERT INTO `wp_gf_form_view` VALUES("13121", "2", "2015-06-19 04:15:16", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("13122", "1", "2015-06-19 04:24:31", "45.61.46.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("13123", "5", "2015-06-19 04:53:41", "157.55.39.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("13124", "3", "2015-06-19 05:00:11", "202.46.53.142", "53");
INSERT INTO `wp_gf_form_view` VALUES("13125", "3", "2015-06-19 06:10:26", "202.46.51.191", "172");
INSERT INTO `wp_gf_form_view` VALUES("13126", "1", "2015-06-19 06:15:36", "45.62.55.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("13127", "2", "2015-06-19 06:53:55", "45.55.229.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("13128", "3", "2015-06-19 07:09:00", "202.46.55.147", "46");
INSERT INTO `wp_gf_form_view` VALUES("13129", "3", "2015-06-19 08:07:33", "202.46.50.121", "53");
INSERT INTO `wp_gf_form_view` VALUES("13130", "1", "2015-06-19 08:13:43", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("13131", "3", "2015-06-19 09:09:11", "207.46.13.124", "84");
INSERT INTO `wp_gf_form_view` VALUES("13132", "3", "2015-06-19 10:00:11", "207.46.13.37", "191");
INSERT INTO `wp_gf_form_view` VALUES("13133", "1", "2015-06-19 10:01:55", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("13134", "7", "2015-06-19 10:05:37", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("13135", "3", "2015-06-19 11:03:07", "202.46.54.31", "311");
INSERT INTO `wp_gf_form_view` VALUES("13136", "7", "2015-06-19 11:24:42", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("13137", "3", "2015-06-19 12:01:39", "202.46.55.139", "111");
INSERT INTO `wp_gf_form_view` VALUES("13138", "1", "2015-06-19 12:11:53", "45.61.46.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("13139", "3", "2015-06-19 13:00:14", "202.46.53.143", "89");
INSERT INTO `wp_gf_form_view` VALUES("13140", "1", "2015-06-19 14:04:27", "207.46.13.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("13141", "3", "2015-06-19 14:04:27", "207.46.13.124", "63");
INSERT INTO `wp_gf_form_view` VALUES("13142", "3", "2015-06-19 15:05:51", "157.55.39.84", "49");
INSERT INTO `wp_gf_form_view` VALUES("13143", "2", "2015-06-19 16:01:51", "208.115.124.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("13144", "3", "2015-06-19 16:01:53", "208.115.124.147", "48");
INSERT INTO `wp_gf_form_view` VALUES("13145", "3", "2015-06-19 17:06:02", "202.46.52.112", "75");
INSERT INTO `wp_gf_form_view` VALUES("13146", "3", "2015-06-19 18:04:35", "202.46.57.124", "55");
INSERT INTO `wp_gf_form_view` VALUES("13147", "3", "2015-06-19 19:03:06", "202.46.52.156", "56");
INSERT INTO `wp_gf_form_view` VALUES("13148", "3", "2015-06-19 20:01:39", "202.46.57.27", "61");
INSERT INTO `wp_gf_form_view` VALUES("13149", "3", "2015-06-19 21:00:13", "202.46.53.50", "60");
INSERT INTO `wp_gf_form_view` VALUES("13150", "3", "2015-06-19 22:01:20", "24.68.120.185", "58");
INSERT INTO `wp_gf_form_view` VALUES("13151", "3", "2015-06-19 23:08:58", "202.46.55.124", "54");
INSERT INTO `wp_gf_form_view` VALUES("13152", "3", "2015-06-20 00:07:30", "202.46.50.13", "58");
INSERT INTO `wp_gf_form_view` VALUES("13153", "3", "2015-06-20 01:02:12", "100.43.85.20", "75");
INSERT INTO `wp_gf_form_view` VALUES("13154", "3", "2015-06-20 02:04:34", "202.46.49.62", "32");
INSERT INTO `wp_gf_form_view` VALUES("13155", "3", "2015-06-20 03:03:08", "202.46.48.207", "44");
INSERT INTO `wp_gf_form_view` VALUES("13156", "3", "2015-06-20 04:01:40", "202.46.56.16", "52");
INSERT INTO `wp_gf_form_view` VALUES("13157", "1", "2015-06-20 05:06:32", "104.218.197.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("13158", "3", "2015-06-20 05:06:32", "104.218.197.235", "68");
INSERT INTO `wp_gf_form_view` VALUES("13159", "3", "2015-06-20 06:01:10", "188.165.15.84", "42");
INSERT INTO `wp_gf_form_view` VALUES("13160", "3", "2015-06-20 07:08:57", "202.46.50.92", "49");
INSERT INTO `wp_gf_form_view` VALUES("13161", "3", "2015-06-20 08:02:04", "100.43.85.16", "59");
INSERT INTO `wp_gf_form_view` VALUES("13162", "3", "2015-06-20 09:06:03", "202.46.53.110", "40");
INSERT INTO `wp_gf_form_view` VALUES("13163", "3", "2015-06-20 10:00:02", "157.55.39.167", "54");
INSERT INTO `wp_gf_form_view` VALUES("13164", "3", "2015-06-20 11:03:06", "202.46.56.11", "37");
INSERT INTO `wp_gf_form_view` VALUES("13165", "3", "2015-06-20 12:01:39", "202.46.57.164", "72");
INSERT INTO `wp_gf_form_view` VALUES("13166", "1", "2015-06-20 12:19:48", "45.61.37.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("13167", "3", "2015-06-20 13:00:11", "202.46.54.184", "78");
INSERT INTO `wp_gf_form_view` VALUES("13168", "1", "2015-06-20 13:12:52", "45.62.55.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("13169", "1", "2015-06-20 14:04:47", "104.218.197.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("13170", "3", "2015-06-20 14:04:48", "104.218.197.104", "162");
INSERT INTO `wp_gf_form_view` VALUES("13171", "3", "2015-06-20 15:08:58", "202.46.52.159", "73");
INSERT INTO `wp_gf_form_view` VALUES("13172", "1", "2015-06-20 15:41:20", "45.62.55.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("13173", "3", "2015-06-20 16:07:29", "202.46.58.181", "48");
INSERT INTO `wp_gf_form_view` VALUES("13174", "3", "2015-06-20 17:17:44", "202.46.51.81", "47");
INSERT INTO `wp_gf_form_view` VALUES("13175", "3", "2015-06-20 18:16:17", "202.46.48.202", "54");
INSERT INTO `wp_gf_form_view` VALUES("13176", "6", "2015-06-20 18:29:06", "5.9.112.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("13177", "3", "2015-06-20 19:03:06", "202.46.50.86", "34");
INSERT INTO `wp_gf_form_view` VALUES("13178", "3", "2015-06-20 20:01:38", "202.46.49.142", "77");
INSERT INTO `wp_gf_form_view` VALUES("13179", "1", "2015-06-20 20:07:00", "45.61.46.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("13180", "3", "2015-06-20 21:00:10", "202.46.50.74", "35");
INSERT INTO `wp_gf_form_view` VALUES("13181", "3", "2015-06-20 22:10:25", "202.46.55.140", "41");
INSERT INTO `wp_gf_form_view` VALUES("13182", "3", "2015-06-20 23:08:57", "202.46.58.150", "40");
INSERT INTO `wp_gf_form_view` VALUES("13183", "1", "2015-06-20 23:46:32", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("13184", "3", "2015-06-21 00:07:30", "202.46.51.202", "31");
INSERT INTO `wp_gf_form_view` VALUES("13185", "3", "2015-06-21 01:06:01", "202.46.56.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("13186", "3", "2015-06-21 02:04:34", "202.46.56.90", "57");
INSERT INTO `wp_gf_form_view` VALUES("13187", "1", "2015-06-21 02:30:46", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("13188", "3", "2015-06-21 03:03:06", "202.46.58.210", "50");
INSERT INTO `wp_gf_form_view` VALUES("13189", "3", "2015-06-21 04:01:39", "202.46.52.167", "25");
INSERT INTO `wp_gf_form_view` VALUES("13190", "3", "2015-06-21 05:00:10", "202.46.52.104", "61");
INSERT INTO `wp_gf_form_view` VALUES("13191", "1", "2015-06-21 06:01:12", "54.159.108.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("13192", "3", "2015-06-21 06:01:12", "54.159.108.14", "61");
INSERT INTO `wp_gf_form_view` VALUES("13193", "3", "2015-06-21 07:08:57", "202.46.51.192", "30");
INSERT INTO `wp_gf_form_view` VALUES("13194", "1", "2015-06-21 08:13:37", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("13195", "3", "2015-06-21 08:13:37", "178.19.111.187", "51");
INSERT INTO `wp_gf_form_view` VALUES("13196", "6", "2015-06-21 08:48:55", "157.55.39.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("13197", "3", "2015-06-21 09:06:02", "202.46.48.94", "62");
INSERT INTO `wp_gf_form_view` VALUES("13198", "1", "2015-06-21 09:09:38", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("13199", "3", "2015-06-21 10:04:33", "202.46.56.65", "35");
INSERT INTO `wp_gf_form_view` VALUES("13200", "3", "2015-06-21 11:03:07", "202.46.52.154", "157");
INSERT INTO `wp_gf_form_view` VALUES("13201", "2", "2015-06-21 11:58:22", "95.181.178.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("13202", "3", "2015-06-21 12:01:02", "104.143.27.235", "52");
INSERT INTO `wp_gf_form_view` VALUES("13203", "1", "2015-06-21 12:48:30", "202.46.58.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("13204", "3", "2015-06-21 13:00:12", "202.46.56.68", "65");
INSERT INTO `wp_gf_form_view` VALUES("13205", "1", "2015-06-21 13:07:19", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("13206", "3", "2015-06-21 14:10:26", "202.46.57.169", "58");
INSERT INTO `wp_gf_form_view` VALUES("13207", "3", "2015-06-21 15:08:58", "202.46.54.130", "45");
INSERT INTO `wp_gf_form_view` VALUES("13208", "1", "2015-06-21 15:50:15", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("13209", "3", "2015-06-21 16:07:30", "202.46.53.140", "45");
INSERT INTO `wp_gf_form_view` VALUES("13210", "3", "2015-06-21 17:06:02", "202.46.56.91", "41");
INSERT INTO `wp_gf_form_view` VALUES("13211", "1", "2015-06-21 17:52:53", "202.46.55.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("13212", "6", "2015-06-21 17:54:18", "144.76.155.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("13213", "3", "2015-06-21 18:04:34", "202.46.54.24", "40");
INSERT INTO `wp_gf_form_view` VALUES("13214", "3", "2015-06-21 19:03:07", "202.46.53.141", "51");
INSERT INTO `wp_gf_form_view` VALUES("13215", "1", "2015-06-21 19:17:49", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("13216", "3", "2015-06-21 20:13:22", "202.46.49.205", "30");
INSERT INTO `wp_gf_form_view` VALUES("13217", "3", "2015-06-21 21:00:10", "202.46.51.139", "40");
INSERT INTO `wp_gf_form_view` VALUES("13218", "3", "2015-06-21 22:10:24", "202.46.52.143", "50");
INSERT INTO `wp_gf_form_view` VALUES("13219", "3", "2015-06-21 23:01:01", "174.118.246.130", "47");
INSERT INTO `wp_gf_form_view` VALUES("13220", "3", "2015-06-22 00:00:45", "157.55.39.251", "25");
INSERT INTO `wp_gf_form_view` VALUES("13221", "3", "2015-06-22 01:06:01", "202.46.55.38", "35");
INSERT INTO `wp_gf_form_view` VALUES("13222", "3", "2015-06-22 02:01:01", "220.181.108.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("13223", "3", "2015-06-22 03:03:09", "202.46.53.53", "46");
INSERT INTO `wp_gf_form_view` VALUES("13224", "3", "2015-06-22 04:01:38", "202.46.56.200", "45");
INSERT INTO `wp_gf_form_view` VALUES("13225", "3", "2015-06-22 05:00:10", "202.46.49.209", "45");
INSERT INTO `wp_gf_form_view` VALUES("13226", "3", "2015-06-22 06:00:06", "157.55.39.194", "51");
INSERT INTO `wp_gf_form_view` VALUES("13227", "1", "2015-06-22 06:23:04", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("13228", "3", "2015-06-22 07:08:56", "202.46.53.143", "55");
INSERT INTO `wp_gf_form_view` VALUES("13229", "3", "2015-06-22 08:07:29", "202.46.55.84", "47");
INSERT INTO `wp_gf_form_view` VALUES("13230", "3", "2015-06-22 09:06:01", "202.46.50.199", "130");
INSERT INTO `wp_gf_form_view` VALUES("13231", "7", "2015-06-22 09:41:56", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("13232", "1", "2015-06-22 09:42:07", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("13233", "2", "2015-06-22 09:42:12", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("13234", "3", "2015-06-22 10:04:36", "202.46.49.191", "35");
INSERT INTO `wp_gf_form_view` VALUES("13235", "3", "2015-06-22 11:03:05", "202.46.53.53", "40");
INSERT INTO `wp_gf_form_view` VALUES("13236", "3", "2015-06-22 12:01:41", "202.46.58.51", "40");
INSERT INTO `wp_gf_form_view` VALUES("13237", "3", "2015-06-22 13:01:29", "68.180.228.245", "51");
INSERT INTO `wp_gf_form_view` VALUES("13238", "3", "2015-06-22 14:10:25", "202.46.48.200", "25");
INSERT INTO `wp_gf_form_view` VALUES("13239", "3", "2015-06-22 15:03:45", "157.55.39.188", "45");
INSERT INTO `wp_gf_form_view` VALUES("13240", "3", "2015-06-22 16:00:29", "5.9.94.207", "40");
INSERT INTO `wp_gf_form_view` VALUES("13241", "3", "2015-06-22 17:00:05", "68.180.228.245", "97");
INSERT INTO `wp_gf_form_view` VALUES("13242", "3", "2015-06-22 18:04:33", "202.46.54.17", "30");
INSERT INTO `wp_gf_form_view` VALUES("13243", "3", "2015-06-22 19:03:05", "202.46.56.208", "30");
INSERT INTO `wp_gf_form_view` VALUES("13244", "3", "2015-06-22 20:01:40", "202.46.55.122", "61");
INSERT INTO `wp_gf_form_view` VALUES("13245", "3", "2015-06-22 21:00:00", "24.108.100.17", "41");
INSERT INTO `wp_gf_form_view` VALUES("13246", "2", "2015-06-22 21:51:43", "184.69.1.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("13247", "3", "2015-06-22 22:10:24", "202.46.57.208", "25");
INSERT INTO `wp_gf_form_view` VALUES("13248", "3", "2015-06-22 23:08:56", "202.46.51.58", "36");
INSERT INTO `wp_gf_form_view` VALUES("13249", "3", "2015-06-23 00:02:26", "202.46.51.159", "892");
INSERT INTO `wp_gf_form_view` VALUES("13250", "1", "2015-06-23 00:05:50", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13251", "6", "2015-06-23 00:31:11", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13252", "7", "2015-06-23 00:32:56", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13253", "2", "2015-06-23 00:33:13", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13254", "5", "2015-06-23 00:34:40", "207.106.190.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13255", "3", "2015-06-23 01:06:04", "202.46.50.13", "45");
INSERT INTO `wp_gf_form_view` VALUES("13256", "3", "2015-06-23 02:04:33", "202.46.51.107", "47");
INSERT INTO `wp_gf_form_view` VALUES("13257", "3", "2015-06-23 03:03:05", "202.46.49.199", "40");
INSERT INTO `wp_gf_form_view` VALUES("13258", "3", "2015-06-23 04:01:38", "202.46.48.194", "35");
INSERT INTO `wp_gf_form_view` VALUES("13259", "3", "2015-06-23 05:00:14", "202.46.58.85", "45");
INSERT INTO `wp_gf_form_view` VALUES("13260", "3", "2015-06-23 06:10:24", "202.46.49.157", "41");
INSERT INTO `wp_gf_form_view` VALUES("13261", "3", "2015-06-23 07:00:25", "68.180.228.245", "77");
INSERT INTO `wp_gf_form_view` VALUES("13262", "1", "2015-06-23 07:53:52", "67.22.36.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("13263", "3", "2015-06-23 08:08:44", "188.165.15.127", "30");
INSERT INTO `wp_gf_form_view` VALUES("13264", "3", "2015-06-23 09:06:02", "202.46.49.115", "51");
INSERT INTO `wp_gf_form_view` VALUES("13265", "3", "2015-06-23 10:04:34", "202.46.49.95", "56");
INSERT INTO `wp_gf_form_view` VALUES("13266", "3", "2015-06-23 11:03:06", "202.46.51.30", "45");
INSERT INTO `wp_gf_form_view` VALUES("13267", "6", "2015-06-23 11:21:22", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("13268", "3", "2015-06-23 12:01:39", "202.46.52.69", "57");
INSERT INTO `wp_gf_form_view` VALUES("13269", "3", "2015-06-23 13:00:10", "202.46.52.179", "87");
INSERT INTO `wp_gf_form_view` VALUES("13270", "1", "2015-06-23 13:26:40", "24.108.6.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("13271", "3", "2015-06-23 14:38:42", "202.46.55.144", "32");
INSERT INTO `wp_gf_form_view` VALUES("13272", "3", "2015-06-23 15:03:08", "202.46.51.200", "46");
INSERT INTO `wp_gf_form_view` VALUES("13273", "3", "2015-06-23 16:01:40", "202.46.49.60", "74");
INSERT INTO `wp_gf_form_view` VALUES("13274", "3", "2015-06-23 17:00:13", "202.46.51.25", "35");
INSERT INTO `wp_gf_form_view` VALUES("13275", "3", "2015-06-23 18:10:27", "202.46.52.102", "30");
INSERT INTO `wp_gf_form_view` VALUES("13276", "3", "2015-06-23 19:08:58", "202.46.52.160", "35");
INSERT INTO `wp_gf_form_view` VALUES("13277", "3", "2015-06-23 20:07:31", "202.46.55.67", "57");
INSERT INTO `wp_gf_form_view` VALUES("13278", "3", "2015-06-23 21:06:04", "202.46.58.120", "42");
INSERT INTO `wp_gf_form_view` VALUES("13279", "3", "2015-06-23 22:04:35", "202.46.52.11", "66");
INSERT INTO `wp_gf_form_view` VALUES("13280", "1", "2015-06-23 22:58:15", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13281", "3", "2015-06-23 23:03:07", "202.46.54.196", "51");
INSERT INTO `wp_gf_form_view` VALUES("13282", "3", "2015-06-24 00:01:40", "202.46.57.199", "1070");
INSERT INTO `wp_gf_form_view` VALUES("13283", "2", "2015-06-24 00:42:22", "71.187.219.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("13284", "7", "2015-06-24 00:42:39", "71.187.219.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("13285", "1", "2015-06-24 00:43:36", "71.187.219.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("13286", "5", "2015-06-24 00:43:41", "71.187.219.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("13287", "6", "2015-06-24 00:54:08", "71.187.219.210", "3");
INSERT INTO `wp_gf_form_view` VALUES("13288", "3", "2015-06-24 01:00:11", "202.46.55.152", "41");
INSERT INTO `wp_gf_form_view` VALUES("13289", "3", "2015-06-24 02:04:05", "207.46.13.146", "48");
INSERT INTO `wp_gf_form_view` VALUES("13290", "3", "2015-06-24 03:08:58", "202.46.49.193", "20");
INSERT INTO `wp_gf_form_view` VALUES("13291", "2", "2015-06-24 04:07:16", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("13292", "3", "2015-06-24 04:07:16", "68.180.228.245", "54");
INSERT INTO `wp_gf_form_view` VALUES("13293", "3", "2015-06-24 05:17:46", "202.46.58.82", "30");
INSERT INTO `wp_gf_form_view` VALUES("13294", "1", "2015-06-24 05:26:22", "134.249.49.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("13295", "3", "2015-06-24 06:04:34", "202.46.55.176", "65");
INSERT INTO `wp_gf_form_view` VALUES("13296", "3", "2015-06-24 07:03:08", "202.46.54.143", "15");
INSERT INTO `wp_gf_form_view` VALUES("13297", "3", "2015-06-24 08:02:28", "202.46.57.168", "47");
INSERT INTO `wp_gf_form_view` VALUES("13298", "3", "2015-06-24 09:01:00", "202.46.51.199", "46");
INSERT INTO `wp_gf_form_view` VALUES("13299", "3", "2015-06-24 10:11:15", "202.46.55.139", "36");
INSERT INTO `wp_gf_form_view` VALUES("13300", "3", "2015-06-24 11:09:47", "202.46.51.157", "41");
INSERT INTO `wp_gf_form_view` VALUES("13301", "3", "2015-06-24 13:47:32", "212.83.177.193", "102");
INSERT INTO `wp_gf_form_view` VALUES("13302", "3", "2015-06-24 14:25:24", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("13303", "3", "2015-06-24 15:10:11", "202.46.53.91", "40");
INSERT INTO `wp_gf_form_view` VALUES("13304", "3", "2015-06-24 16:08:43", "202.46.51.38", "46");
INSERT INTO `wp_gf_form_view` VALUES("13305", "1", "2015-06-24 16:29:43", "68.180.228.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("13306", "3", "2015-06-24 17:07:11", "142.31.144.2", "138");
INSERT INTO `wp_gf_form_view` VALUES("13307", "6", "2015-06-24 17:07:19", "142.31.144.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("13308", "3", "2015-06-24 18:05:45", "202.46.58.157", "81");
INSERT INTO `wp_gf_form_view` VALUES("13309", "1", "2015-06-24 18:51:34", "184.71.24.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("13310", "3", "2015-06-24 19:04:19", "202.46.50.198", "60");
INSERT INTO `wp_gf_form_view` VALUES("13311", "3", "2015-06-24 20:02:50", "202.46.51.207", "137");
INSERT INTO `wp_gf_form_view` VALUES("13312", "1", "2015-06-24 20:17:01", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13313", "3", "2015-06-24 21:01:21", "202.46.49.138", "46");
INSERT INTO `wp_gf_form_view` VALUES("13314", "3", "2015-06-24 22:11:37", "202.46.54.91", "158");
INSERT INTO `wp_gf_form_view` VALUES("13315", "7", "2015-06-24 22:14:40", "81.202.184.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("13316", "1", "2015-06-24 22:14:53", "81.202.184.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("13317", "2", "2015-06-24 22:15:14", "81.202.184.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("13318", "3", "2015-06-24 23:04:43", "220.181.108.171", "70");
INSERT INTO `wp_gf_form_view` VALUES("13319", "7", "2015-06-24 23:52:25", "157.55.39.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("13320", "3", "2015-06-25 00:02:10", "157.55.39.121", "68");
INSERT INTO `wp_gf_form_view` VALUES("13321", "2", "2015-06-25 00:03:44", "157.55.39.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("13322", "3", "2015-06-25 01:07:13", "202.46.58.135", "35");
INSERT INTO `wp_gf_form_view` VALUES("13323", "1", "2015-06-25 01:51:52", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13324", "3", "2015-06-25 02:05:45", "202.46.58.136", "45");
INSERT INTO `wp_gf_form_view` VALUES("13325", "2", "2015-06-25 03:04:17", "202.46.52.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("13326", "3", "2015-06-25 03:04:17", "202.46.52.71", "40");
INSERT INTO `wp_gf_form_view` VALUES("13327", "1", "2015-06-25 03:27:11", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("13328", "3", "2015-06-25 04:02:50", "202.46.50.164", "30");
INSERT INTO `wp_gf_form_view` VALUES("13329", "3", "2015-06-25 05:01:21", "202.46.48.142", "35");
INSERT INTO `wp_gf_form_view` VALUES("13330", "3", "2015-06-25 06:11:38", "202.46.52.42", "46");
INSERT INTO `wp_gf_form_view` VALUES("13331", "3", "2015-06-25 07:10:08", "202.46.50.85", "61");
INSERT INTO `wp_gf_form_view` VALUES("13332", "1", "2015-06-25 07:55:28", "207.46.13.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("13333", "2", "2015-06-25 07:56:26", "157.55.39.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("13334", "3", "2015-06-25 08:08:42", "202.46.58.208", "60");
INSERT INTO `wp_gf_form_view` VALUES("13335", "7", "2015-06-25 08:19:57", "157.55.39.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("13336", "3", "2015-06-25 09:07:12", "202.46.55.69", "113");
INSERT INTO `wp_gf_form_view` VALUES("13337", "1", "2015-06-25 09:26:35", "65.55.209.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("13338", "7", "2015-06-25 09:26:46", "65.55.209.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("13339", "2", "2015-06-25 09:26:48", "65.55.209.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("13340", "3", "2015-06-25 10:05:45", "202.46.58.160", "266");
INSERT INTO `wp_gf_form_view` VALUES("13341", "1", "2015-06-25 10:25:51", "157.56.3.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13342", "2", "2015-06-25 10:25:55", "157.56.3.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13343", "7", "2015-06-25 10:26:04", "157.56.3.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("13344", "5", "2015-06-25 10:29:10", "95.181.178.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("13345", "3", "2015-06-25 11:04:19", "202.46.52.176", "52");
INSERT INTO `wp_gf_form_view` VALUES("13346", "3", "2015-06-25 12:02:48", "202.46.53.199", "55");
INSERT INTO `wp_gf_form_view` VALUES("13347", "1", "2015-06-25 12:25:09", "157.55.39.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("13348", "2", "2015-06-25 12:25:24", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("13349", "3", "2015-06-25 13:01:21", "202.46.52.100", "46");
INSERT INTO `wp_gf_form_view` VALUES("13350", "3", "2015-06-25 14:01:40", "151.80.31.153", "50");
INSERT INTO `wp_gf_form_view` VALUES("13351", "3", "2015-06-25 15:18:25", "66.249.79.120", "41");
INSERT INTO `wp_gf_form_view` VALUES("13352", "3", "2015-06-25 16:08:40", "202.46.58.122", "55");
INSERT INTO `wp_gf_form_view` VALUES("13353", "3", "2015-06-25 17:07:12", "202.46.48.210", "125");
INSERT INTO `wp_gf_form_view` VALUES("13354", "3", "2015-06-25 18:05:45", "202.46.52.176", "50");
INSERT INTO `wp_gf_form_view` VALUES("13355", "3", "2015-06-25 19:04:17", "202.46.51.104", "45");
INSERT INTO `wp_gf_form_view` VALUES("13356", "3", "2015-06-25 20:02:48", "202.46.50.139", "80");
INSERT INTO `wp_gf_form_view` VALUES("13357", "7", "2015-06-25 20:22:19", "199.116.169.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("13358", "6", "2015-06-25 20:26:15", "202.46.51.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("13359", "3", "2015-06-25 21:01:21", "202.46.53.142", "85");
INSERT INTO `wp_gf_form_view` VALUES("13360", "3", "2015-06-25 22:10:02", "198.84.15.151", "52");
INSERT INTO `wp_gf_form_view` VALUES("13361", "3", "2015-06-25 23:21:53", "202.46.57.169", "26");
INSERT INTO `wp_gf_form_view` VALUES("13362", "3", "2015-06-26 00:08:39", "202.46.55.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("13363", "3", "2015-06-26 01:07:12", "202.46.51.88", "46");
INSERT INTO `wp_gf_form_view` VALUES("13364", "1", "2015-06-26 01:59:44", "37.9.62.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("13365", "3", "2015-06-26 02:05:43", "202.46.57.203", "45");
INSERT INTO `wp_gf_form_view` VALUES("13366", "3", "2015-06-26 03:04:16", "202.46.51.166", "75");
INSERT INTO `wp_gf_form_view` VALUES("13367", "3", "2015-06-26 04:02:49", "202.46.51.202", "100");
INSERT INTO `wp_gf_form_view` VALUES("13368", "1", "2015-06-26 04:28:06", "46.105.60.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("13369", "3", "2015-06-26 05:01:20", "202.46.56.202", "67");
INSERT INTO `wp_gf_form_view` VALUES("13370", "3", "2015-06-26 06:04:54", "46.105.60.176", "76");
INSERT INTO `wp_gf_form_view` VALUES("13371", "6", "2015-06-26 06:37:38", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("13372", "3", "2015-06-26 07:00:32", "46.105.60.176", "65");
INSERT INTO `wp_gf_form_view` VALUES("13373", "3", "2015-06-26 08:08:40", "202.46.52.143", "55");
INSERT INTO `wp_gf_form_view` VALUES("13374", "3", "2015-06-26 09:04:14", "46.105.60.176", "60");
INSERT INTO `wp_gf_form_view` VALUES("13375", "3", "2015-06-26 10:01:00", "5.9.17.118", "46");
INSERT INTO `wp_gf_form_view` VALUES("13376", "3", "2015-06-26 11:04:15", "202.46.54.166", "26");
INSERT INTO `wp_gf_form_view` VALUES("13377", "3", "2015-06-26 12:02:48", "202.46.55.152", "61");
INSERT INTO `wp_gf_form_view` VALUES("13378", "1", "2015-06-26 12:28:07", "158.222.0.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("13379", "3", "2015-06-26 13:01:20", "202.46.53.152", "56");
INSERT INTO `wp_gf_form_view` VALUES("13380", "3", "2015-06-26 14:11:35", "202.46.48.196", "36");
INSERT INTO `wp_gf_form_view` VALUES("13381", "3", "2015-06-26 15:09:52", "202.46.56.189", "30");
INSERT INTO `wp_gf_form_view` VALUES("13382", "3", "2015-06-26 16:08:25", "202.46.54.207", "90");
INSERT INTO `wp_gf_form_view` VALUES("13383", "1", "2015-06-26 16:16:17", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13384", "3", "2015-06-26 17:07:04", "202.46.57.176", "98");
INSERT INTO `wp_gf_form_view` VALUES("13385", "3", "2015-06-26 18:05:30", "202.46.55.155", "40");
INSERT INTO `wp_gf_form_view` VALUES("13386", "3", "2015-06-26 19:04:02", "202.46.49.202", "96");
INSERT INTO `wp_gf_form_view` VALUES("13387", "3", "2015-06-26 20:02:34", "202.46.48.149", "36");
INSERT INTO `wp_gf_form_view` VALUES("13388", "3", "2015-06-26 21:01:06", "202.46.51.168", "105");
INSERT INTO `wp_gf_form_view` VALUES("13389", "3", "2015-06-26 22:11:21", "202.46.54.204", "55");
INSERT INTO `wp_gf_form_view` VALUES("13390", "1", "2015-06-26 22:33:27", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13391", "1", "2015-06-26 22:33:27", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("13392", "3", "2015-06-26 23:09:52", "202.46.51.176", "53");
INSERT INTO `wp_gf_form_view` VALUES("13393", "3", "2015-06-27 00:08:25", "202.46.56.198", "82");
INSERT INTO `wp_gf_form_view` VALUES("13394", "7", "2015-06-27 00:59:31", "104.40.147.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("13395", "2", "2015-06-27 00:59:34", "104.40.147.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("13396", "1", "2015-06-27 00:59:34", "104.40.147.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("13397", "3", "2015-06-27 01:06:57", "202.46.52.173", "45");
INSERT INTO `wp_gf_form_view` VALUES("13398", "3", "2015-06-27 02:05:30", "202.46.58.180", "35");
INSERT INTO `wp_gf_form_view` VALUES("13399", "7", "2015-06-27 02:53:12", "66.249.64.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("13400", "3", "2015-06-27 03:04:01", "202.46.50.165", "35");
INSERT INTO `wp_gf_form_view` VALUES("13401", "3", "2015-06-27 04:02:35", "202.46.54.190", "40");
INSERT INTO `wp_gf_form_view` VALUES("13402", "3", "2015-06-27 05:01:08", "202.46.49.157", "50");
INSERT INTO `wp_gf_form_view` VALUES("13403", "3", "2015-06-27 06:11:21", "202.46.49.205", "45");
INSERT INTO `wp_gf_form_view` VALUES("13404", "3", "2015-06-27 07:09:52", "202.46.52.162", "35");
INSERT INTO `wp_gf_form_view` VALUES("13405", "3", "2015-06-27 08:06:22", "66.249.64.230", "35");
INSERT INTO `wp_gf_form_view` VALUES("13406", "3", "2015-06-27 09:04:16", "54.196.59.174", "56");
INSERT INTO `wp_gf_form_view` VALUES("13407", "3", "2015-06-27 10:05:29", "202.46.52.156", "40");
INSERT INTO `wp_gf_form_view` VALUES("13408", "3", "2015-06-27 11:04:01", "202.46.56.199", "35");
INSERT INTO `wp_gf_form_view` VALUES("13409", "3", "2015-06-27 12:02:33", "202.46.52.140", "30");
INSERT INTO `wp_gf_form_view` VALUES("13410", "7", "2015-06-27 12:36:35", "188.165.15.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("13411", "3", "2015-06-27 13:01:06", "202.46.53.145", "364");
INSERT INTO `wp_gf_form_view` VALUES("13412", "7", "2015-06-27 13:21:18", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("13413", "2", "2015-06-27 13:21:35", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("13414", "1", "2015-06-27 13:21:39", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("13415", "5", "2015-06-27 13:24:19", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("13416", "3", "2015-06-27 14:00:19", "188.165.15.234", "46");
INSERT INTO `wp_gf_form_view` VALUES("13417", "3", "2015-06-27 15:09:52", "202.46.55.146", "46");
INSERT INTO `wp_gf_form_view` VALUES("13418", "3", "2015-06-27 16:01:19", "66.249.64.225", "31");
INSERT INTO `wp_gf_form_view` VALUES("13419", "3", "2015-06-27 17:01:54", "202.46.56.206", "25");
INSERT INTO `wp_gf_form_view` VALUES("13420", "7", "2015-06-27 17:18:39", "202.46.52.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("13421", "3", "2015-06-27 18:05:29", "202.46.58.182", "95");
INSERT INTO `wp_gf_form_view` VALUES("13422", "3", "2015-06-27 19:04:01", "202.46.54.210", "45");
INSERT INTO `wp_gf_form_view` VALUES("13423", "3", "2015-06-27 20:02:33", "202.46.51.131", "39");
INSERT INTO `wp_gf_form_view` VALUES("13424", "3", "2015-06-27 21:01:06", "202.46.58.190", "66");
INSERT INTO `wp_gf_form_view` VALUES("13425", "3", "2015-06-27 22:02:42", "208.115.113.83", "26");
INSERT INTO `wp_gf_form_view` VALUES("13426", "3", "2015-06-27 23:09:52", "202.46.51.209", "50");
INSERT INTO `wp_gf_form_view` VALUES("13427", "3", "2015-06-28 00:08:24", "202.46.52.153", "40");
INSERT INTO `wp_gf_form_view` VALUES("13428", "3", "2015-06-28 01:04:09", "24.69.66.97", "35");
INSERT INTO `wp_gf_form_view` VALUES("13429", "3", "2015-06-28 02:00:42", "141.8.143.183", "36");
INSERT INTO `wp_gf_form_view` VALUES("13430", "3", "2015-06-28 03:02:05", "207.46.13.40", "41");
INSERT INTO `wp_gf_form_view` VALUES("13431", "3", "2015-06-28 04:02:35", "202.46.52.172", "25");
INSERT INTO `wp_gf_form_view` VALUES("13432", "3", "2015-06-28 05:01:06", "202.46.55.152", "115");
INSERT INTO `wp_gf_form_view` VALUES("13433", "3", "2015-06-28 06:11:20", "202.46.58.132", "36");
INSERT INTO `wp_gf_form_view` VALUES("13434", "3", "2015-06-28 07:09:52", "202.46.52.143", "45");
INSERT INTO `wp_gf_form_view` VALUES("13435", "3", "2015-06-28 08:08:24", "202.46.58.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("13436", "3", "2015-06-28 09:06:59", "202.46.58.192", "40");
INSERT INTO `wp_gf_form_view` VALUES("13437", "3", "2015-06-28 10:05:29", "202.46.51.154", "51");
INSERT INTO `wp_gf_form_view` VALUES("13438", "3", "2015-06-28 11:04:03", "202.46.51.183", "37");
INSERT INTO `wp_gf_form_view` VALUES("13439", "3", "2015-06-28 12:02:33", "202.46.52.172", "35");
INSERT INTO `wp_gf_form_view` VALUES("13440", "3", "2015-06-28 13:01:05", "202.46.49.193", "41");
INSERT INTO `wp_gf_form_view` VALUES("13441", "3", "2015-06-28 14:02:11", "154.5.205.95", "47");
INSERT INTO `wp_gf_form_view` VALUES("13442", "3", "2015-06-28 15:09:52", "202.46.52.170", "50");
INSERT INTO `wp_gf_form_view` VALUES("13443", "3", "2015-06-28 16:20:07", "202.46.52.179", "52");
INSERT INTO `wp_gf_form_view` VALUES("13444", "3", "2015-06-28 17:06:58", "202.46.57.207", "62");
INSERT INTO `wp_gf_form_view` VALUES("13445", "6", "2015-06-28 17:53:47", "202.46.49.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("13446", "1", "2015-06-28 17:55:26", "104.142.119.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("13447", "3", "2015-06-28 18:05:29", "202.46.55.175", "30");
INSERT INTO `wp_gf_form_view` VALUES("13448", "7", "2015-06-28 18:40:35", "202.46.51.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("13449", "3", "2015-06-28 19:04:00", "202.46.48.198", "31");
INSERT INTO `wp_gf_form_view` VALUES("13450", "3", "2015-06-28 20:02:34", "202.46.51.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("13451", "3", "2015-06-28 21:01:05", "202.46.50.165", "56");
INSERT INTO `wp_gf_form_view` VALUES("13452", "3", "2015-06-28 22:11:20", "202.46.52.143", "46");
INSERT INTO `wp_gf_form_view` VALUES("13453", "3", "2015-06-28 23:09:53", "202.46.48.137", "40");
INSERT INTO `wp_gf_form_view` VALUES("13454", "2", "2015-06-28 23:51:01", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("13455", "3", "2015-06-29 00:08:24", "202.46.51.179", "36");
INSERT INTO `wp_gf_form_view` VALUES("13456", "3", "2015-06-29 01:06:58", "202.46.49.138", "46");
INSERT INTO `wp_gf_form_view` VALUES("13457", "3", "2015-06-29 02:05:28", "202.46.53.210", "30");
INSERT INTO `wp_gf_form_view` VALUES("13458", "3", "2015-06-29 03:04:01", "202.46.57.184", "51");
INSERT INTO `wp_gf_form_view` VALUES("13459", "3", "2015-06-29 04:02:33", "202.46.54.144", "30");
INSERT INTO `wp_gf_form_view` VALUES("13460", "3", "2015-06-29 05:01:06", "202.46.51.184", "40");
INSERT INTO `wp_gf_form_view` VALUES("13461", "3", "2015-06-29 06:11:22", "202.46.58.193", "312");
INSERT INTO `wp_gf_form_view` VALUES("13462", "7", "2015-06-29 06:14:09", "104.131.255.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("13463", "2", "2015-06-29 06:14:23", "104.131.255.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("13464", "1", "2015-06-29 06:14:25", "104.131.255.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("13465", "5", "2015-06-29 06:16:45", "104.131.255.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("13466", "6", "2015-06-29 07:09:29", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("13467", "3", "2015-06-29 07:09:29", "66.249.79.120", "51");
INSERT INTO `wp_gf_form_view` VALUES("13468", "3", "2015-06-29 08:20:07", "202.46.55.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("13469", "3", "2015-06-29 09:06:56", "202.46.54.158", "26");
INSERT INTO `wp_gf_form_view` VALUES("13470", "3", "2015-06-29 10:05:28", "202.46.53.165", "36");
INSERT INTO `wp_gf_form_view` VALUES("13471", "3", "2015-06-29 11:04:00", "202.46.48.141", "30");
INSERT INTO `wp_gf_form_view` VALUES("13472", "3", "2015-06-29 12:02:33", "202.46.54.140", "35");
INSERT INTO `wp_gf_form_view` VALUES("13473", "3", "2015-06-29 13:01:06", "202.46.58.189", "35");
INSERT INTO `wp_gf_form_view` VALUES("13474", "3", "2015-06-29 14:11:19", "202.46.53.151", "35");
INSERT INTO `wp_gf_form_view` VALUES("13475", "3", "2015-06-29 15:12:21", "207.46.13.40", "32");
INSERT INTO `wp_gf_form_view` VALUES("13476", "3", "2015-06-29 16:08:23", "202.46.56.201", "41");
INSERT INTO `wp_gf_form_view` VALUES("13477", "3", "2015-06-29 17:06:56", "202.46.54.163", "31");
INSERT INTO `wp_gf_form_view` VALUES("13478", "3", "2015-06-29 18:05:29", "202.46.56.204", "41");
INSERT INTO `wp_gf_form_view` VALUES("13479", "3", "2015-06-29 19:04:00", "202.46.52.155", "46");
INSERT INTO `wp_gf_form_view` VALUES("13480", "1", "2015-06-29 19:39:42", "204.12.239.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("13481", "3", "2015-06-29 20:02:36", "202.46.55.157", "66");
INSERT INTO `wp_gf_form_view` VALUES("13482", "3", "2015-06-29 21:01:04", "202.46.53.158", "70");
INSERT INTO `wp_gf_form_view` VALUES("13483", "2", "2015-06-29 21:40:02", "151.80.31.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("13484", "3", "2015-06-29 22:07:21", "66.43.50.8", "40");
INSERT INTO `wp_gf_form_view` VALUES("13485", "3", "2015-06-29 23:13:06", "66.249.79.133", "37");
INSERT INTO `wp_gf_form_view` VALUES("13486", "3", "2015-06-30 00:08:23", "202.46.54.180", "49");
INSERT INTO `wp_gf_form_view` VALUES("13487", "3", "2015-06-30 01:06:55", "202.46.48.136", "191");
INSERT INTO `wp_gf_form_view` VALUES("13488", "7", "2015-06-30 01:18:24", "86.184.126.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("13489", "1", "2015-06-30 01:18:37", "86.184.126.223", "5");
INSERT INTO `wp_gf_form_view` VALUES("13490", "2", "2015-06-30 01:18:43", "86.184.126.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("13491", "3", "2015-06-30 02:05:28", "202.46.58.134", "36");
INSERT INTO `wp_gf_form_view` VALUES("13492", "3", "2015-06-30 03:04:00", "202.46.54.141", "45");
INSERT INTO `wp_gf_form_view` VALUES("13493", "1", "2015-06-30 03:28:47", "188.165.15.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("13494", "3", "2015-06-30 04:02:33", "202.46.50.183", "69");
INSERT INTO `wp_gf_form_view` VALUES("13495", "3", "2015-06-30 05:01:04", "202.46.58.186", "89");
INSERT INTO `wp_gf_form_view` VALUES("13496", "6", "2015-06-30 05:24:31", "202.46.54.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("13497", "3", "2015-06-30 06:11:20", "202.46.49.202", "25");
INSERT INTO `wp_gf_form_view` VALUES("13498", "3", "2015-06-30 07:08:28", "77.75.78.162", "50");
INSERT INTO `wp_gf_form_view` VALUES("13499", "3", "2015-06-30 08:08:24", "202.46.58.139", "35");
INSERT INTO `wp_gf_form_view` VALUES("13500", "3", "2015-06-30 09:06:55", "202.46.54.142", "46");
INSERT INTO `wp_gf_form_view` VALUES("13501", "3", "2015-06-30 10:05:28", "202.46.52.203", "35");
INSERT INTO `wp_gf_form_view` VALUES("13502", "3", "2015-06-30 11:04:00", "202.46.57.167", "35");
INSERT INTO `wp_gf_form_view` VALUES("13503", "3", "2015-06-30 12:02:32", "202.46.58.150", "45");
INSERT INTO `wp_gf_form_view` VALUES("13504", "1", "2015-06-30 12:06:05", "213.133.97.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("13505", "3", "2015-06-30 13:07:27", "217.69.133.231", "63");
INSERT INTO `wp_gf_form_view` VALUES("13506", "2", "2015-06-30 13:36:18", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("13507", "3", "2015-06-30 14:11:19", "202.46.58.188", "46");
INSERT INTO `wp_gf_form_view` VALUES("13508", "3", "2015-06-30 15:09:55", "202.46.48.194", "45");
INSERT INTO `wp_gf_form_view` VALUES("13509", "3", "2015-06-30 16:08:24", "202.46.49.196", "180");
INSERT INTO `wp_gf_form_view` VALUES("13510", "7", "2015-06-30 16:48:33", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("13511", "5", "2015-06-30 16:48:46", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("13512", "2", "2015-06-30 16:49:17", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("13513", "3", "2015-06-30 17:06:56", "202.46.58.160", "40");
INSERT INTO `wp_gf_form_view` VALUES("13514", "6", "2015-06-30 17:52:08", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("13515", "3", "2015-06-30 18:05:28", "202.46.54.132", "30");
INSERT INTO `wp_gf_form_view` VALUES("13516", "1", "2015-06-30 19:02:02", "142.104.2.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("13517", "3", "2015-06-30 19:02:02", "142.104.2.57", "55");
INSERT INTO `wp_gf_form_view` VALUES("13518", "3", "2015-06-30 20:02:33", "202.46.50.154", "31");
INSERT INTO `wp_gf_form_view` VALUES("13519", "3", "2015-06-30 21:00:11", "217.69.133.227", "31");
INSERT INTO `wp_gf_form_view` VALUES("13520", "3", "2015-06-30 22:11:19", "202.46.58.198", "73");
INSERT INTO `wp_gf_form_view` VALUES("13521", "3", "2015-06-30 23:09:52", "202.46.56.130", "35");
INSERT INTO `wp_gf_form_view` VALUES("13522", "7", "2015-06-30 23:56:42", "202.46.57.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("13523", "3", "2015-07-01 00:08:23", "202.46.58.183", "47");
INSERT INTO `wp_gf_form_view` VALUES("13524", "3", "2015-07-01 01:06:55", "202.46.52.143", "82");
INSERT INTO `wp_gf_form_view` VALUES("13525", "3", "2015-07-01 02:05:27", "202.46.52.146", "40");
INSERT INTO `wp_gf_form_view` VALUES("13526", "1", "2015-07-01 02:42:20", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("13527", "3", "2015-07-01 03:03:59", "202.46.58.139", "91");
INSERT INTO `wp_gf_form_view` VALUES("13528", "3", "2015-07-01 04:02:32", "202.46.52.176", "51");
INSERT INTO `wp_gf_form_view` VALUES("13529", "3", "2015-07-01 05:01:05", "202.46.53.205", "40");
INSERT INTO `wp_gf_form_view` VALUES("13530", "3", "2015-07-01 06:11:18", "202.46.58.208", "45");
INSERT INTO `wp_gf_form_view` VALUES("13531", "2", "2015-07-01 06:12:36", "46.4.189.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("13532", "3", "2015-07-01 07:09:52", "202.46.53.204", "20");
INSERT INTO `wp_gf_form_view` VALUES("13533", "3", "2015-07-01 08:00:16", "217.69.133.69", "35");
INSERT INTO `wp_gf_form_view` VALUES("13534", "3", "2015-07-01 09:06:55", "202.46.51.180", "40");
INSERT INTO `wp_gf_form_view` VALUES("13535", "3", "2015-07-01 10:05:28", "202.46.50.133", "40");
INSERT INTO `wp_gf_form_view` VALUES("13536", "3", "2015-07-01 11:03:59", "202.46.53.175", "51");
INSERT INTO `wp_gf_form_view` VALUES("13537", "3", "2015-07-01 12:02:31", "202.46.54.181", "45");
INSERT INTO `wp_gf_form_view` VALUES("13538", "3", "2015-07-01 13:01:04", "202.46.50.163", "60");
INSERT INTO `wp_gf_form_view` VALUES("13539", "1", "2015-07-01 13:46:15", "141.8.143.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("13540", "3", "2015-07-01 14:11:19", "202.46.55.182", "40");
INSERT INTO `wp_gf_form_view` VALUES("13541", "3", "2015-07-01 15:09:50", "202.46.48.206", "80");
INSERT INTO `wp_gf_form_view` VALUES("13542", "1", "2015-07-01 15:14:25", "107.150.42.226", "4");
INSERT INTO `wp_gf_form_view` VALUES("13543", "7", "2015-07-01 15:41:01", "204.124.183.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("13544", "3", "2015-07-01 16:08:24", "202.46.58.180", "30");
INSERT INTO `wp_gf_form_view` VALUES("13545", "3", "2015-07-01 17:01:24", "207.46.13.43", "120");
INSERT INTO `wp_gf_form_view` VALUES("13546", "3", "2015-07-01 18:01:33", "46.105.60.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("13547", "3", "2015-07-01 19:02:11", "217.69.133.232", "71");
INSERT INTO `wp_gf_form_view` VALUES("13548", "3", "2015-07-01 20:02:31", "202.46.51.170", "65");
INSERT INTO `wp_gf_form_view` VALUES("13549", "1", "2015-07-01 20:23:57", "204.12.239.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("13550", "3", "2015-07-01 21:01:03", "202.46.56.136", "55");
INSERT INTO `wp_gf_form_view` VALUES("13551", "7", "2015-07-01 21:12:49", "202.46.49.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("13552", "3", "2015-07-01 22:09:26", "46.105.60.176", "55");
INSERT INTO `wp_gf_form_view` VALUES("13553", "6", "2015-07-01 22:10:39", "217.69.133.227", "4");
INSERT INTO `wp_gf_form_view` VALUES("13554", "3", "2015-07-01 23:01:14", "157.55.39.163", "51");
INSERT INTO `wp_gf_form_view` VALUES("13555", "3", "2015-07-02 00:03:28", "66.249.79.146", "40");
INSERT INTO `wp_gf_form_view` VALUES("13556", "1", "2015-07-02 01:02:52", "198.27.70.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("13557", "3", "2015-07-02 01:02:52", "198.27.70.56", "91");
INSERT INTO `wp_gf_form_view` VALUES("13558", "3", "2015-07-02 02:05:26", "202.46.55.137", "35");
INSERT INTO `wp_gf_form_view` VALUES("13559", "6", "2015-07-02 02:53:32", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("13560", "3", "2015-07-02 03:03:59", "202.46.53.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("13561", "3", "2015-07-02 04:02:32", "202.46.56.136", "82");
INSERT INTO `wp_gf_form_view` VALUES("13562", "1", "2015-07-02 04:08:18", "100.43.91.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("13563", "3", "2015-07-02 05:01:03", "202.46.58.159", "35");
INSERT INTO `wp_gf_form_view` VALUES("13564", "3", "2015-07-02 06:03:10", "217.69.133.69", "66");
INSERT INTO `wp_gf_form_view` VALUES("13565", "3", "2015-07-02 07:06:59", "207.46.13.81", "36");
INSERT INTO `wp_gf_form_view` VALUES("13566", "3", "2015-07-02 08:08:22", "202.46.51.175", "46");
INSERT INTO `wp_gf_form_view` VALUES("13567", "3", "2015-07-02 09:06:17", "157.55.39.4", "57");
INSERT INTO `wp_gf_form_view` VALUES("13568", "3", "2015-07-02 10:17:09", "202.46.56.195", "46");
INSERT INTO `wp_gf_form_view` VALUES("13569", "2", "2015-07-02 10:47:10", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("13570", "3", "2015-07-02 11:15:42", "202.46.53.177", "25");
INSERT INTO `wp_gf_form_view` VALUES("13571", "3", "2015-07-02 12:02:31", "202.46.54.130", "35");
INSERT INTO `wp_gf_form_view` VALUES("13572", "6", "2015-07-02 12:55:51", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("13573", "3", "2015-07-02 13:01:03", "202.46.57.165", "40");
INSERT INTO `wp_gf_form_view` VALUES("13574", "3", "2015-07-02 14:18:09", "207.46.13.81", "30");
INSERT INTO `wp_gf_form_view` VALUES("13575", "3", "2015-07-02 15:09:55", "202.46.48.208", "45");
INSERT INTO `wp_gf_form_view` VALUES("13576", "3", "2015-07-02 16:08:22", "202.46.54.182", "35");
INSERT INTO `wp_gf_form_view` VALUES("13577", "3", "2015-07-02 17:06:54", "202.46.51.197", "40");
INSERT INTO `wp_gf_form_view` VALUES("13578", "3", "2015-07-02 18:05:28", "202.46.53.197", "25");
INSERT INTO `wp_gf_form_view` VALUES("13579", "1", "2015-07-02 18:52:17", "202.46.48.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("13580", "3", "2015-07-02 19:04:00", "202.46.56.180", "60");
INSERT INTO `wp_gf_form_view` VALUES("13581", "3", "2015-07-02 20:02:34", "202.46.58.188", "57");
INSERT INTO `wp_gf_form_view` VALUES("13582", "1", "2015-07-02 20:12:05", "205.210.188.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("13583", "3", "2015-07-02 21:01:03", "202.46.52.149", "35");
INSERT INTO `wp_gf_form_view` VALUES("13584", "3", "2015-07-02 22:11:17", "202.46.52.142", "45");
INSERT INTO `wp_gf_form_view` VALUES("13585", "3", "2015-07-02 23:22:15", "202.46.57.160", "20");
INSERT INTO `wp_gf_form_view` VALUES("13586", "3", "2015-07-03 00:02:53", "157.55.39.13", "45");
INSERT INTO `wp_gf_form_view` VALUES("13587", "3", "2015-07-03 01:00:59", "220.181.108.83", "51");
INSERT INTO `wp_gf_form_view` VALUES("13588", "2", "2015-07-03 01:12:46", "37.113.150.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("13589", "3", "2015-07-03 02:05:26", "202.46.54.184", "55");
INSERT INTO `wp_gf_form_view` VALUES("13590", "3", "2015-07-03 03:04:00", "202.46.51.163", "55");
INSERT INTO `wp_gf_form_view` VALUES("13591", "3", "2015-07-03 04:02:31", "202.46.49.145", "141");
INSERT INTO `wp_gf_form_view` VALUES("13592", "3", "2015-07-03 05:01:03", "202.46.50.162", "35");
INSERT INTO `wp_gf_form_view` VALUES("13593", "3", "2015-07-03 06:11:17", "202.46.58.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("13594", "3", "2015-07-03 07:09:49", "202.46.55.154", "36");
INSERT INTO `wp_gf_form_view` VALUES("13595", "3", "2015-07-03 08:08:27", "202.46.54.196", "55");
INSERT INTO `wp_gf_form_view` VALUES("13596", "1", "2015-07-03 08:36:06", "204.12.239.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("13597", "3", "2015-07-03 09:06:55", "202.46.57.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("13598", "3", "2015-07-03 10:05:26", "202.46.53.167", "40");
INSERT INTO `wp_gf_form_view` VALUES("13599", "3", "2015-07-03 11:02:51", "141.8.143.183", "90");
INSERT INTO `wp_gf_form_view` VALUES("13600", "3", "2015-07-03 12:02:31", "202.46.51.164", "85");
INSERT INTO `wp_gf_form_view` VALUES("13601", "2", "2015-07-03 12:26:43", "27.18.95.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("13602", "3", "2015-07-03 13:01:02", "202.46.53.155", "65");
INSERT INTO `wp_gf_form_view` VALUES("13603", "3", "2015-07-03 14:11:17", "202.46.51.204", "93");
INSERT INTO `wp_gf_form_view` VALUES("13604", "1", "2015-07-03 14:49:00", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13605", "3", "2015-07-03 15:02:47", "157.55.39.170", "66");
INSERT INTO `wp_gf_form_view` VALUES("13606", "3", "2015-07-03 16:01:03", "157.55.39.13", "165");
INSERT INTO `wp_gf_form_view` VALUES("13607", "7", "2015-07-03 16:11:54", "62.210.105.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("13608", "1", "2015-07-03 16:12:24", "62.210.105.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("13609", "2", "2015-07-03 16:12:36", "62.210.105.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("13610", "3", "2015-07-03 17:16:50", "188.165.15.50", "166");
INSERT INTO `wp_gf_form_view` VALUES("13611", "7", "2015-07-03 17:49:16", "66.208.47.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("13612", "1", "2015-07-03 17:49:26", "66.208.47.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("13613", "2", "2015-07-03 17:49:32", "66.208.47.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("13614", "3", "2015-07-03 18:05:28", "202.46.57.187", "60");
INSERT INTO `wp_gf_form_view` VALUES("13615", "1", "2015-07-03 18:52:19", "100.43.91.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("13616", "3", "2015-07-03 19:04:01", "202.46.57.204", "50");
INSERT INTO `wp_gf_form_view` VALUES("13617", "3", "2015-07-03 20:14:13", "202.46.52.145", "35");
INSERT INTO `wp_gf_form_view` VALUES("13618", "3", "2015-07-03 21:01:02", "202.46.54.169", "45");
INSERT INTO `wp_gf_form_view` VALUES("13619", "3", "2015-07-03 22:22:59", "202.46.58.181", "176");
INSERT INTO `wp_gf_form_view` VALUES("13620", "7", "2015-07-03 22:55:56", "66.208.47.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("13621", "1", "2015-07-03 22:56:09", "66.208.47.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("13622", "2", "2015-07-03 22:56:19", "66.208.47.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("13623", "3", "2015-07-03 23:09:49", "202.46.58.184", "30");
INSERT INTO `wp_gf_form_view` VALUES("13624", "3", "2015-07-04 00:08:23", "202.46.50.210", "105");
INSERT INTO `wp_gf_form_view` VALUES("13625", "7", "2015-07-04 00:53:29", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("13626", "3", "2015-07-04 01:13:29", "202.46.57.163", "66");
INSERT INTO `wp_gf_form_view` VALUES("13627", "3", "2015-07-04 02:05:34", "100.43.91.23", "45");
INSERT INTO `wp_gf_form_view` VALUES("13628", "2", "2015-07-04 02:29:48", "151.80.31.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("13629", "3", "2015-07-04 03:13:29", "202.46.52.210", "15");
INSERT INTO `wp_gf_form_view` VALUES("13630", "3", "2015-07-04 04:13:29", "202.46.49.149", "30");
INSERT INTO `wp_gf_form_view` VALUES("13631", "3", "2015-07-04 05:13:29", "202.46.55.157", "123");
INSERT INTO `wp_gf_form_view` VALUES("13632", "1", "2015-07-04 05:53:57", "45.55.229.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("13633", "2", "2015-07-04 05:53:57", "45.55.229.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("13634", "7", "2015-07-04 05:53:57", "45.55.229.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("13635", "3", "2015-07-04 06:13:29", "202.46.50.138", "25");
INSERT INTO `wp_gf_form_view` VALUES("13636", "3", "2015-07-04 07:08:48", "141.8.143.183", "83");
INSERT INTO `wp_gf_form_view` VALUES("13637", "3", "2015-07-04 08:13:29", "202.46.53.178", "42");
INSERT INTO `wp_gf_form_view` VALUES("13638", "1", "2015-07-04 08:30:06", "95.108.158.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("13639", "3", "2015-07-04 09:13:30", "202.46.53.154", "25");
INSERT INTO `wp_gf_form_view` VALUES("13640", "3", "2015-07-04 10:07:08", "123.29.67.11", "36");
INSERT INTO `wp_gf_form_view` VALUES("13641", "3", "2015-07-04 11:13:29", "202.46.52.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("13642", "3", "2015-07-04 12:09:23", "66.249.79.133", "95");
INSERT INTO `wp_gf_form_view` VALUES("13643", "3", "2015-07-04 13:13:29", "202.46.55.179", "30");
INSERT INTO `wp_gf_form_view` VALUES("13644", "3", "2015-07-04 14:13:28", "202.46.58.184", "30");
INSERT INTO `wp_gf_form_view` VALUES("13645", "3", "2015-07-04 15:13:28", "202.46.50.164", "30");
INSERT INTO `wp_gf_form_view` VALUES("13646", "3", "2015-07-04 16:02:51", "66.249.79.120", "50");
INSERT INTO `wp_gf_form_view` VALUES("13647", "3", "2015-07-04 17:13:29", "202.46.49.194", "25");
INSERT INTO `wp_gf_form_view` VALUES("13648", "3", "2015-07-04 18:13:31", "202.46.48.194", "20");
INSERT INTO `wp_gf_form_view` VALUES("13649", "3", "2015-07-04 19:13:29", "202.46.57.161", "30");
INSERT INTO `wp_gf_form_view` VALUES("13650", "3", "2015-07-04 20:13:29", "202.46.55.183", "30");
INSERT INTO `wp_gf_form_view` VALUES("13651", "3", "2015-07-04 21:13:29", "202.46.53.143", "20");
INSERT INTO `wp_gf_form_view` VALUES("13652", "3", "2015-07-04 22:13:29", "202.46.49.147", "30");
INSERT INTO `wp_gf_form_view` VALUES("13653", "3", "2015-07-04 23:12:33", "100.43.85.16", "40");
INSERT INTO `wp_gf_form_view` VALUES("13654", "3", "2015-07-05 00:13:29", "202.46.58.210", "51");
INSERT INTO `wp_gf_form_view` VALUES("13655", "2", "2015-07-05 00:23:04", "188.165.15.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("13656", "3", "2015-07-05 01:13:30", "202.46.51.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("13657", "3", "2015-07-05 02:28:30", "202.46.58.204", "45");
INSERT INTO `wp_gf_form_view` VALUES("13658", "1", "2015-07-05 02:55:07", "204.12.239.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("13659", "3", "2015-07-05 03:13:31", "202.46.55.154", "40");
INSERT INTO `wp_gf_form_view` VALUES("13660", "6", "2015-07-05 03:42:28", "68.180.228.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("13661", "1", "2015-07-05 04:12:12", "221.235.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("13662", "3", "2015-07-05 04:12:12", "221.235.66.231", "36");
INSERT INTO `wp_gf_form_view` VALUES("13663", "3", "2015-07-05 05:11:27", "66.249.79.133", "35");
INSERT INTO `wp_gf_form_view` VALUES("13664", "3", "2015-07-05 06:13:30", "202.46.58.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("13665", "3", "2015-07-05 07:13:33", "202.46.52.147", "30");
INSERT INTO `wp_gf_form_view` VALUES("13666", "3", "2015-07-05 08:13:30", "202.46.52.146", "30");
INSERT INTO `wp_gf_form_view` VALUES("13667", "1", "2015-07-05 08:24:23", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13668", "3", "2015-07-05 09:06:41", "220.181.108.160", "45");
INSERT INTO `wp_gf_form_view` VALUES("13669", "3", "2015-07-05 10:00:11", "208.115.113.83", "37");
INSERT INTO `wp_gf_form_view` VALUES("13670", "3", "2015-07-05 11:13:30", "202.46.55.170", "25");
INSERT INTO `wp_gf_form_view` VALUES("13671", "3", "2015-07-05 12:12:07", "91.200.12.130", "101");
INSERT INTO `wp_gf_form_view` VALUES("13672", "3", "2015-07-05 13:08:51", "66.249.79.120", "30");
INSERT INTO `wp_gf_form_view` VALUES("13673", "3", "2015-07-05 14:13:29", "202.46.52.164", "25");
INSERT INTO `wp_gf_form_view` VALUES("13674", "3", "2015-07-05 15:08:16", "157.55.39.120", "36");
INSERT INTO `wp_gf_form_view` VALUES("13675", "3", "2015-07-05 16:13:29", "202.46.49.136", "34");
INSERT INTO `wp_gf_form_view` VALUES("13676", "3", "2015-07-05 17:13:36", "202.46.58.198", "40");
INSERT INTO `wp_gf_form_view` VALUES("13677", "3", "2015-07-05 18:03:24", "100.43.81.134", "30");
INSERT INTO `wp_gf_form_view` VALUES("13678", "3", "2015-07-05 19:19:52", "188.165.15.50", "15");
INSERT INTO `wp_gf_form_view` VALUES("13679", "3", "2015-07-05 20:13:30", "202.46.58.152", "35");
INSERT INTO `wp_gf_form_view` VALUES("13680", "3", "2015-07-05 21:13:30", "202.46.53.149", "25");
INSERT INTO `wp_gf_form_view` VALUES("13681", "3", "2015-07-05 22:13:30", "202.46.54.137", "30");
INSERT INTO `wp_gf_form_view` VALUES("13682", "3", "2015-07-05 23:13:30", "202.46.53.196", "41");
INSERT INTO `wp_gf_form_view` VALUES("13683", "3", "2015-07-06 00:28:29", "202.46.50.187", "15");
INSERT INTO `wp_gf_form_view` VALUES("13684", "3", "2015-07-06 01:13:32", "202.46.58.195", "25");
INSERT INTO `wp_gf_form_view` VALUES("13685", "3", "2015-07-06 02:01:38", "220.181.108.184", "31");
INSERT INTO `wp_gf_form_view` VALUES("13686", "3", "2015-07-06 03:07:02", "199.217.117.207", "20");
INSERT INTO `wp_gf_form_view` VALUES("13687", "3", "2015-07-06 04:08:59", "188.165.15.50", "40");
INSERT INTO `wp_gf_form_view` VALUES("13688", "3", "2015-07-06 05:06:54", "202.46.53.200", "40");
INSERT INTO `wp_gf_form_view` VALUES("13689", "6", "2015-07-06 05:50:25", "188.165.15.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("13690", "3", "2015-07-06 06:05:27", "202.46.53.210", "178");
INSERT INTO `wp_gf_form_view` VALUES("13691", "1", "2015-07-06 06:06:03", "204.12.239.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("13692", "3", "2015-07-06 07:04:00", "202.46.52.151", "40");
INSERT INTO `wp_gf_form_view` VALUES("13693", "3", "2015-07-06 08:14:14", "202.46.56.198", "20");
INSERT INTO `wp_gf_form_view` VALUES("13694", "3", "2015-07-06 09:01:04", "202.46.55.146", "41");
INSERT INTO `wp_gf_form_view` VALUES("13695", "3", "2015-07-06 10:11:18", "202.46.48.196", "55");
INSERT INTO `wp_gf_form_view` VALUES("13696", "3", "2015-07-06 11:06:51", "77.75.79.95", "70");
INSERT INTO `wp_gf_form_view` VALUES("13697", "2", "2015-07-06 11:29:41", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13698", "3", "2015-07-06 12:10:22", "188.165.15.50", "50");
INSERT INTO `wp_gf_form_view` VALUES("13699", "3", "2015-07-06 13:01:52", "220.181.108.85", "65");
INSERT INTO `wp_gf_form_view` VALUES("13700", "1", "2015-07-06 13:45:43", "97.75.177.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("13701", "3", "2015-07-06 14:05:26", "202.46.48.146", "45");
INSERT INTO `wp_gf_form_view` VALUES("13702", "3", "2015-07-06 15:03:59", "202.46.52.146", "45");
INSERT INTO `wp_gf_form_view` VALUES("13703", "3", "2015-07-06 16:02:31", "202.46.52.205", "35");
INSERT INTO `wp_gf_form_view` VALUES("13704", "3", "2015-07-06 17:12:45", "202.46.52.166", "45");
INSERT INTO `wp_gf_form_view` VALUES("13705", "3", "2015-07-06 18:23:00", "202.46.57.187", "35");
INSERT INTO `wp_gf_form_view` VALUES("13706", "3", "2015-07-06 19:01:14", "46.246.43.188", "45");
INSERT INTO `wp_gf_form_view` VALUES("13707", "3", "2015-07-06 20:08:22", "202.46.55.157", "65");
INSERT INTO `wp_gf_form_view` VALUES("13708", "3", "2015-07-06 21:06:54", "202.46.52.205", "40");
INSERT INTO `wp_gf_form_view` VALUES("13709", "3", "2015-07-06 22:05:27", "202.46.55.175", "45");
INSERT INTO `wp_gf_form_view` VALUES("13710", "3", "2015-07-06 23:03:58", "202.46.48.132", "35");
INSERT INTO `wp_gf_form_view` VALUES("13711", "1", "2015-07-06 23:22:50", "54.153.94.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("13712", "3", "2015-07-07 00:02:31", "202.46.54.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("13713", "3", "2015-07-07 01:01:04", "202.46.54.135", "51");
INSERT INTO `wp_gf_form_view` VALUES("13714", "3", "2015-07-07 02:11:18", "202.46.53.143", "25");
INSERT INTO `wp_gf_form_view` VALUES("13715", "3", "2015-07-07 03:02:40", "192.99.44.141", "90");
INSERT INTO `wp_gf_form_view` VALUES("13716", "2", "2015-07-07 03:02:51", "192.99.44.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("13717", "1", "2015-07-07 03:02:53", "192.99.44.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("13718", "7", "2015-07-07 03:02:57", "192.99.44.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("13719", "3", "2015-07-07 04:17:19", "199.217.117.207", "55");
INSERT INTO `wp_gf_form_view` VALUES("13720", "3", "2015-07-07 05:06:54", "202.46.52.150", "40");
INSERT INTO `wp_gf_form_view` VALUES("13721", "3", "2015-07-07 06:05:26", "202.46.53.202", "51");
INSERT INTO `wp_gf_form_view` VALUES("13722", "3", "2015-07-07 07:03:58", "202.46.51.187", "50");
INSERT INTO `wp_gf_form_view` VALUES("13723", "3", "2015-07-07 08:02:31", "202.46.49.136", "35");
INSERT INTO `wp_gf_form_view` VALUES("13724", "1", "2015-07-07 08:40:18", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("13725", "3", "2015-07-07 09:01:04", "202.46.57.170", "40");
INSERT INTO `wp_gf_form_view` VALUES("13726", "3", "2015-07-07 10:01:34", "46.246.43.188", "190");
INSERT INTO `wp_gf_form_view` VALUES("13727", "7", "2015-07-07 10:41:50", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("13728", "5", "2015-07-07 10:42:00", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("13729", "2", "2015-07-07 10:42:23", "109.169.29.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("13730", "1", "2015-07-07 10:52:45", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13731", "3", "2015-07-07 11:09:49", "202.46.51.177", "25");
INSERT INTO `wp_gf_form_view` VALUES("13732", "3", "2015-07-07 12:08:21", "202.46.57.199", "82");
INSERT INTO `wp_gf_form_view` VALUES("13733", "1", "2015-07-07 12:39:18", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("13734", "3", "2015-07-07 13:06:54", "202.46.56.134", "56");
INSERT INTO `wp_gf_form_view` VALUES("13735", "1", "2015-07-07 13:40:06", "108.180.242.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("13736", "3", "2015-07-07 14:05:06", "220.181.108.102", "65");
INSERT INTO `wp_gf_form_view` VALUES("13737", "7", "2015-07-07 14:44:02", "66.249.67.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("13738", "3", "2015-07-07 15:15:40", "202.46.53.151", "45");
INSERT INTO `wp_gf_form_view` VALUES("13739", "2", "2015-07-07 15:29:03", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("13740", "3", "2015-07-07 16:02:31", "202.46.52.156", "25");
INSERT INTO `wp_gf_form_view` VALUES("13741", "3", "2015-07-07 17:01:04", "202.46.52.166", "50");
INSERT INTO `wp_gf_form_view` VALUES("13742", "3", "2015-07-07 18:06:34", "66.249.67.64", "80");
INSERT INTO `wp_gf_form_view` VALUES("13743", "3", "2015-07-07 19:04:58", "77.75.77.11", "71");
INSERT INTO `wp_gf_form_view` VALUES("13744", "1", "2015-07-07 19:52:41", "104.193.10.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("13745", "3", "2015-07-07 20:01:53", "157.55.39.206", "50");
INSERT INTO `wp_gf_form_view` VALUES("13746", "3", "2015-07-07 21:06:53", "202.46.54.141", "75");
INSERT INTO `wp_gf_form_view` VALUES("13747", "3", "2015-07-07 22:05:26", "202.46.57.186", "30");
INSERT INTO `wp_gf_form_view` VALUES("13748", "3", "2015-07-07 23:03:59", "202.46.54.185", "30");
INSERT INTO `wp_gf_form_view` VALUES("13749", "3", "2015-07-08 00:02:31", "202.46.55.157", "70");
INSERT INTO `wp_gf_form_view` VALUES("13750", "3", "2015-07-08 01:00:05", "96.54.201.93", "50");
INSERT INTO `wp_gf_form_view` VALUES("13751", "3", "2015-07-08 02:11:17", "202.46.49.142", "40");
INSERT INTO `wp_gf_form_view` VALUES("13752", "3", "2015-07-08 03:09:50", "202.46.50.190", "35");
INSERT INTO `wp_gf_form_view` VALUES("13753", "3", "2015-07-08 04:08:25", "202.46.57.185", "30");
INSERT INTO `wp_gf_form_view` VALUES("13754", "3", "2015-07-08 05:04:19", "70.66.133.32", "56");
INSERT INTO `wp_gf_form_view` VALUES("13755", "3", "2015-07-08 06:05:26", "202.46.56.136", "52");
INSERT INTO `wp_gf_form_view` VALUES("13756", "3", "2015-07-08 07:03:58", "202.46.51.203", "50");
INSERT INTO `wp_gf_form_view` VALUES("13757", "3", "2015-07-08 08:02:31", "202.46.51.181", "57");
INSERT INTO `wp_gf_form_view` VALUES("13758", "3", "2015-07-08 09:01:02", "202.46.58.193", "55");
INSERT INTO `wp_gf_form_view` VALUES("13759", "3", "2015-07-08 10:11:18", "202.46.51.131", "35");
INSERT INTO `wp_gf_form_view` VALUES("13760", "3", "2015-07-08 11:01:27", "66.249.67.76", "31");
INSERT INTO `wp_gf_form_view` VALUES("13761", "3", "2015-07-08 12:08:21", "202.46.53.197", "82");
INSERT INTO `wp_gf_form_view` VALUES("13762", "3", "2015-07-08 13:00:04", "157.55.39.206", "120");
INSERT INTO `wp_gf_form_view` VALUES("13763", "1", "2015-07-08 13:12:41", "157.55.39.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("13764", "6", "2015-07-08 13:34:28", "66.249.67.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("13765", "3", "2015-07-08 14:05:27", "202.46.48.135", "41");
INSERT INTO `wp_gf_form_view` VALUES("13766", "1", "2015-07-08 14:20:12", "66.249.67.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("13767", "3", "2015-07-08 15:03:57", "202.46.56.186", "25");
INSERT INTO `wp_gf_form_view` VALUES("13768", "3", "2015-07-08 16:14:13", "202.46.52.167", "25");
INSERT INTO `wp_gf_form_view` VALUES("13769", "3", "2015-07-08 17:01:02", "202.46.53.203", "61");
INSERT INTO `wp_gf_form_view` VALUES("13770", "3", "2015-07-08 18:11:17", "202.46.53.164", "50");
INSERT INTO `wp_gf_form_view` VALUES("13771", "3", "2015-07-08 19:09:50", "202.46.55.154", "48");
INSERT INTO `wp_gf_form_view` VALUES("13772", "3", "2015-07-08 20:02:27", "141.8.143.217", "74");
INSERT INTO `wp_gf_form_view` VALUES("13773", "6", "2015-07-08 20:47:45", "157.55.39.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("13774", "3", "2015-07-08 21:06:53", "202.46.56.196", "48");
INSERT INTO `wp_gf_form_view` VALUES("13775", "3", "2015-07-08 22:05:25", "202.46.55.171", "96");
INSERT INTO `wp_gf_form_view` VALUES("13776", "3", "2015-07-08 23:03:57", "202.46.52.169", "36");
INSERT INTO `wp_gf_form_view` VALUES("13777", "3", "2015-07-09 00:02:30", "202.46.57.209", "60");
INSERT INTO `wp_gf_form_view` VALUES("13778", "3", "2015-07-09 01:01:02", "202.46.53.164", "45");
INSERT INTO `wp_gf_form_view` VALUES("13779", "5", "2015-07-09 02:00:09", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("13780", "3", "2015-07-09 02:00:09", "217.69.133.229", "46");
INSERT INTO `wp_gf_form_view` VALUES("13781", "3", "2015-07-09 03:09:48", "202.46.52.164", "46");
INSERT INTO `wp_gf_form_view` VALUES("13782", "3", "2015-07-09 04:08:21", "202.46.57.167", "30");
INSERT INTO `wp_gf_form_view` VALUES("13783", "3", "2015-07-09 05:04:11", "96.54.200.83", "48");
INSERT INTO `wp_gf_form_view` VALUES("13784", "3", "2015-07-09 06:05:30", "202.46.58.204", "62");
INSERT INTO `wp_gf_form_view` VALUES("13785", "2", "2015-07-09 06:51:37", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("13786", "3", "2015-07-09 07:04:02", "202.46.58.206", "25");
INSERT INTO `wp_gf_form_view` VALUES("13787", "3", "2015-07-09 08:02:36", "202.46.54.195", "41");
INSERT INTO `wp_gf_form_view` VALUES("13788", "3", "2015-07-09 09:01:08", "202.46.58.192", "45");
INSERT INTO `wp_gf_form_view` VALUES("13789", "3", "2015-07-09 10:04:25", "220.181.108.86", "35");
INSERT INTO `wp_gf_form_view` VALUES("13790", "5", "2015-07-09 10:46:28", "202.46.50.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("13791", "3", "2015-07-09 11:09:54", "202.46.50.159", "67");
INSERT INTO `wp_gf_form_view` VALUES("13792", "3", "2015-07-09 12:08:27", "202.46.49.207", "41");
INSERT INTO `wp_gf_form_view` VALUES("13793", "3", "2015-07-09 13:00:04", "217.69.133.69", "63");
INSERT INTO `wp_gf_form_view` VALUES("13794", "3", "2015-07-09 14:05:29", "202.46.48.206", "58");
INSERT INTO `wp_gf_form_view` VALUES("13795", "3", "2015-07-09 15:15:47", "202.46.52.168", "25");
INSERT INTO `wp_gf_form_view` VALUES("13796", "3", "2015-07-09 16:02:36", "202.46.51.155", "45");
INSERT INTO `wp_gf_form_view` VALUES("13797", "1", "2015-07-09 16:07:20", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("13798", "3", "2015-07-09 17:09:49", "64.110.134.122", "512");
INSERT INTO `wp_gf_form_view` VALUES("13799", "1", "2015-07-09 17:28:29", "174.127.133.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("13800", "2", "2015-07-09 17:29:24", "174.127.133.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("13801", "7", "2015-07-09 17:30:45", "174.127.133.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("13802", "3", "2015-07-09 18:00:50", "174.127.133.90", "107");
INSERT INTO `wp_gf_form_view` VALUES("13803", "3", "2015-07-09 19:09:52", "202.46.57.185", "46");
INSERT INTO `wp_gf_form_view` VALUES("13804", "3", "2015-07-09 20:20:12", "202.46.54.186", "41");
INSERT INTO `wp_gf_form_view` VALUES("13805", "3", "2015-07-09 21:06:57", "202.46.56.179", "30");
INSERT INTO `wp_gf_form_view` VALUES("13806", "3", "2015-07-09 22:05:31", "202.46.50.189", "30");
INSERT INTO `wp_gf_form_view` VALUES("13807", "3", "2015-07-09 23:04:02", "202.46.48.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("13808", "3", "2015-07-10 00:00:55", "207.216.37.169", "81");
INSERT INTO `wp_gf_form_view` VALUES("13809", "3", "2015-07-10 01:01:05", "202.46.52.179", "50");
INSERT INTO `wp_gf_form_view` VALUES("13810", "3", "2015-07-10 02:07:54", "107.169.7.82", "61");
INSERT INTO `wp_gf_form_view` VALUES("13811", "3", "2015-07-10 03:09:52", "202.46.53.178", "50");
INSERT INTO `wp_gf_form_view` VALUES("13812", "3", "2015-07-10 04:08:24", "202.46.57.179", "41");
INSERT INTO `wp_gf_form_view` VALUES("13813", "3", "2015-07-10 05:05:04", "66.249.67.76", "40");
INSERT INTO `wp_gf_form_view` VALUES("13814", "5", "2015-07-10 05:53:46", "202.46.52.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("13815", "3", "2015-07-10 06:05:31", "202.46.56.191", "51");
INSERT INTO `wp_gf_form_view` VALUES("13816", "3", "2015-07-10 07:04:01", "202.46.49.143", "813");
INSERT INTO `wp_gf_form_view` VALUES("13817", "1", "2015-07-10 07:43:26", "162.243.228.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("13818", "7", "2015-07-10 07:47:32", "162.243.228.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("13819", "5", "2015-07-10 07:48:31", "162.243.228.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("13820", "6", "2015-07-10 07:50:37", "217.69.133.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("13821", "3", "2015-07-10 08:02:33", "202.46.58.208", "46");
INSERT INTO `wp_gf_form_view` VALUES("13822", "6", "2015-07-10 08:19:11", "68.180.229.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("13823", "3", "2015-07-10 09:01:07", "202.46.55.146", "46");
INSERT INTO `wp_gf_form_view` VALUES("13824", "3", "2015-07-10 10:11:20", "202.46.58.191", "46");
INSERT INTO `wp_gf_form_view` VALUES("13825", "3", "2015-07-10 11:01:41", "68.180.229.183", "133");
INSERT INTO `wp_gf_form_view` VALUES("13826", "2", "2015-07-10 11:46:59", "220.181.108.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("13827", "3", "2015-07-10 12:12:04", "68.180.229.183", "46");
INSERT INTO `wp_gf_form_view` VALUES("13828", "3", "2015-07-10 13:06:58", "202.46.56.194", "45");
INSERT INTO `wp_gf_form_view` VALUES("13829", "3", "2015-07-10 14:05:32", "202.46.58.167", "40");
INSERT INTO `wp_gf_form_view` VALUES("13830", "3", "2015-07-10 15:00:54", "157.55.39.157", "45");
INSERT INTO `wp_gf_form_view` VALUES("13831", "1", "2015-07-10 15:09:43", "68.180.229.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("13832", "3", "2015-07-10 16:02:34", "202.46.52.170", "30");
INSERT INTO `wp_gf_form_view` VALUES("13833", "3", "2015-07-10 17:00:42", "100.43.91.23", "102");
INSERT INTO `wp_gf_form_view` VALUES("13834", "3", "2015-07-10 18:00:43", "184.151.231.181", "71");
INSERT INTO `wp_gf_form_view` VALUES("13835", "3", "2015-07-10 19:08:48", "184.151.231.181", "50");
INSERT INTO `wp_gf_form_view` VALUES("13836", "1", "2015-07-10 19:39:20", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("13837", "3", "2015-07-10 20:08:24", "202.46.52.149", "51");
INSERT INTO `wp_gf_form_view` VALUES("13838", "3", "2015-07-10 21:06:56", "202.46.56.191", "45");
INSERT INTO `wp_gf_form_view` VALUES("13839", "3", "2015-07-10 22:05:30", "202.46.48.190", "30");
INSERT INTO `wp_gf_form_view` VALUES("13840", "3", "2015-07-10 23:04:01", "202.46.52.170", "35");
INSERT INTO `wp_gf_form_view` VALUES("13841", "3", "2015-07-11 00:02:33", "202.46.55.134", "60");
INSERT INTO `wp_gf_form_view` VALUES("13842", "1", "2015-07-11 00:47:39", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("13843", "3", "2015-07-11 01:01:08", "202.46.49.139", "135");
INSERT INTO `wp_gf_form_view` VALUES("13844", "1", "2015-07-11 01:10:52", "24.114.91.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("13845", "3", "2015-07-11 02:07:29", "58.62.234.179", "211");
INSERT INTO `wp_gf_form_view` VALUES("13846", "7", "2015-07-11 02:28:17", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("13847", "3", "2015-07-11 03:09:52", "202.46.52.165", "65");
INSERT INTO `wp_gf_form_view` VALUES("13848", "1", "2015-07-11 03:36:51", "24.114.27.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("13849", "3", "2015-07-11 04:08:24", "202.46.51.162", "30");
INSERT INTO `wp_gf_form_view` VALUES("13850", "3", "2015-07-11 05:06:56", "202.46.50.191", "45");
INSERT INTO `wp_gf_form_view` VALUES("13851", "3", "2015-07-11 06:05:30", "202.46.56.190", "60");
INSERT INTO `wp_gf_form_view` VALUES("13852", "3", "2015-07-11 07:04:00", "202.46.57.174", "30");
INSERT INTO `wp_gf_form_view` VALUES("13853", "3", "2015-07-11 08:02:39", "202.46.52.151", "35");
INSERT INTO `wp_gf_form_view` VALUES("13854", "3", "2015-07-11 09:01:06", "202.46.48.205", "35");
INSERT INTO `wp_gf_form_view` VALUES("13855", "3", "2015-07-11 10:11:19", "202.46.52.203", "50");
INSERT INTO `wp_gf_form_view` VALUES("13856", "3", "2015-07-11 11:09:52", "202.46.55.157", "51");
INSERT INTO `wp_gf_form_view` VALUES("13857", "5", "2015-07-11 11:28:53", "188.165.15.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("13858", "1", "2015-07-11 12:03:19", "109.127.102.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("13859", "3", "2015-07-11 12:03:19", "109.127.102.55", "40");
INSERT INTO `wp_gf_form_view` VALUES("13860", "3", "2015-07-11 13:06:56", "202.46.51.186", "30");
INSERT INTO `wp_gf_form_view` VALUES("13861", "3", "2015-07-11 14:02:07", "220.181.108.121", "40");
INSERT INTO `wp_gf_form_view` VALUES("13862", "7", "2015-07-11 14:25:29", "207.46.13.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("13863", "3", "2015-07-11 15:04:00", "202.46.51.163", "35");
INSERT INTO `wp_gf_form_view` VALUES("13864", "3", "2015-07-11 16:02:33", "202.46.48.191", "30");
INSERT INTO `wp_gf_form_view` VALUES("13865", "3", "2015-07-11 17:01:05", "202.46.50.132", "35");
INSERT INTO `wp_gf_form_view` VALUES("13866", "3", "2015-07-11 18:11:21", "202.46.48.134", "30");
INSERT INTO `wp_gf_form_view` VALUES("13867", "3", "2015-07-11 19:09:57", "202.46.55.135", "41");
INSERT INTO `wp_gf_form_view` VALUES("13868", "3", "2015-07-11 20:08:24", "202.46.55.142", "35");
INSERT INTO `wp_gf_form_view` VALUES("13869", "3", "2015-07-11 21:06:56", "202.46.54.210", "30");
INSERT INTO `wp_gf_form_view` VALUES("13870", "3", "2015-07-11 22:05:28", "202.46.55.131", "105");
INSERT INTO `wp_gf_form_view` VALUES("13871", "3", "2015-07-11 23:04:00", "202.46.55.149", "35");
INSERT INTO `wp_gf_form_view` VALUES("13872", "1", "2015-07-11 23:17:19", "52.0.86.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("13873", "3", "2015-07-12 00:02:32", "202.46.51.168", "115");
INSERT INTO `wp_gf_form_view` VALUES("13874", "3", "2015-07-12 01:01:04", "202.46.53.149", "60");
INSERT INTO `wp_gf_form_view` VALUES("13875", "5", "2015-07-12 01:47:55", "184.151.231.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("13876", "3", "2015-07-12 02:11:19", "202.46.53.199", "30");
INSERT INTO `wp_gf_form_view` VALUES("13877", "3", "2015-07-12 03:09:52", "202.46.58.156", "30");
INSERT INTO `wp_gf_form_view` VALUES("13878", "3", "2015-07-12 04:08:34", "202.46.51.154", "55");
INSERT INTO `wp_gf_form_view` VALUES("13879", "3", "2015-07-12 05:03:51", "91.200.12.7", "65");
INSERT INTO `wp_gf_form_view` VALUES("13880", "3", "2015-07-12 06:05:39", "202.46.51.158", "70");
INSERT INTO `wp_gf_form_view` VALUES("13881", "3", "2015-07-12 07:04:00", "202.46.56.194", "30");
INSERT INTO `wp_gf_form_view` VALUES("13882", "3", "2015-07-12 08:02:36", "202.46.54.144", "58");
INSERT INTO `wp_gf_form_view` VALUES("13883", "3", "2015-07-12 09:01:05", "202.46.48.206", "35");
INSERT INTO `wp_gf_form_view` VALUES("13884", "3", "2015-07-12 10:11:20", "202.46.52.156", "30");
INSERT INTO `wp_gf_form_view` VALUES("13885", "3", "2015-07-12 11:09:51", "202.46.58.150", "55");
INSERT INTO `wp_gf_form_view` VALUES("13886", "3", "2015-07-12 12:08:25", "202.46.54.190", "25");
INSERT INTO `wp_gf_form_view` VALUES("13887", "3", "2015-07-12 13:06:55", "202.46.48.148", "45");
INSERT INTO `wp_gf_form_view` VALUES("13888", "3", "2015-07-12 14:05:28", "202.46.55.176", "35");
INSERT INTO `wp_gf_form_view` VALUES("13889", "3", "2015-07-12 15:04:00", "202.46.51.172", "56");
INSERT INTO `wp_gf_form_view` VALUES("13890", "1", "2015-07-12 15:52:08", "188.240.135.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("13891", "3", "2015-07-12 16:02:32", "202.46.55.154", "20");
INSERT INTO `wp_gf_form_view` VALUES("13892", "3", "2015-07-12 17:01:05", "202.46.55.132", "50");
INSERT INTO `wp_gf_form_view` VALUES("13893", "3", "2015-07-12 18:11:19", "202.46.51.190", "256");
INSERT INTO `wp_gf_form_view` VALUES("13894", "7", "2015-07-12 18:22:03", "216.232.155.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13895", "2", "2015-07-12 18:24:09", "216.232.155.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13896", "1", "2015-07-12 18:24:42", "216.232.155.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("13897", "3", "2015-07-12 19:09:51", "202.46.56.201", "75");
INSERT INTO `wp_gf_form_view` VALUES("13898", "3", "2015-07-12 20:06:27", "46.246.62.183", "65");
INSERT INTO `wp_gf_form_view` VALUES("13899", "3", "2015-07-12 21:06:56", "202.46.58.160", "25");
INSERT INTO `wp_gf_form_view` VALUES("13900", "3", "2015-07-12 22:05:28", "202.46.48.201", "46");
INSERT INTO `wp_gf_form_view` VALUES("13901", "3", "2015-07-12 23:03:21", "24.69.72.105", "71");
INSERT INTO `wp_gf_form_view` VALUES("13902", "3", "2015-07-13 00:02:32", "202.46.58.185", "140");
INSERT INTO `wp_gf_form_view` VALUES("13903", "7", "2015-07-13 00:25:29", "184.75.235.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("13904", "1", "2015-07-13 00:25:40", "184.75.235.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("13905", "2", "2015-07-13 00:25:45", "184.75.235.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("13906", "3", "2015-07-13 01:01:05", "202.46.51.164", "51");
INSERT INTO `wp_gf_form_view` VALUES("13907", "3", "2015-07-13 02:09:59", "220.181.108.85", "35");
INSERT INTO `wp_gf_form_view` VALUES("13908", "3", "2015-07-13 03:09:51", "202.46.54.168", "40");
INSERT INTO `wp_gf_form_view` VALUES("13909", "3", "2015-07-13 04:02:44", "141.8.143.183", "55");
INSERT INTO `wp_gf_form_view` VALUES("13910", "1", "2015-07-13 04:13:07", "123.88.210.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("13911", "3", "2015-07-13 05:06:52", "207.46.13.116", "51");
INSERT INTO `wp_gf_form_view` VALUES("13912", "3", "2015-07-13 06:05:28", "202.46.49.153", "35");
INSERT INTO `wp_gf_form_view` VALUES("13913", "3", "2015-07-13 07:04:02", "202.46.54.196", "35");
INSERT INTO `wp_gf_form_view` VALUES("13914", "3", "2015-07-13 08:02:34", "202.46.58.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("13915", "3", "2015-07-13 09:01:05", "202.46.48.143", "56");
INSERT INTO `wp_gf_form_view` VALUES("13916", "3", "2015-07-13 10:11:19", "202.46.51.174", "35");
INSERT INTO `wp_gf_form_view` VALUES("13917", "1", "2015-07-13 10:16:31", "204.12.239.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("13918", "3", "2015-07-13 11:21:51", "202.46.51.210", "25");
INSERT INTO `wp_gf_form_view` VALUES("13919", "3", "2015-07-13 12:08:25", "202.46.49.200", "145");
INSERT INTO `wp_gf_form_view` VALUES("13920", "2", "2015-07-13 12:27:10", "204.12.239.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("13921", "7", "2015-07-13 12:50:37", "76.122.112.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("13922", "1", "2015-07-13 12:50:58", "76.122.112.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("13923", "3", "2015-07-13 13:04:31", "59.174.162.184", "74");
INSERT INTO `wp_gf_form_view` VALUES("13924", "3", "2015-07-13 14:05:29", "202.46.52.173", "30");
INSERT INTO `wp_gf_form_view` VALUES("13925", "3", "2015-07-13 15:03:59", "202.46.49.194", "150");
INSERT INTO `wp_gf_form_view` VALUES("13926", "7", "2015-07-13 15:14:28", "184.75.235.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("13927", "1", "2015-07-13 15:14:38", "184.75.235.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("13928", "2", "2015-07-13 15:14:43", "184.75.235.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("13929", "3", "2015-07-13 16:00:32", "104.223.40.178", "67");
INSERT INTO `wp_gf_form_view` VALUES("13930", "3", "2015-07-13 17:01:04", "202.46.52.179", "115");
INSERT INTO `wp_gf_form_view` VALUES("13931", "3", "2015-07-13 18:10:05", "157.55.39.224", "66");
INSERT INTO `wp_gf_form_view` VALUES("13932", "1", "2015-07-13 18:14:45", "59.174.162.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("13933", "3", "2015-07-13 19:09:58", "202.46.48.141", "50");
INSERT INTO `wp_gf_form_view` VALUES("13934", "3", "2015-07-13 20:13:53", "109.169.29.30", "150");
INSERT INTO `wp_gf_form_view` VALUES("13935", "7", "2015-07-13 20:14:44", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("13936", "5", "2015-07-13 20:14:54", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("13937", "2", "2015-07-13 20:15:18", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("13938", "3", "2015-07-13 21:06:55", "202.46.52.159", "55");
INSERT INTO `wp_gf_form_view` VALUES("13939", "3", "2015-07-13 22:05:27", "202.46.54.167", "45");
INSERT INTO `wp_gf_form_view` VALUES("13940", "3", "2015-07-13 23:03:59", "202.46.49.195", "50");
INSERT INTO `wp_gf_form_view` VALUES("13941", "3", "2015-07-14 00:02:32", "202.46.58.195", "205");
INSERT INTO `wp_gf_form_view` VALUES("13942", "1", "2015-07-14 00:05:44", "24.108.144.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("13943", "7", "2015-07-14 00:35:16", "184.75.235.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("13944", "2", "2015-07-14 00:35:30", "184.75.235.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("13945", "3", "2015-07-14 01:01:04", "202.46.57.187", "50");
INSERT INTO `wp_gf_form_view` VALUES("13946", "3", "2015-07-14 02:11:19", "202.46.49.140", "25");
INSERT INTO `wp_gf_form_view` VALUES("13947", "3", "2015-07-14 03:09:50", "202.46.52.176", "40");
INSERT INTO `wp_gf_form_view` VALUES("13948", "3", "2015-07-14 04:08:23", "202.46.52.168", "40");
INSERT INTO `wp_gf_form_view` VALUES("13949", "3", "2015-07-14 05:06:55", "202.46.55.131", "88");
INSERT INTO `wp_gf_form_view` VALUES("13950", "3", "2015-07-14 06:00:41", "96.48.4.128", "254");
INSERT INTO `wp_gf_form_view` VALUES("13951", "1", "2015-07-14 06:17:06", "207.46.13.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("13952", "2", "2015-07-14 06:17:27", "207.46.13.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("13953", "3", "2015-07-14 07:03:59", "202.46.53.204", "35");
INSERT INTO `wp_gf_form_view` VALUES("13954", "3", "2015-07-14 08:02:32", "202.46.53.157", "35");
INSERT INTO `wp_gf_form_view` VALUES("13955", "3", "2015-07-14 09:01:04", "202.46.54.134", "40");
INSERT INTO `wp_gf_form_view` VALUES("13956", "3", "2015-07-14 10:11:18", "202.46.56.207", "40");
INSERT INTO `wp_gf_form_view` VALUES("13957", "3", "2015-07-14 11:09:51", "202.46.51.190", "35");
INSERT INTO `wp_gf_form_view` VALUES("13958", "3", "2015-07-14 12:08:22", "202.46.51.182", "60");
INSERT INTO `wp_gf_form_view` VALUES("13959", "3", "2015-07-14 13:01:30", "208.115.111.66", "150");
INSERT INTO `wp_gf_form_view` VALUES("13960", "1", "2015-07-14 13:21:15", "176.34.200.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("13961", "2", "2015-07-14 13:21:16", "176.34.200.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("13962", "7", "2015-07-14 13:21:16", "176.34.200.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("13963", "2", "2015-07-14 13:21:16", "176.34.200.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("13964", "3", "2015-07-14 14:04:15", "77.75.77.72", "35");
INSERT INTO `wp_gf_form_view` VALUES("13965", "3", "2015-07-14 15:03:59", "202.46.51.133", "65");
INSERT INTO `wp_gf_form_view` VALUES("13966", "1", "2015-07-14 15:29:05", "62.210.140.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("13967", "3", "2015-07-14 16:02:32", "202.46.50.187", "125");
INSERT INTO `wp_gf_form_view` VALUES("13968", "3", "2015-07-14 17:01:05", "202.46.53.160", "40");
INSERT INTO `wp_gf_form_view` VALUES("13969", "3", "2015-07-14 18:11:20", "202.46.49.201", "35");
INSERT INTO `wp_gf_form_view` VALUES("13970", "3", "2015-07-14 19:00:44", "24.68.246.172", "50");
INSERT INTO `wp_gf_form_view` VALUES("13971", "3", "2015-07-14 20:08:23", "202.46.51.166", "50");
INSERT INTO `wp_gf_form_view` VALUES("13972", "3", "2015-07-14 21:05:31", "184.66.117.88", "92");
INSERT INTO `wp_gf_form_view` VALUES("13973", "6", "2015-07-14 21:29:07", "148.251.124.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("13974", "3", "2015-07-14 22:05:27", "202.46.49.204", "50");
INSERT INTO `wp_gf_form_view` VALUES("13975", "3", "2015-07-14 23:03:59", "202.46.54.186", "25");
INSERT INTO `wp_gf_form_view` VALUES("13976", "3", "2015-07-15 15:56:46", "202.46.56.135", "10");
INSERT INTO `wp_gf_form_view` VALUES("13977", "3", "2015-07-15 16:02:47", "202.46.52.157", "21");
INSERT INTO `wp_gf_form_view` VALUES("13978", "3", "2015-07-15 17:00:21", "202.46.57.202", "54");
INSERT INTO `wp_gf_form_view` VALUES("13979", "3", "2015-07-15 18:11:19", "202.46.52.150", "40");
INSERT INTO `wp_gf_form_view` VALUES("13980", "3", "2015-07-15 19:01:05", "50.65.54.113", "40");
INSERT INTO `wp_gf_form_view` VALUES("13981", "5", "2015-07-15 19:21:34", "202.46.57.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("13982", "3", "2015-07-15 20:08:23", "202.46.48.139", "65");
INSERT INTO `wp_gf_form_view` VALUES("13983", "3", "2015-07-15 21:06:54", "202.46.53.177", "50");
INSERT INTO `wp_gf_form_view` VALUES("13984", "3", "2015-07-15 22:04:42", "12.32.90.76", "66");
INSERT INTO `wp_gf_form_view` VALUES("13985", "3", "2015-07-15 23:02:25", "24.114.25.112", "65");
INSERT INTO `wp_gf_form_view` VALUES("13986", "3", "2015-07-16 00:02:32", "202.46.48.139", "35");
INSERT INTO `wp_gf_form_view` VALUES("13987", "3", "2015-07-16 01:01:03", "202.46.49.209", "50");
INSERT INTO `wp_gf_form_view` VALUES("13988", "3", "2015-07-16 02:11:17", "202.46.51.156", "35");
INSERT INTO `wp_gf_form_view` VALUES("13989", "3", "2015-07-16 03:09:50", "202.46.54.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("13990", "3", "2015-07-16 04:08:23", "202.46.56.134", "40");
INSERT INTO `wp_gf_form_view` VALUES("13991", "3", "2015-07-16 05:00:13", "24.68.32.22", "72");
INSERT INTO `wp_gf_form_view` VALUES("13992", "3", "2015-07-16 06:05:56", "202.46.52.174", "60");
INSERT INTO `wp_gf_form_view` VALUES("13993", "3", "2015-07-16 07:04:06", "202.46.48.131", "41");
INSERT INTO `wp_gf_form_view` VALUES("13994", "3", "2015-07-16 08:02:32", "202.46.52.146", "35");
INSERT INTO `wp_gf_form_view` VALUES("13995", "3", "2015-07-16 09:01:09", "202.46.52.140", "50");
INSERT INTO `wp_gf_form_view` VALUES("13996", "3", "2015-07-16 10:11:18", "202.46.56.189", "20");
INSERT INTO `wp_gf_form_view` VALUES("13997", "3", "2015-07-16 11:01:06", "58.62.234.190", "45");
INSERT INTO `wp_gf_form_view` VALUES("13998", "3", "2015-07-16 12:08:24", "202.46.50.138", "35");
INSERT INTO `wp_gf_form_view` VALUES("13999", "3", "2015-07-16 13:06:54", "202.46.54.184", "79");
INSERT INTO `wp_gf_form_view` VALUES("14000", "3", "2015-07-16 14:05:35", "202.46.57.205", "50");
INSERT INTO `wp_gf_form_view` VALUES("14001", "3", "2015-07-16 15:01:51", "66.249.67.70", "51");
INSERT INTO `wp_gf_form_view` VALUES("14002", "3", "2015-07-16 16:00:29", "68.180.229.183", "45");
INSERT INTO `wp_gf_form_view` VALUES("14003", "3", "2015-07-16 17:01:03", "202.46.51.183", "45");
INSERT INTO `wp_gf_form_view` VALUES("14004", "3", "2015-07-16 18:11:20", "202.46.51.207", "60");
INSERT INTO `wp_gf_form_view` VALUES("14005", "6", "2015-07-16 18:24:09", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("14006", "1", "2015-07-16 18:40:49", "173.239.125.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("14007", "3", "2015-07-16 19:09:50", "202.46.58.155", "30");
INSERT INTO `wp_gf_form_view` VALUES("14008", "3", "2015-07-16 20:02:36", "96.54.210.42", "65");
INSERT INTO `wp_gf_form_view` VALUES("14009", "7", "2015-07-16 20:58:05", "96.54.184.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("14010", "3", "2015-07-16 21:06:54", "202.46.52.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("14011", "3", "2015-07-16 22:05:28", "202.46.57.158", "51");
INSERT INTO `wp_gf_form_view` VALUES("14012", "3", "2015-07-16 23:03:58", "202.46.52.208", "55");
INSERT INTO `wp_gf_form_view` VALUES("14013", "1", "2015-07-16 23:09:36", "54.153.30.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("14014", "3", "2015-07-17 00:02:31", "202.46.57.178", "61");
INSERT INTO `wp_gf_form_view` VALUES("14015", "7", "2015-07-17 00:13:22", "157.55.39.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("14016", "3", "2015-07-17 01:01:02", "202.46.52.210", "55");
INSERT INTO `wp_gf_form_view` VALUES("14017", "3", "2015-07-17 02:11:17", "202.46.56.202", "35");
INSERT INTO `wp_gf_form_view` VALUES("14018", "3", "2015-07-17 03:09:49", "202.46.53.141", "30");
INSERT INTO `wp_gf_form_view` VALUES("14019", "3", "2015-07-17 04:08:22", "202.46.55.139", "30");
INSERT INTO `wp_gf_form_view` VALUES("14020", "3", "2015-07-17 05:04:29", "68.180.229.183", "50");
INSERT INTO `wp_gf_form_view` VALUES("14021", "3", "2015-07-17 06:17:09", "202.46.55.149", "73");
INSERT INTO `wp_gf_form_view` VALUES("14022", "2", "2015-07-17 06:55:24", "207.46.13.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("14023", "7", "2015-07-17 06:57:48", "157.55.39.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("14024", "1", "2015-07-17 06:57:51", "157.55.39.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("14025", "3", "2015-07-17 07:02:59", "188.165.15.129", "168");
INSERT INTO `wp_gf_form_view` VALUES("14026", "3", "2015-07-17 08:02:31", "202.46.57.204", "30");
INSERT INTO `wp_gf_form_view` VALUES("14027", "3", "2015-07-17 09:01:02", "202.46.49.145", "35");
INSERT INTO `wp_gf_form_view` VALUES("14028", "1", "2015-07-17 10:05:39", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14029", "3", "2015-07-17 10:05:39", "162.211.122.43", "50");
INSERT INTO `wp_gf_form_view` VALUES("14030", "2", "2015-07-17 10:05:41", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14031", "3", "2015-07-17 11:09:49", "202.46.51.180", "35");
INSERT INTO `wp_gf_form_view` VALUES("14032", "3", "2015-07-17 12:08:21", "202.46.52.175", "80");
INSERT INTO `wp_gf_form_view` VALUES("14033", "2", "2015-07-17 12:39:41", "157.56.2.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("14034", "1", "2015-07-17 12:39:49", "157.56.2.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("14035", "7", "2015-07-17 12:39:57", "157.56.2.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("14036", "3", "2015-07-17 13:06:53", "202.46.54.136", "56");
INSERT INTO `wp_gf_form_view` VALUES("14037", "3", "2015-07-17 14:00:50", "157.55.39.72", "50");
INSERT INTO `wp_gf_form_view` VALUES("14038", "3", "2015-07-17 15:00:06", "77.75.78.161", "45");
INSERT INTO `wp_gf_form_view` VALUES("14039", "3", "2015-07-17 16:02:37", "202.46.50.180", "51");
INSERT INTO `wp_gf_form_view` VALUES("14040", "3", "2015-07-17 17:01:03", "202.46.49.153", "46");
INSERT INTO `wp_gf_form_view` VALUES("14041", "3", "2015-07-17 18:11:16", "202.46.50.160", "40");
INSERT INTO `wp_gf_form_view` VALUES("14042", "3", "2015-07-17 19:09:49", "202.46.53.147", "41");
INSERT INTO `wp_gf_form_view` VALUES("14043", "3", "2015-07-17 20:08:22", "202.46.51.170", "66");
INSERT INTO `wp_gf_form_view` VALUES("14044", "1", "2015-07-17 20:32:43", "216.232.153.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("14045", "3", "2015-07-17 21:06:53", "202.46.48.205", "31");
INSERT INTO `wp_gf_form_view` VALUES("14046", "3", "2015-07-17 22:05:26", "202.46.55.175", "55");
INSERT INTO `wp_gf_form_view` VALUES("14047", "3", "2015-07-17 23:03:57", "202.46.57.169", "45");
INSERT INTO `wp_gf_form_view` VALUES("14048", "3", "2015-07-18 00:02:29", "202.46.56.172", "70");
INSERT INTO `wp_gf_form_view` VALUES("14049", "3", "2015-07-18 01:01:03", "202.46.49.191", "50");
INSERT INTO `wp_gf_form_view` VALUES("14050", "3", "2015-07-18 02:10:31", "68.180.229.183", "35");
INSERT INTO `wp_gf_form_view` VALUES("14051", "3", "2015-07-18 03:09:48", "202.46.49.152", "50");
INSERT INTO `wp_gf_form_view` VALUES("14052", "3", "2015-07-18 04:08:21", "202.46.49.131", "35");
INSERT INTO `wp_gf_form_view` VALUES("14053", "3", "2015-07-18 05:06:56", "202.46.55.135", "46");
INSERT INTO `wp_gf_form_view` VALUES("14054", "3", "2015-07-18 06:05:26", "202.46.54.181", "30");
INSERT INTO `wp_gf_form_view` VALUES("14055", "3", "2015-07-18 07:03:58", "202.46.53.144", "60");
INSERT INTO `wp_gf_form_view` VALUES("14056", "3", "2015-07-18 08:02:32", "202.46.51.155", "40");
INSERT INTO `wp_gf_form_view` VALUES("14057", "3", "2015-07-18 09:01:04", "202.46.51.181", "50");
INSERT INTO `wp_gf_form_view` VALUES("14058", "3", "2015-07-18 10:11:16", "202.46.55.148", "51");
INSERT INTO `wp_gf_form_view` VALUES("14059", "3", "2015-07-18 11:09:49", "202.46.56.200", "46");
INSERT INTO `wp_gf_form_view` VALUES("14060", "3", "2015-07-18 12:08:20", "202.46.48.200", "45");
INSERT INTO `wp_gf_form_view` VALUES("14061", "3", "2015-07-18 13:06:52", "202.46.51.178", "40");
INSERT INTO `wp_gf_form_view` VALUES("14062", "3", "2015-07-18 14:05:29", "202.46.53.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("14063", "3", "2015-07-18 15:03:57", "202.46.54.163", "45");
INSERT INTO `wp_gf_form_view` VALUES("14064", "3", "2015-07-18 16:02:30", "202.46.56.183", "40");
INSERT INTO `wp_gf_form_view` VALUES("14065", "3", "2015-07-18 17:01:01", "202.46.51.166", "40");
INSERT INTO `wp_gf_form_view` VALUES("14066", "3", "2015-07-18 18:02:21", "68.180.229.183", "101");
INSERT INTO `wp_gf_form_view` VALUES("14067", "3", "2015-07-18 19:09:48", "202.46.51.159", "60");
INSERT INTO `wp_gf_form_view` VALUES("14068", "2", "2015-07-18 19:39:57", "24.68.130.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("14069", "1", "2015-07-18 19:40:51", "24.68.130.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("14070", "3", "2015-07-18 20:08:21", "202.46.54.183", "40");
INSERT INTO `wp_gf_form_view` VALUES("14071", "3", "2015-07-18 21:06:52", "202.46.57.174", "45");
INSERT INTO `wp_gf_form_view` VALUES("14072", "3", "2015-07-18 22:05:25", "202.46.56.142", "50");
INSERT INTO `wp_gf_form_view` VALUES("14073", "3", "2015-07-18 23:00:54", "68.180.229.183", "50");
INSERT INTO `wp_gf_form_view` VALUES("14074", "3", "2015-07-19 00:02:30", "202.46.52.156", "20");
INSERT INTO `wp_gf_form_view` VALUES("14075", "3", "2015-07-19 01:00:47", "207.46.13.8", "45");
INSERT INTO `wp_gf_form_view` VALUES("14076", "3", "2015-07-19 02:11:16", "202.46.51.172", "30");
INSERT INTO `wp_gf_form_view` VALUES("14077", "3", "2015-07-19 03:09:50", "202.46.48.132", "36");
INSERT INTO `wp_gf_form_view` VALUES("14078", "3", "2015-07-19 04:08:21", "202.46.57.209", "40");
INSERT INTO `wp_gf_form_view` VALUES("14079", "3", "2015-07-19 05:06:52", "202.46.52.175", "60");
INSERT INTO `wp_gf_form_view` VALUES("14080", "3", "2015-07-19 06:05:24", "202.46.56.135", "268");
INSERT INTO `wp_gf_form_view` VALUES("14081", "7", "2015-07-19 06:53:02", "24.187.20.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("14082", "1", "2015-07-19 06:53:53", "24.187.20.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("14083", "2", "2015-07-19 06:53:59", "24.187.20.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("14084", "3", "2015-07-19 07:03:27", "157.55.39.12", "50");
INSERT INTO `wp_gf_form_view` VALUES("14085", "3", "2015-07-19 08:02:31", "202.46.51.200", "45");
INSERT INTO `wp_gf_form_view` VALUES("14086", "3", "2015-07-19 09:01:02", "202.46.55.175", "45");
INSERT INTO `wp_gf_form_view` VALUES("14087", "3", "2015-07-19 10:11:16", "202.46.56.197", "46");
INSERT INTO `wp_gf_form_view` VALUES("14088", "3", "2015-07-19 11:09:48", "202.46.49.144", "35");
INSERT INTO `wp_gf_form_view` VALUES("14089", "3", "2015-07-19 12:08:21", "202.46.58.139", "50");
INSERT INTO `wp_gf_form_view` VALUES("14090", "3", "2015-07-19 13:06:52", "202.46.52.206", "31");
INSERT INTO `wp_gf_form_view` VALUES("14091", "3", "2015-07-19 14:05:25", "202.46.50.210", "156");
INSERT INTO `wp_gf_form_view` VALUES("14092", "2", "2015-07-19 14:08:28", "207.46.13.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("14093", "1", "2015-07-19 14:57:41", "216.232.153.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("14094", "3", "2015-07-19 15:03:56", "202.46.56.206", "200");
INSERT INTO `wp_gf_form_view` VALUES("14095", "1", "2015-07-19 15:15:23", "157.55.39.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("14096", "7", "2015-07-19 15:51:20", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("14097", "2", "2015-07-19 15:51:37", "84.85.74.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("14098", "3", "2015-07-19 16:02:29", "202.46.58.156", "20");
INSERT INTO `wp_gf_form_view` VALUES("14099", "3", "2015-07-19 17:01:01", "202.46.58.198", "40");
INSERT INTO `wp_gf_form_view` VALUES("14100", "3", "2015-07-19 18:03:06", "66.249.67.64", "221");
INSERT INTO `wp_gf_form_view` VALUES("14101", "7", "2015-07-19 18:46:26", "46.165.197.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("14102", "1", "2015-07-19 18:46:33", "46.165.197.141", "5");
INSERT INTO `wp_gf_form_view` VALUES("14103", "1", "2015-07-19 19:03:40", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("14104", "3", "2015-07-19 19:03:40", "107.150.42.226", "132");
INSERT INTO `wp_gf_form_view` VALUES("14105", "2", "2015-07-19 19:40:45", "66.249.67.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("14106", "3", "2015-07-19 20:03:44", "204.12.241.170", "92");
INSERT INTO `wp_gf_form_view` VALUES("14107", "3", "2015-07-19 21:06:52", "202.46.49.208", "35");
INSERT INTO `wp_gf_form_view` VALUES("14108", "3", "2015-07-19 22:05:25", "202.46.51.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("14109", "3", "2015-07-19 23:03:57", "202.46.54.182", "25");
INSERT INTO `wp_gf_form_view` VALUES("14110", "3", "2015-07-20 00:02:29", "202.46.50.156", "30");
INSERT INTO `wp_gf_form_view` VALUES("14111", "3", "2015-07-20 01:01:02", "202.46.57.177", "40");
INSERT INTO `wp_gf_form_view` VALUES("14112", "3", "2015-07-20 02:06:58", "198.245.62.10", "200");
INSERT INTO `wp_gf_form_view` VALUES("14113", "6", "2015-07-20 02:13:37", "198.245.62.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("14114", "3", "2015-07-20 03:01:03", "66.249.67.64", "77");
INSERT INTO `wp_gf_form_view` VALUES("14115", "3", "2015-07-20 04:02:59", "64.180.76.161", "75");
INSERT INTO `wp_gf_form_view` VALUES("14116", "2", "2015-07-20 04:15:04", "64.180.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("14117", "5", "2015-07-20 04:47:14", "188.40.109.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("14118", "3", "2015-07-20 05:06:54", "202.46.53.157", "40");
INSERT INTO `wp_gf_form_view` VALUES("14119", "3", "2015-07-20 06:05:25", "202.46.52.145", "72");
INSERT INTO `wp_gf_form_view` VALUES("14120", "2", "2015-07-20 06:56:10", "207.46.13.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("14121", "3", "2015-07-20 07:03:57", "202.46.53.141", "35");
INSERT INTO `wp_gf_form_view` VALUES("14122", "3", "2015-07-20 08:02:30", "202.46.52.210", "41");
INSERT INTO `wp_gf_form_view` VALUES("14123", "2", "2015-07-20 08:11:15", "192.99.1.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("14124", "3", "2015-07-20 09:01:06", "202.46.52.142", "45");
INSERT INTO `wp_gf_form_view` VALUES("14125", "3", "2015-07-20 10:04:39", "208.115.113.83", "36");
INSERT INTO `wp_gf_form_view` VALUES("14126", "3", "2015-07-20 11:09:48", "202.46.56.209", "43");
INSERT INTO `wp_gf_form_view` VALUES("14127", "3", "2015-07-20 12:08:20", "202.46.50.153", "45");
INSERT INTO `wp_gf_form_view` VALUES("14128", "3", "2015-07-20 13:06:53", "202.46.58.198", "45");
INSERT INTO `wp_gf_form_view` VALUES("14129", "3", "2015-07-20 14:05:25", "202.46.52.159", "36");
INSERT INTO `wp_gf_form_view` VALUES("14130", "3", "2015-07-20 15:03:57", "202.46.51.191", "30");
INSERT INTO `wp_gf_form_view` VALUES("14131", "3", "2015-07-20 16:02:30", "202.46.57.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("14132", "1", "2015-07-20 17:07:15", "97.75.177.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("14133", "3", "2015-07-20 17:07:16", "97.75.177.149", "50");
INSERT INTO `wp_gf_form_view` VALUES("14134", "3", "2015-07-20 18:11:16", "202.46.53.196", "46");
INSERT INTO `wp_gf_form_view` VALUES("14135", "3", "2015-07-20 19:00:55", "157.55.39.227", "40");
INSERT INTO `wp_gf_form_view` VALUES("14136", "3", "2015-07-20 20:08:20", "202.46.57.179", "35");
INSERT INTO `wp_gf_form_view` VALUES("14137", "3", "2015-07-20 21:06:52", "202.46.54.204", "30");
INSERT INTO `wp_gf_form_view` VALUES("14138", "3", "2015-07-20 22:05:25", "202.46.55.179", "55");
INSERT INTO `wp_gf_form_view` VALUES("14139", "3", "2015-07-20 23:03:57", "202.46.49.206", "50");
INSERT INTO `wp_gf_form_view` VALUES("14140", "3", "2015-07-21 00:02:28", "202.46.55.146", "30");
INSERT INTO `wp_gf_form_view` VALUES("14141", "3", "2015-07-21 01:01:01", "202.46.57.168", "36");
INSERT INTO `wp_gf_form_view` VALUES("14142", "3", "2015-07-21 02:11:16", "202.46.53.154", "95");
INSERT INTO `wp_gf_form_view` VALUES("14143", "3", "2015-07-21 03:01:32", "217.69.133.233", "56");
INSERT INTO `wp_gf_form_view` VALUES("14144", "3", "2015-07-21 04:08:28", "202.46.52.175", "45");
INSERT INTO `wp_gf_form_view` VALUES("14145", "3", "2015-07-21 05:06:53", "202.46.51.176", "40");
INSERT INTO `wp_gf_form_view` VALUES("14146", "3", "2015-07-21 06:05:26", "202.46.58.157", "40");
INSERT INTO `wp_gf_form_view` VALUES("14147", "3", "2015-07-21 07:03:56", "202.46.50.191", "50");
INSERT INTO `wp_gf_form_view` VALUES("14148", "1", "2015-07-21 07:16:51", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14149", "2", "2015-07-21 07:16:53", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14150", "3", "2015-07-21 08:02:33", "202.46.50.164", "40");
INSERT INTO `wp_gf_form_view` VALUES("14151", "3", "2015-07-21 09:01:00", "202.46.49.200", "95");
INSERT INTO `wp_gf_form_view` VALUES("14152", "7", "2015-07-21 09:04:08", "174.129.215.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("14153", "3", "2015-07-21 10:11:15", "202.46.58.192", "46");
INSERT INTO `wp_gf_form_view` VALUES("14154", "3", "2015-07-21 11:09:48", "202.46.56.180", "46");
INSERT INTO `wp_gf_form_view` VALUES("14155", "3", "2015-07-21 12:30:07", "202.46.49.135", "15");
INSERT INTO `wp_gf_form_view` VALUES("14156", "3", "2015-07-21 13:41:25", "202.46.53.148", "15");
INSERT INTO `wp_gf_form_view` VALUES("14157", "1", "2015-07-21 14:00:57", "54.174.170.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("14158", "3", "2015-07-21 14:00:58", "54.174.170.153", "35");
INSERT INTO `wp_gf_form_view` VALUES("14159", "3", "2015-07-21 15:03:19", "202.46.55.143", "185");
INSERT INTO `wp_gf_form_view` VALUES("14160", "6", "2015-07-21 15:25:12", "62.212.73.211", "3");
INSERT INTO `wp_gf_form_view` VALUES("14161", "2", "2015-07-21 15:42:07", "107.150.42.226", "6");
INSERT INTO `wp_gf_form_view` VALUES("14162", "3", "2015-07-21 16:00:30", "207.46.13.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("14163", "3", "2015-07-21 17:02:33", "184.69.99.190", "151");
INSERT INTO `wp_gf_form_view` VALUES("14164", "7", "2015-07-21 17:04:49", "184.69.99.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("14165", "3", "2015-07-21 18:07:02", "202.46.56.206", "55");
INSERT INTO `wp_gf_form_view` VALUES("14166", "1", "2015-07-21 18:37:31", "204.12.239.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("14167", "3", "2015-07-21 19:05:33", "202.46.54.210", "41");
INSERT INTO `wp_gf_form_view` VALUES("14168", "3", "2015-07-21 20:00:08", "207.6.121.116", "130");
INSERT INTO `wp_gf_form_view` VALUES("14169", "3", "2015-07-21 21:02:38", "202.46.55.136", "80");
INSERT INTO `wp_gf_form_view` VALUES("14170", "1", "2015-07-21 21:51:24", "24.114.38.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("14171", "3", "2015-07-21 22:01:10", "202.46.56.210", "66");
INSERT INTO `wp_gf_form_view` VALUES("14172", "1", "2015-07-21 23:09:47", "52.11.140.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("14173", "3", "2015-07-21 23:09:47", "52.11.140.10", "36");
INSERT INTO `wp_gf_form_view` VALUES("14174", "3", "2015-07-22 00:09:57", "202.46.49.141", "35");
INSERT INTO `wp_gf_form_view` VALUES("14175", "3", "2015-07-22 01:03:33", "66.249.67.76", "50");
INSERT INTO `wp_gf_form_view` VALUES("14176", "3", "2015-07-22 02:07:01", "202.46.56.135", "60");
INSERT INTO `wp_gf_form_view` VALUES("14177", "3", "2015-07-22 03:05:33", "202.46.58.151", "60");
INSERT INTO `wp_gf_form_view` VALUES("14178", "7", "2015-07-22 03:37:10", "68.180.229.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("14179", "3", "2015-07-22 04:04:06", "202.46.54.196", "216");
INSERT INTO `wp_gf_form_view` VALUES("14180", "1", "2015-07-22 04:24:33", "188.65.117.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("14181", "2", "2015-07-22 04:25:15", "188.65.117.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("14182", "7", "2015-07-22 04:26:30", "188.65.117.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("14183", "3", "2015-07-22 05:02:38", "202.46.51.193", "92");
INSERT INTO `wp_gf_form_view` VALUES("14184", "3", "2015-07-22 06:01:11", "202.46.56.182", "101");
INSERT INTO `wp_gf_form_view` VALUES("14185", "1", "2015-07-22 06:52:36", "204.12.239.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("14186", "3", "2015-07-22 07:11:26", "202.46.57.202", "35");
INSERT INTO `wp_gf_form_view` VALUES("14187", "3", "2015-07-22 08:10:02", "202.46.49.131", "40");
INSERT INTO `wp_gf_form_view` VALUES("14188", "3", "2015-07-22 09:08:29", "202.46.58.160", "30");
INSERT INTO `wp_gf_form_view` VALUES("14189", "3", "2015-07-22 10:07:01", "202.46.50.187", "35");
INSERT INTO `wp_gf_form_view` VALUES("14190", "3", "2015-07-22 11:05:33", "202.46.52.178", "35");
INSERT INTO `wp_gf_form_view` VALUES("14191", "3", "2015-07-22 12:04:05", "202.46.51.170", "61");
INSERT INTO `wp_gf_form_view` VALUES("14192", "3", "2015-07-22 13:02:40", "202.46.50.189", "46");
INSERT INTO `wp_gf_form_view` VALUES("14193", "3", "2015-07-22 14:01:10", "202.46.51.165", "58");
INSERT INTO `wp_gf_form_view` VALUES("14194", "1", "2015-07-22 14:57:16", "68.180.229.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("14195", "3", "2015-07-22 15:11:25", "202.46.51.210", "56");
INSERT INTO `wp_gf_form_view` VALUES("14196", "3", "2015-07-22 16:00:37", "142.31.19.54", "47");
INSERT INTO `wp_gf_form_view` VALUES("14197", "3", "2015-07-22 17:10:12", "202.46.53.191", "40");
INSERT INTO `wp_gf_form_view` VALUES("14198", "3", "2015-07-22 18:07:03", "202.46.52.150", "50");
INSERT INTO `wp_gf_form_view` VALUES("14199", "2", "2015-07-22 18:48:38", "68.180.229.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("14200", "3", "2015-07-22 19:05:33", "202.46.55.153", "35");
INSERT INTO `wp_gf_form_view` VALUES("14201", "1", "2015-07-22 19:40:48", "204.12.239.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("14202", "8", "2015-07-22 19:52:24", "202.46.52.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("14203", "3", "2015-07-22 20:04:06", "202.46.48.210", "55");
INSERT INTO `wp_gf_form_view` VALUES("14204", "8", "2015-07-22 20:04:06", "202.46.48.210", "11");
INSERT INTO `wp_gf_form_view` VALUES("14205", "3", "2015-07-22 21:02:41", "202.46.51.132", "55");
INSERT INTO `wp_gf_form_view` VALUES("14206", "8", "2015-07-22 21:02:42", "202.46.51.132", "11");
INSERT INTO `wp_gf_form_view` VALUES("14207", "1", "2015-07-22 21:33:53", "108.180.48.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("14208", "3", "2015-07-22 22:01:11", "202.46.57.187", "80");
INSERT INTO `wp_gf_form_view` VALUES("14209", "8", "2015-07-22 22:01:12", "202.46.57.187", "14");
INSERT INTO `wp_gf_form_view` VALUES("14210", "3", "2015-07-22 23:10:33", "68.180.229.183", "60");
INSERT INTO `wp_gf_form_view` VALUES("14211", "8", "2015-07-22 23:10:33", "68.180.229.183", "14");
INSERT INTO `wp_gf_form_view` VALUES("14212", "3", "2015-07-23 00:09:57", "202.46.54.189", "40");
INSERT INTO `wp_gf_form_view` VALUES("14213", "8", "2015-07-23 00:09:58", "202.46.54.189", "7");
INSERT INTO `wp_gf_form_view` VALUES("14214", "3", "2015-07-23 01:04:53", "207.46.13.133", "65");
INSERT INTO `wp_gf_form_view` VALUES("14215", "8", "2015-07-23 01:04:53", "207.46.13.133", "12");
INSERT INTO `wp_gf_form_view` VALUES("14216", "3", "2015-07-23 02:06:32", "188.65.117.147", "45");
INSERT INTO `wp_gf_form_view` VALUES("14217", "8", "2015-07-23 02:06:33", "188.65.117.147", "11");
INSERT INTO `wp_gf_form_view` VALUES("14218", "3", "2015-07-23 03:05:33", "202.46.50.184", "36");
INSERT INTO `wp_gf_form_view` VALUES("14219", "8", "2015-07-23 03:05:33", "202.46.50.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("14220", "8", "2015-07-23 04:04:05", "202.46.52.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("14221", "3", "2015-07-23 04:04:06", "202.46.52.172", "30");
INSERT INTO `wp_gf_form_view` VALUES("14222", "3", "2015-07-23 05:02:38", "202.46.52.148", "50");
INSERT INTO `wp_gf_form_view` VALUES("14223", "8", "2015-07-23 05:02:38", "202.46.52.148", "11");
INSERT INTO `wp_gf_form_view` VALUES("14224", "3", "2015-07-23 06:01:10", "202.46.54.169", "50");
INSERT INTO `wp_gf_form_view` VALUES("14225", "8", "2015-07-23 06:01:10", "202.46.54.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("14226", "3", "2015-07-23 07:11:24", "202.46.55.140", "45");
INSERT INTO `wp_gf_form_view` VALUES("14227", "8", "2015-07-23 07:11:24", "202.46.55.140", "10");
INSERT INTO `wp_gf_form_view` VALUES("14228", "1", "2015-07-23 07:23:22", "204.12.239.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("14229", "8", "2015-07-23 08:10:21", "202.46.53.175", "13");
INSERT INTO `wp_gf_form_view` VALUES("14230", "3", "2015-07-23 08:10:26", "202.46.53.175", "60");
INSERT INTO `wp_gf_form_view` VALUES("14231", "3", "2015-07-23 09:06:55", "66.249.67.64", "51");
INSERT INTO `wp_gf_form_view` VALUES("14232", "8", "2015-07-23 09:06:56", "66.249.67.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("14233", "3", "2015-07-23 10:07:02", "202.46.57.172", "86");
INSERT INTO `wp_gf_form_view` VALUES("14234", "8", "2015-07-23 10:07:02", "202.46.57.172", "14");
INSERT INTO `wp_gf_form_view` VALUES("14235", "3", "2015-07-23 11:02:28", "66.249.67.64", "35");
INSERT INTO `wp_gf_form_view` VALUES("14236", "8", "2015-07-23 11:02:28", "66.249.67.64", "7");
INSERT INTO `wp_gf_form_view` VALUES("14237", "8", "2015-07-23 12:04:05", "202.46.50.210", "13");
INSERT INTO `wp_gf_form_view` VALUES("14238", "3", "2015-07-23 12:04:05", "202.46.50.210", "50");
INSERT INTO `wp_gf_form_view` VALUES("14239", "3", "2015-07-23 13:02:37", "202.46.52.169", "45");
INSERT INTO `wp_gf_form_view` VALUES("14240", "8", "2015-07-23 13:02:37", "202.46.52.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("14241", "3", "2015-07-23 14:01:09", "202.46.51.157", "80");
INSERT INTO `wp_gf_form_view` VALUES("14242", "8", "2015-07-23 14:01:09", "202.46.51.157", "14");
INSERT INTO `wp_gf_form_view` VALUES("14243", "3", "2015-07-23 15:11:24", "202.46.51.159", "30");
INSERT INTO `wp_gf_form_view` VALUES("14244", "8", "2015-07-23 15:11:25", "202.46.51.159", "6");
INSERT INTO `wp_gf_form_view` VALUES("14245", "3", "2015-07-23 16:02:31", "104.142.122.209", "70");
INSERT INTO `wp_gf_form_view` VALUES("14246", "8", "2015-07-23 16:02:31", "104.142.122.209", "14");
INSERT INTO `wp_gf_form_view` VALUES("14247", "3", "2015-07-23 17:04:19", "66.102.6.239", "181");
INSERT INTO `wp_gf_form_view` VALUES("14248", "8", "2015-07-23 17:04:20", "66.102.6.239", "34");
INSERT INTO `wp_gf_form_view` VALUES("14249", "7", "2015-07-23 17:24:22", "89.123.12.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("14250", "1", "2015-07-23 17:24:37", "89.123.12.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("14251", "2", "2015-07-23 17:24:44", "89.123.12.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("14252", "3", "2015-07-23 18:07:01", "202.46.49.153", "60");
INSERT INTO `wp_gf_form_view` VALUES("14253", "8", "2015-07-23 18:07:01", "202.46.49.153", "11");
INSERT INTO `wp_gf_form_view` VALUES("14254", "3", "2015-07-23 19:05:33", "202.46.51.207", "86");
INSERT INTO `wp_gf_form_view` VALUES("14255", "8", "2015-07-23 19:05:33", "202.46.51.207", "17");
INSERT INTO `wp_gf_form_view` VALUES("14256", "1", "2015-07-23 19:13:28", "204.12.239.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("14257", "3", "2015-07-23 20:04:05", "202.46.53.148", "30");
INSERT INTO `wp_gf_form_view` VALUES("14258", "8", "2015-07-23 20:04:06", "202.46.53.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("14259", "3", "2015-07-23 21:02:06", "157.55.39.10", "50");
INSERT INTO `wp_gf_form_view` VALUES("14260", "8", "2015-07-23 21:02:06", "157.55.39.10", "10");
INSERT INTO `wp_gf_form_view` VALUES("14261", "3", "2015-07-23 22:01:09", "202.46.48.136", "66");
INSERT INTO `wp_gf_form_view` VALUES("14262", "8", "2015-07-23 22:01:09", "202.46.48.136", "12");
INSERT INTO `wp_gf_form_view` VALUES("14263", "5", "2015-07-23 22:56:33", "78.94.83.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("14264", "3", "2015-07-23 23:06:58", "151.80.31.147", "65");
INSERT INTO `wp_gf_form_view` VALUES("14265", "8", "2015-07-23 23:06:59", "151.80.31.147", "12");
INSERT INTO `wp_gf_form_view` VALUES("14266", "1", "2015-07-23 23:10:44", "141.8.143.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("14267", "3", "2015-07-24 00:09:58", "202.46.57.168", "35");
INSERT INTO `wp_gf_form_view` VALUES("14268", "8", "2015-07-24 00:09:58", "202.46.57.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("14269", "3", "2015-07-24 01:08:35", "202.46.54.161", "165");
INSERT INTO `wp_gf_form_view` VALUES("14270", "8", "2015-07-24 01:08:36", "202.46.54.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("14271", "7", "2015-07-24 01:54:28", "167.88.44.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("14272", "1", "2015-07-24 01:54:38", "167.88.44.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("14273", "2", "2015-07-24 01:54:42", "167.88.44.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("14274", "3", "2015-07-24 02:07:00", "202.46.56.180", "80");
INSERT INTO `wp_gf_form_view` VALUES("14275", "8", "2015-07-24 02:07:00", "202.46.56.180", "16");
INSERT INTO `wp_gf_form_view` VALUES("14276", "3", "2015-07-24 03:00:05", "66.249.67.64", "86");
INSERT INTO `wp_gf_form_view` VALUES("14277", "8", "2015-07-24 03:00:06", "66.249.67.64", "18");
INSERT INTO `wp_gf_form_view` VALUES("14278", "3", "2015-07-24 04:05:52", "202.46.53.156", "37");
INSERT INTO `wp_gf_form_view` VALUES("14279", "8", "2015-07-24 04:05:52", "202.46.53.156", "7");
INSERT INTO `wp_gf_form_view` VALUES("14280", "3", "2015-07-24 05:41:53", "188.65.117.158", "5");
INSERT INTO `wp_gf_form_view` VALUES("14281", "8", "2015-07-24 05:41:53", "188.65.117.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("14282", "3", "2015-07-24 06:10:29", "68.180.229.252", "21");
INSERT INTO `wp_gf_form_view` VALUES("14283", "8", "2015-07-24 06:10:29", "68.180.229.252", "5");
INSERT INTO `wp_gf_form_view` VALUES("14284", "1", "2015-07-24 06:47:23", "204.12.239.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("14285", "3", "2015-07-24 07:06:31", "77.75.76.167", "45");
INSERT INTO `wp_gf_form_view` VALUES("14286", "8", "2015-07-24 07:06:31", "77.75.76.167", "9");
INSERT INTO `wp_gf_form_view` VALUES("14287", "3", "2015-07-24 08:27:38", "68.180.229.252", "10");
INSERT INTO `wp_gf_form_view` VALUES("14288", "8", "2015-07-24 08:27:40", "68.180.229.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("14289", "3", "2015-07-24 09:03:52", "104.154.67.7", "60");
INSERT INTO `wp_gf_form_view` VALUES("14290", "8", "2015-07-24 09:03:52", "104.154.67.7", "13");
INSERT INTO `wp_gf_form_view` VALUES("14291", "7", "2015-07-24 09:03:57", "104.154.67.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("14292", "2", "2015-07-24 09:04:05", "104.154.67.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("14293", "3", "2015-07-24 10:15:32", "141.8.143.183", "10");
INSERT INTO `wp_gf_form_view` VALUES("14294", "8", "2015-07-24 10:15:32", "141.8.143.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("14295", "3", "2015-07-24 11:09:33", "66.249.67.70", "80");
INSERT INTO `wp_gf_form_view` VALUES("14296", "8", "2015-07-24 11:09:35", "66.249.67.70", "16");
INSERT INTO `wp_gf_form_view` VALUES("14297", "8", "2015-07-24 12:12:39", "66.249.67.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("14298", "3", "2015-07-24 12:12:39", "66.249.67.70", "5");
INSERT INTO `wp_gf_form_view` VALUES("14299", "3", "2015-07-24 13:36:26", "104.223.30.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("14300", "8", "2015-07-24 13:36:28", "104.223.30.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("14301", "2", "2015-07-24 14:24:49", "68.180.229.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("14302", "3", "2015-07-24 14:24:49", "68.180.229.252", "10");
INSERT INTO `wp_gf_form_view` VALUES("14303", "8", "2015-07-24 14:24:50", "68.180.229.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("14304", "3", "2015-07-24 16:01:10", "184.69.1.190", "36");
INSERT INTO `wp_gf_form_view` VALUES("14305", "8", "2015-07-24 16:02:47", "184.69.1.190", "8");
INSERT INTO `wp_gf_form_view` VALUES("14306", "3", "2015-07-24 17:02:32", "154.20.33.140", "126");
INSERT INTO `wp_gf_form_view` VALUES("14307", "8", "2015-07-24 17:02:53", "154.20.33.140", "27");
INSERT INTO `wp_gf_form_view` VALUES("14308", "1", "2015-07-24 17:38:58", "58.49.13.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("14309", "3", "2015-07-24 18:01:23", "202.46.52.140", "55");
INSERT INTO `wp_gf_form_view` VALUES("14310", "8", "2015-07-24 18:01:26", "202.46.52.140", "11");
INSERT INTO `wp_gf_form_view` VALUES("14311", "1", "2015-07-24 18:20:25", "204.12.239.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("14312", "3", "2015-07-24 19:00:13", "109.169.29.30", "165");
INSERT INTO `wp_gf_form_view` VALUES("14313", "8", "2015-07-24 19:00:14", "109.169.29.30", "32");
INSERT INTO `wp_gf_form_view` VALUES("14314", "7", "2015-07-24 19:01:04", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("14315", "5", "2015-07-24 19:01:13", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("14316", "2", "2015-07-24 19:01:36", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("14317", "3", "2015-07-24 20:09:39", "216.232.156.187", "55");
INSERT INTO `wp_gf_form_view` VALUES("14318", "8", "2015-07-24 20:09:40", "216.232.156.187", "9");
INSERT INTO `wp_gf_form_view` VALUES("14319", "3", "2015-07-24 21:08:29", "202.46.57.205", "50");
INSERT INTO `wp_gf_form_view` VALUES("14320", "8", "2015-07-24 21:08:29", "202.46.57.205", "10");
INSERT INTO `wp_gf_form_view` VALUES("14321", "5", "2015-07-24 21:36:32", "188.65.117.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("14322", "3", "2015-07-24 22:07:01", "202.46.50.186", "37");
INSERT INTO `wp_gf_form_view` VALUES("14323", "8", "2015-07-24 22:07:01", "202.46.50.186", "8");
INSERT INTO `wp_gf_form_view` VALUES("14324", "5", "2015-07-24 22:59:45", "198.27.82.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("14325", "3", "2015-07-24 23:00:28", "198.27.82.152", "135");
INSERT INTO `wp_gf_form_view` VALUES("14326", "8", "2015-07-24 23:00:29", "198.27.82.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("14327", "8", "2015-07-25 00:00:04", "162.243.193.21", "288");
INSERT INTO `wp_gf_form_view` VALUES("14328", "3", "2015-07-25 00:00:04", "162.243.193.21", "1336");
INSERT INTO `wp_gf_form_view` VALUES("14329", "1", "2015-07-25 00:02:55", "162.243.193.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("14330", "7", "2015-07-25 00:08:48", "162.243.193.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("14331", "5", "2015-07-25 00:10:05", "162.243.193.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("14332", "6", "2015-07-25 00:18:39", "162.243.193.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("14333", "3", "2015-07-25 01:02:37", "202.46.56.193", "57");
INSERT INTO `wp_gf_form_view` VALUES("14334", "8", "2015-07-25 01:02:38", "202.46.56.193", "11");
INSERT INTO `wp_gf_form_view` VALUES("14335", "3", "2015-07-25 02:01:09", "202.46.58.155", "65");
INSERT INTO `wp_gf_form_view` VALUES("14336", "8", "2015-07-25 02:01:10", "202.46.58.155", "15");
INSERT INTO `wp_gf_form_view` VALUES("14337", "8", "2015-07-25 03:11:24", "202.46.49.153", "36");
INSERT INTO `wp_gf_form_view` VALUES("14338", "3", "2015-07-25 03:11:24", "202.46.49.153", "171");
INSERT INTO `wp_gf_form_view` VALUES("14339", "7", "2015-07-25 03:25:59", "59.127.31.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("14340", "1", "2015-07-25 03:26:14", "59.127.31.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("14341", "2", "2015-07-25 03:26:21", "59.127.31.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("14342", "3", "2015-07-25 04:09:56", "202.46.50.180", "46");
INSERT INTO `wp_gf_form_view` VALUES("14343", "8", "2015-07-25 04:09:57", "202.46.50.180", "10");
INSERT INTO `wp_gf_form_view` VALUES("14344", "1", "2015-07-25 04:25:38", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14345", "2", "2015-07-25 04:25:39", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14346", "3", "2015-07-25 05:10:35", "202.46.56.134", "40");
INSERT INTO `wp_gf_form_view` VALUES("14347", "8", "2015-07-25 05:10:35", "202.46.56.134", "8");
INSERT INTO `wp_gf_form_view` VALUES("14348", "3", "2015-07-25 06:07:00", "202.46.54.169", "50");
INSERT INTO `wp_gf_form_view` VALUES("14349", "8", "2015-07-25 06:07:01", "202.46.54.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("14350", "1", "2015-07-25 06:14:59", "204.12.239.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("14351", "3", "2015-07-25 07:02:50", "24.108.144.66", "223");
INSERT INTO `wp_gf_form_view` VALUES("14352", "8", "2015-07-25 07:02:50", "24.108.144.66", "50");
INSERT INTO `wp_gf_form_view` VALUES("14353", "2", "2015-07-25 07:40:23", "157.55.39.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("14354", "7", "2015-07-25 07:50:50", "66.249.67.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("14355", "8", "2015-07-25 08:04:06", "202.46.53.159", "9");
INSERT INTO `wp_gf_form_view` VALUES("14356", "3", "2015-07-25 08:04:07", "202.46.53.159", "40");
INSERT INTO `wp_gf_form_view` VALUES("14357", "6", "2015-07-25 08:50:18", "144.76.71.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("14358", "3", "2015-07-25 09:02:38", "202.46.53.142", "35");
INSERT INTO `wp_gf_form_view` VALUES("14359", "8", "2015-07-25 09:02:39", "202.46.53.142", "8");
INSERT INTO `wp_gf_form_view` VALUES("14360", "3", "2015-07-25 10:01:11", "202.46.51.203", "61");
INSERT INTO `wp_gf_form_view` VALUES("14361", "8", "2015-07-25 10:01:12", "202.46.51.203", "13");
INSERT INTO `wp_gf_form_view` VALUES("14362", "1", "2015-07-25 10:49:51", "141.8.143.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("14363", "3", "2015-07-25 11:11:24", "202.46.51.184", "65");
INSERT INTO `wp_gf_form_view` VALUES("14364", "8", "2015-07-25 11:11:24", "202.46.51.184", "13");
INSERT INTO `wp_gf_form_view` VALUES("14365", "1", "2015-07-25 11:25:49", "220.181.108.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("14366", "2", "2015-07-25 12:09:40", "107.150.42.226", "5");
INSERT INTO `wp_gf_form_view` VALUES("14367", "3", "2015-07-25 12:09:41", "107.150.42.226", "86");
INSERT INTO `wp_gf_form_view` VALUES("14368", "3", "2015-07-25 12:09:41", "107.150.42.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("14369", "8", "2015-07-25 12:09:41", "107.150.42.226", "17");
INSERT INTO `wp_gf_form_view` VALUES("14370", "3", "2015-07-25 13:01:46", "199.21.99.193", "35");
INSERT INTO `wp_gf_form_view` VALUES("14371", "8", "2015-07-25 13:01:47", "199.21.99.193", "8");
INSERT INTO `wp_gf_form_view` VALUES("14372", "3", "2015-07-25 14:18:44", "202.46.57.199", "35");
INSERT INTO `wp_gf_form_view` VALUES("14373", "8", "2015-07-25 14:18:45", "202.46.57.199", "6");
INSERT INTO `wp_gf_form_view` VALUES("14374", "3", "2015-07-25 15:05:33", "202.46.53.156", "30");
INSERT INTO `wp_gf_form_view` VALUES("14375", "8", "2015-07-25 15:05:33", "202.46.53.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("14376", "3", "2015-07-25 16:04:05", "202.46.58.150", "45");
INSERT INTO `wp_gf_form_view` VALUES("14377", "8", "2015-07-25 16:04:05", "202.46.58.150", "10");
INSERT INTO `wp_gf_form_view` VALUES("14378", "8", "2015-07-25 17:01:42", "151.80.31.147", "12");
INSERT INTO `wp_gf_form_view` VALUES("14379", "3", "2015-07-25 17:01:42", "151.80.31.147", "55");
INSERT INTO `wp_gf_form_view` VALUES("14380", "8", "2015-07-25 18:01:09", "202.46.51.180", "16");
INSERT INTO `wp_gf_form_view` VALUES("14381", "3", "2015-07-25 18:01:09", "202.46.51.180", "68");
INSERT INTO `wp_gf_form_view` VALUES("14382", "1", "2015-07-25 18:33:15", "204.12.239.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("14383", "3", "2015-07-25 19:11:24", "202.46.52.147", "388");
INSERT INTO `wp_gf_form_view` VALUES("14384", "8", "2015-07-25 19:11:25", "202.46.52.147", "80");
INSERT INTO `wp_gf_form_view` VALUES("14385", "7", "2015-07-25 19:29:48", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("14386", "2", "2015-07-25 19:30:06", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("14387", "1", "2015-07-25 19:30:10", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("14388", "6", "2015-07-25 19:34:36", "157.55.39.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("14389", "5", "2015-07-25 19:35:35", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("14390", "8", "2015-07-25 20:01:59", "162.210.196.98", "13");
INSERT INTO `wp_gf_form_view` VALUES("14391", "3", "2015-07-25 20:02:16", "162.210.196.98", "50");
INSERT INTO `wp_gf_form_view` VALUES("14392", "3", "2015-07-25 21:04:04", "93.186.202.241", "56");
INSERT INTO `wp_gf_form_view` VALUES("14393", "8", "2015-07-25 21:04:04", "93.186.202.241", "13");
INSERT INTO `wp_gf_form_view` VALUES("14394", "3", "2015-07-25 22:06:36", "151.80.31.147", "25");
INSERT INTO `wp_gf_form_view` VALUES("14395", "8", "2015-07-25 22:06:36", "151.80.31.147", "7");
INSERT INTO `wp_gf_form_view` VALUES("14396", "3", "2015-07-25 23:03:05", "68.180.229.161", "36");
INSERT INTO `wp_gf_form_view` VALUES("14397", "8", "2015-07-25 23:03:06", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("14398", "3", "2015-07-26 00:04:05", "202.46.57.179", "45");
INSERT INTO `wp_gf_form_view` VALUES("14399", "8", "2015-07-26 00:04:05", "202.46.57.179", "8");
INSERT INTO `wp_gf_form_view` VALUES("14400", "8", "2015-07-26 01:02:37", "202.46.57.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("14401", "3", "2015-07-26 01:02:37", "202.46.57.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("14402", "3", "2015-07-26 02:01:08", "202.46.54.136", "60");
INSERT INTO `wp_gf_form_view` VALUES("14403", "8", "2015-07-26 02:01:09", "202.46.54.136", "12");
INSERT INTO `wp_gf_form_view` VALUES("14404", "1", "2015-07-26 02:46:08", "27.19.177.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("14405", "3", "2015-07-26 03:11:24", "202.46.50.180", "30");
INSERT INTO `wp_gf_form_view` VALUES("14406", "8", "2015-07-26 03:11:25", "202.46.50.180", "5");
INSERT INTO `wp_gf_form_view` VALUES("14407", "3", "2015-07-26 04:20:10", "66.249.67.70", "35");
INSERT INTO `wp_gf_form_view` VALUES("14408", "8", "2015-07-26 04:20:11", "66.249.67.70", "7");
INSERT INTO `wp_gf_form_view` VALUES("14409", "3", "2015-07-26 05:06:47", "202.46.52.168", "35");
INSERT INTO `wp_gf_form_view` VALUES("14410", "8", "2015-07-26 05:06:47", "202.46.52.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("14411", "3", "2015-07-26 06:05:19", "202.46.55.172", "50");
INSERT INTO `wp_gf_form_view` VALUES("14412", "8", "2015-07-26 06:05:20", "202.46.55.172", "10");
INSERT INTO `wp_gf_form_view` VALUES("14413", "1", "2015-07-26 06:13:50", "204.12.239.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("14414", "3", "2015-07-26 07:03:51", "202.46.49.141", "65");
INSERT INTO `wp_gf_form_view` VALUES("14415", "8", "2015-07-26 07:03:52", "202.46.49.141", "11");
INSERT INTO `wp_gf_form_view` VALUES("14416", "3", "2015-07-26 08:02:24", "202.46.55.170", "45");
INSERT INTO `wp_gf_form_view` VALUES("14417", "8", "2015-07-26 08:02:25", "202.46.55.170", "8");
INSERT INTO `wp_gf_form_view` VALUES("14418", "3", "2015-07-26 09:00:56", "202.46.52.179", "51");
INSERT INTO `wp_gf_form_view` VALUES("14419", "8", "2015-07-26 09:00:57", "202.46.52.179", "12");
INSERT INTO `wp_gf_form_view` VALUES("14420", "3", "2015-07-26 10:11:10", "202.46.58.209", "40");
INSERT INTO `wp_gf_form_view` VALUES("14421", "8", "2015-07-26 10:11:11", "202.46.58.209", "7");
INSERT INTO `wp_gf_form_view` VALUES("14422", "3", "2015-07-26 11:07:10", "66.249.67.76", "36");
INSERT INTO `wp_gf_form_view` VALUES("14423", "8", "2015-07-26 11:07:10", "66.249.67.76", "9");
INSERT INTO `wp_gf_form_view` VALUES("14424", "8", "2015-07-26 12:08:15", "202.46.58.198", "8");
INSERT INTO `wp_gf_form_view` VALUES("14425", "3", "2015-07-26 12:08:15", "202.46.58.198", "45");
INSERT INTO `wp_gf_form_view` VALUES("14426", "8", "2015-07-26 13:06:47", "202.46.52.151", "29");
INSERT INTO `wp_gf_form_view` VALUES("14427", "3", "2015-07-26 13:06:47", "202.46.52.151", "141");
INSERT INTO `wp_gf_form_view` VALUES("14428", "7", "2015-07-26 13:10:08", "222.165.203.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("14429", "1", "2015-07-26 13:10:25", "222.165.203.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("14430", "2", "2015-07-26 13:10:33", "222.165.203.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("14431", "3", "2015-07-26 14:02:56", "100.43.91.23", "55");
INSERT INTO `wp_gf_form_view` VALUES("14432", "8", "2015-07-26 14:02:57", "100.43.91.23", "11");
INSERT INTO `wp_gf_form_view` VALUES("14433", "3", "2015-07-26 15:03:52", "202.46.55.171", "40");
INSERT INTO `wp_gf_form_view` VALUES("14434", "8", "2015-07-26 15:03:52", "202.46.55.171", "8");
INSERT INTO `wp_gf_form_view` VALUES("14435", "6", "2015-07-26 15:21:50", "107.152.128.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("14436", "8", "2015-07-26 16:02:24", "202.46.55.179", "9");
INSERT INTO `wp_gf_form_view` VALUES("14437", "3", "2015-07-26 16:02:24", "202.46.55.179", "40");
INSERT INTO `wp_gf_form_view` VALUES("14438", "3", "2015-07-26 17:00:56", "202.46.53.146", "155");
INSERT INTO `wp_gf_form_view` VALUES("14439", "8", "2015-07-26 17:00:57", "202.46.53.146", "32");
INSERT INTO `wp_gf_form_view` VALUES("14440", "1", "2015-07-26 17:21:00", "204.12.239.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("14441", "7", "2015-07-26 17:31:39", "77.161.173.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("14442", "2", "2015-07-26 17:31:59", "77.161.173.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("14443", "3", "2015-07-26 18:11:12", "202.46.51.209", "40");
INSERT INTO `wp_gf_form_view` VALUES("14444", "8", "2015-07-26 18:11:12", "202.46.51.209", "9");
INSERT INTO `wp_gf_form_view` VALUES("14445", "3", "2015-07-26 19:09:42", "202.46.52.157", "40");
INSERT INTO `wp_gf_form_view` VALUES("14446", "8", "2015-07-26 19:09:43", "202.46.52.157", "9");
INSERT INTO `wp_gf_form_view` VALUES("14447", "3", "2015-07-26 20:08:15", "202.46.53.145", "55");
INSERT INTO `wp_gf_form_view` VALUES("14448", "8", "2015-07-26 20:08:15", "202.46.53.145", "9");
INSERT INTO `wp_gf_form_view` VALUES("14449", "8", "2015-07-26 21:06:48", "202.46.56.194", "11");
INSERT INTO `wp_gf_form_view` VALUES("14450", "3", "2015-07-26 21:06:48", "202.46.56.194", "45");
INSERT INTO `wp_gf_form_view` VALUES("14451", "3", "2015-07-26 22:04:26", "68.180.229.161", "41");
INSERT INTO `wp_gf_form_view` VALUES("14452", "8", "2015-07-26 22:04:26", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("14453", "3", "2015-07-26 23:01:09", "110.139.89.61", "55");
INSERT INTO `wp_gf_form_view` VALUES("14454", "8", "2015-07-26 23:01:09", "110.139.89.61", "9");
INSERT INTO `wp_gf_form_view` VALUES("14455", "1", "2015-07-26 23:04:46", "52.11.141.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("14456", "3", "2015-07-27 00:02:24", "202.46.58.150", "40");
INSERT INTO `wp_gf_form_view` VALUES("14457", "8", "2015-07-27 00:02:25", "202.46.58.150", "7");
INSERT INTO `wp_gf_form_view` VALUES("14458", "3", "2015-07-27 01:01:04", "202.46.51.190", "45");
INSERT INTO `wp_gf_form_view` VALUES("14459", "8", "2015-07-27 01:01:04", "202.46.51.190", "7");
INSERT INTO `wp_gf_form_view` VALUES("14460", "3", "2015-07-27 02:08:15", "91.200.12.38", "106");
INSERT INTO `wp_gf_form_view` VALUES("14461", "8", "2015-07-27 02:08:16", "91.200.12.38", "22");
INSERT INTO `wp_gf_form_view` VALUES("14462", "3", "2015-07-27 03:00:47", "207.46.13.86", "60");
INSERT INTO `wp_gf_form_view` VALUES("14463", "8", "2015-07-27 03:00:47", "207.46.13.86", "11");
INSERT INTO `wp_gf_form_view` VALUES("14464", "8", "2015-07-27 04:08:17", "202.46.55.171", "15");
INSERT INTO `wp_gf_form_view` VALUES("14465", "3", "2015-07-27 04:08:19", "202.46.55.171", "70");
INSERT INTO `wp_gf_form_view` VALUES("14466", "1", "2015-07-27 04:46:37", "204.12.239.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("14467", "8", "2015-07-27 05:00:53", "202.46.58.151", "20");
INSERT INTO `wp_gf_form_view` VALUES("14468", "3", "2015-07-27 05:00:53", "202.46.58.151", "101");
INSERT INTO `wp_gf_form_view` VALUES("14469", "3", "2015-07-27 06:05:20", "202.46.53.143", "70");
INSERT INTO `wp_gf_form_view` VALUES("14470", "8", "2015-07-27 06:05:20", "202.46.53.143", "17");
INSERT INTO `wp_gf_form_view` VALUES("14471", "8", "2015-07-27 07:03:51", "202.46.53.160", "17");
INSERT INTO `wp_gf_form_view` VALUES("14472", "3", "2015-07-27 07:03:51", "202.46.53.160", "70");
INSERT INTO `wp_gf_form_view` VALUES("14473", "3", "2015-07-27 08:02:24", "202.46.57.202", "87");
INSERT INTO `wp_gf_form_view` VALUES("14474", "8", "2015-07-27 08:02:24", "202.46.57.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("14475", "3", "2015-07-27 09:00:56", "202.46.49.145", "86");
INSERT INTO `wp_gf_form_view` VALUES("14476", "8", "2015-07-27 09:00:56", "202.46.49.145", "18");
INSERT INTO `wp_gf_form_view` VALUES("14477", "3", "2015-07-27 10:05:27", "202.46.53.202", "113");
INSERT INTO `wp_gf_form_view` VALUES("14478", "8", "2015-07-27 10:05:28", "202.46.53.202", "23");
INSERT INTO `wp_gf_form_view` VALUES("14479", "8", "2015-07-27 11:03:48", "202.46.57.183", "17");
INSERT INTO `wp_gf_form_view` VALUES("14480", "3", "2015-07-27 11:03:49", "202.46.57.183", "75");
INSERT INTO `wp_gf_form_view` VALUES("14481", "8", "2015-07-27 12:02:20", "202.46.53.190", "16");
INSERT INTO `wp_gf_form_view` VALUES("14482", "3", "2015-07-27 12:02:21", "202.46.53.190", "77");
INSERT INTO `wp_gf_form_view` VALUES("14483", "2", "2015-07-27 12:53:03", "176.36.52.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("14484", "3", "2015-07-27 13:00:52", "202.46.54.168", "95");
INSERT INTO `wp_gf_form_view` VALUES("14485", "8", "2015-07-27 13:00:53", "202.46.54.168", "17");
INSERT INTO `wp_gf_form_view` VALUES("14486", "3", "2015-07-27 14:05:19", "202.46.57.171", "113");
INSERT INTO `wp_gf_form_view` VALUES("14487", "8", "2015-07-27 14:05:20", "202.46.57.171", "23");
INSERT INTO `wp_gf_form_view` VALUES("14488", "2", "2015-07-27 14:30:27", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("14489", "3", "2015-07-27 15:03:51", "202.46.48.134", "81");
INSERT INTO `wp_gf_form_view` VALUES("14490", "8", "2015-07-27 15:03:52", "202.46.48.134", "17");
INSERT INTO `wp_gf_form_view` VALUES("14491", "3", "2015-07-27 16:02:56", "202.46.56.179", "127");
INSERT INTO `wp_gf_form_view` VALUES("14492", "8", "2015-07-27 16:02:58", "202.46.56.179", "23");
INSERT INTO `wp_gf_form_view` VALUES("14493", "8", "2015-07-27 17:00:55", "202.46.49.141", "18");
INSERT INTO `wp_gf_form_view` VALUES("14494", "3", "2015-07-27 17:00:56", "202.46.49.141", "71");
INSERT INTO `wp_gf_form_view` VALUES("14495", "1", "2015-07-27 18:02:30", "27.19.177.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("14496", "3", "2015-07-27 18:02:30", "27.19.177.146", "110");
INSERT INTO `wp_gf_form_view` VALUES("14497", "8", "2015-07-27 18:02:31", "27.19.177.146", "21");
INSERT INTO `wp_gf_form_view` VALUES("14498", "3", "2015-07-27 19:03:48", "202.46.54.130", "111");
INSERT INTO `wp_gf_form_view` VALUES("14499", "8", "2015-07-27 19:03:49", "202.46.54.130", "27");
INSERT INTO `wp_gf_form_view` VALUES("14500", "3", "2015-07-27 20:02:21", "202.46.51.163", "86");
INSERT INTO `wp_gf_form_view` VALUES("14501", "8", "2015-07-27 20:02:21", "202.46.51.163", "15");
INSERT INTO `wp_gf_form_view` VALUES("14502", "1", "2015-07-27 20:09:55", "66.249.67.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("14503", "3", "2015-07-27 21:00:52", "202.46.54.182", "105");
INSERT INTO `wp_gf_form_view` VALUES("14504", "8", "2015-07-27 21:00:53", "202.46.54.182", "19");
INSERT INTO `wp_gf_form_view` VALUES("14505", "3", "2015-07-27 22:05:18", "202.46.58.136", "105");
INSERT INTO `wp_gf_form_view` VALUES("14506", "8", "2015-07-27 22:05:19", "202.46.58.136", "17");
INSERT INTO `wp_gf_form_view` VALUES("14507", "3", "2015-07-27 23:03:51", "202.46.55.138", "85");
INSERT INTO `wp_gf_form_view` VALUES("14508", "8", "2015-07-27 23:03:51", "202.46.55.138", "20");
INSERT INTO `wp_gf_form_view` VALUES("14509", "3", "2015-07-28 00:02:23", "202.46.52.169", "87");
INSERT INTO `wp_gf_form_view` VALUES("14510", "8", "2015-07-28 00:02:24", "202.46.52.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("14511", "1", "2015-07-28 00:40:09", "107.150.42.226", "3");
INSERT INTO `wp_gf_form_view` VALUES("14512", "3", "2015-07-28 01:00:19", "202.46.51.205", "87");
INSERT INTO `wp_gf_form_view` VALUES("14513", "8", "2015-07-28 01:00:19", "202.46.51.205", "21");
INSERT INTO `wp_gf_form_view` VALUES("14514", "3", "2015-07-28 02:05:17", "202.46.50.189", "66");
INSERT INTO `wp_gf_form_view` VALUES("14515", "8", "2015-07-28 02:05:17", "202.46.50.189", "19");
INSERT INTO `wp_gf_form_view` VALUES("14516", "3", "2015-07-28 03:03:48", "202.46.49.140", "76");
INSERT INTO `wp_gf_form_view` VALUES("14517", "8", "2015-07-28 03:03:48", "202.46.49.140", "14");
INSERT INTO `wp_gf_form_view` VALUES("14518", "3", "2015-07-28 04:00:24", "172.218.235.237", "56");
INSERT INTO `wp_gf_form_view` VALUES("14519", "8", "2015-07-28 04:00:24", "172.218.235.237", "17");
INSERT INTO `wp_gf_form_view` VALUES("14520", "3", "2015-07-28 05:06:47", "202.46.57.203", "20");
INSERT INTO `wp_gf_form_view` VALUES("14521", "8", "2015-07-28 05:06:47", "202.46.57.203", "7");
INSERT INTO `wp_gf_form_view` VALUES("14522", "3", "2015-07-28 06:05:20", "202.46.50.165", "50");
INSERT INTO `wp_gf_form_view` VALUES("14523", "8", "2015-07-28 06:05:21", "202.46.50.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("14524", "8", "2015-07-28 07:03:50", "202.46.51.204", "12");
INSERT INTO `wp_gf_form_view` VALUES("14525", "3", "2015-07-28 07:03:51", "202.46.51.204", "37");
INSERT INTO `wp_gf_form_view` VALUES("14526", "3", "2015-07-28 08:02:26", "202.46.56.203", "42");
INSERT INTO `wp_gf_form_view` VALUES("14527", "8", "2015-07-28 08:02:27", "202.46.56.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("14528", "3", "2015-07-28 09:00:56", "202.46.48.140", "45");
INSERT INTO `wp_gf_form_view` VALUES("14529", "8", "2015-07-28 09:00:57", "202.46.48.140", "11");
INSERT INTO `wp_gf_form_view` VALUES("14530", "8", "2015-07-28 10:11:09", "202.46.49.141", "9");
INSERT INTO `wp_gf_form_view` VALUES("14531", "3", "2015-07-28 10:11:10", "202.46.49.141", "28");
INSERT INTO `wp_gf_form_view` VALUES("14532", "8", "2015-07-28 11:09:42", "202.46.58.204", "16");
INSERT INTO `wp_gf_form_view` VALUES("14533", "3", "2015-07-28 11:09:43", "202.46.58.204", "58");
INSERT INTO `wp_gf_form_view` VALUES("14534", "3", "2015-07-28 12:01:34", "157.55.39.145", "53");
INSERT INTO `wp_gf_form_view` VALUES("14535", "8", "2015-07-28 12:01:34", "157.55.39.145", "14");
INSERT INTO `wp_gf_form_view` VALUES("14536", "3", "2015-07-28 13:07:14", "202.46.54.167", "28");
INSERT INTO `wp_gf_form_view` VALUES("14537", "8", "2015-07-28 13:07:15", "202.46.54.167", "9");
INSERT INTO `wp_gf_form_view` VALUES("14538", "3", "2015-07-28 14:05:19", "202.46.55.145", "30");
INSERT INTO `wp_gf_form_view` VALUES("14539", "8", "2015-07-28 14:05:19", "202.46.55.145", "6");
INSERT INTO `wp_gf_form_view` VALUES("14540", "3", "2015-07-28 15:03:50", "202.46.49.153", "41");
INSERT INTO `wp_gf_form_view` VALUES("14541", "8", "2015-07-28 15:03:51", "202.46.49.153", "9");
INSERT INTO `wp_gf_form_view` VALUES("14542", "3", "2015-07-28 16:02:27", "202.46.49.207", "46");
INSERT INTO `wp_gf_form_view` VALUES("14543", "8", "2015-07-28 16:02:27", "202.46.49.207", "9");
INSERT INTO `wp_gf_form_view` VALUES("14544", "3", "2015-07-28 17:00:56", "202.46.51.200", "53");
INSERT INTO `wp_gf_form_view` VALUES("14545", "8", "2015-07-28 17:00:57", "202.46.51.200", "14");
INSERT INTO `wp_gf_form_view` VALUES("14546", "3", "2015-07-28 18:08:42", "184.71.30.182", "66");
INSERT INTO `wp_gf_form_view` VALUES("14547", "8", "2015-07-28 18:08:42", "184.71.30.182", "17");
INSERT INTO `wp_gf_form_view` VALUES("14548", "1", "2015-07-28 18:48:56", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("14549", "3", "2015-07-28 19:09:43", "202.46.58.134", "41");
INSERT INTO `wp_gf_form_view` VALUES("14550", "8", "2015-07-28 19:09:43", "202.46.58.134", "13");
INSERT INTO `wp_gf_form_view` VALUES("14551", "7", "2015-07-28 19:47:05", "151.80.31.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("14552", "3", "2015-07-28 20:08:14", "202.46.54.183", "28");
INSERT INTO `wp_gf_form_view` VALUES("14553", "8", "2015-07-28 20:08:14", "202.46.54.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("14554", "8", "2015-07-28 21:06:47", "202.46.55.149", "8");
INSERT INTO `wp_gf_form_view` VALUES("14555", "3", "2015-07-28 21:06:47", "202.46.55.149", "24");
INSERT INTO `wp_gf_form_view` VALUES("14556", "3", "2015-07-28 22:05:18", "202.46.53.203", "20");
INSERT INTO `wp_gf_form_view` VALUES("14557", "8", "2015-07-28 22:05:19", "202.46.53.203", "7");
INSERT INTO `wp_gf_form_view` VALUES("14558", "3", "2015-07-28 23:03:50", "202.46.55.140", "53");
INSERT INTO `wp_gf_form_view` VALUES("14559", "8", "2015-07-28 23:03:51", "202.46.55.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("14560", "3", "2015-07-29 00:01:34", "151.80.31.146", "28");
INSERT INTO `wp_gf_form_view` VALUES("14561", "8", "2015-07-29 00:01:35", "151.80.31.146", "10");
INSERT INTO `wp_gf_form_view` VALUES("14562", "3", "2015-07-29 01:00:55", "202.46.51.133", "56");
INSERT INTO `wp_gf_form_view` VALUES("14563", "8", "2015-07-29 01:00:55", "202.46.51.133", "15");
INSERT INTO `wp_gf_form_view` VALUES("14564", "1", "2015-07-29 01:10:47", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14565", "2", "2015-07-29 01:10:49", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14566", "5", "2015-07-29 01:12:10", "93.179.68.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("14567", "3", "2015-07-29 02:11:10", "202.46.51.132", "28");
INSERT INTO `wp_gf_form_view` VALUES("14568", "8", "2015-07-29 02:11:10", "202.46.51.132", "10");
INSERT INTO `wp_gf_form_view` VALUES("14569", "3", "2015-07-29 03:09:43", "202.46.58.188", "24");
INSERT INTO `wp_gf_form_view` VALUES("14570", "8", "2015-07-29 03:09:43", "202.46.58.188", "9");
INSERT INTO `wp_gf_form_view` VALUES("14571", "8", "2015-07-29 04:08:14", "202.46.54.167", "8");
INSERT INTO `wp_gf_form_view` VALUES("14572", "3", "2015-07-29 04:08:14", "202.46.54.167", "31");
INSERT INTO `wp_gf_form_view` VALUES("14573", "6", "2015-07-29 04:51:42", "66.249.67.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("14574", "3", "2015-07-29 05:06:49", "202.46.49.157", "31");
INSERT INTO `wp_gf_form_view` VALUES("14575", "8", "2015-07-29 05:06:49", "202.46.49.157", "10");
INSERT INTO `wp_gf_form_view` VALUES("14576", "8", "2015-07-29 06:05:22", "202.46.52.144", "13");
INSERT INTO `wp_gf_form_view` VALUES("14577", "3", "2015-07-29 06:05:22", "202.46.52.144", "34");
INSERT INTO `wp_gf_form_view` VALUES("14578", "3", "2015-07-29 07:03:50", "202.46.49.130", "27");
INSERT INTO `wp_gf_form_view` VALUES("14579", "8", "2015-07-29 07:03:51", "202.46.49.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("14580", "6", "2015-07-29 07:32:22", "167.160.110.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("14581", "8", "2015-07-29 08:02:24", "202.46.52.142", "14");
INSERT INTO `wp_gf_form_view` VALUES("14582", "3", "2015-07-29 08:02:26", "202.46.52.142", "41");
INSERT INTO `wp_gf_form_view` VALUES("14583", "3", "2015-07-29 09:00:55", "202.46.54.181", "19");
INSERT INTO `wp_gf_form_view` VALUES("14584", "8", "2015-07-29 09:00:56", "202.46.54.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("14585", "6", "2015-07-29 09:22:10", "31.220.30.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("14586", "3", "2015-07-29 10:11:09", "202.46.52.203", "46");
INSERT INTO `wp_gf_form_view` VALUES("14587", "8", "2015-07-29 10:11:09", "202.46.52.203", "14");
INSERT INTO `wp_gf_form_view` VALUES("14588", "3", "2015-07-29 11:02:58", "77.75.78.171", "27");
INSERT INTO `wp_gf_form_view` VALUES("14589", "8", "2015-07-29 11:02:58", "77.75.78.171", "8");
INSERT INTO `wp_gf_form_view` VALUES("14590", "3", "2015-07-29 12:08:13", "202.46.51.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("14591", "8", "2015-07-29 12:08:13", "202.46.51.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("14592", "3", "2015-07-29 13:06:47", "202.46.55.146", "34");
INSERT INTO `wp_gf_form_view` VALUES("14593", "8", "2015-07-29 13:06:47", "202.46.55.146", "9");
INSERT INTO `wp_gf_form_view` VALUES("14594", "3", "2015-07-29 14:05:19", "202.46.54.184", "27");
INSERT INTO `wp_gf_form_view` VALUES("14595", "8", "2015-07-29 14:05:19", "202.46.54.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("14596", "3", "2015-07-29 15:03:50", "202.46.50.165", "35");
INSERT INTO `wp_gf_form_view` VALUES("14597", "8", "2015-07-29 15:03:51", "202.46.50.165", "13");
INSERT INTO `wp_gf_form_view` VALUES("14598", "3", "2015-07-29 16:02:24", "202.46.54.158", "29");
INSERT INTO `wp_gf_form_view` VALUES("14599", "8", "2015-07-29 16:02:25", "202.46.54.158", "11");
INSERT INTO `wp_gf_form_view` VALUES("14600", "8", "2015-07-29 17:00:54", "202.46.51.205", "16");
INSERT INTO `wp_gf_form_view` VALUES("14601", "3", "2015-07-29 17:00:54", "202.46.51.205", "58");
INSERT INTO `wp_gf_form_view` VALUES("14602", "3", "2015-07-29 18:04:45", "142.205.241.254", "36");
INSERT INTO `wp_gf_form_view` VALUES("14603", "8", "2015-07-29 18:04:45", "142.205.241.254", "14");
INSERT INTO `wp_gf_form_view` VALUES("14604", "3", "2015-07-29 19:09:41", "202.46.54.146", "41");
INSERT INTO `wp_gf_form_view` VALUES("14605", "8", "2015-07-29 19:09:41", "202.46.54.146", "13");
INSERT INTO `wp_gf_form_view` VALUES("14606", "5", "2015-07-29 19:44:12", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("14607", "3", "2015-07-29 20:08:14", "202.46.57.158", "50");
INSERT INTO `wp_gf_form_view` VALUES("14608", "8", "2015-07-29 20:08:14", "202.46.57.158", "15");
INSERT INTO `wp_gf_form_view` VALUES("14609", "3", "2015-07-29 21:06:46", "202.46.51.165", "33");
INSERT INTO `wp_gf_form_view` VALUES("14610", "8", "2015-07-29 21:06:46", "202.46.51.165", "11");
INSERT INTO `wp_gf_form_view` VALUES("14611", "3", "2015-07-29 22:05:17", "202.46.58.203", "32");
INSERT INTO `wp_gf_form_view` VALUES("14612", "8", "2015-07-29 22:05:18", "202.46.58.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("14613", "3", "2015-07-29 23:03:50", "202.46.53.210", "24");
INSERT INTO `wp_gf_form_view` VALUES("14614", "8", "2015-07-29 23:03:50", "202.46.53.210", "6");
INSERT INTO `wp_gf_form_view` VALUES("14615", "3", "2015-07-30 00:02:22", "202.46.51.198", "26");
INSERT INTO `wp_gf_form_view` VALUES("14616", "8", "2015-07-30 00:02:22", "202.46.51.198", "14");
INSERT INTO `wp_gf_form_view` VALUES("14617", "3", "2015-07-30 01:00:55", "202.46.56.205", "34");
INSERT INTO `wp_gf_form_view` VALUES("14618", "8", "2015-07-30 01:00:55", "202.46.56.205", "14");
INSERT INTO `wp_gf_form_view` VALUES("14619", "3", "2015-07-30 02:11:09", "202.46.52.174", "50");
INSERT INTO `wp_gf_form_view` VALUES("14620", "8", "2015-07-30 02:11:09", "202.46.52.174", "26");
INSERT INTO `wp_gf_form_view` VALUES("14621", "3", "2015-07-30 03:01:53", "100.43.90.11", "33");
INSERT INTO `wp_gf_form_view` VALUES("14622", "8", "2015-07-30 03:01:54", "100.43.90.11", "13");
INSERT INTO `wp_gf_form_view` VALUES("14623", "3", "2015-07-30 04:08:13", "202.46.50.164", "14");
INSERT INTO `wp_gf_form_view` VALUES("14624", "8", "2015-07-30 04:08:14", "202.46.50.164", "8");
INSERT INTO `wp_gf_form_view` VALUES("14625", "8", "2015-07-30 05:06:45", "202.46.51.200", "8");
INSERT INTO `wp_gf_form_view` VALUES("14626", "3", "2015-07-30 05:06:46", "202.46.51.200", "14");
INSERT INTO `wp_gf_form_view` VALUES("14627", "3", "2015-07-30 06:05:18", "202.46.54.141", "22");
INSERT INTO `wp_gf_form_view` VALUES("14628", "8", "2015-07-30 06:05:19", "202.46.54.141", "6");
INSERT INTO `wp_gf_form_view` VALUES("14629", "3", "2015-07-30 07:03:53", "202.46.48.131", "16");
INSERT INTO `wp_gf_form_view` VALUES("14630", "8", "2015-07-30 07:03:54", "202.46.48.131", "9");
INSERT INTO `wp_gf_form_view` VALUES("14631", "3", "2015-07-30 08:02:33", "202.46.56.179", "17");
INSERT INTO `wp_gf_form_view` VALUES("14632", "8", "2015-07-30 08:02:33", "202.46.56.179", "10");
INSERT INTO `wp_gf_form_view` VALUES("14633", "3", "2015-07-30 09:00:54", "202.46.50.133", "20");
INSERT INTO `wp_gf_form_view` VALUES("14634", "8", "2015-07-30 09:00:55", "202.46.50.133", "9");
INSERT INTO `wp_gf_form_view` VALUES("14635", "3", "2015-07-30 10:00:06", "207.46.13.76", "16");
INSERT INTO `wp_gf_form_view` VALUES("14636", "8", "2015-07-30 10:00:06", "207.46.13.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("14637", "5", "2015-07-30 10:30:02", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("14638", "3", "2015-07-30 11:09:41", "202.46.50.159", "21");
INSERT INTO `wp_gf_form_view` VALUES("14639", "8", "2015-07-30 11:09:42", "202.46.50.159", "9");
INSERT INTO `wp_gf_form_view` VALUES("14640", "6", "2015-07-30 11:49:39", "167.160.105.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("14641", "8", "2015-07-30 12:08:13", "202.46.51.198", "13");
INSERT INTO `wp_gf_form_view` VALUES("14642", "3", "2015-07-30 12:08:13", "202.46.51.198", "26");
INSERT INTO `wp_gf_form_view` VALUES("14643", "3", "2015-07-30 13:06:45", "202.46.52.207", "27");
INSERT INTO `wp_gf_form_view` VALUES("14644", "8", "2015-07-30 13:06:45", "202.46.52.207", "9");
INSERT INTO `wp_gf_form_view` VALUES("14645", "8", "2015-07-30 14:05:17", "202.46.53.144", "11");
INSERT INTO `wp_gf_form_view` VALUES("14646", "3", "2015-07-30 14:05:17", "202.46.53.144", "19");
INSERT INTO `wp_gf_form_view` VALUES("14647", "3", "2015-07-30 15:03:49", "202.46.54.190", "22");
INSERT INTO `wp_gf_form_view` VALUES("14648", "8", "2015-07-30 15:03:50", "202.46.54.190", "10");
INSERT INTO `wp_gf_form_view` VALUES("14649", "3", "2015-07-30 16:02:22", "202.46.49.190", "32");
INSERT INTO `wp_gf_form_view` VALUES("14650", "8", "2015-07-30 16:02:22", "202.46.49.190", "16");
INSERT INTO `wp_gf_form_view` VALUES("14651", "3", "2015-07-30 17:00:57", "202.46.55.152", "31");
INSERT INTO `wp_gf_form_view` VALUES("14652", "8", "2015-07-30 17:00:57", "202.46.55.152", "11");
INSERT INTO `wp_gf_form_view` VALUES("14653", "6", "2015-07-30 18:09:33", "23.95.237.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("14654", "3", "2015-07-30 18:09:33", "23.95.237.89", "19");
INSERT INTO `wp_gf_form_view` VALUES("14655", "8", "2015-07-30 18:09:33", "23.95.237.89", "10");
INSERT INTO `wp_gf_form_view` VALUES("14656", "3", "2015-07-30 19:09:41", "202.46.51.168", "26");
INSERT INTO `wp_gf_form_view` VALUES("14657", "8", "2015-07-30 19:09:41", "202.46.51.168", "11");
INSERT INTO `wp_gf_form_view` VALUES("14658", "3", "2015-07-30 20:01:52", "68.180.229.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("14659", "8", "2015-07-30 20:01:52", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("14660", "3", "2015-07-30 21:01:40", "151.80.31.146", "34");
INSERT INTO `wp_gf_form_view` VALUES("14661", "8", "2015-07-30 21:01:40", "151.80.31.146", "15");
INSERT INTO `wp_gf_form_view` VALUES("14662", "3", "2015-07-30 22:05:18", "202.46.58.164", "40");
INSERT INTO `wp_gf_form_view` VALUES("14663", "8", "2015-07-30 22:05:18", "202.46.58.164", "20");
INSERT INTO `wp_gf_form_view` VALUES("14664", "1", "2015-07-30 22:10:35", "107.150.42.226", "6");
INSERT INTO `wp_gf_form_view` VALUES("14665", "3", "2015-07-30 23:03:51", "202.46.57.179", "34");
INSERT INTO `wp_gf_form_view` VALUES("14666", "8", "2015-07-30 23:03:52", "202.46.57.179", "31");
INSERT INTO `wp_gf_form_view` VALUES("14667", "1", "2015-07-30 23:31:51", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14668", "2", "2015-07-30 23:31:56", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14669", "3", "2015-07-31 00:02:22", "202.46.58.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("14670", "8", "2015-07-31 00:02:22", "202.46.58.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("14671", "3", "2015-07-31 01:00:53", "202.46.51.175", "56");
INSERT INTO `wp_gf_form_view` VALUES("14672", "8", "2015-07-31 01:00:54", "202.46.51.175", "42");
INSERT INTO `wp_gf_form_view` VALUES("14673", "1", "2015-07-31 01:19:14", "188.65.117.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("14674", "2", "2015-07-31 01:22:36", "188.65.117.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("14675", "8", "2015-07-31 02:03:33", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("14676", "3", "2015-07-31 02:03:34", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("14677", "3", "2015-07-31 03:09:40", "202.46.51.183", "22");
INSERT INTO `wp_gf_form_view` VALUES("14678", "8", "2015-07-31 03:09:41", "202.46.51.183", "12");
INSERT INTO `wp_gf_form_view` VALUES("14679", "6", "2015-07-31 03:19:12", "167.160.110.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("14680", "8", "2015-07-31 04:07:32", "24.244.32.10", "882");
INSERT INTO `wp_gf_form_view` VALUES("14681", "3", "2015-07-31 04:07:32", "24.244.32.10", "991");
INSERT INTO `wp_gf_form_view` VALUES("14682", "1", "2015-07-31 04:48:12", "82.80.249.174", "2");
INSERT INTO `wp_gf_form_view` VALUES("14683", "2", "2015-07-31 04:48:13", "82.80.249.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("14684", "5", "2015-07-31 04:49:45", "82.80.249.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("14685", "3", "2015-07-31 05:00:03", "82.80.249.174", "1201");
INSERT INTO `wp_gf_form_view` VALUES("14686", "8", "2015-07-31 05:00:03", "82.80.249.174", "1105");
INSERT INTO `wp_gf_form_view` VALUES("14687", "6", "2015-07-31 05:10:13", "82.80.249.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("14688", "3", "2015-07-31 06:05:59", "202.46.55.132", "46");
INSERT INTO `wp_gf_form_view` VALUES("14689", "8", "2015-07-31 06:06:00", "202.46.55.132", "41");
INSERT INTO `wp_gf_form_view` VALUES("14690", "2", "2015-07-31 06:49:30", "157.55.39.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("14691", "3", "2015-07-31 07:03:49", "202.46.51.178", "13");
INSERT INTO `wp_gf_form_view` VALUES("14692", "8", "2015-07-31 07:03:50", "202.46.51.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("14693", "3", "2015-07-31 08:02:31", "202.46.55.147", "17");
INSERT INTO `wp_gf_form_view` VALUES("14694", "8", "2015-07-31 08:02:31", "202.46.55.147", "7");
INSERT INTO `wp_gf_form_view` VALUES("14695", "3", "2015-07-31 09:00:02", "66.249.67.70", "23");
INSERT INTO `wp_gf_form_view` VALUES("14696", "8", "2015-07-31 09:00:02", "66.249.67.70", "14");
INSERT INTO `wp_gf_form_view` VALUES("14697", "8", "2015-07-31 10:11:13", "202.46.55.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("14698", "3", "2015-07-31 10:11:14", "202.46.55.170", "11");
INSERT INTO `wp_gf_form_view` VALUES("14699", "3", "2015-07-31 11:09:41", "202.46.58.153", "10");
INSERT INTO `wp_gf_form_view` VALUES("14700", "8", "2015-07-31 11:09:41", "202.46.58.153", "9");
INSERT INTO `wp_gf_form_view` VALUES("14701", "1", "2015-07-31 11:38:23", "27.19.177.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("14702", "3", "2015-07-31 12:06:12", "188.65.117.160", "8");
INSERT INTO `wp_gf_form_view` VALUES("14703", "8", "2015-07-31 12:06:12", "188.65.117.160", "8");
INSERT INTO `wp_gf_form_view` VALUES("14704", "3", "2015-07-31 13:04:05", "217.69.133.231", "23");
INSERT INTO `wp_gf_form_view` VALUES("14705", "8", "2015-07-31 13:04:05", "217.69.133.231", "12");
INSERT INTO `wp_gf_form_view` VALUES("14706", "3", "2015-07-31 14:05:17", "202.46.54.165", "8");
INSERT INTO `wp_gf_form_view` VALUES("14707", "8", "2015-07-31 14:05:17", "202.46.54.165", "7");
INSERT INTO `wp_gf_form_view` VALUES("14708", "3", "2015-07-31 15:03:52", "202.46.48.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("14709", "8", "2015-07-31 15:03:54", "202.46.48.148", "9");
INSERT INTO `wp_gf_form_view` VALUES("14710", "3", "2015-07-31 16:00:36", "188.65.117.160", "14");
INSERT INTO `wp_gf_form_view` VALUES("14711", "8", "2015-07-31 16:00:36", "188.65.117.160", "8");
INSERT INTO `wp_gf_form_view` VALUES("14712", "8", "2015-07-31 17:32:54", "202.46.53.157", "5");
INSERT INTO `wp_gf_form_view` VALUES("14713", "3", "2015-07-31 17:33:05", "188.65.117.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("14714", "3", "2015-07-31 18:44:08", "24.69.71.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("14715", "8", "2015-07-31 18:45:12", "24.69.71.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("14716", "3", "2015-07-31 19:30:48", "202.46.56.186", "4");
INSERT INTO `wp_gf_form_view` VALUES("14717", "8", "2015-07-31 19:31:16", "202.46.56.186", "6");
INSERT INTO `wp_gf_form_view` VALUES("14718", "3", "2015-07-31 20:14:23", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("14719", "8", "2015-07-31 20:14:24", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("14720", "3", "2015-07-31 21:06:44", "202.46.54.203", "24");
INSERT INTO `wp_gf_form_view` VALUES("14721", "8", "2015-07-31 21:06:44", "202.46.54.203", "9");
INSERT INTO `wp_gf_form_view` VALUES("14722", "3", "2015-07-31 22:05:16", "202.46.48.198", "8");
INSERT INTO `wp_gf_form_view` VALUES("14723", "8", "2015-07-31 22:05:16", "202.46.48.198", "8");
INSERT INTO `wp_gf_form_view` VALUES("14724", "1", "2015-07-31 23:05:45", "52.11.135.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("14725", "3", "2015-07-31 23:05:45", "52.11.135.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("14726", "8", "2015-07-31 23:05:45", "52.11.135.94", "18");
INSERT INTO `wp_gf_form_view` VALUES("14727", "8", "2015-08-01 00:02:07", "188.65.117.141", "16");
INSERT INTO `wp_gf_form_view` VALUES("14728", "3", "2015-08-01 00:14:04", "202.46.52.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("14729", "8", "2015-08-01 01:00:54", "202.46.48.206", "11");
INSERT INTO `wp_gf_form_view` VALUES("14730", "3", "2015-08-01 01:59:25", "202.46.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("14731", "8", "2015-08-01 02:11:09", "202.46.53.174", "10");
INSERT INTO `wp_gf_form_view` VALUES("14732", "3", "2015-08-01 02:14:02", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("14733", "8", "2015-08-01 03:09:40", "202.46.54.206", "7");
INSERT INTO `wp_gf_form_view` VALUES("14734", "3", "2015-08-01 03:21:22", "202.46.53.145", "5");
INSERT INTO `wp_gf_form_view` VALUES("14735", "8", "2015-08-01 04:08:12", "202.46.54.166", "10");
INSERT INTO `wp_gf_form_view` VALUES("14736", "8", "2015-08-01 05:06:46", "202.46.57.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("14737", "8", "2015-08-01 06:05:18", "202.46.54.147", "11");
INSERT INTO `wp_gf_form_view` VALUES("14738", "6", "2015-08-01 06:20:02", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("14739", "3", "2015-08-01 06:40:24", "202.46.57.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("14740", "8", "2015-08-01 07:03:49", "202.46.53.150", "9");
INSERT INTO `wp_gf_form_view` VALUES("14741", "8", "2015-08-01 08:02:24", "202.46.55.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("14742", "8", "2015-08-01 09:00:59", "202.46.49.152", "12");
INSERT INTO `wp_gf_form_view` VALUES("14743", "8", "2015-08-01 10:11:12", "202.46.53.143", "9");
INSERT INTO `wp_gf_form_view` VALUES("14744", "8", "2015-08-01 11:02:42", "217.69.133.233", "10");
INSERT INTO `wp_gf_form_view` VALUES("14745", "5", "2015-08-01 11:25:22", "188.65.117.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("14746", "8", "2015-08-01 12:08:12", "202.46.51.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("14747", "3", "2015-08-01 12:38:19", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("14748", "8", "2015-08-01 13:06:44", "202.46.53.166", "7");
INSERT INTO `wp_gf_form_view` VALUES("14749", "3", "2015-08-01 13:30:09", "202.46.51.196", "10");
INSERT INTO `wp_gf_form_view` VALUES("14750", "8", "2015-08-01 14:05:16", "202.46.51.173", "6");
INSERT INTO `wp_gf_form_view` VALUES("14751", "8", "2015-08-01 15:15:31", "202.46.52.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("14752", "8", "2015-08-01 16:02:20", "202.46.54.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("14753", "8", "2015-08-01 17:00:53", "202.46.50.135", "21");
INSERT INTO `wp_gf_form_view` VALUES("14754", "3", "2015-08-01 18:11:08", "202.46.55.153", "5");
INSERT INTO `wp_gf_form_view` VALUES("14755", "8", "2015-08-01 18:11:09", "202.46.55.153", "8");
INSERT INTO `wp_gf_form_view` VALUES("14756", "8", "2015-08-01 19:09:40", "202.46.53.177", "14");
INSERT INTO `wp_gf_form_view` VALUES("14757", "6", "2015-08-01 20:03:15", "198.12.101.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("14758", "8", "2015-08-01 20:03:15", "198.12.101.184", "12");
INSERT INTO `wp_gf_form_view` VALUES("14759", "8", "2015-08-01 21:06:45", "202.46.58.192", "11");
INSERT INTO `wp_gf_form_view` VALUES("14760", "1", "2015-08-01 21:46:11", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14761", "2", "2015-08-01 21:46:12", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14762", "3", "2015-08-01 22:05:16", "202.46.51.185", "10");
INSERT INTO `wp_gf_form_view` VALUES("14763", "8", "2015-08-01 22:05:17", "202.46.51.185", "22");
INSERT INTO `wp_gf_form_view` VALUES("14764", "8", "2015-08-01 23:03:48", "202.46.52.164", "9");
INSERT INTO `wp_gf_form_view` VALUES("14765", "1", "2015-08-01 23:53:41", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("14766", "1", "2015-08-02 00:01:03", "91.121.141.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("14767", "8", "2015-08-02 00:01:03", "91.121.141.219", "10");
INSERT INTO `wp_gf_form_view` VALUES("14768", "3", "2015-08-02 00:53:31", "157.55.39.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("14769", "8", "2015-08-02 01:00:55", "202.46.49.191", "11");
INSERT INTO `wp_gf_form_view` VALUES("14770", "6", "2015-08-02 01:14:38", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("14771", "3", "2015-08-02 01:24:17", "202.46.56.135", "10");
INSERT INTO `wp_gf_form_view` VALUES("14772", "8", "2015-08-02 02:11:07", "202.46.53.177", "18");
INSERT INTO `wp_gf_form_view` VALUES("14773", "3", "2015-08-02 02:22:49", "202.46.51.154", "10");
INSERT INTO `wp_gf_form_view` VALUES("14774", "7", "2015-08-02 03:02:34", "157.55.39.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("14775", "8", "2015-08-02 03:02:34", "157.55.39.80", "10");
INSERT INTO `wp_gf_form_view` VALUES("14776", "6", "2015-08-02 03:11:37", "167.160.127.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("14777", "8", "2015-08-02 04:08:11", "202.46.50.136", "9");
INSERT INTO `wp_gf_form_view` VALUES("14778", "8", "2015-08-02 05:06:44", "202.46.58.197", "9");
INSERT INTO `wp_gf_form_view` VALUES("14779", "3", "2015-08-02 05:30:10", "202.46.55.172", "6");
INSERT INTO `wp_gf_form_view` VALUES("14780", "8", "2015-08-02 06:05:17", "202.46.52.206", "8");
INSERT INTO `wp_gf_form_view` VALUES("14781", "8", "2015-08-02 07:03:48", "202.46.48.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("14782", "8", "2015-08-02 08:02:22", "202.46.54.147", "7");
INSERT INTO `wp_gf_form_view` VALUES("14783", "8", "2015-08-02 09:00:52", "202.46.57.162", "37");
INSERT INTO `wp_gf_form_view` VALUES("14784", "3", "2015-08-02 09:02:18", "217.69.133.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("14785", "1", "2015-08-02 09:41:31", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14786", "2", "2015-08-02 09:41:35", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14787", "8", "2015-08-02 10:11:07", "202.46.50.191", "25");
INSERT INTO `wp_gf_form_view` VALUES("14788", "3", "2015-08-02 10:35:36", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("14789", "6", "2015-08-02 10:35:45", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("14790", "3", "2015-08-02 11:06:29", "157.55.39.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("14791", "8", "2015-08-02 11:06:29", "157.55.39.198", "42");
INSERT INTO `wp_gf_form_view` VALUES("14792", "1", "2015-08-02 11:57:45", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14793", "2", "2015-08-02 11:57:49", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14794", "8", "2015-08-02 12:00:54", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("14795", "8", "2015-08-02 13:06:44", "202.46.54.137", "10");
INSERT INTO `wp_gf_form_view` VALUES("14796", "3", "2015-08-02 13:39:37", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("14797", "8", "2015-08-02 14:05:16", "202.46.56.180", "7");
INSERT INTO `wp_gf_form_view` VALUES("14798", "8", "2015-08-02 15:03:48", "202.46.51.159", "7");
INSERT INTO `wp_gf_form_view` VALUES("14799", "8", "2015-08-02 16:02:20", "202.46.50.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("14800", "8", "2015-08-02 17:00:33", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("14801", "8", "2015-08-02 18:11:08", "202.46.58.196", "10");
INSERT INTO `wp_gf_form_view` VALUES("14802", "8", "2015-08-02 19:09:39", "202.46.49.207", "7");
INSERT INTO `wp_gf_form_view` VALUES("14803", "8", "2015-08-02 20:08:12", "202.46.56.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("14804", "8", "2015-08-02 21:06:43", "202.46.54.143", "9");
INSERT INTO `wp_gf_form_view` VALUES("14805", "8", "2015-08-02 22:19:25", "151.80.31.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("14806", "8", "2015-08-02 23:03:49", "202.46.55.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("14807", "8", "2015-08-03 00:02:21", "202.46.49.145", "9");
INSERT INTO `wp_gf_form_view` VALUES("14808", "8", "2015-08-03 01:00:52", "202.46.51.160", "15");
INSERT INTO `wp_gf_form_view` VALUES("14809", "8", "2015-08-03 02:11:07", "202.46.55.155", "37");
INSERT INTO `wp_gf_form_view` VALUES("14810", "1", "2015-08-03 02:34:50", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14811", "2", "2015-08-03 02:34:55", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14812", "3", "2015-08-03 02:35:16", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14813", "8", "2015-08-03 03:09:39", "202.46.56.201", "33");
INSERT INTO `wp_gf_form_view` VALUES("14814", "1", "2015-08-03 03:13:05", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14815", "2", "2015-08-03 03:13:09", "74.108.8.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("14816", "8", "2015-08-03 04:08:11", "202.46.55.136", "8");
INSERT INTO `wp_gf_form_view` VALUES("14817", "8", "2015-08-03 05:06:43", "202.46.48.147", "35");
INSERT INTO `wp_gf_form_view` VALUES("14818", "1", "2015-08-03 05:24:25", "221.143.43.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("14819", "2", "2015-08-03 05:24:37", "221.143.43.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("14820", "3", "2015-08-03 05:26:06", "221.143.43.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("14821", "8", "2015-08-03 06:05:16", "202.46.54.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("14822", "6", "2015-08-03 06:26:24", "23.95.132.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("14823", "8", "2015-08-03 07:15:31", "202.46.50.139", "6");
INSERT INTO `wp_gf_form_view` VALUES("14824", "8", "2015-08-03 08:02:23", "202.46.54.134", "11");
INSERT INTO `wp_gf_form_view` VALUES("14825", "8", "2015-08-03 09:00:52", "202.46.48.206", "12");
INSERT INTO `wp_gf_form_view` VALUES("14826", "3", "2015-08-03 09:31:18", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("14827", "8", "2015-08-03 10:11:06", "202.46.54.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("14828", "5", "2015-08-03 10:40:08", "77.87.47.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("14829", "8", "2015-08-03 11:09:39", "202.46.48.132", "9");
INSERT INTO `wp_gf_form_view` VALUES("14830", "8", "2015-08-03 12:08:11", "202.46.57.175", "8");
INSERT INTO `wp_gf_form_view` VALUES("14831", "8", "2015-08-03 13:06:43", "202.46.58.188", "11");
INSERT INTO `wp_gf_form_view` VALUES("14832", "8", "2015-08-03 14:05:16", "202.46.49.191", "11");
INSERT INTO `wp_gf_form_view` VALUES("14833", "3", "2015-08-03 14:59:56", "207.46.13.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("14834", "8", "2015-08-03 15:00:00", "207.46.13.147", "33");
INSERT INTO `wp_gf_form_view` VALUES("14835", "3", "2015-08-03 15:27:15", "202.46.58.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("14836", "8", "2015-08-03 16:02:19", "202.46.54.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("14837", "1", "2015-08-03 16:08:39", "52.1.155.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("14838", "3", "2015-08-03 16:12:54", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("14839", "8", "2015-08-03 17:00:52", "202.46.50.190", "21");
INSERT INTO `wp_gf_form_view` VALUES("14840", "6", "2015-08-03 17:34:30", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("14841", "8", "2015-08-03 18:05:45", "66.249.79.120", "8");
INSERT INTO `wp_gf_form_view` VALUES("14842", "8", "2015-08-03 19:09:39", "202.46.50.186", "8");
INSERT INTO `wp_gf_form_view` VALUES("14843", "3", "2015-08-03 19:31:28", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("14844", "8", "2015-08-03 20:08:11", "202.46.58.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("14845", "3", "2015-08-03 20:08:26", "157.55.39.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("14846", "8", "2015-08-03 21:06:44", "202.46.52.177", "80");
INSERT INTO `wp_gf_form_view` VALUES("14847", "1", "2015-08-03 21:15:37", "64.79.75.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("14848", "2", "2015-08-03 21:15:41", "64.79.75.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("14849", "3", "2015-08-03 21:16:02", "64.79.75.42", "8");
INSERT INTO `wp_gf_form_view` VALUES("14850", "8", "2015-08-03 22:05:15", "202.46.54.182", "8");
INSERT INTO `wp_gf_form_view` VALUES("14851", "8", "2015-08-03 23:03:47", "202.46.52.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("14852", "8", "2015-08-04 00:02:20", "202.46.55.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("14853", "8", "2015-08-04 01:00:52", "202.46.50.198", "18");
INSERT INTO `wp_gf_form_view` VALUES("14854", "8", "2015-08-04 02:11:06", "202.46.55.130", "13");
INSERT INTO `wp_gf_form_view` VALUES("14855", "8", "2015-08-04 03:09:38", "202.46.54.132", "16");
INSERT INTO `wp_gf_form_view` VALUES("14856", "3", "2015-08-04 03:49:58", "91.200.12.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("14857", "8", "2015-08-04 04:08:10", "202.46.58.190", "12");
INSERT INTO `wp_gf_form_view` VALUES("14858", "8", "2015-08-04 05:06:43", "202.46.55.130", "13");
INSERT INTO `wp_gf_form_view` VALUES("14859", "8", "2015-08-04 06:05:15", "202.46.53.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("14860", "8", "2015-08-04 07:03:47", "202.46.52.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("14861", "3", "2015-08-04 07:12:49", "46.246.121.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("14862", "8", "2015-08-04 08:02:21", "202.46.56.142", "9");
INSERT INTO `wp_gf_form_view` VALUES("14863", "8", "2015-08-04 09:00:52", "202.46.58.139", "9");
INSERT INTO `wp_gf_form_view` VALUES("14864", "8", "2015-08-04 10:10:03", "66.249.79.146", "8");
INSERT INTO `wp_gf_form_view` VALUES("14865", "8", "2015-08-04 11:09:38", "202.46.55.179", "6");
INSERT INTO `wp_gf_form_view` VALUES("14866", "8", "2015-08-04 12:08:11", "202.46.58.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("14867", "8", "2015-08-04 13:06:42", "202.46.48.199", "10");
INSERT INTO `wp_gf_form_view` VALUES("14868", "3", "2015-08-04 13:18:35", "91.200.12.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("14869", "3", "2015-08-04 14:04:45", "208.115.113.83", "17");
INSERT INTO `wp_gf_form_view` VALUES("14870", "8", "2015-08-04 14:05:16", "202.46.54.138", "20");
INSERT INTO `wp_gf_form_view` VALUES("14871", "8", "2015-08-04 15:12:52", "24.84.216.81", "15");
INSERT INTO `wp_gf_form_view` VALUES("14872", "8", "2015-08-04 16:08:51", "202.46.50.198", "13");
INSERT INTO `wp_gf_form_view` VALUES("14873", "1", "2015-08-04 16:49:18", "104.143.21.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("14874", "8", "2015-08-04 17:00:29", "202.46.54.204", "44");
INSERT INTO `wp_gf_form_view` VALUES("14875", "1", "2015-08-04 17:20:51", "47.23.126.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("14876", "2", "2015-08-04 17:20:55", "47.23.126.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("14877", "3", "2015-08-04 17:21:42", "47.23.126.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("14878", "8", "2015-08-04 18:05:56", "202.46.50.132", "15");
INSERT INTO `wp_gf_form_view` VALUES("14879", "8", "2015-08-04 19:00:35", "24.68.239.138", "21");
INSERT INTO `wp_gf_form_view` VALUES("14880", "3", "2015-08-04 19:35:48", "151.80.31.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("14881", "8", "2015-08-04 20:02:59", "202.46.56.172", "26");
INSERT INTO `wp_gf_form_view` VALUES("14882", "3", "2015-08-04 20:55:53", "96.54.185.10", "21");
INSERT INTO `wp_gf_form_view` VALUES("14883", "8", "2015-08-04 21:01:32", "202.46.56.209", "64");
INSERT INTO `wp_gf_form_view` VALUES("14884", "3", "2015-08-04 21:45:49", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("14885", "8", "2015-08-04 22:00:04", "202.46.53.152", "23");
INSERT INTO `wp_gf_form_view` VALUES("14886", "6", "2015-08-04 22:13:32", "192.230.49.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("14887", "3", "2015-08-04 22:13:33", "192.230.49.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("14888", "8", "2015-08-04 23:00:43", "66.249.79.133", "23");
INSERT INTO `wp_gf_form_view` VALUES("14889", "8", "2015-08-05 00:01:58", "202.46.55.183", "20");
INSERT INTO `wp_gf_form_view` VALUES("14890", "8", "2015-08-05 01:00:29", "202.46.52.140", "38");
INSERT INTO `wp_gf_form_view` VALUES("14891", "1", "2015-08-05 01:43:08", "31.201.69.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("14892", "2", "2015-08-05 01:43:15", "31.201.69.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("14893", "8", "2015-08-05 02:05:02", "66.249.79.146", "25");
INSERT INTO `wp_gf_form_view` VALUES("14894", "8", "2015-08-05 03:00:32", "5.9.145.132", "67");
INSERT INTO `wp_gf_form_view` VALUES("14895", "8", "2015-08-05 04:03:04", "202.46.51.180", "15");
INSERT INTO `wp_gf_form_view` VALUES("14896", "8", "2015-08-05 05:01:35", "202.46.58.138", "15");
INSERT INTO `wp_gf_form_view` VALUES("14897", "8", "2015-08-05 06:00:08", "202.46.49.143", "17");
INSERT INTO `wp_gf_form_view` VALUES("14898", "8", "2015-08-05 07:03:24", "202.46.52.171", "16");
INSERT INTO `wp_gf_form_view` VALUES("14899", "8", "2015-08-05 08:02:03", "202.46.49.138", "12");
INSERT INTO `wp_gf_form_view` VALUES("14900", "3", "2015-08-05 08:02:36", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("14901", "8", "2015-08-05 09:00:28", "202.46.52.162", "44");
INSERT INTO `wp_gf_form_view` VALUES("14902", "1", "2015-08-05 09:58:22", "82.171.194.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("14903", "2", "2015-08-05 09:58:27", "82.171.194.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("14904", "3", "2015-08-05 09:58:55", "82.171.194.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("14905", "8", "2015-08-05 10:05:59", "202.46.58.209", "16");
INSERT INTO `wp_gf_form_view` VALUES("14906", "8", "2015-08-05 11:04:30", "202.46.52.207", "18");
INSERT INTO `wp_gf_form_view` VALUES("14907", "3", "2015-08-05 11:09:17", "202.46.51.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("14908", "8", "2015-08-05 12:03:03", "202.46.49.200", "10");
INSERT INTO `wp_gf_form_view` VALUES("14909", "8", "2015-08-05 13:06:20", "202.46.53.207", "52");
INSERT INTO `wp_gf_form_view` VALUES("14910", "3", "2015-08-05 13:32:25", "207.46.13.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("14911", "6", "2015-08-05 13:43:50", "23.95.241.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("14912", "1", "2015-08-05 13:50:22", "143.176.126.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("14913", "2", "2015-08-05 13:50:27", "143.176.126.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("14914", "8", "2015-08-05 14:04:52", "202.46.56.208", "8");
INSERT INTO `wp_gf_form_view` VALUES("14915", "3", "2015-08-05 14:19:32", "151.80.31.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("14916", "8", "2015-08-05 15:14:33", "202.46.55.179", "8");
INSERT INTO `wp_gf_form_view` VALUES("14917", "8", "2015-08-05 16:01:57", "202.46.51.158", "8");
INSERT INTO `wp_gf_form_view` VALUES("14918", "8", "2015-08-05 17:00:31", "202.46.58.200", "13");
INSERT INTO `wp_gf_form_view` VALUES("14919", "1", "2015-08-05 17:35:38", "54.148.237.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("14920", "8", "2015-08-05 18:04:09", "184.66.25.215", "11");
INSERT INTO `wp_gf_form_view` VALUES("14921", "1", "2015-08-05 18:11:45", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14922", "2", "2015-08-05 18:11:46", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("14923", "1", "2015-08-05 19:05:05", "52.1.33.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("14924", "8", "2015-08-05 19:05:05", "52.1.33.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("14925", "8", "2015-08-05 20:07:49", "202.46.57.179", "9");
INSERT INTO `wp_gf_form_view` VALUES("14926", "6", "2015-08-05 21:02:04", "45.57.230.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("14927", "8", "2015-08-05 21:02:04", "45.57.230.11", "22");
INSERT INTO `wp_gf_form_view` VALUES("14928", "1", "2015-08-05 21:42:19", "207.46.13.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("14929", "3", "2015-08-05 21:45:06", "188.65.117.160", "2");
INSERT INTO `wp_gf_form_view` VALUES("14930", "8", "2015-08-05 22:04:52", "202.46.54.205", "10");
INSERT INTO `wp_gf_form_view` VALUES("14931", "8", "2015-08-05 23:01:29", "207.46.13.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("14932", "2", "2015-08-05 23:01:44", "157.55.39.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("14933", "1", "2015-08-05 23:02:32", "54.148.243.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("14934", "6", "2015-08-05 23:03:27", "202.46.56.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("14935", "8", "2015-08-06 00:01:56", "202.46.54.189", "10");
INSERT INTO `wp_gf_form_view` VALUES("14936", "8", "2015-08-06 01:00:28", "202.46.52.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("14937", "8", "2015-08-06 02:10:43", "202.46.48.197", "18");
INSERT INTO `wp_gf_form_view` VALUES("14938", "1", "2015-08-06 02:25:31", "157.55.39.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("14939", "8", "2015-08-06 03:09:15", "202.46.56.142", "12");
INSERT INTO `wp_gf_form_view` VALUES("14940", "8", "2015-08-06 04:07:47", "202.46.57.174", "8");
INSERT INTO `wp_gf_form_view` VALUES("14941", "3", "2015-08-06 04:54:39", "202.46.57.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("14942", "8", "2015-08-06 05:06:20", "202.46.53.177", "12");
INSERT INTO `wp_gf_form_view` VALUES("14943", "8", "2015-08-06 06:01:10", "188.65.117.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("14944", "8", "2015-08-06 07:03:24", "202.46.48.85", "10");
INSERT INTO `wp_gf_form_view` VALUES("14945", "3", "2015-08-06 07:26:49", "202.46.51.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("14946", "8", "2015-08-06 08:01:56", "202.46.58.198", "14");
INSERT INTO `wp_gf_form_view` VALUES("14947", "8", "2015-08-06 09:00:29", "202.46.48.197", "10");
INSERT INTO `wp_gf_form_view` VALUES("14948", "8", "2015-08-06 10:10:43", "202.46.51.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("14949", "2", "2015-08-06 10:35:44", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("14950", "8", "2015-08-06 11:09:15", "202.46.51.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("14951", "8", "2015-08-06 12:07:47", "202.46.56.193", "54");
INSERT INTO `wp_gf_form_view` VALUES("14952", "7", "2015-08-06 12:44:25", "185.15.29.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("14953", "1", "2015-08-06 12:44:26", "185.15.29.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("14954", "2", "2015-08-06 12:44:26", "185.15.29.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("14955", "3", "2015-08-06 12:44:31", "185.15.29.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("14956", "8", "2015-08-06 13:06:20", "202.46.51.185", "27");
INSERT INTO `wp_gf_form_view` VALUES("14957", "3", "2015-08-06 13:55:52", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("14958", "8", "2015-08-06 14:03:44", "157.55.39.233", "11");
INSERT INTO `wp_gf_form_view` VALUES("14959", "8", "2015-08-06 15:03:24", "202.46.58.135", "8");
INSERT INTO `wp_gf_form_view` VALUES("14960", "8", "2015-08-06 16:01:58", "202.46.57.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("14961", "8", "2015-08-06 17:00:30", "202.46.57.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("14962", "8", "2015-08-06 18:07:00", "64.180.190.94", "7");
INSERT INTO `wp_gf_form_view` VALUES("14963", "3", "2015-08-06 18:44:46", "208.115.111.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("14964", "8", "2015-08-06 19:09:15", "202.46.54.158", "7");
INSERT INTO `wp_gf_form_view` VALUES("14965", "8", "2015-08-06 20:07:47", "202.46.52.144", "19");
INSERT INTO `wp_gf_form_view` VALUES("14966", "3", "2015-08-06 20:48:29", "23.235.76.76", "20");
INSERT INTO `wp_gf_form_view` VALUES("14967", "8", "2015-08-06 21:06:19", "202.46.56.196", "15");
INSERT INTO `wp_gf_form_view` VALUES("14968", "3", "2015-08-06 21:21:39", "96.50.8.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("14969", "2", "2015-08-06 21:22:54", "96.50.8.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("14970", "8", "2015-08-06 22:04:51", "202.46.52.210", "7");
INSERT INTO `wp_gf_form_view` VALUES("14971", "8", "2015-08-06 23:03:24", "202.46.54.147", "6");
INSERT INTO `wp_gf_form_view` VALUES("14972", "8", "2015-08-07 00:01:56", "202.46.58.190", "6");
INSERT INTO `wp_gf_form_view` VALUES("14973", "8", "2015-08-07 01:00:28", "202.46.50.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("14974", "1", "2015-08-07 01:47:43", "151.80.31.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("14975", "8", "2015-08-07 02:10:42", "202.46.58.194", "9");
INSERT INTO `wp_gf_form_view` VALUES("14976", "8", "2015-08-07 03:20:57", "202.46.50.137", "9");
INSERT INTO `wp_gf_form_view` VALUES("14977", "8", "2015-08-07 04:06:01", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("14978", "8", "2015-08-07 05:06:19", "202.46.58.201", "7");
INSERT INTO `wp_gf_form_view` VALUES("14979", "8", "2015-08-07 06:04:52", "202.46.55.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("14980", "8", "2015-08-07 07:03:24", "202.46.55.139", "9");
INSERT INTO `wp_gf_form_view` VALUES("14981", "3", "2015-08-07 07:16:00", "207.46.13.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("14982", "8", "2015-08-07 08:01:57", "202.46.57.173", "13");
INSERT INTO `wp_gf_form_view` VALUES("14983", "3", "2015-08-07 08:41:03", "87.11.185.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("14984", "8", "2015-08-07 09:00:28", "202.46.53.201", "9");
INSERT INTO `wp_gf_form_view` VALUES("14985", "8", "2015-08-07 10:10:43", "202.46.53.166", "12");
INSERT INTO `wp_gf_form_view` VALUES("14986", "8", "2015-08-07 11:09:14", "202.46.52.176", "7");
INSERT INTO `wp_gf_form_view` VALUES("14987", "8", "2015-08-07 12:07:49", "202.46.58.180", "9");
INSERT INTO `wp_gf_form_view` VALUES("14988", "3", "2015-08-07 12:54:39", "202.46.55.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("14989", "8", "2015-08-07 13:06:19", "202.46.49.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("14990", "8", "2015-08-07 14:01:47", "207.46.13.122", "10");
INSERT INTO `wp_gf_form_view` VALUES("14991", "8", "2015-08-07 15:03:24", "202.46.49.131", "5");
INSERT INTO `wp_gf_form_view` VALUES("14992", "8", "2015-08-07 16:02:43", "202.46.53.149", "7");
INSERT INTO `wp_gf_form_view` VALUES("14993", "8", "2015-08-07 17:00:30", "202.46.48.208", "9");
INSERT INTO `wp_gf_form_view` VALUES("14994", "8", "2015-08-07 18:10:42", "202.46.48.140", "7");
INSERT INTO `wp_gf_form_view` VALUES("14995", "8", "2015-08-07 19:06:00", "157.55.39.164", "16");
INSERT INTO `wp_gf_form_view` VALUES("14996", "2", "2015-08-07 19:26:49", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("14997", "8", "2015-08-07 20:00:10", "96.50.66.248", "14");
INSERT INTO `wp_gf_form_view` VALUES("14998", "8", "2015-08-07 21:06:19", "202.46.58.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("14999", "8", "2015-08-07 22:04:53", "202.46.56.130", "8");
INSERT INTO `wp_gf_form_view` VALUES("15000", "8", "2015-08-07 23:03:23", "202.46.53.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("15001", "8", "2015-08-08 00:01:56", "202.46.51.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("15002", "8", "2015-08-08 01:00:28", "202.46.49.131", "13");
INSERT INTO `wp_gf_form_view` VALUES("15003", "8", "2015-08-08 02:02:40", "66.249.79.133", "8");
INSERT INTO `wp_gf_form_view` VALUES("15004", "8", "2015-08-08 03:02:28", "66.249.79.120", "9");
INSERT INTO `wp_gf_form_view` VALUES("15005", "8", "2015-08-08 04:07:47", "202.46.54.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("15006", "6", "2015-08-08 04:34:55", "98.200.239.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("15007", "3", "2015-08-08 05:04:22", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15008", "8", "2015-08-08 05:04:22", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("15009", "3", "2015-08-08 06:04:52", "202.46.50.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("15010", "8", "2015-08-08 06:04:53", "202.46.50.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("15011", "8", "2015-08-08 07:03:23", "202.46.55.177", "10");
INSERT INTO `wp_gf_form_view` VALUES("15012", "8", "2015-08-08 08:01:55", "202.46.54.187", "9");
INSERT INTO `wp_gf_form_view` VALUES("15013", "8", "2015-08-08 09:00:33", "202.46.58.186", "12");
INSERT INTO `wp_gf_form_view` VALUES("15014", "8", "2015-08-08 10:07:21", "157.55.39.121", "7");
INSERT INTO `wp_gf_form_view` VALUES("15015", "8", "2015-08-08 11:09:14", "202.46.56.204", "9");
INSERT INTO `wp_gf_form_view` VALUES("15016", "8", "2015-08-08 12:07:47", "202.46.51.176", "8");
INSERT INTO `wp_gf_form_view` VALUES("15017", "8", "2015-08-08 13:06:18", "202.46.58.165", "9");
INSERT INTO `wp_gf_form_view` VALUES("15018", "3", "2015-08-08 13:16:58", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15019", "8", "2015-08-08 14:04:56", "202.46.53.147", "86");
INSERT INTO `wp_gf_form_view` VALUES("15020", "2", "2015-08-08 14:18:23", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("15021", "1", "2015-08-08 14:18:26", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("15022", "3", "2015-08-08 14:19:16", "213.239.211.141", "4");
INSERT INTO `wp_gf_form_view` VALUES("15023", "5", "2015-08-08 14:22:45", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("15024", "8", "2015-08-08 15:00:59", "172.56.2.141", "14");
INSERT INTO `wp_gf_form_view` VALUES("15025", "8", "2015-08-08 16:10:53", "207.46.13.41", "5");
INSERT INTO `wp_gf_form_view` VALUES("15026", "8", "2015-08-08 17:00:27", "202.46.56.136", "9");
INSERT INTO `wp_gf_form_view` VALUES("15027", "8", "2015-08-08 18:10:42", "202.46.51.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("15028", "8", "2015-08-08 19:09:15", "202.46.53.164", "5");
INSERT INTO `wp_gf_form_view` VALUES("15029", "8", "2015-08-08 20:07:49", "202.46.54.142", "6");
INSERT INTO `wp_gf_form_view` VALUES("15030", "8", "2015-08-08 21:06:19", "202.46.50.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("15031", "8", "2015-08-08 22:04:51", "202.46.54.210", "9");
INSERT INTO `wp_gf_form_view` VALUES("15032", "8", "2015-08-08 23:03:38", "66.249.79.133", "7");
INSERT INTO `wp_gf_form_view` VALUES("15033", "3", "2015-08-08 23:42:51", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("15034", "8", "2015-08-09 00:01:55", "202.46.57.209", "8");
INSERT INTO `wp_gf_form_view` VALUES("15035", "8", "2015-08-09 01:00:28", "202.46.51.207", "8");
INSERT INTO `wp_gf_form_view` VALUES("15036", "8", "2015-08-09 02:10:41", "202.46.49.147", "14");
INSERT INTO `wp_gf_form_view` VALUES("15037", "3", "2015-08-09 02:40:12", "91.200.12.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("15038", "8", "2015-08-09 03:09:14", "202.46.52.200", "7");
INSERT INTO `wp_gf_form_view` VALUES("15039", "3", "2015-08-09 03:29:52", "207.46.13.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("15040", "8", "2015-08-09 04:02:26", "207.46.13.7", "11");
INSERT INTO `wp_gf_form_view` VALUES("15041", "8", "2015-08-09 05:06:18", "202.46.49.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("15042", "8", "2015-08-09 06:04:52", "202.46.54.196", "9");
INSERT INTO `wp_gf_form_view` VALUES("15043", "2", "2015-08-09 06:13:03", "188.165.15.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("15044", "8", "2015-08-09 07:03:26", "202.46.58.209", "9");
INSERT INTO `wp_gf_form_view` VALUES("15045", "8", "2015-08-09 08:01:57", "202.46.55.175", "9");
INSERT INTO `wp_gf_form_view` VALUES("15046", "3", "2015-08-09 08:37:03", "202.46.56.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("15047", "8", "2015-08-09 09:00:27", "202.46.53.142", "20");
INSERT INTO `wp_gf_form_view` VALUES("15048", "2", "2015-08-09 09:40:43", "192.99.150.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("15049", "1", "2015-08-09 09:40:45", "192.99.150.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("15050", "3", "2015-08-09 10:10:43", "202.46.52.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("15051", "8", "2015-08-09 10:10:43", "202.46.52.160", "11");
INSERT INTO `wp_gf_form_view` VALUES("15052", "8", "2015-08-09 11:09:15", "202.46.48.142", "14");
INSERT INTO `wp_gf_form_view` VALUES("15053", "3", "2015-08-09 11:51:00", "79.18.238.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("15054", "8", "2015-08-09 12:07:46", "202.46.51.139", "10");
INSERT INTO `wp_gf_form_view` VALUES("15055", "1", "2015-08-09 12:24:26", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("15056", "2", "2015-08-09 12:24:28", "162.211.122.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("15057", "8", "2015-08-09 13:06:20", "202.46.58.194", "7");
INSERT INTO `wp_gf_form_view` VALUES("15058", "8", "2015-08-09 14:03:39", "66.249.79.120", "8");
INSERT INTO `wp_gf_form_view` VALUES("15059", "8", "2015-08-09 15:01:57", "207.46.13.7", "9");
INSERT INTO `wp_gf_form_view` VALUES("15060", "8", "2015-08-09 16:01:56", "202.46.49.194", "7");
INSERT INTO `wp_gf_form_view` VALUES("15061", "8", "2015-08-09 17:00:26", "202.46.58.187", "7");
INSERT INTO `wp_gf_form_view` VALUES("15062", "3", "2015-08-09 17:47:18", "202.46.54.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("15063", "8", "2015-08-09 18:10:43", "202.46.58.157", "190");
INSERT INTO `wp_gf_form_view` VALUES("15064", "1", "2015-08-09 18:42:14", "104.131.217.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("15065", "3", "2015-08-09 18:47:34", "104.131.217.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("15066", "5", "2015-08-09 18:48:48", "104.131.217.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("15067", "6", "2015-08-09 18:56:04", "104.131.217.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("15068", "8", "2015-08-09 19:00:09", "104.131.217.85", "436");
INSERT INTO `wp_gf_form_view` VALUES("15069", "3", "2015-08-09 19:00:34", "104.131.217.85", "10");
INSERT INTO `wp_gf_form_view` VALUES("15070", "2", "2015-08-09 19:46:05", "104.131.217.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("15071", "8", "2015-08-09 20:00:39", "104.131.217.85", "14");
INSERT INTO `wp_gf_form_view` VALUES("15072", "8", "2015-08-09 21:06:18", "202.46.52.174", "7");
INSERT INTO `wp_gf_form_view` VALUES("15073", "3", "2015-08-09 21:29:44", "202.46.51.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("15074", "8", "2015-08-09 22:04:50", "202.46.52.150", "12");
INSERT INTO `wp_gf_form_view` VALUES("15075", "3", "2015-08-09 22:32:45", "91.200.12.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("15076", "8", "2015-08-09 23:03:22", "202.46.53.176", "8");
INSERT INTO `wp_gf_form_view` VALUES("15077", "8", "2015-08-10 00:01:55", "202.46.57.162", "13");
INSERT INTO `wp_gf_form_view` VALUES("15078", "3", "2015-08-10 00:27:35", "157.55.39.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("15079", "8", "2015-08-10 01:00:27", "202.46.53.175", "10");
INSERT INTO `wp_gf_form_view` VALUES("15080", "8", "2015-08-10 02:10:43", "202.46.51.207", "8");
INSERT INTO `wp_gf_form_view` VALUES("15081", "3", "2015-08-10 02:21:49", "188.165.15.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("15082", "8", "2015-08-10 03:09:15", "202.46.57.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("15083", "8", "2015-08-10 04:04:06", "188.165.15.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("15084", "8", "2015-08-10 05:05:30", "188.165.15.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("15085", "8", "2015-08-10 06:04:50", "202.46.51.168", "8");
INSERT INTO `wp_gf_form_view` VALUES("15086", "8", "2015-08-10 07:03:22", "202.46.54.140", "17");
INSERT INTO `wp_gf_form_view` VALUES("15087", "3", "2015-08-10 07:55:03", "104.144.203.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("15088", "8", "2015-08-10 08:01:55", "202.46.54.137", "10");
INSERT INTO `wp_gf_form_view` VALUES("15089", "8", "2015-08-10 09:00:26", "202.46.49.190", "20");
INSERT INTO `wp_gf_form_view` VALUES("15090", "7", "2015-08-10 09:06:28", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("15091", "3", "2015-08-10 09:14:11", "23.250.63.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("15092", "8", "2015-08-10 10:10:42", "202.46.54.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("15093", "8", "2015-08-10 11:09:16", "202.46.54.163", "9");
INSERT INTO `wp_gf_form_view` VALUES("15094", "3", "2015-08-10 11:40:44", "46.246.38.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("15095", "8", "2015-08-10 12:04:23", "66.249.79.133", "8");
INSERT INTO `wp_gf_form_view` VALUES("15096", "3", "2015-08-10 12:19:41", "220.181.108.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("15097", "8", "2015-08-10 13:06:18", "202.46.55.131", "14");
INSERT INTO `wp_gf_form_view` VALUES("15098", "3", "2015-08-10 13:33:29", "23.250.63.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("15099", "8", "2015-08-10 14:04:49", "202.46.55.154", "7");
INSERT INTO `wp_gf_form_view` VALUES("15100", "8", "2015-08-10 15:01:52", "23.250.59.55", "11");
INSERT INTO `wp_gf_form_view` VALUES("15101", "3", "2015-08-10 15:22:42", "220.181.108.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("15102", "8", "2015-08-10 16:02:02", "202.46.52.175", "5");
INSERT INTO `wp_gf_form_view` VALUES("15103", "8", "2015-08-10 17:12:09", "202.46.53.152", "10");
INSERT INTO `wp_gf_form_view` VALUES("15104", "8", "2015-08-10 18:10:41", "202.46.50.163", "10");
INSERT INTO `wp_gf_form_view` VALUES("15105", "8", "2015-08-10 19:09:13", "202.46.48.210", "5");
INSERT INTO `wp_gf_form_view` VALUES("15106", "8", "2015-08-10 20:07:46", "202.46.51.177", "11");
INSERT INTO `wp_gf_form_view` VALUES("15107", "8", "2015-08-10 21:05:43", "157.55.39.142", "12");
INSERT INTO `wp_gf_form_view` VALUES("15108", "8", "2015-08-10 22:04:50", "202.46.48.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("15109", "8", "2015-08-10 23:03:22", "202.46.57.207", "6");
INSERT INTO `wp_gf_form_view` VALUES("15110", "8", "2015-08-11 00:01:54", "202.46.52.168", "11");
INSERT INTO `wp_gf_form_view` VALUES("15111", "3", "2015-08-11 00:50:05", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15112", "8", "2015-08-11 01:00:26", "202.46.55.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("15113", "3", "2015-08-11 01:47:17", "202.46.53.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("15114", "8", "2015-08-11 02:10:41", "202.46.52.161", "32");
INSERT INTO `wp_gf_form_view` VALUES("15115", "1", "2015-08-11 02:11:20", "47.23.126.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("15116", "2", "2015-08-11 02:11:24", "47.23.126.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("15117", "8", "2015-08-11 03:09:13", "202.46.56.136", "18");
INSERT INTO `wp_gf_form_view` VALUES("15118", "8", "2015-08-11 04:07:45", "202.46.58.159", "8");
INSERT INTO `wp_gf_form_view` VALUES("15119", "8", "2015-08-11 05:06:17", "202.46.49.137", "11");
INSERT INTO `wp_gf_form_view` VALUES("15120", "3", "2015-08-11 05:42:20", "91.200.12.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("15121", "8", "2015-08-11 06:04:49", "202.46.57.165", "24");
INSERT INTO `wp_gf_form_view` VALUES("15122", "3", "2015-08-11 06:35:05", "188.165.15.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("15123", "1", "2015-08-11 06:38:07", "188.40.112.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("15124", "8", "2015-08-11 07:03:22", "202.46.56.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("15125", "8", "2015-08-11 08:01:56", "202.46.54.143", "10");
INSERT INTO `wp_gf_form_view` VALUES("15126", "8", "2015-08-11 09:12:09", "202.46.58.201", "10");
INSERT INTO `wp_gf_form_view` VALUES("15127", "8", "2015-08-11 10:10:41", "202.46.55.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("15128", "8", "2015-08-11 11:09:16", "202.46.58.190", "9");
INSERT INTO `wp_gf_form_view` VALUES("15129", "8", "2015-08-11 12:07:45", "202.46.50.154", "5");
INSERT INTO `wp_gf_form_view` VALUES("15130", "8", "2015-08-11 13:06:18", "202.46.55.141", "8");
INSERT INTO `wp_gf_form_view` VALUES("15131", "3", "2015-08-11 13:53:10", "202.46.54.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("15132", "8", "2015-08-11 14:04:49", "202.46.51.183", "8");
INSERT INTO `wp_gf_form_view` VALUES("15133", "8", "2015-08-11 15:03:23", "202.46.58.185", "9");
INSERT INTO `wp_gf_form_view` VALUES("15134", "3", "2015-08-11 15:05:16", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15135", "8", "2015-08-11 16:01:54", "202.46.57.165", "16");
INSERT INTO `wp_gf_form_view` VALUES("15136", "8", "2015-08-11 17:00:26", "202.46.54.144", "14");
INSERT INTO `wp_gf_form_view` VALUES("15137", "3", "2015-08-11 17:02:47", "188.165.15.165", "3");
INSERT INTO `wp_gf_form_view` VALUES("15138", "8", "2015-08-11 18:10:42", "202.46.55.152", "5");
INSERT INTO `wp_gf_form_view` VALUES("15139", "8", "2015-08-11 19:09:16", "202.46.53.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("15140", "8", "2015-08-11 20:01:39", "157.55.39.4", "11");
INSERT INTO `wp_gf_form_view` VALUES("15141", "8", "2015-08-11 21:06:25", "202.46.55.151", "8");
INSERT INTO `wp_gf_form_view` VALUES("15142", "3", "2015-08-11 21:25:50", "188.165.15.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("15143", "8", "2015-08-11 22:04:51", "202.46.56.206", "10");
INSERT INTO `wp_gf_form_view` VALUES("15144", "8", "2015-08-11 23:03:21", "202.46.58.165", "9");
INSERT INTO `wp_gf_form_view` VALUES("15145", "8", "2015-08-12 00:01:54", "202.46.48.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("15146", "7", "2015-08-12 00:25:19", "202.46.52.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("15147", "6", "2015-08-12 00:39:29", "157.55.39.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("15148", "8", "2015-08-12 01:01:28", "188.165.15.165", "158");
INSERT INTO `wp_gf_form_view` VALUES("15149", "2", "2015-08-12 01:37:07", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("15150", "1", "2015-08-12 01:37:18", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("15151", "3", "2015-08-12 01:40:32", "81.144.138.34", "11");
INSERT INTO `wp_gf_form_view` VALUES("15152", "5", "2015-08-12 01:54:00", "81.144.138.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("15153", "8", "2015-08-12 02:00:06", "81.144.138.34", "67");
INSERT INTO `wp_gf_form_view` VALUES("15154", "8", "2015-08-12 03:09:13", "202.46.50.156", "7");
INSERT INTO `wp_gf_form_view` VALUES("15155", "8", "2015-08-12 04:07:48", "202.46.54.203", "7");
INSERT INTO `wp_gf_form_view` VALUES("15156", "8", "2015-08-12 05:06:18", "202.46.57.165", "7");
INSERT INTO `wp_gf_form_view` VALUES("15157", "8", "2015-08-12 06:04:56", "202.46.55.149", "10");
INSERT INTO `wp_gf_form_view` VALUES("15158", "8", "2015-08-12 07:03:21", "202.46.57.158", "5");
INSERT INTO `wp_gf_form_view` VALUES("15159", "3", "2015-08-12 07:26:48", "202.46.49.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("15160", "8", "2015-08-12 08:02:00", "202.46.57.185", "6");
INSERT INTO `wp_gf_form_view` VALUES("15161", "3", "2015-08-12 08:25:20", "202.46.55.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("15162", "8", "2015-08-12 09:06:07", "202.46.52.160", "9");
INSERT INTO `wp_gf_form_view` VALUES("15163", "8", "2015-08-12 10:04:39", "202.46.48.201", "11");
INSERT INTO `wp_gf_form_view` VALUES("15164", "3", "2015-08-12 10:41:38", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("15165", "8", "2015-08-12 11:03:12", "202.46.55.142", "10");
INSERT INTO `wp_gf_form_view` VALUES("15166", "8", "2015-08-12 12:01:21", "188.165.15.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("15167", "3", "2015-08-12 12:01:35", "157.55.39.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("15168", "8", "2015-08-12 13:00:16", "202.46.58.138", "13");
INSERT INTO `wp_gf_form_view` VALUES("15169", "1", "2015-08-12 13:05:44", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15170", "8", "2015-08-12 14:10:31", "202.46.55.130", "10");
INSERT INTO `wp_gf_form_view` VALUES("15171", "8", "2015-08-12 15:20:47", "202.46.54.180", "10");
INSERT INTO `wp_gf_form_view` VALUES("15172", "8", "2015-08-12 16:07:35", "202.46.53.152", "10");
INSERT INTO `wp_gf_form_view` VALUES("15173", "3", "2015-08-12 16:32:05", "157.55.39.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("15174", "1", "2015-08-12 16:59:46", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("15175", "8", "2015-08-12 17:06:07", "202.46.52.141", "10");
INSERT INTO `wp_gf_form_view` VALUES("15176", "3", "2015-08-12 17:27:57", "207.46.13.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("15177", "8", "2015-08-12 18:02:34", "108.180.145.39", "14");
INSERT INTO `wp_gf_form_view` VALUES("15178", "8", "2015-08-12 19:03:11", "202.46.51.132", "9");
INSERT INTO `wp_gf_form_view` VALUES("15179", "8", "2015-08-12 20:01:47", "202.46.55.140", "18");
INSERT INTO `wp_gf_form_view` VALUES("15180", "8", "2015-08-12 21:00:16", "202.46.56.137", "14");
INSERT INTO `wp_gf_form_view` VALUES("15181", "3", "2015-08-12 21:56:01", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15182", "8", "2015-08-12 22:10:30", "202.46.54.143", "13");
INSERT INTO `wp_gf_form_view` VALUES("15183", "8", "2015-08-12 23:09:02", "202.46.51.160", "14");
INSERT INTO `wp_gf_form_view` VALUES("15184", "8", "2015-08-13 00:07:35", "202.46.49.152", "8");
INSERT INTO `wp_gf_form_view` VALUES("15185", "3", "2015-08-13 00:31:01", "202.46.51.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("15186", "8", "2015-08-13 01:06:08", "202.46.58.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("15187", "8", "2015-08-13 02:04:39", "202.46.58.200", "8");
INSERT INTO `wp_gf_form_view` VALUES("15188", "3", "2015-08-13 02:16:23", "202.46.48.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("15189", "8", "2015-08-13 03:03:11", "202.46.54.131", "7");
INSERT INTO `wp_gf_form_view` VALUES("15190", "3", "2015-08-13 03:41:06", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15191", "8", "2015-08-13 04:01:43", "202.46.54.182", "37");
INSERT INTO `wp_gf_form_view` VALUES("15192", "1", "2015-08-13 04:23:44", "82.76.87.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("15193", "2", "2015-08-13 04:23:50", "82.76.87.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("15194", "3", "2015-08-13 04:24:26", "82.76.87.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("15195", "8", "2015-08-13 05:00:16", "202.46.48.210", "9");
INSERT INTO `wp_gf_form_view` VALUES("15196", "8", "2015-08-13 06:10:30", "202.46.58.134", "40");
INSERT INTO `wp_gf_form_view` VALUES("15197", "1", "2015-08-13 06:54:46", "104.167.108.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("15198", "2", "2015-08-13 06:54:50", "104.167.108.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("15199", "3", "2015-08-13 06:55:21", "104.167.108.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("15200", "8", "2015-08-13 07:09:03", "202.46.50.180", "25");
INSERT INTO `wp_gf_form_view` VALUES("15201", "8", "2015-08-13 08:07:35", "202.46.48.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("15202", "8", "2015-08-13 09:06:07", "202.46.54.144", "9");
INSERT INTO `wp_gf_form_view` VALUES("15203", "3", "2015-08-13 09:57:13", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15204", "8", "2015-08-13 10:04:39", "202.46.56.180", "7");
INSERT INTO `wp_gf_form_view` VALUES("15205", "8", "2015-08-13 11:03:11", "202.46.52.177", "5");
INSERT INTO `wp_gf_form_view` VALUES("15206", "8", "2015-08-13 12:01:44", "202.46.57.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("15207", "8", "2015-08-13 13:00:16", "202.46.53.197", "9");
INSERT INTO `wp_gf_form_view` VALUES("15208", "8", "2015-08-13 14:02:56", "66.249.79.146", "9");
INSERT INTO `wp_gf_form_view` VALUES("15209", "8", "2015-08-13 15:09:02", "202.46.57.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("15210", "8", "2015-08-13 16:07:36", "202.46.55.151", "18");
INSERT INTO `wp_gf_form_view` VALUES("15211", "8", "2015-08-13 17:06:07", "202.46.52.140", "11");
INSERT INTO `wp_gf_form_view` VALUES("15212", "8", "2015-08-13 18:04:42", "202.46.58.206", "8");
INSERT INTO `wp_gf_form_view` VALUES("15213", "3", "2015-08-13 18:22:41", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15214", "8", "2015-08-13 19:03:12", "202.46.55.144", "51");
INSERT INTO `wp_gf_form_view` VALUES("15215", "2", "2015-08-13 19:44:45", "107.182.26.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("15216", "1", "2015-08-13 19:44:46", "107.182.26.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("15217", "3", "2015-08-13 19:44:58", "107.182.26.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("15218", "8", "2015-08-13 20:01:43", "202.46.49.204", "12");
INSERT INTO `wp_gf_form_view` VALUES("15219", "8", "2015-08-13 21:00:15", "202.46.54.190", "11");
INSERT INTO `wp_gf_form_view` VALUES("15220", "8", "2015-08-13 22:10:15", "77.75.76.165", "13");
INSERT INTO `wp_gf_form_view` VALUES("15221", "8", "2015-08-13 23:09:09", "202.46.51.132", "15");
INSERT INTO `wp_gf_form_view` VALUES("15222", "8", "2015-08-14 00:07:37", "202.46.52.208", "6");
INSERT INTO `wp_gf_form_view` VALUES("15223", "8", "2015-08-14 01:17:48", "202.46.51.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("15224", "3", "2015-08-14 01:30:30", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("15225", "8", "2015-08-14 02:04:38", "202.46.51.183", "11");
INSERT INTO `wp_gf_form_view` VALUES("15226", "8", "2015-08-14 03:02:52", "24.108.135.3", "11");
INSERT INTO `wp_gf_form_view` VALUES("15227", "8", "2015-08-14 04:01:45", "202.46.48.138", "6");
INSERT INTO `wp_gf_form_view` VALUES("15228", "8", "2015-08-14 05:00:15", "202.46.55.133", "10");
INSERT INTO `wp_gf_form_view` VALUES("15229", "8", "2015-08-14 06:09:15", "104.243.129.210", "9");
INSERT INTO `wp_gf_form_view` VALUES("15230", "3", "2015-08-14 06:25:38", "5.230.154.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("15231", "8", "2015-08-14 07:07:43", "104.243.129.210", "9");
INSERT INTO `wp_gf_form_view` VALUES("15232", "8", "2015-08-14 08:07:34", "202.46.56.136", "13");
INSERT INTO `wp_gf_form_view` VALUES("15233", "3", "2015-08-14 08:11:46", "68.71.148.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("15234", "8", "2015-08-14 09:06:06", "202.46.52.142", "10");
INSERT INTO `wp_gf_form_view` VALUES("15235", "8", "2015-08-14 10:04:38", "202.46.48.28", "9");
INSERT INTO `wp_gf_form_view` VALUES("15236", "8", "2015-08-14 11:03:27", "66.249.79.146", "8");
INSERT INTO `wp_gf_form_view` VALUES("15237", "8", "2015-08-14 12:01:46", "202.46.57.183", "8");
INSERT INTO `wp_gf_form_view` VALUES("15238", "8", "2015-08-14 13:00:16", "202.46.54.99", "11");
INSERT INTO `wp_gf_form_view` VALUES("15239", "8", "2015-08-14 14:04:25", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("15240", "3", "2015-08-14 14:31:17", "207.46.13.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("15241", "8", "2015-08-14 15:09:03", "202.46.51.197", "9");
INSERT INTO `wp_gf_form_view` VALUES("15242", "3", "2015-08-14 15:49:28", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("15243", "8", "2015-08-14 16:07:42", "202.46.53.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("15244", "8", "2015-08-14 17:06:15", "202.46.51.206", "10");
INSERT INTO `wp_gf_form_view` VALUES("15245", "8", "2015-08-14 18:04:38", "202.46.58.165", "7");
INSERT INTO `wp_gf_form_view` VALUES("15246", "8", "2015-08-14 19:03:10", "202.46.56.94", "9");
INSERT INTO `wp_gf_form_view` VALUES("15247", "8", "2015-08-14 20:01:43", "202.46.50.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("15248", "8", "2015-08-14 21:00:14", "202.46.54.90", "58");
INSERT INTO `wp_gf_form_view` VALUES("15249", "1", "2015-08-14 21:25:37", "174.127.133.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("15250", "2", "2015-08-14 21:26:45", "174.127.133.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("15251", "3", "2015-08-14 21:28:04", "174.127.133.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("15252", "8", "2015-08-14 22:00:36", "174.127.133.92", "98");
INSERT INTO `wp_gf_form_view` VALUES("15253", "1", "2015-08-14 22:01:01", "174.127.133.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("15254", "3", "2015-08-14 22:04:40", "174.127.133.89", "11");
INSERT INTO `wp_gf_form_view` VALUES("15255", "2", "2015-08-14 22:43:33", "178.84.185.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("15256", "8", "2015-08-14 23:09:02", "202.46.55.152", "6");
INSERT INTO `wp_gf_form_view` VALUES("15257", "3", "2015-08-14 23:10:42", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("15258", "8", "2015-08-15 00:07:35", "202.46.52.103", "5");
INSERT INTO `wp_gf_form_view` VALUES("15259", "8", "2015-08-15 01:06:06", "202.46.55.125", "5");
INSERT INTO `wp_gf_form_view` VALUES("15260", "8", "2015-08-15 02:04:37", "202.46.55.132", "18");
INSERT INTO `wp_gf_form_view` VALUES("15261", "8", "2015-08-15 03:03:11", "202.46.53.58", "10");
INSERT INTO `wp_gf_form_view` VALUES("15262", "8", "2015-08-15 04:01:42", "202.46.51.131", "11");
INSERT INTO `wp_gf_form_view` VALUES("15263", "3", "2015-08-15 04:36:51", "202.46.49.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("15264", "8", "2015-08-15 05:00:15", "202.46.56.179", "8");
INSERT INTO `wp_gf_form_view` VALUES("15265", "8", "2015-08-15 06:10:29", "202.46.50.190", "9");
INSERT INTO `wp_gf_form_view` VALUES("15266", "8", "2015-08-15 07:09:01", "202.46.57.158", "21");
INSERT INTO `wp_gf_form_view` VALUES("15267", "3", "2015-08-15 07:09:57", "23.250.63.71", "5");
INSERT INTO `wp_gf_form_view` VALUES("15268", "8", "2015-08-15 08:07:39", "202.46.55.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("15269", "8", "2015-08-15 09:06:06", "202.46.57.22", "17");
INSERT INTO `wp_gf_form_view` VALUES("15270", "3", "2015-08-15 09:11:39", "23.250.63.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("15271", "8", "2015-08-15 10:04:38", "202.46.56.72", "7");
INSERT INTO `wp_gf_form_view` VALUES("15272", "3", "2015-08-15 10:09:02", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("15273", "3", "2015-08-15 11:02:38", "91.200.12.38", "5");
INSERT INTO `wp_gf_form_view` VALUES("15274", "8", "2015-08-15 11:02:38", "91.200.12.38", "21");
INSERT INTO `wp_gf_form_view` VALUES("15275", "2", "2015-08-15 11:50:46", "116.211.225.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("15276", "8", "2015-08-15 12:01:42", "202.46.53.49", "16");
INSERT INTO `wp_gf_form_view` VALUES("15277", "3", "2015-08-15 12:25:32", "23.250.59.63", "3");
INSERT INTO `wp_gf_form_view` VALUES("15278", "8", "2015-08-15 13:00:15", "202.46.57.17", "14");
INSERT INTO `wp_gf_form_view` VALUES("15279", "8", "2015-08-15 14:10:29", "202.46.57.24", "13");
INSERT INTO `wp_gf_form_view` VALUES("15280", "3", "2015-08-15 14:44:40", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("15281", "8", "2015-08-15 15:09:04", "202.46.48.126", "9");
INSERT INTO `wp_gf_form_view` VALUES("15282", "8", "2015-08-15 16:07:34", "202.46.49.205", "10");
INSERT INTO `wp_gf_form_view` VALUES("15283", "3", "2015-08-15 16:18:30", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("15284", "8", "2015-08-15 17:06:06", "202.46.58.94", "11");
INSERT INTO `wp_gf_form_view` VALUES("15285", "3", "2015-08-15 17:50:07", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("15286", "8", "2015-08-15 18:04:38", "202.46.50.134", "7");
INSERT INTO `wp_gf_form_view` VALUES("15287", "8", "2015-08-15 19:03:10", "202.46.54.100", "6");
INSERT INTO `wp_gf_form_view` VALUES("15288", "3", "2015-08-15 19:38:14", "157.55.39.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("15289", "8", "2015-08-15 20:01:42", "202.46.55.179", "10");
INSERT INTO `wp_gf_form_view` VALUES("15290", "8", "2015-08-15 21:00:14", "202.46.54.103", "11");
INSERT INTO `wp_gf_form_view` VALUES("15291", "3", "2015-08-15 21:38:12", "207.46.13.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("15292", "8", "2015-08-15 22:10:29", "202.46.49.119", "8");
INSERT INTO `wp_gf_form_view` VALUES("15293", "3", "2015-08-15 22:25:32", "217.69.133.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("15294", "8", "2015-08-15 23:09:00", "202.46.52.158", "11");
INSERT INTO `wp_gf_form_view` VALUES("15295", "3", "2015-08-15 23:57:37", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("15296", "8", "2015-08-16 00:07:32", "202.46.57.203", "8");
INSERT INTO `wp_gf_form_view` VALUES("15297", "8", "2015-08-16 01:03:52", "157.55.39.99", "13");
INSERT INTO `wp_gf_form_view` VALUES("15298", "8", "2015-08-16 02:04:37", "202.46.53.153", "10");
INSERT INTO `wp_gf_form_view` VALUES("15299", "3", "2015-08-16 02:37:42", "184.66.10.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("15300", "3", "2015-08-16 03:01:10", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("15301", "8", "2015-08-16 03:01:10", "217.69.133.227", "11");
INSERT INTO `wp_gf_form_view` VALUES("15302", "8", "2015-08-16 04:01:42", "202.46.53.91", "16");
INSERT INTO `wp_gf_form_view` VALUES("15303", "3", "2015-08-16 04:35:03", "91.200.12.38", "3");
INSERT INTO `wp_gf_form_view` VALUES("15304", "8", "2015-08-16 05:00:13", "202.46.50.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("15305", "3", "2015-08-16 05:21:06", "198.27.65.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("15306", "8", "2015-08-16 06:02:10", "85.25.185.173", "57");
INSERT INTO `wp_gf_form_view` VALUES("15307", "2", "2015-08-16 06:02:21", "85.25.185.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("15308", "1", "2015-08-16 06:02:23", "85.25.185.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("15309", "3", "2015-08-16 06:02:47", "85.25.185.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("15310", "8", "2015-08-16 07:20:44", "202.46.50.159", "52");
INSERT INTO `wp_gf_form_view` VALUES("15311", "5", "2015-08-16 07:52:22", "133.130.48.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("15312", "8", "2015-08-16 08:00:02", "133.130.48.124", "453");
INSERT INTO `wp_gf_form_view` VALUES("15313", "1", "2015-08-16 08:55:34", "133.130.48.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("15314", "8", "2015-08-16 09:00:04", "133.130.48.124", "244");
INSERT INTO `wp_gf_form_view` VALUES("15315", "2", "2015-08-16 09:08:18", "133.130.48.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("15316", "3", "2015-08-16 09:08:45", "133.130.48.124", "3");
INSERT INTO `wp_gf_form_view` VALUES("15317", "8", "2015-08-16 10:04:37", "202.46.58.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("15318", "1", "2015-08-16 10:22:27", "103.9.88.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("15319", "3", "2015-08-16 10:50:07", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("15320", "8", "2015-08-16 11:03:12", "202.46.57.165", "18");
INSERT INTO `wp_gf_form_view` VALUES("15321", "3", "2015-08-16 11:48:15", "208.107.41.62", "9");
INSERT INTO `wp_gf_form_view` VALUES("15322", "8", "2015-08-16 12:01:41", "202.46.56.196", "9");
INSERT INTO `wp_gf_form_view` VALUES("15323", "8", "2015-08-16 13:00:14", "202.46.55.133", "13");
INSERT INTO `wp_gf_form_view` VALUES("15324", "3", "2015-08-16 13:56:58", "217.69.133.233", "3");
INSERT INTO `wp_gf_form_view` VALUES("15325", "6", "2015-08-16 13:57:08", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("15326", "8", "2015-08-16 14:08:08", "157.55.39.206", "9");
INSERT INTO `wp_gf_form_view` VALUES("15327", "8", "2015-08-16 15:09:00", "202.46.51.167", "11");
INSERT INTO `wp_gf_form_view` VALUES("15328", "3", "2015-08-16 15:30:31", "217.69.133.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("15329", "8", "2015-08-16 16:07:33", "202.46.52.15", "10");
INSERT INTO `wp_gf_form_view` VALUES("15330", "8", "2015-08-16 17:06:05", "202.46.55.176", "11");
INSERT INTO `wp_gf_form_view` VALUES("15331", "3", "2015-08-16 18:04:38", "202.46.51.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("15332", "8", "2015-08-16 18:04:38", "202.46.51.158", "15");
INSERT INTO `wp_gf_form_view` VALUES("15333", "8", "2015-08-16 19:03:09", "202.46.58.208", "9");
INSERT INTO `wp_gf_form_view` VALUES("15334", "3", "2015-08-16 19:44:03", "157.55.39.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("15335", "8", "2015-08-16 20:01:41", "202.46.54.204", "10");
INSERT INTO `wp_gf_form_view` VALUES("15336", "6", "2015-08-16 20:10:13", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("15337", "3", "2015-08-16 20:10:18", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("15338", "8", "2015-08-16 21:00:13", "202.46.53.54", "10");
INSERT INTO `wp_gf_form_view` VALUES("15339", "3", "2015-08-16 21:01:22", "66.249.79.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("15340", "8", "2015-08-16 22:10:29", "202.46.53.40", "7");
INSERT INTO `wp_gf_form_view` VALUES("15341", "8", "2015-08-16 23:09:02", "202.46.55.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("15342", "3", "2015-08-16 23:32:35", "91.200.12.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("15343", "2", "2015-08-16 23:50:59", "46.4.189.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("15344", "8", "2015-08-17 00:07:33", "202.46.50.186", "9");
INSERT INTO `wp_gf_form_view` VALUES("15345", "3", "2015-08-17 00:52:16", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("15346", "8", "2015-08-17 01:06:05", "202.46.50.126", "7");
INSERT INTO `wp_gf_form_view` VALUES("15347", "8", "2015-08-17 02:16:19", "202.46.49.199", "5");
INSERT INTO `wp_gf_form_view` VALUES("15348", "3", "2015-08-17 02:54:32", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15349", "8", "2015-08-17 03:03:09", "202.46.49.197", "11");
INSERT INTO `wp_gf_form_view` VALUES("15350", "5", "2015-08-17 03:44:58", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("15351", "8", "2015-08-17 04:01:41", "202.46.58.156", "10");
INSERT INTO `wp_gf_form_view` VALUES("15352", "8", "2015-08-17 05:00:15", "202.46.55.86", "9");
INSERT INTO `wp_gf_form_view` VALUES("15353", "8", "2015-08-17 06:16:38", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("15354", "8", "2015-08-17 07:09:02", "202.46.56.185", "9");
INSERT INTO `wp_gf_form_view` VALUES("15355", "3", "2015-08-17 07:31:11", "144.76.8.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("15356", "8", "2015-08-17 08:01:27", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("15357", "8", "2015-08-17 09:06:05", "202.46.50.84", "7");
INSERT INTO `wp_gf_form_view` VALUES("15358", "8", "2015-08-17 10:04:37", "202.46.50.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("15359", "8", "2015-08-17 11:03:11", "202.46.53.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("15360", "8", "2015-08-17 12:01:41", "202.46.54.147", "8");
INSERT INTO `wp_gf_form_view` VALUES("15361", "8", "2015-08-17 13:00:13", "202.46.51.198", "11");
INSERT INTO `wp_gf_form_view` VALUES("15362", "3", "2015-08-17 13:36:34", "144.76.201.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("15363", "1", "2015-08-17 13:56:24", "54.174.216.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("15364", "8", "2015-08-17 14:10:27", "202.46.57.38", "5");
INSERT INTO `wp_gf_form_view` VALUES("15365", "3", "2015-08-17 14:34:05", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15366", "3", "2015-08-17 15:09:05", "202.46.58.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("15367", "8", "2015-08-17 15:09:05", "202.46.58.13", "16");
INSERT INTO `wp_gf_form_view` VALUES("15368", "1", "2015-08-17 15:37:08", "116.211.225.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("15369", "8", "2015-08-17 16:07:32", "202.46.49.115", "5");
INSERT INTO `wp_gf_form_view` VALUES("15370", "8", "2015-08-17 17:06:04", "202.46.51.118", "9");
INSERT INTO `wp_gf_form_view` VALUES("15371", "8", "2015-08-17 18:04:37", "202.46.57.206", "7");
INSERT INTO `wp_gf_form_view` VALUES("15372", "3", "2015-08-17 18:54:52", "66.249.79.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("15373", "8", "2015-08-17 19:02:58", "108.180.118.122", "8");
INSERT INTO `wp_gf_form_view` VALUES("15374", "8", "2015-08-17 20:01:40", "202.46.54.105", "18");
INSERT INTO `wp_gf_form_view` VALUES("15375", "3", "2015-08-17 20:08:08", "157.55.39.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("15376", "6", "2015-08-17 20:09:21", "45.59.156.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("15377", "8", "2015-08-17 21:00:13", "202.46.48.147", "14");
INSERT INTO `wp_gf_form_view` VALUES("15378", "3", "2015-08-17 21:35:37", "184.66.150.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("15379", "8", "2015-08-17 22:10:28", "202.46.54.206", "10");
INSERT INTO `wp_gf_form_view` VALUES("15380", "3", "2015-08-17 22:49:27", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15381", "8", "2015-08-17 23:09:02", "202.46.49.78", "8");
INSERT INTO `wp_gf_form_view` VALUES("15382", "8", "2015-08-18 00:07:32", "202.46.52.13", "8");
INSERT INTO `wp_gf_form_view` VALUES("15383", "8", "2015-08-18 01:06:04", "202.46.50.150", "6");
INSERT INTO `wp_gf_form_view` VALUES("15384", "3", "2015-08-18 01:52:17", "220.181.108.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("15385", "8", "2015-08-18 02:04:38", "202.46.58.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("15386", "8", "2015-08-18 03:03:08", "202.46.54.187", "12");
INSERT INTO `wp_gf_form_view` VALUES("15387", "8", "2015-08-18 04:01:41", "202.46.55.146", "14");
INSERT INTO `wp_gf_form_view` VALUES("15388", "2", "2015-08-18 04:38:55", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15389", "8", "2015-08-18 05:00:14", "202.46.50.75", "17");
INSERT INTO `wp_gf_form_view` VALUES("15390", "8", "2015-08-18 06:10:27", "202.46.57.12", "8");
INSERT INTO `wp_gf_form_view` VALUES("15391", "8", "2015-08-18 07:09:08", "202.46.55.179", "9");
INSERT INTO `wp_gf_form_view` VALUES("15392", "8", "2015-08-18 08:07:32", "202.46.57.23", "9");
INSERT INTO `wp_gf_form_view` VALUES("15393", "8", "2015-08-18 09:06:04", "202.46.55.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("15394", "3", "2015-08-18 10:03:31", "91.200.12.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("15395", "8", "2015-08-18 10:03:31", "91.200.12.38", "10");
INSERT INTO `wp_gf_form_view` VALUES("15396", "8", "2015-08-18 11:03:08", "202.46.58.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("15397", "8", "2015-08-18 12:01:40", "202.46.52.157", "5");
INSERT INTO `wp_gf_form_view` VALUES("15398", "8", "2015-08-18 13:00:13", "202.46.49.67", "7");
INSERT INTO `wp_gf_form_view` VALUES("15399", "8", "2015-08-18 14:10:27", "202.46.51.31", "6");
INSERT INTO `wp_gf_form_view` VALUES("15400", "8", "2015-08-18 15:09:04", "202.46.53.120", "7");
INSERT INTO `wp_gf_form_view` VALUES("15401", "8", "2015-08-18 16:19:15", "202.46.50.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("15402", "8", "2015-08-18 17:06:16", "202.46.51.194", "7");
INSERT INTO `wp_gf_form_view` VALUES("15403", "8", "2015-08-18 18:04:36", "202.46.52.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("15404", "8", "2015-08-18 19:03:09", "202.46.48.141", "9");
INSERT INTO `wp_gf_form_view` VALUES("15405", "8", "2015-08-18 20:01:44", "202.46.55.87", "8");
INSERT INTO `wp_gf_form_view` VALUES("15406", "3", "2015-08-18 20:09:11", "220.181.108.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("15407", "8", "2015-08-18 21:00:13", "202.46.48.198", "8");
INSERT INTO `wp_gf_form_view` VALUES("15408", "8", "2015-08-18 22:10:27", "202.46.48.126", "10");
INSERT INTO `wp_gf_form_view` VALUES("15409", "3", "2015-08-18 22:14:30", "207.46.13.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("15410", "8", "2015-08-18 23:04:31", "77.75.78.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("15411", "8", "2015-08-19 00:07:32", "202.46.55.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("15412", "8", "2015-08-19 01:06:03", "202.46.56.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("15413", "8", "2015-08-19 02:04:37", "202.46.53.165", "9");
INSERT INTO `wp_gf_form_view` VALUES("15414", "8", "2015-08-19 03:03:08", "202.46.54.71", "7");
INSERT INTO `wp_gf_form_view` VALUES("15415", "8", "2015-08-19 04:01:40", "202.46.56.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("15416", "1", "2015-08-19 04:33:24", "46.246.38.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("15417", "8", "2015-08-19 05:00:12", "202.46.51.197", "8");
INSERT INTO `wp_gf_form_view` VALUES("15418", "8", "2015-08-19 06:10:26", "202.46.52.107", "12");
INSERT INTO `wp_gf_form_view` VALUES("15419", "8", "2015-08-19 07:09:00", "202.46.48.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("15420", "3", "2015-08-19 07:16:13", "66.249.79.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("15421", "8", "2015-08-19 08:07:32", "202.46.56.110", "13");
INSERT INTO `wp_gf_form_view` VALUES("15422", "3", "2015-08-19 08:09:44", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15423", "1", "2015-08-19 08:23:54", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15424", "8", "2015-08-19 09:06:03", "202.46.58.123", "11");
INSERT INTO `wp_gf_form_view` VALUES("15425", "8", "2015-08-19 10:04:37", "202.46.48.27", "8");
INSERT INTO `wp_gf_form_view` VALUES("15426", "8", "2015-08-19 11:03:08", "202.46.54.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("15427", "8", "2015-08-19 12:01:39", "202.46.54.206", "15");
INSERT INTO `wp_gf_form_view` VALUES("15428", "8", "2015-08-19 13:00:12", "202.46.49.139", "12");
INSERT INTO `wp_gf_form_view` VALUES("15429", "8", "2015-08-19 14:10:27", "202.46.56.70", "9");
INSERT INTO `wp_gf_form_view` VALUES("15430", "8", "2015-08-19 15:07:57", "157.55.39.121", "10");
INSERT INTO `wp_gf_form_view` VALUES("15431", "3", "2015-08-19 15:51:11", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15432", "8", "2015-08-19 16:07:38", "202.46.51.82", "9");
INSERT INTO `wp_gf_form_view` VALUES("15433", "3", "2015-08-19 16:08:21", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15434", "8", "2015-08-19 17:16:05", "157.55.39.126", "6");
INSERT INTO `wp_gf_form_view` VALUES("15435", "3", "2015-08-19 18:02:17", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("15436", "8", "2015-08-19 18:02:17", "68.180.229.161", "31");
INSERT INTO `wp_gf_form_view` VALUES("15437", "3", "2015-08-19 19:03:08", "202.46.48.93", "57");
INSERT INTO `wp_gf_form_view` VALUES("15438", "8", "2015-08-19 19:03:08", "202.46.48.93", "19");
INSERT INTO `wp_gf_form_view` VALUES("15439", "3", "2015-08-19 20:01:40", "202.46.55.133", "24");
INSERT INTO `wp_gf_form_view` VALUES("15440", "8", "2015-08-19 20:01:40", "202.46.55.133", "8");
INSERT INTO `wp_gf_form_view` VALUES("15441", "3", "2015-08-19 21:00:12", "202.46.48.133", "39");
INSERT INTO `wp_gf_form_view` VALUES("15442", "8", "2015-08-19 21:00:13", "202.46.48.133", "13");
INSERT INTO `wp_gf_form_view` VALUES("15443", "3", "2015-08-19 22:10:26", "202.46.49.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("15444", "8", "2015-08-19 22:10:26", "202.46.49.112", "9");
INSERT INTO `wp_gf_form_view` VALUES("15445", "3", "2015-08-19 23:08:58", "202.46.56.90", "22");
INSERT INTO `wp_gf_form_view` VALUES("15446", "8", "2015-08-19 23:08:58", "202.46.56.90", "8");
INSERT INTO `wp_gf_form_view` VALUES("15447", "3", "2015-08-20 00:08:02", "68.180.229.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("15448", "8", "2015-08-20 00:08:02", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("15449", "8", "2015-08-20 01:05:12", "5.231.237.254", "15");
INSERT INTO `wp_gf_form_view` VALUES("15450", "3", "2015-08-20 01:06:03", "202.46.53.210", "42");
INSERT INTO `wp_gf_form_view` VALUES("15451", "1", "2015-08-20 01:38:27", "66.249.79.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("15452", "3", "2015-08-20 02:04:36", "202.46.50.93", "18");
INSERT INTO `wp_gf_form_view` VALUES("15453", "8", "2015-08-20 02:04:36", "202.46.50.93", "5");
INSERT INTO `wp_gf_form_view` VALUES("15454", "3", "2015-08-20 03:03:07", "202.46.52.43", "33");
INSERT INTO `wp_gf_form_view` VALUES("15455", "8", "2015-08-20 03:03:08", "202.46.52.43", "12");
INSERT INTO `wp_gf_form_view` VALUES("15456", "3", "2015-08-20 04:01:40", "202.46.55.15", "19");
INSERT INTO `wp_gf_form_view` VALUES("15457", "8", "2015-08-20 04:01:40", "202.46.55.15", "6");
INSERT INTO `wp_gf_form_view` VALUES("15458", "3", "2015-08-20 05:00:12", "202.46.55.38", "24");
INSERT INTO `wp_gf_form_view` VALUES("15459", "8", "2015-08-20 05:00:13", "202.46.55.38", "8");
INSERT INTO `wp_gf_form_view` VALUES("15460", "1", "2015-08-20 05:21:13", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("15461", "3", "2015-08-20 06:10:26", "202.46.58.112", "48");
INSERT INTO `wp_gf_form_view` VALUES("15462", "8", "2015-08-20 06:10:26", "202.46.58.112", "15");
INSERT INTO `wp_gf_form_view` VALUES("15463", "3", "2015-08-20 07:08:58", "202.46.48.146", "28");
INSERT INTO `wp_gf_form_view` VALUES("15464", "8", "2015-08-20 07:08:59", "202.46.48.146", "8");
INSERT INTO `wp_gf_form_view` VALUES("15465", "3", "2015-08-20 08:07:33", "202.46.55.172", "28");
INSERT INTO `wp_gf_form_view` VALUES("15466", "8", "2015-08-20 08:07:33", "202.46.55.172", "9");
INSERT INTO `wp_gf_form_view` VALUES("15467", "3", "2015-08-20 09:06:02", "202.46.51.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("15468", "8", "2015-08-20 09:06:03", "202.46.51.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("15469", "3", "2015-08-20 10:04:35", "202.46.56.199", "24");
INSERT INTO `wp_gf_form_view` VALUES("15470", "8", "2015-08-20 10:04:35", "202.46.56.199", "8");
INSERT INTO `wp_gf_form_view` VALUES("15471", "3", "2015-08-20 11:03:09", "202.46.49.152", "34");
INSERT INTO `wp_gf_form_view` VALUES("15472", "8", "2015-08-20 11:03:09", "202.46.49.152", "13");
INSERT INTO `wp_gf_form_view` VALUES("15473", "1", "2015-08-20 11:09:48", "46.246.62.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("15474", "3", "2015-08-20 12:01:40", "202.46.56.111", "27");
INSERT INTO `wp_gf_form_view` VALUES("15475", "8", "2015-08-20 12:01:40", "202.46.56.111", "9");
INSERT INTO `wp_gf_form_view` VALUES("15476", "3", "2015-08-20 13:00:11", "202.46.57.21", "24");
INSERT INTO `wp_gf_form_view` VALUES("15477", "8", "2015-08-20 13:00:12", "202.46.57.21", "8");
INSERT INTO `wp_gf_form_view` VALUES("15478", "3", "2015-08-20 14:10:34", "202.46.58.157", "29");
INSERT INTO `wp_gf_form_view` VALUES("15479", "8", "2015-08-20 14:10:34", "202.46.58.157", "10");
INSERT INTO `wp_gf_form_view` VALUES("15480", "3", "2015-08-20 15:08:42", "66.249.79.70", "29");
INSERT INTO `wp_gf_form_view` VALUES("15481", "8", "2015-08-20 15:08:42", "66.249.79.70", "9");
INSERT INTO `wp_gf_form_view` VALUES("15482", "3", "2015-08-20 16:03:52", "66.249.79.76", "42");
INSERT INTO `wp_gf_form_view` VALUES("15483", "8", "2015-08-20 16:03:52", "66.249.79.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("15484", "7", "2015-08-20 16:17:29", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15485", "3", "2015-08-20 17:03:34", "207.46.13.82", "12");
INSERT INTO `wp_gf_form_view` VALUES("15486", "8", "2015-08-20 17:03:35", "207.46.13.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("15487", "3", "2015-08-20 18:02:38", "66.249.79.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("15488", "8", "2015-08-20 18:02:38", "66.249.79.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("15489", "3", "2015-08-20 19:04:20", "207.46.13.21", "23");
INSERT INTO `wp_gf_form_view` VALUES("15490", "8", "2015-08-20 19:04:23", "207.46.13.21", "7");
INSERT INTO `wp_gf_form_view` VALUES("15491", "7", "2015-08-20 19:26:40", "66.249.79.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("15492", "3", "2015-08-20 20:02:26", "121.43.187.19", "25");
INSERT INTO `wp_gf_form_view` VALUES("15493", "8", "2015-08-20 20:02:26", "121.43.187.19", "8");
INSERT INTO `wp_gf_form_view` VALUES("15494", "3", "2015-08-20 21:07:31", "207.46.13.82", "39");
INSERT INTO `wp_gf_form_view` VALUES("15495", "8", "2015-08-20 21:07:36", "207.46.13.82", "13");
INSERT INTO `wp_gf_form_view` VALUES("15496", "1", "2015-08-20 21:33:50", "221.234.228.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("15497", "6", "2015-08-20 21:56:04", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15498", "3", "2015-08-20 22:15:32", "202.46.50.130", "12");
INSERT INTO `wp_gf_form_view` VALUES("15499", "8", "2015-08-20 22:15:32", "202.46.50.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("15500", "8", "2015-08-20 23:01:44", "197.190.138.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("15501", "3", "2015-08-20 23:01:45", "197.190.138.148", "28");
INSERT INTO `wp_gf_form_view` VALUES("15502", "3", "2015-08-21 00:15:58", "66.249.79.70", "22");
INSERT INTO `wp_gf_form_view` VALUES("15503", "8", "2015-08-21 00:15:58", "66.249.79.70", "7");
INSERT INTO `wp_gf_form_view` VALUES("15504", "3", "2015-08-21 01:04:47", "66.249.88.235", "25");
INSERT INTO `wp_gf_form_view` VALUES("15505", "8", "2015-08-21 01:04:48", "66.249.88.235", "8");
INSERT INTO `wp_gf_form_view` VALUES("15506", "3", "2015-08-21 02:18:40", "154.20.40.8", "95");
INSERT INTO `wp_gf_form_view` VALUES("15507", "8", "2015-08-21 02:18:40", "154.20.40.8", "32");
INSERT INTO `wp_gf_form_view` VALUES("15508", "8", "2015-08-21 03:10:17", "202.46.56.64", "14");
INSERT INTO `wp_gf_form_view` VALUES("15509", "3", "2015-08-21 03:10:17", "202.46.56.64", "39");
INSERT INTO `wp_gf_form_view` VALUES("15510", "1", "2015-08-21 03:13:13", "154.20.40.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("15511", "3", "2015-08-21 04:08:04", "68.180.229.161", "37");
INSERT INTO `wp_gf_form_view` VALUES("15512", "8", "2015-08-21 04:08:05", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("15513", "3", "2015-08-21 05:03:52", "66.249.79.76", "39");
INSERT INTO `wp_gf_form_view` VALUES("15514", "8", "2015-08-21 05:03:52", "66.249.79.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("15515", "3", "2015-08-21 06:05:42", "202.46.48.144", "30");
INSERT INTO `wp_gf_form_view` VALUES("15516", "8", "2015-08-21 06:05:42", "202.46.48.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("15517", "3", "2015-08-21 07:04:11", "202.46.50.84", "24");
INSERT INTO `wp_gf_form_view` VALUES("15518", "8", "2015-08-21 07:04:11", "202.46.50.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("15519", "3", "2015-08-21 08:02:44", "202.46.57.170", "27");
INSERT INTO `wp_gf_form_view` VALUES("15520", "8", "2015-08-21 08:02:44", "202.46.57.170", "9");
INSERT INTO `wp_gf_form_view` VALUES("15521", "3", "2015-08-21 09:01:20", "202.46.50.93", "37");
INSERT INTO `wp_gf_form_view` VALUES("15522", "8", "2015-08-21 09:01:21", "202.46.50.93", "13");
INSERT INTO `wp_gf_form_view` VALUES("15523", "3", "2015-08-21 10:06:43", "66.249.79.76", "48");
INSERT INTO `wp_gf_form_view` VALUES("15524", "8", "2015-08-21 10:06:43", "66.249.79.76", "17");
INSERT INTO `wp_gf_form_view` VALUES("15525", "2", "2015-08-21 10:48:44", "66.249.79.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("15526", "3", "2015-08-21 12:16:55", "202.46.58.77", "23");
INSERT INTO `wp_gf_form_view` VALUES("15527", "8", "2015-08-21 12:16:57", "202.46.58.77", "8");
INSERT INTO `wp_gf_form_view` VALUES("15528", "3", "2015-08-21 13:08:03", "202.46.56.64", "9");
INSERT INTO `wp_gf_form_view` VALUES("15529", "8", "2015-08-21 13:08:03", "202.46.56.64", "3");
INSERT INTO `wp_gf_form_view` VALUES("15530", "3", "2015-08-21 14:03:43", "66.249.79.70", "42");
INSERT INTO `wp_gf_form_view` VALUES("15531", "8", "2015-08-21 14:03:44", "66.249.79.70", "14");
INSERT INTO `wp_gf_form_view` VALUES("15532", "3", "2015-08-21 15:07:12", "202.46.51.183", "27");
INSERT INTO `wp_gf_form_view` VALUES("15533", "8", "2015-08-21 15:07:13", "202.46.51.183", "9");
INSERT INTO `wp_gf_form_view` VALUES("15534", "8", "2015-08-21 16:05:45", "202.46.50.189", "11");
INSERT INTO `wp_gf_form_view` VALUES("15535", "3", "2015-08-21 16:05:46", "202.46.50.189", "31");
INSERT INTO `wp_gf_form_view` VALUES("15536", "3", "2015-08-21 17:01:25", "24.68.132.172", "33");
INSERT INTO `wp_gf_form_view` VALUES("15537", "8", "2015-08-21 17:01:26", "24.68.132.172", "11");
INSERT INTO `wp_gf_form_view` VALUES("15538", "3", "2015-08-21 18:02:48", "202.46.58.112", "46");
INSERT INTO `wp_gf_form_view` VALUES("15539", "8", "2015-08-21 18:02:49", "202.46.58.112", "16");
INSERT INTO `wp_gf_form_view` VALUES("15540", "1", "2015-08-21 18:25:00", "66.249.79.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("15541", "3", "2015-08-21 19:01:24", "202.46.55.81", "15");
INSERT INTO `wp_gf_form_view` VALUES("15542", "8", "2015-08-21 19:01:24", "202.46.55.81", "5");
INSERT INTO `wp_gf_form_view` VALUES("15543", "1", "2015-08-21 19:58:37", "116.211.224.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("15544", "3", "2015-08-21 20:10:34", "202.46.54.133", "96");
INSERT INTO `wp_gf_form_view` VALUES("15545", "8", "2015-08-21 20:10:35", "202.46.54.133", "32");
INSERT INTO `wp_gf_form_view` VALUES("15546", "5", "2015-08-21 20:58:45", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("15547", "2", "2015-08-21 20:59:17", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("15548", "3", "2015-08-21 21:00:22", "109.169.29.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("15549", "8", "2015-08-21 21:00:22", "109.169.29.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("15550", "3", "2015-08-21 22:24:18", "202.46.57.21", "9");
INSERT INTO `wp_gf_form_view` VALUES("15551", "8", "2015-08-21 22:24:18", "202.46.57.21", "3");
INSERT INTO `wp_gf_form_view` VALUES("15552", "3", "2015-08-21 23:12:31", "202.46.51.200", "30");
INSERT INTO `wp_gf_form_view` VALUES("15553", "8", "2015-08-21 23:12:31", "202.46.51.200", "9");
INSERT INTO `wp_gf_form_view` VALUES("15554", "3", "2015-08-22 00:17:49", "202.46.52.63", "27");
INSERT INTO `wp_gf_form_view` VALUES("15555", "8", "2015-08-22 00:17:49", "202.46.52.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("15556", "6", "2015-08-22 00:43:36", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("15557", "3", "2015-08-22 01:04:35", "202.46.57.163", "38");
INSERT INTO `wp_gf_form_view` VALUES("15558", "8", "2015-08-22 01:04:36", "202.46.57.163", "11");
INSERT INTO `wp_gf_form_view` VALUES("15559", "1", "2015-08-22 01:28:39", "174.139.80.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("15560", "3", "2015-08-22 02:14:11", "66.249.79.64", "6");
INSERT INTO `wp_gf_form_view` VALUES("15561", "8", "2015-08-22 02:14:11", "66.249.79.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("15562", "8", "2015-08-22 03:00:13", "202.46.57.11", "17");
INSERT INTO `wp_gf_form_view` VALUES("15563", "3", "2015-08-22 03:00:14", "202.46.57.11", "48");
INSERT INTO `wp_gf_form_view` VALUES("15564", "1", "2015-08-22 03:18:57", "58.96.182.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("15565", "3", "2015-08-22 04:00:12", "202.46.50.180", "51");
INSERT INTO `wp_gf_form_view` VALUES("15566", "8", "2015-08-22 04:00:12", "202.46.50.180", "18");
INSERT INTO `wp_gf_form_view` VALUES("15567", "1", "2015-08-22 04:27:09", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15568", "3", "2015-08-22 05:10:26", "202.46.55.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("15569", "8", "2015-08-22 05:10:26", "202.46.55.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("15570", "3", "2015-08-22 06:08:58", "202.46.56.110", "27");
INSERT INTO `wp_gf_form_view` VALUES("15571", "8", "2015-08-22 06:08:59", "202.46.56.110", "9");
INSERT INTO `wp_gf_form_view` VALUES("15572", "3", "2015-08-22 07:02:34", "157.55.39.69", "35");
INSERT INTO `wp_gf_form_view` VALUES("15573", "8", "2015-08-22 07:02:35", "157.55.39.69", "13");
INSERT INTO `wp_gf_form_view` VALUES("15574", "3", "2015-08-22 08:06:02", "202.46.51.16", "28");
INSERT INTO `wp_gf_form_view` VALUES("15575", "8", "2015-08-22 08:06:02", "202.46.51.16", "10");
INSERT INTO `wp_gf_form_view` VALUES("15576", "3", "2015-08-22 09:02:41", "157.55.39.178", "100");
INSERT INTO `wp_gf_form_view` VALUES("15577", "8", "2015-08-22 09:02:41", "157.55.39.178", "33");
INSERT INTO `wp_gf_form_view` VALUES("15578", "1", "2015-08-22 09:25:21", "47.23.126.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("15579", "2", "2015-08-22 09:25:26", "47.23.126.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("15580", "3", "2015-08-22 10:01:33", "68.180.229.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("15581", "8", "2015-08-22 10:01:34", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("15582", "1", "2015-08-22 10:19:36", "66.249.79.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("15583", "3", "2015-08-22 13:06:17", "157.55.39.14", "3");
INSERT INTO `wp_gf_form_view` VALUES("15584", "8", "2015-08-22 13:06:18", "157.55.39.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("15585", "3", "2015-08-22 14:48:45", "202.46.54.199", "6");
INSERT INTO `wp_gf_form_view` VALUES("15586", "8", "2015-08-22 14:48:46", "202.46.54.199", "2");
INSERT INTO `wp_gf_form_view` VALUES("15587", "3", "2015-08-22 15:02:06", "83.31.129.213", "9");
INSERT INTO `wp_gf_form_view` VALUES("15588", "8", "2015-08-22 15:02:06", "83.31.129.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("15589", "3", "2015-08-22 16:40:26", "66.249.79.64", "6");
INSERT INTO `wp_gf_form_view` VALUES("15590", "8", "2015-08-22 16:40:27", "66.249.79.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("15591", "3", "2015-08-22 17:31:42", "157.55.39.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("15592", "8", "2015-08-22 17:31:43", "157.55.39.176", "12");
INSERT INTO `wp_gf_form_view` VALUES("15593", "2", "2015-08-22 17:56:56", "142.54.174.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("15594", "1", "2015-08-22 17:56:58", "142.54.174.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("15595", "3", "2015-08-22 19:06:40", "157.55.39.177", "10");
INSERT INTO `wp_gf_form_view` VALUES("15596", "8", "2015-08-22 19:06:41", "157.55.39.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("15597", "1", "2015-08-22 19:13:09", "157.55.39.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("15598", "3", "2015-08-22 20:02:48", "68.180.229.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("15599", "8", "2015-08-22 20:02:48", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("15600", "3", "2015-08-22 21:18:57", "108.180.242.40", "9");
INSERT INTO `wp_gf_form_view` VALUES("15601", "8", "2015-08-22 21:18:58", "108.180.242.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("15602", "3", "2015-08-22 22:00:05", "207.46.13.84", "46");
INSERT INTO `wp_gf_form_view` VALUES("15603", "8", "2015-08-22 22:00:05", "207.46.13.84", "15");
INSERT INTO `wp_gf_form_view` VALUES("15604", "3", "2015-08-22 23:05:12", "202.46.58.185", "8");
INSERT INTO `wp_gf_form_view` VALUES("15605", "8", "2015-08-22 23:05:12", "202.46.58.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("15606", "3", "2015-08-23 00:25:16", "66.249.79.76", "39");
INSERT INTO `wp_gf_form_view` VALUES("15607", "8", "2015-08-23 00:25:16", "66.249.79.76", "13");
INSERT INTO `wp_gf_form_view` VALUES("15608", "6", "2015-08-23 00:46:17", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("15609", "3", "2015-08-23 01:12:08", "202.46.51.187", "11");
INSERT INTO `wp_gf_form_view` VALUES("15610", "8", "2015-08-23 01:12:09", "202.46.51.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("15611", "3", "2015-08-23 02:22:27", "96.50.75.217", "10");
INSERT INTO `wp_gf_form_view` VALUES("15612", "8", "2015-08-23 02:22:28", "96.50.75.217", "3");
INSERT INTO `wp_gf_form_view` VALUES("15613", "3", "2015-08-23 03:01:36", "66.249.79.64", "22");
INSERT INTO `wp_gf_form_view` VALUES("15614", "8", "2015-08-23 03:06:17", "66.249.79.70", "6");
INSERT INTO `wp_gf_form_view` VALUES("15615", "7", "2015-08-23 04:08:43", "66.249.79.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("15616", "3", "2015-08-23 04:08:43", "66.249.79.70", "12");
INSERT INTO `wp_gf_form_view` VALUES("15617", "8", "2015-08-23 04:08:43", "66.249.79.70", "4");
INSERT INTO `wp_gf_form_view` VALUES("15618", "3", "2015-08-23 05:00:46", "202.46.50.16", "25");
INSERT INTO `wp_gf_form_view` VALUES("15619", "8", "2015-08-23 05:00:46", "202.46.50.16", "8");
INSERT INTO `wp_gf_form_view` VALUES("15620", "2", "2015-08-23 05:07:03", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15621", "3", "2015-08-23 06:12:56", "82.211.57.133", "15");
INSERT INTO `wp_gf_form_view` VALUES("15622", "8", "2015-08-23 06:12:56", "82.211.57.133", "5");
INSERT INTO `wp_gf_form_view` VALUES("15623", "2", "2015-08-23 06:22:14", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15624", "6", "2015-08-23 06:51:07", "45.72.74.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("15625", "3", "2015-08-23 07:11:15", "54.161.228.210", "173");
INSERT INTO `wp_gf_form_view` VALUES("15626", "8", "2015-08-23 07:11:15", "54.161.228.210", "60");
INSERT INTO `wp_gf_form_view` VALUES("15627", "2", "2015-08-23 07:11:33", "54.161.228.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("15628", "1", "2015-08-23 07:11:36", "54.161.228.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("15629", "3", "2015-08-23 08:05:09", "66.249.79.76", "21");
INSERT INTO `wp_gf_form_view` VALUES("15630", "8", "2015-08-23 08:05:09", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("15631", "8", "2015-08-23 09:01:59", "202.46.57.172", "10");
INSERT INTO `wp_gf_form_view` VALUES("15632", "3", "2015-08-23 09:01:59", "202.46.57.172", "27");
INSERT INTO `wp_gf_form_view` VALUES("15633", "1", "2015-08-23 09:10:23", "66.249.79.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("15634", "3", "2015-08-23 10:00:31", "202.46.51.207", "28");
INSERT INTO `wp_gf_form_view` VALUES("15635", "8", "2015-08-23 10:00:31", "202.46.51.207", "10");
INSERT INTO `wp_gf_form_view` VALUES("15636", "3", "2015-08-23 11:10:47", "202.46.53.57", "15");
INSERT INTO `wp_gf_form_view` VALUES("15637", "8", "2015-08-23 11:10:49", "202.46.53.57", "5");
INSERT INTO `wp_gf_form_view` VALUES("15638", "6", "2015-08-23 12:04:47", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15639", "3", "2015-08-23 12:04:49", "68.180.229.161", "19");
INSERT INTO `wp_gf_form_view` VALUES("15640", "8", "2015-08-23 12:04:49", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("15641", "2", "2015-08-23 13:06:31", "157.55.39.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("15642", "3", "2015-08-23 13:06:31", "157.55.39.12", "35");
INSERT INTO `wp_gf_form_view` VALUES("15643", "8", "2015-08-23 13:06:32", "157.55.39.12", "12");
INSERT INTO `wp_gf_form_view` VALUES("15644", "1", "2015-08-23 13:26:57", "66.249.79.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("15645", "3", "2015-08-23 14:18:27", "202.46.53.113", "18");
INSERT INTO `wp_gf_form_view` VALUES("15646", "8", "2015-08-23 14:18:28", "202.46.53.113", "7");
INSERT INTO `wp_gf_form_view` VALUES("15647", "3", "2015-08-23 15:02:22", "108.180.242.40", "28");
INSERT INTO `wp_gf_form_view` VALUES("15648", "8", "2015-08-23 15:02:22", "108.180.242.40", "9");
INSERT INTO `wp_gf_form_view` VALUES("15649", "3", "2015-08-23 16:03:51", "202.46.53.140", "24");
INSERT INTO `wp_gf_form_view` VALUES("15650", "8", "2015-08-23 16:03:52", "202.46.53.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("15651", "3", "2015-08-23 17:07:57", "77.75.76.170", "12");
INSERT INTO `wp_gf_form_view` VALUES("15652", "8", "2015-08-23 17:07:58", "77.75.76.170", "4");
INSERT INTO `wp_gf_form_view` VALUES("15653", "3", "2015-08-23 18:49:01", "202.46.53.207", "3");
INSERT INTO `wp_gf_form_view` VALUES("15654", "8", "2015-08-23 18:49:02", "202.46.53.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("15655", "3", "2015-08-23 19:13:05", "202.46.54.95", "24");
INSERT INTO `wp_gf_form_view` VALUES("15656", "8", "2015-08-23 19:13:06", "202.46.54.95", "10");
INSERT INTO `wp_gf_form_view` VALUES("15657", "3", "2015-08-23 20:42:32", "202.46.52.69", "12");
INSERT INTO `wp_gf_form_view` VALUES("15658", "8", "2015-08-23 20:42:33", "202.46.52.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("15659", "3", "2015-08-23 21:01:14", "202.46.48.84", "30");
INSERT INTO `wp_gf_form_view` VALUES("15660", "8", "2015-08-23 21:01:15", "202.46.48.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("15661", "2", "2015-08-23 21:07:13", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15662", "1", "2015-08-23 21:47:04", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15663", "1", "2015-08-23 22:13:22", "107.150.42.226", "3");
INSERT INTO `wp_gf_form_view` VALUES("15664", "3", "2015-08-23 22:13:22", "107.150.42.226", "72");
INSERT INTO `wp_gf_form_view` VALUES("15665", "8", "2015-08-23 22:13:22", "107.150.42.226", "22");
INSERT INTO `wp_gf_form_view` VALUES("15666", "8", "2015-08-23 23:51:25", "54.209.60.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("15667", "3", "2015-08-23 23:51:27", "54.209.60.63", "3");
INSERT INTO `wp_gf_form_view` VALUES("15668", "2", "2015-08-24 00:00:10", "207.46.13.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("15669", "3", "2015-08-24 00:00:10", "207.46.13.50", "9");
INSERT INTO `wp_gf_form_view` VALUES("15670", "8", "2015-08-24 00:00:11", "207.46.13.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("15671", "3", "2015-08-24 01:03:19", "5.9.112.6", "24");
INSERT INTO `wp_gf_form_view` VALUES("15672", "8", "2015-08-24 01:03:19", "5.9.112.6", "8");
INSERT INTO `wp_gf_form_view` VALUES("15673", "3", "2015-08-24 02:56:41", "91.200.12.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("15674", "8", "2015-08-24 02:56:57", "91.200.12.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("15675", "3", "2015-08-24 03:07:11", "108.180.242.40", "32");
INSERT INTO `wp_gf_form_view` VALUES("15676", "8", "2015-08-24 03:07:18", "108.180.242.40", "11");
INSERT INTO `wp_gf_form_view` VALUES("15677", "3", "2015-08-24 05:09:31", "108.180.242.40", "37");
INSERT INTO `wp_gf_form_view` VALUES("15678", "8", "2015-08-24 05:09:38", "108.180.242.40", "12");
INSERT INTO `wp_gf_form_view` VALUES("15679", "1", "2015-08-24 05:15:52", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15680", "3", "2015-08-24 06:01:13", "202.46.58.113", "17");
INSERT INTO `wp_gf_form_view` VALUES("15681", "8", "2015-08-24 06:01:14", "202.46.58.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("15682", "3", "2015-08-24 07:16:49", "199.217.117.207", "21");
INSERT INTO `wp_gf_form_view` VALUES("15683", "8", "2015-08-24 07:16:50", "199.217.117.207", "7");
INSERT INTO `wp_gf_form_view` VALUES("15684", "1", "2015-08-24 07:19:03", "23.247.182.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("15685", "6", "2015-08-24 08:00:07", "162.244.15.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("15686", "6", "2015-08-24 08:00:07", "192.227.207.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("15687", "3", "2015-08-24 08:00:08", "192.227.207.155", "37");
INSERT INTO `wp_gf_form_view` VALUES("15688", "3", "2015-08-24 08:00:08", "162.244.15.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("15689", "8", "2015-08-24 08:00:08", "162.244.15.251", "9");
INSERT INTO `wp_gf_form_view` VALUES("15690", "8", "2015-08-24 08:00:08", "192.227.207.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("15691", "3", "2015-08-24 09:07:39", "202.46.56.73", "22");
INSERT INTO `wp_gf_form_view` VALUES("15692", "8", "2015-08-24 09:07:40", "202.46.56.73", "7");
INSERT INTO `wp_gf_form_view` VALUES("15693", "3", "2015-08-24 10:08:01", "202.46.58.200", "15");
INSERT INTO `wp_gf_form_view` VALUES("15694", "8", "2015-08-24 10:08:01", "202.46.58.200", "5");
INSERT INTO `wp_gf_form_view` VALUES("15695", "3", "2015-08-24 11:48:39", "66.249.79.64", "7");
INSERT INTO `wp_gf_form_view` VALUES("15696", "8", "2015-08-24 11:48:45", "66.249.79.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("15697", "3", "2015-08-24 12:09:10", "77.173.163.90", "103");
INSERT INTO `wp_gf_form_view` VALUES("15698", "8", "2015-08-24 12:09:10", "77.173.163.90", "34");
INSERT INTO `wp_gf_form_view` VALUES("15699", "1", "2015-08-24 12:09:50", "77.173.163.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("15700", "2", "2015-08-24 12:09:56", "77.173.163.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("15701", "3", "2015-08-24 13:09:14", "198.2.196.140", "34");
INSERT INTO `wp_gf_form_view` VALUES("15702", "3", "2015-08-24 13:09:14", "198.2.196.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("15703", "8", "2015-08-24 13:09:15", "198.2.196.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("15704", "1", "2015-08-24 14:48:51", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15705", "3", "2015-08-24 14:48:54", "108.180.242.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("15706", "8", "2015-08-24 14:48:55", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15707", "1", "2015-08-24 15:30:04", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15708", "3", "2015-08-24 15:30:28", "108.180.242.40", "9");
INSERT INTO `wp_gf_form_view` VALUES("15709", "8", "2015-08-24 15:30:29", "108.180.242.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("15710", "3", "2015-08-24 16:16:36", "1.179.143.178", "4");
INSERT INTO `wp_gf_form_view` VALUES("15711", "8", "2015-08-24 16:18:27", "1.179.143.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("15712", "3", "2015-08-24 17:11:14", "24.108.85.166", "15");
INSERT INTO `wp_gf_form_view` VALUES("15713", "8", "2015-08-24 17:11:20", "24.108.85.166", "4");
INSERT INTO `wp_gf_form_view` VALUES("15714", "8", "2015-08-24 17:11:20", "24.108.85.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("15715", "3", "2015-08-24 18:31:32", "54.148.148.133", "33");
INSERT INTO `wp_gf_form_view` VALUES("15716", "8", "2015-08-24 18:31:33", "54.148.148.133", "11");
INSERT INTO `wp_gf_form_view` VALUES("15717", "3", "2015-08-24 19:20:57", "96.50.93.42", "18");
INSERT INTO `wp_gf_form_view` VALUES("15718", "8", "2015-08-24 19:20:59", "96.50.93.42", "6");
INSERT INTO `wp_gf_form_view` VALUES("15719", "3", "2015-08-24 20:03:14", "107.172.3.100", "68");
INSERT INTO `wp_gf_form_view` VALUES("15720", "8", "2015-08-24 20:03:14", "107.172.3.100", "22");
INSERT INTO `wp_gf_form_view` VALUES("15721", "3", "2015-08-24 21:35:42", "188.40.112.210", "29");
INSERT INTO `wp_gf_form_view` VALUES("15722", "8", "2015-08-24 21:35:43", "188.40.112.210", "8");
INSERT INTO `wp_gf_form_view` VALUES("15723", "3", "2015-08-24 22:25:45", "199.21.99.202", "23");
INSERT INTO `wp_gf_form_view` VALUES("15724", "3", "2015-08-24 22:25:45", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("15725", "8", "2015-08-24 22:25:48", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("15726", "1", "2015-08-24 22:57:04", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15727", "3", "2015-08-24 23:03:56", "54.201.167.216", "52");
INSERT INTO `wp_gf_form_view` VALUES("15728", "8", "2015-08-24 23:03:56", "54.201.167.216", "17");
INSERT INTO `wp_gf_form_view` VALUES("15729", "1", "2015-08-24 23:05:14", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15730", "3", "2015-08-25 00:09:52", "24.69.48.241", "43");
INSERT INTO `wp_gf_form_view` VALUES("15731", "8", "2015-08-25 00:10:02", "24.69.48.241", "14");
INSERT INTO `wp_gf_form_view` VALUES("15732", "1", "2015-08-25 00:11:40", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15733", "3", "2015-08-25 01:10:30", "188.165.15.235", "36");
INSERT INTO `wp_gf_form_view` VALUES("15734", "8", "2015-08-25 01:10:32", "188.165.15.235", "12");
INSERT INTO `wp_gf_form_view` VALUES("15735", "3", "2015-08-25 02:00:52", "54.201.191.138", "43");
INSERT INTO `wp_gf_form_view` VALUES("15736", "8", "2015-08-25 02:00:52", "54.201.191.138", "14");
INSERT INTO `wp_gf_form_view` VALUES("15737", "3", "2015-08-25 03:00:09", "68.180.229.161", "44");
INSERT INTO `wp_gf_form_view` VALUES("15738", "8", "2015-08-25 03:00:09", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("15739", "3", "2015-08-25 04:02:11", "202.46.54.95", "52");
INSERT INTO `wp_gf_form_view` VALUES("15740", "8", "2015-08-25 04:02:11", "202.46.54.95", "17");
INSERT INTO `wp_gf_form_view` VALUES("15741", "3", "2015-08-25 05:06:46", "66.249.79.76", "45");
INSERT INTO `wp_gf_form_view` VALUES("15742", "8", "2015-08-25 05:06:46", "66.249.79.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("15743", "3", "2015-08-25 06:00:53", "66.249.79.70", "45");
INSERT INTO `wp_gf_form_view` VALUES("15744", "8", "2015-08-25 06:00:53", "66.249.79.70", "15");
INSERT INTO `wp_gf_form_view` VALUES("15745", "6", "2015-08-25 06:01:46", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("15746", "3", "2015-08-25 07:15:48", "202.46.54.94", "130");
INSERT INTO `wp_gf_form_view` VALUES("15747", "8", "2015-08-25 07:15:48", "202.46.54.94", "43");
INSERT INTO `wp_gf_form_view` VALUES("15748", "2", "2015-08-25 07:18:17", "107.150.42.226", "3");
INSERT INTO `wp_gf_form_view` VALUES("15749", "1", "2015-08-25 07:23:57", "82.171.194.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("15750", "3", "2015-08-25 08:05:29", "66.249.79.64", "143");
INSERT INTO `wp_gf_form_view` VALUES("15751", "8", "2015-08-25 08:05:29", "66.249.79.64", "48");
INSERT INTO `wp_gf_form_view` VALUES("15752", "1", "2015-08-25 08:46:15", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("15753", "2", "2015-08-25 08:46:37", "104.171.124.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("15754", "3", "2015-08-25 09:05:37", "66.249.79.64", "81");
INSERT INTO `wp_gf_form_view` VALUES("15755", "8", "2015-08-25 09:05:37", "66.249.79.64", "27");
INSERT INTO `wp_gf_form_view` VALUES("15756", "2", "2015-08-25 09:36:43", "66.249.79.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("15757", "7", "2015-08-25 09:42:55", "66.249.79.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("15758", "3", "2015-08-25 10:13:22", "157.55.39.168", "24");
INSERT INTO `wp_gf_form_view` VALUES("15759", "8", "2015-08-25 10:13:22", "157.55.39.168", "8");
INSERT INTO `wp_gf_form_view` VALUES("15760", "3", "2015-08-25 11:05:30", "202.46.52.147", "39");
INSERT INTO `wp_gf_form_view` VALUES("15761", "8", "2015-08-25 11:05:31", "202.46.52.147", "13");
INSERT INTO `wp_gf_form_view` VALUES("15762", "6", "2015-08-25 11:39:25", "66.249.79.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("15763", "2", "2015-08-25 11:45:41", "66.249.79.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("15764", "3", "2015-08-25 12:07:07", "202.46.55.151", "63");
INSERT INTO `wp_gf_form_view` VALUES("15765", "8", "2015-08-25 12:07:07", "202.46.55.151", "20");
INSERT INTO `wp_gf_form_view` VALUES("15766", "1", "2015-08-25 12:50:14", "31.184.238.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("15767", "3", "2015-08-25 13:04:52", "66.249.79.64", "73");
INSERT INTO `wp_gf_form_view` VALUES("15768", "8", "2015-08-25 13:04:52", "66.249.79.64", "23");
INSERT INTO `wp_gf_form_view` VALUES("15769", "3", "2015-08-25 14:00:45", "66.249.79.70", "30");
INSERT INTO `wp_gf_form_view` VALUES("15770", "8", "2015-08-25 14:00:45", "66.249.79.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("15771", "6", "2015-08-25 14:40:31", "66.249.79.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("15772", "3", "2015-08-25 15:17:48", "66.249.79.70", "35");
INSERT INTO `wp_gf_form_view` VALUES("15773", "8", "2015-08-25 15:17:49", "66.249.79.70", "12");
INSERT INTO `wp_gf_form_view` VALUES("15774", "1", "2015-08-25 15:27:05", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15775", "3", "2015-08-25 16:00:27", "66.249.79.70", "548");
INSERT INTO `wp_gf_form_view` VALUES("15776", "8", "2015-08-25 16:00:27", "66.249.79.70", "192");
INSERT INTO `wp_gf_form_view` VALUES("15777", "6", "2015-08-25 16:27:33", "66.249.79.64", "3");
INSERT INTO `wp_gf_form_view` VALUES("15778", "1", "2015-08-25 16:42:50", "107.170.162.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("15779", "5", "2015-08-25 16:50:45", "107.170.162.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("15780", "3", "2015-08-25 17:00:04", "107.170.162.72", "1336");
INSERT INTO `wp_gf_form_view` VALUES("15781", "8", "2015-08-25 17:00:04", "107.170.162.72", "453");
INSERT INTO `wp_gf_form_view` VALUES("15782", "1", "2015-08-25 17:17:37", "96.50.93.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("15783", "2", "2015-08-25 17:21:41", "97.65.249.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("15784", "8", "2015-08-25 18:00:18", "107.170.162.72", "17");
INSERT INTO `wp_gf_form_view` VALUES("15785", "3", "2015-08-25 18:00:19", "107.170.162.72", "40");
INSERT INTO `wp_gf_form_view` VALUES("15786", "1", "2015-08-25 18:29:18", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15787", "1", "2015-08-25 19:04:31", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15788", "3", "2015-08-25 19:04:31", "108.180.242.40", "33");
INSERT INTO `wp_gf_form_view` VALUES("15789", "8", "2015-08-25 19:04:32", "108.180.242.40", "12");
INSERT INTO `wp_gf_form_view` VALUES("15790", "3", "2015-08-25 20:09:47", "202.46.57.173", "13");
INSERT INTO `wp_gf_form_view` VALUES("15791", "8", "2015-08-25 20:09:47", "202.46.57.173", "5");
INSERT INTO `wp_gf_form_view` VALUES("15792", "1", "2015-08-25 21:03:46", "108.180.242.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("15793", "3", "2015-08-25 21:03:46", "108.180.242.40", "50");
INSERT INTO `wp_gf_form_view` VALUES("15794", "8", "2015-08-25 21:03:47", "108.180.242.40", "16");
INSERT INTO `wp_gf_form_view` VALUES("15795", "2", "2015-08-25 21:52:52", "108.180.165.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("15796", "3", "2015-08-25 22:06:52", "202.46.57.72", "12");
INSERT INTO `wp_gf_form_view` VALUES("15797", "8", "2015-08-25 22:06:52", "202.46.57.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("15798", "3", "2015-08-25 23:03:15", "207.46.13.29", "15");
INSERT INTO `wp_gf_form_view` VALUES("15799", "8", "2015-08-25 23:03:15", "207.46.13.29", "5");
INSERT INTO `wp_gf_form_view` VALUES("15800", "3", "2015-08-26 00:02:01", "188.165.15.235", "21");
INSERT INTO `wp_gf_form_view` VALUES("15801", "8", "2015-08-26 00:02:02", "188.165.15.235", "7");
INSERT INTO `wp_gf_form_view` VALUES("15802", "3", "2015-08-26 01:10:34", "202.46.58.123", "21");
INSERT INTO `wp_gf_form_view` VALUES("15803", "8", "2015-08-26 01:10:34", "202.46.58.123", "7");
INSERT INTO `wp_gf_form_view` VALUES("15804", "2", "2015-08-26 01:50:33", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("15805", "3", "2015-08-26 02:00:53", "68.180.229.161", "27");
INSERT INTO `wp_gf_form_view` VALUES("15806", "8", "2015-08-26 02:00:53", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("15807", "2", "2015-08-26 03:48:17", "188.165.15.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("15808", "3", "2015-08-26 03:48:18", "188.165.15.235", "3");
INSERT INTO `wp_gf_form_view` VALUES("15809", "8", "2015-08-26 03:48:18", "188.165.15.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("15810", "3", "2015-08-26 04:05:33", "202.46.56.69", "13");
INSERT INTO `wp_gf_form_view` VALUES("15811", "8", "2015-08-26 04:05:33", "202.46.56.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("15812", "3", "2015-08-26 05:00:37", "157.55.39.177", "64");
INSERT INTO `wp_gf_form_view` VALUES("15813", "8", "2015-08-26 05:00:38", "157.55.39.177", "21");
INSERT INTO `wp_gf_form_view` VALUES("15814", "3", "2015-08-26 06:10:55", "202.46.58.156", "14");
INSERT INTO `wp_gf_form_view` VALUES("15815", "8", "2015-08-26 06:10:56", "202.46.58.156", "5");
INSERT INTO `wp_gf_form_view` VALUES("15816", "8", "2015-08-26 07:12:38", "157.55.39.230", "19");
INSERT INTO `wp_gf_form_view` VALUES("15817", "3", "2015-08-26 07:12:41", "157.55.39.230", "44");
INSERT INTO `wp_gf_form_view` VALUES("15818", "3", "2015-08-26 08:01:46", "202.46.55.88", "53");
INSERT INTO `wp_gf_form_view` VALUES("15819", "8", "2015-08-26 08:01:46", "202.46.55.88", "18");
INSERT INTO `wp_gf_form_view` VALUES("15820", "1", "2015-08-26 08:20:15", "157.55.39.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("15821", "8", "2015-08-26 09:12:37", "202.46.58.206", "7");
INSERT INTO `wp_gf_form_view` VALUES("15822", "3", "2015-08-26 09:12:37", "202.46.58.206", "17");
INSERT INTO `wp_gf_form_view` VALUES("15823", "3", "2015-08-26 10:10:30", "202.46.53.13", "45");
INSERT INTO `wp_gf_form_view` VALUES("15824", "8", "2015-08-26 10:10:31", "202.46.53.13", "14");
INSERT INTO `wp_gf_form_view` VALUES("15825", "3", "2015-08-26 11:29:30", "66.249.79.64", "18");
INSERT INTO `wp_gf_form_view` VALUES("15826", "8", "2015-08-26 11:29:31", "66.249.79.64", "6");
INSERT INTO `wp_gf_form_view` VALUES("15827", "3", "2015-08-26 12:17:02", "188.165.15.235", "13");
INSERT INTO `wp_gf_form_view` VALUES("15828", "8", "2015-08-26 12:17:03", "188.165.15.235", "4");
INSERT INTO `wp_gf_form_view` VALUES("15829", "3", "2015-08-26 13:05:04", "61.90.62.39", "19");
INSERT INTO `wp_gf_form_view` VALUES("15830", "8", "2015-08-26 13:05:04", "61.90.62.39", "7");
INSERT INTO `wp_gf_form_view` VALUES("15831", "3", "2015-08-26 14:03:40", "188.165.15.235", "19");
INSERT INTO `wp_gf_form_view` VALUES("15832", "8", "2015-08-26 14:03:40", "188.165.15.235", "6");
INSERT INTO `wp_gf_form_view` VALUES("15833", "3", "2015-08-26 15:12:51", "66.249.79.64", "109");
INSERT INTO `wp_gf_form_view` VALUES("15834", "8", "2015-08-26 15:12:51", "66.249.79.64", "36");
INSERT INTO `wp_gf_form_view` VALUES("15835", "1", "2015-08-26 15:50:04", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("15836", "2", "2015-08-26 15:50:16", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("15837", "3", "2015-08-26 16:08:44", "184.66.128.166", "50");
INSERT INTO `wp_gf_form_view` VALUES("15838", "8", "2015-08-26 16:08:44", "184.66.128.166", "17");
INSERT INTO `wp_gf_form_view` VALUES("15839", "1", "2015-08-26 16:23:18", "110.89.13.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("15840", "3", "2015-08-26 17:02:41", "66.249.79.76", "17");
INSERT INTO `wp_gf_form_view` VALUES("15841", "8", "2015-08-26 17:02:41", "66.249.79.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("15842", "3", "2015-08-26 18:08:39", "66.249.79.70", "6");
INSERT INTO `wp_gf_form_view` VALUES("15843", "8", "2015-08-26 18:08:39", "66.249.79.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("15844", "3", "2015-08-26 19:03:43", "184.66.128.166", "116");
INSERT INTO `wp_gf_form_view` VALUES("15845", "8", "2015-08-26 19:03:44", "184.66.128.166", "15");
INSERT INTO `wp_gf_form_view` VALUES("15846", "3", "2015-08-26 20:25:06", "199.217.117.207", "7");
INSERT INTO `wp_gf_form_view` VALUES("15847", "8", "2015-08-26 20:25:06", "199.217.117.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("15848", "3", "2015-08-26 21:07:17", "66.249.79.70", "43");
INSERT INTO `wp_gf_form_view` VALUES("15849", "8", "2015-08-26 21:07:18", "66.249.79.70", "6");
INSERT INTO `wp_gf_form_view` VALUES("15850", "3", "2015-08-26 22:11:29", "68.180.229.161", "100");
INSERT INTO `wp_gf_form_view` VALUES("15851", "8", "2015-08-26 22:11:29", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("15852", "3", "2015-08-26 23:06:02", "66.249.79.70", "21");
INSERT INTO `wp_gf_form_view` VALUES("15853", "8", "2015-08-26 23:06:02", "66.249.79.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("15854", "3", "2015-08-27 00:00:59", "188.165.15.235", "35");
INSERT INTO `wp_gf_form_view` VALUES("15855", "8", "2015-08-27 00:00:59", "188.165.15.235", "6");
INSERT INTO `wp_gf_form_view` VALUES("15856", "3", "2015-08-27 01:55:25", "91.200.12.128", "24");
INSERT INTO `wp_gf_form_view` VALUES("15857", "8", "2015-08-27 01:55:26", "91.200.12.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("15858", "3", "2015-08-27 02:04:02", "188.165.15.235", "74");
INSERT INTO `wp_gf_form_view` VALUES("15859", "8", "2015-08-27 02:04:02", "188.165.15.235", "10");
INSERT INTO `wp_gf_form_view` VALUES("15860", "3", "2015-08-27 03:03:40", "86.123.242.222", "225");
INSERT INTO `wp_gf_form_view` VALUES("15861", "8", "2015-08-27 03:03:40", "86.123.242.222", "32");
INSERT INTO `wp_gf_form_view` VALUES("15862", "1", "2015-08-27 03:04:46", "86.123.242.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("15863", "2", "2015-08-27 03:04:53", "86.123.242.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("15864", "3", "2015-08-27 04:14:15", "151.80.31.154", "21");
INSERT INTO `wp_gf_form_view` VALUES("15865", "8", "2015-08-27 04:14:17", "151.80.31.154", "3");
INSERT INTO `wp_gf_form_view` VALUES("15866", "3", "2015-08-27 05:12:39", "91.200.12.128", "44");
INSERT INTO `wp_gf_form_view` VALUES("15867", "8", "2015-08-27 05:12:40", "91.200.12.128", "7");
INSERT INTO `wp_gf_form_view` VALUES("15868", "2", "2015-08-27 05:36:00", "151.80.31.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("15869", "3", "2015-08-27 06:06:19", "66.249.79.70", "50");
INSERT INTO `wp_gf_form_view` VALUES("15870", "8", "2015-08-27 06:06:19", "66.249.79.70", "7");
INSERT INTO `wp_gf_form_view` VALUES("15871", "1", "2015-08-27 06:44:25", "188.165.15.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("15872", "3", "2015-08-27 07:00:45", "151.80.31.154", "44");
INSERT INTO `wp_gf_form_view` VALUES("15873", "8", "2015-08-27 07:00:45", "151.80.31.154", "6");
INSERT INTO `wp_gf_form_view` VALUES("15874", "3", "2015-08-27 08:05:30", "66.249.79.70", "56");
INSERT INTO `wp_gf_form_view` VALUES("15875", "8", "2015-08-27 08:05:30", "66.249.79.70", "7");
INSERT INTO `wp_gf_form_view` VALUES("15876", "3", "2015-08-27 09:07:09", "144.76.185.173", "47");
INSERT INTO `wp_gf_form_view` VALUES("15877", "8", "2015-08-27 09:07:09", "144.76.185.173", "7");
INSERT INTO `wp_gf_form_view` VALUES("15878", "3", "2015-08-27 10:09:31", "188.165.15.235", "28");
INSERT INTO `wp_gf_form_view` VALUES("15879", "8", "2015-08-27 10:09:32", "188.165.15.235", "4");
INSERT INTO `wp_gf_form_view` VALUES("15880", "3", "2015-08-27 11:03:43", "207.46.13.145", "36");
INSERT INTO `wp_gf_form_view` VALUES("15881", "8", "2015-08-27 11:03:43", "207.46.13.145", "5");
INSERT INTO `wp_gf_form_view` VALUES("15882", "3", "2015-08-27 12:25:58", "202.46.48.88", "14");
INSERT INTO `wp_gf_form_view` VALUES("15883", "8", "2015-08-27 12:25:59", "202.46.48.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("15884", "3", "2015-08-27 13:23:24", "66.249.79.76", "15");
INSERT INTO `wp_gf_form_view` VALUES("15885", "8", "2015-08-27 13:23:24", "66.249.79.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("15886", "3", "2015-08-27 14:02:56", "66.249.79.64", "77");
INSERT INTO `wp_gf_form_view` VALUES("15887", "8", "2015-08-27 14:02:57", "66.249.79.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("15888", "1", "2015-08-27 14:37:06", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15889", "3", "2015-08-27 15:23:33", "180.180.101.237", "37");
INSERT INTO `wp_gf_form_view` VALUES("15890", "8", "2015-08-27 15:23:33", "180.180.101.237", "5");
INSERT INTO `wp_gf_form_view` VALUES("15891", "3", "2015-08-27 16:03:28", "202.46.55.147", "21");
INSERT INTO `wp_gf_form_view` VALUES("15892", "8", "2015-08-27 16:03:28", "202.46.55.147", "3");
INSERT INTO `wp_gf_form_view` VALUES("15893", "5", "2015-08-27 17:05:24", "188.165.15.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("15894", "3", "2015-08-27 17:05:27", "188.165.15.235", "43");
INSERT INTO `wp_gf_form_view` VALUES("15895", "8", "2015-08-27 17:05:28", "188.165.15.235", "6");
INSERT INTO `wp_gf_form_view` VALUES("15896", "3", "2015-08-27 18:19:33", "100.43.81.144", "25");
INSERT INTO `wp_gf_form_view` VALUES("15897", "8", "2015-08-27 18:19:35", "100.43.81.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("15898", "3", "2015-08-27 19:16:47", "66.249.79.155", "29");
INSERT INTO `wp_gf_form_view` VALUES("15899", "8", "2015-08-27 19:16:48", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("15900", "3", "2015-08-27 20:06:03", "95.234.25.2", "288");
INSERT INTO `wp_gf_form_view` VALUES("15901", "8", "2015-08-27 20:06:03", "95.234.25.2", "41");
INSERT INTO `wp_gf_form_view` VALUES("15902", "1", "2015-08-27 20:07:02", "95.234.25.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("15903", "2", "2015-08-27 20:07:12", "95.234.25.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("15904", "3", "2015-08-27 21:27:39", "148.251.54.44", "14");
INSERT INTO `wp_gf_form_view` VALUES("15905", "8", "2015-08-27 21:27:41", "148.251.54.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("15906", "3", "2015-08-27 22:05:18", "68.180.229.161", "36");
INSERT INTO `wp_gf_form_view` VALUES("15907", "8", "2015-08-27 22:05:19", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("15908", "3", "2015-08-27 23:06:59", "68.180.229.161", "30");
INSERT INTO `wp_gf_form_view` VALUES("15909", "8", "2015-08-27 23:06:59", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("15910", "3", "2015-08-28 00:17:16", "202.46.54.133", "32");
INSERT INTO `wp_gf_form_view` VALUES("15911", "8", "2015-08-28 00:17:16", "202.46.54.133", "4");
INSERT INTO `wp_gf_form_view` VALUES("15912", "3", "2015-08-28 01:07:48", "205.250.214.152", "21");
INSERT INTO `wp_gf_form_view` VALUES("15913", "8", "2015-08-28 01:07:49", "205.250.214.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("15914", "3", "2015-08-28 02:06:30", "202.46.56.134", "14");
INSERT INTO `wp_gf_form_view` VALUES("15915", "8", "2015-08-28 02:06:30", "202.46.56.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("15916", "3", "2015-08-28 03:04:10", "66.249.79.162", "38");
INSERT INTO `wp_gf_form_view` VALUES("15917", "8", "2015-08-28 03:04:10", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("15918", "7", "2015-08-28 03:28:27", "188.165.15.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("15919", "3", "2015-08-28 04:12:28", "157.55.39.158", "44");
INSERT INTO `wp_gf_form_view` VALUES("15920", "8", "2015-08-28 04:12:29", "157.55.39.158", "8");
INSERT INTO `wp_gf_form_view` VALUES("15921", "3", "2015-08-28 05:24:07", "188.165.15.235", "14");
INSERT INTO `wp_gf_form_view` VALUES("15922", "8", "2015-08-28 05:24:08", "188.165.15.235", "2");
INSERT INTO `wp_gf_form_view` VALUES("15923", "3", "2015-08-28 06:04:35", "188.165.15.235", "8");
INSERT INTO `wp_gf_form_view` VALUES("15924", "8", "2015-08-28 06:04:35", "188.165.15.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("15925", "3", "2015-08-28 07:37:21", "66.249.79.155", "53");
INSERT INTO `wp_gf_form_view` VALUES("15926", "8", "2015-08-28 07:37:23", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("15927", "1", "2015-08-28 07:59:00", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15928", "3", "2015-08-28 08:26:34", "66.249.79.169", "21");
INSERT INTO `wp_gf_form_view` VALUES("15929", "8", "2015-08-28 08:26:34", "66.249.79.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("15930", "3", "2015-08-28 09:12:57", "68.180.229.161", "38");
INSERT INTO `wp_gf_form_view` VALUES("15931", "8", "2015-08-28 09:12:57", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("15932", "3", "2015-08-28 10:02:00", "68.180.229.161", "42");
INSERT INTO `wp_gf_form_view` VALUES("15933", "8", "2015-08-28 10:02:00", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("15934", "3", "2015-08-28 12:12:08", "68.180.229.161", "53");
INSERT INTO `wp_gf_form_view` VALUES("15935", "8", "2015-08-28 12:12:09", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("15936", "3", "2015-08-28 13:00:23", "66.249.79.162", "28");
INSERT INTO `wp_gf_form_view` VALUES("15937", "8", "2015-08-28 13:00:23", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("15938", "5", "2015-08-28 14:15:41", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15939", "3", "2015-08-28 14:15:41", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("15940", "8", "2015-08-28 14:15:41", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("15941", "1", "2015-08-28 15:21:36", "108.180.242.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("15942", "3", "2015-08-28 15:21:38", "108.180.242.40", "42");
INSERT INTO `wp_gf_form_view` VALUES("15943", "8", "2015-08-28 15:21:38", "108.180.242.40", "7");
INSERT INTO `wp_gf_form_view` VALUES("15944", "3", "2015-08-28 16:07:22", "180.180.117.134", "59");
INSERT INTO `wp_gf_form_view` VALUES("15945", "8", "2015-08-28 16:07:25", "180.180.117.134", "8");
INSERT INTO `wp_gf_form_view` VALUES("15946", "3", "2015-08-28 18:20:02", "188.165.15.235", "63");
INSERT INTO `wp_gf_form_view` VALUES("15947", "8", "2015-08-28 18:20:04", "188.165.15.235", "9");
INSERT INTO `wp_gf_form_view` VALUES("15948", "3", "2015-08-28 19:42:08", "68.180.229.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("15949", "8", "2015-08-28 19:42:09", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("15950", "3", "2015-08-28 20:08:39", "157.55.39.50", "23");
INSERT INTO `wp_gf_form_view` VALUES("15951", "8", "2015-08-28 20:08:39", "157.55.39.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("15952", "3", "2015-08-28 21:09:17", "91.200.12.38", "31");
INSERT INTO `wp_gf_form_view` VALUES("15953", "8", "2015-08-28 21:09:18", "91.200.12.38", "5");
INSERT INTO `wp_gf_form_view` VALUES("15954", "3", "2015-08-28 22:03:58", "96.50.93.68", "28");
INSERT INTO `wp_gf_form_view` VALUES("15955", "8", "2015-08-28 22:03:58", "96.50.93.68", "4");
INSERT INTO `wp_gf_form_view` VALUES("15956", "3", "2015-08-28 23:05:34", "202.46.54.91", "68");
INSERT INTO `wp_gf_form_view` VALUES("15957", "8", "2015-08-28 23:05:34", "202.46.54.91", "9");
INSERT INTO `wp_gf_form_view` VALUES("15958", "1", "2015-08-28 23:09:02", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("15959", "3", "2015-08-29 00:00:20", "66.249.79.162", "45");
INSERT INTO `wp_gf_form_view` VALUES("15960", "8", "2015-08-29 00:00:20", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("15961", "3", "2015-08-29 01:13:25", "66.249.79.162", "29");
INSERT INTO `wp_gf_form_view` VALUES("15962", "8", "2015-08-29 01:13:25", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("15963", "3", "2015-08-29 02:15:36", "202.46.56.19", "28");
INSERT INTO `wp_gf_form_view` VALUES("15964", "8", "2015-08-29 02:15:37", "202.46.56.19", "4");
INSERT INTO `wp_gf_form_view` VALUES("15965", "3", "2015-08-29 03:11:33", "68.180.229.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("15966", "8", "2015-08-29 03:11:34", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("15967", "3", "2015-08-29 04:18:25", "151.80.31.153", "7");
INSERT INTO `wp_gf_form_view` VALUES("15968", "8", "2015-08-29 04:18:26", "151.80.31.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("15969", "3", "2015-08-29 05:10:00", "151.80.31.153", "7");
INSERT INTO `wp_gf_form_view` VALUES("15970", "8", "2015-08-29 05:10:00", "151.80.31.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("15971", "3", "2015-08-29 06:32:07", "157.55.39.88", "7");
INSERT INTO `wp_gf_form_view` VALUES("15972", "8", "2015-08-29 06:32:08", "157.55.39.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("15973", "3", "2015-08-29 07:41:46", "207.46.13.73", "7");
INSERT INTO `wp_gf_form_view` VALUES("15974", "8", "2015-08-29 07:41:48", "207.46.13.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("15975", "3", "2015-08-29 08:04:39", "188.165.15.235", "15");
INSERT INTO `wp_gf_form_view` VALUES("15976", "8", "2015-08-29 08:04:39", "188.165.15.235", "2");
INSERT INTO `wp_gf_form_view` VALUES("15977", "3", "2015-08-29 09:08:51", "188.165.15.235", "51");
INSERT INTO `wp_gf_form_view` VALUES("15978", "8", "2015-08-29 09:08:52", "188.165.15.235", "10");
INSERT INTO `wp_gf_form_view` VALUES("15979", "3", "2015-08-29 10:09:24", "157.55.39.88", "59");
INSERT INTO `wp_gf_form_view` VALUES("15980", "8", "2015-08-29 10:09:24", "157.55.39.88", "10");
INSERT INTO `wp_gf_form_view` VALUES("15981", "2", "2015-08-29 10:49:25", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("15982", "3", "2015-08-29 11:00:22", "68.180.229.161", "58");
INSERT INTO `wp_gf_form_view` VALUES("15983", "8", "2015-08-29 11:00:22", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("15984", "3", "2015-08-29 12:09:31", "199.21.99.202", "36");
INSERT INTO `wp_gf_form_view` VALUES("15985", "8", "2015-08-29 12:09:32", "199.21.99.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("15986", "6", "2015-08-29 13:04:01", "188.40.112.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("15987", "3", "2015-08-29 13:04:01", "188.40.112.210", "14");
INSERT INTO `wp_gf_form_view` VALUES("15988", "8", "2015-08-29 13:04:01", "188.40.112.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("15989", "3", "2015-08-29 14:17:46", "207.46.13.6", "18");
INSERT INTO `wp_gf_form_view` VALUES("15990", "8", "2015-08-29 14:17:46", "207.46.13.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("15991", "3", "2015-08-29 15:01:58", "91.200.12.38", "37");
INSERT INTO `wp_gf_form_view` VALUES("15992", "8", "2015-08-29 15:01:58", "91.200.12.38", "6");
INSERT INTO `wp_gf_form_view` VALUES("15993", "1", "2015-08-29 16:04:50", "107.189.36.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("15994", "3", "2015-08-29 16:04:51", "107.189.36.6", "126");
INSERT INTO `wp_gf_form_view` VALUES("15995", "8", "2015-08-29 16:04:51", "107.189.36.6", "17");
INSERT INTO `wp_gf_form_view` VALUES("15996", "3", "2015-08-29 17:10:10", "202.46.58.196", "7");
INSERT INTO `wp_gf_form_view` VALUES("15997", "8", "2015-08-29 17:10:10", "202.46.58.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("15998", "3", "2015-08-29 18:02:03", "180.180.98.15", "43");
INSERT INTO `wp_gf_form_view` VALUES("15999", "8", "2015-08-29 18:02:04", "180.180.98.15", "6");
INSERT INTO `wp_gf_form_view` VALUES("16000", "1", "2015-08-29 18:22:31", "154.20.68.46", "3");
INSERT INTO `wp_gf_form_view` VALUES("16001", "3", "2015-08-29 19:21:31", "66.249.79.155", "14");
INSERT INTO `wp_gf_form_view` VALUES("16002", "8", "2015-08-29 19:21:32", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16003", "3", "2015-08-29 20:18:24", "91.200.12.38", "44");
INSERT INTO `wp_gf_form_view` VALUES("16004", "8", "2015-08-29 20:18:24", "91.200.12.38", "7");
INSERT INTO `wp_gf_form_view` VALUES("16005", "3", "2015-08-29 21:12:01", "91.200.12.128", "31");
INSERT INTO `wp_gf_form_view` VALUES("16006", "8", "2015-08-29 21:12:02", "91.200.12.128", "5");
INSERT INTO `wp_gf_form_view` VALUES("16007", "3", "2015-08-29 22:25:03", "199.217.117.207", "164");
INSERT INTO `wp_gf_form_view` VALUES("16008", "8", "2015-08-29 22:25:04", "199.217.117.207", "24");
INSERT INTO `wp_gf_form_view` VALUES("16009", "1", "2015-08-29 22:31:27", "104.131.190.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("16010", "2", "2015-08-29 22:31:28", "104.131.190.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("16011", "3", "2015-08-29 23:24:38", "66.249.79.162", "14");
INSERT INTO `wp_gf_form_view` VALUES("16012", "8", "2015-08-29 23:24:38", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16013", "3", "2015-08-30 00:04:52", "180.180.75.116", "126");
INSERT INTO `wp_gf_form_view` VALUES("16014", "8", "2015-08-30 00:04:53", "180.180.75.116", "17");
INSERT INTO `wp_gf_form_view` VALUES("16015", "2", "2015-08-30 00:12:34", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("16016", "3", "2015-08-30 01:42:46", "202.46.51.174", "23");
INSERT INTO `wp_gf_form_view` VALUES("16017", "8", "2015-08-30 01:42:47", "202.46.51.174", "4");
INSERT INTO `wp_gf_form_view` VALUES("16018", "3", "2015-08-30 02:38:22", "199.21.99.202", "28");
INSERT INTO `wp_gf_form_view` VALUES("16019", "8", "2015-08-30 02:38:22", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("16020", "3", "2015-08-30 03:08:45", "91.200.12.38", "53");
INSERT INTO `wp_gf_form_view` VALUES("16021", "8", "2015-08-30 03:08:46", "91.200.12.38", "8");
INSERT INTO `wp_gf_form_view` VALUES("16022", "3", "2015-08-30 04:14:49", "202.46.58.18", "453");
INSERT INTO `wp_gf_form_view` VALUES("16023", "8", "2015-08-30 04:14:50", "202.46.58.18", "66");
INSERT INTO `wp_gf_form_view` VALUES("16024", "2", "2015-08-30 04:44:49", "54.158.130.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16025", "1", "2015-08-30 04:44:51", "54.158.130.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16026", "3", "2015-08-30 05:04:13", "202.46.48.81", "29");
INSERT INTO `wp_gf_form_view` VALUES("16027", "8", "2015-08-30 05:04:14", "202.46.48.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("16028", "1", "2015-08-30 05:45:30", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("16029", "3", "2015-08-30 06:25:00", "24.108.136.28", "35");
INSERT INTO `wp_gf_form_view` VALUES("16030", "8", "2015-08-30 06:25:01", "24.108.136.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("16031", "3", "2015-08-30 07:21:18", "91.200.12.127", "21");
INSERT INTO `wp_gf_form_view` VALUES("16032", "8", "2015-08-30 07:21:19", "91.200.12.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("16033", "3", "2015-08-30 08:26:21", "207.46.13.0", "37");
INSERT INTO `wp_gf_form_view` VALUES("16034", "8", "2015-08-30 08:26:22", "207.46.13.0", "6");
INSERT INTO `wp_gf_form_view` VALUES("16035", "3", "2015-08-30 09:27:19", "68.180.229.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("16036", "8", "2015-08-30 09:27:19", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16037", "1", "2015-08-30 09:53:45", "107.182.116.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("16038", "3", "2015-08-30 11:36:47", "54.159.168.239", "447");
INSERT INTO `wp_gf_form_view` VALUES("16039", "8", "2015-08-30 11:36:48", "54.159.168.239", "65");
INSERT INTO `wp_gf_form_view` VALUES("16040", "2", "2015-08-30 11:37:01", "54.159.168.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("16041", "1", "2015-08-30 11:37:02", "54.159.168.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("16042", "3", "2015-08-30 12:04:44", "202.46.51.106", "14");
INSERT INTO `wp_gf_form_view` VALUES("16043", "8", "2015-08-30 12:04:44", "202.46.51.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("16044", "1", "2015-08-30 13:09:53", "108.180.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("16045", "3", "2015-08-30 13:09:55", "108.180.242.40", "30");
INSERT INTO `wp_gf_form_view` VALUES("16046", "8", "2015-08-30 13:09:55", "108.180.242.40", "5");
INSERT INTO `wp_gf_form_view` VALUES("16047", "3", "2015-08-30 14:07:34", "100.43.81.131", "9");
INSERT INTO `wp_gf_form_view` VALUES("16048", "8", "2015-08-30 14:07:35", "100.43.81.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("16049", "3", "2015-08-30 15:25:12", "24.108.136.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("16050", "8", "2015-08-30 15:25:12", "24.108.136.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("16051", "3", "2015-08-30 16:16:56", "202.46.57.74", "21");
INSERT INTO `wp_gf_form_view` VALUES("16052", "8", "2015-08-30 16:16:56", "202.46.57.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("16053", "3", "2015-08-30 17:06:26", "68.180.229.161", "141");
INSERT INTO `wp_gf_form_view` VALUES("16054", "8", "2015-08-30 17:06:26", "68.180.229.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("16055", "3", "2015-08-30 18:13:46", "45.55.229.101", "161");
INSERT INTO `wp_gf_form_view` VALUES("16056", "3", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("16057", "3", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("16058", "3", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("16059", "2", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("16060", "1", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("16061", "8", "2015-08-30 18:13:46", "45.55.229.101", "24");
INSERT INTO `wp_gf_form_view` VALUES("16062", "3", "2015-08-30 19:37:12", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("16063", "8", "2015-08-30 19:37:13", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16064", "1", "2015-08-30 20:05:14", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("16065", "3", "2015-08-30 20:05:14", "107.150.42.226", "53");
INSERT INTO `wp_gf_form_view` VALUES("16066", "8", "2015-08-30 20:05:15", "107.150.42.226", "8");
INSERT INTO `wp_gf_form_view` VALUES("16067", "3", "2015-08-30 21:22:36", "207.46.13.57", "28");
INSERT INTO `wp_gf_form_view` VALUES("16068", "8", "2015-08-30 21:22:37", "207.46.13.57", "4");
INSERT INTO `wp_gf_form_view` VALUES("16069", "3", "2015-08-30 22:01:40", "216.232.145.51", "84");
INSERT INTO `wp_gf_form_view` VALUES("16070", "8", "2015-08-30 22:01:41", "216.232.145.51", "12");
INSERT INTO `wp_gf_form_view` VALUES("16071", "3", "2015-08-30 23:01:08", "66.249.79.162", "44");
INSERT INTO `wp_gf_form_view` VALUES("16072", "8", "2015-08-30 23:01:08", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("16073", "1", "2015-08-31 00:26:21", "110.89.13.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("16074", "3", "2015-08-31 00:26:22", "110.89.13.81", "86");
INSERT INTO `wp_gf_form_view` VALUES("16075", "8", "2015-08-31 00:26:22", "110.89.13.81", "13");
INSERT INTO `wp_gf_form_view` VALUES("16076", "3", "2015-08-31 01:00:15", "24.68.48.224", "63");
INSERT INTO `wp_gf_form_view` VALUES("16077", "8", "2015-08-31 01:00:15", "24.68.48.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("16078", "3", "2015-08-31 03:20:28", "202.46.57.89", "7");
INSERT INTO `wp_gf_form_view` VALUES("16079", "8", "2015-08-31 03:20:29", "202.46.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("16080", "3", "2015-08-31 04:16:51", "202.46.49.117", "14");
INSERT INTO `wp_gf_form_view` VALUES("16081", "8", "2015-08-31 04:16:51", "202.46.49.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("16082", "3", "2015-08-31 05:00:35", "88.249.204.217", "226");
INSERT INTO `wp_gf_form_view` VALUES("16083", "8", "2015-08-31 05:00:35", "88.249.204.217", "32");
INSERT INTO `wp_gf_form_view` VALUES("16084", "1", "2015-08-31 05:01:34", "88.249.204.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("16085", "2", "2015-08-31 05:01:47", "88.249.204.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("16086", "3", "2015-08-31 06:41:44", "24.114.36.116", "37");
INSERT INTO `wp_gf_form_view` VALUES("16087", "8", "2015-08-31 06:41:49", "24.114.36.116", "6");
INSERT INTO `wp_gf_form_view` VALUES("16088", "3", "2015-08-31 07:08:39", "202.46.48.89", "7");
INSERT INTO `wp_gf_form_view` VALUES("16089", "8", "2015-08-31 07:08:41", "202.46.48.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("16090", "6", "2015-08-31 08:30:49", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16091", "3", "2015-08-31 08:30:51", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("16092", "8", "2015-08-31 08:30:51", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16093", "3", "2015-08-31 09:45:34", "157.55.39.116", "14");
INSERT INTO `wp_gf_form_view` VALUES("16094", "8", "2015-08-31 09:45:36", "157.55.39.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("16095", "3", "2015-08-31 10:11:52", "66.249.79.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("16096", "8", "2015-08-31 10:11:53", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("16097", "3", "2015-08-31 11:02:55", "202.46.48.199", "21");
INSERT INTO `wp_gf_form_view` VALUES("16098", "8", "2015-08-31 11:02:55", "202.46.48.199", "3");
INSERT INTO `wp_gf_form_view` VALUES("16099", "3", "2015-08-31 12:00:22", "66.43.51.8", "35");
INSERT INTO `wp_gf_form_view` VALUES("16100", "8", "2015-08-31 12:00:22", "66.43.51.8", "5");
INSERT INTO `wp_gf_form_view` VALUES("16101", "3", "2015-08-31 13:02:21", "157.55.39.214", "28");
INSERT INTO `wp_gf_form_view` VALUES("16102", "8", "2015-08-31 13:02:21", "157.55.39.214", "4");
INSERT INTO `wp_gf_form_view` VALUES("16103", "3", "2015-08-31 14:47:04", "207.46.13.85", "7");
INSERT INTO `wp_gf_form_view` VALUES("16104", "8", "2015-08-31 14:47:05", "207.46.13.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("16105", "3", "2015-08-31 15:46:13", "91.200.12.128", "16");
INSERT INTO `wp_gf_form_view` VALUES("16106", "8", "2015-08-31 15:46:14", "91.200.12.128", "3");
INSERT INTO `wp_gf_form_view` VALUES("16107", "3", "2015-08-31 16:30:32", "207.194.133.9", "70");
INSERT INTO `wp_gf_form_view` VALUES("16108", "8", "2015-08-31 16:30:33", "207.194.133.9", "9");
INSERT INTO `wp_gf_form_view` VALUES("16109", "3", "2015-08-31 17:31:31", "142.104.240.37", "233");
INSERT INTO `wp_gf_form_view` VALUES("16110", "8", "2015-08-31 17:31:32", "142.104.240.37", "33");
INSERT INTO `wp_gf_form_view` VALUES("16111", "1", "2015-08-31 17:37:08", "93.0.218.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("16112", "2", "2015-08-31 17:37:21", "93.0.218.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("16113", "3", "2015-08-31 19:32:07", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("16114", "8", "2015-08-31 19:32:11", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16115", "3", "2015-08-31 20:18:47", "24.108.146.93", "239");
INSERT INTO `wp_gf_form_view` VALUES("16116", "8", "2015-08-31 20:18:48", "24.108.146.93", "34");
INSERT INTO `wp_gf_form_view` VALUES("16117", "1", "2015-08-31 20:21:20", "199.255.138.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("16118", "2", "2015-08-31 20:21:26", "199.255.138.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("16119", "3", "2015-08-31 22:17:47", "184.66.10.63", "28");
INSERT INTO `wp_gf_form_view` VALUES("16120", "8", "2015-08-31 22:17:48", "184.66.10.63", "4");
INSERT INTO `wp_gf_form_view` VALUES("16121", "3", "2015-08-31 23:15:30", "70.66.7.27", "28");
INSERT INTO `wp_gf_form_view` VALUES("16122", "8", "2015-08-31 23:15:30", "70.66.7.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("16123", "3", "2015-09-01 00:06:33", "202.46.49.78", "21");
INSERT INTO `wp_gf_form_view` VALUES("16124", "8", "2015-09-01 00:06:33", "202.46.49.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("16125", "1", "2015-09-01 00:53:41", "110.89.23.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("16126", "3", "2015-09-01 01:51:40", "24.68.137.187", "7");
INSERT INTO `wp_gf_form_view` VALUES("16127", "8", "2015-09-01 01:51:41", "24.68.137.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("16128", "3", "2015-09-01 02:19:14", "66.249.79.155", "84");
INSERT INTO `wp_gf_form_view` VALUES("16129", "8", "2015-09-01 02:19:15", "66.249.79.155", "11");
INSERT INTO `wp_gf_form_view` VALUES("16130", "3", "2015-09-01 03:00:01", "66.249.79.155", "64");
INSERT INTO `wp_gf_form_view` VALUES("16131", "8", "2015-09-01 03:00:02", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("16132", "3", "2015-09-01 04:02:18", "96.44.187.172", "35");
INSERT INTO `wp_gf_form_view` VALUES("16133", "8", "2015-09-01 04:02:18", "96.44.187.172", "5");
INSERT INTO `wp_gf_form_view` VALUES("16134", "3", "2015-09-01 07:52:12", "86.106.18.11", "16");
INSERT INTO `wp_gf_form_view` VALUES("16135", "8", "2015-09-01 07:52:13", "86.106.18.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("16136", "3", "2015-09-01 08:09:18", "157.55.39.181", "69");
INSERT INTO `wp_gf_form_view` VALUES("16137", "8", "2015-09-01 08:09:18", "157.55.39.181", "10");
INSERT INTO `wp_gf_form_view` VALUES("16138", "6", "2015-09-01 09:49:53", "5.9.145.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("16139", "3", "2015-09-01 09:49:53", "5.9.145.132", "14");
INSERT INTO `wp_gf_form_view` VALUES("16140", "8", "2015-09-01 09:49:54", "5.9.145.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("16141", "3", "2015-09-01 11:59:17", "111.90.148.166", "84");
INSERT INTO `wp_gf_form_view` VALUES("16142", "8", "2015-09-01 11:59:18", "111.90.148.166", "12");
INSERT INTO `wp_gf_form_view` VALUES("16143", "3", "2015-09-01 12:00:00", "111.90.148.166", "169");
INSERT INTO `wp_gf_form_view` VALUES("16144", "8", "2015-09-01 12:00:00", "111.90.148.166", "24");
INSERT INTO `wp_gf_form_view` VALUES("16145", "1", "2015-09-01 12:00:11", "111.90.148.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("16146", "2", "2015-09-01 12:00:18", "111.90.148.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("16147", "8", "2015-09-01 13:13:37", "157.55.39.211", "7");
INSERT INTO `wp_gf_form_view` VALUES("16148", "3", "2015-09-01 13:13:38", "157.55.39.211", "42");
INSERT INTO `wp_gf_form_view` VALUES("16149", "3", "2015-09-01 14:16:53", "220.181.108.111", "31");
INSERT INTO `wp_gf_form_view` VALUES("16150", "8", "2015-09-01 14:16:54", "220.181.108.111", "4");
INSERT INTO `wp_gf_form_view` VALUES("16151", "3", "2015-09-01 15:45:45", "91.200.12.128", "8");
INSERT INTO `wp_gf_form_view` VALUES("16152", "8", "2015-09-01 15:45:55", "91.200.12.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("16153", "3", "2015-09-01 16:22:59", "69.84.207.246", "124");
INSERT INTO `wp_gf_form_view` VALUES("16154", "8", "2015-09-01 16:22:59", "69.84.207.246", "17");
INSERT INTO `wp_gf_form_view` VALUES("16155", "3", "2015-09-01 17:10:05", "66.249.79.162", "263");
INSERT INTO `wp_gf_form_view` VALUES("16156", "8", "2015-09-01 17:10:05", "66.249.79.162", "37");
INSERT INTO `wp_gf_form_view` VALUES("16157", "1", "2015-09-01 17:30:57", "86.123.247.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("16158", "2", "2015-09-01 17:31:04", "86.123.247.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("16159", "3", "2015-09-01 18:26:09", "74.121.32.162", "28");
INSERT INTO `wp_gf_form_view` VALUES("16160", "8", "2015-09-01 18:26:10", "74.121.32.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("16161", "3", "2015-09-01 19:31:36", "91.200.12.128", "39");
INSERT INTO `wp_gf_form_view` VALUES("16162", "8", "2015-09-01 19:31:40", "91.200.12.128", "7");
INSERT INTO `wp_gf_form_view` VALUES("16163", "3", "2015-09-01 20:08:33", "68.180.229.161", "28");
INSERT INTO `wp_gf_form_view` VALUES("16164", "8", "2015-09-01 20:08:33", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("16165", "3", "2015-09-01 21:36:59", "77.75.76.160", "7");
INSERT INTO `wp_gf_form_view` VALUES("16166", "8", "2015-09-01 21:37:00", "77.75.76.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("16167", "1", "2015-09-01 22:01:21", "52.1.142.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("16168", "3", "2015-09-01 22:01:23", "52.1.142.38", "29");
INSERT INTO `wp_gf_form_view` VALUES("16169", "8", "2015-09-01 22:01:23", "52.1.142.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("16170", "3", "2015-09-01 23:11:17", "199.21.99.202", "23");
INSERT INTO `wp_gf_form_view` VALUES("16171", "8", "2015-09-01 23:11:17", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("16172", "1", "2015-09-02 00:19:59", "27.19.180.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("16173", "3", "2015-09-02 00:19:59", "27.19.180.56", "35");
INSERT INTO `wp_gf_form_view` VALUES("16174", "8", "2015-09-02 00:20:00", "27.19.180.56", "5");
INSERT INTO `wp_gf_form_view` VALUES("16175", "3", "2015-09-02 01:27:46", "66.249.79.155", "30");
INSERT INTO `wp_gf_form_view` VALUES("16176", "8", "2015-09-02 01:27:47", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16177", "3", "2015-09-02 02:13:53", "24.68.145.68", "28");
INSERT INTO `wp_gf_form_view` VALUES("16178", "8", "2015-09-02 02:13:53", "24.68.145.68", "4");
INSERT INTO `wp_gf_form_view` VALUES("16179", "3", "2015-09-02 03:52:01", "66.249.79.155", "7");
INSERT INTO `wp_gf_form_view` VALUES("16180", "8", "2015-09-02 03:52:02", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16181", "3", "2015-09-02 04:25:49", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("16182", "8", "2015-09-02 04:25:49", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16183", "3", "2015-09-02 05:34:27", "199.21.99.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("16184", "8", "2015-09-02 05:34:27", "199.21.99.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("16185", "8", "2015-09-02 06:21:36", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16186", "3", "2015-09-02 06:21:37", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("16187", "3", "2015-09-02 07:13:13", "100.43.81.144", "7");
INSERT INTO `wp_gf_form_view` VALUES("16188", "8", "2015-09-02 07:13:13", "100.43.81.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("16189", "3", "2015-09-02 09:39:26", "68.180.229.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("16190", "8", "2015-09-02 09:39:28", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16191", "3", "2015-09-02 10:20:39", "66.249.79.162", "36");
INSERT INTO `wp_gf_form_view` VALUES("16192", "8", "2015-09-02 10:20:40", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("16193", "3", "2015-09-02 11:54:42", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("16194", "8", "2015-09-02 11:54:44", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16195", "3", "2015-09-02 13:13:59", "217.69.133.69", "15");
INSERT INTO `wp_gf_form_view` VALUES("16196", "8", "2015-09-02 13:14:01", "217.69.133.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("16197", "6", "2015-09-02 13:14:02", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("16198", "3", "2015-09-02 14:46:01", "217.69.133.233", "7");
INSERT INTO `wp_gf_form_view` VALUES("16199", "8", "2015-09-02 14:46:01", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("16200", "3", "2015-09-02 15:51:56", "66.249.84.212", "14");
INSERT INTO `wp_gf_form_view` VALUES("16201", "8", "2015-09-02 15:51:58", "66.249.84.212", "2");
INSERT INTO `wp_gf_form_view` VALUES("16202", "3", "2015-09-02 17:01:26", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("16203", "8", "2015-09-02 17:01:27", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16204", "3", "2015-09-02 18:16:43", "115.88.119.132", "14");
INSERT INTO `wp_gf_form_view` VALUES("16205", "8", "2015-09-02 18:16:44", "115.88.119.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("16206", "3", "2015-09-02 19:29:23", "217.69.133.229", "7");
INSERT INTO `wp_gf_form_view` VALUES("16207", "8", "2015-09-02 19:29:25", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("16208", "3", "2015-09-02 20:51:09", "148.251.54.44", "7");
INSERT INTO `wp_gf_form_view` VALUES("16209", "8", "2015-09-02 20:51:10", "148.251.54.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("16210", "3", "2015-09-02 22:00:19", "66.249.79.162", "45");
INSERT INTO `wp_gf_form_view` VALUES("16211", "8", "2015-09-02 22:00:20", "66.249.79.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("16212", "3", "2015-09-02 23:01:38", "66.249.79.155", "33");
INSERT INTO `wp_gf_form_view` VALUES("16213", "8", "2015-09-02 23:01:39", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16214", "3", "2015-09-03 00:05:46", "68.180.229.161", "22");
INSERT INTO `wp_gf_form_view` VALUES("16215", "8", "2015-09-03 00:05:47", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16216", "3", "2015-09-03 01:40:39", "199.21.99.202", "29");
INSERT INTO `wp_gf_form_view` VALUES("16217", "8", "2015-09-03 01:40:40", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("16218", "6", "2015-09-03 01:46:40", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("16219", "3", "2015-09-03 02:00:07", "66.249.79.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("16220", "8", "2015-09-03 02:00:07", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16221", "3", "2015-09-03 03:21:57", "217.69.133.232", "9");
INSERT INTO `wp_gf_form_view` VALUES("16222", "8", "2015-09-03 03:21:59", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("16223", "2", "2015-09-03 04:12:46", "27.19.180.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("16224", "3", "2015-09-03 04:12:46", "27.19.180.56", "72");
INSERT INTO `wp_gf_form_view` VALUES("16225", "8", "2015-09-03 04:12:46", "27.19.180.56", "10");
INSERT INTO `wp_gf_form_view` VALUES("16226", "3", "2015-09-03 05:12:58", "136.243.17.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("16227", "8", "2015-09-03 05:12:58", "136.243.17.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16228", "3", "2015-09-03 06:00:32", "199.21.99.195", "22");
INSERT INTO `wp_gf_form_view` VALUES("16229", "6", "2015-09-03 06:01:47", "144.76.185.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("16230", "8", "2015-09-03 06:01:47", "144.76.185.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("16231", "3", "2015-09-03 07:41:49", "66.249.67.70", "7");
INSERT INTO `wp_gf_form_view` VALUES("16232", "8", "2015-09-03 07:41:50", "66.249.67.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("16233", "3", "2015-09-03 09:13:29", "68.180.229.161", "46");
INSERT INTO `wp_gf_form_view` VALUES("16234", "8", "2015-09-03 09:13:31", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("16235", "3", "2015-09-03 10:27:05", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("16236", "8", "2015-09-03 10:27:07", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16237", "3", "2015-09-03 11:22:25", "217.69.133.229", "7");
INSERT INTO `wp_gf_form_view` VALUES("16238", "8", "2015-09-03 11:22:25", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("16239", "3", "2015-09-03 12:48:23", "54.144.40.165", "70");
INSERT INTO `wp_gf_form_view` VALUES("16240", "8", "2015-09-03 12:48:24", "54.144.40.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("16241", "1", "2015-09-03 12:48:38", "54.144.40.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("16242", "2", "2015-09-03 12:48:51", "54.144.40.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("16243", "3", "2015-09-03 13:10:10", "66.249.79.162", "14");
INSERT INTO `wp_gf_form_view` VALUES("16244", "8", "2015-09-03 13:10:11", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16245", "3", "2015-09-03 14:26:37", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("16246", "8", "2015-09-03 14:26:37", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16247", "3", "2015-09-03 15:58:17", "96.53.58.182", "14");
INSERT INTO `wp_gf_form_view` VALUES("16248", "8", "2015-09-03 15:58:18", "96.53.58.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("16249", "3", "2015-09-03 16:01:45", "96.53.58.182", "50");
INSERT INTO `wp_gf_form_view` VALUES("16250", "8", "2015-09-03 16:01:46", "96.53.58.182", "7");
INSERT INTO `wp_gf_form_view` VALUES("16251", "3", "2015-09-03 17:02:08", "27.19.180.56", "46");
INSERT INTO `wp_gf_form_view` VALUES("16252", "8", "2015-09-03 17:02:09", "27.19.180.56", "7");
INSERT INTO `wp_gf_form_view` VALUES("16253", "3", "2015-09-03 18:11:28", "142.36.94.206", "14");
INSERT INTO `wp_gf_form_view` VALUES("16254", "8", "2015-09-03 18:11:29", "142.36.94.206", "3");
INSERT INTO `wp_gf_form_view` VALUES("16255", "3", "2015-09-03 19:10:40", "38.117.92.58", "28");
INSERT INTO `wp_gf_form_view` VALUES("16256", "8", "2015-09-03 19:10:41", "38.117.92.58", "4");
INSERT INTO `wp_gf_form_view` VALUES("16257", "3", "2015-09-03 20:14:37", "70.67.175.149", "17");
INSERT INTO `wp_gf_form_view` VALUES("16258", "8", "2015-09-03 20:14:38", "70.67.175.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("16259", "3", "2015-09-03 21:42:57", "204.174.57.10", "5");
INSERT INTO `wp_gf_form_view` VALUES("16260", "8", "2015-09-03 21:42:58", "204.174.57.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("16261", "2", "2015-09-03 22:23:46", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16262", "1", "2015-09-03 22:23:46", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16263", "3", "2015-09-03 22:23:47", "46.4.153.242", "262");
INSERT INTO `wp_gf_form_view` VALUES("16264", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16265", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16266", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16267", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16268", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16269", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16270", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16271", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16272", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16273", "8", "2015-09-03 22:23:47", "46.4.153.242", "54");
INSERT INTO `wp_gf_form_view` VALUES("16274", "3", "2015-09-03 23:44:38", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("16275", "8", "2015-09-03 23:44:39", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16276", "3", "2015-09-04 00:15:19", "207.46.13.85", "28");
INSERT INTO `wp_gf_form_view` VALUES("16277", "8", "2015-09-04 00:15:19", "207.46.13.85", "3");
INSERT INTO `wp_gf_form_view` VALUES("16278", "3", "2015-09-04 01:32:19", "217.69.133.228", "29");
INSERT INTO `wp_gf_form_view` VALUES("16279", "8", "2015-09-04 01:32:20", "217.69.133.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("16280", "3", "2015-09-04 03:39:24", "207.46.13.133", "9");
INSERT INTO `wp_gf_form_view` VALUES("16281", "8", "2015-09-04 03:39:25", "207.46.13.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("16282", "7", "2015-09-04 04:42:00", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("16283", "3", "2015-09-04 04:42:01", "217.69.133.227", "18");
INSERT INTO `wp_gf_form_view` VALUES("16284", "8", "2015-09-04 04:42:02", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("16285", "3", "2015-09-04 06:00:57", "157.55.39.242", "19");
INSERT INTO `wp_gf_form_view` VALUES("16286", "8", "2015-09-04 06:00:58", "157.55.39.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("16287", "3", "2015-09-04 07:37:55", "125.248.165.21", "64");
INSERT INTO `wp_gf_form_view` VALUES("16288", "8", "2015-09-04 07:37:56", "125.248.165.21", "7");
INSERT INTO `wp_gf_form_view` VALUES("16289", "3", "2015-09-04 08:40:41", "157.55.39.242", "9");
INSERT INTO `wp_gf_form_view` VALUES("16290", "8", "2015-09-04 08:40:42", "157.55.39.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16291", "3", "2015-09-04 09:02:27", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16292", "3", "2015-09-04 10:00:24", "66.249.79.155", "108");
INSERT INTO `wp_gf_form_view` VALUES("16293", "8", "2015-09-04 10:00:25", "66.249.79.155", "11");
INSERT INTO `wp_gf_form_view` VALUES("16294", "3", "2015-09-04 11:30:21", "68.180.229.161", "109");
INSERT INTO `wp_gf_form_view` VALUES("16295", "8", "2015-09-04 11:30:22", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("16296", "3", "2015-09-04 12:54:38", "91.200.12.128", "20");
INSERT INTO `wp_gf_form_view` VALUES("16297", "8", "2015-09-04 12:54:39", "91.200.12.128", "3");
INSERT INTO `wp_gf_form_view` VALUES("16298", "3", "2015-09-04 13:01:17", "157.55.39.242", "18");
INSERT INTO `wp_gf_form_view` VALUES("16299", "8", "2015-09-04 13:01:17", "157.55.39.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("16300", "3", "2015-09-04 14:08:16", "217.69.133.227", "19");
INSERT INTO `wp_gf_form_view` VALUES("16301", "8", "2015-09-04 14:08:16", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("16302", "3", "2015-09-04 15:19:01", "211.233.89.214", "38");
INSERT INTO `wp_gf_form_view` VALUES("16303", "8", "2015-09-04 15:19:02", "211.233.89.214", "4");
INSERT INTO `wp_gf_form_view` VALUES("16304", "3", "2015-09-04 16:24:26", "188.165.15.90", "121");
INSERT INTO `wp_gf_form_view` VALUES("16305", "8", "2015-09-04 16:24:36", "188.165.15.90", "13");
INSERT INTO `wp_gf_form_view` VALUES("16306", "3", "2015-09-04 17:10:14", "157.55.39.242", "9");
INSERT INTO `wp_gf_form_view` VALUES("16307", "8", "2015-09-04 17:10:15", "157.55.39.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("16308", "3", "2015-09-04 18:00:58", "184.71.12.214", "189");
INSERT INTO `wp_gf_form_view` VALUES("16309", "8", "2015-09-04 18:00:59", "184.71.12.214", "21");
INSERT INTO `wp_gf_form_view` VALUES("16310", "1", "2015-09-04 18:10:29", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("16311", "3", "2015-09-04 19:02:04", "66.249.79.155", "19");
INSERT INTO `wp_gf_form_view` VALUES("16312", "8", "2015-09-04 19:02:05", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16313", "3", "2015-09-04 20:12:49", "66.249.79.169", "88");
INSERT INTO `wp_gf_form_view` VALUES("16314", "8", "2015-09-04 20:12:52", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("16315", "3", "2015-09-04 21:14:56", "66.249.79.169", "139");
INSERT INTO `wp_gf_form_view` VALUES("16316", "8", "2015-09-04 21:14:58", "66.249.79.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("16317", "3", "2015-09-04 22:02:36", "184.65.36.68", "148");
INSERT INTO `wp_gf_form_view` VALUES("16318", "8", "2015-09-04 22:02:37", "184.65.36.68", "15");
INSERT INTO `wp_gf_form_view` VALUES("16319", "3", "2015-09-04 23:39:55", "188.165.15.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("16320", "8", "2015-09-04 23:39:56", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16321", "3", "2015-09-05 00:39:36", "188.165.15.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("16322", "8", "2015-09-05 00:39:37", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16323", "3", "2015-09-05 01:21:31", "220.181.108.86", "18");
INSERT INTO `wp_gf_form_view` VALUES("16324", "8", "2015-09-05 01:21:32", "220.181.108.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("16325", "3", "2015-09-05 02:03:20", "180.180.113.46", "73");
INSERT INTO `wp_gf_form_view` VALUES("16326", "8", "2015-09-05 02:03:20", "180.180.113.46", "8");
INSERT INTO `wp_gf_form_view` VALUES("16327", "3", "2015-09-05 03:41:55", "66.249.79.155", "47");
INSERT INTO `wp_gf_form_view` VALUES("16328", "8", "2015-09-05 03:41:56", "66.249.79.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("16329", "3", "2015-09-05 04:03:56", "66.249.79.155", "18");
INSERT INTO `wp_gf_form_view` VALUES("16330", "8", "2015-09-05 04:03:56", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16331", "1", "2015-09-05 04:30:14", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16332", "3", "2015-09-05 05:32:41", "66.249.79.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("16333", "8", "2015-09-05 05:32:42", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16334", "3", "2015-09-05 06:21:30", "108.180.30.193", "66");
INSERT INTO `wp_gf_form_view` VALUES("16335", "8", "2015-09-05 06:21:31", "108.180.30.193", "8");
INSERT INTO `wp_gf_form_view` VALUES("16336", "3", "2015-09-05 09:13:46", "66.249.79.155", "18");
INSERT INTO `wp_gf_form_view` VALUES("16337", "8", "2015-09-05 09:13:48", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16338", "3", "2015-09-05 10:06:08", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("16339", "8", "2015-09-05 10:14:18", "5.254.98.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("16340", "3", "2015-09-05 11:00:30", "68.180.229.161", "27");
INSERT INTO `wp_gf_form_view` VALUES("16341", "8", "2015-09-05 11:00:30", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16342", "3", "2015-09-05 12:41:18", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("16343", "8", "2015-09-05 12:41:19", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16344", "3", "2015-09-05 13:53:22", "188.165.15.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("16345", "8", "2015-09-05 13:53:22", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16346", "3", "2015-09-05 15:10:36", "188.165.15.90", "28");
INSERT INTO `wp_gf_form_view` VALUES("16347", "8", "2015-09-05 15:10:37", "188.165.15.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("16348", "3", "2015-09-05 16:42:17", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("16349", "8", "2015-09-05 16:42:17", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16350", "3", "2015-09-05 17:13:40", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("16351", "8", "2015-09-05 17:13:41", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16352", "3", "2015-09-05 18:34:42", "68.180.229.161", "19");
INSERT INTO `wp_gf_form_view` VALUES("16353", "8", "2015-09-05 18:34:43", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16354", "3", "2015-09-05 19:07:04", "157.55.39.242", "55");
INSERT INTO `wp_gf_form_view` VALUES("16355", "8", "2015-09-05 19:07:04", "157.55.39.242", "6");
INSERT INTO `wp_gf_form_view` VALUES("16356", "1", "2015-09-05 19:55:55", "88.150.210.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("16357", "3", "2015-09-05 20:15:23", "66.249.79.155", "28");
INSERT INTO `wp_gf_form_view` VALUES("16358", "8", "2015-09-05 20:15:24", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("16359", "3", "2015-09-05 22:09:35", "66.249.79.169", "18");
INSERT INTO `wp_gf_form_view` VALUES("16360", "8", "2015-09-05 22:09:36", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("16361", "3", "2015-09-05 23:01:52", "207.216.104.209", "63");
INSERT INTO `wp_gf_form_view` VALUES("16362", "8", "2015-09-05 23:01:52", "207.216.104.209", "7");
INSERT INTO `wp_gf_form_view` VALUES("16363", "3", "2015-09-06 00:01:20", "24.68.240.52", "45");
INSERT INTO `wp_gf_form_view` VALUES("16364", "8", "2015-09-06 00:01:20", "24.68.240.52", "5");
INSERT INTO `wp_gf_form_view` VALUES("16365", "2", "2015-09-06 01:04:58", "104.131.84.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16366", "1", "2015-09-06 01:04:58", "104.131.84.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16367", "3", "2015-09-06 01:04:58", "104.131.84.162", "203");
INSERT INTO `wp_gf_form_view` VALUES("16368", "8", "2015-09-06 01:05:00", "104.131.84.162", "23");
INSERT INTO `wp_gf_form_view` VALUES("16369", "3", "2015-09-06 03:46:26", "68.180.229.161", "18");
INSERT INTO `wp_gf_form_view` VALUES("16370", "8", "2015-09-06 03:46:27", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16371", "3", "2015-09-06 04:05:32", "66.249.79.169", "28");
INSERT INTO `wp_gf_form_view` VALUES("16372", "8", "2015-09-06 04:05:32", "66.249.79.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("16373", "3", "2015-09-06 05:35:04", "46.246.44.150", "72");
INSERT INTO `wp_gf_form_view` VALUES("16374", "8", "2015-09-06 05:35:04", "46.246.44.150", "8");
INSERT INTO `wp_gf_form_view` VALUES("16375", "3", "2015-09-06 06:00:44", "66.249.79.155", "12");
INSERT INTO `wp_gf_form_view` VALUES("16376", "8", "2015-09-06 06:29:49", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16377", "3", "2015-09-06 07:16:27", "207.46.13.133", "9");
INSERT INTO `wp_gf_form_view` VALUES("16378", "8", "2015-09-06 07:16:27", "207.46.13.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("16379", "3", "2015-09-06 08:00:47", "188.165.15.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("16380", "8", "2015-09-06 08:00:49", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16381", "3", "2015-09-06 09:00:55", "188.165.15.90", "45");
INSERT INTO `wp_gf_form_view` VALUES("16382", "8", "2015-09-06 09:00:55", "188.165.15.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("16383", "6", "2015-09-06 09:56:39", "5.9.17.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("16384", "3", "2015-09-06 10:19:17", "66.249.79.155", "47");
INSERT INTO `wp_gf_form_view` VALUES("16385", "8", "2015-09-06 10:19:17", "66.249.79.155", "6");
INSERT INTO `wp_gf_form_view` VALUES("16386", "3", "2015-09-06 11:08:34", "207.46.13.133", "18");
INSERT INTO `wp_gf_form_view` VALUES("16387", "8", "2015-09-06 11:08:35", "207.46.13.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("16388", "6", "2015-09-06 12:54:13", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16389", "3", "2015-09-06 12:54:15", "188.165.15.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("16390", "8", "2015-09-06 12:54:15", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16391", "3", "2015-09-06 13:19:33", "52.19.200.162", "238");
INSERT INTO `wp_gf_form_view` VALUES("16392", "8", "2015-09-06 13:19:35", "52.19.200.162", "26");
INSERT INTO `wp_gf_form_view` VALUES("16393", "1", "2015-09-06 13:19:45", "52.19.200.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16394", "2", "2015-09-06 13:25:11", "52.19.200.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16395", "3", "2015-09-06 14:04:15", "199.217.117.207", "9");
INSERT INTO `wp_gf_form_view` VALUES("16396", "8", "2015-09-06 14:04:16", "199.217.117.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("16397", "3", "2015-09-06 15:45:45", "180.180.106.23", "95");
INSERT INTO `wp_gf_form_view` VALUES("16398", "8", "2015-09-06 15:45:46", "180.180.106.23", "10");
INSERT INTO `wp_gf_form_view` VALUES("16399", "3", "2015-09-06 16:08:57", "52.19.200.222", "47");
INSERT INTO `wp_gf_form_view` VALUES("16400", "8", "2015-09-06 16:08:57", "52.19.200.222", "5");
INSERT INTO `wp_gf_form_view` VALUES("16401", "5", "2015-09-06 16:09:19", "52.19.200.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("16402", "8", "2015-09-06 17:32:45", "24.244.23.83", "6");
INSERT INTO `wp_gf_form_view` VALUES("16403", "3", "2015-09-06 17:32:46", "24.244.23.83", "47");
INSERT INTO `wp_gf_form_view` VALUES("16404", "3", "2015-09-06 18:05:53", "136.243.17.161", "254");
INSERT INTO `wp_gf_form_view` VALUES("16405", "8", "2015-09-06 18:05:53", "136.243.17.161", "29");
INSERT INTO `wp_gf_form_view` VALUES("16406", "3", "2015-09-06 19:12:09", "68.180.229.161", "57");
INSERT INTO `wp_gf_form_view` VALUES("16407", "8", "2015-09-06 19:12:10", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("16408", "8", "2015-09-06 20:22:54", "207.46.13.133", "6");
INSERT INTO `wp_gf_form_view` VALUES("16409", "3", "2015-09-06 20:22:54", "207.46.13.133", "47");
INSERT INTO `wp_gf_form_view` VALUES("16410", "1", "2015-09-06 20:29:15", "5.196.225.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("16411", "3", "2015-09-06 21:08:39", "180.180.76.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("16412", "8", "2015-09-06 21:08:40", "180.180.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("16413", "3", "2015-09-06 22:53:45", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("16414", "8", "2015-09-06 22:53:46", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("16415", "3", "2015-09-06 23:02:26", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("16416", "8", "2015-09-06 23:02:26", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16417", "3", "2015-09-07 00:27:29", "77.75.79.17", "110");
INSERT INTO `wp_gf_form_view` VALUES("16418", "8", "2015-09-07 00:27:29", "77.75.79.17", "13");
INSERT INTO `wp_gf_form_view` VALUES("16419", "3", "2015-09-07 01:07:33", "207.46.13.104", "56");
INSERT INTO `wp_gf_form_view` VALUES("16420", "8", "2015-09-07 01:07:34", "207.46.13.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("16421", "3", "2015-09-07 02:22:55", "207.46.13.133", "10");
INSERT INTO `wp_gf_form_view` VALUES("16422", "8", "2015-09-07 02:22:56", "207.46.13.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("16423", "3", "2015-09-07 03:17:59", "108.180.150.233", "27");
INSERT INTO `wp_gf_form_view` VALUES("16424", "8", "2015-09-07 03:17:59", "108.180.150.233", "3");
INSERT INTO `wp_gf_form_view` VALUES("16425", "3", "2015-09-07 04:36:37", "180.180.100.29", "38");
INSERT INTO `wp_gf_form_view` VALUES("16426", "8", "2015-09-07 04:36:37", "180.180.100.29", "4");
INSERT INTO `wp_gf_form_view` VALUES("16427", "3", "2015-09-07 05:27:38", "66.249.79.162", "182");
INSERT INTO `wp_gf_form_view` VALUES("16428", "8", "2015-09-07 05:27:40", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("16429", "1", "2015-09-07 05:41:19", "24.68.159.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("16430", "6", "2015-09-07 05:55:51", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16431", "3", "2015-09-07 06:01:20", "68.180.229.161", "27");
INSERT INTO `wp_gf_form_view` VALUES("16432", "8", "2015-09-07 06:01:20", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16433", "3", "2015-09-07 07:26:29", "207.46.13.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("16434", "8", "2015-09-07 07:26:31", "207.46.13.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("16435", "8", "2015-09-07 08:31:21", "208.115.111.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("16436", "3", "2015-09-07 08:31:23", "208.115.111.66", "9");
INSERT INTO `wp_gf_form_view` VALUES("16437", "3", "2015-09-07 09:00:34", "188.165.15.90", "37");
INSERT INTO `wp_gf_form_view` VALUES("16438", "8", "2015-09-07 09:00:34", "188.165.15.90", "4");
INSERT INTO `wp_gf_form_view` VALUES("16439", "3", "2015-09-07 10:32:51", "188.165.15.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("16440", "8", "2015-09-07 10:32:52", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16441", "3", "2015-09-07 11:51:46", "188.165.15.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("16442", "8", "2015-09-07 11:51:48", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16443", "3", "2015-09-07 12:23:39", "207.46.13.142", "38");
INSERT INTO `wp_gf_form_view` VALUES("16444", "8", "2015-09-07 12:23:40", "207.46.13.142", "5");
INSERT INTO `wp_gf_form_view` VALUES("16445", "3", "2015-09-07 14:27:26", "66.249.79.169", "37");
INSERT INTO `wp_gf_form_view` VALUES("16446", "8", "2015-09-07 14:27:27", "66.249.79.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("16447", "3", "2015-09-07 15:55:44", "144.76.155.8", "9");
INSERT INTO `wp_gf_form_view` VALUES("16448", "8", "2015-09-07 15:55:44", "144.76.155.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("16449", "3", "2015-09-07 16:19:59", "188.165.15.90", "45");
INSERT INTO `wp_gf_form_view` VALUES("16450", "8", "2015-09-07 16:19:59", "188.165.15.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("16451", "3", "2015-09-07 18:03:15", "66.249.79.162", "36");
INSERT INTO `wp_gf_form_view` VALUES("16452", "8", "2015-09-07 18:03:16", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("16453", "3", "2015-09-07 19:44:38", "24.108.72.71", "37");
INSERT INTO `wp_gf_form_view` VALUES("16454", "8", "2015-09-07 19:44:39", "24.108.72.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("16455", "3", "2015-09-07 20:05:37", "188.165.15.90", "38");
INSERT INTO `wp_gf_form_view` VALUES("16456", "8", "2015-09-07 20:05:37", "188.165.15.90", "4");
INSERT INTO `wp_gf_form_view` VALUES("16457", "3", "2015-09-07 21:06:24", "66.249.79.155", "23");
INSERT INTO `wp_gf_form_view` VALUES("16458", "8", "2015-09-07 21:06:24", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("16459", "3", "2015-09-07 22:13:25", "27.151.64.106", "55");
INSERT INTO `wp_gf_form_view` VALUES("16460", "8", "2015-09-07 22:13:26", "27.151.64.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("16461", "3", "2015-09-07 23:03:08", "66.249.79.155", "27");
INSERT INTO `wp_gf_form_view` VALUES("16462", "8", "2015-09-07 23:03:09", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("16463", "3", "2015-09-08 00:04:39", "188.165.15.90", "56");
INSERT INTO `wp_gf_form_view` VALUES("16464", "8", "2015-09-08 00:04:39", "188.165.15.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("16465", "3", "2015-09-08 02:37:41", "68.180.229.161", "27");
INSERT INTO `wp_gf_form_view` VALUES("16466", "8", "2015-09-08 02:37:43", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16467", "3", "2015-09-08 03:27:41", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("16468", "8", "2015-09-08 03:27:42", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16469", "3", "2015-09-08 04:10:40", "188.165.15.90", "20");
INSERT INTO `wp_gf_form_view` VALUES("16470", "8", "2015-09-08 04:10:40", "188.165.15.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("16471", "3", "2015-09-08 05:02:56", "24.108.72.71", "36");
INSERT INTO `wp_gf_form_view` VALUES("16472", "8", "2015-09-08 05:02:56", "24.108.72.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("16473", "3", "2015-09-08 06:16:23", "199.217.117.207", "9");
INSERT INTO `wp_gf_form_view` VALUES("16474", "8", "2015-09-08 06:16:24", "199.217.117.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("16475", "3", "2015-09-08 07:37:19", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("16476", "8", "2015-09-08 07:37:22", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("16477", "3", "2015-09-08 08:22:19", "77.75.77.62", "160");
INSERT INTO `wp_gf_form_view` VALUES("16478", "8", "2015-09-08 08:22:20", "77.75.77.62", "19");
INSERT INTO `wp_gf_form_view` VALUES("16479", "3", "2015-09-08 09:25:39", "207.46.13.133", "9");
INSERT INTO `wp_gf_form_view` VALUES("16480", "8", "2015-09-08 09:25:40", "207.46.13.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("16481", "3", "2015-09-08 10:54:17", "148.251.75.46", "9");
INSERT INTO `wp_gf_form_view` VALUES("16482", "8", "2015-09-08 10:54:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("16483", "3", "2015-09-08 11:25:44", "220.181.108.92", "119");
INSERT INTO `wp_gf_form_view` VALUES("16484", "8", "2015-09-08 11:25:47", "220.181.108.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("16485", "3", "2015-09-08 12:00:22", "52.17.150.69", "200");
INSERT INTO `wp_gf_form_view` VALUES("16486", "8", "2015-09-08 12:00:23", "52.17.150.69", "22");
INSERT INTO `wp_gf_form_view` VALUES("16487", "3", "2015-09-08 13:00:04", "188.165.15.90", "39");
INSERT INTO `wp_gf_form_view` VALUES("16488", "8", "2015-09-08 13:00:05", "188.165.15.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("16489", "3", "2015-09-08 14:28:22", "188.165.15.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("16490", "8", "2015-09-08 14:28:23", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16491", "3", "2015-09-08 15:00:07", "24.108.85.116", "64");
INSERT INTO `wp_gf_form_view` VALUES("16492", "8", "2015-09-08 15:00:07", "24.108.85.116", "7");
INSERT INTO `wp_gf_form_view` VALUES("16493", "1", "2015-09-08 15:00:24", "24.108.85.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("16494", "3", "2015-09-08 16:11:36", "66.249.79.169", "38");
INSERT INTO `wp_gf_form_view` VALUES("16495", "8", "2015-09-08 16:11:38", "66.249.79.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("16496", "1", "2015-09-08 17:01:25", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16497", "3", "2015-09-08 17:01:25", "66.249.79.162", "54");
INSERT INTO `wp_gf_form_view` VALUES("16498", "8", "2015-09-08 17:01:25", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("16499", "3", "2015-09-08 18:02:08", "207.194.133.9", "55");
INSERT INTO `wp_gf_form_view` VALUES("16500", "8", "2015-09-08 18:02:08", "207.194.133.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("16501", "2", "2015-09-08 18:15:53", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("16502", "3", "2015-09-08 19:01:58", "66.249.79.155", "29");
INSERT INTO `wp_gf_form_view` VALUES("16503", "8", "2015-09-08 19:01:59", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("16504", "3", "2015-09-08 20:08:16", "66.249.79.162", "73");
INSERT INTO `wp_gf_form_view` VALUES("16505", "8", "2015-09-08 20:08:17", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("16506", "3", "2015-09-08 21:04:26", "66.249.79.155", "37");
INSERT INTO `wp_gf_form_view` VALUES("16507", "8", "2015-09-08 21:04:26", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16508", "3", "2015-09-08 22:22:30", "66.249.79.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("16509", "8", "2015-09-08 22:22:33", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("16510", "3", "2015-09-08 23:18:29", "68.180.229.161", "29");
INSERT INTO `wp_gf_form_view` VALUES("16511", "8", "2015-09-08 23:18:30", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16512", "2", "2015-09-08 23:41:23", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16513", "3", "2015-09-09 00:16:53", "96.50.93.42", "391");
INSERT INTO `wp_gf_form_view` VALUES("16514", "8", "2015-09-09 00:16:54", "96.50.93.42", "43");
INSERT INTO `wp_gf_form_view` VALUES("16515", "1", "2015-09-09 00:32:21", "199.255.138.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("16516", "2", "2015-09-09 00:32:27", "199.255.138.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("16517", "3", "2015-09-09 01:18:15", "66.249.79.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("16518", "8", "2015-09-09 01:18:16", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16519", "3", "2015-09-09 02:31:42", "66.249.79.169", "27");
INSERT INTO `wp_gf_form_view` VALUES("16520", "8", "2015-09-09 02:31:43", "66.249.79.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("16521", "3", "2015-09-09 03:18:04", "66.249.79.155", "36");
INSERT INTO `wp_gf_form_view` VALUES("16522", "8", "2015-09-09 03:18:05", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16523", "3", "2015-09-09 04:00:13", "66.249.79.162", "47");
INSERT INTO `wp_gf_form_view` VALUES("16524", "8", "2015-09-09 04:00:14", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("16525", "3", "2015-09-09 05:03:36", "66.249.79.162", "64");
INSERT INTO `wp_gf_form_view` VALUES("16526", "8", "2015-09-09 05:03:37", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("16527", "3", "2015-09-09 06:34:37", "141.0.13.198", "100");
INSERT INTO `wp_gf_form_view` VALUES("16528", "8", "2015-09-09 06:34:37", "141.0.13.198", "11");
INSERT INTO `wp_gf_form_view` VALUES("16529", "3", "2015-09-09 07:00:19", "68.180.229.161", "30");
INSERT INTO `wp_gf_form_view` VALUES("16530", "1", "2015-09-09 07:18:43", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("16531", "8", "2015-09-09 07:18:44", "107.150.42.226", "3");
INSERT INTO `wp_gf_form_view` VALUES("16532", "2", "2015-09-09 08:20:51", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16533", "3", "2015-09-09 08:20:54", "66.249.79.155", "27");
INSERT INTO `wp_gf_form_view` VALUES("16534", "8", "2015-09-09 08:20:55", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("16535", "3", "2015-09-09 09:03:42", "66.249.79.169", "18");
INSERT INTO `wp_gf_form_view` VALUES("16536", "8", "2015-09-09 09:03:42", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("16537", "3", "2015-09-09 10:50:12", "188.165.15.90", "19");
INSERT INTO `wp_gf_form_view` VALUES("16538", "3", "2015-09-09 10:50:12", "188.165.15.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("16539", "8", "2015-09-09 10:50:13", "188.165.15.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("16540", "3", "2015-09-09 11:28:45", "68.180.229.161", "18");
INSERT INTO `wp_gf_form_view` VALUES("16541", "8", "2015-09-09 11:28:46", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16542", "3", "2015-09-09 12:44:34", "199.217.117.207", "9");
INSERT INTO `wp_gf_form_view` VALUES("16543", "8", "2015-09-09 12:44:35", "199.217.117.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("16544", "3", "2015-09-09 13:18:32", "220.181.108.95", "9");
INSERT INTO `wp_gf_form_view` VALUES("16545", "8", "2015-09-09 13:18:33", "220.181.108.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("16546", "3", "2015-09-09 14:44:04", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("16547", "8", "2015-09-09 14:44:05", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16548", "3", "2015-09-09 15:19:57", "91.200.12.128", "98");
INSERT INTO `wp_gf_form_view` VALUES("16549", "8", "2015-09-09 15:19:58", "91.200.12.128", "12");
INSERT INTO `wp_gf_form_view` VALUES("16550", "3", "2015-09-09 17:27:45", "86.126.66.87", "280");
INSERT INTO `wp_gf_form_view` VALUES("16551", "8", "2015-09-09 17:27:47", "86.126.66.87", "31");
INSERT INTO `wp_gf_form_view` VALUES("16552", "1", "2015-09-09 17:28:38", "86.126.66.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("16553", "2", "2015-09-09 17:28:45", "86.126.66.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("16554", "3", "2015-09-09 18:11:38", "69.58.178.59", "146");
INSERT INTO `wp_gf_form_view` VALUES("16555", "8", "2015-09-09 18:11:38", "69.58.178.59", "17");
INSERT INTO `wp_gf_form_view` VALUES("16556", "1", "2015-09-09 18:26:22", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("16557", "3", "2015-09-09 19:01:06", "209.52.88.218", "27");
INSERT INTO `wp_gf_form_view` VALUES("16558", "8", "2015-09-09 19:01:06", "209.52.88.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("16559", "1", "2015-09-09 20:00:05", "157.55.39.225", "3");
INSERT INTO `wp_gf_form_view` VALUES("16560", "3", "2015-09-09 20:00:07", "157.55.39.225", "160");
INSERT INTO `wp_gf_form_view` VALUES("16561", "8", "2015-09-09 20:00:08", "157.55.39.225", "17");
INSERT INTO `wp_gf_form_view` VALUES("16562", "3", "2015-09-09 21:01:12", "66.249.79.155", "37");
INSERT INTO `wp_gf_form_view` VALUES("16563", "8", "2015-09-09 21:01:13", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16564", "3", "2015-09-09 22:10:23", "180.180.70.230", "20");
INSERT INTO `wp_gf_form_view` VALUES("16565", "8", "2015-09-09 22:10:23", "180.180.70.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("16566", "3", "2015-09-09 23:31:01", "157.55.39.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("16567", "8", "2015-09-09 23:31:04", "157.55.39.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("16568", "3", "2015-09-10 00:05:07", "68.180.229.161", "56");
INSERT INTO `wp_gf_form_view` VALUES("16569", "8", "2015-09-10 00:05:08", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("16570", "2", "2015-09-10 00:29:58", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("16571", "3", "2015-09-10 01:01:10", "54.209.60.63", "74");
INSERT INTO `wp_gf_form_view` VALUES("16572", "8", "2015-09-10 01:01:10", "54.209.60.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("16573", "1", "2015-09-10 01:44:26", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("16574", "3", "2015-09-10 02:01:54", "93.186.202.239", "47");
INSERT INTO `wp_gf_form_view` VALUES("16575", "8", "2015-09-10 02:01:54", "93.186.202.239", "5");
INSERT INTO `wp_gf_form_view` VALUES("16576", "3", "2015-09-10 03:19:35", "185.53.44.116", "55");
INSERT INTO `wp_gf_form_view` VALUES("16577", "8", "2015-09-10 03:19:36", "185.53.44.116", "6");
INSERT INTO `wp_gf_form_view` VALUES("16578", "3", "2015-09-10 04:11:58", "207.46.13.60", "37");
INSERT INTO `wp_gf_form_view` VALUES("16579", "8", "2015-09-10 04:11:59", "207.46.13.60", "4");
INSERT INTO `wp_gf_form_view` VALUES("16580", "1", "2015-09-10 04:22:24", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("16581", "3", "2015-09-10 05:10:07", "184.66.115.55", "64");
INSERT INTO `wp_gf_form_view` VALUES("16582", "8", "2015-09-10 05:10:08", "184.66.115.55", "7");
INSERT INTO `wp_gf_form_view` VALUES("16583", "1", "2015-09-10 05:25:48", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("16584", "3", "2015-09-10 06:03:54", "185.53.44.202", "82");
INSERT INTO `wp_gf_form_view` VALUES("16585", "8", "2015-09-10 06:03:55", "185.53.44.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("16586", "1", "2015-09-10 06:33:09", "185.53.44.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("16587", "3", "2015-09-10 07:05:28", "185.53.44.82", "45");
INSERT INTO `wp_gf_form_view` VALUES("16588", "8", "2015-09-10 07:05:29", "185.53.44.82", "5");
INSERT INTO `wp_gf_form_view` VALUES("16589", "3", "2015-09-10 08:22:14", "157.55.39.248", "57");
INSERT INTO `wp_gf_form_view` VALUES("16590", "8", "2015-09-10 08:22:15", "157.55.39.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("16591", "2", "2015-09-10 08:45:31", "185.53.44.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("16592", "3", "2015-09-10 09:43:14", "66.249.79.169", "18");
INSERT INTO `wp_gf_form_view` VALUES("16593", "8", "2015-09-10 09:43:15", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("16594", "3", "2015-09-10 10:22:02", "157.55.39.248", "39");
INSERT INTO `wp_gf_form_view` VALUES("16595", "8", "2015-09-10 10:22:03", "157.55.39.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("16596", "3", "2015-09-10 11:06:48", "185.53.44.202", "28");
INSERT INTO `wp_gf_form_view` VALUES("16597", "8", "2015-09-10 11:06:49", "185.53.44.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("16598", "5", "2015-09-10 11:41:28", "207.46.13.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("16599", "3", "2015-09-10 12:36:29", "27.19.181.179", "20");
INSERT INTO `wp_gf_form_view` VALUES("16600", "8", "2015-09-10 12:36:30", "27.19.181.179", "3");
INSERT INTO `wp_gf_form_view` VALUES("16601", "1", "2015-09-10 15:54:58", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("16602", "3", "2015-09-10 15:54:59", "107.150.42.226", "27");
INSERT INTO `wp_gf_form_view` VALUES("16603", "8", "2015-09-10 15:55:00", "107.150.42.226", "3");
INSERT INTO `wp_gf_form_view` VALUES("16604", "3", "2015-09-10 16:17:37", "199.217.117.207", "29");
INSERT INTO `wp_gf_form_view` VALUES("16605", "8", "2015-09-10 16:17:38", "199.217.117.207", "3");
INSERT INTO `wp_gf_form_view` VALUES("16606", "3", "2015-09-10 17:06:05", "184.71.26.154", "353");
INSERT INTO `wp_gf_form_view` VALUES("16607", "8", "2015-09-10 17:06:05", "184.71.26.154", "39");
INSERT INTO `wp_gf_form_view` VALUES("16608", "2", "2015-09-10 17:38:30", "199.107.64.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("16609", "3", "2015-09-10 18:00:10", "162.243.246.106", "3638");
INSERT INTO `wp_gf_form_view` VALUES("16610", "8", "2015-09-10 18:00:11", "162.243.246.106", "429");
INSERT INTO `wp_gf_form_view` VALUES("16611", "1", "2015-09-10 18:05:04", "162.243.246.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("16612", "6", "2015-09-10 18:12:20", "162.243.246.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("16613", "5", "2015-09-10 18:18:00", "162.243.246.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("16614", "3", "2015-09-10 19:00:06", "162.243.246.106", "1414");
INSERT INTO `wp_gf_form_view` VALUES("16615", "8", "2015-09-10 19:00:07", "162.243.246.106", "172");
INSERT INTO `wp_gf_form_view` VALUES("16616", "9", "2015-09-10 19:01:59", "162.243.246.106", "129");
INSERT INTO `wp_gf_form_view` VALUES("16617", "2", "2015-09-10 19:07:08", "162.243.246.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("16618", "9", "2015-09-10 20:49:40", "157.55.39.137", "13");
INSERT INTO `wp_gf_form_view` VALUES("16619", "3", "2015-09-10 20:49:42", "157.55.39.137", "96");
INSERT INTO `wp_gf_form_view` VALUES("16620", "8", "2015-09-10 20:49:42", "157.55.39.137", "11");
INSERT INTO `wp_gf_form_view` VALUES("16621", "6", "2015-09-10 21:01:26", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16622", "3", "2015-09-10 21:01:27", "66.249.79.155", "29");
INSERT INTO `wp_gf_form_view` VALUES("16623", "9", "2015-09-10 21:01:27", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("16624", "8", "2015-09-10 21:01:27", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16625", "3", "2015-09-10 22:32:01", "220.181.108.147", "80");
INSERT INTO `wp_gf_form_view` VALUES("16626", "9", "2015-09-10 22:32:01", "220.181.108.147", "10");
INSERT INTO `wp_gf_form_view` VALUES("16627", "8", "2015-09-10 22:32:02", "220.181.108.147", "10");
INSERT INTO `wp_gf_form_view` VALUES("16628", "1", "2015-09-10 22:50:20", "27.19.181.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("16629", "3", "2015-09-10 23:02:15", "157.55.39.137", "97");
INSERT INTO `wp_gf_form_view` VALUES("16630", "9", "2015-09-10 23:02:16", "157.55.39.137", "11");
INSERT INTO `wp_gf_form_view` VALUES("16631", "8", "2015-09-10 23:02:16", "157.55.39.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("16632", "6", "2015-09-11 00:08:59", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16633", "3", "2015-09-11 00:08:59", "66.249.79.155", "32");
INSERT INTO `wp_gf_form_view` VALUES("16634", "9", "2015-09-11 00:08:59", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16635", "8", "2015-09-11 00:08:59", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16636", "3", "2015-09-11 01:30:55", "91.200.12.128", "114");
INSERT INTO `wp_gf_form_view` VALUES("16637", "9", "2015-09-11 01:30:57", "91.200.12.128", "15");
INSERT INTO `wp_gf_form_view` VALUES("16638", "8", "2015-09-11 01:30:57", "91.200.12.128", "15");
INSERT INTO `wp_gf_form_view` VALUES("16639", "2", "2015-09-11 01:53:26", "167.114.172.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("16640", "1", "2015-09-11 01:53:32", "167.114.172.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("16641", "3", "2015-09-11 02:09:43", "27.151.64.99", "173");
INSERT INTO `wp_gf_form_view` VALUES("16642", "9", "2015-09-11 02:09:43", "27.151.64.99", "21");
INSERT INTO `wp_gf_form_view` VALUES("16643", "8", "2015-09-11 02:09:44", "27.151.64.99", "21");
INSERT INTO `wp_gf_form_view` VALUES("16644", "3", "2015-09-11 03:08:00", "207.46.13.60", "57");
INSERT INTO `wp_gf_form_view` VALUES("16645", "9", "2015-09-11 03:08:00", "207.46.13.60", "8");
INSERT INTO `wp_gf_form_view` VALUES("16646", "8", "2015-09-11 03:08:00", "207.46.13.60", "8");
INSERT INTO `wp_gf_form_view` VALUES("16647", "3", "2015-09-11 05:05:10", "192.162.27.190", "8");
INSERT INTO `wp_gf_form_view` VALUES("16648", "9", "2015-09-11 05:05:10", "192.162.27.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("16649", "8", "2015-09-11 05:05:10", "192.162.27.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("16650", "3", "2015-09-11 06:39:42", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("16651", "9", "2015-09-11 06:39:44", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16652", "8", "2015-09-11 06:39:44", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16653", "3", "2015-09-11 07:23:37", "27.151.64.99", "42");
INSERT INTO `wp_gf_form_view` VALUES("16654", "9", "2015-09-11 07:23:38", "27.151.64.99", "5");
INSERT INTO `wp_gf_form_view` VALUES("16655", "8", "2015-09-11 07:23:38", "27.151.64.99", "5");
INSERT INTO `wp_gf_form_view` VALUES("16656", "1", "2015-09-11 07:55:07", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("16657", "3", "2015-09-11 08:18:42", "207.46.13.142", "26");
INSERT INTO `wp_gf_form_view` VALUES("16658", "9", "2015-09-11 08:18:42", "207.46.13.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("16659", "8", "2015-09-11 08:18:42", "207.46.13.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("16660", "3", "2015-09-11 09:34:20", "68.180.229.161", "26");
INSERT INTO `wp_gf_form_view` VALUES("16661", "9", "2015-09-11 09:39:59", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("16662", "8", "2015-09-11 09:39:59", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("16663", "1", "2015-09-11 10:04:29", "185.5.64.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("16664", "3", "2015-09-11 10:04:30", "185.5.64.179", "43");
INSERT INTO `wp_gf_form_view` VALUES("16665", "9", "2015-09-11 10:04:30", "185.5.64.179", "6");
INSERT INTO `wp_gf_form_view` VALUES("16666", "8", "2015-09-11 10:04:30", "185.5.64.179", "6");
INSERT INTO `wp_gf_form_view` VALUES("16667", "3", "2015-09-11 11:30:21", "68.180.229.161", "121");
INSERT INTO `wp_gf_form_view` VALUES("16668", "9", "2015-09-11 11:30:23", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("16669", "8", "2015-09-11 11:30:23", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("16670", "3", "2015-09-11 12:06:44", "68.180.229.161", "214");
INSERT INTO `wp_gf_form_view` VALUES("16671", "9", "2015-09-11 12:06:45", "68.180.229.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("16672", "8", "2015-09-11 12:06:45", "68.180.229.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("16673", "3", "2015-09-11 13:09:35", "207.46.13.142", "32");
INSERT INTO `wp_gf_form_view` VALUES("16674", "9", "2015-09-11 13:09:36", "207.46.13.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("16675", "8", "2015-09-11 13:09:36", "207.46.13.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("16676", "2", "2015-09-11 13:29:56", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16677", "3", "2015-09-11 14:02:43", "66.249.79.169", "84");
INSERT INTO `wp_gf_form_view` VALUES("16678", "9", "2015-09-11 14:02:44", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("16679", "8", "2015-09-11 14:02:44", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("16680", "6", "2015-09-11 14:49:46", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("16681", "1", "2015-09-11 15:03:27", "88.150.210.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("16682", "3", "2015-09-11 15:03:27", "88.150.210.109", "165");
INSERT INTO `wp_gf_form_view` VALUES("16683", "9", "2015-09-11 15:03:27", "88.150.210.109", "20");
INSERT INTO `wp_gf_form_view` VALUES("16684", "8", "2015-09-11 15:03:28", "88.150.210.109", "20");
INSERT INTO `wp_gf_form_view` VALUES("16685", "3", "2015-09-11 16:04:08", "157.55.39.248", "33");
INSERT INTO `wp_gf_form_view` VALUES("16686", "9", "2015-09-11 16:04:10", "157.55.39.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("16687", "8", "2015-09-11 16:04:10", "157.55.39.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("16688", "3", "2015-09-11 17:18:10", "66.249.79.169", "49");
INSERT INTO `wp_gf_form_view` VALUES("16689", "9", "2015-09-11 17:18:37", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("16690", "8", "2015-09-11 17:18:37", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("16691", "3", "2015-09-11 18:10:26", "68.180.229.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("16692", "9", "2015-09-11 18:21:35", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("16693", "8", "2015-09-11 18:21:35", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("16694", "3", "2015-09-11 19:10:50", "207.46.13.60", "49");
INSERT INTO `wp_gf_form_view` VALUES("16695", "9", "2015-09-11 19:10:52", "207.46.13.60", "6");
INSERT INTO `wp_gf_form_view` VALUES("16696", "8", "2015-09-11 19:10:53", "207.46.13.60", "6");
INSERT INTO `wp_gf_form_view` VALUES("16697", "2", "2015-09-11 19:14:57", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("16698", "3", "2015-09-11 20:11:35", "5.255.75.57", "89");
INSERT INTO `wp_gf_form_view` VALUES("16699", "9", "2015-09-11 20:11:36", "5.255.75.57", "11");
INSERT INTO `wp_gf_form_view` VALUES("16700", "8", "2015-09-11 20:11:36", "5.255.75.57", "11");
INSERT INTO `wp_gf_form_view` VALUES("16701", "1", "2015-09-11 20:46:02", "192.95.37.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("16702", "3", "2015-09-11 21:12:16", "86.106.18.11", "105");
INSERT INTO `wp_gf_form_view` VALUES("16703", "9", "2015-09-11 21:12:16", "86.106.18.11", "12");
INSERT INTO `wp_gf_form_view` VALUES("16704", "8", "2015-09-11 21:12:17", "86.106.18.11", "12");
INSERT INTO `wp_gf_form_view` VALUES("16705", "3", "2015-09-11 22:08:27", "91.200.12.128", "50");
INSERT INTO `wp_gf_form_view` VALUES("16706", "9", "2015-09-11 22:08:27", "91.200.12.128", "7");
INSERT INTO `wp_gf_form_view` VALUES("16707", "8", "2015-09-11 22:08:28", "91.200.12.128", "7");
INSERT INTO `wp_gf_form_view` VALUES("16708", "3", "2015-09-11 23:24:36", "184.66.6.218", "25");
INSERT INTO `wp_gf_form_view` VALUES("16709", "9", "2015-09-11 23:24:37", "184.66.6.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("16710", "8", "2015-09-11 23:24:37", "184.66.6.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("16711", "3", "2015-09-12 00:21:02", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("16712", "9", "2015-09-12 00:21:02", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("16713", "8", "2015-09-12 00:21:02", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("16714", "9", "2015-09-12 01:28:54", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16715", "3", "2015-09-12 01:28:55", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("16716", "8", "2015-09-12 01:28:56", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16717", "3", "2015-09-12 02:37:21", "5.101.222.182", "8");
INSERT INTO `wp_gf_form_view` VALUES("16718", "9", "2015-09-12 02:37:22", "5.101.222.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("16719", "8", "2015-09-12 02:37:22", "5.101.222.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("16720", "3", "2015-09-12 03:09:17", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("16721", "9", "2015-09-12 03:09:18", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16722", "8", "2015-09-12 03:09:18", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16723", "1", "2015-09-12 03:15:57", "172.245.82.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("16724", "3", "2015-09-12 04:05:19", "68.180.229.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("16725", "9", "2015-09-12 04:05:19", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16726", "8", "2015-09-12 04:05:20", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16727", "3", "2015-09-12 05:32:37", "96.50.80.131", "32");
INSERT INTO `wp_gf_form_view` VALUES("16728", "9", "2015-09-12 05:32:38", "96.50.80.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("16729", "8", "2015-09-12 05:32:38", "96.50.80.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("16730", "1", "2015-09-12 06:18:19", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("16731", "3", "2015-09-12 06:18:19", "51.254.83.80", "56");
INSERT INTO `wp_gf_form_view` VALUES("16732", "9", "2015-09-12 06:18:20", "51.254.83.80", "7");
INSERT INTO `wp_gf_form_view` VALUES("16733", "8", "2015-09-12 06:18:20", "51.254.83.80", "7");
INSERT INTO `wp_gf_form_view` VALUES("16734", "3", "2015-09-12 07:03:16", "68.180.229.161", "99");
INSERT INTO `wp_gf_form_view` VALUES("16735", "9", "2015-09-12 07:03:16", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("16736", "8", "2015-09-12 07:03:17", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("16737", "2", "2015-09-12 09:03:26", "45.55.229.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("16738", "1", "2015-09-12 09:03:26", "45.55.229.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("16739", "3", "2015-09-12 09:03:26", "45.55.229.140", "266");
INSERT INTO `wp_gf_form_view` VALUES("16740", "9", "2015-09-12 09:03:29", "45.55.229.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("16741", "8", "2015-09-12 09:03:29", "45.55.229.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("16742", "3", "2015-09-12 10:30:22", "51.254.83.80", "16");
INSERT INTO `wp_gf_form_view` VALUES("16743", "9", "2015-09-12 10:30:23", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("16744", "8", "2015-09-12 10:30:23", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("16745", "3", "2015-09-12 11:00:23", "131.253.36.195", "25");
INSERT INTO `wp_gf_form_view` VALUES("16746", "9", "2015-09-12 11:00:23", "131.253.36.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("16747", "8", "2015-09-12 11:00:23", "131.253.36.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("16748", "3", "2015-09-12 12:59:59", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("16749", "9", "2015-09-12 12:59:59", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16750", "3", "2015-09-12 13:00:00", "68.180.229.161", "84");
INSERT INTO `wp_gf_form_view` VALUES("16751", "8", "2015-09-12 13:00:00", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("16752", "9", "2015-09-12 13:43:13", "207.46.13.60", "7");
INSERT INTO `wp_gf_form_view` VALUES("16753", "3", "2015-09-12 14:49:58", "91.200.12.38", "26");
INSERT INTO `wp_gf_form_view` VALUES("16754", "9", "2015-09-12 14:49:59", "91.200.12.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("16755", "8", "2015-09-12 14:49:59", "91.200.12.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("16756", "3", "2015-09-12 15:01:04", "207.46.13.78", "8");
INSERT INTO `wp_gf_form_view` VALUES("16757", "9", "2015-09-12 15:01:04", "207.46.13.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("16758", "8", "2015-09-12 15:01:04", "207.46.13.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("16759", "3", "2015-09-12 16:29:59", "66.249.79.155", "17");
INSERT INTO `wp_gf_form_view` VALUES("16760", "9", "2015-09-12 16:30:00", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16761", "8", "2015-09-12 16:30:00", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16762", "3", "2015-09-12 17:12:28", "207.46.13.78", "32");
INSERT INTO `wp_gf_form_view` VALUES("16763", "9", "2015-09-12 17:12:29", "207.46.13.78", "4");
INSERT INTO `wp_gf_form_view` VALUES("16764", "8", "2015-09-12 17:12:29", "207.46.13.78", "4");
INSERT INTO `wp_gf_form_view` VALUES("16765", "9", "2015-09-12 18:17:37", "66.249.79.155", "15");
INSERT INTO `wp_gf_form_view` VALUES("16766", "3", "2015-09-12 18:17:38", "66.249.79.155", "122");
INSERT INTO `wp_gf_form_view` VALUES("16767", "8", "2015-09-12 18:17:38", "66.249.79.155", "14");
INSERT INTO `wp_gf_form_view` VALUES("16768", "9", "2015-09-12 19:12:00", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16769", "3", "2015-09-12 19:12:00", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("16770", "8", "2015-09-12 19:12:01", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16771", "3", "2015-09-12 20:03:30", "68.180.229.161", "79");
INSERT INTO `wp_gf_form_view` VALUES("16772", "9", "2015-09-12 20:03:32", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("16773", "8", "2015-09-12 20:03:33", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("16774", "3", "2015-09-12 21:31:35", "68.180.229.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("16775", "9", "2015-09-12 21:31:36", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("16776", "8", "2015-09-12 21:31:36", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("16777", "6", "2015-09-12 21:59:03", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16778", "3", "2015-09-12 22:07:02", "217.69.133.233", "33");
INSERT INTO `wp_gf_form_view` VALUES("16779", "9", "2015-09-12 22:07:02", "217.69.133.233", "4");
INSERT INTO `wp_gf_form_view` VALUES("16780", "8", "2015-09-12 22:07:02", "217.69.133.233", "4");
INSERT INTO `wp_gf_form_view` VALUES("16781", "3", "2015-09-12 23:10:25", "66.249.79.162", "33");
INSERT INTO `wp_gf_form_view` VALUES("16782", "9", "2015-09-12 23:10:26", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("16783", "8", "2015-09-12 23:10:26", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("16784", "3", "2015-09-13 00:05:54", "216.244.81.34", "9");
INSERT INTO `wp_gf_form_view` VALUES("16785", "9", "2015-09-13 00:05:54", "216.244.81.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("16786", "8", "2015-09-13 00:05:54", "216.244.81.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("16787", "3", "2015-09-13 01:12:20", "217.69.133.230", "107");
INSERT INTO `wp_gf_form_view` VALUES("16788", "9", "2015-09-13 01:12:21", "217.69.133.230", "13");
INSERT INTO `wp_gf_form_view` VALUES("16789", "8", "2015-09-13 01:12:21", "217.69.133.230", "13");
INSERT INTO `wp_gf_form_view` VALUES("16790", "3", "2015-09-13 02:38:51", "91.194.84.106", "26");
INSERT INTO `wp_gf_form_view` VALUES("16791", "9", "2015-09-13 02:38:52", "91.194.84.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("16792", "8", "2015-09-13 02:38:52", "91.194.84.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("16793", "2", "2015-09-13 03:15:23", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("16794", "3", "2015-09-13 03:15:24", "107.150.42.226", "49");
INSERT INTO `wp_gf_form_view` VALUES("16795", "9", "2015-09-13 03:15:24", "107.150.42.226", "6");
INSERT INTO `wp_gf_form_view` VALUES("16796", "8", "2015-09-13 03:15:24", "107.150.42.226", "6");
INSERT INTO `wp_gf_form_view` VALUES("16797", "3", "2015-09-13 04:18:48", "217.69.133.232", "32");
INSERT INTO `wp_gf_form_view` VALUES("16798", "9", "2015-09-13 04:18:48", "217.69.133.232", "4");
INSERT INTO `wp_gf_form_view` VALUES("16799", "8", "2015-09-13 04:18:49", "217.69.133.232", "4");
INSERT INTO `wp_gf_form_view` VALUES("16800", "3", "2015-09-13 05:02:36", "216.232.157.185", "84");
INSERT INTO `wp_gf_form_view` VALUES("16801", "9", "2015-09-13 05:02:36", "216.232.157.185", "11");
INSERT INTO `wp_gf_form_view` VALUES("16802", "8", "2015-09-13 05:02:36", "216.232.157.185", "11");
INSERT INTO `wp_gf_form_view` VALUES("16803", "1", "2015-09-13 05:59:21", "5.175.147.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("16804", "3", "2015-09-13 06:16:14", "66.249.79.155", "106");
INSERT INTO `wp_gf_form_view` VALUES("16805", "9", "2015-09-13 06:16:14", "66.249.79.155", "13");
INSERT INTO `wp_gf_form_view` VALUES("16806", "8", "2015-09-13 06:16:14", "66.249.79.155", "12");
INSERT INTO `wp_gf_form_view` VALUES("16807", "3", "2015-09-13 07:26:37", "217.69.133.233", "35");
INSERT INTO `wp_gf_form_view` VALUES("16808", "9", "2015-09-13 07:26:38", "217.69.133.233", "5");
INSERT INTO `wp_gf_form_view` VALUES("16809", "8", "2015-09-13 07:26:38", "217.69.133.233", "5");
INSERT INTO `wp_gf_form_view` VALUES("16810", "3", "2015-09-13 08:36:18", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("16811", "9", "2015-09-13 08:36:19", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16812", "8", "2015-09-13 08:36:19", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("16813", "3", "2015-09-13 09:00:11", "217.69.133.228", "25");
INSERT INTO `wp_gf_form_view` VALUES("16814", "9", "2015-09-13 09:00:11", "217.69.133.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("16815", "8", "2015-09-13 09:00:11", "217.69.133.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("16816", "3", "2015-09-13 10:42:19", "199.21.99.202", "34");
INSERT INTO `wp_gf_form_view` VALUES("16817", "9", "2015-09-13 10:42:20", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("16818", "8", "2015-09-13 10:42:20", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("16819", "3", "2015-09-13 11:00:33", "66.249.79.155", "33");
INSERT INTO `wp_gf_form_view` VALUES("16820", "9", "2015-09-13 11:00:34", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16821", "8", "2015-09-13 11:00:34", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16822", "3", "2015-09-13 12:10:12", "217.69.133.231", "40");
INSERT INTO `wp_gf_form_view` VALUES("16823", "9", "2015-09-13 12:10:13", "217.69.133.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("16824", "8", "2015-09-13 12:10:13", "217.69.133.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("16825", "3", "2015-09-13 13:10:46", "66.249.79.155", "41");
INSERT INTO `wp_gf_form_view` VALUES("16826", "9", "2015-09-13 13:10:47", "66.249.79.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("16827", "8", "2015-09-13 13:10:47", "66.249.79.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("16828", "3", "2015-09-13 14:26:38", "204.12.241.170", "30");
INSERT INTO `wp_gf_form_view` VALUES("16829", "9", "2015-09-13 14:26:48", "204.12.241.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("16830", "8", "2015-09-13 14:26:48", "204.12.241.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("16831", "3", "2015-09-13 15:05:09", "157.55.39.248", "24");
INSERT INTO `wp_gf_form_view` VALUES("16832", "9", "2015-09-13 15:05:09", "157.55.39.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("16833", "8", "2015-09-13 15:05:10", "157.55.39.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("16834", "7", "2015-09-13 15:08:54", "207.46.13.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("16835", "3", "2015-09-13 16:10:31", "68.180.229.161", "32");
INSERT INTO `wp_gf_form_view` VALUES("16836", "9", "2015-09-13 16:10:32", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("16837", "8", "2015-09-13 16:10:32", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("16838", "1", "2015-09-13 16:49:03", "204.44.85.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("16839", "3", "2015-09-13 17:49:02", "154.20.38.212", "8");
INSERT INTO `wp_gf_form_view` VALUES("16840", "9", "2015-09-13 17:49:06", "154.20.38.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("16841", "8", "2015-09-13 17:49:06", "154.20.38.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("16842", "3", "2015-09-13 18:24:52", "217.69.133.232", "16");
INSERT INTO `wp_gf_form_view` VALUES("16843", "9", "2015-09-13 18:24:53", "217.69.133.232", "2");
INSERT INTO `wp_gf_form_view` VALUES("16844", "8", "2015-09-13 18:24:53", "217.69.133.232", "2");
INSERT INTO `wp_gf_form_view` VALUES("16845", "3", "2015-09-13 19:29:05", "68.180.229.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("16846", "9", "2015-09-13 19:29:08", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("16847", "8", "2015-09-13 19:29:08", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("16848", "3", "2015-09-13 20:49:14", "91.200.12.128", "18");
INSERT INTO `wp_gf_form_view` VALUES("16849", "9", "2015-09-13 20:49:14", "91.200.12.128", "3");
INSERT INTO `wp_gf_form_view` VALUES("16850", "8", "2015-09-13 20:49:14", "91.200.12.128", "3");
INSERT INTO `wp_gf_form_view` VALUES("16851", "3", "2015-09-13 21:18:38", "157.55.39.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("16852", "9", "2015-09-13 21:18:39", "157.55.39.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("16853", "8", "2015-09-13 21:18:39", "157.55.39.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("16854", "3", "2015-09-13 22:26:03", "66.188.42.60", "9");
INSERT INTO `wp_gf_form_view` VALUES("16855", "9", "2015-09-13 22:26:05", "66.188.42.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("16856", "8", "2015-09-13 22:26:05", "66.188.42.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("16857", "3", "2015-09-13 23:06:59", "217.69.133.231", "98");
INSERT INTO `wp_gf_form_view` VALUES("16858", "9", "2015-09-13 23:06:59", "217.69.133.231", "13");
INSERT INTO `wp_gf_form_view` VALUES("16859", "8", "2015-09-13 23:07:00", "217.69.133.231", "14");
INSERT INTO `wp_gf_form_view` VALUES("16860", "2", "2015-09-13 23:07:04", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("16861", "3", "2015-09-14 00:04:11", "67.248.28.8", "49");
INSERT INTO `wp_gf_form_view` VALUES("16862", "9", "2015-09-14 00:04:11", "67.248.28.8", "6");
INSERT INTO `wp_gf_form_view` VALUES("16863", "8", "2015-09-14 00:04:11", "67.248.28.8", "6");
INSERT INTO `wp_gf_form_view` VALUES("16864", "3", "2015-09-14 01:38:45", "66.249.81.194", "8");
INSERT INTO `wp_gf_form_view` VALUES("16865", "9", "2015-09-14 01:38:46", "66.249.81.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("16866", "8", "2015-09-14 01:38:46", "66.249.81.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("16867", "3", "2015-09-14 02:06:56", "207.46.13.60", "26");
INSERT INTO `wp_gf_form_view` VALUES("16868", "9", "2015-09-14 02:06:56", "207.46.13.60", "3");
INSERT INTO `wp_gf_form_view` VALUES("16869", "8", "2015-09-14 02:06:56", "207.46.13.60", "4");
INSERT INTO `wp_gf_form_view` VALUES("16870", "3", "2015-09-14 03:41:04", "157.55.39.19", "56");
INSERT INTO `wp_gf_form_view` VALUES("16871", "9", "2015-09-14 03:41:04", "157.55.39.19", "7");
INSERT INTO `wp_gf_form_view` VALUES("16872", "8", "2015-09-14 03:41:04", "157.55.39.19", "7");
INSERT INTO `wp_gf_form_view` VALUES("16873", "3", "2015-09-14 04:52:48", "66.249.79.155", "17");
INSERT INTO `wp_gf_form_view` VALUES("16874", "9", "2015-09-14 04:52:49", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16875", "8", "2015-09-14 04:52:49", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16876", "3", "2015-09-14 05:46:51", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("16877", "9", "2015-09-14 05:46:52", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16878", "8", "2015-09-14 05:46:52", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16879", "3", "2015-09-14 06:11:41", "68.180.229.161", "34");
INSERT INTO `wp_gf_form_view` VALUES("16880", "9", "2015-09-14 06:11:43", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16881", "8", "2015-09-14 06:11:43", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("16882", "3", "2015-09-14 07:07:51", "220.181.38.147", "33");
INSERT INTO `wp_gf_form_view` VALUES("16883", "9", "2015-09-14 07:07:52", "220.181.38.147", "4");
INSERT INTO `wp_gf_form_view` VALUES("16884", "8", "2015-09-14 07:07:52", "220.181.38.147", "4");
INSERT INTO `wp_gf_form_view` VALUES("16885", "3", "2015-09-14 08:20:35", "66.249.79.155", "16");
INSERT INTO `wp_gf_form_view` VALUES("16886", "9", "2015-09-14 08:20:36", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16887", "8", "2015-09-14 08:20:36", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16888", "3", "2015-09-14 09:38:24", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("16889", "9", "2015-09-14 09:38:25", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16890", "8", "2015-09-14 09:38:25", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("16891", "3", "2015-09-14 10:01:44", "217.69.133.231", "57");
INSERT INTO `wp_gf_form_view` VALUES("16892", "9", "2015-09-14 10:01:44", "217.69.133.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("16893", "8", "2015-09-14 10:01:44", "217.69.133.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("16894", "3", "2015-09-14 11:20:50", "68.180.229.161", "26");
INSERT INTO `wp_gf_form_view` VALUES("16895", "9", "2015-09-14 11:20:52", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16896", "8", "2015-09-14 11:20:52", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16897", "3", "2015-09-14 12:05:49", "66.249.79.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("16898", "9", "2015-09-14 12:05:50", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("16899", "8", "2015-09-14 12:05:50", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("16900", "1", "2015-09-14 12:48:44", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("16901", "3", "2015-09-14 13:09:40", "217.69.133.229", "17");
INSERT INTO `wp_gf_form_view` VALUES("16902", "9", "2015-09-14 13:09:40", "217.69.133.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("16903", "8", "2015-09-14 13:09:40", "217.69.133.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("16904", "1", "2015-09-14 14:08:44", "91.200.12.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("16905", "3", "2015-09-14 14:08:44", "91.200.12.95", "40");
INSERT INTO `wp_gf_form_view` VALUES("16906", "9", "2015-09-14 14:08:45", "91.200.12.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("16907", "8", "2015-09-14 14:08:45", "91.200.12.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("16908", "3", "2015-09-14 15:35:45", "66.249.79.155", "21");
INSERT INTO `wp_gf_form_view` VALUES("16909", "9", "2015-09-14 15:35:46", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16910", "8", "2015-09-14 15:35:46", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("16911", "3", "2015-09-14 16:03:00", "72.143.229.93", "65");
INSERT INTO `wp_gf_form_view` VALUES("16912", "9", "2015-09-14 16:03:00", "72.143.229.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("16913", "8", "2015-09-14 16:03:01", "72.143.229.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("16914", "3", "2015-09-14 17:39:37", "66.249.79.155", "59");
INSERT INTO `wp_gf_form_view` VALUES("16915", "9", "2015-09-14 17:39:39", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("16916", "8", "2015-09-14 17:39:39", "66.249.79.155", "7");
INSERT INTO `wp_gf_form_view` VALUES("16917", "3", "2015-09-14 18:09:37", "66.249.79.169", "56");
INSERT INTO `wp_gf_form_view` VALUES("16918", "9", "2015-09-14 18:09:38", "66.249.79.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("16919", "8", "2015-09-14 18:09:38", "66.249.79.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("16920", "1", "2015-09-14 18:27:15", "91.200.12.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("16921", "3", "2015-09-14 19:05:46", "66.249.79.155", "75");
INSERT INTO `wp_gf_form_view` VALUES("16922", "9", "2015-09-14 19:05:47", "66.249.79.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("16923", "8", "2015-09-14 19:05:47", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("16924", "3", "2015-09-14 20:02:13", "71.222.119.205", "121");
INSERT INTO `wp_gf_form_view` VALUES("16925", "9", "2015-09-14 20:02:13", "71.222.119.205", "15");
INSERT INTO `wp_gf_form_view` VALUES("16926", "8", "2015-09-14 20:02:14", "71.222.119.205", "15");
INSERT INTO `wp_gf_form_view` VALUES("16927", "1", "2015-09-14 20:33:18", "154.20.32.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("16928", "9", "2015-09-14 21:12:48", "66.249.79.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("16929", "3", "2015-09-14 21:12:52", "66.249.79.155", "33");
INSERT INTO `wp_gf_form_view` VALUES("16930", "8", "2015-09-14 21:12:53", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("16931", "3", "2015-09-14 22:28:26", "24.69.85.217", "299");
INSERT INTO `wp_gf_form_view` VALUES("16932", "9", "2015-09-14 22:28:27", "24.69.85.217", "37");
INSERT INTO `wp_gf_form_view` VALUES("16933", "8", "2015-09-14 22:28:27", "24.69.85.217", "37");
INSERT INTO `wp_gf_form_view` VALUES("16934", "1", "2015-09-14 22:52:57", "212.225.165.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("16935", "2", "2015-09-14 22:53:07", "212.225.165.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("16936", "3", "2015-09-14 23:56:29", "207.6.124.205", "8");
INSERT INTO `wp_gf_form_view` VALUES("16937", "9", "2015-09-14 23:56:30", "207.6.124.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("16938", "8", "2015-09-14 23:56:30", "207.6.124.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("16939", "7", "2015-09-15 00:01:07", "207.46.13.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("16940", "3", "2015-09-15 00:01:07", "207.46.13.162", "33");
INSERT INTO `wp_gf_form_view` VALUES("16941", "9", "2015-09-15 00:01:08", "207.46.13.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("16942", "8", "2015-09-15 00:01:08", "207.46.13.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("16943", "3", "2015-09-15 01:09:54", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("16944", "9", "2015-09-15 01:09:54", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16945", "8", "2015-09-15 01:09:55", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16946", "3", "2015-09-15 02:33:56", "24.108.144.134", "32");
INSERT INTO `wp_gf_form_view` VALUES("16947", "9", "2015-09-15 02:33:57", "24.108.144.134", "4");
INSERT INTO `wp_gf_form_view` VALUES("16948", "8", "2015-09-15 02:33:57", "24.108.144.134", "4");
INSERT INTO `wp_gf_form_view` VALUES("16949", "3", "2015-09-15 03:11:57", "157.55.39.79", "10");
INSERT INTO `wp_gf_form_view` VALUES("16950", "8", "2015-09-15 03:11:57", "157.55.39.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("16951", "9", "2015-09-15 03:11:58", "157.55.39.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("16952", "3", "2015-09-15 04:23:02", "87.11.71.247", "50");
INSERT INTO `wp_gf_form_view` VALUES("16953", "9", "2015-09-15 04:23:02", "87.11.71.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("16954", "8", "2015-09-15 04:23:02", "87.11.71.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("16955", "3", "2015-09-15 05:18:29", "68.180.229.161", "18");
INSERT INTO `wp_gf_form_view` VALUES("16956", "9", "2015-09-15 05:18:32", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16957", "8", "2015-09-15 05:18:32", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("16958", "3", "2015-09-15 06:06:10", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("16959", "9", "2015-09-15 06:06:11", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16960", "8", "2015-09-15 06:06:11", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("16961", "3", "2015-09-15 07:03:43", "66.249.79.169", "25");
INSERT INTO `wp_gf_form_view` VALUES("16962", "9", "2015-09-15 07:03:44", "66.249.79.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("16963", "8", "2015-09-15 07:03:44", "66.249.79.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("16964", "3", "2015-09-15 08:00:48", "211.202.2.122", "32");
INSERT INTO `wp_gf_form_view` VALUES("16965", "9", "2015-09-15 08:00:48", "211.202.2.122", "4");
INSERT INTO `wp_gf_form_view` VALUES("16966", "8", "2015-09-15 08:00:48", "211.202.2.122", "4");
INSERT INTO `wp_gf_form_view` VALUES("16967", "1", "2015-09-15 08:07:26", "112.111.185.49", "2");
INSERT INTO `wp_gf_form_view` VALUES("16968", "3", "2015-09-15 09:37:08", "157.55.39.79", "43");
INSERT INTO `wp_gf_form_view` VALUES("16969", "8", "2015-09-15 09:37:09", "157.55.39.79", "6");
INSERT INTO `wp_gf_form_view` VALUES("16970", "9", "2015-09-15 09:37:10", "157.55.39.79", "5");
INSERT INTO `wp_gf_form_view` VALUES("16971", "1", "2015-09-15 09:37:53", "112.111.185.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("16972", "3", "2015-09-15 10:01:25", "157.55.39.55", "42");
INSERT INTO `wp_gf_form_view` VALUES("16973", "8", "2015-09-15 10:01:25", "157.55.39.55", "6");
INSERT INTO `wp_gf_form_view` VALUES("16974", "9", "2015-09-15 10:01:26", "157.55.39.55", "5");
INSERT INTO `wp_gf_form_view` VALUES("16975", "1", "2015-09-15 10:23:23", "116.211.223.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("16976", "3", "2015-09-15 11:06:10", "66.43.50.8", "66");
INSERT INTO `wp_gf_form_view` VALUES("16977", "9", "2015-09-15 11:06:10", "66.43.50.8", "8");
INSERT INTO `wp_gf_form_view` VALUES("16978", "8", "2015-09-15 11:06:10", "66.43.50.8", "8");
INSERT INTO `wp_gf_form_view` VALUES("16979", "1", "2015-09-15 12:04:09", "91.200.12.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("16980", "3", "2015-09-15 12:04:09", "91.200.12.95", "40");
INSERT INTO `wp_gf_form_view` VALUES("16981", "9", "2015-09-15 12:04:10", "91.200.12.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("16982", "8", "2015-09-15 12:04:10", "91.200.12.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("16983", "9", "2015-09-15 13:11:24", "100.43.81.131", "5");
INSERT INTO `wp_gf_form_view` VALUES("16984", "3", "2015-09-15 13:11:26", "100.43.81.131", "33");
INSERT INTO `wp_gf_form_view` VALUES("16985", "8", "2015-09-15 13:11:26", "100.43.81.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("16986", "3", "2015-09-15 14:02:50", "91.200.12.128", "35");
INSERT INTO `wp_gf_form_view` VALUES("16987", "9", "2015-09-15 14:02:51", "91.200.12.128", "6");
INSERT INTO `wp_gf_form_view` VALUES("16988", "8", "2015-09-15 14:02:51", "91.200.12.128", "5");
INSERT INTO `wp_gf_form_view` VALUES("16989", "6", "2015-09-15 15:49:15", "148.251.124.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("16990", "3", "2015-09-15 15:49:17", "148.251.124.42", "8");
INSERT INTO `wp_gf_form_view` VALUES("16991", "9", "2015-09-15 15:49:17", "148.251.124.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("16992", "8", "2015-09-15 15:49:18", "148.251.124.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("16993", "3", "2015-09-15 16:09:37", "157.55.39.55", "26");
INSERT INTO `wp_gf_form_view` VALUES("16994", "9", "2015-09-15 16:09:37", "157.55.39.55", "4");
INSERT INTO `wp_gf_form_view` VALUES("16995", "8", "2015-09-15 16:09:37", "157.55.39.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("16996", "3", "2015-09-15 17:17:55", "66.249.79.155", "112");
INSERT INTO `wp_gf_form_view` VALUES("16997", "9", "2015-09-15 17:17:55", "66.249.79.155", "13");
INSERT INTO `wp_gf_form_view` VALUES("16998", "8", "2015-09-15 17:17:56", "66.249.79.155", "14");
INSERT INTO `wp_gf_form_view` VALUES("16999", "3", "2015-09-15 18:02:36", "66.249.79.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("17000", "9", "2015-09-15 18:02:36", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("17001", "8", "2015-09-15 18:02:37", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("17002", "1", "2015-09-15 19:07:34", "91.200.12.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("17003", "3", "2015-09-15 19:07:35", "91.200.12.95", "132");
INSERT INTO `wp_gf_form_view` VALUES("17004", "9", "2015-09-15 19:07:35", "91.200.12.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("17005", "8", "2015-09-15 19:07:35", "91.200.12.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("17006", "3", "2015-09-15 20:17:21", "174.127.133.75", "560");
INSERT INTO `wp_gf_form_view` VALUES("17007", "9", "2015-09-15 20:17:21", "174.127.133.75", "71");
INSERT INTO `wp_gf_form_view` VALUES("17008", "8", "2015-09-15 20:17:22", "174.127.133.75", "69");
INSERT INTO `wp_gf_form_view` VALUES("17009", "1", "2015-09-15 20:20:03", "174.127.133.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("17010", "2", "2015-09-15 20:22:32", "174.127.133.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("17011", "3", "2015-09-15 21:00:25", "174.127.133.71", "59");
INSERT INTO `wp_gf_form_view` VALUES("17012", "9", "2015-09-15 21:00:26", "174.127.133.71", "7");
INSERT INTO `wp_gf_form_view` VALUES("17013", "8", "2015-09-15 21:00:26", "174.127.133.71", "7");
INSERT INTO `wp_gf_form_view` VALUES("17014", "3", "2015-09-15 22:01:14", "75.156.32.27", "77");
INSERT INTO `wp_gf_form_view` VALUES("17015", "9", "2015-09-15 22:01:14", "75.156.32.27", "9");
INSERT INTO `wp_gf_form_view` VALUES("17016", "8", "2015-09-15 22:01:14", "75.156.32.27", "10");
INSERT INTO `wp_gf_form_view` VALUES("17017", "5", "2015-09-15 22:59:53", "162.13.138.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("17018", "3", "2015-09-15 23:05:42", "157.55.39.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("17019", "8", "2015-09-15 23:05:42", "157.55.39.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("17020", "9", "2015-09-15 23:05:42", "157.55.39.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("17021", "3", "2015-09-16 00:02:41", "157.55.39.62", "104");
INSERT INTO `wp_gf_form_view` VALUES("17022", "9", "2015-09-16 00:02:42", "157.55.39.62", "13");
INSERT INTO `wp_gf_form_view` VALUES("17023", "8", "2015-09-16 00:02:42", "157.55.39.62", "13");
INSERT INTO `wp_gf_form_view` VALUES("17024", "1", "2015-09-16 00:19:37", "91.200.12.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("17025", "3", "2015-09-16 01:34:37", "184.66.97.38", "8");
INSERT INTO `wp_gf_form_view` VALUES("17026", "9", "2015-09-16 01:34:37", "184.66.97.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("17027", "8", "2015-09-16 01:34:38", "184.66.97.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("17028", "3", "2015-09-16 03:03:48", "66.249.67.76", "42");
INSERT INTO `wp_gf_form_view` VALUES("17029", "9", "2015-09-16 03:03:49", "66.249.67.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("17030", "8", "2015-09-16 03:03:49", "66.249.67.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("17031", "3", "2015-09-16 04:15:47", "157.55.39.245", "25");
INSERT INTO `wp_gf_form_view` VALUES("17032", "9", "2015-09-16 04:15:47", "157.55.39.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("17033", "8", "2015-09-16 04:15:47", "157.55.39.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("17034", "1", "2015-09-16 05:09:01", "91.200.12.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("17035", "3", "2015-09-16 05:09:01", "91.200.12.95", "32");
INSERT INTO `wp_gf_form_view` VALUES("17036", "9", "2015-09-16 05:09:01", "91.200.12.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("17037", "8", "2015-09-16 05:09:02", "91.200.12.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("17038", "3", "2015-09-16 06:00:16", "207.46.13.180", "40");
INSERT INTO `wp_gf_form_view` VALUES("17039", "9", "2015-09-16 06:00:17", "207.46.13.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("17040", "8", "2015-09-16 06:00:17", "207.46.13.180", "5");
INSERT INTO `wp_gf_form_view` VALUES("17041", "3", "2015-09-16 07:04:45", "91.200.12.128", "34");
INSERT INTO `wp_gf_form_view` VALUES("17042", "9", "2015-09-16 07:04:45", "91.200.12.128", "5");
INSERT INTO `wp_gf_form_view` VALUES("17043", "8", "2015-09-16 07:04:46", "91.200.12.128", "5");
INSERT INTO `wp_gf_form_view` VALUES("17044", "1", "2015-09-16 07:07:14", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("17045", "3", "2015-09-16 08:03:15", "188.165.15.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("17046", "9", "2015-09-16 08:03:15", "188.165.15.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("17047", "8", "2015-09-16 08:03:15", "188.165.15.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("17048", "9", "2015-09-16 09:06:36", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("17049", "3", "2015-09-16 09:30:54", "207.46.13.137", "25");
INSERT INTO `wp_gf_form_view` VALUES("17050", "8", "2015-09-16 09:30:55", "207.46.13.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("17051", "3", "2015-09-16 10:14:31", "68.180.229.161", "46");
INSERT INTO `wp_gf_form_view` VALUES("17052", "8", "2015-09-16 10:14:31", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("17053", "9", "2015-09-16 10:14:32", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("17054", "3", "2015-09-16 11:01:33", "207.46.13.137", "48");
INSERT INTO `wp_gf_form_view` VALUES("17055", "9", "2015-09-16 11:01:33", "207.46.13.137", "6");
INSERT INTO `wp_gf_form_view` VALUES("17056", "8", "2015-09-16 11:01:33", "207.46.13.137", "6");
INSERT INTO `wp_gf_form_view` VALUES("17057", "1", "2015-09-16 11:06:30", "91.200.12.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("17058", "2", "2015-09-16 11:10:52", "157.55.39.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("17059", "3", "2015-09-16 12:03:54", "157.55.39.42", "42");
INSERT INTO `wp_gf_form_view` VALUES("17060", "9", "2015-09-16 12:03:55", "157.55.39.42", "5");
INSERT INTO `wp_gf_form_view` VALUES("17061", "8", "2015-09-16 12:03:55", "157.55.39.42", "5");
INSERT INTO `wp_gf_form_view` VALUES("17062", "3", "2015-09-16 13:26:01", "188.165.15.177", "16");
INSERT INTO `wp_gf_form_view` VALUES("17063", "9", "2015-09-16 13:26:02", "188.165.15.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("17064", "8", "2015-09-16 13:26:02", "188.165.15.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("17065", "3", "2015-09-16 14:03:44", "188.165.15.177", "50");
INSERT INTO `wp_gf_form_view` VALUES("17066", "9", "2015-09-16 14:03:45", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17067", "8", "2015-09-16 14:03:45", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17068", "3", "2015-09-16 15:08:30", "184.66.97.38", "32");
INSERT INTO `wp_gf_form_view` VALUES("17069", "9", "2015-09-16 15:08:31", "184.66.97.38", "5");
INSERT INTO `wp_gf_form_view` VALUES("17070", "8", "2015-09-16 15:08:31", "184.66.97.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("17071", "3", "2015-09-16 16:07:32", "157.55.39.42", "25");
INSERT INTO `wp_gf_form_view` VALUES("17072", "9", "2015-09-16 16:07:32", "157.55.39.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("17073", "8", "2015-09-16 16:07:32", "157.55.39.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("17074", "3", "2015-09-16 17:01:38", "157.55.39.245", "66");
INSERT INTO `wp_gf_form_view` VALUES("17075", "9", "2015-09-16 17:01:38", "157.55.39.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("17076", "8", "2015-09-16 17:01:38", "157.55.39.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("17077", "3", "2015-09-16 18:00:09", "157.55.39.245", "114");
INSERT INTO `wp_gf_form_view` VALUES("17078", "9", "2015-09-16 18:00:10", "157.55.39.245", "14");
INSERT INTO `wp_gf_form_view` VALUES("17079", "8", "2015-09-16 18:00:10", "157.55.39.245", "14");
INSERT INTO `wp_gf_form_view` VALUES("17080", "2", "2015-09-16 18:06:38", "157.55.39.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("17081", "1", "2015-09-16 18:14:36", "157.55.39.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("17082", "3", "2015-09-16 19:23:43", "157.55.39.132", "33");
INSERT INTO `wp_gf_form_view` VALUES("17083", "9", "2015-09-16 19:23:45", "157.55.39.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("17084", "8", "2015-09-16 19:23:45", "157.55.39.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("17085", "1", "2015-09-16 19:40:19", "157.55.39.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("17086", "2", "2015-09-16 19:42:46", "157.55.39.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("17087", "3", "2015-09-16 20:04:09", "157.55.39.132", "129");
INSERT INTO `wp_gf_form_view` VALUES("17088", "9", "2015-09-16 20:04:09", "157.55.39.132", "17");
INSERT INTO `wp_gf_form_view` VALUES("17089", "8", "2015-09-16 20:04:09", "157.55.39.132", "17");
INSERT INTO `wp_gf_form_view` VALUES("17090", "3", "2015-09-16 21:07:31", "157.55.39.42", "24");
INSERT INTO `wp_gf_form_view` VALUES("17091", "9", "2015-09-16 21:07:31", "157.55.39.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("17092", "8", "2015-09-16 21:07:31", "157.55.39.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("17093", "3", "2015-09-16 22:00:28", "157.55.39.245", "54");
INSERT INTO `wp_gf_form_view` VALUES("17094", "9", "2015-09-16 22:00:28", "157.55.39.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("17095", "8", "2015-09-16 22:00:28", "157.55.39.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("17096", "3", "2015-09-16 23:36:42", "180.180.73.37", "33");
INSERT INTO `wp_gf_form_view` VALUES("17097", "9", "2015-09-16 23:36:44", "180.180.73.37", "4");
INSERT INTO `wp_gf_form_view` VALUES("17098", "8", "2015-09-16 23:36:44", "180.180.73.37", "4");
INSERT INTO `wp_gf_form_view` VALUES("17099", "3", "2015-09-17 00:06:58", "154.5.183.23", "103");
INSERT INTO `wp_gf_form_view` VALUES("17100", "9", "2015-09-17 00:06:58", "154.5.183.23", "12");
INSERT INTO `wp_gf_form_view` VALUES("17101", "8", "2015-09-17 00:06:58", "154.5.183.23", "12");
INSERT INTO `wp_gf_form_view` VALUES("17102", "1", "2015-09-17 00:09:18", "154.5.183.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("17103", "3", "2015-09-17 01:10:05", "157.55.39.245", "16");
INSERT INTO `wp_gf_form_view` VALUES("17104", "9", "2015-09-17 01:10:06", "157.55.39.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("17105", "8", "2015-09-17 01:10:06", "157.55.39.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("17106", "3", "2015-09-17 02:04:31", "65.55.209.82", "81");
INSERT INTO `wp_gf_form_view` VALUES("17107", "9", "2015-09-17 02:04:31", "65.55.209.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("17108", "8", "2015-09-17 02:04:31", "65.55.209.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("17109", "1", "2015-09-17 02:04:36", "65.55.209.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("17110", "2", "2015-09-17 02:04:41", "65.55.209.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("17111", "3", "2015-09-17 03:05:11", "66.249.79.162", "88");
INSERT INTO `wp_gf_form_view` VALUES("17112", "9", "2015-09-17 03:05:11", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17113", "8", "2015-09-17 03:05:11", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17114", "1", "2015-09-17 03:07:45", "157.56.2.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("17115", "3", "2015-09-17 04:12:24", "66.249.79.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("17116", "9", "2015-09-17 04:12:24", "66.249.79.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("17117", "8", "2015-09-17 04:12:24", "66.249.79.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("17118", "3", "2015-09-17 05:10:42", "157.55.39.42", "57");
INSERT INTO `wp_gf_form_view` VALUES("17119", "9", "2015-09-17 05:10:43", "157.55.39.42", "8");
INSERT INTO `wp_gf_form_view` VALUES("17120", "8", "2015-09-17 05:10:43", "157.55.39.42", "8");
INSERT INTO `wp_gf_form_view` VALUES("17121", "3", "2015-09-17 06:02:20", "68.2.236.114", "89");
INSERT INTO `wp_gf_form_view` VALUES("17122", "9", "2015-09-17 06:02:20", "68.2.236.114", "11");
INSERT INTO `wp_gf_form_view` VALUES("17123", "8", "2015-09-17 06:02:20", "68.2.236.114", "11");
INSERT INTO `wp_gf_form_view` VALUES("17124", "1", "2015-09-17 06:16:24", "51.254.83.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("17125", "3", "2015-09-17 07:22:15", "157.55.39.42", "16");
INSERT INTO `wp_gf_form_view` VALUES("17126", "9", "2015-09-17 07:22:16", "157.55.39.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("17127", "8", "2015-09-17 07:22:17", "157.55.39.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("17128", "3", "2015-09-17 08:03:34", "24.68.98.249", "32");
INSERT INTO `wp_gf_form_view` VALUES("17129", "9", "2015-09-17 08:03:34", "24.68.98.249", "5");
INSERT INTO `wp_gf_form_view` VALUES("17130", "8", "2015-09-17 08:03:35", "24.68.98.249", "4");
INSERT INTO `wp_gf_form_view` VALUES("17131", "3", "2015-09-17 09:07:04", "68.180.229.161", "26");
INSERT INTO `wp_gf_form_view` VALUES("17132", "9", "2015-09-17 09:07:04", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("17133", "8", "2015-09-17 09:07:05", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("17134", "9", "2015-09-17 10:03:15", "157.55.39.229", "11");
INSERT INTO `wp_gf_form_view` VALUES("17135", "3", "2015-09-17 10:03:15", "157.55.39.229", "73");
INSERT INTO `wp_gf_form_view` VALUES("17136", "8", "2015-09-17 10:03:15", "157.55.39.229", "10");
INSERT INTO `wp_gf_form_view` VALUES("17137", "3", "2015-09-17 11:28:11", "66.249.79.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("17138", "9", "2015-09-17 11:28:12", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("17139", "8", "2015-09-17 11:28:12", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("17140", "3", "2015-09-17 12:02:43", "188.165.15.177", "41");
INSERT INTO `wp_gf_form_view` VALUES("17141", "9", "2015-09-17 12:02:43", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17142", "8", "2015-09-17 12:02:44", "188.165.15.177", "5");
INSERT INTO `wp_gf_form_view` VALUES("17143", "3", "2015-09-17 13:15:19", "24.78.100.173", "26");
INSERT INTO `wp_gf_form_view` VALUES("17144", "9", "2015-09-17 13:15:19", "24.78.100.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("17145", "8", "2015-09-17 13:15:19", "24.78.100.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("17146", "3", "2015-09-17 14:07:22", "213.133.103.175", "114");
INSERT INTO `wp_gf_form_view` VALUES("17147", "9", "2015-09-17 14:07:23", "213.133.103.175", "14");
INSERT INTO `wp_gf_form_view` VALUES("17148", "8", "2015-09-17 14:07:23", "213.133.103.175", "14");
INSERT INTO `wp_gf_form_view` VALUES("17149", "3", "2015-09-17 15:07:19", "213.133.103.175", "58");
INSERT INTO `wp_gf_form_view` VALUES("17150", "9", "2015-09-17 15:07:22", "213.133.103.175", "7");
INSERT INTO `wp_gf_form_view` VALUES("17151", "8", "2015-09-17 15:07:22", "213.133.103.175", "7");
INSERT INTO `wp_gf_form_view` VALUES("17152", "3", "2015-09-17 16:44:56", "188.165.15.177", "9");
INSERT INTO `wp_gf_form_view` VALUES("17153", "9", "2015-09-17 16:44:57", "188.165.15.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("17154", "8", "2015-09-17 16:44:57", "188.165.15.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("17155", "3", "2015-09-17 17:02:15", "207.46.13.46", "33");
INSERT INTO `wp_gf_form_view` VALUES("17156", "9", "2015-09-17 17:02:15", "207.46.13.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("17157", "8", "2015-09-17 17:02:16", "207.46.13.46", "4");
INSERT INTO `wp_gf_form_view` VALUES("17158", "3", "2015-09-17 18:18:23", "66.45.239.118", "16");
INSERT INTO `wp_gf_form_view` VALUES("17159", "9", "2015-09-17 18:18:24", "66.45.239.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("17160", "8", "2015-09-17 18:18:24", "66.45.239.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("17161", "3", "2015-09-17 19:02:18", "207.46.13.62", "106");
INSERT INTO `wp_gf_form_view` VALUES("17162", "9", "2015-09-17 19:02:18", "207.46.13.62", "17");
INSERT INTO `wp_gf_form_view` VALUES("17163", "8", "2015-09-17 19:02:18", "207.46.13.62", "14");
INSERT INTO `wp_gf_form_view` VALUES("17164", "3", "2015-09-17 20:07:56", "157.55.39.245", "108");
INSERT INTO `wp_gf_form_view` VALUES("17165", "9", "2015-09-17 20:07:56", "157.55.39.245", "13");
INSERT INTO `wp_gf_form_view` VALUES("17166", "8", "2015-09-17 20:07:57", "157.55.39.245", "13");
INSERT INTO `wp_gf_form_view` VALUES("17167", "3", "2015-09-17 21:21:30", "157.55.39.132", "55");
INSERT INTO `wp_gf_form_view` VALUES("17168", "8", "2015-09-17 21:21:30", "157.55.39.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("17169", "9", "2015-09-17 21:21:32", "157.55.39.132", "7");
INSERT INTO `wp_gf_form_view` VALUES("17170", "3", "2015-09-17 22:03:14", "104.140.70.34", "64");
INSERT INTO `wp_gf_form_view` VALUES("17171", "9", "2015-09-17 22:03:14", "104.140.70.34", "8");
INSERT INTO `wp_gf_form_view` VALUES("17172", "8", "2015-09-17 22:03:14", "104.140.70.34", "9");
INSERT INTO `wp_gf_form_view` VALUES("17173", "3", "2015-09-17 23:20:10", "157.55.39.245", "44");
INSERT INTO `wp_gf_form_view` VALUES("17174", "9", "2015-09-17 23:20:10", "157.55.39.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("17175", "8", "2015-09-17 23:20:11", "157.55.39.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("17176", "3", "2015-09-18 00:11:25", "188.165.15.177", "79");
INSERT INTO `wp_gf_form_view` VALUES("17177", "8", "2015-09-18 00:11:26", "188.165.15.177", "10");
INSERT INTO `wp_gf_form_view` VALUES("17178", "9", "2015-09-18 00:11:27", "188.165.15.177", "9");
INSERT INTO `wp_gf_form_view` VALUES("17179", "1", "2015-09-18 01:14:27", "221.234.77.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("17180", "3", "2015-09-18 01:14:27", "221.234.77.117", "43");
INSERT INTO `wp_gf_form_view` VALUES("17181", "9", "2015-09-18 01:14:27", "221.234.77.117", "5");
INSERT INTO `wp_gf_form_view` VALUES("17182", "8", "2015-09-18 01:14:27", "221.234.77.117", "5");
INSERT INTO `wp_gf_form_view` VALUES("17183", "3", "2015-09-18 02:07:27", "96.50.93.10", "72");
INSERT INTO `wp_gf_form_view` VALUES("17184", "9", "2015-09-18 02:07:27", "96.50.93.10", "9");
INSERT INTO `wp_gf_form_view` VALUES("17185", "8", "2015-09-18 02:07:27", "96.50.93.10", "9");
INSERT INTO `wp_gf_form_view` VALUES("17186", "1", "2015-09-18 02:13:20", "96.50.93.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("17187", "3", "2015-09-18 03:14:16", "216.244.81.34", "41");
INSERT INTO `wp_gf_form_view` VALUES("17188", "9", "2015-09-18 03:14:17", "216.244.81.34", "6");
INSERT INTO `wp_gf_form_view` VALUES("17189", "8", "2015-09-18 03:14:17", "216.244.81.34", "5");
INSERT INTO `wp_gf_form_view` VALUES("17190", "3", "2015-09-18 04:17:25", "66.249.79.155", "16");
INSERT INTO `wp_gf_form_view` VALUES("17191", "9", "2015-09-18 04:17:25", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("17192", "8", "2015-09-18 04:17:25", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("17193", "3", "2015-09-18 05:21:39", "188.165.15.177", "16");
INSERT INTO `wp_gf_form_view` VALUES("17194", "9", "2015-09-18 05:21:40", "188.165.15.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("17195", "8", "2015-09-18 05:21:40", "188.165.15.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("17196", "7", "2015-09-18 05:40:33", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("17197", "3", "2015-09-18 06:07:59", "207.46.13.46", "8");
INSERT INTO `wp_gf_form_view` VALUES("17198", "9", "2015-09-18 06:08:00", "207.46.13.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("17199", "8", "2015-09-18 06:08:00", "207.46.13.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("17200", "3", "2015-09-18 07:21:39", "199.21.99.202", "124");
INSERT INTO `wp_gf_form_view` VALUES("17201", "9", "2015-09-18 07:21:41", "199.21.99.202", "15");
INSERT INTO `wp_gf_form_view` VALUES("17202", "8", "2015-09-18 07:21:41", "199.21.99.202", "15");
INSERT INTO `wp_gf_form_view` VALUES("17203", "3", "2015-09-18 08:14:41", "66.249.79.155", "25");
INSERT INTO `wp_gf_form_view` VALUES("17204", "9", "2015-09-18 08:14:42", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("17205", "8", "2015-09-18 08:14:42", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("17206", "3", "2015-09-18 09:27:23", "188.165.15.177", "42");
INSERT INTO `wp_gf_form_view` VALUES("17207", "9", "2015-09-18 09:27:23", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17208", "8", "2015-09-18 09:27:23", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17209", "5", "2015-09-18 09:43:35", "188.165.15.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("17210", "3", "2015-09-18 10:06:34", "188.165.15.177", "18");
INSERT INTO `wp_gf_form_view` VALUES("17211", "9", "2015-09-18 10:06:35", "188.165.15.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("17212", "8", "2015-09-18 10:06:35", "188.165.15.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("17213", "3", "2015-09-18 11:09:28", "208.115.113.83", "41");
INSERT INTO `wp_gf_form_view` VALUES("17214", "9", "2015-09-18 11:32:40", "180.180.105.127", "4");
INSERT INTO `wp_gf_form_view` VALUES("17215", "8", "2015-09-18 11:32:40", "180.180.105.127", "4");
INSERT INTO `wp_gf_form_view` VALUES("17216", "3", "2015-09-18 12:23:21", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("17217", "9", "2015-09-18 12:23:22", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("17218", "8", "2015-09-18 12:23:22", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("17219", "3", "2015-09-18 13:05:49", "66.249.79.155", "145");
INSERT INTO `wp_gf_form_view` VALUES("17220", "9", "2015-09-18 13:05:49", "66.249.79.155", "19");
INSERT INTO `wp_gf_form_view` VALUES("17221", "8", "2015-09-18 13:05:49", "66.249.79.155", "19");
INSERT INTO `wp_gf_form_view` VALUES("17222", "6", "2015-09-18 13:19:45", "212.83.191.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("17223", "2", "2015-09-18 13:50:58", "104.40.80.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("17224", "1", "2015-09-18 13:50:59", "104.40.80.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("17225", "3", "2015-09-18 14:02:23", "85.25.198.9", "65");
INSERT INTO `wp_gf_form_view` VALUES("17226", "9", "2015-09-18 14:02:23", "85.25.198.9", "9");
INSERT INTO `wp_gf_form_view` VALUES("17227", "8", "2015-09-18 14:02:23", "85.25.198.9", "9");
INSERT INTO `wp_gf_form_view` VALUES("17228", "2", "2015-09-18 15:23:18", "104.131.17.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("17229", "3", "2015-09-18 15:23:18", "104.131.17.216", "189");
INSERT INTO `wp_gf_form_view` VALUES("17230", "1", "2015-09-18 15:23:18", "104.131.17.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("17231", "9", "2015-09-18 15:23:19", "104.131.17.216", "23");
INSERT INTO `wp_gf_form_view` VALUES("17232", "8", "2015-09-18 15:23:19", "104.131.17.216", "23");
INSERT INTO `wp_gf_form_view` VALUES("17233", "3", "2015-09-18 16:06:53", "180.180.228.212", "50");
INSERT INTO `wp_gf_form_view` VALUES("17234", "9", "2015-09-18 16:06:53", "180.180.228.212", "6");
INSERT INTO `wp_gf_form_view` VALUES("17235", "8", "2015-09-18 16:06:54", "180.180.228.212", "6");
INSERT INTO `wp_gf_form_view` VALUES("17236", "3", "2015-09-18 18:04:53", "207.46.13.117", "40");
INSERT INTO `wp_gf_form_view` VALUES("17237", "9", "2015-09-18 18:04:55", "207.46.13.117", "5");
INSERT INTO `wp_gf_form_view` VALUES("17238", "8", "2015-09-18 18:04:56", "207.46.13.117", "5");
INSERT INTO `wp_gf_form_view` VALUES("17239", "3", "2015-09-18 20:07:31", "24.108.144.199", "16");
INSERT INTO `wp_gf_form_view` VALUES("17240", "9", "2015-09-18 20:07:31", "24.108.144.199", "2");
INSERT INTO `wp_gf_form_view` VALUES("17241", "8", "2015-09-18 20:07:31", "24.108.144.199", "2");
INSERT INTO `wp_gf_form_view` VALUES("17242", "1", "2015-09-18 20:35:56", "176.9.1.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("17243", "3", "2015-09-18 21:01:52", "213.133.103.175", "129");
INSERT INTO `wp_gf_form_view` VALUES("17244", "9", "2015-09-18 21:01:52", "213.133.103.175", "16");
INSERT INTO `wp_gf_form_view` VALUES("17245", "8", "2015-09-18 21:01:52", "213.133.103.175", "16");
INSERT INTO `wp_gf_form_view` VALUES("17246", "2", "2015-09-18 22:07:43", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("17247", "3", "2015-09-18 22:07:45", "68.180.229.161", "50");
INSERT INTO `wp_gf_form_view` VALUES("17248", "9", "2015-09-18 22:07:45", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("17249", "8", "2015-09-18 22:07:45", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("17250", "3", "2015-09-18 23:16:51", "207.46.13.181", "9");
INSERT INTO `wp_gf_form_view` VALUES("17251", "9", "2015-09-18 23:16:51", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("17252", "8", "2015-09-18 23:16:51", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("17253", "3", "2015-09-19 00:21:37", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("17254", "9", "2015-09-19 00:43:32", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("17255", "8", "2015-09-19 00:43:32", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("17256", "3", "2015-09-19 01:48:40", "199.217.117.207", "8");
INSERT INTO `wp_gf_form_view` VALUES("17257", "9", "2015-09-19 01:48:41", "199.217.117.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("17258", "8", "2015-09-19 01:48:41", "199.217.117.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("17259", "3", "2015-09-19 02:06:59", "188.165.15.177", "139");
INSERT INTO `wp_gf_form_view` VALUES("17260", "9", "2015-09-19 02:06:59", "188.165.15.177", "17");
INSERT INTO `wp_gf_form_view` VALUES("17261", "8", "2015-09-19 02:06:59", "188.165.15.177", "17");
INSERT INTO `wp_gf_form_view` VALUES("17262", "3", "2015-09-19 03:43:38", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("17263", "9", "2015-09-19 03:43:39", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("17264", "8", "2015-09-19 03:43:39", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("17265", "3", "2015-09-19 04:36:48", "66.249.79.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("17266", "9", "2015-09-19 04:36:48", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17267", "8", "2015-09-19 04:36:49", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17268", "3", "2015-09-19 05:06:39", "213.133.103.175", "116");
INSERT INTO `wp_gf_form_view` VALUES("17269", "9", "2015-09-19 05:06:40", "213.133.103.175", "14");
INSERT INTO `wp_gf_form_view` VALUES("17270", "8", "2015-09-19 05:06:40", "213.133.103.175", "14");
INSERT INTO `wp_gf_form_view` VALUES("17271", "3", "2015-09-19 06:07:29", "136.243.17.161", "90");
INSERT INTO `wp_gf_form_view` VALUES("17272", "9", "2015-09-19 06:07:29", "136.243.17.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("17273", "8", "2015-09-19 06:07:30", "136.243.17.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("17274", "3", "2015-09-19 07:25:37", "66.249.79.155", "24");
INSERT INTO `wp_gf_form_view` VALUES("17275", "9", "2015-09-19 07:25:37", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("17276", "8", "2015-09-19 07:25:38", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("17277", "3", "2015-09-19 08:18:04", "180.180.113.110", "73");
INSERT INTO `wp_gf_form_view` VALUES("17278", "9", "2015-09-19 08:18:05", "180.180.113.110", "9");
INSERT INTO `wp_gf_form_view` VALUES("17279", "8", "2015-09-19 08:18:05", "180.180.113.110", "9");
INSERT INTO `wp_gf_form_view` VALUES("17280", "3", "2015-09-19 09:10:59", "207.46.13.117", "717");
INSERT INTO `wp_gf_form_view` VALUES("17281", "9", "2015-09-19 09:10:59", "207.46.13.117", "86");
INSERT INTO `wp_gf_form_view` VALUES("17282", "8", "2015-09-19 09:10:59", "207.46.13.117", "90");
INSERT INTO `wp_gf_form_view` VALUES("17283", "2", "2015-09-19 09:20:14", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("17284", "1", "2015-09-19 09:20:18", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("17285", "5", "2015-09-19 09:26:20", "213.239.211.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("17286", "3", "2015-09-19 10:02:57", "188.165.15.177", "24");
INSERT INTO `wp_gf_form_view` VALUES("17287", "9", "2015-09-19 10:02:57", "188.165.15.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("17288", "8", "2015-09-19 10:02:57", "188.165.15.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("17289", "3", "2015-09-19 11:00:12", "66.249.79.155", "32");
INSERT INTO `wp_gf_form_view` VALUES("17290", "9", "2015-09-19 11:00:12", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("17291", "8", "2015-09-19 11:00:12", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("17292", "2", "2015-09-19 11:00:55", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("17293", "1", "2015-09-19 12:14:39", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("17294", "3", "2015-09-19 12:14:41", "51.254.83.80", "41");
INSERT INTO `wp_gf_form_view` VALUES("17295", "9", "2015-09-19 12:14:41", "51.254.83.80", "5");
INSERT INTO `wp_gf_form_view` VALUES("17296", "8", "2015-09-19 12:14:41", "51.254.83.80", "5");
INSERT INTO `wp_gf_form_view` VALUES("17297", "3", "2015-09-19 13:09:24", "188.165.15.177", "75");
INSERT INTO `wp_gf_form_view` VALUES("17298", "9", "2015-09-19 13:09:24", "188.165.15.177", "10");
INSERT INTO `wp_gf_form_view` VALUES("17299", "8", "2015-09-19 13:09:24", "188.165.15.177", "10");
INSERT INTO `wp_gf_form_view` VALUES("17300", "1", "2015-09-19 13:45:41", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("17301", "3", "2015-09-19 14:24:32", "66.249.79.162", "57");
INSERT INTO `wp_gf_form_view` VALUES("17302", "9", "2015-09-19 14:24:33", "66.249.79.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("17303", "8", "2015-09-19 14:24:33", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("17304", "3", "2015-09-19 15:00:23", "66.249.79.162", "154");
INSERT INTO `wp_gf_form_view` VALUES("17305", "9", "2015-09-19 15:00:23", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("17306", "8", "2015-09-19 15:00:24", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("17307", "3", "2015-09-19 16:02:43", "66.249.79.169", "57");
INSERT INTO `wp_gf_form_view` VALUES("17308", "9", "2015-09-19 16:02:43", "66.249.79.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("17309", "8", "2015-09-19 16:02:44", "66.249.79.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("17310", "2", "2015-09-19 16:12:11", "188.165.15.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("17311", "3", "2015-09-19 17:19:29", "188.165.15.177", "142");
INSERT INTO `wp_gf_form_view` VALUES("17312", "9", "2015-09-19 17:19:29", "188.165.15.177", "17");
INSERT INTO `wp_gf_form_view` VALUES("17313", "8", "2015-09-19 17:19:29", "188.165.15.177", "17");
INSERT INTO `wp_gf_form_view` VALUES("17314", "3", "2015-09-19 18:19:31", "208.115.111.66", "24");
INSERT INTO `wp_gf_form_view` VALUES("17315", "9", "2015-09-19 18:19:32", "208.115.111.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("17316", "8", "2015-09-19 18:19:32", "208.115.111.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("17317", "3", "2015-09-19 19:02:12", "66.249.79.155", "93");
INSERT INTO `wp_gf_form_view` VALUES("17318", "9", "2015-09-19 19:02:12", "66.249.79.155", "12");
INSERT INTO `wp_gf_form_view` VALUES("17319", "8", "2015-09-19 19:02:12", "66.249.79.155", "13");
INSERT INTO `wp_gf_form_view` VALUES("17320", "8", "2015-09-19 20:18:27", "188.165.15.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("17321", "3", "2015-09-19 20:18:27", "188.165.15.177", "68");
INSERT INTO `wp_gf_form_view` VALUES("17322", "9", "2015-09-19 20:18:27", "188.165.15.177", "7");
INSERT INTO `wp_gf_form_view` VALUES("17323", "3", "2015-09-19 21:01:45", "68.180.229.161", "108");
INSERT INTO `wp_gf_form_view` VALUES("17324", "9", "2015-09-19 21:01:45", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("17325", "8", "2015-09-19 21:01:46", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("17326", "1", "2015-09-19 21:10:51", "91.200.12.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("17327", "3", "2015-09-19 22:00:50", "180.180.66.28", "107");
INSERT INTO `wp_gf_form_view` VALUES("17328", "9", "2015-09-19 22:00:50", "180.180.66.28", "13");
INSERT INTO `wp_gf_form_view` VALUES("17329", "8", "2015-09-19 22:00:50", "180.180.66.28", "13");
INSERT INTO `wp_gf_form_view` VALUES("17330", "1", "2015-09-19 22:26:28", "91.200.12.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("17331", "3", "2015-09-19 23:07:50", "68.180.229.161", "75");
INSERT INTO `wp_gf_form_view` VALUES("17332", "9", "2015-09-19 23:07:50", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("17333", "8", "2015-09-19 23:07:50", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("17334", "3", "2015-09-20 00:04:32", "207.46.13.46", "107");
INSERT INTO `wp_gf_form_view` VALUES("17335", "9", "2015-09-20 00:04:32", "207.46.13.46", "13");
INSERT INTO `wp_gf_form_view` VALUES("17336", "8", "2015-09-20 00:04:32", "207.46.13.46", "13");
INSERT INTO `wp_gf_form_view` VALUES("17337", "3", "2015-09-20 01:16:18", "136.243.5.87", "62");
INSERT INTO `wp_gf_form_view` VALUES("17338", "9", "2015-09-20 01:16:18", "136.243.5.87", "9");
INSERT INTO `wp_gf_form_view` VALUES("17339", "8", "2015-09-20 01:16:19", "136.243.5.87", "8");
INSERT INTO `wp_gf_form_view` VALUES("17340", "3", "2015-09-20 02:03:42", "157.55.39.97", "86");
INSERT INTO `wp_gf_form_view` VALUES("17341", "9", "2015-09-20 02:03:42", "157.55.39.97", "10");
INSERT INTO `wp_gf_form_view` VALUES("17342", "8", "2015-09-20 02:03:42", "157.55.39.97", "10");
INSERT INTO `wp_gf_form_view` VALUES("17343", "3", "2015-09-20 03:05:21", "66.249.79.169", "34");
INSERT INTO `wp_gf_form_view` VALUES("17344", "9", "2015-09-20 03:05:21", "66.249.79.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("17345", "8", "2015-09-20 03:05:21", "66.249.79.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("17346", "3", "2015-09-20 04:22:01", "208.115.111.66", "26");
INSERT INTO `wp_gf_form_view` VALUES("17347", "9", "2015-09-20 04:22:01", "208.115.111.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("17348", "8", "2015-09-20 04:22:01", "208.115.111.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("17349", "3", "2015-09-20 05:04:02", "207.46.13.46", "50");
INSERT INTO `wp_gf_form_view` VALUES("17350", "9", "2015-09-20 05:04:02", "207.46.13.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("17351", "8", "2015-09-20 05:04:02", "207.46.13.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("17352", "6", "2015-09-20 05:21:56", "157.55.39.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("17353", "3", "2015-09-20 06:17:57", "216.244.81.34", "65");
INSERT INTO `wp_gf_form_view` VALUES("17354", "9", "2015-09-20 06:17:58", "216.244.81.34", "8");
INSERT INTO `wp_gf_form_view` VALUES("17355", "8", "2015-09-20 06:17:58", "216.244.81.34", "8");
INSERT INTO `wp_gf_form_view` VALUES("17356", "3", "2015-09-20 07:10:52", "68.180.229.161", "34");
INSERT INTO `wp_gf_form_view` VALUES("17357", "9", "2015-09-20 07:10:53", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("17358", "8", "2015-09-20 07:10:53", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("17359", "3", "2015-09-20 08:05:18", "188.165.15.177", "50");
INSERT INTO `wp_gf_form_view` VALUES("17360", "9", "2015-09-20 08:05:19", "188.165.15.177", "7");
INSERT INTO `wp_gf_form_view` VALUES("17361", "8", "2015-09-20 08:05:19", "188.165.15.177", "7");
INSERT INTO `wp_gf_form_view` VALUES("17362", "3", "2015-09-20 10:11:22", "86.106.18.11", "72");
INSERT INTO `wp_gf_form_view` VALUES("17363", "9", "2015-09-20 10:11:23", "86.106.18.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("17364", "8", "2015-09-20 10:11:23", "86.106.18.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("17365", "2", "2015-09-20 10:58:55", "112.111.185.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("17366", "3", "2015-09-20 11:07:36", "188.165.15.177", "16");
INSERT INTO `wp_gf_form_view` VALUES("17367", "9", "2015-09-20 11:07:36", "188.165.15.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("17368", "8", "2015-09-20 11:07:36", "188.165.15.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("17369", "3", "2015-09-20 12:33:23", "157.55.39.245", "41");
INSERT INTO `wp_gf_form_view` VALUES("17370", "9", "2015-09-20 12:33:24", "157.55.39.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("17371", "8", "2015-09-20 12:33:24", "157.55.39.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("17372", "3", "2015-09-20 13:01:29", "188.165.15.177", "49");
INSERT INTO `wp_gf_form_view` VALUES("17373", "9", "2015-09-20 13:01:29", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17374", "8", "2015-09-20 13:01:29", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17375", "3", "2015-09-20 14:01:00", "66.249.79.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("17376", "9", "2015-09-20 14:01:00", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("17377", "8", "2015-09-20 14:01:00", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("17378", "3", "2015-09-20 15:03:16", "66.249.79.162", "45");
INSERT INTO `wp_gf_form_view` VALUES("17379", "9", "2015-09-20 15:19:20", "91.200.12.39", "5");
INSERT INTO `wp_gf_form_view` VALUES("17380", "8", "2015-09-20 15:19:21", "91.200.12.39", "5");
INSERT INTO `wp_gf_form_view` VALUES("17381", "3", "2015-09-20 16:13:52", "66.249.79.155", "18");
INSERT INTO `wp_gf_form_view` VALUES("17382", "9", "2015-09-20 16:13:52", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("17383", "8", "2015-09-20 16:13:52", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("17384", "3", "2015-09-20 17:27:22", "68.180.229.161", "56");
INSERT INTO `wp_gf_form_view` VALUES("17385", "9", "2015-09-20 17:27:24", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("17386", "8", "2015-09-20 17:27:24", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("17387", "3", "2015-09-20 18:14:25", "207.46.13.107", "16");
INSERT INTO `wp_gf_form_view` VALUES("17388", "9", "2015-09-20 18:14:26", "207.46.13.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("17389", "8", "2015-09-20 18:14:26", "207.46.13.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("17390", "3", "2015-09-20 20:14:57", "66.249.79.155", "147");
INSERT INTO `wp_gf_form_view` VALUES("17391", "9", "2015-09-20 20:16:12", "75.156.98.187", "19");
INSERT INTO `wp_gf_form_view` VALUES("17392", "8", "2015-09-20 20:16:12", "75.156.98.187", "18");
INSERT INTO `wp_gf_form_view` VALUES("17393", "3", "2015-09-20 21:30:54", "188.165.15.177", "26");
INSERT INTO `wp_gf_form_view` VALUES("17394", "9", "2015-09-20 21:30:55", "188.165.15.177", "4");
INSERT INTO `wp_gf_form_view` VALUES("17395", "8", "2015-09-20 21:30:55", "188.165.15.177", "4");
INSERT INTO `wp_gf_form_view` VALUES("17396", "1", "2015-09-20 22:18:14", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("17397", "3", "2015-09-20 22:18:14", "93.92.217.228", "114");
INSERT INTO `wp_gf_form_view` VALUES("17398", "9", "2015-09-20 22:18:14", "93.92.217.228", "15");
INSERT INTO `wp_gf_form_view` VALUES("17399", "8", "2015-09-20 22:18:14", "93.92.217.228", "15");
INSERT INTO `wp_gf_form_view` VALUES("17400", "2", "2015-09-20 22:18:22", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("17401", "3", "2015-09-20 23:02:48", "54.209.60.63", "24");
INSERT INTO `wp_gf_form_view` VALUES("17402", "9", "2015-09-20 23:02:48", "54.209.60.63", "3");
INSERT INTO `wp_gf_form_view` VALUES("17403", "8", "2015-09-20 23:02:49", "54.209.60.63", "3");
INSERT INTO `wp_gf_form_view` VALUES("17404", "6", "2015-09-20 23:04:49", "24.68.233.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("17405", "3", "2015-09-21 00:03:36", "188.165.15.177", "48");
INSERT INTO `wp_gf_form_view` VALUES("17406", "9", "2015-09-21 00:03:36", "188.165.15.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("17407", "8", "2015-09-21 00:03:37", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17408", "3", "2015-09-21 01:17:28", "207.46.13.123", "236");
INSERT INTO `wp_gf_form_view` VALUES("17409", "9", "2015-09-21 01:17:30", "207.46.13.123", "27");
INSERT INTO `wp_gf_form_view` VALUES("17410", "8", "2015-09-21 01:17:30", "207.46.13.123", "28");
INSERT INTO `wp_gf_form_view` VALUES("17411", "3", "2015-09-21 02:09:51", "188.165.15.177", "49");
INSERT INTO `wp_gf_form_view` VALUES("17412", "9", "2015-09-21 02:09:51", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17413", "8", "2015-09-21 02:09:51", "188.165.15.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("17414", "3", "2015-09-21 03:22:28", "208.115.113.83", "96");
INSERT INTO `wp_gf_form_view` VALUES("17415", "9", "2015-09-21 03:22:29", "208.115.113.83", "12");
INSERT INTO `wp_gf_form_view` VALUES("17416", "8", "2015-09-21 03:22:29", "208.115.113.83", "12");
INSERT INTO `wp_gf_form_view` VALUES("17417", "1", "2015-09-21 03:42:49", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("17418", "2", "2015-09-21 03:43:00", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("17419", "3", "2015-09-21 04:24:55", "46.246.63.42", "17");
INSERT INTO `wp_gf_form_view` VALUES("17420", "9", "2015-09-21 04:24:55", "46.246.63.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("17421", "8", "2015-09-21 04:24:56", "46.246.63.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("17422", "3", "2015-09-21 05:10:07", "66.249.79.169", "42");
INSERT INTO `wp_gf_form_view` VALUES("17423", "9", "2015-09-21 05:10:07", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("17424", "8", "2015-09-21 05:10:07", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("17425", "3", "2015-09-21 06:21:04", "208.115.111.66", "25");
INSERT INTO `wp_gf_form_view` VALUES("17426", "9", "2015-09-21 06:21:04", "208.115.111.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("17427", "8", "2015-09-21 06:21:04", "208.115.111.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("17428", "3", "2015-09-21 08:46:30", "27.151.100.131", "33");
INSERT INTO `wp_gf_form_view` VALUES("17429", "9", "2015-09-21 08:46:30", "27.151.100.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("17430", "8", "2015-09-21 08:46:31", "27.151.100.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("17431", "3", "2015-09-21 09:05:01", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("17432", "9", "2015-09-21 09:05:01", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("17433", "8", "2015-09-21 09:05:01", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("17434", "3", "2015-09-21 10:29:24", "182.52.47.160", "91");
INSERT INTO `wp_gf_form_view` VALUES("17435", "9", "2015-09-21 10:29:24", "182.52.47.160", "11");
INSERT INTO `wp_gf_form_view` VALUES("17436", "8", "2015-09-21 10:29:24", "182.52.47.160", "11");
INSERT INTO `wp_gf_form_view` VALUES("17437", "3", "2015-09-21 11:12:58", "207.46.13.107", "8");
INSERT INTO `wp_gf_form_view` VALUES("17438", "9", "2015-09-21 11:12:58", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("17439", "8", "2015-09-21 11:12:58", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("17440", "3", "2015-09-21 12:30:56", "207.46.13.107", "48");
INSERT INTO `wp_gf_form_view` VALUES("17441", "9", "2015-09-21 12:30:58", "207.46.13.107", "6");
INSERT INTO `wp_gf_form_view` VALUES("17442", "8", "2015-09-21 12:30:58", "207.46.13.107", "7");
INSERT INTO `wp_gf_form_view` VALUES("17443", "3", "2015-09-21 13:14:47", "91.200.12.128", "59");
INSERT INTO `wp_gf_form_view` VALUES("17444", "9", "2015-09-21 13:14:47", "91.200.12.128", "8");
INSERT INTO `wp_gf_form_view` VALUES("17445", "8", "2015-09-21 13:14:47", "91.200.12.128", "8");
INSERT INTO `wp_gf_form_view` VALUES("17446", "3", "2015-09-21 14:15:41", "68.180.229.161", "110");
INSERT INTO `wp_gf_form_view` VALUES("17447", "9", "2015-09-21 14:15:41", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("17448", "8", "2015-09-21 14:15:41", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("17449", "3", "2015-09-21 15:50:55", "180.180.77.192", "8");
INSERT INTO `wp_gf_form_view` VALUES("17450", "9", "2015-09-21 15:50:56", "180.180.77.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("17451", "8", "2015-09-21 15:50:56", "180.180.77.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("17452", "3", "2015-09-21 16:23:18", "104.143.28.153", "8");
INSERT INTO `wp_gf_form_view` VALUES("17453", "9", "2015-09-21 16:23:18", "104.143.28.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("17454", "8", "2015-09-21 16:23:18", "104.143.28.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("17455", "3", "2015-09-21 17:14:11", "24.108.96.79", "32");
INSERT INTO `wp_gf_form_view` VALUES("17456", "9", "2015-09-21 17:14:13", "24.108.96.79", "4");
INSERT INTO `wp_gf_form_view` VALUES("17457", "8", "2015-09-21 17:14:13", "24.108.96.79", "5");
INSERT INTO `wp_gf_form_view` VALUES("17458", "3", "2015-09-21 18:13:29", "68.180.229.161", "89");
INSERT INTO `wp_gf_form_view` VALUES("17459", "9", "2015-09-21 18:13:29", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("17460", "8", "2015-09-21 18:13:29", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("17461", "3", "2015-09-21 19:20:45", "96.50.67.34", "40");
INSERT INTO `wp_gf_form_view` VALUES("17462", "9", "2015-09-21 19:20:45", "96.50.67.34", "5");
INSERT INTO `wp_gf_form_view` VALUES("17463", "8", "2015-09-21 19:20:46", "96.50.67.34", "5");
INSERT INTO `wp_gf_form_view` VALUES("17464", "3", "2015-09-21 20:27:40", "184.69.9.58", "105");
INSERT INTO `wp_gf_form_view` VALUES("17465", "9", "2015-09-21 20:27:40", "184.69.9.58", "13");
INSERT INTO `wp_gf_form_view` VALUES("17466", "8", "2015-09-21 20:27:40", "184.69.9.58", "13");
INSERT INTO `wp_gf_form_view` VALUES("17467", "3", "2015-09-21 21:29:43", "207.46.13.97", "32");
INSERT INTO `wp_gf_form_view` VALUES("17468", "9", "2015-09-21 21:29:43", "207.46.13.97", "5");
INSERT INTO `wp_gf_form_view` VALUES("17469", "8", "2015-09-21 21:29:44", "207.46.13.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("17470", "3", "2015-09-21 22:02:12", "68.180.229.161", "51");
INSERT INTO `wp_gf_form_view` VALUES("17471", "9", "2015-09-21 22:02:12", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("17472", "8", "2015-09-21 22:02:13", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("17473", "3", "2015-09-21 23:22:52", "180.180.99.160", "105");
INSERT INTO `wp_gf_form_view` VALUES("17474", "9", "2015-09-21 23:22:52", "180.180.99.160", "13");
INSERT INTO `wp_gf_form_view` VALUES("17475", "8", "2015-09-21 23:22:52", "180.180.99.160", "13");
INSERT INTO `wp_gf_form_view` VALUES("17476", "1", "2015-09-21 23:42:43", "184.69.1.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("17477", "3", "2015-09-22 00:05:42", "157.55.39.43", "147");
INSERT INTO `wp_gf_form_view` VALUES("17478", "9", "2015-09-22 00:05:43", "157.55.39.43", "19");
INSERT INTO `wp_gf_form_view` VALUES("17479", "8", "2015-09-22 00:05:43", "157.55.39.43", "18");
INSERT INTO `wp_gf_form_view` VALUES("17480", "3", "2015-09-22 01:01:31", "96.54.167.1", "64");
INSERT INTO `wp_gf_form_view` VALUES("17481", "9", "2015-09-22 01:01:32", "96.54.167.1", "8");
INSERT INTO `wp_gf_form_view` VALUES("17482", "8", "2015-09-22 01:01:32", "96.54.167.1", "8");
INSERT INTO `wp_gf_form_view` VALUES("17483", "1", "2015-09-22 01:02:10", "96.54.167.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("17484", "3", "2015-09-22 02:05:49", "91.200.12.39", "100");
INSERT INTO `wp_gf_form_view` VALUES("17485", "9", "2015-09-22 02:05:50", "91.200.12.39", "13");
INSERT INTO `wp_gf_form_view` VALUES("17486", "8", "2015-09-22 02:05:50", "91.200.12.39", "13");
INSERT INTO `wp_gf_form_view` VALUES("17487", "3", "2015-09-22 03:13:09", "68.180.229.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("17488", "9", "2015-09-22 03:23:02", "208.115.113.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("17489", "8", "2015-09-22 03:23:02", "208.115.113.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("17490", "3", "2015-09-22 04:00:13", "199.21.99.202", "34");
INSERT INTO `wp_gf_form_view` VALUES("17491", "9", "2015-09-22 04:00:14", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("17492", "8", "2015-09-22 04:00:14", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("17493", "7", "2015-09-22 05:01:32", "157.55.39.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("17494", "3", "2015-09-22 05:01:33", "157.55.39.42", "32");
INSERT INTO `wp_gf_form_view` VALUES("17495", "9", "2015-09-22 05:01:33", "157.55.39.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("17496", "8", "2015-09-22 05:01:33", "157.55.39.42", "5");
INSERT INTO `wp_gf_form_view` VALUES("17497", "3", "2015-09-22 06:18:54", "91.200.12.128", "26");
INSERT INTO `wp_gf_form_view` VALUES("17498", "9", "2015-09-22 06:18:54", "91.200.12.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("17499", "8", "2015-09-22 06:18:55", "91.200.12.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("17500", "3", "2015-09-22 07:39:12", "207.46.13.119", "17");
INSERT INTO `wp_gf_form_view` VALUES("17501", "9", "2015-09-22 07:39:13", "207.46.13.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("17502", "8", "2015-09-22 07:39:13", "207.46.13.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("17503", "3", "2015-09-22 08:22:13", "208.115.111.66", "64");
INSERT INTO `wp_gf_form_view` VALUES("17504", "9", "2015-09-22 08:22:14", "208.115.111.66", "8");
INSERT INTO `wp_gf_form_view` VALUES("17505", "8", "2015-09-22 08:22:14", "208.115.111.66", "8");
INSERT INTO `wp_gf_form_view` VALUES("17506", "3", "2015-09-22 09:01:27", "66.249.79.155", "104");
INSERT INTO `wp_gf_form_view` VALUES("17507", "9", "2015-09-22 09:01:27", "66.249.79.155", "12");
INSERT INTO `wp_gf_form_view` VALUES("17508", "8", "2015-09-22 09:01:27", "66.249.79.155", "14");
INSERT INTO `wp_gf_form_view` VALUES("17509", "2", "2015-09-22 09:26:29", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17510", "3", "2015-09-22 10:00:40", "220.181.108.88", "58");
INSERT INTO `wp_gf_form_view` VALUES("17511", "9", "2015-09-22 10:00:40", "220.181.108.88", "7");
INSERT INTO `wp_gf_form_view` VALUES("17512", "8", "2015-09-22 10:00:40", "220.181.108.88", "7");
INSERT INTO `wp_gf_form_view` VALUES("17513", "6", "2015-09-22 10:28:08", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17514", "3", "2015-09-22 11:02:43", "66.249.79.162", "113");
INSERT INTO `wp_gf_form_view` VALUES("17515", "9", "2015-09-22 11:02:44", "66.249.79.162", "14");
INSERT INTO `wp_gf_form_view` VALUES("17516", "8", "2015-09-22 11:02:44", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("17517", "1", "2015-09-22 11:21:24", "91.200.12.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("17518", "3", "2015-09-22 12:02:51", "66.249.79.162", "64");
INSERT INTO `wp_gf_form_view` VALUES("17519", "9", "2015-09-22 12:02:52", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("17520", "8", "2015-09-22 12:02:52", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("17521", "3", "2015-09-22 13:05:01", "66.249.79.169", "306");
INSERT INTO `wp_gf_form_view` VALUES("17522", "9", "2015-09-22 13:05:01", "66.249.79.169", "38");
INSERT INTO `wp_gf_form_view` VALUES("17523", "8", "2015-09-22 13:05:02", "66.249.79.169", "38");
INSERT INTO `wp_gf_form_view` VALUES("17524", "1", "2015-09-22 13:24:31", "50.199.171.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("17525", "2", "2015-09-22 13:24:43", "50.199.171.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("17526", "3", "2015-09-22 14:02:35", "157.55.39.139", "24");
INSERT INTO `wp_gf_form_view` VALUES("17527", "9", "2015-09-22 14:02:35", "157.55.39.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("17528", "8", "2015-09-22 14:02:35", "157.55.39.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("17529", "3", "2015-09-22 15:17:47", "46.246.40.170", "75");
INSERT INTO `wp_gf_form_view` VALUES("17530", "9", "2015-09-22 15:17:48", "46.246.40.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("17531", "8", "2015-09-22 15:17:48", "46.246.40.170", "9");
INSERT INTO `wp_gf_form_view` VALUES("17532", "3", "2015-09-22 16:09:44", "67.248.28.8", "57");
INSERT INTO `wp_gf_form_view` VALUES("17533", "9", "2015-09-22 16:09:44", "67.248.28.8", "7");
INSERT INTO `wp_gf_form_view` VALUES("17534", "8", "2015-09-22 16:09:45", "67.248.28.8", "7");
INSERT INTO `wp_gf_form_view` VALUES("17535", "3", "2015-09-22 17:00:07", "154.5.144.231", "207");
INSERT INTO `wp_gf_form_view` VALUES("17536", "9", "2015-09-22 17:00:07", "154.5.144.231", "24");
INSERT INTO `wp_gf_form_view` VALUES("17537", "8", "2015-09-22 17:00:07", "154.5.144.231", "24");
INSERT INTO `wp_gf_form_view` VALUES("17538", "1", "2015-09-22 17:08:17", "184.66.129.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("17539", "3", "2015-09-22 18:03:38", "66.249.79.169", "114");
INSERT INTO `wp_gf_form_view` VALUES("17540", "9", "2015-09-22 18:03:38", "66.249.79.169", "16");
INSERT INTO `wp_gf_form_view` VALUES("17541", "8", "2015-09-22 18:03:38", "66.249.79.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("17542", "3", "2015-09-22 19:10:44", "212.225.173.135", "281");
INSERT INTO `wp_gf_form_view` VALUES("17543", "9", "2015-09-22 19:10:45", "212.225.173.135", "35");
INSERT INTO `wp_gf_form_view` VALUES("17544", "8", "2015-09-22 19:10:45", "212.225.173.135", "35");
INSERT INTO `wp_gf_form_view` VALUES("17545", "1", "2015-09-22 19:11:56", "212.225.173.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("17546", "2", "2015-09-22 19:12:06", "212.225.173.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("17547", "3", "2015-09-22 20:05:18", "207.46.13.13", "58");
INSERT INTO `wp_gf_form_view` VALUES("17548", "9", "2015-09-22 20:05:18", "207.46.13.13", "7");
INSERT INTO `wp_gf_form_view` VALUES("17549", "8", "2015-09-22 20:05:18", "207.46.13.13", "7");
INSERT INTO `wp_gf_form_view` VALUES("17550", "3", "2015-09-22 21:02:34", "66.43.60.8", "33");
INSERT INTO `wp_gf_form_view` VALUES("17551", "9", "2015-09-22 21:02:35", "66.43.60.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("17552", "8", "2015-09-22 21:02:35", "66.43.60.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("17553", "3", "2015-09-22 22:04:38", "66.249.79.162", "90");
INSERT INTO `wp_gf_form_view` VALUES("17554", "9", "2015-09-22 22:04:38", "66.249.79.162", "13");
INSERT INTO `wp_gf_form_view` VALUES("17555", "8", "2015-09-22 22:04:39", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("17556", "3", "2015-09-22 23:43:44", "96.54.196.86", "41");
INSERT INTO `wp_gf_form_view` VALUES("17557", "9", "2015-09-22 23:43:45", "96.54.196.86", "5");
INSERT INTO `wp_gf_form_view` VALUES("17558", "8", "2015-09-22 23:43:45", "96.54.196.86", "5");
INSERT INTO `wp_gf_form_view` VALUES("17559", "3", "2015-09-23 00:33:41", "96.54.192.151", "50");
INSERT INTO `wp_gf_form_view` VALUES("17560", "9", "2015-09-23 00:33:41", "96.54.192.151", "7");
INSERT INTO `wp_gf_form_view` VALUES("17561", "8", "2015-09-23 00:33:42", "96.54.192.151", "7");
INSERT INTO `wp_gf_form_view` VALUES("17562", "1", "2015-09-23 00:37:33", "62.210.178.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("17563", "3", "2015-09-23 01:00:22", "108.180.144.141", "215");
INSERT INTO `wp_gf_form_view` VALUES("17564", "9", "2015-09-23 01:00:22", "108.180.144.141", "26");
INSERT INTO `wp_gf_form_view` VALUES("17565", "8", "2015-09-23 01:00:22", "108.180.144.141", "26");
INSERT INTO `wp_gf_form_view` VALUES("17566", "3", "2015-09-23 02:07:57", "66.249.79.162", "33");
INSERT INTO `wp_gf_form_view` VALUES("17567", "9", "2015-09-23 02:07:57", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("17568", "8", "2015-09-23 02:07:57", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("17569", "3", "2015-09-23 03:13:15", "27.151.100.131", "74");
INSERT INTO `wp_gf_form_view` VALUES("17570", "9", "2015-09-23 03:13:15", "27.151.100.131", "10");
INSERT INTO `wp_gf_form_view` VALUES("17571", "8", "2015-09-23 03:13:16", "27.151.100.131", "10");
INSERT INTO `wp_gf_form_view` VALUES("17572", "3", "2015-09-23 04:00:24", "5.9.17.118", "96");
INSERT INTO `wp_gf_form_view` VALUES("17573", "9", "2015-09-23 04:00:24", "5.9.17.118", "12");
INSERT INTO `wp_gf_form_view` VALUES("17574", "8", "2015-09-23 04:00:24", "5.9.17.118", "12");
INSERT INTO `wp_gf_form_view` VALUES("17575", "1", "2015-09-23 05:14:26", "112.111.185.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("17576", "3", "2015-09-23 05:14:26", "112.111.185.94", "56");
INSERT INTO `wp_gf_form_view` VALUES("17577", "9", "2015-09-23 05:14:27", "112.111.185.94", "7");
INSERT INTO `wp_gf_form_view` VALUES("17578", "8", "2015-09-23 05:14:27", "112.111.185.94", "7");
INSERT INTO `wp_gf_form_view` VALUES("17579", "3", "2015-09-23 06:29:50", "207.46.13.128", "50");
INSERT INTO `wp_gf_form_view` VALUES("17580", "9", "2015-09-23 06:29:52", "207.46.13.128", "6");
INSERT INTO `wp_gf_form_view` VALUES("17581", "8", "2015-09-23 06:29:52", "207.46.13.128", "6");
INSERT INTO `wp_gf_form_view` VALUES("17582", "3", "2015-09-23 07:23:27", "68.180.229.161", "56");
INSERT INTO `wp_gf_form_view` VALUES("17583", "9", "2015-09-23 07:23:28", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("17584", "8", "2015-09-23 07:23:28", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("17585", "3", "2015-09-23 08:03:01", "91.200.12.116", "150");
INSERT INTO `wp_gf_form_view` VALUES("17586", "3", "2015-09-23 08:03:01", "91.200.12.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("17587", "3", "2015-09-23 08:03:01", "91.200.12.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("17588", "9", "2015-09-23 08:03:01", "91.200.12.116", "19");
INSERT INTO `wp_gf_form_view` VALUES("17589", "8", "2015-09-23 08:03:01", "91.200.12.116", "17");
INSERT INTO `wp_gf_form_view` VALUES("17590", "8", "2015-09-23 08:03:01", "91.200.12.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("17591", "8", "2015-09-23 08:03:01", "91.200.12.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("17592", "3", "2015-09-23 09:13:23", "157.55.39.170", "54");
INSERT INTO `wp_gf_form_view` VALUES("17593", "8", "2015-09-23 09:13:23", "157.55.39.170", "7");
INSERT INTO `wp_gf_form_view` VALUES("17594", "9", "2015-09-23 09:13:24", "157.55.39.170", "6");
INSERT INTO `wp_gf_form_view` VALUES("17595", "1", "2015-09-23 09:29:10", "31.184.238.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("17596", "3", "2015-09-23 10:09:26", "157.55.39.128", "47");
INSERT INTO `wp_gf_form_view` VALUES("17597", "8", "2015-09-23 10:09:27", "157.55.39.128", "6");
INSERT INTO `wp_gf_form_view` VALUES("17598", "9", "2015-09-23 10:09:28", "157.55.39.128", "5");
INSERT INTO `wp_gf_form_view` VALUES("17599", "3", "2015-09-23 11:55:25", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("17600", "9", "2015-09-23 11:58:45", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("17601", "8", "2015-09-23 11:58:45", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("17602", "3", "2015-09-23 12:16:33", "27.151.100.131", "123");
INSERT INTO `wp_gf_form_view` VALUES("17603", "9", "2015-09-23 12:16:33", "27.151.100.131", "15");
INSERT INTO `wp_gf_form_view` VALUES("17604", "8", "2015-09-23 12:16:33", "27.151.100.131", "15");
INSERT INTO `wp_gf_form_view` VALUES("17605", "3", "2015-09-23 13:00:40", "199.21.99.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("17606", "9", "2015-09-23 13:00:40", "199.21.99.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("17607", "8", "2015-09-23 13:00:41", "199.21.99.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("17608", "3", "2015-09-23 14:11:14", "1.0.181.8", "33");
INSERT INTO `wp_gf_form_view` VALUES("17609", "9", "2015-09-23 14:11:15", "1.0.181.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("17610", "8", "2015-09-23 14:11:15", "1.0.181.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("17611", "3", "2015-09-23 15:27:31", "68.180.229.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("17612", "9", "2015-09-23 15:27:32", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("17613", "8", "2015-09-23 15:27:32", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("17614", "3", "2015-09-23 16:09:05", "27.151.100.131", "316");
INSERT INTO `wp_gf_form_view` VALUES("17615", "9", "2015-09-23 16:09:06", "27.151.100.131", "39");
INSERT INTO `wp_gf_form_view` VALUES("17616", "8", "2015-09-23 16:09:06", "27.151.100.131", "39");
INSERT INTO `wp_gf_form_view` VALUES("17617", "1", "2015-09-23 16:43:51", "86.123.241.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("17618", "2", "2015-09-23 16:43:59", "86.123.241.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("17619", "3", "2015-09-23 17:07:29", "66.249.79.162", "74");
INSERT INTO `wp_gf_form_view` VALUES("17620", "9", "2015-09-23 17:07:30", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17621", "8", "2015-09-23 17:07:30", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17622", "1", "2015-09-23 17:44:41", "104.223.17.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("17623", "1", "2015-09-23 18:04:08", "91.200.12.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("17624", "3", "2015-09-23 18:04:09", "91.200.12.95", "40");
INSERT INTO `wp_gf_form_view` VALUES("17625", "9", "2015-09-23 18:04:09", "91.200.12.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("17626", "8", "2015-09-23 18:04:09", "91.200.12.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("17627", "3", "2015-09-23 19:06:23", "142.36.207.243", "116");
INSERT INTO `wp_gf_form_view` VALUES("17628", "9", "2015-09-23 19:06:25", "142.36.207.243", "14");
INSERT INTO `wp_gf_form_view` VALUES("17629", "8", "2015-09-23 19:06:25", "142.36.207.243", "14");
INSERT INTO `wp_gf_form_view` VALUES("17630", "3", "2015-09-23 20:11:39", "157.55.39.29", "80");
INSERT INTO `wp_gf_form_view` VALUES("17631", "9", "2015-09-23 20:11:41", "157.55.39.29", "10");
INSERT INTO `wp_gf_form_view` VALUES("17632", "8", "2015-09-23 20:11:41", "157.55.39.29", "10");
INSERT INTO `wp_gf_form_view` VALUES("17633", "1", "2015-09-23 20:29:29", "27.159.230.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("17634", "3", "2015-09-23 21:08:23", "24.108.148.74", "96");
INSERT INTO `wp_gf_form_view` VALUES("17635", "9", "2015-09-23 21:08:24", "24.108.148.74", "12");
INSERT INTO `wp_gf_form_view` VALUES("17636", "8", "2015-09-23 21:08:24", "24.108.148.74", "12");
INSERT INTO `wp_gf_form_view` VALUES("17637", "3", "2015-09-23 22:04:38", "66.249.79.155", "64");
INSERT INTO `wp_gf_form_view` VALUES("17638", "9", "2015-09-23 22:04:39", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("17639", "8", "2015-09-23 22:04:39", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("17640", "3", "2015-09-23 23:00:09", "207.46.13.127", "80");
INSERT INTO `wp_gf_form_view` VALUES("17641", "9", "2015-09-23 23:00:09", "207.46.13.127", "10");
INSERT INTO `wp_gf_form_view` VALUES("17642", "8", "2015-09-23 23:00:10", "207.46.13.127", "11");
INSERT INTO `wp_gf_form_view` VALUES("17643", "3", "2015-09-24 00:04:26", "66.249.79.162", "42");
INSERT INTO `wp_gf_form_view` VALUES("17644", "9", "2015-09-24 00:04:27", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("17645", "8", "2015-09-24 00:04:27", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("17646", "3", "2015-09-24 01:04:21", "66.249.79.155", "41");
INSERT INTO `wp_gf_form_view` VALUES("17647", "9", "2015-09-24 01:04:22", "66.249.79.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("17648", "8", "2015-09-24 01:04:22", "66.249.79.155", "6");
INSERT INTO `wp_gf_form_view` VALUES("17649", "9", "2015-09-24 02:08:01", "209.52.88.51", "10");
INSERT INTO `wp_gf_form_view` VALUES("17650", "3", "2015-09-24 02:08:01", "209.52.88.51", "74");
INSERT INTO `wp_gf_form_view` VALUES("17651", "8", "2015-09-24 02:08:01", "209.52.88.51", "9");
INSERT INTO `wp_gf_form_view` VALUES("17652", "3", "2015-09-24 03:00:48", "66.249.79.162", "40");
INSERT INTO `wp_gf_form_view` VALUES("17653", "9", "2015-09-24 03:00:48", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("17654", "8", "2015-09-24 03:00:49", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("17655", "1", "2015-09-24 03:15:27", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("17656", "3", "2015-09-24 04:03:51", "66.249.79.162", "73");
INSERT INTO `wp_gf_form_view` VALUES("17657", "9", "2015-09-24 04:03:51", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("17658", "8", "2015-09-24 04:03:51", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("17659", "7", "2015-09-24 04:30:04", "46.246.63.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("17660", "3", "2015-09-24 05:00:11", "24.69.52.196", "283");
INSERT INTO `wp_gf_form_view` VALUES("17661", "9", "2015-09-24 05:00:11", "24.69.52.196", "35");
INSERT INTO `wp_gf_form_view` VALUES("17662", "8", "2015-09-24 05:00:12", "24.69.52.196", "36");
INSERT INTO `wp_gf_form_view` VALUES("17663", "1", "2015-09-24 05:04:38", "107.189.36.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("17664", "3", "2015-09-24 06:37:44", "66.249.79.162", "33");
INSERT INTO `wp_gf_form_view` VALUES("17665", "9", "2015-09-24 06:37:45", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("17666", "8", "2015-09-24 06:37:45", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("17667", "3", "2015-09-24 07:10:50", "66.249.79.162", "81");
INSERT INTO `wp_gf_form_view` VALUES("17668", "9", "2015-09-24 07:10:50", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17669", "8", "2015-09-24 07:10:50", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17670", "1", "2015-09-24 07:32:13", "104.155.71.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("17671", "3", "2015-09-24 08:06:23", "66.249.79.155", "72");
INSERT INTO `wp_gf_form_view` VALUES("17672", "9", "2015-09-24 08:06:23", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("17673", "8", "2015-09-24 08:06:24", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("17674", "3", "2015-09-24 09:05:06", "157.55.39.28", "57");
INSERT INTO `wp_gf_form_view` VALUES("17675", "9", "2015-09-24 09:05:07", "157.55.39.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("17676", "8", "2015-09-24 09:05:07", "157.55.39.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("17677", "3", "2015-09-24 10:01:55", "91.200.12.128", "99");
INSERT INTO `wp_gf_form_view` VALUES("17678", "9", "2015-09-24 10:01:56", "91.200.12.128", "13");
INSERT INTO `wp_gf_form_view` VALUES("17679", "8", "2015-09-24 10:01:56", "91.200.12.128", "13");
INSERT INTO `wp_gf_form_view` VALUES("17680", "3", "2015-09-24 11:24:43", "199.217.117.207", "42");
INSERT INTO `wp_gf_form_view` VALUES("17681", "9", "2015-09-24 11:24:44", "199.217.117.207", "5");
INSERT INTO `wp_gf_form_view` VALUES("17682", "8", "2015-09-24 11:24:45", "199.217.117.207", "6");
INSERT INTO `wp_gf_form_view` VALUES("17683", "3", "2015-09-24 12:08:36", "66.249.79.169", "75");
INSERT INTO `wp_gf_form_view` VALUES("17684", "9", "2015-09-24 12:08:36", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("17685", "8", "2015-09-24 12:08:36", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("17686", "3", "2015-09-24 13:08:01", "66.249.79.162", "73");
INSERT INTO `wp_gf_form_view` VALUES("17687", "9", "2015-09-24 13:08:01", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("17688", "8", "2015-09-24 13:08:01", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("17689", "3", "2015-09-24 14:10:51", "157.55.39.229", "68");
INSERT INTO `wp_gf_form_view` VALUES("17690", "9", "2015-09-24 14:10:52", "157.55.39.229", "10");
INSERT INTO `wp_gf_form_view` VALUES("17691", "8", "2015-09-24 14:10:52", "157.55.39.229", "10");
INSERT INTO `wp_gf_form_view` VALUES("17692", "9", "2015-09-24 15:06:50", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("17693", "3", "2015-09-24 15:06:50", "66.249.79.169", "72");
INSERT INTO `wp_gf_form_view` VALUES("17694", "8", "2015-09-24 15:06:51", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("17695", "1", "2015-09-24 15:12:08", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("17696", "2", "2015-09-24 15:12:08", "107.150.42.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("17697", "3", "2015-09-24 16:15:53", "24.108.91.239", "112");
INSERT INTO `wp_gf_form_view` VALUES("17698", "9", "2015-09-24 16:15:54", "24.108.91.239", "16");
INSERT INTO `wp_gf_form_view` VALUES("17699", "8", "2015-09-24 16:15:55", "24.108.91.239", "16");
INSERT INTO `wp_gf_form_view` VALUES("17700", "1", "2015-09-24 16:36:07", "96.54.167.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("17701", "3", "2015-09-24 17:08:45", "66.249.79.169", "16");
INSERT INTO `wp_gf_form_view` VALUES("17702", "9", "2015-09-24 17:08:46", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("17703", "8", "2015-09-24 17:08:46", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("17704", "9", "2015-09-24 18:12:38", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("17705", "3", "2015-09-24 18:12:38", "66.249.79.162", "90");
INSERT INTO `wp_gf_form_view` VALUES("17706", "8", "2015-09-24 18:12:38", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("17707", "1", "2015-09-24 18:14:45", "62.210.178.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("17708", "3", "2015-09-24 19:03:27", "172.218.194.135", "49");
INSERT INTO `wp_gf_form_view` VALUES("17709", "9", "2015-09-24 19:03:27", "172.218.194.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("17710", "8", "2015-09-24 19:03:27", "172.218.194.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("17711", "3", "2015-09-24 20:07:29", "104.236.211.136", "226");
INSERT INTO `wp_gf_form_view` VALUES("17712", "1", "2015-09-24 20:07:29", "104.236.211.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("17713", "2", "2015-09-24 20:07:30", "104.236.211.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("17714", "9", "2015-09-24 20:07:31", "104.236.211.136", "27");
INSERT INTO `wp_gf_form_view` VALUES("17715", "9", "2015-09-24 20:07:31", "104.236.211.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("17716", "8", "2015-09-24 20:07:31", "104.236.211.136", "28");
INSERT INTO `wp_gf_form_view` VALUES("17717", "3", "2015-09-24 21:06:02", "107.150.42.226", "50");
INSERT INTO `wp_gf_form_view` VALUES("17718", "9", "2015-09-24 21:06:04", "107.150.42.226", "7");
INSERT INTO `wp_gf_form_view` VALUES("17719", "8", "2015-09-24 21:06:04", "107.150.42.226", "7");
INSERT INTO `wp_gf_form_view` VALUES("17720", "3", "2015-09-24 22:06:47", "96.54.32.241", "64");
INSERT INTO `wp_gf_form_view` VALUES("17721", "9", "2015-09-24 22:06:48", "96.54.32.241", "8");
INSERT INTO `wp_gf_form_view` VALUES("17722", "8", "2015-09-24 22:06:48", "96.54.32.241", "8");
INSERT INTO `wp_gf_form_view` VALUES("17723", "3", "2015-09-24 23:31:34", "24.69.59.84", "33");
INSERT INTO `wp_gf_form_view` VALUES("17724", "9", "2015-09-24 23:31:34", "24.69.59.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("17725", "8", "2015-09-24 23:31:34", "24.69.59.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("17726", "3", "2015-09-25 00:10:49", "54.209.60.63", "205");
INSERT INTO `wp_gf_form_view` VALUES("17727", "9", "2015-09-25 00:10:49", "54.209.60.63", "24");
INSERT INTO `wp_gf_form_view` VALUES("17728", "8", "2015-09-25 00:10:49", "54.209.60.63", "25");
INSERT INTO `wp_gf_form_view` VALUES("17729", "1", "2015-09-25 00:48:31", "184.66.114.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("17730", "3", "2015-09-25 02:27:06", "208.115.111.66", "24");
INSERT INTO `wp_gf_form_view` VALUES("17731", "9", "2015-09-25 02:27:06", "208.115.111.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("17732", "8", "2015-09-25 02:27:06", "208.115.111.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("17733", "3", "2015-09-25 03:06:07", "108.180.49.192", "48");
INSERT INTO `wp_gf_form_view` VALUES("17734", "9", "2015-09-25 03:06:07", "108.180.49.192", "6");
INSERT INTO `wp_gf_form_view` VALUES("17735", "8", "2015-09-25 03:06:07", "108.180.49.192", "6");
INSERT INTO `wp_gf_form_view` VALUES("17736", "3", "2015-09-25 04:21:58", "86.106.18.11", "134");
INSERT INTO `wp_gf_form_view` VALUES("17737", "9", "2015-09-25 04:21:59", "86.106.18.11", "16");
INSERT INTO `wp_gf_form_view` VALUES("17738", "8", "2015-09-25 04:21:59", "86.106.18.11", "16");
INSERT INTO `wp_gf_form_view` VALUES("17739", "3", "2015-09-25 05:17:05", "216.118.150.175", "25");
INSERT INTO `wp_gf_form_view` VALUES("17740", "9", "2015-09-25 05:17:05", "216.118.150.175", "3");
INSERT INTO `wp_gf_form_view` VALUES("17741", "8", "2015-09-25 05:17:05", "216.118.150.175", "3");
INSERT INTO `wp_gf_form_view` VALUES("17742", "3", "2015-09-25 06:05:26", "66.249.79.155", "56");
INSERT INTO `wp_gf_form_view` VALUES("17743", "9", "2015-09-25 06:05:26", "66.249.79.155", "7");
INSERT INTO `wp_gf_form_view` VALUES("17744", "8", "2015-09-25 06:05:26", "66.249.79.155", "7");
INSERT INTO `wp_gf_form_view` VALUES("17745", "1", "2015-09-25 06:07:26", "104.155.71.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("17746", "3", "2015-09-25 07:29:02", "1.0.178.207", "49");
INSERT INTO `wp_gf_form_view` VALUES("17747", "9", "2015-09-25 07:29:03", "1.0.178.207", "6");
INSERT INTO `wp_gf_form_view` VALUES("17748", "8", "2015-09-25 07:29:03", "1.0.178.207", "6");
INSERT INTO `wp_gf_form_view` VALUES("17749", "3", "2015-09-25 08:01:03", "54.190.220.60", "802");
INSERT INTO `wp_gf_form_view` VALUES("17750", "9", "2015-09-25 08:01:04", "54.190.220.60", "100");
INSERT INTO `wp_gf_form_view` VALUES("17751", "8", "2015-09-25 08:01:04", "54.190.220.60", "100");
INSERT INTO `wp_gf_form_view` VALUES("17752", "1", "2015-09-25 08:01:27", "54.190.220.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("17753", "2", "2015-09-25 08:01:52", "54.190.220.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("17754", "3", "2015-09-25 09:02:21", "27.151.101.141", "1281");
INSERT INTO `wp_gf_form_view` VALUES("17755", "9", "2015-09-25 09:02:23", "27.151.101.141", "145");
INSERT INTO `wp_gf_form_view` VALUES("17756", "8", "2015-09-25 09:02:23", "27.151.101.141", "160");
INSERT INTO `wp_gf_form_view` VALUES("17757", "2", "2015-09-25 09:40:39", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("17758", "1", "2015-09-25 09:40:43", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("17759", "5", "2015-09-25 09:47:14", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("17760", "6", "2015-09-25 09:55:26", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("17761", "3", "2015-09-25 10:00:02", "5.9.98.130", "4651");
INSERT INTO `wp_gf_form_view` VALUES("17762", "9", "2015-09-25 10:00:03", "5.9.98.130", "453");
INSERT INTO `wp_gf_form_view` VALUES("17763", "8", "2015-09-25 10:00:03", "5.9.98.130", "585");
INSERT INTO `wp_gf_form_view` VALUES("17764", "3", "2015-09-25 11:00:00", "5.9.98.130", "4045");
INSERT INTO `wp_gf_form_view` VALUES("17765", "8", "2015-09-25 11:00:03", "5.9.98.130", "426");
INSERT INTO `wp_gf_form_view` VALUES("17766", "9", "2015-09-25 11:00:05", "5.9.98.130", "382");
INSERT INTO `wp_gf_form_view` VALUES("17767", "3", "2015-09-25 12:00:00", "5.9.98.130", "1606");
INSERT INTO `wp_gf_form_view` VALUES("17768", "9", "2015-09-25 12:00:01", "5.9.98.130", "175");
INSERT INTO `wp_gf_form_view` VALUES("17769", "8", "2015-09-25 12:00:02", "5.9.98.130", "299");
INSERT INTO `wp_gf_form_view` VALUES("17770", "3", "2015-09-25 13:01:42", "5.9.98.130", "6464");
INSERT INTO `wp_gf_form_view` VALUES("17771", "9", "2015-09-25 13:01:43", "5.9.98.130", "557");
INSERT INTO `wp_gf_form_view` VALUES("17772", "8", "2015-09-25 13:01:43", "5.9.98.130", "608");
INSERT INTO `wp_gf_form_view` VALUES("17773", "9", "2015-09-25 14:00:01", "5.9.98.130", "528");
INSERT INTO `wp_gf_form_view` VALUES("17774", "3", "2015-09-25 14:00:01", "5.9.98.130", "4584");
INSERT INTO `wp_gf_form_view` VALUES("17775", "8", "2015-09-25 14:00:04", "5.9.98.130", "797");
INSERT INTO `wp_gf_form_view` VALUES("17776", "3", "2015-09-25 15:03:01", "66.249.79.162", "140");
INSERT INTO `wp_gf_form_view` VALUES("17777", "9", "2015-09-25 15:03:02", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("17778", "8", "2015-09-25 15:03:03", "66.249.79.162", "17");
INSERT INTO `wp_gf_form_view` VALUES("17779", "1", "2015-09-25 15:29:46", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("17780", "3", "2015-09-25 16:03:27", "66.249.79.162", "3306");
INSERT INTO `wp_gf_form_view` VALUES("17781", "9", "2015-09-25 16:03:28", "66.249.79.162", "413");
INSERT INTO `wp_gf_form_view` VALUES("17782", "8", "2015-09-25 16:03:28", "66.249.79.162", "414");
INSERT INTO `wp_gf_form_view` VALUES("17783", "3", "2015-09-25 17:00:01", "5.9.98.130", "6318");
INSERT INTO `wp_gf_form_view` VALUES("17784", "9", "2015-09-25 17:00:01", "5.9.98.130", "408");
INSERT INTO `wp_gf_form_view` VALUES("17785", "8", "2015-09-25 17:00:02", "5.9.98.130", "535");
INSERT INTO `wp_gf_form_view` VALUES("17786", "3", "2015-09-25 18:00:00", "5.9.98.130", "5370");
INSERT INTO `wp_gf_form_view` VALUES("17787", "8", "2015-09-25 18:00:00", "91.200.12.128", "550");
INSERT INTO `wp_gf_form_view` VALUES("17788", "9", "2015-09-25 18:00:04", "91.200.12.128", "611");
INSERT INTO `wp_gf_form_view` VALUES("17789", "2", "2015-09-25 18:03:50", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17790", "1", "2015-09-25 18:25:26", "107.189.36.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("17791", "9", "2015-09-25 19:00:00", "5.9.98.130", "480");
INSERT INTO `wp_gf_form_view` VALUES("17792", "3", "2015-09-25 19:00:00", "5.9.98.130", "4915");
INSERT INTO `wp_gf_form_view` VALUES("17793", "8", "2015-09-25 19:00:01", "5.9.98.130", "824");
INSERT INTO `wp_gf_form_view` VALUES("17794", "8", "2015-09-25 20:00:00", "5.9.98.130", "547");
INSERT INTO `wp_gf_form_view` VALUES("17795", "3", "2015-09-25 20:00:01", "5.9.98.130", "2653");
INSERT INTO `wp_gf_form_view` VALUES("17796", "9", "2015-09-25 20:00:02", "5.9.98.130", "317");
INSERT INTO `wp_gf_form_view` VALUES("17797", "3", "2015-09-25 21:06:15", "66.249.79.162", "82");
INSERT INTO `wp_gf_form_view` VALUES("17798", "9", "2015-09-25 21:06:16", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17799", "8", "2015-09-25 21:06:17", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17800", "1", "2015-09-25 21:57:41", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("17801", "3", "2015-09-25 22:03:09", "66.249.79.155", "32");
INSERT INTO `wp_gf_form_view` VALUES("17802", "9", "2015-09-25 22:03:10", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("17803", "8", "2015-09-25 22:03:10", "66.249.79.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("17804", "3", "2015-09-25 23:05:07", "66.249.79.169", "202");
INSERT INTO `wp_gf_form_view` VALUES("17805", "9", "2015-09-25 23:05:08", "66.249.79.169", "26");
INSERT INTO `wp_gf_form_view` VALUES("17806", "8", "2015-09-25 23:05:08", "66.249.79.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("17807", "2", "2015-09-25 23:21:26", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("17808", "3", "2015-09-26 00:05:03", "207.46.13.127", "140");
INSERT INTO `wp_gf_form_view` VALUES("17809", "9", "2015-09-26 00:05:04", "207.46.13.127", "16");
INSERT INTO `wp_gf_form_view` VALUES("17810", "8", "2015-09-26 00:05:05", "207.46.13.127", "16");
INSERT INTO `wp_gf_form_view` VALUES("17811", "1", "2015-09-26 00:43:10", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("17812", "6", "2015-09-26 00:59:09", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("17813", "3", "2015-09-26 01:07:26", "66.249.79.169", "90");
INSERT INTO `wp_gf_form_view` VALUES("17814", "9", "2015-09-26 01:07:26", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("17815", "8", "2015-09-26 01:07:26", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("17816", "1", "2015-09-26 01:12:26", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("17817", "3", "2015-09-26 02:07:41", "66.249.79.169", "76");
INSERT INTO `wp_gf_form_view` VALUES("17818", "9", "2015-09-26 02:07:42", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("17819", "8", "2015-09-26 02:07:42", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("17820", "3", "2015-09-26 03:06:43", "66.249.79.155", "25");
INSERT INTO `wp_gf_form_view` VALUES("17821", "9", "2015-09-26 03:06:43", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("17822", "8", "2015-09-26 03:06:43", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("17823", "3", "2015-09-26 04:01:20", "66.249.79.162", "81");
INSERT INTO `wp_gf_form_view` VALUES("17824", "9", "2015-09-26 04:01:21", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17825", "8", "2015-09-26 04:01:21", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17826", "3", "2015-09-26 05:21:43", "66.249.79.155", "147");
INSERT INTO `wp_gf_form_view` VALUES("17827", "9", "2015-09-26 05:21:44", "66.249.79.155", "17");
INSERT INTO `wp_gf_form_view` VALUES("17828", "8", "2015-09-26 05:21:45", "66.249.79.155", "19");
INSERT INTO `wp_gf_form_view` VALUES("17829", "2", "2015-09-26 05:37:58", "204.12.239.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("17830", "3", "2015-09-26 06:16:35", "66.249.79.169", "96");
INSERT INTO `wp_gf_form_view` VALUES("17831", "9", "2015-09-26 06:16:35", "66.249.79.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("17832", "8", "2015-09-26 06:16:35", "66.249.79.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("17833", "3", "2015-09-26 07:00:07", "217.69.133.233", "74");
INSERT INTO `wp_gf_form_view` VALUES("17834", "9", "2015-09-26 07:00:08", "217.69.133.233", "9");
INSERT INTO `wp_gf_form_view` VALUES("17835", "8", "2015-09-26 07:00:08", "217.69.133.233", "9");
INSERT INTO `wp_gf_form_view` VALUES("17836", "3", "2015-09-26 08:17:50", "207.46.13.29", "68");
INSERT INTO `wp_gf_form_view` VALUES("17837", "9", "2015-09-26 08:17:50", "207.46.13.29", "10");
INSERT INTO `wp_gf_form_view` VALUES("17838", "8", "2015-09-26 08:17:50", "207.46.13.29", "10");
INSERT INTO `wp_gf_form_view` VALUES("17839", "3", "2015-09-26 09:04:26", "66.249.79.155", "21");
INSERT INTO `wp_gf_form_view` VALUES("17840", "9", "2015-09-26 09:04:27", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("17841", "8", "2015-09-26 09:04:27", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("17842", "3", "2015-09-26 10:02:30", "66.249.79.169", "32");
INSERT INTO `wp_gf_form_view` VALUES("17843", "9", "2015-09-26 10:02:30", "66.249.79.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("17844", "8", "2015-09-26 10:02:31", "66.249.79.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("17845", "3", "2015-09-26 11:41:03", "217.69.133.69", "33");
INSERT INTO `wp_gf_form_view` VALUES("17846", "9", "2015-09-26 11:41:05", "217.69.133.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("17847", "8", "2015-09-26 11:41:05", "217.69.133.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("17848", "1", "2015-09-26 11:59:04", "62.210.178.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("17849", "3", "2015-09-26 13:31:35", "91.200.12.128", "18");
INSERT INTO `wp_gf_form_view` VALUES("17850", "9", "2015-09-26 13:31:40", "91.200.12.128", "3");
INSERT INTO `wp_gf_form_view` VALUES("17851", "8", "2015-09-26 13:31:40", "91.200.12.128", "3");
INSERT INTO `wp_gf_form_view` VALUES("17852", "3", "2015-09-26 14:28:27", "207.46.13.127", "77");
INSERT INTO `wp_gf_form_view` VALUES("17853", "9", "2015-09-26 14:28:28", "207.46.13.127", "9");
INSERT INTO `wp_gf_form_view` VALUES("17854", "8", "2015-09-26 14:28:28", "207.46.13.127", "9");
INSERT INTO `wp_gf_form_view` VALUES("17855", "5", "2015-09-26 14:50:31", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("17856", "3", "2015-09-26 15:37:08", "66.249.79.155", "16");
INSERT INTO `wp_gf_form_view` VALUES("17857", "9", "2015-09-26 15:37:09", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("17858", "8", "2015-09-26 15:37:09", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("17859", "9", "2015-09-26 16:00:29", "24.108.146.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("17860", "3", "2015-09-26 16:00:29", "24.108.146.93", "17");
INSERT INTO `wp_gf_form_view` VALUES("17861", "8", "2015-09-26 16:00:30", "24.108.146.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("17862", "3", "2015-09-26 17:14:55", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("17863", "9", "2015-09-26 17:14:58", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("17864", "8", "2015-09-26 17:14:58", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("17865", "3", "2015-09-26 18:30:21", "180.180.70.13", "33");
INSERT INTO `wp_gf_form_view` VALUES("17866", "9", "2015-09-26 18:30:22", "180.180.70.13", "4");
INSERT INTO `wp_gf_form_view` VALUES("17867", "8", "2015-09-26 18:30:22", "180.180.70.13", "4");
INSERT INTO `wp_gf_form_view` VALUES("17868", "3", "2015-09-26 19:07:52", "104.168.98.42", "82");
INSERT INTO `wp_gf_form_view` VALUES("17869", "9", "2015-09-26 19:07:53", "104.168.98.42", "10");
INSERT INTO `wp_gf_form_view` VALUES("17870", "8", "2015-09-26 19:07:53", "104.168.98.42", "10");
INSERT INTO `wp_gf_form_view` VALUES("17871", "3", "2015-09-26 20:25:37", "66.249.79.169", "42");
INSERT INTO `wp_gf_form_view` VALUES("17872", "9", "2015-09-26 20:25:38", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("17873", "8", "2015-09-26 20:25:38", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("17874", "3", "2015-09-26 21:06:19", "217.69.133.227", "17");
INSERT INTO `wp_gf_form_view` VALUES("17875", "9", "2015-09-26 21:06:19", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("17876", "8", "2015-09-26 21:06:19", "217.69.133.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("17877", "3", "2015-09-26 22:16:02", "66.249.79.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("17878", "9", "2015-09-26 22:16:02", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("17879", "8", "2015-09-26 22:16:02", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("17880", "1", "2015-09-26 23:49:53", "104.155.71.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("17881", "3", "2015-09-26 23:49:54", "104.155.71.48", "51");
INSERT INTO `wp_gf_form_view` VALUES("17882", "9", "2015-09-26 23:49:54", "104.155.71.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("17883", "8", "2015-09-26 23:49:54", "104.155.71.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("17884", "3", "2015-09-27 00:09:57", "66.249.79.155", "24");
INSERT INTO `wp_gf_form_view` VALUES("17885", "9", "2015-09-27 00:09:57", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("17886", "8", "2015-09-27 00:09:58", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("17887", "3", "2015-09-27 01:12:34", "96.53.220.89", "40");
INSERT INTO `wp_gf_form_view` VALUES("17888", "9", "2015-09-27 01:12:34", "96.53.220.89", "6");
INSERT INTO `wp_gf_form_view` VALUES("17889", "8", "2015-09-27 01:12:34", "96.53.220.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("17890", "3", "2015-09-27 02:04:37", "162.243.246.219", "3174");
INSERT INTO `wp_gf_form_view` VALUES("17891", "9", "2015-09-27 02:04:37", "162.243.246.219", "351");
INSERT INTO `wp_gf_form_view` VALUES("17892", "8", "2015-09-27 02:04:37", "162.243.246.219", "401");
INSERT INTO `wp_gf_form_view` VALUES("17893", "1", "2015-09-27 02:12:34", "162.243.246.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("17894", "6", "2015-09-27 02:18:24", "162.243.246.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("17895", "5", "2015-09-27 02:25:14", "162.243.246.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("17896", "8", "2015-09-27 03:00:25", "162.243.246.219", "204");
INSERT INTO `wp_gf_form_view` VALUES("17897", "3", "2015-09-27 03:00:25", "162.243.246.219", "1614");
INSERT INTO `wp_gf_form_view` VALUES("17898", "9", "2015-09-27 03:00:26", "162.243.246.219", "174");
INSERT INTO `wp_gf_form_view` VALUES("17899", "2", "2015-09-27 03:14:00", "162.243.246.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("17900", "3", "2015-09-27 04:40:35", "66.249.79.162", "67");
INSERT INTO `wp_gf_form_view` VALUES("17901", "9", "2015-09-27 04:40:37", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("17902", "8", "2015-09-27 04:40:37", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("17903", "1", "2015-09-27 04:45:28", "104.155.71.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("17904", "3", "2015-09-27 05:05:26", "66.249.79.169", "136");
INSERT INTO `wp_gf_form_view` VALUES("17905", "9", "2015-09-27 05:05:27", "66.249.79.169", "17");
INSERT INTO `wp_gf_form_view` VALUES("17906", "8", "2015-09-27 05:05:27", "66.249.79.169", "17");
INSERT INTO `wp_gf_form_view` VALUES("17907", "3", "2015-09-27 06:03:08", "66.249.79.155", "66");
INSERT INTO `wp_gf_form_view` VALUES("17908", "9", "2015-09-27 06:03:08", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("17909", "8", "2015-09-27 06:03:09", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("17910", "1", "2015-09-27 07:44:28", "51.254.83.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("17911", "3", "2015-09-27 07:44:30", "51.254.83.80", "24");
INSERT INTO `wp_gf_form_view` VALUES("17912", "9", "2015-09-27 07:44:31", "51.254.83.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("17913", "8", "2015-09-27 07:44:31", "51.254.83.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("17914", "3", "2015-09-27 08:02:53", "217.69.133.227", "112");
INSERT INTO `wp_gf_form_view` VALUES("17915", "9", "2015-09-27 08:02:53", "217.69.133.227", "14");
INSERT INTO `wp_gf_form_view` VALUES("17916", "8", "2015-09-27 08:02:53", "217.69.133.227", "14");
INSERT INTO `wp_gf_form_view` VALUES("17917", "7", "2015-09-27 08:12:12", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17918", "3", "2015-09-27 09:20:01", "68.180.229.161", "41");
INSERT INTO `wp_gf_form_view` VALUES("17919", "9", "2015-09-27 09:20:09", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("17920", "8", "2015-09-27 09:20:09", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("17921", "3", "2015-09-27 10:29:42", "66.249.79.162", "83");
INSERT INTO `wp_gf_form_view` VALUES("17922", "9", "2015-09-27 10:29:43", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("17923", "8", "2015-09-27 10:29:43", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("17924", "3", "2015-09-27 11:10:04", "66.249.79.162", "128");
INSERT INTO `wp_gf_form_view` VALUES("17925", "9", "2015-09-27 11:10:05", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("17926", "8", "2015-09-27 11:10:05", "66.249.79.162", "17");
INSERT INTO `wp_gf_form_view` VALUES("17927", "1", "2015-09-27 11:28:02", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("17928", "1", "2015-09-27 12:03:54", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17929", "3", "2015-09-27 12:03:54", "66.249.79.169", "41");
INSERT INTO `wp_gf_form_view` VALUES("17930", "9", "2015-09-27 12:03:54", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("17931", "8", "2015-09-27 12:03:54", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("17932", "3", "2015-09-27 13:01:32", "66.249.79.162", "73");
INSERT INTO `wp_gf_form_view` VALUES("17933", "9", "2015-09-27 13:01:32", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("17934", "8", "2015-09-27 13:01:32", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("17935", "1", "2015-09-27 13:48:16", "62.210.178.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("17936", "3", "2015-09-27 14:31:53", "68.180.229.161", "282");
INSERT INTO `wp_gf_form_view` VALUES("17937", "9", "2015-09-27 14:31:54", "68.180.229.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("17938", "8", "2015-09-27 14:31:54", "68.180.229.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("17939", "1", "2015-09-27 14:53:32", "201.21.10.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("17940", "2", "2015-09-27 14:53:44", "201.21.10.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("17941", "3", "2015-09-27 15:07:32", "61.174.10.22", "201");
INSERT INTO `wp_gf_form_view` VALUES("17942", "9", "2015-09-27 15:07:32", "61.174.10.22", "23");
INSERT INTO `wp_gf_form_view` VALUES("17943", "8", "2015-09-27 15:07:33", "61.174.10.22", "23");
INSERT INTO `wp_gf_form_view` VALUES("17944", "3", "2015-09-27 16:11:46", "66.249.79.169", "75");
INSERT INTO `wp_gf_form_view` VALUES("17945", "9", "2015-09-27 16:11:46", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("17946", "8", "2015-09-27 16:11:46", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("17947", "8", "2015-09-27 17:04:00", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("17948", "3", "2015-09-27 17:04:00", "66.249.79.162", "120");
INSERT INTO `wp_gf_form_view` VALUES("17949", "9", "2015-09-27 17:04:00", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("17950", "2", "2015-09-27 17:08:26", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("17951", "3", "2015-09-27 18:10:55", "66.249.79.155", "137");
INSERT INTO `wp_gf_form_view` VALUES("17952", "9", "2015-09-27 18:10:55", "66.249.79.155", "18");
INSERT INTO `wp_gf_form_view` VALUES("17953", "8", "2015-09-27 18:10:55", "66.249.79.155", "17");
INSERT INTO `wp_gf_form_view` VALUES("17954", "3", "2015-09-27 19:14:24", "66.249.79.162", "40");
INSERT INTO `wp_gf_form_view` VALUES("17955", "9", "2015-09-27 19:14:24", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("17956", "8", "2015-09-27 19:14:25", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("17957", "3", "2015-09-27 20:10:56", "66.249.79.169", "48");
INSERT INTO `wp_gf_form_view` VALUES("17958", "9", "2015-09-27 20:10:56", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("17959", "8", "2015-09-27 20:10:56", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("17960", "3", "2015-09-27 21:09:38", "66.249.79.155", "73");
INSERT INTO `wp_gf_form_view` VALUES("17961", "9", "2015-09-27 21:09:38", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("17962", "8", "2015-09-27 21:09:38", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("17963", "1", "2015-09-27 22:09:05", "173.254.226.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("17964", "3", "2015-09-27 22:09:05", "173.254.226.147", "108");
INSERT INTO `wp_gf_form_view` VALUES("17965", "9", "2015-09-27 22:09:05", "173.254.226.147", "14");
INSERT INTO `wp_gf_form_view` VALUES("17966", "8", "2015-09-27 22:09:05", "173.254.226.147", "13");
INSERT INTO `wp_gf_form_view` VALUES("17967", "3", "2015-09-27 23:01:03", "66.249.79.162", "90");
INSERT INTO `wp_gf_form_view` VALUES("17968", "9", "2015-09-27 23:01:03", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("17969", "8", "2015-09-27 23:01:03", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("17970", "3", "2015-09-28 00:01:17", "207.46.13.63", "284");
INSERT INTO `wp_gf_form_view` VALUES("17971", "8", "2015-09-28 00:01:18", "207.46.13.63", "33");
INSERT INTO `wp_gf_form_view` VALUES("17972", "9", "2015-09-28 00:01:18", "207.46.13.63", "34");
INSERT INTO `wp_gf_form_view` VALUES("17973", "6", "2015-09-28 00:41:41", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17974", "1", "2015-09-28 00:54:21", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("17975", "3", "2015-09-28 01:11:26", "66.249.79.162", "122");
INSERT INTO `wp_gf_form_view` VALUES("17976", "9", "2015-09-28 01:11:27", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("17977", "8", "2015-09-28 01:11:27", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("17978", "1", "2015-09-28 01:55:30", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("17979", "3", "2015-09-28 02:28:18", "68.180.229.161", "133");
INSERT INTO `wp_gf_form_view` VALUES("17980", "9", "2015-09-28 02:28:18", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("17981", "8", "2015-09-28 02:28:18", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("17982", "1", "2015-09-28 02:54:47", "104.155.71.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("17983", "3", "2015-09-28 03:10:42", "66.249.79.169", "48");
INSERT INTO `wp_gf_form_view` VALUES("17984", "9", "2015-09-28 03:10:42", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("17985", "8", "2015-09-28 03:10:42", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("17986", "3", "2015-09-28 04:04:38", "173.254.203.85", "137");
INSERT INTO `wp_gf_form_view` VALUES("17987", "9", "2015-09-28 04:04:39", "173.254.203.85", "21");
INSERT INTO `wp_gf_form_view` VALUES("17988", "8", "2015-09-28 04:04:39", "173.254.203.85", "17");
INSERT INTO `wp_gf_form_view` VALUES("17989", "3", "2015-09-28 05:02:41", "66.249.79.155", "74");
INSERT INTO `wp_gf_form_view` VALUES("17990", "9", "2015-09-28 05:02:41", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("17991", "8", "2015-09-28 05:02:41", "66.249.79.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("17992", "6", "2015-09-28 05:54:55", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("17993", "3", "2015-09-28 06:20:46", "66.249.79.162", "40");
INSERT INTO `wp_gf_form_view` VALUES("17994", "9", "2015-09-28 06:20:46", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("17995", "8", "2015-09-28 06:20:46", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("17996", "1", "2015-09-28 06:39:15", "207.6.127.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("17997", "3", "2015-09-28 07:08:16", "66.249.79.169", "72");
INSERT INTO `wp_gf_form_view` VALUES("17998", "9", "2015-09-28 07:08:16", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("17999", "8", "2015-09-28 07:08:16", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("18000", "2", "2015-09-28 07:30:26", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("18001", "3", "2015-09-28 08:00:12", "66.249.79.155", "65");
INSERT INTO `wp_gf_form_view` VALUES("18002", "9", "2015-09-28 08:00:12", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("18003", "8", "2015-09-28 08:00:12", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("18004", "6", "2015-09-28 08:19:15", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("18005", "3", "2015-09-28 09:04:43", "91.200.12.63", "129");
INSERT INTO `wp_gf_form_view` VALUES("18006", "9", "2015-09-28 09:04:43", "91.200.12.63", "16");
INSERT INTO `wp_gf_form_view` VALUES("18007", "8", "2015-09-28 09:04:43", "91.200.12.63", "16");
INSERT INTO `wp_gf_form_view` VALUES("18008", "3", "2015-09-28 10:11:11", "66.249.79.169", "40");
INSERT INTO `wp_gf_form_view` VALUES("18009", "9", "2015-09-28 10:11:11", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("18010", "8", "2015-09-28 10:11:12", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("18011", "3", "2015-09-28 11:01:11", "142.227.100.253", "108");
INSERT INTO `wp_gf_form_view` VALUES("18012", "9", "2015-09-28 11:01:11", "142.227.100.253", "13");
INSERT INTO `wp_gf_form_view` VALUES("18013", "8", "2015-09-28 11:01:11", "142.227.100.253", "13");
INSERT INTO `wp_gf_form_view` VALUES("18014", "1", "2015-09-28 11:25:00", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("18015", "6", "2015-09-28 11:34:42", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("18016", "3", "2015-09-28 12:06:40", "66.249.79.162", "67");
INSERT INTO `wp_gf_form_view` VALUES("18017", "9", "2015-09-28 12:06:40", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("18018", "8", "2015-09-28 12:06:40", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("18019", "2", "2015-09-28 12:17:33", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("18020", "9", "2015-09-28 13:07:08", "66.249.79.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("18021", "3", "2015-09-28 13:07:08", "66.249.79.169", "99");
INSERT INTO `wp_gf_form_view` VALUES("18022", "8", "2015-09-28 13:07:09", "66.249.79.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("18023", "3", "2015-09-28 14:01:12", "66.249.79.155", "115");
INSERT INTO `wp_gf_form_view` VALUES("18024", "9", "2015-09-28 14:01:12", "66.249.79.155", "14");
INSERT INTO `wp_gf_form_view` VALUES("18025", "8", "2015-09-28 14:01:12", "66.249.79.155", "14");
INSERT INTO `wp_gf_form_view` VALUES("18026", "1", "2015-09-28 14:14:21", "104.155.71.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("18027", "6", "2015-09-28 14:28:44", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("18028", "3", "2015-09-28 15:05:01", "66.249.79.169", "74");
INSERT INTO `wp_gf_form_view` VALUES("18029", "9", "2015-09-28 15:05:02", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("18030", "8", "2015-09-28 15:05:02", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("18031", "1", "2015-09-28 15:29:09", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("18032", "3", "2015-09-28 16:01:39", "66.249.79.155", "90");
INSERT INTO `wp_gf_form_view` VALUES("18033", "9", "2015-09-28 16:01:39", "66.249.79.155", "12");
INSERT INTO `wp_gf_form_view` VALUES("18034", "8", "2015-09-28 16:01:39", "66.249.79.155", "11");
INSERT INTO `wp_gf_form_view` VALUES("18035", "8", "2015-09-28 17:00:56", "199.21.99.202", "19");
INSERT INTO `wp_gf_form_view` VALUES("18036", "3", "2015-09-28 17:00:56", "199.21.99.202", "138");
INSERT INTO `wp_gf_form_view` VALUES("18037", "9", "2015-09-28 17:00:57", "199.21.99.202", "17");
INSERT INTO `wp_gf_form_view` VALUES("18038", "3", "2015-09-28 18:00:34", "68.180.229.161", "222");
INSERT INTO `wp_gf_form_view` VALUES("18039", "9", "2015-09-28 18:00:34", "68.180.229.161", "27");
INSERT INTO `wp_gf_form_view` VALUES("18040", "8", "2015-09-28 18:00:34", "68.180.229.161", "27");
INSERT INTO `wp_gf_form_view` VALUES("18041", "6", "2015-09-28 18:11:34", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("18042", "1", "2015-09-28 18:39:38", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("18043", "9", "2015-09-28 19:00:40", "66.249.79.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("18044", "3", "2015-09-28 19:00:40", "66.249.79.162", "144");
INSERT INTO `wp_gf_form_view` VALUES("18045", "8", "2015-09-28 19:00:40", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("18046", "3", "2015-09-28 20:01:08", "66.249.79.162", "220");
INSERT INTO `wp_gf_form_view` VALUES("18047", "9", "2015-09-28 20:01:08", "66.249.79.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("18048", "8", "2015-09-28 20:01:08", "66.249.79.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("18049", "1", "2015-09-28 20:07:36", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("18050", "2", "2015-09-28 20:07:47", "93.92.217.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("18051", "6", "2015-09-28 20:37:20", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("18052", "9", "2015-09-28 21:02:44", "66.249.79.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("18053", "3", "2015-09-28 21:02:44", "66.249.79.169", "98");
INSERT INTO `wp_gf_form_view` VALUES("18054", "8", "2015-09-28 21:02:44", "66.249.79.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("18055", "3", "2015-09-28 22:00:18", "207.46.13.63", "216");
INSERT INTO `wp_gf_form_view` VALUES("18056", "9", "2015-09-28 22:00:18", "207.46.13.63", "26");
INSERT INTO `wp_gf_form_view` VALUES("18057", "8", "2015-09-28 22:00:18", "207.46.13.63", "26");
INSERT INTO `wp_gf_form_view` VALUES("18058", "1", "2015-09-28 22:01:14", "104.155.71.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("18059", "5", "2015-09-28 22:02:59", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("18060", "9", "2015-09-28 23:06:02", "172.245.228.139", "19");
INSERT INTO `wp_gf_form_view` VALUES("18061", "3", "2015-09-28 23:06:02", "172.245.228.139", "157");
INSERT INTO `wp_gf_form_view` VALUES("18062", "8", "2015-09-28 23:06:02", "172.245.228.139", "19");
INSERT INTO `wp_gf_form_view` VALUES("18063", "2", "2015-09-28 23:51:30", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("18064", "9", "2015-09-29 00:12:18", "54.209.60.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("18065", "3", "2015-09-29 00:12:18", "54.209.60.63", "64");
INSERT INTO `wp_gf_form_view` VALUES("18066", "8", "2015-09-29 00:12:19", "54.209.60.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("18067", "9", "2015-09-29 01:27:35", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("18068", "3", "2015-09-29 01:27:37", "66.249.79.155", "32");
INSERT INTO `wp_gf_form_view` VALUES("18069", "8", "2015-09-29 01:27:37", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("18070", "9", "2015-09-29 02:01:05", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("18071", "3", "2015-09-29 02:01:05", "66.249.79.162", "32");
INSERT INTO `wp_gf_form_view` VALUES("18072", "8", "2015-09-29 02:01:05", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("18073", "9", "2015-09-29 03:00:37", "107.173.213.149", "20");
INSERT INTO `wp_gf_form_view` VALUES("18074", "3", "2015-09-29 03:00:37", "107.173.213.149", "146");
INSERT INTO `wp_gf_form_view` VALUES("18075", "8", "2015-09-29 03:00:37", "107.173.213.149", "19");
INSERT INTO `wp_gf_form_view` VALUES("18076", "1", "2015-09-29 03:54:31", "45.57.138.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("18077", "9", "2015-09-29 04:00:00", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("18078", "3", "2015-09-29 04:00:00", "66.249.79.162", "99");
INSERT INTO `wp_gf_form_view` VALUES("18079", "8", "2015-09-29 04:00:00", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("18080", "1", "2015-09-29 04:31:43", "62.210.178.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("18081", "6", "2015-09-29 04:36:30", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("18082", "9", "2015-09-29 05:01:00", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("18083", "3", "2015-09-29 05:01:00", "66.249.79.169", "89");
INSERT INTO `wp_gf_form_view` VALUES("18084", "8", "2015-09-29 05:01:00", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("18085", "1", "2015-09-29 06:01:23", "66.249.79.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("18086", "9", "2015-09-29 06:01:24", "66.249.79.155", "11");
INSERT INTO `wp_gf_form_view` VALUES("18087", "3", "2015-09-29 06:01:24", "66.249.79.155", "81");
INSERT INTO `wp_gf_form_view` VALUES("18088", "8", "2015-09-29 06:01:24", "66.249.79.155", "11");
INSERT INTO `wp_gf_form_view` VALUES("18089", "9", "2015-09-29 07:09:12", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("18090", "3", "2015-09-29 07:09:13", "68.180.229.161", "73");
INSERT INTO `wp_gf_form_view` VALUES("18091", "8", "2015-09-29 07:09:13", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("18092", "9", "2015-09-29 08:07:34", "66.249.79.155", "6");
INSERT INTO `wp_gf_form_view` VALUES("18093", "3", "2015-09-29 08:07:34", "66.249.79.155", "48");
INSERT INTO `wp_gf_form_view` VALUES("18094", "8", "2015-09-29 08:07:34", "66.249.79.155", "6");
INSERT INTO `wp_gf_form_view` VALUES("18095", "7", "2015-09-29 08:13:54", "157.55.39.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("18096", "9", "2015-09-29 09:09:45", "66.249.79.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("18097", "3", "2015-09-29 09:09:48", "66.249.79.169", "97");
INSERT INTO `wp_gf_form_view` VALUES("18098", "8", "2015-09-29 09:09:48", "66.249.79.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("18099", "9", "2015-09-29 10:33:04", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("18100", "3", "2015-09-29 10:33:04", "66.249.79.155", "64");
INSERT INTO `wp_gf_form_view` VALUES("18101", "8", "2015-09-29 10:33:04", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("18102", "7", "2015-09-29 10:50:10", "157.55.39.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("18103", "9", "2015-09-29 11:00:56", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("18104", "3", "2015-09-29 11:00:56", "66.249.79.162", "48");
INSERT INTO `wp_gf_form_view` VALUES("18105", "8", "2015-09-29 11:00:56", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("18106", "3", "2015-09-29 12:18:13", "68.180.229.161", "91");
INSERT INTO `wp_gf_form_view` VALUES("18107", "9", "2015-09-29 12:18:14", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("18108", "8", "2015-09-29 12:18:14", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("18109", "9", "2015-09-29 13:02:11", "207.46.13.63", "29");
INSERT INTO `wp_gf_form_view` VALUES("18110", "3", "2015-09-29 13:02:11", "207.46.13.63", "217");
INSERT INTO `wp_gf_form_view` VALUES("18111", "8", "2015-09-29 13:02:11", "207.46.13.63", "27");
INSERT INTO `wp_gf_form_view` VALUES("18112", "1", "2015-09-29 13:28:30", "157.55.39.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("18113", "2", "2015-09-29 13:36:51", "157.55.39.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("18114", "9", "2015-09-29 14:00:14", "207.46.13.63", "23");
INSERT INTO `wp_gf_form_view` VALUES("18115", "3", "2015-09-29 14:00:14", "207.46.13.63", "180");
INSERT INTO `wp_gf_form_view` VALUES("18116", "8", "2015-09-29 14:00:14", "207.46.13.63", "23");
INSERT INTO `wp_gf_form_view` VALUES("18117", "9", "2015-09-29 15:02:32", "157.55.39.92", "18");
INSERT INTO `wp_gf_form_view` VALUES("18118", "3", "2015-09-29 15:02:32", "157.55.39.92", "145");
INSERT INTO `wp_gf_form_view` VALUES("18119", "8", "2015-09-29 15:02:32", "157.55.39.92", "23");
INSERT INTO `wp_gf_form_view` VALUES("18120", "1", "2015-09-29 15:05:44", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("18121", "9", "2015-09-29 16:01:51", "157.55.39.2", "21");
INSERT INTO `wp_gf_form_view` VALUES("18122", "3", "2015-09-29 16:01:51", "157.55.39.2", "167");
INSERT INTO `wp_gf_form_view` VALUES("18123", "8", "2015-09-29 16:01:51", "157.55.39.2", "21");
INSERT INTO `wp_gf_form_view` VALUES("18124", "9", "2015-09-29 17:00:20", "157.55.39.1", "30");
INSERT INTO `wp_gf_form_view` VALUES("18125", "3", "2015-09-29 17:00:20", "157.55.39.1", "209");
INSERT INTO `wp_gf_form_view` VALUES("18126", "8", "2015-09-29 17:00:21", "157.55.39.1", "28");
INSERT INTO `wp_gf_form_view` VALUES("18127", "6", "2015-09-29 17:22:13", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("18128", "9", "2015-09-29 18:04:20", "66.249.79.169", "21");
INSERT INTO `wp_gf_form_view` VALUES("18129", "3", "2015-09-29 18:04:20", "66.249.79.169", "169");
INSERT INTO `wp_gf_form_view` VALUES("18130", "8", "2015-09-29 18:04:21", "66.249.79.169", "21");
INSERT INTO `wp_gf_form_view` VALUES("18131", "1", "2015-09-29 18:30:53", "167.114.199.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("18132", "9", "2015-09-29 19:01:07", "157.55.39.1", "18");
INSERT INTO `wp_gf_form_view` VALUES("18133", "3", "2015-09-29 19:01:07", "157.55.39.1", "152");
INSERT INTO `wp_gf_form_view` VALUES("18134", "8", "2015-09-29 19:01:07", "157.55.39.1", "20");
INSERT INTO `wp_gf_form_view` VALUES("18135", "1", "2015-09-29 19:03:07", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("18136", "9", "2015-09-29 20:13:41", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("18137", "3", "2015-09-29 20:13:41", "68.180.229.161", "97");
INSERT INTO `wp_gf_form_view` VALUES("18138", "8", "2015-09-29 20:13:41", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("18139", "9", "2015-09-29 21:38:26", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("18140", "3", "2015-09-29 21:38:30", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("18141", "8", "2015-09-29 21:38:30", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("18142", "9", "2015-09-29 22:18:24", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("18143", "3", "2015-09-29 22:18:25", "66.249.79.162", "89");
INSERT INTO `wp_gf_form_view` VALUES("18144", "8", "2015-09-29 22:18:25", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("18145", "9", "2015-09-29 23:04:29", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("18146", "3", "2015-09-29 23:04:29", "66.249.79.162", "72");
INSERT INTO `wp_gf_form_view` VALUES("18147", "8", "2015-09-29 23:04:29", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("18148", "9", "2015-09-30 00:06:49", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("18149", "3", "2015-09-30 00:06:49", "66.249.79.169", "90");
INSERT INTO `wp_gf_form_view` VALUES("18150", "8", "2015-09-30 00:06:49", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("18151", "3", "2015-09-30 01:02:08", "157.55.39.1", "114");
INSERT INTO `wp_gf_form_view` VALUES("18152", "9", "2015-09-30 01:02:08", "157.55.39.1", "15");
INSERT INTO `wp_gf_form_view` VALUES("18153", "8", "2015-09-30 01:02:08", "157.55.39.1", "14");
INSERT INTO `wp_gf_form_view` VALUES("18154", "9", "2015-09-30 02:03:09", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("18155", "3", "2015-09-30 02:03:09", "66.249.79.162", "57");
INSERT INTO `wp_gf_form_view` VALUES("18156", "8", "2015-09-30 02:03:09", "66.249.79.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("18157", "9", "2015-09-30 03:02:59", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("18158", "3", "2015-09-30 03:02:59", "68.180.229.161", "75");
INSERT INTO `wp_gf_form_view` VALUES("18159", "8", "2015-09-30 03:02:59", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("18160", "9", "2015-09-30 04:01:07", "66.249.79.155", "25");
INSERT INTO `wp_gf_form_view` VALUES("18161", "3", "2015-09-30 04:01:07", "66.249.79.155", "204");
INSERT INTO `wp_gf_form_view` VALUES("18162", "8", "2015-09-30 04:01:07", "66.249.79.155", "25");
INSERT INTO `wp_gf_form_view` VALUES("18163", "1", "2015-09-30 04:30:54", "208.115.111.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("18164", "9", "2015-09-30 05:08:41", "66.249.79.169", "19");
INSERT INTO `wp_gf_form_view` VALUES("18165", "3", "2015-09-30 05:08:41", "66.249.79.169", "147");
INSERT INTO `wp_gf_form_view` VALUES("18166", "8", "2015-09-30 05:08:41", "66.249.79.169", "18");
INSERT INTO `wp_gf_form_view` VALUES("18167", "9", "2015-09-30 06:12:59", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("18168", "3", "2015-09-30 06:12:59", "66.249.79.155", "64");
INSERT INTO `wp_gf_form_view` VALUES("18169", "8", "2015-09-30 06:12:59", "66.249.79.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("18170", "1", "2015-09-30 06:17:57", "31.184.238.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("18171", "9", "2015-09-30 07:09:54", "66.249.79.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("18172", "3", "2015-09-30 07:09:54", "66.249.79.169", "64");
INSERT INTO `wp_gf_form_view` VALUES("18173", "8", "2015-09-30 07:09:54", "66.249.79.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("18174", "1", "2015-09-30 07:42:31", "192.210.227.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("18175", "9", "2015-09-30 08:06:38", "66.249.79.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("18176", "3", "2015-09-30 08:06:38", "66.249.79.155", "81");
INSERT INTO `wp_gf_form_view` VALUES("18177", "8", "2015-09-30 08:06:39", "66.249.79.155", "11");
INSERT INTO `wp_gf_form_view` VALUES("18178", "9", "2015-09-30 09:12:33", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("18179", "3", "2015-09-30 09:12:33", "66.249.79.162", "64");
INSERT INTO `wp_gf_form_view` VALUES("18180", "8", "2015-09-30 09:12:33", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("18181", "9", "2015-09-30 10:00:56", "66.249.79.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("18182", "3", "2015-09-30 10:00:56", "66.249.79.169", "66");
INSERT INTO `wp_gf_form_view` VALUES("18183", "8", "2015-09-30 10:00:56", "66.249.79.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("18184", "3", "2015-09-30 11:16:26", "100.43.81.131", "74");
INSERT INTO `wp_gf_form_view` VALUES("18185", "9", "2015-09-30 11:16:26", "100.43.81.131", "9");
INSERT INTO `wp_gf_form_view` VALUES("18186", "8", "2015-09-30 11:16:27", "100.43.81.131", "9");
INSERT INTO `wp_gf_form_view` VALUES("18187", "3", "2015-09-30 12:43:18", "157.55.39.92", "17");
INSERT INTO `wp_gf_form_view` VALUES("18188", "9", "2015-09-30 12:43:21", "157.55.39.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("18189", "8", "2015-09-30 12:43:22", "157.55.39.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("18190", "1", "2015-09-30 13:04:08", "104.155.71.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("18191", "9", "2015-09-30 13:04:08", "104.155.71.48", "10");
INSERT INTO `wp_gf_form_view` VALUES("18192", "3", "2015-09-30 13:04:09", "104.155.71.48", "86");
INSERT INTO `wp_gf_form_view` VALUES("18193", "8", "2015-09-30 13:04:09", "104.155.71.48", "11");
INSERT INTO `wp_gf_form_view` VALUES("18194", "9", "2015-09-30 14:01:38", "27.156.72.78", "8");
INSERT INTO `wp_gf_form_view` VALUES("18195", "3", "2015-09-30 14:01:38", "27.156.72.78", "69");
INSERT INTO `wp_gf_form_view` VALUES("18196", "8", "2015-09-30 14:01:38", "27.156.72.78", "9");
INSERT INTO `wp_gf_form_view` VALUES("18197", "9", "2015-09-30 15:36:30", "67.248.28.8", "10");
INSERT INTO `wp_gf_form_view` VALUES("18198", "3", "2015-09-30 15:36:31", "67.248.28.8", "80");
INSERT INTO `wp_gf_form_view` VALUES("18199", "8", "2015-09-30 15:36:31", "67.248.28.8", "10");
INSERT INTO `wp_gf_form_view` VALUES("18200", "9", "2015-09-30 16:00:21", "207.194.133.9", "13");
INSERT INTO `wp_gf_form_view` VALUES("18201", "3", "2015-09-30 16:00:21", "207.194.133.9", "104");
INSERT INTO `wp_gf_form_view` VALUES("18202", "8", "2015-09-30 16:00:21", "207.194.133.9", "14");
INSERT INTO `wp_gf_form_view` VALUES("18203", "9", "2015-09-30 17:01:58", "157.55.39.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("18204", "3", "2015-09-30 17:01:58", "157.55.39.57", "24");
INSERT INTO `wp_gf_form_view` VALUES("18205", "8", "2015-09-30 17:01:58", "157.55.39.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("18206", "3", "2015-09-30 18:09:55", "66.249.79.169", "85");
INSERT INTO `wp_gf_form_view` VALUES("18207", "9", "2015-09-30 18:09:55", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("18208", "8", "2015-09-30 18:09:56", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("18209", "9", "2015-09-30 19:16:12", "66.249.79.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("18210", "3", "2015-09-30 19:16:17", "66.249.79.155", "72");
INSERT INTO `wp_gf_form_view` VALUES("18211", "8", "2015-09-30 19:16:17", "66.249.79.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("18212", "9", "2015-09-30 20:07:36", "8.28.16.254", "17");
INSERT INTO `wp_gf_form_view` VALUES("18213", "3", "2015-09-30 20:07:36", "8.28.16.254", "130");
INSERT INTO `wp_gf_form_view` VALUES("18214", "8", "2015-09-30 20:07:36", "8.28.16.254", "17");
INSERT INTO `wp_gf_form_view` VALUES("18215", "1", "2015-09-30 20:08:37", "8.28.16.254", "3");
INSERT INTO `wp_gf_form_view` VALUES("18216", "3", "2015-09-30 21:01:15", "66.249.79.155", "125");
INSERT INTO `wp_gf_form_view` VALUES("18217", "9", "2015-09-30 21:01:15", "66.249.79.155", "15");
INSERT INTO `wp_gf_form_view` VALUES("18218", "8", "2015-09-30 21:01:15", "66.249.79.155", "15");
INSERT INTO `wp_gf_form_view` VALUES("18219", "9", "2015-09-30 22:00:15", "184.66.114.65", "20");
INSERT INTO `wp_gf_form_view` VALUES("18220", "3", "2015-09-30 22:00:15", "184.66.114.65", "162");
INSERT INTO `wp_gf_form_view` VALUES("18221", "8", "2015-09-30 22:00:15", "184.66.114.65", "20");
INSERT INTO `wp_gf_form_view` VALUES("18222", "1", "2015-09-30 22:21:56", "91.239.11.235", "2");
INSERT INTO `wp_gf_form_view` VALUES("18223", "9", "2015-09-30 23:39:48", "199.168.141.174", "5");
INSERT INTO `wp_gf_form_view` VALUES("18224", "3", "2015-09-30 23:39:49", "199.168.141.174", "41");
INSERT INTO `wp_gf_form_view` VALUES("18225", "8", "2015-09-30 23:39:50", "199.168.141.174", "5");
INSERT INTO `wp_gf_form_view` VALUES("18226", "8", "2015-10-01 00:18:04", "66.249.79.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("18227", "9", "2015-10-01 00:18:04", "66.249.79.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("18228", "3", "2015-10-01 00:18:04", "66.249.79.155", "16");
INSERT INTO `wp_gf_form_view` VALUES("18229", "9", "2015-10-01 02:04:16", "157.55.39.97", "23");
INSERT INTO `wp_gf_form_view` VALUES("18230", "3", "2015-10-01 02:04:17", "157.55.39.97", "186");
INSERT INTO `wp_gf_form_view` VALUES("18231", "8", "2015-10-01 02:04:17", "157.55.39.97", "24");
INSERT INTO `wp_gf_form_view` VALUES("18232", "2", "2015-10-01 02:21:46", "104.131.43.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("18233", "1", "2015-10-01 02:21:46", "104.131.43.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("18234", "9", "2015-10-01 04:00:06", "199.217.117.207", "5");
INSERT INTO `wp_gf_form_view` VALUES("18235", "3", "2015-10-01 04:00:09", "199.217.117.207", "45");
INSERT INTO `wp_gf_form_view` VALUES("18236", "8", "2015-10-01 04:00:09", "199.217.117.207", "5");
INSERT INTO `wp_gf_form_view` VALUES("18237", "3", "2015-10-01 05:29:23", "157.55.39.97", "17");
INSERT INTO `wp_gf_form_view` VALUES("18238", "9", "2015-10-01 05:29:28", "157.55.39.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("18239", "8", "2015-10-01 05:29:28", "157.55.39.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("18240", "9", "2015-10-01 07:03:35", "167.114.199.81", "16");
INSERT INTO `wp_gf_form_view` VALUES("18241", "3", "2015-10-01 07:03:37", "167.114.199.81", "123");
INSERT INTO `wp_gf_form_view` VALUES("18242", "8", "2015-10-01 07:03:37", "167.114.199.81", "15");
INSERT INTO `wp_gf_form_view` VALUES("18243", "9", "2015-10-01 10:37:36", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("18244", "3", "2015-10-01 10:37:37", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("18245", "8", "2015-10-01 10:37:37", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("18246", "3", "2015-10-01 11:11:16", "68.180.229.161", "18");
INSERT INTO `wp_gf_form_view` VALUES("18247", "9", "2015-10-01 11:44:14", "157.55.39.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("18248", "8", "2015-10-01 11:44:15", "157.55.39.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("18249", "1", "2015-10-01 12:05:34", "51.254.83.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("18250", "9", "2015-10-01 12:05:34", "51.254.83.80", "57");
INSERT INTO `wp_gf_form_view` VALUES("18251", "3", "2015-10-01 12:05:34", "51.254.83.80", "454");
INSERT INTO `wp_gf_form_view` VALUES("18252", "8", "2015-10-01 12:05:34", "51.254.83.80", "57");
INSERT INTO `wp_gf_form_view` VALUES("18253", "2", "2015-10-01 12:36:31", "195.154.146.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("18254", "1", "2015-10-01 13:24:50", "192.210.223.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("18255", "9", "2015-10-01 13:24:54", "192.210.223.114", "11");
INSERT INTO `wp_gf_form_view` VALUES("18256", "3", "2015-10-01 13:24:55", "192.210.223.114", "89");
INSERT INTO `wp_gf_form_view` VALUES("18257", "8", "2015-10-01 13:24:55", "192.210.223.114", "11");
INSERT INTO `wp_gf_form_view` VALUES("18258", "9", "2015-10-01 14:05:19", "91.200.12.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("18259", "3", "2015-10-01 14:05:21", "91.200.12.127", "28");
INSERT INTO `wp_gf_form_view` VALUES("18260", "8", "2015-10-01 14:05:21", "91.200.12.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("18261", "9", "2015-10-01 15:33:13", "24.69.59.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("18262", "3", "2015-10-01 15:33:15", "24.69.59.84", "25");
INSERT INTO `wp_gf_form_view` VALUES("18263", "8", "2015-10-01 15:33:15", "24.69.59.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("18264", "9", "2015-10-01 16:25:33", "115.238.225.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("18265", "3", "2015-10-01 16:25:35", "115.238.225.26", "26");
INSERT INTO `wp_gf_form_view` VALUES("18266", "8", "2015-10-01 16:25:35", "115.238.225.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("18267", "9", "2015-10-01 17:01:09", "1.0.184.75", "13");
INSERT INTO `wp_gf_form_view` VALUES("18268", "3", "2015-10-01 17:01:09", "1.0.184.75", "92");
INSERT INTO `wp_gf_form_view` VALUES("18269", "8", "2015-10-01 17:01:10", "1.0.184.75", "12");
INSERT INTO `wp_gf_form_view` VALUES("18270", "1", "2015-10-01 18:20:57", "23.232.176.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("18271", "9", "2015-10-01 18:20:58", "23.232.176.141", "7");
INSERT INTO `wp_gf_form_view` VALUES("18272", "3", "2015-10-01 18:20:58", "23.232.176.141", "57");
INSERT INTO `wp_gf_form_view` VALUES("18273", "8", "2015-10-01 18:20:58", "23.232.176.141", "7");
INSERT INTO `wp_gf_form_view` VALUES("18274", "9", "2015-10-01 19:06:55", "66.43.52.8", "23");
INSERT INTO `wp_gf_form_view` VALUES("18275", "3", "2015-10-01 19:06:55", "66.43.52.8", "175");
INSERT INTO `wp_gf_form_view` VALUES("18276", "8", "2015-10-01 19:06:55", "66.43.52.8", "21");
INSERT INTO `wp_gf_form_view` VALUES("18277", "9", "2015-10-01 20:10:20", "207.46.13.63", "18");
INSERT INTO `wp_gf_form_view` VALUES("18278", "3", "2015-10-01 20:10:20", "207.46.13.63", "146");
INSERT INTO `wp_gf_form_view` VALUES("18279", "8", "2015-10-01 20:10:20", "207.46.13.63", "18");
INSERT INTO `wp_gf_form_view` VALUES("18280", "1", "2015-10-01 20:25:47", "104.155.71.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("18281", "8", "2015-10-01 21:11:07", "207.46.13.63", "27");
INSERT INTO `wp_gf_form_view` VALUES("18282", "9", "2015-10-01 21:11:08", "207.46.13.63", "26");
INSERT INTO `wp_gf_form_view` VALUES("18283", "3", "2015-10-01 21:11:08", "207.46.13.63", "203");
INSERT INTO `wp_gf_form_view` VALUES("18284", "1", "2015-10-01 21:11:37", "104.155.71.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("18285", "9", "2015-10-01 22:11:51", "207.46.13.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("18286", "3", "2015-10-01 22:11:53", "207.46.13.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("18287", "8", "2015-10-01 22:11:53", "207.46.13.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("18288", "9", "2015-10-01 23:05:41", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("18289", "3", "2015-10-01 23:05:44", "68.180.229.161", "44");
INSERT INTO `wp_gf_form_view` VALUES("18290", "8", "2015-10-01 23:05:44", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("18291", "9", "2015-10-02 00:14:34", "96.50.80.64", "9");
INSERT INTO `wp_gf_form_view` VALUES("18292", "3", "2015-10-02 00:14:34", "96.50.80.64", "75");
INSERT INTO `wp_gf_form_view` VALUES("18293", "8", "2015-10-02 00:14:34", "96.50.80.64", "9");
INSERT INTO `wp_gf_form_view` VALUES("18294", "1", "2015-10-02 00:23:28", "204.44.85.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("18295", "9", "2015-10-02 01:03:27", "192.161.100.11", "7");
INSERT INTO `wp_gf_form_view` VALUES("18296", "3", "2015-10-02 01:03:27", "192.161.100.11", "58");
INSERT INTO `wp_gf_form_view` VALUES("18297", "8", "2015-10-02 01:03:27", "192.161.100.11", "7");
INSERT INTO `wp_gf_form_view` VALUES("18298", "9", "2015-10-02 02:02:41", "207.46.13.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("18299", "3", "2015-10-02 02:02:41", "207.46.13.63", "16");
INSERT INTO `wp_gf_form_view` VALUES("18300", "8", "2015-10-02 02:02:42", "207.46.13.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("18301", "9", "2015-10-02 03:22:22", "96.50.30.121", "10");
INSERT INTO `wp_gf_form_view` VALUES("18302", "3", "2015-10-02 03:22:25", "96.50.30.121", "82");
INSERT INTO `wp_gf_form_view` VALUES("18303", "8", "2015-10-02 03:22:25", "96.50.30.121", "10");
INSERT INTO `wp_gf_form_view` VALUES("18304", "9", "2015-10-02 04:02:36", "157.55.39.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("18305", "3", "2015-10-02 04:02:36", "157.55.39.1", "8");
INSERT INTO `wp_gf_form_view` VALUES("18306", "8", "2015-10-02 04:02:36", "157.55.39.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("18307", "9", "2015-10-02 06:10:40", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("18308", "3", "2015-10-02 06:10:43", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("18309", "8", "2015-10-02 06:10:43", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("18310", "9", "2015-10-02 07:13:18", "157.55.39.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("18311", "3", "2015-10-02 07:13:19", "157.55.39.97", "8");
INSERT INTO `wp_gf_form_view` VALUES("18312", "8", "2015-10-02 07:13:19", "157.55.39.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("18313", "3", "2015-10-02 09:49:32", "91.200.12.128", "9");
INSERT INTO `wp_gf_form_view` VALUES("18314", "9", "2015-10-02 09:49:40", "91.200.12.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("18315", "8", "2015-10-02 09:49:43", "91.200.12.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("18316", "9", "2015-10-02 10:12:22", "157.55.39.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("18317", "3", "2015-10-02 10:12:22", "157.55.39.97", "33");
INSERT INTO `wp_gf_form_view` VALUES("18318", "8", "2015-10-02 10:12:22", "157.55.39.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("18319", "9", "2015-10-02 11:39:31", "66.249.79.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("18320", "3", "2015-10-02 11:39:33", "66.249.79.162", "58");
INSERT INTO `wp_gf_form_view` VALUES("18321", "8", "2015-10-02 11:39:33", "66.249.79.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("18322", "1", "2015-10-02 11:47:50", "104.155.71.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("18323", "9", "2015-10-02 12:04:42", "66.249.79.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("18324", "3", "2015-10-02 12:04:42", "66.249.79.169", "56");
INSERT INTO `wp_gf_form_view` VALUES("18325", "8", "2015-10-02 12:04:42", "66.249.79.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("18326", "3", "2015-10-02 13:17:51", "66.249.79.162", "26");
INSERT INTO `wp_gf_form_view` VALUES("18327", "9", "2015-10-02 13:17:52", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("18328", "8", "2015-10-02 13:17:52", "66.249.79.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("18329", "3", "2015-10-02 14:07:27", "207.46.13.63", "26");
INSERT INTO `wp_gf_form_view` VALUES("18330", "9", "2015-10-02 14:07:28", "207.46.13.63", "3");
INSERT INTO `wp_gf_form_view` VALUES("18331", "8", "2015-10-02 14:07:28", "207.46.13.63", "3");
INSERT INTO `wp_gf_form_view` VALUES("18332", "9", "2015-10-02 15:12:01", "24.69.59.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("18333", "3", "2015-10-02 15:12:01", "24.69.59.84", "17");
INSERT INTO `wp_gf_form_view` VALUES("18334", "8", "2015-10-02 15:12:01", "24.69.59.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("18335", "3", "2015-10-02 16:30:40", "66.249.79.155", "33");
INSERT INTO `wp_gf_form_view` VALUES("18336", "9", "2015-10-02 16:30:48", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("18337", "8", "2015-10-02 16:30:48", "66.249.79.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("18338", "3", "2015-10-02 17:13:31", "91.200.12.128", "91");
INSERT INTO `wp_gf_form_view` VALUES("18339", "9", "2015-10-02 17:13:43", "91.200.12.128", "15");
INSERT INTO `wp_gf_form_view` VALUES("18340", "8", "2015-10-02 17:13:44", "91.200.12.128", "12");
INSERT INTO `wp_gf_form_view` VALUES("18341", "1", "2015-10-02 17:32:25", "104.218.192.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("18342", "9", "2015-10-02 18:51:19", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("18343", "3", "2015-10-02 18:51:26", "68.180.229.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("18344", "8", "2015-10-02 18:51:26", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("18345", "9", "2015-10-02 19:01:55", "70.65.164.131", "5");
INSERT INTO `wp_gf_form_view` VALUES("18346", "3", "2015-10-02 19:01:55", "70.65.164.131", "40");
INSERT INTO `wp_gf_form_view` VALUES("18347", "8", "2015-10-02 19:01:55", "70.65.164.131", "5");
INSERT INTO `wp_gf_form_view` VALUES("18348", "9", "2015-10-02 20:50:36", "209.171.88.129", "3");
INSERT INTO `wp_gf_form_view` VALUES("18349", "3", "2015-10-02 20:50:39", "209.171.88.129", "24");
INSERT INTO `wp_gf_form_view` VALUES("18350", "8", "2015-10-02 20:50:39", "209.171.88.129", "3");
INSERT INTO `wp_gf_form_view` VALUES("18351", "9", "2015-10-02 21:35:57", "184.70.247.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("18352", "3", "2015-10-02 21:35:57", "184.70.247.14", "8");
INSERT INTO `wp_gf_form_view` VALUES("18353", "8", "2015-10-02 21:35:58", "184.70.247.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("18354", "9", "2015-10-02 22:11:31", "184.66.12.174", "4");
INSERT INTO `wp_gf_form_view` VALUES("18355", "3", "2015-10-02 22:11:33", "184.66.12.174", "36");
INSERT INTO `wp_gf_form_view` VALUES("18356", "8", "2015-10-02 22:11:33", "184.66.12.174", "4");
INSERT INTO `wp_gf_form_view` VALUES("18357", "9", "2015-10-02 23:07:54", "142.36.24.121", "6");
INSERT INTO `wp_gf_form_view` VALUES("18358", "3", "2015-10-02 23:07:54", "142.36.24.121", "41");
INSERT INTO `wp_gf_form_view` VALUES("18359", "8", "2015-10-02 23:07:54", "142.36.24.121", "5");
INSERT INTO `wp_gf_form_view` VALUES("18360", "9", "2015-10-03 01:00:28", "154.20.34.5", "12");
INSERT INTO `wp_gf_form_view` VALUES("18361", "3", "2015-10-03 01:00:29", "154.20.34.5", "96");
INSERT INTO `wp_gf_form_view` VALUES("18362", "8", "2015-10-03 01:00:29", "154.20.34.5", "12");
INSERT INTO `wp_gf_form_view` VALUES("18363", "1", "2015-10-03 01:04:54", "154.20.34.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("18364", "3", "2015-10-03 02:36:28", "68.180.229.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("18365", "9", "2015-10-03 02:37:06", "188.65.117.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("18366", "8", "2015-10-03 02:37:07", "188.65.117.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("18367", "9", "2015-10-03 03:09:04", "24.108.135.237", "7");
INSERT INTO `wp_gf_form_view` VALUES("18368", "3", "2015-10-03 03:09:04", "24.108.135.237", "41");
INSERT INTO `wp_gf_form_view` VALUES("18369", "8", "2015-10-03 03:09:05", "24.108.135.237", "5");
INSERT INTO `wp_gf_form_view` VALUES("18370", "9", "2015-10-03 04:42:34", "220.181.108.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("18371", "3", "2015-10-03 04:42:35", "220.181.108.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("18372", "8", "2015-10-03 04:42:35", "220.181.108.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("18373", "3", "2015-10-03 05:08:58", "91.200.12.128", "26");
INSERT INTO `wp_gf_form_view` VALUES("18374", "9", "2015-10-03 05:08:59", "188.65.117.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("18375", "9", "2015-10-03 05:08:59", "91.200.12.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("18376", "8", "2015-10-03 05:08:59", "188.65.117.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("18377", "9", "2015-10-03 06:04:32", "68.180.229.161", "58");
INSERT INTO `wp_gf_form_view` VALUES("18378", "3", "2015-10-03 06:04:33", "68.180.229.161", "458");
INSERT INTO `wp_gf_form_view` VALUES("18379", "8", "2015-10-03 06:04:33", "68.180.229.161", "57");
INSERT INTO `wp_gf_form_view` VALUES("18380", "1", "2015-10-03 06:13:15", "82.211.48.203", "2");
INSERT INTO `wp_gf_form_view` VALUES("18381", "2", "2015-10-03 06:53:01", "188.65.117.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("18382", "9", "2015-10-03 07:00:18", "188.65.117.170", "9");
INSERT INTO `wp_gf_form_view` VALUES("18383", "3", "2015-10-03 07:00:18", "188.65.117.170", "72");
INSERT INTO `wp_gf_form_view` VALUES("18384", "8", "2015-10-03 07:00:18", "188.65.117.170", "9");
INSERT INTO `wp_gf_form_view` VALUES("18385", "3", "2015-10-03 08:00:35", "91.200.12.128", "58");
INSERT INTO `wp_gf_form_view` VALUES("18386", "9", "2015-10-03 08:00:41", "91.200.12.128", "8");
INSERT INTO `wp_gf_form_view` VALUES("18387", "8", "2015-10-03 08:00:42", "91.200.12.128", "8");
INSERT INTO `wp_gf_form_view` VALUES("18388", "1", "2015-10-03 09:04:18", "82.211.48.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("18389", "9", "2015-10-03 09:04:18", "82.211.48.228", "9");
INSERT INTO `wp_gf_form_view` VALUES("18390", "3", "2015-10-03 09:04:18", "82.211.48.228", "59");
INSERT INTO `wp_gf_form_view` VALUES("18391", "8", "2015-10-03 09:04:18", "82.211.48.228", "9");
INSERT INTO `wp_gf_form_view` VALUES("18392", "9", "2015-10-03 10:26:55", "94.23.55.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("18393", "3", "2015-10-03 10:26:57", "94.23.55.119", "16");
INSERT INTO `wp_gf_form_view` VALUES("18394", "8", "2015-10-03 10:26:57", "94.23.55.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("18395", "1", "2015-10-03 10:54:42", "96.54.167.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("18396", "9", "2015-10-03 11:12:43", "66.249.79.162", "79");
INSERT INTO `wp_gf_form_view` VALUES("18397", "3", "2015-10-03 11:12:43", "66.249.79.162", "659");
INSERT INTO `wp_gf_form_view` VALUES("18398", "8", "2015-10-03 11:12:43", "66.249.79.162", "84");
INSERT INTO `wp_gf_form_view` VALUES("18399", "2", "2015-10-03 11:46:29", "176.31.126.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("18400", "1", "2015-10-03 11:46:33", "176.31.126.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("18401", "5", "2015-10-03 11:52:26", "176.31.126.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("18402", "9", "2015-10-03 12:06:26", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("18403", "3", "2015-10-03 12:06:26", "68.180.229.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("18404", "8", "2015-10-03 12:06:27", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("18405", "3", "2015-10-03 13:25:07", "188.65.117.161", "76");
INSERT INTO `wp_gf_form_view` VALUES("18406", "9", "2015-10-03 13:25:09", "188.65.117.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("18407", "8", "2015-10-03 13:25:10", "188.65.117.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("18408", "6", "2015-10-03 13:47:23", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("18409", "1", "2015-10-03 14:20:25", "62.210.178.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("18410", "9", "2015-10-03 14:20:25", "62.210.178.179", "10");
INSERT INTO `wp_gf_form_view` VALUES("18411", "3", "2015-10-03 14:20:25", "62.210.178.179", "82");
INSERT INTO `wp_gf_form_view` VALUES("18412", "8", "2015-10-03 14:20:25", "62.210.178.179", "10");
INSERT INTO `wp_gf_form_view` VALUES("18413", "6", "2015-10-03 14:29:24", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("18414", "9", "2015-10-03 15:13:04", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("18415", "3", "2015-10-03 15:13:04", "68.180.229.161", "48");
INSERT INTO `wp_gf_form_view` VALUES("18416", "8", "2015-10-03 15:13:04", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("18417", "9", "2015-10-03 16:21:34", "199.168.141.174", "9");
INSERT INTO `wp_gf_form_view` VALUES("18418", "3", "2015-10-03 16:21:34", "199.168.141.174", "91");
INSERT INTO `wp_gf_form_view` VALUES("18419", "8", "2015-10-03 16:21:34", "199.168.141.174", "11");
INSERT INTO `wp_gf_form_view` VALUES("18420", "3", "2015-10-03 17:02:21", "157.55.39.1", "112");
INSERT INTO `wp_gf_form_view` VALUES("18421", "8", "2015-10-03 17:02:21", "157.55.39.1", "14");
INSERT INTO `wp_gf_form_view` VALUES("18422", "9", "2015-10-03 17:02:22", "157.55.39.1", "10");
INSERT INTO `wp_gf_form_view` VALUES("18423", "9", "2015-10-03 18:01:06", "202.46.48.17", "8");
INSERT INTO `wp_gf_form_view` VALUES("18424", "3", "2015-10-03 18:01:06", "202.46.48.17", "64");
INSERT INTO `wp_gf_form_view` VALUES("18425", "8", "2015-10-03 18:01:07", "202.46.48.17", "9");
INSERT INTO `wp_gf_form_view` VALUES("18426", "5", "2015-10-03 19:01:41", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("18427", "9", "2015-10-03 19:01:42", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("18428", "3", "2015-10-03 19:01:42", "68.180.229.161", "87");
INSERT INTO `wp_gf_form_view` VALUES("18429", "8", "2015-10-03 19:01:42", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("18430", "3", "2015-10-03 20:09:53", "202.46.58.210", "63");
INSERT INTO `wp_gf_form_view` VALUES("18431", "9", "2015-10-03 20:09:53", "202.46.58.210", "7");
INSERT INTO `wp_gf_form_view` VALUES("18432", "8", "2015-10-03 20:09:53", "202.46.58.210", "8");
INSERT INTO `wp_gf_form_view` VALUES("18433", "1", "2015-10-03 20:21:42", "46.246.62.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("18434", "9", "2015-10-03 21:08:26", "202.46.58.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("18435", "3", "2015-10-03 21:08:26", "202.46.58.77", "46");
INSERT INTO `wp_gf_form_view` VALUES("18436", "8", "2015-10-03 21:08:26", "202.46.58.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("18437", "1", "2015-10-03 22:06:01", "192.69.254.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("18438", "9", "2015-10-03 22:06:01", "192.69.254.155", "16");
INSERT INTO `wp_gf_form_view` VALUES("18439", "3", "2015-10-03 22:06:01", "192.69.254.155", "139");
INSERT INTO `wp_gf_form_view` VALUES("18440", "8", "2015-10-03 22:06:01", "192.69.254.155", "17");
INSERT INTO `wp_gf_form_view` VALUES("18441", "9", "2015-10-03 23:05:30", "202.46.51.204", "7");
INSERT INTO `wp_gf_form_view` VALUES("18442", "3", "2015-10-03 23:05:31", "202.46.51.204", "66");
INSERT INTO `wp_gf_form_view` VALUES("18443", "8", "2015-10-03 23:05:31", "202.46.51.204", "7");
INSERT INTO `wp_gf_form_view` VALUES("18444", "3", "2015-10-04 00:04:02", "202.46.49.110", "74");
INSERT INTO `wp_gf_form_view` VALUES("18445", "8", "2015-10-04 00:04:02", "202.46.49.110", "9");
INSERT INTO `wp_gf_form_view` VALUES("18446", "9", "2015-10-04 00:04:03", "202.46.49.110", "7");
INSERT INTO `wp_gf_form_view` VALUES("18447", "1", "2015-10-04 00:08:54", "151.80.31.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("18448", "8", "2015-10-04 01:02:34", "202.46.49.117", "18");
INSERT INTO `wp_gf_form_view` VALUES("18449", "3", "2015-10-04 01:02:34", "202.46.49.117", "132");
INSERT INTO `wp_gf_form_view` VALUES("18450", "9", "2015-10-04 01:02:34", "202.46.49.117", "16");
INSERT INTO `wp_gf_form_view` VALUES("18451", "3", "2015-10-04 02:01:06", "202.46.51.114", "126");
INSERT INTO `wp_gf_form_view` VALUES("18452", "9", "2015-10-04 02:01:06", "202.46.51.114", "14");
INSERT INTO `wp_gf_form_view` VALUES("18453", "8", "2015-10-04 02:01:07", "202.46.51.114", "15");
INSERT INTO `wp_gf_form_view` VALUES("18454", "1", "2015-10-04 02:28:39", "104.237.83.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("18455", "9", "2015-10-04 03:11:21", "202.46.58.135", "16");
INSERT INTO `wp_gf_form_view` VALUES("18456", "3", "2015-10-04 03:11:21", "202.46.58.135", "116");
INSERT INTO `wp_gf_form_view` VALUES("18457", "8", "2015-10-04 03:11:21", "202.46.58.135", "18");
INSERT INTO `wp_gf_form_view` VALUES("18458", "3", "2015-10-04 04:09:53", "202.46.53.44", "148");
INSERT INTO `wp_gf_form_view` VALUES("18459", "8", "2015-10-04 04:09:53", "202.46.53.44", "19");
INSERT INTO `wp_gf_form_view` VALUES("18460", "9", "2015-10-04 04:09:53", "202.46.53.44", "16");
INSERT INTO `wp_gf_form_view` VALUES("18461", "1", "2015-10-04 04:41:48", "201.51.45.147", "4");
INSERT INTO `wp_gf_form_view` VALUES("18462", "3", "2015-10-04 05:08:25", "202.46.57.122", "74");
INSERT INTO `wp_gf_form_view` VALUES("18463", "8", "2015-10-04 05:08:25", "202.46.57.122", "9");
INSERT INTO `wp_gf_form_view` VALUES("18464", "9", "2015-10-04 05:08:26", "202.46.57.122", "8");
INSERT INTO `wp_gf_form_view` VALUES("18465", "7", "2015-10-04 05:38:47", "207.46.13.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("18466", "3", "2015-10-04 06:06:41", "151.80.31.123", "137");
INSERT INTO `wp_gf_form_view` VALUES("18467", "9", "2015-10-04 06:06:42", "151.80.31.123", "13");
INSERT INTO `wp_gf_form_view` VALUES("18468", "8", "2015-10-04 06:06:42", "151.80.31.123", "14");
INSERT INTO `wp_gf_form_view` VALUES("18469", "3", "2015-10-04 07:05:30", "202.46.49.117", "99");
INSERT INTO `wp_gf_form_view` VALUES("18470", "8", "2015-10-04 07:05:30", "202.46.49.117", "12");
INSERT INTO `wp_gf_form_view` VALUES("18471", "9", "2015-10-04 07:05:31", "202.46.49.117", "10");
INSERT INTO `wp_gf_form_view` VALUES("18472", "1", "2015-10-04 07:17:48", "185.81.99.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("18473", "9", "2015-10-04 08:04:02", "202.46.50.180", "15");
INSERT INTO `wp_gf_form_view` VALUES("18474", "3", "2015-10-04 08:04:03", "202.46.50.180", "148");
INSERT INTO `wp_gf_form_view` VALUES("18475", "8", "2015-10-04 08:04:03", "202.46.50.180", "20");
INSERT INTO `wp_gf_form_view` VALUES("18476", "9", "2015-10-04 09:02:34", "202.46.57.170", "15");
INSERT INTO `wp_gf_form_view` VALUES("18477", "3", "2015-10-04 09:02:34", "202.46.57.170", "147");
INSERT INTO `wp_gf_form_view` VALUES("18478", "8", "2015-10-04 09:02:34", "202.46.57.170", "19");
INSERT INTO `wp_gf_form_view` VALUES("18479", "1", "2015-10-04 09:17:55", "220.249.185.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("18480", "9", "2015-10-04 10:00:38", "61.230.244.130", "14");
INSERT INTO `wp_gf_form_view` VALUES("18481", "3", "2015-10-04 10:00:38", "61.230.244.130", "146");
INSERT INTO `wp_gf_form_view` VALUES("18482", "8", "2015-10-04 10:00:38", "61.230.244.130", "19");
INSERT INTO `wp_gf_form_view` VALUES("18483", "8", "2015-10-04 11:03:14", "202.46.56.64", "14");
INSERT INTO `wp_gf_form_view` VALUES("18484", "9", "2015-10-04 11:03:14", "202.46.56.64", "12");
INSERT INTO `wp_gf_form_view` VALUES("18485", "3", "2015-10-04 11:03:14", "202.46.56.64", "107");
INSERT INTO `wp_gf_form_view` VALUES("18486", "9", "2015-10-04 12:01:45", "202.46.53.164", "18");
INSERT INTO `wp_gf_form_view` VALUES("18487", "3", "2015-10-04 12:01:45", "202.46.53.164", "156");
INSERT INTO `wp_gf_form_view` VALUES("18488", "8", "2015-10-04 12:01:46", "202.46.53.164", "19");
INSERT INTO `wp_gf_form_view` VALUES("18489", "1", "2015-10-04 12:29:26", "82.211.48.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("18490", "9", "2015-10-04 13:01:22", "66.249.79.162", "31");
INSERT INTO `wp_gf_form_view` VALUES("18491", "3", "2015-10-04 13:01:22", "66.249.79.162", "284");
INSERT INTO `wp_gf_form_view` VALUES("18492", "8", "2015-10-04 13:01:22", "66.249.79.162", "35");
INSERT INTO `wp_gf_form_view` VALUES("18493", "1", "2015-10-04 13:24:29", "192.255.79.78", "2");
INSERT INTO `wp_gf_form_view` VALUES("18494", "9", "2015-10-04 14:06:58", "202.46.58.26", "13");
INSERT INTO `wp_gf_form_view` VALUES("18495", "3", "2015-10-04 14:06:58", "202.46.58.26", "133");
INSERT INTO `wp_gf_form_view` VALUES("18496", "8", "2015-10-04 14:06:58", "202.46.58.26", "17");
INSERT INTO `wp_gf_form_view` VALUES("18497", "3", "2015-10-04 15:03:35", "91.200.12.128", "200");
INSERT INTO `wp_gf_form_view` VALUES("18498", "9", "2015-10-04 15:03:35", "91.200.12.128", "24");
INSERT INTO `wp_gf_form_view` VALUES("18499", "8", "2015-10-04 15:03:35", "91.200.12.128", "28");
INSERT INTO `wp_gf_form_view` VALUES("18500", "1", "2015-10-04 15:09:41", "166.70.181.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("18501", "7", "2015-10-04 15:20:47", "202.46.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("18502", "9", "2015-10-04 16:02:04", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("18503", "3", "2015-10-04 16:02:04", "68.180.229.161", "115");
INSERT INTO `wp_gf_form_view` VALUES("18504", "8", "2015-10-04 16:02:04", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("18505", "3", "2015-10-04 17:02:33", "202.46.54.109", "136");
INSERT INTO `wp_gf_form_view` VALUES("18506", "8", "2015-10-04 17:02:34", "202.46.54.109", "17");
INSERT INTO `wp_gf_form_view` VALUES("18507", "9", "2015-10-04 17:02:34", "202.46.54.109", "13");
INSERT INTO `wp_gf_form_view` VALUES("18508", "9", "2015-10-04 18:01:07", "202.46.49.199", "17");
INSERT INTO `wp_gf_form_view` VALUES("18509", "3", "2015-10-04 18:01:07", "202.46.49.199", "153");
INSERT INTO `wp_gf_form_view` VALUES("18510", "8", "2015-10-04 18:01:07", "202.46.49.199", "20");
INSERT INTO `wp_gf_form_view` VALUES("18511", "9", "2015-10-04 19:03:15", "202.46.48.96", "20");
INSERT INTO `wp_gf_form_view` VALUES("18512", "3", "2015-10-04 19:03:15", "202.46.48.96", "164");
INSERT INTO `wp_gf_form_view` VALUES("18513", "8", "2015-10-04 19:03:15", "202.46.48.96", "21");
INSERT INTO `wp_gf_form_view` VALUES("18514", "3", "2015-10-04 20:01:46", "202.46.49.199", "145");
INSERT INTO `wp_gf_form_view` VALUES("18515", "8", "2015-10-04 20:01:46", "202.46.49.199", "18");
INSERT INTO `wp_gf_form_view` VALUES("18516", "9", "2015-10-04 20:01:47", "202.46.49.199", "17");
INSERT INTO `wp_gf_form_view` VALUES("18517", "9", "2015-10-04 21:00:17", "202.46.53.13", "16");
INSERT INTO `wp_gf_form_view` VALUES("18518", "3", "2015-10-04 21:00:17", "202.46.53.13", "127");
INSERT INTO `wp_gf_form_view` VALUES("18519", "8", "2015-10-04 21:00:18", "202.46.53.13", "16");
INSERT INTO `wp_gf_form_view` VALUES("18520", "9", "2015-10-04 22:04:59", "188.65.117.160", "15");
INSERT INTO `wp_gf_form_view` VALUES("18521", "3", "2015-10-04 22:04:59", "188.65.117.160", "142");
INSERT INTO `wp_gf_form_view` VALUES("18522", "8", "2015-10-04 22:04:59", "188.65.117.160", "21");
INSERT INTO `wp_gf_form_view` VALUES("18523", "3", "2015-10-04 23:01:21", "68.180.229.161", "105");
INSERT INTO `wp_gf_form_view` VALUES("18524", "9", "2015-10-04 23:01:22", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("18525", "8", "2015-10-04 23:01:22", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("18526", "9", "2015-10-05 00:04:02", "202.46.57.18", "12");
INSERT INTO `wp_gf_form_view` VALUES("18527", "3", "2015-10-05 00:04:02", "202.46.57.18", "133");
INSERT INTO `wp_gf_form_view` VALUES("18528", "8", "2015-10-05 00:04:02", "202.46.57.18", "17");
INSERT INTO `wp_gf_form_view` VALUES("18529", "3", "2015-10-05 01:02:33", "202.46.55.157", "188");
INSERT INTO `wp_gf_form_view` VALUES("18530", "8", "2015-10-05 01:02:33", "202.46.55.157", "22");
INSERT INTO `wp_gf_form_view` VALUES("18531", "9", "2015-10-05 01:02:34", "202.46.55.157", "20");
INSERT INTO `wp_gf_form_view` VALUES("18532", "1", "2015-10-05 01:41:02", "62.210.178.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("18533", "3", "2015-10-05 02:01:05", "202.46.52.18", "135");
INSERT INTO `wp_gf_form_view` VALUES("18534", "8", "2015-10-05 02:01:05", "202.46.52.18", "18");
INSERT INTO `wp_gf_form_view` VALUES("18535", "9", "2015-10-05 02:01:06", "202.46.52.18", "13");
INSERT INTO `wp_gf_form_view` VALUES("18536", "3", "2015-10-05 03:03:13", "202.46.49.73", "147");
INSERT INTO `wp_gf_form_view` VALUES("18537", "8", "2015-10-05 03:03:13", "202.46.49.73", "18");
INSERT INTO `wp_gf_form_view` VALUES("18538", "9", "2015-10-05 03:03:14", "202.46.49.73", "15");
INSERT INTO `wp_gf_form_view` VALUES("18539", "9", "2015-10-05 04:00:36", "188.65.117.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("18540", "3", "2015-10-05 04:00:36", "188.65.117.162", "152");
INSERT INTO `wp_gf_form_view` VALUES("18541", "8", "2015-10-05 04:00:36", "188.65.117.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("18542", "2", "2015-10-05 04:39:50", "207.46.13.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("18543", "1", "2015-10-05 04:39:51", "207.46.13.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("18544", "3", "2015-10-05 05:00:17", "202.46.54.188", "179");
INSERT INTO `wp_gf_form_view` VALUES("18545", "8", "2015-10-05 05:00:17", "202.46.54.188", "22");
INSERT INTO `wp_gf_form_view` VALUES("18546", "9", "2015-10-05 05:00:18", "202.46.54.188", "17");
INSERT INTO `wp_gf_form_view` VALUES("18547", "9", "2015-10-05 06:06:57", "202.46.57.13", "16");
INSERT INTO `wp_gf_form_view` VALUES("18548", "3", "2015-10-05 06:06:57", "202.46.57.13", "158");
INSERT INTO `wp_gf_form_view` VALUES("18549", "8", "2015-10-05 06:06:57", "202.46.57.13", "21");
INSERT INTO `wp_gf_form_view` VALUES("18550", "1", "2015-10-05 06:21:30", "165.231.27.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("18551", "9", "2015-10-05 07:05:29", "202.46.49.198", "12");
INSERT INTO `wp_gf_form_view` VALUES("18552", "3", "2015-10-05 07:05:29", "202.46.49.198", "122");
INSERT INTO `wp_gf_form_view` VALUES("18553", "8", "2015-10-05 07:05:29", "202.46.49.198", "15");
INSERT INTO `wp_gf_form_view` VALUES("18554", "3", "2015-10-05 08:04:01", "202.46.51.207", "162");
INSERT INTO `wp_gf_form_view` VALUES("18555", "9", "2015-10-05 08:04:02", "202.46.51.207", "16");
INSERT INTO `wp_gf_form_view` VALUES("18556", "8", "2015-10-05 08:04:02", "202.46.51.207", "20");
INSERT INTO `wp_gf_form_view` VALUES("18557", "9", "2015-10-05 09:02:34", "202.46.58.210", "13");
INSERT INTO `wp_gf_form_view` VALUES("18558", "3", "2015-10-05 09:02:34", "202.46.58.210", "110");
INSERT INTO `wp_gf_form_view` VALUES("18559", "8", "2015-10-05 09:02:34", "202.46.58.210", "14");
INSERT INTO `wp_gf_form_view` VALUES("18560", "2", "2015-10-05 09:28:55", "157.55.39.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("18561", "1", "2015-10-05 09:54:19", "157.56.3.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("18562", "9", "2015-10-05 10:01:06", "202.46.53.151", "9");
INSERT INTO `wp_gf_form_view` VALUES("18563", "3", "2015-10-05 10:01:07", "202.46.53.151", "76");
INSERT INTO `wp_gf_form_view` VALUES("18564", "8", "2015-10-05 10:01:07", "202.46.53.151", "9");
INSERT INTO `wp_gf_form_view` VALUES("18565", "1", "2015-10-05 10:32:49", "157.56.2.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("18566", "9", "2015-10-05 11:04:31", "207.46.13.54", "11");
INSERT INTO `wp_gf_form_view` VALUES("18567", "3", "2015-10-05 11:04:31", "207.46.13.54", "93");
INSERT INTO `wp_gf_form_view` VALUES("18568", "8", "2015-10-05 11:04:32", "207.46.13.54", "13");
INSERT INTO `wp_gf_form_view` VALUES("18569", "9", "2015-10-05 12:09:52", "202.46.56.18", "8");
INSERT INTO `wp_gf_form_view` VALUES("18570", "3", "2015-10-05 12:09:52", "202.46.56.18", "67");
INSERT INTO `wp_gf_form_view` VALUES("18571", "8", "2015-10-05 12:09:53", "202.46.56.18", "9");
INSERT INTO `wp_gf_form_view` VALUES("18572", "9", "2015-10-05 13:08:24", "202.46.50.191", "11");
INSERT INTO `wp_gf_form_view` VALUES("18573", "3", "2015-10-05 13:08:24", "202.46.50.191", "83");
INSERT INTO `wp_gf_form_view` VALUES("18574", "8", "2015-10-05 13:08:24", "202.46.50.191", "12");
INSERT INTO `wp_gf_form_view` VALUES("18575", "1", "2015-10-05 13:43:44", "192.210.226.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("18576", "3", "2015-10-05 14:06:58", "202.46.57.70", "83");
INSERT INTO `wp_gf_form_view` VALUES("18577", "8", "2015-10-05 14:06:59", "202.46.57.70", "13");
INSERT INTO `wp_gf_form_view` VALUES("18578", "9", "2015-10-05 14:06:59", "202.46.57.70", "9");
INSERT INTO `wp_gf_form_view` VALUES("18579", "3", "2015-10-05 15:05:28", "202.46.50.161", "88");
INSERT INTO `wp_gf_form_view` VALUES("18580", "8", "2015-10-05 15:05:29", "202.46.50.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("18581", "9", "2015-10-05 15:05:29", "202.46.50.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("18582", "9", "2015-10-05 16:00:23", "91.200.12.63", "13");
INSERT INTO `wp_gf_form_view` VALUES("18583", "3", "2015-10-05 16:00:23", "91.200.12.63", "120");
INSERT INTO `wp_gf_form_view` VALUES("18584", "8", "2015-10-05 16:00:23", "91.200.12.63", "15");
INSERT INTO `wp_gf_form_view` VALUES("18585", "9", "2015-10-05 17:02:35", "202.46.48.135", "12");
INSERT INTO `wp_gf_form_view` VALUES("18586", "3", "2015-10-05 17:02:36", "202.46.48.135", "105");
INSERT INTO `wp_gf_form_view` VALUES("18587", "8", "2015-10-05 17:02:36", "202.46.48.135", "14");
INSERT INTO `wp_gf_form_view` VALUES("18588", "5", "2015-10-05 17:39:33", "188.65.117.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("18589", "9", "2015-10-05 18:01:05", "202.46.50.133", "16");
INSERT INTO `wp_gf_form_view` VALUES("18590", "3", "2015-10-05 18:01:06", "202.46.50.133", "131");
INSERT INTO `wp_gf_form_view` VALUES("18591", "8", "2015-10-05 18:01:06", "202.46.50.133", "17");
INSERT INTO `wp_gf_form_view` VALUES("18592", "1", "2015-10-05 18:22:14", "108.61.228.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("18593", "8", "2015-10-05 19:11:19", "202.46.50.99", "8");
INSERT INTO `wp_gf_form_view` VALUES("18594", "9", "2015-10-05 19:11:20", "202.46.50.99", "6");
INSERT INTO `wp_gf_form_view` VALUES("18595", "3", "2015-10-05 19:11:20", "202.46.50.99", "53");
INSERT INTO `wp_gf_form_view` VALUES("18596", "9", "2015-10-05 20:09:52", "202.46.52.202", "13");
INSERT INTO `wp_gf_form_view` VALUES("18597", "3", "2015-10-05 20:09:52", "202.46.52.202", "96");
INSERT INTO `wp_gf_form_view` VALUES("18598", "8", "2015-10-05 20:09:53", "202.46.52.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("18599", "1", "2015-10-05 20:31:14", "86.107.229.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("18600", "9", "2015-10-05 21:08:44", "202.46.55.157", "8");
INSERT INTO `wp_gf_form_view` VALUES("18601", "3", "2015-10-05 21:08:45", "202.46.55.157", "58");
INSERT INTO `wp_gf_form_view` VALUES("18602", "8", "2015-10-05 21:08:45", "202.46.55.157", "7");
INSERT INTO `wp_gf_form_view` VALUES("18603", "9", "2015-10-05 22:06:56", "202.46.52.73", "16");
INSERT INTO `wp_gf_form_view` VALUES("18604", "3", "2015-10-05 22:06:57", "202.46.52.73", "126");
INSERT INTO `wp_gf_form_view` VALUES("18605", "8", "2015-10-05 22:06:57", "202.46.52.73", "16");
INSERT INTO `wp_gf_form_view` VALUES("18606", "9", "2015-10-05 23:09:22", "188.65.117.155", "13");
INSERT INTO `wp_gf_form_view` VALUES("18607", "3", "2015-10-05 23:09:22", "188.65.117.155", "110");
INSERT INTO `wp_gf_form_view` VALUES("18608", "8", "2015-10-05 23:09:22", "188.65.117.155", "14");
INSERT INTO `wp_gf_form_view` VALUES("18609", "1", "2015-10-05 23:14:17", "107.150.42.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("18610", "2", "2015-10-05 23:14:18", "107.150.42.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("18611", "9", "2015-10-06 00:04:01", "202.46.57.24", "7");
INSERT INTO `wp_gf_form_view` VALUES("18612", "3", "2015-10-06 00:04:01", "202.46.57.24", "68");
INSERT INTO `wp_gf_form_view` VALUES("18613", "8", "2015-10-06 00:04:01", "202.46.57.24", "8");
INSERT INTO `wp_gf_form_view` VALUES("18614", "6", "2015-10-06 00:19:26", "151.80.31.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("18615", "3", "2015-10-06 01:02:33", "202.46.54.95", "85");
INSERT INTO `wp_gf_form_view` VALUES("18616", "8", "2015-10-06 01:02:33", "202.46.54.95", "12");
INSERT INTO `wp_gf_form_view` VALUES("18617", "9", "2015-10-06 01:02:34", "202.46.54.95", "7");
INSERT INTO `wp_gf_form_view` VALUES("18618", "1", "2015-10-06 01:31:41", "78.225.12.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("18619", "9", "2015-10-06 02:01:06", "202.46.48.203", "8");
INSERT INTO `wp_gf_form_view` VALUES("18620", "3", "2015-10-06 02:01:06", "202.46.48.203", "77");
INSERT INTO `wp_gf_form_view` VALUES("18621", "8", "2015-10-06 02:01:06", "202.46.48.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("18622", "9", "2015-10-06 03:07:55", "154.5.144.181", "15");
INSERT INTO `wp_gf_form_view` VALUES("18623", "3", "2015-10-06 03:07:55", "154.5.144.181", "124");
INSERT INTO `wp_gf_form_view` VALUES("18624", "8", "2015-10-06 03:07:56", "154.5.144.181", "16");
INSERT INTO `wp_gf_form_view` VALUES("18625", "9", "2015-10-06 04:05:59", "151.80.31.123", "7");
INSERT INTO `wp_gf_form_view` VALUES("18626", "3", "2015-10-06 04:05:59", "151.80.31.123", "64");
INSERT INTO `wp_gf_form_view` VALUES("18627", "8", "2015-10-06 04:05:59", "151.80.31.123", "8");
INSERT INTO `wp_gf_form_view` VALUES("18628", "9", "2015-10-06 05:08:24", "202.46.52.43", "15");
INSERT INTO `wp_gf_form_view` VALUES("18629", "3", "2015-10-06 05:08:24", "202.46.52.43", "120");
INSERT INTO `wp_gf_form_view` VALUES("18630", "8", "2015-10-06 05:08:24", "202.46.52.43", "15");
INSERT INTO `wp_gf_form_view` VALUES("18631", "1", "2015-10-06 05:09:57", "106.38.194.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("18632", "9", "2015-10-06 06:03:34", "205.124.117.54", "46");
INSERT INTO `wp_gf_form_view` VALUES("18633", "3", "2015-10-06 06:03:34", "205.124.117.54", "372");
INSERT INTO `wp_gf_form_view` VALUES("18634", "8", "2015-10-06 06:03:34", "205.124.117.54", "48");
INSERT INTO `wp_gf_form_view` VALUES("18635", "1", "2015-10-06 06:05:00", "205.124.117.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("18636", "2", "2015-10-06 06:05:05", "205.124.117.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("18637", "9", "2015-10-06 07:05:29", "202.46.55.131", "22");
INSERT INTO `wp_gf_form_view` VALUES("18638", "3", "2015-10-06 07:05:29", "202.46.55.131", "195");
INSERT INTO `wp_gf_form_view` VALUES("18639", "8", "2015-10-06 07:05:30", "202.46.55.131", "24");
INSERT INTO `wp_gf_form_view` VALUES("18640", "7", "2015-10-06 07:37:20", "207.46.13.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("18641", "3", "2015-10-06 08:04:00", "202.46.53.123", "78");
INSERT INTO `wp_gf_form_view` VALUES("18642", "9", "2015-10-06 08:04:02", "202.46.53.123", "8");
INSERT INTO `wp_gf_form_view` VALUES("18643", "8", "2015-10-06 08:04:02", "202.46.53.123", "9");
INSERT INTO `wp_gf_form_view` VALUES("18644", "3", "2015-10-06 09:02:33", "202.46.53.157", "132");
INSERT INTO `wp_gf_form_view` VALUES("18645", "8", "2015-10-06 09:02:34", "202.46.53.157", "19");
INSERT INTO `wp_gf_form_view` VALUES("18646", "9", "2015-10-06 09:02:34", "202.46.53.157", "15");
INSERT INTO `wp_gf_form_view` VALUES("18647", "3", "2015-10-06 10:01:05", "202.46.55.123", "140");
INSERT INTO `wp_gf_form_view` VALUES("18648", "8", "2015-10-06 10:01:05", "202.46.55.123", "17");
INSERT INTO `wp_gf_form_view` VALUES("18649", "9", "2015-10-06 10:01:06", "202.46.55.123", "16");
INSERT INTO `wp_gf_form_view` VALUES("18650", "9", "2015-10-06 11:03:14", "66.249.74.54", "8");
INSERT INTO `wp_gf_form_view` VALUES("18651", "3", "2015-10-06 11:03:14", "66.249.74.54", "69");
INSERT INTO `wp_gf_form_view` VALUES("18652", "8", "2015-10-06 11:03:15", "66.249.74.54", "8");
INSERT INTO `wp_gf_form_view` VALUES("18653", "9", "2015-10-06 12:09:52", "202.46.52.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("18654", "3", "2015-10-06 12:09:52", "202.46.52.104", "72");
INSERT INTO `wp_gf_form_view` VALUES("18655", "8", "2015-10-06 12:09:52", "202.46.52.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("18656", "9", "2015-10-06 13:06:44", "54.209.60.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("18657", "3", "2015-10-06 13:06:44", "54.209.60.63", "74");
INSERT INTO `wp_gf_form_view` VALUES("18658", "8", "2015-10-06 13:06:44", "54.209.60.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("18659", "3", "2015-10-06 14:06:56", "202.46.50.191", "113");
INSERT INTO `wp_gf_form_view` VALUES("18660", "9", "2015-10-06 14:06:56", "202.46.50.191", "14");
INSERT INTO `wp_gf_form_view` VALUES("18661", "8", "2015-10-06 14:06:56", "202.46.50.191", "14");
INSERT INTO `wp_gf_form_view` VALUES("18662", "1", "2015-10-06 14:46:57", "62.210.178.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("18663", "9", "2015-10-06 15:02:05", "24.68.134.189", "11");
INSERT INTO `wp_gf_form_view` VALUES("18664", "3", "2015-10-06 15:02:05", "24.68.134.189", "77");
INSERT INTO `wp_gf_form_view` VALUES("18665", "8", "2015-10-06 15:02:06", "24.68.134.189", "11");
INSERT INTO `wp_gf_form_view` VALUES("18666", "3", "2015-10-06 16:04:04", "202.46.57.122", "68");
INSERT INTO `wp_gf_form_view` VALUES("18667", "9", "2015-10-06 16:04:04", "202.46.57.122", "9");
INSERT INTO `wp_gf_form_view` VALUES("18668", "8", "2015-10-06 16:04:05", "202.46.57.122", "8");
INSERT INTO `wp_gf_form_view` VALUES("18669", "3", "2015-10-06 17:02:32", "202.46.58.210", "101");
INSERT INTO `wp_gf_form_view` VALUES("18670", "8", "2015-10-06 17:02:33", "202.46.58.210", "13");
INSERT INTO `wp_gf_form_view` VALUES("18671", "9", "2015-10-06 17:02:33", "202.46.58.210", "11");
INSERT INTO `wp_gf_form_view` VALUES("18672", "3", "2015-10-06 18:01:04", "202.46.48.16", "141");
INSERT INTO `wp_gf_form_view` VALUES("18673", "8", "2015-10-06 18:01:05", "202.46.48.16", "18");
INSERT INTO `wp_gf_form_view` VALUES("18674", "9", "2015-10-06 18:01:05", "202.46.48.16", "16");
INSERT INTO `wp_gf_form_view` VALUES("18675", "9", "2015-10-06 19:01:30", "24.69.73.224", "16");
INSERT INTO `wp_gf_form_view` VALUES("18676", "3", "2015-10-06 19:01:31", "24.69.73.224", "148");
INSERT INTO `wp_gf_form_view` VALUES("18677", "8", "2015-10-06 19:01:31", "24.69.73.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("18678", "1", "2015-10-06 20:02:34", "107.189.36.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("18679", "9", "2015-10-06 20:02:34", "107.189.36.6", "15");
INSERT INTO `wp_gf_form_view` VALUES("18680", "3", "2015-10-06 20:02:34", "107.189.36.6", "131");
INSERT INTO `wp_gf_form_view` VALUES("18681", "8", "2015-10-06 20:02:34", "107.189.36.6", "18");
INSERT INTO `wp_gf_form_view` VALUES("18682", "9", "2015-10-06 21:03:54", "66.249.74.54", "14");
INSERT INTO `wp_gf_form_view` VALUES("18683", "3", "2015-10-06 21:03:54", "66.249.74.54", "122");
INSERT INTO `wp_gf_form_view` VALUES("18684", "8", "2015-10-06 21:03:54", "66.249.74.54", "15");
INSERT INTO `wp_gf_form_view` VALUES("18685", "9", "2015-10-06 22:06:56", "202.46.51.87", "11");
INSERT INTO `wp_gf_form_view` VALUES("18686", "3", "2015-10-06 22:06:56", "202.46.51.87", "89");
INSERT INTO `wp_gf_form_view` VALUES("18687", "8", "2015-10-06 22:06:57", "202.46.51.87", "11");
INSERT INTO `wp_gf_form_view` VALUES("18688", "3", "2015-10-06 23:05:30", "202.46.50.151", "103");
INSERT INTO `wp_gf_form_view` VALUES("18689", "8", "2015-10-06 23:05:30", "202.46.50.151", "14");
INSERT INTO `wp_gf_form_view` VALUES("18690", "9", "2015-10-06 23:05:30", "202.46.50.151", "11");
INSERT INTO `wp_gf_form_view` VALUES("18691", "9", "2015-10-07 00:04:00", "202.46.56.205", "8");
INSERT INTO `wp_gf_form_view` VALUES("18692", "3", "2015-10-07 00:04:01", "202.46.56.205", "59");
INSERT INTO `wp_gf_form_view` VALUES("18693", "8", "2015-10-07 00:04:01", "202.46.56.205", "8");
INSERT INTO `wp_gf_form_view` VALUES("18694", "3", "2015-10-07 01:02:34", "202.46.54.91", "121");
INSERT INTO `wp_gf_form_view` VALUES("18695", "8", "2015-10-07 01:02:34", "202.46.54.91", "16");
INSERT INTO `wp_gf_form_view` VALUES("18696", "9", "2015-10-07 01:02:35", "202.46.54.91", "13");
INSERT INTO `wp_gf_form_view` VALUES("18697", "8", "2015-10-07 02:01:04", "202.46.48.194", "9");
INSERT INTO `wp_gf_form_view` VALUES("18698", "9", "2015-10-07 02:01:05", "202.46.48.194", "8");
INSERT INTO `wp_gf_form_view` VALUES("18699", "3", "2015-10-07 02:01:05", "202.46.48.194", "68");
INSERT INTO `wp_gf_form_view` VALUES("18700", "9", "2015-10-07 03:10:24", "70.79.10.171", "6");
INSERT INTO `wp_gf_form_view` VALUES("18701", "3", "2015-10-07 03:10:24", "70.79.10.171", "58");
INSERT INTO `wp_gf_form_view` VALUES("18702", "8", "2015-10-07 03:10:24", "70.79.10.171", "7");
INSERT INTO `wp_gf_form_view` VALUES("18703", "3", "2015-10-07 04:02:09", "68.180.229.161", "117");
INSERT INTO `wp_gf_form_view` VALUES("18704", "9", "2015-10-07 04:02:09", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("18705", "8", "2015-10-07 04:02:09", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("18706", "8", "2015-10-07 05:08:24", "202.46.49.77", "30");
INSERT INTO `wp_gf_form_view` VALUES("18707", "3", "2015-10-07 05:08:24", "202.46.49.77", "222");
INSERT INTO `wp_gf_form_view` VALUES("18708", "9", "2015-10-07 05:08:25", "202.46.49.77", "28");
INSERT INTO `wp_gf_form_view` VALUES("18709", "2", "2015-10-07 05:47:21", "45.55.190.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("18710", "1", "2015-10-07 05:47:22", "45.55.190.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("18711", "3", "2015-10-07 06:06:56", "202.46.56.17", "60");
INSERT INTO `wp_gf_form_view` VALUES("18712", "8", "2015-10-07 06:06:56", "202.46.56.17", "7");
INSERT INTO `wp_gf_form_view` VALUES("18713", "9", "2015-10-07 06:06:57", "202.46.56.17", "6");
INSERT INTO `wp_gf_form_view` VALUES("18714", "9", "2015-10-07 07:00:44", "188.65.117.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("18715", "3", "2015-10-07 07:00:44", "188.65.117.140", "54");
INSERT INTO `wp_gf_form_view` VALUES("18716", "8", "2015-10-07 07:00:45", "188.65.117.140", "7");
INSERT INTO `wp_gf_form_view` VALUES("18717", "9", "2015-10-07 08:04:00", "202.46.54.204", "6");
INSERT INTO `wp_gf_form_view` VALUES("18718", "3", "2015-10-07 08:04:01", "202.46.54.204", "65");
INSERT INTO `wp_gf_form_view` VALUES("18719", "8", "2015-10-07 08:04:01", "202.46.54.204", "8");
INSERT INTO `wp_gf_form_view` VALUES("18720", "9", "2015-10-07 09:02:33", "202.46.54.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("18721", "3", "2015-10-07 09:02:33", "202.46.54.92", "61");
INSERT INTO `wp_gf_form_view` VALUES("18722", "8", "2015-10-07 09:02:33", "202.46.54.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("18723", "3", "2015-10-07 10:01:04", "202.46.58.12", "66");
INSERT INTO `wp_gf_form_view` VALUES("18724", "9", "2015-10-07 10:01:04", "202.46.58.12", "10");
INSERT INTO `wp_gf_form_view` VALUES("18725", "8", "2015-10-07 10:01:05", "202.46.58.12", "8");
INSERT INTO `wp_gf_form_view` VALUES("18726", "3", "2015-10-07 11:11:19", "202.46.50.75", "74");
INSERT INTO `wp_gf_form_view` VALUES("18727", "8", "2015-10-07 11:11:19", "202.46.50.75", "9");
INSERT INTO `wp_gf_form_view` VALUES("18728", "9", "2015-10-07 11:11:20", "202.46.50.75", "7");
INSERT INTO `wp_gf_form_view` VALUES("18729", "1", "2015-10-07 12:01:46", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("18730", "9", "2015-10-07 12:01:46", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("18731", "3", "2015-10-07 12:01:46", "68.180.229.161", "81");
INSERT INTO `wp_gf_form_view` VALUES("18732", "8", "2015-10-07 12:01:47", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("18733", "3", "2015-10-07 13:00:11", "207.46.13.65", "65");
INSERT INTO `wp_gf_form_view` VALUES("18734", "9", "2015-10-07 13:00:11", "207.46.13.65", "6");
INSERT INTO `wp_gf_form_view` VALUES("18735", "8", "2015-10-07 13:00:11", "207.46.13.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("18736", "1", "2015-10-07 14:01:06", "52.1.156.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("18737", "9", "2015-10-07 14:01:06", "52.1.156.36", "14");
INSERT INTO `wp_gf_form_view` VALUES("18738", "3", "2015-10-07 14:01:06", "52.1.156.36", "107");
INSERT INTO `wp_gf_form_view` VALUES("18739", "8", "2015-10-07 14:01:06", "52.1.156.36", "14");
INSERT INTO `wp_gf_form_view` VALUES("18740", "9", "2015-10-07 15:15:55", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("18741", "3", "2015-10-07 15:15:55", "68.180.229.161", "105");
INSERT INTO `wp_gf_form_view` VALUES("18742", "8", "2015-10-07 15:15:55", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("18743", "9", "2015-10-07 16:03:50", "151.80.31.123", "18");
INSERT INTO `wp_gf_form_view` VALUES("18744", "3", "2015-10-07 16:03:50", "151.80.31.123", "146");
INSERT INTO `wp_gf_form_view` VALUES("18745", "8", "2015-10-07 16:03:50", "151.80.31.123", "19");
INSERT INTO `wp_gf_form_view` VALUES("18746", "3", "2015-10-07 17:02:32", "202.46.58.124", "135");
INSERT INTO `wp_gf_form_view` VALUES("18747", "8", "2015-10-07 17:02:32", "202.46.58.124", "19");
INSERT INTO `wp_gf_form_view` VALUES("18748", "9", "2015-10-07 17:02:32", "202.46.58.124", "16");
INSERT INTO `wp_gf_form_view` VALUES("18749", "1", "2015-10-07 17:51:56", "80.82.164.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("18750", "9", "2015-10-07 18:01:04", "202.46.55.142", "6");
INSERT INTO `wp_gf_form_view` VALUES("18751", "3", "2015-10-07 18:01:04", "202.46.55.142", "48");
INSERT INTO `wp_gf_form_view` VALUES("18752", "8", "2015-10-07 18:01:04", "202.46.55.142", "6");
INSERT INTO `wp_gf_form_view` VALUES("18753", "3", "2015-10-07 19:11:19", "202.46.50.18", "74");
INSERT INTO `wp_gf_form_view` VALUES("18754", "8", "2015-10-07 19:11:19", "202.46.50.18", "9");
INSERT INTO `wp_gf_form_view` VALUES("18755", "9", "2015-10-07 19:11:20", "202.46.50.18", "6");
INSERT INTO `wp_gf_form_view` VALUES("18756", "9", "2015-10-07 20:04:32", "199.168.141.174", "11");
INSERT INTO `wp_gf_form_view` VALUES("18757", "3", "2015-10-07 20:04:33", "199.168.141.174", "105");
INSERT INTO `wp_gf_form_view` VALUES("18758", "8", "2015-10-07 20:04:33", "199.168.141.174", "13");
INSERT INTO `wp_gf_form_view` VALUES("18759", "9", "2015-10-07 21:00:04", "184.66.155.206", "12");
INSERT INTO `wp_gf_form_view` VALUES("18760", "3", "2015-10-07 21:00:04", "184.66.155.206", "97");
INSERT INTO `wp_gf_form_view` VALUES("18761", "8", "2015-10-07 21:00:04", "184.66.155.206", "13");
INSERT INTO `wp_gf_form_view` VALUES("18762", "9", "2015-10-07 22:06:56", "202.46.48.88", "8");
INSERT INTO `wp_gf_form_view` VALUES("18763", "3", "2015-10-07 22:06:56", "202.46.48.88", "75");
INSERT INTO `wp_gf_form_view` VALUES("18764", "8", "2015-10-07 22:06:56", "202.46.48.88", "10");
INSERT INTO `wp_gf_form_view` VALUES("18765", "9", "2015-10-07 23:05:27", "202.46.54.206", "11");
INSERT INTO `wp_gf_form_view` VALUES("18766", "3", "2015-10-07 23:05:28", "202.46.54.206", "105");
INSERT INTO `wp_gf_form_view` VALUES("18767", "8", "2015-10-07 23:05:28", "202.46.54.206", "13");
INSERT INTO `wp_gf_form_view` VALUES("18768", "9", "2015-10-08 00:04:00", "202.46.57.163", "12");
INSERT INTO `wp_gf_form_view` VALUES("18769", "3", "2015-10-08 00:04:00", "202.46.57.163", "101");
INSERT INTO `wp_gf_form_view` VALUES("18770", "8", "2015-10-08 00:04:00", "202.46.57.163", "13");
INSERT INTO `wp_gf_form_view` VALUES("18771", "1", "2015-10-08 00:54:29", "155.94.170.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("18772", "3", "2015-10-08 01:02:32", "202.46.58.200", "86");
INSERT INTO `wp_gf_form_view` VALUES("18773", "8", "2015-10-08 01:02:32", "202.46.58.200", "11");
INSERT INTO `wp_gf_form_view` VALUES("18774", "9", "2015-10-08 01:02:32", "202.46.58.200", "10");
INSERT INTO `wp_gf_form_view` VALUES("18775", "1", "2015-10-08 01:35:40", "62.210.178.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("18776", "3", "2015-10-08 02:01:04", "202.46.51.169", "137");
INSERT INTO `wp_gf_form_view` VALUES("18777", "8", "2015-10-08 02:01:04", "202.46.51.169", "17");
INSERT INTO `wp_gf_form_view` VALUES("18778", "9", "2015-10-08 02:01:06", "202.46.51.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("18779", "8", "2015-10-08 03:10:09", "220.181.108.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("18780", "9", "2015-10-08 03:10:09", "220.181.108.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("18781", "3", "2015-10-08 03:10:09", "220.181.108.161", "99");
INSERT INTO `wp_gf_form_view` VALUES("18782", "9", "2015-10-08 04:02:13", "151.80.31.123", "9");
INSERT INTO `wp_gf_form_view` VALUES("18783", "3", "2015-10-08 04:02:13", "151.80.31.123", "79");
INSERT INTO `wp_gf_form_view` VALUES("18784", "8", "2015-10-08 04:02:13", "151.80.31.123", "10");
INSERT INTO `wp_gf_form_view` VALUES("18785", "9", "2015-10-08 05:08:23", "202.46.52.105", "11");
INSERT INTO `wp_gf_form_view` VALUES("18786", "3", "2015-10-08 05:08:23", "202.46.52.105", "92");
INSERT INTO `wp_gf_form_view` VALUES("18787", "8", "2015-10-08 05:08:24", "202.46.52.105", "12");
INSERT INTO `wp_gf_form_view` VALUES("18788", "9", "2015-10-08 06:03:24", "157.55.39.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("18789", "3", "2015-10-08 06:03:24", "157.55.39.167", "67");
INSERT INTO `wp_gf_form_view` VALUES("18790", "8", "2015-10-08 06:03:25", "157.55.39.167", "9");
INSERT INTO `wp_gf_form_view` VALUES("18791", "9", "2015-10-08 07:05:29", "202.46.56.196", "7");
INSERT INTO `wp_gf_form_view` VALUES("18792", "3", "2015-10-08 07:05:29", "202.46.56.196", "67");
INSERT INTO `wp_gf_form_view` VALUES("18793", "8", "2015-10-08 07:05:29", "202.46.56.196", "8");
INSERT INTO `wp_gf_form_view` VALUES("18794", "9", "2015-10-08 08:04:00", "202.46.52.168", "7");
INSERT INTO `wp_gf_form_view` VALUES("18795", "3", "2015-10-08 08:04:00", "202.46.52.168", "60");
INSERT INTO `wp_gf_form_view` VALUES("18796", "8", "2015-10-08 08:04:02", "202.46.52.168", "7");
INSERT INTO `wp_gf_form_view` VALUES("18797", "9", "2015-10-08 09:02:32", "202.46.51.107", "5");
INSERT INTO `wp_gf_form_view` VALUES("18798", "3", "2015-10-08 09:02:32", "202.46.51.107", "55");
INSERT INTO `wp_gf_form_view` VALUES("18799", "8", "2015-10-08 09:02:32", "202.46.51.107", "7");
INSERT INTO `wp_gf_form_view` VALUES("18800", "3", "2015-10-08 10:01:04", "202.46.55.91", "161");
INSERT INTO `wp_gf_form_view` VALUES("18801", "8", "2015-10-08 10:01:04", "202.46.55.91", "20");
INSERT INTO `wp_gf_form_view` VALUES("18802", "9", "2015-10-08 10:01:05", "202.46.55.91", "16");
INSERT INTO `wp_gf_form_view` VALUES("18803", "1", "2015-10-08 10:15:52", "112.111.185.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("18804", "9", "2015-10-08 11:11:20", "202.46.54.205", "8");
INSERT INTO `wp_gf_form_view` VALUES("18805", "3", "2015-10-08 11:11:20", "202.46.54.205", "58");
INSERT INTO `wp_gf_form_view` VALUES("18806", "8", "2015-10-08 11:11:21", "202.46.54.205", "7");
INSERT INTO `wp_gf_form_view` VALUES("18807", "9", "2015-10-08 12:05:07", "66.249.74.54", "6");
INSERT INTO `wp_gf_form_view` VALUES("18808", "3", "2015-10-08 12:05:07", "66.249.74.54", "59");
INSERT INTO `wp_gf_form_view` VALUES("18809", "8", "2015-10-08 12:05:07", "66.249.74.54", "8");
INSERT INTO `wp_gf_form_view` VALUES("18810", "9", "2015-10-08 13:31:49", "202.46.52.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("18811", "3", "2015-10-08 13:31:49", "202.46.52.167", "34");
INSERT INTO `wp_gf_form_view` VALUES("18812", "8", "2015-10-08 13:31:49", "202.46.52.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("18813", "9", "2015-10-08 14:06:55", "202.46.51.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("18814", "3", "2015-10-08 14:06:55", "202.46.51.169", "50");
INSERT INTO `wp_gf_form_view` VALUES("18815", "8", "2015-10-08 14:06:56", "202.46.51.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("18816", "9", "2015-10-08 15:05:27", "202.46.53.51", "7");
INSERT INTO `wp_gf_form_view` VALUES("18817", "3", "2015-10-08 15:05:27", "202.46.53.51", "56");
INSERT INTO `wp_gf_form_view` VALUES("18818", "8", "2015-10-08 15:05:28", "202.46.53.51", "7");
INSERT INTO `wp_gf_form_view` VALUES("18819", "3", "2015-10-08 16:03:59", "202.46.50.187", "121");
INSERT INTO `wp_gf_form_view` VALUES("18820", "8", "2015-10-08 16:04:00", "202.46.50.187", "16");
INSERT INTO `wp_gf_form_view` VALUES("18821", "9", "2015-10-08 16:04:01", "202.46.50.187", "15");
INSERT INTO `wp_gf_form_view` VALUES("18822", "3", "2015-10-08 17:02:32", "202.46.57.177", "62");
INSERT INTO `wp_gf_form_view` VALUES("18823", "8", "2015-10-08 17:02:32", "202.46.57.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("18824", "9", "2015-10-08 17:02:34", "202.46.57.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("18825", "9", "2015-10-08 18:01:04", "202.46.53.45", "13");
INSERT INTO `wp_gf_form_view` VALUES("18826", "3", "2015-10-08 18:01:04", "202.46.53.45", "106");
INSERT INTO `wp_gf_form_view` VALUES("18827", "8", "2015-10-08 18:01:04", "202.46.53.45", "14");
INSERT INTO `wp_gf_form_view` VALUES("18828", "9", "2015-10-08 19:11:19", "202.46.55.82", "16");
INSERT INTO `wp_gf_form_view` VALUES("18829", "3", "2015-10-08 19:11:19", "202.46.55.82", "123");
INSERT INTO `wp_gf_form_view` VALUES("18830", "8", "2015-10-08 19:11:19", "202.46.55.82", "15");
INSERT INTO `wp_gf_form_view` VALUES("18831", "9", "2015-10-08 20:04:50", "96.50.93.42", "14");
INSERT INTO `wp_gf_form_view` VALUES("18832", "3", "2015-10-08 20:04:51", "96.50.93.42", "119");
INSERT INTO `wp_gf_form_view` VALUES("18833", "8", "2015-10-08 20:04:51", "96.50.93.42", "15");
INSERT INTO `wp_gf_form_view` VALUES("18834", "2", "2015-10-08 20:16:48", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("18835", "3", "2015-10-08 21:08:22", "202.46.52.76", "79");
INSERT INTO `wp_gf_form_view` VALUES("18836", "8", "2015-10-08 21:08:23", "202.46.52.76", "11");
INSERT INTO `wp_gf_form_view` VALUES("18837", "9", "2015-10-08 21:08:23", "202.46.52.76", "9");
INSERT INTO `wp_gf_form_view` VALUES("18838", "9", "2015-10-08 22:00:34", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("18839", "3", "2015-10-08 22:00:34", "68.180.229.161", "64");
INSERT INTO `wp_gf_form_view` VALUES("18840", "8", "2015-10-08 22:00:34", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("18841", "9", "2015-10-08 23:05:27", "202.46.48.96", "7");
INSERT INTO `wp_gf_form_view` VALUES("18842", "3", "2015-10-08 23:05:27", "202.46.48.96", "58");
INSERT INTO `wp_gf_form_view` VALUES("18843", "8", "2015-10-08 23:05:28", "202.46.48.96", "8");
INSERT INTO `wp_gf_form_view` VALUES("18844", "9", "2015-10-09 00:04:00", "202.46.49.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("18845", "3", "2015-10-09 00:04:00", "202.46.49.130", "73");
INSERT INTO `wp_gf_form_view` VALUES("18846", "8", "2015-10-09 00:04:00", "202.46.49.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("18847", "9", "2015-10-09 01:02:32", "202.46.55.139", "12");
INSERT INTO `wp_gf_form_view` VALUES("18848", "3", "2015-10-09 01:02:32", "202.46.55.139", "105");
INSERT INTO `wp_gf_form_view` VALUES("18849", "8", "2015-10-09 01:02:32", "202.46.55.139", "13");
INSERT INTO `wp_gf_form_view` VALUES("18850", "3", "2015-10-09 02:01:03", "202.46.56.177", "95");
INSERT INTO `wp_gf_form_view` VALUES("18851", "9", "2015-10-09 02:01:04", "202.46.56.177", "10");
INSERT INTO `wp_gf_form_view` VALUES("18852", "8", "2015-10-09 02:01:04", "202.46.56.177", "12");
INSERT INTO `wp_gf_form_view` VALUES("18853", "3", "2015-10-09 03:11:18", "202.46.51.82", "58");
INSERT INTO `wp_gf_form_view` VALUES("18854", "9", "2015-10-09 03:11:18", "202.46.51.82", "6");
INSERT INTO `wp_gf_form_view` VALUES("18855", "8", "2015-10-09 03:11:19", "202.46.51.82", "7");
INSERT INTO `wp_gf_form_view` VALUES("18856", "9", "2015-10-09 04:09:51", "202.46.51.207", "15");
INSERT INTO `wp_gf_form_view` VALUES("18857", "3", "2015-10-09 04:09:51", "202.46.51.207", "120");
INSERT INTO `wp_gf_form_view` VALUES("18858", "8", "2015-10-09 04:09:51", "202.46.51.207", "15");
INSERT INTO `wp_gf_form_view` VALUES("18859", "9", "2015-10-09 05:25:04", "66.249.74.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("18860", "3", "2015-10-09 05:25:06", "66.249.74.56", "8");
INSERT INTO `wp_gf_form_view` VALUES("18861", "8", "2015-10-09 05:25:06", "66.249.74.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("18862", "9", "2015-10-09 06:04:18", "173.252.113.119", "35");
INSERT INTO `wp_gf_form_view` VALUES("18863", "3", "2015-10-09 06:04:21", "173.252.113.119", "281");
INSERT INTO `wp_gf_form_view` VALUES("18864", "8", "2015-10-09 06:04:21", "173.252.113.119", "35");
INSERT INTO `wp_gf_form_view` VALUES("18865", "1", "2015-10-09 06:54:46", "201.21.10.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("18866", "2", "2015-10-09 06:54:54", "201.21.10.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("18867", "9", "2015-10-09 07:44:17", "1.0.185.243", "28");
INSERT INTO `wp_gf_form_view` VALUES("18868", "3", "2015-10-09 07:44:18", "1.0.185.243", "232");
INSERT INTO `wp_gf_form_view` VALUES("18869", "8", "2015-10-09 07:44:18", "1.0.185.243", "27");
INSERT INTO `wp_gf_form_view` VALUES("18870", "3", "2015-10-09 08:00:00", "157.55.39.99", "98");
INSERT INTO `wp_gf_form_view` VALUES("18871", "8", "2015-10-09 08:00:00", "157.55.39.99", "12");
INSERT INTO `wp_gf_form_view` VALUES("18872", "9", "2015-10-09 08:00:01", "157.55.39.99", "13");
INSERT INTO `wp_gf_form_view` VALUES("18873", "3", "2015-10-09 09:02:32", "202.46.54.161", "121");
INSERT INTO `wp_gf_form_view` VALUES("18874", "8", "2015-10-09 09:02:32", "202.46.54.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("18875", "9", "2015-10-09 09:02:32", "202.46.54.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("18876", "3", "2015-10-09 10:01:03", "202.46.52.141", "141");
INSERT INTO `wp_gf_form_view` VALUES("18877", "8", "2015-10-09 10:01:03", "202.46.52.141", "18");
INSERT INTO `wp_gf_form_view` VALUES("18878", "9", "2015-10-09 10:01:04", "202.46.52.141", "18");
INSERT INTO `wp_gf_form_view` VALUES("18879", "3", "2015-10-09 11:11:18", "202.46.50.74", "55");
INSERT INTO `wp_gf_form_view` VALUES("18880", "8", "2015-10-09 11:11:18", "202.46.50.74", "7");
INSERT INTO `wp_gf_form_view` VALUES("18881", "9", "2015-10-09 11:11:19", "202.46.50.74", "6");
INSERT INTO `wp_gf_form_view` VALUES("18882", "3", "2015-10-09 12:09:51", "202.46.52.13", "153");
INSERT INTO `wp_gf_form_view` VALUES("18883", "9", "2015-10-09 12:09:51", "202.46.52.13", "18");
INSERT INTO `wp_gf_form_view` VALUES("18884", "8", "2015-10-09 12:09:51", "202.46.52.13", "18");
INSERT INTO `wp_gf_form_view` VALUES("18885", "1", "2015-10-09 12:21:57", "192.3.242.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("18886", "8", "2015-10-09 13:08:22", "202.46.52.179", "12");
INSERT INTO `wp_gf_form_view` VALUES("18887", "3", "2015-10-09 13:08:22", "202.46.52.179", "79");
INSERT INTO `wp_gf_form_view` VALUES("18888", "9", "2015-10-09 13:08:22", "202.46.52.179", "8");
INSERT INTO `wp_gf_form_view` VALUES("18889", "3", "2015-10-09 14:06:54", "202.46.58.205", "64");
INSERT INTO `wp_gf_form_view` VALUES("18890", "8", "2015-10-09 14:06:54", "202.46.58.205", "8");
INSERT INTO `wp_gf_form_view` VALUES("18891", "9", "2015-10-09 14:06:55", "202.46.58.205", "6");
INSERT INTO `wp_gf_form_view` VALUES("18892", "9", "2015-10-09 15:05:27", "202.46.50.184", "6");
INSERT INTO `wp_gf_form_view` VALUES("18893", "3", "2015-10-09 15:05:27", "202.46.50.184", "60");
INSERT INTO `wp_gf_form_view` VALUES("18894", "8", "2015-10-09 15:05:27", "202.46.50.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("18895", "3", "2015-10-09 16:04:20", "202.46.51.179", "67");
INSERT INTO `wp_gf_form_view` VALUES("18896", "9", "2015-10-09 16:04:23", "202.46.51.179", "6");
INSERT INTO `wp_gf_form_view` VALUES("18897", "8", "2015-10-09 16:04:24", "202.46.51.179", "8");
INSERT INTO `wp_gf_form_view` VALUES("18898", "9", "2015-10-09 17:02:31", "202.46.57.151", "18");
INSERT INTO `wp_gf_form_view` VALUES("18899", "3", "2015-10-09 17:02:31", "202.46.57.151", "146");
INSERT INTO `wp_gf_form_view` VALUES("18900", "8", "2015-10-09 17:02:32", "202.46.57.151", "18");
INSERT INTO `wp_gf_form_view` VALUES("18901", "9", "2015-10-09 18:01:03", "202.46.50.74", "8");
INSERT INTO `wp_gf_form_view` VALUES("18902", "3", "2015-10-09 18:01:04", "202.46.50.74", "82");
INSERT INTO `wp_gf_form_view` VALUES("18903", "8", "2015-10-09 18:01:04", "202.46.50.74", "10");
INSERT INTO `wp_gf_form_view` VALUES("18904", "3", "2015-10-09 19:11:19", "202.46.50.17", "48");
INSERT INTO `wp_gf_form_view` VALUES("18905", "9", "2015-10-09 19:11:20", "202.46.50.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("18906", "8", "2015-10-09 19:11:20", "202.46.50.17", "6");
INSERT INTO `wp_gf_form_view` VALUES("18907", "9", "2015-10-09 20:09:52", "202.46.53.121", "8");
INSERT INTO `wp_gf_form_view` VALUES("18908", "3", "2015-10-09 20:09:52", "202.46.53.121", "57");
INSERT INTO `wp_gf_form_view` VALUES("18909", "8", "2015-10-09 20:09:52", "202.46.53.121", "7");
INSERT INTO `wp_gf_form_view` VALUES("18910", "3", "2015-10-09 21:01:41", "77.75.77.95", "64");
INSERT INTO `wp_gf_form_view` VALUES("18911", "8", "2015-10-09 21:01:41", "77.75.77.95", "8");
INSERT INTO `wp_gf_form_view` VALUES("18912", "9", "2015-10-09 21:01:41", "77.75.77.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("18913", "9", "2015-10-09 22:07:35", "202.46.57.120", "13");
INSERT INTO `wp_gf_form_view` VALUES("18914", "3", "2015-10-09 22:07:36", "202.46.57.120", "121");
INSERT INTO `wp_gf_form_view` VALUES("18915", "8", "2015-10-09 22:07:37", "202.46.57.120", "15");
INSERT INTO `wp_gf_form_view` VALUES("18916", "1", "2015-10-09 22:26:31", "62.210.178.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("18917", "9", "2015-10-09 23:05:27", "202.46.52.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("18918", "3", "2015-10-09 23:05:27", "202.46.52.44", "100");
INSERT INTO `wp_gf_form_view` VALUES("18919", "8", "2015-10-09 23:05:28", "202.46.52.44", "13");
INSERT INTO `wp_gf_form_view` VALUES("18920", "1", "2015-10-10 00:01:50", "167.160.109.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("18921", "9", "2015-10-10 00:01:50", "167.160.109.46", "10");
INSERT INTO `wp_gf_form_view` VALUES("18922", "3", "2015-10-10 00:01:50", "167.160.109.46", "87");
INSERT INTO `wp_gf_form_view` VALUES("18923", "8", "2015-10-10 00:01:51", "167.160.109.46", "11");
INSERT INTO `wp_gf_form_view` VALUES("18924", "3", "2015-10-10 01:02:31", "202.46.54.99", "62");
INSERT INTO `wp_gf_form_view` VALUES("18925", "8", "2015-10-10 01:02:31", "202.46.54.99", "9");
INSERT INTO `wp_gf_form_view` VALUES("18926", "9", "2015-10-10 01:02:31", "202.46.54.99", "6");
INSERT INTO `wp_gf_form_view` VALUES("18927", "3", "2015-10-10 02:01:03", "202.46.51.131", "69");
INSERT INTO `wp_gf_form_view` VALUES("18928", "8", "2015-10-10 02:01:03", "202.46.51.131", "9");
INSERT INTO `wp_gf_form_view` VALUES("18929", "9", "2015-10-10 02:01:04", "202.46.51.131", "7");
INSERT INTO `wp_gf_form_view` VALUES("18930", "3", "2015-10-10 03:11:17", "202.46.53.161", "183");
INSERT INTO `wp_gf_form_view` VALUES("18931", "8", "2015-10-10 03:11:17", "202.46.53.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("18932", "9", "2015-10-10 03:11:18", "202.46.53.161", "19");
INSERT INTO `wp_gf_form_view` VALUES("18933", "6", "2015-10-10 03:36:26", "188.65.117.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("18934", "9", "2015-10-10 04:09:50", "202.46.48.149", "8");
INSERT INTO `wp_gf_form_view` VALUES("18935", "3", "2015-10-10 04:09:50", "202.46.48.149", "74");
INSERT INTO `wp_gf_form_view` VALUES("18936", "8", "2015-10-10 04:09:50", "202.46.48.149", "9");
INSERT INTO `wp_gf_form_view` VALUES("18937", "3", "2015-10-10 05:08:22", "202.46.50.138", "66");
INSERT INTO `wp_gf_form_view` VALUES("18938", "8", "2015-10-10 05:08:22", "202.46.50.138", "9");
INSERT INTO `wp_gf_form_view` VALUES("18939", "9", "2015-10-10 05:08:23", "202.46.50.138", "7");
INSERT INTO `wp_gf_form_view` VALUES("18940", "9", "2015-10-10 06:06:55", "202.46.56.194", "8");
INSERT INTO `wp_gf_form_view` VALUES("18941", "3", "2015-10-10 06:06:55", "202.46.56.194", "65");
INSERT INTO `wp_gf_form_view` VALUES("18942", "8", "2015-10-10 06:06:55", "202.46.56.194", "8");
INSERT INTO `wp_gf_form_view` VALUES("18943", "9", "2015-10-10 07:01:56", "66.249.74.58", "11");
INSERT INTO `wp_gf_form_view` VALUES("18944", "3", "2015-10-10 07:01:56", "66.249.74.58", "97");
INSERT INTO `wp_gf_form_view` VALUES("18945", "8", "2015-10-10 07:01:56", "66.249.74.58", "12");
INSERT INTO `wp_gf_form_view` VALUES("18946", "9", "2015-10-10 08:04:01", "202.46.58.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("18947", "3", "2015-10-10 08:04:02", "202.46.58.119", "50");
INSERT INTO `wp_gf_form_view` VALUES("18948", "8", "2015-10-10 08:04:02", "202.46.58.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("18949", "3", "2015-10-10 09:02:40", "202.46.52.17", "94");
INSERT INTO `wp_gf_form_view` VALUES("18950", "9", "2015-10-10 09:02:40", "202.46.52.17", "10");
INSERT INTO `wp_gf_form_view` VALUES("18951", "8", "2015-10-10 09:02:41", "202.46.52.17", "11");
INSERT INTO `wp_gf_form_view` VALUES("18952", "1", "2015-10-10 09:22:46", "198.23.234.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("18953", "9", "2015-10-10 10:00:49", "198.23.234.253", "12");
INSERT INTO `wp_gf_form_view` VALUES("18954", "3", "2015-10-10 10:00:50", "198.23.234.253", "98");
INSERT INTO `wp_gf_form_view` VALUES("18955", "8", "2015-10-10 10:00:50", "198.23.234.253", "13");
INSERT INTO `wp_gf_form_view` VALUES("18956", "9", "2015-10-10 11:11:18", "202.46.55.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("18957", "3", "2015-10-10 11:11:18", "202.46.55.177", "80");
INSERT INTO `wp_gf_form_view` VALUES("18958", "8", "2015-10-10 11:11:18", "202.46.55.177", "11");
INSERT INTO `wp_gf_form_view` VALUES("18959", "9", "2015-10-10 12:09:51", "202.46.57.185", "88");
INSERT INTO `wp_gf_form_view` VALUES("18960", "3", "2015-10-10 12:09:51", "202.46.57.185", "747");
INSERT INTO `wp_gf_form_view` VALUES("18961", "8", "2015-10-10 12:09:51", "202.46.57.185", "92");
INSERT INTO `wp_gf_form_view` VALUES("18962", "9", "2015-10-10 13:00:09", "133.130.63.178", "271");
INSERT INTO `wp_gf_form_view` VALUES("18963", "3", "2015-10-10 13:00:09", "133.130.63.178", "2226");
INSERT INTO `wp_gf_form_view` VALUES("18964", "8", "2015-10-10 13:00:10", "133.130.63.178", "277");
INSERT INTO `wp_gf_form_view` VALUES("18965", "1", "2015-10-10 13:54:05", "133.130.63.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("18966", "9", "2015-10-10 14:00:04", "133.130.63.178", "157");
INSERT INTO `wp_gf_form_view` VALUES("18967", "3", "2015-10-10 14:00:04", "133.130.63.178", "1257");
INSERT INTO `wp_gf_form_view` VALUES("18968", "8", "2015-10-10 14:00:05", "133.130.63.178", "158");
INSERT INTO `wp_gf_form_view` VALUES("18969", "2", "2015-10-10 14:07:22", "133.130.63.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("18970", "9", "2015-10-10 15:05:26", "202.46.52.16", "10");
INSERT INTO `wp_gf_form_view` VALUES("18971", "3", "2015-10-10 15:05:26", "202.46.52.16", "81");
INSERT INTO `wp_gf_form_view` VALUES("18972", "8", "2015-10-10 15:05:27", "202.46.52.16", "10");
INSERT INTO `wp_gf_form_view` VALUES("18973", "3", "2015-10-10 16:03:58", "202.46.53.149", "50");
INSERT INTO `wp_gf_form_view` VALUES("18974", "9", "2015-10-10 16:03:59", "202.46.53.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("18975", "8", "2015-10-10 16:03:59", "202.46.53.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("18976", "3", "2015-10-10 17:02:30", "202.46.55.18", "79");
INSERT INTO `wp_gf_form_view` VALUES("18977", "9", "2015-10-10 17:02:31", "202.46.55.18", "8");
INSERT INTO `wp_gf_form_view` VALUES("18978", "8", "2015-10-10 17:02:31", "202.46.55.18", "10");
INSERT INTO `wp_gf_form_view` VALUES("18979", "9", "2015-10-10 18:01:03", "202.46.54.133", "8");
INSERT INTO `wp_gf_form_view` VALUES("18980", "3", "2015-10-10 18:01:03", "202.46.54.133", "72");
INSERT INTO `wp_gf_form_view` VALUES("18981", "8", "2015-10-10 18:01:03", "202.46.54.133", "10");
INSERT INTO `wp_gf_form_view` VALUES("18982", "6", "2015-10-10 18:47:58", "66.249.74.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("18983", "3", "2015-10-10 19:11:18", "202.46.53.203", "90");
INSERT INTO `wp_gf_form_view` VALUES("18984", "8", "2015-10-10 19:11:18", "202.46.53.203", "11");
INSERT INTO `wp_gf_form_view` VALUES("18985", "9", "2015-10-10 19:11:19", "202.46.53.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("18986", "9", "2015-10-10 20:02:58", "207.46.13.101", "8");
INSERT INTO `wp_gf_form_view` VALUES("18987", "3", "2015-10-10 20:02:58", "207.46.13.101", "70");
INSERT INTO `wp_gf_form_view` VALUES("18988", "8", "2015-10-10 20:02:58", "207.46.13.101", "7");
INSERT INTO `wp_gf_form_view` VALUES("18989", "9", "2015-10-10 21:08:23", "202.46.50.95", "11");
INSERT INTO `wp_gf_form_view` VALUES("18990", "3", "2015-10-10 21:08:23", "202.46.50.95", "103");
INSERT INTO `wp_gf_form_view` VALUES("18991", "8", "2015-10-10 21:08:24", "202.46.50.95", "13");
INSERT INTO `wp_gf_form_view` VALUES("18992", "9", "2015-10-10 22:01:55", "66.249.74.56", "7");
INSERT INTO `wp_gf_form_view` VALUES("18993", "3", "2015-10-10 22:01:55", "66.249.74.56", "58");
INSERT INTO `wp_gf_form_view` VALUES("18994", "8", "2015-10-10 22:01:55", "66.249.74.56", "7");
INSERT INTO `wp_gf_form_view` VALUES("18995", "3", "2015-10-10 23:05:26", "202.46.58.74", "89");
INSERT INTO `wp_gf_form_view` VALUES("18996", "9", "2015-10-10 23:05:27", "202.46.58.74", "11");
INSERT INTO `wp_gf_form_view` VALUES("18997", "8", "2015-10-10 23:05:27", "202.46.58.74", "10");
INSERT INTO `wp_gf_form_view` VALUES("18998", "9", "2015-10-11 00:03:58", "202.46.57.24", "9");
INSERT INTO `wp_gf_form_view` VALUES("18999", "3", "2015-10-11 00:03:58", "202.46.57.24", "63");
INSERT INTO `wp_gf_form_view` VALUES("19000", "8", "2015-10-11 00:03:58", "202.46.57.24", "10");
INSERT INTO `wp_gf_form_view` VALUES("19001", "8", "2015-10-11 01:02:32", "202.46.56.64", "9");
INSERT INTO `wp_gf_form_view` VALUES("19002", "3", "2015-10-11 01:02:32", "202.46.56.64", "59");
INSERT INTO `wp_gf_form_view` VALUES("19003", "9", "2015-10-11 01:02:32", "202.46.56.64", "8");
INSERT INTO `wp_gf_form_view` VALUES("19004", "9", "2015-10-11 02:01:04", "202.46.48.11", "7");
INSERT INTO `wp_gf_form_view` VALUES("19005", "3", "2015-10-11 02:01:04", "202.46.48.11", "66");
INSERT INTO `wp_gf_form_view` VALUES("19006", "8", "2015-10-11 02:01:05", "202.46.48.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("19007", "1", "2015-10-11 02:32:21", "66.249.74.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("19008", "9", "2015-10-11 03:01:58", "69.58.178.58", "27");
INSERT INTO `wp_gf_form_view` VALUES("19009", "3", "2015-10-11 03:01:58", "69.58.178.58", "220");
INSERT INTO `wp_gf_form_view` VALUES("19010", "8", "2015-10-11 03:01:58", "69.58.178.58", "27");
INSERT INTO `wp_gf_form_view` VALUES("19011", "9", "2015-10-11 04:09:51", "202.46.52.15", "47");
INSERT INTO `wp_gf_form_view` VALUES("19012", "3", "2015-10-11 04:09:51", "202.46.52.15", "392");
INSERT INTO `wp_gf_form_view` VALUES("19013", "8", "2015-10-11 04:09:51", "202.46.52.15", "49");
INSERT INTO `wp_gf_form_view` VALUES("19014", "1", "2015-10-11 04:20:23", "86.53.249.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("19015", "2", "2015-10-11 04:20:29", "86.53.249.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("19016", "3", "2015-10-11 05:08:23", "202.46.50.134", "59");
INSERT INTO `wp_gf_form_view` VALUES("19017", "9", "2015-10-11 05:08:24", "202.46.50.134", "7");
INSERT INTO `wp_gf_form_view` VALUES("19018", "8", "2015-10-11 05:08:24", "202.46.50.134", "7");
INSERT INTO `wp_gf_form_view` VALUES("19019", "9", "2015-10-11 06:06:55", "202.46.58.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("19020", "3", "2015-10-11 06:06:56", "202.46.58.113", "51");
INSERT INTO `wp_gf_form_view` VALUES("19021", "8", "2015-10-11 06:06:56", "202.46.58.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("19022", "3", "2015-10-11 07:05:27", "202.46.49.131", "85");
INSERT INTO `wp_gf_form_view` VALUES("19023", "8", "2015-10-11 07:05:27", "202.46.49.131", "11");
INSERT INTO `wp_gf_form_view` VALUES("19024", "9", "2015-10-11 07:05:28", "202.46.49.131", "7");
INSERT INTO `wp_gf_form_view` VALUES("19025", "3", "2015-10-11 08:04:04", "202.46.48.97", "65");
INSERT INTO `wp_gf_form_view` VALUES("19026", "9", "2015-10-11 08:04:10", "202.46.48.97", "9");
INSERT INTO `wp_gf_form_view` VALUES("19027", "8", "2015-10-11 08:04:11", "202.46.48.97", "8");
INSERT INTO `wp_gf_form_view` VALUES("19028", "9", "2015-10-11 09:02:31", "202.46.49.112", "9");
INSERT INTO `wp_gf_form_view` VALUES("19029", "3", "2015-10-11 09:02:31", "202.46.49.112", "76");
INSERT INTO `wp_gf_form_view` VALUES("19030", "8", "2015-10-11 09:02:32", "202.46.49.112", "9");
INSERT INTO `wp_gf_form_view` VALUES("19031", "3", "2015-10-11 10:01:04", "202.46.55.172", "81");
INSERT INTO `wp_gf_form_view` VALUES("19032", "9", "2015-10-11 10:01:04", "202.46.55.172", "9");
INSERT INTO `wp_gf_form_view` VALUES("19033", "8", "2015-10-11 10:01:04", "202.46.55.172", "10");
INSERT INTO `wp_gf_form_view` VALUES("19034", "3", "2015-10-11 11:11:19", "202.46.48.125", "51");
INSERT INTO `wp_gf_form_view` VALUES("19035", "9", "2015-10-11 11:11:19", "202.46.48.125", "5");
INSERT INTO `wp_gf_form_view` VALUES("19036", "8", "2015-10-11 11:11:19", "202.46.48.125", "6");
INSERT INTO `wp_gf_form_view` VALUES("19037", "3", "2015-10-11 12:00:22", "66.249.74.58", "84");
INSERT INTO `wp_gf_form_view` VALUES("19038", "9", "2015-10-11 12:00:22", "66.249.74.58", "11");
INSERT INTO `wp_gf_form_view` VALUES("19039", "8", "2015-10-11 12:00:22", "66.249.74.58", "10");
INSERT INTO `wp_gf_form_view` VALUES("19040", "1", "2015-10-11 12:14:32", "112.111.185.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("19041", "9", "2015-10-11 13:08:24", "202.46.52.102", "10");
INSERT INTO `wp_gf_form_view` VALUES("19042", "3", "2015-10-11 13:08:24", "202.46.52.102", "59");
INSERT INTO `wp_gf_form_view` VALUES("19043", "8", "2015-10-11 13:08:24", "202.46.52.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("19044", "3", "2015-10-11 14:06:55", "202.46.54.91", "56");
INSERT INTO `wp_gf_form_view` VALUES("19045", "8", "2015-10-11 14:06:55", "202.46.54.91", "7");
INSERT INTO `wp_gf_form_view` VALUES("19046", "9", "2015-10-11 14:06:56", "202.46.54.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("19047", "9", "2015-10-11 15:03:57", "66.90.94.130", "7");
INSERT INTO `wp_gf_form_view` VALUES("19048", "3", "2015-10-11 15:03:57", "66.90.94.130", "63");
INSERT INTO `wp_gf_form_view` VALUES("19049", "8", "2015-10-11 15:03:57", "66.90.94.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("19050", "1", "2015-10-11 16:03:52", "62.210.178.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("19051", "9", "2015-10-11 16:03:52", "62.210.178.179", "12");
INSERT INTO `wp_gf_form_view` VALUES("19052", "3", "2015-10-11 16:03:52", "62.210.178.179", "94");
INSERT INTO `wp_gf_form_view` VALUES("19053", "8", "2015-10-11 16:03:53", "62.210.178.179", "14");
INSERT INTO `wp_gf_form_view` VALUES("19054", "9", "2015-10-11 17:02:32", "202.46.54.36", "7");
INSERT INTO `wp_gf_form_view` VALUES("19055", "3", "2015-10-11 17:02:33", "202.46.54.36", "62");
INSERT INTO `wp_gf_form_view` VALUES("19056", "8", "2015-10-11 17:02:33", "202.46.54.36", "9");
INSERT INTO `wp_gf_form_view` VALUES("19057", "9", "2015-10-11 18:12:46", "202.46.56.182", "8");
INSERT INTO `wp_gf_form_view` VALUES("19058", "3", "2015-10-11 18:12:46", "202.46.56.182", "79");
INSERT INTO `wp_gf_form_view` VALUES("19059", "8", "2015-10-11 18:12:46", "202.46.56.182", "10");
INSERT INTO `wp_gf_form_view` VALUES("19060", "9", "2015-10-11 19:04:57", "216.232.153.64", "11");
INSERT INTO `wp_gf_form_view` VALUES("19061", "3", "2015-10-11 19:04:57", "216.232.153.64", "108");
INSERT INTO `wp_gf_form_view` VALUES("19062", "8", "2015-10-11 19:04:57", "216.232.153.64", "13");
INSERT INTO `wp_gf_form_view` VALUES("19063", "1", "2015-10-11 19:29:53", "179.60.149.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("19064", "3", "2015-10-11 20:09:51", "202.46.57.186", "129");
INSERT INTO `wp_gf_form_view` VALUES("19065", "8", "2015-10-11 20:09:51", "202.46.57.186", "16");
INSERT INTO `wp_gf_form_view` VALUES("19066", "9", "2015-10-11 20:09:52", "202.46.57.186", "14");
INSERT INTO `wp_gf_form_view` VALUES("19067", "1", "2015-10-11 20:35:00", "24.68.124.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("19068", "8", "2015-10-11 21:08:22", "202.46.57.19", "17");
INSERT INTO `wp_gf_form_view` VALUES("19069", "9", "2015-10-11 21:08:23", "202.46.57.19", "18");
INSERT INTO `wp_gf_form_view` VALUES("19070", "3", "2015-10-11 21:08:23", "202.46.57.19", "116");
INSERT INTO `wp_gf_form_view` VALUES("19071", "3", "2015-10-11 22:06:55", "202.46.54.94", "82");
INSERT INTO `wp_gf_form_view` VALUES("19072", "8", "2015-10-11 22:06:55", "202.46.54.94", "10");
INSERT INTO `wp_gf_form_view` VALUES("19073", "9", "2015-10-11 22:06:56", "202.46.54.94", "10");
INSERT INTO `wp_gf_form_view` VALUES("19074", "1", "2015-10-11 22:23:23", "66.248.206.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("19075", "9", "2015-10-11 23:05:27", "202.46.51.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("19076", "3", "2015-10-11 23:05:27", "202.46.51.192", "69");
INSERT INTO `wp_gf_form_view` VALUES("19077", "8", "2015-10-11 23:05:27", "202.46.51.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("19078", "3", "2015-10-12 00:03:59", "202.46.49.77", "87");
INSERT INTO `wp_gf_form_view` VALUES("19079", "9", "2015-10-12 00:03:59", "202.46.49.77", "11");
INSERT INTO `wp_gf_form_view` VALUES("19080", "8", "2015-10-12 00:04:00", "202.46.49.77", "11");
INSERT INTO `wp_gf_form_view` VALUES("19081", "1", "2015-10-12 00:27:17", "99.240.186.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("19082", "9", "2015-10-12 01:02:32", "202.46.52.67", "9");
INSERT INTO `wp_gf_form_view` VALUES("19083", "3", "2015-10-12 01:02:32", "202.46.52.67", "91");
INSERT INTO `wp_gf_form_view` VALUES("19084", "8", "2015-10-12 01:02:32", "202.46.52.67", "11");
INSERT INTO `wp_gf_form_view` VALUES("19085", "9", "2015-10-12 02:01:05", "202.46.52.44", "46");
INSERT INTO `wp_gf_form_view` VALUES("19086", "3", "2015-10-12 02:01:05", "202.46.52.44", "382");
INSERT INTO `wp_gf_form_view` VALUES("19087", "8", "2015-10-12 02:01:05", "202.46.52.44", "50");
INSERT INTO `wp_gf_form_view` VALUES("19088", "1", "2015-10-12 02:30:21", "2.137.224.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("19089", "2", "2015-10-12 02:30:29", "2.137.224.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("19090", "9", "2015-10-12 03:06:35", "199.168.141.174", "46");
INSERT INTO `wp_gf_form_view` VALUES("19091", "3", "2015-10-12 03:06:35", "199.168.141.174", "393");
INSERT INTO `wp_gf_form_view` VALUES("19092", "8", "2015-10-12 03:06:35", "199.168.141.174", "49");
INSERT INTO `wp_gf_form_view` VALUES("19093", "1", "2015-10-12 03:59:31", "212.185.111.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("19094", "2", "2015-10-12 03:59:37", "212.185.111.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("19095", "9", "2015-10-12 04:00:01", "212.185.111.115", "20");
INSERT INTO `wp_gf_form_view` VALUES("19096", "3", "2015-10-12 04:00:01", "212.185.111.115", "177");
INSERT INTO `wp_gf_form_view` VALUES("19097", "8", "2015-10-12 04:00:02", "212.185.111.115", "23");
INSERT INTO `wp_gf_form_view` VALUES("19098", "2", "2015-10-12 04:01:24", "178.33.131.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("19099", "9", "2015-10-12 05:08:22", "202.46.50.185", "10");
INSERT INTO `wp_gf_form_view` VALUES("19100", "3", "2015-10-12 05:08:23", "202.46.50.185", "88");
INSERT INTO `wp_gf_form_view` VALUES("19101", "8", "2015-10-12 05:08:23", "202.46.50.185", "11");
INSERT INTO `wp_gf_form_view` VALUES("19102", "9", "2015-10-12 06:06:55", "202.46.54.186", "7");
INSERT INTO `wp_gf_form_view` VALUES("19103", "3", "2015-10-12 06:06:55", "202.46.54.186", "58");
INSERT INTO `wp_gf_form_view` VALUES("19104", "8", "2015-10-12 06:06:55", "202.46.54.186", "6");
INSERT INTO `wp_gf_form_view` VALUES("19105", "9", "2015-10-12 07:05:27", "202.46.54.132", "6");
INSERT INTO `wp_gf_form_view` VALUES("19106", "3", "2015-10-12 07:05:27", "202.46.54.132", "65");
INSERT INTO `wp_gf_form_view` VALUES("19107", "8", "2015-10-12 07:05:27", "202.46.54.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("19108", "3", "2015-10-12 08:04:00", "202.46.49.62", "70");
INSERT INTO `wp_gf_form_view` VALUES("19109", "9", "2015-10-12 08:04:05", "202.46.49.62", "8");
INSERT INTO `wp_gf_form_view` VALUES("19110", "8", "2015-10-12 08:04:05", "202.46.49.62", "9");
INSERT INTO `wp_gf_form_view` VALUES("19111", "3", "2015-10-12 09:02:31", "202.46.52.108", "83");
INSERT INTO `wp_gf_form_view` VALUES("19112", "8", "2015-10-12 09:02:31", "202.46.52.108", "11");
INSERT INTO `wp_gf_form_view` VALUES("19113", "9", "2015-10-12 09:02:31", "202.46.52.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("19114", "9", "2015-10-12 10:01:04", "202.46.56.194", "7");
INSERT INTO `wp_gf_form_view` VALUES("19115", "3", "2015-10-12 10:01:04", "202.46.56.194", "71");
INSERT INTO `wp_gf_form_view` VALUES("19116", "8", "2015-10-12 10:01:04", "202.46.56.194", "9");
INSERT INTO `wp_gf_form_view` VALUES("19117", "3", "2015-10-12 11:11:18", "202.46.51.132", "84");
INSERT INTO `wp_gf_form_view` VALUES("19118", "8", "2015-10-12 11:11:18", "202.46.51.132", "12");
INSERT INTO `wp_gf_form_view` VALUES("19119", "9", "2015-10-12 11:11:19", "202.46.51.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("19120", "9", "2015-10-12 12:00:03", "157.55.39.212", "28");
INSERT INTO `wp_gf_form_view` VALUES("19121", "3", "2015-10-12 12:00:03", "157.55.39.212", "217");
INSERT INTO `wp_gf_form_view` VALUES("19122", "8", "2015-10-12 12:00:04", "157.55.39.212", "29");
INSERT INTO `wp_gf_form_view` VALUES("19123", "3", "2015-10-12 13:08:23", "202.46.48.92", "80");
INSERT INTO `wp_gf_form_view` VALUES("19124", "9", "2015-10-12 13:08:24", "202.46.48.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("19125", "8", "2015-10-12 13:08:24", "202.46.48.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("19126", "1", "2015-10-12 13:24:04", "192.200.210.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("19127", "3", "2015-10-12 14:06:54", "202.46.53.197", "79");
INSERT INTO `wp_gf_form_view` VALUES("19128", "8", "2015-10-12 14:06:54", "202.46.53.197", "10");
INSERT INTO `wp_gf_form_view` VALUES("19129", "9", "2015-10-12 14:06:55", "202.46.53.197", "9");
INSERT INTO `wp_gf_form_view` VALUES("19130", "6", "2015-10-12 14:08:27", "119.131.161.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("19131", "2", "2015-10-12 14:10:18", "66.249.67.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("19132", "9", "2015-10-12 15:05:27", "202.46.53.115", "5");
INSERT INTO `wp_gf_form_view` VALUES("19133", "3", "2015-10-12 15:05:27", "202.46.53.115", "42");
INSERT INTO `wp_gf_form_view` VALUES("19134", "8", "2015-10-12 15:05:27", "202.46.53.115", "5");
INSERT INTO `wp_gf_form_view` VALUES("19135", "9", "2015-10-12 16:15:41", "202.46.49.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("19136", "3", "2015-10-12 16:15:41", "202.46.49.69", "32");
INSERT INTO `wp_gf_form_view` VALUES("19137", "8", "2015-10-12 16:15:42", "202.46.49.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("19138", "9", "2015-10-12 17:02:31", "202.46.50.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("19139", "3", "2015-10-12 17:02:31", "202.46.50.92", "110");
INSERT INTO `wp_gf_form_view` VALUES("19140", "8", "2015-10-12 17:02:31", "202.46.50.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("19141", "9", "2015-10-12 18:01:03", "202.46.55.14", "22");
INSERT INTO `wp_gf_form_view` VALUES("19142", "3", "2015-10-12 18:01:03", "202.46.55.14", "181");
INSERT INTO `wp_gf_form_view` VALUES("19143", "8", "2015-10-12 18:01:04", "202.46.55.14", "22");
INSERT INTO `wp_gf_form_view` VALUES("19144", "3", "2015-10-12 19:11:18", "202.46.55.183", "90");
INSERT INTO `wp_gf_form_view` VALUES("19145", "8", "2015-10-12 19:11:18", "202.46.55.183", "12");
INSERT INTO `wp_gf_form_view` VALUES("19146", "9", "2015-10-12 19:11:18", "202.46.55.183", "12");
INSERT INTO `wp_gf_form_view` VALUES("19147", "9", "2015-10-12 20:03:30", "154.20.43.90", "7");
INSERT INTO `wp_gf_form_view` VALUES("19148", "3", "2015-10-12 20:03:30", "154.20.43.90", "70");
INSERT INTO `wp_gf_form_view` VALUES("19149", "8", "2015-10-12 20:03:30", "154.20.43.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("19150", "9", "2015-10-12 21:08:22", "202.46.54.20", "10");
INSERT INTO `wp_gf_form_view` VALUES("19151", "3", "2015-10-12 21:08:22", "202.46.54.20", "75");
INSERT INTO `wp_gf_form_view` VALUES("19152", "8", "2015-10-12 21:08:22", "202.46.54.20", "10");
INSERT INTO `wp_gf_form_view` VALUES("19153", "9", "2015-10-12 22:01:32", "199.168.141.174", "10");
INSERT INTO `wp_gf_form_view` VALUES("19154", "3", "2015-10-12 22:01:32", "199.168.141.174", "87");
INSERT INTO `wp_gf_form_view` VALUES("19155", "8", "2015-10-12 22:01:33", "199.168.141.174", "14");
INSERT INTO `wp_gf_form_view` VALUES("19156", "8", "2015-10-12 23:05:26", "202.46.58.210", "9");
INSERT INTO `wp_gf_form_view` VALUES("19157", "9", "2015-10-12 23:05:26", "202.46.58.210", "7");
INSERT INTO `wp_gf_form_view` VALUES("19158", "3", "2015-10-12 23:05:26", "202.46.58.210", "64");
INSERT INTO `wp_gf_form_view` VALUES("19159", "3", "2015-10-13 00:04:14", "202.46.54.72", "82");
INSERT INTO `wp_gf_form_view` VALUES("19160", "8", "2015-10-13 00:04:14", "202.46.54.72", "10");
INSERT INTO `wp_gf_form_view` VALUES("19161", "9", "2015-10-13 00:04:15", "202.46.54.72", "9");
INSERT INTO `wp_gf_form_view` VALUES("19162", "9", "2015-10-13 01:02:31", "202.46.55.152", "9");
INSERT INTO `wp_gf_form_view` VALUES("19163", "3", "2015-10-13 01:02:31", "202.46.55.152", "70");
INSERT INTO `wp_gf_form_view` VALUES("19164", "8", "2015-10-13 01:02:31", "202.46.55.152", "9");
INSERT INTO `wp_gf_form_view` VALUES("19165", "9", "2015-10-13 02:01:03", "202.46.53.118", "11");
INSERT INTO `wp_gf_form_view` VALUES("19166", "3", "2015-10-13 02:01:03", "202.46.53.118", "97");
INSERT INTO `wp_gf_form_view` VALUES("19167", "8", "2015-10-13 02:01:04", "202.46.53.118", "12");
INSERT INTO `wp_gf_form_view` VALUES("19168", "9", "2015-10-13 03:01:30", "157.55.39.149", "14");
INSERT INTO `wp_gf_form_view` VALUES("19169", "3", "2015-10-13 03:01:30", "157.55.39.149", "102");
INSERT INTO `wp_gf_form_view` VALUES("19170", "8", "2015-10-13 03:01:30", "157.55.39.149", "15");
INSERT INTO `wp_gf_form_view` VALUES("19171", "5", "2015-10-13 03:37:40", "188.165.15.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("19172", "9", "2015-10-13 04:01:21", "216.232.157.187", "20");
INSERT INTO `wp_gf_form_view` VALUES("19173", "3", "2015-10-13 04:01:21", "216.232.157.187", "147");
INSERT INTO `wp_gf_form_view` VALUES("19174", "8", "2015-10-13 04:01:22", "216.232.157.187", "18");
INSERT INTO `wp_gf_form_view` VALUES("19175", "1", "2015-10-13 04:06:56", "96.93.118.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("19176", "9", "2015-10-13 05:08:22", "202.46.58.95", "10");
INSERT INTO `wp_gf_form_view` VALUES("19177", "3", "2015-10-13 05:08:22", "202.46.58.95", "98");
INSERT INTO `wp_gf_form_view` VALUES("19178", "8", "2015-10-13 05:08:22", "202.46.58.95", "13");
INSERT INTO `wp_gf_form_view` VALUES("19179", "3", "2015-10-13 06:06:54", "202.46.49.152", "69");
INSERT INTO `wp_gf_form_view` VALUES("19180", "8", "2015-10-13 06:06:54", "202.46.49.152", "9");
INSERT INTO `wp_gf_form_view` VALUES("19181", "9", "2015-10-13 06:06:54", "202.46.49.152", "6");
INSERT INTO `wp_gf_form_view` VALUES("19182", "9", "2015-10-13 07:02:39", "157.55.39.110", "7");
INSERT INTO `wp_gf_form_view` VALUES("19183", "3", "2015-10-13 07:02:39", "157.55.39.110", "60");
INSERT INTO `wp_gf_form_view` VALUES("19184", "8", "2015-10-13 07:02:39", "157.55.39.110", "8");
INSERT INTO `wp_gf_form_view` VALUES("19185", "9", "2015-10-13 08:04:08", "202.46.51.182", "11");
INSERT INTO `wp_gf_form_view` VALUES("19186", "3", "2015-10-13 08:04:09", "202.46.51.182", "91");
INSERT INTO `wp_gf_form_view` VALUES("19187", "8", "2015-10-13 08:04:09", "202.46.51.182", "12");
INSERT INTO `wp_gf_form_view` VALUES("19188", "3", "2015-10-13 09:02:30", "202.46.54.206", "156");
INSERT INTO `wp_gf_form_view` VALUES("19189", "8", "2015-10-13 09:02:30", "202.46.54.206", "20");
INSERT INTO `wp_gf_form_view` VALUES("19190", "9", "2015-10-13 09:02:31", "202.46.54.206", "17");
INSERT INTO `wp_gf_form_view` VALUES("19191", "1", "2015-10-13 09:25:20", "107.173.247.237", "4");
INSERT INTO `wp_gf_form_view` VALUES("19192", "3", "2015-10-13 10:01:04", "202.46.56.206", "144");
INSERT INTO `wp_gf_form_view` VALUES("19193", "9", "2015-10-13 10:01:05", "202.46.56.206", "20");
INSERT INTO `wp_gf_form_view` VALUES("19194", "8", "2015-10-13 10:01:05", "202.46.56.206", "18");
INSERT INTO `wp_gf_form_view` VALUES("19195", "9", "2015-10-13 11:11:18", "202.46.54.33", "16");
INSERT INTO `wp_gf_form_view` VALUES("19196", "3", "2015-10-13 11:11:18", "202.46.54.33", "129");
INSERT INTO `wp_gf_form_view` VALUES("19197", "8", "2015-10-13 11:11:18", "202.46.54.33", "17");
INSERT INTO `wp_gf_form_view` VALUES("19198", "1", "2015-10-13 11:39:16", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("19199", "2", "2015-10-13 11:39:27", "93.92.217.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("19200", "9", "2015-10-13 12:09:50", "202.46.57.21", "27");
INSERT INTO `wp_gf_form_view` VALUES("19201", "3", "2015-10-13 12:09:50", "202.46.57.21", "211");
INSERT INTO `wp_gf_form_view` VALUES("19202", "8", "2015-10-13 12:09:50", "202.46.57.21", "27");
INSERT INTO `wp_gf_form_view` VALUES("19203", "1", "2015-10-13 12:31:58", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("19204", "2", "2015-10-13 12:31:58", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("19205", "9", "2015-10-13 13:08:22", "202.46.53.160", "9");
INSERT INTO `wp_gf_form_view` VALUES("19206", "3", "2015-10-13 13:08:22", "202.46.53.160", "77");
INSERT INTO `wp_gf_form_view` VALUES("19207", "8", "2015-10-13 13:08:22", "202.46.53.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("19208", "9", "2015-10-13 14:06:55", "202.46.58.139", "7");
INSERT INTO `wp_gf_form_view` VALUES("19209", "3", "2015-10-13 14:06:55", "202.46.58.139", "64");
INSERT INTO `wp_gf_form_view` VALUES("19210", "8", "2015-10-13 14:06:55", "202.46.58.139", "9");
INSERT INTO `wp_gf_form_view` VALUES("19211", "3", "2015-10-13 15:05:26", "202.46.55.125", "115");
INSERT INTO `wp_gf_form_view` VALUES("19212", "8", "2015-10-13 15:05:26", "202.46.55.125", "14");
INSERT INTO `wp_gf_form_view` VALUES("19213", "9", "2015-10-13 15:05:27", "202.46.55.125", "12");
INSERT INTO `wp_gf_form_view` VALUES("19214", "9", "2015-10-13 16:02:56", "188.165.15.22", "11");
INSERT INTO `wp_gf_form_view` VALUES("19215", "3", "2015-10-13 16:02:56", "188.165.15.22", "105");
INSERT INTO `wp_gf_form_view` VALUES("19216", "8", "2015-10-13 16:02:56", "188.165.15.22", "14");
INSERT INTO `wp_gf_form_view` VALUES("19217", "9", "2015-10-13 17:00:16", "184.69.27.122", "26");
INSERT INTO `wp_gf_form_view` VALUES("19218", "3", "2015-10-13 17:00:16", "184.69.27.122", "217");
INSERT INTO `wp_gf_form_view` VALUES("19219", "8", "2015-10-13 17:00:16", "184.69.27.122", "27");
INSERT INTO `wp_gf_form_view` VALUES("19220", "9", "2015-10-13 18:01:05", "202.46.58.91", "25");
INSERT INTO `wp_gf_form_view` VALUES("19221", "3", "2015-10-13 18:01:05", "202.46.58.91", "210");
INSERT INTO `wp_gf_form_view` VALUES("19222", "8", "2015-10-13 18:01:05", "202.46.58.91", "27");
INSERT INTO `wp_gf_form_view` VALUES("19223", "9", "2015-10-13 19:01:33", "96.50.66.90", "157");
INSERT INTO `wp_gf_form_view` VALUES("19224", "3", "2015-10-13 19:01:33", "96.50.66.90", "1349");
INSERT INTO `wp_gf_form_view` VALUES("19225", "8", "2015-10-13 19:01:33", "96.50.66.90", "173");
INSERT INTO `wp_gf_form_view` VALUES("19226", "1", "2015-10-13 19:29:30", "24.108.112.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("19227", "2", "2015-10-13 19:38:02", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19228", "5", "2015-10-13 19:45:41", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19229", "6", "2015-10-13 19:56:19", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19230", "9", "2015-10-13 20:01:10", "5.9.98.130", "349");
INSERT INTO `wp_gf_form_view` VALUES("19231", "3", "2015-10-13 20:01:10", "5.9.98.130", "3305");
INSERT INTO `wp_gf_form_view` VALUES("19232", "8", "2015-10-13 20:01:10", "5.9.98.130", "427");
INSERT INTO `wp_gf_form_view` VALUES("19233", "3", "2015-10-13 21:00:02", "5.9.98.130", "2581");
INSERT INTO `wp_gf_form_view` VALUES("19234", "8", "2015-10-13 21:00:03", "5.9.98.130", "341");
INSERT INTO `wp_gf_form_view` VALUES("19235", "9", "2015-10-13 21:00:04", "5.9.98.130", "314");
INSERT INTO `wp_gf_form_view` VALUES("19236", "3", "2015-10-13 22:00:00", "5.9.98.130", "4452");
INSERT INTO `wp_gf_form_view` VALUES("19237", "9", "2015-10-13 22:00:05", "5.9.98.130", "407");
INSERT INTO `wp_gf_form_view` VALUES("19238", "8", "2015-10-13 22:00:06", "5.9.98.130", "601");
INSERT INTO `wp_gf_form_view` VALUES("19239", "3", "2015-10-13 23:05:26", "202.46.50.210", "2738");
INSERT INTO `wp_gf_form_view` VALUES("19240", "8", "2015-10-13 23:05:26", "202.46.50.210", "322");
INSERT INTO `wp_gf_form_view` VALUES("19241", "9", "2015-10-13 23:05:28", "202.46.50.210", "380");
INSERT INTO `wp_gf_form_view` VALUES("19242", "3", "2015-10-14 00:00:01", "5.9.98.130", "5681");
INSERT INTO `wp_gf_form_view` VALUES("19243", "9", "2015-10-14 00:00:02", "5.9.98.130", "445");
INSERT INTO `wp_gf_form_view` VALUES("19244", "8", "2015-10-14 00:00:03", "5.9.98.130", "649");
INSERT INTO `wp_gf_form_view` VALUES("19245", "3", "2015-10-14 01:00:00", "5.9.98.130", "2744");
INSERT INTO `wp_gf_form_view` VALUES("19246", "8", "2015-10-14 01:00:04", "5.9.98.130", "509");
INSERT INTO `wp_gf_form_view` VALUES("19247", "9", "2015-10-14 01:00:05", "5.9.98.130", "325");
INSERT INTO `wp_gf_form_view` VALUES("19248", "9", "2015-10-14 02:01:02", "202.46.56.117", "26");
INSERT INTO `wp_gf_form_view` VALUES("19249", "3", "2015-10-14 02:01:04", "202.46.56.117", "216");
INSERT INTO `wp_gf_form_view` VALUES("19250", "8", "2015-10-14 02:01:04", "202.46.56.117", "29");
INSERT INTO `wp_gf_form_view` VALUES("19251", "1", "2015-10-14 02:41:28", "125.71.43.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("19252", "3", "2015-10-14 03:02:24", "202.46.53.206", "4029");
INSERT INTO `wp_gf_form_view` VALUES("19253", "8", "2015-10-14 03:02:24", "202.46.53.206", "504");
INSERT INTO `wp_gf_form_view` VALUES("19254", "9", "2015-10-14 03:02:25", "202.46.53.206", "608");
INSERT INTO `wp_gf_form_view` VALUES("19255", "3", "2015-10-14 04:00:00", "5.9.98.130", "4632");
INSERT INTO `wp_gf_form_view` VALUES("19256", "8", "2015-10-14 04:00:00", "5.9.98.130", "515");
INSERT INTO `wp_gf_form_view` VALUES("19257", "9", "2015-10-14 04:00:05", "5.9.98.130", "439");
INSERT INTO `wp_gf_form_view` VALUES("19258", "2", "2015-10-14 04:35:48", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19259", "1", "2015-10-14 04:35:54", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19260", "5", "2015-10-14 04:42:55", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19261", "6", "2015-10-14 04:51:55", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19262", "3", "2015-10-14 05:00:02", "5.9.98.130", "4435");
INSERT INTO `wp_gf_form_view` VALUES("19263", "8", "2015-10-14 05:00:03", "5.9.98.130", "594");
INSERT INTO `wp_gf_form_view` VALUES("19264", "9", "2015-10-14 05:00:04", "5.9.98.130", "448");
INSERT INTO `wp_gf_form_view` VALUES("19265", "8", "2015-10-14 06:00:00", "5.9.98.130", "438");
INSERT INTO `wp_gf_form_view` VALUES("19266", "3", "2015-10-14 06:00:00", "5.9.98.130", "3814");
INSERT INTO `wp_gf_form_view` VALUES("19267", "9", "2015-10-14 06:00:05", "5.9.98.130", "369");
INSERT INTO `wp_gf_form_view` VALUES("19268", "3", "2015-10-14 06:56:48", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19269", "3", "2015-10-14 07:05:29", "202.46.58.195", "155");
INSERT INTO `wp_gf_form_view` VALUES("19270", "8", "2015-10-14 07:05:31", "202.46.58.195", "19");
INSERT INTO `wp_gf_form_view` VALUES("19271", "9", "2015-10-14 07:05:36", "202.46.58.195", "15");
INSERT INTO `wp_gf_form_view` VALUES("19272", "9", "2015-10-14 08:04:05", "202.46.56.180", "15");
INSERT INTO `wp_gf_form_view` VALUES("19273", "3", "2015-10-14 08:04:06", "202.46.56.180", "108");
INSERT INTO `wp_gf_form_view` VALUES("19274", "8", "2015-10-14 08:04:06", "202.46.56.180", "17");
INSERT INTO `wp_gf_form_view` VALUES("19275", "9", "2015-10-14 09:02:30", "202.46.52.61", "44");
INSERT INTO `wp_gf_form_view` VALUES("19276", "3", "2015-10-14 09:02:30", "202.46.52.61", "359");
INSERT INTO `wp_gf_form_view` VALUES("19277", "8", "2015-10-14 09:02:31", "202.46.52.61", "44");
INSERT INTO `wp_gf_form_view` VALUES("19278", "1", "2015-10-14 09:36:34", "129.173.204.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("19279", "2", "2015-10-14 09:36:45", "129.173.204.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("19280", "9", "2015-10-14 10:01:02", "202.46.48.210", "22");
INSERT INTO `wp_gf_form_view` VALUES("19281", "3", "2015-10-14 10:01:02", "202.46.48.210", "189");
INSERT INTO `wp_gf_form_view` VALUES("19282", "8", "2015-10-14 10:01:02", "202.46.48.210", "23");
INSERT INTO `wp_gf_form_view` VALUES("19283", "1", "2015-10-14 10:33:05", "50.179.185.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("19284", "3", "2015-10-14 11:02:24", "202.46.52.203", "157");
INSERT INTO `wp_gf_form_view` VALUES("19285", "8", "2015-10-14 11:02:24", "202.46.52.203", "23");
INSERT INTO `wp_gf_form_view` VALUES("19286", "9", "2015-10-14 11:02:25", "202.46.52.203", "19");
INSERT INTO `wp_gf_form_view` VALUES("19287", "1", "2015-10-14 11:05:46", "119.122.247.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("19288", "9", "2015-10-14 12:00:56", "202.46.49.78", "19");
INSERT INTO `wp_gf_form_view` VALUES("19289", "3", "2015-10-14 12:00:56", "202.46.49.78", "161");
INSERT INTO `wp_gf_form_view` VALUES("19290", "8", "2015-10-14 12:00:56", "202.46.49.78", "20");
INSERT INTO `wp_gf_form_view` VALUES("19291", "1", "2015-10-14 12:30:25", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("19292", "8", "2015-10-14 13:08:54", "202.46.53.197", "20");
INSERT INTO `wp_gf_form_view` VALUES("19293", "3", "2015-10-14 13:08:54", "202.46.53.197", "135");
INSERT INTO `wp_gf_form_view` VALUES("19294", "9", "2015-10-14 13:08:54", "202.46.53.197", "14");
INSERT INTO `wp_gf_form_view` VALUES("19295", "9", "2015-10-14 14:06:40", "46.246.43.57", "17");
INSERT INTO `wp_gf_form_view` VALUES("19296", "3", "2015-10-14 14:06:40", "46.246.43.57", "155");
INSERT INTO `wp_gf_form_view` VALUES("19297", "8", "2015-10-14 14:06:40", "46.246.43.57", "22");
INSERT INTO `wp_gf_form_view` VALUES("19298", "9", "2015-10-14 15:00:12", "202.46.55.147", "12");
INSERT INTO `wp_gf_form_view` VALUES("19299", "3", "2015-10-14 15:00:12", "202.46.55.147", "125");
INSERT INTO `wp_gf_form_view` VALUES("19300", "8", "2015-10-14 15:00:12", "202.46.55.147", "16");
INSERT INTO `wp_gf_form_view` VALUES("19301", "3", "2015-10-14 16:03:58", "202.46.52.65", "108");
INSERT INTO `wp_gf_form_view` VALUES("19302", "8", "2015-10-14 16:03:58", "202.46.52.65", "17");
INSERT INTO `wp_gf_form_view` VALUES("19303", "9", "2015-10-14 16:03:59", "202.46.52.65", "10");
INSERT INTO `wp_gf_form_view` VALUES("19304", "9", "2015-10-14 17:02:30", "202.46.51.184", "14");
INSERT INTO `wp_gf_form_view` VALUES("19305", "3", "2015-10-14 17:02:31", "202.46.51.184", "142");
INSERT INTO `wp_gf_form_view` VALUES("19306", "8", "2015-10-14 17:02:31", "202.46.51.184", "18");
INSERT INTO `wp_gf_form_view` VALUES("19307", "3", "2015-10-14 18:01:28", "202.46.48.135", "134");
INSERT INTO `wp_gf_form_view` VALUES("19308", "8", "2015-10-14 18:01:28", "202.46.48.135", "15");
INSERT INTO `wp_gf_form_view` VALUES("19309", "9", "2015-10-14 18:01:29", "202.46.48.135", "15");
INSERT INTO `wp_gf_form_view` VALUES("19310", "9", "2015-10-14 19:10:28", "134.249.52.69", "49");
INSERT INTO `wp_gf_form_view` VALUES("19311", "3", "2015-10-14 19:10:28", "134.249.52.69", "400");
INSERT INTO `wp_gf_form_view` VALUES("19312", "8", "2015-10-14 19:10:29", "134.249.52.69", "50");
INSERT INTO `wp_gf_form_view` VALUES("19313", "1", "2015-10-14 19:54:55", "174.127.133.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("19314", "2", "2015-10-14 19:56:45", "174.127.133.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("19315", "9", "2015-10-14 20:00:31", "174.127.133.40", "74");
INSERT INTO `wp_gf_form_view` VALUES("19316", "3", "2015-10-14 20:00:31", "174.127.133.40", "603");
INSERT INTO `wp_gf_form_view` VALUES("19317", "8", "2015-10-14 20:00:31", "174.127.133.40", "77");
INSERT INTO `wp_gf_form_view` VALUES("19318", "1", "2015-10-14 20:22:48", "174.127.133.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("19319", "9", "2015-10-14 21:14:24", "188.165.15.22", "41");
INSERT INTO `wp_gf_form_view` VALUES("19320", "3", "2015-10-14 21:14:24", "188.165.15.22", "330");
INSERT INTO `wp_gf_form_view` VALUES("19321", "8", "2015-10-14 21:14:24", "188.165.15.22", "42");
INSERT INTO `wp_gf_form_view` VALUES("19322", "1", "2015-10-14 21:43:20", "79.55.178.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("19323", "2", "2015-10-14 21:43:51", "79.55.178.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("19324", "9", "2015-10-14 22:02:42", "202.46.57.170", "29");
INSERT INTO `wp_gf_form_view` VALUES("19325", "3", "2015-10-14 22:02:42", "202.46.57.170", "228");
INSERT INTO `wp_gf_form_view` VALUES("19326", "8", "2015-10-14 22:02:42", "202.46.57.170", "29");
INSERT INTO `wp_gf_form_view` VALUES("19327", "1", "2015-10-14 22:08:19", "104.200.154.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("19328", "8", "2015-10-14 23:01:15", "202.46.53.151", "16");
INSERT INTO `wp_gf_form_view` VALUES("19329", "3", "2015-10-14 23:01:15", "202.46.53.151", "117");
INSERT INTO `wp_gf_form_view` VALUES("19330", "9", "2015-10-14 23:01:15", "202.46.53.151", "14");
INSERT INTO `wp_gf_form_view` VALUES("19331", "9", "2015-10-15 00:01:58", "157.55.39.110", "12");
INSERT INTO `wp_gf_form_view` VALUES("19332", "3", "2015-10-15 00:01:58", "157.55.39.110", "98");
INSERT INTO `wp_gf_form_view` VALUES("19333", "8", "2015-10-15 00:01:58", "157.55.39.110", "14");
INSERT INTO `wp_gf_form_view` VALUES("19334", "1", "2015-10-15 00:59:06", "96.54.165.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("19335", "9", "2015-10-15 01:02:41", "207.216.37.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("19336", "3", "2015-10-15 01:02:41", "207.216.37.169", "282");
INSERT INTO `wp_gf_form_view` VALUES("19337", "8", "2015-10-15 01:02:41", "207.216.37.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("19338", "1", "2015-10-15 01:03:43", "96.54.165.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("19339", "9", "2015-10-15 02:08:33", "202.46.51.200", "8");
INSERT INTO `wp_gf_form_view` VALUES("19340", "3", "2015-10-15 02:08:33", "202.46.51.200", "91");
INSERT INTO `wp_gf_form_view` VALUES("19341", "8", "2015-10-15 02:08:33", "202.46.51.200", "12");
INSERT INTO `wp_gf_form_view` VALUES("19342", "3", "2015-10-15 03:07:05", "202.46.51.207", "105");
INSERT INTO `wp_gf_form_view` VALUES("19343", "8", "2015-10-15 03:07:05", "202.46.51.207", "14");
INSERT INTO `wp_gf_form_view` VALUES("19344", "9", "2015-10-15 03:07:06", "202.46.51.207", "11");
INSERT INTO `wp_gf_form_view` VALUES("19345", "9", "2015-10-15 04:05:38", "202.46.53.159", "15");
INSERT INTO `wp_gf_form_view` VALUES("19346", "3", "2015-10-15 04:05:38", "202.46.53.159", "138");
INSERT INTO `wp_gf_form_view` VALUES("19347", "8", "2015-10-15 04:05:38", "202.46.53.159", "18");
INSERT INTO `wp_gf_form_view` VALUES("19348", "9", "2015-10-15 05:01:02", "46.246.40.148", "21");
INSERT INTO `wp_gf_form_view` VALUES("19349", "3", "2015-10-15 05:01:02", "46.246.40.148", "200");
INSERT INTO `wp_gf_form_view` VALUES("19350", "8", "2015-10-15 05:01:02", "46.246.40.148", "25");
INSERT INTO `wp_gf_form_view` VALUES("19351", "1", "2015-10-15 05:11:37", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("19352", "3", "2015-10-15 06:02:42", "202.46.58.71", "81");
INSERT INTO `wp_gf_form_view` VALUES("19353", "8", "2015-10-15 06:02:42", "202.46.58.71", "11");
INSERT INTO `wp_gf_form_view` VALUES("19354", "9", "2015-10-15 06:02:43", "202.46.58.71", "7");
INSERT INTO `wp_gf_form_view` VALUES("19355", "6", "2015-10-15 06:05:10", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("19356", "9", "2015-10-15 07:01:14", "202.46.54.106", "17");
INSERT INTO `wp_gf_form_view` VALUES("19357", "3", "2015-10-15 07:01:14", "202.46.54.106", "143");
INSERT INTO `wp_gf_form_view` VALUES("19358", "8", "2015-10-15 07:01:14", "202.46.54.106", "18");
INSERT INTO `wp_gf_form_view` VALUES("19359", "6", "2015-10-15 07:31:07", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("19360", "9", "2015-10-15 08:11:34", "202.46.48.132", "7");
INSERT INTO `wp_gf_form_view` VALUES("19361", "3", "2015-10-15 08:11:36", "202.46.48.132", "63");
INSERT INTO `wp_gf_form_view` VALUES("19362", "8", "2015-10-15 08:11:37", "202.46.48.132", "9");
INSERT INTO `wp_gf_form_view` VALUES("19363", "3", "2015-10-15 09:05:23", "217.69.133.227", "108");
INSERT INTO `wp_gf_form_view` VALUES("19364", "9", "2015-10-15 09:05:23", "217.69.133.227", "11");
INSERT INTO `wp_gf_form_view` VALUES("19365", "8", "2015-10-15 09:05:24", "217.69.133.227", "15");
INSERT INTO `wp_gf_form_view` VALUES("19366", "3", "2015-10-15 10:08:33", "202.46.57.166", "109");
INSERT INTO `wp_gf_form_view` VALUES("19367", "8", "2015-10-15 10:08:33", "202.46.57.166", "13");
INSERT INTO `wp_gf_form_view` VALUES("19368", "9", "2015-10-15 10:08:34", "202.46.57.166", "11");
INSERT INTO `wp_gf_form_view` VALUES("19369", "6", "2015-10-15 10:41:12", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("19370", "9", "2015-10-15 11:07:05", "202.46.57.18", "5");
INSERT INTO `wp_gf_form_view` VALUES("19371", "3", "2015-10-15 11:07:06", "202.46.57.18", "41");
INSERT INTO `wp_gf_form_view` VALUES("19372", "8", "2015-10-15 11:07:06", "202.46.57.18", "6");
INSERT INTO `wp_gf_form_view` VALUES("19373", "9", "2015-10-15 12:00:39", "134.249.52.69", "13");
INSERT INTO `wp_gf_form_view` VALUES("19374", "9", "2015-10-15 12:00:39", "134.249.52.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("19375", "3", "2015-10-15 12:00:39", "134.249.52.69", "106");
INSERT INTO `wp_gf_form_view` VALUES("19376", "3", "2015-10-15 12:00:39", "134.249.52.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("19377", "8", "2015-10-15 12:00:39", "134.249.52.69", "13");
INSERT INTO `wp_gf_form_view` VALUES("19378", "8", "2015-10-15 12:00:39", "134.249.52.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("19379", "3", "2015-10-15 13:04:10", "202.46.57.20", "105");
INSERT INTO `wp_gf_form_view` VALUES("19380", "8", "2015-10-15 13:04:10", "202.46.57.20", "13");
INSERT INTO `wp_gf_form_view` VALUES("19381", "9", "2015-10-15 13:04:10", "202.46.57.20", "9");
INSERT INTO `wp_gf_form_view` VALUES("19382", "3", "2015-10-15 14:14:24", "202.46.58.93", "57");
INSERT INTO `wp_gf_form_view` VALUES("19383", "8", "2015-10-15 14:14:24", "202.46.58.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("19384", "9", "2015-10-15 14:14:25", "202.46.58.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("19385", "9", "2015-10-15 15:01:20", "202.46.51.193", "12");
INSERT INTO `wp_gf_form_view` VALUES("19386", "3", "2015-10-15 15:01:20", "202.46.51.193", "125");
INSERT INTO `wp_gf_form_view` VALUES("19387", "8", "2015-10-15 15:01:20", "202.46.51.193", "15");
INSERT INTO `wp_gf_form_view` VALUES("19388", "9", "2015-10-15 16:06:15", "184.71.31.162", "14");
INSERT INTO `wp_gf_form_view` VALUES("19389", "3", "2015-10-15 16:06:16", "184.71.31.162", "130");
INSERT INTO `wp_gf_form_view` VALUES("19390", "8", "2015-10-15 16:06:16", "184.71.31.162", "17");
INSERT INTO `wp_gf_form_view` VALUES("19391", "1", "2015-10-15 16:25:56", "192.3.188.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("19392", "3", "2015-10-15 17:03:05", "217.69.133.233", "152");
INSERT INTO `wp_gf_form_view` VALUES("19393", "9", "2015-10-15 17:03:07", "217.69.133.233", "16");
INSERT INTO `wp_gf_form_view` VALUES("19394", "8", "2015-10-15 17:03:07", "217.69.133.233", "19");
INSERT INTO `wp_gf_form_view` VALUES("19395", "9", "2015-10-15 18:07:49", "46.118.117.53", "13");
INSERT INTO `wp_gf_form_view` VALUES("19396", "3", "2015-10-15 18:07:49", "46.118.117.53", "98");
INSERT INTO `wp_gf_form_view` VALUES("19397", "8", "2015-10-15 18:07:50", "46.118.117.53", "12");
INSERT INTO `wp_gf_form_view` VALUES("19398", "3", "2015-10-15 19:07:06", "202.46.53.201", "95");
INSERT INTO `wp_gf_form_view` VALUES("19399", "8", "2015-10-15 19:07:06", "202.46.53.201", "12");
INSERT INTO `wp_gf_form_view` VALUES("19400", "9", "2015-10-15 19:07:07", "202.46.53.201", "11");
INSERT INTO `wp_gf_form_view` VALUES("19401", "9", "2015-10-15 20:02:49", "179.60.149.136", "19");
INSERT INTO `wp_gf_form_view` VALUES("19402", "3", "2015-10-15 20:02:49", "179.60.149.136", "146");
INSERT INTO `wp_gf_form_view` VALUES("19403", "8", "2015-10-15 20:02:49", "179.60.149.136", "18");
INSERT INTO `wp_gf_form_view` VALUES("19404", "2", "2015-10-15 21:00:46", "157.55.39.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("19405", "9", "2015-10-15 21:00:46", "157.55.39.193", "304");
INSERT INTO `wp_gf_form_view` VALUES("19406", "3", "2015-10-15 21:00:46", "157.55.39.193", "2705");
INSERT INTO `wp_gf_form_view` VALUES("19407", "8", "2015-10-15 21:00:47", "157.55.39.193", "348");
INSERT INTO `wp_gf_form_view` VALUES("19408", "1", "2015-10-15 21:21:18", "159.203.88.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("19409", "6", "2015-10-15 21:26:44", "159.203.88.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("19410", "5", "2015-10-15 21:33:45", "159.203.88.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("19411", "3", "2015-10-15 22:00:00", "159.203.88.27", "2132");
INSERT INTO `wp_gf_form_view` VALUES("19412", "8", "2015-10-15 22:00:00", "159.203.88.27", "278");
INSERT INTO `wp_gf_form_view` VALUES("19413", "9", "2015-10-15 22:00:04", "159.203.88.27", "236");
INSERT INTO `wp_gf_form_view` VALUES("19414", "2", "2015-10-15 22:22:13", "159.203.88.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("19415", "9", "2015-10-15 23:01:14", "202.46.50.137", "15");
INSERT INTO `wp_gf_form_view` VALUES("19416", "3", "2015-10-15 23:01:14", "202.46.50.137", "118");
INSERT INTO `wp_gf_form_view` VALUES("19417", "8", "2015-10-15 23:01:14", "202.46.50.137", "15");
INSERT INTO `wp_gf_form_view` VALUES("19418", "2", "2015-10-15 23:44:17", "179.60.149.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("19419", "3", "2015-10-16 00:11:28", "202.46.58.194", "132");
INSERT INTO `wp_gf_form_view` VALUES("19420", "9", "2015-10-16 00:11:29", "202.46.58.194", "16");
INSERT INTO `wp_gf_form_view` VALUES("19421", "8", "2015-10-16 00:11:29", "202.46.58.194", "18");
INSERT INTO `wp_gf_form_view` VALUES("19422", "3", "2015-10-16 01:10:00", "202.46.54.130", "99");
INSERT INTO `wp_gf_form_view` VALUES("19423", "8", "2015-10-16 01:10:00", "202.46.54.130", "13");
INSERT INTO `wp_gf_form_view` VALUES("19424", "9", "2015-10-16 01:10:01", "202.46.54.130", "12");
INSERT INTO `wp_gf_form_view` VALUES("19425", "9", "2015-10-16 02:08:33", "202.46.52.158", "10");
INSERT INTO `wp_gf_form_view` VALUES("19426", "3", "2015-10-16 02:08:33", "202.46.52.158", "85");
INSERT INTO `wp_gf_form_view` VALUES("19427", "8", "2015-10-16 02:08:33", "202.46.52.158", "11");
INSERT INTO `wp_gf_form_view` VALUES("19428", "9", "2015-10-16 03:07:06", "202.46.50.18", "9");
INSERT INTO `wp_gf_form_view` VALUES("19429", "3", "2015-10-16 03:07:06", "202.46.50.18", "96");
INSERT INTO `wp_gf_form_view` VALUES("19430", "8", "2015-10-16 03:07:06", "202.46.50.18", "12");
INSERT INTO `wp_gf_form_view` VALUES("19431", "7", "2015-10-16 04:01:41", "179.60.149.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("19432", "9", "2015-10-16 04:01:42", "179.60.149.136", "17");
INSERT INTO `wp_gf_form_view` VALUES("19433", "3", "2015-10-16 04:01:42", "179.60.149.136", "133");
INSERT INTO `wp_gf_form_view` VALUES("19434", "8", "2015-10-16 04:01:42", "179.60.149.136", "16");
INSERT INTO `wp_gf_form_view` VALUES("19435", "9", "2015-10-16 05:04:12", "202.46.51.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("19436", "3", "2015-10-16 05:04:13", "202.46.51.84", "85");
INSERT INTO `wp_gf_form_view` VALUES("19437", "8", "2015-10-16 05:04:13", "202.46.51.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("19438", "8", "2015-10-16 06:02:46", "202.46.58.94", "13");
INSERT INTO `wp_gf_form_view` VALUES("19439", "3", "2015-10-16 06:02:47", "202.46.58.94", "95");
INSERT INTO `wp_gf_form_view` VALUES("19440", "9", "2015-10-16 06:02:47", "202.46.58.94", "13");
INSERT INTO `wp_gf_form_view` VALUES("19441", "3", "2015-10-16 07:01:13", "202.46.58.184", "100");
INSERT INTO `wp_gf_form_view` VALUES("19442", "8", "2015-10-16 07:01:14", "202.46.58.184", "12");
INSERT INTO `wp_gf_form_view` VALUES("19443", "9", "2015-10-16 07:01:14", "202.46.58.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("19444", "9", "2015-10-16 08:11:30", "202.46.48.193", "7");
INSERT INTO `wp_gf_form_view` VALUES("19445", "3", "2015-10-16 08:11:31", "202.46.48.193", "72");
INSERT INTO `wp_gf_form_view` VALUES("19446", "8", "2015-10-16 08:11:31", "202.46.48.193", "9");
INSERT INTO `wp_gf_form_view` VALUES("19447", "9", "2015-10-16 09:10:07", "202.46.58.95", "13");
INSERT INTO `wp_gf_form_view` VALUES("19448", "3", "2015-10-16 09:10:08", "202.46.58.95", "107");
INSERT INTO `wp_gf_form_view` VALUES("19449", "8", "2015-10-16 09:10:08", "202.46.58.95", "13");
INSERT INTO `wp_gf_form_view` VALUES("19450", "9", "2015-10-16 10:08:32", "202.46.54.93", "9");
INSERT INTO `wp_gf_form_view` VALUES("19451", "3", "2015-10-16 10:08:32", "202.46.54.93", "87");
INSERT INTO `wp_gf_form_view` VALUES("19452", "8", "2015-10-16 10:08:33", "202.46.54.93", "11");
INSERT INTO `wp_gf_form_view` VALUES("19453", "3", "2015-10-16 11:07:04", "202.46.52.76", "156");
INSERT INTO `wp_gf_form_view` VALUES("19454", "9", "2015-10-16 11:07:05", "202.46.52.76", "17");
INSERT INTO `wp_gf_form_view` VALUES("19455", "8", "2015-10-16 11:07:05", "202.46.52.76", "19");
INSERT INTO `wp_gf_form_view` VALUES("19456", "1", "2015-10-16 11:45:31", "111.23.10.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("19457", "3", "2015-10-16 12:00:16", "68.180.229.161", "272");
INSERT INTO `wp_gf_form_view` VALUES("19458", "9", "2015-10-16 12:00:16", "68.180.229.161", "33");
INSERT INTO `wp_gf_form_view` VALUES("19459", "8", "2015-10-16 12:00:16", "68.180.229.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("19460", "1", "2015-10-16 12:59:25", "62.84.152.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("19461", "2", "2015-10-16 12:59:32", "62.84.152.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("19462", "9", "2015-10-16 13:00:01", "62.84.152.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("19463", "3", "2015-10-16 13:00:01", "62.84.152.162", "159");
INSERT INTO `wp_gf_form_view` VALUES("19464", "8", "2015-10-16 13:00:02", "62.84.152.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("19465", "9", "2015-10-16 14:02:42", "202.46.53.50", "7");
INSERT INTO `wp_gf_form_view` VALUES("19466", "3", "2015-10-16 14:02:42", "202.46.53.50", "71");
INSERT INTO `wp_gf_form_view` VALUES("19467", "8", "2015-10-16 14:02:42", "202.46.53.50", "8");
INSERT INTO `wp_gf_form_view` VALUES("19468", "9", "2015-10-16 15:01:13", "202.46.56.75", "9");
INSERT INTO `wp_gf_form_view` VALUES("19469", "3", "2015-10-16 15:01:13", "202.46.56.75", "80");
INSERT INTO `wp_gf_form_view` VALUES("19470", "8", "2015-10-16 15:01:14", "202.46.56.75", "10");
INSERT INTO `wp_gf_form_view` VALUES("19471", "9", "2015-10-16 16:01:42", "66.249.74.56", "13");
INSERT INTO `wp_gf_form_view` VALUES("19472", "3", "2015-10-16 16:01:42", "66.249.74.56", "110");
INSERT INTO `wp_gf_form_view` VALUES("19473", "8", "2015-10-16 16:01:42", "66.249.74.56", "14");
INSERT INTO `wp_gf_form_view` VALUES("19474", "9", "2015-10-16 17:04:07", "103.251.64.174", "20");
INSERT INTO `wp_gf_form_view` VALUES("19475", "3", "2015-10-16 17:04:07", "103.251.64.174", "149");
INSERT INTO `wp_gf_form_view` VALUES("19476", "8", "2015-10-16 17:04:08", "103.251.64.174", "19");
INSERT INTO `wp_gf_form_view` VALUES("19477", "2", "2015-10-16 17:13:51", "80.234.9.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("19478", "3", "2015-10-16 18:08:33", "202.46.49.138", "281");
INSERT INTO `wp_gf_form_view` VALUES("19479", "8", "2015-10-16 18:08:33", "202.46.49.138", "36");
INSERT INTO `wp_gf_form_view` VALUES("19480", "9", "2015-10-16 18:08:34", "202.46.49.138", "34");
INSERT INTO `wp_gf_form_view` VALUES("19481", "1", "2015-10-16 18:30:41", "96.50.29.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("19482", "3", "2015-10-16 19:07:05", "202.46.55.39", "83");
INSERT INTO `wp_gf_form_view` VALUES("19483", "8", "2015-10-16 19:07:05", "202.46.55.39", "11");
INSERT INTO `wp_gf_form_view` VALUES("19484", "9", "2015-10-16 19:07:06", "202.46.55.39", "8");
INSERT INTO `wp_gf_form_view` VALUES("19485", "3", "2015-10-16 20:05:36", "202.46.54.192", "131");
INSERT INTO `wp_gf_form_view` VALUES("19486", "9", "2015-10-16 20:05:37", "202.46.54.192", "17");
INSERT INTO `wp_gf_form_view` VALUES("19487", "8", "2015-10-16 20:05:37", "202.46.54.192", "16");
INSERT INTO `wp_gf_form_view` VALUES("19488", "2", "2015-10-16 20:44:22", "167.114.172.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("19489", "1", "2015-10-16 20:44:28", "167.114.172.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("19490", "3", "2015-10-16 21:04:10", "202.46.58.152", "129");
INSERT INTO `wp_gf_form_view` VALUES("19491", "8", "2015-10-16 21:04:10", "202.46.58.152", "16");
INSERT INTO `wp_gf_form_view` VALUES("19492", "9", "2015-10-16 21:04:11", "202.46.58.152", "15");
INSERT INTO `wp_gf_form_view` VALUES("19493", "1", "2015-10-16 21:56:26", "157.55.39.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("19494", "1", "2015-10-16 22:01:22", "50.179.185.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("19495", "9", "2015-10-16 22:01:22", "50.179.185.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("19496", "3", "2015-10-16 22:01:22", "50.179.185.148", "121");
INSERT INTO `wp_gf_form_view` VALUES("19497", "8", "2015-10-16 22:01:22", "50.179.185.148", "15");
INSERT INTO `wp_gf_form_view` VALUES("19498", "9", "2015-10-16 23:01:13", "202.46.51.154", "33");
INSERT INTO `wp_gf_form_view` VALUES("19499", "3", "2015-10-16 23:01:13", "202.46.51.154", "271");
INSERT INTO `wp_gf_form_view` VALUES("19500", "8", "2015-10-16 23:01:14", "202.46.51.154", "34");
INSERT INTO `wp_gf_form_view` VALUES("19501", "5", "2015-10-16 23:41:36", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("19502", "2", "2015-10-16 23:42:21", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("19503", "9", "2015-10-17 00:00:13", "96.54.180.34", "14");
INSERT INTO `wp_gf_form_view` VALUES("19504", "3", "2015-10-17 00:00:13", "96.54.180.34", "122");
INSERT INTO `wp_gf_form_view` VALUES("19505", "8", "2015-10-17 00:00:13", "96.54.180.34", "14");
INSERT INTO `wp_gf_form_view` VALUES("19506", "1", "2015-10-17 00:15:07", "50.179.185.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("19507", "9", "2015-10-17 01:01:30", "24.68.53.23", "10");
INSERT INTO `wp_gf_form_view` VALUES("19508", "3", "2015-10-17 01:01:31", "24.68.53.23", "75");
INSERT INTO `wp_gf_form_view` VALUES("19509", "8", "2015-10-17 01:01:31", "24.68.53.23", "10");
INSERT INTO `wp_gf_form_view` VALUES("19510", "9", "2015-10-17 02:08:32", "202.46.55.136", "15");
INSERT INTO `wp_gf_form_view` VALUES("19511", "3", "2015-10-17 02:08:32", "202.46.55.136", "132");
INSERT INTO `wp_gf_form_view` VALUES("19512", "8", "2015-10-17 02:08:32", "202.46.55.136", "17");
INSERT INTO `wp_gf_form_view` VALUES("19513", "3", "2015-10-17 03:07:04", "202.46.53.16", "72");
INSERT INTO `wp_gf_form_view` VALUES("19514", "8", "2015-10-17 03:07:04", "202.46.53.16", "9");
INSERT INTO `wp_gf_form_view` VALUES("19515", "9", "2015-10-17 03:07:05", "202.46.53.16", "9");
INSERT INTO `wp_gf_form_view` VALUES("19516", "3", "2015-10-17 04:05:36", "202.46.57.208", "191");
INSERT INTO `wp_gf_form_view` VALUES("19517", "8", "2015-10-17 04:05:36", "202.46.57.208", "23");
INSERT INTO `wp_gf_form_view` VALUES("19518", "9", "2015-10-17 04:05:37", "202.46.57.208", "21");
INSERT INTO `wp_gf_form_view` VALUES("19519", "1", "2015-10-17 04:36:30", "45.62.61.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("19520", "9", "2015-10-17 05:00:08", "24.108.100.128", "23");
INSERT INTO `wp_gf_form_view` VALUES("19521", "3", "2015-10-17 05:00:08", "24.108.100.128", "173");
INSERT INTO `wp_gf_form_view` VALUES("19522", "8", "2015-10-17 05:00:08", "24.108.100.128", "21");
INSERT INTO `wp_gf_form_view` VALUES("19523", "1", "2015-10-17 05:19:26", "107.173.246.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("19524", "3", "2015-10-17 06:02:42", "202.46.57.202", "95");
INSERT INTO `wp_gf_form_view` VALUES("19525", "8", "2015-10-17 06:02:42", "202.46.57.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("19526", "9", "2015-10-17 06:02:43", "202.46.57.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("19527", "9", "2015-10-17 07:01:14", "202.46.56.69", "28");
INSERT INTO `wp_gf_form_view` VALUES("19528", "3", "2015-10-17 07:01:14", "202.46.56.69", "242");
INSERT INTO `wp_gf_form_view` VALUES("19529", "8", "2015-10-17 07:01:14", "202.46.56.69", "30");
INSERT INTO `wp_gf_form_view` VALUES("19530", "1", "2015-10-17 07:06:38", "50.179.185.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("19531", "3", "2015-10-17 08:11:28", "202.46.51.108", "91");
INSERT INTO `wp_gf_form_view` VALUES("19532", "8", "2015-10-17 08:11:28", "202.46.51.108", "11");
INSERT INTO `wp_gf_form_view` VALUES("19533", "9", "2015-10-17 08:11:30", "202.46.51.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("19534", "9", "2015-10-17 09:01:32", "157.55.39.247", "11");
INSERT INTO `wp_gf_form_view` VALUES("19535", "3", "2015-10-17 09:01:32", "157.55.39.247", "95");
INSERT INTO `wp_gf_form_view` VALUES("19536", "8", "2015-10-17 09:01:33", "157.55.39.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("19537", "3", "2015-10-17 10:08:32", "202.46.57.198", "60");
INSERT INTO `wp_gf_form_view` VALUES("19538", "9", "2015-10-17 10:08:32", "202.46.57.198", "6");
INSERT INTO `wp_gf_form_view` VALUES("19539", "8", "2015-10-17 10:08:32", "202.46.57.198", "7");
INSERT INTO `wp_gf_form_view` VALUES("19540", "9", "2015-10-17 11:07:04", "202.46.58.167", "8");
INSERT INTO `wp_gf_form_view` VALUES("19541", "3", "2015-10-17 11:07:04", "202.46.58.167", "64");
INSERT INTO `wp_gf_form_view` VALUES("19542", "8", "2015-10-17 11:07:04", "202.46.58.167", "9");
INSERT INTO `wp_gf_form_view` VALUES("19543", "3", "2015-10-17 12:05:36", "202.46.51.131", "72");
INSERT INTO `wp_gf_form_view` VALUES("19544", "9", "2015-10-17 12:05:36", "202.46.51.131", "8");
INSERT INTO `wp_gf_form_view` VALUES("19545", "8", "2015-10-17 12:05:37", "202.46.51.131", "11");
INSERT INTO `wp_gf_form_view` VALUES("19546", "3", "2015-10-17 13:04:08", "202.46.57.166", "159");
INSERT INTO `wp_gf_form_view` VALUES("19547", "9", "2015-10-17 13:04:08", "202.46.57.166", "20");
INSERT INTO `wp_gf_form_view` VALUES("19548", "8", "2015-10-17 13:04:09", "202.46.57.166", "20");
INSERT INTO `wp_gf_form_view` VALUES("19549", "1", "2015-10-17 13:58:20", "105.154.176.230", "3");
INSERT INTO `wp_gf_form_view` VALUES("19550", "9", "2015-10-17 14:02:40", "202.46.52.17", "11");
INSERT INTO `wp_gf_form_view` VALUES("19551", "3", "2015-10-17 14:02:40", "202.46.52.17", "84");
INSERT INTO `wp_gf_form_view` VALUES("19552", "8", "2015-10-17 14:02:41", "202.46.52.17", "11");
INSERT INTO `wp_gf_form_view` VALUES("19553", "3", "2015-10-17 15:01:12", "202.46.51.39", "109");
INSERT INTO `wp_gf_form_view` VALUES("19554", "8", "2015-10-17 15:01:13", "202.46.51.39", "14");
INSERT INTO `wp_gf_form_view` VALUES("19555", "9", "2015-10-17 15:01:13", "202.46.51.39", "11");
INSERT INTO `wp_gf_form_view` VALUES("19556", "3", "2015-10-17 16:11:27", "202.46.50.89", "121");
INSERT INTO `wp_gf_form_view` VALUES("19557", "8", "2015-10-17 16:11:27", "202.46.50.89", "15");
INSERT INTO `wp_gf_form_view` VALUES("19558", "9", "2015-10-17 16:11:28", "202.46.50.89", "14");
INSERT INTO `wp_gf_form_view` VALUES("19559", "1", "2015-10-17 16:41:27", "118.184.4.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("19560", "9", "2015-10-17 17:09:59", "202.46.53.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("19561", "3", "2015-10-17 17:10:00", "202.46.53.148", "95");
INSERT INTO `wp_gf_form_view` VALUES("19562", "8", "2015-10-17 17:10:00", "202.46.53.148", "13");
INSERT INTO `wp_gf_form_view` VALUES("19563", "3", "2015-10-17 18:08:31", "202.46.58.186", "62");
INSERT INTO `wp_gf_form_view` VALUES("19564", "9", "2015-10-17 18:08:32", "202.46.58.186", "6");
INSERT INTO `wp_gf_form_view` VALUES("19565", "8", "2015-10-17 18:08:33", "202.46.58.186", "6");
INSERT INTO `wp_gf_form_view` VALUES("19566", "3", "2015-10-17 19:07:04", "202.46.58.151", "66");
INSERT INTO `wp_gf_form_view` VALUES("19567", "9", "2015-10-17 19:07:05", "202.46.58.151", "9");
INSERT INTO `wp_gf_form_view` VALUES("19568", "8", "2015-10-17 19:07:05", "202.46.58.151", "7");
INSERT INTO `wp_gf_form_view` VALUES("19569", "3", "2015-10-17 20:05:36", "202.46.50.133", "82");
INSERT INTO `wp_gf_form_view` VALUES("19570", "8", "2015-10-17 20:05:36", "202.46.50.133", "10");
INSERT INTO `wp_gf_form_view` VALUES("19571", "9", "2015-10-17 20:05:37", "202.46.50.133", "10");
INSERT INTO `wp_gf_form_view` VALUES("19572", "3", "2015-10-17 21:04:08", "202.46.48.124", "98");
INSERT INTO `wp_gf_form_view` VALUES("19573", "9", "2015-10-17 21:04:08", "202.46.48.124", "11");
INSERT INTO `wp_gf_form_view` VALUES("19574", "8", "2015-10-17 21:04:09", "202.46.48.124", "12");
INSERT INTO `wp_gf_form_view` VALUES("19575", "9", "2015-10-17 22:02:40", "202.46.51.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("19576", "3", "2015-10-17 22:02:40", "202.46.51.162", "64");
INSERT INTO `wp_gf_form_view` VALUES("19577", "8", "2015-10-17 22:02:41", "202.46.51.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("19578", "3", "2015-10-17 23:01:12", "202.46.51.107", "67");
INSERT INTO `wp_gf_form_view` VALUES("19579", "9", "2015-10-17 23:01:13", "202.46.51.107", "6");
INSERT INTO `wp_gf_form_view` VALUES("19580", "8", "2015-10-17 23:01:13", "202.46.51.107", "10");
INSERT INTO `wp_gf_form_view` VALUES("19581", "9", "2015-10-18 00:11:28", "202.46.48.26", "10");
INSERT INTO `wp_gf_form_view` VALUES("19582", "3", "2015-10-18 00:11:28", "202.46.48.26", "84");
INSERT INTO `wp_gf_form_view` VALUES("19583", "8", "2015-10-18 00:11:28", "202.46.48.26", "10");
INSERT INTO `wp_gf_form_view` VALUES("19584", "9", "2015-10-18 01:03:02", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("19585", "3", "2015-10-18 01:03:02", "68.180.229.161", "49");
INSERT INTO `wp_gf_form_view` VALUES("19586", "8", "2015-10-18 01:03:02", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("19587", "3", "2015-10-18 02:08:31", "202.46.56.66", "69");
INSERT INTO `wp_gf_form_view` VALUES("19588", "9", "2015-10-18 02:08:32", "202.46.56.66", "6");
INSERT INTO `wp_gf_form_view` VALUES("19589", "8", "2015-10-18 02:08:32", "202.46.56.66", "9");
INSERT INTO `wp_gf_form_view` VALUES("19590", "3", "2015-10-18 03:07:03", "202.46.53.11", "66");
INSERT INTO `wp_gf_form_view` VALUES("19591", "9", "2015-10-18 03:07:04", "202.46.53.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("19592", "8", "2015-10-18 03:07:04", "202.46.53.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("19593", "9", "2015-10-18 04:05:36", "202.46.52.203", "6");
INSERT INTO `wp_gf_form_view` VALUES("19594", "3", "2015-10-18 04:05:36", "202.46.52.203", "59");
INSERT INTO `wp_gf_form_view` VALUES("19595", "8", "2015-10-18 04:05:37", "202.46.52.203", "7");
INSERT INTO `wp_gf_form_view` VALUES("19596", "3", "2015-10-18 05:04:08", "202.46.54.207", "128");
INSERT INTO `wp_gf_form_view` VALUES("19597", "8", "2015-10-18 05:04:08", "202.46.54.207", "14");
INSERT INTO `wp_gf_form_view` VALUES("19598", "9", "2015-10-18 05:27:33", "202.46.56.205", "3");
INSERT INTO `wp_gf_form_view` VALUES("19599", "3", "2015-10-18 06:00:07", "157.55.39.110", "372");
INSERT INTO `wp_gf_form_view` VALUES("19600", "8", "2015-10-18 06:00:07", "157.55.39.110", "42");
INSERT INTO `wp_gf_form_view` VALUES("19601", "1", "2015-10-18 06:24:42", "95.141.43.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("19602", "2", "2015-10-18 06:24:50", "95.141.43.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("19603", "3", "2015-10-18 07:01:12", "202.46.53.55", "65");
INSERT INTO `wp_gf_form_view` VALUES("19604", "8", "2015-10-18 07:01:13", "202.46.53.55", "7");
INSERT INTO `wp_gf_form_view` VALUES("19605", "3", "2015-10-18 08:11:27", "202.46.52.61", "132");
INSERT INTO `wp_gf_form_view` VALUES("19606", "8", "2015-10-18 08:11:28", "202.46.52.61", "14");
INSERT INTO `wp_gf_form_view` VALUES("19607", "1", "2015-10-18 08:24:47", "118.184.4.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("19608", "3", "2015-10-18 09:03:23", "66.249.74.56", "116");
INSERT INTO `wp_gf_form_view` VALUES("19609", "8", "2015-10-18 09:03:23", "66.249.74.56", "13");
INSERT INTO `wp_gf_form_view` VALUES("19610", "3", "2015-10-18 10:08:31", "202.46.55.83", "169");
INSERT INTO `wp_gf_form_view` VALUES("19611", "8", "2015-10-18 10:08:32", "202.46.55.83", "18");
INSERT INTO `wp_gf_form_view` VALUES("19612", "9", "2015-10-18 10:43:39", "202.46.58.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("19613", "3", "2015-10-18 11:07:04", "202.46.49.111", "53");
INSERT INTO `wp_gf_form_view` VALUES("19614", "8", "2015-10-18 11:07:04", "202.46.49.111", "6");
INSERT INTO `wp_gf_form_view` VALUES("19615", "3", "2015-10-18 12:05:35", "202.46.52.144", "448");
INSERT INTO `wp_gf_form_view` VALUES("19616", "8", "2015-10-18 12:05:35", "202.46.52.144", "53");
INSERT INTO `wp_gf_form_view` VALUES("19617", "9", "2015-10-18 12:12:37", "157.55.39.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("19618", "7", "2015-10-18 12:14:56", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("19619", "3", "2015-10-18 13:04:09", "202.46.57.207", "63");
INSERT INTO `wp_gf_form_view` VALUES("19620", "8", "2015-10-18 13:04:09", "202.46.57.207", "7");
INSERT INTO `wp_gf_form_view` VALUES("19621", "9", "2015-10-18 13:39:16", "202.46.50.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("19622", "3", "2015-10-18 14:02:40", "202.46.53.123", "102");
INSERT INTO `wp_gf_form_view` VALUES("19623", "8", "2015-10-18 14:02:40", "202.46.53.123", "12");
INSERT INTO `wp_gf_form_view` VALUES("19624", "3", "2015-10-18 15:00:22", "68.180.229.161", "183");
INSERT INTO `wp_gf_form_view` VALUES("19625", "8", "2015-10-18 15:00:22", "68.180.229.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("19626", "3", "2015-10-18 16:11:26", "202.46.48.202", "144");
INSERT INTO `wp_gf_form_view` VALUES("19627", "8", "2015-10-18 16:11:27", "202.46.48.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("19628", "8", "2015-10-18 17:09:59", "202.46.54.117", "11");
INSERT INTO `wp_gf_form_view` VALUES("19629", "3", "2015-10-18 17:09:59", "202.46.54.117", "83");
INSERT INTO `wp_gf_form_view` VALUES("19630", "3", "2015-10-18 18:08:31", "202.46.48.80", "80");
INSERT INTO `wp_gf_form_view` VALUES("19631", "8", "2015-10-18 18:08:32", "202.46.48.80", "9");
INSERT INTO `wp_gf_form_view` VALUES("19632", "7", "2015-10-18 18:35:18", "179.60.149.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("19633", "9", "2015-10-18 19:07:05", "202.46.58.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("19634", "3", "2015-10-18 19:07:05", "202.46.58.84", "113");
INSERT INTO `wp_gf_form_view` VALUES("19635", "8", "2015-10-18 19:07:06", "202.46.58.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("19636", "3", "2015-10-18 20:05:35", "202.46.54.192", "159");
INSERT INTO `wp_gf_form_view` VALUES("19637", "8", "2015-10-18 20:05:36", "202.46.54.192", "20");
INSERT INTO `wp_gf_form_view` VALUES("19638", "1", "2015-10-18 20:05:54", "107.173.209.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("19639", "3", "2015-10-18 21:04:07", "202.46.49.116", "59");
INSERT INTO `wp_gf_form_view` VALUES("19640", "8", "2015-10-18 21:04:07", "202.46.49.116", "7");
INSERT INTO `wp_gf_form_view` VALUES("19641", "3", "2015-10-18 22:03:05", "202.46.49.157", "117");
INSERT INTO `wp_gf_form_view` VALUES("19642", "8", "2015-10-18 22:03:12", "202.46.49.157", "14");
INSERT INTO `wp_gf_form_view` VALUES("19643", "3", "2015-10-18 23:01:12", "202.46.49.146", "104");
INSERT INTO `wp_gf_form_view` VALUES("19644", "8", "2015-10-18 23:01:13", "202.46.49.146", "12");
INSERT INTO `wp_gf_form_view` VALUES("19645", "2", "2015-10-18 23:21:00", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("19646", "3", "2015-10-19 00:08:05", "68.180.229.161", "164");
INSERT INTO `wp_gf_form_view` VALUES("19647", "8", "2015-10-19 00:08:05", "68.180.229.161", "19");
INSERT INTO `wp_gf_form_view` VALUES("19648", "9", "2015-10-19 00:23:09", "202.46.53.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("19649", "3", "2015-10-19 01:01:04", "205.250.215.23", "119");
INSERT INTO `wp_gf_form_view` VALUES("19650", "8", "2015-10-19 01:01:04", "205.250.215.23", "13");
INSERT INTO `wp_gf_form_view` VALUES("19651", "1", "2015-10-19 01:25:32", "83.143.242.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("19652", "3", "2015-10-19 02:08:31", "202.46.55.156", "54");
INSERT INTO `wp_gf_form_view` VALUES("19653", "8", "2015-10-19 02:08:31", "202.46.55.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("19654", "8", "2015-10-19 03:02:24", "202.46.56.135", "12");
INSERT INTO `wp_gf_form_view` VALUES("19655", "3", "2015-10-19 03:02:24", "202.46.56.135", "91");
INSERT INTO `wp_gf_form_view` VALUES("19656", "1", "2015-10-19 03:43:00", "199.96.83.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("19657", "3", "2015-10-19 04:00:56", "202.46.50.151", "194");
INSERT INTO `wp_gf_form_view` VALUES("19658", "8", "2015-10-19 04:00:56", "202.46.50.151", "23");
INSERT INTO `wp_gf_form_view` VALUES("19659", "3", "2015-10-19 05:11:10", "202.46.48.206", "135");
INSERT INTO `wp_gf_form_view` VALUES("19660", "8", "2015-10-19 05:11:10", "202.46.48.206", "17");
INSERT INTO `wp_gf_form_view` VALUES("19661", "9", "2015-10-19 06:09:42", "202.46.58.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("19662", "3", "2015-10-19 06:09:42", "202.46.58.159", "81");
INSERT INTO `wp_gf_form_view` VALUES("19663", "8", "2015-10-19 06:09:43", "202.46.58.159", "9");
INSERT INTO `wp_gf_form_view` VALUES("19664", "3", "2015-10-19 07:08:15", "202.46.57.21", "105");
INSERT INTO `wp_gf_form_view` VALUES("19665", "8", "2015-10-19 07:08:15", "202.46.57.21", "12");
INSERT INTO `wp_gf_form_view` VALUES("19666", "3", "2015-10-19 08:06:48", "202.46.58.53", "132");
INSERT INTO `wp_gf_form_view` VALUES("19667", "8", "2015-10-19 08:06:48", "202.46.58.53", "15");
INSERT INTO `wp_gf_form_view` VALUES("19668", "9", "2015-10-19 08:15:23", "66.249.74.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("19669", "3", "2015-10-19 09:03:55", "104.200.154.38", "73");
INSERT INTO `wp_gf_form_view` VALUES("19670", "8", "2015-10-19 09:03:56", "104.200.154.38", "8");
INSERT INTO `wp_gf_form_view` VALUES("19671", "9", "2015-10-19 09:28:44", "202.46.50.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("19672", "3", "2015-10-19 10:03:51", "202.46.55.144", "93");
INSERT INTO `wp_gf_form_view` VALUES("19673", "8", "2015-10-19 10:03:51", "202.46.55.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("19674", "9", "2015-10-19 10:32:54", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("19675", "3", "2015-10-19 11:02:24", "202.46.54.28", "89");
INSERT INTO `wp_gf_form_view` VALUES("19676", "8", "2015-10-19 11:02:24", "202.46.54.28", "10");
INSERT INTO `wp_gf_form_view` VALUES("19677", "1", "2015-10-19 11:43:17", "221.237.16.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("19678", "3", "2015-10-19 12:00:55", "202.46.54.136", "96");
INSERT INTO `wp_gf_form_view` VALUES("19679", "8", "2015-10-19 12:00:56", "202.46.54.136", "10");
INSERT INTO `wp_gf_form_view` VALUES("19680", "3", "2015-10-19 13:11:10", "202.46.51.109", "170");
INSERT INTO `wp_gf_form_view` VALUES("19681", "8", "2015-10-19 13:11:11", "202.46.51.109", "21");
INSERT INTO `wp_gf_form_view` VALUES("19682", "7", "2015-10-19 13:28:53", "66.249.74.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("19683", "1", "2015-10-19 13:31:29", "31.14.135.85", "3");
INSERT INTO `wp_gf_form_view` VALUES("19684", "9", "2015-10-19 13:34:35", "202.46.48.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("19685", "3", "2015-10-19 14:09:43", "202.46.53.176", "77");
INSERT INTO `wp_gf_form_view` VALUES("19686", "8", "2015-10-19 14:09:43", "202.46.53.176", "9");
INSERT INTO `wp_gf_form_view` VALUES("19687", "3", "2015-10-19 15:08:15", "202.46.52.153", "63");
INSERT INTO `wp_gf_form_view` VALUES("19688", "8", "2015-10-19 15:08:15", "202.46.52.153", "7");
INSERT INTO `wp_gf_form_view` VALUES("19689", "8", "2015-10-19 16:05:47", "64.180.188.116", "23");
INSERT INTO `wp_gf_form_view` VALUES("19690", "3", "2015-10-19 16:05:47", "64.180.188.116", "188");
INSERT INTO `wp_gf_form_view` VALUES("19691", "6", "2015-10-19 16:17:50", "188.40.112.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("19692", "3", "2015-10-19 17:04:09", "66.249.74.54", "194");
INSERT INTO `wp_gf_form_view` VALUES("19693", "8", "2015-10-19 17:04:10", "66.249.74.54", "25");
INSERT INTO `wp_gf_form_view` VALUES("19694", "3", "2015-10-19 18:03:53", "202.46.52.106", "109");
INSERT INTO `wp_gf_form_view` VALUES("19695", "8", "2015-10-19 18:03:54", "202.46.52.106", "12");
INSERT INTO `wp_gf_form_view` VALUES("19696", "9", "2015-10-19 18:15:33", "202.46.50.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("19697", "3", "2015-10-19 19:02:23", "202.46.57.120", "94");
INSERT INTO `wp_gf_form_view` VALUES("19698", "8", "2015-10-19 19:02:24", "202.46.57.120", "10");
INSERT INTO `wp_gf_form_view` VALUES("19699", "3", "2015-10-19 20:00:58", "202.46.48.142", "97");
INSERT INTO `wp_gf_form_view` VALUES("19700", "8", "2015-10-19 20:00:58", "202.46.48.142", "11");
INSERT INTO `wp_gf_form_view` VALUES("19701", "3", "2015-10-19 21:11:10", "202.46.51.193", "572");
INSERT INTO `wp_gf_form_view` VALUES("19702", "8", "2015-10-19 21:11:11", "202.46.51.193", "63");
INSERT INTO `wp_gf_form_view` VALUES("19703", "1", "2015-10-19 21:14:08", "59.148.248.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("19704", "2", "2015-10-19 21:14:17", "59.148.248.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("19705", "3", "2015-10-19 22:09:27", "157.55.39.95", "136");
INSERT INTO `wp_gf_form_view` VALUES("19706", "8", "2015-10-19 22:09:27", "157.55.39.95", "17");
INSERT INTO `wp_gf_form_view` VALUES("19707", "3", "2015-10-19 23:03:49", "24.87.30.162", "100");
INSERT INTO `wp_gf_form_view` VALUES("19708", "8", "2015-10-19 23:03:50", "24.87.30.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("19709", "1", "2015-10-19 23:49:06", "69.12.75.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("19710", "3", "2015-10-20 00:06:38", "46.118.115.132", "82");
INSERT INTO `wp_gf_form_view` VALUES("19711", "8", "2015-10-20 00:06:38", "46.118.115.132", "10");
INSERT INTO `wp_gf_form_view` VALUES("19712", "3", "2015-10-20 01:05:19", "202.46.53.46", "83");
INSERT INTO `wp_gf_form_view` VALUES("19713", "8", "2015-10-20 01:05:19", "202.46.53.46", "9");
INSERT INTO `wp_gf_form_view` VALUES("19714", "9", "2015-10-20 02:03:51", "202.46.52.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("19715", "3", "2015-10-20 02:03:51", "202.46.52.102", "164");
INSERT INTO `wp_gf_form_view` VALUES("19716", "8", "2015-10-20 02:03:52", "202.46.52.102", "18");
INSERT INTO `wp_gf_form_view` VALUES("19717", "3", "2015-10-20 03:02:23", "202.46.49.135", "69");
INSERT INTO `wp_gf_form_view` VALUES("19718", "8", "2015-10-20 03:02:23", "202.46.49.135", "8");
INSERT INTO `wp_gf_form_view` VALUES("19719", "3", "2015-10-20 04:00:56", "202.46.48.96", "105");
INSERT INTO `wp_gf_form_view` VALUES("19720", "8", "2015-10-20 04:00:56", "202.46.48.96", "12");
INSERT INTO `wp_gf_form_view` VALUES("19721", "3", "2015-10-20 05:11:10", "202.46.48.88", "122");
INSERT INTO `wp_gf_form_view` VALUES("19722", "8", "2015-10-20 05:11:10", "202.46.48.88", "13");
INSERT INTO `wp_gf_form_view` VALUES("19723", "3", "2015-10-20 06:08:32", "91.200.12.7", "425");
INSERT INTO `wp_gf_form_view` VALUES("19724", "8", "2015-10-20 06:08:32", "91.200.12.7", "47");
INSERT INTO `wp_gf_form_view` VALUES("19725", "3", "2015-10-20 07:08:15", "202.46.57.120", "46");
INSERT INTO `wp_gf_form_view` VALUES("19726", "8", "2015-10-20 07:08:15", "202.46.57.120", "5");
INSERT INTO `wp_gf_form_view` VALUES("19727", "9", "2015-10-20 07:43:22", "202.46.58.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("19728", "3", "2015-10-20 08:06:46", "202.46.53.16", "93");
INSERT INTO `wp_gf_form_view` VALUES("19729", "8", "2015-10-20 08:06:46", "202.46.53.16", "10");
INSERT INTO `wp_gf_form_view` VALUES("19730", "3", "2015-10-20 09:05:20", "202.46.54.138", "192");
INSERT INTO `wp_gf_form_view` VALUES("19731", "8", "2015-10-20 09:05:20", "202.46.54.138", "20");
INSERT INTO `wp_gf_form_view` VALUES("19732", "3", "2015-10-20 10:03:51", "202.46.54.189", "49");
INSERT INTO `wp_gf_form_view` VALUES("19733", "8", "2015-10-20 10:03:51", "202.46.54.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("19734", "9", "2015-10-20 10:27:16", "202.46.58.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("19735", "3", "2015-10-20 11:02:23", "202.46.53.110", "76");
INSERT INTO `wp_gf_form_view` VALUES("19736", "8", "2015-10-20 11:02:23", "202.46.53.110", "8");
INSERT INTO `wp_gf_form_view` VALUES("19737", "9", "2015-10-20 11:49:13", "202.46.50.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("19738", "3", "2015-10-20 12:00:55", "202.46.53.59", "123");
INSERT INTO `wp_gf_form_view` VALUES("19739", "8", "2015-10-20 12:00:56", "202.46.53.59", "14");
INSERT INTO `wp_gf_form_view` VALUES("19740", "1", "2015-10-20 12:56:33", "24.108.66.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("19741", "3", "2015-10-20 13:01:22", "24.108.66.171", "402");
INSERT INTO `wp_gf_form_view` VALUES("19742", "8", "2015-10-20 13:01:23", "24.108.66.171", "45");
INSERT INTO `wp_gf_form_view` VALUES("19743", "1", "2015-10-20 13:11:28", "195.145.136.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("19744", "2", "2015-10-20 13:11:36", "195.145.136.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("19745", "3", "2015-10-20 14:09:42", "202.46.57.11", "71");
INSERT INTO `wp_gf_form_view` VALUES("19746", "8", "2015-10-20 14:09:42", "202.46.57.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("19747", "1", "2015-10-20 14:31:06", "192.161.185.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("19748", "3", "2015-10-20 15:04:17", "68.180.229.161", "381");
INSERT INTO `wp_gf_form_view` VALUES("19749", "8", "2015-10-20 15:04:17", "68.180.229.161", "42");
INSERT INTO `wp_gf_form_view` VALUES("19750", "1", "2015-10-20 15:34:28", "12.193.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("19751", "2", "2015-10-20 15:34:48", "64.193.125.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("19752", "3", "2015-10-20 16:06:49", "202.46.49.206", "184");
INSERT INTO `wp_gf_form_view` VALUES("19753", "8", "2015-10-20 16:06:49", "202.46.49.206", "21");
INSERT INTO `wp_gf_form_view` VALUES("19754", "1", "2015-10-20 16:30:26", "96.44.183.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("19755", "3", "2015-10-20 17:00:16", "184.71.12.218", "152");
INSERT INTO `wp_gf_form_view` VALUES("19756", "8", "2015-10-20 17:00:17", "184.71.12.218", "18");
INSERT INTO `wp_gf_form_view` VALUES("19757", "3", "2015-10-20 18:00:59", "202.46.55.88", "155");
INSERT INTO `wp_gf_form_view` VALUES("19758", "8", "2015-10-20 18:00:59", "202.46.55.88", "17");
INSERT INTO `wp_gf_form_view` VALUES("19759", "1", "2015-10-20 18:11:24", "119.122.247.208", "4");
INSERT INTO `wp_gf_form_view` VALUES("19760", "3", "2015-10-20 19:04:26", "144.76.71.83", "171");
INSERT INTO `wp_gf_form_view` VALUES("19761", "8", "2015-10-20 19:04:27", "144.76.71.83", "20");
INSERT INTO `wp_gf_form_view` VALUES("19762", "1", "2015-10-20 19:10:58", "50.67.174.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("19763", "9", "2015-10-20 19:11:13", "202.46.51.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("19764", "3", "2015-10-20 20:09:45", "202.46.50.134", "81");
INSERT INTO `wp_gf_form_view` VALUES("19765", "8", "2015-10-20 20:09:45", "202.46.50.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("19766", "3", "2015-10-20 21:08:17", "202.46.58.130", "73");
INSERT INTO `wp_gf_form_view` VALUES("19767", "8", "2015-10-20 21:08:17", "202.46.58.130", "8");
INSERT INTO `wp_gf_form_view` VALUES("19768", "3", "2015-10-20 22:06:49", "202.46.51.105", "89");
INSERT INTO `wp_gf_form_view` VALUES("19769", "8", "2015-10-20 22:06:50", "202.46.51.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("19770", "3", "2015-10-20 23:05:23", "202.46.49.79", "90");
INSERT INTO `wp_gf_form_view` VALUES("19771", "8", "2015-10-20 23:05:23", "202.46.49.79", "10");
INSERT INTO `wp_gf_form_view` VALUES("19772", "3", "2015-10-21 00:00:53", "46.246.40.148", "130");
INSERT INTO `wp_gf_form_view` VALUES("19773", "8", "2015-10-21 00:00:53", "46.246.40.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("19774", "3", "2015-10-21 01:02:26", "202.46.55.19", "116");
INSERT INTO `wp_gf_form_view` VALUES("19775", "8", "2015-10-21 01:02:26", "202.46.55.19", "16");
INSERT INTO `wp_gf_form_view` VALUES("19776", "9", "2015-10-21 01:25:50", "202.46.51.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("19777", "8", "2015-10-21 02:00:57", "202.46.55.38", "7");
INSERT INTO `wp_gf_form_view` VALUES("19778", "3", "2015-10-21 02:00:58", "202.46.55.38", "58");
INSERT INTO `wp_gf_form_view` VALUES("19779", "3", "2015-10-21 03:11:12", "202.46.51.33", "80");
INSERT INTO `wp_gf_form_view` VALUES("19780", "8", "2015-10-21 03:11:12", "202.46.51.33", "9");
INSERT INTO `wp_gf_form_view` VALUES("19781", "9", "2015-10-21 03:23:01", "202.46.52.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("19782", "3", "2015-10-21 04:02:28", "70.35.195.82", "375");
INSERT INTO `wp_gf_form_view` VALUES("19783", "8", "2015-10-21 04:02:28", "70.35.195.82", "43");
INSERT INTO `wp_gf_form_view` VALUES("19784", "1", "2015-10-21 04:03:08", "70.35.195.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("19785", "2", "2015-10-21 04:03:15", "70.35.195.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("19786", "3", "2015-10-21 05:00:52", "188.40.112.210", "88");
INSERT INTO `wp_gf_form_view` VALUES("19787", "8", "2015-10-21 05:00:52", "188.40.112.210", "10");
INSERT INTO `wp_gf_form_view` VALUES("19788", "9", "2015-10-21 05:35:31", "157.55.39.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("19789", "3", "2015-10-21 06:04:34", "24.108.77.182", "86");
INSERT INTO `wp_gf_form_view` VALUES("19790", "8", "2015-10-21 06:04:34", "24.108.77.182", "9");
INSERT INTO `wp_gf_form_view` VALUES("19791", "9", "2015-10-21 06:18:31", "202.46.54.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("19792", "3", "2015-10-21 07:05:21", "202.46.53.178", "110");
INSERT INTO `wp_gf_form_view` VALUES("19793", "8", "2015-10-21 07:05:21", "202.46.53.178", "12");
INSERT INTO `wp_gf_form_view` VALUES("19794", "3", "2015-10-21 08:03:54", "202.46.54.187", "78");
INSERT INTO `wp_gf_form_view` VALUES("19795", "8", "2015-10-21 08:03:55", "202.46.54.187", "8");
INSERT INTO `wp_gf_form_view` VALUES("19796", "3", "2015-10-21 09:02:27", "202.46.49.68", "117");
INSERT INTO `wp_gf_form_view` VALUES("19797", "8", "2015-10-21 09:02:27", "202.46.49.68", "12");
INSERT INTO `wp_gf_form_view` VALUES("19798", "2", "2015-10-21 10:00:02", "157.55.39.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("19799", "3", "2015-10-21 10:00:02", "157.55.39.171", "90");
INSERT INTO `wp_gf_form_view` VALUES("19800", "8", "2015-10-21 10:00:02", "157.55.39.171", "10");
INSERT INTO `wp_gf_form_view` VALUES("19801", "3", "2015-10-21 11:11:13", "202.46.52.65", "80");
INSERT INTO `wp_gf_form_view` VALUES("19802", "8", "2015-10-21 11:11:13", "202.46.52.65", "9");
INSERT INTO `wp_gf_form_view` VALUES("19803", "3", "2015-10-21 12:07:12", "157.55.39.172", "107");
INSERT INTO `wp_gf_form_view` VALUES("19804", "8", "2015-10-21 12:07:12", "157.55.39.172", "12");
INSERT INTO `wp_gf_form_view` VALUES("19805", "8", "2015-10-21 13:08:14", "68.180.229.161", "29");
INSERT INTO `wp_gf_form_view` VALUES("19806", "3", "2015-10-21 13:08:16", "202.46.54.32", "256");
INSERT INTO `wp_gf_form_view` VALUES("19807", "1", "2015-10-21 13:32:59", "157.55.39.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("19808", "3", "2015-10-21 14:06:50", "202.46.57.29", "99");
INSERT INTO `wp_gf_form_view` VALUES("19809", "8", "2015-10-21 14:06:50", "202.46.57.29", "11");
INSERT INTO `wp_gf_form_view` VALUES("19810", "9", "2015-10-21 14:41:56", "202.46.54.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("19811", "1", "2015-10-21 14:48:56", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("19812", "3", "2015-10-21 15:01:21", "89.233.254.65", "85");
INSERT INTO `wp_gf_form_view` VALUES("19813", "8", "2015-10-21 15:01:21", "89.233.254.65", "10");
INSERT INTO `wp_gf_form_view` VALUES("19814", "3", "2015-10-21 16:03:53", "202.46.57.206", "123");
INSERT INTO `wp_gf_form_view` VALUES("19815", "8", "2015-10-21 16:03:53", "202.46.57.206", "13");
INSERT INTO `wp_gf_form_view` VALUES("19816", "3", "2015-10-21 17:00:59", "94.23.45.37", "100");
INSERT INTO `wp_gf_form_view` VALUES("19817", "8", "2015-10-21 17:00:59", "94.23.45.37", "11");
INSERT INTO `wp_gf_form_view` VALUES("19818", "2", "2015-10-21 17:54:16", "157.55.39.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("19819", "1", "2015-10-21 17:56:58", "157.55.39.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("19820", "1", "2015-10-21 18:35:06", "118.184.4.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("19821", "3", "2015-10-21 18:35:07", "118.184.4.76", "27");
INSERT INTO `wp_gf_form_view` VALUES("19822", "8", "2015-10-21 18:35:08", "118.184.4.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("19823", "3", "2015-10-21 19:18:23", "157.55.39.172", "27");
INSERT INTO `wp_gf_form_view` VALUES("19824", "8", "2015-10-21 19:18:23", "157.55.39.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("19825", "3", "2015-10-21 20:09:02", "206.221.181.195", "54");
INSERT INTO `wp_gf_form_view` VALUES("19826", "8", "2015-10-21 20:09:02", "206.221.181.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("19827", "3", "2015-10-21 21:17:30", "157.55.39.225", "18");
INSERT INTO `wp_gf_form_view` VALUES("19828", "8", "2015-10-21 21:17:30", "157.55.39.225", "2");
INSERT INTO `wp_gf_form_view` VALUES("19829", "3", "2015-10-21 22:35:39", "66.249.74.58", "36");
INSERT INTO `wp_gf_form_view` VALUES("19830", "8", "2015-10-21 22:35:41", "66.249.74.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("19831", "3", "2015-10-21 23:36:02", "66.249.74.58", "22");
INSERT INTO `wp_gf_form_view` VALUES("19832", "8", "2015-10-21 23:46:07", "66.249.74.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("19833", "8", "2015-10-22 00:15:31", "184.66.14.191", "7");
INSERT INTO `wp_gf_form_view` VALUES("19834", "3", "2015-10-22 00:15:31", "184.66.14.191", "54");
INSERT INTO `wp_gf_form_view` VALUES("19835", "1", "2015-10-22 00:48:40", "66.249.74.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("19836", "3", "2015-10-22 01:53:47", "202.46.53.161", "37");
INSERT INTO `wp_gf_form_view` VALUES("19837", "8", "2015-10-22 01:53:54", "202.46.53.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("19838", "3", "2015-10-22 02:05:19", "202.46.52.166", "63");
INSERT INTO `wp_gf_form_view` VALUES("19839", "8", "2015-10-22 02:05:19", "202.46.52.166", "7");
INSERT INTO `wp_gf_form_view` VALUES("19840", "3", "2015-10-22 03:02:23", "66.249.74.56", "128");
INSERT INTO `wp_gf_form_view` VALUES("19841", "8", "2015-10-22 03:02:24", "66.249.74.56", "15");
INSERT INTO `wp_gf_form_view` VALUES("19842", "1", "2015-10-22 03:06:33", "94.242.212.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("19843", "9", "2015-10-22 03:38:59", "202.46.48.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("19844", "3", "2015-10-22 04:00:13", "66.249.74.58", "152");
INSERT INTO `wp_gf_form_view` VALUES("19845", "8", "2015-10-22 04:00:13", "66.249.74.58", "18");
INSERT INTO `wp_gf_form_view` VALUES("19846", "3", "2015-10-22 05:00:56", "202.46.53.207", "114");
INSERT INTO `wp_gf_form_view` VALUES("19847", "8", "2015-10-22 05:00:56", "202.46.53.207", "13");
INSERT INTO `wp_gf_form_view` VALUES("19848", "3", "2015-10-22 06:11:10", "202.46.54.37", "64");
INSERT INTO `wp_gf_form_view` VALUES("19849", "8", "2015-10-22 06:11:11", "202.46.54.37", "7");
INSERT INTO `wp_gf_form_view` VALUES("19850", "3", "2015-10-22 07:09:43", "202.46.51.106", "77");
INSERT INTO `wp_gf_form_view` VALUES("19851", "8", "2015-10-22 07:09:43", "202.46.51.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("19852", "3", "2015-10-22 08:08:15", "202.46.57.73", "124");
INSERT INTO `wp_gf_form_view` VALUES("19853", "8", "2015-10-22 08:08:16", "202.46.57.73", "13");
INSERT INTO `wp_gf_form_view` VALUES("19854", "3", "2015-10-22 09:06:47", "202.46.53.125", "70");
INSERT INTO `wp_gf_form_view` VALUES("19855", "8", "2015-10-22 09:06:48", "202.46.53.125", "9");
INSERT INTO `wp_gf_form_view` VALUES("19856", "3", "2015-10-22 10:00:50", "202.46.58.182", "134");
INSERT INTO `wp_gf_form_view` VALUES("19857", "8", "2015-10-22 10:00:51", "202.46.58.182", "15");
INSERT INTO `wp_gf_form_view` VALUES("19858", "2", "2015-10-22 10:11:14", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("19859", "3", "2015-10-22 11:02:10", "202.46.56.11", "86");
INSERT INTO `wp_gf_form_view` VALUES("19860", "8", "2015-10-22 11:02:10", "202.46.56.11", "10");
INSERT INTO `wp_gf_form_view` VALUES("19861", "3", "2015-10-22 12:00:43", "202.46.50.180", "102");
INSERT INTO `wp_gf_form_view` VALUES("19862", "8", "2015-10-22 12:00:44", "202.46.50.180", "11");
INSERT INTO `wp_gf_form_view` VALUES("19863", "9", "2015-10-22 12:12:24", "202.46.54.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("19864", "1", "2015-10-22 12:13:00", "31.14.135.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("19865", "3", "2015-10-22 13:10:56", "202.46.51.33", "116");
INSERT INTO `wp_gf_form_view` VALUES("19866", "8", "2015-10-22 13:10:57", "202.46.51.33", "14");
INSERT INTO `wp_gf_form_view` VALUES("19867", "1", "2015-10-22 13:15:52", "104.144.14.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("19868", "3", "2015-10-22 14:09:29", "202.46.50.190", "81");
INSERT INTO `wp_gf_form_view` VALUES("19869", "8", "2015-10-22 14:09:29", "202.46.50.190", "9");
INSERT INTO `wp_gf_form_view` VALUES("19870", "3", "2015-10-22 15:08:01", "202.46.50.126", "60");
INSERT INTO `wp_gf_form_view` VALUES("19871", "8", "2015-10-22 15:08:01", "202.46.50.126", "7");
INSERT INTO `wp_gf_form_view` VALUES("19872", "7", "2015-10-22 16:05:04", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("19873", "3", "2015-10-22 16:05:08", "68.180.229.161", "75");
INSERT INTO `wp_gf_form_view` VALUES("19874", "8", "2015-10-22 16:05:08", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("19875", "1", "2015-10-22 16:38:48", "46.240.64.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("19876", "3", "2015-10-22 17:05:08", "202.46.58.136", "110");
INSERT INTO `wp_gf_form_view` VALUES("19877", "8", "2015-10-22 17:05:09", "202.46.58.136", "14");
INSERT INTO `wp_gf_form_view` VALUES("19878", "1", "2015-10-22 17:14:07", "45.62.61.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("19879", "8", "2015-10-22 18:03:38", "202.46.51.108", "11");
INSERT INTO `wp_gf_form_view` VALUES("19880", "3", "2015-10-22 18:03:38", "202.46.51.108", "93");
INSERT INTO `wp_gf_form_view` VALUES("19881", "9", "2015-10-22 18:24:36", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("19882", "3", "2015-10-22 19:02:10", "202.46.51.195", "78");
INSERT INTO `wp_gf_form_view` VALUES("19883", "8", "2015-10-22 19:02:11", "202.46.51.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("19884", "3", "2015-10-22 20:02:29", "66.249.74.58", "110");
INSERT INTO `wp_gf_form_view` VALUES("19885", "8", "2015-10-22 20:02:29", "66.249.74.58", "12");
INSERT INTO `wp_gf_form_view` VALUES("19886", "9", "2015-10-22 20:47:31", "202.46.49.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("19887", "3", "2015-10-22 21:10:57", "202.46.53.114", "127");
INSERT INTO `wp_gf_form_view` VALUES("19888", "8", "2015-10-22 21:10:57", "202.46.53.114", "14");
INSERT INTO `wp_gf_form_view` VALUES("19889", "3", "2015-10-22 22:03:15", "178.137.62.185", "183");
INSERT INTO `wp_gf_form_view` VALUES("19890", "8", "2015-10-22 22:03:15", "178.137.62.185", "22");
INSERT INTO `wp_gf_form_view` VALUES("19891", "1", "2015-10-22 22:38:50", "131.137.245.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("19892", "3", "2015-10-22 23:08:00", "202.46.56.137", "63");
INSERT INTO `wp_gf_form_view` VALUES("19893", "8", "2015-10-22 23:08:01", "202.46.56.137", "6");
INSERT INTO `wp_gf_form_view` VALUES("19894", "3", "2015-10-23 00:00:06", "184.66.128.166", "127");
INSERT INTO `wp_gf_form_view` VALUES("19895", "8", "2015-10-23 00:00:06", "184.66.128.166", "15");
INSERT INTO `wp_gf_form_view` VALUES("19896", "1", "2015-10-23 00:01:48", "184.66.128.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("19897", "3", "2015-10-23 01:05:06", "202.46.58.90", "113");
INSERT INTO `wp_gf_form_view` VALUES("19898", "8", "2015-10-23 01:05:06", "202.46.58.90", "13");
INSERT INTO `wp_gf_form_view` VALUES("19899", "3", "2015-10-23 02:03:37", "202.46.51.163", "63");
INSERT INTO `wp_gf_form_view` VALUES("19900", "8", "2015-10-23 02:03:37", "202.46.51.163", "7");
INSERT INTO `wp_gf_form_view` VALUES("19901", "3", "2015-10-23 03:02:09", "202.46.51.16", "104");
INSERT INTO `wp_gf_form_view` VALUES("19902", "8", "2015-10-23 03:02:09", "202.46.51.16", "13");
INSERT INTO `wp_gf_form_view` VALUES("19903", "3", "2015-10-23 04:00:42", "202.46.48.204", "83");
INSERT INTO `wp_gf_form_view` VALUES("19904", "8", "2015-10-23 04:00:42", "202.46.48.204", "9");
INSERT INTO `wp_gf_form_view` VALUES("19905", "1", "2015-10-23 04:05:11", "198.46.237.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("19906", "5", "2015-10-23 04:28:03", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("19907", "3", "2015-10-23 05:07:39", "66.249.74.58", "104");
INSERT INTO `wp_gf_form_view` VALUES("19908", "8", "2015-10-23 05:07:39", "66.249.74.58", "12");
INSERT INTO `wp_gf_form_view` VALUES("19909", "3", "2015-10-23 06:02:41", "108.180.150.159", "68");
INSERT INTO `wp_gf_form_view` VALUES("19910", "8", "2015-10-23 06:02:41", "108.180.150.159", "8");
INSERT INTO `wp_gf_form_view` VALUES("19911", "3", "2015-10-23 07:02:44", "202.46.58.190", "151");
INSERT INTO `wp_gf_form_view` VALUES("19912", "8", "2015-10-23 07:02:44", "202.46.58.190", "18");
INSERT INTO `wp_gf_form_view` VALUES("19913", "3", "2015-10-23 08:01:17", "202.46.49.79", "83");
INSERT INTO `wp_gf_form_view` VALUES("19914", "8", "2015-10-23 08:01:20", "202.46.49.79", "9");
INSERT INTO `wp_gf_form_view` VALUES("19915", "3", "2015-10-23 09:01:35", "202.46.50.157", "134");
INSERT INTO `wp_gf_form_view` VALUES("19916", "8", "2015-10-23 09:01:35", "202.46.50.157", "15");
INSERT INTO `wp_gf_form_view` VALUES("19917", "3", "2015-10-23 10:00:08", "202.46.48.146", "79");
INSERT INTO `wp_gf_form_view` VALUES("19918", "8", "2015-10-23 10:00:08", "202.46.48.146", "9");
INSERT INTO `wp_gf_form_view` VALUES("19919", "3", "2015-10-23 11:10:27", "202.46.49.197", "133");
INSERT INTO `wp_gf_form_view` VALUES("19920", "8", "2015-10-23 11:10:28", "202.46.49.197", "15");
INSERT INTO `wp_gf_form_view` VALUES("19921", "6", "2015-10-23 11:21:14", "66.249.74.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("19922", "3", "2015-10-23 12:06:10", "66.249.74.56", "75");
INSERT INTO `wp_gf_form_view` VALUES("19923", "8", "2015-10-23 12:06:10", "66.249.74.56", "8");
INSERT INTO `wp_gf_form_view` VALUES("19924", "3", "2015-10-23 13:07:26", "202.46.54.207", "75");
INSERT INTO `wp_gf_form_view` VALUES("19925", "8", "2015-10-23 13:07:27", "202.46.54.207", "8");
INSERT INTO `wp_gf_form_view` VALUES("19926", "3", "2015-10-23 14:06:00", "202.46.57.170", "144");
INSERT INTO `wp_gf_form_view` VALUES("19927", "8", "2015-10-23 14:06:00", "202.46.57.170", "16");
INSERT INTO `wp_gf_form_view` VALUES("19928", "3", "2015-10-23 15:04:31", "202.46.48.204", "65");
INSERT INTO `wp_gf_form_view` VALUES("19929", "8", "2015-10-23 15:04:31", "202.46.48.204", "6");
INSERT INTO `wp_gf_form_view` VALUES("19930", "3", "2015-10-23 16:03:04", "202.46.50.182", "157");
INSERT INTO `wp_gf_form_view` VALUES("19931", "8", "2015-10-23 16:03:05", "202.46.50.182", "18");
INSERT INTO `wp_gf_form_view` VALUES("19932", "9", "2015-10-23 16:38:11", "202.46.54.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("19933", "3", "2015-10-23 17:11:49", "199.168.141.174", "87");
INSERT INTO `wp_gf_form_view` VALUES("19934", "8", "2015-10-23 17:11:50", "199.168.141.174", "10");
INSERT INTO `wp_gf_form_view` VALUES("19935", "3", "2015-10-23 18:00:08", "202.46.48.141", "405");
INSERT INTO `wp_gf_form_view` VALUES("19936", "8", "2015-10-23 18:00:08", "202.46.48.141", "45");
INSERT INTO `wp_gf_form_view` VALUES("19937", "1", "2015-10-23 18:04:21", "81.68.74.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("19938", "2", "2015-10-23 18:04:30", "81.68.74.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("19939", "3", "2015-10-23 19:10:23", "202.46.50.97", "86");
INSERT INTO `wp_gf_form_view` VALUES("19940", "8", "2015-10-23 19:10:23", "202.46.50.97", "11");
INSERT INTO `wp_gf_form_view` VALUES("19941", "3", "2015-10-23 20:01:07", "185.70.187.53", "109");
INSERT INTO `wp_gf_form_view` VALUES("19942", "8", "2015-10-23 20:01:07", "185.70.187.53", "12");
INSERT INTO `wp_gf_form_view` VALUES("19943", "3", "2015-10-23 21:03:16", "188.165.15.148", "90");
INSERT INTO `wp_gf_form_view` VALUES("19944", "8", "2015-10-23 21:03:16", "188.165.15.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("19945", "9", "2015-10-23 21:42:34", "202.46.52.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("19946", "3", "2015-10-23 22:05:59", "202.46.54.158", "79");
INSERT INTO `wp_gf_form_view` VALUES("19947", "8", "2015-10-23 22:05:59", "202.46.54.158", "10");
INSERT INTO `wp_gf_form_view` VALUES("19948", "3", "2015-10-23 23:02:55", "157.55.39.110", "132");
INSERT INTO `wp_gf_form_view` VALUES("19949", "8", "2015-10-23 23:02:55", "157.55.39.110", "16");
INSERT INTO `wp_gf_form_view` VALUES("19950", "3", "2015-10-24 00:03:05", "202.46.52.106", "114");
INSERT INTO `wp_gf_form_view` VALUES("19951", "8", "2015-10-24 00:03:05", "202.46.52.106", "13");
INSERT INTO `wp_gf_form_view` VALUES("19952", "1", "2015-10-24 00:20:50", "184.66.128.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("19953", "3", "2015-10-24 01:01:35", "202.46.52.18", "78");
INSERT INTO `wp_gf_form_view` VALUES("19954", "8", "2015-10-24 01:01:35", "202.46.52.18", "9");
INSERT INTO `wp_gf_form_view` VALUES("19955", "1", "2015-10-24 01:38:17", "195.154.251.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("19956", "3", "2015-10-24 02:00:08", "202.46.56.177", "82");
INSERT INTO `wp_gf_form_view` VALUES("19957", "8", "2015-10-24 02:00:08", "202.46.56.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("19958", "3", "2015-10-24 03:10:22", "202.46.51.165", "204");
INSERT INTO `wp_gf_form_view` VALUES("19959", "8", "2015-10-24 03:10:22", "202.46.51.165", "23");
INSERT INTO `wp_gf_form_view` VALUES("19960", "3", "2015-10-24 04:08:54", "202.46.48.195", "192");
INSERT INTO `wp_gf_form_view` VALUES("19961", "8", "2015-10-24 04:08:55", "202.46.48.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("19962", "1", "2015-10-24 04:20:31", "96.54.162.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("19963", "2", "2015-10-24 04:30:49", "188.165.15.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("19964", "3", "2015-10-24 05:07:26", "202.46.52.73", "60");
INSERT INTO `wp_gf_form_view` VALUES("19965", "8", "2015-10-24 05:07:26", "202.46.52.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("19966", "3", "2015-10-24 06:05:59", "202.46.49.139", "85");
INSERT INTO `wp_gf_form_view` VALUES("19967", "8", "2015-10-24 06:05:59", "202.46.49.139", "9");
INSERT INTO `wp_gf_form_view` VALUES("19968", "3", "2015-10-24 07:04:31", "202.46.48.98", "100");
INSERT INTO `wp_gf_form_view` VALUES("19969", "8", "2015-10-24 07:04:31", "202.46.48.98", "12");
INSERT INTO `wp_gf_form_view` VALUES("19970", "9", "2015-10-24 08:03:03", "202.46.54.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("19971", "3", "2015-10-24 08:03:03", "202.46.54.70", "84");
INSERT INTO `wp_gf_form_view` VALUES("19972", "8", "2015-10-24 08:03:04", "202.46.54.70", "9");
INSERT INTO `wp_gf_form_view` VALUES("19973", "3", "2015-10-24 09:01:36", "202.46.55.16", "60");
INSERT INTO `wp_gf_form_view` VALUES("19974", "8", "2015-10-24 09:01:36", "202.46.55.16", "7");
INSERT INTO `wp_gf_form_view` VALUES("19975", "3", "2015-10-24 10:00:07", "202.46.58.132", "95");
INSERT INTO `wp_gf_form_view` VALUES("19976", "8", "2015-10-24 10:00:08", "202.46.58.132", "11");
INSERT INTO `wp_gf_form_view` VALUES("19977", "3", "2015-10-24 11:10:28", "202.46.55.135", "95");
INSERT INTO `wp_gf_form_view` VALUES("19978", "8", "2015-10-24 11:10:28", "202.46.55.135", "11");
INSERT INTO `wp_gf_form_view` VALUES("19979", "3", "2015-10-24 12:08:46", "89.35.104.156", "81");
INSERT INTO `wp_gf_form_view` VALUES("19980", "8", "2015-10-24 12:08:46", "89.35.104.156", "9");
INSERT INTO `wp_gf_form_view` VALUES("19981", "3", "2015-10-24 13:07:26", "202.46.56.189", "97");
INSERT INTO `wp_gf_form_view` VALUES("19982", "8", "2015-10-24 13:07:26", "202.46.56.189", "10");
INSERT INTO `wp_gf_form_view` VALUES("19983", "5", "2015-10-24 13:47:36", "157.55.39.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("19984", "3", "2015-10-24 14:05:59", "202.46.56.68", "74");
INSERT INTO `wp_gf_form_view` VALUES("19985", "8", "2015-10-24 14:05:59", "202.46.56.68", "7");
INSERT INTO `wp_gf_form_view` VALUES("19986", "3", "2015-10-24 15:04:30", "202.46.48.191", "45");
INSERT INTO `wp_gf_form_view` VALUES("19987", "8", "2015-10-24 15:04:31", "202.46.48.191", "5");
INSERT INTO `wp_gf_form_view` VALUES("19988", "3", "2015-10-24 16:02:32", "46.119.123.33", "116");
INSERT INTO `wp_gf_form_view` VALUES("19989", "8", "2015-10-24 16:02:32", "46.119.123.33", "13");
INSERT INTO `wp_gf_form_view` VALUES("19990", "3", "2015-10-24 17:01:35", "202.46.54.189", "64");
INSERT INTO `wp_gf_form_view` VALUES("19991", "8", "2015-10-24 17:01:35", "202.46.54.189", "7");
INSERT INTO `wp_gf_form_view` VALUES("19992", "3", "2015-10-24 18:00:07", "202.46.56.114", "111");
INSERT INTO `wp_gf_form_view` VALUES("19993", "8", "2015-10-24 18:00:07", "202.46.56.114", "14");
INSERT INTO `wp_gf_form_view` VALUES("19994", "3", "2015-10-24 19:05:57", "188.165.15.148", "87");
INSERT INTO `wp_gf_form_view` VALUES("19995", "8", "2015-10-24 19:05:57", "188.165.15.148", "11");
INSERT INTO `wp_gf_form_view` VALUES("19996", "1", "2015-10-24 19:06:36", "45.59.69.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("19997", "6", "2015-10-24 19:52:05", "188.165.15.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("19998", "3", "2015-10-24 20:08:55", "202.46.58.157", "72");
INSERT INTO `wp_gf_form_view` VALUES("19999", "8", "2015-10-24 20:08:55", "202.46.58.157", "8");
INSERT INTO `wp_gf_form_view` VALUES("20000", "9", "2015-10-24 21:02:00", "66.249.74.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("20001", "3", "2015-10-24 21:02:00", "66.249.74.54", "73");
INSERT INTO `wp_gf_form_view` VALUES("20002", "8", "2015-10-24 21:02:00", "66.249.74.54", "8");
INSERT INTO `wp_gf_form_view` VALUES("20003", "3", "2015-10-24 22:05:58", "202.46.50.90", "388");
INSERT INTO `wp_gf_form_view` VALUES("20004", "8", "2015-10-24 22:05:59", "202.46.50.90", "47");
INSERT INTO `wp_gf_form_view` VALUES("20005", "9", "2015-10-24 22:55:05", "157.55.39.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("20006", "7", "2015-10-24 22:55:13", "157.55.39.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("20007", "3", "2015-10-24 23:04:30", "202.46.54.143", "54");
INSERT INTO `wp_gf_form_view` VALUES("20008", "8", "2015-10-24 23:04:31", "202.46.54.143", "6");
INSERT INTO `wp_gf_form_view` VALUES("20009", "1", "2015-10-24 23:43:04", "107.173.185.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("20010", "3", "2015-10-25 00:16:57", "216.244.82.212", "44");
INSERT INTO `wp_gf_form_view` VALUES("20011", "8", "2015-10-25 00:16:58", "216.244.82.212", "5");
INSERT INTO `wp_gf_form_view` VALUES("20012", "1", "2015-10-25 00:28:42", "45.59.69.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("20013", "9", "2015-10-25 00:46:15", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20014", "3", "2015-10-25 01:23:07", "202.46.54.17", "24");
INSERT INTO `wp_gf_form_view` VALUES("20015", "8", "2015-10-25 01:23:07", "202.46.54.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("20016", "3", "2015-10-25 02:03:01", "216.244.82.212", "62");
INSERT INTO `wp_gf_form_view` VALUES("20017", "8", "2015-10-25 02:03:01", "216.244.82.212", "7");
INSERT INTO `wp_gf_form_view` VALUES("20018", "3", "2015-10-25 03:04:09", "216.232.152.72", "74");
INSERT INTO `wp_gf_form_view` VALUES("20019", "8", "2015-10-25 03:04:09", "216.232.152.72", "9");
INSERT INTO `wp_gf_form_view` VALUES("20020", "3", "2015-10-25 04:17:36", "68.180.229.161", "47");
INSERT INTO `wp_gf_form_view` VALUES("20021", "8", "2015-10-25 04:17:37", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("20022", "3", "2015-10-25 05:17:59", "188.165.15.148", "64");
INSERT INTO `wp_gf_form_view` VALUES("20023", "8", "2015-10-25 05:17:59", "188.165.15.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("20024", "3", "2015-10-25 06:19:34", "202.46.51.105", "30");
INSERT INTO `wp_gf_form_view` VALUES("20025", "8", "2015-10-25 06:19:35", "202.46.51.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("20026", "3", "2015-10-25 07:00:58", "202.46.53.51", "59");
INSERT INTO `wp_gf_form_view` VALUES("20027", "8", "2015-10-25 07:00:58", "202.46.53.51", "7");
INSERT INTO `wp_gf_form_view` VALUES("20028", "3", "2015-10-25 08:23:28", "202.46.57.74", "18");
INSERT INTO `wp_gf_form_view` VALUES("20029", "8", "2015-10-25 08:23:28", "202.46.57.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("20030", "3", "2015-10-25 09:03:27", "202.46.54.19", "79");
INSERT INTO `wp_gf_form_view` VALUES("20031", "8", "2015-10-25 09:03:27", "202.46.54.19", "9");
INSERT INTO `wp_gf_form_view` VALUES("20032", "3", "2015-10-25 10:02:23", "188.165.15.148", "129");
INSERT INTO `wp_gf_form_view` VALUES("20033", "8", "2015-10-25 10:02:23", "188.165.15.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("20034", "3", "2015-10-25 11:01:44", "202.46.55.152", "96");
INSERT INTO `wp_gf_form_view` VALUES("20035", "8", "2015-10-25 11:01:44", "202.46.55.152", "10");
INSERT INTO `wp_gf_form_view` VALUES("20036", "3", "2015-10-25 12:00:09", "66.249.74.54", "80");
INSERT INTO `wp_gf_form_view` VALUES("20037", "8", "2015-10-25 12:00:09", "66.249.74.54", "9");
INSERT INTO `wp_gf_form_view` VALUES("20038", "3", "2015-10-25 13:01:10", "202.46.51.103", "85");
INSERT INTO `wp_gf_form_view` VALUES("20039", "8", "2015-10-25 13:01:11", "202.46.51.103", "10");
INSERT INTO `wp_gf_form_view` VALUES("20040", "3", "2015-10-25 14:11:25", "202.46.48.125", "100");
INSERT INTO `wp_gf_form_view` VALUES("20041", "8", "2015-10-25 14:11:25", "202.46.48.125", "13");
INSERT INTO `wp_gf_form_view` VALUES("20042", "1", "2015-10-25 14:53:27", "192.3.182.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("20043", "3", "2015-10-25 15:09:57", "202.46.58.195", "153");
INSERT INTO `wp_gf_form_view` VALUES("20044", "8", "2015-10-25 15:09:57", "202.46.58.195", "17");
INSERT INTO `wp_gf_form_view` VALUES("20045", "3", "2015-10-25 16:04:17", "188.165.15.148", "127");
INSERT INTO `wp_gf_form_view` VALUES("20046", "8", "2015-10-25 16:04:17", "188.165.15.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("20047", "9", "2015-10-25 16:25:51", "104.200.154.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("20048", "3", "2015-10-25 17:01:04", "188.165.15.148", "103");
INSERT INTO `wp_gf_form_view` VALUES("20049", "8", "2015-10-25 17:01:04", "188.165.15.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("20050", "1", "2015-10-25 17:13:25", "216.158.218.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("20051", "3", "2015-10-25 18:05:34", "202.46.51.17", "110");
INSERT INTO `wp_gf_form_view` VALUES("20052", "8", "2015-10-25 18:05:34", "202.46.51.17", "12");
INSERT INTO `wp_gf_form_view` VALUES("20053", "9", "2015-10-25 18:42:22", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("20054", "3", "2015-10-25 19:04:05", "202.46.55.149", "120");
INSERT INTO `wp_gf_form_view` VALUES("20055", "8", "2015-10-25 19:04:05", "202.46.55.149", "14");
INSERT INTO `wp_gf_form_view` VALUES("20056", "6", "2015-10-25 19:51:13", "66.249.74.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("20057", "3", "2015-10-25 20:02:38", "202.46.55.147", "370");
INSERT INTO `wp_gf_form_view` VALUES("20058", "8", "2015-10-25 20:02:38", "202.46.55.147", "41");
INSERT INTO `wp_gf_form_view` VALUES("20059", "3", "2015-10-25 21:01:10", "202.46.49.92", "156");
INSERT INTO `wp_gf_form_view` VALUES("20060", "8", "2015-10-25 21:01:11", "202.46.49.92", "16");
INSERT INTO `wp_gf_form_view` VALUES("20061", "9", "2015-10-25 21:24:36", "202.46.56.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("20062", "3", "2015-10-25 22:11:29", "202.46.57.125", "102");
INSERT INTO `wp_gf_form_view` VALUES("20063", "8", "2015-10-25 22:11:29", "202.46.57.125", "12");
INSERT INTO `wp_gf_form_view` VALUES("20064", "3", "2015-10-25 23:09:58", "202.46.52.42", "168");
INSERT INTO `wp_gf_form_view` VALUES("20065", "8", "2015-10-25 23:09:58", "202.46.52.42", "19");
INSERT INTO `wp_gf_form_view` VALUES("20066", "3", "2015-10-26 00:08:29", "202.46.54.190", "96");
INSERT INTO `wp_gf_form_view` VALUES("20067", "8", "2015-10-26 00:08:29", "202.46.54.190", "13");
INSERT INTO `wp_gf_form_view` VALUES("20068", "9", "2015-10-26 00:31:54", "202.46.51.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("20069", "3", "2015-10-26 01:07:03", "202.46.53.13", "102");
INSERT INTO `wp_gf_form_view` VALUES("20070", "8", "2015-10-26 01:07:03", "202.46.53.13", "12");
INSERT INTO `wp_gf_form_view` VALUES("20071", "3", "2015-10-26 02:05:33", "202.46.53.66", "127");
INSERT INTO `wp_gf_form_view` VALUES("20072", "8", "2015-10-26 02:05:33", "202.46.53.66", "15");
INSERT INTO `wp_gf_form_view` VALUES("20073", "9", "2015-10-26 02:40:40", "202.46.51.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("20074", "3", "2015-10-26 03:02:56", "91.200.12.63", "116");
INSERT INTO `wp_gf_form_view` VALUES("20075", "8", "2015-10-26 03:02:56", "91.200.12.63", "13");
INSERT INTO `wp_gf_form_view` VALUES("20076", "9", "2015-10-26 03:15:48", "202.46.58.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("20077", "3", "2015-10-26 04:02:37", "202.46.54.142", "104");
INSERT INTO `wp_gf_form_view` VALUES("20078", "8", "2015-10-26 04:02:38", "202.46.54.142", "12");
INSERT INTO `wp_gf_form_view` VALUES("20079", "3", "2015-10-26 05:00:21", "66.249.74.58", "97");
INSERT INTO `wp_gf_form_view` VALUES("20080", "8", "2015-10-26 05:00:21", "66.249.74.58", "11");
INSERT INTO `wp_gf_form_view` VALUES("20081", "3", "2015-10-26 06:11:24", "202.46.55.152", "123");
INSERT INTO `wp_gf_form_view` VALUES("20082", "8", "2015-10-26 06:11:25", "202.46.55.152", "14");
INSERT INTO `wp_gf_form_view` VALUES("20083", "3", "2015-10-26 07:09:56", "202.46.58.195", "112");
INSERT INTO `wp_gf_form_view` VALUES("20084", "8", "2015-10-26 07:09:57", "202.46.58.195", "13");
INSERT INTO `wp_gf_form_view` VALUES("20085", "1", "2015-10-26 07:54:10", "83.39.116.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("20086", "2", "2015-10-26 08:03:44", "45.55.177.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20087", "3", "2015-10-26 08:03:44", "45.55.177.106", "389");
INSERT INTO `wp_gf_form_view` VALUES("20088", "8", "2015-10-26 08:03:44", "45.55.177.106", "41");
INSERT INTO `wp_gf_form_view` VALUES("20089", "8", "2015-10-26 08:03:44", "45.55.177.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20090", "1", "2015-10-26 08:03:44", "45.55.177.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("20091", "3", "2015-10-26 09:07:01", "202.46.57.39", "115");
INSERT INTO `wp_gf_form_view` VALUES("20092", "8", "2015-10-26 09:07:01", "202.46.57.39", "13");
INSERT INTO `wp_gf_form_view` VALUES("20093", "9", "2015-10-26 09:30:26", "202.46.49.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("20094", "3", "2015-10-26 10:01:21", "188.165.15.148", "94");
INSERT INTO `wp_gf_form_view` VALUES("20095", "8", "2015-10-26 10:01:22", "188.165.15.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("20096", "3", "2015-10-26 11:04:05", "202.46.57.176", "108");
INSERT INTO `wp_gf_form_view` VALUES("20097", "8", "2015-10-26 11:04:06", "202.46.57.176", "12");
INSERT INTO `wp_gf_form_view` VALUES("20098", "1", "2015-10-26 11:27:49", "193.201.224.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("20099", "9", "2015-10-26 11:33:32", "188.165.15.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("20100", "3", "2015-10-26 12:16:57", "68.180.229.161", "54");
INSERT INTO `wp_gf_form_view` VALUES("20101", "8", "2015-10-26 12:16:57", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("20102", "3", "2015-10-26 13:03:45", "202.46.56.114", "60");
INSERT INTO `wp_gf_form_view` VALUES("20103", "8", "2015-10-26 13:03:45", "202.46.56.114", "7");
INSERT INTO `wp_gf_form_view` VALUES("20104", "3", "2015-10-26 14:02:17", "202.46.56.62", "72");
INSERT INTO `wp_gf_form_view` VALUES("20105", "8", "2015-10-26 14:02:18", "202.46.56.62", "8");
INSERT INTO `wp_gf_form_view` VALUES("20106", "3", "2015-10-26 15:00:49", "202.46.51.193", "127");
INSERT INTO `wp_gf_form_view` VALUES("20107", "8", "2015-10-26 15:00:50", "202.46.51.193", "15");
INSERT INTO `wp_gf_form_view` VALUES("20108", "1", "2015-10-26 15:31:02", "221.237.19.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("20109", "3", "2015-10-26 16:11:01", "216.232.153.64", "82");
INSERT INTO `wp_gf_form_view` VALUES("20110", "8", "2015-10-26 16:11:01", "216.232.153.64", "9");
INSERT INTO `wp_gf_form_view` VALUES("20111", "3", "2015-10-26 17:02:53", "199.168.141.174", "168");
INSERT INTO `wp_gf_form_view` VALUES("20112", "8", "2015-10-26 17:02:53", "199.168.141.174", "18");
INSERT INTO `wp_gf_form_view` VALUES("20113", "9", "2015-10-26 17:29:57", "188.165.15.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("20114", "3", "2015-10-26 18:08:09", "202.46.57.123", "83");
INSERT INTO `wp_gf_form_view` VALUES("20115", "8", "2015-10-26 18:08:09", "202.46.57.123", "8");
INSERT INTO `wp_gf_form_view` VALUES("20116", "3", "2015-10-26 19:06:40", "202.46.55.83", "123");
INSERT INTO `wp_gf_form_view` VALUES("20117", "8", "2015-10-26 19:06:40", "202.46.55.83", "13");
INSERT INTO `wp_gf_form_view` VALUES("20118", "3", "2015-10-26 20:05:12", "202.46.50.190", "93");
INSERT INTO `wp_gf_form_view` VALUES("20119", "8", "2015-10-26 20:05:12", "202.46.50.190", "10");
INSERT INTO `wp_gf_form_view` VALUES("20120", "3", "2015-10-26 21:03:45", "202.46.48.133", "143");
INSERT INTO `wp_gf_form_view` VALUES("20121", "8", "2015-10-26 21:03:45", "202.46.48.133", "16");
INSERT INTO `wp_gf_form_view` VALUES("20122", "1", "2015-10-26 21:52:30", "5.255.75.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("20123", "3", "2015-10-26 22:02:17", "202.46.54.159", "171");
INSERT INTO `wp_gf_form_view` VALUES("20124", "8", "2015-10-26 22:02:17", "202.46.54.159", "18");
INSERT INTO `wp_gf_form_view` VALUES("20125", "1", "2015-10-26 22:11:32", "45.61.46.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("20126", "3", "2015-10-26 23:00:49", "202.46.48.15", "68");
INSERT INTO `wp_gf_form_view` VALUES("20127", "8", "2015-10-26 23:00:49", "202.46.48.15", "8");
INSERT INTO `wp_gf_form_view` VALUES("20128", "3", "2015-10-27 00:35:01", "96.50.99.134", "9");
INSERT INTO `wp_gf_form_view` VALUES("20129", "8", "2015-10-27 00:35:01", "96.50.99.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("20130", "3", "2015-10-27 01:06:51", "66.249.74.58", "37");
INSERT INTO `wp_gf_form_view` VALUES("20131", "8", "2015-10-27 01:06:52", "66.249.74.58", "4");
INSERT INTO `wp_gf_form_view` VALUES("20132", "3", "2015-10-27 02:07:24", "68.180.229.161", "74");
INSERT INTO `wp_gf_form_view` VALUES("20133", "8", "2015-10-27 02:07:24", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("20134", "1", "2015-10-27 02:15:30", "82.211.48.241", "2");
INSERT INTO `wp_gf_form_view` VALUES("20135", "3", "2015-10-27 03:06:28", "68.180.229.161", "70");
INSERT INTO `wp_gf_form_view` VALUES("20136", "8", "2015-10-27 03:06:28", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("20137", "2", "2015-10-27 03:14:39", "66.249.74.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("20138", "3", "2015-10-27 04:00:13", "202.46.50.188", "121");
INSERT INTO `wp_gf_form_view` VALUES("20139", "8", "2015-10-27 04:00:13", "202.46.50.188", "13");
INSERT INTO `wp_gf_form_view` VALUES("20140", "1", "2015-10-27 04:09:29", "45.57.154.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("20141", "3", "2015-10-27 05:12:51", "202.46.54.183", "1161");
INSERT INTO `wp_gf_form_view` VALUES("20142", "8", "2015-10-27 05:12:51", "202.46.54.183", "131");
INSERT INTO `wp_gf_form_view` VALUES("20143", "2", "2015-10-27 05:45:38", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("20144", "1", "2015-10-27 05:45:42", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("20145", "5", "2015-10-27 05:56:24", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("20146", "9", "2015-10-27 05:59:16", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("20147", "3", "2015-10-27 06:00:00", "5.9.98.130", "5127");
INSERT INTO `wp_gf_form_view` VALUES("20148", "8", "2015-10-27 06:00:01", "5.9.98.130", "625");
INSERT INTO `wp_gf_form_view` VALUES("20149", "6", "2015-10-27 06:03:30", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("20150", "9", "2015-10-27 06:38:26", "202.46.56.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("20151", "1", "2015-10-27 06:41:58", "104.218.192.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("20152", "3", "2015-10-27 07:00:00", "5.9.98.130", "4591");
INSERT INTO `wp_gf_form_view` VALUES("20153", "8", "2015-10-27 07:00:04", "5.9.98.130", "560");
INSERT INTO `wp_gf_form_view` VALUES("20154", "3", "2015-10-27 08:00:00", "5.9.98.130", "2090");
INSERT INTO `wp_gf_form_view` VALUES("20155", "8", "2015-10-27 08:00:05", "5.9.98.130", "236");
INSERT INTO `wp_gf_form_view` VALUES("20156", "9", "2015-10-27 08:06:00", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20157", "3", "2015-10-27 09:00:01", "5.9.98.130", "7138");
INSERT INTO `wp_gf_form_view` VALUES("20158", "8", "2015-10-27 09:00:02", "5.9.98.130", "824");
INSERT INTO `wp_gf_form_view` VALUES("20159", "1", "2015-10-27 09:18:24", "107.173.188.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("20160", "8", "2015-10-27 10:00:02", "5.9.98.130", "547");
INSERT INTO `wp_gf_form_view` VALUES("20161", "3", "2015-10-27 10:00:03", "5.9.98.130", "4166");
INSERT INTO `wp_gf_form_view` VALUES("20162", "3", "2015-10-27 11:06:33", "66.249.74.56", "92");
INSERT INTO `wp_gf_form_view` VALUES("20163", "8", "2015-10-27 11:06:34", "66.249.74.56", "10");
INSERT INTO `wp_gf_form_view` VALUES("20164", "3", "2015-10-27 12:06:15", "202.46.51.89", "5885");
INSERT INTO `wp_gf_form_view` VALUES("20165", "8", "2015-10-27 12:06:15", "202.46.51.89", "583");
INSERT INTO `wp_gf_form_view` VALUES("20166", "3", "2015-10-27 13:00:02", "5.9.98.130", "6244");
INSERT INTO `wp_gf_form_view` VALUES("20167", "8", "2015-10-27 13:00:03", "5.9.98.130", "765");
INSERT INTO `wp_gf_form_view` VALUES("20168", "9", "2015-10-27 13:04:46", "202.46.50.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("20169", "1", "2015-10-27 13:34:46", "188.214.55.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("20170", "3", "2015-10-27 14:00:00", "5.9.98.130", "5386");
INSERT INTO `wp_gf_form_view` VALUES("20171", "8", "2015-10-27 14:00:07", "5.9.98.130", "886");
INSERT INTO `wp_gf_form_view` VALUES("20172", "9", "2015-10-27 14:26:43", "202.46.49.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("20173", "3", "2015-10-27 15:00:00", "5.9.98.130", "5441");
INSERT INTO `wp_gf_form_view` VALUES("20174", "8", "2015-10-27 15:00:00", "5.9.98.130", "545");
INSERT INTO `wp_gf_form_view` VALUES("20175", "3", "2015-10-27 16:00:00", "5.9.98.130", "242");
INSERT INTO `wp_gf_form_view` VALUES("20176", "8", "2015-10-27 16:00:04", "5.9.98.130", "27");
INSERT INTO `wp_gf_form_view` VALUES("20177", "1", "2015-10-27 16:25:56", "193.201.224.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("20178", "3", "2015-10-27 17:00:09", "66.249.74.56", "185");
INSERT INTO `wp_gf_form_view` VALUES("20179", "8", "2015-10-27 17:00:10", "66.249.74.56", "23");
INSERT INTO `wp_gf_form_view` VALUES("20180", "1", "2015-10-27 17:18:02", "96.50.93.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("20181", "3", "2015-10-27 18:09:22", "202.46.55.156", "94");
INSERT INTO `wp_gf_form_view` VALUES("20182", "8", "2015-10-27 18:09:22", "202.46.55.156", "12");
INSERT INTO `wp_gf_form_view` VALUES("20183", "3", "2015-10-27 19:07:43", "202.46.55.148", "405");
INSERT INTO `wp_gf_form_view` VALUES("20184", "8", "2015-10-27 19:07:43", "202.46.55.148", "45");
INSERT INTO `wp_gf_form_view` VALUES("20185", "1", "2015-10-27 19:35:51", "50.67.170.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("20186", "2", "2015-10-27 19:48:04", "213.37.205.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("20187", "3", "2015-10-27 20:06:14", "202.46.54.136", "145");
INSERT INTO `wp_gf_form_view` VALUES("20188", "8", "2015-10-27 20:06:15", "202.46.54.136", "16");
INSERT INTO `wp_gf_form_view` VALUES("20189", "3", "2015-10-27 21:04:46", "202.46.50.152", "145");
INSERT INTO `wp_gf_form_view` VALUES("20190", "8", "2015-10-27 21:04:46", "202.46.50.152", "16");
INSERT INTO `wp_gf_form_view` VALUES("20191", "1", "2015-10-27 21:12:21", "155.94.245.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("20192", "8", "2015-10-27 22:01:29", "184.69.2.234", "11");
INSERT INTO `wp_gf_form_view` VALUES("20193", "9", "2015-10-27 22:03:18", "202.46.54.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("20194", "3", "2015-10-27 22:03:18", "202.46.54.137", "93");
INSERT INTO `wp_gf_form_view` VALUES("20195", "3", "2015-10-27 23:01:51", "202.46.51.85", "143");
INSERT INTO `wp_gf_form_view` VALUES("20196", "8", "2015-10-27 23:01:51", "202.46.51.85", "16");
INSERT INTO `wp_gf_form_view` VALUES("20197", "3", "2015-10-28 00:00:22", "202.46.49.69", "121");
INSERT INTO `wp_gf_form_view` VALUES("20198", "8", "2015-10-28 00:00:23", "202.46.49.69", "15");
INSERT INTO `wp_gf_form_view` VALUES("20199", "3", "2015-10-28 01:10:37", "202.46.55.39", "144");
INSERT INTO `wp_gf_form_view` VALUES("20200", "8", "2015-10-28 01:10:37", "202.46.55.39", "19");
INSERT INTO `wp_gf_form_view` VALUES("20201", "1", "2015-10-28 01:24:39", "91.200.82.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("20202", "2", "2015-10-28 01:40:32", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20203", "3", "2015-10-28 02:09:10", "202.46.50.17", "146");
INSERT INTO `wp_gf_form_view` VALUES("20204", "8", "2015-10-28 02:09:10", "202.46.50.17", "16");
INSERT INTO `wp_gf_form_view` VALUES("20205", "2", "2015-10-28 02:25:58", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("20206", "3", "2015-10-28 03:07:42", "202.46.53.51", "102");
INSERT INTO `wp_gf_form_view` VALUES("20207", "8", "2015-10-28 03:07:42", "202.46.53.51", "12");
INSERT INTO `wp_gf_form_view` VALUES("20208", "3", "2015-10-28 04:01:41", "192.171.45.200", "169");
INSERT INTO `wp_gf_form_view` VALUES("20209", "8", "2015-10-28 04:01:41", "192.171.45.200", "22");
INSERT INTO `wp_gf_form_view` VALUES("20210", "3", "2015-10-28 05:03:47", "37.115.184.26", "47");
INSERT INTO `wp_gf_form_view` VALUES("20211", "8", "2015-10-28 05:03:47", "37.115.184.26", "5");
INSERT INTO `wp_gf_form_view` VALUES("20212", "3", "2015-10-28 06:06:59", "192.171.45.200", "73");
INSERT INTO `wp_gf_form_view` VALUES("20213", "8", "2015-10-28 06:07:00", "192.171.45.200", "8");
INSERT INTO `wp_gf_form_view` VALUES("20214", "3", "2015-10-28 07:04:53", "192.171.45.200", "38");
INSERT INTO `wp_gf_form_view` VALUES("20215", "8", "2015-10-28 07:04:54", "192.171.45.200", "4");
INSERT INTO `wp_gf_form_view` VALUES("20216", "3", "2015-10-28 08:43:59", "157.55.39.14", "9");
INSERT INTO `wp_gf_form_view` VALUES("20217", "8", "2015-10-28 08:43:59", "157.55.39.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("20218", "3", "2015-10-28 09:03:12", "68.180.229.161", "54");
INSERT INTO `wp_gf_form_view` VALUES("20219", "8", "2015-10-28 09:03:13", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("20220", "1", "2015-10-28 09:41:03", "193.201.224.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("20221", "3", "2015-10-28 10:00:03", "202.119.25.71", "37");
INSERT INTO `wp_gf_form_view` VALUES("20222", "8", "2015-10-28 10:00:03", "202.119.25.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("20223", "3", "2015-10-28 11:08:41", "192.171.45.200", "37");
INSERT INTO `wp_gf_form_view` VALUES("20224", "8", "2015-10-28 11:08:42", "192.171.45.200", "4");
INSERT INTO `wp_gf_form_view` VALUES("20225", "3", "2015-10-28 12:15:07", "192.171.45.200", "9");
INSERT INTO `wp_gf_form_view` VALUES("20226", "8", "2015-10-28 12:15:07", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20227", "3", "2015-10-28 13:25:50", "192.171.45.200", "27");
INSERT INTO `wp_gf_form_view` VALUES("20228", "8", "2015-10-28 13:25:52", "192.171.45.200", "3");
INSERT INTO `wp_gf_form_view` VALUES("20229", "3", "2015-10-28 14:03:13", "157.55.39.42", "46");
INSERT INTO `wp_gf_form_view` VALUES("20230", "8", "2015-10-28 14:03:14", "157.55.39.42", "5");
INSERT INTO `wp_gf_form_view` VALUES("20231", "3", "2015-10-28 15:13:44", "68.180.229.161", "45");
INSERT INTO `wp_gf_form_view` VALUES("20232", "8", "2015-10-28 15:13:48", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("20233", "1", "2015-10-28 15:20:44", "82.211.48.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("20234", "3", "2015-10-28 16:23:49", "202.46.52.77", "131");
INSERT INTO `wp_gf_form_view` VALUES("20235", "8", "2015-10-28 16:23:50", "202.46.52.77", "14");
INSERT INTO `wp_gf_form_view` VALUES("20236", "1", "2015-10-28 16:39:59", "192.3.83.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("20237", "3", "2015-10-28 17:07:35", "94.23.45.37", "551");
INSERT INTO `wp_gf_form_view` VALUES("20238", "8", "2015-10-28 17:07:35", "94.23.45.37", "61");
INSERT INTO `wp_gf_form_view` VALUES("20239", "3", "2015-10-28 18:04:13", "91.200.12.106", "167");
INSERT INTO `wp_gf_form_view` VALUES("20240", "8", "2015-10-28 18:04:14", "91.200.12.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("20241", "3", "2015-10-28 19:07:43", "202.46.50.122", "81");
INSERT INTO `wp_gf_form_view` VALUES("20242", "8", "2015-10-28 19:07:44", "202.46.50.122", "10");
INSERT INTO `wp_gf_form_view` VALUES("20243", "9", "2015-10-28 19:19:24", "202.46.56.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("20244", "3", "2015-10-28 20:06:14", "202.46.55.66", "93");
INSERT INTO `wp_gf_form_view` VALUES("20245", "8", "2015-10-28 20:06:14", "202.46.55.66", "10");
INSERT INTO `wp_gf_form_view` VALUES("20246", "3", "2015-10-28 21:02:51", "157.55.39.205", "132");
INSERT INTO `wp_gf_form_view` VALUES("20247", "8", "2015-10-28 21:02:51", "157.55.39.205", "16");
INSERT INTO `wp_gf_form_view` VALUES("20248", "3", "2015-10-28 22:03:17", "202.46.56.182", "74");
INSERT INTO `wp_gf_form_view` VALUES("20249", "8", "2015-10-28 22:03:18", "202.46.56.182", "8");
INSERT INTO `wp_gf_form_view` VALUES("20250", "3", "2015-10-28 23:01:50", "202.46.49.108", "98");
INSERT INTO `wp_gf_form_view` VALUES("20251", "8", "2015-10-28 23:01:50", "202.46.49.108", "11");
INSERT INTO `wp_gf_form_view` VALUES("20252", "9", "2015-10-28 23:48:39", "202.46.58.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("20253", "3", "2015-10-29 00:00:22", "202.46.55.176", "78");
INSERT INTO `wp_gf_form_view` VALUES("20254", "8", "2015-10-29 00:00:22", "202.46.55.176", "8");
INSERT INTO `wp_gf_form_view` VALUES("20255", "3", "2015-10-29 01:10:37", "202.46.53.167", "177");
INSERT INTO `wp_gf_form_view` VALUES("20256", "8", "2015-10-29 01:10:38", "202.46.53.167", "20");
INSERT INTO `wp_gf_form_view` VALUES("20257", "3", "2015-10-29 02:09:09", "202.46.57.70", "89");
INSERT INTO `wp_gf_form_view` VALUES("20258", "8", "2015-10-29 02:09:09", "202.46.57.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("20259", "1", "2015-10-29 02:35:28", "137.186.69.237", "2");
INSERT INTO `wp_gf_form_view` VALUES("20260", "3", "2015-10-29 03:07:41", "202.46.51.58", "77");
INSERT INTO `wp_gf_form_view` VALUES("20261", "8", "2015-10-29 03:07:41", "202.46.51.58", "10");
INSERT INTO `wp_gf_form_view` VALUES("20262", "3", "2015-10-29 04:01:19", "96.54.177.120", "333");
INSERT INTO `wp_gf_form_view` VALUES("20263", "8", "2015-10-29 04:01:20", "96.54.177.120", "42");
INSERT INTO `wp_gf_form_view` VALUES("20264", "1", "2015-10-29 04:03:39", "96.54.177.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("20265", "2", "2015-10-29 04:38:11", "188.42.240.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("20266", "3", "2015-10-29 05:01:01", "207.216.11.190", "141");
INSERT INTO `wp_gf_form_view` VALUES("20267", "8", "2015-10-29 05:01:01", "207.216.11.190", "18");
INSERT INTO `wp_gf_form_view` VALUES("20268", "3", "2015-10-29 06:03:17", "202.46.50.139", "127");
INSERT INTO `wp_gf_form_view` VALUES("20269", "8", "2015-10-29 06:03:18", "202.46.50.139", "17");
INSERT INTO `wp_gf_form_view` VALUES("20270", "3", "2015-10-29 07:01:50", "202.46.53.203", "35");
INSERT INTO `wp_gf_form_view` VALUES("20271", "8", "2015-10-29 07:01:51", "202.46.53.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("20272", "9", "2015-10-29 08:00:22", "202.46.51.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("20273", "3", "2015-10-29 08:00:24", "202.46.51.116", "141");
INSERT INTO `wp_gf_form_view` VALUES("20274", "8", "2015-10-29 08:00:24", "202.46.51.116", "19");
INSERT INTO `wp_gf_form_view` VALUES("20275", "1", "2015-10-29 08:20:10", "192.69.254.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("20276", "3", "2015-10-29 09:10:38", "202.46.57.173", "79");
INSERT INTO `wp_gf_form_view` VALUES("20277", "8", "2015-10-29 09:10:39", "202.46.57.173", "10");
INSERT INTO `wp_gf_form_view` VALUES("20278", "1", "2015-10-29 09:31:24", "188.208.218.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("20279", "3", "2015-10-29 10:09:08", "202.46.53.164", "87");
INSERT INTO `wp_gf_form_view` VALUES("20280", "8", "2015-10-29 10:09:08", "202.46.53.164", "11");
INSERT INTO `wp_gf_form_view` VALUES("20281", "3", "2015-10-29 11:07:41", "202.46.58.192", "97");
INSERT INTO `wp_gf_form_view` VALUES("20282", "8", "2015-10-29 11:07:41", "202.46.58.192", "12");
INSERT INTO `wp_gf_form_view` VALUES("20283", "1", "2015-10-29 11:32:04", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("20284", "3", "2015-10-29 12:06:13", "202.46.56.114", "59");
INSERT INTO `wp_gf_form_view` VALUES("20285", "8", "2015-10-29 12:06:13", "202.46.56.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("20286", "3", "2015-10-29 13:04:45", "202.46.53.200", "67");
INSERT INTO `wp_gf_form_view` VALUES("20287", "8", "2015-10-29 13:04:45", "202.46.53.200", "9");
INSERT INTO `wp_gf_form_view` VALUES("20288", "8", "2015-10-29 14:03:17", "202.46.49.108", "14");
INSERT INTO `wp_gf_form_view` VALUES("20289", "3", "2015-10-29 14:03:17", "202.46.49.108", "98");
INSERT INTO `wp_gf_form_view` VALUES("20290", "3", "2015-10-29 15:01:49", "202.46.57.125", "73");
INSERT INTO `wp_gf_form_view` VALUES("20291", "8", "2015-10-29 15:01:49", "202.46.57.125", "10");
INSERT INTO `wp_gf_form_view` VALUES("20292", "3", "2015-10-29 16:00:51", "178.137.94.166", "114");
INSERT INTO `wp_gf_form_view` VALUES("20293", "3", "2015-10-29 16:00:51", "178.137.94.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("20294", "8", "2015-10-29 16:00:52", "178.137.94.166", "14");
INSERT INTO `wp_gf_form_view` VALUES("20295", "1", "2015-10-29 16:59:13", "82.211.48.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("20296", "3", "2015-10-29 17:10:37", "202.46.50.154", "76");
INSERT INTO `wp_gf_form_view` VALUES("20297", "8", "2015-10-29 17:10:37", "202.46.50.154", "10");
INSERT INTO `wp_gf_form_view` VALUES("20298", "3", "2015-10-29 18:09:10", "202.46.58.121", "132");
INSERT INTO `wp_gf_form_view` VALUES("20299", "8", "2015-10-29 18:09:10", "202.46.58.121", "18");
INSERT INTO `wp_gf_form_view` VALUES("20300", "3", "2015-10-29 19:07:41", "202.46.51.170", "66");
INSERT INTO `wp_gf_form_view` VALUES("20301", "8", "2015-10-29 19:07:42", "202.46.51.170", "8");
INSERT INTO `wp_gf_form_view` VALUES("20302", "3", "2015-10-29 20:06:13", "202.46.54.203", "70");
INSERT INTO `wp_gf_form_view` VALUES("20303", "8", "2015-10-29 20:06:13", "202.46.54.203", "9");
INSERT INTO `wp_gf_form_view` VALUES("20304", "3", "2015-10-29 21:04:45", "202.46.48.192", "75");
INSERT INTO `wp_gf_form_view` VALUES("20305", "8", "2015-10-29 21:04:45", "202.46.48.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("20306", "3", "2015-10-29 22:03:17", "202.46.55.82", "80");
INSERT INTO `wp_gf_form_view` VALUES("20307", "8", "2015-10-29 22:03:17", "202.46.55.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("20308", "1", "2015-10-29 23:01:32", "125.71.52.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("20309", "3", "2015-10-29 23:01:32", "125.71.52.196", "159");
INSERT INTO `wp_gf_form_view` VALUES("20310", "8", "2015-10-29 23:01:32", "125.71.52.196", "20");
INSERT INTO `wp_gf_form_view` VALUES("20311", "3", "2015-10-30 00:00:22", "202.46.56.69", "147");
INSERT INTO `wp_gf_form_view` VALUES("20312", "8", "2015-10-30 00:00:22", "202.46.56.69", "18");
INSERT INTO `wp_gf_form_view` VALUES("20313", "1", "2015-10-30 00:01:57", "75.157.170.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("20314", "3", "2015-10-30 01:10:36", "202.46.56.91", "182");
INSERT INTO `wp_gf_form_view` VALUES("20315", "8", "2015-10-30 01:10:37", "202.46.56.91", "23");
INSERT INTO `wp_gf_form_view` VALUES("20316", "9", "2015-10-30 01:38:03", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20317", "3", "2015-10-30 02:09:08", "202.46.52.162", "134");
INSERT INTO `wp_gf_form_view` VALUES("20318", "8", "2015-10-30 02:09:08", "202.46.52.162", "17");
INSERT INTO `wp_gf_form_view` VALUES("20319", "1", "2015-10-30 02:40:05", "24.68.101.123", "3");
INSERT INTO `wp_gf_form_view` VALUES("20320", "3", "2015-10-30 03:07:40", "202.46.53.176", "87");
INSERT INTO `wp_gf_form_view` VALUES("20321", "8", "2015-10-30 03:07:40", "202.46.53.176", "11");
INSERT INTO `wp_gf_form_view` VALUES("20322", "3", "2015-10-30 04:06:12", "202.46.50.138", "83");
INSERT INTO `wp_gf_form_view` VALUES("20323", "8", "2015-10-30 04:06:13", "202.46.50.138", "12");
INSERT INTO `wp_gf_form_view` VALUES("20324", "3", "2015-10-30 05:01:13", "207.46.13.1", "83");
INSERT INTO `wp_gf_form_view` VALUES("20325", "8", "2015-10-30 05:01:13", "207.46.13.1", "10");
INSERT INTO `wp_gf_form_view` VALUES("20326", "3", "2015-10-30 06:03:17", "202.46.50.155", "74");
INSERT INTO `wp_gf_form_view` VALUES("20327", "8", "2015-10-30 06:03:17", "202.46.50.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("20328", "3", "2015-10-30 07:01:50", "202.46.54.163", "79");
INSERT INTO `wp_gf_form_view` VALUES("20329", "8", "2015-10-30 07:01:50", "202.46.54.163", "11");
INSERT INTO `wp_gf_form_view` VALUES("20330", "3", "2015-10-30 08:00:21", "202.46.58.15", "96");
INSERT INTO `wp_gf_form_view` VALUES("20331", "8", "2015-10-30 08:00:21", "202.46.58.15", "12");
INSERT INTO `wp_gf_form_view` VALUES("20332", "3", "2015-10-30 09:10:36", "202.46.53.47", "69");
INSERT INTO `wp_gf_form_view` VALUES("20333", "8", "2015-10-30 09:10:37", "202.46.53.47", "9");
INSERT INTO `wp_gf_form_view` VALUES("20334", "3", "2015-10-30 10:07:48", "207.46.13.1", "112");
INSERT INTO `wp_gf_form_view` VALUES("20335", "8", "2015-10-30 10:07:48", "207.46.13.1", "15");
INSERT INTO `wp_gf_form_view` VALUES("20336", "9", "2015-10-30 10:55:58", "202.46.52.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("20337", "1", "2015-10-30 11:04:08", "27.159.238.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("20338", "3", "2015-10-30 11:04:08", "27.159.238.195", "108");
INSERT INTO `wp_gf_form_view` VALUES("20339", "8", "2015-10-30 11:04:09", "27.159.238.195", "15");
INSERT INTO `wp_gf_form_view` VALUES("20340", "3", "2015-10-30 12:06:12", "202.46.56.72", "128");
INSERT INTO `wp_gf_form_view` VALUES("20341", "8", "2015-10-30 12:06:12", "202.46.56.72", "17");
INSERT INTO `wp_gf_form_view` VALUES("20342", "3", "2015-10-30 13:04:45", "202.46.58.12", "109");
INSERT INTO `wp_gf_form_view` VALUES("20343", "8", "2015-10-30 13:04:48", "202.46.58.12", "14");
INSERT INTO `wp_gf_form_view` VALUES("20344", "3", "2015-10-30 14:00:19", "68.180.229.161", "97");
INSERT INTO `wp_gf_form_view` VALUES("20345", "8", "2015-10-30 14:00:19", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("20346", "3", "2015-10-30 15:01:49", "202.46.55.17", "87");
INSERT INTO `wp_gf_form_view` VALUES("20347", "8", "2015-10-30 15:01:49", "202.46.55.17", "11");
INSERT INTO `wp_gf_form_view` VALUES("20348", "3", "2015-10-30 16:00:32", "202.46.54.159", "46");
INSERT INTO `wp_gf_form_view` VALUES("20349", "8", "2015-10-30 16:00:32", "202.46.54.159", "6");
INSERT INTO `wp_gf_form_view` VALUES("20350", "5", "2015-10-30 16:48:41", "188.165.15.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("20351", "3", "2015-10-30 17:18:33", "66.249.74.102", "17");
INSERT INTO `wp_gf_form_view` VALUES("20352", "8", "2015-10-30 17:18:34", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("20353", "1", "2015-10-30 18:23:47", "45.61.46.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("20354", "3", "2015-10-30 18:23:51", "45.61.46.94", "8");
INSERT INTO `wp_gf_form_view` VALUES("20355", "8", "2015-10-30 18:23:52", "45.61.46.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("20356", "3", "2015-10-30 19:19:01", "184.66.161.95", "32");
INSERT INTO `wp_gf_form_view` VALUES("20357", "8", "2015-10-30 19:19:08", "184.66.161.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("20358", "1", "2015-10-30 19:34:28", "209.52.88.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("20359", "3", "2015-10-30 20:02:22", "64.114.18.129", "41");
INSERT INTO `wp_gf_form_view` VALUES("20360", "8", "2015-10-30 20:02:25", "64.114.18.129", "5");
INSERT INTO `wp_gf_form_view` VALUES("20361", "6", "2015-10-30 20:42:33", "104.144.172.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("20362", "2", "2015-10-30 20:59:25", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20363", "3", "2015-10-30 21:03:41", "66.249.74.104", "49");
INSERT INTO `wp_gf_form_view` VALUES("20364", "8", "2015-10-30 21:03:41", "66.249.74.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("20365", "1", "2015-10-30 21:07:49", "82.211.48.241", "2");
INSERT INTO `wp_gf_form_view` VALUES("20366", "3", "2015-10-30 22:11:41", "98.109.228.48", "56");
INSERT INTO `wp_gf_form_view` VALUES("20367", "8", "2015-10-30 22:11:42", "98.109.228.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("20368", "3", "2015-10-30 23:03:23", "24.68.130.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("20369", "8", "2015-10-30 23:03:23", "24.68.130.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("20370", "1", "2015-10-30 23:03:38", "24.68.130.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("20371", "1", "2015-10-31 00:07:17", "188.208.218.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("20372", "3", "2015-10-31 00:07:17", "188.208.218.154", "265");
INSERT INTO `wp_gf_form_view` VALUES("20373", "8", "2015-10-31 00:07:17", "188.208.218.154", "33");
INSERT INTO `wp_gf_form_view` VALUES("20374", "2", "2015-10-31 00:46:01", "98.103.22.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("20375", "3", "2015-10-31 01:07:47", "66.249.74.102", "50");
INSERT INTO `wp_gf_form_view` VALUES("20376", "8", "2015-10-31 01:07:47", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("20377", "1", "2015-10-31 02:20:04", "69.30.200.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("20378", "3", "2015-10-31 02:20:04", "69.30.200.44", "24");
INSERT INTO `wp_gf_form_view` VALUES("20379", "8", "2015-10-31 02:20:04", "69.30.200.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("20380", "2", "2015-10-31 02:20:05", "69.30.200.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("20381", "6", "2015-10-31 02:35:18", "157.55.39.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("20382", "3", "2015-10-31 03:52:03", "66.249.74.102", "17");
INSERT INTO `wp_gf_form_view` VALUES("20383", "8", "2015-10-31 03:52:06", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("20384", "1", "2015-10-31 03:58:10", "188.208.218.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("20385", "3", "2015-10-31 04:14:17", "66.249.74.102", "25");
INSERT INTO `wp_gf_form_view` VALUES("20386", "8", "2015-10-31 04:14:17", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("20387", "3", "2015-10-31 05:03:03", "157.55.39.11", "24");
INSERT INTO `wp_gf_form_view` VALUES("20388", "8", "2015-10-31 05:03:04", "157.55.39.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("20389", "3", "2015-10-31 06:32:01", "157.55.39.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("20390", "8", "2015-10-31 06:32:02", "157.55.39.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("20391", "3", "2015-10-31 07:02:39", "37.115.184.26", "95");
INSERT INTO `wp_gf_form_view` VALUES("20392", "3", "2015-10-31 07:02:39", "37.115.184.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("20393", "8", "2015-10-31 07:02:39", "37.115.184.26", "11");
INSERT INTO `wp_gf_form_view` VALUES("20394", "8", "2015-10-31 07:02:39", "37.115.184.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("20395", "1", "2015-10-31 07:15:07", "45.62.47.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("20396", "3", "2015-10-31 08:00:00", "207.46.13.104", "11");
INSERT INTO `wp_gf_form_view` VALUES("20397", "8", "2015-10-31 08:56:41", "157.55.39.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("20398", "1", "2015-10-31 09:34:07", "89.230.126.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("20399", "3", "2015-10-31 09:34:09", "89.230.126.224", "24");
INSERT INTO `wp_gf_form_view` VALUES("20400", "8", "2015-10-31 09:34:09", "89.230.126.224", "3");
INSERT INTO `wp_gf_form_view` VALUES("20401", "3", "2015-10-31 10:17:06", "207.46.13.104", "305");
INSERT INTO `wp_gf_form_view` VALUES("20402", "8", "2015-10-31 10:17:07", "207.46.13.104", "38");
INSERT INTO `wp_gf_form_view` VALUES("20403", "1", "2015-10-31 10:51:20", "98.103.22.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("20404", "2", "2015-10-31 10:51:26", "98.103.22.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("20405", "3", "2015-10-31 11:08:25", "98.103.22.238", "474");
INSERT INTO `wp_gf_form_view` VALUES("20406", "8", "2015-10-31 11:08:25", "98.103.22.238", "59");
INSERT INTO `wp_gf_form_view` VALUES("20407", "1", "2015-10-31 11:09:01", "98.103.22.238", "3");
INSERT INTO `wp_gf_form_view` VALUES("20408", "2", "2015-10-31 11:09:06", "98.103.22.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("20409", "3", "2015-10-31 12:01:07", "157.55.39.69", "24");
INSERT INTO `wp_gf_form_view` VALUES("20410", "8", "2015-10-31 12:01:07", "157.55.39.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("20411", "3", "2015-10-31 13:05:28", "68.180.229.161", "48");
INSERT INTO `wp_gf_form_view` VALUES("20412", "8", "2015-10-31 13:05:28", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("20413", "2", "2015-10-31 13:29:32", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("20414", "3", "2015-10-31 14:17:04", "46.119.123.33", "74");
INSERT INTO `wp_gf_form_view` VALUES("20415", "8", "2015-10-31 14:17:04", "46.119.123.33", "10");
INSERT INTO `wp_gf_form_view` VALUES("20416", "1", "2015-10-31 14:43:45", "89.230.126.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("20417", "3", "2015-10-31 15:15:10", "154.20.49.202", "129");
INSERT INTO `wp_gf_form_view` VALUES("20418", "8", "2015-10-31 15:15:10", "154.20.49.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("20419", "1", "2015-10-31 15:16:26", "154.20.49.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("20420", "3", "2015-10-31 16:23:10", "157.55.39.69", "92");
INSERT INTO `wp_gf_form_view` VALUES("20421", "8", "2015-10-31 16:23:10", "157.55.39.69", "12");
INSERT INTO `wp_gf_form_view` VALUES("20422", "3", "2015-10-31 17:06:25", "66.249.74.106", "61");
INSERT INTO `wp_gf_form_view` VALUES("20423", "8", "2015-10-31 17:06:25", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("20424", "3", "2015-10-31 18:09:08", "202.46.53.164", "73");
INSERT INTO `wp_gf_form_view` VALUES("20425", "8", "2015-10-31 18:09:08", "202.46.53.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("20426", "1", "2015-10-31 18:49:59", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("20427", "8", "2015-10-31 19:07:40", "202.46.57.13", "11");
INSERT INTO `wp_gf_form_view` VALUES("20428", "3", "2015-10-31 19:07:41", "202.46.57.13", "81");
INSERT INTO `wp_gf_form_view` VALUES("20429", "1", "2015-10-31 19:51:53", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("20430", "3", "2015-10-31 20:06:12", "202.46.52.16", "100");
INSERT INTO `wp_gf_form_view` VALUES("20431", "8", "2015-10-31 20:06:12", "202.46.52.16", "13");
INSERT INTO `wp_gf_form_view` VALUES("20432", "3", "2015-10-31 21:04:54", "157.55.39.78", "73");
INSERT INTO `wp_gf_form_view` VALUES("20433", "8", "2015-10-31 21:04:55", "157.55.39.78", "9");
INSERT INTO `wp_gf_form_view` VALUES("20434", "9", "2015-10-31 21:28:09", "202.46.49.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("20435", "3", "2015-10-31 22:09:21", "157.55.39.69", "85");
INSERT INTO `wp_gf_form_view` VALUES("20436", "8", "2015-10-31 22:09:21", "157.55.39.69", "11");
INSERT INTO `wp_gf_form_view` VALUES("20437", "3", "2015-10-31 23:01:49", "202.46.58.205", "67");
INSERT INTO `wp_gf_form_view` VALUES("20438", "8", "2015-10-31 23:01:50", "202.46.58.205", "9");
INSERT INTO `wp_gf_form_view` VALUES("20439", "3", "2015-11-01 00:00:20", "202.46.50.132", "84");
INSERT INTO `wp_gf_form_view` VALUES("20440", "8", "2015-11-01 00:00:20", "202.46.50.132", "10");
INSERT INTO `wp_gf_form_view` VALUES("20441", "1", "2015-11-01 01:04:11", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("20442", "3", "2015-11-01 01:04:11", "178.19.111.187", "71");
INSERT INTO `wp_gf_form_view` VALUES("20443", "8", "2015-11-01 01:04:11", "178.19.111.187", "9");
INSERT INTO `wp_gf_form_view` VALUES("20444", "3", "2015-11-01 02:09:07", "202.46.55.179", "62");
INSERT INTO `wp_gf_form_view` VALUES("20445", "8", "2015-11-01 02:09:08", "202.46.55.179", "8");
INSERT INTO `wp_gf_form_view` VALUES("20446", "3", "2015-11-01 03:07:40", "202.46.53.191", "94");
INSERT INTO `wp_gf_form_view` VALUES("20447", "8", "2015-11-01 03:07:40", "202.46.53.191", "10");
INSERT INTO `wp_gf_form_view` VALUES("20448", "1", "2015-11-01 04:04:53", "178.19.111.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("20449", "3", "2015-11-01 04:04:53", "178.19.111.187", "89");
INSERT INTO `wp_gf_form_view` VALUES("20450", "8", "2015-11-01 04:04:53", "178.19.111.187", "11");
INSERT INTO `wp_gf_form_view` VALUES("20451", "9", "2015-11-01 05:04:44", "202.46.57.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("20452", "3", "2015-11-01 05:04:44", "202.46.57.173", "56");
INSERT INTO `wp_gf_form_view` VALUES("20453", "8", "2015-11-01 05:04:44", "202.46.57.173", "7");
INSERT INTO `wp_gf_form_view` VALUES("20454", "3", "2015-11-01 06:03:16", "202.46.50.92", "79");
INSERT INTO `wp_gf_form_view` VALUES("20455", "8", "2015-11-01 06:03:17", "202.46.50.92", "10");
INSERT INTO `wp_gf_form_view` VALUES("20456", "8", "2015-11-01 07:01:48", "202.46.55.38", "11");
INSERT INTO `wp_gf_form_view` VALUES("20457", "3", "2015-11-01 07:01:48", "202.46.55.38", "73");
INSERT INTO `wp_gf_form_view` VALUES("20458", "3", "2015-11-01 08:00:21", "202.46.51.107", "96");
INSERT INTO `wp_gf_form_view` VALUES("20459", "8", "2015-11-01 08:00:21", "202.46.51.107", "14");
INSERT INTO `wp_gf_form_view` VALUES("20460", "3", "2015-11-01 09:04:02", "110.18.241.9", "77");
INSERT INTO `wp_gf_form_view` VALUES("20461", "8", "2015-11-01 09:04:03", "110.18.241.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("20462", "1", "2015-11-01 09:06:51", "178.19.111.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("20463", "3", "2015-11-01 10:00:08", "94.23.45.37", "77");
INSERT INTO `wp_gf_form_view` VALUES("20464", "8", "2015-11-01 10:00:08", "94.23.45.37", "12");
INSERT INTO `wp_gf_form_view` VALUES("20465", "3", "2015-11-01 11:07:40", "202.46.48.132", "85");
INSERT INTO `wp_gf_form_view` VALUES("20466", "8", "2015-11-01 11:07:40", "202.46.48.132", "12");
INSERT INTO `wp_gf_form_view` VALUES("20467", "3", "2015-11-01 12:06:14", "202.46.49.119", "72");
INSERT INTO `wp_gf_form_view` VALUES("20468", "8", "2015-11-01 12:06:14", "202.46.49.119", "9");
INSERT INTO `wp_gf_form_view` VALUES("20469", "3", "2015-11-01 13:16:27", "202.46.53.149", "45");
INSERT INTO `wp_gf_form_view` VALUES("20470", "8", "2015-11-01 13:16:27", "202.46.53.149", "7");
INSERT INTO `wp_gf_form_view` VALUES("20471", "3", "2015-11-01 14:03:16", "202.46.49.148", "75");
INSERT INTO `wp_gf_form_view` VALUES("20472", "8", "2015-11-01 14:03:16", "202.46.49.148", "11");
INSERT INTO `wp_gf_form_view` VALUES("20473", "3", "2015-11-01 15:01:48", "202.46.50.15", "101");
INSERT INTO `wp_gf_form_view` VALUES("20474", "8", "2015-11-01 15:01:48", "202.46.50.15", "14");
INSERT INTO `wp_gf_form_view` VALUES("20475", "3", "2015-11-01 16:00:20", "202.46.49.114", "39");
INSERT INTO `wp_gf_form_view` VALUES("20476", "8", "2015-11-01 16:00:20", "202.46.49.114", "5");
INSERT INTO `wp_gf_form_view` VALUES("20477", "3", "2015-11-01 17:04:18", "188.165.15.237", "17");
INSERT INTO `wp_gf_form_view` VALUES("20478", "8", "2015-11-01 17:04:18", "188.165.15.237", "2");
INSERT INTO `wp_gf_form_view` VALUES("20479", "3", "2015-11-01 18:06:15", "77.75.76.161", "57");
INSERT INTO `wp_gf_form_view` VALUES("20480", "8", "2015-11-01 18:06:15", "77.75.76.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("20481", "3", "2015-11-01 19:08:44", "212.83.177.193", "17");
INSERT INTO `wp_gf_form_view` VALUES("20482", "8", "2015-11-01 19:08:44", "212.83.177.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("20483", "3", "2015-11-01 20:16:23", "66.249.74.104", "56");
INSERT INTO `wp_gf_form_view` VALUES("20484", "8", "2015-11-01 20:16:24", "66.249.74.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("20485", "3", "2015-11-01 21:52:57", "207.46.13.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("20486", "8", "2015-11-01 21:53:00", "207.46.13.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("20487", "3", "2015-11-01 22:44:06", "68.180.229.161", "50");
INSERT INTO `wp_gf_form_view` VALUES("20488", "8", "2015-11-01 22:44:07", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("20489", "3", "2015-11-01 23:07:44", "66.249.74.102", "25");
INSERT INTO `wp_gf_form_view` VALUES("20490", "8", "2015-11-01 23:07:44", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("20491", "3", "2015-11-02 00:07:48", "178.137.94.166", "314");
INSERT INTO `wp_gf_form_view` VALUES("20492", "8", "2015-11-02 00:07:48", "178.137.94.166", "39");
INSERT INTO `wp_gf_form_view` VALUES("20493", "1", "2015-11-02 00:12:03", "195.145.136.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("20494", "2", "2015-11-02 00:12:11", "195.145.136.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("20495", "3", "2015-11-02 01:06:52", "157.55.39.240", "106");
INSERT INTO `wp_gf_form_view` VALUES("20496", "8", "2015-11-02 01:06:53", "157.55.39.240", "16");
INSERT INTO `wp_gf_form_view` VALUES("20497", "1", "2015-11-02 01:26:02", "192.3.177.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("20498", "2", "2015-11-02 02:32:59", "104.131.25.244", "2");
INSERT INTO `wp_gf_form_view` VALUES("20499", "1", "2015-11-02 02:32:59", "104.131.25.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("20500", "3", "2015-11-02 02:32:59", "104.131.25.244", "171");
INSERT INTO `wp_gf_form_view` VALUES("20501", "8", "2015-11-02 02:33:02", "104.131.25.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("20502", "8", "2015-11-02 02:33:02", "104.131.25.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("20503", "3", "2015-11-02 04:18:26", "66.249.74.106", "49");
INSERT INTO `wp_gf_form_view` VALUES("20504", "8", "2015-11-02 04:18:27", "66.249.74.106", "7");
INSERT INTO `wp_gf_form_view` VALUES("20505", "3", "2015-11-02 05:00:06", "68.180.229.161", "145");
INSERT INTO `wp_gf_form_view` VALUES("20506", "8", "2015-11-02 05:00:06", "68.180.229.161", "19");
INSERT INTO `wp_gf_form_view` VALUES("20507", "9", "2015-11-02 05:09:30", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20508", "1", "2015-11-02 05:23:00", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("20509", "3", "2015-11-02 06:03:16", "202.46.54.12", "73");
INSERT INTO `wp_gf_form_view` VALUES("20510", "8", "2015-11-02 06:03:16", "202.46.54.12", "11");
INSERT INTO `wp_gf_form_view` VALUES("20511", "3", "2015-11-02 07:01:48", "202.46.52.148", "82");
INSERT INTO `wp_gf_form_view` VALUES("20512", "8", "2015-11-02 07:01:48", "202.46.52.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("20513", "3", "2015-11-02 08:09:26", "202.46.52.66", "93");
INSERT INTO `wp_gf_form_view` VALUES("20514", "8", "2015-11-02 08:09:26", "202.46.52.66", "13");
INSERT INTO `wp_gf_form_view` VALUES("20515", "3", "2015-11-02 09:06:17", "46.119.123.33", "118");
INSERT INTO `wp_gf_form_view` VALUES("20516", "8", "2015-11-02 09:06:17", "46.119.123.33", "15");
INSERT INTO `wp_gf_form_view` VALUES("20517", "8", "2015-11-02 10:09:42", "202.46.58.191", "10");
INSERT INTO `wp_gf_form_view` VALUES("20518", "3", "2015-11-02 10:09:42", "202.46.58.191", "61");
INSERT INTO `wp_gf_form_view` VALUES("20519", "3", "2015-11-02 11:06:29", "68.180.229.161", "96");
INSERT INTO `wp_gf_form_view` VALUES("20520", "8", "2015-11-02 11:06:29", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("20521", "3", "2015-11-02 12:06:46", "202.46.57.182", "70");
INSERT INTO `wp_gf_form_view` VALUES("20522", "8", "2015-11-02 12:06:46", "202.46.57.182", "9");
INSERT INTO `wp_gf_form_view` VALUES("20523", "3", "2015-11-02 13:05:18", "202.46.54.32", "85");
INSERT INTO `wp_gf_form_view` VALUES("20524", "8", "2015-11-02 13:05:18", "202.46.54.32", "13");
INSERT INTO `wp_gf_form_view` VALUES("20525", "3", "2015-11-02 14:03:51", "202.46.48.90", "92");
INSERT INTO `wp_gf_form_view` VALUES("20526", "8", "2015-11-02 14:03:51", "202.46.48.90", "12");
INSERT INTO `wp_gf_form_view` VALUES("20527", "3", "2015-11-02 15:02:22", "202.46.56.16", "59");
INSERT INTO `wp_gf_form_view` VALUES("20528", "8", "2015-11-02 15:02:22", "202.46.56.16", "8");
INSERT INTO `wp_gf_form_view` VALUES("20529", "3", "2015-11-02 16:00:59", "202.46.52.104", "108");
INSERT INTO `wp_gf_form_view` VALUES("20530", "8", "2015-11-02 16:00:59", "202.46.52.104", "15");
INSERT INTO `wp_gf_form_view` VALUES("20531", "3", "2015-11-02 17:11:13", "202.46.50.17", "122");
INSERT INTO `wp_gf_form_view` VALUES("20532", "8", "2015-11-02 17:11:13", "202.46.50.17", "17");
INSERT INTO `wp_gf_form_view` VALUES("20533", "1", "2015-11-02 17:41:52", "23.94.16.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("20534", "3", "2015-11-02 18:08:54", "192.171.45.200", "177");
INSERT INTO `wp_gf_form_view` VALUES("20535", "8", "2015-11-02 18:08:54", "192.171.45.200", "23");
INSERT INTO `wp_gf_form_view` VALUES("20536", "7", "2015-11-02 18:15:51", "157.55.39.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("20537", "1", "2015-11-02 18:36:18", "192.171.45.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("20538", "3", "2015-11-02 19:08:14", "202.46.54.191", "96");
INSERT INTO `wp_gf_form_view` VALUES("20539", "8", "2015-11-02 19:08:14", "202.46.54.191", "13");
INSERT INTO `wp_gf_form_view` VALUES("20540", "1", "2015-11-02 19:30:10", "138.128.44.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("20541", "3", "2015-11-02 20:06:46", "202.46.57.151", "108");
INSERT INTO `wp_gf_form_view` VALUES("20542", "8", "2015-11-02 20:06:46", "202.46.57.151", "15");
INSERT INTO `wp_gf_form_view` VALUES("20543", "1", "2015-11-02 20:46:05", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("20544", "3", "2015-11-02 21:05:18", "202.46.53.43", "135");
INSERT INTO `wp_gf_form_view` VALUES("20545", "8", "2015-11-02 21:05:18", "202.46.53.43", "18");
INSERT INTO `wp_gf_form_view` VALUES("20546", "3", "2015-11-02 22:03:10", "192.171.45.200", "127");
INSERT INTO `wp_gf_form_view` VALUES("20547", "8", "2015-11-02 22:03:11", "192.171.45.200", "16");
INSERT INTO `wp_gf_form_view` VALUES("20548", "1", "2015-11-02 22:50:07", "45.62.47.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("20549", "2", "2015-11-02 23:00:56", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20550", "3", "2015-11-02 23:00:56", "192.171.45.200", "111");
INSERT INTO `wp_gf_form_view` VALUES("20551", "8", "2015-11-02 23:00:56", "192.171.45.200", "13");
INSERT INTO `wp_gf_form_view` VALUES("20552", "3", "2015-11-03 00:00:54", "202.46.50.87", "106");
INSERT INTO `wp_gf_form_view` VALUES("20553", "8", "2015-11-03 00:00:54", "202.46.50.87", "14");
INSERT INTO `wp_gf_form_view` VALUES("20554", "3", "2015-11-03 01:11:10", "202.46.52.206", "139");
INSERT INTO `wp_gf_form_view` VALUES("20555", "8", "2015-11-03 01:11:10", "202.46.52.206", "20");
INSERT INTO `wp_gf_form_view` VALUES("20556", "2", "2015-11-03 01:24:31", "157.55.39.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("20557", "3", "2015-11-03 02:06:44", "24.69.36.80", "88");
INSERT INTO `wp_gf_form_view` VALUES("20558", "8", "2015-11-03 02:06:44", "24.69.36.80", "11");
INSERT INTO `wp_gf_form_view` VALUES("20559", "3", "2015-11-03 03:08:14", "202.46.57.205", "167");
INSERT INTO `wp_gf_form_view` VALUES("20560", "8", "2015-11-03 03:08:14", "202.46.57.205", "22");
INSERT INTO `wp_gf_form_view` VALUES("20561", "3", "2015-11-03 04:06:46", "202.46.52.118", "95");
INSERT INTO `wp_gf_form_view` VALUES("20562", "8", "2015-11-03 04:06:46", "202.46.52.118", "12");
INSERT INTO `wp_gf_form_view` VALUES("20563", "1", "2015-11-03 04:28:47", "192.241.106.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("20564", "3", "2015-11-03 05:05:18", "202.46.48.141", "70");
INSERT INTO `wp_gf_form_view` VALUES("20565", "8", "2015-11-03 05:05:19", "202.46.48.141", "10");
INSERT INTO `wp_gf_form_view` VALUES("20566", "1", "2015-11-03 05:24:26", "192.186.152.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("20567", "3", "2015-11-03 06:03:50", "202.46.56.15", "196");
INSERT INTO `wp_gf_form_view` VALUES("20568", "8", "2015-11-03 06:03:50", "202.46.56.15", "25");
INSERT INTO `wp_gf_form_view` VALUES("20569", "1", "2015-11-03 06:59:30", "104.140.83.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("20570", "3", "2015-11-03 07:00:00", "104.218.192.25", "117");
INSERT INTO `wp_gf_form_view` VALUES("20571", "8", "2015-11-03 07:00:00", "104.218.192.25", "17");
INSERT INTO `wp_gf_form_view` VALUES("20572", "5", "2015-11-03 07:15:53", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20573", "3", "2015-11-03 08:00:54", "202.46.52.16", "144");
INSERT INTO `wp_gf_form_view` VALUES("20574", "8", "2015-11-03 08:00:54", "202.46.52.16", "18");
INSERT INTO `wp_gf_form_view` VALUES("20575", "3", "2015-11-03 09:03:05", "192.171.45.200", "104");
INSERT INTO `wp_gf_form_view` VALUES("20576", "8", "2015-11-03 09:03:05", "192.171.45.200", "12");
INSERT INTO `wp_gf_form_view` VALUES("20577", "1", "2015-11-03 09:06:35", "27.159.237.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("20578", "3", "2015-11-03 10:08:05", "192.171.45.200", "89");
INSERT INTO `wp_gf_form_view` VALUES("20579", "8", "2015-11-03 10:08:06", "192.171.45.200", "14");
INSERT INTO `wp_gf_form_view` VALUES("20580", "3", "2015-11-03 11:08:13", "202.46.52.68", "154");
INSERT INTO `wp_gf_form_view` VALUES("20581", "8", "2015-11-03 11:08:13", "202.46.52.68", "21");
INSERT INTO `wp_gf_form_view` VALUES("20582", "1", "2015-11-03 11:47:56", "192.186.147.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20583", "3", "2015-11-03 12:05:04", "68.64.167.146", "134");
INSERT INTO `wp_gf_form_view` VALUES("20584", "8", "2015-11-03 12:05:05", "68.64.167.146", "17");
INSERT INTO `wp_gf_form_view` VALUES("20585", "1", "2015-11-03 12:27:04", "193.201.224.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("20586", "3", "2015-11-03 13:05:18", "202.46.58.76", "83");
INSERT INTO `wp_gf_form_view` VALUES("20587", "8", "2015-11-03 13:05:18", "202.46.58.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("20588", "3", "2015-11-03 14:03:50", "202.46.54.101", "85");
INSERT INTO `wp_gf_form_view` VALUES("20589", "8", "2015-11-03 14:03:50", "202.46.54.101", "12");
INSERT INTO `wp_gf_form_view` VALUES("20590", "3", "2015-11-03 15:02:22", "202.46.52.17", "87");
INSERT INTO `wp_gf_form_view` VALUES("20591", "8", "2015-11-03 15:02:23", "202.46.52.17", "10");
INSERT INTO `wp_gf_form_view` VALUES("20592", "8", "2015-11-03 16:00:57", "202.46.54.117", "14");
INSERT INTO `wp_gf_form_view` VALUES("20593", "3", "2015-11-03 16:00:57", "202.46.54.117", "103");
INSERT INTO `wp_gf_form_view` VALUES("20594", "3", "2015-11-03 17:10:42", "209.52.88.56", "104");
INSERT INTO `wp_gf_form_view` VALUES("20595", "8", "2015-11-03 17:10:42", "209.52.88.56", "15");
INSERT INTO `wp_gf_form_view` VALUES("20596", "3", "2015-11-03 18:09:41", "202.46.53.48", "110");
INSERT INTO `wp_gf_form_view` VALUES("20597", "8", "2015-11-03 18:09:41", "202.46.53.48", "14");
INSERT INTO `wp_gf_form_view` VALUES("20598", "3", "2015-11-03 19:08:13", "202.46.58.75", "96");
INSERT INTO `wp_gf_form_view` VALUES("20599", "8", "2015-11-03 19:08:13", "202.46.58.75", "13");
INSERT INTO `wp_gf_form_view` VALUES("20600", "3", "2015-11-03 20:06:45", "202.46.56.206", "123");
INSERT INTO `wp_gf_form_view` VALUES("20601", "8", "2015-11-03 20:06:45", "202.46.56.206", "17");
INSERT INTO `wp_gf_form_view` VALUES("20602", "6", "2015-11-03 20:54:35", "5.9.112.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("20603", "3", "2015-11-03 21:05:17", "202.46.51.119", "256");
INSERT INTO `wp_gf_form_view` VALUES("20604", "8", "2015-11-03 21:05:17", "202.46.51.119", "32");
INSERT INTO `wp_gf_form_view` VALUES("20605", "1", "2015-11-03 21:42:04", "8.28.16.254", "4");
INSERT INTO `wp_gf_form_view` VALUES("20606", "3", "2015-11-03 22:03:49", "202.46.58.113", "210");
INSERT INTO `wp_gf_form_view` VALUES("20607", "8", "2015-11-03 22:03:49", "202.46.58.113", "28");
INSERT INTO `wp_gf_form_view` VALUES("20608", "1", "2015-11-03 22:17:38", "184.69.27.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("20609", "3", "2015-11-03 23:02:23", "202.46.48.81", "102");
INSERT INTO `wp_gf_form_view` VALUES("20610", "8", "2015-11-03 23:02:23", "202.46.48.81", "14");
INSERT INTO `wp_gf_form_view` VALUES("20611", "3", "2015-11-04 00:00:54", "202.46.48.207", "154");
INSERT INTO `wp_gf_form_view` VALUES("20612", "8", "2015-11-04 00:00:54", "202.46.48.207", "20");
INSERT INTO `wp_gf_form_view` VALUES("20613", "9", "2015-11-04 01:08:12", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20614", "3", "2015-11-04 01:08:12", "192.171.45.200", "80");
INSERT INTO `wp_gf_form_view` VALUES("20615", "8", "2015-11-04 01:08:12", "192.171.45.200", "12");
INSERT INTO `wp_gf_form_view` VALUES("20616", "1", "2015-11-04 01:19:09", "204.44.74.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("20617", "3", "2015-11-04 02:09:38", "66.249.74.106", "109");
INSERT INTO `wp_gf_form_view` VALUES("20618", "8", "2015-11-04 02:09:38", "66.249.74.106", "14");
INSERT INTO `wp_gf_form_view` VALUES("20619", "3", "2015-11-04 03:08:13", "202.46.55.183", "168");
INSERT INTO `wp_gf_form_view` VALUES("20620", "8", "2015-11-04 03:08:13", "202.46.55.183", "21");
INSERT INTO `wp_gf_form_view` VALUES("20621", "3", "2015-11-04 04:06:45", "202.46.57.39", "89");
INSERT INTO `wp_gf_form_view` VALUES("20622", "8", "2015-11-04 04:06:45", "202.46.57.39", "12");
INSERT INTO `wp_gf_form_view` VALUES("20623", "3", "2015-11-04 05:01:09", "68.180.229.161", "88");
INSERT INTO `wp_gf_form_view` VALUES("20624", "8", "2015-11-04 05:01:09", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("20625", "1", "2015-11-04 05:04:40", "138.128.51.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("20626", "2", "2015-11-04 06:00:05", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("20627", "3", "2015-11-04 06:00:05", "204.12.239.250", "175");
INSERT INTO `wp_gf_form_view` VALUES("20628", "8", "2015-11-04 06:00:05", "204.12.239.250", "24");
INSERT INTO `wp_gf_form_view` VALUES("20629", "3", "2015-11-04 07:02:23", "202.46.58.157", "105");
INSERT INTO `wp_gf_form_view` VALUES("20630", "8", "2015-11-04 07:02:23", "202.46.58.157", "13");
INSERT INTO `wp_gf_form_view` VALUES("20631", "3", "2015-11-04 08:00:55", "202.46.52.66", "100");
INSERT INTO `wp_gf_form_view` VALUES("20632", "8", "2015-11-04 08:00:55", "202.46.52.66", "15");
INSERT INTO `wp_gf_form_view` VALUES("20633", "1", "2015-11-04 08:42:20", "155.94.237.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("20634", "3", "2015-11-04 09:01:32", "204.12.239.250", "125");
INSERT INTO `wp_gf_form_view` VALUES("20635", "8", "2015-11-04 09:01:32", "204.12.239.250", "17");
INSERT INTO `wp_gf_form_view` VALUES("20636", "5", "2015-11-04 09:05:08", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20637", "9", "2015-11-04 09:47:02", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20638", "3", "2015-11-04 10:05:33", "207.46.13.27", "89");
INSERT INTO `wp_gf_form_view` VALUES("20639", "8", "2015-11-04 10:05:34", "207.46.13.27", "11");
INSERT INTO `wp_gf_form_view` VALUES("20640", "3", "2015-11-04 11:02:36", "85.85.253.184", "378");
INSERT INTO `wp_gf_form_view` VALUES("20641", "8", "2015-11-04 11:02:36", "85.85.253.184", "47");
INSERT INTO `wp_gf_form_view` VALUES("20642", "1", "2015-11-04 11:03:31", "85.85.253.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("20643", "2", "2015-11-04 11:03:39", "85.85.253.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("20644", "5", "2015-11-04 11:04:20", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20645", "1", "2015-11-04 12:02:57", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("20646", "3", "2015-11-04 12:02:57", "204.12.239.250", "82");
INSERT INTO `wp_gf_form_view` VALUES("20647", "8", "2015-11-04 12:02:57", "204.12.239.250", "11");
INSERT INTO `wp_gf_form_view` VALUES("20648", "3", "2015-11-04 13:05:17", "202.46.51.117", "85");
INSERT INTO `wp_gf_form_view` VALUES("20649", "8", "2015-11-04 13:05:17", "202.46.51.117", "11");
INSERT INTO `wp_gf_form_view` VALUES("20650", "3", "2015-11-04 14:03:49", "202.46.51.112", "157");
INSERT INTO `wp_gf_form_view` VALUES("20651", "8", "2015-11-04 14:03:49", "202.46.51.112", "20");
INSERT INTO `wp_gf_form_view` VALUES("20652", "1", "2015-11-04 14:25:29", "204.44.84.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("20653", "3", "2015-11-04 15:02:21", "202.46.51.82", "288");
INSERT INTO `wp_gf_form_view` VALUES("20654", "8", "2015-11-04 15:02:22", "202.46.51.82", "37");
INSERT INTO `wp_gf_form_view` VALUES("20655", "3", "2015-11-04 16:00:00", "46.119.123.33", "42");
INSERT INTO `wp_gf_form_view` VALUES("20656", "8", "2015-11-04 16:00:00", "46.119.123.33", "5");
INSERT INTO `wp_gf_form_view` VALUES("20657", "3", "2015-11-04 17:08:04", "157.55.39.138", "74");
INSERT INTO `wp_gf_form_view` VALUES("20658", "8", "2015-11-04 17:08:04", "157.55.39.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("20659", "3", "2015-11-04 18:01:29", "207.46.13.186", "16");
INSERT INTO `wp_gf_form_view` VALUES("20660", "8", "2015-11-04 18:01:29", "207.46.13.186", "2");
INSERT INTO `wp_gf_form_view` VALUES("20661", "3", "2015-11-04 19:18:42", "100.43.81.152", "36");
INSERT INTO `wp_gf_form_view` VALUES("20662", "8", "2015-11-04 19:18:42", "100.43.81.152", "4");
INSERT INTO `wp_gf_form_view` VALUES("20663", "3", "2015-11-04 20:01:31", "192.40.236.6", "128");
INSERT INTO `wp_gf_form_view` VALUES("20664", "8", "2015-11-04 20:01:31", "192.40.236.6", "16");
INSERT INTO `wp_gf_form_view` VALUES("20665", "1", "2015-11-04 20:31:52", "8.28.16.254", "4");
INSERT INTO `wp_gf_form_view` VALUES("20666", "3", "2015-11-04 22:07:20", "24.69.72.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("20667", "3", "2015-11-04 23:15:10", "192.171.45.200", "49");
INSERT INTO `wp_gf_form_view` VALUES("20668", "3", "2015-11-05 00:00:26", "184.71.18.250", "110");
INSERT INTO `wp_gf_form_view` VALUES("20669", "1", "2015-11-05 00:40:27", "107.173.19.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("20670", "3", "2015-11-05 01:02:26", "154.5.211.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("20671", "3", "2015-11-05 02:04:45", "184.66.143.127", "13");
INSERT INTO `wp_gf_form_view` VALUES("20672", "9", "2015-11-05 02:57:42", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20673", "1", "2015-11-05 03:01:38", "208.115.124.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("20674", "3", "2015-11-05 03:01:38", "208.115.124.146", "20");
INSERT INTO `wp_gf_form_view` VALUES("20675", "2", "2015-11-05 03:31:42", "204.12.239.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("20676", "3", "2015-11-05 04:07:38", "66.249.74.102", "16");
INSERT INTO `wp_gf_form_view` VALUES("20677", "3", "2015-11-05 05:05:17", "202.46.51.164", "30");
INSERT INTO `wp_gf_form_view` VALUES("20678", "3", "2015-11-05 06:03:49", "202.46.57.73", "42");
INSERT INTO `wp_gf_form_view` VALUES("20679", "3", "2015-11-05 07:02:30", "202.46.48.146", "59");
INSERT INTO `wp_gf_form_view` VALUES("20680", "3", "2015-11-05 08:00:53", "202.46.55.124", "38");
INSERT INTO `wp_gf_form_view` VALUES("20681", "3", "2015-11-05 09:11:09", "202.46.53.157", "47");
INSERT INTO `wp_gf_form_view` VALUES("20682", "3", "2015-11-05 10:09:40", "202.46.54.71", "41");
INSERT INTO `wp_gf_form_view` VALUES("20683", "3", "2015-11-05 11:08:12", "202.46.50.122", "113");
INSERT INTO `wp_gf_form_view` VALUES("20684", "3", "2015-11-05 12:10:14", "202.46.57.202", "44");
INSERT INTO `wp_gf_form_view` VALUES("20685", "9", "2015-11-05 12:18:09", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20686", "3", "2015-11-05 13:02:54", "157.55.39.141", "36");
INSERT INTO `wp_gf_form_view` VALUES("20687", "3", "2015-11-05 14:03:14", "207.46.13.167", "66");
INSERT INTO `wp_gf_form_view` VALUES("20688", "9", "2015-11-05 14:48:48", "192.171.45.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("20689", "3", "2015-11-05 15:02:21", "202.46.57.160", "33");
INSERT INTO `wp_gf_form_view` VALUES("20690", "3", "2015-11-05 16:00:53", "202.46.54.137", "62");
INSERT INTO `wp_gf_form_view` VALUES("20691", "3", "2015-11-05 17:07:48", "68.180.229.161", "47");
INSERT INTO `wp_gf_form_view` VALUES("20692", "3", "2015-11-05 18:03:36", "157.55.39.34", "76");
INSERT INTO `wp_gf_form_view` VALUES("20693", "2", "2015-11-05 18:39:09", "136.243.10.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("20694", "1", "2015-11-05 18:39:11", "136.243.10.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("20695", "3", "2015-11-05 19:08:12", "202.46.50.198", "62");
INSERT INTO `wp_gf_form_view` VALUES("20696", "1", "2015-11-05 19:59:05", "155.94.134.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("20697", "3", "2015-11-05 20:06:44", "202.46.52.204", "47");
INSERT INTO `wp_gf_form_view` VALUES("20698", "3", "2015-11-05 21:01:08", "68.180.229.161", "34");
INSERT INTO `wp_gf_form_view` VALUES("20699", "3", "2015-11-05 22:03:51", "202.46.49.134", "49");
INSERT INTO `wp_gf_form_view` VALUES("20700", "3", "2015-11-05 23:02:21", "202.46.56.18", "49");
INSERT INTO `wp_gf_form_view` VALUES("20701", "1", "2015-11-05 23:50:56", "192.99.166.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("20702", "3", "2015-11-06 00:00:53", "202.46.52.150", "49");
INSERT INTO `wp_gf_form_view` VALUES("20703", "3", "2015-11-06 01:07:46", "24.68.140.117", "44");
INSERT INTO `wp_gf_form_view` VALUES("20704", "3", "2015-11-06 02:09:39", "202.46.49.66", "33");
INSERT INTO `wp_gf_form_view` VALUES("20705", "3", "2015-11-06 03:08:14", "202.46.56.190", "38");
INSERT INTO `wp_gf_form_view` VALUES("20706", "3", "2015-11-06 04:06:44", "202.46.53.118", "44");
INSERT INTO `wp_gf_form_view` VALUES("20707", "3", "2015-11-06 05:04:39", "66.249.74.102", "39");
INSERT INTO `wp_gf_form_view` VALUES("20708", "3", "2015-11-06 06:03:48", "202.46.53.190", "42");
INSERT INTO `wp_gf_form_view` VALUES("20709", "3", "2015-11-06 07:02:21", "202.46.51.139", "32");
INSERT INTO `wp_gf_form_view` VALUES("20710", "3", "2015-11-06 08:00:54", "202.46.55.124", "44");
INSERT INTO `wp_gf_form_view` VALUES("20711", "1", "2015-11-06 08:07:52", "191.101.121.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("20712", "3", "2015-11-06 09:11:14", "202.46.58.151", "34");
INSERT INTO `wp_gf_form_view` VALUES("20713", "3", "2015-11-06 10:09:43", "202.46.53.119", "50");
INSERT INTO `wp_gf_form_view` VALUES("20714", "3", "2015-11-06 11:08:12", "202.46.54.16", "58");
INSERT INTO `wp_gf_form_view` VALUES("20715", "2", "2015-11-06 11:14:16", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("20716", "3", "2015-11-06 12:06:44", "202.46.53.59", "34");
INSERT INTO `wp_gf_form_view` VALUES("20717", "3", "2015-11-06 13:05:16", "202.46.51.139", "35");
INSERT INTO `wp_gf_form_view` VALUES("20718", "3", "2015-11-06 14:03:48", "202.46.48.123", "34");
INSERT INTO `wp_gf_form_view` VALUES("20719", "3", "2015-11-06 15:02:20", "202.46.53.176", "32");
INSERT INTO `wp_gf_form_view` VALUES("20720", "3", "2015-11-06 16:00:53", "202.46.58.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("20721", "3", "2015-11-06 17:07:26", "207.216.9.31", "45");
INSERT INTO `wp_gf_form_view` VALUES("20722", "3", "2015-11-06 18:46:48", "188.165.15.78", "8");
INSERT INTO `wp_gf_form_view` VALUES("20723", "3", "2015-11-06 19:00:14", "207.46.13.2", "30");
INSERT INTO `wp_gf_form_view` VALUES("20724", "1", "2015-11-06 19:15:55", "188.208.218.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("20725", "3", "2015-11-06 20:45:13", "66.249.74.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("20726", "3", "2015-11-06 21:04:50", "184.71.26.154", "40");
INSERT INTO `wp_gf_form_view` VALUES("20727", "1", "2015-11-06 21:05:07", "184.71.26.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("20728", "2", "2015-11-06 21:05:15", "184.71.26.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("20729", "3", "2015-11-06 22:04:40", "66.249.74.104", "53");
INSERT INTO `wp_gf_form_view` VALUES("20730", "1", "2015-11-06 22:41:33", "24.108.76.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("20731", "3", "2015-11-06 23:02:08", "207.194.133.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("20732", "3", "2015-11-07 00:11:29", "216.232.148.65", "16");
INSERT INTO `wp_gf_form_view` VALUES("20733", "3", "2015-11-07 01:43:10", "96.50.29.185", "4");
INSERT INTO `wp_gf_form_view` VALUES("20734", "3", "2015-11-07 02:18:23", "207.46.13.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("20735", "3", "2015-11-07 03:20:03", "207.46.13.11", "26");
INSERT INTO `wp_gf_form_view` VALUES("20736", "3", "2015-11-07 04:04:42", "68.180.229.161", "70");
INSERT INTO `wp_gf_form_view` VALUES("20737", "9", "2015-11-07 04:45:45", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20738", "3", "2015-11-07 05:05:16", "202.46.55.149", "29");
INSERT INTO `wp_gf_form_view` VALUES("20739", "3", "2015-11-07 06:03:48", "202.46.52.160", "27");
INSERT INTO `wp_gf_form_view` VALUES("20740", "3", "2015-11-07 07:02:24", "202.46.49.108", "38");
INSERT INTO `wp_gf_form_view` VALUES("20741", "3", "2015-11-07 08:00:54", "202.46.53.192", "33");
INSERT INTO `wp_gf_form_view` VALUES("20742", "7", "2015-11-07 08:47:42", "202.46.58.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("20743", "3", "2015-11-07 09:00:02", "207.46.13.62", "69");
INSERT INTO `wp_gf_form_view` VALUES("20744", "1", "2015-11-07 09:41:09", "67.87.164.32", "2");
INSERT INTO `wp_gf_form_view` VALUES("20745", "3", "2015-11-07 10:09:45", "202.46.56.39", "167");
INSERT INTO `wp_gf_form_view` VALUES("20746", "1", "2015-11-07 10:49:52", "70.35.198.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("20747", "2", "2015-11-07 10:49:57", "70.35.198.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("20748", "3", "2015-11-07 11:08:11", "202.46.50.182", "31");
INSERT INTO `wp_gf_form_view` VALUES("20749", "3", "2015-11-07 12:06:44", "202.46.50.137", "49");
INSERT INTO `wp_gf_form_view` VALUES("20750", "3", "2015-11-07 13:05:15", "202.46.51.196", "39");
INSERT INTO `wp_gf_form_view` VALUES("20751", "3", "2015-11-07 14:03:48", "202.46.48.82", "58");
INSERT INTO `wp_gf_form_view` VALUES("20752", "3", "2015-11-07 15:02:20", "202.46.53.49", "44");
INSERT INTO `wp_gf_form_view` VALUES("20753", "1", "2015-11-07 15:37:07", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20754", "3", "2015-11-07 16:00:52", "202.46.54.183", "38");
INSERT INTO `wp_gf_form_view` VALUES("20755", "3", "2015-11-07 17:11:06", "202.46.55.125", "69");
INSERT INTO `wp_gf_form_view` VALUES("20756", "3", "2015-11-07 18:01:09", "91.200.12.25", "44");
INSERT INTO `wp_gf_form_view` VALUES("20757", "3", "2015-11-07 19:08:11", "202.46.58.55", "36");
INSERT INTO `wp_gf_form_view` VALUES("20758", "3", "2015-11-07 20:06:43", "202.46.50.180", "67");
INSERT INTO `wp_gf_form_view` VALUES("20759", "6", "2015-11-07 20:54:16", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20760", "3", "2015-11-07 21:05:16", "202.46.54.137", "63");
INSERT INTO `wp_gf_form_view` VALUES("20761", "3", "2015-11-07 22:03:47", "202.46.56.189", "57");
INSERT INTO `wp_gf_form_view` VALUES("20762", "1", "2015-11-07 23:00:00", "5.153.237.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("20763", "3", "2015-11-07 23:00:00", "5.153.237.180", "53");
INSERT INTO `wp_gf_form_view` VALUES("20764", "3", "2015-11-08 00:00:53", "202.46.55.134", "54");
INSERT INTO `wp_gf_form_view` VALUES("20765", "3", "2015-11-08 01:11:07", "202.46.48.142", "34");
INSERT INTO `wp_gf_form_view` VALUES("20766", "3", "2015-11-08 02:09:40", "202.46.58.76", "45");
INSERT INTO `wp_gf_form_view` VALUES("20767", "3", "2015-11-08 03:01:30", "68.180.229.161", "36");
INSERT INTO `wp_gf_form_view` VALUES("20768", "1", "2015-11-08 04:03:58", "178.175.184.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("20769", "3", "2015-11-08 04:03:58", "178.175.184.224", "73");
INSERT INTO `wp_gf_form_view` VALUES("20770", "3", "2015-11-08 05:05:15", "202.46.55.38", "33");
INSERT INTO `wp_gf_form_view` VALUES("20771", "3", "2015-11-08 06:03:47", "202.46.58.16", "42");
INSERT INTO `wp_gf_form_view` VALUES("20772", "3", "2015-11-08 07:02:20", "202.46.57.204", "49");
INSERT INTO `wp_gf_form_view` VALUES("20773", "3", "2015-11-08 08:00:53", "202.46.58.164", "48");
INSERT INTO `wp_gf_form_view` VALUES("20774", "3", "2015-11-08 09:11:07", "202.46.52.102", "32");
INSERT INTO `wp_gf_form_view` VALUES("20775", "3", "2015-11-08 10:09:38", "202.46.53.204", "38");
INSERT INTO `wp_gf_form_view` VALUES("20776", "3", "2015-11-08 11:06:34", "40.77.167.80", "78");
INSERT INTO `wp_gf_form_view` VALUES("20777", "1", "2015-11-08 11:15:54", "40.77.167.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("20778", "2", "2015-11-08 11:16:09", "40.77.167.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("20779", "3", "2015-11-08 12:06:27", "157.55.39.64", "53");
INSERT INTO `wp_gf_form_view` VALUES("20780", "3", "2015-11-08 13:05:15", "202.46.55.152", "44");
INSERT INTO `wp_gf_form_view` VALUES("20781", "3", "2015-11-08 14:03:47", "202.46.48.87", "30");
INSERT INTO `wp_gf_form_view` VALUES("20782", "3", "2015-11-08 15:02:19", "202.46.55.151", "30");
INSERT INTO `wp_gf_form_view` VALUES("20783", "3", "2015-11-08 16:00:51", "202.46.48.120", "70");
INSERT INTO `wp_gf_form_view` VALUES("20784", "2", "2015-11-08 16:52:24", "157.56.3.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("20785", "1", "2015-11-08 16:52:55", "157.56.3.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("20786", "9", "2015-11-08 17:08:36", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("20787", "3", "2015-11-08 17:08:36", "217.69.133.231", "8");
INSERT INTO `wp_gf_form_view` VALUES("20788", "3", "2015-11-08 18:29:09", "216.232.145.214", "54");
INSERT INTO `wp_gf_form_view` VALUES("20789", "3", "2015-11-08 19:32:38", "68.180.229.161", "54");
INSERT INTO `wp_gf_form_view` VALUES("20790", "3", "2015-11-08 21:51:24", "91.200.12.39", "10");
INSERT INTO `wp_gf_form_view` VALUES("20791", "7", "2015-11-08 22:36:21", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20792", "3", "2015-11-08 22:36:22", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("20793", "3", "2015-11-08 23:11:13", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("20794", "3", "2015-11-09 00:58:33", "207.46.13.64", "5");
INSERT INTO `wp_gf_form_view` VALUES("20795", "3", "2015-11-09 01:03:53", "217.69.133.232", "5");
INSERT INTO `wp_gf_form_view` VALUES("20796", "3", "2015-11-09 02:09:32", "68.180.229.161", "36");
INSERT INTO `wp_gf_form_view` VALUES("20797", "9", "2015-11-09 02:39:09", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("20798", "3", "2015-11-09 04:12:33", "207.46.13.64", "16");
INSERT INTO `wp_gf_form_view` VALUES("20799", "3", "2015-11-09 05:28:33", "157.55.39.82", "42");
INSERT INTO `wp_gf_form_view` VALUES("20800", "2", "2015-11-09 05:31:20", "188.165.15.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("20801", "3", "2015-11-09 06:57:51", "207.46.13.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("20802", "3", "2015-11-09 07:02:07", "182.68.55.169", "137");
INSERT INTO `wp_gf_form_view` VALUES("20803", "1", "2015-11-09 07:08:58", "24.132.224.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("20804", "2", "2015-11-09 07:09:03", "24.132.224.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("20805", "3", "2015-11-09 08:13:22", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("20806", "1", "2015-11-09 09:00:52", "167.160.115.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("20807", "3", "2015-11-09 09:00:53", "167.160.115.56", "69");
INSERT INTO `wp_gf_form_view` VALUES("20808", "3", "2015-11-09 10:37:30", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("20809", "3", "2015-11-09 11:00:22", "207.46.13.64", "20");
INSERT INTO `wp_gf_form_view` VALUES("20810", "1", "2015-11-09 11:24:02", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("20811", "3", "2015-11-09 12:24:42", "207.46.13.160", "34");
INSERT INTO `wp_gf_form_view` VALUES("20812", "1", "2015-11-09 12:24:53", "89.32.123.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("20813", "3", "2015-11-09 13:11:08", "216.244.81.34", "8");
INSERT INTO `wp_gf_form_view` VALUES("20814", "3", "2015-11-09 14:31:29", "178.137.82.133", "16");
INSERT INTO `wp_gf_form_view` VALUES("20815", "3", "2015-11-09 15:25:30", "66.249.74.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("20816", "3", "2015-11-09 16:13:34", "77.75.76.160", "35");
INSERT INTO `wp_gf_form_view` VALUES("20817", "3", "2015-11-09 17:11:07", "202.46.50.165", "19");
INSERT INTO `wp_gf_form_view` VALUES("20818", "3", "2015-11-09 18:00:51", "68.180.229.161", "44");
INSERT INTO `wp_gf_form_view` VALUES("20819", "3", "2015-11-09 19:08:11", "202.46.58.202", "28");
INSERT INTO `wp_gf_form_view` VALUES("20820", "3", "2015-11-09 20:06:42", "202.46.55.152", "95");
INSERT INTO `wp_gf_form_view` VALUES("20821", "2", "2015-11-09 20:49:00", "136.243.10.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("20822", "1", "2015-11-09 20:49:02", "136.243.10.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("20823", "3", "2015-11-09 21:05:15", "202.46.52.11", "52");
INSERT INTO `wp_gf_form_view` VALUES("20824", "3", "2015-11-09 22:03:47", "202.46.52.151", "32");
INSERT INTO `wp_gf_form_view` VALUES("20825", "3", "2015-11-09 23:02:19", "202.46.48.146", "119");
INSERT INTO `wp_gf_form_view` VALUES("20826", "3", "2015-11-10 00:00:54", "202.46.52.146", "52");
INSERT INTO `wp_gf_form_view` VALUES("20827", "3", "2015-11-10 01:01:16", "96.54.214.83", "34");
INSERT INTO `wp_gf_form_view` VALUES("20828", "3", "2015-11-10 02:09:38", "202.46.52.63", "71");
INSERT INTO `wp_gf_form_view` VALUES("20829", "9", "2015-11-10 02:58:36", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20830", "3", "2015-11-10 03:06:36", "77.75.79.11", "63");
INSERT INTO `wp_gf_form_view` VALUES("20831", "3", "2015-11-10 04:06:42", "202.46.51.12", "52");
INSERT INTO `wp_gf_form_view` VALUES("20832", "6", "2015-11-10 04:39:41", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20833", "3", "2015-11-10 05:05:14", "202.46.52.41", "63");
INSERT INTO `wp_gf_form_view` VALUES("20834", "9", "2015-11-10 05:24:25", "207.46.13.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("20835", "3", "2015-11-10 06:01:09", "66.249.67.227", "34");
INSERT INTO `wp_gf_form_view` VALUES("20836", "2", "2015-11-10 06:36:35", "66.249.67.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("20837", "7", "2015-11-10 06:46:20", "112.196.169.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("20838", "3", "2015-11-10 07:00:44", "112.196.169.152", "48");
INSERT INTO `wp_gf_form_view` VALUES("20839", "3", "2015-11-10 08:08:08", "202.46.50.90", "60");
INSERT INTO `wp_gf_form_view` VALUES("20840", "3", "2015-11-10 09:06:39", "202.46.55.173", "49");
INSERT INTO `wp_gf_form_view` VALUES("20841", "9", "2015-11-10 09:33:59", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20842", "3", "2015-11-10 10:05:11", "202.46.58.191", "41");
INSERT INTO `wp_gf_form_view` VALUES("20843", "3", "2015-11-10 11:03:43", "202.46.54.100", "46");
INSERT INTO `wp_gf_form_view` VALUES("20844", "3", "2015-11-10 12:02:18", "202.46.48.141", "43");
INSERT INTO `wp_gf_form_view` VALUES("20845", "3", "2015-11-10 13:00:47", "202.46.53.154", "48");
INSERT INTO `wp_gf_form_view` VALUES("20846", "9", "2015-11-10 13:37:05", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20847", "3", "2015-11-10 14:11:03", "202.46.51.202", "54");
INSERT INTO `wp_gf_form_view` VALUES("20848", "3", "2015-11-10 15:06:41", "66.249.74.102", "64");
INSERT INTO `wp_gf_form_view` VALUES("20849", "3", "2015-11-10 16:08:07", "202.46.52.208", "46");
INSERT INTO `wp_gf_form_view` VALUES("20850", "7", "2015-11-10 16:34:17", "157.55.39.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("20851", "3", "2015-11-10 17:06:40", "202.46.58.210", "61");
INSERT INTO `wp_gf_form_view` VALUES("20852", "3", "2015-11-10 18:05:14", "202.46.51.108", "78");
INSERT INTO `wp_gf_form_view` VALUES("20853", "2", "2015-11-10 19:01:46", "96.50.93.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("20854", "3", "2015-11-10 19:01:46", "96.50.93.42", "72");
INSERT INTO `wp_gf_form_view` VALUES("20855", "7", "2015-11-10 19:49:26", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20856", "3", "2015-11-10 20:00:34", "66.249.74.104", "85");
INSERT INTO `wp_gf_form_view` VALUES("20857", "1", "2015-11-10 20:35:08", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20858", "3", "2015-11-10 21:00:48", "202.46.51.119", "100");
INSERT INTO `wp_gf_form_view` VALUES("20859", "3", "2015-11-10 22:11:02", "202.46.54.102", "65");
INSERT INTO `wp_gf_form_view` VALUES("20860", "3", "2015-11-10 23:09:35", "202.46.53.16", "101");
INSERT INTO `wp_gf_form_view` VALUES("20861", "9", "2015-11-10 23:51:15", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20862", "1", "2015-11-11 00:01:29", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20863", "3", "2015-11-11 00:01:29", "66.249.74.102", "125");
INSERT INTO `wp_gf_form_view` VALUES("20864", "3", "2015-11-11 01:03:40", "67.248.28.8", "97");
INSERT INTO `wp_gf_form_view` VALUES("20865", "6", "2015-11-11 01:31:00", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20866", "3", "2015-11-11 02:02:52", "66.249.74.102", "82");
INSERT INTO `wp_gf_form_view` VALUES("20867", "2", "2015-11-11 02:49:41", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20868", "3", "2015-11-11 03:03:43", "202.46.49.134", "106");
INSERT INTO `wp_gf_form_view` VALUES("20869", "1", "2015-11-11 03:13:58", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20870", "3", "2015-11-11 04:00:54", "66.249.74.104", "112");
INSERT INTO `wp_gf_form_view` VALUES("20871", "1", "2015-11-11 04:15:37", "192.227.224.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("20872", "3", "2015-11-11 05:29:15", "199.21.99.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("20873", "2", "2015-11-11 05:46:29", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20874", "3", "2015-11-11 06:06:21", "66.249.74.104", "44");
INSERT INTO `wp_gf_form_view` VALUES("20875", "3", "2015-11-11 07:01:39", "66.249.74.106", "76");
INSERT INTO `wp_gf_form_view` VALUES("20876", "3", "2015-11-11 08:03:37", "66.249.74.102", "56");
INSERT INTO `wp_gf_form_view` VALUES("20877", "9", "2015-11-11 08:07:54", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20878", "3", "2015-11-11 09:02:30", "66.249.74.102", "53");
INSERT INTO `wp_gf_form_view` VALUES("20879", "9", "2015-11-11 09:42:58", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20880", "1", "2015-11-11 09:52:27", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20881", "3", "2015-11-11 10:00:50", "199.21.99.195", "69");
INSERT INTO `wp_gf_form_view` VALUES("20882", "2", "2015-11-11 10:06:38", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20883", "9", "2015-11-11 10:44:48", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20884", "3", "2015-11-11 11:01:14", "91.200.12.39", "72");
INSERT INTO `wp_gf_form_view` VALUES("20885", "3", "2015-11-11 12:06:39", "66.249.74.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("20886", "9", "2015-11-11 12:24:26", "100.43.81.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("20887", "3", "2015-11-11 13:03:55", "66.249.74.102", "36");
INSERT INTO `wp_gf_form_view` VALUES("20888", "1", "2015-11-11 13:14:59", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20889", "9", "2015-11-11 13:46:51", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20890", "3", "2015-11-11 14:01:57", "66.249.74.102", "114");
INSERT INTO `wp_gf_form_view` VALUES("20891", "2", "2015-11-11 14:32:55", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20892", "3", "2015-11-11 15:00:40", "178.137.91.140", "68");
INSERT INTO `wp_gf_form_view` VALUES("20893", "9", "2015-11-11 15:51:55", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20894", "3", "2015-11-11 16:00:29", "66.249.74.106", "94");
INSERT INTO `wp_gf_form_view` VALUES("20895", "6", "2015-11-11 16:01:52", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20896", "3", "2015-11-11 17:06:39", "202.46.57.20", "109");
INSERT INTO `wp_gf_form_view` VALUES("20897", "1", "2015-11-11 17:29:19", "37.203.210.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("20898", "3", "2015-11-11 18:04:33", "66.249.74.104", "92");
INSERT INTO `wp_gf_form_view` VALUES("20899", "1", "2015-11-11 18:11:04", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20900", "3", "2015-11-11 19:01:04", "66.249.74.106", "85");
INSERT INTO `wp_gf_form_view` VALUES("20901", "9", "2015-11-11 19:41:28", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20902", "1", "2015-11-11 19:42:35", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("20903", "3", "2015-11-11 20:02:15", "202.46.58.160", "92");
INSERT INTO `wp_gf_form_view` VALUES("20904", "2", "2015-11-11 20:50:16", "204.12.239.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("20905", "3", "2015-11-11 21:00:47", "202.46.53.45", "117");
INSERT INTO `wp_gf_form_view` VALUES("20906", "2", "2015-11-11 21:42:50", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("20907", "3", "2015-11-11 22:11:01", "202.46.51.31", "80");
INSERT INTO `wp_gf_form_view` VALUES("20908", "1", "2015-11-11 22:23:56", "205.250.182.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("20909", "9", "2015-11-11 22:59:18", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("20910", "3", "2015-11-11 23:09:34", "202.46.48.197", "39");
INSERT INTO `wp_gf_form_view` VALUES("20911", "3", "2015-11-12 00:08:08", "202.46.54.37", "72");
INSERT INTO `wp_gf_form_view` VALUES("20912", "3", "2015-11-12 01:06:39", "202.46.48.13", "30");
INSERT INTO `wp_gf_form_view` VALUES("20913", "3", "2015-11-12 02:05:10", "202.46.56.136", "33");
INSERT INTO `wp_gf_form_view` VALUES("20914", "3", "2015-11-12 03:03:43", "202.46.57.13", "64");
INSERT INTO `wp_gf_form_view` VALUES("20915", "3", "2015-11-12 04:02:14", "202.46.48.201", "87");
INSERT INTO `wp_gf_form_view` VALUES("20916", "3", "2015-11-12 05:00:47", "202.46.53.141", "38");
INSERT INTO `wp_gf_form_view` VALUES("20917", "3", "2015-11-12 06:10:16", "207.46.13.72", "39");
INSERT INTO `wp_gf_form_view` VALUES("20918", "3", "2015-11-12 07:00:15", "217.69.133.69", "38");
INSERT INTO `wp_gf_form_view` VALUES("20919", "3", "2015-11-12 08:08:06", "202.46.50.164", "42");
INSERT INTO `wp_gf_form_view` VALUES("20920", "3", "2015-11-12 09:06:38", "202.46.53.201", "33");
INSERT INTO `wp_gf_form_view` VALUES("20921", "3", "2015-11-12 10:05:11", "202.46.53.111", "33");
INSERT INTO `wp_gf_form_view` VALUES("20922", "3", "2015-11-12 11:03:43", "202.46.49.76", "116");
INSERT INTO `wp_gf_form_view` VALUES("20923", "2", "2015-11-12 11:39:47", "104.236.227.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("20924", "1", "2015-11-12 11:39:47", "104.236.227.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("20925", "3", "2015-11-12 12:02:14", "202.46.56.70", "26");
INSERT INTO `wp_gf_form_view` VALUES("20926", "3", "2015-11-12 13:00:47", "202.46.58.75", "58");
INSERT INTO `wp_gf_form_view` VALUES("20927", "3", "2015-11-12 14:02:00", "188.165.15.78", "44");
INSERT INTO `wp_gf_form_view` VALUES("20928", "3", "2015-11-12 15:09:33", "202.46.52.79", "17");
INSERT INTO `wp_gf_form_view` VALUES("20929", "3", "2015-11-12 16:07:49", "100.43.90.13", "21");
INSERT INTO `wp_gf_form_view` VALUES("20930", "3", "2015-11-12 17:04:56", "46.246.42.151", "21");
INSERT INTO `wp_gf_form_view` VALUES("20931", "3", "2015-11-12 18:16:05", "207.46.13.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("20932", "3", "2015-11-12 19:18:22", "157.55.39.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("20933", "3", "2015-11-12 20:15:36", "174.127.133.66", "326");
INSERT INTO `wp_gf_form_view` VALUES("20934", "1", "2015-11-12 20:17:20", "174.127.133.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("20935", "2", "2015-11-12 20:19:17", "174.127.133.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("20936", "1", "2015-11-12 21:00:25", "104.223.23.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("20937", "3", "2015-11-12 21:00:25", "104.223.23.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("20938", "3", "2015-11-12 22:27:08", "46.185.84.181", "8");
INSERT INTO `wp_gf_form_view` VALUES("20939", "3", "2015-11-12 23:13:29", "199.60.109.122", "38");
INSERT INTO `wp_gf_form_view` VALUES("20940", "3", "2015-11-13 00:07:36", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("20941", "3", "2015-11-13 01:02:29", "68.180.229.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("20942", "3", "2015-11-13 02:40:43", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("20943", "3", "2015-11-13 03:11:45", "207.81.254.101", "5");
INSERT INTO `wp_gf_form_view` VALUES("20944", "3", "2015-11-13 04:18:26", "202.46.51.186", "26");
INSERT INTO `wp_gf_form_view` VALUES("20945", "3", "2015-11-13 05:05:15", "202.46.58.119", "83");
INSERT INTO `wp_gf_form_view` VALUES("20946", "1", "2015-11-13 05:44:19", "5.9.145.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("20947", "3", "2015-11-13 06:04:17", "207.46.13.45", "32");
INSERT INTO `wp_gf_form_view` VALUES("20948", "3", "2015-11-13 07:02:29", "202.46.53.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("20949", "3", "2015-11-13 08:00:51", "202.46.53.119", "42");
INSERT INTO `wp_gf_form_view` VALUES("20950", "3", "2015-11-13 09:34:33", "202.46.54.70", "17");
INSERT INTO `wp_gf_form_view` VALUES("20951", "3", "2015-11-13 10:09:38", "202.46.56.114", "56");
INSERT INTO `wp_gf_form_view` VALUES("20952", "3", "2015-11-13 11:35:13", "202.46.50.131", "13");
INSERT INTO `wp_gf_form_view` VALUES("20953", "3", "2015-11-13 12:14:50", "68.180.229.161", "22");
INSERT INTO `wp_gf_form_view` VALUES("20954", "3", "2015-11-13 13:09:30", "202.46.56.97", "28");
INSERT INTO `wp_gf_form_view` VALUES("20955", "3", "2015-11-13 14:02:57", "68.180.229.161", "43");
INSERT INTO `wp_gf_form_view` VALUES("20956", "3", "2015-11-13 15:18:17", "202.46.51.198", "56");
INSERT INTO `wp_gf_form_view` VALUES("20957", "3", "2015-11-13 16:04:01", "66.249.74.104", "17");
INSERT INTO `wp_gf_form_view` VALUES("20958", "3", "2015-11-13 17:00:09", "207.194.133.9", "62");
INSERT INTO `wp_gf_form_view` VALUES("20959", "3", "2015-11-13 18:05:25", "202.46.56.134", "45");
INSERT INTO `wp_gf_form_view` VALUES("20960", "3", "2015-11-13 19:03:56", "202.46.49.73", "44");
INSERT INTO `wp_gf_form_view` VALUES("20961", "9", "2015-11-13 19:10:12", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("20962", "3", "2015-11-13 20:03:22", "202.46.57.167", "61");
INSERT INTO `wp_gf_form_view` VALUES("20963", "1", "2015-11-13 20:06:56", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("20964", "3", "2015-11-13 21:01:00", "202.46.57.26", "41");
INSERT INTO `wp_gf_form_view` VALUES("20965", "3", "2015-11-13 22:11:47", "202.46.57.79", "44");
INSERT INTO `wp_gf_form_view` VALUES("20966", "3", "2015-11-13 23:00:32", "174.1.52.106", "39");
INSERT INTO `wp_gf_form_view` VALUES("20967", "3", "2015-11-14 00:08:19", "202.46.52.204", "63");
INSERT INTO `wp_gf_form_view` VALUES("20968", "2", "2015-11-14 01:03:17", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("20969", "3", "2015-11-14 01:03:18", "91.200.12.138", "87");
INSERT INTO `wp_gf_form_view` VALUES("20970", "3", "2015-11-14 02:17:38", "202.46.53.151", "11");
INSERT INTO `wp_gf_form_view` VALUES("20971", "3", "2015-11-14 03:04:01", "202.46.51.21", "40");
INSERT INTO `wp_gf_form_view` VALUES("20972", "3", "2015-11-14 04:03:30", "202.46.54.19", "38");
INSERT INTO `wp_gf_form_view` VALUES("20973", "3", "2015-11-14 05:06:24", "212.76.140.135", "63");
INSERT INTO `wp_gf_form_view` VALUES("20974", "3", "2015-11-14 06:13:32", "202.46.49.110", "23");
INSERT INTO `wp_gf_form_view` VALUES("20975", "3", "2015-11-14 07:00:22", "202.46.57.164", "35");
INSERT INTO `wp_gf_form_view` VALUES("20976", "3", "2015-11-14 08:22:18", "202.46.54.107", "22");
INSERT INTO `wp_gf_form_view` VALUES("20977", "3", "2015-11-14 09:09:13", "202.46.57.184", "31");
INSERT INTO `wp_gf_form_view` VALUES("20978", "3", "2015-11-14 10:04:17", "91.200.12.39", "29");
INSERT INTO `wp_gf_form_view` VALUES("20979", "1", "2015-11-14 10:20:49", "167.114.199.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("20980", "3", "2015-11-14 11:47:55", "111.242.173.180", "13");
INSERT INTO `wp_gf_form_view` VALUES("20981", "1", "2015-11-14 11:59:42", "199.168.141.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("20982", "3", "2015-11-14 12:22:59", "202.46.52.142", "13");
INSERT INTO `wp_gf_form_view` VALUES("20983", "3", "2015-11-14 13:02:55", "207.46.13.167", "12");
INSERT INTO `wp_gf_form_view` VALUES("20984", "3", "2015-11-14 14:08:20", "202.46.51.210", "24");
INSERT INTO `wp_gf_form_view` VALUES("20985", "3", "2015-11-14 15:11:10", "202.46.53.126", "16");
INSERT INTO `wp_gf_form_view` VALUES("20986", "3", "2015-11-14 16:55:41", "207.46.13.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("20987", "3", "2015-11-14 17:24:08", "207.46.13.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("20988", "3", "2015-11-14 18:33:49", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("20989", "3", "2015-11-14 19:27:15", "207.46.13.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("20990", "3", "2015-11-14 20:06:45", "46.118.152.18", "44");
INSERT INTO `wp_gf_form_view` VALUES("20991", "1", "2015-11-14 21:14:27", "212.129.9.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("20992", "3", "2015-11-14 21:14:28", "212.129.9.188", "44");
INSERT INTO `wp_gf_form_view` VALUES("20993", "3", "2015-11-14 22:21:44", "92.85.176.134", "125");
INSERT INTO `wp_gf_form_view` VALUES("20994", "1", "2015-11-14 22:22:31", "92.85.176.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("20995", "2", "2015-11-14 22:22:38", "92.85.176.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("20996", "3", "2015-11-14 23:16:30", "63.141.224.250", "8");
INSERT INTO `wp_gf_form_view` VALUES("20997", "3", "2015-11-15 00:39:46", "37.77.122.93", "163");
INSERT INTO `wp_gf_form_view` VALUES("20998", "1", "2015-11-15 00:41:17", "37.77.122.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("20999", "2", "2015-11-15 00:41:34", "37.77.122.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("21000", "3", "2015-11-15 01:08:02", "151.80.31.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("21001", "1", "2015-11-15 02:04:24", "109.120.164.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("21002", "3", "2015-11-15 02:04:24", "109.120.164.63", "30");
INSERT INTO `wp_gf_form_view` VALUES("21003", "3", "2015-11-15 03:04:25", "136.243.17.161", "28");
INSERT INTO `wp_gf_form_view` VALUES("21004", "3", "2015-11-15 04:22:29", "207.46.13.63", "69");
INSERT INTO `wp_gf_form_view` VALUES("21005", "1", "2015-11-15 04:33:44", "92.114.6.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("21006", "9", "2015-11-15 04:39:31", "54.159.7.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("21007", "3", "2015-11-15 05:05:39", "62.210.122.172", "24");
INSERT INTO `wp_gf_form_view` VALUES("21008", "3", "2015-11-15 06:19:32", "151.80.31.114", "12");
INSERT INTO `wp_gf_form_view` VALUES("21009", "3", "2015-11-15 07:29:40", "46.246.42.151", "31");
INSERT INTO `wp_gf_form_view` VALUES("21010", "3", "2015-11-15 08:09:25", "77.75.79.54", "48");
INSERT INTO `wp_gf_form_view` VALUES("21011", "3", "2015-11-15 09:05:57", "31.184.238.243", "24");
INSERT INTO `wp_gf_form_view` VALUES("21012", "3", "2015-11-15 10:06:23", "207.46.13.49", "4");
INSERT INTO `wp_gf_form_view` VALUES("21013", "3", "2015-11-15 11:06:45", "62.210.122.172", "4");
INSERT INTO `wp_gf_form_view` VALUES("21014", "1", "2015-11-15 12:02:45", "192.161.50.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("21015", "3", "2015-11-15 12:02:46", "192.161.50.74", "85");
INSERT INTO `wp_gf_form_view` VALUES("21016", "3", "2015-11-15 13:08:43", "46.118.152.18", "25");
INSERT INTO `wp_gf_form_view` VALUES("21017", "1", "2015-11-15 13:36:51", "151.80.31.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("21018", "3", "2015-11-15 14:17:43", "68.180.229.161", "28");
INSERT INTO `wp_gf_form_view` VALUES("21019", "3", "2015-11-15 16:13:24", "207.46.13.49", "142");
INSERT INTO `wp_gf_form_view` VALUES("21020", "1", "2015-11-15 16:43:48", "54.76.201.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("21021", "2", "2015-11-15 16:45:11", "54.76.201.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("21022", "3", "2015-11-15 17:14:33", "66.249.74.102", "221");
INSERT INTO `wp_gf_form_view` VALUES("21023", "2", "2015-11-15 17:14:56", "193.201.227.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("21024", "1", "2015-11-15 17:14:58", "193.201.227.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("21025", "3", "2015-11-15 18:36:38", "151.80.31.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("21026", "3", "2015-11-15 19:10:44", "174.5.65.124", "23");
INSERT INTO `wp_gf_form_view` VALUES("21027", "3", "2015-11-15 20:05:30", "37.115.154.109", "48");
INSERT INTO `wp_gf_form_view` VALUES("21028", "1", "2015-11-15 20:39:32", "24.68.65.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("21029", "3", "2015-11-15 21:00:16", "202.46.53.158", "81");
INSERT INTO `wp_gf_form_view` VALUES("21030", "3", "2015-11-15 22:08:39", "68.180.229.161", "26");
INSERT INTO `wp_gf_form_view` VALUES("21031", "3", "2015-11-15 23:20:30", "202.46.50.98", "25");
INSERT INTO `wp_gf_form_view` VALUES("21032", "3", "2015-11-16 00:19:03", "202.46.53.41", "22");
INSERT INTO `wp_gf_form_view` VALUES("21033", "3", "2015-11-16 01:05:53", "202.46.55.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("21034", "3", "2015-11-16 02:10:33", "202.46.58.152", "40");
INSERT INTO `wp_gf_form_view` VALUES("21035", "3", "2015-11-16 03:09:05", "202.46.52.161", "29");
INSERT INTO `wp_gf_form_view` VALUES("21036", "3", "2015-11-16 04:00:23", "24.68.124.97", "92");
INSERT INTO `wp_gf_form_view` VALUES("21037", "5", "2015-11-16 04:25:38", "24.68.30.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("21038", "1", "2015-11-16 04:35:33", "23.94.182.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("21039", "3", "2015-11-16 05:15:30", "40.77.167.38", "29");
INSERT INTO `wp_gf_form_view` VALUES("21040", "1", "2015-11-16 05:58:50", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21041", "3", "2015-11-16 06:10:38", "66.249.74.104", "31");
INSERT INTO `wp_gf_form_view` VALUES("21042", "3", "2015-11-16 07:00:16", "155.94.208.124", "46");
INSERT INTO `wp_gf_form_view` VALUES("21043", "2", "2015-11-16 07:36:14", "155.94.208.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("21044", "3", "2015-11-16 08:12:57", "66.249.74.106", "24");
INSERT INTO `wp_gf_form_view` VALUES("21045", "3", "2015-11-16 09:11:48", "66.249.74.104", "40");
INSERT INTO `wp_gf_form_view` VALUES("21046", "1", "2015-11-16 09:48:42", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21047", "1", "2015-11-16 10:27:39", "91.200.12.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("21048", "2", "2015-11-16 10:27:39", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21049", "3", "2015-11-16 10:27:40", "91.200.12.138", "60");
INSERT INTO `wp_gf_form_view` VALUES("21050", "3", "2015-11-16 10:27:40", "91.200.12.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("21051", "3", "2015-11-16 11:02:10", "151.80.31.114", "74");
INSERT INTO `wp_gf_form_view` VALUES("21052", "1", "2015-11-16 11:58:13", "178.175.184.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("21053", "3", "2015-11-16 12:05:47", "202.46.57.182", "25");
INSERT INTO `wp_gf_form_view` VALUES("21054", "3", "2015-11-16 13:14:14", "91.200.12.25", "35");
INSERT INTO `wp_gf_form_view` VALUES("21055", "1", "2015-11-16 13:24:45", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21056", "3", "2015-11-16 14:03:52", "202.46.57.151", "80");
INSERT INTO `wp_gf_form_view` VALUES("21057", "1", "2015-11-16 14:19:14", "185.59.125.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("21058", "3", "2015-11-16 15:28:33", "157.55.39.153", "12");
INSERT INTO `wp_gf_form_view` VALUES("21059", "3", "2015-11-16 16:25:35", "178.137.161.6", "98");
INSERT INTO `wp_gf_form_view` VALUES("21060", "3", "2015-11-16 17:01:12", "66.249.74.102", "37");
INSERT INTO `wp_gf_form_view` VALUES("21061", "9", "2015-11-16 17:14:18", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("21062", "3", "2015-11-16 18:26:34", "66.249.74.102", "48");
INSERT INTO `wp_gf_form_view` VALUES("21063", "2", "2015-11-16 18:30:30", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21064", "3", "2015-11-16 19:10:50", "66.249.74.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("21065", "3", "2015-11-16 20:05:04", "207.46.13.149", "36");
INSERT INTO `wp_gf_form_view` VALUES("21066", "3", "2015-11-16 21:09:55", "91.200.12.39", "22");
INSERT INTO `wp_gf_form_view` VALUES("21067", "3", "2015-11-16 22:15:53", "184.66.8.33", "21");
INSERT INTO `wp_gf_form_view` VALUES("21068", "3", "2015-11-16 23:00:30", "66.249.74.102", "30");
INSERT INTO `wp_gf_form_view` VALUES("21069", "1", "2015-11-16 23:29:58", "23.95.93.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("21070", "3", "2015-11-17 00:13:03", "151.80.31.114", "40");
INSERT INTO `wp_gf_form_view` VALUES("21071", "9", "2015-11-17 00:45:57", "70.67.187.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("21072", "3", "2015-11-17 01:11:06", "46.118.152.18", "62");
INSERT INTO `wp_gf_form_view` VALUES("21073", "3", "2015-11-17 02:04:49", "66.249.74.106", "45");
INSERT INTO `wp_gf_form_view` VALUES("21074", "3", "2015-11-17 03:24:02", "67.248.28.8", "25");
INSERT INTO `wp_gf_form_view` VALUES("21075", "6", "2015-11-17 03:40:46", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("21076", "1", "2015-11-17 03:43:44", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("21077", "3", "2015-11-17 04:07:41", "66.249.74.104", "47");
INSERT INTO `wp_gf_form_view` VALUES("21078", "3", "2015-11-17 05:04:15", "151.80.31.114", "37");
INSERT INTO `wp_gf_form_view` VALUES("21079", "1", "2015-11-17 05:41:29", "182.75.145.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("21080", "3", "2015-11-17 06:01:00", "66.249.74.102", "73");
INSERT INTO `wp_gf_form_view` VALUES("21081", "3", "2015-11-17 07:25:14", "66.249.74.104", "40");
INSERT INTO `wp_gf_form_view` VALUES("21082", "3", "2015-11-17 08:11:50", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("21083", "3", "2015-11-17 09:03:23", "192.210.226.10", "53");
INSERT INTO `wp_gf_form_view` VALUES("21084", "9", "2015-11-17 10:13:48", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("21085", "3", "2015-11-17 10:13:48", "217.69.133.229", "25");
INSERT INTO `wp_gf_form_view` VALUES("21086", "3", "2015-11-17 11:11:57", "68.180.229.161", "46");
INSERT INTO `wp_gf_form_view` VALUES("21087", "3", "2015-11-17 12:02:38", "66.249.74.106", "31");
INSERT INTO `wp_gf_form_view` VALUES("21088", "3", "2015-11-17 13:24:52", "66.249.74.104", "31");
INSERT INTO `wp_gf_form_view` VALUES("21089", "3", "2015-11-17 14:19:43", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("21090", "7", "2015-11-17 14:59:00", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("21091", "3", "2015-11-17 15:19:53", "66.249.74.106", "25");
INSERT INTO `wp_gf_form_view` VALUES("21092", "3", "2015-11-17 16:02:05", "66.249.74.104", "84");
INSERT INTO `wp_gf_form_view` VALUES("21093", "3", "2015-11-17 17:00:11", "24.69.45.245", "73");
INSERT INTO `wp_gf_form_view` VALUES("21094", "3", "2015-11-17 18:11:19", "178.137.161.6", "48");
INSERT INTO `wp_gf_form_view` VALUES("21095", "3", "2015-11-17 19:05:16", "68.180.229.161", "38");
INSERT INTO `wp_gf_form_view` VALUES("21096", "3", "2015-11-17 20:02:23", "202.46.53.194", "47");
INSERT INTO `wp_gf_form_view` VALUES("21097", "3", "2015-11-17 21:08:53", "66.249.74.102", "36");
INSERT INTO `wp_gf_form_view` VALUES("21098", "9", "2015-11-17 22:02:18", "158.222.6.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("21099", "3", "2015-11-17 22:02:19", "158.222.6.231", "26");
INSERT INTO `wp_gf_form_view` VALUES("21100", "3", "2015-11-17 23:01:05", "192.210.226.10", "76");
INSERT INTO `wp_gf_form_view` VALUES("21101", "3", "2015-11-18 00:02:07", "66.249.74.106", "50");
INSERT INTO `wp_gf_form_view` VALUES("21102", "3", "2015-11-18 01:00:27", "69.12.75.151", "53");
INSERT INTO `wp_gf_form_view` VALUES("21103", "3", "2015-11-18 02:01:42", "199.21.99.202", "38");
INSERT INTO `wp_gf_form_view` VALUES("21104", "3", "2015-11-18 03:00:36", "202.46.54.163", "65");
INSERT INTO `wp_gf_form_view` VALUES("21105", "1", "2015-11-18 03:58:51", "155.94.237.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("21106", "3", "2015-11-18 04:01:21", "68.180.229.161", "82");
INSERT INTO `wp_gf_form_view` VALUES("21107", "3", "2015-11-18 05:09:23", "202.46.51.161", "46");
INSERT INTO `wp_gf_form_view` VALUES("21108", "3", "2015-11-18 06:15:48", "66.249.74.106", "47");
INSERT INTO `wp_gf_form_view` VALUES("21109", "1", "2015-11-18 07:02:01", "192.186.155.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("21110", "3", "2015-11-18 07:02:01", "192.186.155.3", "100");
INSERT INTO `wp_gf_form_view` VALUES("21111", "3", "2015-11-18 08:05:13", "40.77.167.67", "70");
INSERT INTO `wp_gf_form_view` VALUES("21112", "3", "2015-11-18 09:07:26", "202.46.58.56", "37");
INSERT INTO `wp_gf_form_view` VALUES("21113", "3", "2015-11-18 10:07:06", "151.80.31.114", "20");
INSERT INTO `wp_gf_form_view` VALUES("21114", "3", "2015-11-18 11:00:35", "202.46.57.208", "139");
INSERT INTO `wp_gf_form_view` VALUES("21115", "1", "2015-11-18 11:32:56", "104.236.47.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("21116", "2", "2015-11-18 11:32:56", "104.236.47.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("21117", "3", "2015-11-18 12:06:24", "202.46.51.163", "34");
INSERT INTO `wp_gf_form_view` VALUES("21118", "3", "2015-11-18 13:04:57", "202.46.49.199", "553");
INSERT INTO `wp_gf_form_view` VALUES("21119", "1", "2015-11-18 13:51:32", "50.112.217.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("21120", "2", "2015-11-18 13:51:58", "50.112.217.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("21121", "3", "2015-11-18 14:01:35", "151.80.31.114", "69");
INSERT INTO `wp_gf_form_view` VALUES("21122", "1", "2015-11-18 14:38:53", "199.168.141.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("21123", "3", "2015-11-18 15:02:03", "202.46.48.96", "25");
INSERT INTO `wp_gf_form_view` VALUES("21124", "9", "2015-11-18 15:24:28", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("21125", "3", "2015-11-18 16:29:15", "46.118.152.18", "38");
INSERT INTO `wp_gf_form_view` VALUES("21126", "3", "2015-11-18 16:29:15", "46.118.152.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("21127", "3", "2015-11-18 17:16:04", "46.246.42.151", "41");
INSERT INTO `wp_gf_form_view` VALUES("21128", "3", "2015-11-18 18:07:09", "202.46.51.115", "21");
INSERT INTO `wp_gf_form_view` VALUES("21129", "3", "2015-11-18 19:00:44", "202.46.50.14", "80");
INSERT INTO `wp_gf_form_view` VALUES("21130", "3", "2015-11-18 20:00:03", "202.46.57.89", "151");
INSERT INTO `wp_gf_form_view` VALUES("21131", "3", "2015-11-18 21:12:16", "184.69.162.222", "55");
INSERT INTO `wp_gf_form_view` VALUES("21132", "3", "2015-11-18 21:12:16", "184.69.162.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("21133", "3", "2015-11-18 22:08:02", "202.46.56.71", "54");
INSERT INTO `wp_gf_form_view` VALUES("21134", "3", "2015-11-18 23:09:51", "142.104.36.158", "94");
INSERT INTO `wp_gf_form_view` VALUES("21135", "3", "2015-11-19 00:09:20", "178.137.94.14", "69");
INSERT INTO `wp_gf_form_view` VALUES("21136", "1", "2015-11-19 00:39:23", "166.62.94.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("21137", "3", "2015-11-19 01:57:57", "202.46.52.205", "5");
INSERT INTO `wp_gf_form_view` VALUES("21138", "3", "2015-11-19 02:09:11", "100.43.115.32", "33");
INSERT INTO `wp_gf_form_view` VALUES("21139", "3", "2015-11-19 03:07:36", "207.46.13.101", "35");
INSERT INTO `wp_gf_form_view` VALUES("21140", "3", "2015-11-19 04:23:31", "157.55.39.191", "24");
INSERT INTO `wp_gf_form_view` VALUES("21141", "3", "2015-11-19 05:04:22", "202.46.54.19", "24");
INSERT INTO `wp_gf_form_view` VALUES("21142", "3", "2015-11-19 06:10:17", "202.46.50.150", "45");
INSERT INTO `wp_gf_form_view` VALUES("21143", "3", "2015-11-19 07:04:16", "202.46.48.94", "34");
INSERT INTO `wp_gf_form_view` VALUES("21144", "3", "2015-11-19 08:02:47", "202.46.54.135", "30");
INSERT INTO `wp_gf_form_view` VALUES("21145", "3", "2015-11-19 09:01:21", "202.46.48.141", "60");
INSERT INTO `wp_gf_form_view` VALUES("21146", "3", "2015-11-19 10:02:14", "202.46.50.133", "34");
INSERT INTO `wp_gf_form_view` VALUES("21147", "3", "2015-11-19 11:31:30", "202.46.54.90", "60");
INSERT INTO `wp_gf_form_view` VALUES("21148", "3", "2015-11-19 12:06:35", "202.46.58.183", "69");
INSERT INTO `wp_gf_form_view` VALUES("21149", "3", "2015-11-19 13:16:49", "202.46.54.161", "67");
INSERT INTO `wp_gf_form_view` VALUES("21150", "3", "2015-11-19 14:11:47", "202.46.52.202", "24");
INSERT INTO `wp_gf_form_view` VALUES("21151", "3", "2015-11-19 15:06:22", "202.46.58.13", "33");
INSERT INTO `wp_gf_form_view` VALUES("21152", "1", "2015-11-19 15:17:07", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21153", "3", "2015-11-19 16:01:54", "202.46.49.111", "16");
INSERT INTO `wp_gf_form_view` VALUES("21154", "9", "2015-11-19 17:00:52", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("21155", "3", "2015-11-19 17:00:53", "68.180.229.161", "249");
INSERT INTO `wp_gf_form_view` VALUES("21156", "1", "2015-11-19 17:12:29", "107.190.163.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("21157", "2", "2015-11-19 17:40:30", "66.91.12.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("21158", "3", "2015-11-19 18:11:49", "68.180.229.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("21159", "3", "2015-11-19 19:22:45", "40.77.167.56", "76");
INSERT INTO `wp_gf_form_view` VALUES("21160", "8", "2015-11-19 19:22:45", "40.77.167.56", "15");
INSERT INTO `wp_gf_form_view` VALUES("21161", "3", "2015-11-19 20:06:30", "216.232.155.92", "15");
INSERT INTO `wp_gf_form_view` VALUES("21162", "8", "2015-11-19 20:06:30", "216.232.155.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("21163", "3", "2015-11-19 21:07:24", "151.80.31.114", "37");
INSERT INTO `wp_gf_form_view` VALUES("21164", "8", "2015-11-19 21:07:26", "151.80.31.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("21165", "3", "2015-11-19 22:09:42", "24.108.66.114", "57");
INSERT INTO `wp_gf_form_view` VALUES("21166", "8", "2015-11-19 22:09:43", "24.108.66.114", "11");
INSERT INTO `wp_gf_form_view` VALUES("21167", "2", "2015-11-19 22:51:07", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21168", "3", "2015-11-19 23:18:33", "66.249.74.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("21169", "6", "2015-11-19 23:22:24", "151.80.31.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("21170", "8", "2015-11-19 23:22:24", "151.80.31.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("21171", "3", "2015-11-20 00:05:49", "157.55.39.108", "31");
INSERT INTO `wp_gf_form_view` VALUES("21172", "8", "2015-11-20 00:05:51", "157.55.39.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("21173", "1", "2015-11-20 00:17:08", "96.50.108.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("21174", "3", "2015-11-20 01:02:01", "40.77.167.56", "166");
INSERT INTO `wp_gf_form_view` VALUES("21175", "8", "2015-11-20 01:02:01", "40.77.167.56", "33");
INSERT INTO `wp_gf_form_view` VALUES("21176", "1", "2015-11-20 01:04:44", "109.158.8.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("21177", "2", "2015-11-20 01:04:50", "109.158.8.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("21178", "3", "2015-11-20 02:08:16", "216.244.85.148", "78");
INSERT INTO `wp_gf_form_view` VALUES("21179", "8", "2015-11-20 02:08:16", "216.244.85.148", "16");
INSERT INTO `wp_gf_form_view` VALUES("21180", "1", "2015-11-20 02:31:01", "37.72.188.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("21181", "2", "2015-11-20 03:01:45", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21182", "3", "2015-11-20 03:01:45", "68.180.229.161", "66");
INSERT INTO `wp_gf_form_view` VALUES("21183", "8", "2015-11-20 03:01:46", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("21184", "3", "2015-11-20 04:01:23", "62.210.122.172", "26");
INSERT INTO `wp_gf_form_view` VALUES("21185", "8", "2015-11-20 04:01:23", "62.210.122.172", "5");
INSERT INTO `wp_gf_form_view` VALUES("21186", "3", "2015-11-20 05:07:54", "23.95.241.230", "100");
INSERT INTO `wp_gf_form_view` VALUES("21187", "8", "2015-11-20 05:07:54", "23.95.241.230", "26");
INSERT INTO `wp_gf_form_view` VALUES("21188", "3", "2015-11-20 06:21:04", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("21189", "8", "2015-11-20 06:56:35", "199.16.156.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("21190", "3", "2015-11-20 07:01:21", "62.210.162.184", "32");
INSERT INTO `wp_gf_form_view` VALUES("21191", "8", "2015-11-20 07:01:22", "62.210.162.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("21192", "3", "2015-11-20 08:27:02", "202.46.48.203", "50");
INSERT INTO `wp_gf_form_view` VALUES("21193", "8", "2015-11-20 08:27:03", "202.46.48.203", "12");
INSERT INTO `wp_gf_form_view` VALUES("21194", "1", "2015-11-20 08:43:04", "31.187.76.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("21195", "3", "2015-11-20 09:02:11", "202.46.52.149", "26");
INSERT INTO `wp_gf_form_view` VALUES("21196", "8", "2015-11-20 09:02:12", "202.46.52.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("21197", "3", "2015-11-20 10:01:58", "202.46.52.76", "48");
INSERT INTO `wp_gf_form_view` VALUES("21198", "8", "2015-11-20 10:01:58", "202.46.52.76", "11");
INSERT INTO `wp_gf_form_view` VALUES("21199", "9", "2015-11-20 10:54:22", "151.80.31.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("21200", "1", "2015-11-20 10:56:41", "107.190.163.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("21201", "3", "2015-11-20 11:00:28", "202.46.49.152", "38");
INSERT INTO `wp_gf_form_view` VALUES("21202", "8", "2015-11-20 11:00:28", "202.46.49.152", "13");
INSERT INTO `wp_gf_form_view` VALUES("21203", "3", "2015-11-20 12:10:43", "202.46.52.176", "37");
INSERT INTO `wp_gf_form_view` VALUES("21204", "8", "2015-11-20 12:10:44", "202.46.52.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("21205", "3", "2015-11-20 13:09:15", "202.46.53.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("21206", "8", "2015-11-20 13:09:15", "202.46.53.112", "7");
INSERT INTO `wp_gf_form_view` VALUES("21207", "3", "2015-11-20 14:09:36", "66.249.74.106", "82");
INSERT INTO `wp_gf_form_view` VALUES("21208", "8", "2015-11-20 14:09:36", "66.249.74.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("21209", "3", "2015-11-20 15:13:32", "68.180.229.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("21210", "8", "2015-11-20 15:13:32", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("21211", "3", "2015-11-20 16:06:14", "178.137.161.6", "87");
INSERT INTO `wp_gf_form_view` VALUES("21212", "8", "2015-11-20 16:06:14", "178.137.161.6", "25");
INSERT INTO `wp_gf_form_view` VALUES("21213", "1", "2015-11-20 16:17:19", "52.24.143.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("21214", "3", "2015-11-20 17:16:54", "207.46.13.120", "26");
INSERT INTO `wp_gf_form_view` VALUES("21215", "8", "2015-11-20 17:16:54", "207.46.13.120", "6");
INSERT INTO `wp_gf_form_view` VALUES("21216", "3", "2015-11-20 18:07:54", "202.46.51.25", "11");
INSERT INTO `wp_gf_form_view` VALUES("21217", "8", "2015-11-20 18:07:55", "202.46.51.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("21218", "3", "2015-11-20 19:18:47", "202.46.49.206", "35");
INSERT INTO `wp_gf_form_view` VALUES("21219", "8", "2015-11-20 19:18:49", "202.46.49.206", "8");
INSERT INTO `wp_gf_form_view` VALUES("21220", "3", "2015-11-20 20:08:54", "74.203.107.160", "25");
INSERT INTO `wp_gf_form_view` VALUES("21221", "8", "2015-11-20 20:08:54", "74.203.107.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("21222", "1", "2015-11-20 20:33:37", "67.21.34.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("21223", "3", "2015-11-20 21:02:53", "68.180.229.161", "100");
INSERT INTO `wp_gf_form_view` VALUES("21224", "8", "2015-11-20 21:02:53", "68.180.229.161", "26");
INSERT INTO `wp_gf_form_view` VALUES("21225", "1", "2015-11-20 21:23:24", "195.154.185.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("21226", "3", "2015-11-20 22:05:12", "202.46.53.156", "50");
INSERT INTO `wp_gf_form_view` VALUES("21227", "8", "2015-11-20 22:05:12", "202.46.53.156", "15");
INSERT INTO `wp_gf_form_view` VALUES("21228", "3", "2015-11-20 23:03:17", "66.249.74.104", "71");
INSERT INTO `wp_gf_form_view` VALUES("21229", "8", "2015-11-20 23:03:17", "66.249.74.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("21230", "3", "2015-11-21 00:02:06", "202.46.50.135", "38");
INSERT INTO `wp_gf_form_view` VALUES("21231", "8", "2015-11-21 00:02:06", "202.46.50.135", "12");
INSERT INTO `wp_gf_form_view` VALUES("21232", "3", "2015-11-21 01:00:38", "202.46.52.170", "32");
INSERT INTO `wp_gf_form_view` VALUES("21233", "8", "2015-11-21 01:00:39", "202.46.52.170", "8");
INSERT INTO `wp_gf_form_view` VALUES("21234", "3", "2015-11-21 02:17:38", "202.46.53.190", "55");
INSERT INTO `wp_gf_form_view` VALUES("21235", "8", "2015-11-21 02:17:39", "202.46.53.190", "13");
INSERT INTO `wp_gf_form_view` VALUES("21236", "3", "2015-11-21 03:04:26", "202.46.53.196", "41");
INSERT INTO `wp_gf_form_view` VALUES("21237", "8", "2015-11-21 03:04:26", "202.46.53.196", "10");
INSERT INTO `wp_gf_form_view` VALUES("21238", "3", "2015-11-21 04:00:52", "178.137.94.14", "74");
INSERT INTO `wp_gf_form_view` VALUES("21239", "8", "2015-11-21 04:00:52", "178.137.94.14", "20");
INSERT INTO `wp_gf_form_view` VALUES("21240", "1", "2015-11-21 04:14:04", "45.62.47.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("21241", "3", "2015-11-21 05:08:47", "202.46.51.106", "72");
INSERT INTO `wp_gf_form_view` VALUES("21242", "8", "2015-11-21 05:08:47", "202.46.51.106", "19");
INSERT INTO `wp_gf_form_view` VALUES("21243", "1", "2015-11-21 05:28:17", "5.153.237.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("21244", "3", "2015-11-21 06:27:01", "202.46.49.153", "7");
INSERT INTO `wp_gf_form_view` VALUES("21245", "8", "2015-11-21 06:27:02", "202.46.49.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("21246", "3", "2015-11-21 07:15:59", "202.46.52.100", "16");
INSERT INTO `wp_gf_form_view` VALUES("21247", "8", "2015-11-21 07:16:00", "202.46.52.100", "5");
INSERT INTO `wp_gf_form_view` VALUES("21248", "3", "2015-11-21 08:02:41", "202.46.58.12", "21");
INSERT INTO `wp_gf_form_view` VALUES("21249", "8", "2015-11-21 08:02:41", "202.46.58.12", "5");
INSERT INTO `wp_gf_form_view` VALUES("21250", "3", "2015-11-21 09:18:37", "202.46.58.18", "15");
INSERT INTO `wp_gf_form_view` VALUES("21251", "8", "2015-11-21 09:18:37", "202.46.58.18", "4");
INSERT INTO `wp_gf_form_view` VALUES("21252", "3", "2015-11-21 10:09:08", "62.210.122.172", "47");
INSERT INTO `wp_gf_form_view` VALUES("21253", "8", "2015-11-21 10:09:09", "62.210.122.172", "12");
INSERT INTO `wp_gf_form_view` VALUES("21254", "3", "2015-11-21 11:21:07", "155.94.208.141", "44");
INSERT INTO `wp_gf_form_view` VALUES("21255", "8", "2015-11-21 11:21:08", "155.94.208.141", "11");
INSERT INTO `wp_gf_form_view` VALUES("21256", "3", "2015-11-21 12:00:26", "202.46.56.95", "40");
INSERT INTO `wp_gf_form_view` VALUES("21257", "8", "2015-11-21 12:00:26", "202.46.56.95", "12");
INSERT INTO `wp_gf_form_view` VALUES("21258", "3", "2015-11-21 13:00:56", "5.9.17.118", "65");
INSERT INTO `wp_gf_form_view` VALUES("21259", "8", "2015-11-21 13:00:56", "5.9.17.118", "17");
INSERT INTO `wp_gf_form_view` VALUES("21260", "1", "2015-11-21 13:55:49", "91.219.137.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("21261", "3", "2015-11-21 14:08:00", "68.180.229.161", "22");
INSERT INTO `wp_gf_form_view` VALUES("21262", "8", "2015-11-21 14:08:00", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("21263", "3", "2015-11-21 15:00:12", "62.210.162.184", "24");
INSERT INTO `wp_gf_form_view` VALUES("21264", "8", "2015-11-21 15:00:12", "62.210.162.184", "6");
INSERT INTO `wp_gf_form_view` VALUES("21265", "8", "2015-11-21 16:05:34", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("21266", "3", "2015-11-21 16:17:20", "62.210.122.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("21267", "3", "2015-11-21 17:18:09", "40.77.167.55", "38");
INSERT INTO `wp_gf_form_view` VALUES("21268", "8", "2015-11-21 17:18:11", "40.77.167.55", "10");
INSERT INTO `wp_gf_form_view` VALUES("21269", "3", "2015-11-21 19:02:28", "40.77.167.55", "53");
INSERT INTO `wp_gf_form_view` VALUES("21270", "8", "2015-11-21 19:02:29", "40.77.167.55", "12");
INSERT INTO `wp_gf_form_view` VALUES("21271", "1", "2015-11-21 19:51:43", "37.203.212.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("21272", "3", "2015-11-21 20:04:31", "46.246.42.46", "50");
INSERT INTO `wp_gf_form_view` VALUES("21273", "8", "2015-11-21 20:04:31", "46.246.42.46", "15");
INSERT INTO `wp_gf_form_view` VALUES("21274", "3", "2015-11-21 21:27:16", "151.80.31.114", "25");
INSERT INTO `wp_gf_form_view` VALUES("21275", "8", "2015-11-21 21:27:18", "151.80.31.114", "6");
INSERT INTO `wp_gf_form_view` VALUES("21276", "1", "2015-11-21 21:54:50", "178.175.184.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("21277", "1", "2015-11-21 22:34:13", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21278", "3", "2015-11-21 22:34:15", "91.200.12.138", "26");
INSERT INTO `wp_gf_form_view` VALUES("21279", "8", "2015-11-21 22:34:15", "91.200.12.138", "7");
INSERT INTO `wp_gf_form_view` VALUES("21280", "3", "2015-11-21 23:13:20", "46.118.119.48", "35");
INSERT INTO `wp_gf_form_view` VALUES("21281", "3", "2015-11-21 23:13:20", "46.118.119.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("21282", "3", "2015-11-21 23:13:21", "46.118.119.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("21283", "8", "2015-11-21 23:13:21", "46.118.119.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("21284", "8", "2015-11-21 23:13:21", "46.118.119.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("21285", "8", "2015-11-21 23:13:21", "46.118.119.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("21286", "1", "2015-11-21 23:58:43", "198.23.216.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("21287", "3", "2015-11-22 00:11:42", "96.50.29.203", "12");
INSERT INTO `wp_gf_form_view` VALUES("21288", "8", "2015-11-22 00:11:43", "96.50.29.203", "3");
INSERT INTO `wp_gf_form_view` VALUES("21289", "3", "2015-11-22 01:32:53", "64.180.73.10", "74");
INSERT INTO `wp_gf_form_view` VALUES("21290", "8", "2015-11-22 01:32:54", "64.180.73.10", "17");
INSERT INTO `wp_gf_form_view` VALUES("21291", "3", "2015-11-22 02:07:53", "195.154.226.90", "57");
INSERT INTO `wp_gf_form_view` VALUES("21292", "8", "2015-11-22 02:07:53", "195.154.226.90", "14");
INSERT INTO `wp_gf_form_view` VALUES("21293", "1", "2015-11-22 02:35:05", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21294", "2", "2015-11-22 02:35:06", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21295", "3", "2015-11-22 03:02:08", "157.55.39.22", "28");
INSERT INTO `wp_gf_form_view` VALUES("21296", "8", "2015-11-22 03:02:08", "157.55.39.22", "7");
INSERT INTO `wp_gf_form_view` VALUES("21297", "1", "2015-11-22 03:16:49", "195.154.185.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("21298", "3", "2015-11-22 04:10:33", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21299", "3", "2015-11-22 05:12:02", "62.210.162.184", "20");
INSERT INTO `wp_gf_form_view` VALUES("21300", "8", "2015-11-22 05:12:03", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("21301", "1", "2015-11-22 05:28:20", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21302", "3", "2015-11-22 06:25:02", "167.114.199.80", "8");
INSERT INTO `wp_gf_form_view` VALUES("21303", "8", "2015-11-22 06:25:02", "167.114.199.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("21304", "1", "2015-11-22 07:12:02", "157.55.39.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("21305", "3", "2015-11-22 07:12:02", "157.55.39.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("21306", "8", "2015-11-22 07:12:02", "157.55.39.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("21307", "3", "2015-11-22 09:03:37", "68.180.229.161", "60");
INSERT INTO `wp_gf_form_view` VALUES("21308", "8", "2015-11-22 09:03:43", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("21309", "2", "2015-11-22 10:20:24", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("21310", "3", "2015-11-22 10:20:24", "91.200.12.138", "26");
INSERT INTO `wp_gf_form_view` VALUES("21311", "8", "2015-11-22 10:20:24", "91.200.12.138", "7");
INSERT INTO `wp_gf_form_view` VALUES("21312", "3", "2015-11-22 11:40:34", "62.210.162.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("21313", "8", "2015-11-22 11:40:35", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("21314", "3", "2015-11-22 12:15:15", "5.175.135.10", "17");
INSERT INTO `wp_gf_form_view` VALUES("21315", "8", "2015-11-22 12:15:17", "5.175.135.10", "5");
INSERT INTO `wp_gf_form_view` VALUES("21316", "1", "2015-11-22 12:48:11", "64.110.135.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("21317", "3", "2015-11-22 13:25:43", "62.210.162.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("21318", "8", "2015-11-22 13:25:45", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("21319", "3", "2015-11-22 14:14:44", "157.55.39.171", "4");
INSERT INTO `wp_gf_form_view` VALUES("21320", "8", "2015-11-22 14:14:45", "157.55.39.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("21321", "3", "2015-11-22 15:05:58", "62.210.162.184", "38");
INSERT INTO `wp_gf_form_view` VALUES("21322", "8", "2015-11-22 15:06:00", "62.210.162.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("21323", "1", "2015-11-22 15:20:47", "178.175.184.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("21324", "3", "2015-11-22 16:21:03", "66.43.57.8", "21");
INSERT INTO `wp_gf_form_view` VALUES("21325", "8", "2015-11-22 16:21:03", "66.43.57.8", "6");
INSERT INTO `wp_gf_form_view` VALUES("21326", "3", "2015-11-22 17:00:28", "202.46.48.210", "40");
INSERT INTO `wp_gf_form_view` VALUES("21327", "8", "2015-11-22 17:00:28", "202.46.48.210", "11");
INSERT INTO `wp_gf_form_view` VALUES("21328", "3", "2015-11-22 18:12:36", "40.77.167.70", "20");
INSERT INTO `wp_gf_form_view` VALUES("21329", "8", "2015-11-22 18:12:36", "40.77.167.70", "4");
INSERT INTO `wp_gf_form_view` VALUES("21330", "3", "2015-11-22 19:09:15", "202.46.49.198", "25");
INSERT INTO `wp_gf_form_view` VALUES("21331", "8", "2015-11-22 19:09:15", "202.46.49.198", "8");
INSERT INTO `wp_gf_form_view` VALUES("21332", "3", "2015-11-22 20:07:48", "202.46.55.146", "49");
INSERT INTO `wp_gf_form_view` VALUES("21333", "8", "2015-11-22 20:07:49", "202.46.55.146", "12");
INSERT INTO `wp_gf_form_view` VALUES("21334", "1", "2015-11-22 20:40:24", "96.93.118.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("21335", "3", "2015-11-22 21:04:29", "207.46.13.0", "53");
INSERT INTO `wp_gf_form_view` VALUES("21336", "8", "2015-11-22 21:04:29", "207.46.13.0", "13");
INSERT INTO `wp_gf_form_view` VALUES("21337", "1", "2015-11-22 21:16:51", "138.128.111.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("21338", "3", "2015-11-22 22:06:19", "91.200.12.39", "50");
INSERT INTO `wp_gf_form_view` VALUES("21339", "8", "2015-11-22 22:06:19", "91.200.12.39", "13");
INSERT INTO `wp_gf_form_view` VALUES("21340", "1", "2015-11-22 22:15:20", "188.208.218.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("21341", "3", "2015-11-22 23:03:44", "202.46.51.24", "28");
INSERT INTO `wp_gf_form_view` VALUES("21342", "8", "2015-11-22 23:03:44", "202.46.51.24", "7");
INSERT INTO `wp_gf_form_view` VALUES("21343", "3", "2015-11-23 00:00:12", "70.35.197.92", "146");
INSERT INTO `wp_gf_form_view` VALUES("21344", "8", "2015-11-23 00:00:12", "70.35.197.92", "36");
INSERT INTO `wp_gf_form_view` VALUES("21345", "1", "2015-11-23 00:00:48", "70.35.197.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("21346", "2", "2015-11-23 00:00:54", "70.35.197.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("21347", "3", "2015-11-23 01:00:49", "202.46.53.56", "42");
INSERT INTO `wp_gf_form_view` VALUES("21348", "8", "2015-11-23 01:00:49", "202.46.53.56", "11");
INSERT INTO `wp_gf_form_view` VALUES("21349", "3", "2015-11-23 02:10:49", "202.46.58.192", "28");
INSERT INTO `wp_gf_form_view` VALUES("21350", "8", "2015-11-23 02:10:49", "202.46.58.192", "8");
INSERT INTO `wp_gf_form_view` VALUES("21351", "3", "2015-11-23 03:09:21", "202.46.51.186", "22");
INSERT INTO `wp_gf_form_view` VALUES("21352", "8", "2015-11-23 03:09:22", "202.46.51.186", "6");
INSERT INTO `wp_gf_form_view` VALUES("21353", "3", "2015-11-23 04:19:59", "202.46.56.142", "46");
INSERT INTO `wp_gf_form_view` VALUES("21354", "8", "2015-11-23 04:19:59", "202.46.56.142", "12");
INSERT INTO `wp_gf_form_view` VALUES("21355", "3", "2015-11-23 05:06:09", "157.55.39.204", "30");
INSERT INTO `wp_gf_form_view` VALUES("21356", "8", "2015-11-23 05:06:09", "157.55.39.204", "6");
INSERT INTO `wp_gf_form_view` VALUES("21357", "3", "2015-11-23 06:01:53", "68.180.229.161", "75");
INSERT INTO `wp_gf_form_view` VALUES("21358", "8", "2015-11-23 06:01:53", "68.180.229.161", "19");
INSERT INTO `wp_gf_form_view` VALUES("21359", "2", "2015-11-23 06:38:05", "74.14.21.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("21360", "3", "2015-11-23 07:08:21", "202.46.54.187", "22");
INSERT INTO `wp_gf_form_view` VALUES("21361", "8", "2015-11-23 07:08:22", "202.46.54.187", "6");
INSERT INTO `wp_gf_form_view` VALUES("21362", "3", "2015-11-23 08:08:00", "202.46.50.82", "35");
INSERT INTO `wp_gf_form_view` VALUES("21363", "8", "2015-11-23 08:08:01", "202.46.50.82", "11");
INSERT INTO `wp_gf_form_view` VALUES("21364", "1", "2015-11-23 08:55:57", "198.97.37.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("21365", "8", "2015-11-23 09:03:15", "68.180.229.161", "18");
INSERT INTO `wp_gf_form_view` VALUES("21366", "3", "2015-11-23 09:03:17", "68.180.229.161", "66");
INSERT INTO `wp_gf_form_view` VALUES("21367", "1", "2015-11-23 09:09:02", "5.157.15.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("21368", "3", "2015-11-23 10:03:48", "202.46.56.209", "86");
INSERT INTO `wp_gf_form_view` VALUES("21369", "8", "2015-11-23 10:03:50", "202.46.56.209", "20");
INSERT INTO `wp_gf_form_view` VALUES("21370", "3", "2015-11-23 11:09:13", "202.46.51.191", "31");
INSERT INTO `wp_gf_form_view` VALUES("21371", "8", "2015-11-23 11:09:13", "202.46.51.191", "9");
INSERT INTO `wp_gf_form_view` VALUES("21372", "3", "2015-11-23 12:01:34", "172.245.134.131", "25");
INSERT INTO `wp_gf_form_view` VALUES("21373", "8", "2015-11-23 12:01:34", "172.245.134.131", "7");
INSERT INTO `wp_gf_form_view` VALUES("21374", "3", "2015-11-23 13:03:32", "68.180.229.161", "74");
INSERT INTO `wp_gf_form_view` VALUES("21375", "8", "2015-11-23 13:03:32", "68.180.229.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("21376", "1", "2015-11-23 13:20:23", "209.133.66.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("21377", "3", "2015-11-23 14:00:21", "66.249.66.81", "27");
INSERT INTO `wp_gf_form_view` VALUES("21378", "8", "2015-11-23 14:00:22", "66.249.66.81", "7");
INSERT INTO `wp_gf_form_view` VALUES("21379", "8", "2015-11-23 15:17:55", "202.46.58.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("21380", "3", "2015-11-23 15:17:57", "202.46.58.73", "31");
INSERT INTO `wp_gf_form_view` VALUES("21381", "3", "2015-11-23 16:00:20", "24.68.68.82", "31");
INSERT INTO `wp_gf_form_view` VALUES("21382", "8", "2015-11-23 16:00:20", "24.68.68.82", "7");
INSERT INTO `wp_gf_form_view` VALUES("21383", "3", "2015-11-23 17:36:26", "66.249.66.78", "8");
INSERT INTO `wp_gf_form_view` VALUES("21384", "8", "2015-11-23 17:36:35", "66.249.66.78", "2");
INSERT INTO `wp_gf_form_view` VALUES("21385", "8", "2015-11-23 18:04:01", "96.50.93.42", "11");
INSERT INTO `wp_gf_form_view` VALUES("21386", "3", "2015-11-23 18:04:01", "96.50.93.42", "28");
INSERT INTO `wp_gf_form_view` VALUES("21387", "3", "2015-11-23 19:07:25", "64.114.18.129", "74");
INSERT INTO `wp_gf_form_view` VALUES("21388", "8", "2015-11-23 19:07:27", "64.114.18.129", "19");
INSERT INTO `wp_gf_form_view` VALUES("21389", "1", "2015-11-23 19:36:24", "142.104.151.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("21390", "1", "2015-11-23 20:13:05", "195.154.185.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("21391", "3", "2015-11-23 20:13:05", "195.154.185.57", "19");
INSERT INTO `wp_gf_form_view` VALUES("21392", "8", "2015-11-23 20:13:05", "195.154.185.57", "5");
INSERT INTO `wp_gf_form_view` VALUES("21393", "3", "2015-11-23 21:24:03", "40.77.167.24", "102");
INSERT INTO `wp_gf_form_view` VALUES("21394", "8", "2015-11-23 21:24:04", "40.77.167.24", "25");
INSERT INTO `wp_gf_form_view` VALUES("21395", "1", "2015-11-23 21:31:11", "138.128.46.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("21396", "9", "2015-11-23 21:31:49", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21397", "2", "2015-11-23 21:39:45", "45.55.229.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("21398", "3", "2015-11-23 22:52:14", "64.114.18.129", "15");
INSERT INTO `wp_gf_form_view` VALUES("21399", "8", "2015-11-23 22:52:17", "64.114.18.129", "5");
INSERT INTO `wp_gf_form_view` VALUES("21400", "3", "2015-11-23 23:21:44", "207.46.13.102", "78");
INSERT INTO `wp_gf_form_view` VALUES("21401", "8", "2015-11-23 23:21:44", "207.46.13.102", "19");
INSERT INTO `wp_gf_form_view` VALUES("21402", "1", "2015-11-23 23:49:17", "216.158.202.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("21403", "3", "2015-11-24 00:26:04", "24.108.100.128", "40");
INSERT INTO `wp_gf_form_view` VALUES("21404", "8", "2015-11-24 00:26:04", "24.108.100.128", "10");
INSERT INTO `wp_gf_form_view` VALUES("21405", "3", "2015-11-24 01:20:40", "95.79.36.111", "37");
INSERT INTO `wp_gf_form_view` VALUES("21406", "8", "2015-11-24 01:20:40", "95.79.36.111", "9");
INSERT INTO `wp_gf_form_view` VALUES("21407", "1", "2015-11-24 01:23:50", "155.94.221.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("21408", "3", "2015-11-24 02:25:05", "66.249.74.102", "35");
INSERT INTO `wp_gf_form_view` VALUES("21409", "8", "2015-11-24 02:25:05", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("21410", "1", "2015-11-24 02:36:06", "213.184.105.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("21411", "8", "2015-11-24 03:07:37", "5.9.140.208", "3");
INSERT INTO `wp_gf_form_view` VALUES("21412", "3", "2015-11-24 03:07:38", "5.9.140.208", "9");
INSERT INTO `wp_gf_form_view` VALUES("21413", "3", "2015-11-24 04:34:27", "192.210.226.126", "67");
INSERT INTO `wp_gf_form_view` VALUES("21414", "8", "2015-11-24 04:34:29", "192.210.226.126", "14");
INSERT INTO `wp_gf_form_view` VALUES("21415", "3", "2015-11-24 05:08:15", "45.57.140.40", "65");
INSERT INTO `wp_gf_form_view` VALUES("21416", "8", "2015-11-24 05:08:15", "45.57.140.40", "15");
INSERT INTO `wp_gf_form_view` VALUES("21417", "3", "2015-11-24 06:20:22", "62.210.162.184", "32");
INSERT INTO `wp_gf_form_view` VALUES("21418", "8", "2015-11-24 06:20:23", "62.210.162.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("21419", "3", "2015-11-24 07:00:37", "23.94.251.211", "9");
INSERT INTO `wp_gf_form_view` VALUES("21420", "8", "2015-11-24 07:00:37", "23.94.251.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("21421", "3", "2015-11-24 08:01:51", "62.210.162.184", "38");
INSERT INTO `wp_gf_form_view` VALUES("21422", "8", "2015-11-24 08:01:53", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("21423", "3", "2015-11-24 09:31:38", "66.249.74.104", "128");
INSERT INTO `wp_gf_form_view` VALUES("21424", "8", "2015-11-24 09:31:41", "66.249.74.104", "32");
INSERT INTO `wp_gf_form_view` VALUES("21425", "2", "2015-11-24 09:57:22", "103.60.176.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21426", "1", "2015-11-24 09:57:24", "103.60.176.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21427", "3", "2015-11-24 10:00:01", "103.60.176.6", "84");
INSERT INTO `wp_gf_form_view` VALUES("21428", "8", "2015-11-24 10:00:01", "103.60.176.6", "21");
INSERT INTO `wp_gf_form_view` VALUES("21429", "1", "2015-11-24 10:35:38", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21430", "3", "2015-11-24 11:26:01", "86.106.18.11", "41");
INSERT INTO `wp_gf_form_view` VALUES("21431", "8", "2015-11-24 11:26:04", "86.106.18.11", "10");
INSERT INTO `wp_gf_form_view` VALUES("21432", "3", "2015-11-24 12:08:50", "207.46.13.82", "8");
INSERT INTO `wp_gf_form_view` VALUES("21433", "8", "2015-11-24 12:08:50", "207.46.13.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("21434", "1", "2015-11-24 13:15:20", "195.154.250.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("21435", "3", "2015-11-24 13:15:23", "195.154.250.39", "16");
INSERT INTO `wp_gf_form_view` VALUES("21436", "8", "2015-11-24 13:15:24", "195.154.250.39", "5");
INSERT INTO `wp_gf_form_view` VALUES("21437", "3", "2015-11-24 14:42:26", "91.200.12.25", "45");
INSERT INTO `wp_gf_form_view` VALUES("21438", "8", "2015-11-24 14:42:28", "91.200.12.25", "12");
INSERT INTO `wp_gf_form_view` VALUES("21439", "1", "2015-11-24 14:50:22", "23.250.54.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("21440", "3", "2015-11-24 15:21:01", "68.180.229.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("21441", "8", "2015-11-24 15:21:02", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("21442", "3", "2015-11-24 16:27:18", "202.46.55.68", "25");
INSERT INTO `wp_gf_form_view` VALUES("21443", "8", "2015-11-24 16:27:20", "202.46.55.68", "5");
INSERT INTO `wp_gf_form_view` VALUES("21444", "3", "2015-11-24 17:02:25", "202.46.58.55", "21");
INSERT INTO `wp_gf_form_view` VALUES("21445", "8", "2015-11-24 17:02:26", "202.46.58.55", "5");
INSERT INTO `wp_gf_form_view` VALUES("21446", "3", "2015-11-24 18:26:16", "202.46.56.201", "231");
INSERT INTO `wp_gf_form_view` VALUES("21447", "8", "2015-11-24 18:26:33", "202.46.56.201", "58");
INSERT INTO `wp_gf_form_view` VALUES("21448", "2", "2015-11-24 18:56:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("21449", "1", "2015-11-24 18:56:33", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("21450", "3", "2015-11-24 19:00:15", "5.9.98.130", "2391");
INSERT INTO `wp_gf_form_view` VALUES("21451", "8", "2015-11-24 19:00:16", "5.9.98.130", "702");
INSERT INTO `wp_gf_form_view` VALUES("21452", "5", "2015-11-24 19:01:18", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("21453", "9", "2015-11-24 19:04:14", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("21454", "6", "2015-11-24 19:08:01", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("21455", "3", "2015-11-24 20:10:49", "202.46.58.186", "2316");
INSERT INTO `wp_gf_form_view` VALUES("21456", "8", "2015-11-24 20:10:50", "202.46.58.186", "691");
INSERT INTO `wp_gf_form_view` VALUES("21457", "3", "2015-11-24 21:10:50", "202.46.56.33", "1416");
INSERT INTO `wp_gf_form_view` VALUES("21458", "8", "2015-11-24 21:10:51", "202.46.56.33", "342");
INSERT INTO `wp_gf_form_view` VALUES("21459", "3", "2015-11-24 22:00:01", "5.9.98.130", "3286");
INSERT INTO `wp_gf_form_view` VALUES("21460", "8", "2015-11-24 22:00:01", "5.9.98.130", "1058");
INSERT INTO `wp_gf_form_view` VALUES("21461", "1", "2015-11-24 23:02:24", "93.73.228.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("21462", "3", "2015-11-24 23:02:29", "93.73.228.130", "25");
INSERT INTO `wp_gf_form_view` VALUES("21463", "8", "2015-11-24 23:02:32", "93.73.228.130", "6");
INSERT INTO `wp_gf_form_view` VALUES("21464", "8", "2015-11-25 00:11:17", "24.108.110.58", "639");
INSERT INTO `wp_gf_form_view` VALUES("21465", "3", "2015-11-25 00:11:19", "24.108.110.58", "2693");
INSERT INTO `wp_gf_form_view` VALUES("21466", "3", "2015-11-25 01:00:02", "5.9.98.130", "3778");
INSERT INTO `wp_gf_form_view` VALUES("21467", "8", "2015-11-25 01:00:02", "5.9.98.130", "920");
INSERT INTO `wp_gf_form_view` VALUES("21468", "8", "2015-11-25 02:00:01", "5.9.98.130", "1209");
INSERT INTO `wp_gf_form_view` VALUES("21469", "3", "2015-11-25 02:00:01", "5.9.98.130", "2827");
INSERT INTO `wp_gf_form_view` VALUES("21470", "3", "2015-11-25 03:35:06", "202.46.50.84", "22");
INSERT INTO `wp_gf_form_view` VALUES("21471", "8", "2015-11-25 03:35:10", "202.46.50.84", "7");
INSERT INTO `wp_gf_form_view` VALUES("21472", "3", "2015-11-25 04:01:08", "5.9.98.130", "53");
INSERT INTO `wp_gf_form_view` VALUES("21473", "8", "2015-11-25 04:01:08", "5.9.98.130", "14");
INSERT INTO `wp_gf_form_view` VALUES("21474", "9", "2015-11-25 04:01:21", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("21475", "8", "2015-11-25 05:00:42", "69.30.214.38", "24");
INSERT INTO `wp_gf_form_view` VALUES("21476", "3", "2015-11-25 05:00:50", "69.30.214.38", "84");
INSERT INTO `wp_gf_form_view` VALUES("21477", "1", "2015-11-25 05:31:54", "24.68.38.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("21478", "3", "2015-11-25 06:00:22", "202.46.51.103", "71");
INSERT INTO `wp_gf_form_view` VALUES("21479", "8", "2015-11-25 06:00:22", "202.46.51.103", "17");
INSERT INTO `wp_gf_form_view` VALUES("21480", "3", "2015-11-25 07:12:16", "202.46.51.110", "45");
INSERT INTO `wp_gf_form_view` VALUES("21481", "8", "2015-11-25 07:12:16", "202.46.51.110", "13");
INSERT INTO `wp_gf_form_view` VALUES("21482", "3", "2015-11-25 08:02:44", "66.249.74.104", "43");
INSERT INTO `wp_gf_form_view` VALUES("21483", "8", "2015-11-25 08:02:45", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("21484", "3", "2015-11-25 09:00:07", "202.46.52.60", "38");
INSERT INTO `wp_gf_form_view` VALUES("21485", "8", "2015-11-25 09:00:07", "202.46.52.60", "12");
INSERT INTO `wp_gf_form_view` VALUES("21486", "3", "2015-11-25 10:14:32", "202.46.51.193", "20");
INSERT INTO `wp_gf_form_view` VALUES("21487", "8", "2015-11-25 10:14:32", "202.46.51.193", "6");
INSERT INTO `wp_gf_form_view` VALUES("21488", "3", "2015-11-25 11:06:40", "207.46.13.120", "41");
INSERT INTO `wp_gf_form_view` VALUES("21489", "8", "2015-11-25 11:06:40", "207.46.13.120", "11");
INSERT INTO `wp_gf_form_view` VALUES("21490", "3", "2015-11-25 12:01:31", "178.137.89.181", "48");
INSERT INTO `wp_gf_form_view` VALUES("21491", "8", "2015-11-25 12:01:31", "178.137.89.181", "12");
INSERT INTO `wp_gf_form_view` VALUES("21492", "3", "2015-11-25 13:09:12", "202.46.49.145", "14");
INSERT INTO `wp_gf_form_view` VALUES("21493", "8", "2015-11-25 13:09:12", "202.46.49.145", "4");
INSERT INTO `wp_gf_form_view` VALUES("21494", "3", "2015-11-25 14:02:12", "202.46.53.17", "30");
INSERT INTO `wp_gf_form_view` VALUES("21495", "8", "2015-11-25 14:02:12", "202.46.53.17", "9");
INSERT INTO `wp_gf_form_view` VALUES("21496", "3", "2015-11-25 15:08:58", "24.108.136.68", "94");
INSERT INTO `wp_gf_form_view` VALUES("21497", "8", "2015-11-25 15:08:59", "24.108.136.68", "23");
INSERT INTO `wp_gf_form_view` VALUES("21498", "3", "2015-11-25 16:14:02", "5.249.164.114", "37");
INSERT INTO `wp_gf_form_view` VALUES("21499", "8", "2015-11-25 16:14:02", "5.249.164.114", "9");
INSERT INTO `wp_gf_form_view` VALUES("21500", "3", "2015-11-25 17:16:57", "68.180.229.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("21501", "8", "2015-11-25 17:16:57", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("21502", "8", "2015-11-25 18:06:29", "64.114.222.252", "17");
INSERT INTO `wp_gf_form_view` VALUES("21503", "3", "2015-11-25 18:12:09", "178.137.89.181", "60");
INSERT INTO `wp_gf_form_view` VALUES("21504", "3", "2015-11-25 19:42:11", "24.68.6.182", "21");
INSERT INTO `wp_gf_form_view` VALUES("21505", "8", "2015-11-25 19:42:13", "24.68.6.182", "6");
INSERT INTO `wp_gf_form_view` VALUES("21506", "3", "2015-11-25 20:42:09", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("21507", "8", "2015-11-25 20:42:10", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21508", "3", "2015-11-25 21:00:17", "46.118.119.48", "34");
INSERT INTO `wp_gf_form_view` VALUES("21509", "8", "2015-11-25 21:00:18", "46.118.119.48", "8");
INSERT INTO `wp_gf_form_view` VALUES("21510", "8", "2015-11-25 21:00:18", "46.118.119.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("21511", "1", "2015-11-25 21:49:20", "96.50.108.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("21512", "3", "2015-11-25 22:02:03", "207.194.133.9", "45");
INSERT INTO `wp_gf_form_view` VALUES("21513", "8", "2015-11-25 22:02:04", "207.194.133.9", "13");
INSERT INTO `wp_gf_form_view` VALUES("21514", "3", "2015-11-25 23:55:34", "207.46.13.82", "5");
INSERT INTO `wp_gf_form_view` VALUES("21515", "8", "2015-11-25 23:55:35", "207.46.13.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("21516", "3", "2015-11-26 00:03:35", "207.194.133.9", "29");
INSERT INTO `wp_gf_form_view` VALUES("21517", "8", "2015-11-26 00:03:35", "207.194.133.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("21518", "1", "2015-11-26 00:03:45", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("21519", "3", "2015-11-26 01:25:03", "40.77.167.78", "60");
INSERT INTO `wp_gf_form_view` VALUES("21520", "8", "2015-11-26 01:25:03", "40.77.167.78", "15");
INSERT INTO `wp_gf_form_view` VALUES("21521", "3", "2015-11-26 02:19:22", "104.200.154.10", "24");
INSERT INTO `wp_gf_form_view` VALUES("21522", "8", "2015-11-26 02:19:22", "104.200.154.10", "6");
INSERT INTO `wp_gf_form_view` VALUES("21523", "3", "2015-11-26 03:24:48", "207.46.13.120", "9");
INSERT INTO `wp_gf_form_view` VALUES("21524", "8", "2015-11-26 03:24:49", "207.46.13.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("21525", "7", "2015-11-26 05:12:27", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21526", "3", "2015-11-26 05:12:28", "134.249.159.6", "8");
INSERT INTO `wp_gf_form_view` VALUES("21527", "8", "2015-11-26 05:12:29", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21528", "9", "2015-11-26 06:32:55", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("21529", "3", "2015-11-26 06:32:55", "66.249.74.106", "32");
INSERT INTO `wp_gf_form_view` VALUES("21530", "8", "2015-11-26 06:32:56", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("21531", "3", "2015-11-26 07:02:40", "178.137.89.181", "18");
INSERT INTO `wp_gf_form_view` VALUES("21532", "8", "2015-11-26 07:02:40", "178.137.89.181", "4");
INSERT INTO `wp_gf_form_view` VALUES("21533", "8", "2015-11-26 08:12:00", "144.76.29.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("21534", "3", "2015-11-26 08:12:00", "144.76.29.162", "26");
INSERT INTO `wp_gf_form_view` VALUES("21535", "9", "2015-11-26 08:12:00", "144.76.29.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("21536", "3", "2015-11-26 09:07:51", "207.46.13.120", "25");
INSERT INTO `wp_gf_form_view` VALUES("21537", "8", "2015-11-26 09:07:51", "207.46.13.120", "6");
INSERT INTO `wp_gf_form_view` VALUES("21538", "1", "2015-11-26 09:59:46", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21539", "3", "2015-11-26 10:12:29", "207.46.13.88", "20");
INSERT INTO `wp_gf_form_view` VALUES("21540", "8", "2015-11-26 10:12:29", "207.46.13.88", "5");
INSERT INTO `wp_gf_form_view` VALUES("21541", "3", "2015-11-26 11:05:47", "207.46.13.120", "8");
INSERT INTO `wp_gf_form_view` VALUES("21542", "8", "2015-11-26 11:05:48", "207.46.13.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("21543", "3", "2015-11-26 12:25:10", "188.165.15.117", "12");
INSERT INTO `wp_gf_form_view` VALUES("21544", "8", "2015-11-26 12:25:10", "188.165.15.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("21545", "3", "2015-11-26 14:44:25", "207.46.13.88", "6");
INSERT INTO `wp_gf_form_view` VALUES("21546", "8", "2015-11-26 14:44:26", "207.46.13.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("21547", "3", "2015-11-26 15:24:33", "98.158.90.229", "32");
INSERT INTO `wp_gf_form_view` VALUES("21548", "8", "2015-11-26 15:24:34", "98.158.90.229", "8");
INSERT INTO `wp_gf_form_view` VALUES("21549", "3", "2015-11-26 16:00:41", "176.8.244.238", "107");
INSERT INTO `wp_gf_form_view` VALUES("21550", "3", "2015-11-26 16:00:41", "176.8.244.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("21551", "8", "2015-11-26 16:00:41", "176.8.244.238", "26");
INSERT INTO `wp_gf_form_view` VALUES("21552", "8", "2015-11-26 16:00:41", "176.8.244.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("21553", "1", "2015-11-26 16:21:20", "216.232.155.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("21554", "3", "2015-11-26 17:13:29", "91.200.12.39", "47");
INSERT INTO `wp_gf_form_view` VALUES("21555", "8", "2015-11-26 17:13:31", "91.200.12.39", "12");
INSERT INTO `wp_gf_form_view` VALUES("21556", "3", "2015-11-26 18:02:37", "66.249.74.104", "66");
INSERT INTO `wp_gf_form_view` VALUES("21557", "8", "2015-11-26 18:02:38", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("21558", "1", "2015-11-26 18:28:12", "192.99.166.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("21559", "3", "2015-11-26 19:01:25", "202.46.57.79", "35");
INSERT INTO `wp_gf_form_view` VALUES("21560", "8", "2015-11-26 19:01:25", "202.46.57.79", "18");
INSERT INTO `wp_gf_form_view` VALUES("21561", "3", "2015-11-26 20:22:31", "107.178.97.18", "119");
INSERT INTO `wp_gf_form_view` VALUES("21562", "8", "2015-11-26 20:22:33", "107.178.97.18", "60");
INSERT INTO `wp_gf_form_view` VALUES("21563", "2", "2015-11-26 20:22:42", "107.178.97.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("21564", "1", "2015-11-26 20:23:31", "107.178.97.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("21565", "8", "2015-11-26 21:07:37", "66.249.74.106", "15");
INSERT INTO `wp_gf_form_view` VALUES("21566", "3", "2015-11-26 21:07:37", "66.249.74.106", "27");
INSERT INTO `wp_gf_form_view` VALUES("21567", "1", "2015-11-26 21:24:36", "23.95.191.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("21568", "3", "2015-11-26 22:00:49", "96.50.4.48", "25");
INSERT INTO `wp_gf_form_view` VALUES("21569", "8", "2015-11-26 22:00:49", "96.50.4.48", "13");
INSERT INTO `wp_gf_form_view` VALUES("21570", "8", "2015-11-26 23:00:25", "202.46.58.92", "7");
INSERT INTO `wp_gf_form_view` VALUES("21571", "3", "2015-11-26 23:00:25", "202.46.58.92", "11");
INSERT INTO `wp_gf_form_view` VALUES("21572", "8", "2015-11-27 00:17:33", "202.46.54.117", "8");
INSERT INTO `wp_gf_form_view` VALUES("21573", "3", "2015-11-27 00:17:33", "202.46.54.117", "14");
INSERT INTO `wp_gf_form_view` VALUES("21574", "3", "2015-11-27 01:06:23", "46.246.42.46", "37");
INSERT INTO `wp_gf_form_view` VALUES("21575", "8", "2015-11-27 01:06:23", "46.246.42.46", "19");
INSERT INTO `wp_gf_form_view` VALUES("21576", "3", "2015-11-27 02:11:52", "202.46.50.164", "45");
INSERT INTO `wp_gf_form_view` VALUES("21577", "8", "2015-11-27 02:11:52", "202.46.50.164", "22");
INSERT INTO `wp_gf_form_view` VALUES("21578", "1", "2015-11-27 02:51:07", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("21579", "2", "2015-11-27 02:55:20", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("21580", "3", "2015-11-27 03:09:37", "154.20.196.21", "16");
INSERT INTO `wp_gf_form_view` VALUES("21581", "8", "2015-11-27 03:09:37", "154.20.196.21", "8");
INSERT INTO `wp_gf_form_view` VALUES("21582", "3", "2015-11-27 04:01:50", "202.46.57.26", "33");
INSERT INTO `wp_gf_form_view` VALUES("21583", "8", "2015-11-27 04:01:50", "202.46.57.26", "17");
INSERT INTO `wp_gf_form_view` VALUES("21584", "1", "2015-11-27 05:32:00", "192.241.106.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("21585", "3", "2015-11-27 05:32:01", "192.241.106.91", "4");
INSERT INTO `wp_gf_form_view` VALUES("21586", "8", "2015-11-27 05:32:02", "192.241.106.91", "3");
INSERT INTO `wp_gf_form_view` VALUES("21587", "8", "2015-11-27 06:09:36", "202.46.51.15", "18");
INSERT INTO `wp_gf_form_view` VALUES("21588", "3", "2015-11-27 06:09:37", "202.46.51.15", "37");
INSERT INTO `wp_gf_form_view` VALUES("21589", "3", "2015-11-27 07:23:14", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("21590", "8", "2015-11-27 07:23:18", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("21591", "8", "2015-11-27 08:05:31", "202.46.58.50", "12");
INSERT INTO `wp_gf_form_view` VALUES("21592", "3", "2015-11-27 08:05:31", "202.46.58.50", "23");
INSERT INTO `wp_gf_form_view` VALUES("21593", "1", "2015-11-27 08:06:32", "155.94.219.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("21594", "3", "2015-11-27 09:13:38", "46.118.119.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("21595", "8", "2015-11-27 09:13:39", "46.118.119.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("21596", "3", "2015-11-27 10:22:58", "178.150.15.176", "27");
INSERT INTO `wp_gf_form_view` VALUES("21597", "8", "2015-11-27 10:23:06", "178.150.15.176", "13");
INSERT INTO `wp_gf_form_view` VALUES("21598", "2", "2015-11-27 10:48:03", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("21599", "1", "2015-11-27 10:50:32", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("21600", "3", "2015-11-27 11:01:35", "207.46.13.88", "20");
INSERT INTO `wp_gf_form_view` VALUES("21601", "8", "2015-11-27 11:01:35", "207.46.13.88", "10");
INSERT INTO `wp_gf_form_view` VALUES("21602", "2", "2015-11-27 11:26:48", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("21603", "7", "2015-11-27 12:32:22", "207.46.13.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("21604", "3", "2015-11-27 12:32:27", "207.46.13.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("21605", "8", "2015-11-27 12:32:29", "207.46.13.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("21606", "3", "2015-11-27 13:32:50", "65.55.209.82", "8");
INSERT INTO `wp_gf_form_view` VALUES("21607", "8", "2015-11-27 13:32:51", "65.55.209.82", "5");
INSERT INTO `wp_gf_form_view` VALUES("21608", "2", "2015-11-27 13:32:55", "65.55.209.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("21609", "1", "2015-11-27 13:48:54", "192.186.156.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("21610", "1", "2015-11-27 14:39:04", "104.193.10.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("21611", "3", "2015-11-27 14:39:05", "104.193.10.45", "11");
INSERT INTO `wp_gf_form_view` VALUES("21612", "8", "2015-11-27 14:39:05", "104.193.10.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("21613", "3", "2015-11-27 16:08:02", "178.137.89.181", "21");
INSERT INTO `wp_gf_form_view` VALUES("21614", "3", "2015-11-27 16:08:02", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("21615", "8", "2015-11-27 16:08:03", "178.137.89.181", "10");
INSERT INTO `wp_gf_form_view` VALUES("21616", "8", "2015-11-27 16:08:03", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("21617", "3", "2015-11-27 17:33:40", "188.165.15.117", "8");
INSERT INTO `wp_gf_form_view` VALUES("21618", "8", "2015-11-27 17:33:40", "188.165.15.117", "4");
INSERT INTO `wp_gf_form_view` VALUES("21619", "3", "2015-11-27 18:35:23", "202.46.55.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("21620", "8", "2015-11-27 18:35:24", "202.46.55.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("21621", "1", "2015-11-27 19:02:28", "104.193.10.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("21622", "3", "2015-11-27 19:02:29", "104.193.10.45", "11");
INSERT INTO `wp_gf_form_view` VALUES("21623", "8", "2015-11-27 19:02:29", "104.193.10.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("21624", "3", "2015-11-27 20:02:43", "37.115.191.181", "35");
INSERT INTO `wp_gf_form_view` VALUES("21625", "3", "2015-11-27 20:02:43", "37.115.191.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("21626", "8", "2015-11-27 20:02:43", "37.115.191.181", "19");
INSERT INTO `wp_gf_form_view` VALUES("21627", "3", "2015-11-27 21:02:54", "202.46.56.200", "28");
INSERT INTO `wp_gf_form_view` VALUES("21628", "8", "2015-11-27 21:02:54", "202.46.56.200", "16");
INSERT INTO `wp_gf_form_view` VALUES("21629", "3", "2015-11-27 22:05:06", "202.46.58.153", "39");
INSERT INTO `wp_gf_form_view` VALUES("21630", "8", "2015-11-27 22:05:06", "202.46.58.153", "25");
INSERT INTO `wp_gf_form_view` VALUES("21631", "3", "2015-11-27 23:01:22", "202.46.48.16", "27");
INSERT INTO `wp_gf_form_view` VALUES("21632", "8", "2015-11-27 23:01:22", "202.46.48.16", "19");
INSERT INTO `wp_gf_form_view` VALUES("21633", "8", "2015-11-28 00:03:33", "202.46.50.184", "24");
INSERT INTO `wp_gf_form_view` VALUES("21634", "3", "2015-11-28 00:03:33", "202.46.50.184", "39");
INSERT INTO `wp_gf_form_view` VALUES("21635", "2", "2015-11-28 00:50:22", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("21636", "3", "2015-11-28 01:00:58", "202.46.52.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("21637", "8", "2015-11-28 01:00:58", "202.46.52.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("21638", "3", "2015-11-28 02:04:05", "202.46.52.79", "14");
INSERT INTO `wp_gf_form_view` VALUES("21639", "8", "2015-11-28 02:04:06", "202.46.52.79", "8");
INSERT INTO `wp_gf_form_view` VALUES("21640", "8", "2015-11-28 03:14:38", "202.46.56.136", "11");
INSERT INTO `wp_gf_form_view` VALUES("21641", "3", "2015-11-28 03:14:39", "202.46.56.136", "16");
INSERT INTO `wp_gf_form_view` VALUES("21642", "3", "2015-11-28 04:11:09", "202.46.51.26", "22");
INSERT INTO `wp_gf_form_view` VALUES("21643", "8", "2015-11-28 04:11:09", "202.46.51.26", "11");
INSERT INTO `wp_gf_form_view` VALUES("21644", "3", "2015-11-28 05:08:31", "24.244.23.144", "25");
INSERT INTO `wp_gf_form_view` VALUES("21645", "8", "2015-11-28 05:08:31", "24.244.23.144", "14");
INSERT INTO `wp_gf_form_view` VALUES("21646", "3", "2015-11-28 06:03:33", "202.46.52.150", "42");
INSERT INTO `wp_gf_form_view` VALUES("21647", "8", "2015-11-28 06:03:33", "202.46.52.150", "23");
INSERT INTO `wp_gf_form_view` VALUES("21648", "9", "2015-11-28 06:41:01", "51.254.130.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("21649", "1", "2015-11-28 06:43:58", "104.193.10.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("21650", "3", "2015-11-28 07:13:12", "66.249.74.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("21651", "8", "2015-11-28 07:13:13", "66.249.74.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("21652", "7", "2015-11-28 07:58:59", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21653", "5", "2015-11-28 07:59:48", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21654", "7", "2015-11-28 08:01:00", "134.249.159.6", "4");
INSERT INTO `wp_gf_form_view` VALUES("21655", "3", "2015-11-28 08:01:00", "134.249.159.6", "36");
INSERT INTO `wp_gf_form_view` VALUES("21656", "8", "2015-11-28 08:01:00", "134.249.159.6", "21");
INSERT INTO `wp_gf_form_view` VALUES("21657", "5", "2015-11-28 08:10:35", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21658", "1", "2015-11-28 08:31:00", "104.193.10.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("21659", "3", "2015-11-28 09:05:31", "66.249.74.104", "18");
INSERT INTO `wp_gf_form_view` VALUES("21660", "8", "2015-11-28 09:05:31", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("21661", "3", "2015-11-28 10:05:57", "66.249.74.102", "23");
INSERT INTO `wp_gf_form_view` VALUES("21662", "8", "2015-11-28 10:05:57", "66.249.74.102", "12");
INSERT INTO `wp_gf_form_view` VALUES("21663", "1", "2015-11-28 10:17:12", "104.254.212.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("21664", "3", "2015-11-28 11:10:01", "202.46.53.167", "11");
INSERT INTO `wp_gf_form_view` VALUES("21665", "8", "2015-11-28 11:10:01", "202.46.53.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("21666", "3", "2015-11-28 12:08:12", "202.46.57.78", "12");
INSERT INTO `wp_gf_form_view` VALUES("21667", "8", "2015-11-28 12:08:12", "202.46.57.78", "8");
INSERT INTO `wp_gf_form_view` VALUES("21668", "3", "2015-11-28 13:06:23", "202.46.52.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("21669", "8", "2015-11-28 13:06:23", "202.46.52.105", "5");
INSERT INTO `wp_gf_form_view` VALUES("21670", "3", "2015-11-28 14:01:50", "91.200.12.39", "14");
INSERT INTO `wp_gf_form_view` VALUES("21671", "8", "2015-11-28 14:01:50", "91.200.12.39", "9");
INSERT INTO `wp_gf_form_view` VALUES("21672", "3", "2015-11-28 15:02:44", "202.46.52.102", "13");
INSERT INTO `wp_gf_form_view` VALUES("21673", "8", "2015-11-28 15:02:45", "202.46.52.102", "9");
INSERT INTO `wp_gf_form_view` VALUES("21674", "3", "2015-11-28 16:00:56", "202.46.54.206", "16");
INSERT INTO `wp_gf_form_view` VALUES("21675", "8", "2015-11-28 16:00:56", "202.46.54.206", "7");
INSERT INTO `wp_gf_form_view` VALUES("21676", "3", "2015-11-28 17:19:30", "40.77.167.69", "10");
INSERT INTO `wp_gf_form_view` VALUES("21677", "8", "2015-11-28 17:19:30", "40.77.167.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("21678", "3", "2015-11-28 18:25:00", "66.249.74.106", "64");
INSERT INTO `wp_gf_form_view` VALUES("21679", "8", "2015-11-28 18:25:01", "66.249.74.106", "32");
INSERT INTO `wp_gf_form_view` VALUES("21680", "1", "2015-11-28 18:31:52", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("21681", "2", "2015-11-28 18:40:03", "216.232.155.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("21682", "3", "2015-11-28 20:08:34", "195.242.80.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("21683", "8", "2015-11-28 20:08:35", "195.242.80.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("21684", "3", "2015-11-28 21:59:32", "142.4.218.156", "18");
INSERT INTO `wp_gf_form_view` VALUES("21685", "8", "2015-11-28 21:59:33", "142.4.218.156", "9");
INSERT INTO `wp_gf_form_view` VALUES("21686", "2", "2015-11-28 21:59:40", "142.4.218.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("21687", "3", "2015-11-28 22:00:48", "31.147.118.55", "276");
INSERT INTO `wp_gf_form_view` VALUES("21688", "8", "2015-11-28 22:00:48", "31.147.118.55", "182");
INSERT INTO `wp_gf_form_view` VALUES("21689", "1", "2015-11-28 22:14:59", "107.170.18.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("21690", "5", "2015-11-28 22:23:29", "107.170.18.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("21691", "3", "2015-11-28 23:26:20", "66.249.74.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("21692", "8", "2015-11-28 23:26:23", "66.249.74.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("21693", "3", "2015-11-29 00:45:23", "207.46.13.82", "3");
INSERT INTO `wp_gf_form_view` VALUES("21694", "8", "2015-11-29 00:45:23", "207.46.13.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("21695", "3", "2015-11-29 01:44:12", "104.247.217.178", "4");
INSERT INTO `wp_gf_form_view` VALUES("21696", "8", "2015-11-29 01:44:12", "104.247.217.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("21697", "9", "2015-11-29 02:01:50", "40.77.167.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("21698", "3", "2015-11-29 02:01:51", "40.77.167.69", "18");
INSERT INTO `wp_gf_form_view` VALUES("21699", "8", "2015-11-29 02:01:51", "40.77.167.69", "9");
INSERT INTO `wp_gf_form_view` VALUES("21700", "6", "2015-11-29 02:53:03", "144.76.155.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("21701", "3", "2015-11-29 03:29:50", "24.108.130.20", "8");
INSERT INTO `wp_gf_form_view` VALUES("21702", "8", "2015-11-29 03:29:50", "24.108.130.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("21703", "8", "2015-11-29 05:05:04", "40.77.167.78", "10");
INSERT INTO `wp_gf_form_view` VALUES("21704", "3", "2015-11-29 05:05:05", "40.77.167.78", "18");
INSERT INTO `wp_gf_form_view` VALUES("21705", "3", "2015-11-29 07:23:31", "207.46.13.82", "5");
INSERT INTO `wp_gf_form_view` VALUES("21706", "8", "2015-11-29 07:23:41", "207.46.13.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("21707", "1", "2015-11-29 08:24:55", "62.210.157.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("21708", "3", "2015-11-29 08:24:56", "62.210.157.80", "15");
INSERT INTO `wp_gf_form_view` VALUES("21709", "8", "2015-11-29 08:24:57", "62.210.157.80", "7");
INSERT INTO `wp_gf_form_view` VALUES("21710", "9", "2015-11-29 08:35:24", "40.77.167.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("21711", "3", "2015-11-29 09:14:59", "178.137.89.181", "13");
INSERT INTO `wp_gf_form_view` VALUES("21712", "3", "2015-11-29 09:14:59", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("21713", "3", "2015-11-29 09:14:59", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("21714", "8", "2015-11-29 09:14:59", "178.137.89.181", "5");
INSERT INTO `wp_gf_form_view` VALUES("21715", "8", "2015-11-29 09:14:59", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("21716", "8", "2015-11-29 09:14:59", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("21717", "1", "2015-11-29 09:18:09", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("21718", "1", "2015-11-29 10:05:45", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("21719", "3", "2015-11-29 10:05:46", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("21720", "8", "2015-11-29 10:05:46", "66.249.74.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("21721", "3", "2015-11-29 11:05:08", "66.249.74.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("21722", "8", "2015-11-29 11:05:08", "66.249.74.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("21723", "7", "2015-11-29 11:31:33", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("21724", "3", "2015-11-29 12:50:44", "176.8.244.238", "4");
INSERT INTO `wp_gf_form_view` VALUES("21725", "3", "2015-11-29 12:50:44", "176.8.244.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("21726", "3", "2015-11-29 12:50:44", "176.8.244.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("21727", "8", "2015-11-29 12:50:45", "176.8.244.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("21728", "8", "2015-11-29 12:50:45", "176.8.244.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("21729", "8", "2015-11-29 12:50:45", "176.8.244.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("21730", "3", "2015-11-29 13:19:33", "40.77.167.69", "14");
INSERT INTO `wp_gf_form_view` VALUES("21731", "8", "2015-11-29 13:19:33", "40.77.167.69", "7");
INSERT INTO `wp_gf_form_view` VALUES("21732", "3", "2015-11-29 14:14:32", "40.77.167.69", "10");
INSERT INTO `wp_gf_form_view` VALUES("21733", "8", "2015-11-29 14:14:32", "40.77.167.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("21734", "3", "2015-11-29 16:29:36", "202.46.56.94", "8");
INSERT INTO `wp_gf_form_view` VALUES("21735", "8", "2015-11-29 16:29:37", "202.46.56.94", "4");
INSERT INTO `wp_gf_form_view` VALUES("21736", "3", "2015-11-29 17:14:36", "202.46.57.209", "16");
INSERT INTO `wp_gf_form_view` VALUES("21737", "8", "2015-11-29 17:14:37", "202.46.57.209", "6");
INSERT INTO `wp_gf_form_view` VALUES("21738", "8", "2015-11-29 18:14:34", "202.46.51.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("21739", "3", "2015-11-29 18:14:36", "202.46.51.109", "11");
INSERT INTO `wp_gf_form_view` VALUES("21740", "6", "2015-11-29 18:27:48", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21741", "8", "2015-11-29 19:14:33", "202.46.55.90", "7");
INSERT INTO `wp_gf_form_view` VALUES("21742", "3", "2015-11-29 19:14:33", "202.46.55.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("21743", "3", "2015-11-29 20:07:33", "66.249.74.104", "32");
INSERT INTO `wp_gf_form_view` VALUES("21744", "8", "2015-11-29 20:07:33", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("21745", "9", "2015-11-29 21:12:11", "104.223.30.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("21746", "3", "2015-11-29 21:12:12", "104.223.30.96", "24");
INSERT INTO `wp_gf_form_view` VALUES("21747", "8", "2015-11-29 21:12:12", "104.223.30.96", "15");
INSERT INTO `wp_gf_form_view` VALUES("21748", "6", "2015-11-29 21:40:52", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("21749", "8", "2015-11-29 22:09:15", "66.249.74.104", "14");
INSERT INTO `wp_gf_form_view` VALUES("21750", "3", "2015-11-29 22:11:07", "40.77.167.84", "26");
INSERT INTO `wp_gf_form_view` VALUES("21751", "3", "2015-11-29 23:14:34", "202.46.54.26", "10");
INSERT INTO `wp_gf_form_view` VALUES("21752", "8", "2015-11-29 23:14:35", "202.46.54.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("21753", "8", "2015-11-30 00:14:33", "202.46.50.181", "8");
INSERT INTO `wp_gf_form_view` VALUES("21754", "3", "2015-11-30 00:14:34", "202.46.50.181", "12");
INSERT INTO `wp_gf_form_view` VALUES("21755", "3", "2015-11-30 01:14:34", "202.46.51.58", "15");
INSERT INTO `wp_gf_form_view` VALUES("21756", "8", "2015-11-30 01:14:34", "202.46.51.58", "7");
INSERT INTO `wp_gf_form_view` VALUES("21757", "3", "2015-11-30 02:14:34", "202.46.55.146", "19");
INSERT INTO `wp_gf_form_view` VALUES("21758", "8", "2015-11-30 02:14:34", "202.46.55.146", "10");
INSERT INTO `wp_gf_form_view` VALUES("21759", "3", "2015-11-30 03:14:34", "202.46.49.131", "54");
INSERT INTO `wp_gf_form_view` VALUES("21760", "8", "2015-11-30 03:14:34", "202.46.49.131", "24");
INSERT INTO `wp_gf_form_view` VALUES("21761", "3", "2015-11-30 04:06:54", "66.249.74.104", "28");
INSERT INTO `wp_gf_form_view` VALUES("21762", "8", "2015-11-30 04:06:55", "66.249.74.104", "14");
INSERT INTO `wp_gf_form_view` VALUES("21763", "1", "2015-11-30 05:03:05", "184.69.163.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("21764", "3", "2015-11-30 05:03:06", "184.69.163.74", "47");
INSERT INTO `wp_gf_form_view` VALUES("21765", "8", "2015-11-30 05:03:06", "184.69.163.74", "23");
INSERT INTO `wp_gf_form_view` VALUES("21766", "8", "2015-11-30 06:14:34", "202.46.58.159", "8");
INSERT INTO `wp_gf_form_view` VALUES("21767", "3", "2015-11-30 06:14:34", "202.46.58.159", "11");
INSERT INTO `wp_gf_form_view` VALUES("21768", "3", "2015-11-30 07:10:31", "66.249.74.102", "36");
INSERT INTO `wp_gf_form_view` VALUES("21769", "8", "2015-11-30 07:10:31", "66.249.74.102", "19");
INSERT INTO `wp_gf_form_view` VALUES("21770", "3", "2015-11-30 08:11:09", "24.68.128.211", "26");
INSERT INTO `wp_gf_form_view` VALUES("21771", "8", "2015-11-30 08:11:09", "24.68.128.211", "13");
INSERT INTO `wp_gf_form_view` VALUES("21772", "3", "2015-11-30 09:04:57", "40.77.167.69", "11");
INSERT INTO `wp_gf_form_view` VALUES("21773", "8", "2015-11-30 09:04:57", "40.77.167.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("21774", "3", "2015-11-30 10:14:37", "202.46.49.141", "312");
INSERT INTO `wp_gf_form_view` VALUES("21775", "8", "2015-11-30 10:14:37", "202.46.49.141", "187");
INSERT INTO `wp_gf_form_view` VALUES("21776", "2", "2015-11-30 10:53:48", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("21777", "1", "2015-11-30 10:54:56", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("21778", "5", "2015-11-30 10:56:37", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("21779", "9", "2015-11-30 10:57:29", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("21780", "8", "2015-11-30 11:14:34", "202.46.52.165", "7");
INSERT INTO `wp_gf_form_view` VALUES("21781", "3", "2015-11-30 11:14:34", "202.46.52.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("21782", "3", "2015-11-30 12:01:54", "68.180.229.161", "28");
INSERT INTO `wp_gf_form_view` VALUES("21783", "8", "2015-11-30 12:01:54", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("21784", "8", "2015-11-30 13:14:34", "202.46.55.131", "9");
INSERT INTO `wp_gf_form_view` VALUES("21785", "3", "2015-11-30 13:14:34", "202.46.55.131", "14");
INSERT INTO `wp_gf_form_view` VALUES("21786", "8", "2015-11-30 14:14:35", "202.46.48.197", "17");
INSERT INTO `wp_gf_form_view` VALUES("21787", "3", "2015-11-30 14:14:35", "202.46.48.197", "30");
INSERT INTO `wp_gf_form_view` VALUES("21788", "1", "2015-11-30 14:45:41", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21789", "5", "2015-11-30 14:45:43", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21790", "7", "2015-11-30 14:45:43", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21791", "8", "2015-11-30 15:11:15", "184.66.165.149", "21");
INSERT INTO `wp_gf_form_view` VALUES("21792", "3", "2015-11-30 15:11:15", "184.66.165.149", "48");
INSERT INTO `wp_gf_form_view` VALUES("21793", "8", "2015-11-30 16:14:34", "202.46.50.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("21794", "3", "2015-11-30 16:14:34", "202.46.50.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("21795", "3", "2015-11-30 18:04:25", "141.8.143.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("21796", "8", "2015-11-30 18:04:26", "141.8.143.134", "5");
INSERT INTO `wp_gf_form_view` VALUES("21797", "3", "2015-11-30 19:03:35", "40.77.167.84", "19");
INSERT INTO `wp_gf_form_view` VALUES("21798", "8", "2015-11-30 19:03:35", "40.77.167.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("21799", "3", "2015-11-30 20:03:29", "24.108.136.68", "6");
INSERT INTO `wp_gf_form_view` VALUES("21800", "8", "2015-11-30 20:03:29", "24.108.136.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("21801", "3", "2015-11-30 21:03:10", "64.251.74.178", "25");
INSERT INTO `wp_gf_form_view` VALUES("21802", "8", "2015-11-30 21:03:11", "64.251.74.178", "11");
INSERT INTO `wp_gf_form_view` VALUES("21803", "1", "2015-11-30 21:23:00", "173.242.124.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("21804", "9", "2015-11-30 22:14:17", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21805", "3", "2015-11-30 22:14:17", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("21806", "8", "2015-11-30 22:14:17", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("21807", "3", "2015-11-30 23:14:48", "207.230.250.214", "11");
INSERT INTO `wp_gf_form_view` VALUES("21808", "8", "2015-11-30 23:14:48", "207.230.250.214", "5");
INSERT INTO `wp_gf_form_view` VALUES("21809", "3", "2015-12-01 00:17:50", "141.8.143.184", "11");
INSERT INTO `wp_gf_form_view` VALUES("21810", "8", "2015-12-01 00:17:52", "141.8.143.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("21811", "3", "2015-12-01 01:16:53", "50.72.206.138", "17");
INSERT INTO `wp_gf_form_view` VALUES("21812", "8", "2015-12-01 01:16:53", "50.72.206.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("21813", "3", "2015-12-01 02:14:18", "24.69.41.69", "10");
INSERT INTO `wp_gf_form_view` VALUES("21814", "8", "2015-12-01 02:14:19", "24.69.41.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("21815", "7", "2015-12-01 02:50:03", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("21816", "3", "2015-12-01 03:38:25", "100.43.90.12", "6");
INSERT INTO `wp_gf_form_view` VALUES("21817", "8", "2015-12-01 03:38:25", "100.43.90.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("21818", "9", "2015-12-01 03:55:28", "188.165.15.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("21819", "3", "2015-12-01 04:14:38", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("21820", "8", "2015-12-01 04:14:38", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("21821", "3", "2015-12-01 05:01:55", "93.127.148.216", "33");
INSERT INTO `wp_gf_form_view` VALUES("21822", "8", "2015-12-01 05:01:56", "93.127.148.216", "13");
INSERT INTO `wp_gf_form_view` VALUES("21823", "3", "2015-12-01 06:29:20", "40.77.167.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("21824", "8", "2015-12-01 06:29:20", "40.77.167.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("21825", "3", "2015-12-01 07:16:14", "178.137.89.181", "12");
INSERT INTO `wp_gf_form_view` VALUES("21826", "8", "2015-12-01 07:16:14", "178.137.89.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("21827", "3", "2015-12-01 08:17:39", "66.249.74.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("21828", "8", "2015-12-01 08:17:40", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("21829", "3", "2015-12-01 09:13:15", "188.165.15.41", "28");
INSERT INTO `wp_gf_form_view` VALUES("21830", "8", "2015-12-01 09:13:16", "188.165.15.41", "14");
INSERT INTO `wp_gf_form_view` VALUES("21831", "7", "2015-12-01 09:30:53", "134.249.159.6", "7");
INSERT INTO `wp_gf_form_view` VALUES("21832", "5", "2015-12-01 09:31:37", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21833", "3", "2015-12-01 10:00:08", "134.249.159.6", "77");
INSERT INTO `wp_gf_form_view` VALUES("21834", "8", "2015-12-01 10:00:08", "134.249.159.6", "36");
INSERT INTO `wp_gf_form_view` VALUES("21835", "7", "2015-12-01 10:04:25", "134.249.159.6", "11");
INSERT INTO `wp_gf_form_view` VALUES("21836", "1", "2015-12-01 10:05:05", "134.249.159.6", "5");
INSERT INTO `wp_gf_form_view` VALUES("21837", "5", "2015-12-01 10:45:59", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21838", "7", "2015-12-01 11:00:55", "134.249.159.6", "11");
INSERT INTO `wp_gf_form_view` VALUES("21839", "3", "2015-12-01 11:00:55", "134.249.159.6", "49");
INSERT INTO `wp_gf_form_view` VALUES("21840", "8", "2015-12-01 11:00:55", "134.249.159.6", "24");
INSERT INTO `wp_gf_form_view` VALUES("21841", "1", "2015-12-01 11:18:17", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21842", "7", "2015-12-01 12:00:40", "134.249.159.6", "10");
INSERT INTO `wp_gf_form_view` VALUES("21843", "3", "2015-12-01 12:00:40", "134.249.159.6", "51");
INSERT INTO `wp_gf_form_view` VALUES("21844", "8", "2015-12-01 12:00:40", "134.249.159.6", "25");
INSERT INTO `wp_gf_form_view` VALUES("21845", "5", "2015-12-01 12:16:54", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21846", "9", "2015-12-01 12:47:55", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("21847", "3", "2015-12-01 13:00:42", "134.249.159.6", "65");
INSERT INTO `wp_gf_form_view` VALUES("21848", "8", "2015-12-01 13:00:42", "134.249.159.6", "32");
INSERT INTO `wp_gf_form_view` VALUES("21849", "7", "2015-12-01 13:07:28", "134.249.159.6", "16");
INSERT INTO `wp_gf_form_view` VALUES("21850", "1", "2015-12-01 13:24:39", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21851", "5", "2015-12-01 13:34:04", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21852", "7", "2015-12-01 14:00:16", "134.249.159.6", "14");
INSERT INTO `wp_gf_form_view` VALUES("21853", "3", "2015-12-01 14:00:16", "134.249.159.6", "50");
INSERT INTO `wp_gf_form_view` VALUES("21854", "8", "2015-12-01 14:00:16", "134.249.159.6", "25");
INSERT INTO `wp_gf_form_view` VALUES("21855", "5", "2015-12-01 14:13:28", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21856", "7", "2015-12-01 15:01:28", "134.249.159.6", "10");
INSERT INTO `wp_gf_form_view` VALUES("21857", "3", "2015-12-01 15:01:28", "134.249.159.6", "36");
INSERT INTO `wp_gf_form_view` VALUES("21858", "8", "2015-12-01 15:01:28", "134.249.159.6", "18");
INSERT INTO `wp_gf_form_view` VALUES("21859", "5", "2015-12-01 15:15:32", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21860", "1", "2015-12-01 15:39:30", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21861", "3", "2015-12-01 16:00:33", "134.249.159.6", "32");
INSERT INTO `wp_gf_form_view` VALUES("21862", "8", "2015-12-01 16:00:33", "134.249.159.6", "16");
INSERT INTO `wp_gf_form_view` VALUES("21863", "7", "2015-12-01 16:13:22", "134.249.159.6", "7");
INSERT INTO `wp_gf_form_view` VALUES("21864", "5", "2015-12-01 16:34:36", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21865", "1", "2015-12-01 16:48:57", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21866", "3", "2015-12-01 17:00:58", "134.249.159.6", "71");
INSERT INTO `wp_gf_form_view` VALUES("21867", "8", "2015-12-01 17:00:58", "134.249.159.6", "36");
INSERT INTO `wp_gf_form_view` VALUES("21868", "7", "2015-12-01 17:09:22", "134.249.159.6", "13");
INSERT INTO `wp_gf_form_view` VALUES("21869", "5", "2015-12-01 17:17:27", "134.249.159.6", "4");
INSERT INTO `wp_gf_form_view` VALUES("21870", "2", "2015-12-01 17:19:49", "54.183.150.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("21871", "3", "2015-12-01 18:03:09", "96.50.93.42", "46");
INSERT INTO `wp_gf_form_view` VALUES("21872", "8", "2015-12-01 18:03:09", "96.50.93.42", "23");
INSERT INTO `wp_gf_form_view` VALUES("21873", "7", "2015-12-01 18:03:57", "134.249.159.6", "15");
INSERT INTO `wp_gf_form_view` VALUES("21874", "1", "2015-12-01 18:16:02", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21875", "5", "2015-12-01 18:34:42", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21876", "5", "2015-12-01 19:00:35", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21877", "3", "2015-12-01 19:00:35", "134.249.159.6", "79");
INSERT INTO `wp_gf_form_view` VALUES("21878", "8", "2015-12-01 19:00:35", "134.249.159.6", "31");
INSERT INTO `wp_gf_form_view` VALUES("21879", "7", "2015-12-01 19:01:27", "134.249.159.6", "14");
INSERT INTO `wp_gf_form_view` VALUES("21880", "3", "2015-12-01 20:00:35", "134.249.159.6", "98");
INSERT INTO `wp_gf_form_view` VALUES("21881", "8", "2015-12-01 20:00:35", "134.249.159.6", "25");
INSERT INTO `wp_gf_form_view` VALUES("21882", "1", "2015-12-01 20:02:02", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21883", "7", "2015-12-01 20:03:25", "134.249.159.6", "12");
INSERT INTO `wp_gf_form_view` VALUES("21884", "5", "2015-12-01 20:10:13", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21885", "3", "2015-12-01 21:01:11", "134.249.159.6", "97");
INSERT INTO `wp_gf_form_view` VALUES("21886", "8", "2015-12-01 21:01:11", "134.249.159.6", "23");
INSERT INTO `wp_gf_form_view` VALUES("21887", "7", "2015-12-01 21:11:07", "134.249.159.6", "10");
INSERT INTO `wp_gf_form_view` VALUES("21888", "5", "2015-12-01 21:18:29", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21889", "1", "2015-12-01 21:56:50", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21890", "7", "2015-12-01 22:04:53", "134.249.159.6", "7");
INSERT INTO `wp_gf_form_view` VALUES("21891", "3", "2015-12-01 22:04:53", "134.249.159.6", "72");
INSERT INTO `wp_gf_form_view` VALUES("21892", "8", "2015-12-01 22:04:53", "134.249.159.6", "18");
INSERT INTO `wp_gf_form_view` VALUES("21893", "1", "2015-12-01 22:27:15", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21894", "5", "2015-12-01 22:30:42", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21895", "7", "2015-12-01 23:04:41", "134.249.159.6", "9");
INSERT INTO `wp_gf_form_view` VALUES("21896", "3", "2015-12-01 23:04:41", "134.249.159.6", "166");
INSERT INTO `wp_gf_form_view` VALUES("21897", "8", "2015-12-01 23:04:41", "134.249.159.6", "43");
INSERT INTO `wp_gf_form_view` VALUES("21898", "5", "2015-12-01 23:29:56", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21899", "2", "2015-12-01 23:43:32", "45.55.229.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("21900", "3", "2015-12-02 00:00:38", "134.249.159.6", "114");
INSERT INTO `wp_gf_form_view` VALUES("21901", "8", "2015-12-02 00:00:38", "134.249.159.6", "28");
INSERT INTO `wp_gf_form_view` VALUES("21902", "5", "2015-12-02 00:01:07", "134.249.159.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("21903", "7", "2015-12-02 00:02:17", "134.249.159.6", "8");
INSERT INTO `wp_gf_form_view` VALUES("21904", "1", "2015-12-02 00:49:01", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21905", "5", "2015-12-02 01:00:25", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21906", "3", "2015-12-02 01:00:25", "134.249.159.6", "83");
INSERT INTO `wp_gf_form_view` VALUES("21907", "8", "2015-12-02 01:00:25", "134.249.159.6", "21");
INSERT INTO `wp_gf_form_view` VALUES("21908", "7", "2015-12-02 01:12:53", "134.249.159.6", "8");
INSERT INTO `wp_gf_form_view` VALUES("21909", "3", "2015-12-02 02:04:54", "134.249.159.6", "100");
INSERT INTO `wp_gf_form_view` VALUES("21910", "8", "2015-12-02 02:04:54", "134.249.159.6", "25");
INSERT INTO `wp_gf_form_view` VALUES("21911", "7", "2015-12-02 02:06:31", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21912", "5", "2015-12-02 02:14:51", "134.249.159.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("21913", "3", "2015-12-02 03:01:41", "134.249.159.6", "93");
INSERT INTO `wp_gf_form_view` VALUES("21914", "8", "2015-12-02 03:01:41", "134.249.159.6", "23");
INSERT INTO `wp_gf_form_view` VALUES("21915", "5", "2015-12-02 03:10:43", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21916", "7", "2015-12-02 03:12:49", "134.249.159.6", "7");
INSERT INTO `wp_gf_form_view` VALUES("21917", "1", "2015-12-02 03:52:24", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21918", "7", "2015-12-02 04:05:15", "134.249.159.6", "7");
INSERT INTO `wp_gf_form_view` VALUES("21919", "3", "2015-12-02 04:05:15", "134.249.159.6", "71");
INSERT INTO `wp_gf_form_view` VALUES("21920", "8", "2015-12-02 04:05:15", "134.249.159.6", "18");
INSERT INTO `wp_gf_form_view` VALUES("21921", "5", "2015-12-02 04:05:23", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21922", "1", "2015-12-02 04:32:08", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21923", "7", "2015-12-02 05:01:16", "134.249.159.6", "16");
INSERT INTO `wp_gf_form_view` VALUES("21924", "3", "2015-12-02 05:01:16", "134.249.159.6", "105");
INSERT INTO `wp_gf_form_view` VALUES("21925", "8", "2015-12-02 05:01:16", "134.249.159.6", "26");
INSERT INTO `wp_gf_form_view` VALUES("21926", "1", "2015-12-02 05:07:08", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21927", "5", "2015-12-02 05:11:16", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21928", "7", "2015-12-02 06:01:29", "134.249.159.6", "9");
INSERT INTO `wp_gf_form_view` VALUES("21929", "3", "2015-12-02 06:01:29", "134.249.159.6", "106");
INSERT INTO `wp_gf_form_view` VALUES("21930", "8", "2015-12-02 06:01:29", "134.249.159.6", "26");
INSERT INTO `wp_gf_form_view` VALUES("21931", "5", "2015-12-02 06:26:19", "134.249.159.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("21932", "1", "2015-12-02 06:42:03", "134.249.159.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("21933", "3", "2015-12-02 07:02:03", "134.249.159.6", "88");
INSERT INTO `wp_gf_form_view` VALUES("21934", "8", "2015-12-02 07:02:04", "134.249.159.6", "22");
INSERT INTO `wp_gf_form_view` VALUES("21935", "7", "2015-12-02 07:06:26", "134.249.159.6", "10");
INSERT INTO `wp_gf_form_view` VALUES("21936", "5", "2015-12-02 07:41:59", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21937", "7", "2015-12-02 08:01:59", "134.249.159.6", "10");
INSERT INTO `wp_gf_form_view` VALUES("21938", "3", "2015-12-02 08:01:59", "134.249.159.6", "64");
INSERT INTO `wp_gf_form_view` VALUES("21939", "8", "2015-12-02 08:01:59", "134.249.159.6", "16");
INSERT INTO `wp_gf_form_view` VALUES("21940", "5", "2015-12-02 08:03:56", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21941", "1", "2015-12-02 08:24:42", "134.249.159.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("21942", "3", "2015-12-02 10:03:58", "66.249.74.106", "78");
INSERT INTO `wp_gf_form_view` VALUES("21943", "8", "2015-12-02 10:04:06", "66.249.74.106", "19");
INSERT INTO `wp_gf_form_view` VALUES("21944", "3", "2015-12-02 11:22:10", "157.55.39.21", "4");
INSERT INTO `wp_gf_form_view` VALUES("21945", "8", "2015-12-02 11:22:10", "157.55.39.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("21946", "8", "2015-12-02 12:32:59", "157.55.39.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("21947", "3", "2015-12-02 12:32:59", "157.55.39.108", "32");
INSERT INTO `wp_gf_form_view` VALUES("21948", "1", "2015-12-02 12:59:47", "23.94.75.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("21949", "3", "2015-12-02 13:48:10", "207.46.13.17", "13");
INSERT INTO `wp_gf_form_view` VALUES("21950", "8", "2015-12-02 13:48:11", "207.46.13.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("21951", "3", "2015-12-02 14:08:37", "66.249.74.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("21952", "8", "2015-12-02 14:08:37", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("21953", "3", "2015-12-02 15:29:55", "157.55.39.149", "21");
INSERT INTO `wp_gf_form_view` VALUES("21954", "8", "2015-12-02 15:30:01", "157.55.39.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("21955", "3", "2015-12-02 16:31:40", "197.155.4.15", "8");
INSERT INTO `wp_gf_form_view` VALUES("21956", "8", "2015-12-02 16:31:40", "197.155.4.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("21957", "3", "2015-12-02 17:02:03", "142.24.75.193", "146");
INSERT INTO `wp_gf_form_view` VALUES("21958", "8", "2015-12-02 17:02:04", "142.24.75.193", "36");
INSERT INTO `wp_gf_form_view` VALUES("21959", "2", "2015-12-02 17:33:21", "85.57.50.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("21960", "3", "2015-12-02 18:10:07", "188.165.15.41", "30");
INSERT INTO `wp_gf_form_view` VALUES("21961", "8", "2015-12-02 18:10:07", "188.165.15.41", "7");
INSERT INTO `wp_gf_form_view` VALUES("21962", "3", "2015-12-02 19:19:02", "66.249.74.104", "69");
INSERT INTO `wp_gf_form_view` VALUES("21963", "8", "2015-12-02 19:19:03", "66.249.74.104", "17");
INSERT INTO `wp_gf_form_view` VALUES("21964", "1", "2015-12-02 19:42:44", "184.71.26.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("21965", "7", "2015-12-02 19:59:14", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("21966", "3", "2015-12-02 20:28:43", "184.69.167.74", "42");
INSERT INTO `wp_gf_form_view` VALUES("21967", "8", "2015-12-02 20:28:43", "184.69.167.74", "11");
INSERT INTO `wp_gf_form_view` VALUES("21968", "8", "2015-12-02 21:01:55", "77.75.77.101", "7");
INSERT INTO `wp_gf_form_view` VALUES("21969", "3", "2015-12-02 21:01:55", "77.75.77.101", "28");
INSERT INTO `wp_gf_form_view` VALUES("21970", "3", "2015-12-02 22:05:34", "184.66.161.123", "32");
INSERT INTO `wp_gf_form_view` VALUES("21971", "8", "2015-12-02 22:05:34", "184.66.161.123", "8");
INSERT INTO `wp_gf_form_view` VALUES("21972", "1", "2015-12-02 22:06:48", "184.66.161.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("21973", "3", "2015-12-02 23:09:31", "157.55.39.150", "74");
INSERT INTO `wp_gf_form_view` VALUES("21974", "8", "2015-12-02 23:09:31", "157.55.39.150", "18");
INSERT INTO `wp_gf_form_view` VALUES("21975", "1", "2015-12-02 23:34:10", "192.3.243.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("21976", "3", "2015-12-03 00:11:51", "178.137.89.181", "22");
INSERT INTO `wp_gf_form_view` VALUES("21977", "8", "2015-12-03 00:11:52", "178.137.89.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("21978", "3", "2015-12-03 01:01:08", "144.76.201.69", "74");
INSERT INTO `wp_gf_form_view` VALUES("21979", "8", "2015-12-03 01:01:08", "144.76.201.69", "17");
INSERT INTO `wp_gf_form_view` VALUES("21980", "1", "2015-12-03 01:18:30", "91.108.73.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("21981", "3", "2015-12-03 02:22:15", "192.227.169.163", "93");
INSERT INTO `wp_gf_form_view` VALUES("21982", "8", "2015-12-03 02:22:15", "192.227.169.163", "23");
INSERT INTO `wp_gf_form_view` VALUES("21983", "3", "2015-12-03 03:00:00", "192.3.211.248", "53");
INSERT INTO `wp_gf_form_view` VALUES("21984", "8", "2015-12-03 03:00:00", "192.3.211.248", "13");
INSERT INTO `wp_gf_form_view` VALUES("21985", "1", "2015-12-03 03:07:06", "23.94.75.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("21986", "3", "2015-12-03 04:04:36", "75.157.168.206", "16");
INSERT INTO `wp_gf_form_view` VALUES("21987", "8", "2015-12-03 04:04:36", "75.157.168.206", "4");
INSERT INTO `wp_gf_form_view` VALUES("21988", "1", "2015-12-03 04:50:37", "5.175.205.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("21989", "3", "2015-12-03 05:37:23", "24.108.12.106", "25");
INSERT INTO `wp_gf_form_view` VALUES("21990", "8", "2015-12-03 05:37:23", "24.108.12.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("21991", "3", "2015-12-03 06:21:15", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("21992", "8", "2015-12-03 06:21:16", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("21993", "3", "2015-12-03 07:43:56", "162.210.196.98", "5");
INSERT INTO `wp_gf_form_view` VALUES("21994", "8", "2015-12-03 07:43:58", "162.210.196.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("21995", "3", "2015-12-03 08:36:09", "202.46.53.52", "4");
INSERT INTO `wp_gf_form_view` VALUES("21996", "8", "2015-12-03 08:36:09", "202.46.53.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("21997", "3", "2015-12-03 10:14:59", "202.46.49.117", "41");
INSERT INTO `wp_gf_form_view` VALUES("21998", "8", "2015-12-03 10:15:04", "202.46.49.117", "11");
INSERT INTO `wp_gf_form_view` VALUES("21999", "1", "2015-12-03 10:30:25", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22000", "3", "2015-12-03 11:00:24", "46.118.123.213", "20");
INSERT INTO `wp_gf_form_view` VALUES("22001", "8", "2015-12-03 11:00:24", "46.118.123.213", "5");
INSERT INTO `wp_gf_form_view` VALUES("22002", "9", "2015-12-03 11:49:54", "40.77.167.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("22003", "3", "2015-12-03 12:08:04", "66.249.74.102", "13");
INSERT INTO `wp_gf_form_view` VALUES("22004", "8", "2015-12-03 12:08:04", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("22005", "3", "2015-12-03 13:17:09", "46.118.123.213", "32");
INSERT INTO `wp_gf_form_view` VALUES("22006", "8", "2015-12-03 13:17:09", "46.118.123.213", "8");
INSERT INTO `wp_gf_form_view` VALUES("22007", "3", "2015-12-03 14:37:22", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("22008", "8", "2015-12-03 14:37:22", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22009", "3", "2015-12-03 15:08:20", "46.118.226.141", "75");
INSERT INTO `wp_gf_form_view` VALUES("22010", "8", "2015-12-03 15:08:21", "46.118.226.141", "16");
INSERT INTO `wp_gf_form_view` VALUES("22011", "3", "2015-12-03 16:14:17", "202.46.58.89", "21");
INSERT INTO `wp_gf_form_view` VALUES("22012", "8", "2015-12-03 16:14:17", "202.46.58.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("22013", "3", "2015-12-03 17:08:08", "66.249.84.115", "19");
INSERT INTO `wp_gf_form_view` VALUES("22014", "8", "2015-12-03 17:08:08", "66.249.84.115", "5");
INSERT INTO `wp_gf_form_view` VALUES("22015", "3", "2015-12-03 18:10:07", "46.118.123.53", "66");
INSERT INTO `wp_gf_form_view` VALUES("22016", "8", "2015-12-03 18:10:07", "46.118.123.53", "16");
INSERT INTO `wp_gf_form_view` VALUES("22017", "1", "2015-12-03 18:36:31", "37.203.214.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("22018", "3", "2015-12-03 19:20:46", "24.108.135.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("22019", "8", "2015-12-03 19:20:46", "24.108.135.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("22020", "3", "2015-12-03 20:01:02", "68.180.229.161", "41");
INSERT INTO `wp_gf_form_view` VALUES("22021", "8", "2015-12-03 20:20:48", "207.6.121.14", "10");
INSERT INTO `wp_gf_form_view` VALUES("22022", "8", "2015-12-03 21:00:43", "40.77.167.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("22023", "3", "2015-12-03 21:00:43", "40.77.167.84", "14");
INSERT INTO `wp_gf_form_view` VALUES("22024", "3", "2015-12-03 22:06:58", "207.46.13.17", "46");
INSERT INTO `wp_gf_form_view` VALUES("22025", "8", "2015-12-03 22:06:58", "207.46.13.17", "11");
INSERT INTO `wp_gf_form_view` VALUES("22026", "1", "2015-12-03 22:40:22", "96.54.200.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("22027", "3", "2015-12-03 23:10:58", "191.101.121.193", "82");
INSERT INTO `wp_gf_form_view` VALUES("22028", "8", "2015-12-03 23:10:58", "191.101.121.193", "18");
INSERT INTO `wp_gf_form_view` VALUES("22029", "3", "2015-12-04 00:14:38", "207.46.13.75", "40");
INSERT INTO `wp_gf_form_view` VALUES("22030", "8", "2015-12-04 00:14:38", "207.46.13.75", "13");
INSERT INTO `wp_gf_form_view` VALUES("22031", "3", "2015-12-04 01:09:49", "142.36.249.105", "13");
INSERT INTO `wp_gf_form_view` VALUES("22032", "8", "2015-12-04 01:09:49", "142.36.249.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("22033", "3", "2015-12-04 02:03:59", "202.46.48.193", "54");
INSERT INTO `wp_gf_form_view` VALUES("22034", "8", "2015-12-04 02:04:00", "202.46.48.193", "12");
INSERT INTO `wp_gf_form_view` VALUES("22035", "3", "2015-12-04 03:07:05", "195.154.209.60", "9");
INSERT INTO `wp_gf_form_view` VALUES("22036", "8", "2015-12-04 03:07:05", "195.154.209.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("22037", "3", "2015-12-04 04:04:26", "191.101.121.193", "63");
INSERT INTO `wp_gf_form_view` VALUES("22038", "8", "2015-12-04 04:04:27", "191.101.121.193", "15");
INSERT INTO `wp_gf_form_view` VALUES("22039", "3", "2015-12-04 05:20:30", "188.165.15.41", "13");
INSERT INTO `wp_gf_form_view` VALUES("22040", "8", "2015-12-04 05:20:30", "188.165.15.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("22041", "3", "2015-12-04 06:24:35", "184.66.168.29", "9");
INSERT INTO `wp_gf_form_view` VALUES("22042", "8", "2015-12-04 06:24:36", "184.66.168.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("22043", "1", "2015-12-04 07:05:11", "192.99.255.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("22044", "3", "2015-12-04 07:05:11", "192.99.255.236", "31");
INSERT INTO `wp_gf_form_view` VALUES("22045", "8", "2015-12-04 07:05:11", "192.99.255.236", "8");
INSERT INTO `wp_gf_form_view` VALUES("22046", "3", "2015-12-04 08:02:51", "188.165.15.41", "5");
INSERT INTO `wp_gf_form_view` VALUES("22047", "8", "2015-12-04 08:02:51", "188.165.15.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("22048", "3", "2015-12-04 09:17:48", "62.210.162.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("22049", "8", "2015-12-04 09:17:55", "62.210.162.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("22050", "3", "2015-12-04 10:31:39", "66.249.66.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("22051", "8", "2015-12-04 10:31:39", "66.249.66.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("22052", "3", "2015-12-04 11:03:01", "66.249.66.75", "13");
INSERT INTO `wp_gf_form_view` VALUES("22053", "8", "2015-12-04 11:03:01", "66.249.66.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("22054", "3", "2015-12-04 12:30:56", "23.94.10.114", "52");
INSERT INTO `wp_gf_form_view` VALUES("22055", "8", "2015-12-04 12:30:56", "23.94.10.114", "12");
INSERT INTO `wp_gf_form_view` VALUES("22056", "9", "2015-12-04 12:38:57", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("22057", "3", "2015-12-04 13:14:54", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("22058", "8", "2015-12-04 13:14:54", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("22059", "1", "2015-12-04 14:09:51", "192.126.192.237", "2");
INSERT INTO `wp_gf_form_view` VALUES("22060", "3", "2015-12-04 14:09:52", "192.126.192.237", "40");
INSERT INTO `wp_gf_form_view` VALUES("22061", "8", "2015-12-04 14:09:52", "192.126.192.237", "10");
INSERT INTO `wp_gf_form_view` VALUES("22062", "3", "2015-12-04 15:02:26", "46.118.226.141", "36");
INSERT INTO `wp_gf_form_view` VALUES("22063", "8", "2015-12-04 15:02:26", "46.118.226.141", "9");
INSERT INTO `wp_gf_form_view` VALUES("22064", "3", "2015-12-04 16:04:33", "66.249.74.104", "24");
INSERT INTO `wp_gf_form_view` VALUES("22065", "8", "2015-12-04 16:04:33", "66.249.74.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("22066", "3", "2015-12-04 17:48:52", "157.55.39.153", "14");
INSERT INTO `wp_gf_form_view` VALUES("22067", "8", "2015-12-04 17:48:53", "157.55.39.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("22068", "8", "2015-12-04 18:06:59", "77.75.76.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("22069", "3", "2015-12-04 18:06:59", "77.75.76.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("22070", "3", "2015-12-04 19:01:23", "184.66.162.243", "91");
INSERT INTO `wp_gf_form_view` VALUES("22071", "3", "2015-12-04 19:01:23", "184.66.162.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("22072", "8", "2015-12-04 19:01:29", "184.66.162.243", "23");
INSERT INTO `wp_gf_form_view` VALUES("22073", "8", "2015-12-04 19:01:29", "184.66.162.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("22074", "6", "2015-12-04 19:05:31", "202.46.55.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("22075", "3", "2015-12-04 20:06:00", "46.118.112.74", "72");
INSERT INTO `wp_gf_form_view` VALUES("22076", "3", "2015-12-04 20:06:00", "46.118.112.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("22077", "8", "2015-12-04 20:06:01", "46.118.112.74", "18");
INSERT INTO `wp_gf_form_view` VALUES("22078", "1", "2015-12-04 20:28:58", "216.158.203.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("22079", "3", "2015-12-04 21:09:03", "142.36.249.105", "42");
INSERT INTO `wp_gf_form_view` VALUES("22080", "8", "2015-12-04 21:09:03", "142.36.249.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("22081", "2", "2015-12-04 22:24:20", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("22082", "3", "2015-12-04 22:24:21", "199.21.99.202", "111");
INSERT INTO `wp_gf_form_view` VALUES("22083", "8", "2015-12-04 22:24:21", "199.21.99.202", "23");
INSERT INTO `wp_gf_form_view` VALUES("22084", "3", "2015-12-04 23:00:05", "37.187.162.186", "12");
INSERT INTO `wp_gf_form_view` VALUES("22085", "8", "2015-12-04 23:00:05", "37.187.162.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("22086", "3", "2015-12-05 00:00:07", "40.77.167.72", "56");
INSERT INTO `wp_gf_form_view` VALUES("22087", "8", "2015-12-05 00:00:07", "40.77.167.72", "14");
INSERT INTO `wp_gf_form_view` VALUES("22088", "3", "2015-12-05 01:28:23", "66.249.74.102", "71");
INSERT INTO `wp_gf_form_view` VALUES("22089", "8", "2015-12-05 01:28:24", "66.249.74.102", "17");
INSERT INTO `wp_gf_form_view` VALUES("22090", "5", "2015-12-05 01:59:55", "188.165.15.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("22091", "3", "2015-12-05 02:00:15", "24.69.41.60", "16");
INSERT INTO `wp_gf_form_view` VALUES("22092", "8", "2015-12-05 02:00:15", "24.69.41.60", "4");
INSERT INTO `wp_gf_form_view` VALUES("22093", "3", "2015-12-05 03:12:22", "46.118.112.74", "28");
INSERT INTO `wp_gf_form_view` VALUES("22094", "8", "2015-12-05 03:12:22", "46.118.112.74", "8");
INSERT INTO `wp_gf_form_view` VALUES("22095", "1", "2015-12-05 03:25:10", "212.83.131.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("22096", "3", "2015-12-05 04:03:32", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("22097", "8", "2015-12-05 04:03:32", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("22098", "3", "2015-12-05 05:30:24", "66.249.74.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("22099", "8", "2015-12-05 05:30:25", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("22100", "3", "2015-12-05 06:04:13", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("22101", "8", "2015-12-05 06:04:13", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("22102", "3", "2015-12-05 07:28:39", "202.46.48.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("22103", "8", "2015-12-05 07:28:40", "202.46.48.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("22104", "3", "2015-12-05 08:15:28", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("22105", "8", "2015-12-05 08:15:33", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22106", "3", "2015-12-05 09:03:24", "202.46.56.193", "9");
INSERT INTO `wp_gf_form_view` VALUES("22107", "8", "2015-12-05 09:03:26", "202.46.56.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("22108", "3", "2015-12-05 10:11:22", "157.55.39.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("22109", "8", "2015-12-05 10:11:22", "157.55.39.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("22110", "3", "2015-12-05 11:16:33", "40.77.167.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("22111", "8", "2015-12-05 11:16:33", "40.77.167.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("22112", "3", "2015-12-05 12:02:27", "46.118.123.53", "20");
INSERT INTO `wp_gf_form_view` VALUES("22113", "8", "2015-12-05 12:02:27", "46.118.123.53", "5");
INSERT INTO `wp_gf_form_view` VALUES("22114", "3", "2015-12-05 13:38:51", "66.249.74.102", "24");
INSERT INTO `wp_gf_form_view` VALUES("22115", "8", "2015-12-05 13:38:52", "66.249.74.102", "5");
INSERT INTO `wp_gf_form_view` VALUES("22116", "3", "2015-12-05 14:05:30", "66.249.74.102", "57");
INSERT INTO `wp_gf_form_view` VALUES("22117", "8", "2015-12-05 14:05:30", "66.249.74.102", "14");
INSERT INTO `wp_gf_form_view` VALUES("22118", "1", "2015-12-05 15:30:31", "163.172.14.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("22119", "3", "2015-12-05 15:30:31", "163.172.14.149", "74");
INSERT INTO `wp_gf_form_view` VALUES("22120", "8", "2015-12-05 15:30:31", "163.172.14.149", "17");
INSERT INTO `wp_gf_form_view` VALUES("22121", "3", "2015-12-05 16:26:00", "192.230.52.170", "24");
INSERT INTO `wp_gf_form_view` VALUES("22122", "8", "2015-12-05 16:26:01", "192.230.52.170", "6");
INSERT INTO `wp_gf_form_view` VALUES("22123", "1", "2015-12-05 17:11:33", "192.126.185.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("22124", "3", "2015-12-05 17:11:33", "192.126.185.151", "22");
INSERT INTO `wp_gf_form_view` VALUES("22125", "8", "2015-12-05 17:11:33", "192.126.185.151", "6");
INSERT INTO `wp_gf_form_view` VALUES("22126", "3", "2015-12-05 19:07:46", "40.77.167.72", "29");
INSERT INTO `wp_gf_form_view` VALUES("22127", "8", "2015-12-05 19:07:48", "40.77.167.72", "7");
INSERT INTO `wp_gf_form_view` VALUES("22128", "3", "2015-12-05 20:06:38", "40.77.167.72", "17");
INSERT INTO `wp_gf_form_view` VALUES("22129", "8", "2015-12-05 20:06:38", "40.77.167.72", "5");
INSERT INTO `wp_gf_form_view` VALUES("22130", "8", "2015-12-05 21:14:07", "108.128.160.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("22131", "3", "2015-12-05 21:14:07", "108.128.160.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("22132", "3", "2015-12-05 22:03:00", "77.75.79.17", "35");
INSERT INTO `wp_gf_form_view` VALUES("22133", "8", "2015-12-05 22:03:02", "77.75.79.17", "10");
INSERT INTO `wp_gf_form_view` VALUES("22134", "8", "2015-12-05 23:05:41", "157.55.39.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("22135", "3", "2015-12-05 23:05:42", "157.55.39.162", "17");
INSERT INTO `wp_gf_form_view` VALUES("22136", "1", "2015-12-05 23:17:34", "213.184.105.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("22137", "8", "2015-12-06 00:08:59", "157.55.39.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("22138", "3", "2015-12-06 00:08:59", "157.55.39.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("22139", "1", "2015-12-06 00:24:28", "213.184.105.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("22140", "8", "2015-12-06 01:28:53", "157.55.39.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("22141", "3", "2015-12-06 01:28:54", "157.55.39.104", "17");
INSERT INTO `wp_gf_form_view` VALUES("22142", "8", "2015-12-06 02:18:12", "46.246.39.186", "5");
INSERT INTO `wp_gf_form_view` VALUES("22143", "3", "2015-12-06 02:18:12", "46.246.39.186", "16");
INSERT INTO `wp_gf_form_view` VALUES("22144", "2", "2015-12-06 02:20:34", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22145", "1", "2015-12-06 02:43:55", "107.172.5.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("22146", "8", "2015-12-06 03:16:29", "62.210.162.184", "3");
INSERT INTO `wp_gf_form_view` VALUES("22147", "3", "2015-12-06 03:16:29", "62.210.162.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("22148", "8", "2015-12-06 04:10:33", "148.251.54.44", "5");
INSERT INTO `wp_gf_form_view` VALUES("22149", "3", "2015-12-06 04:10:33", "148.251.54.44", "13");
INSERT INTO `wp_gf_form_view` VALUES("22150", "8", "2015-12-06 05:22:10", "157.55.39.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("22151", "3", "2015-12-06 05:22:10", "157.55.39.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("22152", "8", "2015-12-06 06:17:58", "178.137.89.181", "11");
INSERT INTO `wp_gf_form_view` VALUES("22153", "8", "2015-12-06 06:17:58", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("22154", "3", "2015-12-06 06:17:59", "178.137.89.181", "36");
INSERT INTO `wp_gf_form_view` VALUES("22155", "3", "2015-12-06 06:17:59", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("22156", "3", "2015-12-06 06:17:59", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("22157", "3", "2015-12-06 06:17:59", "178.137.89.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("22158", "8", "2015-12-06 07:57:10", "207.46.13.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("22159", "3", "2015-12-06 07:57:11", "207.46.13.54", "5");
INSERT INTO `wp_gf_form_view` VALUES("22160", "8", "2015-12-06 09:16:26", "157.55.39.131", "7");
INSERT INTO `wp_gf_form_view` VALUES("22161", "3", "2015-12-06 09:16:31", "157.55.39.131", "24");
INSERT INTO `wp_gf_form_view` VALUES("22162", "8", "2015-12-06 10:03:34", "66.249.74.102", "5");
INSERT INTO `wp_gf_form_view` VALUES("22163", "3", "2015-12-06 10:03:34", "66.249.74.102", "12");
INSERT INTO `wp_gf_form_view` VALUES("22164", "6", "2015-12-06 11:33:49", "188.40.112.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("22165", "8", "2015-12-06 11:33:50", "188.40.112.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("22166", "3", "2015-12-06 11:33:50", "188.40.112.210", "3");
INSERT INTO `wp_gf_form_view` VALUES("22167", "8", "2015-12-06 12:11:45", "46.118.112.74", "6");
INSERT INTO `wp_gf_form_view` VALUES("22168", "8", "2015-12-06 12:11:46", "46.118.112.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("22169", "3", "2015-12-06 12:11:46", "46.118.112.74", "22");
INSERT INTO `wp_gf_form_view` VALUES("22170", "8", "2015-12-06 13:05:09", "40.77.167.7", "21");
INSERT INTO `wp_gf_form_view` VALUES("22171", "3", "2015-12-06 13:05:10", "40.77.167.7", "67");
INSERT INTO `wp_gf_form_view` VALUES("22172", "1", "2015-12-06 14:02:14", "91.200.12.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("22173", "8", "2015-12-06 14:02:14", "91.200.12.39", "11");
INSERT INTO `wp_gf_form_view` VALUES("22174", "3", "2015-12-06 14:02:14", "91.200.12.39", "35");
INSERT INTO `wp_gf_form_view` VALUES("22175", "8", "2015-12-06 15:27:28", "62.210.162.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("22176", "3", "2015-12-06 15:27:30", "62.210.162.184", "12");
INSERT INTO `wp_gf_form_view` VALUES("22177", "8", "2015-12-06 16:14:14", "24.69.78.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("22178", "3", "2015-12-06 16:14:14", "24.69.78.92", "36");
INSERT INTO `wp_gf_form_view` VALUES("22179", "8", "2015-12-06 17:08:46", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("22180", "3", "2015-12-06 17:08:46", "62.210.162.184", "24");
INSERT INTO `wp_gf_form_view` VALUES("22181", "5", "2015-12-06 17:47:36", "157.55.39.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("22182", "8", "2015-12-06 18:03:45", "202.46.50.190", "11");
INSERT INTO `wp_gf_form_view` VALUES("22183", "3", "2015-12-06 18:03:45", "202.46.50.190", "32");
INSERT INTO `wp_gf_form_view` VALUES("22184", "8", "2015-12-06 19:03:54", "154.120.101.236", "23");
INSERT INTO `wp_gf_form_view` VALUES("22185", "3", "2015-12-06 19:03:54", "154.120.101.236", "69");
INSERT INTO `wp_gf_form_view` VALUES("22186", "3", "2015-12-06 20:09:17", "202.46.51.198", "15");
INSERT INTO `wp_gf_form_view` VALUES("22187", "8", "2015-12-06 20:09:18", "202.46.51.198", "6");
INSERT INTO `wp_gf_form_view` VALUES("22188", "8", "2015-12-06 21:00:23", "202.46.48.206", "9");
INSERT INTO `wp_gf_form_view` VALUES("22189", "3", "2015-12-06 21:00:23", "202.46.48.206", "24");
INSERT INTO `wp_gf_form_view` VALUES("22190", "8", "2015-12-06 22:01:47", "40.77.167.7", "7");
INSERT INTO `wp_gf_form_view` VALUES("22191", "3", "2015-12-06 22:01:47", "40.77.167.7", "21");
INSERT INTO `wp_gf_form_view` VALUES("22192", "8", "2015-12-06 23:02:22", "202.46.49.200", "12");
INSERT INTO `wp_gf_form_view` VALUES("22193", "3", "2015-12-06 23:02:22", "202.46.49.200", "32");
INSERT INTO `wp_gf_form_view` VALUES("22194", "1", "2015-12-06 23:04:03", "92.114.6.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("22195", "8", "2015-12-07 00:03:27", "202.46.52.150", "5");
INSERT INTO `wp_gf_form_view` VALUES("22196", "3", "2015-12-07 00:03:27", "202.46.52.150", "15");
INSERT INTO `wp_gf_form_view` VALUES("22197", "8", "2015-12-07 01:02:16", "202.46.52.44", "14");
INSERT INTO `wp_gf_form_view` VALUES("22198", "3", "2015-12-07 01:02:16", "202.46.52.44", "36");
INSERT INTO `wp_gf_form_view` VALUES("22199", "8", "2015-12-07 02:19:52", "207.46.13.153", "4");
INSERT INTO `wp_gf_form_view` VALUES("22200", "3", "2015-12-07 02:19:52", "207.46.13.153", "11");
INSERT INTO `wp_gf_form_view` VALUES("22201", "8", "2015-12-07 03:10:10", "202.46.48.85", "17");
INSERT INTO `wp_gf_form_view` VALUES("22202", "3", "2015-12-07 03:10:11", "202.46.48.85", "49");
INSERT INTO `wp_gf_form_view` VALUES("22203", "8", "2015-12-07 04:08:25", "24.86.213.168", "11");
INSERT INTO `wp_gf_form_view` VALUES("22204", "3", "2015-12-07 04:08:25", "24.86.213.168", "29");
INSERT INTO `wp_gf_form_view` VALUES("22205", "8", "2015-12-07 05:05:51", "202.46.56.16", "31");
INSERT INTO `wp_gf_form_view` VALUES("22206", "3", "2015-12-07 05:05:51", "202.46.56.16", "98");
INSERT INTO `wp_gf_form_view` VALUES("22207", "9", "2015-12-07 05:50:04", "216.232.146.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("22208", "8", "2015-12-07 06:04:13", "202.46.51.166", "14");
INSERT INTO `wp_gf_form_view` VALUES("22209", "3", "2015-12-07 06:04:13", "202.46.51.166", "40");
INSERT INTO `wp_gf_form_view` VALUES("22210", "8", "2015-12-07 07:14:25", "40.77.167.7", "22");
INSERT INTO `wp_gf_form_view` VALUES("22211", "3", "2015-12-07 07:14:25", "40.77.167.7", "61");
INSERT INTO `wp_gf_form_view` VALUES("22212", "9", "2015-12-07 07:28:41", "40.77.167.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("22213", "8", "2015-12-07 08:23:49", "202.46.52.206", "8");
INSERT INTO `wp_gf_form_view` VALUES("22214", "3", "2015-12-07 08:23:49", "202.46.52.206", "21");
INSERT INTO `wp_gf_form_view` VALUES("22215", "8", "2015-12-07 09:04:49", "202.46.53.13", "9");
INSERT INTO `wp_gf_form_view` VALUES("22216", "3", "2015-12-07 09:04:49", "202.46.53.13", "29");
INSERT INTO `wp_gf_form_view` VALUES("22217", "8", "2015-12-07 10:03:46", "180.150.227.242", "16");
INSERT INTO `wp_gf_form_view` VALUES("22218", "3", "2015-12-07 10:03:46", "180.150.227.242", "39");
INSERT INTO `wp_gf_form_view` VALUES("22219", "8", "2015-12-07 11:00:58", "77.75.79.17", "20");
INSERT INTO `wp_gf_form_view` VALUES("22220", "3", "2015-12-07 11:00:58", "77.75.79.17", "56");
INSERT INTO `wp_gf_form_view` VALUES("22221", "8", "2015-12-07 12:05:57", "202.46.58.204", "8");
INSERT INTO `wp_gf_form_view` VALUES("22222", "3", "2015-12-07 12:05:57", "202.46.58.204", "23");
INSERT INTO `wp_gf_form_view` VALUES("22223", "8", "2015-12-07 13:03:10", "202.46.50.133", "11");
INSERT INTO `wp_gf_form_view` VALUES("22224", "3", "2015-12-07 13:03:10", "202.46.50.133", "30");
INSERT INTO `wp_gf_form_view` VALUES("22225", "8", "2015-12-07 14:03:28", "66.249.74.102", "18");
INSERT INTO `wp_gf_form_view` VALUES("22226", "3", "2015-12-07 14:03:28", "66.249.74.102", "55");
INSERT INTO `wp_gf_form_view` VALUES("22227", "1", "2015-12-07 14:04:49", "216.158.206.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("22228", "3", "2015-12-07 15:04:28", "202.46.53.113", "13");
INSERT INTO `wp_gf_form_view` VALUES("22229", "8", "2015-12-07 15:04:29", "202.46.53.113", "5");
INSERT INTO `wp_gf_form_view` VALUES("22230", "8", "2015-12-07 17:21:00", "46.4.32.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("22231", "3", "2015-12-07 17:21:01", "46.4.32.75", "12");
INSERT INTO `wp_gf_form_view` VALUES("22232", "8", "2015-12-07 18:09:51", "216.232.155.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("22233", "3", "2015-12-07 18:09:51", "216.232.155.66", "10");
INSERT INTO `wp_gf_form_view` VALUES("22234", "9", "2015-12-07 18:33:41", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("22235", "8", "2015-12-07 19:07:10", "207.46.13.171", "6");
INSERT INTO `wp_gf_form_view` VALUES("22236", "3", "2015-12-07 19:07:10", "207.46.13.171", "15");
INSERT INTO `wp_gf_form_view` VALUES("22237", "8", "2015-12-07 20:04:49", "209.52.88.181", "8");
INSERT INTO `wp_gf_form_view` VALUES("22238", "3", "2015-12-07 20:04:50", "209.52.88.181", "24");
INSERT INTO `wp_gf_form_view` VALUES("22239", "8", "2015-12-07 21:02:36", "66.249.88.230", "5");
INSERT INTO `wp_gf_form_view` VALUES("22240", "3", "2015-12-07 21:02:36", "66.249.88.230", "15");
INSERT INTO `wp_gf_form_view` VALUES("22241", "8", "2015-12-07 22:28:36", "142.36.180.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("22242", "3", "2015-12-07 22:28:38", "142.36.180.215", "6");
INSERT INTO `wp_gf_form_view` VALUES("22243", "8", "2015-12-07 23:57:52", "109.169.29.30", "14");
INSERT INTO `wp_gf_form_view` VALUES("22244", "3", "2015-12-07 23:57:54", "109.169.29.30", "45");
INSERT INTO `wp_gf_form_view` VALUES("22245", "2", "2015-12-07 23:59:50", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("22246", "8", "2015-12-08 00:15:42", "207.46.13.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("22247", "3", "2015-12-08 00:15:42", "207.46.13.88", "6");
INSERT INTO `wp_gf_form_view` VALUES("22248", "3", "2015-12-08 01:13:23", "207.46.13.171", "13");
INSERT INTO `wp_gf_form_view` VALUES("22249", "8", "2015-12-08 01:13:26", "207.46.13.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("22250", "3", "2015-12-08 02:20:45", "157.55.39.122", "7");
INSERT INTO `wp_gf_form_view` VALUES("22251", "8", "2015-12-08 02:20:46", "157.55.39.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("22252", "3", "2015-12-08 03:11:32", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("22253", "8", "2015-12-08 03:52:13", "207.46.13.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("22254", "8", "2015-12-08 04:12:10", "24.69.40.255", "15");
INSERT INTO `wp_gf_form_view` VALUES("22255", "3", "2015-12-08 04:12:10", "24.69.40.255", "44");
INSERT INTO `wp_gf_form_view` VALUES("22256", "3", "2015-12-08 05:03:11", "207.46.13.88", "51");
INSERT INTO `wp_gf_form_view` VALUES("22257", "8", "2015-12-08 05:03:11", "207.46.13.88", "19");
INSERT INTO `wp_gf_form_view` VALUES("22258", "1", "2015-12-08 05:42:25", "107.153.2.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22259", "3", "2015-12-08 06:02:39", "202.46.58.56", "52");
INSERT INTO `wp_gf_form_view` VALUES("22260", "8", "2015-12-08 06:02:40", "202.46.58.56", "17");
INSERT INTO `wp_gf_form_view` VALUES("22261", "8", "2015-12-08 07:01:31", "202.46.48.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("22262", "3", "2015-12-08 07:01:31", "202.46.48.89", "27");
INSERT INTO `wp_gf_form_view` VALUES("22263", "8", "2015-12-08 08:04:52", "207.46.13.88", "11");
INSERT INTO `wp_gf_form_view` VALUES("22264", "3", "2015-12-08 08:04:53", "207.46.13.88", "32");
INSERT INTO `wp_gf_form_view` VALUES("22265", "8", "2015-12-08 09:06:25", "202.46.49.114", "11");
INSERT INTO `wp_gf_form_view` VALUES("22266", "3", "2015-12-08 09:06:25", "202.46.49.114", "32");
INSERT INTO `wp_gf_form_view` VALUES("22267", "8", "2015-12-08 10:02:55", "202.46.54.32", "25");
INSERT INTO `wp_gf_form_view` VALUES("22268", "3", "2015-12-08 10:02:55", "202.46.54.32", "67");
INSERT INTO `wp_gf_form_view` VALUES("22269", "8", "2015-12-08 11:08:50", "202.46.51.182", "17");
INSERT INTO `wp_gf_form_view` VALUES("22270", "3", "2015-12-08 11:08:50", "202.46.51.182", "51");
INSERT INTO `wp_gf_form_view` VALUES("22271", "9", "2015-12-08 11:16:14", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22272", "1", "2015-12-08 11:53:16", "98.237.176.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("22273", "8", "2015-12-08 12:01:11", "66.249.88.108", "17");
INSERT INTO `wp_gf_form_view` VALUES("22274", "3", "2015-12-08 12:01:11", "66.249.88.108", "49");
INSERT INTO `wp_gf_form_view` VALUES("22275", "8", "2015-12-08 13:01:52", "202.46.56.186", "21");
INSERT INTO `wp_gf_form_view` VALUES("22276", "3", "2015-12-08 13:01:52", "202.46.56.186", "66");
INSERT INTO `wp_gf_form_view` VALUES("22277", "9", "2015-12-08 13:33:20", "207.46.13.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("22278", "8", "2015-12-08 14:03:13", "66.249.74.104", "14");
INSERT INTO `wp_gf_form_view` VALUES("22279", "3", "2015-12-08 14:03:13", "66.249.74.104", "42");
INSERT INTO `wp_gf_form_view` VALUES("22280", "1", "2015-12-08 14:34:43", "221.237.22.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("22281", "8", "2015-12-08 15:00:28", "76.10.180.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("22282", "3", "2015-12-08 15:00:28", "76.10.180.112", "81");
INSERT INTO `wp_gf_form_view` VALUES("22283", "5", "2015-12-08 15:03:12", "93.179.68.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("22284", "6", "2015-12-08 15:32:52", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("22285", "1", "2015-12-08 15:58:39", "91.200.12.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("22286", "8", "2015-12-08 16:10:14", "202.46.48.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("22287", "3", "2015-12-08 16:10:14", "202.46.48.138", "28");
INSERT INTO `wp_gf_form_view` VALUES("22288", "8", "2015-12-08 17:06:51", "202.46.53.201", "23");
INSERT INTO `wp_gf_form_view` VALUES("22289", "3", "2015-12-08 17:06:52", "202.46.53.201", "63");
INSERT INTO `wp_gf_form_view` VALUES("22290", "6", "2015-12-08 17:54:31", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("22291", "8", "2015-12-08 18:03:15", "202.46.48.89", "19");
INSERT INTO `wp_gf_form_view` VALUES("22292", "3", "2015-12-08 18:03:15", "202.46.48.89", "50");
INSERT INTO `wp_gf_form_view` VALUES("22293", "9", "2015-12-08 18:11:33", "207.46.13.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("22294", "6", "2015-12-08 18:16:51", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("22295", "8", "2015-12-08 19:09:09", "202.46.53.43", "32");
INSERT INTO `wp_gf_form_view` VALUES("22296", "3", "2015-12-08 19:09:10", "202.46.53.43", "88");
INSERT INTO `wp_gf_form_view` VALUES("22297", "1", "2015-12-08 19:22:37", "99.199.0.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("22298", "8", "2015-12-08 20:05:41", "202.46.58.126", "17");
INSERT INTO `wp_gf_form_view` VALUES("22299", "3", "2015-12-08 20:05:41", "202.46.58.126", "58");
INSERT INTO `wp_gf_form_view` VALUES("22300", "8", "2015-12-08 21:02:11", "202.46.53.204", "17");
INSERT INTO `wp_gf_form_view` VALUES("22301", "3", "2015-12-08 21:02:11", "202.46.53.204", "50");
INSERT INTO `wp_gf_form_view` VALUES("22302", "1", "2015-12-08 21:23:02", "91.108.73.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("22303", "8", "2015-12-08 22:05:42", "207.46.13.88", "18");
INSERT INTO `wp_gf_form_view` VALUES("22304", "3", "2015-12-08 22:05:42", "207.46.13.88", "41");
INSERT INTO `wp_gf_form_view` VALUES("22305", "8", "2015-12-08 23:04:36", "202.46.57.17", "17");
INSERT INTO `wp_gf_form_view` VALUES("22306", "3", "2015-12-08 23:04:37", "202.46.57.17", "51");
INSERT INTO `wp_gf_form_view` VALUES("22307", "8", "2015-12-09 00:01:07", "202.46.51.138", "16");
INSERT INTO `wp_gf_form_view` VALUES("22308", "3", "2015-12-09 00:01:07", "202.46.51.138", "42");
INSERT INTO `wp_gf_form_view` VALUES("22309", "3", "2015-12-09 01:02:58", "207.46.13.88", "32");
INSERT INTO `wp_gf_form_view` VALUES("22310", "8", "2015-12-09 01:02:58", "207.46.13.88", "10");
INSERT INTO `wp_gf_form_view` VALUES("22311", "8", "2015-12-09 02:03:33", "202.46.53.121", "17");
INSERT INTO `wp_gf_form_view` VALUES("22312", "3", "2015-12-09 02:03:34", "202.46.53.121", "50");
INSERT INTO `wp_gf_form_view` VALUES("22313", "8", "2015-12-09 03:00:03", "202.46.54.135", "15");
INSERT INTO `wp_gf_form_view` VALUES("22314", "3", "2015-12-09 03:00:03", "202.46.54.135", "42");
INSERT INTO `wp_gf_form_view` VALUES("22315", "1", "2015-12-09 03:55:12", "24.68.66.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("22316", "8", "2015-12-09 04:12:22", "207.46.13.153", "120");
INSERT INTO `wp_gf_form_view` VALUES("22317", "3", "2015-12-09 04:12:22", "207.46.13.153", "361");
INSERT INTO `wp_gf_form_view` VALUES("22318", "6", "2015-12-09 04:22:27", "167.114.234.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("22319", "9", "2015-12-09 04:23:13", "167.114.234.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("22320", "1", "2015-12-09 04:23:52", "167.114.234.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("22321", "2", "2015-12-09 04:24:15", "167.114.234.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("22322", "5", "2015-12-09 04:24:32", "167.114.234.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("22323", "8", "2015-12-09 05:01:11", "202.46.58.85", "22");
INSERT INTO `wp_gf_form_view` VALUES("22324", "3", "2015-12-09 05:01:11", "202.46.58.85", "59");
INSERT INTO `wp_gf_form_view` VALUES("22325", "1", "2015-12-09 05:11:28", "118.244.254.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("22326", "5", "2015-12-09 05:53:28", "157.55.39.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("22327", "8", "2015-12-09 06:07:04", "202.46.58.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("22328", "3", "2015-12-09 06:07:04", "202.46.58.90", "40");
INSERT INTO `wp_gf_form_view` VALUES("22329", "8", "2015-12-09 07:03:35", "202.46.50.133", "13");
INSERT INTO `wp_gf_form_view` VALUES("22330", "3", "2015-12-09 07:03:35", "202.46.50.133", "35");
INSERT INTO `wp_gf_form_view` VALUES("22331", "8", "2015-12-09 08:00:06", "202.46.49.137", "14");
INSERT INTO `wp_gf_form_view` VALUES("22332", "3", "2015-12-09 08:00:06", "202.46.49.137", "34");
INSERT INTO `wp_gf_form_view` VALUES("22333", "8", "2015-12-09 09:05:13", "216.158.217.156", "18");
INSERT INTO `wp_gf_form_view` VALUES("22334", "3", "2015-12-09 09:05:14", "216.158.217.156", "54");
INSERT INTO `wp_gf_form_view` VALUES("22335", "5", "2015-12-09 09:34:40", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22336", "8", "2015-12-09 10:03:25", "202.46.57.205", "12");
INSERT INTO `wp_gf_form_view` VALUES("22337", "3", "2015-12-09 10:03:25", "202.46.57.205", "29");
INSERT INTO `wp_gf_form_view` VALUES("22338", "8", "2015-12-09 11:09:19", "202.46.57.198", "9");
INSERT INTO `wp_gf_form_view` VALUES("22339", "3", "2015-12-09 11:09:19", "202.46.57.198", "26");
INSERT INTO `wp_gf_form_view` VALUES("22340", "8", "2015-12-09 12:05:51", "202.46.48.87", "16");
INSERT INTO `wp_gf_form_view` VALUES("22341", "3", "2015-12-09 12:05:51", "202.46.48.87", "49");
INSERT INTO `wp_gf_form_view` VALUES("22342", "8", "2015-12-09 13:02:20", "202.46.54.106", "18");
INSERT INTO `wp_gf_form_view` VALUES("22343", "3", "2015-12-09 13:02:20", "202.46.54.106", "44");
INSERT INTO `wp_gf_form_view` VALUES("22344", "8", "2015-12-09 14:08:16", "202.46.55.131", "18");
INSERT INTO `wp_gf_form_view` VALUES("22345", "3", "2015-12-09 14:08:16", "202.46.55.131", "49");
INSERT INTO `wp_gf_form_view` VALUES("22346", "1", "2015-12-09 14:09:11", "107.153.2.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("22347", "3", "2015-12-09 15:04:46", "202.46.51.15", "80");
INSERT INTO `wp_gf_form_view` VALUES("22348", "8", "2015-12-09 15:04:47", "202.46.51.15", "26");
INSERT INTO `wp_gf_form_view` VALUES("22349", "1", "2015-12-09 15:12:14", "155.94.140.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("22350", "6", "2015-12-09 15:18:30", "157.55.39.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("22351", "8", "2015-12-09 16:01:16", "202.46.53.121", "17");
INSERT INTO `wp_gf_form_view` VALUES("22352", "3", "2015-12-09 16:01:16", "202.46.53.121", "48");
INSERT INTO `wp_gf_form_view` VALUES("22353", "1", "2015-12-09 16:16:43", "46.17.99.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("22354", "8", "2015-12-09 17:07:12", "202.46.54.184", "18");
INSERT INTO `wp_gf_form_view` VALUES("22355", "3", "2015-12-09 17:07:13", "202.46.54.184", "52");
INSERT INTO `wp_gf_form_view` VALUES("22356", "1", "2015-12-09 17:11:22", "211.141.64.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("22357", "8", "2015-12-09 18:03:43", "202.46.53.207", "29");
INSERT INTO `wp_gf_form_view` VALUES("22358", "3", "2015-12-09 18:03:44", "202.46.53.207", "89");
INSERT INTO `wp_gf_form_view` VALUES("22359", "1", "2015-12-09 18:36:32", "184.69.117.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("22360", "8", "2015-12-09 19:00:20", "202.46.51.103", "42");
INSERT INTO `wp_gf_form_view` VALUES("22361", "3", "2015-12-09 19:00:20", "202.46.51.103", "328");
INSERT INTO `wp_gf_form_view` VALUES("22362", "9", "2015-12-09 19:06:42", "188.165.15.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("22363", "2", "2015-12-09 19:37:32", "104.131.84.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("22364", "3", "2015-12-09 20:06:09", "202.46.51.158", "134");
INSERT INTO `wp_gf_form_view` VALUES("22365", "8", "2015-12-09 20:06:09", "202.46.51.158", "18");
INSERT INTO `wp_gf_form_view` VALUES("22366", "3", "2015-12-09 21:00:07", "66.249.74.104", "117");
INSERT INTO `wp_gf_form_view` VALUES("22367", "8", "2015-12-09 21:00:08", "66.249.74.104", "13");
INSERT INTO `wp_gf_form_view` VALUES("22368", "3", "2015-12-09 22:08:34", "202.46.56.111", "115");
INSERT INTO `wp_gf_form_view` VALUES("22369", "8", "2015-12-09 22:08:34", "202.46.56.111", "15");
INSERT INTO `wp_gf_form_view` VALUES("22370", "3", "2015-12-09 23:05:05", "202.46.49.62", "113");
INSERT INTO `wp_gf_form_view` VALUES("22371", "8", "2015-12-09 23:05:05", "202.46.49.62", "15");
INSERT INTO `wp_gf_form_view` VALUES("22372", "9", "2015-12-09 23:28:54", "207.46.13.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("22373", "3", "2015-12-10 00:00:18", "207.46.13.153", "115");
INSERT INTO `wp_gf_form_view` VALUES("22374", "8", "2015-12-10 00:00:18", "207.46.13.153", "16");
INSERT INTO `wp_gf_form_view` VALUES("22375", "1", "2015-12-10 00:14:43", "142.36.180.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("22376", "3", "2015-12-10 01:02:43", "157.55.39.122", "96");
INSERT INTO `wp_gf_form_view` VALUES("22377", "8", "2015-12-10 01:02:43", "157.55.39.122", "13");
INSERT INTO `wp_gf_form_view` VALUES("22378", "3", "2015-12-10 02:05:37", "202.46.58.184", "120");
INSERT INTO `wp_gf_form_view` VALUES("22379", "8", "2015-12-10 02:05:38", "202.46.58.184", "14");
INSERT INTO `wp_gf_form_view` VALUES("22380", "3", "2015-12-10 03:03:07", "202.46.58.189", "210");
INSERT INTO `wp_gf_form_view` VALUES("22381", "8", "2015-12-10 03:03:07", "202.46.58.189", "25");
INSERT INTO `wp_gf_form_view` VALUES("22382", "3", "2015-12-10 04:00:40", "202.46.57.173", "156");
INSERT INTO `wp_gf_form_view` VALUES("22383", "8", "2015-12-10 04:00:40", "202.46.57.173", "20");
INSERT INTO `wp_gf_form_view` VALUES("22384", "3", "2015-12-10 05:12:38", "202.46.51.22", "63");
INSERT INTO `wp_gf_form_view` VALUES("22385", "8", "2015-12-10 05:12:41", "202.46.51.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("22386", "3", "2015-12-10 06:02:00", "66.249.74.102", "122");
INSERT INTO `wp_gf_form_view` VALUES("22387", "8", "2015-12-10 06:02:00", "66.249.74.102", "15");
INSERT INTO `wp_gf_form_view` VALUES("22388", "3", "2015-12-10 07:04:46", "66.249.65.97", "91");
INSERT INTO `wp_gf_form_view` VALUES("22389", "8", "2015-12-10 07:04:46", "66.249.65.97", "12");
INSERT INTO `wp_gf_form_view` VALUES("22390", "3", "2015-12-10 08:03:08", "188.165.15.233", "89");
INSERT INTO `wp_gf_form_view` VALUES("22391", "8", "2015-12-10 08:03:08", "188.165.15.233", "11");
INSERT INTO `wp_gf_form_view` VALUES("22392", "3", "2015-12-10 09:02:46", "202.46.52.41", "157");
INSERT INTO `wp_gf_form_view` VALUES("22393", "8", "2015-12-10 09:02:47", "202.46.52.41", "18");
INSERT INTO `wp_gf_form_view` VALUES("22394", "3", "2015-12-10 10:00:18", "202.46.52.141", "92");
INSERT INTO `wp_gf_form_view` VALUES("22395", "8", "2015-12-10 10:00:19", "202.46.52.141", "11");
INSERT INTO `wp_gf_form_view` VALUES("22396", "3", "2015-12-10 11:07:24", "188.165.15.233", "182");
INSERT INTO `wp_gf_form_view` VALUES("22397", "8", "2015-12-10 11:07:24", "188.165.15.233", "22");
INSERT INTO `wp_gf_form_view` VALUES("22398", "3", "2015-12-10 12:09:30", "209.94.177.10", "98");
INSERT INTO `wp_gf_form_view` VALUES("22399", "8", "2015-12-10 12:09:30", "209.94.177.10", "13");
INSERT INTO `wp_gf_form_view` VALUES("22400", "3", "2015-12-10 13:07:20", "202.46.48.83", "75");
INSERT INTO `wp_gf_form_view` VALUES("22401", "8", "2015-12-10 13:07:20", "202.46.48.83", "9");
INSERT INTO `wp_gf_form_view` VALUES("22402", "3", "2015-12-10 14:04:51", "202.46.58.73", "79");
INSERT INTO `wp_gf_form_view` VALUES("22403", "8", "2015-12-10 14:04:52", "202.46.58.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("22404", "3", "2015-12-10 15:02:29", "202.46.51.138", "167");
INSERT INTO `wp_gf_form_view` VALUES("22405", "8", "2015-12-10 15:02:29", "202.46.51.138", "22");
INSERT INTO `wp_gf_form_view` VALUES("22406", "2", "2015-12-10 15:57:00", "178.62.141.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("22407", "3", "2015-12-10 16:02:06", "24.68.146.132", "201");
INSERT INTO `wp_gf_form_view` VALUES("22408", "8", "2015-12-10 16:02:06", "24.68.146.132", "25");
INSERT INTO `wp_gf_form_view` VALUES("22409", "1", "2015-12-10 16:35:45", "98.237.176.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("22410", "3", "2015-12-10 17:03:14", "216.232.145.151", "210");
INSERT INTO `wp_gf_form_view` VALUES("22411", "8", "2015-12-10 17:03:14", "68.180.229.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("22412", "8", "2015-12-10 17:03:14", "216.232.145.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("22413", "3", "2015-12-10 18:03:06", "66.249.74.106", "59");
INSERT INTO `wp_gf_form_view` VALUES("22414", "8", "2015-12-10 18:03:06", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("22415", "3", "2015-12-10 19:06:57", "202.46.50.198", "71");
INSERT INTO `wp_gf_form_view` VALUES("22416", "8", "2015-12-10 19:06:58", "202.46.50.198", "10");
INSERT INTO `wp_gf_form_view` VALUES("22417", "3", "2015-12-10 20:04:31", "202.46.55.89", "91");
INSERT INTO `wp_gf_form_view` VALUES("22418", "8", "2015-12-10 20:04:31", "202.46.55.89", "12");
INSERT INTO `wp_gf_form_view` VALUES("22419", "3", "2015-12-10 21:02:03", "202.46.52.156", "89");
INSERT INTO `wp_gf_form_view` VALUES("22420", "8", "2015-12-10 21:02:03", "202.46.52.156", "13");
INSERT INTO `wp_gf_form_view` VALUES("22421", "1", "2015-12-10 21:54:41", "104.227.92.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("22422", "3", "2015-12-10 22:13:58", "202.46.56.195", "156");
INSERT INTO `wp_gf_form_view` VALUES("22423", "8", "2015-12-10 22:13:58", "202.46.56.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("22424", "3", "2015-12-10 23:10:37", "66.249.74.106", "59");
INSERT INTO `wp_gf_form_view` VALUES("22425", "8", "2015-12-10 23:10:37", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("22426", "3", "2015-12-11 00:09:06", "202.46.56.180", "93");
INSERT INTO `wp_gf_form_view` VALUES("22427", "8", "2015-12-11 00:09:06", "202.46.56.180", "12");
INSERT INTO `wp_gf_form_view` VALUES("22428", "3", "2015-12-11 01:06:28", "24.68.66.211", "162");
INSERT INTO `wp_gf_form_view` VALUES("22429", "8", "2015-12-11 01:06:28", "24.68.66.211", "21");
INSERT INTO `wp_gf_form_view` VALUES("22430", "3", "2015-12-11 02:01:41", "66.249.74.104", "167");
INSERT INTO `wp_gf_form_view` VALUES("22431", "8", "2015-12-11 02:01:41", "66.249.74.104", "21");
INSERT INTO `wp_gf_form_view` VALUES("22432", "1", "2015-12-11 02:02:49", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("22433", "3", "2015-12-11 03:01:41", "202.46.58.19", "107");
INSERT INTO `wp_gf_form_view` VALUES("22434", "8", "2015-12-11 03:01:41", "202.46.58.19", "13");
INSERT INTO `wp_gf_form_view` VALUES("22435", "1", "2015-12-11 03:42:33", "221.237.22.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("22436", "3", "2015-12-11 04:08:09", "157.55.39.122", "58");
INSERT INTO `wp_gf_form_view` VALUES("22437", "8", "2015-12-11 04:08:09", "157.55.39.122", "7");
INSERT INTO `wp_gf_form_view` VALUES("22438", "3", "2015-12-11 05:06:16", "66.249.74.106", "100");
INSERT INTO `wp_gf_form_view` VALUES("22439", "8", "2015-12-11 05:06:16", "66.249.74.106", "13");
INSERT INTO `wp_gf_form_view` VALUES("22440", "3", "2015-12-11 06:08:42", "202.46.49.145", "47");
INSERT INTO `wp_gf_form_view` VALUES("22441", "8", "2015-12-11 06:08:42", "202.46.49.145", "6");
INSERT INTO `wp_gf_form_view` VALUES("22442", "3", "2015-12-11 07:01:39", "69.58.178.59", "117");
INSERT INTO `wp_gf_form_view` VALUES("22443", "8", "2015-12-11 07:01:39", "69.58.178.59", "14");
INSERT INTO `wp_gf_form_view` VALUES("22444", "2", "2015-12-11 07:06:35", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("22445", "3", "2015-12-11 08:03:51", "202.46.58.53", "208");
INSERT INTO `wp_gf_form_view` VALUES("22446", "8", "2015-12-11 08:03:51", "202.46.58.53", "26");
INSERT INTO `wp_gf_form_view` VALUES("22447", "2", "2015-12-11 08:29:54", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("22448", "3", "2015-12-11 09:19:50", "40.77.167.81", "25");
INSERT INTO `wp_gf_form_view` VALUES("22449", "8", "2015-12-11 09:19:50", "40.77.167.81", "3");
INSERT INTO `wp_gf_form_view` VALUES("22450", "3", "2015-12-11 10:51:01", "66.249.74.102", "16");
INSERT INTO `wp_gf_form_view` VALUES("22451", "8", "2015-12-11 10:51:08", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("22452", "3", "2015-12-11 11:19:24", "207.46.13.116", "104");
INSERT INTO `wp_gf_form_view` VALUES("22453", "8", "2015-12-11 11:19:24", "207.46.13.116", "12");
INSERT INTO `wp_gf_form_view` VALUES("22454", "3", "2015-12-11 12:09:41", "202.46.51.206", "49");
INSERT INTO `wp_gf_form_view` VALUES("22455", "8", "2015-12-11 12:09:42", "202.46.51.206", "6");
INSERT INTO `wp_gf_form_view` VALUES("22456", "9", "2015-12-11 13:06:33", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("22457", "3", "2015-12-11 13:06:33", "66.249.74.106", "41");
INSERT INTO `wp_gf_form_view` VALUES("22458", "8", "2015-12-11 13:06:34", "66.249.74.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("22459", "3", "2015-12-11 14:36:45", "134.249.52.203", "32");
INSERT INTO `wp_gf_form_view` VALUES("22460", "8", "2015-12-11 14:36:45", "134.249.52.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("22461", "2", "2015-12-11 14:49:22", "40.77.167.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("22462", "3", "2015-12-11 15:04:10", "68.180.229.161", "68");
INSERT INTO `wp_gf_form_view` VALUES("22463", "8", "2015-12-11 15:04:10", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("22464", "1", "2015-12-11 16:07:56", "45.35.105.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("22465", "3", "2015-12-11 16:07:56", "45.35.105.208", "65");
INSERT INTO `wp_gf_form_view` VALUES("22466", "8", "2015-12-11 16:07:57", "45.35.105.208", "8");
INSERT INTO `wp_gf_form_view` VALUES("22467", "6", "2015-12-11 16:43:00", "157.55.39.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("22468", "3", "2015-12-11 17:08:32", "40.77.167.81", "91");
INSERT INTO `wp_gf_form_view` VALUES("22469", "8", "2015-12-11 17:08:35", "40.77.167.81", "11");
INSERT INTO `wp_gf_form_view` VALUES("22470", "3", "2015-12-11 18:09:07", "66.249.74.106", "65");
INSERT INTO `wp_gf_form_view` VALUES("22471", "8", "2015-12-11 18:09:08", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("22472", "3", "2015-12-11 19:07:29", "62.210.162.184", "59");
INSERT INTO `wp_gf_form_view` VALUES("22473", "8", "2015-12-11 19:07:29", "62.210.162.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("22474", "3", "2015-12-11 20:31:26", "66.249.66.78", "77");
INSERT INTO `wp_gf_form_view` VALUES("22475", "8", "2015-12-11 20:31:26", "66.249.66.78", "9");
INSERT INTO `wp_gf_form_view` VALUES("22476", "3", "2015-12-11 21:08:58", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("22477", "8", "2015-12-11 21:08:59", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("22478", "9", "2015-12-11 21:28:45", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("22479", "3", "2015-12-11 22:01:38", "66.249.74.104", "57");
INSERT INTO `wp_gf_form_view` VALUES("22480", "8", "2015-12-11 22:01:39", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("22481", "3", "2015-12-11 23:00:19", "66.249.74.106", "208");
INSERT INTO `wp_gf_form_view` VALUES("22482", "8", "2015-12-11 23:00:23", "66.249.74.106", "26");
INSERT INTO `wp_gf_form_view` VALUES("22483", "7", "2015-12-11 23:10:12", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("22484", "2", "2015-12-11 23:23:34", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("22485", "9", "2015-12-11 23:57:19", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("22486", "3", "2015-12-12 00:13:17", "207.46.13.178", "212");
INSERT INTO `wp_gf_form_view` VALUES("22487", "8", "2015-12-12 00:13:18", "207.46.13.178", "25");
INSERT INTO `wp_gf_form_view` VALUES("22488", "2", "2015-12-12 00:26:03", "179.61.138.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("22489", "3", "2015-12-12 01:00:40", "62.210.162.184", "66");
INSERT INTO `wp_gf_form_view` VALUES("22490", "8", "2015-12-12 01:00:40", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("22491", "2", "2015-12-12 02:07:47", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("22492", "3", "2015-12-12 02:07:56", "62.210.162.184", "58");
INSERT INTO `wp_gf_form_view` VALUES("22493", "8", "2015-12-12 02:07:58", "62.210.162.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("22494", "3", "2015-12-12 03:39:54", "155.94.215.37", "40");
INSERT INTO `wp_gf_form_view` VALUES("22495", "8", "2015-12-12 03:39:55", "155.94.215.37", "5");
INSERT INTO `wp_gf_form_view` VALUES("22496", "2", "2015-12-12 03:50:54", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("22497", "3", "2015-12-12 04:31:34", "62.210.162.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("22498", "8", "2015-12-12 04:31:35", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("22499", "3", "2015-12-12 05:00:42", "66.249.74.102", "25");
INSERT INTO `wp_gf_form_view` VALUES("22500", "8", "2015-12-12 05:00:43", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("22501", "2", "2015-12-12 05:32:27", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("22502", "3", "2015-12-12 06:12:38", "62.210.162.184", "50");
INSERT INTO `wp_gf_form_view` VALUES("22503", "8", "2015-12-12 06:12:38", "62.210.162.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("22504", "3", "2015-12-12 07:36:06", "207.46.13.25", "56");
INSERT INTO `wp_gf_form_view` VALUES("22505", "8", "2015-12-12 07:36:09", "207.46.13.25", "7");
INSERT INTO `wp_gf_form_view` VALUES("22506", "2", "2015-12-12 07:38:48", "40.77.167.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("22507", "3", "2015-12-12 09:00:57", "23.94.87.23", "67");
INSERT INTO `wp_gf_form_view` VALUES("22508", "8", "2015-12-12 09:00:57", "23.94.87.23", "8");
INSERT INTO `wp_gf_form_view` VALUES("22509", "9", "2015-12-12 10:47:45", "66.249.88.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("22510", "3", "2015-12-12 10:47:46", "66.249.88.225", "24");
INSERT INTO `wp_gf_form_view` VALUES("22511", "8", "2015-12-12 10:47:46", "66.249.88.225", "3");
INSERT INTO `wp_gf_form_view` VALUES("22512", "3", "2015-12-12 11:03:13", "66.249.74.104", "29");
INSERT INTO `wp_gf_form_view` VALUES("22513", "8", "2015-12-12 11:03:13", "66.249.74.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("22514", "3", "2015-12-12 12:04:54", "178.137.165.96", "88");
INSERT INTO `wp_gf_form_view` VALUES("22515", "8", "2015-12-12 12:04:54", "178.137.165.96", "11");
INSERT INTO `wp_gf_form_view` VALUES("22516", "1", "2015-12-12 13:03:04", "185.104.217.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("22517", "3", "2015-12-12 13:03:04", "185.104.217.93", "49");
INSERT INTO `wp_gf_form_view` VALUES("22518", "8", "2015-12-12 13:03:04", "185.104.217.93", "6");
INSERT INTO `wp_gf_form_view` VALUES("22519", "3", "2015-12-12 14:28:31", "68.180.229.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("22520", "8", "2015-12-12 14:28:31", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("22521", "3", "2015-12-12 15:14:08", "68.180.229.161", "56");
INSERT INTO `wp_gf_form_view` VALUES("22522", "8", "2015-12-12 15:14:09", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("22523", "2", "2015-12-12 15:49:35", "40.77.167.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("22524", "3", "2015-12-12 16:18:36", "207.46.13.168", "40");
INSERT INTO `wp_gf_form_view` VALUES("22525", "8", "2015-12-12 16:18:36", "207.46.13.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("22526", "3", "2015-12-12 17:16:13", "100.43.81.141", "8");
INSERT INTO `wp_gf_form_view` VALUES("22527", "8", "2015-12-12 17:16:13", "100.43.81.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("22528", "3", "2015-12-12 18:03:13", "174.127.133.105", "565");
INSERT INTO `wp_gf_form_view` VALUES("22529", "8", "2015-12-12 18:03:14", "174.127.133.105", "74");
INSERT INTO `wp_gf_form_view` VALUES("22530", "2", "2015-12-12 18:05:42", "174.127.133.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("22531", "3", "2015-12-12 19:16:34", "178.137.165.96", "39");
INSERT INTO `wp_gf_form_view` VALUES("22532", "3", "2015-12-12 19:16:34", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22533", "8", "2015-12-12 19:16:34", "178.137.165.96", "4");
INSERT INTO `wp_gf_form_view` VALUES("22534", "8", "2015-12-12 19:16:34", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22535", "3", "2015-12-12 20:09:58", "162.243.1.53", "2712");
INSERT INTO `wp_gf_form_view` VALUES("22536", "8", "2015-12-12 20:09:59", "162.243.1.53", "345");
INSERT INTO `wp_gf_form_view` VALUES("22537", "1", "2015-12-12 20:16:44", "162.243.1.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("22538", "5", "2015-12-12 20:25:22", "162.243.1.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("22539", "6", "2015-12-12 20:37:01", "162.243.1.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("22540", "9", "2015-12-12 20:47:02", "162.243.1.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("22541", "3", "2015-12-12 21:00:00", "162.243.1.53", "1793");
INSERT INTO `wp_gf_form_view` VALUES("22542", "8", "2015-12-12 21:00:03", "162.243.1.53", "227");
INSERT INTO `wp_gf_form_view` VALUES("22543", "2", "2015-12-12 21:07:50", "192.77.245.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("22544", "3", "2015-12-12 23:05:59", "23.244.122.136", "139");
INSERT INTO `wp_gf_form_view` VALUES("22545", "8", "2015-12-12 23:06:02", "23.244.122.136", "17");
INSERT INTO `wp_gf_form_view` VALUES("22546", "3", "2015-12-13 00:01:24", "24.69.41.60", "31");
INSERT INTO `wp_gf_form_view` VALUES("22547", "3", "2015-12-13 00:01:24", "24.69.41.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("22548", "8", "2015-12-13 00:01:27", "24.69.41.60", "3");
INSERT INTO `wp_gf_form_view` VALUES("22549", "8", "2015-12-13 00:01:27", "24.69.41.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("22550", "6", "2015-12-13 00:10:58", "136.243.17.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22551", "3", "2015-12-13 01:15:02", "66.249.74.102", "50");
INSERT INTO `wp_gf_form_view` VALUES("22552", "8", "2015-12-13 01:15:02", "66.249.74.102", "6");
INSERT INTO `wp_gf_form_view` VALUES("22553", "3", "2015-12-13 02:19:17", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("22554", "8", "2015-12-13 02:19:17", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("22555", "3", "2015-12-13 03:43:38", "66.249.88.225", "8");
INSERT INTO `wp_gf_form_view` VALUES("22556", "8", "2015-12-13 03:43:38", "66.249.88.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("22557", "3", "2015-12-13 04:16:48", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("22558", "8", "2015-12-13 04:16:48", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("22559", "3", "2015-12-13 05:18:32", "66.249.74.104", "57");
INSERT INTO `wp_gf_form_view` VALUES("22560", "8", "2015-12-13 05:18:34", "66.249.74.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("22561", "3", "2015-12-13 06:30:09", "134.249.52.203", "87");
INSERT INTO `wp_gf_form_view` VALUES("22562", "3", "2015-12-13 06:30:09", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22563", "3", "2015-12-13 06:30:09", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22564", "8", "2015-12-13 06:30:10", "134.249.52.203", "9");
INSERT INTO `wp_gf_form_view` VALUES("22565", "8", "2015-12-13 06:30:10", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22566", "8", "2015-12-13 06:30:10", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22567", "3", "2015-12-13 07:00:28", "128.177.10.216", "88");
INSERT INTO `wp_gf_form_view` VALUES("22568", "8", "2015-12-13 07:00:28", "128.177.10.216", "11");
INSERT INTO `wp_gf_form_view` VALUES("22569", "1", "2015-12-13 07:00:30", "128.177.10.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("22570", "8", "2015-12-13 09:00:58", "188.165.15.233", "5");
INSERT INTO `wp_gf_form_view` VALUES("22571", "3", "2015-12-13 09:01:02", "188.165.15.233", "32");
INSERT INTO `wp_gf_form_view` VALUES("22572", "3", "2015-12-13 10:13:22", "66.249.74.102", "9");
INSERT INTO `wp_gf_form_view` VALUES("22573", "8", "2015-12-13 10:13:22", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("22574", "3", "2015-12-13 11:13:36", "68.180.229.161", "33");
INSERT INTO `wp_gf_form_view` VALUES("22575", "8", "2015-12-13 11:13:40", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("22576", "3", "2015-12-13 12:19:52", "216.158.217.156", "181");
INSERT INTO `wp_gf_form_view` VALUES("22577", "8", "2015-12-13 12:19:54", "216.158.217.156", "22");
INSERT INTO `wp_gf_form_view` VALUES("22578", "3", "2015-12-13 14:09:27", "62.210.162.184", "31");
INSERT INTO `wp_gf_form_view` VALUES("22579", "8", "2015-12-13 14:09:28", "62.210.162.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("22580", "3", "2015-12-13 15:17:15", "207.46.13.44", "58");
INSERT INTO `wp_gf_form_view` VALUES("22581", "8", "2015-12-13 15:17:15", "207.46.13.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("22582", "1", "2015-12-13 15:26:10", "151.80.135.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("22583", "3", "2015-12-13 16:10:22", "207.46.13.168", "16");
INSERT INTO `wp_gf_form_view` VALUES("22584", "8", "2015-12-13 16:10:22", "207.46.13.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("22585", "3", "2015-12-13 17:14:26", "192.77.245.76", "49");
INSERT INTO `wp_gf_form_view` VALUES("22586", "8", "2015-12-13 17:14:27", "192.77.245.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("22587", "3", "2015-12-13 18:04:24", "207.46.13.75", "62");
INSERT INTO `wp_gf_form_view` VALUES("22588", "8", "2015-12-13 18:04:24", "207.46.13.75", "8");
INSERT INTO `wp_gf_form_view` VALUES("22589", "3", "2015-12-13 19:20:17", "46.118.153.165", "120");
INSERT INTO `wp_gf_form_view` VALUES("22590", "8", "2015-12-13 19:20:18", "46.118.153.165", "15");
INSERT INTO `wp_gf_form_view` VALUES("22591", "3", "2015-12-13 20:12:02", "134.87.135.214", "32");
INSERT INTO `wp_gf_form_view` VALUES("22592", "8", "2015-12-13 20:12:02", "134.87.135.214", "4");
INSERT INTO `wp_gf_form_view` VALUES("22593", "8", "2015-12-13 21:02:11", "207.46.13.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("22594", "3", "2015-12-13 21:02:13", "207.46.13.75", "24");
INSERT INTO `wp_gf_form_view` VALUES("22595", "3", "2015-12-13 22:07:03", "184.151.118.74", "168");
INSERT INTO `wp_gf_form_view` VALUES("22596", "8", "2015-12-13 22:07:03", "184.151.118.74", "21");
INSERT INTO `wp_gf_form_view` VALUES("22597", "3", "2015-12-13 23:00:35", "62.210.162.184", "40");
INSERT INTO `wp_gf_form_view` VALUES("22598", "8", "2015-12-13 23:00:35", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("22599", "3", "2015-12-14 00:11:10", "202.46.57.207", "70");
INSERT INTO `wp_gf_form_view` VALUES("22600", "8", "2015-12-14 00:11:10", "202.46.57.207", "9");
INSERT INTO `wp_gf_form_view` VALUES("22601", "3", "2015-12-14 01:11:55", "40.77.167.81", "95");
INSERT INTO `wp_gf_form_view` VALUES("22602", "8", "2015-12-14 01:11:56", "40.77.167.81", "11");
INSERT INTO `wp_gf_form_view` VALUES("22603", "3", "2015-12-14 02:15:38", "202.46.50.183", "62");
INSERT INTO `wp_gf_form_view` VALUES("22604", "8", "2015-12-14 02:15:39", "202.46.50.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("22605", "3", "2015-12-14 03:00:58", "70.67.81.98", "8");
INSERT INTO `wp_gf_form_view` VALUES("22606", "8", "2015-12-14 03:00:58", "70.67.81.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("22607", "3", "2015-12-14 04:17:45", "62.210.162.184", "51");
INSERT INTO `wp_gf_form_view` VALUES("22608", "8", "2015-12-14 04:17:46", "62.210.162.184", "6");
INSERT INTO `wp_gf_form_view` VALUES("22609", "3", "2015-12-14 05:04:33", "202.46.50.15", "55");
INSERT INTO `wp_gf_form_view` VALUES("22610", "8", "2015-12-14 05:04:33", "202.46.50.15", "6");
INSERT INTO `wp_gf_form_view` VALUES("22611", "3", "2015-12-14 06:16:45", "68.180.229.161", "91");
INSERT INTO `wp_gf_form_view` VALUES("22612", "8", "2015-12-14 06:16:45", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("22613", "1", "2015-12-14 06:52:35", "120.52.73.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("22614", "3", "2015-12-14 07:23:04", "207.46.13.168", "35");
INSERT INTO `wp_gf_form_view` VALUES("22615", "8", "2015-12-14 07:23:09", "207.46.13.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("22616", "3", "2015-12-14 08:33:18", "178.137.165.96", "67");
INSERT INTO `wp_gf_form_view` VALUES("22617", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22618", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22619", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22620", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22621", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22622", "8", "2015-12-14 08:33:18", "178.137.165.96", "4");
INSERT INTO `wp_gf_form_view` VALUES("22623", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22624", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22625", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22626", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22627", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("22628", "5", "2015-12-14 08:33:26", "207.46.13.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("22629", "3", "2015-12-14 09:00:49", "23.254.240.222", "147");
INSERT INTO `wp_gf_form_view` VALUES("22630", "8", "2015-12-14 09:00:49", "23.254.240.222", "19");
INSERT INTO `wp_gf_form_view` VALUES("22631", "2", "2015-12-14 09:29:00", "45.72.0.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("22632", "3", "2015-12-14 10:08:31", "77.75.77.36", "41");
INSERT INTO `wp_gf_form_view` VALUES("22633", "8", "2015-12-14 10:08:31", "77.75.77.36", "6");
INSERT INTO `wp_gf_form_view` VALUES("22634", "3", "2015-12-14 11:01:20", "188.165.15.233", "128");
INSERT INTO `wp_gf_form_view` VALUES("22635", "8", "2015-12-14 11:01:20", "188.165.15.233", "15");
INSERT INTO `wp_gf_form_view` VALUES("22636", "3", "2015-12-14 12:06:32", "68.180.229.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("22637", "8", "2015-12-14 12:29:11", "207.46.13.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("22638", "3", "2015-12-14 13:11:27", "77.75.77.17", "25");
INSERT INTO `wp_gf_form_view` VALUES("22639", "8", "2015-12-14 13:11:27", "77.75.77.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("22640", "3", "2015-12-14 14:42:11", "188.165.15.233", "16");
INSERT INTO `wp_gf_form_view` VALUES("22641", "8", "2015-12-14 14:42:11", "188.165.15.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("22642", "3", "2015-12-14 15:03:52", "68.180.229.161", "98");
INSERT INTO `wp_gf_form_view` VALUES("22643", "8", "2015-12-14 15:04:39", "134.249.52.203", "12");
INSERT INTO `wp_gf_form_view` VALUES("22644", "3", "2015-12-14 16:00:12", "68.180.229.161", "32");
INSERT INTO `wp_gf_form_view` VALUES("22645", "8", "2015-12-14 16:00:12", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("22646", "3", "2015-12-14 17:06:34", "66.249.66.75", "40");
INSERT INTO `wp_gf_form_view` VALUES("22647", "8", "2015-12-14 17:06:34", "66.249.66.75", "5");
INSERT INTO `wp_gf_form_view` VALUES("22648", "3", "2015-12-14 18:02:03", "104.247.7.127", "237");
INSERT INTO `wp_gf_form_view` VALUES("22649", "8", "2015-12-14 18:02:03", "104.247.7.127", "28");
INSERT INTO `wp_gf_form_view` VALUES("22650", "3", "2015-12-14 19:05:51", "185.53.44.85", "65");
INSERT INTO `wp_gf_form_view` VALUES("22651", "8", "2015-12-14 19:05:51", "185.53.44.85", "8");
INSERT INTO `wp_gf_form_view` VALUES("22652", "3", "2015-12-14 20:13:53", "96.54.167.78", "65");
INSERT INTO `wp_gf_form_view` VALUES("22653", "8", "2015-12-14 20:13:53", "96.54.167.78", "8");
INSERT INTO `wp_gf_form_view` VALUES("22654", "3", "2015-12-14 21:05:55", "185.53.44.158", "83");
INSERT INTO `wp_gf_form_view` VALUES("22655", "8", "2015-12-14 21:05:55", "185.53.44.158", "10");
INSERT INTO `wp_gf_form_view` VALUES("22656", "2", "2015-12-14 21:45:45", "185.53.44.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("22657", "3", "2015-12-14 22:19:53", "185.53.44.99", "61");
INSERT INTO `wp_gf_form_view` VALUES("22658", "8", "2015-12-14 22:19:53", "185.53.44.99", "8");
INSERT INTO `wp_gf_form_view` VALUES("22659", "1", "2015-12-14 22:54:06", "120.198.231.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("22660", "3", "2015-12-14 23:05:48", "96.54.197.214", "41");
INSERT INTO `wp_gf_form_view` VALUES("22661", "8", "2015-12-14 23:05:48", "96.54.197.214", "5");
INSERT INTO `wp_gf_form_view` VALUES("22662", "1", "2015-12-14 23:45:17", "192.126.192.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("22663", "3", "2015-12-15 00:05:24", "66.249.74.102", "76");
INSERT INTO `wp_gf_form_view` VALUES("22664", "8", "2015-12-15 00:05:24", "66.249.74.102", "9");
INSERT INTO `wp_gf_form_view` VALUES("22665", "3", "2015-12-15 01:25:07", "207.6.182.142", "40");
INSERT INTO `wp_gf_form_view` VALUES("22666", "8", "2015-12-15 01:25:08", "207.6.182.142", "5");
INSERT INTO `wp_gf_form_view` VALUES("22667", "3", "2015-12-15 03:07:05", "216.232.153.64", "16");
INSERT INTO `wp_gf_form_view` VALUES("22668", "8", "2015-12-15 03:07:07", "216.232.153.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("22669", "3", "2015-12-15 04:06:50", "220.181.108.187", "40");
INSERT INTO `wp_gf_form_view` VALUES("22670", "8", "2015-12-15 04:06:51", "220.181.108.187", "5");
INSERT INTO `wp_gf_form_view` VALUES("22671", "3", "2015-12-15 05:13:50", "207.46.13.168", "16");
INSERT INTO `wp_gf_form_view` VALUES("22672", "8", "2015-12-15 05:13:52", "207.46.13.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("22673", "3", "2015-12-15 06:00:12", "157.55.39.167", "148");
INSERT INTO `wp_gf_form_view` VALUES("22674", "8", "2015-12-15 06:00:13", "157.55.39.167", "18");
INSERT INTO `wp_gf_form_view` VALUES("22675", "3", "2015-12-15 07:05:57", "66.249.74.106", "100");
INSERT INTO `wp_gf_form_view` VALUES("22676", "8", "2015-12-15 07:05:58", "66.249.74.106", "13");
INSERT INTO `wp_gf_form_view` VALUES("22677", "2", "2015-12-15 07:13:55", "155.94.215.55", "4");
INSERT INTO `wp_gf_form_view` VALUES("22678", "3", "2015-12-15 08:10:07", "69.58.178.56", "226");
INSERT INTO `wp_gf_form_view` VALUES("22679", "8", "2015-12-15 08:10:07", "69.58.178.56", "28");
INSERT INTO `wp_gf_form_view` VALUES("22680", "2", "2015-12-15 08:10:48", "69.58.178.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("22681", "3", "2015-12-15 09:11:47", "23.244.122.145", "26");
INSERT INTO `wp_gf_form_view` VALUES("22682", "8", "2015-12-15 09:11:48", "23.244.122.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("22683", "3", "2015-12-15 10:02:37", "31.44.59.169", "146");
INSERT INTO `wp_gf_form_view` VALUES("22684", "8", "2015-12-15 10:02:45", "31.44.59.169", "18");
INSERT INTO `wp_gf_form_view` VALUES("22685", "1", "2015-12-15 10:25:48", "96.50.3.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("22686", "9", "2015-12-15 10:27:40", "96.50.3.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("22687", "2", "2015-12-15 10:42:34", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("22688", "3", "2015-12-15 11:05:00", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("22689", "8", "2015-12-15 11:05:01", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("22690", "3", "2015-12-15 12:02:58", "66.249.74.104", "73");
INSERT INTO `wp_gf_form_view` VALUES("22691", "8", "2015-12-15 12:02:59", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("22692", "8", "2015-12-15 12:02:59", "40.77.167.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("22693", "2", "2015-12-15 12:23:29", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("22694", "2", "2015-12-15 13:09:51", "155.94.215.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("22695", "3", "2015-12-15 13:09:51", "155.94.215.34", "82");
INSERT INTO `wp_gf_form_view` VALUES("22696", "8", "2015-12-15 13:09:52", "155.94.215.34", "10");
INSERT INTO `wp_gf_form_view` VALUES("22697", "1", "2015-12-15 13:18:10", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22698", "3", "2015-12-15 14:20:57", "40.77.167.31", "160");
INSERT INTO `wp_gf_form_view` VALUES("22699", "8", "2015-12-15 14:20:57", "40.77.167.31", "19");
INSERT INTO `wp_gf_form_view` VALUES("22700", "1", "2015-12-15 14:21:21", "192.126.192.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("22701", "3", "2015-12-15 15:13:53", "66.249.74.106", "2100");
INSERT INTO `wp_gf_form_view` VALUES("22702", "8", "2015-12-15 15:13:57", "66.249.74.106", "267");
INSERT INTO `wp_gf_form_view` VALUES("22703", "1", "2015-12-15 15:30:08", "104.131.223.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("22704", "5", "2015-12-15 15:39:03", "104.131.223.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("22705", "6", "2015-12-15 15:50:59", "104.131.223.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("22706", "3", "2015-12-15 16:00:03", "104.131.223.26", "2389");
INSERT INTO `wp_gf_form_view` VALUES("22707", "8", "2015-12-15 16:00:03", "104.131.223.26", "301");
INSERT INTO `wp_gf_form_view` VALUES("22708", "9", "2015-12-15 16:01:10", "104.131.223.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("22709", "3", "2015-12-15 17:13:54", "202.46.57.24", "29");
INSERT INTO `wp_gf_form_view` VALUES("22710", "8", "2015-12-15 17:13:56", "202.46.57.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("22711", "3", "2015-12-15 18:01:12", "96.127.134.17", "169");
INSERT INTO `wp_gf_form_view` VALUES("22712", "8", "2015-12-15 18:01:12", "96.127.134.17", "20");
INSERT INTO `wp_gf_form_view` VALUES("22713", "3", "2015-12-15 19:10:54", "202.46.48.193", "110");
INSERT INTO `wp_gf_form_view` VALUES("22714", "8", "2015-12-15 19:10:55", "202.46.48.193", "14");
INSERT INTO `wp_gf_form_view` VALUES("22715", "1", "2015-12-15 19:41:34", "5.231.30.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("22716", "3", "2015-12-15 20:01:15", "202.46.56.203", "122");
INSERT INTO `wp_gf_form_view` VALUES("22717", "8", "2015-12-15 20:01:15", "202.46.56.203", "16");
INSERT INTO `wp_gf_form_view` VALUES("22718", "3", "2015-12-15 21:03:13", "154.20.234.165", "128");
INSERT INTO `wp_gf_form_view` VALUES("22719", "8", "2015-12-15 21:03:13", "154.20.234.165", "16");
INSERT INTO `wp_gf_form_view` VALUES("22720", "1", "2015-12-15 21:13:32", "184.71.24.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("22721", "3", "2015-12-15 22:04:40", "23.94.10.4", "95");
INSERT INTO `wp_gf_form_view` VALUES("22722", "8", "2015-12-15 22:04:40", "23.94.10.4", "12");
INSERT INTO `wp_gf_form_view` VALUES("22723", "3", "2015-12-15 23:07:38", "154.20.234.165", "90");
INSERT INTO `wp_gf_form_view` VALUES("22724", "8", "2015-12-15 23:07:39", "154.20.234.165", "11");
INSERT INTO `wp_gf_form_view` VALUES("22725", "3", "2015-12-16 00:02:02", "184.71.11.78", "84");
INSERT INTO `wp_gf_form_view` VALUES("22726", "8", "2015-12-16 00:02:02", "184.71.11.78", "10");
INSERT INTO `wp_gf_form_view` VALUES("22727", "3", "2015-12-16 01:03:20", "202.46.51.181", "125");
INSERT INTO `wp_gf_form_view` VALUES("22728", "8", "2015-12-16 01:03:20", "202.46.51.181", "16");
INSERT INTO `wp_gf_form_view` VALUES("22729", "3", "2015-12-16 02:10:41", "202.46.51.201", "40");
INSERT INTO `wp_gf_form_view` VALUES("22730", "8", "2015-12-16 02:10:42", "202.46.51.201", "5");
INSERT INTO `wp_gf_form_view` VALUES("22731", "3", "2015-12-16 03:00:56", "202.46.58.58", "86");
INSERT INTO `wp_gf_form_view` VALUES("22732", "8", "2015-12-16 03:00:58", "202.46.58.58", "11");
INSERT INTO `wp_gf_form_view` VALUES("22733", "3", "2015-12-16 04:07:59", "202.46.50.156", "99");
INSERT INTO `wp_gf_form_view` VALUES("22734", "8", "2015-12-16 04:07:59", "202.46.50.156", "13");
INSERT INTO `wp_gf_form_view` VALUES("22735", "3", "2015-12-16 05:10:33", "68.180.229.161", "32");
INSERT INTO `wp_gf_form_view` VALUES("22736", "8", "2015-12-16 05:15:09", "202.46.52.208", "4");
INSERT INTO `wp_gf_form_view` VALUES("22737", "3", "2015-12-16 06:05:26", "202.46.52.141", "86");
INSERT INTO `wp_gf_form_view` VALUES("22738", "8", "2015-12-16 06:05:26", "202.46.52.141", "10");
INSERT INTO `wp_gf_form_view` VALUES("22739", "3", "2015-12-16 07:00:33", "66.249.74.106", "51");
INSERT INTO `wp_gf_form_view` VALUES("22740", "8", "2015-12-16 07:00:33", "66.249.74.106", "7");
INSERT INTO `wp_gf_form_view` VALUES("22741", "3", "2015-12-16 08:19:42", "202.46.56.209", "38");
INSERT INTO `wp_gf_form_view` VALUES("22742", "8", "2015-12-16 08:19:43", "202.46.56.209", "5");
INSERT INTO `wp_gf_form_view` VALUES("22743", "3", "2015-12-16 09:17:08", "134.249.52.203", "43");
INSERT INTO `wp_gf_form_view` VALUES("22744", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22745", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22746", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22747", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22748", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22749", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22750", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22751", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22752", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22753", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22754", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("22755", "3", "2015-12-16 10:05:17", "66.249.74.104", "18");
INSERT INTO `wp_gf_form_view` VALUES("22756", "8", "2015-12-16 10:05:18", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("22757", "3", "2015-12-16 11:12:14", "46.118.153.165", "299");
INSERT INTO `wp_gf_form_view` VALUES("22758", "3", "2015-12-16 11:12:14", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22759", "8", "2015-12-16 11:12:16", "46.118.153.165", "35");
INSERT INTO `wp_gf_form_view` VALUES("22760", "8", "2015-12-16 11:12:16", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22761", "8", "2015-12-16 11:12:16", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22762", "2", "2015-12-16 11:44:24", "70.35.205.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("22763", "3", "2015-12-16 12:29:38", "66.249.74.104", "23");
INSERT INTO `wp_gf_form_view` VALUES("22764", "8", "2015-12-16 12:45:52", "157.55.39.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("22765", "3", "2015-12-16 14:08:12", "66.249.74.102", "25");
INSERT INTO `wp_gf_form_view` VALUES("22766", "8", "2015-12-16 14:08:13", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("22767", "3", "2015-12-16 15:25:26", "207.46.13.108", "24");
INSERT INTO `wp_gf_form_view` VALUES("22768", "8", "2015-12-16 15:25:30", "207.46.13.108", "3");
INSERT INTO `wp_gf_form_view` VALUES("22769", "3", "2015-12-16 16:15:07", "40.77.167.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("22770", "8", "2015-12-16 16:15:07", "40.77.167.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("22771", "3", "2015-12-16 17:06:25", "70.66.236.111", "64");
INSERT INTO `wp_gf_form_view` VALUES("22772", "8", "2015-12-16 17:06:26", "70.66.236.111", "8");
INSERT INTO `wp_gf_form_view` VALUES("22773", "3", "2015-12-16 18:37:10", "184.71.24.158", "8");
INSERT INTO `wp_gf_form_view` VALUES("22774", "8", "2015-12-16 18:37:10", "184.71.24.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("22775", "3", "2015-12-16 19:05:14", "198.103.167.20", "202");
INSERT INTO `wp_gf_form_view` VALUES("22776", "8", "2015-12-16 19:05:14", "198.103.167.20", "26");
INSERT INTO `wp_gf_form_view` VALUES("22777", "2", "2015-12-16 19:33:54", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("22778", "3", "2015-12-16 20:22:10", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("22779", "8", "2015-12-16 20:22:10", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("22780", "3", "2015-12-16 21:30:22", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("22781", "8", "2015-12-16 21:30:24", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("22782", "3", "2015-12-16 22:14:45", "184.69.178.254", "49");
INSERT INTO `wp_gf_form_view` VALUES("22783", "8", "2015-12-16 22:14:45", "184.69.178.254", "6");
INSERT INTO `wp_gf_form_view` VALUES("22784", "3", "2015-12-16 23:17:29", "68.180.229.161", "42");
INSERT INTO `wp_gf_form_view` VALUES("22785", "8", "2015-12-16 23:17:38", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("22786", "3", "2015-12-17 00:18:55", "77.75.78.168", "51");
INSERT INTO `wp_gf_form_view` VALUES("22787", "8", "2015-12-17 00:18:56", "77.75.78.168", "7");
INSERT INTO `wp_gf_form_view` VALUES("22788", "3", "2015-12-17 01:05:15", "70.67.235.125", "153");
INSERT INTO `wp_gf_form_view` VALUES("22789", "8", "2015-12-17 01:05:15", "70.67.235.125", "19");
INSERT INTO `wp_gf_form_view` VALUES("22790", "2", "2015-12-17 01:50:57", "195.154.227.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("22791", "3", "2015-12-17 02:06:09", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("22792", "8", "2015-12-17 02:06:10", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("22793", "1", "2015-12-17 03:10:58", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("22794", "3", "2015-12-17 03:10:59", "91.200.12.138", "32");
INSERT INTO `wp_gf_form_view` VALUES("22795", "8", "2015-12-17 03:10:59", "91.200.12.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("22796", "3", "2015-12-17 04:31:55", "46.246.50.213", "17");
INSERT INTO `wp_gf_form_view` VALUES("22797", "8", "2015-12-17 04:31:56", "46.246.50.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("22798", "3", "2015-12-17 05:33:04", "157.55.39.149", "25");
INSERT INTO `wp_gf_form_view` VALUES("22799", "8", "2015-12-17 05:33:09", "157.55.39.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("22800", "3", "2015-12-17 06:31:41", "66.249.66.78", "24");
INSERT INTO `wp_gf_form_view` VALUES("22801", "8", "2015-12-17 06:31:41", "66.249.66.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("22802", "3", "2015-12-17 07:06:42", "65.55.218.63", "48");
INSERT INTO `wp_gf_form_view` VALUES("22803", "8", "2015-12-17 07:06:42", "65.55.218.63", "6");
INSERT INTO `wp_gf_form_view` VALUES("22804", "3", "2015-12-17 08:29:13", "141.8.143.178", "41");
INSERT INTO `wp_gf_form_view` VALUES("22805", "8", "2015-12-17 08:29:15", "141.8.143.178", "5");
INSERT INTO `wp_gf_form_view` VALUES("22806", "2", "2015-12-17 09:26:09", "91.200.12.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("22807", "3", "2015-12-17 09:26:43", "91.200.12.138", "32");
INSERT INTO `wp_gf_form_view` VALUES("22808", "8", "2015-12-17 09:26:49", "91.200.12.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("22809", "3", "2015-12-17 10:36:22", "46.118.153.165", "51");
INSERT INTO `wp_gf_form_view` VALUES("22810", "3", "2015-12-17 10:36:22", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22811", "3", "2015-12-17 10:36:22", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22812", "3", "2015-12-17 10:36:22", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22813", "3", "2015-12-17 10:36:22", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22814", "3", "2015-12-17 10:36:22", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22815", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22816", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22817", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22818", "8", "2015-12-17 10:36:31", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22819", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22820", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22821", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("22822", "3", "2015-12-17 11:05:44", "216.244.86.197", "25");
INSERT INTO `wp_gf_form_view` VALUES("22823", "8", "2015-12-17 11:05:45", "216.244.86.197", "3");
INSERT INTO `wp_gf_form_view` VALUES("22824", "3", "2015-12-17 12:13:38", "67.248.28.8", "8");
INSERT INTO `wp_gf_form_view` VALUES("22825", "8", "2015-12-17 12:13:38", "67.248.28.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("22826", "3", "2015-12-17 13:47:33", "207.46.13.150", "13");
INSERT INTO `wp_gf_form_view` VALUES("22827", "8", "2015-12-17 13:47:35", "207.46.13.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("22828", "3", "2015-12-17 14:05:35", "68.180.229.161", "300");
INSERT INTO `wp_gf_form_view` VALUES("22829", "8", "2015-12-17 14:28:00", "68.180.229.161", "37");
INSERT INTO `wp_gf_form_view` VALUES("22830", "2", "2015-12-17 14:40:36", "151.73.223.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("22831", "3", "2015-12-17 15:09:11", "207.46.13.150", "37");
INSERT INTO `wp_gf_form_view` VALUES("22832", "8", "2015-12-17 15:09:11", "207.46.13.150", "5");
INSERT INTO `wp_gf_form_view` VALUES("22833", "3", "2015-12-17 16:14:21", "202.46.58.181", "39");
INSERT INTO `wp_gf_form_view` VALUES("22834", "8", "2015-12-17 16:14:21", "202.46.58.181", "5");
INSERT INTO `wp_gf_form_view` VALUES("22835", "3", "2015-12-17 17:00:17", "202.46.56.67", "324");
INSERT INTO `wp_gf_form_view` VALUES("22836", "8", "2015-12-17 17:00:18", "202.46.56.67", "40");
INSERT INTO `wp_gf_form_view` VALUES("22837", "2", "2015-12-17 17:21:16", "70.35.205.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("22838", "3", "2015-12-17 18:02:40", "184.66.40.144", "95");
INSERT INTO `wp_gf_form_view` VALUES("22839", "8", "2015-12-17 18:02:40", "184.66.40.144", "12");
INSERT INTO `wp_gf_form_view` VALUES("22840", "3", "2015-12-17 19:00:52", "107.168.109.200", "133");
INSERT INTO `wp_gf_form_view` VALUES("22841", "8", "2015-12-17 19:00:52", "107.168.109.200", "18");
INSERT INTO `wp_gf_form_view` VALUES("22842", "3", "2015-12-17 20:02:46", "70.35.205.34", "296");
INSERT INTO `wp_gf_form_view` VALUES("22843", "8", "2015-12-17 20:02:46", "70.35.205.34", "37");
INSERT INTO `wp_gf_form_view` VALUES("22844", "2", "2015-12-17 20:03:27", "70.35.205.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("22845", "3", "2015-12-17 21:03:05", "66.249.74.102", "114");
INSERT INTO `wp_gf_form_view` VALUES("22846", "8", "2015-12-17 21:03:05", "66.249.74.102", "15");
INSERT INTO `wp_gf_form_view` VALUES("22847", "3", "2015-12-17 22:05:22", "184.69.99.230", "241");
INSERT INTO `wp_gf_form_view` VALUES("22848", "8", "2015-12-17 22:05:22", "184.69.99.230", "30");
INSERT INTO `wp_gf_form_view` VALUES("22849", "2", "2015-12-17 22:33:45", "85.93.89.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("22850", "1", "2015-12-17 22:39:43", "108.170.8.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("22851", "3", "2015-12-17 23:01:30", "202.46.49.117", "148");
INSERT INTO `wp_gf_form_view` VALUES("22852", "8", "2015-12-17 23:01:30", "202.46.49.117", "20");
INSERT INTO `wp_gf_form_view` VALUES("22853", "3", "2015-12-18 00:09:33", "5.9.98.130", "3230");
INSERT INTO `wp_gf_form_view` VALUES("22854", "8", "2015-12-18 00:09:33", "5.9.98.130", "413");
INSERT INTO `wp_gf_form_view` VALUES("22855", "2", "2015-12-18 00:09:56", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("22856", "1", "2015-12-18 00:12:30", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("22857", "5", "2015-12-18 00:16:38", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("22858", "9", "2015-12-18 00:18:42", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("22859", "6", "2015-12-18 00:24:02", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("22860", "3", "2015-12-18 01:07:45", "202.46.54.33", "2837");
INSERT INTO `wp_gf_form_view` VALUES("22861", "8", "2015-12-18 01:07:46", "202.46.54.33", "365");
INSERT INTO `wp_gf_form_view` VALUES("22862", "3", "2015-12-18 02:00:01", "5.9.98.130", "4945");
INSERT INTO `wp_gf_form_view` VALUES("22863", "8", "2015-12-18 02:00:01", "5.9.98.130", "638");
INSERT INTO `wp_gf_form_view` VALUES("22864", "3", "2015-12-18 03:01:51", "5.9.98.130", "1987");
INSERT INTO `wp_gf_form_view` VALUES("22865", "8", "2015-12-18 03:01:51", "5.9.98.130", "249");
INSERT INTO `wp_gf_form_view` VALUES("22866", "3", "2015-12-18 04:01:30", "202.46.52.100", "6033");
INSERT INTO `wp_gf_form_view` VALUES("22867", "8", "2015-12-18 04:01:31", "202.46.52.100", "767");
INSERT INTO `wp_gf_form_view` VALUES("22868", "1", "2015-12-18 04:31:15", "172.245.107.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("22869", "3", "2015-12-18 05:00:00", "5.9.98.130", "3314");
INSERT INTO `wp_gf_form_view` VALUES("22870", "8", "2015-12-18 05:00:02", "5.9.98.130", "443");
INSERT INTO `wp_gf_form_view` VALUES("22871", "3", "2015-12-18 06:00:02", "5.9.98.130", "451");
INSERT INTO `wp_gf_form_view` VALUES("22872", "8", "2015-12-18 06:00:02", "5.9.98.130", "56");
INSERT INTO `wp_gf_form_view` VALUES("22873", "2", "2015-12-18 06:11:16", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("22874", "3", "2015-12-18 07:01:20", "46.118.153.165", "3953");
INSERT INTO `wp_gf_form_view` VALUES("22875", "8", "2015-12-18 07:01:21", "46.118.153.165", "441");
INSERT INTO `wp_gf_form_view` VALUES("22876", "3", "2015-12-18 08:00:01", "5.9.98.130", "5715");
INSERT INTO `wp_gf_form_view` VALUES("22877", "8", "2015-12-18 08:00:02", "5.9.98.130", "833");
INSERT INTO `wp_gf_form_view` VALUES("22878", "3", "2015-12-18 09:00:00", "5.9.98.130", "5705");
INSERT INTO `wp_gf_form_view` VALUES("22879", "8", "2015-12-18 09:00:00", "5.9.98.130", "639");
INSERT INTO `wp_gf_form_view` VALUES("22880", "3", "2015-12-18 10:00:00", "5.9.98.130", "4276");
INSERT INTO `wp_gf_form_view` VALUES("22881", "8", "2015-12-18 10:00:03", "5.9.98.130", "623");
INSERT INTO `wp_gf_form_view` VALUES("22882", "3", "2015-12-18 11:07:09", "68.180.229.161", "2088");
INSERT INTO `wp_gf_form_view` VALUES("22883", "8", "2015-12-18 11:07:09", "68.180.229.161", "261");
INSERT INTO `wp_gf_form_view` VALUES("22884", "3", "2015-12-18 12:01:02", "136.243.61.196", "73");
INSERT INTO `wp_gf_form_view` VALUES("22885", "8", "2015-12-18 12:01:03", "136.243.61.196", "9");
INSERT INTO `wp_gf_form_view` VALUES("22886", "3", "2015-12-18 13:08:12", "136.243.61.196", "80");
INSERT INTO `wp_gf_form_view` VALUES("22887", "8", "2015-12-18 13:08:12", "136.243.61.196", "11");
INSERT INTO `wp_gf_form_view` VALUES("22888", "3", "2015-12-18 15:39:38", "93.127.148.216", "78");
INSERT INTO `wp_gf_form_view` VALUES("22889", "8", "2015-12-18 15:39:39", "93.127.148.216", "10");
INSERT INTO `wp_gf_form_view` VALUES("22890", "1", "2015-12-18 15:59:31", "66.85.131.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("22891", "3", "2015-12-18 16:12:14", "157.55.39.183", "8");
INSERT INTO `wp_gf_form_view` VALUES("22892", "8", "2015-12-18 16:12:14", "157.55.39.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("22893", "3", "2015-12-18 17:08:38", "68.180.229.161", "80");
INSERT INTO `wp_gf_form_view` VALUES("22894", "8", "2015-12-18 17:08:38", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("22895", "6", "2015-12-18 17:56:31", "46.246.50.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("22896", "3", "2015-12-18 18:04:44", "157.55.39.183", "40");
INSERT INTO `wp_gf_form_view` VALUES("22897", "8", "2015-12-18 18:04:44", "157.55.39.183", "5");
INSERT INTO `wp_gf_form_view` VALUES("22898", "3", "2015-12-18 19:06:57", "151.80.31.139", "107");
INSERT INTO `wp_gf_form_view` VALUES("22899", "8", "2015-12-18 19:06:57", "151.80.31.139", "13");
INSERT INTO `wp_gf_form_view` VALUES("22900", "3", "2015-12-18 20:09:08", "157.55.39.46", "25");
INSERT INTO `wp_gf_form_view` VALUES("22901", "8", "2015-12-18 20:09:08", "157.55.39.46", "3");
INSERT INTO `wp_gf_form_view` VALUES("22902", "3", "2015-12-18 21:01:04", "66.249.74.106", "66");
INSERT INTO `wp_gf_form_view` VALUES("22903", "8", "2015-12-18 21:01:04", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("22904", "2", "2015-12-18 21:44:17", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("22905", "3", "2015-12-18 22:12:30", "151.80.31.139", "34");
INSERT INTO `wp_gf_form_view` VALUES("22906", "8", "2015-12-18 22:12:30", "151.80.31.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("22907", "5", "2015-12-18 23:03:20", "157.55.39.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("22908", "3", "2015-12-18 23:03:20", "157.55.39.177", "41");
INSERT INTO `wp_gf_form_view` VALUES("22909", "8", "2015-12-18 23:03:20", "157.55.39.177", "5");
INSERT INTO `wp_gf_form_view` VALUES("22910", "2", "2015-12-18 23:09:09", "216.158.217.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("22911", "3", "2015-12-19 00:05:58", "157.55.39.46", "55");
INSERT INTO `wp_gf_form_view` VALUES("22912", "8", "2015-12-19 00:05:58", "157.55.39.46", "7");
INSERT INTO `wp_gf_form_view` VALUES("22913", "3", "2015-12-19 01:07:43", "68.180.229.161", "48");
INSERT INTO `wp_gf_form_view` VALUES("22914", "8", "2015-12-19 01:07:43", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("22915", "3", "2015-12-19 02:07:22", "136.243.61.196", "72");
INSERT INTO `wp_gf_form_view` VALUES("22916", "8", "2015-12-19 02:07:22", "136.243.61.196", "9");
INSERT INTO `wp_gf_form_view` VALUES("22917", "1", "2015-12-19 02:19:27", "158.222.15.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("22918", "3", "2015-12-19 03:29:25", "40.77.167.28", "92");
INSERT INTO `wp_gf_form_view` VALUES("22919", "8", "2015-12-19 03:29:25", "40.77.167.28", "11");
INSERT INTO `wp_gf_form_view` VALUES("22920", "1", "2015-12-19 03:30:51", "94.101.191.244", "4");
INSERT INTO `wp_gf_form_view` VALUES("22921", "1", "2015-12-19 04:06:32", "23.95.129.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("22922", "3", "2015-12-19 04:06:32", "23.95.129.138", "114");
INSERT INTO `wp_gf_form_view` VALUES("22923", "8", "2015-12-19 04:06:32", "23.95.129.138", "14");
INSERT INTO `wp_gf_form_view` VALUES("22924", "3", "2015-12-19 05:08:32", "136.243.61.196", "188");
INSERT INTO `wp_gf_form_view` VALUES("22925", "8", "2015-12-19 05:08:32", "136.243.61.196", "23");
INSERT INTO `wp_gf_form_view` VALUES("22926", "1", "2015-12-19 05:47:50", "216.232.2.83", "4");
INSERT INTO `wp_gf_form_view` VALUES("22927", "2", "2015-12-19 06:01:32", "136.243.61.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("22928", "3", "2015-12-19 06:01:32", "136.243.61.196", "145");
INSERT INTO `wp_gf_form_view` VALUES("22929", "8", "2015-12-19 06:01:32", "136.243.61.196", "20");
INSERT INTO `wp_gf_form_view` VALUES("22930", "1", "2015-12-19 06:02:11", "198.23.240.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("22931", "1", "2015-12-19 07:23:12", "151.80.31.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("22932", "3", "2015-12-19 07:23:13", "151.80.31.139", "33");
INSERT INTO `wp_gf_form_view` VALUES("22933", "8", "2015-12-19 07:23:14", "151.80.31.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("22934", "3", "2015-12-19 08:04:23", "68.180.229.161", "57");
INSERT INTO `wp_gf_form_view` VALUES("22935", "8", "2015-12-19 08:04:23", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("22936", "3", "2015-12-19 09:02:33", "66.249.74.104", "33");
INSERT INTO `wp_gf_form_view` VALUES("22937", "8", "2015-12-19 09:02:33", "66.249.74.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("22938", "1", "2015-12-19 09:16:53", "157.55.39.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("22939", "3", "2015-12-19 10:00:28", "66.249.74.104", "82");
INSERT INTO `wp_gf_form_view` VALUES("22940", "8", "2015-12-19 10:00:28", "66.249.74.104", "11");
INSERT INTO `wp_gf_form_view` VALUES("22941", "1", "2015-12-19 10:57:32", "157.7.242.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("22942", "3", "2015-12-19 11:00:49", "46.118.226.141", "81");
INSERT INTO `wp_gf_form_view` VALUES("22943", "8", "2015-12-19 11:00:49", "46.118.226.141", "10");
INSERT INTO `wp_gf_form_view` VALUES("22944", "1", "2015-12-19 11:16:55", "23.94.60.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("22945", "9", "2015-12-19 11:50:09", "40.77.167.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("22946", "3", "2015-12-19 12:04:29", "157.55.39.140", "24");
INSERT INTO `wp_gf_form_view` VALUES("22947", "8", "2015-12-19 12:04:29", "157.55.39.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("22948", "1", "2015-12-19 13:46:10", "45.40.35.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("22949", "3", "2015-12-19 13:46:10", "45.40.35.131", "41");
INSERT INTO `wp_gf_form_view` VALUES("22950", "8", "2015-12-19 13:46:11", "45.40.35.131", "6");
INSERT INTO `wp_gf_form_view` VALUES("22951", "3", "2015-12-19 14:01:03", "157.55.39.25", "140");
INSERT INTO `wp_gf_form_view` VALUES("22952", "8", "2015-12-19 14:01:03", "157.55.39.25", "16");
INSERT INTO `wp_gf_form_view` VALUES("22953", "3", "2015-12-19 15:14:55", "157.55.39.183", "127");
INSERT INTO `wp_gf_form_view` VALUES("22954", "8", "2015-12-19 15:14:55", "157.55.39.183", "15");
INSERT INTO `wp_gf_form_view` VALUES("22955", "3", "2015-12-19 16:13:05", "157.55.39.183", "170");
INSERT INTO `wp_gf_form_view` VALUES("22956", "8", "2015-12-19 16:13:05", "157.55.39.183", "21");
INSERT INTO `wp_gf_form_view` VALUES("22957", "7", "2015-12-19 16:15:24", "157.55.39.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("22958", "6", "2015-12-19 16:25:15", "202.46.58.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("22959", "2", "2015-12-19 16:51:21", "195.154.58.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("22960", "3", "2015-12-19 17:01:55", "202.46.49.79", "115");
INSERT INTO `wp_gf_form_view` VALUES("22961", "8", "2015-12-19 17:01:55", "202.46.49.79", "15");
INSERT INTO `wp_gf_form_view` VALUES("22962", "3", "2015-12-19 18:03:06", "202.46.55.152", "110");
INSERT INTO `wp_gf_form_view` VALUES("22963", "8", "2015-12-19 18:03:06", "202.46.55.152", "14");
INSERT INTO `wp_gf_form_view` VALUES("22964", "3", "2015-12-19 19:04:16", "202.46.49.110", "240");
INSERT INTO `wp_gf_form_view` VALUES("22965", "8", "2015-12-19 19:04:16", "202.46.49.110", "29");
INSERT INTO `wp_gf_form_view` VALUES("22966", "1", "2015-12-19 19:55:10", "23.94.66.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("22967", "3", "2015-12-19 20:05:26", "202.46.52.42", "80");
INSERT INTO `wp_gf_form_view` VALUES("22968", "8", "2015-12-19 20:05:26", "202.46.52.42", "10");
INSERT INTO `wp_gf_form_view` VALUES("22969", "3", "2015-12-19 21:06:36", "202.46.49.111", "77");
INSERT INTO `wp_gf_form_view` VALUES("22970", "8", "2015-12-19 21:06:36", "202.46.49.111", "10");
INSERT INTO `wp_gf_form_view` VALUES("22971", "3", "2015-12-19 22:01:42", "223.205.247.34", "75");
INSERT INTO `wp_gf_form_view` VALUES("22972", "8", "2015-12-19 22:01:42", "223.205.247.34", "11");
INSERT INTO `wp_gf_form_view` VALUES("22973", "3", "2015-12-19 23:08:57", "202.46.52.17", "83");
INSERT INTO `wp_gf_form_view` VALUES("22974", "8", "2015-12-19 23:08:57", "202.46.52.17", "11");
INSERT INTO `wp_gf_form_view` VALUES("22975", "3", "2015-12-20 00:01:44", "207.46.13.18", "78");
INSERT INTO `wp_gf_form_view` VALUES("22976", "8", "2015-12-20 00:01:44", "207.46.13.18", "9");
INSERT INTO `wp_gf_form_view` VALUES("22977", "3", "2015-12-20 01:00:11", "202.46.55.156", "69");
INSERT INTO `wp_gf_form_view` VALUES("22978", "8", "2015-12-20 01:00:11", "202.46.55.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("22979", "3", "2015-12-20 02:20:20", "202.46.48.192", "42");
INSERT INTO `wp_gf_form_view` VALUES("22980", "8", "2015-12-20 02:20:20", "202.46.48.192", "5");
INSERT INTO `wp_gf_form_view` VALUES("22981", "9", "2015-12-20 02:48:38", "157.55.39.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("22982", "3", "2015-12-20 03:00:24", "202.46.53.116", "131");
INSERT INTO `wp_gf_form_view` VALUES("22983", "8", "2015-12-20 03:00:25", "202.46.53.116", "16");
INSERT INTO `wp_gf_form_view` VALUES("22984", "3", "2015-12-20 04:02:23", "157.55.39.183", "85");
INSERT INTO `wp_gf_form_view` VALUES("22985", "8", "2015-12-20 04:02:23", "157.55.39.183", "11");
INSERT INTO `wp_gf_form_view` VALUES("22986", "9", "2015-12-20 04:38:08", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("22987", "3", "2015-12-20 05:00:38", "202.46.48.26", "78");
INSERT INTO `wp_gf_form_view` VALUES("22988", "8", "2015-12-20 05:00:38", "202.46.48.26", "10");
INSERT INTO `wp_gf_form_view` VALUES("22989", "2", "2015-12-20 05:02:14", "157.55.39.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("22990", "3", "2015-12-20 06:03:08", "151.80.31.139", "168");
INSERT INTO `wp_gf_form_view` VALUES("22991", "8", "2015-12-20 06:03:08", "151.80.31.139", "21");
INSERT INTO `wp_gf_form_view` VALUES("22992", "3", "2015-12-20 07:00:32", "157.55.39.140", "97");
INSERT INTO `wp_gf_form_view` VALUES("22993", "8", "2015-12-20 07:00:32", "157.55.39.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("22994", "6", "2015-12-20 08:05:28", "207.46.13.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("22995", "3", "2015-12-20 08:05:28", "207.46.13.18", "78");
INSERT INTO `wp_gf_form_view` VALUES("22996", "8", "2015-12-20 08:05:28", "207.46.13.18", "10");
INSERT INTO `wp_gf_form_view` VALUES("22997", "3", "2015-12-20 09:01:05", "202.46.49.79", "78");
INSERT INTO `wp_gf_form_view` VALUES("22998", "8", "2015-12-20 09:01:05", "202.46.49.79", "11");
INSERT INTO `wp_gf_form_view` VALUES("22999", "3", "2015-12-20 10:07:52", "202.46.55.12", "84");
INSERT INTO `wp_gf_form_view` VALUES("23000", "8", "2015-12-20 10:07:52", "202.46.55.12", "11");
INSERT INTO `wp_gf_form_view` VALUES("23001", "3", "2015-12-20 11:01:18", "202.46.53.156", "94");
INSERT INTO `wp_gf_form_view` VALUES("23002", "8", "2015-12-20 11:01:18", "202.46.53.156", "13");
INSERT INTO `wp_gf_form_view` VALUES("23003", "3", "2015-12-20 12:03:15", "68.180.229.161", "118");
INSERT INTO `wp_gf_form_view` VALUES("23004", "8", "2015-12-20 12:03:15", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("23005", "3", "2015-12-20 13:01:31", "202.46.57.164", "98");
INSERT INTO `wp_gf_form_view` VALUES("23006", "8", "2015-12-20 13:01:31", "202.46.57.164", "13");
INSERT INTO `wp_gf_form_view` VALUES("23007", "3", "2015-12-20 14:08:19", "202.46.54.195", "109");
INSERT INTO `wp_gf_form_view` VALUES("23008", "8", "2015-12-20 14:08:19", "202.46.54.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("23009", "1", "2015-12-20 14:45:46", "67.17.36.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("23010", "3", "2015-12-20 15:01:46", "202.46.53.13", "157");
INSERT INTO `wp_gf_form_view` VALUES("23011", "8", "2015-12-20 15:01:47", "202.46.53.13", "20");
INSERT INTO `wp_gf_form_view` VALUES("23012", "1", "2015-12-20 15:18:36", "23.95.191.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("23013", "3", "2015-12-20 16:08:32", "202.46.53.14", "22");
INSERT INTO `wp_gf_form_view` VALUES("23014", "8", "2015-12-20 16:08:32", "202.46.53.14", "3");
INSERT INTO `wp_gf_form_view` VALUES("23015", "3", "2015-12-20 17:09:01", "134.249.52.203", "32");
INSERT INTO `wp_gf_form_view` VALUES("23016", "8", "2015-12-20 17:09:01", "134.249.52.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("23017", "9", "2015-12-20 18:17:07", "157.55.39.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("23018", "3", "2015-12-20 18:17:07", "157.55.39.183", "8");
INSERT INTO `wp_gf_form_view` VALUES("23019", "8", "2015-12-20 18:17:07", "157.55.39.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("23020", "3", "2015-12-20 20:22:15", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("23021", "8", "2015-12-20 20:22:15", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("23022", "3", "2015-12-20 21:16:10", "68.180.229.161", "155");
INSERT INTO `wp_gf_form_view` VALUES("23023", "8", "2015-12-20 21:16:10", "68.180.229.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("23024", "3", "2015-12-20 22:15:57", "157.55.39.140", "16");
INSERT INTO `wp_gf_form_view` VALUES("23025", "8", "2015-12-20 22:15:57", "157.55.39.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("23026", "1", "2015-12-20 22:49:13", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("23027", "3", "2015-12-20 23:04:50", "68.180.229.161", "135");
INSERT INTO `wp_gf_form_view` VALUES("23028", "8", "2015-12-20 23:04:50", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("23029", "1", "2015-12-20 23:18:19", "66.249.74.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("23030", "3", "2015-12-21 00:06:45", "178.137.160.2", "73");
INSERT INTO `wp_gf_form_view` VALUES("23031", "8", "2015-12-21 00:06:45", "178.137.160.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("23032", "1", "2015-12-21 00:08:40", "5.175.219.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("23033", "3", "2015-12-21 01:47:35", "151.80.31.139", "8");
INSERT INTO `wp_gf_form_view` VALUES("23034", "8", "2015-12-21 01:47:35", "151.80.31.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("23035", "3", "2015-12-21 02:05:23", "151.80.31.139", "32");
INSERT INTO `wp_gf_form_view` VALUES("23036", "8", "2015-12-21 02:05:24", "151.80.31.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("23037", "9", "2015-12-21 02:05:24", "151.80.31.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("23038", "3", "2015-12-21 03:18:50", "96.54.200.228", "128");
INSERT INTO `wp_gf_form_view` VALUES("23039", "8", "2015-12-21 03:18:50", "96.54.200.228", "16");
INSERT INTO `wp_gf_form_view` VALUES("23040", "3", "2015-12-21 04:04:34", "104.197.56.196", "71");
INSERT INTO `wp_gf_form_view` VALUES("23041", "8", "2015-12-21 04:04:34", "104.197.56.196", "9");
INSERT INTO `wp_gf_form_view` VALUES("23042", "3", "2015-12-21 05:01:42", "202.46.56.68", "90");
INSERT INTO `wp_gf_form_view` VALUES("23043", "8", "2015-12-21 05:01:42", "202.46.56.68", "11");
INSERT INTO `wp_gf_form_view` VALUES("23044", "1", "2015-12-21 05:25:04", "23.95.94.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("23045", "3", "2015-12-21 06:01:46", "202.46.58.190", "113");
INSERT INTO `wp_gf_form_view` VALUES("23046", "8", "2015-12-21 06:01:46", "202.46.58.190", "16");
INSERT INTO `wp_gf_form_view` VALUES("23047", "1", "2015-12-21 06:35:59", "107.172.88.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("23048", "3", "2015-12-21 07:00:48", "66.249.74.106", "91");
INSERT INTO `wp_gf_form_view` VALUES("23049", "8", "2015-12-21 07:00:48", "66.249.74.106", "12");
INSERT INTO `wp_gf_form_view` VALUES("23050", "3", "2015-12-21 08:01:52", "202.46.58.20", "88");
INSERT INTO `wp_gf_form_view` VALUES("23051", "8", "2015-12-21 08:01:52", "202.46.58.20", "11");
INSERT INTO `wp_gf_form_view` VALUES("23052", "2", "2015-12-21 08:18:14", "195.154.58.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("23053", "3", "2015-12-21 09:01:55", "202.46.55.132", "101");
INSERT INTO `wp_gf_form_view` VALUES("23054", "8", "2015-12-21 09:01:56", "202.46.55.132", "13");
INSERT INTO `wp_gf_form_view` VALUES("23055", "3", "2015-12-21 10:01:58", "202.46.48.99", "32");
INSERT INTO `wp_gf_form_view` VALUES("23056", "8", "2015-12-21 10:01:58", "202.46.48.99", "4");
INSERT INTO `wp_gf_form_view` VALUES("23057", "3", "2015-12-21 11:02:00", "202.46.54.93", "75");
INSERT INTO `wp_gf_form_view` VALUES("23058", "8", "2015-12-21 11:02:00", "202.46.54.93", "10");
INSERT INTO `wp_gf_form_view` VALUES("23059", "3", "2015-12-21 12:02:04", "202.46.51.22", "85");
INSERT INTO `wp_gf_form_view` VALUES("23060", "8", "2015-12-21 12:02:04", "202.46.51.22", "11");
INSERT INTO `wp_gf_form_view` VALUES("23061", "9", "2015-12-21 12:37:13", "151.80.31.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("23062", "8", "2015-12-21 13:02:06", "202.46.57.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("23063", "3", "2015-12-21 13:02:07", "202.46.57.161", "101");
INSERT INTO `wp_gf_form_view` VALUES("23064", "3", "2015-12-21 14:02:10", "202.46.48.29", "56");
INSERT INTO `wp_gf_form_view` VALUES("23065", "8", "2015-12-21 14:02:10", "202.46.48.29", "7");
INSERT INTO `wp_gf_form_view` VALUES("23066", "3", "2015-12-21 15:13:29", "66.249.74.106", "120");
INSERT INTO `wp_gf_form_view` VALUES("23067", "8", "2015-12-21 15:13:29", "66.249.74.106", "15");
INSERT INTO `wp_gf_form_view` VALUES("23068", "2", "2015-12-21 15:43:05", "216.158.217.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("23069", "3", "2015-12-21 16:02:16", "202.46.52.64", "176");
INSERT INTO `wp_gf_form_view` VALUES("23070", "8", "2015-12-21 16:02:17", "202.46.52.64", "23");
INSERT INTO `wp_gf_form_view` VALUES("23071", "3", "2015-12-21 17:07:53", "24.244.23.131", "74");
INSERT INTO `wp_gf_form_view` VALUES("23072", "8", "2015-12-21 17:07:53", "24.244.23.131", "10");
INSERT INTO `wp_gf_form_view` VALUES("23073", "3", "2015-12-21 18:05:06", "66.102.9.98", "57");
INSERT INTO `wp_gf_form_view` VALUES("23074", "8", "2015-12-21 18:05:06", "66.102.9.98", "7");
INSERT INTO `wp_gf_form_view` VALUES("23075", "1", "2015-12-21 19:02:12", "104.223.42.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("23076", "3", "2015-12-21 19:02:12", "104.223.42.246", "42");
INSERT INTO `wp_gf_form_view` VALUES("23077", "8", "2015-12-21 19:02:12", "104.223.42.246", "5");
INSERT INTO `wp_gf_form_view` VALUES("23078", "3", "2015-12-21 20:11:22", "151.80.31.139", "48");
INSERT INTO `wp_gf_form_view` VALUES("23079", "8", "2015-12-21 20:11:22", "151.80.31.139", "6");
INSERT INTO `wp_gf_form_view` VALUES("23080", "3", "2015-12-21 21:08:33", "66.249.74.104", "133");
INSERT INTO `wp_gf_form_view` VALUES("23081", "8", "2015-12-21 21:08:33", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("23082", "3", "2015-12-21 22:12:52", "207.46.13.76", "49");
INSERT INTO `wp_gf_form_view` VALUES("23083", "8", "2015-12-21 22:12:52", "207.46.13.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("23084", "3", "2015-12-21 23:49:48", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("23085", "8", "2015-12-21 23:49:48", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("23086", "3", "2015-12-22 00:24:11", "31.220.44.71", "83");
INSERT INTO `wp_gf_form_view` VALUES("23087", "8", "2015-12-22 00:24:11", "31.220.44.71", "10");
INSERT INTO `wp_gf_form_view` VALUES("23088", "3", "2015-12-22 01:06:38", "134.249.52.203", "24");
INSERT INTO `wp_gf_form_view` VALUES("23089", "8", "2015-12-22 01:06:38", "134.249.52.203", "3");
INSERT INTO `wp_gf_form_view` VALUES("23090", "3", "2015-12-22 02:11:22", "66.249.74.106", "56");
INSERT INTO `wp_gf_form_view` VALUES("23091", "8", "2015-12-22 02:11:22", "66.249.74.106", "7");
INSERT INTO `wp_gf_form_view` VALUES("23092", "3", "2015-12-22 03:54:32", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("23093", "8", "2015-12-22 03:54:32", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("23094", "3", "2015-12-22 04:17:42", "66.249.74.102", "66");
INSERT INTO `wp_gf_form_view` VALUES("23095", "8", "2015-12-22 04:17:43", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("23096", "3", "2015-12-22 05:02:46", "208.90.57.196", "40");
INSERT INTO `wp_gf_form_view` VALUES("23097", "8", "2015-12-22 05:02:46", "208.90.57.196", "5");
INSERT INTO `wp_gf_form_view` VALUES("23098", "3", "2015-12-22 06:06:46", "46.118.153.165", "40");
INSERT INTO `wp_gf_form_view` VALUES("23099", "8", "2015-12-22 06:06:46", "46.118.153.165", "5");
INSERT INTO `wp_gf_form_view` VALUES("23100", "6", "2015-12-22 06:17:16", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("23101", "3", "2015-12-22 07:05:49", "66.249.74.104", "50");
INSERT INTO `wp_gf_form_view` VALUES("23102", "8", "2015-12-22 07:05:49", "66.249.74.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("23103", "3", "2015-12-22 08:05:01", "68.180.229.161", "73");
INSERT INTO `wp_gf_form_view` VALUES("23104", "8", "2015-12-22 08:05:01", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("23105", "3", "2015-12-22 09:15:46", "66.249.74.102", "43");
INSERT INTO `wp_gf_form_view` VALUES("23106", "8", "2015-12-22 09:15:47", "66.249.74.102", "5");
INSERT INTO `wp_gf_form_view` VALUES("23107", "3", "2015-12-22 10:18:37", "155.94.138.218", "128");
INSERT INTO `wp_gf_form_view` VALUES("23108", "8", "2015-12-22 10:18:37", "155.94.138.218", "16");
INSERT INTO `wp_gf_form_view` VALUES("23109", "1", "2015-12-22 10:54:22", "192.230.52.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("23110", "3", "2015-12-22 11:22:29", "202.46.57.121", "21");
INSERT INTO `wp_gf_form_view` VALUES("23111", "8", "2015-12-22 11:22:29", "202.46.57.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("23112", "3", "2015-12-22 12:05:49", "195.154.194.111", "86");
INSERT INTO `wp_gf_form_view` VALUES("23113", "8", "2015-12-22 12:05:50", "195.154.194.111", "11");
INSERT INTO `wp_gf_form_view` VALUES("23114", "3", "2015-12-22 13:09:21", "202.46.51.104", "30");
INSERT INTO `wp_gf_form_view` VALUES("23115", "8", "2015-12-22 13:09:22", "202.46.51.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("23116", "3", "2015-12-22 14:00:57", "178.137.160.2", "115");
INSERT INTO `wp_gf_form_view` VALUES("23117", "3", "2015-12-22 14:00:57", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23118", "8", "2015-12-22 14:00:57", "178.137.160.2", "14");
INSERT INTO `wp_gf_form_view` VALUES("23119", "8", "2015-12-22 14:00:57", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23120", "1", "2015-12-22 14:07:18", "45.57.163.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("23121", "3", "2015-12-22 15:22:56", "202.46.55.69", "54");
INSERT INTO `wp_gf_form_view` VALUES("23122", "8", "2015-12-22 15:22:57", "202.46.55.69", "7");
INSERT INTO `wp_gf_form_view` VALUES("23123", "3", "2015-12-22 16:09:02", "46.118.153.165", "112");
INSERT INTO `wp_gf_form_view` VALUES("23124", "3", "2015-12-22 16:09:02", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("23125", "8", "2015-12-22 16:09:02", "46.118.153.165", "14");
INSERT INTO `wp_gf_form_view` VALUES("23126", "1", "2015-12-22 16:49:57", "216.45.54.109", "3");
INSERT INTO `wp_gf_form_view` VALUES("23127", "3", "2015-12-22 17:09:11", "66.249.74.104", "32");
INSERT INTO `wp_gf_form_view` VALUES("23128", "8", "2015-12-22 17:09:11", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("23129", "3", "2015-12-22 18:03:15", "202.46.50.124", "100");
INSERT INTO `wp_gf_form_view` VALUES("23130", "8", "2015-12-22 18:03:15", "202.46.50.124", "13");
INSERT INTO `wp_gf_form_view` VALUES("23131", "3", "2015-12-22 19:16:47", "66.249.74.106", "55");
INSERT INTO `wp_gf_form_view` VALUES("23132", "8", "2015-12-22 19:16:48", "66.249.74.106", "7");
INSERT INTO `wp_gf_form_view` VALUES("23133", "3", "2015-12-22 20:06:31", "66.249.74.106", "279");
INSERT INTO `wp_gf_form_view` VALUES("23134", "8", "2015-12-22 20:06:31", "66.249.74.106", "36");
INSERT INTO `wp_gf_form_view` VALUES("23135", "2", "2015-12-22 20:34:36", "84.126.248.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("23136", "3", "2015-12-22 21:05:22", "68.180.229.161", "39");
INSERT INTO `wp_gf_form_view` VALUES("23137", "8", "2015-12-22 21:05:22", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("23138", "3", "2015-12-22 22:03:41", "202.46.48.92", "25");
INSERT INTO `wp_gf_form_view` VALUES("23139", "8", "2015-12-22 22:03:41", "202.46.48.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("23140", "3", "2015-12-22 23:12:49", "151.80.31.139", "806");
INSERT INTO `wp_gf_form_view` VALUES("23141", "8", "2015-12-22 23:12:49", "151.80.31.139", "103");
INSERT INTO `wp_gf_form_view` VALUES("23142", "1", "2015-12-22 23:54:14", "104.131.215.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("23143", "8", "2015-12-23 00:00:00", "104.131.215.64", "396");
INSERT INTO `wp_gf_form_view` VALUES("23144", "3", "2015-12-23 00:00:00", "104.131.215.64", "3132");
INSERT INTO `wp_gf_form_view` VALUES("23145", "5", "2015-12-23 00:03:19", "104.131.215.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("23146", "6", "2015-12-23 00:14:54", "104.131.215.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("23147", "9", "2015-12-23 00:24:55", "104.131.215.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("23148", "3", "2015-12-23 01:00:00", "104.131.215.64", "573");
INSERT INTO `wp_gf_form_view` VALUES("23149", "8", "2015-12-23 01:00:04", "104.131.215.64", "72");
INSERT INTO `wp_gf_form_view` VALUES("23150", "3", "2015-12-23 02:04:08", "202.46.55.18", "1108");
INSERT INTO `wp_gf_form_view` VALUES("23151", "8", "2015-12-23 02:04:08", "202.46.55.18", "148");
INSERT INTO `wp_gf_form_view` VALUES("23152", "2", "2015-12-23 02:10:54", "81.209.177.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("23153", "1", "2015-12-23 02:11:24", "81.209.177.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("23154", "5", "2015-12-23 02:31:01", "81.209.177.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("23155", "9", "2015-12-23 02:32:14", "81.209.177.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("23156", "6", "2015-12-23 02:54:50", "81.209.177.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("23157", "3", "2015-12-23 03:12:33", "151.80.31.139", "82");
INSERT INTO `wp_gf_form_view` VALUES("23158", "8", "2015-12-23 03:12:33", "151.80.31.139", "10");
INSERT INTO `wp_gf_form_view` VALUES("23159", "3", "2015-12-23 04:08:04", "68.180.229.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("23160", "8", "2015-12-23 04:08:04", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("23161", "3", "2015-12-23 05:11:08", "202.46.51.119", "47");
INSERT INTO `wp_gf_form_view` VALUES("23162", "8", "2015-12-23 05:11:09", "202.46.51.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("23163", "3", "2015-12-23 06:04:34", "202.46.48.16", "220");
INSERT INTO `wp_gf_form_view` VALUES("23164", "8", "2015-12-23 06:04:34", "202.46.48.16", "28");
INSERT INTO `wp_gf_form_view` VALUES("23165", "2", "2015-12-23 06:56:06", "104.236.16.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("23166", "3", "2015-12-23 07:17:56", "40.77.167.44", "113");
INSERT INTO `wp_gf_form_view` VALUES("23167", "8", "2015-12-23 07:17:57", "40.77.167.44", "14");
INSERT INTO `wp_gf_form_view` VALUES("23168", "3", "2015-12-23 08:17:58", "202.46.48.140", "63");
INSERT INTO `wp_gf_form_view` VALUES("23169", "8", "2015-12-23 08:17:58", "202.46.48.140", "9");
INSERT INTO `wp_gf_form_view` VALUES("23170", "3", "2015-12-23 09:06:06", "157.55.39.234", "61");
INSERT INTO `wp_gf_form_view` VALUES("23171", "8", "2015-12-23 09:06:06", "157.55.39.234", "7");
INSERT INTO `wp_gf_form_view` VALUES("23172", "3", "2015-12-23 10:04:49", "202.46.55.68", "31");
INSERT INTO `wp_gf_form_view` VALUES("23173", "8", "2015-12-23 10:04:50", "202.46.55.68", "4");
INSERT INTO `wp_gf_form_view` VALUES("23174", "3", "2015-12-23 11:24:58", "202.46.57.202", "48");
INSERT INTO `wp_gf_form_view` VALUES("23175", "8", "2015-12-23 11:24:58", "202.46.57.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("23176", "3", "2015-12-23 12:00:27", "151.80.31.139", "41");
INSERT INTO `wp_gf_form_view` VALUES("23177", "8", "2015-12-23 12:00:27", "151.80.31.139", "5");
INSERT INTO `wp_gf_form_view` VALUES("23178", "3", "2015-12-23 13:02:41", "151.80.31.139", "72");
INSERT INTO `wp_gf_form_view` VALUES("23179", "8", "2015-12-23 13:02:41", "151.80.31.139", "9");
INSERT INTO `wp_gf_form_view` VALUES("23180", "3", "2015-12-23 14:02:22", "202.46.50.15", "109");
INSERT INTO `wp_gf_form_view` VALUES("23181", "8", "2015-12-23 14:02:22", "202.46.50.15", "13");
INSERT INTO `wp_gf_form_view` VALUES("23182", "9", "2015-12-23 14:46:35", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23183", "3", "2015-12-23 15:00:44", "157.55.39.251", "144");
INSERT INTO `wp_gf_form_view` VALUES("23184", "8", "2015-12-23 15:00:44", "157.55.39.251", "19");
INSERT INTO `wp_gf_form_view` VALUES("23185", "3", "2015-12-23 16:01:23", "202.46.52.107", "144");
INSERT INTO `wp_gf_form_view` VALUES("23186", "8", "2015-12-23 16:01:23", "202.46.52.107", "19");
INSERT INTO `wp_gf_form_view` VALUES("23187", "2", "2015-12-23 16:46:50", "151.80.31.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("23188", "3", "2015-12-23 17:04:51", "202.46.48.11", "119");
INSERT INTO `wp_gf_form_view` VALUES("23189", "8", "2015-12-23 17:04:51", "202.46.48.11", "16");
INSERT INTO `wp_gf_form_view` VALUES("23190", "3", "2015-12-23 18:00:23", "202.46.51.84", "137");
INSERT INTO `wp_gf_form_view` VALUES("23191", "8", "2015-12-23 18:00:23", "202.46.51.84", "19");
INSERT INTO `wp_gf_form_view` VALUES("23192", "2", "2015-12-23 18:04:54", "40.77.167.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("23193", "1", "2015-12-23 18:08:20", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("23194", "7", "2015-12-23 18:48:00", "202.46.50.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("23195", "3", "2015-12-23 19:03:51", "202.46.49.193", "145");
INSERT INTO `wp_gf_form_view` VALUES("23196", "8", "2015-12-23 19:03:51", "202.46.49.193", "20");
INSERT INTO `wp_gf_form_view` VALUES("23197", "3", "2015-12-23 20:07:19", "202.46.55.82", "98");
INSERT INTO `wp_gf_form_view` VALUES("23198", "8", "2015-12-23 20:07:19", "202.46.55.82", "13");
INSERT INTO `wp_gf_form_view` VALUES("23199", "3", "2015-12-23 21:02:51", "202.46.56.33", "98");
INSERT INTO `wp_gf_form_view` VALUES("23200", "8", "2015-12-23 21:02:52", "202.46.56.33", "12");
INSERT INTO `wp_gf_form_view` VALUES("23201", "3", "2015-12-23 22:06:19", "202.46.53.126", "222");
INSERT INTO `wp_gf_form_view` VALUES("23202", "8", "2015-12-23 22:06:19", "202.46.53.126", "28");
INSERT INTO `wp_gf_form_view` VALUES("23203", "1", "2015-12-23 22:11:44", "45.33.159.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("23204", "3", "2015-12-23 23:01:52", "202.46.48.80", "138");
INSERT INTO `wp_gf_form_view` VALUES("23205", "8", "2015-12-23 23:01:52", "202.46.48.80", "17");
INSERT INTO `wp_gf_form_view` VALUES("23206", "3", "2015-12-24 00:05:20", "202.46.54.100", "168");
INSERT INTO `wp_gf_form_view` VALUES("23207", "8", "2015-12-24 00:05:20", "202.46.54.100", "20");
INSERT INTO `wp_gf_form_view` VALUES("23208", "1", "2015-12-24 00:45:33", "23.95.232.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("23209", "3", "2015-12-24 01:00:52", "202.46.51.22", "107");
INSERT INTO `wp_gf_form_view` VALUES("23210", "8", "2015-12-24 01:00:52", "202.46.51.22", "15");
INSERT INTO `wp_gf_form_view` VALUES("23211", "3", "2015-12-24 02:04:20", "202.46.51.20", "94");
INSERT INTO `wp_gf_form_view` VALUES("23212", "8", "2015-12-24 02:04:20", "202.46.51.20", "12");
INSERT INTO `wp_gf_form_view` VALUES("23213", "1", "2015-12-24 02:51:58", "192.151.145.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("23214", "3", "2015-12-24 03:00:54", "202.46.52.210", "290");
INSERT INTO `wp_gf_form_view` VALUES("23215", "8", "2015-12-24 03:00:54", "202.46.52.210", "36");
INSERT INTO `wp_gf_form_view` VALUES("23216", "2", "2015-12-24 03:16:09", "83.61.168.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("23217", "3", "2015-12-24 04:00:22", "202.46.49.116", "71");
INSERT INTO `wp_gf_form_view` VALUES("23218", "8", "2015-12-24 04:00:23", "202.46.49.116", "8");
INSERT INTO `wp_gf_form_view` VALUES("23219", "3", "2015-12-24 05:38:27", "157.55.39.115", "8");
INSERT INTO `wp_gf_form_view` VALUES("23220", "8", "2015-12-24 05:38:27", "157.55.39.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("23221", "3", "2015-12-24 06:32:01", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("23222", "8", "2015-12-24 06:32:01", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("23223", "3", "2015-12-24 08:57:46", "157.55.39.115", "8");
INSERT INTO `wp_gf_form_view` VALUES("23224", "8", "2015-12-24 08:57:46", "157.55.39.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("23225", "3", "2015-12-24 09:23:04", "68.180.229.161", "32");
INSERT INTO `wp_gf_form_view` VALUES("23226", "8", "2015-12-24 09:23:04", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("23227", "3", "2015-12-24 10:09:21", "68.180.229.161", "89");
INSERT INTO `wp_gf_form_view` VALUES("23228", "8", "2015-12-24 10:09:21", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("23229", "3", "2015-12-24 11:09:29", "157.55.39.251", "24");
INSERT INTO `wp_gf_form_view` VALUES("23230", "8", "2015-12-24 11:09:30", "157.55.39.251", "3");
INSERT INTO `wp_gf_form_view` VALUES("23231", "3", "2015-12-24 12:06:39", "157.55.39.115", "24");
INSERT INTO `wp_gf_form_view` VALUES("23232", "8", "2015-12-24 12:06:40", "157.55.39.115", "3");
INSERT INTO `wp_gf_form_view` VALUES("23233", "3", "2015-12-24 13:14:06", "40.77.167.24", "32");
INSERT INTO `wp_gf_form_view` VALUES("23234", "8", "2015-12-24 13:14:06", "40.77.167.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("23235", "3", "2015-12-24 14:10:32", "40.77.167.24", "41");
INSERT INTO `wp_gf_form_view` VALUES("23236", "8", "2015-12-24 14:10:33", "40.77.167.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("23237", "3", "2015-12-24 15:01:50", "157.55.39.251", "78");
INSERT INTO `wp_gf_form_view` VALUES("23238", "8", "2015-12-24 15:01:50", "157.55.39.251", "11");
INSERT INTO `wp_gf_form_view` VALUES("23239", "3", "2015-12-24 16:23:53", "202.46.54.136", "37");
INSERT INTO `wp_gf_form_view` VALUES("23240", "8", "2015-12-24 16:23:53", "202.46.54.136", "4");
INSERT INTO `wp_gf_form_view` VALUES("23241", "3", "2015-12-24 17:26:25", "202.46.56.70", "72");
INSERT INTO `wp_gf_form_view` VALUES("23242", "8", "2015-12-24 17:26:25", "202.46.56.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("23243", "6", "2015-12-24 17:39:01", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("23244", "3", "2015-12-24 18:06:04", "202.46.49.95", "57");
INSERT INTO `wp_gf_form_view` VALUES("23245", "8", "2015-12-24 18:06:04", "202.46.49.95", "7");
INSERT INTO `wp_gf_form_view` VALUES("23246", "3", "2015-12-24 19:01:36", "202.46.51.20", "115");
INSERT INTO `wp_gf_form_view` VALUES("23247", "8", "2015-12-24 19:01:36", "202.46.51.20", "15");
INSERT INTO `wp_gf_form_view` VALUES("23248", "3", "2015-12-24 20:05:04", "202.46.52.69", "190");
INSERT INTO `wp_gf_form_view` VALUES("23249", "8", "2015-12-24 20:05:04", "202.46.52.69", "23");
INSERT INTO `wp_gf_form_view` VALUES("23250", "5", "2015-12-24 20:19:03", "157.55.39.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("23251", "3", "2015-12-24 21:00:02", "162.156.87.15", "213");
INSERT INTO `wp_gf_form_view` VALUES("23252", "8", "2015-12-24 21:00:02", "162.156.87.15", "29");
INSERT INTO `wp_gf_form_view` VALUES("23253", "1", "2015-12-24 21:16:51", "40.77.167.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("23254", "3", "2015-12-24 22:04:04", "202.46.51.158", "196");
INSERT INTO `wp_gf_form_view` VALUES("23255", "8", "2015-12-24 22:04:05", "202.46.51.158", "24");
INSERT INTO `wp_gf_form_view` VALUES("23256", "3", "2015-12-24 23:07:33", "202.46.55.149", "93");
INSERT INTO `wp_gf_form_view` VALUES("23257", "8", "2015-12-24 23:07:33", "202.46.55.149", "10");
INSERT INTO `wp_gf_form_view` VALUES("23258", "3", "2015-12-25 00:03:05", "202.46.58.18", "65");
INSERT INTO `wp_gf_form_view` VALUES("23259", "8", "2015-12-25 00:03:05", "202.46.58.18", "8");
INSERT INTO `wp_gf_form_view` VALUES("23260", "3", "2015-12-25 01:00:35", "157.55.39.251", "120");
INSERT INTO `wp_gf_form_view` VALUES("23261", "8", "2015-12-25 01:00:35", "157.55.39.251", "14");
INSERT INTO `wp_gf_form_view` VALUES("23262", "3", "2015-12-25 02:02:06", "202.46.49.113", "150");
INSERT INTO `wp_gf_form_view` VALUES("23263", "8", "2015-12-25 02:02:06", "202.46.49.113", "19");
INSERT INTO `wp_gf_form_view` VALUES("23264", "3", "2015-12-25 03:03:37", "40.77.167.44", "134");
INSERT INTO `wp_gf_form_view` VALUES("23265", "8", "2015-12-25 03:03:37", "40.77.167.44", "17");
INSERT INTO `wp_gf_form_view` VALUES("23266", "3", "2015-12-25 04:01:07", "202.46.55.120", "110");
INSERT INTO `wp_gf_form_view` VALUES("23267", "8", "2015-12-25 04:01:07", "202.46.55.120", "15");
INSERT INTO `wp_gf_form_view` VALUES("23268", "3", "2015-12-25 05:04:34", "202.46.50.136", "57");
INSERT INTO `wp_gf_form_view` VALUES("23269", "8", "2015-12-25 05:04:35", "202.46.50.136", "7");
INSERT INTO `wp_gf_form_view` VALUES("23270", "3", "2015-12-25 06:06:38", "68.180.229.161", "57");
INSERT INTO `wp_gf_form_view` VALUES("23271", "8", "2015-12-25 06:08:56", "202.46.51.84", "7");
INSERT INTO `wp_gf_form_view` VALUES("23272", "3", "2015-12-25 07:03:28", "134.249.52.203", "105");
INSERT INTO `wp_gf_form_view` VALUES("23273", "8", "2015-12-25 07:03:28", "134.249.52.203", "13");
INSERT INTO `wp_gf_form_view` VALUES("23274", "1", "2015-12-25 07:05:06", "155.94.221.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("23275", "3", "2015-12-25 08:01:37", "66.249.74.102", "97");
INSERT INTO `wp_gf_form_view` VALUES("23276", "8", "2015-12-25 08:01:37", "66.249.74.102", "13");
INSERT INTO `wp_gf_form_view` VALUES("23277", "1", "2015-12-25 08:02:13", "112.199.65.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("23278", "3", "2015-12-25 09:00:39", "202.46.54.181", "83");
INSERT INTO `wp_gf_form_view` VALUES("23279", "8", "2015-12-25 09:00:40", "202.46.54.181", "10");
INSERT INTO `wp_gf_form_view` VALUES("23280", "3", "2015-12-25 10:00:22", "202.46.49.149", "76");
INSERT INTO `wp_gf_form_view` VALUES("23281", "8", "2015-12-25 10:00:22", "202.46.49.149", "10");
INSERT INTO `wp_gf_form_view` VALUES("23282", "3", "2015-12-25 11:01:41", "68.180.229.161", "39");
INSERT INTO `wp_gf_form_view` VALUES("23283", "8", "2015-12-25 11:01:41", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("23284", "3", "2015-12-25 12:01:35", "202.46.49.190", "47");
INSERT INTO `wp_gf_form_view` VALUES("23285", "8", "2015-12-25 12:01:35", "202.46.49.190", "6");
INSERT INTO `wp_gf_form_view` VALUES("23286", "3", "2015-12-25 13:14:18", "202.46.49.145", "16");
INSERT INTO `wp_gf_form_view` VALUES("23287", "8", "2015-12-25 13:14:18", "202.46.49.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("23288", "3", "2015-12-25 14:02:48", "202.46.51.191", "50");
INSERT INTO `wp_gf_form_view` VALUES("23289", "8", "2015-12-25 14:02:48", "202.46.51.191", "7");
INSERT INTO `wp_gf_form_view` VALUES("23290", "3", "2015-12-25 15:15:31", "202.46.50.162", "55");
INSERT INTO `wp_gf_form_view` VALUES("23291", "8", "2015-12-25 15:15:31", "202.46.50.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("23292", "3", "2015-12-25 16:04:00", "202.46.55.123", "105");
INSERT INTO `wp_gf_form_view` VALUES("23293", "8", "2015-12-25 16:04:00", "202.46.55.123", "13");
INSERT INTO `wp_gf_form_view` VALUES("23294", "9", "2015-12-25 16:23:30", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23295", "1", "2015-12-25 16:48:01", "158.222.15.233", "3");
INSERT INTO `wp_gf_form_view` VALUES("23296", "3", "2015-12-25 17:06:43", "40.77.167.44", "17");
INSERT INTO `wp_gf_form_view` VALUES("23297", "8", "2015-12-25 17:06:43", "40.77.167.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("23298", "1", "2015-12-25 18:04:16", "155.94.172.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("23299", "3", "2015-12-25 18:04:16", "155.94.172.179", "56");
INSERT INTO `wp_gf_form_view` VALUES("23300", "8", "2015-12-25 18:04:16", "155.94.172.179", "7");
INSERT INTO `wp_gf_form_view` VALUES("23301", "3", "2015-12-25 19:31:45", "46.118.153.165", "31");
INSERT INTO `wp_gf_form_view` VALUES("23302", "3", "2015-12-25 19:31:45", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("23303", "8", "2015-12-25 19:31:46", "46.118.153.165", "3");
INSERT INTO `wp_gf_form_view` VALUES("23304", "8", "2015-12-25 19:31:46", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("23305", "3", "2015-12-25 20:38:31", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("23306", "8", "2015-12-25 20:38:31", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23307", "3", "2015-12-25 21:21:46", "176.36.52.189", "16");
INSERT INTO `wp_gf_form_view` VALUES("23308", "8", "2015-12-25 21:21:46", "176.36.52.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("23309", "3", "2015-12-25 22:01:09", "40.77.167.44", "16");
INSERT INTO `wp_gf_form_view` VALUES("23310", "8", "2015-12-25 22:01:09", "40.77.167.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("23311", "3", "2015-12-25 23:26:29", "157.55.39.55", "24");
INSERT INTO `wp_gf_form_view` VALUES("23312", "8", "2015-12-25 23:26:29", "157.55.39.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("23313", "3", "2015-12-26 00:35:05", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("23314", "8", "2015-12-26 00:35:05", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("23315", "3", "2015-12-26 01:09:58", "66.249.74.104", "72");
INSERT INTO `wp_gf_form_view` VALUES("23316", "8", "2015-12-26 01:09:58", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("23317", "1", "2015-12-26 01:52:13", "151.237.190.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("23318", "3", "2015-12-26 02:03:18", "66.249.74.104", "26");
INSERT INTO `wp_gf_form_view` VALUES("23319", "8", "2015-12-26 02:03:18", "66.249.74.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("23320", "1", "2015-12-26 03:35:48", "45.33.159.174", "2");
INSERT INTO `wp_gf_form_view` VALUES("23321", "3", "2015-12-26 03:35:48", "45.33.159.174", "32");
INSERT INTO `wp_gf_form_view` VALUES("23322", "8", "2015-12-26 03:35:48", "45.33.159.174", "4");
INSERT INTO `wp_gf_form_view` VALUES("23323", "3", "2015-12-26 04:38:35", "216.244.80.83", "16");
INSERT INTO `wp_gf_form_view` VALUES("23324", "8", "2015-12-26 04:38:35", "216.244.80.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("23325", "3", "2015-12-26 05:36:51", "46.118.153.165", "80");
INSERT INTO `wp_gf_form_view` VALUES("23326", "3", "2015-12-26 05:36:51", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("23327", "8", "2015-12-26 05:36:53", "46.118.153.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("23328", "8", "2015-12-26 05:36:53", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("23329", "8", "2015-12-26 05:36:53", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("23330", "8", "2015-12-26 05:36:53", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("23331", "8", "2015-12-26 05:36:53", "46.118.153.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("23332", "1", "2015-12-26 05:49:43", "23.95.244.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("23333", "3", "2015-12-26 06:40:35", "207.46.13.4", "9");
INSERT INTO `wp_gf_form_view` VALUES("23334", "8", "2015-12-26 06:40:35", "207.46.13.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("23335", "3", "2015-12-26 08:04:20", "157.55.39.55", "8");
INSERT INTO `wp_gf_form_view` VALUES("23336", "8", "2015-12-26 08:04:21", "157.55.39.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("23337", "3", "2015-12-26 09:16:59", "45.61.42.58", "34");
INSERT INTO `wp_gf_form_view` VALUES("23338", "8", "2015-12-26 09:16:59", "45.61.42.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("23339", "3", "2015-12-26 10:09:19", "157.55.39.55", "242");
INSERT INTO `wp_gf_form_view` VALUES("23340", "8", "2015-12-26 10:09:19", "157.55.39.55", "31");
INSERT INTO `wp_gf_form_view` VALUES("23341", "7", "2015-12-26 10:19:01", "207.46.13.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("23342", "1", "2015-12-26 11:48:17", "210.101.131.232", "2");
INSERT INTO `wp_gf_form_view` VALUES("23343", "3", "2015-12-26 11:48:17", "210.101.131.232", "136");
INSERT INTO `wp_gf_form_view` VALUES("23344", "8", "2015-12-26 11:48:17", "210.101.131.232", "17");
INSERT INTO `wp_gf_form_view` VALUES("23345", "3", "2015-12-26 12:00:53", "195.154.194.111", "66");
INSERT INTO `wp_gf_form_view` VALUES("23346", "8", "2015-12-26 12:00:53", "195.154.194.111", "8");
INSERT INTO `wp_gf_form_view` VALUES("23347", "3", "2015-12-26 14:16:16", "192.151.145.10", "18");
INSERT INTO `wp_gf_form_view` VALUES("23348", "8", "2015-12-26 14:16:16", "192.151.145.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("23349", "3", "2015-12-26 15:41:41", "134.249.52.203", "32");
INSERT INTO `wp_gf_form_view` VALUES("23350", "8", "2015-12-26 15:41:42", "134.249.52.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("23351", "3", "2015-12-26 16:02:44", "157.55.39.55", "178");
INSERT INTO `wp_gf_form_view` VALUES("23352", "8", "2015-12-26 16:02:44", "157.55.39.55", "23");
INSERT INTO `wp_gf_form_view` VALUES("23353", "2", "2015-12-26 16:29:41", "195.154.227.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("23354", "3", "2015-12-26 17:01:55", "202.46.58.92", "93");
INSERT INTO `wp_gf_form_view` VALUES("23355", "8", "2015-12-26 17:01:56", "202.46.58.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("23356", "3", "2015-12-26 18:00:59", "202.46.53.160", "74");
INSERT INTO `wp_gf_form_view` VALUES("23357", "8", "2015-12-26 18:00:59", "202.46.53.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("23358", "3", "2015-12-26 19:00:02", "202.46.51.16", "106");
INSERT INTO `wp_gf_form_view` VALUES("23359", "8", "2015-12-26 19:00:02", "202.46.51.16", "14");
INSERT INTO `wp_gf_form_view` VALUES("23360", "3", "2015-12-26 20:08:56", "202.46.52.107", "86");
INSERT INTO `wp_gf_form_view` VALUES("23361", "8", "2015-12-26 20:08:56", "202.46.52.107", "13");
INSERT INTO `wp_gf_form_view` VALUES("23362", "3", "2015-12-26 21:17:50", "202.46.53.176", "70");
INSERT INTO `wp_gf_form_view` VALUES("23363", "8", "2015-12-26 21:17:50", "202.46.53.176", "9");
INSERT INTO `wp_gf_form_view` VALUES("23364", "3", "2015-12-26 22:07:03", "202.46.49.91", "119");
INSERT INTO `wp_gf_form_view` VALUES("23365", "8", "2015-12-26 22:07:03", "202.46.49.91", "16");
INSERT INTO `wp_gf_form_view` VALUES("23366", "3", "2015-12-26 23:15:57", "202.46.58.124", "117");
INSERT INTO `wp_gf_form_view` VALUES("23367", "8", "2015-12-26 23:15:57", "202.46.58.124", "14");
INSERT INTO `wp_gf_form_view` VALUES("23368", "3", "2015-12-27 00:01:32", "207.46.13.127", "77");
INSERT INTO `wp_gf_form_view` VALUES("23369", "8", "2015-12-27 00:01:32", "207.46.13.127", "10");
INSERT INTO `wp_gf_form_view` VALUES("23370", "3", "2015-12-27 01:03:26", "188.165.15.50", "122");
INSERT INTO `wp_gf_form_view` VALUES("23371", "8", "2015-12-27 01:03:26", "188.165.15.50", "16");
INSERT INTO `wp_gf_form_view` VALUES("23372", "3", "2015-12-27 02:03:17", "202.46.48.26", "96");
INSERT INTO `wp_gf_form_view` VALUES("23373", "8", "2015-12-27 02:03:17", "202.46.48.26", "12");
INSERT INTO `wp_gf_form_view` VALUES("23374", "6", "2015-12-27 02:41:55", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("23375", "3", "2015-12-27 03:02:21", "202.46.51.84", "130");
INSERT INTO `wp_gf_form_view` VALUES("23376", "8", "2015-12-27 03:02:21", "202.46.51.84", "18");
INSERT INTO `wp_gf_form_view` VALUES("23377", "3", "2015-12-27 04:01:23", "202.46.55.153", "111");
INSERT INTO `wp_gf_form_view` VALUES("23378", "8", "2015-12-27 04:01:23", "202.46.55.153", "14");
INSERT INTO `wp_gf_form_view` VALUES("23379", "3", "2015-12-27 05:08:17", "202.46.52.18", "89");
INSERT INTO `wp_gf_form_view` VALUES("23380", "8", "2015-12-27 05:08:17", "202.46.52.18", "12");
INSERT INTO `wp_gf_form_view` VALUES("23381", "1", "2015-12-27 05:51:38", "45.61.46.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("23382", "3", "2015-12-27 06:01:22", "202.46.48.145", "77");
INSERT INTO `wp_gf_form_view` VALUES("23383", "8", "2015-12-27 06:01:22", "202.46.48.145", "10");
INSERT INTO `wp_gf_form_view` VALUES("23384", "3", "2015-12-27 07:11:58", "188.165.15.50", "93");
INSERT INTO `wp_gf_form_view` VALUES("23385", "8", "2015-12-27 07:11:58", "188.165.15.50", "12");
INSERT INTO `wp_gf_form_view` VALUES("23386", "3", "2015-12-27 08:05:13", "202.46.50.190", "70");
INSERT INTO `wp_gf_form_view` VALUES("23387", "8", "2015-12-27 08:05:13", "202.46.50.190", "9");
INSERT INTO `wp_gf_form_view` VALUES("23388", "3", "2015-12-27 09:05:14", "68.180.229.161", "58");
INSERT INTO `wp_gf_form_view` VALUES("23389", "8", "2015-12-27 09:05:15", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("23390", "3", "2015-12-27 10:09:02", "202.46.51.194", "89");
INSERT INTO `wp_gf_form_view` VALUES("23391", "8", "2015-12-27 10:09:02", "202.46.51.194", "11");
INSERT INTO `wp_gf_form_view` VALUES("23392", "1", "2015-12-27 10:41:59", "212.83.148.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("23393", "3", "2015-12-27 11:02:06", "202.46.50.135", "63");
INSERT INTO `wp_gf_form_view` VALUES("23394", "8", "2015-12-27 11:02:06", "202.46.50.135", "9");
INSERT INTO `wp_gf_form_view` VALUES("23395", "1", "2015-12-27 11:55:59", "192.126.192.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("23396", "3", "2015-12-27 12:12:52", "202.46.54.137", "47");
INSERT INTO `wp_gf_form_view` VALUES("23397", "8", "2015-12-27 12:12:52", "202.46.54.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("23398", "2", "2015-12-27 13:01:45", "195.154.58.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("23399", "3", "2015-12-27 13:01:45", "195.154.58.30", "103");
INSERT INTO `wp_gf_form_view` VALUES("23400", "8", "2015-12-27 13:01:45", "195.154.58.30", "14");
INSERT INTO `wp_gf_form_view` VALUES("23401", "3", "2015-12-27 14:06:31", "151.80.31.152", "87");
INSERT INTO `wp_gf_form_view` VALUES("23402", "8", "2015-12-27 14:06:31", "151.80.31.152", "11");
INSERT INTO `wp_gf_form_view` VALUES("23403", "3", "2015-12-27 15:00:11", "68.180.229.161", "134");
INSERT INTO `wp_gf_form_view` VALUES("23404", "8", "2015-12-27 15:00:11", "68.180.229.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("23405", "2", "2015-12-27 15:58:20", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("23406", "3", "2015-12-27 16:02:50", "202.46.53.156", "59");
INSERT INTO `wp_gf_form_view` VALUES("23407", "8", "2015-12-27 16:02:50", "202.46.53.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("23408", "3", "2015-12-27 17:07:16", "62.210.152.87", "74");
INSERT INTO `wp_gf_form_view` VALUES("23409", "8", "2015-12-27 17:07:16", "62.210.152.87", "9");
INSERT INTO `wp_gf_form_view` VALUES("23410", "3", "2015-12-27 18:06:41", "202.46.48.207", "305");
INSERT INTO `wp_gf_form_view` VALUES("23411", "8", "2015-12-27 18:06:41", "202.46.48.207", "38");
INSERT INTO `wp_gf_form_view` VALUES("23412", "2", "2015-12-27 18:14:03", "151.42.80.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("23413", "3", "2015-12-27 19:16:29", "209.121.46.34", "118");
INSERT INTO `wp_gf_form_view` VALUES("23414", "8", "2015-12-27 19:16:29", "209.121.46.34", "16");
INSERT INTO `wp_gf_form_view` VALUES("23415", "1", "2015-12-27 19:17:39", "209.121.46.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("23416", "3", "2015-12-27 20:10:30", "202.46.50.124", "57");
INSERT INTO `wp_gf_form_view` VALUES("23417", "8", "2015-12-27 20:10:30", "202.46.50.124", "7");
INSERT INTO `wp_gf_form_view` VALUES("23418", "3", "2015-12-27 21:03:34", "202.46.53.123", "85");
INSERT INTO `wp_gf_form_view` VALUES("23419", "8", "2015-12-27 21:03:34", "202.46.53.123", "11");
INSERT INTO `wp_gf_form_view` VALUES("23420", "3", "2015-12-27 22:05:51", "70.66.137.82", "69");
INSERT INTO `wp_gf_form_view` VALUES("23421", "8", "2015-12-27 22:05:52", "70.66.137.82", "9");
INSERT INTO `wp_gf_form_view` VALUES("23422", "3", "2015-12-27 23:07:24", "202.46.57.184", "61");
INSERT INTO `wp_gf_form_view` VALUES("23423", "8", "2015-12-27 23:07:24", "202.46.57.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("23424", "3", "2015-12-28 00:00:25", "216.232.154.7", "85");
INSERT INTO `wp_gf_form_view` VALUES("23425", "8", "2015-12-28 00:00:25", "216.232.154.7", "11");
INSERT INTO `wp_gf_form_view` VALUES("23426", "3", "2015-12-28 01:23:18", "202.46.53.116", "73");
INSERT INTO `wp_gf_form_view` VALUES("23427", "8", "2015-12-28 01:23:18", "202.46.53.116", "10");
INSERT INTO `wp_gf_form_view` VALUES("23428", "3", "2015-12-28 02:10:39", "68.180.229.161", "26");
INSERT INTO `wp_gf_form_view` VALUES("23429", "8", "2015-12-28 02:22:48", "202.46.51.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("23430", "3", "2015-12-28 03:22:18", "202.46.56.13", "115");
INSERT INTO `wp_gf_form_view` VALUES("23431", "8", "2015-12-28 03:22:19", "202.46.56.13", "15");
INSERT INTO `wp_gf_form_view` VALUES("23432", "6", "2015-12-28 03:23:37", "157.55.39.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("23433", "5", "2015-12-28 03:23:44", "157.55.39.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("23434", "3", "2015-12-28 04:00:36", "68.180.229.161", "45");
INSERT INTO `wp_gf_form_view` VALUES("23435", "8", "2015-12-28 04:00:36", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("23436", "3", "2015-12-28 05:02:16", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("23437", "8", "2015-12-28 05:02:16", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("23438", "3", "2015-12-28 07:02:31", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("23439", "8", "2015-12-28 07:02:33", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("23440", "3", "2015-12-28 08:23:22", "207.46.13.119", "144");
INSERT INTO `wp_gf_form_view` VALUES("23441", "8", "2015-12-28 08:23:23", "207.46.13.119", "17");
INSERT INTO `wp_gf_form_view` VALUES("23442", "1", "2015-12-28 08:44:22", "117.177.243.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("23443", "3", "2015-12-28 10:31:13", "195.154.209.60", "42");
INSERT INTO `wp_gf_form_view` VALUES("23444", "8", "2015-12-28 10:31:13", "195.154.209.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("23445", "3", "2015-12-28 11:53:05", "157.55.39.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("23446", "8", "2015-12-28 11:53:05", "157.55.39.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("23447", "3", "2015-12-28 12:02:06", "207.46.13.127", "83");
INSERT INTO `wp_gf_form_view` VALUES("23448", "8", "2015-12-28 12:02:06", "207.46.13.127", "11");
INSERT INTO `wp_gf_form_view` VALUES("23449", "1", "2015-12-28 13:10:51", "23.92.219.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("23450", "3", "2015-12-28 13:10:51", "23.92.219.19", "42");
INSERT INTO `wp_gf_form_view` VALUES("23451", "8", "2015-12-28 13:10:51", "23.92.219.19", "7");
INSERT INTO `wp_gf_form_view` VALUES("23452", "3", "2015-12-28 14:36:45", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("23453", "8", "2015-12-28 14:36:45", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("23454", "8", "2015-12-28 15:03:30", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("23455", "3", "2015-12-28 15:03:31", "68.180.229.161", "72");
INSERT INTO `wp_gf_form_view` VALUES("23456", "2", "2015-12-28 15:28:29", "40.77.167.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("23457", "1", "2015-12-28 16:11:17", "108.61.123.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("23458", "3", "2015-12-28 16:11:17", "108.61.123.75", "32");
INSERT INTO `wp_gf_form_view` VALUES("23459", "8", "2015-12-28 16:11:17", "108.61.123.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("23460", "3", "2015-12-28 17:15:22", "202.46.54.163", "106");
INSERT INTO `wp_gf_form_view` VALUES("23461", "8", "2015-12-28 17:15:22", "202.46.54.163", "11");
INSERT INTO `wp_gf_form_view` VALUES("23462", "9", "2015-12-28 17:45:22", "75.156.73.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("23463", "3", "2015-12-28 18:07:27", "144.76.4.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("23464", "8", "2015-12-28 18:07:27", "144.76.4.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("23465", "3", "2015-12-28 19:12:39", "66.249.74.104", "55");
INSERT INTO `wp_gf_form_view` VALUES("23466", "8", "2015-12-28 19:12:39", "66.249.74.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("23467", "1", "2015-12-28 19:13:01", "40.77.167.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("23468", "7", "2015-12-28 19:41:29", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("23469", "3", "2015-12-28 20:02:21", "66.249.74.104", "165");
INSERT INTO `wp_gf_form_view` VALUES("23470", "8", "2015-12-28 20:02:21", "66.249.74.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("23471", "1", "2015-12-28 20:38:27", "209.164.66.60", "4");
INSERT INTO `wp_gf_form_view` VALUES("23472", "3", "2015-12-28 21:05:37", "178.137.88.17", "60");
INSERT INTO `wp_gf_form_view` VALUES("23473", "8", "2015-12-28 21:05:37", "178.137.88.17", "8");
INSERT INTO `wp_gf_form_view` VALUES("23474", "3", "2015-12-28 22:05:33", "188.165.15.50", "273");
INSERT INTO `wp_gf_form_view` VALUES("23475", "8", "2015-12-28 22:05:33", "188.165.15.50", "34");
INSERT INTO `wp_gf_form_view` VALUES("23476", "2", "2015-12-28 22:16:26", "80.61.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("23477", "3", "2015-12-28 23:12:23", "202.46.58.97", "70");
INSERT INTO `wp_gf_form_view` VALUES("23478", "8", "2015-12-28 23:12:24", "202.46.58.97", "8");
INSERT INTO `wp_gf_form_view` VALUES("23479", "2", "2015-12-28 23:43:30", "40.77.167.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("23480", "3", "2015-12-29 00:11:54", "202.46.55.124", "32");
INSERT INTO `wp_gf_form_view` VALUES("23481", "8", "2015-12-29 00:11:54", "202.46.55.124", "4");
INSERT INTO `wp_gf_form_view` VALUES("23482", "3", "2015-12-29 01:11:32", "202.46.58.134", "55");
INSERT INTO `wp_gf_form_view` VALUES("23483", "8", "2015-12-29 01:11:33", "202.46.58.134", "7");
INSERT INTO `wp_gf_form_view` VALUES("23484", "1", "2015-12-29 01:33:43", "212.83.148.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("23485", "3", "2015-12-29 02:10:54", "202.46.48.145", "38");
INSERT INTO `wp_gf_form_view` VALUES("23486", "8", "2015-12-29 02:10:54", "202.46.48.145", "5");
INSERT INTO `wp_gf_form_view` VALUES("23487", "3", "2015-12-29 03:00:19", "178.137.89.157", "79");
INSERT INTO `wp_gf_form_view` VALUES("23488", "8", "2015-12-29 03:00:19", "178.137.89.157", "10");
INSERT INTO `wp_gf_form_view` VALUES("23489", "3", "2015-12-29 04:03:25", "66.249.74.102", "128");
INSERT INTO `wp_gf_form_view` VALUES("23490", "8", "2015-12-29 04:03:25", "66.249.74.102", "17");
INSERT INTO `wp_gf_form_view` VALUES("23491", "3", "2015-12-29 05:09:25", "202.46.50.161", "46");
INSERT INTO `wp_gf_form_view` VALUES("23492", "8", "2015-12-29 05:09:25", "202.46.50.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("23493", "5", "2015-12-29 05:40:19", "188.165.15.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("23494", "3", "2015-12-29 06:03:59", "202.46.52.41", "80");
INSERT INTO `wp_gf_form_view` VALUES("23495", "8", "2015-12-29 06:03:59", "202.46.52.41", "10");
INSERT INTO `wp_gf_form_view` VALUES("23496", "9", "2015-12-29 06:38:57", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("23497", "3", "2015-12-29 07:06:45", "188.165.15.50", "269");
INSERT INTO `wp_gf_form_view` VALUES("23498", "8", "2015-12-29 07:06:45", "188.165.15.50", "33");
INSERT INTO `wp_gf_form_view` VALUES("23499", "1", "2015-12-29 07:26:00", "158.222.15.233", "5");
INSERT INTO `wp_gf_form_view` VALUES("23500", "1", "2015-12-29 08:05:33", "192.151.145.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("23501", "3", "2015-12-29 08:05:33", "192.151.145.10", "65");
INSERT INTO `wp_gf_form_view` VALUES("23502", "8", "2015-12-29 08:05:33", "192.151.145.10", "8");
INSERT INTO `wp_gf_form_view` VALUES("23503", "3", "2015-12-29 09:02:18", "91.121.141.219", "72");
INSERT INTO `wp_gf_form_view` VALUES("23504", "8", "2015-12-29 09:02:18", "91.121.141.219", "9");
INSERT INTO `wp_gf_form_view` VALUES("23505", "3", "2015-12-29 10:09:25", "202.46.51.178", "120");
INSERT INTO `wp_gf_form_view` VALUES("23506", "8", "2015-12-29 10:09:25", "202.46.51.178", "15");
INSERT INTO `wp_gf_form_view` VALUES("23507", "6", "2015-12-29 10:26:25", "136.243.17.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23508", "3", "2015-12-29 11:03:57", "202.46.56.18", "54");
INSERT INTO `wp_gf_form_view` VALUES("23509", "8", "2015-12-29 11:03:57", "202.46.56.18", "7");
INSERT INTO `wp_gf_form_view` VALUES("23510", "3", "2015-12-29 12:08:31", "157.55.39.30", "52");
INSERT INTO `wp_gf_form_view` VALUES("23511", "8", "2015-12-29 12:08:31", "157.55.39.30", "7");
INSERT INTO `wp_gf_form_view` VALUES("23512", "3", "2015-12-29 13:03:14", "188.165.15.50", "38");
INSERT INTO `wp_gf_form_view` VALUES("23513", "8", "2015-12-29 13:03:14", "188.165.15.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("23514", "3", "2015-12-29 14:10:26", "68.180.229.161", "271");
INSERT INTO `wp_gf_form_view` VALUES("23515", "8", "2015-12-29 14:10:27", "68.180.229.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("23516", "1", "2015-12-29 14:31:34", "23.95.241.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("23517", "2", "2015-12-29 14:38:54", "104.236.16.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("23518", "3", "2015-12-29 15:01:56", "66.249.74.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("23519", "8", "2015-12-29 15:01:56", "66.249.74.102", "5");
INSERT INTO `wp_gf_form_view` VALUES("23520", "3", "2015-12-29 16:03:58", "202.46.51.118", "29");
INSERT INTO `wp_gf_form_view` VALUES("23521", "8", "2015-12-29 16:03:58", "202.46.51.118", "3");
INSERT INTO `wp_gf_form_view` VALUES("23522", "3", "2015-12-29 17:48:00", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("23523", "8", "2015-12-29 17:48:00", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("23524", "3", "2015-12-29 19:15:08", "162.156.84.134", "84");
INSERT INTO `wp_gf_form_view` VALUES("23525", "8", "2015-12-29 19:15:09", "162.156.84.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("23526", "3", "2015-12-29 20:37:52", "68.180.229.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("23527", "8", "2015-12-29 20:37:52", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("23528", "3", "2015-12-29 22:01:48", "188.165.15.50", "29");
INSERT INTO `wp_gf_form_view` VALUES("23529", "8", "2015-12-29 22:01:48", "188.165.15.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("23530", "3", "2015-12-30 00:05:01", "96.50.68.167", "96");
INSERT INTO `wp_gf_form_view` VALUES("23531", "8", "2015-12-30 00:05:01", "96.50.68.167", "12");
INSERT INTO `wp_gf_form_view` VALUES("23532", "1", "2015-12-30 01:12:10", "23.95.244.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("23533", "3", "2015-12-30 01:12:10", "23.95.244.105", "58");
INSERT INTO `wp_gf_form_view` VALUES("23534", "8", "2015-12-30 01:12:10", "23.95.244.105", "7");
INSERT INTO `wp_gf_form_view` VALUES("23535", "3", "2015-12-30 02:19:06", "207.46.13.86", "25");
INSERT INTO `wp_gf_form_view` VALUES("23536", "8", "2015-12-30 02:19:06", "207.46.13.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("23537", "3", "2015-12-30 03:37:42", "188.165.15.50", "129");
INSERT INTO `wp_gf_form_view` VALUES("23538", "8", "2015-12-30 03:37:42", "188.165.15.50", "16");
INSERT INTO `wp_gf_form_view` VALUES("23539", "3", "2015-12-30 04:11:15", "178.137.88.17", "25");
INSERT INTO `wp_gf_form_view` VALUES("23540", "8", "2015-12-30 04:11:15", "178.137.88.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("23541", "3", "2015-12-30 05:22:11", "24.68.16.27", "2030");
INSERT INTO `wp_gf_form_view` VALUES("23542", "8", "2015-12-30 05:22:11", "24.68.16.27", "260");
INSERT INTO `wp_gf_form_view` VALUES("23543", "1", "2015-12-30 05:30:19", "45.55.81.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("23544", "5", "2015-12-30 05:39:23", "45.55.81.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("23545", "6", "2015-12-30 05:51:19", "45.55.81.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("23546", "3", "2015-12-30 06:00:09", "45.55.81.7", "2365");
INSERT INTO `wp_gf_form_view` VALUES("23547", "8", "2015-12-30 06:00:09", "45.55.81.7", "298");
INSERT INTO `wp_gf_form_view` VALUES("23548", "9", "2015-12-30 06:01:29", "45.55.81.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("23549", "3", "2015-12-30 07:05:37", "68.180.229.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("23550", "8", "2015-12-30 07:05:37", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("23551", "3", "2015-12-30 08:02:16", "46.118.226.141", "40");
INSERT INTO `wp_gf_form_view` VALUES("23552", "8", "2015-12-30 08:02:16", "46.118.226.141", "5");
INSERT INTO `wp_gf_form_view` VALUES("23553", "3", "2015-12-30 09:04:23", "188.165.15.50", "9");
INSERT INTO `wp_gf_form_view` VALUES("23554", "8", "2015-12-30 09:04:23", "188.165.15.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("23555", "3", "2015-12-30 11:28:50", "75.155.175.231", "16");
INSERT INTO `wp_gf_form_view` VALUES("23556", "8", "2015-12-30 11:28:50", "75.155.175.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("23557", "3", "2015-12-30 12:05:52", "178.137.160.2", "118");
INSERT INTO `wp_gf_form_view` VALUES("23558", "3", "2015-12-30 12:05:52", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23559", "3", "2015-12-30 12:05:52", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23560", "8", "2015-12-30 12:05:52", "178.137.160.2", "15");
INSERT INTO `wp_gf_form_view` VALUES("23561", "3", "2015-12-30 14:20:01", "66.249.74.102", "32");
INSERT INTO `wp_gf_form_view` VALUES("23562", "8", "2015-12-30 14:20:02", "66.249.74.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("23563", "3", "2015-12-30 15:03:11", "192.151.145.10", "33");
INSERT INTO `wp_gf_form_view` VALUES("23564", "8", "2015-12-30 15:03:11", "192.151.145.10", "6");
INSERT INTO `wp_gf_form_view` VALUES("23565", "3", "2015-12-30 16:52:15", "193.201.227.99", "40");
INSERT INTO `wp_gf_form_view` VALUES("23566", "8", "2015-12-30 16:52:15", "193.201.227.99", "4");
INSERT INTO `wp_gf_form_view` VALUES("23567", "3", "2015-12-30 17:04:10", "66.249.74.102", "32");
INSERT INTO `wp_gf_form_view` VALUES("23568", "8", "2015-12-30 17:04:10", "66.249.74.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("23569", "3", "2015-12-30 18:00:17", "202.46.55.13", "93");
INSERT INTO `wp_gf_form_view` VALUES("23570", "8", "2015-12-30 18:00:17", "202.46.55.13", "13");
INSERT INTO `wp_gf_form_view` VALUES("23571", "3", "2015-12-30 19:00:16", "78.146.11.157", "79");
INSERT INTO `wp_gf_form_view` VALUES("23572", "8", "2015-12-30 19:00:16", "78.146.11.157", "11");
INSERT INTO `wp_gf_form_view` VALUES("23573", "1", "2015-12-30 19:37:34", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23574", "3", "2015-12-30 20:01:05", "68.180.229.161", "47");
INSERT INTO `wp_gf_form_view` VALUES("23575", "8", "2015-12-30 20:01:05", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("23576", "3", "2015-12-30 21:21:14", "202.46.57.165", "21");
INSERT INTO `wp_gf_form_view` VALUES("23577", "8", "2015-12-30 21:21:14", "202.46.57.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("23578", "3", "2015-12-30 22:27:48", "134.249.49.23", "64");
INSERT INTO `wp_gf_form_view` VALUES("23579", "8", "2015-12-30 22:27:48", "134.249.49.23", "8");
INSERT INTO `wp_gf_form_view` VALUES("23580", "3", "2015-12-30 23:06:27", "207.46.13.86", "190");
INSERT INTO `wp_gf_form_view` VALUES("23581", "8", "2015-12-30 23:06:27", "207.46.13.86", "24");
INSERT INTO `wp_gf_form_view` VALUES("23582", "7", "2015-12-30 23:06:49", "207.46.13.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("23583", "3", "2015-12-31 00:08:40", "202.46.48.121", "45");
INSERT INTO `wp_gf_form_view` VALUES("23584", "8", "2015-12-31 00:08:40", "202.46.48.121", "6");
INSERT INTO `wp_gf_form_view` VALUES("23585", "9", "2015-12-31 00:47:46", "136.243.48.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("23586", "3", "2015-12-31 01:03:05", "184.151.231.43", "106");
INSERT INTO `wp_gf_form_view` VALUES("23587", "8", "2015-12-31 01:03:05", "184.151.231.43", "13");
INSERT INTO `wp_gf_form_view` VALUES("23588", "3", "2015-12-31 02:07:43", "24.69.70.7", "31");
INSERT INTO `wp_gf_form_view` VALUES("23589", "8", "2015-12-31 02:07:43", "24.69.70.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("23590", "9", "2015-12-31 02:57:00", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23591", "3", "2015-12-31 03:14:19", "24.68.30.103", "91");
INSERT INTO `wp_gf_form_view` VALUES("23592", "8", "2015-12-31 03:14:19", "24.68.30.103", "11");
INSERT INTO `wp_gf_form_view` VALUES("23593", "2", "2015-12-31 03:29:51", "107.161.83.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("23594", "3", "2015-12-31 04:03:05", "202.46.51.30", "64");
INSERT INTO `wp_gf_form_view` VALUES("23595", "8", "2015-12-31 04:03:05", "202.46.51.30", "8");
INSERT INTO `wp_gf_form_view` VALUES("23596", "1", "2015-12-31 04:10:53", "192.227.158.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("23597", "3", "2015-12-31 05:10:04", "202.46.51.183", "163");
INSERT INTO `wp_gf_form_view` VALUES("23598", "8", "2015-12-31 05:10:04", "202.46.51.183", "20");
INSERT INTO `wp_gf_form_view` VALUES("23599", "2", "2015-12-31 05:32:19", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("23600", "3", "2015-12-31 06:17:02", "202.46.48.137", "63");
INSERT INTO `wp_gf_form_view` VALUES("23601", "8", "2015-12-31 06:17:02", "202.46.48.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("23602", "9", "2015-12-31 07:16:11", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23603", "3", "2015-12-31 07:22:04", "62.210.162.184", "61");
INSERT INTO `wp_gf_form_view` VALUES("23604", "8", "2015-12-31 07:22:04", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("23605", "2", "2015-12-31 07:48:07", "188.165.15.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("23606", "1", "2015-12-31 08:23:19", "158.222.15.119", "3");
INSERT INTO `wp_gf_form_view` VALUES("23607", "3", "2015-12-31 08:23:20", "158.222.15.119", "146");
INSERT INTO `wp_gf_form_view` VALUES("23608", "8", "2015-12-31 08:23:20", "158.222.15.119", "18");
INSERT INTO `wp_gf_form_view` VALUES("23609", "3", "2015-12-31 09:00:20", "66.249.74.104", "71");
INSERT INTO `wp_gf_form_view` VALUES("23610", "8", "2015-12-31 09:00:20", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("23611", "3", "2015-12-31 10:06:36", "66.249.74.102", "58");
INSERT INTO `wp_gf_form_view` VALUES("23612", "8", "2015-12-31 10:06:36", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("23613", "3", "2015-12-31 11:11:51", "188.165.15.50", "46");
INSERT INTO `wp_gf_form_view` VALUES("23614", "8", "2015-12-31 11:11:51", "188.165.15.50", "6");
INSERT INTO `wp_gf_form_view` VALUES("23615", "3", "2015-12-31 12:10:54", "62.210.162.184", "208");
INSERT INTO `wp_gf_form_view` VALUES("23616", "8", "2015-12-31 12:10:54", "62.210.162.184", "26");
INSERT INTO `wp_gf_form_view` VALUES("23617", "2", "2015-12-31 12:27:09", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("23618", "3", "2015-12-31 13:04:58", "66.249.74.106", "96");
INSERT INTO `wp_gf_form_view` VALUES("23619", "8", "2015-12-31 13:04:58", "66.249.74.106", "12");
INSERT INTO `wp_gf_form_view` VALUES("23620", "3", "2015-12-31 14:49:47", "184.66.28.163", "24");
INSERT INTO `wp_gf_form_view` VALUES("23621", "8", "2015-12-31 14:49:47", "184.66.28.163", "3");
INSERT INTO `wp_gf_form_view` VALUES("23622", "1", "2015-12-31 14:50:32", "184.66.28.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("23623", "3", "2015-12-31 15:12:50", "202.46.52.146", "94");
INSERT INTO `wp_gf_form_view` VALUES("23624", "8", "2015-12-31 15:12:50", "202.46.52.146", "11");
INSERT INTO `wp_gf_form_view` VALUES("23625", "3", "2015-12-31 16:01:44", "66.249.74.102", "65");
INSERT INTO `wp_gf_form_view` VALUES("23626", "8", "2015-12-31 16:01:44", "66.249.74.102", "9");
INSERT INTO `wp_gf_form_view` VALUES("23627", "3", "2015-12-31 17:14:00", "62.210.162.184", "72");
INSERT INTO `wp_gf_form_view` VALUES("23628", "8", "2015-12-31 17:14:00", "62.210.162.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("23629", "3", "2015-12-31 18:04:03", "154.20.234.165", "118");
INSERT INTO `wp_gf_form_view` VALUES("23630", "8", "2015-12-31 18:04:03", "154.20.234.165", "14");
INSERT INTO `wp_gf_form_view` VALUES("23631", "3", "2015-12-31 19:07:16", "202.46.58.134", "165");
INSERT INTO `wp_gf_form_view` VALUES("23632", "8", "2015-12-31 19:07:16", "202.46.58.134", "20");
INSERT INTO `wp_gf_form_view` VALUES("23633", "1", "2015-12-31 19:15:35", "192.255.101.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("23634", "3", "2015-12-31 20:03:22", "62.210.162.184", "86");
INSERT INTO `wp_gf_form_view` VALUES("23635", "8", "2015-12-31 20:03:22", "62.210.162.184", "11");
INSERT INTO `wp_gf_form_view` VALUES("23636", "3", "2015-12-31 21:11:58", "202.46.48.195", "165");
INSERT INTO `wp_gf_form_view` VALUES("23637", "8", "2015-12-31 21:11:58", "202.46.48.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("23638", "3", "2015-12-31 22:00:27", "202.46.48.98", "139");
INSERT INTO `wp_gf_form_view` VALUES("23639", "8", "2015-12-31 22:00:27", "202.46.48.98", "18");
INSERT INTO `wp_gf_form_view` VALUES("23640", "1", "2015-12-31 22:53:54", "204.44.90.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("23641", "3", "2015-12-31 23:19:46", "188.165.15.50", "56");
INSERT INTO `wp_gf_form_view` VALUES("23642", "8", "2015-12-31 23:19:46", "188.165.15.50", "7");
INSERT INTO `wp_gf_form_view` VALUES("23643", "3", "2016-01-01 00:06:49", "68.180.229.161", "103");
INSERT INTO `wp_gf_form_view` VALUES("23644", "8", "2016-01-01 00:06:49", "68.180.229.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("23645", "3", "2016-01-01 01:21:27", "202.46.51.28", "39");
INSERT INTO `wp_gf_form_view` VALUES("23646", "8", "2016-01-01 01:21:27", "202.46.51.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("23647", "3", "2016-01-01 02:07:35", "154.20.28.148", "52");
INSERT INTO `wp_gf_form_view` VALUES("23648", "8", "2016-01-01 02:07:35", "154.20.28.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("23649", "3", "2016-01-01 03:04:00", "202.46.55.195", "188");
INSERT INTO `wp_gf_form_view` VALUES("23650", "8", "2016-01-01 03:04:00", "202.46.55.195", "23");
INSERT INTO `wp_gf_form_view` VALUES("23651", "3", "2016-01-01 04:19:20", "172.218.192.82", "80");
INSERT INTO `wp_gf_form_view` VALUES("23652", "8", "2016-01-01 04:19:20", "172.218.192.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("23653", "1", "2016-01-01 04:26:54", "172.218.192.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("23654", "3", "2016-01-01 05:00:35", "188.165.15.50", "56");
INSERT INTO `wp_gf_form_view` VALUES("23655", "8", "2016-01-01 05:00:36", "188.165.15.50", "7");
INSERT INTO `wp_gf_form_view` VALUES("23656", "2", "2016-01-01 05:22:35", "157.55.39.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("23657", "3", "2016-01-01 06:49:02", "178.137.160.2", "102");
INSERT INTO `wp_gf_form_view` VALUES("23658", "3", "2016-01-01 06:49:02", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23659", "3", "2016-01-01 06:49:02", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23660", "8", "2016-01-01 06:49:02", "178.137.160.2", "11");
INSERT INTO `wp_gf_form_view` VALUES("23661", "8", "2016-01-01 06:49:02", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23662", "8", "2016-01-01 06:49:02", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23663", "1", "2016-01-01 06:53:20", "188.165.15.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("23664", "3", "2016-01-01 07:11:20", "62.210.162.184", "16");
INSERT INTO `wp_gf_form_view` VALUES("23665", "8", "2016-01-01 07:11:20", "62.210.162.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("23666", "3", "2016-01-01 08:50:08", "24.108.9.238", "32");
INSERT INTO `wp_gf_form_view` VALUES("23667", "8", "2016-01-01 08:50:09", "24.108.9.238", "4");
INSERT INTO `wp_gf_form_view` VALUES("23668", "3", "2016-01-01 09:06:58", "198.27.101.168", "24");
INSERT INTO `wp_gf_form_view` VALUES("23669", "8", "2016-01-01 09:06:58", "198.27.101.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("23670", "3", "2016-01-01 10:13:49", "198.27.101.168", "99");
INSERT INTO `wp_gf_form_view` VALUES("23671", "8", "2016-01-01 10:13:49", "198.27.101.168", "12");
INSERT INTO `wp_gf_form_view` VALUES("23672", "1", "2016-01-01 10:39:00", "122.117.227.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("23673", "3", "2016-01-01 11:06:05", "192.151.145.10", "58");
INSERT INTO `wp_gf_form_view` VALUES("23674", "8", "2016-01-01 11:06:05", "192.151.145.10", "8");
INSERT INTO `wp_gf_form_view` VALUES("23675", "3", "2016-01-01 12:00:57", "198.27.101.168", "65");
INSERT INTO `wp_gf_form_view` VALUES("23676", "8", "2016-01-01 12:00:57", "198.27.101.168", "8");
INSERT INTO `wp_gf_form_view` VALUES("23677", "3", "2016-01-01 13:32:32", "188.165.15.50", "32");
INSERT INTO `wp_gf_form_view` VALUES("23678", "8", "2016-01-01 13:32:32", "188.165.15.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("23679", "3", "2016-01-01 14:40:26", "104.247.21.230", "69");
INSERT INTO `wp_gf_form_view` VALUES("23680", "8", "2016-01-01 14:40:26", "104.247.21.230", "9");
INSERT INTO `wp_gf_form_view` VALUES("23681", "3", "2016-01-01 15:07:56", "66.249.74.102", "44");
INSERT INTO `wp_gf_form_view` VALUES("23682", "8", "2016-01-01 15:07:56", "66.249.74.102", "5");
INSERT INTO `wp_gf_form_view` VALUES("23683", "3", "2016-01-01 16:08:23", "96.50.68.167", "48");
INSERT INTO `wp_gf_form_view` VALUES("23684", "8", "2016-01-01 16:08:23", "96.50.68.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("23685", "3", "2016-01-01 17:17:04", "207.46.13.109", "133");
INSERT INTO `wp_gf_form_view` VALUES("23686", "8", "2016-01-01 17:17:05", "207.46.13.109", "17");
INSERT INTO `wp_gf_form_view` VALUES("23687", "3", "2016-01-01 18:04:00", "207.46.13.86", "381");
INSERT INTO `wp_gf_form_view` VALUES("23688", "8", "2016-01-01 18:04:00", "207.46.13.86", "47");
INSERT INTO `wp_gf_form_view` VALUES("23689", "6", "2016-01-01 18:49:01", "207.46.13.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("23690", "1", "2016-01-01 18:58:23", "157.55.39.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("23691", "3", "2016-01-01 19:10:47", "202.46.50.82", "105");
INSERT INTO `wp_gf_form_view` VALUES("23692", "8", "2016-01-01 19:10:47", "202.46.50.82", "12");
INSERT INTO `wp_gf_form_view` VALUES("23693", "1", "2016-01-01 19:47:52", "45.64.166.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23694", "2", "2016-01-01 19:50:37", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("23695", "3", "2016-01-01 20:28:39", "202.46.56.71", "120");
INSERT INTO `wp_gf_form_view` VALUES("23696", "8", "2016-01-01 20:28:39", "202.46.56.71", "16");
INSERT INTO `wp_gf_form_view` VALUES("23697", "3", "2016-01-01 21:04:54", "202.46.57.17", "179");
INSERT INTO `wp_gf_form_view` VALUES("23698", "8", "2016-01-01 21:04:54", "202.46.57.17", "22");
INSERT INTO `wp_gf_form_view` VALUES("23699", "1", "2016-01-01 21:58:03", "188.240.140.34", "4");
INSERT INTO `wp_gf_form_view` VALUES("23700", "3", "2016-01-01 22:04:57", "202.46.54.183", "98");
INSERT INTO `wp_gf_form_view` VALUES("23701", "8", "2016-01-01 22:04:57", "202.46.54.183", "13");
INSERT INTO `wp_gf_form_view` VALUES("23702", "3", "2016-01-01 23:05:01", "202.46.49.92", "88");
INSERT INTO `wp_gf_form_view` VALUES("23703", "8", "2016-01-01 23:05:01", "202.46.49.92", "11");
INSERT INTO `wp_gf_form_view` VALUES("23704", "3", "2016-01-02 00:04:38", "66.249.74.106", "236");
INSERT INTO `wp_gf_form_view` VALUES("23705", "8", "2016-01-02 00:04:38", "66.249.74.106", "29");
INSERT INTO `wp_gf_form_view` VALUES("23706", "1", "2016-01-02 00:30:46", "155.94.139.10", "9");
INSERT INTO `wp_gf_form_view` VALUES("23707", "3", "2016-01-02 01:05:06", "202.46.51.88", "111");
INSERT INTO `wp_gf_form_view` VALUES("23708", "8", "2016-01-02 01:05:06", "202.46.51.88", "14");
INSERT INTO `wp_gf_form_view` VALUES("23709", "3", "2016-01-02 02:05:09", "202.46.52.109", "197");
INSERT INTO `wp_gf_form_view` VALUES("23710", "8", "2016-01-02 02:05:09", "202.46.52.109", "24");
INSERT INTO `wp_gf_form_view` VALUES("23711", "1", "2016-01-02 02:28:40", "62.210.162.184", "3");
INSERT INTO `wp_gf_form_view` VALUES("23712", "3", "2016-01-02 03:01:06", "66.249.74.104", "102");
INSERT INTO `wp_gf_form_view` VALUES("23713", "8", "2016-01-02 03:01:06", "66.249.74.104", "14");
INSERT INTO `wp_gf_form_view` VALUES("23714", "3", "2016-01-02 04:04:44", "62.210.162.184", "153");
INSERT INTO `wp_gf_form_view` VALUES("23715", "8", "2016-01-02 04:04:44", "62.210.162.184", "19");
INSERT INTO `wp_gf_form_view` VALUES("23716", "1", "2016-01-02 04:19:09", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("23717", "3", "2016-01-02 05:05:18", "202.46.54.108", "79");
INSERT INTO `wp_gf_form_view` VALUES("23718", "8", "2016-01-02 05:05:18", "202.46.54.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("23719", "3", "2016-01-02 06:05:22", "202.46.52.163", "67");
INSERT INTO `wp_gf_form_view` VALUES("23720", "8", "2016-01-02 06:05:23", "202.46.52.163", "7");
INSERT INTO `wp_gf_form_view` VALUES("23721", "1", "2016-01-02 06:05:23", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("23722", "3", "2016-01-02 07:05:25", "202.46.52.104", "107");
INSERT INTO `wp_gf_form_view` VALUES("23723", "8", "2016-01-02 07:05:25", "202.46.52.104", "14");
INSERT INTO `wp_gf_form_view` VALUES("23724", "3", "2016-01-02 08:05:27", "202.46.49.206", "165");
INSERT INTO `wp_gf_form_view` VALUES("23725", "8", "2016-01-02 08:05:27", "202.46.49.206", "21");
INSERT INTO `wp_gf_form_view` VALUES("23726", "3", "2016-01-02 09:05:30", "202.46.51.132", "64");
INSERT INTO `wp_gf_form_view` VALUES("23727", "8", "2016-01-02 09:05:30", "202.46.51.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("23728", "3", "2016-01-02 10:05:02", "174.129.237.157", "106");
INSERT INTO `wp_gf_form_view` VALUES("23729", "8", "2016-01-02 10:05:02", "174.129.237.157", "15");
INSERT INTO `wp_gf_form_view` VALUES("23730", "3", "2016-01-02 11:05:36", "202.46.57.204", "74");
INSERT INTO `wp_gf_form_view` VALUES("23731", "8", "2016-01-02 11:05:36", "202.46.57.204", "10");
INSERT INTO `wp_gf_form_view` VALUES("23732", "3", "2016-01-02 12:05:39", "202.46.50.74", "56");
INSERT INTO `wp_gf_form_view` VALUES("23733", "8", "2016-01-02 12:05:39", "202.46.50.74", "7");
INSERT INTO `wp_gf_form_view` VALUES("23734", "1", "2016-01-02 12:24:11", "23.95.40.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("23735", "3", "2016-01-02 13:05:43", "202.46.56.13", "96");
INSERT INTO `wp_gf_form_view` VALUES("23736", "8", "2016-01-02 13:05:43", "202.46.56.13", "11");
INSERT INTO `wp_gf_form_view` VALUES("23737", "3", "2016-01-02 14:05:45", "202.46.48.202", "114");
INSERT INTO `wp_gf_form_view` VALUES("23738", "8", "2016-01-02 14:05:45", "202.46.48.202", "15");
INSERT INTO `wp_gf_form_view` VALUES("23739", "3", "2016-01-02 15:05:48", "202.46.50.190", "92");
INSERT INTO `wp_gf_form_view` VALUES("23740", "8", "2016-01-02 15:05:48", "202.46.50.190", "12");
INSERT INTO `wp_gf_form_view` VALUES("23741", "5", "2016-01-02 15:09:25", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23742", "3", "2016-01-02 16:05:51", "202.46.56.14", "181");
INSERT INTO `wp_gf_form_view` VALUES("23743", "8", "2016-01-02 16:05:51", "202.46.56.14", "24");
INSERT INTO `wp_gf_form_view` VALUES("23744", "2", "2016-01-02 16:08:47", "195.154.227.118", "3");
INSERT INTO `wp_gf_form_view` VALUES("23745", "3", "2016-01-02 17:05:54", "202.46.56.202", "79");
INSERT INTO `wp_gf_form_view` VALUES("23746", "8", "2016-01-02 17:05:54", "202.46.56.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("23747", "3", "2016-01-02 18:05:58", "202.46.48.126", "90");
INSERT INTO `wp_gf_form_view` VALUES("23748", "8", "2016-01-02 18:05:58", "202.46.48.126", "11");
INSERT INTO `wp_gf_form_view` VALUES("23749", "3", "2016-01-02 19:06:03", "202.46.56.187", "85");
INSERT INTO `wp_gf_form_view` VALUES("23750", "8", "2016-01-02 19:06:03", "202.46.56.187", "11");
INSERT INTO `wp_gf_form_view` VALUES("23751", "7", "2016-01-02 19:43:31", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23752", "3", "2016-01-02 20:00:29", "46.118.126.200", "102");
INSERT INTO `wp_gf_form_view` VALUES("23753", "8", "2016-01-02 20:00:29", "46.118.126.200", "12");
INSERT INTO `wp_gf_form_view` VALUES("23754", "3", "2016-01-02 21:01:29", "202.46.58.181", "226");
INSERT INTO `wp_gf_form_view` VALUES("23755", "8", "2016-01-02 21:01:29", "202.46.58.181", "28");
INSERT INTO `wp_gf_form_view` VALUES("23756", "1", "2016-01-02 22:07:23", "192.151.145.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("23757", "3", "2016-01-02 22:07:23", "192.151.145.10", "89");
INSERT INTO `wp_gf_form_view` VALUES("23758", "8", "2016-01-02 22:07:23", "192.151.145.10", "11");
INSERT INTO `wp_gf_form_view` VALUES("23759", "3", "2016-01-02 23:07:32", "202.46.57.208", "112");
INSERT INTO `wp_gf_form_view` VALUES("23760", "8", "2016-01-02 23:07:32", "202.46.57.208", "15");
INSERT INTO `wp_gf_form_view` VALUES("23761", "3", "2016-01-03 00:00:59", "202.46.56.205", "84");
INSERT INTO `wp_gf_form_view` VALUES("23762", "8", "2016-01-03 00:00:59", "202.46.56.205", "10");
INSERT INTO `wp_gf_form_view` VALUES("23763", "3", "2016-01-03 01:03:31", "66.249.84.116", "201");
INSERT INTO `wp_gf_form_view` VALUES("23764", "8", "2016-01-03 01:03:31", "66.249.84.116", "25");
INSERT INTO `wp_gf_form_view` VALUES("23765", "1", "2016-01-03 01:23:41", "104.144.17.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("23766", "3", "2016-01-03 02:01:48", "202.46.56.201", "105");
INSERT INTO `wp_gf_form_view` VALUES("23767", "8", "2016-01-03 02:01:48", "202.46.56.201", "14");
INSERT INTO `wp_gf_form_view` VALUES("23768", "3", "2016-01-03 03:09:32", "24.108.28.170", "97");
INSERT INTO `wp_gf_form_view` VALUES("23769", "8", "2016-01-03 03:09:32", "24.108.28.170", "12");
INSERT INTO `wp_gf_form_view` VALUES("23770", "3", "2016-01-03 05:21:43", "136.243.48.85", "24");
INSERT INTO `wp_gf_form_view` VALUES("23771", "8", "2016-01-03 05:21:44", "136.243.48.85", "3");
INSERT INTO `wp_gf_form_view` VALUES("23772", "1", "2016-01-03 05:40:32", "98.237.176.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("23773", "2", "2016-01-03 06:10:09", "172.245.107.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("23774", "3", "2016-01-03 06:10:09", "172.245.107.251", "41");
INSERT INTO `wp_gf_form_view` VALUES("23775", "8", "2016-01-03 06:10:09", "172.245.107.251", "5");
INSERT INTO `wp_gf_form_view` VALUES("23776", "3", "2016-01-03 07:23:20", "205.250.180.113", "24");
INSERT INTO `wp_gf_form_view` VALUES("23777", "8", "2016-01-03 07:23:21", "205.250.180.113", "3");
INSERT INTO `wp_gf_form_view` VALUES("23778", "3", "2016-01-03 08:41:09", "188.215.22.17", "16");
INSERT INTO `wp_gf_form_view` VALUES("23779", "8", "2016-01-03 08:41:09", "188.215.22.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("23780", "3", "2016-01-03 09:02:13", "207.46.13.80", "219");
INSERT INTO `wp_gf_form_view` VALUES("23781", "8", "2016-01-03 09:02:13", "207.46.13.80", "27");
INSERT INTO `wp_gf_form_view` VALUES("23782", "3", "2016-01-03 10:28:30", "104.247.21.182", "74");
INSERT INTO `wp_gf_form_view` VALUES("23783", "8", "2016-01-03 10:28:30", "104.247.21.182", "9");
INSERT INTO `wp_gf_form_view` VALUES("23784", "3", "2016-01-03 11:29:11", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("23785", "8", "2016-01-03 11:29:11", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23786", "3", "2016-01-03 12:25:28", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("23787", "8", "2016-01-03 12:25:28", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("23788", "3", "2016-01-03 13:07:07", "178.137.160.2", "40");
INSERT INTO `wp_gf_form_view` VALUES("23789", "8", "2016-01-03 13:07:07", "178.137.160.2", "5");
INSERT INTO `wp_gf_form_view` VALUES("23790", "3", "2016-01-03 14:10:50", "62.210.162.184", "74");
INSERT INTO `wp_gf_form_view` VALUES("23791", "8", "2016-01-03 14:10:50", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("23792", "1", "2016-01-03 14:36:24", "62.210.141.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("23793", "3", "2016-01-03 15:17:42", "133.50.201.25", "282");
INSERT INTO `wp_gf_form_view` VALUES("23794", "8", "2016-01-03 15:17:42", "133.50.201.25", "35");
INSERT INTO `wp_gf_form_view` VALUES("23795", "2", "2016-01-03 15:18:28", "133.50.201.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("23796", "1", "2016-01-03 15:24:29", "192.151.145.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("23797", "3", "2016-01-03 16:21:56", "66.249.74.102", "57");
INSERT INTO `wp_gf_form_view` VALUES("23798", "8", "2016-01-03 16:21:56", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("23799", "3", "2016-01-03 17:12:03", "66.249.74.102", "16");
INSERT INTO `wp_gf_form_view` VALUES("23800", "8", "2016-01-03 17:12:03", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("23801", "3", "2016-01-03 18:31:58", "157.55.39.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("23802", "8", "2016-01-03 18:31:58", "157.55.39.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("23803", "3", "2016-01-03 19:21:30", "96.50.86.31", "33");
INSERT INTO `wp_gf_form_view` VALUES("23804", "8", "2016-01-03 19:21:30", "96.50.86.31", "4");
INSERT INTO `wp_gf_form_view` VALUES("23805", "1", "2016-01-03 20:23:10", "62.210.141.40", "6");
INSERT INTO `wp_gf_form_view` VALUES("23806", "3", "2016-01-03 20:23:10", "62.210.141.40", "117");
INSERT INTO `wp_gf_form_view` VALUES("23807", "8", "2016-01-03 20:23:10", "62.210.141.40", "14");
INSERT INTO `wp_gf_form_view` VALUES("23808", "3", "2016-01-03 21:05:23", "154.20.30.13", "56");
INSERT INTO `wp_gf_form_view` VALUES("23809", "8", "2016-01-03 21:05:23", "154.20.30.13", "7");
INSERT INTO `wp_gf_form_view` VALUES("23810", "3", "2016-01-03 22:40:23", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("23811", "8", "2016-01-03 22:40:24", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23812", "3", "2016-01-03 23:12:09", "46.118.126.200", "124");
INSERT INTO `wp_gf_form_view` VALUES("23813", "8", "2016-01-03 23:12:09", "46.118.126.200", "18");
INSERT INTO `wp_gf_form_view` VALUES("23814", "3", "2016-01-04 00:43:59", "68.180.229.161", "32");
INSERT INTO `wp_gf_form_view` VALUES("23815", "8", "2016-01-04 00:43:59", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("23816", "3", "2016-01-04 01:28:58", "184.151.231.94", "64");
INSERT INTO `wp_gf_form_view` VALUES("23817", "8", "2016-01-04 01:28:58", "184.151.231.94", "8");
INSERT INTO `wp_gf_form_view` VALUES("23818", "3", "2016-01-04 02:02:15", "24.108.9.238", "81");
INSERT INTO `wp_gf_form_view` VALUES("23819", "8", "2016-01-04 02:02:16", "24.108.9.238", "10");
INSERT INTO `wp_gf_form_view` VALUES("23820", "3", "2016-01-04 03:19:38", "62.210.162.184", "80");
INSERT INTO `wp_gf_form_view` VALUES("23821", "8", "2016-01-04 03:19:38", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("23822", "3", "2016-01-04 04:05:01", "24.108.9.238", "121");
INSERT INTO `wp_gf_form_view` VALUES("23823", "8", "2016-01-04 04:05:01", "24.108.9.238", "16");
INSERT INTO `wp_gf_form_view` VALUES("23824", "3", "2016-01-04 05:12:59", "184.66.39.97", "98");
INSERT INTO `wp_gf_form_view` VALUES("23825", "8", "2016-01-04 05:12:59", "184.66.39.97", "12");
INSERT INTO `wp_gf_form_view` VALUES("23826", "3", "2016-01-04 06:11:02", "202.46.54.97", "342");
INSERT INTO `wp_gf_form_view` VALUES("23827", "8", "2016-01-04 06:11:02", "202.46.54.97", "44");
INSERT INTO `wp_gf_form_view` VALUES("23828", "2", "2016-01-04 06:52:05", "78.159.213.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("23829", "8", "2016-01-04 07:09:24", "202.46.58.189", "22");
INSERT INTO `wp_gf_form_view` VALUES("23830", "3", "2016-01-04 07:09:24", "202.46.58.189", "168");
INSERT INTO `wp_gf_form_view` VALUES("23831", "2", "2016-01-04 07:13:17", "195.154.146.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("23832", "3", "2016-01-04 08:01:53", "202.46.54.160", "107");
INSERT INTO `wp_gf_form_view` VALUES("23833", "8", "2016-01-04 08:01:53", "202.46.54.160", "14");
INSERT INTO `wp_gf_form_view` VALUES("23834", "1", "2016-01-04 08:54:28", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("23835", "3", "2016-01-04 09:00:16", "202.46.48.195", "130");
INSERT INTO `wp_gf_form_view` VALUES("23836", "8", "2016-01-04 09:00:16", "202.46.48.195", "17");
INSERT INTO `wp_gf_form_view` VALUES("23837", "1", "2016-01-04 09:30:56", "192.151.145.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("23838", "1", "2016-01-04 09:30:56", "192.151.145.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("23839", "3", "2016-01-04 10:06:33", "66.249.74.104", "104");
INSERT INTO `wp_gf_form_view` VALUES("23840", "8", "2016-01-04 10:06:33", "66.249.74.104", "14");
INSERT INTO `wp_gf_form_view` VALUES("23841", "3", "2016-01-04 11:16:07", "202.46.52.202", "70");
INSERT INTO `wp_gf_form_view` VALUES("23842", "8", "2016-01-04 11:16:07", "202.46.52.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("23843", "3", "2016-01-04 12:06:09", "202.46.49.114", "99");
INSERT INTO `wp_gf_form_view` VALUES("23844", "8", "2016-01-04 12:06:09", "202.46.49.114", "13");
INSERT INTO `wp_gf_form_view` VALUES("23845", "3", "2016-01-04 13:04:32", "202.46.58.186", "84");
INSERT INTO `wp_gf_form_view` VALUES("23846", "8", "2016-01-04 13:04:32", "202.46.58.186", "11");
INSERT INTO `wp_gf_form_view` VALUES("23847", "3", "2016-01-04 14:02:55", "202.46.50.19", "133");
INSERT INTO `wp_gf_form_view` VALUES("23848", "8", "2016-01-04 14:02:55", "202.46.50.19", "16");
INSERT INTO `wp_gf_form_view` VALUES("23849", "3", "2016-01-04 15:01:15", "202.46.51.104", "72");
INSERT INTO `wp_gf_form_view` VALUES("23850", "8", "2016-01-04 15:01:15", "202.46.51.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("23851", "3", "2016-01-04 16:01:30", "202.46.52.158", "135");
INSERT INTO `wp_gf_form_view` VALUES("23852", "8", "2016-01-04 16:01:31", "202.46.52.158", "18");
INSERT INTO `wp_gf_form_view` VALUES("23853", "9", "2016-01-04 16:11:57", "188.165.15.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("23854", "3", "2016-01-04 17:08:13", "202.46.54.21", "150");
INSERT INTO `wp_gf_form_view` VALUES("23855", "8", "2016-01-04 17:08:14", "202.46.54.21", "17");
INSERT INTO `wp_gf_form_view` VALUES("23856", "3", "2016-01-04 18:00:52", "91.196.122.186", "212");
INSERT INTO `wp_gf_form_view` VALUES("23857", "8", "2016-01-04 18:00:52", "91.196.122.186", "27");
INSERT INTO `wp_gf_form_view` VALUES("23858", "3", "2016-01-04 19:05:03", "202.46.57.187", "172");
INSERT INTO `wp_gf_form_view` VALUES("23859", "8", "2016-01-04 19:05:03", "202.46.57.187", "22");
INSERT INTO `wp_gf_form_view` VALUES("23860", "3", "2016-01-04 20:03:21", "202.46.58.27", "82");
INSERT INTO `wp_gf_form_view` VALUES("23861", "8", "2016-01-04 20:03:21", "202.46.58.27", "11");
INSERT INTO `wp_gf_form_view` VALUES("23862", "3", "2016-01-04 21:03:08", "204.239.250.1", "138");
INSERT INTO `wp_gf_form_view` VALUES("23863", "8", "2016-01-04 21:03:08", "204.239.250.1", "18");
INSERT INTO `wp_gf_form_view` VALUES("23864", "3", "2016-01-04 22:00:03", "202.46.50.17", "113");
INSERT INTO `wp_gf_form_view` VALUES("23865", "8", "2016-01-04 22:00:03", "202.46.50.17", "15");
INSERT INTO `wp_gf_form_view` VALUES("23866", "3", "2016-01-04 23:04:10", "46.118.226.141", "102");
INSERT INTO `wp_gf_form_view` VALUES("23867", "8", "2016-01-04 23:04:10", "46.118.226.141", "13");
INSERT INTO `wp_gf_form_view` VALUES("23868", "3", "2016-01-05 00:14:32", "202.46.55.146", "100");
INSERT INTO `wp_gf_form_view` VALUES("23869", "8", "2016-01-05 00:14:32", "202.46.55.146", "14");
INSERT INTO `wp_gf_form_view` VALUES("23870", "3", "2016-01-05 01:06:56", "202.46.48.89", "66");
INSERT INTO `wp_gf_form_view` VALUES("23871", "8", "2016-01-05 01:06:56", "202.46.48.89", "8");
INSERT INTO `wp_gf_form_view` VALUES("23872", "1", "2016-01-05 01:56:23", "24.108.7.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("23873", "3", "2016-01-05 02:00:30", "24.108.7.238", "53");
INSERT INTO `wp_gf_form_view` VALUES("23874", "8", "2016-01-05 02:00:30", "24.108.7.238", "7");
INSERT INTO `wp_gf_form_view` VALUES("23875", "8", "2016-01-05 03:07:49", "202.46.52.67", "15");
INSERT INTO `wp_gf_form_view` VALUES("23876", "3", "2016-01-05 03:07:50", "202.46.52.67", "107");
INSERT INTO `wp_gf_form_view` VALUES("23877", "9", "2016-01-05 04:02:42", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23878", "3", "2016-01-05 04:02:42", "68.180.229.161", "111");
INSERT INTO `wp_gf_form_view` VALUES("23879", "8", "2016-01-05 04:02:42", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("23880", "1", "2016-01-05 05:29:51", "23.95.244.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("23881", "3", "2016-01-05 05:29:52", "23.95.244.105", "26");
INSERT INTO `wp_gf_form_view` VALUES("23882", "8", "2016-01-05 05:29:52", "23.95.244.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("23883", "3", "2016-01-05 06:40:16", "188.165.15.214", "8");
INSERT INTO `wp_gf_form_view` VALUES("23884", "8", "2016-01-05 06:40:16", "188.165.15.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("23885", "3", "2016-01-05 07:02:04", "178.137.160.2", "1197");
INSERT INTO `wp_gf_form_view` VALUES("23886", "3", "2016-01-05 07:02:04", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23887", "8", "2016-01-05 07:02:05", "178.137.160.2", "153");
INSERT INTO `wp_gf_form_view` VALUES("23888", "8", "2016-01-05 07:02:05", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("23889", "1", "2016-01-05 07:46:43", "107.170.167.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("23890", "5", "2016-01-05 07:55:36", "107.170.167.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("23891", "3", "2016-01-05 08:00:01", "107.170.167.10", "3111");
INSERT INTO `wp_gf_form_view` VALUES("23892", "8", "2016-01-05 08:00:01", "107.170.167.10", "393");
INSERT INTO `wp_gf_form_view` VALUES("23893", "6", "2016-01-05 08:07:06", "107.170.167.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("23894", "9", "2016-01-05 08:17:16", "107.170.167.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("23895", "1", "2016-01-05 08:39:28", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("23896", "3", "2016-01-05 09:01:36", "107.170.167.10", "361");
INSERT INTO `wp_gf_form_view` VALUES("23897", "8", "2016-01-05 09:01:36", "107.170.167.10", "47");
INSERT INTO `wp_gf_form_view` VALUES("23898", "2", "2016-01-05 09:03:16", "107.170.167.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("23899", "7", "2016-01-05 09:38:27", "157.55.39.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("23900", "3", "2016-01-05 10:03:10", "68.180.229.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("23901", "8", "2016-01-05 10:03:10", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("23902", "3", "2016-01-05 11:35:29", "207.46.13.99", "37");
INSERT INTO `wp_gf_form_view` VALUES("23903", "8", "2016-01-05 11:35:29", "207.46.13.99", "5");
INSERT INTO `wp_gf_form_view` VALUES("23904", "3", "2016-01-05 12:13:52", "192.99.8.19", "65");
INSERT INTO `wp_gf_form_view` VALUES("23905", "8", "2016-01-05 12:13:52", "192.99.8.19", "8");
INSERT INTO `wp_gf_form_view` VALUES("23906", "1", "2016-01-05 12:29:32", "23.95.244.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("23907", "3", "2016-01-05 13:12:07", "144.76.153.198", "186");
INSERT INTO `wp_gf_form_view` VALUES("23908", "8", "2016-01-05 13:12:08", "144.76.153.198", "24");
INSERT INTO `wp_gf_form_view` VALUES("23909", "2", "2016-01-05 13:56:37", "104.236.47.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("23910", "3", "2016-01-05 14:02:52", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("23911", "8", "2016-01-05 14:02:52", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("23912", "3", "2016-01-05 15:29:52", "66.249.74.102", "57");
INSERT INTO `wp_gf_form_view` VALUES("23913", "8", "2016-01-05 15:29:53", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("23914", "2", "2016-01-05 15:56:27", "216.158.206.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("23915", "3", "2016-01-05 16:25:38", "66.249.74.102", "126");
INSERT INTO `wp_gf_form_view` VALUES("23916", "8", "2016-01-05 16:25:38", "66.249.74.102", "15");
INSERT INTO `wp_gf_form_view` VALUES("23917", "1", "2016-01-05 16:56:02", "162.156.87.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("23918", "2", "2016-01-05 17:02:42", "207.46.13.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("23919", "3", "2016-01-05 17:02:42", "207.46.13.99", "58");
INSERT INTO `wp_gf_form_view` VALUES("23920", "8", "2016-01-05 17:02:42", "207.46.13.99", "7");
INSERT INTO `wp_gf_form_view` VALUES("23921", "1", "2016-01-05 18:07:36", "23.95.244.177", "4");
INSERT INTO `wp_gf_form_view` VALUES("23922", "3", "2016-01-05 18:07:36", "23.95.244.177", "187");
INSERT INTO `wp_gf_form_view` VALUES("23923", "8", "2016-01-05 18:07:36", "23.95.244.177", "23");
INSERT INTO `wp_gf_form_view` VALUES("23924", "5", "2016-01-05 18:12:27", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("23925", "3", "2016-01-05 19:07:35", "202.46.57.183", "45");
INSERT INTO `wp_gf_form_view` VALUES("23926", "8", "2016-01-05 19:07:35", "202.46.57.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("23927", "6", "2016-01-05 19:21:08", "188.165.15.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("23928", "8", "2016-01-05 20:06:13", "202.46.52.64", "24");
INSERT INTO `wp_gf_form_view` VALUES("23929", "3", "2016-01-05 20:06:14", "202.46.52.64", "195");
INSERT INTO `wp_gf_form_view` VALUES("23930", "8", "2016-01-05 21:13:19", "24.108.22.54", "11");
INSERT INTO `wp_gf_form_view` VALUES("23931", "3", "2016-01-05 21:13:19", "24.108.22.54", "89");
INSERT INTO `wp_gf_form_view` VALUES("23932", "3", "2016-01-05 22:03:26", "202.46.48.27", "61");
INSERT INTO `wp_gf_form_view` VALUES("23933", "8", "2016-01-05 22:03:26", "202.46.48.27", "7");
INSERT INTO `wp_gf_form_view` VALUES("23934", "3", "2016-01-05 23:02:03", "202.46.49.142", "47");
INSERT INTO `wp_gf_form_view` VALUES("23935", "8", "2016-01-05 23:02:03", "202.46.49.142", "6");
INSERT INTO `wp_gf_form_view` VALUES("23936", "3", "2016-01-06 00:00:40", "202.46.58.137", "51");
INSERT INTO `wp_gf_form_view` VALUES("23937", "8", "2016-01-06 00:00:40", "202.46.58.137", "7");
INSERT INTO `wp_gf_form_view` VALUES("23938", "3", "2016-01-06 01:06:01", "188.165.15.214", "73");
INSERT INTO `wp_gf_form_view` VALUES("23939", "8", "2016-01-06 01:06:01", "188.165.15.214", "8");
INSERT INTO `wp_gf_form_view` VALUES("23940", "1", "2016-01-06 01:36:48", "188.165.15.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("23941", "3", "2016-01-06 02:17:27", "202.46.51.161", "39");
INSERT INTO `wp_gf_form_view` VALUES("23942", "8", "2016-01-06 02:17:27", "202.46.51.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("23943", "8", "2016-01-06 03:09:56", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("23944", "3", "2016-01-06 03:16:03", "202.46.50.152", "38");
INSERT INTO `wp_gf_form_view` VALUES("23945", "3", "2016-01-06 04:02:15", "100.43.81.141", "149");
INSERT INTO `wp_gf_form_view` VALUES("23946", "8", "2016-01-06 04:02:15", "100.43.81.141", "18");
INSERT INTO `wp_gf_form_view` VALUES("23947", "3", "2016-01-06 05:13:00", "202.46.48.146", "63");
INSERT INTO `wp_gf_form_view` VALUES("23948", "8", "2016-01-06 05:13:00", "202.46.48.146", "7");
INSERT INTO `wp_gf_form_view` VALUES("23949", "3", "2016-01-06 06:10:45", "202.46.58.80", "39");
INSERT INTO `wp_gf_form_view` VALUES("23950", "8", "2016-01-06 06:10:45", "202.46.58.80", "5");
INSERT INTO `wp_gf_form_view` VALUES("23951", "3", "2016-01-06 07:17:50", "104.247.240.99", "236");
INSERT INTO `wp_gf_form_view` VALUES("23952", "8", "2016-01-06 07:17:53", "104.247.240.99", "28");
INSERT INTO `wp_gf_form_view` VALUES("23953", "1", "2016-01-06 07:28:57", "24.69.41.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("23954", "3", "2016-01-06 08:30:43", "188.165.15.214", "16");
INSERT INTO `wp_gf_form_view` VALUES("23955", "8", "2016-01-06 08:30:43", "188.165.15.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("23956", "3", "2016-01-06 09:14:33", "24.215.121.31", "73");
INSERT INTO `wp_gf_form_view` VALUES("23957", "8", "2016-01-06 09:14:34", "24.215.121.31", "9");
INSERT INTO `wp_gf_form_view` VALUES("23958", "3", "2016-01-06 10:05:14", "157.55.39.48", "98");
INSERT INTO `wp_gf_form_view` VALUES("23959", "8", "2016-01-06 10:05:14", "157.55.39.48", "12");
INSERT INTO `wp_gf_form_view` VALUES("23960", "1", "2016-01-06 11:25:46", "172.245.113.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("23961", "3", "2016-01-06 11:25:46", "172.245.113.3", "24");
INSERT INTO `wp_gf_form_view` VALUES("23962", "8", "2016-01-06 11:25:46", "172.245.113.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("23963", "3", "2016-01-06 12:23:54", "104.143.218.221", "81");
INSERT INTO `wp_gf_form_view` VALUES("23964", "8", "2016-01-06 12:23:54", "104.143.218.221", "10");
INSERT INTO `wp_gf_form_view` VALUES("23965", "3", "2016-01-06 13:07:32", "157.55.39.49", "116");
INSERT INTO `wp_gf_form_view` VALUES("23966", "8", "2016-01-06 13:07:32", "157.55.39.49", "14");
INSERT INTO `wp_gf_form_view` VALUES("23967", "1", "2016-01-06 13:13:18", "172.245.113.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("23968", "3", "2016-01-06 14:19:19", "62.210.162.184", "16");
INSERT INTO `wp_gf_form_view` VALUES("23969", "8", "2016-01-06 14:19:19", "62.210.162.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("23970", "3", "2016-01-06 15:03:49", "66.249.74.106", "146");
INSERT INTO `wp_gf_form_view` VALUES("23971", "8", "2016-01-06 15:03:49", "66.249.74.106", "18");
INSERT INTO `wp_gf_form_view` VALUES("23972", "2", "2016-01-06 15:10:55", "198.98.110.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("23973", "1", "2016-01-06 15:39:01", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("23974", "3", "2016-01-06 16:00:06", "62.210.162.184", "71");
INSERT INTO `wp_gf_form_view` VALUES("23975", "8", "2016-01-06 16:00:06", "62.210.162.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("23976", "3", "2016-01-06 17:05:19", "202.46.50.94", "111");
INSERT INTO `wp_gf_form_view` VALUES("23977", "8", "2016-01-06 17:05:19", "202.46.50.94", "14");
INSERT INTO `wp_gf_form_view` VALUES("23978", "1", "2016-01-06 17:26:42", "216.158.206.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("23979", "3", "2016-01-06 18:03:04", "202.46.51.58", "166");
INSERT INTO `wp_gf_form_view` VALUES("23980", "8", "2016-01-06 18:03:04", "202.46.51.58", "21");
INSERT INTO `wp_gf_form_view` VALUES("23981", "3", "2016-01-06 19:00:49", "202.46.53.66", "181");
INSERT INTO `wp_gf_form_view` VALUES("23982", "8", "2016-01-06 19:00:49", "202.46.53.66", "22");
INSERT INTO `wp_gf_form_view` VALUES("23983", "3", "2016-01-06 20:00:00", "184.151.231.33", "60");
INSERT INTO `wp_gf_form_view` VALUES("23984", "8", "2016-01-06 20:00:00", "184.151.231.33", "8");
INSERT INTO `wp_gf_form_view` VALUES("23985", "3", "2016-01-06 21:12:24", "62.210.162.184", "202");
INSERT INTO `wp_gf_form_view` VALUES("23986", "8", "2016-01-06 21:12:24", "62.210.162.184", "24");
INSERT INTO `wp_gf_form_view` VALUES("23987", "9", "2016-01-06 21:25:10", "207.46.13.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("23988", "1", "2016-01-06 21:51:45", "207.46.13.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("23989", "3", "2016-01-06 22:13:20", "202.46.56.172", "76");
INSERT INTO `wp_gf_form_view` VALUES("23990", "8", "2016-01-06 22:13:20", "202.46.56.172", "10");
INSERT INTO `wp_gf_form_view` VALUES("23991", "1", "2016-01-06 22:39:55", "120.237.57.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("23992", "3", "2016-01-06 23:11:05", "202.46.54.108", "48");
INSERT INTO `wp_gf_form_view` VALUES("23993", "8", "2016-01-06 23:11:05", "202.46.54.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("23994", "3", "2016-01-07 00:03:04", "46.118.226.141", "143");
INSERT INTO `wp_gf_form_view` VALUES("23995", "8", "2016-01-07 00:03:04", "46.118.226.141", "17");
INSERT INTO `wp_gf_form_view` VALUES("23996", "3", "2016-01-07 01:00:18", "66.249.74.102", "57");
INSERT INTO `wp_gf_form_view` VALUES("23997", "8", "2016-01-07 01:00:18", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("23998", "3", "2016-01-07 02:09:39", "93.127.146.54", "107");
INSERT INTO `wp_gf_form_view` VALUES("23999", "8", "2016-01-07 02:09:39", "93.127.146.54", "13");
INSERT INTO `wp_gf_form_view` VALUES("24000", "2", "2016-01-07 02:29:31", "107.161.83.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("24001", "8", "2016-01-07 03:03:18", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("24002", "3", "2016-01-07 03:03:18", "68.180.229.161", "71");
INSERT INTO `wp_gf_form_view` VALUES("24003", "3", "2016-01-07 04:17:00", "202.46.56.90", "49");
INSERT INTO `wp_gf_form_view` VALUES("24004", "8", "2016-01-07 04:17:00", "202.46.56.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("24005", "1", "2016-01-07 04:22:29", "104.227.52.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("24006", "3", "2016-01-07 05:04:36", "202.46.54.142", "31");
INSERT INTO `wp_gf_form_view` VALUES("24007", "8", "2016-01-07 05:04:36", "202.46.54.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("24008", "3", "2016-01-07 06:16:02", "202.46.49.193", "87");
INSERT INTO `wp_gf_form_view` VALUES("24009", "8", "2016-01-07 06:16:02", "202.46.49.193", "11");
INSERT INTO `wp_gf_form_view` VALUES("24010", "3", "2016-01-07 07:01:09", "157.55.39.155", "346");
INSERT INTO `wp_gf_form_view` VALUES("24011", "8", "2016-01-07 07:01:09", "157.55.39.155", "42");
INSERT INTO `wp_gf_form_view` VALUES("24012", "1", "2016-01-07 07:01:43", "207.46.13.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("24013", "1", "2016-01-07 08:04:04", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("24014", "3", "2016-01-07 08:04:04", "192.99.166.236", "96");
INSERT INTO `wp_gf_form_view` VALUES("24015", "8", "2016-01-07 08:04:04", "192.99.166.236", "13");
INSERT INTO `wp_gf_form_view` VALUES("24016", "3", "2016-01-07 09:02:38", "202.46.54.184", "85");
INSERT INTO `wp_gf_form_view` VALUES("24017", "8", "2016-01-07 09:02:38", "202.46.54.184", "11");
INSERT INTO `wp_gf_form_view` VALUES("24018", "3", "2016-01-07 10:14:02", "202.46.55.11", "1282");
INSERT INTO `wp_gf_form_view` VALUES("24019", "8", "2016-01-07 10:14:02", "202.46.55.11", "161");
INSERT INTO `wp_gf_form_view` VALUES("24020", "6", "2016-01-07 10:33:04", "157.55.39.49", "2");
INSERT INTO `wp_gf_form_view` VALUES("24021", "2", "2016-01-07 10:42:36", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("24022", "1", "2016-01-07 10:44:47", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("24023", "5", "2016-01-07 10:48:11", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("24024", "9", "2016-01-07 10:49:48", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("24025", "3", "2016-01-07 11:00:03", "5.9.98.130", "4509");
INSERT INTO `wp_gf_form_view` VALUES("24026", "8", "2016-01-07 11:00:03", "5.9.98.130", "581");
INSERT INTO `wp_gf_form_view` VALUES("24027", "1", "2016-01-07 11:19:46", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("24028", "3", "2016-01-07 12:00:59", "5.9.98.130", "4487");
INSERT INTO `wp_gf_form_view` VALUES("24029", "8", "2016-01-07 12:00:59", "5.9.98.130", "585");
INSERT INTO `wp_gf_form_view` VALUES("24030", "3", "2016-01-07 13:00:02", "5.9.98.130", "2386");
INSERT INTO `wp_gf_form_view` VALUES("24031", "8", "2016-01-07 13:00:03", "5.9.98.130", "293");
INSERT INTO `wp_gf_form_view` VALUES("24032", "3", "2016-01-07 14:00:00", "5.9.98.130", "5932");
INSERT INTO `wp_gf_form_view` VALUES("24033", "8", "2016-01-07 14:00:05", "5.9.98.130", "771");
INSERT INTO `wp_gf_form_view` VALUES("24034", "3", "2016-01-07 15:00:00", "5.9.98.130", "3869");
INSERT INTO `wp_gf_form_view` VALUES("24035", "8", "2016-01-07 15:00:07", "5.9.98.130", "493");
INSERT INTO `wp_gf_form_view` VALUES("24036", "3", "2016-01-07 16:34:51", "202.46.51.86", "676");
INSERT INTO `wp_gf_form_view` VALUES("24037", "8", "2016-01-07 16:34:52", "202.46.51.86", "85");
INSERT INTO `wp_gf_form_view` VALUES("24038", "3", "2016-01-07 17:00:00", "5.9.98.130", "5088");
INSERT INTO `wp_gf_form_view` VALUES("24039", "8", "2016-01-07 17:00:00", "5.9.98.130", "589");
INSERT INTO `wp_gf_form_view` VALUES("24040", "2", "2016-01-07 17:47:57", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("24041", "3", "2016-01-07 18:00:00", "5.9.98.130", "5966");
INSERT INTO `wp_gf_form_view` VALUES("24042", "8", "2016-01-07 18:00:01", "5.9.98.130", "871");
INSERT INTO `wp_gf_form_view` VALUES("24043", "1", "2016-01-07 18:38:29", "207.46.13.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("24044", "5", "2016-01-07 18:56:20", "188.165.15.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("24045", "3", "2016-01-07 19:00:02", "5.9.98.130", "5533");
INSERT INTO `wp_gf_form_view` VALUES("24046", "8", "2016-01-07 19:00:02", "5.9.98.130", "711");
INSERT INTO `wp_gf_form_view` VALUES("24047", "5", "2016-01-07 19:04:46", "184.66.135.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("24048", "1", "2016-01-07 19:05:51", "184.66.135.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("24049", "3", "2016-01-07 20:00:00", "5.9.98.130", "2839");
INSERT INTO `wp_gf_form_view` VALUES("24050", "8", "2016-01-07 20:00:01", "5.9.98.130", "336");
INSERT INTO `wp_gf_form_view` VALUES("24051", "3", "2016-01-07 21:02:00", "5.9.98.130", "2197");
INSERT INTO `wp_gf_form_view` VALUES("24052", "8", "2016-01-07 21:02:00", "5.9.98.130", "275");
INSERT INTO `wp_gf_form_view` VALUES("24053", "9", "2016-01-07 21:50:46", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("24054", "3", "2016-01-07 22:01:15", "188.40.112.210", "61");
INSERT INTO `wp_gf_form_view` VALUES("24055", "8", "2016-01-07 22:01:16", "188.40.112.210", "8");
INSERT INTO `wp_gf_form_view` VALUES("24056", "3", "2016-01-07 23:14:12", "68.180.229.161", "64");
INSERT INTO `wp_gf_form_view` VALUES("24057", "8", "2016-01-07 23:14:12", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("24058", "3", "2016-01-08 00:07:05", "202.46.58.138", "150");
INSERT INTO `wp_gf_form_view` VALUES("24059", "8", "2016-01-08 00:07:05", "202.46.58.138", "22");
INSERT INTO `wp_gf_form_view` VALUES("24060", "3", "2016-01-08 01:06:40", "96.50.89.195", "46");
INSERT INTO `wp_gf_form_view` VALUES("24061", "8", "2016-01-08 01:06:40", "96.50.89.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("24062", "3", "2016-01-08 02:07:14", "104.247.21.182", "130");
INSERT INTO `wp_gf_form_view` VALUES("24063", "8", "2016-01-08 02:07:14", "104.247.21.182", "16");
INSERT INTO `wp_gf_form_view` VALUES("24064", "3", "2016-01-08 03:08:38", "202.46.54.109", "120");
INSERT INTO `wp_gf_form_view` VALUES("24065", "8", "2016-01-08 03:08:38", "202.46.54.109", "15");
INSERT INTO `wp_gf_form_view` VALUES("24066", "1", "2016-01-08 03:59:00", "188.240.141.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("24067", "1", "2016-01-08 04:02:24", "98.237.176.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("24068", "3", "2016-01-08 04:02:24", "98.237.176.97", "57");
INSERT INTO `wp_gf_form_view` VALUES("24069", "8", "2016-01-08 04:02:24", "98.237.176.97", "7");
INSERT INTO `wp_gf_form_view` VALUES("24070", "3", "2016-01-08 05:22:36", "202.46.55.176", "32");
INSERT INTO `wp_gf_form_view` VALUES("24071", "8", "2016-01-08 05:22:36", "202.46.55.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("24072", "1", "2016-01-08 06:03:04", "23.95.244.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("24073", "3", "2016-01-08 06:03:04", "23.95.244.177", "65");
INSERT INTO `wp_gf_form_view` VALUES("24074", "8", "2016-01-08 06:03:04", "23.95.244.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("24075", "3", "2016-01-08 07:03:05", "202.46.49.202", "68");
INSERT INTO `wp_gf_form_view` VALUES("24076", "8", "2016-01-08 07:03:05", "202.46.49.202", "11");
INSERT INTO `wp_gf_form_view` VALUES("24077", "3", "2016-01-08 08:10:03", "202.46.57.161", "39");
INSERT INTO `wp_gf_form_view` VALUES("24078", "8", "2016-01-08 08:10:03", "202.46.57.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("24079", "3", "2016-01-08 09:17:01", "202.46.55.91", "28");
INSERT INTO `wp_gf_form_view` VALUES("24080", "8", "2016-01-08 09:17:01", "202.46.55.91", "4");
INSERT INTO `wp_gf_form_view` VALUES("24081", "3", "2016-01-08 10:57:28", "202.46.49.134", "13");
INSERT INTO `wp_gf_form_view` VALUES("24082", "8", "2016-01-08 10:57:28", "202.46.49.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("24083", "3", "2016-01-08 11:01:29", "178.137.89.157", "290");
INSERT INTO `wp_gf_form_view` VALUES("24084", "8", "2016-01-08 11:01:29", "178.137.89.157", "36");
INSERT INTO `wp_gf_form_view` VALUES("24085", "1", "2016-01-08 11:35:34", "23.95.246.74", "9");
INSERT INTO `wp_gf_form_view` VALUES("24086", "3", "2016-01-08 12:04:16", "157.55.39.155", "89");
INSERT INTO `wp_gf_form_view` VALUES("24087", "8", "2016-01-08 12:04:16", "157.55.39.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("24088", "1", "2016-01-08 12:11:44", "192.151.145.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("24089", "3", "2016-01-08 13:09:42", "54.183.153.209", "81");
INSERT INTO `wp_gf_form_view` VALUES("24090", "8", "2016-01-08 13:09:42", "54.183.153.209", "10");
INSERT INTO `wp_gf_form_view` VALUES("24091", "3", "2016-01-08 14:18:24", "202.46.52.155", "30");
INSERT INTO `wp_gf_form_view` VALUES("24092", "8", "2016-01-08 14:18:25", "202.46.52.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("24093", "1", "2016-01-08 15:04:04", "107.189.36.6", "4");
INSERT INTO `wp_gf_form_view` VALUES("24094", "3", "2016-01-08 15:04:04", "107.189.36.6", "93");
INSERT INTO `wp_gf_form_view` VALUES("24095", "8", "2016-01-08 15:04:04", "107.189.36.6", "12");
INSERT INTO `wp_gf_form_view` VALUES("24096", "3", "2016-01-08 16:06:39", "68.180.229.161", "32");
INSERT INTO `wp_gf_form_view` VALUES("24097", "8", "2016-01-08 16:06:39", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("24098", "1", "2016-01-08 16:23:44", "104.140.71.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("24099", "3", "2016-01-08 17:05:51", "202.46.53.46", "39");
INSERT INTO `wp_gf_form_view` VALUES("24100", "8", "2016-01-08 17:05:51", "202.46.53.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("24101", "3", "2016-01-08 18:12:49", "202.46.57.18", "159");
INSERT INTO `wp_gf_form_view` VALUES("24102", "8", "2016-01-08 18:12:49", "202.46.57.18", "19");
INSERT INTO `wp_gf_form_view` VALUES("24103", "3", "2016-01-08 19:19:48", "202.46.48.95", "39");
INSERT INTO `wp_gf_form_view` VALUES("24104", "8", "2016-01-08 19:19:48", "202.46.48.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("24105", "3", "2016-01-08 20:05:36", "157.55.39.185", "56");
INSERT INTO `wp_gf_form_view` VALUES("24106", "8", "2016-01-08 20:05:36", "157.55.39.185", "8");
INSERT INTO `wp_gf_form_view` VALUES("24107", "3", "2016-01-08 21:00:16", "202.46.55.137", "364");
INSERT INTO `wp_gf_form_view` VALUES("24108", "8", "2016-01-08 21:00:16", "202.46.55.137", "45");
INSERT INTO `wp_gf_form_view` VALUES("24109", "2", "2016-01-08 21:46:47", "185.35.21.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("24110", "3", "2016-01-08 22:00:04", "188.165.15.214", "670");
INSERT INTO `wp_gf_form_view` VALUES("24111", "8", "2016-01-08 22:00:04", "188.165.15.214", "86");
INSERT INTO `wp_gf_form_view` VALUES("24112", "1", "2016-01-08 22:16:11", "69.4.225.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("24113", "2", "2016-01-08 22:16:28", "71.7.181.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("24114", "3", "2016-01-08 23:14:13", "202.46.58.185", "184");
INSERT INTO `wp_gf_form_view` VALUES("24115", "8", "2016-01-08 23:14:13", "202.46.58.185", "23");
INSERT INTO `wp_gf_form_view` VALUES("24116", "2", "2016-01-08 23:40:26", "195.154.227.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("24117", "8", "2016-01-09 00:21:12", "202.46.57.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("24118", "3", "2016-01-09 00:21:12", "202.46.57.160", "49");
INSERT INTO `wp_gf_form_view` VALUES("24119", "3", "2016-01-09 01:28:10", "202.46.56.70", "13");
INSERT INTO `wp_gf_form_view` VALUES("24120", "8", "2016-01-09 01:28:10", "202.46.56.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("24121", "1", "2016-01-09 02:37:04", "192.151.145.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("24122", "3", "2016-01-09 02:37:05", "192.151.145.11", "48");
INSERT INTO `wp_gf_form_view` VALUES("24123", "8", "2016-01-09 02:37:06", "192.151.145.11", "6");
INSERT INTO `wp_gf_form_view` VALUES("24124", "3", "2016-01-09 03:08:39", "202.46.51.186", "25");
INSERT INTO `wp_gf_form_view` VALUES("24125", "8", "2016-01-09 03:08:39", "202.46.51.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("24126", "3", "2016-01-09 04:15:38", "202.46.54.13", "95");
INSERT INTO `wp_gf_form_view` VALUES("24127", "8", "2016-01-09 04:15:38", "202.46.54.13", "12");
INSERT INTO `wp_gf_form_view` VALUES("24128", "1", "2016-01-09 04:36:50", "192.151.145.11", "6");
INSERT INTO `wp_gf_form_view` VALUES("24129", "3", "2016-01-09 05:22:36", "202.46.51.210", "178");
INSERT INTO `wp_gf_form_view` VALUES("24130", "8", "2016-01-09 05:22:37", "202.46.51.210", "21");
INSERT INTO `wp_gf_form_view` VALUES("24131", "2", "2016-01-09 05:35:50", "216.158.206.177", "4");
INSERT INTO `wp_gf_form_view` VALUES("24132", "3", "2016-01-09 06:29:34", "202.46.55.182", "17");
INSERT INTO `wp_gf_form_view` VALUES("24133", "8", "2016-01-09 06:29:34", "202.46.55.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("24134", "3", "2016-01-09 07:03:08", "202.46.58.203", "114");
INSERT INTO `wp_gf_form_view` VALUES("24135", "8", "2016-01-09 07:03:08", "202.46.58.203", "14");
INSERT INTO `wp_gf_form_view` VALUES("24136", "2", "2016-01-09 07:22:47", "179.61.138.200", "3");
INSERT INTO `wp_gf_form_view` VALUES("24137", "3", "2016-01-09 08:10:04", "202.46.51.210", "47");
INSERT INTO `wp_gf_form_view` VALUES("24138", "8", "2016-01-09 08:10:05", "202.46.51.210", "6");
INSERT INTO `wp_gf_form_view` VALUES("24139", "1", "2016-01-09 08:14:42", "212.83.148.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("24140", "2", "2016-01-09 09:12:03", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24141", "3", "2016-01-09 09:12:04", "62.210.162.184", "42");
INSERT INTO `wp_gf_form_view` VALUES("24142", "8", "2016-01-09 09:12:04", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("24143", "3", "2016-01-09 10:23:04", "207.46.13.53", "54");
INSERT INTO `wp_gf_form_view` VALUES("24144", "8", "2016-01-09 10:23:04", "207.46.13.53", "7");
INSERT INTO `wp_gf_form_view` VALUES("24145", "2", "2016-01-09 10:54:53", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24146", "3", "2016-01-09 11:30:58", "202.46.55.140", "327");
INSERT INTO `wp_gf_form_view` VALUES("24147", "8", "2016-01-09 11:30:58", "202.46.55.140", "42");
INSERT INTO `wp_gf_form_view` VALUES("24148", "9", "2016-01-09 11:51:36", "157.55.39.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("24149", "3", "2016-01-09 12:04:27", "202.46.56.195", "145");
INSERT INTO `wp_gf_form_view` VALUES("24150", "8", "2016-01-09 12:04:27", "202.46.56.195", "17");
INSERT INTO `wp_gf_form_view` VALUES("24151", "1", "2016-01-09 12:41:47", "104.227.59.120", "4");
INSERT INTO `wp_gf_form_view` VALUES("24152", "3", "2016-01-09 13:11:26", "202.46.51.30", "8");
INSERT INTO `wp_gf_form_view` VALUES("24153", "8", "2016-01-09 13:11:26", "202.46.51.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("24154", "3", "2016-01-09 14:09:00", "66.249.74.102", "36");
INSERT INTO `wp_gf_form_view` VALUES("24155", "8", "2016-01-09 14:09:00", "66.249.74.102", "5");
INSERT INTO `wp_gf_form_view` VALUES("24156", "3", "2016-01-09 15:02:25", "66.249.74.102", "31");
INSERT INTO `wp_gf_form_view` VALUES("24157", "8", "2016-01-09 15:02:25", "66.249.74.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("24158", "3", "2016-01-09 16:17:16", "157.55.39.47", "24");
INSERT INTO `wp_gf_form_view` VALUES("24159", "8", "2016-01-09 16:17:16", "157.55.39.47", "4");
INSERT INTO `wp_gf_form_view` VALUES("24160", "3", "2016-01-09 17:05:51", "202.46.56.179", "80");
INSERT INTO `wp_gf_form_view` VALUES("24161", "8", "2016-01-09 17:05:51", "202.46.56.179", "10");
INSERT INTO `wp_gf_form_view` VALUES("24162", "3", "2016-01-09 18:12:50", "202.46.56.69", "79");
INSERT INTO `wp_gf_form_view` VALUES("24163", "8", "2016-01-09 18:12:50", "202.46.56.69", "10");
INSERT INTO `wp_gf_form_view` VALUES("24164", "3", "2016-01-09 19:19:48", "202.46.48.139", "53");
INSERT INTO `wp_gf_form_view` VALUES("24165", "8", "2016-01-09 19:19:48", "202.46.48.139", "7");
INSERT INTO `wp_gf_form_view` VALUES("24166", "3", "2016-01-09 20:13:14", "96.50.68.167", "74");
INSERT INTO `wp_gf_form_view` VALUES("24167", "8", "2016-01-09 20:13:14", "96.50.68.167", "10");
INSERT INTO `wp_gf_form_view` VALUES("24168", "3", "2016-01-09 21:00:17", "202.46.55.154", "44");
INSERT INTO `wp_gf_form_view` VALUES("24169", "8", "2016-01-09 21:00:17", "202.46.55.154", "6");
INSERT INTO `wp_gf_form_view` VALUES("24170", "3", "2016-01-09 22:13:00", "202.46.52.201", "79");
INSERT INTO `wp_gf_form_view` VALUES("24171", "8", "2016-01-09 22:13:01", "202.46.52.201", "10");
INSERT INTO `wp_gf_form_view` VALUES("24172", "3", "2016-01-09 23:07:32", "202.46.58.194", "41");
INSERT INTO `wp_gf_form_view` VALUES("24173", "8", "2016-01-09 23:07:32", "202.46.58.194", "6");
INSERT INTO `wp_gf_form_view` VALUES("24174", "3", "2016-01-10 00:02:05", "202.46.52.162", "118");
INSERT INTO `wp_gf_form_view` VALUES("24175", "8", "2016-01-10 00:02:05", "202.46.52.162", "14");
INSERT INTO `wp_gf_form_view` VALUES("24176", "3", "2016-01-10 01:03:38", "62.210.162.184", "46");
INSERT INTO `wp_gf_form_view` VALUES("24177", "8", "2016-01-10 01:03:38", "62.210.162.184", "6");
INSERT INTO `wp_gf_form_view` VALUES("24178", "3", "2016-01-10 02:09:22", "202.46.57.179", "104");
INSERT INTO `wp_gf_form_view` VALUES("24179", "8", "2016-01-10 02:09:22", "202.46.57.179", "13");
INSERT INTO `wp_gf_form_view` VALUES("24180", "1", "2016-01-10 02:40:31", "192.151.145.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("24181", "3", "2016-01-10 03:03:55", "202.46.58.53", "51");
INSERT INTO `wp_gf_form_view` VALUES("24182", "8", "2016-01-10 03:03:55", "202.46.58.53", "7");
INSERT INTO `wp_gf_form_view` VALUES("24183", "3", "2016-01-10 04:16:42", "202.46.57.73", "173");
INSERT INTO `wp_gf_form_view` VALUES("24184", "8", "2016-01-10 04:16:42", "202.46.57.73", "21");
INSERT INTO `wp_gf_form_view` VALUES("24185", "1", "2016-01-10 04:18:34", "23.95.246.22", "4");
INSERT INTO `wp_gf_form_view` VALUES("24186", "9", "2016-01-10 04:29:45", "179.61.138.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("24187", "3", "2016-01-10 05:19:06", "201.238.90.94", "250");
INSERT INTO `wp_gf_form_view` VALUES("24188", "8", "2016-01-10 05:19:06", "201.238.90.94", "31");
INSERT INTO `wp_gf_form_view` VALUES("24189", "2", "2016-01-10 05:19:53", "201.238.90.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("24190", "3", "2016-01-10 06:14:53", "179.61.128.205", "83");
INSERT INTO `wp_gf_form_view` VALUES("24191", "8", "2016-01-10 06:14:53", "179.61.128.205", "10");
INSERT INTO `wp_gf_form_view` VALUES("24192", "3", "2016-01-10 07:11:55", "178.137.160.2", "101");
INSERT INTO `wp_gf_form_view` VALUES("24193", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24194", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24195", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24196", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24197", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24198", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24199", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24200", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24201", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24202", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24203", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24204", "8", "2016-01-10 07:11:57", "178.137.160.2", "9");
INSERT INTO `wp_gf_form_view` VALUES("24205", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24206", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24207", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24208", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24209", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("24210", "1", "2016-01-10 08:53:40", "104.227.59.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("24211", "3", "2016-01-10 08:53:40", "104.227.59.120", "8");
INSERT INTO `wp_gf_form_view` VALUES("24212", "8", "2016-01-10 08:53:40", "104.227.59.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("24213", "3", "2016-01-10 09:15:06", "188.165.15.214", "45");
INSERT INTO `wp_gf_form_view` VALUES("24214", "8", "2016-01-10 09:15:06", "188.165.15.214", "6");
INSERT INTO `wp_gf_form_view` VALUES("24215", "1", "2016-01-10 09:24:30", "23.95.244.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("24216", "3", "2016-01-10 11:07:19", "46.118.226.141", "56");
INSERT INTO `wp_gf_form_view` VALUES("24217", "8", "2016-01-10 11:07:19", "46.118.226.141", "8");
INSERT INTO `wp_gf_form_view` VALUES("24218", "3", "2016-01-10 12:44:20", "136.243.48.84", "16");
INSERT INTO `wp_gf_form_view` VALUES("24219", "8", "2016-01-10 12:44:20", "136.243.48.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("24220", "3", "2016-01-10 13:08:14", "66.249.74.106", "58");
INSERT INTO `wp_gf_form_view` VALUES("24221", "8", "2016-01-10 13:08:14", "66.249.74.106", "7");
INSERT INTO `wp_gf_form_view` VALUES("24222", "3", "2016-01-10 14:05:42", "52.91.66.79", "40");
INSERT INTO `wp_gf_form_view` VALUES("24223", "8", "2016-01-10 14:05:42", "52.91.66.79", "5");
INSERT INTO `wp_gf_form_view` VALUES("24224", "3", "2016-01-10 15:39:51", "207.46.13.4", "16");
INSERT INTO `wp_gf_form_view` VALUES("24225", "8", "2016-01-10 15:39:51", "207.46.13.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("24226", "3", "2016-01-10 16:09:51", "68.180.229.161", "43");
INSERT INTO `wp_gf_form_view` VALUES("24227", "8", "2016-01-10 16:09:51", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("24228", "3", "2016-01-10 17:09:49", "66.249.74.102", "112");
INSERT INTO `wp_gf_form_view` VALUES("24229", "8", "2016-01-10 17:09:49", "66.249.74.102", "13");
INSERT INTO `wp_gf_form_view` VALUES("24230", "9", "2016-01-10 17:23:02", "198.98.110.107", "4");
INSERT INTO `wp_gf_form_view` VALUES("24231", "3", "2016-01-10 18:01:52", "68.180.229.161", "56");
INSERT INTO `wp_gf_form_view` VALUES("24232", "8", "2016-01-10 18:01:52", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("24233", "6", "2016-01-10 18:40:22", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("24234", "1", "2016-01-10 18:54:48", "192.227.161.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("24235", "3", "2016-01-10 19:00:38", "24.68.42.253", "121");
INSERT INTO `wp_gf_form_view` VALUES("24236", "8", "2016-01-10 19:00:38", "24.68.42.253", "15");
INSERT INTO `wp_gf_form_view` VALUES("24237", "3", "2016-01-10 20:38:27", "23.244.122.226", "57");
INSERT INTO `wp_gf_form_view` VALUES("24238", "8", "2016-01-10 20:38:28", "23.244.122.226", "7");
INSERT INTO `wp_gf_form_view` VALUES("24239", "3", "2016-01-10 21:17:31", "66.249.74.106", "58");
INSERT INTO `wp_gf_form_view` VALUES("24240", "8", "2016-01-10 21:17:31", "66.249.74.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("24241", "3", "2016-01-10 22:00:45", "66.249.74.102", "90");
INSERT INTO `wp_gf_form_view` VALUES("24242", "8", "2016-01-10 22:00:45", "66.249.74.102", "12");
INSERT INTO `wp_gf_form_view` VALUES("24243", "1", "2016-01-10 22:59:59", "192.151.145.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("24244", "3", "2016-01-10 23:00:00", "192.151.145.11", "107");
INSERT INTO `wp_gf_form_view` VALUES("24245", "8", "2016-01-10 23:00:09", "192.151.145.11", "12");
INSERT INTO `wp_gf_form_view` VALUES("24246", "1", "2016-01-10 23:00:13", "192.151.145.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("24247", "3", "2016-01-11 01:58:03", "188.165.15.214", "8");
INSERT INTO `wp_gf_form_view` VALUES("24248", "8", "2016-01-11 01:58:03", "188.165.15.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("24249", "3", "2016-01-11 02:12:13", "64.180.20.184", "74");
INSERT INTO `wp_gf_form_view` VALUES("24250", "8", "2016-01-11 02:12:13", "64.180.20.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("24251", "3", "2016-01-11 03:01:42", "66.249.74.102", "41");
INSERT INTO `wp_gf_form_view` VALUES("24252", "8", "2016-01-11 03:01:42", "66.249.74.102", "5");
INSERT INTO `wp_gf_form_view` VALUES("24253", "3", "2016-01-11 04:05:38", "69.58.178.58", "112");
INSERT INTO `wp_gf_form_view` VALUES("24254", "8", "2016-01-11 04:05:38", "69.58.178.58", "15");
INSERT INTO `wp_gf_form_view` VALUES("24255", "2", "2016-01-11 04:06:04", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("24256", "3", "2016-01-11 05:11:24", "178.137.89.157", "71");
INSERT INTO `wp_gf_form_view` VALUES("24257", "3", "2016-01-11 05:11:24", "178.137.89.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("24258", "8", "2016-01-11 05:11:24", "178.137.89.157", "9");
INSERT INTO `wp_gf_form_view` VALUES("24259", "3", "2016-01-11 06:17:37", "66.249.74.106", "57");
INSERT INTO `wp_gf_form_view` VALUES("24260", "8", "2016-01-11 06:17:37", "66.249.74.106", "7");
INSERT INTO `wp_gf_form_view` VALUES("24261", "9", "2016-01-11 06:40:04", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("24262", "3", "2016-01-11 07:34:30", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("24263", "8", "2016-01-11 07:34:30", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("24264", "3", "2016-01-11 09:21:44", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("24265", "8", "2016-01-11 09:21:50", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("24266", "3", "2016-01-11 10:04:26", "27.25.7.81", "18");
INSERT INTO `wp_gf_form_view` VALUES("24267", "8", "2016-01-11 10:04:26", "27.25.7.81", "3");
INSERT INTO `wp_gf_form_view` VALUES("24268", "3", "2016-01-11 11:02:25", "220.181.108.139", "17");
INSERT INTO `wp_gf_form_view` VALUES("24269", "8", "2016-01-11 11:02:25", "220.181.108.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("24270", "3", "2016-01-11 12:02:21", "178.137.89.157", "49");
INSERT INTO `wp_gf_form_view` VALUES("24271", "8", "2016-01-11 12:02:21", "178.137.89.157", "6");
INSERT INTO `wp_gf_form_view` VALUES("24272", "3", "2016-01-11 13:07:09", "66.249.74.106", "40");
INSERT INTO `wp_gf_form_view` VALUES("24273", "8", "2016-01-11 13:07:09", "66.249.74.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("24274", "5", "2016-01-11 13:59:06", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("24275", "3", "2016-01-11 15:14:01", "68.180.229.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("24276", "8", "2016-01-11 15:14:01", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("24277", "3", "2016-01-11 16:13:14", "66.249.74.104", "40");
INSERT INTO `wp_gf_form_view` VALUES("24278", "8", "2016-01-11 16:13:15", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("24279", "1", "2016-01-11 16:58:20", "64.251.74.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("24280", "1", "2016-01-11 17:19:24", "192.151.145.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("24281", "3", "2016-01-11 17:19:24", "192.151.145.11", "24");
INSERT INTO `wp_gf_form_view` VALUES("24282", "8", "2016-01-11 17:19:25", "192.151.145.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("24283", "5", "2016-01-11 18:03:34", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("24284", "3", "2016-01-11 18:03:35", "66.249.74.106", "34");
INSERT INTO `wp_gf_form_view` VALUES("24285", "8", "2016-01-11 18:03:37", "66.249.74.106", "4");
INSERT INTO `wp_gf_form_view` VALUES("24286", "3", "2016-01-11 19:02:50", "188.40.112.210", "16");
INSERT INTO `wp_gf_form_view` VALUES("24287", "8", "2016-01-11 19:02:50", "188.40.112.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("24288", "1", "2016-01-11 20:09:06", "212.83.148.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("24289", "3", "2016-01-11 20:09:06", "212.83.148.172", "50");
INSERT INTO `wp_gf_form_view` VALUES("24290", "8", "2016-01-11 20:09:06", "212.83.148.172", "6");
INSERT INTO `wp_gf_form_view` VALUES("24291", "3", "2016-01-11 21:26:19", "24.114.45.26", "136");
INSERT INTO `wp_gf_form_view` VALUES("24292", "8", "2016-01-11 21:26:20", "24.114.45.26", "16");
INSERT INTO `wp_gf_form_view` VALUES("24293", "3", "2016-01-11 22:05:57", "66.249.74.102", "61");
INSERT INTO `wp_gf_form_view` VALUES("24294", "8", "2016-01-11 22:05:57", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("24295", "3", "2016-01-11 23:10:43", "66.249.74.102", "41");
INSERT INTO `wp_gf_form_view` VALUES("24296", "8", "2016-01-11 23:10:43", "66.249.74.102", "5");
INSERT INTO `wp_gf_form_view` VALUES("24297", "3", "2016-01-12 00:35:44", "66.249.74.104", "65");
INSERT INTO `wp_gf_form_view` VALUES("24298", "8", "2016-01-12 00:35:44", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("24299", "1", "2016-01-12 00:45:40", "107.189.36.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("24300", "3", "2016-01-12 01:05:34", "207.46.13.65", "117");
INSERT INTO `wp_gf_form_view` VALUES("24301", "8", "2016-01-12 01:05:34", "207.46.13.65", "15");
INSERT INTO `wp_gf_form_view` VALUES("24302", "3", "2016-01-12 02:46:37", "157.55.39.150", "9");
INSERT INTO `wp_gf_form_view` VALUES("24303", "8", "2016-01-12 02:46:38", "157.55.39.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("24304", "8", "2016-01-12 03:06:30", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("24305", "3", "2016-01-12 03:06:30", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("24306", "5", "2016-01-12 04:00:10", "188.165.15.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("24307", "3", "2016-01-12 04:00:10", "188.165.15.15", "32");
INSERT INTO `wp_gf_form_view` VALUES("24308", "8", "2016-01-12 04:00:10", "188.165.15.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("24309", "8", "2016-01-12 05:02:23", "24.108.151.42", "22");
INSERT INTO `wp_gf_form_view` VALUES("24310", "3", "2016-01-12 05:02:24", "24.108.151.42", "169");
INSERT INTO `wp_gf_form_view` VALUES("24311", "3", "2016-01-12 06:33:36", "66.249.74.102", "17");
INSERT INTO `wp_gf_form_view` VALUES("24312", "8", "2016-01-12 06:33:36", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("24313", "3", "2016-01-12 07:36:43", "207.46.13.65", "449");
INSERT INTO `wp_gf_form_view` VALUES("24314", "8", "2016-01-12 07:36:44", "207.46.13.65", "55");
INSERT INTO `wp_gf_form_view` VALUES("24315", "6", "2016-01-12 07:39:19", "157.55.39.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("24316", "3", "2016-01-12 08:09:16", "46.118.126.200", "59");
INSERT INTO `wp_gf_form_view` VALUES("24317", "8", "2016-01-12 08:09:16", "46.118.126.200", "8");
INSERT INTO `wp_gf_form_view` VALUES("24318", "1", "2016-01-12 09:11:57", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("24319", "3", "2016-01-12 09:11:57", "91.200.12.138", "68");
INSERT INTO `wp_gf_form_view` VALUES("24320", "8", "2016-01-12 09:11:58", "91.200.12.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("24321", "3", "2016-01-12 10:08:57", "130.211.119.117", "96");
INSERT INTO `wp_gf_form_view` VALUES("24322", "8", "2016-01-12 10:08:57", "130.211.119.117", "12");
INSERT INTO `wp_gf_form_view` VALUES("24323", "2", "2016-01-12 10:09:07", "130.211.119.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("24324", "1", "2016-01-12 10:14:41", "192.151.145.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("24325", "3", "2016-01-12 11:05:55", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("24326", "8", "2016-01-12 11:05:55", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("24327", "3", "2016-01-12 12:34:08", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("24328", "8", "2016-01-12 12:34:08", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("24329", "3", "2016-01-12 13:00:00", "178.137.160.2", "24");
INSERT INTO `wp_gf_form_view` VALUES("24330", "8", "2016-01-12 13:00:01", "178.137.160.2", "3");
INSERT INTO `wp_gf_form_view` VALUES("24331", "3", "2016-01-12 14:36:03", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("24332", "2", "2016-01-12 15:37:52", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("24333", "3", "2016-01-12 15:37:52", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("24334", "8", "2016-01-12 15:37:52", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("24335", "2", "2016-01-12 16:01:07", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("24336", "3", "2016-01-12 16:01:07", "91.200.12.138", "80");
INSERT INTO `wp_gf_form_view` VALUES("24337", "8", "2016-01-12 16:01:07", "91.200.12.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("24338", "1", "2016-01-12 16:08:03", "204.209.209.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("24339", "3", "2016-01-12 17:15:07", "207.194.133.9", "184");
INSERT INTO `wp_gf_form_view` VALUES("24340", "8", "2016-01-12 17:15:07", "207.194.133.9", "22");
INSERT INTO `wp_gf_form_view` VALUES("24341", "1", "2016-01-12 17:39:48", "96.54.214.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("24342", "3", "2016-01-12 18:06:54", "216.232.144.184", "72");
INSERT INTO `wp_gf_form_view` VALUES("24343", "8", "2016-01-12 18:06:54", "216.232.144.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("24344", "3", "2016-01-12 19:02:26", "94.23.45.37", "217");
INSERT INTO `wp_gf_form_view` VALUES("24345", "8", "2016-01-12 19:02:26", "94.23.45.37", "27");
INSERT INTO `wp_gf_form_view` VALUES("24346", "1", "2016-01-12 19:04:02", "94.23.45.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("24347", "3", "2016-01-12 20:11:32", "68.180.229.161", "18");
INSERT INTO `wp_gf_form_view` VALUES("24348", "8", "2016-01-12 20:27:12", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("24349", "3", "2016-01-12 21:02:50", "184.69.173.30", "72");
INSERT INTO `wp_gf_form_view` VALUES("24350", "8", "2016-01-12 21:02:50", "184.69.173.30", "10");
INSERT INTO `wp_gf_form_view` VALUES("24351", "3", "2016-01-12 22:08:38", "195.154.146.225", "276");
INSERT INTO `wp_gf_form_view` VALUES("24352", "8", "2016-01-12 22:08:38", "195.154.146.225", "35");
INSERT INTO `wp_gf_form_view` VALUES("24353", "2", "2016-01-12 22:09:48", "195.154.146.225", "2");
INSERT INTO `wp_gf_form_view` VALUES("24354", "3", "2016-01-13 00:07:19", "66.249.74.106", "48");
INSERT INTO `wp_gf_form_view` VALUES("24355", "8", "2016-01-13 00:07:20", "66.249.74.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("24356", "1", "2016-01-13 00:11:55", "201.172.78.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("24357", "3", "2016-01-13 01:15:46", "40.77.167.76", "41");
INSERT INTO `wp_gf_form_view` VALUES("24358", "8", "2016-01-13 01:15:47", "40.77.167.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("24359", "1", "2016-01-13 01:27:32", "5.231.30.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("24360", "3", "2016-01-13 03:44:54", "66.249.74.106", "17");
INSERT INTO `wp_gf_form_view` VALUES("24361", "8", "2016-01-13 03:44:55", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("24362", "3", "2016-01-13 04:18:23", "66.249.74.104", "96");
INSERT INTO `wp_gf_form_view` VALUES("24363", "8", "2016-01-13 04:18:23", "66.249.74.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("24364", "3", "2016-01-13 05:04:05", "202.46.51.32", "101");
INSERT INTO `wp_gf_form_view` VALUES("24365", "8", "2016-01-13 05:04:05", "202.46.51.32", "13");
INSERT INTO `wp_gf_form_view` VALUES("24366", "3", "2016-01-13 06:11:05", "202.46.52.164", "37");
INSERT INTO `wp_gf_form_view` VALUES("24367", "8", "2016-01-13 06:11:05", "202.46.52.164", "5");
INSERT INTO `wp_gf_form_view` VALUES("24368", "3", "2016-01-13 07:18:07", "202.46.50.89", "24");
INSERT INTO `wp_gf_form_view` VALUES("24369", "8", "2016-01-13 07:18:09", "202.46.50.89", "3");
INSERT INTO `wp_gf_form_view` VALUES("24370", "3", "2016-01-13 08:25:02", "202.46.55.63", "47");
INSERT INTO `wp_gf_form_view` VALUES("24371", "8", "2016-01-13 08:25:02", "202.46.55.63", "6");
INSERT INTO `wp_gf_form_view` VALUES("24372", "3", "2016-01-13 09:07:10", "188.165.15.15", "32");
INSERT INTO `wp_gf_form_view` VALUES("24373", "8", "2016-01-13 09:07:10", "188.165.15.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("24374", "3", "2016-01-13 10:33:17", "178.137.89.157", "32");
INSERT INTO `wp_gf_form_view` VALUES("24375", "8", "2016-01-13 10:33:18", "178.137.89.157", "3");
INSERT INTO `wp_gf_form_view` VALUES("24376", "8", "2016-01-13 10:33:18", "178.137.89.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("24377", "2", "2016-01-13 11:10:58", "192.3.220.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("24378", "3", "2016-01-13 11:10:58", "192.3.220.227", "113");
INSERT INTO `wp_gf_form_view` VALUES("24379", "8", "2016-01-13 11:10:58", "192.3.220.227", "14");
INSERT INTO `wp_gf_form_view` VALUES("24380", "1", "2016-01-13 11:43:20", "192.151.145.11", "6");
INSERT INTO `wp_gf_form_view` VALUES("24381", "3", "2016-01-13 12:19:26", "202.46.53.67", "18");
INSERT INTO `wp_gf_form_view` VALUES("24382", "8", "2016-01-13 12:19:26", "202.46.53.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("24383", "3", "2016-01-13 13:06:29", "66.249.74.106", "24");
INSERT INTO `wp_gf_form_view` VALUES("24384", "8", "2016-01-13 13:06:29", "66.249.74.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("24385", "3", "2016-01-13 14:28:21", "128.177.10.114", "89");
INSERT INTO `wp_gf_form_view` VALUES("24386", "2", "2016-01-13 14:28:21", "128.177.10.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("24387", "8", "2016-01-13 14:28:21", "128.177.10.114", "9");
INSERT INTO `wp_gf_form_view` VALUES("24388", "8", "2016-01-13 14:28:21", "128.177.10.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("24389", "8", "2016-01-13 14:28:21", "128.177.10.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("24390", "3", "2016-01-13 15:06:51", "202.46.57.19", "78");
INSERT INTO `wp_gf_form_view` VALUES("24391", "8", "2016-01-13 15:06:51", "202.46.57.19", "10");
INSERT INTO `wp_gf_form_view` VALUES("24392", "3", "2016-01-13 16:02:20", "68.180.229.161", "84");
INSERT INTO `wp_gf_form_view` VALUES("24393", "8", "2016-01-13 16:02:20", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("24394", "2", "2016-01-13 17:03:29", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("24395", "3", "2016-01-13 17:03:29", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("24396", "8", "2016-01-13 17:03:29", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("24397", "3", "2016-01-13 18:11:31", "66.249.74.102", "108");
INSERT INTO `wp_gf_form_view` VALUES("24398", "8", "2016-01-13 18:11:31", "66.249.74.102", "13");
INSERT INTO `wp_gf_form_view` VALUES("24399", "3", "2016-01-13 19:03:46", "70.77.194.67", "104");
INSERT INTO `wp_gf_form_view` VALUES("24400", "8", "2016-01-13 19:03:46", "70.77.194.67", "13");
INSERT INTO `wp_gf_form_view` VALUES("24401", "1", "2016-01-13 19:23:58", "70.77.194.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("24402", "3", "2016-01-13 20:02:24", "66.249.74.104", "90");
INSERT INTO `wp_gf_form_view` VALUES("24403", "8", "2016-01-13 20:02:24", "66.249.74.104", "11");
INSERT INTO `wp_gf_form_view` VALUES("24404", "3", "2016-01-13 21:13:23", "24.108.129.106", "57");
INSERT INTO `wp_gf_form_view` VALUES("24405", "8", "2016-01-13 21:13:24", "24.108.129.106", "7");
INSERT INTO `wp_gf_form_view` VALUES("24406", "3", "2016-01-13 22:00:40", "207.194.133.9", "55");
INSERT INTO `wp_gf_form_view` VALUES("24407", "8", "2016-01-13 22:00:41", "207.194.133.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("24408", "3", "2016-01-14 00:19:40", "157.55.39.218", "8");
INSERT INTO `wp_gf_form_view` VALUES("24409", "8", "2016-01-14 00:19:41", "157.55.39.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("24410", "3", "2016-01-14 01:19:51", "157.55.39.194", "259");
INSERT INTO `wp_gf_form_view` VALUES("24411", "8", "2016-01-14 01:19:51", "157.55.39.194", "33");
INSERT INTO `wp_gf_form_view` VALUES("24412", "9", "2016-01-14 01:20:00", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("24413", "3", "2016-01-14 04:19:36", "68.180.229.161", "1539");
INSERT INTO `wp_gf_form_view` VALUES("24414", "8", "2016-01-14 04:19:37", "68.180.229.161", "197");
INSERT INTO `wp_gf_form_view` VALUES("24415", "2", "2016-01-14 04:28:07", "188.215.22.2", "4");
INSERT INTO `wp_gf_form_view` VALUES("24416", "1", "2016-01-14 04:42:11", "104.131.214.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("24417", "5", "2016-01-14 04:51:21", "104.131.214.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("24418", "3", "2016-01-14 05:00:01", "104.131.214.84", "2966");
INSERT INTO `wp_gf_form_view` VALUES("24419", "8", "2016-01-14 05:00:01", "104.131.214.84", "374");
INSERT INTO `wp_gf_form_view` VALUES("24420", "6", "2016-01-14 05:02:56", "104.131.214.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("24421", "1", "2016-01-14 05:09:47", "192.151.145.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("24422", "9", "2016-01-14 05:12:56", "104.131.214.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("24423", "3", "2016-01-14 06:24:37", "66.249.74.104", "97");
INSERT INTO `wp_gf_form_view` VALUES("24424", "8", "2016-01-14 06:24:37", "66.249.74.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("24425", "2", "2016-01-14 06:29:38", "62.210.162.184", "3");
INSERT INTO `wp_gf_form_view` VALUES("24426", "3", "2016-01-14 07:11:03", "96.50.49.148", "48");
INSERT INTO `wp_gf_form_view` VALUES("24427", "8", "2016-01-14 07:11:03", "96.50.49.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("24428", "2", "2016-01-14 08:12:26", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24429", "3", "2016-01-14 08:12:26", "62.210.162.184", "25");
INSERT INTO `wp_gf_form_view` VALUES("24430", "8", "2016-01-14 08:12:26", "62.210.162.184", "3");
INSERT INTO `wp_gf_form_view` VALUES("24431", "3", "2016-01-14 09:11:48", "68.180.229.161", "72");
INSERT INTO `wp_gf_form_view` VALUES("24432", "8", "2016-01-14 09:11:48", "68.180.229.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("24433", "1", "2016-01-14 09:50:20", "192.151.145.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("24434", "2", "2016-01-14 10:00:51", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24435", "3", "2016-01-14 10:00:51", "62.210.162.184", "64");
INSERT INTO `wp_gf_form_view` VALUES("24436", "8", "2016-01-14 10:00:51", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("24437", "3", "2016-01-14 11:14:49", "5.9.145.132", "49");
INSERT INTO `wp_gf_form_view` VALUES("24438", "8", "2016-01-14 11:14:49", "5.9.145.132", "6");
INSERT INTO `wp_gf_form_view` VALUES("24439", "3", "2016-01-14 12:19:31", "66.249.81.188", "16");
INSERT INTO `wp_gf_form_view` VALUES("24440", "8", "2016-01-14 12:19:31", "66.249.81.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("24441", "3", "2016-01-14 13:40:21", "207.6.161.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("24442", "8", "2016-01-14 13:40:21", "207.6.161.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("24443", "3", "2016-01-14 14:12:38", "66.249.74.104", "53");
INSERT INTO `wp_gf_form_view` VALUES("24444", "8", "2016-01-14 14:12:38", "66.249.74.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("24445", "3", "2016-01-14 15:08:14", "151.80.31.152", "16");
INSERT INTO `wp_gf_form_view` VALUES("24446", "8", "2016-01-14 15:08:14", "151.80.31.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("24447", "3", "2016-01-14 16:35:04", "112.111.184.126", "32");
INSERT INTO `wp_gf_form_view` VALUES("24448", "8", "2016-01-14 16:35:04", "112.111.184.126", "4");
INSERT INTO `wp_gf_form_view` VALUES("24449", "3", "2016-01-14 18:10:38", "207.46.13.181", "48");
INSERT INTO `wp_gf_form_view` VALUES("24450", "8", "2016-01-14 18:10:39", "207.46.13.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("24451", "3", "2016-01-14 19:07:41", "207.194.133.9", "33");
INSERT INTO `wp_gf_form_view` VALUES("24452", "8", "2016-01-14 19:07:41", "207.194.133.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("24453", "3", "2016-01-14 20:10:47", "136.243.48.82", "24");
INSERT INTO `wp_gf_form_view` VALUES("24454", "8", "2016-01-14 20:10:47", "136.243.48.82", "3");
INSERT INTO `wp_gf_form_view` VALUES("24455", "3", "2016-01-14 21:13:58", "46.118.126.200", "209");
INSERT INTO `wp_gf_form_view` VALUES("24456", "3", "2016-01-14 21:13:58", "46.118.126.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("24457", "3", "2016-01-14 21:13:58", "46.118.126.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("24458", "8", "2016-01-14 21:13:58", "46.118.126.200", "23");
INSERT INTO `wp_gf_form_view` VALUES("24459", "8", "2016-01-14 21:13:58", "46.118.126.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("24460", "8", "2016-01-14 21:13:58", "46.118.126.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("24461", "1", "2016-01-14 21:37:20", "198.98.110.107", "5");
INSERT INTO `wp_gf_form_view` VALUES("24462", "3", "2016-01-14 22:07:02", "136.243.48.84", "140");
INSERT INTO `wp_gf_form_view` VALUES("24463", "8", "2016-01-14 22:07:03", "136.243.48.84", "17");
INSERT INTO `wp_gf_form_view` VALUES("24464", "3", "2016-01-14 23:14:06", "184.69.103.6", "49");
INSERT INTO `wp_gf_form_view` VALUES("24465", "8", "2016-01-14 23:14:06", "184.69.103.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("24466", "1", "2016-01-14 23:31:37", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24467", "3", "2016-01-15 00:14:54", "195.154.209.60", "131");
INSERT INTO `wp_gf_form_view` VALUES("24468", "8", "2016-01-15 00:14:54", "195.154.209.60", "16");
INSERT INTO `wp_gf_form_view` VALUES("24469", "3", "2016-01-15 01:00:13", "23.95.12.91", "129");
INSERT INTO `wp_gf_form_view` VALUES("24470", "8", "2016-01-15 01:00:13", "23.95.12.91", "15");
INSERT INTO `wp_gf_form_view` VALUES("24471", "1", "2016-01-15 01:16:19", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24472", "3", "2016-01-15 02:12:26", "178.137.89.157", "162");
INSERT INTO `wp_gf_form_view` VALUES("24473", "3", "2016-01-15 02:12:26", "178.137.89.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("24474", "3", "2016-01-15 02:12:26", "178.137.89.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("24475", "8", "2016-01-15 02:12:26", "178.137.89.157", "19");
INSERT INTO `wp_gf_form_view` VALUES("24476", "8", "2016-01-15 02:12:26", "178.137.89.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("24477", "1", "2016-01-15 02:43:23", "188.215.22.2", "5");
INSERT INTO `wp_gf_form_view` VALUES("24478", "3", "2016-01-15 03:01:12", "172.218.232.170", "81");
INSERT INTO `wp_gf_form_view` VALUES("24479", "8", "2016-01-15 03:01:12", "172.218.232.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("24480", "7", "2016-01-15 03:35:48", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("24481", "3", "2016-01-15 04:00:41", "157.55.39.194", "254");
INSERT INTO `wp_gf_form_view` VALUES("24482", "8", "2016-01-15 04:00:41", "157.55.39.194", "31");
INSERT INTO `wp_gf_form_view` VALUES("24483", "1", "2016-01-15 04:11:11", "23.80.97.22", "4");
INSERT INTO `wp_gf_form_view` VALUES("24484", "3", "2016-01-15 05:17:42", "66.249.74.106", "154");
INSERT INTO `wp_gf_form_view` VALUES("24485", "8", "2016-01-15 05:17:42", "66.249.74.106", "18");
INSERT INTO `wp_gf_form_view` VALUES("24486", "3", "2016-01-15 06:14:23", "62.210.162.184", "25");
INSERT INTO `wp_gf_form_view` VALUES("24487", "8", "2016-01-15 06:14:23", "62.210.162.184", "3");
INSERT INTO `wp_gf_form_view` VALUES("24488", "1", "2016-01-15 06:29:44", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24489", "8", "2016-01-15 07:07:15", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("24490", "3", "2016-01-15 07:07:15", "66.249.74.104", "64");
INSERT INTO `wp_gf_form_view` VALUES("24491", "1", "2016-01-15 08:10:48", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24492", "3", "2016-01-15 08:10:48", "62.210.162.184", "40");
INSERT INTO `wp_gf_form_view` VALUES("24493", "8", "2016-01-15 08:10:48", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("24494", "3", "2016-01-15 09:06:23", "66.249.74.106", "48");
INSERT INTO `wp_gf_form_view` VALUES("24495", "8", "2016-01-15 09:06:23", "66.249.74.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("24496", "1", "2016-01-15 09:45:30", "107.172.230.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("24497", "3", "2016-01-15 10:26:14", "91.200.12.136", "209");
INSERT INTO `wp_gf_form_view` VALUES("24498", "8", "2016-01-15 10:26:14", "91.200.12.136", "25");
INSERT INTO `wp_gf_form_view` VALUES("24499", "1", "2016-01-15 10:50:06", "23.80.97.100", "3");
INSERT INTO `wp_gf_form_view` VALUES("24500", "3", "2016-01-15 11:10:17", "40.77.167.28", "40");
INSERT INTO `wp_gf_form_view` VALUES("24501", "8", "2016-01-15 11:10:17", "40.77.167.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("24502", "2", "2016-01-15 11:58:22", "65.55.209.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("24503", "3", "2016-01-15 12:04:31", "207.46.13.6", "228");
INSERT INTO `wp_gf_form_view` VALUES("24504", "8", "2016-01-15 12:04:31", "207.46.13.6", "29");
INSERT INTO `wp_gf_form_view` VALUES("24505", "1", "2016-01-15 13:12:22", "142.234.110.67", "4");
INSERT INTO `wp_gf_form_view` VALUES("24506", "3", "2016-01-15 13:12:22", "142.234.110.67", "103");
INSERT INTO `wp_gf_form_view` VALUES("24507", "8", "2016-01-15 13:12:23", "142.234.110.67", "12");
INSERT INTO `wp_gf_form_view` VALUES("24508", "3", "2016-01-15 14:17:45", "40.77.167.63", "122");
INSERT INTO `wp_gf_form_view` VALUES("24509", "8", "2016-01-15 14:17:45", "40.77.167.63", "16");
INSERT INTO `wp_gf_form_view` VALUES("24510", "2", "2016-01-15 14:45:38", "40.77.167.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("24511", "3", "2016-01-15 15:02:31", "66.249.74.104", "64");
INSERT INTO `wp_gf_form_view` VALUES("24512", "8", "2016-01-15 15:02:31", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("24513", "2", "2016-01-15 15:28:21", "65.55.209.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("24514", "3", "2016-01-15 16:01:03", "94.199.151.22", "1580");
INSERT INTO `wp_gf_form_view` VALUES("24515", "8", "2016-01-15 16:01:04", "94.199.151.22", "209");
INSERT INTO `wp_gf_form_view` VALUES("24516", "2", "2016-01-15 16:01:50", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("24517", "1", "2016-01-15 16:09:39", "94.199.151.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("24518", "9", "2016-01-15 16:15:20", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("24519", "1", "2016-01-15 17:04:09", "40.77.167.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("24520", "3", "2016-01-15 17:04:09", "40.77.167.63", "212");
INSERT INTO `wp_gf_form_view` VALUES("24521", "8", "2016-01-15 17:04:09", "40.77.167.63", "25");
INSERT INTO `wp_gf_form_view` VALUES("24522", "3", "2016-01-15 18:00:36", "96.50.14.40", "80");
INSERT INTO `wp_gf_form_view` VALUES("24523", "8", "2016-01-15 18:00:36", "96.50.14.40", "10");
INSERT INTO `wp_gf_form_view` VALUES("24524", "1", "2016-01-15 18:25:37", "212.83.148.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("24525", "3", "2016-01-15 19:01:18", "202.46.55.175", "244");
INSERT INTO `wp_gf_form_view` VALUES("24526", "8", "2016-01-15 19:01:18", "202.46.55.175", "32");
INSERT INTO `wp_gf_form_view` VALUES("24527", "1", "2016-01-15 19:13:16", "46.28.66.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("24528", "3", "2016-01-15 20:08:16", "202.46.51.85", "48");
INSERT INTO `wp_gf_form_view` VALUES("24529", "8", "2016-01-15 20:08:16", "202.46.51.85", "7");
INSERT INTO `wp_gf_form_view` VALUES("24530", "3", "2016-01-15 21:02:03", "62.210.162.184", "46");
INSERT INTO `wp_gf_form_view` VALUES("24531", "8", "2016-01-15 21:02:03", "62.210.162.184", "6");
INSERT INTO `wp_gf_form_view` VALUES("24532", "3", "2016-01-15 22:29:44", "192.227.222.221", "64");
INSERT INTO `wp_gf_form_view` VALUES("24533", "8", "2016-01-15 22:29:44", "192.227.222.221", "8");
INSERT INTO `wp_gf_form_view` VALUES("24534", "3", "2016-01-15 23:07:09", "91.200.12.143", "80");
INSERT INTO `wp_gf_form_view` VALUES("24535", "8", "2016-01-15 23:07:10", "91.200.12.143", "10");
INSERT INTO `wp_gf_form_view` VALUES("24536", "3", "2016-01-16 00:08:49", "174.1.157.32", "88");
INSERT INTO `wp_gf_form_view` VALUES("24537", "8", "2016-01-16 00:08:49", "174.1.157.32", "11");
INSERT INTO `wp_gf_form_view` VALUES("24538", "1", "2016-01-16 00:31:37", "154.5.182.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("24539", "2", "2016-01-16 00:42:13", "136.243.48.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("24540", "1", "2016-01-16 01:12:48", "23.94.52.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("24541", "3", "2016-01-16 01:12:48", "23.94.52.48", "42");
INSERT INTO `wp_gf_form_view` VALUES("24542", "8", "2016-01-16 01:12:48", "23.94.52.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("24543", "3", "2016-01-16 02:06:18", "184.71.13.222", "165");
INSERT INTO `wp_gf_form_view` VALUES("24544", "8", "2016-01-16 02:06:18", "184.71.13.222", "20");
INSERT INTO `wp_gf_form_view` VALUES("24545", "2", "2016-01-16 02:17:59", "5.175.140.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("24546", "1", "2016-01-16 02:31:13", "216.158.206.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("24547", "1", "2016-01-16 03:12:48", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("24548", "3", "2016-01-16 03:12:48", "66.249.74.106", "16");
INSERT INTO `wp_gf_form_view` VALUES("24549", "8", "2016-01-16 03:12:49", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("24550", "1", "2016-01-16 04:12:54", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24551", "3", "2016-01-16 04:12:54", "62.210.162.184", "16");
INSERT INTO `wp_gf_form_view` VALUES("24552", "8", "2016-01-16 04:12:54", "62.210.162.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("24553", "3", "2016-01-16 05:03:47", "66.249.74.106", "49");
INSERT INTO `wp_gf_form_view` VALUES("24554", "8", "2016-01-16 05:03:47", "66.249.74.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("24555", "1", "2016-01-16 05:53:38", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24556", "3", "2016-01-16 06:24:59", "70.67.96.163", "8");
INSERT INTO `wp_gf_form_view` VALUES("24557", "8", "2016-01-16 06:24:59", "70.67.96.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("24558", "3", "2016-01-16 07:07:34", "216.158.206.235", "163");
INSERT INTO `wp_gf_form_view` VALUES("24559", "8", "2016-01-16 07:07:34", "216.158.206.235", "20");
INSERT INTO `wp_gf_form_view` VALUES("24560", "1", "2016-01-16 07:40:27", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24561", "3", "2016-01-16 08:08:34", "66.249.74.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("24562", "8", "2016-01-16 08:08:34", "66.249.74.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("24563", "3", "2016-01-16 09:04:08", "40.77.167.28", "81");
INSERT INTO `wp_gf_form_view` VALUES("24564", "8", "2016-01-16 09:04:08", "40.77.167.28", "10");
INSERT INTO `wp_gf_form_view` VALUES("24565", "3", "2016-01-16 11:48:58", "136.243.48.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("24566", "8", "2016-01-16 11:48:58", "136.243.48.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("24567", "3", "2016-01-16 12:49:48", "141.8.143.183", "8");
INSERT INTO `wp_gf_form_view` VALUES("24568", "8", "2016-01-16 12:49:48", "141.8.143.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("24569", "3", "2016-01-16 13:34:46", "136.243.154.26", "17");
INSERT INTO `wp_gf_form_view` VALUES("24570", "8", "2016-01-16 13:34:46", "136.243.154.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("24571", "3", "2016-01-16 14:11:35", "157.55.39.194", "524");
INSERT INTO `wp_gf_form_view` VALUES("24572", "8", "2016-01-16 14:11:35", "157.55.39.194", "62");
INSERT INTO `wp_gf_form_view` VALUES("24573", "6", "2016-01-16 14:12:26", "207.46.13.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("24574", "1", "2016-01-16 14:34:44", "24.108.10.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("24575", "3", "2016-01-16 15:37:02", "66.249.74.102", "16");
INSERT INTO `wp_gf_form_view` VALUES("24576", "8", "2016-01-16 15:37:02", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("24577", "3", "2016-01-16 16:06:31", "66.249.74.106", "17");
INSERT INTO `wp_gf_form_view` VALUES("24578", "8", "2016-01-16 16:06:31", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("24579", "3", "2016-01-16 17:05:32", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("24580", "8", "2016-01-16 17:05:32", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("24581", "3", "2016-01-16 19:07:42", "46.118.126.200", "24");
INSERT INTO `wp_gf_form_view` VALUES("24582", "8", "2016-01-16 19:07:43", "46.118.126.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("24583", "8", "2016-01-16 19:07:43", "46.118.126.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("24584", "3", "2016-01-16 20:13:49", "24.108.190.127", "62");
INSERT INTO `wp_gf_form_view` VALUES("24585", "8", "2016-01-16 20:13:49", "24.108.190.127", "8");
INSERT INTO `wp_gf_form_view` VALUES("24586", "1", "2016-01-16 20:28:58", "136.243.155.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("24587", "3", "2016-01-16 21:41:54", "66.249.74.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("24588", "8", "2016-01-16 21:41:54", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("24589", "3", "2016-01-16 22:02:51", "66.249.74.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("24590", "8", "2016-01-16 22:02:51", "66.249.74.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("24591", "3", "2016-01-16 23:14:32", "68.180.229.161", "81");
INSERT INTO `wp_gf_form_view` VALUES("24592", "8", "2016-01-16 23:14:32", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("24593", "1", "2016-01-16 23:37:16", "96.50.8.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("24594", "3", "2016-01-17 00:02:35", "184.66.14.57", "194");
INSERT INTO `wp_gf_form_view` VALUES("24595", "8", "2016-01-17 00:02:35", "184.66.14.57", "24");
INSERT INTO `wp_gf_form_view` VALUES("24596", "1", "2016-01-17 00:09:57", "184.66.14.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("24597", "3", "2016-01-17 01:46:58", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("24598", "8", "2016-01-17 01:46:58", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("24599", "3", "2016-01-17 02:13:45", "66.249.74.104", "56");
INSERT INTO `wp_gf_form_view` VALUES("24600", "8", "2016-01-17 02:13:45", "66.249.74.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("24601", "9", "2016-01-17 02:56:42", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("24602", "3", "2016-01-17 03:21:44", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("24603", "8", "2016-01-17 03:21:44", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("24604", "3", "2016-01-17 04:02:57", "144.76.185.173", "24");
INSERT INTO `wp_gf_form_view` VALUES("24605", "8", "2016-01-17 04:02:57", "144.76.185.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("24606", "3", "2016-01-17 05:36:45", "178.137.89.157", "33");
INSERT INTO `wp_gf_form_view` VALUES("24607", "8", "2016-01-17 05:36:45", "178.137.89.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("24608", "3", "2016-01-17 06:31:10", "24.108.86.254", "16");
INSERT INTO `wp_gf_form_view` VALUES("24609", "8", "2016-01-17 06:31:10", "24.108.86.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("24610", "3", "2016-01-17 08:05:15", "66.249.74.102", "24");
INSERT INTO `wp_gf_form_view` VALUES("24611", "8", "2016-01-17 08:05:16", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("24612", "3", "2016-01-17 09:25:39", "79.44.112.162", "419");
INSERT INTO `wp_gf_form_view` VALUES("24613", "8", "2016-01-17 09:25:39", "79.44.112.162", "52");
INSERT INTO `wp_gf_form_view` VALUES("24614", "2", "2016-01-17 09:27:10", "79.44.112.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("24615", "3", "2016-01-17 10:11:36", "178.137.160.2", "24");
INSERT INTO `wp_gf_form_view` VALUES("24616", "8", "2016-01-17 10:11:36", "178.137.160.2", "3");
INSERT INTO `wp_gf_form_view` VALUES("24617", "3", "2016-01-17 11:49:01", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("24618", "8", "2016-01-17 11:49:02", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("24619", "3", "2016-01-17 12:21:38", "136.243.151.135", "16");
INSERT INTO `wp_gf_form_view` VALUES("24620", "8", "2016-01-17 12:21:38", "136.243.151.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("24621", "3", "2016-01-17 13:19:48", "46.118.126.200", "24");
INSERT INTO `wp_gf_form_view` VALUES("24622", "8", "2016-01-17 13:19:48", "46.118.126.200", "3");
INSERT INTO `wp_gf_form_view` VALUES("24623", "3", "2016-01-17 14:02:02", "66.249.74.102", "29");
INSERT INTO `wp_gf_form_view` VALUES("24624", "8", "2016-01-17 14:02:02", "66.249.74.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("24625", "3", "2016-01-17 15:13:51", "148.251.75.46", "33");
INSERT INTO `wp_gf_form_view` VALUES("24626", "8", "2016-01-17 15:13:51", "148.251.75.46", "5");
INSERT INTO `wp_gf_form_view` VALUES("24627", "3", "2016-01-17 16:39:05", "82.46.125.215", "276");
INSERT INTO `wp_gf_form_view` VALUES("24628", "8", "2016-01-17 16:39:05", "82.46.125.215", "34");
INSERT INTO `wp_gf_form_view` VALUES("24629", "2", "2016-01-17 16:39:55", "82.46.125.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("24630", "3", "2016-01-17 17:10:34", "77.75.77.62", "723");
INSERT INTO `wp_gf_form_view` VALUES("24631", "8", "2016-01-17 17:10:34", "77.75.77.62", "93");
INSERT INTO `wp_gf_form_view` VALUES("24632", "2", "2016-01-17 17:30:36", "144.76.182.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("24633", "1", "2016-01-17 17:48:02", "144.76.182.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("24634", "9", "2016-01-17 17:53:39", "144.76.182.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("24635", "5", "2016-01-17 17:57:44", "144.76.182.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("24636", "3", "2016-01-17 18:00:01", "144.76.182.139", "482");
INSERT INTO `wp_gf_form_view` VALUES("24637", "8", "2016-01-17 18:00:01", "144.76.182.139", "66");
INSERT INTO `wp_gf_form_view` VALUES("24638", "9", "2016-01-17 18:12:15", "144.76.182.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("24639", "6", "2016-01-17 18:17:38", "144.76.182.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("24640", "3", "2016-01-17 19:30:32", "202.46.57.199", "39");
INSERT INTO `wp_gf_form_view` VALUES("24641", "8", "2016-01-17 19:30:32", "202.46.57.199", "5");
INSERT INTO `wp_gf_form_view` VALUES("24642", "3", "2016-01-17 20:04:02", "202.46.58.83", "30");
INSERT INTO `wp_gf_form_view` VALUES("24643", "8", "2016-01-17 20:04:02", "202.46.58.83", "4");
INSERT INTO `wp_gf_form_view` VALUES("24644", "3", "2016-01-17 21:10:42", "66.249.74.104", "63");
INSERT INTO `wp_gf_form_view` VALUES("24645", "8", "2016-01-17 21:10:43", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("24646", "3", "2016-01-17 22:17:27", "68.180.229.161", "31");
INSERT INTO `wp_gf_form_view` VALUES("24647", "8", "2016-01-17 22:17:27", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("24648", "3", "2016-01-17 23:01:05", "77.75.77.62", "47");
INSERT INTO `wp_gf_form_view` VALUES("24649", "8", "2016-01-17 23:01:05", "77.75.77.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("24650", "2", "2016-01-17 23:01:20", "40.77.167.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("24651", "3", "2016-01-18 00:24:32", "40.77.167.76", "26");
INSERT INTO `wp_gf_form_view` VALUES("24652", "8", "2016-01-18 00:24:32", "40.77.167.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("24653", "3", "2016-01-18 01:05:25", "202.46.50.18", "55");
INSERT INTO `wp_gf_form_view` VALUES("24654", "8", "2016-01-18 01:05:25", "202.46.50.18", "7");
INSERT INTO `wp_gf_form_view` VALUES("24655", "3", "2016-01-18 02:12:24", "202.46.53.126", "21");
INSERT INTO `wp_gf_form_view` VALUES("24656", "8", "2016-01-18 02:12:24", "202.46.53.126", "3");
INSERT INTO `wp_gf_form_view` VALUES("24657", "3", "2016-01-18 03:04:44", "46.118.126.200", "199");
INSERT INTO `wp_gf_form_view` VALUES("24658", "8", "2016-01-18 03:04:44", "46.118.126.200", "27");
INSERT INTO `wp_gf_form_view` VALUES("24659", "1", "2016-01-18 03:53:01", "98.237.176.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("24660", "3", "2016-01-18 04:03:20", "136.243.154.230", "113");
INSERT INTO `wp_gf_form_view` VALUES("24661", "8", "2016-01-18 04:03:20", "136.243.154.230", "14");
INSERT INTO `wp_gf_form_view` VALUES("24662", "3", "2016-01-18 05:01:21", "40.77.167.63", "40");
INSERT INTO `wp_gf_form_view` VALUES("24663", "8", "2016-01-18 05:01:21", "40.77.167.63", "5");
INSERT INTO `wp_gf_form_view` VALUES("24664", "3", "2016-01-18 06:00:13", "136.243.151.91", "57");
INSERT INTO `wp_gf_form_view` VALUES("24665", "8", "2016-01-18 06:00:15", "136.243.151.91", "7");
INSERT INTO `wp_gf_form_view` VALUES("24666", "1", "2016-01-18 06:00:59", "5.231.30.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("24667", "3", "2016-01-18 07:57:23", "66.249.74.104", "64");
INSERT INTO `wp_gf_form_view` VALUES("24668", "8", "2016-01-18 07:57:23", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("24669", "1", "2016-01-18 07:58:15", "104.193.10.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("24670", "6", "2016-01-18 07:58:20", "104.193.10.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("24671", "9", "2016-01-18 08:01:25", "188.215.22.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("24672", "3", "2016-01-18 08:01:25", "188.215.22.253", "157");
INSERT INTO `wp_gf_form_view` VALUES("24673", "8", "2016-01-18 08:01:25", "188.215.22.253", "19");
INSERT INTO `wp_gf_form_view` VALUES("24674", "6", "2016-01-18 08:47:04", "136.243.154.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("24675", "9", "2016-01-18 09:49:59", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24676", "3", "2016-01-18 09:50:00", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("24677", "8", "2016-01-18 09:50:00", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24678", "3", "2016-01-18 10:45:14", "141.8.143.183", "13");
INSERT INTO `wp_gf_form_view` VALUES("24679", "8", "2016-01-18 10:45:14", "141.8.143.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("24680", "3", "2016-01-18 11:12:02", "24.69.36.80", "111");
INSERT INTO `wp_gf_form_view` VALUES("24681", "8", "2016-01-18 11:12:02", "24.69.36.80", "15");
INSERT INTO `wp_gf_form_view` VALUES("24682", "1", "2016-01-18 11:23:01", "24.69.36.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("24683", "9", "2016-01-18 11:32:27", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24684", "3", "2016-01-18 12:20:51", "207.194.133.9", "24");
INSERT INTO `wp_gf_form_view` VALUES("24685", "8", "2016-01-18 12:20:51", "207.194.133.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("24686", "2", "2016-01-18 13:39:10", "144.76.8.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("24687", "3", "2016-01-18 13:39:10", "144.76.8.132", "77");
INSERT INTO `wp_gf_form_view` VALUES("24688", "8", "2016-01-18 13:39:10", "144.76.8.132", "9");
INSERT INTO `wp_gf_form_view` VALUES("24689", "3", "2016-01-18 14:21:57", "51.254.32.82", "33");
INSERT INTO `wp_gf_form_view` VALUES("24690", "8", "2016-01-18 14:21:57", "51.254.32.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("24691", "3", "2016-01-18 15:02:40", "202.46.58.130", "40");
INSERT INTO `wp_gf_form_view` VALUES("24692", "8", "2016-01-18 15:02:40", "202.46.58.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("24693", "1", "2016-01-18 15:48:42", "212.83.148.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("24694", "3", "2016-01-18 16:12:24", "136.243.153.233", "33");
INSERT INTO `wp_gf_form_view` VALUES("24695", "8", "2016-01-18 16:12:24", "136.243.153.233", "4");
INSERT INTO `wp_gf_form_view` VALUES("24696", "3", "2016-01-18 17:05:20", "40.77.167.76", "46");
INSERT INTO `wp_gf_form_view` VALUES("24697", "8", "2016-01-18 17:05:20", "40.77.167.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("24698", "3", "2016-01-18 18:08:38", "24.68.136.173", "292");
INSERT INTO `wp_gf_form_view` VALUES("24699", "8", "2016-01-18 18:08:38", "24.68.136.173", "38");
INSERT INTO `wp_gf_form_view` VALUES("24700", "2", "2016-01-18 18:44:47", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("24701", "3", "2016-01-18 19:05:31", "202.46.58.97", "57");
INSERT INTO `wp_gf_form_view` VALUES("24702", "8", "2016-01-18 19:05:31", "202.46.58.97", "7");
INSERT INTO `wp_gf_form_view` VALUES("24703", "1", "2016-01-18 19:12:34", "91.194.84.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("24704", "3", "2016-01-18 20:06:49", "206.116.38.103", "133");
INSERT INTO `wp_gf_form_view` VALUES("24705", "8", "2016-01-18 20:06:49", "206.116.38.103", "17");
INSERT INTO `wp_gf_form_view` VALUES("24706", "3", "2016-01-18 21:05:01", "178.137.160.2", "64");
INSERT INTO `wp_gf_form_view` VALUES("24707", "8", "2016-01-18 21:05:01", "178.137.160.2", "8");
INSERT INTO `wp_gf_form_view` VALUES("24708", "3", "2016-01-18 22:12:38", "184.69.178.254", "167");
INSERT INTO `wp_gf_form_view` VALUES("24709", "8", "2016-01-18 22:12:38", "184.69.178.254", "21");
INSERT INTO `wp_gf_form_view` VALUES("24710", "6", "2016-01-18 22:38:02", "144.76.201.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("24711", "3", "2016-01-18 23:00:17", "207.194.133.9", "382");
INSERT INTO `wp_gf_form_view` VALUES("24712", "8", "2016-01-18 23:00:17", "207.194.133.9", "46");
INSERT INTO `wp_gf_form_view` VALUES("24713", "9", "2016-01-18 23:52:55", "40.77.167.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("24714", "1", "2016-01-18 23:53:09", "40.77.167.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("24715", "3", "2016-01-19 00:00:54", "96.50.41.8", "164");
INSERT INTO `wp_gf_form_view` VALUES("24716", "8", "2016-01-19 00:00:54", "96.50.41.8", "21");
INSERT INTO `wp_gf_form_view` VALUES("24717", "3", "2016-01-19 01:11:16", "66.249.74.106", "73");
INSERT INTO `wp_gf_form_view` VALUES("24718", "8", "2016-01-19 01:11:16", "66.249.74.106", "9");
INSERT INTO `wp_gf_form_view` VALUES("24719", "3", "2016-01-19 02:11:16", "202.46.48.202", "95");
INSERT INTO `wp_gf_form_view` VALUES("24720", "8", "2016-01-19 02:11:16", "202.46.48.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("24721", "3", "2016-01-19 03:12:48", "136.243.154.32", "64");
INSERT INTO `wp_gf_form_view` VALUES("24722", "8", "2016-01-19 03:12:48", "136.243.154.32", "8");
INSERT INTO `wp_gf_form_view` VALUES("24723", "1", "2016-01-19 03:39:48", "23.80.97.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("24724", "3", "2016-01-19 04:01:51", "199.21.99.202", "106");
INSERT INTO `wp_gf_form_view` VALUES("24725", "8", "2016-01-19 04:01:52", "199.21.99.202", "13");
INSERT INTO `wp_gf_form_view` VALUES("24726", "3", "2016-01-19 05:08:31", "202.46.58.156", "56");
INSERT INTO `wp_gf_form_view` VALUES("24727", "8", "2016-01-19 05:08:31", "202.46.58.156", "7");
INSERT INTO `wp_gf_form_view` VALUES("24728", "3", "2016-01-19 06:10:16", "199.21.99.202", "190");
INSERT INTO `wp_gf_form_view` VALUES("24729", "8", "2016-01-19 06:10:16", "199.21.99.202", "23");
INSERT INTO `wp_gf_form_view` VALUES("24730", "9", "2016-01-19 06:31:28", "100.43.81.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("24731", "7", "2016-01-19 06:36:42", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("24732", "3", "2016-01-19 07:00:01", "202.46.54.98", "153");
INSERT INTO `wp_gf_form_view` VALUES("24733", "8", "2016-01-19 07:00:01", "202.46.54.98", "19");
INSERT INTO `wp_gf_form_view` VALUES("24734", "1", "2016-01-19 07:24:17", "192.227.161.79", "4");
INSERT INTO `wp_gf_form_view` VALUES("24735", "3", "2016-01-19 08:00:16", "202.46.53.194", "32");
INSERT INTO `wp_gf_form_view` VALUES("24736", "8", "2016-01-19 08:00:16", "202.46.53.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("24737", "3", "2016-01-19 09:00:16", "68.180.229.161", "113");
INSERT INTO `wp_gf_form_view` VALUES("24738", "8", "2016-01-19 09:00:16", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("24739", "3", "2016-01-19 10:00:03", "199.21.99.202", "233");
INSERT INTO `wp_gf_form_view` VALUES("24740", "8", "2016-01-19 10:00:04", "199.21.99.202", "29");
INSERT INTO `wp_gf_form_view` VALUES("24741", "3", "2016-01-19 11:07:16", "66.249.74.12", "84");
INSERT INTO `wp_gf_form_view` VALUES("24742", "8", "2016-01-19 11:07:16", "66.249.74.12", "11");
INSERT INTO `wp_gf_form_view` VALUES("24743", "2", "2016-01-19 11:55:22", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("24744", "3", "2016-01-19 12:00:20", "136.243.151.113", "140");
INSERT INTO `wp_gf_form_view` VALUES("24745", "8", "2016-01-19 12:00:20", "136.243.151.113", "19");
INSERT INTO `wp_gf_form_view` VALUES("24746", "3", "2016-01-19 13:41:20", "202.46.53.153", "23");
INSERT INTO `wp_gf_form_view` VALUES("24747", "8", "2016-01-19 13:41:21", "202.46.53.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("24748", "3", "2016-01-19 14:05:28", "188.215.22.2", "87");
INSERT INTO `wp_gf_form_view` VALUES("24749", "8", "2016-01-19 14:05:28", "188.215.22.2", "11");
INSERT INTO `wp_gf_form_view` VALUES("24750", "1", "2016-01-19 14:21:39", "98.237.176.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("24751", "3", "2016-01-19 15:11:22", "66.249.74.104", "48");
INSERT INTO `wp_gf_form_view` VALUES("24752", "8", "2016-01-19 15:11:22", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("24753", "3", "2016-01-19 16:08:15", "207.194.133.9", "24");
INSERT INTO `wp_gf_form_view` VALUES("24754", "8", "2016-01-19 16:08:16", "207.194.133.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("24755", "3", "2016-01-19 17:09:39", "96.50.65.70", "122");
INSERT INTO `wp_gf_form_view` VALUES("24756", "8", "2016-01-19 17:09:39", "96.50.65.70", "15");
INSERT INTO `wp_gf_form_view` VALUES("24757", "3", "2016-01-19 18:10:56", "27.151.80.108", "232");
INSERT INTO `wp_gf_form_view` VALUES("24758", "8", "2016-01-19 18:10:56", "27.151.80.108", "30");
INSERT INTO `wp_gf_form_view` VALUES("24759", "2", "2016-01-19 18:42:33", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("24760", "3", "2016-01-19 19:10:07", "46.119.119.70", "328");
INSERT INTO `wp_gf_form_view` VALUES("24761", "3", "2016-01-19 19:10:07", "46.119.119.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("24762", "8", "2016-01-19 19:10:08", "46.119.119.70", "40");
INSERT INTO `wp_gf_form_view` VALUES("24763", "8", "2016-01-19 19:10:08", "46.119.119.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("24764", "2", "2016-01-19 19:43:24", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("24765", "3", "2016-01-19 20:03:42", "207.194.133.9", "121");
INSERT INTO `wp_gf_form_view` VALUES("24766", "8", "2016-01-19 20:03:42", "207.194.133.9", "15");
INSERT INTO `wp_gf_form_view` VALUES("24767", "3", "2016-01-19 21:11:19", "184.69.178.254", "60");
INSERT INTO `wp_gf_form_view` VALUES("24768", "8", "2016-01-19 21:11:20", "184.69.178.254", "8");
INSERT INTO `wp_gf_form_view` VALUES("24769", "3", "2016-01-19 22:02:39", "202.46.48.204", "101");
INSERT INTO `wp_gf_form_view` VALUES("24770", "8", "2016-01-19 22:02:39", "202.46.48.204", "13");
INSERT INTO `wp_gf_form_view` VALUES("24771", "3", "2016-01-19 23:28:52", "96.54.184.100", "48");
INSERT INTO `wp_gf_form_view` VALUES("24772", "8", "2016-01-19 23:28:52", "96.54.184.100", "6");
INSERT INTO `wp_gf_form_view` VALUES("24773", "3", "2016-01-20 00:17:51", "40.77.167.7", "50");
INSERT INTO `wp_gf_form_view` VALUES("24774", "8", "2016-01-20 00:17:51", "40.77.167.7", "6");
INSERT INTO `wp_gf_form_view` VALUES("24775", "3", "2016-01-20 01:19:02", "184.66.247.196", "112");
INSERT INTO `wp_gf_form_view` VALUES("24776", "8", "2016-01-20 01:19:02", "184.66.247.196", "14");
INSERT INTO `wp_gf_form_view` VALUES("24777", "3", "2016-01-20 02:04:42", "68.180.229.161", "65");
INSERT INTO `wp_gf_form_view` VALUES("24778", "8", "2016-01-20 02:04:42", "68.180.229.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("24779", "3", "2016-01-20 03:10:12", "202.46.55.81", "38");
INSERT INTO `wp_gf_form_view` VALUES("24780", "8", "2016-01-20 03:10:13", "202.46.55.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("24781", "3", "2016-01-20 04:00:57", "178.137.85.56", "134");
INSERT INTO `wp_gf_form_view` VALUES("24782", "3", "2016-01-20 04:00:57", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("24783", "8", "2016-01-20 04:00:57", "178.137.85.56", "16");
INSERT INTO `wp_gf_form_view` VALUES("24784", "8", "2016-01-20 04:00:57", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("24785", "1", "2016-01-20 04:04:16", "192.3.59.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("24786", "3", "2016-01-20 05:06:01", "202.46.57.184", "13");
INSERT INTO `wp_gf_form_view` VALUES("24787", "8", "2016-01-20 05:06:01", "202.46.57.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("24788", "3", "2016-01-20 06:38:58", "96.50.68.167", "16");
INSERT INTO `wp_gf_form_view` VALUES("24789", "8", "2016-01-20 06:38:59", "96.50.68.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("24790", "3", "2016-01-20 07:12:26", "202.46.49.192", "51");
INSERT INTO `wp_gf_form_view` VALUES("24791", "8", "2016-01-20 07:12:26", "202.46.49.192", "6");
INSERT INTO `wp_gf_form_view` VALUES("24792", "3", "2016-01-20 08:06:48", "202.46.51.163", "109");
INSERT INTO `wp_gf_form_view` VALUES("24793", "8", "2016-01-20 08:06:48", "202.46.51.163", "14");
INSERT INTO `wp_gf_form_view` VALUES("24794", "1", "2016-01-20 08:30:16", "172.218.233.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("24795", "3", "2016-01-20 09:11:51", "66.249.74.104", "24");
INSERT INTO `wp_gf_form_view` VALUES("24796", "8", "2016-01-20 09:11:51", "66.249.74.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("24797", "3", "2016-01-20 10:00:30", "202.46.56.187", "60");
INSERT INTO `wp_gf_form_view` VALUES("24798", "8", "2016-01-20 10:00:30", "202.46.56.187", "8");
INSERT INTO `wp_gf_form_view` VALUES("24799", "3", "2016-01-20 11:37:40", "155.94.138.241", "31");
INSERT INTO `wp_gf_form_view` VALUES("24800", "8", "2016-01-20 11:37:40", "155.94.138.241", "4");
INSERT INTO `wp_gf_form_view` VALUES("24801", "3", "2016-01-20 12:09:41", "40.77.167.63", "34");
INSERT INTO `wp_gf_form_view` VALUES("24802", "8", "2016-01-20 12:09:41", "40.77.167.63", "4");
INSERT INTO `wp_gf_form_view` VALUES("24803", "3", "2016-01-20 13:03:19", "66.249.74.106", "24");
INSERT INTO `wp_gf_form_view` VALUES("24804", "8", "2016-01-20 13:03:19", "66.249.74.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("24805", "3", "2016-01-20 14:03:09", "202.46.56.204", "48");
INSERT INTO `wp_gf_form_view` VALUES("24806", "8", "2016-01-20 14:03:10", "202.46.56.204", "5");
INSERT INTO `wp_gf_form_view` VALUES("24807", "3", "2016-01-20 15:04:15", "202.46.51.202", "64");
INSERT INTO `wp_gf_form_view` VALUES("24808", "8", "2016-01-20 15:04:15", "202.46.51.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("24809", "3", "2016-01-20 16:04:47", "51.254.32.82", "506");
INSERT INTO `wp_gf_form_view` VALUES("24810", "8", "2016-01-20 16:04:47", "51.254.32.82", "74");
INSERT INTO `wp_gf_form_view` VALUES("24811", "2", "2016-01-20 16:24:18", "96.91.131.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("24812", "3", "2016-01-20 17:03:23", "202.46.55.147", "167");
INSERT INTO `wp_gf_form_view` VALUES("24813", "8", "2016-01-20 17:03:23", "202.46.55.147", "23");
INSERT INTO `wp_gf_form_view` VALUES("24814", "3", "2016-01-20 18:02:10", "38.117.92.58", "175");
INSERT INTO `wp_gf_form_view` VALUES("24815", "8", "2016-01-20 18:02:10", "38.117.92.58", "22");
INSERT INTO `wp_gf_form_view` VALUES("24816", "3", "2016-01-20 19:00:07", "24.108.7.45", "171");
INSERT INTO `wp_gf_form_view` VALUES("24817", "8", "2016-01-20 19:00:08", "24.108.7.45", "21");
INSERT INTO `wp_gf_form_view` VALUES("24818", "3", "2016-01-20 20:09:04", "202.46.56.90", "118");
INSERT INTO `wp_gf_form_view` VALUES("24819", "8", "2016-01-20 20:09:04", "202.46.56.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("24820", "3", "2016-01-20 21:03:06", "202.46.57.28", "137");
INSERT INTO `wp_gf_form_view` VALUES("24821", "8", "2016-01-20 21:03:07", "202.46.57.28", "16");
INSERT INTO `wp_gf_form_view` VALUES("24822", "2", "2016-01-20 21:49:52", "195.154.146.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("24823", "3", "2016-01-20 22:02:15", "202.46.50.89", "185");
INSERT INTO `wp_gf_form_view` VALUES("24824", "8", "2016-01-20 22:02:15", "202.46.50.89", "24");
INSERT INTO `wp_gf_form_view` VALUES("24825", "2", "2016-01-20 22:04:03", "76.66.141.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("24826", "3", "2016-01-20 23:01:20", "202.46.52.142", "108");
INSERT INTO `wp_gf_form_view` VALUES("24827", "8", "2016-01-20 23:01:21", "202.46.52.142", "14");
INSERT INTO `wp_gf_form_view` VALUES("24828", "1", "2016-01-20 23:16:55", "24.69.68.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("24829", "3", "2016-01-21 00:00:28", "202.46.50.13", "491");
INSERT INTO `wp_gf_form_view` VALUES("24830", "8", "2016-01-21 00:00:28", "202.46.50.13", "60");
INSERT INTO `wp_gf_form_view` VALUES("24831", "2", "2016-01-21 00:31:39", "198.0.18.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("24832", "3", "2016-01-21 01:00:04", "24.108.7.45", "86");
INSERT INTO `wp_gf_form_view` VALUES("24833", "8", "2016-01-21 01:00:04", "24.108.7.45", "10");
INSERT INTO `wp_gf_form_view` VALUES("24834", "3", "2016-01-21 02:18:21", "198.148.15.126", "52");
INSERT INTO `wp_gf_form_view` VALUES("24835", "8", "2016-01-21 02:18:21", "198.148.15.126", "7");
INSERT INTO `wp_gf_form_view` VALUES("24836", "3", "2016-01-21 03:01:03", "202.46.58.204", "113");
INSERT INTO `wp_gf_form_view` VALUES("24837", "8", "2016-01-21 03:01:03", "202.46.58.204", "15");
INSERT INTO `wp_gf_form_view` VALUES("24838", "3", "2016-01-21 04:00:10", "202.46.50.83", "533");
INSERT INTO `wp_gf_form_view` VALUES("24839", "8", "2016-01-21 04:00:10", "202.46.50.83", "71");
INSERT INTO `wp_gf_form_view` VALUES("24840", "2", "2016-01-21 04:06:57", "174.127.133.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("24841", "3", "2016-01-21 05:37:08", "62.81.85.102", "250");
INSERT INTO `wp_gf_form_view` VALUES("24842", "8", "2016-01-21 05:37:08", "62.81.85.102", "31");
INSERT INTO `wp_gf_form_view` VALUES("24843", "2", "2016-01-21 05:38:09", "62.81.85.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("24844", "3", "2016-01-21 06:07:39", "154.20.34.180", "104");
INSERT INTO `wp_gf_form_view` VALUES("24845", "8", "2016-01-21 06:07:39", "154.20.34.180", "13");
INSERT INTO `wp_gf_form_view` VALUES("24846", "3", "2016-01-21 07:09:58", "202.46.53.59", "32");
INSERT INTO `wp_gf_form_view` VALUES("24847", "8", "2016-01-21 07:09:58", "202.46.53.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("24848", "3", "2016-01-21 08:14:55", "66.249.74.102", "143");
INSERT INTO `wp_gf_form_view` VALUES("24849", "8", "2016-01-21 08:14:55", "66.249.74.102", "18");
INSERT INTO `wp_gf_form_view` VALUES("24850", "6", "2016-01-21 08:40:47", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("24851", "3", "2016-01-21 09:05:06", "202.46.53.191", "84");
INSERT INTO `wp_gf_form_view` VALUES("24852", "8", "2016-01-21 09:05:06", "202.46.53.191", "11");
INSERT INTO `wp_gf_form_view` VALUES("24853", "3", "2016-01-21 10:04:12", "202.46.58.80", "111");
INSERT INTO `wp_gf_form_view` VALUES("24854", "8", "2016-01-21 10:04:12", "202.46.58.80", "15");
INSERT INTO `wp_gf_form_view` VALUES("24855", "9", "2016-01-21 10:47:46", "93.127.146.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("24856", "3", "2016-01-21 11:07:02", "51.255.65.12", "172");
INSERT INTO `wp_gf_form_view` VALUES("24857", "8", "2016-01-21 11:07:02", "51.255.65.12", "22");
INSERT INTO `wp_gf_form_view` VALUES("24858", "2", "2016-01-21 11:22:18", "195.154.226.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("24859", "3", "2016-01-21 12:02:26", "202.46.58.81", "172");
INSERT INTO `wp_gf_form_view` VALUES("24860", "8", "2016-01-21 12:02:27", "202.46.58.81", "20");
INSERT INTO `wp_gf_form_view` VALUES("24861", "1", "2016-01-21 12:12:58", "217.69.133.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("24862", "3", "2016-01-21 13:01:36", "202.46.50.132", "160");
INSERT INTO `wp_gf_form_view` VALUES("24863", "8", "2016-01-21 13:01:36", "202.46.50.132", "21");
INSERT INTO `wp_gf_form_view` VALUES("24864", "3", "2016-01-21 14:00:41", "202.46.58.19", "107");
INSERT INTO `wp_gf_form_view` VALUES("24865", "8", "2016-01-21 14:00:41", "202.46.58.19", "13");
INSERT INTO `wp_gf_form_view` VALUES("24866", "1", "2016-01-21 14:36:33", "66.248.199.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("24867", "3", "2016-01-21 15:08:16", "202.46.55.148", "128");
INSERT INTO `wp_gf_form_view` VALUES("24868", "8", "2016-01-21 15:08:16", "202.46.55.148", "15");
INSERT INTO `wp_gf_form_view` VALUES("24869", "3", "2016-01-21 16:07:22", "202.46.54.91", "150");
INSERT INTO `wp_gf_form_view` VALUES("24870", "8", "2016-01-21 16:07:23", "202.46.54.91", "20");
INSERT INTO `wp_gf_form_view` VALUES("24871", "9", "2016-01-21 16:20:31", "107.161.83.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("24872", "6", "2016-01-21 16:55:50", "217.69.133.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("24873", "3", "2016-01-21 17:04:48", "66.249.74.104", "503");
INSERT INTO `wp_gf_form_view` VALUES("24874", "8", "2016-01-21 17:04:48", "66.249.74.104", "61");
INSERT INTO `wp_gf_form_view` VALUES("24875", "1", "2016-01-21 17:27:09", "192.210.216.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("24876", "6", "2016-01-21 17:36:06", "157.55.39.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("24877", "5", "2016-01-21 17:44:58", "51.255.65.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("24878", "3", "2016-01-21 18:04:11", "216.220.37.161", "418");
INSERT INTO `wp_gf_form_view` VALUES("24879", "8", "2016-01-21 18:04:12", "216.220.37.161", "54");
INSERT INTO `wp_gf_form_view` VALUES("24880", "2", "2016-01-21 18:05:05", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("24881", "3", "2016-01-21 19:04:49", "202.46.57.163", "147");
INSERT INTO `wp_gf_form_view` VALUES("24882", "8", "2016-01-21 19:04:49", "202.46.57.163", "18");
INSERT INTO `wp_gf_form_view` VALUES("24883", "3", "2016-01-21 20:03:14", "217.69.133.219", "141");
INSERT INTO `wp_gf_form_view` VALUES("24884", "8", "2016-01-21 20:03:14", "217.69.133.219", "17");
INSERT INTO `wp_gf_form_view` VALUES("24885", "3", "2016-01-21 21:02:58", "202.46.50.15", "150");
INSERT INTO `wp_gf_form_view` VALUES("24886", "8", "2016-01-21 21:02:58", "202.46.50.15", "20");
INSERT INTO `wp_gf_form_view` VALUES("24887", "5", "2016-01-21 21:37:51", "217.69.133.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("24888", "3", "2016-01-21 22:02:06", "202.46.50.153", "137");
INSERT INTO `wp_gf_form_view` VALUES("24889", "8", "2016-01-21 22:02:06", "202.46.50.153", "18");
INSERT INTO `wp_gf_form_view` VALUES("24890", "3", "2016-01-21 23:01:14", "202.46.53.153", "266");
INSERT INTO `wp_gf_form_view` VALUES("24891", "8", "2016-01-21 23:01:14", "202.46.53.153", "33");
INSERT INTO `wp_gf_form_view` VALUES("24892", "9", "2016-01-21 23:49:36", "107.183.7.34", "4");
INSERT INTO `wp_gf_form_view` VALUES("24893", "3", "2016-01-22 00:00:20", "202.46.53.192", "216");
INSERT INTO `wp_gf_form_view` VALUES("24894", "8", "2016-01-22 00:00:20", "202.46.53.192", "28");
INSERT INTO `wp_gf_form_view` VALUES("24895", "6", "2016-01-22 00:44:01", "207.46.13.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("24896", "5", "2016-01-22 00:57:48", "202.46.57.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("24897", "3", "2016-01-22 01:01:10", "184.69.3.198", "166");
INSERT INTO `wp_gf_form_view` VALUES("24898", "8", "2016-01-22 01:01:10", "184.69.3.198", "22");
INSERT INTO `wp_gf_form_view` VALUES("24899", "9", "2016-01-22 01:38:44", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24900", "3", "2016-01-22 02:04:20", "202.46.58.26", "131");
INSERT INTO `wp_gf_form_view` VALUES("24901", "8", "2016-01-22 02:04:20", "202.46.58.26", "16");
INSERT INTO `wp_gf_form_view` VALUES("24902", "3", "2016-01-22 03:05:41", "202.46.56.194", "150");
INSERT INTO `wp_gf_form_view` VALUES("24903", "8", "2016-01-22 03:05:41", "202.46.56.194", "21");
INSERT INTO `wp_gf_form_view` VALUES("24904", "9", "2016-01-22 03:24:39", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24905", "3", "2016-01-22 04:02:26", "202.46.52.163", "154");
INSERT INTO `wp_gf_form_view` VALUES("24906", "8", "2016-01-22 04:02:26", "202.46.52.163", "19");
INSERT INTO `wp_gf_form_view` VALUES("24907", "3", "2016-01-22 05:05:43", "202.46.50.93", "115");
INSERT INTO `wp_gf_form_view` VALUES("24908", "8", "2016-01-22 05:05:43", "202.46.50.93", "15");
INSERT INTO `wp_gf_form_view` VALUES("24909", "9", "2016-01-22 05:07:30", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("24910", "3", "2016-01-22 06:11:10", "216.232.153.64", "88");
INSERT INTO `wp_gf_form_view` VALUES("24911", "8", "2016-01-22 06:11:10", "216.232.153.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("24912", "3", "2016-01-22 07:01:22", "202.46.50.184", "129");
INSERT INTO `wp_gf_form_view` VALUES("24913", "8", "2016-01-22 07:01:22", "202.46.50.184", "18");
INSERT INTO `wp_gf_form_view` VALUES("24914", "3", "2016-01-22 08:02:02", "202.46.54.11", "124");
INSERT INTO `wp_gf_form_view` VALUES("24915", "8", "2016-01-22 08:02:02", "202.46.54.11", "16");
INSERT INTO `wp_gf_form_view` VALUES("24916", "6", "2016-01-22 08:36:24", "217.69.133.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("24917", "3", "2016-01-22 09:44:50", "202.46.58.118", "58");
INSERT INTO `wp_gf_form_view` VALUES("24918", "8", "2016-01-22 09:44:51", "202.46.58.118", "8");
INSERT INTO `wp_gf_form_view` VALUES("24919", "3", "2016-01-22 10:00:02", "202.46.53.121", "111");
INSERT INTO `wp_gf_form_view` VALUES("24920", "8", "2016-01-22 10:00:02", "202.46.53.121", "15");
INSERT INTO `wp_gf_form_view` VALUES("24921", "3", "2016-01-22 11:12:22", "202.46.56.210", "202");
INSERT INTO `wp_gf_form_view` VALUES("24922", "8", "2016-01-22 11:12:22", "202.46.56.210", "26");
INSERT INTO `wp_gf_form_view` VALUES("24923", "1", "2016-01-22 11:44:23", "192.126.160.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("24924", "3", "2016-01-22 12:03:06", "202.46.56.200", "246");
INSERT INTO `wp_gf_form_view` VALUES("24925", "8", "2016-01-22 12:03:07", "202.46.56.200", "30");
INSERT INTO `wp_gf_form_view` VALUES("24926", "9", "2016-01-22 12:25:08", "51.255.65.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("24927", "2", "2016-01-22 12:54:59", "195.154.146.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("24928", "3", "2016-01-22 13:02:20", "202.46.56.130", "78");
INSERT INTO `wp_gf_form_view` VALUES("24929", "8", "2016-01-22 13:02:21", "202.46.56.130", "10");
INSERT INTO `wp_gf_form_view` VALUES("24930", "3", "2016-01-22 14:00:12", "202.46.52.201", "178");
INSERT INTO `wp_gf_form_view` VALUES("24931", "8", "2016-01-22 14:00:13", "202.46.52.201", "22");
INSERT INTO `wp_gf_form_view` VALUES("24932", "3", "2016-01-22 15:06:02", "184.66.125.229", "145");
INSERT INTO `wp_gf_form_view` VALUES("24933", "8", "2016-01-22 15:06:02", "184.66.125.229", "19");
INSERT INTO `wp_gf_form_view` VALUES("24934", "3", "2016-01-22 16:01:59", "202.46.52.77", "210");
INSERT INTO `wp_gf_form_view` VALUES("24935", "8", "2016-01-22 16:01:59", "202.46.52.77", "26");
INSERT INTO `wp_gf_form_view` VALUES("24936", "3", "2016-01-22 17:02:52", "202.46.58.81", "182");
INSERT INTO `wp_gf_form_view` VALUES("24937", "8", "2016-01-22 17:02:52", "202.46.58.81", "24");
INSERT INTO `wp_gf_form_view` VALUES("24938", "3", "2016-01-22 18:00:45", "217.69.133.84", "321");
INSERT INTO `wp_gf_form_view` VALUES("24939", "8", "2016-01-22 18:00:45", "217.69.133.84", "42");
INSERT INTO `wp_gf_form_view` VALUES("24940", "3", "2016-01-22 19:04:38", "202.46.55.124", "159");
INSERT INTO `wp_gf_form_view` VALUES("24941", "8", "2016-01-22 19:04:39", "202.46.55.124", "19");
INSERT INTO `wp_gf_form_view` VALUES("24942", "3", "2016-01-22 20:00:29", "202.46.53.156", "228");
INSERT INTO `wp_gf_form_view` VALUES("24943", "8", "2016-01-22 20:00:29", "202.46.53.156", "28");
INSERT INTO `wp_gf_form_view` VALUES("24944", "3", "2016-01-22 21:04:07", "202.46.51.166", "222");
INSERT INTO `wp_gf_form_view` VALUES("24945", "8", "2016-01-22 21:04:07", "202.46.51.166", "27");
INSERT INTO `wp_gf_form_view` VALUES("24946", "3", "2016-01-22 22:06:38", "202.46.50.86", "267");
INSERT INTO `wp_gf_form_view` VALUES("24947", "8", "2016-01-22 22:06:39", "202.46.50.86", "33");
INSERT INTO `wp_gf_form_view` VALUES("24948", "3", "2016-01-22 23:02:24", "202.46.48.133", "280");
INSERT INTO `wp_gf_form_view` VALUES("24949", "8", "2016-01-22 23:02:24", "202.46.48.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("24950", "1", "2016-01-22 23:09:10", "96.50.18.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("24951", "3", "2016-01-23 00:02:29", "202.46.51.182", "323");
INSERT INTO `wp_gf_form_view` VALUES("24952", "8", "2016-01-23 00:02:29", "202.46.51.182", "42");
INSERT INTO `wp_gf_form_view` VALUES("24953", "2", "2016-01-23 00:17:26", "217.69.133.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("24954", "3", "2016-01-23 01:03:22", "202.46.52.13", "229");
INSERT INTO `wp_gf_form_view` VALUES("24955", "8", "2016-01-23 01:03:22", "202.46.52.13", "28");
INSERT INTO `wp_gf_form_view` VALUES("24956", "1", "2016-01-23 01:26:38", "23.80.97.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("24957", "3", "2016-01-23 02:01:44", "51.255.65.42", "138");
INSERT INTO `wp_gf_form_view` VALUES("24958", "8", "2016-01-23 02:01:44", "51.255.65.42", "17");
INSERT INTO `wp_gf_form_view` VALUES("24959", "3", "2016-01-23 03:05:47", "157.55.39.214", "152");
INSERT INTO `wp_gf_form_view` VALUES("24960", "8", "2016-01-23 03:05:47", "157.55.39.214", "20");
INSERT INTO `wp_gf_form_view` VALUES("24961", "3", "2016-01-23 04:00:10", "202.46.51.204", "184");
INSERT INTO `wp_gf_form_view` VALUES("24962", "8", "2016-01-23 04:00:10", "202.46.51.204", "23");
INSERT INTO `wp_gf_form_view` VALUES("24963", "3", "2016-01-23 05:01:04", "202.46.51.106", "178");
INSERT INTO `wp_gf_form_view` VALUES("24964", "8", "2016-01-23 05:01:04", "202.46.51.106", "22");
INSERT INTO `wp_gf_form_view` VALUES("24965", "3", "2016-01-23 06:01:56", "202.46.53.151", "439");
INSERT INTO `wp_gf_form_view` VALUES("24966", "8", "2016-01-23 06:01:56", "202.46.53.151", "57");
INSERT INTO `wp_gf_form_view` VALUES("24967", "2", "2016-01-23 06:16:37", "195.154.146.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("24968", "3", "2016-01-23 07:02:49", "202.46.50.90", "100");
INSERT INTO `wp_gf_form_view` VALUES("24969", "8", "2016-01-23 07:02:49", "202.46.50.90", "14");
INSERT INTO `wp_gf_form_view` VALUES("24970", "3", "2016-01-23 08:01:02", "207.46.13.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("24971", "8", "2016-01-23 08:01:02", "207.46.13.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("24972", "9", "2016-01-23 08:06:43", "217.69.133.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("24973", "2", "2016-01-23 09:32:35", "216.158.206.88", "4");
INSERT INTO `wp_gf_form_view` VALUES("24974", "3", "2016-01-23 09:32:35", "216.158.206.88", "82");
INSERT INTO `wp_gf_form_view` VALUES("24975", "8", "2016-01-23 09:32:35", "216.158.206.88", "10");
INSERT INTO `wp_gf_form_view` VALUES("24976", "9", "2016-01-23 09:41:51", "217.69.133.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("24977", "3", "2016-01-23 10:17:34", "77.75.79.119", "31");
INSERT INTO `wp_gf_form_view` VALUES("24978", "8", "2016-01-23 10:17:34", "77.75.79.119", "4");
INSERT INTO `wp_gf_form_view` VALUES("24979", "3", "2016-01-23 11:16:10", "217.69.133.219", "25");
INSERT INTO `wp_gf_form_view` VALUES("24980", "8", "2016-01-23 11:16:10", "217.69.133.219", "3");
INSERT INTO `wp_gf_form_view` VALUES("24981", "6", "2016-01-23 11:16:27", "217.69.133.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("24982", "3", "2016-01-23 12:17:40", "109.162.76.7", "40");
INSERT INTO `wp_gf_form_view` VALUES("24983", "8", "2016-01-23 12:17:40", "109.162.76.7", "5");
INSERT INTO `wp_gf_form_view` VALUES("24984", "3", "2016-01-23 14:35:13", "66.249.74.106", "9");
INSERT INTO `wp_gf_form_view` VALUES("24985", "8", "2016-01-23 14:35:13", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("24986", "3", "2016-01-23 15:04:47", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("24987", "8", "2016-01-23 15:04:47", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("24988", "3", "2016-01-23 16:05:03", "207.46.13.161", "140");
INSERT INTO `wp_gf_form_view` VALUES("24989", "8", "2016-01-23 16:05:03", "207.46.13.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("24990", "3", "2016-01-23 17:02:35", "95.213.143.103", "84");
INSERT INTO `wp_gf_form_view` VALUES("24991", "8", "2016-01-23 17:02:35", "95.213.143.103", "10");
INSERT INTO `wp_gf_form_view` VALUES("24992", "3", "2016-01-23 18:21:57", "66.249.74.104", "34");
INSERT INTO `wp_gf_form_view` VALUES("24993", "8", "2016-01-23 18:21:57", "66.249.74.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("24994", "2", "2016-01-23 18:53:16", "51.255.65.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("24995", "3", "2016-01-23 19:08:13", "66.249.74.102", "41");
INSERT INTO `wp_gf_form_view` VALUES("24996", "8", "2016-01-23 19:08:13", "66.249.74.102", "6");
INSERT INTO `wp_gf_form_view` VALUES("24997", "3", "2016-01-23 20:48:22", "69.12.75.108", "34");
INSERT INTO `wp_gf_form_view` VALUES("24998", "8", "2016-01-23 20:48:23", "69.12.75.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("24999", "3", "2016-01-23 21:12:56", "68.180.229.161", "33");
INSERT INTO `wp_gf_form_view` VALUES("25000", "8", "2016-01-23 21:12:56", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("25001", "3", "2016-01-23 22:16:05", "40.77.167.103", "257");
INSERT INTO `wp_gf_form_view` VALUES("25002", "8", "2016-01-23 22:16:05", "40.77.167.103", "32");
INSERT INTO `wp_gf_form_view` VALUES("25003", "2", "2016-01-23 22:32:04", "151.73.211.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("25004", "3", "2016-01-23 23:07:49", "66.249.74.104", "164");
INSERT INTO `wp_gf_form_view` VALUES("25005", "8", "2016-01-23 23:07:49", "66.249.74.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("25006", "1", "2016-01-23 23:08:08", "207.46.13.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("25007", "1", "2016-01-24 00:20:40", "96.44.172.66", "4");
INSERT INTO `wp_gf_form_view` VALUES("25008", "3", "2016-01-24 00:20:40", "96.44.172.66", "120");
INSERT INTO `wp_gf_form_view` VALUES("25009", "8", "2016-01-24 00:20:42", "96.44.172.66", "15");
INSERT INTO `wp_gf_form_view` VALUES("25010", "7", "2016-01-24 00:53:52", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("25011", "3", "2016-01-24 01:08:35", "207.46.13.48", "344");
INSERT INTO `wp_gf_form_view` VALUES("25012", "8", "2016-01-24 01:08:35", "207.46.13.48", "44");
INSERT INTO `wp_gf_form_view` VALUES("25013", "1", "2016-01-24 01:15:42", "24.244.23.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("25014", "2", "2016-01-24 01:20:25", "70.35.205.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("25015", "3", "2016-01-24 02:44:44", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("25016", "8", "2016-01-24 02:44:44", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("25017", "3", "2016-01-24 03:05:21", "207.46.13.48", "298");
INSERT INTO `wp_gf_form_view` VALUES("25018", "8", "2016-01-24 03:05:21", "207.46.13.48", "38");
INSERT INTO `wp_gf_form_view` VALUES("25019", "9", "2016-01-24 03:33:30", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25020", "2", "2016-01-24 03:44:14", "70.35.205.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("25021", "3", "2016-01-24 04:27:00", "188.215.22.51", "74");
INSERT INTO `wp_gf_form_view` VALUES("25022", "8", "2016-01-24 04:27:00", "188.215.22.51", "9");
INSERT INTO `wp_gf_form_view` VALUES("25023", "3", "2016-01-24 06:04:40", "46.119.119.70", "143");
INSERT INTO `wp_gf_form_view` VALUES("25024", "3", "2016-01-24 06:04:40", "46.119.119.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("25025", "8", "2016-01-24 06:04:40", "46.119.119.70", "17");
INSERT INTO `wp_gf_form_view` VALUES("25026", "8", "2016-01-24 06:04:40", "46.119.119.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("25027", "9", "2016-01-24 06:49:50", "207.46.13.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("25028", "3", "2016-01-24 07:07:54", "51.255.65.88", "16");
INSERT INTO `wp_gf_form_view` VALUES("25029", "8", "2016-01-24 07:07:54", "51.255.65.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("25030", "3", "2016-01-24 08:00:26", "173.232.118.114", "98");
INSERT INTO `wp_gf_form_view` VALUES("25031", "8", "2016-01-24 08:00:26", "173.232.118.114", "13");
INSERT INTO `wp_gf_form_view` VALUES("25032", "3", "2016-01-24 09:04:34", "207.46.13.170", "23");
INSERT INTO `wp_gf_form_view` VALUES("25033", "8", "2016-01-24 09:04:34", "207.46.13.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("25034", "3", "2016-01-24 10:23:44", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("25035", "8", "2016-01-24 10:23:44", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("25036", "3", "2016-01-24 11:03:50", "51.255.65.62", "40");
INSERT INTO `wp_gf_form_view` VALUES("25037", "8", "2016-01-24 11:03:50", "51.255.65.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("25038", "2", "2016-01-24 11:11:59", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("25039", "3", "2016-01-24 12:03:38", "70.35.205.34", "424");
INSERT INTO `wp_gf_form_view` VALUES("25040", "8", "2016-01-24 12:03:38", "70.35.205.34", "52");
INSERT INTO `wp_gf_form_view` VALUES("25041", "2", "2016-01-24 12:04:29", "70.35.205.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("25042", "3", "2016-01-24 13:08:30", "178.137.85.56", "131");
INSERT INTO `wp_gf_form_view` VALUES("25043", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25044", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25045", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25046", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25047", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25048", "8", "2016-01-24 13:08:30", "178.137.85.56", "12");
INSERT INTO `wp_gf_form_view` VALUES("25049", "8", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25050", "8", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25051", "8", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25052", "8", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25053", "8", "2016-01-24 13:08:31", "178.137.85.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("25054", "3", "2016-01-24 14:29:13", "178.137.85.56", "48");
INSERT INTO `wp_gf_form_view` VALUES("25055", "8", "2016-01-24 14:29:13", "178.137.85.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("25056", "3", "2016-01-24 15:09:02", "66.90.94.130", "74");
INSERT INTO `wp_gf_form_view` VALUES("25057", "8", "2016-01-24 15:09:02", "66.90.94.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("25058", "3", "2016-01-24 16:55:21", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("25059", "8", "2016-01-24 16:55:22", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("25060", "3", "2016-01-24 17:03:35", "68.180.229.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("25061", "8", "2016-01-24 17:03:35", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("25062", "3", "2016-01-24 18:22:42", "66.249.74.106", "17");
INSERT INTO `wp_gf_form_view` VALUES("25063", "8", "2016-01-24 18:22:42", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("25064", "3", "2016-01-24 19:02:36", "62.210.162.184", "344");
INSERT INTO `wp_gf_form_view` VALUES("25065", "8", "2016-01-24 19:02:36", "62.210.162.184", "42");
INSERT INTO `wp_gf_form_view` VALUES("25066", "2", "2016-01-24 19:06:04", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25067", "3", "2016-01-24 20:37:10", "51.255.65.37", "33");
INSERT INTO `wp_gf_form_view` VALUES("25068", "8", "2016-01-24 20:37:11", "51.255.65.37", "4");
INSERT INTO `wp_gf_form_view` VALUES("25069", "3", "2016-01-24 21:25:49", "24.108.76.63", "48");
INSERT INTO `wp_gf_form_view` VALUES("25070", "8", "2016-01-24 21:25:49", "24.108.76.63", "6");
INSERT INTO `wp_gf_form_view` VALUES("25071", "3", "2016-01-24 22:13:20", "51.255.65.81", "41");
INSERT INTO `wp_gf_form_view` VALUES("25072", "8", "2016-01-24 22:13:21", "51.255.65.81", "6");
INSERT INTO `wp_gf_form_view` VALUES("25073", "3", "2016-01-24 23:05:29", "216.158.200.101", "253");
INSERT INTO `wp_gf_form_view` VALUES("25074", "8", "2016-01-24 23:05:29", "216.158.200.101", "33");
INSERT INTO `wp_gf_form_view` VALUES("25075", "2", "2016-01-24 23:12:03", "146.185.234.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("25076", "1", "2016-01-24 23:21:42", "91.200.12.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("25077", "3", "2016-01-25 00:12:01", "68.180.229.161", "93");
INSERT INTO `wp_gf_form_view` VALUES("25078", "8", "2016-01-25 00:12:01", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("25079", "2", "2016-01-25 01:10:39", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25080", "3", "2016-01-25 01:10:39", "68.180.229.161", "187");
INSERT INTO `wp_gf_form_view` VALUES("25081", "8", "2016-01-25 01:10:39", "68.180.229.161", "26");
INSERT INTO `wp_gf_form_view` VALUES("25082", "6", "2016-01-25 01:21:55", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("25083", "5", "2016-01-25 01:22:28", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("25084", "3", "2016-01-25 02:11:21", "40.77.167.103", "64");
INSERT INTO `wp_gf_form_view` VALUES("25085", "8", "2016-01-25 02:11:21", "40.77.167.103", "8");
INSERT INTO `wp_gf_form_view` VALUES("25086", "3", "2016-01-25 03:05:22", "209.89.94.210", "213");
INSERT INTO `wp_gf_form_view` VALUES("25087", "8", "2016-01-25 03:05:22", "209.89.94.210", "26");
INSERT INTO `wp_gf_form_view` VALUES("25088", "1", "2016-01-25 03:15:05", "24.68.44.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("25089", "3", "2016-01-25 04:04:51", "66.249.74.104", "361");
INSERT INTO `wp_gf_form_view` VALUES("25090", "8", "2016-01-25 04:04:51", "66.249.74.104", "45");
INSERT INTO `wp_gf_form_view` VALUES("25091", "1", "2016-01-25 04:28:54", "198.12.66.154", "9");
INSERT INTO `wp_gf_form_view` VALUES("25092", "2", "2016-01-25 04:44:25", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25093", "3", "2016-01-25 05:03:39", "69.12.75.108", "185");
INSERT INTO `wp_gf_form_view` VALUES("25094", "8", "2016-01-25 05:03:39", "69.12.75.108", "23");
INSERT INTO `wp_gf_form_view` VALUES("25095", "3", "2016-01-25 06:01:57", "202.46.56.90", "454");
INSERT INTO `wp_gf_form_view` VALUES("25096", "8", "2016-01-25 06:01:57", "202.46.56.90", "57");
INSERT INTO `wp_gf_form_view` VALUES("25097", "2", "2016-01-25 06:11:51", "96.91.131.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("25098", "1", "2016-01-25 06:20:26", "172.245.10.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("25099", "3", "2016-01-25 07:00:04", "202.46.48.138", "272");
INSERT INTO `wp_gf_form_view` VALUES("25100", "8", "2016-01-25 07:00:04", "202.46.48.138", "35");
INSERT INTO `wp_gf_form_view` VALUES("25101", "3", "2016-01-25 08:02:01", "202.46.51.21", "184");
INSERT INTO `wp_gf_form_view` VALUES("25102", "8", "2016-01-25 08:02:01", "202.46.51.21", "25");
INSERT INTO `wp_gf_form_view` VALUES("25103", "1", "2016-01-25 08:05:21", "66.151.86.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("25104", "3", "2016-01-25 09:02:41", "202.46.57.185", "358");
INSERT INTO `wp_gf_form_view` VALUES("25105", "8", "2016-01-25 09:02:41", "202.46.57.185", "45");
INSERT INTO `wp_gf_form_view` VALUES("25106", "1", "2016-01-25 09:47:51", "216.158.220.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25107", "3", "2016-01-25 10:00:55", "202.46.54.160", "329");
INSERT INTO `wp_gf_form_view` VALUES("25108", "8", "2016-01-25 10:00:55", "202.46.54.160", "41");
INSERT INTO `wp_gf_form_view` VALUES("25109", "1", "2016-01-25 10:34:50", "192.126.168.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("25110", "3", "2016-01-25 11:02:54", "202.46.56.116", "178");
INSERT INTO `wp_gf_form_view` VALUES("25111", "8", "2016-01-25 11:02:54", "202.46.56.116", "24");
INSERT INTO `wp_gf_form_view` VALUES("25112", "8", "2016-01-25 12:04:51", "202.46.52.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("25113", "3", "2016-01-25 12:04:51", "202.46.52.162", "226");
INSERT INTO `wp_gf_form_view` VALUES("25114", "3", "2016-01-25 13:02:57", "202.46.53.50", "2921");
INSERT INTO `wp_gf_form_view` VALUES("25115", "8", "2016-01-25 13:02:57", "202.46.53.50", "372");
INSERT INTO `wp_gf_form_view` VALUES("25116", "1", "2016-01-25 13:17:11", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("25117", "5", "2016-01-25 13:24:14", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("25118", "6", "2016-01-25 13:33:09", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("25119", "9", "2016-01-25 13:41:29", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("25120", "3", "2016-01-25 14:00:00", "45.55.235.146", "2238");
INSERT INTO `wp_gf_form_view` VALUES("25121", "8", "2016-01-25 14:00:01", "45.55.235.146", "286");
INSERT INTO `wp_gf_form_view` VALUES("25122", "2", "2016-01-25 14:19:54", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("25123", "1", "2016-01-25 14:26:18", "179.61.138.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("25124", "3", "2016-01-25 15:02:59", "64.114.222.223", "233");
INSERT INTO `wp_gf_form_view` VALUES("25125", "8", "2016-01-25 15:03:00", "64.114.222.223", "30");
INSERT INTO `wp_gf_form_view` VALUES("25126", "3", "2016-01-25 16:01:08", "202.46.49.94", "211");
INSERT INTO `wp_gf_form_view` VALUES("25127", "8", "2016-01-25 16:01:08", "202.46.49.94", "29");
INSERT INTO `wp_gf_form_view` VALUES("25128", "3", "2016-01-25 17:03:06", "202.46.52.175", "234");
INSERT INTO `wp_gf_form_view` VALUES("25129", "8", "2016-01-25 17:03:06", "202.46.52.175", "29");
INSERT INTO `wp_gf_form_view` VALUES("25130", "3", "2016-01-25 18:01:09", "5.9.98.130", "4248");
INSERT INTO `wp_gf_form_view` VALUES("25131", "8", "2016-01-25 18:01:09", "5.9.98.130", "535");
INSERT INTO `wp_gf_form_view` VALUES("25132", "2", "2016-01-25 18:01:23", "172.245.107.251", "3");
INSERT INTO `wp_gf_form_view` VALUES("25133", "1", "2016-01-25 18:04:02", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("25134", "5", "2016-01-25 18:07:44", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("25135", "9", "2016-01-25 18:09:09", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("25136", "6", "2016-01-25 18:14:06", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("25137", "3", "2016-01-25 19:00:00", "5.9.98.130", "4319");
INSERT INTO `wp_gf_form_view` VALUES("25138", "8", "2016-01-25 19:00:00", "5.9.98.130", "566");
INSERT INTO `wp_gf_form_view` VALUES("25139", "3", "2016-01-25 20:00:00", "5.9.98.130", "3168");
INSERT INTO `wp_gf_form_view` VALUES("25140", "8", "2016-01-25 20:00:04", "5.9.98.130", "403");
INSERT INTO `wp_gf_form_view` VALUES("25141", "3", "2016-01-25 21:03:13", "202.46.50.137", "5537");
INSERT INTO `wp_gf_form_view` VALUES("25142", "8", "2016-01-25 21:03:13", "202.46.50.137", "729");
INSERT INTO `wp_gf_form_view` VALUES("25143", "3", "2016-01-25 22:00:00", "5.9.98.130", "5243");
INSERT INTO `wp_gf_form_view` VALUES("25144", "8", "2016-01-25 22:00:01", "5.9.98.130", "660");
INSERT INTO `wp_gf_form_view` VALUES("25145", "3", "2016-01-25 23:03:17", "202.46.56.15", "246");
INSERT INTO `wp_gf_form_view` VALUES("25146", "8", "2016-01-25 23:03:18", "202.46.56.15", "30");
INSERT INTO `wp_gf_form_view` VALUES("25147", "3", "2016-01-26 00:01:23", "202.46.58.136", "5077");
INSERT INTO `wp_gf_form_view` VALUES("25148", "8", "2016-01-26 00:01:23", "202.46.58.136", "565");
INSERT INTO `wp_gf_form_view` VALUES("25149", "3", "2016-01-26 01:00:00", "66.249.74.104", "6116");
INSERT INTO `wp_gf_form_view` VALUES("25150", "8", "2016-01-26 01:00:00", "5.9.98.130", "908");
INSERT INTO `wp_gf_form_view` VALUES("25151", "2", "2016-01-26 01:14:58", "70.35.203.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("25152", "3", "2016-01-26 02:00:00", "5.9.98.130", "5883");
INSERT INTO `wp_gf_form_view` VALUES("25153", "8", "2016-01-26 02:00:06", "5.9.98.130", "725");
INSERT INTO `wp_gf_form_view` VALUES("25154", "8", "2016-01-26 03:00:02", "5.9.98.130", "669");
INSERT INTO `wp_gf_form_view` VALUES("25155", "3", "2016-01-26 03:00:03", "5.9.98.130", "5200");
INSERT INTO `wp_gf_form_view` VALUES("25156", "3", "2016-01-26 04:00:00", "61.131.85.107", "114");
INSERT INTO `wp_gf_form_view` VALUES("25157", "8", "2016-01-26 04:00:00", "61.131.85.107", "14");
INSERT INTO `wp_gf_form_view` VALUES("25158", "3", "2016-01-26 05:01:48", "96.50.99.2", "114");
INSERT INTO `wp_gf_form_view` VALUES("25159", "8", "2016-01-26 05:01:48", "96.50.99.2", "14");
INSERT INTO `wp_gf_form_view` VALUES("25160", "9", "2016-01-26 05:13:40", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("25161", "3", "2016-01-26 06:03:20", "68.180.229.161", "33");
INSERT INTO `wp_gf_form_view` VALUES("25162", "8", "2016-01-26 06:03:20", "68.180.229.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("25163", "3", "2016-01-26 08:08:39", "207.46.13.176", "431");
INSERT INTO `wp_gf_form_view` VALUES("25164", "8", "2016-01-26 08:08:39", "207.46.13.176", "53");
INSERT INTO `wp_gf_form_view` VALUES("25165", "6", "2016-01-26 08:09:23", "157.55.39.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("25166", "1", "2016-01-26 08:32:31", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25167", "3", "2016-01-26 09:16:02", "66.249.74.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("25168", "8", "2016-01-26 09:16:02", "66.249.74.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("25169", "9", "2016-01-26 09:58:24", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25170", "3", "2016-01-26 10:17:44", "78.149.175.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("25171", "8", "2016-01-26 10:17:44", "78.149.175.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25172", "1", "2016-01-26 11:04:01", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25173", "3", "2016-01-26 11:04:01", "96.44.172.66", "172");
INSERT INTO `wp_gf_form_view` VALUES("25174", "8", "2016-01-26 11:04:02", "96.44.172.66", "20");
INSERT INTO `wp_gf_form_view` VALUES("25175", "2", "2016-01-26 11:08:16", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("25176", "3", "2016-01-26 12:19:32", "144.76.155.8", "296");
INSERT INTO `wp_gf_form_view` VALUES("25177", "8", "2016-01-26 12:19:33", "144.76.155.8", "37");
INSERT INTO `wp_gf_form_view` VALUES("25178", "2", "2016-01-26 12:21:35", "104.236.220.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("25179", "3", "2016-01-26 13:00:08", "104.247.21.230", "160");
INSERT INTO `wp_gf_form_view` VALUES("25180", "8", "2016-01-26 13:00:08", "104.247.21.230", "19");
INSERT INTO `wp_gf_form_view` VALUES("25181", "1", "2016-01-26 13:30:50", "24.68.16.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("25182", "3", "2016-01-26 14:02:43", "66.249.74.106", "33");
INSERT INTO `wp_gf_form_view` VALUES("25183", "8", "2016-01-26 14:02:43", "66.249.74.106", "4");
INSERT INTO `wp_gf_form_view` VALUES("25184", "3", "2016-01-26 15:04:43", "66.249.74.104", "34");
INSERT INTO `wp_gf_form_view` VALUES("25185", "8", "2016-01-26 15:04:43", "66.249.74.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("25186", "3", "2016-01-26 16:06:37", "96.54.214.166", "175");
INSERT INTO `wp_gf_form_view` VALUES("25187", "8", "2016-01-26 16:06:37", "96.54.214.166", "20");
INSERT INTO `wp_gf_form_view` VALUES("25188", "3", "2016-01-26 17:01:34", "198.73.190.254", "428");
INSERT INTO `wp_gf_form_view` VALUES("25189", "8", "2016-01-26 17:01:34", "198.73.190.254", "52");
INSERT INTO `wp_gf_form_view` VALUES("25190", "2", "2016-01-26 17:45:47", "184.107.228.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("25191", "3", "2016-01-26 18:13:38", "68.180.229.161", "88");
INSERT INTO `wp_gf_form_view` VALUES("25192", "8", "2016-01-26 18:13:38", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("25193", "3", "2016-01-26 19:07:54", "62.210.162.184", "74");
INSERT INTO `wp_gf_form_view` VALUES("25194", "8", "2016-01-26 19:07:54", "62.210.162.184", "9");
INSERT INTO `wp_gf_form_view` VALUES("25195", "3", "2016-01-26 20:00:58", "68.180.229.161", "136");
INSERT INTO `wp_gf_form_view` VALUES("25196", "8", "2016-01-26 20:00:58", "68.180.229.161", "19");
INSERT INTO `wp_gf_form_view` VALUES("25197", "3", "2016-01-26 21:02:21", "96.50.22.88", "155");
INSERT INTO `wp_gf_form_view` VALUES("25198", "8", "2016-01-26 21:02:21", "96.50.22.88", "19");
INSERT INTO `wp_gf_form_view` VALUES("25199", "3", "2016-01-26 22:13:52", "202.46.52.171", "25");
INSERT INTO `wp_gf_form_view` VALUES("25200", "8", "2016-01-26 22:13:53", "202.46.52.171", "3");
INSERT INTO `wp_gf_form_view` VALUES("25201", "3", "2016-01-26 23:02:43", "62.210.162.184", "38");
INSERT INTO `wp_gf_form_view` VALUES("25202", "8", "2016-01-26 23:02:43", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("25203", "3", "2016-01-27 00:06:34", "68.180.229.161", "46");
INSERT INTO `wp_gf_form_view` VALUES("25204", "8", "2016-01-27 00:06:34", "68.180.229.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("25205", "3", "2016-01-27 01:01:19", "202.46.52.73", "24");
INSERT INTO `wp_gf_form_view` VALUES("25206", "8", "2016-01-27 01:01:19", "202.46.52.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("25207", "3", "2016-01-27 02:08:18", "202.46.50.139", "133");
INSERT INTO `wp_gf_form_view` VALUES("25208", "8", "2016-01-27 02:08:18", "202.46.50.139", "17");
INSERT INTO `wp_gf_form_view` VALUES("25209", "3", "2016-01-27 03:03:10", "68.180.229.161", "134");
INSERT INTO `wp_gf_form_view` VALUES("25210", "8", "2016-01-27 03:03:10", "68.180.229.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("25211", "3", "2016-01-27 04:22:15", "202.46.58.16", "24");
INSERT INTO `wp_gf_form_view` VALUES("25212", "8", "2016-01-27 04:22:15", "202.46.58.16", "3");
INSERT INTO `wp_gf_form_view` VALUES("25213", "3", "2016-01-27 05:03:28", "202.46.56.196", "170");
INSERT INTO `wp_gf_form_view` VALUES("25214", "8", "2016-01-27 05:03:28", "202.46.56.196", "21");
INSERT INTO `wp_gf_form_view` VALUES("25215", "3", "2016-01-27 06:01:23", "202.46.53.47", "163");
INSERT INTO `wp_gf_form_view` VALUES("25216", "8", "2016-01-27 06:01:23", "202.46.53.47", "19");
INSERT INTO `wp_gf_form_view` VALUES("25217", "3", "2016-01-27 07:03:12", "202.46.53.118", "195");
INSERT INTO `wp_gf_form_view` VALUES("25218", "8", "2016-01-27 07:03:12", "202.46.53.118", "26");
INSERT INTO `wp_gf_form_view` VALUES("25219", "3", "2016-01-27 08:01:05", "202.46.54.168", "202");
INSERT INTO `wp_gf_form_view` VALUES("25220", "8", "2016-01-27 08:01:05", "202.46.54.168", "26");
INSERT INTO `wp_gf_form_view` VALUES("25221", "3", "2016-01-27 09:02:54", "202.46.53.151", "325");
INSERT INTO `wp_gf_form_view` VALUES("25222", "8", "2016-01-27 09:02:54", "202.46.53.151", "41");
INSERT INTO `wp_gf_form_view` VALUES("25223", "3", "2016-01-27 10:00:48", "202.46.54.31", "210");
INSERT INTO `wp_gf_form_view` VALUES("25224", "8", "2016-01-27 10:00:48", "202.46.54.31", "28");
INSERT INTO `wp_gf_form_view` VALUES("25225", "3", "2016-01-27 11:02:35", "202.46.51.162", "177");
INSERT INTO `wp_gf_form_view` VALUES("25226", "8", "2016-01-27 11:02:36", "202.46.51.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("25227", "3", "2016-01-27 12:00:30", "202.46.56.73", "245");
INSERT INTO `wp_gf_form_view` VALUES("25228", "8", "2016-01-27 12:00:31", "202.46.56.73", "32");
INSERT INTO `wp_gf_form_view` VALUES("25229", "3", "2016-01-27 13:02:17", "202.46.56.192", "230");
INSERT INTO `wp_gf_form_view` VALUES("25230", "8", "2016-01-27 13:02:17", "202.46.56.192", "30");
INSERT INTO `wp_gf_form_view` VALUES("25231", "1", "2016-01-27 13:17:33", "62.210.139.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("25232", "3", "2016-01-27 14:00:15", "202.46.54.95", "230");
INSERT INTO `wp_gf_form_view` VALUES("25233", "8", "2016-01-27 14:00:15", "202.46.54.95", "28");
INSERT INTO `wp_gf_form_view` VALUES("25234", "3", "2016-01-27 15:02:01", "202.46.55.16", "236");
INSERT INTO `wp_gf_form_view` VALUES("25235", "8", "2016-01-27 15:02:01", "202.46.55.16", "30");
INSERT INTO `wp_gf_form_view` VALUES("25236", "3", "2016-01-27 16:03:48", "202.46.51.36", "240");
INSERT INTO `wp_gf_form_view` VALUES("25237", "8", "2016-01-27 16:03:48", "202.46.51.36", "33");
INSERT INTO `wp_gf_form_view` VALUES("25238", "3", "2016-01-27 17:01:09", "24.68.134.134", "294");
INSERT INTO `wp_gf_form_view` VALUES("25239", "8", "2016-01-27 17:01:09", "24.68.134.134", "38");
INSERT INTO `wp_gf_form_view` VALUES("25240", "3", "2016-01-27 18:03:30", "202.46.56.17", "248");
INSERT INTO `wp_gf_form_view` VALUES("25241", "8", "2016-01-27 18:03:31", "202.46.56.17", "32");
INSERT INTO `wp_gf_form_view` VALUES("25242", "3", "2016-01-27 19:00:41", "66.249.74.102", "207");
INSERT INTO `wp_gf_form_view` VALUES("25243", "8", "2016-01-27 19:00:41", "66.249.74.102", "27");
INSERT INTO `wp_gf_form_view` VALUES("25244", "1", "2016-01-27 19:03:58", "192.240.106.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("25245", "3", "2016-01-27 20:03:13", "202.46.48.198", "231");
INSERT INTO `wp_gf_form_view` VALUES("25246", "8", "2016-01-27 20:03:13", "202.46.48.198", "30");
INSERT INTO `wp_gf_form_view` VALUES("25247", "3", "2016-01-27 21:01:08", "202.46.54.106", "382");
INSERT INTO `wp_gf_form_view` VALUES("25248", "8", "2016-01-27 21:01:08", "202.46.54.106", "51");
INSERT INTO `wp_gf_form_view` VALUES("25249", "2", "2016-01-27 21:47:50", "146.185.234.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("25250", "3", "2016-01-27 22:00:27", "172.219.199.236", "203");
INSERT INTO `wp_gf_form_view` VALUES("25251", "8", "2016-01-27 22:00:27", "172.219.199.236", "27");
INSERT INTO `wp_gf_form_view` VALUES("25252", "3", "2016-01-27 23:00:50", "202.46.56.73", "272");
INSERT INTO `wp_gf_form_view` VALUES("25253", "8", "2016-01-27 23:00:50", "202.46.56.73", "35");
INSERT INTO `wp_gf_form_view` VALUES("25254", "3", "2016-01-28 00:02:37", "202.46.49.116", "201");
INSERT INTO `wp_gf_form_view` VALUES("25255", "8", "2016-01-28 00:02:37", "202.46.49.116", "26");
INSERT INTO `wp_gf_form_view` VALUES("25256", "1", "2016-01-28 00:16:40", "184.66.236.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("25257", "8", "2016-01-28 01:01:41", "202.46.56.17", "14");
INSERT INTO `wp_gf_form_view` VALUES("25258", "3", "2016-01-28 01:01:42", "202.46.56.17", "98");
INSERT INTO `wp_gf_form_view` VALUES("25259", "3", "2016-01-28 02:05:10", "202.46.48.130", "193");
INSERT INTO `wp_gf_form_view` VALUES("25260", "8", "2016-01-28 02:05:10", "202.46.48.130", "25");
INSERT INTO `wp_gf_form_view` VALUES("25261", "1", "2016-01-28 02:56:27", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25262", "3", "2016-01-28 03:03:05", "202.46.58.95", "190");
INSERT INTO `wp_gf_form_view` VALUES("25263", "8", "2016-01-28 03:03:05", "202.46.58.95", "25");
INSERT INTO `wp_gf_form_view` VALUES("25264", "1", "2016-01-28 03:52:22", "198.12.66.172", "4");
INSERT INTO `wp_gf_form_view` VALUES("25265", "1", "2016-01-28 04:00:33", "66.34.147.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("25266", "3", "2016-01-28 04:00:33", "66.34.147.34", "61");
INSERT INTO `wp_gf_form_view` VALUES("25267", "8", "2016-01-28 04:00:34", "66.34.147.34", "9");
INSERT INTO `wp_gf_form_view` VALUES("25268", "3", "2016-01-28 05:06:01", "68.180.229.161", "105");
INSERT INTO `wp_gf_form_view` VALUES("25269", "8", "2016-01-28 05:06:01", "68.180.229.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("25270", "1", "2016-01-28 05:41:25", "46.166.145.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("25271", "3", "2016-01-28 06:26:40", "184.107.228.170", "1022");
INSERT INTO `wp_gf_form_view` VALUES("25272", "8", "2016-01-28 06:26:40", "184.107.228.170", "130");
INSERT INTO `wp_gf_form_view` VALUES("25273", "2", "2016-01-28 06:27:16", "184.107.228.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("25274", "1", "2016-01-28 06:53:52", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("25275", "5", "2016-01-28 07:00:01", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("25276", "3", "2016-01-28 07:00:01", "162.243.251.166", "3273");
INSERT INTO `wp_gf_form_view` VALUES("25277", "8", "2016-01-28 07:00:02", "162.243.251.166", "413");
INSERT INTO `wp_gf_form_view` VALUES("25278", "6", "2016-01-28 07:10:07", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("25279", "9", "2016-01-28 07:18:17", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("25280", "1", "2016-01-28 07:24:48", "66.151.86.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("25281", "2", "2016-01-28 07:56:37", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("25282", "3", "2016-01-28 08:00:02", "162.243.251.166", "661");
INSERT INTO `wp_gf_form_view` VALUES("25283", "8", "2016-01-28 08:00:02", "162.243.251.166", "86");
INSERT INTO `wp_gf_form_view` VALUES("25284", "1", "2016-01-28 09:05:50", "69.25.236.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("25285", "3", "2016-01-28 09:05:50", "69.25.236.40", "32");
INSERT INTO `wp_gf_form_view` VALUES("25286", "8", "2016-01-28 09:05:51", "69.25.236.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("25287", "3", "2016-01-28 10:00:08", "51.255.65.64", "49");
INSERT INTO `wp_gf_form_view` VALUES("25288", "8", "2016-01-28 10:00:08", "51.255.65.64", "6");
INSERT INTO `wp_gf_form_view` VALUES("25289", "6", "2016-01-28 10:05:14", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25290", "3", "2016-01-28 11:07:46", "94.23.45.37", "24");
INSERT INTO `wp_gf_form_view` VALUES("25291", "8", "2016-01-28 11:07:46", "94.23.45.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("25292", "5", "2016-01-28 11:27:34", "85.10.211.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("25293", "3", "2016-01-28 12:19:19", "94.23.45.37", "40");
INSERT INTO `wp_gf_form_view` VALUES("25294", "8", "2016-01-28 12:19:19", "94.23.45.37", "5");
INSERT INTO `wp_gf_form_view` VALUES("25295", "3", "2016-01-28 13:27:46", "207.46.13.155", "17");
INSERT INTO `wp_gf_form_view` VALUES("25296", "8", "2016-01-28 13:27:46", "207.46.13.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("25297", "3", "2016-01-28 14:04:51", "51.255.65.90", "48");
INSERT INTO `wp_gf_form_view` VALUES("25298", "8", "2016-01-28 14:04:51", "51.255.65.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("25299", "9", "2016-01-28 14:16:32", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25300", "3", "2016-01-28 15:20:18", "5.9.106.81", "32");
INSERT INTO `wp_gf_form_view` VALUES("25301", "8", "2016-01-28 15:20:18", "5.9.106.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("25302", "3", "2016-01-28 16:15:04", "24.66.129.53", "75");
INSERT INTO `wp_gf_form_view` VALUES("25303", "8", "2016-01-28 16:15:04", "24.66.129.53", "10");
INSERT INTO `wp_gf_form_view` VALUES("25304", "1", "2016-01-28 16:15:18", "24.66.129.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("25305", "3", "2016-01-28 17:04:15", "202.46.53.178", "109");
INSERT INTO `wp_gf_form_view` VALUES("25306", "8", "2016-01-28 17:04:16", "202.46.53.178", "13");
INSERT INTO `wp_gf_form_view` VALUES("25307", "3", "2016-01-28 18:05:39", "202.46.56.12", "495");
INSERT INTO `wp_gf_form_view` VALUES("25308", "8", "2016-01-28 18:05:39", "202.46.56.12", "62");
INSERT INTO `wp_gf_form_view` VALUES("25309", "9", "2016-01-28 18:26:42", "207.46.13.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("25310", "1", "2016-01-28 18:26:54", "207.46.13.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("25311", "7", "2016-01-28 18:27:16", "157.55.39.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("25312", "3", "2016-01-28 19:06:59", "202.46.52.147", "594");
INSERT INTO `wp_gf_form_view` VALUES("25313", "8", "2016-01-28 19:06:59", "202.46.52.147", "75");
INSERT INTO `wp_gf_form_view` VALUES("25314", "2", "2016-01-28 19:10:11", "173.10.99.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("25315", "6", "2016-01-28 19:52:59", "5.9.112.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("25316", "3", "2016-01-28 20:08:23", "202.46.51.133", "79");
INSERT INTO `wp_gf_form_view` VALUES("25317", "8", "2016-01-28 20:08:23", "202.46.51.133", "10");
INSERT INTO `wp_gf_form_view` VALUES("25318", "3", "2016-01-28 21:07:20", "184.66.240.53", "157");
INSERT INTO `wp_gf_form_view` VALUES("25319", "8", "2016-01-28 21:07:20", "184.66.240.53", "19");
INSERT INTO `wp_gf_form_view` VALUES("25320", "3", "2016-01-28 22:00:51", "202.46.52.174", "83");
INSERT INTO `wp_gf_form_view` VALUES("25321", "8", "2016-01-28 22:00:51", "202.46.52.174", "11");
INSERT INTO `wp_gf_form_view` VALUES("25322", "3", "2016-01-28 23:00:14", "184.66.252.102", "182");
INSERT INTO `wp_gf_form_view` VALUES("25323", "8", "2016-01-28 23:00:14", "184.66.252.102", "23");
INSERT INTO `wp_gf_form_view` VALUES("25324", "3", "2016-01-29 00:03:34", "202.46.55.143", "134");
INSERT INTO `wp_gf_form_view` VALUES("25325", "8", "2016-01-29 00:03:34", "202.46.55.143", "16");
INSERT INTO `wp_gf_form_view` VALUES("25326", "3", "2016-01-29 01:04:58", "202.46.55.16", "88");
INSERT INTO `wp_gf_form_view` VALUES("25327", "8", "2016-01-29 01:04:58", "202.46.55.16", "11");
INSERT INTO `wp_gf_form_view` VALUES("25328", "1", "2016-01-29 01:35:11", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25329", "3", "2016-01-29 02:06:18", "202.46.49.112", "128");
INSERT INTO `wp_gf_form_view` VALUES("25330", "8", "2016-01-29 02:06:18", "202.46.49.112", "17");
INSERT INTO `wp_gf_form_view` VALUES("25331", "1", "2016-01-29 02:10:13", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25332", "3", "2016-01-29 03:07:40", "202.46.49.63", "109");
INSERT INTO `wp_gf_form_view` VALUES("25333", "8", "2016-01-29 03:07:40", "202.46.49.63", "14");
INSERT INTO `wp_gf_form_view` VALUES("25334", "3", "2016-01-29 04:09:01", "202.46.49.142", "110");
INSERT INTO `wp_gf_form_view` VALUES("25335", "8", "2016-01-29 04:09:01", "202.46.49.142", "15");
INSERT INTO `wp_gf_form_view` VALUES("25336", "3", "2016-01-29 05:00:10", "202.46.56.182", "65");
INSERT INTO `wp_gf_form_view` VALUES("25337", "8", "2016-01-29 05:00:10", "202.46.56.182", "8");
INSERT INTO `wp_gf_form_view` VALUES("25338", "3", "2016-01-29 06:04:14", "66.249.74.102", "367");
INSERT INTO `wp_gf_form_view` VALUES("25339", "8", "2016-01-29 06:04:14", "66.249.74.102", "47");
INSERT INTO `wp_gf_form_view` VALUES("25340", "2", "2016-01-29 06:48:54", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25341", "3", "2016-01-29 07:05:59", "51.255.65.66", "79");
INSERT INTO `wp_gf_form_view` VALUES("25342", "8", "2016-01-29 07:05:59", "51.255.65.66", "10");
INSERT INTO `wp_gf_form_view` VALUES("25343", "3", "2016-01-29 08:46:45", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("25344", "8", "2016-01-29 08:46:46", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("25345", "3", "2016-01-29 09:15:04", "51.255.65.65", "47");
INSERT INTO `wp_gf_form_view` VALUES("25346", "8", "2016-01-29 09:15:06", "51.255.65.65", "5");
INSERT INTO `wp_gf_form_view` VALUES("25347", "3", "2016-01-29 10:03:02", "68.180.229.161", "82");
INSERT INTO `wp_gf_form_view` VALUES("25348", "8", "2016-01-29 10:03:05", "178.137.86.123", "10");
INSERT INTO `wp_gf_form_view` VALUES("25349", "3", "2016-01-29 11:55:48", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("25350", "8", "2016-01-29 11:55:48", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25351", "3", "2016-01-29 14:15:53", "66.249.74.106", "25");
INSERT INTO `wp_gf_form_view` VALUES("25352", "8", "2016-01-29 14:15:53", "66.249.74.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("25353", "3", "2016-01-29 15:29:38", "134.249.65.86", "31");
INSERT INTO `wp_gf_form_view` VALUES("25354", "3", "2016-01-29 15:29:38", "134.249.65.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("25355", "8", "2016-01-29 15:29:38", "134.249.65.86", "4");
INSERT INTO `wp_gf_form_view` VALUES("25356", "3", "2016-01-29 16:21:39", "66.249.74.106", "176");
INSERT INTO `wp_gf_form_view` VALUES("25357", "8", "2016-01-29 16:21:39", "66.249.74.106", "22");
INSERT INTO `wp_gf_form_view` VALUES("25358", "3", "2016-01-29 17:05:02", "202.46.55.176", "173");
INSERT INTO `wp_gf_form_view` VALUES("25359", "8", "2016-01-29 17:05:02", "202.46.55.176", "21");
INSERT INTO `wp_gf_form_view` VALUES("25360", "3", "2016-01-29 18:06:01", "131.137.245.208", "165");
INSERT INTO `wp_gf_form_view` VALUES("25361", "8", "2016-01-29 18:06:01", "131.137.245.208", "21");
INSERT INTO `wp_gf_form_view` VALUES("25362", "3", "2016-01-29 19:04:12", "202.46.50.120", "120");
INSERT INTO `wp_gf_form_view` VALUES("25363", "8", "2016-01-29 19:04:12", "202.46.50.120", "16");
INSERT INTO `wp_gf_form_view` VALUES("25364", "3", "2016-01-29 20:00:14", "68.180.229.161", "136");
INSERT INTO `wp_gf_form_view` VALUES("25365", "8", "2016-01-29 20:00:15", "68.180.229.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("25366", "1", "2016-01-29 20:18:41", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("25367", "3", "2016-01-29 21:00:41", "66.249.64.108", "101");
INSERT INTO `wp_gf_form_view` VALUES("25368", "8", "2016-01-29 21:00:41", "66.249.64.108", "13");
INSERT INTO `wp_gf_form_view` VALUES("25369", "3", "2016-01-29 22:06:36", "24.69.58.95", "71");
INSERT INTO `wp_gf_form_view` VALUES("25370", "8", "2016-01-29 22:06:36", "24.69.58.95", "9");
INSERT INTO `wp_gf_form_view` VALUES("25371", "3", "2016-01-29 23:02:03", "202.46.53.159", "120");
INSERT INTO `wp_gf_form_view` VALUES("25372", "8", "2016-01-29 23:02:03", "202.46.53.159", "15");
INSERT INTO `wp_gf_form_view` VALUES("25373", "3", "2016-01-30 00:06:58", "202.46.50.93", "54");
INSERT INTO `wp_gf_form_view` VALUES("25374", "8", "2016-01-30 00:06:58", "202.46.50.93", "6");
INSERT INTO `wp_gf_form_view` VALUES("25375", "3", "2016-01-30 01:01:04", "202.46.52.177", "265");
INSERT INTO `wp_gf_form_view` VALUES("25376", "8", "2016-01-30 01:01:04", "202.46.52.177", "35");
INSERT INTO `wp_gf_form_view` VALUES("25377", "2", "2016-01-30 01:34:05", "146.185.234.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("25378", "3", "2016-01-30 02:05:58", "202.46.48.195", "77");
INSERT INTO `wp_gf_form_view` VALUES("25379", "8", "2016-01-30 02:05:58", "202.46.48.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("25380", "3", "2016-01-30 03:00:04", "202.46.49.157", "319");
INSERT INTO `wp_gf_form_view` VALUES("25381", "8", "2016-01-30 03:00:04", "202.46.49.157", "41");
INSERT INTO `wp_gf_form_view` VALUES("25382", "2", "2016-01-30 03:52:57", "96.91.131.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("25383", "3", "2016-01-30 04:05:01", "202.46.52.105", "126");
INSERT INTO `wp_gf_form_view` VALUES("25384", "8", "2016-01-30 04:05:02", "202.46.52.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("25385", "1", "2016-01-30 05:00:37", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25386", "3", "2016-01-30 05:00:38", "68.180.229.161", "77");
INSERT INTO `wp_gf_form_view` VALUES("25387", "8", "2016-01-30 05:00:38", "68.180.229.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("25388", "3", "2016-01-30 06:04:00", "202.46.56.195", "79");
INSERT INTO `wp_gf_form_view` VALUES("25389", "8", "2016-01-30 06:04:00", "202.46.56.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("25390", "3", "2016-01-30 07:08:55", "202.46.57.19", "134");
INSERT INTO `wp_gf_form_view` VALUES("25391", "8", "2016-01-30 07:08:55", "202.46.57.19", "16");
INSERT INTO `wp_gf_form_view` VALUES("25392", "7", "2016-01-30 07:23:36", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("25393", "3", "2016-01-30 08:03:01", "202.46.58.135", "70");
INSERT INTO `wp_gf_form_view` VALUES("25394", "8", "2016-01-30 08:03:01", "202.46.58.135", "9");
INSERT INTO `wp_gf_form_view` VALUES("25395", "3", "2016-01-30 09:07:56", "202.46.53.117", "143");
INSERT INTO `wp_gf_form_view` VALUES("25396", "8", "2016-01-30 09:07:56", "202.46.53.117", "18");
INSERT INTO `wp_gf_form_view` VALUES("25397", "7", "2016-01-30 09:29:34", "202.46.55.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("25398", "3", "2016-01-30 10:02:01", "202.46.54.15", "652");
INSERT INTO `wp_gf_form_view` VALUES("25399", "8", "2016-01-30 10:02:01", "202.46.54.15", "83");
INSERT INTO `wp_gf_form_view` VALUES("25400", "2", "2016-01-30 10:48:11", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("25401", "1", "2016-01-30 10:50:46", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("25402", "5", "2016-01-30 10:53:19", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("25403", "1", "2016-01-30 11:00:03", "96.44.172.66", "4");
INSERT INTO `wp_gf_form_view` VALUES("25404", "3", "2016-01-30 11:00:03", "96.44.172.66", "1262");
INSERT INTO `wp_gf_form_view` VALUES("25405", "8", "2016-01-30 11:00:03", "96.44.172.66", "168");
INSERT INTO `wp_gf_form_view` VALUES("25406", "2", "2016-01-30 11:38:41", "72.76.243.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("25407", "7", "2016-01-30 11:39:57", "72.76.243.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("25408", "5", "2016-01-30 11:40:45", "72.76.243.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("25409", "3", "2016-01-30 12:01:01", "202.46.57.73", "64");
INSERT INTO `wp_gf_form_view` VALUES("25410", "8", "2016-01-30 12:01:01", "202.46.57.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("25411", "3", "2016-01-30 13:03:11", "62.210.162.184", "70");
INSERT INTO `wp_gf_form_view` VALUES("25412", "8", "2016-01-30 13:03:11", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("25413", "3", "2016-01-30 14:00:03", "202.46.54.17", "68");
INSERT INTO `wp_gf_form_view` VALUES("25414", "8", "2016-01-30 14:00:03", "202.46.54.17", "9");
INSERT INTO `wp_gf_form_view` VALUES("25415", "3", "2016-01-30 15:04:57", "202.46.57.177", "162");
INSERT INTO `wp_gf_form_view` VALUES("25416", "8", "2016-01-30 15:04:57", "202.46.57.177", "21");
INSERT INTO `wp_gf_form_view` VALUES("25417", "3", "2016-01-30 16:02:59", "66.249.74.106", "100");
INSERT INTO `wp_gf_form_view` VALUES("25418", "8", "2016-01-30 16:02:59", "66.249.74.106", "13");
INSERT INTO `wp_gf_form_view` VALUES("25419", "3", "2016-01-30 17:10:14", "191.232.136.125", "29");
INSERT INTO `wp_gf_form_view` VALUES("25420", "8", "2016-01-30 17:10:14", "191.232.136.125", "5");
INSERT INTO `wp_gf_form_view` VALUES("25421", "3", "2016-01-30 18:41:35", "66.249.74.106", "17");
INSERT INTO `wp_gf_form_view` VALUES("25422", "8", "2016-01-30 18:41:36", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("25423", "3", "2016-01-30 19:26:26", "23.27.45.136", "8");
INSERT INTO `wp_gf_form_view` VALUES("25424", "8", "2016-01-30 19:26:26", "23.27.45.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("25425", "3", "2016-01-30 20:00:11", "178.137.17.115", "88");
INSERT INTO `wp_gf_form_view` VALUES("25426", "8", "2016-01-30 20:00:11", "178.137.17.115", "11");
INSERT INTO `wp_gf_form_view` VALUES("25427", "3", "2016-01-30 21:25:29", "77.75.79.72", "115");
INSERT INTO `wp_gf_form_view` VALUES("25428", "8", "2016-01-30 21:25:29", "77.75.79.72", "15");
INSERT INTO `wp_gf_form_view` VALUES("25429", "1", "2016-01-30 21:39:57", "154.5.144.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("25430", "3", "2016-01-30 22:09:14", "66.249.74.102", "32");
INSERT INTO `wp_gf_form_view` VALUES("25431", "8", "2016-01-30 22:09:14", "66.249.74.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("25432", "1", "2016-01-30 23:00:02", "216.158.84.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("25433", "3", "2016-01-30 23:00:03", "216.158.84.74", "73");
INSERT INTO `wp_gf_form_view` VALUES("25434", "8", "2016-01-30 23:00:03", "216.158.84.74", "9");
INSERT INTO `wp_gf_form_view` VALUES("25435", "3", "2016-01-31 00:13:12", "66.249.74.104", "67");
INSERT INTO `wp_gf_form_view` VALUES("25436", "8", "2016-01-31 00:13:12", "66.249.74.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("25437", "3", "2016-01-31 01:05:54", "77.75.76.172", "40");
INSERT INTO `wp_gf_form_view` VALUES("25438", "8", "2016-01-31 01:05:54", "77.75.76.172", "5");
INSERT INTO `wp_gf_form_view` VALUES("25439", "1", "2016-01-31 02:05:29", "192.227.161.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("25440", "3", "2016-01-31 02:05:29", "192.227.161.79", "104");
INSERT INTO `wp_gf_form_view` VALUES("25441", "8", "2016-01-31 02:05:29", "192.227.161.79", "13");
INSERT INTO `wp_gf_form_view` VALUES("25442", "2", "2016-01-31 02:23:50", "223.240.118.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("25443", "3", "2016-01-31 03:33:41", "178.137.86.123", "55");
INSERT INTO `wp_gf_form_view` VALUES("25444", "3", "2016-01-31 03:33:41", "178.137.86.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("25445", "8", "2016-01-31 03:33:41", "178.137.86.123", "6");
INSERT INTO `wp_gf_form_view` VALUES("25446", "8", "2016-01-31 03:33:41", "178.137.86.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("25447", "3", "2016-01-31 04:00:35", "24.68.111.45", "41");
INSERT INTO `wp_gf_form_view` VALUES("25448", "8", "2016-01-31 04:00:35", "24.68.111.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("25449", "9", "2016-01-31 05:34:09", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25450", "3", "2016-01-31 05:34:09", "66.249.74.102", "100");
INSERT INTO `wp_gf_form_view` VALUES("25451", "8", "2016-01-31 05:34:09", "66.249.74.102", "12");
INSERT INTO `wp_gf_form_view` VALUES("25452", "3", "2016-01-31 06:05:18", "66.249.74.106", "80");
INSERT INTO `wp_gf_form_view` VALUES("25453", "8", "2016-01-31 06:05:18", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("25454", "3", "2016-01-31 07:49:03", "62.210.162.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("25455", "8", "2016-01-31 07:49:04", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("25456", "3", "2016-01-31 09:15:07", "50.72.187.38", "24");
INSERT INTO `wp_gf_form_view` VALUES("25457", "8", "2016-01-31 09:15:07", "50.72.187.38", "3");
INSERT INTO `wp_gf_form_view` VALUES("25458", "3", "2016-01-31 10:38:40", "66.249.74.102", "32");
INSERT INTO `wp_gf_form_view` VALUES("25459", "8", "2016-01-31 10:38:40", "66.249.74.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("25460", "3", "2016-01-31 11:15:37", "157.55.39.117", "393");
INSERT INTO `wp_gf_form_view` VALUES("25461", "8", "2016-01-31 11:15:37", "157.55.39.117", "47");
INSERT INTO `wp_gf_form_view` VALUES("25462", "6", "2016-01-31 11:15:42", "157.55.39.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("25463", "2", "2016-01-31 11:16:42", "157.55.39.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("25464", "3", "2016-01-31 12:48:57", "51.255.65.67", "47");
INSERT INTO `wp_gf_form_view` VALUES("25465", "8", "2016-01-31 12:48:58", "51.255.65.67", "5");
INSERT INTO `wp_gf_form_view` VALUES("25466", "3", "2016-01-31 13:59:46", "66.249.74.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("25467", "8", "2016-01-31 13:59:46", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25468", "1", "2016-01-31 14:07:11", "89.157.40.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("25469", "3", "2016-01-31 14:07:11", "89.157.40.103", "8");
INSERT INTO `wp_gf_form_view` VALUES("25470", "8", "2016-01-31 14:07:11", "89.157.40.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("25471", "3", "2016-01-31 15:45:30", "66.249.74.106", "9");
INSERT INTO `wp_gf_form_view` VALUES("25472", "8", "2016-01-31 15:45:30", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("25473", "3", "2016-01-31 16:00:21", "68.180.229.161", "56");
INSERT INTO `wp_gf_form_view` VALUES("25474", "8", "2016-01-31 16:00:21", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("25475", "1", "2016-01-31 16:03:39", "51.255.65.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("25476", "3", "2016-01-31 17:04:34", "202.46.54.116", "114");
INSERT INTO `wp_gf_form_view` VALUES("25477", "8", "2016-01-31 17:04:34", "202.46.54.116", "16");
INSERT INTO `wp_gf_form_view` VALUES("25478", "1", "2016-01-31 17:33:23", "89.157.40.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("25479", "3", "2016-01-31 18:17:24", "204.116.226.60", "39");
INSERT INTO `wp_gf_form_view` VALUES("25480", "8", "2016-01-31 18:17:24", "204.116.226.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("25481", "3", "2016-01-31 19:05:40", "202.46.56.65", "75");
INSERT INTO `wp_gf_form_view` VALUES("25482", "8", "2016-01-31 19:05:40", "202.46.56.65", "11");
INSERT INTO `wp_gf_form_view` VALUES("25483", "3", "2016-01-31 20:00:26", "66.249.74.104", "91");
INSERT INTO `wp_gf_form_view` VALUES("25484", "8", "2016-01-31 20:00:26", "66.249.74.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("25485", "3", "2016-01-31 21:08:49", "46.118.116.135", "48");
INSERT INTO `wp_gf_form_view` VALUES("25486", "8", "2016-01-31 21:08:49", "46.118.116.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("25487", "3", "2016-01-31 22:16:17", "157.55.39.252", "64");
INSERT INTO `wp_gf_form_view` VALUES("25488", "8", "2016-01-31 22:16:17", "157.55.39.252", "8");
INSERT INTO `wp_gf_form_view` VALUES("25489", "1", "2016-01-31 22:53:03", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("25490", "1", "2016-01-31 23:19:34", "23.254.240.254", "3");
INSERT INTO `wp_gf_form_view` VALUES("25491", "3", "2016-01-31 23:19:34", "23.254.240.254", "115");
INSERT INTO `wp_gf_form_view` VALUES("25492", "8", "2016-01-31 23:19:34", "23.254.240.254", "14");
INSERT INTO `wp_gf_form_view` VALUES("25493", "3", "2016-02-01 00:13:29", "174.129.237.157", "48");
INSERT INTO `wp_gf_form_view` VALUES("25494", "8", "2016-02-01 00:13:29", "174.129.237.157", "6");
INSERT INTO `wp_gf_form_view` VALUES("25495", "1", "2016-02-01 01:08:17", "5.175.133.137", "4");
INSERT INTO `wp_gf_form_view` VALUES("25496", "3", "2016-02-01 01:08:17", "5.175.133.137", "89");
INSERT INTO `wp_gf_form_view` VALUES("25497", "8", "2016-02-01 01:08:17", "5.175.133.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("25498", "2", "2016-02-01 01:17:02", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25499", "3", "2016-02-01 02:32:50", "27.156.75.213", "202");
INSERT INTO `wp_gf_form_view` VALUES("25500", "8", "2016-02-01 02:32:50", "27.156.75.213", "25");
INSERT INTO `wp_gf_form_view` VALUES("25501", "2", "2016-02-01 02:52:00", "85.93.89.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("25502", "3", "2016-02-01 03:05:02", "68.180.229.161", "81");
INSERT INTO `wp_gf_form_view` VALUES("25503", "8", "2016-02-01 03:05:02", "68.180.229.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("25504", "3", "2016-02-01 04:03:11", "202.46.56.91", "159");
INSERT INTO `wp_gf_form_view` VALUES("25505", "8", "2016-02-01 04:03:11", "202.46.56.91", "21");
INSERT INTO `wp_gf_form_view` VALUES("25506", "1", "2016-02-01 04:04:33", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("25507", "3", "2016-02-01 05:03:59", "202.46.48.94", "232");
INSERT INTO `wp_gf_form_view` VALUES("25508", "8", "2016-02-01 05:03:59", "202.46.48.94", "30");
INSERT INTO `wp_gf_form_view` VALUES("25509", "3", "2016-02-01 06:00:04", "202.46.54.30", "345");
INSERT INTO `wp_gf_form_view` VALUES("25510", "8", "2016-02-01 06:00:04", "202.46.54.30", "46");
INSERT INTO `wp_gf_form_view` VALUES("25511", "2", "2016-02-01 06:11:12", "146.185.234.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("25512", "3", "2016-02-01 07:00:51", "202.46.49.131", "179");
INSERT INTO `wp_gf_form_view` VALUES("25513", "8", "2016-02-01 07:00:51", "202.46.49.131", "25");
INSERT INTO `wp_gf_form_view` VALUES("25514", "1", "2016-02-01 07:12:44", "89.157.43.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("25515", "3", "2016-02-01 08:01:40", "94.23.45.37", "171");
INSERT INTO `wp_gf_form_view` VALUES("25516", "8", "2016-02-01 08:01:40", "94.23.45.37", "20");
INSERT INTO `wp_gf_form_view` VALUES("25517", "3", "2016-02-01 09:01:39", "5.9.145.132", "111");
INSERT INTO `wp_gf_form_view` VALUES("25518", "3", "2016-02-01 09:01:39", "144.76.155.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("25519", "8", "2016-02-01 09:01:40", "5.9.145.132", "14");
INSERT INTO `wp_gf_form_view` VALUES("25520", "8", "2016-02-01 09:01:40", "144.76.155.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("25521", "3", "2016-02-01 10:05:38", "46.118.116.135", "99");
INSERT INTO `wp_gf_form_view` VALUES("25522", "8", "2016-02-01 10:05:39", "46.118.116.135", "12");
INSERT INTO `wp_gf_form_view` VALUES("25523", "9", "2016-02-01 10:36:12", "94.23.45.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("25524", "3", "2016-02-01 11:06:20", "46.118.158.147", "92");
INSERT INTO `wp_gf_form_view` VALUES("25525", "8", "2016-02-01 11:06:20", "46.118.158.147", "11");
INSERT INTO `wp_gf_form_view` VALUES("25526", "3", "2016-02-01 12:02:36", "202.46.56.62", "140");
INSERT INTO `wp_gf_form_view` VALUES("25527", "8", "2016-02-01 12:02:36", "202.46.56.62", "19");
INSERT INTO `wp_gf_form_view` VALUES("25528", "3", "2016-02-01 13:02:48", "202.46.56.15", "124");
INSERT INTO `wp_gf_form_view` VALUES("25529", "8", "2016-02-01 13:02:49", "202.46.56.15", "17");
INSERT INTO `wp_gf_form_view` VALUES("25530", "3", "2016-02-01 14:01:25", "202.46.56.188", "99");
INSERT INTO `wp_gf_form_view` VALUES("25531", "8", "2016-02-01 14:01:25", "202.46.56.188", "14");
INSERT INTO `wp_gf_form_view` VALUES("25532", "3", "2016-02-01 15:01:28", "202.46.53.111", "185");
INSERT INTO `wp_gf_form_view` VALUES("25533", "8", "2016-02-01 15:01:28", "202.46.53.111", "25");
INSERT INTO `wp_gf_form_view` VALUES("25534", "3", "2016-02-01 16:04:35", "202.46.54.97", "156");
INSERT INTO `wp_gf_form_view` VALUES("25535", "8", "2016-02-01 16:04:36", "202.46.54.97", "19");
INSERT INTO `wp_gf_form_view` VALUES("25536", "9", "2016-02-01 16:54:04", "24.68.41.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("25537", "3", "2016-02-01 17:02:58", "46.118.116.135", "24");
INSERT INTO `wp_gf_form_view` VALUES("25538", "8", "2016-02-01 17:02:58", "46.118.116.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("25539", "3", "2016-02-01 18:08:07", "70.66.85.63", "42");
INSERT INTO `wp_gf_form_view` VALUES("25540", "8", "2016-02-01 18:08:08", "70.66.85.63", "5");
INSERT INTO `wp_gf_form_view` VALUES("25541", "3", "2016-02-01 19:13:55", "46.118.158.147", "304");
INSERT INTO `wp_gf_form_view` VALUES("25542", "3", "2016-02-01 19:13:55", "46.118.158.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("25543", "3", "2016-02-01 19:13:55", "46.118.158.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("25544", "8", "2016-02-01 19:13:55", "46.118.158.147", "36");
INSERT INTO `wp_gf_form_view` VALUES("25545", "8", "2016-02-01 19:13:55", "46.118.158.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("25546", "1", "2016-02-01 19:14:30", "104.233.120.38", "6");
INSERT INTO `wp_gf_form_view` VALUES("25547", "3", "2016-02-01 20:06:33", "66.249.74.102", "850");
INSERT INTO `wp_gf_form_view` VALUES("25548", "8", "2016-02-01 20:06:33", "66.249.74.102", "107");
INSERT INTO `wp_gf_form_view` VALUES("25549", "2", "2016-02-01 20:15:49", "54.202.77.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("25550", "3", "2016-02-01 21:03:22", "24.108.134.205", "56");
INSERT INTO `wp_gf_form_view` VALUES("25551", "8", "2016-02-01 21:03:22", "24.108.134.205", "7");
INSERT INTO `wp_gf_form_view` VALUES("25552", "3", "2016-02-01 22:13:07", "24.108.134.205", "34");
INSERT INTO `wp_gf_form_view` VALUES("25553", "8", "2016-02-01 22:13:07", "24.108.134.205", "4");
INSERT INTO `wp_gf_form_view` VALUES("25554", "3", "2016-02-02 00:55:49", "184.66.252.178", "33");
INSERT INTO `wp_gf_form_view` VALUES("25555", "8", "2016-02-02 00:55:50", "184.66.252.178", "4");
INSERT INTO `wp_gf_form_view` VALUES("25556", "3", "2016-02-02 02:10:53", "96.54.214.83", "16");
INSERT INTO `wp_gf_form_view` VALUES("25557", "8", "2016-02-02 02:10:53", "96.54.214.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("25558", "1", "2016-02-02 02:52:38", "107.172.24.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("25559", "3", "2016-02-02 03:25:37", "66.249.74.102", "24");
INSERT INTO `wp_gf_form_view` VALUES("25560", "8", "2016-02-02 03:25:37", "66.249.74.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("25561", "3", "2016-02-02 04:24:22", "68.180.229.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("25562", "8", "2016-02-02 04:24:22", "68.180.229.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("25563", "2", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25564", "3", "2016-02-02 06:24:21", "45.55.238.190", "192");
INSERT INTO `wp_gf_form_view` VALUES("25565", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25566", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25567", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25568", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25569", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25570", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25571", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25572", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25573", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25574", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25575", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("25576", "8", "2016-02-02 06:24:21", "45.55.238.190", "26");
INSERT INTO `wp_gf_form_view` VALUES("25577", "3", "2016-02-02 07:20:52", "66.249.74.104", "40");
INSERT INTO `wp_gf_form_view` VALUES("25578", "8", "2016-02-02 07:20:54", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("25579", "3", "2016-02-02 08:05:26", "154.20.196.21", "89");
INSERT INTO `wp_gf_form_view` VALUES("25580", "8", "2016-02-02 08:05:26", "154.20.196.21", "11");
INSERT INTO `wp_gf_form_view` VALUES("25581", "3", "2016-02-02 09:01:26", "66.249.74.104", "147");
INSERT INTO `wp_gf_form_view` VALUES("25582", "8", "2016-02-02 09:01:26", "66.249.74.104", "21");
INSERT INTO `wp_gf_form_view` VALUES("25583", "3", "2016-02-02 10:01:46", "51.255.65.18", "142");
INSERT INTO `wp_gf_form_view` VALUES("25584", "8", "2016-02-02 10:01:46", "51.255.65.18", "19");
INSERT INTO `wp_gf_form_view` VALUES("25585", "3", "2016-02-02 11:05:36", "202.46.48.198", "187");
INSERT INTO `wp_gf_form_view` VALUES("25586", "8", "2016-02-02 11:05:36", "202.46.48.198", "24");
INSERT INTO `wp_gf_form_view` VALUES("25587", "1", "2016-02-02 11:27:44", "5.175.201.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("25588", "3", "2016-02-02 12:00:19", "66.249.74.104", "195");
INSERT INTO `wp_gf_form_view` VALUES("25589", "8", "2016-02-02 12:00:19", "66.249.74.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("25590", "3", "2016-02-02 13:01:54", "66.249.74.106", "204");
INSERT INTO `wp_gf_form_view` VALUES("25591", "8", "2016-02-02 13:01:54", "66.249.74.106", "27");
INSERT INTO `wp_gf_form_view` VALUES("25592", "3", "2016-02-02 14:00:31", "202.46.52.169", "140");
INSERT INTO `wp_gf_form_view` VALUES("25593", "8", "2016-02-02 14:00:31", "202.46.52.169", "19");
INSERT INTO `wp_gf_form_view` VALUES("25594", "3", "2016-02-02 15:02:35", "202.46.53.121", "161");
INSERT INTO `wp_gf_form_view` VALUES("25595", "8", "2016-02-02 15:02:35", "202.46.53.121", "24");
INSERT INTO `wp_gf_form_view` VALUES("25596", "3", "2016-02-02 16:04:40", "202.46.53.148", "133");
INSERT INTO `wp_gf_form_view` VALUES("25597", "8", "2016-02-02 16:04:40", "202.46.53.148", "19");
INSERT INTO `wp_gf_form_view` VALUES("25598", "3", "2016-02-02 17:01:05", "202.46.51.87", "166");
INSERT INTO `wp_gf_form_view` VALUES("25599", "8", "2016-02-02 17:01:05", "202.46.51.87", "22");
INSERT INTO `wp_gf_form_view` VALUES("25600", "3", "2016-02-02 18:01:52", "51.255.65.28", "226");
INSERT INTO `wp_gf_form_view` VALUES("25601", "8", "2016-02-02 18:01:52", "51.255.65.28", "33");
INSERT INTO `wp_gf_form_view` VALUES("25602", "3", "2016-02-02 19:05:13", "202.46.53.202", "259");
INSERT INTO `wp_gf_form_view` VALUES("25603", "8", "2016-02-02 19:05:13", "202.46.53.202", "35");
INSERT INTO `wp_gf_form_view` VALUES("25604", "1", "2016-02-02 19:32:29", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("25605", "3", "2016-02-02 20:07:18", "202.46.52.79", "298");
INSERT INTO `wp_gf_form_view` VALUES("25606", "8", "2016-02-02 20:07:18", "202.46.52.79", "39");
INSERT INTO `wp_gf_form_view` VALUES("25607", "1", "2016-02-02 20:16:35", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25608", "9", "2016-02-02 20:28:18", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25609", "3", "2016-02-02 21:03:43", "202.46.55.81", "339");
INSERT INTO `wp_gf_form_view` VALUES("25610", "8", "2016-02-02 21:03:43", "202.46.55.81", "45");
INSERT INTO `wp_gf_form_view` VALUES("25611", "9", "2016-02-02 21:36:07", "191.232.136.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("25612", "3", "2016-02-02 22:00:16", "202.46.54.168", "268");
INSERT INTO `wp_gf_form_view` VALUES("25613", "8", "2016-02-02 22:00:16", "202.46.54.168", "32");
INSERT INTO `wp_gf_form_view` VALUES("25614", "3", "2016-02-02 23:02:12", "202.46.48.16", "202");
INSERT INTO `wp_gf_form_view` VALUES("25615", "8", "2016-02-02 23:02:12", "202.46.48.16", "28");
INSERT INTO `wp_gf_form_view` VALUES("25616", "3", "2016-02-03 00:04:16", "202.46.52.163", "446");
INSERT INTO `wp_gf_form_view` VALUES("25617", "8", "2016-02-03 00:04:16", "202.46.52.163", "57");
INSERT INTO `wp_gf_form_view` VALUES("25618", "8", "2016-02-03 01:00:42", "202.46.56.39", "26");
INSERT INTO `wp_gf_form_view` VALUES("25619", "3", "2016-02-03 01:00:42", "202.46.56.39", "195");
INSERT INTO `wp_gf_form_view` VALUES("25620", "3", "2016-02-03 02:02:46", "202.46.50.184", "145");
INSERT INTO `wp_gf_form_view` VALUES("25621", "8", "2016-02-03 02:02:46", "202.46.50.184", "21");
INSERT INTO `wp_gf_form_view` VALUES("25622", "3", "2016-02-03 03:01:36", "46.118.116.135", "230");
INSERT INTO `wp_gf_form_view` VALUES("25623", "8", "2016-02-03 03:01:36", "46.118.116.135", "30");
INSERT INTO `wp_gf_form_view` VALUES("25624", "1", "2016-02-03 03:02:39", "96.44.172.66", "5");
INSERT INTO `wp_gf_form_view` VALUES("25625", "3", "2016-02-03 04:01:15", "202.46.55.172", "328");
INSERT INTO `wp_gf_form_view` VALUES("25626", "8", "2016-02-03 04:01:15", "202.46.55.172", "43");
INSERT INTO `wp_gf_form_view` VALUES("25627", "2", "2016-02-03 04:05:37", "146.185.234.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("25628", "3", "2016-02-03 05:04:20", "202.46.48.190", "61");
INSERT INTO `wp_gf_form_view` VALUES("25629", "8", "2016-02-03 05:04:20", "202.46.48.190", "10");
INSERT INTO `wp_gf_form_view` VALUES("25630", "3", "2016-02-03 06:00:36", "66.249.74.104", "106");
INSERT INTO `wp_gf_form_view` VALUES("25631", "8", "2016-02-03 06:00:36", "66.249.74.104", "13");
INSERT INTO `wp_gf_form_view` VALUES("25632", "3", "2016-02-03 07:02:21", "202.46.52.75", "136");
INSERT INTO `wp_gf_form_view` VALUES("25633", "8", "2016-02-03 07:02:21", "202.46.52.75", "17");
INSERT INTO `wp_gf_form_view` VALUES("25634", "3", "2016-02-03 08:01:15", "202.46.49.72", "65");
INSERT INTO `wp_gf_form_view` VALUES("25635", "8", "2016-02-03 08:01:16", "202.46.49.72", "10");
INSERT INTO `wp_gf_form_view` VALUES("25636", "3", "2016-02-03 09:00:13", "202.46.54.167", "115");
INSERT INTO `wp_gf_form_view` VALUES("25637", "8", "2016-02-03 09:00:13", "202.46.54.167", "14");
INSERT INTO `wp_gf_form_view` VALUES("25638", "3", "2016-02-03 10:10:59", "202.46.53.59", "63");
INSERT INTO `wp_gf_form_view` VALUES("25639", "8", "2016-02-03 10:10:59", "202.46.53.59", "9");
INSERT INTO `wp_gf_form_view` VALUES("25640", "3", "2016-02-03 11:09:57", "202.46.56.188", "93");
INSERT INTO `wp_gf_form_view` VALUES("25641", "8", "2016-02-03 11:09:57", "202.46.56.188", "12");
INSERT INTO `wp_gf_form_view` VALUES("25642", "3", "2016-02-03 12:08:56", "202.46.58.56", "97");
INSERT INTO `wp_gf_form_view` VALUES("25643", "8", "2016-02-03 12:08:56", "202.46.58.56", "12");
INSERT INTO `wp_gf_form_view` VALUES("25644", "9", "2016-02-03 12:29:31", "104.144.137.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("25645", "3", "2016-02-03 13:02:34", "66.249.74.102", "100");
INSERT INTO `wp_gf_form_view` VALUES("25646", "8", "2016-02-03 13:02:34", "66.249.74.102", "13");
INSERT INTO `wp_gf_form_view` VALUES("25647", "3", "2016-02-03 14:06:51", "202.46.54.12", "61");
INSERT INTO `wp_gf_form_view` VALUES("25648", "8", "2016-02-03 14:06:51", "202.46.54.12", "9");
INSERT INTO `wp_gf_form_view` VALUES("25649", "3", "2016-02-03 15:05:49", "202.46.50.186", "78");
INSERT INTO `wp_gf_form_view` VALUES("25650", "8", "2016-02-03 15:05:49", "202.46.50.186", "10");
INSERT INTO `wp_gf_form_view` VALUES("25651", "3", "2016-02-03 16:04:48", "202.46.54.181", "110");
INSERT INTO `wp_gf_form_view` VALUES("25652", "8", "2016-02-03 16:04:48", "202.46.54.181", "13");
INSERT INTO `wp_gf_form_view` VALUES("25653", "3", "2016-02-03 17:02:41", "172.218.233.192", "112");
INSERT INTO `wp_gf_form_view` VALUES("25654", "8", "2016-02-03 17:02:41", "172.218.233.192", "14");
INSERT INTO `wp_gf_form_view` VALUES("25655", "3", "2016-02-03 18:02:44", "202.46.50.125", "108");
INSERT INTO `wp_gf_form_view` VALUES("25656", "8", "2016-02-03 18:02:44", "202.46.50.125", "17");
INSERT INTO `wp_gf_form_view` VALUES("25657", "3", "2016-02-03 19:01:42", "202.46.52.169", "101");
INSERT INTO `wp_gf_form_view` VALUES("25658", "8", "2016-02-03 19:01:42", "202.46.52.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("25659", "3", "2016-02-03 20:00:42", "202.46.52.62", "126");
INSERT INTO `wp_gf_form_view` VALUES("25660", "8", "2016-02-03 20:00:43", "202.46.52.62", "15");
INSERT INTO `wp_gf_form_view` VALUES("25661", "3", "2016-02-03 21:11:25", "202.46.57.25", "59");
INSERT INTO `wp_gf_form_view` VALUES("25662", "8", "2016-02-03 21:11:25", "202.46.57.25", "9");
INSERT INTO `wp_gf_form_view` VALUES("25663", "3", "2016-02-03 22:10:24", "202.46.52.79", "91");
INSERT INTO `wp_gf_form_view` VALUES("25664", "8", "2016-02-03 22:10:24", "202.46.52.79", "12");
INSERT INTO `wp_gf_form_view` VALUES("25665", "3", "2016-02-03 23:09:22", "202.46.49.141", "93");
INSERT INTO `wp_gf_form_view` VALUES("25666", "8", "2016-02-03 23:09:22", "202.46.49.141", "11");
INSERT INTO `wp_gf_form_view` VALUES("25667", "3", "2016-02-04 00:08:19", "202.46.52.77", "68");
INSERT INTO `wp_gf_form_view` VALUES("25668", "8", "2016-02-04 00:08:19", "202.46.52.77", "8");
INSERT INTO `wp_gf_form_view` VALUES("25669", "3", "2016-02-04 01:07:17", "202.46.50.18", "62");
INSERT INTO `wp_gf_form_view` VALUES("25670", "8", "2016-02-04 01:07:17", "202.46.50.18", "8");
INSERT INTO `wp_gf_form_view` VALUES("25671", "3", "2016-02-04 02:06:15", "202.46.48.137", "175");
INSERT INTO `wp_gf_form_view` VALUES("25672", "8", "2016-02-04 02:06:15", "202.46.48.137", "23");
INSERT INTO `wp_gf_form_view` VALUES("25673", "3", "2016-02-04 03:05:13", "134.249.65.86", "142");
INSERT INTO `wp_gf_form_view` VALUES("25674", "8", "2016-02-04 03:05:13", "134.249.65.86", "20");
INSERT INTO `wp_gf_form_view` VALUES("25675", "2", "2016-02-04 03:38:38", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25676", "3", "2016-02-04 04:01:40", "184.66.240.144", "127");
INSERT INTO `wp_gf_form_view` VALUES("25677", "8", "2016-02-04 04:01:40", "184.66.240.144", "18");
INSERT INTO `wp_gf_form_view` VALUES("25678", "3", "2016-02-04 05:00:37", "68.180.229.161", "193");
INSERT INTO `wp_gf_form_view` VALUES("25679", "8", "2016-02-04 05:00:37", "68.180.229.161", "28");
INSERT INTO `wp_gf_form_view` VALUES("25680", "8", "2016-02-04 06:00:23", "157.55.39.119", "43");
INSERT INTO `wp_gf_form_view` VALUES("25681", "3", "2016-02-04 06:00:23", "157.55.39.119", "301");
INSERT INTO `wp_gf_form_view` VALUES("25682", "1", "2016-02-04 06:31:48", "107.158.40.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("25683", "8", "2016-02-04 07:04:41", "202.46.51.18", "20");
INSERT INTO `wp_gf_form_view` VALUES("25684", "3", "2016-02-04 07:04:41", "202.46.51.18", "137");
INSERT INTO `wp_gf_form_view` VALUES("25685", "3", "2016-02-04 08:05:26", "202.46.54.23", "400");
INSERT INTO `wp_gf_form_view` VALUES("25686", "8", "2016-02-04 08:05:27", "202.46.54.23", "58");
INSERT INTO `wp_gf_form_view` VALUES("25687", "1", "2016-02-04 08:33:04", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25688", "2", "2016-02-04 08:37:17", "79.22.98.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("25689", "8", "2016-02-04 09:00:42", "202.46.52.113", "18");
INSERT INTO `wp_gf_form_view` VALUES("25690", "3", "2016-02-04 09:00:42", "202.46.52.113", "121");
INSERT INTO `wp_gf_form_view` VALUES("25691", "8", "2016-02-04 10:01:26", "202.46.51.21", "26");
INSERT INTO `wp_gf_form_view` VALUES("25692", "3", "2016-02-04 10:01:26", "202.46.51.21", "179");
INSERT INTO `wp_gf_form_view` VALUES("25693", "9", "2016-02-04 10:36:20", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25694", "8", "2016-02-04 11:02:12", "202.46.52.105", "28");
INSERT INTO `wp_gf_form_view` VALUES("25695", "3", "2016-02-04 11:02:12", "202.46.52.105", "193");
INSERT INTO `wp_gf_form_view` VALUES("25696", "3", "2016-02-04 12:02:57", "202.46.57.166", "186");
INSERT INTO `wp_gf_form_view` VALUES("25697", "8", "2016-02-04 12:02:57", "202.46.57.166", "31");
INSERT INTO `wp_gf_form_view` VALUES("25698", "8", "2016-02-04 13:03:43", "202.46.50.18", "39");
INSERT INTO `wp_gf_form_view` VALUES("25699", "3", "2016-02-04 13:03:43", "202.46.50.18", "253");
INSERT INTO `wp_gf_form_view` VALUES("25700", "3", "2016-02-04 14:04:28", "202.46.52.174", "324");
INSERT INTO `wp_gf_form_view` VALUES("25701", "8", "2016-02-04 14:04:28", "202.46.52.174", "50");
INSERT INTO `wp_gf_form_view` VALUES("25702", "2", "2016-02-04 14:23:54", "157.55.39.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("25703", "8", "2016-02-04 15:05:15", "202.46.51.105", "25");
INSERT INTO `wp_gf_form_view` VALUES("25704", "3", "2016-02-04 15:05:15", "202.46.51.105", "145");
INSERT INTO `wp_gf_form_view` VALUES("25705", "3", "2016-02-04 16:00:28", "202.46.50.162", "131");
INSERT INTO `wp_gf_form_view` VALUES("25706", "8", "2016-02-04 16:00:28", "202.46.50.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("25707", "2", "2016-02-04 16:09:24", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25708", "8", "2016-02-04 17:02:41", "66.249.74.106", "38");
INSERT INTO `wp_gf_form_view` VALUES("25709", "3", "2016-02-04 17:02:41", "66.249.74.106", "255");
INSERT INTO `wp_gf_form_view` VALUES("25710", "2", "2016-02-04 17:50:41", "146.185.234.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("25711", "8", "2016-02-04 18:06:38", "77.75.77.72", "10");
INSERT INTO `wp_gf_form_view` VALUES("25712", "3", "2016-02-04 18:06:38", "77.75.77.72", "70");
INSERT INTO `wp_gf_form_view` VALUES("25713", "2", "2016-02-04 18:14:39", "157.55.39.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("25714", "8", "2016-02-04 19:01:14", "46.118.127.131", "10");
INSERT INTO `wp_gf_form_view` VALUES("25715", "3", "2016-02-04 19:01:14", "46.118.127.131", "70");
INSERT INTO `wp_gf_form_view` VALUES("25716", "8", "2016-02-04 20:03:59", "51.255.65.29", "8");
INSERT INTO `wp_gf_form_view` VALUES("25717", "3", "2016-02-04 20:03:59", "51.255.65.29", "57");
INSERT INTO `wp_gf_form_view` VALUES("25718", "8", "2016-02-04 21:02:46", "77.75.78.167", "11");
INSERT INTO `wp_gf_form_view` VALUES("25719", "3", "2016-02-04 21:02:46", "77.75.78.167", "81");
INSERT INTO `wp_gf_form_view` VALUES("25720", "8", "2016-02-04 22:05:47", "24.108.7.45", "14");
INSERT INTO `wp_gf_form_view` VALUES("25721", "3", "2016-02-04 22:05:47", "24.108.7.45", "90");
INSERT INTO `wp_gf_form_view` VALUES("25722", "1", "2016-02-04 22:07:08", "24.108.7.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("25723", "8", "2016-02-04 23:03:33", "142.104.153.47", "21");
INSERT INTO `wp_gf_form_view` VALUES("25724", "3", "2016-02-04 23:03:33", "142.104.153.47", "154");
INSERT INTO `wp_gf_form_view` VALUES("25725", "8", "2016-02-05 00:04:42", "174.127.133.75", "52");
INSERT INTO `wp_gf_form_view` VALUES("25726", "3", "2016-02-05 00:04:42", "174.127.133.75", "361");
INSERT INTO `wp_gf_form_view` VALUES("25727", "2", "2016-02-05 00:08:58", "174.127.133.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("25728", "8", "2016-02-05 02:05:10", "66.249.74.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("25729", "3", "2016-02-05 02:05:11", "66.249.74.102", "49");
INSERT INTO `wp_gf_form_view` VALUES("25730", "8", "2016-02-05 03:07:07", "66.249.74.102", "9");
INSERT INTO `wp_gf_form_view` VALUES("25731", "3", "2016-02-05 03:07:07", "66.249.74.102", "63");
INSERT INTO `wp_gf_form_view` VALUES("25732", "8", "2016-02-05 04:43:41", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("25733", "3", "2016-02-05 04:43:42", "66.249.74.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("25734", "8", "2016-02-05 06:00:18", "134.249.65.86", "5");
INSERT INTO `wp_gf_form_view` VALUES("25735", "3", "2016-02-05 06:00:18", "134.249.65.86", "36");
INSERT INTO `wp_gf_form_view` VALUES("25736", "3", "2016-02-05 07:19:41", "216.232.157.182", "47");
INSERT INTO `wp_gf_form_view` VALUES("25737", "8", "2016-02-05 07:19:42", "216.232.157.182", "6");
INSERT INTO `wp_gf_form_view` VALUES("25738", "8", "2016-02-05 09:04:13", "66.249.74.106", "17");
INSERT INTO `wp_gf_form_view` VALUES("25739", "3", "2016-02-05 09:04:13", "66.249.74.106", "119");
INSERT INTO `wp_gf_form_view` VALUES("25740", "2", "2016-02-05 09:18:48", "45.32.129.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("25741", "3", "2016-02-05 10:09:41", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("25742", "8", "2016-02-05 10:51:29", "41.71.66.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("25743", "8", "2016-02-05 11:45:18", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("25744", "3", "2016-02-05 11:45:18", "66.249.74.106", "14");
INSERT INTO `wp_gf_form_view` VALUES("25745", "8", "2016-02-05 12:22:34", "66.249.74.106", "11");
INSERT INTO `wp_gf_form_view` VALUES("25746", "3", "2016-02-05 12:22:34", "66.249.74.106", "77");
INSERT INTO `wp_gf_form_view` VALUES("25747", "1", "2016-02-05 12:28:09", "216.158.84.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("25748", "9", "2016-02-05 12:45:01", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25749", "8", "2016-02-05 13:36:10", "157.55.39.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("25750", "3", "2016-02-05 13:36:10", "157.55.39.64", "11");
INSERT INTO `wp_gf_form_view` VALUES("25751", "8", "2016-02-05 14:12:20", "68.180.229.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("25752", "3", "2016-02-05 14:12:20", "68.180.229.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("25753", "8", "2016-02-05 15:33:03", "51.255.65.66", "13");
INSERT INTO `wp_gf_form_view` VALUES("25754", "3", "2016-02-05 15:33:04", "51.255.65.66", "92");
INSERT INTO `wp_gf_form_view` VALUES("25755", "2", "2016-02-05 15:54:43", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("25756", "8", "2016-02-05 16:02:43", "46.118.116.135", "18");
INSERT INTO `wp_gf_form_view` VALUES("25757", "3", "2016-02-05 16:02:43", "46.118.116.135", "127");
INSERT INTO `wp_gf_form_view` VALUES("25758", "9", "2016-02-05 16:39:05", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25759", "8", "2016-02-05 17:04:29", "202.46.55.88", "27");
INSERT INTO `wp_gf_form_view` VALUES("25760", "3", "2016-02-05 17:04:29", "202.46.55.88", "195");
INSERT INTO `wp_gf_form_view` VALUES("25761", "2", "2016-02-05 17:26:07", "64.114.223.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("25762", "3", "2016-02-05 18:05:01", "202.46.53.16", "191");
INSERT INTO `wp_gf_form_view` VALUES("25763", "8", "2016-02-05 18:05:01", "202.46.53.16", "28");
INSERT INTO `wp_gf_form_view` VALUES("25764", "8", "2016-02-05 19:00:01", "202.46.52.43", "26");
INSERT INTO `wp_gf_form_view` VALUES("25765", "3", "2016-02-05 19:00:01", "202.46.52.43", "176");
INSERT INTO `wp_gf_form_view` VALUES("25766", "3", "2016-02-05 20:00:31", "202.46.50.162", "125");
INSERT INTO `wp_gf_form_view` VALUES("25767", "8", "2016-02-05 20:00:31", "202.46.50.162", "17");
INSERT INTO `wp_gf_form_view` VALUES("25768", "3", "2016-02-05 21:03:09", "202.46.50.79", "111");
INSERT INTO `wp_gf_form_view` VALUES("25769", "8", "2016-02-05 21:03:09", "202.46.50.79", "16");
INSERT INTO `wp_gf_form_view` VALUES("25770", "3", "2016-02-05 22:05:20", "202.46.55.171", "193");
INSERT INTO `wp_gf_form_view` VALUES("25771", "8", "2016-02-05 22:05:20", "202.46.55.171", "29");
INSERT INTO `wp_gf_form_view` VALUES("25772", "2", "2016-02-05 22:10:21", "220.181.108.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("25773", "8", "2016-02-05 23:01:25", "62.210.162.184", "21");
INSERT INTO `wp_gf_form_view` VALUES("25774", "3", "2016-02-05 23:01:25", "62.210.162.184", "132");
INSERT INTO `wp_gf_form_view` VALUES("25775", "3", "2016-02-06 00:00:51", "202.46.56.75", "221");
INSERT INTO `wp_gf_form_view` VALUES("25776", "8", "2016-02-06 00:00:51", "202.46.56.75", "32");
INSERT INTO `wp_gf_form_view` VALUES("25777", "3", "2016-02-06 01:01:33", "202.46.51.170", "200");
INSERT INTO `wp_gf_form_view` VALUES("25778", "8", "2016-02-06 01:01:34", "202.46.51.170", "30");
INSERT INTO `wp_gf_form_view` VALUES("25779", "1", "2016-02-06 01:12:38", "96.44.172.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("25780", "3", "2016-02-06 02:02:19", "202.46.52.166", "154");
INSERT INTO `wp_gf_form_view` VALUES("25781", "8", "2016-02-06 02:02:20", "202.46.52.166", "26");
INSERT INTO `wp_gf_form_view` VALUES("25782", "8", "2016-02-06 03:02:23", "202.46.55.123", "30");
INSERT INTO `wp_gf_form_view` VALUES("25783", "3", "2016-02-06 03:02:23", "202.46.55.123", "200");
INSERT INTO `wp_gf_form_view` VALUES("25784", "8", "2016-02-06 04:02:25", "202.46.58.19", "41");
INSERT INTO `wp_gf_form_view` VALUES("25785", "3", "2016-02-06 04:02:25", "202.46.58.19", "253");
INSERT INTO `wp_gf_form_view` VALUES("25786", "8", "2016-02-06 05:01:08", "96.50.51.189", "28");
INSERT INTO `wp_gf_form_view` VALUES("25787", "3", "2016-02-06 05:01:08", "96.50.51.189", "182");
INSERT INTO `wp_gf_form_view` VALUES("25788", "1", "2016-02-06 05:46:53", "107.152.183.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("25789", "3", "2016-02-06 06:00:51", "202.46.56.66", "114");
INSERT INTO `wp_gf_form_view` VALUES("25790", "8", "2016-02-06 06:00:52", "202.46.56.66", "16");
INSERT INTO `wp_gf_form_view` VALUES("25791", "8", "2016-02-06 07:03:55", "202.46.57.27", "28");
INSERT INTO `wp_gf_form_view` VALUES("25792", "3", "2016-02-06 07:03:55", "202.46.57.27", "182");
INSERT INTO `wp_gf_form_view` VALUES("25793", "5", "2016-02-06 07:15:06", "207.46.13.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("25794", "8", "2016-02-06 08:10:23", "202.46.53.56", "19");
INSERT INTO `wp_gf_form_view` VALUES("25795", "3", "2016-02-06 08:10:23", "202.46.53.56", "128");
INSERT INTO `wp_gf_form_view` VALUES("25796", "8", "2016-02-06 09:01:09", "202.46.52.164", "23");
INSERT INTO `wp_gf_form_view` VALUES("25797", "3", "2016-02-06 09:01:09", "202.46.52.164", "144");
INSERT INTO `wp_gf_form_view` VALUES("25798", "1", "2016-02-06 09:40:46", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25799", "8", "2016-02-06 10:00:39", "202.46.49.108", "53");
INSERT INTO `wp_gf_form_view` VALUES("25800", "3", "2016-02-06 10:00:39", "202.46.49.108", "339");
INSERT INTO `wp_gf_form_view` VALUES("25801", "2", "2016-02-06 10:04:04", "146.185.234.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("25802", "3", "2016-02-06 11:00:41", "202.46.48.99", "108");
INSERT INTO `wp_gf_form_view` VALUES("25803", "8", "2016-02-06 11:00:41", "202.46.48.99", "17");
INSERT INTO `wp_gf_form_view` VALUES("25804", "8", "2016-02-06 12:16:45", "202.46.58.113", "11");
INSERT INTO `wp_gf_form_view` VALUES("25805", "3", "2016-02-06 12:16:45", "202.46.58.113", "70");
INSERT INTO `wp_gf_form_view` VALUES("25806", "8", "2016-02-06 13:00:05", "46.118.116.135", "25");
INSERT INTO `wp_gf_form_view` VALUES("25807", "3", "2016-02-06 13:00:05", "46.118.116.135", "173");
INSERT INTO `wp_gf_form_view` VALUES("25808", "8", "2016-02-06 14:03:32", "202.46.54.167", "36");
INSERT INTO `wp_gf_form_view` VALUES("25809", "3", "2016-02-06 14:03:32", "202.46.54.167", "215");
INSERT INTO `wp_gf_form_view` VALUES("25810", "8", "2016-02-06 15:05:05", "68.180.229.161", "15");
INSERT INTO `wp_gf_form_view` VALUES("25811", "3", "2016-02-06 15:05:05", "68.180.229.161", "90");
INSERT INTO `wp_gf_form_view` VALUES("25812", "8", "2016-02-06 16:10:21", "178.137.17.196", "10");
INSERT INTO `wp_gf_form_view` VALUES("25813", "3", "2016-02-06 16:10:21", "178.137.17.196", "70");
INSERT INTO `wp_gf_form_view` VALUES("25814", "8", "2016-02-06 17:14:15", "207.216.146.113", "7");
INSERT INTO `wp_gf_form_view` VALUES("25815", "3", "2016-02-06 17:14:16", "207.216.146.113", "49");
INSERT INTO `wp_gf_form_view` VALUES("25816", "1", "2016-02-06 18:24:21", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25817", "8", "2016-02-06 18:24:22", "96.44.172.66", "4");
INSERT INTO `wp_gf_form_view` VALUES("25818", "3", "2016-02-06 18:24:22", "96.44.172.66", "28");
INSERT INTO `wp_gf_form_view` VALUES("25819", "8", "2016-02-06 19:12:49", "66.249.74.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("25820", "3", "2016-02-06 19:12:49", "66.249.74.104", "63");
INSERT INTO `wp_gf_form_view` VALUES("25821", "7", "2016-02-06 19:31:42", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25822", "8", "2016-02-06 20:25:01", "24.68.41.135", "7");
INSERT INTO `wp_gf_form_view` VALUES("25823", "3", "2016-02-06 20:25:01", "24.68.41.135", "50");
INSERT INTO `wp_gf_form_view` VALUES("25824", "8", "2016-02-06 21:19:54", "51.255.65.92", "5");
INSERT INTO `wp_gf_form_view` VALUES("25825", "3", "2016-02-06 21:19:54", "51.255.65.92", "36");
INSERT INTO `wp_gf_form_view` VALUES("25826", "1", "2016-02-06 21:33:40", "23.232.145.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("25827", "8", "2016-02-06 22:06:07", "66.249.74.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("25828", "3", "2016-02-06 22:06:07", "66.249.74.106", "18");
INSERT INTO `wp_gf_form_view` VALUES("25829", "3", "2016-02-06 23:04:05", "207.46.13.56", "170");
INSERT INTO `wp_gf_form_view` VALUES("25830", "8", "2016-02-06 23:04:06", "207.46.13.56", "24");
INSERT INTO `wp_gf_form_view` VALUES("25831", "2", "2016-02-06 23:32:15", "89.42.237.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("25832", "3", "2016-02-07 01:25:49", "66.249.74.104", "21");
INSERT INTO `wp_gf_form_view` VALUES("25833", "3", "2016-02-07 02:09:28", "46.118.116.135", "41");
INSERT INTO `wp_gf_form_view` VALUES("25834", "3", "2016-02-07 03:06:28", "89.42.237.100", "150");
INSERT INTO `wp_gf_form_view` VALUES("25835", "1", "2016-02-07 03:59:21", "58.16.186.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("25836", "3", "2016-02-07 04:20:06", "66.249.74.104", "22");
INSERT INTO `wp_gf_form_view` VALUES("25837", "3", "2016-02-07 05:06:03", "62.210.162.184", "101");
INSERT INTO `wp_gf_form_view` VALUES("25838", "3", "2016-02-07 06:04:41", "62.210.162.184", "35");
INSERT INTO `wp_gf_form_view` VALUES("25839", "1", "2016-02-07 07:03:49", "62.210.14.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("25840", "3", "2016-02-07 07:03:49", "62.210.14.96", "57");
INSERT INTO `wp_gf_form_view` VALUES("25841", "3", "2016-02-07 08:36:31", "66.249.74.104", "49");
INSERT INTO `wp_gf_form_view` VALUES("25842", "3", "2016-02-07 09:45:26", "178.137.17.196", "19");
INSERT INTO `wp_gf_form_view` VALUES("25843", "3", "2016-02-07 09:45:26", "178.137.17.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("25844", "3", "2016-02-07 09:45:26", "178.137.17.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("25845", "1", "2016-02-07 10:00:05", "23.232.130.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("25846", "3", "2016-02-07 10:00:05", "23.232.130.57", "29");
INSERT INTO `wp_gf_form_view` VALUES("25847", "3", "2016-02-07 11:16:26", "134.249.65.86", "33");
INSERT INTO `wp_gf_form_view` VALUES("25848", "3", "2016-02-07 11:16:26", "134.249.65.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("25849", "3", "2016-02-07 11:16:26", "134.249.65.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("25850", "3", "2016-02-07 12:05:09", "178.137.93.235", "21");
INSERT INTO `wp_gf_form_view` VALUES("25851", "3", "2016-02-07 13:07:41", "178.137.93.235", "35");
INSERT INTO `wp_gf_form_view` VALUES("25852", "3", "2016-02-07 14:07:37", "68.180.229.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("25853", "1", "2016-02-07 15:17:18", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25854", "3", "2016-02-07 15:17:19", "96.44.172.66", "21");
INSERT INTO `wp_gf_form_view` VALUES("25855", "3", "2016-02-07 16:18:16", "202.46.56.137", "82");
INSERT INTO `wp_gf_form_view` VALUES("25856", "3", "2016-02-07 17:03:25", "202.46.51.38", "116");
INSERT INTO `wp_gf_form_view` VALUES("25857", "8", "2016-02-07 17:03:25", "202.46.51.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("25858", "3", "2016-02-07 18:02:33", "202.46.54.163", "173");
INSERT INTO `wp_gf_form_view` VALUES("25859", "3", "2016-02-07 19:04:37", "202.46.56.189", "127");
INSERT INTO `wp_gf_form_view` VALUES("25860", "8", "2016-02-07 19:27:11", "202.46.54.186", "2");
INSERT INTO `wp_gf_form_view` VALUES("25861", "9", "2016-02-07 19:32:20", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("25862", "3", "2016-02-07 20:01:04", "202.46.53.192", "116");
INSERT INTO `wp_gf_form_view` VALUES("25863", "8", "2016-02-07 20:40:33", "202.46.49.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("25864", "3", "2016-02-07 21:07:02", "202.46.52.169", "268");
INSERT INTO `wp_gf_form_view` VALUES("25865", "8", "2016-02-07 21:45:15", "202.46.53.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("25866", "1", "2016-02-07 21:46:04", "136.243.17.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25867", "8", "2016-02-07 22:05:36", "51.255.65.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("25868", "3", "2016-02-07 22:05:36", "51.255.65.63", "79");
INSERT INTO `wp_gf_form_view` VALUES("25869", "3", "2016-02-07 23:01:41", "202.46.48.26", "204");
INSERT INTO `wp_gf_form_view` VALUES("25870", "2", "2016-02-07 23:49:24", "45.32.130.87", "2");
INSERT INTO `wp_gf_form_view` VALUES("25871", "3", "2016-02-08 00:06:22", "51.255.65.63", "128");
INSERT INTO `wp_gf_form_view` VALUES("25872", "3", "2016-02-08 01:05:55", "202.46.56.188", "66");
INSERT INTO `wp_gf_form_view` VALUES("25873", "8", "2016-02-08 01:34:35", "202.46.57.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("25874", "3", "2016-02-08 02:03:15", "202.46.57.124", "136");
INSERT INTO `wp_gf_form_view` VALUES("25875", "8", "2016-02-08 02:03:15", "202.46.57.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("25876", "3", "2016-02-08 03:00:35", "202.46.58.191", "126");
INSERT INTO `wp_gf_form_view` VALUES("25877", "8", "2016-02-08 03:48:21", "202.46.52.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("25878", "3", "2016-02-08 04:07:28", "202.46.56.64", "167");
INSERT INTO `wp_gf_form_view` VALUES("25879", "3", "2016-02-08 05:04:49", "202.46.57.186", "77");
INSERT INTO `wp_gf_form_view` VALUES("25880", "3", "2016-02-08 06:02:08", "202.46.49.200", "438");
INSERT INTO `wp_gf_form_view` VALUES("25881", "2", "2016-02-08 06:49:20", "96.91.131.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("25882", "1", "2016-02-08 07:00:04", "75.157.135.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("25883", "3", "2016-02-08 07:00:04", "75.157.135.71", "78");
INSERT INTO `wp_gf_form_view` VALUES("25884", "8", "2016-02-08 07:09:02", "202.46.51.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("25885", "3", "2016-02-08 08:06:21", "202.46.52.158", "112");
INSERT INTO `wp_gf_form_view` VALUES("25886", "8", "2016-02-08 08:35:01", "202.46.56.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("25887", "3", "2016-02-08 09:03:42", "202.46.52.19", "197");
INSERT INTO `wp_gf_form_view` VALUES("25888", "8", "2016-02-08 09:22:48", "202.46.56.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("25889", "7", "2016-02-08 09:38:43", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("25890", "3", "2016-02-08 10:01:01", "202.46.48.126", "100");
INSERT INTO `wp_gf_form_view` VALUES("25891", "1", "2016-02-08 10:35:05", "45.64.213.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("25892", "8", "2016-02-08 10:58:21", "202.46.49.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("25893", "3", "2016-02-08 11:07:55", "202.46.48.89", "167");
INSERT INTO `wp_gf_form_view` VALUES("25894", "8", "2016-02-08 11:27:01", "202.46.58.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("25895", "3", "2016-02-08 12:05:14", "202.46.54.11", "152");
INSERT INTO `wp_gf_form_view` VALUES("25896", "8", "2016-02-08 12:24:21", "202.46.52.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("25897", "3", "2016-02-08 13:02:34", "202.46.54.184", "118");
INSERT INTO `wp_gf_form_view` VALUES("25898", "3", "2016-02-08 14:09:28", "202.46.58.159", "81");
INSERT INTO `wp_gf_form_view` VALUES("25899", "1", "2016-02-08 14:12:52", "104.223.72.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("25900", "8", "2016-02-08 14:57:14", "202.46.58.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("25901", "3", "2016-02-08 15:06:47", "202.46.52.61", "324");
INSERT INTO `wp_gf_form_view` VALUES("25902", "8", "2016-02-08 15:25:54", "202.46.55.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("25903", "2", "2016-02-08 15:44:25", "96.91.131.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("25904", "3", "2016-02-08 16:13:41", "202.46.50.132", "68");
INSERT INTO `wp_gf_form_view` VALUES("25905", "8", "2016-02-08 16:42:21", "202.46.55.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("25906", "3", "2016-02-08 17:01:28", "202.46.58.188", "79");
INSERT INTO `wp_gf_form_view` VALUES("25907", "8", "2016-02-08 17:20:34", "202.46.48.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("25908", "3", "2016-02-08 18:08:22", "202.46.58.193", "96");
INSERT INTO `wp_gf_form_view` VALUES("25909", "3", "2016-02-08 19:05:41", "202.46.55.90", "123");
INSERT INTO `wp_gf_form_view` VALUES("25910", "1", "2016-02-08 19:12:52", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25911", "3", "2016-02-08 20:03:02", "202.46.53.142", "79");
INSERT INTO `wp_gf_form_view` VALUES("25912", "3", "2016-02-08 21:00:21", "202.46.57.198", "200");
INSERT INTO `wp_gf_form_view` VALUES("25913", "8", "2016-02-08 21:48:08", "202.46.56.180", "3");
INSERT INTO `wp_gf_form_view` VALUES("25914", "3", "2016-02-08 22:07:14", "202.46.52.101", "117");
INSERT INTO `wp_gf_form_view` VALUES("25915", "9", "2016-02-08 22:32:43", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("25916", "3", "2016-02-08 23:04:34", "202.46.53.145", "106");
INSERT INTO `wp_gf_form_view` VALUES("25917", "8", "2016-02-08 23:04:34", "202.46.53.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("25918", "3", "2016-02-09 00:01:55", "202.46.51.138", "101");
INSERT INTO `wp_gf_form_view` VALUES("25919", "8", "2016-02-09 00:59:14", "202.46.54.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("25920", "3", "2016-02-09 01:05:03", "96.50.22.88", "98");
INSERT INTO `wp_gf_form_view` VALUES("25921", "8", "2016-02-09 01:18:21", "202.46.55.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("25922", "3", "2016-02-09 02:06:07", "202.46.56.130", "54");
INSERT INTO `wp_gf_form_view` VALUES("25923", "8", "2016-02-09 02:44:20", "202.46.50.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("25924", "3", "2016-02-09 03:03:27", "202.46.55.135", "155");
INSERT INTO `wp_gf_form_view` VALUES("25925", "3", "2016-02-09 04:00:47", "202.46.49.114", "2588");
INSERT INTO `wp_gf_form_view` VALUES("25926", "1", "2016-02-09 04:16:15", "104.131.93.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("25927", "5", "2016-02-09 04:22:55", "104.131.93.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("25928", "6", "2016-02-09 04:30:50", "104.131.93.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("25929", "8", "2016-02-09 04:39:00", "202.46.54.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("25930", "9", "2016-02-09 04:39:20", "104.131.93.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("25931", "3", "2016-02-09 05:00:00", "104.131.93.133", "1733");
INSERT INTO `wp_gf_form_view` VALUES("25932", "2", "2016-02-09 05:19:20", "104.131.93.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("25933", "8", "2016-02-09 05:32:35", "104.131.93.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("25934", "3", "2016-02-09 06:05:00", "202.46.51.178", "98");
INSERT INTO `wp_gf_form_view` VALUES("25935", "3", "2016-02-09 07:02:21", "202.46.56.195", "126");
INSERT INTO `wp_gf_form_view` VALUES("25936", "8", "2016-02-09 07:02:21", "202.46.56.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("25937", "1", "2016-02-09 07:18:55", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25938", "3", "2016-02-09 08:09:13", "202.46.49.68", "76");
INSERT INTO `wp_gf_form_view` VALUES("25939", "8", "2016-02-09 08:09:13", "202.46.49.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("25940", "3", "2016-02-09 09:06:36", "202.46.53.120", "94");
INSERT INTO `wp_gf_form_view` VALUES("25941", "3", "2016-02-09 10:03:53", "202.46.58.95", "89");
INSERT INTO `wp_gf_form_view` VALUES("25942", "8", "2016-02-09 10:38:43", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25943", "3", "2016-02-09 11:01:14", "202.46.55.19", "102");
INSERT INTO `wp_gf_form_view` VALUES("25944", "8", "2016-02-09 11:20:20", "202.46.52.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("25945", "3", "2016-02-09 12:08:06", "202.46.56.38", "705");
INSERT INTO `wp_gf_form_view` VALUES("25946", "8", "2016-02-09 12:08:06", "202.46.56.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("25947", "1", "2016-02-09 12:16:28", "213.163.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("25948", "2", "2016-02-09 12:16:52", "213.163.66.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("25949", "3", "2016-02-09 13:02:49", "46.118.116.135", "102");
INSERT INTO `wp_gf_form_view` VALUES("25950", "3", "2016-02-09 14:02:47", "202.46.53.55", "82");
INSERT INTO `wp_gf_form_view` VALUES("25951", "8", "2016-02-09 14:02:47", "202.46.53.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("25952", "3", "2016-02-09 15:00:06", "202.46.54.195", "443");
INSERT INTO `wp_gf_form_view` VALUES("25953", "2", "2016-02-09 15:28:42", "129.173.204.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("25954", "8", "2016-02-09 15:57:57", "213.163.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("25955", "9", "2016-02-09 15:57:58", "213.163.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("25956", "6", "2016-02-09 15:58:51", "213.163.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("25957", "3", "2016-02-09 16:00:08", "213.163.66.185", "361");
INSERT INTO `wp_gf_form_view` VALUES("25958", "6", "2016-02-09 16:00:26", "213.163.66.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("25959", "8", "2016-02-09 16:00:27", "213.163.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("25960", "5", "2016-02-09 16:00:34", "213.163.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("25961", "9", "2016-02-09 16:01:52", "213.163.66.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("25962", "1", "2016-02-09 16:25:23", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25963", "3", "2016-02-09 17:04:20", "202.46.49.153", "68");
INSERT INTO `wp_gf_form_view` VALUES("25964", "2", "2016-02-09 17:09:49", "46.246.44.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("25965", "8", "2016-02-09 17:52:07", "202.46.50.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("25966", "3", "2016-02-09 18:01:40", "202.46.56.90", "237");
INSERT INTO `wp_gf_form_view` VALUES("25967", "8", "2016-02-09 18:11:13", "202.46.58.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("25968", "2", "2016-02-09 18:22:02", "158.69.225.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("25969", "3", "2016-02-09 19:04:12", "213.163.66.185", "216");
INSERT INTO `wp_gf_form_view` VALUES("25970", "8", "2016-02-09 19:04:41", "213.163.66.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("25971", "9", "2016-02-09 19:05:57", "213.163.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("25972", "3", "2016-02-09 20:01:48", "68.180.229.161", "131");
INSERT INTO `wp_gf_form_view` VALUES("25973", "8", "2016-02-09 20:59:31", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("25974", "3", "2016-02-09 21:00:11", "75.157.175.3", "116");
INSERT INTO `wp_gf_form_view` VALUES("25975", "8", "2016-02-09 21:03:12", "202.46.58.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("25976", "3", "2016-02-09 22:10:11", "202.46.52.146", "56");
INSERT INTO `wp_gf_form_view` VALUES("25977", "8", "2016-02-09 22:35:25", "157.55.39.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("25978", "3", "2016-02-09 23:08:28", "157.55.39.35", "386");
INSERT INTO `wp_gf_form_view` VALUES("25979", "2", "2016-02-09 23:17:47", "64.251.182.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("25980", "3", "2016-02-10 00:15:24", "93.180.64.230", "116");
INSERT INTO `wp_gf_form_view` VALUES("25981", "3", "2016-02-10 01:02:26", "68.180.229.161", "76");
INSERT INTO `wp_gf_form_view` VALUES("25982", "8", "2016-02-10 01:31:07", "202.46.52.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("25983", "3", "2016-02-10 02:04:38", "202.46.52.160", "89");
INSERT INTO `wp_gf_form_view` VALUES("25984", "8", "2016-02-10 02:38:06", "202.46.54.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("25985", "3", "2016-02-10 03:00:35", "167.114.216.118", "98");
INSERT INTO `wp_gf_form_view` VALUES("25986", "3", "2016-02-10 04:01:08", "68.180.229.161", "86");
INSERT INTO `wp_gf_form_view` VALUES("25987", "3", "2016-02-10 05:06:56", "207.46.13.167", "109");
INSERT INTO `wp_gf_form_view` VALUES("25988", "3", "2016-02-10 06:01:25", "24.69.65.158", "74");
INSERT INTO `wp_gf_form_view` VALUES("25989", "3", "2016-02-10 07:00:59", "73.11.120.45", "58");
INSERT INTO `wp_gf_form_view` VALUES("25990", "3", "2016-02-10 08:12:59", "202.46.54.30", "83");
INSERT INTO `wp_gf_form_view` VALUES("25991", "1", "2016-02-10 09:12:27", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("25992", "3", "2016-02-10 09:12:27", "96.44.172.66", "76");
INSERT INTO `wp_gf_form_view` VALUES("25993", "3", "2016-02-10 10:01:02", "157.55.39.35", "47");
INSERT INTO `wp_gf_form_view` VALUES("25994", "8", "2016-02-10 10:26:56", "202.46.51.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("25995", "3", "2016-02-10 11:00:25", "202.46.58.99", "132");
INSERT INTO `wp_gf_form_view` VALUES("25996", "8", "2016-02-10 11:00:25", "202.46.58.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("25997", "3", "2016-02-10 12:05:24", "68.180.229.161", "65");
INSERT INTO `wp_gf_form_view` VALUES("25998", "8", "2016-02-10 12:40:54", "202.46.49.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("25999", "3", "2016-02-10 13:01:36", "157.55.39.35", "185");
INSERT INTO `wp_gf_form_view` VALUES("26000", "3", "2016-02-10 14:17:28", "207.46.13.178", "111");
INSERT INTO `wp_gf_form_view` VALUES("26001", "1", "2016-02-10 14:28:48", "192.99.166.236", "4");
INSERT INTO `wp_gf_form_view` VALUES("26002", "3", "2016-02-10 15:02:18", "68.180.229.161", "73");
INSERT INTO `wp_gf_form_view` VALUES("26003", "3", "2016-02-10 16:00:31", "85.25.201.224", "91");
INSERT INTO `wp_gf_form_view` VALUES("26004", "1", "2016-02-10 16:44:51", "107.172.235.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("26005", "3", "2016-02-10 17:08:49", "202.46.58.138", "149");
INSERT INTO `wp_gf_form_view` VALUES("26006", "8", "2016-02-10 17:42:18", "202.46.58.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("26007", "3", "2016-02-10 18:15:46", "202.46.50.120", "28");
INSERT INTO `wp_gf_form_view` VALUES("26008", "3", "2016-02-10 19:07:27", "157.55.39.35", "136");
INSERT INTO `wp_gf_form_view` VALUES("26009", "1", "2016-02-10 20:04:12", "179.61.252.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("26010", "3", "2016-02-10 20:04:12", "179.61.252.196", "122");
INSERT INTO `wp_gf_form_view` VALUES("26011", "8", "2016-02-10 20:29:43", "202.46.54.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("26012", "3", "2016-02-10 21:03:13", "202.46.58.118", "91");
INSERT INTO `wp_gf_form_view` VALUES("26013", "1", "2016-02-10 21:04:21", "192.210.176.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("26014", "3", "2016-02-10 22:10:12", "202.46.52.79", "207");
INSERT INTO `wp_gf_form_view` VALUES("26015", "2", "2016-02-10 22:27:14", "192.210.200.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("26016", "8", "2016-02-10 22:52:28", "93.180.64.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("26017", "1", "2016-02-10 23:02:36", "173.242.113.137", "4");
INSERT INTO `wp_gf_form_view` VALUES("26018", "3", "2016-02-10 23:02:36", "173.242.113.137", "145");
INSERT INTO `wp_gf_form_view` VALUES("26019", "3", "2016-02-11 00:24:09", "202.46.54.135", "39");
INSERT INTO `wp_gf_form_view` VALUES("26020", "1", "2016-02-11 00:54:25", "173.242.113.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("26021", "8", "2016-02-11 00:57:38", "202.46.53.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("26022", "8", "2016-02-11 01:04:29", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("26023", "3", "2016-02-11 01:04:29", "157.55.39.121", "112");
INSERT INTO `wp_gf_form_view` VALUES("26024", "3", "2016-02-11 02:04:36", "202.46.53.117", "106");
INSERT INTO `wp_gf_form_view` VALUES("26025", "1", "2016-02-11 02:39:36", "173.242.113.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("26026", "3", "2016-02-11 03:02:28", "96.50.108.178", "209");
INSERT INTO `wp_gf_form_view` VALUES("26027", "2", "2016-02-11 03:22:02", "69.58.178.58", "3");
INSERT INTO `wp_gf_form_view` VALUES("26028", "3", "2016-02-11 04:18:34", "202.46.56.14", "88");
INSERT INTO `wp_gf_form_view` VALUES("26029", "3", "2016-02-11 05:02:08", "68.180.229.161", "53");
INSERT INTO `wp_gf_form_view` VALUES("26030", "1", "2016-02-11 05:58:48", "198.23.188.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("26031", "3", "2016-02-11 06:07:21", "62.210.162.184", "83");
INSERT INTO `wp_gf_form_view` VALUES("26032", "2", "2016-02-11 07:14:36", "198.23.188.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("26033", "3", "2016-02-11 07:14:38", "198.23.188.204", "36");
INSERT INTO `wp_gf_form_view` VALUES("26034", "3", "2016-02-11 08:02:08", "66.249.74.106", "60");
INSERT INTO `wp_gf_form_view` VALUES("26035", "3", "2016-02-11 09:29:08", "62.210.162.184", "132");
INSERT INTO `wp_gf_form_view` VALUES("26036", "3", "2016-02-11 10:09:15", "66.249.74.104", "30");
INSERT INTO `wp_gf_form_view` VALUES("26037", "3", "2016-02-11 11:05:55", "178.73.218.37", "61");
INSERT INTO `wp_gf_form_view` VALUES("26038", "3", "2016-02-11 12:00:17", "157.55.39.35", "26");
INSERT INTO `wp_gf_form_view` VALUES("26039", "3", "2016-02-11 13:01:58", "52.36.34.170", "234");
INSERT INTO `wp_gf_form_view` VALUES("26040", "8", "2016-02-11 13:20:00", "40.77.167.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("26041", "5", "2016-02-11 13:20:12", "40.77.167.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("26042", "9", "2016-02-11 13:20:23", "157.55.39.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("26043", "3", "2016-02-11 14:02:28", "178.73.218.37", "109");
INSERT INTO `wp_gf_form_view` VALUES("26044", "2", "2016-02-11 14:44:02", "185.107.26.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("26045", "7", "2016-02-11 14:58:24", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26046", "3", "2016-02-11 15:07:46", "51.255.65.40", "56");
INSERT INTO `wp_gf_form_view` VALUES("26047", "9", "2016-02-11 15:58:34", "76.70.18.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("26048", "8", "2016-02-11 15:58:34", "76.70.18.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("26049", "2", "2016-02-11 16:10:50", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26050", "3", "2016-02-11 16:10:50", "68.180.229.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("26051", "3", "2016-02-11 17:05:27", "93.180.64.230", "90");
INSERT INTO `wp_gf_form_view` VALUES("26052", "3", "2016-02-11 18:14:29", "66.249.74.104", "88");
INSERT INTO `wp_gf_form_view` VALUES("26053", "8", "2016-02-11 18:49:16", "202.46.57.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26054", "3", "2016-02-11 19:16:31", "157.55.39.35", "186");
INSERT INTO `wp_gf_form_view` VALUES("26055", "5", "2016-02-11 20:24:08", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26056", "3", "2016-02-11 20:24:08", "68.180.229.161", "179");
INSERT INTO `wp_gf_form_view` VALUES("26057", "3", "2016-02-11 21:06:14", "23.31.24.253", "352");
INSERT INTO `wp_gf_form_view` VALUES("26058", "2", "2016-02-11 21:07:28", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("26059", "3", "2016-02-11 22:03:31", "178.137.93.235", "122");
INSERT INTO `wp_gf_form_view` VALUES("26060", "3", "2016-02-11 23:23:32", "62.210.162.184", "124");
INSERT INTO `wp_gf_form_view` VALUES("26061", "2", "2016-02-11 23:58:46", "188.166.10.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("26062", "3", "2016-02-12 00:04:55", "188.166.10.164", "97");
INSERT INTO `wp_gf_form_view` VALUES("26063", "3", "2016-02-12 01:20:32", "207.46.13.101", "31");
INSERT INTO `wp_gf_form_view` VALUES("26064", "3", "2016-02-12 02:18:52", "209.52.88.239", "243");
INSERT INTO `wp_gf_form_view` VALUES("26065", "3", "2016-02-12 03:44:42", "66.249.74.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("26066", "3", "2016-02-12 04:15:05", "66.249.74.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("26067", "3", "2016-02-12 05:14:59", "202.46.58.126", "52");
INSERT INTO `wp_gf_form_view` VALUES("26068", "3", "2016-02-12 06:05:01", "68.180.229.161", "284");
INSERT INTO `wp_gf_form_view` VALUES("26069", "2", "2016-02-12 06:30:01", "31.220.30.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("26070", "1", "2016-02-12 06:33:12", "155.94.176.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("26071", "3", "2016-02-12 07:32:17", "64.233.172.176", "41");
INSERT INTO `wp_gf_form_view` VALUES("26072", "3", "2016-02-12 08:04:52", "31.28.194.171", "73");
INSERT INTO `wp_gf_form_view` VALUES("26073", "2", "2016-02-12 08:19:48", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26074", "9", "2016-02-12 08:22:58", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26075", "1", "2016-02-12 08:57:52", "104.144.250.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("26076", "3", "2016-02-12 09:18:48", "46.118.114.111", "100");
INSERT INTO `wp_gf_form_view` VALUES("26077", "2", "2016-02-12 10:06:09", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26078", "3", "2016-02-12 10:06:09", "62.210.162.184", "149");
INSERT INTO `wp_gf_form_view` VALUES("26079", "3", "2016-02-12 11:06:56", "66.249.74.106", "83");
INSERT INTO `wp_gf_form_view` VALUES("26080", "8", "2016-02-12 11:20:40", "202.46.51.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("26081", "2", "2016-02-12 11:50:04", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26082", "3", "2016-02-12 12:23:49", "62.210.162.184", "42");
INSERT INTO `wp_gf_form_view` VALUES("26083", "3", "2016-02-12 13:51:15", "207.46.13.29", "10");
INSERT INTO `wp_gf_form_view` VALUES("26084", "3", "2016-02-12 14:07:18", "62.210.162.184", "11");
INSERT INTO `wp_gf_form_view` VALUES("26085", "1", "2016-02-12 15:40:22", "195.154.58.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("26086", "3", "2016-02-12 15:40:22", "195.154.58.134", "92");
INSERT INTO `wp_gf_form_view` VALUES("26087", "3", "2016-02-12 16:00:40", "24.69.85.51", "239");
INSERT INTO `wp_gf_form_view` VALUES("26088", "1", "2016-02-12 16:39:26", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26089", "3", "2016-02-12 17:33:30", "207.46.13.29", "91");
INSERT INTO `wp_gf_form_view` VALUES("26090", "3", "2016-02-12 18:16:45", "68.180.229.161", "31");
INSERT INTO `wp_gf_form_view` VALUES("26091", "3", "2016-02-12 19:00:29", "23.236.210.98", "138");
INSERT INTO `wp_gf_form_view` VALUES("26092", "3", "2016-02-12 20:15:37", "62.210.162.184", "396");
INSERT INTO `wp_gf_form_view` VALUES("26093", "8", "2016-02-12 20:32:37", "202.46.53.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("26094", "2", "2016-02-12 20:48:29", "68.15.6.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("26095", "3", "2016-02-12 21:01:22", "204.191.251.42", "125");
INSERT INTO `wp_gf_form_view` VALUES("26096", "3", "2016-02-12 22:24:46", "131.137.245.207", "115");
INSERT INTO `wp_gf_form_view` VALUES("26097", "3", "2016-02-12 23:02:35", "62.210.162.184", "69");
INSERT INTO `wp_gf_form_view` VALUES("26098", "3", "2016-02-13 00:10:00", "52.71.155.178", "145");
INSERT INTO `wp_gf_form_view` VALUES("26099", "3", "2016-02-13 01:06:57", "68.180.229.161", "114");
INSERT INTO `wp_gf_form_view` VALUES("26100", "8", "2016-02-13 01:29:23", "202.46.55.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("26101", "1", "2016-02-13 02:00:45", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26102", "3", "2016-02-13 02:00:45", "96.44.172.66", "340");
INSERT INTO `wp_gf_form_view` VALUES("26103", "3", "2016-02-13 03:09:05", "66.249.74.102", "121");
INSERT INTO `wp_gf_form_view` VALUES("26104", "8", "2016-02-13 03:43:20", "202.46.58.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("26105", "3", "2016-02-13 04:09:11", "157.55.39.35", "50");
INSERT INTO `wp_gf_form_view` VALUES("26106", "3", "2016-02-13 05:12:18", "66.249.74.106", "78");
INSERT INTO `wp_gf_form_view` VALUES("26107", "8", "2016-02-13 05:23:48", "202.46.48.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("26108", "3", "2016-02-13 06:25:35", "46.118.114.111", "80");
INSERT INTO `wp_gf_form_view` VALUES("26109", "3", "2016-02-13 07:02:44", "24.68.120.105", "61");
INSERT INTO `wp_gf_form_view` VALUES("26110", "3", "2016-02-13 08:24:25", "157.55.39.90", "161");
INSERT INTO `wp_gf_form_view` VALUES("26111", "3", "2016-02-13 09:05:13", "178.137.93.235", "92");
INSERT INTO `wp_gf_form_view` VALUES("26112", "3", "2016-02-13 09:05:13", "178.137.93.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("26113", "2", "2016-02-13 10:07:41", "198.23.188.239", "4");
INSERT INTO `wp_gf_form_view` VALUES("26114", "3", "2016-02-13 10:07:41", "198.23.188.239", "163");
INSERT INTO `wp_gf_form_view` VALUES("26115", "3", "2016-02-13 11:00:50", "178.137.17.196", "50");
INSERT INTO `wp_gf_form_view` VALUES("26116", "2", "2016-02-13 11:54:20", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26117", "3", "2016-02-13 12:10:20", "62.210.162.184", "64");
INSERT INTO `wp_gf_form_view` VALUES("26118", "3", "2016-02-13 13:15:36", "202.46.57.73", "60");
INSERT INTO `wp_gf_form_view` VALUES("26119", "9", "2016-02-13 13:17:05", "157.55.39.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("26120", "2", "2016-02-13 13:35:55", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26121", "1", "2016-02-13 13:51:26", "51.255.65.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("26122", "3", "2016-02-13 14:01:03", "66.249.74.106", "316");
INSERT INTO `wp_gf_form_view` VALUES("26123", "3", "2016-02-13 15:00:53", "23.236.210.98", "71");
INSERT INTO `wp_gf_form_view` VALUES("26124", "2", "2016-02-13 15:16:16", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26125", "3", "2016-02-13 16:01:07", "157.55.39.90", "403");
INSERT INTO `wp_gf_form_view` VALUES("26126", "2", "2016-02-13 16:25:03", "96.91.131.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("26127", "1", "2016-02-13 16:39:14", "107.172.237.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("26128", "3", "2016-02-13 17:07:09", "178.137.93.235", "467");
INSERT INTO `wp_gf_form_view` VALUES("26129", "9", "2016-02-13 17:32:05", "157.55.39.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("26130", "7", "2016-02-13 17:37:21", "207.46.13.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("26131", "3", "2016-02-13 18:07:41", "173.234.159.250", "52");
INSERT INTO `wp_gf_form_view` VALUES("26132", "3", "2016-02-13 19:08:52", "185.107.26.112", "176");
INSERT INTO `wp_gf_form_view` VALUES("26133", "3", "2016-02-13 20:06:24", "193.201.227.106", "106");
INSERT INTO `wp_gf_form_view` VALUES("26134", "3", "2016-02-13 21:33:01", "209.121.46.58", "60");
INSERT INTO `wp_gf_form_view` VALUES("26135", "3", "2016-02-13 22:04:29", "173.252.90.122", "41");
INSERT INTO `wp_gf_form_view` VALUES("26136", "3", "2016-02-13 23:03:12", "207.6.122.94", "97");
INSERT INTO `wp_gf_form_view` VALUES("26137", "3", "2016-02-14 00:16:41", "66.249.74.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("26138", "1", "2016-02-14 00:35:58", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26139", "3", "2016-02-14 01:08:30", "69.50.234.141", "183");
INSERT INTO `wp_gf_form_view` VALUES("26140", "3", "2016-02-14 02:10:17", "66.249.74.106", "41");
INSERT INTO `wp_gf_form_view` VALUES("26141", "3", "2016-02-14 03:17:12", "66.249.74.104", "41");
INSERT INTO `wp_gf_form_view` VALUES("26142", "3", "2016-02-14 04:12:56", "179.61.128.156", "137");
INSERT INTO `wp_gf_form_view` VALUES("26143", "3", "2016-02-14 05:03:33", "66.249.74.104", "104");
INSERT INTO `wp_gf_form_view` VALUES("26144", "6", "2016-02-14 05:50:52", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26145", "3", "2016-02-14 06:02:15", "62.210.162.184", "72");
INSERT INTO `wp_gf_form_view` VALUES("26146", "3", "2016-02-14 07:03:43", "66.249.74.104", "51");
INSERT INTO `wp_gf_form_view` VALUES("26147", "2", "2016-02-14 07:04:38", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26148", "3", "2016-02-14 08:00:24", "66.249.74.106", "192");
INSERT INTO `wp_gf_form_view` VALUES("26149", "9", "2016-02-14 08:24:17", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26150", "1", "2016-02-14 08:33:37", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26151", "3", "2016-02-14 09:10:45", "23.106.216.107", "253");
INSERT INTO `wp_gf_form_view` VALUES("26152", "3", "2016-02-14 10:28:25", "198.50.212.193", "170");
INSERT INTO `wp_gf_form_view` VALUES("26153", "3", "2016-02-14 11:07:44", "62.210.162.184", "54");
INSERT INTO `wp_gf_form_view` VALUES("26154", "3", "2016-02-14 12:45:35", "66.249.74.104", "31");
INSERT INTO `wp_gf_form_view` VALUES("26155", "3", "2016-02-14 13:22:38", "66.249.74.104", "88");
INSERT INTO `wp_gf_form_view` VALUES("26156", "8", "2016-02-14 13:45:46", "202.46.55.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("26157", "3", "2016-02-14 14:00:15", "178.137.93.235", "352");
INSERT INTO `wp_gf_form_view` VALUES("26158", "2", "2016-02-14 14:02:00", "173.8.38.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("26159", "3", "2016-02-14 15:00:50", "192.210.200.21", "138");
INSERT INTO `wp_gf_form_view` VALUES("26160", "3", "2016-02-14 16:17:37", "66.249.74.102", "61");
INSERT INTO `wp_gf_form_view` VALUES("26161", "3", "2016-02-14 17:05:32", "64.180.73.10", "125");
INSERT INTO `wp_gf_form_view` VALUES("26162", "2", "2016-02-14 17:58:49", "23.106.216.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("26163", "3", "2016-02-14 18:03:42", "157.55.39.140", "51");
INSERT INTO `wp_gf_form_view` VALUES("26164", "3", "2016-02-14 19:06:07", "155.94.170.91", "276");
INSERT INTO `wp_gf_form_view` VALUES("26165", "1", "2016-02-14 19:39:02", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26166", "3", "2016-02-14 20:08:23", "62.210.162.184", "45");
INSERT INTO `wp_gf_form_view` VALUES("26167", "8", "2016-02-14 20:49:46", "202.46.52.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("26168", "3", "2016-02-14 21:09:46", "157.55.39.245", "275");
INSERT INTO `wp_gf_form_view` VALUES("26169", "2", "2016-02-14 21:24:21", "45.32.131.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("26170", "8", "2016-02-14 21:24:45", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26171", "1", "2016-02-14 21:39:28", "173.254.235.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("26172", "3", "2016-02-14 22:08:48", "46.246.44.145", "51");
INSERT INTO `wp_gf_form_view` VALUES("26173", "3", "2016-02-14 23:23:43", "62.210.162.184", "58");
INSERT INTO `wp_gf_form_view` VALUES("26174", "3", "2016-02-15 00:13:51", "114.97.51.187", "165");
INSERT INTO `wp_gf_form_view` VALUES("26175", "3", "2016-02-15 01:03:24", "184.66.224.120", "2090");
INSERT INTO `wp_gf_form_view` VALUES("26176", "2", "2016-02-15 01:18:16", "188.143.234.155", "7");
INSERT INTO `wp_gf_form_view` VALUES("26177", "3", "2016-02-15 02:00:05", "188.143.234.155", "2626");
INSERT INTO `wp_gf_form_view` VALUES("26178", "2", "2016-02-15 02:00:49", "188.143.234.155", "8");
INSERT INTO `wp_gf_form_view` VALUES("26179", "3", "2016-02-15 03:10:25", "62.210.162.184", "261");
INSERT INTO `wp_gf_form_view` VALUES("26180", "2", "2016-02-15 03:29:02", "58.11.116.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("26181", "3", "2016-02-15 04:06:18", "51.255.65.79", "875");
INSERT INTO `wp_gf_form_view` VALUES("26182", "8", "2016-02-15 04:25:30", "188.143.234.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("26183", "9", "2016-02-15 04:25:30", "188.143.234.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("26184", "2", "2016-02-15 04:33:41", "188.143.234.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("26185", "3", "2016-02-15 05:01:23", "24.68.117.57", "199");
INSERT INTO `wp_gf_form_view` VALUES("26186", "6", "2016-02-15 05:04:36", "188.143.234.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("26187", "1", "2016-02-15 05:41:54", "201.173.152.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("26188", "3", "2016-02-15 06:04:04", "218.66.36.42", "250");
INSERT INTO `wp_gf_form_view` VALUES("26189", "8", "2016-02-15 06:04:09", "221.178.182.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("26190", "1", "2016-02-15 06:57:50", "107.173.212.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("26191", "3", "2016-02-15 07:12:12", "66.249.74.102", "30");
INSERT INTO `wp_gf_form_view` VALUES("26192", "3", "2016-02-15 08:16:06", "82.76.87.154", "342");
INSERT INTO `wp_gf_form_view` VALUES("26193", "2", "2016-02-15 08:17:05", "82.76.87.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("26194", "8", "2016-02-15 09:02:25", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26195", "3", "2016-02-15 09:02:25", "68.180.229.161", "195");
INSERT INTO `wp_gf_form_view` VALUES("26196", "1", "2016-02-15 09:13:55", "104.223.69.107", "5");
INSERT INTO `wp_gf_form_view` VALUES("26197", "3", "2016-02-15 10:00:10", "68.180.229.161", "30");
INSERT INTO `wp_gf_form_view` VALUES("26198", "1", "2016-02-15 11:03:56", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26199", "3", "2016-02-15 11:03:56", "62.210.162.184", "30");
INSERT INTO `wp_gf_form_view` VALUES("26200", "3", "2016-02-15 12:05:56", "157.55.39.19", "74");
INSERT INTO `wp_gf_form_view` VALUES("26201", "1", "2016-02-15 12:53:00", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26202", "3", "2016-02-15 13:11:37", "66.249.74.106", "34");
INSERT INTO `wp_gf_form_view` VALUES("26203", "3", "2016-02-15 14:15:10", "202.46.54.133", "75");
INSERT INTO `wp_gf_form_view` VALUES("26204", "8", "2016-02-15 14:32:17", "202.46.52.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("26205", "1", "2016-02-15 14:36:53", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26206", "3", "2016-02-15 15:24:45", "199.21.99.202", "72");
INSERT INTO `wp_gf_form_view` VALUES("26207", "3", "2016-02-15 16:02:55", "46.118.114.111", "61");
INSERT INTO `wp_gf_form_view` VALUES("26208", "3", "2016-02-15 17:27:27", "178.137.17.196", "40");
INSERT INTO `wp_gf_form_view` VALUES("26209", "7", "2016-02-15 17:35:27", "157.55.39.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("26210", "3", "2016-02-15 18:22:12", "66.249.74.104", "61");
INSERT INTO `wp_gf_form_view` VALUES("26211", "3", "2016-02-15 19:04:16", "66.249.74.104", "470");
INSERT INTO `wp_gf_form_view` VALUES("26212", "5", "2016-02-15 19:42:34", "157.55.39.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("26213", "3", "2016-02-15 20:08:47", "96.50.48.74", "211");
INSERT INTO `wp_gf_form_view` VALUES("26214", "2", "2016-02-15 20:24:12", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("26215", "3", "2016-02-15 21:02:52", "96.54.6.249", "126");
INSERT INTO `wp_gf_form_view` VALUES("26216", "8", "2016-02-15 21:59:28", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26217", "3", "2016-02-15 22:09:40", "64.114.222.250", "104");
INSERT INTO `wp_gf_form_view` VALUES("26218", "3", "2016-02-15 23:00:26", "216.232.157.182", "218");
INSERT INTO `wp_gf_form_view` VALUES("26219", "1", "2016-02-15 23:50:40", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26220", "3", "2016-02-16 00:14:31", "157.55.39.254", "342");
INSERT INTO `wp_gf_form_view` VALUES("26221", "8", "2016-02-16 00:16:39", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26222", "9", "2016-02-16 00:39:52", "157.55.39.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("26223", "3", "2016-02-16 01:47:06", "68.180.229.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("26224", "3", "2016-02-16 02:07:22", "62.210.162.184", "143");
INSERT INTO `wp_gf_form_view` VALUES("26225", "3", "2016-02-16 03:02:27", "104.168.53.152", "72");
INSERT INTO `wp_gf_form_view` VALUES("26226", "3", "2016-02-16 04:08:31", "5.255.75.32", "114");
INSERT INTO `wp_gf_form_view` VALUES("26227", "3", "2016-02-16 05:36:49", "216.232.0.232", "70");
INSERT INTO `wp_gf_form_view` VALUES("26228", "3", "2016-02-16 05:36:49", "216.232.0.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("26229", "3", "2016-02-16 06:07:18", "5.9.94.207", "110");
INSERT INTO `wp_gf_form_view` VALUES("26230", "3", "2016-02-16 07:20:47", "155.94.176.175", "44");
INSERT INTO `wp_gf_form_view` VALUES("26231", "3", "2016-02-16 08:03:17", "68.180.229.161", "84");
INSERT INTO `wp_gf_form_view` VALUES("26232", "1", "2016-02-16 08:20:02", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26233", "3", "2016-02-16 09:16:49", "207.46.13.181", "10");
INSERT INTO `wp_gf_form_view` VALUES("26234", "3", "2016-02-16 10:02:05", "66.249.74.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("26235", "3", "2016-02-16 11:10:32", "157.55.39.239", "20");
INSERT INTO `wp_gf_form_view` VALUES("26236", "3", "2016-02-16 12:42:19", "46.118.114.111", "20");
INSERT INTO `wp_gf_form_view` VALUES("26237", "3", "2016-02-16 13:01:20", "62.210.148.247", "103");
INSERT INTO `wp_gf_form_view` VALUES("26238", "9", "2016-02-16 13:01:40", "62.210.148.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("26239", "8", "2016-02-16 13:01:52", "62.210.148.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("26240", "3", "2016-02-16 14:03:17", "66.249.74.104", "294");
INSERT INTO `wp_gf_form_view` VALUES("26241", "8", "2016-02-16 14:43:37", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26242", "3", "2016-02-16 15:26:03", "202.46.51.167", "2227");
INSERT INTO `wp_gf_form_view` VALUES("26243", "1", "2016-02-16 15:37:12", "162.243.84.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("26244", "5", "2016-02-16 15:43:52", "162.243.84.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("26245", "6", "2016-02-16 15:51:58", "162.243.84.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("26246", "9", "2016-02-16 15:59:38", "162.243.84.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("26247", "3", "2016-02-16 16:00:37", "162.243.84.55", "4317");
INSERT INTO `wp_gf_form_view` VALUES("26248", "2", "2016-02-16 16:21:23", "23.31.24.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("26249", "8", "2016-02-16 16:25:37", "202.46.51.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("26250", "3", "2016-02-16 17:03:58", "202.46.50.90", "166");
INSERT INTO `wp_gf_form_view` VALUES("26251", "1", "2016-02-16 17:50:59", "206.19.211.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("26252", "3", "2016-02-16 18:02:16", "202.46.49.148", "228");
INSERT INTO `wp_gf_form_view` VALUES("26253", "8", "2016-02-16 18:58:52", "202.46.52.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("26254", "3", "2016-02-16 19:00:11", "207.46.13.181", "526");
INSERT INTO `wp_gf_form_view` VALUES("26255", "1", "2016-02-16 19:03:09", "134.87.151.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("26256", "2", "2016-02-16 19:31:48", "131.137.245.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("26257", "8", "2016-02-16 19:40:39", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26258", "3", "2016-02-16 20:04:35", "202.46.51.182", "226");
INSERT INTO `wp_gf_form_view` VALUES("26259", "8", "2016-02-16 20:21:01", "202.46.50.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("26260", "3", "2016-02-16 21:04:25", "202.46.54.108", "343");
INSERT INTO `wp_gf_form_view` VALUES("26261", "8", "2016-02-16 21:19:11", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26262", "3", "2016-02-16 22:01:12", "66.249.74.106", "247");
INSERT INTO `wp_gf_form_view` VALUES("26263", "8", "2016-02-16 22:43:01", "202.46.54.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("26264", "3", "2016-02-16 23:00:45", "185.107.26.186", "399");
INSERT INTO `wp_gf_form_view` VALUES("26265", "1", "2016-02-16 23:01:43", "99.199.3.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("26266", "8", "2016-02-16 23:37:48", "202.46.53.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("26267", "3", "2016-02-17 00:05:11", "202.46.56.90", "207");
INSERT INTO `wp_gf_form_view` VALUES("26268", "3", "2016-02-17 01:01:31", "24.69.85.51", "287");
INSERT INTO `wp_gf_form_view` VALUES("26269", "8", "2016-02-17 01:43:46", "202.46.58.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("26270", "3", "2016-02-17 02:00:12", "202.46.54.192", "272");
INSERT INTO `wp_gf_form_view` VALUES("26271", "8", "2016-02-17 02:00:12", "202.46.54.192", "2");
INSERT INTO `wp_gf_form_view` VALUES("26272", "3", "2016-02-17 03:00:27", "202.46.53.175", "366");
INSERT INTO `wp_gf_form_view` VALUES("26273", "8", "2016-02-17 03:22:21", "202.46.57.186", "2");
INSERT INTO `wp_gf_form_view` VALUES("26274", "6", "2016-02-17 03:34:16", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26275", "3", "2016-02-17 04:00:42", "202.46.53.142", "257");
INSERT INTO `wp_gf_form_view` VALUES("26276", "8", "2016-02-17 04:28:05", "202.46.51.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("26277", "3", "2016-02-17 05:02:35", "77.75.79.109", "291");
INSERT INTO `wp_gf_form_view` VALUES("26278", "1", "2016-02-17 05:06:22", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26279", "3", "2016-02-17 06:01:14", "202.46.51.89", "244");
INSERT INTO `wp_gf_form_view` VALUES("26280", "8", "2016-02-17 06:11:38", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26281", "3", "2016-02-17 07:05:13", "66.249.74.102", "276");
INSERT INTO `wp_gf_form_view` VALUES("26282", "8", "2016-02-17 07:45:17", "202.46.50.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("26283", "3", "2016-02-17 08:01:42", "202.46.52.76", "524");
INSERT INTO `wp_gf_form_view` VALUES("26284", "2", "2016-02-17 08:46:46", "70.183.228.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("26285", "3", "2016-02-17 09:03:54", "202.46.54.138", "243");
INSERT INTO `wp_gf_form_view` VALUES("26286", "3", "2016-02-17 10:01:18", "202.46.49.93", "351");
INSERT INTO `wp_gf_form_view` VALUES("26287", "8", "2016-02-17 10:12:16", "202.46.56.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("26288", "3", "2016-02-17 11:01:33", "202.46.57.170", "283");
INSERT INTO `wp_gf_form_view` VALUES("26289", "3", "2016-02-17 12:01:48", "202.46.52.44", "501");
INSERT INTO `wp_gf_form_view` VALUES("26290", "8", "2016-02-17 12:01:48", "202.46.52.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("26291", "2", "2016-02-17 12:49:28", "50.242.170.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("26292", "3", "2016-02-17 13:00:48", "62.210.162.184", "265");
INSERT INTO `wp_gf_form_view` VALUES("26293", "8", "2016-02-17 13:25:15", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26294", "3", "2016-02-17 14:00:22", "202.46.58.123", "253");
INSERT INTO `wp_gf_form_view` VALUES("26295", "1", "2016-02-17 14:35:56", "37.156.74.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("26296", "8", "2016-02-17 14:49:40", "202.46.57.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("26297", "3", "2016-02-17 15:00:37", "202.46.48.82", "618");
INSERT INTO `wp_gf_form_view` VALUES("26298", "2", "2016-02-17 15:20:23", "50.242.171.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26299", "8", "2016-02-17 15:28:00", "202.46.56.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("26300", "1", "2016-02-17 15:51:33", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26301", "3", "2016-02-17 16:00:52", "202.46.49.69", "243");
INSERT INTO `wp_gf_form_view` VALUES("26302", "3", "2016-02-17 17:01:08", "202.46.51.180", "589");
INSERT INTO `wp_gf_form_view` VALUES("26303", "8", "2016-02-17 17:05:37", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26304", "2", "2016-02-17 17:31:23", "104.236.69.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("26305", "3", "2016-02-17 18:01:22", "202.46.54.206", "362");
INSERT INTO `wp_gf_form_view` VALUES("26306", "1", "2016-02-17 18:10:35", "172.245.169.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("26307", "8", "2016-02-17 18:17:48", "202.46.48.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("26308", "3", "2016-02-17 19:01:40", "202.46.58.185", "641");
INSERT INTO `wp_gf_form_view` VALUES("26309", "2", "2016-02-17 19:13:50", "50.241.139.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("26310", "8", "2016-02-17 19:18:03", "202.46.55.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("26311", "1", "2016-02-17 19:31:47", "162.156.84.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("26312", "1", "2016-02-17 20:01:21", "123.54.1.41", "4");
INSERT INTO `wp_gf_form_view` VALUES("26313", "3", "2016-02-17 20:01:21", "123.54.1.41", "572");
INSERT INTO `wp_gf_form_view` VALUES("26314", "8", "2016-02-17 20:23:47", "202.46.55.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("26315", "3", "2016-02-17 21:02:07", "202.46.55.64", "276");
INSERT INTO `wp_gf_form_view` VALUES("26316", "3", "2016-02-17 22:02:23", "202.46.52.67", "212");
INSERT INTO `wp_gf_form_view` VALUES("26317", "8", "2016-02-17 22:18:49", "202.46.52.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("26318", "3", "2016-02-17 23:02:38", "202.46.57.79", "208");
INSERT INTO `wp_gf_form_view` VALUES("26319", "8", "2016-02-17 23:19:04", "202.46.58.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("26320", "3", "2016-02-18 00:02:55", "202.46.57.179", "208");
INSERT INTO `wp_gf_form_view` VALUES("26321", "8", "2016-02-18 00:24:47", "202.46.52.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("26322", "3", "2016-02-18 01:00:35", "66.249.74.106", "494");
INSERT INTO `wp_gf_form_view` VALUES("26323", "2", "2016-02-18 01:07:13", "70.188.114.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("26324", "8", "2016-02-18 01:16:22", "202.46.49.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("26325", "3", "2016-02-18 02:00:18", "202.46.56.90", "552");
INSERT INTO `wp_gf_form_view` VALUES("26326", "2", "2016-02-18 02:25:01", "79.116.26.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("26327", "8", "2016-02-18 02:28:33", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26328", "8", "2016-02-18 03:01:48", "202.46.50.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("26329", "3", "2016-02-18 03:01:48", "202.46.50.92", "160");
INSERT INTO `wp_gf_form_view` VALUES("26330", "3", "2016-02-18 04:02:16", "66.249.74.106", "244");
INSERT INTO `wp_gf_form_view` VALUES("26331", "8", "2016-02-18 04:29:39", "202.46.58.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("26332", "3", "2016-02-18 05:04:48", "202.46.49.63", "205");
INSERT INTO `wp_gf_form_view` VALUES("26333", "3", "2016-02-18 06:04:28", "66.249.74.104", "936");
INSERT INTO `wp_gf_form_view` VALUES("26334", "8", "2016-02-18 06:20:38", "157.55.39.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("26335", "7", "2016-02-18 06:21:24", "157.55.39.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("26336", "9", "2016-02-18 06:22:39", "207.46.13.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("26337", "3", "2016-02-18 07:02:02", "178.62.254.218", "174");
INSERT INTO `wp_gf_form_view` VALUES("26338", "3", "2016-02-18 08:00:31", "202.46.52.206", "298");
INSERT INTO `wp_gf_form_view` VALUES("26339", "8", "2016-02-18 08:59:36", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26340", "3", "2016-02-18 09:02:02", "202.46.52.107", "312");
INSERT INTO `wp_gf_form_view` VALUES("26341", "1", "2016-02-18 09:45:01", "46.105.86.213", "5");
INSERT INTO `wp_gf_form_view` VALUES("26342", "3", "2016-02-18 10:03:31", "202.46.58.85", "193");
INSERT INTO `wp_gf_form_view` VALUES("26343", "3", "2016-02-18 11:04:19", "66.249.69.45", "172");
INSERT INTO `wp_gf_form_view` VALUES("26344", "3", "2016-02-18 12:02:06", "66.249.74.102", "185");
INSERT INTO `wp_gf_form_view` VALUES("26345", "3", "2016-02-18 13:08:01", "202.46.50.125", "143");
INSERT INTO `wp_gf_form_view` VALUES("26346", "8", "2016-02-18 13:08:02", "202.46.50.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("26347", "3", "2016-02-18 14:00:46", "202.46.49.123", "570");
INSERT INTO `wp_gf_form_view` VALUES("26348", "8", "2016-02-18 14:20:23", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26349", "9", "2016-02-18 14:27:35", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("26350", "2", "2016-02-18 14:30:22", "207.46.13.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("26351", "3", "2016-02-18 15:02:15", "202.46.58.77", "190");
INSERT INTO `wp_gf_form_view` VALUES("26352", "6", "2016-02-18 15:19:40", "5.9.106.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("26353", "3", "2016-02-18 16:03:45", "202.46.48.13", "252");
INSERT INTO `wp_gf_form_view` VALUES("26354", "2", "2016-02-18 16:13:17", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26355", "9", "2016-02-18 16:54:25", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("26356", "3", "2016-02-18 17:02:18", "66.249.74.106", "277");
INSERT INTO `wp_gf_form_view` VALUES("26357", "3", "2016-02-18 18:03:01", "66.249.74.104", "344");
INSERT INTO `wp_gf_form_view` VALUES("26358", "3", "2016-02-18 19:07:47", "66.249.74.102", "214");
INSERT INTO `wp_gf_form_view` VALUES("26359", "3", "2016-02-18 20:00:58", "202.46.49.145", "279");
INSERT INTO `wp_gf_form_view` VALUES("26360", "8", "2016-02-18 20:11:17", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26361", "1", "2016-02-18 20:42:06", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26362", "3", "2016-02-18 21:00:40", "68.180.229.161", "292");
INSERT INTO `wp_gf_form_view` VALUES("26363", "1", "2016-02-18 21:15:07", "24.69.66.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("26364", "3", "2016-02-18 22:00:11", "66.249.74.106", "338");
INSERT INTO `wp_gf_form_view` VALUES("26365", "3", "2016-02-18 23:05:28", "202.46.51.18", "182");
INSERT INTO `wp_gf_form_view` VALUES("26366", "8", "2016-02-18 23:15:56", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26367", "1", "2016-02-18 23:56:45", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26368", "3", "2016-02-19 00:05:01", "66.249.74.104", "268");
INSERT INTO `wp_gf_form_view` VALUES("26369", "8", "2016-02-19 00:56:34", "202.46.51.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("26370", "3", "2016-02-19 01:02:20", "202.46.50.134", "424");
INSERT INTO `wp_gf_form_view` VALUES("26371", "8", "2016-02-19 01:42:48", "202.46.52.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("26372", "3", "2016-02-19 02:00:08", "202.46.58.14", "669");
INSERT INTO `wp_gf_form_view` VALUES("26373", "2", "2016-02-19 02:02:19", "87.16.176.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("26374", "8", "2016-02-19 02:52:09", "202.46.54.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("26375", "9", "2016-02-19 02:57:57", "202.46.56.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("26376", "3", "2016-02-19 03:00:49", "202.46.49.60", "444");
INSERT INTO `wp_gf_form_view` VALUES("26377", "8", "2016-02-19 03:38:23", "202.46.54.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26378", "3", "2016-02-19 04:01:30", "202.46.56.75", "1423");
INSERT INTO `wp_gf_form_view` VALUES("26379", "2", "2016-02-19 04:03:53", "89.144.22.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("26380", "1", "2016-02-19 04:31:07", "185.75.241.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("26381", "8", "2016-02-19 04:36:20", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("26382", "3", "2016-02-19 05:02:11", "202.46.50.74", "457");
INSERT INTO `wp_gf_form_view` VALUES("26383", "2", "2016-02-19 05:03:27", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26384", "8", "2016-02-19 05:36:52", "202.46.57.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("26385", "1", "2016-02-19 05:50:16", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26386", "3", "2016-02-19 06:00:00", "202.46.52.162", "446");
INSERT INTO `wp_gf_form_view` VALUES("26387", "8", "2016-02-19 06:14:26", "202.46.51.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("26388", "3", "2016-02-19 07:00:41", "202.46.52.208", "791");
INSERT INTO `wp_gf_form_view` VALUES("26389", "2", "2016-02-19 07:07:15", "50.254.100.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("26390", "3", "2016-02-19 08:01:21", "202.46.53.178", "171");
INSERT INTO `wp_gf_form_view` VALUES("26391", "3", "2016-02-19 09:06:08", "66.249.74.104", "249");
INSERT INTO `wp_gf_form_view` VALUES("26392", "8", "2016-02-19 09:26:04", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26393", "3", "2016-02-19 10:01:58", "202.46.51.12", "202");
INSERT INTO `wp_gf_form_view` VALUES("26394", "8", "2016-02-19 10:38:09", "202.46.55.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("26395", "3", "2016-02-19 11:01:45", "202.46.54.185", "305");
INSERT INTO `wp_gf_form_view` VALUES("26396", "3", "2016-02-19 12:00:29", "202.46.53.151", "198");
INSERT INTO `wp_gf_form_view` VALUES("26397", "3", "2016-02-19 13:01:00", "202.46.58.138", "238");
INSERT INTO `wp_gf_form_view` VALUES("26398", "3", "2016-02-19 14:01:51", "202.46.48.82", "294");
INSERT INTO `wp_gf_form_view` VALUES("26399", "8", "2016-02-19 14:13:25", "202.46.58.208", "3");
INSERT INTO `wp_gf_form_view` VALUES("26400", "1", "2016-02-19 14:40:26", "107.172.237.43", "4");
INSERT INTO `wp_gf_form_view` VALUES("26401", "3", "2016-02-19 15:01:07", "62.210.162.184", "416");
INSERT INTO `wp_gf_form_view` VALUES("26402", "1", "2016-02-19 15:13:21", "172.245.225.221", "4");
INSERT INTO `wp_gf_form_view` VALUES("26403", "3", "2016-02-19 16:00:40", "202.46.54.210", "445");
INSERT INTO `wp_gf_form_view` VALUES("26404", "8", "2016-02-19 16:41:07", "202.46.53.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("26405", "1", "2016-02-19 16:41:09", "104.144.250.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("26406", "3", "2016-02-19 17:01:20", "202.46.51.208", "377");
INSERT INTO `wp_gf_form_view` VALUES("26407", "1", "2016-02-19 17:22:15", "198.46.229.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("26408", "8", "2016-02-19 17:41:48", "202.46.55.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("26409", "3", "2016-02-19 18:02:02", "202.46.52.175", "453");
INSERT INTO `wp_gf_form_view` VALUES("26410", "1", "2016-02-19 18:41:39", "45.57.163.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("26411", "8", "2016-02-19 18:56:56", "202.46.58.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("26412", "9", "2016-02-19 18:59:39", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26413", "3", "2016-02-19 19:02:42", "202.46.55.154", "410");
INSERT INTO `wp_gf_form_view` VALUES("26414", "8", "2016-02-19 19:11:23", "202.46.56.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("26415", "1", "2016-02-19 19:19:52", "107.172.237.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("26416", "3", "2016-02-19 20:00:30", "202.46.50.82", "732");
INSERT INTO `wp_gf_form_view` VALUES("26417", "1", "2016-02-19 20:35:18", "107.172.237.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("26418", "2", "2016-02-19 20:59:32", "45.32.129.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("26419", "3", "2016-02-19 21:01:11", "202.46.57.186", "446");
INSERT INTO `wp_gf_form_view` VALUES("26420", "8", "2016-02-19 21:06:58", "202.46.52.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("26421", "1", "2016-02-19 21:15:53", "104.144.250.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("26422", "3", "2016-02-19 22:01:52", "202.46.48.190", "515");
INSERT INTO `wp_gf_form_view` VALUES("26423", "1", "2016-02-19 22:02:25", "87.98.128.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("26424", "8", "2016-02-19 22:16:21", "202.46.51.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("26425", "3", "2016-02-19 23:02:25", "72.143.225.221", "439");
INSERT INTO `wp_gf_form_view` VALUES("26426", "8", "2016-02-19 23:02:45", "202.46.51.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("26427", "3", "2016-02-20 00:00:32", "202.46.54.189", "436");
INSERT INTO `wp_gf_form_view` VALUES("26428", "8", "2016-02-20 00:15:00", "202.46.52.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("26429", "6", "2016-02-20 00:26:13", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("26430", "3", "2016-02-20 01:01:18", "202.46.54.169", "407");
INSERT INTO `wp_gf_form_view` VALUES("26431", "8", "2016-02-20 01:13:01", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26432", "3", "2016-02-20 02:02:00", "217.69.133.229", "389");
INSERT INTO `wp_gf_form_view` VALUES("26433", "8", "2016-02-20 02:46:21", "202.46.57.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("26434", "3", "2016-02-20 03:01:42", "66.249.74.104", "445");
INSERT INTO `wp_gf_form_view` VALUES("26435", "8", "2016-02-20 03:20:11", "202.46.52.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("26436", "3", "2016-02-20 04:00:47", "202.46.51.192", "425");
INSERT INTO `wp_gf_form_view` VALUES("26437", "1", "2016-02-20 04:40:29", "89.157.43.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("26438", "3", "2016-02-20 05:01:41", "202.46.58.189", "517");
INSERT INTO `wp_gf_form_view` VALUES("26439", "8", "2016-02-20 05:15:11", "202.46.57.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("26440", "1", "2016-02-20 05:37:37", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26441", "3", "2016-02-20 06:02:33", "202.46.52.100", "516");
INSERT INTO `wp_gf_form_view` VALUES("26442", "7", "2016-02-20 06:52:24", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("26443", "3", "2016-02-20 07:00:04", "202.46.52.63", "379");
INSERT INTO `wp_gf_form_view` VALUES("26444", "3", "2016-02-20 08:00:56", "202.46.54.147", "386");
INSERT INTO `wp_gf_form_view` VALUES("26445", "3", "2016-02-20 09:01:49", "202.46.54.103", "477");
INSERT INTO `wp_gf_form_view` VALUES("26446", "8", "2016-02-20 09:12:48", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26447", "3", "2016-02-20 10:02:43", "202.46.51.209", "317");
INSERT INTO `wp_gf_form_view` VALUES("26448", "8", "2016-02-20 10:06:05", "202.46.55.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("26449", "5", "2016-02-20 10:29:47", "202.46.54.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("26450", "3", "2016-02-20 11:00:13", "202.46.50.185", "419");
INSERT INTO `wp_gf_form_view` VALUES("26451", "1", "2016-02-20 11:16:04", "96.44.172.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("26452", "8", "2016-02-20 11:27:16", "202.46.54.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("26453", "3", "2016-02-20 12:01:06", "202.46.56.95", "443");
INSERT INTO `wp_gf_form_view` VALUES("26454", "8", "2016-02-20 12:07:52", "202.46.50.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("26455", "3", "2016-02-20 13:01:59", "202.46.48.122", "459");
INSERT INTO `wp_gf_form_view` VALUES("26456", "1", "2016-02-20 13:07:53", "107.172.237.43", "6");
INSERT INTO `wp_gf_form_view` VALUES("26457", "8", "2016-02-20 13:22:18", "202.46.50.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("26458", "3", "2016-02-20 14:02:52", "202.46.52.205", "361");
INSERT INTO `wp_gf_form_view` VALUES("26459", "1", "2016-02-20 14:54:53", "104.144.5.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("26460", "3", "2016-02-20 15:00:23", "202.46.51.167", "414");
INSERT INTO `wp_gf_form_view` VALUES("26461", "8", "2016-02-20 15:37:35", "202.46.52.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("26462", "3", "2016-02-20 16:01:16", "202.46.58.158", "400");
INSERT INTO `wp_gf_form_view` VALUES("26463", "8", "2016-02-20 16:18:12", "202.46.57.209", "5");
INSERT INTO `wp_gf_form_view` VALUES("26464", "1", "2016-02-20 16:38:13", "104.144.250.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("26465", "3", "2016-02-20 17:02:09", "202.46.50.131", "729");
INSERT INTO `wp_gf_form_view` VALUES("26466", "8", "2016-02-20 17:05:32", "202.46.55.130", "3");
INSERT INTO `wp_gf_form_view` VALUES("26467", "9", "2016-02-20 17:48:15", "207.46.13.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("26468", "6", "2016-02-20 17:48:38", "40.77.167.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("26469", "1", "2016-02-20 17:48:55", "40.77.167.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("26470", "2", "2016-02-20 17:48:58", "40.77.167.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("26471", "3", "2016-02-20 18:03:03", "202.46.58.95", "1199");
INSERT INTO `wp_gf_form_view` VALUES("26472", "8", "2016-02-20 18:09:48", "202.46.52.178", "5");
INSERT INTO `wp_gf_form_view` VALUES("26473", "2", "2016-02-20 18:14:21", "80.86.94.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("26474", "1", "2016-02-20 18:15:19", "80.86.94.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("26475", "9", "2016-02-20 18:17:35", "80.86.94.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("26476", "5", "2016-02-20 18:18:44", "80.86.94.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("26477", "3", "2016-02-20 19:00:33", "202.46.50.155", "383");
INSERT INTO `wp_gf_form_view` VALUES("26478", "8", "2016-02-20 19:07:18", "202.46.52.203", "3");
INSERT INTO `wp_gf_form_view` VALUES("26479", "3", "2016-02-20 20:01:26", "202.46.54.18", "792");
INSERT INTO `wp_gf_form_view` VALUES("26480", "6", "2016-02-20 20:14:23", "80.86.94.7", "3");
INSERT INTO `wp_gf_form_view` VALUES("26481", "9", "2016-02-20 20:18:32", "80.86.94.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("26482", "8", "2016-02-20 20:45:24", "202.46.52.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("26483", "3", "2016-02-20 21:02:19", "202.46.50.18", "782");
INSERT INTO `wp_gf_form_view` VALUES("26484", "8", "2016-02-20 21:22:38", "202.46.52.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("26485", "2", "2016-02-20 21:56:28", "50.241.139.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("26486", "3", "2016-02-20 22:03:12", "202.46.54.91", "494");
INSERT INTO `wp_gf_form_view` VALUES("26487", "8", "2016-02-20 22:21:51", "80.86.94.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("26488", "3", "2016-02-20 23:00:42", "202.46.55.183", "330");
INSERT INTO `wp_gf_form_view` VALUES("26489", "8", "2016-02-20 23:51:27", "202.46.50.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("26490", "3", "2016-02-21 00:01:36", "202.46.55.124", "413");
INSERT INTO `wp_gf_form_view` VALUES("26491", "8", "2016-02-21 00:28:39", "202.46.50.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("26492", "9", "2016-02-21 00:29:21", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("26493", "3", "2016-02-21 01:00:28", "202.46.56.17", "207");
INSERT INTO `wp_gf_form_view` VALUES("26494", "3", "2016-02-21 02:03:06", "202.46.50.80", "263");
INSERT INTO `wp_gf_form_view` VALUES("26495", "8", "2016-02-21 02:46:58", "202.46.52.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("26496", "3", "2016-02-21 03:01:40", "202.46.52.176", "392");
INSERT INTO `wp_gf_form_view` VALUES("26497", "8", "2016-02-21 03:16:14", "202.46.52.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("26498", "2", "2016-02-21 03:35:28", "104.156.231.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("26499", "3", "2016-02-21 04:09:28", "202.46.48.93", "264");
INSERT INTO `wp_gf_form_view` VALUES("26500", "8", "2016-02-21 04:27:45", "202.46.51.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("26501", "3", "2016-02-21 05:00:40", "202.46.53.146", "342");
INSERT INTO `wp_gf_form_view` VALUES("26502", "3", "2016-02-21 06:02:50", "202.46.56.181", "298");
INSERT INTO `wp_gf_form_view` VALUES("26503", "8", "2016-02-21 06:54:02", "202.46.58.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("26504", "3", "2016-02-21 07:01:21", "202.46.50.183", "617");
INSERT INTO `wp_gf_form_view` VALUES("26505", "8", "2016-02-21 07:08:39", "202.46.58.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("26506", "2", "2016-02-21 07:21:24", "86.123.242.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("26507", "3", "2016-02-21 08:03:30", "202.46.54.169", "299");
INSERT INTO `wp_gf_form_view` VALUES("26508", "8", "2016-02-21 08:43:43", "202.46.50.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("26509", "2", "2016-02-21 08:56:14", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26510", "3", "2016-02-21 09:02:01", "202.46.57.161", "392");
INSERT INTO `wp_gf_form_view` VALUES("26511", "3", "2016-02-21 10:00:31", "202.46.51.82", "456");
INSERT INTO `wp_gf_form_view` VALUES("26512", "8", "2016-02-21 10:55:22", "202.46.54.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("26513", "3", "2016-02-21 11:02:41", "202.46.50.90", "336");
INSERT INTO `wp_gf_form_view` VALUES("26514", "2", "2016-02-21 11:49:06", "172.245.91.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("26515", "3", "2016-02-21 12:01:11", "202.46.55.12", "349");
INSERT INTO `wp_gf_form_view` VALUES("26516", "8", "2016-02-21 12:37:45", "202.46.50.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("26517", "3", "2016-02-21 13:03:21", "202.46.49.194", "468");
INSERT INTO `wp_gf_form_view` VALUES("26518", "1", "2016-02-21 13:17:57", "192.255.101.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("26519", "8", "2016-02-21 13:39:55", "202.46.48.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("26520", "3", "2016-02-21 14:01:51", "202.46.58.188", "350");
INSERT INTO `wp_gf_form_view` VALUES("26521", "3", "2016-02-21 15:04:01", "202.46.54.159", "418");
INSERT INTO `wp_gf_form_view` VALUES("26522", "3", "2016-02-21 16:02:32", "202.46.58.150", "316");
INSERT INTO `wp_gf_form_view` VALUES("26523", "8", "2016-02-21 16:13:30", "202.46.48.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("26524", "3", "2016-02-21 17:03:03", "202.46.51.163", "251");
INSERT INTO `wp_gf_form_view` VALUES("26525", "3", "2016-02-21 18:01:34", "202.46.58.182", "264");
INSERT INTO `wp_gf_form_view` VALUES("26526", "3", "2016-02-21 19:00:04", "202.46.55.170", "446");
INSERT INTO `wp_gf_form_view` VALUES("26527", "1", "2016-02-21 19:00:27", "38.83.106.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("26528", "3", "2016-02-21 20:02:14", "202.46.53.148", "246");
INSERT INTO `wp_gf_form_view` VALUES("26529", "2", "2016-02-21 20:08:01", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26530", "8", "2016-02-21 20:35:09", "202.46.51.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("26531", "3", "2016-02-21 21:00:44", "202.46.58.161", "360");
INSERT INTO `wp_gf_form_view` VALUES("26532", "3", "2016-02-21 22:02:54", "202.46.55.134", "302");
INSERT INTO `wp_gf_form_view` VALUES("26533", "8", "2016-02-21 22:13:53", "202.46.51.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("26534", "3", "2016-02-21 23:01:25", "202.46.49.78", "410");
INSERT INTO `wp_gf_form_view` VALUES("26535", "3", "2016-02-22 00:03:35", "202.46.58.57", "334");
INSERT INTO `wp_gf_form_view` VALUES("26536", "3", "2016-02-22 01:02:05", "202.46.51.201", "442");
INSERT INTO `wp_gf_form_view` VALUES("26537", "2", "2016-02-22 01:37:18", "23.106.216.141", "4");
INSERT INTO `wp_gf_form_view` VALUES("26538", "8", "2016-02-22 01:42:19", "202.46.51.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("26539", "3", "2016-02-22 02:00:35", "202.46.58.72", "302");
INSERT INTO `wp_gf_form_view` VALUES("26540", "8", "2016-02-22 02:00:36", "202.46.58.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("26541", "3", "2016-02-22 03:02:45", "202.46.49.138", "338");
INSERT INTO `wp_gf_form_view` VALUES("26542", "2", "2016-02-22 03:24:48", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26543", "3", "2016-02-22 04:01:16", "202.46.56.13", "383");
INSERT INTO `wp_gf_form_view` VALUES("26544", "3", "2016-02-22 05:03:27", "202.46.57.198", "286");
INSERT INTO `wp_gf_form_view` VALUES("26545", "8", "2016-02-22 05:03:27", "202.46.57.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("26546", "2", "2016-02-22 05:05:17", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26547", "5", "2016-02-22 05:25:58", "51.255.65.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("26548", "3", "2016-02-22 06:00:18", "202.46.53.50", "379");
INSERT INTO `wp_gf_form_view` VALUES("26549", "8", "2016-02-22 06:44:40", "202.46.52.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("26550", "2", "2016-02-22 06:45:54", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26551", "3", "2016-02-22 07:06:37", "202.46.51.37", "562");
INSERT INTO `wp_gf_form_view` VALUES("26552", "2", "2016-02-22 07:21:47", "87.222.95.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("26553", "3", "2016-02-22 08:01:27", "202.46.52.69", "312");
INSERT INTO `wp_gf_form_view` VALUES("26554", "3", "2016-02-22 09:00:00", "202.46.53.201", "384");
INSERT INTO `wp_gf_form_view` VALUES("26555", "3", "2016-02-22 10:02:08", "202.46.53.152", "304");
INSERT INTO `wp_gf_form_view` VALUES("26556", "8", "2016-02-22 10:56:59", "202.46.58.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("26557", "3", "2016-02-22 11:00:38", "202.46.56.185", "345");
INSERT INTO `wp_gf_form_view` VALUES("26558", "8", "2016-02-22 11:04:17", "202.46.50.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("26559", "7", "2016-02-22 11:46:02", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26560", "1", "2016-02-22 11:47:21", "192.3.242.159", "4");
INSERT INTO `wp_gf_form_view` VALUES("26561", "3", "2016-02-22 12:09:11", "202.46.56.197", "226");
INSERT INTO `wp_gf_form_view` VALUES("26562", "3", "2016-02-22 13:00:23", "202.46.58.81", "362");
INSERT INTO `wp_gf_form_view` VALUES("26563", "1", "2016-02-22 13:27:16", "23.94.236.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("26564", "3", "2016-02-22 14:02:33", "202.46.54.140", "123");
INSERT INTO `wp_gf_form_view` VALUES("26565", "8", "2016-02-22 14:06:13", "202.46.55.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("26566", "3", "2016-02-22 15:05:33", "220.181.108.146", "287");
INSERT INTO `wp_gf_form_view` VALUES("26567", "1", "2016-02-22 15:11:57", "192.3.243.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("26568", "3", "2016-02-22 16:00:48", "202.46.51.210", "316");
INSERT INTO `wp_gf_form_view` VALUES("26569", "8", "2016-02-22 16:26:24", "202.46.58.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("26570", "1", "2016-02-22 16:53:36", "107.172.236.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("26571", "8", "2016-02-22 17:02:59", "202.46.53.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("26572", "3", "2016-02-22 17:02:59", "202.46.53.140", "333");
INSERT INTO `wp_gf_form_view` VALUES("26573", "3", "2016-02-22 18:01:28", "202.46.53.126", "426");
INSERT INTO `wp_gf_form_view` VALUES("26574", "3", "2016-02-22 19:00:00", "202.46.54.90", "311");
INSERT INTO `wp_gf_form_view` VALUES("26575", "3", "2016-02-22 20:02:09", "202.46.51.169", "249");
INSERT INTO `wp_gf_form_view` VALUES("26576", "8", "2016-02-22 20:51:15", "202.46.56.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("26577", "3", "2016-02-22 21:05:58", "206.116.38.103", "115");
INSERT INTO `wp_gf_form_view` VALUES("26578", "3", "2016-02-22 22:02:07", "202.46.58.90", "638");
INSERT INTO `wp_gf_form_view` VALUES("26579", "8", "2016-02-22 22:27:43", "202.46.58.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("26580", "3", "2016-02-22 23:00:37", "202.46.56.201", "207");
INSERT INTO `wp_gf_form_view` VALUES("26581", "8", "2016-02-22 23:59:49", "202.46.49.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("26582", "3", "2016-02-23 00:03:29", "202.46.58.89", "284");
INSERT INTO `wp_gf_form_view` VALUES("26583", "8", "2016-02-23 00:58:20", "202.46.51.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("26584", "3", "2016-02-23 01:01:59", "202.46.58.51", "1124");
INSERT INTO `wp_gf_form_view` VALUES("26585", "9", "2016-02-23 01:52:04", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("26586", "7", "2016-02-23 01:52:24", "157.55.39.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("26587", "8", "2016-02-23 01:52:59", "207.46.13.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("26588", "3", "2016-02-23 02:02:59", "202.46.55.154", "283");
INSERT INTO `wp_gf_form_view` VALUES("26589", "3", "2016-02-23 03:00:04", "202.46.55.143", "437");
INSERT INTO `wp_gf_form_view` VALUES("26590", "2", "2016-02-23 03:08:01", "167.114.172.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("26591", "8", "2016-02-23 03:35:44", "202.46.51.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("26592", "3", "2016-02-23 04:00:42", "202.46.58.126", "312");
INSERT INTO `wp_gf_form_view` VALUES("26593", "3", "2016-02-23 05:01:20", "202.46.48.148", "306");
INSERT INTO `wp_gf_form_view` VALUES("26594", "3", "2016-02-23 06:01:59", "202.46.55.155", "437");
INSERT INTO `wp_gf_form_view` VALUES("26595", "1", "2016-02-23 06:25:56", "192.99.166.236", "4");
INSERT INTO `wp_gf_form_view` VALUES("26596", "3", "2016-02-23 07:02:37", "202.46.57.72", "335");
INSERT INTO `wp_gf_form_view` VALUES("26597", "2", "2016-02-23 07:07:02", "23.236.210.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("26598", "9", "2016-02-23 07:45:26", "202.46.48.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("26599", "8", "2016-02-23 07:52:34", "202.46.49.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("26600", "3", "2016-02-23 08:01:51", "70.70.24.219", "294");
INSERT INTO `wp_gf_form_view` VALUES("26601", "3", "2016-02-23 09:00:20", "202.46.51.138", "287");
INSERT INTO `wp_gf_form_view` VALUES("26602", "8", "2016-02-23 09:46:47", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26603", "3", "2016-02-23 10:03:32", "202.46.55.136", "271");
INSERT INTO `wp_gf_form_view` VALUES("26604", "9", "2016-02-23 10:54:27", "104.144.137.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("26605", "3", "2016-02-23 11:04:29", "104.156.231.254", "316");
INSERT INTO `wp_gf_form_view` VALUES("26606", "2", "2016-02-23 11:04:41", "104.156.231.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("26607", "8", "2016-02-23 11:06:00", "202.46.55.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("26608", "3", "2016-02-23 12:06:37", "202.46.56.116", "203");
INSERT INTO `wp_gf_form_view` VALUES("26609", "3", "2016-02-23 13:03:33", "46.105.60.176", "602");
INSERT INTO `wp_gf_form_view` VALUES("26610", "8", "2016-02-23 13:28:17", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26611", "2", "2016-02-23 13:57:59", "86.123.242.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("26612", "3", "2016-02-23 14:00:36", "202.46.55.15", "236");
INSERT INTO `wp_gf_form_view` VALUES("26613", "3", "2016-02-23 15:07:49", "202.46.54.163", "211");
INSERT INTO `wp_gf_form_view` VALUES("26614", "3", "2016-02-23 16:02:50", "202.46.51.185", "311");
INSERT INTO `wp_gf_form_view` VALUES("26615", "3", "2016-02-23 17:03:30", "202.46.52.64", "376");
INSERT INTO `wp_gf_form_view` VALUES("26616", "2", "2016-02-23 17:35:38", "54.145.132.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("26617", "3", "2016-02-23 18:00:33", "202.46.53.177", "806");
INSERT INTO `wp_gf_form_view` VALUES("26618", "1", "2016-02-23 18:11:28", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("26619", "8", "2016-02-23 18:18:58", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26620", "6", "2016-02-23 18:38:52", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26621", "2", "2016-02-23 18:45:30", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26622", "3", "2016-02-23 19:01:11", "202.46.58.17", "361");
INSERT INTO `wp_gf_form_view` VALUES("26623", "8", "2016-02-23 19:26:09", "202.46.54.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("26624", "3", "2016-02-23 20:01:50", "202.46.56.75", "336");
INSERT INTO `wp_gf_form_view` VALUES("26625", "3", "2016-02-23 21:02:28", "202.46.49.114", "478");
INSERT INTO `wp_gf_form_view` VALUES("26626", "1", "2016-02-23 21:08:45", "23.232.145.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("26627", "8", "2016-02-23 21:13:12", "202.46.52.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("26628", "3", "2016-02-23 22:02:00", "157.55.39.216", "378");
INSERT INTO `wp_gf_form_view` VALUES("26629", "2", "2016-02-23 22:32:45", "195.154.146.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("26630", "3", "2016-02-23 23:00:17", "202.46.55.15", "718");
INSERT INTO `wp_gf_form_view` VALUES("26631", "2", "2016-02-23 23:04:53", "70.188.114.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("26632", "8", "2016-02-23 23:11:02", "202.46.51.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("26633", "3", "2016-02-24 00:00:56", "202.46.54.168", "276");
INSERT INTO `wp_gf_form_view` VALUES("26634", "8", "2016-02-24 00:47:12", "202.46.57.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("26635", "3", "2016-02-24 01:00:19", "154.20.30.203", "436");
INSERT INTO `wp_gf_form_view` VALUES("26636", "8", "2016-02-24 01:52:49", "202.46.56.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("26637", "3", "2016-02-24 02:09:46", "202.46.49.69", "204");
INSERT INTO `wp_gf_form_view` VALUES("26638", "3", "2016-02-24 03:03:25", "202.46.51.118", "988");
INSERT INTO `wp_gf_form_view` VALUES("26639", "2", "2016-02-24 03:35:05", "185.107.26.131", "6");
INSERT INTO `wp_gf_form_view` VALUES("26640", "1", "2016-02-24 03:42:31", "24.68.38.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("26641", "8", "2016-02-24 03:48:19", "202.46.58.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("26642", "3", "2016-02-24 04:02:08", "202.46.50.123", "544");
INSERT INTO `wp_gf_form_view` VALUES("26643", "2", "2016-02-24 04:30:46", "207.46.13.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("26644", "3", "2016-02-24 05:00:15", "202.46.48.124", "551");
INSERT INTO `wp_gf_form_view` VALUES("26645", "8", "2016-02-24 05:03:42", "202.46.55.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("26646", "2", "2016-02-24 05:19:52", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26647", "3", "2016-02-24 06:02:27", "202.46.51.132", "598");
INSERT INTO `wp_gf_form_view` VALUES("26648", "2", "2016-02-24 06:14:17", "195.154.226.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("26649", "2", "2016-02-24 07:00:33", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26650", "3", "2016-02-24 07:00:33", "62.210.162.184", "311");
INSERT INTO `wp_gf_form_view` VALUES("26651", "8", "2016-02-24 07:39:03", "202.46.50.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("26652", "3", "2016-02-24 08:02:53", "202.46.48.19", "280");
INSERT INTO `wp_gf_form_view` VALUES("26653", "2", "2016-02-24 08:40:57", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("26654", "3", "2016-02-24 09:02:02", "202.46.54.158", "319");
INSERT INTO `wp_gf_form_view` VALUES("26655", "8", "2016-02-24 09:46:57", "202.46.52.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("26656", "3", "2016-02-24 10:00:45", "202.46.51.112", "554");
INSERT INTO `wp_gf_form_view` VALUES("26657", "2", "2016-02-24 10:03:44", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("26658", "3", "2016-02-24 11:02:56", "202.46.49.195", "302");
INSERT INTO `wp_gf_form_view` VALUES("26659", "3", "2016-02-24 12:01:17", "66.249.74.104", "760");
INSERT INTO `wp_gf_form_view` VALUES("26660", "5", "2016-02-24 12:12:12", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26661", "8", "2016-02-24 12:27:09", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26662", "2", "2016-02-24 12:29:58", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26663", "3", "2016-02-24 13:01:46", "46.119.117.85", "388");
INSERT INTO `wp_gf_form_view` VALUES("26664", "8", "2016-02-24 13:15:18", "202.46.50.18", "3");
INSERT INTO `wp_gf_form_view` VALUES("26665", "3", "2016-02-24 14:00:12", "202.46.49.62", "294");
INSERT INTO `wp_gf_form_view` VALUES("26666", "8", "2016-02-24 14:17:29", "202.46.52.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("26667", "3", "2016-02-24 15:01:41", "202.46.53.140", "263");
INSERT INTO `wp_gf_form_view` VALUES("26668", "3", "2016-02-24 16:00:24", "202.46.57.73", "248");
INSERT INTO `wp_gf_form_view` VALUES("26669", "3", "2016-02-24 17:02:35", "202.46.54.206", "387");
INSERT INTO `wp_gf_form_view` VALUES("26670", "1", "2016-02-24 17:25:54", "107.168.10.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("26671", "3", "2016-02-24 18:01:17", "202.46.56.207", "329");
INSERT INTO `wp_gf_form_view` VALUES("26672", "8", "2016-02-24 18:11:40", "202.46.51.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("26673", "3", "2016-02-24 19:00:02", "202.46.50.210", "679");
INSERT INTO `wp_gf_form_view` VALUES("26674", "2", "2016-02-24 19:33:12", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26675", "8", "2016-02-24 19:48:14", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("26676", "3", "2016-02-24 20:02:12", "202.46.54.71", "369");
INSERT INTO `wp_gf_form_view` VALUES("26677", "8", "2016-02-24 20:22:56", "202.46.58.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("26678", "3", "2016-02-24 21:00:53", "202.46.57.175", "360");
INSERT INTO `wp_gf_form_view` VALUES("26679", "3", "2016-02-24 22:00:35", "154.20.5.227", "531");
INSERT INTO `wp_gf_form_view` VALUES("26680", "1", "2016-02-24 22:18:10", "154.20.5.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("26681", "8", "2016-02-24 22:40:46", "202.46.48.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("26682", "3", "2016-02-24 23:00:59", "154.20.5.227", "1099");
INSERT INTO `wp_gf_form_view` VALUES("26683", "1", "2016-02-24 23:01:35", "154.20.5.227", "4");
INSERT INTO `wp_gf_form_view` VALUES("26684", "8", "2016-02-24 23:04:57", "157.55.39.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("26685", "7", "2016-02-24 23:05:24", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("26686", "3", "2016-02-25 00:00:00", "202.46.56.93", "366");
INSERT INTO `wp_gf_form_view` VALUES("26687", "8", "2016-02-25 00:06:53", "202.46.53.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("26688", "3", "2016-02-25 01:01:40", "62.210.162.184", "318");
INSERT INTO `wp_gf_form_view` VALUES("26689", "8", "2016-02-25 01:51:55", "202.46.54.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("26690", "3", "2016-02-25 02:05:41", "202.46.53.195", "419");
INSERT INTO `wp_gf_form_view` VALUES("26691", "1", "2016-02-25 02:48:20", "192.255.101.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("26692", "3", "2016-02-25 03:01:57", "202.46.56.96", "328");
INSERT INTO `wp_gf_form_view` VALUES("26693", "8", "2016-02-25 03:08:53", "202.46.55.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("26694", "7", "2016-02-25 03:39:51", "202.46.54.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("26695", "3", "2016-02-25 04:00:31", "202.46.58.166", "339");
INSERT INTO `wp_gf_form_view` VALUES("26696", "1", "2016-02-25 04:25:29", "89.42.237.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("26697", "3", "2016-02-25 05:02:32", "202.46.58.15", "581");
INSERT INTO `wp_gf_form_view` VALUES("26698", "8", "2016-02-25 05:19:45", "202.46.51.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("26699", "3", "2016-02-25 06:01:06", "202.46.49.91", "629");
INSERT INTO `wp_gf_form_view` VALUES("26700", "8", "2016-02-25 06:18:20", "202.46.54.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("26701", "2", "2016-02-25 06:43:41", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26702", "9", "2016-02-25 06:52:03", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26703", "3", "2016-02-25 07:00:49", "66.249.74.102", "516");
INSERT INTO `wp_gf_form_view` VALUES("26704", "1", "2016-02-25 07:20:43", "192.99.166.236", "4");
INSERT INTO `wp_gf_form_view` VALUES("26705", "2", "2016-02-25 07:34:07", "202.46.48.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("26706", "8", "2016-02-25 07:41:00", "202.46.48.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("26707", "3", "2016-02-25 08:01:40", "202.46.55.135", "281");
INSERT INTO `wp_gf_form_view` VALUES("26708", "3", "2016-02-25 09:00:58", "157.55.39.201", "382");
INSERT INTO `wp_gf_form_view` VALUES("26709", "8", "2016-02-25 09:08:21", "202.46.50.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("26710", "3", "2016-02-25 10:00:01", "202.46.51.83", "290");
INSERT INTO `wp_gf_form_view` VALUES("26711", "2", "2016-02-25 10:05:35", "107.161.91.235", "2");
INSERT INTO `wp_gf_form_view` VALUES("26712", "3", "2016-02-25 11:01:50", "202.46.48.149", "268");
INSERT INTO `wp_gf_form_view` VALUES("26713", "3", "2016-02-25 12:02:01", "202.46.48.89", "321");
INSERT INTO `wp_gf_form_view` VALUES("26714", "8", "2016-02-25 12:12:21", "202.46.51.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("26715", "7", "2016-02-25 12:12:45", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26716", "1", "2016-02-25 12:52:40", "107.150.72.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("26717", "9", "2016-02-25 13:03:06", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26718", "3", "2016-02-25 13:09:40", "202.46.56.16", "295");
INSERT INTO `wp_gf_form_view` VALUES("26719", "8", "2016-02-25 13:29:47", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26720", "3", "2016-02-25 14:02:25", "202.46.50.94", "234");
INSERT INTO `wp_gf_form_view` VALUES("26721", "8", "2016-02-25 14:36:52", "202.46.51.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("26722", "3", "2016-02-25 15:00:59", "202.46.54.144", "312");
INSERT INTO `wp_gf_form_view` VALUES("26723", "1", "2016-02-25 15:14:54", "107.153.2.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("26724", "8", "2016-02-25 15:32:00", "202.46.50.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("26725", "3", "2016-02-25 16:03:00", "202.46.54.12", "436");
INSERT INTO `wp_gf_form_view` VALUES("26726", "8", "2016-02-25 16:03:00", "202.46.54.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("26727", "2", "2016-02-25 16:15:10", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26728", "3", "2016-02-25 17:01:34", "202.46.52.106", "1336");
INSERT INTO `wp_gf_form_view` VALUES("26729", "1", "2016-02-25 17:03:36", "192.255.101.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("26730", "2", "2016-02-25 17:05:35", "212.73.139.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("26731", "8", "2016-02-25 17:10:53", "212.73.139.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("26732", "7", "2016-02-25 17:39:30", "202.46.56.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("26733", "3", "2016-02-25 18:00:07", "202.46.54.138", "301");
INSERT INTO `wp_gf_form_view` VALUES("26734", "8", "2016-02-25 18:17:21", "202.46.54.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("26735", "3", "2016-02-25 19:02:09", "202.46.48.191", "440");
INSERT INTO `wp_gf_form_view` VALUES("26736", "8", "2016-02-25 19:36:35", "202.46.54.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("26737", "3", "2016-02-25 20:00:42", "202.46.57.179", "364");
INSERT INTO `wp_gf_form_view` VALUES("26738", "8", "2016-02-25 20:00:42", "202.46.57.179", "4");
INSERT INTO `wp_gf_form_view` VALUES("26739", "3", "2016-02-25 21:00:30", "157.55.39.158", "488");
INSERT INTO `wp_gf_form_view` VALUES("26740", "2", "2016-02-25 21:48:46", "104.131.172.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("26741", "3", "2016-02-25 22:02:11", "202.46.52.149", "338");
INSERT INTO `wp_gf_form_view` VALUES("26742", "8", "2016-02-25 22:38:55", "202.46.54.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("26743", "3", "2016-02-25 23:03:01", "202.46.54.21", "382");
INSERT INTO `wp_gf_form_view` VALUES("26744", "8", "2016-02-25 23:16:48", "202.46.48.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("26745", "3", "2016-02-26 00:01:34", "202.46.53.159", "272");
INSERT INTO `wp_gf_form_view` VALUES("26746", "1", "2016-02-26 00:13:30", "109.86.16.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("26747", "8", "2016-02-26 00:33:11", "202.46.52.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("26748", "3", "2016-02-26 01:01:49", "202.46.58.57", "154");
INSERT INTO `wp_gf_form_view` VALUES("26749", "3", "2016-02-26 02:00:18", "202.46.55.179", "388");
INSERT INTO `wp_gf_form_view` VALUES("26750", "3", "2016-02-26 03:10:34", "202.46.57.75", "292");
INSERT INTO `wp_gf_form_view` VALUES("26751", "3", "2016-02-26 04:02:27", "202.46.51.131", "333");
INSERT INTO `wp_gf_form_view` VALUES("26752", "3", "2016-02-26 05:00:01", "202.46.54.71", "568");
INSERT INTO `wp_gf_form_view` VALUES("26753", "1", "2016-02-26 05:14:04", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26754", "8", "2016-02-26 05:25:43", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("26755", "3", "2016-02-26 06:11:28", "202.46.55.87", "264");
INSERT INTO `wp_gf_form_view` VALUES("26756", "8", "2016-02-26 06:11:30", "202.46.55.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("26757", "3", "2016-02-26 07:00:34", "202.46.51.25", "409");
INSERT INTO `wp_gf_form_view` VALUES("26758", "8", "2016-02-26 07:15:49", "202.46.56.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("26759", "2", "2016-02-26 07:50:36", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26760", "3", "2016-02-26 08:01:35", "202.46.49.78", "306");
INSERT INTO `wp_gf_form_view` VALUES("26761", "3", "2016-02-26 09:14:10", "157.55.39.158", "238");
INSERT INTO `wp_gf_form_view` VALUES("26762", "3", "2016-02-26 10:00:30", "202.46.51.154", "315");
INSERT INTO `wp_gf_form_view` VALUES("26763", "8", "2016-02-26 10:18:49", "202.46.57.203", "3");
INSERT INTO `wp_gf_form_view` VALUES("26764", "3", "2016-02-26 11:00:44", "202.46.57.185", "297");
INSERT INTO `wp_gf_form_view` VALUES("26765", "2", "2016-02-26 12:01:07", "185.107.24.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("26766", "3", "2016-02-26 12:01:07", "185.107.24.20", "385");
INSERT INTO `wp_gf_form_view` VALUES("26767", "8", "2016-02-26 12:12:51", "202.46.57.203", "2");
INSERT INTO `wp_gf_form_view` VALUES("26768", "1", "2016-02-26 12:23:11", "23.247.140.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("26769", "3", "2016-02-26 13:01:40", "202.46.51.81", "354");
INSERT INTO `wp_gf_form_view` VALUES("26770", "3", "2016-02-26 14:02:42", "202.46.52.206", "198");
INSERT INTO `wp_gf_form_view` VALUES("26771", "8", "2016-02-26 14:27:06", "202.46.49.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("26772", "3", "2016-02-26 15:15:59", "202.46.56.207", "230");
INSERT INTO `wp_gf_form_view` VALUES("26773", "3", "2016-02-26 16:01:45", "202.46.56.182", "709");
INSERT INTO `wp_gf_form_view` VALUES("26774", "1", "2016-02-26 16:10:24", "40.77.167.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("26775", "9", "2016-02-26 16:10:40", "40.77.167.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("26776", "3", "2016-02-26 17:02:47", "202.46.58.193", "583");
INSERT INTO `wp_gf_form_view` VALUES("26777", "1", "2016-02-26 17:08:12", "23.247.182.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("26778", "2", "2016-02-26 17:42:33", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26779", "8", "2016-02-26 17:51:30", "202.46.55.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("26780", "3", "2016-02-26 18:00:40", "202.46.54.134", "451");
INSERT INTO `wp_gf_form_view` VALUES("26781", "3", "2016-02-26 19:01:41", "202.46.54.95", "268");
INSERT INTO `wp_gf_form_view` VALUES("26782", "8", "2016-02-26 19:16:57", "202.46.55.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("26783", "3", "2016-02-26 20:04:44", "202.46.56.111", "314");
INSERT INTO `wp_gf_form_view` VALUES("26784", "8", "2016-02-26 20:38:19", "202.46.55.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("26785", "3", "2016-02-26 21:02:42", "202.46.57.183", "456");
INSERT INTO `wp_gf_form_view` VALUES("26786", "8", "2016-02-26 21:39:19", "202.46.49.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("26787", "1", "2016-02-26 21:40:55", "111.40.197.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("26788", "3", "2016-02-26 22:00:37", "66.249.74.102", "465");
INSERT INTO `wp_gf_form_view` VALUES("26789", "2", "2016-02-26 22:35:11", "45.32.130.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("26790", "3", "2016-02-26 23:00:55", "207.194.133.9", "368");
INSERT INTO `wp_gf_form_view` VALUES("26791", "1", "2016-02-26 23:29:58", "216.232.153.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("26792", "3", "2016-02-27 00:07:48", "68.180.229.161", "167");
INSERT INTO `wp_gf_form_view` VALUES("26793", "3", "2016-02-27 01:01:57", "202.46.55.66", "232");
INSERT INTO `wp_gf_form_view` VALUES("26794", "1", "2016-02-27 01:14:37", "103.47.210.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("26795", "8", "2016-02-27 01:44:50", "202.46.52.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("26796", "3", "2016-02-27 02:00:28", "23.106.216.205", "383");
INSERT INTO `wp_gf_form_view` VALUES("26797", "8", "2016-02-27 02:10:55", "202.46.52.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("26798", "1", "2016-02-27 02:59:38", "103.47.210.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("26799", "3", "2016-02-27 03:02:37", "202.46.58.54", "337");
INSERT INTO `wp_gf_form_view` VALUES("26800", "8", "2016-02-27 03:11:17", "202.46.49.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("26801", "3", "2016-02-27 04:00:32", "202.46.53.12", "393");
INSERT INTO `wp_gf_form_view` VALUES("26802", "3", "2016-02-27 05:00:01", "24.244.23.179", "482");
INSERT INTO `wp_gf_form_view` VALUES("26803", "8", "2016-02-27 05:12:56", "202.46.57.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("26804", "1", "2016-02-27 05:17:54", "155.94.150.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("26805", "3", "2016-02-27 06:04:28", "202.46.56.136", "343");
INSERT INTO `wp_gf_form_view` VALUES("26806", "8", "2016-02-27 06:21:51", "202.46.55.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("26807", "3", "2016-02-27 07:02:03", "202.46.50.153", "187");
INSERT INTO `wp_gf_form_view` VALUES("26808", "8", "2016-02-27 07:07:50", "202.46.53.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("26809", "3", "2016-02-27 08:00:29", "202.46.58.132", "285");
INSERT INTO `wp_gf_form_view` VALUES("26810", "8", "2016-02-27 08:20:43", "202.46.58.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("26811", "3", "2016-02-27 09:05:59", "202.46.58.18", "340");
INSERT INTO `wp_gf_form_view` VALUES("26812", "8", "2016-02-27 09:29:12", "202.46.51.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26813", "3", "2016-02-27 10:01:01", "202.46.52.170", "462");
INSERT INTO `wp_gf_form_view` VALUES("26814", "8", "2016-02-27 10:03:55", "202.46.52.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("26815", "3", "2016-02-27 11:01:50", "202.46.48.80", "394");
INSERT INTO `wp_gf_form_view` VALUES("26816", "3", "2016-02-27 12:02:42", "202.46.49.139", "212");
INSERT INTO `wp_gf_form_view` VALUES("26817", "1", "2016-02-27 12:14:33", "23.247.182.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("26818", "3", "2016-02-27 13:02:21", "202.46.48.136", "224");
INSERT INTO `wp_gf_form_view` VALUES("26819", "8", "2016-02-27 13:11:02", "202.46.53.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("26820", "3", "2016-02-27 14:02:43", "46.118.114.75", "173");
INSERT INTO `wp_gf_form_view` VALUES("26821", "3", "2016-02-27 15:04:23", "202.46.57.172", "247");
INSERT INTO `wp_gf_form_view` VALUES("26822", "3", "2016-02-27 16:00:43", "202.46.49.147", "306");
INSERT INTO `wp_gf_form_view` VALUES("26823", "3", "2016-02-27 17:01:32", "202.46.51.207", "336");
INSERT INTO `wp_gf_form_view` VALUES("26824", "8", "2016-02-27 17:42:05", "202.46.51.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("26825", "3", "2016-02-27 18:02:22", "202.46.51.33", "363");
INSERT INTO `wp_gf_form_view` VALUES("26826", "3", "2016-02-27 19:00:17", "202.46.57.75", "1270");
INSERT INTO `wp_gf_form_view` VALUES("26827", "1", "2016-02-27 19:54:39", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("26828", "3", "2016-02-27 20:00:03", "104.131.164.206", "4344");
INSERT INTO `wp_gf_form_view` VALUES("26829", "5", "2016-02-27 20:01:38", "104.131.164.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("26830", "6", "2016-02-27 20:10:08", "104.131.164.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("26831", "8", "2016-02-27 20:15:35", "202.46.51.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("26832", "9", "2016-02-27 20:17:09", "104.131.164.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("26833", "2", "2016-02-27 20:57:59", "104.131.164.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("26834", "3", "2016-02-27 21:00:08", "104.131.164.206", "1280");
INSERT INTO `wp_gf_form_view` VALUES("26835", "8", "2016-02-27 21:11:44", "104.131.164.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("26836", "3", "2016-02-27 22:02:44", "202.46.58.187", "337");
INSERT INTO `wp_gf_form_view` VALUES("26837", "8", "2016-02-27 22:14:21", "202.46.49.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("26838", "3", "2016-02-27 23:00:40", "202.46.52.163", "592");
INSERT INTO `wp_gf_form_view` VALUES("26839", "2", "2016-02-27 23:06:19", "87.19.181.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("26840", "8", "2016-02-27 23:41:13", "202.46.58.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("26841", "3", "2016-02-28 00:01:29", "202.46.51.156", "292");
INSERT INTO `wp_gf_form_view` VALUES("26842", "8", "2016-02-28 00:56:31", "202.46.51.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("26843", "3", "2016-02-28 01:13:41", "202.46.57.178", "254");
INSERT INTO `wp_gf_form_view` VALUES("26844", "8", "2016-02-28 01:31:30", "202.46.48.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("26845", "3", "2016-02-28 02:01:15", "202.46.49.191", "399");
INSERT INTO `wp_gf_form_view` VALUES("26846", "8", "2016-02-28 02:02:02", "157.55.39.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("26847", "3", "2016-02-28 03:00:46", "202.46.56.96", "341");
INSERT INTO `wp_gf_form_view` VALUES("26848", "9", "2016-02-28 03:09:17", "24.67.172.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("26849", "3", "2016-02-28 04:00:16", "202.46.50.17", "326");
INSERT INTO `wp_gf_form_view` VALUES("26850", "9", "2016-02-28 04:49:03", "66.249.74.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("26851", "3", "2016-02-28 05:00:08", "202.46.57.166", "447");
INSERT INTO `wp_gf_form_view` VALUES("26852", "8", "2016-02-28 05:53:41", "202.46.48.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("26853", "3", "2016-02-28 06:02:36", "202.46.53.57", "393");
INSERT INTO `wp_gf_form_view` VALUES("26854", "3", "2016-02-28 07:02:07", "202.46.56.110", "339");
INSERT INTO `wp_gf_form_view` VALUES("26855", "3", "2016-02-28 08:01:37", "202.46.51.157", "356");
INSERT INTO `wp_gf_form_view` VALUES("26856", "3", "2016-02-28 09:01:08", "202.46.56.16", "390");
INSERT INTO `wp_gf_form_view` VALUES("26857", "3", "2016-02-28 10:00:38", "202.46.52.206", "440");
INSERT INTO `wp_gf_form_view` VALUES("26858", "8", "2016-02-28 10:36:20", "202.46.55.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("26859", "3", "2016-02-28 11:00:08", "202.46.54.101", "417");
INSERT INTO `wp_gf_form_view` VALUES("26860", "8", "2016-02-28 11:06:05", "202.46.51.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("26861", "3", "2016-02-28 12:02:37", "202.46.53.175", "275");
INSERT INTO `wp_gf_form_view` VALUES("26862", "3", "2016-02-28 13:03:50", "202.46.49.192", "348");
INSERT INTO `wp_gf_form_view` VALUES("26863", "8", "2016-02-28 13:06:50", "202.46.48.29", "3");
INSERT INTO `wp_gf_form_view` VALUES("26864", "3", "2016-02-28 14:01:35", "202.46.49.195", "218");
INSERT INTO `wp_gf_form_view` VALUES("26865", "3", "2016-02-28 15:01:41", "202.46.50.126", "320");
INSERT INTO `wp_gf_form_view` VALUES("26866", "8", "2016-02-28 15:43:55", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26867", "3", "2016-02-28 16:00:23", "157.55.39.96", "378");
INSERT INTO `wp_gf_form_view` VALUES("26868", "8", "2016-02-28 16:01:12", "202.46.58.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("26869", "3", "2016-02-28 17:00:42", "202.46.54.185", "455");
INSERT INTO `wp_gf_form_view` VALUES("26870", "8", "2016-02-28 17:30:27", "202.46.55.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("26871", "3", "2016-02-28 18:00:12", "202.46.48.15", "275");
INSERT INTO `wp_gf_form_view` VALUES("26872", "8", "2016-02-28 18:09:07", "202.46.56.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("26873", "3", "2016-02-28 19:02:41", "202.46.55.124", "1222");
INSERT INTO `wp_gf_form_view` VALUES("26874", "8", "2016-02-28 19:02:41", "202.46.55.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("26875", "9", "2016-02-28 19:52:59", "207.46.13.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("26876", "7", "2016-02-28 19:53:47", "157.55.39.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("26877", "3", "2016-02-28 20:02:11", "202.46.55.38", "388");
INSERT INTO `wp_gf_form_view` VALUES("26878", "8", "2016-02-28 20:25:59", "202.46.54.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("26879", "3", "2016-02-28 21:01:28", "66.249.74.106", "386");
INSERT INTO `wp_gf_form_view` VALUES("26880", "8", "2016-02-28 21:16:34", "202.46.48.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("26881", "3", "2016-02-28 22:01:12", "202.46.53.150", "1286");
INSERT INTO `wp_gf_form_view` VALUES("26882", "2", "2016-02-28 22:28:53", "149.91.83.211", "3");
INSERT INTO `wp_gf_form_view` VALUES("26883", "8", "2016-02-28 22:33:55", "202.46.57.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("26884", "3", "2016-02-28 23:00:00", "117.240.187.35", "653");
INSERT INTO `wp_gf_form_view` VALUES("26885", "2", "2016-02-28 23:00:56", "117.240.187.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("26886", "8", "2016-02-28 23:36:25", "202.46.55.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("26887", "3", "2016-02-29 00:00:12", "202.46.50.159", "592");
INSERT INTO `wp_gf_form_view` VALUES("26888", "1", "2016-02-29 00:29:57", "202.46.48.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("26889", "8", "2016-02-29 00:44:50", "202.46.50.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("26890", "3", "2016-02-29 01:00:24", "64.251.23.112", "379");
INSERT INTO `wp_gf_form_view` VALUES("26891", "8", "2016-02-29 01:08:39", "202.46.58.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("26892", "3", "2016-02-29 02:01:22", "68.180.229.161", "331");
INSERT INTO `wp_gf_form_view` VALUES("26893", "8", "2016-02-29 02:58:54", "202.46.57.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("26894", "3", "2016-02-29 03:01:53", "202.46.48.120", "230");
INSERT INTO `wp_gf_form_view` VALUES("26895", "8", "2016-02-29 03:01:53", "202.46.48.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("26896", "3", "2016-02-29 04:01:38", "202.46.56.181", "260");
INSERT INTO `wp_gf_form_view` VALUES("26897", "3", "2016-02-29 05:01:21", "202.46.52.60", "324");
INSERT INTO `wp_gf_form_view` VALUES("26898", "8", "2016-02-29 05:16:47", "68.180.229.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("26899", "3", "2016-02-29 06:00:38", "209.52.88.148", "417");
INSERT INTO `wp_gf_form_view` VALUES("26900", "1", "2016-02-29 06:44:59", "23.229.103.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("26901", "3", "2016-02-29 07:00:20", "202.46.57.126", "395");
INSERT INTO `wp_gf_form_view` VALUES("26902", "3", "2016-02-29 08:17:45", "202.46.49.207", "264");
INSERT INTO `wp_gf_form_view` VALUES("26903", "3", "2016-02-29 09:02:23", "202.46.56.177", "301");
INSERT INTO `wp_gf_form_view` VALUES("26904", "8", "2016-02-29 09:02:23", "202.46.56.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("26905", "3", "2016-02-29 10:00:49", "202.46.54.199", "392");
INSERT INTO `wp_gf_form_view` VALUES("26906", "8", "2016-02-29 10:15:43", "202.46.52.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("26907", "3", "2016-02-29 11:00:20", "202.46.50.91", "346");
INSERT INTO `wp_gf_form_view` VALUES("26908", "6", "2016-02-29 11:32:38", "51.255.65.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("26909", "3", "2016-02-29 12:00:23", "202.46.55.170", "219");
INSERT INTO `wp_gf_form_view` VALUES("26910", "3", "2016-02-29 13:00:20", "202.46.48.204", "391");
INSERT INTO `wp_gf_form_view` VALUES("26911", "1", "2016-02-29 13:13:27", "209.0.51.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("26912", "8", "2016-02-29 13:56:52", "202.46.50.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("26913", "3", "2016-02-29 14:02:50", "202.46.50.182", "260");
INSERT INTO `wp_gf_form_view` VALUES("26914", "8", "2016-02-29 14:17:42", "202.46.55.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("26915", "3", "2016-02-29 15:01:04", "66.249.74.106", "303");
INSERT INTO `wp_gf_form_view` VALUES("26916", "8", "2016-02-29 15:14:14", "202.46.55.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("26917", "3", "2016-02-29 16:01:50", "202.46.57.19", "286");
INSERT INTO `wp_gf_form_view` VALUES("26918", "3", "2016-02-29 17:01:20", "202.46.58.19", "345");
INSERT INTO `wp_gf_form_view` VALUES("26919", "8", "2016-02-29 17:25:09", "202.46.52.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("26920", "1", "2016-02-29 17:53:02", "167.114.197.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("26921", "3", "2016-02-29 18:00:50", "202.46.48.80", "298");
INSERT INTO `wp_gf_form_view` VALUES("26922", "8", "2016-02-29 18:06:48", "202.46.55.134", "4");
INSERT INTO `wp_gf_form_view` VALUES("26923", "3", "2016-02-29 19:00:22", "202.46.54.147", "381");
INSERT INTO `wp_gf_form_view` VALUES("26924", "8", "2016-02-29 19:36:03", "202.46.57.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("26925", "3", "2016-02-29 20:02:49", "202.46.55.195", "323");
INSERT INTO `wp_gf_form_view` VALUES("26926", "8", "2016-02-29 20:44:29", "202.46.57.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("26927", "3", "2016-02-29 21:02:21", "202.46.49.197", "377");
INSERT INTO `wp_gf_form_view` VALUES("26928", "8", "2016-02-29 21:26:08", "202.46.49.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("26929", "3", "2016-02-29 22:01:50", "202.46.52.42", "328");
INSERT INTO `wp_gf_form_view` VALUES("26930", "8", "2016-02-29 22:04:50", "202.46.55.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("26931", "3", "2016-02-29 23:01:21", "202.46.55.150", "296");
INSERT INTO `wp_gf_form_view` VALUES("26932", "8", "2016-02-29 23:54:54", "202.46.51.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("26933", "3", "2016-03-01 00:03:49", "202.46.54.32", "634");
INSERT INTO `wp_gf_form_view` VALUES("26934", "1", "2016-03-01 00:32:31", "46.105.86.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("26935", "2", "2016-03-01 00:57:43", "81.171.107.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("26936", "3", "2016-03-01 01:00:21", "202.46.50.185", "331");
INSERT INTO `wp_gf_form_view` VALUES("26937", "8", "2016-03-01 01:12:15", "202.46.49.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("26938", "2", "2016-03-01 01:53:56", "46.246.48.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("26939", "3", "2016-03-01 02:00:00", "207.46.13.91", "327");
INSERT INTO `wp_gf_form_view` VALUES("26940", "8", "2016-03-01 02:56:50", "202.46.50.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("26941", "3", "2016-03-01 03:05:33", "66.249.74.102", "342");
INSERT INTO `wp_gf_form_view` VALUES("26942", "3", "2016-03-01 04:02:14", "62.210.162.184", "261");
INSERT INTO `wp_gf_form_view` VALUES("26943", "3", "2016-03-01 05:02:11", "202.46.58.84", "367");
INSERT INTO `wp_gf_form_view` VALUES("26944", "8", "2016-03-01 05:02:11", "202.46.58.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("26945", "3", "2016-03-01 06:01:41", "202.46.54.137", "325");
INSERT INTO `wp_gf_form_view` VALUES("26946", "8", "2016-03-01 06:04:40", "202.46.57.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("26947", "3", "2016-03-01 07:01:15", "202.46.55.178", "350");
INSERT INTO `wp_gf_form_view` VALUES("26948", "8", "2016-03-01 07:01:15", "202.46.55.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("26949", "2", "2016-03-01 07:34:29", "192.240.106.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("26950", "1", "2016-03-01 07:48:48", "91.121.141.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("26951", "3", "2016-03-01 08:00:43", "202.46.49.69", "325");
INSERT INTO `wp_gf_form_view` VALUES("26952", "3", "2016-03-01 09:00:13", "202.46.51.206", "476");
INSERT INTO `wp_gf_form_view` VALUES("26953", "3", "2016-03-01 10:02:41", "202.46.52.66", "316");
INSERT INTO `wp_gf_form_view` VALUES("26954", "3", "2016-03-01 11:02:11", "202.46.53.210", "350");
INSERT INTO `wp_gf_form_view` VALUES("26955", "3", "2016-03-01 12:01:46", "202.46.50.163", "629");
INSERT INTO `wp_gf_form_view` VALUES("26956", "2", "2016-03-01 12:21:02", "79.114.248.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("26957", "3", "2016-03-01 13:01:18", "202.46.54.186", "212");
INSERT INTO `wp_gf_form_view` VALUES("26958", "3", "2016-03-01 14:06:32", "202.46.51.114", "465");
INSERT INTO `wp_gf_form_view` VALUES("26959", "8", "2016-03-01 14:38:00", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26960", "3", "2016-03-01 15:00:40", "202.46.48.198", "633");
INSERT INTO `wp_gf_form_view` VALUES("26961", "1", "2016-03-01 15:13:24", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26962", "2", "2016-03-01 15:16:35", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("26963", "5", "2016-03-01 15:31:20", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("26964", "6", "2016-03-01 15:46:18", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("26965", "3", "2016-03-01 16:00:11", "202.46.52.74", "510");
INSERT INTO `wp_gf_form_view` VALUES("26966", "1", "2016-03-01 16:40:38", "172.106.1.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("26967", "3", "2016-03-01 17:02:39", "202.46.55.182", "493");
INSERT INTO `wp_gf_form_view` VALUES("26968", "3", "2016-03-01 18:01:07", "24.108.86.97", "371");
INSERT INTO `wp_gf_form_view` VALUES("26969", "8", "2016-03-01 18:26:22", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26970", "3", "2016-03-01 19:01:40", "202.46.58.99", "496");
INSERT INTO `wp_gf_form_view` VALUES("26971", "3", "2016-03-01 20:01:10", "202.46.51.182", "493");
INSERT INTO `wp_gf_form_view` VALUES("26972", "1", "2016-03-01 20:39:26", "23.94.57.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("26973", "3", "2016-03-01 21:00:41", "202.46.53.165", "378");
INSERT INTO `wp_gf_form_view` VALUES("26974", "3", "2016-03-01 22:02:37", "202.46.50.152", "345");
INSERT INTO `wp_gf_form_view` VALUES("26975", "3", "2016-03-01 23:01:13", "202.46.49.153", "302");
INSERT INTO `wp_gf_form_view` VALUES("26976", "3", "2016-03-02 00:02:26", "66.249.74.102", "404");
INSERT INTO `wp_gf_form_view` VALUES("26977", "7", "2016-03-02 00:43:31", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26978", "3", "2016-03-02 01:02:54", "66.249.74.48", "353");
INSERT INTO `wp_gf_form_view` VALUES("26979", "3", "2016-03-02 02:00:25", "72.143.229.194", "328");
INSERT INTO `wp_gf_form_view` VALUES("26980", "3", "2016-03-02 03:00:14", "217.69.133.231", "381");
INSERT INTO `wp_gf_form_view` VALUES("26981", "3", "2016-03-02 04:00:25", "202.46.49.97", "521");
INSERT INTO `wp_gf_form_view` VALUES("26982", "3", "2016-03-02 05:00:21", "40.77.167.15", "466");
INSERT INTO `wp_gf_form_view` VALUES("26983", "3", "2016-03-02 06:02:23", "202.46.57.15", "393");
INSERT INTO `wp_gf_form_view` VALUES("26984", "3", "2016-03-02 07:01:54", "202.46.51.88", "412");
INSERT INTO `wp_gf_form_view` VALUES("26985", "9", "2016-03-02 07:15:51", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26986", "6", "2016-03-02 07:18:25", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("26987", "8", "2016-03-02 07:21:30", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("26988", "3", "2016-03-02 08:01:24", "202.46.53.190", "355");
INSERT INTO `wp_gf_form_view` VALUES("26989", "3", "2016-03-02 09:04:46", "202.46.56.191", "249");
INSERT INTO `wp_gf_form_view` VALUES("26990", "3", "2016-03-02 10:01:49", "202.46.54.17", "393");
INSERT INTO `wp_gf_form_view` VALUES("26991", "3", "2016-03-02 11:00:02", "202.46.52.175", "400");
INSERT INTO `wp_gf_form_view` VALUES("26992", "1", "2016-03-02 11:02:23", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("26993", "3", "2016-03-02 12:00:50", "202.46.57.14", "338");
INSERT INTO `wp_gf_form_view` VALUES("26994", "3", "2016-03-02 13:08:43", "202.46.49.108", "330");
INSERT INTO `wp_gf_form_view` VALUES("26995", "3", "2016-03-02 14:01:36", "202.46.57.210", "158");
INSERT INTO `wp_gf_form_view` VALUES("26996", "3", "2016-03-02 15:11:16", "202.46.56.13", "86");
INSERT INTO `wp_gf_form_view` VALUES("26997", "3", "2016-03-02 16:11:04", "202.46.54.30", "259");
INSERT INTO `wp_gf_form_view` VALUES("26998", "3", "2016-03-02 17:00:03", "51.255.65.2", "504");
INSERT INTO `wp_gf_form_view` VALUES("26999", "2", "2016-03-02 17:09:55", "91.108.178.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("27000", "3", "2016-03-02 18:02:26", "202.46.53.192", "359");
INSERT INTO `wp_gf_form_view` VALUES("27001", "3", "2016-03-02 19:00:37", "202.46.48.126", "358");
INSERT INTO `wp_gf_form_view` VALUES("27002", "1", "2016-03-02 19:28:25", "46.105.86.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("27003", "3", "2016-03-02 20:00:20", "202.46.52.63", "365");
INSERT INTO `wp_gf_form_view` VALUES("27004", "3", "2016-03-02 21:00:57", "199.21.99.202", "367");
INSERT INTO `wp_gf_form_view` VALUES("27005", "3", "2016-03-02 22:02:01", "202.46.58.155", "322");
INSERT INTO `wp_gf_form_view` VALUES("27006", "3", "2016-03-02 23:00:10", "202.46.55.16", "400");
INSERT INTO `wp_gf_form_view` VALUES("27007", "3", "2016-03-03 00:00:59", "202.46.52.208", "318");
INSERT INTO `wp_gf_form_view` VALUES("27008", "3", "2016-03-03 01:00:59", "202.46.54.102", "311");
INSERT INTO `wp_gf_form_view` VALUES("27009", "3", "2016-03-03 02:03:11", "202.46.56.179", "244");
INSERT INTO `wp_gf_form_view` VALUES("27010", "9", "2016-03-03 02:09:28", "51.255.65.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("27011", "3", "2016-03-03 03:02:27", "202.46.54.104", "273");
INSERT INTO `wp_gf_form_view` VALUES("27012", "3", "2016-03-03 04:13:15", "202.46.58.131", "350");
INSERT INTO `wp_gf_form_view` VALUES("27013", "3", "2016-03-03 05:01:39", "202.46.54.190", "852");
INSERT INTO `wp_gf_form_view` VALUES("27014", "1", "2016-03-03 05:15:28", "207.46.13.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("27015", "9", "2016-03-03 05:15:32", "207.46.13.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("27016", "3", "2016-03-03 06:02:58", "202.46.48.81", "312");
INSERT INTO `wp_gf_form_view` VALUES("27017", "3", "2016-03-03 07:01:02", "202.46.54.196", "334");
INSERT INTO `wp_gf_form_view` VALUES("27018", "3", "2016-03-03 08:04:09", "66.249.74.104", "456");
INSERT INTO `wp_gf_form_view` VALUES("27019", "3", "2016-03-03 09:00:56", "202.46.51.118", "324");
INSERT INTO `wp_gf_form_view` VALUES("27020", "3", "2016-03-03 10:02:48", "202.46.57.205", "670");
INSERT INTO `wp_gf_form_view` VALUES("27021", "2", "2016-03-03 10:31:49", "145.132.1.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("27022", "3", "2016-03-03 11:03:29", "202.46.54.138", "290");
INSERT INTO `wp_gf_form_view` VALUES("27023", "3", "2016-03-03 12:03:25", "202.46.53.157", "369");
INSERT INTO `wp_gf_form_view` VALUES("27024", "1", "2016-03-03 12:40:23", "192.240.106.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("27025", "3", "2016-03-03 13:01:17", "202.46.49.207", "223");
INSERT INTO `wp_gf_form_view` VALUES("27026", "3", "2016-03-03 14:00:25", "202.46.57.182", "334");
INSERT INTO `wp_gf_form_view` VALUES("27027", "3", "2016-03-03 15:03:21", "202.46.49.131", "189");
INSERT INTO `wp_gf_form_view` VALUES("27028", "3", "2016-03-03 16:05:13", "202.46.55.15", "280");
INSERT INTO `wp_gf_form_view` VALUES("27029", "2", "2016-03-03 16:17:59", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27030", "3", "2016-03-03 17:04:53", "202.46.51.172", "275");
INSERT INTO `wp_gf_form_view` VALUES("27031", "3", "2016-03-03 18:01:56", "202.46.58.183", "485");
INSERT INTO `wp_gf_form_view` VALUES("27032", "3", "2016-03-03 19:00:53", "202.46.54.141", "405");
INSERT INTO `wp_gf_form_view` VALUES("27033", "3", "2016-03-03 20:00:33", "184.66.227.219", "467");
INSERT INTO `wp_gf_form_view` VALUES("27034", "3", "2016-03-03 21:01:11", "202.46.56.205", "440");
INSERT INTO `wp_gf_form_view` VALUES("27035", "3", "2016-03-03 22:00:09", "202.46.53.205", "420");
INSERT INTO `wp_gf_form_view` VALUES("27036", "3", "2016-03-03 23:02:21", "202.46.52.171", "254");
INSERT INTO `wp_gf_form_view` VALUES("27037", "3", "2016-03-04 00:00:24", "202.46.51.154", "481");
INSERT INTO `wp_gf_form_view` VALUES("27038", "3", "2016-03-04 01:03:19", "207.46.13.112", "345");
INSERT INTO `wp_gf_form_view` VALUES("27039", "1", "2016-03-04 01:48:01", "188.240.141.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("27040", "3", "2016-03-04 02:04:08", "202.46.57.21", "314");
INSERT INTO `wp_gf_form_view` VALUES("27041", "3", "2016-03-04 03:00:29", "202.46.49.62", "362");
INSERT INTO `wp_gf_form_view` VALUES("27042", "3", "2016-03-04 04:09:34", "202.46.57.74", "265");
INSERT INTO `wp_gf_form_view` VALUES("27043", "3", "2016-03-04 05:00:32", "202.46.52.70", "273");
INSERT INTO `wp_gf_form_view` VALUES("27044", "3", "2016-03-04 06:00:40", "202.46.56.96", "400");
INSERT INTO `wp_gf_form_view` VALUES("27045", "2", "2016-03-04 06:29:18", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("27046", "3", "2016-03-04 07:01:47", "202.46.49.60", "291");
INSERT INTO `wp_gf_form_view` VALUES("27047", "3", "2016-03-04 08:02:09", "202.46.53.193", "265");
INSERT INTO `wp_gf_form_view` VALUES("27048", "3", "2016-03-04 09:04:24", "202.46.54.18", "366");
INSERT INTO `wp_gf_form_view` VALUES("27049", "3", "2016-03-04 10:00:00", "202.46.52.16", "380");
INSERT INTO `wp_gf_form_view` VALUES("27050", "3", "2016-03-04 11:01:18", "202.46.54.133", "342");
INSERT INTO `wp_gf_form_view` VALUES("27051", "3", "2016-03-04 12:01:48", "202.46.58.73", "271");
INSERT INTO `wp_gf_form_view` VALUES("27052", "3", "2016-03-04 13:01:59", "202.46.51.198", "323");
INSERT INTO `wp_gf_form_view` VALUES("27053", "3", "2016-03-04 14:02:14", "202.46.55.138", "205");
INSERT INTO `wp_gf_form_view` VALUES("27054", "3", "2016-03-04 15:03:03", "202.46.53.161", "388");
INSERT INTO `wp_gf_form_view` VALUES("27055", "2", "2016-03-04 15:29:42", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("27056", "3", "2016-03-04 16:02:01", "202.46.53.66", "528");
INSERT INTO `wp_gf_form_view` VALUES("27057", "2", "2016-03-04 16:31:44", "104.236.93.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("27058", "3", "2016-03-04 17:00:59", "202.46.58.72", "308");
INSERT INTO `wp_gf_form_view` VALUES("27059", "3", "2016-03-04 18:02:19", "202.46.58.20", "399");
INSERT INTO `wp_gf_form_view` VALUES("27060", "3", "2016-03-04 19:01:17", "202.46.53.45", "365");
INSERT INTO `wp_gf_form_view` VALUES("27061", "9", "2016-03-04 19:13:49", "207.46.13.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("27062", "3", "2016-03-04 20:00:16", "202.46.50.99", "426");
INSERT INTO `wp_gf_form_view` VALUES("27063", "3", "2016-03-04 21:01:37", "202.46.51.27", "377");
INSERT INTO `wp_gf_form_view` VALUES("27064", "3", "2016-03-04 22:00:23", "68.180.229.161", "402");
INSERT INTO `wp_gf_form_view` VALUES("27065", "9", "2016-03-04 23:01:28", "151.237.178.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("27066", "3", "2016-03-04 23:01:29", "151.237.178.55", "381");
INSERT INTO `wp_gf_form_view` VALUES("27067", "3", "2016-03-05 00:00:53", "202.46.57.24", "409");
INSERT INTO `wp_gf_form_view` VALUES("27068", "3", "2016-03-05 01:02:13", "202.46.50.134", "289");
INSERT INTO `wp_gf_form_view` VALUES("27069", "1", "2016-03-05 01:23:28", "202.46.58.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("27070", "3", "2016-03-05 02:04:16", "202.46.57.163", "424");
INSERT INTO `wp_gf_form_view` VALUES("27071", "3", "2016-03-05 03:00:53", "202.46.52.18", "362");
INSERT INTO `wp_gf_form_view` VALUES("27072", "3", "2016-03-05 04:01:04", "202.46.48.17", "446");
INSERT INTO `wp_gf_form_view` VALUES("27073", "3", "2016-03-05 05:00:03", "202.46.50.150", "405");
INSERT INTO `wp_gf_form_view` VALUES("27074", "3", "2016-03-05 06:05:57", "199.21.99.202", "343");
INSERT INTO `wp_gf_form_view` VALUES("27075", "3", "2016-03-05 07:00:44", "157.55.39.104", "452");
INSERT INTO `wp_gf_form_view` VALUES("27076", "1", "2016-03-05 07:40:00", "192.161.54.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("27077", "3", "2016-03-05 08:02:11", "202.46.51.201", "536");
INSERT INTO `wp_gf_form_view` VALUES("27078", "3", "2016-03-05 09:01:09", "202.46.51.199", "630");
INSERT INTO `wp_gf_form_view` VALUES("27079", "8", "2016-03-05 09:25:49", "66.249.74.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("27080", "3", "2016-03-05 10:00:14", "202.46.58.83", "521");
INSERT INTO `wp_gf_form_view` VALUES("27081", "1", "2016-03-05 10:02:59", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("27082", "2", "2016-03-05 10:07:18", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("27083", "3", "2016-03-05 11:00:27", "202.46.49.198", "455");
INSERT INTO `wp_gf_form_view` VALUES("27084", "3", "2016-03-05 12:01:34", "46.118.120.31", "434");
INSERT INTO `wp_gf_form_view` VALUES("27085", "1", "2016-03-05 12:54:11", "46.246.43.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("27086", "3", "2016-03-05 13:00:45", "202.46.56.33", "423");
INSERT INTO `wp_gf_form_view` VALUES("27087", "3", "2016-03-05 14:02:07", "202.46.54.15", "363");
INSERT INTO `wp_gf_form_view` VALUES("27088", "3", "2016-03-05 15:02:48", "202.46.52.204", "409");
INSERT INTO `wp_gf_form_view` VALUES("27089", "3", "2016-03-05 16:01:46", "202.46.51.172", "365");
INSERT INTO `wp_gf_form_view` VALUES("27090", "3", "2016-03-05 17:00:44", "202.46.58.120", "469");
INSERT INTO `wp_gf_form_view` VALUES("27091", "3", "2016-03-05 18:02:04", "202.46.57.70", "372");
INSERT INTO `wp_gf_form_view` VALUES("27092", "3", "2016-03-05 19:01:02", "202.46.49.60", "428");
INSERT INTO `wp_gf_form_view` VALUES("27093", "3", "2016-03-05 20:00:00", "202.46.51.100", "365");
INSERT INTO `wp_gf_form_view` VALUES("27094", "3", "2016-03-05 21:01:19", "202.46.48.27", "427");
INSERT INTO `wp_gf_form_view` VALUES("27095", "3", "2016-03-05 22:00:18", "202.46.50.185", "592");
INSERT INTO `wp_gf_form_view` VALUES("27096", "2", "2016-03-05 22:02:56", "199.204.185.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("27097", "1", "2016-03-05 22:13:30", "91.108.73.241", "2");
INSERT INTO `wp_gf_form_view` VALUES("27098", "3", "2016-03-05 23:01:37", "202.46.56.63", "649");
INSERT INTO `wp_gf_form_view` VALUES("27099", "2", "2016-03-05 23:18:03", "79.114.248.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("27100", "3", "2016-03-06 00:00:56", "202.46.57.124", "251");
INSERT INTO `wp_gf_form_view` VALUES("27101", "3", "2016-03-06 01:00:04", "62.210.162.184", "324");
INSERT INTO `wp_gf_form_view` VALUES("27102", "3", "2016-03-06 02:02:05", "202.46.52.73", "482");
INSERT INTO `wp_gf_form_view` VALUES("27103", "5", "2016-03-06 02:02:41", "192.240.106.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("27104", "3", "2016-03-06 03:02:41", "202.46.48.16", "355");
INSERT INTO `wp_gf_form_view` VALUES("27105", "3", "2016-03-06 04:03:20", "202.46.52.110", "325");
INSERT INTO `wp_gf_form_view` VALUES("27106", "3", "2016-03-06 05:00:30", "202.46.50.210", "714");
INSERT INTO `wp_gf_form_view` VALUES("27107", "3", "2016-03-06 06:01:04", "202.46.51.183", "437");
INSERT INTO `wp_gf_form_view` VALUES("27108", "5", "2016-03-06 06:33:38", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("27109", "3", "2016-03-06 07:00:02", "202.46.49.206", "1095");
INSERT INTO `wp_gf_form_view` VALUES("27110", "8", "2016-03-06 07:23:29", "157.55.39.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("27111", "7", "2016-03-06 07:24:31", "40.77.167.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("27112", "3", "2016-03-06 08:00:37", "202.46.52.178", "425");
INSERT INTO `wp_gf_form_view` VALUES("27113", "3", "2016-03-06 09:01:13", "202.46.52.176", "372");
INSERT INTO `wp_gf_form_view` VALUES("27114", "3", "2016-03-06 10:00:48", "202.46.48.147", "508");
INSERT INTO `wp_gf_form_view` VALUES("27115", "3", "2016-03-06 11:01:07", "68.180.229.161", "304");
INSERT INTO `wp_gf_form_view` VALUES("27116", "3", "2016-03-06 12:00:31", "202.46.55.154", "216");
INSERT INTO `wp_gf_form_view` VALUES("27117", "3", "2016-03-06 13:01:29", "202.46.53.54", "336");
INSERT INTO `wp_gf_form_view` VALUES("27118", "3", "2016-03-06 14:00:53", "202.46.49.198", "374");
INSERT INTO `wp_gf_form_view` VALUES("27119", "3", "2016-03-06 15:00:54", "202.46.53.205", "387");
INSERT INTO `wp_gf_form_view` VALUES("27120", "1", "2016-03-06 15:40:42", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27121", "3", "2016-03-06 16:01:29", "202.46.57.18", "351");
INSERT INTO `wp_gf_form_view` VALUES("27122", "6", "2016-03-06 16:33:58", "202.46.53.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("27123", "3", "2016-03-06 17:01:27", "178.137.86.150", "470");
INSERT INTO `wp_gf_form_view` VALUES("27124", "3", "2016-03-06 17:01:27", "178.137.86.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("27125", "3", "2016-03-06 18:00:29", "202.46.56.181", "485");
INSERT INTO `wp_gf_form_view` VALUES("27126", "3", "2016-03-06 19:01:05", "202.46.51.19", "358");
INSERT INTO `wp_gf_form_view` VALUES("27127", "3", "2016-03-06 20:01:39", "202.46.54.101", "418");
INSERT INTO `wp_gf_form_view` VALUES("27128", "3", "2016-03-06 21:02:15", "202.46.54.192", "384");
INSERT INTO `wp_gf_form_view` VALUES("27129", "3", "2016-03-06 22:00:40", "202.46.51.21", "462");
INSERT INTO `wp_gf_form_view` VALUES("27130", "3", "2016-03-06 23:01:16", "202.46.57.203", "462");
INSERT INTO `wp_gf_form_view` VALUES("27131", "3", "2016-03-07 00:01:50", "202.46.50.93", "419");
INSERT INTO `wp_gf_form_view` VALUES("27132", "2", "2016-03-07 00:57:27", "40.77.167.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("27133", "3", "2016-03-07 01:00:26", "207.46.13.11", "469");
INSERT INTO `wp_gf_form_view` VALUES("27134", "3", "2016-03-07 02:01:45", "91.108.178.252", "499");
INSERT INTO `wp_gf_form_view` VALUES("27135", "3", "2016-03-07 03:03:45", "202.46.51.115", "509");
INSERT INTO `wp_gf_form_view` VALUES("27136", "3", "2016-03-07 04:03:26", "202.46.55.182", "488");
INSERT INTO `wp_gf_form_view` VALUES("27137", "3", "2016-03-07 05:01:41", "202.46.52.107", "519");
INSERT INTO `wp_gf_form_view` VALUES("27138", "3", "2016-03-07 06:00:12", "202.46.57.125", "490");
INSERT INTO `wp_gf_form_view` VALUES("27139", "3", "2016-03-07 07:00:42", "202.46.53.175", "375");
INSERT INTO `wp_gf_form_view` VALUES("27140", "3", "2016-03-07 08:02:45", "202.46.53.110", "356");
INSERT INTO `wp_gf_form_view` VALUES("27141", "3", "2016-03-07 09:01:42", "202.46.56.209", "634");
INSERT INTO `wp_gf_form_view` VALUES("27142", "2", "2016-03-07 09:32:05", "40.77.167.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("27143", "3", "2016-03-07 10:03:26", "202.46.56.199", "420");
INSERT INTO `wp_gf_form_view` VALUES("27144", "3", "2016-03-07 11:02:55", "202.46.58.159", "378");
INSERT INTO `wp_gf_form_view` VALUES("27145", "3", "2016-03-07 12:05:15", "202.46.56.197", "246");
INSERT INTO `wp_gf_form_view` VALUES("27146", "3", "2016-03-07 13:00:33", "202.46.50.75", "710");
INSERT INTO `wp_gf_form_view` VALUES("27147", "3", "2016-03-07 14:01:17", "202.46.58.123", "190");
INSERT INTO `wp_gf_form_view` VALUES("27148", "3", "2016-03-07 15:02:22", "157.55.39.222", "283");
INSERT INTO `wp_gf_form_view` VALUES("27149", "3", "2016-03-07 16:00:30", "66.249.74.102", "420");
INSERT INTO `wp_gf_form_view` VALUES("27150", "3", "2016-03-07 17:00:15", "202.46.52.155", "344");
INSERT INTO `wp_gf_form_view` VALUES("27151", "3", "2016-03-07 18:00:44", "202.46.49.97", "333");
INSERT INTO `wp_gf_form_view` VALUES("27152", "3", "2016-03-07 19:00:43", "207.6.162.99", "562");
INSERT INTO `wp_gf_form_view` VALUES("27153", "3", "2016-03-07 20:01:42", "202.46.56.33", "347");
INSERT INTO `wp_gf_form_view` VALUES("27154", "3", "2016-03-07 21:00:13", "202.46.57.89", "281");
INSERT INTO `wp_gf_form_view` VALUES("27155", "3", "2016-03-07 22:00:36", "202.46.49.149", "330");
INSERT INTO `wp_gf_form_view` VALUES("27156", "3", "2016-03-07 23:00:48", "202.46.58.189", "312");
INSERT INTO `wp_gf_form_view` VALUES("27157", "3", "2016-03-08 00:01:22", "202.46.57.177", "479");
INSERT INTO `wp_gf_form_view` VALUES("27158", "3", "2016-03-08 01:01:51", "202.46.58.151", "688");
INSERT INTO `wp_gf_form_view` VALUES("27159", "2", "2016-03-08 01:39:03", "174.127.133.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("27160", "3", "2016-03-08 02:01:05", "202.46.49.63", "598");
INSERT INTO `wp_gf_form_view` VALUES("27161", "3", "2016-03-08 03:00:57", "202.46.50.14", "560");
INSERT INTO `wp_gf_form_view` VALUES("27162", "6", "2016-03-08 03:39:08", "80.82.221.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("27163", "3", "2016-03-08 04:01:25", "202.46.54.101", "381");
INSERT INTO `wp_gf_form_view` VALUES("27164", "1", "2016-03-08 04:25:00", "104.227.56.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("27165", "3", "2016-03-08 05:01:39", "202.46.51.28", "532");
INSERT INTO `wp_gf_form_view` VALUES("27166", "3", "2016-03-08 06:00:54", "202.46.51.102", "496");
INSERT INTO `wp_gf_form_view` VALUES("27167", "3", "2016-03-08 07:00:24", "202.46.57.206", "462");
INSERT INTO `wp_gf_form_view` VALUES("27168", "3", "2016-03-08 08:00:52", "202.46.48.142", "492");
INSERT INTO `wp_gf_form_view` VALUES("27169", "3", "2016-03-08 09:01:21", "202.46.54.100", "339");
INSERT INTO `wp_gf_form_view` VALUES("27170", "3", "2016-03-08 10:00:34", "202.46.57.16", "386");
INSERT INTO `wp_gf_form_view` VALUES("27171", "3", "2016-03-08 11:00:18", "202.46.51.108", "453");
INSERT INTO `wp_gf_form_view` VALUES("27172", "1", "2016-03-08 11:34:30", "96.44.178.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("27173", "3", "2016-03-08 12:00:36", "202.46.49.116", "437");
INSERT INTO `wp_gf_form_view` VALUES("27174", "3", "2016-03-08 13:01:00", "202.46.51.185", "342");
INSERT INTO `wp_gf_form_view` VALUES("27175", "3", "2016-03-08 14:00:10", "202.46.48.125", "329");
INSERT INTO `wp_gf_form_view` VALUES("27176", "3", "2016-03-08 15:00:47", "202.46.58.86", "265");
INSERT INTO `wp_gf_form_view` VALUES("27177", "3", "2016-03-08 16:00:22", "178.137.86.150", "4420");
INSERT INTO `wp_gf_form_view` VALUES("27178", "1", "2016-03-08 16:09:25", "104.236.201.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("27179", "5", "2016-03-08 16:15:54", "104.236.201.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("27180", "6", "2016-03-08 16:23:31", "104.236.201.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("27181", "9", "2016-03-08 16:30:40", "104.236.201.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("27182", "3", "2016-03-08 17:00:48", "104.236.201.44", "2296");
INSERT INTO `wp_gf_form_view` VALUES("27183", "2", "2016-03-08 17:12:56", "104.236.201.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("27184", "8", "2016-03-08 17:26:34", "104.236.201.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("27185", "3", "2016-03-08 18:00:20", "202.46.54.97", "380");
INSERT INTO `wp_gf_form_view` VALUES("27186", "3", "2016-03-08 19:00:49", "202.46.52.62", "379");
INSERT INTO `wp_gf_form_view` VALUES("27187", "3", "2016-03-08 20:01:18", "202.46.53.49", "430");
INSERT INTO `wp_gf_form_view` VALUES("27188", "3", "2016-03-08 21:01:46", "202.46.55.64", "703");
INSERT INTO `wp_gf_form_view` VALUES("27189", "2", "2016-03-08 21:47:09", "37.134.124.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("27190", "3", "2016-03-08 22:00:18", "202.46.57.170", "403");
INSERT INTO `wp_gf_form_view` VALUES("27191", "3", "2016-03-08 23:00:54", "202.46.52.141", "418");
INSERT INTO `wp_gf_form_view` VALUES("27192", "8", "2016-03-08 23:38:45", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27193", "3", "2016-03-09 00:01:16", "202.46.52.178", "460");
INSERT INTO `wp_gf_form_view` VALUES("27194", "3", "2016-03-09 01:01:45", "202.46.57.16", "304");
INSERT INTO `wp_gf_form_view` VALUES("27195", "1", "2016-03-09 01:50:36", "96.44.178.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("27196", "3", "2016-03-09 02:00:27", "202.46.57.20", "350");
INSERT INTO `wp_gf_form_view` VALUES("27197", "3", "2016-03-09 03:01:08", "202.46.55.126", "1010");
INSERT INTO `wp_gf_form_view` VALUES("27198", "9", "2016-03-09 03:20:39", "207.46.13.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("27199", "1", "2016-03-09 03:21:07", "40.77.167.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("27200", "8", "2016-03-09 03:48:39", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("27201", "3", "2016-03-09 04:01:19", "202.46.54.192", "388");
INSERT INTO `wp_gf_form_view` VALUES("27202", "3", "2016-03-09 05:08:14", "202.46.56.114", "320");
INSERT INTO `wp_gf_form_view` VALUES("27203", "3", "2016-03-09 06:05:07", "66.249.74.106", "579");
INSERT INTO `wp_gf_form_view` VALUES("27204", "2", "2016-03-09 06:07:06", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("27205", "3", "2016-03-09 07:00:18", "202.46.54.91", "650");
INSERT INTO `wp_gf_form_view` VALUES("27206", "3", "2016-03-09 08:00:22", "202.46.54.109", "495");
INSERT INTO `wp_gf_form_view` VALUES("27207", "1", "2016-03-09 08:59:05", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("27208", "3", "2016-03-09 09:00:37", "66.249.74.106", "586");
INSERT INTO `wp_gf_form_view` VALUES("27209", "3", "2016-03-09 10:00:35", "202.46.53.91", "469");
INSERT INTO `wp_gf_form_view` VALUES("27210", "3", "2016-03-09 11:00:11", "202.46.57.20", "399");
INSERT INTO `wp_gf_form_view` VALUES("27211", "8", "2016-03-09 11:07:26", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27212", "3", "2016-03-09 12:00:53", "202.46.50.126", "422");
INSERT INTO `wp_gf_form_view` VALUES("27213", "6", "2016-03-09 12:47:47", "66.249.74.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("27214", "3", "2016-03-09 13:02:10", "199.21.99.202", "420");
INSERT INTO `wp_gf_form_view` VALUES("27215", "1", "2016-03-09 13:56:44", "96.44.178.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("27216", "3", "2016-03-09 14:03:51", "202.46.54.190", "612");
INSERT INTO `wp_gf_form_view` VALUES("27217", "3", "2016-03-09 15:00:55", "202.46.58.18", "452");
INSERT INTO `wp_gf_form_view` VALUES("27218", "3", "2016-03-09 16:01:03", "202.46.55.66", "518");
INSERT INTO `wp_gf_form_view` VALUES("27219", "2", "2016-03-09 16:21:05", "96.50.18.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("27220", "1", "2016-03-09 16:56:40", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27221", "3", "2016-03-09 17:01:04", "202.46.52.158", "471");
INSERT INTO `wp_gf_form_view` VALUES("27222", "3", "2016-03-09 18:01:09", "202.46.57.177", "403");
INSERT INTO `wp_gf_form_view` VALUES("27223", "3", "2016-03-09 19:01:14", "202.46.56.181", "605");
INSERT INTO `wp_gf_form_view` VALUES("27224", "3", "2016-03-09 20:01:19", "202.46.49.152", "503");
INSERT INTO `wp_gf_form_view` VALUES("27225", "3", "2016-03-09 21:01:23", "202.46.51.80", "464");
INSERT INTO `wp_gf_form_view` VALUES("27226", "3", "2016-03-09 22:01:29", "202.46.49.140", "435");
INSERT INTO `wp_gf_form_view` VALUES("27227", "3", "2016-03-09 23:01:34", "202.46.52.70", "476");
INSERT INTO `wp_gf_form_view` VALUES("27228", "3", "2016-03-10 00:00:03", "202.46.58.188", "727");
INSERT INTO `wp_gf_form_view` VALUES("27229", "2", "2016-03-10 00:18:40", "184.69.163.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("27230", "3", "2016-03-10 01:00:08", "202.46.54.137", "481");
INSERT INTO `wp_gf_form_view` VALUES("27231", "3", "2016-03-10 02:01:17", "202.46.57.29", "505");
INSERT INTO `wp_gf_form_view` VALUES("27232", "3", "2016-03-10 03:01:23", "202.46.57.166", "645");
INSERT INTO `wp_gf_form_view` VALUES("27233", "3", "2016-03-10 04:01:18", "202.46.57.121", "593");
INSERT INTO `wp_gf_form_view` VALUES("27234", "1", "2016-03-10 04:06:39", "23.108.176.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("27235", "3", "2016-03-10 05:05:17", "202.46.53.14", "498");
INSERT INTO `wp_gf_form_view` VALUES("27236", "3", "2016-03-10 06:00:46", "202.46.48.95", "468");
INSERT INTO `wp_gf_form_view` VALUES("27237", "3", "2016-03-10 07:00:05", "202.46.54.101", "601");
INSERT INTO `wp_gf_form_view` VALUES("27238", "3", "2016-03-10 08:00:09", "202.46.49.72", "639");
INSERT INTO `wp_gf_form_view` VALUES("27239", "3", "2016-03-10 09:00:14", "202.46.49.130", "482");
INSERT INTO `wp_gf_form_view` VALUES("27240", "3", "2016-03-10 10:01:17", "202.46.49.69", "639");
INSERT INTO `wp_gf_form_view` VALUES("27241", "3", "2016-03-10 11:01:23", "202.46.57.22", "726");
INSERT INTO `wp_gf_form_view` VALUES("27242", "6", "2016-03-10 11:03:09", "167.114.235.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("27243", "9", "2016-03-10 11:03:11", "167.114.237.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("27244", "3", "2016-03-10 12:01:27", "202.46.57.206", "560");
INSERT INTO `wp_gf_form_view` VALUES("27245", "3", "2016-03-10 13:01:21", "202.46.58.186", "504");
INSERT INTO `wp_gf_form_view` VALUES("27246", "3", "2016-03-10 14:00:55", "202.46.51.104", "377");
INSERT INTO `wp_gf_form_view` VALUES("27247", "3", "2016-03-10 15:01:04", "202.46.53.124", "396");
INSERT INTO `wp_gf_form_view` VALUES("27248", "3", "2016-03-10 16:00:38", "202.46.56.180", "551");
INSERT INTO `wp_gf_form_view` VALUES("27249", "3", "2016-03-10 17:00:45", "202.46.55.130", "472");
INSERT INTO `wp_gf_form_view` VALUES("27250", "2", "2016-03-10 17:24:39", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27251", "3", "2016-03-10 18:00:48", "202.46.49.207", "606");
INSERT INTO `wp_gf_form_view` VALUES("27252", "3", "2016-03-10 19:00:53", "202.46.55.90", "444");
INSERT INTO `wp_gf_form_view` VALUES("27253", "3", "2016-03-10 20:00:58", "202.46.49.61", "493");
INSERT INTO `wp_gf_form_view` VALUES("27254", "3", "2016-03-10 21:00:00", "202.46.55.89", "508");
INSERT INTO `wp_gf_form_view` VALUES("27255", "3", "2016-03-10 22:01:17", "202.46.55.68", "559");
INSERT INTO `wp_gf_form_view` VALUES("27256", "3", "2016-03-10 23:01:28", "202.46.50.182", "522");
INSERT INTO `wp_gf_form_view` VALUES("27257", "3", "2016-03-11 00:01:04", "202.46.54.29", "557");
INSERT INTO `wp_gf_form_view` VALUES("27258", "3", "2016-03-11 01:00:51", "202.46.50.135", "639");
INSERT INTO `wp_gf_form_view` VALUES("27259", "3", "2016-03-11 02:00:37", "202.46.50.80", "502");
INSERT INTO `wp_gf_form_view` VALUES("27260", "3", "2016-03-11 03:01:53", "202.46.54.196", "673");
INSERT INTO `wp_gf_form_view` VALUES("27261", "1", "2016-03-11 03:28:19", "155.94.129.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("27262", "3", "2016-03-11 04:00:08", "202.46.51.200", "714");
INSERT INTO `wp_gf_form_view` VALUES("27263", "2", "2016-03-11 04:53:01", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("27264", "3", "2016-03-11 05:04:09", "202.46.53.154", "351");
INSERT INTO `wp_gf_form_view` VALUES("27265", "3", "2016-03-11 06:01:25", "202.46.52.43", "445");
INSERT INTO `wp_gf_form_view` VALUES("27266", "3", "2016-03-11 07:00:09", "202.46.53.117", "599");
INSERT INTO `wp_gf_form_view` VALUES("27267", "3", "2016-03-11 08:00:22", "202.46.53.150", "631");
INSERT INTO `wp_gf_form_view` VALUES("27268", "3", "2016-03-11 09:00:08", "202.46.52.178", "683");
INSERT INTO `wp_gf_form_view` VALUES("27269", "6", "2016-03-11 09:49:11", "148.251.54.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("27270", "3", "2016-03-11 10:01:25", "202.46.51.181", "789");
INSERT INTO `wp_gf_form_view` VALUES("27271", "1", "2016-03-11 10:24:11", "46.105.86.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("27272", "9", "2016-03-11 10:25:04", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("27273", "3", "2016-03-11 11:01:11", "202.46.58.17", "647");
INSERT INTO `wp_gf_form_view` VALUES("27274", "1", "2016-03-11 11:47:43", "62.210.84.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("27275", "3", "2016-03-11 12:01:24", "202.46.49.192", "688");
INSERT INTO `wp_gf_form_view` VALUES("27276", "1", "2016-03-11 12:56:40", "23.95.105.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("27277", "3", "2016-03-11 13:00:03", "202.46.51.104", "637");
INSERT INTO `wp_gf_form_view` VALUES("27278", "1", "2016-03-11 13:10:29", "23.94.185.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("27279", "3", "2016-03-11 14:00:49", "202.46.53.57", "378");
INSERT INTO `wp_gf_form_view` VALUES("27280", "3", "2016-03-11 15:02:03", "202.46.54.25", "204");
INSERT INTO `wp_gf_form_view` VALUES("27281", "3", "2016-03-11 16:00:46", "202.46.58.158", "449");
INSERT INTO `wp_gf_form_view` VALUES("27282", "3", "2016-03-11 17:00:32", "202.46.54.192", "528");
INSERT INTO `wp_gf_form_view` VALUES("27283", "3", "2016-03-11 18:00:19", "202.46.55.86", "516");
INSERT INTO `wp_gf_form_view` VALUES("27284", "7", "2016-03-11 18:09:08", "68.180.229.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27285", "3", "2016-03-11 19:00:05", "202.46.55.148", "547");
INSERT INTO `wp_gf_form_view` VALUES("27286", "3", "2016-03-11 20:01:22", "202.46.57.165", "573");
INSERT INTO `wp_gf_form_view` VALUES("27287", "3", "2016-03-11 21:00:45", "199.21.99.202", "896");
INSERT INTO `wp_gf_form_view` VALUES("27288", "3", "2016-03-11 22:01:01", "202.46.51.39", "686");
INSERT INTO `wp_gf_form_view` VALUES("27289", "1", "2016-03-11 22:35:29", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("27290", "3", "2016-03-11 23:02:37", "66.249.74.104", "445");
INSERT INTO `wp_gf_form_view` VALUES("27291", "8", "2016-03-12 00:00:09", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("27292", "3", "2016-03-12 00:00:09", "66.249.74.106", "451");
INSERT INTO `wp_gf_form_view` VALUES("27293", "3", "2016-03-12 01:00:25", "202.46.57.71", "636");
INSERT INTO `wp_gf_form_view` VALUES("27294", "3", "2016-03-12 02:00:57", "202.46.52.170", "397");
INSERT INTO `wp_gf_form_view` VALUES("27295", "3", "2016-03-12 03:00:21", "202.46.53.16", "422");
INSERT INTO `wp_gf_form_view` VALUES("27296", "3", "2016-03-12 04:00:28", "202.46.51.209", "591");
INSERT INTO `wp_gf_form_view` VALUES("27297", "3", "2016-03-12 05:00:49", "202.46.56.184", "717");
INSERT INTO `wp_gf_form_view` VALUES("27298", "3", "2016-03-12 06:00:14", "202.46.52.15", "398");
INSERT INTO `wp_gf_form_view` VALUES("27299", "3", "2016-03-12 07:00:00", "202.46.51.107", "664");
INSERT INTO `wp_gf_form_view` VALUES("27300", "1", "2016-03-12 07:37:36", "23.108.94.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("27301", "3", "2016-03-12 08:00:18", "202.46.55.84", "579");
INSERT INTO `wp_gf_form_view` VALUES("27302", "3", "2016-03-12 09:00:13", "202.46.58.188", "614");
INSERT INTO `wp_gf_form_view` VALUES("27303", "1", "2016-03-12 09:07:19", "189.219.221.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("27304", "8", "2016-03-12 09:52:58", "68.180.230.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("27305", "3", "2016-03-12 10:00:34", "202.46.57.74", "613");
INSERT INTO `wp_gf_form_view` VALUES("27306", "3", "2016-03-12 11:00:02", "202.46.54.205", "812");
INSERT INTO `wp_gf_form_view` VALUES("27307", "3", "2016-03-12 12:02:56", "199.21.99.202", "752");
INSERT INTO `wp_gf_form_view` VALUES("27308", "3", "2016-03-12 13:00:38", "202.46.50.98", "496");
INSERT INTO `wp_gf_form_view` VALUES("27309", "3", "2016-03-12 14:01:09", "202.46.51.104", "652");
INSERT INTO `wp_gf_form_view` VALUES("27310", "2", "2016-03-12 14:16:00", "104.236.196.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("27311", "3", "2016-03-12 15:09:58", "202.46.58.92", "407");
INSERT INTO `wp_gf_form_view` VALUES("27312", "2", "2016-03-12 15:37:13", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("27313", "3", "2016-03-12 16:00:29", "202.46.51.20", "896");
INSERT INTO `wp_gf_form_view` VALUES("27314", "1", "2016-03-12 16:19:06", "107.161.84.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("27315", "3", "2016-03-12 17:00:31", "202.46.48.97", "701");
INSERT INTO `wp_gf_form_view` VALUES("27316", "3", "2016-03-12 18:00:34", "202.46.54.190", "783");
INSERT INTO `wp_gf_form_view` VALUES("27317", "1", "2016-03-12 18:05:51", "107.161.84.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("27318", "3", "2016-03-12 19:01:42", "202.46.57.122", "644");
INSERT INTO `wp_gf_form_view` VALUES("27319", "1", "2016-03-12 19:50:56", "107.161.84.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("27320", "3", "2016-03-12 20:00:39", "202.46.54.70", "700");
INSERT INTO `wp_gf_form_view` VALUES("27321", "3", "2016-03-12 21:00:42", "202.46.55.17", "978");
INSERT INTO `wp_gf_form_view` VALUES("27322", "9", "2016-03-12 21:11:47", "68.180.231.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("27323", "1", "2016-03-12 21:32:41", "128.199.186.235", "3");
INSERT INTO `wp_gf_form_view` VALUES("27324", "3", "2016-03-12 22:00:45", "202.46.52.11", "706");
INSERT INTO `wp_gf_form_view` VALUES("27325", "9", "2016-03-12 22:02:59", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("27326", "3", "2016-03-12 23:00:48", "202.46.58.17", "709");
INSERT INTO `wp_gf_form_view` VALUES("27327", "3", "2016-03-13 00:00:51", "202.46.49.202", "789");
INSERT INTO `wp_gf_form_view` VALUES("27328", "3", "2016-03-13 01:00:53", "202.46.51.157", "843");
INSERT INTO `wp_gf_form_view` VALUES("27329", "3", "2016-03-13 02:00:59", "202.46.56.203", "738");
INSERT INTO `wp_gf_form_view` VALUES("27330", "2", "2016-03-13 02:53:34", "93.104.208.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("27331", "3", "2016-03-13 03:01:06", "202.46.55.139", "744");
INSERT INTO `wp_gf_form_view` VALUES("27332", "3", "2016-03-13 04:00:30", "202.46.58.135", "830");
INSERT INTO `wp_gf_form_view` VALUES("27333", "3", "2016-03-13 05:00:22", "202.46.49.94", "689");
INSERT INTO `wp_gf_form_view` VALUES("27334", "3", "2016-03-13 06:00:21", "202.46.58.26", "741");
INSERT INTO `wp_gf_form_view` VALUES("27335", "3", "2016-03-13 07:00:22", "202.46.57.71", "870");
INSERT INTO `wp_gf_form_view` VALUES("27336", "3", "2016-03-13 08:04:14", "202.46.58.57", "880");
INSERT INTO `wp_gf_form_view` VALUES("27337", "3", "2016-03-13 09:00:15", "202.46.50.162", "788");
INSERT INTO `wp_gf_form_view` VALUES("27338", "3", "2016-03-13 10:00:05", "202.46.49.147", "887");
INSERT INTO `wp_gf_form_view` VALUES("27339", "3", "2016-03-13 11:00:22", "202.46.51.108", "990");
INSERT INTO `wp_gf_form_view` VALUES("27340", "2", "2016-03-13 11:08:02", "52.90.202.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("27341", "3", "2016-03-13 12:00:28", "202.46.51.37", "803");
INSERT INTO `wp_gf_form_view` VALUES("27342", "3", "2016-03-13 13:00:34", "202.46.58.81", "614");
INSERT INTO `wp_gf_form_view` VALUES("27343", "3", "2016-03-13 14:00:03", "202.46.53.65", "520");
INSERT INTO `wp_gf_form_view` VALUES("27344", "3", "2016-03-13 15:00:30", "202.46.51.118", "670");
INSERT INTO `wp_gf_form_view` VALUES("27345", "3", "2016-03-13 16:00:32", "202.46.53.115", "622");
INSERT INTO `wp_gf_form_view` VALUES("27346", "3", "2016-03-13 17:00:39", "202.46.48.18", "638");
INSERT INTO `wp_gf_form_view` VALUES("27347", "3", "2016-03-13 18:00:45", "202.46.58.164", "622");
INSERT INTO `wp_gf_form_view` VALUES("27348", "3", "2016-03-13 19:00:51", "202.46.51.200", "637");
INSERT INTO `wp_gf_form_view` VALUES("27349", "3", "2016-03-13 20:00:58", "202.46.53.124", "714");
INSERT INTO `wp_gf_form_view` VALUES("27350", "3", "2016-03-13 21:01:03", "202.46.51.164", "675");
INSERT INTO `wp_gf_form_view` VALUES("27351", "9", "2016-03-13 21:25:39", "207.46.13.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("27352", "3", "2016-03-13 22:00:03", "202.46.58.210", "637");
INSERT INTO `wp_gf_form_view` VALUES("27353", "3", "2016-03-13 23:00:09", "202.46.48.132", "809");
INSERT INTO `wp_gf_form_view` VALUES("27354", "3", "2016-03-14 00:00:16", "202.46.52.161", "754");
INSERT INTO `wp_gf_form_view` VALUES("27355", "3", "2016-03-14 01:00:21", "202.46.56.69", "798");
INSERT INTO `wp_gf_form_view` VALUES("27356", "3", "2016-03-14 02:00:28", "202.46.56.63", "863");
INSERT INTO `wp_gf_form_view` VALUES("27357", "1", "2016-03-14 02:43:22", "184.66.6.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("27358", "3", "2016-03-14 03:00:33", "202.46.52.153", "820");
INSERT INTO `wp_gf_form_view` VALUES("27359", "9", "2016-03-14 03:30:22", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("27360", "3", "2016-03-14 04:00:48", "202.46.55.123", "821");
INSERT INTO `wp_gf_form_view` VALUES("27361", "3", "2016-03-14 05:00:16", "202.46.58.87", "964");
INSERT INTO `wp_gf_form_view` VALUES("27362", "1", "2016-03-14 05:19:16", "46.105.86.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("27363", "3", "2016-03-14 06:00:23", "202.46.55.147", "869");
INSERT INTO `wp_gf_form_view` VALUES("27364", "3", "2016-03-14 07:00:28", "202.46.51.200", "1160");
INSERT INTO `wp_gf_form_view` VALUES("27365", "3", "2016-03-14 08:00:35", "202.46.55.131", "753");
INSERT INTO `wp_gf_form_view` VALUES("27366", "3", "2016-03-14 09:00:33", "202.46.55.11", "791");
INSERT INTO `wp_gf_form_view` VALUES("27367", "3", "2016-03-14 10:00:57", "202.46.51.33", "966");
INSERT INTO `wp_gf_form_view` VALUES("27368", "1", "2016-03-14 10:03:35", "157.55.39.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("27369", "3", "2016-03-14 11:01:02", "202.46.48.19", "850");
INSERT INTO `wp_gf_form_view` VALUES("27370", "3", "2016-03-14 12:00:02", "202.46.49.201", "545");
INSERT INTO `wp_gf_form_view` VALUES("27371", "3", "2016-03-14 13:00:03", "202.46.56.142", "441");
INSERT INTO `wp_gf_form_view` VALUES("27372", "3", "2016-03-14 14:00:14", "75.154.236.242", "536");
INSERT INTO `wp_gf_form_view` VALUES("27373", "3", "2016-03-14 15:00:03", "202.46.55.138", "637");
INSERT INTO `wp_gf_form_view` VALUES("27374", "1", "2016-03-14 15:48:27", "195.154.250.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("27375", "3", "2016-03-14 16:00:10", "202.46.58.206", "558");
INSERT INTO `wp_gf_form_view` VALUES("27376", "3", "2016-03-14 17:00:03", "202.46.57.89", "686");
INSERT INTO `wp_gf_form_view` VALUES("27377", "3", "2016-03-14 18:00:09", "202.46.48.200", "714");
INSERT INTO `wp_gf_form_view` VALUES("27378", "9", "2016-03-14 18:53:06", "157.55.39.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("27379", "3", "2016-03-14 19:00:16", "202.46.56.196", "771");
INSERT INTO `wp_gf_form_view` VALUES("27380", "1", "2016-03-14 19:37:55", "23.108.176.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("27381", "3", "2016-03-14 20:00:22", "202.46.49.123", "674");
INSERT INTO `wp_gf_form_view` VALUES("27382", "3", "2016-03-14 21:00:28", "202.46.48.125", "720");
INSERT INTO `wp_gf_form_view` VALUES("27383", "3", "2016-03-14 22:00:33", "202.46.48.133", "909");
INSERT INTO `wp_gf_form_view` VALUES("27384", "2", "2016-03-14 22:54:22", "157.55.39.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("27385", "3", "2016-03-14 23:00:40", "202.46.56.186", "797");
INSERT INTO `wp_gf_form_view` VALUES("27386", "2", "2016-03-14 23:13:14", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("27387", "3", "2016-03-15 00:00:46", "202.46.58.125", "766");
INSERT INTO `wp_gf_form_view` VALUES("27388", "3", "2016-03-15 01:00:56", "202.46.50.162", "820");
INSERT INTO `wp_gf_form_view` VALUES("27389", "3", "2016-03-15 02:01:01", "202.46.51.202", "954");
INSERT INTO `wp_gf_form_view` VALUES("27390", "2", "2016-03-15 02:28:56", "223.240.113.166", "2");
INSERT INTO `wp_gf_form_view` VALUES("27391", "3", "2016-03-15 03:00:03", "202.46.53.146", "751");
INSERT INTO `wp_gf_form_view` VALUES("27392", "3", "2016-03-15 04:00:54", "202.46.55.134", "927");
INSERT INTO `wp_gf_form_view` VALUES("27393", "3", "2016-03-15 05:00:32", "202.46.55.144", "991");
INSERT INTO `wp_gf_form_view` VALUES("27394", "2", "2016-03-15 05:55:10", "192.99.150.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("27395", "3", "2016-03-15 06:00:13", "202.46.51.27", "842");
INSERT INTO `wp_gf_form_view` VALUES("27396", "3", "2016-03-15 07:00:34", "202.46.57.175", "1018");
INSERT INTO `wp_gf_form_view` VALUES("27397", "1", "2016-03-15 07:08:10", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("27398", "3", "2016-03-15 08:03:35", "202.46.48.135", "774");
INSERT INTO `wp_gf_form_view` VALUES("27399", "3", "2016-03-15 09:04:48", "202.46.51.88", "802");
INSERT INTO `wp_gf_form_view` VALUES("27400", "3", "2016-03-15 10:05:41", "202.46.51.181", "857");
INSERT INTO `wp_gf_form_view` VALUES("27401", "3", "2016-03-15 11:01:53", "202.46.50.153", "811");
INSERT INTO `wp_gf_form_view` VALUES("27402", "3", "2016-03-15 12:00:08", "202.46.54.188", "833");
INSERT INTO `wp_gf_form_view` VALUES("27403", "3", "2016-03-15 13:00:04", "202.46.51.36", "383");
INSERT INTO `wp_gf_form_view` VALUES("27404", "3", "2016-03-15 14:00:22", "202.46.52.175", "482");
INSERT INTO `wp_gf_form_view` VALUES("27405", "3", "2016-03-15 15:01:25", "202.46.49.131", "497");
INSERT INTO `wp_gf_form_view` VALUES("27406", "3", "2016-03-15 16:01:17", "223.240.113.166", "968");
INSERT INTO `wp_gf_form_view` VALUES("27407", "1", "2016-03-15 16:46:00", "107.173.192.101", "5");
INSERT INTO `wp_gf_form_view` VALUES("27408", "3", "2016-03-15 17:00:01", "202.46.51.23", "918");
INSERT INTO `wp_gf_form_view` VALUES("27409", "7", "2016-03-15 17:00:27", "223.240.113.166", "2");
INSERT INTO `wp_gf_form_view` VALUES("27410", "3", "2016-03-15 18:00:16", "202.46.48.210", "800");
INSERT INTO `wp_gf_form_view` VALUES("27411", "1", "2016-03-15 18:56:56", "23.94.179.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("27412", "3", "2016-03-15 19:00:15", "202.46.54.144", "556");
INSERT INTO `wp_gf_form_view` VALUES("27413", "3", "2016-03-15 20:00:13", "202.46.55.15", "565");
INSERT INTO `wp_gf_form_view` VALUES("27414", "1", "2016-03-15 20:51:55", "23.94.179.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("27415", "3", "2016-03-15 21:00:11", "202.46.57.186", "700");
INSERT INTO `wp_gf_form_view` VALUES("27416", "3", "2016-03-15 22:00:01", "202.46.57.185", "579");
INSERT INTO `wp_gf_form_view` VALUES("27417", "1", "2016-03-15 22:50:10", "104.223.40.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("27418", "3", "2016-03-15 23:00:18", "202.46.56.116", "716");
INSERT INTO `wp_gf_form_view` VALUES("27419", "1", "2016-03-15 23:21:09", "96.50.99.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("27420", "3", "2016-03-16 00:00:30", "202.46.58.120", "903");
INSERT INTO `wp_gf_form_view` VALUES("27421", "1", "2016-03-16 00:09:21", "45.72.28.205", "5");
INSERT INTO `wp_gf_form_view` VALUES("27422", "5", "2016-03-16 00:46:18", "68.180.228.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("27423", "3", "2016-03-16 01:01:25", "202.46.50.156", "946");
INSERT INTO `wp_gf_form_view` VALUES("27424", "2", "2016-03-16 01:55:27", "93.61.27.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("27425", "1", "2016-03-16 01:56:19", "104.218.192.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("27426", "3", "2016-03-16 02:00:50", "202.46.57.207", "656");
INSERT INTO `wp_gf_form_view` VALUES("27427", "8", "2016-03-16 02:52:05", "173.242.118.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("27428", "3", "2016-03-16 03:00:13", "202.46.54.189", "428");
INSERT INTO `wp_gf_form_view` VALUES("27429", "1", "2016-03-16 03:41:56", "89.36.65.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("27430", "3", "2016-03-16 04:00:11", "202.46.51.187", "772");
INSERT INTO `wp_gf_form_view` VALUES("27431", "3", "2016-03-16 05:00:22", "202.46.53.51", "898");
INSERT INTO `wp_gf_form_view` VALUES("27432", "1", "2016-03-16 05:24:41", "89.36.65.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("27433", "3", "2016-03-16 06:02:52", "202.46.53.116", "791");
INSERT INTO `wp_gf_form_view` VALUES("27434", "3", "2016-03-16 07:01:37", "202.46.51.24", "784");
INSERT INTO `wp_gf_form_view` VALUES("27435", "3", "2016-03-16 08:00:38", "68.180.228.23", "909");
INSERT INTO `wp_gf_form_view` VALUES("27436", "3", "2016-03-16 09:00:01", "202.46.58.208", "816");
INSERT INTO `wp_gf_form_view` VALUES("27437", "8", "2016-03-16 10:00:22", "157.55.39.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("27438", "3", "2016-03-16 10:00:22", "157.55.39.224", "796");
INSERT INTO `wp_gf_form_view` VALUES("27439", "3", "2016-03-16 11:01:25", "202.46.49.91", "924");
INSERT INTO `wp_gf_form_view` VALUES("27440", "3", "2016-03-16 12:00:04", "202.46.50.188", "875");
INSERT INTO `wp_gf_form_view` VALUES("27441", "3", "2016-03-16 13:00:15", "202.46.50.165", "675");
INSERT INTO `wp_gf_form_view` VALUES("27442", "3", "2016-03-16 14:01:52", "157.55.39.224", "486");
INSERT INTO `wp_gf_form_view` VALUES("27443", "3", "2016-03-16 15:01:00", "202.46.53.194", "832");
INSERT INTO `wp_gf_form_view` VALUES("27444", "9", "2016-03-16 15:03:58", "202.46.53.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("27445", "3", "2016-03-16 16:00:07", "202.46.52.107", "768");
INSERT INTO `wp_gf_form_view` VALUES("27446", "3", "2016-03-16 17:02:26", "202.46.48.200", "386");
INSERT INTO `wp_gf_form_view` VALUES("27447", "3", "2016-03-16 18:00:43", "202.46.53.166", "939");
INSERT INTO `wp_gf_form_view` VALUES("27448", "1", "2016-03-16 18:36:35", "66.85.131.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("27449", "3", "2016-03-16 19:00:25", "202.46.58.87", "932");
INSERT INTO `wp_gf_form_view` VALUES("27450", "3", "2016-03-16 20:00:08", "202.46.55.16", "989");
INSERT INTO `wp_gf_form_view` VALUES("27451", "3", "2016-03-16 21:00:38", "202.46.48.84", "1016");
INSERT INTO `wp_gf_form_view` VALUES("27452", "9", "2016-03-16 21:06:11", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("27453", "3", "2016-03-16 22:00:21", "202.46.52.179", "1060");
INSERT INTO `wp_gf_form_view` VALUES("27454", "3", "2016-03-16 23:00:04", "202.46.51.36", "1065");
INSERT INTO `wp_gf_form_view` VALUES("27455", "3", "2016-03-17 00:00:36", "202.46.57.163", "1005");
INSERT INTO `wp_gf_form_view` VALUES("27456", "3", "2016-03-17 01:00:08", "202.46.56.66", "1166");
INSERT INTO `wp_gf_form_view` VALUES("27457", "1", "2016-03-17 01:42:16", "104.227.77.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("27458", "3", "2016-03-17 02:00:38", "202.46.58.59", "1166");
INSERT INTO `wp_gf_form_view` VALUES("27459", "3", "2016-03-17 03:00:21", "202.46.58.131", "1010");
INSERT INTO `wp_gf_form_view` VALUES("27460", "3", "2016-03-17 04:03:39", "202.46.51.106", "206");
INSERT INTO `wp_gf_form_view` VALUES("27461", "3", "2016-03-17 05:00:56", "202.46.56.90", "111");
INSERT INTO `wp_gf_form_view` VALUES("27462", "3", "2016-03-17 06:20:00", "178.137.94.117", "70");
INSERT INTO `wp_gf_form_view` VALUES("27463", "3", "2016-03-17 07:10:14", "68.180.228.23", "21");
INSERT INTO `wp_gf_form_view` VALUES("27464", "3", "2016-03-17 08:21:00", "5.2.4.33", "2151");
INSERT INTO `wp_gf_form_view` VALUES("27465", "2", "2016-03-17 08:25:32", "5.2.4.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("27466", "1", "2016-03-17 08:50:12", "173.192.34.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("27467", "5", "2016-03-17 08:51:57", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("27468", "8", "2016-03-17 08:54:11", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("27469", "9", "2016-03-17 08:54:16", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("27470", "3", "2016-03-17 09:00:29", "202.46.48.29", "197");
INSERT INTO `wp_gf_form_view` VALUES("27471", "1", "2016-03-17 09:04:47", "23.95.241.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("27472", "3", "2016-03-17 10:28:27", "66.249.74.106", "94");
INSERT INTO `wp_gf_form_view` VALUES("27473", "2", "2016-03-17 10:48:37", "164.132.161.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("27474", "3", "2016-03-17 11:01:28", "202.46.48.143", "61");
INSERT INTO `wp_gf_form_view` VALUES("27475", "1", "2016-03-17 11:14:41", "104.223.30.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("27476", "3", "2016-03-17 12:11:51", "51.255.65.88", "104");
INSERT INTO `wp_gf_form_view` VALUES("27477", "2", "2016-03-17 12:45:57", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("27478", "1", "2016-03-17 12:55:28", "116.50.236.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("27479", "3", "2016-03-17 13:03:34", "192.40.93.107", "154");
INSERT INTO `wp_gf_form_view` VALUES("27480", "1", "2016-03-17 13:13:22", "23.95.191.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("27481", "9", "2016-03-17 13:52:07", "157.55.39.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("27482", "3", "2016-03-17 14:21:45", "217.69.133.227", "32");
INSERT INTO `wp_gf_form_view` VALUES("27483", "3", "2016-03-17 15:04:57", "75.154.236.242", "53");
INSERT INTO `wp_gf_form_view` VALUES("27484", "1", "2016-03-17 15:15:19", "23.95.191.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("27485", "3", "2016-03-17 16:03:23", "66.249.74.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("27486", "8", "2016-03-17 16:14:03", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("27487", "3", "2016-03-17 17:11:33", "68.180.228.23", "61");
INSERT INTO `wp_gf_form_view` VALUES("27488", "2", "2016-03-17 17:28:06", "68.180.228.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("27489", "3", "2016-03-17 18:14:35", "96.50.0.34", "50");
INSERT INTO `wp_gf_form_view` VALUES("27490", "8", "2016-03-17 18:56:08", "141.8.143.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("27491", "3", "2016-03-17 19:01:11", "68.180.228.23", "72");
INSERT INTO `wp_gf_form_view` VALUES("27492", "3", "2016-03-17 20:05:59", "5.34.241.2", "151");
INSERT INTO `wp_gf_form_view` VALUES("27493", "3", "2016-03-17 21:03:52", "66.249.74.102", "85");
INSERT INTO `wp_gf_form_view` VALUES("27494", "3", "2016-03-17 22:02:36", "24.244.23.148", "51");
INSERT INTO `wp_gf_form_view` VALUES("27495", "2", "2016-03-17 22:23:36", "46.246.41.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("27496", "3", "2016-03-17 23:11:34", "151.237.180.12", "239");
INSERT INTO `wp_gf_form_view` VALUES("27497", "3", "2016-03-18 00:11:37", "66.249.74.106", "31");
INSERT INTO `wp_gf_form_view` VALUES("27498", "9", "2016-03-18 00:49:27", "157.55.39.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("27499", "3", "2016-03-18 01:00:06", "154.20.40.110", "52");
INSERT INTO `wp_gf_form_view` VALUES("27500", "3", "2016-03-18 02:36:07", "141.8.143.242", "42");
INSERT INTO `wp_gf_form_view` VALUES("27501", "9", "2016-03-18 03:11:41", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("27502", "3", "2016-03-18 03:11:41", "217.69.133.229", "416");
INSERT INTO `wp_gf_form_view` VALUES("27503", "3", "2016-03-18 04:33:52", "151.237.181.253", "62");
INSERT INTO `wp_gf_form_view` VALUES("27504", "8", "2016-03-18 04:47:16", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("27505", "3", "2016-03-18 05:09:37", "85.93.89.74", "221");
INSERT INTO `wp_gf_form_view` VALUES("27506", "2", "2016-03-18 05:09:55", "85.93.89.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("27507", "3", "2016-03-18 06:16:52", "202.46.51.88", "31");
INSERT INTO `wp_gf_form_view` VALUES("27508", "3", "2016-03-18 07:16:14", "62.210.162.184", "40");
INSERT INTO `wp_gf_form_view` VALUES("27509", "3", "2016-03-18 08:11:19", "151.80.31.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("27510", "3", "2016-03-18 09:09:41", "157.55.39.70", "41");
INSERT INTO `wp_gf_form_view` VALUES("27511", "3", "2016-03-18 10:34:25", "66.249.74.104", "62");
INSERT INTO `wp_gf_form_view` VALUES("27512", "1", "2016-03-18 10:56:12", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("27513", "9", "2016-03-18 10:58:34", "68.180.230.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("27514", "3", "2016-03-18 11:09:28", "217.69.133.229", "51");
INSERT INTO `wp_gf_form_view` VALUES("27515", "3", "2016-03-18 12:40:20", "66.249.74.104", "93");
INSERT INTO `wp_gf_form_view` VALUES("27516", "1", "2016-03-18 12:54:35", "189.219.86.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("27517", "9", "2016-03-18 13:16:46", "207.46.13.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("27518", "3", "2016-03-18 13:16:47", "207.46.13.62", "72");
INSERT INTO `wp_gf_form_view` VALUES("27519", "1", "2016-03-18 13:21:35", "68.180.230.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("27520", "3", "2016-03-18 14:18:27", "51.255.65.40", "23");
INSERT INTO `wp_gf_form_view` VALUES("27521", "3", "2016-03-18 15:35:45", "40.77.167.50", "108");
INSERT INTO `wp_gf_form_view` VALUES("27522", "3", "2016-03-18 16:08:12", "46.118.119.221", "153");
INSERT INTO `wp_gf_form_view` VALUES("27523", "3", "2016-03-18 17:03:25", "66.249.74.104", "3965");
INSERT INTO `wp_gf_form_view` VALUES("27524", "1", "2016-03-18 17:10:02", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("27525", "5", "2016-03-18 17:18:35", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("27526", "6", "2016-03-18 17:23:46", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("27527", "9", "2016-03-18 17:31:02", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("27528", "3", "2016-03-18 18:00:16", "45.55.235.146", "2053");
INSERT INTO `wp_gf_form_view` VALUES("27529", "2", "2016-03-18 18:13:03", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("27530", "8", "2016-03-18 18:26:46", "45.55.235.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("27531", "3", "2016-03-18 19:06:58", "5.34.241.115", "640");
INSERT INTO `wp_gf_form_view` VALUES("27532", "7", "2016-03-18 19:31:20", "207.46.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("27533", "3", "2016-03-18 20:04:40", "24.69.57.30", "81");
INSERT INTO `wp_gf_form_view` VALUES("27534", "1", "2016-03-18 20:05:11", "176.103.56.85", "3");
INSERT INTO `wp_gf_form_view` VALUES("27535", "3", "2016-03-18 21:01:24", "24.69.131.176", "122");
INSERT INTO `wp_gf_form_view` VALUES("27536", "3", "2016-03-18 22:06:02", "68.180.230.27", "182");
INSERT INTO `wp_gf_form_view` VALUES("27537", "3", "2016-03-18 23:04:38", "199.21.99.202", "92");
INSERT INTO `wp_gf_form_view` VALUES("27538", "3", "2016-03-19 00:11:10", "37.72.190.15", "52");
INSERT INTO `wp_gf_form_view` VALUES("27539", "6", "2016-03-19 01:25:32", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("27540", "3", "2016-03-19 01:25:33", "217.69.133.228", "81");
INSERT INTO `wp_gf_form_view` VALUES("27541", "1", "2016-03-19 01:34:20", "192.99.44.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("27542", "3", "2016-03-19 02:11:45", "202.46.52.65", "172");
INSERT INTO `wp_gf_form_view` VALUES("27543", "6", "2016-03-19 03:01:06", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("27544", "3", "2016-03-19 03:01:06", "217.69.133.231", "262");
INSERT INTO `wp_gf_form_view` VALUES("27545", "1", "2016-03-19 03:24:47", "173.183.77.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("27546", "3", "2016-03-19 04:17:08", "151.237.181.205", "61");
INSERT INTO `wp_gf_form_view` VALUES("27547", "3", "2016-03-19 05:24:35", "104.160.7.64", "32");
INSERT INTO `wp_gf_form_view` VALUES("27548", "2", "2016-03-19 06:02:38", "104.160.7.82", "3");
INSERT INTO `wp_gf_form_view` VALUES("27549", "3", "2016-03-19 06:02:38", "104.160.7.82", "85");
INSERT INTO `wp_gf_form_view` VALUES("27550", "3", "2016-03-19 07:00:14", "66.249.74.102", "355");
INSERT INTO `wp_gf_form_view` VALUES("27551", "2", "2016-03-19 07:09:41", "78.159.213.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("27552", "3", "2016-03-19 08:12:31", "5.34.241.95", "74");
INSERT INTO `wp_gf_form_view` VALUES("27553", "3", "2016-03-19 09:22:25", "202.46.53.44", "71");
INSERT INTO `wp_gf_form_view` VALUES("27554", "2", "2016-03-19 09:32:25", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("27555", "3", "2016-03-19 10:00:23", "157.55.39.70", "30");
INSERT INTO `wp_gf_form_view` VALUES("27556", "3", "2016-03-19 11:18:00", "192.40.93.107", "70");
INSERT INTO `wp_gf_form_view` VALUES("27557", "2", "2016-03-19 11:19:48", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("27558", "9", "2016-03-19 11:22:07", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("27559", "3", "2016-03-19 12:33:35", "217.69.133.229", "11");
INSERT INTO `wp_gf_form_view` VALUES("27560", "3", "2016-03-19 13:19:16", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("27561", "3", "2016-03-19 14:01:39", "46.118.119.221", "152");
INSERT INTO `wp_gf_form_view` VALUES("27562", "8", "2016-03-19 14:24:54", "68.180.230.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("27563", "3", "2016-03-19 15:42:57", "217.69.133.232", "91");
INSERT INTO `wp_gf_form_view` VALUES("27564", "3", "2016-03-19 16:03:55", "91.108.178.210", "88");
INSERT INTO `wp_gf_form_view` VALUES("27565", "8", "2016-03-19 16:31:11", "207.46.13.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("27566", "3", "2016-03-19 17:17:26", "217.69.133.233", "53");
INSERT INTO `wp_gf_form_view` VALUES("27567", "3", "2016-03-19 18:16:10", "24.68.137.125", "50");
INSERT INTO `wp_gf_form_view` VALUES("27568", "3", "2016-03-19 19:04:29", "151.237.180.14", "82");
INSERT INTO `wp_gf_form_view` VALUES("27569", "3", "2016-03-19 20:44:47", "66.249.74.102", "21");
INSERT INTO `wp_gf_form_view` VALUES("27570", "3", "2016-03-19 21:00:03", "78.159.213.201", "181");
INSERT INTO `wp_gf_form_view` VALUES("27571", "2", "2016-03-19 21:08:20", "78.159.213.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("27572", "3", "2016-03-19 22:02:02", "217.69.133.232", "174");
INSERT INTO `wp_gf_form_view` VALUES("27573", "3", "2016-03-19 23:00:59", "46.246.83.172", "102");
INSERT INTO `wp_gf_form_view` VALUES("27574", "3", "2016-03-20 00:30:46", "62.210.162.184", "52");
INSERT INTO `wp_gf_form_view` VALUES("27575", "3", "2016-03-20 01:03:09", "66.249.74.106", "51");
INSERT INTO `wp_gf_form_view` VALUES("27576", "3", "2016-03-20 02:04:57", "104.160.7.82", "154");
INSERT INTO `wp_gf_form_view` VALUES("27577", "3", "2016-03-20 03:51:43", "89.163.148.58", "40");
INSERT INTO `wp_gf_form_view` VALUES("27578", "3", "2016-03-20 04:02:26", "199.21.99.202", "62");
INSERT INTO `wp_gf_form_view` VALUES("27579", "3", "2016-03-20 05:15:27", "24.68.17.97", "344");
INSERT INTO `wp_gf_form_view` VALUES("27580", "3", "2016-03-20 06:05:03", "180.150.226.116", "141");
INSERT INTO `wp_gf_form_view` VALUES("27581", "3", "2016-03-20 07:02:00", "66.249.74.104", "52");
INSERT INTO `wp_gf_form_view` VALUES("27582", "3", "2016-03-20 08:13:54", "66.249.74.106", "249");
INSERT INTO `wp_gf_form_view` VALUES("27583", "8", "2016-03-20 08:28:23", "96.50.20.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("27584", "1", "2016-03-20 08:41:13", "104.160.7.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("27585", "3", "2016-03-20 09:07:33", "217.69.133.229", "41");
INSERT INTO `wp_gf_form_view` VALUES("27586", "3", "2016-03-20 10:13:24", "5.34.241.73", "62");
INSERT INTO `wp_gf_form_view` VALUES("27587", "3", "2016-03-20 11:03:25", "46.118.119.221", "106");
INSERT INTO `wp_gf_form_view` VALUES("27588", "3", "2016-03-20 12:13:21", "178.137.88.222", "90");
INSERT INTO `wp_gf_form_view` VALUES("27589", "3", "2016-03-20 12:13:21", "178.137.88.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("27590", "3", "2016-03-20 13:18:46", "195.154.207.160", "52");
INSERT INTO `wp_gf_form_view` VALUES("27591", "6", "2016-03-20 13:52:48", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("27592", "3", "2016-03-20 14:15:25", "207.46.13.111", "333");
INSERT INTO `wp_gf_form_view` VALUES("27593", "3", "2016-03-20 15:00:21", "91.108.177.25", "284");
INSERT INTO `wp_gf_form_view` VALUES("27594", "2", "2016-03-20 15:34:25", "104.236.69.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("27595", "1", "2016-03-20 16:21:33", "104.223.30.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("27596", "3", "2016-03-20 16:21:33", "104.223.30.171", "134");
INSERT INTO `wp_gf_form_view` VALUES("27597", "2", "2016-03-20 17:02:13", "192.40.93.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("27598", "3", "2016-03-20 17:02:13", "192.40.93.149", "131");
INSERT INTO `wp_gf_form_view` VALUES("27599", "1", "2016-03-20 18:19:28", "23.95.191.180", "3");
INSERT INTO `wp_gf_form_view` VALUES("27600", "3", "2016-03-20 18:19:28", "23.95.191.180", "196");
INSERT INTO `wp_gf_form_view` VALUES("27601", "3", "2016-03-20 19:28:22", "68.180.230.27", "41");
INSERT INTO `wp_gf_form_view` VALUES("27602", "1", "2016-03-20 20:07:33", "23.94.179.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("27603", "3", "2016-03-20 20:07:33", "23.94.179.149", "20");
INSERT INTO `wp_gf_form_view` VALUES("27604", "3", "2016-03-20 21:10:18", "207.46.13.111", "155");
INSERT INTO `wp_gf_form_view` VALUES("27605", "1", "2016-03-20 22:02:56", "107.173.192.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("27606", "3", "2016-03-20 22:02:57", "107.173.192.101", "263");
INSERT INTO `wp_gf_form_view` VALUES("27607", "3", "2016-03-20 23:17:07", "46.118.119.221", "91");
INSERT INTO `wp_gf_form_view` VALUES("27608", "3", "2016-03-21 00:40:32", "62.210.162.184", "31");
INSERT INTO `wp_gf_form_view` VALUES("27609", "3", "2016-03-21 01:28:02", "157.55.39.168", "37");
INSERT INTO `wp_gf_form_view` VALUES("27610", "3", "2016-03-21 02:19:08", "216.232.152.68", "90");
INSERT INTO `wp_gf_form_view` VALUES("27611", "9", "2016-03-21 02:30:34", "68.180.230.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("27612", "3", "2016-03-21 03:00:35", "66.249.74.106", "64");
INSERT INTO `wp_gf_form_view` VALUES("27613", "3", "2016-03-21 04:30:14", "134.249.53.235", "119");
INSERT INTO `wp_gf_form_view` VALUES("27614", "3", "2016-03-21 04:30:14", "134.249.53.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("27615", "3", "2016-03-21 05:05:41", "91.108.177.113", "113");
INSERT INTO `wp_gf_form_view` VALUES("27616", "9", "2016-03-21 05:44:28", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("27617", "3", "2016-03-21 06:49:21", "82.146.36.39", "10");
INSERT INTO `wp_gf_form_view` VALUES("27618", "3", "2016-03-21 07:01:00", "66.249.74.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("27619", "3", "2016-03-21 08:04:21", "157.55.39.168", "153");
INSERT INTO `wp_gf_form_view` VALUES("27620", "3", "2016-03-21 09:31:30", "178.137.88.222", "90");
INSERT INTO `wp_gf_form_view` VALUES("27621", "8", "2016-03-21 09:39:51", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("27622", "3", "2016-03-21 10:10:51", "157.55.39.46", "62");
INSERT INTO `wp_gf_form_view` VALUES("27623", "3", "2016-03-21 11:01:46", "134.249.53.235", "80");
INSERT INTO `wp_gf_form_view` VALUES("27624", "3", "2016-03-21 12:07:57", "217.69.133.228", "60");
INSERT INTO `wp_gf_form_view` VALUES("27625", "3", "2016-03-21 13:17:21", "199.21.99.199", "98");
INSERT INTO `wp_gf_form_view` VALUES("27626", "8", "2016-03-21 13:43:03", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("27627", "6", "2016-03-21 13:43:14", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("27628", "3", "2016-03-21 15:10:03", "202.46.48.133", "82");
INSERT INTO `wp_gf_form_view` VALUES("27629", "3", "2016-03-21 16:19:53", "68.180.230.27", "31");
INSERT INTO `wp_gf_form_view` VALUES("27630", "3", "2016-03-21 17:06:18", "202.46.52.163", "60");
INSERT INTO `wp_gf_form_view` VALUES("27631", "5", "2016-03-21 17:25:10", "202.46.53.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("27632", "6", "2016-03-21 17:38:02", "202.46.49.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("27633", "3", "2016-03-21 18:07:15", "202.46.50.191", "82");
INSERT INTO `wp_gf_form_view` VALUES("27634", "3", "2016-03-21 19:04:26", "192.40.93.107", "111");
INSERT INTO `wp_gf_form_view` VALUES("27635", "3", "2016-03-21 20:01:00", "202.46.49.144", "70");
INSERT INTO `wp_gf_form_view` VALUES("27636", "3", "2016-03-21 21:01:15", "202.46.50.130", "71");
INSERT INTO `wp_gf_form_view` VALUES("27637", "3", "2016-03-21 22:05:59", "202.46.52.119", "101");
INSERT INTO `wp_gf_form_view` VALUES("27638", "2", "2016-03-21 22:08:40", "202.46.54.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("27639", "5", "2016-03-21 23:01:15", "202.46.58.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("27640", "3", "2016-03-21 23:01:15", "202.46.58.71", "103");
INSERT INTO `wp_gf_form_view` VALUES("27641", "3", "2016-03-22 00:05:37", "202.46.55.86", "41");
INSERT INTO `wp_gf_form_view` VALUES("27642", "3", "2016-03-22 01:01:58", "151.80.31.150", "72");
INSERT INTO `wp_gf_form_view` VALUES("27643", "7", "2016-03-22 01:41:03", "202.46.57.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("27644", "3", "2016-03-22 02:16:04", "202.46.53.53", "31");
INSERT INTO `wp_gf_form_view` VALUES("27645", "3", "2016-03-22 03:05:55", "192.40.93.173", "144");
INSERT INTO `wp_gf_form_view` VALUES("27646", "7", "2016-03-22 04:05:24", "202.46.55.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("27647", "3", "2016-03-22 04:05:24", "202.46.55.86", "648");
INSERT INTO `wp_gf_form_view` VALUES("27648", "9", "2016-03-22 04:24:27", "207.46.13.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("27649", "1", "2016-03-22 04:24:41", "207.46.13.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("27650", "3", "2016-03-22 05:05:18", "24.86.218.15", "130");
INSERT INTO `wp_gf_form_view` VALUES("27651", "2", "2016-03-22 05:21:48", "220.181.108.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("27652", "3", "2016-03-22 06:05:50", "68.180.230.27", "91");
INSERT INTO `wp_gf_form_view` VALUES("27653", "9", "2016-03-22 06:24:48", "202.46.54.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("27654", "3", "2016-03-22 07:01:18", "202.46.48.92", "81");
INSERT INTO `wp_gf_form_view` VALUES("27655", "3", "2016-03-22 08:15:38", "202.46.52.17", "102");
INSERT INTO `wp_gf_form_view` VALUES("27656", "3", "2016-03-22 09:03:32", "202.46.50.138", "234");
INSERT INTO `wp_gf_form_view` VALUES("27657", "1", "2016-03-22 09:17:47", "23.94.179.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("27658", "3", "2016-03-22 10:10:54", "66.249.74.104", "83");
INSERT INTO `wp_gf_form_view` VALUES("27659", "3", "2016-03-22 11:04:18", "66.249.74.102", "123");
INSERT INTO `wp_gf_form_view` VALUES("27660", "2", "2016-03-22 11:46:56", "207.46.13.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("27661", "6", "2016-03-22 11:48:27", "202.46.58.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("27662", "1", "2016-03-22 12:01:29", "23.95.241.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("27663", "3", "2016-03-22 12:01:29", "23.95.241.160", "50");
INSERT INTO `wp_gf_form_view` VALUES("27664", "3", "2016-03-22 13:06:27", "202.46.49.95", "103");
INSERT INTO `wp_gf_form_view` VALUES("27665", "1", "2016-03-22 13:52:25", "23.94.86.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("27666", "3", "2016-03-22 14:15:23", "202.46.48.199", "183");
INSERT INTO `wp_gf_form_view` VALUES("27667", "1", "2016-03-22 14:19:39", "202.46.54.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("27668", "3", "2016-03-22 15:08:19", "202.46.54.138", "253");
INSERT INTO `wp_gf_form_view` VALUES("27669", "1", "2016-03-22 15:46:53", "104.223.30.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("27670", "3", "2016-03-22 16:08:44", "202.46.58.191", "161");
INSERT INTO `wp_gf_form_view` VALUES("27671", "3", "2016-03-22 17:02:08", "154.20.41.178", "141");
INSERT INTO `wp_gf_form_view` VALUES("27672", "3", "2016-03-22 18:03:02", "68.180.228.250", "333");
INSERT INTO `wp_gf_form_view` VALUES("27673", "1", "2016-03-22 18:43:49", "104.223.40.100", "4");
INSERT INTO `wp_gf_form_view` VALUES("27674", "5", "2016-03-22 18:56:11", "202.46.50.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("27675", "3", "2016-03-22 19:17:46", "66.249.74.106", "60");
INSERT INTO `wp_gf_form_view` VALUES("27676", "10", "2016-03-22 19:17:46", "66.249.74.106", "55");
INSERT INTO `wp_gf_form_view` VALUES("27677", "7", "2016-03-22 19:55:15", "202.46.55.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("27678", "3", "2016-03-22 20:14:50", "66.249.74.106", "72");
INSERT INTO `wp_gf_form_view` VALUES("27679", "10", "2016-03-22 20:14:51", "66.249.74.106", "70");
INSERT INTO `wp_gf_form_view` VALUES("27680", "6", "2016-03-22 20:37:34", "202.46.54.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("27681", "1", "2016-03-22 20:55:49", "107.173.192.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("27682", "3", "2016-03-22 21:00:03", "202.46.56.136", "114");
INSERT INTO `wp_gf_form_view` VALUES("27683", "10", "2016-03-22 21:00:03", "202.46.56.136", "118");
INSERT INTO `wp_gf_form_view` VALUES("27684", "9", "2016-03-22 21:50:59", "202.46.58.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("27685", "3", "2016-03-22 22:16:29", "202.46.54.137", "30");
INSERT INTO `wp_gf_form_view` VALUES("27686", "10", "2016-03-22 22:16:29", "202.46.54.137", "30");
INSERT INTO `wp_gf_form_view` VALUES("27687", "2", "2016-03-22 22:37:25", "207.46.13.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("27688", "1", "2016-03-22 22:43:35", "23.94.179.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("27689", "3", "2016-03-22 23:17:18", "202.46.53.142", "52");
INSERT INTO `wp_gf_form_view` VALUES("27690", "10", "2016-03-22 23:17:19", "202.46.53.142", "50");
INSERT INTO `wp_gf_form_view` VALUES("27691", "6", "2016-03-22 23:33:33", "202.46.48.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("27692", "5", "2016-03-23 00:18:50", "202.46.57.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("27693", "3", "2016-03-23 00:18:50", "202.46.57.186", "31");
INSERT INTO `wp_gf_form_view` VALUES("27694", "10", "2016-03-23 00:18:50", "202.46.57.186", "30");
INSERT INTO `wp_gf_form_view` VALUES("27695", "1", "2016-03-23 00:28:08", "104.223.30.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("27696", "3", "2016-03-23 01:15:22", "202.46.54.139", "88");
INSERT INTO `wp_gf_form_view` VALUES("27697", "10", "2016-03-23 01:15:22", "202.46.54.139", "90");
INSERT INTO `wp_gf_form_view` VALUES("27698", "1", "2016-03-23 01:34:00", "198.46.196.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("27699", "2", "2016-03-23 01:47:50", "40.84.159.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("27700", "5", "2016-03-23 01:59:40", "207.46.13.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("27701", "3", "2016-03-23 02:19:12", "202.46.52.70", "50");
INSERT INTO `wp_gf_form_view` VALUES("27702", "10", "2016-03-23 02:19:12", "202.46.52.70", "59");
INSERT INTO `wp_gf_form_view` VALUES("27703", "3", "2016-03-23 03:01:14", "202.46.51.14", "76");
INSERT INTO `wp_gf_form_view` VALUES("27704", "10", "2016-03-23 03:01:14", "202.46.51.14", "70");
INSERT INTO `wp_gf_form_view` VALUES("27705", "1", "2016-03-23 03:39:23", "202.46.56.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("27706", "3", "2016-03-23 04:00:52", "202.46.49.190", "54");
INSERT INTO `wp_gf_form_view` VALUES("27707", "10", "2016-03-23 04:00:52", "202.46.49.190", "52");
INSERT INTO `wp_gf_form_view` VALUES("27708", "3", "2016-03-23 05:06:24", "202.46.54.131", "58");
INSERT INTO `wp_gf_form_view` VALUES("27709", "10", "2016-03-23 05:06:24", "202.46.54.131", "55");
INSERT INTO `wp_gf_form_view` VALUES("27710", "2", "2016-03-23 05:28:16", "202.46.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("27711", "3", "2016-03-23 06:17:11", "202.46.57.76", "36");
INSERT INTO `wp_gf_form_view` VALUES("27712", "10", "2016-03-23 06:17:13", "202.46.57.76", "35");
INSERT INTO `wp_gf_form_view` VALUES("27713", "3", "2016-03-23 07:00:58", "207.46.13.150", "33");
INSERT INTO `wp_gf_form_view` VALUES("27714", "10", "2016-03-23 07:00:58", "207.46.13.150", "30");
INSERT INTO `wp_gf_form_view` VALUES("27715", "3", "2016-03-23 08:30:11", "202.46.49.60", "113");
INSERT INTO `wp_gf_form_view` VALUES("27716", "10", "2016-03-23 08:30:14", "202.46.49.60", "105");
INSERT INTO `wp_gf_form_view` VALUES("27717", "1", "2016-03-23 08:35:02", "46.105.86.213", "5");
INSERT INTO `wp_gf_form_view` VALUES("27718", "3", "2016-03-23 09:01:54", "66.249.74.104", "27");
INSERT INTO `wp_gf_form_view` VALUES("27719", "10", "2016-03-23 09:01:54", "66.249.74.104", "33");
INSERT INTO `wp_gf_form_view` VALUES("27720", "3", "2016-03-23 10:00:17", "54.204.124.128", "40");
INSERT INTO `wp_gf_form_view` VALUES("27721", "10", "2016-03-23 10:00:17", "54.204.124.128", "40");
INSERT INTO `wp_gf_form_view` VALUES("27722", "2", "2016-03-23 10:00:35", "54.204.124.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("27723", "3", "2016-03-23 11:07:14", "66.249.74.102", "75");
INSERT INTO `wp_gf_form_view` VALUES("27724", "10", "2016-03-23 11:07:14", "66.249.74.102", "75");
INSERT INTO `wp_gf_form_view` VALUES("27725", "3", "2016-03-23 12:08:50", "202.46.48.87", "40");
INSERT INTO `wp_gf_form_view` VALUES("27726", "10", "2016-03-23 12:08:50", "202.46.48.87", "40");
INSERT INTO `wp_gf_form_view` VALUES("27727", "3", "2016-03-23 13:06:09", "68.180.229.244", "60");
INSERT INTO `wp_gf_form_view` VALUES("27728", "10", "2016-03-23 13:06:10", "68.180.229.244", "60");
INSERT INTO `wp_gf_form_view` VALUES("27729", "3", "2016-03-23 14:04:33", "93.61.27.184", "26");
INSERT INTO `wp_gf_form_view` VALUES("27730", "10", "2016-03-23 14:04:33", "93.61.27.184", "25");
INSERT INTO `wp_gf_form_view` VALUES("27731", "3", "2016-03-23 15:11:51", "207.46.13.20", "25");
INSERT INTO `wp_gf_form_view` VALUES("27732", "10", "2016-03-23 15:11:51", "207.46.13.20", "25");
INSERT INTO `wp_gf_form_view` VALUES("27733", "1", "2016-03-23 15:29:47", "202.46.56.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("27734", "3", "2016-03-23 16:13:53", "66.249.74.102", "27");
INSERT INTO `wp_gf_form_view` VALUES("27735", "10", "2016-03-23 16:13:53", "66.249.74.102", "25");
INSERT INTO `wp_gf_form_view` VALUES("27736", "3", "2016-03-23 17:10:14", "202.46.50.18", "6");
INSERT INTO `wp_gf_form_view` VALUES("27737", "10", "2016-03-23 17:10:14", "202.46.50.18", "5");
INSERT INTO `wp_gf_form_view` VALUES("27738", "9", "2016-03-23 18:24:46", "40.77.167.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("27739", "3", "2016-03-23 18:24:47", "40.77.167.88", "55");
INSERT INTO `wp_gf_form_view` VALUES("27740", "10", "2016-03-23 18:24:47", "40.77.167.88", "55");
INSERT INTO `wp_gf_form_view` VALUES("27741", "1", "2016-03-23 18:26:19", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("27742", "3", "2016-03-23 19:01:15", "157.55.39.151", "212");
INSERT INTO `wp_gf_form_view` VALUES("27743", "10", "2016-03-23 19:01:15", "157.55.39.151", "222");
INSERT INTO `wp_gf_form_view` VALUES("27744", "2", "2016-03-23 19:51:15", "145.133.160.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("27745", "10", "2016-03-23 20:04:41", "66.249.74.102", "31");
INSERT INTO `wp_gf_form_view` VALUES("27746", "3", "2016-03-23 20:04:42", "66.249.74.102", "30");
INSERT INTO `wp_gf_form_view` VALUES("27747", "1", "2016-03-23 20:33:02", "23.94.86.221", "3");
INSERT INTO `wp_gf_form_view` VALUES("27748", "3", "2016-03-23 21:01:03", "40.77.167.26", "27");
INSERT INTO `wp_gf_form_view` VALUES("27749", "10", "2016-03-23 21:01:03", "40.77.167.26", "25");
INSERT INTO `wp_gf_form_view` VALUES("27750", "3", "2016-03-23 22:02:09", "207.46.13.30", "35");
INSERT INTO `wp_gf_form_view` VALUES("27751", "10", "2016-03-23 22:02:09", "207.46.13.30", "36");
INSERT INTO `wp_gf_form_view` VALUES("27752", "3", "2016-03-23 23:00:22", "141.8.143.140", "40");
INSERT INTO `wp_gf_form_view` VALUES("27753", "10", "2016-03-23 23:00:22", "141.8.143.140", "40");
INSERT INTO `wp_gf_form_view` VALUES("27754", "8", "2016-03-23 23:00:57", "173.242.118.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("27755", "3", "2016-03-24 00:08:58", "5.248.253.133", "51");
INSERT INTO `wp_gf_form_view` VALUES("27756", "10", "2016-03-24 00:08:58", "5.248.253.133", "50");
INSERT INTO `wp_gf_form_view` VALUES("27757", "3", "2016-03-24 01:27:38", "68.180.229.244", "168");
INSERT INTO `wp_gf_form_view` VALUES("27758", "10", "2016-03-24 01:29:29", "96.50.77.70", "165");
INSERT INTO `wp_gf_form_view` VALUES("27759", "2", "2016-03-24 01:57:05", "50.241.139.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("27760", "3", "2016-03-24 02:14:28", "157.55.39.58", "51");
INSERT INTO `wp_gf_form_view` VALUES("27761", "10", "2016-03-24 02:14:28", "157.55.39.58", "53");
INSERT INTO `wp_gf_form_view` VALUES("27762", "8", "2016-03-24 02:48:53", "173.242.118.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("27763", "3", "2016-03-24 03:27:12", "66.249.74.102", "35");
INSERT INTO `wp_gf_form_view` VALUES("27764", "10", "2016-03-24 03:27:13", "66.249.74.102", "35");
INSERT INTO `wp_gf_form_view` VALUES("27765", "7", "2016-03-24 03:59:42", "46.246.61.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("27766", "3", "2016-03-24 04:39:24", "66.249.74.104", "36");
INSERT INTO `wp_gf_form_view` VALUES("27767", "10", "2016-03-24 04:39:25", "66.249.74.104", "35");
INSERT INTO `wp_gf_form_view` VALUES("27768", "3", "2016-03-24 05:27:00", "202.46.52.163", "26");
INSERT INTO `wp_gf_form_view` VALUES("27769", "10", "2016-03-24 05:27:00", "202.46.52.163", "25");
INSERT INTO `wp_gf_form_view` VALUES("27770", "3", "2016-03-24 06:00:28", "202.46.55.152", "16");
INSERT INTO `wp_gf_form_view` VALUES("27771", "10", "2016-03-24 06:00:28", "202.46.55.152", "15");
INSERT INTO `wp_gf_form_view` VALUES("27772", "3", "2016-03-24 07:01:16", "199.21.99.202", "188");
INSERT INTO `wp_gf_form_view` VALUES("27773", "10", "2016-03-24 07:01:18", "199.21.99.202", "186");
INSERT INTO `wp_gf_form_view` VALUES("27774", "1", "2016-03-24 07:06:01", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("27775", "2", "2016-03-24 07:07:04", "70.183.228.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("27776", "3", "2016-03-24 08:24:15", "207.46.13.145", "25");
INSERT INTO `wp_gf_form_view` VALUES("27777", "10", "2016-03-24 08:24:15", "207.46.13.145", "25");
INSERT INTO `wp_gf_form_view` VALUES("27778", "3", "2016-03-24 09:08:23", "207.46.13.145", "15");
INSERT INTO `wp_gf_form_view` VALUES("27779", "10", "2016-03-24 09:08:24", "207.46.13.145", "15");
INSERT INTO `wp_gf_form_view` VALUES("27780", "7", "2016-03-24 09:21:25", "202.46.56.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("27781", "6", "2016-03-24 10:06:47", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("27782", "3", "2016-03-24 10:06:47", "68.180.229.244", "26");
INSERT INTO `wp_gf_form_view` VALUES("27783", "10", "2016-03-24 10:06:47", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("27784", "3", "2016-03-24 11:01:52", "202.46.54.196", "22");
INSERT INTO `wp_gf_form_view` VALUES("27785", "10", "2016-03-24 11:01:52", "202.46.54.196", "21");
INSERT INTO `wp_gf_form_view` VALUES("27786", "3", "2016-03-24 12:08:51", "202.46.55.125", "31");
INSERT INTO `wp_gf_form_view` VALUES("27787", "10", "2016-03-24 12:08:52", "202.46.55.125", "32");
INSERT INTO `wp_gf_form_view` VALUES("27788", "3", "2016-03-24 13:00:46", "220.181.108.177", "187");
INSERT INTO `wp_gf_form_view` VALUES("27789", "10", "2016-03-24 13:00:46", "220.181.108.177", "187");
INSERT INTO `wp_gf_form_view` VALUES("27790", "2", "2016-03-24 13:25:52", "50.242.171.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27791", "3", "2016-03-24 14:22:49", "202.46.51.183", "46");
INSERT INTO `wp_gf_form_view` VALUES("27792", "10", "2016-03-24 14:22:49", "202.46.51.183", "47");
INSERT INTO `wp_gf_form_view` VALUES("27793", "3", "2016-03-24 15:31:02", "75.154.236.242", "11");
INSERT INTO `wp_gf_form_view` VALUES("27794", "10", "2016-03-24 15:31:05", "75.154.236.242", "10");
INSERT INTO `wp_gf_form_view` VALUES("27795", "3", "2016-03-24 16:03:16", "202.46.53.46", "65");
INSERT INTO `wp_gf_form_view` VALUES("27796", "10", "2016-03-24 16:03:16", "202.46.53.46", "65");
INSERT INTO `wp_gf_form_view` VALUES("27797", "1", "2016-03-24 17:01:31", "46.105.86.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("27798", "3", "2016-03-24 17:01:31", "46.105.86.213", "134");
INSERT INTO `wp_gf_form_view` VALUES("27799", "10", "2016-03-24 17:01:31", "46.105.86.213", "135");
INSERT INTO `wp_gf_form_view` VALUES("27800", "2", "2016-03-24 17:28:59", "68.180.229.244", "2");
INSERT INTO `wp_gf_form_view` VALUES("27801", "10", "2016-03-24 18:15:46", "96.50.93.42", "50");
INSERT INTO `wp_gf_form_view` VALUES("27802", "3", "2016-03-24 18:15:48", "96.50.93.42", "46");
INSERT INTO `wp_gf_form_view` VALUES("27803", "3", "2016-03-24 19:08:51", "167.114.237.177", "237");
INSERT INTO `wp_gf_form_view` VALUES("27804", "10", "2016-03-24 19:08:51", "167.114.237.177", "243");
INSERT INTO `wp_gf_form_view` VALUES("27805", "2", "2016-03-24 19:52:03", "70.188.114.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("27806", "3", "2016-03-24 20:00:56", "66.249.79.162", "48");
INSERT INTO `wp_gf_form_view` VALUES("27807", "10", "2016-03-24 20:00:56", "66.249.79.162", "47");
INSERT INTO `wp_gf_form_view` VALUES("27808", "3", "2016-03-24 21:04:40", "202.46.56.137", "192");
INSERT INTO `wp_gf_form_view` VALUES("27809", "10", "2016-03-24 21:04:40", "202.46.56.137", "221");
INSERT INTO `wp_gf_form_view` VALUES("27810", "10", "2016-03-24 22:02:40", "184.69.23.166", "37");
INSERT INTO `wp_gf_form_view` VALUES("27811", "3", "2016-03-24 22:02:40", "184.69.23.166", "35");
INSERT INTO `wp_gf_form_view` VALUES("27812", "3", "2016-03-24 23:00:12", "172.218.195.102", "91");
INSERT INTO `wp_gf_form_view` VALUES("27813", "10", "2016-03-24 23:00:12", "172.218.195.102", "101");
INSERT INTO `wp_gf_form_view` VALUES("27814", "1", "2016-03-24 23:52:05", "202.46.54.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("27815", "3", "2016-03-25 00:03:40", "64.251.182.26", "171");
INSERT INTO `wp_gf_form_view` VALUES("27816", "10", "2016-03-25 00:03:40", "64.251.182.26", "170");
INSERT INTO `wp_gf_form_view` VALUES("27817", "2", "2016-03-25 00:04:29", "64.251.182.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("27818", "10", "2016-03-25 01:04:28", "213.211.241.42", "11");
INSERT INTO `wp_gf_form_view` VALUES("27819", "3", "2016-03-25 01:04:28", "213.211.241.42", "10");
INSERT INTO `wp_gf_form_view` VALUES("27820", "10", "2016-03-25 02:10:27", "66.249.79.169", "1913");
INSERT INTO `wp_gf_form_view` VALUES("27821", "3", "2016-03-25 02:10:27", "66.249.79.169", "2077");
INSERT INTO `wp_gf_form_view` VALUES("27822", "2", "2016-03-25 02:13:10", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27823", "1", "2016-03-25 02:15:25", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27824", "8", "2016-03-25 02:20:17", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27825", "9", "2016-03-25 02:20:27", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27826", "5", "2016-03-25 02:21:25", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27827", "6", "2016-03-25 02:25:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27828", "3", "2016-03-25 03:01:04", "66.249.79.169", "2290");
INSERT INTO `wp_gf_form_view` VALUES("27829", "10", "2016-03-25 03:01:04", "66.249.79.169", "2132");
INSERT INTO `wp_gf_form_view` VALUES("27830", "3", "2016-03-25 04:00:00", "5.9.98.130", "3015");
INSERT INTO `wp_gf_form_view` VALUES("27831", "10", "2016-03-25 04:00:00", "5.9.98.130", "2746");
INSERT INTO `wp_gf_form_view` VALUES("27832", "10", "2016-03-25 05:00:00", "5.9.98.130", "1483");
INSERT INTO `wp_gf_form_view` VALUES("27833", "3", "2016-03-25 05:00:00", "5.9.98.130", "1984");
INSERT INTO `wp_gf_form_view` VALUES("27834", "10", "2016-03-25 06:00:00", "5.9.98.130", "3449");
INSERT INTO `wp_gf_form_view` VALUES("27835", "3", "2016-03-25 06:00:00", "5.9.98.130", "3481");
INSERT INTO `wp_gf_form_view` VALUES("27836", "10", "2016-03-25 07:00:03", "5.9.98.130", "1807");
INSERT INTO `wp_gf_form_view` VALUES("27837", "3", "2016-03-25 07:00:06", "5.9.98.130", "1959");
INSERT INTO `wp_gf_form_view` VALUES("27838", "3", "2016-03-25 08:03:03", "167.114.235.70", "1346");
INSERT INTO `wp_gf_form_view` VALUES("27839", "10", "2016-03-25 08:03:03", "167.114.235.70", "1345");
INSERT INTO `wp_gf_form_view` VALUES("27840", "9", "2016-03-25 08:23:18", "167.114.235.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("27841", "3", "2016-03-25 09:00:01", "5.9.98.130", "3565");
INSERT INTO `wp_gf_form_view` VALUES("27842", "10", "2016-03-25 09:00:01", "5.9.98.130", "2085");
INSERT INTO `wp_gf_form_view` VALUES("27843", "2", "2016-03-25 09:21:25", "202.46.48.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("27844", "3", "2016-03-25 10:00:02", "5.9.98.130", "2442");
INSERT INTO `wp_gf_form_view` VALUES("27845", "10", "2016-03-25 10:00:04", "5.9.98.130", "2086");
INSERT INTO `wp_gf_form_view` VALUES("27846", "2", "2016-03-25 10:06:43", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27847", "1", "2016-03-25 10:09:56", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27848", "8", "2016-03-25 10:15:49", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27849", "9", "2016-03-25 10:16:03", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27850", "5", "2016-03-25 10:17:15", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27851", "6", "2016-03-25 10:22:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27852", "3", "2016-03-25 11:03:41", "5.9.98.130", "2272");
INSERT INTO `wp_gf_form_view` VALUES("27853", "10", "2016-03-25 11:03:42", "5.9.98.130", "2114");
INSERT INTO `wp_gf_form_view` VALUES("27854", "3", "2016-03-25 12:01:50", "5.9.98.130", "3107");
INSERT INTO `wp_gf_form_view` VALUES("27855", "10", "2016-03-25 12:01:52", "5.9.98.130", "2795");
INSERT INTO `wp_gf_form_view` VALUES("27856", "1", "2016-03-25 12:03:29", "70.67.47.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("27857", "3", "2016-03-25 13:07:45", "157.55.39.125", "2435");
INSERT INTO `wp_gf_form_view` VALUES("27858", "10", "2016-03-25 13:07:46", "157.55.39.125", "1849");
INSERT INTO `wp_gf_form_view` VALUES("27859", "7", "2016-03-25 13:09:09", "207.46.13.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("27860", "1", "2016-03-25 13:39:37", "62.210.84.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("27861", "3", "2016-03-25 14:00:03", "5.9.98.130", "3327");
INSERT INTO `wp_gf_form_view` VALUES("27862", "10", "2016-03-25 14:00:04", "5.9.98.130", "3526");
INSERT INTO `wp_gf_form_view` VALUES("27863", "1", "2016-03-25 14:50:18", "62.210.84.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("27864", "10", "2016-03-25 15:00:03", "5.9.98.130", "1578");
INSERT INTO `wp_gf_form_view` VALUES("27865", "3", "2016-03-25 15:00:06", "5.9.98.130", "1850");
INSERT INTO `wp_gf_form_view` VALUES("27866", "3", "2016-03-25 16:21:56", "68.180.229.244", "1511");
INSERT INTO `wp_gf_form_view` VALUES("27867", "10", "2016-03-25 16:21:57", "68.180.229.244", "1509");
INSERT INTO `wp_gf_form_view` VALUES("27868", "2", "2016-03-25 16:29:22", "192.126.130.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("27869", "10", "2016-03-25 17:00:00", "5.9.98.130", "2088");
INSERT INTO `wp_gf_form_view` VALUES("27870", "3", "2016-03-25 17:00:04", "5.9.98.130", "3689");
INSERT INTO `wp_gf_form_view` VALUES("27871", "1", "2016-03-25 17:52:58", "104.160.5.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("27872", "10", "2016-03-25 18:00:00", "5.9.98.130", "2875");
INSERT INTO `wp_gf_form_view` VALUES("27873", "3", "2016-03-25 18:00:00", "5.9.98.130", "3831");
INSERT INTO `wp_gf_form_view` VALUES("27874", "2", "2016-03-25 18:24:18", "5.34.241.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("27875", "10", "2016-03-25 19:00:00", "5.9.98.130", "4255");
INSERT INTO `wp_gf_form_view` VALUES("27876", "3", "2016-03-25 19:00:00", "5.9.98.130", "2204");
INSERT INTO `wp_gf_form_view` VALUES("27877", "3", "2016-03-25 20:00:01", "5.9.98.130", "1469");
INSERT INTO `wp_gf_form_view` VALUES("27878", "10", "2016-03-25 20:00:01", "5.9.98.130", "1401");
INSERT INTO `wp_gf_form_view` VALUES("27879", "3", "2016-03-25 21:00:02", "5.9.98.130", "1744");
INSERT INTO `wp_gf_form_view` VALUES("27880", "10", "2016-03-25 21:00:02", "5.9.98.130", "1035");
INSERT INTO `wp_gf_form_view` VALUES("27881", "6", "2016-03-25 21:51:20", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("27882", "9", "2016-03-25 21:58:39", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("27883", "3", "2016-03-25 22:13:49", "68.180.229.244", "26");
INSERT INTO `wp_gf_form_view` VALUES("27884", "10", "2016-03-25 22:13:50", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("27885", "3", "2016-03-25 23:00:18", "68.180.229.244", "57");
INSERT INTO `wp_gf_form_view` VALUES("27886", "10", "2016-03-25 23:00:18", "68.180.229.244", "50");
INSERT INTO `wp_gf_form_view` VALUES("27887", "3", "2016-03-26 00:06:27", "5.34.241.73", "48");
INSERT INTO `wp_gf_form_view` VALUES("27888", "10", "2016-03-26 00:06:27", "5.34.241.73", "45");
INSERT INTO `wp_gf_form_view` VALUES("27889", "8", "2016-03-26 01:15:03", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("27890", "3", "2016-03-26 01:15:04", "68.180.229.244", "189");
INSERT INTO `wp_gf_form_view` VALUES("27891", "10", "2016-03-26 01:15:04", "68.180.229.244", "187");
INSERT INTO `wp_gf_form_view` VALUES("27892", "2", "2016-03-26 01:44:21", "93.61.27.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("27893", "3", "2016-03-26 02:15:15", "46.119.127.4", "115");
INSERT INTO `wp_gf_form_view` VALUES("27894", "10", "2016-03-26 02:15:15", "46.119.127.4", "115");
INSERT INTO `wp_gf_form_view` VALUES("27895", "9", "2016-03-26 03:43:25", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("27896", "3", "2016-03-26 03:43:25", "66.249.74.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("27897", "10", "2016-03-26 03:43:26", "66.249.74.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("27898", "3", "2016-03-26 04:17:58", "207.46.13.122", "47");
INSERT INTO `wp_gf_form_view` VALUES("27899", "10", "2016-03-26 04:17:58", "207.46.13.122", "45");
INSERT INTO `wp_gf_form_view` VALUES("27900", "10", "2016-03-26 06:11:57", "64.46.12.18", "17");
INSERT INTO `wp_gf_form_view` VALUES("27901", "3", "2016-03-26 06:11:58", "64.46.12.18", "15");
INSERT INTO `wp_gf_form_view` VALUES("27902", "3", "2016-03-26 07:08:20", "202.46.50.75", "35");
INSERT INTO `wp_gf_form_view` VALUES("27903", "10", "2016-03-26 07:08:21", "202.46.50.75", "35");
INSERT INTO `wp_gf_form_view` VALUES("27904", "3", "2016-03-26 08:03:36", "23.31.24.253", "176");
INSERT INTO `wp_gf_form_view` VALUES("27905", "10", "2016-03-26 08:03:37", "23.31.24.253", "175");
INSERT INTO `wp_gf_form_view` VALUES("27906", "2", "2016-03-26 08:05:04", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("27907", "9", "2016-03-26 08:45:33", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("27908", "3", "2016-03-26 09:01:03", "66.249.74.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("27909", "10", "2016-03-26 09:01:03", "66.249.74.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("27910", "8", "2016-03-26 09:54:46", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("27911", "3", "2016-03-26 10:24:01", "23.80.155.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("27912", "10", "2016-03-26 10:24:01", "23.80.155.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("27913", "3", "2016-03-26 11:00:07", "66.249.74.106", "42");
INSERT INTO `wp_gf_form_view` VALUES("27914", "10", "2016-03-26 11:00:08", "66.249.74.106", "40");
INSERT INTO `wp_gf_form_view` VALUES("27915", "6", "2016-03-26 11:35:45", "167.114.235.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("27916", "3", "2016-03-26 12:05:38", "167.114.237.177", "57");
INSERT INTO `wp_gf_form_view` VALUES("27917", "10", "2016-03-26 12:05:38", "167.114.237.177", "55");
INSERT INTO `wp_gf_form_view` VALUES("27918", "3", "2016-03-26 13:23:15", "46.119.121.96", "81");
INSERT INTO `wp_gf_form_view` VALUES("27919", "10", "2016-03-26 13:23:16", "46.119.121.96", "80");
INSERT INTO `wp_gf_form_view` VALUES("27920", "3", "2016-03-26 15:12:00", "66.249.74.104", "43");
INSERT INTO `wp_gf_form_view` VALUES("27921", "1", "2016-03-26 15:29:53", "46.105.86.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("27922", "10", "2016-03-26 15:29:54", "46.105.86.213", "40");
INSERT INTO `wp_gf_form_view` VALUES("27923", "3", "2016-03-26 16:13:58", "24.108.137.136", "20");
INSERT INTO `wp_gf_form_view` VALUES("27924", "10", "2016-03-26 16:13:58", "24.108.137.136", "20");
INSERT INTO `wp_gf_form_view` VALUES("27925", "9", "2016-03-26 16:33:27", "66.249.74.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("27926", "10", "2016-03-26 17:56:25", "66.249.74.102", "11");
INSERT INTO `wp_gf_form_view` VALUES("27927", "3", "2016-03-26 17:56:26", "66.249.74.102", "10");
INSERT INTO `wp_gf_form_view` VALUES("27928", "3", "2016-03-26 18:19:29", "62.210.162.209", "21");
INSERT INTO `wp_gf_form_view` VALUES("27929", "10", "2016-03-26 18:19:29", "62.210.162.209", "21");
INSERT INTO `wp_gf_form_view` VALUES("27930", "3", "2016-03-26 19:18:21", "220.181.108.187", "11");
INSERT INTO `wp_gf_form_view` VALUES("27931", "10", "2016-03-26 19:18:22", "220.181.108.187", "10");
INSERT INTO `wp_gf_form_view` VALUES("27932", "9", "2016-03-26 19:51:35", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("27933", "3", "2016-03-26 20:06:39", "202.46.57.79", "10");
INSERT INTO `wp_gf_form_view` VALUES("27934", "10", "2016-03-26 20:06:39", "202.46.57.79", "10");
INSERT INTO `wp_gf_form_view` VALUES("27935", "3", "2016-03-26 21:17:47", "66.249.74.106", "25");
INSERT INTO `wp_gf_form_view` VALUES("27936", "10", "2016-03-26 21:17:47", "66.249.74.106", "25");
INSERT INTO `wp_gf_form_view` VALUES("27937", "3", "2016-03-26 22:31:14", "66.249.84.115", "15");
INSERT INTO `wp_gf_form_view` VALUES("27938", "10", "2016-03-26 22:31:14", "66.249.84.115", "15");
INSERT INTO `wp_gf_form_view` VALUES("27939", "3", "2016-03-26 23:53:44", "114.97.54.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("27940", "10", "2016-03-26 23:53:45", "114.97.54.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("27941", "10", "2016-03-27 00:25:13", "187.204.176.28", "23");
INSERT INTO `wp_gf_form_view` VALUES("27942", "3", "2016-03-27 00:25:14", "187.204.176.28", "20");
INSERT INTO `wp_gf_form_view` VALUES("27943", "3", "2016-03-27 02:05:48", "66.249.74.106", "40");
INSERT INTO `wp_gf_form_view` VALUES("27944", "10", "2016-03-27 02:05:49", "66.249.74.106", "40");
INSERT INTO `wp_gf_form_view` VALUES("27945", "3", "2016-03-27 03:04:21", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("27946", "10", "2016-03-27 03:04:21", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("27947", "8", "2016-03-27 04:10:23", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("27948", "3", "2016-03-27 04:33:56", "66.249.74.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("27949", "10", "2016-03-27 04:33:56", "66.249.74.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("27950", "3", "2016-03-27 05:05:24", "204.79.180.61", "32");
INSERT INTO `wp_gf_form_view` VALUES("27951", "10", "2016-03-27 05:05:24", "204.79.180.61", "30");
INSERT INTO `wp_gf_form_view` VALUES("27952", "3", "2016-03-27 06:01:52", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("27953", "10", "2016-03-27 06:01:52", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("27954", "3", "2016-03-27 07:25:27", "188.214.50.150", "195");
INSERT INTO `wp_gf_form_view` VALUES("27955", "10", "2016-03-27 07:25:27", "188.214.50.150", "180");
INSERT INTO `wp_gf_form_view` VALUES("27956", "1", "2016-03-27 07:44:28", "192.99.166.236", "4");
INSERT INTO `wp_gf_form_view` VALUES("27957", "3", "2016-03-27 08:28:19", "46.246.38.148", "35");
INSERT INTO `wp_gf_form_view` VALUES("27958", "10", "2016-03-27 08:28:20", "46.246.38.148", "35");
INSERT INTO `wp_gf_form_view` VALUES("27959", "3", "2016-03-27 09:22:24", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("27960", "10", "2016-03-27 09:22:24", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("27961", "3", "2016-03-27 10:03:28", "46.246.38.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("27962", "10", "2016-03-27 10:03:28", "46.246.38.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("27963", "3", "2016-03-27 11:03:53", "62.210.162.184", "31");
INSERT INTO `wp_gf_form_view` VALUES("27964", "10", "2016-03-27 11:03:53", "62.210.162.184", "30");
INSERT INTO `wp_gf_form_view` VALUES("27965", "1", "2016-03-27 11:42:52", "198.46.201.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("27966", "3", "2016-03-27 12:06:53", "192.187.114.10", "25");
INSERT INTO `wp_gf_form_view` VALUES("27967", "10", "2016-03-27 12:06:53", "192.187.114.10", "25");
INSERT INTO `wp_gf_form_view` VALUES("27968", "3", "2016-03-27 13:24:34", "66.249.74.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("27969", "10", "2016-03-27 13:24:34", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("27970", "3", "2016-03-27 14:08:21", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("27971", "10", "2016-03-27 14:08:21", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("27972", "3", "2016-03-27 15:27:08", "66.249.74.104", "45");
INSERT INTO `wp_gf_form_view` VALUES("27973", "10", "2016-03-27 15:27:10", "66.249.74.104", "45");
INSERT INTO `wp_gf_form_view` VALUES("27974", "3", "2016-03-27 16:02:24", "66.249.74.106", "284");
INSERT INTO `wp_gf_form_view` VALUES("27975", "10", "2016-03-27 16:02:24", "66.249.74.106", "263");
INSERT INTO `wp_gf_form_view` VALUES("27976", "7", "2016-03-27 16:06:44", "207.46.13.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("27977", "6", "2016-03-27 16:10:37", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("27978", "3", "2016-03-27 17:04:01", "89.44.43.125", "345");
INSERT INTO `wp_gf_form_view` VALUES("27979", "10", "2016-03-27 17:04:01", "89.44.43.125", "320");
INSERT INTO `wp_gf_form_view` VALUES("27980", "1", "2016-03-27 17:50:08", "136.243.48.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("27981", "8", "2016-03-27 17:50:09", "136.243.48.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("27982", "2", "2016-03-27 17:50:10", "136.243.48.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("27983", "3", "2016-03-27 18:06:50", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("27984", "10", "2016-03-27 18:06:50", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("27985", "2", "2016-03-27 19:51:55", "37.72.190.239", "5");
INSERT INTO `wp_gf_form_view` VALUES("27986", "3", "2016-03-27 19:51:56", "37.72.190.239", "58");
INSERT INTO `wp_gf_form_view` VALUES("27987", "10", "2016-03-27 19:51:56", "37.72.190.239", "55");
INSERT INTO `wp_gf_form_view` VALUES("27988", "3", "2016-03-27 20:02:03", "167.114.235.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("27989", "10", "2016-03-27 20:02:03", "167.114.235.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("27990", "1", "2016-03-27 21:09:44", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("27991", "3", "2016-03-27 21:09:44", "192.99.166.236", "45");
INSERT INTO `wp_gf_form_view` VALUES("27992", "10", "2016-03-27 21:09:44", "192.99.166.236", "46");
INSERT INTO `wp_gf_form_view` VALUES("27993", "2", "2016-03-27 21:40:42", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("27994", "3", "2016-03-27 22:16:25", "66.249.74.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("27995", "10", "2016-03-27 22:16:25", "66.249.74.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("27996", "3", "2016-03-27 23:18:13", "207.46.13.27", "43");
INSERT INTO `wp_gf_form_view` VALUES("27997", "10", "2016-03-27 23:18:13", "207.46.13.27", "40");
INSERT INTO `wp_gf_form_view` VALUES("27998", "2", "2016-03-27 23:25:57", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("27999", "9", "2016-03-28 00:17:54", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("28000", "3", "2016-03-28 00:17:55", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("28001", "10", "2016-03-28 00:17:55", "199.21.99.202", "15");
INSERT INTO `wp_gf_form_view` VALUES("28002", "2", "2016-03-28 01:06:29", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("28003", "3", "2016-03-28 01:06:30", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("28004", "10", "2016-03-28 01:06:30", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("28005", "3", "2016-03-28 02:09:15", "52.37.55.27", "35");
INSERT INTO `wp_gf_form_view` VALUES("28006", "10", "2016-03-28 02:09:16", "52.37.55.27", "35");
INSERT INTO `wp_gf_form_view` VALUES("28007", "3", "2016-03-28 03:16:03", "66.249.74.104", "11");
INSERT INTO `wp_gf_form_view` VALUES("28008", "10", "2016-03-28 03:16:03", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("28009", "3", "2016-03-28 04:48:07", "207.46.13.39", "66");
INSERT INTO `wp_gf_form_view` VALUES("28010", "10", "2016-03-28 04:48:08", "207.46.13.39", "65");
INSERT INTO `wp_gf_form_view` VALUES("28011", "3", "2016-03-28 05:07:45", "66.249.74.102", "21");
INSERT INTO `wp_gf_form_view` VALUES("28012", "10", "2016-03-28 05:07:45", "66.249.74.102", "20");
INSERT INTO `wp_gf_form_view` VALUES("28013", "3", "2016-03-28 06:26:06", "202.46.53.12", "10");
INSERT INTO `wp_gf_form_view` VALUES("28014", "10", "2016-03-28 06:26:06", "202.46.53.12", "10");
INSERT INTO `wp_gf_form_view` VALUES("28015", "3", "2016-03-28 07:10:01", "66.249.74.102", "15");
INSERT INTO `wp_gf_form_view` VALUES("28016", "10", "2016-03-28 07:10:01", "66.249.74.102", "15");
INSERT INTO `wp_gf_form_view` VALUES("28017", "8", "2016-03-28 08:06:34", "202.46.51.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("28018", "3", "2016-03-28 08:06:34", "202.46.51.38", "87");
INSERT INTO `wp_gf_form_view` VALUES("28019", "10", "2016-03-28 08:06:34", "202.46.51.38", "80");
INSERT INTO `wp_gf_form_view` VALUES("28020", "3", "2016-03-28 09:06:49", "136.243.17.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("28021", "10", "2016-03-28 09:06:50", "136.243.17.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("28022", "3", "2016-03-28 10:09:27", "157.55.39.106", "40");
INSERT INTO `wp_gf_form_view` VALUES("28023", "10", "2016-03-28 10:09:28", "157.55.39.106", "40");
INSERT INTO `wp_gf_form_view` VALUES("28024", "3", "2016-03-28 11:16:08", "191.96.137.125", "162");
INSERT INTO `wp_gf_form_view` VALUES("28025", "10", "2016-03-28 11:16:09", "191.96.137.125", "155");
INSERT INTO `wp_gf_form_view` VALUES("28026", "1", "2016-03-28 11:16:40", "46.105.86.213", "4");
INSERT INTO `wp_gf_form_view` VALUES("28027", "3", "2016-03-28 12:01:08", "202.46.55.170", "37");
INSERT INTO `wp_gf_form_view` VALUES("28028", "10", "2016-03-28 12:01:08", "202.46.55.170", "35");
INSERT INTO `wp_gf_form_view` VALUES("28029", "6", "2016-03-28 12:12:08", "5.9.112.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("28030", "3", "2016-03-28 13:04:04", "62.210.162.184", "20");
INSERT INTO `wp_gf_form_view` VALUES("28031", "10", "2016-03-28 13:04:04", "62.210.162.184", "20");
INSERT INTO `wp_gf_form_view` VALUES("28032", "3", "2016-03-28 14:38:58", "66.193.165.57", "12");
INSERT INTO `wp_gf_form_view` VALUES("28033", "10", "2016-03-28 14:38:58", "66.193.165.57", "11");
INSERT INTO `wp_gf_form_view` VALUES("28034", "10", "2016-03-28 15:18:05", "66.249.84.116", "167");
INSERT INTO `wp_gf_form_view` VALUES("28035", "3", "2016-03-28 15:18:05", "66.249.84.116", "169");
INSERT INTO `wp_gf_form_view` VALUES("28036", "2", "2016-03-28 15:22:51", "104.131.115.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("28037", "2", "2016-03-28 16:20:51", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("28038", "3", "2016-03-28 16:20:52", "66.249.74.102", "52");
INSERT INTO `wp_gf_form_view` VALUES("28039", "10", "2016-03-28 16:20:52", "66.249.74.102", "50");
INSERT INTO `wp_gf_form_view` VALUES("28040", "3", "2016-03-28 17:10:35", "68.180.229.244", "32");
INSERT INTO `wp_gf_form_view` VALUES("28041", "10", "2016-03-28 17:10:37", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("28042", "3", "2016-03-28 18:03:58", "194.187.168.220", "148");
INSERT INTO `wp_gf_form_view` VALUES("28043", "10", "2016-03-28 18:03:59", "194.187.168.220", "150");
INSERT INTO `wp_gf_form_view` VALUES("28044", "3", "2016-03-28 19:20:35", "157.55.39.248", "344");
INSERT INTO `wp_gf_form_view` VALUES("28045", "10", "2016-03-28 19:20:38", "157.55.39.248", "333");
INSERT INTO `wp_gf_form_view` VALUES("28046", "9", "2016-03-28 19:55:05", "157.55.39.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("28047", "1", "2016-03-28 19:55:23", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("28048", "3", "2016-03-28 20:10:19", "27.151.63.202", "43");
INSERT INTO `wp_gf_form_view` VALUES("28049", "10", "2016-03-28 20:10:20", "27.151.63.202", "41");
INSERT INTO `wp_gf_form_view` VALUES("28050", "8", "2016-03-28 20:46:03", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("28051", "3", "2016-03-28 21:04:29", "157.55.39.5", "31");
INSERT INTO `wp_gf_form_view` VALUES("28052", "10", "2016-03-28 21:04:29", "157.55.39.5", "30");
INSERT INTO `wp_gf_form_view` VALUES("28053", "9", "2016-03-28 21:55:58", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("28054", "10", "2016-03-28 22:06:17", "66.249.74.106", "815");
INSERT INTO `wp_gf_form_view` VALUES("28055", "3", "2016-03-28 22:06:19", "66.249.74.106", "847");
INSERT INTO `wp_gf_form_view` VALUES("28056", "1", "2016-03-28 22:46:40", "159.203.100.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("28057", "5", "2016-03-28 22:52:59", "159.203.100.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("28058", "3", "2016-03-28 23:00:25", "159.203.100.118", "2119");
INSERT INTO `wp_gf_form_view` VALUES("28059", "10", "2016-03-28 23:00:25", "159.203.100.118", "1994");
INSERT INTO `wp_gf_form_view` VALUES("28060", "6", "2016-03-28 23:01:45", "159.203.100.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("28061", "9", "2016-03-28 23:10:00", "159.203.100.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("28062", "2", "2016-03-28 23:50:31", "159.203.100.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("28063", "3", "2016-03-29 00:00:05", "159.203.100.118", "177");
INSERT INTO `wp_gf_form_view` VALUES("28064", "10", "2016-03-29 00:00:05", "159.203.100.118", "166");
INSERT INTO `wp_gf_form_view` VALUES("28065", "8", "2016-03-29 00:04:44", "159.203.100.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("28066", "3", "2016-03-29 01:19:09", "157.55.39.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("28067", "10", "2016-03-29 01:19:12", "157.55.39.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("28068", "3", "2016-03-29 02:05:17", "207.46.13.0", "60");
INSERT INTO `wp_gf_form_view` VALUES("28069", "10", "2016-03-29 02:05:17", "207.46.13.0", "62");
INSERT INTO `wp_gf_form_view` VALUES("28070", "3", "2016-03-29 03:03:34", "157.55.39.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("28071", "10", "2016-03-29 03:03:34", "157.55.39.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("28072", "1", "2016-03-29 03:08:56", "69.91.198.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("28073", "3", "2016-03-29 04:09:30", "96.50.31.112", "32");
INSERT INTO `wp_gf_form_view` VALUES("28074", "10", "2016-03-29 04:09:31", "96.50.31.112", "30");
INSERT INTO `wp_gf_form_view` VALUES("28075", "6", "2016-03-29 04:49:46", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("28076", "3", "2016-03-29 05:00:01", "157.55.39.134", "42");
INSERT INTO `wp_gf_form_view` VALUES("28077", "10", "2016-03-29 05:00:01", "157.55.39.134", "41");
INSERT INTO `wp_gf_form_view` VALUES("28078", "3", "2016-03-29 06:05:18", "157.55.39.134", "16");
INSERT INTO `wp_gf_form_view` VALUES("28079", "10", "2016-03-29 06:05:19", "157.55.39.134", "15");
INSERT INTO `wp_gf_form_view` VALUES("28080", "9", "2016-03-29 06:22:45", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("28081", "3", "2016-03-29 07:44:52", "191.96.135.177", "12");
INSERT INTO `wp_gf_form_view` VALUES("28082", "10", "2016-03-29 07:44:53", "191.96.135.177", "10");
INSERT INTO `wp_gf_form_view` VALUES("28083", "3", "2016-03-29 08:05:55", "66.249.74.106", "15");
INSERT INTO `wp_gf_form_view` VALUES("28084", "10", "2016-03-29 08:05:55", "66.249.74.106", "15");
INSERT INTO `wp_gf_form_view` VALUES("28085", "9", "2016-03-29 08:20:06", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("28086", "3", "2016-03-29 09:41:14", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("28087", "10", "2016-03-29 09:41:14", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("28088", "3", "2016-03-29 10:10:49", "54.211.225.154", "30");
INSERT INTO `wp_gf_form_view` VALUES("28089", "10", "2016-03-29 10:10:49", "54.211.225.154", "30");
INSERT INTO `wp_gf_form_view` VALUES("28090", "2", "2016-03-29 10:11:12", "54.211.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("28091", "3", "2016-03-29 11:17:08", "66.249.74.104", "15");
INSERT INTO `wp_gf_form_view` VALUES("28092", "10", "2016-03-29 11:17:10", "66.249.74.104", "15");
INSERT INTO `wp_gf_form_view` VALUES("28093", "3", "2016-03-29 12:00:43", "199.21.99.202", "40");
INSERT INTO `wp_gf_form_view` VALUES("28094", "10", "2016-03-29 12:00:43", "199.21.99.202", "45");
INSERT INTO `wp_gf_form_view` VALUES("28095", "1", "2016-03-29 12:19:29", "195.154.44.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("28096", "3", "2016-03-29 13:11:54", "114.98.243.57", "10");
INSERT INTO `wp_gf_form_view` VALUES("28097", "10", "2016-03-29 13:11:54", "114.98.243.57", "10");
INSERT INTO `wp_gf_form_view` VALUES("28098", "3", "2016-03-29 14:06:07", "104.223.38.213", "54");
INSERT INTO `wp_gf_form_view` VALUES("28099", "10", "2016-03-29 14:06:07", "104.223.38.213", "50");
INSERT INTO `wp_gf_form_view` VALUES("28100", "3", "2016-03-29 15:13:25", "157.55.39.134", "50");
INSERT INTO `wp_gf_form_view` VALUES("28101", "10", "2016-03-29 15:13:26", "157.55.39.134", "51");
INSERT INTO `wp_gf_form_view` VALUES("28102", "3", "2016-03-29 16:07:37", "23.228.108.195", "140");
INSERT INTO `wp_gf_form_view` VALUES("28103", "10", "2016-03-29 16:07:37", "23.228.108.195", "141");
INSERT INTO `wp_gf_form_view` VALUES("28104", "1", "2016-03-29 16:09:48", "46.105.86.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("28105", "3", "2016-03-29 17:09:43", "157.55.39.134", "76");
INSERT INTO `wp_gf_form_view` VALUES("28106", "10", "2016-03-29 17:09:43", "157.55.39.134", "75");
INSERT INTO `wp_gf_form_view` VALUES("28107", "3", "2016-03-29 18:05:07", "157.55.39.113", "40");
INSERT INTO `wp_gf_form_view` VALUES("28108", "10", "2016-03-29 18:05:08", "157.55.39.113", "41");
INSERT INTO `wp_gf_form_view` VALUES("28109", "3", "2016-03-29 19:16:40", "96.50.86.78", "25");
INSERT INTO `wp_gf_form_view` VALUES("28110", "10", "2016-03-29 19:16:41", "96.50.86.78", "25");
INSERT INTO `wp_gf_form_view` VALUES("28111", "3", "2016-03-29 20:05:23", "51.255.65.51", "31");
INSERT INTO `wp_gf_form_view` VALUES("28112", "10", "2016-03-29 20:05:24", "51.255.65.51", "30");
INSERT INTO `wp_gf_form_view` VALUES("28113", "1", "2016-03-29 21:37:57", "172.245.113.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("28114", "3", "2016-03-29 21:37:58", "172.245.113.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("28115", "10", "2016-03-29 21:37:59", "172.245.113.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("28116", "3", "2016-03-29 22:00:11", "66.249.74.102", "43");
INSERT INTO `wp_gf_form_view` VALUES("28117", "10", "2016-03-29 22:00:11", "66.249.74.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("28118", "3", "2016-03-29 23:05:13", "157.55.39.113", "47");
INSERT INTO `wp_gf_form_view` VALUES("28119", "10", "2016-03-29 23:05:15", "157.55.39.113", "45");
INSERT INTO `wp_gf_form_view` VALUES("28120", "3", "2016-03-30 00:12:26", "51.255.65.63", "15");
INSERT INTO `wp_gf_form_view` VALUES("28121", "10", "2016-03-30 00:12:26", "51.255.65.63", "15");
INSERT INTO `wp_gf_form_view` VALUES("28122", "3", "2016-03-30 01:01:15", "46.119.127.4", "65");
INSERT INTO `wp_gf_form_view` VALUES("28123", "10", "2016-03-30 01:01:15", "46.119.127.4", "65");
INSERT INTO `wp_gf_form_view` VALUES("28124", "3", "2016-03-30 02:07:24", "66.249.74.104", "51");
INSERT INTO `wp_gf_form_view` VALUES("28125", "10", "2016-03-30 02:07:24", "66.249.74.104", "54");
INSERT INTO `wp_gf_form_view` VALUES("28126", "3", "2016-03-30 03:09:49", "51.255.65.2", "16");
INSERT INTO `wp_gf_form_view` VALUES("28127", "10", "2016-03-30 03:09:49", "51.255.65.2", "15");
INSERT INTO `wp_gf_form_view` VALUES("28128", "3", "2016-03-30 04:00:18", "96.50.73.183", "57");
INSERT INTO `wp_gf_form_view` VALUES("28129", "10", "2016-03-30 04:00:18", "96.50.73.183", "55");
INSERT INTO `wp_gf_form_view` VALUES("28130", "3", "2016-03-30 05:50:01", "141.8.143.242", "6");
INSERT INTO `wp_gf_form_view` VALUES("28131", "10", "2016-03-30 05:50:03", "141.8.143.242", "5");
INSERT INTO `wp_gf_form_view` VALUES("28132", "3", "2016-03-30 06:01:35", "66.249.74.104", "32");
INSERT INTO `wp_gf_form_view` VALUES("28133", "10", "2016-03-30 06:01:38", "66.249.74.104", "35");
INSERT INTO `wp_gf_form_view` VALUES("28134", "1", "2016-03-30 06:26:44", "23.104.184.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("28135", "3", "2016-03-30 07:20:10", "51.255.65.29", "36");
INSERT INTO `wp_gf_form_view` VALUES("28136", "10", "2016-03-30 07:51:18", "5.248.253.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("28137", "3", "2016-03-30 08:07:06", "66.249.74.106", "11");
INSERT INTO `wp_gf_form_view` VALUES("28138", "10", "2016-03-30 08:07:06", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("28139", "3", "2016-03-30 09:05:37", "89.35.198.83", "84");
INSERT INTO `wp_gf_form_view` VALUES("28140", "10", "2016-03-30 09:05:38", "89.35.198.83", "81");
INSERT INTO `wp_gf_form_view` VALUES("28141", "3", "2016-03-30 10:43:55", "216.45.57.147", "23");
INSERT INTO `wp_gf_form_view` VALUES("28142", "10", "2016-03-30 10:43:56", "216.45.57.147", "20");
INSERT INTO `wp_gf_form_view` VALUES("28143", "2", "2016-03-30 11:17:19", "104.223.38.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("28144", "3", "2016-03-30 11:17:20", "104.223.38.177", "26");
INSERT INTO `wp_gf_form_view` VALUES("28145", "10", "2016-03-30 11:17:20", "104.223.38.177", "25");
INSERT INTO `wp_gf_form_view` VALUES("28146", "3", "2016-03-30 12:24:02", "66.249.74.102", "57");
INSERT INTO `wp_gf_form_view` VALUES("28147", "10", "2016-03-30 12:24:02", "66.249.74.102", "55");
INSERT INTO `wp_gf_form_view` VALUES("28148", "1", "2016-03-30 12:39:47", "46.105.86.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("28149", "3", "2016-03-30 13:07:29", "51.255.65.57", "20");
INSERT INTO `wp_gf_form_view` VALUES("28150", "10", "2016-03-30 13:07:29", "51.255.65.57", "20");
INSERT INTO `wp_gf_form_view` VALUES("28151", "1", "2016-03-30 13:09:01", "5.231.30.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("28152", "3", "2016-03-30 14:21:31", "62.210.162.184", "75");
INSERT INTO `wp_gf_form_view` VALUES("28153", "10", "2016-03-30 14:21:31", "62.210.162.184", "75");
INSERT INTO `wp_gf_form_view` VALUES("28154", "3", "2016-03-30 15:06:31", "66.249.74.106", "52");
INSERT INTO `wp_gf_form_view` VALUES("28155", "10", "2016-03-30 15:06:31", "66.249.74.106", "53");
INSERT INTO `wp_gf_form_view` VALUES("28156", "1", "2016-03-30 15:58:15", "192.210.226.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("28157", "3", "2016-03-30 16:03:29", "80.254.150.79", "103");
INSERT INTO `wp_gf_form_view` VALUES("28158", "10", "2016-03-30 16:03:29", "80.254.150.79", "101");
INSERT INTO `wp_gf_form_view` VALUES("28159", "1", "2016-03-30 16:37:09", "188.214.50.150", "4");
INSERT INTO `wp_gf_form_view` VALUES("28160", "3", "2016-03-30 17:00:35", "64.180.72.205", "57");
INSERT INTO `wp_gf_form_view` VALUES("28161", "10", "2016-03-30 17:00:35", "64.180.72.205", "51");
INSERT INTO `wp_gf_form_view` VALUES("28162", "1", "2016-03-30 17:07:01", "207.34.170.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("28163", "3", "2016-03-30 18:09:19", "24.69.69.123", "35");
INSERT INTO `wp_gf_form_view` VALUES("28164", "10", "2016-03-30 18:09:20", "24.69.69.123", "35");
INSERT INTO `wp_gf_form_view` VALUES("28165", "1", "2016-03-30 18:25:43", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("28166", "3", "2016-03-30 19:21:29", "66.249.74.104", "31");
INSERT INTO `wp_gf_form_view` VALUES("28167", "10", "2016-03-30 19:21:29", "66.249.74.104", "32");
INSERT INTO `wp_gf_form_view` VALUES("28168", "1", "2016-03-30 20:06:27", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("28169", "3", "2016-03-30 20:06:28", "62.210.162.184", "46");
INSERT INTO `wp_gf_form_view` VALUES("28170", "10", "2016-03-30 20:06:28", "62.210.162.184", "48");
INSERT INTO `wp_gf_form_view` VALUES("28171", "3", "2016-03-30 21:00:50", "66.249.74.102", "45");
INSERT INTO `wp_gf_form_view` VALUES("28172", "10", "2016-03-30 21:00:50", "66.249.74.102", "46");
INSERT INTO `wp_gf_form_view` VALUES("28173", "7", "2016-03-30 21:37:54", "157.55.39.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("28174", "1", "2016-03-30 21:48:53", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("28175", "3", "2016-03-30 22:31:33", "134.87.160.8", "12");
INSERT INTO `wp_gf_form_view` VALUES("28176", "10", "2016-03-30 22:31:34", "134.87.160.8", "10");
INSERT INTO `wp_gf_form_view` VALUES("28177", "3", "2016-03-30 23:00:00", "134.87.160.8", "120");
INSERT INTO `wp_gf_form_view` VALUES("28178", "10", "2016-03-30 23:00:01", "134.87.160.8", "115");
INSERT INTO `wp_gf_form_view` VALUES("28179", "1", "2016-03-30 23:19:11", "46.105.86.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("28180", "3", "2016-03-31 00:19:33", "46.119.127.4", "358");
INSERT INTO `wp_gf_form_view` VALUES("28181", "10", "2016-03-31 00:19:33", "46.119.127.4", "349");
INSERT INTO `wp_gf_form_view` VALUES("28182", "9", "2016-03-31 00:27:38", "157.55.39.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("28183", "1", "2016-03-31 00:28:46", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("28184", "3", "2016-03-31 01:01:23", "46.119.117.207", "90");
INSERT INTO `wp_gf_form_view` VALUES("28185", "10", "2016-03-31 01:01:23", "46.119.117.207", "90");
INSERT INTO `wp_gf_form_view` VALUES("28186", "3", "2016-03-31 02:16:53", "157.55.39.134", "115");
INSERT INTO `wp_gf_form_view` VALUES("28187", "10", "2016-03-31 02:16:53", "157.55.39.134", "115");
INSERT INTO `wp_gf_form_view` VALUES("28188", "3", "2016-03-31 03:10:25", "173.169.34.241", "30");
INSERT INTO `wp_gf_form_view` VALUES("28189", "10", "2016-03-31 03:10:25", "173.169.34.241", "38");
INSERT INTO `wp_gf_form_view` VALUES("28190", "2", "2016-03-31 04:02:29", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("28191", "3", "2016-03-31 04:02:29", "66.249.74.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("28192", "10", "2016-03-31 04:02:29", "66.249.74.104", "26");
INSERT INTO `wp_gf_form_view` VALUES("28193", "3", "2016-03-31 05:46:07", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("28194", "10", "2016-03-31 05:46:08", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("28195", "3", "2016-03-31 06:03:45", "202.46.57.124", "11");
INSERT INTO `wp_gf_form_view` VALUES("28196", "10", "2016-03-31 06:03:45", "202.46.57.124", "10");
INSERT INTO `wp_gf_form_view` VALUES("28197", "10", "2016-03-31 07:02:40", "66.249.74.104", "46");
INSERT INTO `wp_gf_form_view` VALUES("28198", "3", "2016-03-31 07:02:43", "66.249.74.104", "36");
INSERT INTO `wp_gf_form_view` VALUES("28199", "8", "2016-03-31 07:08:32", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("28200", "3", "2016-03-31 08:28:41", "68.180.229.244", "11");
INSERT INTO `wp_gf_form_view` VALUES("28201", "10", "2016-03-31 08:28:42", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("28202", "3", "2016-03-31 09:55:35", "51.255.65.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("28203", "10", "2016-03-31 09:55:36", "51.255.65.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("28204", "3", "2016-03-31 10:12:53", "164.132.161.91", "16");
INSERT INTO `wp_gf_form_view` VALUES("28205", "10", "2016-03-31 10:12:53", "164.132.161.91", "15");
INSERT INTO `wp_gf_form_view` VALUES("28206", "3", "2016-03-31 11:28:00", "157.55.39.138", "23");
INSERT INTO `wp_gf_form_view` VALUES("28207", "10", "2016-03-31 11:28:01", "157.55.39.138", "20");
INSERT INTO `wp_gf_form_view` VALUES("28208", "1", "2016-03-31 11:53:36", "192.99.166.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("28209", "3", "2016-03-31 12:27:02", "157.55.39.215", "18");
INSERT INTO `wp_gf_form_view` VALUES("28210", "10", "2016-03-31 12:27:03", "157.55.39.215", "15");
INSERT INTO `wp_gf_form_view` VALUES("28211", "3", "2016-03-31 13:41:52", "202.46.57.183", "16");
INSERT INTO `wp_gf_form_view` VALUES("28212", "10", "2016-03-31 13:41:53", "202.46.57.183", "15");
INSERT INTO `wp_gf_form_view` VALUES("28213", "2", "2016-03-31 13:58:14", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("28214", "3", "2016-03-31 14:25:28", "157.55.39.113", "42");
INSERT INTO `wp_gf_form_view` VALUES("28215", "10", "2016-03-31 14:25:30", "157.55.39.113", "40");
INSERT INTO `wp_gf_form_view` VALUES("28216", "6", "2016-03-31 15:41:29", "66.249.74.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("28217", "3", "2016-03-31 15:41:30", "66.249.74.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("28218", "10", "2016-03-31 15:41:30", "66.249.74.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("28219", "9", "2016-03-31 16:01:30", "114.98.247.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("28220", "3", "2016-03-31 16:01:30", "114.98.247.234", "35");
INSERT INTO `wp_gf_form_view` VALUES("28221", "10", "2016-03-31 16:01:30", "114.98.247.234", "35");
INSERT INTO `wp_gf_form_view` VALUES("28222", "3", "2016-03-31 17:08:39", "207.194.133.9", "61");
INSERT INTO `wp_gf_form_view` VALUES("28223", "10", "2016-03-31 17:08:40", "207.194.133.9", "64");
INSERT INTO `wp_gf_form_view` VALUES("28224", "9", "2016-03-31 17:30:05", "66.249.74.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("28225", "2", "2016-03-31 17:31:13", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("28226", "3", "2016-03-31 18:18:34", "207.164.20.42", "47");
INSERT INTO `wp_gf_form_view` VALUES("28227", "10", "2016-03-31 18:18:35", "207.164.20.42", "47");
INSERT INTO `wp_gf_form_view` VALUES("28228", "3", "2016-03-31 19:02:48", "157.55.39.142", "44");
INSERT INTO `wp_gf_form_view` VALUES("28229", "10", "2016-03-31 19:02:49", "157.55.39.142", "40");
INSERT INTO `wp_gf_form_view` VALUES("28230", "3", "2016-03-31 20:05:09", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28231", "10", "2016-03-31 20:05:09", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("28232", "3", "2016-03-31 21:08:40", "68.180.229.244", "106");
INSERT INTO `wp_gf_form_view` VALUES("28233", "10", "2016-03-31 21:08:40", "68.180.229.244", "100");
INSERT INTO `wp_gf_form_view` VALUES("28234", "1", "2016-03-31 21:44:14", "207.46.13.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("28235", "1", "2016-03-31 22:03:43", "107.150.79.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("28236", "3", "2016-03-31 22:03:44", "107.150.79.176", "48");
INSERT INTO `wp_gf_form_view` VALUES("28237", "10", "2016-03-31 22:03:44", "107.150.79.176", "45");
INSERT INTO `wp_gf_form_view` VALUES("28238", "3", "2016-03-31 23:22:28", "5.248.253.133", "39");
INSERT INTO `wp_gf_form_view` VALUES("28239", "3", "2016-03-31 23:22:28", "5.248.253.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("28240", "10", "2016-03-31 23:22:29", "5.248.253.133", "40");
INSERT INTO `wp_gf_form_view` VALUES("28241", "10", "2016-04-01 00:15:58", "199.16.156.126", "41");
INSERT INTO `wp_gf_form_view` VALUES("28242", "3", "2016-04-01 00:15:58", "199.16.156.126", "42");
INSERT INTO `wp_gf_form_view` VALUES("28243", "1", "2016-04-01 00:41:13", "46.105.86.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("28244", "3", "2016-04-01 01:19:40", "154.20.232.23", "15");
INSERT INTO `wp_gf_form_view` VALUES("28245", "10", "2016-04-01 01:19:40", "154.20.232.23", "16");
INSERT INTO `wp_gf_form_view` VALUES("28246", "3", "2016-04-01 02:00:32", "151.80.31.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("28247", "10", "2016-04-01 02:00:33", "151.80.31.102", "40");
INSERT INTO `wp_gf_form_view` VALUES("28248", "3", "2016-04-01 03:00:28", "77.75.76.167", "301");
INSERT INTO `wp_gf_form_view` VALUES("28249", "10", "2016-04-01 03:00:29", "77.75.76.167", "281");
INSERT INTO `wp_gf_form_view` VALUES("28250", "2", "2016-04-01 03:08:46", "144.76.80.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("28251", "6", "2016-04-01 03:13:25", "157.55.39.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("28252", "9", "2016-04-01 03:13:33", "157.55.39.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("28253", "7", "2016-04-01 03:34:25", "157.55.39.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("28254", "3", "2016-04-01 04:03:57", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("28255", "10", "2016-04-01 04:03:57", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("28256", "3", "2016-04-01 05:21:48", "104.223.17.229", "37");
INSERT INTO `wp_gf_form_view` VALUES("28257", "10", "2016-04-01 05:21:49", "104.223.17.229", "35");
INSERT INTO `wp_gf_form_view` VALUES("28258", "3", "2016-04-01 06:10:24", "79.6.137.67", "177");
INSERT INTO `wp_gf_form_view` VALUES("28259", "10", "2016-04-01 06:10:25", "79.6.137.67", "175");
INSERT INTO `wp_gf_form_view` VALUES("28260", "2", "2016-04-01 06:11:21", "79.6.137.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("28261", "3", "2016-04-01 07:35:50", "202.46.55.147", "6");
INSERT INTO `wp_gf_form_view` VALUES("28262", "10", "2016-04-01 07:35:51", "202.46.55.147", "5");
INSERT INTO `wp_gf_form_view` VALUES("28263", "3", "2016-04-01 08:03:08", "157.55.39.204", "37");
INSERT INTO `wp_gf_form_view` VALUES("28264", "10", "2016-04-01 08:03:08", "157.55.39.204", "35");
INSERT INTO `wp_gf_form_view` VALUES("28265", "1", "2016-04-01 08:48:17", "46.105.86.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("28266", "3", "2016-04-01 09:00:52", "188.42.240.119", "45");
INSERT INTO `wp_gf_form_view` VALUES("28267", "10", "2016-04-01 09:00:52", "188.42.240.119", "46");
INSERT INTO `wp_gf_form_view` VALUES("28268", "2", "2016-04-01 10:46:54", "40.77.167.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("28269", "3", "2016-04-01 10:46:56", "40.77.167.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("28270", "10", "2016-04-01 10:46:56", "40.77.167.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("28271", "3", "2016-04-01 12:02:00", "68.180.229.244", "109");
INSERT INTO `wp_gf_form_view` VALUES("28272", "10", "2016-04-01 12:02:01", "68.180.229.244", "101");
INSERT INTO `wp_gf_form_view` VALUES("28273", "3", "2016-04-01 13:09:40", "68.180.229.244", "23");
INSERT INTO `wp_gf_form_view` VALUES("28274", "10", "2016-04-01 13:09:40", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("28275", "1", "2016-04-01 14:30:56", "46.105.86.213", "4");
INSERT INTO `wp_gf_form_view` VALUES("28276", "3", "2016-04-01 14:30:57", "46.105.86.213", "80");
INSERT INTO `wp_gf_form_view` VALUES("28277", "10", "2016-04-01 14:30:58", "46.105.86.213", "75");
INSERT INTO `wp_gf_form_view` VALUES("28278", "10", "2016-04-01 15:39:35", "207.194.133.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("28279", "3", "2016-04-01 15:39:37", "207.194.133.9", "10");
INSERT INTO `wp_gf_form_view` VALUES("28280", "3", "2016-04-01 16:25:22", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("28281", "10", "2016-04-01 16:25:22", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("28282", "3", "2016-04-01 17:01:53", "66.249.74.102", "30");
INSERT INTO `wp_gf_form_view` VALUES("28283", "10", "2016-04-01 17:01:53", "66.249.74.102", "30");
INSERT INTO `wp_gf_form_view` VALUES("28284", "3", "2016-04-01 18:27:59", "66.249.74.104", "71");
INSERT INTO `wp_gf_form_view` VALUES("28285", "10", "2016-04-01 18:28:00", "66.249.74.104", "70");
INSERT INTO `wp_gf_form_view` VALUES("28286", "3", "2016-04-01 19:07:07", "64.114.199.100", "17");
INSERT INTO `wp_gf_form_view` VALUES("28287", "10", "2016-04-01 19:07:07", "64.114.199.100", "20");
INSERT INTO `wp_gf_form_view` VALUES("28288", "10", "2016-04-01 20:05:52", "207.194.133.9", "81");
INSERT INTO `wp_gf_form_view` VALUES("28289", "3", "2016-04-01 20:05:52", "207.194.133.9", "83");
INSERT INTO `wp_gf_form_view` VALUES("28290", "3", "2016-04-01 21:07:59", "80.254.150.79", "78");
INSERT INTO `wp_gf_form_view` VALUES("28291", "10", "2016-04-01 21:08:00", "80.254.150.79", "75");
INSERT INTO `wp_gf_form_view` VALUES("28292", "3", "2016-04-01 22:04:46", "62.210.162.184", "93");
INSERT INTO `wp_gf_form_view` VALUES("28293", "10", "2016-04-01 22:04:46", "62.210.162.184", "92");
INSERT INTO `wp_gf_form_view` VALUES("28294", "3", "2016-04-01 23:14:26", "66.249.74.106", "57");
INSERT INTO `wp_gf_form_view` VALUES("28295", "10", "2016-04-01 23:14:32", "66.249.74.106", "55");
INSERT INTO `wp_gf_form_view` VALUES("28296", "1", "2016-04-01 23:20:40", "5.175.201.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("28297", "3", "2016-04-02 00:17:17", "220.181.108.86", "37");
INSERT INTO `wp_gf_form_view` VALUES("28298", "10", "2016-04-02 00:17:17", "220.181.108.86", "30");
INSERT INTO `wp_gf_form_view` VALUES("28299", "3", "2016-04-02 01:05:10", "66.249.74.106", "35");
INSERT INTO `wp_gf_form_view` VALUES("28300", "10", "2016-04-02 01:05:10", "66.249.74.106", "35");
INSERT INTO `wp_gf_form_view` VALUES("28301", "3", "2016-04-02 02:00:51", "62.210.162.184", "133");
INSERT INTO `wp_gf_form_view` VALUES("28302", "10", "2016-04-02 02:00:51", "62.210.162.184", "131");
INSERT INTO `wp_gf_form_view` VALUES("28303", "2", "2016-04-02 02:11:57", "86.57.167.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("28304", "3", "2016-04-02 03:25:03", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("28305", "10", "2016-04-02 03:25:04", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28306", "3", "2016-04-02 04:00:10", "164.132.161.44", "26");
INSERT INTO `wp_gf_form_view` VALUES("28307", "10", "2016-04-02 04:00:10", "164.132.161.44", "21");
INSERT INTO `wp_gf_form_view` VALUES("28308", "3", "2016-04-02 05:13:33", "108.180.119.203", "36");
INSERT INTO `wp_gf_form_view` VALUES("28309", "10", "2016-04-02 05:13:33", "108.180.119.203", "27");
INSERT INTO `wp_gf_form_view` VALUES("28310", "3", "2016-04-02 06:18:44", "40.77.167.39", "31");
INSERT INTO `wp_gf_form_view` VALUES("28311", "10", "2016-04-02 06:18:45", "40.77.167.39", "30");
INSERT INTO `wp_gf_form_view` VALUES("28312", "8", "2016-04-02 06:19:34", "202.46.51.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("28313", "1", "2016-04-02 06:41:50", "46.105.86.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("28314", "3", "2016-04-02 07:26:14", "51.255.65.59", "126");
INSERT INTO `wp_gf_form_view` VALUES("28315", "10", "2016-04-02 07:26:15", "51.255.65.59", "125");
INSERT INTO `wp_gf_form_view` VALUES("28316", "3", "2016-04-02 08:03:59", "40.77.167.77", "56");
INSERT INTO `wp_gf_form_view` VALUES("28317", "10", "2016-04-02 08:03:59", "40.77.167.77", "50");
INSERT INTO `wp_gf_form_view` VALUES("28318", "5", "2016-04-02 08:47:16", "164.132.161.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("28319", "3", "2016-04-02 09:02:40", "66.249.74.104", "56");
INSERT INTO `wp_gf_form_view` VALUES("28320", "10", "2016-04-02 09:02:40", "66.249.74.104", "55");
INSERT INTO `wp_gf_form_view` VALUES("28321", "3", "2016-04-02 11:17:32", "202.46.58.186", "6");
INSERT INTO `wp_gf_form_view` VALUES("28322", "10", "2016-04-02 11:17:34", "202.46.58.186", "5");
INSERT INTO `wp_gf_form_view` VALUES("28323", "3", "2016-04-02 12:17:20", "114.97.197.156", "65");
INSERT INTO `wp_gf_form_view` VALUES("28324", "10", "2016-04-02 12:17:20", "114.97.197.156", "60");
INSERT INTO `wp_gf_form_view` VALUES("28325", "1", "2016-04-02 12:31:51", "46.105.86.213", "4");
INSERT INTO `wp_gf_form_view` VALUES("28326", "3", "2016-04-02 13:16:40", "68.180.229.244", "67");
INSERT INTO `wp_gf_form_view` VALUES("28327", "10", "2016-04-02 13:16:41", "68.180.229.244", "60");
INSERT INTO `wp_gf_form_view` VALUES("28328", "3", "2016-04-02 14:03:12", "157.55.39.164", "25");
INSERT INTO `wp_gf_form_view` VALUES("28329", "10", "2016-04-02 14:03:12", "157.55.39.164", "25");
INSERT INTO `wp_gf_form_view` VALUES("28330", "8", "2016-04-02 14:59:05", "66.249.74.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("28331", "1", "2016-04-02 15:14:17", "46.105.86.213", "5");
INSERT INTO `wp_gf_form_view` VALUES("28332", "3", "2016-04-02 15:14:17", "46.105.86.213", "129");
INSERT INTO `wp_gf_form_view` VALUES("28333", "10", "2016-04-02 15:14:18", "46.105.86.213", "125");
INSERT INTO `wp_gf_form_view` VALUES("28334", "3", "2016-04-02 16:06:40", "207.46.13.35", "10");
INSERT INTO `wp_gf_form_view` VALUES("28335", "10", "2016-04-02 16:06:41", "207.46.13.35", "10");
INSERT INTO `wp_gf_form_view` VALUES("28336", "3", "2016-04-02 17:09:58", "108.180.31.157", "40");
INSERT INTO `wp_gf_form_view` VALUES("28337", "10", "2016-04-02 17:09:58", "108.180.31.157", "40");
INSERT INTO `wp_gf_form_view` VALUES("28338", "3", "2016-04-02 18:00:34", "66.249.74.102", "31");
INSERT INTO `wp_gf_form_view` VALUES("28339", "10", "2016-04-02 18:00:34", "66.249.74.102", "30");
INSERT INTO `wp_gf_form_view` VALUES("28340", "3", "2016-04-02 19:11:57", "164.132.161.35", "46");
INSERT INTO `wp_gf_form_view` VALUES("28341", "10", "2016-04-02 19:11:57", "164.132.161.35", "45");
INSERT INTO `wp_gf_form_view` VALUES("28342", "3", "2016-04-02 20:01:57", "220.250.25.130", "88");
INSERT INTO `wp_gf_form_view` VALUES("28343", "10", "2016-04-02 20:01:57", "220.250.25.130", "86");
INSERT INTO `wp_gf_form_view` VALUES("28344", "3", "2016-04-02 21:28:54", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28345", "10", "2016-04-02 21:28:56", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28346", "3", "2016-04-02 22:23:48", "66.249.74.106", "16");
INSERT INTO `wp_gf_form_view` VALUES("28347", "10", "2016-04-02 22:23:51", "66.249.74.106", "17");
INSERT INTO `wp_gf_form_view` VALUES("28348", "3", "2016-04-02 23:19:24", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("28349", "10", "2016-04-02 23:19:25", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("28350", "3", "2016-04-03 00:25:08", "68.180.229.244", "27");
INSERT INTO `wp_gf_form_view` VALUES("28351", "2", "2016-04-03 00:31:18", "213.5.70.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("28352", "10", "2016-04-03 00:31:18", "213.5.70.236", "25");
INSERT INTO `wp_gf_form_view` VALUES("28353", "3", "2016-04-03 01:01:36", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("28354", "10", "2016-04-03 01:01:36", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("28355", "3", "2016-04-03 02:29:27", "66.249.74.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("28356", "10", "2016-04-03 02:29:27", "66.249.74.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("28357", "1", "2016-04-03 02:43:20", "164.132.161.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("28358", "9", "2016-04-03 03:24:15", "89.44.43.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("28359", "3", "2016-04-03 03:24:16", "89.44.43.125", "35");
INSERT INTO `wp_gf_form_view` VALUES("28360", "10", "2016-04-03 03:24:16", "89.44.43.125", "35");
INSERT INTO `wp_gf_form_view` VALUES("28361", "3", "2016-04-03 04:19:39", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("28362", "10", "2016-04-03 04:19:40", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("28363", "3", "2016-04-03 05:20:30", "51.255.65.74", "71");
INSERT INTO `wp_gf_form_view` VALUES("28364", "10", "2016-04-03 05:20:30", "51.255.65.74", "70");
INSERT INTO `wp_gf_form_view` VALUES("28365", "9", "2016-04-03 06:34:14", "104.223.17.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("28366", "3", "2016-04-03 06:34:15", "104.223.17.229", "21");
INSERT INTO `wp_gf_form_view` VALUES("28367", "10", "2016-04-03 06:34:15", "104.223.17.229", "21");
INSERT INTO `wp_gf_form_view` VALUES("28368", "3", "2016-04-03 08:03:54", "68.180.229.244", "22");
INSERT INTO `wp_gf_form_view` VALUES("28369", "10", "2016-04-03 08:15:35", "51.255.65.16", "20");
INSERT INTO `wp_gf_form_view` VALUES("28370", "2", "2016-04-03 09:10:14", "216.45.60.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("28371", "3", "2016-04-03 09:10:15", "216.45.60.53", "30");
INSERT INTO `wp_gf_form_view` VALUES("28372", "10", "2016-04-03 09:10:15", "216.45.60.53", "30");
INSERT INTO `wp_gf_form_view` VALUES("28373", "3", "2016-04-03 10:15:47", "51.255.65.97", "10");
INSERT INTO `wp_gf_form_view` VALUES("28374", "10", "2016-04-03 10:15:49", "51.255.65.97", "10");
INSERT INTO `wp_gf_form_view` VALUES("28375", "1", "2016-04-03 10:34:39", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("28376", "3", "2016-04-03 12:00:01", "207.46.13.132", "25");
INSERT INTO `wp_gf_form_view` VALUES("28377", "10", "2016-04-03 12:00:02", "207.46.13.132", "26");
INSERT INTO `wp_gf_form_view` VALUES("28378", "3", "2016-04-03 13:06:27", "104.223.38.171", "27");
INSERT INTO `wp_gf_form_view` VALUES("28379", "10", "2016-04-03 13:06:28", "104.223.38.171", "26");
INSERT INTO `wp_gf_form_view` VALUES("28380", "3", "2016-04-03 14:02:27", "66.249.74.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("28381", "10", "2016-04-03 14:02:27", "66.249.74.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("28382", "3", "2016-04-03 15:16:05", "109.86.72.191", "35");
INSERT INTO `wp_gf_form_view` VALUES("28383", "10", "2016-04-03 15:16:06", "109.86.72.191", "35");
INSERT INTO `wp_gf_form_view` VALUES("28384", "9", "2016-04-03 15:43:38", "207.46.13.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("28385", "9", "2016-04-03 16:03:31", "114.98.227.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("28386", "3", "2016-04-03 16:03:31", "114.98.227.173", "40");
INSERT INTO `wp_gf_form_view` VALUES("28387", "10", "2016-04-03 16:03:31", "114.98.227.173", "40");
INSERT INTO `wp_gf_form_view` VALUES("28388", "10", "2016-04-03 17:10:24", "100.43.91.26", "57");
INSERT INTO `wp_gf_form_view` VALUES("28389", "3", "2016-04-03 17:10:26", "100.43.91.26", "56");
INSERT INTO `wp_gf_form_view` VALUES("28390", "8", "2016-04-03 17:35:46", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("28391", "3", "2016-04-03 18:22:42", "207.46.13.132", "36");
INSERT INTO `wp_gf_form_view` VALUES("28392", "10", "2016-04-03 18:22:43", "207.46.13.132", "35");
INSERT INTO `wp_gf_form_view` VALUES("28393", "1", "2016-04-03 19:24:04", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("28394", "3", "2016-04-03 19:24:05", "192.99.166.236", "26");
INSERT INTO `wp_gf_form_view` VALUES("28395", "10", "2016-04-03 19:24:05", "192.99.166.236", "25");
INSERT INTO `wp_gf_form_view` VALUES("28396", "3", "2016-04-03 20:18:09", "96.50.68.167", "31");
INSERT INTO `wp_gf_form_view` VALUES("28397", "10", "2016-04-03 20:18:09", "96.50.68.167", "30");
INSERT INTO `wp_gf_form_view` VALUES("28398", "3", "2016-04-03 21:12:04", "114.98.227.173", "15");
INSERT INTO `wp_gf_form_view` VALUES("28399", "10", "2016-04-03 21:12:04", "114.98.227.173", "15");
INSERT INTO `wp_gf_form_view` VALUES("28400", "3", "2016-04-03 22:16:31", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("28401", "10", "2016-04-03 22:16:32", "66.249.74.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("28402", "3", "2016-04-03 23:13:56", "202.46.53.120", "32");
INSERT INTO `wp_gf_form_view` VALUES("28403", "10", "2016-04-03 23:13:56", "202.46.53.120", "30");
INSERT INTO `wp_gf_form_view` VALUES("28404", "3", "2016-04-04 00:23:36", "142.4.218.201", "10");
INSERT INTO `wp_gf_form_view` VALUES("28405", "10", "2016-04-04 00:23:37", "142.4.218.201", "10");
INSERT INTO `wp_gf_form_view` VALUES("28406", "3", "2016-04-04 01:18:33", "142.4.218.201", "12");
INSERT INTO `wp_gf_form_view` VALUES("28407", "10", "2016-04-04 01:18:33", "142.4.218.201", "11");
INSERT INTO `wp_gf_form_view` VALUES("28408", "3", "2016-04-04 02:09:46", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("28409", "10", "2016-04-04 02:09:46", "66.249.74.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("28410", "3", "2016-04-04 03:02:07", "157.55.39.133", "334");
INSERT INTO `wp_gf_form_view` VALUES("28411", "10", "2016-04-04 03:02:07", "157.55.39.133", "334");
INSERT INTO `wp_gf_form_view` VALUES("28412", "9", "2016-04-04 03:53:34", "207.46.13.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("28413", "1", "2016-04-04 03:53:49", "207.46.13.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("28414", "2", "2016-04-04 04:03:37", "142.4.218.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("28415", "3", "2016-04-04 04:03:37", "142.4.218.201", "65");
INSERT INTO `wp_gf_form_view` VALUES("28416", "10", "2016-04-04 04:03:37", "142.4.218.201", "65");
INSERT INTO `wp_gf_form_view` VALUES("28417", "3", "2016-04-04 05:01:22", "164.132.161.2", "171");
INSERT INTO `wp_gf_form_view` VALUES("28418", "10", "2016-04-04 05:01:23", "164.132.161.2", "171");
INSERT INTO `wp_gf_form_view` VALUES("28419", "2", "2016-04-04 05:57:25", "64.251.182.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("28420", "3", "2016-04-04 06:02:27", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("28421", "10", "2016-04-04 06:02:27", "66.249.74.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("28422", "3", "2016-04-04 07:06:42", "157.55.39.13", "30");
INSERT INTO `wp_gf_form_view` VALUES("28423", "10", "2016-04-04 07:06:42", "157.55.39.13", "30");
INSERT INTO `wp_gf_form_view` VALUES("28424", "3", "2016-04-04 08:21:16", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28425", "10", "2016-04-04 08:21:16", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28426", "3", "2016-04-04 09:49:29", "46.119.118.112", "181");
INSERT INTO `wp_gf_form_view` VALUES("28427", "3", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("28428", "3", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("28429", "3", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("28430", "3", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("28431", "10", "2016-04-04 09:49:29", "46.119.118.112", "183");
INSERT INTO `wp_gf_form_view` VALUES("28432", "10", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("28433", "10", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("28434", "3", "2016-04-04 10:02:05", "207.46.13.176", "16");
INSERT INTO `wp_gf_form_view` VALUES("28435", "10", "2016-04-04 10:02:05", "207.46.13.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("28436", "3", "2016-04-04 11:01:22", "109.86.72.191", "263");
INSERT INTO `wp_gf_form_view` VALUES("28437", "10", "2016-04-04 11:01:23", "109.86.72.191", "255");
INSERT INTO `wp_gf_form_view` VALUES("28438", "1", "2016-04-04 11:08:29", "62.210.84.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("28439", "2", "2016-04-04 11:39:30", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("28440", "3", "2016-04-04 12:44:28", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("28441", "10", "2016-04-04 12:44:29", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("28442", "3", "2016-04-04 13:25:34", "202.46.53.176", "68");
INSERT INTO `wp_gf_form_view` VALUES("28443", "10", "2016-04-04 13:25:34", "202.46.53.176", "65");
INSERT INTO `wp_gf_form_view` VALUES("28444", "1", "2016-04-04 13:43:37", "62.210.84.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("28445", "3", "2016-04-04 14:05:29", "114.98.227.173", "21");
INSERT INTO `wp_gf_form_view` VALUES("28446", "10", "2016-04-04 14:05:29", "114.98.227.173", "20");
INSERT INTO `wp_gf_form_view` VALUES("28447", "3", "2016-04-04 15:15:17", "109.86.72.191", "46");
INSERT INTO `wp_gf_form_view` VALUES("28448", "10", "2016-04-04 15:15:17", "109.86.72.191", "45");
INSERT INTO `wp_gf_form_view` VALUES("28449", "10", "2016-04-04 16:01:41", "24.108.147.59", "62");
INSERT INTO `wp_gf_form_view` VALUES("28450", "3", "2016-04-04 16:01:41", "24.108.147.59", "56");
INSERT INTO `wp_gf_form_view` VALUES("28451", "3", "2016-04-04 17:02:20", "184.66.235.100", "46");
INSERT INTO `wp_gf_form_view` VALUES("28452", "10", "2016-04-04 17:02:20", "184.66.235.100", "45");
INSERT INTO `wp_gf_form_view` VALUES("28453", "1", "2016-04-04 17:08:56", "184.71.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("28454", "3", "2016-04-04 18:21:55", "24.244.23.174", "45");
INSERT INTO `wp_gf_form_view` VALUES("28455", "10", "2016-04-04 18:22:02", "24.244.23.174", "45");
INSERT INTO `wp_gf_form_view` VALUES("28456", "10", "2016-04-04 19:12:03", "164.132.161.33", "103");
INSERT INTO `wp_gf_form_view` VALUES("28457", "3", "2016-04-04 19:12:04", "164.132.161.33", "106");
INSERT INTO `wp_gf_form_view` VALUES("28458", "10", "2016-04-04 20:21:04", "68.180.229.244", "23");
INSERT INTO `wp_gf_form_view` VALUES("28459", "3", "2016-04-04 20:21:07", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28460", "3", "2016-04-04 21:01:16", "24.68.41.139", "45");
INSERT INTO `wp_gf_form_view` VALUES("28461", "10", "2016-04-04 21:01:16", "24.68.41.139", "45");
INSERT INTO `wp_gf_form_view` VALUES("28462", "3", "2016-04-04 22:03:32", "220.181.108.115", "47");
INSERT INTO `wp_gf_form_view` VALUES("28463", "10", "2016-04-04 22:03:32", "220.181.108.115", "45");
INSERT INTO `wp_gf_form_view` VALUES("28464", "3", "2016-04-04 23:00:14", "62.210.162.184", "18");
INSERT INTO `wp_gf_form_view` VALUES("28465", "10", "2016-04-04 23:00:14", "62.210.162.184", "15");
INSERT INTO `wp_gf_form_view` VALUES("28466", "3", "2016-04-05 00:01:41", "46.119.123.199", "63");
INSERT INTO `wp_gf_form_view` VALUES("28467", "10", "2016-04-05 00:01:41", "46.119.123.199", "60");
INSERT INTO `wp_gf_form_view` VALUES("28468", "3", "2016-04-05 01:01:51", "114.97.48.8", "338");
INSERT INTO `wp_gf_form_view` VALUES("28469", "10", "2016-04-05 01:01:51", "114.97.48.8", "335");
INSERT INTO `wp_gf_form_view` VALUES("28470", "8", "2016-04-05 01:05:29", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("28471", "2", "2016-04-05 01:43:16", "70.183.228.32", "2");
INSERT INTO `wp_gf_form_view` VALUES("28472", "3", "2016-04-05 02:12:52", "46.118.157.172", "40");
INSERT INTO `wp_gf_form_view` VALUES("28473", "10", "2016-04-05 02:12:52", "46.118.157.172", "40");
INSERT INTO `wp_gf_form_view` VALUES("28474", "3", "2016-04-05 03:23:02", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28475", "10", "2016-04-05 03:23:02", "68.180.229.244", "17");
INSERT INTO `wp_gf_form_view` VALUES("28476", "3", "2016-04-05 04:00:11", "151.80.31.109", "35");
INSERT INTO `wp_gf_form_view` VALUES("28477", "10", "2016-04-05 04:00:12", "151.80.31.109", "35");
INSERT INTO `wp_gf_form_view` VALUES("28478", "1", "2016-04-05 04:19:35", "212.129.5.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("28479", "6", "2016-04-05 04:49:51", "66.249.79.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("28480", "8", "2016-04-05 04:55:29", "202.46.52.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("28481", "10", "2016-04-05 05:10:50", "199.21.99.202", "11");
INSERT INTO `wp_gf_form_view` VALUES("28482", "3", "2016-04-05 05:10:50", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("28483", "10", "2016-04-05 06:00:38", "173.252.122.122", "11");
INSERT INTO `wp_gf_form_view` VALUES("28484", "3", "2016-04-05 06:00:47", "173.252.122.122", "10");
INSERT INTO `wp_gf_form_view` VALUES("28485", "3", "2016-04-05 07:23:16", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("28486", "3", "2016-04-05 08:02:39", "202.46.50.185", "22");
INSERT INTO `wp_gf_form_view` VALUES("28487", "10", "2016-04-05 08:02:40", "202.46.50.185", "20");
INSERT INTO `wp_gf_form_view` VALUES("28488", "3", "2016-04-05 09:01:19", "151.80.31.178", "17");
INSERT INTO `wp_gf_form_view` VALUES("28489", "10", "2016-04-05 09:11:27", "164.132.161.38", "15");
INSERT INTO `wp_gf_form_view` VALUES("28490", "3", "2016-04-05 10:03:05", "66.249.79.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("28491", "10", "2016-04-05 10:03:05", "66.249.79.104", "15");
INSERT INTO `wp_gf_form_view` VALUES("28492", "3", "2016-04-05 11:36:00", "192.240.106.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("28493", "10", "2016-04-05 11:36:00", "192.240.106.138", "10");
INSERT INTO `wp_gf_form_view` VALUES("28494", "3", "2016-04-05 12:14:06", "77.75.77.17", "36");
INSERT INTO `wp_gf_form_view` VALUES("28495", "10", "2016-04-05 12:14:06", "77.75.77.17", "35");
INSERT INTO `wp_gf_form_view` VALUES("28496", "1", "2016-04-05 13:01:29", "188.214.14.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("28497", "3", "2016-04-05 13:01:30", "188.214.14.74", "21");
INSERT INTO `wp_gf_form_view` VALUES("28498", "10", "2016-04-05 13:01:30", "188.214.14.74", "20");
INSERT INTO `wp_gf_form_view` VALUES("28499", "3", "2016-04-05 14:12:20", "75.154.238.64", "149");
INSERT INTO `wp_gf_form_view` VALUES("28500", "10", "2016-04-05 14:12:21", "75.154.238.64", "153");
INSERT INTO `wp_gf_form_view` VALUES("28501", "2", "2016-04-05 14:53:49", "104.236.194.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("28502", "3", "2016-04-05 15:06:00", "46.119.123.199", "96");
INSERT INTO `wp_gf_form_view` VALUES("28503", "10", "2016-04-05 15:06:00", "46.119.123.199", "98");
INSERT INTO `wp_gf_form_view` VALUES("28504", "3", "2016-04-05 16:06:27", "77.75.79.36", "37");
INSERT INTO `wp_gf_form_view` VALUES("28505", "10", "2016-04-05 16:06:28", "77.75.79.36", "35");
INSERT INTO `wp_gf_form_view` VALUES("28506", "3", "2016-04-05 17:02:43", "216.232.155.66", "212");
INSERT INTO `wp_gf_form_view` VALUES("28507", "10", "2016-04-05 17:02:43", "216.232.155.66", "210");
INSERT INTO `wp_gf_form_view` VALUES("28508", "2", "2016-04-05 17:16:52", "69.58.178.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("28509", "3", "2016-04-05 18:10:18", "66.249.79.106", "25");
INSERT INTO `wp_gf_form_view` VALUES("28510", "10", "2016-04-05 18:10:18", "66.249.79.106", "27");
INSERT INTO `wp_gf_form_view` VALUES("28511", "3", "2016-04-05 19:07:52", "24.69.68.204", "66");
INSERT INTO `wp_gf_form_view` VALUES("28512", "10", "2016-04-05 19:07:52", "24.69.68.204", "66");
INSERT INTO `wp_gf_form_view` VALUES("28513", "3", "2016-04-05 21:01:56", "64.114.222.222", "197");
INSERT INTO `wp_gf_form_view` VALUES("28514", "10", "2016-04-05 21:01:56", "64.114.222.222", "195");
INSERT INTO `wp_gf_form_view` VALUES("28515", "2", "2016-04-05 21:39:02", "71.43.100.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("28516", "3", "2016-04-05 22:34:41", "89.35.198.83", "72");
INSERT INTO `wp_gf_form_view` VALUES("28517", "10", "2016-04-05 22:34:42", "89.35.198.83", "65");
INSERT INTO `wp_gf_form_view` VALUES("28518", "3", "2016-04-05 23:10:04", "134.87.159.103", "76");
INSERT INTO `wp_gf_form_view` VALUES("28519", "10", "2016-04-05 23:10:04", "134.87.159.103", "56");
INSERT INTO `wp_gf_form_view` VALUES("28520", "3", "2016-04-06 00:12:11", "104.142.126.77", "112");
INSERT INTO `wp_gf_form_view` VALUES("28521", "10", "2016-04-06 00:14:13", "104.142.126.77", "100");
INSERT INTO `wp_gf_form_view` VALUES("28522", "3", "2016-04-06 01:09:52", "68.180.229.244", "32");
INSERT INTO `wp_gf_form_view` VALUES("28523", "10", "2016-04-06 01:09:52", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("28524", "3", "2016-04-06 02:08:26", "104.223.38.133", "81");
INSERT INTO `wp_gf_form_view` VALUES("28525", "10", "2016-04-06 02:08:26", "104.223.38.133", "84");
INSERT INTO `wp_gf_form_view` VALUES("28526", "1", "2016-04-06 02:43:26", "46.105.86.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("28527", "3", "2016-04-06 03:00:12", "24.244.23.197", "46");
INSERT INTO `wp_gf_form_view` VALUES("28528", "10", "2016-04-06 03:00:12", "24.244.23.197", "45");
INSERT INTO `wp_gf_form_view` VALUES("28529", "3", "2016-04-06 04:02:53", "62.210.162.184", "26");
INSERT INTO `wp_gf_form_view` VALUES("28530", "10", "2016-04-06 04:02:53", "62.210.162.184", "25");
INSERT INTO `wp_gf_form_view` VALUES("28531", "9", "2016-04-06 05:12:57", "66.249.79.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("28532", "3", "2016-04-06 05:12:58", "66.249.79.106", "56");
INSERT INTO `wp_gf_form_view` VALUES("28533", "10", "2016-04-06 05:12:58", "66.249.79.106", "55");
INSERT INTO `wp_gf_form_view` VALUES("28534", "3", "2016-04-06 06:05:54", "24.68.142.131", "55");
INSERT INTO `wp_gf_form_view` VALUES("28535", "10", "2016-04-06 06:05:54", "24.68.142.131", "55");
INSERT INTO `wp_gf_form_view` VALUES("28536", "9", "2016-04-06 06:15:05", "164.132.161.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("28537", "3", "2016-04-06 07:18:28", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("28538", "10", "2016-04-06 07:18:28", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("28539", "10", "2016-04-06 08:00:04", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("28540", "3", "2016-04-06 08:00:05", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28541", "3", "2016-04-06 09:04:28", "66.249.79.106", "16");
INSERT INTO `wp_gf_form_view` VALUES("28542", "10", "2016-04-06 09:04:28", "66.249.79.106", "15");
INSERT INTO `wp_gf_form_view` VALUES("28543", "8", "2016-04-06 09:32:46", "207.46.13.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("28544", "3", "2016-04-06 10:05:53", "66.249.79.102", "10");
INSERT INTO `wp_gf_form_view` VALUES("28545", "10", "2016-04-06 10:05:53", "66.249.79.102", "11");
INSERT INTO `wp_gf_form_view` VALUES("28546", "3", "2016-04-06 11:11:32", "202.46.53.175", "137");
INSERT INTO `wp_gf_form_view` VALUES("28547", "10", "2016-04-06 11:11:32", "202.46.53.175", "135");
INSERT INTO `wp_gf_form_view` VALUES("28548", "1", "2016-04-06 11:44:12", "46.105.86.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("28549", "10", "2016-04-06 12:21:01", "164.132.161.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("28550", "3", "2016-04-06 12:21:01", "164.132.161.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("28551", "3", "2016-04-06 13:01:42", "107.151.152.8", "36");
INSERT INTO `wp_gf_form_view` VALUES("28552", "10", "2016-04-06 13:01:42", "107.151.152.8", "35");
INSERT INTO `wp_gf_form_view` VALUES("28553", "3", "2016-04-06 14:24:08", "75.154.238.64", "55");
INSERT INTO `wp_gf_form_view` VALUES("28554", "10", "2016-04-06 14:24:09", "75.154.238.64", "55");
INSERT INTO `wp_gf_form_view` VALUES("28555", "3", "2016-04-06 15:02:37", "68.180.229.244", "11");
INSERT INTO `wp_gf_form_view` VALUES("28556", "10", "2016-04-06 15:49:44", "202.46.51.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("28557", "10", "2016-04-06 16:01:49", "24.68.38.17", "32");
INSERT INTO `wp_gf_form_view` VALUES("28558", "3", "2016-04-06 16:01:50", "24.68.38.17", "37");
INSERT INTO `wp_gf_form_view` VALUES("28559", "3", "2016-04-06 17:24:21", "5.9.17.118", "96");
INSERT INTO `wp_gf_form_view` VALUES("28560", "10", "2016-04-06 17:24:23", "5.9.17.118", "96");
INSERT INTO `wp_gf_form_view` VALUES("28561", "3", "2016-04-06 18:22:37", "207.194.133.9", "45");
INSERT INTO `wp_gf_form_view` VALUES("28562", "10", "2016-04-06 18:22:37", "207.194.133.9", "37");
INSERT INTO `wp_gf_form_view` VALUES("28563", "10", "2016-04-06 19:02:18", "64.114.222.239", "42");
INSERT INTO `wp_gf_form_view` VALUES("28564", "3", "2016-04-06 19:02:18", "64.114.222.239", "40");
INSERT INTO `wp_gf_form_view` VALUES("28565", "3", "2016-04-06 20:21:57", "89.44.43.125", "93");
INSERT INTO `wp_gf_form_view` VALUES("28566", "10", "2016-04-06 20:21:57", "89.44.43.125", "85");
INSERT INTO `wp_gf_form_view` VALUES("28567", "3", "2016-04-06 22:02:40", "24.69.154.51", "75");
INSERT INTO `wp_gf_form_view` VALUES("28568", "10", "2016-04-06 22:02:40", "24.69.154.51", "76");
INSERT INTO `wp_gf_form_view` VALUES("28569", "1", "2016-04-06 22:03:28", "24.69.154.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("28570", "3", "2016-04-06 23:10:27", "24.108.162.39", "182");
INSERT INTO `wp_gf_form_view` VALUES("28571", "10", "2016-04-06 23:10:27", "24.108.162.39", "181");
INSERT INTO `wp_gf_form_view` VALUES("28572", "2", "2016-04-06 23:40:06", "71.43.100.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("28573", "3", "2016-04-07 00:04:04", "24.69.73.90", "73");
INSERT INTO `wp_gf_form_view` VALUES("28574", "10", "2016-04-07 00:04:04", "24.69.73.90", "71");
INSERT INTO `wp_gf_form_view` VALUES("28575", "3", "2016-04-07 01:34:08", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("28576", "10", "2016-04-07 01:34:10", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("28577", "3", "2016-04-07 02:09:17", "211.21.2.86", "156");
INSERT INTO `wp_gf_form_view` VALUES("28578", "10", "2016-04-07 02:09:17", "211.21.2.86", "155");
INSERT INTO `wp_gf_form_view` VALUES("28579", "2", "2016-04-07 02:10:10", "211.21.2.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("28580", "3", "2016-04-07 03:05:04", "66.249.79.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("28581", "10", "2016-04-07 03:05:04", "66.249.79.176", "16");
INSERT INTO `wp_gf_form_view` VALUES("28582", "3", "2016-04-07 04:14:08", "66.249.79.169", "25");
INSERT INTO `wp_gf_form_view` VALUES("28583", "10", "2016-04-07 04:14:08", "66.249.79.169", "25");
INSERT INTO `wp_gf_form_view` VALUES("28584", "2", "2016-04-07 04:31:16", "114.98.224.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("28585", "3", "2016-04-07 05:16:50", "164.132.161.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("28586", "10", "2016-04-07 05:16:50", "164.132.161.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("28587", "3", "2016-04-07 06:37:40", "24.69.65.72", "15");
INSERT INTO `wp_gf_form_view` VALUES("28588", "10", "2016-04-07 06:37:40", "24.69.65.72", "15");
INSERT INTO `wp_gf_form_view` VALUES("28589", "3", "2016-04-07 07:02:04", "207.46.13.79", "45");
INSERT INTO `wp_gf_form_view` VALUES("28590", "10", "2016-04-07 07:02:04", "207.46.13.79", "45");
INSERT INTO `wp_gf_form_view` VALUES("28591", "3", "2016-04-07 08:06:29", "194.187.168.194", "21");
INSERT INTO `wp_gf_form_view` VALUES("28592", "10", "2016-04-07 08:06:29", "194.187.168.194", "20");
INSERT INTO `wp_gf_form_view` VALUES("28593", "3", "2016-04-07 09:19:13", "199.21.99.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("28594", "10", "2016-04-07 09:19:13", "199.21.99.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("28595", "10", "2016-04-07 10:03:22", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("28596", "3", "2016-04-07 10:03:22", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("28597", "3", "2016-04-07 11:08:08", "37.156.184.250", "20");
INSERT INTO `wp_gf_form_view` VALUES("28598", "10", "2016-04-07 11:08:09", "37.156.184.250", "20");
INSERT INTO `wp_gf_form_view` VALUES("28599", "3", "2016-04-07 12:09:24", "46.119.118.112", "97");
INSERT INTO `wp_gf_form_view` VALUES("28600", "10", "2016-04-07 12:09:25", "46.119.118.112", "91");
INSERT INTO `wp_gf_form_view` VALUES("28601", "2", "2016-04-07 12:33:31", "54.90.49.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("28602", "3", "2016-04-07 13:06:37", "180.87.248.200", "40");
INSERT INTO `wp_gf_form_view` VALUES("28603", "10", "2016-04-07 13:06:38", "180.87.248.200", "40");
INSERT INTO `wp_gf_form_view` VALUES("28604", "3", "2016-04-07 14:23:17", "75.154.238.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("28605", "10", "2016-04-07 14:23:18", "75.154.238.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("28606", "3", "2016-04-07 15:08:57", "164.132.161.81", "41");
INSERT INTO `wp_gf_form_view` VALUES("28607", "10", "2016-04-07 15:08:58", "164.132.161.81", "40");
INSERT INTO `wp_gf_form_view` VALUES("28608", "3", "2016-04-07 16:18:49", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("28609", "10", "2016-04-07 16:18:49", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("28610", "3", "2016-04-07 17:01:26", "40.77.167.14", "20");
INSERT INTO `wp_gf_form_view` VALUES("28611", "10", "2016-04-07 17:01:27", "40.77.167.14", "16");
INSERT INTO `wp_gf_form_view` VALUES("28612", "2", "2016-04-07 17:33:37", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("28613", "10", "2016-04-07 18:09:22", "24.108.46.26", "54");
INSERT INTO `wp_gf_form_view` VALUES("28614", "3", "2016-04-07 18:09:23", "24.108.46.26", "53");
INSERT INTO `wp_gf_form_view` VALUES("28615", "3", "2016-04-07 19:01:25", "142.30.151.59", "189");
INSERT INTO `wp_gf_form_view` VALUES("28616", "10", "2016-04-07 19:01:25", "142.30.151.59", "190");
INSERT INTO `wp_gf_form_view` VALUES("28617", "2", "2016-04-07 19:36:39", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("28618", "3", "2016-04-07 20:30:44", "66.249.79.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("28619", "10", "2016-04-07 20:30:44", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("28620", "3", "2016-04-07 21:08:57", "66.249.79.162", "849");
INSERT INTO `wp_gf_form_view` VALUES("28621", "10", "2016-04-07 21:08:57", "66.249.79.162", "816");
INSERT INTO `wp_gf_form_view` VALUES("28622", "2", "2016-04-07 21:20:56", "174.127.133.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("28623", "1", "2016-04-07 21:42:58", "216.87.168.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("28624", "3", "2016-04-07 22:02:07", "104.204.172.147", "30");
INSERT INTO `wp_gf_form_view` VALUES("28625", "10", "2016-04-07 22:02:07", "104.204.172.147", "32");
INSERT INTO `wp_gf_form_view` VALUES("28626", "3", "2016-04-07 23:16:40", "157.55.39.76", "21");
INSERT INTO `wp_gf_form_view` VALUES("28627", "10", "2016-04-07 23:16:46", "157.55.39.76", "20");
INSERT INTO `wp_gf_form_view` VALUES("28628", "3", "2016-04-08 00:12:43", "66.249.79.169", "47");
INSERT INTO `wp_gf_form_view` VALUES("28629", "10", "2016-04-08 00:12:44", "66.249.79.169", "45");
INSERT INTO `wp_gf_form_view` VALUES("28630", "3", "2016-04-08 01:14:08", "66.249.79.176", "218");
INSERT INTO `wp_gf_form_view` VALUES("28631", "10", "2016-04-08 01:14:09", "66.249.79.176", "215");
INSERT INTO `wp_gf_form_view` VALUES("28632", "2", "2016-04-08 01:17:56", "71.43.100.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("28633", "3", "2016-04-08 02:14:10", "157.55.39.76", "31");
INSERT INTO `wp_gf_form_view` VALUES("28634", "10", "2016-04-08 02:14:12", "157.55.39.76", "30");
INSERT INTO `wp_gf_form_view` VALUES("28635", "3", "2016-04-08 03:32:37", "66.249.79.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("28636", "10", "2016-04-08 03:32:38", "66.249.79.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("28637", "8", "2016-04-08 03:36:52", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("28638", "3", "2016-04-08 04:11:27", "46.119.123.199", "1146");
INSERT INTO `wp_gf_form_view` VALUES("28639", "3", "2016-04-08 04:11:27", "46.119.123.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("28640", "10", "2016-04-08 04:11:27", "46.119.123.199", "1072");
INSERT INTO `wp_gf_form_view` VALUES("28641", "1", "2016-04-08 04:39:51", "104.236.107.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("28642", "5", "2016-04-08 04:46:35", "104.236.107.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("28643", "6", "2016-04-08 04:55:10", "104.236.107.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("28644", "3", "2016-04-08 05:00:01", "104.236.107.230", "2170");
INSERT INTO `wp_gf_form_view` VALUES("28645", "10", "2016-04-08 05:00:01", "104.236.107.230", "2024");
INSERT INTO `wp_gf_form_view` VALUES("28646", "9", "2016-04-08 05:03:15", "104.236.107.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("28647", "2", "2016-04-08 05:44:09", "104.236.107.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("28648", "8", "2016-04-08 05:57:50", "104.236.107.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("28649", "3", "2016-04-08 06:03:39", "202.46.50.131", "30");
INSERT INTO `wp_gf_form_view` VALUES("28650", "10", "2016-04-08 06:03:39", "202.46.50.131", "30");
INSERT INTO `wp_gf_form_view` VALUES("28651", "2", "2016-04-08 07:01:44", "157.55.39.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("28652", "3", "2016-04-08 07:01:44", "157.55.39.76", "15");
INSERT INTO `wp_gf_form_view` VALUES("28653", "10", "2016-04-08 07:01:45", "157.55.39.76", "16");
INSERT INTO `wp_gf_form_view` VALUES("28654", "1", "2016-04-08 07:45:36", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("28655", "8", "2016-04-08 08:17:03", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("28656", "3", "2016-04-08 08:17:06", "66.249.79.169", "16");
INSERT INTO `wp_gf_form_view` VALUES("28657", "10", "2016-04-08 08:17:06", "66.249.79.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("28658", "3", "2016-04-08 09:06:50", "66.249.79.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("28659", "10", "2016-04-08 09:06:50", "66.249.79.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("28660", "3", "2016-04-08 10:01:34", "157.55.39.222", "31");
INSERT INTO `wp_gf_form_view` VALUES("28661", "10", "2016-04-08 10:01:34", "157.55.39.222", "30");
INSERT INTO `wp_gf_form_view` VALUES("28662", "3", "2016-04-08 12:03:15", "66.249.79.169", "36");
INSERT INTO `wp_gf_form_view` VALUES("28663", "10", "2016-04-08 12:03:16", "66.249.79.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("28664", "3", "2016-04-08 13:03:14", "68.180.229.244", "41");
INSERT INTO `wp_gf_form_view` VALUES("28665", "10", "2016-04-08 13:03:15", "68.180.229.244", "40");
INSERT INTO `wp_gf_form_view` VALUES("28666", "3", "2016-04-08 14:06:29", "40.77.167.14", "1173");
INSERT INTO `wp_gf_form_view` VALUES("28667", "10", "2016-04-08 14:06:29", "40.77.167.14", "1074");
INSERT INTO `wp_gf_form_view` VALUES("28668", "2", "2016-04-08 14:11:34", "193.169.52.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("28669", "1", "2016-04-08 14:15:26", "193.169.52.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("28670", "8", "2016-04-08 14:57:08", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("28671", "9", "2016-04-08 14:57:17", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("28672", "5", "2016-04-08 14:58:14", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("28673", "10", "2016-04-08 15:00:03", "5.9.98.130", "2201");
INSERT INTO `wp_gf_form_view` VALUES("28674", "3", "2016-04-08 15:00:04", "5.9.98.130", "2666");
INSERT INTO `wp_gf_form_view` VALUES("28675", "6", "2016-04-08 15:02:39", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("28676", "3", "2016-04-08 16:00:01", "5.9.98.130", "2668");
INSERT INTO `wp_gf_form_view` VALUES("28677", "10", "2016-04-08 16:00:01", "5.9.98.130", "2156");
INSERT INTO `wp_gf_form_view` VALUES("28678", "3", "2016-04-08 17:00:01", "5.9.98.130", "1788");
INSERT INTO `wp_gf_form_view` VALUES("28679", "10", "2016-04-08 17:00:01", "5.9.98.130", "2044");
INSERT INTO `wp_gf_form_view` VALUES("28680", "3", "2016-04-08 18:00:00", "207.194.133.9", "3655");
INSERT INTO `wp_gf_form_view` VALUES("28681", "10", "2016-04-08 18:00:00", "207.194.133.9", "2375");
INSERT INTO `wp_gf_form_view` VALUES("28682", "1", "2016-04-08 18:05:35", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("28683", "3", "2016-04-08 19:00:00", "5.9.98.130", "2606");
INSERT INTO `wp_gf_form_view` VALUES("28684", "10", "2016-04-08 19:00:00", "5.9.98.130", "3468");
INSERT INTO `wp_gf_form_view` VALUES("28685", "2", "2016-04-08 19:05:44", "80.90.224.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("28686", "3", "2016-04-08 20:00:27", "207.46.13.74", "1331");
INSERT INTO `wp_gf_form_view` VALUES("28687", "10", "2016-04-08 20:00:28", "207.46.13.74", "943");
INSERT INTO `wp_gf_form_view` VALUES("28688", "9", "2016-04-08 20:19:41", "157.55.39.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("28689", "1", "2016-04-08 20:20:19", "157.55.39.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("28690", "3", "2016-04-08 21:09:34", "142.31.211.104", "2341");
INSERT INTO `wp_gf_form_view` VALUES("28691", "10", "2016-04-08 21:09:34", "142.31.211.104", "2308");
INSERT INTO `wp_gf_form_view` VALUES("28692", "8", "2016-04-08 21:47:24", "40.143.1.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("28693", "9", "2016-04-08 21:52:55", "40.143.1.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("28694", "1", "2016-04-08 21:57:06", "40.143.1.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("28695", "2", "2016-04-08 21:57:20", "40.143.1.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("28696", "6", "2016-04-08 21:58:14", "151.80.31.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("28697", "3", "2016-04-08 22:00:17", "40.143.1.4", "4515");
INSERT INTO `wp_gf_form_view` VALUES("28698", "10", "2016-04-08 22:00:17", "40.143.1.4", "2381");
INSERT INTO `wp_gf_form_view` VALUES("28699", "2", "2016-04-08 22:09:43", "202.46.49.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("28700", "3", "2016-04-08 23:00:00", "5.9.98.130", "3775");
INSERT INTO `wp_gf_form_view` VALUES("28701", "10", "2016-04-08 23:00:03", "5.9.98.130", "3231");
INSERT INTO `wp_gf_form_view` VALUES("28702", "2", "2016-04-08 23:46:12", "71.43.100.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("28703", "3", "2016-04-09 00:00:03", "5.9.98.130", "2230");
INSERT INTO `wp_gf_form_view` VALUES("28704", "10", "2016-04-09 00:00:04", "5.9.98.130", "3943");
INSERT INTO `wp_gf_form_view` VALUES("28705", "10", "2016-04-09 01:00:00", "5.9.98.130", "1482");
INSERT INTO `wp_gf_form_view` VALUES("28706", "3", "2016-04-09 01:00:00", "5.9.98.130", "1835");
INSERT INTO `wp_gf_form_view` VALUES("28707", "3", "2016-04-09 02:00:00", "5.9.98.130", "895");
INSERT INTO `wp_gf_form_view` VALUES("28708", "10", "2016-04-09 02:00:01", "5.9.98.130", "481");
INSERT INTO `wp_gf_form_view` VALUES("28709", "9", "2016-04-09 02:51:42", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("28710", "3", "2016-04-09 03:23:55", "157.55.39.61", "6");
INSERT INTO `wp_gf_form_view` VALUES("28711", "10", "2016-04-09 03:23:56", "157.55.39.61", "5");
INSERT INTO `wp_gf_form_view` VALUES("28712", "9", "2016-04-09 04:11:14", "157.55.39.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("28713", "3", "2016-04-09 04:11:15", "157.55.39.61", "26");
INSERT INTO `wp_gf_form_view` VALUES("28714", "10", "2016-04-09 04:11:15", "157.55.39.61", "25");
INSERT INTO `wp_gf_form_view` VALUES("28715", "3", "2016-04-09 05:14:31", "180.242.34.145", "22");
INSERT INTO `wp_gf_form_view` VALUES("28716", "10", "2016-04-09 05:14:31", "180.242.34.145", "25");
INSERT INTO `wp_gf_form_view` VALUES("28717", "10", "2016-04-09 06:09:51", "216.232.150.159", "31");
INSERT INTO `wp_gf_form_view` VALUES("28718", "3", "2016-04-09 06:09:52", "216.232.150.159", "34");
INSERT INTO `wp_gf_form_view` VALUES("28719", "3", "2016-04-09 07:23:55", "180.242.37.157", "63");
INSERT INTO `wp_gf_form_view` VALUES("28720", "10", "2016-04-09 07:23:55", "180.242.37.157", "55");
INSERT INTO `wp_gf_form_view` VALUES("28721", "3", "2016-04-09 08:01:15", "207.46.13.1", "21");
INSERT INTO `wp_gf_form_view` VALUES("28722", "10", "2016-04-09 08:01:16", "207.46.13.1", "20");
INSERT INTO `wp_gf_form_view` VALUES("28723", "3", "2016-04-09 09:23:29", "157.55.39.61", "15");
INSERT INTO `wp_gf_form_view` VALUES("28724", "10", "2016-04-09 09:23:29", "157.55.39.61", "15");
INSERT INTO `wp_gf_form_view` VALUES("28725", "3", "2016-04-09 10:01:29", "66.249.79.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("28726", "3", "2016-04-09 10:01:29", "173.232.125.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("28727", "10", "2016-04-09 10:01:31", "66.249.79.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("28728", "3", "2016-04-09 11:26:37", "89.32.69.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("28729", "10", "2016-04-09 11:26:38", "89.32.69.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("28730", "3", "2016-04-09 12:32:40", "104.223.38.177", "25");
INSERT INTO `wp_gf_form_view` VALUES("28731", "10", "2016-04-09 12:32:41", "104.223.38.177", "25");
INSERT INTO `wp_gf_form_view` VALUES("28732", "3", "2016-04-09 14:24:38", "184.66.238.75", "20");
INSERT INTO `wp_gf_form_view` VALUES("28733", "10", "2016-04-09 14:24:39", "184.66.238.75", "21");
INSERT INTO `wp_gf_form_view` VALUES("28734", "3", "2016-04-09 15:03:48", "66.249.79.176", "39");
INSERT INTO `wp_gf_form_view` VALUES("28735", "10", "2016-04-09 15:03:48", "66.249.79.176", "41");
INSERT INTO `wp_gf_form_view` VALUES("28736", "3", "2016-04-09 16:11:23", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("28737", "10", "2016-04-09 16:11:24", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("28738", "3", "2016-04-09 17:07:19", "216.232.157.182", "55");
INSERT INTO `wp_gf_form_view` VALUES("28739", "10", "2016-04-09 17:07:21", "216.232.157.182", "55");
INSERT INTO `wp_gf_form_view` VALUES("28740", "3", "2016-04-09 18:20:09", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("28741", "10", "2016-04-09 18:20:10", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28742", "2", "2016-04-09 18:37:19", "202.46.51.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("28743", "3", "2016-04-09 19:05:51", "207.46.13.1", "75");
INSERT INTO `wp_gf_form_view` VALUES("28744", "10", "2016-04-09 19:05:51", "207.46.13.1", "71");
INSERT INTO `wp_gf_form_view` VALUES("28745", "8", "2016-04-09 19:08:23", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("28746", "10", "2016-04-09 20:46:07", "107.155.197.107", "186");
INSERT INTO `wp_gf_form_view` VALUES("28747", "3", "2016-04-09 20:46:08", "23.226.222.44", "188");
INSERT INTO `wp_gf_form_view` VALUES("28748", "3", "2016-04-09 20:46:08", "213.179.219.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("28749", "2", "2016-04-09 20:47:09", "149.5.113.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("28750", "10", "2016-04-09 21:09:03", "24.108.150.27", "17");
INSERT INTO `wp_gf_form_view` VALUES("28751", "3", "2016-04-09 21:09:04", "24.108.150.27", "30");
INSERT INTO `wp_gf_form_view` VALUES("28752", "3", "2016-04-09 22:12:00", "24.68.38.17", "31");
INSERT INTO `wp_gf_form_view` VALUES("28753", "10", "2016-04-09 22:12:00", "24.68.38.17", "30");
INSERT INTO `wp_gf_form_view` VALUES("28754", "3", "2016-04-09 23:21:07", "68.180.229.244", "56");
INSERT INTO `wp_gf_form_view` VALUES("28755", "10", "2016-04-09 23:32:20", "157.55.39.172", "55");
INSERT INTO `wp_gf_form_view` VALUES("28756", "3", "2016-04-10 00:17:59", "66.249.79.162", "38");
INSERT INTO `wp_gf_form_view` VALUES("28757", "10", "2016-04-10 00:17:59", "66.249.79.162", "35");
INSERT INTO `wp_gf_form_view` VALUES("28758", "3", "2016-04-10 01:08:51", "68.180.229.244", "32");
INSERT INTO `wp_gf_form_view` VALUES("28759", "10", "2016-04-10 01:08:51", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("28760", "3", "2016-04-10 02:00:34", "51.255.65.82", "209");
INSERT INTO `wp_gf_form_view` VALUES("28761", "10", "2016-04-10 02:00:34", "51.255.65.82", "206");
INSERT INTO `wp_gf_form_view` VALUES("28762", "8", "2016-04-10 02:25:12", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("28763", "2", "2016-04-10 02:48:27", "71.43.100.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("28764", "3", "2016-04-10 03:17:28", "202.46.49.60", "21");
INSERT INTO `wp_gf_form_view` VALUES("28765", "10", "2016-04-10 03:17:28", "202.46.49.60", "20");
INSERT INTO `wp_gf_form_view` VALUES("28766", "3", "2016-04-10 04:42:34", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("28767", "10", "2016-04-10 05:34:49", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("28768", "3", "2016-04-10 05:37:59", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("28769", "3", "2016-04-10 06:13:26", "202.46.51.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("28770", "10", "2016-04-10 06:13:27", "202.46.51.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("28771", "3", "2016-04-10 07:05:28", "51.255.65.67", "27");
INSERT INTO `wp_gf_form_view` VALUES("28772", "10", "2016-04-10 07:05:28", "51.255.65.67", "25");
INSERT INTO `wp_gf_form_view` VALUES("28773", "3", "2016-04-10 08:06:00", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("28774", "10", "2016-04-10 08:06:00", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("28775", "3", "2016-04-10 09:32:04", "66.249.79.176", "17");
INSERT INTO `wp_gf_form_view` VALUES("28776", "10", "2016-04-10 09:32:05", "66.249.79.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("28777", "3", "2016-04-10 10:35:43", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("28778", "10", "2016-04-10 10:35:45", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("28779", "3", "2016-04-10 11:32:50", "46.118.157.172", "33");
INSERT INTO `wp_gf_form_view` VALUES("28780", "3", "2016-04-10 11:32:50", "46.118.157.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("28781", "3", "2016-04-10 11:32:50", "46.118.157.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("28782", "10", "2016-04-10 11:32:50", "46.118.157.172", "33");
INSERT INTO `wp_gf_form_view` VALUES("28783", "10", "2016-04-10 11:32:50", "46.118.157.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("28784", "10", "2016-04-10 11:32:50", "46.118.157.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("28785", "3", "2016-04-10 12:04:06", "77.75.79.119", "20");
INSERT INTO `wp_gf_form_view` VALUES("28786", "10", "2016-04-10 12:04:06", "77.75.79.119", "21");
INSERT INTO `wp_gf_form_view` VALUES("28787", "3", "2016-04-10 13:20:06", "51.255.65.84", "65");
INSERT INTO `wp_gf_form_view` VALUES("28788", "10", "2016-04-10 13:20:07", "51.255.65.84", "65");
INSERT INTO `wp_gf_form_view` VALUES("28789", "3", "2016-04-10 14:30:30", "202.46.58.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("28790", "10", "2016-04-10 14:30:30", "202.46.58.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("28791", "3", "2016-04-10 15:03:59", "202.46.58.71", "36");
INSERT INTO `wp_gf_form_view` VALUES("28792", "10", "2016-04-10 15:03:59", "202.46.58.71", "35");
INSERT INTO `wp_gf_form_view` VALUES("28793", "10", "2016-04-10 16:10:12", "82.193.127.15", "65");
INSERT INTO `wp_gf_form_view` VALUES("28794", "3", "2016-04-10 16:12:35", "82.193.127.15", "52");
INSERT INTO `wp_gf_form_view` VALUES("28795", "3", "2016-04-10 17:28:42", "110.53.183.62", "89");
INSERT INTO `wp_gf_form_view` VALUES("28796", "10", "2016-04-10 17:28:44", "110.53.183.62", "85");
INSERT INTO `wp_gf_form_view` VALUES("28797", "2", "2016-04-10 17:29:15", "110.53.183.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("28798", "3", "2016-04-10 18:12:49", "75.154.238.64", "46");
INSERT INTO `wp_gf_form_view` VALUES("28799", "10", "2016-04-10 18:12:49", "75.154.238.64", "45");
INSERT INTO `wp_gf_form_view` VALUES("28800", "3", "2016-04-10 19:04:57", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("28801", "10", "2016-04-10 19:04:57", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("28802", "3", "2016-04-10 20:00:00", "83.220.170.99", "20");
INSERT INTO `wp_gf_form_view` VALUES("28803", "10", "2016-04-10 20:00:00", "83.220.170.99", "20");
INSERT INTO `wp_gf_form_view` VALUES("28804", "3", "2016-04-10 21:06:08", "77.75.78.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("28805", "10", "2016-04-10 21:06:08", "77.75.78.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("28806", "3", "2016-04-10 22:08:18", "66.249.79.176", "38");
INSERT INTO `wp_gf_form_view` VALUES("28807", "10", "2016-04-10 22:08:19", "66.249.79.176", "40");
INSERT INTO `wp_gf_form_view` VALUES("28808", "1", "2016-04-10 22:22:21", "5.231.30.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("28809", "3", "2016-04-10 23:06:43", "46.119.118.112", "162");
INSERT INTO `wp_gf_form_view` VALUES("28810", "3", "2016-04-10 23:06:43", "46.119.118.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("28811", "3", "2016-04-10 23:06:43", "46.119.118.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("28812", "10", "2016-04-10 23:06:43", "46.119.118.112", "160");
INSERT INTO `wp_gf_form_view` VALUES("28813", "2", "2016-04-10 23:59:49", "46.229.224.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("28814", "10", "2016-04-11 00:08:01", "151.80.31.182", "26");
INSERT INTO `wp_gf_form_view` VALUES("28815", "3", "2016-04-11 00:08:01", "151.80.31.182", "30");
INSERT INTO `wp_gf_form_view` VALUES("28816", "3", "2016-04-11 01:09:28", "151.80.31.105", "71");
INSERT INTO `wp_gf_form_view` VALUES("28817", "10", "2016-04-11 01:09:28", "151.80.31.105", "70");
INSERT INTO `wp_gf_form_view` VALUES("28818", "10", "2016-04-11 02:10:21", "157.55.39.132", "11");
INSERT INTO `wp_gf_form_view` VALUES("28819", "3", "2016-04-11 02:10:22", "157.55.39.132", "10");
INSERT INTO `wp_gf_form_view` VALUES("28820", "3", "2016-04-11 03:08:13", "151.80.31.107", "62");
INSERT INTO `wp_gf_form_view` VALUES("28821", "10", "2016-04-11 03:08:14", "151.80.31.107", "61");
INSERT INTO `wp_gf_form_view` VALUES("28822", "3", "2016-04-11 04:00:21", "68.180.229.244", "26");
INSERT INTO `wp_gf_form_view` VALUES("28823", "10", "2016-04-11 04:00:22", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("28824", "10", "2016-04-11 05:06:51", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("28825", "3", "2016-04-11 05:06:52", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("28826", "1", "2016-04-11 06:35:32", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("28827", "3", "2016-04-11 06:35:32", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("28828", "10", "2016-04-11 06:35:33", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("28829", "3", "2016-04-11 07:20:08", "202.46.54.146", "40");
INSERT INTO `wp_gf_form_view` VALUES("28830", "10", "2016-04-11 07:20:10", "202.46.54.146", "40");
INSERT INTO `wp_gf_form_view` VALUES("28831", "1", "2016-04-11 07:45:57", "151.80.31.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("28832", "3", "2016-04-11 08:10:58", "198.203.31.207", "15");
INSERT INTO `wp_gf_form_view` VALUES("28833", "10", "2016-04-11 08:10:58", "198.203.31.207", "15");
INSERT INTO `wp_gf_form_view` VALUES("28834", "3", "2016-04-11 09:01:06", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("28835", "10", "2016-04-11 09:01:06", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("28836", "3", "2016-04-11 10:12:57", "66.249.79.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("28837", "10", "2016-04-11 10:12:57", "66.249.79.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("28838", "8", "2016-04-11 11:01:21", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("28839", "3", "2016-04-11 11:01:21", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("28840", "10", "2016-04-11 11:01:21", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("28841", "3", "2016-04-11 12:02:49", "207.46.13.182", "5");
INSERT INTO `wp_gf_form_view` VALUES("28842", "10", "2016-04-11 12:02:49", "207.46.13.182", "5");
INSERT INTO `wp_gf_form_view` VALUES("28843", "1", "2016-04-11 13:01:30", "106.2.239.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("28844", "3", "2016-04-11 13:01:31", "106.2.239.55", "31");
INSERT INTO `wp_gf_form_view` VALUES("28845", "10", "2016-04-11 13:01:34", "106.2.239.55", "30");
INSERT INTO `wp_gf_form_view` VALUES("28846", "3", "2016-04-11 14:03:24", "66.249.79.169", "42");
INSERT INTO `wp_gf_form_view` VALUES("28847", "10", "2016-04-11 14:03:25", "66.249.79.169", "41");
INSERT INTO `wp_gf_form_view` VALUES("28848", "3", "2016-04-11 15:02:22", "217.69.133.233", "346");
INSERT INTO `wp_gf_form_view` VALUES("28849", "10", "2016-04-11 15:02:23", "217.69.133.233", "348");
INSERT INTO `wp_gf_form_view` VALUES("28850", "9", "2016-04-11 15:10:07", "207.46.13.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("28851", "1", "2016-04-11 15:10:23", "207.46.13.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("28852", "10", "2016-04-11 16:02:45", "66.249.79.162", "56");
INSERT INTO `wp_gf_form_view` VALUES("28853", "3", "2016-04-11 16:02:45", "66.249.79.162", "56");
INSERT INTO `wp_gf_form_view` VALUES("28854", "3", "2016-04-11 17:07:51", "5.248.253.133", "67");
INSERT INTO `wp_gf_form_view` VALUES("28855", "10", "2016-04-11 17:07:51", "5.248.253.133", "66");
INSERT INTO `wp_gf_form_view` VALUES("28856", "3", "2016-04-11 18:10:37", "217.69.133.230", "110");
INSERT INTO `wp_gf_form_view` VALUES("28857", "10", "2016-04-11 18:10:37", "217.69.133.230", "105");
INSERT INTO `wp_gf_form_view` VALUES("28858", "1", "2016-04-11 18:55:59", "24.69.81.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("28859", "3", "2016-04-11 19:00:31", "142.104.50.16", "243");
INSERT INTO `wp_gf_form_view` VALUES("28860", "10", "2016-04-11 19:00:32", "142.104.50.16", "231");
INSERT INTO `wp_gf_form_view` VALUES("28861", "2", "2016-04-11 19:45:20", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("28862", "3", "2016-04-11 20:13:58", "64.114.223.8", "98");
INSERT INTO `wp_gf_form_view` VALUES("28863", "10", "2016-04-11 20:13:59", "64.114.223.8", "95");
INSERT INTO `wp_gf_form_view` VALUES("28864", "8", "2016-04-11 20:23:06", "107.182.19.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("28865", "1", "2016-04-11 20:46:01", "60.191.159.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("28866", "3", "2016-04-11 21:01:46", "68.180.229.244", "98");
INSERT INTO `wp_gf_form_view` VALUES("28867", "10", "2016-04-11 21:01:46", "68.180.229.244", "90");
INSERT INTO `wp_gf_form_view` VALUES("28868", "5", "2016-04-11 21:19:27", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("28869", "3", "2016-04-11 22:07:49", "69.58.178.56", "261");
INSERT INTO `wp_gf_form_view` VALUES("28870", "10", "2016-04-11 22:07:49", "69.58.178.56", "261");
INSERT INTO `wp_gf_form_view` VALUES("28871", "2", "2016-04-11 22:11:58", "69.58.178.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("28872", "10", "2016-04-11 23:02:29", "24.108.42.254", "35");
INSERT INTO `wp_gf_form_view` VALUES("28873", "3", "2016-04-11 23:14:37", "164.132.161.51", "29");
INSERT INTO `wp_gf_form_view` VALUES("28874", "3", "2016-04-12 00:00:03", "66.249.79.169", "102");
INSERT INTO `wp_gf_form_view` VALUES("28875", "10", "2016-04-12 00:00:03", "66.249.79.169", "95");
INSERT INTO `wp_gf_form_view` VALUES("28876", "2", "2016-04-12 00:40:36", "104.224.14.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("28877", "1", "2016-04-12 00:54:41", "192.99.166.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("28878", "3", "2016-04-12 01:25:22", "24.108.43.164", "31");
INSERT INTO `wp_gf_form_view` VALUES("28879", "10", "2016-04-12 01:25:22", "24.108.43.164", "31");
INSERT INTO `wp_gf_form_view` VALUES("28880", "3", "2016-04-12 02:01:43", "96.50.31.55", "243");
INSERT INTO `wp_gf_form_view` VALUES("28881", "10", "2016-04-12 02:01:43", "96.50.31.55", "243");
INSERT INTO `wp_gf_form_view` VALUES("28882", "2", "2016-04-12 02:46:12", "99.56.15.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("28883", "3", "2016-04-12 03:12:09", "54.203.47.4", "65");
INSERT INTO `wp_gf_form_view` VALUES("28884", "10", "2016-04-12 03:12:09", "54.203.47.4", "65");
INSERT INTO `wp_gf_form_view` VALUES("28885", "3", "2016-04-12 04:22:15", "207.46.13.68", "5");
INSERT INTO `wp_gf_form_view` VALUES("28886", "10", "2016-04-12 04:22:15", "207.46.13.68", "5");
INSERT INTO `wp_gf_form_view` VALUES("28887", "3", "2016-04-12 05:10:30", "207.216.68.18", "27");
INSERT INTO `wp_gf_form_view` VALUES("28888", "10", "2016-04-12 05:10:31", "207.216.68.18", "25");
INSERT INTO `wp_gf_form_view` VALUES("28889", "3", "2016-04-12 06:01:03", "191.96.139.105", "222");
INSERT INTO `wp_gf_form_view` VALUES("28890", "10", "2016-04-12 06:01:05", "191.96.139.105", "216");
INSERT INTO `wp_gf_form_view` VALUES("28891", "2", "2016-04-12 06:30:09", "5.79.68.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("28892", "3", "2016-04-12 07:08:30", "164.132.161.8", "10");
INSERT INTO `wp_gf_form_view` VALUES("28893", "10", "2016-04-12 07:08:31", "164.132.161.8", "10");
INSERT INTO `wp_gf_form_view` VALUES("28894", "3", "2016-04-12 08:20:26", "157.55.39.191", "30");
INSERT INTO `wp_gf_form_view` VALUES("28895", "10", "2016-04-12 08:20:27", "157.55.39.191", "30");
INSERT INTO `wp_gf_form_view` VALUES("28896", "1", "2016-04-12 08:24:21", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("28897", "8", "2016-04-12 08:24:41", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("28898", "3", "2016-04-12 09:01:31", "157.55.39.62", "15");
INSERT INTO `wp_gf_form_view` VALUES("28899", "10", "2016-04-12 09:01:31", "157.55.39.62", "15");
INSERT INTO `wp_gf_form_view` VALUES("28900", "3", "2016-04-12 10:09:23", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("28901", "10", "2016-04-12 10:09:23", "66.249.79.176", "20");
INSERT INTO `wp_gf_form_view` VALUES("28902", "3", "2016-04-12 11:00:28", "46.22.214.74", "42");
INSERT INTO `wp_gf_form_view` VALUES("28903", "10", "2016-04-12 11:00:28", "46.22.214.74", "40");
INSERT INTO `wp_gf_form_view` VALUES("28904", "8", "2016-04-12 12:09:31", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("28905", "3", "2016-04-12 12:52:58", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("28906", "10", "2016-04-12 12:52:59", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("28907", "3", "2016-04-12 13:12:51", "72.35.72.49", "259");
INSERT INTO `wp_gf_form_view` VALUES("28908", "10", "2016-04-12 13:12:51", "72.35.72.49", "250");
INSERT INTO `wp_gf_form_view` VALUES("28909", "2", "2016-04-12 13:13:03", "72.35.72.49", "2");
INSERT INTO `wp_gf_form_view` VALUES("28910", "1", "2016-04-12 13:13:42", "72.35.72.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("28911", "10", "2016-04-12 14:04:28", "24.69.80.138", "92");
INSERT INTO `wp_gf_form_view` VALUES("28912", "3", "2016-04-12 14:04:28", "24.69.80.138", "92");
INSERT INTO `wp_gf_form_view` VALUES("28913", "3", "2016-04-12 15:10:25", "24.69.81.162", "203");
INSERT INTO `wp_gf_form_view` VALUES("28914", "10", "2016-04-12 15:10:25", "24.69.81.162", "183");
INSERT INTO `wp_gf_form_view` VALUES("28915", "3", "2016-04-12 16:05:17", "66.249.79.169", "61");
INSERT INTO `wp_gf_form_view` VALUES("28916", "10", "2016-04-12 16:05:17", "66.249.79.169", "60");
INSERT INTO `wp_gf_form_view` VALUES("28917", "3", "2016-04-12 17:01:14", "164.132.161.9", "61");
INSERT INTO `wp_gf_form_view` VALUES("28918", "10", "2016-04-12 17:01:14", "164.132.161.9", "57");
INSERT INTO `wp_gf_form_view` VALUES("28919", "3", "2016-04-12 18:03:15", "79.32.20.48", "206");
INSERT INTO `wp_gf_form_view` VALUES("28920", "10", "2016-04-12 18:03:15", "79.32.20.48", "205");
INSERT INTO `wp_gf_form_view` VALUES("28921", "2", "2016-04-12 18:05:23", "79.32.20.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("28922", "3", "2016-04-12 19:29:54", "217.69.133.228", "198");
INSERT INTO `wp_gf_form_view` VALUES("28923", "10", "2016-04-12 19:29:56", "217.69.133.228", "195");
INSERT INTO `wp_gf_form_view` VALUES("28924", "2", "2016-04-12 19:58:59", "54.186.170.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("28925", "3", "2016-04-12 20:00:02", "54.186.170.17", "334");
INSERT INTO `wp_gf_form_view` VALUES("28926", "10", "2016-04-12 20:00:02", "54.186.170.17", "307");
INSERT INTO `wp_gf_form_view` VALUES("28927", "1", "2016-04-12 20:03:10", "54.186.170.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("28928", "3", "2016-04-12 21:04:12", "217.69.133.229", "5");
INSERT INTO `wp_gf_form_view` VALUES("28929", "10", "2016-04-12 21:04:12", "217.69.133.229", "5");
INSERT INTO `wp_gf_form_view` VALUES("28930", "3", "2016-04-12 22:20:33", "75.154.238.64", "65");
INSERT INTO `wp_gf_form_view` VALUES("28931", "10", "2016-04-12 22:20:34", "75.154.238.64", "67");
INSERT INTO `wp_gf_form_view` VALUES("28932", "3", "2016-04-12 23:00:54", "207.194.133.9", "166");
INSERT INTO `wp_gf_form_view` VALUES("28933", "10", "2016-04-12 23:26:16", "220.181.108.120", "155");
INSERT INTO `wp_gf_form_view` VALUES("28934", "2", "2016-04-12 23:51:43", "83.41.14.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("28935", "3", "2016-04-13 00:09:18", "162.157.97.1", "35");
INSERT INTO `wp_gf_form_view` VALUES("28936", "10", "2016-04-13 00:09:18", "162.157.97.1", "35");
INSERT INTO `wp_gf_form_view` VALUES("28937", "3", "2016-04-13 01:15:43", "46.118.157.172", "44");
INSERT INTO `wp_gf_form_view` VALUES("28938", "3", "2016-04-13 01:15:43", "46.118.157.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("28939", "10", "2016-04-13 01:15:45", "46.118.157.172", "44");
INSERT INTO `wp_gf_form_view` VALUES("28940", "10", "2016-04-13 01:15:45", "46.118.157.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("28941", "3", "2016-04-13 02:16:03", "24.68.231.154", "55");
INSERT INTO `wp_gf_form_view` VALUES("28942", "10", "2016-04-13 02:16:03", "24.68.231.154", "57");
INSERT INTO `wp_gf_form_view` VALUES("28943", "1", "2016-04-13 02:17:15", "24.68.231.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("28944", "2", "2016-04-13 02:54:42", "185.54.161.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("28945", "3", "2016-04-13 03:04:57", "66.249.79.169", "165");
INSERT INTO `wp_gf_form_view` VALUES("28946", "10", "2016-04-13 03:04:58", "66.249.79.169", "175");
INSERT INTO `wp_gf_form_view` VALUES("28947", "9", "2016-04-13 03:22:37", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("28948", "3", "2016-04-13 04:38:15", "96.50.12.218", "36");
INSERT INTO `wp_gf_form_view` VALUES("28949", "10", "2016-04-13 04:38:15", "96.50.12.218", "35");
INSERT INTO `wp_gf_form_view` VALUES("28950", "1", "2016-04-13 04:39:53", "96.50.12.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("28951", "3", "2016-04-13 05:12:13", "89.34.166.72", "61");
INSERT INTO `wp_gf_form_view` VALUES("28952", "10", "2016-04-13 05:12:14", "89.34.166.72", "60");
INSERT INTO `wp_gf_form_view` VALUES("28953", "3", "2016-04-13 06:09:33", "202.46.57.17", "49");
INSERT INTO `wp_gf_form_view` VALUES("28954", "10", "2016-04-13 06:09:34", "202.46.57.17", "52");
INSERT INTO `wp_gf_form_view` VALUES("28955", "10", "2016-04-13 07:15:35", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("28956", "3", "2016-04-13 07:15:38", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("28957", "3", "2016-04-13 08:05:40", "217.69.133.228", "15");
INSERT INTO `wp_gf_form_view` VALUES("28958", "10", "2016-04-13 08:05:41", "217.69.133.228", "15");
INSERT INTO `wp_gf_form_view` VALUES("28959", "3", "2016-04-13 09:04:06", "68.180.229.244", "142");
INSERT INTO `wp_gf_form_view` VALUES("28960", "10", "2016-04-13 09:04:11", "68.180.229.244", "135");
INSERT INTO `wp_gf_form_view` VALUES("28961", "3", "2016-04-13 10:18:45", "51.255.65.34", "15");
INSERT INTO `wp_gf_form_view` VALUES("28962", "10", "2016-04-13 10:18:45", "51.255.65.34", "15");
INSERT INTO `wp_gf_form_view` VALUES("28963", "3", "2016-04-13 11:07:36", "66.249.79.169", "38");
INSERT INTO `wp_gf_form_view` VALUES("28964", "10", "2016-04-13 11:07:38", "66.249.79.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("28965", "3", "2016-04-13 12:48:07", "217.69.133.227", "11");
INSERT INTO `wp_gf_form_view` VALUES("28966", "10", "2016-04-13 12:48:08", "217.69.133.227", "10");
INSERT INTO `wp_gf_form_view` VALUES("28967", "3", "2016-04-13 13:25:22", "157.55.39.88", "5");
INSERT INTO `wp_gf_form_view` VALUES("28968", "10", "2016-04-13 13:25:22", "157.55.39.88", "5");
INSERT INTO `wp_gf_form_view` VALUES("28969", "3", "2016-04-13 14:22:46", "217.69.133.229", "45");
INSERT INTO `wp_gf_form_view` VALUES("28970", "10", "2016-04-13 14:22:47", "217.69.133.229", "45");
INSERT INTO `wp_gf_form_view` VALUES("28971", "1", "2016-04-13 14:33:48", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("28972", "3", "2016-04-13 15:01:40", "164.132.161.16", "57");
INSERT INTO `wp_gf_form_view` VALUES("28973", "10", "2016-04-13 15:01:40", "164.132.161.16", "55");
INSERT INTO `wp_gf_form_view` VALUES("28974", "3", "2016-04-13 16:03:57", "179.110.203.188", "109");
INSERT INTO `wp_gf_form_view` VALUES("28975", "10", "2016-04-13 16:03:57", "179.110.203.188", "105");
INSERT INTO `wp_gf_form_view` VALUES("28976", "3", "2016-04-13 17:47:49", "157.55.39.132", "56");
INSERT INTO `wp_gf_form_view` VALUES("28977", "10", "2016-04-13 17:47:50", "157.55.39.132", "56");
INSERT INTO `wp_gf_form_view` VALUES("28978", "1", "2016-04-13 17:55:11", "142.167.151.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("28979", "3", "2016-04-13 18:35:22", "202.46.50.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("28980", "10", "2016-04-13 18:35:22", "202.46.50.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("28981", "3", "2016-04-13 19:17:36", "184.66.253.41", "128");
INSERT INTO `wp_gf_form_view` VALUES("28982", "10", "2016-04-13 19:17:36", "184.66.253.41", "125");
INSERT INTO `wp_gf_form_view` VALUES("28983", "2", "2016-04-13 19:50:06", "45.55.229.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("28984", "3", "2016-04-13 20:08:36", "24.69.0.170", "30");
INSERT INTO `wp_gf_form_view` VALUES("28985", "10", "2016-04-13 20:08:36", "24.69.0.170", "30");
INSERT INTO `wp_gf_form_view` VALUES("28986", "3", "2016-04-13 21:09:07", "66.249.79.169", "26");
INSERT INTO `wp_gf_form_view` VALUES("28987", "10", "2016-04-13 21:09:08", "66.249.79.169", "25");
INSERT INTO `wp_gf_form_view` VALUES("28988", "3", "2016-04-13 22:05:01", "178.137.90.202", "83");
INSERT INTO `wp_gf_form_view` VALUES("28989", "3", "2016-04-13 22:05:01", "178.137.90.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("28990", "3", "2016-04-13 22:05:01", "178.137.90.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("28991", "10", "2016-04-13 22:05:01", "178.137.90.202", "80");
INSERT INTO `wp_gf_form_view` VALUES("28992", "8", "2016-04-13 22:09:56", "66.249.79.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("28993", "3", "2016-04-13 23:07:00", "134.249.55.100", "100");
INSERT INTO `wp_gf_form_view` VALUES("28994", "3", "2016-04-13 23:07:00", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("28995", "10", "2016-04-13 23:07:01", "134.249.55.100", "106");
INSERT INTO `wp_gf_form_view` VALUES("28996", "2", "2016-04-13 23:10:27", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("28997", "3", "2016-04-14 00:02:35", "207.46.13.54", "17");
INSERT INTO `wp_gf_form_view` VALUES("28998", "10", "2016-04-14 00:02:35", "207.46.13.54", "15");
INSERT INTO `wp_gf_form_view` VALUES("28999", "3", "2016-04-14 01:36:00", "202.46.51.15", "26");
INSERT INTO `wp_gf_form_view` VALUES("29000", "10", "2016-04-14 01:36:02", "202.46.51.15", "20");
INSERT INTO `wp_gf_form_view` VALUES("29001", "3", "2016-04-14 02:08:56", "91.108.73.105", "61");
INSERT INTO `wp_gf_form_view` VALUES("29002", "10", "2016-04-14 02:08:56", "91.108.73.105", "60");
INSERT INTO `wp_gf_form_view` VALUES("29003", "3", "2016-04-14 03:00:36", "207.6.125.197", "25");
INSERT INTO `wp_gf_form_view` VALUES("29004", "10", "2016-04-14 03:00:36", "207.6.125.197", "25");
INSERT INTO `wp_gf_form_view` VALUES("29005", "1", "2016-04-14 03:57:26", "96.50.12.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("29006", "3", "2016-04-14 04:00:10", "96.50.12.218", "16");
INSERT INTO `wp_gf_form_view` VALUES("29007", "10", "2016-04-14 04:00:10", "96.50.12.218", "15");
INSERT INTO `wp_gf_form_view` VALUES("29008", "3", "2016-04-14 05:00:26", "66.249.79.169", "21");
INSERT INTO `wp_gf_form_view` VALUES("29009", "10", "2016-04-14 05:00:26", "66.249.79.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("29010", "3", "2016-04-14 06:14:04", "77.75.78.170", "67");
INSERT INTO `wp_gf_form_view` VALUES("29011", "10", "2016-04-14 06:14:07", "77.75.78.170", "65");
INSERT INTO `wp_gf_form_view` VALUES("29012", "3", "2016-04-14 07:12:35", "66.249.79.169", "54");
INSERT INTO `wp_gf_form_view` VALUES("29013", "10", "2016-04-14 07:12:35", "66.249.79.169", "50");
INSERT INTO `wp_gf_form_view` VALUES("29014", "9", "2016-04-14 07:13:38", "188.214.50.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("29015", "3", "2016-04-14 08:00:56", "202.46.52.203", "16");
INSERT INTO `wp_gf_form_view` VALUES("29016", "10", "2016-04-14 08:00:57", "202.46.52.203", "15");
INSERT INTO `wp_gf_form_view` VALUES("29017", "6", "2016-04-14 08:24:09", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29018", "3", "2016-04-14 09:23:15", "104.223.38.177", "25");
INSERT INTO `wp_gf_form_view` VALUES("29019", "10", "2016-04-14 09:23:17", "104.223.38.177", "25");
INSERT INTO `wp_gf_form_view` VALUES("29020", "3", "2016-04-14 10:37:58", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29021", "10", "2016-04-14 10:37:59", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29022", "3", "2016-04-14 11:12:39", "220.181.108.82", "5");
INSERT INTO `wp_gf_form_view` VALUES("29023", "10", "2016-04-14 11:12:39", "220.181.108.82", "5");
INSERT INTO `wp_gf_form_view` VALUES("29024", "3", "2016-04-14 12:22:19", "68.180.229.244", "341");
INSERT INTO `wp_gf_form_view` VALUES("29025", "10", "2016-04-14 12:22:20", "68.180.229.244", "338");
INSERT INTO `wp_gf_form_view` VALUES("29026", "9", "2016-04-14 12:24:37", "157.55.39.88", "3");
INSERT INTO `wp_gf_form_view` VALUES("29027", "1", "2016-04-14 12:24:53", "157.55.39.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("29028", "3", "2016-04-14 13:01:10", "66.249.79.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("29029", "10", "2016-04-14 13:02:54", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29030", "1", "2016-04-14 14:06:27", "192.161.50.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("29031", "3", "2016-04-14 14:06:28", "192.161.50.70", "55");
INSERT INTO `wp_gf_form_view` VALUES("29032", "10", "2016-04-14 14:06:28", "192.161.50.70", "50");
INSERT INTO `wp_gf_form_view` VALUES("29033", "9", "2016-04-14 14:28:14", "151.80.31.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("29034", "3", "2016-04-14 15:03:21", "66.249.79.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("29035", "10", "2016-04-14 15:03:22", "66.249.79.176", "35");
INSERT INTO `wp_gf_form_view` VALUES("29036", "3", "2016-04-14 16:11:16", "142.36.158.155", "218");
INSERT INTO `wp_gf_form_view` VALUES("29037", "10", "2016-04-14 16:11:22", "142.36.158.155", "215");
INSERT INTO `wp_gf_form_view` VALUES("29038", "1", "2016-04-14 16:23:24", "43.225.194.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("29039", "2", "2016-04-14 16:51:03", "81.68.74.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("29040", "3", "2016-04-14 17:24:46", "24.69.0.170", "30");
INSERT INTO `wp_gf_form_view` VALUES("29041", "10", "2016-04-14 17:24:48", "24.69.0.170", "31");
INSERT INTO `wp_gf_form_view` VALUES("29042", "2", "2016-04-14 17:39:34", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29043", "3", "2016-04-14 18:05:09", "52.71.155.178", "75");
INSERT INTO `wp_gf_form_view` VALUES("29044", "10", "2016-04-14 18:05:10", "52.71.155.178", "71");
INSERT INTO `wp_gf_form_view` VALUES("29045", "3", "2016-04-14 19:13:16", "66.249.79.162", "30");
INSERT INTO `wp_gf_form_view` VALUES("29046", "10", "2016-04-14 19:13:17", "66.249.79.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("29047", "11", "2016-04-14 19:15:55", "24.108.147.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("29048", "3", "2016-04-14 20:11:42", "24.69.144.96", "25");
INSERT INTO `wp_gf_form_view` VALUES("29049", "10", "2016-04-14 20:11:42", "24.69.144.96", "26");
INSERT INTO `wp_gf_form_view` VALUES("29050", "3", "2016-04-14 21:00:45", "51.255.65.16", "69");
INSERT INTO `wp_gf_form_view` VALUES("29051", "10", "2016-04-14 21:00:46", "51.255.65.16", "66");
INSERT INTO `wp_gf_form_view` VALUES("29052", "9", "2016-04-14 21:54:11", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("29053", "3", "2016-04-14 22:42:03", "77.75.76.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("29054", "10", "2016-04-14 22:42:04", "77.75.76.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("29055", "3", "2016-04-14 23:14:17", "96.50.7.9", "64");
INSERT INTO `wp_gf_form_view` VALUES("29056", "10", "2016-04-14 23:14:18", "96.50.7.9", "62");
INSERT INTO `wp_gf_form_view` VALUES("29057", "3", "2016-04-15 00:19:46", "207.46.13.4", "11");
INSERT INTO `wp_gf_form_view` VALUES("29058", "10", "2016-04-15 00:19:48", "207.46.13.4", "10");
INSERT INTO `wp_gf_form_view` VALUES("29059", "3", "2016-04-15 01:00:29", "24.108.42.254", "52");
INSERT INTO `wp_gf_form_view` VALUES("29060", "10", "2016-04-15 01:00:30", "24.108.42.254", "50");
INSERT INTO `wp_gf_form_view` VALUES("29061", "3", "2016-04-15 02:26:22", "164.132.161.28", "46");
INSERT INTO `wp_gf_form_view` VALUES("29062", "2", "2016-04-15 02:29:33", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("29063", "10", "2016-04-15 02:29:33", "74.91.26.114", "45");
INSERT INTO `wp_gf_form_view` VALUES("29064", "3", "2016-04-15 03:04:21", "202.46.51.194", "11");
INSERT INTO `wp_gf_form_view` VALUES("29065", "10", "2016-04-15 03:04:21", "202.46.51.194", "10");
INSERT INTO `wp_gf_form_view` VALUES("29066", "10", "2016-04-15 04:06:34", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("29067", "3", "2016-04-15 04:06:34", "66.249.79.176", "27");
INSERT INTO `wp_gf_form_view` VALUES("29068", "3", "2016-04-15 05:09:48", "40.77.167.71", "23");
INSERT INTO `wp_gf_form_view` VALUES("29069", "10", "2016-04-15 05:09:50", "40.77.167.71", "15");
INSERT INTO `wp_gf_form_view` VALUES("29070", "10", "2016-04-15 06:09:15", "104.142.121.52", "153");
INSERT INTO `wp_gf_form_view` VALUES("29071", "3", "2016-04-15 06:09:15", "104.142.121.52", "159");
INSERT INTO `wp_gf_form_view` VALUES("29072", "1", "2016-04-15 06:52:39", "96.50.77.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29073", "10", "2016-04-15 07:16:44", "202.46.48.123", "15");
INSERT INTO `wp_gf_form_view` VALUES("29074", "3", "2016-04-15 07:16:46", "202.46.48.123", "15");
INSERT INTO `wp_gf_form_view` VALUES("29075", "11", "2016-04-15 07:17:11", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29076", "8", "2016-04-15 08:19:02", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("29077", "10", "2016-04-15 08:19:02", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29078", "3", "2016-04-15 08:19:03", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29079", "10", "2016-04-15 10:02:40", "51.255.65.26", "20");
INSERT INTO `wp_gf_form_view` VALUES("29080", "3", "2016-04-15 10:02:41", "51.255.65.26", "21");
INSERT INTO `wp_gf_form_view` VALUES("29081", "10", "2016-04-15 11:23:34", "164.132.161.90", "16");
INSERT INTO `wp_gf_form_view` VALUES("29082", "3", "2016-04-15 11:23:36", "164.132.161.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("29083", "10", "2016-04-15 12:33:30", "40.77.167.8", "21");
INSERT INTO `wp_gf_form_view` VALUES("29084", "3", "2016-04-15 12:33:31", "40.77.167.8", "20");
INSERT INTO `wp_gf_form_view` VALUES("29085", "10", "2016-04-15 13:01:31", "199.59.148.209", "71");
INSERT INTO `wp_gf_form_view` VALUES("29086", "3", "2016-04-15 13:01:32", "199.59.148.209", "71");
INSERT INTO `wp_gf_form_view` VALUES("29087", "10", "2016-04-15 14:01:42", "77.75.76.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("29088", "3", "2016-04-15 14:01:42", "77.75.76.162", "21");
INSERT INTO `wp_gf_form_view` VALUES("29089", "2", "2016-04-15 14:29:26", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29090", "3", "2016-04-15 15:16:37", "40.77.167.8", "66");
INSERT INTO `wp_gf_form_view` VALUES("29091", "10", "2016-04-15 15:16:38", "40.77.167.8", "65");
INSERT INTO `wp_gf_form_view` VALUES("29092", "10", "2016-04-15 16:11:58", "70.78.142.206", "36");
INSERT INTO `wp_gf_form_view` VALUES("29093", "3", "2016-04-15 16:11:59", "70.78.142.206", "36");
INSERT INTO `wp_gf_form_view` VALUES("29094", "10", "2016-04-15 17:13:13", "51.255.65.28", "65");
INSERT INTO `wp_gf_form_view` VALUES("29095", "3", "2016-04-15 17:13:16", "51.255.65.28", "66");
INSERT INTO `wp_gf_form_view` VALUES("29096", "11", "2016-04-15 17:26:38", "157.55.39.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("29097", "10", "2016-04-15 18:27:53", "184.69.1.62", "20");
INSERT INTO `wp_gf_form_view` VALUES("29098", "3", "2016-04-15 18:27:54", "184.69.1.62", "21");
INSERT INTO `wp_gf_form_view` VALUES("29099", "10", "2016-04-15 19:22:33", "75.154.238.64", "58");
INSERT INTO `wp_gf_form_view` VALUES("29100", "3", "2016-04-15 19:22:35", "75.154.238.64", "56");
INSERT INTO `wp_gf_form_view` VALUES("29101", "10", "2016-04-15 20:02:47", "154.5.146.240", "85");
INSERT INTO `wp_gf_form_view` VALUES("29102", "3", "2016-04-15 20:02:47", "154.5.146.240", "92");
INSERT INTO `wp_gf_form_view` VALUES("29103", "9", "2016-04-15 20:04:06", "89.34.166.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("29104", "10", "2016-04-15 21:40:07", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29105", "3", "2016-04-15 21:40:09", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29106", "9", "2016-04-15 21:48:09", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("29107", "10", "2016-04-15 22:00:59", "68.180.229.244", "95");
INSERT INTO `wp_gf_form_view` VALUES("29108", "3", "2016-04-15 22:01:00", "68.180.229.244", "95");
INSERT INTO `wp_gf_form_view` VALUES("29109", "1", "2016-04-15 22:24:40", "24.69.20.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("29110", "10", "2016-04-15 23:02:53", "66.249.79.176", "60");
INSERT INTO `wp_gf_form_view` VALUES("29111", "3", "2016-04-15 23:02:54", "66.249.79.176", "61");
INSERT INTO `wp_gf_form_view` VALUES("29112", "9", "2016-04-15 23:28:28", "62.210.162.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("29113", "10", "2016-04-16 00:21:23", "46.118.156.3", "142");
INSERT INTO `wp_gf_form_view` VALUES("29114", "3", "2016-04-16 00:21:23", "46.118.156.3", "144");
INSERT INTO `wp_gf_form_view` VALUES("29115", "9", "2016-04-16 00:24:31", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("29116", "1", "2016-04-16 00:24:46", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("29117", "9", "2016-04-16 01:09:15", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("29118", "10", "2016-04-16 01:09:16", "62.210.162.184", "45");
INSERT INTO `wp_gf_form_view` VALUES("29119", "3", "2016-04-16 01:09:16", "62.210.162.184", "45");
INSERT INTO `wp_gf_form_view` VALUES("29120", "10", "2016-04-16 02:30:19", "96.50.68.241", "15");
INSERT INTO `wp_gf_form_view` VALUES("29121", "3", "2016-04-16 02:30:21", "96.50.68.241", "15");
INSERT INTO `wp_gf_form_view` VALUES("29122", "2", "2016-04-16 03:07:44", "104.223.42.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("29123", "10", "2016-04-16 03:07:47", "104.223.42.46", "25");
INSERT INTO `wp_gf_form_view` VALUES("29124", "3", "2016-04-16 03:07:47", "104.223.42.46", "27");
INSERT INTO `wp_gf_form_view` VALUES("29125", "1", "2016-04-16 03:56:41", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("29126", "10", "2016-04-16 04:10:09", "202.46.53.15", "94");
INSERT INTO `wp_gf_form_view` VALUES("29127", "3", "2016-04-16 04:10:10", "202.46.53.15", "94");
INSERT INTO `wp_gf_form_view` VALUES("29128", "10", "2016-04-16 05:08:00", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29129", "3", "2016-04-16 05:08:02", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29130", "10", "2016-04-16 06:30:48", "40.77.167.32", "15");
INSERT INTO `wp_gf_form_view` VALUES("29131", "3", "2016-04-16 06:30:49", "40.77.167.32", "15");
INSERT INTO `wp_gf_form_view` VALUES("29132", "10", "2016-04-16 07:24:16", "220.181.108.123", "30");
INSERT INTO `wp_gf_form_view` VALUES("29133", "3", "2016-04-16 07:24:17", "220.181.108.123", "31");
INSERT INTO `wp_gf_form_view` VALUES("29134", "10", "2016-04-16 08:00:41", "107.172.229.168", "20");
INSERT INTO `wp_gf_form_view` VALUES("29135", "3", "2016-04-16 08:00:42", "107.172.229.168", "21");
INSERT INTO `wp_gf_form_view` VALUES("29136", "10", "2016-04-16 09:29:08", "178.137.90.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("29137", "3", "2016-04-16 09:29:09", "178.137.90.202", "29");
INSERT INTO `wp_gf_form_view` VALUES("29138", "3", "2016-04-16 09:29:09", "178.137.90.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("29139", "10", "2016-04-16 10:01:56", "66.249.79.162", "145");
INSERT INTO `wp_gf_form_view` VALUES("29140", "3", "2016-04-16 10:01:56", "66.249.79.162", "157");
INSERT INTO `wp_gf_form_view` VALUES("29141", "10", "2016-04-16 11:18:49", "96.50.68.167", "78");
INSERT INTO `wp_gf_form_view` VALUES("29142", "3", "2016-04-16 11:18:51", "96.50.68.167", "86");
INSERT INTO `wp_gf_form_view` VALUES("29143", "10", "2016-04-16 12:05:38", "66.249.79.176", "21");
INSERT INTO `wp_gf_form_view` VALUES("29144", "3", "2016-04-16 12:05:38", "66.249.79.176", "20");
INSERT INTO `wp_gf_form_view` VALUES("29145", "10", "2016-04-16 13:32:46", "144.76.71.83", "15");
INSERT INTO `wp_gf_form_view` VALUES("29146", "3", "2016-04-16 13:32:49", "144.76.71.83", "16");
INSERT INTO `wp_gf_form_view` VALUES("29147", "10", "2016-04-16 14:15:17", "40.77.167.67", "10");
INSERT INTO `wp_gf_form_view` VALUES("29148", "3", "2016-04-16 14:15:18", "40.77.167.67", "10");
INSERT INTO `wp_gf_form_view` VALUES("29149", "10", "2016-04-16 15:18:33", "75.154.238.64", "20");
INSERT INTO `wp_gf_form_view` VALUES("29150", "3", "2016-04-16 15:18:34", "75.154.238.64", "21");
INSERT INTO `wp_gf_form_view` VALUES("29151", "10", "2016-04-16 16:08:08", "66.249.79.169", "100");
INSERT INTO `wp_gf_form_view` VALUES("29152", "3", "2016-04-16 16:08:09", "66.249.79.169", "102");
INSERT INTO `wp_gf_form_view` VALUES("29153", "1", "2016-04-16 16:54:26", "142.167.151.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("29154", "10", "2016-04-16 17:38:04", "66.249.79.176", "35");
INSERT INTO `wp_gf_form_view` VALUES("29155", "3", "2016-04-16 17:38:05", "66.249.79.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("29156", "10", "2016-04-16 18:30:00", "24.108.95.242", "21");
INSERT INTO `wp_gf_form_view` VALUES("29157", "3", "2016-04-16 18:30:02", "24.108.95.242", "21");
INSERT INTO `wp_gf_form_view` VALUES("29158", "11", "2016-04-16 18:33:15", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("29159", "3", "2016-04-16 19:26:57", "23.228.108.251", "18");
INSERT INTO `wp_gf_form_view` VALUES("29160", "10", "2016-04-16 19:26:58", "23.228.108.251", "15");
INSERT INTO `wp_gf_form_view` VALUES("29161", "3", "2016-04-16 20:03:13", "24.108.182.213", "26");
INSERT INTO `wp_gf_form_view` VALUES("29162", "10", "2016-04-16 20:03:13", "24.108.182.213", "25");
INSERT INTO `wp_gf_form_view` VALUES("29163", "3", "2016-04-16 21:10:10", "68.180.229.244", "26");
INSERT INTO `wp_gf_form_view` VALUES("29164", "10", "2016-04-16 21:15:19", "24.114.38.65", "28");
INSERT INTO `wp_gf_form_view` VALUES("29165", "10", "2016-04-16 22:10:01", "5.248.253.133", "35");
INSERT INTO `wp_gf_form_view` VALUES("29166", "3", "2016-04-16 22:10:02", "5.248.253.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("29167", "10", "2016-04-16 23:09:21", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("29168", "3", "2016-04-16 23:09:22", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("29169", "6", "2016-04-16 23:23:04", "51.255.65.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("29170", "3", "2016-04-17 00:10:11", "131.253.24.17", "21");
INSERT INTO `wp_gf_form_view` VALUES("29171", "10", "2016-04-17 00:10:11", "131.253.24.17", "21");
INSERT INTO `wp_gf_form_view` VALUES("29172", "3", "2016-04-17 01:07:26", "24.108.141.64", "90");
INSERT INTO `wp_gf_form_view` VALUES("29173", "10", "2016-04-17 01:07:26", "24.108.141.64", "90");
INSERT INTO `wp_gf_form_view` VALUES("29174", "3", "2016-04-17 02:10:14", "66.249.79.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("29175", "10", "2016-04-17 02:10:15", "66.249.79.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("29176", "3", "2016-04-17 03:16:41", "178.137.90.202", "51");
INSERT INTO `wp_gf_form_view` VALUES("29177", "10", "2016-04-17 03:16:42", "178.137.90.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("29178", "3", "2016-04-17 04:02:49", "68.180.229.244", "47");
INSERT INTO `wp_gf_form_view` VALUES("29179", "10", "2016-04-17 04:02:50", "68.180.229.244", "46");
INSERT INTO `wp_gf_form_view` VALUES("29180", "7", "2016-04-17 05:30:22", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29181", "3", "2016-04-17 05:30:24", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29182", "10", "2016-04-17 05:30:24", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29183", "3", "2016-04-17 06:38:01", "164.132.161.19", "11");
INSERT INTO `wp_gf_form_view` VALUES("29184", "10", "2016-04-17 06:38:02", "164.132.161.19", "10");
INSERT INTO `wp_gf_form_view` VALUES("29185", "3", "2016-04-17 07:25:34", "202.46.53.191", "6");
INSERT INTO `wp_gf_form_view` VALUES("29186", "10", "2016-04-17 07:25:35", "202.46.53.191", "5");
INSERT INTO `wp_gf_form_view` VALUES("29187", "3", "2016-04-17 08:21:15", "100.43.85.21", "58");
INSERT INTO `wp_gf_form_view` VALUES("29188", "10", "2016-04-17 08:21:18", "100.43.85.21", "56");
INSERT INTO `wp_gf_form_view` VALUES("29189", "3", "2016-04-17 09:06:37", "164.132.161.31", "38");
INSERT INTO `wp_gf_form_view` VALUES("29190", "10", "2016-04-17 09:06:38", "164.132.161.31", "35");
INSERT INTO `wp_gf_form_view` VALUES("29191", "9", "2016-04-17 09:55:38", "164.132.161.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("29192", "3", "2016-04-17 10:11:33", "62.210.162.184", "96");
INSERT INTO `wp_gf_form_view` VALUES("29193", "10", "2016-04-17 10:11:33", "62.210.162.184", "95");
INSERT INTO `wp_gf_form_view` VALUES("29194", "3", "2016-04-17 11:12:18", "89.46.89.166", "32");
INSERT INTO `wp_gf_form_view` VALUES("29195", "10", "2016-04-17 11:12:20", "89.46.89.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("29196", "3", "2016-04-17 12:18:16", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("29197", "10", "2016-04-17 12:18:17", "66.249.79.162", "21");
INSERT INTO `wp_gf_form_view` VALUES("29198", "3", "2016-04-17 13:06:31", "89.35.198.80", "27");
INSERT INTO `wp_gf_form_view` VALUES("29199", "10", "2016-04-17 13:06:32", "89.35.198.80", "25");
INSERT INTO `wp_gf_form_view` VALUES("29200", "1", "2016-04-17 13:48:03", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29201", "3", "2016-04-17 14:04:16", "66.249.79.162", "42");
INSERT INTO `wp_gf_form_view` VALUES("29202", "10", "2016-04-17 14:04:16", "66.249.79.162", "40");
INSERT INTO `wp_gf_form_view` VALUES("29203", "9", "2016-04-17 14:25:20", "93.115.135.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("29204", "10", "2016-04-17 15:39:34", "69.30.218.166", "49");
INSERT INTO `wp_gf_form_view` VALUES("29205", "3", "2016-04-17 15:40:50", "69.30.218.166", "36");
INSERT INTO `wp_gf_form_view` VALUES("29206", "3", "2016-04-17 16:08:14", "104.223.38.177", "108");
INSERT INTO `wp_gf_form_view` VALUES("29207", "10", "2016-04-17 16:08:14", "104.223.38.177", "106");
INSERT INTO `wp_gf_form_view` VALUES("29208", "6", "2016-04-17 16:56:17", "207.46.13.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("29209", "10", "2016-04-17 17:28:08", "40.77.167.91", "26");
INSERT INTO `wp_gf_form_view` VALUES("29210", "3", "2016-04-17 17:28:10", "40.77.167.91", "25");
INSERT INTO `wp_gf_form_view` VALUES("29211", "3", "2016-04-17 18:12:42", "96.50.76.81", "46");
INSERT INTO `wp_gf_form_view` VALUES("29212", "10", "2016-04-17 18:12:43", "96.50.76.81", "45");
INSERT INTO `wp_gf_form_view` VALUES("29213", "3", "2016-04-17 19:06:20", "68.180.229.244", "47");
INSERT INTO `wp_gf_form_view` VALUES("29214", "10", "2016-04-17 19:06:21", "68.180.229.244", "52");
INSERT INTO `wp_gf_form_view` VALUES("29215", "9", "2016-04-17 19:46:49", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("29216", "3", "2016-04-17 20:00:31", "73.77.79.54", "182");
INSERT INTO `wp_gf_form_view` VALUES("29217", "10", "2016-04-17 20:00:31", "73.77.79.54", "182");
INSERT INTO `wp_gf_form_view` VALUES("29218", "11", "2016-04-17 20:00:34", "73.77.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("29219", "2", "2016-04-17 20:01:20", "73.77.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("29220", "3", "2016-04-17 21:02:06", "151.80.31.107", "42");
INSERT INTO `wp_gf_form_view` VALUES("29221", "10", "2016-04-17 21:02:07", "151.80.31.107", "40");
INSERT INTO `wp_gf_form_view` VALUES("29222", "3", "2016-04-17 22:08:20", "66.249.79.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("29223", "10", "2016-04-17 22:08:21", "66.249.79.176", "33");
INSERT INTO `wp_gf_form_view` VALUES("29224", "3", "2016-04-17 23:01:17", "52.71.155.178", "69");
INSERT INTO `wp_gf_form_view` VALUES("29225", "10", "2016-04-17 23:01:17", "52.71.155.178", "67");
INSERT INTO `wp_gf_form_view` VALUES("29226", "3", "2016-04-18 00:19:45", "202.46.49.148", "31");
INSERT INTO `wp_gf_form_view` VALUES("29227", "10", "2016-04-18 00:19:46", "202.46.49.148", "31");
INSERT INTO `wp_gf_form_view` VALUES("29228", "3", "2016-04-18 01:05:48", "207.46.13.71", "28");
INSERT INTO `wp_gf_form_view` VALUES("29229", "10", "2016-04-18 01:05:49", "207.46.13.71", "32");
INSERT INTO `wp_gf_form_view` VALUES("29230", "3", "2016-04-18 02:26:20", "157.55.39.225", "51");
INSERT INTO `wp_gf_form_view` VALUES("29231", "10", "2016-04-18 02:26:21", "157.55.39.225", "50");
INSERT INTO `wp_gf_form_view` VALUES("29232", "11", "2016-04-18 02:38:20", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("29233", "10", "2016-04-18 03:04:23", "207.46.13.71", "11");
INSERT INTO `wp_gf_form_view` VALUES("29234", "3", "2016-04-18 03:04:23", "207.46.13.71", "10");
INSERT INTO `wp_gf_form_view` VALUES("29235", "3", "2016-04-18 04:14:30", "46.118.156.3", "24");
INSERT INTO `wp_gf_form_view` VALUES("29236", "3", "2016-04-18 04:14:30", "46.118.156.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("29237", "10", "2016-04-18 04:14:31", "46.118.156.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("29238", "3", "2016-04-18 05:00:11", "77.75.76.163", "10");
INSERT INTO `wp_gf_form_view` VALUES("29239", "10", "2016-04-18 05:00:11", "77.75.76.163", "10");
INSERT INTO `wp_gf_form_view` VALUES("29240", "3", "2016-04-18 06:05:20", "207.46.13.71", "628");
INSERT INTO `wp_gf_form_view` VALUES("29241", "10", "2016-04-18 06:05:30", "207.46.13.71", "595");
INSERT INTO `wp_gf_form_view` VALUES("29242", "11", "2016-04-18 06:37:49", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("29243", "2", "2016-04-18 06:37:59", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("29244", "1", "2016-04-18 06:48:14", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("29245", "8", "2016-04-18 06:55:45", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("29246", "3", "2016-04-18 07:00:01", "94.199.151.22", "238");
INSERT INTO `wp_gf_form_view` VALUES("29247", "10", "2016-04-18 07:00:19", "94.199.151.22", "225");
INSERT INTO `wp_gf_form_view` VALUES("29248", "3", "2016-04-18 08:23:19", "157.55.39.165", "17");
INSERT INTO `wp_gf_form_view` VALUES("29249", "10", "2016-04-18 08:23:20", "157.55.39.165", "16");
INSERT INTO `wp_gf_form_view` VALUES("29250", "6", "2016-04-18 08:59:41", "164.132.161.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("29251", "3", "2016-04-18 09:36:36", "68.180.229.244", "11");
INSERT INTO `wp_gf_form_view` VALUES("29252", "10", "2016-04-18 09:36:37", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("29253", "3", "2016-04-18 10:04:56", "66.249.79.162", "584");
INSERT INTO `wp_gf_form_view` VALUES("29254", "10", "2016-04-18 10:04:56", "66.249.79.162", "567");
INSERT INTO `wp_gf_form_view` VALUES("29255", "2", "2016-04-18 10:40:35", "157.55.39.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("29256", "1", "2016-04-18 10:52:36", "45.55.51.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("29257", "11", "2016-04-18 10:52:41", "45.55.51.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("29258", "5", "2016-04-18 10:58:46", "45.55.51.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("29259", "3", "2016-04-18 11:00:01", "45.55.51.193", "2113");
INSERT INTO `wp_gf_form_view` VALUES("29260", "10", "2016-04-18 11:00:02", "45.55.51.193", "1974");
INSERT INTO `wp_gf_form_view` VALUES("29261", "6", "2016-04-18 11:07:46", "45.55.51.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("29262", "9", "2016-04-18 11:16:01", "45.55.51.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("29263", "8", "2016-04-18 11:51:08", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("29264", "2", "2016-04-18 11:56:29", "45.55.51.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("29265", "3", "2016-04-18 12:00:02", "45.55.51.193", "483");
INSERT INTO `wp_gf_form_view` VALUES("29266", "10", "2016-04-18 12:00:03", "45.55.51.193", "463");
INSERT INTO `wp_gf_form_view` VALUES("29267", "8", "2016-04-18 12:10:25", "45.55.51.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("29268", "10", "2016-04-18 13:15:52", "202.46.51.100", "28");
INSERT INTO `wp_gf_form_view` VALUES("29269", "3", "2016-04-18 13:15:55", "202.46.51.100", "21");
INSERT INTO `wp_gf_form_view` VALUES("29270", "3", "2016-04-18 14:13:55", "157.55.39.225", "331");
INSERT INTO `wp_gf_form_view` VALUES("29271", "10", "2016-04-18 14:13:57", "157.55.39.225", "313");
INSERT INTO `wp_gf_form_view` VALUES("29272", "9", "2016-04-18 14:14:08", "157.55.39.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("29273", "3", "2016-04-18 15:17:32", "66.249.79.169", "96");
INSERT INTO `wp_gf_form_view` VALUES("29274", "10", "2016-04-18 15:17:34", "66.249.79.169", "97");
INSERT INTO `wp_gf_form_view` VALUES("29275", "1", "2016-04-18 15:56:27", "68.149.248.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("29276", "10", "2016-04-18 16:01:56", "157.55.39.225", "16");
INSERT INTO `wp_gf_form_view` VALUES("29277", "3", "2016-04-18 16:01:56", "157.55.39.225", "15");
INSERT INTO `wp_gf_form_view` VALUES("29278", "3", "2016-04-18 17:25:48", "66.249.79.169", "22");
INSERT INTO `wp_gf_form_view` VALUES("29279", "10", "2016-04-18 17:25:51", "66.249.79.169", "21");
INSERT INTO `wp_gf_form_view` VALUES("29280", "3", "2016-04-18 18:05:54", "220.181.108.186", "83");
INSERT INTO `wp_gf_form_view` VALUES("29281", "10", "2016-04-18 18:05:55", "220.181.108.186", "81");
INSERT INTO `wp_gf_form_view` VALUES("29282", "2", "2016-04-18 18:59:47", "46.118.115.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("29283", "3", "2016-04-18 19:00:01", "46.118.115.181", "187");
INSERT INTO `wp_gf_form_view` VALUES("29284", "10", "2016-04-18 19:00:01", "46.118.115.181", "179");
INSERT INTO `wp_gf_form_view` VALUES("29285", "3", "2016-04-18 20:24:09", "24.108.188.231", "21");
INSERT INTO `wp_gf_form_view` VALUES("29286", "10", "2016-04-18 20:24:10", "24.108.188.231", "20");
INSERT INTO `wp_gf_form_view` VALUES("29287", "3", "2016-04-18 21:08:05", "68.180.229.244", "122");
INSERT INTO `wp_gf_form_view` VALUES("29288", "10", "2016-04-18 21:08:08", "68.180.229.244", "120");
INSERT INTO `wp_gf_form_view` VALUES("29289", "3", "2016-04-18 22:13:18", "66.249.79.176", "106");
INSERT INTO `wp_gf_form_view` VALUES("29290", "10", "2016-04-18 22:13:19", "66.249.79.176", "105");
INSERT INTO `wp_gf_form_view` VALUES("29291", "3", "2016-04-18 23:01:06", "66.249.79.162", "31");
INSERT INTO `wp_gf_form_view` VALUES("29292", "10", "2016-04-18 23:01:06", "66.249.79.162", "30");
INSERT INTO `wp_gf_form_view` VALUES("29293", "3", "2016-04-19 00:02:02", "66.249.79.162", "35");
INSERT INTO `wp_gf_form_view` VALUES("29294", "10", "2016-04-19 00:02:02", "66.249.79.162", "35");
INSERT INTO `wp_gf_form_view` VALUES("29295", "3", "2016-04-19 01:00:00", "46.161.9.24", "78");
INSERT INTO `wp_gf_form_view` VALUES("29296", "10", "2016-04-19 01:00:00", "46.161.9.24", "76");
INSERT INTO `wp_gf_form_view` VALUES("29297", "3", "2016-04-19 02:07:24", "66.249.79.176", "246");
INSERT INTO `wp_gf_form_view` VALUES("29298", "10", "2016-04-19 02:07:24", "66.249.79.176", "241");
INSERT INTO `wp_gf_form_view` VALUES("29299", "11", "2016-04-19 02:08:34", "220.241.209.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("29300", "2", "2016-04-19 02:09:31", "220.241.209.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("29301", "3", "2016-04-19 03:33:52", "24.108.172.241", "20");
INSERT INTO `wp_gf_form_view` VALUES("29302", "10", "2016-04-19 03:33:53", "24.108.172.241", "20");
INSERT INTO `wp_gf_form_view` VALUES("29303", "3", "2016-04-19 04:05:43", "220.181.108.82", "31");
INSERT INTO `wp_gf_form_view` VALUES("29304", "10", "2016-04-19 04:05:43", "220.181.108.82", "31");
INSERT INTO `wp_gf_form_view` VALUES("29305", "3", "2016-04-19 05:07:25", "199.21.99.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("29306", "10", "2016-04-19 05:07:25", "199.21.99.202", "46");
INSERT INTO `wp_gf_form_view` VALUES("29307", "3", "2016-04-19 06:05:54", "62.210.162.184", "32");
INSERT INTO `wp_gf_form_view` VALUES("29308", "10", "2016-04-19 06:05:56", "62.210.162.184", "30");
INSERT INTO `wp_gf_form_view` VALUES("29309", "3", "2016-04-19 07:11:18", "184.66.242.187", "51");
INSERT INTO `wp_gf_form_view` VALUES("29310", "10", "2016-04-19 07:11:18", "184.66.242.187", "50");
INSERT INTO `wp_gf_form_view` VALUES("29311", "1", "2016-04-19 07:18:54", "184.66.242.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("29312", "3", "2016-04-19 08:16:10", "66.249.79.176", "44");
INSERT INTO `wp_gf_form_view` VALUES("29313", "10", "2016-04-19 08:16:11", "66.249.79.176", "40");
INSERT INTO `wp_gf_form_view` VALUES("29314", "3", "2016-04-19 09:06:47", "66.249.79.176", "26");
INSERT INTO `wp_gf_form_view` VALUES("29315", "10", "2016-04-19 09:06:47", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("29316", "3", "2016-04-19 10:00:10", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("29317", "10", "2016-04-19 10:00:10", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("29318", "10", "2016-04-19 11:15:59", "66.249.79.169", "47");
INSERT INTO `wp_gf_form_view` VALUES("29319", "3", "2016-04-19 11:17:27", "68.180.229.244", "46");
INSERT INTO `wp_gf_form_view` VALUES("29320", "2", "2016-04-19 11:40:09", "158.69.225.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("29321", "3", "2016-04-19 12:07:19", "68.180.229.244", "24");
INSERT INTO `wp_gf_form_view` VALUES("29322", "10", "2016-04-19 12:07:20", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29323", "10", "2016-04-19 13:11:18", "207.46.13.147", "21");
INSERT INTO `wp_gf_form_view` VALUES("29324", "3", "2016-04-19 13:11:19", "207.46.13.147", "22");
INSERT INTO `wp_gf_form_view` VALUES("29325", "3", "2016-04-19 14:22:30", "66.249.79.169", "44");
INSERT INTO `wp_gf_form_view` VALUES("29326", "10", "2016-04-19 14:22:30", "66.249.79.169", "40");
INSERT INTO `wp_gf_form_view` VALUES("29327", "3", "2016-04-19 15:00:14", "68.180.229.244", "28");
INSERT INTO `wp_gf_form_view` VALUES("29328", "10", "2016-04-19 15:00:14", "68.180.229.244", "31");
INSERT INTO `wp_gf_form_view` VALUES("29329", "3", "2016-04-19 16:13:45", "162.157.97.1", "20");
INSERT INTO `wp_gf_form_view` VALUES("29330", "10", "2016-04-19 16:13:46", "162.157.97.1", "20");
INSERT INTO `wp_gf_form_view` VALUES("29331", "10", "2016-04-19 17:01:27", "68.180.229.244", "82");
INSERT INTO `wp_gf_form_view` VALUES("29332", "3", "2016-04-19 17:01:27", "68.180.229.244", "81");
INSERT INTO `wp_gf_form_view` VALUES("29333", "12", "2016-04-19 17:59:55", "24.108.147.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("29334", "3", "2016-04-19 18:50:15", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("29335", "10", "2016-04-19 18:50:16", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("29336", "3", "2016-04-19 19:02:47", "66.249.79.169", "43");
INSERT INTO `wp_gf_form_view` VALUES("29337", "10", "2016-04-19 19:02:48", "66.249.79.169", "48");
INSERT INTO `wp_gf_form_view` VALUES("29338", "12", "2016-04-19 19:21:49", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("29339", "3", "2016-04-19 20:03:25", "173.180.113.56", "55");
INSERT INTO `wp_gf_form_view` VALUES("29340", "10", "2016-04-19 20:03:25", "173.180.113.56", "55");
INSERT INTO `wp_gf_form_view` VALUES("29341", "3", "2016-04-19 21:08:47", "184.69.23.166", "31");
INSERT INTO `wp_gf_form_view` VALUES("29342", "10", "2016-04-19 21:08:48", "184.69.23.166", "40");
INSERT INTO `wp_gf_form_view` VALUES("29343", "3", "2016-04-19 22:09:42", "66.249.79.176", "38");
INSERT INTO `wp_gf_form_view` VALUES("29344", "10", "2016-04-19 22:09:43", "66.249.79.176", "55");
INSERT INTO `wp_gf_form_view` VALUES("29345", "3", "2016-04-19 23:43:51", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("29346", "10", "2016-04-19 23:43:52", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("29347", "3", "2016-04-20 00:06:44", "164.132.161.61", "26");
INSERT INTO `wp_gf_form_view` VALUES("29348", "10", "2016-04-20 00:06:44", "164.132.161.61", "25");
INSERT INTO `wp_gf_form_view` VALUES("29349", "12", "2016-04-20 00:55:48", "207.216.68.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("29350", "3", "2016-04-20 01:05:32", "157.55.39.114", "5");
INSERT INTO `wp_gf_form_view` VALUES("29351", "10", "2016-04-20 01:05:32", "157.55.39.114", "5");
INSERT INTO `wp_gf_form_view` VALUES("29352", "3", "2016-04-20 02:05:25", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29353", "10", "2016-04-20 02:05:26", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("29354", "3", "2016-04-20 03:10:25", "68.180.229.244", "35");
INSERT INTO `wp_gf_form_view` VALUES("29355", "10", "2016-04-20 03:10:26", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("29356", "3", "2016-04-20 04:03:14", "24.68.132.183", "47");
INSERT INTO `wp_gf_form_view` VALUES("29357", "10", "2016-04-20 04:03:14", "24.68.132.183", "55");
INSERT INTO `wp_gf_form_view` VALUES("29358", "3", "2016-04-20 05:37:38", "50.65.49.151", "15");
INSERT INTO `wp_gf_form_view` VALUES("29359", "10", "2016-04-20 05:37:39", "50.65.49.151", "15");
INSERT INTO `wp_gf_form_view` VALUES("29360", "3", "2016-04-20 07:32:19", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("29361", "10", "2016-04-20 07:32:22", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("29362", "3", "2016-04-20 08:29:13", "202.46.55.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("29363", "10", "2016-04-20 08:29:16", "202.46.55.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("29364", "3", "2016-04-20 09:41:45", "66.249.79.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("29365", "10", "2016-04-20 09:41:46", "66.249.79.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("29366", "3", "2016-04-20 10:01:00", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("29367", "10", "2016-04-20 10:01:00", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29368", "3", "2016-04-20 11:13:11", "157.55.39.32", "5");
INSERT INTO `wp_gf_form_view` VALUES("29369", "10", "2016-04-20 11:13:13", "157.55.39.32", "5");
INSERT INTO `wp_gf_form_view` VALUES("29370", "3", "2016-04-20 12:31:24", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("29371", "10", "2016-04-20 12:31:27", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("29372", "10", "2016-04-20 13:02:28", "144.76.8.132", "47");
INSERT INTO `wp_gf_form_view` VALUES("29373", "3", "2016-04-20 13:02:28", "144.76.8.132", "43");
INSERT INTO `wp_gf_form_view` VALUES("29374", "10", "2016-04-20 14:11:29", "176.9.10.227", "42");
INSERT INTO `wp_gf_form_view` VALUES("29375", "3", "2016-04-20 14:11:59", "176.9.10.227", "45");
INSERT INTO `wp_gf_form_view` VALUES("29376", "3", "2016-04-20 15:11:45", "5.248.253.133", "39");
INSERT INTO `wp_gf_form_view` VALUES("29377", "3", "2016-04-20 15:11:45", "5.248.253.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("29378", "10", "2016-04-20 15:11:46", "5.248.253.133", "40");
INSERT INTO `wp_gf_form_view` VALUES("29379", "10", "2016-04-20 15:11:46", "5.248.253.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("29380", "3", "2016-04-20 16:02:32", "69.58.109.50", "113");
INSERT INTO `wp_gf_form_view` VALUES("29381", "10", "2016-04-20 16:02:32", "69.58.109.50", "117");
INSERT INTO `wp_gf_form_view` VALUES("29382", "11", "2016-04-20 16:31:34", "24.108.28.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("29383", "12", "2016-04-20 16:46:21", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("29384", "3", "2016-04-20 17:36:41", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("29385", "10", "2016-04-20 17:36:42", "66.249.79.162", "21");
INSERT INTO `wp_gf_form_view` VALUES("29386", "3", "2016-04-20 18:03:07", "207.46.13.181", "120");
INSERT INTO `wp_gf_form_view` VALUES("29387", "10", "2016-04-20 18:03:07", "207.46.13.181", "120");
INSERT INTO `wp_gf_form_view` VALUES("29388", "11", "2016-04-20 18:33:24", "205.250.212.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("29389", "3", "2016-04-20 19:01:57", "24.108.28.160", "55");
INSERT INTO `wp_gf_form_view` VALUES("29390", "10", "2016-04-20 19:01:59", "24.108.28.160", "55");
INSERT INTO `wp_gf_form_view` VALUES("29391", "11", "2016-04-20 19:48:40", "24.108.6.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("29392", "1", "2016-04-20 19:58:19", "24.108.28.160", "2");
INSERT INTO `wp_gf_form_view` VALUES("29393", "3", "2016-04-20 20:14:24", "70.67.233.215", "15");
INSERT INTO `wp_gf_form_view` VALUES("29394", "10", "2016-04-20 20:14:25", "70.67.233.215", "15");
INSERT INTO `wp_gf_form_view` VALUES("29395", "12", "2016-04-20 20:16:13", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("29396", "3", "2016-04-20 21:07:45", "164.132.161.81", "30");
INSERT INTO `wp_gf_form_view` VALUES("29397", "10", "2016-04-20 21:07:48", "164.132.161.81", "30");
INSERT INTO `wp_gf_form_view` VALUES("29398", "11", "2016-04-20 22:22:09", "202.46.53.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("29399", "3", "2016-04-20 22:22:10", "202.46.53.159", "10");
INSERT INTO `wp_gf_form_view` VALUES("29400", "10", "2016-04-20 22:22:10", "202.46.53.159", "10");
INSERT INTO `wp_gf_form_view` VALUES("29401", "3", "2016-04-20 23:01:57", "184.69.27.126", "143");
INSERT INTO `wp_gf_form_view` VALUES("29402", "10", "2016-04-20 23:01:58", "184.69.27.126", "140");
INSERT INTO `wp_gf_form_view` VALUES("29403", "3", "2016-04-21 00:07:40", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29404", "10", "2016-04-21 00:07:40", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29405", "3", "2016-04-21 01:01:05", "24.114.43.161", "45");
INSERT INTO `wp_gf_form_view` VALUES("29406", "10", "2016-04-21 01:01:09", "24.114.43.161", "45");
INSERT INTO `wp_gf_form_view` VALUES("29407", "12", "2016-04-21 01:33:37", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29408", "10", "2016-04-21 02:00:10", "51.255.65.11", "11");
INSERT INTO `wp_gf_form_view` VALUES("29409", "3", "2016-04-21 02:00:10", "51.255.65.11", "10");
INSERT INTO `wp_gf_form_view` VALUES("29410", "10", "2016-04-21 03:03:41", "68.180.229.244", "22");
INSERT INTO `wp_gf_form_view` VALUES("29411", "3", "2016-04-21 03:03:42", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("29412", "3", "2016-04-21 04:16:51", "68.180.229.244", "67");
INSERT INTO `wp_gf_form_view` VALUES("29413", "10", "2016-04-21 04:16:51", "68.180.229.244", "70");
INSERT INTO `wp_gf_form_view` VALUES("29414", "12", "2016-04-21 05:20:22", "66.249.84.212", "2");
INSERT INTO `wp_gf_form_view` VALUES("29415", "3", "2016-04-21 05:20:23", "66.249.84.212", "33");
INSERT INTO `wp_gf_form_view` VALUES("29416", "10", "2016-04-21 05:20:23", "66.249.84.212", "32");
INSERT INTO `wp_gf_form_view` VALUES("29417", "9", "2016-04-21 06:55:36", "104.223.42.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("29418", "3", "2016-04-21 06:55:37", "104.223.42.46", "16");
INSERT INTO `wp_gf_form_view` VALUES("29419", "10", "2016-04-21 06:55:37", "104.223.42.46", "15");
INSERT INTO `wp_gf_form_view` VALUES("29420", "3", "2016-04-21 07:07:25", "51.255.65.57", "12");
INSERT INTO `wp_gf_form_view` VALUES("29421", "10", "2016-04-21 07:41:42", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29422", "3", "2016-04-21 08:23:37", "68.180.229.244", "11");
INSERT INTO `wp_gf_form_view` VALUES("29423", "10", "2016-04-21 08:23:38", "68.180.229.244", "11");
INSERT INTO `wp_gf_form_view` VALUES("29424", "3", "2016-04-21 09:08:18", "51.255.65.30", "21");
INSERT INTO `wp_gf_form_view` VALUES("29425", "10", "2016-04-21 09:08:19", "51.255.65.30", "20");
INSERT INTO `wp_gf_form_view` VALUES("29426", "3", "2016-04-21 10:33:16", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29427", "10", "2016-04-21 10:33:17", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29428", "9", "2016-04-21 10:47:29", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("29429", "3", "2016-04-21 11:17:52", "202.46.49.208", "102");
INSERT INTO `wp_gf_form_view` VALUES("29430", "10", "2016-04-21 11:17:54", "202.46.49.208", "100");
INSERT INTO `wp_gf_form_view` VALUES("29431", "11", "2016-04-21 11:55:42", "1.124.49.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("29432", "3", "2016-04-21 12:08:59", "151.73.194.5", "181");
INSERT INTO `wp_gf_form_view` VALUES("29433", "10", "2016-04-21 12:09:00", "151.73.194.5", "181");
INSERT INTO `wp_gf_form_view` VALUES("29434", "11", "2016-04-21 12:09:05", "151.73.194.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("29435", "12", "2016-04-21 12:09:45", "151.73.194.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("29436", "2", "2016-04-21 12:10:32", "151.73.194.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("29437", "3", "2016-04-21 13:26:02", "51.255.51.28", "37");
INSERT INTO `wp_gf_form_view` VALUES("29438", "10", "2016-04-21 13:26:26", "51.255.51.28", "36");
INSERT INTO `wp_gf_form_view` VALUES("29439", "11", "2016-04-21 13:59:49", "81.68.74.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("29440", "3", "2016-04-21 14:00:00", "81.68.74.236", "156");
INSERT INTO `wp_gf_form_view` VALUES("29441", "10", "2016-04-21 14:00:00", "81.68.74.236", "156");
INSERT INTO `wp_gf_form_view` VALUES("29442", "12", "2016-04-21 14:00:17", "81.68.74.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("29443", "2", "2016-04-21 14:00:55", "81.68.74.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("29444", "3", "2016-04-21 15:09:48", "178.137.90.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("29445", "3", "2016-04-21 15:09:48", "178.137.90.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("29446", "10", "2016-04-21 15:09:48", "178.137.90.202", "29");
INSERT INTO `wp_gf_form_view` VALUES("29447", "10", "2016-04-21 15:09:48", "178.137.90.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("29448", "11", "2016-04-21 16:04:01", "24.68.96.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("29449", "3", "2016-04-21 16:04:08", "24.68.96.67", "75");
INSERT INTO `wp_gf_form_view` VALUES("29450", "10", "2016-04-21 16:04:08", "24.68.96.67", "75");
INSERT INTO `wp_gf_form_view` VALUES("29451", "3", "2016-04-21 17:00:39", "24.108.175.179", "77");
INSERT INTO `wp_gf_form_view` VALUES("29452", "10", "2016-04-21 17:00:40", "24.108.175.179", "76");
INSERT INTO `wp_gf_form_view` VALUES("29453", "3", "2016-04-21 18:16:26", "68.180.229.244", "26");
INSERT INTO `wp_gf_form_view` VALUES("29454", "10", "2016-04-21 18:16:28", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("29455", "3", "2016-04-21 19:05:13", "184.66.32.160", "87");
INSERT INTO `wp_gf_form_view` VALUES("29456", "10", "2016-04-21 19:05:14", "184.66.32.160", "78");
INSERT INTO `wp_gf_form_view` VALUES("29457", "3", "2016-04-21 20:20:06", "75.154.238.64", "40");
INSERT INTO `wp_gf_form_view` VALUES("29458", "10", "2016-04-21 20:20:08", "75.154.238.64", "40");
INSERT INTO `wp_gf_form_view` VALUES("29459", "10", "2016-04-21 21:00:50", "216.113.222.72", "81");
INSERT INTO `wp_gf_form_view` VALUES("29460", "3", "2016-04-21 21:00:50", "216.113.222.72", "83");
INSERT INTO `wp_gf_form_view` VALUES("29461", "3", "2016-04-21 22:12:11", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("29462", "10", "2016-04-21 22:12:12", "68.180.229.244", "27");
INSERT INTO `wp_gf_form_view` VALUES("29463", "3", "2016-04-21 23:24:23", "216.113.222.72", "88");
INSERT INTO `wp_gf_form_view` VALUES("29464", "3", "2016-04-21 23:24:23", "216.113.222.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("29465", "3", "2016-04-21 23:24:23", "216.113.222.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("29466", "10", "2016-04-21 23:24:35", "216.113.222.72", "89");
INSERT INTO `wp_gf_form_view` VALUES("29467", "10", "2016-04-21 23:24:35", "216.113.222.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("29468", "10", "2016-04-21 23:24:35", "216.113.222.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("29469", "3", "2016-04-22 01:07:41", "51.255.65.27", "21");
INSERT INTO `wp_gf_form_view` VALUES("29470", "10", "2016-04-22 01:07:46", "51.255.65.27", "15");
INSERT INTO `wp_gf_form_view` VALUES("29471", "3", "2016-04-22 02:15:12", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("29472", "10", "2016-04-22 02:15:13", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("29473", "12", "2016-04-22 03:07:16", "68.180.229.244", "2");
INSERT INTO `wp_gf_form_view` VALUES("29474", "3", "2016-04-22 03:07:18", "68.180.229.244", "176");
INSERT INTO `wp_gf_form_view` VALUES("29475", "10", "2016-04-22 03:07:18", "68.180.229.244", "176");
INSERT INTO `wp_gf_form_view` VALUES("29476", "5", "2016-04-22 03:47:55", "164.132.161.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("29477", "11", "2016-04-22 03:54:06", "86.123.245.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("29478", "2", "2016-04-22 03:55:11", "86.123.245.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("29479", "3", "2016-04-22 04:14:46", "24.69.23.114", "50");
INSERT INTO `wp_gf_form_view` VALUES("29480", "10", "2016-04-22 04:14:46", "24.69.23.114", "50");
INSERT INTO `wp_gf_form_view` VALUES("29481", "3", "2016-04-22 05:40:16", "164.132.161.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("29482", "10", "2016-04-22 07:02:14", "66.249.79.176", "65");
INSERT INTO `wp_gf_form_view` VALUES("29483", "3", "2016-04-22 07:02:15", "66.249.79.176", "66");
INSERT INTO `wp_gf_form_view` VALUES("29484", "11", "2016-04-22 07:22:45", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29485", "8", "2016-04-22 07:35:38", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("29486", "10", "2016-04-22 08:53:17", "207.46.13.119", "5");
INSERT INTO `wp_gf_form_view` VALUES("29487", "3", "2016-04-22 08:53:18", "207.46.13.119", "5");
INSERT INTO `wp_gf_form_view` VALUES("29488", "10", "2016-04-22 09:25:10", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("29489", "3", "2016-04-22 09:25:10", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("29490", "3", "2016-04-22 10:18:53", "68.180.229.244", "144");
INSERT INTO `wp_gf_form_view` VALUES("29491", "10", "2016-04-22 10:18:54", "68.180.229.244", "132");
INSERT INTO `wp_gf_form_view` VALUES("29492", "8", "2016-04-22 10:18:55", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29493", "9", "2016-04-22 10:18:55", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29494", "11", "2016-04-22 10:46:45", "104.236.239.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("29495", "12", "2016-04-22 10:46:47", "104.236.239.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("29496", "2", "2016-04-22 10:46:48", "104.236.239.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("29497", "10", "2016-04-22 11:06:34", "62.210.162.184", "15");
INSERT INTO `wp_gf_form_view` VALUES("29498", "3", "2016-04-22 11:06:34", "62.210.162.184", "15");
INSERT INTO `wp_gf_form_view` VALUES("29499", "10", "2016-04-22 12:00:55", "51.255.65.90", "85");
INSERT INTO `wp_gf_form_view` VALUES("29500", "3", "2016-04-22 12:00:56", "51.255.65.90", "88");
INSERT INTO `wp_gf_form_view` VALUES("29501", "10", "2016-04-22 13:00:18", "157.55.39.156", "40");
INSERT INTO `wp_gf_form_view` VALUES("29502", "3", "2016-04-22 13:00:19", "157.55.39.156", "41");
INSERT INTO `wp_gf_form_view` VALUES("29503", "10", "2016-04-22 14:18:12", "62.210.162.184", "16");
INSERT INTO `wp_gf_form_view` VALUES("29504", "3", "2016-04-22 14:18:13", "62.210.162.184", "15");
INSERT INTO `wp_gf_form_view` VALUES("29505", "3", "2016-04-22 15:07:22", "202.46.58.56", "287");
INSERT INTO `wp_gf_form_view` VALUES("29506", "10", "2016-04-22 15:07:25", "202.46.58.56", "275");
INSERT INTO `wp_gf_form_view` VALUES("29507", "1", "2016-04-22 15:49:57", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("29508", "9", "2016-04-22 15:50:24", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("29509", "10", "2016-04-22 16:02:00", "62.210.162.184", "631");
INSERT INTO `wp_gf_form_view` VALUES("29510", "3", "2016-04-22 16:02:01", "62.210.162.184", "653");
INSERT INTO `wp_gf_form_view` VALUES("29511", "11", "2016-04-22 16:47:02", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("29512", "2", "2016-04-22 16:47:06", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("29513", "12", "2016-04-22 16:48:56", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("29514", "1", "2016-04-22 16:49:40", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("29515", "8", "2016-04-22 16:55:08", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("29516", "9", "2016-04-22 16:55:16", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("29517", "5", "2016-04-22 16:56:06", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("29518", "10", "2016-04-22 17:00:00", "5.9.98.130", "374");
INSERT INTO `wp_gf_form_view` VALUES("29519", "3", "2016-04-22 17:00:00", "5.9.98.130", "350");
INSERT INTO `wp_gf_form_view` VALUES("29520", "6", "2016-04-22 17:00:16", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("29521", "10", "2016-04-22 18:11:01", "164.132.161.80", "16");
INSERT INTO `wp_gf_form_view` VALUES("29522", "3", "2016-04-22 18:11:02", "164.132.161.80", "15");
INSERT INTO `wp_gf_form_view` VALUES("29523", "3", "2016-04-22 19:05:10", "157.55.39.199", "21");
INSERT INTO `wp_gf_form_view` VALUES("29524", "10", "2016-04-22 19:05:11", "157.55.39.199", "20");
INSERT INTO `wp_gf_form_view` VALUES("29525", "3", "2016-04-22 20:11:35", "77.75.78.166", "35");
INSERT INTO `wp_gf_form_view` VALUES("29526", "10", "2016-04-22 20:11:37", "77.75.78.166", "31");
INSERT INTO `wp_gf_form_view` VALUES("29527", "12", "2016-04-22 20:50:49", "207.46.13.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("29528", "9", "2016-04-22 21:21:23", "51.255.65.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("29529", "10", "2016-04-22 21:21:25", "51.255.65.55", "80");
INSERT INTO `wp_gf_form_view` VALUES("29530", "3", "2016-04-22 21:21:26", "51.255.65.55", "81");
INSERT INTO `wp_gf_form_view` VALUES("29531", "10", "2016-04-22 22:24:00", "69.63.185.118", "25");
INSERT INTO `wp_gf_form_view` VALUES("29532", "3", "2016-04-22 22:24:01", "69.63.185.118", "25");
INSERT INTO `wp_gf_form_view` VALUES("29533", "1", "2016-04-22 22:27:27", "96.50.6.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29534", "5", "2016-04-22 23:23:12", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29535", "10", "2016-04-22 23:23:13", "68.180.229.244", "91");
INSERT INTO `wp_gf_form_view` VALUES("29536", "3", "2016-04-22 23:23:15", "68.180.229.244", "92");
INSERT INTO `wp_gf_form_view` VALUES("29537", "10", "2016-04-23 00:11:30", "68.180.229.244", "35");
INSERT INTO `wp_gf_form_view` VALUES("29538", "3", "2016-04-23 00:11:30", "68.180.229.244", "36");
INSERT INTO `wp_gf_form_view` VALUES("29539", "10", "2016-04-23 01:05:17", "96.50.25.109", "61");
INSERT INTO `wp_gf_form_view` VALUES("29540", "3", "2016-04-23 01:05:18", "96.50.25.109", "65");
INSERT INTO `wp_gf_form_view` VALUES("29541", "3", "2016-04-23 02:10:54", "202.46.51.204", "21");
INSERT INTO `wp_gf_form_view` VALUES("29542", "10", "2016-04-23 02:10:54", "202.46.51.204", "20");
INSERT INTO `wp_gf_form_view` VALUES("29543", "10", "2016-04-23 03:05:22", "151.80.31.161", "2706");
INSERT INTO `wp_gf_form_view` VALUES("29544", "3", "2016-04-23 03:05:22", "151.80.31.161", "2266");
INSERT INTO `wp_gf_form_view` VALUES("29545", "11", "2016-04-23 03:11:03", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("29546", "2", "2016-04-23 03:11:06", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("29547", "12", "2016-04-23 03:12:00", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("29548", "1", "2016-04-23 03:12:55", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("29549", "5", "2016-04-23 03:15:00", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("29550", "8", "2016-04-23 03:17:31", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("29551", "9", "2016-04-23 03:17:36", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("29552", "10", "2016-04-23 04:13:21", "207.46.13.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("29553", "3", "2016-04-23 04:13:23", "207.46.13.169", "16");
INSERT INTO `wp_gf_form_view` VALUES("29554", "8", "2016-04-23 05:01:51", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29555", "10", "2016-04-23 05:01:51", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29556", "3", "2016-04-23 05:01:51", "68.180.229.244", "22");
INSERT INTO `wp_gf_form_view` VALUES("29557", "3", "2016-04-23 06:31:23", "51.255.65.8", "6");
INSERT INTO `wp_gf_form_view` VALUES("29558", "10", "2016-04-23 06:39:55", "220.181.108.141", "5");
INSERT INTO `wp_gf_form_view` VALUES("29559", "10", "2016-04-23 08:04:00", "51.255.65.41", "15");
INSERT INTO `wp_gf_form_view` VALUES("29560", "3", "2016-04-23 08:04:01", "51.255.65.41", "15");
INSERT INTO `wp_gf_form_view` VALUES("29561", "8", "2016-04-23 08:52:25", "207.46.13.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("29562", "11", "2016-04-23 09:27:27", "69.30.198.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("29563", "10", "2016-04-23 09:27:30", "69.30.198.178", "70");
INSERT INTO `wp_gf_form_view` VALUES("29564", "3", "2016-04-23 09:27:31", "69.30.198.178", "70");
INSERT INTO `wp_gf_form_view` VALUES("29565", "10", "2016-04-23 11:10:44", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("29566", "3", "2016-04-23 11:10:48", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("29567", "3", "2016-04-23 12:10:21", "40.77.167.84", "11");
INSERT INTO `wp_gf_form_view` VALUES("29568", "10", "2016-04-23 12:10:21", "40.77.167.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("29569", "10", "2016-04-23 13:05:09", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("29570", "3", "2016-04-23 13:05:10", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("29571", "10", "2016-04-23 14:01:24", "89.46.89.137", "85");
INSERT INTO `wp_gf_form_view` VALUES("29572", "3", "2016-04-23 14:01:25", "89.46.89.137", "91");
INSERT INTO `wp_gf_form_view` VALUES("29573", "1", "2016-04-23 14:47:41", "182.75.235.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("29574", "10", "2016-04-23 15:05:22", "24.108.23.50", "55");
INSERT INTO `wp_gf_form_view` VALUES("29575", "3", "2016-04-23 15:05:22", "24.108.23.50", "56");
INSERT INTO `wp_gf_form_view` VALUES("29576", "1", "2016-04-23 15:26:42", "107.150.74.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("29577", "10", "2016-04-23 16:12:07", "66.249.79.162", "75");
INSERT INTO `wp_gf_form_view` VALUES("29578", "3", "2016-04-23 16:12:08", "66.249.79.162", "76");
INSERT INTO `wp_gf_form_view` VALUES("29579", "2", "2016-04-23 16:16:26", "104.223.38.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("29580", "10", "2016-04-23 17:02:30", "202.46.58.91", "47");
INSERT INTO `wp_gf_form_view` VALUES("29581", "3", "2016-04-23 17:02:31", "202.46.58.91", "52");
INSERT INTO `wp_gf_form_view` VALUES("29582", "10", "2016-04-23 18:07:52", "151.80.31.164", "60");
INSERT INTO `wp_gf_form_view` VALUES("29583", "3", "2016-04-23 18:07:52", "151.80.31.164", "60");
INSERT INTO `wp_gf_form_view` VALUES("29584", "11", "2016-04-23 18:33:31", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("29585", "3", "2016-04-23 19:05:32", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("29586", "10", "2016-04-23 19:52:24", "62.210.162.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("29587", "3", "2016-04-23 20:19:43", "154.20.37.37", "68");
INSERT INTO `wp_gf_form_view` VALUES("29588", "10", "2016-04-23 20:19:44", "154.20.37.37", "70");
INSERT INTO `wp_gf_form_view` VALUES("29589", "10", "2016-04-23 21:49:21", "134.249.55.100", "40");
INSERT INTO `wp_gf_form_view` VALUES("29590", "3", "2016-04-23 21:49:22", "134.249.55.100", "40");
INSERT INTO `wp_gf_form_view` VALUES("29591", "2", "2016-04-23 21:57:22", "52.39.107.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("29592", "10", "2016-04-23 22:31:04", "154.20.5.76", "35");
INSERT INTO `wp_gf_form_view` VALUES("29593", "3", "2016-04-23 22:31:06", "154.20.5.76", "37");
INSERT INTO `wp_gf_form_view` VALUES("29594", "10", "2016-04-23 23:04:14", "66.249.79.169", "31");
INSERT INTO `wp_gf_form_view` VALUES("29595", "3", "2016-04-23 23:04:14", "66.249.79.169", "31");
INSERT INTO `wp_gf_form_view` VALUES("29596", "10", "2016-04-24 00:10:49", "199.59.148.210", "16");
INSERT INTO `wp_gf_form_view` VALUES("29597", "3", "2016-04-24 00:10:50", "199.59.148.210", "15");
INSERT INTO `wp_gf_form_view` VALUES("29598", "3", "2016-04-24 01:02:24", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("29599", "10", "2016-04-24 01:38:01", "220.181.108.144", "5");
INSERT INTO `wp_gf_form_view` VALUES("29600", "3", "2016-04-24 02:31:11", "24.108.190.213", "30");
INSERT INTO `wp_gf_form_view` VALUES("29601", "10", "2016-04-24 02:31:12", "24.108.190.213", "30");
INSERT INTO `wp_gf_form_view` VALUES("29602", "3", "2016-04-24 03:58:12", "202.46.48.145", "10");
INSERT INTO `wp_gf_form_view` VALUES("29603", "3", "2016-04-24 03:58:12", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("29604", "10", "2016-04-24 03:58:13", "202.46.48.145", "10");
INSERT INTO `wp_gf_form_view` VALUES("29605", "3", "2016-04-24 04:02:30", "66.249.79.162", "46");
INSERT INTO `wp_gf_form_view` VALUES("29606", "10", "2016-04-24 04:02:30", "66.249.79.162", "48");
INSERT INTO `wp_gf_form_view` VALUES("29607", "9", "2016-04-24 04:30:26", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("29608", "3", "2016-04-24 05:15:52", "66.249.79.176", "70");
INSERT INTO `wp_gf_form_view` VALUES("29609", "10", "2016-04-24 05:16:01", "66.249.79.176", "71");
INSERT INTO `wp_gf_form_view` VALUES("29610", "1", "2016-04-24 05:35:41", "24.69.35.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("29611", "3", "2016-04-24 06:18:30", "77.75.79.95", "18");
INSERT INTO `wp_gf_form_view` VALUES("29612", "10", "2016-04-24 06:18:33", "77.75.79.95", "15");
INSERT INTO `wp_gf_form_view` VALUES("29613", "3", "2016-04-24 07:03:04", "77.75.79.101", "40");
INSERT INTO `wp_gf_form_view` VALUES("29614", "10", "2016-04-24 07:03:05", "77.75.79.101", "35");
INSERT INTO `wp_gf_form_view` VALUES("29615", "1", "2016-04-24 08:08:47", "107.150.85.208", "10");
INSERT INTO `wp_gf_form_view` VALUES("29616", "3", "2016-04-24 08:08:48", "107.150.85.208", "289");
INSERT INTO `wp_gf_form_view` VALUES("29617", "10", "2016-04-24 08:08:48", "107.150.85.208", "281");
INSERT INTO `wp_gf_form_view` VALUES("29618", "11", "2016-04-24 08:19:22", "73.77.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("29619", "12", "2016-04-24 08:19:49", "73.77.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("29620", "2", "2016-04-24 08:20:27", "73.77.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("29621", "3", "2016-04-24 09:01:02", "66.249.79.162", "7289");
INSERT INTO `wp_gf_form_view` VALUES("29622", "10", "2016-04-24 09:01:02", "66.249.79.162", "6935");
INSERT INTO `wp_gf_form_view` VALUES("29623", "11", "2016-04-24 09:22:28", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("29624", "2", "2016-04-24 09:22:28", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("29625", "12", "2016-04-24 09:22:54", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("29626", "1", "2016-04-24 09:23:34", "82.80.249.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("29627", "5", "2016-04-24 09:30:23", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("29628", "8", "2016-04-24 09:33:48", "82.80.249.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("29629", "6", "2016-04-24 09:36:39", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("29630", "9", "2016-04-24 09:36:40", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("29631", "3", "2016-04-24 10:00:00", "82.80.249.137", "952");
INSERT INTO `wp_gf_form_view` VALUES("29632", "10", "2016-04-24 10:00:00", "82.80.249.137", "871");
INSERT INTO `wp_gf_form_view` VALUES("29633", "8", "2016-04-24 10:06:09", "82.80.249.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("29634", "6", "2016-04-24 10:06:25", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("29635", "9", "2016-04-24 10:06:25", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("29636", "1", "2016-04-24 10:26:44", "107.150.74.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("29637", "11", "2016-04-24 10:30:18", "77.75.77.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("29638", "3", "2016-04-24 11:24:12", "46.118.156.3", "124");
INSERT INTO `wp_gf_form_view` VALUES("29639", "3", "2016-04-24 11:24:12", "46.118.156.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("29640", "10", "2016-04-24 11:24:17", "46.118.156.3", "125");
INSERT INTO `wp_gf_form_view` VALUES("29641", "11", "2016-04-24 11:30:20", "54.205.42.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("29642", "2", "2016-04-24 11:30:24", "54.205.42.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("29643", "1", "2016-04-24 11:42:36", "155.94.166.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("29644", "1", "2016-04-24 12:10:22", "104.143.28.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("29645", "3", "2016-04-24 12:10:23", "104.143.28.207", "15");
INSERT INTO `wp_gf_form_view` VALUES("29646", "10", "2016-04-24 12:10:25", "104.143.28.207", "15");
INSERT INTO `wp_gf_form_view` VALUES("29647", "3", "2016-04-24 13:02:00", "61.131.87.215", "74");
INSERT INTO `wp_gf_form_view` VALUES("29648", "10", "2016-04-24 13:02:00", "61.131.87.215", "70");
INSERT INTO `wp_gf_form_view` VALUES("29649", "1", "2016-04-24 13:23:33", "173.254.239.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("29650", "3", "2016-04-24 14:28:17", "75.154.241.209", "15");
INSERT INTO `wp_gf_form_view` VALUES("29651", "10", "2016-04-24 14:28:18", "75.154.241.209", "15");
INSERT INTO `wp_gf_form_view` VALUES("29652", "3", "2016-04-24 15:03:12", "202.46.54.204", "356");
INSERT INTO `wp_gf_form_view` VALUES("29653", "10", "2016-04-24 15:03:13", "202.46.54.204", "338");
INSERT INTO `wp_gf_form_view` VALUES("29654", "1", "2016-04-24 15:17:05", "157.55.39.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("29655", "9", "2016-04-24 15:17:21", "157.55.39.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("29656", "3", "2016-04-24 16:20:54", "70.66.30.172", "17");
INSERT INTO `wp_gf_form_view` VALUES("29657", "10", "2016-04-24 16:20:55", "70.66.30.172", "15");
INSERT INTO `wp_gf_form_view` VALUES("29658", "3", "2016-04-24 17:53:20", "207.46.13.101", "6");
INSERT INTO `wp_gf_form_view` VALUES("29659", "10", "2016-04-24 17:53:22", "207.46.13.101", "5");
INSERT INTO `wp_gf_form_view` VALUES("29660", "3", "2016-04-24 18:03:33", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("29661", "10", "2016-04-24 18:03:33", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("29662", "3", "2016-04-24 19:31:32", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("29663", "10", "2016-04-24 19:31:34", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("29664", "3", "2016-04-24 20:22:07", "202.46.57.26", "49");
INSERT INTO `wp_gf_form_view` VALUES("29665", "10", "2016-04-24 20:22:08", "202.46.57.26", "45");
INSERT INTO `wp_gf_form_view` VALUES("29666", "3", "2016-04-24 21:00:36", "24.108.23.50", "66");
INSERT INTO `wp_gf_form_view` VALUES("29667", "10", "2016-04-24 21:00:36", "24.108.23.50", "66");
INSERT INTO `wp_gf_form_view` VALUES("29668", "12", "2016-04-24 21:21:29", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("29669", "3", "2016-04-24 22:04:13", "66.249.79.169", "166");
INSERT INTO `wp_gf_form_view` VALUES("29670", "10", "2016-04-24 22:04:13", "66.249.79.169", "166");
INSERT INTO `wp_gf_form_view` VALUES("29671", "11", "2016-04-24 22:22:38", "157.55.39.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("29672", "2", "2016-04-24 22:22:48", "157.55.39.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("29673", "9", "2016-04-24 22:32:00", "157.55.39.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("29674", "10", "2016-04-24 23:05:30", "66.249.79.176", "52");
INSERT INTO `wp_gf_form_view` VALUES("29675", "3", "2016-04-24 23:05:30", "66.249.79.176", "52");
INSERT INTO `wp_gf_form_view` VALUES("29676", "3", "2016-04-25 00:00:43", "157.55.39.97", "54");
INSERT INTO `wp_gf_form_view` VALUES("29677", "10", "2016-04-25 00:00:43", "157.55.39.97", "50");
INSERT INTO `wp_gf_form_view` VALUES("29678", "5", "2016-04-25 00:19:36", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("29679", "3", "2016-04-25 01:26:15", "40.77.167.66", "26");
INSERT INTO `wp_gf_form_view` VALUES("29680", "10", "2016-04-25 01:26:17", "40.77.167.66", "25");
INSERT INTO `wp_gf_form_view` VALUES("29681", "3", "2016-04-25 02:01:36", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("29682", "10", "2016-04-25 02:01:37", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("29683", "9", "2016-04-25 02:16:46", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29684", "3", "2016-04-25 03:09:06", "66.249.79.162", "22");
INSERT INTO `wp_gf_form_view` VALUES("29685", "10", "2016-04-25 03:09:08", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("29686", "3", "2016-04-25 04:29:24", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29687", "10", "2016-04-25 04:29:26", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29688", "6", "2016-04-25 05:15:29", "164.132.161.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("29689", "3", "2016-04-25 05:15:32", "164.132.161.33", "15");
INSERT INTO `wp_gf_form_view` VALUES("29690", "10", "2016-04-25 05:15:33", "164.132.161.33", "15");
INSERT INTO `wp_gf_form_view` VALUES("29691", "3", "2016-04-25 06:30:40", "40.77.167.66", "25");
INSERT INTO `wp_gf_form_view` VALUES("29692", "10", "2016-04-25 06:30:43", "40.77.167.66", "25");
INSERT INTO `wp_gf_form_view` VALUES("29693", "9", "2016-04-25 06:38:43", "207.46.13.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("29694", "11", "2016-04-25 06:51:13", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("29695", "9", "2016-04-25 07:13:34", "40.77.167.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("29696", "3", "2016-04-25 07:13:35", "40.77.167.66", "42");
INSERT INTO `wp_gf_form_view` VALUES("29697", "10", "2016-04-25 07:13:35", "40.77.167.66", "40");
INSERT INTO `wp_gf_form_view` VALUES("29698", "3", "2016-04-25 08:56:44", "202.46.55.68", "10");
INSERT INTO `wp_gf_form_view` VALUES("29699", "10", "2016-04-25 08:56:45", "202.46.55.68", "10");
INSERT INTO `wp_gf_form_view` VALUES("29700", "3", "2016-04-25 09:57:12", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("29701", "10", "2016-04-25 09:57:14", "66.249.79.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("29702", "10", "2016-04-25 10:14:09", "192.99.101.184", "57");
INSERT INTO `wp_gf_form_view` VALUES("29703", "3", "2016-04-25 10:14:09", "192.99.101.184", "57");
INSERT INTO `wp_gf_form_view` VALUES("29704", "1", "2016-04-25 10:51:39", "107.150.74.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("29705", "3", "2016-04-25 11:24:06", "51.255.65.43", "27");
INSERT INTO `wp_gf_form_view` VALUES("29706", "10", "2016-04-25 11:24:16", "51.255.65.43", "25");
INSERT INTO `wp_gf_form_view` VALUES("29707", "3", "2016-04-25 12:03:27", "220.181.108.146", "10");
INSERT INTO `wp_gf_form_view` VALUES("29708", "10", "2016-04-25 12:03:27", "220.181.108.146", "10");
INSERT INTO `wp_gf_form_view` VALUES("29709", "3", "2016-04-25 13:38:56", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("29710", "10", "2016-04-25 13:38:58", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29711", "3", "2016-04-25 14:05:44", "207.46.13.73", "52");
INSERT INTO `wp_gf_form_view` VALUES("29712", "10", "2016-04-25 14:05:46", "207.46.13.73", "55");
INSERT INTO `wp_gf_form_view` VALUES("29713", "11", "2016-04-25 14:59:49", "78.250.190.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("29714", "3", "2016-04-25 15:00:11", "78.250.190.150", "175");
INSERT INTO `wp_gf_form_view` VALUES("29715", "10", "2016-04-25 15:00:11", "78.250.190.150", "171");
INSERT INTO `wp_gf_form_view` VALUES("29716", "12", "2016-04-25 15:02:05", "78.250.190.150", "2");
INSERT INTO `wp_gf_form_view` VALUES("29717", "2", "2016-04-25 15:08:38", "78.250.190.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("29718", "3", "2016-04-25 16:31:24", "66.249.79.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("29719", "10", "2016-04-25 16:31:27", "66.249.79.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("29720", "3", "2016-04-25 17:13:54", "24.68.134.214", "70");
INSERT INTO `wp_gf_form_view` VALUES("29721", "10", "2016-04-25 17:14:09", "24.68.134.214", "65");
INSERT INTO `wp_gf_form_view` VALUES("29722", "3", "2016-04-25 18:26:10", "136.243.17.161", "44");
INSERT INTO `wp_gf_form_view` VALUES("29723", "10", "2016-04-25 18:26:13", "136.243.17.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("29724", "3", "2016-04-25 19:00:16", "69.58.178.59", "245");
INSERT INTO `wp_gf_form_view` VALUES("29725", "10", "2016-04-25 19:00:16", "69.58.178.59", "241");
INSERT INTO `wp_gf_form_view` VALUES("29726", "11", "2016-04-25 19:00:37", "69.58.178.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("29727", "2", "2016-04-25 19:00:41", "69.58.178.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("29728", "12", "2016-04-25 19:28:58", "79.114.249.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("29729", "3", "2016-04-25 20:14:50", "24.69.158.129", "26");
INSERT INTO `wp_gf_form_view` VALUES("29730", "10", "2016-04-25 20:14:52", "24.69.158.129", "25");
INSERT INTO `wp_gf_form_view` VALUES("29731", "3", "2016-04-25 21:09:52", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("29732", "10", "2016-04-25 21:12:07", "66.249.79.176", "22");
INSERT INTO `wp_gf_form_view` VALUES("29733", "3", "2016-04-25 22:11:37", "24.69.132.110", "211");
INSERT INTO `wp_gf_form_view` VALUES("29734", "10", "2016-04-25 22:11:39", "24.69.132.110", "211");
INSERT INTO `wp_gf_form_view` VALUES("29735", "11", "2016-04-25 22:32:19", "78.250.190.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("29736", "12", "2016-04-25 22:34:36", "78.250.190.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("29737", "2", "2016-04-25 22:37:42", "78.250.190.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("29738", "3", "2016-04-25 23:18:27", "202.46.54.139", "10");
INSERT INTO `wp_gf_form_view` VALUES("29739", "10", "2016-04-25 23:18:30", "202.46.54.139", "10");
INSERT INTO `wp_gf_form_view` VALUES("29740", "3", "2016-04-26 00:08:54", "184.151.118.67", "85");
INSERT INTO `wp_gf_form_view` VALUES("29741", "10", "2016-04-26 00:08:55", "184.151.118.67", "81");
INSERT INTO `wp_gf_form_view` VALUES("29742", "12", "2016-04-26 00:25:35", "202.46.52.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("29743", "10", "2016-04-26 01:00:00", "24.68.137.108", "34");
INSERT INTO `wp_gf_form_view` VALUES("29744", "3", "2016-04-26 01:00:00", "24.68.137.108", "36");
INSERT INTO `wp_gf_form_view` VALUES("29745", "3", "2016-04-26 02:14:55", "157.55.39.88", "315");
INSERT INTO `wp_gf_form_view` VALUES("29746", "10", "2016-04-26 02:14:58", "157.55.39.88", "304");
INSERT INTO `wp_gf_form_view` VALUES("29747", "9", "2016-04-26 02:15:32", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("29748", "7", "2016-04-26 02:15:43", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("29749", "1", "2016-04-26 02:40:07", "184.66.242.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("29750", "3", "2016-04-26 03:05:22", "207.46.13.77", "736");
INSERT INTO `wp_gf_form_view` VALUES("29751", "10", "2016-04-26 03:05:22", "207.46.13.77", "678");
INSERT INTO `wp_gf_form_view` VALUES("29752", "11", "2016-04-26 03:52:42", "144.76.195.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("29753", "2", "2016-04-26 03:52:45", "144.76.195.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("29754", "12", "2016-04-26 03:53:54", "144.76.195.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("29755", "1", "2016-04-26 03:54:43", "144.76.195.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("29756", "8", "2016-04-26 03:56:33", "144.76.195.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("29757", "9", "2016-04-26 03:56:40", "144.76.195.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("29758", "5", "2016-04-26 03:57:00", "144.76.195.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("29759", "6", "2016-04-26 03:58:08", "144.76.195.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("29760", "3", "2016-04-26 04:00:09", "144.76.195.74", "74");
INSERT INTO `wp_gf_form_view` VALUES("29761", "10", "2016-04-26 04:00:09", "144.76.195.74", "70");
INSERT INTO `wp_gf_form_view` VALUES("29762", "10", "2016-04-26 05:01:49", "202.46.56.184", "36");
INSERT INTO `wp_gf_form_view` VALUES("29763", "3", "2016-04-26 05:01:51", "202.46.56.184", "35");
INSERT INTO `wp_gf_form_view` VALUES("29764", "3", "2016-04-26 06:13:47", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29765", "10", "2016-04-26 06:13:48", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29766", "3", "2016-04-26 07:35:42", "205.250.166.222", "12");
INSERT INTO `wp_gf_form_view` VALUES("29767", "10", "2016-04-26 07:35:46", "205.250.166.222", "10");
INSERT INTO `wp_gf_form_view` VALUES("29768", "3", "2016-04-26 08:16:38", "66.249.79.162", "46");
INSERT INTO `wp_gf_form_view` VALUES("29769", "10", "2016-04-26 08:16:47", "66.249.79.162", "45");
INSERT INTO `wp_gf_form_view` VALUES("29770", "3", "2016-04-26 10:00:03", "68.180.229.244", "190");
INSERT INTO `wp_gf_form_view` VALUES("29771", "10", "2016-04-26 10:00:05", "68.180.229.244", "186");
INSERT INTO `wp_gf_form_view` VALUES("29772", "11", "2016-04-26 10:26:22", "79.114.249.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("29773", "12", "2016-04-26 10:26:52", "79.114.249.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("29774", "2", "2016-04-26 10:27:29", "79.114.249.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("29775", "3", "2016-04-26 11:10:38", "77.75.76.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("29776", "10", "2016-04-26 11:10:38", "77.75.76.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("29777", "2", "2016-04-26 11:40:26", "104.140.73.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("29778", "3", "2016-04-26 12:25:17", "51.255.65.56", "11");
INSERT INTO `wp_gf_form_view` VALUES("29779", "10", "2016-04-26 12:25:19", "51.255.65.56", "10");
INSERT INTO `wp_gf_form_view` VALUES("29780", "3", "2016-04-26 13:06:52", "50.63.157.171", "494");
INSERT INTO `wp_gf_form_view` VALUES("29781", "10", "2016-04-26 13:06:55", "50.63.157.171", "475");
INSERT INTO `wp_gf_form_view` VALUES("29782", "11", "2016-04-26 13:07:12", "50.63.157.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("29783", "2", "2016-04-26 13:07:14", "50.63.157.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("29784", "12", "2016-04-26 13:08:34", "50.63.157.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("29785", "1", "2016-04-26 13:09:11", "50.63.157.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("29786", "6", "2016-04-26 13:44:39", "202.46.55.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("29787", "3", "2016-04-26 14:02:58", "154.20.5.76", "61");
INSERT INTO `wp_gf_form_view` VALUES("29788", "10", "2016-04-26 14:03:01", "154.20.5.76", "60");
INSERT INTO `wp_gf_form_view` VALUES("29789", "1", "2016-04-26 14:06:38", "104.140.73.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("29790", "2", "2016-04-26 14:51:54", "202.46.57.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("29791", "3", "2016-04-26 15:03:09", "68.180.229.244", "106");
INSERT INTO `wp_gf_form_view` VALUES("29792", "10", "2016-04-26 15:03:10", "68.180.229.244", "106");
INSERT INTO `wp_gf_form_view` VALUES("29793", "12", "2016-04-26 15:37:36", "96.50.57.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("29794", "1", "2016-04-26 15:40:38", "96.50.57.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("29795", "3", "2016-04-26 16:12:53", "96.50.57.61", "130");
INSERT INTO `wp_gf_form_view` VALUES("29796", "10", "2016-04-26 16:12:55", "96.50.57.61", "119");
INSERT INTO `wp_gf_form_view` VALUES("29797", "1", "2016-04-26 16:19:53", "107.150.74.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("29798", "12", "2016-04-26 16:24:15", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("29799", "3", "2016-04-26 17:21:39", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("29800", "10", "2016-04-26 17:21:42", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("29801", "3", "2016-04-26 18:00:08", "68.180.229.244", "12");
INSERT INTO `wp_gf_form_view` VALUES("29802", "10", "2016-04-26 18:35:07", "164.132.161.9", "10");
INSERT INTO `wp_gf_form_view` VALUES("29803", "3", "2016-04-26 19:18:43", "134.249.55.100", "91");
INSERT INTO `wp_gf_form_view` VALUES("29804", "3", "2016-04-26 19:18:43", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29805", "3", "2016-04-26 19:18:43", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29806", "3", "2016-04-26 19:18:43", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29807", "10", "2016-04-26 19:18:51", "134.249.55.100", "93");
INSERT INTO `wp_gf_form_view` VALUES("29808", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29809", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29810", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29811", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29812", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29813", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29814", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("29815", "3", "2016-04-26 20:12:42", "66.249.79.162", "31");
INSERT INTO `wp_gf_form_view` VALUES("29816", "10", "2016-04-26 20:12:44", "66.249.79.162", "30");
INSERT INTO `wp_gf_form_view` VALUES("29817", "6", "2016-04-26 21:07:58", "148.251.54.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("29818", "3", "2016-04-26 21:07:58", "148.251.54.44", "51");
INSERT INTO `wp_gf_form_view` VALUES("29819", "10", "2016-04-26 21:07:58", "148.251.54.44", "50");
INSERT INTO `wp_gf_form_view` VALUES("29820", "1", "2016-04-26 21:33:11", "151.80.40.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("29821", "3", "2016-04-26 22:01:51", "202.46.53.58", "11");
INSERT INTO `wp_gf_form_view` VALUES("29822", "10", "2016-04-26 22:01:55", "202.46.53.58", "10");
INSERT INTO `wp_gf_form_view` VALUES("29823", "3", "2016-04-26 23:03:40", "199.21.99.202", "11");
INSERT INTO `wp_gf_form_view` VALUES("29824", "10", "2016-04-26 23:03:44", "199.21.99.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("29825", "3", "2016-04-27 00:08:40", "66.249.79.162", "30");
INSERT INTO `wp_gf_form_view` VALUES("29826", "10", "2016-04-27 00:08:44", "66.249.79.162", "30");
INSERT INTO `wp_gf_form_view` VALUES("29827", "2", "2016-04-27 01:21:38", "202.46.49.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("29828", "3", "2016-04-27 01:21:43", "202.46.49.113", "5");
INSERT INTO `wp_gf_form_view` VALUES("29829", "10", "2016-04-27 01:21:43", "202.46.49.113", "5");
INSERT INTO `wp_gf_form_view` VALUES("29830", "3", "2016-04-27 02:08:45", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("29831", "10", "2016-04-27 02:08:47", "68.180.229.244", "32");
INSERT INTO `wp_gf_form_view` VALUES("29832", "3", "2016-04-27 03:06:00", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("29833", "10", "2016-04-27 03:06:00", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("29834", "3", "2016-04-27 04:23:34", "207.46.13.178", "6");
INSERT INTO `wp_gf_form_view` VALUES("29835", "10", "2016-04-27 04:23:39", "207.46.13.178", "5");
INSERT INTO `wp_gf_form_view` VALUES("29836", "3", "2016-04-27 05:03:10", "202.46.53.48", "11");
INSERT INTO `wp_gf_form_view` VALUES("29837", "10", "2016-04-27 05:03:15", "202.46.53.48", "10");
INSERT INTO `wp_gf_form_view` VALUES("29838", "10", "2016-04-27 06:58:25", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("29839", "3", "2016-04-27 06:58:26", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("29840", "3", "2016-04-27 07:08:47", "202.46.57.206", "26");
INSERT INTO `wp_gf_form_view` VALUES("29841", "10", "2016-04-27 07:08:49", "202.46.57.206", "26");
INSERT INTO `wp_gf_form_view` VALUES("29842", "3", "2016-04-27 08:15:56", "202.46.58.206", "11");
INSERT INTO `wp_gf_form_view` VALUES("29843", "10", "2016-04-27 08:16:09", "202.46.58.206", "10");
INSERT INTO `wp_gf_form_view` VALUES("29844", "3", "2016-04-27 09:34:33", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("29845", "10", "2016-04-27 09:34:34", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("29846", "3", "2016-04-27 10:25:28", "68.180.229.244", "13");
INSERT INTO `wp_gf_form_view` VALUES("29847", "10", "2016-04-27 10:25:29", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("29848", "3", "2016-04-27 12:10:59", "207.46.13.15", "18");
INSERT INTO `wp_gf_form_view` VALUES("29849", "10", "2016-04-27 12:11:02", "207.46.13.15", "15");
INSERT INTO `wp_gf_form_view` VALUES("29850", "3", "2016-04-27 13:12:47", "207.46.13.151", "21");
INSERT INTO `wp_gf_form_view` VALUES("29851", "10", "2016-04-27 13:12:47", "207.46.13.151", "26");
INSERT INTO `wp_gf_form_view` VALUES("29852", "9", "2016-04-27 13:45:33", "220.181.108.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("29853", "3", "2016-04-27 15:50:45", "216.223.78.30", "10");
INSERT INTO `wp_gf_form_view` VALUES("29854", "10", "2016-04-27 15:50:47", "216.223.78.30", "10");
INSERT INTO `wp_gf_form_view` VALUES("29855", "12", "2016-04-27 16:46:21", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("29856", "3", "2016-04-27 16:46:24", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29857", "10", "2016-04-27 16:46:24", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("29858", "11", "2016-04-27 16:52:12", "24.108.28.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("29859", "3", "2016-04-27 17:33:36", "24.68.133.51", "25");
INSERT INTO `wp_gf_form_view` VALUES("29860", "10", "2016-04-27 17:33:41", "24.68.133.51", "25");
INSERT INTO `wp_gf_form_view` VALUES("29861", "3", "2016-04-27 18:56:09", "207.46.13.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("29862", "10", "2016-04-27 18:56:10", "207.46.13.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("29863", "3", "2016-04-27 19:04:05", "207.46.13.15", "45");
INSERT INTO `wp_gf_form_view` VALUES("29864", "10", "2016-04-27 19:04:06", "207.46.13.15", "45");
INSERT INTO `wp_gf_form_view` VALUES("29865", "2", "2016-04-27 19:22:44", "202.46.51.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("29866", "1", "2016-04-27 19:51:26", "24.68.32.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("29867", "3", "2016-04-27 20:03:14", "24.68.32.78", "15");
INSERT INTO `wp_gf_form_view` VALUES("29868", "10", "2016-04-27 20:03:17", "24.68.32.78", "15");
INSERT INTO `wp_gf_form_view` VALUES("29869", "3", "2016-04-27 21:14:12", "157.55.39.208", "36");
INSERT INTO `wp_gf_form_view` VALUES("29870", "10", "2016-04-27 21:14:17", "157.55.39.208", "35");
INSERT INTO `wp_gf_form_view` VALUES("29871", "3", "2016-04-27 22:05:53", "66.249.79.176", "35");
INSERT INTO `wp_gf_form_view` VALUES("29872", "10", "2016-04-27 22:05:54", "66.249.79.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("29873", "1", "2016-04-27 23:01:47", "186.212.105.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("29874", "3", "2016-04-27 23:01:47", "186.212.105.207", "57");
INSERT INTO `wp_gf_form_view` VALUES("29875", "10", "2016-04-27 23:01:47", "186.212.105.207", "55");
INSERT INTO `wp_gf_form_view` VALUES("29876", "3", "2016-04-28 00:14:43", "51.255.65.54", "10");
INSERT INTO `wp_gf_form_view` VALUES("29877", "10", "2016-04-28 00:14:44", "51.255.65.54", "11");
INSERT INTO `wp_gf_form_view` VALUES("29878", "3", "2016-04-28 01:03:03", "64.180.75.132", "20");
INSERT INTO `wp_gf_form_view` VALUES("29879", "10", "2016-04-28 01:03:05", "64.180.75.132", "20");
INSERT INTO `wp_gf_form_view` VALUES("29880", "12", "2016-04-28 01:35:32", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29881", "3", "2016-04-28 02:15:58", "202.46.50.131", "20");
INSERT INTO `wp_gf_form_view` VALUES("29882", "10", "2016-04-28 02:16:01", "202.46.50.131", "20");
INSERT INTO `wp_gf_form_view` VALUES("29883", "10", "2016-04-28 03:07:08", "68.180.229.244", "18");
INSERT INTO `wp_gf_form_view` VALUES("29884", "3", "2016-04-28 03:07:09", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("29885", "3", "2016-04-28 04:20:20", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("29886", "10", "2016-04-28 04:20:22", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("29887", "3", "2016-04-28 05:14:50", "51.255.65.10", "10");
INSERT INTO `wp_gf_form_view` VALUES("29888", "10", "2016-04-28 05:14:52", "51.255.65.10", "10");
INSERT INTO `wp_gf_form_view` VALUES("29889", "10", "2016-04-28 06:29:38", "40.77.167.84", "16");
INSERT INTO `wp_gf_form_view` VALUES("29890", "3", "2016-04-28 06:29:40", "40.77.167.84", "15");
INSERT INTO `wp_gf_form_view` VALUES("29891", "3", "2016-04-28 07:12:04", "202.46.51.198", "18");
INSERT INTO `wp_gf_form_view` VALUES("29892", "10", "2016-04-28 07:12:07", "202.46.51.198", "16");
INSERT INTO `wp_gf_form_view` VALUES("29893", "3", "2016-04-28 08:03:31", "40.77.167.41", "16");
INSERT INTO `wp_gf_form_view` VALUES("29894", "10", "2016-04-28 08:03:32", "40.77.167.41", "15");
INSERT INTO `wp_gf_form_view` VALUES("29895", "3", "2016-04-28 09:01:47", "77.75.76.162", "29");
INSERT INTO `wp_gf_form_view` VALUES("29896", "10", "2016-04-28 09:01:48", "77.75.76.162", "26");
INSERT INTO `wp_gf_form_view` VALUES("29897", "10", "2016-04-28 10:06:28", "207.46.13.22", "26");
INSERT INTO `wp_gf_form_view` VALUES("29898", "3", "2016-04-28 10:06:36", "207.46.13.22", "26");
INSERT INTO `wp_gf_form_view` VALUES("29899", "3", "2016-04-28 11:51:18", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29900", "10", "2016-04-28 11:51:20", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29901", "3", "2016-04-28 12:19:26", "51.255.65.95", "19");
INSERT INTO `wp_gf_form_view` VALUES("29902", "10", "2016-04-28 12:19:28", "51.255.65.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("29903", "10", "2016-04-28 13:17:19", "77.75.78.164", "16");
INSERT INTO `wp_gf_form_view` VALUES("29904", "3", "2016-04-28 13:17:20", "77.75.78.164", "11");
INSERT INTO `wp_gf_form_view` VALUES("29905", "3", "2016-04-28 14:43:17", "66.249.79.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("29906", "10", "2016-04-28 14:43:18", "66.249.79.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("29907", "3", "2016-04-28 15:01:24", "202.46.55.178", "25");
INSERT INTO `wp_gf_form_view` VALUES("29908", "10", "2016-04-28 15:01:24", "202.46.55.178", "26");
INSERT INTO `wp_gf_form_view` VALUES("29909", "3", "2016-04-28 16:30:29", "141.8.143.242", "33");
INSERT INTO `wp_gf_form_view` VALUES("29910", "10", "2016-04-28 16:30:40", "141.8.143.242", "30");
INSERT INTO `wp_gf_form_view` VALUES("29911", "3", "2016-04-28 17:05:03", "162.243.3.70", "2052");
INSERT INTO `wp_gf_form_view` VALUES("29912", "10", "2016-04-28 17:05:03", "66.249.79.169", "1964");
INSERT INTO `wp_gf_form_view` VALUES("29913", "1", "2016-04-28 17:10:15", "162.243.3.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29914", "11", "2016-04-28 17:10:35", "162.243.3.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29915", "5", "2016-04-28 17:17:05", "162.243.3.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29916", "12", "2016-04-28 17:21:00", "162.243.3.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29917", "6", "2016-04-28 17:26:11", "162.243.3.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29918", "9", "2016-04-28 17:33:55", "162.243.3.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29919", "2", "2016-04-28 17:43:20", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("29920", "3", "2016-04-28 18:00:00", "162.243.3.70", "1136");
INSERT INTO `wp_gf_form_view` VALUES("29921", "10", "2016-04-28 18:00:01", "162.243.3.70", "1082");
INSERT INTO `wp_gf_form_view` VALUES("29922", "2", "2016-04-28 18:14:19", "162.243.3.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29923", "11", "2016-04-28 18:25:13", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("29924", "8", "2016-04-28 18:28:16", "162.243.3.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("29925", "3", "2016-04-28 19:04:53", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("29926", "10", "2016-04-28 19:04:53", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("29927", "3", "2016-04-28 20:04:36", "66.249.79.162", "21");
INSERT INTO `wp_gf_form_view` VALUES("29928", "10", "2016-04-28 20:04:40", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("29929", "3", "2016-04-28 21:17:51", "66.249.79.169", "45");
INSERT INTO `wp_gf_form_view` VALUES("29930", "10", "2016-04-28 21:17:53", "66.249.79.169", "46");
INSERT INTO `wp_gf_form_view` VALUES("29931", "12", "2016-04-28 21:43:49", "209.207.97.205", "2");
INSERT INTO `wp_gf_form_view` VALUES("29932", "3", "2016-04-28 22:28:21", "207.46.13.71", "8");
INSERT INTO `wp_gf_form_view` VALUES("29933", "10", "2016-04-28 22:28:23", "207.46.13.71", "5");
INSERT INTO `wp_gf_form_view` VALUES("29934", "3", "2016-04-28 23:03:58", "164.132.161.60", "33");
INSERT INTO `wp_gf_form_view` VALUES("29935", "10", "2016-04-28 23:04:02", "164.132.161.60", "30");
INSERT INTO `wp_gf_form_view` VALUES("29936", "10", "2016-04-29 00:35:02", "157.55.39.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("29937", "3", "2016-04-29 00:35:04", "157.55.39.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("29938", "3", "2016-04-29 01:00:21", "51.255.65.13", "26");
INSERT INTO `wp_gf_form_view` VALUES("29939", "10", "2016-04-29 01:00:21", "51.255.65.13", "25");
INSERT INTO `wp_gf_form_view` VALUES("29940", "3", "2016-04-29 02:18:49", "66.249.79.169", "60");
INSERT INTO `wp_gf_form_view` VALUES("29941", "10", "2016-04-29 02:18:51", "66.249.79.169", "60");
INSERT INTO `wp_gf_form_view` VALUES("29942", "9", "2016-04-29 02:48:00", "40.77.167.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("29943", "3", "2016-04-29 03:15:15", "202.46.56.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("29944", "10", "2016-04-29 03:15:17", "202.46.56.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("29945", "10", "2016-04-29 04:26:22", "164.132.161.25", "12");
INSERT INTO `wp_gf_form_view` VALUES("29946", "3", "2016-04-29 04:26:24", "164.132.161.25", "8");
INSERT INTO `wp_gf_form_view` VALUES("29947", "10", "2016-04-29 05:00:27", "66.249.79.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("29948", "3", "2016-04-29 05:00:27", "66.249.79.169", "17");
INSERT INTO `wp_gf_form_view` VALUES("29949", "3", "2016-04-29 06:06:22", "51.255.65.19", "30");
INSERT INTO `wp_gf_form_view` VALUES("29950", "10", "2016-04-29 06:06:28", "51.255.65.19", "48");
INSERT INTO `wp_gf_form_view` VALUES("29951", "3", "2016-04-29 07:05:56", "202.46.48.28", "278");
INSERT INTO `wp_gf_form_view` VALUES("29952", "10", "2016-04-29 07:05:56", "202.46.48.28", "379");
INSERT INTO `wp_gf_form_view` VALUES("29953", "11", "2016-04-29 07:24:18", "68.180.229.244", "2");
INSERT INTO `wp_gf_form_view` VALUES("29954", "9", "2016-04-29 07:38:30", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("29955", "10", "2016-04-29 08:10:40", "66.249.79.176", "24");
INSERT INTO `wp_gf_form_view` VALUES("29956", "3", "2016-04-29 08:10:41", "66.249.79.176", "14");
INSERT INTO `wp_gf_form_view` VALUES("29957", "10", "2016-04-29 09:10:09", "51.255.65.48", "42");
INSERT INTO `wp_gf_form_view` VALUES("29958", "3", "2016-04-29 09:10:11", "51.255.65.48", "28");
INSERT INTO `wp_gf_form_view` VALUES("29959", "3", "2016-04-29 10:08:55", "66.249.79.176", "19");
INSERT INTO `wp_gf_form_view` VALUES("29960", "10", "2016-04-29 10:08:56", "66.249.79.176", "24");
INSERT INTO `wp_gf_form_view` VALUES("29961", "10", "2016-04-29 12:01:06", "207.46.13.71", "12");
INSERT INTO `wp_gf_form_view` VALUES("29962", "3", "2016-04-29 12:01:08", "207.46.13.71", "8");
INSERT INTO `wp_gf_form_view` VALUES("29963", "1", "2016-04-29 12:38:11", "202.46.56.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("29964", "8", "2016-04-29 13:11:41", "202.46.48.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("29965", "10", "2016-04-29 13:11:41", "202.46.48.125", "36");
INSERT INTO `wp_gf_form_view` VALUES("29966", "3", "2016-04-29 13:11:41", "202.46.48.125", "25");
INSERT INTO `wp_gf_form_view` VALUES("29967", "7", "2016-04-29 13:45:11", "202.46.57.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("29968", "10", "2016-04-29 14:01:36", "96.54.214.215", "30");
INSERT INTO `wp_gf_form_view` VALUES("29969", "3", "2016-04-29 14:01:44", "96.54.214.215", "20");
INSERT INTO `wp_gf_form_view` VALUES("29970", "10", "2016-04-29 15:00:55", "46.118.116.239", "55");
INSERT INTO `wp_gf_form_view` VALUES("29971", "3", "2016-04-29 15:00:55", "46.118.116.239", "32");
INSERT INTO `wp_gf_form_view` VALUES("29972", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("29973", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("29974", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("29975", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("29976", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("29977", "12", "2016-04-29 15:52:48", "98.158.84.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("29978", "10", "2016-04-29 16:07:42", "199.59.148.211", "25");
INSERT INTO `wp_gf_form_view` VALUES("29979", "3", "2016-04-29 16:07:43", "199.59.148.211", "16");
INSERT INTO `wp_gf_form_view` VALUES("29980", "10", "2016-04-29 17:40:55", "207.216.13.45", "24");
INSERT INTO `wp_gf_form_view` VALUES("29981", "3", "2016-04-29 17:41:01", "207.216.13.45", "17");
INSERT INTO `wp_gf_form_view` VALUES("29982", "3", "2016-04-29 17:41:01", "207.216.13.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("29983", "10", "2016-04-29 18:03:37", "157.55.39.149", "79");
INSERT INTO `wp_gf_form_view` VALUES("29984", "3", "2016-04-29 18:03:37", "157.55.39.149", "55");
INSERT INTO `wp_gf_form_view` VALUES("29985", "10", "2016-04-29 19:03:00", "83.233.207.74", "42");
INSERT INTO `wp_gf_form_view` VALUES("29986", "3", "2016-04-29 19:03:02", "83.233.207.74", "28");
INSERT INTO `wp_gf_form_view` VALUES("29987", "10", "2016-04-29 20:21:23", "38.112.1.130", "24");
INSERT INTO `wp_gf_form_view` VALUES("29988", "3", "2016-04-29 20:21:24", "38.112.1.130", "16");
INSERT INTO `wp_gf_form_view` VALUES("29989", "12", "2016-04-29 20:27:44", "24.108.97.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("29990", "10", "2016-04-29 21:22:13", "202.46.51.178", "18");
INSERT INTO `wp_gf_form_view` VALUES("29991", "3", "2016-04-29 21:22:15", "202.46.51.178", "12");
INSERT INTO `wp_gf_form_view` VALUES("29992", "10", "2016-04-29 22:07:33", "199.21.99.202", "19");
INSERT INTO `wp_gf_form_view` VALUES("29993", "3", "2016-04-29 22:07:37", "199.21.99.202", "13");
INSERT INTO `wp_gf_form_view` VALUES("29994", "3", "2016-04-29 23:04:54", "68.180.229.244", "56");
INSERT INTO `wp_gf_form_view` VALUES("29995", "10", "2016-04-29 23:04:56", "68.180.229.244", "78");
INSERT INTO `wp_gf_form_view` VALUES("29996", "3", "2016-04-30 00:03:05", "157.55.39.9", "38");
INSERT INTO `wp_gf_form_view` VALUES("29997", "10", "2016-04-30 00:03:05", "157.55.39.9", "54");
INSERT INTO `wp_gf_form_view` VALUES("29998", "10", "2016-04-30 01:27:24", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("29999", "3", "2016-04-30 01:27:26", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("30000", "10", "2016-04-30 02:11:24", "66.249.79.176", "18");
INSERT INTO `wp_gf_form_view` VALUES("30001", "3", "2016-04-30 02:11:26", "66.249.79.176", "12");
INSERT INTO `wp_gf_form_view` VALUES("30002", "10", "2016-04-30 03:14:43", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("30003", "3", "2016-04-30 03:14:46", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("30004", "2", "2016-04-30 04:29:55", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("30005", "10", "2016-04-30 04:29:57", "74.91.26.114", "42");
INSERT INTO `wp_gf_form_view` VALUES("30006", "3", "2016-04-30 04:29:58", "74.91.26.114", "29");
INSERT INTO `wp_gf_form_view` VALUES("30007", "3", "2016-04-30 05:41:19", "66.249.79.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("30008", "10", "2016-04-30 05:41:20", "66.249.79.169", "18");
INSERT INTO `wp_gf_form_view` VALUES("30009", "10", "2016-04-30 06:03:13", "40.77.167.54", "12");
INSERT INTO `wp_gf_form_view` VALUES("30010", "3", "2016-04-30 06:03:13", "40.77.167.54", "10");
INSERT INTO `wp_gf_form_view` VALUES("30011", "10", "2016-04-30 07:09:00", "202.46.52.17", "12");
INSERT INTO `wp_gf_form_view` VALUES("30012", "3", "2016-04-30 07:09:02", "202.46.52.17", "8");
INSERT INTO `wp_gf_form_view` VALUES("30013", "10", "2016-04-30 09:08:56", "66.249.79.169", "30");
INSERT INTO `wp_gf_form_view` VALUES("30014", "3", "2016-04-30 09:08:59", "66.249.79.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("30015", "10", "2016-04-30 10:37:32", "202.46.56.63", "6");
INSERT INTO `wp_gf_form_view` VALUES("30016", "3", "2016-04-30 10:37:34", "202.46.56.63", "4");
INSERT INTO `wp_gf_form_view` VALUES("30017", "10", "2016-04-30 11:14:27", "40.77.167.54", "13");
INSERT INTO `wp_gf_form_view` VALUES("30018", "3", "2016-04-30 11:14:30", "40.77.167.54", "8");
INSERT INTO `wp_gf_form_view` VALUES("30019", "3", "2016-04-30 12:34:45", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30020", "10", "2016-04-30 13:00:28", "66.249.79.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("30021", "3", "2016-04-30 13:00:30", "66.249.79.162", "17");
INSERT INTO `wp_gf_form_view` VALUES("30022", "10", "2016-04-30 14:29:35", "51.255.65.54", "6");
INSERT INTO `wp_gf_form_view` VALUES("30023", "3", "2016-04-30 14:29:37", "51.255.65.54", "4");
INSERT INTO `wp_gf_form_view` VALUES("30024", "10", "2016-04-30 16:17:24", "157.55.39.214", "43");
INSERT INTO `wp_gf_form_view` VALUES("30025", "3", "2016-04-30 16:17:25", "157.55.39.214", "30");
INSERT INTO `wp_gf_form_view` VALUES("30026", "1", "2016-04-30 16:21:08", "89.185.219.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("30027", "10", "2016-04-30 17:01:13", "66.249.79.176", "43");
INSERT INTO `wp_gf_form_view` VALUES("30028", "3", "2016-04-30 17:01:13", "66.249.79.176", "32");
INSERT INTO `wp_gf_form_view` VALUES("30029", "1", "2016-04-30 17:53:45", "104.129.8.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("30030", "3", "2016-04-30 18:13:12", "66.249.79.169", "57");
INSERT INTO `wp_gf_form_view` VALUES("30031", "10", "2016-04-30 18:13:12", "66.249.79.169", "84");
INSERT INTO `wp_gf_form_view` VALUES("30032", "1", "2016-04-30 18:14:06", "104.129.8.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("30033", "10", "2016-04-30 19:04:35", "202.46.53.91", "42");
INSERT INTO `wp_gf_form_view` VALUES("30034", "3", "2016-04-30 19:04:37", "202.46.53.91", "28");
INSERT INTO `wp_gf_form_view` VALUES("30035", "10", "2016-04-30 20:59:38", "24.68.41.139", "6");
INSERT INTO `wp_gf_form_view` VALUES("30036", "3", "2016-04-30 20:59:39", "24.68.41.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("30037", "10", "2016-04-30 21:08:33", "40.77.167.32", "54");
INSERT INTO `wp_gf_form_view` VALUES("30038", "3", "2016-04-30 21:08:33", "40.77.167.32", "40");
INSERT INTO `wp_gf_form_view` VALUES("30039", "10", "2016-04-30 22:04:48", "66.249.79.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("30040", "3", "2016-04-30 22:04:48", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("30041", "10", "2016-04-30 23:14:57", "66.249.79.162", "36");
INSERT INTO `wp_gf_form_view` VALUES("30042", "3", "2016-04-30 23:14:59", "66.249.79.162", "33");
INSERT INTO `wp_gf_form_view` VALUES("30043", "1", "2016-04-30 23:44:46", "117.177.250.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("30044", "3", "2016-05-01 00:21:29", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("30045", "10", "2016-05-01 00:21:29", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("30046", "3", "2016-05-01 01:45:08", "107.151.152.40", "33");
INSERT INTO `wp_gf_form_view` VALUES("30047", "10", "2016-05-01 01:45:10", "107.151.152.40", "30");
INSERT INTO `wp_gf_form_view` VALUES("30048", "9", "2016-05-01 02:08:34", "40.77.167.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("30049", "3", "2016-05-01 02:08:34", "40.77.167.32", "40");
INSERT INTO `wp_gf_form_view` VALUES("30050", "10", "2016-05-01 02:08:34", "40.77.167.32", "40");
INSERT INTO `wp_gf_form_view` VALUES("30051", "3", "2016-05-01 03:04:29", "68.180.229.244", "125");
INSERT INTO `wp_gf_form_view` VALUES("30052", "10", "2016-05-01 03:04:29", "68.180.229.244", "110");
INSERT INTO `wp_gf_form_view` VALUES("30053", "10", "2016-05-01 04:20:05", "68.180.229.244", "72");
INSERT INTO `wp_gf_form_view` VALUES("30054", "3", "2016-05-01 04:20:05", "68.180.229.244", "76");
INSERT INTO `wp_gf_form_view` VALUES("30055", "3", "2016-05-01 05:08:33", "37.115.184.150", "20");
INSERT INTO `wp_gf_form_view` VALUES("30056", "10", "2016-05-01 05:08:34", "37.115.184.150", "20");
INSERT INTO `wp_gf_form_view` VALUES("30057", "3", "2016-05-01 06:07:48", "66.249.79.162", "57");
INSERT INTO `wp_gf_form_view` VALUES("30058", "10", "2016-05-01 06:07:48", "66.249.79.162", "57");
INSERT INTO `wp_gf_form_view` VALUES("30059", "11", "2016-05-01 06:38:46", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30060", "3", "2016-05-01 07:10:37", "77.75.78.170", "22");
INSERT INTO `wp_gf_form_view` VALUES("30061", "10", "2016-05-01 07:10:38", "77.75.78.170", "20");
INSERT INTO `wp_gf_form_view` VALUES("30062", "3", "2016-05-01 08:20:45", "202.46.58.191", "31");
INSERT INTO `wp_gf_form_view` VALUES("30063", "10", "2016-05-01 08:20:50", "202.46.58.191", "30");
INSERT INTO `wp_gf_form_view` VALUES("30064", "3", "2016-05-01 09:01:07", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("30065", "10", "2016-05-01 09:01:07", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("30066", "3", "2016-05-01 10:08:47", "40.77.167.41", "23");
INSERT INTO `wp_gf_form_view` VALUES("30067", "10", "2016-05-01 10:08:47", "40.77.167.41", "20");
INSERT INTO `wp_gf_form_view` VALUES("30068", "9", "2016-05-01 10:25:55", "151.80.31.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("30069", "3", "2016-05-01 11:13:12", "66.249.79.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("30070", "10", "2016-05-01 11:13:12", "66.249.79.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("30071", "11", "2016-05-01 12:54:46", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30072", "12", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30073", "3", "2016-05-01 12:54:47", "104.236.236.26", "95");
INSERT INTO `wp_gf_form_view` VALUES("30074", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30075", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30076", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30077", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30078", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30079", "10", "2016-05-01 12:54:47", "104.236.236.26", "101");
INSERT INTO `wp_gf_form_view` VALUES("30080", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30081", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30082", "2", "2016-05-01 12:54:48", "104.236.236.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30083", "3", "2016-05-01 14:19:39", "40.77.167.72", "10");
INSERT INTO `wp_gf_form_view` VALUES("30084", "10", "2016-05-01 14:19:40", "40.77.167.72", "10");
INSERT INTO `wp_gf_form_view` VALUES("30085", "3", "2016-05-01 15:30:58", "164.132.161.71", "11");
INSERT INTO `wp_gf_form_view` VALUES("30086", "10", "2016-05-01 15:31:08", "164.132.161.71", "10");
INSERT INTO `wp_gf_form_view` VALUES("30087", "3", "2016-05-01 16:28:49", "202.46.50.137", "16");
INSERT INTO `wp_gf_form_view` VALUES("30088", "10", "2016-05-01 16:28:50", "202.46.50.137", "15");
INSERT INTO `wp_gf_form_view` VALUES("30089", "3", "2016-05-01 17:05:12", "68.180.229.244", "32");
INSERT INTO `wp_gf_form_view` VALUES("30090", "10", "2016-05-01 17:05:12", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("30091", "3", "2016-05-01 18:07:56", "220.181.108.114", "10");
INSERT INTO `wp_gf_form_view` VALUES("30092", "10", "2016-05-01 18:07:56", "220.181.108.114", "10");
INSERT INTO `wp_gf_form_view` VALUES("30093", "3", "2016-05-01 19:12:30", "209.52.88.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("30094", "10", "2016-05-01 19:12:32", "209.52.88.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("30095", "3", "2016-05-01 20:12:46", "164.132.161.29", "26");
INSERT INTO `wp_gf_form_view` VALUES("30096", "10", "2016-05-01 20:12:47", "164.132.161.29", "27");
INSERT INTO `wp_gf_form_view` VALUES("30097", "3", "2016-05-01 21:07:39", "37.115.184.150", "57");
INSERT INTO `wp_gf_form_view` VALUES("30098", "3", "2016-05-01 21:07:39", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30099", "3", "2016-05-01 21:07:39", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30100", "3", "2016-05-01 21:07:39", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30101", "10", "2016-05-01 21:07:41", "37.115.184.150", "58");
INSERT INTO `wp_gf_form_view` VALUES("30102", "10", "2016-05-01 21:07:41", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30103", "10", "2016-05-01 21:07:41", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30104", "11", "2016-05-01 21:44:09", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("30105", "3", "2016-05-01 22:26:13", "66.249.79.162", "21");
INSERT INTO `wp_gf_form_view` VALUES("30106", "10", "2016-05-01 22:26:13", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("30107", "9", "2016-05-01 23:26:37", "51.255.65.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("30108", "3", "2016-05-01 23:27:45", "202.46.51.20", "27");
INSERT INTO `wp_gf_form_view` VALUES("30109", "10", "2016-05-01 23:27:45", "202.46.51.20", "25");
INSERT INTO `wp_gf_form_view` VALUES("30110", "3", "2016-05-02 00:04:14", "24.68.17.97", "39");
INSERT INTO `wp_gf_form_view` VALUES("30111", "10", "2016-05-02 00:04:15", "24.68.17.97", "35");
INSERT INTO `wp_gf_form_view` VALUES("30112", "3", "2016-05-02 01:13:02", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("30113", "10", "2016-05-02 01:13:04", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("30114", "3", "2016-05-02 02:00:08", "66.249.79.169", "121");
INSERT INTO `wp_gf_form_view` VALUES("30115", "10", "2016-05-02 02:00:10", "66.249.79.169", "120");
INSERT INTO `wp_gf_form_view` VALUES("30116", "9", "2016-05-02 02:17:46", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("30117", "11", "2016-05-02 02:51:39", "80.86.94.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("30118", "2", "2016-05-02 02:51:50", "80.86.94.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("30119", "3", "2016-05-02 03:07:46", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("30120", "10", "2016-05-02 03:07:47", "66.249.79.162", "15");
INSERT INTO `wp_gf_form_view` VALUES("30121", "3", "2016-05-02 04:07:09", "216.232.157.185", "22");
INSERT INTO `wp_gf_form_view` VALUES("30122", "10", "2016-05-02 04:07:09", "216.232.157.185", "20");
INSERT INTO `wp_gf_form_view` VALUES("30123", "3", "2016-05-02 05:06:55", "66.249.79.176", "32");
INSERT INTO `wp_gf_form_view` VALUES("30124", "10", "2016-05-02 05:06:56", "66.249.79.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("30125", "12", "2016-05-02 06:11:27", "185.5.250.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("30126", "3", "2016-05-02 06:11:29", "185.5.250.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("30127", "10", "2016-05-02 06:11:30", "185.5.250.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("30128", "12", "2016-05-02 07:28:18", "202.46.50.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("30129", "3", "2016-05-02 07:28:21", "202.46.50.154", "16");
INSERT INTO `wp_gf_form_view` VALUES("30130", "10", "2016-05-02 07:28:21", "202.46.50.154", "15");
INSERT INTO `wp_gf_form_view` VALUES("30131", "3", "2016-05-02 08:29:59", "40.77.167.41", "390");
INSERT INTO `wp_gf_form_view` VALUES("30132", "10", "2016-05-02 08:30:02", "40.77.167.41", "385");
INSERT INTO `wp_gf_form_view` VALUES("30133", "9", "2016-05-02 08:30:05", "40.77.167.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("30134", "7", "2016-05-02 08:31:27", "157.55.39.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("30135", "3", "2016-05-02 09:06:37", "46.118.116.239", "35");
INSERT INTO `wp_gf_form_view` VALUES("30136", "3", "2016-05-02 09:06:37", "46.118.116.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("30137", "10", "2016-05-02 09:06:37", "46.118.116.239", "34");
INSERT INTO `wp_gf_form_view` VALUES("30138", "10", "2016-05-02 09:06:37", "46.118.116.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("30139", "3", "2016-05-02 10:07:06", "27.156.74.91", "77");
INSERT INTO `wp_gf_form_view` VALUES("30140", "10", "2016-05-02 10:07:06", "27.156.74.91", "71");
INSERT INTO `wp_gf_form_view` VALUES("30141", "3", "2016-05-02 11:19:50", "202.46.58.134", "26");
INSERT INTO `wp_gf_form_view` VALUES("30142", "10", "2016-05-02 11:19:51", "202.46.58.134", "25");
INSERT INTO `wp_gf_form_view` VALUES("30143", "2", "2016-05-02 11:22:00", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("30144", "3", "2016-05-02 12:11:45", "24.108.23.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("30145", "10", "2016-05-02 12:11:46", "24.108.23.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("30146", "3", "2016-05-02 13:06:26", "173.254.239.213", "229");
INSERT INTO `wp_gf_form_view` VALUES("30147", "10", "2016-05-02 13:06:28", "173.254.239.213", "230");
INSERT INTO `wp_gf_form_view` VALUES("30148", "1", "2016-05-02 13:20:32", "107.153.2.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("30149", "12", "2016-05-02 13:32:28", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("30150", "2", "2016-05-02 13:33:01", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("30151", "11", "2016-05-02 13:33:29", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("30152", "3", "2016-05-02 14:14:51", "164.132.161.38", "17");
INSERT INTO `wp_gf_form_view` VALUES("30153", "10", "2016-05-02 14:14:51", "164.132.161.38", "15");
INSERT INTO `wp_gf_form_view` VALUES("30154", "3", "2016-05-02 15:30:48", "66.249.79.176", "166");
INSERT INTO `wp_gf_form_view` VALUES("30155", "10", "2016-05-02 15:30:52", "66.249.79.176", "166");
INSERT INTO `wp_gf_form_view` VALUES("30156", "11", "2016-05-02 15:31:11", "76.72.172.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("30157", "12", "2016-05-02 15:31:46", "76.72.172.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("30158", "2", "2016-05-02 15:32:24", "76.72.172.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("30159", "3", "2016-05-02 16:36:15", "66.249.79.169", "21");
INSERT INTO `wp_gf_form_view` VALUES("30160", "10", "2016-05-02 16:36:18", "66.249.79.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("30161", "12", "2016-05-02 17:01:46", "198.103.223.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("30162", "3", "2016-05-02 17:01:46", "198.103.223.52", "51");
INSERT INTO `wp_gf_form_view` VALUES("30163", "10", "2016-05-02 17:01:46", "198.103.223.52", "50");
INSERT INTO `wp_gf_form_view` VALUES("30164", "1", "2016-05-02 17:07:35", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30165", "3", "2016-05-02 18:01:29", "51.255.65.64", "25");
INSERT INTO `wp_gf_form_view` VALUES("30166", "10", "2016-05-02 18:01:30", "51.255.65.64", "25");
INSERT INTO `wp_gf_form_view` VALUES("30167", "8", "2016-05-02 18:37:31", "164.132.161.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("30168", "10", "2016-05-02 19:08:49", "164.132.161.36", "61");
INSERT INTO `wp_gf_form_view` VALUES("30169", "3", "2016-05-02 19:08:49", "164.132.161.36", "66");
INSERT INTO `wp_gf_form_view` VALUES("30170", "3", "2016-05-02 20:02:15", "66.249.79.176", "86");
INSERT INTO `wp_gf_form_view` VALUES("30171", "10", "2016-05-02 20:02:15", "66.249.79.176", "85");
INSERT INTO `wp_gf_form_view` VALUES("30172", "6", "2016-05-02 20:14:26", "164.132.161.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("30173", "3", "2016-05-02 21:10:45", "40.77.167.72", "21");
INSERT INTO `wp_gf_form_view` VALUES("30174", "10", "2016-05-02 21:10:46", "40.77.167.72", "20");
INSERT INTO `wp_gf_form_view` VALUES("30175", "3", "2016-05-02 22:07:03", "46.118.116.239", "200");
INSERT INTO `wp_gf_form_view` VALUES("30176", "10", "2016-05-02 22:07:04", "46.118.116.239", "195");
INSERT INTO `wp_gf_form_view` VALUES("30177", "10", "2016-05-02 22:07:05", "46.118.116.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("30178", "2", "2016-05-02 22:37:41", "174.127.133.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("30179", "3", "2016-05-02 23:00:20", "174.127.133.30", "215");
INSERT INTO `wp_gf_form_view` VALUES("30180", "10", "2016-05-02 23:00:20", "174.127.133.30", "211");
INSERT INTO `wp_gf_form_view` VALUES("30181", "12", "2016-05-02 23:59:30", "184.66.33.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("30182", "3", "2016-05-03 00:00:27", "184.66.33.171", "42");
INSERT INTO `wp_gf_form_view` VALUES("30183", "10", "2016-05-03 00:00:27", "184.66.33.171", "40");
INSERT INTO `wp_gf_form_view` VALUES("30184", "3", "2016-05-03 01:05:09", "220.181.108.178", "10");
INSERT INTO `wp_gf_form_view` VALUES("30185", "10", "2016-05-03 01:05:10", "220.181.108.178", "10");
INSERT INTO `wp_gf_form_view` VALUES("30186", "3", "2016-05-03 02:06:08", "41.85.189.163", "52");
INSERT INTO `wp_gf_form_view` VALUES("30187", "10", "2016-05-03 02:06:09", "41.85.189.163", "50");
INSERT INTO `wp_gf_form_view` VALUES("30188", "8", "2016-05-03 02:33:52", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30189", "10", "2016-05-03 03:01:23", "154.5.204.182", "20");
INSERT INTO `wp_gf_form_view` VALUES("30190", "3", "2016-05-03 03:01:54", "154.5.204.182", "15");
INSERT INTO `wp_gf_form_view` VALUES("30191", "3", "2016-05-03 04:02:44", "66.249.79.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("30192", "10", "2016-05-03 04:02:46", "66.249.79.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("30193", "3", "2016-05-03 06:23:58", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("30194", "10", "2016-05-03 06:24:04", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("30195", "3", "2016-05-03 07:04:42", "40.77.167.41", "15");
INSERT INTO `wp_gf_form_view` VALUES("30196", "10", "2016-05-03 07:04:42", "40.77.167.41", "15");
INSERT INTO `wp_gf_form_view` VALUES("30197", "5", "2016-05-03 07:43:36", "40.77.167.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("30198", "3", "2016-05-03 08:05:05", "164.132.161.50", "20");
INSERT INTO `wp_gf_form_view` VALUES("30199", "10", "2016-05-03 08:05:06", "164.132.161.50", "20");
INSERT INTO `wp_gf_form_view` VALUES("30200", "9", "2016-05-03 08:17:06", "202.46.48.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("30201", "3", "2016-05-03 09:32:29", "66.249.79.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("30202", "10", "2016-05-03 09:32:31", "66.249.79.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("30203", "3", "2016-05-03 10:02:45", "68.180.229.244", "26");
INSERT INTO `wp_gf_form_view` VALUES("30204", "10", "2016-05-03 10:02:45", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("30205", "3", "2016-05-03 11:09:30", "51.255.65.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("30206", "10", "2016-05-03 11:09:30", "51.255.65.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("30207", "3", "2016-05-03 12:26:16", "77.75.79.36", "2343");
INSERT INTO `wp_gf_form_view` VALUES("30208", "10", "2016-05-03 12:26:18", "77.75.79.36", "2293");
INSERT INTO `wp_gf_form_view` VALUES("30209", "11", "2016-05-03 12:35:43", "173.192.34.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("30210", "2", "2016-05-03 12:35:45", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("30211", "12", "2016-05-03 12:36:37", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("30212", "1", "2016-05-03 12:37:30", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("30213", "5", "2016-05-03 12:39:25", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("30214", "8", "2016-05-03 12:41:55", "173.192.34.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("30215", "9", "2016-05-03 12:42:00", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("30216", "10", "2016-05-03 13:00:00", "173.192.34.95", "299");
INSERT INTO `wp_gf_form_view` VALUES("30217", "3", "2016-05-03 13:00:00", "173.192.34.95", "294");
INSERT INTO `wp_gf_form_view` VALUES("30218", "11", "2016-05-03 13:03:18", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("30219", "10", "2016-05-03 14:05:05", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("30220", "3", "2016-05-03 14:20:14", "5.9.85.4", "17");
INSERT INTO `wp_gf_form_view` VALUES("30221", "3", "2016-05-03 15:00:38", "68.180.229.244", "52");
INSERT INTO `wp_gf_form_view` VALUES("30222", "10", "2016-05-03 15:00:40", "68.180.229.244", "45");
INSERT INTO `wp_gf_form_view` VALUES("30223", "3", "2016-05-03 16:07:51", "202.46.52.61", "99");
INSERT INTO `wp_gf_form_view` VALUES("30224", "10", "2016-05-03 16:07:52", "202.46.52.61", "90");
INSERT INTO `wp_gf_form_view` VALUES("30225", "3", "2016-05-03 17:01:50", "66.249.79.176", "237");
INSERT INTO `wp_gf_form_view` VALUES("30226", "10", "2016-05-03 17:01:50", "66.249.79.176", "236");
INSERT INTO `wp_gf_form_view` VALUES("30227", "1", "2016-05-03 17:28:09", "107.168.10.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("30228", "11", "2016-05-03 17:33:02", "86.123.244.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("30229", "12", "2016-05-03 17:33:30", "86.123.244.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("30230", "2", "2016-05-03 17:34:07", "86.123.244.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("30231", "3", "2016-05-03 18:23:48", "164.132.161.68", "26");
INSERT INTO `wp_gf_form_view` VALUES("30232", "10", "2016-05-03 18:23:49", "164.132.161.68", "25");
INSERT INTO `wp_gf_form_view` VALUES("30233", "11", "2016-05-03 18:47:57", "202.46.51.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("30234", "3", "2016-05-03 19:16:37", "24.244.23.171", "48");
INSERT INTO `wp_gf_form_view` VALUES("30235", "10", "2016-05-03 19:16:40", "24.244.23.171", "40");
INSERT INTO `wp_gf_form_view` VALUES("30236", "3", "2016-05-03 20:03:33", "24.244.23.181", "86");
INSERT INTO `wp_gf_form_view` VALUES("30237", "10", "2016-05-03 20:03:33", "24.244.23.181", "75");
INSERT INTO `wp_gf_form_view` VALUES("30238", "1", "2016-05-03 20:04:58", "117.135.251.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("30239", "3", "2016-05-03 21:18:37", "164.132.161.87", "84");
INSERT INTO `wp_gf_form_view` VALUES("30240", "10", "2016-05-03 21:18:56", "164.132.161.87", "75");
INSERT INTO `wp_gf_form_view` VALUES("30241", "3", "2016-05-03 22:08:33", "68.180.229.244", "55");
INSERT INTO `wp_gf_form_view` VALUES("30242", "10", "2016-05-03 22:08:33", "68.180.229.244", "50");
INSERT INTO `wp_gf_form_view` VALUES("30243", "3", "2016-05-03 23:15:25", "68.180.229.244", "91");
INSERT INTO `wp_gf_form_view` VALUES("30244", "10", "2016-05-03 23:15:27", "68.180.229.244", "81");
INSERT INTO `wp_gf_form_view` VALUES("30245", "3", "2016-05-04 00:15:56", "24.68.41.139", "30");
INSERT INTO `wp_gf_form_view` VALUES("30246", "10", "2016-05-04 00:15:56", "24.68.41.139", "30");
INSERT INTO `wp_gf_form_view` VALUES("30247", "3", "2016-05-04 01:32:26", "67.198.206.134", "83");
INSERT INTO `wp_gf_form_view` VALUES("30248", "10", "2016-05-04 01:32:27", "67.198.206.134", "70");
INSERT INTO `wp_gf_form_view` VALUES("30249", "3", "2016-05-04 02:18:25", "67.198.206.134", "49");
INSERT INTO `wp_gf_form_view` VALUES("30250", "10", "2016-05-04 02:18:25", "67.198.206.134", "45");
INSERT INTO `wp_gf_form_view` VALUES("30251", "10", "2016-05-04 03:03:35", "68.180.229.244", "17");
INSERT INTO `wp_gf_form_view` VALUES("30252", "3", "2016-05-04 03:03:35", "68.180.229.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("30253", "3", "2016-05-04 04:31:41", "79.116.24.187", "166");
INSERT INTO `wp_gf_form_view` VALUES("30254", "10", "2016-05-04 04:31:43", "79.116.24.187", "166");
INSERT INTO `wp_gf_form_view` VALUES("30255", "11", "2016-05-04 04:31:49", "79.116.24.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("30256", "12", "2016-05-04 04:32:29", "79.116.24.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("30257", "2", "2016-05-04 04:33:21", "79.116.24.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("30258", "3", "2016-05-04 05:15:33", "68.180.229.244", "7");
INSERT INTO `wp_gf_form_view` VALUES("30259", "10", "2016-05-04 05:54:41", "96.54.206.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("30260", "3", "2016-05-04 06:55:49", "164.132.161.6", "5");
INSERT INTO `wp_gf_form_view` VALUES("30261", "10", "2016-05-04 06:55:50", "164.132.161.6", "5");
INSERT INTO `wp_gf_form_view` VALUES("30262", "3", "2016-05-04 07:04:01", "68.180.229.244", "11");
INSERT INTO `wp_gf_form_view` VALUES("30263", "10", "2016-05-04 07:04:01", "68.180.229.244", "12");
INSERT INTO `wp_gf_form_view` VALUES("30264", "3", "2016-05-04 08:02:54", "37.115.184.150", "17");
INSERT INTO `wp_gf_form_view` VALUES("30265", "3", "2016-05-04 08:02:54", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30266", "3", "2016-05-04 08:02:54", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30267", "3", "2016-05-04 08:02:54", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30268", "10", "2016-05-04 08:02:56", "37.115.184.150", "17");
INSERT INTO `wp_gf_form_view` VALUES("30269", "10", "2016-05-04 08:02:56", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30270", "10", "2016-05-04 08:02:56", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30271", "10", "2016-05-04 08:02:56", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30272", "3", "2016-05-04 09:03:02", "75.154.238.16", "27");
INSERT INTO `wp_gf_form_view` VALUES("30273", "10", "2016-05-04 09:03:13", "75.154.238.16", "25");
INSERT INTO `wp_gf_form_view` VALUES("30274", "3", "2016-05-04 10:38:00", "202.46.58.167", "15");
INSERT INTO `wp_gf_form_view` VALUES("30275", "10", "2016-05-04 10:38:02", "202.46.58.167", "15");
INSERT INTO `wp_gf_form_view` VALUES("30276", "3", "2016-05-04 11:11:29", "202.46.49.149", "21");
INSERT INTO `wp_gf_form_view` VALUES("30277", "10", "2016-05-04 11:11:31", "202.46.49.149", "20");
INSERT INTO `wp_gf_form_view` VALUES("30278", "8", "2016-05-04 11:35:54", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30279", "3", "2016-05-04 12:06:43", "66.249.69.53", "30");
INSERT INTO `wp_gf_form_view` VALUES("30280", "10", "2016-05-04 12:06:44", "66.249.69.53", "30");
INSERT INTO `wp_gf_form_view` VALUES("30281", "6", "2016-05-04 12:19:03", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30282", "3", "2016-05-04 13:40:50", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("30283", "10", "2016-05-04 13:40:51", "68.180.229.244", "5");
INSERT INTO `wp_gf_form_view` VALUES("30284", "3", "2016-05-04 14:57:44", "202.46.57.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("30285", "10", "2016-05-04 14:57:45", "202.46.57.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("30286", "3", "2016-05-04 15:15:08", "77.75.77.11", "86");
INSERT INTO `wp_gf_form_view` VALUES("30287", "10", "2016-05-04 15:15:08", "77.75.77.11", "85");
INSERT INTO `wp_gf_form_view` VALUES("30288", "3", "2016-05-04 16:02:40", "146.185.239.11", "41");
INSERT INTO `wp_gf_form_view` VALUES("30289", "10", "2016-05-04 16:02:40", "146.185.239.11", "40");
INSERT INTO `wp_gf_form_view` VALUES("30290", "3", "2016-05-04 17:04:54", "66.249.79.169", "74");
INSERT INTO `wp_gf_form_view` VALUES("30291", "10", "2016-05-04 17:04:56", "66.249.79.169", "71");
INSERT INTO `wp_gf_form_view` VALUES("30292", "1", "2016-05-04 17:25:42", "24.244.29.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("30293", "3", "2016-05-04 18:21:54", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("30294", "10", "2016-05-04 18:21:55", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("30295", "1", "2016-05-04 18:57:58", "154.20.4.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("30296", "3", "2016-05-04 19:09:26", "24.68.17.97", "28");
INSERT INTO `wp_gf_form_view` VALUES("30297", "3", "2016-05-04 19:09:26", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("30298", "3", "2016-05-04 19:09:26", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("30299", "10", "2016-05-04 19:09:26", "24.68.17.97", "28");
INSERT INTO `wp_gf_form_view` VALUES("30300", "10", "2016-05-04 19:09:26", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("30301", "10", "2016-05-04 19:09:26", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("30302", "12", "2016-05-04 20:03:25", "184.66.231.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("30303", "3", "2016-05-04 20:03:30", "184.66.231.67", "25");
INSERT INTO `wp_gf_form_view` VALUES("30304", "10", "2016-05-04 20:03:30", "184.66.231.67", "25");
INSERT INTO `wp_gf_form_view` VALUES("30305", "3", "2016-05-04 21:21:45", "220.181.108.151", "33");
INSERT INTO `wp_gf_form_view` VALUES("30306", "10", "2016-05-04 21:21:50", "220.181.108.151", "30");
INSERT INTO `wp_gf_form_view` VALUES("30307", "1", "2016-05-04 21:52:40", "24.68.17.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("30308", "3", "2016-05-04 22:38:41", "68.180.229.244", "7");
INSERT INTO `wp_gf_form_view` VALUES("30309", "10", "2016-05-04 22:47:32", "202.46.54.31", "5");
INSERT INTO `wp_gf_form_view` VALUES("30310", "3", "2016-05-04 23:37:38", "184.66.33.171", "40");
INSERT INTO `wp_gf_form_view` VALUES("30311", "10", "2016-05-04 23:37:40", "184.66.33.171", "40");
INSERT INTO `wp_gf_form_view` VALUES("30312", "3", "2016-05-05 00:16:30", "202.46.53.65", "21");
INSERT INTO `wp_gf_form_view` VALUES("30313", "10", "2016-05-05 00:16:32", "202.46.53.65", "20");
INSERT INTO `wp_gf_form_view` VALUES("30314", "3", "2016-05-05 01:37:30", "68.180.229.244", "25");
INSERT INTO `wp_gf_form_view` VALUES("30315", "10", "2016-05-05 01:37:32", "68.180.229.244", "26");
INSERT INTO `wp_gf_form_view` VALUES("30316", "12", "2016-05-05 01:40:34", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30317", "10", "2016-05-05 03:14:29", "68.180.229.244", "11");
INSERT INTO `wp_gf_form_view` VALUES("30318", "3", "2016-05-05 03:14:32", "68.180.229.244", "10");
INSERT INTO `wp_gf_form_view` VALUES("30319", "3", "2016-05-05 04:11:48", "54.83.168.98", "40");
INSERT INTO `wp_gf_form_view` VALUES("30320", "10", "2016-05-05 04:11:49", "54.83.168.98", "40");
INSERT INTO `wp_gf_form_view` VALUES("30321", "3", "2016-05-05 05:54:24", "157.55.39.213", "5");
INSERT INTO `wp_gf_form_view` VALUES("30322", "10", "2016-05-05 05:54:26", "157.55.39.213", "5");
INSERT INTO `wp_gf_form_view` VALUES("30323", "3", "2016-05-05 06:23:44", "184.66.34.145", "12");
INSERT INTO `wp_gf_form_view` VALUES("30324", "10", "2016-05-05 06:23:45", "184.66.34.145", "15");
INSERT INTO `wp_gf_form_view` VALUES("30325", "3", "2016-05-05 10:08:06", "157.55.39.213", "81");
INSERT INTO `wp_gf_form_view` VALUES("30326", "10", "2016-05-05 10:08:08", "157.55.39.213", "78");
INSERT INTO `wp_gf_form_view` VALUES("30327", "11", "2016-05-05 10:08:12", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("30328", "9", "2016-05-05 10:08:15", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("30329", "3", "2016-05-05 11:03:41", "5.9.98.130", "2193");
INSERT INTO `wp_gf_form_view` VALUES("30330", "10", "2016-05-05 11:03:41", "5.9.98.130", "2087");
INSERT INTO `wp_gf_form_view` VALUES("30331", "11", "2016-05-05 11:04:00", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30332", "2", "2016-05-05 11:04:04", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30333", "12", "2016-05-05 11:05:50", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30334", "1", "2016-05-05 11:06:28", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30335", "8", "2016-05-05 11:11:47", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30336", "9", "2016-05-05 11:11:56", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30337", "5", "2016-05-05 11:12:44", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30338", "6", "2016-05-05 11:17:05", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30339", "3", "2016-05-05 12:00:03", "5.9.98.130", "2443");
INSERT INTO `wp_gf_form_view` VALUES("30340", "10", "2016-05-05 12:00:04", "5.9.98.130", "2181");
INSERT INTO `wp_gf_form_view` VALUES("30341", "3", "2016-05-05 13:00:00", "5.9.98.130", "2201");
INSERT INTO `wp_gf_form_view` VALUES("30342", "10", "2016-05-05 13:00:00", "5.9.98.130", "2174");
INSERT INTO `wp_gf_form_view` VALUES("30343", "6", "2016-05-05 13:21:44", "202.46.55.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("30344", "3", "2016-05-05 14:04:29", "157.55.39.213", "991");
INSERT INTO `wp_gf_form_view` VALUES("30345", "10", "2016-05-05 14:04:30", "157.55.39.213", "991");
INSERT INTO `wp_gf_form_view` VALUES("30346", "11", "2016-05-05 14:10:54", "80.112.101.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30347", "12", "2016-05-05 14:11:31", "80.112.101.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30348", "2", "2016-05-05 14:12:21", "80.112.101.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30349", "9", "2016-05-05 14:29:25", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("30350", "3", "2016-05-05 15:04:51", "157.55.39.213", "20");
INSERT INTO `wp_gf_form_view` VALUES("30351", "10", "2016-05-05 15:04:54", "157.55.39.213", "20");
INSERT INTO `wp_gf_form_view` VALUES("30352", "11", "2016-05-05 16:06:33", "77.75.78.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("30353", "3", "2016-05-05 16:06:35", "77.75.78.167", "36");
INSERT INTO `wp_gf_form_view` VALUES("30354", "10", "2016-05-05 16:06:35", "77.75.78.167", "35");
INSERT INTO `wp_gf_form_view` VALUES("30355", "3", "2016-05-05 17:00:26", "198.103.184.76", "135");
INSERT INTO `wp_gf_form_view` VALUES("30356", "10", "2016-05-05 17:00:26", "198.103.184.76", "132");
INSERT INTO `wp_gf_form_view` VALUES("30357", "1", "2016-05-05 17:11:50", "198.103.184.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("30358", "2", "2016-05-05 17:46:06", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30359", "3", "2016-05-05 18:03:19", "77.75.79.95", "97");
INSERT INTO `wp_gf_form_view` VALUES("30360", "10", "2016-05-05 18:03:19", "77.75.79.95", "92");
INSERT INTO `wp_gf_form_view` VALUES("30361", "1", "2016-05-05 18:24:55", "24.244.23.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("30362", "3", "2016-05-05 19:19:31", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("30363", "10", "2016-05-05 19:19:31", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("30364", "3", "2016-05-05 20:04:46", "66.249.79.169", "21");
INSERT INTO `wp_gf_form_view` VALUES("30365", "10", "2016-05-05 20:04:46", "66.249.79.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("30366", "3", "2016-05-05 21:05:21", "24.69.21.125", "55");
INSERT INTO `wp_gf_form_view` VALUES("30367", "10", "2016-05-05 21:05:21", "24.69.21.125", "55");
INSERT INTO `wp_gf_form_view` VALUES("30368", "3", "2016-05-05 22:06:08", "142.31.111.226", "68");
INSERT INTO `wp_gf_form_view` VALUES("30369", "10", "2016-05-05 22:06:09", "142.31.111.226", "65");
INSERT INTO `wp_gf_form_view` VALUES("30370", "12", "2016-05-05 23:01:24", "184.66.32.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("30371", "3", "2016-05-05 23:01:24", "184.66.32.165", "40");
INSERT INTO `wp_gf_form_view` VALUES("30372", "10", "2016-05-05 23:01:24", "184.66.32.165", "40");
INSERT INTO `wp_gf_form_view` VALUES("30373", "11", "2016-05-05 23:27:52", "220.181.108.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("30374", "3", "2016-05-06 00:03:50", "220.181.108.114", "101");
INSERT INTO `wp_gf_form_view` VALUES("30375", "10", "2016-05-06 00:03:50", "220.181.108.114", "100");
INSERT INTO `wp_gf_form_view` VALUES("30376", "1", "2016-05-06 00:40:25", "70.67.56.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("30377", "3", "2016-05-06 01:07:52", "70.67.56.101", "42");
INSERT INTO `wp_gf_form_view` VALUES("30378", "10", "2016-05-06 01:07:52", "70.67.56.101", "41");
INSERT INTO `wp_gf_form_view` VALUES("30379", "3", "2016-05-06 03:38:36", "192.187.114.11", "25");
INSERT INTO `wp_gf_form_view` VALUES("30380", "10", "2016-05-06 03:38:38", "192.187.114.11", "25");
INSERT INTO `wp_gf_form_view` VALUES("30381", "10", "2016-05-06 04:25:31", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("30382", "3", "2016-05-06 04:25:33", "68.180.229.244", "30");
INSERT INTO `wp_gf_form_view` VALUES("30383", "10", "2016-05-06 05:03:37", "40.77.167.72", "45");
INSERT INTO `wp_gf_form_view` VALUES("30384", "3", "2016-05-06 05:03:37", "40.77.167.72", "37");
INSERT INTO `wp_gf_form_view` VALUES("30385", "10", "2016-05-06 06:01:47", "91.247.145.59", "80");
INSERT INTO `wp_gf_form_view` VALUES("30386", "3", "2016-05-06 06:01:48", "91.247.145.59", "82");
INSERT INTO `wp_gf_form_view` VALUES("30387", "3", "2016-05-06 07:06:20", "68.180.229.244", "56");
INSERT INTO `wp_gf_form_view` VALUES("30388", "10", "2016-05-06 07:06:20", "68.180.229.244", "56");
INSERT INTO `wp_gf_form_view` VALUES("30389", "11", "2016-05-06 07:32:40", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30390", "10", "2016-05-06 09:18:57", "202.46.57.172", "25");
INSERT INTO `wp_gf_form_view` VALUES("30391", "3", "2016-05-06 09:19:01", "202.46.57.172", "21");
INSERT INTO `wp_gf_form_view` VALUES("30392", "10", "2016-05-06 10:15:22", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("30393", "3", "2016-05-06 10:15:22", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("30394", "2", "2016-05-06 10:40:30", "194.187.168.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("30395", "8", "2016-05-06 10:49:56", "164.132.161.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("30396", "10", "2016-05-06 11:46:14", "77.75.79.54", "5");
INSERT INTO `wp_gf_form_view` VALUES("30397", "3", "2016-05-06 11:46:18", "77.75.79.54", "5");
INSERT INTO `wp_gf_form_view` VALUES("30398", "10", "2016-05-06 12:34:58", "37.115.184.150", "25");
INSERT INTO `wp_gf_form_view` VALUES("30399", "3", "2016-05-06 12:35:01", "37.115.184.150", "23");
INSERT INTO `wp_gf_form_view` VALUES("30400", "3", "2016-05-06 12:35:01", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30401", "3", "2016-05-06 12:35:01", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30402", "10", "2016-05-06 13:03:51", "51.255.65.12", "213");
INSERT INTO `wp_gf_form_view` VALUES("30403", "3", "2016-05-06 13:03:51", "51.255.65.12", "214");
INSERT INTO `wp_gf_form_view` VALUES("30404", "11", "2016-05-06 13:05:42", "143.176.126.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("30405", "12", "2016-05-06 13:06:31", "143.176.126.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("30406", "2", "2016-05-06 13:07:30", "143.176.126.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("30407", "10", "2016-05-06 14:04:12", "142.4.216.172", "110");
INSERT INTO `wp_gf_form_view` VALUES("30408", "3", "2016-05-06 14:04:12", "142.4.216.172", "111");
INSERT INTO `wp_gf_form_view` VALUES("30409", "11", "2016-05-06 14:04:25", "142.4.216.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("30410", "2", "2016-05-06 14:04:27", "142.4.216.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("30411", "3", "2016-05-06 15:44:37", "207.46.13.174", "16");
INSERT INTO `wp_gf_form_view` VALUES("30412", "10", "2016-05-06 15:44:39", "207.46.13.174", "15");
INSERT INTO `wp_gf_form_view` VALUES("30413", "11", "2016-05-06 15:59:37", "77.75.77.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("30414", "10", "2016-05-06 16:02:09", "51.255.65.60", "55");
INSERT INTO `wp_gf_form_view` VALUES("30415", "3", "2016-05-06 16:02:09", "51.255.65.60", "53");
INSERT INTO `wp_gf_form_view` VALUES("30416", "1", "2016-05-06 16:34:22", "23.94.65.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("30417", "10", "2016-05-06 17:03:17", "77.75.77.36", "57");
INSERT INTO `wp_gf_form_view` VALUES("30418", "3", "2016-05-06 17:03:17", "77.75.77.36", "56");
INSERT INTO `wp_gf_form_view` VALUES("30419", "1", "2016-05-06 17:03:33", "172.245.129.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("30420", "10", "2016-05-06 18:04:57", "184.175.246.146", "27");
INSERT INTO `wp_gf_form_view` VALUES("30421", "3", "2016-05-06 18:04:58", "184.175.246.146", "21");
INSERT INTO `wp_gf_form_view` VALUES("30422", "3", "2016-05-06 19:01:17", "202.46.48.18", "46");
INSERT INTO `wp_gf_form_view` VALUES("30423", "10", "2016-05-06 19:01:22", "202.46.48.18", "45");
INSERT INTO `wp_gf_form_view` VALUES("30424", "3", "2016-05-06 20:20:53", "68.180.229.244", "36");
INSERT INTO `wp_gf_form_view` VALUES("30425", "10", "2016-05-06 20:44:28", "104.142.127.170", "35");
INSERT INTO `wp_gf_form_view` VALUES("30426", "10", "2016-05-06 21:15:16", "202.46.52.145", "20");
INSERT INTO `wp_gf_form_view` VALUES("30427", "3", "2016-05-06 21:15:22", "202.46.52.145", "22");
INSERT INTO `wp_gf_form_view` VALUES("30428", "10", "2016-05-06 22:31:23", "77.75.78.160", "40");
INSERT INTO `wp_gf_form_view` VALUES("30429", "3", "2016-05-06 22:31:24", "77.75.78.160", "46");
INSERT INTO `wp_gf_form_view` VALUES("30430", "9", "2016-05-06 22:45:37", "149.202.49.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("30431", "8", "2016-05-06 22:45:56", "149.202.49.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("30432", "10", "2016-05-06 23:02:34", "176.195.103.71", "25");
INSERT INTO `wp_gf_form_view` VALUES("30433", "3", "2016-05-06 23:02:34", "176.195.103.71", "26");
INSERT INTO `wp_gf_form_view` VALUES("30434", "11", "2016-05-06 23:06:59", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("30435", "10", "2016-05-07 00:01:13", "144.76.153.198", "21");
INSERT INTO `wp_gf_form_view` VALUES("30436", "3", "2016-05-07 00:01:13", "144.76.153.198", "20");
INSERT INTO `wp_gf_form_view` VALUES("30437", "3", "2016-05-07 01:03:20", "68.180.229.244", "183");
INSERT INTO `wp_gf_form_view` VALUES("30438", "10", "2016-05-07 01:03:21", "68.180.229.244", "181");
INSERT INTO `wp_gf_form_view` VALUES("30439", "11", "2016-05-07 01:54:58", "64.251.182.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30440", "12", "2016-05-07 01:55:20", "64.251.182.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30441", "2", "2016-05-07 01:55:49", "64.251.182.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("30442", "3", "2016-05-07 02:00:08", "202.46.50.84", "27");
INSERT INTO `wp_gf_form_view` VALUES("30443", "10", "2016-05-07 02:00:08", "202.46.50.84", "25");
INSERT INTO `wp_gf_form_view` VALUES("30444", "10", "2016-05-07 03:41:34", "94.23.40.23", "357");
INSERT INTO `wp_gf_form_view` VALUES("30445", "3", "2016-05-07 03:41:34", "94.23.40.23", "361");
INSERT INTO `wp_gf_form_view` VALUES("30446", "11", "2016-05-07 03:41:57", "94.23.40.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("30447", "2", "2016-05-07 03:42:02", "94.23.40.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("30448", "12", "2016-05-07 03:44:04", "94.23.40.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("30449", "1", "2016-05-07 03:44:46", "94.23.40.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("30450", "3", "2016-05-07 05:06:38", "66.249.79.169", "26");
INSERT INTO `wp_gf_form_view` VALUES("30451", "10", "2016-05-07 05:06:40", "66.249.79.169", "25");
INSERT INTO `wp_gf_form_view` VALUES("30452", "10", "2016-05-07 06:12:29", "202.46.52.173", "10");
INSERT INTO `wp_gf_form_view` VALUES("30453", "3", "2016-05-07 06:12:29", "202.46.52.173", "10");
INSERT INTO `wp_gf_form_view` VALUES("30454", "8", "2016-05-07 07:10:36", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("30455", "10", "2016-05-07 07:10:39", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("30456", "3", "2016-05-07 07:10:39", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("30457", "10", "2016-05-07 08:48:14", "202.46.54.166", "5");
INSERT INTO `wp_gf_form_view` VALUES("30458", "3", "2016-05-07 08:48:16", "202.46.54.166", "5");
INSERT INTO `wp_gf_form_view` VALUES("30459", "10", "2016-05-07 09:21:40", "202.46.55.143", "11");
INSERT INTO `wp_gf_form_view` VALUES("30460", "3", "2016-05-07 09:21:50", "202.46.55.143", "10");
INSERT INTO `wp_gf_form_view` VALUES("30461", "9", "2016-05-07 10:32:11", "207.46.13.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("30462", "10", "2016-05-07 10:32:13", "207.46.13.109", "10");
INSERT INTO `wp_gf_form_view` VALUES("30463", "3", "2016-05-07 10:32:14", "207.46.13.109", "10");
INSERT INTO `wp_gf_form_view` VALUES("30464", "10", "2016-05-07 13:09:17", "66.249.79.176", "182");
INSERT INTO `wp_gf_form_view` VALUES("30465", "3", "2016-05-07 13:09:19", "66.249.79.176", "181");
INSERT INTO `wp_gf_form_view` VALUES("30466", "11", "2016-05-07 13:50:31", "104.160.176.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("30467", "12", "2016-05-07 13:51:26", "104.160.176.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("30468", "2", "2016-05-07 13:52:25", "104.160.176.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("30469", "10", "2016-05-07 14:43:28", "77.75.79.72", "15");
INSERT INTO `wp_gf_form_view` VALUES("30470", "3", "2016-05-07 14:43:30", "77.75.79.72", "11");
INSERT INTO `wp_gf_form_view` VALUES("30471", "10", "2016-05-07 15:06:34", "66.249.79.169", "27");
INSERT INTO `wp_gf_form_view` VALUES("30472", "3", "2016-05-07 15:06:34", "66.249.79.169", "25");
INSERT INTO `wp_gf_form_view` VALUES("30473", "10", "2016-05-07 16:00:00", "51.255.65.49", "40");
INSERT INTO `wp_gf_form_view` VALUES("30474", "3", "2016-05-07 16:00:00", "51.255.65.49", "42");
INSERT INTO `wp_gf_form_view` VALUES("30475", "3", "2016-05-07 17:10:14", "68.180.229.244", "117");
INSERT INTO `wp_gf_form_view` VALUES("30476", "10", "2016-05-07 17:10:15", "68.180.229.244", "120");
INSERT INTO `wp_gf_form_view` VALUES("30477", "11", "2016-05-07 17:34:56", "85.25.211.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("30478", "2", "2016-05-07 17:35:00", "85.25.211.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("30479", "10", "2016-05-07 18:23:41", "164.132.161.87", "10");
INSERT INTO `wp_gf_form_view` VALUES("30480", "3", "2016-05-07 18:23:43", "164.132.161.87", "11");
INSERT INTO `wp_gf_form_view` VALUES("30481", "10", "2016-05-07 19:13:24", "66.249.79.162", "60");
INSERT INTO `wp_gf_form_view` VALUES("30482", "3", "2016-05-07 19:13:24", "66.249.79.162", "60");
INSERT INTO `wp_gf_form_view` VALUES("30483", "10", "2016-05-07 20:04:07", "207.46.13.174", "15");
INSERT INTO `wp_gf_form_view` VALUES("30484", "3", "2016-05-07 20:04:07", "207.46.13.174", "15");
INSERT INTO `wp_gf_form_view` VALUES("30485", "9", "2016-05-07 21:13:08", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30486", "10", "2016-05-07 21:28:33", "66.249.79.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("30487", "3", "2016-05-07 21:28:34", "66.249.79.176", "16");
INSERT INTO `wp_gf_form_view` VALUES("30488", "10", "2016-05-07 22:36:36", "199.21.99.202", "27");
INSERT INTO `wp_gf_form_view` VALUES("30489", "3", "2016-05-07 22:36:39", "199.21.99.202", "27");
INSERT INTO `wp_gf_form_view` VALUES("30490", "10", "2016-05-07 23:01:27", "199.21.99.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("30491", "3", "2016-05-07 23:01:27", "199.21.99.202", "32");
INSERT INTO `wp_gf_form_view` VALUES("30492", "3", "2016-05-08 00:10:12", "220.181.108.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("30493", "10", "2016-05-08 00:10:13", "220.181.108.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("30494", "3", "2016-05-08 01:04:05", "66.249.79.162", "68");
INSERT INTO `wp_gf_form_view` VALUES("30495", "10", "2016-05-08 01:04:07", "66.249.79.162", "44");
INSERT INTO `wp_gf_form_view` VALUES("30496", "3", "2016-05-08 02:34:45", "51.255.65.21", "12");
INSERT INTO `wp_gf_form_view` VALUES("30497", "10", "2016-05-08 02:34:46", "51.255.65.21", "8");
INSERT INTO `wp_gf_form_view` VALUES("30498", "3", "2016-05-08 03:04:59", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("30499", "10", "2016-05-08 03:04:59", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("30500", "3", "2016-05-08 04:05:28", "202.46.57.121", "37");
INSERT INTO `wp_gf_form_view` VALUES("30501", "10", "2016-05-08 04:05:30", "202.46.57.121", "26");
INSERT INTO `wp_gf_form_view` VALUES("30502", "3", "2016-05-08 05:10:10", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("30503", "10", "2016-05-08 05:41:20", "77.75.79.36", "12");
INSERT INTO `wp_gf_form_view` VALUES("30504", "1", "2016-05-08 05:58:51", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30505", "3", "2016-05-08 06:46:35", "66.249.79.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("30506", "10", "2016-05-08 06:46:36", "66.249.79.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("30507", "3", "2016-05-08 07:02:25", "77.75.79.119", "19");
INSERT INTO `wp_gf_form_view` VALUES("30508", "10", "2016-05-08 07:02:25", "77.75.79.119", "12");
INSERT INTO `wp_gf_form_view` VALUES("30509", "3", "2016-05-08 08:03:25", "77.75.79.54", "21");
INSERT INTO `wp_gf_form_view` VALUES("30510", "10", "2016-05-08 08:03:27", "77.75.79.54", "12");
INSERT INTO `wp_gf_form_view` VALUES("30511", "9", "2016-05-08 08:57:38", "89.163.148.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("30512", "3", "2016-05-08 09:06:13", "202.46.52.11", "48");
INSERT INTO `wp_gf_form_view` VALUES("30513", "10", "2016-05-08 09:06:14", "202.46.52.11", "33");
INSERT INTO `wp_gf_form_view` VALUES("30514", "3", "2016-05-08 10:09:15", "207.46.13.174", "375");
INSERT INTO `wp_gf_form_view` VALUES("30515", "10", "2016-05-08 10:09:18", "207.46.13.174", "250");
INSERT INTO `wp_gf_form_view` VALUES("30516", "5", "2016-05-08 10:57:50", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("30517", "9", "2016-05-08 10:58:44", "207.46.13.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("30518", "3", "2016-05-08 11:00:00", "207.46.13.174", "425");
INSERT INTO `wp_gf_form_view` VALUES("30519", "10", "2016-05-08 11:00:00", "207.46.13.174", "279");
INSERT INTO `wp_gf_form_view` VALUES("30520", "7", "2016-05-08 11:00:15", "207.46.13.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("30521", "9", "2016-05-08 11:03:15", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("30522", "2", "2016-05-08 11:04:15", "157.55.39.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("30523", "1", "2016-05-08 11:04:21", "157.55.39.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("30524", "3", "2016-05-08 12:16:18", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("30525", "10", "2016-05-08 12:16:19", "68.180.229.244", "4");
INSERT INTO `wp_gf_form_view` VALUES("30526", "3", "2016-05-08 13:01:37", "46.118.116.239", "25");
INSERT INTO `wp_gf_form_view` VALUES("30527", "10", "2016-05-08 13:01:38", "46.118.116.239", "17");
INSERT INTO `wp_gf_form_view` VALUES("30528", "3", "2016-05-08 14:13:28", "40.77.167.35", "25");
INSERT INTO `wp_gf_form_view` VALUES("30529", "10", "2016-05-08 14:13:28", "40.77.167.35", "16");
INSERT INTO `wp_gf_form_view` VALUES("30530", "8", "2016-05-08 14:57:33", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30531", "11", "2016-05-08 15:08:18", "157.55.39.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("30532", "3", "2016-05-08 15:08:18", "157.55.39.63", "12");
INSERT INTO `wp_gf_form_view` VALUES("30533", "10", "2016-05-08 15:08:18", "157.55.39.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("30534", "3", "2016-05-08 16:25:50", "184.151.231.45", "30");
INSERT INTO `wp_gf_form_view` VALUES("30535", "10", "2016-05-08 16:25:54", "184.151.231.45", "19");
INSERT INTO `wp_gf_form_view` VALUES("30536", "10", "2016-05-08 16:25:54", "184.151.231.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("30537", "12", "2016-05-08 16:30:20", "220.181.108.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("30538", "3", "2016-05-08 17:03:56", "66.249.79.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("30539", "10", "2016-05-08 17:03:56", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("30540", "3", "2016-05-08 18:18:58", "207.46.13.48", "12");
INSERT INTO `wp_gf_form_view` VALUES("30541", "10", "2016-05-08 18:18:59", "207.46.13.48", "8");
INSERT INTO `wp_gf_form_view` VALUES("30542", "3", "2016-05-08 19:11:02", "207.46.13.174", "49");
INSERT INTO `wp_gf_form_view` VALUES("30543", "10", "2016-05-08 19:11:04", "207.46.13.174", "33");
INSERT INTO `wp_gf_form_view` VALUES("30544", "3", "2016-05-08 20:28:32", "93.120.132.77", "43");
INSERT INTO `wp_gf_form_view` VALUES("30545", "10", "2016-05-08 20:28:33", "93.120.132.77", "29");
INSERT INTO `wp_gf_form_view` VALUES("30546", "1", "2016-05-08 20:43:51", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("30547", "3", "2016-05-08 21:22:38", "162.243.227.220", "1568");
INSERT INTO `wp_gf_form_view` VALUES("30548", "10", "2016-05-08 21:22:41", "162.243.227.220", "1041");
INSERT INTO `wp_gf_form_view` VALUES("30549", "1", "2016-05-08 21:27:56", "162.243.227.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30550", "11", "2016-05-08 21:28:16", "162.243.227.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30551", "5", "2016-05-08 21:35:11", "162.243.227.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30552", "12", "2016-05-08 21:39:36", "162.243.227.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30553", "6", "2016-05-08 21:44:11", "162.243.227.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30554", "9", "2016-05-08 21:51:37", "162.243.227.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30555", "3", "2016-05-08 22:00:11", "162.243.227.220", "1921");
INSERT INTO `wp_gf_form_view` VALUES("30556", "10", "2016-05-08 22:00:11", "162.243.227.220", "1273");
INSERT INTO `wp_gf_form_view` VALUES("30557", "2", "2016-05-08 22:31:46", "162.243.227.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30558", "8", "2016-05-08 22:45:44", "162.243.227.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("30559", "3", "2016-05-08 23:24:52", "24.68.139.139", "66");
INSERT INTO `wp_gf_form_view` VALUES("30560", "10", "2016-05-08 23:25:05", "24.68.139.139", "44");
INSERT INTO `wp_gf_form_view` VALUES("30561", "3", "2016-05-09 00:01:06", "66.249.79.169", "44");
INSERT INTO `wp_gf_form_view` VALUES("30562", "10", "2016-05-09 00:01:06", "66.249.79.169", "28");
INSERT INTO `wp_gf_form_view` VALUES("30563", "3", "2016-05-09 01:01:21", "40.77.167.35", "25");
INSERT INTO `wp_gf_form_view` VALUES("30564", "10", "2016-05-09 01:01:25", "40.77.167.35", "16");
INSERT INTO `wp_gf_form_view` VALUES("30565", "3", "2016-05-09 02:01:49", "66.249.79.169", "79");
INSERT INTO `wp_gf_form_view` VALUES("30566", "10", "2016-05-09 02:01:49", "66.249.79.169", "53");
INSERT INTO `wp_gf_form_view` VALUES("30567", "3", "2016-05-09 03:05:43", "68.180.229.244", "43");
INSERT INTO `wp_gf_form_view` VALUES("30568", "10", "2016-05-09 03:05:43", "68.180.229.244", "28");
INSERT INTO `wp_gf_form_view` VALUES("30569", "3", "2016-05-09 04:27:58", "220.181.108.121", "32");
INSERT INTO `wp_gf_form_view` VALUES("30570", "10", "2016-05-09 04:28:03", "220.181.108.121", "20");
INSERT INTO `wp_gf_form_view` VALUES("30571", "3", "2016-05-09 05:02:57", "164.132.161.70", "49");
INSERT INTO `wp_gf_form_view` VALUES("30572", "10", "2016-05-09 05:03:06", "164.132.161.70", "32");
INSERT INTO `wp_gf_form_view` VALUES("30573", "3", "2016-05-09 06:01:18", "220.181.108.141", "30");
INSERT INTO `wp_gf_form_view` VALUES("30574", "10", "2016-05-09 06:01:18", "220.181.108.141", "20");
INSERT INTO `wp_gf_form_view` VALUES("30575", "3", "2016-05-09 07:10:49", "40.77.167.35", "50");
INSERT INTO `wp_gf_form_view` VALUES("30576", "10", "2016-05-09 07:10:49", "40.77.167.35", "32");
INSERT INTO `wp_gf_form_view` VALUES("30577", "3", "2016-05-09 08:13:17", "40.77.167.35", "42");
INSERT INTO `wp_gf_form_view` VALUES("30578", "10", "2016-05-09 08:13:22", "40.77.167.35", "29");
INSERT INTO `wp_gf_form_view` VALUES("30579", "3", "2016-05-09 09:09:06", "66.249.79.176", "50");
INSERT INTO `wp_gf_form_view` VALUES("30580", "10", "2016-05-09 09:09:06", "66.249.79.176", "33");
INSERT INTO `wp_gf_form_view` VALUES("30581", "12", "2016-05-09 09:17:07", "207.46.13.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("30582", "2", "2016-05-09 10:00:54", "157.55.39.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("30583", "3", "2016-05-09 10:00:54", "157.55.39.142", "103");
INSERT INTO `wp_gf_form_view` VALUES("30584", "10", "2016-05-09 10:00:54", "157.55.39.142", "68");
INSERT INTO `wp_gf_form_view` VALUES("30585", "8", "2016-05-09 10:40:14", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30586", "3", "2016-05-09 11:10:56", "202.46.54.102", "6");
INSERT INTO `wp_gf_form_view` VALUES("30587", "10", "2016-05-09 11:10:57", "202.46.54.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("30588", "3", "2016-05-09 12:06:20", "207.46.13.48", "50");
INSERT INTO `wp_gf_form_view` VALUES("30589", "10", "2016-05-09 12:06:22", "207.46.13.48", "33");
INSERT INTO `wp_gf_form_view` VALUES("30590", "3", "2016-05-09 13:40:24", "66.249.79.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("30591", "10", "2016-05-09 13:40:26", "66.249.79.176", "24");
INSERT INTO `wp_gf_form_view` VALUES("30592", "1", "2016-05-09 13:55:20", "157.55.39.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("30593", "3", "2016-05-09 14:00:20", "199.21.99.202", "42");
INSERT INTO `wp_gf_form_view` VALUES("30594", "10", "2016-05-09 14:00:20", "199.21.99.202", "29");
INSERT INTO `wp_gf_form_view` VALUES("30595", "12", "2016-05-09 14:11:40", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("30596", "3", "2016-05-09 15:06:42", "151.80.31.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("30597", "10", "2016-05-09 15:06:42", "151.80.31.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("30598", "3", "2016-05-09 16:02:03", "68.180.229.244", "50");
INSERT INTO `wp_gf_form_view` VALUES("30599", "10", "2016-05-09 16:02:03", "68.180.229.244", "32");
INSERT INTO `wp_gf_form_view` VALUES("30600", "3", "2016-05-09 17:24:55", "202.46.48.205", "123");
INSERT INTO `wp_gf_form_view` VALUES("30601", "10", "2016-05-09 17:24:57", "202.46.48.205", "76");
INSERT INTO `wp_gf_form_view` VALUES("30602", "12", "2016-05-09 17:53:58", "207.46.13.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("30603", "2", "2016-05-09 17:54:07", "157.55.39.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("30604", "3", "2016-05-09 18:07:21", "172.245.251.157", "38");
INSERT INTO `wp_gf_form_view` VALUES("30605", "10", "2016-05-09 18:07:21", "172.245.251.157", "24");
INSERT INTO `wp_gf_form_view` VALUES("30606", "3", "2016-05-09 19:04:50", "207.46.13.48", "57");
INSERT INTO `wp_gf_form_view` VALUES("30607", "10", "2016-05-09 19:04:52", "207.46.13.48", "36");
INSERT INTO `wp_gf_form_view` VALUES("30608", "1", "2016-05-09 19:27:31", "75.155.180.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("30609", "3", "2016-05-09 20:22:54", "202.46.48.18", "238");
INSERT INTO `wp_gf_form_view` VALUES("30610", "10", "2016-05-09 20:22:55", "202.46.48.18", "157");
INSERT INTO `wp_gf_form_view` VALUES("30611", "11", "2016-05-09 20:38:02", "92.85.160.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("30612", "12", "2016-05-09 20:38:34", "92.85.160.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("30613", "2", "2016-05-09 20:39:22", "92.85.160.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("30614", "3", "2016-05-09 21:04:17", "184.69.12.50", "32");
INSERT INTO `wp_gf_form_view` VALUES("30615", "10", "2016-05-09 21:04:17", "184.69.12.50", "24");
INSERT INTO `wp_gf_form_view` VALUES("30616", "3", "2016-05-09 22:11:36", "184.66.242.187", "86");
INSERT INTO `wp_gf_form_view` VALUES("30617", "10", "2016-05-09 22:11:37", "184.66.242.187", "56");
INSERT INTO `wp_gf_form_view` VALUES("30618", "1", "2016-05-09 22:29:53", "24.68.112.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("30619", "11", "2016-05-09 23:03:03", "24.69.140.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("30620", "3", "2016-05-09 23:03:03", "24.69.140.109", "12");
INSERT INTO `wp_gf_form_view` VALUES("30621", "10", "2016-05-09 23:03:03", "24.69.140.109", "8");
INSERT INTO `wp_gf_form_view` VALUES("30622", "3", "2016-05-10 00:05:10", "130.185.155.82", "25");
INSERT INTO `wp_gf_form_view` VALUES("30623", "10", "2016-05-10 00:05:11", "130.185.155.82", "16");
INSERT INTO `wp_gf_form_view` VALUES("30624", "3", "2016-05-10 01:10:48", "24.68.44.71", "212");
INSERT INTO `wp_gf_form_view` VALUES("30625", "10", "2016-05-10 01:10:48", "24.68.44.71", "141");
INSERT INTO `wp_gf_form_view` VALUES("30626", "11", "2016-05-10 01:50:25", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("30627", "12", "2016-05-10 01:51:04", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("30628", "2", "2016-05-10 01:51:56", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("30629", "3", "2016-05-10 02:26:09", "151.80.31.166", "207");
INSERT INTO `wp_gf_form_view` VALUES("30630", "10", "2016-05-10 02:26:11", "151.80.31.166", "137");
INSERT INTO `wp_gf_form_view` VALUES("30631", "11", "2016-05-10 02:31:23", "145.132.1.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("30632", "12", "2016-05-10 02:32:14", "145.132.1.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("30633", "2", "2016-05-10 02:33:43", "145.132.1.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("30634", "3", "2016-05-10 03:00:11", "199.21.99.202", "48");
INSERT INTO `wp_gf_form_view` VALUES("30635", "10", "2016-05-10 03:00:12", "199.21.99.202", "32");
INSERT INTO `wp_gf_form_view` VALUES("30636", "3", "2016-05-10 04:38:31", "164.132.161.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("30637", "10", "2016-05-10 04:38:32", "164.132.161.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("30638", "3", "2016-05-10 05:05:59", "24.108.177.135", "13");
INSERT INTO `wp_gf_form_view` VALUES("30639", "10", "2016-05-10 05:05:59", "24.108.177.135", "8");
INSERT INTO `wp_gf_form_view` VALUES("30640", "3", "2016-05-10 06:13:55", "66.249.79.169", "19");
INSERT INTO `wp_gf_form_view` VALUES("30641", "10", "2016-05-10 06:13:56", "66.249.79.169", "16");
INSERT INTO `wp_gf_form_view` VALUES("30642", "3", "2016-05-10 07:13:23", "199.21.99.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("30643", "10", "2016-05-10 07:13:24", "199.21.99.202", "20");
INSERT INTO `wp_gf_form_view` VALUES("30644", "3", "2016-05-10 08:00:21", "51.255.65.97", "30");
INSERT INTO `wp_gf_form_view` VALUES("30645", "10", "2016-05-10 08:00:22", "51.255.65.97", "22");
INSERT INTO `wp_gf_form_view` VALUES("30646", "9", "2016-05-10 08:21:31", "151.80.31.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("30647", "3", "2016-05-10 09:23:26", "51.255.65.91", "38");
INSERT INTO `wp_gf_form_view` VALUES("30648", "10", "2016-05-10 09:23:29", "51.255.65.91", "24");
INSERT INTO `wp_gf_form_view` VALUES("30649", "3", "2016-05-10 10:07:45", "68.180.229.244", "31");
INSERT INTO `wp_gf_form_view` VALUES("30650", "10", "2016-05-10 10:07:45", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("30651", "11", "2016-05-10 10:07:57", "164.132.161.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("30652", "3", "2016-05-10 11:18:55", "207.46.13.159", "407");
INSERT INTO `wp_gf_form_view` VALUES("30653", "10", "2016-05-10 11:18:57", "207.46.13.159", "273");
INSERT INTO `wp_gf_form_view` VALUES("30654", "2", "2016-05-10 11:19:39", "207.46.13.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("30655", "1", "2016-05-10 11:19:43", "207.46.13.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("30656", "9", "2016-05-10 11:19:48", "207.46.13.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("30657", "7", "2016-05-10 11:20:36", "207.46.13.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("30658", "3", "2016-05-10 12:04:08", "77.75.79.72", "18");
INSERT INTO `wp_gf_form_view` VALUES("30659", "10", "2016-05-10 12:04:09", "77.75.79.72", "12");
INSERT INTO `wp_gf_form_view` VALUES("30660", "3", "2016-05-10 13:16:46", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("30661", "10", "2016-05-10 13:16:50", "66.249.79.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("30662", "3", "2016-05-10 14:03:12", "77.75.78.166", "259");
INSERT INTO `wp_gf_form_view` VALUES("30663", "10", "2016-05-10 14:03:14", "77.75.78.166", "173");
INSERT INTO `wp_gf_form_view` VALUES("30664", "11", "2016-05-10 14:24:19", "173.243.112.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("30665", "12", "2016-05-10 14:24:44", "173.243.112.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("30666", "2", "2016-05-10 14:25:25", "173.243.112.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("30667", "3", "2016-05-10 15:02:48", "68.180.229.244", "36");
INSERT INTO `wp_gf_form_view` VALUES("30668", "10", "2016-05-10 15:02:50", "68.180.229.244", "24");
INSERT INTO `wp_gf_form_view` VALUES("30669", "3", "2016-05-10 16:07:17", "24.68.226.152", "39");
INSERT INTO `wp_gf_form_view` VALUES("30670", "10", "2016-05-10 16:07:19", "24.68.226.152", "24");
INSERT INTO `wp_gf_form_view` VALUES("30671", "3", "2016-05-10 17:01:59", "66.249.79.176", "24");
INSERT INTO `wp_gf_form_view` VALUES("30672", "10", "2016-05-10 17:02:01", "66.249.79.176", "16");
INSERT INTO `wp_gf_form_view` VALUES("30673", "3", "2016-05-10 18:09:25", "40.77.167.35", "52");
INSERT INTO `wp_gf_form_view` VALUES("30674", "10", "2016-05-10 18:09:26", "40.77.167.35", "32");
INSERT INTO `wp_gf_form_view` VALUES("30675", "3", "2016-05-10 19:00:20", "198.245.60.28", "30");
INSERT INTO `wp_gf_form_view` VALUES("30676", "10", "2016-05-10 19:00:27", "198.245.60.28", "20");
INSERT INTO `wp_gf_form_view` VALUES("30677", "3", "2016-05-10 20:00:01", "157.55.39.135", "98");
INSERT INTO `wp_gf_form_view` VALUES("30678", "10", "2016-05-10 20:00:06", "157.55.39.135", "69");
INSERT INTO `wp_gf_form_view` VALUES("30679", "3", "2016-05-10 21:16:04", "216.232.157.245", "26");
INSERT INTO `wp_gf_form_view` VALUES("30680", "10", "2016-05-10 21:16:05", "216.232.157.245", "16");
INSERT INTO `wp_gf_form_view` VALUES("30681", "3", "2016-05-10 22:22:17", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("30682", "10", "2016-05-10 22:22:19", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("30683", "3", "2016-05-10 23:03:49", "202.46.58.124", "12");
INSERT INTO `wp_gf_form_view` VALUES("30684", "10", "2016-05-10 23:03:52", "202.46.58.124", "8");
INSERT INTO `wp_gf_form_view` VALUES("30685", "3", "2016-05-11 00:05:51", "207.46.13.102", "37");
INSERT INTO `wp_gf_form_view` VALUES("30686", "10", "2016-05-11 00:05:54", "207.46.13.102", "24");
INSERT INTO `wp_gf_form_view` VALUES("30687", "3", "2016-05-11 01:02:44", "151.80.31.108", "12");
INSERT INTO `wp_gf_form_view` VALUES("30688", "10", "2016-05-11 01:02:44", "151.80.31.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("30689", "3", "2016-05-11 02:50:22", "40.77.167.35", "7");
INSERT INTO `wp_gf_form_view` VALUES("30690", "10", "2016-05-11 02:50:24", "40.77.167.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("30691", "10", "2016-05-11 03:06:11", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("30692", "3", "2016-05-11 03:06:11", "68.180.229.244", "32");
INSERT INTO `wp_gf_form_view` VALUES("30693", "3", "2016-05-11 04:09:00", "184.69.138.2", "40");
INSERT INTO `wp_gf_form_view` VALUES("30694", "10", "2016-05-11 04:09:00", "184.69.138.2", "24");
INSERT INTO `wp_gf_form_view` VALUES("30695", "3", "2016-05-11 05:14:57", "198.245.60.28", "18");
INSERT INTO `wp_gf_form_view` VALUES("30696", "10", "2016-05-11 05:14:57", "198.245.60.28", "12");
INSERT INTO `wp_gf_form_view` VALUES("30697", "3", "2016-05-11 06:23:30", "23.92.60.154", "19");
INSERT INTO `wp_gf_form_view` VALUES("30698", "10", "2016-05-11 06:23:31", "23.92.60.154", "13");
INSERT INTO `wp_gf_form_view` VALUES("30699", "3", "2016-05-11 07:08:37", "164.132.161.71", "13");
INSERT INTO `wp_gf_form_view` VALUES("30700", "10", "2016-05-11 07:08:37", "164.132.161.71", "8");
INSERT INTO `wp_gf_form_view` VALUES("30701", "3", "2016-05-11 09:40:30", "51.255.65.55", "19");
INSERT INTO `wp_gf_form_view` VALUES("30702", "10", "2016-05-11 09:40:31", "51.255.65.55", "12");
INSERT INTO `wp_gf_form_view` VALUES("30703", "3", "2016-05-11 10:29:38", "202.46.51.19", "30");
INSERT INTO `wp_gf_form_view` VALUES("30704", "10", "2016-05-11 10:29:38", "202.46.51.19", "20");
INSERT INTO `wp_gf_form_view` VALUES("30705", "3", "2016-05-11 11:01:19", "207.46.13.156", "12");
INSERT INTO `wp_gf_form_view` VALUES("30706", "10", "2016-05-11 11:01:19", "207.46.13.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("30707", "7", "2016-05-11 12:30:19", "207.46.13.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("30708", "3", "2016-05-11 12:30:35", "207.46.13.102", "12");
INSERT INTO `wp_gf_form_view` VALUES("30709", "10", "2016-05-11 12:30:35", "207.46.13.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("30710", "3", "2016-05-11 13:03:46", "68.180.229.244", "18");
INSERT INTO `wp_gf_form_view` VALUES("30711", "10", "2016-05-11 13:03:46", "68.180.229.244", "12");
INSERT INTO `wp_gf_form_view` VALUES("30712", "3", "2016-05-11 14:03:02", "68.180.229.244", "31");
INSERT INTO `wp_gf_form_view` VALUES("30713", "10", "2016-05-11 14:03:02", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("30714", "11", "2016-05-11 14:36:31", "157.55.39.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("30715", "3", "2016-05-11 15:00:09", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("30716", "10", "2016-05-11 15:00:09", "66.249.79.176", "16");
INSERT INTO `wp_gf_form_view` VALUES("30717", "3", "2016-05-11 16:04:27", "157.55.39.243", "377");
INSERT INTO `wp_gf_form_view` VALUES("30718", "10", "2016-05-11 16:04:27", "157.55.39.243", "249");
INSERT INTO `wp_gf_form_view` VALUES("30719", "11", "2016-05-11 16:07:18", "84.123.69.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("30720", "12", "2016-05-11 16:08:40", "84.123.69.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("30721", "2", "2016-05-11 16:09:54", "84.123.69.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("30722", "1", "2016-05-11 16:47:46", "24.68.135.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("30723", "3", "2016-05-11 17:07:35", "173.183.47.92", "57");
INSERT INTO `wp_gf_form_view` VALUES("30724", "10", "2016-05-11 17:07:36", "173.183.47.92", "36");
INSERT INTO `wp_gf_form_view` VALUES("30725", "6", "2016-05-11 17:08:52", "202.46.49.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("30726", "1", "2016-05-11 17:49:41", "130.185.159.230", "3");
INSERT INTO `wp_gf_form_view` VALUES("30727", "3", "2016-05-11 18:01:15", "216.232.3.81", "27");
INSERT INTO `wp_gf_form_view` VALUES("30728", "10", "2016-05-11 18:01:15", "216.232.3.81", "16");
INSERT INTO `wp_gf_form_view` VALUES("30729", "3", "2016-05-11 19:06:18", "178.137.83.178", "86");
INSERT INTO `wp_gf_form_view` VALUES("30730", "3", "2016-05-11 19:06:18", "178.137.83.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("30731", "10", "2016-05-11 19:06:20", "178.137.83.178", "53");
INSERT INTO `wp_gf_form_view` VALUES("30732", "10", "2016-05-11 19:06:20", "178.137.83.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("30733", "10", "2016-05-11 19:06:20", "178.137.83.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("30734", "10", "2016-05-11 19:06:20", "178.137.83.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("30735", "3", "2016-05-11 20:04:33", "66.249.79.176", "122");
INSERT INTO `wp_gf_form_view` VALUES("30736", "10", "2016-05-11 20:04:33", "66.249.79.176", "80");
INSERT INTO `wp_gf_form_view` VALUES("30737", "1", "2016-05-11 20:50:25", "24.68.146.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("30738", "3", "2016-05-11 21:13:28", "157.55.39.224", "175");
INSERT INTO `wp_gf_form_view` VALUES("30739", "10", "2016-05-11 21:13:31", "157.55.39.224", "116");
INSERT INTO `wp_gf_form_view` VALUES("30740", "11", "2016-05-11 21:17:19", "142.4.216.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("30741", "2", "2016-05-11 21:17:22", "142.4.216.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("30742", "1", "2016-05-11 22:16:25", "62.210.122.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("30743", "3", "2016-05-11 22:16:25", "62.210.122.172", "485");
INSERT INTO `wp_gf_form_view` VALUES("30744", "10", "2016-05-11 22:16:26", "62.210.122.172", "322");
INSERT INTO `wp_gf_form_view` VALUES("30745", "9", "2016-05-11 22:27:33", "207.46.13.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("30746", "7", "2016-05-11 22:28:52", "157.55.39.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("30747", "12", "2016-05-11 23:24:35", "142.31.166.243", "2");
INSERT INTO `wp_gf_form_view` VALUES("30748", "3", "2016-05-11 23:24:35", "142.31.166.243", "18");
INSERT INTO `wp_gf_form_view` VALUES("30749", "10", "2016-05-11 23:24:36", "142.31.166.243", "12");
INSERT INTO `wp_gf_form_view` VALUES("30750", "3", "2016-05-12 00:03:09", "207.46.13.129", "192");
INSERT INTO `wp_gf_form_view` VALUES("30751", "10", "2016-05-12 00:03:10", "207.46.13.129", "127");
INSERT INTO `wp_gf_form_view` VALUES("30752", "2", "2016-05-12 00:03:46", "207.46.13.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("30753", "1", "2016-05-12 00:03:49", "207.46.13.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("30754", "11", "2016-05-12 00:08:23", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("30755", "3", "2016-05-12 01:02:26", "220.181.108.82", "18");
INSERT INTO `wp_gf_form_view` VALUES("30756", "10", "2016-05-12 01:02:26", "220.181.108.82", "12");
INSERT INTO `wp_gf_form_view` VALUES("30757", "3", "2016-05-12 02:07:57", "141.8.143.242", "176");
INSERT INTO `wp_gf_form_view` VALUES("30758", "10", "2016-05-12 02:07:58", "141.8.143.242", "117");
INSERT INTO `wp_gf_form_view` VALUES("30759", "5", "2016-05-12 02:21:51", "157.55.39.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("30760", "3", "2016-05-12 03:08:58", "66.249.79.176", "12");
INSERT INTO `wp_gf_form_view` VALUES("30761", "10", "2016-05-12 03:08:58", "66.249.79.176", "8");
INSERT INTO `wp_gf_form_view` VALUES("30762", "3", "2016-05-12 04:15:38", "154.20.43.165", "26");
INSERT INTO `wp_gf_form_view` VALUES("30763", "10", "2016-05-12 04:15:39", "154.20.43.165", "16");
INSERT INTO `wp_gf_form_view` VALUES("30764", "1", "2016-05-12 04:19:37", "62.210.122.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("30765", "3", "2016-05-12 05:33:29", "164.132.161.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("30766", "10", "2016-05-12 05:33:33", "164.132.161.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("30767", "3", "2016-05-12 06:17:10", "37.115.184.150", "23");
INSERT INTO `wp_gf_form_view` VALUES("30768", "3", "2016-05-12 06:17:10", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30769", "10", "2016-05-12 06:17:11", "37.115.184.150", "15");
INSERT INTO `wp_gf_form_view` VALUES("30770", "10", "2016-05-12 06:17:11", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30771", "3", "2016-05-12 07:04:21", "184.66.240.136", "19");
INSERT INTO `wp_gf_form_view` VALUES("30772", "10", "2016-05-12 07:04:21", "184.66.240.136", "12");
INSERT INTO `wp_gf_form_view` VALUES("30773", "3", "2016-05-12 08:19:52", "202.46.53.204", "26");
INSERT INTO `wp_gf_form_view` VALUES("30774", "10", "2016-05-12 08:19:53", "202.46.53.204", "16");
INSERT INTO `wp_gf_form_view` VALUES("30775", "3", "2016-05-12 09:05:12", "104.131.190.179", "152");
INSERT INTO `wp_gf_form_view` VALUES("30776", "10", "2016-05-12 09:05:12", "104.131.190.179", "101");
INSERT INTO `wp_gf_form_view` VALUES("30777", "11", "2016-05-12 09:05:13", "104.131.190.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("30778", "12", "2016-05-12 09:05:14", "104.131.190.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("30779", "2", "2016-05-12 09:05:14", "104.131.190.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("30780", "3", "2016-05-12 10:32:52", "68.180.229.244", "12");
INSERT INTO `wp_gf_form_view` VALUES("30781", "10", "2016-05-12 10:32:53", "68.180.229.244", "8");
INSERT INTO `wp_gf_form_view` VALUES("30782", "3", "2016-05-12 11:19:52", "202.46.48.143", "12");
INSERT INTO `wp_gf_form_view` VALUES("30783", "10", "2016-05-12 11:19:54", "202.46.48.143", "8");
INSERT INTO `wp_gf_form_view` VALUES("30784", "3", "2016-05-12 12:01:01", "68.180.229.244", "18");
INSERT INTO `wp_gf_form_view` VALUES("30785", "10", "2016-05-12 12:01:01", "68.180.229.244", "12");
INSERT INTO `wp_gf_form_view` VALUES("30786", "3", "2016-05-12 13:14:30", "220.181.108.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("30787", "10", "2016-05-12 13:14:32", "220.181.108.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("30788", "3", "2016-05-12 14:24:33", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("30789", "10", "2016-05-12 14:24:34", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("30790", "3", "2016-05-12 15:20:13", "70.66.30.172", "24");
INSERT INTO `wp_gf_form_view` VALUES("30791", "10", "2016-05-12 15:20:15", "70.66.30.172", "16");
INSERT INTO `wp_gf_form_view` VALUES("30792", "3", "2016-05-12 16:04:21", "78.10.204.239", "12");
INSERT INTO `wp_gf_form_view` VALUES("30793", "10", "2016-05-12 16:04:21", "78.10.204.239", "8");
INSERT INTO `wp_gf_form_view` VALUES("30794", "3", "2016-05-12 17:08:11", "142.104.44.23", "132");
INSERT INTO `wp_gf_form_view` VALUES("30795", "10", "2016-05-12 17:08:12", "142.104.44.23", "88");
INSERT INTO `wp_gf_form_view` VALUES("30796", "2", "2016-05-12 17:23:18", "66.249.79.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("30797", "1", "2016-05-12 17:27:22", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("30798", "12", "2016-05-12 17:38:15", "70.66.166.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("30799", "3", "2016-05-12 18:01:31", "24.86.166.160", "49");
INSERT INTO `wp_gf_form_view` VALUES("30800", "10", "2016-05-12 18:01:32", "24.86.166.160", "36");
INSERT INTO `wp_gf_form_view` VALUES("30801", "3", "2016-05-12 19:23:27", "207.194.133.9", "55");
INSERT INTO `wp_gf_form_view` VALUES("30802", "10", "2016-05-12 19:23:29", "207.194.133.9", "36");
INSERT INTO `wp_gf_form_view` VALUES("30803", "3", "2016-05-12 20:42:40", "24.69.154.153", "42");
INSERT INTO `wp_gf_form_view` VALUES("30804", "10", "2016-05-12 20:42:45", "24.69.154.153", "28");
INSERT INTO `wp_gf_form_view` VALUES("30805", "1", "2016-05-12 20:45:42", "24.69.154.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("30806", "1", "2016-05-12 21:02:25", "177.74.117.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("30807", "3", "2016-05-12 21:02:25", "177.74.117.142", "24");
INSERT INTO `wp_gf_form_view` VALUES("30808", "10", "2016-05-12 21:02:25", "177.74.117.142", "16");
INSERT INTO `wp_gf_form_view` VALUES("30809", "12", "2016-05-12 22:03:00", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30810", "3", "2016-05-12 22:03:06", "68.180.229.244", "44");
INSERT INTO `wp_gf_form_view` VALUES("30811", "10", "2016-05-12 22:03:06", "68.180.229.244", "28");
INSERT INTO `wp_gf_form_view` VALUES("30812", "10", "2016-05-12 23:40:21", "199.21.99.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("30813", "3", "2016-05-12 23:40:23", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("30814", "1", "2016-05-13 00:13:14", "202.46.54.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("30815", "3", "2016-05-13 00:13:15", "202.46.54.15", "12");
INSERT INTO `wp_gf_form_view` VALUES("30816", "10", "2016-05-13 00:13:15", "202.46.54.15", "8");
INSERT INTO `wp_gf_form_view` VALUES("30817", "3", "2016-05-13 01:27:25", "75.67.55.169", "50");
INSERT INTO `wp_gf_form_view` VALUES("30818", "10", "2016-05-13 01:27:27", "75.67.55.169", "32");
INSERT INTO `wp_gf_form_view` VALUES("30819", "3", "2016-05-13 02:50:08", "24.69.69.153", "13");
INSERT INTO `wp_gf_form_view` VALUES("30820", "10", "2016-05-13 02:50:10", "24.69.69.153", "8");
INSERT INTO `wp_gf_form_view` VALUES("30821", "10", "2016-05-13 03:05:29", "220.181.108.80", "29");
INSERT INTO `wp_gf_form_view` VALUES("30822", "3", "2016-05-13 03:05:29", "220.181.108.80", "42");
INSERT INTO `wp_gf_form_view` VALUES("30823", "3", "2016-05-13 04:05:53", "46.17.97.72", "19");
INSERT INTO `wp_gf_form_view` VALUES("30824", "10", "2016-05-13 04:05:53", "46.17.97.72", "12");
INSERT INTO `wp_gf_form_view` VALUES("30825", "10", "2016-05-13 05:23:24", "199.21.99.202", "20");
INSERT INTO `wp_gf_form_view` VALUES("30826", "3", "2016-05-13 05:23:27", "199.21.99.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("30827", "10", "2016-05-13 06:06:47", "207.46.13.153", "24");
INSERT INTO `wp_gf_form_view` VALUES("30828", "3", "2016-05-13 06:06:54", "207.46.13.153", "38");
INSERT INTO `wp_gf_form_view` VALUES("30829", "11", "2016-05-13 07:35:00", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("30830", "10", "2016-05-13 07:35:01", "68.180.229.244", "9");
INSERT INTO `wp_gf_form_view` VALUES("30831", "3", "2016-05-13 07:35:01", "68.180.229.244", "13");
INSERT INTO `wp_gf_form_view` VALUES("30832", "10", "2016-05-13 08:21:10", "207.46.13.81", "5");
INSERT INTO `wp_gf_form_view` VALUES("30833", "3", "2016-05-13 08:21:16", "207.46.13.81", "7");
INSERT INTO `wp_gf_form_view` VALUES("30834", "10", "2016-05-13 09:04:17", "207.46.13.81", "12");
INSERT INTO `wp_gf_form_view` VALUES("30835", "3", "2016-05-13 09:04:17", "207.46.13.81", "18");
INSERT INTO `wp_gf_form_view` VALUES("30836", "10", "2016-05-13 10:16:58", "164.132.161.5", "17");
INSERT INTO `wp_gf_form_view` VALUES("30837", "3", "2016-05-13 10:16:59", "164.132.161.5", "25");
INSERT INTO `wp_gf_form_view` VALUES("30838", "10", "2016-05-13 11:02:15", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("30839", "3", "2016-05-13 11:02:15", "66.249.79.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("30840", "10", "2016-05-13 12:05:19", "207.46.13.81", "207");
INSERT INTO `wp_gf_form_view` VALUES("30841", "3", "2016-05-13 12:05:19", "207.46.13.81", "311");
INSERT INTO `wp_gf_form_view` VALUES("30842", "11", "2016-05-13 12:24:10", "157.55.39.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("30843", "9", "2016-05-13 12:24:12", "157.55.39.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("30844", "6", "2016-05-13 12:24:43", "157.55.39.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("30845", "10", "2016-05-13 13:32:56", "176.9.149.182", "242");
INSERT INTO `wp_gf_form_view` VALUES("30846", "3", "2016-05-13 13:32:58", "176.9.149.182", "365");
INSERT INTO `wp_gf_form_view` VALUES("30847", "11", "2016-05-13 13:33:08", "176.9.149.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("30848", "2", "2016-05-13 13:33:11", "176.9.149.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("30849", "12", "2016-05-13 13:34:27", "176.9.149.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("30850", "1", "2016-05-13 13:35:00", "176.9.149.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("30851", "10", "2016-05-13 14:11:19", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("30852", "3", "2016-05-13 14:11:20", "199.21.99.202", "19");
INSERT INTO `wp_gf_form_view` VALUES("30853", "10", "2016-05-13 15:05:48", "164.132.161.43", "8");
INSERT INTO `wp_gf_form_view` VALUES("30854", "3", "2016-05-13 15:05:49", "164.132.161.43", "12");
INSERT INTO `wp_gf_form_view` VALUES("30855", "3", "2016-05-13 16:10:43", "98.158.84.197", "20");
INSERT INTO `wp_gf_form_view` VALUES("30856", "10", "2016-05-13 16:10:43", "98.158.84.197", "12");
INSERT INTO `wp_gf_form_view` VALUES("30857", "3", "2016-05-13 17:23:40", "66.220.158.121", "68");
INSERT INTO `wp_gf_form_view` VALUES("30858", "10", "2016-05-13 17:23:43", "66.220.158.121", "44");
INSERT INTO `wp_gf_form_view` VALUES("30859", "1", "2016-05-13 17:47:15", "70.66.166.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("30860", "10", "2016-05-13 18:02:18", "70.66.166.111", "52");
INSERT INTO `wp_gf_form_view` VALUES("30861", "3", "2016-05-13 18:02:18", "70.66.166.111", "80");
INSERT INTO `wp_gf_form_view` VALUES("30862", "1", "2016-05-13 18:46:33", "24.69.16.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("30863", "10", "2016-05-13 19:25:13", "24.69.16.173", "32");
INSERT INTO `wp_gf_form_view` VALUES("30864", "3", "2016-05-13 19:25:18", "24.69.16.173", "49");
INSERT INTO `wp_gf_form_view` VALUES("30865", "11", "2016-05-13 19:28:52", "157.55.39.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("30866", "10", "2016-05-13 20:03:58", "66.249.79.169", "25");
INSERT INTO `wp_gf_form_view` VALUES("30867", "3", "2016-05-13 20:03:58", "66.249.79.169", "31");
INSERT INTO `wp_gf_form_view` VALUES("30868", "10", "2016-05-13 21:08:37", "66.249.79.176", "8");
INSERT INTO `wp_gf_form_view` VALUES("30869", "3", "2016-05-13 21:08:38", "66.249.79.176", "12");
INSERT INTO `wp_gf_form_view` VALUES("30870", "10", "2016-05-13 22:03:03", "77.75.78.169", "36");
INSERT INTO `wp_gf_form_view` VALUES("30871", "3", "2016-05-13 22:03:03", "77.75.78.169", "54");
INSERT INTO `wp_gf_form_view` VALUES("30872", "3", "2016-05-13 23:20:15", "151.80.31.102", "44");
INSERT INTO `wp_gf_form_view` VALUES("30873", "10", "2016-05-13 23:20:15", "151.80.31.102", "28");
INSERT INTO `wp_gf_form_view` VALUES("30874", "10", "2016-05-14 00:06:28", "24.108.28.160", "16");
INSERT INTO `wp_gf_form_view` VALUES("30875", "3", "2016-05-14 00:06:28", "24.108.28.160", "24");
INSERT INTO `wp_gf_form_view` VALUES("30876", "1", "2016-05-14 00:32:55", "51.255.65.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("30877", "3", "2016-05-14 01:07:46", "68.180.229.244", "27");
INSERT INTO `wp_gf_form_view` VALUES("30878", "10", "2016-05-14 01:07:47", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("30879", "3", "2016-05-14 02:07:40", "66.249.79.176", "31");
INSERT INTO `wp_gf_form_view` VALUES("30880", "10", "2016-05-14 02:07:40", "66.249.79.176", "20");
INSERT INTO `wp_gf_form_view` VALUES("30881", "10", "2016-05-14 03:12:18", "199.59.148.209", "5");
INSERT INTO `wp_gf_form_view` VALUES("30882", "3", "2016-05-14 03:12:19", "199.59.148.209", "6");
INSERT INTO `wp_gf_form_view` VALUES("30883", "10", "2016-05-14 04:18:42", "157.55.39.196", "12");
INSERT INTO `wp_gf_form_view` VALUES("30884", "3", "2016-05-14 04:18:44", "157.55.39.196", "18");
INSERT INTO `wp_gf_form_view` VALUES("30885", "1", "2016-05-14 05:05:31", "5.255.77.90", "4");
INSERT INTO `wp_gf_form_view` VALUES("30886", "10", "2016-05-14 05:05:31", "5.255.77.90", "49");
INSERT INTO `wp_gf_form_view` VALUES("30887", "3", "2016-05-14 05:05:31", "5.255.77.90", "75");
INSERT INTO `wp_gf_form_view` VALUES("30888", "12", "2016-05-14 05:27:42", "164.132.161.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("30889", "10", "2016-05-14 06:00:07", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("30890", "3", "2016-05-14 06:00:07", "199.21.99.202", "24");
INSERT INTO `wp_gf_form_view` VALUES("30891", "1", "2016-05-14 06:53:25", "89.35.199.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("30892", "10", "2016-05-14 07:06:54", "51.255.65.20", "8");
INSERT INTO `wp_gf_form_view` VALUES("30893", "3", "2016-05-14 07:06:55", "51.255.65.20", "12");
INSERT INTO `wp_gf_form_view` VALUES("30894", "1", "2016-05-14 08:34:51", "82.211.50.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("30895", "10", "2016-05-14 08:34:51", "82.211.50.171", "8");
INSERT INTO `wp_gf_form_view` VALUES("30896", "3", "2016-05-14 08:34:55", "82.211.50.171", "12");
INSERT INTO `wp_gf_form_view` VALUES("30897", "8", "2016-05-14 08:52:04", "40.77.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("30898", "10", "2016-05-14 09:15:15", "66.249.79.169", "32");
INSERT INTO `wp_gf_form_view` VALUES("30899", "3", "2016-05-14 09:15:15", "66.249.79.169", "48");
INSERT INTO `wp_gf_form_view` VALUES("30900", "2", "2016-05-14 09:23:44", "202.46.58.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("30901", "1", "2016-05-14 10:20:02", "82.211.50.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("30902", "10", "2016-05-14 10:20:03", "82.211.50.225", "9");
INSERT INTO `wp_gf_form_view` VALUES("30903", "3", "2016-05-14 10:20:03", "82.211.50.225", "12");
INSERT INTO `wp_gf_form_view` VALUES("30904", "10", "2016-05-14 11:18:33", "157.55.39.196", "12");
INSERT INTO `wp_gf_form_view` VALUES("30905", "3", "2016-05-14 11:18:37", "157.55.39.196", "18");
INSERT INTO `wp_gf_form_view` VALUES("30906", "11", "2016-05-14 11:38:01", "202.46.51.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("30907", "10", "2016-05-14 12:05:16", "220.181.108.103", "8");
INSERT INTO `wp_gf_form_view` VALUES("30908", "3", "2016-05-14 12:05:16", "220.181.108.103", "12");
INSERT INTO `wp_gf_form_view` VALUES("30909", "10", "2016-05-14 13:29:39", "220.181.108.103", "8");
INSERT INTO `wp_gf_form_view` VALUES("30910", "3", "2016-05-14 13:29:43", "220.181.108.103", "12");
INSERT INTO `wp_gf_form_view` VALUES("30911", "10", "2016-05-14 14:15:09", "207.46.13.81", "16");
INSERT INTO `wp_gf_form_view` VALUES("30912", "3", "2016-05-14 14:15:10", "207.46.13.81", "24");
INSERT INTO `wp_gf_form_view` VALUES("30913", "10", "2016-05-14 15:01:56", "178.137.83.178", "20");
INSERT INTO `wp_gf_form_view` VALUES("30914", "3", "2016-05-14 15:01:57", "178.137.83.178", "31");
INSERT INTO `wp_gf_form_view` VALUES("30915", "10", "2016-05-14 16:12:41", "77.75.77.95", "32");
INSERT INTO `wp_gf_form_view` VALUES("30916", "3", "2016-05-14 16:12:42", "77.75.77.95", "48");
INSERT INTO `wp_gf_form_view` VALUES("30917", "10", "2016-05-14 17:54:47", "96.54.209.54", "8");
INSERT INTO `wp_gf_form_view` VALUES("30918", "3", "2016-05-14 17:54:52", "96.54.209.54", "12");
INSERT INTO `wp_gf_form_view` VALUES("30919", "10", "2016-05-14 18:07:34", "66.249.79.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("30920", "3", "2016-05-14 18:07:34", "66.249.79.162", "38");
INSERT INTO `wp_gf_form_view` VALUES("30921", "11", "2016-05-14 19:52:06", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("30922", "10", "2016-05-14 19:52:09", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("30923", "3", "2016-05-14 19:52:10", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("30924", "10", "2016-05-14 20:06:44", "178.137.83.178", "20");
INSERT INTO `wp_gf_form_view` VALUES("30925", "3", "2016-05-14 20:06:45", "178.137.83.178", "30");
INSERT INTO `wp_gf_form_view` VALUES("30926", "10", "2016-05-14 21:22:57", "199.21.99.202", "20");
INSERT INTO `wp_gf_form_view` VALUES("30927", "3", "2016-05-14 21:22:58", "199.21.99.202", "31");
INSERT INTO `wp_gf_form_view` VALUES("30928", "10", "2016-05-14 22:11:28", "77.75.78.160", "24");
INSERT INTO `wp_gf_form_view` VALUES("30929", "3", "2016-05-14 22:11:31", "77.75.78.160", "40");
INSERT INTO `wp_gf_form_view` VALUES("30930", "1", "2016-05-15 00:06:53", "207.91.10.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("30931", "3", "2016-05-15 00:06:54", "207.91.10.234", "21");
INSERT INTO `wp_gf_form_view` VALUES("30932", "10", "2016-05-15 00:06:55", "207.91.10.234", "9");
INSERT INTO `wp_gf_form_view` VALUES("30933", "3", "2016-05-15 01:09:01", "51.255.65.40", "52");
INSERT INTO `wp_gf_form_view` VALUES("30934", "10", "2016-05-15 01:09:01", "51.255.65.40", "21");
INSERT INTO `wp_gf_form_view` VALUES("30935", "2", "2016-05-15 01:56:39", "202.46.48.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("30936", "3", "2016-05-15 02:07:27", "66.249.79.169", "29");
INSERT INTO `wp_gf_form_view` VALUES("30937", "10", "2016-05-15 02:07:28", "66.249.79.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("30938", "3", "2016-05-15 03:01:59", "220.181.108.75", "29");
INSERT INTO `wp_gf_form_view` VALUES("30939", "10", "2016-05-15 03:02:00", "220.181.108.75", "12");
INSERT INTO `wp_gf_form_view` VALUES("30940", "10", "2016-05-15 04:25:41", "68.180.229.244", "20");
INSERT INTO `wp_gf_form_view` VALUES("30941", "3", "2016-05-15 04:25:41", "68.180.229.244", "44");
INSERT INTO `wp_gf_form_view` VALUES("30942", "3", "2016-05-15 05:00:52", "199.21.99.202", "28");
INSERT INTO `wp_gf_form_view` VALUES("30943", "10", "2016-05-15 05:00:52", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("30944", "3", "2016-05-15 06:02:39", "37.115.184.150", "69");
INSERT INTO `wp_gf_form_view` VALUES("30945", "3", "2016-05-15 06:02:39", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30946", "10", "2016-05-15 06:02:39", "37.115.184.150", "29");
INSERT INTO `wp_gf_form_view` VALUES("30947", "10", "2016-05-15 06:02:39", "37.115.184.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("30948", "3", "2016-05-15 07:18:13", "77.75.76.162", "64");
INSERT INTO `wp_gf_form_view` VALUES("30949", "10", "2016-05-15 07:18:15", "77.75.76.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("30950", "3", "2016-05-15 08:03:51", "66.249.79.176", "22");
INSERT INTO `wp_gf_form_view` VALUES("30951", "10", "2016-05-15 08:03:51", "66.249.79.176", "9");
INSERT INTO `wp_gf_form_view` VALUES("30952", "3", "2016-05-15 10:08:59", "66.249.79.176", "21");
INSERT INTO `wp_gf_form_view` VALUES("30953", "10", "2016-05-15 10:09:00", "66.249.79.176", "9");
INSERT INTO `wp_gf_form_view` VALUES("30954", "3", "2016-05-15 11:12:55", "66.249.79.162", "14");
INSERT INTO `wp_gf_form_view` VALUES("30955", "10", "2016-05-15 11:12:55", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("30956", "3", "2016-05-15 12:53:29", "220.181.108.108", "7");
INSERT INTO `wp_gf_form_view` VALUES("30957", "10", "2016-05-15 12:53:30", "220.181.108.108", "3");
INSERT INTO `wp_gf_form_view` VALUES("30958", "3", "2016-05-15 13:51:33", "77.75.77.54", "7");
INSERT INTO `wp_gf_form_view` VALUES("30959", "10", "2016-05-15 13:51:33", "77.75.77.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("30960", "3", "2016-05-15 14:02:48", "51.255.65.65", "30");
INSERT INTO `wp_gf_form_view` VALUES("30961", "10", "2016-05-15 14:02:48", "51.255.65.65", "12");
INSERT INTO `wp_gf_form_view` VALUES("30962", "3", "2016-05-15 15:05:32", "88.198.208.69", "125");
INSERT INTO `wp_gf_form_view` VALUES("30963", "10", "2016-05-15 15:05:34", "88.198.208.69", "51");
INSERT INTO `wp_gf_form_view` VALUES("30964", "2", "2016-05-15 15:56:08", "104.207.150.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("30965", "3", "2016-05-15 16:11:14", "66.249.79.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("30966", "10", "2016-05-15 16:11:14", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("30967", "1", "2016-05-15 16:55:17", "77.75.79.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("30968", "3", "2016-05-15 17:39:43", "207.46.13.160", "8");
INSERT INTO `wp_gf_form_view` VALUES("30969", "10", "2016-05-15 17:39:43", "207.46.13.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("30970", "3", "2016-05-15 18:15:18", "5.248.253.133", "91");
INSERT INTO `wp_gf_form_view` VALUES("30971", "10", "2016-05-15 18:15:18", "5.248.253.133", "39");
INSERT INTO `wp_gf_form_view` VALUES("30972", "1", "2016-05-15 19:09:51", "198.52.240.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("30973", "3", "2016-05-15 19:09:51", "198.52.240.55", "92");
INSERT INTO `wp_gf_form_view` VALUES("30974", "10", "2016-05-15 19:09:52", "198.52.240.55", "39");
INSERT INTO `wp_gf_form_view` VALUES("30975", "3", "2016-05-15 20:06:06", "70.35.196.136", "281");
INSERT INTO `wp_gf_form_view` VALUES("30976", "10", "2016-05-15 20:06:06", "70.35.196.136", "121");
INSERT INTO `wp_gf_form_view` VALUES("30977", "11", "2016-05-15 20:06:09", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("30978", "12", "2016-05-15 20:06:35", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("30979", "2", "2016-05-15 20:07:10", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("30980", "3", "2016-05-15 21:15:35", "66.249.79.162", "29");
INSERT INTO `wp_gf_form_view` VALUES("30981", "10", "2016-05-15 21:15:36", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("30982", "10", "2016-05-15 22:00:10", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("30983", "3", "2016-05-15 22:00:10", "199.21.99.202", "35");
INSERT INTO `wp_gf_form_view` VALUES("30984", "11", "2016-05-15 22:22:12", "77.75.76.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("30985", "3", "2016-05-15 23:03:42", "68.180.229.244", "28");
INSERT INTO `wp_gf_form_view` VALUES("30986", "10", "2016-05-15 23:03:43", "68.180.229.244", "12");
INSERT INTO `wp_gf_form_view` VALUES("30987", "3", "2016-05-16 00:04:16", "51.255.65.2", "120");
INSERT INTO `wp_gf_form_view` VALUES("30988", "10", "2016-05-16 00:04:16", "51.255.65.2", "52");
INSERT INTO `wp_gf_form_view` VALUES("30989", "3", "2016-05-16 01:25:47", "157.55.39.8", "113");
INSERT INTO `wp_gf_form_view` VALUES("30990", "10", "2016-05-16 01:25:49", "157.55.39.8", "48");
INSERT INTO `wp_gf_form_view` VALUES("30991", "2", "2016-05-16 01:53:48", "45.32.131.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("30992", "3", "2016-05-16 02:52:50", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("30993", "10", "2016-05-16 02:52:52", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("30994", "3", "2016-05-16 03:20:27", "66.249.88.230", "91");
INSERT INTO `wp_gf_form_view` VALUES("30995", "10", "2016-05-16 03:20:27", "66.249.88.230", "39");
INSERT INTO `wp_gf_form_view` VALUES("30996", "3", "2016-05-16 04:08:42", "209.52.88.132", "55");
INSERT INTO `wp_gf_form_view` VALUES("30997", "3", "2016-05-16 04:08:42", "209.52.88.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("30998", "10", "2016-05-16 04:08:43", "209.52.88.132", "23");
INSERT INTO `wp_gf_form_view` VALUES("30999", "10", "2016-05-16 04:08:43", "209.52.88.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("31000", "3", "2016-05-16 05:18:52", "184.66.39.248", "21");
INSERT INTO `wp_gf_form_view` VALUES("31001", "10", "2016-05-16 05:18:55", "184.66.39.248", "9");
INSERT INTO `wp_gf_form_view` VALUES("31002", "1", "2016-05-16 05:25:50", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("31003", "3", "2016-05-16 06:26:43", "207.46.13.160", "57");
INSERT INTO `wp_gf_form_view` VALUES("31004", "10", "2016-05-16 06:26:44", "207.46.13.160", "24");
INSERT INTO `wp_gf_form_view` VALUES("31005", "3", "2016-05-16 07:18:58", "207.46.13.160", "8");
INSERT INTO `wp_gf_form_view` VALUES("31006", "10", "2016-05-16 07:18:59", "207.46.13.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("31007", "3", "2016-05-16 08:08:45", "66.249.79.169", "58");
INSERT INTO `wp_gf_form_view` VALUES("31008", "10", "2016-05-16 08:08:47", "66.249.79.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("31009", "3", "2016-05-16 09:05:54", "66.249.79.162", "28");
INSERT INTO `wp_gf_form_view` VALUES("31010", "10", "2016-05-16 09:05:54", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("31011", "9", "2016-05-16 09:51:18", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("31012", "3", "2016-05-16 10:05:45", "202.46.53.147", "282");
INSERT INTO `wp_gf_form_view` VALUES("31013", "10", "2016-05-16 10:05:45", "202.46.53.147", "121");
INSERT INTO `wp_gf_form_view` VALUES("31014", "11", "2016-05-16 10:48:07", "77.160.205.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("31015", "12", "2016-05-16 10:48:43", "77.160.205.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("31016", "2", "2016-05-16 10:49:26", "77.160.205.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("31017", "3", "2016-05-16 11:10:39", "66.249.79.169", "70");
INSERT INTO `wp_gf_form_view` VALUES("31018", "10", "2016-05-16 11:10:39", "66.249.79.169", "27");
INSERT INTO `wp_gf_form_view` VALUES("31019", "3", "2016-05-16 12:49:04", "77.75.79.11", "7");
INSERT INTO `wp_gf_form_view` VALUES("31020", "10", "2016-05-16 12:49:06", "77.75.79.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("31021", "3", "2016-05-16 13:09:48", "202.46.58.83", "36");
INSERT INTO `wp_gf_form_view` VALUES("31022", "10", "2016-05-16 13:09:48", "202.46.58.83", "15");
INSERT INTO `wp_gf_form_view` VALUES("31023", "1", "2016-05-16 13:54:13", "198.46.186.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("31024", "3", "2016-05-16 14:10:22", "199.21.99.202", "23");
INSERT INTO `wp_gf_form_view` VALUES("31025", "10", "2016-05-16 14:10:23", "199.21.99.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("31026", "3", "2016-05-16 15:08:17", "216.16.225.198", "49");
INSERT INTO `wp_gf_form_view` VALUES("31027", "10", "2016-05-16 15:08:17", "216.16.225.198", "21");
INSERT INTO `wp_gf_form_view` VALUES("31028", "3", "2016-05-16 16:18:45", "136.243.17.161", "48");
INSERT INTO `wp_gf_form_view` VALUES("31029", "10", "2016-05-16 16:18:45", "136.243.17.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("31030", "11", "2016-05-16 16:59:59", "149.154.153.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("31031", "3", "2016-05-16 17:00:00", "149.154.153.229", "469");
INSERT INTO `wp_gf_form_view` VALUES("31032", "10", "2016-05-16 17:00:07", "149.154.153.229", "201");
INSERT INTO `wp_gf_form_view` VALUES("31033", "12", "2016-05-16 17:00:41", "149.154.153.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("31034", "2", "2016-05-16 17:01:38", "149.154.153.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("31035", "11", "2016-05-16 17:43:37", "79.116.27.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31036", "3", "2016-05-16 18:00:08", "217.69.133.233", "36");
INSERT INTO `wp_gf_form_view` VALUES("31037", "10", "2016-05-16 18:00:09", "217.69.133.233", "15");
INSERT INTO `wp_gf_form_view` VALUES("31038", "3", "2016-05-16 19:12:33", "77.75.76.164", "36");
INSERT INTO `wp_gf_form_view` VALUES("31039", "10", "2016-05-16 19:12:35", "77.75.76.164", "15");
INSERT INTO `wp_gf_form_view` VALUES("31040", "3", "2016-05-16 20:04:16", "64.180.189.159", "203");
INSERT INTO `wp_gf_form_view` VALUES("31041", "10", "2016-05-16 20:04:16", "64.180.189.159", "86");
INSERT INTO `wp_gf_form_view` VALUES("31042", "3", "2016-05-16 21:21:29", "207.46.13.81", "214");
INSERT INTO `wp_gf_form_view` VALUES("31043", "10", "2016-05-16 21:21:31", "207.46.13.81", "87");
INSERT INTO `wp_gf_form_view` VALUES("31044", "9", "2016-05-16 21:39:11", "207.46.13.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("31045", "3", "2016-05-16 22:25:24", "188.166.11.109", "57");
INSERT INTO `wp_gf_form_view` VALUES("31046", "10", "2016-05-16 22:25:24", "188.166.11.109", "24");
INSERT INTO `wp_gf_form_view` VALUES("31047", "7", "2016-05-16 22:43:50", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("31048", "3", "2016-05-16 23:23:17", "24.69.16.173", "77");
INSERT INTO `wp_gf_form_view` VALUES("31049", "10", "2016-05-16 23:23:19", "24.69.16.173", "33");
INSERT INTO `wp_gf_form_view` VALUES("31050", "1", "2016-05-16 23:25:12", "24.69.16.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("31051", "3", "2016-05-17 00:06:29", "68.180.229.244", "215");
INSERT INTO `wp_gf_form_view` VALUES("31052", "10", "2016-05-17 00:06:29", "68.180.229.244", "91");
INSERT INTO `wp_gf_form_view` VALUES("31053", "9", "2016-05-17 00:17:04", "207.46.13.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("31054", "7", "2016-05-17 00:17:30", "207.46.13.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("31055", "3", "2016-05-17 01:20:56", "66.249.79.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("31056", "10", "2016-05-17 01:20:59", "66.249.79.176", "6");
INSERT INTO `wp_gf_form_view` VALUES("31057", "3", "2016-05-17 02:32:57", "184.64.13.75", "67");
INSERT INTO `wp_gf_form_view` VALUES("31058", "10", "2016-05-17 02:32:57", "184.64.13.75", "27");
INSERT INTO `wp_gf_form_view` VALUES("31059", "3", "2016-05-17 03:03:07", "40.77.167.7", "35");
INSERT INTO `wp_gf_form_view` VALUES("31060", "10", "2016-05-17 03:03:07", "40.77.167.7", "15");
INSERT INTO `wp_gf_form_view` VALUES("31061", "8", "2016-05-17 03:25:08", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("31062", "3", "2016-05-17 04:12:22", "108.180.29.94", "36");
INSERT INTO `wp_gf_form_view` VALUES("31063", "10", "2016-05-17 04:12:24", "108.180.29.94", "15");
INSERT INTO `wp_gf_form_view` VALUES("31064", "3", "2016-05-17 05:31:12", "66.249.79.169", "21");
INSERT INTO `wp_gf_form_view` VALUES("31065", "10", "2016-05-17 05:31:15", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("31066", "12", "2016-05-17 05:49:41", "209.121.44.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("31067", "3", "2016-05-17 06:13:20", "66.249.79.162", "123");
INSERT INTO `wp_gf_form_view` VALUES("31068", "10", "2016-05-17 06:13:21", "66.249.79.162", "55");
INSERT INTO `wp_gf_form_view` VALUES("31069", "3", "2016-05-17 07:14:11", "202.46.49.192", "21");
INSERT INTO `wp_gf_form_view` VALUES("31070", "10", "2016-05-17 07:14:16", "202.46.49.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("31071", "3", "2016-05-17 08:07:21", "68.180.229.244", "44");
INSERT INTO `wp_gf_form_view` VALUES("31072", "10", "2016-05-17 08:08:47", "217.69.133.233", "19");
INSERT INTO `wp_gf_form_view` VALUES("31073", "3", "2016-05-17 09:09:00", "164.132.161.49", "58");
INSERT INTO `wp_gf_form_view` VALUES("31074", "10", "2016-05-17 09:09:00", "164.132.161.49", "24");
INSERT INTO `wp_gf_form_view` VALUES("31075", "9", "2016-05-17 09:42:47", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("31076", "3", "2016-05-17 10:09:36", "207.46.13.175", "28");
INSERT INTO `wp_gf_form_view` VALUES("31077", "10", "2016-05-17 10:09:36", "207.46.13.175", "12");
INSERT INTO `wp_gf_form_view` VALUES("31078", "9", "2016-05-17 11:02:47", "68.180.229.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("31079", "3", "2016-05-17 11:02:47", "68.180.229.244", "21");
INSERT INTO `wp_gf_form_view` VALUES("31080", "10", "2016-05-17 11:02:47", "68.180.229.244", "9");
INSERT INTO `wp_gf_form_view` VALUES("31081", "3", "2016-05-17 12:11:25", "202.46.48.200", "57");
INSERT INTO `wp_gf_form_view` VALUES("31082", "10", "2016-05-17 12:11:27", "202.46.48.200", "24");
INSERT INTO `wp_gf_form_view` VALUES("31083", "3", "2016-05-17 13:18:30", "151.80.31.164", "49");
INSERT INTO `wp_gf_form_view` VALUES("31084", "10", "2016-05-17 13:18:30", "151.80.31.164", "21");
INSERT INTO `wp_gf_form_view` VALUES("31085", "3", "2016-05-17 15:05:22", "68.180.229.244", "288");
INSERT INTO `wp_gf_form_view` VALUES("31086", "10", "2016-05-17 15:05:23", "68.180.229.244", "125");
INSERT INTO `wp_gf_form_view` VALUES("31087", "11", "2016-05-17 15:57:30", "213.127.45.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("31088", "12", "2016-05-17 15:58:01", "213.127.45.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("31089", "2", "2016-05-17 15:58:50", "213.127.45.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("31090", "3", "2016-05-17 16:02:19", "217.69.133.227", "36");
INSERT INTO `wp_gf_form_view` VALUES("31091", "10", "2016-05-17 16:02:19", "217.69.133.227", "15");
INSERT INTO `wp_gf_form_view` VALUES("31092", "1", "2016-05-17 16:34:42", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("31093", "3", "2016-05-17 17:32:38", "68.180.229.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("31094", "10", "2016-05-17 17:32:42", "68.180.229.244", "6");
INSERT INTO `wp_gf_form_view` VALUES("31095", "3", "2016-05-17 18:20:24", "184.66.240.135", "29");
INSERT INTO `wp_gf_form_view` VALUES("31096", "10", "2016-05-17 18:20:26", "184.66.240.135", "12");
INSERT INTO `wp_gf_form_view` VALUES("31097", "3", "2016-05-17 19:03:00", "199.21.99.202", "53");
INSERT INTO `wp_gf_form_view` VALUES("31098", "10", "2016-05-17 19:03:00", "199.21.99.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("31099", "3", "2016-05-17 20:05:40", "202.46.57.78", "84");
INSERT INTO `wp_gf_form_view` VALUES("31100", "10", "2016-05-17 20:05:42", "202.46.57.78", "36");
INSERT INTO `wp_gf_form_view` VALUES("31101", "3", "2016-05-17 21:14:39", "40.77.167.7", "310");
INSERT INTO `wp_gf_form_view` VALUES("31102", "10", "2016-05-17 21:14:41", "40.77.167.7", "139");
INSERT INTO `wp_gf_form_view` VALUES("31103", "1", "2016-05-17 21:29:59", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("31104", "11", "2016-05-17 21:31:11", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("31105", "3", "2016-05-17 22:06:05", "142.104.37.85", "100");
INSERT INTO `wp_gf_form_view` VALUES("31106", "10", "2016-05-17 22:06:05", "142.104.37.85", "45");
INSERT INTO `wp_gf_form_view` VALUES("31107", "1", "2016-05-17 22:16:31", "142.104.37.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("31108", "3", "2016-05-17 23:00:02", "68.180.229.244", "29");
INSERT INTO `wp_gf_form_view` VALUES("31109", "10", "2016-05-17 23:00:02", "68.180.229.244", "14");
INSERT INTO `wp_gf_form_view` VALUES("31110", "3", "2016-05-18 00:07:05", "66.249.79.176", "92");
INSERT INTO `wp_gf_form_view` VALUES("31111", "10", "2016-05-18 00:07:06", "66.249.79.176", "42");
INSERT INTO `wp_gf_form_view` VALUES("31112", "3", "2016-05-18 01:04:42", "207.46.13.175", "166");
INSERT INTO `wp_gf_form_view` VALUES("31113", "10", "2016-05-18 01:04:42", "207.46.13.175", "70");
INSERT INTO `wp_gf_form_view` VALUES("31114", "3", "2016-05-18 02:30:39", "157.55.39.51", "42");
INSERT INTO `wp_gf_form_view` VALUES("31115", "10", "2016-05-18 02:30:39", "157.55.39.51", "18");
INSERT INTO `wp_gf_form_view` VALUES("31116", "10", "2016-05-18 03:08:21", "199.21.99.202", "25");
INSERT INTO `wp_gf_form_view` VALUES("31117", "3", "2016-05-18 03:08:24", "199.21.99.202", "49");
INSERT INTO `wp_gf_form_view` VALUES("31118", "12", "2016-05-18 04:17:59", "157.55.39.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31119", "3", "2016-05-18 04:18:00", "157.55.39.51", "72");
INSERT INTO `wp_gf_form_view` VALUES("31120", "10", "2016-05-18 04:18:01", "157.55.39.51", "30");
INSERT INTO `wp_gf_form_view` VALUES("31121", "9", "2016-05-18 04:29:38", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("31122", "1", "2016-05-18 04:38:27", "107.172.224.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("31123", "3", "2016-05-18 05:01:14", "68.180.229.58", "156");
INSERT INTO `wp_gf_form_view` VALUES("31124", "10", "2016-05-18 05:01:15", "68.180.229.58", "66");
INSERT INTO `wp_gf_form_view` VALUES("31125", "2", "2016-05-18 05:48:38", "50.92.248.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("31126", "3", "2016-05-18 06:05:03", "199.21.99.202", "42");
INSERT INTO `wp_gf_form_view` VALUES("31127", "10", "2016-05-18 06:05:18", "199.21.99.202", "18");
INSERT INTO `wp_gf_form_view` VALUES("31128", "3", "2016-05-18 07:17:55", "77.75.78.172", "30");
INSERT INTO `wp_gf_form_view` VALUES("31129", "10", "2016-05-18 07:17:59", "77.75.78.172", "12");
INSERT INTO `wp_gf_form_view` VALUES("31130", "9", "2016-05-18 07:42:36", "51.255.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("31131", "3", "2016-05-18 08:02:31", "202.46.53.56", "28");
INSERT INTO `wp_gf_form_view` VALUES("31132", "10", "2016-05-18 08:02:31", "202.46.53.56", "12");
INSERT INTO `wp_gf_form_view` VALUES("31133", "3", "2016-05-18 09:16:35", "46.119.58.190", "49");
INSERT INTO `wp_gf_form_view` VALUES("31134", "10", "2016-05-18 09:16:35", "46.119.58.190", "21");
INSERT INTO `wp_gf_form_view` VALUES("31135", "3", "2016-05-18 10:44:40", "202.46.56.190", "7");
INSERT INTO `wp_gf_form_view` VALUES("31136", "10", "2016-05-18 10:44:41", "202.46.56.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("31137", "3", "2016-05-18 11:18:11", "202.46.51.169", "30");
INSERT INTO `wp_gf_form_view` VALUES("31138", "10", "2016-05-18 11:18:14", "202.46.51.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("31139", "3", "2016-05-18 12:49:54", "199.21.99.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("31140", "10", "2016-05-18 12:49:55", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("31141", "3", "2016-05-18 14:01:40", "141.8.143.242", "58");
INSERT INTO `wp_gf_form_view` VALUES("31142", "10", "2016-05-18 14:01:42", "141.8.143.242", "24");
INSERT INTO `wp_gf_form_view` VALUES("31143", "3", "2016-05-18 15:01:43", "164.132.161.55", "52");
INSERT INTO `wp_gf_form_view` VALUES("31144", "10", "2016-05-18 15:07:37", "68.180.229.58", "21");
INSERT INTO `wp_gf_form_view` VALUES("31145", "12", "2016-05-18 15:52:31", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("31146", "12", "2016-05-18 16:00:27", "96.54.21.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("31147", "3", "2016-05-18 16:00:27", "96.54.21.35", "157");
INSERT INTO `wp_gf_form_view` VALUES("31148", "10", "2016-05-18 16:00:27", "96.54.21.35", "66");
INSERT INTO `wp_gf_form_view` VALUES("31149", "3", "2016-05-18 17:03:59", "209.121.23.226", "36");
INSERT INTO `wp_gf_form_view` VALUES("31150", "10", "2016-05-18 17:04:00", "209.121.23.226", "15");
INSERT INTO `wp_gf_form_view` VALUES("31151", "3", "2016-05-18 18:05:59", "64.114.222.240", "122");
INSERT INTO `wp_gf_form_view` VALUES("31152", "10", "2016-05-18 18:06:00", "64.114.222.240", "52");
INSERT INTO `wp_gf_form_view` VALUES("31153", "1", "2016-05-18 18:50:28", "64.114.222.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("31154", "10", "2016-05-18 19:10:38", "207.46.13.192", "8");
INSERT INTO `wp_gf_form_view` VALUES("31155", "3", "2016-05-18 19:10:42", "207.46.13.192", "21");
INSERT INTO `wp_gf_form_view` VALUES("31156", "6", "2016-05-18 19:37:22", "66.249.75.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("31157", "8", "2016-05-18 19:55:35", "164.132.161.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("31158", "9", "2016-05-18 19:55:35", "164.132.161.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("31159", "3", "2016-05-18 20:21:47", "202.46.52.64", "51");
INSERT INTO `wp_gf_form_view` VALUES("31160", "10", "2016-05-18 20:21:50", "202.46.52.64", "18");
INSERT INTO `wp_gf_form_view` VALUES("31161", "3", "2016-05-18 21:21:48", "192.197.253.19", "29");
INSERT INTO `wp_gf_form_view` VALUES("31162", "10", "2016-05-18 21:21:48", "192.197.253.19", "13");
INSERT INTO `wp_gf_form_view` VALUES("31163", "3", "2016-05-18 22:34:16", "157.55.39.89", "22");
INSERT INTO `wp_gf_form_view` VALUES("31164", "10", "2016-05-18 22:34:21", "157.55.39.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("31165", "5", "2016-05-18 22:43:45", "207.46.13.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("31166", "3", "2016-05-18 23:00:03", "142.104.37.76", "22");
INSERT INTO `wp_gf_form_view` VALUES("31167", "10", "2016-05-18 23:00:03", "142.104.37.76", "9");
INSERT INTO `wp_gf_form_view` VALUES("31168", "3", "2016-05-19 00:16:14", "202.46.52.164", "50");
INSERT INTO `wp_gf_form_view` VALUES("31169", "10", "2016-05-19 00:16:16", "202.46.52.164", "21");
INSERT INTO `wp_gf_form_view` VALUES("31170", "3", "2016-05-19 01:18:58", "104.131.179.5", "1997");
INSERT INTO `wp_gf_form_view` VALUES("31171", "10", "2016-05-19 01:18:58", "104.131.179.5", "874");
INSERT INTO `wp_gf_form_view` VALUES("31172", "1", "2016-05-19 01:23:17", "104.131.179.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("31173", "11", "2016-05-19 01:23:32", "104.131.179.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("31174", "5", "2016-05-19 01:28:56", "104.131.179.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("31175", "12", "2016-05-19 01:32:11", "104.131.179.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("31176", "6", "2016-05-19 01:36:27", "104.131.179.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("31177", "9", "2016-05-19 01:43:37", "104.131.179.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("31178", "2", "2016-05-19 01:56:49", "66.249.75.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("31179", "3", "2016-05-19 02:00:22", "104.131.179.5", "2084");
INSERT INTO `wp_gf_form_view` VALUES("31180", "10", "2016-05-19 02:00:22", "104.131.179.5", "910");
INSERT INTO `wp_gf_form_view` VALUES("31181", "2", "2016-05-19 02:28:08", "104.131.179.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("31182", "8", "2016-05-19 02:41:58", "104.131.179.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("31183", "3", "2016-05-19 03:21:19", "207.46.13.192", "44");
INSERT INTO `wp_gf_form_view` VALUES("31184", "10", "2016-05-19 03:21:24", "207.46.13.192", "18");
INSERT INTO `wp_gf_form_view` VALUES("31185", "11", "2016-05-19 04:01:15", "66.249.75.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("31186", "3", "2016-05-19 04:01:16", "66.249.75.180", "41");
INSERT INTO `wp_gf_form_view` VALUES("31187", "10", "2016-05-19 04:01:16", "66.249.75.180", "16");
INSERT INTO `wp_gf_form_view` VALUES("31188", "3", "2016-05-19 05:03:38", "68.180.229.58", "45");
INSERT INTO `wp_gf_form_view` VALUES("31189", "10", "2016-05-19 05:03:38", "68.180.229.58", "18");
INSERT INTO `wp_gf_form_view` VALUES("31190", "3", "2016-05-19 07:03:27", "157.55.39.51", "37");
INSERT INTO `wp_gf_form_view` VALUES("31191", "10", "2016-05-19 07:03:30", "157.55.39.51", "18");
INSERT INTO `wp_gf_form_view` VALUES("31192", "3", "2016-05-19 08:10:02", "157.55.39.51", "42");
INSERT INTO `wp_gf_form_view` VALUES("31193", "10", "2016-05-19 08:10:04", "157.55.39.51", "18");
INSERT INTO `wp_gf_form_view` VALUES("31194", "1", "2016-05-19 08:15:00", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("31195", "12", "2016-05-19 09:42:14", "157.55.39.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31196", "3", "2016-05-19 09:42:16", "157.55.39.51", "7");
INSERT INTO `wp_gf_form_view` VALUES("31197", "10", "2016-05-19 09:42:16", "157.55.39.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("31198", "3", "2016-05-19 10:01:03", "51.255.65.23", "92");
INSERT INTO `wp_gf_form_view` VALUES("31199", "10", "2016-05-19 10:01:03", "51.255.65.23", "39");
INSERT INTO `wp_gf_form_view` VALUES("31200", "3", "2016-05-19 11:02:23", "176.8.244.215", "63");
INSERT INTO `wp_gf_form_view` VALUES("31201", "10", "2016-05-19 11:02:23", "176.8.244.215", "27");
INSERT INTO `wp_gf_form_view` VALUES("31202", "1", "2016-05-19 11:06:26", "77.75.78.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("31203", "9", "2016-05-19 11:55:26", "157.55.39.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("31204", "3", "2016-05-19 12:06:06", "77.75.78.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("31205", "10", "2016-05-19 12:06:06", "77.75.78.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("31206", "3", "2016-05-19 13:12:28", "66.249.75.180", "7");
INSERT INTO `wp_gf_form_view` VALUES("31207", "10", "2016-05-19 13:12:32", "66.249.75.180", "3");
INSERT INTO `wp_gf_form_view` VALUES("31208", "3", "2016-05-19 14:54:14", "77.75.79.119", "268");
INSERT INTO `wp_gf_form_view` VALUES("31209", "10", "2016-05-19 14:54:16", "77.75.79.119", "115");
INSERT INTO `wp_gf_form_view` VALUES("31210", "11", "2016-05-19 14:58:10", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("31211", "2", "2016-05-19 14:58:12", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("31212", "12", "2016-05-19 14:59:12", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("31213", "3", "2016-05-19 15:00:00", "173.193.219.168", "3226");
INSERT INTO `wp_gf_form_view` VALUES("31214", "10", "2016-05-19 15:00:02", "173.193.219.168", "1400");
INSERT INTO `wp_gf_form_view` VALUES("31215", "1", "2016-05-19 15:00:09", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("31216", "5", "2016-05-19 15:03:51", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("31217", "8", "2016-05-19 15:05:58", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("31218", "9", "2016-05-19 15:06:04", "173.193.219.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("31219", "3", "2016-05-19 16:27:00", "66.249.65.97", "14");
INSERT INTO `wp_gf_form_view` VALUES("31220", "10", "2016-05-19 16:27:03", "66.249.65.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("31221", "3", "2016-05-19 17:03:28", "157.55.39.51", "50");
INSERT INTO `wp_gf_form_view` VALUES("31222", "10", "2016-05-19 17:03:31", "157.55.39.51", "21");
INSERT INTO `wp_gf_form_view` VALUES("31223", "3", "2016-05-19 18:14:19", "54.236.1.72", "42");
INSERT INTO `wp_gf_form_view` VALUES("31224", "10", "2016-05-19 18:14:19", "54.236.1.72", "18");
INSERT INTO `wp_gf_form_view` VALUES("31225", "11", "2016-05-19 18:34:49", "77.75.77.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("31226", "3", "2016-05-19 19:02:49", "199.21.99.202", "74");
INSERT INTO `wp_gf_form_view` VALUES("31227", "10", "2016-05-19 19:03:07", "199.21.99.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("31228", "1", "2016-05-19 19:25:38", "184.66.252.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("31229", "3", "2016-05-19 20:15:54", "207.6.183.85", "55");
INSERT INTO `wp_gf_form_view` VALUES("31230", "10", "2016-05-19 20:15:54", "207.6.183.85", "21");
INSERT INTO `wp_gf_form_view` VALUES("31231", "3", "2016-05-19 21:13:20", "204.209.209.131", "92");
INSERT INTO `wp_gf_form_view` VALUES("31232", "10", "2016-05-19 21:13:20", "204.209.209.131", "39");
INSERT INTO `wp_gf_form_view` VALUES("31233", "12", "2016-05-19 21:48:17", "54.165.151.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("31234", "5", "2016-05-19 22:14:06", "202.46.52.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("31235", "3", "2016-05-19 22:14:06", "202.46.52.17", "21");
INSERT INTO `wp_gf_form_view` VALUES("31236", "10", "2016-05-19 22:14:06", "202.46.52.17", "9");
INSERT INTO `wp_gf_form_view` VALUES("31237", "3", "2016-05-19 23:07:32", "207.46.13.192", "583");
INSERT INTO `wp_gf_form_view` VALUES("31238", "10", "2016-05-19 23:07:32", "207.46.13.192", "269");
INSERT INTO `wp_gf_form_view` VALUES("31239", "6", "2016-05-19 23:07:53", "207.46.13.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("31240", "11", "2016-05-19 23:07:56", "157.55.39.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("31241", "9", "2016-05-19 23:08:15", "157.55.39.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("31242", "12", "2016-05-19 23:32:33", "68.180.229.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("31243", "3", "2016-05-20 00:06:14", "157.55.39.89", "42");
INSERT INTO `wp_gf_form_view` VALUES("31244", "10", "2016-05-20 00:06:15", "157.55.39.89", "18");
INSERT INTO `wp_gf_form_view` VALUES("31245", "12", "2016-05-20 00:17:39", "68.180.229.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("31246", "3", "2016-05-20 01:01:35", "202.46.57.12", "14");
INSERT INTO `wp_gf_form_view` VALUES("31247", "10", "2016-05-20 01:01:35", "202.46.57.12", "6");
INSERT INTO `wp_gf_form_view` VALUES("31248", "1", "2016-05-20 01:58:18", "77.75.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("31249", "3", "2016-05-20 02:26:49", "66.249.65.100", "14");
INSERT INTO `wp_gf_form_view` VALUES("31250", "10", "2016-05-20 02:26:50", "66.249.65.100", "6");
INSERT INTO `wp_gf_form_view` VALUES("31251", "3", "2016-05-20 03:00:01", "154.5.180.134", "112");
INSERT INTO `wp_gf_form_view` VALUES("31252", "10", "2016-05-20 03:00:01", "154.5.180.134", "48");
INSERT INTO `wp_gf_form_view` VALUES("31253", "1", "2016-05-20 03:13:44", "154.5.180.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("31254", "9", "2016-05-20 03:27:16", "68.180.229.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("31255", "3", "2016-05-20 04:39:04", "207.46.13.192", "7");
INSERT INTO `wp_gf_form_view` VALUES("31256", "10", "2016-05-20 04:39:06", "207.46.13.192", "3");
INSERT INTO `wp_gf_form_view` VALUES("31257", "3", "2016-05-20 05:07:54", "46.118.152.166", "48");
INSERT INTO `wp_gf_form_view` VALUES("31258", "3", "2016-05-20 05:07:54", "46.118.152.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("31259", "10", "2016-05-20 05:07:54", "46.118.152.166", "20");
INSERT INTO `wp_gf_form_view` VALUES("31260", "10", "2016-05-20 05:07:54", "46.118.152.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("31261", "3", "2016-05-20 06:37:39", "24.69.158.129", "560");
INSERT INTO `wp_gf_form_view` VALUES("31262", "10", "2016-05-20 06:37:41", "24.69.158.129", "242");
INSERT INTO `wp_gf_form_view` VALUES("31263", "11", "2016-05-20 06:53:48", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31264", "2", "2016-05-20 06:53:53", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31265", "12", "2016-05-20 06:55:33", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31266", "1", "2016-05-20 06:56:11", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31267", "3", "2016-05-20 07:00:34", "5.9.98.130", "3516");
INSERT INTO `wp_gf_form_view` VALUES("31268", "10", "2016-05-20 07:00:34", "5.9.98.130", "1578");
INSERT INTO `wp_gf_form_view` VALUES("31269", "8", "2016-05-20 07:00:48", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31270", "9", "2016-05-20 07:00:57", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31271", "5", "2016-05-20 07:01:42", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31272", "6", "2016-05-20 07:05:42", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31273", "3", "2016-05-20 08:00:01", "5.9.98.130", "3415");
INSERT INTO `wp_gf_form_view` VALUES("31274", "10", "2016-05-20 08:00:01", "5.9.98.130", "1546");
INSERT INTO `wp_gf_form_view` VALUES("31275", "10", "2016-05-20 09:00:00", "5.9.98.130", "1017");
INSERT INTO `wp_gf_form_view` VALUES("31276", "3", "2016-05-20 09:00:00", "5.9.98.130", "2090");
INSERT INTO `wp_gf_form_view` VALUES("31277", "3", "2016-05-20 10:00:01", "5.9.98.130", "3277");
INSERT INTO `wp_gf_form_view` VALUES("31278", "10", "2016-05-20 10:00:01", "5.9.98.130", "1536");
INSERT INTO `wp_gf_form_view` VALUES("31279", "9", "2016-05-20 10:40:06", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31280", "3", "2016-05-20 11:09:09", "68.180.229.58", "15");
INSERT INTO `wp_gf_form_view` VALUES("31281", "10", "2016-05-20 11:09:10", "68.180.229.58", "6");
INSERT INTO `wp_gf_form_view` VALUES("31282", "3", "2016-05-20 14:07:31", "209.53.121.203", "126");
INSERT INTO `wp_gf_form_view` VALUES("31283", "10", "2016-05-20 14:07:32", "209.53.121.203", "54");
INSERT INTO `wp_gf_form_view` VALUES("31284", "1", "2016-05-20 14:13:53", "104.144.138.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("31285", "3", "2016-05-20 15:47:58", "206.253.224.14", "14");
INSERT INTO `wp_gf_form_view` VALUES("31286", "10", "2016-05-20 15:48:01", "206.253.224.14", "6");
INSERT INTO `wp_gf_form_view` VALUES("31287", "12", "2016-05-20 15:50:01", "41.207.249.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("31288", "3", "2016-05-20 16:00:01", "207.46.13.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("31289", "10", "2016-05-20 16:00:01", "207.46.13.144", "9");
INSERT INTO `wp_gf_form_view` VALUES("31290", "1", "2016-05-20 16:10:44", "104.218.192.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("31291", "3", "2016-05-20 17:13:06", "207.194.133.9", "57");
INSERT INTO `wp_gf_form_view` VALUES("31292", "10", "2016-05-20 17:13:16", "207.194.133.9", "23");
INSERT INTO `wp_gf_form_view` VALUES("31293", "10", "2016-05-20 17:13:16", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("31294", "8", "2016-05-20 18:30:01", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("31295", "3", "2016-05-20 18:30:02", "66.249.79.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("31296", "10", "2016-05-20 18:30:03", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("31297", "3", "2016-05-20 19:10:49", "178.137.167.51", "63");
INSERT INTO `wp_gf_form_view` VALUES("31298", "10", "2016-05-20 19:10:51", "178.137.167.51", "25");
INSERT INTO `wp_gf_form_view` VALUES("31299", "10", "2016-05-20 19:10:51", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31300", "10", "2016-05-20 19:10:51", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31301", "3", "2016-05-20 20:20:51", "68.180.229.58", "14");
INSERT INTO `wp_gf_form_view` VALUES("31302", "10", "2016-05-20 20:20:51", "68.180.229.58", "6");
INSERT INTO `wp_gf_form_view` VALUES("31303", "11", "2016-05-20 21:10:17", "77.75.78.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("31304", "3", "2016-05-20 21:10:22", "77.75.78.171", "49");
INSERT INTO `wp_gf_form_view` VALUES("31305", "10", "2016-05-20 21:10:22", "77.75.78.171", "21");
INSERT INTO `wp_gf_form_view` VALUES("31306", "1", "2016-05-20 21:34:27", "45.45.150.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("31307", "3", "2016-05-20 22:32:28", "207.46.13.6", "14");
INSERT INTO `wp_gf_form_view` VALUES("31308", "10", "2016-05-20 22:32:29", "207.46.13.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("31309", "3", "2016-05-20 23:18:17", "199.59.148.209", "15");
INSERT INTO `wp_gf_form_view` VALUES("31310", "10", "2016-05-20 23:18:19", "199.59.148.209", "7");
INSERT INTO `wp_gf_form_view` VALUES("31311", "3", "2016-05-21 00:09:43", "207.216.13.45", "29");
INSERT INTO `wp_gf_form_view` VALUES("31312", "10", "2016-05-21 00:09:43", "207.216.13.45", "12");
INSERT INTO `wp_gf_form_view` VALUES("31313", "3", "2016-05-21 01:08:26", "46.118.152.166", "42");
INSERT INTO `wp_gf_form_view` VALUES("31314", "10", "2016-05-21 01:08:26", "46.118.152.166", "18");
INSERT INTO `wp_gf_form_view` VALUES("31315", "3", "2016-05-21 02:21:43", "77.75.77.32", "29");
INSERT INTO `wp_gf_form_view` VALUES("31316", "10", "2016-05-21 02:21:44", "77.75.77.32", "12");
INSERT INTO `wp_gf_form_view` VALUES("31317", "3", "2016-05-21 03:36:34", "164.132.161.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("31318", "10", "2016-05-21 03:36:38", "164.132.161.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("31319", "3", "2016-05-21 05:14:24", "212.250.165.170", "388");
INSERT INTO `wp_gf_form_view` VALUES("31320", "10", "2016-05-21 05:14:26", "212.250.165.170", "162");
INSERT INTO `wp_gf_form_view` VALUES("31321", "10", "2016-05-21 05:14:26", "202.46.55.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("31322", "11", "2016-05-21 05:14:40", "212.250.165.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("31323", "2", "2016-05-21 05:14:45", "212.250.165.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("31324", "12", "2016-05-21 05:16:36", "212.250.165.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("31325", "1", "2016-05-21 05:17:35", "212.250.165.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("31326", "3", "2016-05-21 06:16:42", "68.180.229.58", "246");
INSERT INTO `wp_gf_form_view` VALUES("31327", "10", "2016-05-21 06:16:46", "68.180.229.58", "106");
INSERT INTO `wp_gf_form_view` VALUES("31328", "11", "2016-05-21 06:28:28", "192.95.6.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("31329", "12", "2016-05-21 06:28:59", "192.95.6.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("31330", "2", "2016-05-21 06:29:40", "192.95.6.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("31331", "3", "2016-05-21 07:10:26", "202.46.51.106", "21");
INSERT INTO `wp_gf_form_view` VALUES("31332", "10", "2016-05-21 07:10:26", "202.46.51.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("31333", "3", "2016-05-21 08:22:53", "94.23.27.166", "452");
INSERT INTO `wp_gf_form_view` VALUES("31334", "10", "2016-05-21 08:22:54", "94.23.27.166", "196");
INSERT INTO `wp_gf_form_view` VALUES("31335", "11", "2016-05-21 08:23:20", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("31336", "2", "2016-05-21 08:23:25", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("31337", "12", "2016-05-21 08:25:28", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("31338", "1", "2016-05-21 08:26:13", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("31339", "3", "2016-05-21 09:21:47", "66.249.79.162", "14");
INSERT INTO `wp_gf_form_view` VALUES("31340", "10", "2016-05-21 09:21:49", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("31341", "3", "2016-05-21 10:34:58", "141.8.143.242", "22");
INSERT INTO `wp_gf_form_view` VALUES("31342", "10", "2016-05-21 10:35:07", "141.8.143.242", "9");
INSERT INTO `wp_gf_form_view` VALUES("31343", "3", "2016-05-21 11:18:29", "51.255.65.63", "270");
INSERT INTO `wp_gf_form_view` VALUES("31344", "10", "2016-05-21 11:18:30", "51.255.65.63", "115");
INSERT INTO `wp_gf_form_view` VALUES("31345", "11", "2016-05-21 11:31:07", "79.116.27.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31346", "12", "2016-05-21 11:31:42", "79.116.27.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31347", "2", "2016-05-21 11:32:26", "79.116.27.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31348", "3", "2016-05-21 12:50:47", "68.180.229.58", "14");
INSERT INTO `wp_gf_form_view` VALUES("31349", "10", "2016-05-21 12:50:48", "68.180.229.58", "6");
INSERT INTO `wp_gf_form_view` VALUES("31350", "6", "2016-05-21 13:07:12", "164.132.161.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("31351", "3", "2016-05-21 13:07:12", "164.132.161.7", "92");
INSERT INTO `wp_gf_form_view` VALUES("31352", "10", "2016-05-21 13:07:12", "164.132.161.7", "39");
INSERT INTO `wp_gf_form_view` VALUES("31353", "3", "2016-05-21 14:15:00", "164.132.161.45", "28");
INSERT INTO `wp_gf_form_view` VALUES("31354", "10", "2016-05-21 14:15:00", "164.132.161.45", "12");
INSERT INTO `wp_gf_form_view` VALUES("31355", "1", "2016-05-21 14:16:33", "51.255.65.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("31356", "1", "2016-05-21 15:07:16", "96.50.28.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("31357", "3", "2016-05-21 15:07:17", "96.50.28.131", "35");
INSERT INTO `wp_gf_form_view` VALUES("31358", "10", "2016-05-21 15:07:17", "96.50.28.131", "15");
INSERT INTO `wp_gf_form_view` VALUES("31359", "3", "2016-05-21 16:01:15", "176.8.244.215", "71");
INSERT INTO `wp_gf_form_view` VALUES("31360", "10", "2016-05-21 16:01:15", "176.8.244.215", "30");
INSERT INTO `wp_gf_form_view` VALUES("31361", "3", "2016-05-21 17:00:52", "207.46.13.144", "164");
INSERT INTO `wp_gf_form_view` VALUES("31362", "10", "2016-05-21 17:00:52", "207.46.13.144", "70");
INSERT INTO `wp_gf_form_view` VALUES("31363", "11", "2016-05-21 17:42:35", "104.236.121.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("31364", "12", "2016-05-21 17:42:35", "104.236.121.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("31365", "2", "2016-05-21 17:42:38", "104.236.121.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("31366", "3", "2016-05-21 18:05:06", "202.46.51.109", "15");
INSERT INTO `wp_gf_form_view` VALUES("31367", "10", "2016-05-21 18:05:06", "202.46.51.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("31368", "3", "2016-05-21 19:05:45", "117.68.151.166", "36");
INSERT INTO `wp_gf_form_view` VALUES("31369", "10", "2016-05-21 19:05:52", "117.68.151.166", "15");
INSERT INTO `wp_gf_form_view` VALUES("31370", "3", "2016-05-21 20:03:00", "164.132.161.77", "15");
INSERT INTO `wp_gf_form_view` VALUES("31371", "10", "2016-05-21 20:03:00", "164.132.161.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("31372", "3", "2016-05-21 21:37:19", "96.54.197.128", "41");
INSERT INTO `wp_gf_form_view` VALUES("31373", "3", "2016-05-21 21:37:19", "96.54.197.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("31374", "10", "2016-05-21 21:37:24", "96.54.197.128", "17");
INSERT INTO `wp_gf_form_view` VALUES("31375", "10", "2016-05-21 21:37:24", "96.54.197.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("31376", "3", "2016-05-21 22:12:31", "202.46.55.137", "32");
INSERT INTO `wp_gf_form_view` VALUES("31377", "10", "2016-05-21 22:12:33", "202.46.55.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("31378", "3", "2016-05-21 23:13:49", "206.116.122.140", "28");
INSERT INTO `wp_gf_form_view` VALUES("31379", "10", "2016-05-21 23:13:53", "206.116.122.140", "13");
INSERT INTO `wp_gf_form_view` VALUES("31380", "12", "2016-05-21 23:52:58", "202.46.55.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("31381", "10", "2016-05-22 00:40:11", "207.46.13.64", "17");
INSERT INTO `wp_gf_form_view` VALUES("31382", "3", "2016-05-22 00:40:12", "207.46.13.64", "36");
INSERT INTO `wp_gf_form_view` VALUES("31383", "1", "2016-05-22 00:59:58", "202.46.58.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("31384", "3", "2016-05-22 01:10:42", "46.118.121.215", "43");
INSERT INTO `wp_gf_form_view` VALUES("31385", "10", "2016-05-22 01:10:42", "46.118.121.215", "19");
INSERT INTO `wp_gf_form_view` VALUES("31386", "3", "2016-05-22 02:27:00", "68.180.229.58", "21");
INSERT INTO `wp_gf_form_view` VALUES("31387", "10", "2016-05-22 02:27:00", "68.180.229.58", "10");
INSERT INTO `wp_gf_form_view` VALUES("31388", "10", "2016-05-22 03:08:39", "54.162.231.121", "22");
INSERT INTO `wp_gf_form_view` VALUES("31389", "3", "2016-05-22 03:08:40", "54.162.231.121", "43");
INSERT INTO `wp_gf_form_view` VALUES("31390", "3", "2016-05-22 04:29:49", "141.8.143.242", "37");
INSERT INTO `wp_gf_form_view` VALUES("31391", "10", "2016-05-22 04:29:50", "141.8.143.242", "15");
INSERT INTO `wp_gf_form_view` VALUES("31392", "3", "2016-05-22 06:10:40", "66.249.66.78", "28");
INSERT INTO `wp_gf_form_view` VALUES("31393", "10", "2016-05-22 06:10:42", "66.249.66.78", "12");
INSERT INTO `wp_gf_form_view` VALUES("31394", "3", "2016-05-22 07:04:24", "207.46.13.144", "37");
INSERT INTO `wp_gf_form_view` VALUES("31395", "10", "2016-05-22 07:04:24", "207.46.13.144", "15");
INSERT INTO `wp_gf_form_view` VALUES("31396", "3", "2016-05-22 08:20:51", "157.55.39.43", "14");
INSERT INTO `wp_gf_form_view` VALUES("31397", "10", "2016-05-22 08:20:52", "157.55.39.43", "7");
INSERT INTO `wp_gf_form_view` VALUES("31398", "3", "2016-05-22 10:09:57", "142.4.216.172", "197");
INSERT INTO `wp_gf_form_view` VALUES("31399", "10", "2016-05-22 10:09:58", "142.4.216.172", "84");
INSERT INTO `wp_gf_form_view` VALUES("31400", "11", "2016-05-22 10:10:11", "142.4.216.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("31401", "2", "2016-05-22 10:10:14", "142.4.216.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("31402", "3", "2016-05-22 11:00:14", "66.249.66.81", "106");
INSERT INTO `wp_gf_form_view` VALUES("31403", "10", "2016-05-22 11:00:14", "66.249.66.81", "45");
INSERT INTO `wp_gf_form_view` VALUES("31404", "10", "2016-05-22 12:09:40", "66.249.66.78", "13");
INSERT INTO `wp_gf_form_view` VALUES("31405", "3", "2016-05-22 12:09:42", "66.249.66.78", "29");
INSERT INTO `wp_gf_form_view` VALUES("31406", "12", "2016-05-22 12:09:58", "66.249.66.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("31407", "3", "2016-05-22 13:03:31", "66.249.66.78", "23");
INSERT INTO `wp_gf_form_view` VALUES("31408", "10", "2016-05-22 13:03:34", "66.249.66.78", "9");
INSERT INTO `wp_gf_form_view` VALUES("31409", "3", "2016-05-22 14:00:15", "66.249.66.75", "35");
INSERT INTO `wp_gf_form_view` VALUES("31410", "10", "2016-05-22 14:00:15", "66.249.66.75", "15");
INSERT INTO `wp_gf_form_view` VALUES("31411", "3", "2016-05-22 15:01:22", "68.180.229.58", "15");
INSERT INTO `wp_gf_form_view` VALUES("31412", "10", "2016-05-22 15:01:24", "68.180.229.58", "8");
INSERT INTO `wp_gf_form_view` VALUES("31413", "3", "2016-05-22 16:03:27", "40.77.167.1", "49");
INSERT INTO `wp_gf_form_view` VALUES("31414", "10", "2016-05-22 16:03:28", "40.77.167.1", "21");
INSERT INTO `wp_gf_form_view` VALUES("31415", "3", "2016-05-22 17:03:45", "220.181.108.181", "239");
INSERT INTO `wp_gf_form_view` VALUES("31416", "10", "2016-05-22 17:03:45", "220.181.108.181", "103");
INSERT INTO `wp_gf_form_view` VALUES("31417", "11", "2016-05-22 17:53:00", "88.0.105.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("31418", "12", "2016-05-22 17:53:40", "88.0.105.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("31419", "2", "2016-05-22 17:54:25", "88.0.105.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("31420", "3", "2016-05-22 18:00:54", "66.249.79.169", "19");
INSERT INTO `wp_gf_form_view` VALUES("31421", "10", "2016-05-22 18:00:54", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("31422", "3", "2016-05-22 19:04:06", "164.132.161.56", "7");
INSERT INTO `wp_gf_form_view` VALUES("31423", "10", "2016-05-22 19:04:06", "164.132.161.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("31424", "3", "2016-05-22 20:24:08", "77.75.79.17", "14");
INSERT INTO `wp_gf_form_view` VALUES("31425", "10", "2016-05-22 20:24:10", "77.75.79.17", "6");
INSERT INTO `wp_gf_form_view` VALUES("31426", "3", "2016-05-22 21:14:34", "164.132.161.76", "28");
INSERT INTO `wp_gf_form_view` VALUES("31427", "10", "2016-05-22 21:14:36", "164.132.161.76", "11");
INSERT INTO `wp_gf_form_view` VALUES("31428", "10", "2016-05-22 21:14:36", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("31429", "3", "2016-05-22 22:02:04", "77.75.78.165", "21");
INSERT INTO `wp_gf_form_view` VALUES("31430", "10", "2016-05-22 22:02:04", "77.75.78.165", "9");
INSERT INTO `wp_gf_form_view` VALUES("31431", "7", "2016-05-22 23:12:14", "202.46.55.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("31432", "3", "2016-05-22 23:12:17", "202.46.55.19", "42");
INSERT INTO `wp_gf_form_view` VALUES("31433", "10", "2016-05-22 23:12:17", "202.46.55.19", "19");
INSERT INTO `wp_gf_form_view` VALUES("31434", "3", "2016-05-23 00:36:46", "157.55.39.29", "456");
INSERT INTO `wp_gf_form_view` VALUES("31435", "10", "2016-05-23 00:36:47", "157.55.39.29", "193");
INSERT INTO `wp_gf_form_view` VALUES("31436", "9", "2016-05-23 00:46:48", "157.55.39.29", "3");
INSERT INTO `wp_gf_form_view` VALUES("31437", "7", "2016-05-23 00:47:08", "157.55.39.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("31438", "3", "2016-05-23 01:09:04", "202.46.52.179", "63");
INSERT INTO `wp_gf_form_view` VALUES("31439", "10", "2016-05-23 01:09:04", "202.46.52.179", "27");
INSERT INTO `wp_gf_form_view` VALUES("31440", "12", "2016-05-23 01:30:17", "154.20.34.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("31441", "3", "2016-05-23 02:07:22", "66.249.79.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("31442", "10", "2016-05-23 02:07:22", "66.249.79.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("31443", "3", "2016-05-23 03:23:58", "46.118.121.215", "14");
INSERT INTO `wp_gf_form_view` VALUES("31444", "10", "2016-05-23 03:24:00", "46.118.121.215", "6");
INSERT INTO `wp_gf_form_view` VALUES("31445", "3", "2016-05-23 04:14:08", "40.77.167.43", "8");
INSERT INTO `wp_gf_form_view` VALUES("31446", "10", "2016-05-23 04:14:10", "40.77.167.43", "3");
INSERT INTO `wp_gf_form_view` VALUES("31447", "3", "2016-05-23 05:12:06", "202.46.56.14", "21");
INSERT INTO `wp_gf_form_view` VALUES("31448", "10", "2016-05-23 05:12:09", "202.46.56.14", "9");
INSERT INTO `wp_gf_form_view` VALUES("31449", "3", "2016-05-23 06:01:56", "64.180.84.212", "56");
INSERT INTO `wp_gf_form_view` VALUES("31450", "10", "2016-05-23 06:02:01", "64.180.84.212", "24");
INSERT INTO `wp_gf_form_view` VALUES("31451", "3", "2016-05-23 08:35:06", "77.75.78.160", "88");
INSERT INTO `wp_gf_form_view` VALUES("31452", "10", "2016-05-23 08:35:09", "77.75.78.160", "36");
INSERT INTO `wp_gf_form_view` VALUES("31453", "1", "2016-05-23 08:47:40", "101.96.11.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("31454", "3", "2016-05-23 09:31:39", "66.249.79.162", "22");
INSERT INTO `wp_gf_form_view` VALUES("31455", "10", "2016-05-23 09:31:39", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("31456", "3", "2016-05-23 10:02:54", "66.249.79.176", "21");
INSERT INTO `wp_gf_form_view` VALUES("31457", "10", "2016-05-23 10:02:54", "66.249.79.176", "9");
INSERT INTO `wp_gf_form_view` VALUES("31458", "3", "2016-05-23 11:12:56", "5.9.145.132", "28");
INSERT INTO `wp_gf_form_view` VALUES("31459", "10", "2016-05-23 11:12:56", "5.9.145.132", "12");
INSERT INTO `wp_gf_form_view` VALUES("31460", "3", "2016-05-23 12:26:44", "157.55.39.238", "50");
INSERT INTO `wp_gf_form_view` VALUES("31461", "10", "2016-05-23 12:26:45", "157.55.39.238", "24");
INSERT INTO `wp_gf_form_view` VALUES("31462", "1", "2016-05-23 12:43:27", "172.245.82.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("31463", "3", "2016-05-23 13:13:21", "66.249.79.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("31464", "10", "2016-05-23 13:13:24", "66.249.79.176", "6");
INSERT INTO `wp_gf_form_view` VALUES("31465", "3", "2016-05-23 14:47:28", "51.255.65.11", "7");
INSERT INTO `wp_gf_form_view` VALUES("31466", "10", "2016-05-23 14:47:29", "51.255.65.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("31467", "3", "2016-05-23 15:09:50", "51.255.65.36", "7");
INSERT INTO `wp_gf_form_view` VALUES("31468", "10", "2016-05-23 15:09:53", "51.255.65.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("31469", "3", "2016-05-23 16:16:32", "62.210.148.91", "21");
INSERT INTO `wp_gf_form_view` VALUES("31470", "10", "2016-05-23 16:16:34", "62.210.148.91", "9");
INSERT INTO `wp_gf_form_view` VALUES("31471", "3", "2016-05-23 17:04:49", "96.54.197.128", "184");
INSERT INTO `wp_gf_form_view` VALUES("31472", "10", "2016-05-23 17:04:49", "96.54.197.128", "79");
INSERT INTO `wp_gf_form_view` VALUES("31473", "3", "2016-05-23 18:06:36", "164.132.161.96", "35");
INSERT INTO `wp_gf_form_view` VALUES("31474", "10", "2016-05-23 18:06:36", "164.132.161.96", "15");
INSERT INTO `wp_gf_form_view` VALUES("31475", "3", "2016-05-23 19:02:07", "202.46.51.183", "35");
INSERT INTO `wp_gf_form_view` VALUES("31476", "10", "2016-05-23 19:02:07", "202.46.51.183", "15");
INSERT INTO `wp_gf_form_view` VALUES("31477", "3", "2016-05-23 20:00:43", "151.80.31.175", "49");
INSERT INTO `wp_gf_form_view` VALUES("31478", "10", "2016-05-23 20:00:43", "151.80.31.175", "21");
INSERT INTO `wp_gf_form_view` VALUES("31479", "1", "2016-05-23 20:13:54", "184.66.44.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("31480", "3", "2016-05-23 22:08:52", "24.108.205.22", "53");
INSERT INTO `wp_gf_form_view` VALUES("31481", "10", "2016-05-23 22:08:55", "24.108.205.22", "21");
INSERT INTO `wp_gf_form_view` VALUES("31482", "3", "2016-05-23 23:38:53", "40.77.167.43", "8");
INSERT INTO `wp_gf_form_view` VALUES("31483", "10", "2016-05-23 23:38:55", "40.77.167.43", "3");
INSERT INTO `wp_gf_form_view` VALUES("31484", "3", "2016-05-24 00:09:41", "220.181.108.146", "77");
INSERT INTO `wp_gf_form_view` VALUES("31485", "10", "2016-05-24 00:09:42", "220.181.108.146", "34");
INSERT INTO `wp_gf_form_view` VALUES("31486", "3", "2016-05-24 01:12:00", "68.180.229.58", "8");
INSERT INTO `wp_gf_form_view` VALUES("31487", "10", "2016-05-24 01:12:02", "68.180.229.58", "4");
INSERT INTO `wp_gf_form_view` VALUES("31488", "3", "2016-05-24 02:31:11", "40.77.167.43", "21");
INSERT INTO `wp_gf_form_view` VALUES("31489", "10", "2016-05-24 02:31:11", "40.77.167.43", "9");
INSERT INTO `wp_gf_form_view` VALUES("31490", "3", "2016-05-24 03:06:16", "164.132.161.62", "29");
INSERT INTO `wp_gf_form_view` VALUES("31491", "10", "2016-05-24 03:06:23", "164.132.161.62", "12");
INSERT INTO `wp_gf_form_view` VALUES("31492", "8", "2016-05-24 03:47:09", "202.46.54.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("31493", "3", "2016-05-24 04:03:35", "188.40.112.210", "49");
INSERT INTO `wp_gf_form_view` VALUES("31494", "10", "2016-05-24 04:03:35", "188.40.112.210", "21");
INSERT INTO `wp_gf_form_view` VALUES("31495", "3", "2016-05-24 05:06:05", "51.255.65.57", "58");
INSERT INTO `wp_gf_form_view` VALUES("31496", "10", "2016-05-24 05:06:06", "51.255.65.57", "25");
INSERT INTO `wp_gf_form_view` VALUES("31497", "3", "2016-05-24 06:01:06", "202.46.53.125", "36");
INSERT INTO `wp_gf_form_view` VALUES("31498", "10", "2016-05-24 06:01:07", "202.46.53.125", "15");
INSERT INTO `wp_gf_form_view` VALUES("31499", "3", "2016-05-24 07:21:23", "40.77.167.43", "7");
INSERT INTO `wp_gf_form_view` VALUES("31500", "10", "2016-05-24 07:21:24", "40.77.167.43", "3");
INSERT INTO `wp_gf_form_view` VALUES("31501", "3", "2016-05-24 08:02:24", "5.153.234.154", "28");
INSERT INTO `wp_gf_form_view` VALUES("31502", "10", "2016-05-24 08:02:24", "5.153.234.154", "12");
INSERT INTO `wp_gf_form_view` VALUES("31503", "3", "2016-05-24 09:00:31", "66.249.79.169", "64");
INSERT INTO `wp_gf_form_view` VALUES("31504", "10", "2016-05-24 09:00:31", "66.249.79.169", "30");
INSERT INTO `wp_gf_form_view` VALUES("31505", "1", "2016-05-24 09:47:06", "77.75.77.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("31506", "3", "2016-05-24 10:01:03", "151.80.31.168", "193");
INSERT INTO `wp_gf_form_view` VALUES("31507", "10", "2016-05-24 10:01:03", "151.80.31.168", "82");
INSERT INTO `wp_gf_form_view` VALUES("31508", "11", "2016-05-24 10:36:59", "136.243.17.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("31509", "12", "2016-05-24 10:37:03", "136.243.17.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("31510", "3", "2016-05-24 11:02:11", "145.132.1.222", "241");
INSERT INTO `wp_gf_form_view` VALUES("31511", "10", "2016-05-24 11:02:11", "145.132.1.222", "106");
INSERT INTO `wp_gf_form_view` VALUES("31512", "11", "2016-05-24 11:02:26", "145.132.1.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("31513", "2", "2016-05-24 11:04:00", "145.132.1.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("31514", "1", "2016-05-24 11:41:55", "195.154.253.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("31515", "3", "2016-05-24 12:23:48", "66.249.79.169", "28");
INSERT INTO `wp_gf_form_view` VALUES("31516", "10", "2016-05-24 12:23:50", "66.249.79.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("31517", "3", "2016-05-24 13:01:25", "24.68.157.118", "28");
INSERT INTO `wp_gf_form_view` VALUES("31518", "10", "2016-05-24 13:01:26", "24.68.157.118", "12");
INSERT INTO `wp_gf_form_view` VALUES("31519", "2", "2016-05-24 13:51:01", "5.62.15.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("31520", "3", "2016-05-24 14:39:26", "202.46.51.18", "29");
INSERT INTO `wp_gf_form_view` VALUES("31521", "10", "2016-05-24 14:39:28", "202.46.51.18", "13");
INSERT INTO `wp_gf_form_view` VALUES("31522", "1", "2016-05-24 15:07:07", "96.50.28.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("31523", "3", "2016-05-24 15:07:07", "96.50.28.131", "105");
INSERT INTO `wp_gf_form_view` VALUES("31524", "10", "2016-05-24 15:07:07", "96.50.28.131", "45");
INSERT INTO `wp_gf_form_view` VALUES("31525", "2", "2016-05-24 15:38:49", "45.32.130.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("31526", "3", "2016-05-24 16:42:58", "142.104.153.28", "112");
INSERT INTO `wp_gf_form_view` VALUES("31527", "10", "2016-05-24 16:43:00", "142.104.153.28", "48");
INSERT INTO `wp_gf_form_view` VALUES("31528", "9", "2016-05-24 16:53:56", "207.46.13.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("31529", "3", "2016-05-24 17:02:49", "77.75.77.101", "21");
INSERT INTO `wp_gf_form_view` VALUES("31530", "10", "2016-05-24 17:02:54", "77.75.77.101", "9");
INSERT INTO `wp_gf_form_view` VALUES("31531", "3", "2016-05-24 18:06:09", "70.66.178.59", "84");
INSERT INTO `wp_gf_form_view` VALUES("31532", "10", "2016-05-24 18:06:10", "70.66.178.59", "36");
INSERT INTO `wp_gf_form_view` VALUES("31533", "3", "2016-05-24 19:01:56", "68.180.229.58", "105");
INSERT INTO `wp_gf_form_view` VALUES("31534", "10", "2016-05-24 19:01:56", "68.180.229.58", "46");
INSERT INTO `wp_gf_form_view` VALUES("31535", "2", "2016-05-24 19:45:00", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("31536", "12", "2016-05-24 19:51:50", "24.108.28.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("31537", "3", "2016-05-24 20:13:43", "173.183.78.232", "37");
INSERT INTO `wp_gf_form_view` VALUES("31538", "10", "2016-05-24 20:13:45", "173.183.78.232", "15");
INSERT INTO `wp_gf_form_view` VALUES("31539", "3", "2016-05-24 21:12:52", "209.52.88.243", "154");
INSERT INTO `wp_gf_form_view` VALUES("31540", "10", "2016-05-24 21:12:58", "209.52.88.243", "66");
INSERT INTO `wp_gf_form_view` VALUES("31541", "2", "2016-05-24 21:32:01", "69.50.234.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("31542", "1", "2016-05-24 21:52:20", "75.157.168.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("31543", "11", "2016-05-24 21:58:32", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("31544", "3", "2016-05-24 22:01:32", "51.255.65.96", "74");
INSERT INTO `wp_gf_form_view` VALUES("31545", "10", "2016-05-24 22:01:32", "51.255.65.96", "30");
INSERT INTO `wp_gf_form_view` VALUES("31546", "1", "2016-05-24 22:26:59", "184.69.183.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("31547", "12", "2016-05-24 22:28:54", "24.108.193.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("31548", "3", "2016-05-24 23:07:47", "190.213.94.120", "77");
INSERT INTO `wp_gf_form_view` VALUES("31549", "10", "2016-05-24 23:07:48", "190.213.94.120", "33");
INSERT INTO `wp_gf_form_view` VALUES("31550", "3", "2016-05-25 00:29:55", "207.46.13.38", "14");
INSERT INTO `wp_gf_form_view` VALUES("31551", "10", "2016-05-25 00:29:56", "207.46.13.38", "6");
INSERT INTO `wp_gf_form_view` VALUES("31552", "3", "2016-05-25 01:02:11", "46.17.97.73", "78");
INSERT INTO `wp_gf_form_view` VALUES("31553", "10", "2016-05-25 01:02:12", "46.17.97.73", "33");
INSERT INTO `wp_gf_form_view` VALUES("31554", "3", "2016-05-25 02:09:07", "66.249.66.78", "108");
INSERT INTO `wp_gf_form_view` VALUES("31555", "10", "2016-05-25 02:09:11", "66.249.66.78", "47");
INSERT INTO `wp_gf_form_view` VALUES("31556", "2", "2016-05-25 02:10:15", "45.32.130.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("31557", "3", "2016-05-25 03:01:43", "128.69.163.151", "87");
INSERT INTO `wp_gf_form_view` VALUES("31558", "10", "2016-05-25 03:01:44", "128.69.163.151", "36");
INSERT INTO `wp_gf_form_view` VALUES("31559", "1", "2016-05-25 03:44:40", "188.210.215.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("31560", "3", "2016-05-25 04:09:27", "51.255.65.20", "93");
INSERT INTO `wp_gf_form_view` VALUES("31561", "10", "2016-05-25 04:09:27", "51.255.65.20", "43");
INSERT INTO `wp_gf_form_view` VALUES("31562", "3", "2016-05-25 05:12:08", "207.46.13.171", "28");
INSERT INTO `wp_gf_form_view` VALUES("31563", "10", "2016-05-25 05:12:08", "207.46.13.171", "12");
INSERT INTO `wp_gf_form_view` VALUES("31564", "3", "2016-05-25 06:06:22", "202.46.54.204", "40");
INSERT INTO `wp_gf_form_view` VALUES("31565", "10", "2016-05-25 06:06:23", "202.46.54.204", "15");
INSERT INTO `wp_gf_form_view` VALUES("31566", "3", "2016-05-25 07:13:48", "66.249.66.81", "36");
INSERT INTO `wp_gf_form_view` VALUES("31567", "10", "2016-05-25 07:13:51", "66.249.66.81", "15");
INSERT INTO `wp_gf_form_view` VALUES("31568", "2", "2016-05-25 08:22:43", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("31569", "3", "2016-05-25 08:22:44", "68.180.229.224", "42");
INSERT INTO `wp_gf_form_view` VALUES("31570", "10", "2016-05-25 08:22:44", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("31571", "12", "2016-05-25 08:53:54", "202.46.57.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("31572", "3", "2016-05-25 09:16:27", "68.180.229.224", "14");
INSERT INTO `wp_gf_form_view` VALUES("31573", "10", "2016-05-25 09:16:31", "68.180.229.224", "7");
INSERT INTO `wp_gf_form_view` VALUES("31574", "3", "2016-05-25 10:19:06", "77.75.76.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("31575", "10", "2016-05-25 10:19:07", "77.75.76.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("31576", "10", "2016-05-25 11:15:35", "157.55.39.154", "10");
INSERT INTO `wp_gf_form_view` VALUES("31577", "3", "2016-05-25 11:15:36", "157.55.39.154", "21");
INSERT INTO `wp_gf_form_view` VALUES("31578", "5", "2016-05-25 12:06:14", "164.132.161.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("31579", "3", "2016-05-25 12:06:16", "164.132.161.44", "65");
INSERT INTO `wp_gf_form_view` VALUES("31580", "10", "2016-05-25 12:06:17", "164.132.161.44", "27");
INSERT INTO `wp_gf_form_view` VALUES("31581", "3", "2016-05-25 13:22:26", "202.46.52.43", "44");
INSERT INTO `wp_gf_form_view` VALUES("31582", "10", "2016-05-25 13:22:29", "202.46.52.43", "18");
INSERT INTO `wp_gf_form_view` VALUES("31583", "3", "2016-05-25 15:01:29", "68.180.229.224", "43");
INSERT INTO `wp_gf_form_view` VALUES("31584", "10", "2016-05-25 15:07:27", "209.52.88.246", "18");
INSERT INTO `wp_gf_form_view` VALUES("31585", "3", "2016-05-25 16:14:57", "77.75.76.164", "57");
INSERT INTO `wp_gf_form_view` VALUES("31586", "10", "2016-05-25 16:15:01", "77.75.76.164", "29");
INSERT INTO `wp_gf_form_view` VALUES("31587", "3", "2016-05-25 17:08:11", "157.55.39.154", "22");
INSERT INTO `wp_gf_form_view` VALUES("31588", "10", "2016-05-25 17:08:13", "157.55.39.154", "9");
INSERT INTO `wp_gf_form_view` VALUES("31589", "1", "2016-05-25 17:44:16", "198.52.240.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("31590", "3", "2016-05-25 18:05:13", "24.68.232.123", "523");
INSERT INTO `wp_gf_form_view` VALUES("31591", "10", "2016-05-25 18:05:19", "24.68.232.123", "240");
INSERT INTO `wp_gf_form_view` VALUES("31592", "9", "2016-05-25 18:42:17", "157.55.39.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("31593", "11", "2016-05-25 18:42:35", "157.55.39.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("31594", "6", "2016-05-25 18:42:50", "207.46.13.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("31595", "3", "2016-05-25 19:01:38", "68.180.229.224", "122");
INSERT INTO `wp_gf_form_view` VALUES("31596", "10", "2016-05-25 19:01:38", "68.180.229.224", "52");
INSERT INTO `wp_gf_form_view` VALUES("31597", "3", "2016-05-25 20:46:44", "199.21.99.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("31598", "10", "2016-05-25 20:46:46", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("31599", "3", "2016-05-25 21:08:19", "68.180.229.224", "43");
INSERT INTO `wp_gf_form_view` VALUES("31600", "10", "2016-05-25 21:08:23", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("31601", "3", "2016-05-25 22:14:33", "68.180.229.224", "77");
INSERT INTO `wp_gf_form_view` VALUES("31602", "10", "2016-05-25 22:14:35", "68.180.229.224", "33");
INSERT INTO `wp_gf_form_view` VALUES("31603", "3", "2016-05-25 23:15:00", "178.137.167.51", "234");
INSERT INTO `wp_gf_form_view` VALUES("31604", "3", "2016-05-25 23:15:00", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31605", "3", "2016-05-25 23:15:00", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31606", "3", "2016-05-25 23:15:00", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31607", "10", "2016-05-25 23:15:02", "178.137.167.51", "96");
INSERT INTO `wp_gf_form_view` VALUES("31608", "10", "2016-05-25 23:15:02", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31609", "10", "2016-05-25 23:15:02", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31610", "10", "2016-05-25 23:15:02", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31611", "3", "2016-05-26 00:06:15", "184.71.11.78", "65");
INSERT INTO `wp_gf_form_view` VALUES("31612", "10", "2016-05-26 00:06:15", "184.71.11.78", "27");
INSERT INTO `wp_gf_form_view` VALUES("31613", "3", "2016-05-26 01:16:47", "68.180.229.224", "106");
INSERT INTO `wp_gf_form_view` VALUES("31614", "10", "2016-05-26 01:18:54", "178.137.87.136", "44");
INSERT INTO `wp_gf_form_view` VALUES("31615", "10", "2016-05-26 01:18:54", "178.137.87.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("31616", "2", "2016-05-26 01:41:14", "223.96.148.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("31617", "3", "2016-05-26 02:24:19", "216.118.150.175", "35");
INSERT INTO `wp_gf_form_view` VALUES("31618", "10", "2016-05-26 02:24:20", "216.118.150.175", "16");
INSERT INTO `wp_gf_form_view` VALUES("31619", "12", "2016-05-26 02:24:58", "216.118.150.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("31620", "3", "2016-05-26 03:03:47", "51.255.65.92", "36");
INSERT INTO `wp_gf_form_view` VALUES("31621", "10", "2016-05-26 03:03:48", "51.255.65.92", "15");
INSERT INTO `wp_gf_form_view` VALUES("31622", "12", "2016-05-26 03:13:17", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("31623", "3", "2016-05-26 04:07:36", "75.157.168.129", "30");
INSERT INTO `wp_gf_form_view` VALUES("31624", "10", "2016-05-26 04:07:38", "75.157.168.129", "12");
INSERT INTO `wp_gf_form_view` VALUES("31625", "3", "2016-05-26 05:01:21", "68.180.229.224", "21");
INSERT INTO `wp_gf_form_view` VALUES("31626", "10", "2016-05-26 05:01:21", "68.180.229.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("31627", "3", "2016-05-26 06:44:12", "202.46.53.14", "22");
INSERT INTO `wp_gf_form_view` VALUES("31628", "10", "2016-05-26 06:44:13", "202.46.53.14", "9");
INSERT INTO `wp_gf_form_view` VALUES("31629", "12", "2016-05-26 06:59:46", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("31630", "3", "2016-05-26 07:10:43", "66.249.75.188", "28");
INSERT INTO `wp_gf_form_view` VALUES("31631", "10", "2016-05-26 07:10:43", "66.249.75.188", "12");
INSERT INTO `wp_gf_form_view` VALUES("31632", "3", "2016-05-26 08:10:32", "66.249.75.172", "66");
INSERT INTO `wp_gf_form_view` VALUES("31633", "10", "2016-05-26 08:10:35", "66.249.75.172", "30");
INSERT INTO `wp_gf_form_view` VALUES("31634", "9", "2016-05-26 08:29:52", "51.255.65.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("31635", "3", "2016-05-26 09:44:00", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("31636", "10", "2016-05-26 09:44:02", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("31637", "3", "2016-05-26 10:06:50", "66.249.75.180", "36");
INSERT INTO `wp_gf_form_view` VALUES("31638", "10", "2016-05-26 10:06:51", "66.249.75.180", "16");
INSERT INTO `wp_gf_form_view` VALUES("31639", "3", "2016-05-26 11:01:17", "68.180.229.224", "29");
INSERT INTO `wp_gf_form_view` VALUES("31640", "10", "2016-05-26 11:01:17", "68.180.229.224", "12");
INSERT INTO `wp_gf_form_view` VALUES("31641", "2", "2016-05-26 12:07:24", "40.77.167.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("31642", "3", "2016-05-26 12:07:26", "40.77.167.91", "28");
INSERT INTO `wp_gf_form_view` VALUES("31643", "10", "2016-05-26 12:07:26", "40.77.167.91", "13");
INSERT INTO `wp_gf_form_view` VALUES("31644", "3", "2016-05-26 13:40:01", "46.118.121.215", "34");
INSERT INTO `wp_gf_form_view` VALUES("31645", "3", "2016-05-26 13:40:01", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("31646", "10", "2016-05-26 13:40:04", "46.118.121.215", "14");
INSERT INTO `wp_gf_form_view` VALUES("31647", "10", "2016-05-26 13:40:04", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("31648", "3", "2016-05-26 14:15:43", "216.118.150.175", "21");
INSERT INTO `wp_gf_form_view` VALUES("31649", "10", "2016-05-26 14:15:45", "216.118.150.175", "10");
INSERT INTO `wp_gf_form_view` VALUES("31650", "11", "2016-05-26 15:21:56", "216.118.150.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("31651", "3", "2016-05-26 15:21:58", "216.118.150.175", "44");
INSERT INTO `wp_gf_form_view` VALUES("31652", "10", "2016-05-26 15:21:58", "216.118.150.175", "18");
INSERT INTO `wp_gf_form_view` VALUES("31653", "3", "2016-05-26 16:59:11", "154.5.211.28", "21");
INSERT INTO `wp_gf_form_view` VALUES("31654", "10", "2016-05-26 16:59:13", "154.5.211.28", "9");
INSERT INTO `wp_gf_form_view` VALUES("31655", "3", "2016-05-26 17:09:37", "207.46.13.27", "200");
INSERT INTO `wp_gf_form_view` VALUES("31656", "10", "2016-05-26 17:09:37", "207.46.13.27", "84");
INSERT INTO `wp_gf_form_view` VALUES("31657", "11", "2016-05-26 17:31:55", "5.9.94.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("31658", "12", "2016-05-26 17:32:01", "5.9.94.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("31659", "3", "2016-05-26 18:20:44", "216.118.150.175", "21");
INSERT INTO `wp_gf_form_view` VALUES("31660", "10", "2016-05-26 18:20:48", "216.118.150.175", "9");
INSERT INTO `wp_gf_form_view` VALUES("31661", "3", "2016-05-26 19:01:39", "68.180.229.224", "92");
INSERT INTO `wp_gf_form_view` VALUES("31662", "10", "2016-05-26 19:01:46", "68.180.229.224", "39");
INSERT INTO `wp_gf_form_view` VALUES("31663", "3", "2016-05-26 20:00:13", "202.46.57.28", "22");
INSERT INTO `wp_gf_form_view` VALUES("31664", "10", "2016-05-26 20:00:13", "202.46.57.28", "9");
INSERT INTO `wp_gf_form_view` VALUES("31665", "3", "2016-05-26 21:24:08", "209.121.249.246", "56");
INSERT INTO `wp_gf_form_view` VALUES("31666", "10", "2016-05-26 21:24:10", "209.121.249.246", "25");
INSERT INTO `wp_gf_form_view` VALUES("31667", "3", "2016-05-26 22:00:06", "96.50.40.3", "85");
INSERT INTO `wp_gf_form_view` VALUES("31668", "10", "2016-05-26 22:00:06", "96.50.40.3", "36");
INSERT INTO `wp_gf_form_view` VALUES("31669", "3", "2016-05-26 23:11:44", "24.108.105.147", "35");
INSERT INTO `wp_gf_form_view` VALUES("31670", "10", "2016-05-26 23:11:44", "24.108.105.147", "16");
INSERT INTO `wp_gf_form_view` VALUES("31671", "3", "2016-05-27 00:11:18", "46.118.121.215", "296");
INSERT INTO `wp_gf_form_view` VALUES("31672", "10", "2016-05-27 00:11:19", "46.118.121.215", "126");
INSERT INTO `wp_gf_form_view` VALUES("31673", "11", "2016-05-27 00:16:09", "145.132.1.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("31674", "12", "2016-05-27 00:16:53", "145.132.1.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("31675", "2", "2016-05-27 00:17:47", "145.132.1.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("31676", "3", "2016-05-27 01:20:03", "216.118.150.175", "7");
INSERT INTO `wp_gf_form_view` VALUES("31677", "10", "2016-05-27 01:20:06", "216.118.150.175", "3");
INSERT INTO `wp_gf_form_view` VALUES("31678", "3", "2016-05-27 02:02:14", "68.180.229.224", "35");
INSERT INTO `wp_gf_form_view` VALUES("31679", "10", "2016-05-27 02:02:16", "68.180.229.224", "15");
INSERT INTO `wp_gf_form_view` VALUES("31680", "3", "2016-05-27 03:29:01", "66.249.65.97", "15");
INSERT INTO `wp_gf_form_view` VALUES("31681", "10", "2016-05-27 03:29:02", "66.249.65.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("31682", "3", "2016-05-27 04:22:06", "216.118.150.175", "43");
INSERT INTO `wp_gf_form_view` VALUES("31683", "10", "2016-05-27 04:22:09", "216.118.150.175", "18");
INSERT INTO `wp_gf_form_view` VALUES("31684", "3", "2016-05-27 05:03:54", "216.118.150.175", "78");
INSERT INTO `wp_gf_form_view` VALUES("31685", "10", "2016-05-27 05:03:54", "216.118.150.175", "33");
INSERT INTO `wp_gf_form_view` VALUES("31686", "3", "2016-05-27 06:16:06", "68.180.229.224", "42");
INSERT INTO `wp_gf_form_view` VALUES("31687", "10", "2016-05-27 06:16:11", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("31688", "10", "2016-05-27 07:38:51", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("31689", "3", "2016-05-27 07:38:52", "68.180.229.224", "21");
INSERT INTO `wp_gf_form_view` VALUES("31690", "11", "2016-05-27 07:39:29", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("31691", "3", "2016-05-27 08:03:13", "199.21.99.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("31692", "10", "2016-05-27 08:03:13", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("31693", "3", "2016-05-27 10:06:43", "68.180.229.224", "58");
INSERT INTO `wp_gf_form_view` VALUES("31694", "10", "2016-05-27 10:06:47", "68.180.229.224", "24");
INSERT INTO `wp_gf_form_view` VALUES("31695", "6", "2016-05-27 10:14:26", "164.132.161.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("31696", "8", "2016-05-27 10:44:47", "202.46.58.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("31697", "3", "2016-05-27 11:02:52", "68.180.229.224", "45");
INSERT INTO `wp_gf_form_view` VALUES("31698", "10", "2016-05-27 11:02:55", "68.180.229.224", "19");
INSERT INTO `wp_gf_form_view` VALUES("31699", "3", "2016-05-27 12:41:26", "207.46.13.183", "14");
INSERT INTO `wp_gf_form_view` VALUES("31700", "10", "2016-05-27 12:41:27", "207.46.13.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("31701", "3", "2016-05-27 13:02:53", "202.46.58.159", "84");
INSERT INTO `wp_gf_form_view` VALUES("31702", "10", "2016-05-27 13:02:53", "202.46.58.159", "38");
INSERT INTO `wp_gf_form_view` VALUES("31703", "3", "2016-05-27 14:02:16", "51.255.65.19", "36");
INSERT INTO `wp_gf_form_view` VALUES("31704", "10", "2016-05-27 14:02:16", "51.255.65.19", "15");
INSERT INTO `wp_gf_form_view` VALUES("31705", "3", "2016-05-27 15:04:19", "64.180.20.212", "50");
INSERT INTO `wp_gf_form_view` VALUES("31706", "10", "2016-05-27 15:04:21", "64.180.20.212", "22");
INSERT INTO `wp_gf_form_view` VALUES("31707", "3", "2016-05-27 16:02:42", "207.46.13.82", "112");
INSERT INTO `wp_gf_form_view` VALUES("31708", "10", "2016-05-27 16:02:43", "207.46.13.82", "48");
INSERT INTO `wp_gf_form_view` VALUES("31709", "3", "2016-05-27 17:15:43", "178.137.87.136", "216");
INSERT INTO `wp_gf_form_view` VALUES("31710", "3", "2016-05-27 17:15:43", "178.137.87.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("31711", "10", "2016-05-27 17:15:49", "178.137.87.136", "92");
INSERT INTO `wp_gf_form_view` VALUES("31712", "10", "2016-05-27 17:15:49", "178.137.87.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("31713", "10", "2016-05-27 17:15:49", "178.137.87.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("31714", "3", "2016-05-27 18:32:21", "207.46.13.151", "410");
INSERT INTO `wp_gf_form_view` VALUES("31715", "10", "2016-05-27 18:32:22", "207.46.13.151", "188");
INSERT INTO `wp_gf_form_view` VALUES("31716", "6", "2016-05-27 18:44:38", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("31717", "9", "2016-05-27 18:46:52", "157.55.39.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("31718", "11", "2016-05-27 18:47:09", "157.55.39.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("31719", "3", "2016-05-27 19:02:37", "24.68.17.97", "51");
INSERT INTO `wp_gf_form_view` VALUES("31720", "10", "2016-05-27 19:02:37", "24.68.17.97", "21");
INSERT INTO `wp_gf_form_view` VALUES("31721", "12", "2016-05-27 19:10:52", "64.114.207.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("31722", "1", "2016-05-27 19:36:22", "104.129.8.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("31723", "3", "2016-05-27 20:03:17", "24.108.29.54", "56");
INSERT INTO `wp_gf_form_view` VALUES("31724", "3", "2016-05-27 20:03:17", "24.108.29.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("31725", "10", "2016-05-27 20:03:28", "24.108.29.54", "23");
INSERT INTO `wp_gf_form_view` VALUES("31726", "10", "2016-05-27 20:03:28", "24.108.29.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("31727", "3", "2016-05-27 21:16:07", "46.118.121.215", "54");
INSERT INTO `wp_gf_form_view` VALUES("31728", "3", "2016-05-27 21:16:07", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("31729", "3", "2016-05-27 21:16:07", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("31730", "10", "2016-05-27 21:16:09", "46.118.121.215", "22");
INSERT INTO `wp_gf_form_view` VALUES("31731", "10", "2016-05-27 21:16:09", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("31732", "10", "2016-05-27 21:16:09", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("31733", "3", "2016-05-27 22:16:52", "68.180.229.224", "209");
INSERT INTO `wp_gf_form_view` VALUES("31734", "10", "2016-05-27 22:16:52", "68.180.229.224", "95");
INSERT INTO `wp_gf_form_view` VALUES("31735", "3", "2016-05-27 23:55:38", "66.249.66.75", "8");
INSERT INTO `wp_gf_form_view` VALUES("31736", "10", "2016-05-27 23:55:39", "66.249.66.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("31737", "3", "2016-05-28 00:11:08", "66.249.66.78", "42");
INSERT INTO `wp_gf_form_view` VALUES("31738", "10", "2016-05-28 00:11:08", "66.249.66.78", "18");
INSERT INTO `wp_gf_form_view` VALUES("31739", "3", "2016-05-28 01:11:05", "68.180.229.224", "43");
INSERT INTO `wp_gf_form_view` VALUES("31740", "10", "2016-05-28 01:11:05", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("31741", "3", "2016-05-28 02:08:05", "178.137.167.51", "55");
INSERT INTO `wp_gf_form_view` VALUES("31742", "3", "2016-05-28 02:08:05", "178.137.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("31743", "10", "2016-05-28 02:08:05", "178.137.167.51", "24");
INSERT INTO `wp_gf_form_view` VALUES("31744", "3", "2016-05-28 04:18:07", "207.46.13.44", "14");
INSERT INTO `wp_gf_form_view` VALUES("31745", "10", "2016-05-28 04:18:09", "207.46.13.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("31746", "3", "2016-05-28 05:09:13", "157.55.39.156", "15");
INSERT INTO `wp_gf_form_view` VALUES("31747", "10", "2016-05-28 05:09:15", "157.55.39.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("31748", "3", "2016-05-28 06:08:31", "66.249.66.78", "22");
INSERT INTO `wp_gf_form_view` VALUES("31749", "10", "2016-05-28 06:08:43", "66.249.66.78", "9");
INSERT INTO `wp_gf_form_view` VALUES("31750", "3", "2016-05-28 07:15:14", "66.249.66.81", "14");
INSERT INTO `wp_gf_form_view` VALUES("31751", "10", "2016-05-28 07:15:16", "66.249.66.81", "6");
INSERT INTO `wp_gf_form_view` VALUES("31752", "3", "2016-05-28 08:14:33", "66.249.66.78", "21");
INSERT INTO `wp_gf_form_view` VALUES("31753", "10", "2016-05-28 08:14:39", "66.249.66.78", "9");
INSERT INTO `wp_gf_form_view` VALUES("31754", "6", "2016-05-28 08:50:56", "40.77.167.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("31755", "3", "2016-05-28 09:14:51", "66.249.66.81", "56");
INSERT INTO `wp_gf_form_view` VALUES("31756", "10", "2016-05-28 09:14:53", "66.249.66.81", "24");
INSERT INTO `wp_gf_form_view` VALUES("31757", "3", "2016-05-28 10:06:54", "66.249.66.75", "35");
INSERT INTO `wp_gf_form_view` VALUES("31758", "10", "2016-05-28 10:06:54", "66.249.66.75", "17");
INSERT INTO `wp_gf_form_view` VALUES("31759", "3", "2016-05-28 11:24:39", "207.46.13.1", "30");
INSERT INTO `wp_gf_form_view` VALUES("31760", "10", "2016-05-28 11:24:42", "207.46.13.1", "12");
INSERT INTO `wp_gf_form_view` VALUES("31761", "3", "2016-05-28 12:05:01", "202.46.51.27", "61");
INSERT INTO `wp_gf_form_view` VALUES("31762", "10", "2016-05-28 12:05:02", "202.46.51.27", "24");
INSERT INTO `wp_gf_form_view` VALUES("31763", "3", "2016-05-28 13:07:40", "68.180.229.224", "22");
INSERT INTO `wp_gf_form_view` VALUES("31764", "10", "2016-05-28 13:07:42", "68.180.229.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("31765", "3", "2016-05-28 15:02:11", "157.55.39.155", "28");
INSERT INTO `wp_gf_form_view` VALUES("31766", "10", "2016-05-28 15:02:12", "157.55.39.155", "13");
INSERT INTO `wp_gf_form_view` VALUES("31767", "6", "2016-05-28 15:09:44", "144.76.153.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("31768", "3", "2016-05-28 16:04:39", "131.253.26.250", "30");
INSERT INTO `wp_gf_form_view` VALUES("31769", "10", "2016-05-28 16:04:40", "131.253.26.250", "12");
INSERT INTO `wp_gf_form_view` VALUES("31770", "1", "2016-05-28 16:30:05", "192.249.67.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("31771", "10", "2016-05-28 17:16:41", "207.46.13.1", "17");
INSERT INTO `wp_gf_form_view` VALUES("31772", "3", "2016-05-28 17:16:51", "207.46.13.1", "35");
INSERT INTO `wp_gf_form_view` VALUES("31773", "3", "2016-05-28 18:08:45", "46.118.121.215", "84");
INSERT INTO `wp_gf_form_view` VALUES("31774", "3", "2016-05-28 18:08:45", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("31775", "10", "2016-05-28 18:08:47", "46.118.121.215", "35");
INSERT INTO `wp_gf_form_view` VALUES("31776", "10", "2016-05-28 18:08:47", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("31777", "6", "2016-05-28 19:04:06", "202.46.58.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("31778", "3", "2016-05-28 19:04:09", "202.46.58.165", "7");
INSERT INTO `wp_gf_form_view` VALUES("31779", "10", "2016-05-28 19:04:09", "202.46.58.165", "3");
INSERT INTO `wp_gf_form_view` VALUES("31780", "10", "2016-05-28 20:04:07", "199.16.156.124", "93");
INSERT INTO `wp_gf_form_view` VALUES("31781", "3", "2016-05-28 20:04:09", "199.16.156.124", "188");
INSERT INTO `wp_gf_form_view` VALUES("31782", "12", "2016-05-28 20:14:19", "24.244.23.223", "3");
INSERT INTO `wp_gf_form_view` VALUES("31783", "10", "2016-05-28 21:19:55", "184.66.254.133", "12");
INSERT INTO `wp_gf_form_view` VALUES("31784", "3", "2016-05-28 21:19:57", "184.66.254.133", "24");
INSERT INTO `wp_gf_form_view` VALUES("31785", "3", "2016-05-28 22:09:15", "66.249.79.169", "300");
INSERT INTO `wp_gf_form_view` VALUES("31786", "10", "2016-05-28 22:09:17", "66.249.79.169", "149");
INSERT INTO `wp_gf_form_view` VALUES("31787", "8", "2016-05-28 22:10:15", "157.55.39.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("31788", "9", "2016-05-28 22:10:46", "40.77.167.60", "3");
INSERT INTO `wp_gf_form_view` VALUES("31789", "7", "2016-05-28 22:11:57", "40.77.167.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("31790", "12", "2016-05-28 22:12:12", "40.77.167.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("31791", "3", "2016-05-28 23:12:15", "151.80.31.182", "17");
INSERT INTO `wp_gf_form_view` VALUES("31792", "10", "2016-05-28 23:12:21", "151.80.31.182", "7");
INSERT INTO `wp_gf_form_view` VALUES("31793", "3", "2016-05-29 00:46:22", "68.180.229.224", "6");
INSERT INTO `wp_gf_form_view` VALUES("31794", "10", "2016-05-29 00:46:24", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("31795", "3", "2016-05-29 01:13:23", "24.108.191.239", "19");
INSERT INTO `wp_gf_form_view` VALUES("31796", "10", "2016-05-29 01:13:27", "24.108.191.239", "6");
INSERT INTO `wp_gf_form_view` VALUES("31797", "3", "2016-05-29 02:30:19", "157.55.39.155", "7");
INSERT INTO `wp_gf_form_view` VALUES("31798", "10", "2016-05-29 02:30:20", "157.55.39.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("31799", "3", "2016-05-29 03:18:17", "157.55.39.155", "55");
INSERT INTO `wp_gf_form_view` VALUES("31800", "10", "2016-05-29 03:18:19", "157.55.39.155", "18");
INSERT INTO `wp_gf_form_view` VALUES("31801", "3", "2016-05-29 04:01:16", "199.21.99.202", "1858");
INSERT INTO `wp_gf_form_view` VALUES("31802", "10", "2016-05-29 04:01:16", "199.21.99.202", "638");
INSERT INTO `wp_gf_form_view` VALUES("31803", "1", "2016-05-29 04:19:03", "107.170.158.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("31804", "11", "2016-05-29 04:19:08", "107.170.158.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("31805", "5", "2016-05-29 04:24:17", "107.170.158.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("31806", "12", "2016-05-29 04:27:26", "107.170.158.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("31807", "6", "2016-05-29 04:34:19", "107.170.158.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("31808", "9", "2016-05-29 04:39:48", "107.170.158.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("31809", "3", "2016-05-29 05:00:05", "107.170.158.118", "1588");
INSERT INTO `wp_gf_form_view` VALUES("31810", "10", "2016-05-29 05:00:06", "107.170.158.118", "541");
INSERT INTO `wp_gf_form_view` VALUES("31811", "2", "2016-05-29 05:30:01", "107.170.158.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("31812", "8", "2016-05-29 05:30:37", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("31813", "3", "2016-05-29 07:08:39", "202.46.48.15", "12");
INSERT INTO `wp_gf_form_view` VALUES("31814", "10", "2016-05-29 07:08:42", "202.46.48.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("31815", "3", "2016-05-29 08:13:25", "183.160.122.104", "274");
INSERT INTO `wp_gf_form_view` VALUES("31816", "3", "2016-05-29 08:13:25", "183.160.122.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("31817", "10", "2016-05-29 08:13:25", "183.160.122.104", "90");
INSERT INTO `wp_gf_form_view` VALUES("31818", "11", "2016-05-29 08:13:27", "183.160.122.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("31819", "2", "2016-05-29 08:13:29", "183.160.122.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("31820", "12", "2016-05-29 08:13:38", "183.160.122.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("31821", "3", "2016-05-29 09:05:57", "207.46.13.167", "13");
INSERT INTO `wp_gf_form_view` VALUES("31822", "10", "2016-05-29 09:06:02", "207.46.13.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("31823", "3", "2016-05-29 10:12:03", "40.77.167.66", "25");
INSERT INTO `wp_gf_form_view` VALUES("31824", "10", "2016-05-29 10:12:04", "40.77.167.66", "8");
INSERT INTO `wp_gf_form_view` VALUES("31825", "3", "2016-05-29 11:21:05", "68.180.229.224", "6");
INSERT INTO `wp_gf_form_view` VALUES("31826", "10", "2016-05-29 11:21:10", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("31827", "3", "2016-05-29 12:11:20", "68.180.229.224", "14");
INSERT INTO `wp_gf_form_view` VALUES("31828", "10", "2016-05-29 12:11:22", "68.180.229.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("31829", "10", "2016-05-29 13:10:18", "199.16.156.124", "9");
INSERT INTO `wp_gf_form_view` VALUES("31830", "3", "2016-05-29 13:10:18", "199.16.156.124", "24");
INSERT INTO `wp_gf_form_view` VALUES("31831", "1", "2016-05-29 13:42:02", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("31832", "3", "2016-05-29 14:16:28", "68.180.229.224", "13");
INSERT INTO `wp_gf_form_view` VALUES("31833", "10", "2016-05-29 14:16:28", "68.180.229.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("31834", "3", "2016-05-29 15:26:53", "66.249.79.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("31835", "10", "2016-05-29 15:26:53", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("31836", "1", "2016-05-29 15:27:34", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("31837", "3", "2016-05-29 16:26:27", "220.181.108.187", "274");
INSERT INTO `wp_gf_form_view` VALUES("31838", "10", "2016-05-29 16:26:27", "220.181.108.187", "90");
INSERT INTO `wp_gf_form_view` VALUES("31839", "2", "2016-05-29 16:31:12", "158.69.225.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("31840", "12", "2016-05-29 16:31:28", "158.69.225.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("31841", "11", "2016-05-29 16:45:49", "95.143.36.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("31842", "3", "2016-05-29 17:09:45", "157.55.39.155", "397");
INSERT INTO `wp_gf_form_view` VALUES("31843", "10", "2016-05-29 17:09:45", "157.55.39.155", "132");
INSERT INTO `wp_gf_form_view` VALUES("31844", "1", "2016-05-29 17:18:27", "67.213.215.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("31845", "2", "2016-05-29 17:19:19", "217.18.245.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31846", "11", "2016-05-29 17:20:21", "71.212.31.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("31847", "12", "2016-05-29 17:22:00", "23.239.166.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("31848", "3", "2016-05-29 18:20:36", "101.96.11.35", "12");
INSERT INTO `wp_gf_form_view` VALUES("31849", "10", "2016-05-29 18:20:36", "101.96.11.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("31850", "10", "2016-05-29 19:38:38", "40.77.167.35", "21");
INSERT INTO `wp_gf_form_view` VALUES("31851", "3", "2016-05-29 19:38:40", "40.77.167.35", "62");
INSERT INTO `wp_gf_form_view` VALUES("31852", "3", "2016-05-29 20:24:36", "199.21.99.202", "43");
INSERT INTO `wp_gf_form_view` VALUES("31853", "10", "2016-05-29 20:24:36", "199.21.99.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("31854", "3", "2016-05-29 21:02:28", "207.46.13.64", "66");
INSERT INTO `wp_gf_form_view` VALUES("31855", "10", "2016-05-29 21:02:28", "207.46.13.64", "22");
INSERT INTO `wp_gf_form_view` VALUES("31856", "3", "2016-05-29 22:22:37", "202.46.57.184", "32");
INSERT INTO `wp_gf_form_view` VALUES("31857", "10", "2016-05-29 22:22:37", "202.46.57.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("31858", "3", "2016-05-29 23:18:22", "68.180.229.224", "31");
INSERT INTO `wp_gf_form_view` VALUES("31859", "10", "2016-05-29 23:18:22", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("31860", "3", "2016-05-30 00:33:12", "66.249.79.176", "39");
INSERT INTO `wp_gf_form_view` VALUES("31861", "10", "2016-05-30 00:33:13", "66.249.79.176", "14");
INSERT INTO `wp_gf_form_view` VALUES("31862", "3", "2016-05-30 01:11:46", "164.132.161.35", "103");
INSERT INTO `wp_gf_form_view` VALUES("31863", "10", "2016-05-30 01:11:46", "164.132.161.35", "34");
INSERT INTO `wp_gf_form_view` VALUES("31864", "10", "2016-05-30 02:42:19", "207.46.13.187", "7");
INSERT INTO `wp_gf_form_view` VALUES("31865", "3", "2016-05-30 02:42:19", "207.46.13.187", "18");
INSERT INTO `wp_gf_form_view` VALUES("31866", "3", "2016-05-30 03:03:34", "68.180.229.224", "48");
INSERT INTO `wp_gf_form_view` VALUES("31867", "10", "2016-05-30 03:03:35", "68.180.229.224", "17");
INSERT INTO `wp_gf_form_view` VALUES("31868", "3", "2016-05-30 04:15:11", "66.249.79.169", "30");
INSERT INTO `wp_gf_form_view` VALUES("31869", "10", "2016-05-30 04:15:11", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("31870", "9", "2016-05-30 04:19:42", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("31871", "3", "2016-05-30 05:33:07", "202.46.51.58", "6");
INSERT INTO `wp_gf_form_view` VALUES("31872", "10", "2016-05-30 05:33:07", "202.46.51.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("31873", "3", "2016-05-30 06:01:32", "66.249.79.162", "67");
INSERT INTO `wp_gf_form_view` VALUES("31874", "10", "2016-05-30 06:01:32", "66.249.79.162", "22");
INSERT INTO `wp_gf_form_view` VALUES("31875", "11", "2016-05-30 06:47:26", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("31876", "3", "2016-05-30 07:05:35", "66.249.79.176", "94");
INSERT INTO `wp_gf_form_view` VALUES("31877", "10", "2016-05-30 07:05:35", "66.249.79.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("31878", "3", "2016-05-30 08:05:09", "66.249.79.176", "38");
INSERT INTO `wp_gf_form_view` VALUES("31879", "10", "2016-05-30 08:05:09", "66.249.79.176", "12");
INSERT INTO `wp_gf_form_view` VALUES("31880", "3", "2016-05-30 09:06:36", "207.46.13.187", "13");
INSERT INTO `wp_gf_form_view` VALUES("31881", "10", "2016-05-30 09:06:36", "207.46.13.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("31882", "3", "2016-05-30 10:48:34", "178.137.167.51", "24");
INSERT INTO `wp_gf_form_view` VALUES("31883", "10", "2016-05-30 10:48:34", "178.137.167.51", "8");
INSERT INTO `wp_gf_form_view` VALUES("31884", "3", "2016-05-30 11:40:30", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("31885", "10", "2016-05-30 11:40:30", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("31886", "3", "2016-05-30 12:05:59", "202.46.52.143", "31");
INSERT INTO `wp_gf_form_view` VALUES("31887", "10", "2016-05-30 12:06:00", "202.46.52.143", "11");
INSERT INTO `wp_gf_form_view` VALUES("31888", "1", "2016-05-30 12:45:22", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("31889", "9", "2016-05-30 13:06:38", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("31890", "3", "2016-05-30 13:06:38", "66.249.79.162", "54");
INSERT INTO `wp_gf_form_view` VALUES("31891", "10", "2016-05-30 13:06:38", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("31892", "3", "2016-05-30 14:00:18", "157.55.39.10", "18");
INSERT INTO `wp_gf_form_view` VALUES("31893", "10", "2016-05-30 14:00:18", "157.55.39.10", "6");
INSERT INTO `wp_gf_form_view` VALUES("31894", "3", "2016-05-30 15:03:02", "87.106.143.171", "120");
INSERT INTO `wp_gf_form_view` VALUES("31895", "10", "2016-05-30 15:03:02", "87.106.143.171", "41");
INSERT INTO `wp_gf_form_view` VALUES("31896", "9", "2016-05-30 15:46:12", "131.137.245.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("31897", "3", "2016-05-30 16:02:41", "178.137.87.136", "142");
INSERT INTO `wp_gf_form_view` VALUES("31898", "10", "2016-05-30 16:02:42", "178.137.87.136", "46");
INSERT INTO `wp_gf_form_view` VALUES("31899", "12", "2016-05-30 16:48:21", "40.77.167.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("31900", "3", "2016-05-30 17:18:42", "40.77.167.68", "37");
INSERT INTO `wp_gf_form_view` VALUES("31901", "10", "2016-05-30 17:18:43", "40.77.167.68", "13");
INSERT INTO `wp_gf_form_view` VALUES("31902", "3", "2016-05-30 18:13:29", "40.77.167.35", "12");
INSERT INTO `wp_gf_form_view` VALUES("31903", "10", "2016-05-30 18:13:29", "40.77.167.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("31904", "3", "2016-05-30 19:14:35", "66.249.79.169", "32");
INSERT INTO `wp_gf_form_view` VALUES("31905", "10", "2016-05-30 19:14:35", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("31906", "10", "2016-05-30 20:01:30", "202.46.53.141", "79");
INSERT INTO `wp_gf_form_view` VALUES("31907", "3", "2016-05-30 20:01:30", "202.46.53.141", "238");
INSERT INTO `wp_gf_form_view` VALUES("31908", "11", "2016-05-30 20:31:52", "104.236.93.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("31909", "12", "2016-05-30 20:31:52", "104.236.93.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("31910", "2", "2016-05-30 20:31:53", "104.236.93.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("31911", "2", "2016-05-30 21:19:46", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("31912", "3", "2016-05-30 21:19:49", "40.77.167.35", "25");
INSERT INTO `wp_gf_form_view` VALUES("31913", "10", "2016-05-30 21:19:49", "40.77.167.35", "8");
INSERT INTO `wp_gf_form_view` VALUES("31914", "3", "2016-05-30 22:02:48", "202.46.48.17", "94");
INSERT INTO `wp_gf_form_view` VALUES("31915", "10", "2016-05-30 22:02:48", "202.46.48.17", "30");
INSERT INTO `wp_gf_form_view` VALUES("31916", "1", "2016-05-30 22:30:00", "223.240.127.49", "2");
INSERT INTO `wp_gf_form_view` VALUES("31917", "3", "2016-05-30 23:10:19", "220.181.108.182", "123");
INSERT INTO `wp_gf_form_view` VALUES("31918", "10", "2016-05-30 23:10:19", "220.181.108.182", "40");
INSERT INTO `wp_gf_form_view` VALUES("31919", "3", "2016-05-31 00:05:16", "40.77.167.75", "37");
INSERT INTO `wp_gf_form_view` VALUES("31920", "10", "2016-05-31 00:05:16", "40.77.167.75", "12");
INSERT INTO `wp_gf_form_view` VALUES("31921", "1", "2016-05-31 00:32:31", "77.75.78.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("31922", "12", "2016-05-31 01:24:23", "40.77.167.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("31923", "3", "2016-05-31 01:24:24", "40.77.167.68", "43");
INSERT INTO `wp_gf_form_view` VALUES("31924", "10", "2016-05-31 01:24:24", "40.77.167.68", "14");
INSERT INTO `wp_gf_form_view` VALUES("31925", "1", "2016-05-31 01:56:17", "54.153.92.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("31926", "3", "2016-05-31 02:04:33", "40.77.167.75", "43");
INSERT INTO `wp_gf_form_view` VALUES("31927", "10", "2016-05-31 02:04:33", "40.77.167.75", "14");
INSERT INTO `wp_gf_form_view` VALUES("31928", "3", "2016-05-31 03:10:46", "66.249.79.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("31929", "10", "2016-05-31 03:10:46", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("31930", "8", "2016-05-31 04:08:01", "157.55.39.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("31931", "3", "2016-05-31 04:08:02", "157.55.39.155", "96");
INSERT INTO `wp_gf_form_view` VALUES("31932", "10", "2016-05-31 04:08:02", "157.55.39.155", "33");
INSERT INTO `wp_gf_form_view` VALUES("31933", "3", "2016-05-31 05:39:18", "157.55.39.155", "39");
INSERT INTO `wp_gf_form_view` VALUES("31934", "10", "2016-05-31 05:39:18", "157.55.39.155", "12");
INSERT INTO `wp_gf_form_view` VALUES("31935", "3", "2016-05-31 06:22:43", "40.77.167.68", "53");
INSERT INTO `wp_gf_form_view` VALUES("31936", "10", "2016-05-31 06:22:43", "40.77.167.68", "18");
INSERT INTO `wp_gf_form_view` VALUES("31937", "3", "2016-05-31 07:03:37", "40.77.167.68", "63");
INSERT INTO `wp_gf_form_view` VALUES("31938", "10", "2016-05-31 07:03:37", "40.77.167.68", "22");
INSERT INTO `wp_gf_form_view` VALUES("31939", "3", "2016-05-31 08:25:06", "40.77.167.75", "38");
INSERT INTO `wp_gf_form_view` VALUES("31940", "10", "2016-05-31 08:25:06", "40.77.167.75", "12");
INSERT INTO `wp_gf_form_view` VALUES("31941", "3", "2016-05-31 09:02:26", "204.79.180.205", "55");
INSERT INTO `wp_gf_form_view` VALUES("31942", "10", "2016-05-31 09:02:26", "204.79.180.205", "18");
INSERT INTO `wp_gf_form_view` VALUES("31943", "3", "2016-05-31 10:03:29", "178.137.167.51", "60");
INSERT INTO `wp_gf_form_view` VALUES("31944", "10", "2016-05-31 10:03:29", "178.137.167.51", "20");
INSERT INTO `wp_gf_form_view` VALUES("31945", "3", "2016-05-31 11:20:05", "208.43.225.85", "74");
INSERT INTO `wp_gf_form_view` VALUES("31946", "10", "2016-05-31 11:20:06", "208.43.225.85", "24");
INSERT INTO `wp_gf_form_view` VALUES("31947", "3", "2016-05-31 12:11:38", "192.243.55.131", "42");
INSERT INTO `wp_gf_form_view` VALUES("31948", "10", "2016-05-31 12:11:39", "192.243.55.131", "12");
INSERT INTO `wp_gf_form_view` VALUES("31949", "3", "2016-05-31 13:01:34", "220.181.108.102", "23");
INSERT INTO `wp_gf_form_view` VALUES("31950", "10", "2016-05-31 13:01:34", "220.181.108.102", "6");
INSERT INTO `wp_gf_form_view` VALUES("31951", "11", "2016-05-31 13:58:01", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("31952", "3", "2016-05-31 14:15:49", "157.55.39.95", "25");
INSERT INTO `wp_gf_form_view` VALUES("31953", "10", "2016-05-31 14:15:49", "157.55.39.95", "8");
INSERT INTO `wp_gf_form_view` VALUES("31954", "10", "2016-05-31 15:10:47", "157.55.39.155", "13");
INSERT INTO `wp_gf_form_view` VALUES("31955", "3", "2016-05-31 15:10:48", "157.55.39.155", "36");
INSERT INTO `wp_gf_form_view` VALUES("31956", "3", "2016-05-31 16:30:15", "68.180.229.224", "26");
INSERT INTO `wp_gf_form_view` VALUES("31957", "10", "2016-05-31 16:30:16", "68.180.229.224", "8");
INSERT INTO `wp_gf_form_view` VALUES("31958", "3", "2016-05-31 17:17:46", "142.233.200.24", "30");
INSERT INTO `wp_gf_form_view` VALUES("31959", "10", "2016-05-31 17:17:46", "142.233.200.24", "10");
INSERT INTO `wp_gf_form_view` VALUES("31960", "3", "2016-05-31 18:10:01", "52.71.155.178", "72");
INSERT INTO `wp_gf_form_view` VALUES("31961", "10", "2016-05-31 18:10:03", "52.71.155.178", "24");
INSERT INTO `wp_gf_form_view` VALUES("31962", "3", "2016-05-31 19:02:33", "209.52.88.93", "78");
INSERT INTO `wp_gf_form_view` VALUES("31963", "10", "2016-05-31 19:02:33", "209.52.88.93", "26");
INSERT INTO `wp_gf_form_view` VALUES("31964", "1", "2016-05-31 19:08:42", "96.50.28.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("31965", "2", "2016-05-31 19:46:04", "99.233.161.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("31966", "3", "2016-05-31 20:10:28", "202.46.57.71", "18");
INSERT INTO `wp_gf_form_view` VALUES("31967", "10", "2016-05-31 20:10:29", "202.46.57.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("31968", "3", "2016-05-31 21:03:17", "207.46.13.169", "464");
INSERT INTO `wp_gf_form_view` VALUES("31969", "10", "2016-05-31 21:03:17", "207.46.13.169", "169");
INSERT INTO `wp_gf_form_view` VALUES("31970", "9", "2016-05-31 21:04:04", "40.77.167.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("31971", "6", "2016-05-31 21:04:35", "157.55.39.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("31972", "5", "2016-05-31 22:33:40", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("31973", "3", "2016-05-31 22:33:40", "68.180.229.224", "6");
INSERT INTO `wp_gf_form_view` VALUES("31974", "10", "2016-05-31 22:33:41", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("31975", "3", "2016-05-31 23:20:27", "195.22.127.196", "19");
INSERT INTO `wp_gf_form_view` VALUES("31976", "10", "2016-05-31 23:20:28", "195.22.127.196", "6");
INSERT INTO `wp_gf_form_view` VALUES("31977", "3", "2016-06-01 00:38:45", "96.54.196.51", "25");
INSERT INTO `wp_gf_form_view` VALUES("31978", "10", "2016-06-01 00:38:45", "96.54.196.51", "8");
INSERT INTO `wp_gf_form_view` VALUES("31979", "3", "2016-06-01 01:14:21", "68.180.229.224", "1830");
INSERT INTO `wp_gf_form_view` VALUES("31980", "10", "2016-06-01 01:14:21", "68.180.229.224", "635");
INSERT INTO `wp_gf_form_view` VALUES("31981", "11", "2016-06-01 01:27:20", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31982", "2", "2016-06-01 01:27:25", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31983", "12", "2016-06-01 01:28:58", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31984", "1", "2016-06-01 01:29:28", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31985", "8", "2016-06-01 01:33:49", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31986", "9", "2016-06-01 01:33:57", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31987", "5", "2016-06-01 01:34:41", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31988", "6", "2016-06-01 01:38:35", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31989", "3", "2016-06-01 02:00:01", "5.9.98.130", "3004");
INSERT INTO `wp_gf_form_view` VALUES("31990", "10", "2016-06-01 02:00:01", "5.9.98.130", "1022");
INSERT INTO `wp_gf_form_view` VALUES("31991", "11", "2016-06-01 02:30:27", "145.130.98.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("31992", "12", "2016-06-01 02:31:03", "145.130.98.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("31993", "2", "2016-06-01 02:31:40", "145.130.98.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("31994", "3", "2016-06-01 03:00:00", "5.9.98.130", "2040");
INSERT INTO `wp_gf_form_view` VALUES("31995", "10", "2016-06-01 03:00:01", "5.9.98.130", "754");
INSERT INTO `wp_gf_form_view` VALUES("31996", "3", "2016-06-01 04:00:00", "5.9.98.130", "4228");
INSERT INTO `wp_gf_form_view` VALUES("31997", "10", "2016-06-01 04:00:00", "5.9.98.130", "1602");
INSERT INTO `wp_gf_form_view` VALUES("31998", "9", "2016-06-01 04:54:00", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("31999", "3", "2016-06-01 05:34:40", "46.118.121.215", "48");
INSERT INTO `wp_gf_form_view` VALUES("32000", "10", "2016-06-01 05:34:41", "46.118.121.215", "15");
INSERT INTO `wp_gf_form_view` VALUES("32001", "10", "2016-06-01 05:34:41", "46.118.121.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("32002", "3", "2016-06-01 06:05:11", "192.243.55.138", "25");
INSERT INTO `wp_gf_form_view` VALUES("32003", "10", "2016-06-01 06:05:11", "192.243.55.138", "12");
INSERT INTO `wp_gf_form_view` VALUES("32004", "3", "2016-06-01 07:13:09", "204.79.180.37", "37");
INSERT INTO `wp_gf_form_view` VALUES("32005", "10", "2016-06-01 07:13:10", "204.79.180.37", "12");
INSERT INTO `wp_gf_form_view` VALUES("32006", "1", "2016-06-01 07:30:42", "54.173.182.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("32007", "3", "2016-06-01 08:17:25", "68.180.229.224", "55");
INSERT INTO `wp_gf_form_view` VALUES("32008", "10", "2016-06-01 08:17:25", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("32009", "3", "2016-06-01 09:01:15", "68.180.229.224", "38");
INSERT INTO `wp_gf_form_view` VALUES("32010", "10", "2016-06-01 09:01:15", "68.180.229.224", "14");
INSERT INTO `wp_gf_form_view` VALUES("32011", "1", "2016-06-01 09:22:41", "5.152.206.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("32012", "3", "2016-06-01 10:32:35", "77.75.78.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("32013", "10", "2016-06-01 10:32:35", "77.75.78.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("32014", "3", "2016-06-01 11:11:17", "66.249.79.162", "36");
INSERT INTO `wp_gf_form_view` VALUES("32015", "10", "2016-06-01 11:11:17", "66.249.79.162", "13");
INSERT INTO `wp_gf_form_view` VALUES("32016", "3", "2016-06-01 12:00:50", "66.249.79.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("32017", "10", "2016-06-01 12:00:51", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("32018", "3", "2016-06-01 13:03:04", "204.79.180.41", "37");
INSERT INTO `wp_gf_form_view` VALUES("32019", "10", "2016-06-01 13:03:04", "204.79.180.41", "12");
INSERT INTO `wp_gf_form_view` VALUES("32020", "3", "2016-06-01 14:09:40", "192.243.55.134", "6");
INSERT INTO `wp_gf_form_view` VALUES("32021", "10", "2016-06-01 14:09:40", "192.243.55.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("32022", "3", "2016-06-01 15:04:27", "66.249.79.169", "42");
INSERT INTO `wp_gf_form_view` VALUES("32023", "10", "2016-06-01 15:04:27", "66.249.79.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("32024", "1", "2016-06-01 15:07:44", "195.154.250.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("32025", "2", "2016-06-01 15:57:54", "202.46.57.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("32026", "3", "2016-06-01 16:05:32", "199.71.240.67", "24");
INSERT INTO `wp_gf_form_view` VALUES("32027", "10", "2016-06-01 16:05:32", "199.71.240.67", "8");
INSERT INTO `wp_gf_form_view` VALUES("32028", "3", "2016-06-01 17:14:06", "205.250.86.162", "72");
INSERT INTO `wp_gf_form_view` VALUES("32029", "10", "2016-06-01 17:14:06", "205.250.86.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("32030", "3", "2016-06-01 18:00:50", "184.66.252.127", "24");
INSERT INTO `wp_gf_form_view` VALUES("32031", "10", "2016-06-01 18:00:50", "184.66.252.127", "8");
INSERT INTO `wp_gf_form_view` VALUES("32032", "3", "2016-06-01 19:06:14", "66.249.79.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("32033", "10", "2016-06-01 19:06:14", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("32034", "3", "2016-06-01 20:04:35", "207.194.133.9", "24");
INSERT INTO `wp_gf_form_view` VALUES("32035", "10", "2016-06-01 20:04:35", "207.194.133.9", "8");
INSERT INTO `wp_gf_form_view` VALUES("32036", "3", "2016-06-01 21:05:12", "68.180.229.224", "86");
INSERT INTO `wp_gf_form_view` VALUES("32037", "10", "2016-06-01 21:05:13", "68.180.229.224", "26");
INSERT INTO `wp_gf_form_view` VALUES("32038", "3", "2016-06-01 22:26:24", "174.129.237.157", "6");
INSERT INTO `wp_gf_form_view` VALUES("32039", "10", "2016-06-01 22:26:24", "174.129.237.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("32040", "12", "2016-06-01 23:11:49", "24.108.184.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("32041", "3", "2016-06-01 23:11:49", "24.108.184.241", "69");
INSERT INTO `wp_gf_form_view` VALUES("32042", "10", "2016-06-01 23:11:49", "24.108.184.241", "22");
INSERT INTO `wp_gf_form_view` VALUES("32043", "2", "2016-06-01 23:15:50", "24.108.184.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("32044", "3", "2016-06-02 00:22:40", "199.21.99.202", "38");
INSERT INTO `wp_gf_form_view` VALUES("32045", "10", "2016-06-02 00:22:41", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("32046", "3", "2016-06-02 01:39:12", "202.46.54.96", "6");
INSERT INTO `wp_gf_form_view` VALUES("32047", "10", "2016-06-02 01:39:13", "202.46.54.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("32048", "1", "2016-06-02 02:26:00", "123.240.17.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32049", "3", "2016-06-02 02:26:00", "123.240.17.157", "54");
INSERT INTO `wp_gf_form_view` VALUES("32050", "10", "2016-06-02 02:26:00", "123.240.17.157", "18");
INSERT INTO `wp_gf_form_view` VALUES("32051", "1", "2016-06-02 03:02:05", "199.60.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("32052", "3", "2016-06-02 03:02:05", "199.60.104.18", "18");
INSERT INTO `wp_gf_form_view` VALUES("32053", "10", "2016-06-02 03:02:05", "199.60.104.18", "6");
INSERT INTO `wp_gf_form_view` VALUES("32054", "3", "2016-06-02 04:03:48", "46.118.121.215", "42");
INSERT INTO `wp_gf_form_view` VALUES("32055", "10", "2016-06-02 04:03:48", "46.118.121.215", "15");
INSERT INTO `wp_gf_form_view` VALUES("32056", "3", "2016-06-02 05:03:05", "70.67.169.7", "30");
INSERT INTO `wp_gf_form_view` VALUES("32057", "10", "2016-06-02 05:03:05", "70.67.169.7", "10");
INSERT INTO `wp_gf_form_view` VALUES("32058", "12", "2016-06-02 05:52:10", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32059", "3", "2016-06-02 06:01:44", "46.185.68.84", "48");
INSERT INTO `wp_gf_form_view` VALUES("32060", "10", "2016-06-02 06:01:45", "46.185.68.84", "16");
INSERT INTO `wp_gf_form_view` VALUES("32061", "3", "2016-06-02 07:30:26", "77.75.78.160", "24");
INSERT INTO `wp_gf_form_view` VALUES("32062", "10", "2016-06-02 07:30:28", "77.75.78.160", "8");
INSERT INTO `wp_gf_form_view` VALUES("32063", "3", "2016-06-02 08:22:37", "220.181.108.141", "39");
INSERT INTO `wp_gf_form_view` VALUES("32064", "10", "2016-06-02 08:22:37", "220.181.108.141", "12");
INSERT INTO `wp_gf_form_view` VALUES("32065", "1", "2016-06-02 08:23:27", "192.227.241.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("32066", "3", "2016-06-02 09:02:24", "144.76.80.151", "18");
INSERT INTO `wp_gf_form_view` VALUES("32067", "10", "2016-06-02 09:02:24", "144.76.80.151", "6");
INSERT INTO `wp_gf_form_view` VALUES("32068", "10", "2016-06-02 10:07:08", "68.180.229.224", "45");
INSERT INTO `wp_gf_form_view` VALUES("32069", "3", "2016-06-02 10:07:08", "68.180.229.224", "134");
INSERT INTO `wp_gf_form_view` VALUES("32070", "1", "2016-06-02 10:24:00", "5.34.246.13", "6");
INSERT INTO `wp_gf_form_view` VALUES("32071", "3", "2016-06-02 11:06:24", "178.137.87.136", "127");
INSERT INTO `wp_gf_form_view` VALUES("32072", "10", "2016-06-02 11:06:24", "178.137.87.136", "42");
INSERT INTO `wp_gf_form_view` VALUES("32073", "2", "2016-06-02 11:08:36", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32074", "1", "2016-06-02 11:29:48", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("32075", "11", "2016-06-02 11:31:40", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32076", "3", "2016-06-02 12:07:22", "51.255.65.85", "26");
INSERT INTO `wp_gf_form_view` VALUES("32077", "10", "2016-06-02 12:07:23", "51.255.65.85", "8");
INSERT INTO `wp_gf_form_view` VALUES("32078", "2", "2016-06-02 12:52:48", "202.46.50.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("32079", "3", "2016-06-02 13:45:25", "68.180.229.224", "12");
INSERT INTO `wp_gf_form_view` VALUES("32080", "10", "2016-06-02 13:45:25", "68.180.229.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("32081", "3", "2016-06-02 14:21:57", "46.118.121.215", "48");
INSERT INTO `wp_gf_form_view` VALUES("32082", "10", "2016-06-02 14:21:57", "46.118.121.215", "16");
INSERT INTO `wp_gf_form_view` VALUES("32083", "3", "2016-06-02 15:06:28", "157.55.39.155", "19");
INSERT INTO `wp_gf_form_view` VALUES("32084", "10", "2016-06-02 15:06:28", "157.55.39.155", "6");
INSERT INTO `wp_gf_form_view` VALUES("32085", "3", "2016-06-02 16:59:12", "24.108.28.160", "24");
INSERT INTO `wp_gf_form_view` VALUES("32086", "10", "2016-06-02 16:59:15", "24.108.28.160", "7");
INSERT INTO `wp_gf_form_view` VALUES("32087", "10", "2016-06-02 16:59:15", "24.108.28.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("32088", "3", "2016-06-02 17:06:58", "24.108.28.160", "60");
INSERT INTO `wp_gf_form_view` VALUES("32089", "10", "2016-06-02 17:06:58", "24.108.28.160", "20");
INSERT INTO `wp_gf_form_view` VALUES("32090", "3", "2016-06-02 18:00:24", "96.51.155.218", "30");
INSERT INTO `wp_gf_form_view` VALUES("32091", "10", "2016-06-02 18:00:24", "96.51.155.218", "12");
INSERT INTO `wp_gf_form_view` VALUES("32092", "3", "2016-06-02 19:13:17", "157.55.39.91", "18");
INSERT INTO `wp_gf_form_view` VALUES("32093", "10", "2016-06-02 19:13:18", "157.55.39.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("32094", "3", "2016-06-02 20:02:42", "45.32.129.200", "302");
INSERT INTO `wp_gf_form_view` VALUES("32095", "10", "2016-06-02 20:02:42", "45.32.129.200", "100");
INSERT INTO `wp_gf_form_view` VALUES("32096", "2", "2016-06-02 20:02:50", "45.32.129.200", "3");
INSERT INTO `wp_gf_form_view` VALUES("32097", "11", "2016-06-02 20:28:59", "24.108.180.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("32098", "3", "2016-06-02 21:00:16", "24.69.132.110", "68");
INSERT INTO `wp_gf_form_view` VALUES("32099", "10", "2016-06-02 21:00:16", "24.69.132.110", "22");
INSERT INTO `wp_gf_form_view` VALUES("32100", "1", "2016-06-02 21:16:35", "24.69.132.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("32101", "11", "2016-06-02 21:34:00", "157.55.39.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("32102", "3", "2016-06-02 22:26:55", "96.50.57.61", "24");
INSERT INTO `wp_gf_form_view` VALUES("32103", "10", "2016-06-02 22:26:55", "96.50.57.61", "8");
INSERT INTO `wp_gf_form_view` VALUES("32104", "3", "2016-06-02 23:58:11", "199.60.104.18", "6");
INSERT INTO `wp_gf_form_view` VALUES("32105", "10", "2016-06-02 23:58:12", "199.60.104.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("32106", "3", "2016-06-03 01:29:39", "157.55.39.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("32107", "10", "2016-06-03 01:29:40", "157.55.39.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("32108", "3", "2016-06-03 02:16:25", "66.249.79.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("32109", "10", "2016-06-03 02:16:25", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("32110", "3", "2016-06-03 03:25:49", "77.75.76.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("32111", "10", "2016-06-03 03:25:49", "77.75.76.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("32112", "3", "2016-06-03 04:13:26", "77.75.77.72", "98");
INSERT INTO `wp_gf_form_view` VALUES("32113", "10", "2016-06-03 04:13:26", "77.75.77.72", "32");
INSERT INTO `wp_gf_form_view` VALUES("32114", "1", "2016-06-03 04:35:04", "104.144.28.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("32115", "3", "2016-06-03 05:12:17", "40.77.167.61", "19");
INSERT INTO `wp_gf_form_view` VALUES("32116", "10", "2016-06-03 05:12:17", "40.77.167.61", "6");
INSERT INTO `wp_gf_form_view` VALUES("32117", "3", "2016-06-03 06:12:32", "99.199.0.86", "114");
INSERT INTO `wp_gf_form_view` VALUES("32118", "10", "2016-06-03 06:12:33", "99.199.0.86", "38");
INSERT INTO `wp_gf_form_view` VALUES("32119", "2", "2016-06-03 06:28:40", "45.32.129.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("32120", "3", "2016-06-03 07:04:49", "46.185.68.84", "300");
INSERT INTO `wp_gf_form_view` VALUES("32121", "10", "2016-06-03 07:04:49", "46.185.68.84", "99");
INSERT INTO `wp_gf_form_view` VALUES("32122", "2", "2016-06-03 07:22:43", "174.127.133.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("32123", "12", "2016-06-03 07:28:41", "174.127.133.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("32124", "3", "2016-06-03 08:00:11", "174.127.133.40", "92");
INSERT INTO `wp_gf_form_view` VALUES("32125", "10", "2016-06-03 08:00:11", "174.127.133.40", "35");
INSERT INTO `wp_gf_form_view` VALUES("32126", "3", "2016-06-03 09:06:40", "66.249.79.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("32127", "10", "2016-06-03 09:06:40", "66.249.79.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("32128", "3", "2016-06-03 10:08:04", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("32129", "10", "2016-06-03 10:08:04", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("32130", "12", "2016-06-03 10:35:22", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32131", "3", "2016-06-03 11:07:02", "68.180.229.224", "32");
INSERT INTO `wp_gf_form_view` VALUES("32132", "10", "2016-06-03 11:07:03", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("32133", "3", "2016-06-03 12:05:32", "184.66.32.165", "24");
INSERT INTO `wp_gf_form_view` VALUES("32134", "10", "2016-06-03 12:05:32", "184.66.32.165", "8");
INSERT INTO `wp_gf_form_view` VALUES("32135", "8", "2016-06-03 12:06:42", "40.77.167.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("32136", "3", "2016-06-03 13:43:30", "202.46.48.145", "13");
INSERT INTO `wp_gf_form_view` VALUES("32137", "10", "2016-06-03 13:43:31", "202.46.48.145", "4");
INSERT INTO `wp_gf_form_view` VALUES("32138", "3", "2016-06-03 14:50:26", "202.46.53.176", "6");
INSERT INTO `wp_gf_form_view` VALUES("32139", "10", "2016-06-03 14:50:26", "202.46.53.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("32140", "3", "2016-06-03 15:39:09", "99.199.1.80", "7");
INSERT INTO `wp_gf_form_view` VALUES("32141", "10", "2016-06-03 15:39:11", "99.199.1.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("32142", "3", "2016-06-03 16:06:51", "77.75.78.160", "48");
INSERT INTO `wp_gf_form_view` VALUES("32143", "10", "2016-06-03 16:06:51", "77.75.78.160", "16");
INSERT INTO `wp_gf_form_view` VALUES("32144", "3", "2016-06-03 17:07:55", "184.69.3.198", "13");
INSERT INTO `wp_gf_form_view` VALUES("32145", "10", "2016-06-03 17:07:57", "184.69.3.198", "4");
INSERT INTO `wp_gf_form_view` VALUES("32146", "3", "2016-06-03 18:05:06", "46.185.68.84", "36");
INSERT INTO `wp_gf_form_view` VALUES("32147", "10", "2016-06-03 18:05:06", "46.185.68.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("32148", "3", "2016-06-03 19:08:12", "77.75.76.170", "78");
INSERT INTO `wp_gf_form_view` VALUES("32149", "10", "2016-06-03 19:08:16", "77.75.76.170", "26");
INSERT INTO `wp_gf_form_view` VALUES("32150", "11", "2016-06-03 19:20:16", "70.75.241.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("32151", "3", "2016-06-03 20:13:04", "99.199.0.86", "78");
INSERT INTO `wp_gf_form_view` VALUES("32152", "10", "2016-06-03 20:13:07", "99.199.0.86", "26");
INSERT INTO `wp_gf_form_view` VALUES("32153", "11", "2016-06-03 20:21:51", "52.71.155.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("32154", "5", "2016-06-03 20:33:34", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("32155", "3", "2016-06-03 21:01:07", "40.77.167.31", "424");
INSERT INTO `wp_gf_form_view` VALUES("32156", "10", "2016-06-03 21:01:07", "40.77.167.31", "140");
INSERT INTO `wp_gf_form_view` VALUES("32157", "9", "2016-06-03 21:01:19", "40.77.167.31", "3");
INSERT INTO `wp_gf_form_view` VALUES("32158", "8", "2016-06-03 21:01:39", "40.77.167.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("32159", "5", "2016-06-03 21:02:01", "40.77.167.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("32160", "12", "2016-06-03 21:02:28", "40.77.167.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("32161", "7", "2016-06-03 21:02:54", "40.77.167.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("32162", "3", "2016-06-03 22:07:05", "207.46.13.191", "146");
INSERT INTO `wp_gf_form_view` VALUES("32163", "10", "2016-06-03 22:07:06", "207.46.13.191", "48");
INSERT INTO `wp_gf_form_view` VALUES("32164", "1", "2016-06-03 22:32:00", "82.211.50.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("32165", "11", "2016-06-03 22:36:25", "13.82.27.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("32166", "2", "2016-06-03 22:36:27", "13.82.27.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("32167", "3", "2016-06-03 23:45:11", "77.75.78.166", "12");
INSERT INTO `wp_gf_form_view` VALUES("32168", "10", "2016-06-03 23:45:11", "77.75.78.166", "4");
INSERT INTO `wp_gf_form_view` VALUES("32169", "9", "2016-06-04 00:28:23", "51.255.65.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("32170", "3", "2016-06-04 00:28:23", "51.255.65.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("32171", "10", "2016-06-04 00:28:23", "51.255.65.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("32172", "3", "2016-06-04 01:01:58", "40.77.167.41", "30");
INSERT INTO `wp_gf_form_view` VALUES("32173", "10", "2016-06-04 01:01:58", "40.77.167.41", "10");
INSERT INTO `wp_gf_form_view` VALUES("32174", "3", "2016-06-04 02:14:35", "68.180.229.224", "30");
INSERT INTO `wp_gf_form_view` VALUES("32175", "10", "2016-06-04 02:14:35", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("32176", "1", "2016-06-04 02:18:56", "23.105.159.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("32177", "8", "2016-06-04 04:08:11", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("32178", "3", "2016-06-04 04:08:13", "66.249.79.169", "42");
INSERT INTO `wp_gf_form_view` VALUES("32179", "10", "2016-06-04 04:08:14", "66.249.79.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("32180", "12", "2016-06-04 05:08:01", "40.77.167.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("32181", "3", "2016-06-04 05:08:01", "40.77.167.61", "395");
INSERT INTO `wp_gf_form_view` VALUES("32182", "10", "2016-06-04 05:08:01", "40.77.167.61", "132");
INSERT INTO `wp_gf_form_view` VALUES("32183", "11", "2016-06-04 05:35:38", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("32184", "2", "2016-06-04 05:35:42", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("32185", "1", "2016-06-04 05:38:10", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("32186", "3", "2016-06-04 06:14:23", "77.75.78.160", "36");
INSERT INTO `wp_gf_form_view` VALUES("32187", "10", "2016-06-04 06:14:24", "77.75.78.160", "12");
INSERT INTO `wp_gf_form_view` VALUES("32188", "3", "2016-06-04 07:00:58", "68.146.244.134", "24");
INSERT INTO `wp_gf_form_view` VALUES("32189", "10", "2016-06-04 07:00:58", "68.146.244.134", "8");
INSERT INTO `wp_gf_form_view` VALUES("32190", "11", "2016-06-04 07:07:46", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("32191", "2", "2016-06-04 07:45:38", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("32192", "3", "2016-06-04 08:13:40", "24.68.33.174", "110");
INSERT INTO `wp_gf_form_view` VALUES("32193", "10", "2016-06-04 08:13:40", "24.68.33.174", "36");
INSERT INTO `wp_gf_form_view` VALUES("32194", "11", "2016-06-04 08:15:50", "130.211.119.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("32195", "2", "2016-06-04 08:15:52", "130.211.119.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("32196", "3", "2016-06-04 09:02:12", "202.46.54.168", "31");
INSERT INTO `wp_gf_form_view` VALUES("32197", "10", "2016-06-04 09:02:12", "202.46.54.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("32198", "1", "2016-06-04 09:18:05", "195.154.250.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("32199", "1", "2016-06-04 10:03:32", "192.99.166.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("32200", "3", "2016-06-04 10:03:32", "192.99.166.236", "13");
INSERT INTO `wp_gf_form_view` VALUES("32201", "10", "2016-06-04 10:03:32", "192.99.166.236", "4");
INSERT INTO `wp_gf_form_view` VALUES("32202", "3", "2016-06-04 11:13:55", "130.185.155.82", "12");
INSERT INTO `wp_gf_form_view` VALUES("32203", "10", "2016-06-04 11:13:55", "130.185.155.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("32204", "3", "2016-06-04 12:03:46", "68.180.229.224", "20");
INSERT INTO `wp_gf_form_view` VALUES("32205", "10", "2016-06-04 12:03:46", "68.180.229.224", "6");
INSERT INTO `wp_gf_form_view` VALUES("32206", "3", "2016-06-04 13:03:09", "207.46.13.125", "19");
INSERT INTO `wp_gf_form_view` VALUES("32207", "10", "2016-06-04 13:03:09", "207.46.13.125", "6");
INSERT INTO `wp_gf_form_view` VALUES("32208", "10", "2016-06-04 14:12:20", "207.46.13.5", "3");
INSERT INTO `wp_gf_form_view` VALUES("32209", "3", "2016-06-04 14:12:20", "207.46.13.5", "6");
INSERT INTO `wp_gf_form_view` VALUES("32210", "3", "2016-06-04 15:03:41", "5.9.89.170", "122");
INSERT INTO `wp_gf_form_view` VALUES("32211", "10", "2016-06-04 15:03:41", "5.9.89.170", "40");
INSERT INTO `wp_gf_form_view` VALUES("32212", "12", "2016-06-04 15:29:01", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32213", "3", "2016-06-04 16:07:31", "174.129.237.157", "102");
INSERT INTO `wp_gf_form_view` VALUES("32214", "10", "2016-06-04 16:07:31", "174.129.237.157", "34");
INSERT INTO `wp_gf_form_view` VALUES("32215", "3", "2016-06-04 17:16:32", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("32216", "10", "2016-06-04 17:16:34", "68.180.229.224", "6");
INSERT INTO `wp_gf_form_view` VALUES("32217", "3", "2016-06-04 18:16:50", "157.55.39.2", "39");
INSERT INTO `wp_gf_form_view` VALUES("32218", "10", "2016-06-04 18:16:51", "157.55.39.2", "13");
INSERT INTO `wp_gf_form_view` VALUES("32219", "3", "2016-06-04 19:02:18", "178.137.19.16", "48");
INSERT INTO `wp_gf_form_view` VALUES("32220", "10", "2016-06-04 19:02:18", "178.137.19.16", "17");
INSERT INTO `wp_gf_form_view` VALUES("32221", "10", "2016-06-04 20:02:11", "157.55.39.2", "29");
INSERT INTO `wp_gf_form_view` VALUES("32222", "3", "2016-06-04 20:02:11", "157.55.39.2", "79");
INSERT INTO `wp_gf_form_view` VALUES("32223", "3", "2016-06-04 21:18:50", "202.46.54.90", "24");
INSERT INTO `wp_gf_form_view` VALUES("32224", "10", "2016-06-04 21:18:54", "202.46.54.90", "8");
INSERT INTO `wp_gf_form_view` VALUES("32225", "3", "2016-06-04 22:06:49", "68.180.229.224", "224");
INSERT INTO `wp_gf_form_view` VALUES("32226", "10", "2016-06-04 22:06:49", "68.180.229.224", "74");
INSERT INTO `wp_gf_form_view` VALUES("32227", "11", "2016-06-04 22:54:48", "79.159.251.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("32228", "12", "2016-06-04 22:55:24", "79.159.251.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("32229", "2", "2016-06-04 22:56:04", "79.159.251.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("32230", "10", "2016-06-04 23:24:26", "40.77.167.87", "5");
INSERT INTO `wp_gf_form_view` VALUES("32231", "3", "2016-06-04 23:24:26", "40.77.167.87", "12");
INSERT INTO `wp_gf_form_view` VALUES("32232", "2", "2016-06-05 00:04:23", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32233", "3", "2016-06-05 00:04:23", "68.180.229.224", "95");
INSERT INTO `wp_gf_form_view` VALUES("32234", "10", "2016-06-05 00:04:23", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("32235", "6", "2016-06-05 00:17:25", "136.243.17.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("32236", "10", "2016-06-05 01:06:54", "202.46.48.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("32237", "3", "2016-06-05 01:06:54", "202.46.48.149", "10");
INSERT INTO `wp_gf_form_view` VALUES("32238", "10", "2016-06-05 02:13:52", "202.46.52.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("32239", "3", "2016-06-05 02:13:52", "202.46.52.175", "10");
INSERT INTO `wp_gf_form_view` VALUES("32240", "3", "2016-06-05 03:17:07", "24.68.17.97", "21");
INSERT INTO `wp_gf_form_view` VALUES("32241", "10", "2016-06-05 03:17:07", "24.68.17.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("32242", "12", "2016-06-05 03:17:31", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("32243", "3", "2016-06-05 04:20:33", "40.77.167.31", "16");
INSERT INTO `wp_gf_form_view` VALUES("32244", "10", "2016-06-05 04:20:33", "40.77.167.31", "3");
INSERT INTO `wp_gf_form_view` VALUES("32245", "10", "2016-06-05 05:05:32", "46.118.125.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("32246", "3", "2016-06-05 05:05:32", "46.118.125.82", "20");
INSERT INTO `wp_gf_form_view` VALUES("32247", "3", "2016-06-05 07:07:41", "75.156.75.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("32248", "10", "2016-06-05 07:07:42", "75.156.75.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("32249", "10", "2016-06-05 08:11:12", "66.249.79.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("32250", "3", "2016-06-05 08:11:13", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("32251", "6", "2016-06-05 09:09:14", "202.46.53.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("32252", "10", "2016-06-05 09:09:14", "202.46.53.167", "3");
INSERT INTO `wp_gf_form_view` VALUES("32253", "3", "2016-06-05 09:09:14", "202.46.53.167", "15");
INSERT INTO `wp_gf_form_view` VALUES("32254", "10", "2016-06-05 10:13:57", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("32255", "3", "2016-06-05 10:13:57", "66.249.79.162", "22");
INSERT INTO `wp_gf_form_view` VALUES("32256", "10", "2016-06-05 11:17:48", "68.180.229.224", "7");
INSERT INTO `wp_gf_form_view` VALUES("32257", "3", "2016-06-05 11:17:49", "68.180.229.224", "37");
INSERT INTO `wp_gf_form_view` VALUES("32258", "3", "2016-06-05 12:09:13", "68.180.229.224", "16");
INSERT INTO `wp_gf_form_view` VALUES("32259", "10", "2016-06-05 12:09:14", "68.180.229.224", "3");
INSERT INTO `wp_gf_form_view` VALUES("32260", "10", "2016-06-05 13:36:38", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("32261", "3", "2016-06-05 13:36:38", "66.249.79.162", "10");
INSERT INTO `wp_gf_form_view` VALUES("32262", "1", "2016-06-05 13:42:11", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("32263", "10", "2016-06-05 14:22:40", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("32264", "3", "2016-06-05 14:22:41", "68.180.229.224", "50");
INSERT INTO `wp_gf_form_view` VALUES("32265", "10", "2016-06-05 15:07:16", "207.46.13.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("32266", "3", "2016-06-05 15:07:17", "207.46.13.58", "25");
INSERT INTO `wp_gf_form_view` VALUES("32267", "10", "2016-06-05 16:05:42", "202.46.48.99", "5");
INSERT INTO `wp_gf_form_view` VALUES("32268", "3", "2016-06-05 16:05:42", "202.46.48.99", "26");
INSERT INTO `wp_gf_form_view` VALUES("32269", "10", "2016-06-05 17:04:37", "199.59.148.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("32270", "3", "2016-06-05 17:04:37", "199.59.148.210", "15");
INSERT INTO `wp_gf_form_view` VALUES("32271", "10", "2016-06-05 18:01:15", "96.50.3.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("32272", "3", "2016-06-05 18:01:15", "96.50.3.227", "10");
INSERT INTO `wp_gf_form_view` VALUES("32273", "10", "2016-06-05 19:20:07", "66.249.79.162", "63");
INSERT INTO `wp_gf_form_view` VALUES("32274", "3", "2016-06-05 19:20:12", "66.249.79.162", "315");
INSERT INTO `wp_gf_form_view` VALUES("32275", "9", "2016-06-05 19:30:03", "207.46.13.136", "3");
INSERT INTO `wp_gf_form_view` VALUES("32276", "12", "2016-06-05 19:30:09", "207.46.13.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("32277", "7", "2016-06-05 19:30:34", "207.46.13.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("32278", "8", "2016-06-05 19:31:59", "207.46.13.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("32279", "5", "2016-06-05 19:32:18", "207.46.13.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("32280", "10", "2016-06-05 20:47:10", "77.75.79.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("32281", "3", "2016-06-05 20:47:17", "77.75.79.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("32282", "10", "2016-06-05 21:08:47", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("32283", "3", "2016-06-05 21:08:48", "66.249.79.162", "41");
INSERT INTO `wp_gf_form_view` VALUES("32284", "9", "2016-06-05 21:38:26", "157.55.39.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("32285", "1", "2016-06-05 21:55:36", "58.213.41.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("32286", "10", "2016-06-05 22:27:01", "96.54.244.255", "17");
INSERT INTO `wp_gf_form_view` VALUES("32287", "3", "2016-06-05 22:27:01", "96.54.244.255", "85");
INSERT INTO `wp_gf_form_view` VALUES("32288", "10", "2016-06-05 23:06:10", "178.137.90.153", "5");
INSERT INTO `wp_gf_form_view` VALUES("32289", "3", "2016-06-05 23:06:10", "178.137.90.153", "25");
INSERT INTO `wp_gf_form_view` VALUES("32290", "3", "2016-06-06 00:30:33", "66.249.79.162", "26");
INSERT INTO `wp_gf_form_view` VALUES("32291", "10", "2016-06-06 00:30:35", "66.249.79.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("32292", "10", "2016-06-06 01:10:04", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("32293", "3", "2016-06-06 01:10:04", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("32294", "3", "2016-06-06 02:00:32", "207.46.13.58", "38");
INSERT INTO `wp_gf_form_view` VALUES("32295", "10", "2016-06-06 02:00:32", "207.46.13.58", "7");
INSERT INTO `wp_gf_form_view` VALUES("32296", "10", "2016-06-06 03:08:49", "164.132.161.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("32297", "3", "2016-06-06 03:08:50", "164.132.161.84", "5");
INSERT INTO `wp_gf_form_view` VALUES("32298", "3", "2016-06-06 04:01:18", "68.180.229.224", "33");
INSERT INTO `wp_gf_form_view` VALUES("32299", "10", "2016-06-06 04:17:28", "154.5.208.128", "7");
INSERT INTO `wp_gf_form_view` VALUES("32300", "3", "2016-06-06 05:25:43", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("32301", "10", "2016-06-06 05:25:44", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("32302", "1", "2016-06-06 05:36:47", "123.240.17.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32303", "10", "2016-06-06 06:28:55", "216.232.150.26", "5");
INSERT INTO `wp_gf_form_view` VALUES("32304", "3", "2016-06-06 06:28:57", "216.232.150.26", "24");
INSERT INTO `wp_gf_form_view` VALUES("32305", "3", "2016-06-06 06:28:57", "216.232.150.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("32306", "1", "2016-06-06 07:10:35", "107.189.36.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("32307", "10", "2016-06-06 07:10:35", "107.189.36.6", "7");
INSERT INTO `wp_gf_form_view` VALUES("32308", "3", "2016-06-06 07:10:35", "107.189.36.6", "36");
INSERT INTO `wp_gf_form_view` VALUES("32309", "10", "2016-06-06 08:38:36", "51.255.65.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("32310", "3", "2016-06-06 08:38:36", "51.255.65.63", "5");
INSERT INTO `wp_gf_form_view` VALUES("32311", "10", "2016-06-06 09:21:02", "178.137.90.153", "7");
INSERT INTO `wp_gf_form_view` VALUES("32312", "3", "2016-06-06 09:21:02", "178.137.90.153", "34");
INSERT INTO `wp_gf_form_view` VALUES("32313", "3", "2016-06-06 09:21:02", "178.137.90.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("32314", "10", "2016-06-06 10:00:57", "77.75.77.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("32315", "3", "2016-06-06 10:00:57", "77.75.77.62", "23");
INSERT INTO `wp_gf_form_view` VALUES("32316", "3", "2016-06-06 11:15:40", "68.180.229.224", "21");
INSERT INTO `wp_gf_form_view` VALUES("32317", "10", "2016-06-06 11:15:41", "68.180.229.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("32318", "1", "2016-06-06 11:35:27", "123.240.17.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32319", "3", "2016-06-06 12:03:00", "157.55.39.73", "41");
INSERT INTO `wp_gf_form_view` VALUES("32320", "10", "2016-06-06 12:03:01", "157.55.39.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("32321", "3", "2016-06-06 13:14:33", "68.180.229.224", "46");
INSERT INTO `wp_gf_form_view` VALUES("32322", "10", "2016-06-06 13:14:33", "68.180.229.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("32323", "10", "2016-06-06 14:19:24", "66.249.69.250", "4");
INSERT INTO `wp_gf_form_view` VALUES("32324", "3", "2016-06-06 14:19:24", "66.249.69.250", "21");
INSERT INTO `wp_gf_form_view` VALUES("32325", "10", "2016-06-06 15:08:20", "99.199.1.80", "24");
INSERT INTO `wp_gf_form_view` VALUES("32326", "3", "2016-06-06 15:08:20", "99.199.1.80", "75");
INSERT INTO `wp_gf_form_view` VALUES("32327", "10", "2016-06-06 16:02:42", "66.249.69.250", "9");
INSERT INTO `wp_gf_form_view` VALUES("32328", "3", "2016-06-06 16:02:42", "66.249.69.250", "45");
INSERT INTO `wp_gf_form_view` VALUES("32329", "11", "2016-06-06 16:47:01", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32330", "9", "2016-06-06 17:23:05", "207.46.13.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("32331", "10", "2016-06-06 17:23:06", "207.46.13.131", "12");
INSERT INTO `wp_gf_form_view` VALUES("32332", "3", "2016-06-06 17:23:06", "207.46.13.131", "64");
INSERT INTO `wp_gf_form_view` VALUES("32333", "10", "2016-06-06 18:00:10", "202.46.57.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("32334", "3", "2016-06-06 18:00:10", "202.46.57.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("32335", "10", "2016-06-06 19:00:35", "77.75.79.62", "8");
INSERT INTO `wp_gf_form_view` VALUES("32336", "3", "2016-06-06 19:00:35", "77.75.79.62", "42");
INSERT INTO `wp_gf_form_view` VALUES("32337", "10", "2016-06-06 20:10:03", "68.180.229.224", "3");
INSERT INTO `wp_gf_form_view` VALUES("32338", "3", "2016-06-06 20:10:04", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("32339", "10", "2016-06-06 21:30:50", "68.180.229.224", "17");
INSERT INTO `wp_gf_form_view` VALUES("32340", "3", "2016-06-06 21:30:52", "68.180.229.224", "85");
INSERT INTO `wp_gf_form_view` VALUES("32341", "10", "2016-06-06 22:16:01", "207.6.162.114", "9");
INSERT INTO `wp_gf_form_view` VALUES("32342", "3", "2016-06-06 22:16:02", "207.6.162.114", "46");
INSERT INTO `wp_gf_form_view` VALUES("32343", "12", "2016-06-06 22:20:14", "207.6.162.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("32344", "10", "2016-06-06 23:03:45", "183.91.33.76", "15");
INSERT INTO `wp_gf_form_view` VALUES("32345", "3", "2016-06-06 23:03:46", "183.91.33.76", "71");
INSERT INTO `wp_gf_form_view` VALUES("32346", "10", "2016-06-07 00:04:21", "66.249.75.37", "8");
INSERT INTO `wp_gf_form_view` VALUES("32347", "3", "2016-06-07 00:04:21", "66.249.75.37", "40");
INSERT INTO `wp_gf_form_view` VALUES("32348", "11", "2016-06-07 00:18:17", "77.75.78.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("32349", "3", "2016-06-07 01:24:23", "77.75.78.172", "30");
INSERT INTO `wp_gf_form_view` VALUES("32350", "10", "2016-06-07 01:24:23", "77.75.78.172", "5");
INSERT INTO `wp_gf_form_view` VALUES("32351", "10", "2016-06-07 02:00:50", "52.71.155.178", "4");
INSERT INTO `wp_gf_form_view` VALUES("32352", "3", "2016-06-07 02:00:50", "52.71.155.178", "20");
INSERT INTO `wp_gf_form_view` VALUES("32353", "10", "2016-06-07 03:21:26", "157.55.39.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("32354", "3", "2016-06-07 03:21:27", "157.55.39.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("32355", "10", "2016-06-07 04:33:15", "164.132.161.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("32356", "3", "2016-06-07 04:33:15", "164.132.161.38", "10");
INSERT INTO `wp_gf_form_view` VALUES("32357", "1", "2016-06-07 04:39:03", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("32358", "10", "2016-06-07 05:11:36", "154.20.91.143", "13");
INSERT INTO `wp_gf_form_view` VALUES("32359", "10", "2016-06-07 05:11:36", "154.20.91.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("32360", "3", "2016-06-07 05:11:45", "154.20.91.143", "69");
INSERT INTO `wp_gf_form_view` VALUES("32361", "3", "2016-06-07 05:11:45", "154.20.91.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("32362", "10", "2016-06-07 06:03:35", "66.249.75.53", "11");
INSERT INTO `wp_gf_form_view` VALUES("32363", "3", "2016-06-07 06:03:37", "66.249.75.53", "56");
INSERT INTO `wp_gf_form_view` VALUES("32364", "12", "2016-06-07 07:03:16", "66.249.75.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("32365", "10", "2016-06-07 07:03:17", "66.249.75.37", "7");
INSERT INTO `wp_gf_form_view` VALUES("32366", "3", "2016-06-07 07:03:17", "66.249.75.37", "39");
INSERT INTO `wp_gf_form_view` VALUES("32367", "10", "2016-06-07 08:19:55", "77.75.76.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("32368", "3", "2016-06-07 08:19:56", "77.75.76.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("32369", "8", "2016-06-07 08:54:35", "151.80.31.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("32370", "10", "2016-06-07 09:24:55", "207.46.13.29", "6");
INSERT INTO `wp_gf_form_view` VALUES("32371", "3", "2016-06-07 09:24:57", "207.46.13.29", "30");
INSERT INTO `wp_gf_form_view` VALUES("32372", "10", "2016-06-07 10:17:22", "77.75.79.36", "36");
INSERT INTO `wp_gf_form_view` VALUES("32373", "3", "2016-06-07 10:17:22", "77.75.79.36", "170");
INSERT INTO `wp_gf_form_view` VALUES("32374", "9", "2016-06-07 10:28:21", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("32375", "12", "2016-06-07 10:38:35", "207.46.13.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("32376", "7", "2016-06-07 10:38:51", "207.46.13.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("32377", "10", "2016-06-07 11:32:41", "178.137.90.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("32378", "3", "2016-06-07 11:32:41", "178.137.90.153", "10");
INSERT INTO `wp_gf_form_view` VALUES("32379", "10", "2016-06-07 12:47:29", "216.171.102.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("32380", "3", "2016-06-07 12:47:29", "216.171.102.210", "5");
INSERT INTO `wp_gf_form_view` VALUES("32381", "10", "2016-06-07 13:30:42", "51.255.65.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("32382", "3", "2016-06-07 13:30:42", "51.255.65.60", "10");
INSERT INTO `wp_gf_form_view` VALUES("32383", "1", "2016-06-07 14:45:55", "67.17.36.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("32384", "10", "2016-06-07 14:45:55", "67.17.36.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("32385", "3", "2016-06-07 14:45:55", "67.17.36.228", "15");
INSERT INTO `wp_gf_form_view` VALUES("32386", "10", "2016-06-07 15:09:53", "66.249.75.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("32387", "3", "2016-06-07 15:09:53", "66.249.75.45", "20");
INSERT INTO `wp_gf_form_view` VALUES("32388", "1", "2016-06-07 16:01:27", "91.200.12.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("32389", "10", "2016-06-07 16:01:27", "91.200.12.76", "9");
INSERT INTO `wp_gf_form_view` VALUES("32390", "3", "2016-06-07 16:01:27", "91.200.12.76", "46");
INSERT INTO `wp_gf_form_view` VALUES("32391", "6", "2016-06-07 16:35:06", "5.9.112.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("32392", "10", "2016-06-07 17:03:55", "192.40.235.106", "14");
INSERT INTO `wp_gf_form_view` VALUES("32393", "3", "2016-06-07 17:03:55", "192.40.235.106", "63");
INSERT INTO `wp_gf_form_view` VALUES("32394", "3", "2016-06-07 17:03:55", "192.40.235.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("32395", "10", "2016-06-07 18:42:48", "157.55.39.194", "11");
INSERT INTO `wp_gf_form_view` VALUES("32396", "3", "2016-06-07 18:42:49", "157.55.39.194", "55");
INSERT INTO `wp_gf_form_view` VALUES("32397", "1", "2016-06-07 18:47:19", "5.189.142.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("32398", "10", "2016-06-07 19:06:17", "77.75.78.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("32399", "3", "2016-06-07 19:06:17", "77.75.78.160", "15");
INSERT INTO `wp_gf_form_view` VALUES("32400", "10", "2016-06-07 20:09:32", "40.77.167.19", "14");
INSERT INTO `wp_gf_form_view` VALUES("32401", "3", "2016-06-07 20:09:32", "40.77.167.19", "71");
INSERT INTO `wp_gf_form_view` VALUES("32402", "12", "2016-06-07 20:13:29", "70.66.245.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("32403", "10", "2016-06-07 21:07:06", "66.249.75.37", "6");
INSERT INTO `wp_gf_form_view` VALUES("32404", "3", "2016-06-07 21:07:08", "66.249.75.37", "30");
INSERT INTO `wp_gf_form_view` VALUES("32405", "3", "2016-06-07 22:35:28", "68.180.229.224", "26");
INSERT INTO `wp_gf_form_view` VALUES("32406", "10", "2016-06-07 22:35:29", "68.180.229.224", "5");
INSERT INTO `wp_gf_form_view` VALUES("32407", "11", "2016-06-07 23:07:23", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32408", "10", "2016-06-07 23:07:24", "68.180.229.224", "3");
INSERT INTO `wp_gf_form_view` VALUES("32409", "3", "2016-06-07 23:07:24", "68.180.229.224", "15");
INSERT INTO `wp_gf_form_view` VALUES("32410", "10", "2016-06-08 00:04:56", "199.21.99.202", "40");
INSERT INTO `wp_gf_form_view` VALUES("32411", "3", "2016-06-08 00:04:56", "199.21.99.202", "124");
INSERT INTO `wp_gf_form_view` VALUES("32412", "12", "2016-06-08 00:15:40", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("32413", "10", "2016-06-08 01:00:46", "202.46.50.14", "20");
INSERT INTO `wp_gf_form_view` VALUES("32414", "3", "2016-06-08 01:00:46", "202.46.50.14", "95");
INSERT INTO `wp_gf_form_view` VALUES("32415", "10", "2016-06-08 02:11:57", "66.249.69.250", "5");
INSERT INTO `wp_gf_form_view` VALUES("32416", "3", "2016-06-08 02:11:58", "66.249.69.250", "26");
INSERT INTO `wp_gf_form_view` VALUES("32417", "10", "2016-06-08 03:06:28", "24.114.42.127", "15");
INSERT INTO `wp_gf_form_view` VALUES("32418", "3", "2016-06-08 03:06:28", "24.114.42.127", "75");
INSERT INTO `wp_gf_form_view` VALUES("32419", "1", "2016-06-08 03:07:11", "24.114.42.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("32420", "10", "2016-06-08 04:05:47", "66.249.69.240", "115");
INSERT INTO `wp_gf_form_view` VALUES("32421", "3", "2016-06-08 04:05:47", "66.249.69.240", "531");
INSERT INTO `wp_gf_form_view` VALUES("32422", "2", "2016-06-08 04:20:12", "198.100.147.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("32423", "12", "2016-06-08 04:20:35", "198.100.147.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("32424", "11", "2016-06-08 04:20:45", "198.100.147.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("32425", "1", "2016-06-08 04:20:54", "198.100.147.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("32426", "10", "2016-06-08 05:03:00", "220.181.108.183", "8");
INSERT INTO `wp_gf_form_view` VALUES("32427", "3", "2016-06-08 05:03:00", "220.181.108.183", "40");
INSERT INTO `wp_gf_form_view` VALUES("32428", "10", "2016-06-08 06:01:16", "207.46.13.29", "4");
INSERT INTO `wp_gf_form_view` VALUES("32429", "3", "2016-06-08 06:01:16", "207.46.13.29", "20");
INSERT INTO `wp_gf_form_view` VALUES("32430", "10", "2016-06-08 07:01:02", "202.46.53.175", "5");
INSERT INTO `wp_gf_form_view` VALUES("32431", "3", "2016-06-08 07:01:02", "202.46.53.175", "26");
INSERT INTO `wp_gf_form_view` VALUES("32432", "3", "2016-06-08 08:14:30", "164.132.161.33", "6");
INSERT INTO `wp_gf_form_view` VALUES("32433", "10", "2016-06-08 08:14:30", "164.132.161.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("32434", "10", "2016-06-08 09:01:41", "68.180.229.224", "177");
INSERT INTO `wp_gf_form_view` VALUES("32435", "3", "2016-06-08 09:01:41", "68.180.229.224", "833");
INSERT INTO `wp_gf_form_view` VALUES("32436", "1", "2016-06-08 09:43:03", "104.236.207.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("32437", "11", "2016-06-08 09:43:12", "104.236.207.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("32438", "5", "2016-06-08 09:48:15", "104.236.207.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("32439", "12", "2016-06-08 09:51:06", "104.236.207.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("32440", "6", "2016-06-08 09:55:21", "104.236.207.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("32441", "10", "2016-06-08 10:00:02", "104.236.207.30", "386");
INSERT INTO `wp_gf_form_view` VALUES("32442", "3", "2016-06-08 10:00:02", "104.236.207.30", "1896");
INSERT INTO `wp_gf_form_view` VALUES("32443", "9", "2016-06-08 10:03:12", "104.236.207.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("32444", "2", "2016-06-08 10:47:46", "104.236.207.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("32445", "10", "2016-06-08 11:00:02", "104.236.207.30", "29");
INSERT INTO `wp_gf_form_view` VALUES("32446", "3", "2016-06-08 11:00:02", "104.236.207.30", "140");
INSERT INTO `wp_gf_form_view` VALUES("32447", "8", "2016-06-08 11:01:41", "104.236.207.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("32448", "10", "2016-06-08 12:10:43", "66.249.69.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("32449", "3", "2016-06-08 12:10:43", "66.249.69.250", "5");
INSERT INTO `wp_gf_form_view` VALUES("32450", "10", "2016-06-08 13:03:20", "66.249.69.250", "31");
INSERT INTO `wp_gf_form_view` VALUES("32451", "3", "2016-06-08 13:03:21", "66.249.69.250", "153");
INSERT INTO `wp_gf_form_view` VALUES("32452", "11", "2016-06-08 13:23:14", "104.131.25.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("32453", "12", "2016-06-08 13:23:14", "104.131.25.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("32454", "2", "2016-06-08 13:23:16", "104.131.25.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("32455", "10", "2016-06-08 14:01:26", "24.68.146.132", "10");
INSERT INTO `wp_gf_form_view` VALUES("32456", "3", "2016-06-08 14:01:26", "24.68.146.132", "51");
INSERT INTO `wp_gf_form_view` VALUES("32457", "10", "2016-06-08 15:30:03", "5.153.233.130", "6");
INSERT INTO `wp_gf_form_view` VALUES("32458", "3", "2016-06-08 15:30:03", "5.153.233.130", "31");
INSERT INTO `wp_gf_form_view` VALUES("32459", "10", "2016-06-08 16:06:42", "184.69.124.182", "6");
INSERT INTO `wp_gf_form_view` VALUES("32460", "3", "2016-06-08 16:06:42", "184.69.124.182", "32");
INSERT INTO `wp_gf_form_view` VALUES("32461", "10", "2016-06-08 17:01:42", "207.194.133.9", "19");
INSERT INTO `wp_gf_form_view` VALUES("32462", "3", "2016-06-08 17:01:44", "207.194.133.9", "99");
INSERT INTO `wp_gf_form_view` VALUES("32463", "12", "2016-06-08 17:07:13", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32464", "1", "2016-06-08 17:09:54", "63.142.161.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("32465", "10", "2016-06-08 18:35:39", "66.249.69.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("32466", "3", "2016-06-08 18:35:40", "66.249.69.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("32467", "10", "2016-06-08 19:13:13", "178.137.19.16", "10");
INSERT INTO `wp_gf_form_view` VALUES("32468", "3", "2016-06-08 19:13:13", "178.137.19.16", "55");
INSERT INTO `wp_gf_form_view` VALUES("32469", "10", "2016-06-08 20:38:24", "217.69.133.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("32470", "3", "2016-06-08 20:38:33", "217.69.133.230", "5");
INSERT INTO `wp_gf_form_view` VALUES("32471", "10", "2016-06-08 21:09:23", "75.157.25.85", "20");
INSERT INTO `wp_gf_form_view` VALUES("32472", "3", "2016-06-08 21:09:25", "75.157.25.85", "102");
INSERT INTO `wp_gf_form_view` VALUES("32473", "1", "2016-06-08 21:49:19", "77.75.77.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("32474", "10", "2016-06-08 22:12:17", "96.54.208.163", "37");
INSERT INTO `wp_gf_form_view` VALUES("32475", "3", "2016-06-08 22:12:18", "96.54.208.163", "182");
INSERT INTO `wp_gf_form_view` VALUES("32476", "11", "2016-06-08 22:28:03", "79.114.171.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("32477", "12", "2016-06-08 22:28:27", "79.114.171.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("32478", "2", "2016-06-08 22:28:53", "79.114.171.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("32479", "10", "2016-06-08 23:01:00", "184.151.231.51", "9");
INSERT INTO `wp_gf_form_view` VALUES("32480", "3", "2016-06-08 23:01:00", "184.151.231.51", "46");
INSERT INTO `wp_gf_form_view` VALUES("32481", "10", "2016-06-09 00:00:28", "202.46.53.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("32482", "3", "2016-06-09 00:00:28", "202.46.53.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("32483", "3", "2016-06-09 01:24:14", "217.69.133.227", "22");
INSERT INTO `wp_gf_form_view` VALUES("32484", "10", "2016-06-09 01:24:14", "217.69.133.227", "4");
INSERT INTO `wp_gf_form_view` VALUES("32485", "1", "2016-06-09 01:34:32", "5.189.142.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("32486", "10", "2016-06-09 02:11:50", "77.75.76.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("32487", "3", "2016-06-09 02:11:50", "77.75.76.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("32488", "10", "2016-06-09 03:00:54", "51.255.65.12", "7");
INSERT INTO `wp_gf_form_view` VALUES("32489", "3", "2016-06-09 03:00:54", "51.255.65.12", "36");
INSERT INTO `wp_gf_form_view` VALUES("32490", "10", "2016-06-09 04:04:37", "178.137.90.153", "23");
INSERT INTO `wp_gf_form_view` VALUES("32491", "3", "2016-06-09 04:04:37", "178.137.90.153", "115");
INSERT INTO `wp_gf_form_view` VALUES("32492", "11", "2016-06-09 05:02:36", "202.46.52.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("32493", "10", "2016-06-09 05:02:36", "202.46.52.62", "11");
INSERT INTO `wp_gf_form_view` VALUES("32494", "3", "2016-06-09 05:02:36", "202.46.52.62", "56");
INSERT INTO `wp_gf_form_view` VALUES("32495", "10", "2016-06-09 06:15:41", "220.181.108.101", "7");
INSERT INTO `wp_gf_form_view` VALUES("32496", "3", "2016-06-09 06:15:43", "220.181.108.101", "37");
INSERT INTO `wp_gf_form_view` VALUES("32497", "8", "2016-06-09 06:35:26", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("32498", "9", "2016-06-09 06:35:26", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("32499", "1", "2016-06-09 06:55:27", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("32500", "10", "2016-06-09 07:04:46", "66.249.79.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("32501", "3", "2016-06-09 07:04:46", "66.249.79.169", "11");
INSERT INTO `wp_gf_form_view` VALUES("32502", "10", "2016-06-09 08:18:09", "173.208.130.146", "5");
INSERT INTO `wp_gf_form_view` VALUES("32503", "3", "2016-06-09 08:18:09", "173.208.130.146", "25");
INSERT INTO `wp_gf_form_view` VALUES("32504", "10", "2016-06-09 09:23:26", "66.249.79.176", "6");
INSERT INTO `wp_gf_form_view` VALUES("32505", "3", "2016-06-09 09:23:26", "66.249.79.176", "26");
INSERT INTO `wp_gf_form_view` VALUES("32506", "10", "2016-06-09 10:26:23", "66.249.79.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("32507", "3", "2016-06-09 10:26:24", "66.249.79.162", "35");
INSERT INTO `wp_gf_form_view` VALUES("32508", "3", "2016-06-09 11:05:49", "51.255.65.30", "16");
INSERT INTO `wp_gf_form_view` VALUES("32509", "10", "2016-06-09 11:05:49", "51.255.65.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("32510", "10", "2016-06-09 12:58:12", "207.46.13.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("32511", "3", "2016-06-09 12:58:13", "207.46.13.29", "10");
INSERT INTO `wp_gf_form_view` VALUES("32512", "10", "2016-06-09 13:46:12", "192.243.55.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("32513", "3", "2016-06-09 13:46:13", "192.243.55.129", "5");
INSERT INTO `wp_gf_form_view` VALUES("32514", "10", "2016-06-09 14:16:14", "178.137.90.153", "19");
INSERT INTO `wp_gf_form_view` VALUES("32515", "3", "2016-06-09 14:16:14", "178.137.90.153", "90");
INSERT INTO `wp_gf_form_view` VALUES("32516", "10", "2016-06-09 15:06:47", "151.80.31.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("32517", "3", "2016-06-09 15:06:47", "151.80.31.157", "20");
INSERT INTO `wp_gf_form_view` VALUES("32518", "10", "2016-06-09 16:09:34", "217.69.133.228", "8");
INSERT INTO `wp_gf_form_view` VALUES("32519", "3", "2016-06-09 16:09:34", "217.69.133.228", "40");
INSERT INTO `wp_gf_form_view` VALUES("32520", "10", "2016-06-09 17:14:51", "66.249.79.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("32521", "3", "2016-06-09 17:14:52", "66.249.79.169", "27");
INSERT INTO `wp_gf_form_view` VALUES("32522", "1", "2016-06-09 18:20:01", "202.46.53.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("32523", "10", "2016-06-09 18:20:01", "202.46.53.45", "10");
INSERT INTO `wp_gf_form_view` VALUES("32524", "3", "2016-06-09 18:20:02", "202.46.53.45", "50");
INSERT INTO `wp_gf_form_view` VALUES("32525", "10", "2016-06-09 19:09:05", "50.66.122.99", "13");
INSERT INTO `wp_gf_form_view` VALUES("32526", "3", "2016-06-09 19:09:05", "50.66.122.99", "63");
INSERT INTO `wp_gf_form_view` VALUES("32527", "3", "2016-06-09 20:00:27", "202.46.58.188", "42");
INSERT INTO `wp_gf_form_view` VALUES("32528", "10", "2016-06-09 20:00:29", "202.46.58.188", "7");
INSERT INTO `wp_gf_form_view` VALUES("32529", "10", "2016-06-09 20:00:29", "46.119.113.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("32530", "7", "2016-06-09 20:32:20", "207.46.13.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("32531", "3", "2016-06-09 21:07:37", "202.46.54.142", "22");
INSERT INTO `wp_gf_form_view` VALUES("32532", "10", "2016-06-09 21:07:40", "202.46.54.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("32533", "3", "2016-06-09 22:10:15", "164.132.161.6", "38");
INSERT INTO `wp_gf_form_view` VALUES("32534", "10", "2016-06-09 22:10:16", "164.132.161.6", "8");
INSERT INTO `wp_gf_form_view` VALUES("32535", "8", "2016-06-09 22:10:16", "164.132.161.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("32536", "9", "2016-06-09 22:10:16", "164.132.161.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("32537", "10", "2016-06-09 23:08:21", "24.108.7.100", "4");
INSERT INTO `wp_gf_form_view` VALUES("32538", "3", "2016-06-09 23:08:21", "24.108.7.100", "20");
INSERT INTO `wp_gf_form_view` VALUES("32539", "10", "2016-06-10 00:19:44", "192.243.55.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("32540", "3", "2016-06-10 00:19:44", "192.243.55.130", "21");
INSERT INTO `wp_gf_form_view` VALUES("32541", "10", "2016-06-10 01:00:29", "207.46.13.107", "15");
INSERT INTO `wp_gf_form_view` VALUES("32542", "3", "2016-06-10 01:00:29", "207.46.13.107", "81");
INSERT INTO `wp_gf_form_view` VALUES("32543", "6", "2016-06-10 02:05:38", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("32544", "10", "2016-06-10 02:05:38", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("32545", "3", "2016-06-10 02:05:38", "217.69.133.227", "5");
INSERT INTO `wp_gf_form_view` VALUES("32546", "3", "2016-06-10 03:40:43", "217.69.133.233", "11");
INSERT INTO `wp_gf_form_view` VALUES("32547", "10", "2016-06-10 03:40:44", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("32548", "3", "2016-06-10 04:30:29", "40.77.167.49", "27");
INSERT INTO `wp_gf_form_view` VALUES("32549", "10", "2016-06-10 04:30:29", "40.77.167.49", "5");
INSERT INTO `wp_gf_form_view` VALUES("32550", "9", "2016-06-10 05:11:05", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("32551", "10", "2016-06-10 05:11:05", "157.55.39.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("32552", "3", "2016-06-10 05:11:05", "157.55.39.194", "26");
INSERT INTO `wp_gf_form_view` VALUES("32553", "10", "2016-06-10 06:11:24", "220.181.108.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("32554", "3", "2016-06-10 06:11:25", "220.181.108.142", "16");
INSERT INTO `wp_gf_form_view` VALUES("32555", "10", "2016-06-10 07:03:23", "66.249.79.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("32556", "3", "2016-06-10 07:03:23", "66.249.79.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("32557", "12", "2016-06-10 07:08:28", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32558", "10", "2016-06-10 08:14:36", "202.46.52.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("32559", "3", "2016-06-10 08:14:36", "202.46.52.207", "23");
INSERT INTO `wp_gf_form_view` VALUES("32560", "10", "2016-06-10 09:09:07", "192.243.55.137", "4");
INSERT INTO `wp_gf_form_view` VALUES("32561", "3", "2016-06-10 09:09:07", "192.243.55.137", "20");
INSERT INTO `wp_gf_form_view` VALUES("32562", "10", "2016-06-10 10:01:23", "77.75.76.171", "16");
INSERT INTO `wp_gf_form_view` VALUES("32563", "3", "2016-06-10 10:01:23", "77.75.76.171", "92");
INSERT INTO `wp_gf_form_view` VALUES("32564", "3", "2016-06-10 11:27:40", "178.137.19.16", "329");
INSERT INTO `wp_gf_form_view` VALUES("32565", "3", "2016-06-10 11:27:40", "178.137.19.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("32566", "10", "2016-06-10 11:27:41", "178.137.19.16", "77");
INSERT INTO `wp_gf_form_view` VALUES("32567", "10", "2016-06-10 11:27:41", "178.137.19.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("32568", "10", "2016-06-10 11:27:41", "178.137.19.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("32569", "9", "2016-06-10 11:39:37", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("32570", "6", "2016-06-10 11:40:05", "207.46.13.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("32571", "10", "2016-06-10 12:45:07", "202.46.51.21", "3");
INSERT INTO `wp_gf_form_view` VALUES("32572", "3", "2016-06-10 12:45:09", "202.46.51.21", "15");
INSERT INTO `wp_gf_form_view` VALUES("32573", "6", "2016-06-10 12:56:09", "51.255.65.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("32574", "10", "2016-06-10 13:17:02", "192.243.55.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("32575", "3", "2016-06-10 13:17:02", "192.243.55.138", "15");
INSERT INTO `wp_gf_form_view` VALUES("32576", "3", "2016-06-10 14:01:41", "192.243.55.137", "28");
INSERT INTO `wp_gf_form_view` VALUES("32577", "10", "2016-06-10 14:01:41", "192.243.55.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("32578", "10", "2016-06-10 15:03:25", "217.69.133.229", "5");
INSERT INTO `wp_gf_form_view` VALUES("32579", "3", "2016-06-10 15:03:25", "217.69.133.229", "25");
INSERT INTO `wp_gf_form_view` VALUES("32580", "10", "2016-06-10 16:04:08", "184.71.11.78", "4");
INSERT INTO `wp_gf_form_view` VALUES("32581", "3", "2016-06-10 16:04:08", "184.71.11.78", "22");
INSERT INTO `wp_gf_form_view` VALUES("32582", "10", "2016-06-10 17:10:30", "87.157.48.148", "13");
INSERT INTO `wp_gf_form_view` VALUES("32583", "3", "2016-06-10 17:10:30", "87.157.48.148", "61");
INSERT INTO `wp_gf_form_view` VALUES("32584", "2", "2016-06-10 17:10:48", "87.157.48.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("32585", "1", "2016-06-10 17:11:15", "87.157.48.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("32586", "10", "2016-06-10 18:04:00", "50.66.122.99", "33");
INSERT INTO `wp_gf_form_view` VALUES("32587", "3", "2016-06-10 18:04:00", "50.66.122.99", "174");
INSERT INTO `wp_gf_form_view` VALUES("32588", "1", "2016-06-10 18:23:05", "142.31.134.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("32589", "11", "2016-06-10 18:41:59", "220.181.108.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("32590", "10", "2016-06-10 19:00:14", "24.69.40.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("32591", "3", "2016-06-10 19:00:14", "24.69.40.28", "35");
INSERT INTO `wp_gf_form_view` VALUES("32592", "10", "2016-06-10 20:01:07", "24.68.146.132", "15");
INSERT INTO `wp_gf_form_view` VALUES("32593", "3", "2016-06-10 20:01:07", "24.68.146.132", "76");
INSERT INTO `wp_gf_form_view` VALUES("32594", "2", "2016-06-10 20:02:23", "24.68.146.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("32595", "3", "2016-06-10 21:16:44", "202.46.55.84", "17");
INSERT INTO `wp_gf_form_view` VALUES("32596", "10", "2016-06-10 21:16:45", "202.46.55.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("32597", "1", "2016-06-10 22:03:51", "104.129.41.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("32598", "10", "2016-06-10 22:03:51", "104.129.41.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("32599", "3", "2016-06-10 22:03:51", "104.129.41.161", "91");
INSERT INTO `wp_gf_form_view` VALUES("32600", "3", "2016-06-10 23:27:19", "46.185.68.84", "17");
INSERT INTO `wp_gf_form_view` VALUES("32601", "3", "2016-06-10 23:27:19", "46.185.68.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("32602", "10", "2016-06-10 23:27:20", "46.185.68.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("32603", "10", "2016-06-10 23:27:20", "46.185.68.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("32604", "10", "2016-06-10 23:27:20", "46.185.68.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("32605", "10", "2016-06-11 00:14:24", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32606", "3", "2016-06-11 00:14:25", "68.180.229.224", "5");
INSERT INTO `wp_gf_form_view` VALUES("32607", "3", "2016-06-11 01:19:46", "68.180.229.224", "11");
INSERT INTO `wp_gf_form_view` VALUES("32608", "10", "2016-06-11 01:19:48", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("32609", "12", "2016-06-11 01:22:59", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("32610", "10", "2016-06-11 02:01:51", "24.68.36.249", "8");
INSERT INTO `wp_gf_form_view` VALUES("32611", "3", "2016-06-11 02:01:52", "24.68.36.249", "42");
INSERT INTO `wp_gf_form_view` VALUES("32612", "1", "2016-06-11 02:31:01", "62.210.122.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("32613", "3", "2016-06-11 03:36:43", "178.137.19.16", "34");
INSERT INTO `wp_gf_form_view` VALUES("32614", "10", "2016-06-11 03:36:44", "178.137.19.16", "5");
INSERT INTO `wp_gf_form_view` VALUES("32615", "10", "2016-06-11 03:36:44", "178.137.19.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("32616", "3", "2016-06-11 04:29:19", "157.55.39.17", "16");
INSERT INTO `wp_gf_form_view` VALUES("32617", "10", "2016-06-11 04:29:19", "157.55.39.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("32618", "10", "2016-06-11 05:06:45", "192.243.55.132", "44");
INSERT INTO `wp_gf_form_view` VALUES("32619", "3", "2016-06-11 05:06:45", "192.243.55.132", "225");
INSERT INTO `wp_gf_form_view` VALUES("32620", "1", "2016-06-11 05:30:47", "107.161.84.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("32621", "11", "2016-06-11 05:48:41", "23.24.84.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("32622", "12", "2016-06-11 05:49:02", "23.24.84.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("32623", "2", "2016-06-11 05:49:29", "23.24.84.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("32624", "10", "2016-06-11 06:21:31", "157.55.39.33", "3");
INSERT INTO `wp_gf_form_view` VALUES("32625", "3", "2016-06-11 06:21:32", "157.55.39.33", "15");
INSERT INTO `wp_gf_form_view` VALUES("32626", "10", "2016-06-11 07:16:54", "192.243.55.136", "3");
INSERT INTO `wp_gf_form_view` VALUES("32627", "3", "2016-06-11 07:16:57", "192.243.55.136", "16");
INSERT INTO `wp_gf_form_view` VALUES("32628", "10", "2016-06-11 08:07:00", "151.80.31.163", "7");
INSERT INTO `wp_gf_form_view` VALUES("32629", "3", "2016-06-11 08:07:00", "151.80.31.163", "35");
INSERT INTO `wp_gf_form_view` VALUES("32630", "1", "2016-06-11 08:32:08", "62.210.122.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("32631", "10", "2016-06-11 09:05:06", "77.75.79.101", "5");
INSERT INTO `wp_gf_form_view` VALUES("32632", "3", "2016-06-11 09:05:06", "77.75.79.101", "28");
INSERT INTO `wp_gf_form_view` VALUES("32633", "10", "2016-06-11 10:04:26", "202.46.54.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("32634", "3", "2016-06-11 10:04:26", "202.46.54.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("32635", "1", "2016-06-11 10:24:42", "91.200.12.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("32636", "10", "2016-06-11 11:05:02", "157.55.39.194", "6");
INSERT INTO `wp_gf_form_view` VALUES("32637", "3", "2016-06-11 11:05:03", "157.55.39.194", "25");
INSERT INTO `wp_gf_form_view` VALUES("32638", "10", "2016-06-11 12:11:49", "66.249.79.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("32639", "3", "2016-06-11 12:11:50", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("32640", "10", "2016-06-11 13:16:28", "66.249.79.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("32641", "3", "2016-06-11 13:16:28", "66.249.79.169", "50");
INSERT INTO `wp_gf_form_view` VALUES("32642", "1", "2016-06-11 13:20:36", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("32643", "3", "2016-06-11 14:04:33", "68.180.229.224", "22");
INSERT INTO `wp_gf_form_view` VALUES("32644", "10", "2016-06-11 14:04:33", "68.180.229.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("32645", "10", "2016-06-11 15:05:52", "202.46.54.158", "10");
INSERT INTO `wp_gf_form_view` VALUES("32646", "3", "2016-06-11 15:05:52", "202.46.54.158", "49");
INSERT INTO `wp_gf_form_view` VALUES("32647", "10", "2016-06-11 16:26:22", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("32648", "3", "2016-06-11 16:26:22", "66.249.79.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("32649", "3", "2016-06-11 17:15:56", "188.240.132.165", "41");
INSERT INTO `wp_gf_form_view` VALUES("32650", "10", "2016-06-11 17:15:57", "188.240.132.165", "9");
INSERT INTO `wp_gf_form_view` VALUES("32651", "1", "2016-06-11 18:49:06", "24.16.143.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("32652", "10", "2016-06-11 18:49:07", "24.16.143.88", "4");
INSERT INTO `wp_gf_form_view` VALUES("32653", "3", "2016-06-11 18:49:08", "24.16.143.88", "16");
INSERT INTO `wp_gf_form_view` VALUES("32654", "10", "2016-06-11 19:08:56", "70.66.187.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("32655", "3", "2016-06-11 19:08:56", "70.66.187.146", "10");
INSERT INTO `wp_gf_form_view` VALUES("32656", "10", "2016-06-11 20:00:08", "202.46.52.207", "3");
INSERT INTO `wp_gf_form_view` VALUES("32657", "3", "2016-06-11 20:00:09", "202.46.52.207", "16");
INSERT INTO `wp_gf_form_view` VALUES("32658", "10", "2016-06-11 21:20:33", "157.55.39.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("32659", "3", "2016-06-11 21:20:35", "157.55.39.194", "10");
INSERT INTO `wp_gf_form_view` VALUES("32660", "3", "2016-06-11 22:02:02", "46.118.125.82", "61");
INSERT INTO `wp_gf_form_view` VALUES("32661", "3", "2016-06-11 22:02:02", "46.118.125.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("32662", "10", "2016-06-11 22:02:03", "46.118.125.82", "11");
INSERT INTO `wp_gf_form_view` VALUES("32663", "1", "2016-06-11 22:55:24", "46.17.57.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("32664", "10", "2016-06-11 23:04:14", "51.255.48.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("32665", "3", "2016-06-11 23:04:14", "51.255.48.152", "15");
INSERT INTO `wp_gf_form_view` VALUES("32666", "2", "2016-06-12 00:07:56", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32667", "3", "2016-06-12 00:07:57", "68.180.229.224", "43");
INSERT INTO `wp_gf_form_view` VALUES("32668", "10", "2016-06-12 00:24:22", "157.55.39.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("32669", "9", "2016-06-12 00:31:34", "157.55.39.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("32670", "3", "2016-06-12 01:15:56", "77.75.78.170", "5");
INSERT INTO `wp_gf_form_view` VALUES("32671", "3", "2016-06-12 02:22:39", "66.249.79.169", "22");
INSERT INTO `wp_gf_form_view` VALUES("32672", "10", "2016-06-12 03:12:43", "51.255.65.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("32673", "3", "2016-06-12 03:12:43", "51.255.65.4", "16");
INSERT INTO `wp_gf_form_view` VALUES("32674", "3", "2016-06-12 04:04:47", "202.46.55.153", "25");
INSERT INTO `wp_gf_form_view` VALUES("32675", "3", "2016-06-12 05:11:03", "46.185.68.84", "89");
INSERT INTO `wp_gf_form_view` VALUES("32676", "12", "2016-06-12 05:16:22", "51.255.65.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("32677", "10", "2016-06-12 06:59:20", "77.75.76.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("32678", "3", "2016-06-12 06:59:21", "77.75.76.160", "5");
INSERT INTO `wp_gf_form_view` VALUES("32679", "3", "2016-06-12 07:05:05", "157.55.39.66", "48");
INSERT INTO `wp_gf_form_view` VALUES("32680", "1", "2016-06-12 07:42:06", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32681", "3", "2016-06-12 09:11:38", "178.137.19.16", "40");
INSERT INTO `wp_gf_form_view` VALUES("32682", "3", "2016-06-12 09:11:38", "178.137.19.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("32683", "3", "2016-06-12 10:06:16", "164.132.161.46", "20");
INSERT INTO `wp_gf_form_view` VALUES("32684", "3", "2016-06-12 11:10:47", "151.80.31.163", "10");
INSERT INTO `wp_gf_form_view` VALUES("32685", "3", "2016-06-12 12:17:02", "77.75.79.32", "16");
INSERT INTO `wp_gf_form_view` VALUES("32686", "11", "2016-06-12 12:54:56", "51.255.65.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("32687", "3", "2016-06-12 13:09:44", "164.132.161.67", "5");
INSERT INTO `wp_gf_form_view` VALUES("32688", "3", "2016-06-12 14:09:44", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("32689", "3", "2016-06-12 15:23:00", "68.180.229.224", "25");
INSERT INTO `wp_gf_form_view` VALUES("32690", "3", "2016-06-12 16:13:59", "202.46.58.118", "16");
INSERT INTO `wp_gf_form_view` VALUES("32691", "3", "2016-06-12 17:04:34", "46.118.125.82", "63");
INSERT INTO `wp_gf_form_view` VALUES("32692", "3", "2016-06-12 17:04:34", "46.118.125.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("32693", "3", "2016-06-12 18:18:08", "151.80.31.182", "17");
INSERT INTO `wp_gf_form_view` VALUES("32694", "3", "2016-06-12 19:01:27", "202.46.55.39", "27");
INSERT INTO `wp_gf_form_view` VALUES("32695", "3", "2016-06-12 20:08:24", "202.46.57.89", "177");
INSERT INTO `wp_gf_form_view` VALUES("32696", "11", "2016-06-12 20:50:23", "81.169.150.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("32697", "12", "2016-06-12 20:50:56", "81.169.150.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("32698", "2", "2016-06-12 20:51:28", "81.169.150.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("32699", "11", "2016-06-12 21:10:16", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("32700", "3", "2016-06-12 21:10:17", "199.21.99.202", "54");
INSERT INTO `wp_gf_form_view` VALUES("32701", "10", "2016-06-12 21:13:09", "144.76.30.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("32702", "8", "2016-06-12 21:13:10", "144.76.30.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("32703", "9", "2016-06-12 21:13:10", "144.76.30.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("32704", "3", "2016-06-12 22:31:06", "208.43.225.85", "273");
INSERT INTO `wp_gf_form_view` VALUES("32705", "9", "2016-06-12 22:31:26", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("32706", "11", "2016-06-12 22:32:22", "208.43.225.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("32707", "10", "2016-06-12 22:32:32", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("32708", "12", "2016-06-12 22:50:51", "23.24.84.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("32709", "2", "2016-06-12 22:51:15", "23.24.84.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("32710", "3", "2016-06-12 23:01:47", "183.91.33.75", "71");
INSERT INTO `wp_gf_form_view` VALUES("32711", "1", "2016-06-12 23:18:35", "151.237.179.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("32712", "3", "2016-06-13 00:01:41", "91.200.12.114", "20");
INSERT INTO `wp_gf_form_view` VALUES("32713", "3", "2016-06-13 01:15:57", "66.249.79.169", "306");
INSERT INTO `wp_gf_form_view` VALUES("32714", "7", "2016-06-13 01:17:34", "157.55.39.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("32715", "8", "2016-06-13 01:17:36", "207.46.13.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("32716", "10", "2016-06-13 01:17:42", "157.55.39.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("32717", "12", "2016-06-13 01:17:46", "157.55.39.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("32718", "9", "2016-06-13 01:17:49", "157.55.39.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("32719", "11", "2016-06-13 01:18:00", "207.46.13.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("32720", "10", "2016-06-13 02:03:00", "199.16.156.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("32721", "3", "2016-06-13 02:03:00", "199.16.156.125", "48");
INSERT INTO `wp_gf_form_view` VALUES("32722", "3", "2016-06-13 03:23:46", "157.55.39.78", "16");
INSERT INTO `wp_gf_form_view` VALUES("32723", "1", "2016-06-13 03:46:44", "62.210.122.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("32724", "3", "2016-06-13 04:06:00", "66.249.79.162", "21");
INSERT INTO `wp_gf_form_view` VALUES("32725", "3", "2016-06-13 05:01:46", "188.208.6.21", "36");
INSERT INTO `wp_gf_form_view` VALUES("32726", "3", "2016-06-13 06:45:27", "199.21.99.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("32727", "3", "2016-06-13 07:03:15", "207.46.13.91", "10");
INSERT INTO `wp_gf_form_view` VALUES("32728", "6", "2016-06-13 08:27:51", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32729", "3", "2016-06-13 08:27:51", "68.180.229.224", "15");
INSERT INTO `wp_gf_form_view` VALUES("32730", "3", "2016-06-13 09:24:50", "66.249.79.162", "39");
INSERT INTO `wp_gf_form_view` VALUES("32731", "1", "2016-06-13 09:54:52", "62.210.122.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("32732", "3", "2016-06-13 10:10:24", "68.180.229.224", "20");
INSERT INTO `wp_gf_form_view` VALUES("32733", "3", "2016-06-13 11:14:45", "66.249.79.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("32734", "3", "2016-06-13 12:06:24", "66.249.79.162", "63");
INSERT INTO `wp_gf_form_view` VALUES("32735", "1", "2016-06-13 13:00:29", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("32736", "3", "2016-06-13 13:00:29", "66.249.79.162", "31");
INSERT INTO `wp_gf_form_view` VALUES("32737", "9", "2016-06-13 13:30:01", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("32738", "3", "2016-06-13 14:00:37", "68.180.229.224", "34");
INSERT INTO `wp_gf_form_view` VALUES("32739", "1", "2016-06-13 14:39:50", "202.46.56.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("32740", "3", "2016-06-13 15:12:30", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("32741", "3", "2016-06-13 16:04:26", "217.69.133.232", "21");
INSERT INTO `wp_gf_form_view` VALUES("32742", "3", "2016-06-13 17:06:18", "202.46.53.142", "50");
INSERT INTO `wp_gf_form_view` VALUES("32743", "5", "2016-06-13 17:52:48", "157.55.39.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("32744", "3", "2016-06-13 18:13:16", "202.46.53.165", "61");
INSERT INTO `wp_gf_form_view` VALUES("32745", "1", "2016-06-13 18:23:45", "24.68.124.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("32746", "12", "2016-06-13 18:30:10", "207.6.162.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("32747", "3", "2016-06-13 19:10:44", "66.249.79.162", "36");
INSERT INTO `wp_gf_form_view` VALUES("32748", "3", "2016-06-13 20:32:43", "157.55.39.22", "26");
INSERT INTO `wp_gf_form_view` VALUES("32749", "3", "2016-06-13 21:11:13", "24.108.20.70", "46");
INSERT INTO `wp_gf_form_view` VALUES("32750", "1", "2016-06-13 21:11:34", "24.108.20.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("32751", "11", "2016-06-13 21:15:45", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("32752", "3", "2016-06-13 22:11:09", "46.185.68.84", "23");
INSERT INTO `wp_gf_form_view` VALUES("32753", "3", "2016-06-13 23:05:08", "184.66.32.165", "72");
INSERT INTO `wp_gf_form_view` VALUES("32754", "11", "2016-06-13 23:05:27", "141.8.143.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("32755", "3", "2016-06-14 00:20:22", "46.118.125.82", "207");
INSERT INTO `wp_gf_form_view` VALUES("32756", "11", "2016-06-14 00:27:50", "173.208.184.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("32757", "12", "2016-06-14 00:28:12", "173.208.184.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("32758", "2", "2016-06-14 00:28:48", "173.208.184.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("32759", "3", "2016-06-14 01:25:26", "24.108.20.70", "56");
INSERT INTO `wp_gf_form_view` VALUES("32760", "3", "2016-06-14 02:00:19", "68.180.229.224", "75");
INSERT INTO `wp_gf_form_view` VALUES("32761", "3", "2016-06-14 03:25:54", "108.180.31.157", "20");
INSERT INTO `wp_gf_form_view` VALUES("32762", "3", "2016-06-14 04:33:18", "77.75.77.109", "5");
INSERT INTO `wp_gf_form_view` VALUES("32763", "3", "2016-06-14 05:09:21", "66.249.79.162", "32");
INSERT INTO `wp_gf_form_view` VALUES("32764", "3", "2016-06-14 07:15:21", "178.137.19.16", "75");
INSERT INTO `wp_gf_form_view` VALUES("32765", "3", "2016-06-14 07:15:21", "178.137.19.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("32766", "3", "2016-06-14 07:15:21", "178.137.19.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("32767", "1", "2016-06-14 07:54:15", "173.44.147.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("32768", "8", "2016-06-14 07:58:18", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32769", "3", "2016-06-14 08:08:46", "68.180.229.224", "15");
INSERT INTO `wp_gf_form_view` VALUES("32770", "3", "2016-06-14 09:38:01", "68.180.229.224", "12");
INSERT INTO `wp_gf_form_view` VALUES("32771", "3", "2016-06-14 10:11:31", "5.153.233.130", "35");
INSERT INTO `wp_gf_form_view` VALUES("32772", "3", "2016-06-14 11:03:08", "151.80.31.184", "41");
INSERT INTO `wp_gf_form_view` VALUES("32773", "3", "2016-06-14 12:07:08", "77.75.78.165", "26");
INSERT INTO `wp_gf_form_view` VALUES("32774", "3", "2016-06-14 15:21:58", "68.180.229.224", "25");
INSERT INTO `wp_gf_form_view` VALUES("32775", "1", "2016-06-14 15:50:59", "91.200.12.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("32776", "3", "2016-06-14 16:07:11", "70.66.161.162", "152");
INSERT INTO `wp_gf_form_view` VALUES("32777", "10", "2016-06-14 16:14:27", "70.66.161.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("32778", "8", "2016-06-14 16:47:43", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("32779", "3", "2016-06-14 17:04:14", "68.180.229.224", "31");
INSERT INTO `wp_gf_form_view` VALUES("32780", "3", "2016-06-14 18:04:04", "178.137.164.226", "29");
INSERT INTO `wp_gf_form_view` VALUES("32781", "3", "2016-06-14 19:12:01", "77.75.76.167", "21");
INSERT INTO `wp_gf_form_view` VALUES("32782", "3", "2016-06-14 20:18:47", "24.69.133.52", "51");
INSERT INTO `wp_gf_form_view` VALUES("32783", "3", "2016-06-14 21:03:07", "157.55.39.170", "28");
INSERT INTO `wp_gf_form_view` VALUES("32784", "3", "2016-06-14 22:02:48", "66.249.79.176", "66");
INSERT INTO `wp_gf_form_view` VALUES("32785", "8", "2016-06-14 22:21:10", "51.255.65.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("32786", "10", "2016-06-14 22:28:28", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("32787", "3", "2016-06-14 23:00:55", "66.249.79.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("32788", "11", "2016-06-14 23:08:54", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32789", "3", "2016-06-15 00:09:11", "66.249.79.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("32790", "2", "2016-06-15 00:48:00", "202.46.53.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("32791", "3", "2016-06-15 01:16:11", "24.68.96.136", "21");
INSERT INTO `wp_gf_form_view` VALUES("32792", "3", "2016-06-15 02:01:43", "207.46.13.90", "43");
INSERT INTO `wp_gf_form_view` VALUES("32793", "3", "2016-06-15 03:01:19", "96.50.3.41", "60");
INSERT INTO `wp_gf_form_view` VALUES("32794", "10", "2016-06-15 03:01:36", "96.50.3.41", "4");
INSERT INTO `wp_gf_form_view` VALUES("32795", "3", "2016-06-15 04:23:17", "24.68.232.76", "16");
INSERT INTO `wp_gf_form_view` VALUES("32796", "3", "2016-06-15 05:24:27", "207.46.13.90", "20");
INSERT INTO `wp_gf_form_view` VALUES("32797", "9", "2016-06-15 05:24:52", "167.114.241.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("32798", "3", "2016-06-15 06:16:49", "192.243.55.133", "58");
INSERT INTO `wp_gf_form_view` VALUES("32799", "1", "2016-06-15 06:17:35", "5.34.244.88", "3");
INSERT INTO `wp_gf_form_view` VALUES("32800", "3", "2016-06-15 07:12:41", "77.75.79.36", "22");
INSERT INTO `wp_gf_form_view` VALUES("32801", "10", "2016-06-15 08:04:31", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32802", "3", "2016-06-15 08:21:46", "192.243.55.137", "11");
INSERT INTO `wp_gf_form_view` VALUES("32803", "3", "2016-06-15 09:05:38", "178.137.164.226", "32");
INSERT INTO `wp_gf_form_view` VALUES("32804", "3", "2016-06-15 10:05:54", "77.75.79.95", "30");
INSERT INTO `wp_gf_form_view` VALUES("32805", "1", "2016-06-15 10:48:02", "62.210.122.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("32806", "3", "2016-06-15 11:09:00", "68.180.229.224", "15");
INSERT INTO `wp_gf_form_view` VALUES("32807", "3", "2016-06-15 12:12:53", "66.249.79.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("32808", "3", "2016-06-15 13:03:03", "220.181.108.86", "35");
INSERT INTO `wp_gf_form_view` VALUES("32809", "9", "2016-06-15 13:34:57", "202.46.57.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("32810", "3", "2016-06-15 14:30:37", "68.180.229.224", "11");
INSERT INTO `wp_gf_form_view` VALUES("32811", "3", "2016-06-15 15:03:28", "77.75.77.17", "50");
INSERT INTO `wp_gf_form_view` VALUES("32812", "3", "2016-06-15 16:24:42", "51.255.65.6", "21");
INSERT INTO `wp_gf_form_view` VALUES("32813", "1", "2016-06-15 17:04:20", "62.210.122.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("32814", "3", "2016-06-15 17:04:20", "62.210.122.172", "46");
INSERT INTO `wp_gf_form_view` VALUES("32815", "3", "2016-06-15 18:16:39", "77.75.76.163", "22");
INSERT INTO `wp_gf_form_view` VALUES("32816", "2", "2016-06-15 19:06:58", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("32817", "3", "2016-06-15 19:06:58", "66.249.79.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("32818", "3", "2016-06-15 20:17:31", "157.55.39.87", "25");
INSERT INTO `wp_gf_form_view` VALUES("32819", "2", "2016-06-15 20:36:50", "207.46.13.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("32820", "3", "2016-06-15 21:35:46", "178.137.164.226", "87");
INSERT INTO `wp_gf_form_view` VALUES("32821", "3", "2016-06-15 21:35:46", "178.137.164.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("32822", "3", "2016-06-15 21:35:46", "178.137.164.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("32823", "3", "2016-06-15 22:32:59", "5.9.98.130", "953");
INSERT INTO `wp_gf_form_view` VALUES("32824", "11", "2016-06-15 22:33:19", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32825", "2", "2016-06-15 22:33:23", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32826", "12", "2016-06-15 22:34:54", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32827", "1", "2016-06-15 22:35:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32828", "10", "2016-06-15 22:39:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32829", "8", "2016-06-15 22:39:46", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32830", "9", "2016-06-15 22:39:56", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32831", "5", "2016-06-15 22:40:49", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32832", "6", "2016-06-15 22:44:46", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32833", "3", "2016-06-15 23:01:25", "5.9.98.130", "2338");
INSERT INTO `wp_gf_form_view` VALUES("32834", "3", "2016-06-16 00:00:07", "5.9.98.130", "2313");
INSERT INTO `wp_gf_form_view` VALUES("32835", "3", "2016-06-16 01:00:01", "5.9.98.130", "4130");
INSERT INTO `wp_gf_form_view` VALUES("32836", "3", "2016-06-16 02:13:03", "5.9.98.130", "603");
INSERT INTO `wp_gf_form_view` VALUES("32837", "9", "2016-06-16 02:42:07", "207.46.13.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("32838", "10", "2016-06-16 02:42:14", "207.46.13.78", "2");
INSERT INTO `wp_gf_form_view` VALUES("32839", "5", "2016-06-16 02:42:43", "40.77.167.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("32840", "6", "2016-06-16 02:42:49", "40.77.167.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("32841", "8", "2016-06-16 02:43:36", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("32842", "3", "2016-06-16 03:03:59", "5.9.98.130", "2998");
INSERT INTO `wp_gf_form_view` VALUES("32843", "11", "2016-06-16 03:32:08", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32844", "2", "2016-06-16 03:32:13", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32845", "12", "2016-06-16 03:33:46", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32846", "1", "2016-06-16 03:34:19", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32847", "10", "2016-06-16 03:38:00", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32848", "8", "2016-06-16 03:38:18", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32849", "9", "2016-06-16 03:38:26", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32850", "5", "2016-06-16 03:39:10", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32851", "6", "2016-06-16 03:42:41", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32852", "3", "2016-06-16 04:00:01", "5.9.98.130", "3021");
INSERT INTO `wp_gf_form_view` VALUES("32853", "3", "2016-06-16 05:00:01", "5.9.98.130", "2115");
INSERT INTO `wp_gf_form_view` VALUES("32854", "1", "2016-06-16 05:12:02", "66.249.84.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("32855", "3", "2016-06-16 06:00:03", "5.9.98.130", "3555");
INSERT INTO `wp_gf_form_view` VALUES("32856", "3", "2016-06-16 07:00:01", "5.9.98.130", "1422");
INSERT INTO `wp_gf_form_view` VALUES("32857", "3", "2016-06-16 08:00:00", "5.9.98.130", "4946");
INSERT INTO `wp_gf_form_view` VALUES("32858", "3", "2016-06-16 09:00:00", "5.9.98.130", "2691");
INSERT INTO `wp_gf_form_view` VALUES("32859", "1", "2016-06-16 09:54:23", "149.202.151.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("32860", "3", "2016-06-16 10:01:34", "68.180.229.224", "650");
INSERT INTO `wp_gf_form_view` VALUES("32861", "3", "2016-06-16 11:03:39", "46.185.68.84", "493");
INSERT INTO `wp_gf_form_view` VALUES("32862", "3", "2016-06-16 12:00:01", "5.9.98.130", "1968");
INSERT INTO `wp_gf_form_view` VALUES("32863", "9", "2016-06-16 12:35:31", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("32864", "3", "2016-06-16 13:30:45", "51.255.65.21", "10");
INSERT INTO `wp_gf_form_view` VALUES("32865", "3", "2016-06-16 14:38:14", "207.46.13.114", "6");
INSERT INTO `wp_gf_form_view` VALUES("32866", "3", "2016-06-16 15:15:00", "37.115.187.45", "68");
INSERT INTO `wp_gf_form_view` VALUES("32867", "3", "2016-06-16 15:15:00", "37.115.187.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("32868", "10", "2016-06-16 15:30:17", "77.75.76.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("32869", "3", "2016-06-16 16:08:13", "51.255.65.24", "30");
INSERT INTO `wp_gf_form_view` VALUES("32870", "3", "2016-06-16 17:18:50", "77.75.76.165", "34");
INSERT INTO `wp_gf_form_view` VALUES("32871", "3", "2016-06-16 18:41:26", "157.55.39.73", "26");
INSERT INTO `wp_gf_form_view` VALUES("32872", "9", "2016-06-16 19:51:09", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32873", "3", "2016-06-16 19:54:26", "188.208.6.236", "28");
INSERT INTO `wp_gf_form_view` VALUES("32874", "10", "2016-06-16 19:58:28", "51.255.65.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("32875", "3", "2016-06-16 20:06:38", "157.55.39.73", "60");
INSERT INTO `wp_gf_form_view` VALUES("32876", "1", "2016-06-16 20:23:42", "193.180.244.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("32877", "3", "2016-06-16 21:24:22", "37.115.187.45", "19");
INSERT INTO `wp_gf_form_view` VALUES("32878", "3", "2016-06-16 22:10:19", "66.249.79.162", "37");
INSERT INTO `wp_gf_form_view` VALUES("32879", "3", "2016-06-16 23:15:09", "176.9.20.239", "55");
INSERT INTO `wp_gf_form_view` VALUES("32880", "11", "2016-06-16 23:19:49", "77.75.79.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("32881", "3", "2016-06-17 00:11:09", "66.249.79.169", "108");
INSERT INTO `wp_gf_form_view` VALUES("32882", "12", "2016-06-17 00:24:02", "52.90.100.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("32883", "3", "2016-06-17 01:21:28", "192.240.245.144", "135");
INSERT INTO `wp_gf_form_view` VALUES("32884", "7", "2016-06-17 02:17:18", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32885", "3", "2016-06-17 02:17:18", "68.180.229.224", "72");
INSERT INTO `wp_gf_form_view` VALUES("32886", "3", "2016-06-17 03:11:56", "178.137.164.226", "49");
INSERT INTO `wp_gf_form_view` VALUES("32887", "3", "2016-06-17 04:04:50", "68.180.229.224", "88");
INSERT INTO `wp_gf_form_view` VALUES("32888", "3", "2016-06-17 05:33:53", "184.66.248.89", "54");
INSERT INTO `wp_gf_form_view` VALUES("32889", "3", "2016-06-17 05:33:53", "184.66.248.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("32890", "12", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32891", "2", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32892", "3", "2016-06-17 06:05:49", "104.236.82.54", "226");
INSERT INTO `wp_gf_form_view` VALUES("32893", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32894", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32895", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32896", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32897", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32898", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32899", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32900", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32901", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32902", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32903", "11", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("32904", "3", "2016-06-17 07:13:11", "68.180.229.224", "54");
INSERT INTO `wp_gf_form_view` VALUES("32905", "12", "2016-06-17 07:14:25", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32906", "3", "2016-06-17 08:01:00", "202.46.49.117", "36");
INSERT INTO `wp_gf_form_view` VALUES("32907", "8", "2016-06-17 08:29:34", "207.46.13.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("32908", "3", "2016-06-17 09:08:01", "202.46.54.70", "45");
INSERT INTO `wp_gf_form_view` VALUES("32909", "1", "2016-06-17 09:27:49", "120.202.249.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("32910", "3", "2016-06-17 10:09:28", "68.180.229.224", "128");
INSERT INTO `wp_gf_form_view` VALUES("32911", "3", "2016-06-17 11:00:17", "1.124.48.205", "185");
INSERT INTO `wp_gf_form_view` VALUES("32912", "2", "2016-06-17 11:01:12", "1.124.48.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("32913", "1", "2016-06-17 11:04:11", "1.124.48.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("32914", "3", "2016-06-17 12:30:47", "66.249.79.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("32915", "3", "2016-06-17 13:47:41", "207.46.13.114", "19");
INSERT INTO `wp_gf_form_view` VALUES("32916", "5", "2016-06-17 13:54:39", "202.46.51.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("32917", "3", "2016-06-17 14:13:24", "151.80.31.172", "146");
INSERT INTO `wp_gf_form_view` VALUES("32918", "3", "2016-06-17 15:45:43", "157.55.39.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("32919", "3", "2016-06-17 16:01:55", "70.66.183.64", "28");
INSERT INTO `wp_gf_form_view` VALUES("32920", "3", "2016-06-17 17:00:09", "207.46.13.114", "54");
INSERT INTO `wp_gf_form_view` VALUES("32921", "1", "2016-06-17 17:54:40", "24.69.133.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("32922", "1", "2016-06-17 18:02:03", "91.200.12.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("32923", "3", "2016-06-17 18:02:03", "91.200.12.76", "90");
INSERT INTO `wp_gf_form_view` VALUES("32924", "1", "2016-06-17 19:12:38", "157.55.39.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("32925", "3", "2016-06-17 19:12:38", "157.55.39.48", "46");
INSERT INTO `wp_gf_form_view` VALUES("32926", "10", "2016-06-17 20:03:46", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("32927", "3", "2016-06-17 20:03:46", "40.77.167.77", "65");
INSERT INTO `wp_gf_form_view` VALUES("32928", "12", "2016-06-17 20:23:04", "220.181.108.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("32929", "3", "2016-06-17 21:12:29", "51.255.65.24", "28");
INSERT INTO `wp_gf_form_view` VALUES("32930", "3", "2016-06-17 22:10:30", "184.69.163.74", "74");
INSERT INTO `wp_gf_form_view` VALUES("32931", "3", "2016-06-17 23:11:28", "202.46.58.122", "18");
INSERT INTO `wp_gf_form_view` VALUES("32932", "3", "2016-06-18 00:58:46", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("32933", "3", "2016-06-18 01:24:22", "68.180.229.224", "19");
INSERT INTO `wp_gf_form_view` VALUES("32934", "3", "2016-06-18 02:23:31", "77.75.79.36", "27");
INSERT INTO `wp_gf_form_view` VALUES("32935", "3", "2016-06-18 03:08:09", "51.255.65.20", "123");
INSERT INTO `wp_gf_form_view` VALUES("32936", "3", "2016-06-18 04:06:08", "40.77.167.10", "1558");
INSERT INTO `wp_gf_form_view` VALUES("32937", "2", "2016-06-18 04:45:36", "72.76.243.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("32938", "12", "2016-06-18 04:46:16", "72.76.243.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("32939", "7", "2016-06-18 04:47:03", "72.76.243.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("32940", "11", "2016-06-18 04:47:24", "72.76.243.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("32941", "1", "2016-06-18 04:47:31", "72.76.243.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("32942", "5", "2016-06-18 04:48:07", "72.76.243.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("32943", "8", "2016-06-18 04:51:08", "72.76.243.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("32944", "9", "2016-06-18 04:51:57", "72.76.243.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("32945", "6", "2016-06-18 04:52:18", "72.76.243.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("32946", "10", "2016-06-18 04:54:53", "72.76.243.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("32947", "3", "2016-06-18 05:34:42", "51.255.65.53", "9");
INSERT INTO `wp_gf_form_view` VALUES("32948", "3", "2016-06-18 07:18:11", "77.75.78.163", "9");
INSERT INTO `wp_gf_form_view` VALUES("32949", "3", "2016-06-18 08:07:33", "66.249.79.176", "9");
INSERT INTO `wp_gf_form_view` VALUES("32950", "3", "2016-06-18 09:04:51", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("32951", "3", "2016-06-18 10:06:16", "66.249.79.169", "36");
INSERT INTO `wp_gf_form_view` VALUES("32952", "8", "2016-06-18 10:49:28", "202.46.54.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("32953", "3", "2016-06-18 12:05:04", "68.180.229.224", "28");
INSERT INTO `wp_gf_form_view` VALUES("32954", "12", "2016-06-18 13:50:18", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32955", "3", "2016-06-18 13:50:19", "68.180.229.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("32956", "3", "2016-06-18 14:08:12", "68.180.229.224", "46");
INSERT INTO `wp_gf_form_view` VALUES("32957", "10", "2016-06-18 15:02:10", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("32958", "3", "2016-06-18 15:02:10", "66.249.79.162", "37");
INSERT INTO `wp_gf_form_view` VALUES("32959", "3", "2016-06-18 16:20:54", "207.46.13.52", "364");
INSERT INTO `wp_gf_form_view` VALUES("32960", "10", "2016-06-18 16:20:57", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("32961", "12", "2016-06-18 16:21:01", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("32962", "9", "2016-06-18 16:21:06", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("32963", "7", "2016-06-18 16:21:14", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("32964", "8", "2016-06-18 16:21:22", "207.46.13.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("32965", "11", "2016-06-18 16:21:44", "207.46.13.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("32966", "2", "2016-06-18 16:58:48", "202.46.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("32967", "3", "2016-06-18 17:37:07", "194.225.185.5", "263");
INSERT INTO `wp_gf_form_view` VALUES("32968", "11", "2016-06-18 17:45:44", "88.11.217.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("32969", "12", "2016-06-18 17:46:13", "88.11.217.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("32970", "2", "2016-06-18 17:46:56", "88.11.217.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("32971", "3", "2016-06-18 18:04:56", "162.243.98.76", "3427");
INSERT INTO `wp_gf_form_view` VALUES("32972", "1", "2016-06-18 18:09:23", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32973", "11", "2016-06-18 18:09:48", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32974", "5", "2016-06-18 18:15:18", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32975", "12", "2016-06-18 18:19:03", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32976", "6", "2016-06-18 18:23:28", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32977", "9", "2016-06-18 18:31:18", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32978", "10", "2016-06-18 18:50:48", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32979", "3", "2016-06-18 19:01:34", "162.243.98.76", "1835");
INSERT INTO `wp_gf_form_view` VALUES("32980", "2", "2016-06-18 19:14:03", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32981", "8", "2016-06-18 19:27:58", "162.243.98.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("32982", "3", "2016-06-18 20:36:11", "66.249.79.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("32983", "3", "2016-06-18 21:15:47", "66.249.79.169", "108");
INSERT INTO `wp_gf_form_view` VALUES("32984", "3", "2016-06-18 22:00:33", "66.249.75.188", "27");
INSERT INTO `wp_gf_form_view` VALUES("32985", "3", "2016-06-18 23:03:41", "77.75.79.36", "31");
INSERT INTO `wp_gf_form_view` VALUES("32986", "2", "2016-06-19 00:10:18", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("32987", "3", "2016-06-19 00:10:19", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("32988", "3", "2016-06-19 01:27:07", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("32989", "3", "2016-06-19 02:32:17", "216.252.84.27", "18");
INSERT INTO `wp_gf_form_view` VALUES("32990", "3", "2016-06-19 03:01:47", "202.46.49.119", "13");
INSERT INTO `wp_gf_form_view` VALUES("32991", "10", "2016-06-19 04:11:53", "207.46.13.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("32992", "3", "2016-06-19 04:11:55", "207.46.13.44", "18");
INSERT INTO `wp_gf_form_view` VALUES("32993", "3", "2016-06-19 06:05:04", "66.249.79.176", "96");
INSERT INTO `wp_gf_form_view` VALUES("32994", "10", "2016-06-19 06:40:13", "51.255.65.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("32995", "3", "2016-06-19 07:04:06", "66.249.79.162", "46");
INSERT INTO `wp_gf_form_view` VALUES("32996", "10", "2016-06-19 08:10:21", "207.46.13.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("32997", "3", "2016-06-19 08:10:22", "207.46.13.114", "135");
INSERT INTO `wp_gf_form_view` VALUES("32998", "2", "2016-06-19 08:11:20", "104.156.230.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("32999", "3", "2016-06-19 09:10:08", "66.249.79.169", "46");
INSERT INTO `wp_gf_form_view` VALUES("33000", "3", "2016-06-19 10:10:40", "66.249.79.176", "37");
INSERT INTO `wp_gf_form_view` VALUES("33001", "3", "2016-06-19 11:26:31", "68.180.229.224", "39");
INSERT INTO `wp_gf_form_view` VALUES("33002", "3", "2016-06-19 12:31:42", "164.132.161.69", "28");
INSERT INTO `wp_gf_form_view` VALUES("33003", "3", "2016-06-19 13:48:30", "207.46.13.52", "18");
INSERT INTO `wp_gf_form_view` VALUES("33004", "1", "2016-06-19 14:07:54", "104.254.212.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("33005", "3", "2016-06-19 14:07:54", "104.254.212.100", "54");
INSERT INTO `wp_gf_form_view` VALUES("33006", "3", "2016-06-19 15:10:54", "195.34.78.57", "27");
INSERT INTO `wp_gf_form_view` VALUES("33007", "3", "2016-06-19 16:21:15", "77.75.79.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("33008", "1", "2016-06-19 17:09:25", "188.214.48.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("33009", "3", "2016-06-19 17:09:28", "188.214.48.145", "64");
INSERT INTO `wp_gf_form_view` VALUES("33010", "3", "2016-06-19 18:46:56", "207.46.13.52", "27");
INSERT INTO `wp_gf_form_view` VALUES("33011", "12", "2016-06-19 19:13:48", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("33012", "3", "2016-06-19 19:13:48", "66.249.79.169", "171");
INSERT INTO `wp_gf_form_view` VALUES("33013", "2", "2016-06-19 19:47:08", "45.32.130.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("33014", "3", "2016-06-19 20:01:52", "52.33.250.54", "81");
INSERT INTO `wp_gf_form_view` VALUES("33015", "3", "2016-06-19 21:07:07", "24.68.231.31", "19");
INSERT INTO `wp_gf_form_view` VALUES("33016", "3", "2016-06-19 22:04:17", "192.243.55.137", "84");
INSERT INTO `wp_gf_form_view` VALUES("33017", "12", "2016-06-19 22:47:09", "96.50.18.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("33018", "3", "2016-06-19 23:02:52", "46.185.68.84", "82");
INSERT INTO `wp_gf_form_view` VALUES("33019", "3", "2016-06-20 00:31:56", "192.243.55.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("33020", "3", "2016-06-20 01:11:21", "68.180.229.224", "57");
INSERT INTO `wp_gf_form_view` VALUES("33021", "11", "2016-06-20 01:47:38", "164.132.161.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("33022", "3", "2016-06-20 02:36:44", "207.46.13.44", "28");
INSERT INTO `wp_gf_form_view` VALUES("33023", "3", "2016-06-20 03:13:04", "134.249.54.248", "47");
INSERT INTO `wp_gf_form_view` VALUES("33024", "11", "2016-06-20 03:26:30", "207.46.13.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("33025", "3", "2016-06-20 04:34:46", "207.46.13.114", "10");
INSERT INTO `wp_gf_form_view` VALUES("33026", "3", "2016-06-20 05:29:51", "207.46.13.114", "45");
INSERT INTO `wp_gf_form_view` VALUES("33027", "5", "2016-06-20 05:43:49", "77.75.76.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("33028", "3", "2016-06-20 06:14:41", "207.46.13.114", "72");
INSERT INTO `wp_gf_form_view` VALUES("33029", "3", "2016-06-20 07:01:23", "77.75.76.169", "29");
INSERT INTO `wp_gf_form_view` VALUES("33030", "10", "2016-06-20 07:25:38", "199.59.148.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("33031", "3", "2016-06-20 08:04:49", "207.46.13.52", "66");
INSERT INTO `wp_gf_form_view` VALUES("33032", "10", "2016-06-20 08:36:34", "207.46.13.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("33033", "3", "2016-06-20 09:27:46", "199.59.148.209", "19");
INSERT INTO `wp_gf_form_view` VALUES("33034", "3", "2016-06-20 10:14:24", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("33035", "3", "2016-06-20 11:05:38", "192.243.55.132", "31");
INSERT INTO `wp_gf_form_view` VALUES("33036", "11", "2016-06-20 12:11:00", "157.55.39.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("33037", "3", "2016-06-20 12:11:01", "157.55.39.71", "73");
INSERT INTO `wp_gf_form_view` VALUES("33038", "3", "2016-06-20 13:07:28", "66.249.79.162", "75");
INSERT INTO `wp_gf_form_view` VALUES("33039", "1", "2016-06-20 13:19:49", "104.129.9.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("33040", "11", "2016-06-20 13:21:17", "157.55.39.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("33041", "3", "2016-06-20 14:09:46", "192.81.73.82", "65");
INSERT INTO `wp_gf_form_view` VALUES("33042", "3", "2016-06-20 15:07:50", "66.249.79.169", "45");
INSERT INTO `wp_gf_form_view` VALUES("33043", "2", "2016-06-20 15:20:10", "202.46.58.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("33044", "6", "2016-06-20 15:53:40", "202.46.55.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("33045", "3", "2016-06-20 16:00:34", "207.46.13.52", "45");
INSERT INTO `wp_gf_form_view` VALUES("33046", "1", "2016-06-20 16:51:37", "45.72.0.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("33047", "3", "2016-06-20 17:00:40", "202.46.54.23", "115");
INSERT INTO `wp_gf_form_view` VALUES("33048", "3", "2016-06-20 18:07:38", "202.46.58.59", "47");
INSERT INTO `wp_gf_form_view` VALUES("33049", "3", "2016-06-20 19:01:43", "164.132.161.64", "75");
INSERT INTO `wp_gf_form_view` VALUES("33050", "3", "2016-06-20 20:08:09", "192.243.55.138", "98");
INSERT INTO `wp_gf_form_view` VALUES("33051", "10", "2016-06-20 20:53:21", "164.132.161.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("33052", "3", "2016-06-20 21:01:32", "192.243.55.130", "72");
INSERT INTO `wp_gf_form_view` VALUES("33053", "3", "2016-06-20 22:02:50", "1.125.49.55", "45");
INSERT INTO `wp_gf_form_view` VALUES("33054", "1", "2016-06-20 23:10:28", "23.245.223.31", "2");
INSERT INTO `wp_gf_form_view` VALUES("33055", "3", "2016-06-20 23:10:29", "23.245.223.31", "127");
INSERT INTO `wp_gf_form_view` VALUES("33056", "11", "2016-06-20 23:13:51", "78.250.149.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("33057", "3", "2016-06-21 00:02:29", "68.180.229.224", "56");
INSERT INTO `wp_gf_form_view` VALUES("33058", "3", "2016-06-21 01:14:28", "207.46.13.114", "76");
INSERT INTO `wp_gf_form_view` VALUES("33059", "3", "2016-06-21 02:02:22", "72.143.235.130", "36");
INSERT INTO `wp_gf_form_view` VALUES("33060", "7", "2016-06-21 02:40:24", "40.77.167.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("33061", "3", "2016-06-21 03:15:02", "24.68.232.76", "523");
INSERT INTO `wp_gf_form_view` VALUES("33062", "3", "2016-06-21 03:15:02", "24.68.232.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("33063", "10", "2016-06-21 03:17:03", "157.55.39.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("33064", "6", "2016-06-21 03:51:13", "157.55.39.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("33065", "5", "2016-06-21 03:51:20", "157.55.39.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("33066", "9", "2016-06-21 03:51:50", "157.55.39.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("33067", "8", "2016-06-21 03:51:56", "40.77.167.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("33068", "3", "2016-06-21 04:10:08", "40.77.167.37", "68");
INSERT INTO `wp_gf_form_view` VALUES("33069", "3", "2016-06-21 05:01:45", "66.249.79.176", "47");
INSERT INTO `wp_gf_form_view` VALUES("33070", "3", "2016-06-21 06:05:35", "134.249.54.248", "183");
INSERT INTO `wp_gf_form_view` VALUES("33071", "3", "2016-06-21 06:05:35", "134.249.54.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("33072", "1", "2016-06-21 06:47:25", "202.6.158.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("33073", "2", "2016-06-21 07:04:52", "157.55.39.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("33074", "3", "2016-06-21 07:04:57", "157.55.39.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("33075", "3", "2016-06-21 08:14:14", "40.77.167.77", "55");
INSERT INTO `wp_gf_form_view` VALUES("33076", "12", "2016-06-21 08:30:15", "40.77.167.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("33077", "3", "2016-06-21 09:08:05", "157.55.39.133", "27");
INSERT INTO `wp_gf_form_view` VALUES("33078", "3", "2016-06-21 10:03:22", "66.249.79.162", "36");
INSERT INTO `wp_gf_form_view` VALUES("33079", "3", "2016-06-21 11:01:00", "40.77.167.37", "27");
INSERT INTO `wp_gf_form_view` VALUES("33080", "3", "2016-06-21 12:15:00", "40.77.167.37", "54");
INSERT INTO `wp_gf_form_view` VALUES("33081", "6", "2016-06-21 12:37:05", "202.46.51.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("33082", "10", "2016-06-21 12:54:25", "51.255.65.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("33083", "3", "2016-06-21 13:17:54", "77.75.79.17", "41");
INSERT INTO `wp_gf_form_view` VALUES("33084", "3", "2016-06-21 14:01:42", "157.55.39.91", "36");
INSERT INTO `wp_gf_form_view` VALUES("33085", "3", "2016-06-21 15:04:32", "157.55.39.91", "28");
INSERT INTO `wp_gf_form_view` VALUES("33086", "3", "2016-06-21 16:00:31", "66.249.79.176", "28");
INSERT INTO `wp_gf_form_view` VALUES("33087", "3", "2016-06-21 17:02:13", "24.108.36.242", "67");
INSERT INTO `wp_gf_form_view` VALUES("33088", "3", "2016-06-21 18:23:12", "134.249.54.248", "66");
INSERT INTO `wp_gf_form_view` VALUES("33089", "3", "2016-06-21 19:02:20", "207.216.13.45", "55");
INSERT INTO `wp_gf_form_view` VALUES("33090", "3", "2016-06-21 20:03:45", "5.9.112.6", "54");
INSERT INTO `wp_gf_form_view` VALUES("33091", "3", "2016-06-21 21:02:44", "66.249.79.169", "344");
INSERT INTO `wp_gf_form_view` VALUES("33092", "11", "2016-06-21 21:15:56", "196.207.151.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("33093", "12", "2016-06-21 21:16:32", "196.207.151.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("33094", "2", "2016-06-21 21:17:19", "196.207.151.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("33095", "3", "2016-06-21 22:09:03", "66.249.79.162", "63");
INSERT INTO `wp_gf_form_view` VALUES("33096", "10", "2016-06-21 22:12:18", "202.46.56.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("33097", "3", "2016-06-21 23:02:15", "96.54.55.244", "81");
INSERT INTO `wp_gf_form_view` VALUES("33098", "11", "2016-06-21 23:12:06", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33099", "3", "2016-06-22 00:07:57", "66.249.79.169", "66");
INSERT INTO `wp_gf_form_view` VALUES("33100", "3", "2016-06-22 01:07:40", "50.65.7.246", "118");
INSERT INTO `wp_gf_form_view` VALUES("33101", "12", "2016-06-22 01:51:44", "157.55.39.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("33102", "3", "2016-06-22 02:02:17", "184.66.50.161", "45");
INSERT INTO `wp_gf_form_view` VALUES("33103", "3", "2016-06-22 03:15:03", "157.55.39.93", "27");
INSERT INTO `wp_gf_form_view` VALUES("33104", "3", "2016-06-22 04:10:36", "202.46.50.185", "10");
INSERT INTO `wp_gf_form_view` VALUES("33105", "3", "2016-06-22 05:53:43", "54.149.128.167", "256");
INSERT INTO `wp_gf_form_view` VALUES("33106", "8", "2016-06-22 05:53:59", "54.149.128.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("33107", "11", "2016-06-22 05:54:45", "54.149.128.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("33108", "1", "2016-06-22 07:21:52", "24.16.143.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("33109", "3", "2016-06-22 07:21:53", "24.16.143.88", "58");
INSERT INTO `wp_gf_form_view` VALUES("33110", "10", "2016-06-22 09:03:54", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33111", "3", "2016-06-22 09:03:55", "68.180.229.224", "47");
INSERT INTO `wp_gf_form_view` VALUES("33112", "3", "2016-06-22 10:33:49", "66.249.75.180", "27");
INSERT INTO `wp_gf_form_view` VALUES("33113", "3", "2016-06-22 11:10:18", "68.180.229.224", "65");
INSERT INTO `wp_gf_form_view` VALUES("33114", "3", "2016-06-22 12:59:08", "157.55.39.165", "9");
INSERT INTO `wp_gf_form_view` VALUES("33115", "3", "2016-06-22 13:15:25", "157.55.39.205", "81");
INSERT INTO `wp_gf_form_view` VALUES("33116", "1", "2016-06-22 13:33:53", "96.54.52.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("33117", "3", "2016-06-22 14:01:16", "68.180.229.224", "58");
INSERT INTO `wp_gf_form_view` VALUES("33118", "3", "2016-06-22 15:15:27", "51.255.65.97", "197");
INSERT INTO `wp_gf_form_view` VALUES("33119", "12", "2016-06-22 15:54:16", "96.50.7.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("33120", "2", "2016-06-22 15:58:46", "96.50.7.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("33121", "3", "2016-06-22 16:08:30", "66.249.79.162", "36");
INSERT INTO `wp_gf_form_view` VALUES("33122", "1", "2016-06-22 16:54:23", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("33123", "3", "2016-06-22 17:41:49", "157.55.39.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("33124", "3", "2016-06-22 18:10:25", "66.249.79.176", "45");
INSERT INTO `wp_gf_form_view` VALUES("33125", "9", "2016-06-22 18:16:06", "66.249.79.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("33126", "3", "2016-06-22 19:07:23", "66.249.79.176", "79");
INSERT INTO `wp_gf_form_view` VALUES("33127", "3", "2016-06-22 20:01:06", "96.50.16.236", "173");
INSERT INTO `wp_gf_form_view` VALUES("33128", "8", "2016-06-22 20:17:00", "76.14.191.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("33129", "3", "2016-06-22 21:04:01", "207.46.13.28", "27");
INSERT INTO `wp_gf_form_view` VALUES("33130", "3", "2016-06-22 22:16:03", "108.62.59.248", "75");
INSERT INTO `wp_gf_form_view` VALUES("33131", "3", "2016-06-22 22:16:03", "173.234.14.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33132", "1", "2016-06-22 22:22:22", "24.16.143.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("33133", "3", "2016-06-22 23:12:42", "178.137.84.39", "65");
INSERT INTO `wp_gf_form_view` VALUES("33134", "3", "2016-06-22 23:12:42", "178.137.84.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("33135", "3", "2016-06-22 23:12:42", "178.137.84.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("33136", "3", "2016-06-22 23:12:42", "178.137.84.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("33137", "3", "2016-06-23 00:27:58", "157.55.39.93", "18");
INSERT INTO `wp_gf_form_view` VALUES("33138", "3", "2016-06-23 01:07:22", "66.249.79.169", "36");
INSERT INTO `wp_gf_form_view` VALUES("33139", "3", "2016-06-23 02:02:07", "66.249.79.176", "54");
INSERT INTO `wp_gf_form_view` VALUES("33140", "3", "2016-06-23 03:08:42", "66.249.79.169", "45");
INSERT INTO `wp_gf_form_view` VALUES("33141", "9", "2016-06-23 03:18:56", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("33142", "3", "2016-06-23 04:01:52", "68.180.229.224", "47");
INSERT INTO `wp_gf_form_view` VALUES("33143", "3", "2016-06-23 05:10:39", "68.180.229.224", "281");
INSERT INTO `wp_gf_form_view` VALUES("33144", "11", "2016-06-23 05:31:11", "92.59.49.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("33145", "12", "2016-06-23 05:33:34", "92.59.49.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("33146", "2", "2016-06-23 05:36:26", "92.59.49.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("33147", "3", "2016-06-23 06:06:46", "66.249.79.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("33148", "12", "2016-06-23 06:40:43", "157.55.39.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("33149", "3", "2016-06-23 07:40:30", "217.69.133.228", "20");
INSERT INTO `wp_gf_form_view` VALUES("33150", "10", "2016-06-23 08:16:47", "77.75.78.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("33151", "3", "2016-06-23 08:16:48", "77.75.78.167", "82");
INSERT INTO `wp_gf_form_view` VALUES("33152", "3", "2016-06-23 09:32:06", "157.55.39.205", "36");
INSERT INTO `wp_gf_form_view` VALUES("33153", "3", "2016-06-23 10:13:07", "157.55.39.93", "36");
INSERT INTO `wp_gf_form_view` VALUES("33154", "10", "2016-06-23 10:37:35", "157.55.39.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("33155", "3", "2016-06-23 11:15:03", "68.180.229.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("33156", "3", "2016-06-23 12:30:02", "202.46.55.19", "9");
INSERT INTO `wp_gf_form_view` VALUES("33157", "3", "2016-06-23 13:34:04", "66.249.79.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("33158", "3", "2016-06-23 14:05:09", "66.249.79.176", "9");
INSERT INTO `wp_gf_form_view` VALUES("33159", "3", "2016-06-23 15:04:30", "202.46.48.120", "75");
INSERT INTO `wp_gf_form_view` VALUES("33160", "3", "2016-06-23 16:14:05", "141.8.143.242", "28");
INSERT INTO `wp_gf_form_view` VALUES("33161", "3", "2016-06-23 17:08:37", "191.101.24.10", "519");
INSERT INTO `wp_gf_form_view` VALUES("33162", "9", "2016-06-23 17:35:03", "207.46.13.59", "3");
INSERT INTO `wp_gf_form_view` VALUES("33163", "10", "2016-06-23 17:35:19", "207.46.13.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("33164", "12", "2016-06-23 17:35:28", "207.46.13.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("33165", "7", "2016-06-23 17:35:30", "207.46.13.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("33166", "8", "2016-06-23 17:36:00", "157.55.39.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("33167", "1", "2016-06-23 17:36:15", "207.46.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("33168", "11", "2016-06-23 17:36:18", "207.46.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("33169", "3", "2016-06-23 18:03:52", "207.46.13.28", "19");
INSERT INTO `wp_gf_form_view` VALUES("33170", "3", "2016-06-23 19:12:30", "142.36.63.33", "99");
INSERT INTO `wp_gf_form_view` VALUES("33171", "3", "2016-06-23 20:04:55", "202.46.56.98", "71");
INSERT INTO `wp_gf_form_view` VALUES("33172", "3", "2016-06-23 21:19:35", "202.46.54.186", "48");
INSERT INTO `wp_gf_form_view` VALUES("33173", "3", "2016-06-23 22:31:40", "66.249.79.176", "56");
INSERT INTO `wp_gf_form_view` VALUES("33174", "9", "2016-06-23 22:42:37", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("33175", "3", "2016-06-23 23:13:48", "217.69.133.228", "103");
INSERT INTO `wp_gf_form_view` VALUES("33176", "3", "2016-06-24 00:12:59", "192.243.55.132", "81");
INSERT INTO `wp_gf_form_view` VALUES("33177", "3", "2016-06-24 01:14:18", "207.46.13.28", "29");
INSERT INTO `wp_gf_form_view` VALUES("33178", "3", "2016-06-24 02:12:05", "157.55.39.205", "117");
INSERT INTO `wp_gf_form_view` VALUES("33179", "10", "2016-06-24 02:24:04", "66.249.79.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("33180", "9", "2016-06-24 02:47:06", "66.249.75.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("33181", "3", "2016-06-24 03:44:15", "51.255.65.6", "20");
INSERT INTO `wp_gf_form_view` VALUES("33182", "3", "2016-06-24 04:04:36", "202.46.58.210", "58");
INSERT INTO `wp_gf_form_view` VALUES("33183", "3", "2016-06-24 05:04:22", "207.46.13.28", "37");
INSERT INTO `wp_gf_form_view` VALUES("33184", "3", "2016-06-24 06:02:01", "199.21.99.202", "29");
INSERT INTO `wp_gf_form_view` VALUES("33185", "3", "2016-06-24 07:18:52", "68.180.229.224", "27");
INSERT INTO `wp_gf_form_view` VALUES("33186", "12", "2016-06-24 07:19:35", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33187", "3", "2016-06-24 08:14:38", "207.46.13.28", "54");
INSERT INTO `wp_gf_form_view` VALUES("33188", "3", "2016-06-24 09:05:07", "194.187.170.219", "92");
INSERT INTO `wp_gf_form_view` VALUES("33189", "3", "2016-06-24 10:04:09", "194.187.170.219", "147");
INSERT INTO `wp_gf_form_view` VALUES("33190", "3", "2016-06-24 11:07:59", "194.187.170.211", "75");
INSERT INTO `wp_gf_form_view` VALUES("33191", "2", "2016-06-24 11:30:08", "194.187.170.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("33192", "3", "2016-06-24 12:15:45", "164.132.161.2", "128");
INSERT INTO `wp_gf_form_view` VALUES("33193", "3", "2016-06-24 13:04:02", "194.187.170.219", "56");
INSERT INTO `wp_gf_form_view` VALUES("33194", "3", "2016-06-24 14:05:03", "194.187.170.213", "76");
INSERT INTO `wp_gf_form_view` VALUES("33195", "10", "2016-06-24 14:57:06", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33196", "10", "2016-06-24 15:02:00", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33197", "3", "2016-06-24 15:02:00", "68.180.229.224", "116");
INSERT INTO `wp_gf_form_view` VALUES("33198", "3", "2016-06-24 16:52:00", "66.249.79.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("33199", "3", "2016-06-24 17:08:30", "79.125.111.42", "18");
INSERT INTO `wp_gf_form_view` VALUES("33200", "3", "2016-06-24 18:31:40", "131.137.245.207", "82");
INSERT INTO `wp_gf_form_view` VALUES("33201", "12", "2016-06-24 18:45:07", "24.108.43.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("33202", "3", "2016-06-24 19:01:49", "68.180.229.224", "55");
INSERT INTO `wp_gf_form_view` VALUES("33203", "3", "2016-06-24 20:02:03", "217.69.133.69", "113");
INSERT INTO `wp_gf_form_view` VALUES("33204", "3", "2016-06-24 21:15:41", "178.137.93.129", "103");
INSERT INTO `wp_gf_form_view` VALUES("33205", "1", "2016-06-24 21:35:04", "192.249.67.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("33206", "3", "2016-06-24 22:04:46", "192.243.55.132", "120");
INSERT INTO `wp_gf_form_view` VALUES("33207", "12", "2016-06-24 22:57:48", "24.69.152.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("33208", "3", "2016-06-24 23:13:32", "66.249.79.169", "137");
INSERT INTO `wp_gf_form_view` VALUES("33209", "1", "2016-06-24 23:48:56", "118.189.157.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("33210", "3", "2016-06-25 00:08:02", "178.137.83.34", "105");
INSERT INTO `wp_gf_form_view` VALUES("33211", "9", "2016-06-25 00:30:16", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("33212", "7", "2016-06-25 00:53:12", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("33213", "3", "2016-06-25 01:01:23", "68.180.229.224", "73");
INSERT INTO `wp_gf_form_view` VALUES("33214", "3", "2016-06-25 02:01:50", "192.243.55.131", "113");
INSERT INTO `wp_gf_form_view` VALUES("33215", "10", "2016-06-25 03:28:19", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33216", "3", "2016-06-25 03:28:22", "68.180.229.224", "289");
INSERT INTO `wp_gf_form_view` VALUES("33217", "12", "2016-06-25 03:44:25", "202.46.52.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("33218", "11", "2016-06-25 03:49:49", "2.51.207.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("33219", "2", "2016-06-25 03:53:22", "2.51.207.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("33220", "1", "2016-06-25 03:53:48", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("33221", "3", "2016-06-25 04:12:04", "66.249.79.162", "73");
INSERT INTO `wp_gf_form_view` VALUES("33222", "3", "2016-06-25 05:02:47", "66.249.79.169", "163");
INSERT INTO `wp_gf_form_view` VALUES("33223", "11", "2016-06-25 05:29:50", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("33224", "2", "2016-06-25 05:29:54", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("33225", "12", "2016-06-25 05:58:20", "24.108.193.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("33226", "3", "2016-06-25 06:17:14", "139.194.53.163", "9");
INSERT INTO `wp_gf_form_view` VALUES("33227", "3", "2016-06-25 07:27:49", "204.79.180.150", "55");
INSERT INTO `wp_gf_form_view` VALUES("33228", "1", "2016-06-25 07:37:39", "192.249.67.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("33229", "3", "2016-06-25 08:02:48", "192.243.55.129", "47");
INSERT INTO `wp_gf_form_view` VALUES("33230", "3", "2016-06-25 09:08:27", "192.243.55.135", "147");
INSERT INTO `wp_gf_form_view` VALUES("33231", "3", "2016-06-25 10:09:19", "66.249.79.169", "27");
INSERT INTO `wp_gf_form_view` VALUES("33232", "1", "2016-06-25 10:48:08", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33233", "3", "2016-06-25 11:07:19", "202.46.56.13", "36");
INSERT INTO `wp_gf_form_view` VALUES("33234", "3", "2016-06-25 12:06:49", "141.8.143.242", "46");
INSERT INTO `wp_gf_form_view` VALUES("33235", "3", "2016-06-25 13:13:52", "199.21.99.202", "28");
INSERT INTO `wp_gf_form_view` VALUES("33236", "10", "2016-06-25 13:15:54", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("33237", "12", "2016-06-25 13:51:40", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33238", "3", "2016-06-25 14:11:55", "68.180.229.224", "38");
INSERT INTO `wp_gf_form_view` VALUES("33239", "3", "2016-06-25 15:17:38", "68.180.229.224", "27");
INSERT INTO `wp_gf_form_view` VALUES("33240", "3", "2016-06-25 16:31:53", "66.249.75.188", "39");
INSERT INTO `wp_gf_form_view` VALUES("33241", "3", "2016-06-25 17:16:33", "157.55.39.194", "18");
INSERT INTO `wp_gf_form_view` VALUES("33242", "3", "2016-06-25 18:01:58", "66.249.79.162", "731");
INSERT INTO `wp_gf_form_view` VALUES("33243", "2", "2016-06-25 18:54:46", "5.79.68.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("33244", "12", "2016-06-25 18:55:03", "5.79.68.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("33245", "11", "2016-06-25 18:55:33", "5.79.68.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("33246", "1", "2016-06-25 18:55:51", "5.79.68.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("33247", "10", "2016-06-25 18:56:19", "5.79.68.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("33248", "3", "2016-06-25 19:44:32", "178.137.84.39", "72");
INSERT INTO `wp_gf_form_view` VALUES("33249", "3", "2016-06-25 20:10:47", "178.137.93.129", "64");
INSERT INTO `wp_gf_form_view` VALUES("33250", "12", "2016-06-25 21:20:14", "104.236.68.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("33251", "11", "2016-06-25 21:20:13", "104.236.68.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("33252", "3", "2016-06-25 21:20:14", "104.236.68.137", "209");
INSERT INTO `wp_gf_form_view` VALUES("33253", "3", "2016-06-25 21:20:14", "104.236.68.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("33254", "2", "2016-06-25 21:20:14", "104.236.68.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("33255", "3", "2016-06-25 22:25:19", "202.46.50.19", "55");
INSERT INTO `wp_gf_form_view` VALUES("33256", "1", "2016-06-25 22:56:20", "209.222.100.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("33257", "3", "2016-06-25 23:40:26", "157.55.39.63", "9");
INSERT INTO `wp_gf_form_view` VALUES("33258", "2", "2016-06-26 00:11:29", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33259", "3", "2016-06-26 00:11:29", "68.180.229.224", "56");
INSERT INTO `wp_gf_form_view` VALUES("33260", "3", "2016-06-26 01:01:01", "164.132.161.69", "18");
INSERT INTO `wp_gf_form_view` VALUES("33261", "3", "2016-06-26 03:06:50", "202.46.54.207", "18");
INSERT INTO `wp_gf_form_view` VALUES("33262", "3", "2016-06-26 04:24:04", "68.180.229.224", "13");
INSERT INTO `wp_gf_form_view` VALUES("33263", "3", "2016-06-26 05:00:50", "91.200.12.4", "63");
INSERT INTO `wp_gf_form_view` VALUES("33264", "3", "2016-06-26 06:18:10", "68.180.229.224", "19");
INSERT INTO `wp_gf_form_view` VALUES("33265", "3", "2016-06-26 07:09:23", "194.187.170.207", "146");
INSERT INTO `wp_gf_form_view` VALUES("33266", "1", "2016-06-26 07:14:56", "107.161.84.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("33267", "3", "2016-06-26 08:05:57", "107.150.78.212", "105");
INSERT INTO `wp_gf_form_view` VALUES("33268", "2", "2016-06-26 08:07:56", "194.187.170.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("33269", "3", "2016-06-26 09:01:53", "66.249.79.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("33270", "3", "2016-06-26 11:00:13", "207.46.13.25", "38");
INSERT INTO `wp_gf_form_view` VALUES("33271", "3", "2016-06-26 12:41:05", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("33272", "3", "2016-06-26 13:11:17", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("33273", "3", "2016-06-26 14:34:04", "80.147.23.181", "45");
INSERT INTO `wp_gf_form_view` VALUES("33274", "10", "2016-06-26 14:35:30", "51.255.65.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("33275", "3", "2016-06-26 15:06:32", "194.187.170.218", "91");
INSERT INTO `wp_gf_form_view` VALUES("33276", "1", "2016-06-26 15:36:43", "194.187.170.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("33277", "3", "2016-06-26 16:02:17", "194.187.170.218", "21");
INSERT INTO `wp_gf_form_view` VALUES("33278", "3", "2016-06-26 17:11:00", "66.249.79.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("33279", "3", "2016-06-26 18:15:07", "68.180.229.224", "67");
INSERT INTO `wp_gf_form_view` VALUES("33280", "3", "2016-06-26 19:05:04", "178.137.93.129", "57");
INSERT INTO `wp_gf_form_view` VALUES("33281", "3", "2016-06-26 20:35:49", "124.73.6.138", "18");
INSERT INTO `wp_gf_form_view` VALUES("33282", "3", "2016-06-26 21:00:30", "157.55.39.63", "90");
INSERT INTO `wp_gf_form_view` VALUES("33283", "10", "2016-06-26 21:08:21", "207.46.13.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("33284", "8", "2016-06-26 21:14:07", "66.249.79.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("33285", "1", "2016-06-26 21:21:40", "5.189.142.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("33286", "3", "2016-06-26 22:20:42", "124.73.6.138", "18");
INSERT INTO `wp_gf_form_view` VALUES("33287", "3", "2016-06-26 23:32:05", "68.180.229.224", "82");
INSERT INTO `wp_gf_form_view` VALUES("33288", "5", "2016-06-26 23:34:38", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33289", "3", "2016-06-27 00:02:22", "202.46.49.67", "48");
INSERT INTO `wp_gf_form_view` VALUES("33290", "3", "2016-06-27 01:02:32", "157.55.39.194", "59");
INSERT INTO `wp_gf_form_view` VALUES("33291", "1", "2016-06-27 01:29:06", "104.227.210.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33292", "3", "2016-06-27 02:54:44", "66.249.79.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("33293", "3", "2016-06-27 04:17:05", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("33294", "3", "2016-06-27 05:02:13", "157.55.39.194", "38");
INSERT INTO `wp_gf_form_view` VALUES("33295", "3", "2016-06-27 06:31:16", "51.255.65.21", "10");
INSERT INTO `wp_gf_form_view` VALUES("33296", "3", "2016-06-27 07:14:25", "178.137.83.34", "91");
INSERT INTO `wp_gf_form_view` VALUES("33297", "3", "2016-06-27 07:14:25", "178.137.83.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("33298", "3", "2016-06-27 07:14:25", "178.137.83.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("33299", "1", "2016-06-27 07:41:20", "5.189.142.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("33300", "3", "2016-06-27 08:01:54", "194.187.170.208", "103");
INSERT INTO `wp_gf_form_view` VALUES("33301", "10", "2016-06-27 08:04:07", "194.187.170.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("33302", "8", "2016-06-27 08:23:58", "194.187.170.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("33303", "3", "2016-06-27 09:13:02", "194.187.170.208", "58");
INSERT INTO `wp_gf_form_view` VALUES("33304", "3", "2016-06-27 10:21:08", "178.137.93.129", "41");
INSERT INTO `wp_gf_form_view` VALUES("33305", "3", "2016-06-27 11:40:10", "66.249.79.169", "18");
INSERT INTO `wp_gf_form_view` VALUES("33306", "3", "2016-06-27 12:35:17", "124.73.6.138", "27");
INSERT INTO `wp_gf_form_view` VALUES("33307", "3", "2016-06-27 13:13:25", "68.180.229.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("33308", "1", "2016-06-27 14:06:18", "187.161.241.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("33309", "3", "2016-06-27 14:06:19", "187.161.241.2", "28");
INSERT INTO `wp_gf_form_view` VALUES("33310", "3", "2016-06-27 15:01:48", "68.180.229.224", "57");
INSERT INTO `wp_gf_form_view` VALUES("33311", "10", "2016-06-27 15:57:39", "199.59.148.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("33312", "3", "2016-06-27 16:00:04", "70.66.170.202", "104");
INSERT INTO `wp_gf_form_view` VALUES("33313", "10", "2016-06-27 16:18:13", "194.187.170.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("33314", "8", "2016-06-27 16:41:40", "194.187.170.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("33315", "3", "2016-06-27 17:02:44", "199.16.156.124", "63");
INSERT INTO `wp_gf_form_view` VALUES("33316", "11", "2016-06-27 17:42:04", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("33317", "1", "2016-06-27 17:53:51", "202.46.56.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("33318", "3", "2016-06-27 18:09:12", "24.69.79.46", "162");
INSERT INTO `wp_gf_form_view` VALUES("33319", "3", "2016-06-27 19:00:49", "202.46.56.209", "56");
INSERT INTO `wp_gf_form_view` VALUES("33320", "3", "2016-06-27 20:30:04", "96.50.16.236", "108");
INSERT INTO `wp_gf_form_view` VALUES("33321", "3", "2016-06-27 21:05:43", "70.66.184.178", "83");
INSERT INTO `wp_gf_form_view` VALUES("33322", "1", "2016-06-27 21:33:35", "37.72.191.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("33323", "3", "2016-06-27 22:31:35", "178.137.84.39", "28");
INSERT INTO `wp_gf_form_view` VALUES("33324", "3", "2016-06-27 23:43:15", "77.75.78.169", "19");
INSERT INTO `wp_gf_form_view` VALUES("33325", "11", "2016-06-28 00:02:16", "124.73.6.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("33326", "3", "2016-06-28 00:02:16", "124.73.6.138", "167");
INSERT INTO `wp_gf_form_view` VALUES("33327", "9", "2016-06-28 00:07:55", "207.46.13.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("33328", "12", "2016-06-28 00:24:38", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("33329", "10", "2016-06-28 00:33:15", "194.187.170.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33330", "8", "2016-06-28 00:54:56", "194.187.170.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33331", "3", "2016-06-28 01:02:20", "194.187.170.221", "104");
INSERT INTO `wp_gf_form_view` VALUES("33332", "1", "2016-06-28 01:11:26", "96.54.210.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("33333", "3", "2016-06-28 02:05:30", "202.46.51.84", "474");
INSERT INTO `wp_gf_form_view` VALUES("33334", "8", "2016-06-28 02:47:07", "157.55.39.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("33335", "5", "2016-06-28 02:47:11", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("33336", "6", "2016-06-28 02:47:16", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("33337", "10", "2016-06-28 02:47:27", "157.55.39.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("33338", "9", "2016-06-28 02:47:33", "207.46.13.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("33339", "3", "2016-06-28 03:03:32", "108.180.31.157", "45");
INSERT INTO `wp_gf_form_view` VALUES("33340", "1", "2016-06-28 03:47:43", "24.68.38.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("33341", "1", "2016-06-28 04:10:16", "107.150.74.65", "6");
INSERT INTO `wp_gf_form_view` VALUES("33342", "3", "2016-06-28 04:10:17", "107.150.74.65", "149");
INSERT INTO `wp_gf_form_view` VALUES("33343", "3", "2016-06-28 05:02:07", "66.249.79.162", "102");
INSERT INTO `wp_gf_form_view` VALUES("33344", "6", "2016-06-28 05:08:28", "144.76.71.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("33345", "12", "2016-06-28 05:35:44", "24.108.193.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("33346", "1", "2016-06-28 05:58:49", "104.160.28.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("33347", "3", "2016-06-28 06:07:51", "199.21.99.202", "65");
INSERT INTO `wp_gf_form_view` VALUES("33348", "10", "2016-06-28 06:28:07", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33349", "3", "2016-06-28 07:12:05", "66.249.79.169", "58");
INSERT INTO `wp_gf_form_view` VALUES("33350", "1", "2016-06-28 07:41:25", "107.150.74.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("33351", "10", "2016-06-28 08:28:42", "202.46.58.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("33352", "3", "2016-06-28 08:28:48", "202.46.58.152", "9");
INSERT INTO `wp_gf_form_view` VALUES("33353", "3", "2016-06-28 09:01:57", "202.46.51.194", "85");
INSERT INTO `wp_gf_form_view` VALUES("33354", "1", "2016-06-28 09:28:09", "209.222.105.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("33355", "11", "2016-06-28 10:06:29", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33356", "3", "2016-06-28 10:06:30", "68.180.229.224", "36");
INSERT INTO `wp_gf_form_view` VALUES("33357", "3", "2016-06-28 11:34:18", "54.175.191.57", "56");
INSERT INTO `wp_gf_form_view` VALUES("33358", "6", "2016-06-28 11:38:04", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33359", "8", "2016-06-28 11:43:45", "194.187.170.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("33360", "10", "2016-06-28 11:48:51", "194.187.170.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("33361", "3", "2016-06-28 12:12:10", "194.187.170.220", "59");
INSERT INTO `wp_gf_form_view` VALUES("33362", "8", "2016-06-28 12:30:40", "194.187.170.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("33363", "10", "2016-06-28 12:35:27", "194.187.170.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("33364", "3", "2016-06-28 13:13:51", "66.249.79.169", "28");
INSERT INTO `wp_gf_form_view` VALUES("33365", "12", "2016-06-28 13:56:52", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33366", "3", "2016-06-28 14:33:04", "24.114.38.218", "37");
INSERT INTO `wp_gf_form_view` VALUES("33367", "3", "2016-06-28 15:01:36", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("33368", "3", "2016-06-28 16:08:14", "178.137.93.129", "50");
INSERT INTO `wp_gf_form_view` VALUES("33369", "3", "2016-06-28 16:08:14", "178.137.93.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("33370", "3", "2016-06-28 17:21:10", "178.137.93.129", "60");
INSERT INTO `wp_gf_form_view` VALUES("33371", "3", "2016-06-28 18:05:24", "178.137.93.129", "173");
INSERT INTO `wp_gf_form_view` VALUES("33372", "2", "2016-06-28 18:31:35", "54.211.205.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("33373", "10", "2016-06-28 19:05:07", "157.55.39.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("33374", "3", "2016-06-28 19:05:11", "157.55.39.246", "48");
INSERT INTO `wp_gf_form_view` VALUES("33375", "3", "2016-06-28 20:26:42", "157.55.39.90", "55");
INSERT INTO `wp_gf_form_view` VALUES("33376", "3", "2016-06-28 21:03:43", "205.250.182.195", "99");
INSERT INTO `wp_gf_form_view` VALUES("33377", "3", "2016-06-28 22:24:15", "192.243.55.129", "27");
INSERT INTO `wp_gf_form_view` VALUES("33378", "3", "2016-06-28 23:13:48", "178.137.93.129", "46");
INSERT INTO `wp_gf_form_view` VALUES("33379", "3", "2016-06-28 23:13:48", "178.137.93.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("33380", "3", "2016-06-29 00:10:39", "77.75.78.168", "80");
INSERT INTO `wp_gf_form_view` VALUES("33381", "3", "2016-06-29 01:32:52", "202.46.53.50", "9");
INSERT INTO `wp_gf_form_view` VALUES("33382", "3", "2016-06-29 02:16:01", "192.243.55.133", "27");
INSERT INTO `wp_gf_form_view` VALUES("33383", "3", "2016-06-29 03:16:00", "66.249.79.169", "2051");
INSERT INTO `wp_gf_form_view` VALUES("33384", "1", "2016-06-29 03:33:00", "104.131.118.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33385", "11", "2016-06-29 03:33:26", "104.131.118.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("33386", "5", "2016-06-29 03:39:17", "104.131.118.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33387", "12", "2016-06-29 03:42:20", "104.131.118.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33388", "6", "2016-06-29 03:47:06", "104.131.118.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33389", "9", "2016-06-29 03:54:56", "104.131.118.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33390", "3", "2016-06-29 04:00:16", "104.131.118.100", "3105");
INSERT INTO `wp_gf_form_view` VALUES("33391", "10", "2016-06-29 04:14:31", "104.131.118.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33392", "2", "2016-06-29 04:37:41", "104.131.118.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33393", "8", "2016-06-29 04:51:31", "104.131.118.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33394", "8", "2016-06-29 05:35:05", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("33395", "3", "2016-06-29 05:35:08", "66.249.79.176", "74");
INSERT INTO `wp_gf_form_view` VALUES("33396", "10", "2016-06-29 05:45:32", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("33397", "3", "2016-06-29 06:03:37", "24.68.41.139", "69");
INSERT INTO `wp_gf_form_view` VALUES("33398", "2", "2016-06-29 06:30:45", "192.243.55.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("33399", "3", "2016-06-29 07:07:19", "66.249.79.169", "28");
INSERT INTO `wp_gf_form_view` VALUES("33400", "1", "2016-06-29 08:12:03", "110.93.205.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("33401", "3", "2016-06-29 08:12:04", "110.93.205.242", "19");
INSERT INTO `wp_gf_form_view` VALUES("33402", "3", "2016-06-29 09:27:51", "51.255.65.11", "63");
INSERT INTO `wp_gf_form_view` VALUES("33403", "3", "2016-06-29 10:27:59", "157.55.39.194", "46");
INSERT INTO `wp_gf_form_view` VALUES("33404", "1", "2016-06-29 10:29:48", "182.74.209.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("33405", "3", "2016-06-29 11:15:26", "68.180.229.224", "36");
INSERT INTO `wp_gf_form_view` VALUES("33406", "3", "2016-06-29 12:02:21", "68.180.229.224", "79");
INSERT INTO `wp_gf_form_view` VALUES("33407", "1", "2016-06-29 13:17:50", "104.144.155.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("33408", "3", "2016-06-29 13:17:54", "104.144.155.143", "54");
INSERT INTO `wp_gf_form_view` VALUES("33409", "9", "2016-06-29 13:50:14", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("33410", "3", "2016-06-29 14:04:02", "68.180.229.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("33411", "3", "2016-06-29 15:18:54", "192.243.55.135", "54");
INSERT INTO `wp_gf_form_view` VALUES("33412", "1", "2016-06-29 15:31:03", "202.148.8.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("33413", "12", "2016-06-29 15:37:13", "124.73.8.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("33414", "3", "2016-06-29 16:12:55", "24.69.76.123", "56");
INSERT INTO `wp_gf_form_view` VALUES("33415", "8", "2016-06-29 17:13:15", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33416", "3", "2016-06-29 17:13:37", "194.187.170.203", "99");
INSERT INTO `wp_gf_form_view` VALUES("33417", "3", "2016-06-29 18:10:29", "24.108.28.160", "82");
INSERT INTO `wp_gf_form_view` VALUES("33418", "10", "2016-06-29 18:14:24", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("33419", "2", "2016-06-29 18:38:44", "194.187.170.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("33420", "3", "2016-06-29 19:07:09", "202.46.51.115", "73");
INSERT INTO `wp_gf_form_view` VALUES("33421", "3", "2016-06-29 20:06:59", "66.249.79.169", "36");
INSERT INTO `wp_gf_form_view` VALUES("33422", "10", "2016-06-29 20:30:10", "51.255.66.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("33423", "3", "2016-06-29 21:08:06", "66.249.79.176", "27");
INSERT INTO `wp_gf_form_view` VALUES("33424", "3", "2016-06-29 22:09:33", "72.2.46.1", "144");
INSERT INTO `wp_gf_form_view` VALUES("33425", "3", "2016-06-29 23:04:46", "108.180.150.145", "136");
INSERT INTO `wp_gf_form_view` VALUES("33426", "10", "2016-06-29 23:15:33", "77.75.78.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("33427", "3", "2016-06-30 00:03:28", "68.180.229.224", "10");
INSERT INTO `wp_gf_form_view` VALUES("33428", "3", "2016-06-30 01:00:07", "202.46.58.160", "46");
INSERT INTO `wp_gf_form_view` VALUES("33429", "3", "2016-06-30 02:07:06", "202.46.51.109", "86");
INSERT INTO `wp_gf_form_view` VALUES("33430", "11", "2016-06-30 03:17:40", "70.35.197.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("33431", "3", "2016-06-30 03:17:40", "70.35.197.138", "263");
INSERT INTO `wp_gf_form_view` VALUES("33432", "12", "2016-06-30 03:18:29", "70.35.197.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("33433", "2", "2016-06-30 03:20:07", "70.35.197.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("33434", "3", "2016-06-30 04:03:18", "68.180.229.224", "48");
INSERT INTO `wp_gf_form_view` VALUES("33435", "10", "2016-06-30 04:26:04", "199.16.156.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("33436", "3", "2016-06-30 05:10:12", "24.108.162.39", "2361");
INSERT INTO `wp_gf_form_view` VALUES("33437", "1", "2016-06-30 05:21:16", "24.108.162.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("33438", "11", "2016-06-30 05:29:25", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("33439", "2", "2016-06-30 05:29:30", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("33440", "12", "2016-06-30 05:31:12", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("33441", "9", "2016-06-30 05:33:41", "207.46.13.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("33442", "10", "2016-06-30 05:33:51", "207.46.13.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("33443", "8", "2016-06-30 05:33:59", "157.55.39.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("33444", "5", "2016-06-30 05:37:49", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("33445", "6", "2016-06-30 05:42:32", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("33446", "3", "2016-06-30 06:00:05", "5.9.98.130", "3549");
INSERT INTO `wp_gf_form_view` VALUES("33447", "3", "2016-06-30 07:02:38", "5.9.98.130", "5012");
INSERT INTO `wp_gf_form_view` VALUES("33448", "12", "2016-06-30 08:24:49", "202.46.54.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("33449", "3", "2016-06-30 08:24:51", "202.46.54.192", "3214");
INSERT INTO `wp_gf_form_view` VALUES("33450", "3", "2016-06-30 09:00:00", "5.9.98.130", "6200");
INSERT INTO `wp_gf_form_view` VALUES("33451", "1", "2016-06-30 09:06:18", "89.35.105.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("33452", "11", "2016-06-30 09:39:36", "183.15.239.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("33453", "12", "2016-06-30 09:39:37", "183.15.239.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("33454", "2", "2016-06-30 09:39:38", "183.15.239.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("33455", "3", "2016-06-30 10:00:02", "5.9.98.130", "891");
INSERT INTO `wp_gf_form_view` VALUES("33456", "1", "2016-06-30 10:27:16", "23.95.82.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("33457", "3", "2016-06-30 11:16:42", "68.180.229.224", "3007");
INSERT INTO `wp_gf_form_view` VALUES("33458", "3", "2016-06-30 12:00:00", "5.9.98.130", "6197");
INSERT INTO `wp_gf_form_view` VALUES("33459", "3", "2016-06-30 13:00:00", "5.9.98.130", "5887");
INSERT INTO `wp_gf_form_view` VALUES("33460", "12", "2016-06-30 13:42:50", "164.132.161.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("33461", "3", "2016-06-30 14:00:00", "5.9.98.130", "4797");
INSERT INTO `wp_gf_form_view` VALUES("33462", "3", "2016-06-30 15:00:02", "178.137.93.129", "56");
INSERT INTO `wp_gf_form_view` VALUES("33463", "3", "2016-06-30 16:02:05", "178.137.93.129", "37");
INSERT INTO `wp_gf_form_view` VALUES("33464", "3", "2016-06-30 17:05:38", "207.46.13.25", "131");
INSERT INTO `wp_gf_form_view` VALUES("33465", "9", "2016-06-30 17:06:45", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("33466", "3", "2016-06-30 18:04:31", "46.119.118.92", "37");
INSERT INTO `wp_gf_form_view` VALUES("33467", "3", "2016-06-30 19:15:49", "157.55.39.121", "82");
INSERT INTO `wp_gf_form_view` VALUES("33468", "3", "2016-06-30 20:01:23", "77.75.77.62", "164");
INSERT INTO `wp_gf_form_view` VALUES("33469", "2", "2016-06-30 20:12:22", "104.238.180.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("33470", "12", "2016-06-30 20:41:55", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("33471", "5", "2016-06-30 20:48:17", "77.75.79.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("33472", "3", "2016-06-30 21:19:37", "194.187.170.215", "65");
INSERT INTO `wp_gf_form_view` VALUES("33473", "1", "2016-06-30 21:49:12", "24.68.21.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("33474", "3", "2016-06-30 22:00:49", "194.187.170.215", "115");
INSERT INTO `wp_gf_form_view` VALUES("33475", "2", "2016-06-30 22:03:02", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("33476", "1", "2016-06-30 22:31:40", "194.187.170.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("33477", "3", "2016-06-30 23:18:16", "77.75.76.171", "38");
INSERT INTO `wp_gf_form_view` VALUES("33478", "3", "2016-07-01 00:04:45", "194.187.170.215", "65");
INSERT INTO `wp_gf_form_view` VALUES("33479", "10", "2016-07-01 00:49:56", "207.46.13.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("33480", "3", "2016-07-01 01:15:27", "66.249.79.169", "36");
INSERT INTO `wp_gf_form_view` VALUES("33481", "10", "2016-07-01 02:22:11", "202.46.57.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("33482", "3", "2016-07-01 02:22:12", "202.46.57.13", "66");
INSERT INTO `wp_gf_form_view` VALUES("33483", "12", "2016-07-01 02:40:48", "96.50.12.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("33484", "3", "2016-07-01 03:13:59", "77.75.76.163", "27");
INSERT INTO `wp_gf_form_view` VALUES("33485", "3", "2016-07-01 04:30:07", "40.77.167.80", "18");
INSERT INTO `wp_gf_form_view` VALUES("33486", "3", "2016-07-01 05:22:39", "66.249.79.176", "9");
INSERT INTO `wp_gf_form_view` VALUES("33487", "3", "2016-07-01 06:12:11", "202.46.52.154", "10");
INSERT INTO `wp_gf_form_view` VALUES("33488", "10", "2016-07-01 06:32:24", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33489", "3", "2016-07-01 07:23:37", "104.207.150.177", "108");
INSERT INTO `wp_gf_form_view` VALUES("33490", "2", "2016-07-01 07:23:47", "104.207.150.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("33491", "3", "2016-07-01 08:42:31", "136.243.17.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("33492", "3", "2016-07-01 09:01:58", "68.180.229.224", "48");
INSERT INTO `wp_gf_form_view` VALUES("33493", "1", "2016-07-01 09:16:06", "177.125.144.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("33494", "3", "2016-07-01 10:03:48", "66.249.79.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("33495", "12", "2016-07-01 11:05:58", "178.137.164.15", "9");
INSERT INTO `wp_gf_form_view` VALUES("33496", "3", "2016-07-01 11:05:58", "178.137.164.15", "117");
INSERT INTO `wp_gf_form_view` VALUES("33497", "3", "2016-07-01 12:40:09", "157.55.39.156", "27");
INSERT INTO `wp_gf_form_view` VALUES("33498", "3", "2016-07-01 13:16:34", "202.46.57.89", "23");
INSERT INTO `wp_gf_form_view` VALUES("33499", "3", "2016-07-01 14:04:13", "207.46.13.160", "9");
INSERT INTO `wp_gf_form_view` VALUES("33500", "1", "2016-07-01 15:31:26", "51.255.65.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("33501", "3", "2016-07-01 15:31:27", "51.255.65.47", "65");
INSERT INTO `wp_gf_form_view` VALUES("33502", "10", "2016-07-01 15:48:09", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("33503", "3", "2016-07-01 16:15:32", "178.22.145.229", "18");
INSERT INTO `wp_gf_form_view` VALUES("33504", "3", "2016-07-01 17:27:06", "202.46.51.84", "18");
INSERT INTO `wp_gf_form_view` VALUES("33505", "9", "2016-07-01 18:17:06", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33506", "3", "2016-07-01 18:17:06", "68.180.229.224", "9");
INSERT INTO `wp_gf_form_view` VALUES("33507", "3", "2016-07-01 19:02:55", "66.249.79.169", "29");
INSERT INTO `wp_gf_form_view` VALUES("33508", "3", "2016-07-01 20:32:58", "66.249.79.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("33509", "1", "2016-07-01 21:04:40", "195.154.250.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("33510", "3", "2016-07-01 21:04:41", "195.154.250.39", "99");
INSERT INTO `wp_gf_form_view` VALUES("33511", "12", "2016-07-01 21:15:42", "178.137.164.15", "5");
INSERT INTO `wp_gf_form_view` VALUES("33512", "12", "2016-07-01 21:15:42", "178.137.164.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("33513", "3", "2016-07-01 22:04:41", "66.249.79.162", "37");
INSERT INTO `wp_gf_form_view` VALUES("33514", "10", "2016-07-01 22:21:29", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33515", "3", "2016-07-01 23:01:44", "167.114.241.197", "49");
INSERT INTO `wp_gf_form_view` VALUES("33516", "3", "2016-07-02 00:08:05", "164.132.161.84", "36");
INSERT INTO `wp_gf_form_view` VALUES("33517", "3", "2016-07-02 01:19:28", "164.132.161.93", "55");
INSERT INTO `wp_gf_form_view` VALUES("33518", "12", "2016-07-02 01:37:34", "96.50.12.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("33519", "3", "2016-07-02 02:05:26", "51.255.66.158", "9");
INSERT INTO `wp_gf_form_view` VALUES("33520", "3", "2016-07-02 03:58:39", "64.180.74.37", "9");
INSERT INTO `wp_gf_form_view` VALUES("33521", "3", "2016-07-02 04:31:42", "100.43.91.1", "65");
INSERT INTO `wp_gf_form_view` VALUES("33522", "3", "2016-07-02 05:03:57", "96.50.14.120", "659");
INSERT INTO `wp_gf_form_view` VALUES("33523", "11", "2016-07-02 05:19:20", "94.23.40.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("33524", "2", "2016-07-02 05:19:26", "94.23.40.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("33525", "12", "2016-07-02 05:21:16", "94.23.40.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("33526", "1", "2016-07-02 05:21:52", "94.23.40.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("33527", "10", "2016-07-02 05:37:37", "104.142.127.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("33528", "3", "2016-07-02 06:07:57", "202.46.58.99", "47");
INSERT INTO `wp_gf_form_view` VALUES("33529", "12", "2016-07-02 06:25:30", "178.137.164.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("33530", "12", "2016-07-02 07:13:43", "46.118.159.221", "2");
INSERT INTO `wp_gf_form_view` VALUES("33531", "12", "2016-07-02 07:13:43", "46.118.159.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33532", "3", "2016-07-02 07:13:48", "46.118.159.221", "52");
INSERT INTO `wp_gf_form_view` VALUES("33533", "3", "2016-07-02 07:13:48", "46.118.159.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33534", "3", "2016-07-02 07:13:48", "46.118.159.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33535", "10", "2016-07-02 07:39:16", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33536", "8", "2016-07-02 07:53:12", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33537", "3", "2016-07-02 08:08:35", "66.249.79.176", "558");
INSERT INTO `wp_gf_form_view` VALUES("33538", "12", "2016-07-02 08:10:34", "178.137.164.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("33539", "7", "2016-07-02 08:27:14", "40.77.167.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("33540", "10", "2016-07-02 08:27:39", "40.77.167.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("33541", "1", "2016-07-02 08:27:43", "207.46.13.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("33542", "9", "2016-07-02 08:27:49", "40.77.167.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("33543", "6", "2016-07-02 08:45:07", "167.114.241.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("33544", "3", "2016-07-02 09:20:47", "68.180.229.224", "64");
INSERT INTO `wp_gf_form_view` VALUES("33545", "3", "2016-07-02 10:00:09", "167.114.241.197", "118");
INSERT INTO `wp_gf_form_view` VALUES("33546", "10", "2016-07-02 10:54:08", "207.46.13.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("33547", "6", "2016-07-02 12:05:59", "202.46.53.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("33548", "3", "2016-07-02 12:06:03", "202.46.53.66", "229");
INSERT INTO `wp_gf_form_view` VALUES("33549", "8", "2016-07-02 12:21:00", "207.46.13.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("33550", "10", "2016-07-02 12:21:09", "207.46.13.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("33551", "2", "2016-07-02 12:25:56", "158.69.225.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("33552", "12", "2016-07-02 12:26:11", "158.69.225.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("33553", "3", "2016-07-02 13:22:04", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("33554", "3", "2016-07-02 14:18:54", "157.55.39.207", "40");
INSERT INTO `wp_gf_form_view` VALUES("33555", "10", "2016-07-02 14:49:52", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33556", "3", "2016-07-02 15:29:06", "202.46.54.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("33557", "3", "2016-07-02 17:10:14", "85.93.89.74", "118");
INSERT INTO `wp_gf_form_view` VALUES("33558", "11", "2016-07-02 17:10:44", "85.93.89.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("33559", "2", "2016-07-02 17:10:48", "85.93.89.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("33560", "3", "2016-07-02 18:17:08", "77.75.78.172", "64");
INSERT INTO `wp_gf_form_view` VALUES("33561", "9", "2016-07-02 18:25:10", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33562", "3", "2016-07-02 19:57:18", "66.249.79.176", "19");
INSERT INTO `wp_gf_form_view` VALUES("33563", "3", "2016-07-02 20:02:55", "68.180.229.224", "28");
INSERT INTO `wp_gf_form_view` VALUES("33564", "3", "2016-07-02 21:12:51", "68.180.229.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("33565", "9", "2016-07-02 21:14:04", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("33566", "3", "2016-07-02 22:01:02", "66.249.79.176", "45");
INSERT INTO `wp_gf_form_view` VALUES("33567", "10", "2016-07-02 23:21:04", "40.77.167.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("33568", "3", "2016-07-02 23:21:04", "40.77.167.25", "73");
INSERT INTO `wp_gf_form_view` VALUES("33569", "2", "2016-07-03 00:14:49", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("33570", "3", "2016-07-03 00:14:50", "68.180.229.224", "271");
INSERT INTO `wp_gf_form_view` VALUES("33571", "10", "2016-07-03 00:33:09", "40.77.167.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("33572", "11", "2016-07-03 00:40:35", "104.37.184.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("33573", "12", "2016-07-03 00:40:56", "104.37.184.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("33574", "3", "2016-07-03 01:37:33", "202.46.58.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("33575", "3", "2016-07-03 02:22:08", "77.75.78.164", "18");
INSERT INTO `wp_gf_form_view` VALUES("33576", "3", "2016-07-03 03:06:14", "128.199.69.60", "19");
INSERT INTO `wp_gf_form_view` VALUES("33577", "3", "2016-07-03 04:40:03", "207.46.13.36", "18");
INSERT INTO `wp_gf_form_view` VALUES("33578", "2", "2016-07-03 04:50:53", "40.77.167.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("33579", "3", "2016-07-03 05:38:57", "164.132.161.82", "45");
INSERT INTO `wp_gf_form_view` VALUES("33580", "12", "2016-07-03 05:57:00", "37.229.252.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("33581", "12", "2016-07-03 06:04:02", "72.143.235.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("33582", "3", "2016-07-03 06:04:02", "72.143.235.176", "209");
INSERT INTO `wp_gf_form_view` VALUES("33583", "11", "2016-07-03 06:26:28", "202.46.48.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("33584", "2", "2016-07-03 06:47:37", "45.55.229.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("33585", "3", "2016-07-03 07:28:20", "51.255.65.44", "19");
INSERT INTO `wp_gf_form_view` VALUES("33586", "3", "2016-07-03 08:02:11", "1.171.178.68", "19");
INSERT INTO `wp_gf_form_view` VALUES("33587", "6", "2016-07-03 09:05:01", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("33588", "3", "2016-07-03 09:05:01", "66.249.79.162", "91");
INSERT INTO `wp_gf_form_view` VALUES("33589", "10", "2016-07-03 09:25:51", "164.132.161.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("33590", "3", "2016-07-03 11:05:46", "68.180.229.224", "29");
INSERT INTO `wp_gf_form_view` VALUES("33591", "3", "2016-07-03 12:06:20", "74.208.229.57", "333");
INSERT INTO `wp_gf_form_view` VALUES("33592", "3", "2016-07-03 12:06:20", "74.208.229.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("33593", "3", "2016-07-03 12:06:20", "74.208.229.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("33594", "3", "2016-07-03 12:06:20", "74.208.229.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("33595", "11", "2016-07-03 12:06:21", "74.208.229.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("33596", "2", "2016-07-03 12:06:21", "74.208.229.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("33597", "12", "2016-07-03 12:06:35", "74.208.229.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("33598", "9", "2016-07-03 12:06:57", "40.77.167.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("33599", "3", "2016-07-03 13:05:02", "196.196.94.201", "118");
INSERT INTO `wp_gf_form_view` VALUES("33600", "3", "2016-07-03 14:43:13", "66.249.79.176", "29");
INSERT INTO `wp_gf_form_view` VALUES("33601", "12", "2016-07-03 15:06:07", "46.118.159.221", "6");
INSERT INTO `wp_gf_form_view` VALUES("33602", "12", "2016-07-03 15:06:07", "46.118.159.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33603", "3", "2016-07-03 15:06:07", "46.118.159.221", "81");
INSERT INTO `wp_gf_form_view` VALUES("33604", "3", "2016-07-03 15:06:07", "46.118.159.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33605", "10", "2016-07-03 15:37:39", "207.46.13.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("33606", "10", "2016-07-03 16:01:36", "207.46.13.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("33607", "3", "2016-07-03 16:01:36", "207.46.13.116", "36");
INSERT INTO `wp_gf_form_view` VALUES("33608", "12", "2016-07-03 16:30:41", "178.137.164.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("33609", "3", "2016-07-03 17:34:57", "199.21.99.202", "36");
INSERT INTO `wp_gf_form_view` VALUES("33610", "1", "2016-07-03 17:55:55", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33611", "3", "2016-07-03 18:03:50", "202.46.55.153", "92");
INSERT INTO `wp_gf_form_view` VALUES("33612", "9", "2016-07-03 18:09:34", "165.231.96.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("33613", "3", "2016-07-03 19:06:50", "193.105.21.30", "64");
INSERT INTO `wp_gf_form_view` VALUES("33614", "3", "2016-07-03 20:15:18", "207.46.13.36", "37");
INSERT INTO `wp_gf_form_view` VALUES("33615", "3", "2016-07-03 21:20:35", "164.132.161.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("33616", "3", "2016-07-03 22:44:14", "220.181.108.186", "9");
INSERT INTO `wp_gf_form_view` VALUES("33617", "3", "2016-07-03 23:20:19", "202.46.50.89", "18");
INSERT INTO `wp_gf_form_view` VALUES("33618", "2", "2016-07-04 00:04:20", "151.80.31.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("33619", "3", "2016-07-04 00:04:20", "151.80.31.183", "45");
INSERT INTO `wp_gf_form_view` VALUES("33620", "9", "2016-07-04 00:50:28", "89.36.66.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("33621", "3", "2016-07-04 01:05:44", "207.46.13.119", "55");
INSERT INTO `wp_gf_form_view` VALUES("33622", "12", "2016-07-04 01:06:54", "46.118.159.221", "3");
INSERT INTO `wp_gf_form_view` VALUES("33623", "1", "2016-07-04 02:10:11", "165.231.105.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("33624", "3", "2016-07-04 02:10:12", "165.231.105.52", "9");
INSERT INTO `wp_gf_form_view` VALUES("33625", "12", "2016-07-04 03:10:56", "178.137.164.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("33626", "12", "2016-07-04 03:10:56", "178.137.164.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("33627", "3", "2016-07-04 03:11:10", "178.137.164.15", "26");
INSERT INTO `wp_gf_form_view` VALUES("33628", "3", "2016-07-04 03:11:10", "178.137.164.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("33629", "9", "2016-07-04 03:14:44", "202.46.53.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("33630", "3", "2016-07-04 04:20:33", "68.180.229.224", "244");
INSERT INTO `wp_gf_form_view` VALUES("33631", "11", "2016-07-04 04:28:53", "158.69.210.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("33632", "12", "2016-07-04 04:29:17", "158.69.210.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("33633", "2", "2016-07-04 04:29:50", "158.69.210.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("33634", "3", "2016-07-04 05:04:40", "184.66.156.180", "47");
INSERT INTO `wp_gf_form_view` VALUES("33635", "3", "2016-07-04 06:10:53", "164.132.161.94", "9");
INSERT INTO `wp_gf_form_view` VALUES("33636", "3", "2016-07-04 07:58:48", "104.151.127.3", "19");
INSERT INTO `wp_gf_form_view` VALUES("33637", "3", "2016-07-04 08:01:24", "68.180.229.224", "54");
INSERT INTO `wp_gf_form_view` VALUES("33638", "10", "2016-07-04 08:20:29", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33639", "3", "2016-07-04 09:00:44", "202.46.58.74", "10");
INSERT INTO `wp_gf_form_view` VALUES("33640", "3", "2016-07-04 10:15:03", "66.249.79.176", "73");
INSERT INTO `wp_gf_form_view` VALUES("33641", "12", "2016-07-04 10:24:31", "46.118.159.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33642", "3", "2016-07-04 11:16:15", "132.148.21.164", "45");
INSERT INTO `wp_gf_form_view` VALUES("33643", "12", "2016-07-04 12:02:53", "178.137.164.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("33644", "3", "2016-07-04 12:02:53", "178.137.164.15", "45");
INSERT INTO `wp_gf_form_view` VALUES("33645", "3", "2016-07-04 13:16:49", "66.249.79.176", "45");
INSERT INTO `wp_gf_form_view` VALUES("33646", "12", "2016-07-04 13:52:37", "178.137.164.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("33647", "3", "2016-07-04 14:25:13", "132.148.21.164", "55");
INSERT INTO `wp_gf_form_view` VALUES("33648", "10", "2016-07-04 14:40:36", "157.55.39.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("33649", "3", "2016-07-04 15:06:54", "70.66.184.178", "326");
INSERT INTO `wp_gf_form_view` VALUES("33650", "11", "2016-07-04 15:29:03", "78.159.213.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("33651", "12", "2016-07-04 15:31:50", "78.159.213.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("33652", "2", "2016-07-04 15:41:39", "78.159.213.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("33653", "3", "2016-07-04 16:01:17", "70.67.188.245", "129");
INSERT INTO `wp_gf_form_view` VALUES("33654", "3", "2016-07-04 17:26:05", "184.66.100.93", "18");
INSERT INTO `wp_gf_form_view` VALUES("33655", "1", "2016-07-04 18:07:31", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("33656", "3", "2016-07-04 18:07:33", "66.249.79.176", "27");
INSERT INTO `wp_gf_form_view` VALUES("33657", "3", "2016-07-04 19:28:36", "202.46.48.90", "28");
INSERT INTO `wp_gf_form_view` VALUES("33658", "12", "2016-07-04 20:25:23", "199.60.109.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("33659", "3", "2016-07-04 20:25:28", "199.60.109.117", "45");
INSERT INTO `wp_gf_form_view` VALUES("33660", "3", "2016-07-04 21:13:54", "207.46.13.156", "72");
INSERT INTO `wp_gf_form_view` VALUES("33661", "12", "2016-07-04 21:34:39", "37.229.252.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("33662", "12", "2016-07-04 21:34:39", "37.229.252.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("33663", "3", "2016-07-04 22:22:40", "195.154.250.39", "39");
INSERT INTO `wp_gf_form_view` VALUES("33664", "10", "2016-07-04 23:17:46", "199.16.156.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("33665", "3", "2016-07-04 23:17:47", "199.16.156.124", "25");
INSERT INTO `wp_gf_form_view` VALUES("33666", "3", "2016-07-05 00:08:20", "157.55.39.213", "50");
INSERT INTO `wp_gf_form_view` VALUES("33667", "12", "2016-07-05 00:38:07", "37.229.252.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("33668", "3", "2016-07-05 01:02:57", "202.46.54.31", "17");
INSERT INTO `wp_gf_form_view` VALUES("33669", "3", "2016-07-05 02:18:19", "202.46.49.130", "25");
INSERT INTO `wp_gf_form_view` VALUES("33670", "6", "2016-07-05 02:45:50", "51.255.66.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("33671", "3", "2016-07-05 03:01:07", "68.180.229.224", "528");
INSERT INTO `wp_gf_form_view` VALUES("33672", "5", "2016-07-05 03:32:49", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("33673", "10", "2016-07-05 03:32:57", "157.55.39.213", "4");
INSERT INTO `wp_gf_form_view` VALUES("33674", "6", "2016-07-05 03:33:14", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("33675", "9", "2016-07-05 03:33:33", "207.46.13.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("33676", "8", "2016-07-05 03:33:44", "207.46.13.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("33677", "3", "2016-07-05 04:49:02", "68.180.229.224", "16");
INSERT INTO `wp_gf_form_view` VALUES("33678", "3", "2016-07-05 06:11:16", "132.148.21.164", "48");
INSERT INTO `wp_gf_form_view` VALUES("33679", "3", "2016-07-05 07:05:26", "68.180.229.224", "32");
INSERT INTO `wp_gf_form_view` VALUES("33680", "3", "2016-07-05 08:59:47", "202.46.48.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("33681", "3", "2016-07-05 09:15:24", "77.75.77.36", "16");
INSERT INTO `wp_gf_form_view` VALUES("33682", "3", "2016-07-05 10:32:34", "207.46.13.119", "17");
INSERT INTO `wp_gf_form_view` VALUES("33683", "3", "2016-07-05 11:39:44", "68.180.229.224", "8");
INSERT INTO `wp_gf_form_view` VALUES("33684", "11", "2016-07-05 12:02:36", "68.180.229.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("33685", "3", "2016-07-05 12:02:37", "68.180.229.224", "525");
INSERT INTO `wp_gf_form_view` VALUES("33686", "10", "2016-07-05 12:22:28", "207.46.13.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("33687", "12", "2016-07-05 12:50:41", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33688", "2", "2016-07-05 12:51:41", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33689", "9", "2016-07-05 12:59:11", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33690", "6", "2016-07-05 13:00:06", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33691", "3", "2016-07-05 13:00:07", "109.169.29.30", "308");
INSERT INTO `wp_gf_form_view` VALUES("33692", "8", "2016-07-05 13:01:29", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33693", "10", "2016-07-05 13:03:13", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33694", "5", "2016-07-05 13:43:39", "77.75.76.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("33695", "3", "2016-07-05 14:18:17", "66.249.79.176", "34");
INSERT INTO `wp_gf_form_view` VALUES("33696", "3", "2016-07-05 15:00:50", "66.249.79.176", "18");
INSERT INTO `wp_gf_form_view` VALUES("33697", "2", "2016-07-05 15:04:09", "51.255.66.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("33698", "3", "2016-07-05 16:30:02", "202.46.50.198", "16");
INSERT INTO `wp_gf_form_view` VALUES("33699", "3", "2016-07-05 17:48:22", "68.180.229.224", "8");
INSERT INTO `wp_gf_form_view` VALUES("33700", "3", "2016-07-05 18:10:34", "202.46.53.166", "88");
INSERT INTO `wp_gf_form_view` VALUES("33701", "12", "2016-07-05 18:44:33", "46.118.159.221", "8");
INSERT INTO `wp_gf_form_view` VALUES("33702", "12", "2016-07-05 18:44:33", "46.118.159.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33703", "3", "2016-07-05 19:00:41", "64.141.4.162", "90");
INSERT INTO `wp_gf_form_view` VALUES("33704", "12", "2016-07-05 19:59:07", "130.63.94.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("33705", "3", "2016-07-05 20:18:25", "220.181.108.146", "18");
INSERT INTO `wp_gf_form_view` VALUES("33706", "3", "2016-07-05 21:24:08", "207.46.13.65", "147");
INSERT INTO `wp_gf_form_view` VALUES("33707", "6", "2016-07-05 21:33:55", "66.249.79.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("33708", "1", "2016-07-05 21:44:44", "199.60.109.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("33709", "3", "2016-07-05 22:21:38", "40.77.167.19", "66");
INSERT INTO `wp_gf_form_view` VALUES("33710", "12", "2016-07-05 22:39:55", "178.137.164.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("33711", "3", "2016-07-05 23:03:57", "68.180.229.224", "25");
INSERT INTO `wp_gf_form_view` VALUES("33712", "3", "2016-07-06 00:05:36", "202.46.50.183", "33");
INSERT INTO `wp_gf_form_view` VALUES("33713", "1", "2016-07-06 00:55:38", "130.204.207.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("33714", "3", "2016-07-06 01:10:16", "24.68.17.97", "229");
INSERT INTO `wp_gf_form_view` VALUES("33715", "12", "2016-07-06 01:10:37", "24.68.17.97", "3");
INSERT INTO `wp_gf_form_view` VALUES("33716", "10", "2016-07-06 01:13:23", "24.68.17.97", "8");
INSERT INTO `wp_gf_form_view` VALUES("33717", "11", "2016-07-06 01:58:05", "78.250.130.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("33718", "3", "2016-07-06 02:00:20", "78.250.130.60", "290");
INSERT INTO `wp_gf_form_view` VALUES("33719", "12", "2016-07-06 02:00:46", "78.250.130.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("33720", "2", "2016-07-06 02:04:02", "78.250.130.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("33721", "3", "2016-07-06 03:25:21", "167.114.241.197", "106");
INSERT INTO `wp_gf_form_view` VALUES("33722", "3", "2016-07-06 04:14:39", "66.249.79.162", "16");
INSERT INTO `wp_gf_form_view` VALUES("33723", "3", "2016-07-06 05:03:13", "77.75.76.170", "43");
INSERT INTO `wp_gf_form_view` VALUES("33724", "12", "2016-07-06 05:11:23", "46.118.159.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("33725", "3", "2016-07-06 06:13:52", "77.75.76.160", "24");
INSERT INTO `wp_gf_form_view` VALUES("33726", "3", "2016-07-06 07:38:00", "66.249.79.176", "8");
INSERT INTO `wp_gf_form_view` VALUES("33727", "3", "2016-07-06 09:45:47", "54.236.1.67", "8");
INSERT INTO `wp_gf_form_view` VALUES("33728", "12", "2016-07-06 10:05:46", "178.137.164.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("33729", "3", "2016-07-06 10:05:47", "178.137.164.15", "57");
INSERT INTO `wp_gf_form_view` VALUES("33730", "3", "2016-07-06 11:11:05", "207.46.13.119", "16");
INSERT INTO `wp_gf_form_view` VALUES("33731", "1", "2016-07-06 12:32:13", "198.12.97.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("33732", "3", "2016-07-06 12:32:15", "198.12.97.13", "34");
INSERT INTO `wp_gf_form_view` VALUES("33733", "3", "2016-07-06 14:01:05", "91.121.141.219", "50");
INSERT INTO `wp_gf_form_view` VALUES("33734", "12", "2016-07-06 14:39:07", "46.118.117.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("33735", "12", "2016-07-06 14:39:07", "46.118.117.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("33736", "5", "2016-07-06 16:01:00", "68.180.229.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("33737", "3", "2016-07-06 16:01:03", "68.180.229.224", "82");
INSERT INTO `wp_gf_form_view` VALUES("33738", "12", "2016-07-06 16:13:55", "178.137.154.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("33739", "3", "2016-07-06 17:03:23", "184.70.159.62", "48");
INSERT INTO `wp_gf_form_view` VALUES("33740", "2", "2016-07-06 18:09:43", "202.46.57.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("33741", "3", "2016-07-06 18:09:46", "202.46.57.15", "253");
INSERT INTO `wp_gf_form_view` VALUES("33742", "12", "2016-07-06 18:31:59", "46.119.126.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("33743", "3", "2016-07-06 19:31:32", "184.66.253.169", "65");
INSERT INTO `wp_gf_form_view` VALUES("33744", "3", "2016-07-06 20:11:43", "68.180.229.224", "123");
INSERT INTO `wp_gf_form_view` VALUES("33745", "12", "2016-07-06 20:21:10", "46.119.126.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("33746", "1", "2016-07-06 20:34:33", "172.102.204.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("33747", "3", "2016-07-06 21:01:42", "70.67.162.103", "122");
INSERT INTO `wp_gf_form_view` VALUES("33748", "1", "2016-07-06 21:45:35", "188.215.23.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("33749", "11", "2016-07-06 22:10:23", "51.255.65.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("33750", "3", "2016-07-06 22:10:44", "51.255.65.41", "262");
INSERT INTO `wp_gf_form_view` VALUES("33751", "2", "2016-07-06 22:50:24", "174.127.133.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("33752", "12", "2016-07-06 22:56:13", "174.127.133.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("33753", "3", "2016-07-06 23:00:19", "199.21.99.202", "244");
INSERT INTO `wp_gf_form_view` VALUES("33754", "12", "2016-07-06 23:18:56", "174.127.133.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("33755", "3", "2016-07-07 00:06:30", "172.102.212.186", "45");
INSERT INTO `wp_gf_form_view` VALUES("33756", "3", "2016-07-07 01:17:08", "68.180.229.224", "44");
INSERT INTO `wp_gf_form_view` VALUES("33757", "10", "2016-07-07 01:49:14", "77.75.76.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("33758", "3", "2016-07-07 02:13:27", "202.46.56.90", "37");
INSERT INTO `wp_gf_form_view` VALUES("33759", "3", "2016-07-07 03:09:10", "24.114.22.198", "35");
INSERT INTO `wp_gf_form_view` VALUES("33760", "1", "2016-07-07 03:29:10", "183.91.33.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("33761", "3", "2016-07-07 04:06:03", "64.180.74.252", "29");
INSERT INTO `wp_gf_form_view` VALUES("33762", "1", "2016-07-07 04:23:07", "66.249.79.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("33763", "12", "2016-07-07 05:07:29", "178.137.154.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("33764", "3", "2016-07-07 05:07:29", "178.137.154.56", "29");
INSERT INTO `wp_gf_form_view` VALUES("33765", "2", "2016-07-07 06:05:17", "192.237.175.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("33766", "3", "2016-07-07 06:05:19", "192.237.175.30", "49");
INSERT INTO `wp_gf_form_view` VALUES("33767", "3", "2016-07-07 07:25:31", "199.217.117.207", "7");
INSERT INTO `wp_gf_form_view` VALUES("33768", "3", "2016-07-07 08:05:46", "172.98.176.207", "36");
INSERT INTO `wp_gf_form_view` VALUES("33769", "12", "2016-07-07 08:35:11", "46.119.121.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("33770", "1", "2016-07-07 09:17:50", "192.80.115.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("33771", "3", "2016-07-07 09:17:57", "192.80.115.144", "36");
INSERT INTO `wp_gf_form_view` VALUES("33772", "3", "2016-07-07 10:00:53", "66.249.79.176", "14");
INSERT INTO `wp_gf_form_view` VALUES("33773", "9", "2016-07-07 11:10:48", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("33774", "3", "2016-07-07 11:10:55", "199.21.99.202", "29");
INSERT INTO `wp_gf_form_view` VALUES("33775", "3", "2016-07-07 12:38:21", "66.249.79.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("33776", "3", "2016-07-07 13:02:33", "172.102.204.38", "16");
INSERT INTO `wp_gf_form_view` VALUES("33777", "3", "2016-07-07 14:06:57", "199.21.99.202", "404");
INSERT INTO `wp_gf_form_view` VALUES("33778", "12", "2016-07-07 14:29:50", "207.46.13.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("33779", "9", "2016-07-07 14:29:58", "207.46.13.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("33780", "10", "2016-07-07 14:30:09", "207.46.13.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("33781", "7", "2016-07-07 14:30:17", "207.46.13.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("33782", "8", "2016-07-07 14:30:55", "157.55.39.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("33783", "3", "2016-07-07 15:52:06", "172.102.212.186", "15");
INSERT INTO `wp_gf_form_view` VALUES("33784", "3", "2016-07-07 16:09:53", "24.108.28.160", "35");
INSERT INTO `wp_gf_form_view` VALUES("33785", "3", "2016-07-07 17:22:03", "172.98.176.53", "50");
INSERT INTO `wp_gf_form_view` VALUES("33786", "1", "2016-07-07 17:50:19", "184.69.5.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("33787", "3", "2016-07-07 18:12:33", "66.249.79.169", "136");
INSERT INTO `wp_gf_form_view` VALUES("33788", "11", "2016-07-07 18:14:12", "202.46.51.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("33789", "3", "2016-07-07 19:08:25", "172.102.212.186", "53");
INSERT INTO `wp_gf_form_view` VALUES("33790", "3", "2016-07-07 20:04:42", "202.46.50.11", "123");
INSERT INTO `wp_gf_form_view` VALUES("33791", "12", "2016-07-07 21:20:57", "46.118.117.240", "4");
INSERT INTO `wp_gf_form_view` VALUES("33792", "12", "2016-07-07 21:20:57", "46.118.117.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("33793", "12", "2016-07-07 21:20:57", "46.118.117.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("33794", "3", "2016-07-07 21:20:59", "66.249.79.169", "183");
INSERT INTO `wp_gf_form_view` VALUES("33795", "12", "2016-07-07 22:07:54", "24.69.9.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("33796", "3", "2016-07-07 22:07:56", "207.81.252.22", "289");
INSERT INTO `wp_gf_form_view` VALUES("33797", "3", "2016-07-07 22:07:56", "207.81.252.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("33798", "3", "2016-07-07 22:07:56", "207.81.252.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("33799", "3", "2016-07-07 23:04:25", "138.128.66.18", "149");
INSERT INTO `wp_gf_form_view` VALUES("33800", "5", "2016-07-07 23:24:32", "202.46.58.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("33801", "12", "2016-07-08 00:05:09", "46.119.121.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("33802", "12", "2016-07-08 00:05:09", "46.119.121.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("33803", "12", "2016-07-08 00:05:09", "46.119.121.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("33804", "3", "2016-07-08 00:05:27", "46.119.121.187", "38");
INSERT INTO `wp_gf_form_view` VALUES("33805", "3", "2016-07-08 00:05:27", "46.119.121.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("33806", "3", "2016-07-08 00:05:27", "46.119.121.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("33807", "3", "2016-07-08 01:09:20", "207.46.13.76", "51");
INSERT INTO `wp_gf_form_view` VALUES("33808", "6", "2016-07-08 01:17:12", "40.77.167.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("33809", "1", "2016-07-08 01:54:00", "157.55.39.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("33810", "2", "2016-07-08 01:56:28", "202.46.51.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("33811", "3", "2016-07-08 02:21:56", "66.249.79.162", "53");
INSERT INTO `wp_gf_form_view` VALUES("33812", "3", "2016-07-08 03:03:26", "202.46.49.112", "81");
INSERT INTO `wp_gf_form_view` VALUES("33813", "12", "2016-07-08 04:04:41", "46.119.126.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("33814", "3", "2016-07-08 04:04:41", "46.119.126.56", "50");
INSERT INTO `wp_gf_form_view` VALUES("33815", "11", "2016-07-08 05:19:41", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("33816", "3", "2016-07-08 05:19:42", "70.35.196.136", "281");
INSERT INTO `wp_gf_form_view` VALUES("33817", "12", "2016-07-08 05:20:15", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("33818", "2", "2016-07-08 05:20:59", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("33819", "7", "2016-07-08 05:51:20", "202.46.53.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("33820", "3", "2016-07-08 06:20:53", "164.132.161.77", "41");
INSERT INTO `wp_gf_form_view` VALUES("33821", "10", "2016-07-08 07:04:28", "157.55.39.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("33822", "3", "2016-07-08 07:04:28", "157.55.39.33", "81");
INSERT INTO `wp_gf_form_view` VALUES("33823", "12", "2016-07-08 07:26:57", "46.118.117.240", "4");
INSERT INTO `wp_gf_form_view` VALUES("33824", "3", "2016-07-08 08:08:43", "40.77.167.48", "31");
INSERT INTO `wp_gf_form_view` VALUES("33825", "2", "2016-07-08 09:39:15", "68.180.228.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("33826", "2", "2016-07-08 09:39:15", "68.180.228.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("33827", "3", "2016-07-08 09:39:24", "68.180.228.110", "19");
INSERT INTO `wp_gf_form_view` VALUES("33828", "3", "2016-07-08 09:39:24", "68.180.228.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("33829", "3", "2016-07-08 10:21:24", "68.180.228.110", "44");
INSERT INTO `wp_gf_form_view` VALUES("33830", "3", "2016-07-08 11:06:00", "207.46.13.76", "25");
INSERT INTO `wp_gf_form_view` VALUES("33831", "3", "2016-07-08 12:10:26", "68.180.228.110", "22");
INSERT INTO `wp_gf_form_view` VALUES("33832", "6", "2016-07-08 13:41:04", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("33833", "3", "2016-07-08 13:41:07", "66.249.79.176", "21");
INSERT INTO `wp_gf_form_view` VALUES("33834", "3", "2016-07-08 14:22:40", "68.180.228.110", "52");
INSERT INTO `wp_gf_form_view` VALUES("33835", "12", "2016-07-08 14:37:40", "46.119.126.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("33836", "3", "2016-07-08 15:31:34", "24.69.13.40", "20");
INSERT INTO `wp_gf_form_view` VALUES("33837", "3", "2016-07-08 16:57:27", "75.157.27.176", "48");
INSERT INTO `wp_gf_form_view` VALUES("33838", "3", "2016-07-08 16:57:27", "75.157.27.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("33839", "3", "2016-07-08 16:57:27", "75.157.27.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("33840", "3", "2016-07-08 17:01:35", "75.157.27.176", "72");
INSERT INTO `wp_gf_form_view` VALUES("33841", "12", "2016-07-08 17:54:14", "51.255.65.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("33842", "12", "2016-07-08 18:14:06", "46.118.117.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("33843", "3", "2016-07-08 18:14:06", "46.118.117.240", "20");
INSERT INTO `wp_gf_form_view` VALUES("33844", "11", "2016-07-08 18:30:08", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("33845", "12", "2016-07-08 19:31:50", "46.119.117.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("33846", "12", "2016-07-08 19:31:50", "46.119.117.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("33847", "3", "2016-07-08 19:32:04", "46.119.117.55", "49");
INSERT INTO `wp_gf_form_view` VALUES("33848", "3", "2016-07-08 19:32:04", "46.119.117.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("33849", "3", "2016-07-08 20:33:43", "70.66.163.80", "92");
INSERT INTO `wp_gf_form_view` VALUES("33850", "12", "2016-07-08 20:42:30", "70.66.163.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("33851", "3", "2016-07-08 21:07:46", "216.13.173.60", "31");
INSERT INTO `wp_gf_form_view` VALUES("33852", "12", "2016-07-08 22:18:38", "46.119.117.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("33853", "3", "2016-07-08 22:18:38", "46.119.117.55", "30");
INSERT INTO `wp_gf_form_view` VALUES("33854", "10", "2016-07-08 23:17:19", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("33855", "3", "2016-07-08 23:17:29", "77.75.76.162", "81");
INSERT INTO `wp_gf_form_view` VALUES("33856", "12", "2016-07-08 23:27:35", "46.119.117.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("33857", "9", "2016-07-08 23:47:40", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("33858", "3", "2016-07-09 00:09:29", "64.180.190.62", "52");
INSERT INTO `wp_gf_form_view` VALUES("33859", "3", "2016-07-09 01:15:33", "68.180.228.110", "43");
INSERT INTO `wp_gf_form_view` VALUES("33860", "3", "2016-07-09 02:05:56", "77.75.78.165", "95");
INSERT INTO `wp_gf_form_view` VALUES("33861", "1", "2016-07-09 03:00:42", "202.46.49.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("33862", "3", "2016-07-09 03:00:43", "202.46.49.138", "114");
INSERT INTO `wp_gf_form_view` VALUES("33863", "12", "2016-07-09 03:22:07", "24.69.158.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("33864", "12", "2016-07-09 04:53:58", "178.137.89.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("33865", "3", "2016-07-09 04:54:00", "178.137.89.208", "10");
INSERT INTO `wp_gf_form_view` VALUES("33866", "3", "2016-07-09 05:06:13", "202.46.48.145", "102");
INSERT INTO `wp_gf_form_view` VALUES("33867", "12", "2016-07-09 05:47:09", "178.137.89.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("33868", "3", "2016-07-09 06:07:10", "66.76.113.38", "33");
INSERT INTO `wp_gf_form_view` VALUES("33869", "3", "2016-07-09 07:35:19", "202.46.49.92", "31");
INSERT INTO `wp_gf_form_view` VALUES("33870", "12", "2016-07-09 07:52:12", "207.46.13.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("33871", "3", "2016-07-09 08:06:23", "157.55.39.94", "41");
INSERT INTO `wp_gf_form_view` VALUES("33872", "3", "2016-07-09 09:03:01", "207.46.13.64", "31");
INSERT INTO `wp_gf_form_view` VALUES("33873", "3", "2016-07-09 10:41:30", "192.243.55.135", "878");
INSERT INTO `wp_gf_form_view` VALUES("33874", "1", "2016-07-09 10:55:44", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("33875", "11", "2016-07-09 10:55:54", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("33876", "3", "2016-07-09 11:00:14", "104.131.46.50", "4253");
INSERT INTO `wp_gf_form_view` VALUES("33877", "5", "2016-07-09 11:02:34", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("33878", "12", "2016-07-09 11:07:15", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("33879", "1", "2016-07-09 11:08:01", "66.249.79.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("33880", "6", "2016-07-09 11:15:50", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("33881", "9", "2016-07-09 11:24:29", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("33882", "10", "2016-07-09 11:26:23", "51.255.66.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("33883", "2", "2016-07-09 11:59:53", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("33884", "3", "2016-07-09 12:00:30", "104.131.46.50", "983");
INSERT INTO `wp_gf_form_view` VALUES("33885", "8", "2016-07-09 12:14:09", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("33886", "3", "2016-07-09 13:05:43", "51.255.65.10", "20");
INSERT INTO `wp_gf_form_view` VALUES("33887", "10", "2016-07-09 14:13:15", "68.180.228.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("33888", "3", "2016-07-09 14:13:17", "68.180.228.110", "10");
INSERT INTO `wp_gf_form_view` VALUES("33889", "3", "2016-07-09 15:00:48", "24.108.43.12", "21");
INSERT INTO `wp_gf_form_view` VALUES("33890", "3", "2016-07-09 16:08:32", "66.249.79.176", "122");
INSERT INTO `wp_gf_form_view` VALUES("33891", "2", "2016-07-09 16:54:05", "62.210.80.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("33892", "3", "2016-07-09 17:26:12", "23.254.144.254", "84");
INSERT INTO `wp_gf_form_view` VALUES("33893", "3", "2016-07-09 18:11:38", "114.97.200.204", "91");
INSERT INTO `wp_gf_form_view` VALUES("33894", "3", "2016-07-09 19:14:34", "66.249.66.140", "127");
INSERT INTO `wp_gf_form_view` VALUES("33895", "12", "2016-07-09 19:20:31", "46.185.13.226", "3");
INSERT INTO `wp_gf_form_view` VALUES("33896", "10", "2016-07-09 19:55:20", "207.46.13.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("33897", "10", "2016-07-09 20:38:20", "207.46.13.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("33898", "3", "2016-07-09 20:38:22", "207.46.13.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("33899", "3", "2016-07-09 21:23:47", "68.180.228.110", "61");
INSERT INTO `wp_gf_form_view` VALUES("33900", "10", "2016-07-09 21:26:17", "157.55.39.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("33901", "3", "2016-07-09 22:05:27", "114.97.200.204", "101");
INSERT INTO `wp_gf_form_view` VALUES("33902", "10", "2016-07-09 22:36:39", "68.180.228.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("33903", "3", "2016-07-09 23:20:03", "202.46.49.61", "20");
INSERT INTO `wp_gf_form_view` VALUES("33904", "3", "2016-07-10 00:04:27", "217.69.133.232", "90");
INSERT INTO `wp_gf_form_view` VALUES("33905", "12", "2016-07-10 00:57:36", "178.137.89.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("33906", "2", "2016-07-10 00:57:44", "46.161.9.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("33907", "12", "2016-07-10 02:05:55", "46.118.117.240", "2");
INSERT INTO `wp_gf_form_view` VALUES("33908", "12", "2016-07-10 02:05:55", "46.118.117.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("33909", "3", "2016-07-10 02:05:57", "46.118.117.240", "78");
INSERT INTO `wp_gf_form_view` VALUES("33910", "3", "2016-07-10 02:05:57", "46.118.117.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("33911", "3", "2016-07-10 02:05:57", "46.118.117.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("33912", "3", "2016-07-10 03:08:36", "192.243.55.136", "60");
INSERT INTO `wp_gf_form_view` VALUES("33913", "10", "2016-07-10 03:35:54", "40.77.167.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("33914", "3", "2016-07-10 04:28:53", "207.46.13.106", "485");
INSERT INTO `wp_gf_form_view` VALUES("33915", "10", "2016-07-10 04:29:12", "207.46.13.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("33916", "9", "2016-07-10 04:29:18", "207.46.13.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("33917", "8", "2016-07-10 04:29:23", "207.46.13.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("33918", "3", "2016-07-10 05:11:09", "194.187.170.110", "132");
INSERT INTO `wp_gf_form_view` VALUES("33919", "2", "2016-07-10 05:38:31", "46.161.9.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("33920", "3", "2016-07-10 06:00:53", "174.129.237.157", "152");
INSERT INTO `wp_gf_form_view` VALUES("33921", "10", "2016-07-10 06:29:44", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("33922", "12", "2016-07-10 06:52:00", "46.119.117.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("33923", "3", "2016-07-10 07:15:57", "194.187.170.110", "93");
INSERT INTO `wp_gf_form_view` VALUES("33924", "2", "2016-07-10 07:19:47", "192.243.55.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("33925", "11", "2016-07-10 08:03:44", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("33926", "3", "2016-07-10 08:03:45", "199.21.99.202", "72");
INSERT INTO `wp_gf_form_view` VALUES("33927", "3", "2016-07-10 09:06:00", "207.46.13.32", "62");
INSERT INTO `wp_gf_form_view` VALUES("33928", "1", "2016-07-10 09:19:16", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("33929", "3", "2016-07-10 10:15:23", "69.4.91.19", "155");
INSERT INTO `wp_gf_form_view` VALUES("33930", "12", "2016-07-10 10:34:10", "178.137.89.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("33931", "1", "2016-07-10 10:38:58", "5.189.142.153", "4");
INSERT INTO `wp_gf_form_view` VALUES("33932", "3", "2016-07-10 11:01:02", "207.46.13.64", "104");
INSERT INTO `wp_gf_form_view` VALUES("33933", "12", "2016-07-10 11:40:09", "46.118.117.240", "3");
INSERT INTO `wp_gf_form_view` VALUES("33934", "3", "2016-07-10 12:20:40", "69.4.91.19", "62");
INSERT INTO `wp_gf_form_view` VALUES("33935", "3", "2016-07-10 13:11:30", "217.69.133.230", "21");
INSERT INTO `wp_gf_form_view` VALUES("33936", "10", "2016-07-10 14:21:05", "207.46.13.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("33937", "3", "2016-07-10 14:21:07", "207.46.13.32", "61");
INSERT INTO `wp_gf_form_view` VALUES("33938", "3", "2016-07-10 16:13:23", "194.187.170.104", "147");
INSERT INTO `wp_gf_form_view` VALUES("33939", "12", "2016-07-10 16:39:12", "46.119.117.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("33940", "3", "2016-07-10 17:00:43", "194.187.170.104", "74");
INSERT INTO `wp_gf_form_view` VALUES("33941", "1", "2016-07-10 17:25:51", "194.187.170.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("33942", "3", "2016-07-10 18:10:43", "217.69.133.230", "73");
INSERT INTO `wp_gf_form_view` VALUES("33943", "3", "2016-07-10 19:07:18", "194.187.170.104", "171");
INSERT INTO `wp_gf_form_view` VALUES("33944", "12", "2016-07-10 19:25:46", "46.118.117.240", "2");
INSERT INTO `wp_gf_form_view` VALUES("33945", "1", "2016-07-10 19:29:13", "154.20.89.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("33946", "3", "2016-07-10 20:05:03", "24.68.17.97", "80");
INSERT INTO `wp_gf_form_view` VALUES("33947", "12", "2016-07-10 20:29:57", "178.137.89.208", "4");
INSERT INTO `wp_gf_form_view` VALUES("33948", "10", "2016-07-10 21:22:45", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("33949", "3", "2016-07-10 21:22:49", "217.69.133.233", "103");
INSERT INTO `wp_gf_form_view` VALUES("33950", "10", "2016-07-10 22:16:51", "207.46.13.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("33951", "3", "2016-07-10 22:16:54", "207.46.13.159", "91");
INSERT INTO `wp_gf_form_view` VALUES("33952", "3", "2016-07-10 23:00:18", "114.97.200.204", "40");
INSERT INTO `wp_gf_form_view` VALUES("33953", "3", "2016-07-11 00:01:42", "199.21.99.202", "124");
INSERT INTO `wp_gf_form_view` VALUES("33954", "12", "2016-07-11 00:03:41", "46.119.117.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("33955", "1", "2016-07-11 00:34:14", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("33956", "3", "2016-07-11 01:05:37", "114.97.200.204", "313");
INSERT INTO `wp_gf_form_view` VALUES("33957", "11", "2016-07-11 01:07:33", "78.159.213.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("33958", "12", "2016-07-11 01:08:20", "78.159.213.214", "3");
INSERT INTO `wp_gf_form_view` VALUES("33959", "2", "2016-07-11 01:09:22", "78.159.213.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("33960", "3", "2016-07-11 02:14:10", "217.69.133.69", "141");
INSERT INTO `wp_gf_form_view` VALUES("33961", "2", "2016-07-11 02:14:27", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("33962", "3", "2016-07-11 03:07:41", "194.187.170.112", "51");
INSERT INTO `wp_gf_form_view` VALUES("33963", "10", "2016-07-11 03:11:13", "194.187.170.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("33964", "3", "2016-07-11 04:16:02", "194.187.170.112", "52");
INSERT INTO `wp_gf_form_view` VALUES("33965", "3", "2016-07-11 05:21:42", "194.187.170.112", "112");
INSERT INTO `wp_gf_form_view` VALUES("33966", "12", "2016-07-11 05:26:11", "178.137.128.53", "6");
INSERT INTO `wp_gf_form_view` VALUES("33967", "12", "2016-07-11 05:26:11", "178.137.128.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("33968", "12", "2016-07-11 05:26:11", "178.137.128.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("33969", "12", "2016-07-11 05:26:11", "178.137.128.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("33970", "3", "2016-07-11 07:03:59", "164.132.161.34", "112");
INSERT INTO `wp_gf_form_view` VALUES("33971", "12", "2016-07-11 07:14:08", "178.137.89.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("33972", "2", "2016-07-11 07:14:25", "202.46.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("33973", "3", "2016-07-11 08:03:12", "66.249.66.148", "61");
INSERT INTO `wp_gf_form_view` VALUES("33974", "3", "2016-07-11 09:23:04", "66.249.66.144", "20");
INSERT INTO `wp_gf_form_view` VALUES("33975", "10", "2016-07-11 09:37:06", "40.77.167.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("33976", "12", "2016-07-11 10:10:36", "178.137.89.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("33977", "3", "2016-07-11 10:10:37", "178.137.89.208", "49");
INSERT INTO `wp_gf_form_view` VALUES("33978", "3", "2016-07-11 10:10:37", "178.137.89.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("33979", "3", "2016-07-11 17:05:28", "100.43.85.8", "298");
INSERT INTO `wp_gf_form_view` VALUES("33980", "3", "2016-07-11 17:05:28", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("33981", "3", "2016-07-11 17:05:28", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("33982", "3", "2016-07-11 18:08:02", "207.194.133.9", "309");
INSERT INTO `wp_gf_form_view` VALUES("33983", "10", "2016-07-11 18:16:48", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("33984", "3", "2016-07-11 19:14:44", "124.73.14.59", "62");
INSERT INTO `wp_gf_form_view` VALUES("33985", "5", "2016-07-11 19:56:54", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("33986", "3", "2016-07-11 20:00:29", "217.69.133.232", "180");
INSERT INTO `wp_gf_form_view` VALUES("33987", "10", "2016-07-11 20:37:13", "157.55.39.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("33988", "12", "2016-07-11 20:44:54", "46.118.238.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("33989", "3", "2016-07-11 21:00:02", "72.143.231.62", "110");
INSERT INTO `wp_gf_form_view` VALUES("33990", "3", "2016-07-11 22:00:10", "202.46.55.177", "94");
INSERT INTO `wp_gf_form_view` VALUES("33991", "1", "2016-07-11 22:52:44", "24.108.7.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("33992", "3", "2016-07-11 23:00:46", "24.108.7.33", "103");
INSERT INTO `wp_gf_form_view` VALUES("33993", "12", "2016-07-12 00:04:01", "124.73.14.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("33994", "3", "2016-07-12 00:04:01", "124.73.14.59", "372");
INSERT INTO `wp_gf_form_view` VALUES("33995", "2", "2016-07-12 00:06:32", "104.36.18.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("33996", "11", "2016-07-12 00:06:35", "104.36.18.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("33997", "1", "2016-07-12 00:29:14", "184.66.244.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("33998", "10", "2016-07-12 00:53:25", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("33999", "3", "2016-07-12 01:34:49", "66.249.79.176", "20");
INSERT INTO `wp_gf_form_view` VALUES("34000", "3", "2016-07-12 02:17:28", "202.46.53.193", "41");
INSERT INTO `wp_gf_form_view` VALUES("34001", "12", "2016-07-12 02:52:08", "178.137.89.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("34002", "3", "2016-07-12 03:02:15", "24.108.33.130", "65");
INSERT INTO `wp_gf_form_view` VALUES("34003", "12", "2016-07-12 03:07:14", "46.118.238.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("34004", "3", "2016-07-12 04:06:35", "157.55.39.233", "112");
INSERT INTO `wp_gf_form_view` VALUES("34005", "12", "2016-07-12 04:35:57", "46.118.117.240", "8");
INSERT INTO `wp_gf_form_view` VALUES("34006", "3", "2016-07-12 05:09:09", "199.21.99.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("34007", "3", "2016-07-12 06:01:13", "194.187.170.103", "47");
INSERT INTO `wp_gf_form_view` VALUES("34008", "3", "2016-07-12 07:21:05", "77.75.77.101", "10");
INSERT INTO `wp_gf_form_view` VALUES("34009", "3", "2016-07-12 08:04:39", "207.46.13.68", "32");
INSERT INTO `wp_gf_form_view` VALUES("34010", "3", "2016-07-12 09:31:37", "202.46.52.165", "11");
INSERT INTO `wp_gf_form_view` VALUES("34011", "3", "2016-07-12 10:00:49", "68.180.228.110", "46");
INSERT INTO `wp_gf_form_view` VALUES("34012", "3", "2016-07-12 11:25:45", "62.210.142.53", "54");
INSERT INTO `wp_gf_form_view` VALUES("34013", "10", "2016-07-12 11:27:53", "199.16.156.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("34014", "3", "2016-07-12 12:03:38", "202.46.55.125", "60");
INSERT INTO `wp_gf_form_view` VALUES("34015", "3", "2016-07-12 13:13:28", "66.249.79.176", "31");
INSERT INTO `wp_gf_form_view` VALUES("34016", "12", "2016-07-12 14:01:44", "46.118.117.240", "2");
INSERT INTO `wp_gf_form_view` VALUES("34017", "3", "2016-07-12 14:01:44", "46.118.117.240", "74");
INSERT INTO `wp_gf_form_view` VALUES("34018", "3", "2016-07-12 15:06:55", "77.75.78.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("34019", "3", "2016-07-12 16:07:15", "194.187.170.120", "83");
INSERT INTO `wp_gf_form_view` VALUES("34020", "8", "2016-07-12 16:43:48", "66.249.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("34021", "3", "2016-07-12 17:10:25", "67.70.66.180", "105");
INSERT INTO `wp_gf_form_view` VALUES("34022", "10", "2016-07-12 17:58:50", "46.4.32.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("34023", "3", "2016-07-12 18:02:10", "162.217.232.37", "194");
INSERT INTO `wp_gf_form_view` VALUES("34024", "3", "2016-07-12 19:14:53", "66.249.79.183", "51");
INSERT INTO `wp_gf_form_view` VALUES("34025", "3", "2016-07-12 20:12:23", "184.71.13.222", "154");
INSERT INTO `wp_gf_form_view` VALUES("34026", "12", "2016-07-12 20:22:46", "24.69.68.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("34027", "3", "2016-07-12 21:08:16", "68.180.228.110", "94");
INSERT INTO `wp_gf_form_view` VALUES("34028", "12", "2016-07-12 21:29:59", "46.118.117.240", "2");
INSERT INTO `wp_gf_form_view` VALUES("34029", "3", "2016-07-12 22:01:10", "68.180.228.110", "265");
INSERT INTO `wp_gf_form_view` VALUES("34030", "10", "2016-07-12 22:04:21", "24.68.17.97", "3");
INSERT INTO `wp_gf_form_view` VALUES("34031", "12", "2016-07-12 22:57:49", "178.137.89.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("34032", "3", "2016-07-12 23:14:10", "68.180.228.110", "41");
INSERT INTO `wp_gf_form_view` VALUES("34033", "10", "2016-07-12 23:19:37", "66.249.79.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("34034", "3", "2016-07-13 00:11:29", "68.180.228.110", "263");
INSERT INTO `wp_gf_form_view` VALUES("34035", "12", "2016-07-13 00:23:53", "104.236.119.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("34036", "2", "2016-07-13 00:23:53", "104.236.119.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("34037", "11", "2016-07-13 00:23:54", "104.236.119.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("34038", "10", "2016-07-13 00:48:46", "157.55.39.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("34039", "3", "2016-07-13 01:03:57", "52.207.226.2", "40");
INSERT INTO `wp_gf_form_view` VALUES("34040", "12", "2016-07-13 02:48:56", "66.249.79.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("34041", "3", "2016-07-13 02:48:57", "66.249.79.176", "51");
INSERT INTO `wp_gf_form_view` VALUES("34042", "3", "2016-07-13 03:18:13", "66.249.79.176", "110");
INSERT INTO `wp_gf_form_view` VALUES("34043", "3", "2016-07-13 04:30:31", "77.75.78.165", "20");
INSERT INTO `wp_gf_form_view` VALUES("34044", "3", "2016-07-13 05:02:03", "157.55.39.242", "91");
INSERT INTO `wp_gf_form_view` VALUES("34045", "3", "2016-07-13 06:36:42", "66.249.79.169", "51");
INSERT INTO `wp_gf_form_view` VALUES("34046", "3", "2016-07-13 07:00:27", "202.46.53.122", "326");
INSERT INTO `wp_gf_form_view` VALUES("34047", "11", "2016-07-13 07:30:15", "70.183.228.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("34048", "12", "2016-07-13 07:30:48", "70.183.228.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("34049", "2", "2016-07-13 07:31:31", "70.183.228.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("34050", "3", "2016-07-13 08:06:56", "194.187.170.103", "122");
INSERT INTO `wp_gf_form_view` VALUES("34051", "11", "2016-07-13 09:09:51", "194.187.170.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("34052", "3", "2016-07-13 09:09:51", "194.187.170.103", "90");
INSERT INTO `wp_gf_form_view` VALUES("34053", "12", "2016-07-13 09:21:38", "178.137.89.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("34054", "5", "2016-07-13 09:24:28", "194.187.170.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("34055", "3", "2016-07-13 10:31:49", "207.46.13.149", "22");
INSERT INTO `wp_gf_form_view` VALUES("34056", "12", "2016-07-13 11:03:01", "134.249.54.211", "3");
INSERT INTO `wp_gf_form_view` VALUES("34057", "3", "2016-07-13 11:03:01", "134.249.54.211", "80");
INSERT INTO `wp_gf_form_view` VALUES("34058", "12", "2016-07-13 12:11:16", "178.137.128.53", "10");
INSERT INTO `wp_gf_form_view` VALUES("34059", "12", "2016-07-13 12:11:16", "178.137.128.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("34060", "12", "2016-07-13 12:11:16", "178.137.128.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("34061", "3", "2016-07-13 12:11:17", "178.137.128.53", "139");
INSERT INTO `wp_gf_form_view` VALUES("34062", "3", "2016-07-13 12:11:17", "178.137.128.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("34063", "3", "2016-07-13 12:11:17", "178.137.128.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("34064", "3", "2016-07-13 13:02:44", "194.187.170.110", "21");
INSERT INTO `wp_gf_form_view` VALUES("34065", "3", "2016-07-13 14:02:05", "207.46.13.9", "60");
INSERT INTO `wp_gf_form_view` VALUES("34066", "8", "2016-07-13 14:37:13", "66.249.79.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("34067", "3", "2016-07-13 15:01:06", "24.108.189.119", "65");
INSERT INTO `wp_gf_form_view` VALUES("34068", "3", "2016-07-13 16:30:32", "51.255.65.82", "45");
INSERT INTO `wp_gf_form_view` VALUES("34069", "3", "2016-07-13 17:17:51", "142.36.224.243", "30");
INSERT INTO `wp_gf_form_view` VALUES("34070", "3", "2016-07-13 18:04:00", "194.187.170.113", "52");
INSERT INTO `wp_gf_form_view` VALUES("34071", "8", "2016-07-13 18:50:24", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("34072", "3", "2016-07-13 19:02:55", "207.46.13.0", "82");
INSERT INTO `wp_gf_form_view` VALUES("34073", "3", "2016-07-13 20:41:02", "77.75.79.11", "34");
INSERT INTO `wp_gf_form_view` VALUES("34074", "3", "2016-07-13 21:14:52", "202.46.58.204", "51");
INSERT INTO `wp_gf_form_view` VALUES("34075", "3", "2016-07-13 22:00:32", "68.180.228.110", "294");
INSERT INTO `wp_gf_form_view` VALUES("34076", "11", "2016-07-13 22:29:05", "145.133.160.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("34077", "12", "2016-07-13 22:29:31", "145.133.160.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("34078", "2", "2016-07-13 22:30:11", "145.133.160.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("34079", "3", "2016-07-13 23:02:53", "184.66.244.73", "73");
INSERT INTO `wp_gf_form_view` VALUES("34080", "3", "2016-07-14 00:09:18", "114.97.201.8", "41");
INSERT INTO `wp_gf_form_view` VALUES("34081", "3", "2016-07-14 01:02:30", "68.180.228.110", "170");
INSERT INTO `wp_gf_form_view` VALUES("34082", "2", "2016-07-14 01:16:04", "93.187.36.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("34083", "3", "2016-07-14 02:05:17", "202.46.49.208", "143");
INSERT INTO `wp_gf_form_view` VALUES("34084", "6", "2016-07-14 03:08:28", "51.255.65.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("34085", "3", "2016-07-14 03:08:28", "51.255.65.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("34086", "3", "2016-07-14 04:15:16", "68.180.228.110", "96");
INSERT INTO `wp_gf_form_view` VALUES("34087", "3", "2016-07-14 05:01:30", "164.132.161.78", "62");
INSERT INTO `wp_gf_form_view` VALUES("34088", "12", "2016-07-14 05:12:45", "46.119.112.87", "2");
INSERT INTO `wp_gf_form_view` VALUES("34089", "3", "2016-07-14 06:25:51", "194.187.170.114", "52");
INSERT INTO `wp_gf_form_view` VALUES("34090", "12", "2016-07-14 06:31:06", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34091", "3", "2016-07-14 07:00:52", "194.187.170.114", "177");
INSERT INTO `wp_gf_form_view` VALUES("34092", "9", "2016-07-14 07:56:45", "207.46.13.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("34093", "3", "2016-07-14 08:04:25", "194.187.170.114", "114");
INSERT INTO `wp_gf_form_view` VALUES("34094", "11", "2016-07-14 08:16:58", "194.187.170.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("34095", "5", "2016-07-14 08:27:24", "194.187.170.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("34096", "12", "2016-07-14 08:54:04", "194.187.170.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("34097", "3", "2016-07-14 09:01:36", "194.187.170.114", "126");
INSERT INTO `wp_gf_form_view` VALUES("34098", "2", "2016-07-14 09:06:12", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("34099", "12", "2016-07-14 09:27:42", "68.180.228.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("34100", "3", "2016-07-14 10:09:19", "196.196.90.163", "91");
INSERT INTO `wp_gf_form_view` VALUES("34101", "10", "2016-07-14 10:21:09", "157.55.39.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("34102", "1", "2016-07-14 11:01:12", "103.23.22.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("34103", "3", "2016-07-14 11:01:13", "103.23.22.221", "153");
INSERT INTO `wp_gf_form_view` VALUES("34104", "9", "2016-07-14 11:43:01", "165.231.96.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("34105", "12", "2016-07-14 11:51:23", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34106", "3", "2016-07-14 12:09:06", "68.180.228.110", "130");
INSERT INTO `wp_gf_form_view` VALUES("34107", "12", "2016-07-14 12:15:24", "134.249.53.10", "7");
INSERT INTO `wp_gf_form_view` VALUES("34108", "12", "2016-07-14 12:15:24", "134.249.53.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34109", "12", "2016-07-14 12:15:24", "134.249.53.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34110", "3", "2016-07-14 13:24:19", "65.55.218.43", "61");
INSERT INTO `wp_gf_form_view` VALUES("34111", "12", "2016-07-14 13:30:33", "46.118.156.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("34112", "12", "2016-07-14 14:27:21", "46.119.112.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("34113", "3", "2016-07-14 14:27:21", "46.119.112.87", "70");
INSERT INTO `wp_gf_form_view` VALUES("34114", "3", "2016-07-14 15:12:58", "202.46.52.146", "332");
INSERT INTO `wp_gf_form_view` VALUES("34115", "10", "2016-07-14 15:24:39", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("34116", "11", "2016-07-14 15:54:54", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("34117", "12", "2016-07-14 15:55:38", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("34118", "2", "2016-07-14 15:56:38", "23.31.24.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("34119", "3", "2016-07-14 16:18:51", "207.46.13.128", "142");
INSERT INTO `wp_gf_form_view` VALUES("34120", "12", "2016-07-14 16:20:15", "54.210.212.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("34121", "12", "2016-07-14 17:00:50", "184.151.118.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("34122", "3", "2016-07-14 17:00:50", "184.151.118.96", "21");
INSERT INTO `wp_gf_form_view` VALUES("34123", "3", "2016-07-14 18:05:05", "77.75.78.162", "166");
INSERT INTO `wp_gf_form_view` VALUES("34124", "1", "2016-07-14 18:48:53", "24.68.126.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("34125", "3", "2016-07-14 19:08:39", "164.132.161.64", "42");
INSERT INTO `wp_gf_form_view` VALUES("34126", "3", "2016-07-14 20:01:37", "202.46.58.26", "40");
INSERT INTO `wp_gf_form_view` VALUES("34127", "3", "2016-07-14 21:18:53", "194.187.170.117", "142");
INSERT INTO `wp_gf_form_view` VALUES("34128", "11", "2016-07-14 21:40:55", "151.80.31.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("34129", "12", "2016-07-14 21:42:49", "134.249.53.10", "5");
INSERT INTO `wp_gf_form_view` VALUES("34130", "3", "2016-07-14 22:00:16", "72.143.234.66", "62");
INSERT INTO `wp_gf_form_view` VALUES("34131", "3", "2016-07-14 23:01:38", "202.46.57.162", "144");
INSERT INTO `wp_gf_form_view` VALUES("34132", "3", "2016-07-15 00:02:37", "89.36.66.217", "125");
INSERT INTO `wp_gf_form_view` VALUES("34133", "12", "2016-07-15 00:37:19", "52.71.155.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("34134", "12", "2016-07-15 01:01:49", "46.119.112.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("34135", "3", "2016-07-15 01:01:49", "46.119.112.87", "186");
INSERT INTO `wp_gf_form_view` VALUES("34136", "10", "2016-07-15 01:11:04", "68.180.228.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("34137", "2", "2016-07-15 01:36:16", "104.160.31.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("34138", "3", "2016-07-15 02:02:43", "207.46.13.168", "41");
INSERT INTO `wp_gf_form_view` VALUES("34139", "1", "2016-07-15 02:10:32", "82.114.73.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("34140", "1", "2016-07-15 03:33:48", "196.196.37.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("34141", "3", "2016-07-15 03:33:49", "196.196.37.176", "82");
INSERT INTO `wp_gf_form_view` VALUES("34142", "3", "2016-07-15 04:02:59", "202.46.56.116", "123");
INSERT INTO `wp_gf_form_view` VALUES("34143", "2", "2016-07-15 04:07:55", "192.243.55.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("34144", "12", "2016-07-15 04:21:04", "68.180.228.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("34145", "3", "2016-07-15 05:02:12", "68.180.228.110", "110");
INSERT INTO `wp_gf_form_view` VALUES("34146", "12", "2016-07-15 05:37:02", "134.249.53.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("34147", "3", "2016-07-15 06:12:00", "207.46.13.152", "215");
INSERT INTO `wp_gf_form_view` VALUES("34148", "12", "2016-07-15 06:34:58", "223.240.120.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("34149", "9", "2016-07-15 07:19:17", "165.231.108.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("34150", "3", "2016-07-15 07:19:17", "165.231.108.180", "81");
INSERT INTO `wp_gf_form_view` VALUES("34151", "3", "2016-07-15 08:04:21", "66.249.79.190", "52");
INSERT INTO `wp_gf_form_view` VALUES("34152", "3", "2016-07-15 09:03:47", "220.181.108.107", "139");
INSERT INTO `wp_gf_form_view` VALUES("34153", "12", "2016-07-15 09:06:51", "46.118.156.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("34154", "2", "2016-07-15 09:59:59", "68.180.228.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("34155", "3", "2016-07-15 10:00:00", "68.180.228.110", "83");
INSERT INTO `wp_gf_form_view` VALUES("34156", "12", "2016-07-15 10:08:58", "46.119.112.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("34157", "8", "2016-07-15 11:26:44", "40.77.167.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("34158", "3", "2016-07-15 11:26:46", "40.77.167.61", "41");
INSERT INTO `wp_gf_form_view` VALUES("34159", "3", "2016-07-15 12:19:51", "68.180.228.110", "114");
INSERT INTO `wp_gf_form_view` VALUES("34160", "1", "2016-07-15 12:32:58", "5.34.241.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("34161", "12", "2016-07-15 12:47:37", "46.118.238.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("34162", "3", "2016-07-15 13:03:01", "194.187.170.105", "56");
INSERT INTO `wp_gf_form_view` VALUES("34163", "12", "2016-07-15 13:10:18", "46.119.112.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("34164", "3", "2016-07-15 14:00:09", "91.121.141.219", "82");
INSERT INTO `wp_gf_form_view` VALUES("34165", "3", "2016-07-15 15:09:57", "207.46.13.4", "42");
INSERT INTO `wp_gf_form_view` VALUES("34166", "8", "2016-07-15 15:26:27", "51.255.65.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("34167", "3", "2016-07-15 16:00:04", "157.55.39.87", "63");
INSERT INTO `wp_gf_form_view` VALUES("34168", "11", "2016-07-15 16:38:17", "220.181.108.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("34169", "3", "2016-07-15 17:00:34", "68.180.228.110", "102");
INSERT INTO `wp_gf_form_view` VALUES("34170", "3", "2016-07-15 18:21:24", "192.243.55.135", "152");
INSERT INTO `wp_gf_form_view` VALUES("34171", "2", "2016-07-15 18:58:22", "196.196.88.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("34172", "8", "2016-07-15 19:45:36", "157.55.39.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("34173", "3", "2016-07-15 19:45:37", "157.55.39.249", "50");
INSERT INTO `wp_gf_form_view` VALUES("34174", "10", "2016-07-15 20:09:45", "51.255.65.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("34175", "3", "2016-07-15 20:09:45", "51.255.65.55", "103");
INSERT INTO `wp_gf_form_view` VALUES("34176", "3", "2016-07-15 21:01:23", "68.180.228.110", "142");
INSERT INTO `wp_gf_form_view` VALUES("34177", "12", "2016-07-15 21:02:08", "46.118.238.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("34178", "3", "2016-07-15 22:06:23", "68.180.228.110", "42");
INSERT INTO `wp_gf_form_view` VALUES("34179", "3", "2016-07-15 23:03:51", "142.32.55.224", "50");
INSERT INTO `wp_gf_form_view` VALUES("34180", "3", "2016-07-16 00:18:44", "207.46.13.124", "52");
INSERT INTO `wp_gf_form_view` VALUES("34181", "12", "2016-07-16 01:02:40", "178.137.163.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("34182", "3", "2016-07-16 01:02:40", "178.137.163.41", "552");
INSERT INTO `wp_gf_form_view` VALUES("34183", "5", "2016-07-16 01:24:58", "157.55.39.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34184", "10", "2016-07-16 01:25:02", "157.55.39.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("34185", "6", "2016-07-16 01:25:22", "157.55.39.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34186", "9", "2016-07-16 01:25:33", "157.55.39.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("34187", "3", "2016-07-16 02:21:10", "68.180.228.110", "21");
INSERT INTO `wp_gf_form_view` VALUES("34188", "3", "2016-07-16 03:17:42", "5.9.145.132", "31");
INSERT INTO `wp_gf_form_view` VALUES("34189", "10", "2016-07-16 03:33:39", "202.46.53.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("34190", "1", "2016-07-16 03:39:09", "192.187.124.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("34191", "3", "2016-07-16 04:14:04", "194.187.170.119", "73");
INSERT INTO `wp_gf_form_view` VALUES("34192", "3", "2016-07-16 05:10:02", "68.180.228.110", "737");
INSERT INTO `wp_gf_form_view` VALUES("34193", "11", "2016-07-16 05:37:42", "37.187.56.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("34194", "2", "2016-07-16 05:37:48", "37.187.56.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("34195", "12", "2016-07-16 05:39:50", "37.187.56.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("34196", "1", "2016-07-16 05:40:28", "37.187.56.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("34197", "3", "2016-07-16 06:00:45", "165.231.108.107", "295");
INSERT INTO `wp_gf_form_view` VALUES("34198", "12", "2016-07-16 06:23:51", "46.119.112.87", "2");
INSERT INTO `wp_gf_form_view` VALUES("34199", "8", "2016-07-16 07:24:00", "66.249.79.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("34200", "3", "2016-07-16 07:24:01", "66.249.79.183", "46");
INSERT INTO `wp_gf_form_view` VALUES("34201", "3", "2016-07-16 08:01:49", "164.132.161.95", "54");
INSERT INTO `wp_gf_form_view` VALUES("34202", "3", "2016-07-16 09:28:30", "62.210.162.184", "22");
INSERT INTO `wp_gf_form_view` VALUES("34203", "3", "2016-07-16 10:00:09", "68.180.228.110", "102");
INSERT INTO `wp_gf_form_view` VALUES("34204", "10", "2016-07-16 10:05:50", "66.249.79.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("34205", "12", "2016-07-16 10:43:47", "46.118.156.206", "3");
INSERT INTO `wp_gf_form_view` VALUES("34206", "3", "2016-07-16 11:12:35", "62.210.162.184", "51");
INSERT INTO `wp_gf_form_view` VALUES("34207", "3", "2016-07-16 12:03:23", "68.180.228.110", "82");
INSERT INTO `wp_gf_form_view` VALUES("34208", "3", "2016-07-16 13:06:52", "196.196.90.224", "112");
INSERT INTO `wp_gf_form_view` VALUES("34209", "12", "2016-07-16 13:15:22", "178.137.163.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("34210", "3", "2016-07-16 14:05:31", "141.8.143.195", "72");
INSERT INTO `wp_gf_form_view` VALUES("34211", "3", "2016-07-16 15:26:15", "207.46.13.85", "121");
INSERT INTO `wp_gf_form_view` VALUES("34212", "2", "2016-07-16 15:44:36", "82.208.160.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("34213", "12", "2016-07-16 16:10:59", "134.249.53.10", "4");
INSERT INTO `wp_gf_form_view` VALUES("34214", "12", "2016-07-16 16:10:59", "134.249.53.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34215", "3", "2016-07-16 16:10:59", "134.249.53.10", "139");
INSERT INTO `wp_gf_form_view` VALUES("34216", "3", "2016-07-16 16:10:59", "134.249.53.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34217", "11", "2016-07-16 16:15:10", "157.55.39.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("34218", "3", "2016-07-16 17:00:32", "66.249.79.197", "144");
INSERT INTO `wp_gf_form_view` VALUES("34219", "12", "2016-07-16 17:25:36", "46.118.156.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("34220", "3", "2016-07-16 18:10:09", "157.55.39.155", "51");
INSERT INTO `wp_gf_form_view` VALUES("34221", "3", "2016-07-16 19:05:20", "151.80.31.100", "279");
INSERT INTO `wp_gf_form_view` VALUES("34222", "3", "2016-07-16 20:01:09", "68.180.228.110", "284");
INSERT INTO `wp_gf_form_view` VALUES("34223", "10", "2016-07-16 20:33:54", "207.46.13.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("34224", "3", "2016-07-16 21:05:38", "202.46.54.109", "51");
INSERT INTO `wp_gf_form_view` VALUES("34225", "9", "2016-07-16 22:07:26", "196.196.88.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("34226", "3", "2016-07-16 22:07:26", "196.196.88.176", "124");
INSERT INTO `wp_gf_form_view` VALUES("34227", "3", "2016-07-16 23:10:25", "62.210.162.184", "62");
INSERT INTO `wp_gf_form_view` VALUES("34228", "9", "2016-07-16 23:50:19", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("34229", "3", "2016-07-17 00:25:05", "207.46.13.122", "72");
INSERT INTO `wp_gf_form_view` VALUES("34230", "12", "2016-07-17 01:29:17", "46.118.156.206", "4");
INSERT INTO `wp_gf_form_view` VALUES("34231", "3", "2016-07-17 01:29:17", "46.118.156.206", "70");
INSERT INTO `wp_gf_form_view` VALUES("34232", "9", "2016-07-17 01:32:05", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("34233", "12", "2016-07-17 02:00:00", "134.249.53.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("34234", "3", "2016-07-17 02:00:00", "134.249.53.10", "60");
INSERT INTO `wp_gf_form_view` VALUES("34235", "3", "2016-07-17 03:05:48", "24.68.17.97", "207");
INSERT INTO `wp_gf_form_view` VALUES("34236", "9", "2016-07-17 03:12:55", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("34237", "12", "2016-07-17 03:21:28", "24.68.17.97", "5");
INSERT INTO `wp_gf_form_view` VALUES("34238", "12", "2016-07-17 04:12:09", "178.137.128.53", "4");
INSERT INTO `wp_gf_form_view` VALUES("34239", "3", "2016-07-17 04:12:10", "178.137.128.53", "129");
INSERT INTO `wp_gf_form_view` VALUES("34240", "3", "2016-07-17 05:14:10", "196.196.90.66", "31");
INSERT INTO `wp_gf_form_view` VALUES("34241", "3", "2016-07-17 06:05:59", "40.77.167.47", "31");
INSERT INTO `wp_gf_form_view` VALUES("34242", "3", "2016-07-17 07:12:10", "66.249.79.183", "20");
INSERT INTO `wp_gf_form_view` VALUES("34243", "3", "2016-07-17 08:04:58", "202.46.51.85", "102");
INSERT INTO `wp_gf_form_view` VALUES("34244", "9", "2016-07-17 08:22:05", "157.55.39.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("34245", "3", "2016-07-17 09:20:35", "142.0.41.2", "101");
INSERT INTO `wp_gf_form_view` VALUES("34246", "12", "2016-07-17 09:32:38", "134.249.53.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("34247", "3", "2016-07-17 10:18:10", "194.187.170.115", "126");
INSERT INTO `wp_gf_form_view` VALUES("34248", "12", "2016-07-17 10:51:27", "46.118.238.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("34249", "3", "2016-07-17 11:18:17", "194.187.170.115", "54");
INSERT INTO `wp_gf_form_view` VALUES("34250", "12", "2016-07-17 11:50:55", "46.119.112.87", "2");
INSERT INTO `wp_gf_form_view` VALUES("34251", "3", "2016-07-17 12:12:03", "199.21.99.202", "34");
INSERT INTO `wp_gf_form_view` VALUES("34252", "3", "2016-07-17 13:21:23", "68.180.228.110", "51");
INSERT INTO `wp_gf_form_view` VALUES("34253", "12", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34254", "12", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34255", "12", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34256", "3", "2016-07-17 14:06:28", "46.118.156.206", "48");
INSERT INTO `wp_gf_form_view` VALUES("34257", "3", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34258", "3", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34259", "3", "2016-07-17 15:05:58", "40.77.167.86", "92");
INSERT INTO `wp_gf_form_view` VALUES("34260", "6", "2016-07-17 15:45:05", "202.46.53.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("34261", "12", "2016-07-17 15:45:54", "46.119.112.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("34262", "3", "2016-07-17 16:14:23", "68.180.228.110", "141");
INSERT INTO `wp_gf_form_view` VALUES("34263", "12", "2016-07-17 16:21:27", "37.115.158.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("34264", "1", "2016-07-17 16:29:05", "198.204.231.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("34265", "11", "2016-07-17 16:56:12", "66.249.79.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("34266", "2", "2016-07-17 16:59:03", "40.77.167.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("34267", "3", "2016-07-17 17:56:30", "66.249.79.190", "10");
INSERT INTO `wp_gf_form_view` VALUES("34268", "3", "2016-07-17 18:03:33", "77.75.77.72", "113");
INSERT INTO `wp_gf_form_view` VALUES("34269", "3", "2016-07-17 19:41:12", "40.77.167.75", "30");
INSERT INTO `wp_gf_form_view` VALUES("34270", "11", "2016-07-17 19:54:24", "40.77.167.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("34271", "3", "2016-07-17 20:08:17", "62.210.162.184", "182");
INSERT INTO `wp_gf_form_view` VALUES("34272", "3", "2016-07-17 21:06:59", "66.249.79.183", "82");
INSERT INTO `wp_gf_form_view` VALUES("34273", "3", "2016-07-17 22:15:07", "157.55.39.132", "60");
INSERT INTO `wp_gf_form_view` VALUES("34274", "3", "2016-07-17 23:05:30", "66.249.79.190", "92");
INSERT INTO `wp_gf_form_view` VALUES("34275", "3", "2016-07-18 00:03:45", "157.55.39.158", "110");
INSERT INTO `wp_gf_form_view` VALUES("34276", "12", "2016-07-18 00:15:51", "178.137.163.41", "6");
INSERT INTO `wp_gf_form_view` VALUES("34277", "10", "2016-07-18 00:52:31", "77.75.78.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("34278", "3", "2016-07-18 01:14:04", "207.46.13.181", "30");
INSERT INTO `wp_gf_form_view` VALUES("34279", "3", "2016-07-18 02:01:14", "157.55.39.93", "123");
INSERT INTO `wp_gf_form_view` VALUES("34280", "11", "2016-07-18 02:20:17", "207.46.13.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("34281", "2", "2016-07-18 03:08:51", "157.55.39.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("34282", "3", "2016-07-18 03:08:51", "157.55.39.158", "40");
INSERT INTO `wp_gf_form_view` VALUES("34283", "3", "2016-07-18 04:16:43", "24.69.74.3", "21");
INSERT INTO `wp_gf_form_view` VALUES("34284", "3", "2016-07-18 05:18:13", "77.75.78.172", "447");
INSERT INTO `wp_gf_form_view` VALUES("34285", "9", "2016-07-18 05:24:43", "207.46.13.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34286", "12", "2016-07-18 05:28:35", "157.55.39.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("34287", "7", "2016-07-18 05:28:48", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("34288", "10", "2016-07-18 05:29:10", "157.55.39.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("34289", "3", "2016-07-18 06:29:16", "202.46.51.30", "189");
INSERT INTO `wp_gf_form_view` VALUES("34290", "10", "2016-07-18 07:39:36", "141.8.143.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("34291", "3", "2016-07-18 07:39:37", "141.8.143.242", "71");
INSERT INTO `wp_gf_form_view` VALUES("34292", "7", "2016-07-18 07:45:25", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("34293", "3", "2016-07-18 08:05:56", "151.80.31.163", "41");
INSERT INTO `wp_gf_form_view` VALUES("34294", "12", "2016-07-18 08:23:47", "46.119.112.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("34295", "3", "2016-07-18 09:00:53", "51.255.65.62", "60");
INSERT INTO `wp_gf_form_view` VALUES("34296", "3", "2016-07-18 10:06:48", "66.249.79.197", "3978");
INSERT INTO `wp_gf_form_view` VALUES("34297", "11", "2016-07-18 10:14:45", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34298", "2", "2016-07-18 10:14:49", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34299", "12", "2016-07-18 10:16:35", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34300", "1", "2016-07-18 10:17:19", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34301", "10", "2016-07-18 10:22:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34302", "5", "2016-07-18 10:23:31", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34303", "8", "2016-07-18 10:27:09", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34304", "9", "2016-07-18 10:27:18", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34305", "6", "2016-07-18 10:28:17", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34306", "3", "2016-07-18 11:03:34", "202.46.51.25", "3388");
INSERT INTO `wp_gf_form_view` VALUES("34307", "2", "2016-07-18 11:16:50", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("34308", "12", "2016-07-18 11:56:52", "207.46.13.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("34309", "3", "2016-07-18 12:01:00", "5.9.98.130", "6413");
INSERT INTO `wp_gf_form_view` VALUES("34310", "12", "2016-07-18 12:06:30", "178.137.163.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("34311", "2", "2016-07-18 12:48:26", "104.156.231.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("34312", "3", "2016-07-18 13:00:03", "5.9.98.130", "1743");
INSERT INTO `wp_gf_form_view` VALUES("34313", "3", "2016-07-18 14:00:01", "5.9.98.130", "6435");
INSERT INTO `wp_gf_form_view` VALUES("34314", "12", "2016-07-18 14:11:41", "154.20.44.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("34315", "3", "2016-07-18 15:00:01", "196.196.88.69", "5993");
INSERT INTO `wp_gf_form_view` VALUES("34316", "12", "2016-07-18 15:45:52", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34317", "3", "2016-07-18 16:00:03", "5.9.98.130", "151");
INSERT INTO `wp_gf_form_view` VALUES("34318", "3", "2016-07-18 17:11:47", "184.66.80.25", "3308");
INSERT INTO `wp_gf_form_view` VALUES("34319", "3", "2016-07-18 18:00:04", "5.9.98.130", "5862");
INSERT INTO `wp_gf_form_view` VALUES("34320", "3", "2016-07-18 19:00:00", "5.9.98.130", "6396");
INSERT INTO `wp_gf_form_view` VALUES("34321", "7", "2016-07-18 19:30:47", "207.46.13.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("34322", "3", "2016-07-18 20:00:00", "5.9.98.130", "6560");
INSERT INTO `wp_gf_form_view` VALUES("34323", "8", "2016-07-18 20:46:07", "66.249.79.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("34324", "3", "2016-07-18 21:00:03", "5.9.98.130", "5237");
INSERT INTO `wp_gf_form_view` VALUES("34325", "12", "2016-07-18 21:21:36", "37.115.158.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("34326", "9", "2016-07-18 21:28:00", "114.97.197.47", "2");
INSERT INTO `wp_gf_form_view` VALUES("34327", "3", "2016-07-18 22:11:25", "24.108.16.65", "425");
INSERT INTO `wp_gf_form_view` VALUES("34328", "12", "2016-07-18 22:14:03", "207.46.13.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("34329", "1", "2016-07-18 22:42:18", "104.227.191.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("34330", "2", "2016-07-18 22:56:44", "104.156.231.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("34331", "3", "2016-07-18 23:27:24", "5.9.98.130", "102");
INSERT INTO `wp_gf_form_view` VALUES("34332", "9", "2016-07-18 23:27:49", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34333", "3", "2016-07-19 00:01:53", "77.75.78.163", "40");
INSERT INTO `wp_gf_form_view` VALUES("34334", "12", "2016-07-19 00:28:34", "178.137.163.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("34335", "3", "2016-07-19 01:11:20", "202.46.52.63", "43");
INSERT INTO `wp_gf_form_view` VALUES("34336", "1", "2016-07-19 01:11:29", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34337", "12", "2016-07-19 02:00:48", "134.249.65.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("34338", "3", "2016-07-19 02:00:48", "134.249.65.218", "71");
INSERT INTO `wp_gf_form_view` VALUES("34339", "1", "2016-07-19 02:17:06", "185.107.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("34340", "3", "2016-07-19 03:08:11", "108.61.123.71", "40");
INSERT INTO `wp_gf_form_view` VALUES("34341", "3", "2016-07-19 04:04:02", "99.199.2.158", "80");
INSERT INTO `wp_gf_form_view` VALUES("34342", "12", "2016-07-19 05:10:55", "46.119.112.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("34343", "3", "2016-07-19 05:10:55", "46.119.112.87", "101");
INSERT INTO `wp_gf_form_view` VALUES("34344", "2", "2016-07-19 05:40:07", "66.249.79.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("34345", "3", "2016-07-19 06:04:09", "66.249.69.190", "50");
INSERT INTO `wp_gf_form_view` VALUES("34346", "12", "2016-07-19 06:44:33", "46.119.112.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("34347", "3", "2016-07-19 07:02:44", "66.249.79.197", "165");
INSERT INTO `wp_gf_form_view` VALUES("34348", "12", "2016-07-19 07:12:45", "46.118.156.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("34349", "12", "2016-07-19 08:02:47", "134.249.53.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("34350", "3", "2016-07-19 08:02:47", "134.249.53.10", "112");
INSERT INTO `wp_gf_form_view` VALUES("34351", "3", "2016-07-19 08:02:47", "134.249.53.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34352", "1", "2016-07-19 08:07:17", "5.34.241.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("34353", "3", "2016-07-19 09:01:42", "202.46.53.205", "52");
INSERT INTO `wp_gf_form_view` VALUES("34354", "2", "2016-07-19 09:04:00", "5.255.250.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("34355", "3", "2016-07-19 10:19:11", "157.55.39.129", "31");
INSERT INTO `wp_gf_form_view` VALUES("34356", "3", "2016-07-19 11:12:41", "62.210.162.184", "71");
INSERT INTO `wp_gf_form_view` VALUES("34357", "3", "2016-07-19 12:44:38", "68.180.229.121", "1256");
INSERT INTO `wp_gf_form_view` VALUES("34358", "1", "2016-07-19 12:50:03", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34359", "11", "2016-07-19 12:50:18", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34360", "5", "2016-07-19 12:57:38", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34361", "3", "2016-07-19 13:00:03", "104.131.46.50", "4207");
INSERT INTO `wp_gf_form_view` VALUES("34362", "12", "2016-07-19 13:01:28", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34363", "6", "2016-07-19 13:10:23", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34364", "9", "2016-07-19 13:19:08", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34365", "10", "2016-07-19 13:30:54", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34366", "2", "2016-07-19 13:54:16", "104.131.46.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34367", "3", "2016-07-19 14:00:04", "104.131.46.50", "758");
INSERT INTO `wp_gf_form_view` VALUES("34368", "3", "2016-07-19 15:05:04", "178.137.163.41", "43");
INSERT INTO `wp_gf_form_view` VALUES("34369", "12", "2016-07-19 15:08:15", "184.66.135.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("34370", "3", "2016-07-19 16:15:33", "184.66.244.73", "93");
INSERT INTO `wp_gf_form_view` VALUES("34371", "3", "2016-07-19 17:26:01", "64.180.74.162", "51");
INSERT INTO `wp_gf_form_view` VALUES("34372", "3", "2016-07-19 18:14:44", "144.228.22.150", "42");
INSERT INTO `wp_gf_form_view` VALUES("34373", "3", "2016-07-19 19:41:42", "202.46.49.139", "31");
INSERT INTO `wp_gf_form_view` VALUES("34374", "3", "2016-07-19 20:06:55", "62.210.162.184", "72");
INSERT INTO `wp_gf_form_view` VALUES("34375", "1", "2016-07-19 20:27:06", "118.172.148.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("34376", "11", "2016-07-19 21:22:11", "78.226.98.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("34377", "3", "2016-07-19 21:22:21", "78.226.98.210", "325");
INSERT INTO `wp_gf_form_view` VALUES("34378", "12", "2016-07-19 21:23:04", "78.226.98.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("34379", "8", "2016-07-19 21:23:51", "202.46.55.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("34380", "2", "2016-07-19 21:23:57", "78.226.98.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("34381", "3", "2016-07-19 22:01:37", "131.137.245.209", "60");
INSERT INTO `wp_gf_form_view` VALUES("34382", "10", "2016-07-19 23:23:51", "199.59.148.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("34383", "3", "2016-07-19 23:23:51", "199.59.148.211", "30");
INSERT INTO `wp_gf_form_view` VALUES("34384", "10", "2016-07-20 00:00:15", "77.75.77.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("34385", "3", "2016-07-20 00:00:16", "77.75.77.109", "83");
INSERT INTO `wp_gf_form_view` VALUES("34386", "3", "2016-07-20 01:00:56", "220.181.108.178", "106");
INSERT INTO `wp_gf_form_view` VALUES("34387", "3", "2016-07-20 02:04:37", "66.249.79.152", "245");
INSERT INTO `wp_gf_form_view` VALUES("34388", "9", "2016-07-20 02:27:59", "40.77.167.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("34389", "3", "2016-07-20 03:01:32", "62.210.162.184", "105");
INSERT INTO `wp_gf_form_view` VALUES("34390", "3", "2016-07-20 04:14:58", "202.46.51.103", "74");
INSERT INTO `wp_gf_form_view` VALUES("34391", "10", "2016-07-20 05:01:27", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("34392", "3", "2016-07-20 05:01:27", "66.249.79.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("34393", "3", "2016-07-20 06:20:07", "157.55.39.16", "31");
INSERT INTO `wp_gf_form_view` VALUES("34394", "3", "2016-07-20 07:08:35", "192.252.225.195", "40");
INSERT INTO `wp_gf_form_view` VALUES("34395", "3", "2016-07-20 08:09:10", "62.210.162.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("34396", "10", "2016-07-20 09:02:52", "151.80.31.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("34397", "3", "2016-07-20 09:02:58", "151.80.31.167", "60");
INSERT INTO `wp_gf_form_view` VALUES("34398", "12", "2016-07-20 09:26:08", "157.55.39.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("34399", "3", "2016-07-20 10:13:08", "51.255.65.3", "74");
INSERT INTO `wp_gf_form_view` VALUES("34400", "10", "2016-07-20 11:34:51", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34401", "3", "2016-07-20 11:34:54", "68.180.229.121", "10");
INSERT INTO `wp_gf_form_view` VALUES("34402", "3", "2016-07-20 12:01:27", "68.180.229.121", "83");
INSERT INTO `wp_gf_form_view` VALUES("34403", "9", "2016-07-20 12:03:45", "157.55.39.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("34404", "1", "2016-07-20 12:10:05", "176.9.176.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("34405", "3", "2016-07-20 13:30:37", "202.46.50.80", "77");
INSERT INTO `wp_gf_form_view` VALUES("34406", "3", "2016-07-20 14:25:24", "51.255.65.23", "20");
INSERT INTO `wp_gf_form_view` VALUES("34407", "1", "2016-07-20 15:11:05", "202.46.54.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("34408", "3", "2016-07-20 15:11:05", "202.46.54.186", "82");
INSERT INTO `wp_gf_form_view` VALUES("34409", "3", "2016-07-20 16:00:38", "5.9.145.132", "21");
INSERT INTO `wp_gf_form_view` VALUES("34410", "2", "2016-07-20 17:14:58", "40.77.167.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("34411", "3", "2016-07-20 17:14:59", "40.77.167.9", "153");
INSERT INTO `wp_gf_form_view` VALUES("34412", "12", "2016-07-20 17:33:15", "207.194.133.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("34413", "3", "2016-07-20 18:28:26", "24.108.4.138", "41");
INSERT INTO `wp_gf_form_view` VALUES("34414", "3", "2016-07-20 19:10:37", "24.68.37.191", "102");
INSERT INTO `wp_gf_form_view` VALUES("34415", "12", "2016-07-20 19:47:01", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("34416", "3", "2016-07-20 20:10:30", "23.89.63.72", "122");
INSERT INTO `wp_gf_form_view` VALUES("34417", "3", "2016-07-20 21:46:41", "157.55.39.248", "14");
INSERT INTO `wp_gf_form_view` VALUES("34418", "1", "2016-07-20 22:29:30", "172.245.129.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("34419", "3", "2016-07-20 22:29:31", "172.245.129.52", "31");
INSERT INTO `wp_gf_form_view` VALUES("34420", "3", "2016-07-20 23:05:48", "46.119.112.87", "140");
INSERT INTO `wp_gf_form_view` VALUES("34421", "3", "2016-07-21 00:04:50", "66.249.79.152", "52");
INSERT INTO `wp_gf_form_view` VALUES("34422", "3", "2016-07-21 01:14:18", "66.249.79.148", "248");
INSERT INTO `wp_gf_form_view` VALUES("34423", "1", "2016-07-21 01:41:12", "207.216.68.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("34424", "8", "2016-07-21 03:53:11", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("34425", "3", "2016-07-21 03:53:15", "157.55.39.248", "10");
INSERT INTO `wp_gf_form_view` VALUES("34426", "3", "2016-07-21 04:04:59", "77.75.77.32", "30");
INSERT INTO `wp_gf_form_view` VALUES("34427", "10", "2016-07-21 04:19:29", "51.255.65.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("34428", "3", "2016-07-21 05:13:52", "77.75.79.109", "21");
INSERT INTO `wp_gf_form_view` VALUES("34429", "3", "2016-07-21 06:18:04", "151.80.31.101", "703");
INSERT INTO `wp_gf_form_view` VALUES("34430", "8", "2016-07-21 06:50:03", "157.55.39.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("34431", "6", "2016-07-21 06:50:06", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("34432", "5", "2016-07-21 06:50:20", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("34433", "10", "2016-07-21 06:50:31", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("34434", "3", "2016-07-21 07:09:51", "165.231.99.235", "61");
INSERT INTO `wp_gf_form_view` VALUES("34435", "3", "2016-07-21 08:07:05", "66.249.79.156", "81");
INSERT INTO `wp_gf_form_view` VALUES("34436", "3", "2016-07-21 09:42:36", "142.0.41.2", "126");
INSERT INTO `wp_gf_form_view` VALUES("34437", "3", "2016-07-21 10:16:25", "62.210.162.184", "21");
INSERT INTO `wp_gf_form_view` VALUES("34438", "1", "2016-07-21 11:28:23", "104.144.183.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("34439", "3", "2016-07-21 11:28:25", "104.144.183.157", "134");
INSERT INTO `wp_gf_form_view` VALUES("34440", "10", "2016-07-21 11:36:47", "40.77.167.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("34441", "3", "2016-07-21 12:13:56", "192.243.55.132", "83");
INSERT INTO `wp_gf_form_view` VALUES("34442", "3", "2016-07-21 13:00:08", "68.180.229.121", "219");
INSERT INTO `wp_gf_form_view` VALUES("34443", "8", "2016-07-21 14:27:54", "202.46.51.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("34444", "3", "2016-07-21 14:27:56", "202.46.51.30", "21");
INSERT INTO `wp_gf_form_view` VALUES("34445", "3", "2016-07-21 15:20:43", "184.69.3.198", "53");
INSERT INTO `wp_gf_form_view` VALUES("34446", "3", "2016-07-21 16:09:53", "68.180.229.121", "325");
INSERT INTO `wp_gf_form_view` VALUES("34447", "11", "2016-07-21 16:17:06", "212.129.10.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("34448", "12", "2016-07-21 16:17:50", "212.129.10.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("34449", "2", "2016-07-21 16:18:48", "212.129.10.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("34450", "3", "2016-07-21 17:04:21", "66.249.79.156", "53");
INSERT INTO `wp_gf_form_view` VALUES("34451", "3", "2016-07-21 18:01:54", "66.249.79.152", "32");
INSERT INTO `wp_gf_form_view` VALUES("34452", "3", "2016-07-21 19:10:06", "96.50.1.180", "91");
INSERT INTO `wp_gf_form_view` VALUES("34453", "3", "2016-07-21 20:12:23", "40.77.167.9", "40");
INSERT INTO `wp_gf_form_view` VALUES("34454", "3", "2016-07-21 21:06:59", "157.55.39.248", "51");
INSERT INTO `wp_gf_form_view` VALUES("34455", "3", "2016-07-21 22:16:59", "66.249.79.156", "31");
INSERT INTO `wp_gf_form_view` VALUES("34456", "3", "2016-07-21 23:05:34", "184.69.106.198", "132");
INSERT INTO `wp_gf_form_view` VALUES("34457", "3", "2016-07-22 00:08:07", "66.249.69.188", "116");
INSERT INTO `wp_gf_form_view` VALUES("34458", "3", "2016-07-22 01:11:22", "66.249.79.152", "62");
INSERT INTO `wp_gf_form_view` VALUES("34459", "3", "2016-07-22 02:30:56", "114.98.229.135", "32");
INSERT INTO `wp_gf_form_view` VALUES("34460", "3", "2016-07-22 03:02:17", "157.55.39.189", "83");
INSERT INTO `wp_gf_form_view` VALUES("34461", "3", "2016-07-22 04:00:54", "199.21.99.202", "40");
INSERT INTO `wp_gf_form_view` VALUES("34462", "10", "2016-07-22 04:04:24", "157.55.39.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("34463", "3", "2016-07-22 05:03:36", "77.75.77.54", "20");
INSERT INTO `wp_gf_form_view` VALUES("34464", "3", "2016-07-22 06:07:57", "65.110.208.28", "31");
INSERT INTO `wp_gf_form_view` VALUES("34465", "3", "2016-07-22 07:14:23", "196.196.88.176", "64");
INSERT INTO `wp_gf_form_view` VALUES("34466", "3", "2016-07-22 08:09:59", "202.46.55.15", "65");
INSERT INTO `wp_gf_form_view` VALUES("34467", "3", "2016-07-22 09:08:59", "157.55.39.92", "21");
INSERT INTO `wp_gf_form_view` VALUES("34468", "3", "2016-07-22 10:23:42", "77.75.79.36", "224");
INSERT INTO `wp_gf_form_view` VALUES("34469", "12", "2016-07-22 10:56:22", "45.55.229.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("34470", "11", "2016-07-22 10:56:22", "45.55.229.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("34471", "2", "2016-07-22 10:56:24", "45.55.229.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("34472", "3", "2016-07-22 11:01:10", "66.249.79.148", "130");
INSERT INTO `wp_gf_form_view` VALUES("34473", "3", "2016-07-22 12:44:35", "142.0.41.2", "41");
INSERT INTO `wp_gf_form_view` VALUES("34474", "3", "2016-07-22 13:26:26", "183.91.33.43", "20");
INSERT INTO `wp_gf_form_view` VALUES("34475", "3", "2016-07-22 14:08:25", "157.55.39.92", "31");
INSERT INTO `wp_gf_form_view` VALUES("34476", "10", "2016-07-22 14:45:59", "66.249.79.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("34477", "3", "2016-07-22 15:05:20", "207.23.96.112", "21");
INSERT INTO `wp_gf_form_view` VALUES("34478", "3", "2016-07-22 16:03:20", "77.75.78.167", "221");
INSERT INTO `wp_gf_form_view` VALUES("34479", "11", "2016-07-22 16:18:39", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34480", "12", "2016-07-22 16:55:01", "24.68.46.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("34481", "3", "2016-07-22 17:07:40", "192.243.55.134", "91");
INSERT INTO `wp_gf_form_view` VALUES("34482", "3", "2016-07-22 18:16:08", "40.77.167.10", "40");
INSERT INTO `wp_gf_form_view` VALUES("34483", "1", "2016-07-22 19:03:55", "192.161.190.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("34484", "3", "2016-07-22 19:03:55", "192.161.190.85", "30");
INSERT INTO `wp_gf_form_view` VALUES("34485", "3", "2016-07-22 20:07:10", "165.231.108.107", "203");
INSERT INTO `wp_gf_form_view` VALUES("34486", "3", "2016-07-22 21:06:01", "184.151.118.53", "100");
INSERT INTO `wp_gf_form_view` VALUES("34487", "3", "2016-07-22 22:18:40", "66.249.79.148", "93");
INSERT INTO `wp_gf_form_view` VALUES("34488", "12", "2016-07-22 22:29:12", "184.69.106.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("34489", "3", "2016-07-22 23:32:06", "62.210.162.184", "20");
INSERT INTO `wp_gf_form_view` VALUES("34490", "3", "2016-07-23 00:00:41", "66.249.79.152", "62");
INSERT INTO `wp_gf_form_view` VALUES("34491", "5", "2016-07-23 00:04:20", "157.55.39.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("34492", "1", "2016-07-23 01:10:52", "139.59.225.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("34493", "3", "2016-07-23 01:10:53", "139.59.225.92", "40");
INSERT INTO `wp_gf_form_view` VALUES("34494", "3", "2016-07-23 02:09:00", "178.137.163.41", "53");
INSERT INTO `wp_gf_form_view` VALUES("34495", "12", "2016-07-23 02:23:57", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34496", "3", "2016-07-23 03:14:23", "68.180.229.121", "99");
INSERT INTO `wp_gf_form_view` VALUES("34497", "3", "2016-07-23 04:25:35", "207.46.13.89", "21");
INSERT INTO `wp_gf_form_view` VALUES("34498", "3", "2016-07-23 05:01:02", "207.46.13.60", "133");
INSERT INTO `wp_gf_form_view` VALUES("34499", "12", "2016-07-23 05:10:21", "24.69.158.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("34500", "3", "2016-07-23 06:47:09", "68.180.229.121", "52");
INSERT INTO `wp_gf_form_view` VALUES("34501", "3", "2016-07-23 07:06:05", "164.132.161.44", "52");
INSERT INTO `wp_gf_form_view` VALUES("34502", "3", "2016-07-23 08:12:18", "134.249.65.218", "64");
INSERT INTO `wp_gf_form_view` VALUES("34503", "3", "2016-07-23 09:10:28", "46.118.156.206", "56");
INSERT INTO `wp_gf_form_view` VALUES("34504", "3", "2016-07-23 10:22:25", "196.196.92.58", "102");
INSERT INTO `wp_gf_form_view` VALUES("34505", "10", "2016-07-23 10:49:42", "202.46.58.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("34506", "3", "2016-07-23 11:09:18", "68.180.229.121", "74");
INSERT INTO `wp_gf_form_view` VALUES("34507", "3", "2016-07-23 12:05:31", "192.243.55.134", "62");
INSERT INTO `wp_gf_form_view` VALUES("34508", "3", "2016-07-23 13:13:37", "192.243.55.130", "71");
INSERT INTO `wp_gf_form_view` VALUES("34509", "10", "2016-07-23 13:52:59", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("34510", "3", "2016-07-23 14:07:14", "164.132.161.84", "52");
INSERT INTO `wp_gf_form_view` VALUES("34511", "1", "2016-07-23 14:12:14", "164.132.161.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("34512", "3", "2016-07-23 15:20:12", "68.180.229.121", "62");
INSERT INTO `wp_gf_form_view` VALUES("34513", "3", "2016-07-23 16:01:47", "40.77.167.54", "30");
INSERT INTO `wp_gf_form_view` VALUES("34514", "3", "2016-07-23 17:08:38", "51.255.65.41", "30");
INSERT INTO `wp_gf_form_view` VALUES("34515", "3", "2016-07-23 18:21:04", "202.46.51.174", "11");
INSERT INTO `wp_gf_form_view` VALUES("34516", "3", "2016-07-23 19:18:31", "66.249.79.156", "41");
INSERT INTO `wp_gf_form_view` VALUES("34517", "3", "2016-07-23 20:00:18", "24.68.17.97", "40");
INSERT INTO `wp_gf_form_view` VALUES("34518", "3", "2016-07-23 21:00:37", "148.251.54.44", "60");
INSERT INTO `wp_gf_form_view` VALUES("34519", "5", "2016-07-23 21:51:55", "77.75.79.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("34520", "3", "2016-07-23 22:25:22", "202.46.52.177", "82");
INSERT INTO `wp_gf_form_view` VALUES("34521", "11", "2016-07-23 22:46:16", "77.75.78.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("34522", "3", "2016-07-23 23:08:31", "24.108.106.88", "1651");
INSERT INTO `wp_gf_form_view` VALUES("34523", "11", "2016-07-23 23:23:05", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("34524", "2", "2016-07-23 23:23:17", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("34525", "12", "2016-07-23 23:29:03", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("34526", "1", "2016-07-23 23:35:41", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("34527", "10", "2016-07-23 23:43:20", "94.199.151.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("34528", "3", "2016-07-24 00:06:25", "66.249.79.152", "98");
INSERT INTO `wp_gf_form_view` VALUES("34529", "3", "2016-07-24 01:13:02", "62.210.162.184", "64");
INSERT INTO `wp_gf_form_view` VALUES("34530", "3", "2016-07-24 02:08:40", "157.55.39.165", "30");
INSERT INTO `wp_gf_form_view` VALUES("34531", "3", "2016-07-24 03:31:57", "114.97.204.163", "73");
INSERT INTO `wp_gf_form_view` VALUES("34532", "3", "2016-07-24 04:05:37", "207.46.13.86", "779");
INSERT INTO `wp_gf_form_view` VALUES("34533", "7", "2016-07-24 04:05:47", "207.46.13.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("34534", "10", "2016-07-24 04:05:55", "207.46.13.86", "4");
INSERT INTO `wp_gf_form_view` VALUES("34535", "12", "2016-07-24 04:06:01", "207.46.13.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("34536", "9", "2016-07-24 04:06:29", "157.55.39.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("34537", "8", "2016-07-24 04:06:50", "207.46.13.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("34538", "2", "2016-07-24 04:07:29", "196.196.88.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("34539", "3", "2016-07-24 05:13:47", "46.119.112.87", "52");
INSERT INTO `wp_gf_form_view` VALUES("34540", "3", "2016-07-24 06:09:04", "66.249.79.156", "106");
INSERT INTO `wp_gf_form_view` VALUES("34541", "10", "2016-07-24 06:18:18", "68.180.229.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("34542", "3", "2016-07-24 07:00:00", "66.249.79.152", "117");
INSERT INTO `wp_gf_form_view` VALUES("34543", "3", "2016-07-24 08:07:11", "66.249.79.148", "50");
INSERT INTO `wp_gf_form_view` VALUES("34544", "10", "2016-07-24 09:15:38", "207.46.13.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("34545", "3", "2016-07-24 09:15:42", "207.46.13.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("34546", "3", "2016-07-24 10:09:40", "165.231.96.215", "42");
INSERT INTO `wp_gf_form_view` VALUES("34547", "3", "2016-07-24 11:01:10", "66.249.69.188", "30");
INSERT INTO `wp_gf_form_view` VALUES("34548", "3", "2016-07-24 12:21:50", "207.46.13.86", "31");
INSERT INTO `wp_gf_form_view` VALUES("34549", "3", "2016-07-24 14:16:21", "66.249.79.152", "72");
INSERT INTO `wp_gf_form_view` VALUES("34550", "3", "2016-07-24 15:12:00", "68.180.229.121", "63");
INSERT INTO `wp_gf_form_view` VALUES("34551", "3", "2016-07-24 16:04:18", "207.46.13.3", "151");
INSERT INTO `wp_gf_form_view` VALUES("34552", "10", "2016-07-24 16:08:26", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("34553", "3", "2016-07-24 17:06:43", "66.249.79.156", "80");
INSERT INTO `wp_gf_form_view` VALUES("34554", "3", "2016-07-24 18:00:33", "108.180.117.82", "20");
INSERT INTO `wp_gf_form_view` VALUES("34555", "2", "2016-07-24 18:38:37", "202.46.53.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("34556", "5", "2016-07-24 19:18:34", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("34557", "3", "2016-07-24 19:18:35", "217.69.133.69", "140");
INSERT INTO `wp_gf_form_view` VALUES("34558", "3", "2016-07-24 20:52:29", "217.69.133.232", "31");
INSERT INTO `wp_gf_form_view` VALUES("34559", "3", "2016-07-24 21:04:14", "134.249.53.10", "114");
INSERT INTO `wp_gf_form_view` VALUES("34560", "3", "2016-07-24 21:04:14", "134.249.53.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34561", "3", "2016-07-24 21:04:14", "134.249.53.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34562", "3", "2016-07-24 21:04:14", "134.249.53.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("34563", "3", "2016-07-24 22:30:27", "217.69.133.231", "40");
INSERT INTO `wp_gf_form_view` VALUES("34564", "3", "2016-07-24 23:05:12", "196.196.90.237", "106");
INSERT INTO `wp_gf_form_view` VALUES("34565", "3", "2016-07-25 00:04:49", "217.69.133.233", "53");
INSERT INTO `wp_gf_form_view` VALUES("34566", "3", "2016-07-25 01:31:33", "196.196.92.37", "50");
INSERT INTO `wp_gf_form_view` VALUES("34567", "3", "2016-07-25 03:03:05", "207.46.13.86", "154");
INSERT INTO `wp_gf_form_view` VALUES("34568", "11", "2016-07-25 03:56:54", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("34569", "2", "2016-07-25 03:56:57", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("34570", "3", "2016-07-25 04:26:48", "178.137.163.41", "116");
INSERT INTO `wp_gf_form_view` VALUES("34571", "10", "2016-07-25 04:50:50", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("34572", "3", "2016-07-25 05:15:34", "130.105.232.182", "5453");
INSERT INTO `wp_gf_form_view` VALUES("34573", "1", "2016-07-25 05:17:00", "157.55.39.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("34574", "11", "2016-07-25 05:23:28", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34575", "2", "2016-07-25 05:23:31", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34576", "12", "2016-07-25 05:24:56", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34577", "5", "2016-07-25 05:28:29", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34578", "3", "2016-07-25 06:15:31", "77.75.78.172", "72");
INSERT INTO `wp_gf_form_view` VALUES("34579", "10", "2016-07-25 06:24:42", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("34580", "9", "2016-07-25 06:45:09", "40.77.167.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("34581", "1", "2016-07-25 06:51:20", "23.92.121.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("34582", "3", "2016-07-25 07:01:29", "134.249.65.218", "178");
INSERT INTO `wp_gf_form_view` VALUES("34583", "3", "2016-07-25 08:24:36", "157.55.39.127", "20");
INSERT INTO `wp_gf_form_view` VALUES("34584", "3", "2016-07-25 09:02:06", "62.210.162.184", "30");
INSERT INTO `wp_gf_form_view` VALUES("34585", "11", "2016-07-25 09:43:49", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34586", "3", "2016-07-25 10:14:19", "51.255.65.83", "31");
INSERT INTO `wp_gf_form_view` VALUES("34587", "3", "2016-07-25 11:11:52", "217.69.133.233", "44");
INSERT INTO `wp_gf_form_view` VALUES("34588", "3", "2016-07-25 12:02:17", "66.249.79.152", "97");
INSERT INTO `wp_gf_form_view` VALUES("34589", "3", "2016-07-25 13:13:35", "202.46.50.14", "64");
INSERT INTO `wp_gf_form_view` VALUES("34590", "9", "2016-07-25 13:28:03", "157.55.39.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("34591", "3", "2016-07-25 14:27:00", "217.69.133.231", "20");
INSERT INTO `wp_gf_form_view` VALUES("34592", "3", "2016-07-25 15:15:09", "207.46.13.90", "94");
INSERT INTO `wp_gf_form_view` VALUES("34593", "2", "2016-07-25 15:34:08", "114.97.205.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("34594", "12", "2016-07-25 15:56:49", "207.46.13.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("34595", "3", "2016-07-25 16:09:08", "217.69.133.230", "92");
INSERT INTO `wp_gf_form_view` VALUES("34596", "3", "2016-07-25 17:02:20", "46.118.156.206", "117");
INSERT INTO `wp_gf_form_view` VALUES("34597", "3", "2016-07-25 18:00:43", "202.46.52.63", "126");
INSERT INTO `wp_gf_form_view` VALUES("34598", "2", "2016-07-25 18:34:17", "202.46.58.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("34599", "3", "2016-07-25 19:20:49", "157.55.39.70", "150");
INSERT INTO `wp_gf_form_view` VALUES("34600", "3", "2016-07-25 20:14:32", "62.210.162.184", "54");
INSERT INTO `wp_gf_form_view` VALUES("34601", "3", "2016-07-25 21:45:26", "184.66.240.8", "20");
INSERT INTO `wp_gf_form_view` VALUES("34602", "3", "2016-07-25 22:00:16", "62.210.162.184", "132");
INSERT INTO `wp_gf_form_view` VALUES("34603", "1", "2016-07-25 22:28:52", "142.36.92.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34604", "3", "2016-07-25 23:06:54", "68.180.229.121", "238");
INSERT INTO `wp_gf_form_view` VALUES("34605", "3", "2016-07-26 00:03:42", "134.249.65.218", "165");
INSERT INTO `wp_gf_form_view` VALUES("34606", "3", "2016-07-26 00:03:42", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("34607", "3", "2016-07-26 01:14:05", "157.55.39.106", "31");
INSERT INTO `wp_gf_form_view` VALUES("34608", "3", "2016-07-26 02:01:51", "217.69.133.227", "97");
INSERT INTO `wp_gf_form_view` VALUES("34609", "3", "2016-07-26 03:00:34", "66.249.79.152", "156");
INSERT INTO `wp_gf_form_view` VALUES("34610", "3", "2016-07-26 04:03:54", "68.180.229.121", "75");
INSERT INTO `wp_gf_form_view` VALUES("34611", "3", "2016-07-26 05:12:17", "68.180.229.121", "31");
INSERT INTO `wp_gf_form_view` VALUES("34612", "1", "2016-07-26 05:21:38", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("34613", "3", "2016-07-26 06:06:19", "51.255.65.85", "50");
INSERT INTO `wp_gf_form_view` VALUES("34614", "3", "2016-07-26 07:02:10", "217.69.133.232", "164");
INSERT INTO `wp_gf_form_view` VALUES("34615", "12", "2016-07-26 07:14:11", "207.216.68.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("34616", "2", "2016-07-26 07:18:57", "207.216.68.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("34617", "3", "2016-07-26 08:02:44", "202.46.51.37", "90");
INSERT INTO `wp_gf_form_view` VALUES("34618", "5", "2016-07-26 08:06:31", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("34619", "10", "2016-07-26 08:40:06", "217.69.133.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("34620", "8", "2016-07-26 09:15:09", "157.55.39.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("34621", "3", "2016-07-26 09:15:10", "157.55.39.185", "970");
INSERT INTO `wp_gf_form_view` VALUES("34622", "10", "2016-07-26 09:29:35", "157.55.39.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("34623", "9", "2016-07-26 09:30:48", "157.55.39.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("34624", "5", "2016-07-26 09:31:29", "157.55.39.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("34625", "6", "2016-07-26 09:31:34", "157.55.39.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("34626", "11", "2016-07-26 10:30:45", "77.75.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("34627", "3", "2016-07-26 10:30:48", "77.75.76.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("34628", "3", "2016-07-26 11:03:54", "66.249.79.152", "33");
INSERT INTO `wp_gf_form_view` VALUES("34629", "2", "2016-07-26 11:58:54", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34630", "3", "2016-07-26 12:09:06", "124.73.14.102", "52");
INSERT INTO `wp_gf_form_view` VALUES("34631", "3", "2016-07-26 13:33:34", "217.69.133.232", "32");
INSERT INTO `wp_gf_form_view` VALUES("34632", "1", "2016-07-26 14:25:26", "196.196.94.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("34633", "3", "2016-07-26 14:25:27", "196.196.94.176", "158");
INSERT INTO `wp_gf_form_view` VALUES("34634", "3", "2016-07-26 15:03:13", "68.180.229.121", "205");
INSERT INTO `wp_gf_form_view` VALUES("34635", "1", "2016-07-26 15:04:19", "75.154.241.186", "6");
INSERT INTO `wp_gf_form_view` VALUES("34636", "3", "2016-07-26 16:00:27", "24.108.28.160", "353");
INSERT INTO `wp_gf_form_view` VALUES("34637", "12", "2016-07-26 16:04:49", "24.108.28.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("34638", "1", "2016-07-26 16:47:38", "213.184.113.87", "4");
INSERT INTO `wp_gf_form_view` VALUES("34639", "3", "2016-07-26 17:02:41", "66.249.79.148", "41");
INSERT INTO `wp_gf_form_view` VALUES("34640", "10", "2016-07-26 17:08:58", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34641", "1", "2016-07-26 17:41:02", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("34642", "3", "2016-07-26 18:05:55", "196.196.94.247", "199");
INSERT INTO `wp_gf_form_view` VALUES("34643", "1", "2016-07-26 18:38:43", "5.34.244.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34644", "3", "2016-07-26 19:05:14", "24.108.28.160", "92");
INSERT INTO `wp_gf_form_view` VALUES("34645", "3", "2016-07-26 20:01:42", "68.180.229.121", "94");
INSERT INTO `wp_gf_form_view` VALUES("34646", "1", "2016-07-26 20:04:39", "62.210.162.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("34647", "3", "2016-07-26 21:02:29", "62.210.162.184", "43");
INSERT INTO `wp_gf_form_view` VALUES("34648", "1", "2016-07-26 22:07:14", "89.35.199.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("34649", "3", "2016-07-26 22:07:14", "89.35.199.140", "51");
INSERT INTO `wp_gf_form_view` VALUES("34650", "3", "2016-07-26 23:06:32", "151.80.31.156", "73");
INSERT INTO `wp_gf_form_view` VALUES("34651", "3", "2016-07-27 00:07:11", "62.210.162.184", "51");
INSERT INTO `wp_gf_form_view` VALUES("34652", "10", "2016-07-27 00:58:57", "199.59.148.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("34653", "3", "2016-07-27 01:48:46", "51.255.65.57", "20");
INSERT INTO `wp_gf_form_view` VALUES("34654", "1", "2016-07-27 01:59:27", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34655", "3", "2016-07-27 02:12:59", "164.132.161.79", "50");
INSERT INTO `wp_gf_form_view` VALUES("34656", "8", "2016-07-27 02:35:19", "202.46.50.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("34657", "3", "2016-07-27 03:25:06", "66.249.79.152", "10");
INSERT INTO `wp_gf_form_view` VALUES("34658", "1", "2016-07-27 04:16:10", "66.249.66.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("34659", "3", "2016-07-27 04:16:10", "66.249.66.144", "76");
INSERT INTO `wp_gf_form_view` VALUES("34660", "3", "2016-07-27 05:14:45", "202.46.51.100", "34");
INSERT INTO `wp_gf_form_view` VALUES("34661", "3", "2016-07-27 06:01:50", "66.249.66.144", "189");
INSERT INTO `wp_gf_form_view` VALUES("34662", "3", "2016-07-27 07:00:01", "96.54.202.215", "84");
INSERT INTO `wp_gf_form_view` VALUES("34663", "3", "2016-07-27 08:35:41", "202.46.53.146", "10");
INSERT INTO `wp_gf_form_view` VALUES("34664", "3", "2016-07-27 09:10:39", "66.249.66.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("34665", "1", "2016-07-27 09:15:51", "93.127.147.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("34666", "3", "2016-07-27 10:36:28", "124.73.14.102", "20");
INSERT INTO `wp_gf_form_view` VALUES("34667", "3", "2016-07-27 11:05:38", "77.75.76.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("34668", "3", "2016-07-27 12:13:06", "68.180.229.121", "64");
INSERT INTO `wp_gf_form_view` VALUES("34669", "9", "2016-07-27 12:25:30", "62.210.97.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("34670", "8", "2016-07-27 12:25:54", "62.210.97.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("34671", "3", "2016-07-27 13:15:32", "68.180.229.121", "42");
INSERT INTO `wp_gf_form_view` VALUES("34672", "3", "2016-07-27 14:04:06", "208.43.225.85", "370");
INSERT INTO `wp_gf_form_view` VALUES("34673", "11", "2016-07-27 14:07:29", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("34674", "9", "2016-07-27 14:07:59", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("34675", "3", "2016-07-27 15:34:43", "202.46.52.16", "30");
INSERT INTO `wp_gf_form_view` VALUES("34676", "3", "2016-07-27 16:08:01", "202.46.51.210", "114");
INSERT INTO `wp_gf_form_view` VALUES("34677", "12", "2016-07-27 16:15:05", "96.54.50.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("34678", "3", "2016-07-27 17:15:29", "24.69.130.28", "143");
INSERT INTO `wp_gf_form_view` VALUES("34679", "1", "2016-07-27 17:16:42", "24.69.130.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("34680", "11", "2016-07-27 18:02:35", "70.35.197.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("34681", "3", "2016-07-27 18:02:35", "70.35.197.138", "411");
INSERT INTO `wp_gf_form_view` VALUES("34682", "12", "2016-07-27 18:04:07", "70.35.197.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("34683", "2", "2016-07-27 18:07:19", "70.35.197.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("34684", "10", "2016-07-27 19:23:46", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("34685", "3", "2016-07-27 19:23:53", "66.249.79.152", "41");
INSERT INTO `wp_gf_form_view` VALUES("34686", "3", "2016-07-27 20:22:24", "134.249.65.218", "43");
INSERT INTO `wp_gf_form_view` VALUES("34687", "3", "2016-07-27 20:22:24", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("34688", "10", "2016-07-27 21:05:15", "66.249.69.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("34689", "3", "2016-07-27 21:05:17", "66.249.69.190", "51");
INSERT INTO `wp_gf_form_view` VALUES("34690", "3", "2016-07-27 22:05:11", "202.46.48.130", "72");
INSERT INTO `wp_gf_form_view` VALUES("34691", "1", "2016-07-27 22:08:54", "5.255.88.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("34692", "3", "2016-07-27 23:12:11", "202.46.57.18", "95");
INSERT INTO `wp_gf_form_view` VALUES("34693", "10", "2016-07-27 23:52:12", "51.255.65.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("34694", "3", "2016-07-28 00:22:31", "66.249.79.152", "54");
INSERT INTO `wp_gf_form_view` VALUES("34695", "3", "2016-07-28 01:02:19", "24.68.17.97", "137");
INSERT INTO `wp_gf_form_view` VALUES("34696", "12", "2016-07-28 02:23:04", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("34697", "3", "2016-07-28 02:23:05", "24.68.17.97", "111");
INSERT INTO `wp_gf_form_view` VALUES("34698", "3", "2016-07-28 03:23:00", "207.46.13.38", "41");
INSERT INTO `wp_gf_form_view` VALUES("34699", "3", "2016-07-28 04:04:22", "192.243.55.134", "62");
INSERT INTO `wp_gf_form_view` VALUES("34700", "3", "2016-07-28 05:19:20", "165.231.96.215", "73");
INSERT INTO `wp_gf_form_view` VALUES("34701", "3", "2016-07-28 06:18:12", "207.46.13.38", "41");
INSERT INTO `wp_gf_form_view` VALUES("34702", "9", "2016-07-28 06:43:20", "125.212.208.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("34703", "3", "2016-07-28 07:13:58", "134.249.65.218", "44");
INSERT INTO `wp_gf_form_view` VALUES("34704", "3", "2016-07-28 08:00:22", "96.50.96.11", "10");
INSERT INTO `wp_gf_form_view` VALUES("34705", "3", "2016-07-28 09:58:04", "45.72.132.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("34706", "3", "2016-07-28 11:56:14", "77.75.79.32", "11");
INSERT INTO `wp_gf_form_view` VALUES("34707", "3", "2016-07-28 12:20:14", "178.137.163.41", "939");
INSERT INTO `wp_gf_form_view` VALUES("34708", "2", "2016-07-28 12:31:39", "185.35.21.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("34709", "11", "2016-07-28 12:33:00", "185.15.95.192", "2");
INSERT INTO `wp_gf_form_view` VALUES("34710", "12", "2016-07-28 12:33:59", "75.34.101.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("34711", "1", "2016-07-28 12:39:26", "91.108.72.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("34712", "3", "2016-07-28 13:14:56", "68.180.229.121", "54");
INSERT INTO `wp_gf_form_view` VALUES("34713", "1", "2016-07-28 14:17:41", "107.169.224.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("34714", "3", "2016-07-28 14:17:41", "107.169.224.131", "112");
INSERT INTO `wp_gf_form_view` VALUES("34715", "3", "2016-07-28 15:19:00", "207.46.13.38", "72");
INSERT INTO `wp_gf_form_view` VALUES("34716", "12", "2016-07-28 16:10:31", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("34717", "3", "2016-07-28 16:10:31", "66.249.79.148", "53");
INSERT INTO `wp_gf_form_view` VALUES("34718", "3", "2016-07-28 17:28:15", "68.180.229.121", "51");
INSERT INTO `wp_gf_form_view` VALUES("34719", "3", "2016-07-28 18:04:42", "164.132.161.53", "251");
INSERT INTO `wp_gf_form_view` VALUES("34720", "1", "2016-07-28 18:42:05", "70.66.188.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("34721", "3", "2016-07-28 19:04:40", "70.66.188.50", "107");
INSERT INTO `wp_gf_form_view` VALUES("34722", "3", "2016-07-28 20:22:56", "188.40.112.210", "40");
INSERT INTO `wp_gf_form_view` VALUES("34723", "3", "2016-07-28 21:02:17", "66.249.79.148", "71");
INSERT INTO `wp_gf_form_view` VALUES("34724", "3", "2016-07-28 22:11:45", "192.243.55.138", "133");
INSERT INTO `wp_gf_form_view` VALUES("34725", "6", "2016-07-28 22:12:34", "202.46.48.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("34726", "3", "2016-07-28 23:06:05", "194.187.170.121", "51");
INSERT INTO `wp_gf_form_view` VALUES("34727", "3", "2016-07-29 00:02:51", "68.180.229.121", "172");
INSERT INTO `wp_gf_form_view` VALUES("34728", "11", "2016-07-29 00:33:32", "194.187.170.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34729", "12", "2016-07-29 00:54:01", "194.187.170.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34730", "3", "2016-07-29 01:01:16", "108.180.5.188", "73");
INSERT INTO `wp_gf_form_view` VALUES("34731", "12", "2016-07-29 01:40:50", "70.66.186.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("34732", "3", "2016-07-29 02:25:32", "164.132.161.6", "11");
INSERT INTO `wp_gf_form_view` VALUES("34733", "3", "2016-07-29 03:04:31", "77.75.77.11", "446");
INSERT INTO `wp_gf_form_view` VALUES("34734", "12", "2016-07-29 03:35:02", "24.69.148.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("34735", "8", "2016-07-29 03:58:06", "157.55.39.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("34736", "10", "2016-07-29 03:58:16", "157.55.39.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("34737", "9", "2016-07-29 03:58:32", "207.46.13.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("34738", "3", "2016-07-29 04:17:00", "164.132.161.5", "100");
INSERT INTO `wp_gf_form_view` VALUES("34739", "12", "2016-07-29 04:49:58", "207.81.148.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("34740", "3", "2016-07-29 05:05:10", "151.80.31.102", "30");
INSERT INTO `wp_gf_form_view` VALUES("34741", "2", "2016-07-29 05:29:21", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("34742", "3", "2016-07-29 06:26:58", "77.75.76.162", "20");
INSERT INTO `wp_gf_form_view` VALUES("34743", "3", "2016-07-29 07:20:55", "157.55.39.254", "30");
INSERT INTO `wp_gf_form_view` VALUES("34744", "3", "2016-07-29 08:12:07", "46.119.112.87", "73");
INSERT INTO `wp_gf_form_view` VALUES("34745", "3", "2016-07-29 09:02:54", "164.132.161.10", "105");
INSERT INTO `wp_gf_form_view` VALUES("34746", "6", "2016-07-29 09:34:29", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("34747", "10", "2016-07-29 10:06:50", "164.132.161.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("34748", "3", "2016-07-29 10:06:51", "164.132.161.50", "61");
INSERT INTO `wp_gf_form_view` VALUES("34749", "2", "2016-07-29 10:41:53", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34750", "3", "2016-07-29 11:08:09", "66.249.79.148", "110");
INSERT INTO `wp_gf_form_view` VALUES("34751", "3", "2016-07-29 12:01:12", "202.46.53.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("34752", "3", "2016-07-29 13:11:47", "66.249.79.152", "136");
INSERT INTO `wp_gf_form_view` VALUES("34753", "1", "2016-07-29 13:22:43", "46.161.9.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("34754", "6", "2016-07-29 13:58:43", "202.46.52.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("34755", "3", "2016-07-29 14:02:06", "192.243.55.132", "20");
INSERT INTO `wp_gf_form_view` VALUES("34756", "3", "2016-07-29 15:07:50", "77.75.79.36", "66");
INSERT INTO `wp_gf_form_view` VALUES("34757", "3", "2016-07-29 16:03:22", "69.10.52.178", "73");
INSERT INTO `wp_gf_form_view` VALUES("34758", "3", "2016-07-29 17:00:51", "192.243.55.138", "40");
INSERT INTO `wp_gf_form_view` VALUES("34759", "3", "2016-07-29 18:00:54", "68.180.229.121", "31");
INSERT INTO `wp_gf_form_view` VALUES("34760", "3", "2016-07-29 19:26:25", "66.249.79.148", "53");
INSERT INTO `wp_gf_form_view` VALUES("34761", "3", "2016-07-29 20:15:21", "70.79.104.241", "52");
INSERT INTO `wp_gf_form_view` VALUES("34762", "1", "2016-07-29 20:28:32", "62.210.111.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("34763", "3", "2016-07-29 21:21:35", "204.191.85.34", "80");
INSERT INTO `wp_gf_form_view` VALUES("34764", "3", "2016-07-29 21:21:35", "204.191.85.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("34765", "1", "2016-07-29 21:21:55", "204.191.85.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("34766", "3", "2016-07-29 22:08:45", "192.243.55.132", "54");
INSERT INTO `wp_gf_form_view` VALUES("34767", "6", "2016-07-29 23:08:22", "202.46.51.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("34768", "3", "2016-07-29 23:08:23", "202.46.51.113", "61");
INSERT INTO `wp_gf_form_view` VALUES("34769", "3", "2016-07-30 00:15:21", "202.46.51.20", "169");
INSERT INTO `wp_gf_form_view` VALUES("34770", "3", "2016-07-30 01:27:21", "136.243.17.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("34771", "3", "2016-07-30 02:02:39", "157.55.39.254", "3419");
INSERT INTO `wp_gf_form_view` VALUES("34772", "1", "2016-07-30 02:20:48", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34773", "11", "2016-07-30 02:21:03", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34774", "5", "2016-07-30 02:27:33", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34775", "12", "2016-07-30 02:32:48", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34776", "6", "2016-07-30 02:40:53", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34777", "9", "2016-07-30 02:49:39", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34778", "3", "2016-07-30 03:00:09", "104.236.216.227", "2878");
INSERT INTO `wp_gf_form_view` VALUES("34779", "10", "2016-07-30 03:02:59", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34780", "2", "2016-07-30 03:26:09", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34781", "8", "2016-07-30 03:38:06", "104.236.216.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("34782", "3", "2016-07-30 04:00:40", "23.91.143.176", "20");
INSERT INTO `wp_gf_form_view` VALUES("34783", "3", "2016-07-30 05:02:43", "199.21.99.202", "127");
INSERT INTO `wp_gf_form_view` VALUES("34784", "1", "2016-07-30 05:31:26", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("34785", "3", "2016-07-30 06:05:56", "202.46.57.177", "32");
INSERT INTO `wp_gf_form_view` VALUES("34786", "3", "2016-07-30 07:12:49", "66.249.79.156", "72");
INSERT INTO `wp_gf_form_view` VALUES("34787", "3", "2016-07-30 08:01:54", "68.180.229.121", "1753");
INSERT INTO `wp_gf_form_view` VALUES("34788", "10", "2016-07-30 08:23:22", "66.249.79.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("34789", "2", "2016-07-30 08:28:25", "72.76.221.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("34790", "7", "2016-07-30 08:29:30", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("34791", "1", "2016-07-30 08:30:08", "72.76.221.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("34792", "11", "2016-07-30 08:30:18", "72.76.221.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("34793", "12", "2016-07-30 08:30:30", "72.76.221.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("34794", "5", "2016-07-30 08:31:07", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("34795", "8", "2016-07-30 08:37:31", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("34796", "9", "2016-07-30 08:37:37", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("34797", "6", "2016-07-30 08:38:02", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("34798", "3", "2016-07-30 09:09:21", "68.180.229.121", "51");
INSERT INTO `wp_gf_form_view` VALUES("34799", "3", "2016-07-30 10:18:27", "199.21.99.202", "40");
INSERT INTO `wp_gf_form_view` VALUES("34800", "3", "2016-07-30 11:07:54", "199.21.99.202", "75");
INSERT INTO `wp_gf_form_view` VALUES("34801", "3", "2016-07-30 12:05:27", "134.249.65.218", "41");
INSERT INTO `wp_gf_form_view` VALUES("34802", "3", "2016-07-30 12:05:27", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("34803", "1", "2016-07-30 12:33:15", "89.33.68.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("34804", "3", "2016-07-30 13:00:10", "208.115.111.66", "6045");
INSERT INTO `wp_gf_form_view` VALUES("34805", "1", "2016-07-30 13:05:41", "46.161.9.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("34806", "11", "2016-07-30 13:08:36", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34807", "2", "2016-07-30 13:08:39", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34808", "12", "2016-07-30 13:10:07", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34809", "5", "2016-07-30 13:13:43", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("34810", "3", "2016-07-30 14:23:11", "96.50.6.244", "40");
INSERT INTO `wp_gf_form_view` VALUES("34811", "1", "2016-07-30 14:23:36", "96.50.6.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("34812", "3", "2016-07-30 15:08:26", "68.180.229.121", "42");
INSERT INTO `wp_gf_form_view` VALUES("34813", "3", "2016-07-30 16:33:43", "51.254.131.245", "613");
INSERT INTO `wp_gf_form_view` VALUES("34814", "8", "2016-07-30 16:34:00", "51.254.131.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("34815", "10", "2016-07-30 16:35:53", "51.254.131.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("34816", "2", "2016-07-30 16:37:30", "51.254.131.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("34817", "6", "2016-07-30 16:38:27", "51.254.131.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("34818", "3", "2016-07-30 17:46:06", "77.75.78.172", "10");
INSERT INTO `wp_gf_form_view` VALUES("34819", "3", "2016-07-30 18:14:27", "221.132.113.70", "42");
INSERT INTO `wp_gf_form_view` VALUES("34820", "3", "2016-07-30 19:13:16", "192.243.55.131", "20");
INSERT INTO `wp_gf_form_view` VALUES("34821", "3", "2016-07-30 20:11:17", "68.180.229.121", "100");
INSERT INTO `wp_gf_form_view` VALUES("34822", "3", "2016-07-30 21:32:26", "178.137.163.41", "44");
INSERT INTO `wp_gf_form_view` VALUES("34823", "3", "2016-07-30 22:16:23", "68.180.229.121", "81");
INSERT INTO `wp_gf_form_view` VALUES("34824", "1", "2016-07-30 23:38:42", "5.231.35.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("34825", "3", "2016-07-30 23:38:42", "5.231.35.0", "10");
INSERT INTO `wp_gf_form_view` VALUES("34826", "3", "2016-07-31 00:32:22", "194.187.170.105", "19");
INSERT INTO `wp_gf_form_view` VALUES("34827", "10", "2016-07-31 00:35:05", "151.80.31.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("34828", "3", "2016-07-31 01:04:33", "194.187.170.105", "11");
INSERT INTO `wp_gf_form_view` VALUES("34829", "3", "2016-07-31 02:02:57", "46.118.156.206", "41");
INSERT INTO `wp_gf_form_view` VALUES("34830", "3", "2016-07-31 02:02:57", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34831", "3", "2016-07-31 02:02:57", "46.118.156.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("34832", "3", "2016-07-31 03:20:34", "157.55.39.254", "21");
INSERT INTO `wp_gf_form_view` VALUES("34833", "3", "2016-07-31 04:01:45", "104.142.122.122", "70");
INSERT INTO `wp_gf_form_view` VALUES("34834", "10", "2016-07-31 04:50:37", "164.132.161.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("34835", "3", "2016-07-31 05:05:35", "188.40.112.210", "52");
INSERT INTO `wp_gf_form_view` VALUES("34836", "10", "2016-07-31 06:01:06", "164.132.161.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("34837", "3", "2016-07-31 06:01:06", "164.132.161.6", "70");
INSERT INTO `wp_gf_form_view` VALUES("34838", "1", "2016-07-31 06:16:19", "46.161.9.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("34839", "11", "2016-07-31 07:13:58", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("34840", "3", "2016-07-31 07:14:03", "199.21.99.202", "31");
INSERT INTO `wp_gf_form_view` VALUES("34841", "3", "2016-07-31 08:24:27", "199.21.99.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("34842", "1", "2016-07-31 08:45:04", "62.210.111.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("34843", "1", "2016-07-31 09:09:58", "62.210.111.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("34844", "3", "2016-07-31 09:09:59", "62.210.111.75", "21");
INSERT INTO `wp_gf_form_view` VALUES("34845", "5", "2016-07-31 10:00:28", "202.46.55.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("34846", "3", "2016-07-31 10:00:28", "202.46.55.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("34847", "3", "2016-07-31 11:25:00", "68.180.229.121", "73");
INSERT INTO `wp_gf_form_view` VALUES("34848", "6", "2016-07-31 11:48:50", "5.9.94.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("34849", "3", "2016-07-31 12:00:41", "194.187.170.119", "268");
INSERT INTO `wp_gf_form_view` VALUES("34850", "1", "2016-07-31 12:17:00", "194.187.170.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("34851", "2", "2016-07-31 12:45:52", "194.187.170.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("34852", "3", "2016-07-31 13:01:44", "66.249.79.152", "226");
INSERT INTO `wp_gf_form_view` VALUES("34853", "3", "2016-07-31 14:01:21", "194.187.170.119", "136");
INSERT INTO `wp_gf_form_view` VALUES("34854", "1", "2016-07-31 14:27:35", "62.210.111.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("34855", "9", "2016-07-31 14:57:11", "40.77.167.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("34856", "3", "2016-07-31 15:00:00", "199.21.99.202", "286");
INSERT INTO `wp_gf_form_view` VALUES("34857", "1", "2016-07-31 15:07:12", "62.210.111.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("34858", "12", "2016-07-31 15:59:14", "45.55.229.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("34859", "11", "2016-07-31 15:59:14", "45.55.229.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("34860", "2", "2016-07-31 15:59:15", "45.55.229.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("34861", "3", "2016-07-31 16:13:55", "68.180.229.121", "30");
INSERT INTO `wp_gf_form_view` VALUES("34862", "3", "2016-07-31 17:34:50", "134.249.65.218", "32");
INSERT INTO `wp_gf_form_view` VALUES("34863", "3", "2016-07-31 18:16:17", "68.180.229.121", "32");
INSERT INTO `wp_gf_form_view` VALUES("34864", "3", "2016-07-31 19:07:34", "202.46.54.20", "43");
INSERT INTO `wp_gf_form_view` VALUES("34865", "3", "2016-07-31 20:06:05", "199.21.99.202", "639");
INSERT INTO `wp_gf_form_view` VALUES("34866", "5", "2016-07-31 20:09:07", "207.46.13.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("34867", "6", "2016-07-31 20:09:26", "207.46.13.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("34868", "10", "2016-07-31 20:09:39", "207.46.13.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("34869", "8", "2016-07-31 20:10:04", "157.55.39.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("34870", "3", "2016-07-31 21:07:38", "199.21.99.202", "34");
INSERT INTO `wp_gf_form_view` VALUES("34871", "3", "2016-07-31 22:10:52", "66.249.79.152", "70");
INSERT INTO `wp_gf_form_view` VALUES("34872", "1", "2016-07-31 22:57:59", "46.161.9.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("34873", "3", "2016-07-31 23:06:33", "141.8.143.242", "51");
INSERT INTO `wp_gf_form_view` VALUES("34874", "3", "2016-08-01 00:15:40", "202.46.56.75", "53");
INSERT INTO `wp_gf_form_view` VALUES("34875", "3", "2016-08-01 01:08:06", "157.55.39.129", "62");
INSERT INTO `wp_gf_form_view` VALUES("34876", "10", "2016-08-01 01:48:19", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("34877", "3", "2016-08-01 02:11:30", "157.55.39.129", "21");
INSERT INTO `wp_gf_form_view` VALUES("34878", "12", "2016-08-01 03:24:15", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34879", "3", "2016-08-01 03:24:16", "68.180.229.121", "20");
INSERT INTO `wp_gf_form_view` VALUES("34880", "3", "2016-08-01 04:13:20", "75.154.239.118", "20");
INSERT INTO `wp_gf_form_view` VALUES("34881", "10", "2016-08-01 05:01:17", "157.55.39.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("34882", "3", "2016-08-01 05:01:17", "157.55.39.129", "40");
INSERT INTO `wp_gf_form_view` VALUES("34883", "3", "2016-08-01 06:08:44", "134.249.53.72", "164");
INSERT INTO `wp_gf_form_view` VALUES("34884", "7", "2016-08-01 06:16:04", "157.55.39.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("34885", "1", "2016-08-01 06:46:43", "165.231.87.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("34886", "11", "2016-08-01 07:01:02", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("34887", "3", "2016-08-01 07:01:02", "70.35.196.136", "291");
INSERT INTO `wp_gf_form_view` VALUES("34888", "12", "2016-08-01 07:01:48", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("34889", "2", "2016-08-01 07:02:45", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("34890", "3", "2016-08-01 08:30:15", "5.9.112.6", "43");
INSERT INTO `wp_gf_form_view` VALUES("34891", "3", "2016-08-01 09:17:09", "134.249.48.27", "75");
INSERT INTO `wp_gf_form_view` VALUES("34892", "3", "2016-08-01 09:17:09", "134.249.48.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("34893", "3", "2016-08-01 10:17:32", "164.132.161.61", "55");
INSERT INTO `wp_gf_form_view` VALUES("34894", "11", "2016-08-01 10:53:56", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34895", "3", "2016-08-01 11:02:30", "51.255.65.54", "31");
INSERT INTO `wp_gf_form_view` VALUES("34896", "9", "2016-08-01 11:47:03", "202.46.51.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("34897", "3", "2016-08-01 12:47:39", "136.243.17.161", "60");
INSERT INTO `wp_gf_form_view` VALUES("34898", "1", "2016-08-01 12:48:03", "107.150.76.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("34899", "3", "2016-08-01 13:19:21", "68.180.229.121", "14");
INSERT INTO `wp_gf_form_view` VALUES("34900", "3", "2016-08-01 14:01:00", "202.46.54.142", "30");
INSERT INTO `wp_gf_form_view` VALUES("34901", "3", "2016-08-01 15:40:34", "78.107.235.183", "30");
INSERT INTO `wp_gf_form_view` VALUES("34902", "12", "2016-08-01 15:44:45", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34903", "3", "2016-08-01 16:31:36", "164.132.161.43", "21");
INSERT INTO `wp_gf_form_view` VALUES("34904", "3", "2016-08-01 17:28:49", "77.75.78.171", "96");
INSERT INTO `wp_gf_form_view` VALUES("34905", "10", "2016-08-01 18:26:31", "199.59.148.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("34906", "3", "2016-08-01 18:26:33", "199.59.148.210", "31");
INSERT INTO `wp_gf_form_view` VALUES("34907", "3", "2016-08-01 19:40:26", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34908", "3", "2016-08-01 20:19:27", "68.180.229.121", "94");
INSERT INTO `wp_gf_form_view` VALUES("34909", "10", "2016-08-01 20:33:58", "157.55.39.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("34910", "12", "2016-08-01 21:03:53", "202.46.54.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("34911", "3", "2016-08-01 21:03:54", "202.46.54.97", "311");
INSERT INTO `wp_gf_form_view` VALUES("34912", "11", "2016-08-01 21:12:21", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("34913", "2", "2016-08-01 21:14:15", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("34914", "10", "2016-08-01 21:21:35", "40.77.167.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("34915", "3", "2016-08-01 22:34:53", "77.75.76.165", "20");
INSERT INTO `wp_gf_form_view` VALUES("34916", "3", "2016-08-01 23:14:41", "68.180.229.121", "73");
INSERT INTO `wp_gf_form_view` VALUES("34917", "3", "2016-08-02 00:25:18", "202.46.58.58", "61");
INSERT INTO `wp_gf_form_view` VALUES("34918", "10", "2016-08-02 00:44:13", "199.59.148.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("34919", "3", "2016-08-02 01:12:57", "207.216.249.193", "32");
INSERT INTO `wp_gf_form_view` VALUES("34920", "3", "2016-08-02 02:20:48", "68.180.229.121", "94");
INSERT INTO `wp_gf_form_view` VALUES("34921", "3", "2016-08-02 03:00:46", "157.55.39.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("34922", "9", "2016-08-02 03:12:44", "202.46.55.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("34923", "3", "2016-08-02 04:42:48", "202.46.51.172", "54");
INSERT INTO `wp_gf_form_view` VALUES("34924", "3", "2016-08-02 05:18:33", "199.21.99.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("34925", "3", "2016-08-02 06:41:37", "5.248.196.10", "33");
INSERT INTO `wp_gf_form_view` VALUES("34926", "1", "2016-08-02 07:06:15", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("34927", "3", "2016-08-02 07:06:16", "68.180.229.121", "131");
INSERT INTO `wp_gf_form_view` VALUES("34928", "11", "2016-08-02 07:27:07", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("34929", "2", "2016-08-02 07:52:37", "164.132.161.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("34930", "3", "2016-08-02 08:05:40", "157.55.39.99", "31");
INSERT INTO `wp_gf_form_view` VALUES("34931", "10", "2016-08-02 08:24:06", "194.187.170.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("34932", "3", "2016-08-02 09:11:13", "220.181.108.179", "40");
INSERT INTO `wp_gf_form_view` VALUES("34933", "3", "2016-08-02 10:09:40", "194.187.170.122", "72");
INSERT INTO `wp_gf_form_view` VALUES("34934", "3", "2016-08-02 11:01:13", "51.255.65.84", "81");
INSERT INTO `wp_gf_form_view` VALUES("34935", "3", "2016-08-02 12:04:55", "202.46.48.199", "20");
INSERT INTO `wp_gf_form_view` VALUES("34936", "1", "2016-08-02 13:02:03", "46.161.9.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("34937", "3", "2016-08-02 13:02:03", "46.161.9.34", "63");
INSERT INTO `wp_gf_form_view` VALUES("34938", "3", "2016-08-02 14:00:00", "164.132.161.73", "109");
INSERT INTO `wp_gf_form_view` VALUES("34939", "3", "2016-08-02 15:55:13", "24.68.44.111", "10");
INSERT INTO `wp_gf_form_view` VALUES("34940", "11", "2016-08-02 16:43:51", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("34941", "3", "2016-08-02 16:43:53", "199.21.99.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("34942", "3", "2016-08-02 17:04:49", "157.55.39.112", "50");
INSERT INTO `wp_gf_form_view` VALUES("34943", "3", "2016-08-02 18:02:20", "24.69.128.71", "82");
INSERT INTO `wp_gf_form_view` VALUES("34944", "1", "2016-08-02 18:29:20", "24.16.143.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("34945", "3", "2016-08-02 19:07:32", "207.194.133.9", "104");
INSERT INTO `wp_gf_form_view` VALUES("34946", "10", "2016-08-02 19:29:11", "99.239.60.228", "16");
INSERT INTO `wp_gf_form_view` VALUES("34947", "6", "2016-08-02 19:44:48", "94.154.239.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("34948", "10", "2016-08-02 20:10:54", "68.180.229.121", "26");
INSERT INTO `wp_gf_form_view` VALUES("34949", "3", "2016-08-02 20:10:56", "68.180.229.121", "68");
INSERT INTO `wp_gf_form_view` VALUES("34950", "3", "2016-08-02 21:14:37", "194.187.170.101", "117");
INSERT INTO `wp_gf_form_view` VALUES("34951", "10", "2016-08-02 21:14:39", "194.187.170.101", "28");
INSERT INTO `wp_gf_form_view` VALUES("34952", "1", "2016-08-02 21:47:02", "99.199.2.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("34953", "12", "2016-08-02 21:56:21", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("34954", "3", "2016-08-02 22:01:30", "77.75.78.170", "137");
INSERT INTO `wp_gf_form_view` VALUES("34955", "10", "2016-08-02 22:01:30", "77.75.78.170", "36");
INSERT INTO `wp_gf_form_view` VALUES("34956", "11", "2016-08-02 22:44:48", "77.75.77.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("34957", "2", "2016-08-02 22:53:30", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("34958", "3", "2016-08-02 23:01:02", "194.187.170.101", "122");
INSERT INTO `wp_gf_form_view` VALUES("34959", "10", "2016-08-02 23:04:47", "24.68.17.97", "24");
INSERT INTO `wp_gf_form_view` VALUES("34960", "1", "2016-08-02 23:13:06", "62.138.2.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("34961", "12", "2016-08-02 23:21:29", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("34962", "10", "2016-08-03 00:15:36", "207.46.13.34", "27");
INSERT INTO `wp_gf_form_view` VALUES("34963", "3", "2016-08-03 00:15:38", "207.46.13.34", "110");
INSERT INTO `wp_gf_form_view` VALUES("34964", "10", "2016-08-03 01:36:19", "207.46.13.34", "5");
INSERT INTO `wp_gf_form_view` VALUES("34965", "3", "2016-08-03 01:36:20", "207.46.13.34", "16");
INSERT INTO `wp_gf_form_view` VALUES("34966", "3", "2016-08-03 02:31:46", "68.180.229.121", "67");
INSERT INTO `wp_gf_form_view` VALUES("34967", "10", "2016-08-03 02:31:47", "68.180.229.121", "16");
INSERT INTO `wp_gf_form_view` VALUES("34968", "3", "2016-08-03 03:01:49", "68.180.229.121", "66");
INSERT INTO `wp_gf_form_view` VALUES("34969", "10", "2016-08-03 03:01:49", "68.180.229.121", "28");
INSERT INTO `wp_gf_form_view` VALUES("34970", "3", "2016-08-03 04:10:13", "134.249.65.218", "70");
INSERT INTO `wp_gf_form_view` VALUES("34971", "10", "2016-08-03 04:10:15", "134.249.65.218", "15");
INSERT INTO `wp_gf_form_view` VALUES("34972", "10", "2016-08-03 04:10:15", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("34973", "3", "2016-08-03 05:04:33", "109.169.29.30", "302");
INSERT INTO `wp_gf_form_view` VALUES("34974", "10", "2016-08-03 05:04:34", "109.169.29.30", "70");
INSERT INTO `wp_gf_form_view` VALUES("34975", "2", "2016-08-03 05:05:19", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("34976", "11", "2016-08-03 05:05:41", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("34977", "1", "2016-08-03 05:46:26", "24.16.143.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("34978", "1", "2016-08-03 06:31:26", "24.16.143.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("34979", "3", "2016-08-03 06:31:27", "24.16.143.88", "87");
INSERT INTO `wp_gf_form_view` VALUES("34980", "10", "2016-08-03 06:31:28", "24.16.143.88", "18");
INSERT INTO `wp_gf_form_view` VALUES("34981", "3", "2016-08-03 07:01:30", "24.108.37.193", "602");
INSERT INTO `wp_gf_form_view` VALUES("34982", "10", "2016-08-03 07:01:31", "24.108.37.193", "160");
INSERT INTO `wp_gf_form_view` VALUES("34983", "1", "2016-08-03 07:03:12", "24.108.37.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("34984", "9", "2016-08-03 07:04:13", "157.55.39.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("34985", "8", "2016-08-03 07:04:15", "40.77.167.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("34986", "12", "2016-08-03 07:05:19", "157.55.39.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("34987", "7", "2016-08-03 07:05:21", "157.55.39.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("34988", "3", "2016-08-03 08:08:54", "68.180.229.121", "32");
INSERT INTO `wp_gf_form_view` VALUES("34989", "10", "2016-08-03 08:08:55", "68.180.229.121", "8");
INSERT INTO `wp_gf_form_view` VALUES("34990", "3", "2016-08-03 09:43:03", "66.249.79.156", "26");
INSERT INTO `wp_gf_form_view` VALUES("34991", "10", "2016-08-03 09:43:05", "66.249.79.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("34992", "3", "2016-08-03 10:13:35", "68.180.229.121", "68");
INSERT INTO `wp_gf_form_view` VALUES("34993", "10", "2016-08-03 10:13:37", "68.180.229.121", "16");
INSERT INTO `wp_gf_form_view` VALUES("34994", "1", "2016-08-03 10:35:20", "104.129.1.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("34995", "3", "2016-08-03 11:00:45", "157.55.39.35", "35");
INSERT INTO `wp_gf_form_view` VALUES("34996", "10", "2016-08-03 11:00:46", "157.55.39.35", "8");
INSERT INTO `wp_gf_form_view` VALUES("34997", "3", "2016-08-03 12:47:09", "77.75.77.109", "8");
INSERT INTO `wp_gf_form_view` VALUES("34998", "10", "2016-08-03 12:47:10", "77.75.77.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("34999", "10", "2016-08-03 13:10:05", "66.249.79.156", "7");
INSERT INTO `wp_gf_form_view` VALUES("35000", "3", "2016-08-03 13:10:06", "66.249.79.156", "25");
INSERT INTO `wp_gf_form_view` VALUES("35001", "3", "2016-08-03 14:00:41", "68.180.229.121", "33");
INSERT INTO `wp_gf_form_view` VALUES("35002", "10", "2016-08-03 14:00:42", "68.180.229.121", "8");
INSERT INTO `wp_gf_form_view` VALUES("35003", "3", "2016-08-03 15:11:02", "142.104.25.44", "56");
INSERT INTO `wp_gf_form_view` VALUES("35004", "10", "2016-08-03 15:11:04", "142.104.25.44", "15");
INSERT INTO `wp_gf_form_view` VALUES("35005", "3", "2016-08-03 16:14:53", "163.172.49.61", "91");
INSERT INTO `wp_gf_form_view` VALUES("35006", "10", "2016-08-03 16:16:54", "24.68.17.97", "23");
INSERT INTO `wp_gf_form_view` VALUES("35007", "1", "2016-08-03 16:58:04", "128.199.95.209", "2");
INSERT INTO `wp_gf_form_view` VALUES("35008", "3", "2016-08-03 17:33:41", "68.180.229.121", "8");
INSERT INTO `wp_gf_form_view` VALUES("35009", "10", "2016-08-03 17:33:42", "68.180.229.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("35010", "3", "2016-08-03 18:12:33", "199.21.99.202", "48");
INSERT INTO `wp_gf_form_view` VALUES("35011", "10", "2016-08-03 18:12:34", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("35012", "3", "2016-08-03 19:35:14", "164.132.161.92", "17");
INSERT INTO `wp_gf_form_view` VALUES("35013", "10", "2016-08-03 19:35:21", "164.132.161.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("35014", "3", "2016-08-03 20:12:31", "164.132.161.33", "8");
INSERT INTO `wp_gf_form_view` VALUES("35015", "10", "2016-08-03 20:12:32", "164.132.161.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("35016", "3", "2016-08-03 21:31:23", "202.46.49.196", "8");
INSERT INTO `wp_gf_form_view` VALUES("35017", "10", "2016-08-03 21:31:25", "202.46.49.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("35018", "3", "2016-08-03 22:04:53", "202.46.54.96", "44");
INSERT INTO `wp_gf_form_view` VALUES("35019", "10", "2016-08-03 22:04:55", "202.46.54.96", "10");
INSERT INTO `wp_gf_form_view` VALUES("35020", "3", "2016-08-03 23:12:54", "66.249.79.156", "24");
INSERT INTO `wp_gf_form_view` VALUES("35021", "10", "2016-08-03 23:12:57", "66.249.79.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("35022", "1", "2016-08-04 00:07:58", "45.62.55.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("35023", "3", "2016-08-04 00:07:58", "45.62.55.22", "59");
INSERT INTO `wp_gf_form_view` VALUES("35024", "10", "2016-08-04 00:07:59", "45.62.55.22", "14");
INSERT INTO `wp_gf_form_view` VALUES("35025", "3", "2016-08-04 01:27:59", "68.180.229.121", "28");
INSERT INTO `wp_gf_form_view` VALUES("35026", "10", "2016-08-04 01:51:00", "134.249.65.218", "6");
INSERT INTO `wp_gf_form_view` VALUES("35027", "3", "2016-08-04 02:28:09", "46.118.158.47", "67");
INSERT INTO `wp_gf_form_view` VALUES("35028", "10", "2016-08-04 02:28:10", "46.118.158.47", "16");
INSERT INTO `wp_gf_form_view` VALUES("35029", "3", "2016-08-04 03:05:44", "94.242.246.165", "8");
INSERT INTO `wp_gf_form_view` VALUES("35030", "10", "2016-08-04 03:05:44", "94.242.246.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("35031", "3", "2016-08-04 04:15:01", "164.132.161.95", "34");
INSERT INTO `wp_gf_form_view` VALUES("35032", "10", "2016-08-04 04:15:02", "164.132.161.95", "8");
INSERT INTO `wp_gf_form_view` VALUES("35033", "3", "2016-08-04 05:43:37", "157.55.39.35", "24");
INSERT INTO `wp_gf_form_view` VALUES("35034", "10", "2016-08-04 05:43:39", "157.55.39.35", "6");
INSERT INTO `wp_gf_form_view` VALUES("35035", "3", "2016-08-04 06:18:06", "77.75.78.165", "17");
INSERT INTO `wp_gf_form_view` VALUES("35036", "10", "2016-08-04 06:18:07", "77.75.78.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("35037", "3", "2016-08-04 07:03:45", "134.249.48.27", "9");
INSERT INTO `wp_gf_form_view` VALUES("35038", "10", "2016-08-04 07:03:46", "134.249.48.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("35039", "3", "2016-08-04 08:13:10", "68.180.229.121", "9");
INSERT INTO `wp_gf_form_view` VALUES("35040", "10", "2016-08-04 08:13:12", "68.180.229.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("35041", "3", "2016-08-04 09:17:23", "194.187.170.113", "35");
INSERT INTO `wp_gf_form_view` VALUES("35042", "10", "2016-08-04 09:21:17", "194.187.170.113", "9");
INSERT INTO `wp_gf_form_view` VALUES("35043", "3", "2016-08-04 10:33:56", "194.187.170.113", "11");
INSERT INTO `wp_gf_form_view` VALUES("35044", "10", "2016-08-04 10:42:28", "157.55.39.160", "2");
INSERT INTO `wp_gf_form_view` VALUES("35045", "3", "2016-08-04 11:06:31", "194.187.170.113", "21");
INSERT INTO `wp_gf_form_view` VALUES("35046", "10", "2016-08-04 11:06:32", "194.187.170.113", "4");
INSERT INTO `wp_gf_form_view` VALUES("35047", "3", "2016-08-04 12:19:02", "202.46.56.204", "9");
INSERT INTO `wp_gf_form_view` VALUES("35048", "10", "2016-08-04 12:19:04", "202.46.56.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("35049", "3", "2016-08-04 13:44:33", "134.249.48.27", "17");
INSERT INTO `wp_gf_form_view` VALUES("35050", "10", "2016-08-04 13:44:37", "134.249.48.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("35051", "3", "2016-08-04 14:14:30", "66.249.79.156", "43");
INSERT INTO `wp_gf_form_view` VALUES("35052", "10", "2016-08-04 14:14:30", "66.249.79.156", "10");
INSERT INTO `wp_gf_form_view` VALUES("35053", "1", "2016-08-04 14:32:02", "24.16.143.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("35054", "3", "2016-08-04 15:04:48", "198.103.152.52", "58");
INSERT INTO `wp_gf_form_view` VALUES("35055", "10", "2016-08-04 15:04:49", "198.103.152.52", "12");
INSERT INTO `wp_gf_form_view` VALUES("35056", "1", "2016-08-04 15:14:44", "198.103.152.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("35057", "3", "2016-08-04 16:21:20", "75.155.183.160", "63");
INSERT INTO `wp_gf_form_view` VALUES("35058", "10", "2016-08-04 16:21:20", "75.155.183.160", "14");
INSERT INTO `wp_gf_form_view` VALUES("35059", "10", "2016-08-04 17:15:15", "24.108.4.19", "66");
INSERT INTO `wp_gf_form_view` VALUES("35060", "3", "2016-08-04 17:15:18", "24.108.4.19", "227");
INSERT INTO `wp_gf_form_view` VALUES("35061", "3", "2016-08-04 18:01:51", "46.119.118.165", "183");
INSERT INTO `wp_gf_form_view` VALUES("35062", "10", "2016-08-04 18:01:52", "46.119.118.165", "52");
INSERT INTO `wp_gf_form_view` VALUES("35063", "10", "2016-08-04 20:35:26", "184.66.245.34", "8");
INSERT INTO `wp_gf_form_view` VALUES("35064", "3", "2016-08-04 20:35:34", "184.66.245.34", "25");
INSERT INTO `wp_gf_form_view` VALUES("35065", "10", "2016-08-04 21:16:47", "184.66.243.203", "15");
INSERT INTO `wp_gf_form_view` VALUES("35066", "3", "2016-08-04 21:16:49", "184.66.243.203", "48");
INSERT INTO `wp_gf_form_view` VALUES("35067", "3", "2016-08-04 22:13:51", "157.55.39.91", "91");
INSERT INTO `wp_gf_form_view` VALUES("35068", "10", "2016-08-04 22:13:53", "157.55.39.91", "22");
INSERT INTO `wp_gf_form_view` VALUES("35069", "1", "2016-08-04 22:44:51", "46.161.9.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("35070", "10", "2016-08-04 23:25:38", "207.194.133.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("35071", "3", "2016-08-04 23:25:39", "207.194.133.9", "8");
INSERT INTO `wp_gf_form_view` VALUES("35072", "3", "2016-08-05 00:39:00", "68.180.229.121", "79");
INSERT INTO `wp_gf_form_view` VALUES("35073", "10", "2016-08-05 00:39:03", "68.180.229.121", "18");
INSERT INTO `wp_gf_form_view` VALUES("35074", "8", "2016-08-05 01:08:24", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("35075", "3", "2016-08-05 01:08:24", "207.46.13.17", "16");
INSERT INTO `wp_gf_form_view` VALUES("35076", "10", "2016-08-05 01:08:24", "207.46.13.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("35077", "3", "2016-08-05 02:13:00", "24.69.140.102", "34");
INSERT INTO `wp_gf_form_view` VALUES("35078", "10", "2016-08-05 02:13:03", "24.69.140.102", "8");
INSERT INTO `wp_gf_form_view` VALUES("35079", "3", "2016-08-05 03:03:41", "174.129.237.157", "98");
INSERT INTO `wp_gf_form_view` VALUES("35080", "10", "2016-08-05 03:03:42", "174.129.237.157", "26");
INSERT INTO `wp_gf_form_view` VALUES("35081", "1", "2016-08-05 03:34:15", "62.210.111.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("35082", "3", "2016-08-05 04:25:33", "46.119.118.165", "62");
INSERT INTO `wp_gf_form_view` VALUES("35083", "10", "2016-08-05 04:25:34", "46.119.118.165", "14");
INSERT INTO `wp_gf_form_view` VALUES("35084", "3", "2016-08-05 05:22:54", "207.46.13.17", "52");
INSERT INTO `wp_gf_form_view` VALUES("35085", "10", "2016-08-05 05:22:56", "207.46.13.17", "13");
INSERT INTO `wp_gf_form_view` VALUES("35086", "3", "2016-08-05 06:02:33", "24.68.48.249", "40");
INSERT INTO `wp_gf_form_view` VALUES("35087", "10", "2016-08-05 06:02:33", "24.68.48.249", "10");
INSERT INTO `wp_gf_form_view` VALUES("35088", "3", "2016-08-05 07:16:00", "157.55.39.91", "17");
INSERT INTO `wp_gf_form_view` VALUES("35089", "10", "2016-08-05 07:16:03", "157.55.39.91", "4");
INSERT INTO `wp_gf_form_view` VALUES("35090", "3", "2016-08-05 08:01:57", "202.46.51.182", "69");
INSERT INTO `wp_gf_form_view` VALUES("35091", "10", "2016-08-05 08:01:59", "202.46.51.182", "16");
INSERT INTO `wp_gf_form_view` VALUES("35092", "1", "2016-08-05 08:35:22", "202.46.58.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("35093", "3", "2016-08-05 09:40:48", "134.249.53.72", "9");
INSERT INTO `wp_gf_form_view` VALUES("35094", "10", "2016-08-05 09:40:56", "134.249.53.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("35095", "2", "2016-08-05 10:05:00", "223.240.115.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("35096", "3", "2016-08-05 10:05:00", "223.240.115.193", "84");
INSERT INTO `wp_gf_form_view` VALUES("35097", "10", "2016-08-05 10:05:01", "223.240.115.193", "20");
INSERT INTO `wp_gf_form_view` VALUES("35098", "3", "2016-08-05 11:45:57", "207.46.13.17", "41");
INSERT INTO `wp_gf_form_view` VALUES("35099", "10", "2016-08-05 11:45:58", "207.46.13.17", "9");
INSERT INTO `wp_gf_form_view` VALUES("35100", "10", "2016-08-05 12:00:00", "223.240.115.193", "15");
INSERT INTO `wp_gf_form_view` VALUES("35101", "3", "2016-08-05 12:00:00", "223.240.115.193", "62");
INSERT INTO `wp_gf_form_view` VALUES("35102", "3", "2016-08-05 13:05:30", "134.249.65.218", "77");
INSERT INTO `wp_gf_form_view` VALUES("35103", "10", "2016-08-05 13:05:30", "134.249.65.218", "18");
INSERT INTO `wp_gf_form_view` VALUES("35104", "11", "2016-08-05 14:25:23", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("35105", "3", "2016-08-05 14:25:25", "68.180.229.121", "34");
INSERT INTO `wp_gf_form_view` VALUES("35106", "10", "2016-08-05 14:25:26", "68.180.229.121", "8");
INSERT INTO `wp_gf_form_view` VALUES("35107", "3", "2016-08-05 15:03:17", "157.55.39.91", "57");
INSERT INTO `wp_gf_form_view` VALUES("35108", "10", "2016-08-05 15:03:17", "157.55.39.91", "16");
INSERT INTO `wp_gf_form_view` VALUES("35109", "3", "2016-08-05 16:22:40", "157.55.39.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("35110", "10", "2016-08-05 16:22:40", "157.55.39.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("35111", "3", "2016-08-05 17:05:09", "213.239.200.142", "732");
INSERT INTO `wp_gf_form_view` VALUES("35112", "10", "2016-08-05 17:05:11", "213.239.200.142", "190");
INSERT INTO `wp_gf_form_view` VALUES("35113", "11", "2016-08-05 17:06:00", "213.239.200.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("35114", "2", "2016-08-05 17:06:07", "213.239.200.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("35115", "12", "2016-08-05 17:11:58", "213.239.200.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("35116", "1", "2016-08-05 17:17:32", "213.239.200.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("35117", "3", "2016-08-05 18:05:48", "157.55.39.91", "32");
INSERT INTO `wp_gf_form_view` VALUES("35118", "10", "2016-08-05 18:05:48", "157.55.39.91", "8");
INSERT INTO `wp_gf_form_view` VALUES("35119", "3", "2016-08-05 19:19:50", "68.180.229.121", "1388");
INSERT INTO `wp_gf_form_view` VALUES("35120", "10", "2016-08-05 19:19:54", "68.180.229.121", "378");
INSERT INTO `wp_gf_form_view` VALUES("35121", "11", "2016-08-05 19:36:16", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35122", "2", "2016-08-05 19:36:27", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35123", "12", "2016-08-05 19:38:31", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35124", "1", "2016-08-05 19:39:21", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35125", "5", "2016-08-05 19:46:53", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35126", "8", "2016-08-05 19:51:27", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35127", "9", "2016-08-05 19:51:39", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35128", "6", "2016-08-05 19:52:41", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35129", "3", "2016-08-05 20:00:33", "5.9.98.130", "3569");
INSERT INTO `wp_gf_form_view` VALUES("35130", "10", "2016-08-05 20:00:34", "5.9.98.130", "1085");
INSERT INTO `wp_gf_form_view` VALUES("35131", "10", "2016-08-05 21:00:00", "5.9.98.130", "1134");
INSERT INTO `wp_gf_form_view` VALUES("35132", "3", "2016-08-05 21:00:00", "5.9.98.130", "3987");
INSERT INTO `wp_gf_form_view` VALUES("35133", "2", "2016-08-05 21:08:05", "157.55.39.82", "5");
INSERT INTO `wp_gf_form_view` VALUES("35134", "11", "2016-08-05 21:40:08", "24.108.4.19", "5");
INSERT INTO `wp_gf_form_view` VALUES("35135", "10", "2016-08-05 22:00:00", "5.9.98.130", "1681");
INSERT INTO `wp_gf_form_view` VALUES("35136", "3", "2016-08-05 22:00:00", "5.9.98.130", "5197");
INSERT INTO `wp_gf_form_view` VALUES("35137", "6", "2016-08-05 22:17:01", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("35138", "5", "2016-08-05 22:17:17", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("35139", "9", "2016-08-05 22:17:34", "157.55.39.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("35140", "11", "2016-08-05 22:37:14", "157.55.39.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("35141", "12", "2016-08-05 22:56:51", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("35142", "3", "2016-08-05 23:00:00", "5.9.98.130", "985");
INSERT INTO `wp_gf_form_view` VALUES("35143", "10", "2016-08-05 23:00:00", "5.9.98.130", "248");
INSERT INTO `wp_gf_form_view` VALUES("35144", "12", "2016-08-05 23:38:26", "157.55.39.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35145", "8", "2016-08-05 23:38:47", "157.55.39.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35146", "3", "2016-08-06 00:00:00", "5.9.98.130", "5160");
INSERT INTO `wp_gf_form_view` VALUES("35147", "10", "2016-08-06 00:00:00", "5.9.98.130", "1560");
INSERT INTO `wp_gf_form_view` VALUES("35148", "8", "2016-08-06 00:24:08", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("35149", "3", "2016-08-06 01:00:00", "5.9.98.130", "4870");
INSERT INTO `wp_gf_form_view` VALUES("35150", "10", "2016-08-06 01:00:03", "5.9.98.130", "1399");
INSERT INTO `wp_gf_form_view` VALUES("35151", "10", "2016-08-06 02:00:00", "5.9.98.130", "513");
INSERT INTO `wp_gf_form_view` VALUES("35152", "3", "2016-08-06 02:00:01", "5.9.98.130", "849");
INSERT INTO `wp_gf_form_view` VALUES("35153", "3", "2016-08-06 03:02:39", "202.46.50.137", "1265");
INSERT INTO `wp_gf_form_view` VALUES("35154", "10", "2016-08-06 03:02:40", "202.46.50.137", "316");
INSERT INTO `wp_gf_form_view` VALUES("35155", "3", "2016-08-06 04:00:01", "5.9.98.130", "4574");
INSERT INTO `wp_gf_form_view` VALUES("35156", "10", "2016-08-06 04:00:02", "5.9.98.130", "1054");
INSERT INTO `wp_gf_form_view` VALUES("35157", "3", "2016-08-06 05:00:00", "5.9.98.130", "5013");
INSERT INTO `wp_gf_form_view` VALUES("35158", "10", "2016-08-06 05:00:01", "5.9.98.130", "1664");
INSERT INTO `wp_gf_form_view` VALUES("35159", "2", "2016-08-06 05:02:45", "157.55.39.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("35160", "3", "2016-08-06 06:00:06", "5.9.98.130", "5540");
INSERT INTO `wp_gf_form_view` VALUES("35161", "10", "2016-08-06 06:00:06", "5.9.98.130", "960");
INSERT INTO `wp_gf_form_view` VALUES("35162", "3", "2016-08-06 07:00:00", "5.9.98.130", "4475");
INSERT INTO `wp_gf_form_view` VALUES("35163", "10", "2016-08-06 07:00:02", "5.9.98.130", "1720");
INSERT INTO `wp_gf_form_view` VALUES("35164", "11", "2016-08-06 07:25:11", "157.55.39.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("35165", "12", "2016-08-06 07:56:14", "40.77.167.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("35166", "3", "2016-08-06 08:00:03", "5.9.98.130", "2356");
INSERT INTO `wp_gf_form_view` VALUES("35167", "10", "2016-08-06 08:00:06", "5.9.98.130", "1592");
INSERT INTO `wp_gf_form_view` VALUES("35168", "3", "2016-08-06 09:24:39", "192.243.55.129", "56");
INSERT INTO `wp_gf_form_view` VALUES("35169", "10", "2016-08-06 09:24:42", "192.243.55.129", "12");
INSERT INTO `wp_gf_form_view` VALUES("35170", "3", "2016-08-06 10:03:32", "5.9.98.130", "88");
INSERT INTO `wp_gf_form_view` VALUES("35171", "10", "2016-08-06 10:03:32", "5.9.98.130", "22");
INSERT INTO `wp_gf_form_view` VALUES("35172", "9", "2016-08-06 10:03:45", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("35173", "11", "2016-08-06 11:30:38", "157.55.39.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("35174", "3", "2016-08-06 11:30:40", "157.55.39.203", "16");
INSERT INTO `wp_gf_form_view` VALUES("35175", "10", "2016-08-06 11:30:41", "157.55.39.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("35176", "3", "2016-08-06 12:03:03", "51.255.65.94", "17");
INSERT INTO `wp_gf_form_view` VALUES("35177", "10", "2016-08-06 12:03:04", "51.255.65.94", "4");
INSERT INTO `wp_gf_form_view` VALUES("35178", "3", "2016-08-06 13:32:34", "68.180.229.121", "25");
INSERT INTO `wp_gf_form_view` VALUES("35179", "10", "2016-08-06 13:32:38", "68.180.229.121", "6");
INSERT INTO `wp_gf_form_view` VALUES("35180", "9", "2016-08-06 13:59:46", "180.191.127.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("35181", "3", "2016-08-06 14:48:32", "157.55.39.181", "8");
INSERT INTO `wp_gf_form_view` VALUES("35182", "10", "2016-08-06 14:48:34", "157.55.39.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("35183", "10", "2016-08-06 15:02:58", "66.249.79.152", "9");
INSERT INTO `wp_gf_form_view` VALUES("35184", "3", "2016-08-06 15:02:58", "66.249.79.152", "32");
INSERT INTO `wp_gf_form_view` VALUES("35185", "3", "2016-08-06 16:02:56", "5.9.145.132", "83");
INSERT INTO `wp_gf_form_view` VALUES("35186", "10", "2016-08-06 16:02:57", "5.9.145.132", "22");
INSERT INTO `wp_gf_form_view` VALUES("35187", "12", "2016-08-06 16:18:50", "207.46.13.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("35188", "3", "2016-08-06 17:05:02", "207.46.13.15", "69");
INSERT INTO `wp_gf_form_view` VALUES("35189", "10", "2016-08-06 17:05:14", "207.46.13.15", "16");
INSERT INTO `wp_gf_form_view` VALUES("35190", "1", "2016-08-06 17:25:51", "168.0.126.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("35191", "12", "2016-08-06 17:38:15", "207.46.13.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("35192", "3", "2016-08-06 19:05:48", "202.46.54.106", "71");
INSERT INTO `wp_gf_form_view` VALUES("35193", "10", "2016-08-06 19:05:52", "202.46.54.106", "16");
INSERT INTO `wp_gf_form_view` VALUES("35194", "3", "2016-08-06 20:10:36", "207.46.13.15", "26");
INSERT INTO `wp_gf_form_view` VALUES("35195", "10", "2016-08-06 20:10:36", "207.46.13.15", "6");
INSERT INTO `wp_gf_form_view` VALUES("35196", "3", "2016-08-06 21:31:04", "207.46.13.166", "25");
INSERT INTO `wp_gf_form_view` VALUES("35197", "10", "2016-08-06 21:31:10", "207.46.13.166", "7");
INSERT INTO `wp_gf_form_view` VALUES("35198", "3", "2016-08-06 22:00:34", "66.249.79.152", "33");
INSERT INTO `wp_gf_form_view` VALUES("35199", "10", "2016-08-06 22:00:34", "66.249.79.152", "8");
INSERT INTO `wp_gf_form_view` VALUES("35200", "12", "2016-08-06 22:35:54", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("35201", "3", "2016-08-06 23:45:49", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("35202", "10", "2016-08-06 23:45:50", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("35203", "3", "2016-08-07 00:15:46", "46.119.118.165", "27");
INSERT INTO `wp_gf_form_view` VALUES("35204", "10", "2016-08-07 00:15:46", "46.119.118.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("35205", "3", "2016-08-07 01:25:28", "192.243.55.132", "49");
INSERT INTO `wp_gf_form_view` VALUES("35206", "10", "2016-08-07 01:25:30", "192.243.55.132", "12");
INSERT INTO `wp_gf_form_view` VALUES("35207", "1", "2016-08-07 01:38:39", "62.210.111.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("35208", "8", "2016-08-07 01:58:33", "207.46.13.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("35209", "3", "2016-08-07 02:30:27", "5.248.196.10", "35");
INSERT INTO `wp_gf_form_view` VALUES("35210", "10", "2016-08-07 02:30:30", "5.248.196.10", "7");
INSERT INTO `wp_gf_form_view` VALUES("35211", "10", "2016-08-07 02:30:30", "5.248.196.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("35212", "10", "2016-08-07 02:30:30", "5.248.196.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("35213", "3", "2016-08-07 03:01:41", "151.80.31.157", "100");
INSERT INTO `wp_gf_form_view` VALUES("35214", "10", "2016-08-07 03:01:41", "151.80.31.157", "23");
INSERT INTO `wp_gf_form_view` VALUES("35215", "5", "2016-08-07 03:34:31", "202.46.53.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("35216", "3", "2016-08-07 04:04:11", "68.180.229.121", "40");
INSERT INTO `wp_gf_form_view` VALUES("35217", "10", "2016-08-07 04:04:11", "68.180.229.121", "11");
INSERT INTO `wp_gf_form_view` VALUES("35218", "3", "2016-08-07 05:03:34", "66.249.79.156", "49");
INSERT INTO `wp_gf_form_view` VALUES("35219", "10", "2016-08-07 05:03:35", "66.249.79.156", "12");
INSERT INTO `wp_gf_form_view` VALUES("35220", "1", "2016-08-07 05:39:34", "62.210.111.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("35221", "1", "2016-08-07 06:01:14", "62.210.111.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("35222", "3", "2016-08-07 06:01:14", "62.210.111.75", "69");
INSERT INTO `wp_gf_form_view` VALUES("35223", "10", "2016-08-07 06:01:15", "62.210.111.75", "16");
INSERT INTO `wp_gf_form_view` VALUES("35224", "3", "2016-08-07 07:02:40", "207.46.13.73", "42");
INSERT INTO `wp_gf_form_view` VALUES("35225", "10", "2016-08-07 07:02:41", "207.46.13.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("35226", "1", "2016-08-07 07:32:26", "62.210.111.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("35227", "3", "2016-08-07 08:04:13", "134.249.48.27", "92");
INSERT INTO `wp_gf_form_view` VALUES("35228", "10", "2016-08-07 08:04:14", "134.249.48.27", "21");
INSERT INTO `wp_gf_form_view` VALUES("35229", "10", "2016-08-07 08:04:14", "134.249.48.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("35230", "1", "2016-08-07 08:46:44", "176.100.106.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("35231", "3", "2016-08-07 09:06:50", "66.249.79.156", "57");
INSERT INTO `wp_gf_form_view` VALUES("35232", "10", "2016-08-07 09:06:50", "66.249.79.156", "14");
INSERT INTO `wp_gf_form_view` VALUES("35233", "2", "2016-08-07 09:15:24", "207.46.13.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("35234", "3", "2016-08-07 10:06:37", "207.46.13.0", "9");
INSERT INTO `wp_gf_form_view` VALUES("35235", "10", "2016-08-07 10:06:38", "207.46.13.0", "2");
INSERT INTO `wp_gf_form_view` VALUES("35236", "3", "2016-08-07 11:50:34", "164.132.161.65", "9");
INSERT INTO `wp_gf_form_view` VALUES("35237", "10", "2016-08-07 11:56:03", "157.55.39.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("35238", "3", "2016-08-07 12:20:27", "46.118.158.47", "51");
INSERT INTO `wp_gf_form_view` VALUES("35239", "10", "2016-08-07 12:20:28", "46.118.158.47", "12");
INSERT INTO `wp_gf_form_view` VALUES("35240", "3", "2016-08-07 13:19:22", "157.55.39.207", "225");
INSERT INTO `wp_gf_form_view` VALUES("35241", "10", "2016-08-07 13:19:22", "157.55.39.207", "56");
INSERT INTO `wp_gf_form_view` VALUES("35242", "11", "2016-08-07 13:52:56", "212.219.81.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("35243", "12", "2016-08-07 13:54:06", "212.219.81.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("35244", "2", "2016-08-07 13:55:32", "212.219.81.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("35245", "3", "2016-08-07 14:13:17", "192.243.55.132", "26");
INSERT INTO `wp_gf_form_view` VALUES("35246", "10", "2016-08-07 14:13:18", "192.243.55.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("35247", "3", "2016-08-07 16:14:19", "208.43.225.85", "8");
INSERT INTO `wp_gf_form_view` VALUES("35248", "10", "2016-08-07 16:14:21", "208.43.225.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("35249", "3", "2016-08-07 17:01:59", "134.249.65.218", "61");
INSERT INTO `wp_gf_form_view` VALUES("35250", "3", "2016-08-07 17:01:59", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35251", "3", "2016-08-07 17:01:59", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35252", "10", "2016-08-07 17:02:01", "134.249.65.218", "13");
INSERT INTO `wp_gf_form_view` VALUES("35253", "10", "2016-08-07 17:02:01", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35254", "3", "2016-08-07 18:04:04", "68.180.229.121", "26");
INSERT INTO `wp_gf_form_view` VALUES("35255", "10", "2016-08-07 18:04:07", "68.180.229.121", "4");
INSERT INTO `wp_gf_form_view` VALUES("35256", "1", "2016-08-07 19:10:58", "213.184.105.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("35257", "3", "2016-08-07 19:10:59", "213.184.105.200", "16");
INSERT INTO `wp_gf_form_view` VALUES("35258", "10", "2016-08-07 19:10:59", "213.184.105.200", "4");
INSERT INTO `wp_gf_form_view` VALUES("35259", "10", "2016-08-07 20:06:04", "24.68.17.97", "25");
INSERT INTO `wp_gf_form_view` VALUES("35260", "3", "2016-08-07 20:06:05", "24.68.17.97", "99");
INSERT INTO `wp_gf_form_view` VALUES("35261", "11", "2016-08-07 21:39:37", "81.68.74.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("35262", "3", "2016-08-07 21:39:42", "81.68.74.236", "225");
INSERT INTO `wp_gf_form_view` VALUES("35263", "10", "2016-08-07 21:39:42", "81.68.74.236", "56");
INSERT INTO `wp_gf_form_view` VALUES("35264", "12", "2016-08-07 21:40:15", "81.68.74.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("35265", "2", "2016-08-07 21:41:03", "81.68.74.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("35266", "6", "2016-08-07 21:57:39", "192.243.55.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("35267", "10", "2016-08-07 22:31:43", "216.232.151.226", "12");
INSERT INTO `wp_gf_form_view` VALUES("35268", "3", "2016-08-07 22:31:46", "216.232.151.226", "32");
INSERT INTO `wp_gf_form_view` VALUES("35269", "3", "2016-08-07 23:11:19", "207.46.13.73", "24");
INSERT INTO `wp_gf_form_view` VALUES("35270", "10", "2016-08-07 23:11:19", "207.46.13.73", "7");
INSERT INTO `wp_gf_form_view` VALUES("35271", "11", "2016-08-07 23:18:32", "51.255.65.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("35272", "3", "2016-08-08 00:16:25", "96.54.34.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("35273", "10", "2016-08-08 00:16:26", "96.54.34.105", "5");
INSERT INTO `wp_gf_form_view` VALUES("35274", "3", "2016-08-08 01:07:15", "157.55.39.207", "59");
INSERT INTO `wp_gf_form_view` VALUES("35275", "10", "2016-08-08 01:07:15", "157.55.39.207", "24");
INSERT INTO `wp_gf_form_view` VALUES("35276", "1", "2016-08-08 02:20:34", "192.243.55.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("35277", "3", "2016-08-08 02:20:35", "192.243.55.135", "16");
INSERT INTO `wp_gf_form_view` VALUES("35278", "10", "2016-08-08 02:20:36", "192.243.55.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("35279", "8", "2016-08-08 03:04:20", "151.80.31.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("35280", "3", "2016-08-08 03:04:20", "151.80.31.108", "16");
INSERT INTO `wp_gf_form_view` VALUES("35281", "10", "2016-08-08 03:04:21", "151.80.31.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("35282", "8", "2016-08-08 04:48:10", "192.243.55.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("35283", "3", "2016-08-08 04:48:13", "192.243.55.136", "16");
INSERT INTO `wp_gf_form_view` VALUES("35284", "10", "2016-08-08 04:48:14", "192.243.55.136", "4");
INSERT INTO `wp_gf_form_view` VALUES("35285", "10", "2016-08-08 05:33:55", "75.156.98.92", "149");
INSERT INTO `wp_gf_form_view` VALUES("35286", "3", "2016-08-08 05:33:55", "75.156.98.92", "547");
INSERT INTO `wp_gf_form_view` VALUES("35287", "8", "2016-08-08 05:35:00", "157.55.39.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("35288", "9", "2016-08-08 05:35:01", "40.77.167.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("35289", "12", "2016-08-08 05:35:42", "157.55.39.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("35290", "7", "2016-08-08 05:35:44", "157.55.39.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("35291", "3", "2016-08-08 06:34:03", "157.55.39.179", "16");
INSERT INTO `wp_gf_form_view` VALUES("35292", "10", "2016-08-08 06:34:05", "157.55.39.179", "4");
INSERT INTO `wp_gf_form_view` VALUES("35293", "3", "2016-08-08 07:18:10", "46.118.158.81", "42");
INSERT INTO `wp_gf_form_view` VALUES("35294", "3", "2016-08-08 07:18:10", "46.118.158.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("35295", "10", "2016-08-08 07:18:11", "46.118.158.81", "9");
INSERT INTO `wp_gf_form_view` VALUES("35296", "10", "2016-08-08 07:18:11", "46.118.158.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("35297", "3", "2016-08-08 08:15:55", "192.243.55.129", "9");
INSERT INTO `wp_gf_form_view` VALUES("35298", "10", "2016-08-08 08:15:56", "192.243.55.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("35299", "3", "2016-08-08 09:26:20", "46.118.158.81", "27");
INSERT INTO `wp_gf_form_view` VALUES("35300", "10", "2016-08-08 09:26:22", "46.118.158.81", "6");
INSERT INTO `wp_gf_form_view` VALUES("35301", "11", "2016-08-08 10:03:25", "192.243.55.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("35302", "3", "2016-08-08 10:03:26", "192.243.55.132", "34");
INSERT INTO `wp_gf_form_view` VALUES("35303", "10", "2016-08-08 10:03:27", "192.243.55.132", "9");
INSERT INTO `wp_gf_form_view` VALUES("35304", "3", "2016-08-08 11:25:12", "192.243.55.131", "52");
INSERT INTO `wp_gf_form_view` VALUES("35305", "10", "2016-08-08 11:25:14", "192.243.55.131", "12");
INSERT INTO `wp_gf_form_view` VALUES("35306", "3", "2016-08-08 13:07:11", "91.200.12.65", "76");
INSERT INTO `wp_gf_form_view` VALUES("35307", "10", "2016-08-08 13:07:13", "91.200.12.65", "18");
INSERT INTO `wp_gf_form_view` VALUES("35308", "3", "2016-08-08 14:07:00", "40.77.167.40", "34");
INSERT INTO `wp_gf_form_view` VALUES("35309", "10", "2016-08-08 14:07:00", "40.77.167.40", "16");
INSERT INTO `wp_gf_form_view` VALUES("35310", "3", "2016-08-08 15:38:29", "157.55.39.207", "17");
INSERT INTO `wp_gf_form_view` VALUES("35311", "10", "2016-08-08 15:38:31", "157.55.39.207", "5");
INSERT INTO `wp_gf_form_view` VALUES("35312", "3", "2016-08-08 16:59:20", "199.21.99.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("35313", "10", "2016-08-08 16:59:22", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("35314", "3", "2016-08-08 17:04:19", "199.59.148.209", "65");
INSERT INTO `wp_gf_form_view` VALUES("35315", "10", "2016-08-08 17:04:19", "199.59.148.209", "19");
INSERT INTO `wp_gf_form_view` VALUES("35316", "3", "2016-08-08 18:21:41", "202.46.53.190", "76");
INSERT INTO `wp_gf_form_view` VALUES("35317", "10", "2016-08-08 18:21:44", "202.46.53.190", "21");
INSERT INTO `wp_gf_form_view` VALUES("35318", "1", "2016-08-08 18:36:21", "24.16.143.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("35319", "3", "2016-08-08 19:14:19", "24.108.4.19", "483");
INSERT INTO `wp_gf_form_view` VALUES("35320", "10", "2016-08-08 19:14:20", "24.108.4.19", "120");
INSERT INTO `wp_gf_form_view` VALUES("35321", "11", "2016-08-08 19:39:10", "24.108.4.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("35322", "2", "2016-08-08 19:39:17", "24.108.4.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("35323", "3", "2016-08-08 20:09:07", "54.236.1.77", "236");
INSERT INTO `wp_gf_form_view` VALUES("35324", "10", "2016-08-08 20:09:07", "54.236.1.77", "58");
INSERT INTO `wp_gf_form_view` VALUES("35325", "3", "2016-08-08 21:21:35", "142.104.26.78", "16");
INSERT INTO `wp_gf_form_view` VALUES("35326", "10", "2016-08-08 21:21:43", "142.104.26.78", "4");
INSERT INTO `wp_gf_form_view` VALUES("35327", "3", "2016-08-08 22:06:00", "202.46.54.192", "73");
INSERT INTO `wp_gf_form_view` VALUES("35328", "10", "2016-08-08 22:06:01", "202.46.54.192", "19");
INSERT INTO `wp_gf_form_view` VALUES("35329", "3", "2016-08-08 23:09:33", "77.75.77.54", "53");
INSERT INTO `wp_gf_form_view` VALUES("35330", "10", "2016-08-08 23:09:33", "77.75.77.54", "12");
INSERT INTO `wp_gf_form_view` VALUES("35331", "1", "2016-08-09 00:01:32", "23.95.252.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("35332", "3", "2016-08-09 00:01:37", "23.95.252.172", "34");
INSERT INTO `wp_gf_form_view` VALUES("35333", "10", "2016-08-09 00:01:43", "23.95.252.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("35334", "11", "2016-08-09 00:36:54", "77.75.76.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("35335", "3", "2016-08-09 01:15:55", "24.69.146.59", "16");
INSERT INTO `wp_gf_form_view` VALUES("35336", "10", "2016-08-09 01:15:56", "24.69.146.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("35337", "3", "2016-08-09 02:15:10", "68.180.229.121", "17");
INSERT INTO `wp_gf_form_view` VALUES("35338", "10", "2016-08-09 02:15:12", "68.180.229.121", "4");
INSERT INTO `wp_gf_form_view` VALUES("35339", "3", "2016-08-09 03:16:47", "220.181.108.110", "1543");
INSERT INTO `wp_gf_form_view` VALUES("35340", "10", "2016-08-09 03:16:49", "220.181.108.110", "480");
INSERT INTO `wp_gf_form_view` VALUES("35341", "1", "2016-08-09 03:44:49", "159.203.82.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("35342", "11", "2016-08-09 03:45:04", "159.203.82.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("35343", "12", "2016-08-09 03:56:09", "159.203.82.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("35344", "3", "2016-08-09 04:00:00", "159.203.82.238", "3325");
INSERT INTO `wp_gf_form_view` VALUES("35345", "10", "2016-08-09 04:00:01", "159.203.82.238", "904");
INSERT INTO `wp_gf_form_view` VALUES("35346", "6", "2016-08-09 04:05:44", "159.203.82.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("35347", "9", "2016-08-09 04:14:24", "159.203.82.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("35348", "2", "2016-08-09 04:48:34", "159.203.82.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("35349", "3", "2016-08-09 05:00:03", "159.203.82.238", "267");
INSERT INTO `wp_gf_form_view` VALUES("35350", "10", "2016-08-09 05:00:06", "159.203.82.238", "80");
INSERT INTO `wp_gf_form_view` VALUES("35351", "8", "2016-08-09 05:02:25", "159.203.82.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("35352", "3", "2016-08-09 06:35:03", "68.180.229.121", "18");
INSERT INTO `wp_gf_form_view` VALUES("35353", "10", "2016-08-09 06:35:23", "77.75.79.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("35354", "3", "2016-08-09 07:09:15", "51.255.65.57", "32");
INSERT INTO `wp_gf_form_view` VALUES("35355", "10", "2016-08-09 07:09:15", "51.255.65.57", "10");
INSERT INTO `wp_gf_form_view` VALUES("35356", "1", "2016-08-09 08:04:07", "23.95.233.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("35357", "3", "2016-08-09 08:04:08", "23.95.233.215", "79");
INSERT INTO `wp_gf_form_view` VALUES("35358", "10", "2016-08-09 08:04:08", "23.95.233.215", "18");
INSERT INTO `wp_gf_form_view` VALUES("35359", "12", "2016-08-09 08:25:13", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("35360", "1", "2016-08-09 09:02:10", "46.161.9.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("35361", "3", "2016-08-09 09:02:10", "46.161.9.34", "97");
INSERT INTO `wp_gf_form_view` VALUES("35362", "10", "2016-08-09 09:02:11", "46.161.9.34", "24");
INSERT INTO `wp_gf_form_view` VALUES("35363", "10", "2016-08-09 10:08:54", "68.180.229.121", "53");
INSERT INTO `wp_gf_form_view` VALUES("35364", "3", "2016-08-09 10:08:54", "68.180.229.121", "212");
INSERT INTO `wp_gf_form_view` VALUES("35365", "12", "2016-08-09 10:27:17", "104.236.211.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("35366", "11", "2016-08-09 10:27:18", "104.236.211.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("35367", "2", "2016-08-09 10:27:21", "104.236.211.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("35368", "3", "2016-08-09 11:12:33", "199.21.99.202", "24");
INSERT INTO `wp_gf_form_view` VALUES("35369", "10", "2016-08-09 11:12:33", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("35370", "3", "2016-08-09 12:07:23", "66.249.79.148", "16");
INSERT INTO `wp_gf_form_view` VALUES("35371", "10", "2016-08-09 12:07:24", "66.249.79.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("35372", "3", "2016-08-09 13:23:43", "178.137.86.253", "85");
INSERT INTO `wp_gf_form_view` VALUES("35373", "10", "2016-08-09 13:23:45", "178.137.86.253", "20");
INSERT INTO `wp_gf_form_view` VALUES("35374", "1", "2016-08-09 13:32:24", "75.156.73.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("35375", "3", "2016-08-09 14:17:46", "199.21.99.202", "32");
INSERT INTO `wp_gf_form_view` VALUES("35376", "10", "2016-08-09 14:17:47", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("35377", "10", "2016-08-09 15:15:09", "205.250.193.33", "9");
INSERT INTO `wp_gf_form_view` VALUES("35378", "3", "2016-08-09 15:15:09", "205.250.193.33", "34");
INSERT INTO `wp_gf_form_view` VALUES("35379", "3", "2016-08-09 16:32:30", "207.46.13.102", "17");
INSERT INTO `wp_gf_form_view` VALUES("35380", "10", "2016-08-09 16:32:33", "207.46.13.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("35381", "3", "2016-08-09 17:48:06", "46.119.118.165", "35");
INSERT INTO `wp_gf_form_view` VALUES("35382", "10", "2016-08-09 17:48:08", "46.119.118.165", "7");
INSERT INTO `wp_gf_form_view` VALUES("35383", "10", "2016-08-09 17:48:08", "46.119.118.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("35384", "1", "2016-08-09 17:57:41", "107.173.146.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("35385", "3", "2016-08-09 18:16:05", "202.46.53.16", "84");
INSERT INTO `wp_gf_form_view` VALUES("35386", "10", "2016-08-09 18:16:05", "202.46.53.16", "21");
INSERT INTO `wp_gf_form_view` VALUES("35387", "3", "2016-08-09 19:52:50", "174.129.237.157", "16");
INSERT INTO `wp_gf_form_view` VALUES("35388", "10", "2016-08-09 19:52:52", "174.129.237.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("35389", "3", "2016-08-09 20:02:54", "46.119.112.163", "67");
INSERT INTO `wp_gf_form_view` VALUES("35390", "10", "2016-08-09 20:02:54", "46.119.112.163", "16");
INSERT INTO `wp_gf_form_view` VALUES("35391", "3", "2016-08-09 21:02:17", "164.132.161.18", "77");
INSERT INTO `wp_gf_form_view` VALUES("35392", "10", "2016-08-09 21:02:17", "164.132.161.18", "19");
INSERT INTO `wp_gf_form_view` VALUES("35393", "3", "2016-08-09 22:09:05", "199.21.99.202", "41");
INSERT INTO `wp_gf_form_view` VALUES("35394", "10", "2016-08-09 22:09:05", "199.21.99.202", "11");
INSERT INTO `wp_gf_form_view` VALUES("35395", "3", "2016-08-09 23:15:25", "184.68.134.18", "58");
INSERT INTO `wp_gf_form_view` VALUES("35396", "3", "2016-08-09 23:15:25", "184.68.134.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("35397", "10", "2016-08-09 23:15:32", "184.68.134.18", "22");
INSERT INTO `wp_gf_form_view` VALUES("35398", "3", "2016-08-10 00:15:52", "66.249.79.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("35399", "10", "2016-08-10 00:15:53", "66.249.79.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("35400", "3", "2016-08-10 01:02:42", "164.132.161.2", "76");
INSERT INTO `wp_gf_form_view` VALUES("35401", "10", "2016-08-10 01:02:43", "164.132.161.2", "19");
INSERT INTO `wp_gf_form_view` VALUES("35402", "11", "2016-08-10 02:44:44", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("35403", "3", "2016-08-10 02:44:45", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("35404", "10", "2016-08-10 02:44:46", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("35405", "9", "2016-08-10 03:45:20", "24.68.44.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("35406", "3", "2016-08-10 03:45:22", "24.68.44.233", "25");
INSERT INTO `wp_gf_form_view` VALUES("35407", "10", "2016-08-10 03:45:22", "24.68.44.233", "6");
INSERT INTO `wp_gf_form_view` VALUES("35408", "3", "2016-08-10 04:19:33", "108.180.31.157", "65");
INSERT INTO `wp_gf_form_view` VALUES("35409", "10", "2016-08-10 04:19:33", "108.180.31.157", "16");
INSERT INTO `wp_gf_form_view` VALUES("35410", "3", "2016-08-10 05:07:06", "66.249.79.156", "24");
INSERT INTO `wp_gf_form_view` VALUES("35411", "10", "2016-08-10 05:07:06", "66.249.79.156", "7");
INSERT INTO `wp_gf_form_view` VALUES("35412", "2", "2016-08-10 06:57:30", "51.255.65.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("35413", "3", "2016-08-10 06:57:31", "51.255.65.97", "8");
INSERT INTO `wp_gf_form_view` VALUES("35414", "10", "2016-08-10 06:57:32", "51.255.65.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("35415", "3", "2016-08-10 07:02:42", "46.119.118.165", "66");
INSERT INTO `wp_gf_form_view` VALUES("35416", "3", "2016-08-10 07:02:42", "46.119.118.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("35417", "10", "2016-08-10 07:02:42", "46.119.118.165", "15");
INSERT INTO `wp_gf_form_view` VALUES("35418", "10", "2016-08-10 07:02:42", "46.119.118.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("35419", "1", "2016-08-10 07:07:33", "192.99.170.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("35420", "7", "2016-08-10 07:15:42", "202.46.58.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("35421", "3", "2016-08-10 08:17:52", "157.55.39.220", "38");
INSERT INTO `wp_gf_form_view` VALUES("35422", "10", "2016-08-10 08:17:53", "157.55.39.220", "8");
INSERT INTO `wp_gf_form_view` VALUES("35423", "3", "2016-08-10 09:22:06", "66.249.79.156", "253");
INSERT INTO `wp_gf_form_view` VALUES("35424", "10", "2016-08-10 09:22:11", "66.249.79.156", "62");
INSERT INTO `wp_gf_form_view` VALUES("35425", "11", "2016-08-10 09:27:29", "212.219.81.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("35426", "12", "2016-08-10 09:29:49", "212.219.81.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("35427", "2", "2016-08-10 09:33:39", "212.219.81.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("35428", "3", "2016-08-10 10:11:23", "51.255.65.65", "41");
INSERT INTO `wp_gf_form_view` VALUES("35429", "10", "2016-08-10 10:11:26", "51.255.65.65", "10");
INSERT INTO `wp_gf_form_view` VALUES("35430", "11", "2016-08-10 11:11:07", "66.249.79.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("35431", "3", "2016-08-10 11:11:10", "66.249.79.156", "57");
INSERT INTO `wp_gf_form_view` VALUES("35432", "10", "2016-08-10 11:11:10", "66.249.79.156", "14");
INSERT INTO `wp_gf_form_view` VALUES("35433", "3", "2016-08-10 12:23:33", "207.46.13.56", "17");
INSERT INTO `wp_gf_form_view` VALUES("35434", "10", "2016-08-10 12:23:35", "207.46.13.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("35435", "8", "2016-08-10 12:44:17", "66.249.79.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("35436", "3", "2016-08-10 13:08:49", "136.243.17.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("35437", "10", "2016-08-10 13:08:50", "136.243.17.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("35438", "3", "2016-08-10 14:27:23", "68.180.229.121", "9");
INSERT INTO `wp_gf_form_view` VALUES("35439", "10", "2016-08-10 14:27:25", "68.180.229.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("35440", "1", "2016-08-10 15:23:06", "198.12.123.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("35441", "3", "2016-08-10 15:23:07", "198.12.123.245", "127");
INSERT INTO `wp_gf_form_view` VALUES("35442", "10", "2016-08-10 15:23:10", "198.12.123.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("35443", "3", "2016-08-10 16:04:12", "96.50.29.140", "83");
INSERT INTO `wp_gf_form_view` VALUES("35444", "10", "2016-08-10 16:04:13", "96.50.29.140", "21");
INSERT INTO `wp_gf_form_view` VALUES("35445", "3", "2016-08-10 17:06:22", "174.127.133.55", "623");
INSERT INTO `wp_gf_form_view` VALUES("35446", "10", "2016-08-10 17:06:23", "174.127.133.55", "162");
INSERT INTO `wp_gf_form_view` VALUES("35447", "2", "2016-08-10 17:09:56", "174.127.133.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("35448", "11", "2016-08-10 17:14:44", "174.127.133.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("35449", "12", "2016-08-10 17:16:26", "174.127.133.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("35450", "1", "2016-08-10 17:50:45", "174.127.133.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("35451", "3", "2016-08-10 18:00:15", "66.249.79.156", "784");
INSERT INTO `wp_gf_form_view` VALUES("35452", "10", "2016-08-10 18:00:16", "66.249.79.156", "188");
INSERT INTO `wp_gf_form_view` VALUES("35453", "9", "2016-08-10 18:38:32", "157.55.39.109", "3");
INSERT INTO `wp_gf_form_view` VALUES("35454", "8", "2016-08-10 18:38:35", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("35455", "6", "2016-08-10 18:40:23", "157.55.39.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("35456", "5", "2016-08-10 18:40:32", "157.55.39.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("35457", "11", "2016-08-10 19:29:47", "100.43.90.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("35458", "3", "2016-08-10 19:29:51", "100.43.90.12", "16");
INSERT INTO `wp_gf_form_view` VALUES("35459", "10", "2016-08-10 19:29:52", "100.43.90.12", "4");
INSERT INTO `wp_gf_form_view` VALUES("35460", "3", "2016-08-10 20:20:43", "51.255.65.35", "17");
INSERT INTO `wp_gf_form_view` VALUES("35461", "10", "2016-08-10 20:20:46", "51.255.65.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("35462", "6", "2016-08-10 21:00:57", "151.80.31.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("35463", "3", "2016-08-10 21:00:57", "151.80.31.175", "67");
INSERT INTO `wp_gf_form_view` VALUES("35464", "10", "2016-08-10 21:00:58", "151.80.31.175", "16");
INSERT INTO `wp_gf_form_view` VALUES("35465", "8", "2016-08-10 21:46:26", "212.60.66.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("35466", "3", "2016-08-10 22:52:21", "178.137.86.253", "59");
INSERT INTO `wp_gf_form_view` VALUES("35467", "3", "2016-08-10 22:52:21", "178.137.86.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("35468", "3", "2016-08-10 22:52:21", "178.137.86.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("35469", "3", "2016-08-10 22:52:21", "178.137.86.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("35470", "10", "2016-08-10 22:52:25", "178.137.86.253", "14");
INSERT INTO `wp_gf_form_view` VALUES("35471", "3", "2016-08-10 23:06:04", "62.210.83.87", "51");
INSERT INTO `wp_gf_form_view` VALUES("35472", "10", "2016-08-10 23:06:05", "62.210.83.87", "13");
INSERT INTO `wp_gf_form_view` VALUES("35473", "2", "2016-08-11 00:02:58", "202.46.50.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("35474", "3", "2016-08-11 00:02:59", "202.46.50.180", "32");
INSERT INTO `wp_gf_form_view` VALUES("35475", "10", "2016-08-11 00:03:00", "202.46.50.180", "8");
INSERT INTO `wp_gf_form_view` VALUES("35476", "3", "2016-08-11 01:30:01", "66.249.79.152", "16");
INSERT INTO `wp_gf_form_view` VALUES("35477", "10", "2016-08-11 01:30:03", "66.249.79.152", "4");
INSERT INTO `wp_gf_form_view` VALUES("35478", "3", "2016-08-11 02:12:47", "202.46.54.168", "17");
INSERT INTO `wp_gf_form_view` VALUES("35479", "10", "2016-08-11 02:12:47", "202.46.54.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("35480", "3", "2016-08-11 03:33:29", "68.180.229.121", "32");
INSERT INTO `wp_gf_form_view` VALUES("35481", "10", "2016-08-11 03:33:30", "68.180.229.121", "8");
INSERT INTO `wp_gf_form_view` VALUES("35482", "3", "2016-08-11 04:23:31", "207.46.13.56", "25");
INSERT INTO `wp_gf_form_view` VALUES("35483", "10", "2016-08-11 04:23:32", "207.46.13.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("35484", "3", "2016-08-11 05:10:24", "46.119.112.163", "61");
INSERT INTO `wp_gf_form_view` VALUES("35485", "3", "2016-08-11 05:10:24", "46.119.112.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("35486", "3", "2016-08-11 05:10:24", "46.119.112.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("35487", "10", "2016-08-11 05:10:26", "46.119.112.163", "13");
INSERT INTO `wp_gf_form_view` VALUES("35488", "10", "2016-08-11 05:10:26", "46.119.112.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("35489", "3", "2016-08-11 06:26:28", "66.249.79.152", "41");
INSERT INTO `wp_gf_form_view` VALUES("35490", "10", "2016-08-11 06:26:29", "66.249.79.152", "10");
INSERT INTO `wp_gf_form_view` VALUES("35491", "8", "2016-08-11 06:42:33", "157.55.39.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("35492", "3", "2016-08-11 07:20:04", "188.208.6.236", "42");
INSERT INTO `wp_gf_form_view` VALUES("35493", "10", "2016-08-11 07:20:04", "188.208.6.236", "10");
INSERT INTO `wp_gf_form_view` VALUES("35494", "11", "2016-08-11 07:27:30", "174.129.237.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("35495", "3", "2016-08-11 08:03:25", "46.118.158.81", "73");
INSERT INTO `wp_gf_form_view` VALUES("35496", "3", "2016-08-11 08:03:25", "46.118.158.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("35497", "3", "2016-08-11 08:03:25", "46.118.158.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("35498", "10", "2016-08-11 08:03:31", "46.118.158.81", "16");
INSERT INTO `wp_gf_form_view` VALUES("35499", "10", "2016-08-11 08:03:31", "46.118.158.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("35500", "10", "2016-08-11 08:03:31", "46.118.158.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("35501", "3", "2016-08-11 09:10:03", "51.255.65.14", "53");
INSERT INTO `wp_gf_form_view` VALUES("35502", "10", "2016-08-11 09:10:04", "51.255.65.14", "12");
INSERT INTO `wp_gf_form_view` VALUES("35503", "3", "2016-08-11 10:29:31", "66.249.79.152", "9");
INSERT INTO `wp_gf_form_view` VALUES("35504", "10", "2016-08-11 10:29:34", "66.249.79.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("35505", "3", "2016-08-11 11:34:45", "66.249.79.152", "32");
INSERT INTO `wp_gf_form_view` VALUES("35506", "10", "2016-08-11 11:34:46", "66.249.79.152", "8");
INSERT INTO `wp_gf_form_view` VALUES("35507", "3", "2016-08-11 12:02:42", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("35508", "10", "2016-08-11 12:02:42", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("35509", "3", "2016-08-11 13:30:44", "68.180.229.121", "8");
INSERT INTO `wp_gf_form_view` VALUES("35510", "10", "2016-08-11 13:30:46", "68.180.229.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("35511", "1", "2016-08-11 14:05:13", "5.135.176.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("35512", "3", "2016-08-11 14:05:14", "5.135.176.41", "52");
INSERT INTO `wp_gf_form_view` VALUES("35513", "10", "2016-08-11 14:05:15", "5.135.176.41", "14");
INSERT INTO `wp_gf_form_view` VALUES("35514", "3", "2016-08-11 15:48:35", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("35515", "10", "2016-08-11 15:48:37", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("35516", "3", "2016-08-11 16:30:28", "46.118.158.81", "27");
INSERT INTO `wp_gf_form_view` VALUES("35517", "10", "2016-08-11 16:30:33", "46.118.158.81", "6");
INSERT INTO `wp_gf_form_view` VALUES("35518", "10", "2016-08-11 17:10:59", "51.255.65.7", "17");
INSERT INTO `wp_gf_form_view` VALUES("35519", "3", "2016-08-11 17:11:06", "66.249.79.148", "64");
INSERT INTO `wp_gf_form_view` VALUES("35520", "1", "2016-08-11 17:48:04", "157.55.39.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("35521", "2", "2016-08-11 18:02:56", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("35522", "3", "2016-08-11 18:02:56", "66.249.79.148", "41");
INSERT INTO `wp_gf_form_view` VALUES("35523", "10", "2016-08-11 18:02:57", "66.249.79.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("35524", "3", "2016-08-11 19:11:25", "24.108.4.19", "169");
INSERT INTO `wp_gf_form_view` VALUES("35525", "10", "2016-08-11 19:11:25", "24.108.4.19", "42");
INSERT INTO `wp_gf_form_view` VALUES("35526", "3", "2016-08-11 20:05:36", "66.249.79.148", "79");
INSERT INTO `wp_gf_form_view` VALUES("35527", "10", "2016-08-11 20:05:37", "66.249.79.148", "18");
INSERT INTO `wp_gf_form_view` VALUES("35528", "3", "2016-08-11 21:01:48", "74.91.22.74", "153");
INSERT INTO `wp_gf_form_view` VALUES("35529", "10", "2016-08-11 21:01:50", "74.91.22.74", "39");
INSERT INTO `wp_gf_form_view` VALUES("35530", "2", "2016-08-11 21:53:02", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("35531", "3", "2016-08-11 22:01:03", "74.91.22.74", "26");
INSERT INTO `wp_gf_form_view` VALUES("35532", "10", "2016-08-11 22:01:04", "74.91.22.74", "6");
INSERT INTO `wp_gf_form_view` VALUES("35533", "3", "2016-08-11 23:04:44", "52.43.205.146", "178");
INSERT INTO `wp_gf_form_view` VALUES("35534", "10", "2016-08-11 23:04:49", "52.43.205.146", "43");
INSERT INTO `wp_gf_form_view` VALUES("35535", "10", "2016-08-11 23:04:49", "52.43.205.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("35536", "3", "2016-08-12 00:00:36", "66.249.79.152", "113");
INSERT INTO `wp_gf_form_view` VALUES("35537", "10", "2016-08-12 00:00:37", "66.249.79.152", "28");
INSERT INTO `wp_gf_form_view` VALUES("35538", "3", "2016-08-12 01:00:27", "184.69.167.62", "41");
INSERT INTO `wp_gf_form_view` VALUES("35539", "10", "2016-08-12 01:00:28", "184.69.167.62", "10");
INSERT INTO `wp_gf_form_view` VALUES("35540", "3", "2016-08-12 02:22:47", "68.180.229.121", "79");
INSERT INTO `wp_gf_form_view` VALUES("35541", "10", "2016-08-12 02:22:48", "68.180.229.121", "18");
INSERT INTO `wp_gf_form_view` VALUES("35542", "3", "2016-08-12 03:30:09", "207.216.15.84", "34");
INSERT INTO `wp_gf_form_view` VALUES("35543", "10", "2016-08-12 03:30:10", "207.216.15.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("35544", "3", "2016-08-12 04:03:52", "66.249.79.156", "41");
INSERT INTO `wp_gf_form_view` VALUES("35545", "10", "2016-08-12 04:03:56", "66.249.79.156", "11");
INSERT INTO `wp_gf_form_view` VALUES("35546", "1", "2016-08-12 05:12:07", "180.169.19.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("35547", "3", "2016-08-12 05:12:08", "180.169.19.170", "34");
INSERT INTO `wp_gf_form_view` VALUES("35548", "10", "2016-08-12 05:12:12", "180.169.19.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("35549", "2", "2016-08-12 05:23:15", "202.46.52.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("35550", "3", "2016-08-12 07:03:45", "202.46.57.73", "35");
INSERT INTO `wp_gf_form_view` VALUES("35551", "10", "2016-08-12 07:03:48", "202.46.57.73", "8");
INSERT INTO `wp_gf_form_view` VALUES("35552", "3", "2016-08-12 08:40:35", "157.55.39.88", "8");
INSERT INTO `wp_gf_form_view` VALUES("35553", "10", "2016-08-12 08:40:36", "157.55.39.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("35554", "3", "2016-08-12 09:46:18", "202.46.51.158", "8");
INSERT INTO `wp_gf_form_view` VALUES("35555", "10", "2016-08-12 09:46:23", "202.46.51.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("35556", "10", "2016-08-12 10:05:53", "157.55.39.88", "10");
INSERT INTO `wp_gf_form_view` VALUES("35557", "3", "2016-08-12 10:05:53", "157.55.39.88", "32");
INSERT INTO `wp_gf_form_view` VALUES("35558", "3", "2016-08-12 11:46:00", "157.55.39.88", "9");
INSERT INTO `wp_gf_form_view` VALUES("35559", "10", "2016-08-12 11:46:01", "157.55.39.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("35560", "3", "2016-08-12 12:08:22", "46.118.158.81", "116");
INSERT INTO `wp_gf_form_view` VALUES("35561", "10", "2016-08-12 12:08:23", "46.118.158.81", "28");
INSERT INTO `wp_gf_form_view` VALUES("35562", "9", "2016-08-12 12:18:11", "157.55.39.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("35563", "3", "2016-08-12 13:00:43", "91.200.12.136", "65");
INSERT INTO `wp_gf_form_view` VALUES("35564", "10", "2016-08-12 13:00:43", "91.200.12.136", "16");
INSERT INTO `wp_gf_form_view` VALUES("35565", "3", "2016-08-12 14:11:22", "194.187.170.105", "46");
INSERT INTO `wp_gf_form_view` VALUES("35566", "10", "2016-08-12 14:11:25", "194.187.170.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("35567", "1", "2016-08-12 14:46:35", "203.186.231.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("35568", "3", "2016-08-12 15:04:32", "68.180.229.121", "9");
INSERT INTO `wp_gf_form_view` VALUES("35569", "10", "2016-08-12 15:04:34", "68.180.229.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("35570", "3", "2016-08-12 16:27:43", "157.55.39.78", "48");
INSERT INTO `wp_gf_form_view` VALUES("35571", "10", "2016-08-12 16:27:47", "157.55.39.78", "12");
INSERT INTO `wp_gf_form_view` VALUES("35572", "3", "2016-08-12 17:12:44", "202.46.50.125", "41");
INSERT INTO `wp_gf_form_view` VALUES("35573", "10", "2016-08-12 17:12:44", "202.46.50.125", "10");
INSERT INTO `wp_gf_form_view` VALUES("35574", "3", "2016-08-12 18:19:42", "202.46.51.185", "9");
INSERT INTO `wp_gf_form_view` VALUES("35575", "10", "2016-08-12 18:19:42", "202.46.51.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("35576", "3", "2016-08-12 19:00:00", "207.46.13.56", "638");
INSERT INTO `wp_gf_form_view` VALUES("35577", "10", "2016-08-12 19:00:00", "207.46.13.56", "170");
INSERT INTO `wp_gf_form_view` VALUES("35578", "12", "2016-08-12 19:00:05", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("35579", "7", "2016-08-12 19:00:38", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("35580", "9", "2016-08-12 19:00:57", "157.55.39.78", "2");
INSERT INTO `wp_gf_form_view` VALUES("35581", "8", "2016-08-12 19:02:06", "207.46.13.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("35582", "3", "2016-08-12 20:21:23", "54.197.9.96", "8");
INSERT INTO `wp_gf_form_view` VALUES("35583", "10", "2016-08-12 20:21:25", "54.197.9.96", "3");
INSERT INTO `wp_gf_form_view` VALUES("35584", "3", "2016-08-12 21:06:55", "207.46.13.56", "50");
INSERT INTO `wp_gf_form_view` VALUES("35585", "10", "2016-08-12 21:07:00", "207.46.13.56", "12");
INSERT INTO `wp_gf_form_view` VALUES("35586", "3", "2016-08-12 22:00:58", "192.243.55.129", "24");
INSERT INTO `wp_gf_form_view` VALUES("35587", "10", "2016-08-12 22:00:58", "192.243.55.129", "7");
INSERT INTO `wp_gf_form_view` VALUES("35588", "10", "2016-08-12 23:04:58", "202.46.52.152", "15");
INSERT INTO `wp_gf_form_view` VALUES("35589", "3", "2016-08-12 23:04:59", "202.46.52.152", "61");
INSERT INTO `wp_gf_form_view` VALUES("35590", "8", "2016-08-13 01:12:34", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("35591", "3", "2016-08-13 01:12:37", "66.249.79.152", "43");
INSERT INTO `wp_gf_form_view` VALUES("35592", "10", "2016-08-13 01:12:37", "66.249.79.152", "10");
INSERT INTO `wp_gf_form_view` VALUES("35593", "3", "2016-08-13 02:08:07", "66.249.79.148", "32");
INSERT INTO `wp_gf_form_view` VALUES("35594", "10", "2016-08-13 02:08:09", "66.249.79.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("35595", "3", "2016-08-13 03:15:58", "142.0.41.2", "43");
INSERT INTO `wp_gf_form_view` VALUES("35596", "10", "2016-08-13 03:15:59", "142.0.41.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("35597", "10", "2016-08-13 04:14:17", "66.249.79.156", "15");
INSERT INTO `wp_gf_form_view` VALUES("35598", "3", "2016-08-13 04:14:18", "66.249.79.156", "49");
INSERT INTO `wp_gf_form_view` VALUES("35599", "3", "2016-08-13 05:01:19", "66.249.79.152", "17");
INSERT INTO `wp_gf_form_view` VALUES("35600", "10", "2016-08-13 05:01:19", "66.249.79.152", "12");
INSERT INTO `wp_gf_form_view` VALUES("35601", "3", "2016-08-13 06:42:13", "202.46.48.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("35602", "10", "2016-08-13 06:42:14", "202.46.48.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("35603", "10", "2016-08-13 07:06:42", "207.46.13.139", "7");
INSERT INTO `wp_gf_form_view` VALUES("35604", "3", "2016-08-13 07:06:42", "207.46.13.139", "25");
INSERT INTO `wp_gf_form_view` VALUES("35605", "8", "2016-08-13 08:36:31", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("35606", "3", "2016-08-13 08:36:33", "68.180.229.121", "32");
INSERT INTO `wp_gf_form_view` VALUES("35607", "10", "2016-08-13 08:36:34", "68.180.229.121", "8");
INSERT INTO `wp_gf_form_view` VALUES("35608", "3", "2016-08-13 09:07:22", "66.249.79.156", "113");
INSERT INTO `wp_gf_form_view` VALUES("35609", "10", "2016-08-13 09:07:23", "66.249.79.156", "28");
INSERT INTO `wp_gf_form_view` VALUES("35610", "3", "2016-08-13 10:04:06", "66.249.79.152", "660");
INSERT INTO `wp_gf_form_view` VALUES("35611", "10", "2016-08-13 10:04:07", "66.249.79.152", "175");
INSERT INTO `wp_gf_form_view` VALUES("35612", "11", "2016-08-13 10:52:28", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("35613", "2", "2016-08-13 10:52:33", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("35614", "12", "2016-08-13 10:54:29", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("35615", "1", "2016-08-13 10:54:52", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("35616", "3", "2016-08-13 11:00:28", "66.249.79.156", "75");
INSERT INTO `wp_gf_form_view` VALUES("35617", "10", "2016-08-13 11:00:29", "66.249.79.156", "20");
INSERT INTO `wp_gf_form_view` VALUES("35618", "3", "2016-08-13 12:08:25", "66.249.79.152", "83");
INSERT INTO `wp_gf_form_view` VALUES("35619", "10", "2016-08-13 12:08:28", "66.249.79.152", "20");
INSERT INTO `wp_gf_form_view` VALUES("35620", "12", "2016-08-13 13:01:08", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("35621", "3", "2016-08-13 13:01:09", "66.249.79.152", "91");
INSERT INTO `wp_gf_form_view` VALUES("35622", "10", "2016-08-13 13:01:09", "66.249.79.152", "22");
INSERT INTO `wp_gf_form_view` VALUES("35623", "3", "2016-08-13 14:13:35", "192.243.55.129", "24");
INSERT INTO `wp_gf_form_view` VALUES("35624", "10", "2016-08-13 14:13:47", "192.243.55.129", "8");
INSERT INTO `wp_gf_form_view` VALUES("35625", "3", "2016-08-13 15:09:34", "66.249.79.152", "108");
INSERT INTO `wp_gf_form_view` VALUES("35626", "10", "2016-08-13 15:09:34", "66.249.79.152", "26");
INSERT INTO `wp_gf_form_view` VALUES("35627", "8", "2016-08-13 15:43:06", "202.46.51.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("35628", "3", "2016-08-13 16:13:58", "46.119.112.163", "107");
INSERT INTO `wp_gf_form_view` VALUES("35629", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("35630", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("35631", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("35632", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("35633", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("35634", "10", "2016-08-13 16:14:02", "46.119.112.163", "32");
INSERT INTO `wp_gf_form_view` VALUES("35635", "3", "2016-08-13 17:32:09", "142.0.41.2", "50");
INSERT INTO `wp_gf_form_view` VALUES("35636", "10", "2016-08-13 17:32:11", "142.0.41.2", "14");
INSERT INTO `wp_gf_form_view` VALUES("35637", "5", "2016-08-13 18:37:31", "194.187.170.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("35638", "3", "2016-08-13 18:37:32", "194.187.170.104", "34");
INSERT INTO `wp_gf_form_view` VALUES("35639", "10", "2016-08-13 18:37:33", "194.187.170.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("35640", "3", "2016-08-13 19:04:03", "66.249.79.156", "41");
INSERT INTO `wp_gf_form_view` VALUES("35641", "10", "2016-08-13 19:04:03", "66.249.79.156", "10");
INSERT INTO `wp_gf_form_view` VALUES("35642", "8", "2016-08-13 19:10:01", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("35643", "3", "2016-08-13 20:00:20", "207.46.13.104", "57");
INSERT INTO `wp_gf_form_view` VALUES("35644", "10", "2016-08-13 20:15:22", "68.180.229.121", "15");
INSERT INTO `wp_gf_form_view` VALUES("35645", "3", "2016-08-13 21:06:41", "66.249.79.156", "297");
INSERT INTO `wp_gf_form_view` VALUES("35646", "10", "2016-08-13 21:06:44", "66.249.79.156", "74");
INSERT INTO `wp_gf_form_view` VALUES("35647", "11", "2016-08-13 21:10:09", "80.14.108.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("35648", "12", "2016-08-13 21:10:48", "80.14.108.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("35649", "2", "2016-08-13 21:11:28", "80.14.108.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("35650", "3", "2016-08-13 22:32:12", "66.249.79.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("35651", "10", "2016-08-13 22:32:14", "66.249.79.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("35652", "3", "2016-08-13 23:01:31", "5.9.112.6", "16");
INSERT INTO `wp_gf_form_view` VALUES("35653", "10", "2016-08-13 23:01:31", "5.9.112.6", "4");
INSERT INTO `wp_gf_form_view` VALUES("35654", "3", "2016-08-14 00:42:38", "66.249.79.148", "17");
INSERT INTO `wp_gf_form_view` VALUES("35655", "10", "2016-08-14 00:42:40", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("35656", "3", "2016-08-14 01:21:18", "192.243.55.132", "33");
INSERT INTO `wp_gf_form_view` VALUES("35657", "10", "2016-08-14 01:21:20", "192.243.55.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("35658", "3", "2016-08-14 02:16:52", "192.243.55.135", "44");
INSERT INTO `wp_gf_form_view` VALUES("35659", "3", "2016-08-14 02:16:52", "46.119.118.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("35660", "10", "2016-08-14 02:16:53", "192.243.55.135", "10");
INSERT INTO `wp_gf_form_view` VALUES("35661", "3", "2016-08-14 03:23:22", "46.119.112.163", "36");
INSERT INTO `wp_gf_form_view` VALUES("35662", "10", "2016-08-14 03:23:25", "46.119.112.163", "8");
INSERT INTO `wp_gf_form_view` VALUES("35663", "3", "2016-08-14 05:50:11", "66.249.66.148", "34");
INSERT INTO `wp_gf_form_view` VALUES("35664", "10", "2016-08-14 05:50:13", "66.249.66.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("35665", "3", "2016-08-14 06:01:35", "66.249.66.144", "59");
INSERT INTO `wp_gf_form_view` VALUES("35666", "10", "2016-08-14 06:01:35", "66.249.66.144", "14");
INSERT INTO `wp_gf_form_view` VALUES("35667", "9", "2016-08-14 06:53:02", "207.46.13.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("35668", "3", "2016-08-14 07:15:36", "157.55.39.78", "35");
INSERT INTO `wp_gf_form_view` VALUES("35669", "10", "2016-08-14 07:15:37", "157.55.39.78", "8");
INSERT INTO `wp_gf_form_view` VALUES("35670", "3", "2016-08-14 08:06:08", "108.180.147.80", "16");
INSERT INTO `wp_gf_form_view` VALUES("35671", "10", "2016-08-14 08:06:09", "108.180.147.80", "4");
INSERT INTO `wp_gf_form_view` VALUES("35672", "3", "2016-08-14 09:02:50", "40.77.167.94", "96");
INSERT INTO `wp_gf_form_view` VALUES("35673", "10", "2016-08-14 09:02:51", "40.77.167.94", "22");
INSERT INTO `wp_gf_form_view` VALUES("35674", "9", "2016-08-14 09:39:48", "207.46.13.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("35675", "3", "2016-08-14 10:47:02", "202.46.53.123", "8");
INSERT INTO `wp_gf_form_view` VALUES("35676", "10", "2016-08-14 10:47:04", "202.46.53.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("35677", "3", "2016-08-14 11:05:57", "40.77.167.52", "117");
INSERT INTO `wp_gf_form_view` VALUES("35678", "10", "2016-08-14 11:05:57", "40.77.167.52", "34");
INSERT INTO `wp_gf_form_view` VALUES("35679", "8", "2016-08-14 11:33:12", "68.180.229.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("35680", "3", "2016-08-14 12:07:58", "66.249.66.148", "251");
INSERT INTO `wp_gf_form_view` VALUES("35681", "10", "2016-08-14 12:07:59", "66.249.66.148", "62");
INSERT INTO `wp_gf_form_view` VALUES("35682", "11", "2016-08-14 12:46:22", "64.235.39.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("35683", "12", "2016-08-14 12:46:48", "64.235.39.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("35684", "2", "2016-08-14 12:47:18", "64.235.39.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("35685", "3", "2016-08-14 13:03:38", "144.76.71.83", "82");
INSERT INTO `wp_gf_form_view` VALUES("35686", "10", "2016-08-14 13:03:39", "144.76.71.83", "20");
INSERT INTO `wp_gf_form_view` VALUES("35687", "10", "2016-08-14 14:20:32", "40.77.167.52", "11");
INSERT INTO `wp_gf_form_view` VALUES("35688", "3", "2016-08-14 14:20:33", "40.77.167.52", "43");
INSERT INTO `wp_gf_form_view` VALUES("35689", "3", "2016-08-14 15:04:00", "192.243.55.134", "57");
INSERT INTO `wp_gf_form_view` VALUES("35690", "10", "2016-08-14 15:04:00", "192.243.55.134", "14");
INSERT INTO `wp_gf_form_view` VALUES("35691", "1", "2016-08-14 15:07:18", "178.32.12.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("35692", "3", "2016-08-14 16:37:36", "37.115.155.85", "68");
INSERT INTO `wp_gf_form_view` VALUES("35693", "10", "2016-08-14 16:37:37", "37.115.155.85", "16");
INSERT INTO `wp_gf_form_view` VALUES("35694", "3", "2016-08-14 17:06:22", "207.46.13.64", "83");
INSERT INTO `wp_gf_form_view` VALUES("35695", "10", "2016-08-14 17:06:22", "207.46.13.64", "20");
INSERT INTO `wp_gf_form_view` VALUES("35696", "3", "2016-08-14 18:45:40", "207.46.13.64", "226");
INSERT INTO `wp_gf_form_view` VALUES("35697", "10", "2016-08-14 18:45:42", "207.46.13.64", "56");
INSERT INTO `wp_gf_form_view` VALUES("35698", "11", "2016-08-14 18:51:20", "199.115.228.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("35699", "12", "2016-08-14 18:52:35", "199.115.228.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("35700", "2", "2016-08-14 18:53:32", "199.115.228.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("35701", "3", "2016-08-14 19:15:39", "40.77.167.94", "25");
INSERT INTO `wp_gf_form_view` VALUES("35702", "10", "2016-08-14 19:15:39", "40.77.167.94", "6");
INSERT INTO `wp_gf_form_view` VALUES("35703", "3", "2016-08-14 20:08:16", "207.46.13.64", "59");
INSERT INTO `wp_gf_form_view` VALUES("35704", "10", "2016-08-14 20:08:18", "207.46.13.64", "12");
INSERT INTO `wp_gf_form_view` VALUES("35705", "1", "2016-08-14 20:48:03", "89.33.71.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("35706", "3", "2016-08-14 21:04:21", "192.243.55.134", "117");
INSERT INTO `wp_gf_form_view` VALUES("35707", "10", "2016-08-14 21:31:04", "68.180.229.121", "28");
INSERT INTO `wp_gf_form_view` VALUES("35708", "2", "2016-08-14 21:46:34", "167.114.172.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("35709", "12", "2016-08-14 21:46:47", "167.114.172.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("35710", "3", "2016-08-14 22:05:04", "207.46.13.64", "73");
INSERT INTO `wp_gf_form_view` VALUES("35711", "10", "2016-08-14 22:05:05", "207.46.13.64", "18");
INSERT INTO `wp_gf_form_view` VALUES("35712", "1", "2016-08-14 22:26:56", "104.168.55.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("35713", "3", "2016-08-14 23:01:39", "96.50.21.88", "81");
INSERT INTO `wp_gf_form_view` VALUES("35714", "3", "2016-08-14 23:01:39", "96.50.21.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("35715", "10", "2016-08-14 23:01:47", "96.50.21.88", "20");
INSERT INTO `wp_gf_form_view` VALUES("35716", "10", "2016-08-14 23:01:47", "96.50.21.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("35717", "11", "2016-08-14 23:04:47", "96.50.21.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("35718", "10", "2016-08-15 00:27:08", "40.77.167.94", "5");
INSERT INTO `wp_gf_form_view` VALUES("35719", "3", "2016-08-15 00:27:09", "40.77.167.94", "17");
INSERT INTO `wp_gf_form_view` VALUES("35720", "3", "2016-08-15 01:04:16", "178.137.86.253", "76");
INSERT INTO `wp_gf_form_view` VALUES("35721", "3", "2016-08-15 01:04:16", "178.137.86.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("35722", "3", "2016-08-15 01:04:16", "178.137.86.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("35723", "10", "2016-08-15 01:04:19", "178.137.86.253", "19");
INSERT INTO `wp_gf_form_view` VALUES("35724", "8", "2016-08-15 01:29:11", "207.46.13.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("35725", "5", "2016-08-15 02:13:44", "40.77.167.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("35726", "3", "2016-08-15 02:13:46", "40.77.167.94", "16");
INSERT INTO `wp_gf_form_view` VALUES("35727", "10", "2016-08-15 02:13:48", "40.77.167.94", "4");
INSERT INTO `wp_gf_form_view` VALUES("35728", "3", "2016-08-15 03:37:43", "66.249.66.148", "32");
INSERT INTO `wp_gf_form_view` VALUES("35729", "10", "2016-08-15 03:37:45", "66.249.66.148", "9");
INSERT INTO `wp_gf_form_view` VALUES("35730", "3", "2016-08-15 04:06:10", "5.9.112.6", "50");
INSERT INTO `wp_gf_form_view` VALUES("35731", "10", "2016-08-15 04:06:11", "5.9.112.6", "12");
INSERT INTO `wp_gf_form_view` VALUES("35732", "6", "2016-08-15 04:08:42", "40.77.167.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("35733", "3", "2016-08-15 05:32:00", "192.243.55.132", "26");
INSERT INTO `wp_gf_form_view` VALUES("35734", "10", "2016-08-15 05:32:01", "192.243.55.132", "6");
INSERT INTO `wp_gf_form_view` VALUES("35735", "3", "2016-08-15 06:11:03", "207.46.13.64", "24");
INSERT INTO `wp_gf_form_view` VALUES("35736", "10", "2016-08-15 06:11:05", "207.46.13.64", "7");
INSERT INTO `wp_gf_form_view` VALUES("35737", "3", "2016-08-15 07:00:13", "66.249.66.148", "91");
INSERT INTO `wp_gf_form_view` VALUES("35738", "10", "2016-08-15 07:00:13", "66.249.66.148", "35");
INSERT INTO `wp_gf_form_view` VALUES("35739", "3", "2016-08-15 08:30:20", "66.249.66.144", "26");
INSERT INTO `wp_gf_form_view` VALUES("35740", "10", "2016-08-15 08:30:22", "66.249.66.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("35741", "3", "2016-08-15 09:08:08", "68.180.229.215", "17");
INSERT INTO `wp_gf_form_view` VALUES("35742", "10", "2016-08-15 09:08:09", "68.180.229.215", "4");
INSERT INTO `wp_gf_form_view` VALUES("35743", "3", "2016-08-15 10:12:00", "207.46.13.22", "95");
INSERT INTO `wp_gf_form_view` VALUES("35744", "10", "2016-08-15 10:12:02", "207.46.13.22", "21");
INSERT INTO `wp_gf_form_view` VALUES("35745", "3", "2016-08-15 11:08:06", "207.46.13.22", "16");
INSERT INTO `wp_gf_form_view` VALUES("35746", "10", "2016-08-15 11:08:07", "207.46.13.22", "4");
INSERT INTO `wp_gf_form_view` VALUES("35747", "1", "2016-08-15 12:02:56", "62.210.111.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("35748", "3", "2016-08-15 12:02:57", "62.210.111.75", "57");
INSERT INTO `wp_gf_form_view` VALUES("35749", "10", "2016-08-15 12:02:58", "62.210.111.75", "16");
INSERT INTO `wp_gf_form_view` VALUES("35750", "3", "2016-08-15 13:06:22", "207.46.13.22", "33");
INSERT INTO `wp_gf_form_view` VALUES("35751", "10", "2016-08-15 13:06:23", "207.46.13.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("35752", "8", "2016-08-15 13:29:55", "66.249.66.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("35753", "3", "2016-08-15 14:01:42", "66.249.66.148", "75");
INSERT INTO `wp_gf_form_view` VALUES("35754", "10", "2016-08-15 14:01:42", "66.249.66.148", "19");
INSERT INTO `wp_gf_form_view` VALUES("35755", "3", "2016-08-15 15:15:39", "66.249.66.144", "93");
INSERT INTO `wp_gf_form_view` VALUES("35756", "10", "2016-08-15 15:15:40", "66.249.66.144", "22");
INSERT INTO `wp_gf_form_view` VALUES("35757", "3", "2016-08-15 16:22:28", "207.46.13.137", "58");
INSERT INTO `wp_gf_form_view` VALUES("35758", "10", "2016-08-15 16:22:45", "5.9.94.207", "14");
INSERT INTO `wp_gf_form_view` VALUES("35759", "10", "2016-08-15 16:22:45", "207.46.13.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("35760", "3", "2016-08-15 17:01:21", "96.50.28.249", "187");
INSERT INTO `wp_gf_form_view` VALUES("35761", "10", "2016-08-15 17:01:22", "96.50.28.249", "50");
INSERT INTO `wp_gf_form_view` VALUES("35762", "1", "2016-08-15 17:07:22", "104.143.27.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("35763", "3", "2016-08-15 18:14:16", "207.46.13.64", "58");
INSERT INTO `wp_gf_form_view` VALUES("35764", "10", "2016-08-15 18:14:18", "207.46.13.64", "14");
INSERT INTO `wp_gf_form_view` VALUES("35765", "3", "2016-08-15 19:05:07", "207.46.13.22", "45");
INSERT INTO `wp_gf_form_view` VALUES("35766", "10", "2016-08-15 19:05:08", "207.46.13.22", "10");
INSERT INTO `wp_gf_form_view` VALUES("35767", "3", "2016-08-15 20:04:14", "192.243.55.130", "40");
INSERT INTO `wp_gf_form_view` VALUES("35768", "10", "2016-08-15 20:04:15", "192.243.55.130", "12");
INSERT INTO `wp_gf_form_view` VALUES("35769", "9", "2016-08-15 20:26:27", "68.180.228.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("35770", "3", "2016-08-15 21:00:58", "142.31.173.37", "99");
INSERT INTO `wp_gf_form_view` VALUES("35771", "10", "2016-08-15 21:00:59", "142.31.173.37", "26");
INSERT INTO `wp_gf_form_view` VALUES("35772", "10", "2016-08-15 22:03:49", "51.255.65.12", "16");
INSERT INTO `wp_gf_form_view` VALUES("35773", "3", "2016-08-15 22:03:49", "51.255.65.12", "59");
INSERT INTO `wp_gf_form_view` VALUES("35774", "10", "2016-08-15 23:03:32", "207.46.13.22", "5");
INSERT INTO `wp_gf_form_view` VALUES("35775", "3", "2016-08-15 23:03:32", "207.46.13.22", "16");
INSERT INTO `wp_gf_form_view` VALUES("35776", "3", "2016-08-16 00:24:58", "164.132.161.64", "33");
INSERT INTO `wp_gf_form_view` VALUES("35777", "10", "2016-08-16 00:24:59", "164.132.161.64", "8");
INSERT INTO `wp_gf_form_view` VALUES("35778", "3", "2016-08-16 01:11:41", "40.77.167.52", "8");
INSERT INTO `wp_gf_form_view` VALUES("35779", "10", "2016-08-16 01:11:44", "40.77.167.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("35780", "3", "2016-08-16 02:22:50", "46.118.158.81", "110");
INSERT INTO `wp_gf_form_view` VALUES("35781", "10", "2016-08-16 02:22:52", "46.118.158.81", "28");
INSERT INTO `wp_gf_form_view` VALUES("35782", "10", "2016-08-16 03:08:22", "66.249.79.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("35783", "3", "2016-08-16 03:08:22", "66.249.79.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("35784", "3", "2016-08-16 04:03:10", "207.46.13.137", "50");
INSERT INTO `wp_gf_form_view` VALUES("35785", "10", "2016-08-16 04:03:11", "207.46.13.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("35786", "8", "2016-08-16 04:22:32", "51.255.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("35787", "3", "2016-08-16 05:04:19", "75.154.240.57", "24");
INSERT INTO `wp_gf_form_view` VALUES("35788", "10", "2016-08-16 05:04:19", "75.154.240.57", "6");
INSERT INTO `wp_gf_form_view` VALUES("35789", "3", "2016-08-16 07:09:03", "207.46.13.64", "44");
INSERT INTO `wp_gf_form_view` VALUES("35790", "10", "2016-08-16 07:09:05", "207.46.13.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("35791", "3", "2016-08-16 08:25:40", "207.46.13.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("35792", "10", "2016-08-16 08:25:44", "207.46.13.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("35793", "3", "2016-08-16 09:42:48", "46.119.116.73", "26");
INSERT INTO `wp_gf_form_view` VALUES("35794", "3", "2016-08-16 09:42:48", "46.119.116.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("35795", "10", "2016-08-16 09:42:54", "46.119.116.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("35796", "3", "2016-08-16 10:06:24", "77.75.79.54", "8");
INSERT INTO `wp_gf_form_view` VALUES("35797", "10", "2016-08-16 10:06:25", "77.75.79.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("35798", "3", "2016-08-16 11:26:37", "46.119.116.252", "82");
INSERT INTO `wp_gf_form_view` VALUES("35799", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35800", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35801", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35802", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35803", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35804", "10", "2016-08-16 11:26:40", "46.119.116.252", "20");
INSERT INTO `wp_gf_form_view` VALUES("35805", "11", "2016-08-16 11:34:23", "151.80.31.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("35806", "3", "2016-08-16 12:15:26", "104.143.28.200", "101");
INSERT INTO `wp_gf_form_view` VALUES("35807", "10", "2016-08-16 12:15:26", "104.143.28.200", "24");
INSERT INTO `wp_gf_form_view` VALUES("35808", "8", "2016-08-16 12:18:51", "207.46.13.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("35809", "5", "2016-08-16 13:06:38", "151.80.31.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("35810", "3", "2016-08-16 13:06:39", "151.80.31.183", "25");
INSERT INTO `wp_gf_form_view` VALUES("35811", "10", "2016-08-16 13:06:44", "151.80.31.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("35812", "3", "2016-08-16 14:40:32", "134.249.65.218", "34");
INSERT INTO `wp_gf_form_view` VALUES("35813", "10", "2016-08-16 14:40:35", "134.249.65.218", "9");
INSERT INTO `wp_gf_form_view` VALUES("35814", "6", "2016-08-16 15:09:02", "68.180.230.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("35815", "3", "2016-08-16 15:09:02", "68.180.230.185", "51");
INSERT INTO `wp_gf_form_view` VALUES("35816", "10", "2016-08-16 15:09:03", "68.180.230.185", "12");
INSERT INTO `wp_gf_form_view` VALUES("35817", "3", "2016-08-16 16:05:46", "46.119.116.73", "113");
INSERT INTO `wp_gf_form_view` VALUES("35818", "10", "2016-08-16 16:05:46", "46.119.116.73", "27");
INSERT INTO `wp_gf_form_view` VALUES("35819", "3", "2016-08-16 17:15:13", "217.69.133.229", "27");
INSERT INTO `wp_gf_form_view` VALUES("35820", "10", "2016-08-16 17:15:16", "217.69.133.229", "4");
INSERT INTO `wp_gf_form_view` VALUES("35821", "10", "2016-08-16 18:08:36", "68.180.230.185", "7");
INSERT INTO `wp_gf_form_view` VALUES("35822", "3", "2016-08-16 18:08:41", "68.180.230.185", "25");
INSERT INTO `wp_gf_form_view` VALUES("35823", "3", "2016-08-16 20:22:34", "68.180.230.185", "25");
INSERT INTO `wp_gf_form_view` VALUES("35824", "10", "2016-08-16 20:22:35", "68.180.230.185", "6");
INSERT INTO `wp_gf_form_view` VALUES("35825", "3", "2016-08-16 21:26:57", "104.143.27.163", "84");
INSERT INTO `wp_gf_form_view` VALUES("35826", "10", "2016-08-16 21:26:59", "104.143.27.163", "20");
INSERT INTO `wp_gf_form_view` VALUES("35827", "3", "2016-08-16 22:05:12", "217.69.133.232", "119");
INSERT INTO `wp_gf_form_view` VALUES("35828", "10", "2016-08-16 22:05:13", "217.69.133.232", "30");
INSERT INTO `wp_gf_form_view` VALUES("35829", "1", "2016-08-16 22:36:46", "178.32.80.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("35830", "12", "2016-08-16 23:41:39", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("35831", "3", "2016-08-16 23:41:47", "217.69.133.232", "23");
INSERT INTO `wp_gf_form_view` VALUES("35832", "3", "2016-08-16 23:41:47", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("35833", "10", "2016-08-16 23:41:47", "217.69.133.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("35834", "10", "2016-08-17 00:38:46", "106.120.160.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("35835", "3", "2016-08-17 00:38:49", "106.120.160.119", "16");
INSERT INTO `wp_gf_form_view` VALUES("35836", "10", "2016-08-17 01:19:04", "217.69.133.230", "15");
INSERT INTO `wp_gf_form_view` VALUES("35837", "3", "2016-08-17 01:19:08", "217.69.133.230", "70");
INSERT INTO `wp_gf_form_view` VALUES("35838", "3", "2016-08-17 02:14:44", "5.9.145.132", "91");
INSERT INTO `wp_gf_form_view` VALUES("35839", "10", "2016-08-17 02:14:54", "5.9.145.132", "20");
INSERT INTO `wp_gf_form_view` VALUES("35840", "7", "2016-08-17 02:53:36", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("35841", "3", "2016-08-17 03:17:35", "207.46.13.64", "33");
INSERT INTO `wp_gf_form_view` VALUES("35842", "10", "2016-08-17 03:17:36", "207.46.13.64", "8");
INSERT INTO `wp_gf_form_view` VALUES("35843", "3", "2016-08-17 04:04:16", "207.46.13.64", "40");
INSERT INTO `wp_gf_form_view` VALUES("35844", "10", "2016-08-17 04:04:17", "207.46.13.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("35845", "3", "2016-08-17 05:00:52", "164.132.161.81", "16");
INSERT INTO `wp_gf_form_view` VALUES("35846", "10", "2016-08-17 05:00:55", "164.132.161.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("35847", "3", "2016-08-17 06:02:21", "202.46.48.144", "49");
INSERT INTO `wp_gf_form_view` VALUES("35848", "10", "2016-08-17 06:02:35", "202.46.48.144", "13");
INSERT INTO `wp_gf_form_view` VALUES("35849", "3", "2016-08-17 07:00:40", "40.77.167.52", "93");
INSERT INTO `wp_gf_form_view` VALUES("35850", "10", "2016-08-17 07:00:41", "40.77.167.52", "22");
INSERT INTO `wp_gf_form_view` VALUES("35851", "11", "2016-08-17 07:42:31", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("35852", "9", "2016-08-17 07:42:54", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("35853", "3", "2016-08-17 08:01:18", "199.21.99.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("35854", "10", "2016-08-17 08:01:18", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("35855", "3", "2016-08-17 09:01:24", "188.215.23.203", "157");
INSERT INTO `wp_gf_form_view` VALUES("35856", "10", "2016-08-17 09:01:25", "188.215.23.203", "38");
INSERT INTO `wp_gf_form_view` VALUES("35857", "12", "2016-08-17 09:07:45", "207.46.13.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("35858", "3", "2016-08-17 10:32:37", "207.46.13.22", "34");
INSERT INTO `wp_gf_form_view` VALUES("35859", "10", "2016-08-17 10:32:40", "207.46.13.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("35860", "6", "2016-08-17 10:53:42", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("35861", "3", "2016-08-17 11:33:56", "51.255.65.5", "17");
INSERT INTO `wp_gf_form_view` VALUES("35862", "10", "2016-08-17 11:34:03", "51.255.65.5", "4");
INSERT INTO `wp_gf_form_view` VALUES("35863", "6", "2016-08-17 12:03:21", "68.180.230.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("35864", "3", "2016-08-17 12:03:21", "68.180.230.185", "58");
INSERT INTO `wp_gf_form_view` VALUES("35865", "10", "2016-08-17 12:03:21", "68.180.230.185", "14");
INSERT INTO `wp_gf_form_view` VALUES("35866", "8", "2016-08-17 12:28:04", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("35867", "3", "2016-08-17 13:00:29", "68.180.230.185", "69");
INSERT INTO `wp_gf_form_view` VALUES("35868", "10", "2016-08-17 13:00:31", "68.180.230.185", "16");
INSERT INTO `wp_gf_form_view` VALUES("35869", "3", "2016-08-17 14:03:38", "68.180.230.185", "44");
INSERT INTO `wp_gf_form_view` VALUES("35870", "10", "2016-08-17 14:03:44", "68.180.230.185", "10");
INSERT INTO `wp_gf_form_view` VALUES("35871", "9", "2016-08-17 14:04:22", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("35872", "3", "2016-08-17 15:31:47", "151.80.31.182", "81");
INSERT INTO `wp_gf_form_view` VALUES("35873", "10", "2016-08-17 15:31:51", "151.80.31.182", "18");
INSERT INTO `wp_gf_form_view` VALUES("35874", "3", "2016-08-17 16:05:16", "68.180.230.185", "26");
INSERT INTO `wp_gf_form_view` VALUES("35875", "10", "2016-08-17 16:05:17", "68.180.230.185", "6");
INSERT INTO `wp_gf_form_view` VALUES("35876", "3", "2016-08-17 17:16:33", "217.69.133.230", "69");
INSERT INTO `wp_gf_form_view` VALUES("35877", "10", "2016-08-17 17:16:35", "217.69.133.230", "16");
INSERT INTO `wp_gf_form_view` VALUES("35878", "3", "2016-08-17 18:19:34", "66.249.79.148", "50");
INSERT INTO `wp_gf_form_view` VALUES("35879", "10", "2016-08-17 18:19:34", "66.249.79.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("35880", "6", "2016-08-17 18:53:10", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("35881", "3", "2016-08-17 19:12:16", "68.180.231.44", "58");
INSERT INTO `wp_gf_form_view` VALUES("35882", "10", "2016-08-17 19:12:17", "68.180.231.44", "14");
INSERT INTO `wp_gf_form_view` VALUES("35883", "3", "2016-08-17 20:07:45", "46.118.159.110", "147");
INSERT INTO `wp_gf_form_view` VALUES("35884", "10", "2016-08-17 20:07:47", "46.118.159.110", "35");
INSERT INTO `wp_gf_form_view` VALUES("35885", "10", "2016-08-17 20:07:47", "46.118.159.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("35886", "3", "2016-08-17 21:00:30", "68.180.231.44", "32");
INSERT INTO `wp_gf_form_view` VALUES("35887", "10", "2016-08-17 21:00:31", "68.180.231.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("35888", "3", "2016-08-17 22:05:11", "217.69.133.230", "126");
INSERT INTO `wp_gf_form_view` VALUES("35889", "10", "2016-08-17 22:05:23", "217.69.133.232", "29");
INSERT INTO `wp_gf_form_view` VALUES("35890", "10", "2016-08-17 22:05:23", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("35891", "6", "2016-08-17 22:06:48", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("35892", "12", "2016-08-17 22:48:04", "164.132.161.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("35893", "3", "2016-08-17 23:15:44", "46.119.117.90", "70");
INSERT INTO `wp_gf_form_view` VALUES("35894", "3", "2016-08-17 23:15:44", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("35895", "3", "2016-08-17 23:15:44", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("35896", "10", "2016-08-17 23:15:49", "46.119.117.90", "14");
INSERT INTO `wp_gf_form_view` VALUES("35897", "3", "2016-08-18 00:04:17", "40.77.167.52", "41");
INSERT INTO `wp_gf_form_view` VALUES("35898", "10", "2016-08-18 00:04:17", "40.77.167.52", "10");
INSERT INTO `wp_gf_form_view` VALUES("35899", "1", "2016-08-18 00:04:36", "104.227.179.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("35900", "3", "2016-08-18 01:16:24", "217.69.133.230", "76");
INSERT INTO `wp_gf_form_view` VALUES("35901", "10", "2016-08-18 01:16:31", "217.69.133.69", "19");
INSERT INTO `wp_gf_form_view` VALUES("35902", "10", "2016-08-18 01:16:31", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("35903", "2", "2016-08-18 01:54:24", "164.132.161.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("35904", "3", "2016-08-18 02:15:27", "66.249.79.148", "68");
INSERT INTO `wp_gf_form_view` VALUES("35905", "10", "2016-08-18 02:15:28", "66.249.79.148", "16");
INSERT INTO `wp_gf_form_view` VALUES("35906", "3", "2016-08-18 04:04:41", "207.46.13.137", "147");
INSERT INTO `wp_gf_form_view` VALUES("35907", "10", "2016-08-18 04:04:43", "207.46.13.137", "28");
INSERT INTO `wp_gf_form_view` VALUES("35908", "3", "2016-08-18 05:48:32", "40.77.167.52", "180");
INSERT INTO `wp_gf_form_view` VALUES("35909", "10", "2016-08-18 05:48:35", "40.77.167.52", "44");
INSERT INTO `wp_gf_form_view` VALUES("35910", "11", "2016-08-18 05:57:01", "45.55.229.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("35911", "12", "2016-08-18 05:57:01", "45.55.229.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("35912", "2", "2016-08-18 05:57:02", "45.55.229.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("35913", "3", "2016-08-18 06:04:42", "217.69.133.228", "34");
INSERT INTO `wp_gf_form_view` VALUES("35914", "10", "2016-08-18 06:04:44", "217.69.133.233", "8");
INSERT INTO `wp_gf_form_view` VALUES("35915", "3", "2016-08-18 07:01:21", "37.156.74.52", "85");
INSERT INTO `wp_gf_form_view` VALUES("35916", "10", "2016-08-18 07:01:21", "37.156.74.52", "20");
INSERT INTO `wp_gf_form_view` VALUES("35917", "3", "2016-08-18 08:20:34", "66.249.79.148", "84");
INSERT INTO `wp_gf_form_view` VALUES("35918", "10", "2016-08-18 08:20:37", "66.249.79.148", "18");
INSERT INTO `wp_gf_form_view` VALUES("35919", "3", "2016-08-18 09:13:40", "202.46.53.156", "421");
INSERT INTO `wp_gf_form_view` VALUES("35920", "10", "2016-08-18 09:13:46", "202.46.53.156", "103");
INSERT INTO `wp_gf_form_view` VALUES("35921", "6", "2016-08-18 09:17:33", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("35922", "2", "2016-08-18 09:23:21", "109.177.4.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("35923", "11", "2016-08-18 09:23:23", "109.177.4.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("35924", "3", "2016-08-18 10:13:12", "134.249.65.218", "68");
INSERT INTO `wp_gf_form_view` VALUES("35925", "3", "2016-08-18 10:13:12", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35926", "3", "2016-08-18 10:13:12", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35927", "10", "2016-08-18 10:13:16", "134.249.65.218", "14");
INSERT INTO `wp_gf_form_view` VALUES("35928", "10", "2016-08-18 10:13:16", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35929", "10", "2016-08-18 10:13:16", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("35930", "9", "2016-08-18 10:52:21", "157.55.39.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("35931", "3", "2016-08-18 11:25:57", "37.156.74.85", "60");
INSERT INTO `wp_gf_form_view` VALUES("35932", "10", "2016-08-18 11:26:01", "37.156.74.85", "14");
INSERT INTO `wp_gf_form_view` VALUES("35933", "3", "2016-08-18 12:05:22", "62.210.162.184", "105");
INSERT INTO `wp_gf_form_view` VALUES("35934", "10", "2016-08-18 12:05:22", "62.210.162.184", "24");
INSERT INTO `wp_gf_form_view` VALUES("35935", "1", "2016-08-18 12:23:44", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("35936", "3", "2016-08-18 13:00:37", "192.243.55.137", "83");
INSERT INTO `wp_gf_form_view` VALUES("35937", "10", "2016-08-18 13:00:37", "192.243.55.137", "20");
INSERT INTO `wp_gf_form_view` VALUES("35938", "3", "2016-08-18 14:05:23", "217.69.133.232", "67");
INSERT INTO `wp_gf_form_view` VALUES("35939", "10", "2016-08-18 14:05:23", "217.69.133.231", "17");
INSERT INTO `wp_gf_form_view` VALUES("35940", "3", "2016-08-18 15:14:58", "164.132.161.44", "58");
INSERT INTO `wp_gf_form_view` VALUES("35941", "10", "2016-08-18 15:14:58", "164.132.161.44", "14");
INSERT INTO `wp_gf_form_view` VALUES("35942", "6", "2016-08-18 15:15:08", "207.46.13.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("35943", "3", "2016-08-18 16:18:54", "68.180.231.44", "34");
INSERT INTO `wp_gf_form_view` VALUES("35944", "10", "2016-08-18 16:18:59", "68.180.231.44", "7");
INSERT INTO `wp_gf_form_view` VALUES("35945", "3", "2016-08-18 17:11:44", "164.132.161.97", "138");
INSERT INTO `wp_gf_form_view` VALUES("35946", "10", "2016-08-18 17:11:47", "164.132.161.97", "37");
INSERT INTO `wp_gf_form_view` VALUES("35947", "3", "2016-08-18 18:01:31", "46.118.159.110", "200");
INSERT INTO `wp_gf_form_view` VALUES("35948", "10", "2016-08-18 18:01:32", "46.118.159.110", "46");
INSERT INTO `wp_gf_form_view` VALUES("35949", "3", "2016-08-18 19:46:09", "157.55.39.5", "16");
INSERT INTO `wp_gf_form_view` VALUES("35950", "10", "2016-08-18 19:46:10", "157.55.39.5", "4");
INSERT INTO `wp_gf_form_view` VALUES("35951", "6", "2016-08-18 20:46:06", "51.255.65.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("35952", "3", "2016-08-18 20:46:10", "51.255.65.56", "17");
INSERT INTO `wp_gf_form_view` VALUES("35953", "10", "2016-08-18 20:46:10", "51.255.65.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("35954", "3", "2016-08-18 21:13:48", "202.46.50.185", "76");
INSERT INTO `wp_gf_form_view` VALUES("35955", "10", "2016-08-18 21:13:53", "202.46.50.185", "16");
INSERT INTO `wp_gf_form_view` VALUES("35956", "3", "2016-08-18 22:13:54", "207.194.133.9", "82");
INSERT INTO `wp_gf_form_view` VALUES("35957", "10", "2016-08-18 22:13:57", "207.194.133.9", "20");
INSERT INTO `wp_gf_form_view` VALUES("35958", "11", "2016-08-18 22:26:17", "68.180.231.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("35959", "3", "2016-08-18 23:09:51", "68.180.231.44", "70");
INSERT INTO `wp_gf_form_view` VALUES("35960", "10", "2016-08-18 23:09:51", "68.180.231.44", "14");
INSERT INTO `wp_gf_form_view` VALUES("35961", "3", "2016-08-19 00:14:23", "220.181.108.158", "25");
INSERT INTO `wp_gf_form_view` VALUES("35962", "10", "2016-08-19 00:14:35", "220.181.108.158", "6");
INSERT INTO `wp_gf_form_view` VALUES("35963", "3", "2016-08-19 01:02:51", "62.210.162.184", "68");
INSERT INTO `wp_gf_form_view` VALUES("35964", "10", "2016-08-19 01:02:51", "62.210.162.184", "16");
INSERT INTO `wp_gf_form_view` VALUES("35965", "3", "2016-08-19 02:06:32", "24.68.17.97", "98");
INSERT INTO `wp_gf_form_view` VALUES("35966", "10", "2016-08-19 02:06:32", "24.68.17.97", "24");
INSERT INTO `wp_gf_form_view` VALUES("35967", "1", "2016-08-19 02:07:31", "107.152.186.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("35968", "2", "2016-08-19 02:50:07", "221.133.42.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("35969", "3", "2016-08-19 03:12:29", "185.53.44.99", "41");
INSERT INTO `wp_gf_form_view` VALUES("35970", "10", "2016-08-19 03:12:31", "185.53.44.99", "10");
INSERT INTO `wp_gf_form_view` VALUES("35971", "9", "2016-08-19 03:46:55", "40.77.167.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("35972", "3", "2016-08-19 04:04:09", "185.53.44.149", "16");
INSERT INTO `wp_gf_form_view` VALUES("35973", "10", "2016-08-19 04:04:10", "185.53.44.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("35974", "3", "2016-08-19 05:04:32", "40.77.167.52", "1607");
INSERT INTO `wp_gf_form_view` VALUES("35975", "10", "2016-08-19 05:04:34", "40.77.167.52", "495");
INSERT INTO `wp_gf_form_view` VALUES("35976", "1", "2016-08-19 05:43:59", "45.55.140.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("35977", "11", "2016-08-19 05:44:25", "45.55.140.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("35978", "6", "2016-08-19 05:51:08", "192.243.55.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("35979", "12", "2016-08-19 05:55:30", "45.55.140.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("35980", "3", "2016-08-19 06:00:25", "45.55.140.153", "3238");
INSERT INTO `wp_gf_form_view` VALUES("35981", "10", "2016-08-19 06:00:27", "45.55.140.153", "894");
INSERT INTO `wp_gf_form_view` VALUES("35982", "6", "2016-08-19 06:04:45", "45.55.140.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("35983", "9", "2016-08-19 06:13:45", "45.55.140.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("35984", "2", "2016-08-19 06:48:06", "45.55.140.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("35985", "3", "2016-08-19 07:00:02", "45.55.140.153", "321");
INSERT INTO `wp_gf_form_view` VALUES("35986", "10", "2016-08-19 07:00:04", "45.55.140.153", "95");
INSERT INTO `wp_gf_form_view` VALUES("35987", "8", "2016-08-19 07:01:52", "45.55.140.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("35988", "9", "2016-08-19 07:07:40", "157.55.39.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("35989", "6", "2016-08-19 07:28:10", "207.46.13.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("35990", "3", "2016-08-19 08:14:23", "46.119.116.252", "41");
INSERT INTO `wp_gf_form_view` VALUES("35991", "3", "2016-08-19 08:14:23", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35992", "3", "2016-08-19 08:14:23", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35993", "10", "2016-08-19 08:14:26", "46.119.116.252", "8");
INSERT INTO `wp_gf_form_view` VALUES("35994", "10", "2016-08-19 08:14:26", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35995", "10", "2016-08-19 08:14:26", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("35996", "6", "2016-08-19 09:05:28", "207.46.13.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("35997", "3", "2016-08-19 09:05:29", "207.46.13.137", "98");
INSERT INTO `wp_gf_form_view` VALUES("35998", "10", "2016-08-19 09:05:29", "207.46.13.137", "34");
INSERT INTO `wp_gf_form_view` VALUES("35999", "2", "2016-08-19 09:25:17", "188.166.19.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("36000", "3", "2016-08-19 10:08:52", "157.55.39.5", "141");
INSERT INTO `wp_gf_form_view` VALUES("36001", "10", "2016-08-19 10:08:54", "157.55.39.5", "32");
INSERT INTO `wp_gf_form_view` VALUES("36002", "1", "2016-08-19 10:15:08", "192.243.55.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("36003", "3", "2016-08-19 11:06:59", "68.180.231.44", "50");
INSERT INTO `wp_gf_form_view` VALUES("36004", "10", "2016-08-19 11:07:00", "68.180.231.44", "12");
INSERT INTO `wp_gf_form_view` VALUES("36005", "3", "2016-08-19 12:12:20", "51.255.65.38", "52");
INSERT INTO `wp_gf_form_view` VALUES("36006", "10", "2016-08-19 12:12:23", "51.255.65.38", "12");
INSERT INTO `wp_gf_form_view` VALUES("36007", "8", "2016-08-19 12:19:31", "192.243.55.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("36008", "3", "2016-08-19 13:12:55", "202.46.51.84", "51");
INSERT INTO `wp_gf_form_view` VALUES("36009", "10", "2016-08-19 13:12:58", "202.46.51.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("36010", "3", "2016-08-19 14:20:05", "46.119.116.252", "61");
INSERT INTO `wp_gf_form_view` VALUES("36011", "10", "2016-08-19 14:20:06", "46.119.116.252", "14");
INSERT INTO `wp_gf_form_view` VALUES("36012", "3", "2016-08-19 15:49:08", "192.243.55.135", "9");
INSERT INTO `wp_gf_form_view` VALUES("36013", "10", "2016-08-19 15:49:11", "192.243.55.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("36014", "3", "2016-08-19 16:16:50", "46.4.32.75", "125");
INSERT INTO `wp_gf_form_view` VALUES("36015", "10", "2016-08-19 16:16:57", "46.4.32.75", "30");
INSERT INTO `wp_gf_form_view` VALUES("36016", "3", "2016-08-19 17:00:35", "46.118.159.110", "110");
INSERT INTO `wp_gf_form_view` VALUES("36017", "10", "2016-08-19 17:00:39", "46.118.159.110", "23");
INSERT INTO `wp_gf_form_view` VALUES("36018", "10", "2016-08-19 17:00:39", "46.118.159.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("36019", "11", "2016-08-19 17:27:58", "192.243.55.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("36020", "3", "2016-08-19 18:26:53", "96.54.213.145", "90");
INSERT INTO `wp_gf_form_view` VALUES("36021", "10", "2016-08-19 18:26:57", "96.54.213.145", "23");
INSERT INTO `wp_gf_form_view` VALUES("36022", "1", "2016-08-19 18:38:14", "96.54.213.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("36023", "3", "2016-08-19 19:00:14", "207.46.13.64", "85");
INSERT INTO `wp_gf_form_view` VALUES("36024", "10", "2016-08-19 19:00:15", "207.46.13.64", "20");
INSERT INTO `wp_gf_form_view` VALUES("36025", "3", "2016-08-19 20:03:49", "164.132.161.14", "58");
INSERT INTO `wp_gf_form_view` VALUES("36026", "10", "2016-08-19 20:03:52", "164.132.161.14", "14");
INSERT INTO `wp_gf_form_view` VALUES("36027", "5", "2016-08-19 20:39:14", "207.46.13.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("36028", "3", "2016-08-19 21:02:20", "157.55.39.5", "60");
INSERT INTO `wp_gf_form_view` VALUES("36029", "10", "2016-08-19 21:02:21", "157.55.39.5", "16");
INSERT INTO `wp_gf_form_view` VALUES("36030", "3", "2016-08-19 22:07:47", "207.46.13.64", "33");
INSERT INTO `wp_gf_form_view` VALUES("36031", "10", "2016-08-19 22:07:48", "207.46.13.64", "8");
INSERT INTO `wp_gf_form_view` VALUES("36032", "3", "2016-08-19 23:01:35", "157.55.39.5", "45");
INSERT INTO `wp_gf_form_view` VALUES("36033", "10", "2016-08-19 23:01:51", "157.55.39.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("36034", "3", "2016-08-20 00:03:08", "184.66.54.75", "81");
INSERT INTO `wp_gf_form_view` VALUES("36035", "10", "2016-08-20 00:03:09", "184.66.54.75", "18");
INSERT INTO `wp_gf_form_view` VALUES("36036", "10", "2016-08-20 01:33:19", "207.46.13.137", "7");
INSERT INTO `wp_gf_form_view` VALUES("36037", "3", "2016-08-20 01:33:22", "207.46.13.137", "24");
INSERT INTO `wp_gf_form_view` VALUES("36038", "3", "2016-08-20 02:20:42", "207.46.13.137", "24");
INSERT INTO `wp_gf_form_view` VALUES("36039", "10", "2016-08-20 02:20:43", "207.46.13.137", "6");
INSERT INTO `wp_gf_form_view` VALUES("36040", "3", "2016-08-20 03:19:35", "151.80.31.100", "107");
INSERT INTO `wp_gf_form_view` VALUES("36041", "10", "2016-08-20 03:19:37", "151.80.31.100", "24");
INSERT INTO `wp_gf_form_view` VALUES("36042", "3", "2016-08-20 04:32:56", "40.77.167.52", "36");
INSERT INTO `wp_gf_form_view` VALUES("36043", "10", "2016-08-20 04:32:58", "40.77.167.52", "8");
INSERT INTO `wp_gf_form_view` VALUES("36044", "3", "2016-08-20 05:12:15", "66.249.79.112", "42");
INSERT INTO `wp_gf_form_view` VALUES("36045", "10", "2016-08-20 05:12:18", "66.249.79.112", "9");
INSERT INTO `wp_gf_form_view` VALUES("36046", "3", "2016-08-20 06:19:13", "51.255.65.62", "40");
INSERT INTO `wp_gf_form_view` VALUES("36047", "10", "2016-08-20 06:19:17", "51.255.65.62", "10");
INSERT INTO `wp_gf_form_view` VALUES("36048", "11", "2016-08-20 07:09:19", "197.237.212.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("36049", "3", "2016-08-20 07:09:26", "197.237.212.73", "280");
INSERT INTO `wp_gf_form_view` VALUES("36050", "10", "2016-08-20 07:09:26", "197.237.212.73", "69");
INSERT INTO `wp_gf_form_view` VALUES("36051", "12", "2016-08-20 07:11:01", "197.237.212.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("36052", "2", "2016-08-20 07:12:47", "197.237.212.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("36053", "3", "2016-08-20 08:07:05", "51.255.65.14", "56");
INSERT INTO `wp_gf_form_view` VALUES("36054", "10", "2016-08-20 08:07:06", "51.255.65.14", "14");
INSERT INTO `wp_gf_form_view` VALUES("36055", "3", "2016-08-20 09:02:19", "157.55.39.5", "43");
INSERT INTO `wp_gf_form_view` VALUES("36056", "10", "2016-08-20 09:02:22", "157.55.39.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("36057", "3", "2016-08-20 10:40:42", "66.249.79.108", "49");
INSERT INTO `wp_gf_form_view` VALUES("36058", "10", "2016-08-20 10:40:44", "66.249.79.108", "12");
INSERT INTO `wp_gf_form_view` VALUES("36059", "3", "2016-08-20 11:15:33", "202.46.53.165", "82");
INSERT INTO `wp_gf_form_view` VALUES("36060", "10", "2016-08-20 11:15:37", "202.46.53.165", "20");
INSERT INTO `wp_gf_form_view` VALUES("36061", "3", "2016-08-20 12:01:49", "207.46.13.155", "62");
INSERT INTO `wp_gf_form_view` VALUES("36062", "10", "2016-08-20 12:01:49", "207.46.13.155", "14");
INSERT INTO `wp_gf_form_view` VALUES("36063", "1", "2016-08-20 13:04:08", "178.32.12.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("36064", "3", "2016-08-20 13:04:08", "178.32.12.117", "104");
INSERT INTO `wp_gf_form_view` VALUES("36065", "10", "2016-08-20 13:04:08", "178.32.12.117", "26");
INSERT INTO `wp_gf_form_view` VALUES("36066", "3", "2016-08-20 14:45:49", "46.119.117.90", "53");
INSERT INTO `wp_gf_form_view` VALUES("36067", "3", "2016-08-20 14:45:49", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36068", "10", "2016-08-20 14:45:52", "46.119.117.90", "12");
INSERT INTO `wp_gf_form_view` VALUES("36069", "3", "2016-08-20 15:07:28", "202.46.55.60", "87");
INSERT INTO `wp_gf_form_view` VALUES("36070", "10", "2016-08-20 15:07:29", "202.46.55.60", "29");
INSERT INTO `wp_gf_form_view` VALUES("36071", "3", "2016-08-20 16:10:52", "46.118.238.134", "52");
INSERT INTO `wp_gf_form_view` VALUES("36072", "10", "2016-08-20 16:10:52", "46.118.238.134", "13");
INSERT INTO `wp_gf_form_view` VALUES("36073", "6", "2016-08-20 16:29:10", "66.249.79.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("36074", "3", "2016-08-20 17:32:20", "51.255.65.40", "40");
INSERT INTO `wp_gf_form_view` VALUES("36075", "10", "2016-08-20 17:32:21", "51.255.65.40", "10");
INSERT INTO `wp_gf_form_view` VALUES("36076", "3", "2016-08-20 18:01:42", "68.180.231.44", "36");
INSERT INTO `wp_gf_form_view` VALUES("36077", "10", "2016-08-20 18:22:49", "46.119.116.252", "9");
INSERT INTO `wp_gf_form_view` VALUES("36078", "3", "2016-08-20 19:23:30", "51.255.65.43", "45");
INSERT INTO `wp_gf_form_view` VALUES("36079", "10", "2016-08-20 19:23:31", "51.255.65.43", "10");
INSERT INTO `wp_gf_form_view` VALUES("36080", "3", "2016-08-20 20:00:38", "68.180.231.44", "104");
INSERT INTO `wp_gf_form_view` VALUES("36081", "10", "2016-08-20 20:00:38", "68.180.231.44", "24");
INSERT INTO `wp_gf_form_view` VALUES("36082", "3", "2016-08-20 21:16:26", "51.255.65.55", "86");
INSERT INTO `wp_gf_form_view` VALUES("36083", "10", "2016-08-20 21:16:30", "51.255.65.55", "18");
INSERT INTO `wp_gf_form_view` VALUES("36084", "3", "2016-08-20 22:35:49", "66.249.79.108", "49");
INSERT INTO `wp_gf_form_view` VALUES("36085", "10", "2016-08-20 22:35:51", "66.249.79.108", "13");
INSERT INTO `wp_gf_form_view` VALUES("36086", "11", "2016-08-20 22:59:31", "220.181.108.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("36087", "3", "2016-08-20 23:19:34", "157.55.39.5", "70");
INSERT INTO `wp_gf_form_view` VALUES("36088", "10", "2016-08-20 23:19:34", "157.55.39.5", "27");
INSERT INTO `wp_gf_form_view` VALUES("36089", "3", "2016-08-21 00:16:47", "77.75.78.161", "22");
INSERT INTO `wp_gf_form_view` VALUES("36090", "10", "2016-08-21 00:16:49", "77.75.78.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("36091", "3", "2016-08-21 01:16:34", "5.9.145.132", "55");
INSERT INTO `wp_gf_form_view` VALUES("36092", "10", "2016-08-21 01:16:34", "5.9.145.132", "21");
INSERT INTO `wp_gf_form_view` VALUES("36093", "3", "2016-08-21 02:02:10", "46.118.238.134", "40");
INSERT INTO `wp_gf_form_view` VALUES("36094", "10", "2016-08-21 02:02:11", "46.118.238.134", "15");
INSERT INTO `wp_gf_form_view` VALUES("36095", "3", "2016-08-21 03:00:42", "68.180.231.44", "76");
INSERT INTO `wp_gf_form_view` VALUES("36096", "10", "2016-08-21 03:11:39", "165.231.99.11", "31");
INSERT INTO `wp_gf_form_view` VALUES("36097", "11", "2016-08-21 03:55:01", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("36098", "3", "2016-08-21 04:04:25", "202.46.54.187", "68");
INSERT INTO `wp_gf_form_view` VALUES("36099", "10", "2016-08-21 04:04:26", "202.46.54.187", "28");
INSERT INTO `wp_gf_form_view` VALUES("36100", "11", "2016-08-21 04:05:46", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("36101", "3", "2016-08-21 05:41:59", "51.255.65.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("36102", "10", "2016-08-21 05:42:00", "51.255.65.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("36103", "3", "2016-08-21 06:06:08", "199.21.99.202", "22");
INSERT INTO `wp_gf_form_view` VALUES("36104", "10", "2016-08-21 06:06:13", "199.21.99.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("36105", "3", "2016-08-21 07:22:20", "207.46.13.155", "23");
INSERT INTO `wp_gf_form_view` VALUES("36106", "10", "2016-08-21 07:22:22", "207.46.13.155", "9");
INSERT INTO `wp_gf_form_view` VALUES("36107", "3", "2016-08-21 08:45:10", "157.55.39.35", "7");
INSERT INTO `wp_gf_form_view` VALUES("36108", "10", "2016-08-21 08:45:11", "157.55.39.35", "3");
INSERT INTO `wp_gf_form_view` VALUES("36109", "1", "2016-08-21 09:29:49", "107.173.184.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("36110", "3", "2016-08-21 09:29:50", "107.173.184.188", "53");
INSERT INTO `wp_gf_form_view` VALUES("36111", "10", "2016-08-21 09:29:51", "107.173.184.188", "35");
INSERT INTO `wp_gf_form_view` VALUES("36112", "3", "2016-08-21 10:28:10", "220.181.108.100", "8");
INSERT INTO `wp_gf_form_view` VALUES("36113", "10", "2016-08-21 10:28:12", "220.181.108.100", "3");
INSERT INTO `wp_gf_form_view` VALUES("36114", "3", "2016-08-21 11:07:34", "164.132.161.16", "80");
INSERT INTO `wp_gf_form_view` VALUES("36115", "10", "2016-08-21 11:07:40", "164.132.161.16", "30");
INSERT INTO `wp_gf_form_view` VALUES("36116", "2", "2016-08-21 12:14:43", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36117", "3", "2016-08-21 12:14:44", "68.180.231.44", "30");
INSERT INTO `wp_gf_form_view` VALUES("36118", "10", "2016-08-21 12:14:45", "68.180.231.44", "12");
INSERT INTO `wp_gf_form_view` VALUES("36119", "3", "2016-08-21 13:20:24", "89.33.71.188", "30");
INSERT INTO `wp_gf_form_view` VALUES("36120", "10", "2016-08-21 13:20:27", "89.33.71.188", "13");
INSERT INTO `wp_gf_form_view` VALUES("36121", "3", "2016-08-21 14:05:34", "164.132.161.42", "28");
INSERT INTO `wp_gf_form_view` VALUES("36122", "10", "2016-08-21 14:05:35", "164.132.161.42", "12");
INSERT INTO `wp_gf_form_view` VALUES("36123", "3", "2016-08-21 15:10:46", "31.14.251.102", "112");
INSERT INTO `wp_gf_form_view` VALUES("36124", "10", "2016-08-21 15:10:47", "31.14.251.102", "46");
INSERT INTO `wp_gf_form_view` VALUES("36125", "3", "2016-08-21 16:17:02", "188.240.132.165", "45");
INSERT INTO `wp_gf_form_view` VALUES("36126", "10", "2016-08-21 16:17:03", "188.240.132.165", "24");
INSERT INTO `wp_gf_form_view` VALUES("36127", "10", "2016-08-21 17:00:51", "154.20.35.211", "11");
INSERT INTO `wp_gf_form_view` VALUES("36128", "3", "2016-08-21 17:00:51", "154.20.35.211", "21");
INSERT INTO `wp_gf_form_view` VALUES("36129", "8", "2016-08-21 18:18:08", "207.46.13.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("36130", "3", "2016-08-21 18:18:10", "207.46.13.137", "45");
INSERT INTO `wp_gf_form_view` VALUES("36131", "10", "2016-08-21 18:18:10", "207.46.13.137", "18");
INSERT INTO `wp_gf_form_view` VALUES("36132", "3", "2016-08-21 19:13:38", "31.14.251.73", "101");
INSERT INTO `wp_gf_form_view` VALUES("36133", "10", "2016-08-21 19:13:39", "31.14.251.73", "42");
INSERT INTO `wp_gf_form_view` VALUES("36134", "1", "2016-08-21 19:24:53", "24.69.151.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("36135", "3", "2016-08-21 20:19:38", "62.210.162.184", "14");
INSERT INTO `wp_gf_form_view` VALUES("36136", "10", "2016-08-21 20:19:38", "62.210.162.184", "6");
INSERT INTO `wp_gf_form_view` VALUES("36137", "3", "2016-08-21 21:07:56", "75.156.34.203", "36");
INSERT INTO `wp_gf_form_view` VALUES("36138", "10", "2016-08-21 21:07:57", "75.156.34.203", "15");
INSERT INTO `wp_gf_form_view` VALUES("36139", "3", "2016-08-21 22:05:01", "91.235.142.209", "57");
INSERT INTO `wp_gf_form_view` VALUES("36140", "10", "2016-08-21 22:05:01", "91.235.142.209", "24");
INSERT INTO `wp_gf_form_view` VALUES("36141", "1", "2016-08-21 23:37:55", "46.101.23.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("36142", "3", "2016-08-21 23:37:56", "46.101.23.211", "54");
INSERT INTO `wp_gf_form_view` VALUES("36143", "10", "2016-08-21 23:37:58", "46.101.23.211", "24");
INSERT INTO `wp_gf_form_view` VALUES("36144", "3", "2016-08-22 00:29:31", "202.46.58.73", "36");
INSERT INTO `wp_gf_form_view` VALUES("36145", "10", "2016-08-22 00:29:32", "202.46.58.73", "15");
INSERT INTO `wp_gf_form_view` VALUES("36146", "3", "2016-08-22 01:00:59", "184.66.9.62", "119");
INSERT INTO `wp_gf_form_view` VALUES("36147", "10", "2016-08-22 01:00:59", "184.66.9.62", "45");
INSERT INTO `wp_gf_form_view` VALUES("36148", "3", "2016-08-22 02:07:02", "68.180.231.44", "17");
INSERT INTO `wp_gf_form_view` VALUES("36149", "10", "2016-08-22 02:10:45", "46.166.141.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("36150", "3", "2016-08-22 04:10:43", "202.46.50.185", "52");
INSERT INTO `wp_gf_form_view` VALUES("36151", "10", "2016-08-22 04:10:45", "202.46.50.185", "18");
INSERT INTO `wp_gf_form_view` VALUES("36152", "3", "2016-08-22 05:07:20", "46.119.116.73", "52");
INSERT INTO `wp_gf_form_view` VALUES("36153", "3", "2016-08-22 05:07:20", "46.119.116.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("36154", "10", "2016-08-22 05:07:26", "46.119.116.73", "19");
INSERT INTO `wp_gf_form_view` VALUES("36155", "10", "2016-08-22 05:07:26", "46.119.116.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("36156", "10", "2016-08-22 05:07:26", "46.119.116.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("36157", "3", "2016-08-22 06:00:14", "99.199.3.106", "52");
INSERT INTO `wp_gf_form_view` VALUES("36158", "10", "2016-08-22 06:00:15", "99.199.3.106", "21");
INSERT INTO `wp_gf_form_view` VALUES("36159", "3", "2016-08-22 07:18:59", "207.46.13.155", "36");
INSERT INTO `wp_gf_form_view` VALUES("36160", "10", "2016-08-22 07:19:00", "207.46.13.155", "15");
INSERT INTO `wp_gf_form_view` VALUES("36161", "1", "2016-08-22 07:26:38", "112.181.172.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("36162", "3", "2016-08-22 08:08:22", "202.46.55.146", "30");
INSERT INTO `wp_gf_form_view` VALUES("36163", "10", "2016-08-22 08:08:23", "202.46.55.146", "12");
INSERT INTO `wp_gf_form_view` VALUES("36164", "3", "2016-08-22 09:13:20", "151.80.31.153", "105");
INSERT INTO `wp_gf_form_view` VALUES("36165", "10", "2016-08-22 09:13:25", "151.80.31.153", "43");
INSERT INTO `wp_gf_form_view` VALUES("36166", "11", "2016-08-22 09:59:52", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("36167", "3", "2016-08-22 10:00:10", "136.243.36.94", "363");
INSERT INTO `wp_gf_form_view` VALUES("36168", "10", "2016-08-22 10:00:10", "136.243.36.94", "152");
INSERT INTO `wp_gf_form_view` VALUES("36169", "2", "2016-08-22 10:01:13", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("36170", "12", "2016-08-22 10:06:01", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("36171", "3", "2016-08-22 11:03:23", "66.249.79.112", "83");
INSERT INTO `wp_gf_form_view` VALUES("36172", "10", "2016-08-22 11:03:23", "66.249.79.112", "33");
INSERT INTO `wp_gf_form_view` VALUES("36173", "3", "2016-08-22 12:01:43", "46.119.117.90", "16");
INSERT INTO `wp_gf_form_view` VALUES("36174", "10", "2016-08-22 12:01:43", "46.119.117.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("36175", "3", "2016-08-22 13:10:38", "184.66.32.17", "47");
INSERT INTO `wp_gf_form_view` VALUES("36176", "10", "2016-08-22 13:10:40", "184.66.32.17", "20");
INSERT INTO `wp_gf_form_view` VALUES("36177", "3", "2016-08-22 14:18:10", "46.119.116.252", "48");
INSERT INTO `wp_gf_form_view` VALUES("36178", "10", "2016-08-22 14:18:12", "46.119.116.252", "17");
INSERT INTO `wp_gf_form_view` VALUES("36179", "10", "2016-08-22 14:18:12", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("36180", "3", "2016-08-22 16:16:18", "64.180.85.97", "67");
INSERT INTO `wp_gf_form_view` VALUES("36181", "10", "2016-08-22 16:16:31", "64.180.85.97", "27");
INSERT INTO `wp_gf_form_view` VALUES("36182", "3", "2016-08-22 18:30:56", "202.46.54.17", "56");
INSERT INTO `wp_gf_form_view` VALUES("36183", "10", "2016-08-22 18:30:58", "202.46.54.17", "24");
INSERT INTO `wp_gf_form_view` VALUES("36184", "3", "2016-08-22 19:27:05", "207.46.13.41", "15");
INSERT INTO `wp_gf_form_view` VALUES("36185", "10", "2016-08-22 19:27:08", "207.46.13.41", "6");
INSERT INTO `wp_gf_form_view` VALUES("36186", "1", "2016-08-22 20:01:43", "104.227.92.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("36187", "3", "2016-08-22 20:01:45", "104.227.92.188", "57");
INSERT INTO `wp_gf_form_view` VALUES("36188", "10", "2016-08-22 20:01:51", "104.227.92.188", "25");
INSERT INTO `wp_gf_form_view` VALUES("36189", "5", "2016-08-22 20:34:31", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36190", "3", "2016-08-22 21:08:58", "110.10.176.58", "102");
INSERT INTO `wp_gf_form_view` VALUES("36191", "10", "2016-08-22 21:08:59", "110.10.176.58", "42");
INSERT INTO `wp_gf_form_view` VALUES("36192", "1", "2016-08-22 21:52:17", "154.5.209.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("36193", "3", "2016-08-22 22:17:36", "157.55.39.251", "35");
INSERT INTO `wp_gf_form_view` VALUES("36194", "10", "2016-08-22 22:17:37", "157.55.39.251", "15");
INSERT INTO `wp_gf_form_view` VALUES("36195", "11", "2016-08-22 22:49:00", "202.46.52.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("36196", "3", "2016-08-22 23:22:53", "207.46.13.94", "28");
INSERT INTO `wp_gf_form_view` VALUES("36197", "10", "2016-08-22 23:22:58", "207.46.13.94", "13");
INSERT INTO `wp_gf_form_view` VALUES("36198", "3", "2016-08-23 00:07:58", "202.46.54.162", "77");
INSERT INTO `wp_gf_form_view` VALUES("36199", "10", "2016-08-23 00:07:59", "202.46.54.162", "33");
INSERT INTO `wp_gf_form_view` VALUES("36200", "11", "2016-08-23 00:49:27", "68.148.152.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("36201", "3", "2016-08-23 01:35:37", "68.180.231.44", "15");
INSERT INTO `wp_gf_form_view` VALUES("36202", "10", "2016-08-23 01:35:38", "68.180.231.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("36203", "3", "2016-08-23 02:21:22", "31.14.251.73", "46");
INSERT INTO `wp_gf_form_view` VALUES("36204", "10", "2016-08-23 02:21:23", "31.14.251.73", "18");
INSERT INTO `wp_gf_form_view` VALUES("36205", "3", "2016-08-23 03:20:21", "108.180.50.249", "49");
INSERT INTO `wp_gf_form_view` VALUES("36206", "10", "2016-08-23 03:20:21", "108.180.50.249", "21");
INSERT INTO `wp_gf_form_view` VALUES("36207", "1", "2016-08-23 04:28:17", "31.7.187.225", "2");
INSERT INTO `wp_gf_form_view` VALUES("36208", "3", "2016-08-23 04:28:18", "31.7.187.225", "51");
INSERT INTO `wp_gf_form_view` VALUES("36209", "10", "2016-08-23 04:28:20", "31.7.187.225", "21");
INSERT INTO `wp_gf_form_view` VALUES("36210", "3", "2016-08-23 05:01:13", "202.46.56.137", "7");
INSERT INTO `wp_gf_form_view` VALUES("36211", "10", "2016-08-23 05:01:13", "202.46.56.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("36212", "1", "2016-08-23 07:17:08", "87.98.167.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("36213", "3", "2016-08-23 07:17:13", "87.98.167.214", "58");
INSERT INTO `wp_gf_form_view` VALUES("36214", "10", "2016-08-23 07:17:19", "87.98.167.214", "27");
INSERT INTO `wp_gf_form_view` VALUES("36215", "1", "2016-08-23 08:23:25", "202.77.57.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("36216", "3", "2016-08-23 08:23:26", "202.77.57.124", "44");
INSERT INTO `wp_gf_form_view` VALUES("36217", "10", "2016-08-23 08:23:27", "202.77.57.124", "21");
INSERT INTO `wp_gf_form_view` VALUES("36218", "3", "2016-08-23 09:01:08", "200.54.76.230", "47");
INSERT INTO `wp_gf_form_view` VALUES("36219", "10", "2016-08-23 09:01:11", "200.54.76.230", "18");
INSERT INTO `wp_gf_form_view` VALUES("36220", "3", "2016-08-23 10:56:58", "207.46.13.155", "7");
INSERT INTO `wp_gf_form_view` VALUES("36221", "10", "2016-08-23 10:57:00", "207.46.13.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("36222", "3", "2016-08-23 11:03:47", "66.249.79.104", "39");
INSERT INTO `wp_gf_form_view` VALUES("36223", "10", "2016-08-23 11:03:47", "66.249.79.104", "15");
INSERT INTO `wp_gf_form_view` VALUES("36224", "10", "2016-08-23 12:25:31", "68.180.231.44", "35");
INSERT INTO `wp_gf_form_view` VALUES("36225", "3", "2016-08-23 12:25:36", "68.180.231.44", "69");
INSERT INTO `wp_gf_form_view` VALUES("36226", "1", "2016-08-23 12:48:12", "192.240.106.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("36227", "3", "2016-08-23 14:06:46", "52.208.41.185", "21");
INSERT INTO `wp_gf_form_view` VALUES("36228", "10", "2016-08-23 14:06:47", "52.208.41.185", "10");
INSERT INTO `wp_gf_form_view` VALUES("36229", "3", "2016-08-23 15:20:34", "96.54.156.10", "53");
INSERT INTO `wp_gf_form_view` VALUES("36230", "10", "2016-08-23 15:20:37", "96.54.156.10", "23");
INSERT INTO `wp_gf_form_view` VALUES("36231", "3", "2016-08-23 16:10:11", "46.119.116.73", "38");
INSERT INTO `wp_gf_form_view` VALUES("36232", "10", "2016-08-23 16:10:12", "46.119.116.73", "15");
INSERT INTO `wp_gf_form_view` VALUES("36233", "10", "2016-08-23 17:07:10", "207.46.13.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("36234", "3", "2016-08-23 17:07:20", "207.46.13.155", "21");
INSERT INTO `wp_gf_form_view` VALUES("36235", "3", "2016-08-23 18:06:59", "78.129.163.16", "77");
INSERT INTO `wp_gf_form_view` VALUES("36236", "10", "2016-08-23 18:06:59", "78.129.163.16", "33");
INSERT INTO `wp_gf_form_view` VALUES("36237", "3", "2016-08-23 19:02:10", "46.119.116.252", "86");
INSERT INTO `wp_gf_form_view` VALUES("36238", "10", "2016-08-23 19:02:10", "46.119.116.252", "33");
INSERT INTO `wp_gf_form_view` VALUES("36239", "3", "2016-08-23 20:29:53", "46.119.117.90", "122");
INSERT INTO `wp_gf_form_view` VALUES("36240", "3", "2016-08-23 20:29:53", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36241", "10", "2016-08-23 20:29:58", "46.119.117.90", "51");
INSERT INTO `wp_gf_form_view` VALUES("36242", "1", "2016-08-23 20:47:31", "96.50.19.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("36243", "3", "2016-08-23 21:00:38", "96.50.19.46", "98");
INSERT INTO `wp_gf_form_view` VALUES("36244", "10", "2016-08-23 21:00:38", "96.50.19.46", "39");
INSERT INTO `wp_gf_form_view` VALUES("36245", "3", "2016-08-23 22:07:26", "182.255.0.60", "28");
INSERT INTO `wp_gf_form_view` VALUES("36246", "10", "2016-08-23 22:07:28", "182.255.0.60", "14");
INSERT INTO `wp_gf_form_view` VALUES("36247", "3", "2016-08-23 23:28:06", "68.180.231.44", "29");
INSERT INTO `wp_gf_form_view` VALUES("36248", "10", "2016-08-23 23:28:12", "68.180.231.44", "12");
INSERT INTO `wp_gf_form_view` VALUES("36249", "3", "2016-08-24 00:05:59", "192.243.55.130", "21");
INSERT INTO `wp_gf_form_view` VALUES("36250", "10", "2016-08-24 00:05:59", "192.243.55.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("36251", "3", "2016-08-24 01:02:09", "46.119.116.252", "38");
INSERT INTO `wp_gf_form_view` VALUES("36252", "3", "2016-08-24 01:02:09", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("36253", "10", "2016-08-24 01:02:16", "46.119.116.252", "13");
INSERT INTO `wp_gf_form_view` VALUES("36254", "10", "2016-08-24 01:02:16", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("36255", "10", "2016-08-24 01:02:16", "46.119.116.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("36256", "3", "2016-08-24 02:02:30", "108.180.146.91", "70");
INSERT INTO `wp_gf_form_view` VALUES("36257", "10", "2016-08-24 02:02:37", "108.180.146.91", "22");
INSERT INTO `wp_gf_form_view` VALUES("36258", "1", "2016-08-24 02:57:04", "212.83.173.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("36259", "3", "2016-08-24 03:07:39", "46.119.116.252", "52");
INSERT INTO `wp_gf_form_view` VALUES("36260", "10", "2016-08-24 03:07:40", "46.119.116.252", "21");
INSERT INTO `wp_gf_form_view` VALUES("36261", "8", "2016-08-24 03:32:42", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36262", "3", "2016-08-24 04:00:21", "40.77.167.37", "28");
INSERT INTO `wp_gf_form_view` VALUES("36263", "10", "2016-08-24 04:00:22", "40.77.167.37", "13");
INSERT INTO `wp_gf_form_view` VALUES("36264", "3", "2016-08-24 05:04:53", "66.249.79.108", "14");
INSERT INTO `wp_gf_form_view` VALUES("36265", "10", "2016-08-24 05:04:54", "66.249.79.108", "7");
INSERT INTO `wp_gf_form_view` VALUES("36266", "11", "2016-08-24 05:19:00", "192.243.55.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("36267", "3", "2016-08-24 06:08:32", "68.180.231.44", "29");
INSERT INTO `wp_gf_form_view` VALUES("36268", "10", "2016-08-24 06:08:34", "68.180.231.44", "12");
INSERT INTO `wp_gf_form_view` VALUES("36269", "3", "2016-08-24 07:10:56", "46.119.117.90", "50");
INSERT INTO `wp_gf_form_view` VALUES("36270", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36271", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36272", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36273", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36274", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36275", "10", "2016-08-24 07:10:58", "46.119.117.90", "21");
INSERT INTO `wp_gf_form_view` VALUES("36276", "5", "2016-08-24 08:10:26", "77.75.79.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("36277", "3", "2016-08-24 08:10:26", "77.75.79.17", "58");
INSERT INTO `wp_gf_form_view` VALUES("36278", "10", "2016-08-24 08:10:30", "77.75.79.17", "27");
INSERT INTO `wp_gf_form_view` VALUES("36279", "1", "2016-08-24 08:19:38", "87.98.167.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("36280", "1", "2016-08-24 09:05:30", "178.32.80.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("36281", "3", "2016-08-24 09:05:31", "178.32.80.238", "45");
INSERT INTO `wp_gf_form_view` VALUES("36282", "10", "2016-08-24 09:05:31", "178.32.80.238", "21");
INSERT INTO `wp_gf_form_view` VALUES("36283", "3", "2016-08-24 10:07:27", "207.46.13.47", "42");
INSERT INTO `wp_gf_form_view` VALUES("36284", "10", "2016-08-24 10:07:27", "207.46.13.47", "18");
INSERT INTO `wp_gf_form_view` VALUES("36285", "3", "2016-08-24 11:17:57", "77.75.79.95", "28");
INSERT INTO `wp_gf_form_view` VALUES("36286", "10", "2016-08-24 11:18:01", "77.75.79.95", "12");
INSERT INTO `wp_gf_form_view` VALUES("36287", "3", "2016-08-24 12:10:06", "207.46.13.36", "76");
INSERT INTO `wp_gf_form_view` VALUES("36288", "10", "2016-08-24 12:10:07", "207.46.13.36", "30");
INSERT INTO `wp_gf_form_view` VALUES("36289", "3", "2016-08-24 13:10:38", "77.75.79.17", "773");
INSERT INTO `wp_gf_form_view` VALUES("36290", "10", "2016-08-24 13:10:38", "77.75.79.17", "317");
INSERT INTO `wp_gf_form_view` VALUES("36291", "9", "2016-08-24 13:29:55", "207.46.13.47", "4");
INSERT INTO `wp_gf_form_view` VALUES("36292", "8", "2016-08-24 13:30:06", "207.46.13.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("36293", "5", "2016-08-24 13:34:20", "207.46.13.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("36294", "6", "2016-08-24 13:34:30", "207.46.13.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("36295", "3", "2016-08-24 14:04:09", "154.20.41.178", "94");
INSERT INTO `wp_gf_form_view` VALUES("36296", "10", "2016-08-24 14:04:10", "154.20.41.178", "36");
INSERT INTO `wp_gf_form_view` VALUES("36297", "3", "2016-08-24 15:02:13", "96.48.15.59", "56");
INSERT INTO `wp_gf_form_view` VALUES("36298", "10", "2016-08-24 15:02:13", "96.48.15.59", "33");
INSERT INTO `wp_gf_form_view` VALUES("36299", "11", "2016-08-24 15:27:33", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("36300", "3", "2016-08-24 16:10:08", "50.72.54.220", "89");
INSERT INTO `wp_gf_form_view` VALUES("36301", "10", "2016-08-24 16:10:09", "50.72.54.220", "33");
INSERT INTO `wp_gf_form_view` VALUES("36302", "2", "2016-08-24 16:30:55", "192.240.106.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("36303", "3", "2016-08-24 17:20:13", "72.143.226.80", "49");
INSERT INTO `wp_gf_form_view` VALUES("36304", "10", "2016-08-24 17:20:14", "72.143.226.80", "22");
INSERT INTO `wp_gf_form_view` VALUES("36305", "3", "2016-08-24 18:12:34", "77.75.76.160", "58");
INSERT INTO `wp_gf_form_view` VALUES("36306", "10", "2016-08-24 18:12:34", "77.75.76.160", "24");
INSERT INTO `wp_gf_form_view` VALUES("36307", "3", "2016-08-24 19:01:40", "51.255.66.163", "42");
INSERT INTO `wp_gf_form_view` VALUES("36308", "10", "2016-08-24 19:01:41", "51.255.66.163", "18");
INSERT INTO `wp_gf_form_view` VALUES("36309", "3", "2016-08-24 20:14:23", "207.46.13.47", "36");
INSERT INTO `wp_gf_form_view` VALUES("36310", "10", "2016-08-24 20:14:24", "207.46.13.47", "15");
INSERT INTO `wp_gf_form_view` VALUES("36311", "3", "2016-08-24 21:03:36", "46.119.116.252", "322");
INSERT INTO `wp_gf_form_view` VALUES("36312", "10", "2016-08-24 21:03:37", "46.119.116.252", "136");
INSERT INTO `wp_gf_form_view` VALUES("36313", "1", "2016-08-24 21:20:10", "75.157.168.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("36314", "11", "2016-08-24 21:23:22", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("36315", "2", "2016-08-24 21:23:25", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("36316", "12", "2016-08-24 21:45:53", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("36317", "3", "2016-08-24 22:03:36", "24.69.222.3", "45");
INSERT INTO `wp_gf_form_view` VALUES("36318", "10", "2016-08-24 22:03:37", "24.69.222.3", "18");
INSERT INTO `wp_gf_form_view` VALUES("36319", "11", "2016-08-24 22:15:37", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("36320", "3", "2016-08-24 23:33:19", "46.118.159.110", "43");
INSERT INTO `wp_gf_form_view` VALUES("36321", "3", "2016-08-24 23:33:19", "46.118.159.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("36322", "3", "2016-08-24 23:33:19", "46.118.159.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("36323", "10", "2016-08-24 23:33:26", "46.118.159.110", "16");
INSERT INTO `wp_gf_form_view` VALUES("36324", "10", "2016-08-24 23:33:26", "46.118.159.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("36325", "10", "2016-08-24 23:33:26", "46.118.159.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("36326", "3", "2016-08-25 00:06:54", "207.216.68.242", "105");
INSERT INTO `wp_gf_form_view` VALUES("36327", "10", "2016-08-25 00:06:55", "207.216.68.242", "45");
INSERT INTO `wp_gf_form_view` VALUES("36328", "1", "2016-08-25 00:11:42", "66.249.79.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("36329", "2", "2016-08-25 00:59:23", "207.46.13.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("36330", "3", "2016-08-25 01:11:54", "207.194.133.9", "30");
INSERT INTO `wp_gf_form_view` VALUES("36331", "10", "2016-08-25 01:11:55", "207.194.133.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("36332", "3", "2016-08-25 02:14:43", "52.87.23.48", "55");
INSERT INTO `wp_gf_form_view` VALUES("36333", "10", "2016-08-25 02:14:43", "52.87.23.48", "18");
INSERT INTO `wp_gf_form_view` VALUES("36334", "1", "2016-08-25 03:02:41", "154.5.209.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("36335", "3", "2016-08-25 03:02:41", "154.5.209.196", "59");
INSERT INTO `wp_gf_form_view` VALUES("36336", "10", "2016-08-25 03:02:42", "154.5.209.196", "24");
INSERT INTO `wp_gf_form_view` VALUES("36337", "2", "2016-08-25 03:35:00", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("36338", "3", "2016-08-25 04:10:08", "40.77.167.27", "113");
INSERT INTO `wp_gf_form_view` VALUES("36339", "10", "2016-08-25 04:10:09", "40.77.167.27", "53");
INSERT INTO `wp_gf_form_view` VALUES("36340", "1", "2016-08-25 04:21:16", "192.126.168.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("36341", "3", "2016-08-25 05:07:03", "46.119.117.90", "119");
INSERT INTO `wp_gf_form_view` VALUES("36342", "10", "2016-08-25 05:07:04", "46.119.117.90", "48");
INSERT INTO `wp_gf_form_view` VALUES("36343", "11", "2016-08-25 05:53:14", "24.108.50.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("36344", "3", "2016-08-25 06:15:13", "31.210.94.25", "7");
INSERT INTO `wp_gf_form_view` VALUES("36345", "10", "2016-08-25 06:15:19", "31.210.94.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("36346", "3", "2016-08-25 07:33:52", "202.46.49.110", "15");
INSERT INTO `wp_gf_form_view` VALUES("36347", "10", "2016-08-25 07:33:54", "202.46.49.110", "7");
INSERT INTO `wp_gf_form_view` VALUES("36348", "3", "2016-08-25 09:00:12", "68.180.231.44", "15");
INSERT INTO `wp_gf_form_view` VALUES("36349", "10", "2016-08-25 09:00:15", "68.180.231.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("36350", "3", "2016-08-25 10:15:19", "78.142.63.208", "52");
INSERT INTO `wp_gf_form_view` VALUES("36351", "10", "2016-08-25 10:15:21", "78.142.63.208", "21");
INSERT INTO `wp_gf_form_view` VALUES("36352", "8", "2016-08-25 10:50:40", "192.243.55.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("36353", "3", "2016-08-25 11:05:49", "46.119.116.73", "77");
INSERT INTO `wp_gf_form_view` VALUES("36354", "10", "2016-08-25 11:05:49", "46.119.116.73", "31");
INSERT INTO `wp_gf_form_view` VALUES("36355", "1", "2016-08-25 11:26:49", "192.243.55.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("36356", "3", "2016-08-25 12:14:18", "66.249.79.108", "76");
INSERT INTO `wp_gf_form_view` VALUES("36357", "10", "2016-08-25 12:14:20", "66.249.79.108", "28");
INSERT INTO `wp_gf_form_view` VALUES("36358", "3", "2016-08-25 13:11:35", "46.119.117.90", "31");
INSERT INTO `wp_gf_form_view` VALUES("36359", "10", "2016-08-25 13:11:36", "46.119.117.90", "12");
INSERT INTO `wp_gf_form_view` VALUES("36360", "3", "2016-08-25 14:15:32", "52.208.41.185", "69");
INSERT INTO `wp_gf_form_view` VALUES("36361", "10", "2016-08-25 14:15:32", "52.208.41.185", "27");
INSERT INTO `wp_gf_form_view` VALUES("36362", "3", "2016-08-25 15:20:16", "207.46.13.96", "99");
INSERT INTO `wp_gf_form_view` VALUES("36363", "10", "2016-08-25 15:20:22", "207.46.13.96", "42");
INSERT INTO `wp_gf_form_view` VALUES("36364", "1", "2016-08-25 15:42:16", "69.157.5.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("36365", "3", "2016-08-25 16:11:38", "46.119.117.90", "90");
INSERT INTO `wp_gf_form_view` VALUES("36366", "3", "2016-08-25 16:11:38", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36367", "10", "2016-08-25 16:11:39", "46.119.117.90", "35");
INSERT INTO `wp_gf_form_view` VALUES("36368", "10", "2016-08-25 16:11:39", "46.119.117.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36369", "3", "2016-08-25 17:01:02", "96.50.19.46", "95");
INSERT INTO `wp_gf_form_view` VALUES("36370", "10", "2016-08-25 17:01:05", "96.50.19.46", "39");
INSERT INTO `wp_gf_form_view` VALUES("36371", "1", "2016-08-25 17:06:48", "96.50.2.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("36372", "3", "2016-08-25 18:00:37", "163.172.51.123", "74");
INSERT INTO `wp_gf_form_view` VALUES("36373", "10", "2016-08-25 18:00:37", "163.172.51.123", "31");
INSERT INTO `wp_gf_form_view` VALUES("36374", "3", "2016-08-25 19:01:51", "207.46.13.164", "29");
INSERT INTO `wp_gf_form_view` VALUES("36375", "10", "2016-08-25 19:01:52", "207.46.13.164", "13");
INSERT INTO `wp_gf_form_view` VALUES("36376", "3", "2016-08-25 20:23:43", "202.46.49.149", "15");
INSERT INTO `wp_gf_form_view` VALUES("36377", "10", "2016-08-25 20:23:46", "202.46.49.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("36378", "3", "2016-08-25 21:15:15", "192.243.55.130", "79");
INSERT INTO `wp_gf_form_view` VALUES("36379", "10", "2016-08-25 21:15:16", "192.243.55.130", "33");
INSERT INTO `wp_gf_form_view` VALUES("36380", "1", "2016-08-25 21:33:25", "96.50.19.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("36381", "3", "2016-08-25 22:11:00", "207.46.13.96", "50");
INSERT INTO `wp_gf_form_view` VALUES("36382", "10", "2016-08-25 22:11:02", "207.46.13.96", "21");
INSERT INTO `wp_gf_form_view` VALUES("36383", "3", "2016-08-25 23:00:51", "24.68.21.147", "84");
INSERT INTO `wp_gf_form_view` VALUES("36384", "10", "2016-08-25 23:00:51", "24.68.21.147", "38");
INSERT INTO `wp_gf_form_view` VALUES("36385", "6", "2016-08-25 23:45:44", "192.243.55.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("36386", "3", "2016-08-26 00:08:21", "24.108.13.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("36387", "10", "2016-08-26 00:08:21", "24.108.13.133", "15");
INSERT INTO `wp_gf_form_view` VALUES("36388", "3", "2016-08-26 01:18:41", "72.55.191.222", "444");
INSERT INTO `wp_gf_form_view` VALUES("36389", "10", "2016-08-26 01:18:41", "72.55.191.222", "200");
INSERT INTO `wp_gf_form_view` VALUES("36390", "8", "2016-08-26 01:32:44", "207.46.13.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("36391", "7", "2016-08-26 01:32:47", "207.46.13.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("36392", "3", "2016-08-26 02:20:05", "78.142.63.208", "35");
INSERT INTO `wp_gf_form_view` VALUES("36393", "10", "2016-08-26 02:20:07", "78.142.63.208", "15");
INSERT INTO `wp_gf_form_view` VALUES("36394", "3", "2016-08-26 03:03:37", "91.200.12.143", "35");
INSERT INTO `wp_gf_form_view` VALUES("36395", "10", "2016-08-26 03:03:37", "91.200.12.143", "15");
INSERT INTO `wp_gf_form_view` VALUES("36396", "1", "2016-08-26 04:12:30", "66.249.79.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("36397", "3", "2016-08-26 04:12:30", "66.249.79.96", "14");
INSERT INTO `wp_gf_form_view` VALUES("36398", "10", "2016-08-26 04:12:31", "66.249.79.96", "6");
INSERT INTO `wp_gf_form_view` VALUES("36399", "3", "2016-08-26 05:02:52", "77.75.76.161", "53");
INSERT INTO `wp_gf_form_view` VALUES("36400", "10", "2016-08-26 05:02:52", "77.75.76.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("36401", "10", "2016-08-26 06:03:33", "209.52.88.35", "17");
INSERT INTO `wp_gf_form_view` VALUES("36402", "3", "2016-08-26 06:03:33", "209.52.88.35", "35");
INSERT INTO `wp_gf_form_view` VALUES("36403", "3", "2016-08-26 07:10:08", "46.119.116.252", "45");
INSERT INTO `wp_gf_form_view` VALUES("36404", "10", "2016-08-26 07:10:09", "46.119.116.252", "18");
INSERT INTO `wp_gf_form_view` VALUES("36405", "1", "2016-08-26 07:58:58", "192.99.166.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("36406", "3", "2016-08-26 08:19:05", "77.75.79.119", "14");
INSERT INTO `wp_gf_form_view` VALUES("36407", "10", "2016-08-26 08:19:06", "77.75.79.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("36408", "3", "2016-08-26 09:08:38", "66.249.79.108", "61");
INSERT INTO `wp_gf_form_view` VALUES("36409", "10", "2016-08-26 09:08:41", "66.249.79.108", "24");
INSERT INTO `wp_gf_form_view` VALUES("36410", "3", "2016-08-26 10:04:41", "46.118.238.134", "54");
INSERT INTO `wp_gf_form_view` VALUES("36411", "10", "2016-08-26 10:04:42", "46.118.238.134", "24");
INSERT INTO `wp_gf_form_view` VALUES("36412", "12", "2016-08-26 10:52:13", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36413", "3", "2016-08-26 11:59:01", "66.249.79.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("36414", "10", "2016-08-26 11:59:04", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("36415", "1", "2016-08-26 12:25:47", "62.210.80.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("36416", "3", "2016-08-26 12:25:48", "62.210.80.62", "97");
INSERT INTO `wp_gf_form_view` VALUES("36417", "10", "2016-08-26 12:25:50", "62.210.80.62", "39");
INSERT INTO `wp_gf_form_view` VALUES("36418", "3", "2016-08-26 13:02:50", "207.46.13.47", "102");
INSERT INTO `wp_gf_form_view` VALUES("36419", "10", "2016-08-26 13:02:51", "207.46.13.47", "42");
INSERT INTO `wp_gf_form_view` VALUES("36420", "1", "2016-08-26 13:32:50", "192.3.182.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("36421", "11", "2016-08-26 13:58:30", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36422", "2", "2016-08-26 14:23:14", "183.11.51.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36423", "3", "2016-08-26 14:23:15", "183.11.51.90", "151");
INSERT INTO `wp_gf_form_view` VALUES("36424", "10", "2016-08-26 14:23:16", "183.11.51.90", "63");
INSERT INTO `wp_gf_form_view` VALUES("36425", "11", "2016-08-26 14:24:09", "183.11.51.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36426", "3", "2016-08-26 15:03:46", "154.20.41.178", "53");
INSERT INTO `wp_gf_form_view` VALUES("36427", "10", "2016-08-26 15:03:47", "154.20.41.178", "21");
INSERT INTO `wp_gf_form_view` VALUES("36428", "3", "2016-08-26 16:00:15", "96.50.1.173", "21");
INSERT INTO `wp_gf_form_view` VALUES("36429", "10", "2016-08-26 16:00:15", "96.50.1.173", "9");
INSERT INTO `wp_gf_form_view` VALUES("36430", "1", "2016-08-26 16:33:09", "177.220.136.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("36431", "3", "2016-08-26 17:10:24", "184.151.231.148", "85");
INSERT INTO `wp_gf_form_view` VALUES("36432", "10", "2016-08-26 17:10:25", "184.151.231.148", "33");
INSERT INTO `wp_gf_form_view` VALUES("36433", "1", "2016-08-26 18:02:22", "221.176.252.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("36434", "3", "2016-08-26 18:02:23", "221.176.252.34", "42");
INSERT INTO `wp_gf_form_view` VALUES("36435", "10", "2016-08-26 18:02:23", "221.176.252.34", "18");
INSERT INTO `wp_gf_form_view` VALUES("36436", "11", "2016-08-26 18:48:03", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("36437", "3", "2016-08-26 19:07:28", "207.194.133.9", "79");
INSERT INTO `wp_gf_form_view` VALUES("36438", "3", "2016-08-26 19:07:28", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("36439", "10", "2016-08-26 19:07:33", "207.194.133.9", "32");
INSERT INTO `wp_gf_form_view` VALUES("36440", "10", "2016-08-26 19:07:33", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("36441", "3", "2016-08-26 20:07:37", "75.157.27.1", "43");
INSERT INTO `wp_gf_form_view` VALUES("36442", "10", "2016-08-26 20:07:38", "75.157.27.1", "18");
INSERT INTO `wp_gf_form_view` VALUES("36443", "1", "2016-08-26 21:01:36", "192.99.166.236", "4");
INSERT INTO `wp_gf_form_view` VALUES("36444", "3", "2016-08-26 21:01:38", "192.99.166.236", "172");
INSERT INTO `wp_gf_form_view` VALUES("36445", "10", "2016-08-26 21:01:40", "192.99.166.236", "69");
INSERT INTO `wp_gf_form_view` VALUES("36446", "3", "2016-08-26 22:05:46", "104.236.8.231", "158");
INSERT INTO `wp_gf_form_view` VALUES("36447", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36448", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36449", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36450", "11", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36451", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36452", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36453", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36454", "12", "2016-08-26 22:05:47", "104.236.8.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("36455", "2", "2016-08-26 22:05:47", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36456", "10", "2016-08-26 22:05:48", "104.236.8.231", "66");
INSERT INTO `wp_gf_form_view` VALUES("36457", "10", "2016-08-26 22:05:48", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36458", "10", "2016-08-26 22:05:48", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36459", "10", "2016-08-26 22:05:48", "104.236.8.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("36460", "3", "2016-08-26 23:10:13", "5.9.94.207", "165");
INSERT INTO `wp_gf_form_view` VALUES("36461", "3", "2016-08-26 23:10:13", "148.251.54.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36462", "10", "2016-08-26 23:10:21", "5.9.94.207", "69");
INSERT INTO `wp_gf_form_view` VALUES("36463", "1", "2016-08-26 23:14:38", "64.180.21.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("36464", "3", "2016-08-27 00:12:52", "24.69.158.129", "36");
INSERT INTO `wp_gf_form_view` VALUES("36465", "10", "2016-08-27 00:12:55", "24.69.158.129", "15");
INSERT INTO `wp_gf_form_view` VALUES("36466", "8", "2016-08-27 00:50:21", "207.46.13.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("36467", "3", "2016-08-27 01:23:16", "199.21.99.202", "28");
INSERT INTO `wp_gf_form_view` VALUES("36468", "10", "2016-08-27 01:23:17", "199.21.99.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("36469", "3", "2016-08-27 02:28:10", "31.210.94.25", "42");
INSERT INTO `wp_gf_form_view` VALUES("36470", "10", "2016-08-27 02:28:11", "31.210.94.25", "20");
INSERT INTO `wp_gf_form_view` VALUES("36471", "8", "2016-08-27 02:58:51", "207.46.13.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("36472", "3", "2016-08-27 03:13:44", "207.46.13.169", "35");
INSERT INTO `wp_gf_form_view` VALUES("36473", "10", "2016-08-27 03:13:45", "207.46.13.169", "15");
INSERT INTO `wp_gf_form_view` VALUES("36474", "10", "2016-08-27 04:01:26", "68.180.231.44", "244");
INSERT INTO `wp_gf_form_view` VALUES("36475", "3", "2016-08-27 04:01:27", "68.180.231.44", "556");
INSERT INTO `wp_gf_form_view` VALUES("36476", "1", "2016-08-27 04:19:45", "42.115.84.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("36477", "11", "2016-08-27 04:35:48", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("36478", "2", "2016-08-27 04:35:53", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("36479", "12", "2016-08-27 04:37:50", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("36480", "3", "2016-08-27 05:02:36", "207.46.13.169", "63");
INSERT INTO `wp_gf_form_view` VALUES("36481", "10", "2016-08-27 05:02:36", "207.46.13.169", "27");
INSERT INTO `wp_gf_form_view` VALUES("36482", "1", "2016-08-27 06:26:44", "194.1.161.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("36483", "3", "2016-08-27 06:26:45", "194.1.161.87", "39");
INSERT INTO `wp_gf_form_view` VALUES("36484", "10", "2016-08-27 06:26:49", "194.1.161.87", "12");
INSERT INTO `wp_gf_form_view` VALUES("36485", "3", "2016-08-27 07:54:57", "207.46.13.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("36486", "10", "2016-08-27 07:54:59", "207.46.13.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("36487", "3", "2016-08-27 08:08:28", "207.46.13.169", "71");
INSERT INTO `wp_gf_form_view` VALUES("36488", "10", "2016-08-27 08:08:28", "207.46.13.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("36489", "3", "2016-08-27 09:10:08", "77.75.79.101", "88");
INSERT INTO `wp_gf_form_view` VALUES("36490", "10", "2016-08-27 09:10:20", "77.75.79.101", "34");
INSERT INTO `wp_gf_form_view` VALUES("36491", "3", "2016-08-27 10:05:45", "207.241.231.147", "87");
INSERT INTO `wp_gf_form_view` VALUES("36492", "10", "2016-08-27 10:05:45", "207.241.231.147", "36");
INSERT INTO `wp_gf_form_view` VALUES("36493", "3", "2016-08-27 11:04:26", "46.118.238.134", "73");
INSERT INTO `wp_gf_form_view` VALUES("36494", "10", "2016-08-27 11:04:27", "46.118.238.134", "33");
INSERT INTO `wp_gf_form_view` VALUES("36495", "9", "2016-08-27 11:38:51", "207.46.13.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("36496", "3", "2016-08-27 12:08:22", "158.69.52.144", "71");
INSERT INTO `wp_gf_form_view` VALUES("36497", "10", "2016-08-27 12:08:22", "158.69.52.144", "30");
INSERT INTO `wp_gf_form_view` VALUES("36498", "2", "2016-08-27 12:13:59", "207.241.231.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("36499", "3", "2016-08-27 13:33:42", "207.46.13.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("36500", "10", "2016-08-27 13:33:45", "207.46.13.169", "14");
INSERT INTO `wp_gf_form_view` VALUES("36501", "8", "2016-08-27 14:08:08", "207.46.13.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("36502", "3", "2016-08-27 14:08:08", "207.46.13.47", "21");
INSERT INTO `wp_gf_form_view` VALUES("36503", "10", "2016-08-27 14:08:08", "207.46.13.47", "9");
INSERT INTO `wp_gf_form_view` VALUES("36504", "10", "2016-08-27 15:08:03", "157.55.39.224", "67");
INSERT INTO `wp_gf_form_view` VALUES("36505", "3", "2016-08-27 15:08:06", "157.55.39.224", "163");
INSERT INTO `wp_gf_form_view` VALUES("36506", "3", "2016-08-27 16:01:28", "207.241.229.51", "65");
INSERT INTO `wp_gf_form_view` VALUES("36507", "10", "2016-08-27 16:01:28", "207.241.229.51", "27");
INSERT INTO `wp_gf_form_view` VALUES("36508", "3", "2016-08-27 17:13:50", "157.55.39.224", "30");
INSERT INTO `wp_gf_form_view` VALUES("36509", "10", "2016-08-27 17:13:51", "157.55.39.224", "12");
INSERT INTO `wp_gf_form_view` VALUES("36510", "3", "2016-08-27 18:05:12", "157.55.39.224", "39");
INSERT INTO `wp_gf_form_view` VALUES("36511", "10", "2016-08-27 18:05:13", "157.55.39.224", "15");
INSERT INTO `wp_gf_form_view` VALUES("36512", "3", "2016-08-27 19:25:41", "68.180.231.44", "59");
INSERT INTO `wp_gf_form_view` VALUES("36513", "10", "2016-08-27 19:25:42", "68.180.231.44", "24");
INSERT INTO `wp_gf_form_view` VALUES("36514", "3", "2016-08-27 20:09:36", "212.79.106.127", "59");
INSERT INTO `wp_gf_form_view` VALUES("36515", "10", "2016-08-27 20:09:37", "212.79.106.127", "25");
INSERT INTO `wp_gf_form_view` VALUES("36516", "3", "2016-08-27 21:25:16", "207.46.13.169", "29");
INSERT INTO `wp_gf_form_view` VALUES("36517", "10", "2016-08-27 21:25:21", "207.46.13.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("36518", "3", "2016-08-27 22:14:50", "46.118.122.167", "80");
INSERT INTO `wp_gf_form_view` VALUES("36519", "10", "2016-08-27 22:14:54", "46.118.122.167", "32");
INSERT INTO `wp_gf_form_view` VALUES("36520", "10", "2016-08-27 22:14:54", "46.118.122.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("36521", "3", "2016-08-27 23:04:45", "51.255.65.81", "37");
INSERT INTO `wp_gf_form_view` VALUES("36522", "10", "2016-08-27 23:04:45", "51.255.65.81", "15");
INSERT INTO `wp_gf_form_view` VALUES("36523", "3", "2016-08-28 00:08:31", "184.66.148.160", "29");
INSERT INTO `wp_gf_form_view` VALUES("36524", "10", "2016-08-28 00:08:32", "184.66.148.160", "12");
INSERT INTO `wp_gf_form_view` VALUES("36525", "3", "2016-08-28 01:14:03", "51.255.65.53", "79");
INSERT INTO `wp_gf_form_view` VALUES("36526", "10", "2016-08-28 01:14:04", "51.255.65.53", "30");
INSERT INTO `wp_gf_form_view` VALUES("36527", "3", "2016-08-28 02:04:30", "178.137.163.253", "97");
INSERT INTO `wp_gf_form_view` VALUES("36528", "10", "2016-08-28 02:04:30", "178.137.163.253", "39");
INSERT INTO `wp_gf_form_view` VALUES("36529", "9", "2016-08-28 02:19:02", "207.46.13.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("36530", "3", "2016-08-28 03:00:27", "68.180.231.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("36531", "10", "2016-08-28 03:23:53", "40.77.167.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("36532", "3", "2016-08-28 04:10:33", "78.142.63.208", "38");
INSERT INTO `wp_gf_form_view` VALUES("36533", "10", "2016-08-28 04:10:35", "78.142.63.208", "15");
INSERT INTO `wp_gf_form_view` VALUES("36534", "3", "2016-08-28 05:11:59", "66.249.79.112", "83");
INSERT INTO `wp_gf_form_view` VALUES("36535", "10", "2016-08-28 05:12:01", "66.249.79.112", "33");
INSERT INTO `wp_gf_form_view` VALUES("36536", "3", "2016-08-28 06:14:14", "40.77.167.87", "14");
INSERT INTO `wp_gf_form_view` VALUES("36537", "10", "2016-08-28 06:14:15", "40.77.167.87", "6");
INSERT INTO `wp_gf_form_view` VALUES("36538", "3", "2016-08-28 07:35:18", "40.77.167.87", "37");
INSERT INTO `wp_gf_form_view` VALUES("36539", "10", "2016-08-28 07:35:18", "40.77.167.87", "15");
INSERT INTO `wp_gf_form_view` VALUES("36540", "3", "2016-08-28 08:10:54", "66.249.79.108", "56");
INSERT INTO `wp_gf_form_view` VALUES("36541", "10", "2016-08-28 08:10:55", "66.249.79.108", "18");
INSERT INTO `wp_gf_form_view` VALUES("36542", "9", "2016-08-28 08:17:05", "207.46.13.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("36543", "3", "2016-08-28 09:03:54", "207.46.13.161", "66");
INSERT INTO `wp_gf_form_view` VALUES("36544", "10", "2016-08-28 09:03:55", "207.46.13.161", "27");
INSERT INTO `wp_gf_form_view` VALUES("36545", "9", "2016-08-28 09:26:16", "207.46.13.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36546", "3", "2016-08-28 10:06:36", "207.46.13.90", "44");
INSERT INTO `wp_gf_form_view` VALUES("36547", "10", "2016-08-28 10:06:37", "207.46.13.90", "18");
INSERT INTO `wp_gf_form_view` VALUES("36548", "3", "2016-08-28 11:10:14", "207.46.13.177", "30");
INSERT INTO `wp_gf_form_view` VALUES("36549", "10", "2016-08-28 11:10:16", "207.46.13.177", "12");
INSERT INTO `wp_gf_form_view` VALUES("36550", "6", "2016-08-28 11:10:46", "207.46.13.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("36551", "3", "2016-08-28 12:11:10", "195.70.36.115", "54");
INSERT INTO `wp_gf_form_view` VALUES("36552", "10", "2016-08-28 12:11:12", "195.70.36.115", "21");
INSERT INTO `wp_gf_form_view` VALUES("36553", "2", "2016-08-28 13:00:02", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36554", "3", "2016-08-28 13:00:03", "68.180.231.44", "63");
INSERT INTO `wp_gf_form_view` VALUES("36555", "10", "2016-08-28 13:00:03", "68.180.231.44", "24");
INSERT INTO `wp_gf_form_view` VALUES("36556", "3", "2016-08-28 14:00:59", "144.76.153.198", "44");
INSERT INTO `wp_gf_form_view` VALUES("36557", "10", "2016-08-28 14:00:59", "144.76.153.198", "18");
INSERT INTO `wp_gf_form_view` VALUES("36558", "10", "2016-08-28 15:21:47", "207.46.13.90", "31");
INSERT INTO `wp_gf_form_view` VALUES("36559", "3", "2016-08-28 15:21:49", "207.46.13.90", "71");
INSERT INTO `wp_gf_form_view` VALUES("36560", "5", "2016-08-28 15:39:25", "51.255.65.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("36561", "3", "2016-08-28 16:10:15", "68.180.231.44", "59");
INSERT INTO `wp_gf_form_view` VALUES("36562", "10", "2016-08-28 16:17:32", "207.46.13.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("36563", "3", "2016-08-28 17:03:23", "46.118.238.134", "82");
INSERT INTO `wp_gf_form_view` VALUES("36564", "10", "2016-08-28 17:03:23", "46.118.238.134", "33");
INSERT INTO `wp_gf_form_view` VALUES("36565", "3", "2016-08-28 18:08:10", "68.180.231.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("36566", "10", "2016-08-28 18:08:11", "68.180.231.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("36567", "3", "2016-08-28 19:25:14", "68.180.231.44", "52");
INSERT INTO `wp_gf_form_view` VALUES("36568", "10", "2016-08-28 19:25:16", "68.180.231.44", "21");
INSERT INTO `wp_gf_form_view` VALUES("36569", "3", "2016-08-28 20:00:11", "157.55.39.120", "64");
INSERT INTO `wp_gf_form_view` VALUES("36570", "10", "2016-08-28 20:00:11", "157.55.39.120", "28");
INSERT INTO `wp_gf_form_view` VALUES("36571", "3", "2016-08-28 21:06:13", "164.132.161.52", "37");
INSERT INTO `wp_gf_form_view` VALUES("36572", "10", "2016-08-28 21:06:14", "164.132.161.52", "15");
INSERT INTO `wp_gf_form_view` VALUES("36573", "3", "2016-08-28 22:26:37", "66.249.79.112", "14");
INSERT INTO `wp_gf_form_view` VALUES("36574", "10", "2016-08-28 22:26:38", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("36575", "3", "2016-08-28 23:10:02", "164.132.161.82", "28");
INSERT INTO `wp_gf_form_view` VALUES("36576", "10", "2016-08-28 23:10:03", "164.132.161.82", "12");
INSERT INTO `wp_gf_form_view` VALUES("36577", "3", "2016-08-29 00:20:10", "68.180.231.44", "37");
INSERT INTO `wp_gf_form_view` VALUES("36578", "10", "2016-08-29 00:20:11", "68.180.231.44", "15");
INSERT INTO `wp_gf_form_view` VALUES("36579", "3", "2016-08-29 01:14:27", "164.132.161.4", "35");
INSERT INTO `wp_gf_form_view` VALUES("36580", "10", "2016-08-29 01:14:30", "164.132.161.4", "15");
INSERT INTO `wp_gf_form_view` VALUES("36581", "1", "2016-08-29 01:32:02", "207.46.13.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("36582", "3", "2016-08-29 02:04:08", "46.118.157.136", "66");
INSERT INTO `wp_gf_form_view` VALUES("36583", "10", "2016-08-29 02:04:10", "46.118.157.136", "27");
INSERT INTO `wp_gf_form_view` VALUES("36584", "3", "2016-08-29 03:00:39", "199.247.178.212", "42");
INSERT INTO `wp_gf_form_view` VALUES("36585", "10", "2016-08-29 03:00:40", "199.247.178.212", "18");
INSERT INTO `wp_gf_form_view` VALUES("36586", "12", "2016-08-29 03:05:01", "209.52.88.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("36587", "3", "2016-08-29 05:22:53", "157.55.39.58", "98");
INSERT INTO `wp_gf_form_view` VALUES("36588", "10", "2016-08-29 05:22:55", "157.55.39.58", "39");
INSERT INTO `wp_gf_form_view` VALUES("36589", "3", "2016-08-29 06:19:40", "178.137.163.253", "52");
INSERT INTO `wp_gf_form_view` VALUES("36590", "10", "2016-08-29 06:19:48", "178.137.163.253", "21");
INSERT INTO `wp_gf_form_view` VALUES("36591", "1", "2016-08-29 06:52:44", "199.21.115.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("36592", "10", "2016-08-29 07:12:42", "157.55.39.146", "1133");
INSERT INTO `wp_gf_form_view` VALUES("36593", "3", "2016-08-29 07:12:42", "157.55.39.146", "2560");
INSERT INTO `wp_gf_form_view` VALUES("36594", "1", "2016-08-29 07:18:03", "45.55.218.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("36595", "11", "2016-08-29 07:18:17", "45.55.218.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("36596", "12", "2016-08-29 07:28:36", "45.55.218.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("36597", "6", "2016-08-29 07:36:42", "45.55.218.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("36598", "9", "2016-08-29 07:45:26", "45.55.218.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("36599", "3", "2016-08-29 08:00:06", "45.55.218.67", "1855");
INSERT INTO `wp_gf_form_view` VALUES("36600", "10", "2016-08-29 08:00:08", "45.55.218.67", "826");
INSERT INTO `wp_gf_form_view` VALUES("36601", "2", "2016-08-29 08:22:39", "45.55.218.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("36602", "8", "2016-08-29 08:36:16", "45.55.218.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("36603", "12", "2016-08-29 08:59:11", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36604", "3", "2016-08-29 09:04:57", "46.118.122.167", "133");
INSERT INTO `wp_gf_form_view` VALUES("36605", "3", "2016-08-29 09:04:57", "46.118.122.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("36606", "10", "2016-08-29 09:04:58", "46.118.122.167", "51");
INSERT INTO `wp_gf_form_view` VALUES("36607", "3", "2016-08-29 10:04:13", "157.55.39.111", "7");
INSERT INTO `wp_gf_form_view` VALUES("36608", "10", "2016-08-29 10:04:13", "157.55.39.111", "3");
INSERT INTO `wp_gf_form_view` VALUES("36609", "3", "2016-08-29 11:37:15", "66.249.79.108", "50");
INSERT INTO `wp_gf_form_view` VALUES("36610", "10", "2016-08-29 11:37:16", "66.249.79.108", "21");
INSERT INTO `wp_gf_form_view` VALUES("36611", "1", "2016-08-29 11:58:32", "151.237.180.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("36612", "3", "2016-08-29 12:06:16", "220.181.108.150", "32");
INSERT INTO `wp_gf_form_view` VALUES("36613", "10", "2016-08-29 12:06:16", "220.181.108.150", "12");
INSERT INTO `wp_gf_form_view` VALUES("36614", "3", "2016-08-29 13:08:53", "68.180.231.44", "42");
INSERT INTO `wp_gf_form_view` VALUES("36615", "10", "2016-08-29 13:23:00", "66.249.79.108", "15");
INSERT INTO `wp_gf_form_view` VALUES("36616", "3", "2016-08-29 14:05:37", "178.137.94.36", "37");
INSERT INTO `wp_gf_form_view` VALUES("36617", "3", "2016-08-29 14:05:37", "178.137.94.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("36618", "10", "2016-08-29 14:05:38", "178.137.94.36", "13");
INSERT INTO `wp_gf_form_view` VALUES("36619", "10", "2016-08-29 14:05:38", "178.137.94.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("36620", "10", "2016-08-29 14:05:38", "178.137.94.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("36621", "3", "2016-08-29 15:07:52", "66.249.79.112", "58");
INSERT INTO `wp_gf_form_view` VALUES("36622", "10", "2016-08-29 15:07:52", "66.249.79.112", "24");
INSERT INTO `wp_gf_form_view` VALUES("36623", "1", "2016-08-29 15:53:33", "91.108.177.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("36624", "3", "2016-08-29 16:02:52", "164.132.161.84", "29");
INSERT INTO `wp_gf_form_view` VALUES("36625", "10", "2016-08-29 16:02:52", "164.132.161.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("36626", "6", "2016-08-29 16:18:24", "164.132.161.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("36627", "3", "2016-08-29 17:08:15", "51.255.65.27", "47");
INSERT INTO `wp_gf_form_view` VALUES("36628", "10", "2016-08-29 17:08:24", "51.255.65.27", "18");
INSERT INTO `wp_gf_form_view` VALUES("36629", "3", "2016-08-29 18:09:00", "24.108.40.251", "28");
INSERT INTO `wp_gf_form_view` VALUES("36630", "10", "2016-08-29 18:09:01", "24.108.40.251", "12");
INSERT INTO `wp_gf_form_view` VALUES("36631", "10", "2016-08-29 19:04:42", "24.108.4.19", "45");
INSERT INTO `wp_gf_form_view` VALUES("36632", "3", "2016-08-29 19:04:42", "24.108.4.19", "101");
INSERT INTO `wp_gf_form_view` VALUES("36633", "13", "2016-08-29 19:24:37", "46.118.122.167", "9");
INSERT INTO `wp_gf_form_view` VALUES("36634", "13", "2016-08-29 20:05:47", "184.66.10.118", "32");
INSERT INTO `wp_gf_form_view` VALUES("36635", "3", "2016-08-29 20:05:55", "184.66.10.118", "209");
INSERT INTO `wp_gf_form_view` VALUES("36636", "10", "2016-08-29 20:05:56", "184.66.10.118", "57");
INSERT INTO `wp_gf_form_view` VALUES("36637", "3", "2016-08-29 21:14:52", "142.36.242.175", "459");
INSERT INTO `wp_gf_form_view` VALUES("36638", "13", "2016-08-29 21:14:52", "142.36.242.175", "65");
INSERT INTO `wp_gf_form_view` VALUES("36639", "10", "2016-08-29 21:14:52", "142.36.242.175", "144");
INSERT INTO `wp_gf_form_view` VALUES("36640", "8", "2016-08-29 21:41:53", "157.55.39.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("36641", "7", "2016-08-29 21:42:38", "157.55.39.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("36642", "3", "2016-08-29 22:25:21", "66.249.79.112", "8");
INSERT INTO `wp_gf_form_view` VALUES("36643", "13", "2016-08-29 22:25:24", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("36644", "10", "2016-08-29 22:25:24", "66.249.79.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("36645", "13", "2016-08-29 23:01:46", "66.249.79.108", "16");
INSERT INTO `wp_gf_form_view` VALUES("36646", "3", "2016-08-29 23:01:47", "66.249.79.108", "98");
INSERT INTO `wp_gf_form_view` VALUES("36647", "10", "2016-08-29 23:01:48", "66.249.79.108", "28");
INSERT INTO `wp_gf_form_view` VALUES("36648", "1", "2016-08-29 23:27:52", "96.50.26.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("36649", "3", "2016-08-30 00:14:08", "178.137.163.253", "23");
INSERT INTO `wp_gf_form_view` VALUES("36650", "13", "2016-08-30 00:14:11", "178.137.163.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("36651", "10", "2016-08-30 00:14:11", "178.137.163.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("36652", "11", "2016-08-30 00:48:04", "157.55.39.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("36653", "3", "2016-08-30 01:52:21", "46.118.122.167", "24");
INSERT INTO `wp_gf_form_view` VALUES("36654", "13", "2016-08-30 01:52:24", "46.118.122.167", "3");
INSERT INTO `wp_gf_form_view` VALUES("36655", "10", "2016-08-30 01:52:24", "46.118.122.167", "5");
INSERT INTO `wp_gf_form_view` VALUES("36656", "10", "2016-08-30 01:52:24", "46.118.122.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("36657", "3", "2016-08-30 02:12:00", "66.249.79.112", "35");
INSERT INTO `wp_gf_form_view` VALUES("36658", "13", "2016-08-30 02:12:01", "66.249.79.112", "5");
INSERT INTO `wp_gf_form_view` VALUES("36659", "10", "2016-08-30 02:12:01", "66.249.79.112", "10");
INSERT INTO `wp_gf_form_view` VALUES("36660", "1", "2016-08-30 02:30:58", "154.5.209.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("36661", "12", "2016-08-30 03:20:05", "164.132.161.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("36662", "3", "2016-08-30 03:20:15", "164.132.161.81", "21");
INSERT INTO `wp_gf_form_view` VALUES("36663", "13", "2016-08-30 03:20:15", "164.132.161.81", "3");
INSERT INTO `wp_gf_form_view` VALUES("36664", "10", "2016-08-30 03:20:15", "164.132.161.81", "6");
INSERT INTO `wp_gf_form_view` VALUES("36665", "3", "2016-08-30 04:57:41", "54.243.143.219", "7");
INSERT INTO `wp_gf_form_view` VALUES("36666", "13", "2016-08-30 04:57:43", "54.243.143.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("36667", "10", "2016-08-30 04:57:43", "54.243.143.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("36668", "3", "2016-08-30 05:01:56", "68.180.231.44", "86");
INSERT INTO `wp_gf_form_view` VALUES("36669", "13", "2016-08-30 05:01:56", "68.180.231.44", "11");
INSERT INTO `wp_gf_form_view` VALUES("36670", "10", "2016-08-30 05:01:56", "68.180.231.44", "20");
INSERT INTO `wp_gf_form_view` VALUES("36671", "3", "2016-08-30 09:25:44", "68.180.231.44", "7");
INSERT INTO `wp_gf_form_view` VALUES("36672", "13", "2016-08-30 09:25:46", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36673", "10", "2016-08-30 09:25:46", "68.180.231.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("36674", "13", "2016-08-30 10:04:45", "68.180.231.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("36675", "3", "2016-08-30 10:04:46", "68.180.231.44", "58");
INSERT INTO `wp_gf_form_view` VALUES("36676", "10", "2016-08-30 10:04:46", "68.180.231.44", "16");
INSERT INTO `wp_gf_form_view` VALUES("36677", "13", "2016-08-30 11:03:15", "68.180.231.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("36678", "3", "2016-08-30 11:09:54", "178.137.163.253", "39");
INSERT INTO `wp_gf_form_view` VALUES("36679", "10", "2016-08-30 11:09:55", "178.137.163.253", "10");
INSERT INTO `wp_gf_form_view` VALUES("36680", "13", "2016-08-30 13:11:50", "66.249.79.108", "3");
INSERT INTO `wp_gf_form_view` VALUES("36681", "3", "2016-08-30 13:39:40", "157.55.39.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("36682", "10", "2016-08-30 13:39:40", "157.55.39.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("36683", "3", "2016-08-30 14:15:31", "46.118.122.167", "39");
INSERT INTO `wp_gf_form_view` VALUES("36684", "13", "2016-08-30 14:15:34", "46.118.122.167", "5");
INSERT INTO `wp_gf_form_view` VALUES("36685", "10", "2016-08-30 14:15:34", "46.118.122.167", "10");
INSERT INTO `wp_gf_form_view` VALUES("36686", "1", "2016-08-30 15:01:50", "87.98.167.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("36687", "3", "2016-08-30 15:01:50", "87.98.167.214", "124");
INSERT INTO `wp_gf_form_view` VALUES("36688", "13", "2016-08-30 15:01:51", "87.98.167.214", "17");
INSERT INTO `wp_gf_form_view` VALUES("36689", "10", "2016-08-30 15:01:51", "87.98.167.214", "34");
INSERT INTO `wp_gf_form_view` VALUES("36690", "8", "2016-08-30 15:09:13", "51.255.65.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("36691", "2", "2016-08-30 15:19:58", "54.160.223.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("36692", "3", "2016-08-30 16:18:47", "68.180.231.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("36693", "13", "2016-08-30 16:43:14", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("36694", "10", "2016-08-30 16:43:14", "66.249.79.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("36695", "3", "2016-08-30 17:11:15", "154.20.42.114", "35");
INSERT INTO `wp_gf_form_view` VALUES("36696", "13", "2016-08-30 17:11:16", "154.20.42.114", "5");
INSERT INTO `wp_gf_form_view` VALUES("36697", "10", "2016-08-30 17:11:16", "154.20.42.114", "10");
INSERT INTO `wp_gf_form_view` VALUES("36698", "3", "2016-08-30 18:05:07", "96.50.6.244", "194");
INSERT INTO `wp_gf_form_view` VALUES("36699", "13", "2016-08-30 18:05:08", "96.50.6.244", "27");
INSERT INTO `wp_gf_form_view` VALUES("36700", "10", "2016-08-30 18:05:08", "96.50.6.244", "52");
INSERT INTO `wp_gf_form_view` VALUES("36701", "9", "2016-08-30 18:52:45", "164.132.161.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("36702", "3", "2016-08-30 19:06:10", "199.21.99.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("36703", "13", "2016-08-30 19:06:10", "199.21.99.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("36704", "10", "2016-08-30 19:06:11", "199.21.99.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("36705", "11", "2016-08-30 19:38:15", "157.55.39.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("36706", "12", "2016-08-30 20:42:49", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36707", "3", "2016-08-30 20:42:54", "68.180.231.44", "21");
INSERT INTO `wp_gf_form_view` VALUES("36708", "13", "2016-08-30 20:42:54", "68.180.231.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("36709", "10", "2016-08-30 20:42:54", "68.180.231.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("36710", "3", "2016-08-30 21:11:43", "24.69.17.166", "164");
INSERT INTO `wp_gf_form_view` VALUES("36711", "13", "2016-08-30 21:11:43", "24.69.17.166", "22");
INSERT INTO `wp_gf_form_view` VALUES("36712", "10", "2016-08-30 21:11:43", "24.69.17.166", "42");
INSERT INTO `wp_gf_form_view` VALUES("36713", "3", "2016-08-30 22:11:53", "46.118.157.136", "83");
INSERT INTO `wp_gf_form_view` VALUES("36714", "13", "2016-08-30 22:11:53", "46.118.157.136", "11");
INSERT INTO `wp_gf_form_view` VALUES("36715", "10", "2016-08-30 22:11:53", "46.118.157.136", "24");
INSERT INTO `wp_gf_form_view` VALUES("36716", "3", "2016-08-30 23:14:44", "178.137.163.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("36717", "3", "2016-08-30 23:14:44", "178.137.163.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("36718", "13", "2016-08-30 23:14:46", "178.137.163.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("36719", "13", "2016-08-30 23:14:46", "178.137.163.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("36720", "10", "2016-08-30 23:14:46", "178.137.163.253", "7");
INSERT INTO `wp_gf_form_view` VALUES("36721", "10", "2016-08-30 23:14:46", "178.137.163.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("36722", "3", "2016-08-31 00:25:33", "66.249.79.112", "22");
INSERT INTO `wp_gf_form_view` VALUES("36723", "13", "2016-08-31 00:25:35", "66.249.79.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("36724", "10", "2016-08-31 00:25:35", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("36725", "3", "2016-08-31 01:13:04", "68.180.231.44", "30");
INSERT INTO `wp_gf_form_view` VALUES("36726", "13", "2016-08-31 01:13:05", "68.180.231.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("36727", "10", "2016-08-31 01:13:05", "68.180.231.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("36728", "3", "2016-08-31 02:04:05", "178.137.94.36", "60");
INSERT INTO `wp_gf_form_view` VALUES("36729", "13", "2016-08-31 02:04:06", "178.137.94.36", "8");
INSERT INTO `wp_gf_form_view` VALUES("36730", "10", "2016-08-31 02:04:06", "178.137.94.36", "17");
INSERT INTO `wp_gf_form_view` VALUES("36731", "3", "2016-08-31 03:20:24", "24.68.17.97", "44");
INSERT INTO `wp_gf_form_view` VALUES("36732", "13", "2016-08-31 03:20:28", "24.68.17.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("36733", "10", "2016-08-31 03:20:28", "24.68.17.97", "10");
INSERT INTO `wp_gf_form_view` VALUES("36734", "3", "2016-08-31 04:30:03", "77.75.77.72", "14");
INSERT INTO `wp_gf_form_view` VALUES("36735", "13", "2016-08-31 04:30:05", "77.75.77.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("36736", "10", "2016-08-31 04:30:05", "77.75.77.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("36737", "3", "2016-08-31 05:00:27", "157.55.39.9", "51");
INSERT INTO `wp_gf_form_view` VALUES("36738", "13", "2016-08-31 05:00:36", "157.55.39.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("36739", "10", "2016-08-31 05:00:37", "157.55.39.9", "14");
INSERT INTO `wp_gf_form_view` VALUES("36740", "3", "2016-08-31 06:36:30", "104.168.47.206", "21");
INSERT INTO `wp_gf_form_view` VALUES("36741", "13", "2016-08-31 06:36:32", "104.168.47.206", "3");
INSERT INTO `wp_gf_form_view` VALUES("36742", "10", "2016-08-31 06:36:32", "104.168.47.206", "6");
INSERT INTO `wp_gf_form_view` VALUES("36743", "2", "2016-08-31 07:20:09", "46.118.115.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("36744", "3", "2016-08-31 07:20:12", "46.118.115.181", "268");
INSERT INTO `wp_gf_form_view` VALUES("36745", "13", "2016-08-31 07:20:12", "46.118.115.181", "39");
INSERT INTO `wp_gf_form_view` VALUES("36746", "10", "2016-08-31 07:20:12", "46.118.115.181", "74");
INSERT INTO `wp_gf_form_view` VALUES("36747", "11", "2016-08-31 07:39:11", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("36748", "3", "2016-08-31 08:13:06", "77.75.77.32", "21");
INSERT INTO `wp_gf_form_view` VALUES("36749", "13", "2016-08-31 08:13:08", "77.75.77.32", "3");
INSERT INTO `wp_gf_form_view` VALUES("36750", "10", "2016-08-31 08:13:08", "77.75.77.32", "6");
INSERT INTO `wp_gf_form_view` VALUES("36751", "5", "2016-08-31 10:06:47", "77.75.78.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("36752", "3", "2016-08-31 10:06:50", "77.75.78.171", "78");
INSERT INTO `wp_gf_form_view` VALUES("36753", "13", "2016-08-31 10:06:52", "77.75.78.171", "10");
INSERT INTO `wp_gf_form_view` VALUES("36754", "10", "2016-08-31 10:06:52", "77.75.78.171", "18");
INSERT INTO `wp_gf_form_view` VALUES("36755", "11", "2016-08-31 10:48:53", "164.132.161.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("36756", "3", "2016-08-31 11:17:03", "157.55.39.9", "72");
INSERT INTO `wp_gf_form_view` VALUES("36757", "13", "2016-08-31 11:17:03", "157.55.39.9", "10");
INSERT INTO `wp_gf_form_view` VALUES("36758", "10", "2016-08-31 11:17:03", "157.55.39.9", "20");
INSERT INTO `wp_gf_form_view` VALUES("36759", "9", "2016-08-31 11:26:46", "157.55.39.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("36760", "1", "2016-08-31 11:47:43", "46.118.123.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("36761", "3", "2016-08-31 13:10:09", "157.55.39.9", "28");
INSERT INTO `wp_gf_form_view` VALUES("36762", "13", "2016-08-31 13:10:12", "157.55.39.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("36763", "10", "2016-08-31 13:10:12", "157.55.39.9", "8");
INSERT INTO `wp_gf_form_view` VALUES("36764", "3", "2016-08-31 14:05:54", "164.132.161.18", "51");
INSERT INTO `wp_gf_form_view` VALUES("36765", "13", "2016-08-31 14:05:55", "164.132.161.18", "8");
INSERT INTO `wp_gf_form_view` VALUES("36766", "10", "2016-08-31 14:05:55", "164.132.161.18", "16");
INSERT INTO `wp_gf_form_view` VALUES("36767", "1", "2016-08-31 14:54:51", "178.32.12.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("36768", "3", "2016-08-31 15:14:44", "157.55.39.202", "28");
INSERT INTO `wp_gf_form_view` VALUES("36769", "13", "2016-08-31 15:14:48", "157.55.39.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("36770", "10", "2016-08-31 15:14:48", "157.55.39.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("36771", "10", "2016-08-31 16:04:24", "96.50.61.173", "31");
INSERT INTO `wp_gf_form_view` VALUES("36772", "3", "2016-08-31 16:04:27", "96.50.61.173", "111");
INSERT INTO `wp_gf_form_view` VALUES("36773", "13", "2016-08-31 16:04:27", "96.50.61.173", "15");
INSERT INTO `wp_gf_form_view` VALUES("36774", "3", "2016-08-31 17:21:26", "178.137.163.253", "39");
INSERT INTO `wp_gf_form_view` VALUES("36775", "3", "2016-08-31 17:21:26", "178.137.163.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("36776", "13", "2016-08-31 17:21:30", "178.137.163.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("36777", "10", "2016-08-31 17:21:30", "178.137.163.253", "8");
INSERT INTO `wp_gf_form_view` VALUES("36778", "10", "2016-08-31 17:21:30", "178.137.163.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("36779", "10", "2016-08-31 17:21:30", "178.137.163.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("36780", "3", "2016-08-31 18:11:47", "178.137.163.253", "279");
INSERT INTO `wp_gf_form_view` VALUES("36781", "13", "2016-08-31 18:11:49", "178.137.163.253", "39");
INSERT INTO `wp_gf_form_view` VALUES("36782", "10", "2016-08-31 18:11:49", "178.137.163.253", "79");
INSERT INTO `wp_gf_form_view` VALUES("36783", "2", "2016-08-31 18:40:08", "58.221.42.254", "3");
INSERT INTO `wp_gf_form_view` VALUES("36784", "3", "2016-08-31 19:14:04", "192.171.58.118", "36");
INSERT INTO `wp_gf_form_view` VALUES("36785", "13", "2016-08-31 19:14:06", "192.171.58.118", "5");
INSERT INTO `wp_gf_form_view` VALUES("36786", "10", "2016-08-31 19:14:07", "192.171.58.118", "10");
INSERT INTO `wp_gf_form_view` VALUES("36787", "3", "2016-08-31 20:00:23", "157.55.39.9", "53");
INSERT INTO `wp_gf_form_view` VALUES("36788", "13", "2016-08-31 20:00:23", "157.55.39.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("36789", "10", "2016-08-31 20:00:23", "157.55.39.9", "14");
INSERT INTO `wp_gf_form_view` VALUES("36790", "3", "2016-08-31 21:04:40", "51.255.65.18", "52");
INSERT INTO `wp_gf_form_view` VALUES("36791", "13", "2016-08-31 21:04:41", "51.255.65.18", "7");
INSERT INTO `wp_gf_form_view` VALUES("36792", "10", "2016-08-31 21:04:41", "51.255.65.18", "15");
INSERT INTO `wp_gf_form_view` VALUES("36793", "1", "2016-08-31 21:23:34", "164.132.161.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("36794", "3", "2016-08-31 22:05:33", "157.55.39.9", "45");
INSERT INTO `wp_gf_form_view` VALUES("36795", "13", "2016-08-31 22:05:34", "157.55.39.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("36796", "10", "2016-08-31 22:05:34", "157.55.39.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("36797", "3", "2016-08-31 23:21:51", "207.46.13.185", "711");
INSERT INTO `wp_gf_form_view` VALUES("36798", "13", "2016-08-31 23:21:52", "207.46.13.185", "96");
INSERT INTO `wp_gf_form_view` VALUES("36799", "10", "2016-08-31 23:21:55", "207.46.13.185", "195");
INSERT INTO `wp_gf_form_view` VALUES("36800", "9", "2016-08-31 23:22:06", "207.46.13.185", "4");
INSERT INTO `wp_gf_form_view` VALUES("36801", "8", "2016-08-31 23:23:22", "157.55.39.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("36802", "5", "2016-08-31 23:23:32", "157.55.39.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("36803", "6", "2016-08-31 23:23:41", "157.55.39.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("36804", "3", "2016-09-01 00:07:30", "46.118.122.167", "52");
INSERT INTO `wp_gf_form_view` VALUES("36805", "13", "2016-09-01 00:07:34", "46.118.122.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("36806", "10", "2016-09-01 00:07:34", "46.118.122.167", "13");
INSERT INTO `wp_gf_form_view` VALUES("36807", "10", "2016-09-01 00:07:34", "46.118.122.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("36808", "3", "2016-09-01 01:10:33", "96.50.17.225", "28");
INSERT INTO `wp_gf_form_view` VALUES("36809", "13", "2016-09-01 01:10:33", "96.50.17.225", "4");
INSERT INTO `wp_gf_form_view` VALUES("36810", "10", "2016-09-01 01:10:33", "96.50.17.225", "8");
INSERT INTO `wp_gf_form_view` VALUES("36811", "12", "2016-09-01 02:00:59", "66.249.79.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("36812", "3", "2016-09-01 02:00:59", "66.249.79.112", "21");
INSERT INTO `wp_gf_form_view` VALUES("36813", "13", "2016-09-01 02:00:59", "66.249.79.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("36814", "10", "2016-09-01 02:00:59", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("36815", "3", "2016-09-01 03:17:58", "154.5.209.196", "62");
INSERT INTO `wp_gf_form_view` VALUES("36816", "13", "2016-09-01 03:18:01", "154.5.209.196", "8");
INSERT INTO `wp_gf_form_view` VALUES("36817", "10", "2016-09-01 03:18:01", "154.5.209.196", "16");
INSERT INTO `wp_gf_form_view` VALUES("36818", "3", "2016-09-01 04:01:47", "46.118.157.136", "55");
INSERT INTO `wp_gf_form_view` VALUES("36819", "13", "2016-09-01 04:01:47", "46.118.157.136", "7");
INSERT INTO `wp_gf_form_view` VALUES("36820", "10", "2016-09-01 04:01:47", "46.118.157.136", "14");
INSERT INTO `wp_gf_form_view` VALUES("36821", "3", "2016-09-01 05:12:50", "157.55.39.202", "31");
INSERT INTO `wp_gf_form_view` VALUES("36822", "13", "2016-09-01 05:13:00", "157.55.39.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("36823", "10", "2016-09-01 05:13:00", "157.55.39.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("36824", "1", "2016-09-01 06:07:03", "185.48.206.86", "4");
INSERT INTO `wp_gf_form_view` VALUES("36825", "3", "2016-09-01 06:07:04", "185.48.206.86", "126");
INSERT INTO `wp_gf_form_view` VALUES("36826", "13", "2016-09-01 06:07:05", "185.48.206.86", "17");
INSERT INTO `wp_gf_form_view` VALUES("36827", "10", "2016-09-01 06:07:05", "185.48.206.86", "34");
INSERT INTO `wp_gf_form_view` VALUES("36828", "3", "2016-09-01 07:39:21", "157.55.39.202", "55");
INSERT INTO `wp_gf_form_view` VALUES("36829", "13", "2016-09-01 07:39:25", "157.55.39.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("36830", "10", "2016-09-01 07:39:25", "157.55.39.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("36831", "3", "2016-09-01 08:01:47", "77.75.78.167", "30");
INSERT INTO `wp_gf_form_view` VALUES("36832", "13", "2016-09-01 08:01:47", "77.75.78.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("36833", "10", "2016-09-01 08:01:47", "77.75.78.167", "8");
INSERT INTO `wp_gf_form_view` VALUES("36834", "3", "2016-09-01 09:45:38", "40.77.167.46", "7");
INSERT INTO `wp_gf_form_view` VALUES("36835", "13", "2016-09-01 09:45:41", "40.77.167.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("36836", "10", "2016-09-01 09:45:41", "40.77.167.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("36837", "8", "2016-09-01 10:42:54", "157.55.39.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("36838", "3", "2016-09-01 10:42:55", "157.55.39.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("36839", "13", "2016-09-01 10:42:56", "157.55.39.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("36840", "10", "2016-09-01 10:42:56", "157.55.39.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("36841", "3", "2016-09-01 11:06:46", "178.137.94.36", "79");
INSERT INTO `wp_gf_form_view` VALUES("36842", "3", "2016-09-01 11:06:46", "178.137.94.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("36843", "13", "2016-09-01 11:06:48", "178.137.94.36", "11");
INSERT INTO `wp_gf_form_view` VALUES("36844", "10", "2016-09-01 11:06:48", "178.137.94.36", "22");
INSERT INTO `wp_gf_form_view` VALUES("36845", "10", "2016-09-01 11:06:48", "178.137.94.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("36846", "1", "2016-09-01 11:59:39", "178.32.80.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("36847", "3", "2016-09-01 12:13:00", "178.137.163.253", "45");
INSERT INTO `wp_gf_form_view` VALUES("36848", "13", "2016-09-01 12:13:00", "178.137.163.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("36849", "10", "2016-09-01 12:13:00", "178.137.163.253", "12");
INSERT INTO `wp_gf_form_view` VALUES("36850", "9", "2016-09-01 13:32:03", "157.55.39.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("36851", "3", "2016-09-01 13:32:04", "157.55.39.202", "15");
INSERT INTO `wp_gf_form_view` VALUES("36852", "13", "2016-09-01 13:32:04", "157.55.39.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("36853", "10", "2016-09-01 13:32:04", "157.55.39.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("36854", "6", "2016-09-01 14:10:54", "5.9.145.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("36855", "3", "2016-09-01 14:11:09", "5.9.145.132", "212");
INSERT INTO `wp_gf_form_view` VALUES("36856", "13", "2016-09-01 14:11:09", "5.9.145.132", "30");
INSERT INTO `wp_gf_form_view` VALUES("36857", "10", "2016-09-01 14:11:09", "5.9.145.132", "60");
INSERT INTO `wp_gf_form_view` VALUES("36858", "11", "2016-09-01 14:28:27", "199.115.228.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("36859", "12", "2016-09-01 14:29:02", "199.115.228.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("36860", "2", "2016-09-01 14:29:56", "199.115.228.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("36861", "9", "2016-09-01 14:56:16", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36862", "3", "2016-09-01 15:10:08", "157.55.39.9", "44");
INSERT INTO `wp_gf_form_view` VALUES("36863", "13", "2016-09-01 15:10:09", "157.55.39.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("36864", "10", "2016-09-01 15:10:09", "157.55.39.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("36865", "12", "2016-09-01 15:48:17", "157.55.39.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("36866", "10", "2016-09-01 16:03:50", "199.59.148.210", "11");
INSERT INTO `wp_gf_form_view` VALUES("36867", "3", "2016-09-01 16:03:51", "199.59.148.210", "37");
INSERT INTO `wp_gf_form_view` VALUES("36868", "13", "2016-09-01 16:03:51", "199.59.148.210", "5");
INSERT INTO `wp_gf_form_view` VALUES("36869", "2", "2016-09-01 16:13:40", "157.55.39.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("36870", "3", "2016-09-01 17:01:19", "100.43.91.14", "147");
INSERT INTO `wp_gf_form_view` VALUES("36871", "13", "2016-09-01 17:01:20", "100.43.91.14", "20");
INSERT INTO `wp_gf_form_view` VALUES("36872", "10", "2016-09-01 17:01:20", "100.43.91.14", "41");
INSERT INTO `wp_gf_form_view` VALUES("36873", "3", "2016-09-01 18:24:51", "5.255.250.69", "75");
INSERT INTO `wp_gf_form_view` VALUES("36874", "13", "2016-09-01 18:24:52", "5.255.250.69", "11");
INSERT INTO `wp_gf_form_view` VALUES("36875", "10", "2016-09-01 18:24:52", "5.255.250.69", "24");
INSERT INTO `wp_gf_form_view` VALUES("36876", "1", "2016-09-01 18:47:05", "87.98.167.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("36877", "3", "2016-09-01 19:02:50", "68.180.231.44", "44");
INSERT INTO `wp_gf_form_view` VALUES("36878", "13", "2016-09-01 19:02:50", "68.180.231.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("36879", "10", "2016-09-01 19:02:50", "68.180.231.44", "15");
INSERT INTO `wp_gf_form_view` VALUES("36880", "10", "2016-09-01 20:07:41", "209.52.88.56", "14");
INSERT INTO `wp_gf_form_view` VALUES("36881", "3", "2016-09-01 20:07:43", "209.52.88.56", "35");
INSERT INTO `wp_gf_form_view` VALUES("36882", "13", "2016-09-01 20:07:44", "209.52.88.56", "5");
INSERT INTO `wp_gf_form_view` VALUES("36883", "3", "2016-09-01 21:02:56", "107.150.83.240", "178");
INSERT INTO `wp_gf_form_view` VALUES("36884", "13", "2016-09-01 21:02:56", "107.150.83.240", "24");
INSERT INTO `wp_gf_form_view` VALUES("36885", "10", "2016-09-01 21:02:56", "107.150.83.240", "51");
INSERT INTO `wp_gf_form_view` VALUES("36886", "1", "2016-09-01 21:59:39", "199.60.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("36887", "3", "2016-09-01 22:01:37", "199.60.104.18", "182");
INSERT INTO `wp_gf_form_view` VALUES("36888", "13", "2016-09-01 22:01:37", "199.60.104.18", "25");
INSERT INTO `wp_gf_form_view` VALUES("36889", "10", "2016-09-01 22:01:38", "199.60.104.18", "51");
INSERT INTO `wp_gf_form_view` VALUES("36890", "10", "2016-09-01 23:00:51", "96.50.53.128", "22");
INSERT INTO `wp_gf_form_view` VALUES("36891", "3", "2016-09-01 23:00:51", "96.50.53.128", "75");
INSERT INTO `wp_gf_form_view` VALUES("36892", "13", "2016-09-01 23:00:51", "96.50.53.128", "10");
INSERT INTO `wp_gf_form_view` VALUES("36893", "5", "2016-09-01 23:19:26", "157.55.39.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("36894", "9", "2016-09-01 23:19:53", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("36895", "1", "2016-09-01 23:24:19", "1.160.5.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("36896", "3", "2016-09-02 00:20:41", "46.118.238.134", "78");
INSERT INTO `wp_gf_form_view` VALUES("36897", "13", "2016-09-02 00:20:42", "46.118.238.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("36898", "10", "2016-09-02 00:20:42", "46.118.238.134", "20");
INSERT INTO `wp_gf_form_view` VALUES("36899", "3", "2016-09-02 01:00:22", "77.75.78.163", "100");
INSERT INTO `wp_gf_form_view` VALUES("36900", "13", "2016-09-02 01:00:23", "77.75.78.163", "14");
INSERT INTO `wp_gf_form_view` VALUES("36901", "10", "2016-09-02 01:00:23", "77.75.78.163", "31");
INSERT INTO `wp_gf_form_view` VALUES("36902", "10", "2016-09-02 02:09:16", "216.232.151.226", "6");
INSERT INTO `wp_gf_form_view` VALUES("36903", "3", "2016-09-02 02:09:21", "216.232.151.226", "14");
INSERT INTO `wp_gf_form_view` VALUES("36904", "13", "2016-09-02 02:09:22", "216.232.151.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("36905", "8", "2016-09-02 02:11:18", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("36906", "10", "2016-09-02 03:03:04", "199.126.228.21", "28");
INSERT INTO `wp_gf_form_view` VALUES("36907", "3", "2016-09-02 03:03:08", "199.126.228.21", "93");
INSERT INTO `wp_gf_form_view` VALUES("36908", "13", "2016-09-02 03:03:08", "199.126.228.21", "14");
INSERT INTO `wp_gf_form_view` VALUES("36909", "1", "2016-09-02 03:28:13", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("36910", "12", "2016-09-02 03:31:21", "157.55.39.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("36911", "3", "2016-09-02 04:11:35", "157.55.39.202", "44");
INSERT INTO `wp_gf_form_view` VALUES("36912", "13", "2016-09-02 04:11:35", "157.55.39.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("36913", "10", "2016-09-02 04:11:35", "157.55.39.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("36914", "3", "2016-09-02 05:40:13", "40.77.167.46", "35");
INSERT INTO `wp_gf_form_view` VALUES("36915", "13", "2016-09-02 05:40:15", "40.77.167.46", "5");
INSERT INTO `wp_gf_form_view` VALUES("36916", "10", "2016-09-02 05:40:15", "40.77.167.46", "10");
INSERT INTO `wp_gf_form_view` VALUES("36917", "3", "2016-09-02 06:29:12", "157.55.39.19", "36");
INSERT INTO `wp_gf_form_view` VALUES("36918", "13", "2016-09-02 06:29:16", "157.55.39.19", "5");
INSERT INTO `wp_gf_form_view` VALUES("36919", "10", "2016-09-02 06:29:16", "157.55.39.19", "10");
INSERT INTO `wp_gf_form_view` VALUES("36920", "11", "2016-09-02 07:14:23", "157.55.39.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("36921", "3", "2016-09-02 07:14:26", "157.55.39.245", "64");
INSERT INTO `wp_gf_form_view` VALUES("36922", "13", "2016-09-02 07:14:26", "157.55.39.245", "9");
INSERT INTO `wp_gf_form_view` VALUES("36923", "10", "2016-09-02 07:14:26", "157.55.39.245", "19");
INSERT INTO `wp_gf_form_view` VALUES("36924", "1", "2016-09-02 07:34:06", "87.98.167.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("36925", "3", "2016-09-02 08:45:13", "40.77.167.75", "37");
INSERT INTO `wp_gf_form_view` VALUES("36926", "13", "2016-09-02 08:45:15", "40.77.167.75", "5");
INSERT INTO `wp_gf_form_view` VALUES("36927", "10", "2016-09-02 08:45:16", "40.77.167.75", "10");
INSERT INTO `wp_gf_form_view` VALUES("36928", "3", "2016-09-02 09:01:18", "199.21.99.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("36929", "13", "2016-09-02 09:01:18", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("36930", "10", "2016-09-02 09:01:19", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("36931", "3", "2016-09-02 10:02:12", "66.249.79.112", "39");
INSERT INTO `wp_gf_form_view` VALUES("36932", "13", "2016-09-02 10:02:23", "66.249.79.112", "5");
INSERT INTO `wp_gf_form_view` VALUES("36933", "10", "2016-09-02 10:02:23", "66.249.79.112", "10");
INSERT INTO `wp_gf_form_view` VALUES("36934", "3", "2016-09-02 11:10:17", "40.77.167.75", "38");
INSERT INTO `wp_gf_form_view` VALUES("36935", "13", "2016-09-02 11:10:21", "40.77.167.75", "6");
INSERT INTO `wp_gf_form_view` VALUES("36936", "10", "2016-09-02 11:10:21", "40.77.167.75", "18");
INSERT INTO `wp_gf_form_view` VALUES("36937", "1", "2016-09-02 12:24:15", "176.108.188.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("36938", "3", "2016-09-02 12:24:17", "176.108.188.5", "126");
INSERT INTO `wp_gf_form_view` VALUES("36939", "13", "2016-09-02 12:24:21", "176.108.188.5", "17");
INSERT INTO `wp_gf_form_view` VALUES("36940", "10", "2016-09-02 12:24:21", "176.108.188.5", "34");
INSERT INTO `wp_gf_form_view` VALUES("36941", "3", "2016-09-02 13:00:28", "157.55.39.245", "117");
INSERT INTO `wp_gf_form_view` VALUES("36942", "13", "2016-09-02 13:00:29", "157.55.39.245", "16");
INSERT INTO `wp_gf_form_view` VALUES("36943", "10", "2016-09-02 13:00:29", "157.55.39.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("36944", "1", "2016-09-02 13:39:21", "91.108.177.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("36945", "3", "2016-09-02 14:03:25", "157.55.39.129", "71");
INSERT INTO `wp_gf_form_view` VALUES("36946", "13", "2016-09-02 14:03:26", "157.55.39.129", "11");
INSERT INTO `wp_gf_form_view` VALUES("36947", "10", "2016-09-02 14:03:26", "157.55.39.129", "20");
INSERT INTO `wp_gf_form_view` VALUES("36948", "11", "2016-09-02 14:19:13", "157.55.39.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("36949", "1", "2016-09-02 15:23:35", "104.129.59.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("36950", "3", "2016-09-02 15:23:36", "104.129.59.167", "15");
INSERT INTO `wp_gf_form_view` VALUES("36951", "13", "2016-09-02 15:23:39", "104.129.59.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("36952", "10", "2016-09-02 15:23:39", "104.129.59.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("36953", "3", "2016-09-02 16:12:52", "68.180.231.44", "98");
INSERT INTO `wp_gf_form_view` VALUES("36954", "13", "2016-09-02 16:12:54", "68.180.231.44", "15");
INSERT INTO `wp_gf_form_view` VALUES("36955", "10", "2016-09-02 16:12:54", "68.180.231.44", "28");
INSERT INTO `wp_gf_form_view` VALUES("36956", "2", "2016-09-02 16:51:03", "216.244.66.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("36957", "3", "2016-09-02 17:02:22", "207.46.13.20", "36");
INSERT INTO `wp_gf_form_view` VALUES("36958", "13", "2016-09-02 17:02:23", "207.46.13.20", "5");
INSERT INTO `wp_gf_form_view` VALUES("36959", "10", "2016-09-02 17:02:23", "207.46.13.20", "10");
INSERT INTO `wp_gf_form_view` VALUES("36960", "1", "2016-09-02 17:07:51", "91.108.177.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("36961", "3", "2016-09-02 18:03:00", "178.137.163.253", "64");
INSERT INTO `wp_gf_form_view` VALUES("36962", "3", "2016-09-02 18:03:00", "178.137.163.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("36963", "13", "2016-09-02 18:03:10", "178.137.163.253", "9");
INSERT INTO `wp_gf_form_view` VALUES("36964", "10", "2016-09-02 18:03:10", "178.137.163.253", "18");
INSERT INTO `wp_gf_form_view` VALUES("36965", "2", "2016-09-02 18:19:13", "216.244.66.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("36966", "1", "2016-09-02 18:52:00", "104.129.59.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("36967", "3", "2016-09-02 19:02:42", "38.108.87.20", "89");
INSERT INTO `wp_gf_form_view` VALUES("36968", "13", "2016-09-02 19:02:42", "38.108.87.20", "12");
INSERT INTO `wp_gf_form_view` VALUES("36969", "10", "2016-09-02 19:02:42", "38.108.87.20", "25");
INSERT INTO `wp_gf_form_view` VALUES("36970", "3", "2016-09-02 20:50:03", "68.180.231.44", "29");
INSERT INTO `wp_gf_form_view` VALUES("36971", "13", "2016-09-02 20:50:12", "68.180.231.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("36972", "10", "2016-09-02 20:50:12", "68.180.231.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("36973", "1", "2016-09-02 21:13:36", "87.98.167.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("36974", "3", "2016-09-02 21:13:36", "87.98.167.214", "64");
INSERT INTO `wp_gf_form_view` VALUES("36975", "13", "2016-09-02 21:13:37", "87.98.167.214", "10");
INSERT INTO `wp_gf_form_view` VALUES("36976", "10", "2016-09-02 21:13:37", "87.98.167.214", "21");
INSERT INTO `wp_gf_form_view` VALUES("36977", "3", "2016-09-02 22:09:48", "68.180.231.44", "63");
INSERT INTO `wp_gf_form_view` VALUES("36978", "13", "2016-09-02 22:09:48", "68.180.231.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("36979", "10", "2016-09-02 22:09:48", "68.180.231.44", "16");
INSERT INTO `wp_gf_form_view` VALUES("36980", "3", "2016-09-02 23:08:15", "46.118.157.136", "24");
INSERT INTO `wp_gf_form_view` VALUES("36981", "13", "2016-09-02 23:08:16", "46.118.157.136", "3");
INSERT INTO `wp_gf_form_view` VALUES("36982", "10", "2016-09-02 23:08:16", "46.118.157.136", "5");
INSERT INTO `wp_gf_form_view` VALUES("36983", "10", "2016-09-02 23:08:16", "46.118.157.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("36984", "3", "2016-09-03 00:17:04", "68.180.231.44", "37");
INSERT INTO `wp_gf_form_view` VALUES("36985", "13", "2016-09-03 00:17:05", "68.180.231.44", "5");
INSERT INTO `wp_gf_form_view` VALUES("36986", "10", "2016-09-03 00:17:05", "68.180.231.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("36987", "3", "2016-09-03 01:19:36", "66.249.79.108", "466");
INSERT INTO `wp_gf_form_view` VALUES("36988", "13", "2016-09-03 01:19:38", "66.249.79.108", "66");
INSERT INTO `wp_gf_form_view` VALUES("36989", "10", "2016-09-03 01:19:39", "66.249.79.108", "146");
INSERT INTO `wp_gf_form_view` VALUES("36990", "8", "2016-09-03 01:25:37", "207.46.13.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("36991", "7", "2016-09-03 01:35:20", "207.46.13.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("36992", "3", "2016-09-03 02:06:18", "216.244.66.227", "46");
INSERT INTO `wp_gf_form_view` VALUES("36993", "13", "2016-09-03 02:06:21", "216.244.66.227", "6");
INSERT INTO `wp_gf_form_view` VALUES("36994", "10", "2016-09-03 02:06:21", "216.244.66.227", "21");
INSERT INTO `wp_gf_form_view` VALUES("36995", "10", "2016-09-03 03:01:02", "207.46.13.163", "13");
INSERT INTO `wp_gf_form_view` VALUES("36996", "3", "2016-09-03 03:01:02", "207.46.13.163", "44");
INSERT INTO `wp_gf_form_view` VALUES("36997", "13", "2016-09-03 03:01:03", "207.46.13.163", "6");
INSERT INTO `wp_gf_form_view` VALUES("36998", "2", "2016-09-03 03:35:11", "66.249.79.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("36999", "3", "2016-09-03 04:12:40", "51.255.65.73", "66");
INSERT INTO `wp_gf_form_view` VALUES("37000", "13", "2016-09-03 04:12:41", "51.255.65.73", "10");
INSERT INTO `wp_gf_form_view` VALUES("37001", "10", "2016-09-03 04:12:41", "51.255.65.73", "18");
INSERT INTO `wp_gf_form_view` VALUES("37002", "10", "2016-09-03 05:18:26", "51.255.65.42", "14");
INSERT INTO `wp_gf_form_view` VALUES("37003", "3", "2016-09-03 05:25:40", "198.23.145.212", "42");
INSERT INTO `wp_gf_form_view` VALUES("37004", "13", "2016-09-03 05:25:43", "198.23.145.212", "6");
INSERT INTO `wp_gf_form_view` VALUES("37005", "11", "2016-09-03 06:12:25", "212.225.203.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("37006", "3", "2016-09-03 06:12:30", "212.225.203.134", "252");
INSERT INTO `wp_gf_form_view` VALUES("37007", "13", "2016-09-03 06:12:30", "212.225.203.134", "35");
INSERT INTO `wp_gf_form_view` VALUES("37008", "10", "2016-09-03 06:12:30", "212.225.203.134", "70");
INSERT INTO `wp_gf_form_view` VALUES("37009", "12", "2016-09-03 06:13:00", "212.225.203.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("37010", "2", "2016-09-03 06:13:37", "212.225.203.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("37011", "3", "2016-09-03 07:03:42", "185.158.134.154", "50");
INSERT INTO `wp_gf_form_view` VALUES("37012", "13", "2016-09-03 07:03:43", "185.158.134.154", "7");
INSERT INTO `wp_gf_form_view` VALUES("37013", "10", "2016-09-03 07:03:43", "185.158.134.154", "14");
INSERT INTO `wp_gf_form_view` VALUES("37014", "3", "2016-09-03 08:03:52", "207.46.13.63", "15");
INSERT INTO `wp_gf_form_view` VALUES("37015", "13", "2016-09-03 08:03:57", "207.46.13.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("37016", "10", "2016-09-03 08:03:57", "207.46.13.63", "5");
INSERT INTO `wp_gf_form_view` VALUES("37017", "3", "2016-09-03 09:14:31", "77.75.77.101", "21");
INSERT INTO `wp_gf_form_view` VALUES("37018", "13", "2016-09-03 09:14:33", "77.75.77.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("37019", "10", "2016-09-03 09:14:33", "77.75.77.101", "6");
INSERT INTO `wp_gf_form_view` VALUES("37020", "3", "2016-09-03 10:04:46", "217.69.133.228", "87");
INSERT INTO `wp_gf_form_view` VALUES("37021", "13", "2016-09-03 10:04:46", "217.69.133.228", "12");
INSERT INTO `wp_gf_form_view` VALUES("37022", "10", "2016-09-03 10:04:46", "217.69.133.228", "24");
INSERT INTO `wp_gf_form_view` VALUES("37023", "3", "2016-09-03 11:04:39", "207.46.13.178", "28");
INSERT INTO `wp_gf_form_view` VALUES("37024", "13", "2016-09-03 11:04:40", "207.46.13.178", "4");
INSERT INTO `wp_gf_form_view` VALUES("37025", "10", "2016-09-03 11:04:40", "207.46.13.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("37026", "12", "2016-09-03 12:04:02", "68.180.231.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("37027", "3", "2016-09-03 12:04:02", "68.180.231.44", "14");
INSERT INTO `wp_gf_form_view` VALUES("37028", "13", "2016-09-03 12:04:03", "68.180.231.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("37029", "10", "2016-09-03 12:04:03", "68.180.231.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("37030", "3", "2016-09-03 13:54:35", "220.181.108.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("37031", "13", "2016-09-03 13:54:36", "220.181.108.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("37032", "10", "2016-09-03 13:54:36", "220.181.108.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("37033", "3", "2016-09-03 14:21:32", "66.249.79.104", "53");
INSERT INTO `wp_gf_form_view` VALUES("37034", "13", "2016-09-03 14:21:34", "66.249.79.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("37035", "10", "2016-09-03 14:21:34", "66.249.79.104", "14");
INSERT INTO `wp_gf_form_view` VALUES("37036", "3", "2016-09-03 15:07:40", "77.75.79.95", "170");
INSERT INTO `wp_gf_form_view` VALUES("37037", "13", "2016-09-03 15:07:40", "77.75.79.95", "24");
INSERT INTO `wp_gf_form_view` VALUES("37038", "10", "2016-09-03 15:07:41", "77.75.79.95", "48");
INSERT INTO `wp_gf_form_view` VALUES("37039", "12", "2016-09-03 15:44:04", "157.55.39.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("37040", "3", "2016-09-03 16:21:51", "217.69.133.232", "65");
INSERT INTO `wp_gf_form_view` VALUES("37041", "13", "2016-09-03 16:21:53", "217.69.133.232", "9");
INSERT INTO `wp_gf_form_view` VALUES("37042", "10", "2016-09-03 16:21:53", "217.69.133.232", "18");
INSERT INTO `wp_gf_form_view` VALUES("37043", "6", "2016-09-03 16:21:55", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("37044", "3", "2016-09-03 17:06:28", "178.137.163.253", "93");
INSERT INTO `wp_gf_form_view` VALUES("37045", "13", "2016-09-03 17:06:29", "178.137.163.253", "14");
INSERT INTO `wp_gf_form_view` VALUES("37046", "10", "2016-09-03 17:06:29", "178.137.163.253", "26");
INSERT INTO `wp_gf_form_view` VALUES("37047", "2", "2016-09-03 17:40:05", "45.32.131.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("37048", "3", "2016-09-03 18:13:46", "46.118.122.167", "44");
INSERT INTO `wp_gf_form_view` VALUES("37049", "13", "2016-09-03 18:13:55", "46.118.122.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("37050", "10", "2016-09-03 18:13:55", "46.118.122.167", "13");
INSERT INTO `wp_gf_form_view` VALUES("37051", "11", "2016-09-03 18:34:47", "5.255.250.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("37052", "3", "2016-09-03 19:56:26", "41.33.182.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("37053", "13", "2016-09-03 19:56:28", "41.33.182.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("37054", "10", "2016-09-03 19:56:28", "41.33.182.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("37055", "1", "2016-09-03 20:05:45", "192.99.166.236", "5");
INSERT INTO `wp_gf_form_view` VALUES("37056", "3", "2016-09-03 20:05:45", "192.99.166.236", "135");
INSERT INTO `wp_gf_form_view` VALUES("37057", "13", "2016-09-03 20:05:46", "192.99.166.236", "18");
INSERT INTO `wp_gf_form_view` VALUES("37058", "10", "2016-09-03 20:05:46", "192.99.166.236", "36");
INSERT INTO `wp_gf_form_view` VALUES("37059", "11", "2016-09-03 20:51:09", "216.244.66.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("37060", "3", "2016-09-03 21:05:26", "217.69.133.229", "8");
INSERT INTO `wp_gf_form_view` VALUES("37061", "13", "2016-09-03 21:05:28", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("37062", "10", "2016-09-03 21:05:28", "217.69.133.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("37063", "3", "2016-09-03 22:02:53", "66.249.79.108", "61");
INSERT INTO `wp_gf_form_view` VALUES("37064", "13", "2016-09-03 22:02:55", "66.249.79.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("37065", "10", "2016-09-03 22:02:55", "66.249.79.108", "16");
INSERT INTO `wp_gf_form_view` VALUES("37066", "1", "2016-09-03 22:04:28", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("37067", "3", "2016-09-03 23:07:17", "24.68.17.97", "22");
INSERT INTO `wp_gf_form_view` VALUES("37068", "13", "2016-09-03 23:07:18", "24.68.17.97", "3");
INSERT INTO `wp_gf_form_view` VALUES("37069", "10", "2016-09-03 23:07:18", "24.68.17.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("37070", "1", "2016-09-03 23:50:21", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("37071", "3", "2016-09-04 00:14:20", "217.69.133.230", "120");
INSERT INTO `wp_gf_form_view` VALUES("37072", "13", "2016-09-04 00:14:22", "217.69.133.230", "17");
INSERT INTO `wp_gf_form_view` VALUES("37073", "10", "2016-09-04 00:14:22", "217.69.133.230", "35");
INSERT INTO `wp_gf_form_view` VALUES("37074", "3", "2016-09-04 01:00:42", "207.46.13.187", "65");
INSERT INTO `wp_gf_form_view` VALUES("37075", "13", "2016-09-04 01:00:43", "207.46.13.187", "9");
INSERT INTO `wp_gf_form_view` VALUES("37076", "10", "2016-09-04 01:00:43", "207.46.13.187", "18");
INSERT INTO `wp_gf_form_view` VALUES("37077", "9", "2016-09-04 01:30:32", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("37078", "11", "2016-09-04 01:48:24", "216.244.66.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("37079", "1", "2016-09-04 01:55:52", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("37080", "3", "2016-09-04 02:51:02", "207.46.13.31", "16");
INSERT INTO `wp_gf_form_view` VALUES("37081", "13", "2016-09-04 02:51:05", "207.46.13.31", "2");
INSERT INTO `wp_gf_form_view` VALUES("37082", "10", "2016-09-04 02:51:05", "207.46.13.31", "4");
INSERT INTO `wp_gf_form_view` VALUES("37083", "10", "2016-09-04 03:00:11", "199.59.148.210", "7");
INSERT INTO `wp_gf_form_view` VALUES("37084", "3", "2016-09-04 03:00:11", "199.59.148.210", "21");
INSERT INTO `wp_gf_form_view` VALUES("37085", "13", "2016-09-04 03:00:12", "199.59.148.210", "3");
INSERT INTO `wp_gf_form_view` VALUES("37086", "9", "2016-09-04 03:22:08", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("37087", "1", "2016-09-04 04:27:06", "62.210.80.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("37088", "3", "2016-09-04 04:27:07", "62.210.80.62", "49");
INSERT INTO `wp_gf_form_view` VALUES("37089", "13", "2016-09-04 04:27:08", "62.210.80.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("37090", "10", "2016-09-04 04:27:08", "62.210.80.62", "14");
INSERT INTO `wp_gf_form_view` VALUES("37091", "3", "2016-09-04 05:27:19", "77.75.79.32", "56");
INSERT INTO `wp_gf_form_view` VALUES("37092", "13", "2016-09-04 05:27:22", "77.75.79.32", "8");
INSERT INTO `wp_gf_form_view` VALUES("37093", "10", "2016-09-04 05:27:22", "77.75.79.32", "17");
INSERT INTO `wp_gf_form_view` VALUES("37094", "3", "2016-09-04 06:34:25", "134.249.65.218", "88");
INSERT INTO `wp_gf_form_view` VALUES("37095", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("37096", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("37097", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("37098", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("37099", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("37100", "13", "2016-09-04 06:34:29", "134.249.65.218", "12");
INSERT INTO `wp_gf_form_view` VALUES("37101", "10", "2016-09-04 06:34:29", "134.249.65.218", "24");
INSERT INTO `wp_gf_form_view` VALUES("37102", "3", "2016-09-04 07:10:46", "89.46.89.165", "37");
INSERT INTO `wp_gf_form_view` VALUES("37103", "13", "2016-09-04 07:10:48", "89.46.89.165", "5");
INSERT INTO `wp_gf_form_view` VALUES("37104", "10", "2016-09-04 07:10:48", "89.46.89.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("37105", "3", "2016-09-04 08:33:59", "68.180.231.44", "22");
INSERT INTO `wp_gf_form_view` VALUES("37106", "13", "2016-09-04 08:34:05", "68.180.231.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("37107", "10", "2016-09-04 08:34:05", "68.180.231.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("37108", "1", "2016-09-04 09:27:30", "77.75.77.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("37109", "3", "2016-09-04 09:27:30", "77.75.77.54", "21");
INSERT INTO `wp_gf_form_view` VALUES("37110", "13", "2016-09-04 09:27:31", "77.75.77.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("37111", "10", "2016-09-04 09:27:31", "77.75.77.54", "6");
INSERT INTO `wp_gf_form_view` VALUES("37112", "8", "2016-09-04 09:54:05", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("37113", "3", "2016-09-04 11:08:43", "178.137.17.180", "69");
INSERT INTO `wp_gf_form_view` VALUES("37114", "3", "2016-09-04 11:08:43", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37115", "13", "2016-09-04 11:08:46", "178.137.17.180", "10");
INSERT INTO `wp_gf_form_view` VALUES("37116", "10", "2016-09-04 11:08:46", "178.137.17.180", "20");
INSERT INTO `wp_gf_form_view` VALUES("37117", "10", "2016-09-04 11:08:46", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37118", "9", "2016-09-04 11:43:08", "157.55.39.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("37119", "3", "2016-09-04 12:07:34", "46.118.119.71", "30");
INSERT INTO `wp_gf_form_view` VALUES("37120", "13", "2016-09-04 12:07:35", "46.118.119.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("37121", "10", "2016-09-04 12:07:35", "46.118.119.71", "8");
INSERT INTO `wp_gf_form_view` VALUES("37122", "3", "2016-09-04 13:00:23", "66.249.79.104", "94");
INSERT INTO `wp_gf_form_view` VALUES("37123", "13", "2016-09-04 13:00:23", "66.249.79.104", "13");
INSERT INTO `wp_gf_form_view` VALUES("37124", "10", "2016-09-04 13:00:23", "66.249.79.104", "26");
INSERT INTO `wp_gf_form_view` VALUES("37125", "9", "2016-09-04 13:54:36", "157.55.39.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("37126", "3", "2016-09-04 14:02:05", "207.46.13.187", "61");
INSERT INTO `wp_gf_form_view` VALUES("37127", "13", "2016-09-04 14:02:05", "207.46.13.187", "9");
INSERT INTO `wp_gf_form_view` VALUES("37128", "10", "2016-09-04 14:02:05", "207.46.13.187", "17");
INSERT INTO `wp_gf_form_view` VALUES("37129", "3", "2016-09-04 15:00:34", "220.181.108.142", "29");
INSERT INTO `wp_gf_form_view` VALUES("37130", "13", "2016-09-04 15:00:35", "220.181.108.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("37131", "10", "2016-09-04 15:00:35", "220.181.108.142", "8");
INSERT INTO `wp_gf_form_view` VALUES("37132", "1", "2016-09-04 16:03:44", "213.252.247.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("37133", "3", "2016-09-04 16:03:44", "213.252.247.228", "66");
INSERT INTO `wp_gf_form_view` VALUES("37134", "13", "2016-09-04 16:03:44", "213.252.247.228", "9");
INSERT INTO `wp_gf_form_view` VALUES("37135", "10", "2016-09-04 16:03:44", "213.252.247.228", "18");
INSERT INTO `wp_gf_form_view` VALUES("37136", "3", "2016-09-04 17:00:10", "207.46.13.187", "94");
INSERT INTO `wp_gf_form_view` VALUES("37137", "13", "2016-09-04 17:00:10", "207.46.13.187", "13");
INSERT INTO `wp_gf_form_view` VALUES("37138", "10", "2016-09-04 17:00:11", "207.46.13.187", "26");
INSERT INTO `wp_gf_form_view` VALUES("37139", "1", "2016-09-04 17:24:42", "192.126.168.141", "5");
INSERT INTO `wp_gf_form_view` VALUES("37140", "5", "2016-09-04 17:28:41", "157.55.39.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("37141", "3", "2016-09-04 18:17:04", "46.118.119.71", "35");
INSERT INTO `wp_gf_form_view` VALUES("37142", "3", "2016-09-04 18:17:04", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37143", "3", "2016-09-04 18:17:04", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37144", "13", "2016-09-04 18:17:10", "46.118.119.71", "5");
INSERT INTO `wp_gf_form_view` VALUES("37145", "10", "2016-09-04 18:17:10", "46.118.119.71", "9");
INSERT INTO `wp_gf_form_view` VALUES("37146", "10", "2016-09-04 18:17:10", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37147", "3", "2016-09-04 19:02:45", "40.77.167.51", "42");
INSERT INTO `wp_gf_form_view` VALUES("37148", "13", "2016-09-04 19:02:45", "40.77.167.51", "6");
INSERT INTO `wp_gf_form_view` VALUES("37149", "10", "2016-09-04 19:02:45", "40.77.167.51", "12");
INSERT INTO `wp_gf_form_view` VALUES("37150", "1", "2016-09-04 19:31:23", "155.133.43.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("37151", "3", "2016-09-04 20:03:20", "68.180.231.44", "29");
INSERT INTO `wp_gf_form_view` VALUES("37152", "13", "2016-09-04 20:03:22", "68.180.231.44", "5");
INSERT INTO `wp_gf_form_view` VALUES("37153", "10", "2016-09-04 20:03:22", "68.180.231.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("37154", "6", "2016-09-04 20:05:52", "40.77.167.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("37155", "1", "2016-09-04 21:14:45", "168.1.47.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("37156", "3", "2016-09-04 21:14:46", "168.1.47.248", "45");
INSERT INTO `wp_gf_form_view` VALUES("37157", "13", "2016-09-04 21:14:48", "168.1.47.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("37158", "10", "2016-09-04 21:14:48", "168.1.47.248", "13");
INSERT INTO `wp_gf_form_view` VALUES("37159", "1", "2016-09-04 22:08:10", "62.210.80.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("37160", "3", "2016-09-04 22:08:11", "62.210.80.62", "57");
INSERT INTO `wp_gf_form_view` VALUES("37161", "13", "2016-09-04 22:08:11", "62.210.80.62", "8");
INSERT INTO `wp_gf_form_view` VALUES("37162", "10", "2016-09-04 22:08:11", "62.210.80.62", "16");
INSERT INTO `wp_gf_form_view` VALUES("37163", "3", "2016-09-04 23:02:50", "207.46.13.187", "28");
INSERT INTO `wp_gf_form_view` VALUES("37164", "13", "2016-09-04 23:02:50", "207.46.13.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("37165", "10", "2016-09-04 23:02:50", "207.46.13.187", "9");
INSERT INTO `wp_gf_form_view` VALUES("37166", "1", "2016-09-04 23:03:06", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("37167", "3", "2016-09-05 00:07:52", "40.77.167.49", "44");
INSERT INTO `wp_gf_form_view` VALUES("37168", "13", "2016-09-05 00:07:56", "40.77.167.49", "6");
INSERT INTO `wp_gf_form_view` VALUES("37169", "10", "2016-09-05 00:07:56", "40.77.167.49", "12");
INSERT INTO `wp_gf_form_view` VALUES("37170", "1", "2016-09-05 00:41:22", "219.65.81.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37171", "10", "2016-09-05 01:01:12", "24.108.8.18", "21");
INSERT INTO `wp_gf_form_view` VALUES("37172", "3", "2016-09-05 01:01:13", "24.108.8.18", "70");
INSERT INTO `wp_gf_form_view` VALUES("37173", "13", "2016-09-05 01:01:13", "24.108.8.18", "10");
INSERT INTO `wp_gf_form_view` VALUES("37174", "1", "2016-09-05 01:22:55", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("37175", "8", "2016-09-05 01:23:16", "207.46.13.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("37176", "10", "2016-09-05 02:02:59", "157.55.39.212", "5");
INSERT INTO `wp_gf_form_view` VALUES("37177", "3", "2016-09-05 02:03:01", "157.55.39.212", "14");
INSERT INTO `wp_gf_form_view` VALUES("37178", "13", "2016-09-05 02:03:02", "157.55.39.212", "2");
INSERT INTO `wp_gf_form_view` VALUES("37179", "1", "2016-09-05 02:25:39", "122.116.102.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("37180", "3", "2016-09-05 03:06:42", "68.180.231.44", "72");
INSERT INTO `wp_gf_form_view` VALUES("37181", "13", "2016-09-05 03:06:44", "68.180.231.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("37182", "10", "2016-09-05 03:06:44", "68.180.231.44", "20");
INSERT INTO `wp_gf_form_view` VALUES("37183", "3", "2016-09-05 04:27:09", "222.122.9.46", "42");
INSERT INTO `wp_gf_form_view` VALUES("37184", "13", "2016-09-05 04:27:11", "222.122.9.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("37185", "10", "2016-09-05 04:27:11", "222.122.9.46", "12");
INSERT INTO `wp_gf_form_view` VALUES("37186", "1", "2016-09-05 04:35:38", "24.108.4.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("37187", "10", "2016-09-05 05:03:37", "157.55.39.184", "19");
INSERT INTO `wp_gf_form_view` VALUES("37188", "3", "2016-09-05 05:03:40", "157.55.39.184", "68");
INSERT INTO `wp_gf_form_view` VALUES("37189", "13", "2016-09-05 05:03:40", "157.55.39.184", "10");
INSERT INTO `wp_gf_form_view` VALUES("37190", "3", "2016-09-05 06:17:27", "192.243.55.134", "23");
INSERT INTO `wp_gf_form_view` VALUES("37191", "13", "2016-09-05 06:17:34", "192.243.55.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("37192", "10", "2016-09-05 06:17:34", "192.243.55.134", "6");
INSERT INTO `wp_gf_form_view` VALUES("37193", "1", "2016-09-05 06:40:16", "188.27.63.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("37194", "3", "2016-09-05 07:17:24", "157.55.39.100", "29");
INSERT INTO `wp_gf_form_view` VALUES("37195", "13", "2016-09-05 07:17:27", "157.55.39.100", "4");
INSERT INTO `wp_gf_form_view` VALUES("37196", "10", "2016-09-05 07:17:27", "157.55.39.100", "8");
INSERT INTO `wp_gf_form_view` VALUES("37197", "3", "2016-09-05 08:03:47", "40.77.167.51", "110");
INSERT INTO `wp_gf_form_view` VALUES("37198", "13", "2016-09-05 08:03:48", "40.77.167.51", "15");
INSERT INTO `wp_gf_form_view` VALUES("37199", "10", "2016-09-05 08:03:50", "40.77.167.51", "29");
INSERT INTO `wp_gf_form_view` VALUES("37200", "3", "2016-09-05 09:32:37", "40.77.167.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("37201", "13", "2016-09-05 09:32:44", "40.77.167.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("37202", "10", "2016-09-05 09:32:44", "40.77.167.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("37203", "10", "2016-09-05 10:13:35", "157.55.39.100", "36");
INSERT INTO `wp_gf_form_view` VALUES("37204", "3", "2016-09-05 10:13:37", "157.55.39.100", "120");
INSERT INTO `wp_gf_form_view` VALUES("37205", "13", "2016-09-05 10:13:38", "157.55.39.100", "17");
INSERT INTO `wp_gf_form_view` VALUES("37206", "12", "2016-09-05 10:54:52", "104.250.159.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("37207", "3", "2016-09-05 11:06:07", "40.77.167.51", "92");
INSERT INTO `wp_gf_form_view` VALUES("37208", "13", "2016-09-05 11:06:08", "40.77.167.51", "13");
INSERT INTO `wp_gf_form_view` VALUES("37209", "10", "2016-09-05 11:06:08", "40.77.167.51", "27");
INSERT INTO `wp_gf_form_view` VALUES("37210", "3", "2016-09-05 12:00:46", "77.75.76.171", "126");
INSERT INTO `wp_gf_form_view` VALUES("37211", "13", "2016-09-05 12:00:47", "77.75.76.171", "17");
INSERT INTO `wp_gf_form_view` VALUES("37212", "10", "2016-09-05 12:00:47", "77.75.76.171", "34");
INSERT INTO `wp_gf_form_view` VALUES("37213", "2", "2016-09-05 12:20:02", "192.243.55.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("37214", "3", "2016-09-05 13:08:20", "40.77.167.51", "79");
INSERT INTO `wp_gf_form_view` VALUES("37215", "13", "2016-09-05 13:08:21", "40.77.167.51", "11");
INSERT INTO `wp_gf_form_view` VALUES("37216", "10", "2016-09-05 13:08:21", "40.77.167.51", "23");
INSERT INTO `wp_gf_form_view` VALUES("37217", "11", "2016-09-05 13:48:37", "194.187.170.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("37218", "3", "2016-09-05 14:38:56", "40.77.167.51", "29");
INSERT INTO `wp_gf_form_view` VALUES("37219", "13", "2016-09-05 14:38:58", "40.77.167.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("37220", "10", "2016-09-05 14:38:58", "40.77.167.51", "8");
INSERT INTO `wp_gf_form_view` VALUES("37221", "3", "2016-09-05 15:21:21", "46.118.238.134", "66");
INSERT INTO `wp_gf_form_view` VALUES("37222", "3", "2016-09-05 15:21:21", "46.118.238.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("37223", "3", "2016-09-05 15:21:21", "46.118.238.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("37224", "13", "2016-09-05 15:21:24", "46.118.238.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("37225", "10", "2016-09-05 15:21:24", "46.118.238.134", "18");
INSERT INTO `wp_gf_form_view` VALUES("37226", "3", "2016-09-05 16:00:59", "157.55.39.100", "134");
INSERT INTO `wp_gf_form_view` VALUES("37227", "13", "2016-09-05 16:01:02", "157.55.39.100", "18");
INSERT INTO `wp_gf_form_view` VALUES("37228", "10", "2016-09-05 16:01:02", "157.55.39.100", "36");
INSERT INTO `wp_gf_form_view` VALUES("37229", "7", "2016-09-05 16:11:04", "157.55.39.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("37230", "9", "2016-09-05 16:50:26", "157.55.39.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("37231", "3", "2016-09-05 17:31:20", "40.77.167.51", "14");
INSERT INTO `wp_gf_form_view` VALUES("37232", "13", "2016-09-05 17:31:23", "40.77.167.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("37233", "10", "2016-09-05 17:31:23", "40.77.167.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("37234", "3", "2016-09-05 18:19:43", "103.8.124.185", "44");
INSERT INTO `wp_gf_form_view` VALUES("37235", "13", "2016-09-05 18:19:45", "103.8.124.185", "6");
INSERT INTO `wp_gf_form_view` VALUES("37236", "10", "2016-09-05 18:19:45", "103.8.124.185", "14");
INSERT INTO `wp_gf_form_view` VALUES("37237", "3", "2016-09-05 19:02:59", "157.55.39.100", "121");
INSERT INTO `wp_gf_form_view` VALUES("37238", "13", "2016-09-05 19:03:01", "157.55.39.100", "18");
INSERT INTO `wp_gf_form_view` VALUES("37239", "10", "2016-09-05 19:03:01", "157.55.39.100", "34");
INSERT INTO `wp_gf_form_view` VALUES("37240", "1", "2016-09-05 19:18:56", "112.140.186.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("37241", "2", "2016-09-05 19:58:52", "89.234.68.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("37242", "3", "2016-09-05 20:00:59", "89.234.68.71", "114");
INSERT INTO `wp_gf_form_view` VALUES("37243", "13", "2016-09-05 20:00:59", "89.234.68.71", "16");
INSERT INTO `wp_gf_form_view` VALUES("37244", "10", "2016-09-05 20:00:59", "89.234.68.71", "32");
INSERT INTO `wp_gf_form_view` VALUES("37245", "2", "2016-09-05 20:01:10", "89.234.68.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("37246", "3", "2016-09-05 21:01:22", "40.77.167.28", "36");
INSERT INTO `wp_gf_form_view` VALUES("37247", "13", "2016-09-05 21:01:25", "40.77.167.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("37248", "10", "2016-09-05 21:01:25", "40.77.167.28", "10");
INSERT INTO `wp_gf_form_view` VALUES("37249", "3", "2016-09-05 22:09:34", "64.180.23.243", "131");
INSERT INTO `wp_gf_form_view` VALUES("37250", "13", "2016-09-05 22:09:35", "64.180.23.243", "18");
INSERT INTO `wp_gf_form_view` VALUES("37251", "10", "2016-09-05 22:09:35", "64.180.23.243", "37");
INSERT INTO `wp_gf_form_view` VALUES("37252", "3", "2016-09-05 23:11:39", "157.55.39.100", "52");
INSERT INTO `wp_gf_form_view` VALUES("37253", "13", "2016-09-05 23:11:45", "157.55.39.100", "7");
INSERT INTO `wp_gf_form_view` VALUES("37254", "10", "2016-09-05 23:11:47", "157.55.39.100", "12");
INSERT INTO `wp_gf_form_view` VALUES("37255", "3", "2016-09-06 00:04:17", "117.253.216.110", "72");
INSERT INTO `wp_gf_form_view` VALUES("37256", "13", "2016-09-06 00:04:19", "117.253.216.110", "10");
INSERT INTO `wp_gf_form_view` VALUES("37257", "10", "2016-09-06 00:04:19", "117.253.216.110", "20");
INSERT INTO `wp_gf_form_view` VALUES("37258", "3", "2016-09-06 01:19:01", "40.77.167.72", "29");
INSERT INTO `wp_gf_form_view` VALUES("37259", "13", "2016-09-06 01:19:04", "40.77.167.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("37260", "10", "2016-09-06 01:19:04", "40.77.167.72", "8");
INSERT INTO `wp_gf_form_view` VALUES("37261", "3", "2016-09-06 02:10:02", "194.187.170.107", "57");
INSERT INTO `wp_gf_form_view` VALUES("37262", "13", "2016-09-06 02:10:04", "194.187.170.107", "8");
INSERT INTO `wp_gf_form_view` VALUES("37263", "10", "2016-09-06 02:10:04", "194.187.170.107", "16");
INSERT INTO `wp_gf_form_view` VALUES("37264", "9", "2016-09-06 02:18:59", "40.77.167.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("37265", "13", "2016-09-06 03:11:43", "176.9.131.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("37266", "3", "2016-09-06 03:11:55", "176.9.131.69", "14");
INSERT INTO `wp_gf_form_view` VALUES("37267", "10", "2016-09-06 03:11:56", "176.9.131.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("37268", "1", "2016-09-06 04:09:09", "181.143.48.243", "2");
INSERT INTO `wp_gf_form_view` VALUES("37269", "3", "2016-09-06 04:09:10", "181.143.48.243", "65");
INSERT INTO `wp_gf_form_view` VALUES("37270", "13", "2016-09-06 04:09:11", "181.143.48.243", "9");
INSERT INTO `wp_gf_form_view` VALUES("37271", "10", "2016-09-06 04:09:11", "181.143.48.243", "18");
INSERT INTO `wp_gf_form_view` VALUES("37272", "12", "2016-09-06 04:20:24", "157.55.39.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("37273", "3", "2016-09-06 05:03:22", "157.55.39.100", "53");
INSERT INTO `wp_gf_form_view` VALUES("37274", "13", "2016-09-06 05:03:23", "157.55.39.100", "7");
INSERT INTO `wp_gf_form_view` VALUES("37275", "10", "2016-09-06 05:03:23", "157.55.39.100", "15");
INSERT INTO `wp_gf_form_view` VALUES("37276", "3", "2016-09-06 06:00:46", "77.75.76.161", "53");
INSERT INTO `wp_gf_form_view` VALUES("37277", "13", "2016-09-06 06:00:47", "77.75.76.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("37278", "10", "2016-09-06 06:00:48", "77.75.76.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("37279", "3", "2016-09-06 07:26:27", "40.77.167.72", "22");
INSERT INTO `wp_gf_form_view` VALUES("37280", "13", "2016-09-06 07:26:30", "40.77.167.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("37281", "10", "2016-09-06 07:26:30", "40.77.167.72", "6");
INSERT INTO `wp_gf_form_view` VALUES("37282", "6", "2016-09-06 08:12:33", "40.77.167.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("37283", "3", "2016-09-06 08:12:36", "40.77.167.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("37284", "13", "2016-09-06 08:12:37", "40.77.167.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("37285", "10", "2016-09-06 08:12:37", "40.77.167.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("37286", "3", "2016-09-06 09:02:52", "46.118.119.71", "48");
INSERT INTO `wp_gf_form_view` VALUES("37287", "3", "2016-09-06 09:02:52", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37288", "3", "2016-09-06 09:02:52", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37289", "13", "2016-09-06 09:02:59", "46.118.119.71", "7");
INSERT INTO `wp_gf_form_view` VALUES("37290", "10", "2016-09-06 09:02:59", "46.118.119.71", "12");
INSERT INTO `wp_gf_form_view` VALUES("37291", "10", "2016-09-06 09:02:59", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37292", "10", "2016-09-06 09:02:59", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37293", "2", "2016-09-06 09:03:33", "202.46.52.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("37294", "3", "2016-09-06 10:10:30", "202.46.57.185", "14");
INSERT INTO `wp_gf_form_view` VALUES("37295", "13", "2016-09-06 10:10:32", "202.46.57.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("37296", "10", "2016-09-06 10:10:32", "202.46.57.185", "4");
INSERT INTO `wp_gf_form_view` VALUES("37297", "1", "2016-09-06 10:46:25", "195.162.4.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("37298", "3", "2016-09-06 11:30:45", "192.243.55.138", "31");
INSERT INTO `wp_gf_form_view` VALUES("37299", "13", "2016-09-06 11:30:47", "192.243.55.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("37300", "10", "2016-09-06 11:30:50", "192.243.55.138", "6");
INSERT INTO `wp_gf_form_view` VALUES("37301", "3", "2016-09-06 12:19:49", "178.137.17.180", "161");
INSERT INTO `wp_gf_form_view` VALUES("37302", "3", "2016-09-06 12:19:49", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37303", "3", "2016-09-06 12:19:49", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37304", "13", "2016-09-06 12:19:51", "178.137.17.180", "22");
INSERT INTO `wp_gf_form_view` VALUES("37305", "10", "2016-09-06 12:19:51", "178.137.17.180", "42");
INSERT INTO `wp_gf_form_view` VALUES("37306", "3", "2016-09-06 13:14:56", "194.187.170.106", "90");
INSERT INTO `wp_gf_form_view` VALUES("37307", "13", "2016-09-06 13:14:58", "194.187.170.106", "12");
INSERT INTO `wp_gf_form_view` VALUES("37308", "10", "2016-09-06 13:15:00", "194.187.170.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("37309", "1", "2016-09-06 13:16:48", "194.187.170.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("37310", "3", "2016-09-06 14:02:18", "202.46.58.161", "88");
INSERT INTO `wp_gf_form_view` VALUES("37311", "13", "2016-09-06 14:02:18", "202.46.58.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("37312", "10", "2016-09-06 14:02:19", "202.46.58.161", "36");
INSERT INTO `wp_gf_form_view` VALUES("37313", "8", "2016-09-06 14:56:20", "40.77.167.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("37314", "3", "2016-09-06 15:09:22", "202.46.56.197", "30");
INSERT INTO `wp_gf_form_view` VALUES("37315", "13", "2016-09-06 15:09:24", "202.46.56.197", "5");
INSERT INTO `wp_gf_form_view` VALUES("37316", "10", "2016-09-06 15:09:24", "202.46.56.197", "6");
INSERT INTO `wp_gf_form_view` VALUES("37317", "3", "2016-09-06 16:03:47", "24.69.146.30", "58");
INSERT INTO `wp_gf_form_view` VALUES("37318", "13", "2016-09-06 16:03:52", "24.69.146.30", "9");
INSERT INTO `wp_gf_form_view` VALUES("37319", "10", "2016-09-06 16:03:52", "24.69.146.30", "16");
INSERT INTO `wp_gf_form_view` VALUES("37320", "3", "2016-09-06 17:00:03", "207.6.120.182", "52");
INSERT INTO `wp_gf_form_view` VALUES("37321", "13", "2016-09-06 17:00:09", "207.6.120.182", "7");
INSERT INTO `wp_gf_form_view` VALUES("37322", "10", "2016-09-06 17:00:09", "207.6.120.182", "14");
INSERT INTO `wp_gf_form_view` VALUES("37323", "3", "2016-09-06 18:00:24", "134.249.72.6", "134");
INSERT INTO `wp_gf_form_view` VALUES("37324", "3", "2016-09-06 18:00:24", "134.249.72.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("37325", "3", "2016-09-06 18:00:24", "134.249.72.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("37326", "13", "2016-09-06 18:00:30", "134.249.72.6", "19");
INSERT INTO `wp_gf_form_view` VALUES("37327", "10", "2016-09-06 18:00:30", "134.249.72.6", "35");
INSERT INTO `wp_gf_form_view` VALUES("37328", "10", "2016-09-06 18:00:30", "134.249.72.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("37329", "3", "2016-09-06 19:15:14", "81.24.248.1", "176");
INSERT INTO `wp_gf_form_view` VALUES("37330", "13", "2016-09-06 19:15:15", "81.24.248.1", "21");
INSERT INTO `wp_gf_form_view` VALUES("37331", "10", "2016-09-06 19:15:15", "81.24.248.1", "46");
INSERT INTO `wp_gf_form_view` VALUES("37332", "3", "2016-09-06 20:06:19", "24.68.78.102", "84");
INSERT INTO `wp_gf_form_view` VALUES("37333", "13", "2016-09-06 20:06:23", "24.68.78.102", "12");
INSERT INTO `wp_gf_form_view` VALUES("37334", "10", "2016-09-06 20:06:23", "24.68.78.102", "24");
INSERT INTO `wp_gf_form_view` VALUES("37335", "1", "2016-09-06 20:53:02", "134.87.165.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("37336", "3", "2016-09-06 21:42:30", "24.244.32.220", "27");
INSERT INTO `wp_gf_form_view` VALUES("37337", "3", "2016-09-06 21:42:30", "24.244.32.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("37338", "13", "2016-09-06 21:42:35", "24.244.32.220", "3");
INSERT INTO `wp_gf_form_view` VALUES("37339", "13", "2016-09-06 21:42:35", "24.244.32.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("37340", "10", "2016-09-06 21:42:35", "24.244.32.220", "7");
INSERT INTO `wp_gf_form_view` VALUES("37341", "10", "2016-09-06 21:42:35", "24.244.32.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("37342", "3", "2016-09-06 22:03:11", "184.71.214.138", "42");
INSERT INTO `wp_gf_form_view` VALUES("37343", "13", "2016-09-06 22:03:14", "184.71.214.138", "6");
INSERT INTO `wp_gf_form_view` VALUES("37344", "10", "2016-09-06 22:03:14", "184.71.214.138", "13");
INSERT INTO `wp_gf_form_view` VALUES("37345", "3", "2016-09-06 23:01:08", "178.137.95.240", "69");
INSERT INTO `wp_gf_form_view` VALUES("37346", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("37347", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("37348", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("37349", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("37350", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("37351", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("37352", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("37353", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("37354", "13", "2016-09-06 23:01:11", "178.137.95.240", "11");
INSERT INTO `wp_gf_form_view` VALUES("37355", "10", "2016-09-06 23:01:11", "178.137.95.240", "22");
INSERT INTO `wp_gf_form_view` VALUES("37356", "3", "2016-09-07 00:07:36", "154.20.28.146", "55");
INSERT INTO `wp_gf_form_view` VALUES("37357", "13", "2016-09-07 00:07:39", "154.20.28.146", "8");
INSERT INTO `wp_gf_form_view` VALUES("37358", "10", "2016-09-07 00:07:39", "154.20.28.146", "16");
INSERT INTO `wp_gf_form_view` VALUES("37359", "13", "2016-09-07 01:09:33", "198.154.31.4", "39");
INSERT INTO `wp_gf_form_view` VALUES("37360", "3", "2016-09-07 01:09:38", "198.154.31.4", "254");
INSERT INTO `wp_gf_form_view` VALUES("37361", "10", "2016-09-07 01:09:38", "198.154.31.4", "72");
INSERT INTO `wp_gf_form_view` VALUES("37362", "11", "2016-09-07 01:41:45", "172.245.104.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("37363", "12", "2016-09-07 01:42:42", "172.245.104.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("37364", "2", "2016-09-07 01:44:07", "172.245.104.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("37365", "3", "2016-09-07 02:14:42", "68.180.230.169", "172");
INSERT INTO `wp_gf_form_view` VALUES("37366", "13", "2016-09-07 02:14:43", "68.180.230.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("37367", "10", "2016-09-07 02:14:45", "68.180.230.169", "61");
INSERT INTO `wp_gf_form_view` VALUES("37368", "12", "2016-09-07 02:18:08", "220.181.108.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("37369", "10", "2016-09-07 03:00:38", "108.180.5.170", "46");
INSERT INTO `wp_gf_form_view` VALUES("37370", "3", "2016-09-07 03:00:38", "108.180.5.170", "145");
INSERT INTO `wp_gf_form_view` VALUES("37371", "13", "2016-09-07 03:00:38", "108.180.5.170", "20");
INSERT INTO `wp_gf_form_view` VALUES("37372", "2", "2016-09-07 03:58:46", "202.46.57.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("37373", "3", "2016-09-07 04:00:17", "209.52.88.184", "121");
INSERT INTO `wp_gf_form_view` VALUES("37374", "13", "2016-09-07 04:00:17", "209.52.88.184", "17");
INSERT INTO `wp_gf_form_view` VALUES("37375", "10", "2016-09-07 04:00:17", "209.52.88.184", "36");
INSERT INTO `wp_gf_form_view` VALUES("37376", "12", "2016-09-07 04:10:06", "194.187.170.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("37377", "9", "2016-09-07 04:10:20", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("37378", "8", "2016-09-07 04:13:28", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("37379", "3", "2016-09-07 05:00:48", "154.20.7.2", "147");
INSERT INTO `wp_gf_form_view` VALUES("37380", "13", "2016-09-07 05:00:48", "154.20.7.2", "21");
INSERT INTO `wp_gf_form_view` VALUES("37381", "10", "2016-09-07 05:00:48", "154.20.7.2", "42");
INSERT INTO `wp_gf_form_view` VALUES("37382", "3", "2016-09-07 06:15:04", "163.172.51.123", "38");
INSERT INTO `wp_gf_form_view` VALUES("37383", "13", "2016-09-07 06:15:07", "163.172.51.123", "5");
INSERT INTO `wp_gf_form_view` VALUES("37384", "10", "2016-09-07 06:15:07", "163.172.51.123", "10");
INSERT INTO `wp_gf_form_view` VALUES("37385", "10", "2016-09-07 07:25:24", "157.55.39.139", "12");
INSERT INTO `wp_gf_form_view` VALUES("37386", "3", "2016-09-07 07:25:27", "157.55.39.139", "14");
INSERT INTO `wp_gf_form_view` VALUES("37387", "13", "2016-09-07 07:25:28", "157.55.39.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("37388", "3", "2016-09-07 09:26:33", "46.118.119.71", "69");
INSERT INTO `wp_gf_form_view` VALUES("37389", "3", "2016-09-07 09:26:33", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37390", "3", "2016-09-07 09:26:33", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37391", "13", "2016-09-07 09:26:41", "46.118.119.71", "9");
INSERT INTO `wp_gf_form_view` VALUES("37392", "13", "2016-09-07 09:26:41", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37393", "10", "2016-09-07 09:26:41", "46.118.119.71", "18");
INSERT INTO `wp_gf_form_view` VALUES("37394", "10", "2016-09-07 09:26:41", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37395", "10", "2016-09-07 09:26:41", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37396", "1", "2016-09-07 09:41:41", "64.137.253.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("37397", "3", "2016-09-07 10:41:49", "207.46.13.184", "517");
INSERT INTO `wp_gf_form_view` VALUES("37398", "13", "2016-09-07 10:41:53", "207.46.13.184", "76");
INSERT INTO `wp_gf_form_view` VALUES("37399", "10", "2016-09-07 10:41:53", "207.46.13.184", "157");
INSERT INTO `wp_gf_form_view` VALUES("37400", "7", "2016-09-07 10:42:10", "207.46.13.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("37401", "8", "2016-09-07 10:42:36", "157.55.39.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("37402", "6", "2016-09-07 10:43:07", "40.77.167.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("37403", "3", "2016-09-07 11:44:55", "66.249.79.104", "21");
INSERT INTO `wp_gf_form_view` VALUES("37404", "13", "2016-09-07 11:44:59", "66.249.79.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("37405", "10", "2016-09-07 11:44:59", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("37406", "3", "2016-09-07 12:13:34", "51.255.65.37", "22");
INSERT INTO `wp_gf_form_view` VALUES("37407", "13", "2016-09-07 12:13:37", "51.255.65.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("37408", "10", "2016-09-07 12:13:37", "51.255.65.37", "6");
INSERT INTO `wp_gf_form_view` VALUES("37409", "12", "2016-09-07 12:48:15", "216.244.66.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("37410", "3", "2016-09-07 13:30:33", "202.46.55.80", "66");
INSERT INTO `wp_gf_form_view` VALUES("37411", "13", "2016-09-07 13:30:36", "202.46.55.80", "9");
INSERT INTO `wp_gf_form_view` VALUES("37412", "10", "2016-09-07 13:30:36", "202.46.55.80", "26");
INSERT INTO `wp_gf_form_view` VALUES("37413", "1", "2016-09-07 13:31:29", "166.88.120.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("37414", "1", "2016-09-07 14:03:00", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("37415", "3", "2016-09-07 14:03:00", "155.133.43.8", "135");
INSERT INTO `wp_gf_form_view` VALUES("37416", "13", "2016-09-07 14:03:01", "155.133.43.8", "19");
INSERT INTO `wp_gf_form_view` VALUES("37417", "10", "2016-09-07 14:03:01", "155.133.43.8", "38");
INSERT INTO `wp_gf_form_view` VALUES("37418", "7", "2016-09-07 14:21:12", "207.46.13.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("37419", "3", "2016-09-07 15:08:00", "96.50.6.75", "107");
INSERT INTO `wp_gf_form_view` VALUES("37420", "13", "2016-09-07 15:08:00", "96.50.6.75", "15");
INSERT INTO `wp_gf_form_view` VALUES("37421", "10", "2016-09-07 15:08:01", "96.50.6.75", "30");
INSERT INTO `wp_gf_form_view` VALUES("37422", "1", "2016-09-07 15:52:32", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("37423", "3", "2016-09-07 16:04:07", "96.50.6.75", "74");
INSERT INTO `wp_gf_form_view` VALUES("37424", "13", "2016-09-07 16:04:09", "96.50.6.75", "10");
INSERT INTO `wp_gf_form_view` VALUES("37425", "10", "2016-09-07 16:04:09", "96.50.6.75", "20");
INSERT INTO `wp_gf_form_view` VALUES("37426", "3", "2016-09-07 17:16:46", "207.194.133.9", "383");
INSERT INTO `wp_gf_form_view` VALUES("37427", "13", "2016-09-07 17:16:57", "207.194.133.9", "55");
INSERT INTO `wp_gf_form_view` VALUES("37428", "10", "2016-09-07 17:16:58", "207.194.133.9", "116");
INSERT INTO `wp_gf_form_view` VALUES("37429", "1", "2016-09-07 17:39:30", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("37430", "11", "2016-09-07 17:49:59", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("37431", "12", "2016-09-07 17:52:05", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("37432", "2", "2016-09-07 17:53:42", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("37433", "3", "2016-09-07 18:33:17", "202.46.51.113", "45");
INSERT INTO `wp_gf_form_view` VALUES("37434", "13", "2016-09-07 18:33:20", "202.46.51.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("37435", "10", "2016-09-07 18:33:20", "202.46.51.113", "12");
INSERT INTO `wp_gf_form_view` VALUES("37436", "3", "2016-09-07 19:03:35", "178.137.17.180", "52");
INSERT INTO `wp_gf_form_view` VALUES("37437", "13", "2016-09-07 19:03:36", "178.137.17.180", "7");
INSERT INTO `wp_gf_form_view` VALUES("37438", "10", "2016-09-07 19:03:36", "178.137.17.180", "12");
INSERT INTO `wp_gf_form_view` VALUES("37439", "1", "2016-09-07 19:31:47", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("37440", "10", "2016-09-07 20:08:19", "40.78.101.121", "40");
INSERT INTO `wp_gf_form_view` VALUES("37441", "3", "2016-09-07 20:08:22", "40.78.101.121", "145");
INSERT INTO `wp_gf_form_view` VALUES("37442", "13", "2016-09-07 20:08:22", "40.78.101.121", "19");
INSERT INTO `wp_gf_form_view` VALUES("37443", "3", "2016-09-07 21:09:53", "134.249.232.160", "133");
INSERT INTO `wp_gf_form_view` VALUES("37444", "3", "2016-09-07 21:09:53", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37445", "3", "2016-09-07 21:09:53", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37446", "13", "2016-09-07 21:10:00", "134.249.232.160", "22");
INSERT INTO `wp_gf_form_view` VALUES("37447", "13", "2016-09-07 21:10:00", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37448", "10", "2016-09-07 21:10:00", "134.249.232.160", "36");
INSERT INTO `wp_gf_form_view` VALUES("37449", "10", "2016-09-07 21:10:00", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37450", "10", "2016-09-07 21:10:00", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37451", "1", "2016-09-07 21:27:00", "94.249.160.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("37452", "3", "2016-09-07 22:08:00", "144.76.71.83", "206");
INSERT INTO `wp_gf_form_view` VALUES("37453", "3", "2016-09-07 22:08:00", "144.76.71.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("37454", "3", "2016-09-07 22:08:00", "144.76.71.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("37455", "12", "2016-09-07 22:08:00", "144.76.71.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("37456", "13", "2016-09-07 22:08:01", "144.76.71.83", "30");
INSERT INTO `wp_gf_form_view` VALUES("37457", "10", "2016-09-07 22:08:01", "144.76.71.83", "59");
INSERT INTO `wp_gf_form_view` VALUES("37458", "11", "2016-09-07 22:08:01", "144.76.71.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("37459", "3", "2016-09-07 23:13:57", "202.46.53.192", "532");
INSERT INTO `wp_gf_form_view` VALUES("37460", "13", "2016-09-07 23:14:04", "202.46.53.192", "75");
INSERT INTO `wp_gf_form_view` VALUES("37461", "10", "2016-09-07 23:14:04", "202.46.53.192", "172");
INSERT INTO `wp_gf_form_view` VALUES("37462", "1", "2016-09-07 23:18:07", "106.75.128.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("37463", "11", "2016-09-07 23:35:13", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("37464", "2", "2016-09-07 23:36:04", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("37465", "12", "2016-09-07 23:39:17", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("37466", "13", "2016-09-08 00:01:05", "70.66.187.147", "13");
INSERT INTO `wp_gf_form_view` VALUES("37467", "10", "2016-09-08 00:01:05", "70.66.187.147", "26");
INSERT INTO `wp_gf_form_view` VALUES("37468", "3", "2016-09-08 00:08:06", "178.137.17.180", "57");
INSERT INTO `wp_gf_form_view` VALUES("37469", "1", "2016-09-08 00:27:40", "183.46.111.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("37470", "3", "2016-09-08 01:16:53", "46.118.119.71", "77");
INSERT INTO `wp_gf_form_view` VALUES("37471", "3", "2016-09-08 01:16:53", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37472", "13", "2016-09-08 01:16:54", "46.118.119.71", "13");
INSERT INTO `wp_gf_form_view` VALUES("37473", "10", "2016-09-08 01:16:54", "46.118.119.71", "21");
INSERT INTO `wp_gf_form_view` VALUES("37474", "10", "2016-09-08 01:16:54", "46.118.119.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37475", "3", "2016-09-08 02:12:37", "202.46.55.62", "127");
INSERT INTO `wp_gf_form_view` VALUES("37476", "13", "2016-09-08 02:12:38", "202.46.55.62", "20");
INSERT INTO `wp_gf_form_view` VALUES("37477", "10", "2016-09-08 02:12:38", "202.46.55.62", "36");
INSERT INTO `wp_gf_form_view` VALUES("37478", "3", "2016-09-08 03:09:30", "157.55.39.155", "37");
INSERT INTO `wp_gf_form_view` VALUES("37479", "13", "2016-09-08 03:09:31", "157.55.39.155", "5");
INSERT INTO `wp_gf_form_view` VALUES("37480", "10", "2016-09-08 03:09:31", "157.55.39.155", "10");
INSERT INTO `wp_gf_form_view` VALUES("37481", "9", "2016-09-08 03:25:29", "164.132.161.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("37482", "1", "2016-09-08 03:58:05", "61.134.36.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("37483", "10", "2016-09-08 04:21:53", "96.50.124.53", "55");
INSERT INTO `wp_gf_form_view` VALUES("37484", "3", "2016-09-08 04:21:55", "96.50.124.53", "190");
INSERT INTO `wp_gf_form_view` VALUES("37485", "13", "2016-09-08 04:21:55", "96.50.124.53", "27");
INSERT INTO `wp_gf_form_view` VALUES("37486", "11", "2016-09-08 04:31:44", "172.245.222.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("37487", "12", "2016-09-08 04:32:20", "172.245.222.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("37488", "2", "2016-09-08 04:33:11", "172.245.222.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("37489", "1", "2016-09-08 05:02:10", "94.249.160.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("37490", "3", "2016-09-08 05:02:11", "94.249.160.216", "70");
INSERT INTO `wp_gf_form_view` VALUES("37491", "13", "2016-09-08 05:02:13", "94.249.160.216", "10");
INSERT INTO `wp_gf_form_view` VALUES("37492", "10", "2016-09-08 05:02:13", "94.249.160.216", "20");
INSERT INTO `wp_gf_form_view` VALUES("37493", "3", "2016-09-08 06:20:33", "178.137.17.180", "26");
INSERT INTO `wp_gf_form_view` VALUES("37494", "3", "2016-09-08 06:20:33", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37495", "3", "2016-09-08 06:20:33", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37496", "13", "2016-09-08 06:20:35", "178.137.17.180", "4");
INSERT INTO `wp_gf_form_view` VALUES("37497", "10", "2016-09-08 06:20:35", "178.137.17.180", "9");
INSERT INTO `wp_gf_form_view` VALUES("37498", "3", "2016-09-08 07:02:33", "192.243.55.130", "22");
INSERT INTO `wp_gf_form_view` VALUES("37499", "13", "2016-09-08 07:02:34", "192.243.55.130", "3");
INSERT INTO `wp_gf_form_view` VALUES("37500", "10", "2016-09-08 07:02:34", "192.243.55.130", "6");
INSERT INTO `wp_gf_form_view` VALUES("37501", "3", "2016-09-08 08:02:22", "66.249.79.104", "1246");
INSERT INTO `wp_gf_form_view` VALUES("37502", "13", "2016-09-08 08:02:22", "66.249.79.104", "187");
INSERT INTO `wp_gf_form_view` VALUES("37503", "10", "2016-09-08 08:02:22", "66.249.79.104", "454");
INSERT INTO `wp_gf_form_view` VALUES("37504", "1", "2016-09-08 08:46:15", "104.131.204.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("37505", "11", "2016-09-08 08:46:39", "104.131.204.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("37506", "12", "2016-09-08 08:56:39", "104.131.204.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("37507", "3", "2016-09-08 09:00:11", "157.55.39.139", "2911");
INSERT INTO `wp_gf_form_view` VALUES("37508", "13", "2016-09-08 09:00:12", "157.55.39.139", "421");
INSERT INTO `wp_gf_form_view` VALUES("37509", "10", "2016-09-08 09:00:12", "157.55.39.139", "914");
INSERT INTO `wp_gf_form_view` VALUES("37510", "6", "2016-09-08 09:04:51", "104.131.204.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("37511", "9", "2016-09-08 09:13:45", "104.131.204.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("37512", "2", "2016-09-08 09:50:40", "104.131.204.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("37513", "13", "2016-09-08 10:00:15", "104.131.204.215", "34");
INSERT INTO `wp_gf_form_view` VALUES("37514", "3", "2016-09-08 10:00:15", "104.131.204.215", "224");
INSERT INTO `wp_gf_form_view` VALUES("37515", "10", "2016-09-08 10:00:17", "104.131.204.215", "76");
INSERT INTO `wp_gf_form_view` VALUES("37516", "8", "2016-09-08 10:04:14", "104.131.204.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("37517", "3", "2016-09-08 11:01:17", "5.255.250.37", "7");
INSERT INTO `wp_gf_form_view` VALUES("37518", "13", "2016-09-08 11:01:19", "5.255.250.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("37519", "10", "2016-09-08 11:01:19", "5.255.250.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("37520", "3", "2016-09-08 12:49:48", "45.72.76.37", "81");
INSERT INTO `wp_gf_form_view` VALUES("37521", "13", "2016-09-08 12:49:50", "45.72.76.37", "11");
INSERT INTO `wp_gf_form_view` VALUES("37522", "10", "2016-09-08 12:49:50", "45.72.76.37", "22");
INSERT INTO `wp_gf_form_view` VALUES("37523", "10", "2016-09-08 13:03:14", "96.50.58.1", "10");
INSERT INTO `wp_gf_form_view` VALUES("37524", "3", "2016-09-08 13:03:14", "96.50.58.1", "28");
INSERT INTO `wp_gf_form_view` VALUES("37525", "13", "2016-09-08 13:03:15", "96.50.58.1", "4");
INSERT INTO `wp_gf_form_view` VALUES("37526", "3", "2016-09-08 14:21:11", "192.243.55.137", "29");
INSERT INTO `wp_gf_form_view` VALUES("37527", "13", "2016-09-08 14:21:15", "192.243.55.137", "4");
INSERT INTO `wp_gf_form_view` VALUES("37528", "10", "2016-09-08 14:21:15", "192.243.55.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("37529", "3", "2016-09-08 15:01:42", "163.172.66.62", "42");
INSERT INTO `wp_gf_form_view` VALUES("37530", "13", "2016-09-08 15:01:42", "163.172.66.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("37531", "10", "2016-09-08 15:01:42", "163.172.66.62", "12");
INSERT INTO `wp_gf_form_view` VALUES("37532", "1", "2016-09-08 15:23:57", "163.172.66.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("37533", "3", "2016-09-08 16:05:14", "184.69.23.82", "50");
INSERT INTO `wp_gf_form_view` VALUES("37534", "13", "2016-09-08 16:05:15", "184.69.23.82", "7");
INSERT INTO `wp_gf_form_view` VALUES("37535", "10", "2016-09-08 16:05:15", "184.69.23.82", "14");
INSERT INTO `wp_gf_form_view` VALUES("37536", "3", "2016-09-08 17:05:53", "192.243.55.134", "15");
INSERT INTO `wp_gf_form_view` VALUES("37537", "13", "2016-09-08 17:05:54", "192.243.55.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("37538", "10", "2016-09-08 17:05:54", "192.243.55.134", "4");
INSERT INTO `wp_gf_form_view` VALUES("37539", "3", "2016-09-08 18:00:28", "77.75.78.164", "29");
INSERT INTO `wp_gf_form_view` VALUES("37540", "13", "2016-09-08 18:00:29", "77.75.78.164", "5");
INSERT INTO `wp_gf_form_view` VALUES("37541", "10", "2016-09-08 18:00:29", "77.75.78.164", "17");
INSERT INTO `wp_gf_form_view` VALUES("37542", "3", "2016-09-08 19:03:43", "157.55.39.139", "117");
INSERT INTO `wp_gf_form_view` VALUES("37543", "13", "2016-09-08 19:03:45", "157.55.39.139", "16");
INSERT INTO `wp_gf_form_view` VALUES("37544", "10", "2016-09-08 19:03:45", "157.55.39.139", "33");
INSERT INTO `wp_gf_form_view` VALUES("37545", "3", "2016-09-08 20:15:43", "68.180.231.26", "43");
INSERT INTO `wp_gf_form_view` VALUES("37546", "13", "2016-09-08 20:15:43", "68.180.231.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("37547", "10", "2016-09-08 20:15:43", "68.180.231.26", "13");
INSERT INTO `wp_gf_form_view` VALUES("37548", "3", "2016-09-08 21:03:32", "77.75.78.163", "460");
INSERT INTO `wp_gf_form_view` VALUES("37549", "13", "2016-09-08 21:03:33", "77.75.78.163", "67");
INSERT INTO `wp_gf_form_view` VALUES("37550", "10", "2016-09-08 21:03:33", "77.75.78.163", "139");
INSERT INTO `wp_gf_form_view` VALUES("37551", "2", "2016-09-08 21:09:00", "174.127.133.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("37552", "3", "2016-09-08 22:12:00", "157.55.39.56", "21");
INSERT INTO `wp_gf_form_view` VALUES("37553", "13", "2016-09-08 22:12:01", "157.55.39.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("37554", "10", "2016-09-08 22:12:01", "157.55.39.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("37555", "3", "2016-09-08 23:03:25", "202.46.58.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("37556", "13", "2016-09-08 23:03:28", "202.46.58.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("37557", "10", "2016-09-08 23:03:28", "202.46.58.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("37558", "3", "2016-09-09 00:09:21", "77.75.79.62", "73");
INSERT INTO `wp_gf_form_view` VALUES("37559", "13", "2016-09-09 00:09:22", "77.75.79.62", "10");
INSERT INTO `wp_gf_form_view` VALUES("37560", "10", "2016-09-09 00:09:22", "77.75.79.62", "23");
INSERT INTO `wp_gf_form_view` VALUES("37561", "3", "2016-09-09 01:09:59", "199.21.99.202", "65");
INSERT INTO `wp_gf_form_view` VALUES("37562", "13", "2016-09-09 01:09:59", "199.21.99.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("37563", "10", "2016-09-09 01:09:59", "199.21.99.202", "18");
INSERT INTO `wp_gf_form_view` VALUES("37564", "11", "2016-09-09 01:22:28", "51.255.65.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("37565", "3", "2016-09-09 02:22:07", "178.137.17.180", "20");
INSERT INTO `wp_gf_form_view` VALUES("37566", "3", "2016-09-09 02:22:07", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37567", "13", "2016-09-09 02:22:09", "178.137.17.180", "3");
INSERT INTO `wp_gf_form_view` VALUES("37568", "10", "2016-09-09 02:22:09", "178.137.17.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("37569", "1", "2016-09-09 03:15:52", "117.253.217.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("37570", "3", "2016-09-09 03:15:53", "117.253.217.223", "49");
INSERT INTO `wp_gf_form_view` VALUES("37571", "13", "2016-09-09 03:15:53", "117.253.217.223", "7");
INSERT INTO `wp_gf_form_view` VALUES("37572", "10", "2016-09-09 03:15:53", "117.253.217.223", "14");
INSERT INTO `wp_gf_form_view` VALUES("37573", "3", "2016-09-09 04:08:48", "173.183.122.234", "28");
INSERT INTO `wp_gf_form_view` VALUES("37574", "13", "2016-09-09 04:08:48", "173.183.122.234", "4");
INSERT INTO `wp_gf_form_view` VALUES("37575", "10", "2016-09-09 04:08:48", "173.183.122.234", "8");
INSERT INTO `wp_gf_form_view` VALUES("37576", "3", "2016-09-09 05:08:04", "220.181.108.146", "7");
INSERT INTO `wp_gf_form_view` VALUES("37577", "13", "2016-09-09 05:08:05", "220.181.108.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("37578", "10", "2016-09-09 05:08:05", "220.181.108.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("37579", "3", "2016-09-09 06:49:22", "178.137.17.180", "19");
INSERT INTO `wp_gf_form_view` VALUES("37580", "3", "2016-09-09 06:49:22", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37581", "3", "2016-09-09 06:49:22", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37582", "13", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37583", "13", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37584", "13", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37585", "10", "2016-09-09 06:49:25", "178.137.17.180", "4");
INSERT INTO `wp_gf_form_view` VALUES("37586", "10", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37587", "10", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37588", "3", "2016-09-09 07:38:23", "202.46.53.121", "14");
INSERT INTO `wp_gf_form_view` VALUES("37589", "13", "2016-09-09 07:38:24", "202.46.53.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("37590", "10", "2016-09-09 07:38:24", "202.46.53.121", "4");
INSERT INTO `wp_gf_form_view` VALUES("37591", "3", "2016-09-09 08:05:51", "96.54.188.116", "72");
INSERT INTO `wp_gf_form_view` VALUES("37592", "13", "2016-09-09 08:05:53", "96.54.188.116", "10");
INSERT INTO `wp_gf_form_view` VALUES("37593", "10", "2016-09-09 08:05:53", "96.54.188.116", "20");
INSERT INTO `wp_gf_form_view` VALUES("37594", "1", "2016-09-09 08:21:32", "23.245.238.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("37595", "3", "2016-09-09 09:00:29", "202.46.58.122", "30");
INSERT INTO `wp_gf_form_view` VALUES("37596", "13", "2016-09-09 09:00:29", "202.46.58.122", "4");
INSERT INTO `wp_gf_form_view` VALUES("37597", "10", "2016-09-09 09:00:29", "202.46.58.122", "8");
INSERT INTO `wp_gf_form_view` VALUES("37598", "3", "2016-09-09 10:09:02", "163.172.65.38", "28");
INSERT INTO `wp_gf_form_view` VALUES("37599", "13", "2016-09-09 10:09:03", "163.172.65.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("37600", "10", "2016-09-09 10:09:03", "163.172.65.38", "8");
INSERT INTO `wp_gf_form_view` VALUES("37601", "3", "2016-09-09 11:10:36", "202.46.58.74", "49");
INSERT INTO `wp_gf_form_view` VALUES("37602", "13", "2016-09-09 11:10:36", "202.46.58.74", "7");
INSERT INTO `wp_gf_form_view` VALUES("37603", "10", "2016-09-09 11:10:36", "202.46.58.74", "14");
INSERT INTO `wp_gf_form_view` VALUES("37604", "3", "2016-09-09 12:03:35", "51.255.65.57", "76");
INSERT INTO `wp_gf_form_view` VALUES("37605", "13", "2016-09-09 12:03:36", "51.255.65.57", "10");
INSERT INTO `wp_gf_form_view` VALUES("37606", "10", "2016-09-09 12:03:36", "51.255.65.57", "20");
INSERT INTO `wp_gf_form_view` VALUES("37607", "3", "2016-09-09 13:02:12", "134.249.141.83", "33");
INSERT INTO `wp_gf_form_view` VALUES("37608", "13", "2016-09-09 13:02:12", "134.249.141.83", "5");
INSERT INTO `wp_gf_form_view` VALUES("37609", "10", "2016-09-09 13:02:12", "134.249.141.83", "10");
INSERT INTO `wp_gf_form_view` VALUES("37610", "3", "2016-09-09 14:12:59", "68.180.231.26", "79");
INSERT INTO `wp_gf_form_view` VALUES("37611", "13", "2016-09-09 14:13:00", "68.180.231.26", "11");
INSERT INTO `wp_gf_form_view` VALUES("37612", "10", "2016-09-09 14:13:00", "68.180.231.26", "23");
INSERT INTO `wp_gf_form_view` VALUES("37613", "11", "2016-09-09 14:20:55", "68.180.231.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("37614", "1", "2016-09-09 14:22:49", "154.20.7.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("37615", "3", "2016-09-09 15:10:35", "163.172.66.62", "85");
INSERT INTO `wp_gf_form_view` VALUES("37616", "13", "2016-09-09 15:10:39", "163.172.66.62", "12");
INSERT INTO `wp_gf_form_view` VALUES("37617", "10", "2016-09-09 15:10:39", "163.172.66.62", "24");
INSERT INTO `wp_gf_form_view` VALUES("37618", "10", "2016-09-09 16:11:07", "104.142.123.174", "24");
INSERT INTO `wp_gf_form_view` VALUES("37619", "3", "2016-09-09 16:11:09", "104.142.123.174", "77");
INSERT INTO `wp_gf_form_view` VALUES("37620", "13", "2016-09-09 16:11:09", "104.142.123.174", "11");
INSERT INTO `wp_gf_form_view` VALUES("37621", "11", "2016-09-09 16:49:40", "64.114.29.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("37622", "3", "2016-09-09 17:05:32", "163.172.66.83", "71");
INSERT INTO `wp_gf_form_view` VALUES("37623", "13", "2016-09-09 17:05:33", "163.172.66.83", "10");
INSERT INTO `wp_gf_form_view` VALUES("37624", "10", "2016-09-09 17:05:33", "163.172.66.83", "20");
INSERT INTO `wp_gf_form_view` VALUES("37625", "3", "2016-09-09 18:10:58", "202.46.54.184", "45");
INSERT INTO `wp_gf_form_view` VALUES("37626", "13", "2016-09-09 18:11:00", "202.46.54.184", "6");
INSERT INTO `wp_gf_form_view` VALUES("37627", "10", "2016-09-09 18:11:00", "202.46.54.184", "12");
INSERT INTO `wp_gf_form_view` VALUES("37628", "2", "2016-09-09 18:30:02", "163.172.66.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("37629", "3", "2016-09-09 19:04:19", "68.180.231.26", "31");
INSERT INTO `wp_gf_form_view` VALUES("37630", "13", "2016-09-09 19:04:22", "68.180.231.26", "4");
INSERT INTO `wp_gf_form_view` VALUES("37631", "10", "2016-09-09 19:04:22", "68.180.231.26", "8");
INSERT INTO `wp_gf_form_view` VALUES("37632", "3", "2016-09-09 20:31:54", "164.132.161.58", "7");
INSERT INTO `wp_gf_form_view` VALUES("37633", "13", "2016-09-09 20:31:56", "164.132.161.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("37634", "10", "2016-09-09 20:31:56", "164.132.161.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("37635", "3", "2016-09-09 21:19:32", "202.46.53.174", "42");
INSERT INTO `wp_gf_form_view` VALUES("37636", "13", "2016-09-09 21:19:38", "202.46.53.174", "6");
INSERT INTO `wp_gf_form_view` VALUES("37637", "10", "2016-09-09 21:19:38", "202.46.53.174", "13");
INSERT INTO `wp_gf_form_view` VALUES("37638", "3", "2016-09-09 22:01:10", "68.180.231.26", "84");
INSERT INTO `wp_gf_form_view` VALUES("37639", "13", "2016-09-09 22:01:11", "68.180.231.26", "12");
INSERT INTO `wp_gf_form_view` VALUES("37640", "10", "2016-09-09 22:01:11", "68.180.231.26", "24");
INSERT INTO `wp_gf_form_view` VALUES("37641", "3", "2016-09-09 23:14:09", "142.104.240.37", "49");
INSERT INTO `wp_gf_form_view` VALUES("37642", "13", "2016-09-09 23:14:17", "142.104.240.37", "7");
INSERT INTO `wp_gf_form_view` VALUES("37643", "10", "2016-09-09 23:14:17", "142.104.240.37", "13");
INSERT INTO `wp_gf_form_view` VALUES("37644", "10", "2016-09-09 23:14:17", "142.104.240.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("37645", "3", "2016-09-10 00:42:25", "202.46.53.158", "7");
INSERT INTO `wp_gf_form_view` VALUES("37646", "13", "2016-09-10 00:42:27", "202.46.53.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("37647", "10", "2016-09-10 00:42:27", "202.46.53.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("37648", "3", "2016-09-10 01:03:35", "68.180.231.26", "36");
INSERT INTO `wp_gf_form_view` VALUES("37649", "13", "2016-09-10 01:03:35", "68.180.231.26", "5");
INSERT INTO `wp_gf_form_view` VALUES("37650", "10", "2016-09-10 01:03:35", "68.180.231.26", "10");
INSERT INTO `wp_gf_form_view` VALUES("37651", "3", "2016-09-10 02:04:32", "157.55.39.249", "44");
INSERT INTO `wp_gf_form_view` VALUES("37652", "13", "2016-09-10 02:04:33", "157.55.39.249", "6");
INSERT INTO `wp_gf_form_view` VALUES("37653", "10", "2016-09-10 02:04:33", "157.55.39.249", "12");
INSERT INTO `wp_gf_form_view` VALUES("37654", "1", "2016-09-10 02:27:11", "154.20.7.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("37655", "3", "2016-09-10 03:08:05", "66.249.79.112", "79");
INSERT INTO `wp_gf_form_view` VALUES("37656", "13", "2016-09-10 03:08:05", "66.249.79.112", "11");
INSERT INTO `wp_gf_form_view` VALUES("37657", "10", "2016-09-10 03:08:05", "66.249.79.112", "22");
INSERT INTO `wp_gf_form_view` VALUES("37658", "1", "2016-09-10 03:23:15", "5.230.133.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("37659", "3", "2016-09-10 04:01:05", "108.180.119.62", "28");
INSERT INTO `wp_gf_form_view` VALUES("37660", "13", "2016-09-10 04:01:05", "108.180.119.62", "4");
INSERT INTO `wp_gf_form_view` VALUES("37661", "10", "2016-09-10 04:01:05", "108.180.119.62", "8");
INSERT INTO `wp_gf_form_view` VALUES("37662", "13", "2016-09-10 05:18:57", "68.180.231.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("37663", "3", "2016-09-10 05:18:59", "68.180.231.26", "36");
INSERT INTO `wp_gf_form_view` VALUES("37664", "10", "2016-09-10 05:19:00", "68.180.231.26", "10");
INSERT INTO `wp_gf_form_view` VALUES("37665", "6", "2016-09-10 05:42:33", "5.9.17.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("37666", "3", "2016-09-10 06:18:25", "163.172.66.108", "63");
INSERT INTO `wp_gf_form_view` VALUES("37667", "13", "2016-09-10 06:18:27", "163.172.66.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("37668", "10", "2016-09-10 06:18:27", "163.172.66.108", "19");
INSERT INTO `wp_gf_form_view` VALUES("37669", "3", "2016-09-10 07:30:06", "207.46.13.101", "507");
INSERT INTO `wp_gf_form_view` VALUES("37670", "13", "2016-09-10 07:30:09", "207.46.13.101", "74");
INSERT INTO `wp_gf_form_view` VALUES("37671", "10", "2016-09-10 07:30:09", "207.46.13.101", "157");
INSERT INTO `wp_gf_form_view` VALUES("37672", "11", "2016-09-10 07:48:23", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("37673", "2", "2016-09-10 07:48:28", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("37674", "12", "2016-09-10 07:50:44", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("37675", "1", "2016-09-10 07:51:09", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("37676", "3", "2016-09-10 08:13:15", "202.46.54.33", "29");
INSERT INTO `wp_gf_form_view` VALUES("37677", "13", "2016-09-10 08:13:16", "202.46.54.33", "4");
INSERT INTO `wp_gf_form_view` VALUES("37678", "10", "2016-09-10 08:13:16", "202.46.54.33", "8");
INSERT INTO `wp_gf_form_view` VALUES("37679", "3", "2016-09-10 09:02:46", "178.137.17.180", "49");
INSERT INTO `wp_gf_form_view` VALUES("37680", "3", "2016-09-10 09:02:46", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37681", "13", "2016-09-10 09:02:47", "178.137.17.180", "7");
INSERT INTO `wp_gf_form_view` VALUES("37682", "10", "2016-09-10 09:02:47", "178.137.17.180", "13");
INSERT INTO `wp_gf_form_view` VALUES("37683", "10", "2016-09-10 09:02:47", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37684", "3", "2016-09-10 10:27:18", "202.46.54.93", "14");
INSERT INTO `wp_gf_form_view` VALUES("37685", "13", "2016-09-10 10:27:20", "202.46.54.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("37686", "10", "2016-09-10 10:27:20", "202.46.54.93", "4");
INSERT INTO `wp_gf_form_view` VALUES("37687", "12", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37688", "11", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37689", "2", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37690", "3", "2016-09-10 11:23:09", "104.131.61.71", "162");
INSERT INTO `wp_gf_form_view` VALUES("37691", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37692", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37693", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37694", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37695", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37696", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37697", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37698", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37699", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37700", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("37701", "13", "2016-09-10 11:23:18", "104.131.61.71", "24");
INSERT INTO `wp_gf_form_view` VALUES("37702", "10", "2016-09-10 11:23:18", "104.131.61.71", "48");
INSERT INTO `wp_gf_form_view` VALUES("37703", "1", "2016-09-10 11:52:25", "173.254.247.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("37704", "3", "2016-09-10 12:23:03", "41.73.213.130", "14");
INSERT INTO `wp_gf_form_view` VALUES("37705", "13", "2016-09-10 12:23:05", "41.73.213.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("37706", "10", "2016-09-10 12:23:05", "41.73.213.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("37707", "3", "2016-09-10 13:08:02", "178.137.164.15", "56");
INSERT INTO `wp_gf_form_view` VALUES("37708", "3", "2016-09-10 13:08:02", "178.137.164.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("37709", "13", "2016-09-10 13:08:04", "178.137.164.15", "8");
INSERT INTO `wp_gf_form_view` VALUES("37710", "10", "2016-09-10 13:08:04", "178.137.164.15", "16");
INSERT INTO `wp_gf_form_view` VALUES("37711", "10", "2016-09-10 13:08:04", "178.137.164.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("37712", "13", "2016-09-10 14:14:58", "68.180.231.26", "4");
INSERT INTO `wp_gf_form_view` VALUES("37713", "10", "2016-09-10 14:14:58", "68.180.231.26", "7");
INSERT INTO `wp_gf_form_view` VALUES("37714", "3", "2016-09-10 14:35:39", "220.181.108.178", "22");
INSERT INTO `wp_gf_form_view` VALUES("37715", "3", "2016-09-10 15:05:36", "68.180.231.26", "219");
INSERT INTO `wp_gf_form_view` VALUES("37716", "13", "2016-09-10 15:05:37", "68.180.231.26", "31");
INSERT INTO `wp_gf_form_view` VALUES("37717", "10", "2016-09-10 15:05:37", "68.180.231.26", "61");
INSERT INTO `wp_gf_form_view` VALUES("37718", "2", "2016-09-10 15:50:25", "138.201.57.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("37719", "1", "2016-09-10 15:53:28", "138.201.57.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("37720", "11", "2016-09-10 15:57:43", "138.201.57.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("37721", "3", "2016-09-10 16:00:18", "138.201.57.139", "494");
INSERT INTO `wp_gf_form_view` VALUES("37722", "13", "2016-09-10 16:00:18", "138.201.57.139", "71");
INSERT INTO `wp_gf_form_view` VALUES("37723", "10", "2016-09-10 16:00:18", "138.201.57.139", "141");
INSERT INTO `wp_gf_form_view` VALUES("37724", "12", "2016-09-10 16:06:48", "138.201.57.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("37725", "1", "2016-09-10 16:07:23", "23.89.206.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("37726", "11", "2016-09-10 16:09:45", "138.201.57.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("37727", "13", "2016-09-10 17:11:16", "220.181.108.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("37728", "3", "2016-09-10 17:11:18", "220.181.108.77", "35");
INSERT INTO `wp_gf_form_view` VALUES("37729", "10", "2016-09-10 17:11:19", "220.181.108.77", "10");
INSERT INTO `wp_gf_form_view` VALUES("37730", "3", "2016-09-10 18:15:29", "96.50.28.110", "81");
INSERT INTO `wp_gf_form_view` VALUES("37731", "13", "2016-09-10 18:15:30", "96.50.28.110", "12");
INSERT INTO `wp_gf_form_view` VALUES("37732", "10", "2016-09-10 18:15:31", "96.50.28.110", "22");
INSERT INTO `wp_gf_form_view` VALUES("37733", "3", "2016-09-10 19:18:17", "154.20.31.141", "28");
INSERT INTO `wp_gf_form_view` VALUES("37734", "13", "2016-09-10 19:18:20", "154.20.31.141", "4");
INSERT INTO `wp_gf_form_view` VALUES("37735", "10", "2016-09-10 19:18:20", "154.20.31.141", "8");
INSERT INTO `wp_gf_form_view` VALUES("37736", "1", "2016-09-10 19:43:46", "130.204.207.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("37737", "1", "2016-09-10 20:03:38", "89.185.217.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("37738", "3", "2016-09-10 20:03:39", "89.185.217.248", "28");
INSERT INTO `wp_gf_form_view` VALUES("37739", "13", "2016-09-10 20:03:40", "89.185.217.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("37740", "10", "2016-09-10 20:03:40", "89.185.217.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("37741", "3", "2016-09-10 21:07:40", "202.46.55.175", "15");
INSERT INTO `wp_gf_form_view` VALUES("37742", "13", "2016-09-10 21:07:43", "202.46.55.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("37743", "10", "2016-09-10 21:07:43", "202.46.55.175", "4");
INSERT INTO `wp_gf_form_view` VALUES("37744", "3", "2016-09-10 22:15:54", "51.255.66.160", "43");
INSERT INTO `wp_gf_form_view` VALUES("37745", "13", "2016-09-10 22:15:56", "51.255.66.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("37746", "10", "2016-09-10 22:15:56", "51.255.66.160", "12");
INSERT INTO `wp_gf_form_view` VALUES("37747", "1", "2016-09-10 22:33:32", "68.180.231.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("37748", "3", "2016-09-10 23:32:54", "68.180.231.26", "7");
INSERT INTO `wp_gf_form_view` VALUES("37749", "13", "2016-09-10 23:32:57", "68.180.231.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("37750", "10", "2016-09-10 23:32:58", "68.180.231.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("37751", "3", "2016-09-11 00:21:43", "77.75.77.54", "43");
INSERT INTO `wp_gf_form_view` VALUES("37752", "13", "2016-09-11 00:21:46", "77.75.77.54", "6");
INSERT INTO `wp_gf_form_view` VALUES("37753", "10", "2016-09-11 00:21:46", "77.75.77.54", "12");
INSERT INTO `wp_gf_form_view` VALUES("37754", "3", "2016-09-11 01:07:12", "70.67.51.254", "114");
INSERT INTO `wp_gf_form_view` VALUES("37755", "13", "2016-09-11 01:07:13", "70.67.51.254", "15");
INSERT INTO `wp_gf_form_view` VALUES("37756", "10", "2016-09-11 01:07:13", "70.67.51.254", "30");
INSERT INTO `wp_gf_form_view` VALUES("37757", "1", "2016-09-11 01:55:01", "130.204.207.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("37758", "5", "2016-09-11 01:57:56", "77.75.76.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("37759", "3", "2016-09-11 02:47:39", "163.172.64.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("37760", "13", "2016-09-11 02:47:42", "163.172.64.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("37761", "10", "2016-09-11 02:47:42", "163.172.64.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("37762", "3", "2016-09-11 03:03:39", "217.69.133.229", "157");
INSERT INTO `wp_gf_form_view` VALUES("37763", "13", "2016-09-11 03:03:39", "217.69.133.229", "19");
INSERT INTO `wp_gf_form_view` VALUES("37764", "10", "2016-09-11 03:03:39", "217.69.133.229", "45");
INSERT INTO `wp_gf_form_view` VALUES("37765", "3", "2016-09-11 04:00:08", "134.249.232.160", "42");
INSERT INTO `wp_gf_form_view` VALUES("37766", "13", "2016-09-11 04:00:09", "134.249.232.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("37767", "10", "2016-09-11 04:00:09", "134.249.232.160", "12");
INSERT INTO `wp_gf_form_view` VALUES("37768", "1", "2016-09-11 04:53:24", "107.172.153.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("37769", "3", "2016-09-11 05:47:39", "66.249.79.112", "8");
INSERT INTO `wp_gf_form_view` VALUES("37770", "13", "2016-09-11 05:47:41", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("37771", "10", "2016-09-11 05:47:41", "66.249.79.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("37772", "3", "2016-09-11 06:04:14", "51.255.65.76", "58");
INSERT INTO `wp_gf_form_view` VALUES("37773", "13", "2016-09-11 06:04:21", "51.255.65.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("37774", "10", "2016-09-11 06:04:21", "51.255.65.76", "16");
INSERT INTO `wp_gf_form_view` VALUES("37775", "3", "2016-09-11 07:15:43", "202.46.49.76", "28");
INSERT INTO `wp_gf_form_view` VALUES("37776", "13", "2016-09-11 07:15:43", "202.46.49.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("37777", "10", "2016-09-11 07:15:43", "202.46.49.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("37778", "3", "2016-09-11 08:10:46", "134.249.232.160", "962");
INSERT INTO `wp_gf_form_view` VALUES("37779", "3", "2016-09-11 08:10:46", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37780", "3", "2016-09-11 08:10:46", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37781", "13", "2016-09-11 08:10:47", "134.249.232.160", "129");
INSERT INTO `wp_gf_form_view` VALUES("37782", "13", "2016-09-11 08:10:47", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37783", "13", "2016-09-11 08:10:47", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37784", "10", "2016-09-11 08:10:47", "134.249.232.160", "268");
INSERT INTO `wp_gf_form_view` VALUES("37785", "10", "2016-09-11 08:10:47", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37786", "10", "2016-09-11 08:10:47", "134.249.232.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("37787", "9", "2016-09-11 08:42:11", "40.77.167.46", "5");
INSERT INTO `wp_gf_form_view` VALUES("37788", "12", "2016-09-11 08:42:42", "40.77.167.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("37789", "8", "2016-09-11 08:42:50", "40.77.167.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("37790", "6", "2016-09-11 08:43:25", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("37791", "5", "2016-09-11 08:43:44", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("37792", "3", "2016-09-11 09:09:20", "164.132.161.31", "30");
INSERT INTO `wp_gf_form_view` VALUES("37793", "13", "2016-09-11 09:09:25", "164.132.161.31", "4");
INSERT INTO `wp_gf_form_view` VALUES("37794", "10", "2016-09-11 09:09:25", "164.132.161.31", "8");
INSERT INTO `wp_gf_form_view` VALUES("37795", "3", "2016-09-11 10:14:04", "46.118.119.71", "75");
INSERT INTO `wp_gf_form_view` VALUES("37796", "13", "2016-09-11 10:14:05", "46.118.119.71", "11");
INSERT INTO `wp_gf_form_view` VALUES("37797", "10", "2016-09-11 10:14:05", "46.118.119.71", "19");
INSERT INTO `wp_gf_form_view` VALUES("37798", "1", "2016-09-11 10:46:32", "94.249.160.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("37799", "3", "2016-09-11 11:18:56", "164.132.161.15", "21");
INSERT INTO `wp_gf_form_view` VALUES("37800", "13", "2016-09-11 11:19:00", "164.132.161.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("37801", "10", "2016-09-11 11:19:00", "164.132.161.15", "7");
INSERT INTO `wp_gf_form_view` VALUES("37802", "1", "2016-09-11 12:26:24", "89.185.217.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("37803", "3", "2016-09-11 12:26:24", "89.185.217.248", "22");
INSERT INTO `wp_gf_form_view` VALUES("37804", "13", "2016-09-11 12:26:25", "89.185.217.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("37805", "10", "2016-09-11 12:26:25", "89.185.217.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("37806", "3", "2016-09-11 13:27:05", "66.249.79.108", "63");
INSERT INTO `wp_gf_form_view` VALUES("37807", "13", "2016-09-11 13:27:06", "66.249.79.108", "11");
INSERT INTO `wp_gf_form_view` VALUES("37808", "10", "2016-09-11 13:27:06", "66.249.79.108", "15");
INSERT INTO `wp_gf_form_view` VALUES("37809", "3", "2016-09-11 14:31:16", "202.46.53.17", "14");
INSERT INTO `wp_gf_form_view` VALUES("37810", "13", "2016-09-11 14:31:17", "202.46.53.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("37811", "10", "2016-09-11 14:31:17", "202.46.53.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("37812", "10", "2016-09-11 15:26:11", "157.55.39.196", "13");
INSERT INTO `wp_gf_form_view` VALUES("37813", "3", "2016-09-11 15:26:15", "157.55.39.196", "43");
INSERT INTO `wp_gf_form_view` VALUES("37814", "13", "2016-09-11 15:26:16", "157.55.39.196", "6");
INSERT INTO `wp_gf_form_view` VALUES("37815", "3", "2016-09-11 16:11:47", "202.46.48.204", "21");
INSERT INTO `wp_gf_form_view` VALUES("37816", "13", "2016-09-11 16:11:50", "202.46.48.204", "3");
INSERT INTO `wp_gf_form_view` VALUES("37817", "10", "2016-09-11 16:11:50", "202.46.48.204", "6");
INSERT INTO `wp_gf_form_view` VALUES("37818", "3", "2016-09-11 17:18:46", "202.46.57.203", "36");
INSERT INTO `wp_gf_form_view` VALUES("37819", "13", "2016-09-11 17:18:50", "202.46.57.203", "5");
INSERT INTO `wp_gf_form_view` VALUES("37820", "10", "2016-09-11 17:18:50", "202.46.57.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("37821", "1", "2016-09-11 17:20:54", "155.94.245.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("37822", "3", "2016-09-11 18:11:47", "23.80.167.189", "64");
INSERT INTO `wp_gf_form_view` VALUES("37823", "13", "2016-09-11 18:11:48", "23.80.167.189", "9");
INSERT INTO `wp_gf_form_view` VALUES("37824", "10", "2016-09-11 18:11:48", "23.80.167.189", "18");
INSERT INTO `wp_gf_form_view` VALUES("37825", "1", "2016-09-11 19:02:26", "107.172.150.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("37826", "3", "2016-09-11 19:02:27", "107.172.150.44", "77");
INSERT INTO `wp_gf_form_view` VALUES("37827", "13", "2016-09-11 19:02:27", "107.172.150.44", "11");
INSERT INTO `wp_gf_form_view` VALUES("37828", "10", "2016-09-11 19:02:27", "107.172.150.44", "22");
INSERT INTO `wp_gf_form_view` VALUES("37829", "3", "2016-09-11 20:05:20", "24.108.6.187", "28");
INSERT INTO `wp_gf_form_view` VALUES("37830", "13", "2016-09-11 20:05:21", "24.108.6.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("37831", "10", "2016-09-11 20:05:21", "24.108.6.187", "8");
INSERT INTO `wp_gf_form_view` VALUES("37832", "1", "2016-09-11 20:06:52", "195.162.4.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("37833", "3", "2016-09-11 21:22:12", "68.180.231.26", "70");
INSERT INTO `wp_gf_form_view` VALUES("37834", "13", "2016-09-11 21:22:14", "68.180.231.26", "10");
INSERT INTO `wp_gf_form_view` VALUES("37835", "10", "2016-09-11 21:22:14", "68.180.231.26", "20");
INSERT INTO `wp_gf_form_view` VALUES("37836", "2", "2016-09-11 22:03:02", "68.180.231.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("37837", "3", "2016-09-11 22:03:02", "68.180.231.26", "50");
INSERT INTO `wp_gf_form_view` VALUES("37838", "13", "2016-09-11 22:03:03", "68.180.231.26", "7");
INSERT INTO `wp_gf_form_view` VALUES("37839", "10", "2016-09-11 22:03:03", "68.180.231.26", "14");
INSERT INTO `wp_gf_form_view` VALUES("37840", "10", "2016-09-11 23:00:49", "70.66.180.119", "57");
INSERT INTO `wp_gf_form_view` VALUES("37841", "3", "2016-09-11 23:00:54", "70.66.180.119", "193");
INSERT INTO `wp_gf_form_view` VALUES("37842", "13", "2016-09-11 23:00:54", "70.66.180.119", "27");
INSERT INTO `wp_gf_form_view` VALUES("37843", "1", "2016-09-11 23:08:37", "162.216.46.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("37844", "10", "2016-09-12 00:09:09", "54.211.194.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("37845", "3", "2016-09-12 00:09:11", "54.211.194.119", "14");
INSERT INTO `wp_gf_form_view` VALUES("37846", "13", "2016-09-12 00:09:11", "54.211.194.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("37847", "3", "2016-09-12 01:05:45", "154.20.30.93", "105");
INSERT INTO `wp_gf_form_view` VALUES("37848", "13", "2016-09-12 01:05:46", "154.20.30.93", "15");
INSERT INTO `wp_gf_form_view` VALUES("37849", "10", "2016-09-12 01:05:46", "154.20.30.93", "29");
INSERT INTO `wp_gf_form_view` VALUES("37850", "7", "2016-09-12 01:28:14", "68.180.231.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("37851", "8", "2016-09-12 01:30:52", "157.55.39.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("37852", "1", "2016-09-12 02:04:44", "192.99.166.236", "8");
INSERT INTO `wp_gf_form_view` VALUES("37853", "3", "2016-09-12 02:04:44", "192.99.166.236", "158");
INSERT INTO `wp_gf_form_view` VALUES("37854", "13", "2016-09-12 02:04:45", "192.99.166.236", "22");
INSERT INTO `wp_gf_form_view` VALUES("37855", "10", "2016-09-12 02:04:45", "192.99.166.236", "44");
INSERT INTO `wp_gf_form_view` VALUES("37856", "3", "2016-09-12 03:23:45", "66.249.79.104", "44");
INSERT INTO `wp_gf_form_view` VALUES("37857", "13", "2016-09-12 03:23:46", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("37858", "10", "2016-09-12 03:23:46", "66.249.79.104", "13");
INSERT INTO `wp_gf_form_view` VALUES("37859", "3", "2016-09-12 04:07:12", "178.137.17.180", "49");
INSERT INTO `wp_gf_form_view` VALUES("37860", "3", "2016-09-12 04:07:12", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37861", "3", "2016-09-12 04:07:12", "178.137.17.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("37862", "13", "2016-09-12 04:07:13", "178.137.17.180", "7");
INSERT INTO `wp_gf_form_view` VALUES("37863", "10", "2016-09-12 04:07:13", "178.137.17.180", "15");
INSERT INTO `wp_gf_form_view` VALUES("37864", "3", "2016-09-12 05:09:18", "66.249.79.112", "30");
INSERT INTO `wp_gf_form_view` VALUES("37865", "13", "2016-09-12 05:09:18", "66.249.79.112", "4");
INSERT INTO `wp_gf_form_view` VALUES("37866", "10", "2016-09-12 05:09:18", "66.249.79.112", "8");
INSERT INTO `wp_gf_form_view` VALUES("37867", "3", "2016-09-12 06:04:26", "162.217.234.153", "127");
INSERT INTO `wp_gf_form_view` VALUES("37868", "13", "2016-09-12 06:04:27", "162.217.234.153", "19");
INSERT INTO `wp_gf_form_view` VALUES("37869", "10", "2016-09-12 06:04:27", "162.217.234.153", "36");
INSERT INTO `wp_gf_form_view` VALUES("37870", "3", "2016-09-12 07:22:02", "99.199.2.129", "42");
INSERT INTO `wp_gf_form_view` VALUES("37871", "13", "2016-09-12 07:22:04", "99.199.2.129", "6");
INSERT INTO `wp_gf_form_view` VALUES("37872", "10", "2016-09-12 07:22:04", "99.199.2.129", "13");
INSERT INTO `wp_gf_form_view` VALUES("37873", "3", "2016-09-12 08:05:15", "24.68.42.124", "53");
INSERT INTO `wp_gf_form_view` VALUES("37874", "3", "2016-09-12 08:05:15", "24.68.42.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37875", "3", "2016-09-12 08:05:15", "24.68.42.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37876", "3", "2016-09-12 08:05:15", "24.68.42.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37877", "13", "2016-09-12 08:05:16", "24.68.42.124", "6");
INSERT INTO `wp_gf_form_view` VALUES("37878", "13", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37879", "13", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37880", "10", "2016-09-12 08:05:16", "24.68.42.124", "13");
INSERT INTO `wp_gf_form_view` VALUES("37881", "10", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37882", "10", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37883", "10", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("37884", "3", "2016-09-12 09:04:33", "66.249.79.112", "43");
INSERT INTO `wp_gf_form_view` VALUES("37885", "13", "2016-09-12 09:04:34", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("37886", "10", "2016-09-12 09:04:34", "66.249.79.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("37887", "3", "2016-09-12 10:49:33", "134.249.232.160", "35");
INSERT INTO `wp_gf_form_view` VALUES("37888", "13", "2016-09-12 10:49:35", "134.249.232.160", "5");
INSERT INTO `wp_gf_form_view` VALUES("37889", "10", "2016-09-12 10:49:35", "134.249.232.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("37890", "3", "2016-09-12 11:13:51", "68.180.231.26", "48");
INSERT INTO `wp_gf_form_view` VALUES("37891", "13", "2016-09-12 11:13:52", "68.180.231.26", "8");
INSERT INTO `wp_gf_form_view` VALUES("37892", "10", "2016-09-12 11:13:52", "68.180.231.26", "16");
INSERT INTO `wp_gf_form_view` VALUES("37893", "1", "2016-09-12 11:51:32", "94.249.224.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("37894", "3", "2016-09-12 12:16:40", "68.180.231.26", "42");
INSERT INTO `wp_gf_form_view` VALUES("37895", "13", "2016-09-12 12:16:41", "68.180.231.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("37896", "10", "2016-09-12 12:16:41", "68.180.231.26", "12");
INSERT INTO `wp_gf_form_view` VALUES("37897", "2", "2016-09-12 12:45:10", "220.181.108.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("37898", "3", "2016-09-12 13:11:51", "66.249.79.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("37899", "13", "2016-09-12 13:11:51", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("37900", "10", "2016-09-12 13:11:51", "66.249.79.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("37901", "3", "2016-09-12 14:29:46", "202.46.48.97", "45");
INSERT INTO `wp_gf_form_view` VALUES("37902", "13", "2016-09-12 14:29:47", "202.46.48.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("37903", "10", "2016-09-12 14:29:47", "202.46.48.97", "12");
INSERT INTO `wp_gf_form_view` VALUES("37904", "3", "2016-09-12 15:02:59", "68.180.231.26", "56");
INSERT INTO `wp_gf_form_view` VALUES("37905", "13", "2016-09-12 15:03:02", "68.180.231.26", "9");
INSERT INTO `wp_gf_form_view` VALUES("37906", "10", "2016-09-12 15:03:02", "68.180.231.26", "16");
INSERT INTO `wp_gf_form_view` VALUES("37907", "3", "2016-09-12 16:14:36", "207.46.13.63", "30");
INSERT INTO `wp_gf_form_view` VALUES("37908", "13", "2016-09-12 16:14:44", "207.46.13.63", "4");
INSERT INTO `wp_gf_form_view` VALUES("37909", "10", "2016-09-12 16:14:44", "207.46.13.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("37910", "3", "2016-09-12 17:00:00", "163.172.66.96", "105");
INSERT INTO `wp_gf_form_view` VALUES("37911", "13", "2016-09-12 17:00:00", "163.172.66.96", "15");
INSERT INTO `wp_gf_form_view` VALUES("37912", "10", "2016-09-12 17:00:00", "163.172.66.96", "31");
INSERT INTO `wp_gf_form_view` VALUES("37913", "6", "2016-09-12 17:06:22", "207.46.13.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("37914", "3", "2016-09-12 18:05:34", "50.98.164.85", "318");
INSERT INTO `wp_gf_form_view` VALUES("37915", "13", "2016-09-12 18:05:34", "50.98.164.85", "43");
INSERT INTO `wp_gf_form_view` VALUES("37916", "10", "2016-09-12 18:05:34", "50.98.164.85", "94");
INSERT INTO `wp_gf_form_view` VALUES("37917", "1", "2016-09-12 18:49:17", "24.68.17.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("37918", "2", "2016-09-12 18:50:23", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("37919", "3", "2016-09-12 19:13:45", "184.71.24.162", "63");
INSERT INTO `wp_gf_form_view` VALUES("37920", "13", "2016-09-12 19:13:48", "184.71.24.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("37921", "10", "2016-09-12 19:13:48", "184.71.24.162", "19");
INSERT INTO `wp_gf_form_view` VALUES("37922", "1", "2016-09-12 19:14:30", "184.71.24.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("37923", "3", "2016-09-12 20:04:42", "148.251.54.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("37924", "13", "2016-09-12 20:04:43", "148.251.54.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("37925", "10", "2016-09-12 20:04:43", "148.251.54.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("37926", "3", "2016-09-12 21:00:35", "154.20.41.90", "129");
INSERT INTO `wp_gf_form_view` VALUES("37927", "13", "2016-09-12 21:00:35", "154.20.41.90", "18");
INSERT INTO `wp_gf_form_view` VALUES("37928", "10", "2016-09-12 21:00:35", "154.20.41.90", "37");
INSERT INTO `wp_gf_form_view` VALUES("37929", "3", "2016-09-12 22:04:22", "163.172.65.14", "78");
INSERT INTO `wp_gf_form_view` VALUES("37930", "13", "2016-09-12 22:04:23", "163.172.65.14", "11");
INSERT INTO `wp_gf_form_view` VALUES("37931", "10", "2016-09-12 22:04:23", "163.172.65.14", "22");
INSERT INTO `wp_gf_form_view` VALUES("37932", "6", "2016-09-12 22:35:36", "164.132.161.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("37933", "3", "2016-09-12 23:06:19", "68.180.231.25", "379");
INSERT INTO `wp_gf_form_view` VALUES("37934", "13", "2016-09-12 23:06:19", "68.180.231.25", "54");
INSERT INTO `wp_gf_form_view` VALUES("37935", "10", "2016-09-12 23:06:19", "68.180.231.25", "107");
INSERT INTO `wp_gf_form_view` VALUES("37936", "12", "2016-09-12 23:15:05", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("37937", "1", "2016-09-12 23:16:07", "208.43.225.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("37938", "5", "2016-09-13 00:04:37", "164.132.161.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("37939", "3", "2016-09-13 00:04:37", "164.132.161.5", "57");
INSERT INTO `wp_gf_form_view` VALUES("37940", "13", "2016-09-13 00:04:38", "164.132.161.5", "8");
INSERT INTO `wp_gf_form_view` VALUES("37941", "10", "2016-09-13 00:04:38", "164.132.161.5", "18");
INSERT INTO `wp_gf_form_view` VALUES("37942", "1", "2016-09-13 00:51:19", "94.249.160.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("37943", "13", "2016-09-13 01:07:36", "40.77.167.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("37944", "10", "2016-09-13 01:07:36", "40.77.167.44", "22");
INSERT INTO `wp_gf_form_view` VALUES("37945", "3", "2016-09-13 01:07:37", "40.77.167.44", "50");
INSERT INTO `wp_gf_form_view` VALUES("37946", "3", "2016-09-13 02:05:13", "123.57.230.213", "493");
INSERT INTO `wp_gf_form_view` VALUES("37947", "13", "2016-09-13 02:05:13", "123.57.230.213", "72");
INSERT INTO `wp_gf_form_view` VALUES("37948", "10", "2016-09-13 02:05:14", "123.57.230.213", "156");
INSERT INTO `wp_gf_form_view` VALUES("37949", "11", "2016-09-13 02:05:25", "123.57.230.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("37950", "2", "2016-09-13 02:05:28", "123.57.230.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("37951", "12", "2016-09-13 02:06:51", "123.57.230.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("37952", "1", "2016-09-13 02:07:15", "123.57.230.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("37953", "3", "2016-09-13 03:41:42", "163.172.65.51", "8");
INSERT INTO `wp_gf_form_view` VALUES("37954", "13", "2016-09-13 03:41:42", "163.172.65.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("37955", "10", "2016-09-13 03:41:42", "163.172.65.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("37956", "3", "2016-09-13 04:03:10", "184.66.238.60", "23");
INSERT INTO `wp_gf_form_view` VALUES("37957", "13", "2016-09-13 04:03:11", "184.66.238.60", "3");
INSERT INTO `wp_gf_form_view` VALUES("37958", "10", "2016-09-13 04:03:11", "184.66.238.60", "6");
INSERT INTO `wp_gf_form_view` VALUES("37959", "3", "2016-09-13 05:11:30", "202.46.57.125", "92");
INSERT INTO `wp_gf_form_view` VALUES("37960", "13", "2016-09-13 05:11:31", "202.46.57.125", "13");
INSERT INTO `wp_gf_form_view` VALUES("37961", "10", "2016-09-13 05:11:31", "202.46.57.125", "27");
INSERT INTO `wp_gf_form_view` VALUES("37962", "1", "2016-09-13 05:37:17", "195.162.4.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("37963", "3", "2016-09-13 06:05:46", "157.55.39.192", "29");
INSERT INTO `wp_gf_form_view` VALUES("37964", "13", "2016-09-13 06:05:50", "157.55.39.192", "4");
INSERT INTO `wp_gf_form_view` VALUES("37965", "10", "2016-09-13 06:05:50", "157.55.39.192", "8");
INSERT INTO `wp_gf_form_view` VALUES("37966", "1", "2016-09-13 06:05:55", "130.204.207.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("37967", "3", "2016-09-13 07:06:45", "77.75.79.62", "36");
INSERT INTO `wp_gf_form_view` VALUES("37968", "13", "2016-09-13 07:06:45", "77.75.79.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("37969", "10", "2016-09-13 07:06:45", "77.75.79.62", "10");
INSERT INTO `wp_gf_form_view` VALUES("37970", "3", "2016-09-13 08:17:32", "157.55.39.192", "64");
INSERT INTO `wp_gf_form_view` VALUES("37971", "13", "2016-09-13 08:17:32", "157.55.39.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("37972", "10", "2016-09-13 08:17:32", "157.55.39.192", "18");
INSERT INTO `wp_gf_form_view` VALUES("37973", "1", "2016-09-13 08:29:25", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("37974", "3", "2016-09-13 09:10:03", "157.55.39.27", "58");
INSERT INTO `wp_gf_form_view` VALUES("37975", "13", "2016-09-13 09:10:05", "157.55.39.27", "8");
INSERT INTO `wp_gf_form_view` VALUES("37976", "10", "2016-09-13 09:10:05", "157.55.39.27", "16");
INSERT INTO `wp_gf_form_view` VALUES("37977", "1", "2016-09-13 10:05:27", "77.75.77.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("37978", "3", "2016-09-13 10:05:27", "77.75.77.62", "22");
INSERT INTO `wp_gf_form_view` VALUES("37979", "13", "2016-09-13 10:05:27", "77.75.77.62", "4");
INSERT INTO `wp_gf_form_view` VALUES("37980", "10", "2016-09-13 10:05:27", "77.75.77.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("37981", "1", "2016-09-13 11:10:04", "1.179.183.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("37982", "3", "2016-09-13 11:10:04", "1.179.183.27", "14");
INSERT INTO `wp_gf_form_view` VALUES("37983", "13", "2016-09-13 11:10:04", "1.179.183.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("37984", "10", "2016-09-13 11:10:04", "1.179.183.27", "5");
INSERT INTO `wp_gf_form_view` VALUES("37985", "3", "2016-09-13 12:00:23", "54.164.147.75", "65");
INSERT INTO `wp_gf_form_view` VALUES("37986", "13", "2016-09-13 12:00:24", "54.164.147.75", "9");
INSERT INTO `wp_gf_form_view` VALUES("37987", "10", "2016-09-13 12:00:24", "54.164.147.75", "18");
INSERT INTO `wp_gf_form_view` VALUES("37988", "3", "2016-09-13 13:13:42", "207.46.13.172", "64");
INSERT INTO `wp_gf_form_view` VALUES("37989", "13", "2016-09-13 13:13:43", "207.46.13.172", "9");
INSERT INTO `wp_gf_form_view` VALUES("37990", "10", "2016-09-13 13:13:43", "207.46.13.172", "18");
INSERT INTO `wp_gf_form_view` VALUES("37991", "11", "2016-09-13 13:56:02", "141.8.143.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("37992", "3", "2016-09-13 14:01:33", "199.21.99.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("37993", "13", "2016-09-13 14:01:33", "199.21.99.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("37994", "10", "2016-09-13 14:01:34", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("37995", "1", "2016-09-13 14:11:43", "5.230.133.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("37996", "3", "2016-09-13 15:24:36", "163.172.66.53", "22");
INSERT INTO `wp_gf_form_view` VALUES("37997", "13", "2016-09-13 15:24:45", "163.172.66.53", "3");
INSERT INTO `wp_gf_form_view` VALUES("37998", "10", "2016-09-13 15:24:45", "163.172.66.53", "6");
INSERT INTO `wp_gf_form_view` VALUES("37999", "3", "2016-09-13 16:08:02", "205.250.181.27", "106");
INSERT INTO `wp_gf_form_view` VALUES("38000", "13", "2016-09-13 16:08:02", "205.250.181.27", "15");
INSERT INTO `wp_gf_form_view` VALUES("38001", "10", "2016-09-13 16:08:02", "205.250.181.27", "30");
INSERT INTO `wp_gf_form_view` VALUES("38002", "3", "2016-09-13 17:02:15", "24.69.151.169", "86");
INSERT INTO `wp_gf_form_view` VALUES("38003", "13", "2016-09-13 17:02:16", "24.69.151.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("38004", "10", "2016-09-13 17:02:16", "24.69.151.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("38005", "10", "2016-09-13 18:01:10", "157.55.39.27", "25");
INSERT INTO `wp_gf_form_view` VALUES("38006", "3", "2016-09-13 18:01:10", "157.55.39.27", "59");
INSERT INTO `wp_gf_form_view` VALUES("38007", "13", "2016-09-13 18:01:10", "157.55.39.27", "9");
INSERT INTO `wp_gf_form_view` VALUES("38008", "3", "2016-09-13 19:04:55", "184.71.15.210", "126");
INSERT INTO `wp_gf_form_view` VALUES("38009", "13", "2016-09-13 19:04:56", "184.71.15.210", "20");
INSERT INTO `wp_gf_form_view` VALUES("38010", "10", "2016-09-13 19:04:56", "184.71.15.210", "38");
INSERT INTO `wp_gf_form_view` VALUES("38011", "3", "2016-09-13 20:05:07", "24.108.4.19", "29");
INSERT INTO `wp_gf_form_view` VALUES("38012", "13", "2016-09-13 20:05:07", "24.108.4.19", "4");
INSERT INTO `wp_gf_form_view` VALUES("38013", "10", "2016-09-13 20:05:07", "24.108.4.19", "11");
INSERT INTO `wp_gf_form_view` VALUES("38014", "7", "2016-09-13 21:02:50", "157.55.39.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("38015", "3", "2016-09-13 21:02:50", "157.55.39.27", "100");
INSERT INTO `wp_gf_form_view` VALUES("38016", "13", "2016-09-13 21:02:50", "157.55.39.27", "14");
INSERT INTO `wp_gf_form_view` VALUES("38017", "10", "2016-09-13 21:02:50", "157.55.39.27", "28");
INSERT INTO `wp_gf_form_view` VALUES("38018", "3", "2016-09-13 22:08:29", "70.67.52.137", "56");
INSERT INTO `wp_gf_form_view` VALUES("38019", "13", "2016-09-13 22:08:30", "70.67.52.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("38020", "10", "2016-09-13 22:08:30", "70.67.52.137", "16");
INSERT INTO `wp_gf_form_view` VALUES("38021", "1", "2016-09-13 22:14:24", "70.67.52.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("38022", "3", "2016-09-13 23:04:54", "184.69.3.198", "72");
INSERT INTO `wp_gf_form_view` VALUES("38023", "13", "2016-09-13 23:04:54", "184.69.3.198", "11");
INSERT INTO `wp_gf_form_view` VALUES("38024", "10", "2016-09-13 23:04:54", "184.69.3.198", "20");
INSERT INTO `wp_gf_form_view` VALUES("38025", "13", "2016-09-14 00:03:59", "108.172.163.250", "48");
INSERT INTO `wp_gf_form_view` VALUES("38026", "3", "2016-09-14 00:03:59", "108.172.163.250", "318");
INSERT INTO `wp_gf_form_view` VALUES("38027", "10", "2016-09-14 00:03:59", "108.172.163.250", "91");
INSERT INTO `wp_gf_form_view` VALUES("38028", "11", "2016-09-14 00:10:37", "209.171.44.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("38029", "2", "2016-09-14 00:10:57", "209.171.44.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("38030", "1", "2016-09-14 00:47:04", "96.50.6.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("38031", "3", "2016-09-14 01:15:06", "96.50.6.244", "64");
INSERT INTO `wp_gf_form_view` VALUES("38032", "13", "2016-09-14 01:15:07", "96.50.6.244", "9");
INSERT INTO `wp_gf_form_view` VALUES("38033", "10", "2016-09-14 01:15:07", "96.50.6.244", "19");
INSERT INTO `wp_gf_form_view` VALUES("38034", "1", "2016-09-14 01:15:14", "96.50.6.244", "3");
INSERT INTO `wp_gf_form_view` VALUES("38035", "3", "2016-09-14 02:19:52", "24.108.4.13", "106");
INSERT INTO `wp_gf_form_view` VALUES("38036", "13", "2016-09-14 02:19:54", "24.108.4.13", "15");
INSERT INTO `wp_gf_form_view` VALUES("38037", "10", "2016-09-14 02:19:54", "24.108.4.13", "32");
INSERT INTO `wp_gf_form_view` VALUES("38038", "1", "2016-09-14 02:24:18", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("38039", "5", "2016-09-14 03:07:11", "202.46.58.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("38040", "3", "2016-09-14 03:07:11", "202.46.58.202", "95");
INSERT INTO `wp_gf_form_view` VALUES("38041", "13", "2016-09-14 03:07:11", "202.46.58.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("38042", "10", "2016-09-14 03:07:11", "202.46.58.202", "25");
INSERT INTO `wp_gf_form_view` VALUES("38043", "3", "2016-09-14 04:06:53", "192.243.55.137", "61");
INSERT INTO `wp_gf_form_view` VALUES("38044", "13", "2016-09-14 04:06:54", "192.243.55.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("38045", "10", "2016-09-14 04:06:54", "192.243.55.137", "16");
INSERT INTO `wp_gf_form_view` VALUES("38046", "3", "2016-09-14 05:08:27", "66.249.75.152", "48");
INSERT INTO `wp_gf_form_view` VALUES("38047", "13", "2016-09-14 05:08:27", "66.249.75.152", "7");
INSERT INTO `wp_gf_form_view` VALUES("38048", "10", "2016-09-14 05:08:27", "66.249.75.152", "13");
INSERT INTO `wp_gf_form_view` VALUES("38049", "3", "2016-09-14 06:16:45", "157.55.39.192", "15");
INSERT INTO `wp_gf_form_view` VALUES("38050", "13", "2016-09-14 06:16:46", "157.55.39.192", "2");
INSERT INTO `wp_gf_form_view` VALUES("38051", "10", "2016-09-14 06:16:46", "157.55.39.192", "4");
INSERT INTO `wp_gf_form_view` VALUES("38052", "3", "2016-09-14 07:15:57", "157.55.39.27", "30");
INSERT INTO `wp_gf_form_view` VALUES("38053", "13", "2016-09-14 07:15:58", "157.55.39.27", "5");
INSERT INTO `wp_gf_form_view` VALUES("38054", "10", "2016-09-14 07:15:58", "157.55.39.27", "9");
INSERT INTO `wp_gf_form_view` VALUES("38055", "1", "2016-09-14 07:52:48", "125.89.129.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("38056", "3", "2016-09-14 08:10:32", "157.55.39.192", "79");
INSERT INTO `wp_gf_form_view` VALUES("38057", "13", "2016-09-14 08:10:33", "157.55.39.192", "10");
INSERT INTO `wp_gf_form_view` VALUES("38058", "10", "2016-09-14 08:10:33", "157.55.39.192", "20");
INSERT INTO `wp_gf_form_view` VALUES("38059", "3", "2016-09-14 09:00:30", "207.6.238.21", "76");
INSERT INTO `wp_gf_form_view` VALUES("38060", "13", "2016-09-14 09:00:30", "207.6.238.21", "7");
INSERT INTO `wp_gf_form_view` VALUES("38061", "10", "2016-09-14 09:00:30", "207.6.238.21", "33");
INSERT INTO `wp_gf_form_view` VALUES("38062", "3", "2016-09-14 10:46:56", "5.9.17.118", "29");
INSERT INTO `wp_gf_form_view` VALUES("38063", "13", "2016-09-14 10:46:57", "5.9.17.118", "4");
INSERT INTO `wp_gf_form_view` VALUES("38064", "10", "2016-09-14 10:46:57", "5.9.17.118", "8");
INSERT INTO `wp_gf_form_view` VALUES("38065", "3", "2016-09-14 11:04:47", "77.75.78.164", "37");
INSERT INTO `wp_gf_form_view` VALUES("38066", "13", "2016-09-14 11:04:47", "77.75.78.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("38067", "10", "2016-09-14 11:04:47", "77.75.78.164", "18");
INSERT INTO `wp_gf_form_view` VALUES("38068", "8", "2016-09-14 11:12:43", "157.55.39.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("38069", "3", "2016-09-14 12:05:32", "46.118.119.71", "312");
INSERT INTO `wp_gf_form_view` VALUES("38070", "13", "2016-09-14 12:05:32", "46.118.119.71", "45");
INSERT INTO `wp_gf_form_view` VALUES("38071", "10", "2016-09-14 12:05:32", "46.118.119.71", "89");
INSERT INTO `wp_gf_form_view` VALUES("38072", "2", "2016-09-14 12:56:17", "95.143.42.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("38073", "11", "2016-09-14 12:57:03", "80.79.120.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("38074", "3", "2016-09-14 13:05:30", "157.55.39.192", "511");
INSERT INTO `wp_gf_form_view` VALUES("38075", "13", "2016-09-14 13:05:31", "157.55.39.192", "76");
INSERT INTO `wp_gf_form_view` VALUES("38076", "10", "2016-09-14 13:05:31", "157.55.39.192", "159");
INSERT INTO `wp_gf_form_view` VALUES("38077", "1", "2016-09-14 13:18:27", "178.18.246.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("38078", "2", "2016-09-14 13:19:27", "217.18.245.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("38079", "11", "2016-09-14 13:20:17", "71.222.31.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("38080", "3", "2016-09-14 14:01:50", "157.55.39.27", "38");
INSERT INTO `wp_gf_form_view` VALUES("38081", "13", "2016-09-14 14:01:51", "157.55.39.27", "5");
INSERT INTO `wp_gf_form_view` VALUES("38082", "10", "2016-09-14 14:01:51", "157.55.39.27", "10");
INSERT INTO `wp_gf_form_view` VALUES("38083", "10", "2016-09-14 15:15:51", "157.55.39.27", "9");
INSERT INTO `wp_gf_form_view` VALUES("38084", "3", "2016-09-14 15:15:51", "157.55.39.27", "29");
INSERT INTO `wp_gf_form_view` VALUES("38085", "13", "2016-09-14 15:15:52", "157.55.39.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("38086", "3", "2016-09-14 16:11:36", "75.156.96.184", "93");
INSERT INTO `wp_gf_form_view` VALUES("38087", "13", "2016-09-14 16:11:36", "75.156.96.184", "14");
INSERT INTO `wp_gf_form_view` VALUES("38088", "10", "2016-09-14 16:11:36", "75.156.96.184", "28");
INSERT INTO `wp_gf_form_view` VALUES("38089", "1", "2016-09-14 16:19:03", "104.160.0.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("38090", "3", "2016-09-14 17:19:42", "157.55.39.192", "72");
INSERT INTO `wp_gf_form_view` VALUES("38091", "13", "2016-09-14 17:35:42", "192.243.55.129", "10");
INSERT INTO `wp_gf_form_view` VALUES("38092", "10", "2016-09-14 17:35:42", "192.243.55.129", "12");
INSERT INTO `wp_gf_form_view` VALUES("38093", "3", "2016-09-14 18:05:58", "157.55.39.48", "28");
INSERT INTO `wp_gf_form_view` VALUES("38094", "13", "2016-09-14 18:05:58", "157.55.39.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("38095", "10", "2016-09-14 18:05:58", "157.55.39.48", "8");
INSERT INTO `wp_gf_form_view` VALUES("38096", "1", "2016-09-14 19:04:06", "173.234.58.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("38097", "3", "2016-09-14 19:04:07", "173.234.58.66", "50");
INSERT INTO `wp_gf_form_view` VALUES("38098", "13", "2016-09-14 19:04:07", "173.234.58.66", "7");
INSERT INTO `wp_gf_form_view` VALUES("38099", "10", "2016-09-14 19:04:07", "173.234.58.66", "14");
INSERT INTO `wp_gf_form_view` VALUES("38100", "3", "2016-09-14 20:00:15", "192.243.55.133", "21");
INSERT INTO `wp_gf_form_view` VALUES("38101", "13", "2016-09-14 20:00:16", "192.243.55.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("38102", "10", "2016-09-14 20:00:16", "192.243.55.133", "6");
INSERT INTO `wp_gf_form_view` VALUES("38103", "3", "2016-09-14 21:01:21", "157.55.39.48", "110");
INSERT INTO `wp_gf_form_view` VALUES("38104", "13", "2016-09-14 21:01:21", "157.55.39.48", "18");
INSERT INTO `wp_gf_form_view` VALUES("38105", "10", "2016-09-14 21:01:21", "157.55.39.48", "32");
INSERT INTO `wp_gf_form_view` VALUES("38106", "1", "2016-09-14 21:28:42", "23.94.228.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("38107", "3", "2016-09-14 22:02:13", "108.172.238.158", "29");
INSERT INTO `wp_gf_form_view` VALUES("38108", "13", "2016-09-14 22:02:14", "108.172.238.158", "4");
INSERT INTO `wp_gf_form_view` VALUES("38109", "10", "2016-09-14 22:02:14", "108.172.238.158", "9");
INSERT INTO `wp_gf_form_view` VALUES("38110", "6", "2016-09-14 22:07:44", "157.55.39.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("38111", "3", "2016-09-14 23:07:59", "192.243.55.135", "29");
INSERT INTO `wp_gf_form_view` VALUES("38112", "13", "2016-09-14 23:07:59", "192.243.55.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("38113", "10", "2016-09-14 23:07:59", "192.243.55.135", "8");
INSERT INTO `wp_gf_form_view` VALUES("38114", "3", "2016-09-15 00:41:26", "68.180.231.25", "7");
INSERT INTO `wp_gf_form_view` VALUES("38115", "13", "2016-09-15 00:41:28", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38116", "10", "2016-09-15 00:41:28", "68.180.231.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("38117", "3", "2016-09-15 01:05:37", "157.55.39.48", "64");
INSERT INTO `wp_gf_form_view` VALUES("38118", "13", "2016-09-15 01:05:38", "157.55.39.48", "9");
INSERT INTO `wp_gf_form_view` VALUES("38119", "10", "2016-09-15 01:05:38", "157.55.39.48", "18");
INSERT INTO `wp_gf_form_view` VALUES("38120", "3", "2016-09-15 02:05:41", "77.75.78.167", "70");
INSERT INTO `wp_gf_form_view` VALUES("38121", "13", "2016-09-15 02:05:42", "77.75.78.167", "10");
INSERT INTO `wp_gf_form_view` VALUES("38122", "10", "2016-09-15 02:05:42", "77.75.78.167", "20");
INSERT INTO `wp_gf_form_view` VALUES("38123", "13", "2016-09-15 03:02:20", "157.55.39.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("38124", "10", "2016-09-15 03:02:20", "157.55.39.48", "15");
INSERT INTO `wp_gf_form_view` VALUES("38125", "3", "2016-09-15 03:02:21", "157.55.39.48", "23");
INSERT INTO `wp_gf_form_view` VALUES("38126", "3", "2016-09-15 04:35:48", "68.180.231.25", "8");
INSERT INTO `wp_gf_form_view` VALUES("38127", "13", "2016-09-15 04:35:49", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38128", "10", "2016-09-15 04:35:49", "68.180.231.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("38129", "3", "2016-09-15 05:30:06", "68.180.231.25", "50");
INSERT INTO `wp_gf_form_view` VALUES("38130", "13", "2016-09-15 05:30:07", "68.180.231.25", "8");
INSERT INTO `wp_gf_form_view` VALUES("38131", "10", "2016-09-15 05:30:08", "68.180.231.25", "22");
INSERT INTO `wp_gf_form_view` VALUES("38132", "3", "2016-09-15 06:07:49", "68.180.231.25", "30");
INSERT INTO `wp_gf_form_view` VALUES("38133", "13", "2016-09-15 06:07:50", "68.180.231.25", "4");
INSERT INTO `wp_gf_form_view` VALUES("38134", "10", "2016-09-15 06:07:50", "68.180.231.25", "7");
INSERT INTO `wp_gf_form_view` VALUES("38135", "3", "2016-09-15 07:12:06", "51.255.65.89", "36");
INSERT INTO `wp_gf_form_view` VALUES("38136", "13", "2016-09-15 07:12:07", "51.255.65.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("38137", "10", "2016-09-15 07:12:07", "51.255.65.89", "10");
INSERT INTO `wp_gf_form_view` VALUES("38138", "3", "2016-09-15 08:35:11", "178.137.17.180", "45");
INSERT INTO `wp_gf_form_view` VALUES("38139", "13", "2016-09-15 08:35:11", "178.137.17.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("38140", "10", "2016-09-15 08:35:11", "178.137.17.180", "12");
INSERT INTO `wp_gf_form_view` VALUES("38141", "13", "2016-09-15 09:00:12", "51.255.65.10", "6");
INSERT INTO `wp_gf_form_view` VALUES("38142", "3", "2016-09-15 09:00:12", "51.255.65.10", "38");
INSERT INTO `wp_gf_form_view` VALUES("38143", "10", "2016-09-15 09:00:13", "51.255.65.10", "8");
INSERT INTO `wp_gf_form_view` VALUES("38144", "3", "2016-09-15 10:23:25", "46.119.115.28", "15");
INSERT INTO `wp_gf_form_view` VALUES("38145", "13", "2016-09-15 10:23:25", "46.119.115.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("38146", "10", "2016-09-15 10:23:25", "46.119.115.28", "4");
INSERT INTO `wp_gf_form_view` VALUES("38147", "3", "2016-09-15 11:12:02", "178.137.88.86", "20");
INSERT INTO `wp_gf_form_view` VALUES("38148", "3", "2016-09-15 11:12:02", "178.137.88.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("38149", "13", "2016-09-15 11:12:04", "178.137.88.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("38150", "10", "2016-09-15 11:12:04", "178.137.88.86", "6");
INSERT INTO `wp_gf_form_view` VALUES("38151", "3", "2016-09-15 12:20:08", "64.62.210.39", "7");
INSERT INTO `wp_gf_form_view` VALUES("38152", "13", "2016-09-15 12:20:09", "64.62.210.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("38153", "10", "2016-09-15 12:20:09", "64.62.210.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("38154", "3", "2016-09-15 13:09:26", "192.243.55.131", "22");
INSERT INTO `wp_gf_form_view` VALUES("38155", "13", "2016-09-15 13:09:26", "192.243.55.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("38156", "10", "2016-09-15 13:09:26", "192.243.55.131", "6");
INSERT INTO `wp_gf_form_view` VALUES("38157", "3", "2016-09-15 14:56:04", "46.118.112.191", "21");
INSERT INTO `wp_gf_form_view` VALUES("38158", "13", "2016-09-15 14:56:05", "46.118.112.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("38159", "10", "2016-09-15 14:56:05", "46.118.112.191", "5");
INSERT INTO `wp_gf_form_view` VALUES("38160", "10", "2016-09-15 14:56:05", "46.118.112.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("38161", "3", "2016-09-15 15:02:44", "202.46.48.205", "56");
INSERT INTO `wp_gf_form_view` VALUES("38162", "13", "2016-09-15 15:02:44", "202.46.48.205", "8");
INSERT INTO `wp_gf_form_view` VALUES("38163", "10", "2016-09-15 15:02:44", "202.46.48.205", "16");
INSERT INTO `wp_gf_form_view` VALUES("38164", "1", "2016-09-15 15:57:52", "178.32.12.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("38165", "3", "2016-09-15 16:06:16", "157.55.39.27", "154");
INSERT INTO `wp_gf_form_view` VALUES("38166", "13", "2016-09-15 16:06:16", "157.55.39.27", "22");
INSERT INTO `wp_gf_form_view` VALUES("38167", "10", "2016-09-15 16:06:16", "157.55.39.27", "43");
INSERT INTO `wp_gf_form_view` VALUES("38168", "3", "2016-09-15 17:01:46", "164.132.161.40", "57");
INSERT INTO `wp_gf_form_view` VALUES("38169", "13", "2016-09-15 17:01:47", "164.132.161.40", "9");
INSERT INTO `wp_gf_form_view` VALUES("38170", "10", "2016-09-15 17:01:47", "164.132.161.40", "16");
INSERT INTO `wp_gf_form_view` VALUES("38171", "9", "2016-09-15 17:48:57", "51.255.65.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("38172", "3", "2016-09-15 18:03:59", "134.87.168.193", "99");
INSERT INTO `wp_gf_form_view` VALUES("38173", "13", "2016-09-15 18:03:59", "134.87.168.193", "14");
INSERT INTO `wp_gf_form_view` VALUES("38174", "10", "2016-09-15 18:03:59", "134.87.168.193", "28");
INSERT INTO `wp_gf_form_view` VALUES("38175", "13", "2016-09-15 19:17:41", "24.69.132.130", "11");
INSERT INTO `wp_gf_form_view` VALUES("38176", "3", "2016-09-15 19:17:46", "24.69.132.130", "77");
INSERT INTO `wp_gf_form_view` VALUES("38177", "10", "2016-09-15 19:17:46", "24.69.132.130", "22");
INSERT INTO `wp_gf_form_view` VALUES("38178", "3", "2016-09-15 20:02:29", "134.249.232.160", "36");
INSERT INTO `wp_gf_form_view` VALUES("38179", "13", "2016-09-15 20:02:29", "134.249.232.160", "5");
INSERT INTO `wp_gf_form_view` VALUES("38180", "10", "2016-09-15 20:02:29", "134.249.232.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("38181", "3", "2016-09-15 21:04:58", "192.243.55.138", "44");
INSERT INTO `wp_gf_form_view` VALUES("38182", "13", "2016-09-15 21:04:58", "192.243.55.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("38183", "10", "2016-09-15 21:04:58", "192.243.55.138", "12");
INSERT INTO `wp_gf_form_view` VALUES("38184", "3", "2016-09-15 22:01:24", "184.66.44.32", "28");
INSERT INTO `wp_gf_form_view` VALUES("38185", "13", "2016-09-15 22:01:25", "184.66.44.32", "5");
INSERT INTO `wp_gf_form_view` VALUES("38186", "10", "2016-09-15 22:01:25", "184.66.44.32", "9");
INSERT INTO `wp_gf_form_view` VALUES("38187", "8", "2016-09-15 22:22:09", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38188", "3", "2016-09-15 23:01:53", "207.194.253.26", "52");
INSERT INTO `wp_gf_form_view` VALUES("38189", "13", "2016-09-15 23:01:53", "207.194.253.26", "7");
INSERT INTO `wp_gf_form_view` VALUES("38190", "10", "2016-09-15 23:01:53", "207.194.253.26", "14");
INSERT INTO `wp_gf_form_view` VALUES("38191", "3", "2016-09-16 00:53:57", "202.46.53.66", "28");
INSERT INTO `wp_gf_form_view` VALUES("38192", "13", "2016-09-16 00:53:59", "202.46.53.66", "4");
INSERT INTO `wp_gf_form_view` VALUES("38193", "10", "2016-09-16 00:53:59", "202.46.53.66", "11");
INSERT INTO `wp_gf_form_view` VALUES("38194", "1", "2016-09-16 01:47:51", "62.210.146.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("38195", "3", "2016-09-16 01:47:52", "62.210.146.23", "91");
INSERT INTO `wp_gf_form_view` VALUES("38196", "13", "2016-09-16 01:47:52", "62.210.146.23", "12");
INSERT INTO `wp_gf_form_view` VALUES("38197", "10", "2016-09-16 01:47:53", "62.210.146.23", "24");
INSERT INTO `wp_gf_form_view` VALUES("38198", "3", "2016-09-16 02:00:59", "178.137.160.205", "85");
INSERT INTO `wp_gf_form_view` VALUES("38199", "13", "2016-09-16 02:00:59", "178.137.160.205", "12");
INSERT INTO `wp_gf_form_view` VALUES("38200", "10", "2016-09-16 02:00:59", "178.137.160.205", "24");
INSERT INTO `wp_gf_form_view` VALUES("38201", "1", "2016-09-16 02:31:07", "207.46.13.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("38202", "3", "2016-09-16 03:00:49", "68.180.231.25", "36");
INSERT INTO `wp_gf_form_view` VALUES("38203", "13", "2016-09-16 03:00:50", "68.180.231.25", "5");
INSERT INTO `wp_gf_form_view` VALUES("38204", "10", "2016-09-16 03:00:50", "68.180.231.25", "12");
INSERT INTO `wp_gf_form_view` VALUES("38205", "10", "2016-09-16 04:09:09", "75.157.175.171", "306");
INSERT INTO `wp_gf_form_view` VALUES("38206", "3", "2016-09-16 04:09:09", "75.157.175.171", "654");
INSERT INTO `wp_gf_form_view` VALUES("38207", "13", "2016-09-16 04:09:09", "75.157.175.171", "102");
INSERT INTO `wp_gf_form_view` VALUES("38208", "9", "2016-09-16 04:29:55", "207.46.13.180", "5");
INSERT INTO `wp_gf_form_view` VALUES("38209", "12", "2016-09-16 04:30:44", "207.46.13.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("38210", "8", "2016-09-16 04:30:57", "207.46.13.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("38211", "10", "2016-09-16 05:02:43", "66.249.75.152", "43");
INSERT INTO `wp_gf_form_view` VALUES("38212", "3", "2016-09-16 05:02:44", "66.249.75.152", "87");
INSERT INTO `wp_gf_form_view` VALUES("38213", "13", "2016-09-16 05:02:44", "66.249.75.152", "16");
INSERT INTO `wp_gf_form_view` VALUES("38214", "3", "2016-09-16 06:02:01", "178.137.88.86", "29");
INSERT INTO `wp_gf_form_view` VALUES("38215", "3", "2016-09-16 06:02:01", "178.137.88.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("38216", "13", "2016-09-16 06:02:04", "178.137.88.86", "5");
INSERT INTO `wp_gf_form_view` VALUES("38217", "10", "2016-09-16 06:02:04", "178.137.88.86", "14");
INSERT INTO `wp_gf_form_view` VALUES("38218", "10", "2016-09-16 06:02:04", "178.137.88.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("38219", "3", "2016-09-16 07:00:12", "202.46.58.188", "33");
INSERT INTO `wp_gf_form_view` VALUES("38220", "13", "2016-09-16 07:00:12", "202.46.58.188", "6");
INSERT INTO `wp_gf_form_view` VALUES("38221", "10", "2016-09-16 07:00:12", "202.46.58.188", "18");
INSERT INTO `wp_gf_form_view` VALUES("38222", "3", "2016-09-16 08:04:11", "96.50.1.173", "18");
INSERT INTO `wp_gf_form_view` VALUES("38223", "13", "2016-09-16 08:04:11", "96.50.1.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("38224", "10", "2016-09-16 08:04:11", "96.50.1.173", "9");
INSERT INTO `wp_gf_form_view` VALUES("38225", "3", "2016-09-16 09:33:14", "46.118.112.191", "41");
INSERT INTO `wp_gf_form_view` VALUES("38226", "3", "2016-09-16 09:33:14", "46.118.112.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("38227", "13", "2016-09-16 09:33:15", "46.118.112.191", "7");
INSERT INTO `wp_gf_form_view` VALUES("38228", "10", "2016-09-16 09:33:15", "46.118.112.191", "21");
INSERT INTO `wp_gf_form_view` VALUES("38229", "3", "2016-09-16 10:36:46", "46.118.112.191", "12");
INSERT INTO `wp_gf_form_view` VALUES("38230", "13", "2016-09-16 10:36:47", "46.118.112.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("38231", "10", "2016-09-16 10:36:47", "46.118.112.191", "6");
INSERT INTO `wp_gf_form_view` VALUES("38232", "3", "2016-09-16 11:44:59", "164.132.161.52", "12");
INSERT INTO `wp_gf_form_view` VALUES("38233", "13", "2016-09-16 11:45:00", "164.132.161.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("38234", "10", "2016-09-16 11:45:00", "164.132.161.52", "6");
INSERT INTO `wp_gf_form_view` VALUES("38235", "2", "2016-09-16 11:52:55", "92.63.91.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("38236", "3", "2016-09-16 12:00:49", "163.172.65.107", "19");
INSERT INTO `wp_gf_form_view` VALUES("38237", "13", "2016-09-16 12:00:49", "163.172.65.107", "3");
INSERT INTO `wp_gf_form_view` VALUES("38238", "10", "2016-09-16 12:00:49", "163.172.65.107", "9");
INSERT INTO `wp_gf_form_view` VALUES("38239", "3", "2016-09-16 13:00:35", "178.137.160.205", "39");
INSERT INTO `wp_gf_form_view` VALUES("38240", "13", "2016-09-16 13:00:36", "178.137.160.205", "6");
INSERT INTO `wp_gf_form_view` VALUES("38241", "10", "2016-09-16 13:00:36", "178.137.160.205", "16");
INSERT INTO `wp_gf_form_view` VALUES("38242", "9", "2016-09-16 13:35:07", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38243", "3", "2016-09-16 14:18:53", "68.180.231.25", "50");
INSERT INTO `wp_gf_form_view` VALUES("38244", "13", "2016-09-16 14:18:53", "68.180.231.25", "8");
INSERT INTO `wp_gf_form_view` VALUES("38245", "10", "2016-09-16 14:18:53", "68.180.231.25", "25");
INSERT INTO `wp_gf_form_view` VALUES("38246", "3", "2016-09-16 15:05:27", "202.46.52.177", "97");
INSERT INTO `wp_gf_form_view` VALUES("38247", "13", "2016-09-16 15:05:27", "202.46.52.177", "16");
INSERT INTO `wp_gf_form_view` VALUES("38248", "10", "2016-09-16 15:05:27", "202.46.52.177", "49");
INSERT INTO `wp_gf_form_view` VALUES("38249", "3", "2016-09-16 16:00:38", "68.180.231.25", "66");
INSERT INTO `wp_gf_form_view` VALUES("38250", "13", "2016-09-16 16:00:38", "68.180.231.25", "12");
INSERT INTO `wp_gf_form_view` VALUES("38251", "10", "2016-09-16 16:00:38", "68.180.231.25", "36");
INSERT INTO `wp_gf_form_view` VALUES("38252", "3", "2016-09-16 17:00:52", "178.137.88.86", "220");
INSERT INTO `wp_gf_form_view` VALUES("38253", "3", "2016-09-16 17:00:52", "178.137.88.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("38254", "13", "2016-09-16 17:00:53", "178.137.88.86", "34");
INSERT INTO `wp_gf_form_view` VALUES("38255", "13", "2016-09-16 17:00:53", "178.137.88.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("38256", "10", "2016-09-16 17:00:53", "178.137.88.86", "111");
INSERT INTO `wp_gf_form_view` VALUES("38257", "10", "2016-09-16 17:00:53", "178.137.88.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("38258", "2", "2016-09-16 17:50:13", "45.32.131.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("38259", "10", "2016-09-16 18:01:45", "64.114.197.205", "37");
INSERT INTO `wp_gf_form_view` VALUES("38260", "3", "2016-09-16 18:01:45", "64.114.197.205", "78");
INSERT INTO `wp_gf_form_view` VALUES("38261", "13", "2016-09-16 18:01:45", "64.114.197.205", "12");
INSERT INTO `wp_gf_form_view` VALUES("38262", "12", "2016-09-16 18:17:21", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38263", "8", "2016-09-16 18:18:11", "202.46.58.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("38264", "11", "2016-09-16 18:24:15", "51.255.65.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("38265", "5", "2016-09-16 18:39:08", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("38266", "3", "2016-09-16 19:03:44", "99.199.2.59", "69");
INSERT INTO `wp_gf_form_view` VALUES("38267", "13", "2016-09-16 19:03:44", "99.199.2.59", "11");
INSERT INTO `wp_gf_form_view` VALUES("38268", "10", "2016-09-16 19:03:44", "99.199.2.59", "30");
INSERT INTO `wp_gf_form_view` VALUES("38269", "3", "2016-09-16 20:16:31", "46.118.112.191", "90");
INSERT INTO `wp_gf_form_view` VALUES("38270", "13", "2016-09-16 20:16:31", "46.118.112.191", "15");
INSERT INTO `wp_gf_form_view` VALUES("38271", "10", "2016-09-16 20:16:32", "46.118.112.191", "47");
INSERT INTO `wp_gf_form_view` VALUES("38272", "1", "2016-09-16 20:53:21", "62.210.80.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("38273", "3", "2016-09-16 21:00:04", "164.132.161.41", "102");
INSERT INTO `wp_gf_form_view` VALUES("38274", "13", "2016-09-16 21:00:05", "164.132.161.41", "17");
INSERT INTO `wp_gf_form_view` VALUES("38275", "10", "2016-09-16 21:00:05", "164.132.161.41", "51");
INSERT INTO `wp_gf_form_view` VALUES("38276", "3", "2016-09-16 22:03:22", "184.71.30.118", "36");
INSERT INTO `wp_gf_form_view` VALUES("38277", "13", "2016-09-16 22:03:23", "184.71.30.118", "6");
INSERT INTO `wp_gf_form_view` VALUES("38278", "10", "2016-09-16 22:03:23", "184.71.30.118", "18");
INSERT INTO `wp_gf_form_view` VALUES("38279", "11", "2016-09-16 22:53:06", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38280", "3", "2016-09-16 23:12:40", "134.249.232.160", "48");
INSERT INTO `wp_gf_form_view` VALUES("38281", "13", "2016-09-16 23:12:40", "134.249.232.160", "8");
INSERT INTO `wp_gf_form_view` VALUES("38282", "10", "2016-09-16 23:12:40", "134.249.232.160", "24");
INSERT INTO `wp_gf_form_view` VALUES("38283", "1", "2016-09-17 00:13:25", "164.132.161.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("38284", "3", "2016-09-17 00:13:25", "164.132.161.91", "36");
INSERT INTO `wp_gf_form_view` VALUES("38285", "13", "2016-09-17 00:13:26", "164.132.161.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("38286", "10", "2016-09-17 00:13:26", "164.132.161.91", "18");
INSERT INTO `wp_gf_form_view` VALUES("38287", "3", "2016-09-17 01:12:21", "46.119.115.28", "59");
INSERT INTO `wp_gf_form_view` VALUES("38288", "13", "2016-09-17 01:12:22", "46.119.115.28", "9");
INSERT INTO `wp_gf_form_view` VALUES("38289", "10", "2016-09-17 01:12:22", "46.119.115.28", "27");
INSERT INTO `wp_gf_form_view` VALUES("38290", "3", "2016-09-17 03:10:27", "216.126.102.146", "30");
INSERT INTO `wp_gf_form_view` VALUES("38291", "13", "2016-09-17 03:10:28", "216.126.102.146", "5");
INSERT INTO `wp_gf_form_view` VALUES("38292", "10", "2016-09-17 03:10:28", "216.126.102.146", "18");
INSERT INTO `wp_gf_form_view` VALUES("38293", "3", "2016-09-17 04:44:40", "68.180.231.25", "12");
INSERT INTO `wp_gf_form_view` VALUES("38294", "13", "2016-09-17 04:44:41", "68.180.231.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("38295", "10", "2016-09-17 04:44:42", "68.180.231.25", "6");
INSERT INTO `wp_gf_form_view` VALUES("38296", "3", "2016-09-17 05:11:59", "164.132.161.19", "54");
INSERT INTO `wp_gf_form_view` VALUES("38297", "13", "2016-09-17 05:11:59", "164.132.161.19", "8");
INSERT INTO `wp_gf_form_view` VALUES("38298", "10", "2016-09-17 05:12:00", "164.132.161.19", "24");
INSERT INTO `wp_gf_form_view` VALUES("38299", "3", "2016-09-17 06:08:45", "202.46.50.126", "6");
INSERT INTO `wp_gf_form_view` VALUES("38300", "13", "2016-09-17 06:08:46", "202.46.50.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("38301", "10", "2016-09-17 06:08:46", "202.46.50.126", "3");
INSERT INTO `wp_gf_form_view` VALUES("38302", "10", "2016-09-17 07:23:40", "68.180.231.25", "10");
INSERT INTO `wp_gf_form_view` VALUES("38303", "3", "2016-09-17 07:23:45", "68.180.231.25", "18");
INSERT INTO `wp_gf_form_view` VALUES("38304", "13", "2016-09-17 07:23:46", "68.180.231.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("38305", "1", "2016-09-17 08:11:36", "93.170.122.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("38306", "3", "2016-09-17 08:11:39", "93.170.122.30", "19");
INSERT INTO `wp_gf_form_view` VALUES("38307", "13", "2016-09-17 08:11:40", "93.170.122.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("38308", "10", "2016-09-17 08:11:40", "93.170.122.30", "9");
INSERT INTO `wp_gf_form_view` VALUES("38309", "3", "2016-09-17 09:08:40", "207.46.13.49", "6");
INSERT INTO `wp_gf_form_view` VALUES("38310", "13", "2016-09-17 09:08:41", "207.46.13.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("38311", "10", "2016-09-17 09:08:42", "207.46.13.49", "3");
INSERT INTO `wp_gf_form_view` VALUES("38312", "3", "2016-09-17 10:09:03", "163.172.66.65", "25");
INSERT INTO `wp_gf_form_view` VALUES("38313", "13", "2016-09-17 10:09:05", "163.172.66.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("38314", "10", "2016-09-17 10:09:05", "163.172.66.65", "12");
INSERT INTO `wp_gf_form_view` VALUES("38315", "6", "2016-09-17 10:37:09", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38316", "3", "2016-09-17 11:01:03", "178.137.160.205", "18");
INSERT INTO `wp_gf_form_view` VALUES("38317", "13", "2016-09-17 11:01:03", "178.137.160.205", "3");
INSERT INTO `wp_gf_form_view` VALUES("38318", "10", "2016-09-17 11:01:03", "178.137.160.205", "9");
INSERT INTO `wp_gf_form_view` VALUES("38319", "3", "2016-09-17 12:38:00", "68.180.231.25", "43");
INSERT INTO `wp_gf_form_view` VALUES("38320", "13", "2016-09-17 12:38:02", "68.180.231.25", "7");
INSERT INTO `wp_gf_form_view` VALUES("38321", "10", "2016-09-17 12:38:02", "68.180.231.25", "21");
INSERT INTO `wp_gf_form_view` VALUES("38322", "1", "2016-09-17 12:45:11", "23.245.238.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("38323", "3", "2016-09-17 13:10:54", "68.180.231.25", "30");
INSERT INTO `wp_gf_form_view` VALUES("38324", "13", "2016-09-17 13:10:54", "68.180.231.25", "5");
INSERT INTO `wp_gf_form_view` VALUES("38325", "10", "2016-09-17 13:10:54", "68.180.231.25", "15");
INSERT INTO `wp_gf_form_view` VALUES("38326", "12", "2016-09-17 13:33:16", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38327", "10", "2016-09-17 14:02:47", "68.180.231.25", "10");
INSERT INTO `wp_gf_form_view` VALUES("38328", "3", "2016-09-17 14:02:47", "68.180.231.25", "18");
INSERT INTO `wp_gf_form_view` VALUES("38329", "13", "2016-09-17 14:02:48", "68.180.231.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("38330", "8", "2016-09-17 15:03:50", "157.55.39.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("38331", "3", "2016-09-17 15:03:50", "157.55.39.14", "19");
INSERT INTO `wp_gf_form_view` VALUES("38332", "13", "2016-09-17 15:03:50", "157.55.39.14", "3");
INSERT INTO `wp_gf_form_view` VALUES("38333", "10", "2016-09-17 15:03:50", "157.55.39.14", "9");
INSERT INTO `wp_gf_form_view` VALUES("38334", "3", "2016-09-17 16:11:05", "202.46.53.111", "54");
INSERT INTO `wp_gf_form_view` VALUES("38335", "13", "2016-09-17 16:11:05", "202.46.53.111", "9");
INSERT INTO `wp_gf_form_view` VALUES("38336", "10", "2016-09-17 16:11:05", "202.46.53.111", "27");
INSERT INTO `wp_gf_form_view` VALUES("38337", "3", "2016-09-17 17:16:55", "154.20.43.216", "66");
INSERT INTO `wp_gf_form_view` VALUES("38338", "13", "2016-09-17 17:16:57", "154.20.43.216", "11");
INSERT INTO `wp_gf_form_view` VALUES("38339", "10", "2016-09-17 17:16:57", "154.20.43.216", "33");
INSERT INTO `wp_gf_form_view` VALUES("38340", "3", "2016-09-17 18:34:20", "163.172.66.115", "24");
INSERT INTO `wp_gf_form_view` VALUES("38341", "13", "2016-09-17 18:34:21", "163.172.66.115", "4");
INSERT INTO `wp_gf_form_view` VALUES("38342", "10", "2016-09-17 18:34:21", "163.172.66.115", "12");
INSERT INTO `wp_gf_form_view` VALUES("38343", "3", "2016-09-17 19:01:56", "51.255.65.47", "48");
INSERT INTO `wp_gf_form_view` VALUES("38344", "13", "2016-09-17 19:01:57", "51.255.65.47", "8");
INSERT INTO `wp_gf_form_view` VALUES("38345", "10", "2016-09-17 19:01:57", "51.255.65.47", "24");
INSERT INTO `wp_gf_form_view` VALUES("38346", "3", "2016-09-17 20:02:00", "66.249.75.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("38347", "13", "2016-09-17 20:02:01", "66.249.75.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("38348", "10", "2016-09-17 20:02:01", "66.249.75.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("38349", "3", "2016-09-17 21:04:44", "75.157.134.222", "220");
INSERT INTO `wp_gf_form_view` VALUES("38350", "13", "2016-09-17 21:04:45", "75.157.134.222", "37");
INSERT INTO `wp_gf_form_view` VALUES("38351", "10", "2016-09-17 21:04:46", "75.157.134.222", "115");
INSERT INTO `wp_gf_form_view` VALUES("38352", "7", "2016-09-17 21:59:46", "157.55.39.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("38353", "3", "2016-09-17 22:00:00", "157.55.39.136", "191");
INSERT INTO `wp_gf_form_view` VALUES("38354", "13", "2016-09-17 22:00:00", "157.55.39.136", "31");
INSERT INTO `wp_gf_form_view` VALUES("38355", "10", "2016-09-17 22:00:00", "157.55.39.136", "85");
INSERT INTO `wp_gf_form_view` VALUES("38356", "8", "2016-09-17 22:03:00", "207.46.13.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("38357", "3", "2016-09-17 23:10:47", "54.236.1.11", "55");
INSERT INTO `wp_gf_form_view` VALUES("38358", "13", "2016-09-17 23:10:48", "54.236.1.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("38359", "10", "2016-09-17 23:10:48", "54.236.1.11", "27");
INSERT INTO `wp_gf_form_view` VALUES("38360", "3", "2016-09-18 00:12:14", "77.75.78.166", "24");
INSERT INTO `wp_gf_form_view` VALUES("38361", "13", "2016-09-18 00:12:15", "77.75.78.166", "4");
INSERT INTO `wp_gf_form_view` VALUES("38362", "10", "2016-09-18 00:12:15", "77.75.78.166", "12");
INSERT INTO `wp_gf_form_view` VALUES("38363", "3", "2016-09-18 01:07:51", "68.180.231.25", "56");
INSERT INTO `wp_gf_form_view` VALUES("38364", "13", "2016-09-18 01:07:52", "68.180.231.25", "9");
INSERT INTO `wp_gf_form_view` VALUES("38365", "10", "2016-09-18 01:07:52", "68.180.231.25", "27");
INSERT INTO `wp_gf_form_view` VALUES("38366", "12", "2016-09-18 01:48:25", "66.249.75.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("38367", "3", "2016-09-18 02:22:36", "5.9.17.118", "36");
INSERT INTO `wp_gf_form_view` VALUES("38368", "13", "2016-09-18 02:22:36", "5.9.17.118", "6");
INSERT INTO `wp_gf_form_view` VALUES("38369", "10", "2016-09-18 02:22:36", "5.9.17.118", "19");
INSERT INTO `wp_gf_form_view` VALUES("38370", "13", "2016-09-18 03:00:07", "66.249.75.156", "28");
INSERT INTO `wp_gf_form_view` VALUES("38371", "3", "2016-09-18 03:00:08", "66.249.75.156", "152");
INSERT INTO `wp_gf_form_view` VALUES("38372", "10", "2016-09-18 03:00:08", "66.249.75.156", "75");
INSERT INTO `wp_gf_form_view` VALUES("38373", "11", "2016-09-18 03:03:03", "104.236.81.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("38374", "2", "2016-09-18 03:03:04", "104.236.81.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("38375", "3", "2016-09-18 04:02:53", "46.118.112.191", "67");
INSERT INTO `wp_gf_form_view` VALUES("38376", "13", "2016-09-18 04:02:54", "46.118.112.191", "11");
INSERT INTO `wp_gf_form_view` VALUES("38377", "10", "2016-09-18 04:02:54", "46.118.112.191", "33");
INSERT INTO `wp_gf_form_view` VALUES("38378", "3", "2016-09-18 05:18:29", "66.249.75.148", "31");
INSERT INTO `wp_gf_form_view` VALUES("38379", "13", "2016-09-18 05:18:30", "66.249.75.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("38380", "10", "2016-09-18 05:18:30", "66.249.75.148", "15");
INSERT INTO `wp_gf_form_view` VALUES("38381", "9", "2016-09-18 06:03:08", "202.46.58.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("38382", "3", "2016-09-18 06:03:08", "202.46.58.77", "78");
INSERT INTO `wp_gf_form_view` VALUES("38383", "13", "2016-09-18 06:03:08", "202.46.58.77", "13");
INSERT INTO `wp_gf_form_view` VALUES("38384", "10", "2016-09-18 06:03:08", "202.46.58.77", "39");
INSERT INTO `wp_gf_form_view` VALUES("38385", "2", "2016-09-18 06:35:03", "118.201.52.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("38386", "3", "2016-09-18 07:30:02", "154.20.32.8", "24");
INSERT INTO `wp_gf_form_view` VALUES("38387", "13", "2016-09-18 07:30:07", "154.20.32.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("38388", "13", "2016-09-18 07:30:07", "154.20.32.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("38389", "10", "2016-09-18 07:30:07", "154.20.32.8", "11");
INSERT INTO `wp_gf_form_view` VALUES("38390", "10", "2016-09-18 07:30:07", "154.20.32.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("38391", "5", "2016-09-18 07:30:54", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("38392", "3", "2016-09-18 08:00:21", "178.137.88.86", "58");
INSERT INTO `wp_gf_form_view` VALUES("38393", "13", "2016-09-18 08:00:22", "178.137.88.86", "9");
INSERT INTO `wp_gf_form_view` VALUES("38394", "10", "2016-09-18 08:00:22", "178.137.88.86", "27");
INSERT INTO `wp_gf_form_view` VALUES("38395", "13", "2016-09-18 09:35:40", "202.46.54.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("38396", "3", "2016-09-18 09:35:41", "202.46.54.130", "6");
INSERT INTO `wp_gf_form_view` VALUES("38397", "10", "2016-09-18 09:35:41", "202.46.54.130", "3");
INSERT INTO `wp_gf_form_view` VALUES("38398", "3", "2016-09-18 10:08:49", "104.131.108.241", "2367");
INSERT INTO `wp_gf_form_view` VALUES("38399", "13", "2016-09-18 10:08:51", "104.131.108.241", "395");
INSERT INTO `wp_gf_form_view` VALUES("38400", "10", "2016-09-18 10:08:51", "104.131.108.241", "1219");
INSERT INTO `wp_gf_form_view` VALUES("38401", "1", "2016-09-18 10:13:50", "104.131.108.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("38402", "11", "2016-09-18 10:14:05", "104.131.108.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("38403", "6", "2016-09-18 10:32:11", "104.131.108.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("38404", "9", "2016-09-18 10:40:55", "104.131.108.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("38405", "3", "2016-09-18 11:00:03", "104.131.108.241", "1447");
INSERT INTO `wp_gf_form_view` VALUES("38406", "13", "2016-09-18 11:00:04", "104.131.108.241", "241");
INSERT INTO `wp_gf_form_view` VALUES("38407", "10", "2016-09-18 11:00:04", "104.131.108.241", "728");
INSERT INTO `wp_gf_form_view` VALUES("38408", "2", "2016-09-18 11:18:02", "104.131.108.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("38409", "8", "2016-09-18 11:31:59", "104.131.108.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("38410", "3", "2016-09-18 12:03:12", "69.84.207.246", "49");
INSERT INTO `wp_gf_form_view` VALUES("38411", "13", "2016-09-18 12:03:12", "69.84.207.246", "8");
INSERT INTO `wp_gf_form_view` VALUES("38412", "10", "2016-09-18 12:03:12", "69.84.207.246", "24");
INSERT INTO `wp_gf_form_view` VALUES("38413", "3", "2016-09-18 13:17:43", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38414", "3", "2016-09-18 14:14:56", "46.119.115.28", "46");
INSERT INTO `wp_gf_form_view` VALUES("38415", "13", "2016-09-18 14:14:57", "46.119.115.28", "6");
INSERT INTO `wp_gf_form_view` VALUES("38416", "13", "2016-09-18 14:14:57", "46.119.115.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("38417", "10", "2016-09-18 14:14:57", "46.119.115.28", "20");
INSERT INTO `wp_gf_form_view` VALUES("38418", "10", "2016-09-18 14:14:57", "46.119.115.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("38419", "3", "2016-09-18 15:06:45", "66.249.75.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("38420", "13", "2016-09-18 15:06:45", "66.249.75.152", "5");
INSERT INTO `wp_gf_form_view` VALUES("38421", "10", "2016-09-18 15:06:45", "66.249.75.152", "15");
INSERT INTO `wp_gf_form_view` VALUES("38422", "11", "2016-09-18 15:34:28", "66.249.75.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("38423", "3", "2016-09-18 16:46:22", "157.55.39.168", "18");
INSERT INTO `wp_gf_form_view` VALUES("38424", "13", "2016-09-18 16:46:24", "157.55.39.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("38425", "10", "2016-09-18 16:46:24", "157.55.39.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("38426", "3", "2016-09-18 17:29:05", "163.172.66.92", "146");
INSERT INTO `wp_gf_form_view` VALUES("38427", "13", "2016-09-18 17:29:05", "163.172.66.92", "25");
INSERT INTO `wp_gf_form_view` VALUES("38428", "10", "2016-09-18 17:29:05", "163.172.66.92", "72");
INSERT INTO `wp_gf_form_view` VALUES("38429", "11", "2016-09-18 17:38:54", "104.131.96.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("38430", "2", "2016-09-18 17:38:54", "104.131.96.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("38431", "9", "2016-09-18 17:45:25", "167.114.234.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("38432", "1", "2016-09-18 18:09:24", "213.37.124.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("38433", "3", "2016-09-18 18:09:24", "213.37.124.118", "25");
INSERT INTO `wp_gf_form_view` VALUES("38434", "13", "2016-09-18 18:09:24", "213.37.124.118", "4");
INSERT INTO `wp_gf_form_view` VALUES("38435", "10", "2016-09-18 18:09:24", "213.37.124.118", "12");
INSERT INTO `wp_gf_form_view` VALUES("38436", "3", "2016-09-18 19:10:11", "46.119.115.28", "76");
INSERT INTO `wp_gf_form_view` VALUES("38437", "3", "2016-09-18 19:10:11", "46.119.115.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("38438", "13", "2016-09-18 19:10:11", "46.119.115.28", "11");
INSERT INTO `wp_gf_form_view` VALUES("38439", "13", "2016-09-18 19:10:11", "46.119.115.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("38440", "10", "2016-09-18 19:10:11", "46.119.115.28", "35");
INSERT INTO `wp_gf_form_view` VALUES("38441", "10", "2016-09-18 19:10:11", "46.119.115.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("38442", "3", "2016-09-18 20:34:35", "75.155.182.129", "18");
INSERT INTO `wp_gf_form_view` VALUES("38443", "13", "2016-09-18 20:34:35", "75.155.182.129", "3");
INSERT INTO `wp_gf_form_view` VALUES("38444", "10", "2016-09-18 20:34:35", "75.155.182.129", "9");
INSERT INTO `wp_gf_form_view` VALUES("38445", "3", "2016-09-18 21:04:57", "24.68.146.77", "52");
INSERT INTO `wp_gf_form_view` VALUES("38446", "13", "2016-09-18 21:04:57", "24.68.146.77", "8");
INSERT INTO `wp_gf_form_view` VALUES("38447", "10", "2016-09-18 21:04:58", "24.68.146.77", "21");
INSERT INTO `wp_gf_form_view` VALUES("38448", "3", "2016-09-18 22:06:41", "51.255.65.42", "49");
INSERT INTO `wp_gf_form_view` VALUES("38449", "13", "2016-09-18 22:06:41", "51.255.65.42", "8");
INSERT INTO `wp_gf_form_view` VALUES("38450", "10", "2016-09-18 22:06:41", "51.255.65.42", "24");
INSERT INTO `wp_gf_form_view` VALUES("38451", "2", "2016-09-18 22:38:20", "68.180.231.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("38452", "3", "2016-09-18 23:10:57", "178.137.88.86", "73");
INSERT INTO `wp_gf_form_view` VALUES("38453", "13", "2016-09-18 23:10:58", "178.137.88.86", "12");
INSERT INTO `wp_gf_form_view` VALUES("38454", "10", "2016-09-18 23:10:58", "178.137.88.86", "36");
INSERT INTO `wp_gf_form_view` VALUES("38455", "3", "2016-09-19 00:06:13", "68.180.231.25", "22");
INSERT INTO `wp_gf_form_view` VALUES("38456", "13", "2016-09-19 00:06:14", "68.180.231.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("38457", "10", "2016-09-19 00:06:14", "68.180.231.25", "9");
INSERT INTO `wp_gf_form_view` VALUES("38458", "3", "2016-09-19 01:04:08", "157.55.39.237", "48");
INSERT INTO `wp_gf_form_view` VALUES("38459", "13", "2016-09-19 01:04:08", "157.55.39.237", "8");
INSERT INTO `wp_gf_form_view` VALUES("38460", "10", "2016-09-19 01:04:08", "157.55.39.237", "24");
INSERT INTO `wp_gf_form_view` VALUES("38461", "3", "2016-09-19 02:47:05", "207.102.103.104", "22");
INSERT INTO `wp_gf_form_view` VALUES("38462", "13", "2016-09-19 02:47:06", "207.102.103.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("38463", "10", "2016-09-19 02:47:06", "207.102.103.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("38464", "3", "2016-09-19 03:00:29", "207.102.103.104", "54");
INSERT INTO `wp_gf_form_view` VALUES("38465", "13", "2016-09-19 03:00:29", "207.102.103.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("38466", "10", "2016-09-19 03:00:29", "207.102.103.104", "27");
INSERT INTO `wp_gf_form_view` VALUES("38467", "3", "2016-09-19 04:05:37", "24.68.22.108", "105");
INSERT INTO `wp_gf_form_view` VALUES("38468", "13", "2016-09-19 04:05:37", "24.68.22.108", "18");
INSERT INTO `wp_gf_form_view` VALUES("38469", "10", "2016-09-19 04:05:37", "24.68.22.108", "53");
INSERT INTO `wp_gf_form_view` VALUES("38470", "6", "2016-09-19 04:14:17", "40.77.167.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("38471", "3", "2016-09-19 05:24:55", "157.55.39.141", "73");
INSERT INTO `wp_gf_form_view` VALUES("38472", "13", "2016-09-19 05:24:56", "157.55.39.141", "11");
INSERT INTO `wp_gf_form_view` VALUES("38473", "10", "2016-09-19 05:24:56", "157.55.39.141", "30");
INSERT INTO `wp_gf_form_view` VALUES("38474", "3", "2016-09-19 06:56:06", "68.180.231.25", "12");
INSERT INTO `wp_gf_form_view` VALUES("38475", "13", "2016-09-19 06:56:07", "68.180.231.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("38476", "10", "2016-09-19 06:56:07", "68.180.231.25", "6");
INSERT INTO `wp_gf_form_view` VALUES("38477", "3", "2016-09-19 07:13:33", "202.46.57.198", "13");
INSERT INTO `wp_gf_form_view` VALUES("38478", "13", "2016-09-19 07:13:34", "202.46.57.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("38479", "10", "2016-09-19 07:13:34", "202.46.57.198", "6");
INSERT INTO `wp_gf_form_view` VALUES("38480", "3", "2016-09-19 09:50:19", "157.55.39.243", "18");
INSERT INTO `wp_gf_form_view` VALUES("38481", "13", "2016-09-19 09:50:21", "157.55.39.243", "3");
INSERT INTO `wp_gf_form_view` VALUES("38482", "10", "2016-09-19 09:50:22", "157.55.39.243", "9");
INSERT INTO `wp_gf_form_view` VALUES("38483", "3", "2016-09-19 10:04:56", "66.249.75.156", "39");
INSERT INTO `wp_gf_form_view` VALUES("38484", "13", "2016-09-19 10:04:57", "66.249.75.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("38485", "10", "2016-09-19 10:04:57", "66.249.75.156", "18");
INSERT INTO `wp_gf_form_view` VALUES("38486", "3", "2016-09-19 11:10:11", "68.180.231.25", "71");
INSERT INTO `wp_gf_form_view` VALUES("38487", "13", "2016-09-19 11:10:11", "68.180.231.25", "12");
INSERT INTO `wp_gf_form_view` VALUES("38488", "10", "2016-09-19 11:19:22", "178.137.88.86", "31");
INSERT INTO `wp_gf_form_view` VALUES("38489", "10", "2016-09-19 11:19:22", "178.137.88.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("38490", "10", "2016-09-19 11:19:22", "178.137.88.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("38491", "3", "2016-09-19 12:18:49", "202.46.48.26", "24");
INSERT INTO `wp_gf_form_view` VALUES("38492", "13", "2016-09-19 12:18:49", "202.46.48.26", "4");
INSERT INTO `wp_gf_form_view` VALUES("38493", "10", "2016-09-19 12:18:49", "202.46.48.26", "12");
INSERT INTO `wp_gf_form_view` VALUES("38494", "10", "2016-09-19 13:19:01", "157.55.39.141", "14");
INSERT INTO `wp_gf_form_view` VALUES("38495", "3", "2016-09-19 13:19:02", "157.55.39.141", "12");
INSERT INTO `wp_gf_form_view` VALUES("38496", "13", "2016-09-19 13:19:03", "157.55.39.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("38497", "9", "2016-09-19 13:33:52", "40.77.167.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("38498", "3", "2016-09-19 14:05:57", "178.137.160.205", "26");
INSERT INTO `wp_gf_form_view` VALUES("38499", "13", "2016-09-19 14:05:57", "178.137.160.205", "4");
INSERT INTO `wp_gf_form_view` VALUES("38500", "10", "2016-09-19 14:05:57", "178.137.160.205", "12");
INSERT INTO `wp_gf_form_view` VALUES("38501", "3", "2016-09-19 15:06:32", "164.132.161.24", "31");
INSERT INTO `wp_gf_form_view` VALUES("38502", "13", "2016-09-19 15:06:32", "164.132.161.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("38503", "10", "2016-09-19 15:06:32", "164.132.161.24", "15");
INSERT INTO `wp_gf_form_view` VALUES("38504", "3", "2016-09-19 16:11:01", "96.50.19.46", "74");
INSERT INTO `wp_gf_form_view` VALUES("38505", "13", "2016-09-19 16:11:01", "96.50.19.46", "12");
INSERT INTO `wp_gf_form_view` VALUES("38506", "10", "2016-09-19 16:11:02", "96.50.19.46", "36");
INSERT INTO `wp_gf_form_view` VALUES("38507", "1", "2016-09-19 16:40:31", "155.133.43.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("38508", "3", "2016-09-19 17:03:43", "134.249.65.218", "164");
INSERT INTO `wp_gf_form_view` VALUES("38509", "13", "2016-09-19 17:03:44", "134.249.65.218", "26");
INSERT INTO `wp_gf_form_view` VALUES("38510", "10", "2016-09-19 17:03:44", "134.249.65.218", "82");
INSERT INTO `wp_gf_form_view` VALUES("38511", "3", "2016-09-19 18:06:00", "207.81.225.201", "99");
INSERT INTO `wp_gf_form_view` VALUES("38512", "13", "2016-09-19 18:06:01", "207.81.225.201", "15");
INSERT INTO `wp_gf_form_view` VALUES("38513", "10", "2016-09-19 18:06:01", "207.81.225.201", "49");
INSERT INTO `wp_gf_form_view` VALUES("38514", "3", "2016-09-19 19:18:41", "194.187.170.113", "73");
INSERT INTO `wp_gf_form_view` VALUES("38515", "13", "2016-09-19 19:18:41", "194.187.170.113", "12");
INSERT INTO `wp_gf_form_view` VALUES("38516", "10", "2016-09-19 19:18:41", "194.187.170.113", "38");
INSERT INTO `wp_gf_form_view` VALUES("38517", "5", "2016-09-19 19:54:01", "40.77.167.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("38518", "9", "2016-09-19 19:55:31", "181.45.75.174", "3");
INSERT INTO `wp_gf_form_view` VALUES("38519", "10", "2016-09-19 20:08:54", "157.55.39.168", "28");
INSERT INTO `wp_gf_form_view` VALUES("38520", "3", "2016-09-19 20:08:54", "157.55.39.168", "57");
INSERT INTO `wp_gf_form_view` VALUES("38521", "13", "2016-09-19 20:08:55", "157.55.39.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("38522", "3", "2016-09-19 21:07:27", "66.249.69.112", "55");
INSERT INTO `wp_gf_form_view` VALUES("38523", "13", "2016-09-19 21:07:27", "66.249.69.112", "9");
INSERT INTO `wp_gf_form_view` VALUES("38524", "10", "2016-09-19 21:07:27", "66.249.69.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("38525", "3", "2016-09-19 22:14:40", "157.55.39.168", "79");
INSERT INTO `wp_gf_form_view` VALUES("38526", "13", "2016-09-19 22:14:41", "157.55.39.168", "13");
INSERT INTO `wp_gf_form_view` VALUES("38527", "10", "2016-09-19 22:14:41", "157.55.39.168", "44");
INSERT INTO `wp_gf_form_view` VALUES("38528", "3", "2016-09-19 23:20:19", "157.55.39.243", "101");
INSERT INTO `wp_gf_form_view` VALUES("38529", "13", "2016-09-19 23:20:20", "157.55.39.243", "16");
INSERT INTO `wp_gf_form_view` VALUES("38530", "10", "2016-09-19 23:20:20", "157.55.39.243", "51");
INSERT INTO `wp_gf_form_view` VALUES("38531", "1", "2016-09-19 23:23:23", "154.20.28.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("38532", "12", "2016-09-19 23:40:34", "202.46.52.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("38533", "6", "2016-09-19 23:42:55", "40.77.167.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("38534", "3", "2016-09-20 00:01:48", "24.108.21.91", "91");
INSERT INTO `wp_gf_form_view` VALUES("38535", "13", "2016-09-20 00:01:48", "24.108.21.91", "15");
INSERT INTO `wp_gf_form_view` VALUES("38536", "10", "2016-09-20 00:01:48", "24.108.21.91", "53");
INSERT INTO `wp_gf_form_view` VALUES("38537", "3", "2016-09-20 01:06:30", "66.249.69.104", "55");
INSERT INTO `wp_gf_form_view` VALUES("38538", "13", "2016-09-20 01:06:30", "66.249.69.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("38539", "10", "2016-09-20 01:06:30", "66.249.69.104", "28");
INSERT INTO `wp_gf_form_view` VALUES("38540", "10", "2016-09-20 02:12:57", "154.20.88.206", "38");
INSERT INTO `wp_gf_form_view` VALUES("38541", "3", "2016-09-20 02:12:57", "154.20.88.206", "74");
INSERT INTO `wp_gf_form_view` VALUES("38542", "13", "2016-09-20 02:12:58", "154.20.88.206", "12");
INSERT INTO `wp_gf_form_view` VALUES("38543", "1", "2016-09-20 02:58:20", "108.180.150.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("38544", "3", "2016-09-20 03:12:22", "220.181.108.113", "37");
INSERT INTO `wp_gf_form_view` VALUES("38545", "13", "2016-09-20 03:12:23", "220.181.108.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("38546", "10", "2016-09-20 03:12:23", "220.181.108.113", "19");
INSERT INTO `wp_gf_form_view` VALUES("38547", "3", "2016-09-20 04:00:07", "64.180.74.161", "51");
INSERT INTO `wp_gf_form_view` VALUES("38548", "13", "2016-09-20 04:00:07", "64.180.74.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("38549", "10", "2016-09-20 04:00:07", "64.180.74.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("38550", "3", "2016-09-20 05:51:34", "157.55.39.237", "7");
INSERT INTO `wp_gf_form_view` VALUES("38551", "13", "2016-09-20 05:51:36", "157.55.39.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("38552", "10", "2016-09-20 05:51:36", "157.55.39.237", "3");
INSERT INTO `wp_gf_form_view` VALUES("38553", "3", "2016-09-20 06:08:23", "66.249.69.104", "43");
INSERT INTO `wp_gf_form_view` VALUES("38554", "13", "2016-09-20 06:08:24", "66.249.69.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("38555", "10", "2016-09-20 06:08:24", "66.249.69.104", "22");
INSERT INTO `wp_gf_form_view` VALUES("38556", "3", "2016-09-20 07:12:16", "157.55.39.168", "31");
INSERT INTO `wp_gf_form_view` VALUES("38557", "13", "2016-09-20 07:12:17", "157.55.39.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("38558", "10", "2016-09-20 07:12:17", "157.55.39.168", "15");
INSERT INTO `wp_gf_form_view` VALUES("38559", "9", "2016-09-20 08:02:38", "157.55.39.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("38560", "3", "2016-09-20 08:02:38", "157.55.39.168", "24");
INSERT INTO `wp_gf_form_view` VALUES("38561", "13", "2016-09-20 08:02:38", "157.55.39.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("38562", "10", "2016-09-20 08:02:38", "157.55.39.168", "12");
INSERT INTO `wp_gf_form_view` VALUES("38563", "3", "2016-09-20 09:14:27", "220.181.108.143", "36");
INSERT INTO `wp_gf_form_view` VALUES("38564", "13", "2016-09-20 09:14:32", "220.181.108.143", "6");
INSERT INTO `wp_gf_form_view` VALUES("38565", "10", "2016-09-20 09:14:32", "220.181.108.143", "18");
INSERT INTO `wp_gf_form_view` VALUES("38566", "1", "2016-09-20 09:25:34", "157.55.39.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("38567", "1", "2016-09-20 10:12:41", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("38568", "3", "2016-09-20 10:12:41", "155.133.43.8", "26");
INSERT INTO `wp_gf_form_view` VALUES("38569", "13", "2016-09-20 10:12:42", "155.133.43.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("38570", "10", "2016-09-20 10:12:42", "155.133.43.8", "12");
INSERT INTO `wp_gf_form_view` VALUES("38571", "3", "2016-09-20 11:35:46", "194.187.170.120", "133");
INSERT INTO `wp_gf_form_view` VALUES("38572", "13", "2016-09-20 11:35:47", "194.187.170.120", "22");
INSERT INTO `wp_gf_form_view` VALUES("38573", "10", "2016-09-20 11:35:47", "194.187.170.120", "66");
INSERT INTO `wp_gf_form_view` VALUES("38574", "11", "2016-09-20 11:39:40", "94.23.0.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("38575", "2", "2016-09-20 11:39:42", "94.23.0.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("38576", "10", "2016-09-20 12:02:57", "77.75.78.165", "23");
INSERT INTO `wp_gf_form_view` VALUES("38577", "3", "2016-09-20 12:02:58", "77.75.78.165", "31");
INSERT INTO `wp_gf_form_view` VALUES("38578", "13", "2016-09-20 12:02:58", "77.75.78.165", "5");
INSERT INTO `wp_gf_form_view` VALUES("38579", "3", "2016-09-20 13:13:18", "157.55.39.237", "13");
INSERT INTO `wp_gf_form_view` VALUES("38580", "13", "2016-09-20 13:13:19", "157.55.39.237", "2");
INSERT INTO `wp_gf_form_view` VALUES("38581", "10", "2016-09-20 13:13:19", "157.55.39.237", "6");
INSERT INTO `wp_gf_form_view` VALUES("38582", "8", "2016-09-20 13:54:44", "157.55.39.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("38583", "3", "2016-09-20 14:11:29", "104.168.5.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("38584", "13", "2016-09-20 14:11:29", "104.168.5.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("38585", "10", "2016-09-20 14:11:29", "104.168.5.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("38586", "3", "2016-09-20 15:01:31", "185.71.1.156", "68");
INSERT INTO `wp_gf_form_view` VALUES("38587", "13", "2016-09-20 15:01:32", "185.71.1.156", "12");
INSERT INTO `wp_gf_form_view` VALUES("38588", "10", "2016-09-20 15:01:32", "185.71.1.156", "34");
INSERT INTO `wp_gf_form_view` VALUES("38589", "3", "2016-09-20 16:12:29", "40.77.167.37", "93");
INSERT INTO `wp_gf_form_view` VALUES("38590", "13", "2016-09-20 16:12:30", "40.77.167.37", "15");
INSERT INTO `wp_gf_form_view` VALUES("38591", "10", "2016-09-20 16:12:30", "40.77.167.37", "43");
INSERT INTO `wp_gf_form_view` VALUES("38592", "9", "2016-09-20 16:32:52", "157.55.39.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("38593", "3", "2016-09-20 17:02:04", "24.68.40.102", "230");
INSERT INTO `wp_gf_form_view` VALUES("38594", "13", "2016-09-20 17:02:05", "24.68.40.102", "38");
INSERT INTO `wp_gf_form_view` VALUES("38595", "10", "2016-09-20 17:02:05", "24.68.40.102", "115");
INSERT INTO `wp_gf_form_view` VALUES("38596", "11", "2016-09-20 17:32:24", "79.116.28.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("38597", "2", "2016-09-20 17:33:24", "79.116.28.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("38598", "3", "2016-09-20 18:17:01", "66.249.69.112", "69");
INSERT INTO `wp_gf_form_view` VALUES("38599", "13", "2016-09-20 18:17:01", "66.249.69.112", "11");
INSERT INTO `wp_gf_form_view` VALUES("38600", "10", "2016-09-20 18:17:02", "66.249.69.112", "33");
INSERT INTO `wp_gf_form_view` VALUES("38601", "1", "2016-09-20 18:56:20", "198.204.248.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("38602", "3", "2016-09-20 19:04:30", "40.77.167.37", "117");
INSERT INTO `wp_gf_form_view` VALUES("38603", "13", "2016-09-20 19:04:30", "40.77.167.37", "19");
INSERT INTO `wp_gf_form_view` VALUES("38604", "10", "2016-09-20 19:04:30", "40.77.167.37", "57");
INSERT INTO `wp_gf_form_view` VALUES("38605", "3", "2016-09-20 20:02:18", "157.55.39.168", "37");
INSERT INTO `wp_gf_form_view` VALUES("38606", "13", "2016-09-20 20:02:19", "157.55.39.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("38607", "10", "2016-09-20 20:02:19", "157.55.39.168", "18");
INSERT INTO `wp_gf_form_view` VALUES("38608", "1", "2016-09-20 20:47:49", "198.204.248.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("38609", "3", "2016-09-20 21:03:25", "64.180.23.41", "59");
INSERT INTO `wp_gf_form_view` VALUES("38610", "13", "2016-09-20 21:03:25", "64.180.23.41", "9");
INSERT INTO `wp_gf_form_view` VALUES("38611", "10", "2016-09-20 21:03:25", "64.180.23.41", "24");
INSERT INTO `wp_gf_form_view` VALUES("38612", "3", "2016-09-20 22:26:53", "64.114.204.58", "121");
INSERT INTO `wp_gf_form_view` VALUES("38613", "13", "2016-09-20 22:26:54", "64.114.204.58", "20");
INSERT INTO `wp_gf_form_view` VALUES("38614", "10", "2016-09-20 22:26:54", "64.114.204.58", "60");
INSERT INTO `wp_gf_form_view` VALUES("38615", "1", "2016-09-20 22:29:55", "198.204.248.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("38616", "3", "2016-09-20 23:18:10", "202.46.56.203", "13");
INSERT INTO `wp_gf_form_view` VALUES("38617", "13", "2016-09-20 23:18:10", "202.46.56.203", "2");
INSERT INTO `wp_gf_form_view` VALUES("38618", "10", "2016-09-20 23:18:10", "202.46.56.203", "6");
INSERT INTO `wp_gf_form_view` VALUES("38619", "1", "2016-09-21 00:13:25", "198.204.248.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("38620", "3", "2016-09-21 00:13:25", "198.204.248.186", "53");
INSERT INTO `wp_gf_form_view` VALUES("38621", "13", "2016-09-21 00:13:25", "198.204.248.186", "8");
INSERT INTO `wp_gf_form_view` VALUES("38622", "10", "2016-09-21 00:13:25", "198.204.248.186", "24");
INSERT INTO `wp_gf_form_view` VALUES("38623", "3", "2016-09-21 01:24:40", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("38624", "10", "2016-09-21 02:00:25", "164.132.161.66", "22");
INSERT INTO `wp_gf_form_view` VALUES("38625", "3", "2016-09-21 02:00:26", "164.132.161.66", "42");
INSERT INTO `wp_gf_form_view` VALUES("38626", "13", "2016-09-21 02:00:26", "164.132.161.66", "7");
INSERT INTO `wp_gf_form_view` VALUES("38627", "1", "2016-09-21 02:44:51", "155.133.43.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("38628", "3", "2016-09-21 03:04:29", "68.180.230.168", "24");
INSERT INTO `wp_gf_form_view` VALUES("38629", "13", "2016-09-21 03:04:29", "68.180.230.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("38630", "10", "2016-09-21 03:04:29", "68.180.230.168", "14");
INSERT INTO `wp_gf_form_view` VALUES("38631", "8", "2016-09-21 04:15:40", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("38632", "3", "2016-09-21 04:15:40", "68.180.230.168", "30");
INSERT INTO `wp_gf_form_view` VALUES("38633", "13", "2016-09-21 04:15:41", "68.180.230.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("38634", "10", "2016-09-21 04:15:41", "68.180.230.168", "16");
INSERT INTO `wp_gf_form_view` VALUES("38635", "3", "2016-09-21 05:11:43", "24.68.22.108", "19");
INSERT INTO `wp_gf_form_view` VALUES("38636", "13", "2016-09-21 05:11:43", "24.68.22.108", "3");
INSERT INTO `wp_gf_form_view` VALUES("38637", "10", "2016-09-21 05:11:43", "24.68.22.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("38638", "3", "2016-09-21 06:19:04", "157.55.39.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("38639", "13", "2016-09-21 06:19:05", "157.55.39.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("38640", "10", "2016-09-21 06:19:05", "157.55.39.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("38641", "3", "2016-09-21 07:32:57", "51.255.65.74", "367");
INSERT INTO `wp_gf_form_view` VALUES("38642", "13", "2016-09-21 07:32:58", "51.255.65.74", "62");
INSERT INTO `wp_gf_form_view` VALUES("38643", "10", "2016-09-21 07:32:58", "51.255.65.74", "182");
INSERT INTO `wp_gf_form_view` VALUES("38644", "11", "2016-09-21 07:52:45", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("38645", "2", "2016-09-21 07:53:19", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("38646", "12", "2016-09-21 07:56:21", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("38647", "1", "2016-09-21 07:57:13", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("38648", "3", "2016-09-21 08:00:09", "136.243.36.94", "19");
INSERT INTO `wp_gf_form_view` VALUES("38649", "13", "2016-09-21 08:00:09", "136.243.36.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("38650", "10", "2016-09-21 08:00:09", "136.243.36.94", "9");
INSERT INTO `wp_gf_form_view` VALUES("38651", "6", "2016-09-21 08:42:08", "164.132.161.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("38652", "3", "2016-09-21 09:18:15", "157.55.39.168", "7");
INSERT INTO `wp_gf_form_view` VALUES("38653", "13", "2016-09-21 09:18:15", "157.55.39.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("38654", "10", "2016-09-21 09:18:15", "157.55.39.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("38655", "3", "2016-09-21 10:14:53", "40.77.167.37", "19");
INSERT INTO `wp_gf_form_view` VALUES("38656", "13", "2016-09-21 10:14:55", "40.77.167.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("38657", "10", "2016-09-21 10:14:55", "40.77.167.37", "10");
INSERT INTO `wp_gf_form_view` VALUES("38658", "3", "2016-09-21 12:58:00", "184.66.32.165", "13");
INSERT INTO `wp_gf_form_view` VALUES("38659", "13", "2016-09-21 12:58:01", "184.66.32.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("38660", "10", "2016-09-21 12:58:01", "184.66.32.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("38661", "3", "2016-09-21 13:05:32", "66.249.69.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("38662", "13", "2016-09-21 13:05:32", "66.249.69.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("38663", "10", "2016-09-21 13:05:32", "66.249.69.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("38664", "10", "2016-09-21 14:53:36", "178.208.12.14", "8");
INSERT INTO `wp_gf_form_view` VALUES("38665", "3", "2016-09-21 14:53:38", "178.208.12.14", "12");
INSERT INTO `wp_gf_form_view` VALUES("38666", "13", "2016-09-21 14:53:38", "178.208.12.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("38667", "3", "2016-09-21 15:03:13", "67.207.207.140", "68");
INSERT INTO `wp_gf_form_view` VALUES("38668", "13", "2016-09-21 15:03:13", "67.207.207.140", "11");
INSERT INTO `wp_gf_form_view` VALUES("38669", "10", "2016-09-21 15:03:13", "67.207.207.140", "33");
INSERT INTO `wp_gf_form_view` VALUES("38670", "11", "2016-09-21 15:03:38", "67.207.207.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("38671", "3", "2016-09-21 16:15:09", "184.69.102.226", "13");
INSERT INTO `wp_gf_form_view` VALUES("38672", "13", "2016-09-21 16:15:10", "184.69.102.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("38673", "10", "2016-09-21 16:15:10", "184.69.102.226", "6");
INSERT INTO `wp_gf_form_view` VALUES("38674", "10", "2016-09-21 17:01:17", "207.194.133.9", "43");
INSERT INTO `wp_gf_form_view` VALUES("38675", "3", "2016-09-21 17:01:17", "207.194.133.9", "90");
INSERT INTO `wp_gf_form_view` VALUES("38676", "13", "2016-09-21 17:01:17", "207.194.133.9", "14");
INSERT INTO `wp_gf_form_view` VALUES("38677", "1", "2016-09-21 17:56:00", "155.133.43.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("38678", "3", "2016-09-21 18:12:01", "184.70.62.254", "32");
INSERT INTO `wp_gf_form_view` VALUES("38679", "13", "2016-09-21 18:12:02", "184.70.62.254", "5");
INSERT INTO `wp_gf_form_view` VALUES("38680", "10", "2016-09-21 18:12:02", "184.70.62.254", "15");
INSERT INTO `wp_gf_form_view` VALUES("38681", "1", "2016-09-21 19:16:50", "199.229.234.249", "2");
INSERT INTO `wp_gf_form_view` VALUES("38682", "3", "2016-09-21 19:16:51", "199.229.234.249", "2095");
INSERT INTO `wp_gf_form_view` VALUES("38683", "13", "2016-09-21 19:16:51", "199.229.234.249", "333");
INSERT INTO `wp_gf_form_view` VALUES("38684", "10", "2016-09-21 19:16:52", "199.229.234.249", "926");
INSERT INTO `wp_gf_form_view` VALUES("38685", "11", "2016-09-21 19:22:08", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38686", "2", "2016-09-21 19:22:13", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38687", "8", "2016-09-21 19:35:19", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38688", "9", "2016-09-21 19:35:28", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38689", "6", "2016-09-21 19:36:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38690", "3", "2016-09-21 20:00:03", "5.9.98.130", "2550");
INSERT INTO `wp_gf_form_view` VALUES("38691", "13", "2016-09-21 20:00:04", "5.9.98.130", "444");
INSERT INTO `wp_gf_form_view` VALUES("38692", "10", "2016-09-21 20:00:07", "5.9.98.130", "1494");
INSERT INTO `wp_gf_form_view` VALUES("38693", "3", "2016-09-21 21:00:45", "40.77.167.37", "3712");
INSERT INTO `wp_gf_form_view` VALUES("38694", "13", "2016-09-21 21:00:46", "40.77.167.37", "624");
INSERT INTO `wp_gf_form_view` VALUES("38695", "10", "2016-09-21 21:00:46", "40.77.167.37", "1720");
INSERT INTO `wp_gf_form_view` VALUES("38696", "10", "2016-09-21 22:00:02", "5.9.98.130", "955");
INSERT INTO `wp_gf_form_view` VALUES("38697", "3", "2016-09-21 22:00:04", "5.9.98.130", "1416");
INSERT INTO `wp_gf_form_view` VALUES("38698", "13", "2016-09-21 22:00:06", "5.9.98.130", "236");
INSERT INTO `wp_gf_form_view` VALUES("38699", "1", "2016-09-21 22:45:37", "24.244.32.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("38700", "3", "2016-09-21 23:00:00", "5.9.98.130", "5136");
INSERT INTO `wp_gf_form_view` VALUES("38701", "10", "2016-09-21 23:00:00", "5.9.98.130", "1579");
INSERT INTO `wp_gf_form_view` VALUES("38702", "13", "2016-09-21 23:00:05", "5.9.98.130", "746");
INSERT INTO `wp_gf_form_view` VALUES("38703", "3", "2016-09-22 00:00:00", "5.9.98.130", "2390");
INSERT INTO `wp_gf_form_view` VALUES("38704", "10", "2016-09-22 00:00:00", "5.9.98.130", "2414");
INSERT INTO `wp_gf_form_view` VALUES("38705", "13", "2016-09-22 00:00:04", "5.9.98.130", "519");
INSERT INTO `wp_gf_form_view` VALUES("38706", "3", "2016-09-22 01:10:03", "77.75.79.101", "31");
INSERT INTO `wp_gf_form_view` VALUES("38707", "13", "2016-09-22 01:10:04", "77.75.79.101", "5");
INSERT INTO `wp_gf_form_view` VALUES("38708", "10", "2016-09-22 01:10:04", "77.75.79.101", "17");
INSERT INTO `wp_gf_form_view` VALUES("38709", "3", "2016-09-22 02:03:17", "5.9.98.130", "4208");
INSERT INTO `wp_gf_form_view` VALUES("38710", "13", "2016-09-22 02:03:17", "5.9.98.130", "652");
INSERT INTO `wp_gf_form_view` VALUES("38711", "10", "2016-09-22 02:03:17", "5.9.98.130", "1661");
INSERT INTO `wp_gf_form_view` VALUES("38712", "12", "2016-09-22 02:15:23", "157.55.39.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("38713", "10", "2016-09-22 03:00:00", "5.9.98.130", "404");
INSERT INTO `wp_gf_form_view` VALUES("38714", "3", "2016-09-22 03:00:05", "5.9.98.130", "1992");
INSERT INTO `wp_gf_form_view` VALUES("38715", "13", "2016-09-22 03:00:06", "5.9.98.130", "266");
INSERT INTO `wp_gf_form_view` VALUES("38716", "3", "2016-09-22 04:06:59", "157.55.39.168", "135");
INSERT INTO `wp_gf_form_view` VALUES("38717", "13", "2016-09-22 04:07:00", "157.55.39.168", "21");
INSERT INTO `wp_gf_form_view` VALUES("38718", "10", "2016-09-22 04:07:00", "157.55.39.168", "70");
INSERT INTO `wp_gf_form_view` VALUES("38719", "6", "2016-09-22 05:07:47", "40.77.167.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("38720", "3", "2016-09-22 05:07:47", "40.77.167.37", "54");
INSERT INTO `wp_gf_form_view` VALUES("38721", "13", "2016-09-22 05:07:48", "40.77.167.37", "9");
INSERT INTO `wp_gf_form_view` VALUES("38722", "10", "2016-09-22 05:07:48", "40.77.167.37", "27");
INSERT INTO `wp_gf_form_view` VALUES("38723", "1", "2016-09-22 05:24:37", "184.66.251.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("38724", "11", "2016-09-22 06:13:43", "77.75.76.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("38725", "3", "2016-09-22 06:13:44", "77.75.76.163", "25");
INSERT INTO `wp_gf_form_view` VALUES("38726", "13", "2016-09-22 06:13:44", "77.75.76.163", "5");
INSERT INTO `wp_gf_form_view` VALUES("38727", "10", "2016-09-22 06:13:44", "77.75.76.163", "12");
INSERT INTO `wp_gf_form_view` VALUES("38728", "9", "2016-09-22 06:58:22", "157.55.39.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("38729", "3", "2016-09-22 07:06:38", "157.55.39.243", "956");
INSERT INTO `wp_gf_form_view` VALUES("38730", "13", "2016-09-22 07:06:38", "157.55.39.243", "157");
INSERT INTO `wp_gf_form_view` VALUES("38731", "10", "2016-09-22 07:06:38", "157.55.39.243", "481");
INSERT INTO `wp_gf_form_view` VALUES("38732", "11", "2016-09-22 07:42:34", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38733", "2", "2016-09-22 07:42:38", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38734", "1", "2016-09-22 07:45:04", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38735", "8", "2016-09-22 07:55:40", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38736", "9", "2016-09-22 07:55:50", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38737", "6", "2016-09-22 07:56:55", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("38738", "3", "2016-09-22 08:00:13", "5.9.98.130", "3305");
INSERT INTO `wp_gf_form_view` VALUES("38739", "13", "2016-09-22 08:00:13", "5.9.98.130", "538");
INSERT INTO `wp_gf_form_view` VALUES("38740", "10", "2016-09-22 08:00:13", "5.9.98.130", "1502");
INSERT INTO `wp_gf_form_view` VALUES("38741", "13", "2016-09-22 09:00:00", "5.9.98.130", "485");
INSERT INTO `wp_gf_form_view` VALUES("38742", "3", "2016-09-22 09:00:00", "5.9.98.130", "3194");
INSERT INTO `wp_gf_form_view` VALUES("38743", "10", "2016-09-22 09:00:02", "5.9.98.130", "1267");
INSERT INTO `wp_gf_form_view` VALUES("38744", "9", "2016-09-22 09:38:35", "157.55.39.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("38745", "3", "2016-09-22 10:00:00", "5.9.98.130", "1416");
INSERT INTO `wp_gf_form_view` VALUES("38746", "13", "2016-09-22 10:00:00", "5.9.98.130", "306");
INSERT INTO `wp_gf_form_view` VALUES("38747", "10", "2016-09-22 10:00:00", "5.9.98.130", "1398");
INSERT INTO `wp_gf_form_view` VALUES("38748", "1", "2016-09-22 10:35:39", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("38749", "3", "2016-09-22 11:04:55", "5.9.98.130", "4896");
INSERT INTO `wp_gf_form_view` VALUES("38750", "13", "2016-09-22 11:04:55", "5.9.98.130", "698");
INSERT INTO `wp_gf_form_view` VALUES("38751", "10", "2016-09-22 11:04:56", "5.9.98.130", "1383");
INSERT INTO `wp_gf_form_view` VALUES("38752", "3", "2016-09-22 12:00:00", "5.9.98.130", "3040");
INSERT INTO `wp_gf_form_view` VALUES("38753", "13", "2016-09-22 12:00:03", "5.9.98.130", "635");
INSERT INTO `wp_gf_form_view` VALUES("38754", "10", "2016-09-22 12:00:03", "5.9.98.130", "2809");
INSERT INTO `wp_gf_form_view` VALUES("38755", "3", "2016-09-22 13:00:00", "5.9.98.130", "516");
INSERT INTO `wp_gf_form_view` VALUES("38756", "13", "2016-09-22 13:00:01", "5.9.98.130", "86");
INSERT INTO `wp_gf_form_view` VALUES("38757", "10", "2016-09-22 13:00:01", "5.9.98.130", "258");
INSERT INTO `wp_gf_form_view` VALUES("38758", "1", "2016-09-22 13:38:44", "184.66.33.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("38759", "3", "2016-09-22 14:21:43", "5.9.98.130", "2615");
INSERT INTO `wp_gf_form_view` VALUES("38760", "13", "2016-09-22 14:21:45", "5.9.98.130", "436");
INSERT INTO `wp_gf_form_view` VALUES("38761", "10", "2016-09-22 14:21:45", "5.9.98.130", "1306");
INSERT INTO `wp_gf_form_view` VALUES("38762", "10", "2016-09-22 15:00:00", "5.9.98.130", "1076");
INSERT INTO `wp_gf_form_view` VALUES("38763", "3", "2016-09-22 15:00:00", "5.9.98.130", "5192");
INSERT INTO `wp_gf_form_view` VALUES("38764", "13", "2016-09-22 15:00:05", "5.9.98.130", "696");
INSERT INTO `wp_gf_form_view` VALUES("38765", "3", "2016-09-22 16:00:00", "5.9.98.130", "4566");
INSERT INTO `wp_gf_form_view` VALUES("38766", "13", "2016-09-22 16:00:02", "5.9.98.130", "700");
INSERT INTO `wp_gf_form_view` VALUES("38767", "10", "2016-09-22 16:00:06", "5.9.98.130", "1735");
INSERT INTO `wp_gf_form_view` VALUES("38768", "1", "2016-09-22 16:01:23", "96.54.196.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("38769", "3", "2016-09-22 17:00:02", "5.9.98.130", "2907");
INSERT INTO `wp_gf_form_view` VALUES("38770", "13", "2016-09-22 17:00:03", "5.9.98.130", "738");
INSERT INTO `wp_gf_form_view` VALUES("38771", "10", "2016-09-22 17:00:03", "5.9.98.130", "2999");
INSERT INTO `wp_gf_form_view` VALUES("38772", "1", "2016-09-22 17:14:42", "205.233.121.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("38773", "10", "2016-09-22 18:00:00", "5.9.98.130", "1938");
INSERT INTO `wp_gf_form_view` VALUES("38774", "3", "2016-09-22 18:00:03", "5.9.98.130", "1964");
INSERT INTO `wp_gf_form_view` VALUES("38775", "13", "2016-09-22 18:00:05", "5.9.98.130", "328");
INSERT INTO `wp_gf_form_view` VALUES("38776", "3", "2016-09-22 19:02:23", "199.21.99.202", "105");
INSERT INTO `wp_gf_form_view` VALUES("38777", "13", "2016-09-22 19:02:24", "199.21.99.202", "17");
INSERT INTO `wp_gf_form_view` VALUES("38778", "10", "2016-09-22 19:02:24", "199.21.99.202", "54");
INSERT INTO `wp_gf_form_view` VALUES("38779", "3", "2016-09-22 20:00:46", "199.21.99.202", "121");
INSERT INTO `wp_gf_form_view` VALUES("38780", "13", "2016-09-22 20:00:47", "199.21.99.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("38781", "10", "2016-09-22 20:00:47", "199.21.99.202", "61");
INSERT INTO `wp_gf_form_view` VALUES("38782", "1", "2016-09-22 20:02:48", "184.69.124.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("38783", "2", "2016-09-22 20:07:57", "167.114.65.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("38784", "5", "2016-09-22 20:13:25", "202.46.58.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("38785", "3", "2016-09-22 21:10:25", "5.9.98.130", "3283");
INSERT INTO `wp_gf_form_view` VALUES("38786", "13", "2016-09-22 21:10:25", "5.9.98.130", "547");
INSERT INTO `wp_gf_form_view` VALUES("38787", "10", "2016-09-22 21:10:25", "5.9.98.130", "1641");
INSERT INTO `wp_gf_form_view` VALUES("38788", "1", "2016-09-22 21:33:02", "198.71.87.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("38789", "3", "2016-09-22 22:00:00", "5.9.98.130", "3989");
INSERT INTO `wp_gf_form_view` VALUES("38790", "13", "2016-09-22 22:00:01", "5.9.98.130", "607");
INSERT INTO `wp_gf_form_view` VALUES("38791", "10", "2016-09-22 22:00:01", "5.9.98.130", "1481");
INSERT INTO `wp_gf_form_view` VALUES("38792", "1", "2016-09-22 22:05:23", "107.175.224.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("38793", "3", "2016-09-22 23:00:01", "5.9.98.130", "5055");
INSERT INTO `wp_gf_form_view` VALUES("38794", "13", "2016-09-22 23:00:03", "5.9.98.130", "674");
INSERT INTO `wp_gf_form_view` VALUES("38795", "10", "2016-09-22 23:00:06", "5.9.98.130", "1014");
INSERT INTO `wp_gf_form_view` VALUES("38796", "3", "2016-09-23 00:00:00", "5.9.98.130", "5198");
INSERT INTO `wp_gf_form_view` VALUES("38797", "13", "2016-09-23 00:00:00", "5.9.98.130", "695");
INSERT INTO `wp_gf_form_view` VALUES("38798", "10", "2016-09-23 00:00:04", "5.9.98.130", "1057");
INSERT INTO `wp_gf_form_view` VALUES("38799", "3", "2016-09-23 01:00:03", "5.9.98.130", "2680");
INSERT INTO `wp_gf_form_view` VALUES("38800", "13", "2016-09-23 01:00:04", "5.9.98.130", "359");
INSERT INTO `wp_gf_form_view` VALUES("38801", "10", "2016-09-23 01:00:08", "5.9.98.130", "561");
INSERT INTO `wp_gf_form_view` VALUES("38802", "3", "2016-09-23 02:19:24", "199.21.99.202", "36");
INSERT INTO `wp_gf_form_view` VALUES("38803", "13", "2016-09-23 02:19:25", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("38804", "10", "2016-09-23 02:19:25", "199.21.99.202", "18");
INSERT INTO `wp_gf_form_view` VALUES("38805", "10", "2016-09-23 03:12:31", "108.180.145.60", "46");
INSERT INTO `wp_gf_form_view` VALUES("38806", "3", "2016-09-23 03:12:31", "108.180.145.60", "87");
INSERT INTO `wp_gf_form_view` VALUES("38807", "13", "2016-09-23 03:12:31", "108.180.145.60", "15");
INSERT INTO `wp_gf_form_view` VALUES("38808", "1", "2016-09-23 03:21:43", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("38809", "3", "2016-09-23 04:24:19", "199.21.99.202", "37");
INSERT INTO `wp_gf_form_view` VALUES("38810", "13", "2016-09-23 04:24:21", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("38811", "10", "2016-09-23 04:24:21", "199.21.99.202", "19");
INSERT INTO `wp_gf_form_view` VALUES("38812", "3", "2016-09-23 05:05:11", "217.69.133.229", "87");
INSERT INTO `wp_gf_form_view` VALUES("38813", "13", "2016-09-23 05:05:12", "217.69.133.229", "14");
INSERT INTO `wp_gf_form_view` VALUES("38814", "10", "2016-09-23 05:05:12", "217.69.133.229", "43");
INSERT INTO `wp_gf_form_view` VALUES("38815", "11", "2016-09-23 05:43:54", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("38816", "1", "2016-09-23 06:02:01", "178.32.12.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("38817", "3", "2016-09-23 06:02:03", "178.32.12.117", "55");
INSERT INTO `wp_gf_form_view` VALUES("38818", "13", "2016-09-23 06:02:03", "178.32.12.117", "10");
INSERT INTO `wp_gf_form_view` VALUES("38819", "10", "2016-09-23 06:02:03", "178.32.12.117", "30");
INSERT INTO `wp_gf_form_view` VALUES("38820", "3", "2016-09-23 08:03:40", "40.77.167.37", "53");
INSERT INTO `wp_gf_form_view` VALUES("38821", "13", "2016-09-23 08:03:42", "40.77.167.37", "8");
INSERT INTO `wp_gf_form_view` VALUES("38822", "10", "2016-09-23 08:03:42", "40.77.167.37", "24");
INSERT INTO `wp_gf_form_view` VALUES("38823", "13", "2016-09-23 09:13:34", "68.180.230.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("38824", "10", "2016-09-23 09:13:34", "68.180.230.168", "14");
INSERT INTO `wp_gf_form_view` VALUES("38825", "3", "2016-09-23 09:13:35", "68.180.230.168", "33");
INSERT INTO `wp_gf_form_view` VALUES("38826", "1", "2016-09-23 09:34:54", "194.1.239.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("38827", "11", "2016-09-23 09:37:51", "207.46.13.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("38828", "3", "2016-09-23 11:52:44", "24.108.25.61", "25");
INSERT INTO `wp_gf_form_view` VALUES("38829", "13", "2016-09-23 11:52:46", "24.108.25.61", "4");
INSERT INTO `wp_gf_form_view` VALUES("38830", "10", "2016-09-23 11:52:46", "24.108.25.61", "12");
INSERT INTO `wp_gf_form_view` VALUES("38831", "10", "2016-09-23 12:14:18", "202.46.51.32", "20");
INSERT INTO `wp_gf_form_view` VALUES("38832", "3", "2016-09-23 12:14:18", "202.46.51.32", "47");
INSERT INTO `wp_gf_form_view` VALUES("38833", "13", "2016-09-23 12:14:18", "202.46.51.32", "7");
INSERT INTO `wp_gf_form_view` VALUES("38834", "10", "2016-09-23 13:11:34", "68.180.230.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("38835", "3", "2016-09-23 13:11:34", "68.180.230.168", "20");
INSERT INTO `wp_gf_form_view` VALUES("38836", "13", "2016-09-23 13:11:35", "68.180.230.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("38837", "3", "2016-09-23 14:03:10", "207.46.13.170", "24");
INSERT INTO `wp_gf_form_view` VALUES("38838", "13", "2016-09-23 14:03:11", "207.46.13.170", "4");
INSERT INTO `wp_gf_form_view` VALUES("38839", "10", "2016-09-23 14:03:11", "207.46.13.170", "12");
INSERT INTO `wp_gf_form_view` VALUES("38840", "3", "2016-09-23 15:01:12", "68.180.230.168", "25");
INSERT INTO `wp_gf_form_view` VALUES("38841", "13", "2016-09-23 15:01:13", "68.180.230.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("38842", "10", "2016-09-23 15:01:13", "68.180.230.168", "12");
INSERT INTO `wp_gf_form_view` VALUES("38843", "3", "2016-09-23 16:03:34", "64.114.222.236", "503");
INSERT INTO `wp_gf_form_view` VALUES("38844", "13", "2016-09-23 16:03:35", "64.114.222.236", "83");
INSERT INTO `wp_gf_form_view` VALUES("38845", "10", "2016-09-23 16:03:35", "64.114.222.236", "264");
INSERT INTO `wp_gf_form_view` VALUES("38846", "9", "2016-09-23 16:27:54", "207.46.13.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("38847", "7", "2016-09-23 16:28:08", "207.46.13.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("38848", "12", "2016-09-23 16:28:21", "207.46.13.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("38849", "3", "2016-09-23 17:03:07", "202.46.53.151", "88");
INSERT INTO `wp_gf_form_view` VALUES("38850", "13", "2016-09-23 17:03:08", "202.46.53.151", "14");
INSERT INTO `wp_gf_form_view` VALUES("38851", "10", "2016-09-23 17:03:08", "202.46.53.151", "43");
INSERT INTO `wp_gf_form_view` VALUES("38852", "10", "2016-09-23 18:04:24", "66.249.79.104", "17");
INSERT INTO `wp_gf_form_view` VALUES("38853", "3", "2016-09-23 18:04:25", "66.249.79.104", "30");
INSERT INTO `wp_gf_form_view` VALUES("38854", "13", "2016-09-23 18:04:25", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("38855", "3", "2016-09-23 19:10:19", "66.249.79.108", "25");
INSERT INTO `wp_gf_form_view` VALUES("38856", "13", "2016-09-23 19:10:19", "66.249.79.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("38857", "10", "2016-09-23 19:10:19", "66.249.79.108", "13");
INSERT INTO `wp_gf_form_view` VALUES("38858", "10", "2016-09-23 20:51:03", "217.69.133.233", "7");
INSERT INTO `wp_gf_form_view` VALUES("38859", "3", "2016-09-23 20:51:03", "217.69.133.233", "13");
INSERT INTO `wp_gf_form_view` VALUES("38860", "13", "2016-09-23 20:51:04", "217.69.133.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("38861", "3", "2016-09-23 21:17:09", "40.77.167.44", "175");
INSERT INTO `wp_gf_form_view` VALUES("38862", "13", "2016-09-23 21:17:10", "40.77.167.44", "28");
INSERT INTO `wp_gf_form_view` VALUES("38863", "10", "2016-09-23 21:17:10", "40.77.167.44", "81");
INSERT INTO `wp_gf_form_view` VALUES("38864", "8", "2016-09-23 21:29:31", "157.55.39.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("38865", "1", "2016-09-23 21:36:54", "155.133.43.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("38866", "3", "2016-09-23 22:09:21", "66.249.79.108", "82");
INSERT INTO `wp_gf_form_view` VALUES("38867", "13", "2016-09-23 22:09:21", "66.249.79.108", "13");
INSERT INTO `wp_gf_form_view` VALUES("38868", "10", "2016-09-23 22:09:21", "66.249.79.108", "39");
INSERT INTO `wp_gf_form_view` VALUES("38869", "3", "2016-09-23 23:07:46", "68.180.230.168", "57");
INSERT INTO `wp_gf_form_view` VALUES("38870", "13", "2016-09-23 23:07:46", "68.180.230.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("38871", "10", "2016-09-23 23:07:46", "68.180.230.168", "25");
INSERT INTO `wp_gf_form_view` VALUES("38872", "3", "2016-09-24 00:00:34", "217.69.133.231", "24");
INSERT INTO `wp_gf_form_view` VALUES("38873", "13", "2016-09-24 00:00:35", "217.69.133.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("38874", "10", "2016-09-24 00:00:35", "217.69.133.231", "12");
INSERT INTO `wp_gf_form_view` VALUES("38875", "1", "2016-09-24 00:03:40", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("38876", "10", "2016-09-24 01:08:24", "68.180.230.168", "29");
INSERT INTO `wp_gf_form_view` VALUES("38877", "3", "2016-09-24 01:08:24", "68.180.230.168", "38");
INSERT INTO `wp_gf_form_view` VALUES("38878", "13", "2016-09-24 01:08:24", "68.180.230.168", "7");
INSERT INTO `wp_gf_form_view` VALUES("38879", "3", "2016-09-24 02:04:41", "163.172.51.123", "31");
INSERT INTO `wp_gf_form_view` VALUES("38880", "13", "2016-09-24 02:04:42", "163.172.51.123", "5");
INSERT INTO `wp_gf_form_view` VALUES("38881", "10", "2016-09-24 02:04:42", "163.172.51.123", "15");
INSERT INTO `wp_gf_form_view` VALUES("38882", "3", "2016-09-24 03:07:14", "66.249.79.104", "70");
INSERT INTO `wp_gf_form_view` VALUES("38883", "13", "2016-09-24 03:07:14", "66.249.79.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("38884", "10", "2016-09-24 03:07:14", "66.249.79.104", "38");
INSERT INTO `wp_gf_form_view` VALUES("38885", "9", "2016-09-24 03:19:54", "75.154.236.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("38886", "3", "2016-09-24 04:28:36", "207.46.13.170", "26");
INSERT INTO `wp_gf_form_view` VALUES("38887", "13", "2016-09-24 04:28:38", "207.46.13.170", "4");
INSERT INTO `wp_gf_form_view` VALUES("38888", "10", "2016-09-24 04:28:38", "207.46.13.170", "12");
INSERT INTO `wp_gf_form_view` VALUES("38889", "3", "2016-09-24 05:15:05", "40.77.167.44", "18");
INSERT INTO `wp_gf_form_view` VALUES("38890", "13", "2016-09-24 05:15:05", "40.77.167.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("38891", "10", "2016-09-24 05:15:05", "40.77.167.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("38892", "3", "2016-09-24 06:11:46", "202.46.48.83", "89");
INSERT INTO `wp_gf_form_view` VALUES("38893", "13", "2016-09-24 06:11:46", "202.46.48.83", "14");
INSERT INTO `wp_gf_form_view` VALUES("38894", "10", "2016-09-24 06:11:47", "202.46.48.83", "44");
INSERT INTO `wp_gf_form_view` VALUES("38895", "3", "2016-09-24 07:38:26", "66.249.79.112", "19");
INSERT INTO `wp_gf_form_view` VALUES("38896", "13", "2016-09-24 07:38:27", "66.249.79.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("38897", "10", "2016-09-24 07:38:27", "66.249.79.112", "10");
INSERT INTO `wp_gf_form_view` VALUES("38898", "3", "2016-09-24 08:32:51", "66.249.79.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("38899", "13", "2016-09-24 08:32:51", "66.249.79.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("38900", "10", "2016-09-24 08:32:51", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("38901", "3", "2016-09-24 09:05:52", "142.4.215.116", "440");
INSERT INTO `wp_gf_form_view` VALUES("38902", "13", "2016-09-24 09:05:52", "142.4.215.116", "74");
INSERT INTO `wp_gf_form_view` VALUES("38903", "10", "2016-09-24 09:05:52", "142.4.215.116", "223");
INSERT INTO `wp_gf_form_view` VALUES("38904", "11", "2016-09-24 09:06:08", "142.4.215.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("38905", "2", "2016-09-24 09:06:12", "142.4.215.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("38906", "1", "2016-09-24 09:08:17", "142.4.215.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("38907", "3", "2016-09-24 10:11:56", "66.249.79.112", "24");
INSERT INTO `wp_gf_form_view` VALUES("38908", "13", "2016-09-24 10:11:56", "66.249.79.112", "4");
INSERT INTO `wp_gf_form_view` VALUES("38909", "10", "2016-09-24 10:11:56", "66.249.79.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("38910", "8", "2016-09-24 10:42:17", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("38911", "3", "2016-09-24 11:04:49", "217.69.133.229", "52");
INSERT INTO `wp_gf_form_view` VALUES("38912", "13", "2016-09-24 11:04:49", "217.69.133.229", "8");
INSERT INTO `wp_gf_form_view` VALUES("38913", "10", "2016-09-24 11:04:49", "217.69.133.229", "24");
INSERT INTO `wp_gf_form_view` VALUES("38914", "2", "2016-09-24 12:15:52", "202.46.52.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("38915", "3", "2016-09-24 12:15:52", "202.46.52.71", "38");
INSERT INTO `wp_gf_form_view` VALUES("38916", "13", "2016-09-24 12:15:52", "202.46.52.71", "7");
INSERT INTO `wp_gf_form_view` VALUES("38917", "10", "2016-09-24 12:15:52", "202.46.52.71", "27");
INSERT INTO `wp_gf_form_view` VALUES("38918", "3", "2016-09-24 13:05:04", "157.55.39.231", "13");
INSERT INTO `wp_gf_form_view` VALUES("38919", "13", "2016-09-24 13:05:05", "157.55.39.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("38920", "10", "2016-09-24 13:05:05", "157.55.39.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("38921", "3", "2016-09-24 15:20:30", "157.55.39.231", "26");
INSERT INTO `wp_gf_form_view` VALUES("38922", "13", "2016-09-24 15:20:30", "157.55.39.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("38923", "10", "2016-09-24 15:20:30", "157.55.39.231", "13");
INSERT INTO `wp_gf_form_view` VALUES("38924", "3", "2016-09-24 16:01:07", "64.114.223.11", "54");
INSERT INTO `wp_gf_form_view` VALUES("38925", "13", "2016-09-24 16:01:07", "64.114.223.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("38926", "10", "2016-09-24 16:01:07", "64.114.223.11", "27");
INSERT INTO `wp_gf_form_view` VALUES("38927", "1", "2016-09-24 16:48:43", "104.168.141.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("38928", "3", "2016-09-24 17:07:34", "157.55.39.231", "36");
INSERT INTO `wp_gf_form_view` VALUES("38929", "13", "2016-09-24 17:07:34", "157.55.39.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("38930", "10", "2016-09-24 17:07:34", "157.55.39.231", "18");
INSERT INTO `wp_gf_form_view` VALUES("38931", "11", "2016-09-24 18:30:54", "40.77.167.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("38932", "3", "2016-09-24 18:30:55", "40.77.167.32", "29");
INSERT INTO `wp_gf_form_view` VALUES("38933", "13", "2016-09-24 18:30:55", "40.77.167.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("38934", "10", "2016-09-24 18:30:55", "40.77.167.32", "12");
INSERT INTO `wp_gf_form_view` VALUES("38935", "3", "2016-09-24 19:02:17", "68.180.230.168", "54");
INSERT INTO `wp_gf_form_view` VALUES("38936", "13", "2016-09-24 19:02:17", "68.180.230.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("38937", "10", "2016-09-24 19:02:17", "68.180.230.168", "32");
INSERT INTO `wp_gf_form_view` VALUES("38938", "3", "2016-09-24 20:04:02", "207.46.13.108", "45");
INSERT INTO `wp_gf_form_view` VALUES("38939", "13", "2016-09-24 20:04:02", "207.46.13.108", "7");
INSERT INTO `wp_gf_form_view` VALUES("38940", "10", "2016-09-24 20:04:02", "207.46.13.108", "22");
INSERT INTO `wp_gf_form_view` VALUES("38941", "2", "2016-09-24 20:30:41", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("38942", "3", "2016-09-24 21:05:55", "77.75.78.162", "88");
INSERT INTO `wp_gf_form_view` VALUES("38943", "13", "2016-09-24 21:05:55", "77.75.78.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("38944", "10", "2016-09-24 21:05:55", "77.75.78.162", "44");
INSERT INTO `wp_gf_form_view` VALUES("38945", "3", "2016-09-24 22:03:24", "69.58.178.57", "74");
INSERT INTO `wp_gf_form_view` VALUES("38946", "13", "2016-09-24 22:03:24", "69.58.178.57", "12");
INSERT INTO `wp_gf_form_view` VALUES("38947", "10", "2016-09-24 22:03:24", "69.58.178.57", "36");
INSERT INTO `wp_gf_form_view` VALUES("38948", "11", "2016-09-24 22:03:42", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("38949", "2", "2016-09-24 22:03:45", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("38950", "6", "2016-09-24 22:16:42", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("38951", "3", "2016-09-24 23:17:25", "157.55.39.251", "26");
INSERT INTO `wp_gf_form_view` VALUES("38952", "13", "2016-09-24 23:17:28", "157.55.39.251", "4");
INSERT INTO `wp_gf_form_view` VALUES("38953", "10", "2016-09-24 23:17:28", "157.55.39.251", "12");
INSERT INTO `wp_gf_form_view` VALUES("38954", "8", "2016-09-25 00:09:56", "70.67.234.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("38955", "3", "2016-09-25 00:09:56", "70.67.234.96", "24");
INSERT INTO `wp_gf_form_view` VALUES("38956", "13", "2016-09-25 00:09:56", "70.67.234.96", "4");
INSERT INTO `wp_gf_form_view` VALUES("38957", "10", "2016-09-25 00:09:57", "70.67.234.96", "12");
INSERT INTO `wp_gf_form_view` VALUES("38958", "3", "2016-09-25 01:13:32", "66.249.79.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("38959", "13", "2016-09-25 01:13:32", "66.249.79.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("38960", "10", "2016-09-25 01:13:32", "66.249.79.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("38961", "3", "2016-09-25 02:39:34", "68.180.230.168", "19");
INSERT INTO `wp_gf_form_view` VALUES("38962", "13", "2016-09-25 02:39:36", "68.180.230.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("38963", "10", "2016-09-25 02:39:36", "68.180.230.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("38964", "10", "2016-09-25 03:00:12", "194.187.170.124", "7");
INSERT INTO `wp_gf_form_view` VALUES("38965", "3", "2016-09-25 03:15:33", "194.187.170.124", "12");
INSERT INTO `wp_gf_form_view` VALUES("38966", "13", "2016-09-25 03:15:33", "194.187.170.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("38967", "3", "2016-09-25 04:17:05", "194.187.170.124", "26");
INSERT INTO `wp_gf_form_view` VALUES("38968", "13", "2016-09-25 04:37:38", "194.187.170.124", "4");
INSERT INTO `wp_gf_form_view` VALUES("38969", "10", "2016-09-25 04:37:38", "194.187.170.124", "12");
INSERT INTO `wp_gf_form_view` VALUES("38970", "3", "2016-09-25 05:02:48", "194.187.170.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("38971", "3", "2016-09-25 06:38:25", "66.249.79.104", "18");
INSERT INTO `wp_gf_form_view` VALUES("38972", "13", "2016-09-25 06:38:26", "66.249.79.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("38973", "10", "2016-09-25 06:38:26", "66.249.79.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("38974", "3", "2016-09-25 08:22:21", "68.180.230.168", "19");
INSERT INTO `wp_gf_form_view` VALUES("38975", "13", "2016-09-25 08:22:23", "68.180.230.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("38976", "10", "2016-09-25 08:22:23", "68.180.230.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("38977", "3", "2016-09-25 09:35:42", "68.180.230.168", "13");
INSERT INTO `wp_gf_form_view` VALUES("38978", "13", "2016-09-25 09:35:42", "68.180.230.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("38979", "10", "2016-09-25 09:35:42", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("38980", "3", "2016-09-25 10:30:37", "1.125.48.174", "51");
INSERT INTO `wp_gf_form_view` VALUES("38981", "13", "2016-09-25 10:30:38", "1.125.48.174", "8");
INSERT INTO `wp_gf_form_view` VALUES("38982", "10", "2016-09-25 10:30:38", "1.125.48.174", "26");
INSERT INTO `wp_gf_form_view` VALUES("38983", "3", "2016-09-25 11:37:27", "77.75.77.17", "7");
INSERT INTO `wp_gf_form_view` VALUES("38984", "13", "2016-09-25 11:37:28", "77.75.77.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("38985", "10", "2016-09-25 11:37:28", "77.75.77.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("38986", "3", "2016-09-25 12:13:15", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("38987", "13", "2016-09-25 12:13:16", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("38988", "10", "2016-09-25 12:13:16", "66.249.79.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("38989", "3", "2016-09-25 13:12:45", "207.46.13.109", "66");
INSERT INTO `wp_gf_form_view` VALUES("38990", "13", "2016-09-25 13:12:47", "207.46.13.109", "10");
INSERT INTO `wp_gf_form_view` VALUES("38991", "10", "2016-09-25 13:12:47", "207.46.13.109", "30");
INSERT INTO `wp_gf_form_view` VALUES("38992", "3", "2016-09-25 14:21:31", "157.55.39.53", "37");
INSERT INTO `wp_gf_form_view` VALUES("38993", "13", "2016-09-25 14:21:32", "157.55.39.53", "6");
INSERT INTO `wp_gf_form_view` VALUES("38994", "10", "2016-09-25 14:21:32", "157.55.39.53", "18");
INSERT INTO `wp_gf_form_view` VALUES("38995", "3", "2016-09-25 15:04:52", "40.77.167.52", "19");
INSERT INTO `wp_gf_form_view` VALUES("38996", "13", "2016-09-25 15:04:53", "40.77.167.52", "3");
INSERT INTO `wp_gf_form_view` VALUES("38997", "10", "2016-09-25 15:04:53", "40.77.167.52", "9");
INSERT INTO `wp_gf_form_view` VALUES("38998", "3", "2016-09-25 16:04:06", "202.46.53.196", "18");
INSERT INTO `wp_gf_form_view` VALUES("38999", "13", "2016-09-25 16:04:06", "202.46.53.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("39000", "10", "2016-09-25 16:04:06", "202.46.53.196", "9");
INSERT INTO `wp_gf_form_view` VALUES("39001", "3", "2016-09-25 17:01:16", "207.46.13.109", "25");
INSERT INTO `wp_gf_form_view` VALUES("39002", "13", "2016-09-25 17:01:16", "207.46.13.109", "4");
INSERT INTO `wp_gf_form_view` VALUES("39003", "10", "2016-09-25 17:01:16", "207.46.13.109", "12");
INSERT INTO `wp_gf_form_view` VALUES("39004", "3", "2016-09-25 18:00:01", "156.57.130.255", "30");
INSERT INTO `wp_gf_form_view` VALUES("39005", "13", "2016-09-25 18:00:02", "156.57.130.255", "5");
INSERT INTO `wp_gf_form_view` VALUES("39006", "10", "2016-09-25 18:00:02", "156.57.130.255", "15");
INSERT INTO `wp_gf_form_view` VALUES("39007", "1", "2016-09-25 19:12:13", "198.46.227.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("39008", "3", "2016-09-25 19:12:14", "198.46.227.69", "20");
INSERT INTO `wp_gf_form_view` VALUES("39009", "13", "2016-09-25 19:12:16", "198.46.227.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("39010", "10", "2016-09-25 19:12:16", "198.46.227.69", "12");
INSERT INTO `wp_gf_form_view` VALUES("39011", "3", "2016-09-25 20:24:44", "96.50.8.162", "74");
INSERT INTO `wp_gf_form_view` VALUES("39012", "13", "2016-09-25 20:24:46", "96.50.8.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("39013", "10", "2016-09-25 20:24:46", "96.50.8.162", "36");
INSERT INTO `wp_gf_form_view` VALUES("39014", "1", "2016-09-25 20:38:46", "24.69.17.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("39015", "1", "2016-09-25 21:18:15", "24.69.17.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("39016", "3", "2016-09-25 21:18:16", "24.69.17.166", "349");
INSERT INTO `wp_gf_form_view` VALUES("39017", "13", "2016-09-25 21:18:16", "24.69.17.166", "55");
INSERT INTO `wp_gf_form_view` VALUES("39018", "10", "2016-09-25 21:18:16", "24.69.17.166", "162");
INSERT INTO `wp_gf_form_view` VALUES("39019", "8", "2016-09-25 21:54:53", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("39020", "9", "2016-09-25 21:55:01", "157.55.39.53", "3");
INSERT INTO `wp_gf_form_view` VALUES("39021", "3", "2016-09-25 22:07:00", "24.108.184.58", "32");
INSERT INTO `wp_gf_form_view` VALUES("39022", "13", "2016-09-25 22:07:00", "24.108.184.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("39023", "10", "2016-09-25 22:07:00", "24.108.184.58", "15");
INSERT INTO `wp_gf_form_view` VALUES("39024", "3", "2016-09-25 23:00:15", "202.46.54.196", "44");
INSERT INTO `wp_gf_form_view` VALUES("39025", "13", "2016-09-25 23:00:16", "202.46.54.196", "9");
INSERT INTO `wp_gf_form_view` VALUES("39026", "10", "2016-09-25 23:00:16", "202.46.54.196", "21");
INSERT INTO `wp_gf_form_view` VALUES("39027", "12", "2016-09-25 23:37:20", "134.249.65.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("39028", "12", "2016-09-25 23:37:20", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("39029", "3", "2016-09-26 00:07:14", "202.46.48.205", "30");
INSERT INTO `wp_gf_form_view` VALUES("39030", "13", "2016-09-26 00:07:14", "202.46.48.205", "6");
INSERT INTO `wp_gf_form_view` VALUES("39031", "10", "2016-09-26 00:07:14", "202.46.48.205", "14");
INSERT INTO `wp_gf_form_view` VALUES("39032", "3", "2016-09-26 01:09:39", "157.55.39.207", "144");
INSERT INTO `wp_gf_form_view` VALUES("39033", "13", "2016-09-26 01:09:40", "157.55.39.207", "23");
INSERT INTO `wp_gf_form_view` VALUES("39034", "10", "2016-09-26 01:09:40", "157.55.39.207", "75");
INSERT INTO `wp_gf_form_view` VALUES("39035", "6", "2016-09-26 01:14:06", "40.77.167.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("39036", "5", "2016-09-26 01:14:16", "40.77.167.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("39037", "3", "2016-09-26 02:50:43", "154.20.41.63", "24");
INSERT INTO `wp_gf_form_view` VALUES("39038", "13", "2016-09-26 02:50:45", "154.20.41.63", "4");
INSERT INTO `wp_gf_form_view` VALUES("39039", "10", "2016-09-26 02:50:45", "154.20.41.63", "12");
INSERT INTO `wp_gf_form_view` VALUES("39040", "3", "2016-09-26 03:03:54", "142.104.200.130", "24");
INSERT INTO `wp_gf_form_view` VALUES("39041", "13", "2016-09-26 03:03:54", "142.104.200.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("39042", "10", "2016-09-26 03:03:54", "142.104.200.130", "12");
INSERT INTO `wp_gf_form_view` VALUES("39043", "3", "2016-09-26 04:28:27", "202.46.54.187", "13");
INSERT INTO `wp_gf_form_view` VALUES("39044", "13", "2016-09-26 04:28:27", "202.46.54.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("39045", "10", "2016-09-26 04:28:27", "202.46.54.187", "6");
INSERT INTO `wp_gf_form_view` VALUES("39046", "3", "2016-09-26 05:01:57", "202.46.54.146", "13");
INSERT INTO `wp_gf_form_view` VALUES("39047", "13", "2016-09-26 05:01:58", "202.46.54.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("39048", "10", "2016-09-26 05:01:58", "202.46.54.146", "6");
INSERT INTO `wp_gf_form_view` VALUES("39049", "13", "2016-09-26 06:02:14", "157.55.39.53", "6");
INSERT INTO `wp_gf_form_view` VALUES("39050", "3", "2016-09-26 06:02:14", "157.55.39.53", "30");
INSERT INTO `wp_gf_form_view` VALUES("39051", "10", "2016-09-26 06:02:14", "157.55.39.53", "15");
INSERT INTO `wp_gf_form_view` VALUES("39052", "11", "2016-09-26 06:16:04", "207.46.13.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("39053", "3", "2016-09-26 07:30:56", "79.141.160.52", "27");
INSERT INTO `wp_gf_form_view` VALUES("39054", "13", "2016-09-26 07:30:57", "79.141.160.52", "5");
INSERT INTO `wp_gf_form_view` VALUES("39055", "10", "2016-09-26 07:30:57", "79.141.160.52", "15");
INSERT INTO `wp_gf_form_view` VALUES("39056", "3", "2016-09-26 08:05:44", "66.249.79.104", "18");
INSERT INTO `wp_gf_form_view` VALUES("39057", "13", "2016-09-26 08:05:45", "66.249.79.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("39058", "10", "2016-09-26 08:05:45", "66.249.79.104", "17");
INSERT INTO `wp_gf_form_view` VALUES("39059", "3", "2016-09-26 09:04:14", "68.180.230.168", "27");
INSERT INTO `wp_gf_form_view` VALUES("39060", "13", "2016-09-26 09:04:14", "68.180.230.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("39061", "10", "2016-09-26 09:04:15", "68.180.230.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("39062", "3", "2016-09-26 10:44:49", "202.46.54.11", "6");
INSERT INTO `wp_gf_form_view` VALUES("39063", "13", "2016-09-26 10:44:50", "202.46.54.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("39064", "10", "2016-09-26 10:44:50", "202.46.54.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("39065", "3", "2016-09-26 11:17:29", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("39066", "13", "2016-09-26 11:17:30", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("39067", "10", "2016-09-26 11:17:30", "66.249.79.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("39068", "3", "2016-09-26 13:11:31", "77.75.76.164", "751");
INSERT INTO `wp_gf_form_view` VALUES("39069", "13", "2016-09-26 13:11:34", "77.75.76.164", "125");
INSERT INTO `wp_gf_form_view` VALUES("39070", "10", "2016-09-26 13:11:34", "77.75.76.164", "372");
INSERT INTO `wp_gf_form_view` VALUES("39071", "11", "2016-09-26 13:53:52", "167.114.156.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("39072", "2", "2016-09-26 13:53:54", "167.114.156.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("39073", "1", "2016-09-26 13:55:39", "167.114.156.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("39074", "3", "2016-09-26 14:00:00", "167.114.156.198", "2335");
INSERT INTO `wp_gf_form_view` VALUES("39075", "13", "2016-09-26 14:00:00", "167.114.156.198", "378");
INSERT INTO `wp_gf_form_view` VALUES("39076", "10", "2016-09-26 14:00:01", "167.114.156.198", "1063");
INSERT INTO `wp_gf_form_view` VALUES("39077", "5", "2016-09-26 15:21:14", "77.75.76.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("39078", "3", "2016-09-26 15:21:15", "77.75.76.172", "19");
INSERT INTO `wp_gf_form_view` VALUES("39079", "13", "2016-09-26 15:21:16", "77.75.76.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("39080", "10", "2016-09-26 15:21:16", "77.75.76.172", "9");
INSERT INTO `wp_gf_form_view` VALUES("39081", "3", "2016-09-26 16:23:47", "124.206.47.3", "62");
INSERT INTO `wp_gf_form_view` VALUES("39082", "13", "2016-09-26 16:23:47", "124.206.47.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("39083", "10", "2016-09-26 16:23:47", "124.206.47.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("39084", "1", "2016-09-26 17:06:52", "223.255.17.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("39085", "3", "2016-09-26 17:06:52", "223.255.17.9", "104");
INSERT INTO `wp_gf_form_view` VALUES("39086", "13", "2016-09-26 17:06:52", "223.255.17.9", "16");
INSERT INTO `wp_gf_form_view` VALUES("39087", "10", "2016-09-26 17:06:52", "223.255.17.9", "50");
INSERT INTO `wp_gf_form_view` VALUES("39088", "12", "2016-09-26 17:25:18", "134.249.65.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("39089", "3", "2016-09-26 18:01:59", "194.187.170.110", "39");
INSERT INTO `wp_gf_form_view` VALUES("39090", "13", "2016-09-26 18:36:29", "24.114.38.128", "7");
INSERT INTO `wp_gf_form_view` VALUES("39091", "10", "2016-09-26 18:36:29", "24.114.38.128", "21");
INSERT INTO `wp_gf_form_view` VALUES("39092", "3", "2016-09-26 19:02:45", "194.187.170.110", "33");
INSERT INTO `wp_gf_form_view` VALUES("39093", "13", "2016-09-26 19:16:13", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("39094", "10", "2016-09-26 19:16:13", "66.249.79.104", "13");
INSERT INTO `wp_gf_form_view` VALUES("39095", "10", "2016-09-26 20:00:00", "66.249.79.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("39096", "3", "2016-09-26 20:00:00", "66.249.79.108", "41");
INSERT INTO `wp_gf_form_view` VALUES("39097", "13", "2016-09-26 20:06:48", "202.46.54.196", "6");
INSERT INTO `wp_gf_form_view` VALUES("39098", "8", "2016-09-26 20:47:01", "66.249.79.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("39099", "3", "2016-09-26 21:13:47", "202.46.53.67", "6");
INSERT INTO `wp_gf_form_view` VALUES("39100", "13", "2016-09-26 21:13:47", "202.46.53.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("39101", "10", "2016-09-26 21:13:47", "202.46.53.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("39102", "3", "2016-09-26 22:04:35", "24.69.2.165", "60");
INSERT INTO `wp_gf_form_view` VALUES("39103", "13", "2016-09-26 22:04:37", "24.69.2.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("39104", "10", "2016-09-26 22:04:37", "24.69.2.165", "30");
INSERT INTO `wp_gf_form_view` VALUES("39105", "3", "2016-09-26 23:18:01", "70.70.252.145", "60");
INSERT INTO `wp_gf_form_view` VALUES("39106", "13", "2016-09-26 23:18:02", "70.70.252.145", "10");
INSERT INTO `wp_gf_form_view` VALUES("39107", "10", "2016-09-26 23:18:02", "70.70.252.145", "30");
INSERT INTO `wp_gf_form_view` VALUES("39108", "3", "2016-09-27 00:10:53", "128.199.104.69", "87");
INSERT INTO `wp_gf_form_view` VALUES("39109", "13", "2016-09-27 00:10:53", "128.199.104.69", "14");
INSERT INTO `wp_gf_form_view` VALUES("39110", "10", "2016-09-27 00:10:53", "128.199.104.69", "43");
INSERT INTO `wp_gf_form_view` VALUES("39111", "3", "2016-09-27 01:09:08", "70.67.222.223", "42");
INSERT INTO `wp_gf_form_view` VALUES("39112", "13", "2016-09-27 01:09:08", "70.67.222.223", "7");
INSERT INTO `wp_gf_form_view` VALUES("39113", "10", "2016-09-27 01:09:08", "70.67.222.223", "21");
INSERT INTO `wp_gf_form_view` VALUES("39114", "3", "2016-09-27 02:41:08", "24.108.25.61", "37");
INSERT INTO `wp_gf_form_view` VALUES("39115", "13", "2016-09-27 02:41:09", "24.108.25.61", "6");
INSERT INTO `wp_gf_form_view` VALUES("39116", "10", "2016-09-27 02:41:09", "24.108.25.61", "18");
INSERT INTO `wp_gf_form_view` VALUES("39117", "10", "2016-09-27 03:04:11", "68.180.230.168", "16");
INSERT INTO `wp_gf_form_view` VALUES("39118", "3", "2016-09-27 03:10:12", "66.249.79.112", "31");
INSERT INTO `wp_gf_form_view` VALUES("39119", "13", "2016-09-27 03:10:13", "66.249.79.112", "5");
INSERT INTO `wp_gf_form_view` VALUES("39120", "3", "2016-09-27 04:37:01", "154.20.232.135", "24");
INSERT INTO `wp_gf_form_view` VALUES("39121", "13", "2016-09-27 04:37:02", "154.20.232.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("39122", "10", "2016-09-27 04:37:02", "154.20.232.135", "12");
INSERT INTO `wp_gf_form_view` VALUES("39123", "3", "2016-09-27 05:39:56", "202.46.48.149", "14");
INSERT INTO `wp_gf_form_view` VALUES("39124", "13", "2016-09-27 05:39:58", "202.46.48.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("39125", "10", "2016-09-27 05:39:58", "202.46.48.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("39126", "3", "2016-09-27 06:01:09", "75.156.99.163", "25");
INSERT INTO `wp_gf_form_view` VALUES("39127", "13", "2016-09-27 06:01:09", "75.156.99.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("39128", "10", "2016-09-27 06:01:09", "75.156.99.163", "12");
INSERT INTO `wp_gf_form_view` VALUES("39129", "3", "2016-09-27 07:01:00", "68.180.230.168", "24");
INSERT INTO `wp_gf_form_view` VALUES("39130", "13", "2016-09-27 07:01:00", "68.180.230.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("39131", "10", "2016-09-27 07:01:00", "68.180.230.168", "12");
INSERT INTO `wp_gf_form_view` VALUES("39132", "3", "2016-09-27 08:27:21", "202.46.57.17", "26");
INSERT INTO `wp_gf_form_view` VALUES("39133", "13", "2016-09-27 08:27:21", "202.46.57.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("39134", "10", "2016-09-27 08:27:21", "202.46.57.17", "13");
INSERT INTO `wp_gf_form_view` VALUES("39135", "3", "2016-09-27 09:08:09", "77.75.79.54", "30");
INSERT INTO `wp_gf_form_view` VALUES("39136", "13", "2016-09-27 09:08:09", "77.75.79.54", "6");
INSERT INTO `wp_gf_form_view` VALUES("39137", "10", "2016-09-27 09:08:09", "77.75.79.54", "15");
INSERT INTO `wp_gf_form_view` VALUES("39138", "2", "2016-09-27 09:35:49", "202.46.50.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("39139", "3", "2016-09-27 10:08:46", "77.75.77.11", "19");
INSERT INTO `wp_gf_form_view` VALUES("39140", "13", "2016-09-27 10:08:47", "77.75.77.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("39141", "10", "2016-09-27 10:08:47", "77.75.77.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("39142", "3", "2016-09-27 11:31:10", "207.46.13.122", "18");
INSERT INTO `wp_gf_form_view` VALUES("39143", "13", "2016-09-27 11:31:11", "207.46.13.122", "3");
INSERT INTO `wp_gf_form_view` VALUES("39144", "10", "2016-09-27 11:31:11", "207.46.13.122", "9");
INSERT INTO `wp_gf_form_view` VALUES("39145", "3", "2016-09-27 12:49:51", "202.46.52.145", "13");
INSERT INTO `wp_gf_form_view` VALUES("39146", "13", "2016-09-27 12:49:52", "202.46.52.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("39147", "10", "2016-09-27 12:49:52", "202.46.52.145", "6");
INSERT INTO `wp_gf_form_view` VALUES("39148", "3", "2016-09-27 13:17:03", "208.54.86.156", "18");
INSERT INTO `wp_gf_form_view` VALUES("39149", "13", "2016-09-27 13:17:03", "208.54.86.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("39150", "10", "2016-09-27 13:17:03", "208.54.86.156", "9");
INSERT INTO `wp_gf_form_view` VALUES("39151", "3", "2016-09-27 14:42:11", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("39152", "13", "2016-09-27 14:42:12", "66.249.79.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("39153", "10", "2016-09-27 14:42:12", "66.249.79.108", "3");
INSERT INTO `wp_gf_form_view` VALUES("39154", "3", "2016-09-27 15:07:52", "202.46.52.16", "51");
INSERT INTO `wp_gf_form_view` VALUES("39155", "13", "2016-09-27 15:07:52", "202.46.52.16", "8");
INSERT INTO `wp_gf_form_view` VALUES("39156", "10", "2016-09-27 15:07:52", "202.46.52.16", "24");
INSERT INTO `wp_gf_form_view` VALUES("39157", "3", "2016-09-27 16:01:10", "77.75.79.36", "25");
INSERT INTO `wp_gf_form_view` VALUES("39158", "13", "2016-09-27 16:01:11", "77.75.79.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("39159", "10", "2016-09-27 16:01:11", "77.75.79.36", "12");
INSERT INTO `wp_gf_form_view` VALUES("39160", "3", "2016-09-27 17:41:53", "202.46.56.15", "25");
INSERT INTO `wp_gf_form_view` VALUES("39161", "13", "2016-09-27 17:41:55", "202.46.56.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("39162", "10", "2016-09-27 17:41:55", "202.46.56.15", "12");
INSERT INTO `wp_gf_form_view` VALUES("39163", "3", "2016-09-27 19:58:14", "154.5.180.167", "12");
INSERT INTO `wp_gf_form_view` VALUES("39164", "13", "2016-09-27 19:58:16", "154.5.180.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("39165", "10", "2016-09-27 19:58:16", "154.5.180.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("39166", "3", "2016-09-27 20:05:43", "207.46.13.38", "103");
INSERT INTO `wp_gf_form_view` VALUES("39167", "13", "2016-09-27 20:05:44", "207.46.13.38", "19");
INSERT INTO `wp_gf_form_view` VALUES("39168", "10", "2016-09-27 20:05:44", "207.46.13.38", "51");
INSERT INTO `wp_gf_form_view` VALUES("39169", "1", "2016-09-27 20:28:16", "23.254.20.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("39170", "3", "2016-09-27 21:00:29", "108.181.252.145", "74");
INSERT INTO `wp_gf_form_view` VALUES("39171", "13", "2016-09-27 21:00:29", "108.181.252.145", "12");
INSERT INTO `wp_gf_form_view` VALUES("39172", "10", "2016-09-27 21:00:29", "108.181.252.145", "36");
INSERT INTO `wp_gf_form_view` VALUES("39173", "2", "2016-09-27 22:20:20", "202.46.51.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("39174", "3", "2016-09-27 22:20:23", "202.46.51.184", "50");
INSERT INTO `wp_gf_form_view` VALUES("39175", "13", "2016-09-27 22:20:23", "202.46.51.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("39176", "10", "2016-09-27 22:20:23", "202.46.51.184", "24");
INSERT INTO `wp_gf_form_view` VALUES("39177", "3", "2016-09-28 00:15:44", "207.46.13.38", "38");
INSERT INTO `wp_gf_form_view` VALUES("39178", "13", "2016-09-28 00:15:45", "207.46.13.38", "7");
INSERT INTO `wp_gf_form_view` VALUES("39179", "10", "2016-09-28 00:15:45", "207.46.13.38", "18");
INSERT INTO `wp_gf_form_view` VALUES("39180", "10", "2016-09-28 01:03:39", "184.66.158.73", "92");
INSERT INTO `wp_gf_form_view` VALUES("39181", "3", "2016-09-28 01:03:39", "184.66.158.73", "183");
INSERT INTO `wp_gf_form_view` VALUES("39182", "13", "2016-09-28 01:03:39", "184.66.158.73", "31");
INSERT INTO `wp_gf_form_view` VALUES("39183", "5", "2016-09-28 01:15:16", "77.75.76.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("39184", "11", "2016-09-28 01:42:01", "104.131.32.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("39185", "2", "2016-09-28 01:42:01", "104.131.32.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("39186", "3", "2016-09-28 02:06:57", "24.69.154.167", "99");
INSERT INTO `wp_gf_form_view` VALUES("39187", "13", "2016-09-28 02:06:58", "24.69.154.167", "16");
INSERT INTO `wp_gf_form_view` VALUES("39188", "10", "2016-09-28 02:06:58", "24.69.154.167", "53");
INSERT INTO `wp_gf_form_view` VALUES("39189", "3", "2016-09-28 03:09:50", "77.75.78.160", "603");
INSERT INTO `wp_gf_form_view` VALUES("39190", "13", "2016-09-28 03:09:50", "77.75.78.160", "97");
INSERT INTO `wp_gf_form_view` VALUES("39191", "10", "2016-09-28 03:09:50", "77.75.78.160", "298");
INSERT INTO `wp_gf_form_view` VALUES("39192", "9", "2016-09-28 03:23:33", "207.46.13.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("39193", "12", "2016-09-28 03:24:43", "157.55.39.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("39194", "7", "2016-09-28 03:24:48", "157.55.39.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("39195", "8", "2016-09-28 03:25:48", "207.46.13.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("39196", "3", "2016-09-28 04:18:11", "220.181.108.167", "12");
INSERT INTO `wp_gf_form_view` VALUES("39197", "13", "2016-09-28 04:18:12", "220.181.108.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("39198", "10", "2016-09-28 04:18:12", "220.181.108.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("39199", "3", "2016-09-28 05:20:26", "154.5.71.107", "18");
INSERT INTO `wp_gf_form_view` VALUES("39200", "13", "2016-09-28 05:20:26", "154.5.71.107", "3");
INSERT INTO `wp_gf_form_view` VALUES("39201", "10", "2016-09-28 05:20:26", "154.5.71.107", "9");
INSERT INTO `wp_gf_form_view` VALUES("39202", "3", "2016-09-28 06:38:57", "216.232.155.173", "18");
INSERT INTO `wp_gf_form_view` VALUES("39203", "13", "2016-09-28 06:39:00", "216.232.155.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("39204", "10", "2016-09-28 06:39:00", "216.232.155.173", "9");
INSERT INTO `wp_gf_form_view` VALUES("39205", "3", "2016-09-28 07:26:15", "68.180.230.168", "12");
INSERT INTO `wp_gf_form_view` VALUES("39206", "13", "2016-09-28 07:26:15", "68.180.230.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("39207", "10", "2016-09-28 07:26:15", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("39208", "13", "2016-09-28 08:01:34", "77.75.79.72", "5");
INSERT INTO `wp_gf_form_view` VALUES("39209", "10", "2016-09-28 08:01:34", "77.75.79.72", "19");
INSERT INTO `wp_gf_form_view` VALUES("39210", "3", "2016-09-28 08:01:35", "77.75.79.72", "27");
INSERT INTO `wp_gf_form_view` VALUES("39211", "3", "2016-09-28 09:44:01", "77.75.77.119", "20");
INSERT INTO `wp_gf_form_view` VALUES("39212", "13", "2016-09-28 09:44:02", "77.75.77.119", "3");
INSERT INTO `wp_gf_form_view` VALUES("39213", "10", "2016-09-28 09:44:02", "77.75.77.119", "9");
INSERT INTO `wp_gf_form_view` VALUES("39214", "3", "2016-09-28 10:44:40", "109.169.29.30", "206");
INSERT INTO `wp_gf_form_view` VALUES("39215", "13", "2016-09-28 10:44:40", "109.169.29.30", "35");
INSERT INTO `wp_gf_form_view` VALUES("39216", "10", "2016-09-28 10:44:40", "109.169.29.30", "99");
INSERT INTO `wp_gf_form_view` VALUES("39217", "2", "2016-09-28 10:46:00", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("39218", "11", "2016-09-28 10:46:33", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("39219", "10", "2016-09-28 11:10:07", "199.59.148.209", "13");
INSERT INTO `wp_gf_form_view` VALUES("39220", "3", "2016-09-28 11:10:07", "199.59.148.209", "25");
INSERT INTO `wp_gf_form_view` VALUES("39221", "13", "2016-09-28 11:10:07", "199.59.148.209", "4");
INSERT INTO `wp_gf_form_view` VALUES("39222", "3", "2016-09-28 12:53:37", "202.46.50.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("39223", "13", "2016-09-28 12:53:38", "202.46.50.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("39224", "10", "2016-09-28 12:53:38", "202.46.50.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("39225", "3", "2016-09-28 14:00:39", "202.46.56.110", "6");
INSERT INTO `wp_gf_form_view` VALUES("39226", "13", "2016-09-28 14:00:44", "202.46.56.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("39227", "10", "2016-09-28 14:00:44", "202.46.56.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("39228", "3", "2016-09-28 15:07:36", "202.46.51.37", "44");
INSERT INTO `wp_gf_form_view` VALUES("39229", "13", "2016-09-28 15:07:36", "202.46.51.37", "7");
INSERT INTO `wp_gf_form_view` VALUES("39230", "10", "2016-09-28 15:07:36", "202.46.51.37", "21");
INSERT INTO `wp_gf_form_view` VALUES("39231", "3", "2016-09-28 16:12:01", "96.50.29.134", "94");
INSERT INTO `wp_gf_form_view` VALUES("39232", "13", "2016-09-28 16:12:01", "96.50.29.134", "16");
INSERT INTO `wp_gf_form_view` VALUES("39233", "10", "2016-09-28 16:12:01", "96.50.29.134", "46");
INSERT INTO `wp_gf_form_view` VALUES("39234", "3", "2016-09-28 17:39:10", "24.68.132.30", "18");
INSERT INTO `wp_gf_form_view` VALUES("39235", "13", "2016-09-28 17:39:11", "24.68.132.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("39236", "10", "2016-09-28 17:39:12", "24.68.132.30", "9");
INSERT INTO `wp_gf_form_view` VALUES("39237", "6", "2016-09-28 18:05:49", "202.46.55.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("39238", "3", "2016-09-28 18:05:49", "202.46.55.157", "128");
INSERT INTO `wp_gf_form_view` VALUES("39239", "13", "2016-09-28 18:05:50", "202.46.55.157", "21");
INSERT INTO `wp_gf_form_view` VALUES("39240", "10", "2016-09-28 18:05:50", "202.46.55.157", "63");
INSERT INTO `wp_gf_form_view` VALUES("39241", "11", "2016-09-28 18:39:37", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("39242", "13", "2016-09-28 19:10:31", "164.132.161.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("39243", "3", "2016-09-28 19:31:54", "157.55.39.180", "25");
INSERT INTO `wp_gf_form_view` VALUES("39244", "10", "2016-09-28 19:31:54", "157.55.39.180", "17");
INSERT INTO `wp_gf_form_view` VALUES("39245", "1", "2016-09-28 19:47:08", "199.229.234.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("39246", "3", "2016-09-28 20:00:25", "194.187.170.125", "27");
INSERT INTO `wp_gf_form_view` VALUES("39247", "13", "2016-09-28 20:16:29", "184.71.14.182", "5");
INSERT INTO `wp_gf_form_view` VALUES("39248", "10", "2016-09-28 20:16:29", "184.71.14.182", "12");
INSERT INTO `wp_gf_form_view` VALUES("39249", "3", "2016-09-28 21:07:16", "69.30.198.202", "182");
INSERT INTO `wp_gf_form_view` VALUES("39250", "13", "2016-09-28 21:07:16", "69.30.198.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("39251", "10", "2016-09-28 21:07:16", "69.30.198.202", "85");
INSERT INTO `wp_gf_form_view` VALUES("39252", "3", "2016-09-28 22:00:00", "192.241.184.243", "2716");
INSERT INTO `wp_gf_form_view` VALUES("39253", "13", "2016-09-28 22:00:00", "192.241.184.243", "447");
INSERT INTO `wp_gf_form_view` VALUES("39254", "10", "2016-09-28 22:00:01", "192.241.184.243", "1339");
INSERT INTO `wp_gf_form_view` VALUES("39255", "1", "2016-09-28 22:02:50", "192.241.184.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("39256", "11", "2016-09-28 22:03:14", "192.241.184.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("39257", "6", "2016-09-28 22:21:29", "192.241.184.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("39258", "9", "2016-09-28 22:30:05", "192.241.184.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("39259", "3", "2016-09-28 23:00:20", "192.241.184.243", "979");
INSERT INTO `wp_gf_form_view` VALUES("39260", "13", "2016-09-28 23:00:21", "192.241.184.243", "163");
INSERT INTO `wp_gf_form_view` VALUES("39261", "10", "2016-09-28 23:00:21", "192.241.184.243", "495");
INSERT INTO `wp_gf_form_view` VALUES("39262", "2", "2016-09-28 23:07:29", "192.241.184.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("39263", "3", "2016-09-29 00:06:37", "68.180.230.168", "36");
INSERT INTO `wp_gf_form_view` VALUES("39264", "13", "2016-09-29 00:06:38", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("39265", "10", "2016-09-29 00:06:39", "68.180.230.168", "18");
INSERT INTO `wp_gf_form_view` VALUES("39266", "3", "2016-09-29 01:23:03", "207.6.237.211", "94");
INSERT INTO `wp_gf_form_view` VALUES("39267", "13", "2016-09-29 01:23:03", "207.6.237.211", "17");
INSERT INTO `wp_gf_form_view` VALUES("39268", "10", "2016-09-29 01:23:03", "207.6.237.211", "39");
INSERT INTO `wp_gf_form_view` VALUES("39269", "3", "2016-09-29 03:10:46", "202.46.56.193", "12");
INSERT INTO `wp_gf_form_view` VALUES("39270", "13", "2016-09-29 03:10:46", "202.46.56.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("39271", "10", "2016-09-29 03:10:47", "202.46.56.193", "6");
INSERT INTO `wp_gf_form_view` VALUES("39272", "3", "2016-09-29 04:36:39", "77.75.79.36", "18");
INSERT INTO `wp_gf_form_view` VALUES("39273", "13", "2016-09-29 04:36:39", "77.75.79.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("39274", "10", "2016-09-29 04:36:39", "77.75.79.36", "9");
INSERT INTO `wp_gf_form_view` VALUES("39275", "3", "2016-09-29 05:03:00", "199.21.99.202", "31");
INSERT INTO `wp_gf_form_view` VALUES("39276", "13", "2016-09-29 05:03:00", "199.21.99.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("39277", "10", "2016-09-29 05:03:01", "199.21.99.202", "15");
INSERT INTO `wp_gf_form_view` VALUES("39278", "3", "2016-09-29 06:26:56", "163.172.64.228", "7");
INSERT INTO `wp_gf_form_view` VALUES("39279", "13", "2016-09-29 06:26:58", "163.172.64.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("39280", "10", "2016-09-29 06:26:58", "163.172.64.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("39281", "3", "2016-09-29 07:07:29", "207.46.13.94", "20");
INSERT INTO `wp_gf_form_view` VALUES("39282", "13", "2016-09-29 07:07:29", "207.46.13.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("39283", "10", "2016-09-29 07:07:29", "207.46.13.94", "9");
INSERT INTO `wp_gf_form_view` VALUES("39284", "3", "2016-09-29 08:04:02", "77.75.76.166", "24");
INSERT INTO `wp_gf_form_view` VALUES("39285", "13", "2016-09-29 08:04:03", "77.75.76.166", "4");
INSERT INTO `wp_gf_form_view` VALUES("39286", "10", "2016-09-29 08:04:03", "77.75.76.166", "12");
INSERT INTO `wp_gf_form_view` VALUES("39287", "6", "2016-09-29 08:16:39", "157.55.39.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("39288", "3", "2016-09-29 09:02:40", "220.181.108.158", "24");
INSERT INTO `wp_gf_form_view` VALUES("39289", "13", "2016-09-29 09:02:40", "220.181.108.158", "4");
INSERT INTO `wp_gf_form_view` VALUES("39290", "10", "2016-09-29 09:02:40", "220.181.108.158", "12");
INSERT INTO `wp_gf_form_view` VALUES("39291", "1", "2016-09-29 09:52:24", "49.248.75.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("39292", "1", "2016-09-29 10:09:36", "107.173.248.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("39293", "3", "2016-09-29 10:09:36", "107.173.248.95", "19");
INSERT INTO `wp_gf_form_view` VALUES("39294", "13", "2016-09-29 10:09:36", "107.173.248.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("39295", "10", "2016-09-29 10:09:36", "107.173.248.95", "9");
INSERT INTO `wp_gf_form_view` VALUES("39296", "1", "2016-09-29 12:00:49", "172.245.214.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("39297", "3", "2016-09-29 12:00:49", "172.245.214.174", "19");
INSERT INTO `wp_gf_form_view` VALUES("39298", "13", "2016-09-29 12:00:50", "172.245.214.174", "3");
INSERT INTO `wp_gf_form_view` VALUES("39299", "10", "2016-09-29 12:00:50", "172.245.214.174", "9");
INSERT INTO `wp_gf_form_view` VALUES("39300", "3", "2016-09-29 13:11:09", "68.180.230.168", "667");
INSERT INTO `wp_gf_form_view` VALUES("39301", "13", "2016-09-29 13:11:10", "68.180.230.168", "110");
INSERT INTO `wp_gf_form_view` VALUES("39302", "10", "2016-09-29 13:11:10", "68.180.230.168", "320");
INSERT INTO `wp_gf_form_view` VALUES("39303", "11", "2016-09-29 13:35:34", "86.123.244.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("39304", "2", "2016-09-29 13:36:37", "86.123.244.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("39305", "1", "2016-09-29 13:49:55", "133.130.111.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("39306", "3", "2016-09-29 14:17:23", "157.55.39.220", "13");
INSERT INTO `wp_gf_form_view` VALUES("39307", "13", "2016-09-29 14:17:24", "157.55.39.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("39308", "10", "2016-09-29 14:17:24", "157.55.39.220", "6");
INSERT INTO `wp_gf_form_view` VALUES("39309", "3", "2016-09-29 16:20:04", "68.180.230.168", "13");
INSERT INTO `wp_gf_form_view` VALUES("39310", "13", "2016-09-29 16:20:06", "68.180.230.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("39311", "10", "2016-09-29 16:20:06", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("39312", "3", "2016-09-29 17:37:15", "184.69.173.146", "7");
INSERT INTO `wp_gf_form_view` VALUES("39313", "13", "2016-09-29 17:37:18", "184.69.173.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("39314", "10", "2016-09-29 17:37:18", "184.69.173.146", "3");
INSERT INTO `wp_gf_form_view` VALUES("39315", "3", "2016-09-29 18:04:58", "202.46.52.16", "18");
INSERT INTO `wp_gf_form_view` VALUES("39316", "13", "2016-09-29 18:04:58", "202.46.52.16", "3");
INSERT INTO `wp_gf_form_view` VALUES("39317", "10", "2016-09-29 18:04:58", "202.46.52.16", "9");
INSERT INTO `wp_gf_form_view` VALUES("39318", "1", "2016-09-29 19:00:57", "23.245.238.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("39319", "3", "2016-09-29 19:00:57", "23.245.238.109", "44");
INSERT INTO `wp_gf_form_view` VALUES("39320", "13", "2016-09-29 19:00:58", "23.245.238.109", "7");
INSERT INTO `wp_gf_form_view` VALUES("39321", "10", "2016-09-29 19:00:58", "23.245.238.109", "21");
INSERT INTO `wp_gf_form_view` VALUES("39322", "3", "2016-09-29 20:04:20", "184.151.231.130", "146");
INSERT INTO `wp_gf_form_view` VALUES("39323", "13", "2016-09-29 20:04:20", "184.151.231.130", "24");
INSERT INTO `wp_gf_form_view` VALUES("39324", "10", "2016-09-29 20:04:20", "184.151.231.130", "72");
INSERT INTO `wp_gf_form_view` VALUES("39325", "1", "2016-09-29 20:45:37", "155.133.43.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("39326", "6", "2016-09-29 20:52:24", "202.46.51.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("39327", "3", "2016-09-29 21:19:34", "184.69.170.30", "25");
INSERT INTO `wp_gf_form_view` VALUES("39328", "13", "2016-09-29 21:19:34", "184.69.170.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("39329", "10", "2016-09-29 21:19:34", "184.69.170.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("39330", "3", "2016-09-29 22:10:05", "68.180.230.168", "61");
INSERT INTO `wp_gf_form_view` VALUES("39331", "13", "2016-09-29 22:10:05", "68.180.230.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("39332", "10", "2016-09-29 22:10:05", "68.180.230.168", "30");
INSERT INTO `wp_gf_form_view` VALUES("39333", "2", "2016-09-29 22:18:46", "184.69.170.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("39334", "3", "2016-09-29 23:22:56", "164.132.161.92", "24");
INSERT INTO `wp_gf_form_view` VALUES("39335", "13", "2016-09-29 23:22:56", "164.132.161.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("39336", "10", "2016-09-29 23:22:56", "164.132.161.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("39337", "3", "2016-09-30 00:27:05", "77.75.79.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("39338", "13", "2016-09-30 00:27:05", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("39339", "10", "2016-09-30 00:27:05", "77.75.79.109", "3");
INSERT INTO `wp_gf_form_view` VALUES("39340", "13", "2016-09-30 01:32:31", "184.66.14.230", "3");
INSERT INTO `wp_gf_form_view` VALUES("39341", "3", "2016-09-30 01:32:31", "184.66.14.230", "18");
INSERT INTO `wp_gf_form_view` VALUES("39342", "10", "2016-09-30 01:32:31", "184.66.14.230", "10");
INSERT INTO `wp_gf_form_view` VALUES("39343", "3", "2016-09-30 02:12:04", "108.181.252.145", "39");
INSERT INTO `wp_gf_form_view` VALUES("39344", "13", "2016-09-30 02:12:04", "108.181.252.145", "7");
INSERT INTO `wp_gf_form_view` VALUES("39345", "10", "2016-09-30 02:12:04", "108.181.252.145", "25");
INSERT INTO `wp_gf_form_view` VALUES("39346", "1", "2016-09-30 02:25:24", "107.174.139.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("39347", "11", "2016-09-30 03:13:46", "178.175.146.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("39348", "3", "2016-09-30 03:13:46", "178.175.146.114", "404");
INSERT INTO `wp_gf_form_view` VALUES("39349", "13", "2016-09-30 03:13:46", "178.175.146.114", "68");
INSERT INTO `wp_gf_form_view` VALUES("39350", "10", "2016-09-30 03:13:46", "178.175.146.114", "200");
INSERT INTO `wp_gf_form_view` VALUES("39351", "2", "2016-09-30 03:15:06", "178.175.146.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("39352", "1", "2016-09-30 03:21:23", "178.175.146.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("39353", "3", "2016-09-30 04:16:01", "96.50.1.173", "36");
INSERT INTO `wp_gf_form_view` VALUES("39354", "13", "2016-09-30 04:16:02", "96.50.1.173", "6");
INSERT INTO `wp_gf_form_view` VALUES("39355", "10", "2016-09-30 04:16:02", "96.50.1.173", "18");
INSERT INTO `wp_gf_form_view` VALUES("39356", "3", "2016-09-30 05:20:31", "198.23.132.134", "34");
INSERT INTO `wp_gf_form_view` VALUES("39357", "13", "2016-09-30 05:20:31", "198.23.132.134", "5");
INSERT INTO `wp_gf_form_view` VALUES("39358", "10", "2016-09-30 05:20:31", "198.23.132.134", "15");
INSERT INTO `wp_gf_form_view` VALUES("39359", "3", "2016-09-30 07:15:01", "66.249.79.108", "13");
INSERT INTO `wp_gf_form_view` VALUES("39360", "13", "2016-09-30 07:15:07", "66.249.79.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("39361", "10", "2016-09-30 07:15:07", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("39362", "3", "2016-09-30 08:00:46", "164.132.161.90", "31");
INSERT INTO `wp_gf_form_view` VALUES("39363", "13", "2016-09-30 08:00:46", "164.132.161.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("39364", "10", "2016-09-30 08:00:46", "164.132.161.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("39365", "3", "2016-09-30 09:10:20", "164.132.161.87", "27");
INSERT INTO `wp_gf_form_view` VALUES("39366", "13", "2016-09-30 09:10:20", "164.132.161.87", "5");
INSERT INTO `wp_gf_form_view` VALUES("39367", "10", "2016-09-30 09:10:20", "164.132.161.87", "20");
INSERT INTO `wp_gf_form_view` VALUES("39368", "3", "2016-09-30 10:20:06", "66.249.79.104", "18");
INSERT INTO `wp_gf_form_view` VALUES("39369", "13", "2016-09-30 10:20:06", "66.249.79.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("39370", "10", "2016-09-30 10:20:06", "66.249.79.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("39371", "3", "2016-09-30 11:00:09", "66.249.84.22", "31");
INSERT INTO `wp_gf_form_view` VALUES("39372", "13", "2016-09-30 11:00:09", "66.249.84.22", "5");
INSERT INTO `wp_gf_form_view` VALUES("39373", "10", "2016-09-30 11:00:09", "66.249.84.22", "15");
INSERT INTO `wp_gf_form_view` VALUES("39374", "3", "2016-09-30 12:04:12", "66.249.79.108", "7");
INSERT INTO `wp_gf_form_view` VALUES("39375", "13", "2016-09-30 12:24:33", "163.172.65.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("39376", "10", "2016-09-30 12:24:33", "163.172.65.244", "3");
INSERT INTO `wp_gf_form_view` VALUES("39377", "3", "2016-09-30 13:01:31", "163.172.66.2", "511");
INSERT INTO `wp_gf_form_view` VALUES("39378", "13", "2016-09-30 13:01:32", "163.172.66.2", "81");
INSERT INTO `wp_gf_form_view` VALUES("39379", "10", "2016-09-30 13:01:32", "163.172.66.2", "245");
INSERT INTO `wp_gf_form_view` VALUES("39380", "6", "2016-09-30 13:32:54", "157.55.39.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("39381", "5", "2016-09-30 13:33:09", "157.55.39.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("39382", "9", "2016-09-30 13:33:34", "157.55.39.201", "3");
INSERT INTO `wp_gf_form_view` VALUES("39383", "8", "2016-09-30 13:34:44", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("39384", "3", "2016-09-30 14:29:10", "157.55.39.194", "24");
INSERT INTO `wp_gf_form_view` VALUES("39385", "13", "2016-09-30 14:29:10", "157.55.39.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("39386", "10", "2016-09-30 14:29:10", "157.55.39.194", "12");
INSERT INTO `wp_gf_form_view` VALUES("39387", "1", "2016-09-30 14:46:54", "217.125.213.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("39388", "3", "2016-09-30 15:07:23", "202.46.56.97", "87");
INSERT INTO `wp_gf_form_view` VALUES("39389", "13", "2016-09-30 15:07:24", "202.46.56.97", "14");
INSERT INTO `wp_gf_form_view` VALUES("39390", "10", "2016-09-30 15:07:24", "202.46.56.97", "42");
INSERT INTO `wp_gf_form_view` VALUES("39391", "1", "2016-09-30 15:27:03", "204.44.72.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("39392", "10", "2016-09-30 16:22:53", "68.180.230.168", "19");
INSERT INTO `wp_gf_form_view` VALUES("39393", "3", "2016-09-30 16:22:54", "68.180.230.168", "37");
INSERT INTO `wp_gf_form_view` VALUES("39394", "13", "2016-09-30 16:22:54", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("39395", "3", "2016-09-30 17:03:20", "202.46.56.90", "66");
INSERT INTO `wp_gf_form_view` VALUES("39396", "13", "2016-09-30 17:03:20", "202.46.56.90", "11");
INSERT INTO `wp_gf_form_view` VALUES("39397", "10", "2016-09-30 17:03:20", "202.46.56.90", "33");
INSERT INTO `wp_gf_form_view` VALUES("39398", "11", "2016-09-30 18:11:21", "213.127.12.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("39399", "3", "2016-09-30 18:11:23", "213.127.12.27", "163");
INSERT INTO `wp_gf_form_view` VALUES("39400", "13", "2016-09-30 18:11:23", "213.127.12.27", "27");
INSERT INTO `wp_gf_form_view` VALUES("39401", "10", "2016-09-30 18:11:23", "213.127.12.27", "81");
INSERT INTO `wp_gf_form_view` VALUES("39402", "2", "2016-09-30 18:12:38", "213.127.12.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("39403", "3", "2016-09-30 19:30:58", "51.255.65.91", "12");
INSERT INTO `wp_gf_form_view` VALUES("39404", "13", "2016-09-30 19:31:02", "51.255.65.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("39405", "10", "2016-09-30 19:31:02", "51.255.65.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("39406", "3", "2016-09-30 20:01:02", "163.172.66.101", "24");
INSERT INTO `wp_gf_form_view` VALUES("39407", "13", "2016-09-30 20:01:02", "163.172.66.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("39408", "10", "2016-09-30 20:01:02", "163.172.66.101", "12");
INSERT INTO `wp_gf_form_view` VALUES("39409", "3", "2016-09-30 21:04:59", "192.243.55.130", "29");
INSERT INTO `wp_gf_form_view` VALUES("39410", "13", "2016-09-30 21:04:59", "192.243.55.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("39411", "10", "2016-09-30 21:05:00", "192.243.55.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("39412", "12", "2016-09-30 22:02:26", "134.249.65.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("39413", "3", "2016-09-30 22:02:26", "134.249.65.218", "43");
INSERT INTO `wp_gf_form_view` VALUES("39414", "13", "2016-09-30 22:02:26", "134.249.65.218", "7");
INSERT INTO `wp_gf_form_view` VALUES("39415", "10", "2016-09-30 22:02:26", "134.249.65.218", "21");
INSERT INTO `wp_gf_form_view` VALUES("39416", "3", "2016-09-30 23:27:18", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("39417", "13", "2016-09-30 23:27:18", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("39418", "10", "2016-09-30 23:27:18", "68.180.230.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("39419", "3", "2016-10-01 00:38:43", "24.68.120.192", "6");
INSERT INTO `wp_gf_form_view` VALUES("39420", "13", "2016-10-01 00:38:43", "24.68.120.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("39421", "10", "2016-10-01 00:38:43", "24.68.120.192", "3");
INSERT INTO `wp_gf_form_view` VALUES("39422", "3", "2016-10-01 01:02:15", "68.180.230.168", "75");
INSERT INTO `wp_gf_form_view` VALUES("39423", "13", "2016-10-01 01:05:19", "107.20.99.102", "12");
INSERT INTO `wp_gf_form_view` VALUES("39424", "10", "2016-10-01 01:05:19", "107.20.99.102", "36");
INSERT INTO `wp_gf_form_view` VALUES("39425", "2", "2016-10-01 01:05:34", "107.20.99.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("39426", "3", "2016-10-01 02:06:15", "202.46.48.198", "109");
INSERT INTO `wp_gf_form_view` VALUES("39427", "13", "2016-10-01 02:06:15", "202.46.48.198", "17");
INSERT INTO `wp_gf_form_view` VALUES("39428", "10", "2016-10-01 02:06:15", "202.46.48.198", "52");
INSERT INTO `wp_gf_form_view` VALUES("39429", "2", "2016-10-01 02:17:50", "194.187.170.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("39430", "1", "2016-10-01 02:37:38", "190.238.192.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("39431", "3", "2016-10-01 03:06:50", "194.187.170.106", "31");
INSERT INTO `wp_gf_form_view` VALUES("39432", "13", "2016-10-01 03:11:23", "66.249.84.20", "5");
INSERT INTO `wp_gf_form_view` VALUES("39433", "10", "2016-10-01 03:11:23", "66.249.84.20", "15");
INSERT INTO `wp_gf_form_view` VALUES("39434", "11", "2016-10-01 03:19:54", "192.243.55.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("39435", "3", "2016-10-01 04:21:40", "163.172.65.24", "13");
INSERT INTO `wp_gf_form_view` VALUES("39436", "13", "2016-10-01 04:21:40", "163.172.65.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("39437", "10", "2016-10-01 04:21:40", "163.172.65.24", "7");
INSERT INTO `wp_gf_form_view` VALUES("39438", "3", "2016-10-01 05:05:59", "66.249.79.108", "30");
INSERT INTO `wp_gf_form_view` VALUES("39439", "13", "2016-10-01 05:06:03", "66.249.79.108", "5");
INSERT INTO `wp_gf_form_view` VALUES("39440", "10", "2016-10-01 05:06:03", "66.249.79.108", "16");
INSERT INTO `wp_gf_form_view` VALUES("39441", "3", "2016-10-01 06:04:13", "77.75.77.95", "36");
INSERT INTO `wp_gf_form_view` VALUES("39442", "13", "2016-10-01 06:04:13", "77.75.77.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("39443", "10", "2016-10-01 06:04:13", "77.75.77.95", "18");
INSERT INTO `wp_gf_form_view` VALUES("39444", "3", "2016-10-01 07:04:20", "163.172.66.55", "24");
INSERT INTO `wp_gf_form_view` VALUES("39445", "13", "2016-10-01 07:04:20", "163.172.66.55", "4");
INSERT INTO `wp_gf_form_view` VALUES("39446", "10", "2016-10-01 07:04:20", "163.172.66.55", "12");
INSERT INTO `wp_gf_form_view` VALUES("39447", "1", "2016-10-01 07:39:57", "163.172.65.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("39448", "3", "2016-10-01 08:05:06", "163.172.66.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("39449", "13", "2016-10-01 08:05:07", "163.172.66.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("39450", "10", "2016-10-01 08:05:07", "163.172.66.105", "12");
INSERT INTO `wp_gf_form_view` VALUES("39451", "2", "2016-10-01 08:49:09", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("39452", "3", "2016-10-01 09:12:18", "192.243.55.136", "24");
INSERT INTO `wp_gf_form_view` VALUES("39453", "13", "2016-10-01 09:12:18", "192.243.55.136", "4");
INSERT INTO `wp_gf_form_view` VALUES("39454", "10", "2016-10-01 09:12:18", "192.243.55.136", "12");
INSERT INTO `wp_gf_form_view` VALUES("39455", "11", "2016-10-01 09:59:25", "95.85.38.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("39456", "3", "2016-10-01 10:00:38", "95.85.38.167", "24");
INSERT INTO `wp_gf_form_view` VALUES("39457", "13", "2016-10-01 10:00:38", "95.85.38.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("39458", "10", "2016-10-01 10:00:38", "95.85.38.167", "12");
INSERT INTO `wp_gf_form_view` VALUES("39459", "11", "2016-10-01 10:28:59", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("39460", "3", "2016-10-01 11:01:16", "163.172.65.37", "57");
INSERT INTO `wp_gf_form_view` VALUES("39461", "13", "2016-10-01 11:01:16", "163.172.65.37", "9");
INSERT INTO `wp_gf_form_view` VALUES("39462", "10", "2016-10-01 11:01:16", "163.172.65.37", "27");
INSERT INTO `wp_gf_form_view` VALUES("39463", "1", "2016-10-01 11:16:04", "107.172.68.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("39464", "3", "2016-10-01 12:10:41", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("39465", "13", "2016-10-01 12:10:41", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("39466", "10", "2016-10-01 12:10:41", "66.249.79.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("39467", "3", "2016-10-01 13:20:53", "217.69.133.227", "30");
INSERT INTO `wp_gf_form_view` VALUES("39468", "13", "2016-10-01 13:20:53", "217.69.133.227", "5");
INSERT INTO `wp_gf_form_view` VALUES("39469", "10", "2016-10-01 13:20:53", "217.69.133.227", "15");
INSERT INTO `wp_gf_form_view` VALUES("39470", "3", "2016-10-01 14:15:10", "51.255.65.18", "97");
INSERT INTO `wp_gf_form_view` VALUES("39471", "13", "2016-10-01 14:15:11", "51.255.65.18", "17");
INSERT INTO `wp_gf_form_view` VALUES("39472", "10", "2016-10-01 14:15:11", "51.255.65.18", "49");
INSERT INTO `wp_gf_form_view` VALUES("39473", "2", "2016-10-01 14:32:25", "207.46.13.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("39474", "3", "2016-10-01 15:13:27", "192.243.55.134", "32");
INSERT INTO `wp_gf_form_view` VALUES("39475", "13", "2016-10-01 15:13:27", "192.243.55.134", "5");
INSERT INTO `wp_gf_form_view` VALUES("39476", "10", "2016-10-01 15:13:27", "192.243.55.134", "15");
INSERT INTO `wp_gf_form_view` VALUES("39477", "3", "2016-10-01 16:12:58", "66.249.79.112", "33");
INSERT INTO `wp_gf_form_view` VALUES("39478", "13", "2016-10-01 16:12:58", "66.249.79.112", "5");
INSERT INTO `wp_gf_form_view` VALUES("39479", "10", "2016-10-01 16:12:58", "66.249.79.112", "15");
INSERT INTO `wp_gf_form_view` VALUES("39480", "3", "2016-10-01 17:33:55", "192.243.55.129", "13");
INSERT INTO `wp_gf_form_view` VALUES("39481", "13", "2016-10-01 17:33:57", "192.243.55.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("39482", "10", "2016-10-01 17:33:57", "192.243.55.129", "6");
INSERT INTO `wp_gf_form_view` VALUES("39483", "3", "2016-10-01 18:05:45", "217.69.133.227", "38");
INSERT INTO `wp_gf_form_view` VALUES("39484", "13", "2016-10-01 18:05:45", "217.69.133.227", "6");
INSERT INTO `wp_gf_form_view` VALUES("39485", "10", "2016-10-01 18:05:45", "217.69.133.227", "18");
INSERT INTO `wp_gf_form_view` VALUES("39486", "3", "2016-10-01 19:08:54", "77.75.78.163", "19");
INSERT INTO `wp_gf_form_view` VALUES("39487", "13", "2016-10-01 19:08:54", "77.75.78.163", "3");
INSERT INTO `wp_gf_form_view` VALUES("39488", "10", "2016-10-01 19:08:54", "77.75.78.163", "9");
INSERT INTO `wp_gf_form_view` VALUES("39489", "3", "2016-10-01 20:13:51", "163.172.66.50", "26");
INSERT INTO `wp_gf_form_view` VALUES("39490", "13", "2016-10-01 20:13:52", "163.172.66.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("39491", "10", "2016-10-01 20:13:52", "163.172.66.50", "12");
INSERT INTO `wp_gf_form_view` VALUES("39492", "13", "2016-10-01 21:16:55", "217.69.133.232", "7");
INSERT INTO `wp_gf_form_view` VALUES("39493", "3", "2016-10-01 21:16:56", "217.69.133.232", "38");
INSERT INTO `wp_gf_form_view` VALUES("39494", "10", "2016-10-01 21:16:56", "217.69.133.232", "18");
INSERT INTO `wp_gf_form_view` VALUES("39495", "3", "2016-10-01 22:13:39", "198.98.110.93", "92");
INSERT INTO `wp_gf_form_view` VALUES("39496", "13", "2016-10-01 22:13:39", "198.98.110.93", "15");
INSERT INTO `wp_gf_form_view` VALUES("39497", "10", "2016-10-01 22:13:40", "198.98.110.93", "45");
INSERT INTO `wp_gf_form_view` VALUES("39498", "2", "2016-10-01 22:14:03", "45.32.130.173", "2");
INSERT INTO `wp_gf_form_view` VALUES("39499", "3", "2016-10-01 23:00:39", "184.66.232.114", "97");
INSERT INTO `wp_gf_form_view` VALUES("39500", "13", "2016-10-01 23:00:39", "184.66.232.114", "17");
INSERT INTO `wp_gf_form_view` VALUES("39501", "10", "2016-10-01 23:00:39", "184.66.232.114", "49");
INSERT INTO `wp_gf_form_view` VALUES("39502", "2", "2016-10-01 23:29:26", "207.46.13.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("39503", "3", "2016-10-02 00:45:36", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("39504", "13", "2016-10-02 00:45:37", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("39505", "10", "2016-10-02 00:45:37", "68.180.230.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("39506", "3", "2016-10-02 01:16:56", "92.222.237.39", "52");
INSERT INTO `wp_gf_form_view` VALUES("39507", "13", "2016-10-02 01:16:57", "92.222.237.39", "8");
INSERT INTO `wp_gf_form_view` VALUES("39508", "10", "2016-10-02 01:16:57", "92.222.237.39", "24");
INSERT INTO `wp_gf_form_view` VALUES("39509", "5", "2016-10-02 01:40:25", "51.255.65.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("39510", "3", "2016-10-02 02:04:01", "217.69.133.229", "38");
INSERT INTO `wp_gf_form_view` VALUES("39511", "13", "2016-10-02 02:04:01", "217.69.133.229", "6");
INSERT INTO `wp_gf_form_view` VALUES("39512", "10", "2016-10-02 02:04:01", "217.69.133.229", "18");
INSERT INTO `wp_gf_form_view` VALUES("39513", "3", "2016-10-02 03:05:24", "157.55.39.210", "110");
INSERT INTO `wp_gf_form_view` VALUES("39514", "13", "2016-10-02 03:05:24", "157.55.39.210", "18");
INSERT INTO `wp_gf_form_view` VALUES("39515", "10", "2016-10-02 03:05:24", "157.55.39.210", "54");
INSERT INTO `wp_gf_form_view` VALUES("39516", "6", "2016-10-02 03:41:05", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("39517", "1", "2016-10-02 03:58:12", "155.94.218.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("39518", "3", "2016-10-02 04:18:54", "157.55.39.210", "38");
INSERT INTO `wp_gf_form_view` VALUES("39519", "13", "2016-10-02 04:18:54", "157.55.39.210", "8");
INSERT INTO `wp_gf_form_view` VALUES("39520", "10", "2016-10-02 04:18:54", "157.55.39.210", "18");
INSERT INTO `wp_gf_form_view` VALUES("39521", "3", "2016-10-02 05:00:02", "157.55.39.210", "69");
INSERT INTO `wp_gf_form_view` VALUES("39522", "13", "2016-10-02 05:00:02", "157.55.39.210", "11");
INSERT INTO `wp_gf_form_view` VALUES("39523", "10", "2016-10-02 05:00:02", "157.55.39.210", "34");
INSERT INTO `wp_gf_form_view` VALUES("39524", "3", "2016-10-02 06:09:19", "157.55.39.194", "24");
INSERT INTO `wp_gf_form_view` VALUES("39525", "13", "2016-10-02 06:09:19", "157.55.39.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("39526", "10", "2016-10-02 06:09:19", "157.55.39.194", "12");
INSERT INTO `wp_gf_form_view` VALUES("39527", "11", "2016-10-02 06:49:04", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("39528", "3", "2016-10-02 07:23:54", "157.55.39.194", "155");
INSERT INTO `wp_gf_form_view` VALUES("39529", "13", "2016-10-02 07:23:54", "157.55.39.194", "26");
INSERT INTO `wp_gf_form_view` VALUES("39530", "10", "2016-10-02 07:23:54", "157.55.39.194", "75");
INSERT INTO `wp_gf_form_view` VALUES("39531", "11", "2016-10-02 07:37:03", "45.55.229.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("39532", "2", "2016-10-02 07:37:06", "45.55.229.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("39533", "3", "2016-10-02 08:16:16", "163.172.66.68", "56");
INSERT INTO `wp_gf_form_view` VALUES("39534", "13", "2016-10-02 08:16:16", "163.172.66.68", "9");
INSERT INTO `wp_gf_form_view` VALUES("39535", "10", "2016-10-02 08:16:16", "163.172.66.68", "27");
INSERT INTO `wp_gf_form_view` VALUES("39536", "3", "2016-10-02 09:08:38", "66.249.79.112", "24");
INSERT INTO `wp_gf_form_view` VALUES("39537", "13", "2016-10-02 09:08:38", "66.249.79.112", "4");
INSERT INTO `wp_gf_form_view` VALUES("39538", "10", "2016-10-02 09:08:38", "66.249.79.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("39539", "3", "2016-10-02 10:03:27", "40.77.167.29", "31");
INSERT INTO `wp_gf_form_view` VALUES("39540", "13", "2016-10-02 10:03:27", "40.77.167.29", "5");
INSERT INTO `wp_gf_form_view` VALUES("39541", "10", "2016-10-02 10:03:27", "40.77.167.29", "15");
INSERT INTO `wp_gf_form_view` VALUES("39542", "7", "2016-10-02 10:22:57", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("39543", "3", "2016-10-02 11:35:15", "40.77.167.26", "14");
INSERT INTO `wp_gf_form_view` VALUES("39544", "13", "2016-10-02 11:35:16", "40.77.167.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("39545", "10", "2016-10-02 11:35:16", "40.77.167.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("39546", "3", "2016-10-02 12:07:06", "202.46.55.66", "21");
INSERT INTO `wp_gf_form_view` VALUES("39547", "13", "2016-10-02 12:07:06", "202.46.55.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("39548", "10", "2016-10-02 12:07:06", "202.46.55.66", "9");
INSERT INTO `wp_gf_form_view` VALUES("39549", "3", "2016-10-02 13:05:54", "40.77.167.29", "115");
INSERT INTO `wp_gf_form_view` VALUES("39550", "13", "2016-10-02 13:10:36", "157.55.39.194", "18");
INSERT INTO `wp_gf_form_view` VALUES("39551", "10", "2016-10-02 13:10:36", "157.55.39.194", "54");
INSERT INTO `wp_gf_form_view` VALUES("39552", "1", "2016-10-02 13:36:19", "107.174.139.5", "3");
INSERT INTO `wp_gf_form_view` VALUES("39553", "11", "2016-10-02 13:38:39", "213.239.205.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("39554", "2", "2016-10-02 13:38:42", "213.239.205.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("39555", "3", "2016-10-02 14:02:59", "157.55.39.194", "31");
INSERT INTO `wp_gf_form_view` VALUES("39556", "13", "2016-10-02 14:03:00", "157.55.39.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("39557", "10", "2016-10-02 14:03:00", "157.55.39.194", "16");
INSERT INTO `wp_gf_form_view` VALUES("39558", "3", "2016-10-02 15:02:04", "202.46.58.50", "32");
INSERT INTO `wp_gf_form_view` VALUES("39559", "13", "2016-10-02 15:02:04", "202.46.58.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("39560", "10", "2016-10-02 15:02:05", "202.46.58.50", "12");
INSERT INTO `wp_gf_form_view` VALUES("39561", "3", "2016-10-02 16:06:22", "192.243.55.133", "108");
INSERT INTO `wp_gf_form_view` VALUES("39562", "13", "2016-10-02 16:06:22", "192.243.55.133", "18");
INSERT INTO `wp_gf_form_view` VALUES("39563", "10", "2016-10-02 16:06:22", "192.243.55.133", "57");
INSERT INTO `wp_gf_form_view` VALUES("39564", "9", "2016-10-02 16:43:15", "163.172.65.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("39565", "6", "2016-10-02 16:59:52", "192.243.55.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("39566", "3", "2016-10-02 17:12:45", "40.77.167.29", "100");
INSERT INTO `wp_gf_form_view` VALUES("39567", "13", "2016-10-02 17:12:46", "40.77.167.29", "17");
INSERT INTO `wp_gf_form_view` VALUES("39568", "10", "2016-10-02 17:12:46", "40.77.167.29", "55");
INSERT INTO `wp_gf_form_view` VALUES("39569", "12", "2016-10-02 17:24:24", "157.55.39.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("39570", "3", "2016-10-02 18:10:20", "217.69.133.231", "14");
INSERT INTO `wp_gf_form_view` VALUES("39571", "13", "2016-10-02 18:10:20", "217.69.133.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("39572", "10", "2016-10-02 18:10:20", "217.69.133.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("39573", "3", "2016-10-02 19:02:54", "96.50.16.206", "86");
INSERT INTO `wp_gf_form_view` VALUES("39574", "13", "2016-10-02 19:02:54", "96.50.16.206", "14");
INSERT INTO `wp_gf_form_view` VALUES("39575", "10", "2016-10-02 19:02:54", "96.50.16.206", "45");
INSERT INTO `wp_gf_form_view` VALUES("39576", "3", "2016-10-02 20:09:07", "68.180.230.168", "46");
INSERT INTO `wp_gf_form_view` VALUES("39577", "13", "2016-10-02 20:09:07", "68.180.230.168", "8");
INSERT INTO `wp_gf_form_view` VALUES("39578", "10", "2016-10-02 20:09:07", "68.180.230.168", "29");
INSERT INTO `wp_gf_form_view` VALUES("39579", "3", "2016-10-02 21:01:26", "157.55.39.194", "78");
INSERT INTO `wp_gf_form_view` VALUES("39580", "13", "2016-10-02 21:01:26", "157.55.39.194", "12");
INSERT INTO `wp_gf_form_view` VALUES("39581", "10", "2016-10-02 21:01:26", "157.55.39.194", "36");
INSERT INTO `wp_gf_form_view` VALUES("39582", "6", "2016-10-02 21:23:27", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("39583", "3", "2016-10-02 22:04:54", "192.243.55.130", "67");
INSERT INTO `wp_gf_form_view` VALUES("39584", "13", "2016-10-02 22:04:54", "192.243.55.130", "11");
INSERT INTO `wp_gf_form_view` VALUES("39585", "10", "2016-10-02 22:04:54", "192.243.55.130", "33");
INSERT INTO `wp_gf_form_view` VALUES("39586", "1", "2016-10-02 22:53:38", "200.54.180.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("39587", "3", "2016-10-02 23:00:17", "157.55.39.210", "33");
INSERT INTO `wp_gf_form_view` VALUES("39588", "13", "2016-10-02 23:00:17", "157.55.39.210", "5");
INSERT INTO `wp_gf_form_view` VALUES("39589", "10", "2016-10-02 23:00:18", "157.55.39.210", "15");
INSERT INTO `wp_gf_form_view` VALUES("39590", "2", "2016-10-02 23:07:48", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("39591", "3", "2016-10-03 00:01:07", "77.75.78.165", "31");
INSERT INTO `wp_gf_form_view` VALUES("39592", "13", "2016-10-03 00:01:08", "77.75.78.165", "5");
INSERT INTO `wp_gf_form_view` VALUES("39593", "10", "2016-10-03 00:01:08", "77.75.78.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("39594", "3", "2016-10-03 01:07:26", "51.255.65.68", "35");
INSERT INTO `wp_gf_form_view` VALUES("39595", "13", "2016-10-03 01:07:26", "51.255.65.68", "6");
INSERT INTO `wp_gf_form_view` VALUES("39596", "10", "2016-10-03 01:07:26", "51.255.65.68", "15");
INSERT INTO `wp_gf_form_view` VALUES("39597", "3", "2016-10-03 02:02:51", "164.132.161.43", "43");
INSERT INTO `wp_gf_form_view` VALUES("39598", "13", "2016-10-03 02:02:51", "164.132.161.43", "7");
INSERT INTO `wp_gf_form_view` VALUES("39599", "10", "2016-10-03 02:02:51", "164.132.161.43", "21");
INSERT INTO `wp_gf_form_view` VALUES("39600", "2", "2016-10-03 03:05:46", "40.77.167.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("39601", "3", "2016-10-03 03:05:46", "40.77.167.57", "23");
INSERT INTO `wp_gf_form_view` VALUES("39602", "13", "2016-10-03 03:05:46", "40.77.167.57", "4");
INSERT INTO `wp_gf_form_view` VALUES("39603", "10", "2016-10-03 03:05:46", "40.77.167.57", "10");
INSERT INTO `wp_gf_form_view` VALUES("39604", "3", "2016-10-03 04:02:35", "40.77.167.57", "37");
INSERT INTO `wp_gf_form_view` VALUES("39605", "13", "2016-10-03 04:02:35", "40.77.167.57", "7");
INSERT INTO `wp_gf_form_view` VALUES("39606", "10", "2016-10-03 04:02:36", "40.77.167.57", "18");
INSERT INTO `wp_gf_form_view` VALUES("39607", "3", "2016-10-03 05:02:30", "164.132.161.9", "55");
INSERT INTO `wp_gf_form_view` VALUES("39608", "13", "2016-10-03 05:02:30", "164.132.161.9", "9");
INSERT INTO `wp_gf_form_view` VALUES("39609", "10", "2016-10-03 05:02:30", "164.132.161.9", "27");
INSERT INTO `wp_gf_form_view` VALUES("39610", "3", "2016-10-03 06:03:17", "96.48.56.101", "48");
INSERT INTO `wp_gf_form_view` VALUES("39611", "13", "2016-10-03 06:03:17", "96.48.56.101", "9");
INSERT INTO `wp_gf_form_view` VALUES("39612", "10", "2016-10-03 06:03:17", "96.48.56.101", "24");
INSERT INTO `wp_gf_form_view` VALUES("39613", "6", "2016-10-03 06:57:33", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("39614", "3", "2016-10-03 07:32:07", "157.55.39.210", "26");
INSERT INTO `wp_gf_form_view` VALUES("39615", "13", "2016-10-03 07:32:07", "157.55.39.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("39616", "10", "2016-10-03 07:32:07", "157.55.39.210", "12");
INSERT INTO `wp_gf_form_view` VALUES("39617", "3", "2016-10-03 08:21:59", "68.180.230.168", "8");
INSERT INTO `wp_gf_form_view` VALUES("39618", "13", "2016-10-03 08:34:23", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("39619", "10", "2016-10-03 08:34:23", "217.69.133.229", "3");
INSERT INTO `wp_gf_form_view` VALUES("39620", "3", "2016-10-03 09:03:29", "192.243.55.134", "39");
INSERT INTO `wp_gf_form_view` VALUES("39621", "13", "2016-10-03 09:03:29", "192.243.55.134", "6");
INSERT INTO `wp_gf_form_view` VALUES("39622", "10", "2016-10-03 09:03:29", "192.243.55.134", "18");
INSERT INTO `wp_gf_form_view` VALUES("39623", "3", "2016-10-03 10:09:22", "217.69.133.233", "20");
INSERT INTO `wp_gf_form_view` VALUES("39624", "13", "2016-10-03 10:09:22", "217.69.133.233", "3");
INSERT INTO `wp_gf_form_view` VALUES("39625", "10", "2016-10-03 10:09:22", "217.69.133.233", "9");
INSERT INTO `wp_gf_form_view` VALUES("39626", "3", "2016-10-03 11:00:15", "68.180.230.168", "50");
INSERT INTO `wp_gf_form_view` VALUES("39627", "13", "2016-10-03 11:00:16", "68.180.230.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("39628", "10", "2016-10-03 11:00:16", "68.180.230.168", "24");
INSERT INTO `wp_gf_form_view` VALUES("39629", "1", "2016-10-03 12:33:24", "190.52.39.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("39630", "3", "2016-10-03 12:33:27", "190.52.39.238", "50");
INSERT INTO `wp_gf_form_view` VALUES("39631", "13", "2016-10-03 12:33:28", "190.52.39.238", "9");
INSERT INTO `wp_gf_form_view` VALUES("39632", "10", "2016-10-03 12:33:29", "190.52.39.238", "22");
INSERT INTO `wp_gf_form_view` VALUES("39633", "3", "2016-10-03 13:03:28", "66.249.79.112", "81");
INSERT INTO `wp_gf_form_view` VALUES("39634", "13", "2016-10-03 13:03:28", "66.249.79.112", "13");
INSERT INTO `wp_gf_form_view` VALUES("39635", "10", "2016-10-03 13:03:28", "66.249.79.112", "41");
INSERT INTO `wp_gf_form_view` VALUES("39636", "1", "2016-10-03 13:30:11", "46.17.99.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("39637", "13", "2016-10-03 14:01:28", "157.55.39.194", "14");
INSERT INTO `wp_gf_form_view` VALUES("39638", "3", "2016-10-03 14:01:28", "157.55.39.194", "75");
INSERT INTO `wp_gf_form_view` VALUES("39639", "10", "2016-10-03 14:01:28", "157.55.39.194", "36");
INSERT INTO `wp_gf_form_view` VALUES("39640", "3", "2016-10-03 15:09:27", "68.180.230.168", "62");
INSERT INTO `wp_gf_form_view` VALUES("39641", "13", "2016-10-03 15:09:27", "68.180.230.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("39642", "10", "2016-10-03 15:09:27", "68.180.230.168", "30");
INSERT INTO `wp_gf_form_view` VALUES("39643", "1", "2016-10-03 15:43:13", "23.108.93.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("39644", "3", "2016-10-03 16:01:23", "202.46.56.116", "38");
INSERT INTO `wp_gf_form_view` VALUES("39645", "13", "2016-10-03 16:01:23", "202.46.56.116", "6");
INSERT INTO `wp_gf_form_view` VALUES("39646", "10", "2016-10-03 16:01:23", "202.46.56.116", "18");
INSERT INTO `wp_gf_form_view` VALUES("39647", "8", "2016-10-03 16:03:15", "192.243.55.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("39648", "9", "2016-10-03 16:20:27", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("39649", "10", "2016-10-03 17:13:06", "157.55.39.210", "37");
INSERT INTO `wp_gf_form_view` VALUES("39650", "3", "2016-10-03 17:13:08", "157.55.39.210", "75");
INSERT INTO `wp_gf_form_view` VALUES("39651", "13", "2016-10-03 17:13:08", "157.55.39.210", "12");
INSERT INTO `wp_gf_form_view` VALUES("39652", "3", "2016-10-03 18:20:47", "199.60.104.18", "51");
INSERT INTO `wp_gf_form_view` VALUES("39653", "13", "2016-10-03 18:20:47", "199.60.104.18", "8");
INSERT INTO `wp_gf_form_view` VALUES("39654", "10", "2016-10-03 18:20:47", "199.60.104.18", "24");
INSERT INTO `wp_gf_form_view` VALUES("39655", "1", "2016-10-03 18:35:16", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("39656", "3", "2016-10-03 19:01:26", "157.55.39.210", "103");
INSERT INTO `wp_gf_form_view` VALUES("39657", "13", "2016-10-03 19:01:27", "157.55.39.210", "17");
INSERT INTO `wp_gf_form_view` VALUES("39658", "10", "2016-10-03 19:01:27", "157.55.39.210", "50");
INSERT INTO `wp_gf_form_view` VALUES("39659", "1", "2016-10-03 19:01:37", "155.133.43.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("39660", "3", "2016-10-03 20:05:28", "40.77.167.25", "38");
INSERT INTO `wp_gf_form_view` VALUES("39661", "13", "2016-10-03 20:05:28", "40.77.167.25", "6");
INSERT INTO `wp_gf_form_view` VALUES("39662", "10", "2016-10-03 20:05:28", "40.77.167.25", "18");
INSERT INTO `wp_gf_form_view` VALUES("39663", "1", "2016-10-03 20:59:21", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("39664", "10", "2016-10-03 21:02:43", "164.132.161.82", "25");
INSERT INTO `wp_gf_form_view` VALUES("39665", "3", "2016-10-03 21:02:43", "164.132.161.82", "52");
INSERT INTO `wp_gf_form_view` VALUES("39666", "13", "2016-10-03 21:02:44", "164.132.161.82", "8");
INSERT INTO `wp_gf_form_view` VALUES("39667", "3", "2016-10-03 22:15:15", "157.55.39.210", "70");
INSERT INTO `wp_gf_form_view` VALUES("39668", "13", "2016-10-03 22:15:16", "157.55.39.210", "11");
INSERT INTO `wp_gf_form_view` VALUES("39669", "10", "2016-10-03 22:15:16", "157.55.39.210", "32");
INSERT INTO `wp_gf_form_view` VALUES("39670", "1", "2016-10-03 22:42:16", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("39671", "12", "2016-10-03 22:50:02", "134.249.65.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("39672", "3", "2016-10-03 23:05:39", "207.46.13.166", "92");
INSERT INTO `wp_gf_form_view` VALUES("39673", "13", "2016-10-03 23:05:39", "207.46.13.166", "17");
INSERT INTO `wp_gf_form_view` VALUES("39674", "10", "2016-10-03 23:05:39", "207.46.13.166", "46");
INSERT INTO `wp_gf_form_view` VALUES("39675", "1", "2016-10-04 00:00:32", "184.69.26.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("39676", "3", "2016-10-04 00:00:32", "184.69.26.206", "71");
INSERT INTO `wp_gf_form_view` VALUES("39677", "13", "2016-10-04 00:00:32", "184.69.26.206", "12");
INSERT INTO `wp_gf_form_view` VALUES("39678", "10", "2016-10-04 00:00:32", "184.69.26.206", "33");
INSERT INTO `wp_gf_form_view` VALUES("39679", "3", "2016-10-04 01:01:01", "157.55.39.65", "93");
INSERT INTO `wp_gf_form_view` VALUES("39680", "13", "2016-10-04 01:01:02", "157.55.39.65", "15");
INSERT INTO `wp_gf_form_view` VALUES("39681", "10", "2016-10-04 01:01:02", "157.55.39.65", "47");
INSERT INTO `wp_gf_form_view` VALUES("39682", "1", "2016-10-04 01:32:03", "157.55.39.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("39683", "3", "2016-10-04 02:32:41", "207.46.13.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("39684", "13", "2016-10-04 02:32:42", "207.46.13.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("39685", "10", "2016-10-04 02:32:42", "207.46.13.166", "3");
INSERT INTO `wp_gf_form_view` VALUES("39686", "3", "2016-10-04 03:16:25", "157.55.39.210", "268");
INSERT INTO `wp_gf_form_view` VALUES("39687", "13", "2016-10-04 03:16:25", "157.55.39.210", "46");
INSERT INTO `wp_gf_form_view` VALUES("39688", "10", "2016-10-04 03:16:25", "157.55.39.210", "133");
INSERT INTO `wp_gf_form_view` VALUES("39689", "2", "2016-10-04 03:32:13", "5.79.68.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("39690", "11", "2016-10-04 03:33:02", "5.79.68.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("39691", "3", "2016-10-04 04:35:48", "24.68.25.82", "36");
INSERT INTO `wp_gf_form_view` VALUES("39692", "13", "2016-10-04 04:35:49", "24.68.25.82", "6");
INSERT INTO `wp_gf_form_view` VALUES("39693", "10", "2016-10-04 04:35:49", "24.68.25.82", "18");
INSERT INTO `wp_gf_form_view` VALUES("39694", "3", "2016-10-04 05:10:13", "108.180.118.95", "25");
INSERT INTO `wp_gf_form_view` VALUES("39695", "13", "2016-10-04 05:10:13", "108.180.118.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("39696", "10", "2016-10-04 05:10:13", "108.180.118.95", "12");
INSERT INTO `wp_gf_form_view` VALUES("39697", "3", "2016-10-04 06:22:11", "157.55.39.65", "25");
INSERT INTO `wp_gf_form_view` VALUES("39698", "13", "2016-10-04 06:22:15", "157.55.39.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("39699", "10", "2016-10-04 06:22:15", "157.55.39.65", "13");
INSERT INTO `wp_gf_form_view` VALUES("39700", "3", "2016-10-04 07:00:36", "68.180.230.168", "55");
INSERT INTO `wp_gf_form_view` VALUES("39701", "13", "2016-10-04 07:00:36", "68.180.230.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("39702", "10", "2016-10-04 07:00:36", "68.180.230.168", "27");
INSERT INTO `wp_gf_form_view` VALUES("39703", "1", "2016-10-04 07:22:35", "68.180.230.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("39704", "3", "2016-10-04 08:37:51", "66.249.79.104", "18");
INSERT INTO `wp_gf_form_view` VALUES("39705", "13", "2016-10-04 08:37:52", "66.249.79.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("39706", "10", "2016-10-04 08:37:52", "66.249.79.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("39707", "3", "2016-10-04 09:40:30", "194.187.170.124", "6");
INSERT INTO `wp_gf_form_view` VALUES("39708", "13", "2016-10-04 09:40:35", "194.187.170.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("39709", "10", "2016-10-04 09:40:35", "194.187.170.124", "3");
INSERT INTO `wp_gf_form_view` VALUES("39710", "3", "2016-10-04 10:07:06", "194.187.170.124", "55");
INSERT INTO `wp_gf_form_view` VALUES("39711", "13", "2016-10-04 10:07:06", "194.187.170.124", "9");
INSERT INTO `wp_gf_form_view` VALUES("39712", "10", "2016-10-04 10:07:06", "194.187.170.124", "27");
INSERT INTO `wp_gf_form_view` VALUES("39713", "11", "2016-10-04 10:30:57", "194.187.170.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("39714", "12", "2016-10-04 11:14:26", "134.249.65.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("39715", "12", "2016-10-04 11:14:26", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("39716", "3", "2016-10-04 11:14:29", "134.249.65.218", "49");
INSERT INTO `wp_gf_form_view` VALUES("39717", "3", "2016-10-04 11:14:29", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("39718", "3", "2016-10-04 11:14:29", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("39719", "13", "2016-10-04 11:14:29", "134.249.65.218", "7");
INSERT INTO `wp_gf_form_view` VALUES("39720", "13", "2016-10-04 11:14:29", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("39721", "13", "2016-10-04 11:14:29", "134.249.65.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("39722", "10", "2016-10-04 11:14:29", "134.249.65.218", "30");
INSERT INTO `wp_gf_form_view` VALUES("39723", "3", "2016-10-04 12:01:08", "70.67.232.58", "116");
INSERT INTO `wp_gf_form_view` VALUES("39724", "13", "2016-10-04 12:01:08", "70.67.232.58", "19");
INSERT INTO `wp_gf_form_view` VALUES("39725", "10", "2016-10-04 12:01:08", "70.67.232.58", "58");
INSERT INTO `wp_gf_form_view` VALUES("39726", "1", "2016-10-04 12:03:25", "70.67.232.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("39727", "12", "2016-10-04 12:06:40", "134.249.65.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("39728", "11", "2016-10-04 12:28:23", "61.174.160.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("39729", "3", "2016-10-04 13:03:17", "66.249.79.108", "31");
INSERT INTO `wp_gf_form_view` VALUES("39730", "13", "2016-10-04 13:03:17", "66.249.79.108", "5");
INSERT INTO `wp_gf_form_view` VALUES("39731", "10", "2016-10-04 13:03:17", "66.249.79.108", "17");
INSERT INTO `wp_gf_form_view` VALUES("39732", "3", "2016-10-04 14:40:44", "164.132.161.67", "7");
INSERT INTO `wp_gf_form_view` VALUES("39733", "13", "2016-10-04 14:40:46", "164.132.161.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("39734", "10", "2016-10-04 14:40:46", "164.132.161.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("39735", "3", "2016-10-04 15:04:54", "184.66.142.245", "45");
INSERT INTO `wp_gf_form_view` VALUES("39736", "13", "2016-10-04 15:04:55", "184.66.142.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("39737", "10", "2016-10-04 15:04:55", "184.66.142.245", "21");
INSERT INTO `wp_gf_form_view` VALUES("39738", "1", "2016-10-04 15:36:55", "189.146.196.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("39739", "10", "2016-10-04 16:06:31", "24.69.77.172", "17");
INSERT INTO `wp_gf_form_view` VALUES("39740", "3", "2016-10-04 16:06:31", "24.69.77.172", "30");
INSERT INTO `wp_gf_form_view` VALUES("39741", "13", "2016-10-04 16:06:31", "24.69.77.172", "5");
INSERT INTO `wp_gf_form_view` VALUES("39742", "3", "2016-10-04 17:04:52", "66.249.79.112", "42");
INSERT INTO `wp_gf_form_view` VALUES("39743", "13", "2016-10-04 17:04:52", "66.249.79.112", "7");
INSERT INTO `wp_gf_form_view` VALUES("39744", "10", "2016-10-04 17:04:52", "66.249.79.112", "21");
INSERT INTO `wp_gf_form_view` VALUES("39745", "3", "2016-10-04 18:05:17", "66.249.79.108", "56");
INSERT INTO `wp_gf_form_view` VALUES("39746", "13", "2016-10-04 18:05:18", "66.249.79.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("39747", "10", "2016-10-04 18:05:18", "66.249.79.108", "28");
INSERT INTO `wp_gf_form_view` VALUES("39748", "1", "2016-10-04 18:45:55", "78.58.208.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("39749", "3", "2016-10-04 19:22:29", "207.46.13.166", "61");
INSERT INTO `wp_gf_form_view` VALUES("39750", "13", "2016-10-04 19:22:29", "207.46.13.166", "10");
INSERT INTO `wp_gf_form_view` VALUES("39751", "10", "2016-10-04 19:22:29", "207.46.13.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("39752", "1", "2016-10-04 19:45:38", "75.157.27.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("39753", "3", "2016-10-04 20:44:18", "194.187.170.123", "20");
INSERT INTO `wp_gf_form_view` VALUES("39754", "13", "2016-10-04 20:44:20", "194.187.170.123", "3");
INSERT INTO `wp_gf_form_view` VALUES("39755", "10", "2016-10-04 20:44:20", "194.187.170.123", "9");
INSERT INTO `wp_gf_form_view` VALUES("39756", "3", "2016-10-04 21:10:16", "24.68.44.35", "131");
INSERT INTO `wp_gf_form_view` VALUES("39757", "13", "2016-10-04 21:10:16", "24.68.44.35", "24");
INSERT INTO `wp_gf_form_view` VALUES("39758", "10", "2016-10-04 21:10:16", "24.68.44.35", "63");
INSERT INTO `wp_gf_form_view` VALUES("39759", "11", "2016-10-04 21:59:40", "96.50.19.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("39760", "3", "2016-10-04 22:00:10", "96.50.19.46", "102");
INSERT INTO `wp_gf_form_view` VALUES("39761", "13", "2016-10-04 22:00:11", "96.50.19.46", "15");
INSERT INTO `wp_gf_form_view` VALUES("39762", "10", "2016-10-04 22:00:11", "96.50.19.46", "39");
INSERT INTO `wp_gf_form_view` VALUES("39763", "3", "2016-10-04 23:42:34", "207.46.13.166", "20");
INSERT INTO `wp_gf_form_view` VALUES("39764", "13", "2016-10-04 23:42:35", "207.46.13.166", "3");
INSERT INTO `wp_gf_form_view` VALUES("39765", "10", "2016-10-04 23:42:37", "207.46.13.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("39766", "3", "2016-10-05 00:15:03", "157.55.39.65", "28");
INSERT INTO `wp_gf_form_view` VALUES("39767", "13", "2016-10-05 00:15:03", "157.55.39.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("39768", "10", "2016-10-05 00:15:03", "157.55.39.65", "9");
INSERT INTO `wp_gf_form_view` VALUES("39769", "3", "2016-10-05 01:05:41", "51.255.65.12", "19");
INSERT INTO `wp_gf_form_view` VALUES("39770", "13", "2016-10-05 01:05:42", "51.255.65.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("39771", "10", "2016-10-05 01:05:42", "51.255.65.12", "9");
INSERT INTO `wp_gf_form_view` VALUES("39772", "10", "2016-10-05 02:18:24", "216.232.157.181", "13");
INSERT INTO `wp_gf_form_view` VALUES("39773", "3", "2016-10-05 02:18:25", "216.232.157.181", "25");
INSERT INTO `wp_gf_form_view` VALUES("39774", "13", "2016-10-05 02:18:25", "216.232.157.181", "5");
INSERT INTO `wp_gf_form_view` VALUES("39775", "3", "2016-10-05 03:27:48", "24.108.165.31", "25");
INSERT INTO `wp_gf_form_view` VALUES("39776", "13", "2016-10-05 03:27:48", "24.108.165.31", "4");
INSERT INTO `wp_gf_form_view` VALUES("39777", "10", "2016-10-05 03:27:48", "24.108.165.31", "12");
INSERT INTO `wp_gf_form_view` VALUES("39778", "12", "2016-10-05 03:30:46", "51.255.65.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("39779", "3", "2016-10-05 04:13:53", "68.180.230.168", "24");
INSERT INTO `wp_gf_form_view` VALUES("39780", "13", "2016-10-05 04:13:53", "68.180.230.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("39781", "10", "2016-10-05 04:13:53", "68.180.230.168", "14");
INSERT INTO `wp_gf_form_view` VALUES("39782", "3", "2016-10-05 05:04:09", "134.249.65.218", "25");
INSERT INTO `wp_gf_form_view` VALUES("39783", "13", "2016-10-05 05:04:09", "134.249.65.218", "4");
INSERT INTO `wp_gf_form_view` VALUES("39784", "10", "2016-10-05 05:04:09", "134.249.65.218", "12");
INSERT INTO `wp_gf_form_view` VALUES("39785", "11", "2016-10-05 05:59:46", "51.255.65.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("39786", "3", "2016-10-05 06:28:12", "202.46.51.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("39787", "13", "2016-10-05 06:28:13", "202.46.51.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("39788", "10", "2016-10-05 06:28:14", "202.46.51.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("39789", "3", "2016-10-05 07:35:09", "202.46.58.70", "12");
INSERT INTO `wp_gf_form_view` VALUES("39790", "13", "2016-10-05 07:35:10", "202.46.58.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("39791", "10", "2016-10-05 07:35:10", "202.46.58.70", "6");
INSERT INTO `wp_gf_form_view` VALUES("39792", "3", "2016-10-05 08:50:11", "194.187.170.140", "20");
INSERT INTO `wp_gf_form_view` VALUES("39793", "13", "2016-10-05 08:50:12", "194.187.170.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("39794", "10", "2016-10-05 08:50:13", "194.187.170.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("39795", "3", "2016-10-05 09:04:11", "194.187.170.140", "139");
INSERT INTO `wp_gf_form_view` VALUES("39796", "13", "2016-10-05 09:04:11", "194.187.170.140", "21");
INSERT INTO `wp_gf_form_view` VALUES("39797", "10", "2016-10-05 09:04:12", "194.187.170.140", "61");
INSERT INTO `wp_gf_form_view` VALUES("39798", "1", "2016-10-05 09:05:24", "194.187.170.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("39799", "3", "2016-10-05 10:02:50", "88.3.86.69", "700");
INSERT INTO `wp_gf_form_view` VALUES("39800", "13", "2016-10-05 10:02:50", "88.3.86.69", "110");
INSERT INTO `wp_gf_form_view` VALUES("39801", "10", "2016-10-05 10:02:50", "88.3.86.69", "333");
INSERT INTO `wp_gf_form_view` VALUES("39802", "8", "2016-10-05 10:06:57", "157.55.39.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("39803", "5", "2016-10-05 10:07:21", "207.46.13.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("39804", "6", "2016-10-05 10:07:29", "207.46.13.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("39805", "9", "2016-10-05 10:08:00", "157.55.39.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("39806", "1", "2016-10-05 10:08:46", "157.55.39.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("39807", "2", "2016-10-05 10:08:47", "157.55.39.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("39808", "12", "2016-10-05 10:42:07", "194.187.170.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("39809", "3", "2016-10-05 11:02:36", "157.55.39.65", "20");
INSERT INTO `wp_gf_form_view` VALUES("39810", "13", "2016-10-05 11:02:37", "157.55.39.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("39811", "10", "2016-10-05 11:02:37", "157.55.39.65", "9");
INSERT INTO `wp_gf_form_view` VALUES("39812", "3", "2016-10-05 12:12:15", "202.46.57.19", "13");
INSERT INTO `wp_gf_form_view` VALUES("39813", "13", "2016-10-05 12:12:16", "202.46.57.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("39814", "10", "2016-10-05 12:12:16", "202.46.57.19", "6");
INSERT INTO `wp_gf_form_view` VALUES("39815", "3", "2016-10-05 13:15:40", "68.180.230.168", "34");
INSERT INTO `wp_gf_form_view` VALUES("39816", "13", "2016-10-05 13:15:40", "68.180.230.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("39817", "10", "2016-10-05 13:15:41", "68.180.230.168", "13");
INSERT INTO `wp_gf_form_view` VALUES("39818", "3", "2016-10-05 14:14:18", "51.255.65.8", "12");
INSERT INTO `wp_gf_form_view` VALUES("39819", "13", "2016-10-05 14:14:18", "51.255.65.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("39820", "10", "2016-10-05 14:14:18", "51.255.65.8", "6");
INSERT INTO `wp_gf_form_view` VALUES("39821", "3", "2016-10-05 15:19:26", "68.180.230.168", "31");
INSERT INTO `wp_gf_form_view` VALUES("39822", "13", "2016-10-05 15:19:32", "68.180.230.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("39823", "10", "2016-10-05 15:19:32", "68.180.230.168", "15");
INSERT INTO `wp_gf_form_view` VALUES("39824", "1", "2016-10-05 15:28:09", "172.245.73.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("39825", "3", "2016-10-05 16:23:00", "68.180.230.168", "12");
INSERT INTO `wp_gf_form_view` VALUES("39826", "13", "2016-10-05 16:23:00", "68.180.230.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("39827", "10", "2016-10-05 16:23:00", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("39828", "1", "2016-10-05 17:02:17", "192.227.171.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("39829", "3", "2016-10-05 17:02:21", "192.227.171.41", "54");
INSERT INTO `wp_gf_form_view` VALUES("39830", "13", "2016-10-05 17:02:27", "192.227.171.41", "9");
INSERT INTO `wp_gf_form_view` VALUES("39831", "10", "2016-10-05 17:02:27", "192.227.171.41", "28");
INSERT INTO `wp_gf_form_view` VALUES("39832", "3", "2016-10-05 18:00:08", "68.180.230.168", "109");
INSERT INTO `wp_gf_form_view` VALUES("39833", "13", "2016-10-05 18:00:08", "68.180.230.168", "22");
INSERT INTO `wp_gf_form_view` VALUES("39834", "10", "2016-10-05 18:00:08", "68.180.230.168", "56");
INSERT INTO `wp_gf_form_view` VALUES("39835", "1", "2016-10-05 18:15:29", "212.83.173.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("39836", "3", "2016-10-05 19:59:25", "77.75.76.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("39837", "13", "2016-10-05 19:59:26", "77.75.76.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("39838", "10", "2016-10-05 19:59:26", "77.75.76.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("39839", "5", "2016-10-05 20:57:41", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("39840", "3", "2016-10-05 20:57:42", "77.75.78.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("39841", "13", "2016-10-05 20:57:42", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("39842", "10", "2016-10-05 20:57:42", "77.75.78.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("39843", "1", "2016-10-05 21:18:32", "104.144.187.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("39844", "3", "2016-10-05 21:18:33", "104.144.187.125", "90");
INSERT INTO `wp_gf_form_view` VALUES("39845", "13", "2016-10-05 21:18:33", "104.144.187.125", "14");
INSERT INTO `wp_gf_form_view` VALUES("39846", "10", "2016-10-05 21:18:33", "104.144.187.125", "42");
INSERT INTO `wp_gf_form_view` VALUES("39847", "3", "2016-10-05 22:14:39", "77.75.76.165", "48");
INSERT INTO `wp_gf_form_view` VALUES("39848", "13", "2016-10-05 22:14:40", "77.75.76.165", "8");
INSERT INTO `wp_gf_form_view` VALUES("39849", "10", "2016-10-05 22:14:40", "77.75.76.165", "25");
INSERT INTO `wp_gf_form_view` VALUES("39850", "3", "2016-10-05 23:06:16", "108.181.252.145", "12");
INSERT INTO `wp_gf_form_view` VALUES("39851", "13", "2016-10-05 23:06:17", "108.181.252.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("39852", "10", "2016-10-05 23:06:17", "108.181.252.145", "6");
INSERT INTO `wp_gf_form_view` VALUES("39853", "3", "2016-10-06 00:01:44", "157.55.39.65", "110");
INSERT INTO `wp_gf_form_view` VALUES("39854", "13", "2016-10-06 00:01:45", "157.55.39.65", "18");
INSERT INTO `wp_gf_form_view` VALUES("39855", "10", "2016-10-06 00:01:45", "157.55.39.65", "55");
INSERT INTO `wp_gf_form_view` VALUES("39856", "1", "2016-10-06 00:08:56", "154.20.39.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("39857", "12", "2016-10-06 00:19:02", "134.249.65.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("39858", "3", "2016-10-06 01:06:21", "163.172.66.40", "32");
INSERT INTO `wp_gf_form_view` VALUES("39859", "13", "2016-10-06 01:06:21", "163.172.66.40", "5");
INSERT INTO `wp_gf_form_view` VALUES("39860", "10", "2016-10-06 01:06:21", "163.172.66.40", "16");
INSERT INTO `wp_gf_form_view` VALUES("39861", "3", "2016-10-06 02:01:21", "46.246.42.142", "33");
INSERT INTO `wp_gf_form_view` VALUES("39862", "13", "2016-10-06 02:01:21", "46.246.42.142", "5");
INSERT INTO `wp_gf_form_view` VALUES("39863", "10", "2016-10-06 02:01:21", "46.246.42.142", "15");
INSERT INTO `wp_gf_form_view` VALUES("39864", "3", "2016-10-06 03:01:26", "68.180.230.168", "43");
INSERT INTO `wp_gf_form_view` VALUES("39865", "1", "2016-10-06 03:01:32", "202.46.53.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("39866", "13", "2016-10-06 03:01:32", "202.46.53.142", "7");
INSERT INTO `wp_gf_form_view` VALUES("39867", "10", "2016-10-06 03:01:32", "202.46.53.142", "21");
INSERT INTO `wp_gf_form_view` VALUES("39868", "11", "2016-10-06 03:46:49", "77.75.77.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("39869", "3", "2016-10-06 04:52:57", "96.50.19.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("39870", "13", "2016-10-06 04:52:57", "96.50.19.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("39871", "10", "2016-10-06 04:52:57", "96.50.19.46", "3");
INSERT INTO `wp_gf_form_view` VALUES("39872", "3", "2016-10-06 05:05:09", "24.68.25.82", "42");
INSERT INTO `wp_gf_form_view` VALUES("39873", "13", "2016-10-06 05:05:09", "24.68.25.82", "7");
INSERT INTO `wp_gf_form_view` VALUES("39874", "10", "2016-10-06 05:05:09", "24.68.25.82", "21");
INSERT INTO `wp_gf_form_view` VALUES("39875", "1", "2016-10-06 05:18:32", "192.227.171.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("39876", "3", "2016-10-06 06:52:55", "77.75.79.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("39877", "13", "2016-10-06 06:52:57", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("39878", "10", "2016-10-06 06:52:57", "77.75.79.109", "3");
INSERT INTO `wp_gf_form_view` VALUES("39879", "3", "2016-10-06 07:42:23", "154.5.71.204", "31");
INSERT INTO `wp_gf_form_view` VALUES("39880", "13", "2016-10-06 07:42:24", "154.5.71.204", "5");
INSERT INTO `wp_gf_form_view` VALUES("39881", "10", "2016-10-06 07:42:24", "154.5.71.204", "16");
INSERT INTO `wp_gf_form_view` VALUES("39882", "3", "2016-10-06 08:16:11", "68.180.230.168", "39");
INSERT INTO `wp_gf_form_view` VALUES("39883", "13", "2016-10-06 08:16:12", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("39884", "10", "2016-10-06 08:16:15", "68.180.230.168", "15");
INSERT INTO `wp_gf_form_view` VALUES("39885", "12", "2016-10-06 08:20:57", "163.172.64.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("39886", "3", "2016-10-06 09:41:58", "194.187.170.103", "32");
INSERT INTO `wp_gf_form_view` VALUES("39887", "13", "2016-10-06 09:50:27", "77.75.76.164", "5");
INSERT INTO `wp_gf_form_view` VALUES("39888", "10", "2016-10-06 09:50:27", "77.75.76.164", "15");
INSERT INTO `wp_gf_form_view` VALUES("39889", "12", "2016-10-06 09:50:29", "134.249.65.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("39890", "10", "2016-10-06 10:16:59", "68.180.230.168", "26");
INSERT INTO `wp_gf_form_view` VALUES("39891", "13", "2016-10-06 10:16:59", "197.231.239.57", "10");
INSERT INTO `wp_gf_form_view` VALUES("39892", "3", "2016-10-06 10:17:00", "68.180.230.168", "49");
INSERT INTO `wp_gf_form_view` VALUES("39893", "3", "2016-10-06 10:17:00", "197.231.239.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("39894", "3", "2016-10-06 11:13:06", "202.46.56.17", "24");
INSERT INTO `wp_gf_form_view` VALUES("39895", "13", "2016-10-06 11:13:06", "202.46.56.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("39896", "10", "2016-10-06 11:13:06", "202.46.56.17", "12");
INSERT INTO `wp_gf_form_view` VALUES("39897", "3", "2016-10-06 12:05:05", "66.249.79.112", "37");
INSERT INTO `wp_gf_form_view` VALUES("39898", "13", "2016-10-06 12:05:05", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("39899", "10", "2016-10-06 12:05:05", "66.249.79.112", "18");
INSERT INTO `wp_gf_form_view` VALUES("39900", "3", "2016-10-06 13:39:18", "66.249.79.112", "24");
INSERT INTO `wp_gf_form_view` VALUES("39901", "13", "2016-10-06 13:39:18", "66.249.79.112", "4");
INSERT INTO `wp_gf_form_view` VALUES("39902", "10", "2016-10-06 13:39:18", "66.249.79.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("39903", "3", "2016-10-06 14:13:06", "192.243.55.136", "33");
INSERT INTO `wp_gf_form_view` VALUES("39904", "13", "2016-10-06 14:18:02", "157.55.39.65", "5");
INSERT INTO `wp_gf_form_view` VALUES("39905", "10", "2016-10-06 14:18:02", "157.55.39.65", "16");
INSERT INTO `wp_gf_form_view` VALUES("39906", "3", "2016-10-06 15:00:18", "157.55.39.65", "39");
INSERT INTO `wp_gf_form_view` VALUES("39907", "13", "2016-10-06 15:00:18", "157.55.39.65", "6");
INSERT INTO `wp_gf_form_view` VALUES("39908", "10", "2016-10-06 15:00:18", "157.55.39.65", "18");
INSERT INTO `wp_gf_form_view` VALUES("39909", "8", "2016-10-06 15:55:46", "108.180.49.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("39910", "13", "2016-10-06 16:02:11", "108.180.49.208", "10");
INSERT INTO `wp_gf_form_view` VALUES("39911", "3", "2016-10-06 16:02:11", "108.180.49.208", "53");
INSERT INTO `wp_gf_form_view` VALUES("39912", "10", "2016-10-06 16:02:11", "108.180.49.208", "31");
INSERT INTO `wp_gf_form_view` VALUES("39913", "3", "2016-10-06 17:04:36", "66.249.79.104", "36");
INSERT INTO `wp_gf_form_view` VALUES("39914", "13", "2016-10-06 17:04:36", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("39915", "10", "2016-10-06 17:04:36", "66.249.79.104", "19");
INSERT INTO `wp_gf_form_view` VALUES("39916", "3", "2016-10-06 18:04:39", "216.232.157.181", "74");
INSERT INTO `wp_gf_form_view` VALUES("39917", "13", "2016-10-06 18:05:01", "216.232.157.181", "13");
INSERT INTO `wp_gf_form_view` VALUES("39918", "10", "2016-10-06 18:05:02", "216.232.157.181", "37");
INSERT INTO `wp_gf_form_view` VALUES("39919", "10", "2016-10-06 19:01:30", "157.55.39.65", "74");
INSERT INTO `wp_gf_form_view` VALUES("39920", "3", "2016-10-06 19:01:30", "157.55.39.65", "146");
INSERT INTO `wp_gf_form_view` VALUES("39921", "13", "2016-10-06 19:01:30", "157.55.39.65", "24");
INSERT INTO `wp_gf_form_view` VALUES("39922", "2", "2016-10-06 19:07:36", "111.250.109.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("39923", "3", "2016-10-06 20:16:58", "157.55.39.115", "153");
INSERT INTO `wp_gf_form_view` VALUES("39924", "13", "2016-10-06 20:16:58", "157.55.39.115", "26");
INSERT INTO `wp_gf_form_view` VALUES("39925", "10", "2016-10-06 20:16:58", "157.55.39.115", "75");
INSERT INTO `wp_gf_form_view` VALUES("39926", "11", "2016-10-06 20:30:08", "104.236.227.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("39927", "2", "2016-10-06 20:30:09", "104.236.227.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("39928", "3", "2016-10-06 21:10:50", "184.66.37.111", "349");
INSERT INTO `wp_gf_form_view` VALUES("39929", "13", "2016-10-06 21:10:51", "184.66.37.111", "58");
INSERT INTO `wp_gf_form_view` VALUES("39930", "10", "2016-10-06 21:10:51", "184.66.37.111", "169");
INSERT INTO `wp_gf_form_view` VALUES("39931", "2", "2016-10-06 21:16:33", "174.127.133.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("39932", "11", "2016-10-06 21:20:01", "174.127.133.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("39933", "5", "2016-10-06 21:44:12", "66.249.79.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("39934", "1", "2016-10-06 21:53:24", "174.127.133.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("39935", "3", "2016-10-06 22:06:45", "207.46.13.19", "40");
INSERT INTO `wp_gf_form_view` VALUES("39936", "13", "2016-10-06 22:06:45", "207.46.13.19", "7");
INSERT INTO `wp_gf_form_view` VALUES("39937", "10", "2016-10-06 22:06:45", "207.46.13.19", "24");
INSERT INTO `wp_gf_form_view` VALUES("39938", "3", "2016-10-06 23:21:28", "24.68.143.210", "20");
INSERT INTO `wp_gf_form_view` VALUES("39939", "13", "2016-10-06 23:21:34", "24.68.143.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("39940", "10", "2016-10-06 23:21:34", "24.68.143.210", "16");
INSERT INTO `wp_gf_form_view` VALUES("39941", "1", "2016-10-06 23:54:09", "192.227.179.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("39942", "3", "2016-10-07 00:03:40", "66.249.79.112", "23");
INSERT INTO `wp_gf_form_view` VALUES("39943", "13", "2016-10-07 00:03:40", "66.249.79.112", "4");
INSERT INTO `wp_gf_form_view` VALUES("39944", "10", "2016-10-07 00:03:40", "66.249.79.112", "17");
INSERT INTO `wp_gf_form_view` VALUES("39945", "8", "2016-10-07 00:29:01", "207.46.13.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("39946", "3", "2016-10-07 01:10:24", "66.249.79.108", "32");
INSERT INTO `wp_gf_form_view` VALUES("39947", "13", "2016-10-07 01:10:24", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("39948", "10", "2016-10-07 01:10:24", "66.249.79.108", "24");
INSERT INTO `wp_gf_form_view` VALUES("39949", "2", "2016-10-07 01:14:12", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("39950", "1", "2016-10-07 02:03:11", "198.52.240.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("39951", "3", "2016-10-07 02:03:12", "198.52.240.41", "71");
INSERT INTO `wp_gf_form_view` VALUES("39952", "13", "2016-10-07 02:03:12", "198.52.240.41", "13");
INSERT INTO `wp_gf_form_view` VALUES("39953", "10", "2016-10-07 02:03:12", "198.52.240.41", "52");
INSERT INTO `wp_gf_form_view` VALUES("39954", "3", "2016-10-07 03:02:35", "144.76.29.66", "85");
INSERT INTO `wp_gf_form_view` VALUES("39955", "13", "2016-10-07 03:02:36", "144.76.29.66", "16");
INSERT INTO `wp_gf_form_view` VALUES("39956", "10", "2016-10-07 03:02:36", "144.76.29.66", "72");
INSERT INTO `wp_gf_form_view` VALUES("39957", "5", "2016-10-07 03:31:06", "77.75.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("39958", "3", "2016-10-07 04:04:42", "157.55.39.65", "27");
INSERT INTO `wp_gf_form_view` VALUES("39959", "13", "2016-10-07 04:04:42", "157.55.39.65", "5");
INSERT INTO `wp_gf_form_view` VALUES("39960", "10", "2016-10-07 04:04:42", "157.55.39.65", "21");
INSERT INTO `wp_gf_form_view` VALUES("39961", "3", "2016-10-07 05:24:16", "66.249.79.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("39962", "13", "2016-10-07 05:24:16", "66.249.79.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("39963", "10", "2016-10-07 05:24:16", "66.249.79.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("39964", "3", "2016-10-07 06:09:41", "157.55.39.65", "73");
INSERT INTO `wp_gf_form_view` VALUES("39965", "13", "2016-10-07 06:09:44", "157.55.39.65", "13");
INSERT INTO `wp_gf_form_view` VALUES("39966", "10", "2016-10-07 06:09:44", "157.55.39.65", "53");
INSERT INTO `wp_gf_form_view` VALUES("39967", "12", "2016-10-07 06:13:18", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("39968", "3", "2016-10-07 07:19:54", "202.46.54.116", "22");
INSERT INTO `wp_gf_form_view` VALUES("39969", "13", "2016-10-07 07:19:54", "202.46.54.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("39970", "10", "2016-10-07 07:19:54", "202.46.54.116", "12");
INSERT INTO `wp_gf_form_view` VALUES("39971", "3", "2016-10-07 08:26:53", "202.46.58.137", "21");
INSERT INTO `wp_gf_form_view` VALUES("39972", "13", "2016-10-07 08:26:53", "202.46.58.137", "4");
INSERT INTO `wp_gf_form_view` VALUES("39973", "10", "2016-10-07 08:26:53", "202.46.58.137", "16");
INSERT INTO `wp_gf_form_view` VALUES("39974", "8", "2016-10-07 09:00:22", "202.46.50.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("39975", "3", "2016-10-07 09:00:22", "202.46.50.150", "45");
INSERT INTO `wp_gf_form_view` VALUES("39976", "13", "2016-10-07 09:00:22", "202.46.50.150", "9");
INSERT INTO `wp_gf_form_view` VALUES("39977", "10", "2016-10-07 09:00:22", "202.46.50.150", "36");
INSERT INTO `wp_gf_form_view` VALUES("39978", "3", "2016-10-07 10:05:46", "5.9.112.6", "31");
INSERT INTO `wp_gf_form_view` VALUES("39979", "13", "2016-10-07 10:05:46", "5.9.112.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("39980", "10", "2016-10-07 10:05:46", "5.9.112.6", "24");
INSERT INTO `wp_gf_form_view` VALUES("39981", "2", "2016-10-07 10:08:14", "120.52.73.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("39982", "3", "2016-10-07 11:05:03", "157.55.39.65", "20");
INSERT INTO `wp_gf_form_view` VALUES("39983", "13", "2016-10-07 11:05:03", "157.55.39.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("39984", "10", "2016-10-07 11:05:03", "157.55.39.65", "16");
INSERT INTO `wp_gf_form_view` VALUES("39985", "3", "2016-10-07 12:04:50", "51.255.65.38", "27");
INSERT INTO `wp_gf_form_view` VALUES("39986", "13", "2016-10-07 12:04:50", "51.255.65.38", "5");
INSERT INTO `wp_gf_form_view` VALUES("39987", "10", "2016-10-07 12:04:50", "51.255.65.38", "21");
INSERT INTO `wp_gf_form_view` VALUES("39988", "3", "2016-10-07 13:01:38", "192.243.55.129", "30");
INSERT INTO `wp_gf_form_view` VALUES("39989", "13", "2016-10-07 13:01:38", "192.243.55.129", "6");
INSERT INTO `wp_gf_form_view` VALUES("39990", "10", "2016-10-07 13:01:38", "192.243.55.129", "25");
INSERT INTO `wp_gf_form_view` VALUES("39991", "3", "2016-10-07 14:12:45", "163.172.51.216", "64");
INSERT INTO `wp_gf_form_view` VALUES("39992", "13", "2016-10-07 14:12:45", "163.172.51.216", "12");
INSERT INTO `wp_gf_form_view` VALUES("39993", "10", "2016-10-07 14:12:45", "163.172.51.216", "44");
INSERT INTO `wp_gf_form_view` VALUES("39994", "3", "2016-10-07 15:06:45", "45.32.129.200", "75");
INSERT INTO `wp_gf_form_view` VALUES("39995", "13", "2016-10-07 15:06:47", "45.32.129.200", "15");
INSERT INTO `wp_gf_form_view` VALUES("39996", "10", "2016-10-07 15:06:47", "45.32.129.200", "60");
INSERT INTO `wp_gf_form_view` VALUES("39997", "2", "2016-10-07 15:06:56", "45.32.129.200", "3");
INSERT INTO `wp_gf_form_view` VALUES("39998", "3", "2016-10-07 16:08:03", "66.249.79.108", "31");
INSERT INTO `wp_gf_form_view` VALUES("39999", "13", "2016-10-07 16:08:03", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("40000", "10", "2016-10-07 16:08:03", "66.249.79.108", "24");
INSERT INTO `wp_gf_form_view` VALUES("40001", "12", "2016-10-07 16:12:19", "157.55.39.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("40002", "3", "2016-10-07 17:09:15", "68.180.230.168", "75");
INSERT INTO `wp_gf_form_view` VALUES("40003", "13", "2016-10-07 17:09:15", "68.180.230.168", "15");
INSERT INTO `wp_gf_form_view` VALUES("40004", "10", "2016-10-07 17:09:15", "68.180.230.168", "60");
INSERT INTO `wp_gf_form_view` VALUES("40005", "1", "2016-10-07 17:20:38", "162.156.84.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("40006", "3", "2016-10-07 18:14:00", "192.243.55.137", "15");
INSERT INTO `wp_gf_form_view` VALUES("40007", "13", "2016-10-07 18:14:00", "192.243.55.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("40008", "10", "2016-10-07 18:14:00", "192.243.55.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("40009", "3", "2016-10-07 19:01:51", "207.46.13.19", "64");
INSERT INTO `wp_gf_form_view` VALUES("40010", "13", "2016-10-07 19:01:52", "207.46.13.19", "12");
INSERT INTO `wp_gf_form_view` VALUES("40011", "10", "2016-10-07 19:01:52", "207.46.13.19", "48");
INSERT INTO `wp_gf_form_view` VALUES("40012", "12", "2016-10-07 19:31:54", "202.46.50.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("40013", "1", "2016-10-07 19:48:58", "23.94.52.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("40014", "3", "2016-10-07 20:15:44", "207.46.13.19", "5");
INSERT INTO `wp_gf_form_view` VALUES("40015", "13", "2016-10-07 20:15:44", "207.46.13.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("40016", "10", "2016-10-07 20:15:44", "207.46.13.19", "4");
INSERT INTO `wp_gf_form_view` VALUES("40017", "10", "2016-10-07 21:23:23", "207.46.13.19", "22");
INSERT INTO `wp_gf_form_view` VALUES("40018", "3", "2016-10-07 21:23:29", "207.46.13.19", "26");
INSERT INTO `wp_gf_form_view` VALUES("40019", "13", "2016-10-07 21:23:29", "207.46.13.19", "5");
INSERT INTO `wp_gf_form_view` VALUES("40020", "3", "2016-10-07 22:20:31", "192.243.55.129", "27");
INSERT INTO `wp_gf_form_view` VALUES("40021", "13", "2016-10-07 22:20:33", "192.243.55.129", "5");
INSERT INTO `wp_gf_form_view` VALUES("40022", "10", "2016-10-07 22:20:33", "192.243.55.129", "21");
INSERT INTO `wp_gf_form_view` VALUES("40023", "3", "2016-10-07 23:33:28", "68.180.230.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("40024", "13", "2016-10-07 23:33:28", "68.180.230.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("40025", "10", "2016-10-07 23:33:28", "68.180.230.168", "8");
INSERT INTO `wp_gf_form_view` VALUES("40026", "10", "2016-10-08 00:39:33", "157.55.39.65", "53");
INSERT INTO `wp_gf_form_view` VALUES("40027", "3", "2016-10-08 00:39:34", "157.55.39.65", "67");
INSERT INTO `wp_gf_form_view` VALUES("40028", "13", "2016-10-08 00:39:35", "157.55.39.65", "13");
INSERT INTO `wp_gf_form_view` VALUES("40029", "3", "2016-10-08 01:31:30", "149.56.135.240", "10");
INSERT INTO `wp_gf_form_view` VALUES("40030", "13", "2016-10-08 01:31:30", "149.56.135.240", "2");
INSERT INTO `wp_gf_form_view` VALUES("40031", "10", "2016-10-08 01:31:30", "149.56.135.240", "8");
INSERT INTO `wp_gf_form_view` VALUES("40032", "3", "2016-10-08 02:08:11", "163.172.66.167", "28");
INSERT INTO `wp_gf_form_view` VALUES("40033", "13", "2016-10-08 02:08:11", "163.172.66.167", "5");
INSERT INTO `wp_gf_form_view` VALUES("40034", "10", "2016-10-08 02:08:11", "163.172.66.167", "20");
INSERT INTO `wp_gf_form_view` VALUES("40035", "3", "2016-10-08 03:39:43", "207.46.13.19", "22");
INSERT INTO `wp_gf_form_view` VALUES("40036", "13", "2016-10-08 03:39:44", "207.46.13.19", "4");
INSERT INTO `wp_gf_form_view` VALUES("40037", "10", "2016-10-08 03:39:44", "207.46.13.19", "16");
INSERT INTO `wp_gf_form_view` VALUES("40038", "3", "2016-10-08 04:04:28", "157.55.39.65", "49");
INSERT INTO `wp_gf_form_view` VALUES("40039", "13", "2016-10-08 04:04:28", "157.55.39.65", "9");
INSERT INTO `wp_gf_form_view` VALUES("40040", "10", "2016-10-08 04:04:28", "157.55.39.65", "36");
INSERT INTO `wp_gf_form_view` VALUES("40041", "13", "2016-10-08 05:07:08", "66.249.79.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("40042", "10", "2016-10-08 05:07:08", "66.249.79.108", "43");
INSERT INTO `wp_gf_form_view` VALUES("40043", "3", "2016-10-08 05:07:08", "66.249.79.108", "49");
INSERT INTO `wp_gf_form_view` VALUES("40044", "9", "2016-10-08 05:19:05", "157.55.39.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("40045", "3", "2016-10-08 06:01:59", "157.55.39.65", "31");
INSERT INTO `wp_gf_form_view` VALUES("40046", "13", "2016-10-08 06:01:59", "157.55.39.65", "6");
INSERT INTO `wp_gf_form_view` VALUES("40047", "10", "2016-10-08 06:02:00", "157.55.39.65", "24");
INSERT INTO `wp_gf_form_view` VALUES("40048", "3", "2016-10-08 07:05:09", "192.243.55.137", "10");
INSERT INTO `wp_gf_form_view` VALUES("40049", "13", "2016-10-08 07:05:09", "192.243.55.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("40050", "10", "2016-10-08 07:05:09", "192.243.55.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("40051", "3", "2016-10-08 08:08:19", "220.181.108.107", "32");
INSERT INTO `wp_gf_form_view` VALUES("40052", "13", "2016-10-08 08:08:19", "220.181.108.107", "6");
INSERT INTO `wp_gf_form_view` VALUES("40053", "10", "2016-10-08 08:08:19", "220.181.108.107", "24");
INSERT INTO `wp_gf_form_view` VALUES("40054", "3", "2016-10-08 09:06:04", "163.172.65.183", "26");
INSERT INTO `wp_gf_form_view` VALUES("40055", "13", "2016-10-08 09:06:04", "163.172.65.183", "5");
INSERT INTO `wp_gf_form_view` VALUES("40056", "10", "2016-10-08 09:06:04", "163.172.65.183", "20");
INSERT INTO `wp_gf_form_view` VALUES("40057", "9", "2016-10-08 09:43:47", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("40058", "3", "2016-10-08 10:54:01", "77.75.76.172", "5");
INSERT INTO `wp_gf_form_view` VALUES("40059", "13", "2016-10-08 10:54:02", "77.75.76.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("40060", "10", "2016-10-08 10:54:02", "77.75.76.172", "4");
INSERT INTO `wp_gf_form_view` VALUES("40061", "3", "2016-10-08 11:01:35", "151.80.31.154", "48");
INSERT INTO `wp_gf_form_view` VALUES("40062", "13", "2016-10-08 11:01:35", "151.80.31.154", "9");
INSERT INTO `wp_gf_form_view` VALUES("40063", "10", "2016-10-08 11:01:35", "151.80.31.154", "37");
INSERT INTO `wp_gf_form_view` VALUES("40064", "11", "2016-10-08 11:11:14", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("40065", "10", "2016-10-08 12:08:28", "157.55.39.26", "37");
INSERT INTO `wp_gf_form_view` VALUES("40066", "3", "2016-10-08 12:08:29", "157.55.39.26", "48");
INSERT INTO `wp_gf_form_view` VALUES("40067", "13", "2016-10-08 12:08:29", "157.55.39.26", "9");
INSERT INTO `wp_gf_form_view` VALUES("40068", "7", "2016-10-08 13:20:22", "157.55.39.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("40069", "3", "2016-10-08 13:20:23", "157.55.39.26", "497");
INSERT INTO `wp_gf_form_view` VALUES("40070", "13", "2016-10-08 13:20:23", "157.55.39.26", "100");
INSERT INTO `wp_gf_form_view` VALUES("40071", "10", "2016-10-08 13:20:23", "157.55.39.26", "388");
INSERT INTO `wp_gf_form_view` VALUES("40072", "2", "2016-10-08 13:53:35", "54.149.128.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("40073", "11", "2016-10-08 13:54:31", "54.149.128.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("40074", "10", "2016-10-08 14:00:14", "194.187.170.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("40075", "3", "2016-10-08 14:00:14", "194.187.170.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("40076", "13", "2016-10-08 14:00:14", "194.187.170.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("40077", "10", "2016-10-08 15:23:33", "164.132.161.75", "10");
INSERT INTO `wp_gf_form_view` VALUES("40078", "3", "2016-10-08 15:23:35", "164.132.161.75", "10");
INSERT INTO `wp_gf_form_view` VALUES("40079", "13", "2016-10-08 15:23:35", "164.132.161.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("40080", "13", "2016-10-08 16:10:31", "207.46.13.19", "3");
INSERT INTO `wp_gf_form_view` VALUES("40081", "3", "2016-10-08 16:10:31", "207.46.13.19", "11");
INSERT INTO `wp_gf_form_view` VALUES("40082", "10", "2016-10-08 16:10:32", "207.46.13.19", "8");
INSERT INTO `wp_gf_form_view` VALUES("40083", "3", "2016-10-08 17:08:04", "66.249.79.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("40084", "13", "2016-10-08 17:08:04", "66.249.79.112", "5");
INSERT INTO `wp_gf_form_view` VALUES("40085", "10", "2016-10-08 17:08:04", "66.249.79.112", "20");
INSERT INTO `wp_gf_form_view` VALUES("40086", "3", "2016-10-08 18:03:30", "68.180.230.168", "42");
INSERT INTO `wp_gf_form_view` VALUES("40087", "13", "2016-10-08 18:03:31", "68.180.230.168", "8");
INSERT INTO `wp_gf_form_view` VALUES("40088", "10", "2016-10-08 18:03:31", "68.180.230.168", "32");
INSERT INTO `wp_gf_form_view` VALUES("40089", "13", "2016-10-08 19:05:02", "220.181.108.122", "8");
INSERT INTO `wp_gf_form_view` VALUES("40090", "3", "2016-10-08 19:05:03", "220.181.108.122", "36");
INSERT INTO `wp_gf_form_view` VALUES("40091", "10", "2016-10-08 19:05:03", "220.181.108.122", "25");
INSERT INTO `wp_gf_form_view` VALUES("40092", "1", "2016-10-08 19:11:49", "104.168.92.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("40093", "3", "2016-10-08 20:21:07", "157.55.39.103", "27");
INSERT INTO `wp_gf_form_view` VALUES("40094", "13", "2016-10-08 20:21:07", "157.55.39.103", "5");
INSERT INTO `wp_gf_form_view` VALUES("40095", "10", "2016-10-08 20:21:07", "157.55.39.103", "20");
INSERT INTO `wp_gf_form_view` VALUES("40096", "3", "2016-10-08 21:02:26", "66.249.79.108", "98");
INSERT INTO `wp_gf_form_view` VALUES("40097", "13", "2016-10-08 21:02:26", "66.249.79.108", "19");
INSERT INTO `wp_gf_form_view` VALUES("40098", "10", "2016-10-08 21:02:26", "66.249.79.108", "77");
INSERT INTO `wp_gf_form_view` VALUES("40099", "1", "2016-10-08 21:16:34", "192.210.195.119", "3");
INSERT INTO `wp_gf_form_view` VALUES("40100", "3", "2016-10-08 22:40:46", "66.249.79.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("40101", "13", "2016-10-08 22:40:47", "66.249.79.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("40102", "10", "2016-10-08 22:40:47", "66.249.79.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("40103", "3", "2016-10-08 23:22:49", "207.46.13.19", "16");
INSERT INTO `wp_gf_form_view` VALUES("40104", "13", "2016-10-08 23:22:49", "207.46.13.19", "3");
INSERT INTO `wp_gf_form_view` VALUES("40105", "10", "2016-10-08 23:22:50", "207.46.13.19", "12");
INSERT INTO `wp_gf_form_view` VALUES("40106", "6", "2016-10-08 23:31:06", "207.46.13.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("40107", "3", "2016-10-09 00:13:18", "40.77.167.94", "31");
INSERT INTO `wp_gf_form_view` VALUES("40108", "13", "2016-10-09 00:31:19", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("40109", "10", "2016-10-09 00:31:19", "66.249.79.104", "24");
INSERT INTO `wp_gf_form_view` VALUES("40110", "3", "2016-10-09 01:02:09", "51.254.32.77", "60");
INSERT INTO `wp_gf_form_view` VALUES("40111", "13", "2016-10-09 01:02:27", "51.254.32.77", "11");
INSERT INTO `wp_gf_form_view` VALUES("40112", "10", "2016-10-09 01:02:27", "51.254.32.77", "44");
INSERT INTO `wp_gf_form_view` VALUES("40113", "3", "2016-10-09 02:22:00", "40.77.167.94", "56");
INSERT INTO `wp_gf_form_view` VALUES("40114", "13", "2016-10-09 02:22:01", "40.77.167.94", "11");
INSERT INTO `wp_gf_form_view` VALUES("40115", "10", "2016-10-09 02:22:01", "40.77.167.94", "44");
INSERT INTO `wp_gf_form_view` VALUES("40116", "1", "2016-10-09 02:45:47", "108.172.100.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("40117", "5", "2016-10-09 03:36:32", "62.210.143.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("40118", "3", "2016-10-09 03:36:33", "62.210.143.245", "22");
INSERT INTO `wp_gf_form_view` VALUES("40119", "13", "2016-10-09 03:36:33", "62.210.143.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("40120", "10", "2016-10-09 03:36:34", "62.210.143.245", "16");
INSERT INTO `wp_gf_form_view` VALUES("40121", "10", "2016-10-09 04:46:17", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("40122", "3", "2016-10-09 04:51:51", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("40123", "13", "2016-10-09 04:51:51", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("40124", "3", "2016-10-09 05:09:31", "66.249.79.104", "25");
INSERT INTO `wp_gf_form_view` VALUES("40125", "13", "2016-10-09 05:09:32", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("40126", "10", "2016-10-09 05:09:32", "66.249.79.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("40127", "10", "2016-10-09 06:04:57", "66.249.79.108", "33");
INSERT INTO `wp_gf_form_view` VALUES("40128", "3", "2016-10-09 06:04:58", "66.249.79.108", "43");
INSERT INTO `wp_gf_form_view` VALUES("40129", "13", "2016-10-09 06:04:58", "66.249.79.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("40130", "3", "2016-10-09 07:11:10", "202.46.56.134", "15");
INSERT INTO `wp_gf_form_view` VALUES("40131", "13", "2016-10-09 07:11:11", "202.46.56.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("40132", "10", "2016-10-09 07:11:11", "202.46.56.134", "12");
INSERT INTO `wp_gf_form_view` VALUES("40133", "3", "2016-10-09 08:00:50", "68.180.230.168", "11");
INSERT INTO `wp_gf_form_view` VALUES("40134", "13", "2016-10-09 08:00:50", "68.180.230.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("40135", "10", "2016-10-09 08:00:50", "68.180.230.168", "8");
INSERT INTO `wp_gf_form_view` VALUES("40136", "3", "2016-10-09 09:01:07", "163.172.66.100", "15");
INSERT INTO `wp_gf_form_view` VALUES("40137", "13", "2016-10-09 09:01:07", "163.172.66.100", "3");
INSERT INTO `wp_gf_form_view` VALUES("40138", "10", "2016-10-09 09:01:07", "163.172.66.100", "12");
INSERT INTO `wp_gf_form_view` VALUES("40139", "3", "2016-10-09 10:00:04", "68.180.230.168", "26");
INSERT INTO `wp_gf_form_view` VALUES("40140", "13", "2016-10-09 10:00:04", "68.180.230.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("40141", "10", "2016-10-09 10:00:04", "68.180.230.168", "22");
INSERT INTO `wp_gf_form_view` VALUES("40142", "1", "2016-10-09 10:30:23", "46.246.43.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("40143", "3", "2016-10-09 11:37:57", "66.249.79.108", "25");
INSERT INTO `wp_gf_form_view` VALUES("40144", "13", "2016-10-09 11:37:57", "66.249.79.108", "5");
INSERT INTO `wp_gf_form_view` VALUES("40145", "10", "2016-10-09 11:37:57", "66.249.79.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("40146", "12", "2016-10-09 11:59:41", "202.46.56.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("40147", "3", "2016-10-09 12:02:13", "51.255.65.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("40148", "13", "2016-10-09 12:02:13", "51.255.65.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("40149", "10", "2016-10-09 12:02:13", "51.255.65.5", "8");
INSERT INTO `wp_gf_form_view` VALUES("40150", "5", "2016-10-09 12:49:24", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("40151", "3", "2016-10-09 13:35:55", "66.249.79.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("40152", "13", "2016-10-09 13:35:55", "66.249.79.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("40153", "10", "2016-10-09 13:35:55", "66.249.79.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("40154", "3", "2016-10-09 14:43:06", "207.46.13.68", "6");
INSERT INTO `wp_gf_form_view` VALUES("40155", "13", "2016-10-09 14:43:07", "207.46.13.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("40156", "10", "2016-10-09 14:43:07", "207.46.13.68", "4");
INSERT INTO `wp_gf_form_view` VALUES("40157", "3", "2016-10-09 15:24:33", "202.46.58.135", "27");
INSERT INTO `wp_gf_form_view` VALUES("40158", "13", "2016-10-09 15:24:33", "202.46.58.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("40159", "10", "2016-10-09 15:24:33", "202.46.58.135", "20");
INSERT INTO `wp_gf_form_view` VALUES("40160", "3", "2016-10-09 16:16:59", "51.255.65.39", "22");
INSERT INTO `wp_gf_form_view` VALUES("40161", "13", "2016-10-09 16:16:59", "51.255.65.39", "4");
INSERT INTO `wp_gf_form_view` VALUES("40162", "10", "2016-10-09 16:16:59", "51.255.65.39", "16");
INSERT INTO `wp_gf_form_view` VALUES("40163", "3", "2016-10-09 17:38:31", "202.46.52.172", "16");
INSERT INTO `wp_gf_form_view` VALUES("40164", "13", "2016-10-09 17:38:33", "202.46.52.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("40165", "10", "2016-10-09 17:38:33", "202.46.52.172", "12");
INSERT INTO `wp_gf_form_view` VALUES("40166", "3", "2016-10-09 18:16:04", "194.187.170.106", "23");
INSERT INTO `wp_gf_form_view` VALUES("40167", "13", "2016-10-09 18:16:04", "194.187.170.106", "4");
INSERT INTO `wp_gf_form_view` VALUES("40168", "10", "2016-10-09 18:16:04", "194.187.170.106", "16");
INSERT INTO `wp_gf_form_view` VALUES("40169", "3", "2016-10-09 19:28:44", "202.46.51.23", "26");
INSERT INTO `wp_gf_form_view` VALUES("40170", "13", "2016-10-09 19:28:44", "202.46.51.23", "7");
INSERT INTO `wp_gf_form_view` VALUES("40171", "10", "2016-10-09 19:28:45", "202.46.51.23", "20");
INSERT INTO `wp_gf_form_view` VALUES("40172", "5", "2016-10-09 19:57:24", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("40173", "3", "2016-10-09 20:10:15", "194.187.170.106", "13");
INSERT INTO `wp_gf_form_view` VALUES("40174", "13", "2016-10-09 20:10:15", "194.187.170.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("40175", "10", "2016-10-09 20:10:15", "194.187.170.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("40176", "3", "2016-10-09 21:10:36", "164.132.161.46", "25");
INSERT INTO `wp_gf_form_view` VALUES("40177", "13", "2016-10-09 21:10:36", "164.132.161.46", "5");
INSERT INTO `wp_gf_form_view` VALUES("40178", "10", "2016-10-09 21:10:36", "164.132.161.46", "20");
INSERT INTO `wp_gf_form_view` VALUES("40179", "3", "2016-10-09 22:09:29", "24.108.185.25", "16");
INSERT INTO `wp_gf_form_view` VALUES("40180", "13", "2016-10-09 22:09:29", "24.108.185.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("40181", "10", "2016-10-09 22:09:29", "24.108.185.25", "12");
INSERT INTO `wp_gf_form_view` VALUES("40182", "3", "2016-10-09 23:02:46", "163.172.64.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("40183", "13", "2016-10-09 23:02:46", "163.172.64.244", "3");
INSERT INTO `wp_gf_form_view` VALUES("40184", "10", "2016-10-09 23:02:46", "163.172.64.244", "12");
INSERT INTO `wp_gf_form_view` VALUES("40185", "3", "2016-10-10 00:10:58", "220.181.108.79", "40");
INSERT INTO `wp_gf_form_view` VALUES("40186", "13", "2016-10-10 00:10:58", "220.181.108.79", "8");
INSERT INTO `wp_gf_form_view` VALUES("40187", "10", "2016-10-10 00:10:58", "220.181.108.79", "32");
INSERT INTO `wp_gf_form_view` VALUES("40188", "3", "2016-10-10 01:41:58", "220.181.108.101", "10");
INSERT INTO `wp_gf_form_view` VALUES("40189", "13", "2016-10-10 01:41:58", "220.181.108.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("40190", "10", "2016-10-10 01:41:58", "220.181.108.101", "8");
INSERT INTO `wp_gf_form_view` VALUES("40191", "3", "2016-10-10 02:13:44", "217.69.133.229", "16");
INSERT INTO `wp_gf_form_view` VALUES("40192", "13", "2016-10-10 02:13:44", "217.69.133.229", "3");
INSERT INTO `wp_gf_form_view` VALUES("40193", "10", "2016-10-10 02:13:44", "217.69.133.229", "12");
INSERT INTO `wp_gf_form_view` VALUES("40194", "3", "2016-10-10 03:06:49", "108.172.100.97", "419");
INSERT INTO `wp_gf_form_view` VALUES("40195", "13", "2016-10-10 03:06:49", "108.172.100.97", "80");
INSERT INTO `wp_gf_form_view` VALUES("40196", "10", "2016-10-10 03:06:49", "108.172.100.97", "321");
INSERT INTO `wp_gf_form_view` VALUES("40197", "9", "2016-10-10 03:49:29", "157.55.39.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("40198", "8", "2016-10-10 03:49:49", "157.55.39.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("40199", "1", "2016-10-10 03:49:54", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("40200", "2", "2016-10-10 03:49:56", "157.55.39.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("40201", "5", "2016-10-10 03:50:40", "40.77.167.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("40202", "6", "2016-10-10 03:51:02", "40.77.167.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("40203", "11", "2016-10-10 03:57:24", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("40204", "3", "2016-10-10 04:02:45", "68.180.230.168", "187");
INSERT INTO `wp_gf_form_view` VALUES("40205", "13", "2016-10-10 04:02:45", "68.180.230.168", "35");
INSERT INTO `wp_gf_form_view` VALUES("40206", "10", "2016-10-10 04:02:45", "68.180.230.168", "130");
INSERT INTO `wp_gf_form_view` VALUES("40207", "9", "2016-10-10 04:28:54", "40.77.167.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("40208", "3", "2016-10-10 05:22:30", "217.69.133.232", "47");
INSERT INTO `wp_gf_form_view` VALUES("40209", "13", "2016-10-10 05:22:31", "217.69.133.232", "9");
INSERT INTO `wp_gf_form_view` VALUES("40210", "10", "2016-10-10 05:22:31", "217.69.133.232", "37");
INSERT INTO `wp_gf_form_view` VALUES("40211", "1", "2016-10-10 05:35:46", "181.174.186.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("40212", "3", "2016-10-10 06:13:03", "202.46.55.88", "47");
INSERT INTO `wp_gf_form_view` VALUES("40213", "13", "2016-10-10 06:13:04", "202.46.55.88", "9");
INSERT INTO `wp_gf_form_view` VALUES("40214", "10", "2016-10-10 06:13:04", "202.46.55.88", "36");
INSERT INTO `wp_gf_form_view` VALUES("40215", "2", "2016-10-10 06:47:53", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("40216", "3", "2016-10-10 07:20:50", "66.249.79.104", "36");
INSERT INTO `wp_gf_form_view` VALUES("40217", "13", "2016-10-10 07:20:51", "66.249.79.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("40218", "10", "2016-10-10 07:20:51", "66.249.79.104", "28");
INSERT INTO `wp_gf_form_view` VALUES("40219", "3", "2016-10-10 08:06:17", "66.249.79.108", "30");
INSERT INTO `wp_gf_form_view` VALUES("40220", "13", "2016-10-10 08:06:17", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("40221", "10", "2016-10-10 08:06:17", "66.249.79.108", "24");
INSERT INTO `wp_gf_form_view` VALUES("40222", "3", "2016-10-10 09:15:25", "66.249.79.112", "30");
INSERT INTO `wp_gf_form_view` VALUES("40223", "13", "2016-10-10 09:15:25", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("40224", "10", "2016-10-10 09:15:25", "66.249.79.112", "24");
INSERT INTO `wp_gf_form_view` VALUES("40225", "3", "2016-10-10 10:04:45", "217.69.133.228", "57");
INSERT INTO `wp_gf_form_view` VALUES("40226", "13", "2016-10-10 10:04:45", "217.69.133.228", "12");
INSERT INTO `wp_gf_form_view` VALUES("40227", "10", "2016-10-10 10:04:45", "217.69.133.228", "52");
INSERT INTO `wp_gf_form_view` VALUES("40228", "3", "2016-10-10 11:38:40", "217.69.133.232", "16");
INSERT INTO `wp_gf_form_view` VALUES("40229", "13", "2016-10-10 11:38:40", "217.69.133.232", "3");
INSERT INTO `wp_gf_form_view` VALUES("40230", "10", "2016-10-10 11:38:40", "217.69.133.232", "12");
INSERT INTO `wp_gf_form_view` VALUES("40231", "3", "2016-10-10 12:02:28", "157.55.39.248", "41");
INSERT INTO `wp_gf_form_view` VALUES("40232", "13", "2016-10-10 12:02:29", "157.55.39.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("40233", "10", "2016-10-10 12:02:29", "157.55.39.248", "32");
INSERT INTO `wp_gf_form_view` VALUES("40234", "3", "2016-10-10 13:12:56", "217.69.133.69", "26");
INSERT INTO `wp_gf_form_view` VALUES("40235", "13", "2016-10-10 13:12:56", "217.69.133.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("40236", "10", "2016-10-10 13:12:56", "217.69.133.69", "20");
INSERT INTO `wp_gf_form_view` VALUES("40237", "3", "2016-10-10 14:33:09", "36.84.1.254", "15");
INSERT INTO `wp_gf_form_view` VALUES("40238", "13", "2016-10-10 14:33:11", "36.84.1.254", "3");
INSERT INTO `wp_gf_form_view` VALUES("40239", "10", "2016-10-10 14:33:11", "36.84.1.254", "12");
INSERT INTO `wp_gf_form_view` VALUES("40240", "3", "2016-10-10 15:40:10", "66.249.79.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("40241", "13", "2016-10-10 15:40:10", "66.249.79.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("40242", "10", "2016-10-10 15:40:10", "66.249.79.108", "16");
INSERT INTO `wp_gf_form_view` VALUES("40243", "3", "2016-10-10 16:06:34", "68.180.230.168", "33");
INSERT INTO `wp_gf_form_view` VALUES("40244", "13", "2016-10-10 16:06:34", "68.180.230.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("40245", "10", "2016-10-10 16:06:34", "68.180.230.168", "24");
INSERT INTO `wp_gf_form_view` VALUES("40246", "5", "2016-10-10 16:13:50", "164.132.161.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("40247", "3", "2016-10-10 17:09:18", "66.249.79.112", "42");
INSERT INTO `wp_gf_form_view` VALUES("40248", "13", "2016-10-10 17:09:19", "66.249.79.112", "8");
INSERT INTO `wp_gf_form_view` VALUES("40249", "10", "2016-10-10 17:09:19", "66.249.79.112", "32");
INSERT INTO `wp_gf_form_view` VALUES("40250", "11", "2016-10-10 17:56:01", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("40251", "2", "2016-10-10 17:56:26", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("40252", "3", "2016-10-10 18:06:00", "144.76.30.236", "34");
INSERT INTO `wp_gf_form_view` VALUES("40253", "13", "2016-10-10 18:30:28", "46.166.162.96", "6");
INSERT INTO `wp_gf_form_view` VALUES("40254", "10", "2016-10-10 18:30:28", "46.166.162.96", "24");
INSERT INTO `wp_gf_form_view` VALUES("40255", "3", "2016-10-10 19:03:14", "70.67.120.74", "10");
INSERT INTO `wp_gf_form_view` VALUES("40256", "13", "2016-10-10 19:03:14", "70.67.120.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("40257", "10", "2016-10-10 19:03:14", "70.67.120.74", "8");
INSERT INTO `wp_gf_form_view` VALUES("40258", "3", "2016-10-10 21:04:22", "217.69.133.69", "30");
INSERT INTO `wp_gf_form_view` VALUES("40259", "13", "2016-10-10 21:04:24", "217.69.133.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("40260", "10", "2016-10-10 21:04:24", "217.69.133.69", "24");
INSERT INTO `wp_gf_form_view` VALUES("40261", "3", "2016-10-10 22:16:43", "68.180.230.168", "35");
INSERT INTO `wp_gf_form_view` VALUES("40262", "13", "2016-10-10 22:16:45", "68.180.230.168", "7");
INSERT INTO `wp_gf_form_view` VALUES("40263", "10", "2016-10-10 22:16:45", "68.180.230.168", "29");
INSERT INTO `wp_gf_form_view` VALUES("40264", "1", "2016-10-10 22:37:54", "96.50.19.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("40265", "3", "2016-10-10 23:04:51", "77.75.76.161", "37");
INSERT INTO `wp_gf_form_view` VALUES("40266", "13", "2016-10-10 23:04:51", "77.75.76.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("40267", "10", "2016-10-10 23:04:51", "77.75.76.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("40268", "12", "2016-10-10 23:28:04", "157.55.39.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("40269", "9", "2016-10-10 23:31:31", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("40270", "3", "2016-10-11 00:12:06", "217.69.133.69", "27");
INSERT INTO `wp_gf_form_view` VALUES("40271", "13", "2016-10-11 00:12:08", "217.69.133.69", "7");
INSERT INTO `wp_gf_form_view` VALUES("40272", "10", "2016-10-11 00:12:08", "217.69.133.69", "21");
INSERT INTO `wp_gf_form_view` VALUES("40273", "5", "2016-10-11 00:50:14", "62.210.97.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("40274", "13", "2016-10-11 01:15:31", "194.187.170.143", "13");
INSERT INTO `wp_gf_form_view` VALUES("40275", "3", "2016-10-11 01:41:51", "24.68.30.24", "61");
INSERT INTO `wp_gf_form_view` VALUES("40276", "10", "2016-10-11 01:41:51", "24.68.30.24", "48");
INSERT INTO `wp_gf_form_view` VALUES("40277", "1", "2016-10-11 01:47:24", "24.68.30.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("40278", "3", "2016-10-11 02:00:36", "194.187.170.143", "22");
INSERT INTO `wp_gf_form_view` VALUES("40279", "13", "2016-10-11 02:13:31", "173.252.90.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("40280", "10", "2016-10-11 02:13:31", "173.252.90.116", "16");
INSERT INTO `wp_gf_form_view` VALUES("40281", "3", "2016-10-11 03:08:38", "66.249.79.104", "12");
INSERT INTO `wp_gf_form_view` VALUES("40282", "13", "2016-10-11 03:08:39", "66.249.79.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("40283", "10", "2016-10-11 03:08:39", "66.249.79.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("40284", "3", "2016-10-11 04:09:52", "157.55.39.18", "61");
INSERT INTO `wp_gf_form_view` VALUES("40285", "13", "2016-10-11 04:09:52", "157.55.39.18", "11");
INSERT INTO `wp_gf_form_view` VALUES("40286", "10", "2016-10-11 04:09:52", "157.55.39.18", "40");
INSERT INTO `wp_gf_form_view` VALUES("40287", "3", "2016-10-11 05:08:31", "77.75.78.172", "11");
INSERT INTO `wp_gf_form_view` VALUES("40288", "13", "2016-10-11 05:08:31", "77.75.78.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("40289", "10", "2016-10-11 05:08:31", "77.75.78.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("40290", "3", "2016-10-11 06:02:09", "202.46.53.64", "193");
INSERT INTO `wp_gf_form_view` VALUES("40291", "13", "2016-10-11 06:02:10", "202.46.53.64", "39");
INSERT INTO `wp_gf_form_view` VALUES("40292", "10", "2016-10-11 06:02:10", "202.46.53.64", "153");
INSERT INTO `wp_gf_form_view` VALUES("40293", "11", "2016-10-11 06:35:49", "192.99.30.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("40294", "2", "2016-10-11 06:35:52", "192.99.30.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("40295", "3", "2016-10-11 07:04:20", "77.75.76.160", "35");
INSERT INTO `wp_gf_form_view` VALUES("40296", "13", "2016-10-11 07:04:20", "77.75.76.160", "7");
INSERT INTO `wp_gf_form_view` VALUES("40297", "10", "2016-10-11 07:04:20", "77.75.76.160", "28");
INSERT INTO `wp_gf_form_view` VALUES("40298", "3", "2016-10-11 08:02:50", "217.69.133.233", "5");
INSERT INTO `wp_gf_form_view` VALUES("40299", "13", "2016-10-11 08:02:51", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("40300", "10", "2016-10-11 08:02:51", "217.69.133.233", "4");
INSERT INTO `wp_gf_form_view` VALUES("40301", "3", "2016-10-11 09:26:00", "46.4.123.172", "30");
INSERT INTO `wp_gf_form_view` VALUES("40302", "13", "2016-10-11 09:26:00", "46.4.123.172", "6");
INSERT INTO `wp_gf_form_view` VALUES("40303", "10", "2016-10-11 09:26:01", "46.4.123.172", "25");
INSERT INTO `wp_gf_form_view` VALUES("40304", "3", "2016-10-11 10:10:18", "194.187.170.148", "17");
INSERT INTO `wp_gf_form_view` VALUES("40305", "13", "2016-10-11 10:10:19", "194.187.170.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("40306", "10", "2016-10-11 10:10:19", "194.187.170.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("40307", "3", "2016-10-11 11:02:30", "40.77.167.7", "140");
INSERT INTO `wp_gf_form_view` VALUES("40308", "13", "2016-10-11 11:02:30", "40.77.167.7", "28");
INSERT INTO `wp_gf_form_view` VALUES("40309", "10", "2016-10-11 11:02:30", "40.77.167.7", "108");
INSERT INTO `wp_gf_form_view` VALUES("40310", "2", "2016-10-11 11:49:32", "104.236.194.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("40311", "11", "2016-10-11 11:49:33", "104.236.194.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("40312", "13", "2016-10-11 12:17:55", "157.55.39.35", "5");
INSERT INTO `wp_gf_form_view` VALUES("40313", "10", "2016-10-11 12:17:55", "157.55.39.35", "23");
INSERT INTO `wp_gf_form_view` VALUES("40314", "3", "2016-10-11 12:17:55", "157.55.39.35", "22");
INSERT INTO `wp_gf_form_view` VALUES("40315", "3", "2016-10-11 13:26:15", "157.55.39.35", "42");
INSERT INTO `wp_gf_form_view` VALUES("40316", "1", "2016-10-11 13:44:17", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("40317", "13", "2016-10-11 13:44:18", "68.180.230.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("40318", "10", "2016-10-11 13:44:18", "68.180.230.168", "42");
INSERT INTO `wp_gf_form_view` VALUES("40319", "10", "2016-10-11 14:02:29", "157.55.39.156", "17");
INSERT INTO `wp_gf_form_view` VALUES("40320", "3", "2016-10-11 14:02:29", "157.55.39.156", "21");
INSERT INTO `wp_gf_form_view` VALUES("40321", "13", "2016-10-11 14:02:29", "157.55.39.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("40322", "3", "2016-10-11 15:07:01", "202.46.51.20", "52");
INSERT INTO `wp_gf_form_view` VALUES("40323", "13", "2016-10-11 15:07:01", "202.46.51.20", "10");
INSERT INTO `wp_gf_form_view` VALUES("40324", "10", "2016-10-11 15:07:01", "202.46.51.20", "41");
INSERT INTO `wp_gf_form_view` VALUES("40325", "3", "2016-10-11 16:13:58", "202.46.49.131", "26");
INSERT INTO `wp_gf_form_view` VALUES("40326", "13", "2016-10-11 16:13:58", "202.46.49.131", "5");
INSERT INTO `wp_gf_form_view` VALUES("40327", "10", "2016-10-11 16:13:58", "202.46.49.131", "20");
INSERT INTO `wp_gf_form_view` VALUES("40328", "3", "2016-10-11 17:20:57", "202.46.48.84", "33");
INSERT INTO `wp_gf_form_view` VALUES("40329", "13", "2016-10-11 17:20:57", "202.46.48.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("40330", "10", "2016-10-11 17:20:58", "202.46.48.84", "24");
INSERT INTO `wp_gf_form_view` VALUES("40331", "1", "2016-10-11 17:25:26", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("40332", "3", "2016-10-11 18:06:54", "157.55.39.156", "66");
INSERT INTO `wp_gf_form_view` VALUES("40333", "13", "2016-10-11 18:06:54", "157.55.39.156", "13");
INSERT INTO `wp_gf_form_view` VALUES("40334", "10", "2016-10-11 18:06:54", "157.55.39.156", "47");
INSERT INTO `wp_gf_form_view` VALUES("40335", "3", "2016-10-11 19:08:43", "157.55.39.156", "50");
INSERT INTO `wp_gf_form_view` VALUES("40336", "13", "2016-10-11 19:08:43", "157.55.39.156", "10");
INSERT INTO `wp_gf_form_view` VALUES("40337", "10", "2016-10-11 19:08:43", "157.55.39.156", "41");
INSERT INTO `wp_gf_form_view` VALUES("40338", "1", "2016-10-11 20:00:28", "24.108.185.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("40339", "3", "2016-10-11 20:00:28", "24.108.185.106", "61");
INSERT INTO `wp_gf_form_view` VALUES("40340", "13", "2016-10-11 20:00:28", "24.108.185.106", "13");
INSERT INTO `wp_gf_form_view` VALUES("40341", "10", "2016-10-11 20:00:28", "24.108.185.106", "48");
INSERT INTO `wp_gf_form_view` VALUES("40342", "3", "2016-10-11 21:00:31", "77.75.79.36", "57");
INSERT INTO `wp_gf_form_view` VALUES("40343", "13", "2016-10-11 21:00:31", "77.75.79.36", "11");
INSERT INTO `wp_gf_form_view` VALUES("40344", "10", "2016-10-11 21:00:31", "77.75.79.36", "45");
INSERT INTO `wp_gf_form_view` VALUES("40345", "3", "2016-10-11 22:03:17", "77.75.79.72", "23");
INSERT INTO `wp_gf_form_view` VALUES("40346", "13", "2016-10-11 22:03:17", "77.75.79.72", "5");
INSERT INTO `wp_gf_form_view` VALUES("40347", "10", "2016-10-11 22:03:17", "77.75.79.72", "23");
INSERT INTO `wp_gf_form_view` VALUES("40348", "3", "2016-10-11 23:05:17", "77.75.76.169", "46");
INSERT INTO `wp_gf_form_view` VALUES("40349", "13", "2016-10-11 23:05:18", "77.75.76.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("40350", "10", "2016-10-11 23:05:18", "77.75.76.169", "32");
INSERT INTO `wp_gf_form_view` VALUES("40351", "3", "2016-10-12 00:15:41", "77.75.79.101", "64");
INSERT INTO `wp_gf_form_view` VALUES("40352", "13", "2016-10-12 00:15:42", "77.75.79.101", "12");
INSERT INTO `wp_gf_form_view` VALUES("40353", "10", "2016-10-12 00:15:42", "77.75.79.101", "49");
INSERT INTO `wp_gf_form_view` VALUES("40354", "1", "2016-10-12 01:03:33", "113.161.68.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("40355", "3", "2016-10-12 01:03:33", "113.161.68.146", "76");
INSERT INTO `wp_gf_form_view` VALUES("40356", "13", "2016-10-12 01:03:33", "113.161.68.146", "15");
INSERT INTO `wp_gf_form_view` VALUES("40357", "10", "2016-10-12 01:03:33", "113.161.68.146", "63");
INSERT INTO `wp_gf_form_view` VALUES("40358", "10", "2016-10-12 02:08:57", "207.46.13.60", "54");
INSERT INTO `wp_gf_form_view` VALUES("40359", "3", "2016-10-12 02:08:57", "207.46.13.60", "67");
INSERT INTO `wp_gf_form_view` VALUES("40360", "13", "2016-10-12 02:08:57", "207.46.13.60", "13");
INSERT INTO `wp_gf_form_view` VALUES("40361", "1", "2016-10-12 02:51:30", "12.205.66.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("40362", "3", "2016-10-12 03:00:04", "69.165.253.145", "143");
INSERT INTO `wp_gf_form_view` VALUES("40363", "13", "2016-10-12 03:00:04", "69.165.253.145", "29");
INSERT INTO `wp_gf_form_view` VALUES("40364", "10", "2016-10-12 03:00:05", "69.165.253.145", "114");
INSERT INTO `wp_gf_form_view` VALUES("40365", "5", "2016-10-12 03:26:12", "77.75.79.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("40366", "3", "2016-10-12 04:13:38", "157.55.39.156", "42");
INSERT INTO `wp_gf_form_view` VALUES("40367", "13", "2016-10-12 04:13:44", "157.55.39.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("40368", "10", "2016-10-12 04:13:44", "157.55.39.156", "28");
INSERT INTO `wp_gf_form_view` VALUES("40369", "3", "2016-10-12 05:01:04", "40.77.167.67", "136");
INSERT INTO `wp_gf_form_view` VALUES("40370", "13", "2016-10-12 05:01:04", "40.77.167.67", "27");
INSERT INTO `wp_gf_form_view` VALUES("40371", "10", "2016-10-12 05:01:04", "40.77.167.67", "109");
INSERT INTO `wp_gf_form_view` VALUES("40372", "2", "2016-10-12 05:58:25", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("40373", "3", "2016-10-12 06:00:17", "72.76.221.220", "887");
INSERT INTO `wp_gf_form_view` VALUES("40374", "13", "2016-10-12 06:00:17", "72.76.221.220", "178");
INSERT INTO `wp_gf_form_view` VALUES("40375", "10", "2016-10-12 06:00:17", "72.76.221.220", "698");
INSERT INTO `wp_gf_form_view` VALUES("40376", "7", "2016-10-12 06:00:55", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("40377", "11", "2016-10-12 06:01:30", "72.76.221.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("40378", "1", "2016-10-12 06:01:40", "72.76.221.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("40379", "5", "2016-10-12 06:02:20", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("40380", "2", "2016-10-12 06:04:43", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("40381", "8", "2016-10-12 06:12:52", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("40382", "9", "2016-10-12 06:13:05", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("40383", "6", "2016-10-12 06:13:15", "72.76.221.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("40384", "6", "2016-10-12 07:14:49", "202.46.53.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("40385", "3", "2016-10-12 07:14:50", "202.46.53.196", "182");
INSERT INTO `wp_gf_form_view` VALUES("40386", "13", "2016-10-12 07:14:50", "202.46.53.196", "36");
INSERT INTO `wp_gf_form_view` VALUES("40387", "10", "2016-10-12 07:14:50", "202.46.53.196", "144");
INSERT INTO `wp_gf_form_view` VALUES("40388", "11", "2016-10-12 07:15:47", "62.141.38.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("40389", "2", "2016-10-12 07:16:35", "62.141.38.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("40390", "3", "2016-10-12 08:01:52", "157.55.39.35", "32");
INSERT INTO `wp_gf_form_view` VALUES("40391", "13", "2016-10-12 08:01:52", "157.55.39.35", "6");
INSERT INTO `wp_gf_form_view` VALUES("40392", "10", "2016-10-12 08:01:52", "157.55.39.35", "24");
INSERT INTO `wp_gf_form_view` VALUES("40393", "3", "2016-10-12 09:02:40", "86.92.137.47", "161");
INSERT INTO `wp_gf_form_view` VALUES("40394", "13", "2016-10-12 09:02:40", "86.92.137.47", "32");
INSERT INTO `wp_gf_form_view` VALUES("40395", "10", "2016-10-12 09:02:40", "86.92.137.47", "128");
INSERT INTO `wp_gf_form_view` VALUES("40396", "11", "2016-10-12 09:02:43", "86.92.137.47", "2");
INSERT INTO `wp_gf_form_view` VALUES("40397", "2", "2016-10-12 09:03:36", "86.92.137.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("40398", "3", "2016-10-12 10:04:51", "157.55.39.35", "50");
INSERT INTO `wp_gf_form_view` VALUES("40399", "13", "2016-10-12 10:04:51", "157.55.39.35", "10");
INSERT INTO `wp_gf_form_view` VALUES("40400", "10", "2016-10-12 10:04:51", "157.55.39.35", "43");
INSERT INTO `wp_gf_form_view` VALUES("40401", "12", "2016-10-12 10:48:56", "157.55.39.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("40402", "3", "2016-10-12 11:03:28", "66.249.79.112", "36");
INSERT INTO `wp_gf_form_view` VALUES("40403", "13", "2016-10-12 11:03:28", "66.249.79.112", "7");
INSERT INTO `wp_gf_form_view` VALUES("40404", "10", "2016-10-12 11:03:28", "66.249.79.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("40405", "3", "2016-10-12 12:02:12", "198.166.214.5", "63");
INSERT INTO `wp_gf_form_view` VALUES("40406", "13", "2016-10-12 12:02:12", "198.166.214.5", "12");
INSERT INTO `wp_gf_form_view` VALUES("40407", "10", "2016-10-12 12:02:12", "198.166.214.5", "48");
INSERT INTO `wp_gf_form_view` VALUES("40408", "3", "2016-10-12 13:09:35", "157.55.39.27", "20");
INSERT INTO `wp_gf_form_view` VALUES("40409", "10", "2016-10-12 13:29:28", "157.55.39.35", "13");
INSERT INTO `wp_gf_form_view` VALUES("40410", "13", "2016-10-12 13:29:28", "157.55.39.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("40411", "3", "2016-10-12 14:05:58", "66.249.79.104", "36");
INSERT INTO `wp_gf_form_view` VALUES("40412", "13", "2016-10-12 14:05:58", "66.249.79.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("40413", "10", "2016-10-12 14:05:59", "66.249.79.104", "28");
INSERT INTO `wp_gf_form_view` VALUES("40414", "3", "2016-10-12 15:00:17", "157.55.39.27", "76");
INSERT INTO `wp_gf_form_view` VALUES("40415", "13", "2016-10-12 15:00:17", "157.55.39.27", "15");
INSERT INTO `wp_gf_form_view` VALUES("40416", "10", "2016-10-12 15:00:17", "157.55.39.27", "61");
INSERT INTO `wp_gf_form_view` VALUES("40417", "2", "2016-10-12 15:38:23", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("40418", "6", "2016-10-12 15:52:25", "157.55.39.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("40419", "3", "2016-10-12 16:16:01", "184.66.135.78", "66");
INSERT INTO `wp_gf_form_view` VALUES("40420", "13", "2016-10-12 16:16:03", "184.66.135.78", "13");
INSERT INTO `wp_gf_form_view` VALUES("40421", "10", "2016-10-12 16:16:03", "184.66.135.78", "52");
INSERT INTO `wp_gf_form_view` VALUES("40422", "1", "2016-10-12 16:23:59", "184.66.135.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("40423", "3", "2016-10-12 17:01:57", "157.55.39.27", "77");
INSERT INTO `wp_gf_form_view` VALUES("40424", "13", "2016-10-12 17:01:57", "157.55.39.27", "15");
INSERT INTO `wp_gf_form_view` VALUES("40425", "10", "2016-10-12 17:01:57", "157.55.39.27", "60");
INSERT INTO `wp_gf_form_view` VALUES("40426", "2", "2016-10-12 17:35:32", "88.198.208.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("40427", "3", "2016-10-12 18:08:56", "157.55.39.27", "46");
INSERT INTO `wp_gf_form_view` VALUES("40428", "13", "2016-10-12 18:08:56", "157.55.39.27", "9");
INSERT INTO `wp_gf_form_view` VALUES("40429", "10", "2016-10-12 18:08:56", "157.55.39.27", "36");
INSERT INTO `wp_gf_form_view` VALUES("40430", "3", "2016-10-12 19:05:58", "202.46.54.161", "25");
INSERT INTO `wp_gf_form_view` VALUES("40431", "13", "2016-10-12 19:05:58", "202.46.54.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("40432", "10", "2016-10-12 19:05:58", "202.46.54.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("40433", "13", "2016-10-12 20:03:40", "24.69.69.178", "17");
INSERT INTO `wp_gf_form_view` VALUES("40434", "3", "2016-10-12 20:03:41", "24.69.69.178", "73");
INSERT INTO `wp_gf_form_view` VALUES("40435", "10", "2016-10-12 20:03:41", "24.69.69.178", "53");
INSERT INTO `wp_gf_form_view` VALUES("40436", "3", "2016-10-12 21:06:25", "157.55.39.35", "32");
INSERT INTO `wp_gf_form_view` VALUES("40437", "13", "2016-10-12 21:06:25", "157.55.39.35", "6");
INSERT INTO `wp_gf_form_view` VALUES("40438", "10", "2016-10-12 21:06:25", "157.55.39.35", "25");
INSERT INTO `wp_gf_form_view` VALUES("40439", "2", "2016-10-12 21:42:51", "220.181.108.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("40440", "3", "2016-10-12 22:05:50", "207.46.13.29", "31");
INSERT INTO `wp_gf_form_view` VALUES("40441", "13", "2016-10-12 22:05:51", "207.46.13.29", "6");
INSERT INTO `wp_gf_form_view` VALUES("40442", "10", "2016-10-12 22:05:51", "207.46.13.29", "24");
INSERT INTO `wp_gf_form_view` VALUES("40443", "1", "2016-10-12 22:50:24", "24.69.140.243", "2");
INSERT INTO `wp_gf_form_view` VALUES("40444", "3", "2016-10-12 23:22:03", "24.68.227.211", "31");
INSERT INTO `wp_gf_form_view` VALUES("40445", "13", "2016-10-12 23:22:03", "24.68.227.211", "6");
INSERT INTO `wp_gf_form_view` VALUES("40446", "10", "2016-10-12 23:22:03", "24.68.227.211", "25");
INSERT INTO `wp_gf_form_view` VALUES("40447", "1", "2016-10-12 23:23:28", "24.68.227.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("40448", "3", "2016-10-13 00:15:17", "51.255.66.146", "37");
INSERT INTO `wp_gf_form_view` VALUES("40449", "13", "2016-10-13 00:15:17", "51.255.66.146", "8");
INSERT INTO `wp_gf_form_view` VALUES("40450", "10", "2016-10-13 00:15:17", "51.255.66.146", "36");
INSERT INTO `wp_gf_form_view` VALUES("40451", "3", "2016-10-13 01:04:09", "157.55.39.156", "144");
INSERT INTO `wp_gf_form_view` VALUES("40452", "13", "2016-10-13 01:04:09", "157.55.39.156", "28");
INSERT INTO `wp_gf_form_view` VALUES("40453", "10", "2016-10-13 01:04:09", "157.55.39.156", "112");
INSERT INTO `wp_gf_form_view` VALUES("40454", "1", "2016-10-13 01:34:16", "113.255.210.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("40455", "3", "2016-10-13 02:08:52", "77.75.76.161", "57");
INSERT INTO `wp_gf_form_view` VALUES("40456", "13", "2016-10-13 02:08:52", "77.75.76.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("40457", "10", "2016-10-13 02:08:52", "77.75.76.161", "44");
INSERT INTO `wp_gf_form_view` VALUES("40458", "3", "2016-10-13 03:16:06", "157.55.39.156", "10");
INSERT INTO `wp_gf_form_view` VALUES("40459", "13", "2016-10-13 03:16:06", "157.55.39.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("40460", "10", "2016-10-13 03:16:06", "157.55.39.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("40461", "3", "2016-10-13 04:04:38", "77.75.78.163", "47");
INSERT INTO `wp_gf_form_view` VALUES("40462", "13", "2016-10-13 04:04:38", "77.75.78.163", "11");
INSERT INTO `wp_gf_form_view` VALUES("40463", "10", "2016-10-13 04:04:38", "77.75.78.163", "40");
INSERT INTO `wp_gf_form_view` VALUES("40464", "1", "2016-10-13 04:20:28", "178.32.12.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("40465", "3", "2016-10-13 05:00:08", "77.75.78.171", "25");
INSERT INTO `wp_gf_form_view` VALUES("40466", "13", "2016-10-13 05:00:08", "77.75.78.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("40467", "10", "2016-10-13 05:00:08", "77.75.78.171", "20");
INSERT INTO `wp_gf_form_view` VALUES("40468", "3", "2016-10-13 06:02:17", "157.55.39.156", "41");
INSERT INTO `wp_gf_form_view` VALUES("40469", "13", "2016-10-13 06:02:18", "157.55.39.156", "10");
INSERT INTO `wp_gf_form_view` VALUES("40470", "10", "2016-10-13 06:02:18", "157.55.39.156", "32");
INSERT INTO `wp_gf_form_view` VALUES("40471", "8", "2016-10-13 06:27:21", "157.55.39.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("40472", "3", "2016-10-13 07:04:03", "157.55.39.35", "55");
INSERT INTO `wp_gf_form_view` VALUES("40473", "13", "2016-10-13 07:04:03", "157.55.39.35", "11");
INSERT INTO `wp_gf_form_view` VALUES("40474", "10", "2016-10-13 07:04:03", "157.55.39.35", "45");
INSERT INTO `wp_gf_form_view` VALUES("40475", "1", "2016-10-13 07:09:31", "208.99.185.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("40476", "3", "2016-10-13 08:14:04", "157.55.39.27", "69");
INSERT INTO `wp_gf_form_view` VALUES("40477", "13", "2016-10-13 08:14:04", "157.55.39.27", "14");
INSERT INTO `wp_gf_form_view` VALUES("40478", "10", "2016-10-13 08:14:04", "157.55.39.27", "52");
INSERT INTO `wp_gf_form_view` VALUES("40479", "3", "2016-10-13 09:47:40", "192.243.55.129", "10");
INSERT INTO `wp_gf_form_view` VALUES("40480", "13", "2016-10-13 09:47:42", "192.243.55.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("40481", "10", "2016-10-13 09:47:42", "192.243.55.129", "9");
INSERT INTO `wp_gf_form_view` VALUES("40482", "3", "2016-10-13 10:17:25", "157.55.39.27", "38");
INSERT INTO `wp_gf_form_view` VALUES("40483", "13", "2016-10-13 10:17:25", "157.55.39.27", "7");
INSERT INTO `wp_gf_form_view` VALUES("40484", "10", "2016-10-13 10:17:25", "157.55.39.27", "30");
INSERT INTO `wp_gf_form_view` VALUES("40485", "11", "2016-10-13 10:58:10", "157.55.39.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("40486", "3", "2016-10-13 12:09:52", "204.79.180.17", "23");
INSERT INTO `wp_gf_form_view` VALUES("40487", "13", "2016-10-13 12:09:52", "204.79.180.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("40488", "10", "2016-10-13 12:09:53", "204.79.180.17", "16");
INSERT INTO `wp_gf_form_view` VALUES("40489", "13", "2016-10-13 13:09:09", "66.249.79.112", "11");
INSERT INTO `wp_gf_form_view` VALUES("40490", "3", "2016-10-13 13:09:09", "66.249.79.112", "51");
INSERT INTO `wp_gf_form_view` VALUES("40491", "10", "2016-10-13 13:09:09", "66.249.79.112", "36");
INSERT INTO `wp_gf_form_view` VALUES("40492", "3", "2016-10-13 14:00:56", "157.55.39.156", "139");
INSERT INTO `wp_gf_form_view` VALUES("40493", "13", "2016-10-13 14:00:57", "157.55.39.156", "28");
INSERT INTO `wp_gf_form_view` VALUES("40494", "10", "2016-10-13 14:00:57", "157.55.39.156", "108");
INSERT INTO `wp_gf_form_view` VALUES("40495", "11", "2016-10-13 14:24:24", "104.236.244.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("40496", "2", "2016-10-13 14:24:25", "104.236.244.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("40497", "3", "2016-10-13 15:18:45", "202.46.48.190", "52");
INSERT INTO `wp_gf_form_view` VALUES("40498", "13", "2016-10-13 15:18:45", "202.46.48.190", "10");
INSERT INTO `wp_gf_form_view` VALUES("40499", "10", "2016-10-13 15:18:46", "202.46.48.190", "42");
INSERT INTO `wp_gf_form_view` VALUES("40500", "10", "2016-10-13 16:32:28", "192.243.55.137", "23");
INSERT INTO `wp_gf_form_view` VALUES("40501", "3", "2016-10-13 16:32:28", "192.243.55.137", "25");
INSERT INTO `wp_gf_form_view` VALUES("40502", "13", "2016-10-13 16:32:28", "192.243.55.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("40503", "3", "2016-10-13 17:01:48", "157.55.39.217", "44");
INSERT INTO `wp_gf_form_view` VALUES("40504", "13", "2016-10-13 17:01:48", "157.55.39.217", "9");
INSERT INTO `wp_gf_form_view` VALUES("40505", "10", "2016-10-13 17:01:48", "157.55.39.217", "42");
INSERT INTO `wp_gf_form_view` VALUES("40506", "13", "2016-10-13 18:06:39", "68.180.230.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("40507", "3", "2016-10-13 18:11:26", "157.55.39.222", "40");
INSERT INTO `wp_gf_form_view` VALUES("40508", "10", "2016-10-13 18:11:26", "157.55.39.222", "32");
INSERT INTO `wp_gf_form_view` VALUES("40509", "3", "2016-10-13 19:00:16", "157.55.39.156", "115");
INSERT INTO `wp_gf_form_view` VALUES("40510", "13", "2016-10-13 19:00:16", "157.55.39.156", "23");
INSERT INTO `wp_gf_form_view` VALUES("40511", "10", "2016-10-13 19:00:16", "157.55.39.156", "90");
INSERT INTO `wp_gf_form_view` VALUES("40512", "3", "2016-10-13 20:10:44", "157.55.39.156", "33");
INSERT INTO `wp_gf_form_view` VALUES("40513", "13", "2016-10-13 20:10:44", "157.55.39.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("40514", "10", "2016-10-13 20:10:44", "157.55.39.156", "31");
INSERT INTO `wp_gf_form_view` VALUES("40515", "1", "2016-10-13 20:40:41", "87.202.164.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("40516", "3", "2016-10-13 21:05:29", "157.55.39.217", "44");
INSERT INTO `wp_gf_form_view` VALUES("40517", "13", "2016-10-13 21:24:25", "40.77.167.27", "8");
INSERT INTO `wp_gf_form_view` VALUES("40518", "10", "2016-10-13 21:24:25", "40.77.167.27", "32");
INSERT INTO `wp_gf_form_view` VALUES("40519", "3", "2016-10-13 22:22:29", "24.69.72.172", "187");
INSERT INTO `wp_gf_form_view` VALUES("40520", "13", "2016-10-13 22:22:30", "24.69.72.172", "37");
INSERT INTO `wp_gf_form_view` VALUES("40521", "10", "2016-10-13 22:22:30", "24.69.72.172", "148");
INSERT INTO `wp_gf_form_view` VALUES("40522", "11", "2016-10-13 22:23:43", "89.123.19.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("40523", "2", "2016-10-13 22:24:42", "89.123.19.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("40524", "3", "2016-10-13 23:04:33", "192.243.55.130", "31");
INSERT INTO `wp_gf_form_view` VALUES("40525", "13", "2016-10-13 23:04:33", "192.243.55.130", "6");
INSERT INTO `wp_gf_form_view` VALUES("40526", "10", "2016-10-13 23:04:33", "192.243.55.130", "25");
INSERT INTO `wp_gf_form_view` VALUES("40527", "9", "2016-10-13 23:23:27", "157.55.39.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("40528", "3", "2016-10-14 00:00:44", "40.77.167.27", "61");
INSERT INTO `wp_gf_form_view` VALUES("40529", "13", "2016-10-14 00:00:44", "40.77.167.27", "12");
INSERT INTO `wp_gf_form_view` VALUES("40530", "10", "2016-10-14 00:00:44", "40.77.167.27", "49");
INSERT INTO `wp_gf_form_view` VALUES("40531", "1", "2016-10-14 00:04:44", "24.68.152.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("40532", "3", "2016-10-14 01:09:48", "24.70.50.66", "42");
INSERT INTO `wp_gf_form_view` VALUES("40533", "13", "2016-10-14 01:09:48", "24.70.50.66", "8");
INSERT INTO `wp_gf_form_view` VALUES("40534", "10", "2016-10-14 01:09:48", "24.70.50.66", "32");
INSERT INTO `wp_gf_form_view` VALUES("40535", "12", "2016-10-14 01:45:52", "68.180.230.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("40536", "3", "2016-10-14 02:15:42", "66.249.79.104", "44");
INSERT INTO `wp_gf_form_view` VALUES("40537", "13", "2016-10-14 02:15:42", "66.249.79.104", "8");
INSERT INTO `wp_gf_form_view` VALUES("40538", "10", "2016-10-14 02:15:42", "66.249.79.104", "32");
INSERT INTO `wp_gf_form_view` VALUES("40539", "1", "2016-10-14 02:22:02", "123.16.189.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("40540", "3", "2016-10-14 03:33:59", "202.46.51.163", "37");
INSERT INTO `wp_gf_form_view` VALUES("40541", "13", "2016-10-14 03:33:59", "202.46.51.163", "7");
INSERT INTO `wp_gf_form_view` VALUES("40542", "10", "2016-10-14 03:33:59", "202.46.51.163", "28");
INSERT INTO `wp_gf_form_view` VALUES("40543", "3", "2016-10-14 04:00:02", "192.243.55.134", "12");
INSERT INTO `wp_gf_form_view` VALUES("40544", "13", "2016-10-14 04:00:03", "192.243.55.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("40545", "10", "2016-10-14 04:00:03", "192.243.55.134", "8");
INSERT INTO `wp_gf_form_view` VALUES("40546", "13", "2016-10-14 05:01:13", "202.46.58.95", "41");
INSERT INTO `wp_gf_form_view` VALUES("40547", "10", "2016-10-14 05:01:17", "202.46.58.95", "161");
INSERT INTO `wp_gf_form_view` VALUES("40548", "3", "2016-10-14 05:01:18", "202.46.58.95", "204");
INSERT INTO `wp_gf_form_view` VALUES("40549", "2", "2016-10-14 05:30:24", "157.55.39.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("40550", "11", "2016-10-14 05:41:09", "157.55.39.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("40551", "13", "2016-10-14 06:07:23", "192.243.55.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("40552", "3", "2016-10-14 06:07:23", "192.243.55.134", "59");
INSERT INTO `wp_gf_form_view` VALUES("40553", "10", "2016-10-14 06:07:24", "192.243.55.134", "28");
INSERT INTO `wp_gf_form_view` VALUES("40554", "11", "2016-10-14 07:13:36", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("40555", "13", "2016-10-14 07:13:36", "136.243.36.94", "108");
INSERT INTO `wp_gf_form_view` VALUES("40556", "10", "2016-10-14 07:13:36", "136.243.36.94", "422");
INSERT INTO `wp_gf_form_view` VALUES("40557", "3", "2016-10-14 07:13:36", "136.243.36.94", "551");
INSERT INTO `wp_gf_form_view` VALUES("40558", "2", "2016-10-14 07:14:58", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("40559", "12", "2016-10-14 07:20:06", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("40560", "1", "2016-10-14 07:25:29", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("40561", "13", "2016-10-14 08:03:50", "204.79.180.233", "4");
INSERT INTO `wp_gf_form_view` VALUES("40562", "10", "2016-10-14 08:03:50", "204.79.180.233", "16");
INSERT INTO `wp_gf_form_view` VALUES("40563", "3", "2016-10-14 08:03:50", "204.79.180.233", "20");
INSERT INTO `wp_gf_form_view` VALUES("40564", "13", "2016-10-14 09:06:49", "66.249.79.108", "5");
INSERT INTO `wp_gf_form_view` VALUES("40565", "10", "2016-10-14 09:06:49", "66.249.79.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("40566", "3", "2016-10-14 09:06:49", "66.249.79.108", "27");
INSERT INTO `wp_gf_form_view` VALUES("40567", "13", "2016-10-14 10:42:07", "66.249.79.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("40568", "10", "2016-10-14 10:42:07", "66.249.79.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("40569", "3", "2016-10-14 10:42:07", "66.249.79.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("40570", "13", "2016-10-14 11:18:44", "146.185.223.44", "5");
INSERT INTO `wp_gf_form_view` VALUES("40571", "10", "2016-10-14 11:18:44", "146.185.223.44", "20");
INSERT INTO `wp_gf_form_view` VALUES("40572", "3", "2016-10-14 11:18:45", "146.185.223.44", "25");
INSERT INTO `wp_gf_form_view` VALUES("40573", "13", "2016-10-14 12:10:18", "163.172.66.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("40574", "10", "2016-10-14 12:10:19", "163.172.66.161", "29");
INSERT INTO `wp_gf_form_view` VALUES("40575", "3", "2016-10-14 12:10:19", "163.172.66.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("40576", "11", "2016-10-14 12:24:56", "62.210.148.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("40577", "12", "2016-10-14 12:25:22", "62.210.148.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("40578", "1", "2016-10-14 13:16:40", "122.155.3.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("40579", "13", "2016-10-14 13:16:41", "122.155.3.143", "6");
INSERT INTO `wp_gf_form_view` VALUES("40580", "10", "2016-10-14 13:16:43", "122.155.3.143", "25");
INSERT INTO `wp_gf_form_view` VALUES("40581", "3", "2016-10-14 13:16:43", "122.155.3.143", "32");
INSERT INTO `wp_gf_form_view` VALUES("40582", "3", "2016-10-14 14:45:10", "163.172.66.173", "6");
INSERT INTO `wp_gf_form_view` VALUES("40583", "13", "2016-10-14 14:45:10", "163.172.66.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("40584", "10", "2016-10-14 14:45:10", "163.172.66.173", "4");
INSERT INTO `wp_gf_form_view` VALUES("40585", "13", "2016-10-14 15:02:32", "31.16.45.249", "5");
INSERT INTO `wp_gf_form_view` VALUES("40586", "10", "2016-10-14 15:02:32", "31.16.45.249", "20");
INSERT INTO `wp_gf_form_view` VALUES("40587", "3", "2016-10-14 15:02:32", "31.16.45.249", "25");
INSERT INTO `wp_gf_form_view` VALUES("40588", "13", "2016-10-14 16:53:11", "24.68.25.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("40589", "10", "2016-10-14 16:53:20", "24.68.25.82", "8");
INSERT INTO `wp_gf_form_view` VALUES("40590", "3", "2016-10-14 16:53:22", "24.68.25.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("40591", "13", "2016-10-14 17:06:30", "66.249.79.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("40592", "10", "2016-10-14 17:06:30", "66.249.79.108", "32");
INSERT INTO `wp_gf_form_view` VALUES("40593", "3", "2016-10-14 17:06:30", "66.249.79.108", "42");
INSERT INTO `wp_gf_form_view` VALUES("40594", "1", "2016-10-14 17:34:36", "197.5.128.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("40595", "1", "2016-10-14 18:22:38", "5.196.140.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("40596", "13", "2016-10-14 18:22:38", "5.196.140.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("40597", "10", "2016-10-14 18:22:39", "5.196.140.231", "17");
INSERT INTO `wp_gf_form_view` VALUES("40598", "3", "2016-10-14 18:22:39", "5.196.140.231", "21");
INSERT INTO `wp_gf_form_view` VALUES("40599", "13", "2016-10-14 19:00:08", "96.54.198.114", "9");
INSERT INTO `wp_gf_form_view` VALUES("40600", "10", "2016-10-14 19:00:08", "96.54.198.114", "36");
INSERT INTO `wp_gf_form_view` VALUES("40601", "3", "2016-10-14 19:00:08", "96.54.198.114", "48");
INSERT INTO `wp_gf_form_view` VALUES("40602", "13", "2016-10-14 20:02:21", "77.75.76.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("40603", "10", "2016-10-14 20:02:21", "77.75.76.169", "36");
INSERT INTO `wp_gf_form_view` VALUES("40604", "3", "2016-10-14 20:02:21", "77.75.76.169", "45");
INSERT INTO `wp_gf_form_view` VALUES("40605", "1", "2016-10-14 20:03:44", "137.74.46.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("40606", "12", "2016-10-14 21:36:15", "51.255.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("40607", "13", "2016-10-14 21:36:18", "51.255.65.33", "5");
INSERT INTO `wp_gf_form_view` VALUES("40608", "10", "2016-10-14 21:36:19", "51.255.65.33", "20");
INSERT INTO `wp_gf_form_view` VALUES("40609", "3", "2016-10-14 21:36:20", "51.255.65.33", "25");
INSERT INTO `wp_gf_form_view` VALUES("40610", "1", "2016-10-14 21:39:59", "195.155.196.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("40611", "13", "2016-10-14 22:00:26", "163.172.64.183", "13");
INSERT INTO `wp_gf_form_view` VALUES("40612", "10", "2016-10-14 22:00:26", "163.172.64.183", "52");
INSERT INTO `wp_gf_form_view` VALUES("40613", "3", "2016-10-14 22:00:26", "163.172.64.183", "62");
INSERT INTO `wp_gf_form_view` VALUES("40614", "1", "2016-10-14 22:07:38", "46.4.84.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("40615", "13", "2016-10-14 23:00:15", "77.75.77.17", "28");
INSERT INTO `wp_gf_form_view` VALUES("40616", "10", "2016-10-14 23:00:15", "77.75.77.17", "106");
INSERT INTO `wp_gf_form_view` VALUES("40617", "3", "2016-10-14 23:00:15", "77.75.77.17", "138");
INSERT INTO `wp_gf_form_view` VALUES("40618", "13", "2016-10-15 00:39:10", "66.249.84.20", "3");
INSERT INTO `wp_gf_form_view` VALUES("40619", "10", "2016-10-15 00:39:11", "66.249.84.20", "12");
INSERT INTO `wp_gf_form_view` VALUES("40620", "3", "2016-10-15 00:39:11", "66.249.84.20", "16");
INSERT INTO `wp_gf_form_view` VALUES("40621", "12", "2016-10-15 01:03:02", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("40622", "13", "2016-10-15 01:03:02", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("40623", "10", "2016-10-15 01:03:02", "68.180.228.30", "48");
INSERT INTO `wp_gf_form_view` VALUES("40624", "3", "2016-10-15 01:03:02", "68.180.228.30", "67");
INSERT INTO `wp_gf_form_view` VALUES("40625", "13", "2016-10-15 02:13:51", "157.55.39.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("40626", "10", "2016-10-15 02:13:51", "157.55.39.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("40627", "3", "2016-10-15 02:13:51", "157.55.39.156", "5");
INSERT INTO `wp_gf_form_view` VALUES("40628", "13", "2016-10-15 03:40:25", "24.68.4.127", "82");
INSERT INTO `wp_gf_form_view` VALUES("40629", "10", "2016-10-15 03:40:26", "24.68.4.127", "329");
INSERT INTO `wp_gf_form_view` VALUES("40630", "3", "2016-10-15 03:40:27", "24.68.4.127", "435");
INSERT INTO `wp_gf_form_view` VALUES("40631", "9", "2016-10-15 03:46:19", "157.55.39.217", "3");
INSERT INTO `wp_gf_form_view` VALUES("40632", "2", "2016-10-15 03:47:13", "207.46.13.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("40633", "6", "2016-10-15 03:47:35", "157.55.39.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("40634", "5", "2016-10-15 03:47:44", "157.55.39.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("40635", "13", "2016-10-15 04:22:09", "68.180.228.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("40636", "10", "2016-10-15 04:22:09", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("40637", "3", "2016-10-15 04:22:09", "68.180.228.30", "15");
INSERT INTO `wp_gf_form_view` VALUES("40638", "13", "2016-10-15 05:03:41", "154.5.181.100", "11");
INSERT INTO `wp_gf_form_view` VALUES("40639", "10", "2016-10-15 05:03:41", "154.5.181.100", "52");
INSERT INTO `wp_gf_form_view` VALUES("40640", "3", "2016-10-15 05:03:41", "154.5.181.100", "57");
INSERT INTO `wp_gf_form_view` VALUES("40641", "13", "2016-10-15 06:10:25", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("40642", "10", "2016-10-15 06:10:26", "68.180.228.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("40643", "3", "2016-10-15 06:10:26", "68.180.228.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("40644", "13", "2016-10-15 07:19:20", "66.249.79.112", "24");
INSERT INTO `wp_gf_form_view` VALUES("40645", "10", "2016-10-15 07:19:22", "66.249.79.112", "93");
INSERT INTO `wp_gf_form_view` VALUES("40646", "3", "2016-10-15 07:19:22", "66.249.79.112", "128");
INSERT INTO `wp_gf_form_view` VALUES("40647", "8", "2016-10-15 07:29:38", "157.55.39.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("40648", "9", "2016-10-15 07:29:48", "157.55.39.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("40649", "3", "2016-10-15 08:22:07", "202.46.55.170", "11");
INSERT INTO `wp_gf_form_view` VALUES("40650", "13", "2016-10-15 08:22:07", "202.46.55.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("40651", "10", "2016-10-15 08:22:07", "202.46.55.170", "8");
INSERT INTO `wp_gf_form_view` VALUES("40652", "13", "2016-10-15 09:12:54", "66.249.79.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("40653", "10", "2016-10-15 09:12:54", "66.249.79.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("40654", "3", "2016-10-15 09:12:54", "66.249.79.112", "15");
INSERT INTO `wp_gf_form_view` VALUES("40655", "13", "2016-10-15 10:02:34", "202.46.58.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("40656", "10", "2016-10-15 10:02:34", "202.46.58.90", "39");
INSERT INTO `wp_gf_form_view` VALUES("40657", "3", "2016-10-15 10:02:35", "202.46.58.90", "43");
INSERT INTO `wp_gf_form_view` VALUES("40658", "13", "2016-10-15 11:01:27", "66.249.79.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("40659", "10", "2016-10-15 11:01:27", "66.249.79.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("40660", "3", "2016-10-15 11:01:27", "66.249.79.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("40661", "11", "2016-10-15 11:56:45", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("40662", "13", "2016-10-15 12:02:13", "66.249.79.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("40663", "10", "2016-10-15 12:02:15", "66.249.79.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("40664", "3", "2016-10-15 12:02:15", "66.249.79.108", "11");
INSERT INTO `wp_gf_form_view` VALUES("40665", "13", "2016-10-15 13:01:37", "68.180.228.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("40666", "10", "2016-10-15 13:01:37", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("40667", "3", "2016-10-15 13:01:37", "68.180.228.30", "16");
INSERT INTO `wp_gf_form_view` VALUES("40668", "1", "2016-10-15 14:37:35", "104.250.226.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("40669", "13", "2016-10-15 14:37:36", "104.250.226.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("40670", "10", "2016-10-15 14:37:38", "104.250.226.31", "4");
INSERT INTO `wp_gf_form_view` VALUES("40671", "3", "2016-10-15 14:37:38", "104.250.226.31", "5");
INSERT INTO `wp_gf_form_view` VALUES("40672", "13", "2016-10-15 15:20:27", "66.249.79.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("40673", "10", "2016-10-15 15:20:27", "66.249.79.104", "28");
INSERT INTO `wp_gf_form_view` VALUES("40674", "3", "2016-10-15 15:20:27", "66.249.79.104", "35");
INSERT INTO `wp_gf_form_view` VALUES("40675", "1", "2016-10-15 15:58:07", "85.140.173.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("40676", "13", "2016-10-15 16:27:43", "173.234.153.122", "13");
INSERT INTO `wp_gf_form_view` VALUES("40677", "10", "2016-10-15 16:27:43", "173.234.153.122", "49");
INSERT INTO `wp_gf_form_view` VALUES("40678", "3", "2016-10-15 16:27:43", "173.234.153.122", "66");
INSERT INTO `wp_gf_form_view` VALUES("40679", "10", "2016-10-15 17:58:43", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("40680", "13", "2016-10-15 17:58:44", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("40681", "3", "2016-10-15 17:58:44", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("40682", "3", "2016-10-15 18:10:00", "69.30.213.202", "103");
INSERT INTO `wp_gf_form_view` VALUES("40683", "13", "2016-10-15 18:10:00", "69.30.213.202", "20");
INSERT INTO `wp_gf_form_view` VALUES("40684", "10", "2016-10-15 18:10:00", "69.30.213.202", "77");
INSERT INTO `wp_gf_form_view` VALUES("40685", "13", "2016-10-15 19:01:01", "66.249.79.88", "23");
INSERT INTO `wp_gf_form_view` VALUES("40686", "10", "2016-10-15 19:01:01", "66.249.79.88", "92");
INSERT INTO `wp_gf_form_view` VALUES("40687", "3", "2016-10-15 19:01:01", "66.249.79.88", "116");
INSERT INTO `wp_gf_form_view` VALUES("40688", "13", "2016-10-15 20:41:04", "66.249.79.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("40689", "10", "2016-10-15 20:41:04", "66.249.79.108", "16");
INSERT INTO `wp_gf_form_view` VALUES("40690", "3", "2016-10-15 20:41:04", "66.249.79.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("40691", "13", "2016-10-15 21:00:24", "41.66.12.8", "9");
INSERT INTO `wp_gf_form_view` VALUES("40692", "10", "2016-10-15 21:00:24", "41.66.12.8", "34");
INSERT INTO `wp_gf_form_view` VALUES("40693", "3", "2016-10-15 21:00:24", "41.66.12.8", "40");
INSERT INTO `wp_gf_form_view` VALUES("40694", "13", "2016-10-15 22:32:41", "66.249.79.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("40695", "10", "2016-10-15 22:32:43", "66.249.79.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("40696", "3", "2016-10-15 22:32:43", "66.249.79.108", "5");
INSERT INTO `wp_gf_form_view` VALUES("40697", "13", "2016-10-15 23:07:55", "70.66.52.88", "5");
INSERT INTO `wp_gf_form_view` VALUES("40698", "10", "2016-10-15 23:07:56", "70.66.52.88", "20");
INSERT INTO `wp_gf_form_view` VALUES("40699", "3", "2016-10-15 23:07:56", "70.66.52.88", "26");
INSERT INTO `wp_gf_form_view` VALUES("40700", "13", "2016-10-16 00:02:42", "96.54.196.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("40701", "10", "2016-10-16 00:02:42", "96.54.196.51", "13");
INSERT INTO `wp_gf_form_view` VALUES("40702", "3", "2016-10-16 00:02:42", "96.54.196.51", "15");
INSERT INTO `wp_gf_form_view` VALUES("40703", "1", "2016-10-16 01:13:56", "84.194.127.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("40704", "13", "2016-10-16 01:13:57", "84.194.127.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("40705", "10", "2016-10-16 01:13:57", "84.194.127.80", "12");
INSERT INTO `wp_gf_form_view` VALUES("40706", "3", "2016-10-16 01:13:57", "84.194.127.80", "15");
INSERT INTO `wp_gf_form_view` VALUES("40707", "13", "2016-10-16 02:00:02", "108.63.59.7", "9");
INSERT INTO `wp_gf_form_view` VALUES("40708", "10", "2016-10-16 02:00:02", "108.63.59.7", "37");
INSERT INTO `wp_gf_form_view` VALUES("40709", "3", "2016-10-16 02:00:02", "108.63.59.7", "46");
INSERT INTO `wp_gf_form_view` VALUES("40710", "13", "2016-10-16 03:19:51", "202.46.53.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("40711", "10", "2016-10-16 03:19:52", "202.46.53.197", "4");
INSERT INTO `wp_gf_form_view` VALUES("40712", "3", "2016-10-16 03:19:52", "202.46.53.197", "5");
INSERT INTO `wp_gf_form_view` VALUES("40713", "13", "2016-10-16 04:11:19", "51.255.65.87", "7");
INSERT INTO `wp_gf_form_view` VALUES("40714", "10", "2016-10-16 04:11:19", "51.255.65.87", "28");
INSERT INTO `wp_gf_form_view` VALUES("40715", "3", "2016-10-16 04:11:20", "51.255.65.87", "36");
INSERT INTO `wp_gf_form_view` VALUES("40716", "1", "2016-10-16 04:54:20", "207.216.68.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("40717", "13", "2016-10-16 05:00:19", "202.46.54.189", "7");
INSERT INTO `wp_gf_form_view` VALUES("40718", "10", "2016-10-16 05:00:19", "202.46.54.189", "29");
INSERT INTO `wp_gf_form_view` VALUES("40719", "3", "2016-10-16 05:00:19", "202.46.54.189", "35");
INSERT INTO `wp_gf_form_view` VALUES("40720", "1", "2016-10-16 05:18:05", "207.216.68.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("40721", "13", "2016-10-16 06:07:20", "202.46.58.156", "13");
INSERT INTO `wp_gf_form_view` VALUES("40722", "10", "2016-10-16 06:07:20", "202.46.58.156", "52");
INSERT INTO `wp_gf_form_view` VALUES("40723", "3", "2016-10-16 06:07:21", "202.46.58.156", "69");
INSERT INTO `wp_gf_form_view` VALUES("40724", "9", "2016-10-16 06:39:48", "51.254.32.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("40725", "8", "2016-10-16 06:40:01", "51.254.32.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("40726", "13", "2016-10-16 07:03:30", "66.249.79.108", "12");
INSERT INTO `wp_gf_form_view` VALUES("40727", "10", "2016-10-16 07:03:30", "66.249.79.108", "44");
INSERT INTO `wp_gf_form_view` VALUES("40728", "3", "2016-10-16 07:03:30", "66.249.79.108", "57");
INSERT INTO `wp_gf_form_view` VALUES("40729", "5", "2016-10-16 07:45:05", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("40730", "13", "2016-10-16 08:01:27", "70.67.53.106", "4");
INSERT INTO `wp_gf_form_view` VALUES("40731", "10", "2016-10-16 08:01:27", "70.67.53.106", "16");
INSERT INTO `wp_gf_form_view` VALUES("40732", "3", "2016-10-16 08:01:28", "70.67.53.106", "20");
INSERT INTO `wp_gf_form_view` VALUES("40733", "13", "2016-10-16 09:08:03", "66.249.79.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("40734", "10", "2016-10-16 09:08:03", "66.249.79.112", "13");
INSERT INTO `wp_gf_form_view` VALUES("40735", "3", "2016-10-16 09:08:03", "66.249.79.112", "15");
INSERT INTO `wp_gf_form_view` VALUES("40736", "13", "2016-10-16 10:00:06", "68.180.228.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("40737", "10", "2016-10-16 10:00:06", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("40738", "3", "2016-10-16 10:00:06", "68.180.228.30", "15");
INSERT INTO `wp_gf_form_view` VALUES("40739", "13", "2016-10-16 11:10:31", "202.46.56.110", "4");
INSERT INTO `wp_gf_form_view` VALUES("40740", "10", "2016-10-16 11:10:31", "202.46.56.110", "16");
INSERT INTO `wp_gf_form_view` VALUES("40741", "3", "2016-10-16 11:10:31", "202.46.56.110", "20");
INSERT INTO `wp_gf_form_view` VALUES("40742", "13", "2016-10-16 12:01:26", "66.249.79.108", "12");
INSERT INTO `wp_gf_form_view` VALUES("40743", "10", "2016-10-16 12:01:26", "66.249.79.108", "48");
INSERT INTO `wp_gf_form_view` VALUES("40744", "3", "2016-10-16 12:01:26", "66.249.79.108", "61");
INSERT INTO `wp_gf_form_view` VALUES("40745", "13", "2016-10-16 13:28:48", "202.46.51.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("40746", "10", "2016-10-16 13:28:49", "202.46.51.39", "8");
INSERT INTO `wp_gf_form_view` VALUES("40747", "3", "2016-10-16 13:28:49", "202.46.51.39", "10");
INSERT INTO `wp_gf_form_view` VALUES("40748", "13", "2016-10-16 15:14:37", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("40749", "10", "2016-10-16 15:14:39", "66.249.79.108", "26");
INSERT INTO `wp_gf_form_view` VALUES("40750", "3", "2016-10-16 15:14:39", "66.249.79.108", "30");
INSERT INTO `wp_gf_form_view` VALUES("40751", "13", "2016-10-16 16:04:28", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("40752", "10", "2016-10-16 16:04:28", "66.249.79.104", "24");
INSERT INTO `wp_gf_form_view` VALUES("40753", "3", "2016-10-16 16:04:28", "66.249.79.104", "30");
INSERT INTO `wp_gf_form_view` VALUES("40754", "3", "2016-10-16 17:04:11", "164.132.161.92", "49");
INSERT INTO `wp_gf_form_view` VALUES("40755", "13", "2016-10-16 17:04:11", "164.132.161.92", "9");
INSERT INTO `wp_gf_form_view` VALUES("40756", "10", "2016-10-16 17:04:11", "164.132.161.92", "36");
INSERT INTO `wp_gf_form_view` VALUES("40757", "9", "2016-10-16 17:37:51", "173.208.157.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("40758", "8", "2016-10-16 17:37:59", "173.208.157.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("40759", "1", "2016-10-16 17:52:42", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("40760", "13", "2016-10-16 18:03:17", "176.9.10.227", "14");
INSERT INTO `wp_gf_form_view` VALUES("40761", "10", "2016-10-16 18:03:18", "176.9.10.227", "56");
INSERT INTO `wp_gf_form_view` VALUES("40762", "3", "2016-10-16 18:03:18", "176.9.10.227", "72");
INSERT INTO `wp_gf_form_view` VALUES("40763", "13", "2016-10-16 19:05:00", "24.68.144.200", "10");
INSERT INTO `wp_gf_form_view` VALUES("40764", "10", "2016-10-16 19:05:00", "24.68.144.200", "40");
INSERT INTO `wp_gf_form_view` VALUES("40765", "3", "2016-10-16 19:05:00", "24.68.144.200", "50");
INSERT INTO `wp_gf_form_view` VALUES("40766", "13", "2016-10-16 20:10:02", "66.249.79.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("40767", "10", "2016-10-16 20:10:03", "66.249.79.112", "8");
INSERT INTO `wp_gf_form_view` VALUES("40768", "3", "2016-10-16 20:10:03", "66.249.79.112", "10");
INSERT INTO `wp_gf_form_view` VALUES("40769", "11", "2016-10-16 20:30:39", "202.46.54.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("40770", "13", "2016-10-16 21:00:55", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("40771", "10", "2016-10-16 21:00:56", "66.249.79.108", "28");
INSERT INTO `wp_gf_form_view` VALUES("40772", "3", "2016-10-16 21:00:56", "66.249.79.108", "38");
INSERT INTO `wp_gf_form_view` VALUES("40773", "13", "2016-10-16 22:11:09", "202.46.51.180", "3");
INSERT INTO `wp_gf_form_view` VALUES("40774", "10", "2016-10-16 22:11:10", "202.46.51.180", "8");
INSERT INTO `wp_gf_form_view` VALUES("40775", "3", "2016-10-16 22:11:11", "202.46.51.180", "10");
INSERT INTO `wp_gf_form_view` VALUES("40776", "13", "2016-10-16 23:01:01", "163.172.68.133", "7");
INSERT INTO `wp_gf_form_view` VALUES("40777", "10", "2016-10-16 23:01:02", "163.172.68.133", "28");
INSERT INTO `wp_gf_form_view` VALUES("40778", "3", "2016-10-16 23:01:03", "163.172.68.133", "35");
INSERT INTO `wp_gf_form_view` VALUES("40779", "3", "2016-10-17 00:04:22", "77.75.78.164", "312");
INSERT INTO `wp_gf_form_view` VALUES("40780", "13", "2016-10-17 00:04:22", "77.75.78.164", "59");
INSERT INTO `wp_gf_form_view` VALUES("40781", "10", "2016-10-17 00:04:22", "77.75.78.164", "236");
INSERT INTO `wp_gf_form_view` VALUES("40782", "6", "2016-10-17 00:14:46", "157.55.39.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("40783", "5", "2016-10-17 00:14:54", "157.55.39.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("40784", "9", "2016-10-17 00:15:28", "157.55.39.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("40785", "3", "2016-10-17 01:54:33", "66.249.79.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("40786", "13", "2016-10-17 01:54:34", "66.249.79.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("40787", "10", "2016-10-17 01:54:34", "66.249.79.112", "8");
INSERT INTO `wp_gf_form_view` VALUES("40788", "13", "2016-10-17 02:01:44", "96.54.157.64", "5");
INSERT INTO `wp_gf_form_view` VALUES("40789", "10", "2016-10-17 02:01:45", "96.54.157.64", "20");
INSERT INTO `wp_gf_form_view` VALUES("40790", "3", "2016-10-17 02:01:45", "96.54.157.64", "25");
INSERT INTO `wp_gf_form_view` VALUES("40791", "13", "2016-10-17 03:31:04", "24.68.234.166", "3");
INSERT INTO `wp_gf_form_view` VALUES("40792", "10", "2016-10-17 03:31:05", "24.68.234.166", "13");
INSERT INTO `wp_gf_form_view` VALUES("40793", "3", "2016-10-17 03:31:06", "24.68.234.166", "15");
INSERT INTO `wp_gf_form_view` VALUES("40794", "3", "2016-10-17 04:07:45", "68.180.228.30", "26");
INSERT INTO `wp_gf_form_view` VALUES("40795", "13", "2016-10-17 04:07:45", "68.180.228.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("40796", "10", "2016-10-17 04:07:46", "68.180.228.30", "20");
INSERT INTO `wp_gf_form_view` VALUES("40797", "13", "2016-10-17 05:00:53", "66.249.79.112", "8");
INSERT INTO `wp_gf_form_view` VALUES("40798", "10", "2016-10-17 05:00:53", "66.249.79.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("40799", "3", "2016-10-17 05:00:53", "66.249.79.112", "38");
INSERT INTO `wp_gf_form_view` VALUES("40800", "13", "2016-10-17 06:13:19", "24.68.156.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("40801", "10", "2016-10-17 06:13:20", "24.68.156.15", "12");
INSERT INTO `wp_gf_form_view` VALUES("40802", "3", "2016-10-17 06:13:21", "24.68.156.15", "15");
INSERT INTO `wp_gf_form_view` VALUES("40803", "13", "2016-10-17 07:07:25", "70.66.168.88", "39");
INSERT INTO `wp_gf_form_view` VALUES("40804", "10", "2016-10-17 07:07:30", "70.66.168.88", "159");
INSERT INTO `wp_gf_form_view` VALUES("40805", "3", "2016-10-17 07:07:31", "70.66.168.88", "200");
INSERT INTO `wp_gf_form_view` VALUES("40806", "11", "2016-10-17 07:40:36", "62.151.181.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("40807", "2", "2016-10-17 07:41:19", "62.151.181.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("40808", "3", "2016-10-17 08:00:29", "45.59.156.175", "32");
INSERT INTO `wp_gf_form_view` VALUES("40809", "13", "2016-10-17 08:00:29", "45.59.156.175", "6");
INSERT INTO `wp_gf_form_view` VALUES("40810", "10", "2016-10-17 08:00:29", "45.59.156.175", "24");
INSERT INTO `wp_gf_form_view` VALUES("40811", "13", "2016-10-17 09:18:14", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("40812", "10", "2016-10-17 09:18:14", "66.249.79.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("40813", "3", "2016-10-17 09:18:15", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("40814", "13", "2016-10-17 10:06:37", "54.162.220.186", "8");
INSERT INTO `wp_gf_form_view` VALUES("40815", "10", "2016-10-17 10:06:37", "54.162.220.186", "33");
INSERT INTO `wp_gf_form_view` VALUES("40816", "3", "2016-10-17 10:06:37", "54.162.220.186", "41");
INSERT INTO `wp_gf_form_view` VALUES("40817", "2", "2016-10-17 10:33:31", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("40818", "13", "2016-10-17 11:11:13", "163.172.65.54", "5");
INSERT INTO `wp_gf_form_view` VALUES("40819", "10", "2016-10-17 11:11:13", "163.172.65.54", "20");
INSERT INTO `wp_gf_form_view` VALUES("40820", "3", "2016-10-17 11:11:13", "163.172.65.54", "25");
INSERT INTO `wp_gf_form_view` VALUES("40821", "1", "2016-10-17 11:46:35", "156.208.226.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("40822", "13", "2016-10-17 12:03:14", "66.249.79.112", "11");
INSERT INTO `wp_gf_form_view` VALUES("40823", "10", "2016-10-17 12:03:15", "66.249.79.112", "44");
INSERT INTO `wp_gf_form_view` VALUES("40824", "3", "2016-10-17 12:03:15", "66.249.79.112", "57");
INSERT INTO `wp_gf_form_view` VALUES("40825", "1", "2016-10-17 13:34:48", "41.33.238.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("40826", "13", "2016-10-17 13:34:49", "41.33.238.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("40827", "10", "2016-10-17 13:34:49", "41.33.238.168", "12");
INSERT INTO `wp_gf_form_view` VALUES("40828", "3", "2016-10-17 13:34:49", "41.33.238.168", "16");
INSERT INTO `wp_gf_form_view` VALUES("40829", "13", "2016-10-17 14:03:11", "164.132.161.9", "5");
INSERT INTO `wp_gf_form_view` VALUES("40830", "10", "2016-10-17 14:03:11", "164.132.161.9", "20");
INSERT INTO `wp_gf_form_view` VALUES("40831", "3", "2016-10-17 14:03:12", "164.132.161.9", "25");
INSERT INTO `wp_gf_form_view` VALUES("40832", "13", "2016-10-17 15:07:41", "68.180.228.30", "15");
INSERT INTO `wp_gf_form_view` VALUES("40833", "10", "2016-10-17 15:07:42", "68.180.228.30", "56");
INSERT INTO `wp_gf_form_view` VALUES("40834", "3", "2016-10-17 15:07:42", "68.180.228.30", "70");
INSERT INTO `wp_gf_form_view` VALUES("40835", "1", "2016-10-17 15:25:07", "120.52.72.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("40836", "11", "2016-10-17 16:05:42", "220.181.108.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("40837", "13", "2016-10-17 16:05:43", "220.181.108.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("40838", "10", "2016-10-17 16:05:43", "220.181.108.187", "12");
INSERT INTO `wp_gf_form_view` VALUES("40839", "3", "2016-10-17 16:05:43", "220.181.108.187", "16");
INSERT INTO `wp_gf_form_view` VALUES("40840", "13", "2016-10-17 17:33:04", "202.46.58.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("40841", "10", "2016-10-17 17:33:05", "202.46.58.98", "4");
INSERT INTO `wp_gf_form_view` VALUES("40842", "3", "2016-10-17 17:33:06", "202.46.58.98", "5");
INSERT INTO `wp_gf_form_view` VALUES("40843", "13", "2016-10-17 18:05:36", "184.66.26.145", "9");
INSERT INTO `wp_gf_form_view` VALUES("40844", "10", "2016-10-17 18:05:36", "184.66.26.145", "36");
INSERT INTO `wp_gf_form_view` VALUES("40845", "3", "2016-10-17 18:05:36", "184.66.26.145", "45");
INSERT INTO `wp_gf_form_view` VALUES("40846", "13", "2016-10-17 19:12:44", "24.68.20.158", "5");
INSERT INTO `wp_gf_form_view` VALUES("40847", "10", "2016-10-17 19:12:44", "24.68.20.158", "20");
INSERT INTO `wp_gf_form_view` VALUES("40848", "3", "2016-10-17 19:12:44", "24.68.20.158", "25");
INSERT INTO `wp_gf_form_view` VALUES("40849", "1", "2016-10-17 19:54:04", "207.216.68.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("40850", "13", "2016-10-17 20:17:22", "164.132.161.51", "5");
INSERT INTO `wp_gf_form_view` VALUES("40851", "10", "2016-10-17 20:17:33", "164.132.161.51", "20");
INSERT INTO `wp_gf_form_view` VALUES("40852", "3", "2016-10-17 20:17:35", "164.132.161.51", "26");
INSERT INTO `wp_gf_form_view` VALUES("40853", "3", "2016-10-17 21:12:00", "68.180.228.30", "44");
INSERT INTO `wp_gf_form_view` VALUES("40854", "11", "2016-10-17 21:23:02", "202.46.51.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("40855", "13", "2016-10-17 21:23:03", "202.46.51.166", "9");
INSERT INTO `wp_gf_form_view` VALUES("40856", "10", "2016-10-17 21:23:03", "202.46.51.166", "33");
INSERT INTO `wp_gf_form_view` VALUES("40857", "13", "2016-10-17 22:38:58", "68.180.228.30", "18");
INSERT INTO `wp_gf_form_view` VALUES("40858", "3", "2016-10-17 22:39:00", "68.180.228.30", "100");
INSERT INTO `wp_gf_form_view` VALUES("40859", "10", "2016-10-17 22:39:02", "68.180.228.30", "64");
INSERT INTO `wp_gf_form_view` VALUES("40860", "13", "2016-10-17 23:00:05", "62.212.73.211", "8");
INSERT INTO `wp_gf_form_view` VALUES("40861", "10", "2016-10-17 23:00:05", "62.212.73.211", "32");
INSERT INTO `wp_gf_form_view` VALUES("40862", "3", "2016-10-17 23:00:05", "62.212.73.211", "42");
INSERT INTO `wp_gf_form_view` VALUES("40863", "1", "2016-10-17 23:17:07", "24.68.135.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("40864", "13", "2016-10-18 00:12:49", "184.71.21.34", "3");
INSERT INTO `wp_gf_form_view` VALUES("40865", "10", "2016-10-18 00:12:50", "184.71.21.34", "12");
INSERT INTO `wp_gf_form_view` VALUES("40866", "3", "2016-10-18 00:12:50", "184.71.21.34", "15");
INSERT INTO `wp_gf_form_view` VALUES("40867", "13", "2016-10-18 01:15:08", "202.46.53.145", "15");
INSERT INTO `wp_gf_form_view` VALUES("40868", "10", "2016-10-18 01:15:09", "202.46.53.145", "60");
INSERT INTO `wp_gf_form_view` VALUES("40869", "3", "2016-10-18 01:15:09", "202.46.53.145", "80");
INSERT INTO `wp_gf_form_view` VALUES("40870", "10", "2016-10-18 02:17:04", "68.180.228.30", "21");
INSERT INTO `wp_gf_form_view` VALUES("40871", "13", "2016-10-18 02:17:04", "68.180.228.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("40872", "3", "2016-10-18 02:17:04", "68.180.228.30", "26");
INSERT INTO `wp_gf_form_view` VALUES("40873", "3", "2016-10-18 03:09:29", "77.75.76.162", "41");
INSERT INTO `wp_gf_form_view` VALUES("40874", "13", "2016-10-18 03:09:30", "77.75.76.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("40875", "10", "2016-10-18 03:09:30", "77.75.76.162", "33");
INSERT INTO `wp_gf_form_view` VALUES("40876", "1", "2016-10-18 03:38:27", "70.66.162.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("40877", "13", "2016-10-18 04:08:31", "77.75.77.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("40878", "10", "2016-10-18 04:08:31", "77.75.77.17", "12");
INSERT INTO `wp_gf_form_view` VALUES("40879", "3", "2016-10-18 04:08:32", "77.75.77.17", "15");
INSERT INTO `wp_gf_form_view` VALUES("40880", "9", "2016-10-18 04:11:28", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("40881", "5", "2016-10-18 05:06:52", "77.75.78.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("40882", "13", "2016-10-18 05:06:52", "77.75.78.165", "3");
INSERT INTO `wp_gf_form_view` VALUES("40883", "10", "2016-10-18 05:06:52", "77.75.78.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("40884", "3", "2016-10-18 05:06:52", "77.75.78.165", "15");
INSERT INTO `wp_gf_form_view` VALUES("40885", "13", "2016-10-18 06:00:19", "66.249.79.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("40886", "13", "2016-10-18 06:00:19", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("40887", "10", "2016-10-18 06:00:19", "77.75.79.72", "15");
INSERT INTO `wp_gf_form_view` VALUES("40888", "10", "2016-10-18 06:00:19", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("40889", "3", "2016-10-18 06:00:19", "77.75.79.72", "19");
INSERT INTO `wp_gf_form_view` VALUES("40890", "3", "2016-10-18 06:00:19", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("40891", "13", "2016-10-18 07:14:49", "77.75.78.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("40892", "10", "2016-10-18 07:14:49", "77.75.78.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("40893", "3", "2016-10-18 07:14:49", "77.75.78.161", "31");
INSERT INTO `wp_gf_form_view` VALUES("40894", "1", "2016-10-18 07:39:43", "62.210.111.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("40895", "10", "2016-10-18 08:20:57", "68.180.228.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("40896", "13", "2016-10-18 08:20:57", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("40897", "3", "2016-10-18 08:20:57", "68.180.228.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("40898", "13", "2016-10-18 09:01:27", "202.46.58.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("40899", "10", "2016-10-18 09:01:28", "202.46.58.73", "22");
INSERT INTO `wp_gf_form_view` VALUES("40900", "3", "2016-10-18 09:01:29", "202.46.58.73", "33");
INSERT INTO `wp_gf_form_view` VALUES("40901", "13", "2016-10-18 10:02:04", "77.75.78.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("40902", "10", "2016-10-18 10:02:04", "77.75.78.163", "8");
INSERT INTO `wp_gf_form_view` VALUES("40903", "3", "2016-10-18 10:02:05", "77.75.78.163", "10");
INSERT INTO `wp_gf_form_view` VALUES("40904", "3", "2016-10-18 11:42:57", "157.55.39.79", "23");
INSERT INTO `wp_gf_form_view` VALUES("40905", "13", "2016-10-18 11:43:00", "157.55.39.79", "4");
INSERT INTO `wp_gf_form_view` VALUES("40906", "10", "2016-10-18 11:43:00", "157.55.39.79", "16");
INSERT INTO `wp_gf_form_view` VALUES("40907", "13", "2016-10-18 12:06:03", "46.4.116.197", "4");
INSERT INTO `wp_gf_form_view` VALUES("40908", "10", "2016-10-18 12:06:03", "46.4.116.197", "25");
INSERT INTO `wp_gf_form_view` VALUES("40909", "3", "2016-10-18 12:06:04", "46.4.116.197", "26");
INSERT INTO `wp_gf_form_view` VALUES("40910", "10", "2016-10-18 13:13:59", "164.132.161.55", "17");
INSERT INTO `wp_gf_form_view` VALUES("40911", "13", "2016-10-18 13:14:00", "164.132.161.55", "4");
INSERT INTO `wp_gf_form_view` VALUES("40912", "3", "2016-10-18 13:14:00", "164.132.161.55", "21");
INSERT INTO `wp_gf_form_view` VALUES("40913", "1", "2016-10-18 14:01:10", "197.113.54.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("40914", "13", "2016-10-18 14:01:10", "197.113.54.201", "14");
INSERT INTO `wp_gf_form_view` VALUES("40915", "10", "2016-10-18 14:01:10", "197.113.54.201", "66");
INSERT INTO `wp_gf_form_view` VALUES("40916", "3", "2016-10-18 14:01:10", "197.113.54.201", "62");
INSERT INTO `wp_gf_form_view` VALUES("40917", "13", "2016-10-18 15:10:32", "157.55.39.79", "6");
INSERT INTO `wp_gf_form_view` VALUES("40918", "10", "2016-10-18 15:10:33", "157.55.39.79", "20");
INSERT INTO `wp_gf_form_view` VALUES("40919", "3", "2016-10-18 15:10:34", "157.55.39.79", "25");
INSERT INTO `wp_gf_form_view` VALUES("40920", "13", "2016-10-18 16:07:20", "202.46.56.91", "11");
INSERT INTO `wp_gf_form_view` VALUES("40921", "10", "2016-10-18 16:07:21", "202.46.56.91", "51");
INSERT INTO `wp_gf_form_view` VALUES("40922", "3", "2016-10-18 16:07:21", "202.46.56.91", "52");
INSERT INTO `wp_gf_form_view` VALUES("40923", "13", "2016-10-18 17:07:02", "163.172.65.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("40924", "10", "2016-10-18 17:07:02", "163.172.65.130", "21");
INSERT INTO `wp_gf_form_view` VALUES("40925", "3", "2016-10-18 17:07:03", "163.172.65.130", "25");
INSERT INTO `wp_gf_form_view` VALUES("40926", "2", "2016-10-18 17:33:42", "74.91.26.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("40927", "13", "2016-10-18 18:02:26", "51.255.65.96", "6");
INSERT INTO `wp_gf_form_view` VALUES("40928", "10", "2016-10-18 18:02:26", "51.255.65.96", "24");
INSERT INTO `wp_gf_form_view` VALUES("40929", "3", "2016-10-18 18:02:26", "51.255.65.96", "32");
INSERT INTO `wp_gf_form_view` VALUES("40930", "13", "2016-10-18 19:04:53", "157.55.39.79", "36");
INSERT INTO `wp_gf_form_view` VALUES("40931", "10", "2016-10-18 19:04:54", "157.55.39.79", "140");
INSERT INTO `wp_gf_form_view` VALUES("40932", "3", "2016-10-18 19:04:55", "157.55.39.79", "182");
INSERT INTO `wp_gf_form_view` VALUES("40933", "11", "2016-10-18 19:06:36", "45.55.229.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("40934", "2", "2016-10-18 19:06:37", "45.55.229.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("40935", "3", "2016-10-18 20:04:56", "75.157.27.1", "108");
INSERT INTO `wp_gf_form_view` VALUES("40936", "13", "2016-10-18 20:04:57", "75.157.27.1", "21");
INSERT INTO `wp_gf_form_view` VALUES("40937", "10", "2016-10-18 20:04:57", "75.157.27.1", "84");
INSERT INTO `wp_gf_form_view` VALUES("40938", "11", "2016-10-18 20:30:08", "80.82.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("40939", "2", "2016-10-18 20:30:09", "80.82.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("40940", "13", "2016-10-18 21:05:23", "104.156.231.254", "32");
INSERT INTO `wp_gf_form_view` VALUES("40941", "10", "2016-10-18 21:05:23", "104.156.231.254", "125");
INSERT INTO `wp_gf_form_view` VALUES("40942", "3", "2016-10-18 21:05:23", "104.156.231.254", "160");
INSERT INTO `wp_gf_form_view` VALUES("40943", "2", "2016-10-18 21:05:29", "104.156.231.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("40944", "1", "2016-10-18 21:16:44", "62.210.111.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("40945", "11", "2016-10-18 21:57:13", "192.243.55.132", "3");
INSERT INTO `wp_gf_form_view` VALUES("40946", "13", "2016-10-18 22:33:40", "66.249.79.104", "26");
INSERT INTO `wp_gf_form_view` VALUES("40947", "10", "2016-10-18 22:33:41", "66.249.79.104", "104");
INSERT INTO `wp_gf_form_view` VALUES("40948", "3", "2016-10-18 22:33:42", "66.249.79.104", "132");
INSERT INTO `wp_gf_form_view` VALUES("40949", "5", "2016-10-18 22:53:37", "163.172.66.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("40950", "3", "2016-10-18 23:02:49", "157.55.39.59", "137");
INSERT INTO `wp_gf_form_view` VALUES("40951", "13", "2016-10-18 23:02:49", "157.55.39.59", "27");
INSERT INTO `wp_gf_form_view` VALUES("40952", "10", "2016-10-18 23:02:49", "157.55.39.59", "109");
INSERT INTO `wp_gf_form_view` VALUES("40953", "1", "2016-10-18 23:05:02", "62.210.111.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("40954", "10", "2016-10-19 00:12:51", "62.210.143.245", "38");
INSERT INTO `wp_gf_form_view` VALUES("40955", "13", "2016-10-19 00:12:51", "62.210.143.245", "9");
INSERT INTO `wp_gf_form_view` VALUES("40956", "3", "2016-10-19 00:12:51", "62.210.143.245", "48");
INSERT INTO `wp_gf_form_view` VALUES("40957", "1", "2016-10-19 00:47:16", "62.210.111.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("40958", "13", "2016-10-19 01:01:49", "66.249.79.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("40959", "10", "2016-10-19 01:01:50", "66.249.79.104", "16");
INSERT INTO `wp_gf_form_view` VALUES("40960", "3", "2016-10-19 01:01:50", "66.249.79.104", "22");
INSERT INTO `wp_gf_form_view` VALUES("40961", "13", "2016-10-19 02:00:05", "24.69.73.90", "21");
INSERT INTO `wp_gf_form_view` VALUES("40962", "10", "2016-10-19 02:00:06", "24.69.73.90", "80");
INSERT INTO `wp_gf_form_view` VALUES("40963", "3", "2016-10-19 02:00:06", "24.69.73.90", "104");
INSERT INTO `wp_gf_form_view` VALUES("40964", "1", "2016-10-19 02:30:47", "62.210.111.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("40965", "13", "2016-10-19 03:02:12", "163.172.66.145", "22");
INSERT INTO `wp_gf_form_view` VALUES("40966", "3", "2016-10-19 03:02:12", "163.172.66.145", "114");
INSERT INTO `wp_gf_form_view` VALUES("40967", "10", "2016-10-19 03:02:13", "163.172.66.145", "86");
INSERT INTO `wp_gf_form_view` VALUES("40968", "1", "2016-10-19 03:57:36", "62.210.111.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("40969", "3", "2016-10-19 04:00:13", "24.68.30.24", "97");
INSERT INTO `wp_gf_form_view` VALUES("40970", "10", "2016-10-19 04:00:13", "24.68.30.24", "78");
INSERT INTO `wp_gf_form_view` VALUES("40971", "13", "2016-10-19 04:04:40", "96.50.19.46", "18");
INSERT INTO `wp_gf_form_view` VALUES("40972", "6", "2016-10-19 04:48:30", "162.210.196.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("40973", "10", "2016-10-19 05:00:24", "207.46.13.136", "29");
INSERT INTO `wp_gf_form_view` VALUES("40974", "13", "2016-10-19 05:00:24", "207.46.13.136", "7");
INSERT INTO `wp_gf_form_view` VALUES("40975", "3", "2016-10-19 05:00:24", "207.46.13.136", "35");
INSERT INTO `wp_gf_form_view` VALUES("40976", "6", "2016-10-19 05:25:04", "164.132.161.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("40977", "13", "2016-10-19 06:01:37", "50.98.2.190", "10");
INSERT INTO `wp_gf_form_view` VALUES("40978", "10", "2016-10-19 06:01:37", "50.98.2.190", "40");
INSERT INTO `wp_gf_form_view` VALUES("40979", "3", "2016-10-19 06:01:37", "50.98.2.190", "50");
INSERT INTO `wp_gf_form_view` VALUES("40980", "13", "2016-10-19 07:01:24", "66.249.79.108", "27");
INSERT INTO `wp_gf_form_view` VALUES("40981", "10", "2016-10-19 07:01:24", "66.249.79.108", "109");
INSERT INTO `wp_gf_form_view` VALUES("40982", "3", "2016-10-19 07:01:24", "66.249.79.108", "136");
INSERT INTO `wp_gf_form_view` VALUES("40983", "2", "2016-10-19 07:17:50", "163.172.68.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("40984", "13", "2016-10-19 08:04:03", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("40985", "10", "2016-10-19 08:04:03", "66.249.79.112", "24");
INSERT INTO `wp_gf_form_view` VALUES("40986", "3", "2016-10-19 08:04:03", "66.249.79.112", "31");
INSERT INTO `wp_gf_form_view` VALUES("40987", "3", "2016-10-19 09:09:03", "66.249.79.104", "30");
INSERT INTO `wp_gf_form_view` VALUES("40988", "13", "2016-10-19 09:09:04", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("40989", "10", "2016-10-19 09:09:04", "66.249.79.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("40990", "1", "2016-10-19 09:14:10", "202.46.58.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("40991", "13", "2016-10-19 10:03:22", "51.255.65.91", "12");
INSERT INTO `wp_gf_form_view` VALUES("40992", "10", "2016-10-19 10:03:22", "51.255.65.91", "40");
INSERT INTO `wp_gf_form_view` VALUES("40993", "3", "2016-10-19 10:03:22", "51.255.65.91", "52");
INSERT INTO `wp_gf_form_view` VALUES("40994", "10", "2016-10-19 11:45:51", "157.55.39.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("40995", "13", "2016-10-19 11:45:54", "157.55.39.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("40996", "3", "2016-10-19 11:45:55", "157.55.39.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("40997", "13", "2016-10-19 12:10:00", "77.75.77.36", "11");
INSERT INTO `wp_gf_form_view` VALUES("40998", "10", "2016-10-19 12:10:00", "77.75.77.36", "46");
INSERT INTO `wp_gf_form_view` VALUES("40999", "3", "2016-10-19 12:10:01", "77.75.77.36", "56");
INSERT INTO `wp_gf_form_view` VALUES("41000", "12", "2016-10-19 12:13:18", "157.55.39.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41001", "3", "2016-10-19 13:03:57", "157.55.39.62", "55");
INSERT INTO `wp_gf_form_view` VALUES("41002", "13", "2016-10-19 13:03:57", "157.55.39.62", "10");
INSERT INTO `wp_gf_form_view` VALUES("41003", "10", "2016-10-19 13:03:57", "157.55.39.62", "40");
INSERT INTO `wp_gf_form_view` VALUES("41004", "1", "2016-10-19 13:06:07", "62.210.111.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("41005", "6", "2016-10-19 13:36:26", "192.243.55.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("41006", "13", "2016-10-19 14:28:16", "207.46.13.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("41007", "3", "2016-10-19 14:28:17", "207.46.13.136", "27");
INSERT INTO `wp_gf_form_view` VALUES("41008", "10", "2016-10-19 14:28:18", "207.46.13.136", "17");
INSERT INTO `wp_gf_form_view` VALUES("41009", "3", "2016-10-19 15:04:28", "202.46.50.165", "81");
INSERT INTO `wp_gf_form_view` VALUES("41010", "13", "2016-10-19 15:04:28", "202.46.50.165", "16");
INSERT INTO `wp_gf_form_view` VALUES("41011", "10", "2016-10-19 15:04:28", "202.46.50.165", "68");
INSERT INTO `wp_gf_form_view` VALUES("41012", "3", "2016-10-19 16:13:18", "66.249.79.108", "48");
INSERT INTO `wp_gf_form_view` VALUES("41013", "13", "2016-10-19 16:13:19", "66.249.79.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("41014", "10", "2016-10-19 16:13:19", "66.249.79.108", "36");
INSERT INTO `wp_gf_form_view` VALUES("41015", "10", "2016-10-19 17:07:57", "51.255.65.49", "109");
INSERT INTO `wp_gf_form_view` VALUES("41016", "13", "2016-10-19 17:08:00", "51.255.65.49", "28");
INSERT INTO `wp_gf_form_view` VALUES("41017", "3", "2016-10-19 17:08:00", "51.255.65.49", "146");
INSERT INTO `wp_gf_form_view` VALUES("41018", "13", "2016-10-19 18:00:20", "192.243.55.129", "33");
INSERT INTO `wp_gf_form_view` VALUES("41019", "3", "2016-10-19 18:00:20", "192.243.55.129", "167");
INSERT INTO `wp_gf_form_view` VALUES("41020", "10", "2016-10-19 18:00:21", "192.243.55.129", "136");
INSERT INTO `wp_gf_form_view` VALUES("41021", "11", "2016-10-19 18:58:52", "202.46.55.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("41022", "1", "2016-10-19 19:12:34", "62.210.80.62", "4");
INSERT INTO `wp_gf_form_view` VALUES("41023", "13", "2016-10-19 19:12:34", "62.210.80.62", "14");
INSERT INTO `wp_gf_form_view` VALUES("41024", "13", "2016-10-19 19:12:34", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41025", "10", "2016-10-19 19:12:34", "62.210.80.62", "55");
INSERT INTO `wp_gf_form_view` VALUES("41026", "10", "2016-10-19 19:12:34", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41027", "3", "2016-10-19 19:12:34", "62.210.80.62", "77");
INSERT INTO `wp_gf_form_view` VALUES("41028", "3", "2016-10-19 19:12:34", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41029", "10", "2016-10-19 20:03:04", "207.46.13.136", "60");
INSERT INTO `wp_gf_form_view` VALUES("41030", "13", "2016-10-19 20:03:05", "207.46.13.136", "13");
INSERT INTO `wp_gf_form_view` VALUES("41031", "3", "2016-10-19 20:03:05", "207.46.13.136", "68");
INSERT INTO `wp_gf_form_view` VALUES("41032", "9", "2016-10-19 20:20:20", "24.108.37.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("41033", "8", "2016-10-19 21:00:45", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("41034", "13", "2016-10-19 21:00:46", "217.69.133.229", "7");
INSERT INTO `wp_gf_form_view` VALUES("41035", "10", "2016-10-19 21:00:46", "217.69.133.229", "28");
INSERT INTO `wp_gf_form_view` VALUES("41036", "3", "2016-10-19 21:00:46", "217.69.133.229", "36");
INSERT INTO `wp_gf_form_view` VALUES("41037", "13", "2016-10-19 22:01:41", "66.249.79.148", "26");
INSERT INTO `wp_gf_form_view` VALUES("41038", "10", "2016-10-19 22:01:41", "66.249.79.148", "99");
INSERT INTO `wp_gf_form_view` VALUES("41039", "3", "2016-10-19 22:01:41", "66.249.79.148", "118");
INSERT INTO `wp_gf_form_view` VALUES("41040", "13", "2016-10-19 23:12:50", "192.243.55.138", "22");
INSERT INTO `wp_gf_form_view` VALUES("41041", "10", "2016-10-19 23:12:50", "192.243.55.138", "88");
INSERT INTO `wp_gf_form_view` VALUES("41042", "3", "2016-10-19 23:12:51", "192.243.55.138", "112");
INSERT INTO `wp_gf_form_view` VALUES("41043", "1", "2016-10-20 00:04:49", "157.55.39.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("41044", "13", "2016-10-20 00:04:49", "157.55.39.59", "7");
INSERT INTO `wp_gf_form_view` VALUES("41045", "10", "2016-10-20 00:04:49", "157.55.39.59", "28");
INSERT INTO `wp_gf_form_view` VALUES("41046", "3", "2016-10-20 00:04:49", "157.55.39.59", "37");
INSERT INTO `wp_gf_form_view` VALUES("41047", "8", "2016-10-20 01:09:31", "192.243.55.130", "3");
INSERT INTO `wp_gf_form_view` VALUES("41048", "13", "2016-10-20 01:09:32", "192.243.55.130", "14");
INSERT INTO `wp_gf_form_view` VALUES("41049", "10", "2016-10-20 01:09:32", "192.243.55.130", "57");
INSERT INTO `wp_gf_form_view` VALUES("41050", "3", "2016-10-20 01:09:32", "192.243.55.130", "70");
INSERT INTO `wp_gf_form_view` VALUES("41051", "1", "2016-10-20 01:16:17", "24.69.82.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("41052", "10", "2016-10-20 02:29:21", "192.243.55.129", "42");
INSERT INTO `wp_gf_form_view` VALUES("41053", "13", "2016-10-20 02:29:22", "192.243.55.129", "9");
INSERT INTO `wp_gf_form_view` VALUES("41054", "3", "2016-10-20 02:29:23", "192.243.55.129", "42");
INSERT INTO `wp_gf_form_view` VALUES("41055", "8", "2016-10-20 02:45:49", "207.46.13.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("41056", "1", "2016-10-20 02:46:42", "5.196.140.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("41057", "3", "2016-10-20 03:02:53", "192.243.55.131", "136");
INSERT INTO `wp_gf_form_view` VALUES("41058", "13", "2016-10-20 03:02:53", "192.243.55.131", "24");
INSERT INTO `wp_gf_form_view` VALUES("41059", "10", "2016-10-20 03:02:53", "192.243.55.131", "79");
INSERT INTO `wp_gf_form_view` VALUES("41060", "3", "2016-10-20 04:07:25", "192.243.55.135", "93");
INSERT INTO `wp_gf_form_view` VALUES("41061", "13", "2016-10-20 04:07:25", "192.243.55.135", "18");
INSERT INTO `wp_gf_form_view` VALUES("41062", "10", "2016-10-20 04:07:26", "192.243.55.135", "73");
INSERT INTO `wp_gf_form_view` VALUES("41063", "1", "2016-10-20 04:28:45", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("41064", "10", "2016-10-20 05:01:47", "192.243.55.138", "19");
INSERT INTO `wp_gf_form_view` VALUES("41065", "13", "2016-10-20 05:01:47", "192.243.55.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("41066", "3", "2016-10-20 05:01:47", "192.243.55.138", "20");
INSERT INTO `wp_gf_form_view` VALUES("41067", "13", "2016-10-20 06:07:53", "66.249.79.148", "13");
INSERT INTO `wp_gf_form_view` VALUES("41068", "10", "2016-10-20 06:07:54", "66.249.79.148", "48");
INSERT INTO `wp_gf_form_view` VALUES("41069", "3", "2016-10-20 06:07:54", "66.249.79.148", "67");
INSERT INTO `wp_gf_form_view` VALUES("41070", "1", "2016-10-20 07:00:10", "192.243.55.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("41071", "13", "2016-10-20 07:00:10", "192.243.55.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("41072", "10", "2016-10-20 07:00:10", "192.243.55.137", "48");
INSERT INTO `wp_gf_form_view` VALUES("41073", "3", "2016-10-20 07:00:10", "192.243.55.137", "63");
INSERT INTO `wp_gf_form_view` VALUES("41074", "3", "2016-10-20 08:30:25", "207.46.13.136", "47");
INSERT INTO `wp_gf_form_view` VALUES("41075", "13", "2016-10-20 08:30:26", "207.46.13.136", "9");
INSERT INTO `wp_gf_form_view` VALUES("41076", "10", "2016-10-20 08:30:26", "207.46.13.136", "36");
INSERT INTO `wp_gf_form_view` VALUES("41077", "1", "2016-10-20 08:37:51", "62.210.80.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("41078", "1", "2016-10-20 08:37:51", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41079", "1", "2016-10-20 08:37:51", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41080", "13", "2016-10-20 09:33:07", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("41081", "10", "2016-10-20 09:33:08", "66.249.79.148", "16");
INSERT INTO `wp_gf_form_view` VALUES("41082", "3", "2016-10-20 09:33:08", "66.249.79.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("41083", "13", "2016-10-20 10:00:30", "157.55.39.59", "6");
INSERT INTO `wp_gf_form_view` VALUES("41084", "10", "2016-10-20 10:00:30", "157.55.39.59", "25");
INSERT INTO `wp_gf_form_view` VALUES("41085", "3", "2016-10-20 10:00:30", "157.55.39.59", "31");
INSERT INTO `wp_gf_form_view` VALUES("41086", "13", "2016-10-20 11:00:42", "207.216.84.115", "8");
INSERT INTO `wp_gf_form_view` VALUES("41087", "10", "2016-10-20 11:00:42", "207.216.84.115", "32");
INSERT INTO `wp_gf_form_view` VALUES("41088", "3", "2016-10-20 11:00:42", "207.216.84.115", "41");
INSERT INTO `wp_gf_form_view` VALUES("41089", "11", "2016-10-20 11:06:33", "157.55.39.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("41090", "3", "2016-10-20 12:19:39", "68.180.228.30", "16");
INSERT INTO `wp_gf_form_view` VALUES("41091", "13", "2016-10-20 12:19:40", "68.180.228.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("41092", "10", "2016-10-20 12:19:40", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("41093", "3", "2016-10-20 13:10:03", "40.77.167.35", "36");
INSERT INTO `wp_gf_form_view` VALUES("41094", "13", "2016-10-20 13:10:03", "40.77.167.35", "7");
INSERT INTO `wp_gf_form_view` VALUES("41095", "10", "2016-10-20 13:10:03", "40.77.167.35", "28");
INSERT INTO `wp_gf_form_view` VALUES("41096", "5", "2016-10-20 14:15:46", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("41097", "13", "2016-10-20 14:15:46", "77.75.78.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("41098", "10", "2016-10-20 14:15:48", "77.75.78.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("41099", "3", "2016-10-20 14:15:48", "77.75.78.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("41100", "3", "2016-10-20 15:17:05", "68.180.228.30", "29");
INSERT INTO `wp_gf_form_view` VALUES("41101", "13", "2016-10-20 15:29:54", "24.244.32.23", "5");
INSERT INTO `wp_gf_form_view` VALUES("41102", "10", "2016-10-20 15:29:54", "24.244.32.23", "20");
INSERT INTO `wp_gf_form_view` VALUES("41103", "3", "2016-10-20 16:00:09", "157.55.39.62", "21");
INSERT INTO `wp_gf_form_view` VALUES("41104", "13", "2016-10-20 16:00:09", "157.55.39.62", "4");
INSERT INTO `wp_gf_form_view` VALUES("41105", "10", "2016-10-20 16:00:09", "157.55.39.62", "16");
INSERT INTO `wp_gf_form_view` VALUES("41106", "1", "2016-10-20 16:57:36", "24.87.28.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("41107", "3", "2016-10-20 17:29:00", "157.55.39.59", "42");
INSERT INTO `wp_gf_form_view` VALUES("41108", "13", "2016-10-20 17:29:05", "157.55.39.59", "9");
INSERT INTO `wp_gf_form_view` VALUES("41109", "10", "2016-10-20 17:29:05", "157.55.39.59", "32");
INSERT INTO `wp_gf_form_view` VALUES("41110", "1", "2016-10-20 17:33:52", "101.109.106.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("41111", "13", "2016-10-20 18:03:28", "96.50.1.173", "17");
INSERT INTO `wp_gf_form_view` VALUES("41112", "10", "2016-10-20 18:03:29", "96.50.1.173", "68");
INSERT INTO `wp_gf_form_view` VALUES("41113", "3", "2016-10-20 18:03:29", "96.50.1.173", "90");
INSERT INTO `wp_gf_form_view` VALUES("41114", "1", "2016-10-20 18:11:12", "192.186.159.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("41115", "6", "2016-10-20 18:29:03", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("41116", "3", "2016-10-20 19:01:42", "66.249.79.152", "41");
INSERT INTO `wp_gf_form_view` VALUES("41117", "13", "2016-10-20 19:01:43", "66.249.79.152", "8");
INSERT INTO `wp_gf_form_view` VALUES("41118", "10", "2016-10-20 19:01:43", "66.249.79.152", "32");
INSERT INTO `wp_gf_form_view` VALUES("41119", "8", "2016-10-20 20:11:33", "207.46.13.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("41120", "13", "2016-10-20 20:11:34", "207.46.13.136", "11");
INSERT INTO `wp_gf_form_view` VALUES("41121", "10", "2016-10-20 20:11:35", "207.46.13.136", "45");
INSERT INTO `wp_gf_form_view` VALUES("41122", "3", "2016-10-20 20:11:35", "207.46.13.136", "55");
INSERT INTO `wp_gf_form_view` VALUES("41123", "1", "2016-10-20 20:13:46", "125.27.94.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("41124", "13", "2016-10-20 21:24:04", "207.46.13.136", "8");
INSERT INTO `wp_gf_form_view` VALUES("41125", "10", "2016-10-20 21:24:06", "207.46.13.136", "31");
INSERT INTO `wp_gf_form_view` VALUES("41126", "3", "2016-10-20 21:24:06", "207.46.13.136", "32");
INSERT INTO `wp_gf_form_view` VALUES("41127", "1", "2016-10-20 21:56:23", "62.210.80.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41128", "13", "2016-10-20 22:06:36", "157.55.39.62", "10");
INSERT INTO `wp_gf_form_view` VALUES("41129", "10", "2016-10-20 22:06:36", "157.55.39.62", "40");
INSERT INTO `wp_gf_form_view` VALUES("41130", "3", "2016-10-20 22:06:37", "157.55.39.62", "54");
INSERT INTO `wp_gf_form_view` VALUES("41131", "13", "2016-10-20 23:00:23", "202.46.51.117", "12");
INSERT INTO `wp_gf_form_view` VALUES("41132", "10", "2016-10-20 23:00:23", "202.46.51.117", "50");
INSERT INTO `wp_gf_form_view` VALUES("41133", "3", "2016-10-20 23:00:23", "202.46.51.117", "60");
INSERT INTO `wp_gf_form_view` VALUES("41134", "6", "2016-10-20 23:19:36", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("41135", "10", "2016-10-21 00:19:10", "51.255.65.39", "17");
INSERT INTO `wp_gf_form_view` VALUES("41136", "13", "2016-10-21 00:19:11", "51.255.65.39", "4");
INSERT INTO `wp_gf_form_view` VALUES("41137", "3", "2016-10-21 00:19:11", "51.255.65.39", "22");
INSERT INTO `wp_gf_form_view` VALUES("41138", "13", "2016-10-21 01:06:46", "24.68.120.95", "7");
INSERT INTO `wp_gf_form_view` VALUES("41139", "10", "2016-10-21 01:06:46", "24.68.120.95", "28");
INSERT INTO `wp_gf_form_view` VALUES("41140", "3", "2016-10-21 01:06:47", "24.68.120.95", "38");
INSERT INTO `wp_gf_form_view` VALUES("41141", "13", "2016-10-21 02:00:02", "96.54.193.217", "8");
INSERT INTO `wp_gf_form_view` VALUES("41142", "10", "2016-10-21 02:00:02", "96.54.193.217", "32");
INSERT INTO `wp_gf_form_view` VALUES("41143", "3", "2016-10-21 02:00:02", "96.54.193.217", "40");
INSERT INTO `wp_gf_form_view` VALUES("41144", "1", "2016-10-21 02:04:31", "24.68.130.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("41145", "2", "2016-10-21 02:28:06", "107.153.110.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("41146", "13", "2016-10-21 03:08:52", "202.46.51.190", "9");
INSERT INTO `wp_gf_form_view` VALUES("41147", "10", "2016-10-21 03:08:52", "202.46.51.190", "37");
INSERT INTO `wp_gf_form_view` VALUES("41148", "3", "2016-10-21 03:08:52", "202.46.51.190", "45");
INSERT INTO `wp_gf_form_view` VALUES("41149", "13", "2016-10-21 04:22:32", "24.244.32.200", "6");
INSERT INTO `wp_gf_form_view` VALUES("41150", "10", "2016-10-21 04:22:33", "24.244.32.200", "24");
INSERT INTO `wp_gf_form_view` VALUES("41151", "3", "2016-10-21 04:22:34", "24.244.32.200", "33");
INSERT INTO `wp_gf_form_view` VALUES("41152", "9", "2016-10-21 04:53:24", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41153", "13", "2016-10-21 05:10:15", "157.55.39.59", "42");
INSERT INTO `wp_gf_form_view` VALUES("41154", "10", "2016-10-21 05:10:15", "157.55.39.59", "176");
INSERT INTO `wp_gf_form_view` VALUES("41155", "3", "2016-10-21 05:10:15", "157.55.39.59", "211");
INSERT INTO `wp_gf_form_view` VALUES("41156", "11", "2016-10-21 05:19:13", "62.151.181.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("41157", "2", "2016-10-21 05:19:58", "62.151.181.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("41158", "13", "2016-10-21 06:05:41", "40.77.167.35", "23");
INSERT INTO `wp_gf_form_view` VALUES("41159", "10", "2016-10-21 06:05:42", "40.77.167.35", "92");
INSERT INTO `wp_gf_form_view` VALUES("41160", "3", "2016-10-21 06:05:42", "40.77.167.35", "116");
INSERT INTO `wp_gf_form_view` VALUES("41161", "1", "2016-10-21 06:10:59", "89.40.126.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("41162", "13", "2016-10-21 07:03:50", "157.55.39.214", "6");
INSERT INTO `wp_gf_form_view` VALUES("41163", "10", "2016-10-21 07:03:50", "157.55.39.214", "24");
INSERT INTO `wp_gf_form_view` VALUES("41164", "3", "2016-10-21 07:03:50", "157.55.39.214", "32");
INSERT INTO `wp_gf_form_view` VALUES("41165", "1", "2016-10-21 07:05:14", "190.120.123.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("41166", "1", "2016-10-21 08:29:10", "1.20.217.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("41167", "13", "2016-10-21 08:29:10", "1.20.217.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("41168", "10", "2016-10-21 08:29:10", "1.20.217.17", "12");
INSERT INTO `wp_gf_form_view` VALUES("41169", "3", "2016-10-21 08:29:10", "1.20.217.17", "16");
INSERT INTO `wp_gf_form_view` VALUES("41170", "12", "2016-10-21 09:07:42", "157.55.39.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41171", "13", "2016-10-21 09:07:43", "157.55.39.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("41172", "10", "2016-10-21 09:07:43", "157.55.39.62", "30");
INSERT INTO `wp_gf_form_view` VALUES("41173", "3", "2016-10-21 09:07:43", "157.55.39.62", "36");
INSERT INTO `wp_gf_form_view` VALUES("41174", "1", "2016-10-21 10:15:41", "113.53.62.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("41175", "13", "2016-10-21 10:15:42", "113.53.62.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("41176", "10", "2016-10-21 10:15:42", "113.53.62.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("41177", "3", "2016-10-21 10:15:43", "113.53.62.248", "5");
INSERT INTO `wp_gf_form_view` VALUES("41178", "13", "2016-10-21 11:02:30", "40.77.167.35", "20");
INSERT INTO `wp_gf_form_view` VALUES("41179", "10", "2016-10-21 11:02:30", "40.77.167.35", "80");
INSERT INTO `wp_gf_form_view` VALUES("41180", "3", "2016-10-21 11:02:31", "40.77.167.35", "108");
INSERT INTO `wp_gf_form_view` VALUES("41181", "1", "2016-10-21 11:45:24", "192.3.246.175", "4");
INSERT INTO `wp_gf_form_view` VALUES("41182", "3", "2016-10-21 12:00:37", "192.243.55.130", "39");
INSERT INTO `wp_gf_form_view` VALUES("41183", "1", "2016-10-21 12:01:28", "125.27.41.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("41184", "13", "2016-10-21 12:01:28", "125.27.41.103", "9");
INSERT INTO `wp_gf_form_view` VALUES("41185", "10", "2016-10-21 12:01:28", "125.27.41.103", "32");
INSERT INTO `wp_gf_form_view` VALUES("41186", "13", "2016-10-21 13:07:35", "157.55.39.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("41187", "10", "2016-10-21 13:07:36", "157.55.39.62", "20");
INSERT INTO `wp_gf_form_view` VALUES("41188", "3", "2016-10-21 13:07:36", "157.55.39.62", "27");
INSERT INTO `wp_gf_form_view` VALUES("41189", "13", "2016-10-21 14:27:47", "40.77.167.35", "7");
INSERT INTO `wp_gf_form_view` VALUES("41190", "10", "2016-10-21 14:27:48", "40.77.167.35", "28");
INSERT INTO `wp_gf_form_view` VALUES("41191", "3", "2016-10-21 14:27:49", "40.77.167.35", "36");
INSERT INTO `wp_gf_form_view` VALUES("41192", "3", "2016-10-21 15:00:09", "192.243.55.129", "65");
INSERT INTO `wp_gf_form_view` VALUES("41193", "13", "2016-10-21 15:00:09", "192.243.55.129", "12");
INSERT INTO `wp_gf_form_view` VALUES("41194", "10", "2016-10-21 15:00:10", "192.243.55.129", "48");
INSERT INTO `wp_gf_form_view` VALUES("41195", "7", "2016-10-21 15:19:38", "157.55.39.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41196", "13", "2016-10-21 16:05:07", "207.6.239.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("41197", "10", "2016-10-21 16:05:08", "207.6.239.173", "12");
INSERT INTO `wp_gf_form_view` VALUES("41198", "3", "2016-10-21 16:05:08", "207.6.239.173", "16");
INSERT INTO `wp_gf_form_view` VALUES("41199", "13", "2016-10-21 17:09:42", "108.180.146.104", "17");
INSERT INTO `wp_gf_form_view` VALUES("41200", "10", "2016-10-21 17:09:44", "108.180.146.104", "67");
INSERT INTO `wp_gf_form_view` VALUES("41201", "3", "2016-10-21 17:09:46", "108.180.146.104", "82");
INSERT INTO `wp_gf_form_view` VALUES("41202", "1", "2016-10-21 17:22:47", "157.55.39.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("41203", "8", "2016-10-21 17:41:27", "207.46.13.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("41204", "6", "2016-10-21 17:43:18", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("41205", "10", "2016-10-21 18:01:00", "202.46.54.108", "41");
INSERT INTO `wp_gf_form_view` VALUES("41206", "13", "2016-10-21 18:01:00", "202.46.54.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("41207", "3", "2016-10-21 18:01:00", "202.46.54.108", "50");
INSERT INTO `wp_gf_form_view` VALUES("41208", "6", "2016-10-21 18:09:48", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("41209", "10", "2016-10-21 19:07:43", "157.55.39.62", "73");
INSERT INTO `wp_gf_form_view` VALUES("41210", "13", "2016-10-21 19:07:43", "157.55.39.62", "18");
INSERT INTO `wp_gf_form_view` VALUES("41211", "3", "2016-10-21 19:07:43", "157.55.39.62", "90");
INSERT INTO `wp_gf_form_view` VALUES("41212", "5", "2016-10-21 20:21:21", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("41213", "13", "2016-10-21 20:21:22", "77.75.76.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("41214", "10", "2016-10-21 20:21:22", "77.75.76.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("41215", "3", "2016-10-21 20:21:22", "77.75.76.162", "11");
INSERT INTO `wp_gf_form_view` VALUES("41216", "13", "2016-10-21 21:02:15", "184.66.134.122", "28");
INSERT INTO `wp_gf_form_view` VALUES("41217", "10", "2016-10-21 21:02:18", "184.66.134.122", "108");
INSERT INTO `wp_gf_form_view` VALUES("41218", "3", "2016-10-21 21:02:19", "184.66.134.122", "142");
INSERT INTO `wp_gf_form_view` VALUES("41219", "13", "2016-10-21 22:16:42", "66.249.79.148", "59");
INSERT INTO `wp_gf_form_view` VALUES("41220", "10", "2016-10-21 22:16:42", "66.249.79.148", "233");
INSERT INTO `wp_gf_form_view` VALUES("41221", "3", "2016-10-21 22:16:42", "66.249.79.148", "296");
INSERT INTO `wp_gf_form_view` VALUES("41222", "2", "2016-10-21 22:51:08", "52.45.154.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("41223", "11", "2016-10-21 22:51:18", "52.55.215.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("41224", "13", "2016-10-21 23:09:00", "207.46.13.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("41225", "10", "2016-10-21 23:09:00", "207.46.13.136", "8");
INSERT INTO `wp_gf_form_view` VALUES("41226", "3", "2016-10-21 23:09:00", "207.46.13.136", "11");
INSERT INTO `wp_gf_form_view` VALUES("41227", "13", "2016-10-22 00:23:17", "157.55.39.214", "14");
INSERT INTO `wp_gf_form_view` VALUES("41228", "10", "2016-10-22 00:23:17", "157.55.39.214", "56");
INSERT INTO `wp_gf_form_view` VALUES("41229", "3", "2016-10-22 00:23:17", "157.55.39.214", "71");
INSERT INTO `wp_gf_form_view` VALUES("41230", "13", "2016-10-22 01:17:24", "66.249.79.152", "6");
INSERT INTO `wp_gf_form_view` VALUES("41231", "10", "2016-10-22 01:17:24", "66.249.79.152", "25");
INSERT INTO `wp_gf_form_view` VALUES("41232", "3", "2016-10-22 01:17:24", "66.249.79.152", "31");
INSERT INTO `wp_gf_form_view` VALUES("41233", "13", "2016-10-22 02:02:53", "68.180.228.30", "17");
INSERT INTO `wp_gf_form_view` VALUES("41234", "10", "2016-10-22 02:02:54", "68.180.228.30", "68");
INSERT INTO `wp_gf_form_view` VALUES("41235", "3", "2016-10-22 02:02:54", "68.180.228.30", "85");
INSERT INTO `wp_gf_form_view` VALUES("41236", "3", "2016-10-22 04:25:19", "157.55.39.62", "31");
INSERT INTO `wp_gf_form_view` VALUES("41237", "13", "2016-10-22 04:25:21", "157.55.39.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("41238", "10", "2016-10-22 04:25:21", "157.55.39.62", "16");
INSERT INTO `wp_gf_form_view` VALUES("41239", "13", "2016-10-22 05:00:02", "5.9.87.111", "81");
INSERT INTO `wp_gf_form_view` VALUES("41240", "10", "2016-10-22 05:00:02", "5.9.87.111", "314");
INSERT INTO `wp_gf_form_view` VALUES("41241", "3", "2016-10-22 05:00:02", "5.9.87.111", "401");
INSERT INTO `wp_gf_form_view` VALUES("41242", "1", "2016-10-22 05:00:09", "5.9.87.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("41243", "11", "2016-10-22 05:23:07", "198.27.80.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("41244", "2", "2016-10-22 05:23:11", "198.27.80.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("41245", "13", "2016-10-22 06:10:45", "77.75.78.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("41246", "10", "2016-10-22 06:10:45", "77.75.78.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("41247", "3", "2016-10-22 06:10:46", "77.75.78.165", "15");
INSERT INTO `wp_gf_form_view` VALUES("41248", "13", "2016-10-22 07:04:10", "204.79.180.184", "36");
INSERT INTO `wp_gf_form_view` VALUES("41249", "10", "2016-10-22 07:04:10", "204.79.180.184", "144");
INSERT INTO `wp_gf_form_view` VALUES("41250", "3", "2016-10-22 07:04:10", "204.79.180.184", "181");
INSERT INTO `wp_gf_form_view` VALUES("41251", "11", "2016-10-22 07:32:42", "142.0.42.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("41252", "2", "2016-10-22 07:33:32", "142.0.42.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("41253", "13", "2016-10-22 08:12:21", "77.75.79.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("41254", "10", "2016-10-22 08:12:22", "77.75.79.72", "8");
INSERT INTO `wp_gf_form_view` VALUES("41255", "3", "2016-10-22 08:12:22", "77.75.79.72", "10");
INSERT INTO `wp_gf_form_view` VALUES("41256", "3", "2016-10-22 09:01:49", "68.180.228.30", "41");
INSERT INTO `wp_gf_form_view` VALUES("41257", "13", "2016-10-22 09:01:49", "68.180.228.30", "8");
INSERT INTO `wp_gf_form_view` VALUES("41258", "10", "2016-10-22 09:01:49", "68.180.228.30", "32");
INSERT INTO `wp_gf_form_view` VALUES("41259", "7", "2016-10-22 09:58:08", "66.249.79.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("41260", "13", "2016-10-22 10:06:20", "163.172.65.34", "4");
INSERT INTO `wp_gf_form_view` VALUES("41261", "10", "2016-10-22 10:06:20", "163.172.65.34", "16");
INSERT INTO `wp_gf_form_view` VALUES("41262", "3", "2016-10-22 10:06:20", "163.172.65.34", "21");
INSERT INTO `wp_gf_form_view` VALUES("41263", "13", "2016-10-22 11:01:44", "68.180.228.30", "7");
INSERT INTO `wp_gf_form_view` VALUES("41264", "10", "2016-10-22 11:01:44", "68.180.228.30", "28");
INSERT INTO `wp_gf_form_view` VALUES("41265", "3", "2016-10-22 11:01:45", "68.180.228.30", "36");
INSERT INTO `wp_gf_form_view` VALUES("41266", "11", "2016-10-22 11:06:32", "77.75.76.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("41267", "13", "2016-10-22 12:12:12", "77.75.77.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("41268", "10", "2016-10-22 12:12:16", "77.75.77.72", "12");
INSERT INTO `wp_gf_form_view` VALUES("41269", "3", "2016-10-22 12:12:16", "77.75.77.72", "15");
INSERT INTO `wp_gf_form_view` VALUES("41270", "8", "2016-10-22 12:51:37", "204.79.180.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("41271", "13", "2016-10-22 13:39:08", "207.46.13.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("41272", "10", "2016-10-22 13:39:08", "207.46.13.136", "9");
INSERT INTO `wp_gf_form_view` VALUES("41273", "3", "2016-10-22 13:39:09", "207.46.13.136", "10");
INSERT INTO `wp_gf_form_view` VALUES("41274", "10", "2016-10-22 14:06:58", "68.180.228.30", "13");
INSERT INTO `wp_gf_form_view` VALUES("41275", "8", "2016-10-22 14:12:05", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("41276", "13", "2016-10-22 14:12:05", "66.249.79.152", "4");
INSERT INTO `wp_gf_form_view` VALUES("41277", "3", "2016-10-22 14:12:05", "66.249.79.152", "15");
INSERT INTO `wp_gf_form_view` VALUES("41278", "13", "2016-10-22 15:00:19", "68.180.228.30", "6");
INSERT INTO `wp_gf_form_view` VALUES("41279", "10", "2016-10-22 15:00:19", "68.180.228.30", "24");
INSERT INTO `wp_gf_form_view` VALUES("41280", "3", "2016-10-22 15:00:19", "68.180.228.30", "31");
INSERT INTO `wp_gf_form_view` VALUES("41281", "8", "2016-10-22 15:34:06", "207.46.13.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("41282", "3", "2016-10-22 16:16:53", "68.180.228.30", "21");
INSERT INTO `wp_gf_form_view` VALUES("41283", "13", "2016-10-22 16:16:53", "68.180.228.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("41284", "10", "2016-10-22 16:16:53", "68.180.228.30", "16");
INSERT INTO `wp_gf_form_view` VALUES("41285", "1", "2016-10-22 16:17:27", "112.29.141.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("41286", "13", "2016-10-22 17:14:28", "68.180.228.30", "6");
INSERT INTO `wp_gf_form_view` VALUES("41287", "10", "2016-10-22 17:14:32", "68.180.228.30", "20");
INSERT INTO `wp_gf_form_view` VALUES("41288", "3", "2016-10-22 17:14:33", "68.180.228.30", "27");
INSERT INTO `wp_gf_form_view` VALUES("41289", "3", "2016-10-22 17:14:33", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41290", "13", "2016-10-22 18:03:20", "68.180.228.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("41291", "10", "2016-10-22 18:03:20", "68.180.228.30", "29");
INSERT INTO `wp_gf_form_view` VALUES("41292", "3", "2016-10-22 18:03:21", "68.180.228.30", "38");
INSERT INTO `wp_gf_form_view` VALUES("41293", "13", "2016-10-22 19:02:06", "94.199.151.22", "95");
INSERT INTO `wp_gf_form_view` VALUES("41294", "10", "2016-10-22 19:02:07", "94.199.151.22", "354");
INSERT INTO `wp_gf_form_view` VALUES("41295", "3", "2016-10-22 19:02:08", "94.199.151.22", "463");
INSERT INTO `wp_gf_form_view` VALUES("41296", "11", "2016-10-22 19:03:51", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("41297", "2", "2016-10-22 19:04:32", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("41298", "1", "2016-10-22 19:21:12", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("41299", "3", "2016-10-22 20:09:55", "163.172.64.183", "16");
INSERT INTO `wp_gf_form_view` VALUES("41300", "13", "2016-10-22 20:09:55", "163.172.64.183", "3");
INSERT INTO `wp_gf_form_view` VALUES("41301", "10", "2016-10-22 20:09:55", "163.172.64.183", "12");
INSERT INTO `wp_gf_form_view` VALUES("41302", "13", "2016-10-22 21:27:56", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41303", "10", "2016-10-22 21:27:58", "68.180.228.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("41304", "3", "2016-10-22 21:27:58", "68.180.228.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("41305", "13", "2016-10-22 22:03:17", "68.180.228.30", "6");
INSERT INTO `wp_gf_form_view` VALUES("41306", "10", "2016-10-22 22:03:17", "68.180.228.30", "20");
INSERT INTO `wp_gf_form_view` VALUES("41307", "3", "2016-10-22 22:03:17", "68.180.228.30", "30");
INSERT INTO `wp_gf_form_view` VALUES("41308", "13", "2016-10-22 23:09:10", "68.180.228.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("41309", "10", "2016-10-22 23:09:11", "68.180.228.30", "379");
INSERT INTO `wp_gf_form_view` VALUES("41310", "3", "2016-10-22 23:09:11", "68.180.228.30", "589");
INSERT INTO `wp_gf_form_view` VALUES("41311", "1", "2016-10-22 23:24:02", "130.185.159.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("41312", "2", "2016-10-22 23:56:17", "207.46.13.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("41313", "8", "2016-10-22 23:56:22", "157.55.39.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("41314", "9", "2016-10-22 23:56:25", "207.46.13.98", "4");
INSERT INTO `wp_gf_form_view` VALUES("41315", "5", "2016-10-22 23:57:22", "207.46.13.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("41316", "6", "2016-10-22 23:57:34", "207.46.13.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("41317", "10", "2016-10-23 00:01:25", "202.46.50.181", "100");
INSERT INTO `wp_gf_form_view` VALUES("41318", "3", "2016-10-23 00:01:25", "202.46.50.181", "152");
INSERT INTO `wp_gf_form_view` VALUES("41319", "1", "2016-10-23 00:30:54", "120.52.73.97", "3");
INSERT INTO `wp_gf_form_view` VALUES("41320", "12", "2016-10-23 01:15:58", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("41321", "10", "2016-10-23 01:16:01", "66.249.79.152", "8");
INSERT INTO `wp_gf_form_view` VALUES("41322", "3", "2016-10-23 01:16:01", "66.249.79.152", "12");
INSERT INTO `wp_gf_form_view` VALUES("41323", "1", "2016-10-23 02:16:27", "110.5.96.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("41324", "10", "2016-10-23 02:16:29", "110.5.96.202", "63");
INSERT INTO `wp_gf_form_view` VALUES("41325", "3", "2016-10-23 02:16:35", "110.5.96.202", "97");
INSERT INTO `wp_gf_form_view` VALUES("41326", "12", "2016-10-23 02:44:09", "163.172.66.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("41327", "10", "2016-10-23 03:08:46", "164.132.161.68", "8");
INSERT INTO `wp_gf_form_view` VALUES("41328", "3", "2016-10-23 03:08:46", "164.132.161.68", "12");
INSERT INTO `wp_gf_form_view` VALUES("41329", "10", "2016-10-23 04:01:18", "77.75.78.168", "58");
INSERT INTO `wp_gf_form_view` VALUES("41330", "3", "2016-10-23 04:01:18", "77.75.78.168", "90");
INSERT INTO `wp_gf_form_view` VALUES("41331", "13", "2016-10-23 04:17:39", "66.249.79.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("41332", "1", "2016-10-23 04:24:51", "142.0.10.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("41333", "10", "2016-10-23 05:19:00", "66.249.79.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("41334", "3", "2016-10-23 05:19:04", "66.249.79.148", "30");
INSERT INTO `wp_gf_form_view` VALUES("41335", "1", "2016-10-23 05:29:29", "46.246.45.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("41336", "10", "2016-10-23 06:39:32", "164.132.161.35", "12");
INSERT INTO `wp_gf_form_view` VALUES("41337", "3", "2016-10-23 06:39:34", "164.132.161.35", "18");
INSERT INTO `wp_gf_form_view` VALUES("41338", "3", "2016-10-23 07:13:32", "68.180.228.30", "61");
INSERT INTO `wp_gf_form_view` VALUES("41339", "10", "2016-10-23 07:13:32", "68.180.228.30", "40");
INSERT INTO `wp_gf_form_view` VALUES("41340", "1", "2016-10-23 08:01:57", "103.42.1.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("41341", "10", "2016-10-23 08:01:57", "103.42.1.56", "28");
INSERT INTO `wp_gf_form_view` VALUES("41342", "3", "2016-10-23 08:01:57", "103.42.1.56", "43");
INSERT INTO `wp_gf_form_view` VALUES("41343", "10", "2016-10-23 09:41:21", "178.137.167.230", "42");
INSERT INTO `wp_gf_form_view` VALUES("41344", "10", "2016-10-23 09:41:21", "178.137.167.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("41345", "10", "2016-10-23 09:41:21", "178.137.167.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("41346", "3", "2016-10-23 09:41:22", "178.137.167.230", "65");
INSERT INTO `wp_gf_form_view` VALUES("41347", "3", "2016-10-23 09:41:22", "178.137.167.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("41348", "3", "2016-10-23 09:41:22", "178.137.167.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("41349", "1", "2016-10-23 09:42:45", "45.55.62.222", "3");
INSERT INTO `wp_gf_form_view` VALUES("41350", "10", "2016-10-23 10:18:29", "77.75.79.36", "9");
INSERT INTO `wp_gf_form_view` VALUES("41351", "3", "2016-10-23 10:18:29", "77.75.79.36", "12");
INSERT INTO `wp_gf_form_view` VALUES("41352", "3", "2016-10-23 11:01:27", "45.55.229.117", "144");
INSERT INTO `wp_gf_form_view` VALUES("41353", "10", "2016-10-23 11:01:27", "45.55.229.117", "92");
INSERT INTO `wp_gf_form_view` VALUES("41354", "11", "2016-10-23 11:01:28", "45.55.229.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("41355", "13", "2016-10-23 11:01:28", "45.55.229.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("41356", "2", "2016-10-23 11:01:28", "45.55.229.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("41357", "1", "2016-10-23 11:26:52", "176.123.129.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("41358", "10", "2016-10-23 12:19:43", "70.66.160.106", "48");
INSERT INTO `wp_gf_form_view` VALUES("41359", "3", "2016-10-23 12:19:45", "70.66.160.106", "80");
INSERT INTO `wp_gf_form_view` VALUES("41360", "5", "2016-10-23 12:49:08", "202.46.52.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("41361", "10", "2016-10-23 13:22:36", "204.79.180.70", "16");
INSERT INTO `wp_gf_form_view` VALUES("41362", "3", "2016-10-23 13:22:36", "204.79.180.70", "25");
INSERT INTO `wp_gf_form_view` VALUES("41363", "10", "2016-10-23 14:13:49", "77.75.79.11", "40");
INSERT INTO `wp_gf_form_view` VALUES("41364", "3", "2016-10-23 14:13:49", "77.75.79.11", "61");
INSERT INTO `wp_gf_form_view` VALUES("41365", "10", "2016-10-23 15:03:05", "202.46.55.121", "12");
INSERT INTO `wp_gf_form_view` VALUES("41366", "3", "2016-10-23 15:03:06", "202.46.55.121", "18");
INSERT INTO `wp_gf_form_view` VALUES("41367", "3", "2016-10-23 17:33:59", "66.249.79.148", "31");
INSERT INTO `wp_gf_form_view` VALUES("41368", "10", "2016-10-23 17:36:06", "162.210.196.100", "22");
INSERT INTO `wp_gf_form_view` VALUES("41369", "10", "2016-10-23 19:45:38", "66.249.79.152", "8");
INSERT INTO `wp_gf_form_view` VALUES("41370", "3", "2016-10-23 19:45:40", "66.249.79.152", "12");
INSERT INTO `wp_gf_form_view` VALUES("41371", "10", "2016-10-23 20:05:10", "70.35.202.173", "126");
INSERT INTO `wp_gf_form_view` VALUES("41372", "3", "2016-10-23 20:05:10", "70.35.202.173", "194");
INSERT INTO `wp_gf_form_view` VALUES("41373", "11", "2016-10-23 20:05:13", "70.35.202.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("41374", "2", "2016-10-23 20:05:57", "70.35.202.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("41375", "13", "2016-10-23 20:29:32", "163.172.66.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("41376", "10", "2016-10-23 21:02:26", "46.118.155.22", "40");
INSERT INTO `wp_gf_form_view` VALUES("41377", "3", "2016-10-23 21:02:27", "46.118.155.22", "60");
INSERT INTO `wp_gf_form_view` VALUES("41378", "1", "2016-10-23 22:29:23", "173.254.240.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("41379", "10", "2016-10-23 22:29:25", "173.254.240.250", "24");
INSERT INTO `wp_gf_form_view` VALUES("41380", "3", "2016-10-23 22:29:26", "173.254.240.250", "32");
INSERT INTO `wp_gf_form_view` VALUES("41381", "10", "2016-10-23 23:06:37", "104.142.127.7", "12");
INSERT INTO `wp_gf_form_view` VALUES("41382", "3", "2016-10-23 23:06:37", "104.142.127.7", "18");
INSERT INTO `wp_gf_form_view` VALUES("41383", "1", "2016-10-23 23:27:12", "207.46.13.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("41384", "3", "2016-10-24 01:11:45", "68.180.228.30", "13");
INSERT INTO `wp_gf_form_view` VALUES("41385", "10", "2016-10-24 01:11:46", "68.180.228.30", "9");
INSERT INTO `wp_gf_form_view` VALUES("41386", "10", "2016-10-24 02:03:28", "46.118.155.22", "72");
INSERT INTO `wp_gf_form_view` VALUES("41387", "3", "2016-10-24 02:03:28", "46.118.155.22", "108");
INSERT INTO `wp_gf_form_view` VALUES("41388", "10", "2016-10-24 03:19:39", "202.46.54.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("41389", "3", "2016-10-24 03:19:40", "202.46.54.108", "12");
INSERT INTO `wp_gf_form_view` VALUES("41390", "10", "2016-10-24 04:15:45", "24.68.17.97", "40");
INSERT INTO `wp_gf_form_view` VALUES("41391", "3", "2016-10-24 04:15:46", "24.68.17.97", "60");
INSERT INTO `wp_gf_form_view` VALUES("41392", "11", "2016-10-24 04:16:05", "164.132.161.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("41393", "1", "2016-10-24 04:43:26", "51.255.65.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("41394", "10", "2016-10-24 05:11:41", "96.44.120.239", "112");
INSERT INTO `wp_gf_form_view` VALUES("41395", "3", "2016-10-24 05:11:41", "96.44.120.239", "160");
INSERT INTO `wp_gf_form_view` VALUES("41396", "1", "2016-10-24 05:50:26", "104.223.30.63", "3");
INSERT INTO `wp_gf_form_view` VALUES("41397", "10", "2016-10-24 06:03:35", "66.249.79.148", "53");
INSERT INTO `wp_gf_form_view` VALUES("41398", "3", "2016-10-24 06:03:35", "66.249.79.148", "82");
INSERT INTO `wp_gf_form_view` VALUES("41399", "11", "2016-10-24 06:04:52", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41400", "1", "2016-10-24 06:05:06", "104.223.40.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("41401", "10", "2016-10-24 07:20:13", "66.249.79.152", "12");
INSERT INTO `wp_gf_form_view` VALUES("41402", "3", "2016-10-24 07:20:13", "66.249.79.152", "18");
INSERT INTO `wp_gf_form_view` VALUES("41403", "1", "2016-10-24 07:47:25", "172.93.188.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("41404", "10", "2016-10-24 08:06:39", "68.180.228.30", "20");
INSERT INTO `wp_gf_form_view` VALUES("41405", "3", "2016-10-24 08:06:39", "68.180.228.30", "30");
INSERT INTO `wp_gf_form_view` VALUES("41406", "10", "2016-10-24 10:08:18", "176.123.5.7", "1559");
INSERT INTO `wp_gf_form_view` VALUES("41407", "3", "2016-10-24 10:08:20", "176.123.5.7", "2365");
INSERT INTO `wp_gf_form_view` VALUES("41408", "1", "2016-10-24 10:14:45", "104.236.219.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("41409", "11", "2016-10-24 10:15:09", "104.236.219.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("41410", "6", "2016-10-24 10:36:20", "104.236.219.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("41411", "9", "2016-10-24 10:45:09", "104.236.219.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("41412", "3", "2016-10-24 11:00:15", "104.236.219.199", "1308");
INSERT INTO `wp_gf_form_view` VALUES("41413", "10", "2016-10-24 11:00:15", "104.236.219.199", "855");
INSERT INTO `wp_gf_form_view` VALUES("41414", "2", "2016-10-24 11:19:16", "104.236.219.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("41415", "1", "2016-10-24 11:20:09", "107.183.94.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("41416", "13", "2016-10-24 11:28:38", "104.236.219.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("41417", "8", "2016-10-24 11:32:26", "104.236.219.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("41418", "3", "2016-10-24 13:04:27", "77.75.78.169", "42");
INSERT INTO `wp_gf_form_view` VALUES("41419", "10", "2016-10-24 13:04:30", "77.75.78.169", "24");
INSERT INTO `wp_gf_form_view` VALUES("41420", "10", "2016-10-24 14:26:31", "77.75.79.32", "32");
INSERT INTO `wp_gf_form_view` VALUES("41421", "3", "2016-10-24 14:26:32", "77.75.79.32", "48");
INSERT INTO `wp_gf_form_view` VALUES("41422", "10", "2016-10-24 15:12:28", "77.75.76.167", "32");
INSERT INTO `wp_gf_form_view` VALUES("41423", "3", "2016-10-24 15:12:29", "77.75.76.167", "48");
INSERT INTO `wp_gf_form_view` VALUES("41424", "5", "2016-10-24 15:34:35", "202.46.49.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("41425", "1", "2016-10-24 16:01:52", "104.129.15.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("41426", "10", "2016-10-24 16:01:53", "104.129.15.168", "104");
INSERT INTO `wp_gf_form_view` VALUES("41427", "3", "2016-10-24 16:01:53", "104.129.15.168", "157");
INSERT INTO `wp_gf_form_view` VALUES("41428", "10", "2016-10-24 17:01:16", "192.95.21.152", "61");
INSERT INTO `wp_gf_form_view` VALUES("41429", "3", "2016-10-24 17:01:16", "192.95.21.152", "101");
INSERT INTO `wp_gf_form_view` VALUES("41430", "2", "2016-10-24 17:45:43", "192.243.55.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("41431", "10", "2016-10-24 18:02:03", "66.249.79.108", "22");
INSERT INTO `wp_gf_form_view` VALUES("41432", "3", "2016-10-24 18:22:03", "202.46.52.63", "30");
INSERT INTO `wp_gf_form_view` VALUES("41433", "3", "2016-10-24 19:00:40", "66.249.79.112", "77");
INSERT INTO `wp_gf_form_view` VALUES("41434", "10", "2016-10-24 19:00:40", "66.249.79.112", "42");
INSERT INTO `wp_gf_form_view` VALUES("41435", "10", "2016-10-24 20:01:23", "24.68.142.48", "32");
INSERT INTO `wp_gf_form_view` VALUES("41436", "3", "2016-10-24 20:01:24", "24.68.142.48", "48");
INSERT INTO `wp_gf_form_view` VALUES("41437", "3", "2016-10-24 21:02:47", "202.46.58.184", "131");
INSERT INTO `wp_gf_form_view` VALUES("41438", "10", "2016-10-24 21:02:47", "202.46.58.184", "87");
INSERT INTO `wp_gf_form_view` VALUES("41439", "2", "2016-10-24 21:31:29", "68.180.228.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("41440", "13", "2016-10-24 21:52:10", "209.52.88.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("41441", "11", "2016-10-24 21:59:53", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("41442", "3", "2016-10-24 22:00:00", "69.58.178.59", "80");
INSERT INTO `wp_gf_form_view` VALUES("41443", "10", "2016-10-24 22:00:00", "69.58.178.59", "49");
INSERT INTO `wp_gf_form_view` VALUES("41444", "3", "2016-10-24 23:13:01", "192.243.55.135", "38");
INSERT INTO `wp_gf_form_view` VALUES("41445", "10", "2016-10-24 23:13:03", "192.243.55.135", "24");
INSERT INTO `wp_gf_form_view` VALUES("41446", "10", "2016-10-25 00:00:47", "154.20.29.163", "52");
INSERT INTO `wp_gf_form_view` VALUES("41447", "3", "2016-10-25 00:00:47", "154.20.29.163", "78");
INSERT INTO `wp_gf_form_view` VALUES("41448", "10", "2016-10-25 01:00:48", "184.66.239.224", "16");
INSERT INTO `wp_gf_form_view` VALUES("41449", "3", "2016-10-25 01:00:49", "184.66.239.224", "24");
INSERT INTO `wp_gf_form_view` VALUES("41450", "10", "2016-10-25 02:03:48", "68.180.228.30", "29");
INSERT INTO `wp_gf_form_view` VALUES("41451", "3", "2016-10-25 02:03:49", "68.180.228.30", "45");
INSERT INTO `wp_gf_form_view` VALUES("41452", "10", "2016-10-25 03:42:35", "192.243.55.135", "42");
INSERT INTO `wp_gf_form_view` VALUES("41453", "3", "2016-10-25 03:42:37", "192.243.55.135", "60");
INSERT INTO `wp_gf_form_view` VALUES("41454", "10", "2016-10-25 04:22:09", "66.249.79.108", "51");
INSERT INTO `wp_gf_form_view` VALUES("41455", "3", "2016-10-25 04:22:10", "66.249.79.108", "74");
INSERT INTO `wp_gf_form_view` VALUES("41456", "10", "2016-10-25 05:05:08", "40.77.167.39", "32");
INSERT INTO `wp_gf_form_view` VALUES("41457", "3", "2016-10-25 05:05:08", "40.77.167.39", "56");
INSERT INTO `wp_gf_form_view` VALUES("41458", "1", "2016-10-25 05:14:27", "172.245.129.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("41459", "10", "2016-10-25 06:04:21", "96.50.18.6", "64");
INSERT INTO `wp_gf_form_view` VALUES("41460", "3", "2016-10-25 06:04:21", "96.50.18.6", "100");
INSERT INTO `wp_gf_form_view` VALUES("41461", "3", "2016-10-25 07:06:27", "164.132.161.97", "20");
INSERT INTO `wp_gf_form_view` VALUES("41462", "10", "2016-10-25 07:06:27", "164.132.161.97", "12");
INSERT INTO `wp_gf_form_view` VALUES("41463", "1", "2016-10-25 07:36:59", "175.141.168.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("41464", "10", "2016-10-25 08:02:53", "66.249.79.156", "32");
INSERT INTO `wp_gf_form_view` VALUES("41465", "3", "2016-10-25 08:02:54", "66.249.79.156", "49");
INSERT INTO `wp_gf_form_view` VALUES("41466", "10", "2016-10-25 09:01:15", "157.55.39.223", "50");
INSERT INTO `wp_gf_form_view` VALUES("41467", "3", "2016-10-25 09:01:15", "157.55.39.223", "72");
INSERT INTO `wp_gf_form_view` VALUES("41468", "13", "2016-10-25 09:05:30", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("41469", "10", "2016-10-25 10:00:54", "157.55.39.36", "514");
INSERT INTO `wp_gf_form_view` VALUES("41470", "3", "2016-10-25 10:00:55", "157.55.39.36", "783");
INSERT INTO `wp_gf_form_view` VALUES("41471", "10", "2016-10-25 11:01:05", "157.55.39.36", "108");
INSERT INTO `wp_gf_form_view` VALUES("41472", "3", "2016-10-25 11:01:06", "157.55.39.36", "174");
INSERT INTO `wp_gf_form_view` VALUES("41473", "9", "2016-10-25 11:08:04", "157.55.39.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("41474", "8", "2016-10-25 11:08:04", "157.55.39.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("41475", "10", "2016-10-25 12:06:32", "207.46.13.82", "49");
INSERT INTO `wp_gf_form_view` VALUES("41476", "3", "2016-10-25 12:06:32", "207.46.13.82", "75");
INSERT INTO `wp_gf_form_view` VALUES("41477", "2", "2016-10-25 12:18:36", "202.46.53.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("41478", "13", "2016-10-25 12:31:57", "207.46.13.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("41479", "10", "2016-10-25 13:08:21", "68.180.228.30", "32");
INSERT INTO `wp_gf_form_view` VALUES("41480", "3", "2016-10-25 13:08:21", "68.180.228.30", "54");
INSERT INTO `wp_gf_form_view` VALUES("41481", "10", "2016-10-25 14:16:56", "163.172.66.143", "4");
INSERT INTO `wp_gf_form_view` VALUES("41482", "3", "2016-10-25 14:16:59", "163.172.66.143", "6");
INSERT INTO `wp_gf_form_view` VALUES("41483", "10", "2016-10-25 15:04:53", "157.55.39.36", "12");
INSERT INTO `wp_gf_form_view` VALUES("41484", "3", "2016-10-25 15:04:54", "157.55.39.36", "20");
INSERT INTO `wp_gf_form_view` VALUES("41485", "10", "2016-10-25 16:13:04", "24.68.28.31", "48");
INSERT INTO `wp_gf_form_view` VALUES("41486", "3", "2016-10-25 16:13:04", "24.68.28.31", "72");
INSERT INTO `wp_gf_form_view` VALUES("41487", "1", "2016-10-25 16:26:26", "74.202.28.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("41488", "10", "2016-10-25 17:14:40", "46.119.119.89", "64");
INSERT INTO `wp_gf_form_view` VALUES("41489", "10", "2016-10-25 17:14:40", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41490", "3", "2016-10-25 17:14:45", "46.119.119.89", "86");
INSERT INTO `wp_gf_form_view` VALUES("41491", "3", "2016-10-25 17:14:45", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41492", "1", "2016-10-25 17:52:16", "96.50.6.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("41493", "5", "2016-10-25 17:59:46", "77.75.78.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("41494", "10", "2016-10-25 18:00:44", "202.46.51.201", "24");
INSERT INTO `wp_gf_form_view` VALUES("41495", "3", "2016-10-25 18:00:45", "202.46.51.201", "37");
INSERT INTO `wp_gf_form_view` VALUES("41496", "9", "2016-10-25 18:23:44", "157.55.39.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("41497", "3", "2016-10-25 19:18:05", "192.243.55.138", "112");
INSERT INTO `wp_gf_form_view` VALUES("41498", "10", "2016-10-25 19:18:08", "192.243.55.138", "68");
INSERT INTO `wp_gf_form_view` VALUES("41499", "13", "2016-10-25 19:52:10", "184.71.28.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("41500", "1", "2016-10-25 20:00:52", "155.94.179.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("41501", "10", "2016-10-25 20:00:52", "155.94.179.8", "72");
INSERT INTO `wp_gf_form_view` VALUES("41502", "3", "2016-10-25 20:00:52", "155.94.179.8", "111");
INSERT INTO `wp_gf_form_view` VALUES("41503", "3", "2016-10-25 21:02:42", "207.46.13.82", "64");
INSERT INTO `wp_gf_form_view` VALUES("41504", "10", "2016-10-25 21:02:42", "207.46.13.82", "40");
INSERT INTO `wp_gf_form_view` VALUES("41505", "10", "2016-10-25 22:13:24", "163.172.66.118", "68");
INSERT INTO `wp_gf_form_view` VALUES("41506", "3", "2016-10-25 22:13:24", "163.172.66.118", "134");
INSERT INTO `wp_gf_form_view` VALUES("41507", "10", "2016-10-25 23:15:38", "157.55.39.119", "16");
INSERT INTO `wp_gf_form_view` VALUES("41508", "3", "2016-10-25 23:15:40", "157.55.39.119", "25");
INSERT INTO `wp_gf_form_view` VALUES("41509", "10", "2016-10-26 00:05:29", "77.75.79.72", "60");
INSERT INTO `wp_gf_form_view` VALUES("41510", "3", "2016-10-26 00:05:29", "77.75.79.72", "92");
INSERT INTO `wp_gf_form_view` VALUES("41511", "3", "2016-10-26 01:19:50", "202.46.58.181", "51");
INSERT INTO `wp_gf_form_view` VALUES("41512", "10", "2016-10-26 01:19:53", "202.46.58.181", "32");
INSERT INTO `wp_gf_form_view` VALUES("41513", "10", "2016-10-26 02:13:55", "24.108.187.235", "31");
INSERT INTO `wp_gf_form_view` VALUES("41514", "3", "2016-10-26 02:13:55", "24.108.187.235", "54");
INSERT INTO `wp_gf_form_view` VALUES("41515", "10", "2016-10-26 03:00:04", "99.199.2.56", "32");
INSERT INTO `wp_gf_form_view` VALUES("41516", "3", "2016-10-26 03:00:04", "99.199.2.56", "48");
INSERT INTO `wp_gf_form_view` VALUES("41517", "12", "2016-10-26 03:32:45", "207.46.13.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("41518", "10", "2016-10-26 04:03:19", "207.46.13.82", "33");
INSERT INTO `wp_gf_form_view` VALUES("41519", "3", "2016-10-26 04:03:19", "207.46.13.82", "50");
INSERT INTO `wp_gf_form_view` VALUES("41520", "10", "2016-10-26 05:05:19", "178.137.95.202", "59");
INSERT INTO `wp_gf_form_view` VALUES("41521", "10", "2016-10-26 05:05:19", "178.137.95.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("41522", "3", "2016-10-26 05:05:20", "178.137.95.202", "92");
INSERT INTO `wp_gf_form_view` VALUES("41523", "3", "2016-10-26 05:05:20", "178.137.95.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("41524", "13", "2016-10-26 05:56:28", "163.172.65.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("41525", "3", "2016-10-26 06:05:02", "157.55.39.222", "37");
INSERT INTO `wp_gf_form_view` VALUES("41526", "10", "2016-10-26 06:05:02", "157.55.39.222", "24");
INSERT INTO `wp_gf_form_view` VALUES("41527", "10", "2016-10-26 07:03:43", "207.46.13.82", "56");
INSERT INTO `wp_gf_form_view` VALUES("41528", "3", "2016-10-26 07:03:43", "207.46.13.82", "86");
INSERT INTO `wp_gf_form_view` VALUES("41529", "3", "2016-10-26 08:28:04", "157.55.39.36", "14");
INSERT INTO `wp_gf_form_view` VALUES("41530", "10", "2016-10-26 08:28:06", "157.55.39.36", "8");
INSERT INTO `wp_gf_form_view` VALUES("41531", "10", "2016-10-26 09:40:32", "207.46.13.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("41532", "3", "2016-10-26 09:40:35", "207.46.13.82", "6");
INSERT INTO `wp_gf_form_view` VALUES("41533", "3", "2016-10-26 10:33:05", "207.46.13.82", "71");
INSERT INTO `wp_gf_form_view` VALUES("41534", "10", "2016-10-26 10:33:06", "207.46.13.82", "44");
INSERT INTO `wp_gf_form_view` VALUES("41535", "1", "2016-10-26 10:49:45", "62.183.105.230", "3");
INSERT INTO `wp_gf_form_view` VALUES("41536", "10", "2016-10-26 11:05:18", "5.196.140.232", "17");
INSERT INTO `wp_gf_form_view` VALUES("41537", "3", "2016-10-26 11:05:18", "5.196.140.232", "24");
INSERT INTO `wp_gf_form_view` VALUES("41538", "1", "2016-10-26 11:11:01", "120.92.3.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("41539", "10", "2016-10-26 12:20:18", "109.169.29.30", "190");
INSERT INTO `wp_gf_form_view` VALUES("41540", "3", "2016-10-26 12:20:19", "109.169.29.30", "299");
INSERT INTO `wp_gf_form_view` VALUES("41541", "2", "2016-10-26 12:21:00", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41542", "11", "2016-10-26 12:21:27", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41543", "13", "2016-10-26 12:23:29", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41544", "10", "2016-10-26 13:04:20", "24.108.24.40", "41");
INSERT INTO `wp_gf_form_view` VALUES("41545", "3", "2016-10-26 13:04:21", "24.108.24.40", "72");
INSERT INTO `wp_gf_form_view` VALUES("41546", "3", "2016-10-26 14:12:25", "207.46.13.33", "37");
INSERT INTO `wp_gf_form_view` VALUES("41547", "10", "2016-10-26 14:12:25", "207.46.13.33", "24");
INSERT INTO `wp_gf_form_view` VALUES("41548", "1", "2016-10-26 14:39:06", "120.52.73.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("41549", "2", "2016-10-26 14:41:43", "202.46.55.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("41550", "3", "2016-10-26 15:02:56", "157.55.39.36", "56");
INSERT INTO `wp_gf_form_view` VALUES("41551", "10", "2016-10-26 15:02:56", "157.55.39.36", "36");
INSERT INTO `wp_gf_form_view` VALUES("41552", "8", "2016-10-26 15:24:10", "67.213.99.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("41553", "10", "2016-10-26 16:15:56", "157.55.39.222", "75");
INSERT INTO `wp_gf_form_view` VALUES("41554", "10", "2016-10-26 16:15:56", "178.137.95.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("41555", "3", "2016-10-26 16:15:56", "178.137.95.202", "105");
INSERT INTO `wp_gf_form_view` VALUES("41556", "1", "2016-10-26 16:23:11", "192.3.29.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("41557", "10", "2016-10-26 17:03:13", "163.172.65.247", "37");
INSERT INTO `wp_gf_form_view` VALUES("41558", "3", "2016-10-26 17:03:15", "163.172.65.247", "57");
INSERT INTO `wp_gf_form_view` VALUES("41559", "10", "2016-10-26 18:05:55", "192.240.106.138", "84");
INSERT INTO `wp_gf_form_view` VALUES("41560", "3", "2016-10-26 18:05:55", "192.240.106.138", "129");
INSERT INTO `wp_gf_form_view` VALUES("41561", "10", "2016-10-26 19:34:29", "157.55.39.36", "25");
INSERT INTO `wp_gf_form_view` VALUES("41562", "3", "2016-10-26 19:34:31", "157.55.39.36", "38");
INSERT INTO `wp_gf_form_view` VALUES("41563", "3", "2016-10-26 20:02:54", "207.46.13.33", "79");
INSERT INTO `wp_gf_form_view` VALUES("41564", "10", "2016-10-26 20:02:54", "207.46.13.33", "49");
INSERT INTO `wp_gf_form_view` VALUES("41565", "5", "2016-10-26 20:12:09", "163.172.66.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("41566", "11", "2016-10-26 20:58:45", "40.77.167.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("41567", "10", "2016-10-26 21:04:52", "184.71.30.118", "25");
INSERT INTO `wp_gf_form_view` VALUES("41568", "3", "2016-10-26 21:04:52", "184.71.30.118", "37");
INSERT INTO `wp_gf_form_view` VALUES("41569", "3", "2016-10-26 22:08:37", "157.55.39.36", "65");
INSERT INTO `wp_gf_form_view` VALUES("41570", "10", "2016-10-26 22:08:39", "157.55.39.36", "48");
INSERT INTO `wp_gf_form_view` VALUES("41571", "10", "2016-10-26 23:36:38", "207.46.13.82", "252");
INSERT INTO `wp_gf_form_view` VALUES("41572", "3", "2016-10-26 23:36:39", "207.46.13.82", "380");
INSERT INTO `wp_gf_form_view` VALUES("41573", "11", "2016-10-26 23:39:42", "62.151.181.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("41574", "2", "2016-10-26 23:40:27", "62.151.181.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("41575", "10", "2016-10-27 00:04:57", "163.172.65.15", "36");
INSERT INTO `wp_gf_form_view` VALUES("41576", "3", "2016-10-27 00:04:57", "163.172.65.15", "54");
INSERT INTO `wp_gf_form_view` VALUES("41577", "10", "2016-10-27 01:06:27", "68.180.228.30", "25");
INSERT INTO `wp_gf_form_view` VALUES("41578", "3", "2016-10-27 01:06:27", "68.180.228.30", "38");
INSERT INTO `wp_gf_form_view` VALUES("41579", "6", "2016-10-27 01:31:12", "164.132.161.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("41580", "10", "2016-10-27 02:02:10", "68.180.228.30", "28");
INSERT INTO `wp_gf_form_view` VALUES("41581", "3", "2016-10-27 02:02:10", "68.180.228.30", "42");
INSERT INTO `wp_gf_form_view` VALUES("41582", "10", "2016-10-27 03:25:24", "207.46.13.82", "17");
INSERT INTO `wp_gf_form_view` VALUES("41583", "3", "2016-10-27 03:25:25", "207.46.13.82", "24");
INSERT INTO `wp_gf_form_view` VALUES("41584", "10", "2016-10-27 04:14:53", "5.9.112.6", "47");
INSERT INTO `wp_gf_form_view` VALUES("41585", "3", "2016-10-27 04:14:55", "5.9.112.6", "67");
INSERT INTO `wp_gf_form_view` VALUES("41586", "3", "2016-10-27 05:17:02", "66.249.79.112", "53");
INSERT INTO `wp_gf_form_view` VALUES("41587", "10", "2016-10-27 05:17:03", "66.249.79.112", "32");
INSERT INTO `wp_gf_form_view` VALUES("41588", "10", "2016-10-27 06:13:19", "207.46.13.33", "28");
INSERT INTO `wp_gf_form_view` VALUES("41589", "3", "2016-10-27 06:13:20", "207.46.13.33", "43");
INSERT INTO `wp_gf_form_view` VALUES("41590", "8", "2016-10-27 07:18:06", "207.46.13.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("41591", "10", "2016-10-27 07:18:06", "207.46.13.33", "36");
INSERT INTO `wp_gf_form_view` VALUES("41592", "3", "2016-10-27 07:18:06", "207.46.13.33", "56");
INSERT INTO `wp_gf_form_view` VALUES("41593", "1", "2016-10-27 07:31:43", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("41594", "10", "2016-10-27 08:22:26", "66.249.79.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("41595", "3", "2016-10-27 08:22:26", "66.249.79.108", "12");
INSERT INTO `wp_gf_form_view` VALUES("41596", "10", "2016-10-27 10:17:02", "66.249.79.112", "4");
INSERT INTO `wp_gf_form_view` VALUES("41597", "3", "2016-10-27 10:17:04", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("41598", "10", "2016-10-27 11:02:47", "207.46.13.33", "36");
INSERT INTO `wp_gf_form_view` VALUES("41599", "3", "2016-10-27 11:02:47", "207.46.13.33", "55");
INSERT INTO `wp_gf_form_view` VALUES("41600", "10", "2016-10-27 12:03:37", "157.55.39.210", "61");
INSERT INTO `wp_gf_form_view` VALUES("41601", "3", "2016-10-27 12:03:38", "157.55.39.210", "92");
INSERT INTO `wp_gf_form_view` VALUES("41602", "10", "2016-10-27 13:20:00", "46.119.118.233", "20");
INSERT INTO `wp_gf_form_view` VALUES("41603", "3", "2016-10-27 13:20:01", "46.119.118.233", "30");
INSERT INTO `wp_gf_form_view` VALUES("41604", "10", "2016-10-27 14:05:08", "40.77.167.20", "25");
INSERT INTO `wp_gf_form_view` VALUES("41605", "3", "2016-10-27 14:05:12", "40.77.167.20", "37");
INSERT INTO `wp_gf_form_view` VALUES("41606", "13", "2016-10-27 15:00:14", "40.77.167.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("41607", "10", "2016-10-27 15:00:15", "40.77.167.91", "24");
INSERT INTO `wp_gf_form_view` VALUES("41608", "3", "2016-10-27 15:00:15", "40.77.167.91", "37");
INSERT INTO `wp_gf_form_view` VALUES("41609", "10", "2016-10-27 16:02:34", "193.182.189.194", "32");
INSERT INTO `wp_gf_form_view` VALUES("41610", "3", "2016-10-27 16:02:34", "193.182.189.194", "48");
INSERT INTO `wp_gf_form_view` VALUES("41611", "10", "2016-10-27 17:06:01", "207.6.239.173", "16");
INSERT INTO `wp_gf_form_view` VALUES("41612", "3", "2016-10-27 17:06:02", "207.6.239.173", "24");
INSERT INTO `wp_gf_form_view` VALUES("41613", "8", "2016-10-27 17:41:26", "192.243.55.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("41614", "3", "2016-10-27 18:04:21", "68.180.228.30", "28");
INSERT INTO `wp_gf_form_view` VALUES("41615", "10", "2016-10-27 18:04:22", "68.180.228.30", "16");
INSERT INTO `wp_gf_form_view` VALUES("41616", "10", "2016-10-27 19:48:54", "202.46.52.118", "4");
INSERT INTO `wp_gf_form_view` VALUES("41617", "3", "2016-10-27 19:48:56", "202.46.52.118", "6");
INSERT INTO `wp_gf_form_view` VALUES("41618", "10", "2016-10-27 20:00:38", "157.55.39.219", "40");
INSERT INTO `wp_gf_form_view` VALUES("41619", "3", "2016-10-27 20:00:39", "157.55.39.219", "63");
INSERT INTO `wp_gf_form_view` VALUES("41620", "10", "2016-10-27 21:07:52", "69.90.78.198", "24");
INSERT INTO `wp_gf_form_view` VALUES("41621", "3", "2016-10-27 21:07:52", "69.90.78.198", "37");
INSERT INTO `wp_gf_form_view` VALUES("41622", "10", "2016-10-27 22:37:12", "46.119.119.89", "43");
INSERT INTO `wp_gf_form_view` VALUES("41623", "10", "2016-10-27 22:37:12", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41624", "3", "2016-10-27 22:37:15", "46.119.119.89", "64");
INSERT INTO `wp_gf_form_view` VALUES("41625", "3", "2016-10-27 22:37:15", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41626", "3", "2016-10-27 22:37:15", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41627", "1", "2016-10-27 22:50:26", "65.31.85.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("41628", "10", "2016-10-27 23:02:03", "46.119.118.233", "44");
INSERT INTO `wp_gf_form_view` VALUES("41629", "3", "2016-10-27 23:02:03", "46.119.118.233", "66");
INSERT INTO `wp_gf_form_view` VALUES("41630", "1", "2016-10-28 00:34:40", "105.108.151.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("41631", "10", "2016-10-28 00:34:41", "105.108.151.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("41632", "3", "2016-10-28 00:34:42", "105.108.151.51", "6");
INSERT INTO `wp_gf_form_view` VALUES("41633", "10", "2016-10-28 01:04:14", "157.55.39.157", "12");
INSERT INTO `wp_gf_form_view` VALUES("41634", "3", "2016-10-28 01:04:15", "157.55.39.157", "19");
INSERT INTO `wp_gf_form_view` VALUES("41635", "13", "2016-10-28 02:02:23", "105.112.32.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("41636", "10", "2016-10-28 02:02:23", "105.112.32.200", "16");
INSERT INTO `wp_gf_form_view` VALUES("41637", "3", "2016-10-28 02:02:23", "105.112.32.200", "24");
INSERT INTO `wp_gf_form_view` VALUES("41638", "11", "2016-10-28 02:05:44", "105.112.32.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("41639", "10", "2016-10-28 03:29:24", "24.68.17.97", "7");
INSERT INTO `wp_gf_form_view` VALUES("41640", "10", "2016-10-28 03:29:24", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("41641", "3", "2016-10-28 03:29:26", "24.68.17.97", "11");
INSERT INTO `wp_gf_form_view` VALUES("41642", "3", "2016-10-28 03:29:26", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("41643", "10", "2016-10-28 04:20:55", "68.180.228.30", "92");
INSERT INTO `wp_gf_form_view` VALUES("41644", "3", "2016-10-28 04:20:56", "68.180.228.30", "142");
INSERT INTO `wp_gf_form_view` VALUES("41645", "2", "2016-10-28 04:22:25", "45.55.232.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("41646", "11", "2016-10-28 04:22:25", "45.55.232.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("41647", "10", "2016-10-28 05:20:37", "5.248.253.78", "55");
INSERT INTO `wp_gf_form_view` VALUES("41648", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41649", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41650", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41651", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41652", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41653", "3", "2016-10-28 05:20:39", "5.248.253.78", "85");
INSERT INTO `wp_gf_form_view` VALUES("41654", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41655", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41656", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41657", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41658", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("41659", "10", "2016-10-28 06:09:39", "66.249.79.112", "13");
INSERT INTO `wp_gf_form_view` VALUES("41660", "3", "2016-10-28 06:09:41", "66.249.79.112", "19");
INSERT INTO `wp_gf_form_view` VALUES("41661", "10", "2016-10-28 07:16:39", "46.119.119.89", "26");
INSERT INTO `wp_gf_form_view` VALUES("41662", "10", "2016-10-28 07:16:39", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41663", "10", "2016-10-28 07:16:39", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41664", "3", "2016-10-28 07:16:41", "46.119.119.89", "40");
INSERT INTO `wp_gf_form_view` VALUES("41665", "3", "2016-10-28 07:16:41", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41666", "3", "2016-10-28 07:16:41", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41667", "3", "2016-10-28 08:05:20", "66.249.79.108", "63");
INSERT INTO `wp_gf_form_view` VALUES("41668", "10", "2016-10-28 08:05:22", "66.249.79.108", "40");
INSERT INTO `wp_gf_form_view` VALUES("41669", "13", "2016-10-28 08:56:26", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41670", "10", "2016-10-28 09:39:56", "202.46.58.84", "128");
INSERT INTO `wp_gf_form_view` VALUES("41671", "3", "2016-10-28 09:39:56", "202.46.58.84", "193");
INSERT INTO `wp_gf_form_view` VALUES("41672", "11", "2016-10-28 09:50:08", "70.35.199.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("41673", "2", "2016-10-28 09:50:56", "70.35.199.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("41674", "10", "2016-10-28 10:25:40", "68.180.228.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("41675", "3", "2016-10-28 10:25:41", "68.180.228.30", "6");
INSERT INTO `wp_gf_form_view` VALUES("41676", "1", "2016-10-28 11:11:54", "183.80.55.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("41677", "10", "2016-10-28 11:11:56", "183.80.55.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("41678", "3", "2016-10-28 11:12:03", "183.80.55.178", "12");
INSERT INTO `wp_gf_form_view` VALUES("41679", "10", "2016-10-28 12:21:04", "202.46.50.83", "4");
INSERT INTO `wp_gf_form_view` VALUES("41680", "3", "2016-10-28 12:21:06", "202.46.50.83", "6");
INSERT INTO `wp_gf_form_view` VALUES("41681", "10", "2016-10-28 13:53:39", "40.77.167.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("41682", "3", "2016-10-28 13:53:41", "40.77.167.20", "6");
INSERT INTO `wp_gf_form_view` VALUES("41683", "3", "2016-10-28 14:06:20", "192.243.55.132", "18");
INSERT INTO `wp_gf_form_view` VALUES("41684", "10", "2016-10-28 14:06:21", "192.243.55.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("41685", "10", "2016-10-28 16:02:41", "192.243.55.136", "16");
INSERT INTO `wp_gf_form_view` VALUES("41686", "3", "2016-10-28 16:02:43", "192.243.55.136", "24");
INSERT INTO `wp_gf_form_view` VALUES("41687", "9", "2016-10-28 16:59:25", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("41688", "10", "2016-10-28 17:11:54", "199.59.148.209", "8");
INSERT INTO `wp_gf_form_view` VALUES("41689", "3", "2016-10-28 17:11:54", "199.59.148.209", "12");
INSERT INTO `wp_gf_form_view` VALUES("41690", "6", "2016-10-28 17:40:46", "202.46.51.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("41691", "1", "2016-10-28 18:02:22", "192.243.55.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("41692", "10", "2016-10-28 18:02:24", "192.243.55.131", "76");
INSERT INTO `wp_gf_form_view` VALUES("41693", "3", "2016-10-28 18:02:25", "192.243.55.131", "106");
INSERT INTO `wp_gf_form_view` VALUES("41694", "3", "2016-10-28 19:03:30", "207.194.133.9", "87");
INSERT INTO `wp_gf_form_view` VALUES("41695", "10", "2016-10-28 19:03:32", "207.194.133.9", "56");
INSERT INTO `wp_gf_form_view` VALUES("41696", "10", "2016-10-28 20:23:01", "66.249.79.104", "223");
INSERT INTO `wp_gf_form_view` VALUES("41697", "3", "2016-10-28 20:23:01", "66.249.79.104", "351");
INSERT INTO `wp_gf_form_view` VALUES("41698", "9", "2016-10-28 20:25:10", "157.55.39.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("41699", "2", "2016-10-28 20:25:24", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("41700", "10", "2016-10-28 21:03:53", "68.231.178.113", "20");
INSERT INTO `wp_gf_form_view` VALUES("41701", "3", "2016-10-28 21:03:57", "68.231.178.113", "31");
INSERT INTO `wp_gf_form_view` VALUES("41702", "3", "2016-10-28 22:15:16", "68.180.228.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("41703", "10", "2016-10-28 23:16:45", "192.243.55.136", "5");
INSERT INTO `wp_gf_form_view` VALUES("41704", "3", "2016-10-28 23:16:49", "192.243.55.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("41705", "1", "2016-10-29 00:45:54", "107.150.79.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("41706", "10", "2016-10-29 00:45:56", "107.150.79.60", "12");
INSERT INTO `wp_gf_form_view` VALUES("41707", "3", "2016-10-29 00:45:59", "107.150.79.60", "18");
INSERT INTO `wp_gf_form_view` VALUES("41708", "10", "2016-10-29 01:27:39", "46.119.119.89", "38");
INSERT INTO `wp_gf_form_view` VALUES("41709", "10", "2016-10-29 01:27:39", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41710", "10", "2016-10-29 01:27:39", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41711", "3", "2016-10-29 01:27:40", "46.119.119.89", "59");
INSERT INTO `wp_gf_form_view` VALUES("41712", "3", "2016-10-29 01:27:40", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41713", "3", "2016-10-29 01:27:40", "46.119.119.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("41714", "1", "2016-10-29 01:38:05", "83.233.99.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("41715", "3", "2016-10-29 02:00:48", "192.243.55.136", "19");
INSERT INTO `wp_gf_form_view` VALUES("41716", "10", "2016-10-29 02:00:49", "192.243.55.136", "12");
INSERT INTO `wp_gf_form_view` VALUES("41717", "6", "2016-10-29 02:30:24", "192.243.55.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("41718", "3", "2016-10-29 03:19:47", "66.249.79.112", "77");
INSERT INTO `wp_gf_form_view` VALUES("41719", "10", "2016-10-29 03:19:51", "66.249.79.112", "48");
INSERT INTO `wp_gf_form_view` VALUES("41720", "11", "2016-10-29 03:45:18", "104.154.65.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("41721", "2", "2016-10-29 03:45:19", "104.154.65.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("41722", "10", "2016-10-29 04:28:27", "202.46.56.96", "16");
INSERT INTO `wp_gf_form_view` VALUES("41723", "3", "2016-10-29 04:28:28", "202.46.56.96", "25");
INSERT INTO `wp_gf_form_view` VALUES("41724", "9", "2016-10-29 04:35:45", "163.172.65.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("41725", "10", "2016-10-29 05:14:21", "184.66.154.17", "29");
INSERT INTO `wp_gf_form_view` VALUES("41726", "3", "2016-10-29 05:14:21", "184.66.154.17", "45");
INSERT INTO `wp_gf_form_view` VALUES("41727", "10", "2016-10-29 06:07:01", "66.249.79.108", "65");
INSERT INTO `wp_gf_form_view` VALUES("41728", "3", "2016-10-29 06:07:03", "66.249.79.108", "97");
INSERT INTO `wp_gf_form_view` VALUES("41729", "11", "2016-10-29 06:57:55", "70.35.207.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("41730", "10", "2016-10-29 07:00:02", "70.35.207.61", "88");
INSERT INTO `wp_gf_form_view` VALUES("41731", "3", "2016-10-29 07:00:02", "70.35.207.61", "135");
INSERT INTO `wp_gf_form_view` VALUES("41732", "2", "2016-10-29 07:00:24", "70.35.207.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("41733", "3", "2016-10-29 08:10:08", "164.132.161.56", "67");
INSERT INTO `wp_gf_form_view` VALUES("41734", "10", "2016-10-29 08:10:09", "164.132.161.56", "44");
INSERT INTO `wp_gf_form_view` VALUES("41735", "10", "2016-10-29 09:18:10", "54.146.148.233", "143");
INSERT INTO `wp_gf_form_view` VALUES("41736", "10", "2016-10-29 09:18:10", "54.146.148.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("41737", "3", "2016-10-29 09:18:12", "54.146.148.233", "216");
INSERT INTO `wp_gf_form_view` VALUES("41738", "3", "2016-10-29 09:18:12", "54.146.148.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("41739", "11", "2016-10-29 09:18:20", "54.146.148.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("41740", "2", "2016-10-29 09:18:22", "54.146.148.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("41741", "3", "2016-10-29 11:25:04", "192.243.55.129", "25");
INSERT INTO `wp_gf_form_view` VALUES("41742", "10", "2016-10-29 11:25:06", "192.243.55.129", "17");
INSERT INTO `wp_gf_form_view` VALUES("41743", "10", "2016-10-29 12:46:29", "66.249.79.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("41744", "3", "2016-10-29 12:46:32", "66.249.79.108", "7");
INSERT INTO `wp_gf_form_view` VALUES("41745", "12", "2016-10-29 13:03:59", "207.46.13.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("41746", "10", "2016-10-29 13:03:59", "207.46.13.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("41747", "3", "2016-10-29 13:03:59", "207.46.13.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("41748", "3", "2016-10-29 14:01:17", "192.243.55.129", "19");
INSERT INTO `wp_gf_form_view` VALUES("41749", "10", "2016-10-29 14:01:17", "192.243.55.129", "13");
INSERT INTO `wp_gf_form_view` VALUES("41750", "10", "2016-10-29 16:02:52", "157.55.39.251", "21");
INSERT INTO `wp_gf_form_view` VALUES("41751", "3", "2016-10-29 16:02:55", "157.55.39.251", "31");
INSERT INTO `wp_gf_form_view` VALUES("41752", "10", "2016-10-29 17:01:39", "46.119.118.233", "56");
INSERT INTO `wp_gf_form_view` VALUES("41753", "3", "2016-10-29 17:01:39", "46.119.118.233", "86");
INSERT INTO `wp_gf_form_view` VALUES("41754", "10", "2016-10-29 18:03:06", "66.249.79.112", "19");
INSERT INTO `wp_gf_form_view` VALUES("41755", "3", "2016-10-29 18:03:06", "66.249.79.112", "21");
INSERT INTO `wp_gf_form_view` VALUES("41756", "10", "2016-10-29 19:01:47", "163.172.65.22", "24");
INSERT INTO `wp_gf_form_view` VALUES("41757", "3", "2016-10-29 19:01:49", "163.172.65.22", "40");
INSERT INTO `wp_gf_form_view` VALUES("41758", "1", "2016-10-29 19:02:32", "85.24.135.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("41759", "11", "2016-10-29 19:27:39", "192.243.55.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("41760", "10", "2016-10-29 20:32:22", "157.55.39.251", "44");
INSERT INTO `wp_gf_form_view` VALUES("41761", "3", "2016-10-29 20:32:24", "157.55.39.251", "69");
INSERT INTO `wp_gf_form_view` VALUES("41762", "1", "2016-10-29 20:46:52", "103.253.145.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("41763", "10", "2016-10-29 21:24:07", "66.249.79.108", "32");
INSERT INTO `wp_gf_form_view` VALUES("41764", "3", "2016-10-29 21:24:08", "66.249.79.108", "48");
INSERT INTO `wp_gf_form_view` VALUES("41765", "10", "2016-10-29 22:08:51", "68.180.228.30", "17");
INSERT INTO `wp_gf_form_view` VALUES("41766", "3", "2016-10-29 22:08:51", "68.180.228.30", "24");
INSERT INTO `wp_gf_form_view` VALUES("41767", "10", "2016-10-29 23:05:35", "184.66.32.165", "8");
INSERT INTO `wp_gf_form_view` VALUES("41768", "3", "2016-10-29 23:05:35", "184.66.32.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("41769", "3", "2016-10-30 00:01:58", "66.249.79.108", "83");
INSERT INTO `wp_gf_form_view` VALUES("41770", "10", "2016-10-30 00:04:28", "24.244.32.148", "52");
INSERT INTO `wp_gf_form_view` VALUES("41771", "1", "2016-10-30 00:37:14", "68.170.111.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("41772", "3", "2016-10-30 01:12:52", "202.46.55.123", "68");
INSERT INTO `wp_gf_form_view` VALUES("41773", "10", "2016-10-30 01:12:52", "202.46.55.123", "44");
INSERT INTO `wp_gf_form_view` VALUES("41774", "1", "2016-10-30 01:58:01", "108.180.150.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("41775", "3", "2016-10-30 02:00:23", "108.180.150.101", "60");
INSERT INTO `wp_gf_form_view` VALUES("41776", "10", "2016-10-30 02:00:24", "108.180.150.101", "40");
INSERT INTO `wp_gf_form_view` VALUES("41777", "3", "2016-10-30 03:00:49", "163.172.64.233", "74");
INSERT INTO `wp_gf_form_view` VALUES("41778", "10", "2016-10-30 03:00:49", "163.172.64.233", "48");
INSERT INTO `wp_gf_form_view` VALUES("41779", "3", "2016-10-30 04:00:17", "202.46.51.199", "73");
INSERT INTO `wp_gf_form_view` VALUES("41780", "10", "2016-10-30 04:00:17", "202.46.51.199", "48");
INSERT INTO `wp_gf_form_view` VALUES("41781", "2", "2016-10-30 04:34:25", "167.114.209.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("41782", "1", "2016-10-30 04:51:18", "112.200.86.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("41783", "1", "2016-10-30 05:22:09", "91.138.103.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("41784", "3", "2016-10-30 05:22:10", "91.138.103.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("41785", "10", "2016-10-30 05:22:10", "91.138.103.113", "4");
INSERT INTO `wp_gf_form_view` VALUES("41786", "3", "2016-10-30 06:01:07", "64.180.191.88", "42");
INSERT INTO `wp_gf_form_view` VALUES("41787", "10", "2016-10-30 06:01:07", "64.180.191.88", "28");
INSERT INTO `wp_gf_form_view` VALUES("41788", "1", "2016-10-30 06:24:23", "70.68.244.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("41789", "10", "2016-10-30 09:37:01", "157.55.39.251", "5");
INSERT INTO `wp_gf_form_view` VALUES("41790", "3", "2016-10-30 09:37:03", "157.55.39.251", "6");
INSERT INTO `wp_gf_form_view` VALUES("41791", "10", "2016-10-30 10:20:48", "68.180.228.30", "33");
INSERT INTO `wp_gf_form_view` VALUES("41792", "3", "2016-10-30 10:20:49", "68.180.228.30", "49");
INSERT INTO `wp_gf_form_view` VALUES("41793", "3", "2016-10-30 11:06:48", "202.46.50.153", "17");
INSERT INTO `wp_gf_form_view` VALUES("41794", "10", "2016-10-30 11:06:49", "202.46.50.153", "8");
INSERT INTO `wp_gf_form_view` VALUES("41795", "10", "2016-10-30 12:12:10", "68.180.228.30", "23");
INSERT INTO `wp_gf_form_view` VALUES("41796", "3", "2016-10-30 12:12:12", "68.180.228.30", "26");
INSERT INTO `wp_gf_form_view` VALUES("41797", "3", "2016-10-30 14:17:47", "66.249.79.112", "18");
INSERT INTO `wp_gf_form_view` VALUES("41798", "10", "2016-10-30 14:17:48", "66.249.79.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("41799", "3", "2016-10-30 15:48:47", "157.55.39.251", "6");
INSERT INTO `wp_gf_form_view` VALUES("41800", "10", "2016-10-30 15:48:49", "157.55.39.251", "4");
INSERT INTO `wp_gf_form_view` VALUES("41801", "3", "2016-10-30 16:08:27", "46.119.119.89", "37");
INSERT INTO `wp_gf_form_view` VALUES("41802", "10", "2016-10-30 16:08:27", "46.119.119.89", "24");
INSERT INTO `wp_gf_form_view` VALUES("41803", "3", "2016-10-30 17:01:43", "157.55.39.81", "6");
INSERT INTO `wp_gf_form_view` VALUES("41804", "10", "2016-10-30 17:01:43", "157.55.39.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("41805", "3", "2016-10-30 18:35:25", "202.46.52.60", "6");
INSERT INTO `wp_gf_form_view` VALUES("41806", "10", "2016-10-30 18:35:26", "202.46.52.60", "4");
INSERT INTO `wp_gf_form_view` VALUES("41807", "3", "2016-10-30 21:04:56", "154.20.28.177", "12");
INSERT INTO `wp_gf_form_view` VALUES("41808", "10", "2016-10-30 21:04:57", "154.20.28.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("41809", "10", "2016-10-30 22:00:08", "68.180.228.30", "78");
INSERT INTO `wp_gf_form_view` VALUES("41810", "3", "2016-10-30 22:00:10", "68.180.228.30", "117");
INSERT INTO `wp_gf_form_view` VALUES("41811", "3", "2016-10-30 23:05:09", "68.180.228.30", "31");
INSERT INTO `wp_gf_form_view` VALUES("41812", "10", "2016-10-30 23:05:09", "68.180.228.30", "17");
INSERT INTO `wp_gf_form_view` VALUES("41813", "3", "2016-10-31 00:08:53", "157.55.39.251", "36");
INSERT INTO `wp_gf_form_view` VALUES("41814", "10", "2016-10-31 00:08:53", "157.55.39.251", "24");
INSERT INTO `wp_gf_form_view` VALUES("41815", "13", "2016-10-31 01:11:15", "164.132.161.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("41816", "3", "2016-10-31 01:11:15", "164.132.161.70", "12");
INSERT INTO `wp_gf_form_view` VALUES("41817", "10", "2016-10-31 01:11:15", "164.132.161.70", "8");
INSERT INTO `wp_gf_form_view` VALUES("41818", "1", "2016-10-31 01:28:42", "184.151.118.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("41819", "3", "2016-10-31 02:07:45", "178.137.95.202", "91");
INSERT INTO `wp_gf_form_view` VALUES("41820", "10", "2016-10-31 02:07:45", "178.137.95.202", "60");
INSERT INTO `wp_gf_form_view` VALUES("41821", "3", "2016-10-31 03:01:02", "24.69.72.2", "24");
INSERT INTO `wp_gf_form_view` VALUES("41822", "10", "2016-10-31 03:01:02", "24.69.72.2", "17");
INSERT INTO `wp_gf_form_view` VALUES("41823", "3", "2016-10-31 04:33:48", "202.46.54.162", "17");
INSERT INTO `wp_gf_form_view` VALUES("41824", "10", "2016-10-31 04:33:50", "202.46.54.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("41825", "3", "2016-10-31 05:05:15", "157.55.39.169", "33");
INSERT INTO `wp_gf_form_view` VALUES("41826", "10", "2016-10-31 05:05:17", "157.55.39.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("41827", "3", "2016-10-31 06:28:17", "202.46.49.76", "24");
INSERT INTO `wp_gf_form_view` VALUES("41828", "10", "2016-10-31 06:28:18", "202.46.49.76", "17");
INSERT INTO `wp_gf_form_view` VALUES("41829", "3", "2016-10-31 07:06:42", "62.210.177.34", "54");
INSERT INTO `wp_gf_form_view` VALUES("41830", "10", "2016-10-31 07:06:42", "62.210.177.34", "36");
INSERT INTO `wp_gf_form_view` VALUES("41831", "11", "2016-10-31 07:13:45", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41832", "3", "2016-10-31 08:10:54", "202.46.55.132", "38");
INSERT INTO `wp_gf_form_view` VALUES("41833", "10", "2016-10-31 08:10:54", "202.46.55.132", "20");
INSERT INTO `wp_gf_form_view` VALUES("41834", "12", "2016-10-31 08:33:27", "157.55.39.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("41835", "3", "2016-10-31 09:05:44", "220.181.108.165", "42");
INSERT INTO `wp_gf_form_view` VALUES("41836", "10", "2016-10-31 09:05:44", "220.181.108.165", "28");
INSERT INTO `wp_gf_form_view` VALUES("41837", "3", "2016-10-31 10:12:55", "164.132.161.32", "12");
INSERT INTO `wp_gf_form_view` VALUES("41838", "10", "2016-10-31 10:12:56", "164.132.161.32", "8");
INSERT INTO `wp_gf_form_view` VALUES("41839", "3", "2016-10-31 11:15:23", "66.249.79.108", "18");
INSERT INTO `wp_gf_form_view` VALUES("41840", "10", "2016-10-31 11:15:24", "66.249.79.108", "13");
INSERT INTO `wp_gf_form_view` VALUES("41841", "3", "2016-10-31 12:09:28", "68.180.228.30", "18");
INSERT INTO `wp_gf_form_view` VALUES("41842", "10", "2016-10-31 12:09:29", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("41843", "3", "2016-10-31 13:11:29", "178.137.95.202", "73");
INSERT INTO `wp_gf_form_view` VALUES("41844", "10", "2016-10-31 13:11:29", "178.137.95.202", "48");
INSERT INTO `wp_gf_form_view` VALUES("41845", "3", "2016-10-31 14:41:48", "163.172.65.241", "6");
INSERT INTO `wp_gf_form_view` VALUES("41846", "10", "2016-10-31 14:41:50", "163.172.65.241", "4");
INSERT INTO `wp_gf_form_view` VALUES("41847", "3", "2016-10-31 15:05:37", "64.180.191.88", "823");
INSERT INTO `wp_gf_form_view` VALUES("41848", "10", "2016-10-31 15:05:37", "64.180.191.88", "536");
INSERT INTO `wp_gf_form_view` VALUES("41849", "1", "2016-10-31 15:11:26", "157.55.39.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("41850", "11", "2016-10-31 15:11:35", "157.55.39.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("41851", "13", "2016-10-31 15:11:38", "157.55.39.91", "3");
INSERT INTO `wp_gf_form_view` VALUES("41852", "9", "2016-10-31 15:12:27", "157.55.39.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("41853", "8", "2016-10-31 15:12:51", "207.46.13.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("41854", "12", "2016-10-31 15:13:23", "157.55.39.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("41855", "3", "2016-10-31 16:06:45", "74.202.28.8", "24");
INSERT INTO `wp_gf_form_view` VALUES("41856", "10", "2016-10-31 16:06:45", "74.202.28.8", "16");
INSERT INTO `wp_gf_form_view` VALUES("41857", "3", "2016-10-31 17:15:25", "66.249.79.108", "56");
INSERT INTO `wp_gf_form_view` VALUES("41858", "10", "2016-10-31 17:15:27", "66.249.79.108", "36");
INSERT INTO `wp_gf_form_view` VALUES("41859", "3", "2016-10-31 18:10:39", "184.66.37.147", "36");
INSERT INTO `wp_gf_form_view` VALUES("41860", "10", "2016-10-31 18:10:51", "184.66.37.147", "24");
INSERT INTO `wp_gf_form_view` VALUES("41861", "3", "2016-10-31 19:12:02", "68.180.228.30", "91");
INSERT INTO `wp_gf_form_view` VALUES("41862", "10", "2016-10-31 19:32:06", "37.187.171.167", "60");
INSERT INTO `wp_gf_form_view` VALUES("41863", "2", "2016-10-31 19:52:15", "45.32.129.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("41864", "3", "2016-10-31 20:01:11", "202.46.56.110", "90");
INSERT INTO `wp_gf_form_view` VALUES("41865", "10", "2016-10-31 20:01:11", "202.46.56.110", "60");
INSERT INTO `wp_gf_form_view` VALUES("41866", "1", "2016-10-31 20:52:01", "207.23.96.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("41867", "3", "2016-10-31 21:02:57", "163.172.64.188", "91");
INSERT INTO `wp_gf_form_view` VALUES("41868", "10", "2016-10-31 21:02:57", "163.172.64.188", "60");
INSERT INTO `wp_gf_form_view` VALUES("41869", "1", "2016-10-31 21:14:57", "73.154.200.88", "4");
INSERT INTO `wp_gf_form_view` VALUES("41870", "2", "2016-10-31 21:52:56", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41871", "3", "2016-10-31 22:09:19", "75.157.239.7", "92");
INSERT INTO `wp_gf_form_view` VALUES("41872", "10", "2016-10-31 22:09:19", "75.157.239.7", "60");
INSERT INTO `wp_gf_form_view` VALUES("41873", "3", "2016-10-31 23:24:13", "207.46.13.41", "73");
INSERT INTO `wp_gf_form_view` VALUES("41874", "10", "2016-10-31 23:24:16", "207.46.13.41", "48");
INSERT INTO `wp_gf_form_view` VALUES("41875", "2", "2016-10-31 23:55:13", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("41876", "11", "2016-10-31 23:58:56", "40.77.167.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("41877", "3", "2016-11-01 00:05:52", "54.193.8.140", "60");
INSERT INTO `wp_gf_form_view` VALUES("41878", "10", "2016-11-01 00:05:52", "54.193.8.140", "40");
INSERT INTO `wp_gf_form_view` VALUES("41879", "2", "2016-11-01 00:06:04", "54.193.8.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("41880", "1", "2016-11-01 00:06:11", "54.193.8.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("41881", "3", "2016-11-01 01:01:09", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("41882", "10", "2016-11-01 01:01:09", "66.249.79.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("41883", "3", "2016-11-01 02:23:15", "68.180.228.30", "75");
INSERT INTO `wp_gf_form_view` VALUES("41884", "10", "2016-11-01 02:23:17", "68.180.228.30", "48");
INSERT INTO `wp_gf_form_view` VALUES("41885", "3", "2016-11-01 03:00:19", "207.46.13.170", "153");
INSERT INTO `wp_gf_form_view` VALUES("41886", "10", "2016-11-01 03:00:19", "207.46.13.170", "102");
INSERT INTO `wp_gf_form_view` VALUES("41887", "11", "2016-11-01 03:00:21", "207.46.13.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("41888", "2", "2016-11-01 03:08:29", "207.46.13.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("41889", "3", "2016-11-01 04:01:08", "96.50.0.55", "54");
INSERT INTO `wp_gf_form_view` VALUES("41890", "10", "2016-11-01 04:01:08", "96.50.0.55", "36");
INSERT INTO `wp_gf_form_view` VALUES("41891", "3", "2016-11-01 05:13:34", "66.249.79.108", "73");
INSERT INTO `wp_gf_form_view` VALUES("41892", "10", "2016-11-01 05:13:37", "66.249.79.108", "48");
INSERT INTO `wp_gf_form_view` VALUES("41893", "3", "2016-11-01 06:13:17", "24.108.0.212", "38");
INSERT INTO `wp_gf_form_view` VALUES("41894", "10", "2016-11-01 06:13:18", "24.108.0.212", "24");
INSERT INTO `wp_gf_form_view` VALUES("41895", "1", "2016-11-01 07:17:39", "104.144.83.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("41896", "3", "2016-11-01 07:17:40", "104.144.83.153", "37");
INSERT INTO `wp_gf_form_view` VALUES("41897", "10", "2016-11-01 07:17:42", "104.144.83.153", "24");
INSERT INTO `wp_gf_form_view` VALUES("41898", "3", "2016-11-01 08:11:35", "163.172.66.52", "36");
INSERT INTO `wp_gf_form_view` VALUES("41899", "10", "2016-11-01 08:11:36", "163.172.66.52", "24");
INSERT INTO `wp_gf_form_view` VALUES("41900", "3", "2016-11-01 09:03:31", "66.249.79.112", "72");
INSERT INTO `wp_gf_form_view` VALUES("41901", "10", "2016-11-01 09:03:32", "66.249.79.112", "48");
INSERT INTO `wp_gf_form_view` VALUES("41902", "3", "2016-11-01 10:12:58", "66.249.79.104", "31");
INSERT INTO `wp_gf_form_view` VALUES("41903", "10", "2016-11-01 10:12:59", "66.249.79.104", "20");
INSERT INTO `wp_gf_form_view` VALUES("41904", "3", "2016-11-01 11:07:07", "68.180.228.30", "93");
INSERT INTO `wp_gf_form_view` VALUES("41905", "10", "2016-11-01 11:07:07", "68.180.228.30", "60");
INSERT INTO `wp_gf_form_view` VALUES("41906", "10", "2016-11-01 12:19:24", "68.180.228.30", "372");
INSERT INTO `wp_gf_form_view` VALUES("41907", "3", "2016-11-01 12:19:31", "68.180.228.30", "562");
INSERT INTO `wp_gf_form_view` VALUES("41908", "1", "2016-11-01 12:26:41", "192.3.247.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("41909", "2", "2016-11-01 12:39:37", "207.46.13.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("41910", "11", "2016-11-01 12:46:58", "207.46.13.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("41911", "3", "2016-11-01 13:00:05", "5.9.98.130", "2103");
INSERT INTO `wp_gf_form_view` VALUES("41912", "10", "2016-11-01 13:00:05", "5.9.98.130", "1314");
INSERT INTO `wp_gf_form_view` VALUES("41913", "13", "2016-11-01 13:03:12", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41914", "8", "2016-11-01 13:10:11", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41915", "9", "2016-11-01 13:10:22", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41916", "6", "2016-11-01 13:11:42", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41917", "3", "2016-11-01 14:03:48", "66.249.79.104", "2090");
INSERT INTO `wp_gf_form_view` VALUES("41918", "10", "2016-11-01 14:03:48", "66.249.79.104", "1309");
INSERT INTO `wp_gf_form_view` VALUES("41919", "12", "2016-11-01 14:27:44", "202.46.55.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("41920", "1", "2016-11-01 14:29:34", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("41921", "13", "2016-11-01 14:50:29", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("41922", "3", "2016-11-01 15:01:15", "202.46.55.171", "3048");
INSERT INTO `wp_gf_form_view` VALUES("41923", "10", "2016-11-01 15:01:15", "202.46.55.171", "1612");
INSERT INTO `wp_gf_form_view` VALUES("41924", "10", "2016-11-01 16:00:14", "5.9.98.130", "940");
INSERT INTO `wp_gf_form_view` VALUES("41925", "3", "2016-11-01 16:00:15", "5.9.98.130", "1038");
INSERT INTO `wp_gf_form_view` VALUES("41926", "3", "2016-11-01 17:16:52", "220.181.108.95", "1817");
INSERT INTO `wp_gf_form_view` VALUES("41927", "10", "2016-11-01 17:17:11", "220.181.108.95", "1040");
INSERT INTO `wp_gf_form_view` VALUES("41928", "3", "2016-11-01 18:02:41", "134.87.171.64", "3851");
INSERT INTO `wp_gf_form_view` VALUES("41929", "10", "2016-11-01 18:02:41", "134.87.171.64", "1705");
INSERT INTO `wp_gf_form_view` VALUES("41930", "1", "2016-11-01 18:28:44", "24.68.142.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("41931", "10", "2016-11-01 19:00:00", "5.9.98.130", "2111");
INSERT INTO `wp_gf_form_view` VALUES("41932", "3", "2016-11-01 19:00:00", "5.9.98.130", "1957");
INSERT INTO `wp_gf_form_view` VALUES("41933", "1", "2016-11-01 19:27:19", "155.133.43.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("41934", "3", "2016-11-01 20:00:00", "155.133.43.8", "619");
INSERT INTO `wp_gf_form_view` VALUES("41935", "10", "2016-11-01 20:00:00", "155.133.43.8", "284");
INSERT INTO `wp_gf_form_view` VALUES("41936", "1", "2016-11-01 20:00:08", "155.133.43.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("41937", "3", "2016-11-01 21:00:51", "66.249.79.112", "596");
INSERT INTO `wp_gf_form_view` VALUES("41938", "10", "2016-11-01 21:00:51", "66.249.79.112", "396");
INSERT INTO `wp_gf_form_view` VALUES("41939", "1", "2016-11-01 21:50:56", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("41940", "10", "2016-11-01 22:00:00", "5.9.98.130", "1748");
INSERT INTO `wp_gf_form_view` VALUES("41941", "3", "2016-11-01 22:00:00", "5.9.98.130", "3077");
INSERT INTO `wp_gf_form_view` VALUES("41942", "3", "2016-11-01 23:00:02", "5.9.98.130", "3423");
INSERT INTO `wp_gf_form_view` VALUES("41943", "10", "2016-11-01 23:00:05", "5.9.98.130", "1176");
INSERT INTO `wp_gf_form_view` VALUES("41944", "1", "2016-11-01 23:40:16", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("41945", "3", "2016-11-02 00:00:02", "5.9.98.130", "3902");
INSERT INTO `wp_gf_form_view` VALUES("41946", "10", "2016-11-02 00:00:03", "5.9.98.130", "1832");
INSERT INTO `wp_gf_form_view` VALUES("41947", "10", "2016-11-02 01:00:02", "5.9.98.130", "3049");
INSERT INTO `wp_gf_form_view` VALUES("41948", "3", "2016-11-02 01:00:02", "5.9.98.130", "2560");
INSERT INTO `wp_gf_form_view` VALUES("41949", "1", "2016-11-02 01:40:00", "155.133.43.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("41950", "10", "2016-11-02 02:00:00", "5.9.98.130", "1532");
INSERT INTO `wp_gf_form_view` VALUES("41951", "3", "2016-11-02 02:00:00", "5.9.98.130", "1715");
INSERT INTO `wp_gf_form_view` VALUES("41952", "2", "2016-11-02 02:07:51", "104.131.8.192", "2");
INSERT INTO `wp_gf_form_view` VALUES("41953", "11", "2016-11-02 02:07:55", "104.131.8.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("41954", "3", "2016-11-02 03:00:25", "174.129.237.157", "1279");
INSERT INTO `wp_gf_form_view` VALUES("41955", "10", "2016-11-02 03:00:25", "174.129.237.157", "596");
INSERT INTO `wp_gf_form_view` VALUES("41956", "2", "2016-11-02 03:23:06", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("41957", "11", "2016-11-02 03:23:12", "24.69.72.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("41958", "2", "2016-11-02 04:04:33", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("41959", "3", "2016-11-02 04:04:33", "66.249.79.104", "42");
INSERT INTO `wp_gf_form_view` VALUES("41960", "10", "2016-11-02 04:04:33", "66.249.79.104", "28");
INSERT INTO `wp_gf_form_view` VALUES("41961", "3", "2016-11-02 05:48:16", "68.180.228.30", "24");
INSERT INTO `wp_gf_form_view` VALUES("41962", "10", "2016-11-02 05:48:17", "68.180.228.30", "16");
INSERT INTO `wp_gf_form_view` VALUES("41963", "1", "2016-11-02 05:48:42", "23.250.79.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("41964", "3", "2016-11-02 06:09:00", "5.9.98.130", "2070");
INSERT INTO `wp_gf_form_view` VALUES("41965", "10", "2016-11-02 06:09:02", "5.9.98.130", "1194");
INSERT INTO `wp_gf_form_view` VALUES("41966", "11", "2016-11-02 06:09:18", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41967", "2", "2016-11-02 06:09:22", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41968", "1", "2016-11-02 06:11:31", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41969", "13", "2016-11-02 06:17:53", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41970", "8", "2016-11-02 06:24:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41971", "9", "2016-11-02 06:24:41", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41972", "6", "2016-11-02 06:26:01", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("41973", "10", "2016-11-02 07:00:03", "5.9.98.130", "1618");
INSERT INTO `wp_gf_form_view` VALUES("41974", "3", "2016-11-02 07:00:03", "5.9.98.130", "2423");
INSERT INTO `wp_gf_form_view` VALUES("41975", "3", "2016-11-02 08:02:28", "207.46.13.180", "3067");
INSERT INTO `wp_gf_form_view` VALUES("41976", "10", "2016-11-02 08:02:28", "207.46.13.180", "1656");
INSERT INTO `wp_gf_form_view` VALUES("41977", "10", "2016-11-02 09:00:02", "5.9.98.130", "870");
INSERT INTO `wp_gf_form_view` VALUES("41978", "3", "2016-11-02 09:00:02", "5.9.98.130", "982");
INSERT INTO `wp_gf_form_view` VALUES("41979", "3", "2016-11-02 10:02:25", "5.9.98.130", "3955");
INSERT INTO `wp_gf_form_view` VALUES("41980", "10", "2016-11-02 10:02:26", "5.9.98.130", "1756");
INSERT INTO `wp_gf_form_view` VALUES("41981", "3", "2016-11-02 11:00:04", "5.9.98.130", "3076");
INSERT INTO `wp_gf_form_view` VALUES("41982", "10", "2016-11-02 11:00:07", "5.9.98.130", "2716");
INSERT INTO `wp_gf_form_view` VALUES("41983", "3", "2016-11-02 12:00:10", "5.9.98.130", "979");
INSERT INTO `wp_gf_form_view` VALUES("41984", "10", "2016-11-02 12:00:10", "5.9.98.130", "524");
INSERT INTO `wp_gf_form_view` VALUES("41985", "3", "2016-11-02 13:02:22", "178.137.86.68", "1560");
INSERT INTO `wp_gf_form_view` VALUES("41986", "10", "2016-11-02 13:02:23", "178.137.86.68", "1039");
INSERT INTO `wp_gf_form_view` VALUES("41987", "10", "2016-11-02 13:02:23", "178.137.86.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("41988", "3", "2016-11-02 14:00:00", "5.9.98.130", "3750");
INSERT INTO `wp_gf_form_view` VALUES("41989", "10", "2016-11-02 14:00:00", "5.9.98.130", "1593");
INSERT INTO `wp_gf_form_view` VALUES("41990", "1", "2016-11-02 14:44:09", "67.78.176.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("41991", "3", "2016-11-02 15:00:00", "5.9.98.130", "4438");
INSERT INTO `wp_gf_form_view` VALUES("41992", "10", "2016-11-02 15:00:01", "5.9.98.130", "1670");
INSERT INTO `wp_gf_form_view` VALUES("41993", "3", "2016-11-02 16:00:00", "5.9.98.130", "3061");
INSERT INTO `wp_gf_form_view` VALUES("41994", "10", "2016-11-02 16:00:00", "5.9.98.130", "2917");
INSERT INTO `wp_gf_form_view` VALUES("41995", "10", "2016-11-02 17:00:00", "5.9.98.130", "2337");
INSERT INTO `wp_gf_form_view` VALUES("41996", "3", "2016-11-02 17:00:05", "5.9.98.130", "2178");
INSERT INTO `wp_gf_form_view` VALUES("41997", "3", "2016-11-02 18:02:17", "46.118.124.241", "786");
INSERT INTO `wp_gf_form_view` VALUES("41998", "10", "2016-11-02 18:02:17", "46.118.124.241", "373");
INSERT INTO `wp_gf_form_view` VALUES("41999", "3", "2016-11-02 19:00:03", "5.9.98.130", "577");
INSERT INTO `wp_gf_form_view` VALUES("42000", "10", "2016-11-02 19:00:04", "5.9.98.130", "271");
INSERT INTO `wp_gf_form_view` VALUES("42001", "1", "2016-11-02 20:04:00", "46.109.42.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("42002", "3", "2016-11-02 20:04:01", "46.109.42.47", "131");
INSERT INTO `wp_gf_form_view` VALUES("42003", "10", "2016-11-02 20:04:03", "46.109.42.47", "90");
INSERT INTO `wp_gf_form_view` VALUES("42004", "3", "2016-11-02 21:02:25", "5.9.98.130", "3230");
INSERT INTO `wp_gf_form_view` VALUES("42005", "10", "2016-11-02 21:02:26", "5.9.98.130", "2153");
INSERT INTO `wp_gf_form_view` VALUES("42006", "1", "2016-11-02 21:13:54", "23.95.185.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("42007", "13", "2016-11-02 21:55:14", "184.71.2.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("42008", "3", "2016-11-02 22:00:03", "5.9.98.130", "3321");
INSERT INTO `wp_gf_form_view` VALUES("42009", "10", "2016-11-02 22:00:03", "5.9.98.130", "1813");
INSERT INTO `wp_gf_form_view` VALUES("42010", "10", "2016-11-02 23:00:00", "5.9.98.130", "1279");
INSERT INTO `wp_gf_form_view` VALUES("42011", "3", "2016-11-02 23:00:00", "5.9.98.130", "4045");
INSERT INTO `wp_gf_form_view` VALUES("42012", "11", "2016-11-02 23:53:33", "77.75.77.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("42013", "3", "2016-11-03 00:00:02", "5.9.98.130", "4332");
INSERT INTO `wp_gf_form_view` VALUES("42014", "10", "2016-11-03 00:00:04", "5.9.98.130", "1556");
INSERT INTO `wp_gf_form_view` VALUES("42015", "3", "2016-11-03 01:00:11", "5.9.98.130", "3720");
INSERT INTO `wp_gf_form_view` VALUES("42016", "10", "2016-11-03 01:00:14", "5.9.98.130", "1242");
INSERT INTO `wp_gf_form_view` VALUES("42017", "3", "2016-11-03 02:17:10", "157.55.39.3", "223");
INSERT INTO `wp_gf_form_view` VALUES("42018", "10", "2016-11-03 02:17:11", "157.55.39.3", "148");
INSERT INTO `wp_gf_form_view` VALUES("42019", "11", "2016-11-03 02:18:22", "69.87.223.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("42020", "2", "2016-11-03 02:22:09", "69.87.223.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("42021", "3", "2016-11-03 03:16:13", "77.75.76.161", "805");
INSERT INTO `wp_gf_form_view` VALUES("42022", "10", "2016-11-03 03:16:15", "77.75.76.161", "524");
INSERT INTO `wp_gf_form_view` VALUES("42023", "13", "2016-11-03 03:48:09", "207.46.13.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("42024", "1", "2016-11-03 03:49:01", "157.55.39.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("42025", "11", "2016-11-03 03:49:10", "157.55.39.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("42026", "8", "2016-11-03 03:49:18", "207.46.13.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("42027", "12", "2016-11-03 03:49:42", "207.46.13.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("42028", "9", "2016-11-03 03:50:52", "157.55.39.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("42029", "1", "2016-11-03 04:01:51", "72.201.160.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("42030", "3", "2016-11-03 04:01:51", "72.201.160.172", "12");
INSERT INTO `wp_gf_form_view` VALUES("42031", "10", "2016-11-03 04:01:51", "72.201.160.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("42032", "3", "2016-11-03 05:11:32", "178.137.165.59", "85");
INSERT INTO `wp_gf_form_view` VALUES("42033", "3", "2016-11-03 05:11:32", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42034", "3", "2016-11-03 05:11:32", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42035", "10", "2016-11-03 05:11:34", "178.137.165.59", "54");
INSERT INTO `wp_gf_form_view` VALUES("42036", "10", "2016-11-03 05:11:34", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42037", "10", "2016-11-03 05:11:34", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42038", "3", "2016-11-03 06:01:17", "178.137.165.57", "49");
INSERT INTO `wp_gf_form_view` VALUES("42039", "10", "2016-11-03 06:01:17", "178.137.165.57", "32");
INSERT INTO `wp_gf_form_view` VALUES("42040", "3", "2016-11-03 07:39:42", "68.180.228.30", "7");
INSERT INTO `wp_gf_form_view` VALUES("42041", "10", "2016-11-03 07:39:44", "68.180.228.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("42042", "3", "2016-11-03 08:04:25", "5.248.253.78", "41");
INSERT INTO `wp_gf_form_view` VALUES("42043", "3", "2016-11-03 08:04:25", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42044", "10", "2016-11-03 08:04:26", "5.248.253.78", "26");
INSERT INTO `wp_gf_form_view` VALUES("42045", "10", "2016-11-03 08:04:26", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42046", "10", "2016-11-03 08:04:26", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42047", "3", "2016-11-03 09:05:44", "43.239.204.150", "12");
INSERT INTO `wp_gf_form_view` VALUES("42048", "10", "2016-11-03 09:05:46", "43.239.204.150", "8");
INSERT INTO `wp_gf_form_view` VALUES("42049", "1", "2016-11-03 10:47:19", "50.206.36.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("42050", "3", "2016-11-03 10:47:21", "50.206.36.214", "20");
INSERT INTO `wp_gf_form_view` VALUES("42051", "10", "2016-11-03 10:47:23", "50.206.36.214", "12");
INSERT INTO `wp_gf_form_view` VALUES("42052", "10", "2016-11-03 11:17:22", "77.75.76.167", "13");
INSERT INTO `wp_gf_form_view` VALUES("42053", "3", "2016-11-03 11:17:29", "77.75.76.167", "18");
INSERT INTO `wp_gf_form_view` VALUES("42054", "3", "2016-11-03 12:17:14", "202.46.56.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("42055", "10", "2016-11-03 12:17:15", "202.46.56.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("42056", "3", "2016-11-03 13:25:30", "77.75.76.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("42057", "10", "2016-11-03 13:25:32", "77.75.76.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("42058", "3", "2016-11-03 14:17:12", "68.180.228.30", "49");
INSERT INTO `wp_gf_form_view` VALUES("42059", "10", "2016-11-03 14:17:13", "68.180.228.30", "32");
INSERT INTO `wp_gf_form_view` VALUES("42060", "3", "2016-11-03 15:03:00", "77.75.78.161", "57");
INSERT INTO `wp_gf_form_view` VALUES("42061", "10", "2016-11-03 15:03:00", "77.75.78.161", "37");
INSERT INTO `wp_gf_form_view` VALUES("42062", "1", "2016-11-03 15:13:46", "77.120.224.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("42063", "3", "2016-11-03 16:20:00", "24.69.139.130", "105");
INSERT INTO `wp_gf_form_view` VALUES("42064", "10", "2016-11-03 16:20:01", "24.69.139.130", "65");
INSERT INTO `wp_gf_form_view` VALUES("42065", "12", "2016-11-03 16:31:55", "82.196.7.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("42066", "3", "2016-11-03 17:08:37", "66.249.79.104", "81");
INSERT INTO `wp_gf_form_view` VALUES("42067", "10", "2016-11-03 17:08:38", "66.249.79.104", "52");
INSERT INTO `wp_gf_form_view` VALUES("42068", "1", "2016-11-03 17:12:14", "190.152.59.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("42069", "3", "2016-11-03 18:05:32", "184.66.142.114", "139");
INSERT INTO `wp_gf_form_view` VALUES("42070", "10", "2016-11-03 18:05:33", "184.66.142.114", "87");
INSERT INTO `wp_gf_form_view` VALUES("42071", "3", "2016-11-03 19:00:16", "207.6.182.55", "43");
INSERT INTO `wp_gf_form_view` VALUES("42072", "10", "2016-11-03 19:00:16", "207.6.182.55", "28");
INSERT INTO `wp_gf_form_view` VALUES("42073", "1", "2016-11-03 20:10:31", "61.238.32.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("42074", "3", "2016-11-03 20:10:31", "61.238.32.69", "90");
INSERT INTO `wp_gf_form_view` VALUES("42075", "10", "2016-11-03 20:10:31", "61.238.32.69", "60");
INSERT INTO `wp_gf_form_view` VALUES("42076", "3", "2016-11-03 21:04:50", "202.46.51.102", "35");
INSERT INTO `wp_gf_form_view` VALUES("42077", "10", "2016-11-03 21:04:51", "202.46.51.102", "20");
INSERT INTO `wp_gf_form_view` VALUES("42078", "1", "2016-11-03 21:46:16", "198.8.80.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("42079", "3", "2016-11-03 22:04:52", "192.243.55.130", "21");
INSERT INTO `wp_gf_form_view` VALUES("42080", "10", "2016-11-03 22:04:52", "192.243.55.130", "12");
INSERT INTO `wp_gf_form_view` VALUES("42081", "3", "2016-11-03 23:29:36", "178.137.165.57", "49");
INSERT INTO `wp_gf_form_view` VALUES("42082", "3", "2016-11-03 23:29:36", "178.137.165.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42083", "10", "2016-11-03 23:29:37", "178.137.165.57", "30");
INSERT INTO `wp_gf_form_view` VALUES("42084", "10", "2016-11-03 23:29:37", "178.137.165.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42085", "10", "2016-11-03 23:29:37", "178.137.165.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42086", "3", "2016-11-04 00:06:02", "40.77.167.17", "2351");
INSERT INTO `wp_gf_form_view` VALUES("42087", "10", "2016-11-04 00:06:02", "40.77.167.17", "1465");
INSERT INTO `wp_gf_form_view` VALUES("42088", "1", "2016-11-04 00:23:37", "104.131.45.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("42089", "11", "2016-11-04 00:23:42", "104.131.45.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("42090", "2", "2016-11-04 00:45:05", "104.131.45.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("42091", "6", "2016-11-04 00:57:37", "104.131.45.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("42092", "3", "2016-11-04 01:00:22", "104.131.45.88", "1531");
INSERT INTO `wp_gf_form_view` VALUES("42093", "10", "2016-11-04 01:00:22", "104.131.45.88", "1009");
INSERT INTO `wp_gf_form_view` VALUES("42094", "9", "2016-11-04 01:06:17", "104.131.45.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("42095", "13", "2016-11-04 01:40:22", "104.131.45.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("42096", "8", "2016-11-04 01:40:32", "104.131.45.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("42097", "1", "2016-11-04 01:52:26", "192.3.247.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("42098", "3", "2016-11-04 02:09:11", "66.249.79.112", "10");
INSERT INTO `wp_gf_form_view` VALUES("42099", "10", "2016-11-04 02:09:11", "66.249.79.112", "5");
INSERT INTO `wp_gf_form_view` VALUES("42100", "3", "2016-11-04 03:33:24", "192.243.55.130", "158");
INSERT INTO `wp_gf_form_view` VALUES("42101", "10", "2016-11-04 03:39:31", "174.127.133.79", "104");
INSERT INTO `wp_gf_form_view` VALUES("42102", "2", "2016-11-04 03:42:58", "174.127.133.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("42103", "11", "2016-11-04 03:46:52", "174.127.133.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("42104", "10", "2016-11-04 04:04:17", "174.127.133.77", "90");
INSERT INTO `wp_gf_form_view` VALUES("42105", "3", "2016-11-04 04:04:17", "174.127.133.77", "140");
INSERT INTO `wp_gf_form_view` VALUES("42106", "1", "2016-11-04 04:20:46", "174.127.133.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("42107", "10", "2016-11-04 05:45:38", "134.249.53.114", "24");
INSERT INTO `wp_gf_form_view` VALUES("42108", "3", "2016-11-04 05:45:39", "134.249.53.114", "35");
INSERT INTO `wp_gf_form_view` VALUES("42109", "3", "2016-11-04 05:45:39", "134.249.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42110", "10", "2016-11-04 07:23:26", "198.27.127.63", "4");
INSERT INTO `wp_gf_form_view` VALUES("42111", "3", "2016-11-04 07:23:30", "198.27.127.63", "6");
INSERT INTO `wp_gf_form_view` VALUES("42112", "10", "2016-11-04 08:15:11", "24.108.184.129", "12");
INSERT INTO `wp_gf_form_view` VALUES("42113", "3", "2016-11-04 08:15:13", "24.108.184.129", "19");
INSERT INTO `wp_gf_form_view` VALUES("42114", "10", "2016-11-04 09:14:51", "220.181.108.99", "12");
INSERT INTO `wp_gf_form_view` VALUES("42115", "3", "2016-11-04 09:14:54", "220.181.108.99", "18");
INSERT INTO `wp_gf_form_view` VALUES("42116", "10", "2016-11-04 10:02:59", "207.6.162.206", "417");
INSERT INTO `wp_gf_form_view` VALUES("42117", "3", "2016-11-04 10:02:59", "207.6.162.206", "649");
INSERT INTO `wp_gf_form_view` VALUES("42118", "9", "2016-11-04 10:29:16", "157.55.39.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("42119", "2", "2016-11-04 10:29:27", "157.55.39.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("42120", "6", "2016-11-04 10:29:55", "157.55.39.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("42121", "5", "2016-11-04 10:30:08", "157.55.39.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("42122", "13", "2016-11-04 10:30:21", "157.55.39.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("42123", "8", "2016-11-04 10:30:50", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("42124", "10", "2016-11-04 11:41:56", "178.137.165.59", "40");
INSERT INTO `wp_gf_form_view` VALUES("42125", "3", "2016-11-04 11:42:01", "178.137.165.59", "61");
INSERT INTO `wp_gf_form_view` VALUES("42126", "3", "2016-11-04 11:42:01", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42127", "3", "2016-11-04 11:42:01", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42128", "2", "2016-11-04 12:19:17", "192.243.55.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("42129", "10", "2016-11-04 12:19:17", "192.243.55.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("42130", "3", "2016-11-04 12:19:17", "192.243.55.138", "6");
INSERT INTO `wp_gf_form_view` VALUES("42131", "10", "2016-11-04 13:44:54", "202.46.48.95", "28");
INSERT INTO `wp_gf_form_view` VALUES("42132", "3", "2016-11-04 13:44:56", "202.46.48.95", "42");
INSERT INTO `wp_gf_form_view` VALUES("42133", "10", "2016-11-04 14:18:09", "75.156.32.189", "54");
INSERT INTO `wp_gf_form_view` VALUES("42134", "3", "2016-11-04 14:18:09", "75.156.32.189", "78");
INSERT INTO `wp_gf_form_view` VALUES("42135", "1", "2016-11-04 15:13:26", "76.73.241.175", "6");
INSERT INTO `wp_gf_form_view` VALUES("42136", "10", "2016-11-04 15:13:26", "76.73.241.175", "72");
INSERT INTO `wp_gf_form_view` VALUES("42137", "3", "2016-11-04 15:13:26", "76.73.241.175", "112");
INSERT INTO `wp_gf_form_view` VALUES("42138", "10", "2016-11-04 16:13:59", "163.172.64.244", "16");
INSERT INTO `wp_gf_form_view` VALUES("42139", "3", "2016-11-04 16:14:02", "163.172.64.244", "27");
INSERT INTO `wp_gf_form_view` VALUES("42140", "10", "2016-11-04 17:00:29", "46.118.124.241", "60");
INSERT INTO `wp_gf_form_view` VALUES("42141", "10", "2016-11-04 17:00:29", "46.118.124.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("42142", "3", "2016-11-04 17:00:35", "46.118.124.241", "89");
INSERT INTO `wp_gf_form_view` VALUES("42143", "3", "2016-11-04 17:00:35", "46.118.124.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("42144", "10", "2016-11-04 18:08:18", "40.143.1.4", "786");
INSERT INTO `wp_gf_form_view` VALUES("42145", "3", "2016-11-04 18:08:18", "40.143.1.4", "1037");
INSERT INTO `wp_gf_form_view` VALUES("42146", "13", "2016-11-04 18:13:38", "40.143.1.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("42147", "1", "2016-11-04 18:25:17", "40.143.1.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("42148", "11", "2016-11-04 18:25:29", "40.143.1.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("42149", "2", "2016-11-04 18:25:44", "40.143.1.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("42150", "10", "2016-11-04 19:02:25", "192.243.55.132", "68");
INSERT INTO `wp_gf_form_view` VALUES("42151", "3", "2016-11-04 19:02:25", "192.243.55.132", "102");
INSERT INTO `wp_gf_form_view` VALUES("42152", "11", "2016-11-04 19:41:06", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42153", "2", "2016-11-04 19:41:43", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42154", "3", "2016-11-04 20:03:29", "68.180.228.30", "38");
INSERT INTO `wp_gf_form_view` VALUES("42155", "10", "2016-11-04 20:03:29", "68.180.228.30", "24");
INSERT INTO `wp_gf_form_view` VALUES("42156", "10", "2016-11-04 21:03:14", "207.46.13.27", "40");
INSERT INTO `wp_gf_form_view` VALUES("42157", "3", "2016-11-04 21:03:14", "207.46.13.27", "62");
INSERT INTO `wp_gf_form_view` VALUES("42158", "1", "2016-11-04 21:12:04", "107.150.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("42159", "2", "2016-11-04 22:34:07", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("42160", "10", "2016-11-04 22:34:09", "68.180.228.30", "8");
INSERT INTO `wp_gf_form_view` VALUES("42161", "3", "2016-11-04 22:34:10", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("42162", "3", "2016-11-04 23:02:26", "24.108.0.212", "31");
INSERT INTO `wp_gf_form_view` VALUES("42163", "10", "2016-11-04 23:02:26", "24.108.0.212", "20");
INSERT INTO `wp_gf_form_view` VALUES("42164", "10", "2016-11-05 00:22:38", "96.50.63.233", "16");
INSERT INTO `wp_gf_form_view` VALUES("42165", "3", "2016-11-05 00:22:40", "96.50.63.233", "24");
INSERT INTO `wp_gf_form_view` VALUES("42166", "10", "2016-11-05 01:01:44", "134.249.53.114", "66");
INSERT INTO `wp_gf_form_view` VALUES("42167", "10", "2016-11-05 01:01:44", "134.249.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42168", "10", "2016-11-05 01:01:44", "134.249.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42169", "3", "2016-11-05 01:01:45", "134.249.53.114", "100");
INSERT INTO `wp_gf_form_view` VALUES("42170", "3", "2016-11-05 01:01:45", "134.249.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42171", "3", "2016-11-05 01:01:45", "134.249.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42172", "3", "2016-11-05 01:01:45", "134.249.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42173", "1", "2016-11-05 02:04:51", "97.77.104.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("42174", "10", "2016-11-05 02:04:51", "97.77.104.22", "56");
INSERT INTO `wp_gf_form_view` VALUES("42175", "3", "2016-11-05 02:04:51", "97.77.104.22", "84");
INSERT INTO `wp_gf_form_view` VALUES("42176", "1", "2016-11-05 03:09:58", "104.129.13.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("42177", "10", "2016-11-05 03:09:58", "104.129.13.96", "32");
INSERT INTO `wp_gf_form_view` VALUES("42178", "3", "2016-11-05 03:09:58", "104.129.13.96", "45");
INSERT INTO `wp_gf_form_view` VALUES("42179", "10", "2016-11-05 04:34:00", "178.137.165.59", "24");
INSERT INTO `wp_gf_form_view` VALUES("42180", "3", "2016-11-05 04:34:01", "178.137.165.59", "36");
INSERT INTO `wp_gf_form_view` VALUES("42181", "9", "2016-11-05 05:00:27", "68.180.228.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("42182", "10", "2016-11-05 05:00:27", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("42183", "3", "2016-11-05 05:00:27", "68.180.228.30", "19");
INSERT INTO `wp_gf_form_view` VALUES("42184", "10", "2016-11-05 06:14:30", "202.46.50.78", "16");
INSERT INTO `wp_gf_form_view` VALUES("42185", "3", "2016-11-05 06:14:31", "202.46.50.78", "25");
INSERT INTO `wp_gf_form_view` VALUES("42186", "13", "2016-11-05 07:19:22", "68.180.228.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("42187", "10", "2016-11-05 07:19:22", "68.180.228.30", "68");
INSERT INTO `wp_gf_form_view` VALUES("42188", "3", "2016-11-05 07:19:23", "68.180.228.30", "103");
INSERT INTO `wp_gf_form_view` VALUES("42189", "10", "2016-11-05 08:05:40", "5.248.253.78", "32");
INSERT INTO `wp_gf_form_view` VALUES("42190", "3", "2016-11-05 08:05:41", "5.248.253.78", "48");
INSERT INTO `wp_gf_form_view` VALUES("42191", "10", "2016-11-05 09:49:16", "163.172.66.27", "8");
INSERT INTO `wp_gf_form_view` VALUES("42192", "3", "2016-11-05 09:49:18", "163.172.66.27", "13");
INSERT INTO `wp_gf_form_view` VALUES("42193", "10", "2016-11-05 10:08:55", "202.46.49.198", "12");
INSERT INTO `wp_gf_form_view` VALUES("42194", "3", "2016-11-05 10:08:55", "202.46.49.198", "19");
INSERT INTO `wp_gf_form_view` VALUES("42195", "10", "2016-11-05 11:28:21", "5.9.145.132", "32");
INSERT INTO `wp_gf_form_view` VALUES("42196", "3", "2016-11-05 11:28:22", "5.9.145.132", "50");
INSERT INTO `wp_gf_form_view` VALUES("42197", "10", "2016-11-05 13:00:13", "192.243.55.131", "12");
INSERT INTO `wp_gf_form_view` VALUES("42198", "3", "2016-11-05 13:00:14", "192.243.55.131", "19");
INSERT INTO `wp_gf_form_view` VALUES("42199", "3", "2016-11-05 14:02:28", "58.62.235.242", "44");
INSERT INTO `wp_gf_form_view` VALUES("42200", "10", "2016-11-05 14:02:28", "58.62.235.242", "32");
INSERT INTO `wp_gf_form_view` VALUES("42201", "10", "2016-11-05 15:24:24", "68.180.228.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("42202", "3", "2016-11-05 15:24:28", "68.180.228.30", "6");
INSERT INTO `wp_gf_form_view` VALUES("42203", "3", "2016-11-05 17:02:17", "5.9.88.103", "62");
INSERT INTO `wp_gf_form_view` VALUES("42204", "10", "2016-11-05 17:02:20", "5.9.88.103", "46");
INSERT INTO `wp_gf_form_view` VALUES("42205", "10", "2016-11-05 18:20:17", "157.55.39.16", "36");
INSERT INTO `wp_gf_form_view` VALUES("42206", "3", "2016-11-05 18:20:18", "157.55.39.16", "63");
INSERT INTO `wp_gf_form_view` VALUES("42207", "5", "2016-11-05 18:23:21", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("42208", "10", "2016-11-05 19:03:21", "202.46.52.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("42209", "3", "2016-11-05 19:03:21", "202.46.52.108", "30");
INSERT INTO `wp_gf_form_view` VALUES("42210", "10", "2016-11-05 20:10:04", "184.66.32.165", "16");
INSERT INTO `wp_gf_form_view` VALUES("42211", "3", "2016-11-05 20:10:04", "184.66.32.165", "24");
INSERT INTO `wp_gf_form_view` VALUES("42212", "12", "2016-11-05 20:10:19", "202.46.54.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("42213", "10", "2016-11-05 21:49:41", "96.50.19.46", "20");
INSERT INTO `wp_gf_form_view` VALUES("42214", "3", "2016-11-05 21:49:42", "96.50.19.46", "31");
INSERT INTO `wp_gf_form_view` VALUES("42215", "10", "2016-11-05 22:34:25", "77.75.78.167", "21");
INSERT INTO `wp_gf_form_view` VALUES("42216", "3", "2016-11-05 22:34:29", "77.75.78.167", "30");
INSERT INTO `wp_gf_form_view` VALUES("42217", "10", "2016-11-05 23:08:36", "192.243.55.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("42218", "3", "2016-11-05 23:08:36", "192.243.55.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("42219", "3", "2016-11-06 00:04:46", "202.46.51.84", "121");
INSERT INTO `wp_gf_form_view` VALUES("42220", "10", "2016-11-06 00:04:46", "202.46.51.84", "80");
INSERT INTO `wp_gf_form_view` VALUES("42221", "9", "2016-11-06 01:39:58", "163.172.66.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("42222", "3", "2016-11-06 01:39:59", "163.172.66.49", "6");
INSERT INTO `wp_gf_form_view` VALUES("42223", "10", "2016-11-06 01:40:00", "163.172.66.49", "4");
INSERT INTO `wp_gf_form_view` VALUES("42224", "3", "2016-11-06 02:05:37", "66.249.79.112", "18");
INSERT INTO `wp_gf_form_view` VALUES("42225", "10", "2016-11-06 02:05:38", "66.249.79.112", "12");
INSERT INTO `wp_gf_form_view` VALUES("42226", "3", "2016-11-06 03:07:58", "77.75.76.168", "62");
INSERT INTO `wp_gf_form_view` VALUES("42227", "10", "2016-11-06 03:08:00", "77.75.76.168", "40");
INSERT INTO `wp_gf_form_view` VALUES("42228", "3", "2016-11-06 04:15:03", "154.20.41.18", "55");
INSERT INTO `wp_gf_form_view` VALUES("42229", "10", "2016-11-06 04:15:04", "154.20.41.18", "32");
INSERT INTO `wp_gf_form_view` VALUES("42230", "13", "2016-11-06 04:29:49", "5.248.253.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("42231", "3", "2016-11-06 05:04:37", "66.249.79.108", "31");
INSERT INTO `wp_gf_form_view` VALUES("42232", "10", "2016-11-06 05:04:38", "66.249.79.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("42233", "1", "2016-11-06 06:02:04", "155.133.43.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("42234", "3", "2016-11-06 06:02:05", "155.133.43.8", "42");
INSERT INTO `wp_gf_form_view` VALUES("42235", "10", "2016-11-06 06:02:07", "155.133.43.8", "28");
INSERT INTO `wp_gf_form_view` VALUES("42236", "3", "2016-11-06 07:02:09", "77.75.76.164", "43");
INSERT INTO `wp_gf_form_view` VALUES("42237", "10", "2016-11-06 07:02:09", "77.75.76.164", "28");
INSERT INTO `wp_gf_form_view` VALUES("42238", "3", "2016-11-06 08:50:18", "163.172.66.109", "7");
INSERT INTO `wp_gf_form_view` VALUES("42239", "10", "2016-11-06 08:50:21", "163.172.66.109", "4");
INSERT INTO `wp_gf_form_view` VALUES("42240", "3", "2016-11-06 09:07:17", "134.249.53.114", "53");
INSERT INTO `wp_gf_form_view` VALUES("42241", "3", "2016-11-06 09:07:17", "134.249.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42242", "10", "2016-11-06 09:07:18", "134.249.53.114", "36");
INSERT INTO `wp_gf_form_view` VALUES("42243", "1", "2016-11-06 09:51:48", "108.63.250.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("42244", "13", "2016-11-06 10:08:29", "5.248.253.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("42245", "3", "2016-11-06 10:08:30", "5.248.253.78", "40");
INSERT INTO `wp_gf_form_view` VALUES("42246", "3", "2016-11-06 10:08:30", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42247", "3", "2016-11-06 10:08:30", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42248", "10", "2016-11-06 10:08:30", "5.248.253.78", "26");
INSERT INTO `wp_gf_form_view` VALUES("42249", "10", "2016-11-06 10:08:30", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42250", "10", "2016-11-06 10:08:30", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42251", "3", "2016-11-06 11:47:00", "163.172.66.40", "6");
INSERT INTO `wp_gf_form_view` VALUES("42252", "10", "2016-11-06 11:47:02", "163.172.66.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("42253", "3", "2016-11-06 12:18:07", "68.180.228.30", "18");
INSERT INTO `wp_gf_form_view` VALUES("42254", "10", "2016-11-06 12:18:07", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("42255", "3", "2016-11-06 13:08:33", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("42256", "10", "2016-11-06 13:08:33", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("42257", "3", "2016-11-06 14:06:20", "202.46.58.12", "31");
INSERT INTO `wp_gf_form_view` VALUES("42258", "10", "2016-11-06 14:06:23", "202.46.58.12", "20");
INSERT INTO `wp_gf_form_view` VALUES("42259", "3", "2016-11-06 15:30:33", "24.68.17.97", "12");
INSERT INTO `wp_gf_form_view` VALUES("42260", "10", "2016-11-06 15:30:33", "24.68.17.97", "8");
INSERT INTO `wp_gf_form_view` VALUES("42261", "3", "2016-11-06 16:34:33", "217.23.2.194", "53");
INSERT INTO `wp_gf_form_view` VALUES("42262", "10", "2016-11-06 16:34:35", "217.23.2.194", "32");
INSERT INTO `wp_gf_form_view` VALUES("42263", "3", "2016-11-06 17:22:12", "163.172.65.208", "30");
INSERT INTO `wp_gf_form_view` VALUES("42264", "10", "2016-11-06 17:22:19", "163.172.65.208", "20");
INSERT INTO `wp_gf_form_view` VALUES("42265", "13", "2016-11-06 17:23:50", "178.137.165.59", "3");
INSERT INTO `wp_gf_form_view` VALUES("42266", "3", "2016-11-06 18:01:31", "68.180.228.30", "24");
INSERT INTO `wp_gf_form_view` VALUES("42267", "10", "2016-11-06 18:01:32", "68.180.228.30", "18");
INSERT INTO `wp_gf_form_view` VALUES("42268", "3", "2016-11-06 19:12:15", "163.172.65.10", "12");
INSERT INTO `wp_gf_form_view` VALUES("42269", "10", "2016-11-06 19:12:16", "163.172.65.10", "8");
INSERT INTO `wp_gf_form_view` VALUES("42270", "3", "2016-11-06 20:12:45", "163.172.66.107", "73");
INSERT INTO `wp_gf_form_view` VALUES("42271", "10", "2016-11-06 20:12:45", "163.172.66.107", "48");
INSERT INTO `wp_gf_form_view` VALUES("42272", "1", "2016-11-06 20:21:54", "23.250.52.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("42273", "3", "2016-11-06 21:02:47", "163.172.64.179", "30");
INSERT INTO `wp_gf_form_view` VALUES("42274", "10", "2016-11-06 21:02:47", "163.172.64.179", "20");
INSERT INTO `wp_gf_form_view` VALUES("42275", "3", "2016-11-06 22:08:25", "68.180.228.30", "42");
INSERT INTO `wp_gf_form_view` VALUES("42276", "10", "2016-11-06 22:08:25", "68.180.228.30", "28");
INSERT INTO `wp_gf_form_view` VALUES("42277", "13", "2016-11-06 22:21:22", "178.137.165.57", "6");
INSERT INTO `wp_gf_form_view` VALUES("42278", "13", "2016-11-06 23:29:39", "178.137.165.59", "5");
INSERT INTO `wp_gf_form_view` VALUES("42279", "3", "2016-11-06 23:29:41", "178.137.165.59", "47");
INSERT INTO `wp_gf_form_view` VALUES("42280", "3", "2016-11-06 23:29:41", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42281", "10", "2016-11-06 23:29:42", "178.137.165.59", "31");
INSERT INTO `wp_gf_form_view` VALUES("42282", "10", "2016-11-06 23:29:42", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42283", "3", "2016-11-07 00:11:54", "157.55.39.223", "6");
INSERT INTO `wp_gf_form_view` VALUES("42284", "10", "2016-11-07 00:11:54", "157.55.39.223", "4");
INSERT INTO `wp_gf_form_view` VALUES("42285", "3", "2016-11-07 01:43:53", "202.46.58.72", "6");
INSERT INTO `wp_gf_form_view` VALUES("42286", "10", "2016-11-07 01:43:55", "202.46.58.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("42287", "3", "2016-11-07 02:28:18", "157.55.39.16", "6");
INSERT INTO `wp_gf_form_view` VALUES("42288", "10", "2016-11-07 02:28:21", "157.55.39.16", "4");
INSERT INTO `wp_gf_form_view` VALUES("42289", "3", "2016-11-07 03:15:35", "163.172.65.182", "55");
INSERT INTO `wp_gf_form_view` VALUES("42290", "10", "2016-11-07 03:15:38", "163.172.65.182", "36");
INSERT INTO `wp_gf_form_view` VALUES("42291", "11", "2016-11-07 03:31:21", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("42292", "3", "2016-11-07 05:51:40", "202.46.53.117", "6");
INSERT INTO `wp_gf_form_view` VALUES("42293", "10", "2016-11-07 05:51:47", "202.46.53.117", "4");
INSERT INTO `wp_gf_form_view` VALUES("42294", "3", "2016-11-07 06:48:52", "68.180.228.30", "134");
INSERT INTO `wp_gf_form_view` VALUES("42295", "10", "2016-11-07 06:48:53", "68.180.228.30", "88");
INSERT INTO `wp_gf_form_view` VALUES("42296", "11", "2016-11-07 06:54:26", "104.131.43.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("42297", "2", "2016-11-07 06:54:27", "104.131.43.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("42298", "3", "2016-11-07 08:02:58", "202.46.58.153", "49");
INSERT INTO `wp_gf_form_view` VALUES("42299", "10", "2016-11-07 08:02:59", "202.46.58.153", "33");
INSERT INTO `wp_gf_form_view` VALUES("42300", "13", "2016-11-07 08:54:43", "134.249.53.114", "3");
INSERT INTO `wp_gf_form_view` VALUES("42301", "3", "2016-11-07 09:17:36", "207.46.13.85", "816");
INSERT INTO `wp_gf_form_view` VALUES("42302", "10", "2016-11-07 09:17:38", "207.46.13.85", "532");
INSERT INTO `wp_gf_form_view` VALUES("42303", "13", "2016-11-07 09:18:04", "207.46.13.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("42304", "8", "2016-11-07 09:18:06", "207.46.13.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("42305", "9", "2016-11-07 09:18:37", "157.55.39.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("42306", "1", "2016-11-07 09:19:21", "207.46.13.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("42307", "11", "2016-11-07 09:19:23", "207.46.13.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("42308", "12", "2016-11-07 09:19:47", "157.55.39.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("42309", "5", "2016-11-07 09:24:14", "77.75.79.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("42310", "3", "2016-11-07 10:03:25", "199.21.99.202", "18");
INSERT INTO `wp_gf_form_view` VALUES("42311", "10", "2016-11-07 10:03:25", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("42312", "1", "2016-11-07 10:58:46", "77.75.76.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("42313", "3", "2016-11-07 11:33:32", "207.46.13.193", "12");
INSERT INTO `wp_gf_form_view` VALUES("42314", "10", "2016-11-07 11:33:34", "207.46.13.193", "8");
INSERT INTO `wp_gf_form_view` VALUES("42315", "3", "2016-11-07 12:03:44", "77.75.77.62", "12");
INSERT INTO `wp_gf_form_view` VALUES("42316", "10", "2016-11-07 12:03:44", "77.75.77.62", "8");
INSERT INTO `wp_gf_form_view` VALUES("42317", "3", "2016-11-07 13:01:51", "77.75.79.119", "18");
INSERT INTO `wp_gf_form_view` VALUES("42318", "10", "2016-11-07 13:01:52", "77.75.79.119", "12");
INSERT INTO `wp_gf_form_view` VALUES("42319", "13", "2016-11-07 14:02:41", "178.137.165.57", "4");
INSERT INTO `wp_gf_form_view` VALUES("42320", "13", "2016-11-07 14:02:41", "178.137.165.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42321", "3", "2016-11-07 14:02:41", "178.137.165.57", "75");
INSERT INTO `wp_gf_form_view` VALUES("42322", "3", "2016-11-07 14:02:41", "178.137.165.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42323", "10", "2016-11-07 14:02:41", "178.137.165.57", "47");
INSERT INTO `wp_gf_form_view` VALUES("42324", "10", "2016-11-07 14:02:41", "178.137.165.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42325", "3", "2016-11-07 15:03:44", "77.75.78.168", "51");
INSERT INTO `wp_gf_form_view` VALUES("42326", "10", "2016-11-07 15:03:46", "77.75.78.168", "32");
INSERT INTO `wp_gf_form_view` VALUES("42327", "3", "2016-11-07 16:19:37", "69.171.109.102", "76");
INSERT INTO `wp_gf_form_view` VALUES("42328", "10", "2016-11-07 16:19:38", "69.171.109.102", "50");
INSERT INTO `wp_gf_form_view` VALUES("42329", "13", "2016-11-07 16:46:40", "178.137.165.59", "3");
INSERT INTO `wp_gf_form_view` VALUES("42330", "13", "2016-11-07 16:46:40", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42331", "13", "2016-11-07 16:46:40", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42332", "13", "2016-11-07 16:46:40", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42333", "1", "2016-11-07 17:50:32", "192.3.247.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("42334", "3", "2016-11-07 17:50:35", "192.3.247.140", "39");
INSERT INTO `wp_gf_form_view` VALUES("42335", "10", "2016-11-07 17:50:43", "192.3.247.140", "24");
INSERT INTO `wp_gf_form_view` VALUES("42336", "3", "2016-11-07 18:02:27", "184.71.27.166", "179");
INSERT INTO `wp_gf_form_view` VALUES("42337", "10", "2016-11-07 18:02:27", "184.71.27.166", "119");
INSERT INTO `wp_gf_form_view` VALUES("42338", "13", "2016-11-07 18:28:12", "24.108.191.239", "2");
INSERT INTO `wp_gf_form_view` VALUES("42339", "1", "2016-11-07 18:58:19", "63.142.161.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("42340", "3", "2016-11-07 19:03:35", "174.4.167.6", "43");
INSERT INTO `wp_gf_form_view` VALUES("42341", "10", "2016-11-07 19:03:38", "174.4.167.6", "28");
INSERT INTO `wp_gf_form_view` VALUES("42342", "13", "2016-11-07 19:51:19", "5.248.253.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("42343", "3", "2016-11-07 20:00:10", "202.46.58.161", "60");
INSERT INTO `wp_gf_form_view` VALUES("42344", "10", "2016-11-07 20:00:10", "202.46.58.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("42345", "3", "2016-11-07 21:01:21", "24.108.37.193", "61");
INSERT INTO `wp_gf_form_view` VALUES("42346", "10", "2016-11-07 21:01:21", "24.108.37.193", "40");
INSERT INTO `wp_gf_form_view` VALUES("42347", "12", "2016-11-07 21:07:09", "202.46.51.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("42348", "13", "2016-11-07 21:41:46", "5.248.253.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("42349", "3", "2016-11-07 22:15:58", "68.180.228.30", "53");
INSERT INTO `wp_gf_form_view` VALUES("42350", "10", "2016-11-07 22:16:01", "68.180.228.30", "28");
INSERT INTO `wp_gf_form_view` VALUES("42351", "1", "2016-11-07 22:19:55", "207.102.102.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("42352", "3", "2016-11-07 23:02:46", "84.200.172.114", "54");
INSERT INTO `wp_gf_form_view` VALUES("42353", "3", "2016-11-07 23:02:46", "84.200.172.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42354", "10", "2016-11-07 23:02:47", "84.200.172.114", "35");
INSERT INTO `wp_gf_form_view` VALUES("42355", "10", "2016-11-07 23:02:47", "84.200.172.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42356", "13", "2016-11-07 23:39:25", "178.137.165.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("42357", "3", "2016-11-08 00:44:09", "184.151.231.88", "19");
INSERT INTO `wp_gf_form_view` VALUES("42358", "10", "2016-11-08 00:44:12", "184.151.231.88", "12");
INSERT INTO `wp_gf_form_view` VALUES("42359", "3", "2016-11-08 01:06:03", "73.96.105.34", "25");
INSERT INTO `wp_gf_form_view` VALUES("42360", "10", "2016-11-08 01:06:04", "73.96.105.34", "16");
INSERT INTO `wp_gf_form_view` VALUES("42361", "13", "2016-11-08 01:56:24", "134.249.53.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("42362", "3", "2016-11-08 02:04:40", "220.181.108.120", "57");
INSERT INTO `wp_gf_form_view` VALUES("42363", "10", "2016-11-08 02:04:40", "220.181.108.120", "38");
INSERT INTO `wp_gf_form_view` VALUES("42364", "3", "2016-11-08 03:01:34", "96.50.63.233", "61");
INSERT INTO `wp_gf_form_view` VALUES("42365", "10", "2016-11-08 03:01:34", "96.50.63.233", "41");
INSERT INTO `wp_gf_form_view` VALUES("42366", "1", "2016-11-08 03:27:41", "24.68.158.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("42367", "3", "2016-11-08 04:37:26", "75.155.141.49", "74");
INSERT INTO `wp_gf_form_view` VALUES("42368", "10", "2016-11-08 04:37:28", "75.155.141.49", "48");
INSERT INTO `wp_gf_form_view` VALUES("42369", "13", "2016-11-08 04:39:53", "46.118.124.241", "8");
INSERT INTO `wp_gf_form_view` VALUES("42370", "13", "2016-11-08 04:39:53", "46.118.124.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("42371", "3", "2016-11-08 05:07:38", "66.249.79.152", "25");
INSERT INTO `wp_gf_form_view` VALUES("42372", "10", "2016-11-08 05:07:38", "66.249.79.152", "16");
INSERT INTO `wp_gf_form_view` VALUES("42373", "3", "2016-11-08 06:18:27", "50.92.113.207", "43");
INSERT INTO `wp_gf_form_view` VALUES("42374", "10", "2016-11-08 06:18:28", "50.92.113.207", "29");
INSERT INTO `wp_gf_form_view` VALUES("42375", "9", "2016-11-08 06:21:53", "207.46.13.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("42376", "3", "2016-11-08 07:26:41", "54.208.63.135", "30");
INSERT INTO `wp_gf_form_view` VALUES("42377", "10", "2016-11-08 07:26:43", "54.208.63.135", "20");
INSERT INTO `wp_gf_form_view` VALUES("42378", "1", "2016-11-08 08:18:10", "153.149.155.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("42379", "3", "2016-11-08 08:18:10", "153.149.155.232", "18");
INSERT INTO `wp_gf_form_view` VALUES("42380", "10", "2016-11-08 08:18:11", "153.149.155.232", "12");
INSERT INTO `wp_gf_form_view` VALUES("42381", "3", "2016-11-08 09:03:06", "220.181.108.139", "6");
INSERT INTO `wp_gf_form_view` VALUES("42382", "10", "2016-11-08 09:03:10", "220.181.108.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("42383", "10", "2016-11-08 10:04:12", "202.46.52.140", "26");
INSERT INTO `wp_gf_form_view` VALUES("42384", "3", "2016-11-08 10:04:15", "202.46.52.140", "45");
INSERT INTO `wp_gf_form_view` VALUES("42385", "13", "2016-11-08 10:33:04", "178.137.165.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("42386", "13", "2016-11-08 10:33:04", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42387", "13", "2016-11-08 11:01:23", "178.137.165.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("42388", "3", "2016-11-08 11:01:23", "178.137.165.57", "25");
INSERT INTO `wp_gf_form_view` VALUES("42389", "10", "2016-11-08 11:01:23", "178.137.165.57", "16");
INSERT INTO `wp_gf_form_view` VALUES("42390", "3", "2016-11-08 12:06:45", "68.180.228.30", "18");
INSERT INTO `wp_gf_form_view` VALUES("42391", "10", "2016-11-08 12:06:46", "68.180.228.30", "12");
INSERT INTO `wp_gf_form_view` VALUES("42392", "10", "2016-11-08 14:25:12", "66.249.79.152", "21");
INSERT INTO `wp_gf_form_view` VALUES("42393", "3", "2016-11-08 14:25:15", "66.249.79.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("42394", "3", "2016-11-08 15:03:17", "66.249.79.156", "72");
INSERT INTO `wp_gf_form_view` VALUES("42395", "10", "2016-11-08 15:03:18", "66.249.79.156", "49");
INSERT INTO `wp_gf_form_view` VALUES("42396", "13", "2016-11-08 15:31:18", "134.249.55.72", "5");
INSERT INTO `wp_gf_form_view` VALUES("42397", "13", "2016-11-08 15:31:18", "134.249.55.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("42398", "3", "2016-11-08 16:01:05", "202.46.53.120", "37");
INSERT INTO `wp_gf_form_view` VALUES("42399", "10", "2016-11-08 16:01:09", "202.46.53.120", "24");
INSERT INTO `wp_gf_form_view` VALUES("42400", "13", "2016-11-08 16:35:53", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42401", "13", "2016-11-08 16:35:53", "178.137.165.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("42402", "3", "2016-11-08 17:09:14", "220.181.108.146", "23");
INSERT INTO `wp_gf_form_view` VALUES("42403", "10", "2016-11-08 17:09:18", "220.181.108.146", "13");
INSERT INTO `wp_gf_form_view` VALUES("42404", "3", "2016-11-08 18:00:46", "66.249.79.156", "31");
INSERT INTO `wp_gf_form_view` VALUES("42405", "10", "2016-11-08 18:00:46", "66.249.79.156", "20");
INSERT INTO `wp_gf_form_view` VALUES("42406", "3", "2016-11-08 19:02:06", "77.75.77.54", "5446");
INSERT INTO `wp_gf_form_view` VALUES("42407", "10", "2016-11-08 19:02:07", "77.75.77.54", "3199");
INSERT INTO `wp_gf_form_view` VALUES("42408", "11", "2016-11-08 19:41:26", "82.80.249.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("42409", "2", "2016-11-08 19:41:27", "82.80.249.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("42410", "1", "2016-11-08 19:42:29", "82.80.249.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("42411", "13", "2016-11-08 19:43:17", "82.80.249.192", "3");
INSERT INTO `wp_gf_form_view` VALUES("42412", "6", "2016-11-08 19:59:44", "82.80.249.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("42413", "9", "2016-11-08 19:59:45", "82.80.249.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("42414", "10", "2016-11-08 20:00:00", "82.80.249.192", "2856");
INSERT INTO `wp_gf_form_view` VALUES("42415", "3", "2016-11-08 20:00:00", "82.80.249.192", "4492");
INSERT INTO `wp_gf_form_view` VALUES("42416", "13", "2016-11-08 20:01:05", "82.80.249.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("42417", "8", "2016-11-08 20:08:10", "82.80.249.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("42418", "1", "2016-11-08 20:11:10", "95.41.30.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("42419", "3", "2016-11-08 21:04:57", "66.249.79.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("42420", "10", "2016-11-08 21:06:46", "66.249.79.152", "20");
INSERT INTO `wp_gf_form_view` VALUES("42421", "3", "2016-11-08 22:08:20", "163.172.65.230", "130");
INSERT INTO `wp_gf_form_view` VALUES("42422", "10", "2016-11-08 22:08:21", "163.172.65.230", "80");
INSERT INTO `wp_gf_form_view` VALUES("42423", "1", "2016-11-08 22:15:53", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("42424", "8", "2016-11-08 22:38:34", "157.55.39.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("42425", "3", "2016-11-08 23:28:47", "199.21.99.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("42426", "10", "2016-11-08 23:28:47", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("42427", "3", "2016-11-09 00:04:10", "75.155.250.134", "25");
INSERT INTO `wp_gf_form_view` VALUES("42428", "10", "2016-11-09 00:04:10", "75.155.250.134", "17");
INSERT INTO `wp_gf_form_view` VALUES("42429", "13", "2016-11-09 01:13:57", "134.249.55.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("42430", "13", "2016-11-09 01:13:57", "134.249.55.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("42431", "3", "2016-11-09 01:13:59", "134.249.55.72", "22");
INSERT INTO `wp_gf_form_view` VALUES("42432", "3", "2016-11-09 01:13:59", "134.249.55.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("42433", "3", "2016-11-09 01:13:59", "134.249.55.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("42434", "10", "2016-11-09 01:14:00", "134.249.55.72", "15");
INSERT INTO `wp_gf_form_view` VALUES("42435", "10", "2016-11-09 01:14:00", "134.249.55.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("42436", "3", "2016-11-09 03:36:49", "220.181.108.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("42437", "10", "2016-11-09 03:36:50", "220.181.108.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("42438", "3", "2016-11-09 04:06:42", "68.180.229.90", "11");
INSERT INTO `wp_gf_form_view` VALUES("42439", "10", "2016-11-09 04:06:42", "68.180.229.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("42440", "13", "2016-11-09 05:01:01", "5.248.253.78", "9");
INSERT INTO `wp_gf_form_view` VALUES("42441", "3", "2016-11-09 05:01:01", "5.248.253.78", "70");
INSERT INTO `wp_gf_form_view` VALUES("42442", "10", "2016-11-09 05:01:02", "5.248.253.78", "70");
INSERT INTO `wp_gf_form_view` VALUES("42443", "9", "2016-11-09 05:07:02", "66.249.79.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("42444", "1", "2016-11-09 05:45:05", "212.83.175.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("42445", "3", "2016-11-09 06:13:58", "202.46.53.144", "20");
INSERT INTO `wp_gf_form_view` VALUES("42446", "10", "2016-11-09 06:13:58", "202.46.53.144", "20");
INSERT INTO `wp_gf_form_view` VALUES("42447", "3", "2016-11-09 07:27:41", "199.21.99.202", "537");
INSERT INTO `wp_gf_form_view` VALUES("42448", "10", "2016-11-09 07:27:45", "199.21.99.202", "510");
INSERT INTO `wp_gf_form_view` VALUES("42449", "1", "2016-11-09 07:39:57", "178.135.49.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("42450", "9", "2016-11-09 07:47:59", "157.55.39.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("42451", "13", "2016-11-09 07:48:34", "207.46.13.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("42452", "8", "2016-11-09 07:48:36", "207.46.13.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("42453", "12", "2016-11-09 07:48:37", "157.55.39.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("42454", "3", "2016-11-09 08:08:09", "77.75.76.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("42455", "10", "2016-11-09 08:08:09", "77.75.76.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("42456", "1", "2016-11-09 08:28:23", "108.61.226.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("42457", "3", "2016-11-09 09:40:37", "199.21.99.202", "54");
INSERT INTO `wp_gf_form_view` VALUES("42458", "10", "2016-11-09 09:40:39", "199.21.99.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("42459", "1", "2016-11-09 09:46:12", "107.174.254.99", "4");
INSERT INTO `wp_gf_form_view` VALUES("42460", "3", "2016-11-09 10:40:42", "68.180.229.90", "11");
INSERT INTO `wp_gf_form_view` VALUES("42461", "10", "2016-11-09 10:40:43", "68.180.229.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("42462", "3", "2016-11-09 11:01:10", "199.21.99.202", "23");
INSERT INTO `wp_gf_form_view` VALUES("42463", "10", "2016-11-09 11:01:10", "199.21.99.202", "20");
INSERT INTO `wp_gf_form_view` VALUES("42464", "1", "2016-11-09 11:35:10", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("42465", "3", "2016-11-09 12:14:27", "207.46.13.99", "31");
INSERT INTO `wp_gf_form_view` VALUES("42466", "10", "2016-11-09 12:14:27", "207.46.13.99", "30");
INSERT INTO `wp_gf_form_view` VALUES("42467", "1", "2016-11-09 12:20:56", "155.94.179.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("42468", "1", "2016-11-09 13:22:17", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("42469", "3", "2016-11-09 13:22:18", "188.212.23.135", "11");
INSERT INTO `wp_gf_form_view` VALUES("42470", "10", "2016-11-09 13:22:18", "188.212.23.135", "10");
INSERT INTO `wp_gf_form_view` VALUES("42471", "10", "2016-11-09 14:06:00", "68.180.229.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("42472", "3", "2016-11-09 14:15:42", "199.21.99.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("42473", "3", "2016-11-09 15:01:43", "202.46.57.78", "40");
INSERT INTO `wp_gf_form_view` VALUES("42474", "10", "2016-11-09 15:01:43", "202.46.57.78", "40");
INSERT INTO `wp_gf_form_view` VALUES("42475", "1", "2016-11-09 15:07:38", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("42476", "13", "2016-11-09 15:44:43", "178.137.165.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("42477", "3", "2016-11-09 16:32:40", "154.20.32.217", "26");
INSERT INTO `wp_gf_form_view` VALUES("42478", "10", "2016-11-09 16:32:42", "154.20.32.217", "25");
INSERT INTO `wp_gf_form_view` VALUES("42479", "1", "2016-11-09 16:33:33", "78.95.48.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("42480", "3", "2016-11-09 17:06:21", "192.243.55.129", "35");
INSERT INTO `wp_gf_form_view` VALUES("42481", "10", "2016-11-09 17:06:21", "192.243.55.129", "36");
INSERT INTO `wp_gf_form_view` VALUES("42482", "3", "2016-11-09 18:40:07", "184.66.37.93", "20");
INSERT INTO `wp_gf_form_view` VALUES("42483", "10", "2016-11-09 18:40:07", "184.66.37.93", "20");
INSERT INTO `wp_gf_form_view` VALUES("42484", "3", "2016-11-09 19:07:54", "154.5.211.239", "10");
INSERT INTO `wp_gf_form_view` VALUES("42485", "10", "2016-11-09 19:07:54", "154.5.211.239", "10");
INSERT INTO `wp_gf_form_view` VALUES("42486", "3", "2016-11-09 21:03:53", "66.249.79.112", "85");
INSERT INTO `wp_gf_form_view` VALUES("42487", "10", "2016-11-09 21:03:56", "66.249.79.112", "76");
INSERT INTO `wp_gf_form_view` VALUES("42488", "3", "2016-11-09 22:07:07", "216.232.150.8", "110");
INSERT INTO `wp_gf_form_view` VALUES("42489", "10", "2016-11-09 22:07:07", "216.232.150.8", "110");
INSERT INTO `wp_gf_form_view` VALUES("42490", "1", "2016-11-09 22:07:22", "216.232.150.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("42491", "2", "2016-11-09 22:17:17", "45.32.129.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("42492", "13", "2016-11-09 22:18:26", "178.137.162.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("42493", "3", "2016-11-09 23:09:35", "35.160.30.183", "40");
INSERT INTO `wp_gf_form_view` VALUES("42494", "10", "2016-11-09 23:09:35", "35.160.30.183", "40");
INSERT INTO `wp_gf_form_view` VALUES("42495", "13", "2016-11-10 01:37:09", "5.248.253.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("42496", "3", "2016-11-10 01:37:11", "5.248.253.78", "19");
INSERT INTO `wp_gf_form_view` VALUES("42497", "3", "2016-11-10 01:37:11", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42498", "10", "2016-11-10 01:37:11", "5.248.253.78", "18");
INSERT INTO `wp_gf_form_view` VALUES("42499", "10", "2016-11-10 01:37:11", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42500", "10", "2016-11-10 01:37:11", "5.248.253.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("42501", "3", "2016-11-10 02:00:06", "202.46.51.100", "11");
INSERT INTO `wp_gf_form_view` VALUES("42502", "10", "2016-11-10 02:00:06", "202.46.51.100", "10");
INSERT INTO `wp_gf_form_view` VALUES("42503", "13", "2016-11-10 03:40:08", "178.137.165.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("42504", "3", "2016-11-10 03:40:09", "178.137.165.57", "30");
INSERT INTO `wp_gf_form_view` VALUES("42505", "10", "2016-11-10 03:40:09", "178.137.165.57", "30");
INSERT INTO `wp_gf_form_view` VALUES("42506", "13", "2016-11-10 04:04:44", "46.118.124.241", "6");
INSERT INTO `wp_gf_form_view` VALUES("42507", "3", "2016-11-10 04:04:44", "46.118.124.241", "79");
INSERT INTO `wp_gf_form_view` VALUES("42508", "3", "2016-11-10 04:04:44", "46.118.124.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("42509", "10", "2016-11-10 04:04:44", "46.118.124.241", "49");
INSERT INTO `wp_gf_form_view` VALUES("42510", "10", "2016-11-10 04:04:44", "46.118.124.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("42511", "3", "2016-11-10 05:17:16", "192.243.55.133", "91");
INSERT INTO `wp_gf_form_view` VALUES("42512", "10", "2016-11-10 05:17:18", "192.243.55.133", "86");
INSERT INTO `wp_gf_form_view` VALUES("42513", "1", "2016-11-10 05:30:36", "61.238.32.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("42514", "3", "2016-11-10 06:00:43", "62.173.145.45", "40");
INSERT INTO `wp_gf_form_view` VALUES("42515", "10", "2016-11-10 06:00:43", "62.173.145.45", "35");
INSERT INTO `wp_gf_form_view` VALUES("42516", "1", "2016-11-10 06:22:13", "92.43.104.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("42517", "3", "2016-11-10 07:27:19", "54.174.90.149", "41");
INSERT INTO `wp_gf_form_view` VALUES("42518", "10", "2016-11-10 07:27:21", "54.174.90.149", "40");
INSERT INTO `wp_gf_form_view` VALUES("42519", "3", "2016-11-10 08:22:46", "192.243.55.138", "35");
INSERT INTO `wp_gf_form_view` VALUES("42520", "10", "2016-11-10 08:22:46", "192.243.55.138", "35");
INSERT INTO `wp_gf_form_view` VALUES("42521", "1", "2016-11-10 09:03:14", "200.54.180.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("42522", "3", "2016-11-10 09:03:15", "200.54.180.226", "10");
INSERT INTO `wp_gf_form_view` VALUES("42523", "10", "2016-11-10 09:03:15", "200.54.180.226", "10");
INSERT INTO `wp_gf_form_view` VALUES("42524", "6", "2016-11-10 09:55:23", "40.77.167.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("42525", "3", "2016-11-10 10:12:09", "192.243.55.133", "466");
INSERT INTO `wp_gf_form_view` VALUES("42526", "10", "2016-11-10 10:12:09", "192.243.55.133", "427");
INSERT INTO `wp_gf_form_view` VALUES("42527", "13", "2016-11-10 10:44:26", "178.137.162.10", "4");
INSERT INTO `wp_gf_form_view` VALUES("42528", "13", "2016-11-10 10:44:26", "178.137.162.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("42529", "1", "2016-11-10 10:45:21", "120.52.73.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("42530", "9", "2016-11-10 10:46:33", "40.77.167.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("42531", "8", "2016-11-10 10:47:20", "40.77.167.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("42532", "3", "2016-11-10 11:45:53", "207.46.13.154", "5");
INSERT INTO `wp_gf_form_view` VALUES("42533", "10", "2016-11-10 11:45:53", "207.46.13.154", "5");
INSERT INTO `wp_gf_form_view` VALUES("42534", "3", "2016-11-10 12:13:49", "77.75.78.165", "45");
INSERT INTO `wp_gf_form_view` VALUES("42535", "10", "2016-11-10 12:13:49", "77.75.78.165", "45");
INSERT INTO `wp_gf_form_view` VALUES("42536", "3", "2016-11-10 13:01:57", "40.77.167.12", "159");
INSERT INTO `wp_gf_form_view` VALUES("42537", "10", "2016-11-10 13:01:57", "40.77.167.12", "153");
INSERT INTO `wp_gf_form_view` VALUES("42538", "6", "2016-11-10 13:02:14", "40.77.167.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("42539", "13", "2016-11-10 13:33:58", "40.77.167.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("42540", "5", "2016-11-10 13:34:04", "40.77.167.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("42541", "3", "2016-11-10 14:34:42", "192.243.55.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("42542", "10", "2016-11-10 14:34:42", "192.243.55.133", "35");
INSERT INTO `wp_gf_form_view` VALUES("42543", "3", "2016-11-10 15:02:22", "163.172.66.6", "89");
INSERT INTO `wp_gf_form_view` VALUES("42544", "10", "2016-11-10 15:02:22", "163.172.66.6", "85");
INSERT INTO `wp_gf_form_view` VALUES("42545", "13", "2016-11-10 15:43:15", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("42546", "3", "2016-11-10 16:49:39", "192.243.55.137", "25");
INSERT INTO `wp_gf_form_view` VALUES("42547", "10", "2016-11-10 16:49:40", "192.243.55.137", "25");
INSERT INTO `wp_gf_form_view` VALUES("42548", "3", "2016-11-10 17:12:59", "66.249.79.104", "18");
INSERT INTO `wp_gf_form_view` VALUES("42549", "10", "2016-11-10 17:12:59", "66.249.79.104", "15");
INSERT INTO `wp_gf_form_view` VALUES("42550", "3", "2016-11-10 18:02:07", "192.243.55.130", "50");
INSERT INTO `wp_gf_form_view` VALUES("42551", "10", "2016-11-10 18:02:08", "192.243.55.130", "50");
INSERT INTO `wp_gf_form_view` VALUES("42552", "13", "2016-11-10 18:13:13", "134.249.74.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("42553", "5", "2016-11-10 19:01:24", "202.46.49.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("42554", "3", "2016-11-10 19:01:24", "202.46.49.73", "84");
INSERT INTO `wp_gf_form_view` VALUES("42555", "10", "2016-11-10 19:01:24", "202.46.49.73", "80");
INSERT INTO `wp_gf_form_view` VALUES("42556", "13", "2016-11-10 19:48:30", "46.118.124.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("42557", "13", "2016-11-10 19:48:30", "46.118.124.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("42558", "13", "2016-11-10 20:44:14", "178.137.162.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("42559", "3", "2016-11-10 20:44:15", "178.137.162.10", "20");
INSERT INTO `wp_gf_form_view` VALUES("42560", "10", "2016-11-10 20:44:15", "178.137.162.10", "20");
INSERT INTO `wp_gf_form_view` VALUES("42561", "3", "2016-11-10 21:18:18", "154.5.211.239", "20");
INSERT INTO `wp_gf_form_view` VALUES("42562", "10", "2016-11-10 21:18:18", "154.5.211.239", "21");
INSERT INTO `wp_gf_form_view` VALUES("42563", "3", "2016-11-10 22:15:16", "68.32.124.143", "107");
INSERT INTO `wp_gf_form_view` VALUES("42564", "10", "2016-11-10 22:15:18", "68.32.124.143", "100");
INSERT INTO `wp_gf_form_view` VALUES("42565", "13", "2016-11-10 22:22:58", "178.137.165.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("42566", "3", "2016-11-10 23:01:51", "75.155.250.134", "42");
INSERT INTO `wp_gf_form_view` VALUES("42567", "10", "2016-11-10 23:01:51", "75.155.250.134", "40");
INSERT INTO `wp_gf_form_view` VALUES("42568", "3", "2016-11-11 00:09:32", "207.194.133.9", "116");
INSERT INTO `wp_gf_form_view` VALUES("42569", "10", "2016-11-11 00:09:32", "207.194.133.9", "115");
INSERT INTO `wp_gf_form_view` VALUES("42570", "1", "2016-11-11 00:28:31", "192.3.8.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("42571", "3", "2016-11-11 01:02:13", "35.162.50.153", "50");
INSERT INTO `wp_gf_form_view` VALUES("42572", "10", "2016-11-11 01:02:13", "35.162.50.153", "53");
INSERT INTO `wp_gf_form_view` VALUES("42573", "3", "2016-11-11 02:02:53", "35.163.101.16", "40");
INSERT INTO `wp_gf_form_view` VALUES("42574", "10", "2016-11-11 02:02:53", "35.163.101.16", "40");
INSERT INTO `wp_gf_form_view` VALUES("42575", "3", "2016-11-11 03:05:40", "163.172.65.54", "72");
INSERT INTO `wp_gf_form_view` VALUES("42576", "10", "2016-11-11 03:05:41", "163.172.65.54", "70");
INSERT INTO `wp_gf_form_view` VALUES("42577", "3", "2016-11-11 04:08:15", "192.243.55.129", "20");
INSERT INTO `wp_gf_form_view` VALUES("42578", "10", "2016-11-11 04:08:15", "192.243.55.129", "20");
INSERT INTO `wp_gf_form_view` VALUES("42579", "1", "2016-11-11 04:49:28", "40.77.167.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("42580", "3", "2016-11-11 05:17:54", "68.180.229.90", "20");
INSERT INTO `wp_gf_form_view` VALUES("42581", "10", "2016-11-11 05:17:55", "68.180.229.90", "20");
INSERT INTO `wp_gf_form_view` VALUES("42582", "10", "2016-11-11 06:18:06", "50.92.250.233", "80");
INSERT INTO `wp_gf_form_view` VALUES("42583", "3", "2016-11-11 06:18:06", "50.92.250.233", "80");
INSERT INTO `wp_gf_form_view` VALUES("42584", "1", "2016-11-11 06:19:05", "50.92.250.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("42585", "13", "2016-11-11 06:59:03", "178.137.164.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("42586", "13", "2016-11-11 06:59:03", "178.137.164.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("42587", "10", "2016-11-11 07:29:19", "54.227.125.123", "10");
INSERT INTO `wp_gf_form_view` VALUES("42588", "3", "2016-11-11 07:29:20", "54.227.125.123", "10");
INSERT INTO `wp_gf_form_view` VALUES("42589", "1", "2016-11-11 07:49:00", "212.83.175.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("42590", "3", "2016-11-11 08:08:44", "104.202.102.20", "26");
INSERT INTO `wp_gf_form_view` VALUES("42591", "10", "2016-11-11 08:08:44", "104.202.102.20", "25");
INSERT INTO `wp_gf_form_view` VALUES("42592", "13", "2016-11-11 08:56:38", "178.137.165.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("42593", "3", "2016-11-11 09:38:56", "5.255.250.87", "6");
INSERT INTO `wp_gf_form_view` VALUES("42594", "10", "2016-11-11 09:39:01", "5.255.250.87", "5");
INSERT INTO `wp_gf_form_view` VALUES("42595", "10", "2016-11-11 10:00:26", "163.172.65.57", "15");
INSERT INTO `wp_gf_form_view` VALUES("42596", "3", "2016-11-11 10:00:27", "163.172.65.57", "15");
INSERT INTO `wp_gf_form_view` VALUES("42597", "10", "2016-11-11 11:02:38", "66.249.79.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("42598", "3", "2016-11-11 11:02:38", "66.249.79.108", "10");
INSERT INTO `wp_gf_form_view` VALUES("42599", "10", "2016-11-11 12:40:42", "54.221.64.226", "34");
INSERT INTO `wp_gf_form_view` VALUES("42600", "10", "2016-11-11 12:40:42", "54.221.64.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("42601", "3", "2016-11-11 12:40:49", "54.221.64.226", "33");
INSERT INTO `wp_gf_form_view` VALUES("42602", "3", "2016-11-11 12:40:49", "54.221.64.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("42603", "3", "2016-11-11 12:40:49", "54.221.64.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("42604", "10", "2016-11-11 13:44:21", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("42605", "3", "2016-11-11 13:44:21", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("42606", "10", "2016-11-11 14:24:55", "66.249.79.108", "26");
INSERT INTO `wp_gf_form_view` VALUES("42607", "3", "2016-11-11 14:24:55", "66.249.79.108", "27");
INSERT INTO `wp_gf_form_view` VALUES("42608", "3", "2016-11-11 15:34:23", "202.46.56.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("42609", "10", "2016-11-11 15:34:24", "202.46.56.95", "15");
INSERT INTO `wp_gf_form_view` VALUES("42610", "5", "2016-11-11 15:55:30", "77.75.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("42611", "10", "2016-11-11 16:07:50", "202.46.56.135", "30");
INSERT INTO `wp_gf_form_view` VALUES("42612", "3", "2016-11-11 16:07:50", "202.46.56.135", "30");
INSERT INTO `wp_gf_form_view` VALUES("42613", "10", "2016-11-11 17:30:06", "209.153.252.13", "35");
INSERT INTO `wp_gf_form_view` VALUES("42614", "3", "2016-11-11 17:30:06", "209.153.252.13", "37");
INSERT INTO `wp_gf_form_view` VALUES("42615", "10", "2016-11-11 18:13:40", "66.249.79.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("42616", "3", "2016-11-11 18:13:40", "66.249.79.112", "5");
INSERT INTO `wp_gf_form_view` VALUES("42617", "3", "2016-11-11 19:18:32", "157.55.39.230", "22");
INSERT INTO `wp_gf_form_view` VALUES("42618", "10", "2016-11-11 19:18:34", "157.55.39.230", "20");
INSERT INTO `wp_gf_form_view` VALUES("42619", "13", "2016-11-11 19:55:39", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("42620", "10", "2016-11-11 20:09:02", "192.99.147.201", "21");
INSERT INTO `wp_gf_form_view` VALUES("42621", "3", "2016-11-11 20:09:03", "192.99.147.201", "15");
INSERT INTO `wp_gf_form_view` VALUES("42622", "10", "2016-11-11 21:26:25", "108.180.150.109", "30");
INSERT INTO `wp_gf_form_view` VALUES("42623", "3", "2016-11-11 21:26:27", "108.180.150.109", "31");
INSERT INTO `wp_gf_form_view` VALUES("42624", "10", "2016-11-11 22:08:14", "23.106.26.93", "30");
INSERT INTO `wp_gf_form_view` VALUES("42625", "3", "2016-11-11 22:08:15", "23.106.26.93", "30");
INSERT INTO `wp_gf_form_view` VALUES("42626", "13", "2016-11-11 22:45:03", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("42627", "10", "2016-11-11 23:08:18", "216.126.100.25", "80");
INSERT INTO `wp_gf_form_view` VALUES("42628", "3", "2016-11-11 23:08:18", "216.126.100.25", "84");
INSERT INTO `wp_gf_form_view` VALUES("42629", "1", "2016-11-11 23:11:33", "120.52.72.58", "4");
INSERT INTO `wp_gf_form_view` VALUES("42630", "10", "2016-11-12 00:05:10", "162.243.186.79", "135");
INSERT INTO `wp_gf_form_view` VALUES("42631", "3", "2016-11-12 00:05:10", "162.243.186.79", "136");
INSERT INTO `wp_gf_form_view` VALUES("42632", "11", "2016-11-12 00:05:11", "162.243.186.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("42633", "2", "2016-11-12 00:05:11", "162.243.186.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("42634", "10", "2016-11-12 01:23:32", "24.108.50.66", "75");
INSERT INTO `wp_gf_form_view` VALUES("42635", "3", "2016-11-12 01:23:32", "24.108.50.66", "76");
INSERT INTO `wp_gf_form_view` VALUES("42636", "13", "2016-11-12 01:41:29", "178.137.89.246", "8");
INSERT INTO `wp_gf_form_view` VALUES("42637", "2", "2016-11-12 02:00:13", "23.81.251.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("42638", "10", "2016-11-12 02:00:13", "23.81.251.66", "75");
INSERT INTO `wp_gf_form_view` VALUES("42639", "3", "2016-11-12 02:00:13", "23.81.251.66", "76");
INSERT INTO `wp_gf_form_view` VALUES("42640", "13", "2016-11-12 02:28:47", "46.118.155.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("42641", "13", "2016-11-12 03:11:50", "46.119.127.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("42642", "10", "2016-11-12 03:11:50", "46.119.127.117", "20");
INSERT INTO `wp_gf_form_view` VALUES("42643", "3", "2016-11-12 03:11:50", "46.119.127.117", "20");
INSERT INTO `wp_gf_form_view` VALUES("42644", "10", "2016-11-12 04:01:46", "5.255.250.56", "30");
INSERT INTO `wp_gf_form_view` VALUES("42645", "3", "2016-11-12 04:01:46", "5.255.250.56", "32");
INSERT INTO `wp_gf_form_view` VALUES("42646", "3", "2016-11-12 05:00:46", "199.21.99.202", "96");
INSERT INTO `wp_gf_form_view` VALUES("42647", "10", "2016-11-12 05:00:46", "199.21.99.202", "95");
INSERT INTO `wp_gf_form_view` VALUES("42648", "2", "2016-11-12 05:02:07", "128.177.10.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("42649", "13", "2016-11-12 05:18:27", "134.249.74.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("42650", "10", "2016-11-12 06:00:41", "66.249.79.108", "15");
INSERT INTO `wp_gf_form_view` VALUES("42651", "3", "2016-11-12 06:00:41", "66.249.79.108", "15");
INSERT INTO `wp_gf_form_view` VALUES("42652", "3", "2016-11-12 07:21:52", "157.55.39.230", "576");
INSERT INTO `wp_gf_form_view` VALUES("42653", "10", "2016-11-12 07:21:54", "157.55.39.230", "535");
INSERT INTO `wp_gf_form_view` VALUES("42654", "6", "2016-11-12 07:21:58", "157.55.39.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("42655", "13", "2016-11-12 07:22:21", "157.55.39.230", "4");
INSERT INTO `wp_gf_form_view` VALUES("42656", "5", "2016-11-12 07:22:23", "157.55.39.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("42657", "9", "2016-11-12 07:23:09", "40.77.167.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("42658", "8", "2016-11-12 07:23:55", "40.77.167.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("42659", "1", "2016-11-12 07:57:13", "104.129.15.174", "2");
INSERT INTO `wp_gf_form_view` VALUES("42660", "10", "2016-11-12 08:03:04", "66.249.79.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("42661", "3", "2016-11-12 08:03:04", "66.249.79.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("42662", "10", "2016-11-12 09:01:19", "66.249.79.108", "165");
INSERT INTO `wp_gf_form_view` VALUES("42663", "3", "2016-11-12 09:01:20", "66.249.79.108", "166");
INSERT INTO `wp_gf_form_view` VALUES("42664", "11", "2016-11-12 09:56:11", "149.91.123.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("42665", "2", "2016-11-12 09:57:13", "149.91.123.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("42666", "10", "2016-11-12 10:25:23", "220.181.108.99", "70");
INSERT INTO `wp_gf_form_view` VALUES("42667", "3", "2016-11-12 10:25:24", "220.181.108.99", "74");
INSERT INTO `wp_gf_form_view` VALUES("42668", "1", "2016-11-12 10:46:11", "104.129.13.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("42669", "10", "2016-11-12 11:08:04", "40.77.167.66", "10");
INSERT INTO `wp_gf_form_view` VALUES("42670", "3", "2016-11-12 11:08:04", "40.77.167.66", "10");
INSERT INTO `wp_gf_form_view` VALUES("42671", "13", "2016-11-12 12:04:07", "46.119.127.117", "8");
INSERT INTO `wp_gf_form_view` VALUES("42672", "10", "2016-11-12 12:04:07", "46.119.127.117", "40");
INSERT INTO `wp_gf_form_view` VALUES("42673", "3", "2016-11-12 12:04:07", "46.119.127.117", "40");
INSERT INTO `wp_gf_form_view` VALUES("42674", "10", "2016-11-12 13:03:06", "68.180.229.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("42675", "3", "2016-11-12 13:03:07", "68.180.229.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("42676", "3", "2016-11-12 14:29:35", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("42677", "10", "2016-11-12 14:29:36", "66.249.79.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("42678", "10", "2016-11-12 15:52:45", "66.249.79.104", "35");
INSERT INTO `wp_gf_form_view` VALUES("42679", "3", "2016-11-12 15:52:46", "66.249.79.104", "39");
INSERT INTO `wp_gf_form_view` VALUES("42680", "10", "2016-11-12 16:07:40", "68.180.229.90", "20");
INSERT INTO `wp_gf_form_view` VALUES("42681", "3", "2016-11-12 16:07:41", "68.180.229.90", "21");
INSERT INTO `wp_gf_form_view` VALUES("42682", "13", "2016-11-12 17:08:04", "68.180.229.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("42683", "10", "2016-11-12 17:08:04", "68.180.229.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("42684", "3", "2016-11-12 17:08:04", "68.180.229.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("42685", "10", "2016-11-12 18:44:24", "70.66.183.0", "10");
INSERT INTO `wp_gf_form_view` VALUES("42686", "3", "2016-11-12 18:44:24", "70.66.183.0", "10");
INSERT INTO `wp_gf_form_view` VALUES("42687", "3", "2016-11-12 19:12:39", "68.180.229.90", "11");
INSERT INTO `wp_gf_form_view` VALUES("42688", "10", "2016-11-12 19:12:40", "68.180.229.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("42689", "10", "2016-11-12 20:16:45", "66.249.79.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("42690", "3", "2016-11-12 20:16:45", "66.249.79.108", "22");
INSERT INTO `wp_gf_form_view` VALUES("42691", "10", "2016-11-12 21:02:07", "24.224.166.227", "16");
INSERT INTO `wp_gf_form_view` VALUES("42692", "3", "2016-11-12 21:02:07", "24.224.166.227", "15");
INSERT INTO `wp_gf_form_view` VALUES("42693", "13", "2016-11-12 22:12:38", "46.118.116.7", "6");
INSERT INTO `wp_gf_form_view` VALUES("42694", "13", "2016-11-12 22:12:38", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("42695", "10", "2016-11-12 22:12:48", "46.118.116.7", "44");
INSERT INTO `wp_gf_form_view` VALUES("42696", "10", "2016-11-12 22:12:48", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("42697", "3", "2016-11-12 22:12:49", "46.118.116.7", "44");
INSERT INTO `wp_gf_form_view` VALUES("42698", "3", "2016-11-12 22:12:49", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("42699", "10", "2016-11-12 23:13:09", "68.180.229.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("42700", "3", "2016-11-12 23:13:09", "68.180.229.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("42701", "10", "2016-11-13 00:08:40", "207.46.13.41", "5");
INSERT INTO `wp_gf_form_view` VALUES("42702", "3", "2016-11-13 00:08:41", "207.46.13.41", "5");
INSERT INTO `wp_gf_form_view` VALUES("42703", "3", "2016-11-13 01:30:00", "157.55.39.254", "24");
INSERT INTO `wp_gf_form_view` VALUES("42704", "10", "2016-11-13 01:30:03", "157.55.39.254", "16");
INSERT INTO `wp_gf_form_view` VALUES("42705", "3", "2016-11-13 02:50:03", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("42706", "10", "2016-11-13 02:50:04", "66.249.79.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("42707", "3", "2016-11-13 03:08:14", "174.129.237.157", "30");
INSERT INTO `wp_gf_form_view` VALUES("42708", "10", "2016-11-13 03:08:14", "174.129.237.157", "20");
INSERT INTO `wp_gf_form_view` VALUES("42709", "3", "2016-11-13 05:09:12", "77.75.79.36", "12");
INSERT INTO `wp_gf_form_view` VALUES("42710", "10", "2016-11-13 05:09:14", "77.75.79.36", "8");
INSERT INTO `wp_gf_form_view` VALUES("42711", "3", "2016-11-13 06:02:21", "77.75.76.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("42712", "10", "2016-11-13 06:02:22", "77.75.76.166", "20");
INSERT INTO `wp_gf_form_view` VALUES("42713", "13", "2016-11-13 06:38:12", "178.137.89.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("42714", "13", "2016-11-13 06:38:12", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42715", "3", "2016-11-13 07:06:04", "202.46.50.99", "20");
INSERT INTO `wp_gf_form_view` VALUES("42716", "10", "2016-11-13 07:06:05", "202.46.50.99", "12");
INSERT INTO `wp_gf_form_view` VALUES("42717", "3", "2016-11-13 08:06:52", "40.77.167.28", "13");
INSERT INTO `wp_gf_form_view` VALUES("42718", "10", "2016-11-13 08:06:53", "40.77.167.28", "8");
INSERT INTO `wp_gf_form_view` VALUES("42719", "3", "2016-11-13 09:38:16", "68.180.229.90", "406");
INSERT INTO `wp_gf_form_view` VALUES("42720", "10", "2016-11-13 09:38:18", "68.180.229.90", "258");
INSERT INTO `wp_gf_form_view` VALUES("42721", "9", "2016-11-13 09:47:49", "207.46.13.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("42722", "13", "2016-11-13 09:48:02", "157.55.39.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("42723", "8", "2016-11-13 09:48:17", "157.55.39.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("42724", "3", "2016-11-13 10:17:47", "68.180.229.90", "38");
INSERT INTO `wp_gf_form_view` VALUES("42725", "10", "2016-11-13 10:17:47", "68.180.229.90", "24");
INSERT INTO `wp_gf_form_view` VALUES("42726", "3", "2016-11-13 12:36:27", "66.249.79.104", "54");
INSERT INTO `wp_gf_form_view` VALUES("42727", "10", "2016-11-13 12:36:27", "66.249.79.104", "36");
INSERT INTO `wp_gf_form_view` VALUES("42728", "3", "2016-11-13 13:02:40", "207.46.13.53", "12");
INSERT INTO `wp_gf_form_view` VALUES("42729", "10", "2016-11-13 13:02:40", "207.46.13.53", "8");
INSERT INTO `wp_gf_form_view` VALUES("42730", "3", "2016-11-13 14:29:19", "202.46.52.158", "6");
INSERT INTO `wp_gf_form_view` VALUES("42731", "10", "2016-11-13 14:29:20", "202.46.52.158", "4");
INSERT INTO `wp_gf_form_view` VALUES("42732", "3", "2016-11-13 15:21:03", "68.180.229.90", "36");
INSERT INTO `wp_gf_form_view` VALUES("42733", "10", "2016-11-13 15:21:03", "68.180.229.90", "24");
INSERT INTO `wp_gf_form_view` VALUES("42734", "13", "2016-11-13 15:41:49", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("42735", "3", "2016-11-13 16:00:28", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("42736", "10", "2016-11-13 16:00:28", "66.249.79.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("42737", "3", "2016-11-13 17:16:47", "202.46.50.162", "68");
INSERT INTO `wp_gf_form_view` VALUES("42738", "10", "2016-11-13 17:16:55", "202.46.50.162", "44");
INSERT INTO `wp_gf_form_view` VALUES("42739", "1", "2016-11-13 17:21:44", "196.40.117.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("42740", "11", "2016-11-13 17:45:59", "77.75.77.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("42741", "13", "2016-11-13 18:12:33", "134.249.74.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("42742", "3", "2016-11-13 18:12:34", "134.249.74.95", "37");
INSERT INTO `wp_gf_form_view` VALUES("42743", "10", "2016-11-13 18:12:34", "134.249.74.95", "24");
INSERT INTO `wp_gf_form_view` VALUES("42744", "1", "2016-11-13 18:22:18", "153.149.155.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("42745", "13", "2016-11-13 19:08:10", "46.118.155.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("42746", "3", "2016-11-13 19:08:11", "46.118.155.149", "43");
INSERT INTO `wp_gf_form_view` VALUES("42747", "10", "2016-11-13 19:08:11", "46.118.155.149", "28");
INSERT INTO `wp_gf_form_view` VALUES("42748", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42749", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42750", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42751", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42752", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42753", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42754", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42755", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42756", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42757", "3", "2016-11-13 20:04:25", "178.137.89.246", "65");
INSERT INTO `wp_gf_form_view` VALUES("42758", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42759", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42760", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42761", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42762", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42763", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42764", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42765", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42766", "10", "2016-11-13 20:04:26", "178.137.89.246", "40");
INSERT INTO `wp_gf_form_view` VALUES("42767", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42768", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42769", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42770", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42771", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42772", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42773", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42774", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("42775", "3", "2016-11-13 21:06:03", "94.189.220.72", "66");
INSERT INTO `wp_gf_form_view` VALUES("42776", "10", "2016-11-13 21:06:04", "94.189.220.72", "45");
INSERT INTO `wp_gf_form_view` VALUES("42777", "13", "2016-11-13 21:43:57", "46.119.127.117", "9");
INSERT INTO `wp_gf_form_view` VALUES("42778", "3", "2016-11-13 22:25:37", "202.46.51.169", "6");
INSERT INTO `wp_gf_form_view` VALUES("42779", "10", "2016-11-13 22:25:37", "202.46.51.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("42780", "3", "2016-11-13 23:07:35", "207.46.13.151", "37");
INSERT INTO `wp_gf_form_view` VALUES("42781", "10", "2016-11-13 23:07:38", "207.46.13.151", "24");
INSERT INTO `wp_gf_form_view` VALUES("42782", "13", "2016-11-13 23:31:20", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("42783", "11", "2016-11-14 00:33:36", "163.172.66.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("42784", "3", "2016-11-14 00:33:36", "163.172.66.127", "8");
INSERT INTO `wp_gf_form_view` VALUES("42785", "10", "2016-11-14 00:33:36", "163.172.66.127", "5");
INSERT INTO `wp_gf_form_view` VALUES("42786", "3", "2016-11-14 01:07:05", "207.46.13.151", "57");
INSERT INTO `wp_gf_form_view` VALUES("42787", "10", "2016-11-14 01:07:05", "207.46.13.151", "33");
INSERT INTO `wp_gf_form_view` VALUES("42788", "10", "2016-11-14 02:00:42", "199.59.148.211", "18");
INSERT INTO `wp_gf_form_view` VALUES("42789", "3", "2016-11-14 02:00:42", "199.59.148.211", "25");
INSERT INTO `wp_gf_form_view` VALUES("42790", "3", "2016-11-14 03:05:31", "163.172.65.234", "38");
INSERT INTO `wp_gf_form_view` VALUES("42791", "10", "2016-11-14 03:05:31", "163.172.65.234", "24");
INSERT INTO `wp_gf_form_view` VALUES("42792", "10", "2016-11-14 04:05:23", "68.180.229.90", "26");
INSERT INTO `wp_gf_form_view` VALUES("42793", "3", "2016-11-14 04:05:23", "68.180.229.90", "37");
INSERT INTO `wp_gf_form_view` VALUES("42794", "3", "2016-11-14 05:03:47", "24.108.39.134", "54");
INSERT INTO `wp_gf_form_view` VALUES("42795", "10", "2016-11-14 05:03:47", "24.108.39.134", "36");
INSERT INTO `wp_gf_form_view` VALUES("42796", "13", "2016-11-14 05:07:02", "46.118.116.7", "3");
INSERT INTO `wp_gf_form_view` VALUES("42797", "13", "2016-11-14 05:07:02", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("42798", "3", "2016-11-14 06:01:43", "68.180.229.90", "19");
INSERT INTO `wp_gf_form_view` VALUES("42799", "10", "2016-11-14 06:03:31", "77.75.77.95", "12");
INSERT INTO `wp_gf_form_view` VALUES("42800", "3", "2016-11-14 07:26:04", "163.172.66.102", "31");
INSERT INTO `wp_gf_form_view` VALUES("42801", "10", "2016-11-14 07:26:07", "163.172.66.102", "21");
INSERT INTO `wp_gf_form_view` VALUES("42802", "3", "2016-11-14 08:06:32", "77.75.76.165", "36");
INSERT INTO `wp_gf_form_view` VALUES("42803", "10", "2016-11-14 08:06:32", "77.75.76.165", "24");
INSERT INTO `wp_gf_form_view` VALUES("42804", "3", "2016-11-14 09:01:51", "202.46.57.20", "12");
INSERT INTO `wp_gf_form_view` VALUES("42805", "10", "2016-11-14 09:01:51", "202.46.57.20", "8");
INSERT INTO `wp_gf_form_view` VALUES("42806", "3", "2016-11-14 10:00:04", "77.75.78.167", "25");
INSERT INTO `wp_gf_form_view` VALUES("42807", "10", "2016-11-14 10:00:04", "77.75.78.167", "16");
INSERT INTO `wp_gf_form_view` VALUES("42808", "13", "2016-11-14 10:11:53", "207.46.13.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("42809", "10", "2016-11-14 11:07:23", "157.55.39.156", "9");
INSERT INTO `wp_gf_form_view` VALUES("42810", "3", "2016-11-14 11:07:23", "157.55.39.156", "12");
INSERT INTO `wp_gf_form_view` VALUES("42811", "3", "2016-11-14 12:32:25", "157.55.39.234", "13");
INSERT INTO `wp_gf_form_view` VALUES("42812", "10", "2016-11-14 12:32:26", "157.55.39.234", "8");
INSERT INTO `wp_gf_form_view` VALUES("42813", "3", "2016-11-14 13:13:34", "66.249.79.108", "19");
INSERT INTO `wp_gf_form_view` VALUES("42814", "10", "2016-11-14 13:13:34", "66.249.79.108", "12");
INSERT INTO `wp_gf_form_view` VALUES("42815", "3", "2016-11-14 14:04:49", "77.75.76.172", "25");
INSERT INTO `wp_gf_form_view` VALUES("42816", "10", "2016-11-14 14:04:49", "77.75.76.172", "16");
INSERT INTO `wp_gf_form_view` VALUES("42817", "13", "2016-11-14 14:30:52", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("42818", "1", "2016-11-14 14:51:22", "77.75.79.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("42819", "3", "2016-11-14 15:04:58", "157.55.39.156", "43");
INSERT INTO `wp_gf_form_view` VALUES("42820", "10", "2016-11-14 15:04:59", "157.55.39.156", "29");
INSERT INTO `wp_gf_form_view` VALUES("42821", "3", "2016-11-14 16:34:15", "45.55.149.85", "1412");
INSERT INTO `wp_gf_form_view` VALUES("42822", "10", "2016-11-14 16:34:16", "45.55.149.85", "768");
INSERT INTO `wp_gf_form_view` VALUES("42823", "1", "2016-11-14 16:39:46", "45.55.149.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("42824", "11", "2016-11-14 16:40:16", "45.55.149.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("42825", "6", "2016-11-14 16:57:21", "45.55.149.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("42826", "3", "2016-11-14 17:00:11", "45.55.149.85", "2591");
INSERT INTO `wp_gf_form_view` VALUES("42827", "10", "2016-11-14 17:00:11", "45.55.149.85", "1562");
INSERT INTO `wp_gf_form_view` VALUES("42828", "9", "2016-11-14 17:06:01", "45.55.149.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("42829", "13", "2016-11-14 17:26:23", "46.118.155.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("42830", "2", "2016-11-14 17:44:29", "45.55.149.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("42831", "8", "2016-11-14 17:57:17", "45.55.149.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("42832", "3", "2016-11-14 18:22:13", "24.108.185.106", "38");
INSERT INTO `wp_gf_form_view` VALUES("42833", "10", "2016-11-14 18:22:19", "24.108.185.106", "24");
INSERT INTO `wp_gf_form_view` VALUES("42834", "1", "2016-11-14 18:52:35", "23.94.213.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("42835", "3", "2016-11-14 19:13:36", "163.172.64.235", "40");
INSERT INTO `wp_gf_form_view` VALUES("42836", "10", "2016-11-14 19:13:36", "163.172.64.235", "30");
INSERT INTO `wp_gf_form_view` VALUES("42837", "3", "2016-11-14 20:24:50", "202.46.58.186", "39");
INSERT INTO `wp_gf_form_view` VALUES("42838", "10", "2016-11-14 20:24:52", "202.46.58.186", "24");
INSERT INTO `wp_gf_form_view` VALUES("42839", "3", "2016-11-14 21:01:00", "184.71.23.2", "76");
INSERT INTO `wp_gf_form_view` VALUES("42840", "10", "2016-11-14 21:01:00", "184.71.23.2", "45");
INSERT INTO `wp_gf_form_view` VALUES("42841", "10", "2016-11-14 22:23:29", "199.21.99.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("42842", "3", "2016-11-14 22:23:35", "199.21.99.202", "25");
INSERT INTO `wp_gf_form_view` VALUES("42843", "2", "2016-11-14 22:23:49", "68.180.229.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("42844", "3", "2016-11-15 00:05:38", "64.180.75.201", "67");
INSERT INTO `wp_gf_form_view` VALUES("42845", "10", "2016-11-15 00:05:40", "64.180.75.201", "44");
INSERT INTO `wp_gf_form_view` VALUES("42846", "13", "2016-11-15 00:25:28", "134.249.74.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("42847", "11", "2016-11-15 00:28:14", "77.75.78.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("42848", "3", "2016-11-15 01:05:59", "108.172.118.190", "25");
INSERT INTO `wp_gf_form_view` VALUES("42849", "10", "2016-11-15 01:05:59", "108.172.118.190", "17");
INSERT INTO `wp_gf_form_view` VALUES("42850", "3", "2016-11-15 02:30:50", "163.172.66.17", "25");
INSERT INTO `wp_gf_form_view` VALUES("42851", "10", "2016-11-15 02:30:51", "163.172.66.17", "16");
INSERT INTO `wp_gf_form_view` VALUES("42852", "3", "2016-11-15 03:00:26", "99.199.0.37", "37");
INSERT INTO `wp_gf_form_view` VALUES("42853", "10", "2016-11-15 03:00:26", "99.199.0.37", "24");
INSERT INTO `wp_gf_form_view` VALUES("42854", "1", "2016-11-15 03:27:31", "212.83.175.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("42855", "3", "2016-11-15 04:00:31", "68.180.229.90", "19");
INSERT INTO `wp_gf_form_view` VALUES("42856", "10", "2016-11-15 04:00:31", "68.180.229.90", "12");
INSERT INTO `wp_gf_form_view` VALUES("42857", "3", "2016-11-15 06:14:48", "199.21.99.202", "25");
INSERT INTO `wp_gf_form_view` VALUES("42858", "10", "2016-11-15 06:14:49", "199.21.99.202", "17");
INSERT INTO `wp_gf_form_view` VALUES("42859", "3", "2016-11-15 07:21:47", "66.249.79.156", "26");
INSERT INTO `wp_gf_form_view` VALUES("42860", "10", "2016-11-15 07:21:55", "66.249.79.156", "16");
INSERT INTO `wp_gf_form_view` VALUES("42861", "13", "2016-11-15 08:05:57", "134.249.74.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("42862", "3", "2016-11-15 08:05:58", "134.249.74.95", "24");
INSERT INTO `wp_gf_form_view` VALUES("42863", "3", "2016-11-15 08:05:58", "134.249.74.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("42864", "10", "2016-11-15 08:05:59", "134.249.74.95", "15");
INSERT INTO `wp_gf_form_view` VALUES("42865", "10", "2016-11-15 08:05:59", "134.249.74.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("42866", "3", "2016-11-15 09:46:51", "202.46.52.72", "19");
INSERT INTO `wp_gf_form_view` VALUES("42867", "10", "2016-11-15 09:46:51", "173.234.159.250", "14");
INSERT INTO `wp_gf_form_view` VALUES("42868", "3", "2016-11-15 10:02:34", "163.172.65.61", "36");
INSERT INTO `wp_gf_form_view` VALUES("42869", "10", "2016-11-15 10:02:34", "163.172.65.61", "24");
INSERT INTO `wp_gf_form_view` VALUES("42870", "13", "2016-11-15 10:25:23", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("42871", "3", "2016-11-15 11:25:46", "68.180.229.90", "43");
INSERT INTO `wp_gf_form_view` VALUES("42872", "10", "2016-11-15 11:25:46", "68.180.229.90", "28");
INSERT INTO `wp_gf_form_view` VALUES("42873", "3", "2016-11-15 12:26:35", "66.249.79.152", "37");
INSERT INTO `wp_gf_form_view` VALUES("42874", "10", "2016-11-15 12:26:35", "66.249.79.152", "27");
INSERT INTO `wp_gf_form_view` VALUES("42875", "1", "2016-11-15 12:37:04", "155.94.179.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("42876", "3", "2016-11-15 13:07:56", "66.249.79.148", "52");
INSERT INTO `wp_gf_form_view` VALUES("42877", "10", "2016-11-15 13:07:57", "66.249.79.148", "33");
INSERT INTO `wp_gf_form_view` VALUES("42878", "13", "2016-11-15 13:16:03", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("42879", "3", "2016-11-15 14:07:11", "66.249.79.152", "18");
INSERT INTO `wp_gf_form_view` VALUES("42880", "10", "2016-11-15 14:07:12", "66.249.79.152", "12");
INSERT INTO `wp_gf_form_view` VALUES("42881", "11", "2016-11-15 15:13:22", "68.180.229.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("42882", "3", "2016-11-15 15:13:23", "68.180.229.90", "176");
INSERT INTO `wp_gf_form_view` VALUES("42883", "10", "2016-11-15 15:13:23", "68.180.229.90", "117");
INSERT INTO `wp_gf_form_view` VALUES("42884", "8", "2016-11-15 15:23:28", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("42885", "1", "2016-11-15 15:33:32", "179.61.164.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("42886", "2", "2016-11-15 15:42:21", "45.55.206.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("42887", "3", "2016-11-15 16:28:09", "66.249.79.152", "37");
INSERT INTO `wp_gf_form_view` VALUES("42888", "10", "2016-11-15 16:28:09", "66.249.79.152", "25");
INSERT INTO `wp_gf_form_view` VALUES("42889", "13", "2016-11-15 16:42:12", "199.21.99.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("42890", "3", "2016-11-15 17:14:32", "199.21.99.202", "103");
INSERT INTO `wp_gf_form_view` VALUES("42891", "13", "2016-11-15 17:15:47", "46.119.127.117", "9");
INSERT INTO `wp_gf_form_view` VALUES("42892", "10", "2016-11-15 17:15:48", "46.119.127.117", "69");
INSERT INTO `wp_gf_form_view` VALUES("42893", "6", "2016-11-15 17:51:00", "192.243.55.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("42894", "3", "2016-11-15 18:00:54", "207.194.133.9", "80");
INSERT INTO `wp_gf_form_view` VALUES("42895", "10", "2016-11-15 18:00:54", "207.194.133.9", "52");
INSERT INTO `wp_gf_form_view` VALUES("42896", "13", "2016-11-15 18:47:39", "46.119.127.117", "5");
INSERT INTO `wp_gf_form_view` VALUES("42897", "13", "2016-11-15 18:47:39", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("42898", "3", "2016-11-15 19:01:30", "24.108.183.218", "54");
INSERT INTO `wp_gf_form_view` VALUES("42899", "10", "2016-11-15 19:01:30", "24.108.183.218", "36");
INSERT INTO `wp_gf_form_view` VALUES("42900", "3", "2016-11-15 20:08:29", "66.249.79.156", "61");
INSERT INTO `wp_gf_form_view` VALUES("42901", "10", "2016-11-15 20:08:30", "66.249.79.156", "40");
INSERT INTO `wp_gf_form_view` VALUES("42902", "2", "2016-11-15 20:58:27", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("42903", "3", "2016-11-15 21:07:56", "142.58.139.118", "104");
INSERT INTO `wp_gf_form_view` VALUES("42904", "3", "2016-11-15 21:07:56", "142.58.139.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("42905", "3", "2016-11-15 21:07:56", "142.58.139.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("42906", "3", "2016-11-15 21:07:56", "142.58.139.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("42907", "10", "2016-11-15 21:08:07", "142.58.139.118", "51");
INSERT INTO `wp_gf_form_view` VALUES("42908", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("42909", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("42910", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("42911", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("42912", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("42913", "3", "2016-11-15 22:00:39", "66.249.79.152", "147");
INSERT INTO `wp_gf_form_view` VALUES("42914", "10", "2016-11-15 22:00:40", "66.249.79.152", "96");
INSERT INTO `wp_gf_form_view` VALUES("42915", "13", "2016-11-15 22:30:39", "66.249.79.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("42916", "3", "2016-11-15 23:04:59", "192.243.55.130", "54");
INSERT INTO `wp_gf_form_view` VALUES("42917", "10", "2016-11-15 23:04:59", "192.243.55.130", "36");
INSERT INTO `wp_gf_form_view` VALUES("42918", "11", "2016-11-16 00:19:47", "202.46.50.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("42919", "3", "2016-11-16 00:19:48", "202.46.50.88", "55");
INSERT INTO `wp_gf_form_view` VALUES("42920", "10", "2016-11-16 00:19:48", "202.46.50.88", "36");
INSERT INTO `wp_gf_form_view` VALUES("42921", "3", "2016-11-16 01:00:24", "199.21.99.202", "105");
INSERT INTO `wp_gf_form_view` VALUES("42922", "10", "2016-11-16 01:00:24", "199.21.99.202", "69");
INSERT INTO `wp_gf_form_view` VALUES("42923", "13", "2016-11-16 01:48:19", "66.249.79.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("42924", "3", "2016-11-16 02:07:29", "163.172.66.31", "93");
INSERT INTO `wp_gf_form_view` VALUES("42925", "10", "2016-11-16 02:07:38", "163.172.66.31", "60");
INSERT INTO `wp_gf_form_view` VALUES("42926", "12", "2016-11-16 02:13:04", "66.249.79.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("42927", "10", "2016-11-16 03:00:43", "100.43.91.1", "368");
INSERT INTO `wp_gf_form_view` VALUES("42928", "3", "2016-11-16 03:00:44", "100.43.91.1", "585");
INSERT INTO `wp_gf_form_view` VALUES("42929", "9", "2016-11-16 03:06:44", "40.77.167.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("42930", "8", "2016-11-16 03:09:13", "207.46.13.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("42931", "11", "2016-11-16 03:48:55", "192.243.55.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("42932", "3", "2016-11-16 04:03:29", "192.243.55.134", "43");
INSERT INTO `wp_gf_form_view` VALUES("42933", "10", "2016-11-16 04:03:29", "192.243.55.134", "28");
INSERT INTO `wp_gf_form_view` VALUES("42934", "14", "2016-11-16 05:15:15", "179.61.168.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("42935", "3", "2016-11-16 05:15:19", "179.61.168.8", "61");
INSERT INTO `wp_gf_form_view` VALUES("42936", "10", "2016-11-16 05:15:19", "179.61.168.8", "43");
INSERT INTO `wp_gf_form_view` VALUES("42937", "10", "2016-11-16 06:22:32", "192.243.55.133", "44");
INSERT INTO `wp_gf_form_view` VALUES("42938", "3", "2016-11-16 06:22:32", "192.243.55.133", "63");
INSERT INTO `wp_gf_form_view` VALUES("42939", "13", "2016-11-16 07:00:38", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("42940", "3", "2016-11-16 07:00:38", "199.21.99.202", "49");
INSERT INTO `wp_gf_form_view` VALUES("42941", "10", "2016-11-16 07:00:38", "199.21.99.202", "32");
INSERT INTO `wp_gf_form_view` VALUES("42942", "14", "2016-11-16 07:42:29", "37.59.37.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("42943", "3", "2016-11-16 08:01:23", "163.172.66.113", "66");
INSERT INTO `wp_gf_form_view` VALUES("42944", "10", "2016-11-16 08:01:23", "163.172.66.113", "44");
INSERT INTO `wp_gf_form_view` VALUES("42945", "13", "2016-11-16 08:44:12", "66.249.79.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("42946", "3", "2016-11-16 09:02:34", "66.249.79.152", "63");
INSERT INTO `wp_gf_form_view` VALUES("42947", "10", "2016-11-16 09:02:35", "66.249.79.152", "40");
INSERT INTO `wp_gf_form_view` VALUES("42948", "3", "2016-11-16 10:11:10", "207.46.13.28", "42");
INSERT INTO `wp_gf_form_view` VALUES("42949", "10", "2016-11-16 10:11:11", "207.46.13.28", "28");
INSERT INTO `wp_gf_form_view` VALUES("42950", "13", "2016-11-16 10:17:26", "178.137.89.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("42951", "3", "2016-11-16 11:14:55", "66.249.79.156", "36");
INSERT INTO `wp_gf_form_view` VALUES("42952", "10", "2016-11-16 11:14:56", "66.249.79.156", "24");
INSERT INTO `wp_gf_form_view` VALUES("42953", "13", "2016-11-16 11:54:07", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("42954", "13", "2016-11-16 12:02:54", "46.118.155.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("42955", "13", "2016-11-16 12:02:54", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("42956", "3", "2016-11-16 12:02:54", "46.118.155.149", "77");
INSERT INTO `wp_gf_form_view` VALUES("42957", "3", "2016-11-16 12:02:54", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("42958", "10", "2016-11-16 12:02:54", "46.118.155.149", "51");
INSERT INTO `wp_gf_form_view` VALUES("42959", "10", "2016-11-16 12:02:54", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("42960", "3", "2016-11-16 13:00:54", "213.174.147.10", "87");
INSERT INTO `wp_gf_form_view` VALUES("42961", "10", "2016-11-16 13:00:54", "213.174.147.10", "56");
INSERT INTO `wp_gf_form_view` VALUES("42962", "14", "2016-11-16 13:56:48", "192.243.55.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("42963", "3", "2016-11-16 14:15:50", "66.249.79.156", "30");
INSERT INTO `wp_gf_form_view` VALUES("42964", "10", "2016-11-16 14:15:50", "66.249.79.156", "22");
INSERT INTO `wp_gf_form_view` VALUES("42965", "10", "2016-11-16 15:12:12", "66.249.79.156", "40");
INSERT INTO `wp_gf_form_view` VALUES("42966", "3", "2016-11-16 15:12:12", "66.249.79.156", "55");
INSERT INTO `wp_gf_form_view` VALUES("42967", "2", "2016-11-16 15:51:49", "40.77.167.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("42968", "10", "2016-11-16 16:00:42", "66.249.79.148", "44");
INSERT INTO `wp_gf_form_view` VALUES("42969", "3", "2016-11-16 16:00:42", "66.249.79.148", "63");
INSERT INTO `wp_gf_form_view` VALUES("42970", "10", "2016-11-16 17:01:20", "66.249.79.156", "57");
INSERT INTO `wp_gf_form_view` VALUES("42971", "3", "2016-11-16 17:01:21", "66.249.79.156", "84");
INSERT INTO `wp_gf_form_view` VALUES("42972", "13", "2016-11-16 17:49:39", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("42973", "8", "2016-11-16 18:02:18", "192.243.55.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("42974", "10", "2016-11-16 18:02:18", "192.243.55.133", "36");
INSERT INTO `wp_gf_form_view` VALUES("42975", "3", "2016-11-16 18:02:18", "192.243.55.133", "54");
INSERT INTO `wp_gf_form_view` VALUES("42976", "10", "2016-11-16 19:06:05", "192.243.55.133", "88");
INSERT INTO `wp_gf_form_view` VALUES("42977", "3", "2016-11-16 19:06:05", "192.243.55.133", "133");
INSERT INTO `wp_gf_form_view` VALUES("42978", "13", "2016-11-16 19:14:36", "134.249.66.185", "5");
INSERT INTO `wp_gf_form_view` VALUES("42979", "13", "2016-11-16 19:14:36", "134.249.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("42980", "10", "2016-11-16 20:08:26", "5.135.164.181", "16");
INSERT INTO `wp_gf_form_view` VALUES("42981", "3", "2016-11-16 20:08:26", "5.135.164.181", "24");
INSERT INTO `wp_gf_form_view` VALUES("42982", "3", "2016-11-16 21:22:12", "192.243.55.134", "87");
INSERT INTO `wp_gf_form_view` VALUES("42983", "10", "2016-11-16 21:22:15", "192.243.55.134", "56");
INSERT INTO `wp_gf_form_view` VALUES("42984", "13", "2016-11-16 21:27:30", "46.118.116.7", "3");
INSERT INTO `wp_gf_form_view` VALUES("42985", "14", "2016-11-16 21:48:55", "24.69.18.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("42986", "10", "2016-11-16 22:05:55", "163.172.66.81", "40");
INSERT INTO `wp_gf_form_view` VALUES("42987", "3", "2016-11-16 22:05:56", "163.172.66.81", "61");
INSERT INTO `wp_gf_form_view` VALUES("42988", "13", "2016-11-16 22:35:02", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("42989", "14", "2016-11-16 22:57:29", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("42990", "10", "2016-11-16 23:00:52", "68.180.229.90", "33");
INSERT INTO `wp_gf_form_view` VALUES("42991", "3", "2016-11-16 23:00:52", "68.180.229.90", "48");
INSERT INTO `wp_gf_form_view` VALUES("42992", "3", "2016-11-16 23:00:52", "68.180.229.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("42993", "3", "2016-11-17 00:03:10", "192.243.55.133", "79");
INSERT INTO `wp_gf_form_view` VALUES("42994", "10", "2016-11-17 00:03:11", "192.243.55.133", "40");
INSERT INTO `wp_gf_form_view` VALUES("42995", "10", "2016-11-17 01:16:53", "66.249.79.148", "33");
INSERT INTO `wp_gf_form_view` VALUES("42996", "3", "2016-11-17 01:16:56", "66.249.79.148", "53");
INSERT INTO `wp_gf_form_view` VALUES("42997", "10", "2016-11-17 02:10:22", "54.162.75.53", "44");
INSERT INTO `wp_gf_form_view` VALUES("42998", "3", "2016-11-17 02:10:23", "54.162.75.53", "66");
INSERT INTO `wp_gf_form_view` VALUES("42999", "2", "2016-11-17 02:10:37", "54.162.75.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("43000", "10", "2016-11-17 03:01:46", "66.249.79.152", "13");
INSERT INTO `wp_gf_form_view` VALUES("43001", "3", "2016-11-17 03:01:47", "66.249.79.152", "19");
INSERT INTO `wp_gf_form_view` VALUES("43002", "10", "2016-11-17 04:01:29", "24.244.32.171", "41");
INSERT INTO `wp_gf_form_view` VALUES("43003", "3", "2016-11-17 04:01:29", "24.244.32.171", "61");
INSERT INTO `wp_gf_form_view` VALUES("43004", "10", "2016-11-17 05:00:41", "24.68.17.97", "48");
INSERT INTO `wp_gf_form_view` VALUES("43005", "3", "2016-11-17 05:00:41", "24.68.17.97", "72");
INSERT INTO `wp_gf_form_view` VALUES("43006", "13", "2016-11-17 05:33:44", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("43007", "10", "2016-11-17 06:08:50", "66.249.79.156", "32");
INSERT INTO `wp_gf_form_view` VALUES("43008", "3", "2016-11-17 06:08:50", "66.249.79.156", "48");
INSERT INTO `wp_gf_form_view` VALUES("43009", "10", "2016-11-17 07:05:21", "207.46.13.28", "16");
INSERT INTO `wp_gf_form_view` VALUES("43010", "3", "2016-11-17 07:05:22", "207.46.13.28", "24");
INSERT INTO `wp_gf_form_view` VALUES("43011", "13", "2016-11-17 08:00:28", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("43012", "13", "2016-11-17 08:00:28", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("43013", "10", "2016-11-17 08:00:29", "46.118.155.149", "19");
INSERT INTO `wp_gf_form_view` VALUES("43014", "10", "2016-11-17 08:00:29", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("43015", "3", "2016-11-17 08:00:29", "46.118.155.149", "29");
INSERT INTO `wp_gf_form_view` VALUES("43016", "3", "2016-11-17 08:00:29", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("43017", "5", "2016-11-17 08:13:16", "68.180.229.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("43018", "13", "2016-11-17 09:09:18", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43019", "13", "2016-11-17 09:09:18", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43020", "13", "2016-11-17 09:09:18", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43021", "10", "2016-11-17 09:09:21", "46.118.116.7", "130");
INSERT INTO `wp_gf_form_view` VALUES("43022", "10", "2016-11-17 09:09:21", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43023", "10", "2016-11-17 09:09:21", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43024", "3", "2016-11-17 09:09:22", "46.118.116.7", "197");
INSERT INTO `wp_gf_form_view` VALUES("43025", "3", "2016-11-17 09:09:22", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43026", "3", "2016-11-17 09:09:22", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43027", "11", "2016-11-17 09:44:16", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("43028", "2", "2016-11-17 09:46:17", "70.35.196.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("43029", "13", "2016-11-17 10:08:34", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("43030", "10", "2016-11-17 10:08:34", "46.118.155.149", "32");
INSERT INTO `wp_gf_form_view` VALUES("43031", "3", "2016-11-17 10:08:34", "46.118.155.149", "48");
INSERT INTO `wp_gf_form_view` VALUES("43032", "10", "2016-11-17 11:11:54", "66.249.79.152", "44");
INSERT INTO `wp_gf_form_view` VALUES("43033", "3", "2016-11-17 11:11:54", "66.249.79.152", "66");
INSERT INTO `wp_gf_form_view` VALUES("43034", "5", "2016-11-17 11:15:59", "77.75.79.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("43035", "3", "2016-11-17 12:03:41", "66.249.79.152", "67");
INSERT INTO `wp_gf_form_view` VALUES("43036", "10", "2016-11-17 12:03:41", "66.249.79.152", "44");
INSERT INTO `wp_gf_form_view` VALUES("43037", "10", "2016-11-17 13:06:58", "66.249.79.152", "48");
INSERT INTO `wp_gf_form_view` VALUES("43038", "3", "2016-11-17 13:06:59", "66.249.79.152", "75");
INSERT INTO `wp_gf_form_view` VALUES("43039", "3", "2016-11-17 14:03:33", "68.180.229.90", "49");
INSERT INTO `wp_gf_form_view` VALUES("43040", "10", "2016-11-17 14:10:03", "66.249.79.152", "32");
INSERT INTO `wp_gf_form_view` VALUES("43041", "13", "2016-11-17 14:43:35", "46.119.127.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("43042", "13", "2016-11-17 15:25:05", "178.137.89.246", "10");
INSERT INTO `wp_gf_form_view` VALUES("43043", "13", "2016-11-17 15:25:05", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("43044", "10", "2016-11-17 15:25:06", "178.137.89.246", "75");
INSERT INTO `wp_gf_form_view` VALUES("43045", "10", "2016-11-17 15:25:06", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("43046", "3", "2016-11-17 15:25:06", "178.137.89.246", "113");
INSERT INTO `wp_gf_form_view` VALUES("43047", "3", "2016-11-17 15:25:06", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("43048", "10", "2016-11-17 16:04:43", "66.249.79.148", "32");
INSERT INTO `wp_gf_form_view` VALUES("43049", "3", "2016-11-17 16:04:43", "66.249.79.148", "51");
INSERT INTO `wp_gf_form_view` VALUES("43050", "5", "2016-11-17 17:22:50", "163.172.66.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("43051", "10", "2016-11-17 17:22:50", "163.172.66.125", "224");
INSERT INTO `wp_gf_form_view` VALUES("43052", "3", "2016-11-17 17:22:51", "163.172.66.125", "337");
INSERT INTO `wp_gf_form_view` VALUES("43053", "11", "2016-11-17 17:47:16", "192.210.203.166", "3");
INSERT INTO `wp_gf_form_view` VALUES("43054", "2", "2016-11-17 17:51:11", "74.221.210.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("43055", "10", "2016-11-17 18:41:58", "96.50.18.183", "58");
INSERT INTO `wp_gf_form_view` VALUES("43056", "10", "2016-11-17 18:41:58", "96.50.18.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("43057", "10", "2016-11-17 18:41:58", "96.50.18.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("43058", "3", "2016-11-17 18:42:00", "96.50.18.183", "88");
INSERT INTO `wp_gf_form_view` VALUES("43059", "3", "2016-11-17 18:42:00", "96.50.18.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("43060", "3", "2016-11-17 18:42:00", "96.50.18.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("43061", "2", "2016-11-17 18:58:03", "54.67.5.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("43062", "10", "2016-11-17 19:19:38", "184.71.25.94", "8");
INSERT INTO `wp_gf_form_view` VALUES("43063", "3", "2016-11-17 19:19:39", "184.71.25.94", "12");
INSERT INTO `wp_gf_form_view` VALUES("43064", "13", "2016-11-17 20:06:55", "178.137.89.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("43065", "10", "2016-11-17 20:06:55", "178.137.89.246", "32");
INSERT INTO `wp_gf_form_view` VALUES("43066", "3", "2016-11-17 20:06:55", "178.137.89.246", "51");
INSERT INTO `wp_gf_form_view` VALUES("43067", "10", "2016-11-17 21:00:39", "184.66.234.64", "36");
INSERT INTO `wp_gf_form_view` VALUES("43068", "3", "2016-11-17 21:00:39", "184.66.234.64", "56");
INSERT INTO `wp_gf_form_view` VALUES("43069", "14", "2016-11-17 21:33:03", "163.172.65.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("43070", "3", "2016-11-17 22:13:19", "66.249.79.148", "73");
INSERT INTO `wp_gf_form_view` VALUES("43071", "10", "2016-11-17 22:13:21", "66.249.79.148", "49");
INSERT INTO `wp_gf_form_view` VALUES("43072", "10", "2016-11-17 23:00:03", "66.249.79.156", "44");
INSERT INTO `wp_gf_form_view` VALUES("43073", "3", "2016-11-17 23:00:03", "66.249.79.156", "72");
INSERT INTO `wp_gf_form_view` VALUES("43074", "14", "2016-11-17 23:06:19", "68.180.229.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("43075", "10", "2016-11-18 00:10:29", "66.249.79.152", "8");
INSERT INTO `wp_gf_form_view` VALUES("43076", "3", "2016-11-18 00:10:29", "66.249.79.152", "12");
INSERT INTO `wp_gf_form_view` VALUES("43077", "13", "2016-11-18 01:08:14", "46.119.127.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("43078", "10", "2016-11-18 01:08:15", "46.119.127.117", "19");
INSERT INTO `wp_gf_form_view` VALUES("43079", "10", "2016-11-18 01:08:15", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("43080", "3", "2016-11-18 01:08:16", "46.119.127.117", "31");
INSERT INTO `wp_gf_form_view` VALUES("43081", "10", "2016-11-18 02:01:02", "70.67.125.186", "40");
INSERT INTO `wp_gf_form_view` VALUES("43082", "3", "2016-11-18 02:01:03", "70.67.125.186", "61");
INSERT INTO `wp_gf_form_view` VALUES("43083", "14", "2016-11-18 02:11:06", "70.67.125.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("43084", "10", "2016-11-18 03:05:38", "66.249.79.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("43085", "3", "2016-11-18 03:05:38", "66.249.79.156", "12");
INSERT INTO `wp_gf_form_view` VALUES("43086", "3", "2016-11-18 04:06:09", "66.249.79.156", "87");
INSERT INTO `wp_gf_form_view` VALUES("43087", "10", "2016-11-18 04:06:10", "66.249.79.156", "56");
INSERT INTO `wp_gf_form_view` VALUES("43088", "14", "2016-11-18 04:45:26", "191.101.103.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("43089", "10", "2016-11-18 05:16:10", "66.249.79.152", "20");
INSERT INTO `wp_gf_form_view` VALUES("43090", "3", "2016-11-18 05:16:10", "66.249.79.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("43091", "3", "2016-11-18 06:01:08", "5.9.123.116", "90");
INSERT INTO `wp_gf_form_view` VALUES("43092", "13", "2016-11-18 06:13:03", "134.249.66.185", "5");
INSERT INTO `wp_gf_form_view` VALUES("43093", "13", "2016-11-18 06:13:03", "134.249.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("43094", "10", "2016-11-18 06:13:03", "134.249.66.185", "55");
INSERT INTO `wp_gf_form_view` VALUES("43095", "10", "2016-11-18 06:13:03", "134.249.66.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("43096", "10", "2016-11-18 07:07:07", "207.46.13.54", "20");
INSERT INTO `wp_gf_form_view` VALUES("43097", "3", "2016-11-18 07:07:07", "207.46.13.54", "30");
INSERT INTO `wp_gf_form_view` VALUES("43098", "13", "2016-11-18 08:06:40", "178.137.89.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("43099", "13", "2016-11-18 08:06:40", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("43100", "10", "2016-11-18 08:06:40", "178.137.89.246", "11");
INSERT INTO `wp_gf_form_view` VALUES("43101", "10", "2016-11-18 08:06:40", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("43102", "3", "2016-11-18 08:06:41", "178.137.89.246", "17");
INSERT INTO `wp_gf_form_view` VALUES("43103", "3", "2016-11-18 08:06:41", "178.137.89.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("43104", "10", "2016-11-18 09:34:41", "77.75.79.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("43105", "3", "2016-11-18 09:34:46", "77.75.79.11", "12");
INSERT INTO `wp_gf_form_view` VALUES("43106", "14", "2016-11-18 10:41:54", "179.61.161.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("43107", "10", "2016-11-18 10:41:55", "179.61.161.28", "4");
INSERT INTO `wp_gf_form_view` VALUES("43108", "3", "2016-11-18 10:41:56", "179.61.161.28", "6");
INSERT INTO `wp_gf_form_view` VALUES("43109", "10", "2016-11-18 11:01:08", "202.46.53.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("43110", "3", "2016-11-18 11:01:08", "202.46.53.164", "19");
INSERT INTO `wp_gf_form_view` VALUES("43111", "10", "2016-11-18 12:29:16", "207.46.13.166", "16");
INSERT INTO `wp_gf_form_view` VALUES("43112", "3", "2016-11-18 12:29:17", "207.46.13.166", "24");
INSERT INTO `wp_gf_form_view` VALUES("43113", "13", "2016-11-18 12:46:08", "134.249.66.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("43114", "10", "2016-11-18 13:04:41", "163.172.64.180", "20");
INSERT INTO `wp_gf_form_view` VALUES("43115", "3", "2016-11-18 13:04:42", "163.172.64.180", "30");
INSERT INTO `wp_gf_form_view` VALUES("43116", "10", "2016-11-18 14:58:36", "199.58.86.211", "8");
INSERT INTO `wp_gf_form_view` VALUES("43117", "3", "2016-11-18 14:58:37", "199.58.86.211", "12");
INSERT INTO `wp_gf_form_view` VALUES("43118", "3", "2016-11-18 15:13:19", "66.249.79.148", "13");
INSERT INTO `wp_gf_form_view` VALUES("43119", "10", "2016-11-18 15:13:19", "66.249.79.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("43120", "10", "2016-11-18 16:04:20", "120.52.73.97", "12");
INSERT INTO `wp_gf_form_view` VALUES("43121", "3", "2016-11-18 16:04:21", "120.52.73.97", "19");
INSERT INTO `wp_gf_form_view` VALUES("43122", "10", "2016-11-18 17:04:33", "202.46.53.145", "16");
INSERT INTO `wp_gf_form_view` VALUES("43123", "3", "2016-11-18 17:04:35", "202.46.53.145", "25");
INSERT INTO `wp_gf_form_view` VALUES("43124", "14", "2016-11-18 17:51:49", "191.103.3.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("43125", "10", "2016-11-18 18:23:52", "24.68.6.182", "24");
INSERT INTO `wp_gf_form_view` VALUES("43126", "3", "2016-11-18 18:23:54", "24.68.6.182", "37");
INSERT INTO `wp_gf_form_view` VALUES("43127", "10", "2016-11-18 19:05:34", "207.46.13.28", "33");
INSERT INTO `wp_gf_form_view` VALUES("43128", "3", "2016-11-18 19:05:36", "207.46.13.28", "58");
INSERT INTO `wp_gf_form_view` VALUES("43129", "13", "2016-11-18 19:57:26", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43130", "13", "2016-11-18 19:57:26", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43131", "13", "2016-11-18 19:57:26", "46.118.116.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("43132", "10", "2016-11-18 20:02:57", "140.184.137.21", "12");
INSERT INTO `wp_gf_form_view` VALUES("43133", "3", "2016-11-18 20:02:57", "140.184.137.21", "18");
INSERT INTO `wp_gf_form_view` VALUES("43134", "10", "2016-11-18 21:00:06", "163.172.65.229", "57");
INSERT INTO `wp_gf_form_view` VALUES("43135", "3", "2016-11-18 21:00:08", "163.172.65.229", "86");
INSERT INTO `wp_gf_form_view` VALUES("43136", "3", "2016-11-18 22:07:06", "68.180.229.90", "13");
INSERT INTO `wp_gf_form_view` VALUES("43137", "10", "2016-11-18 22:07:06", "68.180.229.90", "8");
INSERT INTO `wp_gf_form_view` VALUES("43138", "10", "2016-11-18 23:21:28", "59.75.128.205", "36");
INSERT INTO `wp_gf_form_view` VALUES("43139", "3", "2016-11-18 23:21:29", "59.75.128.205", "53");
INSERT INTO `wp_gf_form_view` VALUES("43140", "13", "2016-11-18 23:56:22", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("43141", "13", "2016-11-19 00:02:10", "46.118.116.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("43142", "10", "2016-11-19 00:02:10", "46.118.116.7", "108");
INSERT INTO `wp_gf_form_view` VALUES("43143", "3", "2016-11-19 00:02:10", "46.118.116.7", "163");
INSERT INTO `wp_gf_form_view` VALUES("43144", "11", "2016-11-19 00:35:43", "45.55.69.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("43145", "2", "2016-11-19 00:35:44", "45.55.69.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("43146", "3", "2016-11-19 01:30:19", "68.180.229.90", "25");
INSERT INTO `wp_gf_form_view` VALUES("43147", "10", "2016-11-19 01:30:19", "68.180.229.90", "16");
INSERT INTO `wp_gf_form_view` VALUES("43148", "13", "2016-11-19 01:52:07", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("43149", "10", "2016-11-19 02:00:02", "207.46.13.54", "24");
INSERT INTO `wp_gf_form_view` VALUES("43150", "3", "2016-11-19 02:00:03", "207.46.13.54", "37");
INSERT INTO `wp_gf_form_view` VALUES("43151", "10", "2016-11-19 03:13:19", "136.243.36.94", "147");
INSERT INTO `wp_gf_form_view` VALUES("43152", "3", "2016-11-19 03:13:49", "136.243.36.94", "232");
INSERT INTO `wp_gf_form_view` VALUES("43153", "6", "2016-11-19 03:15:45", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("43154", "9", "2016-11-19 03:16:27", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("43155", "8", "2016-11-19 03:30:08", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("43156", "14", "2016-11-19 03:49:58", "101.255.64.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("43157", "10", "2016-11-19 04:09:22", "68.180.229.90", "24");
INSERT INTO `wp_gf_form_view` VALUES("43158", "3", "2016-11-19 04:09:22", "68.180.229.90", "36");
INSERT INTO `wp_gf_form_view` VALUES("43159", "13", "2016-11-19 04:18:51", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("43160", "5", "2016-11-19 04:23:35", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("43161", "3", "2016-11-19 05:08:53", "40.77.167.104", "44");
INSERT INTO `wp_gf_form_view` VALUES("43162", "10", "2016-11-19 05:08:58", "40.77.167.104", "28");
INSERT INTO `wp_gf_form_view` VALUES("43163", "3", "2016-11-19 06:16:36", "66.249.79.156", "424");
INSERT INTO `wp_gf_form_view` VALUES("43164", "10", "2016-11-19 06:16:36", "66.249.79.156", "268");
INSERT INTO `wp_gf_form_view` VALUES("43165", "11", "2016-11-19 06:25:41", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("43166", "2", "2016-11-19 06:25:46", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("43167", "14", "2016-11-19 06:28:04", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("43168", "10", "2016-11-19 07:07:35", "163.172.65.234", "13");
INSERT INTO `wp_gf_form_view` VALUES("43169", "3", "2016-11-19 07:07:45", "163.172.65.234", "19");
INSERT INTO `wp_gf_form_view` VALUES("43170", "10", "2016-11-19 09:23:43", "163.172.66.7", "13");
INSERT INTO `wp_gf_form_view` VALUES("43171", "3", "2016-11-19 09:23:46", "163.172.66.7", "18");
INSERT INTO `wp_gf_form_view` VALUES("43172", "10", "2016-11-19 10:31:55", "218.104.228.180", "21");
INSERT INTO `wp_gf_form_view` VALUES("43173", "3", "2016-11-19 10:31:56", "218.104.228.180", "30");
INSERT INTO `wp_gf_form_view` VALUES("43174", "10", "2016-11-19 11:19:26", "163.172.65.69", "20");
INSERT INTO `wp_gf_form_view` VALUES("43175", "3", "2016-11-19 11:19:27", "163.172.65.69", "25");
INSERT INTO `wp_gf_form_view` VALUES("43176", "13", "2016-11-19 12:08:54", "46.119.127.117", "8");
INSERT INTO `wp_gf_form_view` VALUES("43177", "13", "2016-11-19 12:08:54", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("43178", "10", "2016-11-19 12:08:55", "46.119.127.117", "40");
INSERT INTO `wp_gf_form_view` VALUES("43179", "10", "2016-11-19 12:08:55", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("43180", "3", "2016-11-19 12:08:55", "46.119.127.117", "60");
INSERT INTO `wp_gf_form_view` VALUES("43181", "10", "2016-11-19 13:20:38", "163.172.65.119", "44");
INSERT INTO `wp_gf_form_view` VALUES("43182", "3", "2016-11-19 13:20:38", "163.172.65.119", "66");
INSERT INTO `wp_gf_form_view` VALUES("43183", "13", "2016-11-19 13:57:57", "134.249.66.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("43184", "14", "2016-11-19 14:07:37", "198.98.96.203", "2");
INSERT INTO `wp_gf_form_view` VALUES("43185", "10", "2016-11-19 14:07:37", "198.98.96.203", "28");
INSERT INTO `wp_gf_form_view` VALUES("43186", "3", "2016-11-19 14:07:37", "198.98.96.203", "43");
INSERT INTO `wp_gf_form_view` VALUES("43187", "10", "2016-11-19 15:21:59", "66.249.79.156", "40");
INSERT INTO `wp_gf_form_view` VALUES("43188", "3", "2016-11-19 15:21:59", "66.249.79.156", "60");
INSERT INTO `wp_gf_form_view` VALUES("43189", "13", "2016-11-19 15:22:44", "46.118.116.7", "3");
INSERT INTO `wp_gf_form_view` VALUES("43190", "12", "2016-11-19 15:22:45", "68.180.229.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("43191", "10", "2016-11-19 16:11:34", "66.102.6.93", "288");
INSERT INTO `wp_gf_form_view` VALUES("43192", "3", "2016-11-19 16:11:35", "66.102.6.93", "444");
INSERT INTO `wp_gf_form_view` VALUES("43193", "9", "2016-11-19 16:30:39", "207.46.13.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("43194", "8", "2016-11-19 16:31:45", "207.46.13.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("43195", "13", "2016-11-19 16:31:48", "207.46.13.54", "4");
INSERT INTO `wp_gf_form_view` VALUES("43196", "14", "2016-11-19 17:02:15", "202.46.53.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("43197", "10", "2016-11-19 17:02:15", "202.46.53.178", "45");
INSERT INTO `wp_gf_form_view` VALUES("43198", "3", "2016-11-19 17:02:16", "202.46.53.178", "68");
INSERT INTO `wp_gf_form_view` VALUES("43199", "10", "2016-11-19 18:20:33", "5.255.250.72", "115");
INSERT INTO `wp_gf_form_view` VALUES("43200", "3", "2016-11-19 18:20:33", "5.255.250.72", "175");
INSERT INTO `wp_gf_form_view` VALUES("43201", "9", "2016-11-19 18:25:04", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("43202", "12", "2016-11-19 18:26:52", "40.77.167.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("43203", "3", "2016-11-19 19:00:36", "66.249.79.152", "122");
INSERT INTO `wp_gf_form_view` VALUES("43204", "10", "2016-11-19 19:00:37", "66.249.79.152", "80");
INSERT INTO `wp_gf_form_view` VALUES("43205", "13", "2016-11-19 19:20:37", "40.77.167.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("43206", "10", "2016-11-19 20:44:22", "40.77.167.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("43207", "3", "2016-11-19 20:44:26", "40.77.167.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("43208", "10", "2016-11-19 21:12:16", "163.172.65.199", "13");
INSERT INTO `wp_gf_form_view` VALUES("43209", "3", "2016-11-19 21:12:18", "163.172.65.199", "18");
INSERT INTO `wp_gf_form_view` VALUES("43210", "13", "2016-11-19 22:24:48", "46.119.127.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("43211", "13", "2016-11-19 22:24:48", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("43212", "10", "2016-11-19 22:24:49", "46.119.127.117", "26");
INSERT INTO `wp_gf_form_view` VALUES("43213", "10", "2016-11-19 22:24:49", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("43214", "10", "2016-11-19 22:24:49", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("43215", "3", "2016-11-19 22:24:50", "46.119.127.117", "41");
INSERT INTO `wp_gf_form_view` VALUES("43216", "3", "2016-11-19 22:24:50", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("43217", "3", "2016-11-19 22:24:50", "46.119.127.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("43218", "6", "2016-11-19 22:35:20", "202.46.52.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("43219", "14", "2016-11-19 23:06:17", "165.231.103.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("43220", "10", "2016-11-19 23:06:17", "165.231.103.135", "20");
INSERT INTO `wp_gf_form_view` VALUES("43221", "3", "2016-11-19 23:06:18", "165.231.103.135", "31");
INSERT INTO `wp_gf_form_view` VALUES("43222", "10", "2016-11-20 00:05:35", "68.180.229.90", "30");
INSERT INTO `wp_gf_form_view` VALUES("43223", "3", "2016-11-20 00:05:36", "68.180.229.90", "60");
INSERT INTO `wp_gf_form_view` VALUES("43224", "2", "2016-11-20 00:28:11", "163.172.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("43225", "13", "2016-11-20 00:43:28", "46.118.155.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("43226", "13", "2016-11-20 01:20:28", "178.137.89.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("43227", "10", "2016-11-20 01:20:29", "178.137.89.246", "9");
INSERT INTO `wp_gf_form_view` VALUES("43228", "3", "2016-11-20 01:20:29", "178.137.89.246", "21");
INSERT INTO `wp_gf_form_view` VALUES("43229", "3", "2016-11-20 02:30:58", "163.172.65.185", "36");
INSERT INTO `wp_gf_form_view` VALUES("43230", "10", "2016-11-20 02:30:58", "163.172.65.185", "17");
INSERT INTO `wp_gf_form_view` VALUES("43231", "14", "2016-11-20 03:28:00", "104.129.15.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("43232", "10", "2016-11-20 03:28:00", "104.129.15.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("43233", "3", "2016-11-20 03:28:00", "104.129.15.168", "7");
INSERT INTO `wp_gf_form_view` VALUES("43234", "13", "2016-11-20 04:21:28", "178.137.89.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("43235", "10", "2016-11-20 04:21:29", "178.137.89.246", "12");
INSERT INTO `wp_gf_form_view` VALUES("43236", "3", "2016-11-20 04:21:29", "178.137.89.246", "28");
INSERT INTO `wp_gf_form_view` VALUES("43237", "3", "2016-11-20 05:12:39", "163.172.66.150", "34");
INSERT INTO `wp_gf_form_view` VALUES("43238", "10", "2016-11-20 05:12:40", "163.172.66.150", "13");
INSERT INTO `wp_gf_form_view` VALUES("43239", "10", "2016-11-20 07:41:27", "68.180.229.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("43240", "3", "2016-11-20 07:41:29", "68.180.229.90", "14");
INSERT INTO `wp_gf_form_view` VALUES("43241", "10", "2016-11-20 08:28:07", "120.25.105.45", "21");
INSERT INTO `wp_gf_form_view` VALUES("43242", "3", "2016-11-20 08:28:08", "120.25.105.45", "50");
INSERT INTO `wp_gf_form_view` VALUES("43243", "10", "2016-11-20 09:37:35", "68.180.229.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("43244", "3", "2016-11-20 09:37:36", "68.180.229.90", "22");
INSERT INTO `wp_gf_form_view` VALUES("43245", "10", "2016-11-20 10:15:01", "68.180.229.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("43246", "3", "2016-11-20 10:15:03", "68.180.229.90", "21");
INSERT INTO `wp_gf_form_view` VALUES("43247", "14", "2016-11-20 10:39:28", "104.129.15.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("43248", "10", "2016-11-20 11:11:05", "188.213.136.166", "12");
INSERT INTO `wp_gf_form_view` VALUES("43249", "3", "2016-11-20 11:11:05", "188.213.136.166", "22");
INSERT INTO `wp_gf_form_view` VALUES("43250", "10", "2016-11-20 12:13:34", "163.172.65.21", "15");
INSERT INTO `wp_gf_form_view` VALUES("43251", "3", "2016-11-20 12:13:35", "163.172.65.21", "35");
INSERT INTO `wp_gf_form_view` VALUES("43252", "13", "2016-11-20 12:17:08", "46.118.116.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("43253", "10", "2016-11-20 13:06:13", "68.180.229.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("43254", "3", "2016-11-20 13:06:13", "68.180.229.90", "21");
INSERT INTO `wp_gf_form_view` VALUES("43255", "12", "2016-11-20 13:44:04", "157.55.39.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("43256", "10", "2016-11-20 14:44:22", "68.180.229.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("43257", "3", "2016-11-20 14:44:22", "68.180.229.90", "7");
INSERT INTO `wp_gf_form_view` VALUES("43258", "10", "2016-11-20 15:06:35", "202.46.50.154", "9");
INSERT INTO `wp_gf_form_view` VALUES("43259", "3", "2016-11-20 15:06:35", "202.46.50.154", "21");
INSERT INTO `wp_gf_form_view` VALUES("43260", "3", "2016-11-20 16:05:04", "68.180.229.90", "46");
INSERT INTO `wp_gf_form_view` VALUES("43261", "10", "2016-11-20 16:05:05", "68.180.229.90", "18");
INSERT INTO `wp_gf_form_view` VALUES("43262", "13", "2016-11-20 16:24:36", "46.118.116.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("43263", "13", "2016-11-20 17:39:56", "46.118.155.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("43264", "10", "2016-11-20 17:39:58", "46.118.155.149", "8");
INSERT INTO `wp_gf_form_view` VALUES("43265", "10", "2016-11-20 17:39:58", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("43266", "3", "2016-11-20 17:39:58", "46.118.155.149", "20");
INSERT INTO `wp_gf_form_view` VALUES("43267", "3", "2016-11-20 17:39:58", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("43268", "10", "2016-11-20 18:30:24", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("43269", "3", "2016-11-20 18:30:24", "66.249.79.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("43270", "10", "2016-11-20 19:06:52", "77.75.76.170", "9");
INSERT INTO `wp_gf_form_view` VALUES("43271", "3", "2016-11-20 19:06:52", "77.75.76.170", "21");
INSERT INTO `wp_gf_form_view` VALUES("43272", "13", "2016-11-20 19:20:26", "46.118.155.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("43273", "14", "2016-11-20 19:24:01", "212.83.175.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43274", "10", "2016-11-20 20:17:17", "104.154.65.11", "6");
INSERT INTO `wp_gf_form_view` VALUES("43275", "3", "2016-11-20 20:17:19", "104.154.65.11", "14");
INSERT INTO `wp_gf_form_view` VALUES("43276", "10", "2016-11-20 21:46:39", "68.180.229.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("43277", "3", "2016-11-20 21:46:41", "68.180.229.90", "21");
INSERT INTO `wp_gf_form_view` VALUES("43278", "10", "2016-11-20 22:17:03", "66.249.79.148", "15");
INSERT INTO `wp_gf_form_view` VALUES("43279", "3", "2016-11-20 22:17:03", "66.249.79.148", "36");
INSERT INTO `wp_gf_form_view` VALUES("43280", "10", "2016-11-20 23:14:22", "77.75.79.72", "21");
INSERT INTO `wp_gf_form_view` VALUES("43281", "3", "2016-11-20 23:14:23", "77.75.79.72", "51");
INSERT INTO `wp_gf_form_view` VALUES("43282", "10", "2016-11-21 00:45:28", "202.46.51.119", "10");
INSERT INTO `wp_gf_form_view` VALUES("43283", "3", "2016-11-21 00:45:30", "202.46.51.119", "21");
INSERT INTO `wp_gf_form_view` VALUES("43284", "10", "2016-11-21 01:13:40", "68.180.229.90", "21");
INSERT INTO `wp_gf_form_view` VALUES("43285", "3", "2016-11-21 01:13:41", "68.180.229.90", "51");
INSERT INTO `wp_gf_form_view` VALUES("43286", "3", "2016-11-21 02:48:27", "68.180.229.90", "8");
INSERT INTO `wp_gf_form_view` VALUES("43287", "10", "2016-11-21 02:48:27", "68.180.229.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("43288", "3", "2016-11-21 03:17:19", "202.46.48.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("43289", "10", "2016-11-21 03:17:19", "202.46.48.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("43290", "10", "2016-11-21 04:51:42", "77.75.76.171", "3");
INSERT INTO `wp_gf_form_view` VALUES("43291", "3", "2016-11-21 04:51:44", "77.75.76.171", "7");
INSERT INTO `wp_gf_form_view` VALUES("43292", "10", "2016-11-21 05:41:09", "66.249.79.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("43293", "3", "2016-11-21 05:41:10", "66.249.79.156", "7");
INSERT INTO `wp_gf_form_view` VALUES("43294", "10", "2016-11-21 06:02:26", "77.75.79.72", "15");
INSERT INTO `wp_gf_form_view` VALUES("43295", "3", "2016-11-21 06:02:26", "77.75.79.72", "35");
INSERT INTO `wp_gf_form_view` VALUES("43296", "10", "2016-11-21 07:04:24", "77.75.76.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("43297", "3", "2016-11-21 07:04:34", "77.75.76.165", "15");
INSERT INTO `wp_gf_form_view` VALUES("43298", "10", "2016-11-21 08:15:58", "77.75.76.171", "6");
INSERT INTO `wp_gf_form_view` VALUES("43299", "3", "2016-11-21 08:16:00", "77.75.76.171", "14");
INSERT INTO `wp_gf_form_view` VALUES("43300", "10", "2016-11-21 09:40:56", "66.249.79.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("43301", "3", "2016-11-21 09:40:58", "66.249.79.152", "7");
INSERT INTO `wp_gf_form_view` VALUES("43302", "10", "2016-11-21 10:33:03", "199.16.157.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("43303", "3", "2016-11-21 10:33:04", "199.16.157.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("43304", "3", "2016-11-21 11:59:38", "40.77.167.50", "8");
INSERT INTO `wp_gf_form_view` VALUES("43305", "10", "2016-11-21 11:59:40", "40.77.167.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("43306", "3", "2016-11-21 12:05:49", "157.55.39.249", "78");
INSERT INTO `wp_gf_form_view` VALUES("43307", "10", "2016-11-21 12:05:49", "157.55.39.249", "33");
INSERT INTO `wp_gf_form_view` VALUES("43308", "9", "2016-11-21 12:11:27", "157.55.39.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("43309", "10", "2016-11-21 13:09:42", "157.55.39.249", "345");
INSERT INTO `wp_gf_form_view` VALUES("43310", "3", "2016-11-21 13:09:42", "157.55.39.249", "1308");
INSERT INTO `wp_gf_form_view` VALUES("43311", "2", "2016-11-21 13:42:57", "209.190.113.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("43312", "11", "2016-11-21 13:42:58", "209.190.113.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("43313", "14", "2016-11-21 13:44:17", "209.190.113.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("43314", "5", "2016-11-21 13:58:28", "207.46.13.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("43315", "10", "2016-11-21 14:17:26", "108.180.150.216", "9");
INSERT INTO `wp_gf_form_view` VALUES("43316", "3", "2016-11-21 14:17:27", "108.180.150.216", "22");
INSERT INTO `wp_gf_form_view` VALUES("43317", "10", "2016-11-21 15:04:21", "163.172.65.47", "9");
INSERT INTO `wp_gf_form_view` VALUES("43318", "3", "2016-11-21 15:04:21", "163.172.65.47", "22");
INSERT INTO `wp_gf_form_view` VALUES("43319", "10", "2016-11-21 16:16:29", "40.77.167.27", "24");
INSERT INTO `wp_gf_form_view` VALUES("43320", "3", "2016-11-21 16:16:30", "40.77.167.27", "58");
INSERT INTO `wp_gf_form_view` VALUES("43321", "14", "2016-11-21 17:02:20", "37.139.9.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("43322", "10", "2016-11-21 17:02:23", "37.139.9.11", "52");
INSERT INTO `wp_gf_form_view` VALUES("43323", "3", "2016-11-21 17:02:23", "37.139.9.11", "121");
INSERT INTO `wp_gf_form_view` VALUES("43324", "13", "2016-11-21 17:24:33", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43325", "10", "2016-11-21 18:09:21", "68.180.229.90", "24");
INSERT INTO `wp_gf_form_view` VALUES("43326", "3", "2016-11-21 18:09:21", "68.180.229.90", "56");
INSERT INTO `wp_gf_form_view` VALUES("43327", "13", "2016-11-21 19:04:51", "207.46.13.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("43328", "10", "2016-11-21 19:04:52", "207.46.13.60", "36");
INSERT INTO `wp_gf_form_view` VALUES("43329", "3", "2016-11-21 19:04:52", "207.46.13.60", "87");
INSERT INTO `wp_gf_form_view` VALUES("43330", "10", "2016-11-21 20:09:27", "157.208.128.5", "18");
INSERT INTO `wp_gf_form_view` VALUES("43331", "3", "2016-11-21 20:09:27", "157.208.128.5", "43");
INSERT INTO `wp_gf_form_view` VALUES("43332", "6", "2016-11-21 20:18:24", "88.99.27.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("43333", "13", "2016-11-21 20:54:25", "46.118.115.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("43334", "13", "2016-11-21 20:54:25", "46.118.115.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("43335", "3", "2016-11-21 21:08:02", "40.77.167.27", "94");
INSERT INTO `wp_gf_form_view` VALUES("43336", "10", "2016-11-21 21:08:02", "40.77.167.27", "39");
INSERT INTO `wp_gf_form_view` VALUES("43337", "13", "2016-11-21 21:17:27", "46.118.119.54", "8");
INSERT INTO `wp_gf_form_view` VALUES("43338", "13", "2016-11-21 21:17:27", "46.118.119.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("43339", "3", "2016-11-21 22:07:30", "40.77.167.50", "22");
INSERT INTO `wp_gf_form_view` VALUES("43340", "10", "2016-11-21 22:07:30", "40.77.167.50", "9");
INSERT INTO `wp_gf_form_view` VALUES("43341", "2", "2016-11-21 23:08:27", "68.180.229.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("43342", "10", "2016-11-21 23:08:27", "68.180.229.90", "27");
INSERT INTO `wp_gf_form_view` VALUES("43343", "3", "2016-11-21 23:08:27", "68.180.229.90", "68");
INSERT INTO `wp_gf_form_view` VALUES("43344", "14", "2016-11-21 23:33:06", "184.71.13.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("43345", "3", "2016-11-22 00:04:03", "163.172.64.187", "72");
INSERT INTO `wp_gf_form_view` VALUES("43346", "10", "2016-11-22 00:04:04", "163.172.64.187", "30");
INSERT INTO `wp_gf_form_view` VALUES("43347", "13", "2016-11-22 00:38:18", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43348", "8", "2016-11-22 00:41:36", "157.55.39.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("43349", "10", "2016-11-22 01:07:53", "5.9.94.207", "6");
INSERT INTO `wp_gf_form_view` VALUES("43350", "3", "2016-11-22 01:07:53", "5.9.94.207", "14");
INSERT INTO `wp_gf_form_view` VALUES("43351", "10", "2016-11-22 02:03:51", "184.151.231.175", "47");
INSERT INTO `wp_gf_form_view` VALUES("43352", "3", "2016-11-22 02:03:51", "184.151.231.175", "105");
INSERT INTO `wp_gf_form_view` VALUES("43353", "13", "2016-11-22 02:52:09", "46.118.115.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("43354", "10", "2016-11-22 03:12:44", "40.77.167.50", "58");
INSERT INTO `wp_gf_form_view` VALUES("43355", "3", "2016-11-22 03:12:44", "40.77.167.50", "134");
INSERT INTO `wp_gf_form_view` VALUES("43356", "13", "2016-11-22 03:39:53", "46.118.119.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("43357", "10", "2016-11-22 04:04:36", "157.55.39.39", "18");
INSERT INTO `wp_gf_form_view` VALUES("43358", "3", "2016-11-22 04:04:36", "157.55.39.39", "40");
INSERT INTO `wp_gf_form_view` VALUES("43359", "10", "2016-11-22 05:08:01", "157.55.39.249", "336");
INSERT INTO `wp_gf_form_view` VALUES("43360", "3", "2016-11-22 05:08:01", "157.55.39.249", "833");
INSERT INTO `wp_gf_form_view` VALUES("43361", "13", "2016-11-22 05:10:47", "178.137.90.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("43362", "11", "2016-11-22 05:28:51", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("43363", "2", "2016-11-22 05:29:04", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("43364", "14", "2016-11-22 05:33:55", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("43365", "10", "2016-11-22 06:01:04", "5.9.98.130", "447");
INSERT INTO `wp_gf_form_view` VALUES("43366", "3", "2016-11-22 06:01:05", "5.9.98.130", "1089");
INSERT INTO `wp_gf_form_view` VALUES("43367", "8", "2016-11-22 06:02:08", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("43368", "9", "2016-11-22 06:02:31", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("43369", "6", "2016-11-22 06:04:34", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("43370", "10", "2016-11-22 07:00:18", "5.9.98.130", "438");
INSERT INTO `wp_gf_form_view` VALUES("43371", "3", "2016-11-22 07:00:19", "5.9.98.130", "1184");
INSERT INTO `wp_gf_form_view` VALUES("43372", "10", "2016-11-22 08:00:04", "5.9.98.130", "750");
INSERT INTO `wp_gf_form_view` VALUES("43373", "3", "2016-11-22 08:00:04", "5.9.98.130", "2003");
INSERT INTO `wp_gf_form_view` VALUES("43374", "10", "2016-11-22 09:48:22", "5.9.98.130", "165");
INSERT INTO `wp_gf_form_view` VALUES("43375", "3", "2016-11-22 09:48:24", "5.9.98.130", "386");
INSERT INTO `wp_gf_form_view` VALUES("43376", "10", "2016-11-22 10:00:00", "5.9.98.130", "933");
INSERT INTO `wp_gf_form_view` VALUES("43377", "3", "2016-11-22 10:00:00", "5.9.98.130", "1778");
INSERT INTO `wp_gf_form_view` VALUES("43378", "11", "2016-11-22 10:45:22", "163.172.65.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("43379", "3", "2016-11-22 11:00:05", "5.9.98.130", "2329");
INSERT INTO `wp_gf_form_view` VALUES("43380", "10", "2016-11-22 11:00:06", "5.9.98.130", "618");
INSERT INTO `wp_gf_form_view` VALUES("43381", "13", "2016-11-22 11:48:56", "46.119.121.206", "4");
INSERT INTO `wp_gf_form_view` VALUES("43382", "10", "2016-11-22 12:19:04", "68.180.229.90", "12");
INSERT INTO `wp_gf_form_view` VALUES("43383", "3", "2016-11-22 12:19:05", "68.180.229.90", "29");
INSERT INTO `wp_gf_form_view` VALUES("43384", "3", "2016-11-22 13:09:22", "157.55.39.39", "1595");
INSERT INTO `wp_gf_form_view` VALUES("43385", "10", "2016-11-22 13:09:22", "157.55.39.39", "690");
INSERT INTO `wp_gf_form_view` VALUES("43386", "10", "2016-11-22 14:00:01", "5.9.98.130", "1234");
INSERT INTO `wp_gf_form_view` VALUES("43387", "3", "2016-11-22 14:00:02", "5.9.98.130", "2362");
INSERT INTO `wp_gf_form_view` VALUES("43388", "14", "2016-11-22 14:07:06", "216.126.100.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("43389", "10", "2016-11-22 15:00:15", "5.9.98.130", "732");
INSERT INTO `wp_gf_form_view` VALUES("43390", "3", "2016-11-22 15:00:17", "5.9.98.130", "2473");
INSERT INTO `wp_gf_form_view` VALUES("43391", "14", "2016-11-22 15:14:30", "104.129.15.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("43392", "11", "2016-11-22 15:44:36", "68.180.229.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("43393", "3", "2016-11-22 16:00:13", "5.9.98.130", "2319");
INSERT INTO `wp_gf_form_view` VALUES("43394", "10", "2016-11-22 16:00:13", "5.9.98.130", "684");
INSERT INTO `wp_gf_form_view` VALUES("43395", "10", "2016-11-22 17:00:07", "5.9.98.130", "141");
INSERT INTO `wp_gf_form_view` VALUES("43396", "3", "2016-11-22 17:00:07", "5.9.98.130", "330");
INSERT INTO `wp_gf_form_view` VALUES("43397", "13", "2016-11-22 17:27:41", "46.118.154.190", "5");
INSERT INTO `wp_gf_form_view` VALUES("43398", "9", "2016-11-22 18:00:27", "40.77.167.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("43399", "10", "2016-11-22 18:00:27", "40.77.167.50", "45");
INSERT INTO `wp_gf_form_view` VALUES("43400", "3", "2016-11-22 18:00:27", "40.77.167.50", "106");
INSERT INTO `wp_gf_form_view` VALUES("43401", "2", "2016-11-22 18:42:55", "194.187.170.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("43402", "14", "2016-11-22 18:54:43", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("43403", "10", "2016-11-22 19:01:07", "184.66.49.231", "364");
INSERT INTO `wp_gf_form_view` VALUES("43404", "3", "2016-11-22 19:01:08", "184.66.49.231", "843");
INSERT INTO `wp_gf_form_view` VALUES("43405", "11", "2016-11-22 19:05:31", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("43406", "2", "2016-11-22 19:05:59", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43407", "14", "2016-11-22 19:23:37", "96.54.203.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("43408", "6", "2016-11-22 19:38:41", "157.55.39.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("43409", "13", "2016-11-22 19:43:33", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("43410", "10", "2016-11-22 20:00:00", "5.9.98.130", "911");
INSERT INTO `wp_gf_form_view` VALUES("43411", "3", "2016-11-22 20:00:00", "5.9.98.130", "2128");
INSERT INTO `wp_gf_form_view` VALUES("43412", "10", "2016-11-22 21:00:00", "5.9.98.130", "864");
INSERT INTO `wp_gf_form_view` VALUES("43413", "3", "2016-11-22 21:00:00", "5.9.98.130", "1605");
INSERT INTO `wp_gf_form_view` VALUES("43414", "13", "2016-11-22 21:28:04", "37.115.113.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("43415", "10", "2016-11-22 22:00:00", "5.9.98.130", "756");
INSERT INTO `wp_gf_form_view` VALUES("43416", "3", "2016-11-22 22:00:00", "5.9.98.130", "1664");
INSERT INTO `wp_gf_form_view` VALUES("43417", "10", "2016-11-22 23:00:23", "5.9.98.130", "1035");
INSERT INTO `wp_gf_form_view` VALUES("43418", "3", "2016-11-22 23:00:24", "5.9.98.130", "2051");
INSERT INTO `wp_gf_form_view` VALUES("43419", "14", "2016-11-22 23:43:22", "120.52.73.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("43420", "11", "2016-11-22 23:56:31", "176.32.16.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("43421", "2", "2016-11-22 23:57:52", "176.32.16.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("43422", "3", "2016-11-23 00:00:00", "5.9.98.130", "3353");
INSERT INTO `wp_gf_form_view` VALUES("43423", "10", "2016-11-23 00:00:05", "5.9.98.130", "1191");
INSERT INTO `wp_gf_form_view` VALUES("43424", "3", "2016-11-23 01:00:02", "5.9.98.130", "3203");
INSERT INTO `wp_gf_form_view` VALUES("43425", "10", "2016-11-23 01:00:04", "5.9.98.130", "814");
INSERT INTO `wp_gf_form_view` VALUES("43426", "14", "2016-11-23 01:31:38", "202.21.116.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("43427", "3", "2016-11-23 02:00:04", "5.9.98.130", "3012");
INSERT INTO `wp_gf_form_view` VALUES("43428", "10", "2016-11-23 02:00:06", "5.9.98.130", "911");
INSERT INTO `wp_gf_form_view` VALUES("43429", "10", "2016-11-23 03:00:03", "5.9.98.130", "241");
INSERT INTO `wp_gf_form_view` VALUES("43430", "3", "2016-11-23 03:00:04", "5.9.98.130", "560");
INSERT INTO `wp_gf_form_view` VALUES("43431", "13", "2016-11-23 03:09:03", "37.115.113.73", "5");
INSERT INTO `wp_gf_form_view` VALUES("43432", "10", "2016-11-23 04:06:38", "77.75.79.54", "19");
INSERT INTO `wp_gf_form_view` VALUES("43433", "3", "2016-11-23 04:06:39", "77.75.79.54", "42");
INSERT INTO `wp_gf_form_view` VALUES("43434", "14", "2016-11-23 04:59:45", "88.81.214.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("43435", "10", "2016-11-23 05:16:51", "66.249.79.152", "34");
INSERT INTO `wp_gf_form_view` VALUES("43436", "3", "2016-11-23 05:16:52", "66.249.79.152", "77");
INSERT INTO `wp_gf_form_view` VALUES("43437", "14", "2016-11-23 05:53:25", "96.50.63.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("43438", "14", "2016-11-23 06:00:04", "96.50.63.233", "4");
INSERT INTO `wp_gf_form_view` VALUES("43439", "10", "2016-11-23 06:00:04", "96.50.63.233", "39");
INSERT INTO `wp_gf_form_view` VALUES("43440", "3", "2016-11-23 06:00:04", "96.50.63.233", "92");
INSERT INTO `wp_gf_form_view` VALUES("43441", "14", "2016-11-23 07:00:35", "96.50.63.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("43442", "10", "2016-11-23 07:00:35", "96.50.63.233", "25");
INSERT INTO `wp_gf_form_view` VALUES("43443", "3", "2016-11-23 07:00:35", "96.50.63.233", "57");
INSERT INTO `wp_gf_form_view` VALUES("43444", "10", "2016-11-23 08:02:55", "40.77.167.50", "229");
INSERT INTO `wp_gf_form_view` VALUES("43445", "3", "2016-11-23 08:02:56", "40.77.167.50", "532");
INSERT INTO `wp_gf_form_view` VALUES("43446", "10", "2016-11-23 09:00:17", "5.9.98.130", "942");
INSERT INTO `wp_gf_form_view` VALUES("43447", "3", "2016-11-23 09:00:17", "5.9.98.130", "2198");
INSERT INTO `wp_gf_form_view` VALUES("43448", "9", "2016-11-23 09:17:25", "157.55.39.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("43449", "13", "2016-11-23 09:23:35", "46.118.154.190", "4");
INSERT INTO `wp_gf_form_view` VALUES("43450", "13", "2016-11-23 09:23:35", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43451", "10", "2016-11-23 10:00:11", "5.9.98.130", "1159");
INSERT INTO `wp_gf_form_view` VALUES("43452", "3", "2016-11-23 10:00:12", "5.9.98.130", "2703");
INSERT INTO `wp_gf_form_view` VALUES("43453", "10", "2016-11-23 11:00:01", "5.9.98.130", "1086");
INSERT INTO `wp_gf_form_view` VALUES("43454", "3", "2016-11-23 11:00:01", "5.9.98.130", "2063");
INSERT INTO `wp_gf_form_view` VALUES("43455", "13", "2016-11-23 11:19:11", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("43456", "3", "2016-11-23 12:00:00", "5.9.98.130", "2045");
INSERT INTO `wp_gf_form_view` VALUES("43457", "10", "2016-11-23 12:00:00", "5.9.98.130", "1116");
INSERT INTO `wp_gf_form_view` VALUES("43458", "13", "2016-11-23 12:26:24", "178.137.161.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("43459", "3", "2016-11-23 13:00:00", "5.9.98.130", "2332");
INSERT INTO `wp_gf_form_view` VALUES("43460", "10", "2016-11-23 13:00:14", "5.9.98.130", "999");
INSERT INTO `wp_gf_form_view` VALUES("43461", "3", "2016-11-23 14:00:00", "5.9.98.130", "1915");
INSERT INTO `wp_gf_form_view` VALUES("43462", "10", "2016-11-23 14:00:02", "5.9.98.130", "924");
INSERT INTO `wp_gf_form_view` VALUES("43463", "13", "2016-11-23 14:17:57", "194.187.170.109", "5");
INSERT INTO `wp_gf_form_view` VALUES("43464", "10", "2016-11-23 15:00:35", "5.9.98.130", "1089");
INSERT INTO `wp_gf_form_view` VALUES("43465", "3", "2016-11-23 15:00:35", "5.9.98.130", "2071");
INSERT INTO `wp_gf_form_view` VALUES("43466", "2", "2016-11-23 15:35:22", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("43467", "11", "2016-11-23 15:35:54", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("43468", "10", "2016-11-23 16:00:11", "5.9.98.130", "1128");
INSERT INTO `wp_gf_form_view` VALUES("43469", "3", "2016-11-23 16:00:12", "5.9.98.130", "1368");
INSERT INTO `wp_gf_form_view` VALUES("43470", "2", "2016-11-23 16:40:39", "104.245.102.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("43471", "3", "2016-11-23 17:00:00", "5.9.98.130", "2176");
INSERT INTO `wp_gf_form_view` VALUES("43472", "10", "2016-11-23 17:00:15", "5.9.98.130", "633");
INSERT INTO `wp_gf_form_view` VALUES("43473", "3", "2016-11-23 18:00:14", "5.9.98.130", "1647");
INSERT INTO `wp_gf_form_view` VALUES("43474", "10", "2016-11-23 18:00:16", "5.9.98.130", "339");
INSERT INTO `wp_gf_form_view` VALUES("43475", "13", "2016-11-23 18:26:33", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43476", "13", "2016-11-23 18:26:33", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43477", "10", "2016-11-23 19:20:22", "184.71.26.18", "42");
INSERT INTO `wp_gf_form_view` VALUES("43478", "3", "2016-11-23 19:20:37", "184.71.26.18", "100");
INSERT INTO `wp_gf_form_view` VALUES("43479", "3", "2016-11-23 19:20:37", "184.71.26.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("43480", "10", "2016-11-23 20:02:41", "68.180.229.172", "57");
INSERT INTO `wp_gf_form_view` VALUES("43481", "3", "2016-11-23 20:02:41", "68.180.229.172", "134");
INSERT INTO `wp_gf_form_view` VALUES("43482", "14", "2016-11-23 20:55:41", "36.73.144.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("43483", "13", "2016-11-23 20:59:19", "134.249.51.255", "3");
INSERT INTO `wp_gf_form_view` VALUES("43484", "10", "2016-11-23 21:12:06", "184.146.156.244", "15");
INSERT INTO `wp_gf_form_view` VALUES("43485", "3", "2016-11-23 21:12:06", "184.146.156.244", "35");
INSERT INTO `wp_gf_form_view` VALUES("43486", "13", "2016-11-23 21:37:21", "157.55.39.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("43487", "10", "2016-11-23 22:16:49", "77.75.78.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("43488", "3", "2016-11-23 22:16:50", "77.75.78.162", "42");
INSERT INTO `wp_gf_form_view` VALUES("43489", "10", "2016-11-23 23:08:39", "5.255.250.72", "34");
INSERT INTO `wp_gf_form_view` VALUES("43490", "3", "2016-11-23 23:08:40", "5.255.250.72", "73");
INSERT INTO `wp_gf_form_view` VALUES("43491", "10", "2016-11-24 00:08:52", "184.69.163.74", "36");
INSERT INTO `wp_gf_form_view` VALUES("43492", "3", "2016-11-24 00:08:54", "184.69.163.74", "84");
INSERT INTO `wp_gf_form_view` VALUES("43493", "13", "2016-11-24 00:08:58", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("43494", "8", "2016-11-24 00:13:18", "157.55.39.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("43495", "10", "2016-11-24 01:13:00", "202.46.50.122", "18");
INSERT INTO `wp_gf_form_view` VALUES("43496", "3", "2016-11-24 01:13:01", "202.46.50.122", "42");
INSERT INTO `wp_gf_form_view` VALUES("43497", "13", "2016-11-24 01:59:54", "178.137.163.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("43498", "10", "2016-11-24 02:13:05", "157.55.39.176", "25");
INSERT INTO `wp_gf_form_view` VALUES("43499", "3", "2016-11-24 02:13:05", "157.55.39.176", "56");
INSERT INTO `wp_gf_form_view` VALUES("43500", "10", "2016-11-24 03:47:14", "202.46.56.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("43501", "3", "2016-11-24 03:47:15", "202.46.56.191", "7");
INSERT INTO `wp_gf_form_view` VALUES("43502", "10", "2016-11-24 05:18:18", "157.55.39.176", "27");
INSERT INTO `wp_gf_form_view` VALUES("43503", "3", "2016-11-24 05:18:23", "157.55.39.176", "64");
INSERT INTO `wp_gf_form_view` VALUES("43504", "2", "2016-11-24 05:48:55", "192.243.55.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("43505", "10", "2016-11-24 07:24:01", "24.108.186.103", "33");
INSERT INTO `wp_gf_form_view` VALUES("43506", "3", "2016-11-24 07:24:04", "24.108.186.103", "77");
INSERT INTO `wp_gf_form_view` VALUES("43507", "10", "2016-11-24 08:13:43", "157.55.39.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("43508", "3", "2016-11-24 08:13:43", "157.55.39.176", "71");
INSERT INTO `wp_gf_form_view` VALUES("43509", "13", "2016-11-24 08:50:49", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("43510", "3", "2016-11-24 09:32:01", "157.55.39.42", "51");
INSERT INTO `wp_gf_form_view` VALUES("43511", "10", "2016-11-24 09:32:03", "157.55.39.42", "22");
INSERT INTO `wp_gf_form_view` VALUES("43512", "13", "2016-11-24 09:45:47", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43513", "10", "2016-11-24 10:04:43", "192.243.55.132", "40");
INSERT INTO `wp_gf_form_view` VALUES("43514", "3", "2016-11-24 10:04:43", "192.243.55.132", "94");
INSERT INTO `wp_gf_form_view` VALUES("43515", "14", "2016-11-24 10:08:52", "5.196.140.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("43516", "5", "2016-11-24 10:11:09", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("43517", "13", "2016-11-24 10:25:44", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("43518", "3", "2016-11-24 11:22:03", "40.77.167.50", "22");
INSERT INTO `wp_gf_form_view` VALUES("43519", "10", "2016-11-24 11:22:04", "40.77.167.50", "9");
INSERT INTO `wp_gf_form_view` VALUES("43520", "6", "2016-11-24 11:29:30", "157.55.39.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("43521", "10", "2016-11-24 12:00:27", "157.55.39.42", "12");
INSERT INTO `wp_gf_form_view` VALUES("43522", "3", "2016-11-24 12:00:28", "157.55.39.42", "29");
INSERT INTO `wp_gf_form_view` VALUES("43523", "10", "2016-11-24 13:31:19", "150.161.21.204", "27");
INSERT INTO `wp_gf_form_view` VALUES("43524", "3", "2016-11-24 13:31:20", "150.161.21.204", "63");
INSERT INTO `wp_gf_form_view` VALUES("43525", "13", "2016-11-24 13:57:17", "134.249.51.255", "3");
INSERT INTO `wp_gf_form_view` VALUES("43526", "10", "2016-11-24 14:20:35", "157.55.39.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("43527", "3", "2016-11-24 14:20:35", "157.55.39.42", "7");
INSERT INTO `wp_gf_form_view` VALUES("43528", "3", "2016-11-24 15:04:49", "192.243.55.134", "72");
INSERT INTO `wp_gf_form_view` VALUES("43529", "10", "2016-11-24 15:04:53", "192.243.55.134", "27");
INSERT INTO `wp_gf_form_view` VALUES("43530", "13", "2016-11-24 15:52:03", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43531", "10", "2016-11-24 16:11:16", "163.172.66.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("43532", "3", "2016-11-24 16:11:16", "163.172.66.105", "35");
INSERT INTO `wp_gf_form_view` VALUES("43533", "10", "2016-11-24 17:01:55", "24.108.180.144", "78");
INSERT INTO `wp_gf_form_view` VALUES("43534", "3", "2016-11-24 17:01:55", "24.108.180.144", "189");
INSERT INTO `wp_gf_form_view` VALUES("43535", "14", "2016-11-24 17:19:43", "75.157.169.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("43536", "11", "2016-11-24 17:41:17", "5.255.250.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("43537", "3", "2016-11-24 18:01:41", "192.243.55.129", "132");
INSERT INTO `wp_gf_form_view` VALUES("43538", "10", "2016-11-24 18:01:41", "192.243.55.129", "55");
INSERT INTO `wp_gf_form_view` VALUES("43539", "14", "2016-11-24 18:14:46", "96.50.29.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("43540", "13", "2016-11-24 18:58:51", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43541", "13", "2016-11-24 18:58:51", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43542", "13", "2016-11-24 18:58:51", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43543", "10", "2016-11-24 19:06:51", "24.68.17.83", "19");
INSERT INTO `wp_gf_form_view` VALUES("43544", "3", "2016-11-24 19:06:51", "24.68.17.83", "43");
INSERT INTO `wp_gf_form_view` VALUES("43545", "10", "2016-11-24 20:03:09", "40.77.167.50", "43");
INSERT INTO `wp_gf_form_view` VALUES("43546", "3", "2016-11-24 20:03:09", "40.77.167.50", "99");
INSERT INTO `wp_gf_form_view` VALUES("43547", "9", "2016-11-24 20:05:57", "157.55.39.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("43548", "5", "2016-11-24 21:05:53", "77.75.78.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("43549", "10", "2016-11-24 21:05:53", "77.75.78.169", "33");
INSERT INTO `wp_gf_form_view` VALUES("43550", "3", "2016-11-24 21:05:54", "77.75.78.169", "84");
INSERT INTO `wp_gf_form_view` VALUES("43551", "14", "2016-11-24 22:04:18", "216.212.232.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("43552", "10", "2016-11-24 22:04:19", "216.212.232.54", "51");
INSERT INTO `wp_gf_form_view` VALUES("43553", "3", "2016-11-24 22:04:19", "216.212.232.54", "120");
INSERT INTO `wp_gf_form_view` VALUES("43554", "11", "2016-11-24 22:19:05", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("43555", "2", "2016-11-24 22:19:09", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("43556", "10", "2016-11-24 23:04:41", "91.200.12.33", "31");
INSERT INTO `wp_gf_form_view` VALUES("43557", "3", "2016-11-24 23:04:42", "91.200.12.33", "70");
INSERT INTO `wp_gf_form_view` VALUES("43558", "14", "2016-11-24 23:36:15", "103.233.157.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("43559", "9", "2016-11-25 00:06:29", "157.55.39.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("43560", "10", "2016-11-25 00:06:30", "157.55.39.176", "6");
INSERT INTO `wp_gf_form_view` VALUES("43561", "3", "2016-11-25 00:06:30", "157.55.39.176", "15");
INSERT INTO `wp_gf_form_view` VALUES("43562", "13", "2016-11-25 01:03:34", "178.137.161.77", "7");
INSERT INTO `wp_gf_form_view` VALUES("43563", "10", "2016-11-25 01:03:35", "178.137.161.77", "34");
INSERT INTO `wp_gf_form_view` VALUES("43564", "3", "2016-11-25 01:03:36", "178.137.161.77", "78");
INSERT INTO `wp_gf_form_view` VALUES("43565", "10", "2016-11-25 02:02:41", "66.249.79.156", "55");
INSERT INTO `wp_gf_form_view` VALUES("43566", "3", "2016-11-25 02:02:42", "66.249.79.156", "126");
INSERT INTO `wp_gf_form_view` VALUES("43567", "13", "2016-11-25 02:20:05", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43568", "13", "2016-11-25 02:20:05", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43569", "14", "2016-11-25 02:48:32", "209.52.88.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("43570", "10", "2016-11-25 03:14:16", "24.68.28.15", "12");
INSERT INTO `wp_gf_form_view` VALUES("43571", "3", "2016-11-25 03:14:16", "24.68.28.15", "28");
INSERT INTO `wp_gf_form_view` VALUES("43572", "10", "2016-11-25 04:10:09", "202.46.51.207", "36");
INSERT INTO `wp_gf_form_view` VALUES("43573", "3", "2016-11-25 04:10:09", "202.46.51.207", "84");
INSERT INTO `wp_gf_form_view` VALUES("43574", "14", "2016-11-25 04:23:39", "206.87.173.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("43575", "10", "2016-11-25 05:28:50", "24.114.26.230", "12");
INSERT INTO `wp_gf_form_view` VALUES("43576", "3", "2016-11-25 05:28:52", "24.114.26.230", "28");
INSERT INTO `wp_gf_form_view` VALUES("43577", "10", "2016-11-25 06:00:37", "163.172.64.225", "3");
INSERT INTO `wp_gf_form_view` VALUES("43578", "3", "2016-11-25 06:00:37", "163.172.64.225", "7");
INSERT INTO `wp_gf_form_view` VALUES("43579", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43580", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43581", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43582", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43583", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43584", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43585", "10", "2016-11-25 07:13:39", "178.137.161.77", "79");
INSERT INTO `wp_gf_form_view` VALUES("43586", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43587", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43588", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43589", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43590", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43591", "3", "2016-11-25 07:13:40", "178.137.161.77", "195");
INSERT INTO `wp_gf_form_view` VALUES("43592", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43593", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43594", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43595", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43596", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43597", "11", "2016-11-25 07:22:40", "104.214.111.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("43598", "2", "2016-11-25 07:22:42", "104.214.111.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("43599", "13", "2016-11-25 08:08:47", "134.249.51.255", "5");
INSERT INTO `wp_gf_form_view` VALUES("43600", "13", "2016-11-25 08:08:47", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("43601", "10", "2016-11-25 08:08:47", "134.249.51.255", "27");
INSERT INTO `wp_gf_form_view` VALUES("43602", "3", "2016-11-25 08:08:47", "134.249.51.255", "63");
INSERT INTO `wp_gf_form_view` VALUES("43603", "14", "2016-11-25 08:26:26", "91.233.60.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("43604", "10", "2016-11-25 09:47:09", "68.180.229.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("43605", "3", "2016-11-25 09:47:10", "68.180.229.172", "7");
INSERT INTO `wp_gf_form_view` VALUES("43606", "10", "2016-11-25 11:27:51", "157.55.39.213", "303");
INSERT INTO `wp_gf_form_view` VALUES("43607", "3", "2016-11-25 11:27:55", "157.55.39.213", "797");
INSERT INTO `wp_gf_form_view` VALUES("43608", "8", "2016-11-25 11:49:04", "5.255.250.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("43609", "14", "2016-11-25 11:52:41", "107.170.113.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43610", "11", "2016-11-25 11:53:02", "107.170.113.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43611", "10", "2016-11-25 12:00:03", "107.170.113.231", "1178");
INSERT INTO `wp_gf_form_view` VALUES("43612", "3", "2016-11-25 12:00:04", "107.170.113.231", "2894");
INSERT INTO `wp_gf_form_view` VALUES("43613", "6", "2016-11-25 12:09:47", "107.170.113.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43614", "9", "2016-11-25 12:18:37", "107.170.113.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43615", "2", "2016-11-25 12:57:04", "107.170.113.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43616", "10", "2016-11-25 13:00:02", "107.170.113.231", "234");
INSERT INTO `wp_gf_form_view` VALUES("43617", "3", "2016-11-25 13:00:02", "107.170.113.231", "575");
INSERT INTO `wp_gf_form_view` VALUES("43618", "13", "2016-11-25 13:06:27", "107.170.113.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43619", "8", "2016-11-25 13:10:15", "107.170.113.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43620", "10", "2016-11-25 14:06:44", "192.243.55.133", "23");
INSERT INTO `wp_gf_form_view` VALUES("43621", "3", "2016-11-25 14:06:45", "192.243.55.133", "59");
INSERT INTO `wp_gf_form_view` VALUES("43622", "10", "2016-11-25 15:20:51", "157.55.39.213", "13");
INSERT INTO `wp_gf_form_view` VALUES("43623", "3", "2016-11-25 15:20:51", "157.55.39.213", "37");
INSERT INTO `wp_gf_form_view` VALUES("43624", "3", "2016-11-25 16:07:31", "194.187.170.124", "22");
INSERT INTO `wp_gf_form_view` VALUES("43625", "10", "2016-11-25 16:07:32", "194.187.170.124", "6");
INSERT INTO `wp_gf_form_view` VALUES("43626", "10", "2016-11-25 17:05:06", "66.249.79.152", "18");
INSERT INTO `wp_gf_form_view` VALUES("43627", "3", "2016-11-25 17:05:13", "66.249.79.152", "42");
INSERT INTO `wp_gf_form_view` VALUES("43628", "12", "2016-11-25 17:10:23", "68.180.229.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("43629", "13", "2016-11-25 17:42:40", "178.137.161.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("43630", "13", "2016-11-25 17:42:40", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43631", "13", "2016-11-25 17:42:40", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43632", "10", "2016-11-25 18:24:56", "192.243.55.138", "9");
INSERT INTO `wp_gf_form_view` VALUES("43633", "3", "2016-11-25 18:25:10", "192.243.55.138", "20");
INSERT INTO `wp_gf_form_view` VALUES("43634", "3", "2016-11-25 18:25:10", "192.243.55.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("43635", "10", "2016-11-25 19:18:30", "24.108.7.246", "8");
INSERT INTO `wp_gf_form_view` VALUES("43636", "10", "2016-11-25 19:18:30", "24.108.7.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("43637", "3", "2016-11-25 19:18:33", "24.108.7.246", "20");
INSERT INTO `wp_gf_form_view` VALUES("43638", "3", "2016-11-25 19:18:33", "24.108.7.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("43639", "13", "2016-11-25 20:22:31", "37.115.113.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("43640", "13", "2016-11-25 20:22:31", "37.115.113.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("43641", "10", "2016-11-25 20:22:34", "37.115.113.73", "40");
INSERT INTO `wp_gf_form_view` VALUES("43642", "10", "2016-11-25 20:22:34", "37.115.113.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("43643", "10", "2016-11-25 20:22:34", "37.115.113.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("43644", "3", "2016-11-25 20:22:35", "37.115.113.73", "82");
INSERT INTO `wp_gf_form_view` VALUES("43645", "3", "2016-11-25 20:22:35", "37.115.113.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("43646", "3", "2016-11-25 20:22:35", "37.115.113.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("43647", "10", "2016-11-25 21:19:04", "66.249.79.156", "33");
INSERT INTO `wp_gf_form_view` VALUES("43648", "3", "2016-11-25 21:19:05", "66.249.79.156", "78");
INSERT INTO `wp_gf_form_view` VALUES("43649", "3", "2016-11-25 22:00:00", "173.180.220.36", "63");
INSERT INTO `wp_gf_form_view` VALUES("43650", "10", "2016-11-25 22:15:27", "24.65.50.101", "25");
INSERT INTO `wp_gf_form_view` VALUES("43651", "14", "2016-11-25 22:18:50", "163.172.65.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("43652", "10", "2016-11-25 23:16:38", "220.181.108.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("43653", "3", "2016-11-25 23:16:39", "220.181.108.105", "7");
INSERT INTO `wp_gf_form_view` VALUES("43654", "3", "2016-11-26 00:04:43", "194.187.170.107", "46");
INSERT INTO `wp_gf_form_view` VALUES("43655", "10", "2016-11-26 00:04:44", "194.187.170.107", "19");
INSERT INTO `wp_gf_form_view` VALUES("43656", "14", "2016-11-26 00:29:05", "194.187.170.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("43657", "13", "2016-11-26 01:01:21", "46.118.154.190", "6");
INSERT INTO `wp_gf_form_view` VALUES("43658", "10", "2016-11-26 01:01:21", "46.118.154.190", "384");
INSERT INTO `wp_gf_form_view` VALUES("43659", "3", "2016-11-26 01:01:21", "46.118.154.190", "884");
INSERT INTO `wp_gf_form_view` VALUES("43660", "12", "2016-11-26 01:53:43", "157.55.39.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("43661", "14", "2016-11-26 01:54:43", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("43662", "11", "2016-11-26 01:54:44", "157.55.39.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("43663", "9", "2016-11-26 01:55:20", "157.55.39.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("43664", "2", "2016-11-26 01:59:25", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("43665", "3", "2016-11-26 02:00:03", "216.220.37.161", "103");
INSERT INTO `wp_gf_form_view` VALUES("43666", "10", "2016-11-26 02:00:03", "216.220.37.161", "42");
INSERT INTO `wp_gf_form_view` VALUES("43667", "13", "2016-11-26 02:00:54", "68.180.229.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("43668", "10", "2016-11-26 03:21:12", "66.249.79.148", "42");
INSERT INTO `wp_gf_form_view` VALUES("43669", "3", "2016-11-26 03:21:13", "66.249.79.148", "97");
INSERT INTO `wp_gf_form_view` VALUES("43670", "13", "2016-11-26 03:30:55", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("43671", "10", "2016-11-26 04:01:17", "192.243.55.133", "75");
INSERT INTO `wp_gf_form_view` VALUES("43672", "3", "2016-11-26 04:01:17", "192.243.55.133", "176");
INSERT INTO `wp_gf_form_view` VALUES("43673", "2", "2016-11-26 04:41:16", "104.236.52.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("43674", "11", "2016-11-26 04:41:16", "104.236.52.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("43675", "5", "2016-11-26 05:52:19", "77.75.79.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("43676", "10", "2016-11-26 05:52:20", "77.75.79.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("43677", "3", "2016-11-26 05:52:20", "77.75.79.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("43678", "13", "2016-11-26 06:01:38", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43679", "10", "2016-11-26 06:01:38", "37.115.113.73", "13");
INSERT INTO `wp_gf_form_view` VALUES("43680", "3", "2016-11-26 06:01:38", "37.115.113.73", "28");
INSERT INTO `wp_gf_form_view` VALUES("43681", "10", "2016-11-26 07:01:34", "68.180.229.172", "6");
INSERT INTO `wp_gf_form_view` VALUES("43682", "3", "2016-11-26 07:01:38", "68.180.229.172", "14");
INSERT INTO `wp_gf_form_view` VALUES("43683", "10", "2016-11-26 08:20:21", "157.55.39.198", "3");
INSERT INTO `wp_gf_form_view` VALUES("43684", "3", "2016-11-26 08:20:21", "157.55.39.198", "7");
INSERT INTO `wp_gf_form_view` VALUES("43685", "3", "2016-11-26 09:17:59", "192.243.55.133", "46");
INSERT INTO `wp_gf_form_view` VALUES("43686", "10", "2016-11-26 09:18:05", "192.243.55.133", "18");
INSERT INTO `wp_gf_form_view` VALUES("43687", "8", "2016-11-26 09:36:13", "157.55.39.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("43688", "3", "2016-11-26 10:30:48", "202.46.51.20", "8");
INSERT INTO `wp_gf_form_view` VALUES("43689", "10", "2016-11-26 10:30:50", "202.46.51.20", "3");
INSERT INTO `wp_gf_form_view` VALUES("43690", "3", "2016-11-26 11:01:30", "192.243.55.133", "32");
INSERT INTO `wp_gf_form_view` VALUES("43691", "10", "2016-11-26 11:01:31", "192.243.55.133", "12");
INSERT INTO `wp_gf_form_view` VALUES("43692", "10", "2016-11-26 12:01:40", "66.249.79.148", "21");
INSERT INTO `wp_gf_form_view` VALUES("43693", "3", "2016-11-26 12:01:43", "66.249.79.148", "48");
INSERT INTO `wp_gf_form_view` VALUES("43694", "13", "2016-11-26 12:25:04", "178.137.163.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("43695", "13", "2016-11-26 13:07:50", "134.249.51.255", "3");
INSERT INTO `wp_gf_form_view` VALUES("43696", "10", "2016-11-26 13:07:50", "134.249.51.255", "27");
INSERT INTO `wp_gf_form_view` VALUES("43697", "3", "2016-11-26 13:07:50", "134.249.51.255", "64");
INSERT INTO `wp_gf_form_view` VALUES("43698", "3", "2016-11-26 14:15:46", "202.46.58.19", "29");
INSERT INTO `wp_gf_form_view` VALUES("43699", "10", "2016-11-26 14:15:47", "202.46.58.19", "12");
INSERT INTO `wp_gf_form_view` VALUES("43700", "10", "2016-11-26 15:20:05", "184.66.37.93", "114");
INSERT INTO `wp_gf_form_view` VALUES("43701", "3", "2016-11-26 15:20:06", "184.66.37.93", "267");
INSERT INTO `wp_gf_form_view` VALUES("43702", "13", "2016-11-26 15:45:32", "178.137.161.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("43703", "11", "2016-11-26 15:53:38", "79.116.26.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("43704", "2", "2016-11-26 15:54:35", "79.116.26.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("43705", "13", "2016-11-26 16:30:19", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("43706", "10", "2016-11-26 16:30:23", "46.118.154.190", "7");
INSERT INTO `wp_gf_form_view` VALUES("43707", "10", "2016-11-26 16:30:23", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43708", "10", "2016-11-26 16:30:23", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43709", "3", "2016-11-26 16:30:24", "46.118.154.190", "19");
INSERT INTO `wp_gf_form_view` VALUES("43710", "3", "2016-11-26 16:30:24", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43711", "3", "2016-11-26 16:30:24", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43712", "10", "2016-11-26 17:11:23", "66.249.79.156", "15");
INSERT INTO `wp_gf_form_view` VALUES("43713", "3", "2016-11-26 17:11:24", "66.249.79.156", "35");
INSERT INTO `wp_gf_form_view` VALUES("43714", "10", "2016-11-26 18:02:52", "24.108.197.11", "39");
INSERT INTO `wp_gf_form_view` VALUES("43715", "3", "2016-11-26 18:02:53", "24.108.197.11", "91");
INSERT INTO `wp_gf_form_view` VALUES("43716", "13", "2016-11-26 19:13:02", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43717", "13", "2016-11-26 19:13:02", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43718", "10", "2016-11-26 19:13:04", "178.137.163.110", "20");
INSERT INTO `wp_gf_form_view` VALUES("43719", "10", "2016-11-26 19:13:04", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43720", "3", "2016-11-26 19:13:04", "178.137.163.110", "44");
INSERT INTO `wp_gf_form_view` VALUES("43721", "3", "2016-11-26 19:13:04", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43722", "10", "2016-11-26 20:52:43", "163.172.65.35", "3");
INSERT INTO `wp_gf_form_view` VALUES("43723", "3", "2016-11-26 20:52:44", "163.172.65.35", "7");
INSERT INTO `wp_gf_form_view` VALUES("43724", "10", "2016-11-26 21:27:55", "75.157.134.169", "48");
INSERT INTO `wp_gf_form_view` VALUES("43725", "3", "2016-11-26 21:27:56", "75.157.134.169", "120");
INSERT INTO `wp_gf_form_view` VALUES("43726", "12", "2016-11-26 21:44:45", "194.187.170.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("43727", "13", "2016-11-26 21:56:22", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("43728", "13", "2016-11-26 22:02:37", "178.137.161.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("43729", "10", "2016-11-26 22:02:37", "178.137.161.77", "18");
INSERT INTO `wp_gf_form_view` VALUES("43730", "3", "2016-11-26 22:02:37", "178.137.161.77", "42");
INSERT INTO `wp_gf_form_view` VALUES("43731", "13", "2016-11-26 23:26:58", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("43732", "10", "2016-11-26 23:26:59", "46.118.154.190", "17");
INSERT INTO `wp_gf_form_view` VALUES("43733", "10", "2016-11-26 23:26:59", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43734", "3", "2016-11-26 23:27:00", "46.118.154.190", "41");
INSERT INTO `wp_gf_form_view` VALUES("43735", "3", "2016-11-26 23:27:00", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43736", "14", "2016-11-27 00:33:39", "120.52.73.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("43737", "10", "2016-11-27 00:33:39", "120.52.73.97", "12");
INSERT INTO `wp_gf_form_view` VALUES("43738", "3", "2016-11-27 00:33:39", "120.52.73.97", "29");
INSERT INTO `wp_gf_form_view` VALUES("43739", "10", "2016-11-27 01:12:16", "163.172.65.22", "22");
INSERT INTO `wp_gf_form_view` VALUES("43740", "3", "2016-11-27 01:12:16", "163.172.65.22", "88");
INSERT INTO `wp_gf_form_view` VALUES("43741", "13", "2016-11-27 01:24:20", "134.249.51.255", "8");
INSERT INTO `wp_gf_form_view` VALUES("43742", "13", "2016-11-27 01:24:20", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("43743", "13", "2016-11-27 02:14:07", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43744", "10", "2016-11-27 02:14:07", "37.115.113.73", "11");
INSERT INTO `wp_gf_form_view` VALUES("43745", "3", "2016-11-27 02:14:07", "37.115.113.73", "41");
INSERT INTO `wp_gf_form_view` VALUES("43746", "10", "2016-11-27 03:03:14", "24.69.77.172", "22");
INSERT INTO `wp_gf_form_view` VALUES("43747", "3", "2016-11-27 03:03:15", "24.69.77.172", "89");
INSERT INTO `wp_gf_form_view` VALUES("43748", "3", "2016-11-27 04:11:02", "202.46.52.174", "65");
INSERT INTO `wp_gf_form_view` VALUES("43749", "10", "2016-11-27 04:11:02", "202.46.52.174", "16");
INSERT INTO `wp_gf_form_view` VALUES("43750", "10", "2016-11-27 05:08:10", "66.249.79.156", "82");
INSERT INTO `wp_gf_form_view` VALUES("43751", "3", "2016-11-27 05:08:10", "66.249.79.156", "331");
INSERT INTO `wp_gf_form_view` VALUES("43752", "11", "2016-11-27 05:12:17", "73.219.102.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("43753", "2", "2016-11-27 05:13:44", "73.219.102.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("43754", "10", "2016-11-27 06:07:07", "64.114.25.211", "16");
INSERT INTO `wp_gf_form_view` VALUES("43755", "3", "2016-11-27 06:07:07", "64.114.25.211", "66");
INSERT INTO `wp_gf_form_view` VALUES("43756", "10", "2016-11-27 07:11:41", "194.187.170.137", "6");
INSERT INTO `wp_gf_form_view` VALUES("43757", "3", "2016-11-27 07:11:46", "194.187.170.137", "24");
INSERT INTO `wp_gf_form_view` VALUES("43758", "10", "2016-11-27 08:30:00", "68.180.229.172", "13");
INSERT INTO `wp_gf_form_view` VALUES("43759", "3", "2016-11-27 08:30:01", "68.180.229.172", "49");
INSERT INTO `wp_gf_form_view` VALUES("43760", "6", "2016-11-27 08:38:45", "202.46.52.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("43761", "13", "2016-11-27 08:46:00", "178.137.161.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("43762", "11", "2016-11-27 10:35:20", "77.75.77.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("43763", "10", "2016-11-27 10:35:22", "77.75.77.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("43764", "3", "2016-11-27 10:35:23", "77.75.77.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("43765", "11", "2016-11-27 11:27:57", "77.75.79.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("43766", "10", "2016-11-27 11:27:57", "77.75.79.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("43767", "3", "2016-11-27 11:27:58", "77.75.79.32", "17");
INSERT INTO `wp_gf_form_view` VALUES("43768", "10", "2016-11-27 14:20:50", "109.103.51.151", "65");
INSERT INTO `wp_gf_form_view` VALUES("43769", "3", "2016-11-27 14:20:51", "109.103.51.151", "257");
INSERT INTO `wp_gf_form_view` VALUES("43770", "11", "2016-11-27 14:20:55", "109.103.51.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("43771", "2", "2016-11-27 14:21:52", "109.103.51.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("43772", "10", "2016-11-27 15:06:16", "40.77.167.3", "14");
INSERT INTO `wp_gf_form_view` VALUES("43773", "3", "2016-11-27 15:06:16", "40.77.167.3", "56");
INSERT INTO `wp_gf_form_view` VALUES("43774", "10", "2016-11-27 16:21:46", "202.46.56.210", "8");
INSERT INTO `wp_gf_form_view` VALUES("43775", "3", "2016-11-27 16:21:46", "202.46.56.210", "33");
INSERT INTO `wp_gf_form_view` VALUES("43776", "14", "2016-11-27 16:57:31", "116.90.211.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("43777", "13", "2016-11-27 17:15:31", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43778", "10", "2016-11-27 17:15:31", "37.115.113.73", "12");
INSERT INTO `wp_gf_form_view` VALUES("43779", "3", "2016-11-27 17:15:31", "37.115.113.73", "48");
INSERT INTO `wp_gf_form_view` VALUES("43780", "10", "2016-11-27 18:29:15", "24.68.4.127", "10");
INSERT INTO `wp_gf_form_view` VALUES("43781", "3", "2016-11-27 18:29:17", "24.68.4.127", "41");
INSERT INTO `wp_gf_form_view` VALUES("43782", "13", "2016-11-27 18:42:07", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("43783", "2", "2016-11-27 19:25:03", "163.172.65.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("43784", "10", "2016-11-27 19:25:04", "163.172.65.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("43785", "3", "2016-11-27 19:25:05", "163.172.65.14", "17");
INSERT INTO `wp_gf_form_view` VALUES("43786", "10", "2016-11-27 20:16:23", "66.249.79.152", "18");
INSERT INTO `wp_gf_form_view` VALUES("43787", "3", "2016-11-27 20:16:24", "66.249.79.152", "73");
INSERT INTO `wp_gf_form_view` VALUES("43788", "13", "2016-11-27 21:23:33", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43789", "10", "2016-11-27 21:23:35", "178.137.163.110", "4");
INSERT INTO `wp_gf_form_view` VALUES("43790", "3", "2016-11-27 21:23:35", "178.137.163.110", "16");
INSERT INTO `wp_gf_form_view` VALUES("43791", "3", "2016-11-27 22:07:05", "68.180.229.172", "33");
INSERT INTO `wp_gf_form_view` VALUES("43792", "10", "2016-11-27 22:13:30", "68.180.229.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("43793", "13", "2016-11-27 23:14:47", "109.235.53.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("43794", "10", "2016-11-27 23:14:48", "109.235.53.100", "8");
INSERT INTO `wp_gf_form_view` VALUES("43795", "3", "2016-11-27 23:14:49", "109.235.53.100", "32");
INSERT INTO `wp_gf_form_view` VALUES("43796", "10", "2016-11-28 00:02:42", "66.249.79.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("43797", "3", "2016-11-28 00:02:42", "66.249.79.156", "16");
INSERT INTO `wp_gf_form_view` VALUES("43798", "13", "2016-11-28 01:05:55", "178.137.163.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("43799", "10", "2016-11-28 01:05:58", "178.137.163.110", "9");
INSERT INTO `wp_gf_form_view` VALUES("43800", "10", "2016-11-28 01:05:58", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43801", "3", "2016-11-28 01:05:59", "178.137.163.110", "42");
INSERT INTO `wp_gf_form_view` VALUES("43802", "3", "2016-11-28 01:05:59", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43803", "3", "2016-11-28 02:10:43", "194.187.170.122", "42");
INSERT INTO `wp_gf_form_view` VALUES("43804", "10", "2016-11-28 02:10:43", "194.187.170.122", "11");
INSERT INTO `wp_gf_form_view` VALUES("43805", "10", "2016-11-28 03:34:24", "66.249.79.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("43806", "3", "2016-11-28 03:34:25", "66.249.79.148", "49");
INSERT INTO `wp_gf_form_view` VALUES("43807", "10", "2016-11-28 04:06:34", "194.187.170.122", "16");
INSERT INTO `wp_gf_form_view` VALUES("43808", "3", "2016-11-28 04:06:34", "194.187.170.122", "67");
INSERT INTO `wp_gf_form_view` VALUES("43809", "10", "2016-11-28 05:08:14", "64.114.25.211", "6");
INSERT INTO `wp_gf_form_view` VALUES("43810", "3", "2016-11-28 05:08:14", "64.114.25.211", "24");
INSERT INTO `wp_gf_form_view` VALUES("43811", "5", "2016-11-28 06:03:15", "157.55.39.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("43812", "10", "2016-11-28 06:03:16", "157.55.39.159", "32");
INSERT INTO `wp_gf_form_view` VALUES("43813", "3", "2016-11-28 06:03:16", "157.55.39.159", "120");
INSERT INTO `wp_gf_form_view` VALUES("43814", "13", "2016-11-28 06:25:43", "178.137.161.77", "9");
INSERT INTO `wp_gf_form_view` VALUES("43815", "9", "2016-11-28 06:41:52", "157.55.39.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("43816", "6", "2016-11-28 07:13:10", "202.46.54.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("43817", "10", "2016-11-28 07:13:13", "202.46.54.147", "20");
INSERT INTO `wp_gf_form_view` VALUES("43818", "3", "2016-11-28 07:13:14", "202.46.54.147", "83");
INSERT INTO `wp_gf_form_view` VALUES("43819", "3", "2016-11-28 08:03:39", "207.46.13.46", "57");
INSERT INTO `wp_gf_form_view` VALUES("43820", "10", "2016-11-28 08:03:39", "207.46.13.46", "14");
INSERT INTO `wp_gf_form_view` VALUES("43821", "10", "2016-11-28 09:03:01", "66.102.6.116", "27");
INSERT INTO `wp_gf_form_view` VALUES("43822", "3", "2016-11-28 09:03:02", "66.102.6.116", "104");
INSERT INTO `wp_gf_form_view` VALUES("43823", "11", "2016-11-28 09:13:19", "66.102.6.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("43824", "10", "2016-11-28 10:02:00", "220.181.51.94", "4");
INSERT INTO `wp_gf_form_view` VALUES("43825", "3", "2016-11-28 10:02:00", "220.181.51.94", "17");
INSERT INTO `wp_gf_form_view` VALUES("43826", "10", "2016-11-28 11:25:03", "207.46.13.46", "12");
INSERT INTO `wp_gf_form_view` VALUES("43827", "3", "2016-11-28 11:25:06", "207.46.13.46", "50");
INSERT INTO `wp_gf_form_view` VALUES("43828", "9", "2016-11-28 11:50:06", "207.46.13.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("43829", "10", "2016-11-28 12:20:56", "77.75.78.168", "23");
INSERT INTO `wp_gf_form_view` VALUES("43830", "3", "2016-11-28 12:20:56", "77.75.78.168", "88");
INSERT INTO `wp_gf_form_view` VALUES("43831", "13", "2016-11-28 12:50:00", "178.137.161.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("43832", "13", "2016-11-28 12:50:00", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43833", "10", "2016-11-28 13:05:57", "40.77.167.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("43834", "3", "2016-11-28 13:05:58", "40.77.167.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("43835", "10", "2016-11-28 14:19:26", "77.75.76.172", "13");
INSERT INTO `wp_gf_form_view` VALUES("43836", "3", "2016-11-28 14:19:27", "77.75.76.172", "48");
INSERT INTO `wp_gf_form_view` VALUES("43837", "13", "2016-11-28 14:22:18", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43838", "10", "2016-11-28 15:21:25", "77.75.79.36", "6");
INSERT INTO `wp_gf_form_view` VALUES("43839", "3", "2016-11-28 15:21:26", "77.75.79.36", "19");
INSERT INTO `wp_gf_form_view` VALUES("43840", "10", "2016-11-28 16:08:05", "66.249.79.156", "20");
INSERT INTO `wp_gf_form_view` VALUES("43841", "3", "2016-11-28 16:08:16", "66.249.79.156", "81");
INSERT INTO `wp_gf_form_view` VALUES("43842", "13", "2016-11-28 16:43:21", "46.118.154.190", "6");
INSERT INTO `wp_gf_form_view` VALUES("43843", "3", "2016-11-28 17:25:14", "207.46.13.46", "58");
INSERT INTO `wp_gf_form_view` VALUES("43844", "10", "2016-11-28 17:25:16", "207.46.13.46", "15");
INSERT INTO `wp_gf_form_view` VALUES("43845", "10", "2016-11-28 18:00:00", "184.151.118.127", "20");
INSERT INTO `wp_gf_form_view` VALUES("43846", "3", "2016-11-28 18:00:00", "184.151.118.127", "80");
INSERT INTO `wp_gf_form_view` VALUES("43847", "14", "2016-11-28 18:55:56", "66.249.84.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("43848", "10", "2016-11-28 19:04:24", "202.46.58.120", "56");
INSERT INTO `wp_gf_form_view` VALUES("43849", "3", "2016-11-28 19:04:24", "202.46.58.120", "227");
INSERT INTO `wp_gf_form_view` VALUES("43850", "13", "2016-11-28 19:05:11", "134.249.51.255", "5");
INSERT INTO `wp_gf_form_view` VALUES("43851", "13", "2016-11-28 19:05:11", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("43852", "10", "2016-11-28 20:02:34", "207.46.13.83", "21");
INSERT INTO `wp_gf_form_view` VALUES("43853", "3", "2016-11-28 20:02:35", "207.46.13.83", "81");
INSERT INTO `wp_gf_form_view` VALUES("43854", "13", "2016-11-28 20:45:40", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("43855", "10", "2016-11-28 21:01:30", "154.20.90.2", "21");
INSERT INTO `wp_gf_form_view` VALUES("43856", "3", "2016-11-28 21:01:30", "154.20.90.2", "74");
INSERT INTO `wp_gf_form_view` VALUES("43857", "13", "2016-11-28 21:18:22", "202.46.51.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("43858", "14", "2016-11-28 21:28:09", "104.168.75.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("43859", "11", "2016-11-28 22:19:24", "220.181.108.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("43860", "10", "2016-11-28 22:19:25", "220.181.108.144", "28");
INSERT INTO `wp_gf_form_view` VALUES("43861", "3", "2016-11-28 22:19:25", "220.181.108.144", "115");
INSERT INTO `wp_gf_form_view` VALUES("43862", "13", "2016-11-28 22:20:16", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("43863", "14", "2016-11-28 22:51:58", "192.198.127.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("43864", "10", "2016-11-28 23:02:02", "70.66.167.30", "34");
INSERT INTO `wp_gf_form_view` VALUES("43865", "3", "2016-11-28 23:02:02", "70.66.167.30", "129");
INSERT INTO `wp_gf_form_view` VALUES("43866", "10", "2016-11-29 00:08:14", "24.244.32.209", "20");
INSERT INTO `wp_gf_form_view` VALUES("43867", "3", "2016-11-29 00:08:15", "24.244.32.209", "81");
INSERT INTO `wp_gf_form_view` VALUES("43868", "13", "2016-11-29 00:27:17", "178.137.161.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("43869", "10", "2016-11-29 01:01:20", "77.75.76.163", "6");
INSERT INTO `wp_gf_form_view` VALUES("43870", "3", "2016-11-29 01:01:20", "77.75.76.163", "24");
INSERT INTO `wp_gf_form_view` VALUES("43871", "10", "2016-11-29 02:13:40", "99.224.200.26", "22");
INSERT INTO `wp_gf_form_view` VALUES("43872", "3", "2016-11-29 02:13:40", "99.224.200.26", "90");
INSERT INTO `wp_gf_form_view` VALUES("43873", "10", "2016-11-29 03:04:11", "217.69.133.230", "25");
INSERT INTO `wp_gf_form_view` VALUES("43874", "3", "2016-11-29 03:04:11", "217.69.133.230", "102");
INSERT INTO `wp_gf_form_view` VALUES("43875", "14", "2016-11-29 03:20:43", "66.249.84.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("43876", "10", "2016-11-29 04:13:02", "220.181.108.153", "14");
INSERT INTO `wp_gf_form_view` VALUES("43877", "3", "2016-11-29 04:13:03", "220.181.108.153", "59");
INSERT INTO `wp_gf_form_view` VALUES("43878", "13", "2016-11-29 04:25:31", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("43879", "6", "2016-11-29 05:14:42", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("43880", "10", "2016-11-29 05:14:43", "207.46.13.17", "21");
INSERT INTO `wp_gf_form_view` VALUES("43881", "3", "2016-11-29 05:14:43", "207.46.13.17", "88");
INSERT INTO `wp_gf_form_view` VALUES("43882", "13", "2016-11-29 05:54:10", "37.115.113.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("43883", "10", "2016-11-29 06:02:01", "207.46.13.77", "12");
INSERT INTO `wp_gf_form_view` VALUES("43884", "3", "2016-11-29 06:02:01", "207.46.13.77", "51");
INSERT INTO `wp_gf_form_view` VALUES("43885", "14", "2016-11-29 06:28:02", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43886", "10", "2016-11-29 07:03:52", "68.180.229.172", "14");
INSERT INTO `wp_gf_form_view` VALUES("43887", "3", "2016-11-29 07:03:57", "68.180.229.172", "49");
INSERT INTO `wp_gf_form_view` VALUES("43888", "10", "2016-11-29 08:17:29", "207.46.13.17", "6");
INSERT INTO `wp_gf_form_view` VALUES("43889", "3", "2016-11-29 08:17:30", "207.46.13.17", "24");
INSERT INTO `wp_gf_form_view` VALUES("43890", "9", "2016-11-29 08:33:08", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43891", "10", "2016-11-29 09:00:07", "207.46.13.83", "14");
INSERT INTO `wp_gf_form_view` VALUES("43892", "3", "2016-11-29 09:00:07", "207.46.13.83", "59");
INSERT INTO `wp_gf_form_view` VALUES("43893", "10", "2016-11-29 10:17:04", "157.55.39.27", "14");
INSERT INTO `wp_gf_form_view` VALUES("43894", "3", "2016-11-29 10:17:04", "157.55.39.27", "60");
INSERT INTO `wp_gf_form_view` VALUES("43895", "10", "2016-11-29 11:12:52", "202.46.54.192", "6");
INSERT INTO `wp_gf_form_view` VALUES("43896", "3", "2016-11-29 11:12:52", "202.46.54.192", "24");
INSERT INTO `wp_gf_form_view` VALUES("43897", "13", "2016-11-29 12:08:38", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("43898", "13", "2016-11-29 12:08:38", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43899", "10", "2016-11-29 12:08:39", "46.118.154.190", "30");
INSERT INTO `wp_gf_form_view` VALUES("43900", "10", "2016-11-29 12:08:39", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43901", "3", "2016-11-29 12:08:39", "46.118.154.190", "114");
INSERT INTO `wp_gf_form_view` VALUES("43902", "3", "2016-11-29 12:08:39", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("43903", "14", "2016-11-29 12:36:15", "206.221.180.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("43904", "10", "2016-11-29 13:01:31", "68.180.229.172", "74");
INSERT INTO `wp_gf_form_view` VALUES("43905", "3", "2016-11-29 13:01:31", "68.180.229.172", "291");
INSERT INTO `wp_gf_form_view` VALUES("43906", "11", "2016-11-29 13:26:23", "158.69.228.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("43907", "2", "2016-11-29 13:26:28", "158.69.228.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("43908", "3", "2016-11-29 14:08:15", "217.69.133.233", "49");
INSERT INTO `wp_gf_form_view` VALUES("43909", "10", "2016-11-29 14:08:15", "217.69.133.233", "13");
INSERT INTO `wp_gf_form_view` VALUES("43910", "13", "2016-11-29 14:34:16", "178.137.163.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("43911", "10", "2016-11-29 15:02:14", "157.55.39.27", "23");
INSERT INTO `wp_gf_form_view` VALUES("43912", "3", "2016-11-29 15:02:14", "157.55.39.27", "100");
INSERT INTO `wp_gf_form_view` VALUES("43913", "9", "2016-11-29 15:42:54", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("43914", "10", "2016-11-29 16:37:37", "66.249.79.156", "71");
INSERT INTO `wp_gf_form_view` VALUES("43915", "3", "2016-11-29 16:37:38", "66.249.79.156", "281");
INSERT INTO `wp_gf_form_view` VALUES("43916", "11", "2016-11-29 16:37:46", "149.91.123.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("43917", "2", "2016-11-29 16:39:19", "149.91.123.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("43918", "10", "2016-11-29 17:03:51", "209.89.230.147", "31");
INSERT INTO `wp_gf_form_view` VALUES("43919", "3", "2016-11-29 17:03:51", "209.89.230.147", "121");
INSERT INTO `wp_gf_form_view` VALUES("43920", "13", "2016-11-29 17:56:27", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43921", "10", "2016-11-29 18:00:51", "24.108.8.252", "39");
INSERT INTO `wp_gf_form_view` VALUES("43922", "10", "2016-11-29 18:00:51", "24.108.8.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("43923", "3", "2016-11-29 18:00:51", "24.108.8.252", "172");
INSERT INTO `wp_gf_form_view` VALUES("43924", "14", "2016-11-29 18:18:25", "24.68.157.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("43925", "10", "2016-11-29 19:11:51", "157.55.39.27", "17");
INSERT INTO `wp_gf_form_view` VALUES("43926", "3", "2016-11-29 19:11:51", "157.55.39.27", "64");
INSERT INTO `wp_gf_form_view` VALUES("43927", "10", "2016-11-29 20:08:12", "70.67.53.106", "23");
INSERT INTO `wp_gf_form_view` VALUES("43928", "3", "2016-11-29 20:08:12", "70.67.53.106", "89");
INSERT INTO `wp_gf_form_view` VALUES("43929", "8", "2016-11-29 20:26:36", "217.69.133.232", "2");
INSERT INTO `wp_gf_form_view` VALUES("43930", "13", "2016-11-29 20:26:55", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("43931", "3", "2016-11-29 21:07:45", "207.46.13.77", "105");
INSERT INTO `wp_gf_form_view` VALUES("43932", "10", "2016-11-29 21:07:46", "207.46.13.77", "24");
INSERT INTO `wp_gf_form_view` VALUES("43933", "13", "2016-11-29 21:25:07", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43934", "3", "2016-11-29 22:01:07", "217.69.133.230", "55");
INSERT INTO `wp_gf_form_view` VALUES("43935", "10", "2016-11-29 22:01:08", "217.69.133.230", "14");
INSERT INTO `wp_gf_form_view` VALUES("43936", "13", "2016-11-29 22:23:41", "178.137.163.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("43937", "13", "2016-11-29 22:23:41", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("43938", "10", "2016-11-29 23:00:20", "157.55.39.27", "18");
INSERT INTO `wp_gf_form_view` VALUES("43939", "3", "2016-11-29 23:00:20", "157.55.39.27", "65");
INSERT INTO `wp_gf_form_view` VALUES("43940", "7", "2016-11-29 23:35:57", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("43941", "12", "2016-11-29 23:36:07", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("43942", "10", "2016-11-30 00:04:56", "207.194.133.9", "14");
INSERT INTO `wp_gf_form_view` VALUES("43943", "3", "2016-11-30 00:04:56", "207.194.133.9", "56");
INSERT INTO `wp_gf_form_view` VALUES("43944", "13", "2016-11-30 00:08:36", "37.115.113.73", "4");
INSERT INTO `wp_gf_form_view` VALUES("43945", "10", "2016-11-30 01:11:06", "217.69.133.229", "66");
INSERT INTO `wp_gf_form_view` VALUES("43946", "3", "2016-11-30 01:11:06", "217.69.133.229", "228");
INSERT INTO `wp_gf_form_view` VALUES("43947", "14", "2016-11-30 01:17:11", "129.42.8.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("43948", "13", "2016-11-30 01:55:51", "24.68.17.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("43949", "10", "2016-11-30 02:03:31", "202.46.52.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("43950", "3", "2016-11-30 02:03:31", "202.46.52.106", "40");
INSERT INTO `wp_gf_form_view` VALUES("43951", "13", "2016-11-30 03:04:21", "134.249.51.255", "3");
INSERT INTO `wp_gf_form_view` VALUES("43952", "10", "2016-11-30 03:04:22", "134.249.51.255", "12");
INSERT INTO `wp_gf_form_view` VALUES("43953", "3", "2016-11-30 03:04:22", "134.249.51.255", "48");
INSERT INTO `wp_gf_form_view` VALUES("43954", "9", "2016-11-30 03:55:04", "207.46.13.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("43955", "10", "2016-11-30 04:00:50", "163.172.65.127", "64");
INSERT INTO `wp_gf_form_view` VALUES("43956", "3", "2016-11-30 04:00:50", "163.172.65.127", "257");
INSERT INTO `wp_gf_form_view` VALUES("43957", "13", "2016-11-30 04:16:42", "178.137.161.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("43958", "13", "2016-11-30 04:16:42", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43959", "2", "2016-11-30 04:58:34", "104.131.107.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("43960", "11", "2016-11-30 04:58:35", "104.131.107.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("43961", "10", "2016-11-30 05:14:18", "220.181.108.79", "22");
INSERT INTO `wp_gf_form_view` VALUES("43962", "3", "2016-11-30 05:14:18", "220.181.108.79", "89");
INSERT INTO `wp_gf_form_view` VALUES("43963", "13", "2016-11-30 05:15:51", "178.137.163.110", "6");
INSERT INTO `wp_gf_form_view` VALUES("43964", "10", "2016-11-30 06:30:51", "70.66.168.103", "15");
INSERT INTO `wp_gf_form_view` VALUES("43965", "3", "2016-11-30 06:30:52", "70.66.168.103", "56");
INSERT INTO `wp_gf_form_view` VALUES("43966", "9", "2016-11-30 06:53:06", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43967", "10", "2016-11-30 07:25:53", "52.207.240.119", "8");
INSERT INTO `wp_gf_form_view` VALUES("43968", "3", "2016-11-30 07:25:54", "52.207.240.119", "32");
INSERT INTO `wp_gf_form_view` VALUES("43969", "10", "2016-11-30 08:05:03", "87.10.41.232", "70");
INSERT INTO `wp_gf_form_view` VALUES("43970", "3", "2016-11-30 08:05:03", "87.10.41.232", "284");
INSERT INTO `wp_gf_form_view` VALUES("43971", "11", "2016-11-30 08:05:09", "87.10.41.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("43972", "2", "2016-11-30 08:06:25", "87.10.41.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("43973", "10", "2016-11-30 09:06:41", "40.77.167.87", "10");
INSERT INTO `wp_gf_form_view` VALUES("43974", "3", "2016-11-30 09:06:41", "40.77.167.87", "32");
INSERT INTO `wp_gf_form_view` VALUES("43975", "14", "2016-11-30 09:19:42", "5.196.140.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("43976", "13", "2016-11-30 10:02:27", "46.118.154.190", "5");
INSERT INTO `wp_gf_form_view` VALUES("43977", "10", "2016-11-30 10:02:28", "46.118.154.190", "22");
INSERT INTO `wp_gf_form_view` VALUES("43978", "3", "2016-11-30 10:02:28", "46.118.154.190", "96");
INSERT INTO `wp_gf_form_view` VALUES("43979", "3", "2016-11-30 11:00:44", "68.180.229.172", "9");
INSERT INTO `wp_gf_form_view` VALUES("43980", "10", "2016-11-30 11:00:44", "68.180.229.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("43981", "10", "2016-11-30 12:09:44", "77.75.79.36", "20");
INSERT INTO `wp_gf_form_view` VALUES("43982", "3", "2016-11-30 12:09:48", "77.75.79.36", "73");
INSERT INTO `wp_gf_form_view` VALUES("43983", "5", "2016-11-30 12:21:19", "207.46.13.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("43984", "13", "2016-11-30 13:06:41", "134.249.51.255", "5");
INSERT INTO `wp_gf_form_view` VALUES("43985", "13", "2016-11-30 13:06:41", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("43986", "10", "2016-11-30 13:06:41", "134.249.51.255", "34");
INSERT INTO `wp_gf_form_view` VALUES("43987", "3", "2016-11-30 13:06:41", "134.249.51.255", "130");
INSERT INTO `wp_gf_form_view` VALUES("43988", "10", "2016-11-30 14:01:03", "77.85.14.21", "114");
INSERT INTO `wp_gf_form_view` VALUES("43989", "3", "2016-11-30 14:01:03", "77.85.14.21", "467");
INSERT INTO `wp_gf_form_view` VALUES("43990", "11", "2016-11-30 14:05:56", "77.75.76.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("43991", "14", "2016-11-30 14:10:13", "77.85.14.21", "3");
INSERT INTO `wp_gf_form_view` VALUES("43992", "2", "2016-11-30 14:11:35", "77.85.14.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("43993", "10", "2016-11-30 15:02:39", "77.75.78.164", "26");
INSERT INTO `wp_gf_form_view` VALUES("43994", "3", "2016-11-30 15:02:39", "77.75.78.164", "99");
INSERT INTO `wp_gf_form_view` VALUES("43995", "14", "2016-11-30 15:07:25", "213.184.99.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("43996", "13", "2016-11-30 15:24:20", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("43997", "8", "2016-11-30 15:47:37", "163.172.66.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("43998", "3", "2016-11-30 16:29:20", "207.46.13.83", "26");
INSERT INTO `wp_gf_form_view` VALUES("43999", "10", "2016-11-30 16:29:20", "207.46.13.83", "6");
INSERT INTO `wp_gf_form_view` VALUES("44000", "3", "2016-11-30 17:08:37", "207.46.13.83", "9");
INSERT INTO `wp_gf_form_view` VALUES("44001", "10", "2016-11-30 17:08:37", "207.46.13.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("44002", "10", "2016-11-30 18:18:37", "207.46.13.69", "17");
INSERT INTO `wp_gf_form_view` VALUES("44003", "3", "2016-11-30 18:18:39", "207.46.13.69", "64");
INSERT INTO `wp_gf_form_view` VALUES("44004", "10", "2016-11-30 19:00:20", "184.68.134.18", "43");
INSERT INTO `wp_gf_form_view` VALUES("44005", "3", "2016-11-30 19:00:21", "184.68.134.18", "168");
INSERT INTO `wp_gf_form_view` VALUES("44006", "14", "2016-11-30 19:15:59", "184.68.134.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("44007", "10", "2016-11-30 20:04:23", "77.75.79.17", "17");
INSERT INTO `wp_gf_form_view` VALUES("44008", "3", "2016-11-30 20:04:23", "77.75.79.17", "64");
INSERT INTO `wp_gf_form_view` VALUES("44009", "10", "2016-11-30 21:01:56", "77.75.78.164", "19");
INSERT INTO `wp_gf_form_view` VALUES("44010", "3", "2016-11-30 21:01:56", "77.75.78.164", "73");
INSERT INTO `wp_gf_form_view` VALUES("44011", "10", "2016-11-30 22:00:43", "184.71.26.186", "22");
INSERT INTO `wp_gf_form_view` VALUES("44012", "3", "2016-11-30 22:00:43", "184.71.26.186", "89");
INSERT INTO `wp_gf_form_view` VALUES("44013", "13", "2016-11-30 22:05:37", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44014", "10", "2016-11-30 23:01:40", "68.180.229.56", "10");
INSERT INTO `wp_gf_form_view` VALUES("44015", "3", "2016-11-30 23:01:40", "68.180.229.56", "41");
INSERT INTO `wp_gf_form_view` VALUES("44016", "10", "2016-12-01 00:29:22", "207.46.13.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("44017", "3", "2016-12-01 00:29:23", "207.46.13.69", "8");
INSERT INTO `wp_gf_form_view` VALUES("44018", "14", "2016-12-01 01:40:23", "39.40.226.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("44019", "10", "2016-12-01 01:40:25", "39.40.226.17", "8");
INSERT INTO `wp_gf_form_view` VALUES("44020", "3", "2016-12-01 01:40:26", "39.40.226.17", "32");
INSERT INTO `wp_gf_form_view` VALUES("44021", "10", "2016-12-01 02:05:07", "77.75.78.170", "8");
INSERT INTO `wp_gf_form_view` VALUES("44022", "3", "2016-12-01 02:05:08", "77.75.78.170", "33");
INSERT INTO `wp_gf_form_view` VALUES("44023", "10", "2016-12-01 03:20:49", "64.114.25.211", "8");
INSERT INTO `wp_gf_form_view` VALUES("44024", "3", "2016-12-01 03:20:49", "64.114.25.211", "37");
INSERT INTO `wp_gf_form_view` VALUES("44025", "3", "2016-12-01 04:31:06", "202.46.53.190", "9");
INSERT INTO `wp_gf_form_view` VALUES("44026", "10", "2016-12-01 04:31:06", "202.46.53.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("44027", "13", "2016-12-01 05:31:03", "184.147.18.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("44028", "10", "2016-12-01 05:31:04", "184.147.18.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("44029", "3", "2016-12-01 05:31:05", "184.147.18.251", "8");
INSERT INTO `wp_gf_form_view` VALUES("44030", "10", "2016-12-01 06:07:11", "199.16.157.183", "13");
INSERT INTO `wp_gf_form_view` VALUES("44031", "10", "2016-12-01 06:07:11", "199.16.157.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("44032", "3", "2016-12-01 06:07:16", "199.16.157.181", "47");
INSERT INTO `wp_gf_form_view` VALUES("44033", "3", "2016-12-01 06:07:16", "199.16.157.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("44034", "13", "2016-12-01 06:08:12", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44035", "3", "2016-12-01 07:03:04", "68.180.229.56", "57");
INSERT INTO `wp_gf_form_view` VALUES("44036", "10", "2016-12-01 07:03:07", "68.180.229.56", "14");
INSERT INTO `wp_gf_form_view` VALUES("44037", "3", "2016-12-01 08:04:27", "40.77.167.87", "84");
INSERT INTO `wp_gf_form_view` VALUES("44038", "10", "2016-12-01 08:04:27", "40.77.167.87", "20");
INSERT INTO `wp_gf_form_view` VALUES("44039", "13", "2016-12-01 08:27:11", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44040", "3", "2016-12-01 09:13:50", "202.46.49.202", "17");
INSERT INTO `wp_gf_form_view` VALUES("44041", "10", "2016-12-01 09:13:56", "202.46.49.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("44042", "10", "2016-12-01 10:11:07", "66.249.79.140", "62");
INSERT INTO `wp_gf_form_view` VALUES("44043", "3", "2016-12-01 10:11:09", "66.249.79.140", "249");
INSERT INTO `wp_gf_form_view` VALUES("44044", "11", "2016-12-01 10:57:10", "50.163.68.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44045", "2", "2016-12-01 10:58:36", "50.163.68.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44046", "10", "2016-12-01 11:00:02", "50.163.68.110", "87");
INSERT INTO `wp_gf_form_view` VALUES("44047", "3", "2016-12-01 11:00:03", "50.163.68.110", "349");
INSERT INTO `wp_gf_form_view` VALUES("44048", "11", "2016-12-01 11:37:27", "38.111.147.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("44049", "13", "2016-12-01 11:42:22", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44050", "2", "2016-12-01 11:45:13", "38.111.147.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("44051", "12", "2016-12-01 11:47:52", "38.111.147.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("44052", "10", "2016-12-01 12:10:21", "163.172.64.222", "13");
INSERT INTO `wp_gf_form_view` VALUES("44053", "3", "2016-12-01 12:10:21", "163.172.64.222", "54");
INSERT INTO `wp_gf_form_view` VALUES("44054", "13", "2016-12-01 13:14:16", "5.248.253.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("44055", "10", "2016-12-01 13:14:17", "5.248.253.186", "8");
INSERT INTO `wp_gf_form_view` VALUES("44056", "3", "2016-12-01 13:14:17", "5.248.253.186", "32");
INSERT INTO `wp_gf_form_view` VALUES("44057", "10", "2016-12-01 14:22:53", "46.229.168.74", "18");
INSERT INTO `wp_gf_form_view` VALUES("44058", "3", "2016-12-01 14:22:55", "46.229.168.74", "72");
INSERT INTO `wp_gf_form_view` VALUES("44059", "10", "2016-12-01 15:02:16", "24.68.132.30", "34");
INSERT INTO `wp_gf_form_view` VALUES("44060", "3", "2016-12-01 15:02:16", "24.68.132.30", "141");
INSERT INTO `wp_gf_form_view` VALUES("44061", "13", "2016-12-01 16:15:25", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44062", "10", "2016-12-01 16:15:26", "178.137.163.110", "15");
INSERT INTO `wp_gf_form_view` VALUES("44063", "10", "2016-12-01 16:15:26", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44064", "3", "2016-12-01 16:15:26", "178.137.163.110", "68");
INSERT INTO `wp_gf_form_view` VALUES("44065", "3", "2016-12-01 16:15:26", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44066", "13", "2016-12-01 17:11:00", "178.137.161.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("44067", "10", "2016-12-01 17:11:02", "178.137.161.77", "47");
INSERT INTO `wp_gf_form_view` VALUES("44068", "10", "2016-12-01 17:11:02", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("44069", "3", "2016-12-01 17:11:03", "178.137.161.77", "176");
INSERT INTO `wp_gf_form_view` VALUES("44070", "14", "2016-12-01 17:43:27", "39.40.215.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("44071", "10", "2016-12-01 18:41:31", "142.31.70.50", "7");
INSERT INTO `wp_gf_form_view` VALUES("44072", "3", "2016-12-01 18:41:33", "142.31.70.50", "24");
INSERT INTO `wp_gf_form_view` VALUES("44073", "10", "2016-12-01 19:00:07", "142.31.70.50", "19");
INSERT INTO `wp_gf_form_view` VALUES("44074", "3", "2016-12-01 19:00:08", "142.31.70.50", "74");
INSERT INTO `wp_gf_form_view` VALUES("44075", "13", "2016-12-01 19:54:43", "5.248.253.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("44076", "10", "2016-12-01 20:07:00", "46.229.168.69", "12");
INSERT INTO `wp_gf_form_view` VALUES("44077", "3", "2016-12-01 20:07:00", "46.229.168.69", "48");
INSERT INTO `wp_gf_form_view` VALUES("44078", "10", "2016-12-01 21:10:47", "184.69.27.226", "20");
INSERT INTO `wp_gf_form_view` VALUES("44079", "3", "2016-12-01 21:10:50", "184.69.27.226", "84");
INSERT INTO `wp_gf_form_view` VALUES("44080", "10", "2016-12-01 22:10:22", "46.229.168.65", "16");
INSERT INTO `wp_gf_form_view` VALUES("44081", "3", "2016-12-01 22:10:22", "46.229.168.65", "65");
INSERT INTO `wp_gf_form_view` VALUES("44082", "13", "2016-12-01 23:06:33", "178.137.163.110", "5");
INSERT INTO `wp_gf_form_view` VALUES("44083", "10", "2016-12-01 23:06:34", "178.137.163.110", "61");
INSERT INTO `wp_gf_form_view` VALUES("44084", "10", "2016-12-01 23:06:34", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44085", "3", "2016-12-01 23:06:34", "178.137.163.110", "250");
INSERT INTO `wp_gf_form_view` VALUES("44086", "3", "2016-12-01 23:06:34", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44087", "10", "2016-12-02 00:14:55", "199.59.150.182", "239");
INSERT INTO `wp_gf_form_view` VALUES("44088", "3", "2016-12-02 00:14:56", "199.59.150.182", "902");
INSERT INTO `wp_gf_form_view` VALUES("44089", "9", "2016-12-02 00:31:16", "207.46.13.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("44090", "11", "2016-12-02 00:31:31", "207.46.13.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("44091", "8", "2016-12-02 00:33:18", "157.55.39.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("44092", "13", "2016-12-02 00:33:54", "157.55.39.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("44093", "12", "2016-12-02 00:35:08", "207.46.13.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("44094", "10", "2016-12-02 01:00:12", "64.233.172.140", "104");
INSERT INTO `wp_gf_form_view` VALUES("44095", "3", "2016-12-02 01:00:12", "64.233.172.140", "389");
INSERT INTO `wp_gf_form_view` VALUES("44096", "13", "2016-12-02 01:02:27", "178.137.161.77", "10");
INSERT INTO `wp_gf_form_view` VALUES("44097", "12", "2016-12-02 01:40:07", "207.46.13.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("44098", "10", "2016-12-02 02:10:39", "202.46.52.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("44099", "3", "2016-12-02 02:10:40", "202.46.52.112", "24");
INSERT INTO `wp_gf_form_view` VALUES("44100", "10", "2016-12-02 03:17:38", "202.46.53.146", "4");
INSERT INTO `wp_gf_form_view` VALUES("44101", "3", "2016-12-02 03:17:38", "202.46.53.146", "16");
INSERT INTO `wp_gf_form_view` VALUES("44102", "14", "2016-12-02 03:44:02", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44103", "10", "2016-12-02 04:07:03", "96.50.63.233", "8");
INSERT INTO `wp_gf_form_view` VALUES("44104", "3", "2016-12-02 04:07:03", "96.50.63.233", "32");
INSERT INTO `wp_gf_form_view` VALUES("44105", "13", "2016-12-02 05:01:33", "207.46.13.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("44106", "10", "2016-12-02 05:01:34", "207.46.13.179", "8");
INSERT INTO `wp_gf_form_view` VALUES("44107", "3", "2016-12-02 05:01:34", "207.46.13.179", "34");
INSERT INTO `wp_gf_form_view` VALUES("44108", "13", "2016-12-02 06:48:46", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("44109", "10", "2016-12-02 06:48:50", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44110", "10", "2016-12-02 06:48:50", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44111", "3", "2016-12-02 06:48:51", "46.118.154.190", "15");
INSERT INTO `wp_gf_form_view` VALUES("44112", "3", "2016-12-02 06:48:51", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44113", "10", "2016-12-02 07:02:26", "184.66.128.52", "26");
INSERT INTO `wp_gf_form_view` VALUES("44114", "3", "2016-12-02 07:02:26", "184.66.128.52", "104");
INSERT INTO `wp_gf_form_view` VALUES("44115", "14", "2016-12-02 07:04:17", "184.66.128.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("44116", "13", "2016-12-02 08:21:08", "134.249.51.255", "3");
INSERT INTO `wp_gf_form_view` VALUES("44117", "10", "2016-12-02 08:21:09", "134.249.51.255", "27");
INSERT INTO `wp_gf_form_view` VALUES("44118", "10", "2016-12-02 08:21:09", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44119", "3", "2016-12-02 08:21:09", "134.249.51.255", "111");
INSERT INTO `wp_gf_form_view` VALUES("44120", "3", "2016-12-02 08:21:09", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44121", "10", "2016-12-02 09:14:17", "207.46.13.69", "20");
INSERT INTO `wp_gf_form_view` VALUES("44122", "3", "2016-12-02 09:14:19", "207.46.13.69", "73");
INSERT INTO `wp_gf_form_view` VALUES("44123", "10", "2016-12-02 10:06:39", "77.75.76.170", "76");
INSERT INTO `wp_gf_form_view` VALUES("44124", "3", "2016-12-02 10:06:39", "77.75.76.170", "305");
INSERT INTO `wp_gf_form_view` VALUES("44125", "11", "2016-12-02 10:35:15", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("44126", "2", "2016-12-02 10:36:44", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("44127", "13", "2016-12-02 10:37:03", "134.249.51.255", "6");
INSERT INTO `wp_gf_form_view` VALUES("44128", "10", "2016-12-02 11:23:17", "46.229.168.71", "30");
INSERT INTO `wp_gf_form_view` VALUES("44129", "3", "2016-12-02 11:23:17", "46.229.168.71", "128");
INSERT INTO `wp_gf_form_view` VALUES("44130", "3", "2016-12-02 12:03:22", "66.249.79.140", "25");
INSERT INTO `wp_gf_form_view` VALUES("44131", "10", "2016-12-02 12:15:42", "207.46.13.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("44132", "13", "2016-12-02 12:31:15", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("44133", "10", "2016-12-02 14:41:23", "202.46.48.205", "8");
INSERT INTO `wp_gf_form_view` VALUES("44134", "3", "2016-12-02 14:41:25", "202.46.48.205", "32");
INSERT INTO `wp_gf_form_view` VALUES("44135", "10", "2016-12-02 15:01:19", "24.68.138.239", "75");
INSERT INTO `wp_gf_form_view` VALUES("44136", "3", "2016-12-02 15:01:19", "24.68.138.239", "297");
INSERT INTO `wp_gf_form_view` VALUES("44137", "11", "2016-12-02 15:05:49", "85.148.42.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("44138", "2", "2016-12-02 15:06:57", "85.148.42.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("44139", "10", "2016-12-02 16:26:47", "23.227.199.72", "62");
INSERT INTO `wp_gf_form_view` VALUES("44140", "3", "2016-12-02 16:26:48", "23.227.199.72", "249");
INSERT INTO `wp_gf_form_view` VALUES("44141", "11", "2016-12-02 16:26:54", "23.227.199.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("44142", "2", "2016-12-02 16:28:27", "23.227.199.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("44143", "10", "2016-12-02 17:19:10", "202.46.53.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("44144", "3", "2016-12-02 17:19:22", "202.46.53.90", "8");
INSERT INTO `wp_gf_form_view` VALUES("44145", "10", "2016-12-02 18:12:31", "142.36.122.76", "35");
INSERT INTO `wp_gf_form_view` VALUES("44146", "3", "2016-12-02 18:12:32", "142.36.122.76", "137");
INSERT INTO `wp_gf_form_view` VALUES("44147", "14", "2016-12-02 18:13:29", "142.36.122.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("44148", "13", "2016-12-02 18:40:53", "46.118.154.190", "5");
INSERT INTO `wp_gf_form_view` VALUES("44149", "10", "2016-12-02 19:34:28", "64.141.84.46", "79");
INSERT INTO `wp_gf_form_view` VALUES("44150", "3", "2016-12-02 19:34:31", "64.141.84.46", "310");
INSERT INTO `wp_gf_form_view` VALUES("44151", "13", "2016-12-02 19:45:00", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44152", "6", "2016-12-02 19:47:03", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44153", "9", "2016-12-02 19:49:17", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44154", "8", "2016-12-02 19:55:59", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44155", "10", "2016-12-02 20:00:05", "136.243.36.94", "78");
INSERT INTO `wp_gf_form_view` VALUES("44156", "3", "2016-12-02 20:00:06", "136.243.36.94", "331");
INSERT INTO `wp_gf_form_view` VALUES("44157", "9", "2016-12-02 20:04:44", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("44158", "8", "2016-12-02 20:05:17", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("44159", "6", "2016-12-02 20:09:06", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("44160", "13", "2016-12-02 20:46:48", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("44161", "14", "2016-12-02 21:04:36", "70.170.44.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("44162", "10", "2016-12-02 21:04:37", "70.170.44.69", "16");
INSERT INTO `wp_gf_form_view` VALUES("44163", "3", "2016-12-02 21:04:37", "70.170.44.69", "66");
INSERT INTO `wp_gf_form_view` VALUES("44164", "13", "2016-12-02 21:38:51", "178.137.161.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("44165", "10", "2016-12-02 22:05:37", "209.52.88.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("44166", "3", "2016-12-02 22:05:37", "209.52.88.109", "25");
INSERT INTO `wp_gf_form_view` VALUES("44167", "3", "2016-12-02 23:04:31", "185.158.119.133", "115");
INSERT INTO `wp_gf_form_view` VALUES("44168", "10", "2016-12-02 23:04:33", "185.158.119.133", "29");
INSERT INTO `wp_gf_form_view` VALUES("44169", "2", "2016-12-02 23:46:20", "213.133.166.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("44170", "10", "2016-12-03 00:28:23", "5.149.255.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("44171", "3", "2016-12-03 00:28:24", "5.149.255.131", "16");
INSERT INTO `wp_gf_form_view` VALUES("44172", "10", "2016-12-03 01:02:09", "202.46.55.154", "4");
INSERT INTO `wp_gf_form_view` VALUES("44173", "3", "2016-12-03 01:02:09", "202.46.55.154", "16");
INSERT INTO `wp_gf_form_view` VALUES("44174", "10", "2016-12-03 02:11:48", "66.249.79.144", "26");
INSERT INTO `wp_gf_form_view` VALUES("44175", "3", "2016-12-03 02:11:50", "66.249.79.144", "105");
INSERT INTO `wp_gf_form_view` VALUES("44176", "13", "2016-12-03 02:35:54", "5.248.253.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("44177", "14", "2016-12-03 02:41:40", "107.150.79.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("44178", "10", "2016-12-03 03:06:50", "68.180.229.56", "14");
INSERT INTO `wp_gf_form_view` VALUES("44179", "3", "2016-12-03 03:06:50", "68.180.229.56", "56");
INSERT INTO `wp_gf_form_view` VALUES("44180", "13", "2016-12-03 03:29:58", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("44181", "10", "2016-12-03 04:03:18", "50.92.248.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("44182", "3", "2016-12-03 04:03:18", "50.92.248.98", "8");
INSERT INTO `wp_gf_form_view` VALUES("44183", "10", "2016-12-03 05:28:51", "64.114.25.211", "10");
INSERT INTO `wp_gf_form_view` VALUES("44184", "3", "2016-12-03 05:28:53", "64.114.25.211", "32");
INSERT INTO `wp_gf_form_view` VALUES("44185", "10", "2016-12-03 06:03:17", "212.121.106.45", "12");
INSERT INTO `wp_gf_form_view` VALUES("44186", "3", "2016-12-03 06:03:17", "212.121.106.45", "49");
INSERT INTO `wp_gf_form_view` VALUES("44187", "13", "2016-12-03 06:15:22", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44188", "10", "2016-12-03 07:00:29", "46.229.168.67", "16");
INSERT INTO `wp_gf_form_view` VALUES("44189", "3", "2016-12-03 07:00:29", "46.229.168.67", "64");
INSERT INTO `wp_gf_form_view` VALUES("44190", "14", "2016-12-03 08:36:17", "90.154.127.19", "4");
INSERT INTO `wp_gf_form_view` VALUES("44191", "10", "2016-12-03 08:36:19", "90.154.127.19", "32");
INSERT INTO `wp_gf_form_view` VALUES("44192", "3", "2016-12-03 08:36:20", "90.154.127.19", "135");
INSERT INTO `wp_gf_form_view` VALUES("44193", "13", "2016-12-03 08:50:05", "178.137.161.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("44194", "13", "2016-12-03 09:07:36", "178.137.163.110", "4");
INSERT INTO `wp_gf_form_view` VALUES("44195", "10", "2016-12-03 09:07:36", "178.137.163.110", "18");
INSERT INTO `wp_gf_form_view` VALUES("44196", "3", "2016-12-03 09:07:37", "178.137.163.110", "74");
INSERT INTO `wp_gf_form_view` VALUES("44197", "3", "2016-12-03 10:02:40", "46.229.168.65", "67");
INSERT INTO `wp_gf_form_view` VALUES("44198", "10", "2016-12-03 10:02:40", "46.229.168.65", "14");
INSERT INTO `wp_gf_form_view` VALUES("44199", "13", "2016-12-03 10:30:20", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44200", "10", "2016-12-03 11:17:46", "77.75.77.72", "10");
INSERT INTO `wp_gf_form_view` VALUES("44201", "3", "2016-12-03 11:17:47", "77.75.77.72", "43");
INSERT INTO `wp_gf_form_view` VALUES("44202", "3", "2016-12-03 12:05:02", "68.180.229.56", "41");
INSERT INTO `wp_gf_form_view` VALUES("44203", "10", "2016-12-03 12:05:03", "68.180.229.56", "10");
INSERT INTO `wp_gf_form_view` VALUES("44204", "13", "2016-12-03 12:42:46", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44205", "10", "2016-12-03 13:16:32", "77.75.78.167", "14");
INSERT INTO `wp_gf_form_view` VALUES("44206", "3", "2016-12-03 13:16:33", "77.75.78.167", "60");
INSERT INTO `wp_gf_form_view` VALUES("44207", "14", "2016-12-03 13:56:28", "163.172.65.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("44208", "10", "2016-12-03 14:01:00", "66.249.79.140", "14");
INSERT INTO `wp_gf_form_view` VALUES("44209", "3", "2016-12-03 14:01:00", "66.249.79.140", "59");
INSERT INTO `wp_gf_form_view` VALUES("44210", "10", "2016-12-03 15:03:09", "202.46.48.92", "12");
INSERT INTO `wp_gf_form_view` VALUES("44211", "3", "2016-12-03 15:03:10", "202.46.48.92", "48");
INSERT INTO `wp_gf_form_view` VALUES("44212", "11", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44213", "3", "2016-12-03 16:24:44", "104.236.91.249", "178");
INSERT INTO `wp_gf_form_view` VALUES("44214", "10", "2016-12-03 16:24:44", "104.236.91.249", "30");
INSERT INTO `wp_gf_form_view` VALUES("44215", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44216", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44217", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44218", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44219", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44220", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44221", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44222", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44223", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44224", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44225", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44226", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44227", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44228", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44229", "2", "2016-12-03 16:24:45", "104.236.91.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("44230", "3", "2016-12-03 17:11:23", "46.229.168.72", "209");
INSERT INTO `wp_gf_form_view` VALUES("44231", "10", "2016-12-03 17:17:36", "207.6.120.73", "52");
INSERT INTO `wp_gf_form_view` VALUES("44232", "13", "2016-12-03 17:18:08", "178.137.161.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("44233", "13", "2016-12-03 17:18:08", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("44234", "13", "2016-12-03 17:18:08", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("44235", "10", "2016-12-03 18:16:07", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("44236", "3", "2016-12-03 18:16:08", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("44237", "10", "2016-12-03 19:20:22", "144.76.80.151", "14");
INSERT INTO `wp_gf_form_view` VALUES("44238", "3", "2016-12-03 19:20:28", "144.76.80.151", "59");
INSERT INTO `wp_gf_form_view` VALUES("44239", "10", "2016-12-03 20:43:05", "202.46.58.124", "16");
INSERT INTO `wp_gf_form_view` VALUES("44240", "3", "2016-12-03 20:43:06", "202.46.58.124", "64");
INSERT INTO `wp_gf_form_view` VALUES("44241", "13", "2016-12-03 20:52:37", "134.249.51.255", "5");
INSERT INTO `wp_gf_form_view` VALUES("44242", "13", "2016-12-03 20:52:37", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44243", "10", "2016-12-03 21:20:47", "68.180.229.56", "11");
INSERT INTO `wp_gf_form_view` VALUES("44244", "3", "2016-12-03 21:30:09", "149.91.80.132", "36");
INSERT INTO `wp_gf_form_view` VALUES("44245", "10", "2016-12-03 22:56:25", "207.46.13.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("44246", "3", "2016-12-03 22:56:26", "207.46.13.71", "17");
INSERT INTO `wp_gf_form_view` VALUES("44247", "10", "2016-12-03 23:16:30", "207.46.13.69", "10");
INSERT INTO `wp_gf_form_view` VALUES("44248", "3", "2016-12-03 23:16:30", "207.46.13.69", "40");
INSERT INTO `wp_gf_form_view` VALUES("44249", "10", "2016-12-04 00:06:09", "66.249.79.140", "9");
INSERT INTO `wp_gf_form_view` VALUES("44250", "3", "2016-12-04 00:06:09", "66.249.79.140", "56");
INSERT INTO `wp_gf_form_view` VALUES("44251", "2", "2016-12-04 00:23:10", "54.161.86.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("44252", "10", "2016-12-04 01:02:43", "66.249.79.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("44253", "3", "2016-12-04 01:02:43", "66.249.79.144", "48");
INSERT INTO `wp_gf_form_view` VALUES("44254", "13", "2016-12-04 01:10:32", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44255", "10", "2016-12-04 02:11:32", "68.180.229.56", "9");
INSERT INTO `wp_gf_form_view` VALUES("44256", "3", "2016-12-04 02:11:33", "68.180.229.56", "73");
INSERT INTO `wp_gf_form_view` VALUES("44257", "10", "2016-12-04 03:00:24", "216.220.37.161", "38");
INSERT INTO `wp_gf_form_view` VALUES("44258", "3", "2016-12-04 03:00:24", "216.220.37.161", "315");
INSERT INTO `wp_gf_form_view` VALUES("44259", "11", "2016-12-04 03:00:30", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("44260", "2", "2016-12-04 03:02:11", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("44261", "13", "2016-12-04 03:45:56", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44262", "13", "2016-12-04 04:26:26", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44263", "13", "2016-12-04 04:26:26", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44264", "13", "2016-12-04 04:26:26", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44265", "10", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44266", "10", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44267", "10", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44268", "3", "2016-12-04 04:26:27", "134.249.51.255", "22");
INSERT INTO `wp_gf_form_view` VALUES("44269", "3", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44270", "3", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44271", "14", "2016-12-04 06:11:37", "103.58.74.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("44272", "10", "2016-12-04 06:11:39", "103.58.74.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("44273", "3", "2016-12-04 06:11:40", "103.58.74.138", "65");
INSERT INTO `wp_gf_form_view` VALUES("44274", "13", "2016-12-04 06:41:25", "134.249.51.255", "2");
INSERT INTO `wp_gf_form_view` VALUES("44275", "13", "2016-12-04 06:41:25", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44276", "10", "2016-12-04 07:12:09", "204.79.180.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("44277", "3", "2016-12-04 07:12:12", "204.79.180.247", "56");
INSERT INTO `wp_gf_form_view` VALUES("44278", "10", "2016-12-04 08:12:07", "199.16.157.181", "12");
INSERT INTO `wp_gf_form_view` VALUES("44279", "3", "2016-12-04 08:12:08", "199.16.157.181", "80");
INSERT INTO `wp_gf_form_view` VALUES("44280", "3", "2016-12-04 09:01:43", "202.46.50.92", "17");
INSERT INTO `wp_gf_form_view` VALUES("44281", "10", "2016-12-04 09:01:43", "202.46.50.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("44282", "10", "2016-12-04 10:23:09", "37.203.209.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("44283", "3", "2016-12-04 10:23:10", "37.203.209.18", "16");
INSERT INTO `wp_gf_form_view` VALUES("44284", "10", "2016-12-04 11:00:59", "68.180.229.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("44285", "3", "2016-12-04 11:00:59", "68.180.229.56", "33");
INSERT INTO `wp_gf_form_view` VALUES("44286", "10", "2016-12-04 12:06:34", "54.161.88.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("44287", "3", "2016-12-04 12:06:34", "54.161.88.167", "16");
INSERT INTO `wp_gf_form_view` VALUES("44288", "10", "2016-12-04 13:19:37", "68.180.229.56", "9");
INSERT INTO `wp_gf_form_view` VALUES("44289", "3", "2016-12-04 13:19:38", "68.180.229.56", "57");
INSERT INTO `wp_gf_form_view` VALUES("44290", "14", "2016-12-04 13:46:08", "104.223.52.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("44291", "10", "2016-12-04 14:06:01", "68.180.229.56", "7");
INSERT INTO `wp_gf_form_view` VALUES("44292", "3", "2016-12-04 14:06:02", "68.180.229.56", "57");
INSERT INTO `wp_gf_form_view` VALUES("44293", "13", "2016-12-04 14:29:43", "178.137.161.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("44294", "5", "2016-12-04 15:23:18", "77.75.76.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("44295", "10", "2016-12-04 15:23:19", "77.75.76.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("44296", "3", "2016-12-04 15:23:21", "77.75.76.171", "40");
INSERT INTO `wp_gf_form_view` VALUES("44297", "13", "2016-12-04 16:19:19", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44298", "13", "2016-12-04 16:19:19", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44299", "10", "2016-12-04 16:19:19", "46.118.154.190", "5");
INSERT INTO `wp_gf_form_view` VALUES("44300", "10", "2016-12-04 16:19:19", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44301", "3", "2016-12-04 16:19:20", "46.118.154.190", "50");
INSERT INTO `wp_gf_form_view` VALUES("44302", "3", "2016-12-04 16:19:20", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44303", "10", "2016-12-04 17:10:53", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("44304", "3", "2016-12-04 17:10:54", "66.249.79.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("44305", "3", "2016-12-04 18:03:56", "68.180.229.56", "53");
INSERT INTO `wp_gf_form_view` VALUES("44306", "10", "2016-12-04 18:03:57", "68.180.229.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("44307", "13", "2016-12-04 18:59:46", "46.118.230.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("44308", "10", "2016-12-04 19:04:54", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("44309", "3", "2016-12-04 19:04:54", "66.249.79.148", "48");
INSERT INTO `wp_gf_form_view` VALUES("44310", "10", "2016-12-04 20:00:50", "202.46.53.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("44311", "3", "2016-12-04 20:00:50", "202.46.53.117", "16");
INSERT INTO `wp_gf_form_view` VALUES("44312", "10", "2016-12-04 22:17:39", "192.169.136.72", "7");
INSERT INTO `wp_gf_form_view` VALUES("44313", "3", "2016-12-04 22:17:47", "199.21.99.202", "62");
INSERT INTO `wp_gf_form_view` VALUES("44314", "3", "2016-12-04 22:17:47", "192.169.136.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("44315", "10", "2016-12-04 23:05:08", "5.9.94.207", "17");
INSERT INTO `wp_gf_form_view` VALUES("44316", "3", "2016-12-04 23:05:08", "5.9.94.207", "134");
INSERT INTO `wp_gf_form_view` VALUES("44317", "14", "2016-12-05 00:21:44", "104.168.75.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("44318", "10", "2016-12-05 00:21:45", "104.168.75.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("44319", "3", "2016-12-05 00:21:45", "104.168.75.3", "99");
INSERT INTO `wp_gf_form_view` VALUES("44320", "13", "2016-12-05 00:58:06", "178.137.161.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("44321", "13", "2016-12-05 01:13:28", "46.118.154.190", "5");
INSERT INTO `wp_gf_form_view` VALUES("44322", "10", "2016-12-05 01:13:28", "46.118.154.190", "9");
INSERT INTO `wp_gf_form_view` VALUES("44323", "3", "2016-12-05 01:13:28", "46.118.154.190", "73");
INSERT INTO `wp_gf_form_view` VALUES("44324", "10", "2016-12-05 02:08:20", "109.173.125.248", "101");
INSERT INTO `wp_gf_form_view` VALUES("44325", "3", "2016-12-05 02:08:21", "109.173.125.248", "725");
INSERT INTO `wp_gf_form_view` VALUES("44326", "14", "2016-12-05 02:10:53", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("44327", "13", "2016-12-05 02:37:36", "46.118.230.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("44328", "7", "2016-12-05 02:58:37", "207.46.13.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("44329", "9", "2016-12-05 02:58:41", "40.77.167.47", "4");
INSERT INTO `wp_gf_form_view` VALUES("44330", "8", "2016-12-05 02:59:26", "207.46.13.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("44331", "5", "2016-12-05 02:59:52", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("44332", "3", "2016-12-05 03:00:00", "207.46.13.71", "135");
INSERT INTO `wp_gf_form_view` VALUES("44333", "6", "2016-12-05 03:00:01", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("44334", "10", "2016-12-05 03:00:01", "207.46.13.71", "18");
INSERT INTO `wp_gf_form_view` VALUES("44335", "13", "2016-12-05 03:00:15", "207.46.13.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("44336", "14", "2016-12-05 03:53:52", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("44337", "3", "2016-12-05 04:09:33", "163.172.66.160", "35");
INSERT INTO `wp_gf_form_view` VALUES("44338", "10", "2016-12-05 04:09:34", "163.172.66.160", "5");
INSERT INTO `wp_gf_form_view` VALUES("44339", "13", "2016-12-05 05:21:03", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44340", "10", "2016-12-05 05:21:06", "178.137.163.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("44341", "10", "2016-12-05 05:21:06", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44342", "10", "2016-12-05 05:21:06", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44343", "3", "2016-12-05 05:21:07", "178.137.163.110", "30");
INSERT INTO `wp_gf_form_view` VALUES("44344", "3", "2016-12-05 05:21:07", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44345", "3", "2016-12-05 05:21:07", "178.137.163.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44346", "14", "2016-12-05 05:33:56", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("44347", "10", "2016-12-05 06:42:09", "24.68.2.22", "5");
INSERT INTO `wp_gf_form_view` VALUES("44348", "3", "2016-12-05 06:42:10", "24.68.2.22", "32");
INSERT INTO `wp_gf_form_view` VALUES("44349", "13", "2016-12-05 07:03:17", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44350", "10", "2016-12-05 07:03:20", "68.180.229.56", "8");
INSERT INTO `wp_gf_form_view` VALUES("44351", "3", "2016-12-05 07:03:23", "68.180.229.56", "48");
INSERT INTO `wp_gf_form_view` VALUES("44352", "9", "2016-12-05 07:21:55", "163.172.66.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("44353", "10", "2016-12-05 08:05:18", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("44354", "3", "2016-12-05 08:05:19", "66.249.79.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("44355", "10", "2016-12-05 09:44:28", "163.172.65.46", "3");
INSERT INTO `wp_gf_form_view` VALUES("44356", "3", "2016-12-05 09:44:30", "163.172.65.46", "25");
INSERT INTO `wp_gf_form_view` VALUES("44357", "13", "2016-12-05 10:11:52", "46.118.230.189", "11");
INSERT INTO `wp_gf_form_view` VALUES("44358", "10", "2016-12-05 10:11:52", "46.118.230.189", "11");
INSERT INTO `wp_gf_form_view` VALUES("44359", "3", "2016-12-05 10:11:52", "46.118.230.189", "88");
INSERT INTO `wp_gf_form_view` VALUES("44360", "13", "2016-12-05 11:22:28", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44361", "10", "2016-12-05 11:22:28", "178.137.163.110", "23");
INSERT INTO `wp_gf_form_view` VALUES("44362", "3", "2016-12-05 11:22:29", "178.137.163.110", "184");
INSERT INTO `wp_gf_form_view` VALUES("44363", "11", "2016-12-05 11:51:15", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44364", "2", "2016-12-05 11:57:24", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44365", "10", "2016-12-05 12:00:22", "136.243.36.94", "61");
INSERT INTO `wp_gf_form_view` VALUES("44366", "3", "2016-12-05 12:00:22", "136.243.36.94", "480");
INSERT INTO `wp_gf_form_view` VALUES("44367", "13", "2016-12-05 12:05:22", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44368", "6", "2016-12-05 12:10:31", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44369", "9", "2016-12-05 12:10:38", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44370", "8", "2016-12-05 12:13:22", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44371", "3", "2016-12-05 13:27:32", "68.180.229.56", "9");
INSERT INTO `wp_gf_form_view` VALUES("44372", "10", "2016-12-05 13:37:59", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("44373", "10", "2016-12-05 14:59:56", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("44374", "3", "2016-12-05 14:59:58", "77.75.79.109", "8");
INSERT INTO `wp_gf_form_view` VALUES("44375", "10", "2016-12-05 15:17:08", "163.172.65.190", "6");
INSERT INTO `wp_gf_form_view` VALUES("44376", "3", "2016-12-05 15:17:08", "163.172.65.190", "48");
INSERT INTO `wp_gf_form_view` VALUES("44377", "6", "2016-12-05 15:47:07", "167.114.234.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("44378", "10", "2016-12-05 17:27:26", "70.66.169.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("44379", "3", "2016-12-05 17:27:28", "70.66.169.48", "40");
INSERT INTO `wp_gf_form_view` VALUES("44380", "10", "2016-12-05 18:34:41", "163.172.64.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("44381", "3", "2016-12-05 18:34:45", "163.172.64.182", "38");
INSERT INTO `wp_gf_form_view` VALUES("44382", "10", "2016-12-05 19:43:31", "96.50.98.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("44383", "3", "2016-12-05 19:43:34", "96.50.98.58", "17");
INSERT INTO `wp_gf_form_view` VALUES("44384", "10", "2016-12-05 20:01:57", "154.5.211.239", "5");
INSERT INTO `wp_gf_form_view` VALUES("44385", "3", "2016-12-05 20:01:57", "154.5.211.239", "32");
INSERT INTO `wp_gf_form_view` VALUES("44386", "13", "2016-12-05 21:08:37", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44387", "13", "2016-12-05 21:08:37", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44388", "10", "2016-12-05 21:08:38", "134.249.51.255", "27");
INSERT INTO `wp_gf_form_view` VALUES("44389", "10", "2016-12-05 21:08:38", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44390", "3", "2016-12-05 21:08:39", "134.249.51.255", "228");
INSERT INTO `wp_gf_form_view` VALUES("44391", "3", "2016-12-05 21:08:39", "134.249.51.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("44392", "10", "2016-12-05 22:01:04", "202.46.57.174", "8");
INSERT INTO `wp_gf_form_view` VALUES("44393", "3", "2016-12-05 22:01:04", "202.46.57.174", "64");
INSERT INTO `wp_gf_form_view` VALUES("44394", "11", "2016-12-05 22:28:06", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("44395", "13", "2016-12-05 22:56:35", "134.249.51.255", "2");
INSERT INTO `wp_gf_form_view` VALUES("44396", "10", "2016-12-05 23:01:56", "142.36.127.147", "6");
INSERT INTO `wp_gf_form_view` VALUES("44397", "3", "2016-12-05 23:01:56", "142.36.127.147", "49");
INSERT INTO `wp_gf_form_view` VALUES("44398", "2", "2016-12-05 23:54:36", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44399", "10", "2016-12-06 00:01:58", "96.50.19.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("44400", "3", "2016-12-06 00:01:58", "96.50.19.46", "17");
INSERT INTO `wp_gf_form_view` VALUES("44401", "10", "2016-12-06 01:14:10", "68.180.229.56", "7");
INSERT INTO `wp_gf_form_view` VALUES("44402", "3", "2016-12-06 01:14:10", "68.180.229.56", "56");
INSERT INTO `wp_gf_form_view` VALUES("44403", "13", "2016-12-06 01:36:56", "134.249.51.255", "6");
INSERT INTO `wp_gf_form_view` VALUES("44404", "10", "2016-12-06 02:05:09", "70.35.197.223", "38");
INSERT INTO `wp_gf_form_view` VALUES("44405", "3", "2016-12-06 02:05:09", "70.35.197.223", "306");
INSERT INTO `wp_gf_form_view` VALUES("44406", "11", "2016-12-06 02:05:12", "70.35.197.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("44407", "2", "2016-12-06 02:07:19", "70.35.197.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("44408", "10", "2016-12-06 03:01:53", "50.64.190.171", "117");
INSERT INTO `wp_gf_form_view` VALUES("44409", "10", "2016-12-06 03:01:53", "50.64.190.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("44410", "3", "2016-12-06 03:01:53", "50.64.190.171", "960");
INSERT INTO `wp_gf_form_view` VALUES("44411", "3", "2016-12-06 03:01:53", "50.64.190.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("44412", "11", "2016-12-06 03:01:58", "50.64.190.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("44413", "2", "2016-12-06 03:02:10", "50.64.190.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("44414", "6", "2016-12-06 03:02:19", "50.64.190.171", "3");
INSERT INTO `wp_gf_form_view` VALUES("44415", "13", "2016-12-06 03:02:45", "50.64.190.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("44416", "14", "2016-12-06 03:02:57", "50.64.190.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("44417", "10", "2016-12-06 04:03:53", "167.114.224.218", "5");
INSERT INTO `wp_gf_form_view` VALUES("44418", "3", "2016-12-06 04:03:53", "167.114.224.218", "41");
INSERT INTO `wp_gf_form_view` VALUES("44419", "14", "2016-12-06 04:41:33", "24.68.37.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("44420", "10", "2016-12-06 05:26:58", "99.199.3.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("44421", "3", "2016-12-06 05:26:59", "99.199.3.224", "16");
INSERT INTO `wp_gf_form_view` VALUES("44422", "10", "2016-12-06 06:11:04", "80.248.225.154", "57");
INSERT INTO `wp_gf_form_view` VALUES("44423", "10", "2016-12-06 06:11:04", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44424", "10", "2016-12-06 06:11:04", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44425", "10", "2016-12-06 06:11:04", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44426", "10", "2016-12-06 06:11:04", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44427", "3", "2016-12-06 06:11:05", "80.248.225.154", "482");
INSERT INTO `wp_gf_form_view` VALUES("44428", "3", "2016-12-06 06:11:05", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44429", "3", "2016-12-06 06:11:05", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44430", "3", "2016-12-06 06:11:05", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44431", "3", "2016-12-06 06:11:05", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44432", "2", "2016-12-06 06:14:35", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44433", "11", "2016-12-06 06:18:27", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44434", "14", "2016-12-06 06:19:25", "80.248.225.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("44435", "13", "2016-12-06 07:02:17", "46.118.230.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("44436", "10", "2016-12-06 07:02:21", "46.118.230.189", "222");
INSERT INTO `wp_gf_form_view` VALUES("44437", "10", "2016-12-06 07:02:21", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44438", "10", "2016-12-06 07:02:21", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44439", "3", "2016-12-06 07:02:21", "46.118.230.189", "1900");
INSERT INTO `wp_gf_form_view` VALUES("44440", "3", "2016-12-06 07:02:21", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44441", "3", "2016-12-06 07:02:21", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44442", "14", "2016-12-06 07:36:36", "45.55.163.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("44443", "11", "2016-12-06 07:36:51", "45.55.163.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("44444", "6", "2016-12-06 07:54:16", "45.55.163.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("44445", "5", "2016-12-06 07:58:12", "77.75.76.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("44446", "10", "2016-12-06 08:00:16", "45.55.163.54", "351");
INSERT INTO `wp_gf_form_view` VALUES("44447", "3", "2016-12-06 08:00:17", "45.55.163.54", "2898");
INSERT INTO `wp_gf_form_view` VALUES("44448", "9", "2016-12-06 08:03:06", "45.55.163.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("44449", "11", "2016-12-06 08:14:12", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("44450", "2", "2016-12-06 08:40:56", "45.55.163.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("44451", "13", "2016-12-06 08:50:36", "45.55.163.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("44452", "3", "2016-12-06 09:48:15", "207.46.13.34", "9");
INSERT INTO `wp_gf_form_view` VALUES("44453", "10", "2016-12-06 09:48:19", "207.46.13.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("44454", "10", "2016-12-06 10:55:24", "136.243.17.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("44455", "3", "2016-12-06 10:55:26", "136.243.17.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("44456", "10", "2016-12-06 11:13:50", "77.75.77.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("44457", "3", "2016-12-06 11:13:50", "77.75.77.72", "17");
INSERT INTO `wp_gf_form_view` VALUES("44458", "10", "2016-12-06 12:07:00", "66.249.79.144", "5");
INSERT INTO `wp_gf_form_view` VALUES("44459", "3", "2016-12-06 12:07:01", "66.249.79.144", "41");
INSERT INTO `wp_gf_form_view` VALUES("44460", "10", "2016-12-06 13:03:23", "77.75.79.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("44461", "3", "2016-12-06 13:03:23", "77.75.79.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("44462", "13", "2016-12-06 14:12:58", "46.118.230.189", "9");
INSERT INTO `wp_gf_form_view` VALUES("44463", "10", "2016-12-06 14:12:58", "46.118.230.189", "11");
INSERT INTO `wp_gf_form_view` VALUES("44464", "3", "2016-12-06 14:12:59", "46.118.230.189", "89");
INSERT INTO `wp_gf_form_view` VALUES("44465", "10", "2016-12-06 15:09:50", "77.75.78.165", "11");
INSERT INTO `wp_gf_form_view` VALUES("44466", "3", "2016-12-06 15:09:51", "77.75.78.165", "72");
INSERT INTO `wp_gf_form_view` VALUES("44467", "13", "2016-12-06 15:44:17", "134.249.51.255", "2");
INSERT INTO `wp_gf_form_view` VALUES("44468", "10", "2016-12-06 16:00:48", "68.180.229.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("44469", "3", "2016-12-06 16:00:56", "68.180.229.56", "40");
INSERT INTO `wp_gf_form_view` VALUES("44470", "11", "2016-12-06 16:26:56", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44471", "13", "2016-12-06 16:59:35", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("44472", "10", "2016-12-06 17:02:57", "96.50.1.71", "12");
INSERT INTO `wp_gf_form_view` VALUES("44473", "3", "2016-12-06 17:02:57", "96.50.1.71", "106");
INSERT INTO `wp_gf_form_view` VALUES("44474", "14", "2016-12-06 17:04:25", "96.50.1.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("44475", "13", "2016-12-06 17:36:59", "178.137.163.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("44476", "10", "2016-12-06 18:34:11", "195.154.253.152", "4");
INSERT INTO `wp_gf_form_view` VALUES("44477", "3", "2016-12-06 18:34:11", "195.154.253.152", "32");
INSERT INTO `wp_gf_form_view` VALUES("44478", "10", "2016-12-06 19:02:13", "77.75.76.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("44479", "3", "2016-12-06 19:02:13", "77.75.76.168", "65");
INSERT INTO `wp_gf_form_view` VALUES("44480", "10", "2016-12-06 20:09:34", "77.75.79.101", "18");
INSERT INTO `wp_gf_form_view` VALUES("44481", "3", "2016-12-06 20:09:35", "77.75.79.101", "136");
INSERT INTO `wp_gf_form_view` VALUES("44482", "13", "2016-12-06 20:34:33", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44483", "14", "2016-12-06 20:57:53", "184.66.231.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("44484", "10", "2016-12-06 21:02:11", "184.66.231.48", "10");
INSERT INTO `wp_gf_form_view` VALUES("44485", "3", "2016-12-06 21:02:11", "184.66.231.48", "64");
INSERT INTO `wp_gf_form_view` VALUES("44486", "10", "2016-12-06 22:04:04", "77.75.79.95", "26");
INSERT INTO `wp_gf_form_view` VALUES("44487", "3", "2016-12-06 22:04:04", "77.75.79.95", "212");
INSERT INTO `wp_gf_form_view` VALUES("44488", "13", "2016-12-06 22:49:40", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44489", "3", "2016-12-06 23:08:32", "77.75.78.166", "83");
INSERT INTO `wp_gf_form_view` VALUES("44490", "10", "2016-12-06 23:08:33", "77.75.78.166", "9");
INSERT INTO `wp_gf_form_view` VALUES("44491", "14", "2016-12-06 23:41:29", "75.157.56.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("44492", "12", "2016-12-07 00:41:10", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44493", "10", "2016-12-07 00:41:10", "68.180.229.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("44494", "3", "2016-12-07 00:41:10", "68.180.229.56", "33");
INSERT INTO `wp_gf_form_view` VALUES("44495", "14", "2016-12-07 00:51:19", "107.150.79.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("44496", "10", "2016-12-07 01:29:43", "66.249.79.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("44497", "3", "2016-12-07 01:29:43", "66.249.79.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("44498", "10", "2016-12-07 02:06:54", "202.46.53.198", "7");
INSERT INTO `wp_gf_form_view` VALUES("44499", "3", "2016-12-07 02:06:55", "202.46.53.198", "56");
INSERT INTO `wp_gf_form_view` VALUES("44500", "13", "2016-12-07 02:13:23", "178.137.161.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("44501", "13", "2016-12-07 02:13:23", "178.137.161.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("44502", "11", "2016-12-07 03:22:50", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44503", "2", "2016-12-07 03:22:50", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44504", "3", "2016-12-07 03:22:51", "104.236.61.18", "169");
INSERT INTO `wp_gf_form_view` VALUES("44505", "10", "2016-12-07 03:22:51", "104.236.61.18", "5");
INSERT INTO `wp_gf_form_view` VALUES("44506", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44507", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44508", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44509", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44510", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44511", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44512", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44513", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44514", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44515", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44516", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44517", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44518", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44519", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44520", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44521", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44522", "13", "2016-12-07 04:02:17", "178.137.163.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("44523", "10", "2016-12-07 04:02:17", "178.137.163.110", "4");
INSERT INTO `wp_gf_form_view` VALUES("44524", "3", "2016-12-07 04:02:17", "178.137.163.110", "32");
INSERT INTO `wp_gf_form_view` VALUES("44525", "10", "2016-12-07 05:04:52", "163.172.64.222", "3");
INSERT INTO `wp_gf_form_view` VALUES("44526", "3", "2016-12-07 05:04:53", "163.172.64.222", "24");
INSERT INTO `wp_gf_form_view` VALUES("44527", "10", "2016-12-07 06:07:53", "96.50.1.71", "15");
INSERT INTO `wp_gf_form_view` VALUES("44528", "3", "2016-12-07 06:07:53", "96.50.1.71", "114");
INSERT INTO `wp_gf_form_view` VALUES("44529", "10", "2016-12-07 07:22:25", "24.108.169.139", "8");
INSERT INTO `wp_gf_form_view` VALUES("44530", "3", "2016-12-07 07:22:27", "24.108.169.139", "64");
INSERT INTO `wp_gf_form_view` VALUES("44531", "3", "2016-12-07 08:09:11", "207.46.13.174", "27");
INSERT INTO `wp_gf_form_view` VALUES("44532", "10", "2016-12-07 08:09:14", "207.46.13.174", "3");
INSERT INTO `wp_gf_form_view` VALUES("44533", "10", "2016-12-07 09:07:22", "163.172.66.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("44534", "3", "2016-12-07 09:07:23", "163.172.66.79", "24");
INSERT INTO `wp_gf_form_view` VALUES("44535", "10", "2016-12-07 10:33:17", "5.9.145.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("44536", "3", "2016-12-07 10:33:18", "5.9.145.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("44537", "10", "2016-12-07 11:56:16", "207.46.13.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44538", "3", "2016-12-07 11:56:18", "207.46.13.15", "8");
INSERT INTO `wp_gf_form_view` VALUES("44539", "10", "2016-12-07 13:26:08", "163.172.66.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("44540", "3", "2016-12-07 13:26:11", "163.172.66.24", "33");
INSERT INTO `wp_gf_form_view` VALUES("44541", "10", "2016-12-07 14:04:45", "157.55.39.160", "7");
INSERT INTO `wp_gf_form_view` VALUES("44542", "3", "2016-12-07 14:04:45", "157.55.39.160", "40");
INSERT INTO `wp_gf_form_view` VALUES("44543", "3", "2016-12-07 15:03:49", "207.46.13.155", "900");
INSERT INTO `wp_gf_form_view` VALUES("44544", "10", "2016-12-07 15:03:49", "207.46.13.155", "133");
INSERT INTO `wp_gf_form_view` VALUES("44545", "11", "2016-12-07 15:04:09", "207.46.13.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("44546", "12", "2016-12-07 15:04:45", "157.55.39.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("44547", "13", "2016-12-07 15:04:56", "157.55.39.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("44548", "9", "2016-12-07 15:05:27", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("44549", "8", "2016-12-07 15:06:01", "207.46.13.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44550", "10", "2016-12-07 16:02:34", "207.46.13.15", "9");
INSERT INTO `wp_gf_form_view` VALUES("44551", "3", "2016-12-07 16:02:34", "207.46.13.15", "64");
INSERT INTO `wp_gf_form_view` VALUES("44552", "10", "2016-12-07 17:44:20", "64.62.210.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("44553", "3", "2016-12-07 17:44:22", "64.62.210.39", "8");
INSERT INTO `wp_gf_form_view` VALUES("44554", "10", "2016-12-07 18:27:40", "24.68.20.29", "26");
INSERT INTO `wp_gf_form_view` VALUES("44555", "3", "2016-12-07 18:27:40", "24.68.20.29", "210");
INSERT INTO `wp_gf_form_view` VALUES("44556", "2", "2016-12-07 18:39:03", "174.127.133.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44557", "11", "2016-12-07 18:43:11", "174.127.133.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44558", "10", "2016-12-07 19:08:12", "174.127.133.34", "108");
INSERT INTO `wp_gf_form_view` VALUES("44559", "3", "2016-12-07 19:08:15", "174.127.133.34", "896");
INSERT INTO `wp_gf_form_view` VALUES("44560", "14", "2016-12-07 19:23:38", "174.127.133.35", "3");
INSERT INTO `wp_gf_form_view` VALUES("44561", "13", "2016-12-07 19:28:39", "178.137.92.36", "11");
INSERT INTO `wp_gf_form_view` VALUES("44562", "11", "2016-12-07 19:29:49", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44563", "2", "2016-12-07 19:30:50", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44564", "6", "2016-12-07 19:59:35", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44565", "9", "2016-12-07 19:59:50", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44566", "10", "2016-12-07 20:00:01", "136.243.36.94", "38");
INSERT INTO `wp_gf_form_view` VALUES("44567", "3", "2016-12-07 20:00:01", "136.243.36.94", "379");
INSERT INTO `wp_gf_form_view` VALUES("44568", "8", "2016-12-07 20:08:07", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("44569", "9", "2016-12-07 20:11:16", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("44570", "13", "2016-12-07 20:26:14", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44571", "10", "2016-12-07 21:22:51", "207.194.133.9", "11");
INSERT INTO `wp_gf_form_view` VALUES("44572", "3", "2016-12-07 21:22:59", "207.194.133.9", "101");
INSERT INTO `wp_gf_form_view` VALUES("44573", "3", "2016-12-07 21:22:59", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("44574", "13", "2016-12-07 21:53:04", "46.118.118.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("44575", "10", "2016-12-07 22:02:06", "163.172.66.33", "36");
INSERT INTO `wp_gf_form_view` VALUES("44576", "3", "2016-12-07 22:02:06", "163.172.66.33", "335");
INSERT INTO `wp_gf_form_view` VALUES("44577", "11", "2016-12-07 22:03:32", "50.163.68.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44578", "2", "2016-12-07 22:04:52", "50.163.68.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44579", "11", "2016-12-07 23:05:52", "163.172.66.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("44580", "10", "2016-12-07 23:05:53", "163.172.66.70", "5");
INSERT INTO `wp_gf_form_view` VALUES("44581", "3", "2016-12-07 23:05:53", "163.172.66.70", "45");
INSERT INTO `wp_gf_form_view` VALUES("44582", "10", "2016-12-08 00:02:41", "163.172.66.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("44583", "3", "2016-12-08 00:02:41", "163.172.66.162", "46");
INSERT INTO `wp_gf_form_view` VALUES("44584", "10", "2016-12-08 01:05:14", "69.58.178.59", "12");
INSERT INTO `wp_gf_form_view` VALUES("44585", "3", "2016-12-08 01:05:14", "69.58.178.59", "108");
INSERT INTO `wp_gf_form_view` VALUES("44586", "11", "2016-12-08 01:09:28", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("44587", "2", "2016-12-08 01:10:11", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("44588", "14", "2016-12-08 01:49:14", "187.94.99.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("44589", "3", "2016-12-08 03:00:22", "68.180.229.56", "102");
INSERT INTO `wp_gf_form_view` VALUES("44590", "10", "2016-12-08 03:08:33", "96.50.1.89", "11");
INSERT INTO `wp_gf_form_view` VALUES("44591", "13", "2016-12-08 03:30:19", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44592", "13", "2016-12-08 03:30:19", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44593", "13", "2016-12-08 03:30:19", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44594", "10", "2016-12-08 04:16:31", "108.6.8.158", "35");
INSERT INTO `wp_gf_form_view` VALUES("44595", "3", "2016-12-08 04:16:31", "108.6.8.158", "299");
INSERT INTO `wp_gf_form_view` VALUES("44596", "11", "2016-12-08 04:25:27", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("44597", "10", "2016-12-08 05:30:03", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("44598", "3", "2016-12-08 05:30:06", "66.249.79.148", "18");
INSERT INTO `wp_gf_form_view` VALUES("44599", "10", "2016-12-08 06:05:07", "202.46.58.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("44600", "3", "2016-12-08 06:05:07", "202.46.58.183", "36");
INSERT INTO `wp_gf_form_view` VALUES("44601", "10", "2016-12-08 07:00:59", "66.249.79.148", "9");
INSERT INTO `wp_gf_form_view` VALUES("44602", "3", "2016-12-08 07:00:59", "66.249.79.148", "82");
INSERT INTO `wp_gf_form_view` VALUES("44603", "13", "2016-12-08 07:29:20", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44604", "10", "2016-12-08 08:05:04", "66.249.79.140", "5");
INSERT INTO `wp_gf_form_view` VALUES("44605", "3", "2016-12-08 08:05:04", "66.249.79.140", "45");
INSERT INTO `wp_gf_form_view` VALUES("44606", "2", "2016-12-08 08:24:05", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("44607", "10", "2016-12-08 09:02:01", "195.22.127.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("44608", "3", "2016-12-08 09:02:01", "195.22.127.140", "37");
INSERT INTO `wp_gf_form_view` VALUES("44609", "13", "2016-12-08 10:02:12", "163.172.66.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("44610", "10", "2016-12-08 10:02:12", "163.172.66.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("44611", "3", "2016-12-08 10:02:13", "163.172.66.179", "18");
INSERT INTO `wp_gf_form_view` VALUES("44612", "10", "2016-12-08 11:18:05", "163.172.64.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("44613", "3", "2016-12-08 11:18:08", "163.172.64.244", "9");
INSERT INTO `wp_gf_form_view` VALUES("44614", "3", "2016-12-08 12:34:49", "163.172.64.250", "10");
INSERT INTO `wp_gf_form_view` VALUES("44615", "10", "2016-12-08 12:34:50", "163.172.64.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("44616", "3", "2016-12-08 13:20:06", "68.180.229.56", "244");
INSERT INTO `wp_gf_form_view` VALUES("44617", "8", "2016-12-08 13:34:35", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("44618", "9", "2016-12-08 13:39:53", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44619", "10", "2016-12-08 13:39:53", "68.180.229.56", "26");
INSERT INTO `wp_gf_form_view` VALUES("44620", "6", "2016-12-08 13:41:55", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("44621", "13", "2016-12-08 14:20:26", "46.118.118.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("44622", "10", "2016-12-08 14:20:28", "46.118.118.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("44623", "10", "2016-12-08 14:20:28", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44624", "3", "2016-12-08 14:20:28", "46.118.118.15", "26");
INSERT INTO `wp_gf_form_view` VALUES("44625", "3", "2016-12-08 14:20:28", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44626", "10", "2016-12-08 15:08:33", "66.249.79.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("44627", "3", "2016-12-08 15:08:34", "66.249.79.148", "45");
INSERT INTO `wp_gf_form_view` VALUES("44628", "13", "2016-12-08 15:32:27", "46.118.118.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("44629", "10", "2016-12-08 16:15:11", "66.249.79.140", "9");
INSERT INTO `wp_gf_form_view` VALUES("44630", "3", "2016-12-08 16:15:11", "66.249.79.140", "83");
INSERT INTO `wp_gf_form_view` VALUES("44631", "13", "2016-12-08 16:38:16", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44632", "13", "2016-12-08 16:38:16", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44633", "10", "2016-12-08 17:02:14", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("44634", "3", "2016-12-08 17:02:14", "66.249.79.144", "36");
INSERT INTO `wp_gf_form_view` VALUES("44635", "2", "2016-12-08 17:41:09", "163.172.66.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("44636", "10", "2016-12-08 18:02:36", "207.46.13.54", "7");
INSERT INTO `wp_gf_form_view` VALUES("44637", "3", "2016-12-08 18:02:36", "207.46.13.54", "65");
INSERT INTO `wp_gf_form_view` VALUES("44638", "3", "2016-12-08 19:04:09", "202.46.54.147", "100");
INSERT INTO `wp_gf_form_view` VALUES("44639", "10", "2016-12-08 19:04:10", "202.46.54.147", "12");
INSERT INTO `wp_gf_form_view` VALUES("44640", "10", "2016-12-08 20:00:56", "184.69.120.138", "16");
INSERT INTO `wp_gf_form_view` VALUES("44641", "3", "2016-12-08 20:00:56", "184.69.120.138", "142");
INSERT INTO `wp_gf_form_view` VALUES("44642", "3", "2016-12-08 21:15:10", "202.46.50.74", "119");
INSERT INTO `wp_gf_form_view` VALUES("44643", "10", "2016-12-08 21:15:26", "202.46.50.74", "13");
INSERT INTO `wp_gf_form_view` VALUES("44644", "13", "2016-12-08 21:47:00", "46.118.118.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("44645", "10", "2016-12-08 22:02:01", "131.253.26.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("44646", "3", "2016-12-08 22:02:01", "131.253.26.245", "135");
INSERT INTO `wp_gf_form_view` VALUES("44647", "13", "2016-12-08 22:10:44", "178.137.90.14", "6");
INSERT INTO `wp_gf_form_view` VALUES("44648", "10", "2016-12-08 23:04:15", "108.180.6.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("44649", "3", "2016-12-08 23:04:15", "108.180.6.207", "18");
INSERT INTO `wp_gf_form_view` VALUES("44650", "10", "2016-12-09 00:10:56", "163.172.66.33", "8");
INSERT INTO `wp_gf_form_view` VALUES("44651", "3", "2016-12-09 00:10:56", "163.172.66.33", "73");
INSERT INTO `wp_gf_form_view` VALUES("44652", "14", "2016-12-09 02:12:02", "213.241.204.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("44653", "10", "2016-12-09 02:12:07", "213.241.204.236", "5");
INSERT INTO `wp_gf_form_view` VALUES("44654", "3", "2016-12-09 02:12:07", "213.241.204.236", "47");
INSERT INTO `wp_gf_form_view` VALUES("44655", "10", "2016-12-09 03:07:44", "163.172.65.215", "4");
INSERT INTO `wp_gf_form_view` VALUES("44656", "3", "2016-12-09 03:07:45", "163.172.65.215", "38");
INSERT INTO `wp_gf_form_view` VALUES("44657", "10", "2016-12-09 04:28:02", "68.180.229.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("44658", "3", "2016-12-09 04:28:03", "68.180.229.56", "13");
INSERT INTO `wp_gf_form_view` VALUES("44659", "13", "2016-12-09 05:09:10", "178.137.92.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("44660", "13", "2016-12-09 05:09:10", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44661", "10", "2016-12-09 05:09:10", "178.137.92.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("44662", "10", "2016-12-09 05:09:10", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44663", "3", "2016-12-09 05:09:10", "178.137.92.36", "36");
INSERT INTO `wp_gf_form_view` VALUES("44664", "3", "2016-12-09 05:09:10", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44665", "13", "2016-12-09 06:06:23", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("44666", "10", "2016-12-09 06:06:25", "46.118.154.190", "6");
INSERT INTO `wp_gf_form_view` VALUES("44667", "10", "2016-12-09 06:06:25", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44668", "3", "2016-12-09 06:06:25", "46.118.154.190", "53");
INSERT INTO `wp_gf_form_view` VALUES("44669", "3", "2016-12-09 06:06:25", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44670", "14", "2016-12-09 06:55:56", "202.46.56.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("44671", "10", "2016-12-09 07:22:47", "207.46.13.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("44672", "3", "2016-12-09 07:22:48", "207.46.13.54", "9");
INSERT INTO `wp_gf_form_view` VALUES("44673", "3", "2016-12-09 08:18:26", "163.172.65.13", "20");
INSERT INTO `wp_gf_form_view` VALUES("44674", "10", "2016-12-09 08:18:27", "163.172.65.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("44675", "3", "2016-12-09 10:12:57", "202.46.49.195", "308");
INSERT INTO `wp_gf_form_view` VALUES("44676", "10", "2016-12-09 10:13:00", "202.46.49.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("44677", "11", "2016-12-09 10:26:38", "79.116.27.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("44678", "2", "2016-12-09 10:27:40", "79.116.27.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("44679", "10", "2016-12-09 11:00:06", "68.180.229.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("44680", "3", "2016-12-09 11:00:06", "68.180.229.56", "30");
INSERT INTO `wp_gf_form_view` VALUES("44681", "10", "2016-12-09 12:10:34", "163.172.66.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("44682", "3", "2016-12-09 12:10:38", "163.172.66.100", "9");
INSERT INTO `wp_gf_form_view` VALUES("44683", "10", "2016-12-09 13:16:53", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("44684", "3", "2016-12-09 13:16:55", "66.249.79.148", "9");
INSERT INTO `wp_gf_form_view` VALUES("44685", "13", "2016-12-09 15:22:42", "178.137.90.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("44686", "13", "2016-12-09 15:22:42", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44687", "13", "2016-12-09 15:22:42", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44688", "13", "2016-12-09 15:22:42", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44689", "13", "2016-12-09 15:22:42", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44690", "13", "2016-12-09 15:22:42", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44691", "13", "2016-12-09 15:22:42", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44692", "13", "2016-12-09 15:22:42", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44693", "10", "2016-12-09 15:22:46", "178.137.92.36", "11");
INSERT INTO `wp_gf_form_view` VALUES("44694", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44695", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44696", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44697", "10", "2016-12-09 15:22:46", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44698", "10", "2016-12-09 15:22:46", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44699", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44700", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44701", "3", "2016-12-09 15:22:47", "178.137.92.36", "155");
INSERT INTO `wp_gf_form_view` VALUES("44702", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44703", "3", "2016-12-09 15:22:47", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44704", "3", "2016-12-09 15:22:47", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44705", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44706", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44707", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44708", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44709", "14", "2016-12-09 16:22:07", "192.227.169.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("44710", "10", "2016-12-09 16:22:10", "192.227.169.92", "5");
INSERT INTO `wp_gf_form_view` VALUES("44711", "3", "2016-12-09 16:22:10", "192.227.169.92", "48");
INSERT INTO `wp_gf_form_view` VALUES("44712", "10", "2016-12-09 17:35:17", "154.20.45.235", "3");
INSERT INTO `wp_gf_form_view` VALUES("44713", "3", "2016-12-09 17:35:24", "154.20.45.235", "27");
INSERT INTO `wp_gf_form_view` VALUES("44714", "10", "2016-12-09 18:31:06", "50.98.167.224", "3");
INSERT INTO `wp_gf_form_view` VALUES("44715", "3", "2016-12-09 18:31:08", "50.98.167.224", "27");
INSERT INTO `wp_gf_form_view` VALUES("44716", "10", "2016-12-09 19:13:58", "157.55.39.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("44717", "3", "2016-12-09 19:14:02", "157.55.39.72", "9");
INSERT INTO `wp_gf_form_view` VALUES("44718", "13", "2016-12-09 20:04:33", "46.118.230.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("44719", "13", "2016-12-09 20:04:33", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44720", "10", "2016-12-09 20:04:36", "46.118.230.189", "11");
INSERT INTO `wp_gf_form_view` VALUES("44721", "10", "2016-12-09 20:04:36", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44722", "10", "2016-12-09 20:04:36", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44723", "3", "2016-12-09 20:04:36", "46.118.230.189", "116");
INSERT INTO `wp_gf_form_view` VALUES("44724", "3", "2016-12-09 20:04:36", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44725", "3", "2016-12-09 20:04:36", "46.118.230.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("44726", "2", "2016-12-09 20:14:57", "142.4.218.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("44727", "10", "2016-12-09 21:10:27", "24.68.42.249", "2");
INSERT INTO `wp_gf_form_view` VALUES("44728", "3", "2016-12-09 21:10:39", "24.68.42.249", "18");
INSERT INTO `wp_gf_form_view` VALUES("44729", "10", "2016-12-09 22:18:12", "77.75.79.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("44730", "3", "2016-12-09 22:18:12", "77.75.79.17", "37");
INSERT INTO `wp_gf_form_view` VALUES("44731", "13", "2016-12-09 22:52:23", "163.172.65.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("44732", "10", "2016-12-09 23:08:09", "66.249.79.144", "11");
INSERT INTO `wp_gf_form_view` VALUES("44733", "3", "2016-12-09 23:08:09", "66.249.79.144", "99");
INSERT INTO `wp_gf_form_view` VALUES("44734", "5", "2016-12-09 23:33:03", "163.172.66.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("44735", "13", "2016-12-09 23:48:28", "178.137.90.14", "5");
INSERT INTO `wp_gf_form_view` VALUES("44736", "13", "2016-12-09 23:48:28", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44737", "10", "2016-12-10 00:08:51", "77.75.77.32", "32");
INSERT INTO `wp_gf_form_view` VALUES("44738", "3", "2016-12-10 00:08:51", "77.75.77.32", "289");
INSERT INTO `wp_gf_form_view` VALUES("44739", "11", "2016-12-10 00:31:11", "74.208.157.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("44740", "2", "2016-12-10 00:32:01", "74.208.157.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("44741", "10", "2016-12-10 01:12:28", "77.75.79.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("44742", "3", "2016-12-10 01:14:00", "77.75.79.101", "18");
INSERT INTO `wp_gf_form_view` VALUES("44743", "13", "2016-12-10 02:31:38", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44744", "10", "2016-12-10 02:32:42", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44745", "3", "2016-12-10 02:32:50", "46.118.154.190", "9");
INSERT INTO `wp_gf_form_view` VALUES("44746", "10", "2016-12-10 03:56:58", "157.55.39.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("44747", "10", "2016-12-10 03:56:58", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44748", "10", "2016-12-10 03:56:58", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44749", "3", "2016-12-10 03:57:55", "68.180.229.56", "18");
INSERT INTO `wp_gf_form_view` VALUES("44750", "3", "2016-12-10 03:57:55", "157.55.39.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("44751", "3", "2016-12-10 03:57:55", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44752", "3", "2016-12-10 03:57:55", "68.180.229.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("44753", "3", "2016-12-10 04:27:07", "157.55.39.119", "780");
INSERT INTO `wp_gf_form_view` VALUES("44754", "3", "2016-12-10 04:27:07", "157.55.39.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("44755", "3", "2016-12-10 04:27:07", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("44756", "3", "2016-12-10 04:27:07", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("44757", "10", "2016-12-10 04:27:07", "157.55.39.82", "98");
INSERT INTO `wp_gf_form_view` VALUES("44758", "3", "2016-12-10 04:27:07", "157.55.39.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("44759", "10", "2016-12-10 04:27:07", "157.55.39.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("44760", "5", "2016-12-10 04:28:23", "157.55.39.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("44761", "8", "2016-12-10 04:28:41", "157.55.39.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("44762", "7", "2016-12-10 04:28:45", "157.55.39.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("44763", "9", "2016-12-10 04:29:29", "157.55.39.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("44764", "6", "2016-12-10 04:29:38", "157.55.39.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("44765", "5", "2016-12-10 05:01:01", "157.55.39.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("44766", "10", "2016-12-10 05:01:02", "157.55.39.119", "20");
INSERT INTO `wp_gf_form_view` VALUES("44767", "3", "2016-12-10 05:01:05", "157.55.39.119", "186");
INSERT INTO `wp_gf_form_view` VALUES("44768", "14", "2016-12-10 05:17:13", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("44769", "6", "2016-12-10 05:28:22", "46.229.168.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("44770", "10", "2016-12-10 06:08:36", "163.172.64.177", "4");
INSERT INTO `wp_gf_form_view` VALUES("44771", "3", "2016-12-10 06:08:38", "163.172.64.177", "27");
INSERT INTO `wp_gf_form_view` VALUES("44772", "14", "2016-12-10 06:44:13", "155.133.64.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44773", "8", "2016-12-10 07:02:10", "46.229.168.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("44774", "10", "2016-12-10 07:02:25", "46.229.168.70", "34");
INSERT INTO `wp_gf_form_view` VALUES("44775", "10", "2016-12-10 07:02:26", "46.229.168.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("44776", "3", "2016-12-10 07:02:26", "46.229.168.70", "317");
INSERT INTO `wp_gf_form_view` VALUES("44777", "3", "2016-12-10 07:02:26", "46.229.168.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("44778", "13", "2016-12-10 07:35:01", "46.118.118.15", "5");
INSERT INTO `wp_gf_form_view` VALUES("44779", "13", "2016-12-10 07:35:01", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44780", "11", "2016-12-10 07:49:06", "45.55.229.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("44781", "2", "2016-12-10 07:49:09", "45.55.229.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("44782", "10", "2016-12-10 08:07:25", "207.46.13.166", "5");
INSERT INTO `wp_gf_form_view` VALUES("44783", "3", "2016-12-10 08:07:26", "207.46.13.166", "46");
INSERT INTO `wp_gf_form_view` VALUES("44784", "13", "2016-12-10 08:21:33", "46.118.118.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("44785", "10", "2016-12-10 09:11:13", "163.172.65.65", "5");
INSERT INTO `wp_gf_form_view` VALUES("44786", "3", "2016-12-10 09:11:14", "163.172.65.65", "45");
INSERT INTO `wp_gf_form_view` VALUES("44787", "13", "2016-12-10 09:34:49", "178.137.92.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("44788", "10", "2016-12-10 10:25:55", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("44789", "3", "2016-12-10 10:25:56", "199.21.99.202", "64");
INSERT INTO `wp_gf_form_view` VALUES("44790", "10", "2016-12-10 11:27:13", "202.46.51.81", "8");
INSERT INTO `wp_gf_form_view` VALUES("44791", "3", "2016-12-10 11:27:14", "202.46.51.81", "72");
INSERT INTO `wp_gf_form_view` VALUES("44792", "10", "2016-12-10 12:00:40", "202.46.50.132", "37");
INSERT INTO `wp_gf_form_view` VALUES("44793", "3", "2016-12-10 12:00:40", "202.46.50.132", "335");
INSERT INTO `wp_gf_form_view` VALUES("44794", "11", "2016-12-10 12:37:07", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("44795", "2", "2016-12-10 12:38:13", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("44796", "10", "2016-12-10 13:16:39", "202.46.51.110", "15");
INSERT INTO `wp_gf_form_view` VALUES("44797", "3", "2016-12-10 13:16:39", "202.46.51.110", "109");
INSERT INTO `wp_gf_form_view` VALUES("44798", "13", "2016-12-10 13:40:35", "46.118.230.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("44799", "13", "2016-12-10 14:12:52", "46.118.118.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("44800", "10", "2016-12-10 14:12:52", "46.118.118.15", "14");
INSERT INTO `wp_gf_form_view` VALUES("44801", "3", "2016-12-10 14:12:52", "46.118.118.15", "129");
INSERT INTO `wp_gf_form_view` VALUES("44802", "10", "2016-12-10 15:07:18", "184.66.245.16", "7");
INSERT INTO `wp_gf_form_view` VALUES("44803", "3", "2016-12-10 15:07:18", "184.66.245.16", "63");
INSERT INTO `wp_gf_form_view` VALUES("44804", "13", "2016-12-10 15:52:47", "178.137.90.14", "3");
INSERT INTO `wp_gf_form_view` VALUES("44805", "10", "2016-12-10 16:04:10", "100.43.91.1", "7");
INSERT INTO `wp_gf_form_view` VALUES("44806", "3", "2016-12-10 16:04:10", "100.43.91.1", "67");
INSERT INTO `wp_gf_form_view` VALUES("44807", "3", "2016-12-10 17:09:51", "68.180.229.56", "60");
INSERT INTO `wp_gf_form_view` VALUES("44808", "13", "2016-12-10 17:10:20", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("44809", "13", "2016-12-10 17:10:20", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44810", "10", "2016-12-10 17:10:20", "46.118.154.190", "5");
INSERT INTO `wp_gf_form_view` VALUES("44811", "10", "2016-12-10 17:10:20", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44812", "8", "2016-12-10 18:15:31", "202.46.53.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("44813", "10", "2016-12-10 18:15:33", "202.46.53.203", "8");
INSERT INTO `wp_gf_form_view` VALUES("44814", "3", "2016-12-10 18:15:33", "202.46.53.203", "72");
INSERT INTO `wp_gf_form_view` VALUES("44815", "14", "2016-12-10 18:18:51", "190.119.255.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("44816", "3", "2016-12-10 19:02:12", "46.229.168.71", "132");
INSERT INTO `wp_gf_form_view` VALUES("44817", "10", "2016-12-10 19:02:14", "46.229.168.71", "15");
INSERT INTO `wp_gf_form_view` VALUES("44818", "11", "2016-12-10 20:15:12", "46.229.168.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("44819", "10", "2016-12-10 20:15:13", "46.229.168.72", "11");
INSERT INTO `wp_gf_form_view` VALUES("44820", "3", "2016-12-10 20:15:13", "46.229.168.72", "99");
INSERT INTO `wp_gf_form_view` VALUES("44821", "10", "2016-12-10 21:59:45", "176.9.20.239", "2");
INSERT INTO `wp_gf_form_view` VALUES("44822", "3", "2016-12-10 21:59:47", "176.9.20.239", "18");
INSERT INTO `wp_gf_form_view` VALUES("44823", "10", "2016-12-10 22:17:05", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("44824", "3", "2016-12-10 22:17:06", "157.55.39.121", "9");
INSERT INTO `wp_gf_form_view` VALUES("44825", "10", "2016-12-10 23:08:09", "163.172.66.127", "8");
INSERT INTO `wp_gf_form_view` VALUES("44826", "3", "2016-12-10 23:08:15", "163.172.66.127", "54");
INSERT INTO `wp_gf_form_view` VALUES("44827", "13", "2016-12-10 23:16:52", "178.137.92.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("44828", "3", "2016-12-11 00:07:36", "77.75.77.119", "31");
INSERT INTO `wp_gf_form_view` VALUES("44829", "10", "2016-12-11 00:07:36", "77.75.77.119", "3");
INSERT INTO `wp_gf_form_view` VALUES("44830", "3", "2016-12-11 01:03:50", "212.129.61.241", "131");
INSERT INTO `wp_gf_form_view` VALUES("44831", "3", "2016-12-11 01:03:50", "212.129.61.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("44832", "13", "2016-12-11 01:21:13", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44833", "3", "2016-12-11 02:06:50", "77.75.76.166", "91");
INSERT INTO `wp_gf_form_view` VALUES("44834", "3", "2016-12-11 03:02:35", "66.249.79.144", "91");
INSERT INTO `wp_gf_form_view` VALUES("44835", "12", "2016-12-11 03:56:47", "207.46.13.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("44836", "3", "2016-12-11 04:43:53", "207.46.13.178", "334");
INSERT INTO `wp_gf_form_view` VALUES("44837", "2", "2016-12-11 04:49:20", "207.46.13.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("44838", "11", "2016-12-11 04:54:00", "207.46.13.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("44839", "14", "2016-12-11 06:23:48", "5.34.244.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("44840", "3", "2016-12-11 06:23:50", "5.34.244.51", "10");
INSERT INTO `wp_gf_form_view` VALUES("44841", "3", "2016-12-11 07:02:40", "157.55.39.85", "40");
INSERT INTO `wp_gf_form_view` VALUES("44842", "3", "2016-12-11 08:20:09", "207.46.13.113", "21");
INSERT INTO `wp_gf_form_view` VALUES("44843", "10", "2016-12-11 08:51:33", "157.55.39.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("44844", "3", "2016-12-11 09:15:57", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("44845", "3", "2016-12-11 10:04:44", "80.82.65.82", "178");
INSERT INTO `wp_gf_form_view` VALUES("44846", "3", "2016-12-11 10:04:44", "80.82.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("44847", "3", "2016-12-11 10:04:44", "80.82.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("44848", "11", "2016-12-11 10:04:46", "80.82.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("44849", "2", "2016-12-11 10:04:48", "80.82.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("44850", "13", "2016-12-11 10:12:53", "178.137.90.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("44851", "13", "2016-12-11 10:12:53", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44852", "13", "2016-12-11 10:12:53", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44853", "13", "2016-12-11 10:12:53", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44854", "13", "2016-12-11 10:12:53", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44855", "13", "2016-12-11 10:12:53", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44856", "3", "2016-12-11 11:08:55", "199.21.99.202", "116");
INSERT INTO `wp_gf_form_view` VALUES("44857", "13", "2016-12-11 11:16:29", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44858", "3", "2016-12-11 12:27:52", "66.249.79.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("44859", "3", "2016-12-11 13:15:44", "198.241.46.169", "40");
INSERT INTO `wp_gf_form_view` VALUES("44860", "13", "2016-12-11 13:28:08", "5.248.196.220", "3");
INSERT INTO `wp_gf_form_view` VALUES("44861", "3", "2016-12-11 14:21:16", "66.249.79.140", "21");
INSERT INTO `wp_gf_form_view` VALUES("44862", "3", "2016-12-11 15:17:16", "163.172.66.22", "51");
INSERT INTO `wp_gf_form_view` VALUES("44863", "14", "2016-12-11 15:57:53", "36.250.174.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("44864", "3", "2016-12-11 16:52:41", "68.180.228.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("44865", "3", "2016-12-11 17:48:13", "104.251.219.86", "10");
INSERT INTO `wp_gf_form_view` VALUES("44866", "3", "2016-12-11 18:17:41", "68.180.228.44", "81");
INSERT INTO `wp_gf_form_view` VALUES("44867", "13", "2016-12-11 18:20:03", "178.137.92.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("44868", "3", "2016-12-11 19:03:56", "120.52.73.98", "43");
INSERT INTO `wp_gf_form_view` VALUES("44869", "5", "2016-12-11 19:11:12", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("44870", "3", "2016-12-11 20:27:59", "68.180.228.44", "11");
INSERT INTO `wp_gf_form_view` VALUES("44871", "3", "2016-12-11 21:13:40", "68.180.228.44", "60");
INSERT INTO `wp_gf_form_view` VALUES("44872", "13", "2016-12-11 21:29:58", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("44873", "3", "2016-12-11 22:36:23", "199.21.99.202", "40");
INSERT INTO `wp_gf_form_view` VALUES("44874", "11", "2016-12-11 22:38:22", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("44875", "13", "2016-12-12 00:18:24", "46.118.118.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("44876", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44877", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44878", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44879", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44880", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44881", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44882", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44883", "3", "2016-12-12 00:18:26", "46.118.118.15", "102");
INSERT INTO `wp_gf_form_view` VALUES("44884", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44885", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44886", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44887", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44888", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44889", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44890", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44891", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44892", "3", "2016-12-12 01:18:04", "70.165.29.11", "351");
INSERT INTO `wp_gf_form_view` VALUES("44893", "11", "2016-12-12 01:18:18", "70.165.29.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("44894", "2", "2016-12-12 01:19:51", "70.165.29.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("44895", "3", "2016-12-12 02:03:18", "108.59.8.80", "30");
INSERT INTO `wp_gf_form_view` VALUES("44896", "3", "2016-12-12 03:14:45", "66.249.79.144", "60");
INSERT INTO `wp_gf_form_view` VALUES("44897", "13", "2016-12-12 03:46:04", "178.137.92.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("44898", "3", "2016-12-12 04:41:36", "157.55.39.134", "50");
INSERT INTO `wp_gf_form_view` VALUES("44899", "3", "2016-12-12 05:08:38", "184.66.232.102", "90");
INSERT INTO `wp_gf_form_view` VALUES("44900", "13", "2016-12-12 06:12:08", "46.118.118.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("44901", "3", "2016-12-12 06:12:09", "46.118.118.15", "40");
INSERT INTO `wp_gf_form_view` VALUES("44902", "3", "2016-12-12 07:05:57", "163.172.65.189", "112");
INSERT INTO `wp_gf_form_view` VALUES("44903", "13", "2016-12-12 07:32:43", "5.248.196.220", "5");
INSERT INTO `wp_gf_form_view` VALUES("44904", "13", "2016-12-12 07:32:43", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("44905", "3", "2016-12-12 08:30:45", "202.46.49.145", "10");
INSERT INTO `wp_gf_form_view` VALUES("44906", "3", "2016-12-12 09:14:34", "68.180.228.44", "32");
INSERT INTO `wp_gf_form_view` VALUES("44907", "13", "2016-12-12 10:09:25", "46.118.154.190", "4");
INSERT INTO `wp_gf_form_view` VALUES("44908", "13", "2016-12-12 10:09:25", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44909", "13", "2016-12-12 10:09:25", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44910", "3", "2016-12-12 10:09:28", "46.118.154.190", "58");
INSERT INTO `wp_gf_form_view` VALUES("44911", "3", "2016-12-12 10:09:28", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44912", "3", "2016-12-12 10:09:28", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44913", "3", "2016-12-12 11:07:59", "207.46.13.152", "41");
INSERT INTO `wp_gf_form_view` VALUES("44914", "3", "2016-12-12 12:30:38", "199.21.99.202", "60");
INSERT INTO `wp_gf_form_view` VALUES("44915", "3", "2016-12-12 13:12:57", "66.249.79.148", "43");
INSERT INTO `wp_gf_form_view` VALUES("44916", "3", "2016-12-12 15:28:54", "199.21.99.202", "11");
INSERT INTO `wp_gf_form_view` VALUES("44917", "3", "2016-12-12 16:27:17", "202.46.58.183", "40");
INSERT INTO `wp_gf_form_view` VALUES("44918", "3", "2016-12-12 17:02:35", "163.172.66.5", "60");
INSERT INTO `wp_gf_form_view` VALUES("44919", "13", "2016-12-12 17:38:04", "178.137.92.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("44920", "13", "2016-12-12 17:38:04", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44921", "3", "2016-12-12 18:14:26", "77.75.77.32", "90");
INSERT INTO `wp_gf_form_view` VALUES("44922", "13", "2016-12-12 18:19:49", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("44923", "3", "2016-12-12 19:01:05", "77.75.79.54", "1461");
INSERT INTO `wp_gf_form_view` VALUES("44924", "10", "2016-12-12 19:02:37", "40.77.167.93", "24");
INSERT INTO `wp_gf_form_view` VALUES("44925", "9", "2016-12-12 19:02:40", "40.77.167.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("44926", "14", "2016-12-12 19:03:15", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("44927", "8", "2016-12-12 19:03:22", "40.77.167.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("44928", "11", "2016-12-12 19:03:33", "40.77.167.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("44929", "13", "2016-12-12 19:03:53", "40.77.167.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("44930", "2", "2016-12-12 19:27:07", "75.149.202.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("44931", "3", "2016-12-12 20:10:14", "66.249.84.202", "263");
INSERT INTO `wp_gf_form_view` VALUES("44932", "11", "2016-12-12 20:45:22", "138.197.47.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("44933", "2", "2016-12-12 20:45:25", "138.197.47.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("44934", "3", "2016-12-12 21:12:07", "77.75.79.72", "24");
INSERT INTO `wp_gf_form_view` VALUES("44935", "3", "2016-12-12 22:02:09", "77.75.76.171", "41");
INSERT INTO `wp_gf_form_view` VALUES("44936", "3", "2016-12-12 23:19:58", "68.180.228.44", "80");
INSERT INTO `wp_gf_form_view` VALUES("44937", "3", "2016-12-13 00:40:40", "31.184.194.91", "10");
INSERT INTO `wp_gf_form_view` VALUES("44938", "3", "2016-12-13 01:49:15", "77.75.76.167", "10");
INSERT INTO `wp_gf_form_view` VALUES("44939", "3", "2016-12-13 02:05:05", "68.180.228.44", "322");
INSERT INTO `wp_gf_form_view` VALUES("44940", "11", "2016-12-13 02:11:32", "50.163.68.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44941", "2", "2016-12-13 02:14:01", "50.163.68.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44942", "13", "2016-12-13 03:58:05", "178.137.92.36", "8");
INSERT INTO `wp_gf_form_view` VALUES("44943", "3", "2016-12-13 03:58:08", "178.137.90.14", "96");
INSERT INTO `wp_gf_form_view` VALUES("44944", "3", "2016-12-13 03:58:08", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44945", "3", "2016-12-13 03:58:08", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44946", "3", "2016-12-13 03:58:08", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("44947", "3", "2016-12-13 03:58:08", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("44948", "3", "2016-12-13 04:07:19", "68.180.228.44", "52");
INSERT INTO `wp_gf_form_view` VALUES("44949", "3", "2016-12-13 05:02:50", "202.46.53.116", "50");
INSERT INTO `wp_gf_form_view` VALUES("44950", "3", "2016-12-13 06:05:59", "163.172.66.168", "136");
INSERT INTO `wp_gf_form_view` VALUES("44951", "5", "2016-12-13 06:13:20", "77.75.76.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("44952", "14", "2016-12-13 06:41:16", "94.249.160.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("44953", "3", "2016-12-13 07:57:42", "163.172.66.8", "10");
INSERT INTO `wp_gf_form_view` VALUES("44954", "3", "2016-12-13 08:01:13", "77.75.79.11", "71");
INSERT INTO `wp_gf_form_view` VALUES("44955", "8", "2016-12-13 08:15:33", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("44956", "3", "2016-12-13 09:17:47", "202.46.55.86", "137");
INSERT INTO `wp_gf_form_view` VALUES("44957", "14", "2016-12-13 09:32:09", "75.157.131.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("44958", "12", "2016-12-13 10:03:13", "163.172.65.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("44959", "3", "2016-12-13 10:03:13", "163.172.65.18", "20");
INSERT INTO `wp_gf_form_view` VALUES("44960", "11", "2016-12-13 10:28:52", "77.75.78.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("44961", "3", "2016-12-13 11:10:54", "83.39.247.112", "91");
INSERT INTO `wp_gf_form_view` VALUES("44962", "13", "2016-12-13 11:19:39", "178.137.92.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("44963", "3", "2016-12-13 12:07:55", "163.172.65.111", "30");
INSERT INTO `wp_gf_form_view` VALUES("44964", "3", "2016-12-13 13:37:17", "68.180.228.44", "162");
INSERT INTO `wp_gf_form_view` VALUES("44965", "13", "2016-12-13 13:42:04", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("44966", "13", "2016-12-13 13:42:04", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("44967", "14", "2016-12-13 13:45:38", "24.68.158.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("44968", "3", "2016-12-13 14:12:09", "202.46.48.11", "354");
INSERT INTO `wp_gf_form_view` VALUES("44969", "11", "2016-12-13 14:21:00", "74.208.88.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("44970", "2", "2016-12-13 14:21:48", "74.208.88.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("44971", "3", "2016-12-13 15:14:11", "96.50.18.191", "76");
INSERT INTO `wp_gf_form_view` VALUES("44972", "12", "2016-12-13 15:39:18", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("44973", "3", "2016-12-13 16:10:19", "66.249.79.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("44974", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44975", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44976", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44977", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44978", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44979", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44980", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44981", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44982", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44983", "3", "2016-12-13 17:07:37", "46.118.118.15", "152");
INSERT INTO `wp_gf_form_view` VALUES("44984", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44985", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44986", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44987", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44988", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44989", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44990", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44991", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("44992", "14", "2016-12-13 17:45:27", "68.180.228.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("44993", "14", "2016-12-13 17:45:27", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("44994", "10", "2016-12-13 17:55:03", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("44995", "3", "2016-12-13 18:00:50", "163.172.64.185", "171");
INSERT INTO `wp_gf_form_view` VALUES("44996", "3", "2016-12-13 19:00:27", "205.233.121.29", "432");
INSERT INTO `wp_gf_form_view` VALUES("44997", "11", "2016-12-13 19:56:46", "47.145.172.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44998", "2", "2016-12-13 19:57:38", "47.145.172.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("44999", "3", "2016-12-13 20:09:37", "96.54.195.123", "163");
INSERT INTO `wp_gf_form_view` VALUES("45000", "9", "2016-12-13 20:34:09", "163.172.66.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("45001", "14", "2016-12-13 20:39:02", "155.94.141.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("45002", "3", "2016-12-13 21:01:04", "205.233.121.29", "91");
INSERT INTO `wp_gf_form_view` VALUES("45003", "13", "2016-12-13 21:35:52", "178.137.92.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("45004", "10", "2016-12-13 21:42:19", "163.172.64.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("45005", "3", "2016-12-13 22:00:45", "70.66.179.52", "130");
INSERT INTO `wp_gf_form_view` VALUES("45006", "3", "2016-12-13 23:14:29", "163.172.65.15", "121");
INSERT INTO `wp_gf_form_view` VALUES("45007", "13", "2016-12-13 23:37:09", "46.118.118.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("45008", "14", "2016-12-13 23:53:32", "81.201.58.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("45009", "3", "2016-12-14 00:09:00", "163.172.65.208", "100");
INSERT INTO `wp_gf_form_view` VALUES("45010", "3", "2016-12-14 01:12:18", "96.50.0.55", "30");
INSERT INTO `wp_gf_form_view` VALUES("45011", "3", "2016-12-14 02:08:15", "68.180.228.44", "60");
INSERT INTO `wp_gf_form_view` VALUES("45012", "13", "2016-12-14 02:24:55", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45013", "3", "2016-12-14 04:03:42", "157.55.39.170", "30");
INSERT INTO `wp_gf_form_view` VALUES("45014", "3", "2016-12-14 05:36:43", "74.208.156.122", "311");
INSERT INTO `wp_gf_form_view` VALUES("45015", "11", "2016-12-14 05:36:46", "74.208.156.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("45016", "2", "2016-12-14 05:37:35", "74.208.156.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("45017", "3", "2016-12-14 06:25:51", "184.66.245.16", "20");
INSERT INTO `wp_gf_form_view` VALUES("45018", "3", "2016-12-14 07:24:56", "199.21.99.202", "20");
INSERT INTO `wp_gf_form_view` VALUES("45019", "3", "2016-12-14 08:32:17", "202.46.57.12", "10");
INSERT INTO `wp_gf_form_view` VALUES("45020", "13", "2016-12-14 09:20:43", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45021", "3", "2016-12-14 09:20:44", "46.118.154.190", "30");
INSERT INTO `wp_gf_form_view` VALUES("45022", "13", "2016-12-14 10:25:26", "5.248.196.220", "3");
INSERT INTO `wp_gf_form_view` VALUES("45023", "13", "2016-12-14 10:25:26", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45024", "13", "2016-12-14 10:25:26", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45025", "13", "2016-12-14 10:25:26", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45026", "3", "2016-12-14 10:25:29", "5.248.196.220", "55");
INSERT INTO `wp_gf_form_view` VALUES("45027", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45028", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45029", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45030", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45031", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45032", "13", "2016-12-14 11:09:27", "178.137.92.36", "8");
INSERT INTO `wp_gf_form_view` VALUES("45033", "13", "2016-12-14 11:09:27", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("45034", "3", "2016-12-14 11:09:28", "178.137.92.36", "260");
INSERT INTO `wp_gf_form_view` VALUES("45035", "3", "2016-12-14 11:09:28", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("45036", "11", "2016-12-14 11:41:10", "52.184.165.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("45037", "2", "2016-12-14 11:41:10", "52.184.165.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("45038", "3", "2016-12-14 12:25:16", "68.180.228.44", "32");
INSERT INTO `wp_gf_form_view` VALUES("45039", "3", "2016-12-14 13:06:07", "64.180.188.206", "61");
INSERT INTO `wp_gf_form_view` VALUES("45040", "3", "2016-12-14 14:06:50", "202.46.48.137", "21");
INSERT INTO `wp_gf_form_view` VALUES("45041", "10", "2016-12-14 14:10:57", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45042", "3", "2016-12-14 15:32:12", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("45043", "10", "2016-12-14 16:01:58", "162.210.196.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("45044", "3", "2016-12-14 16:01:58", "162.210.196.98", "30");
INSERT INTO `wp_gf_form_view` VALUES("45045", "3", "2016-12-14 17:04:56", "81.37.113.248", "341");
INSERT INTO `wp_gf_form_view` VALUES("45046", "11", "2016-12-14 17:05:15", "81.37.113.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("45047", "2", "2016-12-14 17:08:47", "81.37.113.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("45048", "3", "2016-12-14 18:02:43", "207.194.133.9", "50");
INSERT INTO `wp_gf_form_view` VALUES("45049", "3", "2016-12-14 19:02:16", "68.180.228.44", "83");
INSERT INTO `wp_gf_form_view` VALUES("45050", "3", "2016-12-14 20:12:09", "68.180.228.44", "352");
INSERT INTO `wp_gf_form_view` VALUES("45051", "11", "2016-12-14 20:34:59", "79.116.26.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("45052", "2", "2016-12-14 20:36:05", "79.116.26.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("45053", "3", "2016-12-14 21:04:14", "207.194.133.9", "61");
INSERT INTO `wp_gf_form_view` VALUES("45054", "13", "2016-12-14 22:36:29", "178.137.92.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("45055", "13", "2016-12-14 22:36:29", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("45056", "3", "2016-12-14 22:36:32", "178.137.92.36", "41");
INSERT INTO `wp_gf_form_view` VALUES("45057", "3", "2016-12-14 22:36:32", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("45058", "3", "2016-12-14 22:36:32", "178.137.92.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("45059", "3", "2016-12-14 23:11:40", "67.78.163.190", "411");
INSERT INTO `wp_gf_form_view` VALUES("45060", "11", "2016-12-14 23:12:01", "67.78.163.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45061", "2", "2016-12-14 23:17:48", "67.78.163.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45062", "14", "2016-12-14 23:25:37", "155.94.141.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("45063", "3", "2016-12-15 00:00:02", "70.66.179.52", "80");
INSERT INTO `wp_gf_form_view` VALUES("45064", "10", "2016-12-15 00:12:07", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45065", "3", "2016-12-15 01:14:08", "68.180.228.44", "31");
INSERT INTO `wp_gf_form_view` VALUES("45066", "3", "2016-12-15 02:06:53", "216.126.45.8", "31");
INSERT INTO `wp_gf_form_view` VALUES("45067", "3", "2016-12-15 03:36:44", "96.50.1.183", "40");
INSERT INTO `wp_gf_form_view` VALUES("45068", "10", "2016-12-15 03:38:59", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45069", "3", "2016-12-15 05:01:05", "157.55.39.104", "329");
INSERT INTO `wp_gf_form_view` VALUES("45070", "10", "2016-12-15 05:01:19", "157.55.39.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("45071", "6", "2016-12-15 05:01:45", "207.46.13.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("45072", "5", "2016-12-15 05:01:54", "207.46.13.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("45073", "14", "2016-12-15 05:22:23", "191.96.135.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("45074", "3", "2016-12-15 06:15:47", "68.180.228.44", "190");
INSERT INTO `wp_gf_form_view` VALUES("45075", "13", "2016-12-15 06:24:57", "178.137.90.14", "8");
INSERT INTO `wp_gf_form_view` VALUES("45076", "13", "2016-12-15 06:24:57", "178.137.90.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("45077", "14", "2016-12-15 06:28:43", "24.108.212.111", "3");
INSERT INTO `wp_gf_form_view` VALUES("45078", "3", "2016-12-15 07:51:09", "173.252.74.100", "40");
INSERT INTO `wp_gf_form_view` VALUES("45079", "3", "2016-12-15 07:51:09", "24.68.37.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("45080", "3", "2016-12-15 08:13:13", "207.46.13.151", "529");
INSERT INTO `wp_gf_form_view` VALUES("45081", "10", "2016-12-15 08:13:24", "207.46.13.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("45082", "9", "2016-12-15 08:13:28", "207.46.13.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("45083", "8", "2016-12-15 08:49:59", "207.46.13.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("45084", "7", "2016-12-15 08:50:19", "207.46.13.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("45085", "8", "2016-12-15 09:14:37", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("45086", "3", "2016-12-15 09:14:37", "66.249.79.144", "41");
INSERT INTO `wp_gf_form_view` VALUES("45087", "3", "2016-12-15 10:06:45", "77.75.78.169", "59");
INSERT INTO `wp_gf_form_view` VALUES("45088", "3", "2016-12-15 11:03:44", "202.46.57.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("45089", "13", "2016-12-15 12:25:35", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("45090", "13", "2016-12-15 12:25:35", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45091", "3", "2016-12-15 12:25:38", "46.118.154.190", "28");
INSERT INTO `wp_gf_form_view` VALUES("45092", "3", "2016-12-15 12:25:38", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45093", "3", "2016-12-15 12:25:38", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45094", "13", "2016-12-15 13:23:15", "178.137.18.127", "5");
INSERT INTO `wp_gf_form_view` VALUES("45095", "13", "2016-12-15 13:23:15", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45096", "3", "2016-12-15 13:23:16", "178.137.18.127", "57");
INSERT INTO `wp_gf_form_view` VALUES("45097", "3", "2016-12-15 13:23:16", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45098", "3", "2016-12-15 13:23:16", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45099", "3", "2016-12-15 13:23:16", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45100", "13", "2016-12-15 14:06:01", "46.119.116.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("45101", "3", "2016-12-15 14:06:02", "46.119.116.116", "372");
INSERT INTO `wp_gf_form_view` VALUES("45102", "3", "2016-12-15 14:06:02", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45103", "11", "2016-12-15 14:11:49", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45104", "2", "2016-12-15 14:13:37", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45105", "3", "2016-12-15 15:50:50", "202.46.50.125", "11");
INSERT INTO `wp_gf_form_view` VALUES("45106", "13", "2016-12-15 16:13:06", "178.137.93.117", "6");
INSERT INTO `wp_gf_form_view` VALUES("45107", "3", "2016-12-15 16:13:06", "178.137.93.117", "60");
INSERT INTO `wp_gf_form_view` VALUES("45108", "3", "2016-12-15 18:19:23", "202.46.56.182", "62");
INSERT INTO `wp_gf_form_view` VALUES("45109", "3", "2016-12-15 19:59:54", "202.46.55.65", "11");
INSERT INTO `wp_gf_form_view` VALUES("45110", "3", "2016-12-15 20:33:20", "202.46.49.194", "10");
INSERT INTO `wp_gf_form_view` VALUES("45111", "10", "2016-12-15 21:03:31", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45112", "3", "2016-12-15 21:40:00", "51.254.143.240", "51");
INSERT INTO `wp_gf_form_view` VALUES("45113", "3", "2016-12-15 22:06:03", "68.180.228.44", "70");
INSERT INTO `wp_gf_form_view` VALUES("45114", "13", "2016-12-15 22:18:15", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("45115", "3", "2016-12-15 23:20:29", "207.194.133.9", "90");
INSERT INTO `wp_gf_form_view` VALUES("45116", "3", "2016-12-16 00:11:36", "176.120.119.241", "31");
INSERT INTO `wp_gf_form_view` VALUES("45117", "10", "2016-12-16 00:48:38", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45118", "3", "2016-12-16 01:13:46", "207.46.13.151", "10");
INSERT INTO `wp_gf_form_view` VALUES("45119", "3", "2016-12-16 02:33:47", "24.68.17.97", "48");
INSERT INTO `wp_gf_form_view` VALUES("45120", "10", "2016-12-16 03:19:55", "202.46.48.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("45121", "3", "2016-12-16 03:19:56", "202.46.48.148", "222");
INSERT INTO `wp_gf_form_view` VALUES("45122", "11", "2016-12-16 03:44:27", "45.55.141.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("45123", "2", "2016-12-16 03:44:28", "45.55.141.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("45124", "3", "2016-12-16 04:18:51", "24.68.137.145", "40");
INSERT INTO `wp_gf_form_view` VALUES("45125", "13", "2016-12-16 05:02:34", "46.119.116.116", "9");
INSERT INTO `wp_gf_form_view` VALUES("45126", "3", "2016-12-16 05:02:35", "46.119.116.116", "110");
INSERT INTO `wp_gf_form_view` VALUES("45127", "3", "2016-12-16 06:06:52", "66.102.6.93", "31");
INSERT INTO `wp_gf_form_view` VALUES("45128", "2", "2016-12-16 06:46:10", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45129", "3", "2016-12-16 07:28:13", "68.180.228.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("45130", "3", "2016-12-16 08:33:18", "198.46.199.160", "42");
INSERT INTO `wp_gf_form_view` VALUES("45131", "13", "2016-12-16 09:06:26", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("45132", "13", "2016-12-16 09:06:26", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45133", "3", "2016-12-16 09:06:26", "46.118.154.190", "31");
INSERT INTO `wp_gf_form_view` VALUES("45134", "3", "2016-12-16 09:06:26", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45135", "3", "2016-12-16 10:07:59", "40.77.167.2", "42");
INSERT INTO `wp_gf_form_view` VALUES("45136", "3", "2016-12-16 12:20:13", "207.46.13.151", "11");
INSERT INTO `wp_gf_form_view` VALUES("45137", "3", "2016-12-16 13:33:08", "220.181.108.100", "20");
INSERT INTO `wp_gf_form_view` VALUES("45138", "3", "2016-12-16 14:23:11", "207.46.13.151", "321");
INSERT INTO `wp_gf_form_view` VALUES("45139", "11", "2016-12-16 14:43:17", "70.35.199.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("45140", "2", "2016-12-16 14:44:01", "70.35.199.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("45141", "3", "2016-12-16 15:06:11", "108.179.33.140", "311");
INSERT INTO `wp_gf_form_view` VALUES("45142", "11", "2016-12-16 15:06:23", "108.179.33.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45143", "2", "2016-12-16 15:08:42", "108.179.33.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45144", "3", "2016-12-16 16:20:43", "68.180.228.44", "61");
INSERT INTO `wp_gf_form_view` VALUES("45145", "11", "2016-12-16 16:25:28", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45146", "7", "2016-12-16 16:41:26", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45147", "3", "2016-12-16 17:03:44", "40.77.167.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("45148", "3", "2016-12-16 18:12:08", "94.253.142.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("45149", "3", "2016-12-16 19:25:39", "163.172.66.3", "160");
INSERT INTO `wp_gf_form_view` VALUES("45150", "3", "2016-12-16 20:07:19", "163.172.65.181", "10");
INSERT INTO `wp_gf_form_view` VALUES("45151", "3", "2016-12-16 21:32:30", "40.77.167.15", "70");
INSERT INTO `wp_gf_form_view` VALUES("45152", "14", "2016-12-16 21:36:31", "23.80.153.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("45153", "10", "2016-12-16 21:56:07", "163.172.65.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("45154", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45155", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45156", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45157", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45158", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45159", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45160", "3", "2016-12-16 22:25:15", "46.119.116.116", "65");
INSERT INTO `wp_gf_form_view` VALUES("45161", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45162", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45163", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45164", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45165", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45166", "3", "2016-12-16 23:22:31", "96.50.107.46", "31");
INSERT INTO `wp_gf_form_view` VALUES("45167", "3", "2016-12-17 00:07:30", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("45168", "10", "2016-12-17 00:31:30", "163.172.65.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("45169", "3", "2016-12-17 01:07:17", "163.172.64.241", "42");
INSERT INTO `wp_gf_form_view` VALUES("45170", "3", "2016-12-17 02:05:35", "66.249.79.140", "23");
INSERT INTO `wp_gf_form_view` VALUES("45171", "3", "2016-12-17 03:26:03", "68.180.228.44", "31");
INSERT INTO `wp_gf_form_view` VALUES("45172", "10", "2016-12-17 03:47:27", "163.172.64.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("45173", "2", "2016-12-17 04:08:18", "163.172.64.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("45174", "3", "2016-12-17 04:08:19", "163.172.64.216", "81");
INSERT INTO `wp_gf_form_view` VALUES("45175", "13", "2016-12-17 04:12:33", "46.119.116.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("45176", "3", "2016-12-17 05:00:06", "40.77.167.38", "131");
INSERT INTO `wp_gf_form_view` VALUES("45177", "13", "2016-12-17 05:21:08", "178.137.18.127", "7");
INSERT INTO `wp_gf_form_view` VALUES("45178", "13", "2016-12-17 05:21:08", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45179", "13", "2016-12-17 05:21:08", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45180", "13", "2016-12-17 06:06:24", "178.137.93.117", "8");
INSERT INTO `wp_gf_form_view` VALUES("45181", "3", "2016-12-17 06:06:24", "178.137.93.117", "1796");
INSERT INTO `wp_gf_form_view` VALUES("45182", "14", "2016-12-17 06:45:38", "104.236.226.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("45183", "11", "2016-12-17 06:45:59", "104.236.226.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("45184", "3", "2016-12-17 07:00:14", "104.236.226.64", "3959");
INSERT INTO `wp_gf_form_view` VALUES("45185", "6", "2016-12-17 07:03:14", "104.236.226.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("45186", "9", "2016-12-17 07:11:47", "104.236.226.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("45187", "10", "2016-12-17 07:26:17", "104.236.226.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("45188", "2", "2016-12-17 07:52:31", "104.236.226.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("45189", "3", "2016-12-17 08:00:04", "104.236.226.64", "351");
INSERT INTO `wp_gf_form_view` VALUES("45190", "13", "2016-12-17 08:02:11", "104.236.226.64", "4");
INSERT INTO `wp_gf_form_view` VALUES("45191", "10", "2016-12-17 09:15:45", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("45192", "3", "2016-12-17 09:15:46", "46.229.168.71", "520");
INSERT INTO `wp_gf_form_view` VALUES("45193", "11", "2016-12-17 09:19:41", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("45194", "2", "2016-12-17 09:21:32", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("45195", "3", "2016-12-17 10:28:27", "68.180.228.44", "116");
INSERT INTO `wp_gf_form_view` VALUES("45196", "9", "2016-12-17 10:30:59", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45197", "3", "2016-12-17 11:06:58", "46.229.168.70", "134");
INSERT INTO `wp_gf_form_view` VALUES("45198", "10", "2016-12-17 11:25:43", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("45199", "3", "2016-12-17 12:07:03", "46.229.168.70", "94");
INSERT INTO `wp_gf_form_view` VALUES("45200", "10", "2016-12-17 12:17:28", "40.77.167.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("45201", "14", "2016-12-17 13:12:17", "202.46.51.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("45202", "3", "2016-12-17 13:12:18", "202.46.51.168", "73");
INSERT INTO `wp_gf_form_view` VALUES("45203", "3", "2016-12-17 14:12:17", "46.229.168.68", "1335");
INSERT INTO `wp_gf_form_view` VALUES("45204", "10", "2016-12-17 14:41:20", "207.46.13.151", "32");
INSERT INTO `wp_gf_form_view` VALUES("45205", "9", "2016-12-17 14:42:08", "207.46.13.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("45206", "13", "2016-12-17 14:42:30", "40.77.167.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("45207", "12", "2016-12-17 14:43:08", "40.77.167.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("45208", "11", "2016-12-17 14:43:26", "40.77.167.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("45209", "3", "2016-12-17 15:07:55", "202.46.51.197", "34");
INSERT INTO `wp_gf_form_view` VALUES("45210", "3", "2016-12-17 16:01:33", "66.102.6.93", "123");
INSERT INTO `wp_gf_form_view` VALUES("45211", "3", "2016-12-17 17:03:45", "66.249.79.144", "478");
INSERT INTO `wp_gf_form_view` VALUES("45212", "10", "2016-12-17 17:20:04", "46.229.168.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("45213", "11", "2016-12-17 17:23:37", "70.165.29.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("45214", "2", "2016-12-17 17:24:58", "70.165.29.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("45215", "13", "2016-12-17 17:56:07", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45216", "3", "2016-12-17 18:15:53", "46.229.168.67", "81");
INSERT INTO `wp_gf_form_view` VALUES("45217", "14", "2016-12-17 18:41:19", "60.53.130.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("45218", "3", "2016-12-17 19:06:21", "50.92.126.149", "200");
INSERT INTO `wp_gf_form_view` VALUES("45219", "3", "2016-12-17 20:11:33", "68.180.228.44", "130");
INSERT INTO `wp_gf_form_view` VALUES("45220", "13", "2016-12-17 20:25:04", "5.248.196.220", "4");
INSERT INTO `wp_gf_form_view` VALUES("45221", "13", "2016-12-17 20:25:04", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45222", "13", "2016-12-17 20:25:04", "5.248.196.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("45223", "3", "2016-12-17 21:06:05", "46.229.168.70", "235");
INSERT INTO `wp_gf_form_view` VALUES("45224", "13", "2016-12-17 21:20:16", "46.119.116.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("45225", "2", "2016-12-17 21:40:37", "46.229.168.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("45226", "3", "2016-12-17 22:08:55", "24.68.141.229", "93");
INSERT INTO `wp_gf_form_view` VALUES("45227", "3", "2016-12-17 23:00:10", "40.77.167.15", "51");
INSERT INTO `wp_gf_form_view` VALUES("45228", "3", "2016-12-18 00:09:16", "202.46.55.155", "52");
INSERT INTO `wp_gf_form_view` VALUES("45229", "13", "2016-12-18 00:36:51", "163.172.64.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("45230", "13", "2016-12-18 01:14:15", "46.118.154.190", "6");
INSERT INTO `wp_gf_form_view` VALUES("45231", "3", "2016-12-18 01:14:15", "46.118.154.190", "110");
INSERT INTO `wp_gf_form_view` VALUES("45232", "7", "2016-12-18 01:16:13", "202.46.56.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("45233", "14", "2016-12-18 01:17:05", "23.250.56.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("45234", "3", "2016-12-18 03:00:23", "50.92.126.149", "40");
INSERT INTO `wp_gf_form_view` VALUES("45235", "3", "2016-12-18 04:34:00", "98.249.103.86", "20");
INSERT INTO `wp_gf_form_view` VALUES("45236", "13", "2016-12-18 05:27:36", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45237", "13", "2016-12-18 05:27:36", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45238", "13", "2016-12-18 05:27:36", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45239", "3", "2016-12-18 05:27:40", "46.118.154.190", "38");
INSERT INTO `wp_gf_form_view` VALUES("45240", "3", "2016-12-18 05:27:40", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45241", "3", "2016-12-18 05:27:40", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45242", "3", "2016-12-18 06:38:13", "163.172.65.8", "30");
INSERT INTO `wp_gf_form_view` VALUES("45243", "10", "2016-12-18 06:42:06", "52.3.127.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("45244", "3", "2016-12-18 07:30:53", "52.91.146.199", "40");
INSERT INTO `wp_gf_form_view` VALUES("45245", "13", "2016-12-18 07:55:22", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("45246", "13", "2016-12-18 07:55:22", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45247", "14", "2016-12-18 09:41:45", "163.172.64.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("45248", "3", "2016-12-18 09:41:47", "163.172.64.243", "10");
INSERT INTO `wp_gf_form_view` VALUES("45249", "3", "2016-12-18 11:04:03", "68.180.228.44", "653");
INSERT INTO `wp_gf_form_view` VALUES("45250", "11", "2016-12-18 11:30:53", "185.144.83.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("45251", "2", "2016-12-18 11:31:53", "185.144.83.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("45252", "3", "2016-12-18 12:01:43", "40.77.167.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("45253", "3", "2016-12-18 13:38:43", "163.172.66.67", "30");
INSERT INTO `wp_gf_form_view` VALUES("45254", "10", "2016-12-18 13:50:54", "199.59.150.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("45255", "3", "2016-12-18 14:01:27", "40.77.167.15", "10");
INSERT INTO `wp_gf_form_view` VALUES("45256", "3", "2016-12-18 15:01:58", "202.46.54.161", "40");
INSERT INTO `wp_gf_form_view` VALUES("45257", "13", "2016-12-18 15:43:54", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45258", "3", "2016-12-18 16:19:32", "68.180.228.44", "362");
INSERT INTO `wp_gf_form_view` VALUES("45259", "11", "2016-12-18 16:31:40", "74.208.88.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("45260", "2", "2016-12-18 16:32:48", "74.208.88.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("45261", "3", "2016-12-18 18:18:37", "163.172.66.148", "71");
INSERT INTO `wp_gf_form_view` VALUES("45262", "3", "2016-12-18 19:52:04", "174.227.10.212", "53");
INSERT INTO `wp_gf_form_view` VALUES("45263", "3", "2016-12-18 19:52:04", "174.227.10.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("45264", "3", "2016-12-18 20:03:23", "24.68.36.249", "42");
INSERT INTO `wp_gf_form_view` VALUES("45265", "13", "2016-12-18 21:25:11", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45266", "13", "2016-12-18 21:25:11", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45267", "13", "2016-12-18 21:25:11", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45268", "3", "2016-12-18 21:25:18", "46.119.116.116", "28");
INSERT INTO `wp_gf_form_view` VALUES("45269", "3", "2016-12-18 21:25:18", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45270", "3", "2016-12-18 21:25:18", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45271", "3", "2016-12-18 23:13:01", "68.180.228.44", "82");
INSERT INTO `wp_gf_form_view` VALUES("45272", "13", "2016-12-19 00:22:25", "46.119.116.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("45273", "3", "2016-12-19 00:22:25", "46.119.116.116", "30");
INSERT INTO `wp_gf_form_view` VALUES("45274", "3", "2016-12-19 01:11:21", "163.172.66.55", "10");
INSERT INTO `wp_gf_form_view` VALUES("45275", "3", "2016-12-19 02:36:34", "70.67.46.196", "20");
INSERT INTO `wp_gf_form_view` VALUES("45276", "3", "2016-12-19 03:34:29", "68.180.228.44", "119");
INSERT INTO `wp_gf_form_view` VALUES("45277", "13", "2016-12-19 03:44:30", "178.137.93.117", "7");
INSERT INTO `wp_gf_form_view` VALUES("45278", "13", "2016-12-19 03:44:30", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45279", "13", "2016-12-19 03:44:30", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45280", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45281", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45282", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45283", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45284", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45285", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45286", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45287", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45288", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45289", "3", "2016-12-19 04:22:55", "178.137.18.127", "92");
INSERT INTO `wp_gf_form_view` VALUES("45290", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45291", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45292", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45293", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45294", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45295", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45296", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45297", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45298", "3", "2016-12-19 05:06:50", "50.252.229.141", "523");
INSERT INTO `wp_gf_form_view` VALUES("45299", "11", "2016-12-19 05:06:55", "50.252.229.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("45300", "2", "2016-12-19 05:08:28", "50.252.229.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("45301", "3", "2016-12-19 06:25:58", "144.76.30.236", "90");
INSERT INTO `wp_gf_form_view` VALUES("45302", "2", "2016-12-19 06:29:31", "220.181.108.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("45303", "13", "2016-12-19 06:48:29", "5.248.196.220", "3");
INSERT INTO `wp_gf_form_view` VALUES("45304", "13", "2016-12-19 07:15:44", "178.137.18.127", "4");
INSERT INTO `wp_gf_form_view` VALUES("45305", "13", "2016-12-19 07:15:44", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45306", "13", "2016-12-19 07:15:44", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45307", "3", "2016-12-19 07:15:47", "178.137.18.127", "58");
INSERT INTO `wp_gf_form_view` VALUES("45308", "3", "2016-12-19 07:15:47", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45309", "3", "2016-12-19 07:15:47", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45310", "3", "2016-12-19 09:40:01", "202.46.51.14", "21");
INSERT INTO `wp_gf_form_view` VALUES("45311", "3", "2016-12-19 10:13:33", "202.46.52.161", "30");
INSERT INTO `wp_gf_form_view` VALUES("45312", "3", "2016-12-19 11:02:14", "163.172.66.29", "31");
INSERT INTO `wp_gf_form_view` VALUES("45313", "3", "2016-12-19 12:23:41", "68.180.228.44", "32");
INSERT INTO `wp_gf_form_view` VALUES("45314", "3", "2016-12-19 13:02:34", "163.172.66.94", "50");
INSERT INTO `wp_gf_form_view` VALUES("45315", "3", "2016-12-19 14:13:34", "163.172.65.123", "60");
INSERT INTO `wp_gf_form_view` VALUES("45316", "13", "2016-12-19 14:28:51", "46.118.154.190", "4");
INSERT INTO `wp_gf_form_view` VALUES("45317", "13", "2016-12-19 15:00:18", "46.119.116.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("45318", "3", "2016-12-19 15:00:18", "46.119.116.116", "50");
INSERT INTO `wp_gf_form_view` VALUES("45319", "3", "2016-12-19 17:38:02", "202.46.54.195", "51");
INSERT INTO `wp_gf_form_view` VALUES("45320", "3", "2016-12-19 18:03:24", "70.67.56.125", "130");
INSERT INTO `wp_gf_form_view` VALUES("45321", "10", "2016-12-19 18:10:45", "163.172.65.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("45322", "14", "2016-12-19 18:20:47", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("45323", "3", "2016-12-19 19:11:21", "173.183.79.220", "130");
INSERT INTO `wp_gf_form_view` VALUES("45324", "10", "2016-12-19 19:39:17", "163.172.66.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("45325", "13", "2016-12-19 20:35:48", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("45326", "13", "2016-12-19 20:35:48", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45327", "3", "2016-12-19 20:35:51", "46.118.154.190", "58");
INSERT INTO `wp_gf_form_view` VALUES("45328", "3", "2016-12-19 20:35:51", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45329", "3", "2016-12-19 20:35:51", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45330", "14", "2016-12-19 20:49:46", "96.53.5.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("45331", "3", "2016-12-19 21:35:23", "184.67.160.26", "21");
INSERT INTO `wp_gf_form_view` VALUES("45332", "3", "2016-12-19 22:36:21", "163.172.66.134", "20");
INSERT INTO `wp_gf_form_view` VALUES("45333", "3", "2016-12-19 23:03:02", "66.249.79.144", "40");
INSERT INTO `wp_gf_form_view` VALUES("45334", "13", "2016-12-19 23:12:37", "178.137.93.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("45335", "13", "2016-12-19 23:12:37", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45336", "3", "2016-12-20 00:10:58", "202.46.49.157", "60");
INSERT INTO `wp_gf_form_view` VALUES("45337", "13", "2016-12-20 00:12:16", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("45338", "2", "2016-12-20 00:17:55", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45339", "11", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45340", "2", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45341", "3", "2016-12-20 01:08:41", "45.55.82.223", "202");
INSERT INTO `wp_gf_form_view` VALUES("45342", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45343", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45344", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45345", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45346", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45347", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45348", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45349", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45350", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45351", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("45352", "3", "2016-12-20 02:42:41", "68.180.228.44", "21");
INSERT INTO `wp_gf_form_view` VALUES("45353", "3", "2016-12-20 03:32:05", "202.46.54.210", "32");
INSERT INTO `wp_gf_form_view` VALUES("45354", "3", "2016-12-20 04:09:12", "40.77.167.44", "11");
INSERT INTO `wp_gf_form_view` VALUES("45355", "8", "2016-12-20 05:07:55", "163.172.66.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("45356", "3", "2016-12-20 05:07:55", "163.172.66.160", "20");
INSERT INTO `wp_gf_form_view` VALUES("45357", "3", "2016-12-20 06:43:12", "68.180.228.44", "40");
INSERT INTO `wp_gf_form_view` VALUES("45358", "3", "2016-12-20 07:24:29", "209.200.253.147", "60");
INSERT INTO `wp_gf_form_view` VALUES("45359", "14", "2016-12-20 07:35:16", "40.77.167.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45360", "13", "2016-12-20 07:56:26", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45361", "3", "2016-12-20 08:12:58", "163.172.66.150", "10");
INSERT INTO `wp_gf_form_view` VALUES("45362", "3", "2016-12-20 09:09:40", "68.180.228.44", "30");
INSERT INTO `wp_gf_form_view` VALUES("45363", "11", "2016-12-20 09:32:17", "163.172.66.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("45364", "2", "2016-12-20 10:36:14", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45365", "3", "2016-12-20 10:36:14", "46.119.116.116", "20");
INSERT INTO `wp_gf_form_view` VALUES("45366", "2", "2016-12-20 11:03:45", "178.137.18.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("45367", "3", "2016-12-20 11:03:45", "178.137.18.127", "20");
INSERT INTO `wp_gf_form_view` VALUES("45368", "3", "2016-12-20 13:31:56", "52.3.127.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("45369", "3", "2016-12-20 14:02:51", "68.180.228.44", "20");
INSERT INTO `wp_gf_form_view` VALUES("45370", "13", "2016-12-20 14:45:18", "202.46.54.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("45371", "3", "2016-12-20 15:52:48", "40.77.167.38", "10");
INSERT INTO `wp_gf_form_view` VALUES("45372", "3", "2016-12-20 16:27:05", "220.181.108.81", "50");
INSERT INTO `wp_gf_form_view` VALUES("45373", "8", "2016-12-20 16:45:23", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45374", "3", "2016-12-20 17:32:45", "202.46.50.13", "132");
INSERT INTO `wp_gf_form_view` VALUES("45375", "10", "2016-12-20 17:54:57", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("45376", "3", "2016-12-20 18:09:30", "163.172.65.123", "141");
INSERT INTO `wp_gf_form_view` VALUES("45377", "11", "2016-12-20 18:49:16", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("45378", "3", "2016-12-20 19:09:54", "107.170.92.161", "100");
INSERT INTO `wp_gf_form_view` VALUES("45379", "14", "2016-12-20 19:39:05", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("45380", "2", "2016-12-20 19:49:29", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45381", "3", "2016-12-20 20:01:22", "24.108.168.20", "113");
INSERT INTO `wp_gf_form_view` VALUES("45382", "2", "2016-12-20 20:35:15", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45383", "3", "2016-12-20 21:40:08", "163.172.65.216", "659");
INSERT INTO `wp_gf_form_view` VALUES("45384", "10", "2016-12-20 21:51:00", "207.46.13.151", "14");
INSERT INTO `wp_gf_form_view` VALUES("45385", "9", "2016-12-20 21:51:44", "207.46.13.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("45386", "13", "2016-12-20 21:52:21", "157.55.39.166", "2");
INSERT INTO `wp_gf_form_view` VALUES("45387", "3", "2016-12-20 23:11:09", "184.71.1.246", "70");
INSERT INTO `wp_gf_form_view` VALUES("45388", "9", "2016-12-20 23:11:13", "167.114.234.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("45389", "2", "2016-12-20 23:37:47", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45390", "11", "2016-12-20 23:57:07", "68.180.228.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45391", "3", "2016-12-21 00:05:54", "163.172.66.164", "127");
INSERT INTO `wp_gf_form_view` VALUES("45392", "3", "2016-12-21 01:00:00", "80.248.225.157", "713");
INSERT INTO `wp_gf_form_view` VALUES("45393", "2", "2016-12-21 01:01:59", "80.248.225.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("45394", "11", "2016-12-21 01:05:15", "80.248.225.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("45395", "14", "2016-12-21 01:05:45", "80.248.225.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("45396", "13", "2016-12-21 01:09:30", "80.248.225.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("45397", "2", "2016-12-21 02:23:21", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45398", "3", "2016-12-21 02:23:22", "46.119.116.116", "89");
INSERT INTO `wp_gf_form_view` VALUES("45399", "3", "2016-12-21 02:23:22", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45400", "12", "2016-12-21 02:36:16", "163.172.65.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("45401", "3", "2016-12-21 03:17:56", "68.180.228.105", "71");
INSERT INTO `wp_gf_form_view` VALUES("45402", "2", "2016-12-21 03:49:25", "178.137.18.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("45403", "2", "2016-12-21 03:49:25", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45404", "3", "2016-12-21 04:07:15", "202.46.58.91", "40");
INSERT INTO `wp_gf_form_view` VALUES("45405", "3", "2016-12-21 05:12:59", "163.172.66.100", "51");
INSERT INTO `wp_gf_form_view` VALUES("45406", "14", "2016-12-21 05:18:56", "24.108.194.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45407", "10", "2016-12-21 06:14:28", "46.229.168.68", "4");
INSERT INTO `wp_gf_form_view` VALUES("45408", "3", "2016-12-21 06:14:28", "46.229.168.68", "260");
INSERT INTO `wp_gf_form_view` VALUES("45409", "3", "2016-12-21 07:02:26", "40.77.167.44", "119");
INSERT INTO `wp_gf_form_view` VALUES("45410", "10", "2016-12-21 07:53:02", "213.239.205.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("45411", "2", "2016-12-21 08:07:26", "178.137.93.117", "21");
INSERT INTO `wp_gf_form_view` VALUES("45412", "3", "2016-12-21 08:07:26", "178.137.93.117", "323");
INSERT INTO `wp_gf_form_view` VALUES("45413", "3", "2016-12-21 08:07:26", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45414", "10", "2016-12-21 08:09:54", "46.229.168.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("45415", "10", "2016-12-21 09:07:03", "46.229.168.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("45416", "3", "2016-12-21 09:07:04", "46.229.168.72", "466");
INSERT INTO `wp_gf_form_view` VALUES("45417", "5", "2016-12-21 09:49:13", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("45418", "11", "2016-12-21 09:51:03", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("45419", "2", "2016-12-21 09:51:08", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("45420", "3", "2016-12-21 10:25:49", "46.229.168.71", "103");
INSERT INTO `wp_gf_form_view` VALUES("45421", "3", "2016-12-21 11:12:33", "66.249.79.140", "62");
INSERT INTO `wp_gf_form_view` VALUES("45422", "13", "2016-12-21 11:20:49", "163.172.65.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("45423", "10", "2016-12-21 11:20:49", "163.172.65.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("45424", "3", "2016-12-21 12:07:19", "157.55.39.117", "114");
INSERT INTO `wp_gf_form_view` VALUES("45425", "3", "2016-12-21 13:07:36", "46.229.168.68", "197");
INSERT INTO `wp_gf_form_view` VALUES("45426", "10", "2016-12-21 13:29:38", "46.229.168.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("45427", "3", "2016-12-21 14:00:04", "66.249.79.140", "70");
INSERT INTO `wp_gf_form_view` VALUES("45428", "3", "2016-12-21 15:13:12", "46.229.168.65", "159");
INSERT INTO `wp_gf_form_view` VALUES("45429", "3", "2016-12-21 16:15:06", "46.229.168.71", "103");
INSERT INTO `wp_gf_form_view` VALUES("45430", "3", "2016-12-21 17:01:47", "68.180.228.105", "165");
INSERT INTO `wp_gf_form_view` VALUES("45431", "2", "2016-12-21 17:33:27", "46.229.168.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("45432", "3", "2016-12-21 18:00:21", "24.108.24.101", "124");
INSERT INTO `wp_gf_form_view` VALUES("45433", "6", "2016-12-21 18:18:15", "202.46.48.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("45434", "3", "2016-12-21 19:01:42", "207.194.133.9", "371");
INSERT INTO `wp_gf_form_view` VALUES("45435", "11", "2016-12-21 19:48:07", "62.195.2.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("45436", "2", "2016-12-21 19:49:37", "62.195.2.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("45437", "6", "2016-12-21 19:56:13", "202.46.51.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("45438", "3", "2016-12-21 20:02:12", "142.231.110.50", "41");
INSERT INTO `wp_gf_form_view` VALUES("45439", "8", "2016-12-21 21:02:19", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45440", "3", "2016-12-21 21:02:19", "68.180.228.105", "40");
INSERT INTO `wp_gf_form_view` VALUES("45441", "2", "2016-12-21 22:18:50", "5.248.196.220", "3");
INSERT INTO `wp_gf_form_view` VALUES("45442", "3", "2016-12-21 22:18:50", "5.248.196.220", "30");
INSERT INTO `wp_gf_form_view` VALUES("45443", "3", "2016-12-21 23:54:14", "163.172.65.54", "10");
INSERT INTO `wp_gf_form_view` VALUES("45444", "3", "2016-12-22 00:24:55", "163.172.65.106", "11");
INSERT INTO `wp_gf_form_view` VALUES("45445", "3", "2016-12-22 01:23:17", "70.31.77.209", "51");
INSERT INTO `wp_gf_form_view` VALUES("45446", "12", "2016-12-22 01:28:07", "202.46.51.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("45447", "3", "2016-12-22 02:07:14", "163.172.66.78", "53");
INSERT INTO `wp_gf_form_view` VALUES("45448", "14", "2016-12-22 02:31:02", "190.52.72.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("45449", "3", "2016-12-22 03:03:52", "40.77.167.38", "31");
INSERT INTO `wp_gf_form_view` VALUES("45450", "13", "2016-12-22 03:32:41", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45451", "3", "2016-12-22 05:06:07", "68.180.228.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("45452", "3", "2016-12-22 06:42:43", "68.180.228.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("45453", "3", "2016-12-22 07:28:58", "52.91.170.190", "20");
INSERT INTO `wp_gf_form_view` VALUES("45454", "14", "2016-12-22 07:44:22", "223.25.99.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("45455", "3", "2016-12-22 08:05:39", "163.172.66.14", "62");
INSERT INTO `wp_gf_form_view` VALUES("45456", "2", "2016-12-22 09:29:08", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45457", "3", "2016-12-22 09:29:08", "46.119.116.116", "10");
INSERT INTO `wp_gf_form_view` VALUES("45458", "3", "2016-12-22 10:41:49", "68.180.228.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("45459", "3", "2016-12-22 11:04:47", "66.249.79.148", "30");
INSERT INTO `wp_gf_form_view` VALUES("45460", "2", "2016-12-22 12:07:48", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45461", "3", "2016-12-22 12:07:48", "178.137.18.127", "10");
INSERT INTO `wp_gf_form_view` VALUES("45462", "3", "2016-12-22 13:16:00", "68.180.228.105", "41");
INSERT INTO `wp_gf_form_view` VALUES("45463", "2", "2016-12-22 13:29:27", "5.248.196.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("45464", "3", "2016-12-22 14:19:46", "163.172.66.40", "21");
INSERT INTO `wp_gf_form_view` VALUES("45465", "3", "2016-12-22 15:02:01", "163.172.66.38", "20");
INSERT INTO `wp_gf_form_view` VALUES("45466", "10", "2016-12-22 15:36:34", "163.172.65.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("45467", "3", "2016-12-22 16:13:05", "163.172.65.31", "392");
INSERT INTO `wp_gf_form_view` VALUES("45468", "10", "2016-12-22 16:13:49", "163.172.66.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("45469", "11", "2016-12-22 16:24:49", "75.149.202.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45470", "2", "2016-12-22 16:25:53", "75.149.202.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45471", "3", "2016-12-22 17:01:36", "205.250.86.162", "60");
INSERT INTO `wp_gf_form_view` VALUES("45472", "3", "2016-12-22 18:07:11", "24.69.81.117", "100");
INSERT INTO `wp_gf_form_view` VALUES("45473", "10", "2016-12-22 18:44:34", "163.172.66.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("45474", "3", "2016-12-22 19:12:49", "66.249.79.144", "135");
INSERT INTO `wp_gf_form_view` VALUES("45475", "2", "2016-12-22 19:20:22", "46.119.116.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("45476", "3", "2016-12-22 20:00:01", "50.69.7.64", "60");
INSERT INTO `wp_gf_form_view` VALUES("45477", "14", "2016-12-22 20:02:24", "62.141.36.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("45478", "3", "2016-12-22 21:20:26", "132.156.2.2", "184");
INSERT INTO `wp_gf_form_view` VALUES("45479", "14", "2016-12-22 21:20:39", "132.156.2.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("45480", "10", "2016-12-22 21:40:58", "163.172.66.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("45481", "2", "2016-12-22 21:52:43", "178.137.18.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("45482", "5", "2016-12-22 21:59:47", "202.46.50.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("45483", "3", "2016-12-22 22:08:16", "207.194.133.9", "50");
INSERT INTO `wp_gf_form_view` VALUES("45484", "10", "2016-12-23 00:30:26", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45485", "3", "2016-12-23 00:30:31", "68.180.228.105", "40");
INSERT INTO `wp_gf_form_view` VALUES("45486", "2", "2016-12-23 00:36:29", "46.119.116.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("45487", "2", "2016-12-23 01:47:11", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45488", "2", "2016-12-23 01:47:11", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45489", "3", "2016-12-23 01:47:13", "46.119.116.116", "28");
INSERT INTO `wp_gf_form_view` VALUES("45490", "3", "2016-12-23 01:47:13", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45491", "3", "2016-12-23 01:47:13", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45492", "6", "2016-12-23 02:15:56", "163.172.65.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("45493", "3", "2016-12-23 02:15:56", "163.172.65.58", "31");
INSERT INTO `wp_gf_form_view` VALUES("45494", "2", "2016-12-23 03:54:35", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45495", "3", "2016-12-23 03:54:35", "68.180.228.105", "21");
INSERT INTO `wp_gf_form_view` VALUES("45496", "3", "2016-12-23 04:28:47", "77.75.76.165", "50");
INSERT INTO `wp_gf_form_view` VALUES("45497", "11", "2016-12-23 05:03:00", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("45498", "3", "2016-12-23 05:03:00", "136.243.36.94", "435");
INSERT INTO `wp_gf_form_view` VALUES("45499", "2", "2016-12-23 05:04:29", "136.243.36.94", "7");
INSERT INTO `wp_gf_form_view` VALUES("45500", "2", "2016-12-23 06:39:49", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45501", "3", "2016-12-23 06:39:50", "46.118.154.190", "50");
INSERT INTO `wp_gf_form_view` VALUES("45502", "14", "2016-12-23 06:48:43", "120.52.73.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("45503", "3", "2016-12-23 08:10:17", "68.180.228.105", "60");
INSERT INTO `wp_gf_form_view` VALUES("45504", "3", "2016-12-23 09:09:25", "202.46.49.138", "1106");
INSERT INTO `wp_gf_form_view` VALUES("45505", "10", "2016-12-23 09:47:31", "40.77.167.38", "25");
INSERT INTO `wp_gf_form_view` VALUES("45506", "12", "2016-12-23 09:47:34", "40.77.167.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("45507", "13", "2016-12-23 09:48:33", "157.55.39.16", "3");
INSERT INTO `wp_gf_form_view` VALUES("45508", "11", "2016-12-23 09:49:10", "40.77.167.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("45509", "2", "2016-12-23 09:58:37", "45.55.229.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("45510", "3", "2016-12-23 10:58:49", "202.46.51.80", "10");
INSERT INTO `wp_gf_form_view` VALUES("45511", "3", "2016-12-23 11:25:37", "80.78.250.103", "21");
INSERT INTO `wp_gf_form_view` VALUES("45512", "14", "2016-12-23 12:11:34", "158.222.8.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("45513", "3", "2016-12-23 12:11:36", "158.222.8.42", "42");
INSERT INTO `wp_gf_form_view` VALUES("45514", "2", "2016-12-23 13:01:07", "178.137.93.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("45515", "2", "2016-12-23 13:01:07", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45516", "2", "2016-12-23 13:01:07", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45517", "2", "2016-12-23 13:01:07", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45518", "3", "2016-12-23 13:01:08", "178.137.93.117", "57");
INSERT INTO `wp_gf_form_view` VALUES("45519", "3", "2016-12-23 13:01:08", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45520", "3", "2016-12-23 13:01:08", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45521", "3", "2016-12-23 13:01:08", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45522", "2", "2016-12-23 15:11:13", "178.137.93.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("45523", "2", "2016-12-23 15:11:13", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45524", "3", "2016-12-23 15:11:22", "178.137.93.117", "48");
INSERT INTO `wp_gf_form_view` VALUES("45525", "3", "2016-12-23 15:11:22", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45526", "3", "2016-12-23 15:11:22", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45527", "2", "2016-12-23 16:23:11", "46.118.154.190", "4");
INSERT INTO `wp_gf_form_view` VALUES("45528", "3", "2016-12-23 16:23:11", "46.118.154.190", "50");
INSERT INTO `wp_gf_form_view` VALUES("45529", "3", "2016-12-23 17:35:20", "66.102.6.95", "20");
INSERT INTO `wp_gf_form_view` VALUES("45530", "10", "2016-12-23 18:15:18", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("45531", "3", "2016-12-23 18:15:22", "66.249.79.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("45532", "3", "2016-12-23 20:07:39", "64.114.25.211", "40");
INSERT INTO `wp_gf_form_view` VALUES("45533", "2", "2016-12-23 21:08:43", "5.248.196.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("45534", "3", "2016-12-23 21:08:50", "5.248.196.252", "68");
INSERT INTO `wp_gf_form_view` VALUES("45535", "3", "2016-12-23 21:08:50", "5.248.196.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("45536", "3", "2016-12-23 21:08:50", "5.248.196.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("45537", "10", "2016-12-23 22:02:40", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("45538", "3", "2016-12-23 22:02:40", "217.69.133.227", "20");
INSERT INTO `wp_gf_form_view` VALUES("45539", "3", "2016-12-23 23:03:27", "66.249.79.148", "75");
INSERT INTO `wp_gf_form_view` VALUES("45540", "6", "2016-12-23 23:35:24", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("45541", "14", "2016-12-23 23:36:52", "5.189.170.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("45542", "3", "2016-12-24 00:50:34", "40.77.167.44", "20");
INSERT INTO `wp_gf_form_view` VALUES("45543", "13", "2016-12-24 00:53:50", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45544", "3", "2016-12-24 01:10:45", "217.69.133.229", "31");
INSERT INTO `wp_gf_form_view` VALUES("45545", "3", "2016-12-24 02:17:19", "68.180.228.105", "19");
INSERT INTO `wp_gf_form_view` VALUES("45546", "3", "2016-12-24 03:26:16", "68.180.228.105", "20");
INSERT INTO `wp_gf_form_view` VALUES("45547", "10", "2016-12-24 03:37:38", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45548", "14", "2016-12-24 04:13:34", "128.199.204.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("45549", "3", "2016-12-24 04:13:34", "128.199.204.44", "21");
INSERT INTO `wp_gf_form_view` VALUES("45550", "2", "2016-12-24 05:03:58", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45551", "3", "2016-12-24 05:03:58", "46.118.154.190", "40");
INSERT INTO `wp_gf_form_view` VALUES("45552", "10", "2016-12-24 05:56:12", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("45553", "3", "2016-12-24 06:35:23", "40.77.167.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("45554", "3", "2016-12-24 07:32:38", "217.69.133.230", "11");
INSERT INTO `wp_gf_form_view` VALUES("45555", "2", "2016-12-24 09:04:44", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45556", "2", "2016-12-24 09:04:44", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45557", "3", "2016-12-24 09:04:46", "46.119.116.116", "138");
INSERT INTO `wp_gf_form_view` VALUES("45558", "3", "2016-12-24 09:04:46", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45559", "10", "2016-12-24 09:08:32", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("45560", "3", "2016-12-24 10:00:12", "202.46.51.58", "50");
INSERT INTO `wp_gf_form_view` VALUES("45561", "2", "2016-12-24 10:55:43", "178.137.93.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("45562", "3", "2016-12-24 11:44:16", "68.180.228.105", "29");
INSERT INTO `wp_gf_form_view` VALUES("45563", "3", "2016-12-24 12:19:54", "217.69.133.228", "20");
INSERT INTO `wp_gf_form_view` VALUES("45564", "3", "2016-12-24 13:43:46", "163.172.66.59", "21");
INSERT INTO `wp_gf_form_view` VALUES("45565", "3", "2016-12-24 14:40:12", "68.180.228.105", "22");
INSERT INTO `wp_gf_form_view` VALUES("45566", "3", "2016-12-24 15:13:16", "202.46.52.60", "41");
INSERT INTO `wp_gf_form_view` VALUES("45567", "2", "2016-12-24 16:06:59", "178.137.18.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("45568", "3", "2016-12-24 16:06:59", "178.137.18.127", "30");
INSERT INTO `wp_gf_form_view` VALUES("45569", "3", "2016-12-24 18:21:20", "202.46.55.154", "41");
INSERT INTO `wp_gf_form_view` VALUES("45570", "10", "2016-12-24 18:34:21", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("45571", "2", "2016-12-24 18:55:54", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45572", "3", "2016-12-24 19:20:34", "66.249.79.140", "346");
INSERT INTO `wp_gf_form_view` VALUES("45573", "11", "2016-12-24 19:40:38", "173.9.55.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("45574", "2", "2016-12-24 19:41:39", "173.9.55.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("45575", "3", "2016-12-24 20:01:52", "202.46.51.132", "41");
INSERT INTO `wp_gf_form_view` VALUES("45576", "3", "2016-12-24 21:10:20", "66.249.79.140", "60");
INSERT INTO `wp_gf_form_view` VALUES("45577", "10", "2016-12-24 21:28:58", "163.172.65.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("45578", "3", "2016-12-24 22:13:45", "202.46.48.17", "142");
INSERT INTO `wp_gf_form_view` VALUES("45579", "11", "2016-12-24 22:22:52", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("45580", "2", "2016-12-24 22:22:55", "69.58.178.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("45581", "3", "2016-12-24 23:04:52", "207.46.13.51", "81");
INSERT INTO `wp_gf_form_view` VALUES("45582", "10", "2016-12-24 23:28:46", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("45583", "2", "2016-12-24 23:55:36", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45584", "10", "2016-12-25 00:01:18", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45585", "3", "2016-12-25 00:01:18", "68.180.228.105", "41");
INSERT INTO `wp_gf_form_view` VALUES("45586", "2", "2016-12-25 01:01:16", "46.119.116.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("45587", "3", "2016-12-25 01:01:16", "46.119.116.116", "82");
INSERT INTO `wp_gf_form_view` VALUES("45588", "10", "2016-12-25 01:01:29", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("45589", "3", "2016-12-25 02:51:47", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("45590", "3", "2016-12-25 03:52:25", "163.172.65.185", "11");
INSERT INTO `wp_gf_form_view` VALUES("45591", "3", "2016-12-25 04:12:23", "217.69.133.230", "40");
INSERT INTO `wp_gf_form_view` VALUES("45592", "3", "2016-12-25 05:39:42", "163.172.64.226", "30");
INSERT INTO `wp_gf_form_view` VALUES("45593", "14", "2016-12-25 07:01:18", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("45594", "3", "2016-12-25 07:01:36", "66.249.79.144", "101");
INSERT INTO `wp_gf_form_view` VALUES("45595", "10", "2016-12-25 07:23:11", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("45596", "2", "2016-12-25 07:46:01", "5.248.196.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("45597", "2", "2016-12-25 08:22:18", "178.137.18.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("45598", "3", "2016-12-25 08:22:19", "178.137.18.127", "41");
INSERT INTO `wp_gf_form_view` VALUES("45599", "3", "2016-12-25 09:02:45", "66.249.79.148", "632");
INSERT INTO `wp_gf_form_view` VALUES("45600", "11", "2016-12-25 09:14:22", "50.163.68.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("45601", "2", "2016-12-25 09:15:44", "50.163.68.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("45602", "3", "2016-12-25 10:04:08", "50.252.229.141", "352");
INSERT INTO `wp_gf_form_view` VALUES("45603", "11", "2016-12-25 10:04:14", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45604", "2", "2016-12-25 10:05:55", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45605", "3", "2016-12-25 11:17:22", "163.172.65.184", "20");
INSERT INTO `wp_gf_form_view` VALUES("45606", "3", "2016-12-25 12:13:30", "68.180.228.105", "21");
INSERT INTO `wp_gf_form_view` VALUES("45607", "3", "2016-12-25 13:08:15", "195.154.225.48", "40");
INSERT INTO `wp_gf_form_view` VALUES("45608", "10", "2016-12-25 13:43:42", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("45609", "10", "2016-12-25 14:16:43", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45610", "3", "2016-12-25 14:16:46", "66.249.79.140", "10");
INSERT INTO `wp_gf_form_view` VALUES("45611", "3", "2016-12-25 15:20:27", "217.69.133.227", "32");
INSERT INTO `wp_gf_form_view` VALUES("45612", "3", "2016-12-25 16:35:03", "50.98.66.76", "121");
INSERT INTO `wp_gf_form_view` VALUES("45613", "2", "2016-12-25 16:42:35", "178.137.93.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("45614", "3", "2016-12-25 17:09:52", "68.180.228.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("45615", "2", "2016-12-25 18:19:33", "178.137.93.117", "4");
INSERT INTO `wp_gf_form_view` VALUES("45616", "3", "2016-12-25 18:19:33", "178.137.93.117", "50");
INSERT INTO `wp_gf_form_view` VALUES("45617", "13", "2016-12-25 18:31:01", "217.69.133.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("45618", "2", "2016-12-25 19:06:34", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45619", "3", "2016-12-25 19:06:35", "46.118.154.190", "331");
INSERT INTO `wp_gf_form_view` VALUES("45620", "11", "2016-12-25 19:49:49", "70.165.29.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("45621", "7", "2016-12-25 20:00:28", "207.46.13.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("45622", "3", "2016-12-25 20:00:28", "207.46.13.146", "51");
INSERT INTO `wp_gf_form_view` VALUES("45623", "11", "2016-12-25 20:55:17", "202.46.50.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("45624", "3", "2016-12-25 21:16:43", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("45625", "3", "2016-12-25 22:07:47", "68.145.232.139", "1273");
INSERT INTO `wp_gf_form_view` VALUES("45626", "9", "2016-12-25 22:10:45", "157.55.39.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("45627", "10", "2016-12-25 22:42:33", "40.77.167.5", "32");
INSERT INTO `wp_gf_form_view` VALUES("45628", "11", "2016-12-25 22:43:32", "157.55.39.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("45629", "12", "2016-12-25 22:44:07", "207.46.13.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("45630", "13", "2016-12-25 22:44:11", "207.46.13.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("45631", "3", "2016-12-25 23:19:15", "217.69.133.69", "51");
INSERT INTO `wp_gf_form_view` VALUES("45632", "13", "2016-12-25 23:19:24", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("45633", "2", "2016-12-25 23:48:07", "178.137.93.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("45634", "2", "2016-12-25 23:48:07", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45635", "3", "2016-12-26 00:15:37", "68.180.228.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("45636", "3", "2016-12-26 01:43:02", "206.221.180.50", "22");
INSERT INTO `wp_gf_form_view` VALUES("45637", "14", "2016-12-26 02:48:04", "75.127.5.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("45638", "3", "2016-12-26 02:48:05", "75.127.5.236", "93");
INSERT INTO `wp_gf_form_view` VALUES("45639", "3", "2016-12-26 03:56:21", "74.142.132.154", "155");
INSERT INTO `wp_gf_form_view` VALUES("45640", "11", "2016-12-26 03:56:30", "74.142.132.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("45641", "2", "2016-12-26 03:59:59", "74.142.132.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("45642", "3", "2016-12-26 04:00:00", "74.142.132.154", "166");
INSERT INTO `wp_gf_form_view` VALUES("45643", "3", "2016-12-26 05:10:17", "202.46.49.196", "202");
INSERT INTO `wp_gf_form_view` VALUES("45644", "2", "2016-12-26 05:51:16", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45645", "3", "2016-12-26 06:00:04", "46.229.168.75", "142");
INSERT INTO `wp_gf_form_view` VALUES("45646", "2", "2016-12-26 07:00:02", "46.118.154.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("45647", "3", "2016-12-26 07:00:02", "46.118.154.190", "295");
INSERT INTO `wp_gf_form_view` VALUES("45648", "11", "2016-12-26 07:26:35", "45.55.191.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("45649", "3", "2016-12-26 08:31:32", "46.229.168.74", "70");
INSERT INTO `wp_gf_form_view` VALUES("45650", "13", "2016-12-26 08:43:21", "207.46.13.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("45651", "3", "2016-12-26 09:03:09", "70.35.196.136", "789");
INSERT INTO `wp_gf_form_view` VALUES("45652", "11", "2016-12-26 09:03:12", "70.35.196.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("45653", "2", "2016-12-26 09:03:59", "70.35.196.136", "3");
INSERT INTO `wp_gf_form_view` VALUES("45654", "10", "2016-12-26 09:32:34", "46.229.168.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("45655", "3", "2016-12-26 10:31:58", "46.229.168.72", "81");
INSERT INTO `wp_gf_form_view` VALUES("45656", "3", "2016-12-26 11:07:12", "46.229.168.65", "71");
INSERT INTO `wp_gf_form_view` VALUES("45657", "3", "2016-12-26 12:26:13", "46.229.168.70", "121");
INSERT INTO `wp_gf_form_view` VALUES("45658", "3", "2016-12-26 13:03:34", "46.229.168.70", "313");
INSERT INTO `wp_gf_form_view` VALUES("45659", "3", "2016-12-26 14:11:58", "66.249.79.140", "20");
INSERT INTO `wp_gf_form_view` VALUES("45660", "3", "2016-12-26 15:01:22", "46.229.168.70", "70");
INSERT INTO `wp_gf_form_view` VALUES("45661", "2", "2016-12-26 15:20:56", "178.137.93.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("45662", "3", "2016-12-26 17:05:50", "68.180.228.105", "91");
INSERT INTO `wp_gf_form_view` VALUES("45663", "2", "2016-12-26 17:05:54", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45664", "3", "2016-12-26 18:09:54", "66.249.79.148", "322");
INSERT INTO `wp_gf_form_view` VALUES("45665", "11", "2016-12-26 18:56:35", "86.123.246.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("45666", "2", "2016-12-26 18:57:45", "86.123.246.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("45667", "2", "2016-12-26 19:37:42", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45668", "3", "2016-12-26 19:37:43", "178.137.18.127", "10");
INSERT INTO `wp_gf_form_view` VALUES("45669", "2", "2016-12-26 20:10:33", "46.119.116.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("45670", "3", "2016-12-26 20:10:33", "46.119.116.116", "70");
INSERT INTO `wp_gf_form_view` VALUES("45671", "14", "2016-12-26 20:24:10", "202.56.203.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("45672", "3", "2016-12-26 21:10:41", "108.179.33.140", "543");
INSERT INTO `wp_gf_form_view` VALUES("45673", "11", "2016-12-26 21:10:49", "108.179.33.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("45674", "2", "2016-12-26 21:14:00", "108.179.33.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45675", "10", "2016-12-26 21:37:21", "77.75.79.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("45676", "5", "2016-12-26 21:37:37", "77.75.79.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("45677", "14", "2016-12-26 21:38:43", "77.75.79.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("45678", "3", "2016-12-26 22:01:24", "163.172.66.172", "40");
INSERT INTO `wp_gf_form_view` VALUES("45679", "3", "2016-12-26 23:07:04", "66.249.79.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("45680", "2", "2016-12-27 00:39:27", "68.180.228.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("45681", "3", "2016-12-27 00:39:28", "68.180.228.105", "100");
INSERT INTO `wp_gf_form_view` VALUES("45682", "11", "2016-12-27 00:43:20", "80.82.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("45683", "2", "2016-12-27 01:34:36", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45684", "3", "2016-12-27 01:34:37", "46.119.116.116", "62");
INSERT INTO `wp_gf_form_view` VALUES("45685", "3", "2016-12-27 02:10:05", "68.180.228.105", "30");
INSERT INTO `wp_gf_form_view` VALUES("45686", "2", "2016-12-27 02:30:40", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45687", "3", "2016-12-27 03:11:03", "68.180.228.105", "31");
INSERT INTO `wp_gf_form_view` VALUES("45688", "2", "2016-12-27 05:04:32", "178.137.18.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("45689", "3", "2016-12-27 05:04:32", "178.137.18.127", "171");
INSERT INTO `wp_gf_form_view` VALUES("45690", "3", "2016-12-27 06:09:08", "163.172.65.12", "40");
INSERT INTO `wp_gf_form_view` VALUES("45691", "3", "2016-12-27 09:15:52", "68.180.228.105", "21");
INSERT INTO `wp_gf_form_view` VALUES("45692", "3", "2016-12-27 10:42:36", "77.75.78.166", "10");
INSERT INTO `wp_gf_form_view` VALUES("45693", "3", "2016-12-27 11:39:36", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("45694", "2", "2016-12-27 12:04:46", "178.137.18.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("45695", "3", "2016-12-27 12:04:47", "178.137.18.127", "20");
INSERT INTO `wp_gf_form_view` VALUES("45696", "10", "2016-12-27 13:44:53", "77.75.78.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("45697", "3", "2016-12-27 13:44:55", "77.75.78.171", "30");
INSERT INTO `wp_gf_form_view` VALUES("45698", "3", "2016-12-27 14:11:26", "66.249.79.140", "50");
INSERT INTO `wp_gf_form_view` VALUES("45699", "14", "2016-12-27 14:12:10", "209.95.50.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("45700", "3", "2016-12-27 15:28:26", "70.67.92.159", "60");
INSERT INTO `wp_gf_form_view` VALUES("45701", "3", "2016-12-27 16:00:56", "62.210.177.34", "50");
INSERT INTO `wp_gf_form_view` VALUES("45702", "14", "2016-12-27 16:37:32", "77.75.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("45703", "3", "2016-12-27 17:09:57", "66.249.79.148", "50");
INSERT INTO `wp_gf_form_view` VALUES("45704", "14", "2016-12-27 17:22:09", "5.189.170.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("45705", "3", "2016-12-27 18:36:17", "68.180.228.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("45706", "3", "2016-12-27 19:11:56", "66.249.79.148", "30");
INSERT INTO `wp_gf_form_view` VALUES("45707", "3", "2016-12-27 20:18:16", "68.180.228.105", "51");
INSERT INTO `wp_gf_form_view` VALUES("45708", "14", "2016-12-27 20:56:19", "23.106.195.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("45709", "3", "2016-12-27 21:21:34", "66.249.79.148", "30");
INSERT INTO `wp_gf_form_view` VALUES("45710", "2", "2016-12-27 21:39:09", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45711", "2", "2016-12-27 22:06:31", "46.118.154.190", "5");
INSERT INTO `wp_gf_form_view` VALUES("45712", "3", "2016-12-27 22:06:31", "46.118.154.190", "72");
INSERT INTO `wp_gf_form_view` VALUES("45713", "3", "2016-12-27 23:08:24", "66.249.79.140", "62");
INSERT INTO `wp_gf_form_view` VALUES("45714", "2", "2016-12-27 23:13:30", "178.137.93.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("45715", "12", "2016-12-27 23:26:41", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("45716", "11", "2016-12-28 00:18:51", "68.180.228.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("45717", "3", "2016-12-28 00:18:51", "68.180.228.105", "40");
INSERT INTO `wp_gf_form_view` VALUES("45718", "3", "2016-12-28 01:04:10", "66.249.79.140", "194");
INSERT INTO `wp_gf_form_view` VALUES("45719", "10", "2016-12-28 01:51:58", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("45720", "3", "2016-12-28 02:06:32", "157.55.39.65", "10");
INSERT INTO `wp_gf_form_view` VALUES("45721", "11", "2016-12-28 03:00:31", "163.172.66.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("45722", "3", "2016-12-28 03:00:32", "163.172.66.109", "80");
INSERT INTO `wp_gf_form_view` VALUES("45723", "14", "2016-12-28 03:01:45", "24.108.11.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("45724", "2", "2016-12-28 04:27:53", "178.137.93.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("45725", "3", "2016-12-28 04:27:53", "178.137.93.117", "50");
INSERT INTO `wp_gf_form_view` VALUES("45726", "3", "2016-12-28 05:01:25", "138.197.80.102", "4248");
INSERT INTO `wp_gf_form_view` VALUES("45727", "14", "2016-12-28 05:07:08", "138.197.80.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("45728", "11", "2016-12-28 05:07:13", "138.197.80.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("45729", "6", "2016-12-28 05:25:03", "138.197.80.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("45730", "2", "2016-12-28 05:29:23", "5.248.196.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("45731", "9", "2016-12-28 05:33:33", "138.197.80.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("45732", "10", "2016-12-28 05:49:13", "138.197.80.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("45733", "3", "2016-12-28 06:00:58", "138.197.80.102", "2055");
INSERT INTO `wp_gf_form_view` VALUES("45734", "2", "2016-12-28 06:13:47", "138.197.80.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("45735", "13", "2016-12-28 06:23:28", "138.197.80.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("45736", "11", "2016-12-28 06:49:54", "174.79.163.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("45737", "3", "2016-12-28 07:07:21", "207.46.13.31", "40");
INSERT INTO `wp_gf_form_view` VALUES("45738", "3", "2016-12-28 08:03:28", "66.249.79.140", "79");
INSERT INTO `wp_gf_form_view` VALUES("45739", "13", "2016-12-28 08:37:53", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45740", "10", "2016-12-28 08:37:53", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45741", "2", "2016-12-28 08:54:12", "5.248.196.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("45742", "2", "2016-12-28 09:07:31", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45743", "3", "2016-12-28 09:07:32", "46.118.154.190", "71");
INSERT INTO `wp_gf_form_view` VALUES("45744", "2", "2016-12-28 10:02:41", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45745", "3", "2016-12-28 10:02:41", "46.119.116.116", "61");
INSERT INTO `wp_gf_form_view` VALUES("45746", "3", "2016-12-28 11:11:28", "162.217.250.69", "80");
INSERT INTO `wp_gf_form_view` VALUES("45747", "3", "2016-12-28 12:03:41", "77.75.76.165", "50");
INSERT INTO `wp_gf_form_view` VALUES("45748", "5", "2016-12-28 13:09:37", "77.75.78.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("45749", "3", "2016-12-28 13:09:37", "77.75.78.163", "30");
INSERT INTO `wp_gf_form_view` VALUES("45750", "3", "2016-12-28 14:19:54", "77.75.78.169", "91");
INSERT INTO `wp_gf_form_view` VALUES("45751", "13", "2016-12-28 14:43:36", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45752", "3", "2016-12-28 15:16:05", "77.75.77.17", "60");
INSERT INTO `wp_gf_form_view` VALUES("45753", "14", "2016-12-28 15:22:54", "216.197.171.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("45754", "3", "2016-12-28 16:11:59", "202.46.52.12", "578");
INSERT INTO `wp_gf_form_view` VALUES("45755", "10", "2016-12-28 16:52:50", "46.229.168.70", "9");
INSERT INTO `wp_gf_form_view` VALUES("45756", "14", "2016-12-28 16:53:15", "46.229.168.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("45757", "6", "2016-12-28 16:54:07", "46.229.168.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("45758", "3", "2016-12-28 17:00:56", "77.75.79.72", "1118");
INSERT INTO `wp_gf_form_view` VALUES("45759", "10", "2016-12-28 17:06:19", "207.46.13.158", "23");
INSERT INTO `wp_gf_form_view` VALUES("45760", "11", "2016-12-28 17:06:54", "207.46.13.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("45761", "9", "2016-12-28 17:07:49", "207.46.13.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("45762", "14", "2016-12-28 17:12:43", "24.68.50.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("45763", "13", "2016-12-28 17:36:20", "207.46.13.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("45764", "2", "2016-12-28 18:03:05", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45765", "2", "2016-12-28 18:03:05", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45766", "3", "2016-12-28 18:03:05", "178.137.93.117", "19");
INSERT INTO `wp_gf_form_view` VALUES("45767", "3", "2016-12-28 18:03:05", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45768", "2", "2016-12-28 19:20:58", "46.119.116.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("45769", "3", "2016-12-28 19:21:00", "46.119.116.116", "99");
INSERT INTO `wp_gf_form_view` VALUES("45770", "3", "2016-12-28 19:21:00", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45771", "2", "2016-12-28 20:12:08", "178.137.18.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("45772", "3", "2016-12-28 20:12:08", "178.137.18.127", "91");
INSERT INTO `wp_gf_form_view` VALUES("45773", "3", "2016-12-28 21:00:22", "75.154.238.38", "80");
INSERT INTO `wp_gf_form_view` VALUES("45774", "3", "2016-12-28 22:07:58", "77.75.76.165", "61");
INSERT INTO `wp_gf_form_view` VALUES("45775", "2", "2016-12-28 22:33:21", "5.248.196.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("45776", "3", "2016-12-28 23:31:40", "24.68.17.97", "20");
INSERT INTO `wp_gf_form_view` VALUES("45777", "2", "2016-12-28 23:53:58", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45778", "14", "2016-12-29 00:11:53", "77.75.79.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("45779", "3", "2016-12-29 00:11:53", "77.75.79.119", "40");
INSERT INTO `wp_gf_form_view` VALUES("45780", "2", "2016-12-29 00:21:04", "46.119.116.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("45781", "12", "2016-12-29 01:35:17", "163.172.66.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("45782", "3", "2016-12-29 01:35:18", "163.172.66.85", "10");
INSERT INTO `wp_gf_form_view` VALUES("45783", "3", "2016-12-29 02:15:40", "24.68.12.190", "263");
INSERT INTO `wp_gf_form_view` VALUES("45784", "11", "2016-12-29 02:38:50", "77.75.78.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("45785", "2", "2016-12-29 02:48:14", "45.55.233.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("45786", "3", "2016-12-29 04:01:51", "66.249.79.144", "141");
INSERT INTO `wp_gf_form_view` VALUES("45787", "13", "2016-12-29 04:17:36", "24.69.18.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("45788", "2", "2016-12-29 04:36:28", "178.137.18.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("45789", "3", "2016-12-29 05:18:35", "77.75.78.165", "23");
INSERT INTO `wp_gf_form_view` VALUES("45790", "3", "2016-12-29 06:13:32", "24.68.28.15", "20");
INSERT INTO `wp_gf_form_view` VALUES("45791", "3", "2016-12-29 07:29:53", "54.226.230.44", "10");
INSERT INTO `wp_gf_form_view` VALUES("45792", "2", "2016-12-29 08:02:47", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45793", "3", "2016-12-29 08:02:47", "66.249.79.140", "50");
INSERT INTO `wp_gf_form_view` VALUES("45794", "11", "2016-12-29 08:03:08", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45795", "3", "2016-12-29 10:19:05", "202.46.54.191", "51");
INSERT INTO `wp_gf_form_view` VALUES("45796", "10", "2016-12-29 10:57:59", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("45797", "2", "2016-12-29 11:08:17", "178.137.18.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("45798", "3", "2016-12-29 11:08:17", "178.137.18.127", "30");
INSERT INTO `wp_gf_form_view` VALUES("45799", "3", "2016-12-29 12:01:44", "207.46.13.31", "291");
INSERT INTO `wp_gf_form_view` VALUES("45800", "11", "2016-12-29 12:58:05", "82.39.62.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("45801", "2", "2016-12-29 12:59:11", "82.39.62.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("45802", "3", "2016-12-29 13:00:02", "82.39.62.52", "71");
INSERT INTO `wp_gf_form_view` VALUES("45803", "3", "2016-12-29 14:30:04", "66.249.79.148", "42");
INSERT INTO `wp_gf_form_view` VALUES("45804", "10", "2016-12-29 14:30:44", "207.46.13.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("45805", "3", "2016-12-29 15:28:42", "207.46.13.156", "20");
INSERT INTO `wp_gf_form_view` VALUES("45806", "2", "2016-12-29 15:37:23", "207.46.13.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("45807", "3", "2016-12-29 16:20:49", "77.75.78.160", "20");
INSERT INTO `wp_gf_form_view` VALUES("45808", "10", "2016-12-29 17:29:32", "207.46.13.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("45809", "3", "2016-12-29 17:29:32", "207.46.13.31", "90");
INSERT INTO `wp_gf_form_view` VALUES("45810", "3", "2016-12-29 18:11:32", "96.50.61.173", "122");
INSERT INTO `wp_gf_form_view` VALUES("45811", "2", "2016-12-29 18:53:24", "5.248.196.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("45812", "3", "2016-12-29 19:15:31", "202.46.53.197", "50");
INSERT INTO `wp_gf_form_view` VALUES("45813", "3", "2016-12-29 20:11:05", "24.68.130.95", "101");
INSERT INTO `wp_gf_form_view` VALUES("45814", "2", "2016-12-29 20:54:55", "178.137.18.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("45815", "3", "2016-12-29 21:38:37", "154.5.147.41", "40");
INSERT INTO `wp_gf_form_view` VALUES("45816", "3", "2016-12-29 22:02:58", "202.46.52.143", "405");
INSERT INTO `wp_gf_form_view` VALUES("45817", "2", "2016-12-29 22:19:53", "178.137.93.117", "5");
INSERT INTO `wp_gf_form_view` VALUES("45818", "11", "2016-12-29 22:51:24", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("45819", "3", "2016-12-29 23:00:04", "136.243.36.94", "418");
INSERT INTO `wp_gf_form_view` VALUES("45820", "5", "2016-12-29 23:10:00", "77.75.78.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("45821", "14", "2016-12-29 23:13:21", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("45822", "3", "2016-12-30 00:16:55", "202.46.49.191", "61");
INSERT INTO `wp_gf_form_view` VALUES("45823", "2", "2016-12-30 00:40:26", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45824", "3", "2016-12-30 01:01:52", "69.50.234.141", "134");
INSERT INTO `wp_gf_form_view` VALUES("45825", "2", "2016-12-30 01:01:58", "69.50.234.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45826", "11", "2016-12-30 01:02:11", "69.50.234.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45827", "10", "2016-12-30 01:57:25", "202.46.56.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("45828", "3", "2016-12-30 02:30:54", "202.46.51.191", "11");
INSERT INTO `wp_gf_form_view` VALUES("45829", "3", "2016-12-30 03:04:22", "202.46.51.191", "81");
INSERT INTO `wp_gf_form_view` VALUES("45830", "14", "2016-12-30 03:47:36", "50.92.126.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("45831", "10", "2016-12-30 03:55:13", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45832", "3", "2016-12-30 04:01:24", "50.92.126.11", "40");
INSERT INTO `wp_gf_form_view` VALUES("45833", "14", "2016-12-30 04:11:20", "202.46.52.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("45834", "3", "2016-12-30 05:18:20", "202.46.52.42", "101");
INSERT INTO `wp_gf_form_view` VALUES("45835", "2", "2016-12-30 05:21:29", "178.137.93.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("45836", "3", "2016-12-30 06:02:50", "75.155.182.69", "107");
INSERT INTO `wp_gf_form_view` VALUES("45837", "3", "2016-12-30 07:06:33", "96.50.31.43", "114");
INSERT INTO `wp_gf_form_view` VALUES("45838", "5", "2016-12-30 07:36:20", "5.9.62.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("45839", "3", "2016-12-30 08:05:45", "202.46.58.192", "30");
INSERT INTO `wp_gf_form_view` VALUES("45840", "2", "2016-12-30 08:35:06", "46.119.116.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("45841", "3", "2016-12-30 09:12:45", "202.46.55.61", "31");
INSERT INTO `wp_gf_form_view` VALUES("45842", "10", "2016-12-30 09:13:03", "207.46.13.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("45843", "3", "2016-12-30 10:19:45", "202.46.58.72", "30");
INSERT INTO `wp_gf_form_view` VALUES("45844", "13", "2016-12-30 10:53:13", "202.46.49.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("45845", "3", "2016-12-30 11:02:26", "40.77.167.60", "102");
INSERT INTO `wp_gf_form_view` VALUES("45846", "14", "2016-12-30 11:44:43", "188.213.175.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("45847", "2", "2016-12-30 11:56:11", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45848", "2", "2016-12-30 11:56:11", "46.118.154.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("45849", "3", "2016-12-30 12:00:11", "202.46.55.63", "22");
INSERT INTO `wp_gf_form_view` VALUES("45850", "3", "2016-12-30 13:07:13", "202.46.55.81", "234");
INSERT INTO `wp_gf_form_view` VALUES("45851", "14", "2016-12-30 13:37:05", "180.250.32.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("45852", "11", "2016-12-30 14:00:10", "207.46.13.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("45853", "3", "2016-12-30 14:00:10", "207.46.13.158", "198");
INSERT INTO `wp_gf_form_view` VALUES("45854", "2", "2016-12-30 14:06:52", "207.46.13.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("45855", "14", "2016-12-30 15:19:44", "119.177.15.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("45856", "3", "2016-12-30 15:19:44", "119.177.15.75", "50");
INSERT INTO `wp_gf_form_view` VALUES("45857", "3", "2016-12-30 16:10:11", "68.180.228.105", "21");
INSERT INTO `wp_gf_form_view` VALUES("45858", "3", "2016-12-30 17:01:36", "202.46.53.206", "81");
INSERT INTO `wp_gf_form_view` VALUES("45859", "2", "2016-12-30 17:25:28", "54.205.192.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("45860", "3", "2016-12-30 18:02:25", "77.75.79.95", "81");
INSERT INTO `wp_gf_form_view` VALUES("45861", "2", "2016-12-30 18:12:46", "46.119.116.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("45862", "3", "2016-12-30 20:15:19", "66.249.79.144", "32");
INSERT INTO `wp_gf_form_view` VALUES("45863", "3", "2016-12-30 21:04:05", "202.46.54.162", "83");
INSERT INTO `wp_gf_form_view` VALUES("45864", "3", "2016-12-30 22:00:14", "40.77.167.60", "273");
INSERT INTO `wp_gf_form_view` VALUES("45865", "2", "2016-12-30 22:10:48", "40.77.167.89", "7");
INSERT INTO `wp_gf_form_view` VALUES("45866", "3", "2016-12-30 23:34:47", "66.249.79.144", "22");
INSERT INTO `wp_gf_form_view` VALUES("45867", "3", "2016-12-31 00:09:25", "5.9.145.132", "50");
INSERT INTO `wp_gf_form_view` VALUES("45868", "3", "2016-12-31 01:27:57", "68.180.228.105", "103");
INSERT INTO `wp_gf_form_view` VALUES("45869", "3", "2016-12-31 02:17:10", "77.75.77.119", "40");
INSERT INTO `wp_gf_form_view` VALUES("45870", "14", "2016-12-31 03:04:59", "192.161.59.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("45871", "3", "2016-12-31 03:04:59", "192.161.59.198", "61");
INSERT INTO `wp_gf_form_view` VALUES("45872", "3", "2016-12-31 04:26:53", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("45873", "3", "2016-12-31 05:14:18", "208.184.112.74", "790");
INSERT INTO `wp_gf_form_view` VALUES("45874", "3", "2016-12-31 05:14:18", "107.178.194.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("45875", "11", "2016-12-31 05:29:03", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("45876", "2", "2016-12-31 05:29:08", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("45877", "14", "2016-12-31 05:31:40", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("45878", "3", "2016-12-31 06:09:29", "202.46.49.77", "40");
INSERT INTO `wp_gf_form_view` VALUES("45879", "3", "2016-12-31 07:20:49", "107.158.199.103", "20");
INSERT INTO `wp_gf_form_view` VALUES("45880", "3", "2016-12-31 09:12:20", "207.46.13.43", "43");
INSERT INTO `wp_gf_form_view` VALUES("45881", "3", "2016-12-31 10:34:11", "202.46.48.147", "488");
INSERT INTO `wp_gf_form_view` VALUES("45882", "10", "2016-12-31 10:58:51", "40.77.167.60", "16");
INSERT INTO `wp_gf_form_view` VALUES("45883", "12", "2016-12-31 10:58:56", "40.77.167.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("45884", "13", "2016-12-31 10:59:49", "40.77.167.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("45885", "3", "2016-12-31 11:00:00", "40.77.167.60", "795");
INSERT INTO `wp_gf_form_view` VALUES("45886", "10", "2016-12-31 11:00:15", "40.77.167.60", "16");
INSERT INTO `wp_gf_form_view` VALUES("45887", "9", "2016-12-31 11:00:24", "207.46.13.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("45888", "11", "2016-12-31 11:01:18", "40.77.167.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("45889", "13", "2016-12-31 11:01:30", "207.46.13.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("45890", "2", "2016-12-31 12:21:59", "5.248.196.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("45891", "2", "2016-12-31 12:21:59", "5.248.196.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("45892", "3", "2016-12-31 12:22:02", "5.248.196.252", "28");
INSERT INTO `wp_gf_form_view` VALUES("45893", "3", "2016-12-31 12:22:02", "5.248.196.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("45894", "3", "2016-12-31 12:22:02", "5.248.196.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("45895", "3", "2016-12-31 13:14:50", "68.180.228.105", "81");
INSERT INTO `wp_gf_form_view` VALUES("45896", "2", "2016-12-31 13:59:41", "178.137.18.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("45897", "3", "2016-12-31 14:30:39", "50.252.229.141", "342");
INSERT INTO `wp_gf_form_view` VALUES("45898", "11", "2016-12-31 14:30:45", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45899", "2", "2016-12-31 14:32:05", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("45900", "10", "2016-12-31 14:57:59", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("45901", "14", "2016-12-31 15:04:06", "23.80.151.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("45902", "3", "2016-12-31 15:04:06", "23.80.151.70", "62");
INSERT INTO `wp_gf_form_view` VALUES("45903", "3", "2016-12-31 16:05:12", "66.249.79.140", "33");
INSERT INTO `wp_gf_form_view` VALUES("45904", "9", "2016-12-31 16:48:10", "167.114.224.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("45905", "3", "2016-12-31 17:26:57", "24.68.16.105", "21");
INSERT INTO `wp_gf_form_view` VALUES("45906", "3", "2016-12-31 18:08:02", "174.7.128.81", "90");
INSERT INTO `wp_gf_form_view` VALUES("45907", "2", "2016-12-31 18:21:56", "178.137.93.117", "6");
INSERT INTO `wp_gf_form_view` VALUES("45908", "3", "2016-12-31 19:00:35", "64.180.189.14", "122");
INSERT INTO `wp_gf_form_view` VALUES("45909", "14", "2016-12-31 19:02:17", "64.180.189.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("45910", "14", "2016-12-31 20:07:02", "62.210.111.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("45911", "3", "2016-12-31 20:07:03", "62.210.111.43", "60");
INSERT INTO `wp_gf_form_view` VALUES("45912", "3", "2016-12-31 21:02:40", "40.77.167.60", "60");
INSERT INTO `wp_gf_form_view` VALUES("45913", "10", "2016-12-31 21:31:58", "162.210.196.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("45914", "3", "2016-12-31 22:04:43", "24.69.201.30", "124");
INSERT INTO `wp_gf_form_view` VALUES("45915", "8", "2016-12-31 22:52:06", "207.46.13.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("45916", "3", "2016-12-31 23:03:05", "68.180.228.105", "32");
INSERT INTO `wp_gf_form_view` VALUES("45917", "3", "2017-01-01 00:08:15", "66.249.79.144", "83");
INSERT INTO `wp_gf_form_view` VALUES("45918", "2", "2017-01-01 00:46:48", "178.137.18.127", "6");
INSERT INTO `wp_gf_form_view` VALUES("45919", "2", "2017-01-01 01:16:14", "178.137.93.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("45920", "2", "2017-01-01 01:16:14", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45921", "3", "2017-01-01 01:16:15", "178.137.93.117", "71");
INSERT INTO `wp_gf_form_view` VALUES("45922", "3", "2017-01-01 01:16:15", "178.137.93.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("45923", "10", "2017-01-01 01:34:12", "77.75.79.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("45924", "3", "2017-01-01 02:28:43", "68.180.228.105", "282");
INSERT INTO `wp_gf_form_view` VALUES("45925", "2", "2017-01-01 02:29:05", "46.118.154.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("45926", "11", "2017-01-01 02:39:22", "138.197.2.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("45927", "3", "2017-01-01 03:00:58", "66.249.79.140", "84");
INSERT INTO `wp_gf_form_view` VALUES("45928", "3", "2017-01-01 04:24:39", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("45929", "13", "2017-01-01 05:30:40", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("45930", "3", "2017-01-01 05:30:40", "66.249.79.148", "31");
INSERT INTO `wp_gf_form_view` VALUES("45931", "3", "2017-01-01 06:02:20", "96.50.13.216", "41");
INSERT INTO `wp_gf_form_view` VALUES("45932", "3", "2017-01-01 07:20:59", "104.142.122.93", "51");
INSERT INTO `wp_gf_form_view` VALUES("45933", "2", "2017-01-01 08:13:07", "178.137.93.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("45934", "3", "2017-01-01 08:13:08", "178.137.93.117", "50");
INSERT INTO `wp_gf_form_view` VALUES("45935", "14", "2017-01-01 08:13:52", "77.243.183.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("45936", "3", "2017-01-01 09:03:59", "199.21.99.202", "175");
INSERT INTO `wp_gf_form_view` VALUES("45937", "13", "2017-01-01 09:07:52", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("45938", "3", "2017-01-01 10:02:52", "141.8.143.242", "332");
INSERT INTO `wp_gf_form_view` VALUES("45939", "11", "2017-01-01 10:43:49", "96.56.24.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("45940", "2", "2017-01-01 10:44:34", "96.56.24.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("45941", "3", "2017-01-01 12:14:46", "23.229.52.123", "62");
INSERT INTO `wp_gf_form_view` VALUES("45942", "3", "2017-01-01 13:14:49", "68.180.228.105", "71");
INSERT INTO `wp_gf_form_view` VALUES("45943", "2", "2017-01-01 13:55:52", "178.137.18.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("45944", "2", "2017-01-01 13:55:52", "178.137.18.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("45945", "3", "2017-01-01 14:12:06", "199.21.99.202", "63");
INSERT INTO `wp_gf_form_view` VALUES("45946", "3", "2017-01-01 15:52:49", "66.249.79.148", "21");
INSERT INTO `wp_gf_form_view` VALUES("45947", "3", "2017-01-01 16:11:36", "202.46.51.14", "20");
INSERT INTO `wp_gf_form_view` VALUES("45948", "3", "2017-01-01 17:02:03", "207.46.13.68", "362");
INSERT INTO `wp_gf_form_view` VALUES("45949", "11", "2017-01-01 17:29:26", "24.249.157.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("45950", "2", "2017-01-01 17:30:30", "24.249.157.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("45951", "3", "2017-01-01 18:12:25", "68.180.228.105", "50");
INSERT INTO `wp_gf_form_view` VALUES("45952", "10", "2017-01-01 18:21:52", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("45953", "3", "2017-01-01 19:00:19", "96.50.57.45", "135");
INSERT INTO `wp_gf_form_view` VALUES("45954", "14", "2017-01-01 19:02:39", "96.50.57.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("45955", "11", "2017-01-01 19:25:57", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("45956", "3", "2017-01-01 20:44:05", "199.21.99.202", "20");
INSERT INTO `wp_gf_form_view` VALUES("45957", "2", "2017-01-01 21:42:41", "134.249.50.153", "5");
INSERT INTO `wp_gf_form_view` VALUES("45958", "2", "2017-01-01 21:42:41", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("45959", "3", "2017-01-01 21:42:42", "134.249.50.153", "79");
INSERT INTO `wp_gf_form_view` VALUES("45960", "3", "2017-01-01 21:42:42", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("45961", "2", "2017-01-01 22:11:31", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("45962", "3", "2017-01-01 22:11:31", "134.249.50.153", "135");
INSERT INTO `wp_gf_form_view` VALUES("45963", "3", "2017-01-01 23:16:12", "66.249.79.148", "30");
INSERT INTO `wp_gf_form_view` VALUES("45964", "3", "2017-01-02 00:00:08", "108.180.242.157", "40");
INSERT INTO `wp_gf_form_view` VALUES("45965", "3", "2017-01-02 01:10:15", "202.46.51.11", "40");
INSERT INTO `wp_gf_form_view` VALUES("45966", "10", "2017-01-02 01:11:31", "162.210.196.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("45967", "14", "2017-01-02 02:50:46", "202.46.58.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("45968", "3", "2017-01-02 02:50:47", "202.46.58.83", "10");
INSERT INTO `wp_gf_form_view` VALUES("45969", "3", "2017-01-02 03:44:44", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("45970", "3", "2017-01-02 04:18:35", "68.180.228.105", "41");
INSERT INTO `wp_gf_form_view` VALUES("45971", "13", "2017-01-02 04:30:05", "202.46.49.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("45972", "3", "2017-01-02 05:37:03", "202.46.53.164", "43");
INSERT INTO `wp_gf_form_view` VALUES("45973", "3", "2017-01-02 06:01:16", "24.69.13.21", "552");
INSERT INTO `wp_gf_form_view` VALUES("45974", "10", "2017-01-02 06:52:51", "157.55.39.125", "5");
INSERT INTO `wp_gf_form_view` VALUES("45975", "9", "2017-01-02 06:53:19", "157.55.39.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("45976", "5", "2017-01-02 06:53:21", "207.46.13.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("45977", "14", "2017-01-02 06:53:29", "157.55.39.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("45978", "8", "2017-01-02 06:53:32", "207.46.13.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("45979", "6", "2017-01-02 06:53:46", "207.46.13.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("45980", "3", "2017-01-02 07:14:19", "40.77.167.92", "291");
INSERT INTO `wp_gf_form_view` VALUES("45981", "10", "2017-01-02 07:14:56", "40.77.167.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("45982", "9", "2017-01-02 07:15:01", "40.77.167.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("45983", "11", "2017-01-02 08:24:16", "94.154.239.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("45984", "3", "2017-01-02 08:24:16", "94.154.239.69", "80");
INSERT INTO `wp_gf_form_view` VALUES("45985", "12", "2017-01-02 08:24:49", "94.154.239.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("45986", "10", "2017-01-02 08:24:56", "94.154.239.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("45987", "3", "2017-01-02 09:19:45", "202.46.58.18", "11");
INSERT INTO `wp_gf_form_view` VALUES("45988", "3", "2017-01-02 10:28:52", "66.249.79.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("45989", "3", "2017-01-02 12:35:54", "163.172.65.236", "20");
INSERT INTO `wp_gf_form_view` VALUES("45990", "3", "2017-01-02 13:07:01", "66.249.79.148", "71");
INSERT INTO `wp_gf_form_view` VALUES("45991", "14", "2017-01-02 13:50:18", "107.161.83.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("45992", "10", "2017-01-02 13:53:15", "40.77.167.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("45993", "3", "2017-01-02 14:11:14", "40.77.167.60", "30");
INSERT INTO `wp_gf_form_view` VALUES("45994", "2", "2017-01-02 14:46:57", "178.137.16.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("45995", "12", "2017-01-02 15:14:15", "40.77.167.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("45996", "3", "2017-01-02 15:14:16", "40.77.167.60", "41");
INSERT INTO `wp_gf_form_view` VALUES("45997", "3", "2017-01-02 16:14:59", "68.180.228.105", "32");
INSERT INTO `wp_gf_form_view` VALUES("45998", "3", "2017-01-02 17:01:01", "70.67.92.159", "30");
INSERT INTO `wp_gf_form_view` VALUES("45999", "3", "2017-01-02 18:00:53", "77.75.78.160", "31");
INSERT INTO `wp_gf_form_view` VALUES("46000", "2", "2017-01-02 18:02:05", "178.137.16.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("46001", "3", "2017-01-02 19:12:04", "24.108.212.9", "130");
INSERT INTO `wp_gf_form_view` VALUES("46002", "10", "2017-01-02 19:23:47", "163.172.66.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("46003", "3", "2017-01-02 20:14:11", "202.46.55.155", "62");
INSERT INTO `wp_gf_form_view` VALUES("46004", "2", "2017-01-02 20:23:39", "178.137.18.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("46005", "3", "2017-01-02 21:10:04", "5.9.106.81", "50");
INSERT INTO `wp_gf_form_view` VALUES("46006", "3", "2017-01-02 22:13:08", "207.81.136.51", "52");
INSERT INTO `wp_gf_form_view` VALUES("46007", "3", "2017-01-02 23:00:50", "68.180.228.105", "70");
INSERT INTO `wp_gf_form_view` VALUES("46008", "2", "2017-01-02 23:05:04", "178.137.16.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("46009", "10", "2017-01-02 23:18:27", "163.172.66.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("46010", "3", "2017-01-03 00:23:32", "70.66.223.204", "91");
INSERT INTO `wp_gf_form_view` VALUES("46011", "5", "2017-01-03 00:57:42", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("46012", "3", "2017-01-03 01:08:52", "184.151.231.159", "104");
INSERT INTO `wp_gf_form_view` VALUES("46013", "3", "2017-01-03 02:00:52", "163.172.64.250", "71");
INSERT INTO `wp_gf_form_view` VALUES("46014", "5", "2017-01-03 02:17:05", "77.75.76.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("46015", "3", "2017-01-03 03:09:47", "77.75.78.160", "479");
INSERT INTO `wp_gf_form_view` VALUES("46016", "14", "2017-01-03 03:24:27", "64.251.72.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("46017", "2", "2017-01-03 03:27:50", "178.137.161.236", "5");
INSERT INTO `wp_gf_form_view` VALUES("46018", "11", "2017-01-03 03:34:14", "85.148.42.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("46019", "3", "2017-01-03 04:12:57", "77.75.78.167", "102");
INSERT INTO `wp_gf_form_view` VALUES("46020", "3", "2017-01-03 05:05:49", "77.75.79.119", "92");
INSERT INTO `wp_gf_form_view` VALUES("46021", "2", "2017-01-03 05:41:52", "178.137.18.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("46022", "14", "2017-01-03 06:04:24", "5.135.209.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("46023", "3", "2017-01-03 06:04:24", "5.135.209.60", "30");
INSERT INTO `wp_gf_form_view` VALUES("46024", "2", "2017-01-03 06:35:38", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("46025", "3", "2017-01-03 07:01:56", "68.180.228.105", "61");
INSERT INTO `wp_gf_form_view` VALUES("46026", "12", "2017-01-03 07:29:50", "202.46.53.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("46027", "3", "2017-01-03 08:14:45", "66.249.79.144", "20");
INSERT INTO `wp_gf_form_view` VALUES("46028", "3", "2017-01-03 09:03:49", "163.172.64.228", "23");
INSERT INTO `wp_gf_form_view` VALUES("46029", "14", "2017-01-03 09:19:27", "5.135.209.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("46030", "2", "2017-01-03 10:09:50", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46031", "2", "2017-01-03 10:09:50", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46032", "3", "2017-01-03 10:09:52", "178.137.161.236", "50");
INSERT INTO `wp_gf_form_view` VALUES("46033", "3", "2017-01-03 10:09:52", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46034", "3", "2017-01-03 11:18:52", "5.189.176.182", "148");
INSERT INTO `wp_gf_form_view` VALUES("46035", "13", "2017-01-03 11:19:47", "5.189.176.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("46036", "10", "2017-01-03 11:19:47", "5.189.176.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("46037", "3", "2017-01-03 12:21:44", "202.46.57.24", "30");
INSERT INTO `wp_gf_form_view` VALUES("46038", "3", "2017-01-03 13:40:32", "202.46.51.190", "20");
INSERT INTO `wp_gf_form_view` VALUES("46039", "3", "2017-01-03 14:14:01", "202.46.51.114", "212");
INSERT INTO `wp_gf_form_view` VALUES("46040", "13", "2017-01-03 14:35:49", "54.212.206.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("46041", "10", "2017-01-03 14:35:49", "54.212.206.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("46042", "3", "2017-01-03 16:28:58", "69.30.221.250", "50");
INSERT INTO `wp_gf_form_view` VALUES("46043", "3", "2017-01-03 17:06:00", "163.172.65.225", "87");
INSERT INTO `wp_gf_form_view` VALUES("46044", "2", "2017-01-03 17:44:50", "178.137.18.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("46045", "3", "2017-01-03 18:18:58", "24.68.145.205", "160");
INSERT INTO `wp_gf_form_view` VALUES("46046", "2", "2017-01-03 18:43:08", "134.249.50.153", "11");
INSERT INTO `wp_gf_form_view` VALUES("46047", "3", "2017-01-03 19:14:43", "202.46.50.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("46048", "3", "2017-01-03 20:44:38", "77.75.76.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("46049", "3", "2017-01-03 21:00:24", "119.224.41.204", "100");
INSERT INTO `wp_gf_form_view` VALUES("46050", "3", "2017-01-03 22:10:47", "68.180.228.105", "328");
INSERT INTO `wp_gf_form_view` VALUES("46051", "11", "2017-01-03 22:14:19", "45.55.213.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("46052", "2", "2017-01-03 22:14:20", "45.55.213.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("46053", "10", "2017-01-03 22:20:15", "40.77.167.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("46054", "3", "2017-01-03 23:41:10", "40.77.167.60", "10");
INSERT INTO `wp_gf_form_view` VALUES("46055", "3", "2017-01-04 00:01:36", "163.172.65.16", "203");
INSERT INTO `wp_gf_form_view` VALUES("46056", "3", "2017-01-04 01:14:25", "202.46.51.171", "10");
INSERT INTO `wp_gf_form_view` VALUES("46057", "3", "2017-01-04 02:11:28", "77.75.78.160", "295");
INSERT INTO `wp_gf_form_view` VALUES("46058", "2", "2017-01-04 02:38:29", "174.127.133.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("46059", "3", "2017-01-04 03:05:17", "174.127.133.51", "312");
INSERT INTO `wp_gf_form_view` VALUES("46060", "8", "2017-01-04 03:07:40", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("46061", "14", "2017-01-04 03:19:52", "174.127.133.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("46062", "10", "2017-01-04 03:23:44", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("46063", "14", "2017-01-04 04:11:04", "172.245.193.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("46064", "3", "2017-01-04 04:11:05", "172.245.193.226", "20");
INSERT INTO `wp_gf_form_view` VALUES("46065", "14", "2017-01-04 05:11:34", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("46066", "3", "2017-01-04 05:11:38", "66.249.79.140", "83");
INSERT INTO `wp_gf_form_view` VALUES("46067", "3", "2017-01-04 06:37:50", "163.172.65.108", "13");
INSERT INTO `wp_gf_form_view` VALUES("46068", "3", "2017-01-04 07:01:13", "66.249.79.144", "70");
INSERT INTO `wp_gf_form_view` VALUES("46069", "3", "2017-01-04 08:13:53", "163.172.66.125", "45");
INSERT INTO `wp_gf_form_view` VALUES("46070", "3", "2017-01-04 09:06:14", "92.238.226.245", "81");
INSERT INTO `wp_gf_form_view` VALUES("46071", "9", "2017-01-04 09:06:27", "92.238.226.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("46072", "8", "2017-01-04 09:06:41", "92.238.226.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("46073", "3", "2017-01-04 10:01:09", "163.172.66.170", "50");
INSERT INTO `wp_gf_form_view` VALUES("46074", "3", "2017-01-04 11:02:15", "52.23.152.191", "406");
INSERT INTO `wp_gf_form_view` VALUES("46075", "11", "2017-01-04 11:03:44", "52.23.152.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("46076", "2", "2017-01-04 11:04:07", "52.23.152.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("46077", "2", "2017-01-04 12:02:26", "163.172.142.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("46078", "3", "2017-01-04 12:02:26", "163.172.142.133", "91");
INSERT INTO `wp_gf_form_view` VALUES("46079", "3", "2017-01-04 13:18:18", "68.180.228.105", "50");
INSERT INTO `wp_gf_form_view` VALUES("46080", "10", "2017-01-04 13:50:17", "163.172.64.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("46081", "3", "2017-01-04 14:00:56", "163.172.65.185", "80");
INSERT INTO `wp_gf_form_view` VALUES("46082", "13", "2017-01-04 14:20:22", "68.180.228.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("46083", "3", "2017-01-04 15:10:42", "68.180.228.105", "181");
INSERT INTO `wp_gf_form_view` VALUES("46084", "2", "2017-01-04 15:40:43", "24.199.202.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("46085", "3", "2017-01-04 16:14:57", "96.54.168.86", "70");
INSERT INTO `wp_gf_form_view` VALUES("46086", "10", "2017-01-04 16:57:50", "163.172.66.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("46087", "3", "2017-01-04 17:00:35", "66.249.79.148", "81");
INSERT INTO `wp_gf_form_view` VALUES("46088", "2", "2017-01-04 17:18:26", "178.137.16.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("46089", "3", "2017-01-04 18:13:15", "50.92.125.65", "140");
INSERT INTO `wp_gf_form_view` VALUES("46090", "11", "2017-01-04 18:56:57", "163.172.66.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("46091", "3", "2017-01-04 19:11:50", "66.249.79.140", "121");
INSERT INTO `wp_gf_form_view` VALUES("46092", "14", "2017-01-04 19:23:13", "142.104.9.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("46093", "2", "2017-01-04 19:41:36", "178.137.16.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("46094", "10", "2017-01-04 19:53:04", "77.75.78.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("46095", "3", "2017-01-04 20:01:31", "108.172.163.250", "106");
INSERT INTO `wp_gf_form_view` VALUES("46096", "14", "2017-01-04 20:27:58", "5.135.209.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("46097", "3", "2017-01-04 21:23:26", "68.180.228.164", "141");
INSERT INTO `wp_gf_form_view` VALUES("46098", "14", "2017-01-04 21:51:28", "132.156.2.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("46099", "3", "2017-01-04 22:07:37", "132.156.2.2", "102");
INSERT INTO `wp_gf_form_view` VALUES("46100", "3", "2017-01-04 23:06:47", "207.194.65.204", "192");
INSERT INTO `wp_gf_form_view` VALUES("46101", "14", "2017-01-04 23:54:50", "24.108.188.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("46102", "3", "2017-01-05 00:06:38", "24.108.166.216", "172");
INSERT INTO `wp_gf_form_view` VALUES("46103", "2", "2017-01-05 00:47:37", "178.137.161.236", "4");
INSERT INTO `wp_gf_form_view` VALUES("46104", "13", "2017-01-05 00:52:55", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46105", "2", "2017-01-05 01:03:55", "178.137.16.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("46106", "3", "2017-01-05 01:03:55", "178.137.16.194", "189");
INSERT INTO `wp_gf_form_view` VALUES("46107", "3", "2017-01-05 01:03:55", "178.137.16.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("46108", "14", "2017-01-05 01:38:26", "96.50.22.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("46109", "3", "2017-01-05 02:07:33", "163.172.65.226", "70");
INSERT INTO `wp_gf_form_view` VALUES("46110", "3", "2017-01-05 03:01:57", "68.180.228.164", "852");
INSERT INTO `wp_gf_form_view` VALUES("46111", "10", "2017-01-05 03:21:27", "207.46.13.107", "15");
INSERT INTO `wp_gf_form_view` VALUES("46112", "13", "2017-01-05 03:21:54", "207.46.13.107", "4");
INSERT INTO `wp_gf_form_view` VALUES("46113", "12", "2017-01-05 03:22:39", "40.77.167.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("46114", "9", "2017-01-05 03:32:52", "88.198.16.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("46115", "8", "2017-01-05 03:56:09", "163.172.68.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("46116", "3", "2017-01-05 04:07:08", "154.20.33.172", "278");
INSERT INTO `wp_gf_form_view` VALUES("46117", "10", "2017-01-05 04:20:33", "40.77.167.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("46118", "11", "2017-01-05 04:21:03", "40.77.167.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("46119", "13", "2017-01-05 04:49:58", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46120", "3", "2017-01-05 05:05:30", "68.180.228.164", "53");
INSERT INTO `wp_gf_form_view` VALUES("46121", "10", "2017-01-05 05:52:19", "199.16.157.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("46122", "3", "2017-01-05 06:14:40", "66.249.79.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("46123", "3", "2017-01-05 07:03:31", "202.46.51.11", "49");
INSERT INTO `wp_gf_form_view` VALUES("46124", "3", "2017-01-05 08:00:30", "70.67.48.204", "150");
INSERT INTO `wp_gf_form_view` VALUES("46125", "14", "2017-01-05 08:01:17", "70.67.48.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("46126", "11", "2017-01-05 08:23:12", "77.75.76.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("46127", "2", "2017-01-05 08:45:01", "178.137.161.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("46128", "5", "2017-01-05 09:07:21", "77.75.78.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("46129", "3", "2017-01-05 09:07:21", "77.75.78.163", "41");
INSERT INTO `wp_gf_form_view` VALUES("46130", "10", "2017-01-05 09:21:40", "163.172.65.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("46131", "3", "2017-01-05 10:11:47", "77.75.76.161", "81");
INSERT INTO `wp_gf_form_view` VALUES("46132", "3", "2017-01-05 11:03:41", "69.195.124.87", "71");
INSERT INTO `wp_gf_form_view` VALUES("46133", "3", "2017-01-05 12:14:04", "163.172.66.45", "32");
INSERT INTO `wp_gf_form_view` VALUES("46134", "11", "2017-01-05 13:06:40", "207.46.13.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("46135", "3", "2017-01-05 13:06:40", "207.46.13.176", "51");
INSERT INTO `wp_gf_form_view` VALUES("46136", "2", "2017-01-05 13:32:19", "178.137.18.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("46137", "3", "2017-01-05 14:51:23", "163.172.66.125", "20");
INSERT INTO `wp_gf_form_view` VALUES("46138", "10", "2017-01-05 15:09:23", "77.75.77.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("46139", "3", "2017-01-05 15:09:23", "77.75.77.32", "40");
INSERT INTO `wp_gf_form_view` VALUES("46140", "2", "2017-01-05 15:44:37", "178.137.161.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("46141", "3", "2017-01-05 16:12:26", "66.249.79.144", "61");
INSERT INTO `wp_gf_form_view` VALUES("46142", "2", "2017-01-05 16:49:56", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46143", "14", "2017-01-05 16:50:41", "5.135.209.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("46144", "3", "2017-01-05 17:08:16", "68.180.228.164", "112");
INSERT INTO `wp_gf_form_view` VALUES("46145", "14", "2017-01-05 17:12:13", "45.20.214.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("46146", "3", "2017-01-05 18:10:47", "216.232.157.181", "20");
INSERT INTO `wp_gf_form_view` VALUES("46147", "3", "2017-01-05 19:20:10", "205.250.86.162", "90");
INSERT INTO `wp_gf_form_view` VALUES("46148", "3", "2017-01-05 20:09:12", "202.46.54.105", "112");
INSERT INTO `wp_gf_form_view` VALUES("46149", "3", "2017-01-05 21:16:10", "202.46.49.72", "20");
INSERT INTO `wp_gf_form_view` VALUES("46150", "14", "2017-01-05 22:06:52", "5.135.209.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("46151", "3", "2017-01-05 22:06:55", "5.135.209.60", "83");
INSERT INTO `wp_gf_form_view` VALUES("46152", "10", "2017-01-05 22:46:35", "144.76.4.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("46153", "13", "2017-01-05 22:46:41", "144.76.4.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("46154", "3", "2017-01-05 23:09:36", "104.128.253.238", "61");
INSERT INTO `wp_gf_form_view` VALUES("46155", "3", "2017-01-06 00:11:01", "207.46.13.107", "110");
INSERT INTO `wp_gf_form_view` VALUES("46156", "2", "2017-01-06 00:22:22", "134.249.50.153", "6");
INSERT INTO `wp_gf_form_view` VALUES("46157", "10", "2017-01-06 00:26:51", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46158", "14", "2017-01-06 01:32:32", "5.135.209.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("46159", "3", "2017-01-06 01:32:33", "5.135.209.60", "40");
INSERT INTO `wp_gf_form_view` VALUES("46160", "3", "2017-01-06 02:02:28", "163.172.66.148", "24");
INSERT INTO `wp_gf_form_view` VALUES("46161", "3", "2017-01-06 03:17:50", "163.172.65.206", "31");
INSERT INTO `wp_gf_form_view` VALUES("46162", "10", "2017-01-06 03:37:33", "163.172.64.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("46163", "2", "2017-01-06 04:03:01", "5.248.196.252", "4");
INSERT INTO `wp_gf_form_view` VALUES("46164", "3", "2017-01-06 04:03:01", "5.248.196.252", "51");
INSERT INTO `wp_gf_form_view` VALUES("46165", "3", "2017-01-06 05:25:40", "199.21.99.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("46166", "3", "2017-01-06 06:05:59", "207.46.13.48", "26");
INSERT INTO `wp_gf_form_view` VALUES("46167", "3", "2017-01-06 07:00:24", "77.75.77.54", "96");
INSERT INTO `wp_gf_form_view` VALUES("46168", "3", "2017-01-06 08:44:15", "68.180.228.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("46169", "10", "2017-01-06 08:48:56", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46170", "10", "2017-01-06 09:01:00", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("46171", "3", "2017-01-06 09:01:00", "66.249.79.144", "316");
INSERT INTO `wp_gf_form_view` VALUES("46172", "2", "2017-01-06 09:41:23", "178.137.18.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("46173", "14", "2017-01-06 09:53:53", "202.46.52.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("46174", "3", "2017-01-06 10:04:56", "154.5.138.131", "63");
INSERT INTO `wp_gf_form_view` VALUES("46175", "2", "2017-01-06 10:16:48", "178.137.161.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("46176", "3", "2017-01-06 11:37:49", "163.172.66.71", "11");
INSERT INTO `wp_gf_form_view` VALUES("46177", "3", "2017-01-06 12:02:20", "68.180.228.164", "87");
INSERT INTO `wp_gf_form_view` VALUES("46178", "2", "2017-01-06 12:30:33", "178.137.18.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("46179", "2", "2017-01-06 12:30:33", "178.137.18.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("46180", "3", "2017-01-06 13:27:06", "172.218.195.65", "260");
INSERT INTO `wp_gf_form_view` VALUES("46181", "3", "2017-01-06 14:04:45", "163.172.66.121", "40");
INSERT INTO `wp_gf_form_view` VALUES("46182", "3", "2017-01-06 15:17:34", "163.172.66.58", "80");
INSERT INTO `wp_gf_form_view` VALUES("46183", "14", "2017-01-06 15:29:19", "50.92.126.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("46184", "3", "2017-01-06 16:25:16", "68.180.228.164", "20");
INSERT INTO `wp_gf_form_view` VALUES("46185", "2", "2017-01-06 17:33:40", "163.172.66.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("46186", "3", "2017-01-06 17:35:55", "163.172.66.13", "10");
INSERT INTO `wp_gf_form_view` VALUES("46187", "10", "2017-01-06 18:12:25", "163.172.64.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("46188", "3", "2017-01-06 18:12:44", "163.172.64.178", "50");
INSERT INTO `wp_gf_form_view` VALUES("46189", "10", "2017-01-06 19:03:23", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46190", "3", "2017-01-06 19:03:23", "68.180.228.164", "112");
INSERT INTO `wp_gf_form_view` VALUES("46191", "3", "2017-01-06 20:01:55", "68.180.228.164", "92");
INSERT INTO `wp_gf_form_view` VALUES("46192", "14", "2017-01-06 20:06:47", "205.250.214.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("46193", "3", "2017-01-06 21:28:47", "163.172.65.65", "47");
INSERT INTO `wp_gf_form_view` VALUES("46194", "3", "2017-01-06 22:13:04", "184.66.60.46", "93");
INSERT INTO `wp_gf_form_view` VALUES("46195", "3", "2017-01-06 23:08:59", "207.46.13.107", "630");
INSERT INTO `wp_gf_form_view` VALUES("46196", "10", "2017-01-06 23:09:09", "207.46.13.107", "14");
INSERT INTO `wp_gf_form_view` VALUES("46197", "13", "2017-01-06 23:09:36", "207.46.13.107", "3");
INSERT INTO `wp_gf_form_view` VALUES("46198", "12", "2017-01-06 23:10:20", "157.55.39.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("46199", "3", "2017-01-07 00:09:09", "163.172.66.125", "167");
INSERT INTO `wp_gf_form_view` VALUES("46200", "8", "2017-01-07 00:46:34", "202.46.50.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("46201", "2", "2017-01-07 00:59:50", "178.137.16.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("46202", "3", "2017-01-07 01:09:42", "54.92.155.125", "100");
INSERT INTO `wp_gf_form_view` VALUES("46203", "3", "2017-01-07 02:27:52", "54.91.249.231", "111");
INSERT INTO `wp_gf_form_view` VALUES("46204", "3", "2017-01-07 03:22:38", "202.46.52.12", "659");
INSERT INTO `wp_gf_form_view` VALUES("46205", "2", "2017-01-07 03:33:32", "178.137.16.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("46206", "14", "2017-01-07 03:59:12", "104.131.25.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("46207", "11", "2017-01-07 03:59:37", "104.131.25.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("46208", "3", "2017-01-07 04:00:32", "104.131.25.122", "4101");
INSERT INTO `wp_gf_form_view` VALUES("46209", "6", "2017-01-07 04:17:57", "104.131.25.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("46210", "9", "2017-01-07 04:25:37", "104.131.25.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("46211", "10", "2017-01-07 04:41:07", "104.131.25.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("46212", "3", "2017-01-07 05:00:02", "104.131.25.122", "1232");
INSERT INTO `wp_gf_form_view` VALUES("46213", "2", "2017-01-07 05:05:38", "104.131.25.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("46214", "13", "2017-01-07 05:15:27", "104.131.25.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("46215", "8", "2017-01-07 05:16:47", "104.131.25.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("46216", "3", "2017-01-07 06:32:25", "202.46.54.187", "31");
INSERT INTO `wp_gf_form_view` VALUES("46217", "10", "2017-01-07 07:07:18", "77.75.78.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("46218", "3", "2017-01-07 07:07:26", "77.75.78.168", "91");
INSERT INTO `wp_gf_form_view` VALUES("46219", "14", "2017-01-07 07:08:28", "125.212.122.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("46220", "3", "2017-01-07 08:39:58", "144.76.29.66", "221");
INSERT INTO `wp_gf_form_view` VALUES("46221", "2", "2017-01-07 08:40:08", "144.76.29.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("46222", "6", "2017-01-07 08:40:58", "144.76.29.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("46223", "6", "2017-01-07 08:40:58", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("46224", "9", "2017-01-07 08:56:36", "163.172.66.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("46225", "3", "2017-01-07 09:06:04", "116.31.225.137", "30");
INSERT INTO `wp_gf_form_view` VALUES("46226", "2", "2017-01-07 10:28:35", "178.137.16.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("46227", "2", "2017-01-07 10:28:35", "178.137.16.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("46228", "3", "2017-01-07 10:28:38", "178.137.16.194", "47");
INSERT INTO `wp_gf_form_view` VALUES("46229", "3", "2017-01-07 10:28:38", "178.137.16.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("46230", "3", "2017-01-07 10:28:38", "178.137.16.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("46231", "3", "2017-01-07 10:28:38", "178.137.16.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("46232", "10", "2017-01-07 10:35:49", "163.172.65.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("46233", "3", "2017-01-07 11:02:45", "163.172.65.206", "82");
INSERT INTO `wp_gf_form_view` VALUES("46234", "14", "2017-01-07 11:46:55", "192.227.135.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("46235", "2", "2017-01-07 11:50:00", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("46236", "3", "2017-01-07 12:03:40", "24.249.157.233", "383");
INSERT INTO `wp_gf_form_view` VALUES("46237", "11", "2017-01-07 12:03:45", "24.249.157.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("46238", "2", "2017-01-07 12:04:57", "24.249.157.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("46239", "10", "2017-01-07 13:01:08", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("46240", "3", "2017-01-07 13:01:08", "207.46.13.107", "20");
INSERT INTO `wp_gf_form_view` VALUES("46241", "3", "2017-01-07 14:17:23", "207.46.13.107", "11");
INSERT INTO `wp_gf_form_view` VALUES("46242", "3", "2017-01-07 15:06:13", "157.55.39.121", "80");
INSERT INTO `wp_gf_form_view` VALUES("46243", "2", "2017-01-07 15:11:59", "178.137.161.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("46244", "3", "2017-01-07 16:44:14", "68.180.228.164", "20");
INSERT INTO `wp_gf_form_view` VALUES("46245", "3", "2017-01-07 17:22:20", "144.76.29.66", "23");
INSERT INTO `wp_gf_form_view` VALUES("46246", "3", "2017-01-07 18:10:43", "104.192.169.238", "262");
INSERT INTO `wp_gf_form_view` VALUES("46247", "11", "2017-01-07 18:11:04", "104.192.169.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("46248", "2", "2017-01-07 18:11:09", "104.192.169.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("46249", "3", "2017-01-07 19:28:58", "163.172.66.18", "165");
INSERT INTO `wp_gf_form_view` VALUES("46250", "11", "2017-01-07 19:32:12", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("46251", "13", "2017-01-07 19:47:11", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("46252", "12", "2017-01-07 19:56:31", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("46253", "10", "2017-01-07 19:59:43", "163.172.66.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("46254", "3", "2017-01-07 20:30:24", "88.99.27.172", "112");
INSERT INTO `wp_gf_form_view` VALUES("46255", "14", "2017-01-07 20:30:35", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("46256", "10", "2017-01-07 20:36:07", "40.77.167.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("46257", "2", "2017-01-07 20:51:11", "178.137.18.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("46258", "3", "2017-01-07 21:10:01", "157.55.39.121", "51");
INSERT INTO `wp_gf_form_view` VALUES("46259", "3", "2017-01-07 22:04:55", "69.30.213.82", "93");
INSERT INTO `wp_gf_form_view` VALUES("46260", "3", "2017-01-07 23:05:19", "157.55.39.121", "151");
INSERT INTO `wp_gf_form_view` VALUES("46261", "10", "2017-01-07 23:08:14", "163.172.66.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("46262", "2", "2017-01-07 23:28:33", "5.248.196.252", "6");
INSERT INTO `wp_gf_form_view` VALUES("46263", "14", "2017-01-07 23:52:51", "191.101.115.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("46264", "3", "2017-01-08 00:09:28", "66.102.6.95", "90");
INSERT INTO `wp_gf_form_view` VALUES("46265", "14", "2017-01-08 00:15:25", "24.108.14.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("46266", "3", "2017-01-08 01:02:54", "96.50.57.45", "100");
INSERT INTO `wp_gf_form_view` VALUES("46267", "3", "2017-01-08 02:10:38", "77.75.78.168", "104");
INSERT INTO `wp_gf_form_view` VALUES("46268", "9", "2017-01-08 02:22:01", "207.46.13.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("46269", "3", "2017-01-08 03:09:57", "77.75.76.172", "20");
INSERT INTO `wp_gf_form_view` VALUES("46270", "10", "2017-01-08 03:16:31", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("46271", "3", "2017-01-08 04:04:42", "77.75.78.170", "62");
INSERT INTO `wp_gf_form_view` VALUES("46272", "14", "2017-01-08 04:54:28", "163.172.65.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("46273", "3", "2017-01-08 05:04:12", "96.50.19.46", "112");
INSERT INTO `wp_gf_form_view` VALUES("46274", "14", "2017-01-08 05:20:25", "120.27.216.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("46275", "3", "2017-01-08 06:00:39", "77.75.78.166", "142");
INSERT INTO `wp_gf_form_view` VALUES("46276", "2", "2017-01-08 06:01:58", "178.137.18.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("46277", "14", "2017-01-08 06:59:53", "46.166.141.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("46278", "3", "2017-01-08 07:03:26", "163.172.71.24", "92");
INSERT INTO `wp_gf_form_view` VALUES("46279", "13", "2017-01-08 07:24:54", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("46280", "2", "2017-01-08 07:46:10", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46281", "2", "2017-01-08 07:46:10", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46282", "2", "2017-01-08 07:46:10", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46283", "3", "2017-01-08 08:03:56", "68.180.228.164", "47");
INSERT INTO `wp_gf_form_view` VALUES("46284", "3", "2017-01-08 09:34:19", "207.46.13.8", "51");
INSERT INTO `wp_gf_form_view` VALUES("46285", "14", "2017-01-08 09:35:43", "185.101.238.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("46286", "3", "2017-01-08 10:53:09", "163.172.64.234", "10");
INSERT INTO `wp_gf_form_view` VALUES("46287", "3", "2017-01-08 11:04:13", "207.46.13.107", "80");
INSERT INTO `wp_gf_form_view` VALUES("46288", "10", "2017-01-08 11:09:13", "207.46.13.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("46289", "14", "2017-01-08 11:22:44", "27.131.47.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("46290", "2", "2017-01-08 11:50:16", "134.249.50.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("46291", "2", "2017-01-08 11:50:16", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("46292", "2", "2017-01-08 11:50:16", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("46293", "3", "2017-01-08 12:09:36", "107.178.194.29", "161");
INSERT INTO `wp_gf_form_view` VALUES("46294", "3", "2017-01-08 12:09:36", "208.184.112.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("46295", "6", "2017-01-08 12:31:26", "68.180.228.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("46296", "10", "2017-01-08 12:54:21", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("46297", "14", "2017-01-08 13:06:36", "103.58.117.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("46298", "3", "2017-01-08 13:06:36", "103.58.117.226", "69");
INSERT INTO `wp_gf_form_view` VALUES("46299", "3", "2017-01-08 14:26:06", "207.46.13.107", "31");
INSERT INTO `wp_gf_form_view` VALUES("46300", "3", "2017-01-08 15:09:49", "207.46.13.107", "110");
INSERT INTO `wp_gf_form_view` VALUES("46301", "11", "2017-01-08 15:47:43", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("46302", "2", "2017-01-08 15:47:46", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("46303", "10", "2017-01-08 16:01:15", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("46304", "3", "2017-01-08 16:01:16", "157.55.39.121", "40");
INSERT INTO `wp_gf_form_view` VALUES("46305", "3", "2017-01-08 17:18:07", "207.46.13.8", "60");
INSERT INTO `wp_gf_form_view` VALUES("46306", "10", "2017-01-08 17:43:24", "77.75.78.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("46307", "10", "2017-01-08 18:05:21", "207.46.13.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("46308", "3", "2017-01-08 18:05:21", "207.46.13.8", "56");
INSERT INTO `wp_gf_form_view` VALUES("46309", "3", "2017-01-08 19:00:43", "207.46.13.8", "50");
INSERT INTO `wp_gf_form_view` VALUES("46310", "10", "2017-01-08 20:05:42", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("46311", "3", "2017-01-08 20:05:42", "157.55.39.111", "46");
INSERT INTO `wp_gf_form_view` VALUES("46312", "8", "2017-01-08 20:11:54", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("46313", "5", "2017-01-08 21:06:07", "77.75.76.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("46314", "3", "2017-01-08 21:06:09", "77.75.76.160", "60");
INSERT INTO `wp_gf_form_view` VALUES("46315", "2", "2017-01-08 21:16:41", "178.137.18.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("46316", "10", "2017-01-08 21:34:16", "163.172.66.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("46317", "3", "2017-01-08 22:02:51", "163.172.66.136", "32");
INSERT INTO `wp_gf_form_view` VALUES("46318", "3", "2017-01-08 23:06:09", "174.7.172.23", "30");
INSERT INTO `wp_gf_form_view` VALUES("46319", "10", "2017-01-09 00:10:29", "163.172.66.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("46320", "3", "2017-01-09 00:10:30", "163.172.66.117", "50");
INSERT INTO `wp_gf_form_view` VALUES("46321", "2", "2017-01-09 00:16:23", "178.137.161.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("46322", "3", "2017-01-09 01:20:48", "77.75.76.162", "50");
INSERT INTO `wp_gf_form_view` VALUES("46323", "3", "2017-01-09 02:10:23", "198.2.75.104", "142");
INSERT INTO `wp_gf_form_view` VALUES("46324", "10", "2017-01-09 02:16:04", "157.55.39.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("46325", "2", "2017-01-09 02:20:10", "178.137.18.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("46326", "14", "2017-01-09 02:58:37", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("46327", "3", "2017-01-09 03:14:35", "157.55.39.111", "101");
INSERT INTO `wp_gf_form_view` VALUES("46328", "3", "2017-01-09 04:08:59", "24.114.27.54", "50");
INSERT INTO `wp_gf_form_view` VALUES("46329", "14", "2017-01-09 04:17:25", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("46330", "10", "2017-01-09 04:53:16", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("46331", "9", "2017-01-09 04:59:37", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("46332", "11", "2017-01-09 05:11:19", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("46333", "3", "2017-01-09 05:11:19", "66.249.79.140", "173");
INSERT INTO `wp_gf_form_view` VALUES("46334", "14", "2017-01-09 05:13:04", "62.210.111.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("46335", "13", "2017-01-09 05:22:21", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("46336", "2", "2017-01-09 05:27:29", "178.137.18.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("46337", "12", "2017-01-09 05:31:25", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("46338", "10", "2017-01-09 06:22:43", "202.46.52.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("46339", "3", "2017-01-09 06:22:44", "202.46.52.178", "30");
INSERT INTO `wp_gf_form_view` VALUES("46340", "3", "2017-01-09 07:00:21", "207.46.13.8", "123");
INSERT INTO `wp_gf_form_view` VALUES("46341", "10", "2017-01-09 07:02:04", "207.46.13.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("46342", "9", "2017-01-09 07:48:42", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("46343", "11", "2017-01-09 08:03:33", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46344", "3", "2017-01-09 08:03:33", "136.243.36.94", "680");
INSERT INTO `wp_gf_form_view` VALUES("46345", "2", "2017-01-09 08:07:21", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46346", "10", "2017-01-09 08:13:56", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46347", "14", "2017-01-09 08:17:50", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46348", "13", "2017-01-09 08:23:44", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46349", "3", "2017-01-09 09:20:01", "77.75.79.11", "30");
INSERT INTO `wp_gf_form_view` VALUES("46350", "3", "2017-01-09 10:16:14", "207.46.13.107", "102");
INSERT INTO `wp_gf_form_view` VALUES("46351", "2", "2017-01-09 10:25:46", "192.99.44.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("46352", "3", "2017-01-09 11:50:17", "157.55.39.121", "17");
INSERT INTO `wp_gf_form_view` VALUES("46353", "10", "2017-01-09 12:10:23", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("46354", "3", "2017-01-09 12:10:23", "157.55.39.121", "92");
INSERT INTO `wp_gf_form_view` VALUES("46355", "9", "2017-01-09 12:29:08", "157.55.39.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("46356", "2", "2017-01-09 12:43:49", "178.137.16.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("46357", "3", "2017-01-09 13:01:43", "77.75.76.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("46358", "10", "2017-01-09 13:19:14", "207.46.13.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("46359", "3", "2017-01-09 14:41:05", "66.249.79.140", "10");
INSERT INTO `wp_gf_form_view` VALUES("46360", "3", "2017-01-09 15:00:01", "77.75.78.160", "120");
INSERT INTO `wp_gf_form_view` VALUES("46361", "2", "2017-01-09 15:06:28", "178.137.16.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("46362", "10", "2017-01-09 16:01:22", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("46363", "3", "2017-01-09 16:01:22", "207.46.13.107", "31");
INSERT INTO `wp_gf_form_view` VALUES("46364", "3", "2017-01-09 17:34:48", "184.71.13.222", "60");
INSERT INTO `wp_gf_form_view` VALUES("46365", "3", "2017-01-09 18:13:35", "157.55.39.121", "58");
INSERT INTO `wp_gf_form_view` VALUES("46366", "3", "2017-01-09 19:01:21", "207.46.13.8", "61");
INSERT INTO `wp_gf_form_view` VALUES("46367", "2", "2017-01-09 19:37:56", "202.46.50.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("46368", "3", "2017-01-09 20:06:15", "184.66.34.24", "216");
INSERT INTO `wp_gf_form_view` VALUES("46369", "14", "2017-01-09 20:48:23", "24.69.142.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("46370", "3", "2017-01-09 21:01:00", "24.69.142.134", "71");
INSERT INTO `wp_gf_form_view` VALUES("46371", "10", "2017-01-09 21:11:49", "207.46.13.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("46372", "3", "2017-01-09 22:00:52", "207.46.13.107", "222");
INSERT INTO `wp_gf_form_view` VALUES("46373", "14", "2017-01-09 22:24:13", "24.68.14.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("46374", "2", "2017-01-09 22:29:07", "178.137.16.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("46375", "3", "2017-01-09 23:03:43", "77.75.78.168", "80");
INSERT INTO `wp_gf_form_view` VALUES("46376", "2", "2017-01-09 23:45:44", "134.249.50.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("46377", "3", "2017-01-10 00:30:02", "207.46.13.8", "21");
INSERT INTO `wp_gf_form_view` VALUES("46378", "3", "2017-01-10 01:03:02", "163.172.66.45", "102");
INSERT INTO `wp_gf_form_view` VALUES("46379", "10", "2017-01-10 01:37:51", "157.55.39.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("46380", "3", "2017-01-10 02:48:09", "207.46.13.8", "20");
INSERT INTO `wp_gf_form_view` VALUES("46381", "3", "2017-01-10 03:09:54", "207.46.13.107", "44");
INSERT INTO `wp_gf_form_view` VALUES("46382", "3", "2017-01-10 04:16:52", "77.75.78.165", "103");
INSERT INTO `wp_gf_form_view` VALUES("46383", "2", "2017-01-10 04:32:45", "178.137.161.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("46384", "2", "2017-01-10 04:32:45", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46385", "3", "2017-01-10 05:04:48", "157.55.39.143", "60");
INSERT INTO `wp_gf_form_view` VALUES("46386", "14", "2017-01-10 05:40:30", "69.30.205.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("46387", "3", "2017-01-10 06:09:30", "77.75.79.11", "103");
INSERT INTO `wp_gf_form_view` VALUES("46388", "10", "2017-01-10 06:16:15", "207.46.13.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("46389", "2", "2017-01-10 06:25:49", "5.248.196.252", "4");
INSERT INTO `wp_gf_form_view` VALUES("46390", "3", "2017-01-10 07:12:17", "202.46.53.15", "30");
INSERT INTO `wp_gf_form_view` VALUES("46391", "3", "2017-01-10 09:06:16", "68.180.228.164", "321");
INSERT INTO `wp_gf_form_view` VALUES("46392", "11", "2017-01-10 09:29:01", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("46393", "2", "2017-01-10 09:30:59", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("46394", "3", "2017-01-10 11:32:21", "202.46.51.36", "10");
INSERT INTO `wp_gf_form_view` VALUES("46395", "3", "2017-01-10 12:25:07", "207.46.13.8", "15");
INSERT INTO `wp_gf_form_view` VALUES("46396", "2", "2017-01-10 13:10:08", "178.137.161.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("46397", "3", "2017-01-10 13:10:13", "178.137.161.236", "39");
INSERT INTO `wp_gf_form_view` VALUES("46398", "3", "2017-01-10 13:10:13", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46399", "3", "2017-01-10 14:49:09", "68.180.228.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("46400", "3", "2017-01-10 15:13:53", "163.172.65.110", "11");
INSERT INTO `wp_gf_form_view` VALUES("46401", "3", "2017-01-10 16:17:36", "163.172.66.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("46402", "3", "2017-01-10 17:23:20", "24.68.37.174", "226");
INSERT INTO `wp_gf_form_view` VALUES("46403", "10", "2017-01-10 17:45:32", "46.161.9.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("46404", "3", "2017-01-10 18:08:31", "74.121.35.59", "71");
INSERT INTO `wp_gf_form_view` VALUES("46405", "3", "2017-01-10 19:21:12", "163.172.66.163", "62");
INSERT INTO `wp_gf_form_view` VALUES("46406", "3", "2017-01-10 20:24:18", "50.98.58.82", "46");
INSERT INTO `wp_gf_form_view` VALUES("46407", "2", "2017-01-10 20:28:53", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46408", "15", "2017-01-10 20:58:29", "157.55.39.209", "4");
INSERT INTO `wp_gf_form_view` VALUES("46409", "3", "2017-01-10 21:16:55", "207.46.13.8", "88");
INSERT INTO `wp_gf_form_view` VALUES("46410", "15", "2017-01-10 21:16:56", "207.46.13.8", "22");
INSERT INTO `wp_gf_form_view` VALUES("46411", "2", "2017-01-10 21:44:06", "178.137.161.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("46412", "3", "2017-01-10 22:04:30", "24.108.18.240", "80");
INSERT INTO `wp_gf_form_view` VALUES("46413", "15", "2017-01-10 22:04:31", "24.108.18.240", "20");
INSERT INTO `wp_gf_form_view` VALUES("46414", "2", "2017-01-10 22:32:34", "178.137.18.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("46415", "3", "2017-01-10 23:04:53", "68.180.228.164", "65");
INSERT INTO `wp_gf_form_view` VALUES("46416", "15", "2017-01-10 23:13:47", "99.224.212.74", "16");
INSERT INTO `wp_gf_form_view` VALUES("46417", "3", "2017-01-11 00:12:54", "24.108.188.226", "136");
INSERT INTO `wp_gf_form_view` VALUES("46418", "15", "2017-01-11 00:12:55", "24.108.188.226", "39");
INSERT INTO `wp_gf_form_view` VALUES("46419", "11", "2017-01-11 00:51:21", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46420", "3", "2017-01-11 01:03:53", "24.68.157.245", "128");
INSERT INTO `wp_gf_form_view` VALUES("46421", "15", "2017-01-11 01:03:53", "24.68.157.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("46422", "2", "2017-01-11 01:09:02", "134.249.50.153", "7");
INSERT INTO `wp_gf_form_view` VALUES("46423", "2", "2017-01-11 01:09:02", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("46424", "2", "2017-01-11 01:09:02", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("46425", "3", "2017-01-11 02:25:06", "184.66.142.188", "8");
INSERT INTO `wp_gf_form_view` VALUES("46426", "15", "2017-01-11 02:25:07", "184.66.142.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("46427", "3", "2017-01-11 03:03:56", "67.1.155.185", "41");
INSERT INTO `wp_gf_form_view` VALUES("46428", "15", "2017-01-11 03:03:58", "67.1.155.185", "10");
INSERT INTO `wp_gf_form_view` VALUES("46429", "3", "2017-01-11 04:00:48", "66.102.6.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("46430", "15", "2017-01-11 04:00:49", "66.102.6.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("46431", "3", "2017-01-11 05:21:31", "163.172.66.162", "25");
INSERT INTO `wp_gf_form_view` VALUES("46432", "15", "2017-01-11 05:21:32", "163.172.66.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("46433", "3", "2017-01-11 06:07:18", "202.46.55.182", "8");
INSERT INTO `wp_gf_form_view` VALUES("46434", "15", "2017-01-11 06:07:19", "202.46.55.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("46435", "3", "2017-01-11 07:01:56", "64.180.87.3", "87");
INSERT INTO `wp_gf_form_view` VALUES("46436", "3", "2017-01-11 07:01:56", "64.180.87.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("46437", "3", "2017-01-11 07:01:56", "64.180.87.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("46438", "15", "2017-01-11 07:02:09", "64.180.87.3", "22");
INSERT INTO `wp_gf_form_view` VALUES("46439", "3", "2017-01-11 08:14:49", "68.180.228.164", "49");
INSERT INTO `wp_gf_form_view` VALUES("46440", "15", "2017-01-11 08:14:49", "68.180.228.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("46441", "3", "2017-01-11 09:36:50", "66.249.79.148", "74");
INSERT INTO `wp_gf_form_view` VALUES("46442", "15", "2017-01-11 09:36:51", "66.249.79.148", "18");
INSERT INTO `wp_gf_form_view` VALUES("46443", "13", "2017-01-11 09:49:28", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("46444", "12", "2017-01-11 09:57:45", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("46445", "15", "2017-01-11 11:19:57", "40.77.167.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("46446", "3", "2017-01-11 11:20:01", "40.77.167.3", "24");
INSERT INTO `wp_gf_form_view` VALUES("46447", "13", "2017-01-11 11:49:06", "91.216.245.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("46448", "5", "2017-01-11 12:28:04", "77.75.77.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("46449", "3", "2017-01-11 12:28:05", "77.75.77.72", "16");
INSERT INTO `wp_gf_form_view` VALUES("46450", "15", "2017-01-11 12:28:06", "77.75.77.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("46451", "3", "2017-01-11 13:14:43", "77.75.77.54", "56");
INSERT INTO `wp_gf_form_view` VALUES("46452", "15", "2017-01-11 13:14:43", "77.75.77.54", "24");
INSERT INTO `wp_gf_form_view` VALUES("46453", "3", "2017-01-11 14:21:43", "68.180.228.164", "57");
INSERT INTO `wp_gf_form_view` VALUES("46454", "15", "2017-01-11 14:21:43", "68.180.228.164", "22");
INSERT INTO `wp_gf_form_view` VALUES("46455", "3", "2017-01-11 15:39:13", "77.75.77.95", "8");
INSERT INTO `wp_gf_form_view` VALUES("46456", "15", "2017-01-11 15:39:18", "77.75.77.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("46457", "15", "2017-01-11 16:02:13", "24.68.2.22", "25");
INSERT INTO `wp_gf_form_view` VALUES("46458", "3", "2017-01-11 16:02:13", "24.68.2.22", "80");
INSERT INTO `wp_gf_form_view` VALUES("46459", "2", "2017-01-11 16:08:20", "178.137.161.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("46460", "3", "2017-01-11 17:46:24", "207.6.237.138", "48");
INSERT INTO `wp_gf_form_view` VALUES("46461", "15", "2017-01-11 17:46:55", "207.6.237.138", "13");
INSERT INTO `wp_gf_form_view` VALUES("46462", "3", "2017-01-11 18:06:58", "202.46.58.209", "72");
INSERT INTO `wp_gf_form_view` VALUES("46463", "15", "2017-01-11 18:06:58", "202.46.58.209", "22");
INSERT INTO `wp_gf_form_view` VALUES("46464", "2", "2017-01-11 18:43:38", "178.137.18.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("46465", "11", "2017-01-11 18:46:27", "77.75.78.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("46466", "3", "2017-01-11 19:13:56", "202.46.52.119", "106");
INSERT INTO `wp_gf_form_view` VALUES("46467", "15", "2017-01-11 19:13:57", "202.46.52.119", "29");
INSERT INTO `wp_gf_form_view` VALUES("46468", "2", "2017-01-11 19:23:06", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("46469", "13", "2017-01-11 19:23:28", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("46470", "15", "2017-01-11 20:11:39", "184.66.248.195", "42");
INSERT INTO `wp_gf_form_view` VALUES("46471", "3", "2017-01-11 20:12:09", "184.66.248.195", "162");
INSERT INTO `wp_gf_form_view` VALUES("46472", "3", "2017-01-11 21:01:06", "207.194.133.9", "208");
INSERT INTO `wp_gf_form_view` VALUES("46473", "15", "2017-01-11 21:01:27", "207.194.133.9", "52");
INSERT INTO `wp_gf_form_view` VALUES("46474", "14", "2017-01-11 21:37:23", "184.66.3.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("46475", "15", "2017-01-11 22:07:54", "154.20.29.44", "45");
INSERT INTO `wp_gf_form_view` VALUES("46476", "3", "2017-01-11 22:08:04", "154.20.29.44", "179");
INSERT INTO `wp_gf_form_view` VALUES("46477", "3", "2017-01-11 23:08:48", "66.249.79.108", "48");
INSERT INTO `wp_gf_form_view` VALUES("46478", "15", "2017-01-11 23:08:49", "66.249.79.108", "13");
INSERT INTO `wp_gf_form_view` VALUES("46479", "10", "2017-01-11 23:17:29", "163.172.66.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("46480", "2", "2017-01-12 00:08:13", "5.248.196.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("46481", "3", "2017-01-12 00:08:13", "5.248.196.252", "80");
INSERT INTO `wp_gf_form_view` VALUES("46482", "15", "2017-01-12 00:08:14", "5.248.196.252", "21");
INSERT INTO `wp_gf_form_view` VALUES("46483", "11", "2017-01-12 00:29:39", "66.249.79.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("46484", "2", "2017-01-12 01:01:35", "178.137.16.194", "7");
INSERT INTO `wp_gf_form_view` VALUES("46485", "3", "2017-01-12 01:01:35", "178.137.16.194", "243");
INSERT INTO `wp_gf_form_view` VALUES("46486", "15", "2017-01-12 01:01:36", "178.137.16.194", "60");
INSERT INTO `wp_gf_form_view` VALUES("46487", "14", "2017-01-12 01:41:40", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("46488", "3", "2017-01-12 02:14:25", "68.180.228.164", "192");
INSERT INTO `wp_gf_form_view` VALUES("46489", "15", "2017-01-12 02:14:26", "68.180.228.164", "51");
INSERT INTO `wp_gf_form_view` VALUES("46490", "2", "2017-01-12 02:52:22", "178.137.16.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("46491", "3", "2017-01-12 03:15:47", "217.69.133.232", "40");
INSERT INTO `wp_gf_form_view` VALUES("46492", "15", "2017-01-12 03:15:48", "217.69.133.232", "10");
INSERT INTO `wp_gf_form_view` VALUES("46493", "3", "2017-01-12 04:11:07", "40.77.167.75", "80");
INSERT INTO `wp_gf_form_view` VALUES("46494", "15", "2017-01-12 04:11:08", "40.77.167.75", "18");
INSERT INTO `wp_gf_form_view` VALUES("46495", "2", "2017-01-12 04:37:03", "216.232.144.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("46496", "3", "2017-01-12 05:00:06", "24.108.216.76", "433");
INSERT INTO `wp_gf_form_view` VALUES("46497", "15", "2017-01-12 05:00:06", "24.108.216.76", "120");
INSERT INTO `wp_gf_form_view` VALUES("46498", "14", "2017-01-12 05:03:29", "24.108.216.76", "6");
INSERT INTO `wp_gf_form_view` VALUES("46499", "11", "2017-01-12 05:04:14", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("46500", "2", "2017-01-12 05:05:56", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("46501", "3", "2017-01-12 06:25:57", "217.69.133.229", "48");
INSERT INTO `wp_gf_form_view` VALUES("46502", "15", "2017-01-12 06:25:58", "217.69.133.229", "12");
INSERT INTO `wp_gf_form_view` VALUES("46503", "2", "2017-01-12 06:38:26", "178.137.18.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("46504", "3", "2017-01-12 07:54:45", "163.172.66.107", "8");
INSERT INTO `wp_gf_form_view` VALUES("46505", "15", "2017-01-12 07:54:51", "163.172.66.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("46506", "3", "2017-01-12 08:00:14", "217.69.133.231", "24");
INSERT INTO `wp_gf_form_view` VALUES("46507", "15", "2017-01-12 08:00:14", "217.69.133.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("46508", "3", "2017-01-12 09:10:00", "204.9.143.25", "105");
INSERT INTO `wp_gf_form_view` VALUES("46509", "15", "2017-01-12 09:10:05", "204.9.143.25", "26");
INSERT INTO `wp_gf_form_view` VALUES("46510", "10", "2017-01-12 09:33:52", "217.69.133.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("46511", "2", "2017-01-12 09:43:49", "178.137.16.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("46512", "3", "2017-01-12 11:09:10", "217.69.133.230", "43");
INSERT INTO `wp_gf_form_view` VALUES("46513", "15", "2017-01-12 11:09:12", "217.69.133.230", "10");
INSERT INTO `wp_gf_form_view` VALUES("46514", "3", "2017-01-12 12:14:46", "68.180.228.164", "34");
INSERT INTO `wp_gf_form_view` VALUES("46515", "15", "2017-01-12 12:14:48", "68.180.228.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("46516", "5", "2017-01-12 12:43:46", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("46517", "3", "2017-01-12 13:50:01", "68.180.228.164", "11");
INSERT INTO `wp_gf_form_view` VALUES("46518", "15", "2017-01-12 13:50:04", "68.180.228.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("46519", "3", "2017-01-12 14:17:47", "217.69.133.69", "72");
INSERT INTO `wp_gf_form_view` VALUES("46520", "15", "2017-01-12 14:17:47", "217.69.133.69", "20");
INSERT INTO `wp_gf_form_view` VALUES("46521", "15", "2017-01-12 15:02:50", "66.249.79.112", "18");
INSERT INTO `wp_gf_form_view` VALUES("46522", "3", "2017-01-12 15:02:50", "66.249.79.112", "71");
INSERT INTO `wp_gf_form_view` VALUES("46523", "15", "2017-01-12 16:22:39", "46.4.27.199", "13");
INSERT INTO `wp_gf_form_view` VALUES("46524", "3", "2017-01-12 16:22:47", "46.4.27.199", "40");
INSERT INTO `wp_gf_form_view` VALUES("46525", "3", "2017-01-12 17:00:31", "77.75.76.166", "123");
INSERT INTO `wp_gf_form_view` VALUES("46526", "15", "2017-01-12 17:00:31", "77.75.76.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("46527", "3", "2017-01-12 18:22:20", "77.75.77.62", "96");
INSERT INTO `wp_gf_form_view` VALUES("46528", "15", "2017-01-12 18:22:35", "77.75.77.62", "41");
INSERT INTO `wp_gf_form_view` VALUES("46529", "3", "2017-01-12 19:00:59", "209.52.88.124", "89");
INSERT INTO `wp_gf_form_view` VALUES("46530", "15", "2017-01-12 19:01:00", "209.52.88.124", "22");
INSERT INTO `wp_gf_form_view` VALUES("46531", "14", "2017-01-12 19:12:08", "184.66.234.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("46532", "3", "2017-01-12 20:08:51", "176.68.145.150", "59");
INSERT INTO `wp_gf_form_view` VALUES("46533", "15", "2017-01-12 20:08:53", "176.68.145.150", "16");
INSERT INTO `wp_gf_form_view` VALUES("46534", "10", "2017-01-12 20:29:00", "77.75.78.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("46535", "3", "2017-01-12 21:08:42", "70.67.51.254", "166");
INSERT INTO `wp_gf_form_view` VALUES("46536", "15", "2017-01-12 21:08:43", "70.67.51.254", "50");
INSERT INTO `wp_gf_form_view` VALUES("46537", "14", "2017-01-12 21:47:33", "70.66.168.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("46538", "3", "2017-01-12 22:06:08", "66.249.79.112", "98");
INSERT INTO `wp_gf_form_view` VALUES("46539", "15", "2017-01-12 22:06:09", "66.249.79.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("46540", "3", "2017-01-12 23:00:39", "68.180.228.164", "32");
INSERT INTO `wp_gf_form_view` VALUES("46541", "15", "2017-01-12 23:00:40", "68.180.228.164", "9");
INSERT INTO `wp_gf_form_view` VALUES("46542", "11", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46543", "3", "2017-01-13 00:53:18", "148.251.75.46", "189");
INSERT INTO `wp_gf_form_view` VALUES("46544", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46545", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46546", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46547", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46548", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46549", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46550", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46551", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46552", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46553", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46554", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46555", "3", "2017-01-13 00:53:19", "148.251.75.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("46556", "15", "2017-01-13 00:53:19", "148.251.75.46", "87");
INSERT INTO `wp_gf_form_view` VALUES("46557", "3", "2017-01-13 01:03:03", "108.180.5.29", "21");
INSERT INTO `wp_gf_form_view` VALUES("46558", "15", "2017-01-13 01:03:04", "108.180.5.29", "9");
INSERT INTO `wp_gf_form_view` VALUES("46559", "3", "2017-01-13 02:11:32", "66.102.6.94", "110");
INSERT INTO `wp_gf_form_view` VALUES("46560", "15", "2017-01-13 02:11:32", "66.102.6.94", "45");
INSERT INTO `wp_gf_form_view` VALUES("46561", "14", "2017-01-13 02:33:57", "118.97.192.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("46562", "5", "2017-01-13 03:48:25", "77.75.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("46563", "3", "2017-01-13 03:48:26", "77.75.76.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("46564", "15", "2017-01-13 03:48:26", "77.75.76.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("46565", "15", "2017-01-13 04:02:16", "184.66.252.175", "11");
INSERT INTO `wp_gf_form_view` VALUES("46566", "3", "2017-01-13 04:02:16", "184.66.252.175", "22");
INSERT INTO `wp_gf_form_view` VALUES("46567", "3", "2017-01-13 05:01:02", "163.172.65.249", "71");
INSERT INTO `wp_gf_form_view` VALUES("46568", "15", "2017-01-13 05:01:03", "163.172.65.249", "31");
INSERT INTO `wp_gf_form_view` VALUES("46569", "2", "2017-01-13 05:39:49", "134.249.50.153", "4");
INSERT INTO `wp_gf_form_view` VALUES("46570", "2", "2017-01-13 05:39:49", "134.249.50.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("46571", "3", "2017-01-13 06:01:57", "217.69.133.228", "217");
INSERT INTO `wp_gf_form_view` VALUES("46572", "15", "2017-01-13 06:01:58", "217.69.133.228", "93");
INSERT INTO `wp_gf_form_view` VALUES("46573", "10", "2017-01-13 06:57:37", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46574", "11", "2017-01-13 06:57:48", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46575", "2", "2017-01-13 06:58:49", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46576", "3", "2017-01-13 07:00:09", "136.243.36.94", "671");
INSERT INTO `wp_gf_form_view` VALUES("46577", "15", "2017-01-13 07:00:10", "136.243.36.94", "270");
INSERT INTO `wp_gf_form_view` VALUES("46578", "2", "2017-01-13 07:12:28", "178.137.161.236", "5");
INSERT INTO `wp_gf_form_view` VALUES("46579", "2", "2017-01-13 07:12:28", "178.137.161.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46580", "10", "2017-01-13 07:18:32", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("46581", "14", "2017-01-13 07:27:58", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46582", "13", "2017-01-13 07:42:16", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46583", "3", "2017-01-13 08:14:11", "195.154.187.40", "78");
INSERT INTO `wp_gf_form_view` VALUES("46584", "15", "2017-01-13 08:14:11", "195.154.187.40", "35");
INSERT INTO `wp_gf_form_view` VALUES("46585", "3", "2017-01-13 09:11:38", "217.69.133.228", "21");
INSERT INTO `wp_gf_form_view` VALUES("46586", "15", "2017-01-13 09:11:39", "217.69.133.228", "9");
INSERT INTO `wp_gf_form_view` VALUES("46587", "3", "2017-01-13 10:20:29", "68.180.228.164", "35");
INSERT INTO `wp_gf_form_view` VALUES("46588", "15", "2017-01-13 10:20:29", "68.180.228.164", "15");
INSERT INTO `wp_gf_form_view` VALUES("46589", "3", "2017-01-13 11:43:20", "5.164.189.210", "35");
INSERT INTO `wp_gf_form_view` VALUES("46590", "15", "2017-01-13 11:43:20", "5.164.189.210", "15");
INSERT INTO `wp_gf_form_view` VALUES("46591", "3", "2017-01-13 12:19:56", "217.69.133.229", "36");
INSERT INTO `wp_gf_form_view` VALUES("46592", "15", "2017-01-13 12:19:59", "217.69.133.229", "16");
INSERT INTO `wp_gf_form_view` VALUES("46593", "3", "2017-01-13 13:09:22", "204.44.94.177", "65");
INSERT INTO `wp_gf_form_view` VALUES("46594", "15", "2017-01-13 13:09:23", "204.44.94.177", "27");
INSERT INTO `wp_gf_form_view` VALUES("46595", "14", "2017-01-13 13:59:07", "173.254.226.184", "3");
INSERT INTO `wp_gf_form_view` VALUES("46596", "14", "2017-01-13 14:01:19", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("46597", "3", "2017-01-13 14:01:19", "188.212.23.135", "21");
INSERT INTO `wp_gf_form_view` VALUES("46598", "15", "2017-01-13 14:01:20", "188.212.23.135", "9");
INSERT INTO `wp_gf_form_view` VALUES("46599", "3", "2017-01-13 15:04:42", "104.144.228.45", "82");
INSERT INTO `wp_gf_form_view` VALUES("46600", "15", "2017-01-13 15:04:43", "104.144.228.45", "33");
INSERT INTO `wp_gf_form_view` VALUES("46601", "10", "2017-01-13 15:28:32", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("46602", "14", "2017-01-13 15:45:40", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("46603", "15", "2017-01-13 16:00:41", "70.66.171.39", "7");
INSERT INTO `wp_gf_form_view` VALUES("46604", "3", "2017-01-13 16:00:43", "70.66.171.39", "14");
INSERT INTO `wp_gf_form_view` VALUES("46605", "3", "2017-01-13 17:03:38", "163.172.65.50", "50");
INSERT INTO `wp_gf_form_view` VALUES("46606", "15", "2017-01-13 17:04:22", "217.69.133.229", "21");
INSERT INTO `wp_gf_form_view` VALUES("46607", "14", "2017-01-13 17:34:14", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("46608", "3", "2017-01-13 18:18:10", "207.194.94.204", "7");
INSERT INTO `wp_gf_form_view` VALUES("46609", "15", "2017-01-13 18:18:19", "207.194.94.204", "3");
INSERT INTO `wp_gf_form_view` VALUES("46610", "3", "2017-01-13 19:01:15", "199.21.99.202", "35");
INSERT INTO `wp_gf_form_view` VALUES("46611", "15", "2017-01-13 19:01:29", "199.21.99.202", "15");
INSERT INTO `wp_gf_form_view` VALUES("46612", "14", "2017-01-13 19:41:05", "188.212.23.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("46613", "3", "2017-01-13 20:07:53", "199.21.99.202", "42");
INSERT INTO `wp_gf_form_view` VALUES("46614", "15", "2017-01-13 20:08:11", "199.21.99.202", "18");
INSERT INTO `wp_gf_form_view` VALUES("46615", "3", "2017-01-13 22:18:17", "74.208.88.98", "260");
INSERT INTO `wp_gf_form_view` VALUES("46616", "15", "2017-01-13 22:18:25", "74.208.88.98", "114");
INSERT INTO `wp_gf_form_view` VALUES("46617", "11", "2017-01-13 22:18:30", "74.208.88.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("46618", "2", "2017-01-13 22:19:38", "74.208.88.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("46619", "13", "2017-01-13 23:24:20", "69.157.253.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("46620", "3", "2017-01-13 23:24:25", "69.157.253.213", "87");
INSERT INTO `wp_gf_form_view` VALUES("46621", "15", "2017-01-13 23:24:25", "69.157.253.213", "30");
INSERT INTO `wp_gf_form_view` VALUES("46622", "3", "2017-01-14 00:09:27", "68.180.228.164", "15");
INSERT INTO `wp_gf_form_view` VALUES("46623", "15", "2017-01-14 00:09:28", "68.180.228.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("46624", "14", "2017-01-14 00:24:38", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46625", "3", "2017-01-14 01:04:54", "202.46.55.89", "282");
INSERT INTO `wp_gf_form_view` VALUES("46626", "15", "2017-01-14 01:04:54", "202.46.55.89", "111");
INSERT INTO `wp_gf_form_view` VALUES("46627", "13", "2017-01-14 01:46:29", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("46628", "6", "2017-01-14 01:47:14", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46629", "9", "2017-01-14 01:47:25", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46630", "8", "2017-01-14 01:55:03", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46631", "10", "2017-01-14 01:55:50", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46632", "3", "2017-01-14 03:11:19", "154.20.32.181", "21");
INSERT INTO `wp_gf_form_view` VALUES("46633", "15", "2017-01-14 03:11:19", "154.20.32.181", "9");
INSERT INTO `wp_gf_form_view` VALUES("46634", "3", "2017-01-14 04:18:51", "68.180.228.164", "22");
INSERT INTO `wp_gf_form_view` VALUES("46635", "15", "2017-01-14 04:18:57", "68.180.228.164", "9");
INSERT INTO `wp_gf_form_view` VALUES("46636", "3", "2017-01-14 05:21:21", "198.251.79.137", "233");
INSERT INTO `wp_gf_form_view` VALUES("46637", "15", "2017-01-14 05:21:22", "198.251.79.137", "102");
INSERT INTO `wp_gf_form_view` VALUES("46638", "11", "2017-01-14 05:21:25", "198.251.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("46639", "2", "2017-01-14 05:22:43", "198.251.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("46640", "3", "2017-01-14 06:01:30", "77.75.76.169", "28");
INSERT INTO `wp_gf_form_view` VALUES("46641", "15", "2017-01-14 06:01:30", "77.75.76.169", "12");
INSERT INTO `wp_gf_form_view` VALUES("46642", "15", "2017-01-14 07:05:14", "68.180.228.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("46643", "3", "2017-01-14 07:32:32", "54.89.241.236", "21");
INSERT INTO `wp_gf_form_view` VALUES("46644", "11", "2017-01-14 08:08:53", "77.75.76.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("46645", "3", "2017-01-14 08:08:53", "77.75.76.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("46646", "15", "2017-01-14 08:08:53", "77.75.76.167", "3");
INSERT INTO `wp_gf_form_view` VALUES("46647", "3", "2017-01-14 09:01:07", "77.75.78.172", "21");
INSERT INTO `wp_gf_form_view` VALUES("46648", "15", "2017-01-14 09:01:09", "77.75.78.172", "9");
INSERT INTO `wp_gf_form_view` VALUES("46649", "3", "2017-01-14 10:15:12", "68.180.228.164", "30");
INSERT INTO `wp_gf_form_view` VALUES("46650", "15", "2017-01-14 10:28:44", "220.181.108.153", "12");
INSERT INTO `wp_gf_form_view` VALUES("46651", "3", "2017-01-14 11:35:25", "220.181.108.169", "7");
INSERT INTO `wp_gf_form_view` VALUES("46652", "15", "2017-01-14 11:35:25", "220.181.108.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("46653", "3", "2017-01-14 12:11:04", "68.180.228.164", "7");
INSERT INTO `wp_gf_form_view` VALUES("46654", "15", "2017-01-14 12:11:04", "68.180.228.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("46655", "3", "2017-01-14 13:06:07", "163.172.65.216", "34");
INSERT INTO `wp_gf_form_view` VALUES("46656", "15", "2017-01-14 13:06:08", "163.172.65.216", "12");
INSERT INTO `wp_gf_form_view` VALUES("46657", "2", "2017-01-14 13:17:54", "202.46.50.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("46658", "3", "2017-01-14 14:27:11", "37.187.56.81", "519");
INSERT INTO `wp_gf_form_view` VALUES("46659", "15", "2017-01-14 14:27:13", "37.187.56.81", "226");
INSERT INTO `wp_gf_form_view` VALUES("46660", "11", "2017-01-14 14:27:33", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("46661", "2", "2017-01-14 14:27:38", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("46662", "14", "2017-01-14 14:30:16", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("46663", "3", "2017-01-14 15:32:35", "163.172.64.217", "16");
INSERT INTO `wp_gf_form_view` VALUES("46664", "15", "2017-01-14 15:32:35", "163.172.64.217", "6");
INSERT INTO `wp_gf_form_view` VALUES("46665", "3", "2017-01-14 16:16:31", "163.172.65.10", "22");
INSERT INTO `wp_gf_form_view` VALUES("46666", "15", "2017-01-14 16:16:32", "163.172.65.10", "9");
INSERT INTO `wp_gf_form_view` VALUES("46667", "2", "2017-01-14 16:17:46", "163.172.65.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("46668", "3", "2017-01-14 17:15:05", "68.180.228.164", "7");
INSERT INTO `wp_gf_form_view` VALUES("46669", "15", "2017-01-14 17:15:06", "68.180.228.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("46670", "3", "2017-01-14 18:39:05", "68.180.228.164", "14");
INSERT INTO `wp_gf_form_view` VALUES("46671", "15", "2017-01-14 18:39:07", "68.180.228.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("46672", "3", "2017-01-14 19:04:56", "199.21.99.202", "80");
INSERT INTO `wp_gf_form_view` VALUES("46673", "15", "2017-01-14 19:04:56", "199.21.99.202", "33");
INSERT INTO `wp_gf_form_view` VALUES("46674", "3", "2017-01-14 20:00:27", "184.66.238.122", "49");
INSERT INTO `wp_gf_form_view` VALUES("46675", "15", "2017-01-14 20:00:27", "184.66.238.122", "21");
INSERT INTO `wp_gf_form_view` VALUES("46676", "14", "2017-01-14 20:11:13", "209.107.216.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("46677", "3", "2017-01-14 21:47:23", "40.77.167.75", "22");
INSERT INTO `wp_gf_form_view` VALUES("46678", "15", "2017-01-14 21:47:25", "40.77.167.75", "9");
INSERT INTO `wp_gf_form_view` VALUES("46679", "10", "2017-01-14 21:52:01", "163.172.66.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("46680", "3", "2017-01-14 22:13:58", "202.46.53.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("46681", "15", "2017-01-14 22:13:58", "202.46.53.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("46682", "3", "2017-01-14 23:42:32", "163.172.64.252", "7");
INSERT INTO `wp_gf_form_view` VALUES("46683", "15", "2017-01-14 23:42:32", "163.172.64.252", "3");
INSERT INTO `wp_gf_form_view` VALUES("46684", "3", "2017-01-15 00:23:00", "202.46.51.86", "43");
INSERT INTO `wp_gf_form_view` VALUES("46685", "15", "2017-01-15 00:23:01", "202.46.51.86", "18");
INSERT INTO `wp_gf_form_view` VALUES("46686", "3", "2017-01-15 01:07:31", "68.180.228.164", "30");
INSERT INTO `wp_gf_form_view` VALUES("46687", "15", "2017-01-15 01:07:31", "68.180.228.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("46688", "3", "2017-01-15 02:34:34", "208.114.165.70", "45");
INSERT INTO `wp_gf_form_view` VALUES("46689", "15", "2017-01-15 02:34:37", "208.114.165.70", "18");
INSERT INTO `wp_gf_form_view` VALUES("46690", "3", "2017-01-15 03:24:52", "163.172.66.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("46691", "15", "2017-01-15 03:24:52", "163.172.66.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("46692", "15", "2017-01-15 04:33:35", "66.249.79.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("46693", "3", "2017-01-15 04:33:35", "66.249.79.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("46694", "3", "2017-01-15 05:04:18", "202.46.53.147", "21");
INSERT INTO `wp_gf_form_view` VALUES("46695", "15", "2017-01-15 05:04:18", "202.46.53.147", "9");
INSERT INTO `wp_gf_form_view` VALUES("46696", "3", "2017-01-15 06:02:43", "220.181.108.102", "278");
INSERT INTO `wp_gf_form_view` VALUES("46697", "15", "2017-01-15 06:02:43", "220.181.108.102", "117");
INSERT INTO `wp_gf_form_view` VALUES("46698", "10", "2017-01-15 06:04:31", "199.59.150.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("46699", "11", "2017-01-15 06:16:48", "173.167.63.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("46700", "2", "2017-01-15 06:18:35", "173.167.63.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("46701", "3", "2017-01-15 07:32:09", "52.201.245.104", "45");
INSERT INTO `wp_gf_form_view` VALUES("46702", "15", "2017-01-15 07:32:11", "52.201.245.104", "21");
INSERT INTO `wp_gf_form_view` VALUES("46703", "3", "2017-01-15 08:11:14", "66.249.79.140", "21");
INSERT INTO `wp_gf_form_view` VALUES("46704", "15", "2017-01-15 08:11:15", "66.249.79.140", "9");
INSERT INTO `wp_gf_form_view` VALUES("46705", "9", "2017-01-15 08:59:57", "163.172.66.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("46706", "3", "2017-01-15 10:47:35", "68.180.228.50", "8");
INSERT INTO `wp_gf_form_view` VALUES("46707", "15", "2017-01-15 10:47:37", "68.180.228.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("46708", "3", "2017-01-15 11:21:34", "66.249.79.144", "44");
INSERT INTO `wp_gf_form_view` VALUES("46709", "15", "2017-01-15 11:21:35", "66.249.79.144", "18");
INSERT INTO `wp_gf_form_view` VALUES("46710", "14", "2017-01-15 11:32:05", "82.165.151.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("46711", "3", "2017-01-15 12:38:09", "66.249.79.144", "7");
INSERT INTO `wp_gf_form_view` VALUES("46712", "15", "2017-01-15 12:38:10", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("46713", "3", "2017-01-15 13:16:50", "68.180.228.164", "16");
INSERT INTO `wp_gf_form_view` VALUES("46714", "15", "2017-01-15 13:16:51", "68.180.228.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("46715", "3", "2017-01-15 14:03:08", "163.172.66.77", "31");
INSERT INTO `wp_gf_form_view` VALUES("46716", "15", "2017-01-15 14:03:08", "163.172.66.77", "12");
INSERT INTO `wp_gf_form_view` VALUES("46717", "3", "2017-01-15 15:40:48", "195.154.187.40", "30");
INSERT INTO `wp_gf_form_view` VALUES("46718", "15", "2017-01-15 15:40:48", "195.154.187.40", "12");
INSERT INTO `wp_gf_form_view` VALUES("46719", "3", "2017-01-15 16:10:27", "68.180.228.164", "265");
INSERT INTO `wp_gf_form_view` VALUES("46720", "15", "2017-01-15 16:10:27", "68.180.228.164", "111");
INSERT INTO `wp_gf_form_view` VALUES("46721", "3", "2017-01-15 18:24:18", "202.46.56.14", "36");
INSERT INTO `wp_gf_form_view` VALUES("46722", "15", "2017-01-15 18:24:28", "202.46.56.14", "15");
INSERT INTO `wp_gf_form_view` VALUES("46723", "3", "2017-01-15 19:40:14", "96.50.97.214", "14");
INSERT INTO `wp_gf_form_view` VALUES("46724", "15", "2017-01-15 19:40:26", "96.50.97.214", "6");
INSERT INTO `wp_gf_form_view` VALUES("46725", "3", "2017-01-15 20:14:29", "68.180.228.164", "253");
INSERT INTO `wp_gf_form_view` VALUES("46726", "15", "2017-01-15 20:14:29", "68.180.228.164", "108");
INSERT INTO `wp_gf_form_view` VALUES("46727", "11", "2017-01-15 20:22:12", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("46728", "2", "2017-01-15 20:23:43", "50.252.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("46729", "3", "2017-01-15 21:27:59", "163.172.65.43", "233");
INSERT INTO `wp_gf_form_view` VALUES("46730", "15", "2017-01-15 21:28:04", "163.172.65.43", "99");
INSERT INTO `wp_gf_form_view` VALUES("46731", "11", "2017-01-15 21:52:16", "164.77.43.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("46732", "2", "2017-01-15 21:53:17", "164.77.43.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("46733", "3", "2017-01-15 22:04:47", "35.167.171.157", "42");
INSERT INTO `wp_gf_form_view` VALUES("46734", "15", "2017-01-15 22:04:48", "35.167.171.157", "18");
INSERT INTO `wp_gf_form_view` VALUES("46735", "3", "2017-01-15 23:13:13", "96.50.5.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("46736", "15", "2017-01-15 23:13:16", "96.50.5.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("46737", "3", "2017-01-16 00:45:00", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46738", "3", "2017-01-16 03:01:13", "66.249.79.140", "7");
INSERT INTO `wp_gf_form_view` VALUES("46739", "15", "2017-01-16 03:01:15", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("46740", "3", "2017-01-16 04:06:03", "23.231.110.169", "43");
INSERT INTO `wp_gf_form_view` VALUES("46741", "15", "2017-01-16 04:06:03", "23.231.110.169", "18");
INSERT INTO `wp_gf_form_view` VALUES("46742", "3", "2017-01-16 05:20:12", "176.104.53.131", "56");
INSERT INTO `wp_gf_form_view` VALUES("46743", "15", "2017-01-16 05:20:15", "176.104.53.131", "24");
INSERT INTO `wp_gf_form_view` VALUES("46744", "3", "2017-01-16 06:33:59", "24.108.188.211", "31");
INSERT INTO `wp_gf_form_view` VALUES("46745", "15", "2017-01-16 06:34:00", "24.108.188.211", "12");
INSERT INTO `wp_gf_form_view` VALUES("46746", "14", "2017-01-16 06:57:45", "163.172.65.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("46747", "3", "2017-01-16 07:07:11", "136.243.36.94", "663");
INSERT INTO `wp_gf_form_view` VALUES("46748", "15", "2017-01-16 07:07:14", "136.243.36.94", "285");
INSERT INTO `wp_gf_form_view` VALUES("46749", "2", "2017-01-16 07:08:14", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46750", "14", "2017-01-16 07:18:49", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46751", "13", "2017-01-16 07:24:17", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46752", "6", "2017-01-16 07:26:24", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46753", "9", "2017-01-16 07:28:25", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46754", "8", "2017-01-16 07:39:57", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46755", "10", "2017-01-16 07:41:02", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("46756", "3", "2017-01-16 08:14:46", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("46757", "15", "2017-01-16 08:14:47", "66.249.79.144", "9");
INSERT INTO `wp_gf_form_view` VALUES("46758", "10", "2017-01-16 08:43:51", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46759", "3", "2017-01-16 09:41:44", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46760", "3", "2017-01-16 10:06:02", "70.35.194.235", "218");
INSERT INTO `wp_gf_form_view` VALUES("46761", "15", "2017-01-16 10:06:02", "70.35.194.235", "93");
INSERT INTO `wp_gf_form_view` VALUES("46762", "11", "2017-01-16 10:06:05", "70.35.194.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("46763", "2", "2017-01-16 10:06:57", "70.35.194.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("46764", "3", "2017-01-16 11:40:27", "202.46.54.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("46765", "15", "2017-01-16 11:40:28", "202.46.54.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("46766", "3", "2017-01-16 12:54:37", "54.174.154.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("46767", "15", "2017-01-16 12:54:37", "54.174.154.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("46768", "3", "2017-01-16 13:07:31", "52.0.137.234", "77");
INSERT INTO `wp_gf_form_view` VALUES("46769", "15", "2017-01-16 13:07:32", "52.0.137.234", "33");
INSERT INTO `wp_gf_form_view` VALUES("46770", "2", "2017-01-16 13:07:40", "52.0.137.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("46771", "11", "2017-01-16 13:08:01", "162.217.145.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("46772", "3", "2017-01-16 14:16:12", "207.46.13.118", "22");
INSERT INTO `wp_gf_form_view` VALUES("46773", "15", "2017-01-16 14:16:15", "207.46.13.118", "9");
INSERT INTO `wp_gf_form_view` VALUES("46774", "3", "2017-01-16 15:32:08", "96.54.51.42", "49");
INSERT INTO `wp_gf_form_view` VALUES("46775", "15", "2017-01-16 15:32:11", "96.54.51.42", "21");
INSERT INTO `wp_gf_form_view` VALUES("46776", "10", "2017-01-16 15:51:05", "163.172.66.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("46777", "3", "2017-01-16 16:21:15", "68.180.228.164", "34");
INSERT INTO `wp_gf_form_view` VALUES("46778", "15", "2017-01-16 16:21:15", "68.180.228.164", "16");
INSERT INTO `wp_gf_form_view` VALUES("46779", "3", "2017-01-16 17:18:06", "66.249.79.140", "37");
INSERT INTO `wp_gf_form_view` VALUES("46780", "15", "2017-01-16 17:18:13", "66.249.79.140", "15");
INSERT INTO `wp_gf_form_view` VALUES("46781", "9", "2017-01-16 17:56:57", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46782", "3", "2017-01-16 18:03:21", "209.52.88.70", "29");
INSERT INTO `wp_gf_form_view` VALUES("46783", "15", "2017-01-16 18:03:21", "209.52.88.70", "12");
INSERT INTO `wp_gf_form_view` VALUES("46784", "3", "2017-01-16 19:04:23", "72.2.0.130", "98");
INSERT INTO `wp_gf_form_view` VALUES("46785", "15", "2017-01-16 19:04:28", "72.2.0.130", "43");
INSERT INTO `wp_gf_form_view` VALUES("46786", "3", "2017-01-16 20:02:55", "54.243.142.136", "28");
INSERT INTO `wp_gf_form_view` VALUES("46787", "15", "2017-01-16 20:02:55", "54.243.142.136", "12");
INSERT INTO `wp_gf_form_view` VALUES("46788", "3", "2017-01-16 21:06:04", "192.151.178.180", "49");
INSERT INTO `wp_gf_form_view` VALUES("46789", "15", "2017-01-16 21:06:05", "192.151.178.180", "21");
INSERT INTO `wp_gf_form_view` VALUES("46790", "3", "2017-01-16 22:49:59", "104.131.217.20", "598");
INSERT INTO `wp_gf_form_view` VALUES("46791", "15", "2017-01-16 22:50:01", "104.131.217.20", "275");
INSERT INTO `wp_gf_form_view` VALUES("46792", "14", "2017-01-16 22:55:33", "104.131.217.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("46793", "11", "2017-01-16 22:55:43", "104.131.217.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("46794", "15", "2017-01-16 23:00:00", "104.131.217.20", "1371");
INSERT INTO `wp_gf_form_view` VALUES("46795", "3", "2017-01-16 23:00:04", "104.131.217.20", "3106");
INSERT INTO `wp_gf_form_view` VALUES("46796", "6", "2017-01-16 23:13:39", "104.131.217.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("46797", "9", "2017-01-16 23:22:29", "104.131.217.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("46798", "10", "2017-01-16 23:37:09", "104.131.217.20", "6");
INSERT INTO `wp_gf_form_view` VALUES("46799", "3", "2017-01-17 00:00:04", "202.46.53.55", "733");
INSERT INTO `wp_gf_form_view` VALUES("46800", "15", "2017-01-17 00:00:05", "202.46.53.55", "321");
INSERT INTO `wp_gf_form_view` VALUES("46801", "2", "2017-01-17 00:04:07", "104.131.217.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("46802", "13", "2017-01-17 00:13:06", "104.131.217.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("46803", "14", "2017-01-17 00:14:02", "37.59.37.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("46804", "3", "2017-01-17 01:20:07", "205.250.86.162", "58");
INSERT INTO `wp_gf_form_view` VALUES("46805", "15", "2017-01-17 01:20:07", "205.250.86.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("46806", "14", "2017-01-17 01:56:26", "103.58.117.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("46807", "3", "2017-01-17 02:01:52", "24.108.18.195", "192");
INSERT INTO `wp_gf_form_view` VALUES("46808", "15", "2017-01-17 02:01:52", "24.108.18.195", "82");
INSERT INTO `wp_gf_form_view` VALUES("46809", "14", "2017-01-17 02:02:52", "24.108.18.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("46810", "3", "2017-01-17 03:29:52", "205.250.180.14", "134");
INSERT INTO `wp_gf_form_view` VALUES("46811", "15", "2017-01-17 03:29:53", "205.250.180.14", "57");
INSERT INTO `wp_gf_form_view` VALUES("46812", "14", "2017-01-17 03:34:13", "24.68.113.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("46813", "3", "2017-01-17 05:15:55", "207.46.13.118", "35");
INSERT INTO `wp_gf_form_view` VALUES("46814", "15", "2017-01-17 05:15:58", "207.46.13.118", "16");
INSERT INTO `wp_gf_form_view` VALUES("46815", "14", "2017-01-17 05:23:46", "188.166.179.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("46816", "3", "2017-01-17 06:42:33", "184.66.142.188", "21");
INSERT INTO `wp_gf_form_view` VALUES("46817", "15", "2017-01-17 06:42:34", "184.66.142.188", "9");
INSERT INTO `wp_gf_form_view` VALUES("46818", "3", "2017-01-17 07:14:38", "207.194.94.23", "208");
INSERT INTO `wp_gf_form_view` VALUES("46819", "15", "2017-01-17 07:14:47", "207.194.94.23", "76");
INSERT INTO `wp_gf_form_view` VALUES("46820", "2", "2017-01-17 07:23:05", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46821", "9", "2017-01-17 07:39:34", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("46822", "8", "2017-01-17 07:40:03", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("46823", "10", "2017-01-17 07:43:23", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("46824", "6", "2017-01-17 07:50:07", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("46825", "3", "2017-01-17 09:42:46", "66.249.79.140", "14");
INSERT INTO `wp_gf_form_view` VALUES("46826", "15", "2017-01-17 09:42:49", "66.249.79.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("46827", "14", "2017-01-17 10:13:18", "201.90.120.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("46828", "3", "2017-01-17 10:13:18", "201.90.120.194", "7");
INSERT INTO `wp_gf_form_view` VALUES("46829", "15", "2017-01-17 10:13:19", "201.90.120.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("46830", "3", "2017-01-17 11:04:22", "204.79.180.221", "14");
INSERT INTO `wp_gf_form_view` VALUES("46831", "15", "2017-01-17 11:04:28", "204.79.180.221", "6");
INSERT INTO `wp_gf_form_view` VALUES("46832", "3", "2017-01-17 12:10:21", "194.187.170.126", "35");
INSERT INTO `wp_gf_form_view` VALUES("46833", "15", "2017-01-17 12:10:21", "194.187.170.126", "15");
INSERT INTO `wp_gf_form_view` VALUES("46834", "3", "2017-01-17 13:03:41", "68.180.228.164", "28");
INSERT INTO `wp_gf_form_view` VALUES("46835", "15", "2017-01-17 13:03:41", "68.180.228.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("46836", "3", "2017-01-17 14:41:27", "157.55.39.99", "7");
INSERT INTO `wp_gf_form_view` VALUES("46837", "15", "2017-01-17 14:41:29", "157.55.39.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("46838", "3", "2017-01-17 15:14:40", "66.249.79.144", "7");
INSERT INTO `wp_gf_form_view` VALUES("46839", "15", "2017-01-17 15:14:40", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("46840", "3", "2017-01-17 16:11:50", "50.92.249.152", "91");
INSERT INTO `wp_gf_form_view` VALUES("46841", "15", "2017-01-17 16:11:51", "50.92.249.152", "40");
INSERT INTO `wp_gf_form_view` VALUES("46842", "14", "2017-01-17 16:14:36", "50.92.249.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("46843", "3", "2017-01-17 17:11:07", "68.180.228.164", "36");
INSERT INTO `wp_gf_form_view` VALUES("46844", "15", "2017-01-17 17:46:26", "154.5.138.57", "15");
INSERT INTO `wp_gf_form_view` VALUES("46845", "3", "2017-01-17 18:09:08", "163.172.66.39", "345");
INSERT INTO `wp_gf_form_view` VALUES("46846", "15", "2017-01-17 18:09:08", "163.172.66.39", "155");
INSERT INTO `wp_gf_form_view` VALUES("46847", "2", "2017-01-17 18:11:03", "5.248.196.252", "4");
INSERT INTO `wp_gf_form_view` VALUES("46848", "14", "2017-01-17 18:50:37", "172.246.85.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("46849", "11", "2017-01-17 18:51:09", "85.148.42.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("46850", "3", "2017-01-17 19:06:22", "184.151.231.206", "42");
INSERT INTO `wp_gf_form_view` VALUES("46851", "15", "2017-01-17 19:06:23", "184.151.231.206", "18");
INSERT INTO `wp_gf_form_view` VALUES("46852", "14", "2017-01-17 19:50:28", "64.66.23.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("46853", "3", "2017-01-17 20:15:17", "68.180.228.164", "43");
INSERT INTO `wp_gf_form_view` VALUES("46854", "15", "2017-01-17 20:15:17", "68.180.228.164", "19");
INSERT INTO `wp_gf_form_view` VALUES("46855", "3", "2017-01-17 21:01:30", "131.137.245.206", "51");
INSERT INTO `wp_gf_form_view` VALUES("46856", "15", "2017-01-17 21:01:31", "131.137.245.206", "21");
INSERT INTO `wp_gf_form_view` VALUES("46857", "3", "2017-01-17 22:03:13", "207.46.13.182", "106");
INSERT INTO `wp_gf_form_view` VALUES("46858", "15", "2017-01-17 22:03:14", "207.46.13.182", "45");
INSERT INTO `wp_gf_form_view` VALUES("46859", "3", "2017-01-17 23:20:09", "88.99.27.172", "57");
INSERT INTO `wp_gf_form_view` VALUES("46860", "15", "2017-01-17 23:20:25", "88.99.27.172", "24");
INSERT INTO `wp_gf_form_view` VALUES("46861", "3", "2017-01-18 00:00:17", "163.172.66.20", "37");
INSERT INTO `wp_gf_form_view` VALUES("46862", "15", "2017-01-18 00:00:18", "163.172.66.20", "15");
INSERT INTO `wp_gf_form_view` VALUES("46863", "3", "2017-01-18 01:05:31", "199.21.99.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("46864", "15", "2017-01-18 01:05:32", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("46865", "3", "2017-01-18 02:00:10", "24.108.212.9", "35");
INSERT INTO `wp_gf_form_view` VALUES("46866", "15", "2017-01-18 02:00:10", "24.108.212.9", "15");
INSERT INTO `wp_gf_form_view` VALUES("46867", "3", "2017-01-18 03:04:25", "163.172.66.74", "1121");
INSERT INTO `wp_gf_form_view` VALUES("46868", "15", "2017-01-18 03:04:26", "163.172.66.74", "463");
INSERT INTO `wp_gf_form_view` VALUES("46869", "2", "2017-01-18 03:16:23", "216.146.135.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("46870", "11", "2017-01-18 03:16:54", "91.223.159.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("46871", "10", "2017-01-18 03:31:24", "157.55.39.99", "21");
INSERT INTO `wp_gf_form_view` VALUES("46872", "13", "2017-01-18 03:31:31", "157.55.39.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("46873", "9", "2017-01-18 03:33:07", "207.46.13.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("46874", "8", "2017-01-18 03:34:08", "207.46.13.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("46875", "7", "2017-01-18 03:34:19", "207.46.13.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("46876", "12", "2017-01-18 03:34:31", "207.46.13.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("46877", "3", "2017-01-18 04:08:12", "96.50.8.42", "50");
INSERT INTO `wp_gf_form_view` VALUES("46878", "15", "2017-01-18 04:08:12", "96.50.8.42", "21");
INSERT INTO `wp_gf_form_view` VALUES("46879", "11", "2017-01-18 04:57:41", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46880", "3", "2017-01-18 05:06:35", "68.180.228.164", "75");
INSERT INTO `wp_gf_form_view` VALUES("46881", "15", "2017-01-18 05:06:35", "68.180.228.164", "33");
INSERT INTO `wp_gf_form_view` VALUES("46882", "3", "2017-01-18 06:17:49", "68.180.228.164", "56");
INSERT INTO `wp_gf_form_view` VALUES("46883", "15", "2017-01-18 06:17:49", "68.180.228.164", "24");
INSERT INTO `wp_gf_form_view` VALUES("46884", "3", "2017-01-18 08:22:51", "163.172.65.222", "50");
INSERT INTO `wp_gf_form_view` VALUES("46885", "15", "2017-01-18 08:22:52", "163.172.65.222", "21");
INSERT INTO `wp_gf_form_view` VALUES("46886", "3", "2017-01-18 09:24:23", "68.180.228.164", "61");
INSERT INTO `wp_gf_form_view` VALUES("46887", "15", "2017-01-18 09:24:23", "68.180.228.164", "25");
INSERT INTO `wp_gf_form_view` VALUES("46888", "3", "2017-01-18 10:01:10", "207.46.13.84", "28");
INSERT INTO `wp_gf_form_view` VALUES("46889", "15", "2017-01-18 10:01:11", "207.46.13.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("46890", "3", "2017-01-18 11:05:24", "199.21.99.202", "64");
INSERT INTO `wp_gf_form_view` VALUES("46891", "15", "2017-01-18 11:05:24", "199.21.99.202", "27");
INSERT INTO `wp_gf_form_view` VALUES("46892", "2", "2017-01-18 12:03:37", "194.187.170.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("46893", "3", "2017-01-18 12:03:42", "194.187.170.141", "142");
INSERT INTO `wp_gf_form_view` VALUES("46894", "15", "2017-01-18 12:03:42", "194.187.170.141", "60");
INSERT INTO `wp_gf_form_view` VALUES("46895", "14", "2017-01-18 12:19:15", "125.22.105.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("46896", "10", "2017-01-18 12:30:46", "157.55.39.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46897", "11", "2017-01-18 13:08:13", "194.187.170.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("46898", "3", "2017-01-18 13:08:13", "194.187.170.141", "70");
INSERT INTO `wp_gf_form_view` VALUES("46899", "15", "2017-01-18 13:08:14", "194.187.170.141", "31");
INSERT INTO `wp_gf_form_view` VALUES("46900", "3", "2017-01-18 14:17:48", "68.180.228.164", "28");
INSERT INTO `wp_gf_form_view` VALUES("46901", "15", "2017-01-18 14:17:48", "68.180.228.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("46902", "3", "2017-01-18 15:09:54", "68.180.228.164", "29");
INSERT INTO `wp_gf_form_view` VALUES("46903", "15", "2017-01-18 15:09:55", "68.180.228.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("46904", "10", "2017-01-18 15:46:35", "157.55.39.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46905", "3", "2017-01-18 16:08:21", "163.172.66.98", "44");
INSERT INTO `wp_gf_form_view` VALUES("46906", "15", "2017-01-18 16:08:21", "163.172.66.98", "18");
INSERT INTO `wp_gf_form_view` VALUES("46907", "6", "2017-01-18 16:08:43", "202.46.54.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("46908", "15", "2017-01-18 17:47:45", "66.249.79.144", "7");
INSERT INTO `wp_gf_form_view` VALUES("46909", "3", "2017-01-18 17:47:47", "66.249.79.144", "15");
INSERT INTO `wp_gf_form_view` VALUES("46910", "3", "2017-01-18 18:03:31", "207.46.13.84", "21");
INSERT INTO `wp_gf_form_view` VALUES("46911", "15", "2017-01-18 18:03:32", "207.46.13.84", "10");
INSERT INTO `wp_gf_form_view` VALUES("46912", "3", "2017-01-18 19:03:06", "144.76.96.86", "130");
INSERT INTO `wp_gf_form_view` VALUES("46913", "15", "2017-01-18 19:03:08", "144.76.96.86", "41");
INSERT INTO `wp_gf_form_view` VALUES("46914", "3", "2017-01-18 20:01:03", "157.55.39.99", "50");
INSERT INTO `wp_gf_form_view` VALUES("46915", "15", "2017-01-18 20:01:04", "157.55.39.99", "21");
INSERT INTO `wp_gf_form_view` VALUES("46916", "13", "2017-01-18 20:53:10", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46917", "3", "2017-01-18 21:44:37", "66.249.79.140", "15");
INSERT INTO `wp_gf_form_view` VALUES("46918", "15", "2017-01-18 21:44:38", "66.249.79.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("46919", "3", "2017-01-18 22:14:32", "194.187.170.146", "29");
INSERT INTO `wp_gf_form_view` VALUES("46920", "15", "2017-01-18 22:14:39", "194.187.170.146", "12");
INSERT INTO `wp_gf_form_view` VALUES("46921", "10", "2017-01-18 22:42:16", "194.187.170.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("46922", "3", "2017-01-18 23:00:31", "70.67.51.254", "58");
INSERT INTO `wp_gf_form_view` VALUES("46923", "15", "2017-01-18 23:00:31", "70.67.51.254", "24");
INSERT INTO `wp_gf_form_view` VALUES("46924", "13", "2017-01-18 23:26:53", "194.187.170.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("46925", "10", "2017-01-18 23:35:21", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46926", "3", "2017-01-19 00:00:49", "184.69.99.230", "28");
INSERT INTO `wp_gf_form_view` VALUES("46927", "15", "2017-01-19 00:00:49", "184.69.99.230", "12");
INSERT INTO `wp_gf_form_view` VALUES("46928", "3", "2017-01-19 01:09:01", "207.46.13.84", "285");
INSERT INTO `wp_gf_form_view` VALUES("46929", "15", "2017-01-19 01:09:01", "207.46.13.84", "117");
INSERT INTO `wp_gf_form_view` VALUES("46930", "2", "2017-01-19 01:14:16", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("46931", "11", "2017-01-19 01:15:04", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("46932", "3", "2017-01-19 02:11:40", "66.249.79.140", "36");
INSERT INTO `wp_gf_form_view` VALUES("46933", "15", "2017-01-19 02:11:42", "66.249.79.140", "15");
INSERT INTO `wp_gf_form_view` VALUES("46934", "3", "2017-01-19 03:22:09", "163.172.64.217", "85");
INSERT INTO `wp_gf_form_view` VALUES("46935", "15", "2017-01-19 03:22:09", "163.172.64.217", "36");
INSERT INTO `wp_gf_form_view` VALUES("46936", "14", "2017-01-19 03:45:04", "24.69.75.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("46937", "3", "2017-01-19 04:21:03", "77.75.76.170", "22");
INSERT INTO `wp_gf_form_view` VALUES("46938", "15", "2017-01-19 04:21:03", "77.75.76.170", "10");
INSERT INTO `wp_gf_form_view` VALUES("46939", "3", "2017-01-19 05:02:27", "68.180.228.164", "35");
INSERT INTO `wp_gf_form_view` VALUES("46940", "15", "2017-01-19 05:02:27", "68.180.228.164", "15");
INSERT INTO `wp_gf_form_view` VALUES("46941", "3", "2017-01-19 06:08:01", "24.68.113.67", "92");
INSERT INTO `wp_gf_form_view` VALUES("46942", "15", "2017-01-19 06:08:01", "24.68.113.67", "40");
INSERT INTO `wp_gf_form_view` VALUES("46943", "3", "2017-01-19 07:20:53", "202.46.51.176", "63");
INSERT INTO `wp_gf_form_view` VALUES("46944", "15", "2017-01-19 07:20:56", "202.46.51.176", "27");
INSERT INTO `wp_gf_form_view` VALUES("46945", "3", "2017-01-19 08:31:45", "194.187.170.126", "43");
INSERT INTO `wp_gf_form_view` VALUES("46946", "15", "2017-01-19 08:31:47", "194.187.170.126", "18");
INSERT INTO `wp_gf_form_view` VALUES("46947", "3", "2017-01-19 09:20:53", "194.187.170.126", "27");
INSERT INTO `wp_gf_form_view` VALUES("46948", "15", "2017-01-19 09:20:53", "194.187.170.126", "13");
INSERT INTO `wp_gf_form_view` VALUES("46949", "10", "2017-01-19 09:46:28", "163.172.64.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("46950", "3", "2017-01-19 10:44:04", "157.55.39.236", "20");
INSERT INTO `wp_gf_form_view` VALUES("46951", "15", "2017-01-19 10:44:13", "157.55.39.236", "10");
INSERT INTO `wp_gf_form_view` VALUES("46952", "3", "2017-01-19 11:00:59", "66.249.79.148", "85");
INSERT INTO `wp_gf_form_view` VALUES("46953", "15", "2017-01-19 11:00:59", "66.249.79.148", "44");
INSERT INTO `wp_gf_form_view` VALUES("46954", "3", "2017-01-19 12:27:21", "66.249.79.140", "48");
INSERT INTO `wp_gf_form_view` VALUES("46955", "15", "2017-01-19 12:27:22", "66.249.79.140", "18");
INSERT INTO `wp_gf_form_view` VALUES("46956", "10", "2017-01-19 12:34:09", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("46957", "14", "2017-01-19 12:34:18", "104.223.28.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("46958", "3", "2017-01-19 13:11:00", "68.180.228.164", "26");
INSERT INTO `wp_gf_form_view` VALUES("46959", "15", "2017-01-19 13:11:02", "68.180.228.164", "9");
INSERT INTO `wp_gf_form_view` VALUES("46960", "3", "2017-01-19 14:09:45", "207.46.13.1", "111");
INSERT INTO `wp_gf_form_view` VALUES("46961", "15", "2017-01-19 14:09:46", "207.46.13.1", "45");
INSERT INTO `wp_gf_form_view` VALUES("46962", "9", "2017-01-19 14:36:59", "157.55.39.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46963", "3", "2017-01-19 15:04:53", "66.220.158.103", "59");
INSERT INTO `wp_gf_form_view` VALUES("46964", "15", "2017-01-19 15:04:53", "66.220.158.103", "25");
INSERT INTO `wp_gf_form_view` VALUES("46965", "3", "2017-01-19 16:00:40", "142.31.227.169", "72");
INSERT INTO `wp_gf_form_view` VALUES("46966", "15", "2017-01-19 16:00:40", "142.31.227.169", "30");
INSERT INTO `wp_gf_form_view` VALUES("46967", "10", "2017-01-19 16:46:32", "157.55.39.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("46968", "3", "2017-01-19 17:22:02", "24.108.184.241", "22");
INSERT INTO `wp_gf_form_view` VALUES("46969", "15", "2017-01-19 17:22:10", "24.108.184.241", "9");
INSERT INTO `wp_gf_form_view` VALUES("46970", "10", "2017-01-19 17:34:55", "46.165.197.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("46971", "14", "2017-01-19 18:00:57", "123.30.130.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("46972", "3", "2017-01-19 18:00:57", "123.30.130.215", "90");
INSERT INTO `wp_gf_form_view` VALUES("46973", "15", "2017-01-19 18:00:57", "123.30.130.215", "36");
INSERT INTO `wp_gf_form_view` VALUES("46974", "2", "2017-01-19 18:27:19", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("46975", "3", "2017-01-19 19:17:37", "24.108.184.241", "64");
INSERT INTO `wp_gf_form_view` VALUES("46976", "15", "2017-01-19 19:17:39", "24.108.184.241", "24");
INSERT INTO `wp_gf_form_view` VALUES("46977", "10", "2017-01-19 19:45:40", "207.46.13.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("46978", "3", "2017-01-19 20:07:33", "66.249.79.144", "71");
INSERT INTO `wp_gf_form_view` VALUES("46979", "15", "2017-01-19 20:07:33", "66.249.79.144", "30");
INSERT INTO `wp_gf_form_view` VALUES("46980", "3", "2017-01-19 21:24:29", "158.222.12.219", "38");
INSERT INTO `wp_gf_form_view` VALUES("46981", "15", "2017-01-19 21:24:49", "158.222.12.219", "15");
INSERT INTO `wp_gf_form_view` VALUES("46982", "3", "2017-01-19 22:08:26", "207.194.133.9", "35");
INSERT INTO `wp_gf_form_view` VALUES("46983", "15", "2017-01-19 22:08:31", "207.194.133.9", "15");
INSERT INTO `wp_gf_form_view` VALUES("46984", "10", "2017-01-19 22:13:33", "157.55.39.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46985", "14", "2017-01-19 22:47:45", "144.76.96.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("46986", "3", "2017-01-19 23:16:24", "207.46.13.180", "87");
INSERT INTO `wp_gf_form_view` VALUES("46987", "15", "2017-01-19 23:16:25", "207.46.13.180", "36");
INSERT INTO `wp_gf_form_view` VALUES("46988", "3", "2017-01-20 00:04:31", "207.46.13.180", "44");
INSERT INTO `wp_gf_form_view` VALUES("46989", "15", "2017-01-20 00:04:31", "207.46.13.180", "21");
INSERT INTO `wp_gf_form_view` VALUES("46990", "3", "2017-01-20 01:39:42", "146.185.223.111", "49");
INSERT INTO `wp_gf_form_view` VALUES("46991", "15", "2017-01-20 01:39:43", "146.185.223.111", "21");
INSERT INTO `wp_gf_form_view` VALUES("46992", "13", "2017-01-20 01:45:50", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("46993", "3", "2017-01-20 02:07:31", "96.50.26.169", "64");
INSERT INTO `wp_gf_form_view` VALUES("46994", "15", "2017-01-20 02:07:32", "96.50.26.169", "27");
INSERT INTO `wp_gf_form_view` VALUES("46995", "14", "2017-01-20 02:11:32", "154.20.34.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("46996", "10", "2017-01-20 02:54:10", "157.55.39.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("46997", "3", "2017-01-20 03:06:45", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("46998", "15", "2017-01-20 03:06:46", "66.249.79.144", "9");
INSERT INTO `wp_gf_form_view` VALUES("46999", "3", "2017-01-20 04:12:17", "207.46.13.1", "35");
INSERT INTO `wp_gf_form_view` VALUES("47000", "15", "2017-01-20 04:12:19", "207.46.13.1", "15");
INSERT INTO `wp_gf_form_view` VALUES("47001", "14", "2017-01-20 04:34:55", "194.187.170.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("47002", "3", "2017-01-20 05:01:36", "207.46.13.1", "50");
INSERT INTO `wp_gf_form_view` VALUES("47003", "15", "2017-01-20 05:01:37", "207.46.13.1", "21");
INSERT INTO `wp_gf_form_view` VALUES("47004", "10", "2017-01-20 05:03:44", "194.187.170.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("47005", "13", "2017-01-20 05:16:52", "194.187.170.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("47006", "9", "2017-01-20 05:36:11", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("47007", "6", "2017-01-20 06:07:40", "202.46.51.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("47008", "3", "2017-01-20 06:07:43", "202.46.51.158", "144");
INSERT INTO `wp_gf_form_view` VALUES("47009", "15", "2017-01-20 06:07:43", "202.46.51.158", "62");
INSERT INTO `wp_gf_form_view` VALUES("47010", "14", "2017-01-20 06:16:35", "64.180.75.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("47011", "3", "2017-01-20 07:10:06", "66.249.79.144", "35");
INSERT INTO `wp_gf_form_view` VALUES("47012", "15", "2017-01-20 07:10:07", "66.249.79.144", "15");
INSERT INTO `wp_gf_form_view` VALUES("47013", "7", "2017-01-20 08:31:29", "134.249.50.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("47014", "3", "2017-01-20 08:31:31", "134.249.50.136", "14");
INSERT INTO `wp_gf_form_view` VALUES("47015", "15", "2017-01-20 08:31:31", "134.249.50.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("47016", "3", "2017-01-20 09:12:09", "144.76.96.86", "43");
INSERT INTO `wp_gf_form_view` VALUES("47017", "15", "2017-01-20 09:12:13", "144.76.96.86", "18");
INSERT INTO `wp_gf_form_view` VALUES("47018", "5", "2017-01-20 09:32:14", "157.55.39.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("47019", "3", "2017-01-20 10:15:07", "66.249.79.156", "15");
INSERT INTO `wp_gf_form_view` VALUES("47020", "15", "2017-01-20 10:15:08", "66.249.79.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("47021", "3", "2017-01-20 11:16:02", "157.55.39.99", "14");
INSERT INTO `wp_gf_form_view` VALUES("47022", "15", "2017-01-20 11:16:02", "157.55.39.99", "6");
INSERT INTO `wp_gf_form_view` VALUES("47023", "14", "2017-01-20 11:24:15", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("47024", "3", "2017-01-20 12:07:21", "157.55.39.99", "36");
INSERT INTO `wp_gf_form_view` VALUES("47025", "15", "2017-01-20 12:07:22", "157.55.39.99", "16");
INSERT INTO `wp_gf_form_view` VALUES("47026", "2", "2017-01-20 12:27:35", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("47027", "10", "2017-01-20 13:02:43", "77.75.77.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("47028", "3", "2017-01-20 13:02:43", "77.75.77.72", "50");
INSERT INTO `wp_gf_form_view` VALUES("47029", "15", "2017-01-20 13:02:43", "77.75.77.72", "21");
INSERT INTO `wp_gf_form_view` VALUES("47030", "3", "2017-01-20 14:21:31", "220.181.108.77", "42");
INSERT INTO `wp_gf_form_view` VALUES("47031", "15", "2017-01-20 14:21:31", "220.181.108.77", "18");
INSERT INTO `wp_gf_form_view` VALUES("47032", "14", "2017-01-20 14:47:13", "104.223.89.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("47033", "5", "2017-01-20 15:20:04", "104.223.89.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("47034", "3", "2017-01-20 15:20:05", "104.223.89.212", "28");
INSERT INTO `wp_gf_form_view` VALUES("47035", "15", "2017-01-20 15:20:05", "104.223.89.212", "12");
INSERT INTO `wp_gf_form_view` VALUES("47036", "3", "2017-01-20 16:26:22", "207.194.133.9", "134");
INSERT INTO `wp_gf_form_view` VALUES("47037", "15", "2017-01-20 16:26:25", "207.194.133.9", "57");
INSERT INTO `wp_gf_form_view` VALUES("47038", "3", "2017-01-20 17:04:19", "207.46.13.1", "214");
INSERT INTO `wp_gf_form_view` VALUES("47039", "15", "2017-01-20 17:04:19", "207.46.13.1", "91");
INSERT INTO `wp_gf_form_view` VALUES("47040", "2", "2017-01-20 17:04:37", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("47041", "11", "2017-01-20 17:05:28", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("47042", "3", "2017-01-20 18:11:09", "207.46.13.180", "50");
INSERT INTO `wp_gf_form_view` VALUES("47043", "15", "2017-01-20 18:11:10", "207.46.13.180", "21");
INSERT INTO `wp_gf_form_view` VALUES("47044", "10", "2017-01-20 18:32:00", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("47045", "14", "2017-01-20 18:51:08", "194.187.170.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("47046", "3", "2017-01-20 19:02:21", "199.21.99.202", "126");
INSERT INTO `wp_gf_form_view` VALUES("47047", "15", "2017-01-20 19:02:21", "199.21.99.202", "54");
INSERT INTO `wp_gf_form_view` VALUES("47048", "13", "2017-01-20 19:55:26", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("47049", "11", "2017-01-20 19:59:09", "173.167.63.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("47050", "3", "2017-01-20 20:00:08", "173.167.63.209", "225");
INSERT INTO `wp_gf_form_view` VALUES("47051", "15", "2017-01-20 20:00:08", "173.167.63.209", "97");
INSERT INTO `wp_gf_form_view` VALUES("47052", "2", "2017-01-20 20:00:59", "173.167.63.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("47053", "10", "2017-01-20 20:36:46", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("47054", "3", "2017-01-20 21:30:01", "96.54.46.28", "40");
INSERT INTO `wp_gf_form_view` VALUES("47055", "15", "2017-01-20 21:30:02", "96.54.46.28", "15");
INSERT INTO `wp_gf_form_view` VALUES("47056", "10", "2017-01-20 21:33:32", "157.55.39.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("47057", "3", "2017-01-20 22:03:19", "207.46.13.1", "79");
INSERT INTO `wp_gf_form_view` VALUES("47058", "15", "2017-01-20 22:03:19", "207.46.13.1", "33");
INSERT INTO `wp_gf_form_view` VALUES("47059", "3", "2017-01-20 23:04:04", "207.216.0.206", "50");
INSERT INTO `wp_gf_form_view` VALUES("47060", "15", "2017-01-20 23:04:04", "207.216.0.206", "21");
INSERT INTO `wp_gf_form_view` VALUES("47061", "3", "2017-01-21 00:27:02", "68.180.228.164", "1022");
INSERT INTO `wp_gf_form_view` VALUES("47062", "15", "2017-01-21 00:27:02", "68.180.228.164", "451");
INSERT INTO `wp_gf_form_view` VALUES("47063", "11", "2017-01-21 00:44:42", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47064", "2", "2017-01-21 00:44:46", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47065", "14", "2017-01-21 00:47:11", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47066", "13", "2017-01-21 00:53:22", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47067", "10", "2017-01-21 00:53:27", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("47068", "8", "2017-01-21 00:58:38", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47069", "9", "2017-01-21 00:58:48", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47070", "3", "2017-01-21 01:00:04", "5.9.98.130", "3073");
INSERT INTO `wp_gf_form_view` VALUES("47071", "15", "2017-01-21 01:00:05", "5.9.98.130", "1333");
INSERT INTO `wp_gf_form_view` VALUES("47072", "6", "2017-01-21 01:00:08", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47073", "8", "2017-01-21 01:04:00", "207.46.13.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("47074", "3", "2017-01-21 02:00:02", "5.9.98.130", "2898");
INSERT INTO `wp_gf_form_view` VALUES("47075", "15", "2017-01-21 02:00:03", "5.9.98.130", "1350");
INSERT INTO `wp_gf_form_view` VALUES("47076", "2", "2017-01-21 02:48:23", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47077", "3", "2017-01-21 03:00:00", "5.9.98.130", "4006");
INSERT INTO `wp_gf_form_view` VALUES("47078", "15", "2017-01-21 03:00:01", "5.9.98.130", "1920");
INSERT INTO `wp_gf_form_view` VALUES("47079", "14", "2017-01-21 03:07:01", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47080", "13", "2017-01-21 03:12:31", "136.243.36.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("47081", "6", "2017-01-21 03:20:05", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47082", "9", "2017-01-21 03:20:17", "136.243.36.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("47083", "3", "2017-01-21 04:00:00", "5.9.98.130", "2103");
INSERT INTO `wp_gf_form_view` VALUES("47084", "15", "2017-01-21 04:00:02", "5.9.98.130", "819");
INSERT INTO `wp_gf_form_view` VALUES("47085", "14", "2017-01-21 04:13:04", "70.66.186.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("47086", "3", "2017-01-21 05:00:03", "5.9.98.130", "4749");
INSERT INTO `wp_gf_form_view` VALUES("47087", "15", "2017-01-21 05:00:04", "5.9.98.130", "1765");
INSERT INTO `wp_gf_form_view` VALUES("47088", "10", "2017-01-21 05:16:31", "194.187.170.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("47089", "13", "2017-01-21 05:28:35", "194.187.170.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("47090", "3", "2017-01-21 06:00:00", "5.9.98.130", "2535");
INSERT INTO `wp_gf_form_view` VALUES("47091", "15", "2017-01-21 06:00:01", "5.9.98.130", "1939");
INSERT INTO `wp_gf_form_view` VALUES("47092", "3", "2017-01-21 07:00:10", "77.75.78.168", "1144");
INSERT INTO `wp_gf_form_view` VALUES("47093", "15", "2017-01-21 07:00:15", "77.75.78.168", "216");
INSERT INTO `wp_gf_form_view` VALUES("47094", "10", "2017-01-21 07:03:45", "207.46.13.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("47095", "3", "2017-01-21 08:16:23", "207.46.13.187", "2927");
INSERT INTO `wp_gf_form_view` VALUES("47096", "15", "2017-01-21 08:16:24", "207.46.13.187", "1254");
INSERT INTO `wp_gf_form_view` VALUES("47097", "11", "2017-01-21 08:19:14", "77.75.78.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("47098", "14", "2017-01-21 08:41:23", "69.16.147.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("47099", "3", "2017-01-21 09:00:02", "5.9.98.130", "4129");
INSERT INTO `wp_gf_form_view` VALUES("47100", "15", "2017-01-21 09:00:03", "5.9.98.130", "1690");
INSERT INTO `wp_gf_form_view` VALUES("47101", "6", "2017-01-21 09:19:07", "202.46.54.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("47102", "12", "2017-01-21 09:50:14", "163.172.66.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("47103", "5", "2017-01-21 09:55:56", "104.223.89.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("47104", "3", "2017-01-21 10:00:00", "5.9.98.130", "4535");
INSERT INTO `wp_gf_form_view` VALUES("47105", "15", "2017-01-21 10:00:02", "5.9.98.130", "1775");
INSERT INTO `wp_gf_form_view` VALUES("47106", "11", "2017-01-21 10:32:03", "50.250.216.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("47107", "2", "2017-01-21 10:36:10", "50.250.216.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("47108", "10", "2017-01-21 10:51:37", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("47109", "3", "2017-01-21 11:00:03", "5.9.98.130", "4549");
INSERT INTO `wp_gf_form_view` VALUES("47110", "15", "2017-01-21 11:00:06", "5.9.98.130", "2036");
INSERT INTO `wp_gf_form_view` VALUES("47111", "6", "2017-01-21 11:53:17", "46.229.168.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("47112", "14", "2017-01-21 11:53:48", "46.229.168.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("47113", "10", "2017-01-21 11:54:53", "46.229.168.66", "9");
INSERT INTO `wp_gf_form_view` VALUES("47114", "15", "2017-01-21 12:00:01", "5.9.98.130", "2406");
INSERT INTO `wp_gf_form_view` VALUES("47115", "3", "2017-01-21 12:00:03", "5.9.98.130", "2540");
INSERT INTO `wp_gf_form_view` VALUES("47116", "5", "2017-01-21 12:07:05", "77.75.79.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("47117", "3", "2017-01-21 13:03:12", "77.75.78.163", "2225");
INSERT INTO `wp_gf_form_view` VALUES("47118", "15", "2017-01-21 13:03:14", "77.75.78.163", "405");
INSERT INTO `wp_gf_form_view` VALUES("47119", "13", "2017-01-21 13:39:08", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("47120", "3", "2017-01-21 14:01:17", "77.75.79.62", "51");
INSERT INTO `wp_gf_form_view` VALUES("47121", "15", "2017-01-21 14:01:19", "77.75.79.62", "21");
INSERT INTO `wp_gf_form_view` VALUES("47122", "3", "2017-01-21 15:20:50", "194.187.170.142", "381");
INSERT INTO `wp_gf_form_view` VALUES("47123", "15", "2017-01-21 15:20:50", "194.187.170.142", "162");
INSERT INTO `wp_gf_form_view` VALUES("47124", "3", "2017-01-21 16:00:04", "5.9.98.130", "3768");
INSERT INTO `wp_gf_form_view` VALUES("47125", "15", "2017-01-21 16:00:04", "5.9.98.130", "1614");
INSERT INTO `wp_gf_form_view` VALUES("47126", "14", "2017-01-21 16:21:21", "191.96.137.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("47127", "10", "2017-01-21 16:23:27", "207.46.13.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("47128", "12", "2017-01-21 16:40:09", "207.46.13.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("47129", "9", "2017-01-21 16:52:39", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47130", "3", "2017-01-21 17:14:03", "207.46.13.62", "51");
INSERT INTO `wp_gf_form_view` VALUES("47131", "15", "2017-01-21 17:14:06", "207.46.13.62", "21");
INSERT INTO `wp_gf_form_view` VALUES("47132", "3", "2017-01-21 18:01:22", "65.95.251.239", "276");
INSERT INTO `wp_gf_form_view` VALUES("47133", "15", "2017-01-21 18:01:23", "65.95.251.239", "118");
INSERT INTO `wp_gf_form_view` VALUES("47134", "11", "2017-01-21 18:45:58", "164.77.43.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("47135", "2", "2017-01-21 18:47:09", "164.77.43.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("47136", "3", "2017-01-21 19:00:06", "136.243.36.94", "244");
INSERT INTO `wp_gf_form_view` VALUES("47137", "15", "2017-01-21 19:00:06", "136.243.36.94", "99");
INSERT INTO `wp_gf_form_view` VALUES("47138", "8", "2017-01-21 19:05:58", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47139", "10", "2017-01-21 19:07:02", "136.243.36.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("47140", "3", "2017-01-21 20:10:56", "66.249.79.144", "420");
INSERT INTO `wp_gf_form_view` VALUES("47141", "15", "2017-01-21 20:10:56", "66.249.79.144", "180");
INSERT INTO `wp_gf_form_view` VALUES("47142", "3", "2017-01-21 21:02:59", "157.55.39.236", "48");
INSERT INTO `wp_gf_form_view` VALUES("47143", "15", "2017-01-21 21:03:00", "157.55.39.236", "18");
INSERT INTO `wp_gf_form_view` VALUES("47144", "14", "2017-01-21 21:35:35", "107.173.71.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("47145", "3", "2017-01-21 22:06:42", "50.92.30.16", "78");
INSERT INTO `wp_gf_form_view` VALUES("47146", "15", "2017-01-21 22:06:43", "50.92.30.16", "33");
INSERT INTO `wp_gf_form_view` VALUES("47147", "6", "2017-01-21 22:10:17", "163.172.65.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("47148", "3", "2017-01-21 23:12:26", "54.161.224.41", "246");
INSERT INTO `wp_gf_form_view` VALUES("47149", "15", "2017-01-21 23:12:26", "54.161.224.41", "105");
INSERT INTO `wp_gf_form_view` VALUES("47150", "11", "2017-01-21 23:32:19", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("47151", "2", "2017-01-21 23:34:06", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("47152", "3", "2017-01-22 00:49:23", "194.187.170.101", "8");
INSERT INTO `wp_gf_form_view` VALUES("47153", "15", "2017-01-22 00:49:24", "194.187.170.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("47154", "3", "2017-01-22 01:12:20", "66.249.79.144", "79");
INSERT INTO `wp_gf_form_view` VALUES("47155", "15", "2017-01-22 01:12:20", "66.249.79.144", "33");
INSERT INTO `wp_gf_form_view` VALUES("47156", "10", "2017-01-22 01:56:44", "40.77.167.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("47157", "10", "2017-01-22 02:29:12", "194.187.170.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("47158", "3", "2017-01-22 02:29:14", "194.187.170.101", "35");
INSERT INTO `wp_gf_form_view` VALUES("47159", "15", "2017-01-22 02:29:14", "194.187.170.101", "15");
INSERT INTO `wp_gf_form_view` VALUES("47160", "14", "2017-01-22 03:35:58", "107.150.75.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("47161", "3", "2017-01-22 03:36:00", "107.150.75.223", "29");
INSERT INTO `wp_gf_form_view` VALUES("47162", "15", "2017-01-22 03:36:00", "107.150.75.223", "12");
INSERT INTO `wp_gf_form_view` VALUES("47163", "10", "2017-01-22 04:21:13", "207.46.13.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("47164", "3", "2017-01-22 04:21:16", "207.46.13.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("47165", "15", "2017-01-22 04:21:17", "207.46.13.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("47166", "14", "2017-01-22 05:03:14", "158.222.6.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("47167", "3", "2017-01-22 05:03:25", "158.222.6.196", "49");
INSERT INTO `wp_gf_form_view` VALUES("47168", "15", "2017-01-22 05:03:25", "158.222.6.196", "22");
INSERT INTO `wp_gf_form_view` VALUES("47169", "3", "2017-01-22 06:01:46", "163.172.66.172", "84");
INSERT INTO `wp_gf_form_view` VALUES("47170", "15", "2017-01-22 06:01:46", "163.172.66.172", "36");
INSERT INTO `wp_gf_form_view` VALUES("47171", "3", "2017-01-22 07:29:58", "54.174.128.209", "20");
INSERT INTO `wp_gf_form_view` VALUES("47172", "3", "2017-01-22 07:29:58", "54.174.128.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("47173", "15", "2017-01-22 07:30:41", "54.174.128.209", "9");
INSERT INTO `wp_gf_form_view` VALUES("47174", "3", "2017-01-22 08:29:27", "199.21.99.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("47175", "15", "2017-01-22 08:29:27", "199.21.99.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("47176", "3", "2017-01-22 09:02:34", "5.9.145.132", "29");
INSERT INTO `wp_gf_form_view` VALUES("47177", "15", "2017-01-22 09:02:35", "5.9.145.132", "12");
INSERT INTO `wp_gf_form_view` VALUES("47178", "15", "2017-01-22 10:07:11", "163.172.66.20", "10");
INSERT INTO `wp_gf_form_view` VALUES("47179", "3", "2017-01-22 10:07:13", "163.172.66.20", "28");
INSERT INTO `wp_gf_form_view` VALUES("47180", "13", "2017-01-22 10:07:13", "163.172.66.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("47181", "10", "2017-01-22 10:07:13", "163.172.66.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("47182", "10", "2017-01-22 11:26:02", "77.75.77.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("47183", "3", "2017-01-22 11:26:04", "77.75.77.72", "7");
INSERT INTO `wp_gf_form_view` VALUES("47184", "15", "2017-01-22 11:26:04", "77.75.77.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("47185", "3", "2017-01-22 12:23:07", "40.77.167.34", "35");
INSERT INTO `wp_gf_form_view` VALUES("47186", "15", "2017-01-22 12:23:08", "40.77.167.34", "15");
INSERT INTO `wp_gf_form_view` VALUES("47187", "12", "2017-01-22 13:07:24", "194.187.170.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("47188", "3", "2017-01-22 13:07:24", "194.187.170.131", "21");
INSERT INTO `wp_gf_form_view` VALUES("47189", "15", "2017-01-22 13:07:24", "194.187.170.131", "9");
INSERT INTO `wp_gf_form_view` VALUES("47190", "10", "2017-01-22 13:42:07", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47191", "3", "2017-01-22 14:13:04", "157.55.39.25", "35");
INSERT INTO `wp_gf_form_view` VALUES("47192", "15", "2017-01-22 14:13:05", "157.55.39.25", "15");
INSERT INTO `wp_gf_form_view` VALUES("47193", "8", "2017-01-22 14:31:48", "163.172.64.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("47194", "3", "2017-01-22 15:17:03", "68.180.228.164", "56");
INSERT INTO `wp_gf_form_view` VALUES("47195", "15", "2017-01-22 15:22:21", "40.77.167.64", "21");
INSERT INTO `wp_gf_form_view` VALUES("47196", "3", "2017-01-22 16:42:44", "68.180.228.164", "8");
INSERT INTO `wp_gf_form_view` VALUES("47197", "15", "2017-01-22 16:42:47", "68.180.228.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("47198", "3", "2017-01-22 17:24:41", "163.172.65.127", "44");
INSERT INTO `wp_gf_form_view` VALUES("47199", "15", "2017-01-22 17:24:44", "163.172.65.127", "18");
INSERT INTO `wp_gf_form_view` VALUES("47200", "3", "2017-01-22 18:13:33", "77.75.79.119", "33");
INSERT INTO `wp_gf_form_view` VALUES("47201", "15", "2017-01-22 18:13:34", "77.75.79.119", "12");
INSERT INTO `wp_gf_form_view` VALUES("47202", "3", "2017-01-22 19:09:14", "77.75.76.170", "21");
INSERT INTO `wp_gf_form_view` VALUES("47203", "15", "2017-01-22 19:09:15", "77.75.76.170", "9");
INSERT INTO `wp_gf_form_view` VALUES("47204", "10", "2017-01-22 19:47:59", "40.77.167.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("47205", "3", "2017-01-22 20:33:37", "146.185.134.39", "34");
INSERT INTO `wp_gf_form_view` VALUES("47206", "15", "2017-01-22 20:33:40", "146.185.134.39", "12");
INSERT INTO `wp_gf_form_view` VALUES("47207", "3", "2017-01-22 21:09:11", "202.46.56.97", "119");
INSERT INTO `wp_gf_form_view` VALUES("47208", "15", "2017-01-22 21:09:14", "202.46.56.97", "46");
INSERT INTO `wp_gf_form_view` VALUES("47209", "3", "2017-01-22 22:09:11", "77.75.78.168", "36");
INSERT INTO `wp_gf_form_view` VALUES("47210", "15", "2017-01-22 22:09:11", "77.75.78.168", "15");
INSERT INTO `wp_gf_form_view` VALUES("47211", "3", "2017-01-22 23:24:40", "202.46.49.139", "36");
INSERT INTO `wp_gf_form_view` VALUES("47212", "15", "2017-01-22 23:24:40", "202.46.49.139", "15");
INSERT INTO `wp_gf_form_view` VALUES("47213", "14", "2017-01-22 23:48:54", "191.101.113.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("47214", "3", "2017-01-23 00:02:02", "40.77.167.64", "28");
INSERT INTO `wp_gf_form_view` VALUES("47215", "15", "2017-01-23 00:02:02", "40.77.167.64", "12");
INSERT INTO `wp_gf_form_view` VALUES("47216", "3", "2017-01-23 01:05:02", "40.77.167.29", "42");
INSERT INTO `wp_gf_form_view` VALUES("47217", "15", "2017-01-23 01:05:03", "40.77.167.29", "18");
INSERT INTO `wp_gf_form_view` VALUES("47218", "3", "2017-01-23 02:01:10", "40.77.167.29", "42");
INSERT INTO `wp_gf_form_view` VALUES("47219", "15", "2017-01-23 02:01:10", "40.77.167.29", "18");
INSERT INTO `wp_gf_form_view` VALUES("47220", "3", "2017-01-23 03:07:43", "24.69.153.40", "42");
INSERT INTO `wp_gf_form_view` VALUES("47221", "15", "2017-01-23 03:07:43", "24.69.153.40", "18");
INSERT INTO `wp_gf_form_view` VALUES("47222", "9", "2017-01-23 03:43:49", "207.46.13.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("47223", "3", "2017-01-23 04:04:45", "40.77.167.29", "30");
INSERT INTO `wp_gf_form_view` VALUES("47224", "15", "2017-01-23 04:04:45", "40.77.167.29", "12");
INSERT INTO `wp_gf_form_view` VALUES("47225", "15", "2017-01-23 05:56:47", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("47226", "3", "2017-01-23 06:32:25", "40.77.167.22", "7");
INSERT INTO `wp_gf_form_view` VALUES("47227", "15", "2017-01-23 06:32:27", "40.77.167.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("47228", "15", "2017-01-23 07:24:06", "194.187.170.114", "29");
INSERT INTO `wp_gf_form_view` VALUES("47229", "3", "2017-01-23 07:24:12", "194.187.170.114", "49");
INSERT INTO `wp_gf_form_view` VALUES("47230", "3", "2017-01-23 08:09:45", "194.187.170.114", "28");
INSERT INTO `wp_gf_form_view` VALUES("47231", "15", "2017-01-23 08:09:45", "194.187.170.114", "12");
INSERT INTO `wp_gf_form_view` VALUES("47232", "3", "2017-01-23 09:03:39", "194.187.170.114", "21");
INSERT INTO `wp_gf_form_view` VALUES("47233", "15", "2017-01-23 09:03:40", "194.187.170.114", "9");
INSERT INTO `wp_gf_form_view` VALUES("47234", "3", "2017-01-23 10:18:10", "50.245.196.61", "148");
INSERT INTO `wp_gf_form_view` VALUES("47235", "15", "2017-01-23 10:18:11", "50.245.196.61", "63");
INSERT INTO `wp_gf_form_view` VALUES("47236", "11", "2017-01-23 10:18:30", "50.245.196.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("47237", "2", "2017-01-23 10:26:27", "50.245.196.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("47238", "3", "2017-01-23 11:13:54", "163.172.66.23", "212");
INSERT INTO `wp_gf_form_view` VALUES("47239", "15", "2017-01-23 11:13:57", "163.172.66.23", "90");
INSERT INTO `wp_gf_form_view` VALUES("47240", "10", "2017-01-23 12:15:14", "40.77.167.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("47241", "3", "2017-01-23 12:15:15", "40.77.167.29", "22");
INSERT INTO `wp_gf_form_view` VALUES("47242", "15", "2017-01-23 12:15:16", "40.77.167.29", "17");
INSERT INTO `wp_gf_form_view` VALUES("47243", "9", "2017-01-23 12:22:37", "163.172.65.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("47244", "14", "2017-01-23 13:07:27", "23.94.77.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("47245", "3", "2017-01-23 13:07:28", "23.94.77.17", "29");
INSERT INTO `wp_gf_form_view` VALUES("47246", "15", "2017-01-23 13:07:28", "23.94.77.17", "12");
INSERT INTO `wp_gf_form_view` VALUES("47247", "3", "2017-01-23 14:43:09", "207.46.13.4", "21");
INSERT INTO `wp_gf_form_view` VALUES("47248", "15", "2017-01-23 14:43:13", "207.46.13.4", "6");
INSERT INTO `wp_gf_form_view` VALUES("47249", "9", "2017-01-23 15:13:31", "40.77.167.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("47250", "3", "2017-01-23 15:13:32", "40.77.167.11", "35");
INSERT INTO `wp_gf_form_view` VALUES("47251", "15", "2017-01-23 15:13:33", "40.77.167.11", "15");
INSERT INTO `wp_gf_form_view` VALUES("47252", "3", "2017-01-23 16:25:59", "202.46.48.202", "65");
INSERT INTO `wp_gf_form_view` VALUES("47253", "15", "2017-01-23 16:26:01", "202.46.48.202", "27");
INSERT INTO `wp_gf_form_view` VALUES("47254", "13", "2017-01-23 17:07:42", "163.172.66.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("47255", "3", "2017-01-23 17:07:43", "163.172.66.98", "7");
INSERT INTO `wp_gf_form_view` VALUES("47256", "15", "2017-01-23 17:07:44", "163.172.66.98", "3");
INSERT INTO `wp_gf_form_view` VALUES("47257", "3", "2017-01-23 18:01:22", "207.194.94.2", "45");
INSERT INTO `wp_gf_form_view` VALUES("47258", "15", "2017-01-23 18:01:26", "207.194.94.2", "16");
INSERT INTO `wp_gf_form_view` VALUES("47259", "10", "2017-01-23 18:42:59", "40.77.167.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("47260", "3", "2017-01-23 19:01:07", "163.172.66.136", "130");
INSERT INTO `wp_gf_form_view` VALUES("47261", "15", "2017-01-23 19:01:08", "163.172.66.136", "32");
INSERT INTO `wp_gf_form_view` VALUES("47262", "2", "2017-01-23 20:01:59", "220.181.108.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("47263", "3", "2017-01-23 20:02:09", "220.181.108.109", "66");
INSERT INTO `wp_gf_form_view` VALUES("47264", "15", "2017-01-23 20:02:10", "220.181.108.109", "18");
INSERT INTO `wp_gf_form_view` VALUES("47265", "2", "2017-01-23 21:00:26", "209.52.88.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("47266", "3", "2017-01-23 21:00:31", "209.52.88.73", "32");
INSERT INTO `wp_gf_form_view` VALUES("47267", "15", "2017-01-23 21:00:31", "209.52.88.73", "8");
INSERT INTO `wp_gf_form_view` VALUES("47268", "14", "2017-01-23 21:01:22", "209.52.88.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("47269", "3", "2017-01-23 22:12:18", "77.75.76.167", "32");
INSERT INTO `wp_gf_form_view` VALUES("47270", "15", "2017-01-23 22:12:40", "77.75.76.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("47271", "15", "2017-01-23 22:12:40", "77.75.76.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("47272", "3", "2017-01-23 23:06:21", "202.46.50.126", "59");
INSERT INTO `wp_gf_form_view` VALUES("47273", "15", "2017-01-23 23:06:40", "202.46.50.126", "14");
INSERT INTO `wp_gf_form_view` VALUES("47274", "14", "2017-01-23 23:59:47", "199.60.109.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("47275", "3", "2017-01-24 00:00:06", "199.60.109.155", "130");
INSERT INTO `wp_gf_form_view` VALUES("47276", "15", "2017-01-24 00:00:06", "199.60.109.155", "36");
INSERT INTO `wp_gf_form_view` VALUES("47277", "3", "2017-01-24 01:27:17", "192.187.31.224", "16");
INSERT INTO `wp_gf_form_view` VALUES("47278", "15", "2017-01-24 01:27:22", "192.187.31.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("47279", "3", "2017-01-24 02:05:14", "66.249.79.140", "51");
INSERT INTO `wp_gf_form_view` VALUES("47280", "15", "2017-01-24 02:05:14", "66.249.79.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("47281", "3", "2017-01-24 03:42:33", "66.249.79.144", "33");
INSERT INTO `wp_gf_form_view` VALUES("47282", "15", "2017-01-24 03:42:35", "66.249.79.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("47283", "3", "2017-01-24 04:00:50", "66.249.79.140", "16");
INSERT INTO `wp_gf_form_view` VALUES("47284", "15", "2017-01-24 04:00:51", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("47285", "3", "2017-01-24 05:37:35", "24.68.17.97", "16");
INSERT INTO `wp_gf_form_view` VALUES("47286", "15", "2017-01-24 05:37:36", "24.68.17.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("47287", "3", "2017-01-24 06:13:45", "217.73.227.60", "26");
INSERT INTO `wp_gf_form_view` VALUES("47288", "15", "2017-01-24 06:13:46", "217.73.227.60", "6");
INSERT INTO `wp_gf_form_view` VALUES("47289", "3", "2017-01-24 07:01:13", "204.79.180.240", "56");
INSERT INTO `wp_gf_form_view` VALUES("47290", "15", "2017-01-24 07:01:14", "204.79.180.240", "14");
INSERT INTO `wp_gf_form_view` VALUES("47291", "2", "2017-01-24 07:02:57", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47292", "3", "2017-01-24 08:32:58", "66.249.79.144", "33");
INSERT INTO `wp_gf_form_view` VALUES("47293", "15", "2017-01-24 08:33:02", "66.249.79.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("47294", "3", "2017-01-24 09:10:02", "40.77.167.29", "16");
INSERT INTO `wp_gf_form_view` VALUES("47295", "15", "2017-01-24 09:10:03", "40.77.167.29", "4");
INSERT INTO `wp_gf_form_view` VALUES("47296", "3", "2017-01-24 10:02:09", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("47297", "15", "2017-01-24 10:02:10", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("47298", "3", "2017-01-24 11:29:35", "68.180.228.164", "9");
INSERT INTO `wp_gf_form_view` VALUES("47299", "15", "2017-01-24 11:45:14", "185.93.183.221", "2");
INSERT INTO `wp_gf_form_view` VALUES("47300", "3", "2017-01-24 12:31:01", "46.231.214.166", "86");
INSERT INTO `wp_gf_form_view` VALUES("47301", "15", "2017-01-24 12:31:04", "46.231.214.166", "20");
INSERT INTO `wp_gf_form_view` VALUES("47302", "3", "2017-01-24 13:03:53", "199.21.99.202", "49");
INSERT INTO `wp_gf_form_view` VALUES("47303", "15", "2017-01-24 13:03:53", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("47304", "9", "2017-01-24 13:26:22", "163.172.65.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("47305", "3", "2017-01-24 14:21:15", "66.249.79.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("47306", "15", "2017-01-24 14:21:16", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("47307", "3", "2017-01-24 15:10:29", "199.21.99.202", "309");
INSERT INTO `wp_gf_form_view` VALUES("47308", "15", "2017-01-24 15:10:29", "199.21.99.202", "77");
INSERT INTO `wp_gf_form_view` VALUES("47309", "2", "2017-01-24 15:47:42", "40.77.167.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("47310", "11", "2017-01-24 15:47:45", "40.77.167.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("47311", "3", "2017-01-24 16:13:44", "163.172.65.202", "97");
INSERT INTO `wp_gf_form_view` VALUES("47312", "15", "2017-01-24 16:13:47", "163.172.65.202", "25");
INSERT INTO `wp_gf_form_view` VALUES("47313", "13", "2017-01-24 16:31:59", "142.36.249.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("47314", "3", "2017-01-24 17:07:05", "66.249.79.144", "50");
INSERT INTO `wp_gf_form_view` VALUES("47315", "15", "2017-01-24 17:07:06", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("47316", "3", "2017-01-24 18:09:19", "77.75.78.165", "58");
INSERT INTO `wp_gf_form_view` VALUES("47317", "15", "2017-01-24 18:09:19", "77.75.78.165", "16");
INSERT INTO `wp_gf_form_view` VALUES("47318", "3", "2017-01-24 19:00:33", "24.244.32.211", "84");
INSERT INTO `wp_gf_form_view` VALUES("47319", "15", "2017-01-24 19:00:34", "24.244.32.211", "28");
INSERT INTO `wp_gf_form_view` VALUES("47320", "3", "2017-01-24 20:00:36", "184.66.49.231", "67");
INSERT INTO `wp_gf_form_view` VALUES("47321", "15", "2017-01-24 20:00:36", "184.66.49.231", "16");
INSERT INTO `wp_gf_form_view` VALUES("47322", "9", "2017-01-24 21:06:17", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47323", "3", "2017-01-24 21:06:20", "68.180.228.164", "89");
INSERT INTO `wp_gf_form_view` VALUES("47324", "15", "2017-01-24 21:06:20", "68.180.228.164", "22");
INSERT INTO `wp_gf_form_view` VALUES("47325", "2", "2017-01-24 21:46:57", "209.52.88.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47326", "3", "2017-01-24 22:16:23", "68.180.228.164", "85");
INSERT INTO `wp_gf_form_view` VALUES("47327", "15", "2017-01-24 22:16:23", "68.180.228.164", "21");
INSERT INTO `wp_gf_form_view` VALUES("47328", "11", "2017-01-24 22:22:54", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("47329", "2", "2017-01-24 22:22:57", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("47330", "3", "2017-01-24 23:00:20", "24.69.81.140", "595");
INSERT INTO `wp_gf_form_view` VALUES("47331", "15", "2017-01-24 23:00:21", "24.69.81.140", "159");
INSERT INTO `wp_gf_form_view` VALUES("47332", "10", "2017-01-24 23:46:10", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47333", "2", "2017-01-24 23:46:46", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47334", "11", "2017-01-24 23:53:56", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47335", "14", "2017-01-24 23:55:17", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47336", "13", "2017-01-24 23:56:54", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47337", "3", "2017-01-25 00:00:09", "136.243.36.94", "329");
INSERT INTO `wp_gf_form_view` VALUES("47338", "15", "2017-01-25 00:00:10", "136.243.36.94", "78");
INSERT INTO `wp_gf_form_view` VALUES("47339", "6", "2017-01-25 00:01:37", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47340", "9", "2017-01-25 00:01:53", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47341", "8", "2017-01-25 00:06:33", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47342", "10", "2017-01-25 00:07:06", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("47343", "3", "2017-01-25 01:11:18", "202.46.54.99", "26");
INSERT INTO `wp_gf_form_view` VALUES("47344", "15", "2017-01-25 01:11:19", "202.46.54.99", "6");
INSERT INTO `wp_gf_form_view` VALUES("47345", "3", "2017-01-25 02:09:20", "104.160.9.90", "50");
INSERT INTO `wp_gf_form_view` VALUES("47346", "15", "2017-01-25 02:09:21", "104.160.9.90", "12");
INSERT INTO `wp_gf_form_view` VALUES("47347", "2", "2017-01-25 03:05:24", "163.172.66.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("47348", "3", "2017-01-25 03:05:28", "163.172.66.91", "25");
INSERT INTO `wp_gf_form_view` VALUES("47349", "15", "2017-01-25 03:05:28", "163.172.66.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("47350", "3", "2017-01-25 04:21:47", "40.77.167.64", "26");
INSERT INTO `wp_gf_form_view` VALUES("47351", "15", "2017-01-25 04:21:48", "40.77.167.64", "6");
INSERT INTO `wp_gf_form_view` VALUES("47352", "11", "2017-01-25 05:24:06", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47353", "3", "2017-01-25 05:24:15", "68.180.228.164", "17");
INSERT INTO `wp_gf_form_view` VALUES("47354", "15", "2017-01-25 05:24:15", "68.180.228.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("47355", "3", "2017-01-25 06:22:04", "163.172.65.231", "16");
INSERT INTO `wp_gf_form_view` VALUES("47356", "15", "2017-01-25 06:22:05", "163.172.65.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("47357", "3", "2017-01-25 07:00:13", "24.69.149.105", "101");
INSERT INTO `wp_gf_form_view` VALUES("47358", "15", "2017-01-25 07:00:14", "24.69.149.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("47359", "13", "2017-01-25 07:57:59", "163.172.66.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("47360", "3", "2017-01-25 08:03:18", "77.75.76.168", "42");
INSERT INTO `wp_gf_form_view` VALUES("47361", "15", "2017-01-25 08:03:18", "77.75.76.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("47362", "11", "2017-01-25 08:12:29", "207.46.13.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("47363", "14", "2017-01-25 09:00:51", "202.46.58.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("47364", "3", "2017-01-25 09:00:54", "202.46.58.200", "32");
INSERT INTO `wp_gf_form_view` VALUES("47365", "15", "2017-01-25 09:00:54", "202.46.58.200", "16");
INSERT INTO `wp_gf_form_view` VALUES("47366", "3", "2017-01-25 10:43:11", "68.180.228.164", "8");
INSERT INTO `wp_gf_form_view` VALUES("47367", "15", "2017-01-25 10:43:13", "68.180.228.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("47368", "3", "2017-01-25 11:12:05", "141.8.143.214", "21");
INSERT INTO `wp_gf_form_view` VALUES("47369", "15", "2017-01-25 11:12:07", "141.8.143.214", "4");
INSERT INTO `wp_gf_form_view` VALUES("47370", "3", "2017-01-25 12:33:19", "202.46.53.198", "8");
INSERT INTO `wp_gf_form_view` VALUES("47371", "15", "2017-01-25 12:33:21", "202.46.53.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("47372", "3", "2017-01-25 13:17:27", "68.180.228.164", "25");
INSERT INTO `wp_gf_form_view` VALUES("47373", "15", "2017-01-25 13:17:28", "68.180.228.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("47374", "3", "2017-01-25 14:08:05", "66.249.79.140", "16");
INSERT INTO `wp_gf_form_view` VALUES("47375", "15", "2017-01-25 14:08:06", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("47376", "3", "2017-01-25 15:13:38", "184.66.41.173", "56");
INSERT INTO `wp_gf_form_view` VALUES("47377", "15", "2017-01-25 15:13:40", "184.66.41.173", "15");
INSERT INTO `wp_gf_form_view` VALUES("47378", "3", "2017-01-25 16:09:56", "24.68.113.67", "8");
INSERT INTO `wp_gf_form_view` VALUES("47379", "15", "2017-01-25 16:09:57", "24.68.113.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("47380", "3", "2017-01-25 17:06:04", "207.194.133.9", "169");
INSERT INTO `wp_gf_form_view` VALUES("47381", "15", "2017-01-25 17:06:11", "207.194.133.9", "40");
INSERT INTO `wp_gf_form_view` VALUES("47382", "14", "2017-01-25 17:09:53", "78.97.84.130", "3");
INSERT INTO `wp_gf_form_view` VALUES("47383", "15", "2017-01-25 18:22:37", "24.114.36.75", "15");
INSERT INTO `wp_gf_form_view` VALUES("47384", "3", "2017-01-25 18:22:40", "24.114.36.75", "56");
INSERT INTO `wp_gf_form_view` VALUES("47385", "3", "2017-01-25 19:52:46", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("47386", "15", "2017-01-25 19:52:48", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("47387", "14", "2017-01-25 20:10:18", "216.151.180.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("47388", "3", "2017-01-25 20:10:19", "216.151.180.185", "97");
INSERT INTO `wp_gf_form_view` VALUES("47389", "15", "2017-01-25 20:10:19", "216.151.180.185", "24");
INSERT INTO `wp_gf_form_view` VALUES("47390", "3", "2017-01-25 21:13:56", "202.46.49.75", "82");
INSERT INTO `wp_gf_form_view` VALUES("47391", "15", "2017-01-25 21:14:13", "202.46.49.75", "20");
INSERT INTO `wp_gf_form_view` VALUES("47392", "14", "2017-01-25 21:25:24", "142.36.26.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("47393", "3", "2017-01-25 22:02:56", "66.249.79.148", "25");
INSERT INTO `wp_gf_form_view` VALUES("47394", "15", "2017-01-25 22:02:56", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("47395", "3", "2017-01-25 23:00:52", "207.194.133.9", "128");
INSERT INTO `wp_gf_form_view` VALUES("47396", "15", "2017-01-25 23:00:52", "207.194.133.9", "32");
INSERT INTO `wp_gf_form_view` VALUES("47397", "10", "2017-01-25 23:45:52", "163.172.65.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("47398", "3", "2017-01-26 00:05:02", "199.21.99.202", "24");
INSERT INTO `wp_gf_form_view` VALUES("47399", "15", "2017-01-26 00:05:03", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("47400", "3", "2017-01-26 01:00:52", "77.75.78.160", "49");
INSERT INTO `wp_gf_form_view` VALUES("47401", "15", "2017-01-26 01:00:56", "77.75.78.160", "12");
INSERT INTO `wp_gf_form_view` VALUES("47402", "10", "2017-01-26 02:30:15", "77.75.78.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("47403", "3", "2017-01-26 02:30:20", "77.75.78.172", "24");
INSERT INTO `wp_gf_form_view` VALUES("47404", "15", "2017-01-26 02:30:20", "77.75.78.172", "6");
INSERT INTO `wp_gf_form_view` VALUES("47405", "3", "2017-01-26 03:06:30", "202.46.48.139", "42");
INSERT INTO `wp_gf_form_view` VALUES("47406", "15", "2017-01-26 03:06:30", "202.46.48.139", "10");
INSERT INTO `wp_gf_form_view` VALUES("47407", "10", "2017-01-26 03:08:42", "23.233.88.221", "2");
INSERT INTO `wp_gf_form_view` VALUES("47408", "3", "2017-01-26 04:21:08", "77.75.78.165", "40");
INSERT INTO `wp_gf_form_view` VALUES("47409", "15", "2017-01-26 04:21:10", "77.75.78.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("47410", "14", "2017-01-26 04:59:20", "104.202.144.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("47411", "3", "2017-01-26 05:04:32", "220.181.108.144", "96");
INSERT INTO `wp_gf_form_view` VALUES("47412", "15", "2017-01-26 05:04:32", "220.181.108.144", "24");
INSERT INTO `wp_gf_form_view` VALUES("47413", "14", "2017-01-26 05:19:36", "191.101.113.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("47414", "3", "2017-01-26 06:03:41", "68.180.228.164", "49");
INSERT INTO `wp_gf_form_view` VALUES("47415", "15", "2017-01-26 06:03:42", "68.180.228.164", "13");
INSERT INTO `wp_gf_form_view` VALUES("47416", "14", "2017-01-26 06:07:54", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("47417", "3", "2017-01-26 07:05:53", "77.75.78.163", "40");
INSERT INTO `wp_gf_form_view` VALUES("47418", "15", "2017-01-26 07:05:53", "77.75.78.163", "10");
INSERT INTO `wp_gf_form_view` VALUES("47419", "5", "2017-01-26 07:54:23", "77.75.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("47420", "3", "2017-01-26 08:23:11", "202.46.53.144", "16");
INSERT INTO `wp_gf_form_view` VALUES("47421", "15", "2017-01-26 08:23:11", "202.46.53.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("47422", "3", "2017-01-26 09:30:31", "202.46.53.204", "16");
INSERT INTO `wp_gf_form_view` VALUES("47423", "15", "2017-01-26 09:30:37", "202.46.53.204", "4");
INSERT INTO `wp_gf_form_view` VALUES("47424", "3", "2017-01-26 10:03:55", "77.75.79.72", "38");
INSERT INTO `wp_gf_form_view` VALUES("47425", "15", "2017-01-26 10:03:56", "77.75.79.72", "8");
INSERT INTO `wp_gf_form_view` VALUES("47426", "2", "2017-01-26 10:56:20", "46.211.196.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("47427", "2", "2017-01-26 10:56:20", "46.211.196.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("47428", "2", "2017-01-26 10:56:20", "46.211.196.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("47429", "11", "2017-01-26 11:04:33", "77.75.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("47430", "3", "2017-01-26 11:04:33", "77.75.76.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("47431", "15", "2017-01-26 11:04:33", "77.75.76.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("47432", "3", "2017-01-26 12:07:51", "77.75.78.163", "8");
INSERT INTO `wp_gf_form_view` VALUES("47433", "15", "2017-01-26 12:07:54", "77.75.78.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("47434", "3", "2017-01-26 14:06:43", "194.187.170.110", "58");
INSERT INTO `wp_gf_form_view` VALUES("47435", "15", "2017-01-26 14:06:57", "194.187.170.110", "14");
INSERT INTO `wp_gf_form_view` VALUES("47436", "10", "2017-01-26 14:09:01", "194.187.170.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("47437", "3", "2017-01-26 15:02:54", "199.21.99.202", "169");
INSERT INTO `wp_gf_form_view` VALUES("47438", "15", "2017-01-26 15:02:55", "199.21.99.202", "42");
INSERT INTO `wp_gf_form_view` VALUES("47439", "3", "2017-01-26 16:01:55", "194.187.170.110", "84");
INSERT INTO `wp_gf_form_view` VALUES("47440", "15", "2017-01-26 16:01:55", "194.187.170.110", "20");
INSERT INTO `wp_gf_form_view` VALUES("47441", "5", "2017-01-26 16:23:04", "194.187.170.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("47442", "3", "2017-01-26 17:10:08", "184.66.250.66", "209");
INSERT INTO `wp_gf_form_view` VALUES("47443", "15", "2017-01-26 17:10:10", "184.66.250.66", "52");
INSERT INTO `wp_gf_form_view` VALUES("47444", "14", "2017-01-26 17:14:50", "184.66.250.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("47445", "11", "2017-01-26 17:20:07", "184.66.250.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("47446", "2", "2017-01-26 17:20:15", "184.66.250.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("47447", "3", "2017-01-26 18:00:34", "70.66.184.208", "41");
INSERT INTO `wp_gf_form_view` VALUES("47448", "15", "2017-01-26 18:00:34", "70.66.184.208", "10");
INSERT INTO `wp_gf_form_view` VALUES("47449", "14", "2017-01-26 18:17:06", "91.108.73.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("47450", "3", "2017-01-26 19:05:08", "199.21.99.202", "42");
INSERT INTO `wp_gf_form_view` VALUES("47451", "15", "2017-01-26 19:05:09", "199.21.99.202", "11");
INSERT INTO `wp_gf_form_view` VALUES("47452", "3", "2017-01-26 20:05:13", "77.75.77.109", "40");
INSERT INTO `wp_gf_form_view` VALUES("47453", "15", "2017-01-26 20:05:14", "77.75.77.109", "10");
INSERT INTO `wp_gf_form_view` VALUES("47454", "3", "2017-01-26 21:12:15", "184.66.49.231", "89");
INSERT INTO `wp_gf_form_view` VALUES("47455", "15", "2017-01-26 21:12:35", "184.66.49.231", "22");
INSERT INTO `wp_gf_form_view` VALUES("47456", "3", "2017-01-26 22:11:02", "68.180.228.164", "25");
INSERT INTO `wp_gf_form_view` VALUES("47457", "15", "2017-01-26 22:11:02", "68.180.228.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("47458", "6", "2017-01-26 23:20:58", "202.46.54.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("47459", "3", "2017-01-26 23:21:04", "202.46.54.180", "65");
INSERT INTO `wp_gf_form_view` VALUES("47460", "15", "2017-01-26 23:21:04", "202.46.54.180", "16");
INSERT INTO `wp_gf_form_view` VALUES("47461", "3", "2017-01-27 00:20:18", "70.71.125.9", "48");
INSERT INTO `wp_gf_form_view` VALUES("47462", "15", "2017-01-27 00:20:18", "70.71.125.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("47463", "3", "2017-01-27 01:01:25", "202.46.48.144", "41");
INSERT INTO `wp_gf_form_view` VALUES("47464", "15", "2017-01-27 01:01:28", "202.46.48.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("47465", "3", "2017-01-27 02:08:26", "199.21.99.202", "64");
INSERT INTO `wp_gf_form_view` VALUES("47466", "15", "2017-01-27 02:08:27", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("47467", "14", "2017-01-27 02:30:10", "130.204.207.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("47468", "3", "2017-01-27 03:06:16", "64.114.52.110", "16");
INSERT INTO `wp_gf_form_view` VALUES("47469", "15", "2017-01-27 03:06:17", "64.114.52.110", "4");
INSERT INTO `wp_gf_form_view` VALUES("47470", "3", "2017-01-27 04:06:33", "40.77.167.29", "66");
INSERT INTO `wp_gf_form_view` VALUES("47471", "15", "2017-01-27 04:06:33", "40.77.167.29", "16");
INSERT INTO `wp_gf_form_view` VALUES("47472", "3", "2017-01-27 05:16:20", "66.249.79.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("47473", "15", "2017-01-27 05:16:23", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("47474", "3", "2017-01-27 06:21:22", "104.160.9.90", "78");
INSERT INTO `wp_gf_form_view` VALUES("47475", "15", "2017-01-27 06:21:24", "104.160.9.90", "18");
INSERT INTO `wp_gf_form_view` VALUES("47476", "3", "2017-01-27 07:29:39", "52.90.125.141", "24");
INSERT INTO `wp_gf_form_view` VALUES("47477", "15", "2017-01-27 07:29:48", "52.90.125.141", "6");
INSERT INTO `wp_gf_form_view` VALUES("47478", "3", "2017-01-27 08:00:44", "66.249.79.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("47479", "15", "2017-01-27 08:00:45", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("47480", "3", "2017-01-27 09:46:38", "207.46.13.45", "8");
INSERT INTO `wp_gf_form_view` VALUES("47481", "15", "2017-01-27 09:46:40", "207.46.13.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("47482", "3", "2017-01-27 10:23:20", "68.180.228.164", "139");
INSERT INTO `wp_gf_form_view` VALUES("47483", "15", "2017-01-27 10:23:20", "68.180.228.164", "32");
INSERT INTO `wp_gf_form_view` VALUES("47484", "3", "2017-01-27 11:05:24", "202.46.56.202", "24");
INSERT INTO `wp_gf_form_view` VALUES("47485", "15", "2017-01-27 11:05:25", "202.46.56.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("47486", "3", "2017-01-27 12:05:44", "77.75.78.165", "8");
INSERT INTO `wp_gf_form_view` VALUES("47487", "15", "2017-01-27 12:05:45", "77.75.78.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("47488", "3", "2017-01-27 13:03:02", "163.172.65.5", "41");
INSERT INTO `wp_gf_form_view` VALUES("47489", "15", "2017-01-27 13:03:10", "163.172.65.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("47490", "3", "2017-01-27 14:14:09", "77.75.79.101", "33");
INSERT INTO `wp_gf_form_view` VALUES("47491", "15", "2017-01-27 14:14:11", "77.75.79.101", "8");
INSERT INTO `wp_gf_form_view` VALUES("47492", "3", "2017-01-27 15:13:35", "141.8.143.242", "16");
INSERT INTO `wp_gf_form_view` VALUES("47493", "15", "2017-01-27 15:13:35", "141.8.143.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("47494", "10", "2017-01-27 15:16:54", "163.172.64.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("47495", "3", "2017-01-27 16:11:06", "68.180.228.164", "47");
INSERT INTO `wp_gf_form_view` VALUES("47496", "15", "2017-01-27 16:11:09", "68.180.228.164", "13");
INSERT INTO `wp_gf_form_view` VALUES("47497", "3", "2017-01-27 17:46:27", "141.8.143.242", "30");
INSERT INTO `wp_gf_form_view` VALUES("47498", "15", "2017-01-27 17:46:29", "141.8.143.242", "6");
INSERT INTO `wp_gf_form_view` VALUES("47499", "3", "2017-01-27 18:11:32", "202.46.53.66", "93");
INSERT INTO `wp_gf_form_view` VALUES("47500", "15", "2017-01-27 18:11:44", "202.46.53.66", "19");
INSERT INTO `wp_gf_form_view` VALUES("47501", "3", "2017-01-27 20:04:29", "68.180.228.164", "56");
INSERT INTO `wp_gf_form_view` VALUES("47502", "15", "2017-01-27 20:04:33", "68.180.228.164", "14");
INSERT INTO `wp_gf_form_view` VALUES("47503", "3", "2017-01-27 21:05:31", "66.249.79.144", "48");
INSERT INTO `wp_gf_form_view` VALUES("47504", "15", "2017-01-27 21:05:32", "66.249.79.144", "12");
INSERT INTO `wp_gf_form_view` VALUES("47505", "3", "2017-01-27 22:12:49", "24.108.188.201", "116");
INSERT INTO `wp_gf_form_view` VALUES("47506", "15", "2017-01-27 22:12:49", "24.108.188.201", "28");
INSERT INTO `wp_gf_form_view` VALUES("47507", "10", "2017-01-27 22:23:56", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47508", "3", "2017-01-27 23:09:29", "157.55.39.81", "16");
INSERT INTO `wp_gf_form_view` VALUES("47509", "15", "2017-01-27 23:09:31", "157.55.39.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("47510", "3", "2017-01-28 00:42:11", "184.66.49.231", "9");
INSERT INTO `wp_gf_form_view` VALUES("47511", "15", "2017-01-28 00:42:13", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("47512", "3", "2017-01-28 01:07:13", "157.55.39.81", "53");
INSERT INTO `wp_gf_form_view` VALUES("47513", "15", "2017-01-28 01:07:13", "157.55.39.81", "12");
INSERT INTO `wp_gf_form_view` VALUES("47514", "3", "2017-01-28 02:05:39", "68.180.228.164", "41");
INSERT INTO `wp_gf_form_view` VALUES("47515", "15", "2017-01-28 02:05:40", "68.180.228.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("47516", "3", "2017-01-28 03:00:59", "68.180.228.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("47517", "15", "2017-01-28 03:55:28", "202.46.53.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("47518", "3", "2017-01-28 04:20:51", "195.154.199.154", "64");
INSERT INTO `wp_gf_form_view` VALUES("47519", "15", "2017-01-28 04:20:51", "195.154.199.154", "16");
INSERT INTO `wp_gf_form_view` VALUES("47520", "10", "2017-01-28 05:17:02", "77.75.79.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("47521", "3", "2017-01-28 05:17:02", "77.75.79.36", "25");
INSERT INTO `wp_gf_form_view` VALUES("47522", "15", "2017-01-28 05:17:02", "77.75.79.36", "6");
INSERT INTO `wp_gf_form_view` VALUES("47523", "3", "2017-01-28 06:11:14", "77.75.79.62", "88");
INSERT INTO `wp_gf_form_view` VALUES("47524", "15", "2017-01-28 06:11:14", "77.75.79.62", "22");
INSERT INTO `wp_gf_form_view` VALUES("47525", "10", "2017-01-28 06:33:25", "45.55.169.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("47526", "14", "2017-01-28 06:42:37", "154.20.33.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("47527", "3", "2017-01-28 07:07:15", "77.75.79.32", "48");
INSERT INTO `wp_gf_form_view` VALUES("47528", "15", "2017-01-28 07:07:23", "77.75.79.32", "12");
INSERT INTO `wp_gf_form_view` VALUES("47529", "6", "2017-01-28 07:29:13", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47530", "3", "2017-01-28 08:42:38", "202.46.56.98", "8");
INSERT INTO `wp_gf_form_view` VALUES("47531", "15", "2017-01-28 08:42:40", "202.46.56.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("47532", "3", "2017-01-28 11:14:32", "40.77.167.29", "24");
INSERT INTO `wp_gf_form_view` VALUES("47533", "15", "2017-01-28 11:14:36", "40.77.167.29", "6");
INSERT INTO `wp_gf_form_view` VALUES("47534", "3", "2017-01-28 12:00:03", "37.59.55.128", "599");
INSERT INTO `wp_gf_form_view` VALUES("47535", "15", "2017-01-28 12:00:03", "37.59.55.128", "159");
INSERT INTO `wp_gf_form_view` VALUES("47536", "11", "2017-01-28 12:00:11", "37.59.55.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("47537", "2", "2017-01-28 12:00:16", "37.59.55.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("47538", "14", "2017-01-28 12:02:34", "37.59.55.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("47539", "10", "2017-01-28 12:39:36", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("47540", "3", "2017-01-28 13:13:54", "202.46.53.11", "41");
INSERT INTO `wp_gf_form_view` VALUES("47541", "15", "2017-01-28 13:13:55", "202.46.53.11", "10");
INSERT INTO `wp_gf_form_view` VALUES("47542", "3", "2017-01-28 14:07:52", "66.249.79.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("47543", "15", "2017-01-28 14:07:56", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("47544", "10", "2017-01-28 14:13:00", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("47545", "3", "2017-01-28 15:40:25", "68.180.228.164", "17");
INSERT INTO `wp_gf_form_view` VALUES("47546", "15", "2017-01-28 15:40:28", "68.180.228.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("47547", "3", "2017-01-28 16:18:12", "24.68.245.23", "16");
INSERT INTO `wp_gf_form_view` VALUES("47548", "15", "2017-01-28 16:18:12", "24.68.245.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("47549", "14", "2017-01-28 16:18:34", "24.68.245.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("47550", "3", "2017-01-28 17:32:09", "202.46.58.112", "8");
INSERT INTO `wp_gf_form_view` VALUES("47551", "15", "2017-01-28 17:32:51", "202.46.58.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("47552", "15", "2017-01-28 18:34:03", "202.46.53.158", "11");
INSERT INTO `wp_gf_form_view` VALUES("47553", "3", "2017-01-28 18:34:04", "202.46.53.158", "41");
INSERT INTO `wp_gf_form_view` VALUES("47554", "10", "2017-01-28 18:54:12", "217.69.133.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("47555", "3", "2017-01-28 19:07:31", "202.46.51.23", "33");
INSERT INTO `wp_gf_form_view` VALUES("47556", "15", "2017-01-28 19:07:31", "202.46.51.23", "8");
INSERT INTO `wp_gf_form_view` VALUES("47557", "10", "2017-01-28 19:47:25", "77.75.76.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("47558", "3", "2017-01-28 20:30:56", "68.180.228.164", "36");
INSERT INTO `wp_gf_form_view` VALUES("47559", "15", "2017-01-28 20:30:56", "68.180.228.164", "14");
INSERT INTO `wp_gf_form_view` VALUES("47560", "3", "2017-01-28 21:06:21", "202.46.58.87", "204");
INSERT INTO `wp_gf_form_view` VALUES("47561", "15", "2017-01-28 21:06:22", "202.46.58.87", "87");
INSERT INTO `wp_gf_form_view` VALUES("47562", "11", "2017-01-28 21:33:42", "89.123.52.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("47563", "2", "2017-01-28 21:34:55", "89.123.52.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("47564", "10", "2017-01-28 21:59:46", "217.69.133.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("47565", "3", "2017-01-28 23:17:15", "141.8.143.242", "29");
INSERT INTO `wp_gf_form_view` VALUES("47566", "15", "2017-01-28 23:17:21", "141.8.143.242", "12");
INSERT INTO `wp_gf_form_view` VALUES("47567", "3", "2017-01-29 00:10:01", "5.255.250.69", "14");
INSERT INTO `wp_gf_form_view` VALUES("47568", "15", "2017-01-29 00:10:01", "5.255.250.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("47569", "3", "2017-01-29 01:07:59", "217.69.133.231", "37");
INSERT INTO `wp_gf_form_view` VALUES("47570", "15", "2017-01-29 01:07:59", "217.69.133.231", "15");
INSERT INTO `wp_gf_form_view` VALUES("47571", "10", "2017-01-29 01:08:03", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("47572", "12", "2017-01-29 02:02:25", "202.46.57.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("47573", "3", "2017-01-29 02:02:26", "202.46.57.198", "37");
INSERT INTO `wp_gf_form_view` VALUES("47574", "15", "2017-01-29 02:02:26", "202.46.57.198", "15");
INSERT INTO `wp_gf_form_view` VALUES("47575", "3", "2017-01-29 03:02:30", "199.21.99.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("47576", "15", "2017-01-29 03:02:31", "199.21.99.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("47577", "3", "2017-01-29 04:05:14", "68.180.228.164", "76");
INSERT INTO `wp_gf_form_view` VALUES("47578", "15", "2017-01-29 04:16:48", "217.69.133.233", "30");
INSERT INTO `wp_gf_form_view` VALUES("47579", "3", "2017-01-29 05:15:59", "144.76.96.86", "15");
INSERT INTO `wp_gf_form_view` VALUES("47580", "15", "2017-01-29 05:16:00", "144.76.96.86", "6");
INSERT INTO `wp_gf_form_view` VALUES("47581", "14", "2017-01-29 06:31:45", "130.204.207.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("47582", "3", "2017-01-29 06:31:45", "130.204.207.179", "7");
INSERT INTO `wp_gf_form_view` VALUES("47583", "15", "2017-01-29 06:31:46", "130.204.207.179", "3");
INSERT INTO `wp_gf_form_view` VALUES("47584", "3", "2017-01-29 07:24:06", "217.69.133.232", "29");
INSERT INTO `wp_gf_form_view` VALUES("47585", "15", "2017-01-29 07:24:15", "217.69.133.232", "12");
INSERT INTO `wp_gf_form_view` VALUES("47586", "10", "2017-01-29 07:24:15", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("47587", "3", "2017-01-29 08:55:47", "40.77.167.64", "23");
INSERT INTO `wp_gf_form_view` VALUES("47588", "15", "2017-01-29 08:55:48", "40.77.167.64", "9");
INSERT INTO `wp_gf_form_view` VALUES("47589", "3", "2017-01-29 09:13:32", "77.75.79.62", "49");
INSERT INTO `wp_gf_form_view` VALUES("47590", "15", "2017-01-29 09:13:32", "77.75.79.62", "21");
INSERT INTO `wp_gf_form_view` VALUES("47591", "14", "2017-01-29 09:31:19", "24.68.100.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("47592", "3", "2017-01-29 10:05:36", "100.43.91.14", "43");
INSERT INTO `wp_gf_form_view` VALUES("47593", "15", "2017-01-29 10:05:36", "100.43.91.14", "18");
INSERT INTO `wp_gf_form_view` VALUES("47594", "10", "2017-01-29 10:32:09", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("47595", "3", "2017-01-29 11:17:50", "66.249.79.144", "28");
INSERT INTO `wp_gf_form_view` VALUES("47596", "15", "2017-01-29 11:17:50", "66.249.79.144", "12");
INSERT INTO `wp_gf_form_view` VALUES("47597", "3", "2017-01-29 12:06:10", "217.69.133.230", "15");
INSERT INTO `wp_gf_form_view` VALUES("47598", "15", "2017-01-29 12:06:11", "217.69.133.230", "6");
INSERT INTO `wp_gf_form_view` VALUES("47599", "10", "2017-01-29 12:06:14", "217.69.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("47600", "3", "2017-01-29 13:03:24", "77.75.76.166", "29");
INSERT INTO `wp_gf_form_view` VALUES("47601", "15", "2017-01-29 13:03:28", "77.75.76.166", "9");
INSERT INTO `wp_gf_form_view` VALUES("47602", "15", "2017-01-29 14:07:18", "202.46.58.151", "18");
INSERT INTO `wp_gf_form_view` VALUES("47603", "3", "2017-01-29 14:07:19", "202.46.58.151", "21");
INSERT INTO `wp_gf_form_view` VALUES("47604", "3", "2017-01-29 15:09:49", "163.172.66.83", "30");
INSERT INTO `wp_gf_form_view` VALUES("47605", "15", "2017-01-29 15:09:49", "163.172.66.83", "12");
INSERT INTO `wp_gf_form_view` VALUES("47606", "14", "2017-01-29 15:17:24", "207.46.13.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("47607", "3", "2017-01-29 16:08:15", "77.75.76.166", "47");
INSERT INTO `wp_gf_form_view` VALUES("47608", "15", "2017-01-29 16:08:15", "77.75.76.166", "15");
INSERT INTO `wp_gf_form_view` VALUES("47609", "3", "2017-01-29 17:34:30", "77.88.47.114", "112");
INSERT INTO `wp_gf_form_view` VALUES("47610", "15", "2017-01-29 17:34:31", "77.88.47.114", "48");
INSERT INTO `wp_gf_form_view` VALUES("47611", "3", "2017-01-29 18:23:43", "188.163.110.111", "21");
INSERT INTO `wp_gf_form_view` VALUES("47612", "15", "2017-01-29 18:23:44", "188.163.110.111", "9");
INSERT INTO `wp_gf_form_view` VALUES("47613", "10", "2017-01-29 18:26:12", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47614", "3", "2017-01-29 19:16:38", "163.172.65.49", "16");
INSERT INTO `wp_gf_form_view` VALUES("47615", "15", "2017-01-29 19:16:41", "163.172.65.49", "6");
INSERT INTO `wp_gf_form_view` VALUES("47616", "3", "2017-01-29 20:16:20", "202.46.50.182", "27");
INSERT INTO `wp_gf_form_view` VALUES("47617", "15", "2017-01-29 20:16:23", "202.46.50.182", "9");
INSERT INTO `wp_gf_form_view` VALUES("47618", "3", "2017-01-29 21:02:10", "77.75.78.161", "71");
INSERT INTO `wp_gf_form_view` VALUES("47619", "15", "2017-01-29 21:02:10", "77.75.78.161", "30");
INSERT INTO `wp_gf_form_view` VALUES("47620", "14", "2017-01-29 21:36:48", "67.195.42.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("47621", "3", "2017-01-29 22:15:54", "99.236.212.46", "21");
INSERT INTO `wp_gf_form_view` VALUES("47622", "15", "2017-01-29 22:15:55", "99.236.212.46", "9");
INSERT INTO `wp_gf_form_view` VALUES("47623", "3", "2017-01-29 23:01:44", "217.69.133.228", "22");
INSERT INTO `wp_gf_form_view` VALUES("47624", "15", "2017-01-29 23:01:45", "217.69.133.228", "9");
INSERT INTO `wp_gf_form_view` VALUES("47625", "3", "2017-01-30 00:34:58", "217.69.133.230", "16");
INSERT INTO `wp_gf_form_view` VALUES("47626", "15", "2017-01-30 00:34:58", "217.69.133.230", "6");
INSERT INTO `wp_gf_form_view` VALUES("47627", "3", "2017-01-30 02:01:42", "184.66.32.165", "43");
INSERT INTO `wp_gf_form_view` VALUES("47628", "15", "2017-01-30 02:01:46", "184.66.32.165", "18");
INSERT INTO `wp_gf_form_view` VALUES("47629", "10", "2017-01-30 02:08:45", "217.69.133.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("47630", "8", "2017-01-30 02:45:24", "163.172.65.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("47631", "3", "2017-01-30 03:07:49", "68.180.228.164", "135");
INSERT INTO `wp_gf_form_view` VALUES("47632", "15", "2017-01-30 03:07:49", "68.180.228.164", "57");
INSERT INTO `wp_gf_form_view` VALUES("47633", "10", "2017-01-30 03:41:40", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("47634", "14", "2017-01-30 03:44:05", "184.66.45.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("47635", "3", "2017-01-30 04:19:52", "24.108.10.244", "28");
INSERT INTO `wp_gf_form_view` VALUES("47636", "15", "2017-01-30 04:19:52", "24.108.10.244", "12");
INSERT INTO `wp_gf_form_view` VALUES("47637", "3", "2017-01-30 05:02:30", "96.50.59.185", "43");
INSERT INTO `wp_gf_form_view` VALUES("47638", "15", "2017-01-30 05:02:30", "96.50.59.185", "18");
INSERT INTO `wp_gf_form_view` VALUES("47639", "3", "2017-01-30 06:14:26", "202.46.55.170", "7");
INSERT INTO `wp_gf_form_view` VALUES("47640", "15", "2017-01-30 06:14:26", "202.46.55.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("47641", "3", "2017-01-30 07:31:50", "52.202.240.20", "14");
INSERT INTO `wp_gf_form_view` VALUES("47642", "15", "2017-01-30 07:31:55", "52.202.240.20", "6");
INSERT INTO `wp_gf_form_view` VALUES("47643", "3", "2017-01-30 08:00:11", "157.55.39.36", "82");
INSERT INTO `wp_gf_form_view` VALUES("47644", "15", "2017-01-30 08:00:11", "157.55.39.36", "33");
INSERT INTO `wp_gf_form_view` VALUES("47645", "14", "2017-01-30 08:07:18", "119.190.142.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("47646", "10", "2017-01-30 08:51:53", "157.55.39.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("47647", "3", "2017-01-30 09:06:37", "40.77.167.29", "28");
INSERT INTO `wp_gf_form_view` VALUES("47648", "15", "2017-01-30 09:06:37", "40.77.167.29", "12");
INSERT INTO `wp_gf_form_view` VALUES("47649", "10", "2017-01-30 09:55:58", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("47650", "3", "2017-01-30 10:09:44", "163.172.66.152", "23");
INSERT INTO `wp_gf_form_view` VALUES("47651", "15", "2017-01-30 10:09:44", "163.172.66.152", "9");
INSERT INTO `wp_gf_form_view` VALUES("47652", "3", "2017-01-30 12:20:57", "199.21.99.202", "14");
INSERT INTO `wp_gf_form_view` VALUES("47653", "15", "2017-01-30 12:21:00", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("47654", "3", "2017-01-30 13:27:48", "202.46.57.78", "7");
INSERT INTO `wp_gf_form_view` VALUES("47655", "15", "2017-01-30 13:27:49", "202.46.57.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("47656", "9", "2017-01-30 14:08:51", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("47657", "3", "2017-01-30 14:08:51", "66.249.79.144", "28");
INSERT INTO `wp_gf_form_view` VALUES("47658", "15", "2017-01-30 14:08:51", "66.249.79.144", "12");
INSERT INTO `wp_gf_form_view` VALUES("47659", "3", "2017-01-30 15:00:27", "202.46.54.143", "29");
INSERT INTO `wp_gf_form_view` VALUES("47660", "15", "2017-01-30 15:00:27", "202.46.54.143", "12");
INSERT INTO `wp_gf_form_view` VALUES("47661", "14", "2017-01-30 15:06:13", "93.127.138.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("47662", "3", "2017-01-30 16:05:09", "66.249.79.148", "74");
INSERT INTO `wp_gf_form_view` VALUES("47663", "15", "2017-01-30 16:08:34", "154.20.198.180", "27");
INSERT INTO `wp_gf_form_view` VALUES("47664", "10", "2017-01-30 17:45:23", "75.154.240.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("47665", "3", "2017-01-30 17:45:26", "75.154.240.57", "15");
INSERT INTO `wp_gf_form_view` VALUES("47666", "15", "2017-01-30 17:45:26", "75.154.240.57", "6");
INSERT INTO `wp_gf_form_view` VALUES("47667", "15", "2017-01-30 18:00:06", "68.180.228.164", "32");
INSERT INTO `wp_gf_form_view` VALUES("47668", "3", "2017-01-30 18:00:07", "68.180.228.164", "49");
INSERT INTO `wp_gf_form_view` VALUES("47669", "3", "2017-01-30 19:05:37", "24.68.199.127", "67");
INSERT INTO `wp_gf_form_view` VALUES("47670", "3", "2017-01-30 19:05:37", "24.68.199.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("47671", "15", "2017-01-30 19:05:37", "24.68.199.127", "27");
INSERT INTO `wp_gf_form_view` VALUES("47672", "3", "2017-01-30 21:12:43", "24.68.100.59", "49");
INSERT INTO `wp_gf_form_view` VALUES("47673", "15", "2017-01-30 21:12:46", "24.68.100.59", "22");
INSERT INTO `wp_gf_form_view` VALUES("47674", "3", "2017-01-30 22:43:44", "202.46.58.119", "102");
INSERT INTO `wp_gf_form_view` VALUES("47675", "15", "2017-01-30 22:43:47", "202.46.58.119", "42");
INSERT INTO `wp_gf_form_view` VALUES("47676", "14", "2017-01-30 22:44:41", "154.16.47.96", "5");
INSERT INTO `wp_gf_form_view` VALUES("47677", "3", "2017-01-30 23:06:22", "40.77.167.64", "50");
INSERT INTO `wp_gf_form_view` VALUES("47678", "15", "2017-01-30 23:06:23", "40.77.167.64", "22");
INSERT INTO `wp_gf_form_view` VALUES("47679", "3", "2017-01-31 00:18:23", "216.244.66.237", "27");
INSERT INTO `wp_gf_form_view` VALUES("47680", "15", "2017-01-31 00:18:24", "216.244.66.237", "9");
INSERT INTO `wp_gf_form_view` VALUES("47681", "13", "2017-01-31 00:24:11", "202.46.48.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("47682", "3", "2017-01-31 01:04:45", "40.77.167.29", "417");
INSERT INTO `wp_gf_form_view` VALUES("47683", "15", "2017-01-31 01:04:46", "40.77.167.29", "181");
INSERT INTO `wp_gf_form_view` VALUES("47684", "10", "2017-01-31 01:05:20", "157.55.39.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("47685", "6", "2017-01-31 01:05:56", "40.77.167.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("47686", "3", "2017-01-31 02:16:25", "24.108.26.214", "22");
INSERT INTO `wp_gf_form_view` VALUES("47687", "15", "2017-01-31 02:16:27", "24.108.26.214", "9");
INSERT INTO `wp_gf_form_view` VALUES("47688", "3", "2017-01-31 03:33:52", "68.180.228.164", "28");
INSERT INTO `wp_gf_form_view` VALUES("47689", "15", "2017-01-31 03:33:52", "68.180.228.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("47690", "10", "2017-01-31 03:43:24", "77.75.76.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47691", "3", "2017-01-31 04:11:54", "70.66.168.98", "51");
INSERT INTO `wp_gf_form_view` VALUES("47692", "15", "2017-01-31 04:11:54", "70.66.168.98", "21");
INSERT INTO `wp_gf_form_view` VALUES("47693", "3", "2017-01-31 05:09:54", "184.66.48.13", "70");
INSERT INTO `wp_gf_form_view` VALUES("47694", "15", "2017-01-31 05:09:55", "184.66.48.13", "30");
INSERT INTO `wp_gf_form_view` VALUES("47695", "10", "2017-01-31 06:11:03", "77.75.76.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("47696", "3", "2017-01-31 06:11:04", "77.75.76.170", "30");
INSERT INTO `wp_gf_form_view` VALUES("47697", "15", "2017-01-31 06:11:04", "77.75.76.170", "12");
INSERT INTO `wp_gf_form_view` VALUES("47698", "2", "2017-01-31 07:59:37", "68.180.228.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("47699", "3", "2017-01-31 07:59:41", "68.180.228.164", "7");
INSERT INTO `wp_gf_form_view` VALUES("47700", "15", "2017-01-31 07:59:41", "68.180.228.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("47701", "3", "2017-01-31 08:03:59", "202.46.56.91", "14");
INSERT INTO `wp_gf_form_view` VALUES("47702", "15", "2017-01-31 08:03:59", "202.46.56.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("47703", "8", "2017-01-31 08:37:28", "202.46.57.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("47704", "3", "2017-01-31 09:03:01", "77.75.78.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("47705", "15", "2017-01-31 09:03:01", "77.75.78.161", "18");
INSERT INTO `wp_gf_form_view` VALUES("47706", "15", "2017-01-31 10:07:56", "68.180.228.164", "16");
INSERT INTO `wp_gf_form_view` VALUES("47707", "3", "2017-01-31 10:07:56", "68.180.228.164", "35");
INSERT INTO `wp_gf_form_view` VALUES("47708", "11", "2017-01-31 11:24:55", "202.46.55.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("47709", "3", "2017-01-31 11:24:56", "202.46.55.173", "35");
INSERT INTO `wp_gf_form_view` VALUES("47710", "15", "2017-01-31 11:24:56", "202.46.55.173", "15");
INSERT INTO `wp_gf_form_view` VALUES("47711", "3", "2017-01-31 12:15:01", "199.21.99.202", "21");
INSERT INTO `wp_gf_form_view` VALUES("47712", "15", "2017-01-31 12:15:01", "199.21.99.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("47713", "3", "2017-01-31 13:05:23", "202.46.54.93", "43");
INSERT INTO `wp_gf_form_view` VALUES("47714", "15", "2017-01-31 13:05:23", "202.46.54.93", "18");
INSERT INTO `wp_gf_form_view` VALUES("47715", "3", "2017-01-31 14:01:16", "109.163.234.5", "56");
INSERT INTO `wp_gf_form_view` VALUES("47716", "15", "2017-01-31 14:01:17", "109.163.234.5", "24");
INSERT INTO `wp_gf_form_view` VALUES("47717", "3", "2017-01-31 15:19:17", "77.75.79.11", "7");
INSERT INTO `wp_gf_form_view` VALUES("47718", "15", "2017-01-31 15:19:18", "77.75.79.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("47719", "3", "2017-01-31 16:23:18", "77.75.78.162", "56");
INSERT INTO `wp_gf_form_view` VALUES("47720", "15", "2017-01-31 16:23:20", "77.75.78.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("47721", "11", "2017-01-31 16:59:04", "202.46.48.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("47722", "3", "2017-01-31 17:07:39", "77.75.76.165", "142");
INSERT INTO `wp_gf_form_view` VALUES("47723", "15", "2017-01-31 17:07:40", "77.75.76.165", "67");
INSERT INTO `wp_gf_form_view` VALUES("47724", "14", "2017-01-31 17:55:35", "24.108.181.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("47725", "3", "2017-01-31 18:39:06", "173.34.226.26", "15");
INSERT INTO `wp_gf_form_view` VALUES("47726", "15", "2017-01-31 18:39:06", "173.34.226.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("47727", "3", "2017-01-31 19:07:00", "64.114.222.220", "28");
INSERT INTO `wp_gf_form_view` VALUES("47728", "15", "2017-01-31 19:07:00", "64.114.222.220", "12");
INSERT INTO `wp_gf_form_view` VALUES("47729", "8", "2017-01-31 19:46:59", "202.46.53.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("47730", "3", "2017-01-31 20:08:18", "70.67.182.91", "45");
INSERT INTO `wp_gf_form_view` VALUES("47731", "15", "2017-01-31 20:08:18", "70.67.182.91", "18");
INSERT INTO `wp_gf_form_view` VALUES("47732", "3", "2017-01-31 21:14:40", "184.66.252.209", "76");
INSERT INTO `wp_gf_form_view` VALUES("47733", "15", "2017-01-31 21:14:41", "184.66.252.209", "34");
INSERT INTO `wp_gf_form_view` VALUES("47734", "14", "2017-01-31 21:54:55", "202.129.29.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("47735", "15", "2017-01-31 22:06:40", "68.180.228.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("47736", "3", "2017-01-31 22:06:40", "68.180.228.164", "7");
INSERT INTO `wp_gf_form_view` VALUES("47737", "3", "2017-01-31 23:00:42", "77.75.78.161", "70");
INSERT INTO `wp_gf_form_view` VALUES("47738", "15", "2017-01-31 23:00:43", "77.75.78.161", "30");
INSERT INTO `wp_gf_form_view` VALUES("47739", "3", "2017-02-01 00:00:03", "142.36.27.82", "106");
INSERT INTO `wp_gf_form_view` VALUES("47740", "15", "2017-02-01 00:00:03", "142.36.27.82", "42");
INSERT INTO `wp_gf_form_view` VALUES("47741", "14", "2017-02-01 00:00:09", "142.36.27.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("47742", "10", "2017-02-01 00:00:27", "157.55.39.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("47743", "12", "2017-02-01 00:07:15", "202.46.55.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("47744", "3", "2017-02-01 01:01:00", "212.109.201.73", "49");
INSERT INTO `wp_gf_form_view` VALUES("47745", "15", "2017-02-01 01:01:00", "212.109.201.73", "21");
INSERT INTO `wp_gf_form_view` VALUES("47746", "10", "2017-02-01 02:11:08", "5.35.25.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("47747", "3", "2017-02-01 02:11:08", "5.35.25.103", "35");
INSERT INTO `wp_gf_form_view` VALUES("47748", "15", "2017-02-01 02:11:08", "5.35.25.103", "15");
INSERT INTO `wp_gf_form_view` VALUES("47749", "3", "2017-02-01 03:08:02", "216.244.66.237", "15");
INSERT INTO `wp_gf_form_view` VALUES("47750", "15", "2017-02-01 03:08:02", "216.244.66.237", "6");
INSERT INTO `wp_gf_form_view` VALUES("47751", "3", "2017-02-01 04:01:40", "202.46.57.166", "14");
INSERT INTO `wp_gf_form_view` VALUES("47752", "15", "2017-02-01 04:01:40", "202.46.57.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("47753", "3", "2017-02-01 05:22:50", "68.180.228.164", "22");
INSERT INTO `wp_gf_form_view` VALUES("47754", "15", "2017-02-01 05:22:50", "68.180.228.164", "9");
INSERT INTO `wp_gf_form_view` VALUES("47755", "13", "2017-02-01 05:42:10", "202.46.48.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("47756", "3", "2017-02-01 06:32:58", "206.87.156.224", "28");
INSERT INTO `wp_gf_form_view` VALUES("47757", "15", "2017-02-01 06:32:58", "206.87.156.224", "12");
INSERT INTO `wp_gf_form_view` VALUES("47758", "14", "2017-02-01 07:14:42", "93.127.138.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("47759", "3", "2017-02-01 07:14:45", "93.127.138.59", "21");
INSERT INTO `wp_gf_form_view` VALUES("47760", "15", "2017-02-01 07:14:45", "93.127.138.59", "9");
INSERT INTO `wp_gf_form_view` VALUES("47761", "3", "2017-02-01 08:10:37", "66.249.79.140", "142");
INSERT INTO `wp_gf_form_view` VALUES("47762", "15", "2017-02-01 08:10:37", "66.249.79.140", "60");
INSERT INTO `wp_gf_form_view` VALUES("47763", "3", "2017-02-01 09:01:18", "68.180.228.164", "30");
INSERT INTO `wp_gf_form_view` VALUES("47764", "15", "2017-02-01 09:28:52", "157.55.39.233", "12");
INSERT INTO `wp_gf_form_view` VALUES("47765", "10", "2017-02-01 09:48:06", "157.55.39.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("47766", "3", "2017-02-01 10:22:37", "68.180.228.164", "63");
INSERT INTO `wp_gf_form_view` VALUES("47767", "15", "2017-02-01 10:22:41", "68.180.228.164", "27");
INSERT INTO `wp_gf_form_view` VALUES("47768", "2", "2017-02-01 10:27:00", "54.183.137.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("47769", "14", "2017-02-01 10:27:04", "54.183.137.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("47770", "3", "2017-02-01 11:05:00", "66.249.79.140", "35");
INSERT INTO `wp_gf_form_view` VALUES("47771", "15", "2017-02-01 11:05:00", "66.249.79.140", "15");
INSERT INTO `wp_gf_form_view` VALUES("47772", "3", "2017-02-01 12:41:08", "157.55.39.56", "7");
INSERT INTO `wp_gf_form_view` VALUES("47773", "15", "2017-02-01 12:41:08", "157.55.39.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("47774", "3", "2017-02-01 13:12:16", "157.55.39.182", "42");
INSERT INTO `wp_gf_form_view` VALUES("47775", "15", "2017-02-01 13:12:16", "157.55.39.182", "18");
INSERT INTO `wp_gf_form_view` VALUES("47776", "3", "2017-02-01 14:25:21", "202.46.58.167", "28");
INSERT INTO `wp_gf_form_view` VALUES("47777", "15", "2017-02-01 14:25:21", "202.46.58.167", "12");
INSERT INTO `wp_gf_form_view` VALUES("47778", "3", "2017-02-01 15:25:23", "68.180.228.164", "14");
INSERT INTO `wp_gf_form_view` VALUES("47779", "15", "2017-02-01 15:25:23", "68.180.228.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("47780", "3", "2017-02-01 16:05:49", "202.46.55.139", "116");
INSERT INTO `wp_gf_form_view` VALUES("47781", "15", "2017-02-01 16:05:50", "202.46.55.139", "42");
INSERT INTO `wp_gf_form_view` VALUES("47782", "3", "2017-02-01 17:02:40", "154.20.56.175", "128");
INSERT INTO `wp_gf_form_view` VALUES("47783", "15", "2017-02-01 17:02:40", "154.20.56.175", "54");
INSERT INTO `wp_gf_form_view` VALUES("47784", "15", "2017-02-01 18:16:17", "142.104.37.87", "38");
INSERT INTO `wp_gf_form_view` VALUES("47785", "3", "2017-02-01 18:16:18", "142.104.37.87", "76");
INSERT INTO `wp_gf_form_view` VALUES("47786", "14", "2017-02-01 18:22:47", "142.36.123.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("47787", "3", "2017-02-01 19:02:53", "202.46.56.68", "14");
INSERT INTO `wp_gf_form_view` VALUES("47788", "15", "2017-02-01 19:02:53", "202.46.56.68", "7");
INSERT INTO `wp_gf_form_view` VALUES("47789", "14", "2017-02-01 20:00:25", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("47790", "3", "2017-02-01 20:00:26", "68.180.229.247", "42");
INSERT INTO `wp_gf_form_view` VALUES("47791", "15", "2017-02-01 20:00:27", "68.180.229.247", "19");
INSERT INTO `wp_gf_form_view` VALUES("47792", "10", "2017-02-01 20:43:21", "202.46.52.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("47793", "15", "2017-02-01 21:05:41", "108.172.115.133", "52");
INSERT INTO `wp_gf_form_view` VALUES("47794", "3", "2017-02-01 21:05:41", "108.172.115.133", "119");
INSERT INTO `wp_gf_form_view` VALUES("47795", "14", "2017-02-01 21:29:16", "108.172.115.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("47796", "3", "2017-02-01 22:10:00", "184.69.173.146", "29");
INSERT INTO `wp_gf_form_view` VALUES("47797", "15", "2017-02-01 22:10:01", "184.69.173.146", "13");
INSERT INTO `wp_gf_form_view` VALUES("47798", "3", "2017-02-01 23:30:48", "202.46.57.18", "7");
INSERT INTO `wp_gf_form_view` VALUES("47799", "15", "2017-02-01 23:30:48", "202.46.57.18", "3");
INSERT INTO `wp_gf_form_view` VALUES("47800", "3", "2017-02-02 00:04:17", "202.46.52.102", "528");
INSERT INTO `wp_gf_form_view` VALUES("47801", "15", "2017-02-02 00:04:18", "202.46.52.102", "224");
INSERT INTO `wp_gf_form_view` VALUES("47802", "14", "2017-02-02 00:10:48", "96.50.25.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("47803", "2", "2017-02-02 00:15:22", "174.127.133.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("47804", "11", "2017-02-02 00:19:22", "174.127.133.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("47805", "10", "2017-02-02 00:43:14", "174.127.133.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("47806", "3", "2017-02-02 01:11:16", "202.46.50.134", "22");
INSERT INTO `wp_gf_form_view` VALUES("47807", "15", "2017-02-02 01:11:16", "202.46.50.134", "9");
INSERT INTO `wp_gf_form_view` VALUES("47808", "3", "2017-02-02 02:30:12", "42.122.1.54", "16");
INSERT INTO `wp_gf_form_view` VALUES("47809", "15", "2017-02-02 02:30:12", "42.122.1.54", "6");
INSERT INTO `wp_gf_form_view` VALUES("47810", "3", "2017-02-02 03:01:24", "207.46.13.184", "2139");
INSERT INTO `wp_gf_form_view` VALUES("47811", "15", "2017-02-02 03:01:25", "207.46.13.184", "960");
INSERT INTO `wp_gf_form_view` VALUES("47812", "14", "2017-02-02 03:25:59", "138.197.19.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("47813", "11", "2017-02-02 03:26:20", "138.197.19.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("47814", "6", "2017-02-02 03:45:35", "138.197.19.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("47815", "9", "2017-02-02 03:52:50", "138.197.19.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("47816", "3", "2017-02-02 04:00:06", "138.197.19.14", "2066");
INSERT INTO `wp_gf_form_view` VALUES("47817", "15", "2017-02-02 04:00:06", "138.197.19.14", "909");
INSERT INTO `wp_gf_form_view` VALUES("47818", "10", "2017-02-02 04:08:06", "138.197.19.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("47819", "2", "2017-02-02 04:32:52", "138.197.19.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("47820", "13", "2017-02-02 04:42:50", "138.197.19.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("47821", "3", "2017-02-02 05:06:16", "207.46.13.184", "31");
INSERT INTO `wp_gf_form_view` VALUES("47822", "15", "2017-02-02 05:06:17", "207.46.13.184", "12");
INSERT INTO `wp_gf_form_view` VALUES("47823", "3", "2017-02-02 06:05:49", "207.46.13.127", "78");
INSERT INTO `wp_gf_form_view` VALUES("47824", "15", "2017-02-02 06:05:49", "207.46.13.127", "33");
INSERT INTO `wp_gf_form_view` VALUES("47825", "10", "2017-02-02 06:07:55", "207.46.13.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("47826", "3", "2017-02-02 07:13:48", "202.46.49.69", "28");
INSERT INTO `wp_gf_form_view` VALUES("47827", "15", "2017-02-02 07:13:55", "202.46.49.69", "14");
INSERT INTO `wp_gf_form_view` VALUES("47828", "13", "2017-02-02 07:19:19", "207.46.13.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("47829", "10", "2017-02-02 07:35:34", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("47830", "3", "2017-02-02 08:16:41", "68.180.229.247", "21");
INSERT INTO `wp_gf_form_view` VALUES("47831", "15", "2017-02-02 08:16:42", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("47832", "10", "2017-02-02 08:34:38", "40.77.167.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("47833", "10", "2017-02-02 09:10:00", "207.46.13.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("47834", "3", "2017-02-02 09:10:01", "207.46.13.184", "35");
INSERT INTO `wp_gf_form_view` VALUES("47835", "15", "2017-02-02 09:10:01", "207.46.13.184", "15");
INSERT INTO `wp_gf_form_view` VALUES("47836", "7", "2017-02-02 09:29:43", "207.46.13.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("47837", "3", "2017-02-02 10:51:07", "207.46.13.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("47838", "15", "2017-02-02 10:51:07", "207.46.13.184", "3");
INSERT INTO `wp_gf_form_view` VALUES("47839", "10", "2017-02-02 11:12:52", "40.77.167.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("47840", "3", "2017-02-02 11:12:52", "40.77.167.45", "21");
INSERT INTO `wp_gf_form_view` VALUES("47841", "15", "2017-02-02 11:12:53", "40.77.167.45", "9");
INSERT INTO `wp_gf_form_view` VALUES("47842", "3", "2017-02-02 12:04:04", "157.55.39.53", "28");
INSERT INTO `wp_gf_form_view` VALUES("47843", "15", "2017-02-02 12:04:05", "157.55.39.53", "20");
INSERT INTO `wp_gf_form_view` VALUES("47844", "9", "2017-02-02 12:14:52", "202.46.50.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("47845", "3", "2017-02-02 13:00:40", "66.249.79.148", "56");
INSERT INTO `wp_gf_form_view` VALUES("47846", "15", "2017-02-02 13:00:40", "66.249.79.148", "21");
INSERT INTO `wp_gf_form_view` VALUES("47847", "10", "2017-02-02 13:21:13", "207.46.13.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("47848", "10", "2017-02-02 14:08:13", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("47849", "3", "2017-02-02 14:08:13", "157.55.39.53", "35");
INSERT INTO `wp_gf_form_view` VALUES("47850", "15", "2017-02-02 14:08:14", "157.55.39.53", "15");
INSERT INTO `wp_gf_form_view` VALUES("47851", "14", "2017-02-02 14:22:50", "38.102.226.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("47852", "10", "2017-02-02 15:02:47", "207.46.13.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("47853", "3", "2017-02-02 15:02:47", "207.46.13.127", "35");
INSERT INTO `wp_gf_form_view` VALUES("47854", "15", "2017-02-02 15:02:48", "207.46.13.127", "15");
INSERT INTO `wp_gf_form_view` VALUES("47855", "3", "2017-02-02 16:09:17", "202.46.58.54", "14");
INSERT INTO `wp_gf_form_view` VALUES("47856", "15", "2017-02-02 16:09:17", "202.46.58.54", "6");
INSERT INTO `wp_gf_form_view` VALUES("47857", "3", "2017-02-02 17:06:20", "77.75.78.163", "50");
INSERT INTO `wp_gf_form_view` VALUES("47858", "15", "2017-02-02 17:06:20", "77.75.78.163", "21");
INSERT INTO `wp_gf_form_view` VALUES("47859", "2", "2017-02-02 17:21:36", "40.77.167.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("47860", "3", "2017-02-02 18:00:02", "70.66.211.204", "14");
INSERT INTO `wp_gf_form_view` VALUES("47861", "15", "2017-02-02 18:00:02", "70.66.211.204", "6");
INSERT INTO `wp_gf_form_view` VALUES("47862", "3", "2017-02-02 19:01:06", "77.75.78.170", "52");
INSERT INTO `wp_gf_form_view` VALUES("47863", "15", "2017-02-02 19:01:07", "77.75.78.170", "22");
INSERT INTO `wp_gf_form_view` VALUES("47864", "14", "2017-02-02 19:36:27", "143.202.155.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("47865", "3", "2017-02-02 20:03:44", "202.46.52.109", "80");
INSERT INTO `wp_gf_form_view` VALUES("47866", "15", "2017-02-02 20:03:44", "202.46.52.109", "33");
INSERT INTO `wp_gf_form_view` VALUES("47867", "14", "2017-02-02 20:24:58", "24.67.72.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("47868", "10", "2017-02-02 21:06:49", "40.77.167.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("47869", "3", "2017-02-02 21:06:49", "40.77.167.42", "36");
INSERT INTO `wp_gf_form_view` VALUES("47870", "15", "2017-02-02 21:06:49", "40.77.167.42", "16");
INSERT INTO `wp_gf_form_view` VALUES("47871", "3", "2017-02-02 22:11:49", "46.229.168.72", "85");
INSERT INTO `wp_gf_form_view` VALUES("47872", "15", "2017-02-02 22:11:54", "46.229.168.72", "33");
INSERT INTO `wp_gf_form_view` VALUES("47873", "3", "2017-02-02 23:08:51", "66.249.79.148", "105");
INSERT INTO `wp_gf_form_view` VALUES("47874", "15", "2017-02-02 23:08:51", "66.249.79.148", "45");
INSERT INTO `wp_gf_form_view` VALUES("47875", "2", "2017-02-02 23:51:44", "34.197.199.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("47876", "11", "2017-02-02 23:51:53", "66.34.215.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("47877", "3", "2017-02-03 00:28:50", "68.180.229.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("47878", "15", "2017-02-03 00:28:51", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("47879", "10", "2017-02-03 01:09:18", "77.75.78.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("47880", "3", "2017-02-03 01:09:18", "77.75.78.162", "43");
INSERT INTO `wp_gf_form_view` VALUES("47881", "15", "2017-02-03 01:09:18", "77.75.78.162", "18");
INSERT INTO `wp_gf_form_view` VALUES("47882", "3", "2017-02-03 02:13:22", "163.172.65.20", "32");
INSERT INTO `wp_gf_form_view` VALUES("47883", "15", "2017-02-03 02:13:23", "163.172.65.20", "12");
INSERT INTO `wp_gf_form_view` VALUES("47884", "10", "2017-02-03 02:41:45", "157.55.39.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("47885", "3", "2017-02-03 03:23:12", "24.68.234.221", "66");
INSERT INTO `wp_gf_form_view` VALUES("47886", "15", "2017-02-03 03:23:13", "24.68.234.221", "27");
INSERT INTO `wp_gf_form_view` VALUES("47887", "14", "2017-02-03 03:44:33", "176.31.96.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("47888", "14", "2017-02-03 04:23:00", "93.127.138.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("47889", "3", "2017-02-03 04:23:00", "93.127.138.119", "7");
INSERT INTO `wp_gf_form_view` VALUES("47890", "15", "2017-02-03 04:23:00", "93.127.138.119", "3");
INSERT INTO `wp_gf_form_view` VALUES("47891", "3", "2017-02-03 05:03:14", "68.180.229.247", "58");
INSERT INTO `wp_gf_form_view` VALUES("47892", "15", "2017-02-03 05:03:15", "68.180.229.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("47893", "11", "2017-02-03 05:53:44", "93.180.64.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("47894", "3", "2017-02-03 06:15:47", "163.172.65.132", "7");
INSERT INTO `wp_gf_form_view` VALUES("47895", "15", "2017-02-03 06:15:48", "163.172.65.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("47896", "3", "2017-02-03 07:07:14", "40.77.167.35", "67");
INSERT INTO `wp_gf_form_view` VALUES("47897", "15", "2017-02-03 07:07:14", "40.77.167.35", "44");
INSERT INTO `wp_gf_form_view` VALUES("47898", "14", "2017-02-03 07:31:27", "89.47.22.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("47899", "10", "2017-02-03 07:53:57", "163.172.65.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("47900", "2", "2017-02-03 07:57:38", "182.74.23.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("47901", "13", "2017-02-03 08:05:08", "40.77.167.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("47902", "3", "2017-02-03 08:05:09", "40.77.167.63", "26");
INSERT INTO `wp_gf_form_view` VALUES("47903", "15", "2017-02-03 08:05:09", "40.77.167.63", "16");
INSERT INTO `wp_gf_form_view` VALUES("47904", "14", "2017-02-03 08:29:39", "104.160.11.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("47905", "3", "2017-02-03 09:38:31", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("47906", "15", "2017-02-03 09:38:32", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("47907", "3", "2017-02-03 10:12:49", "68.180.229.247", "40");
INSERT INTO `wp_gf_form_view` VALUES("47908", "15", "2017-02-03 10:12:50", "68.180.229.247", "24");
INSERT INTO `wp_gf_form_view` VALUES("47909", "2", "2017-02-03 10:36:17", "62.210.80.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("47910", "3", "2017-02-03 11:07:48", "163.172.66.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("47911", "15", "2017-02-03 11:07:48", "163.172.66.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("47912", "3", "2017-02-03 12:06:23", "40.77.167.8", "26");
INSERT INTO `wp_gf_form_view` VALUES("47913", "15", "2017-02-03 12:06:23", "40.77.167.8", "16");
INSERT INTO `wp_gf_form_view` VALUES("47914", "10", "2017-02-03 12:54:03", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("47915", "9", "2017-02-03 13:01:21", "202.46.53.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("47916", "3", "2017-02-03 13:01:21", "202.46.53.146", "18");
INSERT INTO `wp_gf_form_view` VALUES("47917", "15", "2017-02-03 13:01:21", "202.46.53.146", "12");
INSERT INTO `wp_gf_form_view` VALUES("47918", "10", "2017-02-03 13:49:58", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("47919", "3", "2017-02-03 14:08:18", "202.46.52.201", "87");
INSERT INTO `wp_gf_form_view` VALUES("47920", "15", "2017-02-03 14:08:18", "202.46.52.201", "52");
INSERT INTO `wp_gf_form_view` VALUES("47921", "14", "2017-02-03 14:38:13", "78.97.84.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("47922", "3", "2017-02-03 15:08:56", "163.172.66.3", "242");
INSERT INTO `wp_gf_form_view` VALUES("47923", "15", "2017-02-03 15:08:56", "163.172.66.3", "157");
INSERT INTO `wp_gf_form_view` VALUES("47924", "11", "2017-02-03 15:34:39", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("47925", "10", "2017-02-03 15:34:51", "208.43.225.85", "3");
INSERT INTO `wp_gf_form_view` VALUES("47926", "3", "2017-02-03 17:24:29", "157.55.39.53", "81");
INSERT INTO `wp_gf_form_view` VALUES("47927", "15", "2017-02-03 17:24:33", "157.55.39.53", "53");
INSERT INTO `wp_gf_form_view` VALUES("47928", "10", "2017-02-03 18:20:27", "157.55.39.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("47929", "3", "2017-02-03 18:20:27", "157.55.39.53", "60");
INSERT INTO `wp_gf_form_view` VALUES("47930", "15", "2017-02-03 18:20:28", "157.55.39.53", "40");
INSERT INTO `wp_gf_form_view` VALUES("47931", "14", "2017-02-03 18:42:04", "24.69.158.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("47932", "5", "2017-02-03 19:13:37", "207.46.13.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("47933", "3", "2017-02-03 19:13:38", "207.46.13.153", "18");
INSERT INTO `wp_gf_form_view` VALUES("47934", "15", "2017-02-03 19:13:38", "207.46.13.153", "12");
INSERT INTO `wp_gf_form_view` VALUES("47935", "3", "2017-02-03 20:13:19", "157.55.39.53", "19");
INSERT INTO `wp_gf_form_view` VALUES("47936", "15", "2017-02-03 20:13:21", "157.55.39.53", "12");
INSERT INTO `wp_gf_form_view` VALUES("47937", "10", "2017-02-03 20:25:49", "202.46.52.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("47938", "15", "2017-02-03 21:13:55", "163.172.66.165", "38");
INSERT INTO `wp_gf_form_view` VALUES("47939", "3", "2017-02-03 21:14:00", "163.172.66.165", "55");
INSERT INTO `wp_gf_form_view` VALUES("47940", "10", "2017-02-03 21:32:48", "202.46.50.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("47941", "3", "2017-02-03 22:06:19", "202.46.55.60", "58");
INSERT INTO `wp_gf_form_view` VALUES("47942", "15", "2017-02-03 22:06:21", "202.46.55.60", "36");
INSERT INTO `wp_gf_form_view` VALUES("47943", "3", "2017-02-03 23:13:17", "202.46.49.205", "38");
INSERT INTO `wp_gf_form_view` VALUES("47944", "15", "2017-02-03 23:13:18", "202.46.49.205", "24");
INSERT INTO `wp_gf_form_view` VALUES("47945", "6", "2017-02-04 00:20:16", "202.46.58.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("47946", "3", "2017-02-04 00:20:16", "202.46.58.123", "19");
INSERT INTO `wp_gf_form_view` VALUES("47947", "15", "2017-02-04 00:20:16", "202.46.58.123", "12");
INSERT INTO `wp_gf_form_view` VALUES("47948", "3", "2017-02-04 01:16:38", "163.172.66.22", "43");
INSERT INTO `wp_gf_form_view` VALUES("47949", "15", "2017-02-04 01:16:38", "163.172.66.22", "28");
INSERT INTO `wp_gf_form_view` VALUES("47950", "10", "2017-02-04 01:27:23", "207.46.13.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("47951", "3", "2017-02-04 02:01:24", "66.249.79.144", "37");
INSERT INTO `wp_gf_form_view` VALUES("47952", "15", "2017-02-04 02:01:24", "66.249.79.144", "24");
INSERT INTO `wp_gf_form_view` VALUES("47953", "2", "2017-02-04 02:23:16", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("47954", "10", "2017-02-04 03:04:27", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("47955", "3", "2017-02-04 03:04:27", "66.249.79.140", "24");
INSERT INTO `wp_gf_form_view` VALUES("47956", "15", "2017-02-04 03:04:28", "66.249.79.140", "16");
INSERT INTO `wp_gf_form_view` VALUES("47957", "8", "2017-02-04 03:32:45", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("47958", "3", "2017-02-04 04:18:09", "207.46.13.153", "12");
INSERT INTO `wp_gf_form_view` VALUES("47959", "15", "2017-02-04 04:18:09", "207.46.13.153", "8");
INSERT INTO `wp_gf_form_view` VALUES("47960", "9", "2017-02-04 05:29:56", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("47961", "3", "2017-02-04 05:29:56", "157.55.39.53", "43");
INSERT INTO `wp_gf_form_view` VALUES("47962", "15", "2017-02-04 05:29:57", "157.55.39.53", "28");
INSERT INTO `wp_gf_form_view` VALUES("47963", "3", "2017-02-04 06:16:36", "202.46.57.169", "27");
INSERT INTO `wp_gf_form_view` VALUES("47964", "15", "2017-02-04 06:16:36", "202.46.57.169", "16");
INSERT INTO `wp_gf_form_view` VALUES("47965", "3", "2017-02-04 07:12:50", "207.46.13.187", "26");
INSERT INTO `wp_gf_form_view` VALUES("47966", "15", "2017-02-04 07:12:51", "207.46.13.187", "16");
INSERT INTO `wp_gf_form_view` VALUES("47967", "3", "2017-02-04 08:02:30", "76.68.47.125", "57");
INSERT INTO `wp_gf_form_view` VALUES("47968", "15", "2017-02-04 08:02:30", "76.68.47.125", "36");
INSERT INTO `wp_gf_form_view` VALUES("47969", "14", "2017-02-04 08:27:49", "191.101.67.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("47970", "3", "2017-02-04 09:08:16", "68.180.229.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("47971", "15", "2017-02-04 09:08:17", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("47972", "3", "2017-02-04 10:50:50", "202.46.58.14", "13");
INSERT INTO `wp_gf_form_view` VALUES("47973", "15", "2017-02-04 10:50:51", "202.46.58.14", "8");
INSERT INTO `wp_gf_form_view` VALUES("47974", "10", "2017-02-04 10:57:19", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("47975", "3", "2017-02-04 11:25:28", "95.165.9.72", "18");
INSERT INTO `wp_gf_form_view` VALUES("47976", "15", "2017-02-04 11:25:28", "95.165.9.72", "12");
INSERT INTO `wp_gf_form_view` VALUES("47977", "3", "2017-02-04 12:12:38", "157.55.39.53", "57");
INSERT INTO `wp_gf_form_view` VALUES("47978", "15", "2017-02-04 12:12:38", "157.55.39.53", "36");
INSERT INTO `wp_gf_form_view` VALUES("47979", "10", "2017-02-04 12:42:03", "5.35.16.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("47980", "3", "2017-02-04 13:01:42", "66.249.79.144", "12");
INSERT INTO `wp_gf_form_view` VALUES("47981", "15", "2017-02-04 13:01:42", "66.249.79.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("47982", "3", "2017-02-04 14:26:32", "50.69.12.176", "42");
INSERT INTO `wp_gf_form_view` VALUES("47983", "15", "2017-02-04 14:26:32", "50.69.12.176", "28");
INSERT INTO `wp_gf_form_view` VALUES("47984", "3", "2017-02-04 15:22:08", "207.46.13.187", "24");
INSERT INTO `wp_gf_form_view` VALUES("47985", "15", "2017-02-04 15:22:09", "207.46.13.187", "16");
INSERT INTO `wp_gf_form_view` VALUES("47986", "3", "2017-02-04 16:03:47", "93.180.64.230", "67");
INSERT INTO `wp_gf_form_view` VALUES("47987", "15", "2017-02-04 16:03:47", "93.180.64.230", "45");
INSERT INTO `wp_gf_form_view` VALUES("47988", "10", "2017-02-04 16:25:09", "163.172.66.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("47989", "15", "2017-02-04 17:04:52", "66.249.79.140", "150");
INSERT INTO `wp_gf_form_view` VALUES("47990", "3", "2017-02-04 17:04:52", "66.249.79.140", "226");
INSERT INTO `wp_gf_form_view` VALUES("47991", "11", "2017-02-04 17:41:18", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("47992", "2", "2017-02-04 17:41:24", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("47993", "3", "2017-02-04 18:07:21", "68.180.229.247", "19");
INSERT INTO `wp_gf_form_view` VALUES("47994", "15", "2017-02-04 18:07:22", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("47995", "5", "2017-02-04 18:48:26", "207.46.13.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("47996", "14", "2017-02-04 19:07:51", "54.153.127.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("47997", "3", "2017-02-04 19:07:53", "54.153.127.129", "93");
INSERT INTO `wp_gf_form_view` VALUES("47998", "15", "2017-02-04 19:07:53", "54.153.127.129", "60");
INSERT INTO `wp_gf_form_view` VALUES("47999", "3", "2017-02-04 20:03:58", "163.172.65.38", "31");
INSERT INTO `wp_gf_form_view` VALUES("48000", "15", "2017-02-04 20:03:58", "163.172.65.38", "21");
INSERT INTO `wp_gf_form_view` VALUES("48001", "10", "2017-02-04 20:18:35", "202.46.54.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("48002", "3", "2017-02-04 21:03:40", "207.46.13.187", "19");
INSERT INTO `wp_gf_form_view` VALUES("48003", "15", "2017-02-04 21:03:49", "207.46.13.187", "12");
INSERT INTO `wp_gf_form_view` VALUES("48004", "3", "2017-02-04 23:12:25", "202.46.55.176", "7");
INSERT INTO `wp_gf_form_view` VALUES("48005", "15", "2017-02-04 23:12:28", "202.46.55.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("48006", "3", "2017-02-05 00:19:25", "202.46.49.144", "13");
INSERT INTO `wp_gf_form_view` VALUES("48007", "15", "2017-02-05 00:19:26", "202.46.49.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("48008", "14", "2017-02-05 01:10:11", "107.175.71.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("48009", "3", "2017-02-05 01:10:11", "107.175.71.254", "37");
INSERT INTO `wp_gf_form_view` VALUES("48010", "15", "2017-02-05 01:10:12", "107.175.71.254", "24");
INSERT INTO `wp_gf_form_view` VALUES("48011", "3", "2017-02-05 02:33:21", "202.46.56.98", "6");
INSERT INTO `wp_gf_form_view` VALUES("48012", "15", "2017-02-05 02:33:21", "202.46.56.98", "4");
INSERT INTO `wp_gf_form_view` VALUES("48013", "3", "2017-02-05 03:06:49", "202.46.57.89", "25");
INSERT INTO `wp_gf_form_view` VALUES("48014", "15", "2017-02-05 03:06:50", "202.46.57.89", "16");
INSERT INTO `wp_gf_form_view` VALUES("48015", "14", "2017-02-05 03:41:56", "24.68.227.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("48016", "8", "2017-02-05 03:52:05", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("48017", "3", "2017-02-05 04:47:19", "202.46.57.12", "6");
INSERT INTO `wp_gf_form_view` VALUES("48018", "15", "2017-02-05 04:47:21", "202.46.57.12", "4");
INSERT INTO `wp_gf_form_view` VALUES("48019", "3", "2017-02-05 05:00:30", "24.68.113.67", "42");
INSERT INTO `wp_gf_form_view` VALUES("48020", "15", "2017-02-05 05:00:30", "24.68.113.67", "28");
INSERT INTO `wp_gf_form_view` VALUES("48021", "3", "2017-02-05 06:05:37", "157.55.39.53", "30");
INSERT INTO `wp_gf_form_view` VALUES("48022", "15", "2017-02-05 06:05:37", "157.55.39.53", "20");
INSERT INTO `wp_gf_form_view` VALUES("48023", "3", "2017-02-05 07:32:03", "54.91.28.215", "12");
INSERT INTO `wp_gf_form_view` VALUES("48024", "15", "2017-02-05 07:32:04", "54.91.28.215", "8");
INSERT INTO `wp_gf_form_view` VALUES("48025", "3", "2017-02-05 08:02:04", "202.46.49.116", "30");
INSERT INTO `wp_gf_form_view` VALUES("48026", "15", "2017-02-05 08:02:04", "202.46.49.116", "20");
INSERT INTO `wp_gf_form_view` VALUES("48027", "14", "2017-02-05 09:01:50", "64.145.76.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("48028", "3", "2017-02-05 09:01:51", "64.145.76.68", "36");
INSERT INTO `wp_gf_form_view` VALUES("48029", "15", "2017-02-05 09:01:51", "64.145.76.68", "24");
INSERT INTO `wp_gf_form_view` VALUES("48030", "8", "2017-02-05 09:16:33", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("48031", "10", "2017-02-05 09:53:20", "199.16.157.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("48032", "3", "2017-02-05 10:16:02", "202.46.55.143", "30");
INSERT INTO `wp_gf_form_view` VALUES("48033", "15", "2017-02-05 10:16:02", "202.46.55.143", "20");
INSERT INTO `wp_gf_form_view` VALUES("48034", "14", "2017-02-05 10:46:01", "204.152.206.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("48035", "3", "2017-02-05 11:04:35", "31.187.76.10", "66");
INSERT INTO `wp_gf_form_view` VALUES("48036", "15", "2017-02-05 11:04:36", "31.187.76.10", "40");
INSERT INTO `wp_gf_form_view` VALUES("48037", "14", "2017-02-05 11:32:13", "54.172.126.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("48038", "3", "2017-02-05 12:03:14", "68.180.229.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("48039", "15", "2017-02-05 12:03:14", "68.180.229.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("48040", "14", "2017-02-05 12:13:40", "107.173.195.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("48041", "3", "2017-02-05 13:07:40", "66.249.79.148", "48");
INSERT INTO `wp_gf_form_view` VALUES("48042", "15", "2017-02-05 13:07:41", "66.249.79.148", "32");
INSERT INTO `wp_gf_form_view` VALUES("48043", "3", "2017-02-05 14:10:14", "40.77.167.32", "26");
INSERT INTO `wp_gf_form_view` VALUES("48044", "15", "2017-02-05 14:10:15", "40.77.167.32", "16");
INSERT INTO `wp_gf_form_view` VALUES("48045", "14", "2017-02-05 14:52:46", "107.175.148.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("48046", "6", "2017-02-05 15:10:18", "163.172.66.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("48047", "3", "2017-02-05 15:10:18", "163.172.66.68", "19");
INSERT INTO `wp_gf_form_view` VALUES("48048", "15", "2017-02-05 15:10:18", "163.172.66.68", "12");
INSERT INTO `wp_gf_form_view` VALUES("48049", "3", "2017-02-05 16:04:52", "68.180.229.247", "29");
INSERT INTO `wp_gf_form_view` VALUES("48050", "15", "2017-02-05 16:04:52", "68.180.229.247", "17");
INSERT INTO `wp_gf_form_view` VALUES("48051", "10", "2017-02-05 17:00:24", "163.172.66.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("48052", "3", "2017-02-05 17:00:24", "163.172.66.57", "26");
INSERT INTO `wp_gf_form_view` VALUES("48053", "15", "2017-02-05 17:00:24", "163.172.66.57", "16");
INSERT INTO `wp_gf_form_view` VALUES("48054", "3", "2017-02-05 18:19:48", "66.249.79.144", "30");
INSERT INTO `wp_gf_form_view` VALUES("48055", "15", "2017-02-05 18:19:48", "66.249.79.144", "20");
INSERT INTO `wp_gf_form_view` VALUES("48056", "10", "2017-02-05 18:36:52", "108.59.8.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("48057", "3", "2017-02-05 19:33:33", "207.194.133.9", "24");
INSERT INTO `wp_gf_form_view` VALUES("48058", "15", "2017-02-05 19:33:34", "207.194.133.9", "16");
INSERT INTO `wp_gf_form_view` VALUES("48059", "14", "2017-02-05 19:37:29", "77.75.78.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("48060", "3", "2017-02-05 20:02:21", "163.172.65.129", "55");
INSERT INTO `wp_gf_form_view` VALUES("48061", "15", "2017-02-05 20:02:21", "163.172.65.129", "38");
INSERT INTO `wp_gf_form_view` VALUES("48062", "3", "2017-02-05 21:16:15", "163.172.66.115", "45");
INSERT INTO `wp_gf_form_view` VALUES("48063", "15", "2017-02-05 21:16:15", "163.172.66.115", "28");
INSERT INTO `wp_gf_form_view` VALUES("48064", "14", "2017-02-05 21:48:59", "104.140.4.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("48065", "3", "2017-02-05 22:03:08", "184.66.243.207", "75");
INSERT INTO `wp_gf_form_view` VALUES("48066", "15", "2017-02-05 22:03:08", "184.66.243.207", "48");
INSERT INTO `wp_gf_form_view` VALUES("48067", "14", "2017-02-05 22:05:42", "173.234.249.238", "3");
INSERT INTO `wp_gf_form_view` VALUES("48068", "2", "2017-02-05 22:26:50", "40.77.167.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("48069", "3", "2017-02-05 23:02:16", "66.249.79.148", "61");
INSERT INTO `wp_gf_form_view` VALUES("48070", "15", "2017-02-05 23:02:17", "66.249.79.148", "41");
INSERT INTO `wp_gf_form_view` VALUES("48071", "7", "2017-02-05 23:53:14", "202.46.51.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("48072", "3", "2017-02-06 00:22:58", "68.180.229.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("48073", "15", "2017-02-06 00:26:45", "202.46.52.40", "20");
INSERT INTO `wp_gf_form_view` VALUES("48074", "3", "2017-02-06 01:00:14", "202.46.58.95", "36");
INSERT INTO `wp_gf_form_view` VALUES("48075", "15", "2017-02-06 01:00:14", "202.46.58.95", "25");
INSERT INTO `wp_gf_form_view` VALUES("48076", "3", "2017-02-06 02:07:13", "202.46.57.171", "50");
INSERT INTO `wp_gf_form_view` VALUES("48077", "15", "2017-02-06 02:07:14", "202.46.57.171", "32");
INSERT INTO `wp_gf_form_view` VALUES("48078", "3", "2017-02-06 03:14:10", "202.46.51.102", "103");
INSERT INTO `wp_gf_form_view` VALUES("48079", "15", "2017-02-06 03:14:11", "202.46.51.102", "65");
INSERT INTO `wp_gf_form_view` VALUES("48080", "3", "2017-02-06 04:21:11", "202.46.49.115", "47");
INSERT INTO `wp_gf_form_view` VALUES("48081", "15", "2017-02-06 04:21:11", "202.46.49.115", "29");
INSERT INTO `wp_gf_form_view` VALUES("48082", "8", "2017-02-06 04:44:56", "207.46.13.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("48083", "13", "2017-02-06 05:25:47", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("48084", "3", "2017-02-06 05:25:47", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("48085", "15", "2017-02-06 05:25:48", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("48086", "3", "2017-02-06 06:35:08", "202.46.48.84", "12");
INSERT INTO `wp_gf_form_view` VALUES("48087", "15", "2017-02-06 06:35:08", "202.46.48.84", "8");
INSERT INTO `wp_gf_form_view` VALUES("48088", "3", "2017-02-06 07:08:45", "202.46.53.161", "58");
INSERT INTO `wp_gf_form_view` VALUES("48089", "15", "2017-02-06 07:08:52", "202.46.53.161", "50");
INSERT INTO `wp_gf_form_view` VALUES("48090", "3", "2017-02-06 08:42:52", "40.77.167.16", "12");
INSERT INTO `wp_gf_form_view` VALUES("48091", "15", "2017-02-06 08:42:52", "40.77.167.16", "8");
INSERT INTO `wp_gf_form_view` VALUES("48092", "3", "2017-02-06 09:21:54", "202.46.55.124", "12");
INSERT INTO `wp_gf_form_view` VALUES("48093", "15", "2017-02-06 09:21:54", "202.46.55.124", "8");
INSERT INTO `wp_gf_form_view` VALUES("48094", "3", "2017-02-06 10:28:14", "93.180.64.230", "31");
INSERT INTO `wp_gf_form_view` VALUES("48095", "15", "2017-02-06 10:28:14", "93.180.64.230", "20");
INSERT INTO `wp_gf_form_view` VALUES("48096", "3", "2017-02-06 11:11:30", "195.22.127.140", "48");
INSERT INTO `wp_gf_form_view` VALUES("48097", "15", "2017-02-06 11:11:31", "195.22.127.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("48098", "12", "2017-02-06 11:38:26", "163.172.64.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("48099", "3", "2017-02-06 12:08:55", "40.77.167.76", "32");
INSERT INTO `wp_gf_form_view` VALUES("48100", "15", "2017-02-06 12:08:55", "40.77.167.76", "20");
INSERT INTO `wp_gf_form_view` VALUES("48101", "10", "2017-02-06 13:15:50", "77.75.78.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("48102", "3", "2017-02-06 13:15:54", "77.75.78.171", "18");
INSERT INTO `wp_gf_form_view` VALUES("48103", "15", "2017-02-06 13:15:55", "77.75.78.171", "12");
INSERT INTO `wp_gf_form_view` VALUES("48104", "12", "2017-02-06 13:27:27", "202.46.52.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("48105", "3", "2017-02-06 14:05:25", "68.180.229.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("48106", "12", "2017-02-06 14:10:40", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("48107", "15", "2017-02-06 14:10:41", "66.249.79.140", "20");
INSERT INTO `wp_gf_form_view` VALUES("48108", "14", "2017-02-06 14:32:57", "163.172.65.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("48109", "3", "2017-02-06 15:06:47", "52.205.194.185", "12");
INSERT INTO `wp_gf_form_view` VALUES("48110", "15", "2017-02-06 15:06:47", "52.205.194.185", "8");
INSERT INTO `wp_gf_form_view` VALUES("48111", "3", "2017-02-06 16:08:08", "220.181.108.181", "19");
INSERT INTO `wp_gf_form_view` VALUES("48112", "15", "2017-02-06 16:08:08", "220.181.108.181", "12");
INSERT INTO `wp_gf_form_view` VALUES("48113", "3", "2017-02-06 17:05:28", "77.75.79.72", "6");
INSERT INTO `wp_gf_form_view` VALUES("48114", "15", "2017-02-06 17:05:28", "77.75.79.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("48115", "3", "2017-02-06 18:01:46", "40.77.167.76", "26");
INSERT INTO `wp_gf_form_view` VALUES("48116", "15", "2017-02-06 18:01:51", "40.77.167.76", "16");
INSERT INTO `wp_gf_form_view` VALUES("48117", "3", "2017-02-06 19:13:56", "202.46.58.197", "49");
INSERT INTO `wp_gf_form_view` VALUES("48118", "15", "2017-02-06 19:14:26", "202.46.58.197", "32");
INSERT INTO `wp_gf_form_view` VALUES("48119", "14", "2017-02-06 19:35:51", "24.69.158.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("48120", "3", "2017-02-06 20:10:09", "77.75.78.160", "18");
INSERT INTO `wp_gf_form_view` VALUES("48121", "15", "2017-02-06 20:10:09", "77.75.78.160", "12");
INSERT INTO `wp_gf_form_view` VALUES("48122", "3", "2017-02-06 21:07:02", "202.46.48.133", "69");
INSERT INTO `wp_gf_form_view` VALUES("48123", "15", "2017-02-06 21:07:03", "202.46.48.133", "48");
INSERT INTO `wp_gf_form_view` VALUES("48124", "8", "2017-02-06 21:15:08", "163.172.65.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("48125", "14", "2017-02-06 21:17:35", "217.91.64.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("48126", "3", "2017-02-06 22:06:56", "163.172.64.193", "31");
INSERT INTO `wp_gf_form_view` VALUES("48127", "15", "2017-02-06 22:06:58", "163.172.64.193", "20");
INSERT INTO `wp_gf_form_view` VALUES("48128", "3", "2017-02-06 23:05:00", "217.69.133.231", "31");
INSERT INTO `wp_gf_form_view` VALUES("48129", "15", "2017-02-06 23:05:00", "217.69.133.231", "20");
INSERT INTO `wp_gf_form_view` VALUES("48130", "3", "2017-02-07 00:23:24", "77.75.79.109", "17");
INSERT INTO `wp_gf_form_view` VALUES("48131", "15", "2017-02-07 00:23:25", "77.75.79.109", "8");
INSERT INTO `wp_gf_form_view` VALUES("48132", "3", "2017-02-07 01:04:18", "77.75.76.166", "36");
INSERT INTO `wp_gf_form_view` VALUES("48133", "15", "2017-02-07 01:04:18", "77.75.76.166", "24");
INSERT INTO `wp_gf_form_view` VALUES("48134", "14", "2017-02-07 01:39:05", "24.69.159.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48135", "3", "2017-02-07 02:11:07", "77.75.78.164", "18");
INSERT INTO `wp_gf_form_view` VALUES("48136", "15", "2017-02-07 02:11:08", "77.75.78.164", "13");
INSERT INTO `wp_gf_form_view` VALUES("48137", "3", "2017-02-07 03:37:04", "163.172.66.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("48138", "15", "2017-02-07 03:37:04", "163.172.66.164", "8");
INSERT INTO `wp_gf_form_view` VALUES("48139", "3", "2017-02-07 04:52:28", "163.172.64.192", "12");
INSERT INTO `wp_gf_form_view` VALUES("48140", "15", "2017-02-07 04:52:28", "163.172.64.192", "8");
INSERT INTO `wp_gf_form_view` VALUES("48141", "5", "2017-02-07 05:04:03", "163.172.65.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("48142", "3", "2017-02-07 05:04:03", "163.172.65.128", "66");
INSERT INTO `wp_gf_form_view` VALUES("48143", "15", "2017-02-07 05:04:03", "163.172.65.128", "44");
INSERT INTO `wp_gf_form_view` VALUES("48144", "2", "2017-02-07 05:51:22", "163.172.65.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("48145", "3", "2017-02-07 06:46:20", "217.69.133.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("48146", "15", "2017-02-07 06:46:20", "217.69.133.228", "4");
INSERT INTO `wp_gf_form_view` VALUES("48147", "3", "2017-02-07 07:08:23", "202.46.49.139", "18");
INSERT INTO `wp_gf_form_view` VALUES("48148", "15", "2017-02-07 07:08:24", "202.46.49.139", "12");
INSERT INTO `wp_gf_form_view` VALUES("48149", "6", "2017-02-07 07:41:48", "202.46.56.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("48150", "3", "2017-02-07 08:16:28", "163.172.66.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("48151", "15", "2017-02-07 08:16:28", "163.172.66.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("48152", "3", "2017-02-07 09:14:09", "92.51.145.173", "25");
INSERT INTO `wp_gf_form_view` VALUES("48153", "15", "2017-02-07 09:14:11", "92.51.145.173", "16");
INSERT INTO `wp_gf_form_view` VALUES("48154", "3", "2017-02-07 10:34:11", "163.172.66.38", "19");
INSERT INTO `wp_gf_form_view` VALUES("48155", "15", "2017-02-07 10:34:11", "163.172.66.38", "12");
INSERT INTO `wp_gf_form_view` VALUES("48156", "3", "2017-02-07 11:56:48", "185.20.99.141", "6");
INSERT INTO `wp_gf_form_view` VALUES("48157", "15", "2017-02-07 11:56:48", "185.20.99.141", "4");
INSERT INTO `wp_gf_form_view` VALUES("48158", "3", "2017-02-07 12:06:33", "202.46.56.136", "19");
INSERT INTO `wp_gf_form_view` VALUES("48159", "15", "2017-02-07 12:06:33", "202.46.56.136", "12");
INSERT INTO `wp_gf_form_view` VALUES("48160", "10", "2017-02-07 12:36:11", "163.172.64.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("48161", "3", "2017-02-07 13:30:38", "66.249.79.144", "18");
INSERT INTO `wp_gf_form_view` VALUES("48162", "15", "2017-02-07 13:30:38", "66.249.79.144", "12");
INSERT INTO `wp_gf_form_view` VALUES("48163", "3", "2017-02-07 14:37:50", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("48164", "15", "2017-02-07 14:37:50", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("48165", "3", "2017-02-07 15:02:41", "45.20.214.1", "70");
INSERT INTO `wp_gf_form_view` VALUES("48166", "15", "2017-02-07 15:02:41", "45.20.214.1", "44");
INSERT INTO `wp_gf_form_view` VALUES("48167", "10", "2017-02-07 15:11:58", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48168", "3", "2017-02-07 16:02:06", "202.46.57.177", "43");
INSERT INTO `wp_gf_form_view` VALUES("48169", "15", "2017-02-07 16:02:06", "202.46.57.177", "28");
INSERT INTO `wp_gf_form_view` VALUES("48170", "3", "2017-02-07 17:09:06", "202.46.48.124", "25");
INSERT INTO `wp_gf_form_view` VALUES("48171", "15", "2017-02-07 17:09:06", "202.46.48.124", "16");
INSERT INTO `wp_gf_form_view` VALUES("48172", "14", "2017-02-07 18:27:15", "198.23.216.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("48173", "3", "2017-02-07 18:27:27", "198.23.216.201", "30");
INSERT INTO `wp_gf_form_view` VALUES("48174", "15", "2017-02-07 18:27:27", "198.23.216.201", "20");
INSERT INTO `wp_gf_form_view` VALUES("48175", "3", "2017-02-07 19:18:29", "184.66.49.231", "19");
INSERT INTO `wp_gf_form_view` VALUES("48176", "15", "2017-02-07 19:18:42", "184.66.49.231", "12");
INSERT INTO `wp_gf_form_view` VALUES("48177", "3", "2017-02-07 20:05:31", "54.224.31.74", "73");
INSERT INTO `wp_gf_form_view` VALUES("48178", "15", "2017-02-07 20:05:32", "54.224.31.74", "48");
INSERT INTO `wp_gf_form_view` VALUES("48179", "2", "2017-02-07 20:05:47", "54.224.31.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("48180", "3", "2017-02-07 21:00:37", "202.46.57.88", "17");
INSERT INTO `wp_gf_form_view` VALUES("48181", "15", "2017-02-07 21:00:37", "202.46.57.88", "8");
INSERT INTO `wp_gf_form_view` VALUES("48182", "15", "2017-02-07 22:13:47", "104.142.127.99", "25");
INSERT INTO `wp_gf_form_view` VALUES("48183", "3", "2017-02-07 22:13:48", "104.142.127.99", "37");
INSERT INTO `wp_gf_form_view` VALUES("48184", "3", "2017-02-07 23:07:32", "137.122.64.16", "39");
INSERT INTO `wp_gf_form_view` VALUES("48185", "15", "2017-02-07 23:07:50", "137.122.64.16", "26");
INSERT INTO `wp_gf_form_view` VALUES("48186", "3", "2017-02-08 00:00:00", "157.55.39.105", "231");
INSERT INTO `wp_gf_form_view` VALUES("48187", "15", "2017-02-08 00:00:00", "157.55.39.105", "151");
INSERT INTO `wp_gf_form_view` VALUES("48188", "11", "2017-02-08 00:17:16", "85.145.16.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("48189", "2", "2017-02-08 00:18:17", "85.145.16.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("48190", "14", "2017-02-08 00:34:43", "77.75.78.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48191", "3", "2017-02-08 01:04:11", "70.66.211.204", "66");
INSERT INTO `wp_gf_form_view` VALUES("48192", "15", "2017-02-08 01:04:12", "70.66.211.204", "45");
INSERT INTO `wp_gf_form_view` VALUES("48193", "3", "2017-02-08 02:06:22", "24.69.159.172", "31");
INSERT INTO `wp_gf_form_view` VALUES("48194", "15", "2017-02-08 02:06:22", "24.69.159.172", "20");
INSERT INTO `wp_gf_form_view` VALUES("48195", "3", "2017-02-08 03:58:57", "202.46.48.80", "7");
INSERT INTO `wp_gf_form_view` VALUES("48196", "15", "2017-02-08 03:58:58", "202.46.48.80", "4");
INSERT INTO `wp_gf_form_view` VALUES("48197", "3", "2017-02-08 04:05:08", "154.20.232.17", "45");
INSERT INTO `wp_gf_form_view` VALUES("48198", "15", "2017-02-08 04:05:09", "154.20.232.17", "32");
INSERT INTO `wp_gf_form_view` VALUES("48199", "3", "2017-02-08 05:05:54", "202.46.50.18", "66");
INSERT INTO `wp_gf_form_view` VALUES("48200", "15", "2017-02-08 05:05:54", "202.46.50.18", "40");
INSERT INTO `wp_gf_form_view` VALUES("48201", "6", "2017-02-08 05:46:13", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("48202", "11", "2017-02-08 05:54:54", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48203", "3", "2017-02-08 06:10:53", "77.75.78.166", "36");
INSERT INTO `wp_gf_form_view` VALUES("48204", "15", "2017-02-08 06:10:54", "77.75.78.166", "24");
INSERT INTO `wp_gf_form_view` VALUES("48205", "14", "2017-02-08 06:34:49", "96.54.246.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("48206", "3", "2017-02-08 07:32:06", "54.210.214.243", "146");
INSERT INTO `wp_gf_form_view` VALUES("48207", "15", "2017-02-08 07:32:08", "54.210.214.243", "97");
INSERT INTO `wp_gf_form_view` VALUES("48208", "11", "2017-02-08 07:46:27", "138.197.111.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("48209", "2", "2017-02-08 07:46:27", "138.197.111.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("48210", "3", "2017-02-08 08:43:46", "77.75.77.62", "18");
INSERT INTO `wp_gf_form_view` VALUES("48211", "15", "2017-02-08 08:43:46", "77.75.77.62", "12");
INSERT INTO `wp_gf_form_view` VALUES("48212", "3", "2017-02-08 09:10:22", "163.172.65.180", "25");
INSERT INTO `wp_gf_form_view` VALUES("48213", "15", "2017-02-08 09:10:23", "163.172.65.180", "16");
INSERT INTO `wp_gf_form_view` VALUES("48214", "3", "2017-02-08 10:21:30", "100.43.91.1", "42");
INSERT INTO `wp_gf_form_view` VALUES("48215", "15", "2017-02-08 10:21:30", "100.43.91.1", "29");
INSERT INTO `wp_gf_form_view` VALUES("48216", "3", "2017-02-08 11:03:43", "142.4.218.156", "72");
INSERT INTO `wp_gf_form_view` VALUES("48217", "15", "2017-02-08 11:03:44", "142.4.218.156", "48");
INSERT INTO `wp_gf_form_view` VALUES("48218", "2", "2017-02-08 11:03:47", "142.4.218.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("48219", "3", "2017-02-08 12:06:54", "163.172.66.28", "32");
INSERT INTO `wp_gf_form_view` VALUES("48220", "15", "2017-02-08 12:06:55", "163.172.66.28", "20");
INSERT INTO `wp_gf_form_view` VALUES("48221", "3", "2017-02-08 13:00:59", "77.75.77.11", "32");
INSERT INTO `wp_gf_form_view` VALUES("48222", "15", "2017-02-08 13:00:59", "77.75.77.11", "20");
INSERT INTO `wp_gf_form_view` VALUES("48223", "5", "2017-02-08 14:12:25", "202.46.58.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("48224", "3", "2017-02-08 14:12:25", "202.46.58.189", "37");
INSERT INTO `wp_gf_form_view` VALUES("48225", "15", "2017-02-08 14:12:26", "202.46.58.189", "25");
INSERT INTO `wp_gf_form_view` VALUES("48226", "3", "2017-02-08 15:05:25", "163.172.64.192", "44");
INSERT INTO `wp_gf_form_view` VALUES("48227", "15", "2017-02-08 15:05:25", "163.172.64.192", "41");
INSERT INTO `wp_gf_form_view` VALUES("48228", "3", "2017-02-08 16:00:38", "68.180.229.247", "60");
INSERT INTO `wp_gf_form_view` VALUES("48229", "15", "2017-02-08 16:00:38", "68.180.229.247", "40");
INSERT INTO `wp_gf_form_view` VALUES("48230", "13", "2017-02-08 16:04:54", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("48231", "15", "2017-02-08 17:01:18", "68.180.229.247", "17");
INSERT INTO `wp_gf_form_view` VALUES("48232", "3", "2017-02-08 17:01:18", "68.180.229.247", "27");
INSERT INTO `wp_gf_form_view` VALUES("48233", "3", "2017-02-08 18:06:50", "202.46.56.201", "45");
INSERT INTO `wp_gf_form_view` VALUES("48234", "15", "2017-02-08 18:06:50", "202.46.56.201", "28");
INSERT INTO `wp_gf_form_view` VALUES("48235", "3", "2017-02-08 19:16:12", "154.5.139.130", "66");
INSERT INTO `wp_gf_form_view` VALUES("48236", "15", "2017-02-08 19:16:12", "154.5.139.130", "46");
INSERT INTO `wp_gf_form_view` VALUES("48237", "3", "2017-02-08 20:11:39", "64.233.172.138", "42");
INSERT INTO `wp_gf_form_view` VALUES("48238", "15", "2017-02-08 20:11:39", "64.233.172.138", "29");
INSERT INTO `wp_gf_form_view` VALUES("48239", "15", "2017-02-08 21:03:43", "68.180.229.247", "25");
INSERT INTO `wp_gf_form_view` VALUES("48240", "3", "2017-02-08 21:03:43", "68.180.229.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("48241", "3", "2017-02-08 22:01:16", "202.46.57.208", "28");
INSERT INTO `wp_gf_form_view` VALUES("48242", "15", "2017-02-08 22:01:16", "202.46.57.208", "17");
INSERT INTO `wp_gf_form_view` VALUES("48243", "10", "2017-02-08 22:19:27", "163.172.64.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("48244", "3", "2017-02-08 23:06:01", "93.180.64.230", "85");
INSERT INTO `wp_gf_form_view` VALUES("48245", "15", "2017-02-08 23:06:04", "93.180.64.230", "52");
INSERT INTO `wp_gf_form_view` VALUES("48246", "3", "2017-02-09 00:41:30", "24.108.60.175", "18");
INSERT INTO `wp_gf_form_view` VALUES("48247", "15", "2017-02-09 00:41:30", "24.108.60.175", "12");
INSERT INTO `wp_gf_form_view` VALUES("48248", "3", "2017-02-09 01:04:11", "157.55.39.105", "194");
INSERT INTO `wp_gf_form_view` VALUES("48249", "15", "2017-02-09 01:04:11", "157.55.39.105", "129");
INSERT INTO `wp_gf_form_view` VALUES("48250", "11", "2017-02-09 01:08:17", "89.123.45.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("48251", "2", "2017-02-09 01:09:35", "89.123.45.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("48252", "3", "2017-02-09 02:05:23", "207.46.13.161", "43");
INSERT INTO `wp_gf_form_view` VALUES("48253", "15", "2017-02-09 02:05:23", "207.46.13.161", "28");
INSERT INTO `wp_gf_form_view` VALUES("48254", "3", "2017-02-09 03:01:58", "5.9.98.130", "2607");
INSERT INTO `wp_gf_form_view` VALUES("48255", "15", "2017-02-09 03:01:58", "5.9.98.130", "1661");
INSERT INTO `wp_gf_form_view` VALUES("48256", "11", "2017-02-09 03:02:14", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48257", "2", "2017-02-09 03:02:18", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48258", "14", "2017-02-09 03:04:24", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48259", "13", "2017-02-09 03:10:11", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48260", "10", "2017-02-09 03:10:16", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("48261", "8", "2017-02-09 03:15:53", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48262", "9", "2017-02-09 03:16:07", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48263", "6", "2017-02-09 03:17:07", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48264", "3", "2017-02-09 04:00:56", "24.69.143.208", "2567");
INSERT INTO `wp_gf_form_view` VALUES("48265", "15", "2017-02-09 04:00:56", "24.69.143.208", "1646");
INSERT INTO `wp_gf_form_view` VALUES("48266", "14", "2017-02-09 04:02:13", "24.69.143.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("48267", "10", "2017-02-09 04:03:10", "163.172.64.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("48268", "3", "2017-02-09 05:00:00", "5.9.98.130", "3986");
INSERT INTO `wp_gf_form_view` VALUES("48269", "15", "2017-02-09 05:00:00", "5.9.98.130", "2551");
INSERT INTO `wp_gf_form_view` VALUES("48270", "11", "2017-02-09 05:49:25", "138.197.64.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("48271", "2", "2017-02-09 05:49:26", "138.197.64.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("48272", "10", "2017-02-09 06:09:15", "157.55.39.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("48273", "3", "2017-02-09 06:09:15", "157.55.39.108", "1484");
INSERT INTO `wp_gf_form_view` VALUES("48274", "15", "2017-02-09 06:09:16", "157.55.39.108", "968");
INSERT INTO `wp_gf_form_view` VALUES("48275", "3", "2017-02-09 07:00:01", "5.9.98.130", "4413");
INSERT INTO `wp_gf_form_view` VALUES("48276", "15", "2017-02-09 07:00:01", "5.9.98.130", "2214");
INSERT INTO `wp_gf_form_view` VALUES("48277", "14", "2017-02-09 07:51:12", "176.193.201.232", "2");
INSERT INTO `wp_gf_form_view` VALUES("48278", "3", "2017-02-09 08:00:00", "5.9.98.130", "3137");
INSERT INTO `wp_gf_form_view` VALUES("48279", "15", "2017-02-09 08:00:00", "5.9.98.130", "2603");
INSERT INTO `wp_gf_form_view` VALUES("48280", "2", "2017-02-09 08:19:30", "174.127.133.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("48281", "3", "2017-02-09 09:00:02", "174.127.133.83", "478");
INSERT INTO `wp_gf_form_view` VALUES("48282", "15", "2017-02-09 09:00:03", "174.127.133.83", "276");
INSERT INTO `wp_gf_form_view` VALUES("48283", "14", "2017-02-09 09:37:19", "195.22.127.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("48284", "3", "2017-02-09 10:14:54", "5.9.98.130", "2886");
INSERT INTO `wp_gf_form_view` VALUES("48285", "15", "2017-02-09 10:14:55", "5.9.98.130", "1920");
INSERT INTO `wp_gf_form_view` VALUES("48286", "14", "2017-02-09 10:37:54", "191.101.117.147", "5");
INSERT INTO `wp_gf_form_view` VALUES("48287", "3", "2017-02-09 11:00:02", "5.9.98.130", "4341");
INSERT INTO `wp_gf_form_view` VALUES("48288", "15", "2017-02-09 11:00:03", "5.9.98.130", "1744");
INSERT INTO `wp_gf_form_view` VALUES("48289", "3", "2017-02-09 12:00:00", "5.9.98.130", "3870");
INSERT INTO `wp_gf_form_view` VALUES("48290", "15", "2017-02-09 12:00:01", "5.9.98.130", "2285");
INSERT INTO `wp_gf_form_view` VALUES("48291", "15", "2017-02-09 13:00:00", "5.9.98.130", "3627");
INSERT INTO `wp_gf_form_view` VALUES("48292", "3", "2017-02-09 13:00:00", "5.9.98.130", "2736");
INSERT INTO `wp_gf_form_view` VALUES("48293", "15", "2017-02-09 14:00:00", "5.9.98.130", "1176");
INSERT INTO `wp_gf_form_view` VALUES("48294", "3", "2017-02-09 14:00:01", "5.9.98.130", "2930");
INSERT INTO `wp_gf_form_view` VALUES("48295", "11", "2017-02-09 14:40:48", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("48296", "2", "2017-02-09 14:40:54", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("48297", "3", "2017-02-09 16:11:43", "5.9.98.130", "912");
INSERT INTO `wp_gf_form_view` VALUES("48298", "15", "2017-02-09 16:11:48", "5.9.98.130", "520");
INSERT INTO `wp_gf_form_view` VALUES("48299", "10", "2017-02-09 16:47:27", "157.55.39.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("48300", "3", "2017-02-09 17:34:22", "163.172.66.105", "1717");
INSERT INTO `wp_gf_form_view` VALUES("48301", "15", "2017-02-09 17:34:41", "163.172.66.105", "1142");
INSERT INTO `wp_gf_form_view` VALUES("48302", "3", "2017-02-09 18:00:00", "5.9.98.130", "2900");
INSERT INTO `wp_gf_form_view` VALUES("48303", "15", "2017-02-09 18:00:00", "5.9.98.130", "1934");
INSERT INTO `wp_gf_form_view` VALUES("48304", "9", "2017-02-09 18:53:54", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48305", "3", "2017-02-09 19:10:14", "24.69.128.33", "285");
INSERT INTO `wp_gf_form_view` VALUES("48306", "15", "2017-02-09 19:10:16", "24.69.128.33", "200");
INSERT INTO `wp_gf_form_view` VALUES("48307", "14", "2017-02-09 19:49:53", "46.229.168.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("48308", "6", "2017-02-09 19:50:04", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("48309", "10", "2017-02-09 19:50:21", "46.229.168.74", "9");
INSERT INTO `wp_gf_form_view` VALUES("48310", "3", "2017-02-09 20:00:40", "163.172.66.141", "37");
INSERT INTO `wp_gf_form_view` VALUES("48311", "15", "2017-02-09 20:00:40", "163.172.66.141", "24");
INSERT INTO `wp_gf_form_view` VALUES("48312", "3", "2017-02-09 21:30:04", "66.249.79.144", "54");
INSERT INTO `wp_gf_form_view` VALUES("48313", "15", "2017-02-09 21:30:04", "66.249.79.144", "36");
INSERT INTO `wp_gf_form_view` VALUES("48314", "3", "2017-02-09 22:09:41", "202.46.58.182", "18");
INSERT INTO `wp_gf_form_view` VALUES("48315", "15", "2017-02-09 22:09:41", "202.46.58.182", "12");
INSERT INTO `wp_gf_form_view` VALUES("48316", "9", "2017-02-09 22:57:22", "157.55.39.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("48317", "3", "2017-02-09 23:28:45", "173.183.120.200", "48");
INSERT INTO `wp_gf_form_view` VALUES("48318", "15", "2017-02-09 23:28:46", "173.183.120.200", "32");
INSERT INTO `wp_gf_form_view` VALUES("48319", "11", "2017-02-09 23:50:09", "202.46.58.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("48320", "3", "2017-02-10 00:05:37", "220.181.108.79", "48");
INSERT INTO `wp_gf_form_view` VALUES("48321", "15", "2017-02-10 00:05:37", "220.181.108.79", "32");
INSERT INTO `wp_gf_form_view` VALUES("48322", "15", "2017-02-10 01:11:17", "66.249.79.144", "33");
INSERT INTO `wp_gf_form_view` VALUES("48323", "3", "2017-02-10 01:11:17", "66.249.79.144", "53");
INSERT INTO `wp_gf_form_view` VALUES("48324", "3", "2017-02-10 02:20:31", "163.172.65.230", "37");
INSERT INTO `wp_gf_form_view` VALUES("48325", "15", "2017-02-10 02:20:31", "163.172.65.230", "24");
INSERT INTO `wp_gf_form_view` VALUES("48326", "3", "2017-02-10 03:06:24", "202.46.56.182", "148");
INSERT INTO `wp_gf_form_view` VALUES("48327", "15", "2017-02-10 03:06:24", "202.46.56.182", "97");
INSERT INTO `wp_gf_form_view` VALUES("48328", "2", "2017-02-10 03:57:23", "138.197.3.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("48329", "11", "2017-02-10 03:57:24", "138.197.3.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("48330", "3", "2017-02-10 04:31:18", "24.244.32.231", "36");
INSERT INTO `wp_gf_form_view` VALUES("48331", "15", "2017-02-10 04:31:19", "24.244.32.231", "24");
INSERT INTO `wp_gf_form_view` VALUES("48332", "14", "2017-02-10 05:33:53", "23.245.152.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("48333", "3", "2017-02-10 05:33:56", "23.245.152.181", "30");
INSERT INTO `wp_gf_form_view` VALUES("48334", "15", "2017-02-10 05:33:56", "23.245.152.181", "20");
INSERT INTO `wp_gf_form_view` VALUES("48335", "3", "2017-02-10 07:15:35", "207.46.13.161", "44");
INSERT INTO `wp_gf_form_view` VALUES("48336", "15", "2017-02-10 07:15:51", "207.46.13.161", "28");
INSERT INTO `wp_gf_form_view` VALUES("48337", "3", "2017-02-10 08:25:12", "202.46.48.134", "25");
INSERT INTO `wp_gf_form_view` VALUES("48338", "15", "2017-02-10 08:25:12", "202.46.48.134", "16");
INSERT INTO `wp_gf_form_view` VALUES("48339", "3", "2017-02-10 10:41:25", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("48340", "15", "2017-02-10 10:41:27", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("48341", "3", "2017-02-10 11:20:05", "202.46.52.165", "19");
INSERT INTO `wp_gf_form_view` VALUES("48342", "15", "2017-02-10 11:20:05", "202.46.52.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("48343", "14", "2017-02-10 11:24:12", "158.222.8.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("48344", "10", "2017-02-10 12:07:23", "163.172.66.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("48345", "3", "2017-02-10 12:07:23", "163.172.66.157", "18");
INSERT INTO `wp_gf_form_view` VALUES("48346", "15", "2017-02-10 12:07:23", "163.172.66.157", "12");
INSERT INTO `wp_gf_form_view` VALUES("48347", "3", "2017-02-10 13:03:32", "24.22.14.133", "37");
INSERT INTO `wp_gf_form_view` VALUES("48348", "15", "2017-02-10 13:03:32", "24.22.14.133", "24");
INSERT INTO `wp_gf_form_view` VALUES("48349", "13", "2017-02-10 13:05:25", "24.22.14.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("48350", "3", "2017-02-10 14:02:16", "163.172.66.158", "32");
INSERT INTO `wp_gf_form_view` VALUES("48351", "15", "2017-02-10 14:02:16", "163.172.66.158", "20");
INSERT INTO `wp_gf_form_view` VALUES("48352", "14", "2017-02-10 14:53:06", "104.160.31.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("48353", "3", "2017-02-10 15:06:12", "109.173.125.248", "43");
INSERT INTO `wp_gf_form_view` VALUES("48354", "15", "2017-02-10 15:06:13", "109.173.125.248", "28");
INSERT INTO `wp_gf_form_view` VALUES("48355", "10", "2017-02-10 16:41:29", "163.172.65.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("48356", "3", "2017-02-10 16:41:33", "163.172.65.51", "24");
INSERT INTO `wp_gf_form_view` VALUES("48357", "15", "2017-02-10 16:41:33", "163.172.65.51", "16");
INSERT INTO `wp_gf_form_view` VALUES("48358", "14", "2017-02-10 16:47:02", "184.69.180.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("48359", "3", "2017-02-10 17:09:05", "202.46.48.19", "19");
INSERT INTO `wp_gf_form_view` VALUES("48360", "15", "2017-02-10 17:09:05", "202.46.48.19", "12");
INSERT INTO `wp_gf_form_view` VALUES("48361", "3", "2017-02-10 18:05:40", "163.172.66.167", "19");
INSERT INTO `wp_gf_form_view` VALUES("48362", "15", "2017-02-10 18:05:41", "163.172.66.167", "12");
INSERT INTO `wp_gf_form_view` VALUES("48363", "3", "2017-02-10 19:21:14", "163.172.64.192", "13");
INSERT INTO `wp_gf_form_view` VALUES("48364", "15", "2017-02-10 19:21:18", "163.172.64.192", "8");
INSERT INTO `wp_gf_form_view` VALUES("48365", "3", "2017-02-10 20:07:37", "107.173.204.176", "131");
INSERT INTO `wp_gf_form_view` VALUES("48366", "15", "2017-02-10 20:07:39", "107.173.204.176", "84");
INSERT INTO `wp_gf_form_view` VALUES("48367", "10", "2017-02-10 20:13:00", "163.172.66.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("48368", "14", "2017-02-10 20:31:20", "198.71.87.205", "5");
INSERT INTO `wp_gf_form_view` VALUES("48369", "3", "2017-02-10 21:11:03", "54.237.200.36", "78");
INSERT INTO `wp_gf_form_view` VALUES("48370", "15", "2017-02-10 21:11:03", "54.237.200.36", "52");
INSERT INTO `wp_gf_form_view` VALUES("48371", "3", "2017-02-10 22:04:02", "24.108.188.201", "78");
INSERT INTO `wp_gf_form_view` VALUES("48372", "15", "2017-02-10 22:04:02", "24.108.188.201", "52");
INSERT INTO `wp_gf_form_view` VALUES("48373", "14", "2017-02-10 22:33:48", "184.69.106.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("48374", "10", "2017-02-10 22:37:09", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("48375", "3", "2017-02-10 23:01:12", "202.46.53.13", "36");
INSERT INTO `wp_gf_form_view` VALUES("48376", "15", "2017-02-10 23:01:12", "202.46.53.13", "24");
INSERT INTO `wp_gf_form_view` VALUES("48377", "14", "2017-02-10 23:16:35", "184.66.245.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("48378", "3", "2017-02-11 00:08:11", "202.46.56.69", "7");
INSERT INTO `wp_gf_form_view` VALUES("48379", "15", "2017-02-11 00:08:11", "202.46.56.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("48380", "3", "2017-02-11 01:20:07", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("48381", "15", "2017-02-11 01:20:10", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("48382", "3", "2017-02-11 02:24:33", "157.55.39.105", "147");
INSERT INTO `wp_gf_form_view` VALUES("48383", "15", "2017-02-11 02:24:34", "157.55.39.105", "97");
INSERT INTO `wp_gf_form_view` VALUES("48384", "2", "2017-02-11 02:56:27", "138.197.7.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("48385", "11", "2017-02-11 02:56:27", "138.197.7.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("48386", "3", "2017-02-11 03:59:03", "207.46.13.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("48387", "15", "2017-02-11 03:59:04", "207.46.13.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("48388", "3", "2017-02-11 04:02:35", "202.46.49.190", "7");
INSERT INTO `wp_gf_form_view` VALUES("48389", "15", "2017-02-11 04:02:35", "202.46.49.190", "4");
INSERT INTO `wp_gf_form_view` VALUES("48390", "7", "2017-02-11 05:04:54", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("48391", "3", "2017-02-11 05:04:56", "157.55.39.105", "12");
INSERT INTO `wp_gf_form_view` VALUES("48392", "15", "2017-02-11 05:04:56", "157.55.39.105", "8");
INSERT INTO `wp_gf_form_view` VALUES("48393", "3", "2017-02-11 07:05:20", "202.46.58.187", "19");
INSERT INTO `wp_gf_form_view` VALUES("48394", "15", "2017-02-11 07:05:26", "202.46.58.187", "12");
INSERT INTO `wp_gf_form_view` VALUES("48395", "3", "2017-02-11 08:02:32", "68.180.229.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("48396", "15", "2017-02-11 08:02:33", "68.180.229.247", "16");
INSERT INTO `wp_gf_form_view` VALUES("48397", "3", "2017-02-11 09:01:57", "164.132.161.30", "443");
INSERT INTO `wp_gf_form_view` VALUES("48398", "15", "2017-02-11 09:01:57", "164.132.161.30", "295");
INSERT INTO `wp_gf_form_view` VALUES("48399", "11", "2017-02-11 09:30:27", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("48400", "2", "2017-02-11 09:30:32", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("48401", "14", "2017-02-11 09:32:40", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("48402", "3", "2017-02-11 10:49:20", "163.172.65.126", "6");
INSERT INTO `wp_gf_form_view` VALUES("48403", "15", "2017-02-11 10:49:21", "163.172.65.126", "4");
INSERT INTO `wp_gf_form_view` VALUES("48404", "3", "2017-02-11 11:04:39", "220.181.108.108", "50");
INSERT INTO `wp_gf_form_view` VALUES("48405", "15", "2017-02-11 11:04:39", "220.181.108.108", "32");
INSERT INTO `wp_gf_form_view` VALUES("48406", "3", "2017-02-11 12:04:20", "108.180.241.100", "36");
INSERT INTO `wp_gf_form_view` VALUES("48407", "15", "2017-02-11 12:04:20", "108.180.241.100", "32");
INSERT INTO `wp_gf_form_view` VALUES("48408", "14", "2017-02-11 12:25:02", "164.132.42.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("48409", "3", "2017-02-11 13:01:36", "93.180.64.230", "288");
INSERT INTO `wp_gf_form_view` VALUES("48410", "15", "2017-02-11 13:01:36", "93.180.64.230", "197");
INSERT INTO `wp_gf_form_view` VALUES("48411", "2", "2017-02-11 13:12:02", "97.77.104.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("48412", "11", "2017-02-11 13:12:06", "157.55.39.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("48413", "3", "2017-02-11 14:19:48", "202.46.48.99", "18");
INSERT INTO `wp_gf_form_view` VALUES("48414", "15", "2017-02-11 14:19:49", "202.46.48.99", "12");
INSERT INTO `wp_gf_form_view` VALUES("48415", "3", "2017-02-11 15:04:52", "104.196.224.90", "31");
INSERT INTO `wp_gf_form_view` VALUES("48416", "15", "2017-02-11 15:04:52", "104.196.224.90", "20");
INSERT INTO `wp_gf_form_view` VALUES("48417", "3", "2017-02-11 16:02:42", "138.197.27.183", "2506");
INSERT INTO `wp_gf_form_view` VALUES("48418", "15", "2017-02-11 16:02:42", "138.197.27.183", "1680");
INSERT INTO `wp_gf_form_view` VALUES("48419", "14", "2017-02-11 16:08:19", "138.197.27.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48420", "11", "2017-02-11 16:08:28", "138.197.27.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48421", "6", "2017-02-11 16:29:03", "138.197.27.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48422", "9", "2017-02-11 16:36:14", "138.197.27.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48423", "10", "2017-02-11 16:49:59", "138.197.27.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48424", "3", "2017-02-11 17:00:04", "138.197.27.183", "1062");
INSERT INTO `wp_gf_form_view` VALUES("48425", "15", "2017-02-11 17:00:04", "138.197.27.183", "714");
INSERT INTO `wp_gf_form_view` VALUES("48426", "10", "2017-02-11 17:02:08", "138.197.27.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48427", "2", "2017-02-11 17:16:59", "138.197.27.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48428", "3", "2017-02-11 18:23:50", "207.46.13.48", "496");
INSERT INTO `wp_gf_form_view` VALUES("48429", "15", "2017-02-11 18:23:51", "207.46.13.48", "328");
INSERT INTO `wp_gf_form_view` VALUES("48430", "10", "2017-02-11 18:24:00", "207.46.13.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("48431", "6", "2017-02-11 18:24:31", "207.46.13.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("48432", "5", "2017-02-11 18:24:40", "207.46.13.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("48433", "9", "2017-02-11 18:24:42", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("48434", "11", "2017-02-11 18:25:07", "157.55.39.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("48435", "3", "2017-02-11 19:13:01", "157.55.39.108", "18");
INSERT INTO `wp_gf_form_view` VALUES("48436", "15", "2017-02-11 19:13:01", "157.55.39.108", "12");
INSERT INTO `wp_gf_form_view` VALUES("48437", "3", "2017-02-11 20:18:50", "157.55.39.105", "54");
INSERT INTO `wp_gf_form_view` VALUES("48438", "15", "2017-02-11 20:18:50", "157.55.39.105", "36");
INSERT INTO `wp_gf_form_view` VALUES("48439", "5", "2017-02-11 20:33:27", "77.75.78.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("48440", "3", "2017-02-11 21:05:37", "202.46.52.70", "37");
INSERT INTO `wp_gf_form_view` VALUES("48441", "15", "2017-02-11 21:05:38", "202.46.52.70", "24");
INSERT INTO `wp_gf_form_view` VALUES("48442", "14", "2017-02-11 22:00:19", "167.114.10.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("48443", "3", "2017-02-11 22:00:20", "167.114.10.8", "216");
INSERT INTO `wp_gf_form_view` VALUES("48444", "15", "2017-02-11 22:00:20", "167.114.10.8", "136");
INSERT INTO `wp_gf_form_view` VALUES("48445", "11", "2017-02-11 22:25:37", "81.202.183.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("48446", "2", "2017-02-11 22:27:27", "81.202.183.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("48447", "3", "2017-02-11 23:01:07", "108.180.145.61", "1023");
INSERT INTO `wp_gf_form_view` VALUES("48448", "15", "2017-02-11 23:01:07", "108.180.145.61", "669");
INSERT INTO `wp_gf_form_view` VALUES("48449", "11", "2017-02-11 23:14:15", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("48450", "2", "2017-02-11 23:14:32", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("48451", "14", "2017-02-11 23:26:39", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("48452", "10", "2017-02-11 23:35:50", "94.199.151.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("48453", "3", "2017-02-12 00:07:59", "163.172.66.33", "13");
INSERT INTO `wp_gf_form_view` VALUES("48454", "15", "2017-02-12 00:08:01", "163.172.66.33", "8");
INSERT INTO `wp_gf_form_view` VALUES("48455", "9", "2017-02-12 00:35:03", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48456", "3", "2017-02-12 02:29:34", "164.132.161.55", "18");
INSERT INTO `wp_gf_form_view` VALUES("48457", "15", "2017-02-12 02:29:36", "164.132.161.55", "12");
INSERT INTO `wp_gf_form_view` VALUES("48458", "3", "2017-02-12 03:58:31", "202.46.54.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("48459", "15", "2017-02-12 03:58:32", "202.46.54.106", "10");
INSERT INTO `wp_gf_form_view` VALUES("48460", "3", "2017-02-12 04:16:41", "66.249.79.148", "22");
INSERT INTO `wp_gf_form_view` VALUES("48461", "15", "2017-02-12 04:16:41", "66.249.79.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("48462", "3", "2017-02-12 05:29:03", "66.249.79.140", "73");
INSERT INTO `wp_gf_form_view` VALUES("48463", "15", "2017-02-12 05:29:04", "66.249.79.140", "48");
INSERT INTO `wp_gf_form_view` VALUES("48464", "3", "2017-02-12 06:12:44", "77.75.79.101", "204");
INSERT INTO `wp_gf_form_view` VALUES("48465", "15", "2017-02-12 06:12:44", "77.75.79.101", "132");
INSERT INTO `wp_gf_form_view` VALUES("48466", "10", "2017-02-12 06:20:53", "163.172.66.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("48467", "11", "2017-02-12 06:28:23", "70.35.194.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("48468", "2", "2017-02-12 06:29:16", "70.35.194.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("48469", "3", "2017-02-12 07:29:46", "52.87.163.17", "30");
INSERT INTO `wp_gf_form_view` VALUES("48470", "15", "2017-02-12 07:29:51", "52.87.163.17", "20");
INSERT INTO `wp_gf_form_view` VALUES("48471", "14", "2017-02-12 07:46:08", "93.127.146.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("48472", "3", "2017-02-12 08:17:10", "66.249.79.144", "38");
INSERT INTO `wp_gf_form_view` VALUES("48473", "15", "2017-02-12 08:17:10", "66.249.79.144", "24");
INSERT INTO `wp_gf_form_view` VALUES("48474", "14", "2017-02-12 09:11:26", "104.140.4.65", "2");
INSERT INTO `wp_gf_form_view` VALUES("48475", "3", "2017-02-12 09:11:26", "104.140.4.65", "55");
INSERT INTO `wp_gf_form_view` VALUES("48476", "15", "2017-02-12 09:11:26", "104.140.4.65", "36");
INSERT INTO `wp_gf_form_view` VALUES("48477", "3", "2017-02-12 10:33:18", "104.199.45.62", "24");
INSERT INTO `wp_gf_form_view` VALUES("48478", "15", "2017-02-12 10:33:19", "104.199.45.62", "16");
INSERT INTO `wp_gf_form_view` VALUES("48479", "10", "2017-02-12 10:58:15", "199.16.157.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("48480", "3", "2017-02-12 11:20:36", "202.46.58.51", "6");
INSERT INTO `wp_gf_form_view` VALUES("48481", "15", "2017-02-12 11:20:36", "202.46.58.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("48482", "3", "2017-02-12 12:30:32", "66.249.79.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("48483", "15", "2017-02-12 12:30:33", "66.249.79.140", "24");
INSERT INTO `wp_gf_form_view` VALUES("48484", "15", "2017-02-12 13:01:09", "202.46.53.147", "24");
INSERT INTO `wp_gf_form_view` VALUES("48485", "3", "2017-02-12 13:01:09", "202.46.53.147", "26");
INSERT INTO `wp_gf_form_view` VALUES("48486", "14", "2017-02-12 13:51:40", "167.114.10.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("48487", "3", "2017-02-12 14:46:53", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("48488", "15", "2017-02-12 14:46:53", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("48489", "3", "2017-02-12 15:16:54", "68.180.229.247", "140");
INSERT INTO `wp_gf_form_view` VALUES("48490", "15", "2017-02-12 15:16:54", "68.180.229.247", "93");
INSERT INTO `wp_gf_form_view` VALUES("48491", "11", "2017-02-12 15:40:53", "138.197.67.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("48492", "2", "2017-02-12 15:40:54", "138.197.67.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("48493", "3", "2017-02-12 16:23:35", "40.77.167.47", "6");
INSERT INTO `wp_gf_form_view` VALUES("48494", "15", "2017-02-12 16:23:35", "40.77.167.47", "4");
INSERT INTO `wp_gf_form_view` VALUES("48495", "3", "2017-02-12 17:19:34", "199.21.99.202", "19");
INSERT INTO `wp_gf_form_view` VALUES("48496", "15", "2017-02-12 17:19:37", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("48497", "10", "2017-02-12 17:28:29", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48498", "3", "2017-02-12 18:15:26", "96.54.240.249", "55");
INSERT INTO `wp_gf_form_view` VALUES("48499", "15", "2017-02-12 18:15:26", "96.54.240.249", "36");
INSERT INTO `wp_gf_form_view` VALUES("48500", "3", "2017-02-12 19:11:09", "66.249.79.140", "18");
INSERT INTO `wp_gf_form_view` VALUES("48501", "15", "2017-02-12 19:11:09", "66.249.79.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("48502", "3", "2017-02-12 20:11:53", "163.172.66.96", "54");
INSERT INTO `wp_gf_form_view` VALUES("48503", "15", "2017-02-12 20:11:53", "163.172.66.96", "36");
INSERT INTO `wp_gf_form_view` VALUES("48504", "3", "2017-02-12 21:07:59", "66.249.79.148", "18");
INSERT INTO `wp_gf_form_view` VALUES("48505", "15", "2017-02-12 21:08:00", "66.249.79.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("48506", "3", "2017-02-12 22:34:05", "202.46.49.112", "25");
INSERT INTO `wp_gf_form_view` VALUES("48507", "15", "2017-02-12 22:34:06", "202.46.49.112", "16");
INSERT INTO `wp_gf_form_view` VALUES("48508", "3", "2017-02-12 23:33:48", "24.69.184.146", "38");
INSERT INTO `wp_gf_form_view` VALUES("48509", "15", "2017-02-12 23:33:48", "24.69.184.146", "24");
INSERT INTO `wp_gf_form_view` VALUES("48510", "3", "2017-02-13 00:03:11", "66.249.79.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("48511", "15", "2017-02-13 00:03:11", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("48512", "3", "2017-02-13 01:26:59", "163.172.66.147", "12");
INSERT INTO `wp_gf_form_view` VALUES("48513", "15", "2017-02-13 01:27:00", "163.172.66.147", "8");
INSERT INTO `wp_gf_form_view` VALUES("48514", "10", "2017-02-13 01:37:22", "202.46.48.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("48515", "3", "2017-02-13 02:44:24", "202.46.52.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("48516", "15", "2017-02-13 02:44:25", "202.46.52.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("48517", "3", "2017-02-13 03:03:20", "68.180.229.247", "25");
INSERT INTO `wp_gf_form_view` VALUES("48518", "15", "2017-02-13 03:03:20", "68.180.229.247", "16");
INSERT INTO `wp_gf_form_view` VALUES("48519", "3", "2017-02-13 04:40:00", "68.180.229.247", "16");
INSERT INTO `wp_gf_form_view` VALUES("48520", "15", "2017-02-13 04:40:02", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("48521", "10", "2017-02-13 05:16:18", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48522", "3", "2017-02-13 05:16:20", "68.180.229.247", "37");
INSERT INTO `wp_gf_form_view` VALUES("48523", "15", "2017-02-13 05:16:21", "68.180.229.247", "24");
INSERT INTO `wp_gf_form_view` VALUES("48524", "14", "2017-02-13 06:06:52", "62.210.111.117", "5");
INSERT INTO `wp_gf_form_view` VALUES("48525", "3", "2017-02-13 06:06:53", "62.210.111.117", "82");
INSERT INTO `wp_gf_form_view` VALUES("48526", "15", "2017-02-13 06:06:53", "62.210.111.117", "60");
INSERT INTO `wp_gf_form_view` VALUES("48527", "3", "2017-02-13 07:17:03", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("48528", "15", "2017-02-13 07:17:08", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("48529", "3", "2017-02-13 08:01:12", "66.249.79.140", "24");
INSERT INTO `wp_gf_form_view` VALUES("48530", "15", "2017-02-13 08:01:12", "66.249.79.140", "16");
INSERT INTO `wp_gf_form_view` VALUES("48531", "5", "2017-02-13 08:52:39", "77.75.79.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("48532", "3", "2017-02-13 09:27:59", "199.21.99.202", "37");
INSERT INTO `wp_gf_form_view` VALUES("48533", "3", "2017-02-13 09:27:59", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("48534", "15", "2017-02-13 09:28:02", "77.75.77.101", "31");
INSERT INTO `wp_gf_form_view` VALUES("48535", "15", "2017-02-13 09:28:02", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("48536", "2", "2017-02-13 10:04:34", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("48537", "3", "2017-02-13 10:04:34", "66.249.79.144", "30");
INSERT INTO `wp_gf_form_view` VALUES("48538", "15", "2017-02-13 10:04:34", "66.249.79.144", "20");
INSERT INTO `wp_gf_form_view` VALUES("48539", "13", "2017-02-13 10:30:45", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("48540", "3", "2017-02-13 11:03:26", "66.249.66.39", "18");
INSERT INTO `wp_gf_form_view` VALUES("48541", "15", "2017-02-13 11:03:29", "66.249.66.39", "12");
INSERT INTO `wp_gf_form_view` VALUES("48542", "3", "2017-02-13 12:17:59", "164.132.161.61", "19");
INSERT INTO `wp_gf_form_view` VALUES("48543", "15", "2017-02-13 12:18:02", "164.132.161.61", "12");
INSERT INTO `wp_gf_form_view` VALUES("48544", "3", "2017-02-13 13:16:26", "68.180.229.247", "27");
INSERT INTO `wp_gf_form_view` VALUES("48545", "15", "2017-02-13 13:16:27", "68.180.229.247", "16");
INSERT INTO `wp_gf_form_view` VALUES("48546", "12", "2017-02-13 13:29:47", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("48547", "3", "2017-02-13 14:25:45", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("48548", "15", "2017-02-13 14:25:45", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("48549", "3", "2017-02-13 15:06:06", "104.249.192.116", "66");
INSERT INTO `wp_gf_form_view` VALUES("48550", "15", "2017-02-13 15:06:07", "104.249.192.116", "32");
INSERT INTO `wp_gf_form_view` VALUES("48551", "10", "2017-02-13 15:07:03", "104.249.192.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("48552", "11", "2017-02-13 16:24:13", "77.75.79.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("48553", "3", "2017-02-13 16:24:15", "77.75.79.62", "12");
INSERT INTO `wp_gf_form_view` VALUES("48554", "15", "2017-02-13 16:24:15", "77.75.79.62", "8");
INSERT INTO `wp_gf_form_view` VALUES("48555", "3", "2017-02-13 17:11:56", "24.108.22.208", "33");
INSERT INTO `wp_gf_form_view` VALUES("48556", "15", "2017-02-13 17:11:57", "24.108.22.208", "21");
INSERT INTO `wp_gf_form_view` VALUES("48557", "3", "2017-02-13 18:09:55", "52.240.150.234", "230");
INSERT INTO `wp_gf_form_view` VALUES("48558", "3", "2017-02-13 18:09:55", "52.240.150.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("48559", "3", "2017-02-13 18:09:55", "52.240.150.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("48560", "15", "2017-02-13 18:09:55", "52.240.150.234", "153");
INSERT INTO `wp_gf_form_view` VALUES("48561", "11", "2017-02-13 18:09:57", "52.240.150.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("48562", "2", "2017-02-13 18:09:58", "52.240.150.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("48563", "3", "2017-02-13 19:54:08", "199.58.86.209", "26");
INSERT INTO `wp_gf_form_view` VALUES("48564", "15", "2017-02-13 19:54:09", "199.58.86.209", "16");
INSERT INTO `wp_gf_form_view` VALUES("48565", "3", "2017-02-13 20:05:59", "77.75.76.160", "18");
INSERT INTO `wp_gf_form_view` VALUES("48566", "15", "2017-02-13 20:05:59", "77.75.76.160", "12");
INSERT INTO `wp_gf_form_view` VALUES("48567", "3", "2017-02-13 21:01:44", "202.46.52.104", "56");
INSERT INTO `wp_gf_form_view` VALUES("48568", "15", "2017-02-13 21:01:44", "202.46.52.104", "36");
INSERT INTO `wp_gf_form_view` VALUES("48569", "10", "2017-02-13 21:06:33", "199.216.105.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("48570", "3", "2017-02-13 22:07:59", "157.55.39.105", "19");
INSERT INTO `wp_gf_form_view` VALUES("48571", "15", "2017-02-13 22:08:00", "157.55.39.105", "12");
INSERT INTO `wp_gf_form_view` VALUES("48572", "2", "2017-02-13 22:18:58", "202.46.56.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("48573", "3", "2017-02-13 23:25:59", "202.46.58.53", "19");
INSERT INTO `wp_gf_form_view` VALUES("48574", "15", "2017-02-13 23:26:00", "202.46.58.53", "12");
INSERT INTO `wp_gf_form_view` VALUES("48575", "3", "2017-02-14 00:18:06", "164.132.161.49", "19");
INSERT INTO `wp_gf_form_view` VALUES("48576", "15", "2017-02-14 00:18:07", "164.132.161.49", "12");
INSERT INTO `wp_gf_form_view` VALUES("48577", "3", "2017-02-14 01:09:47", "209.52.88.36", "30");
INSERT INTO `wp_gf_form_view` VALUES("48578", "15", "2017-02-14 01:09:47", "209.52.88.36", "20");
INSERT INTO `wp_gf_form_view` VALUES("48579", "3", "2017-02-14 02:01:34", "68.180.229.247", "19");
INSERT INTO `wp_gf_form_view` VALUES("48580", "15", "2017-02-14 02:01:35", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("48581", "8", "2017-02-14 02:58:29", "163.172.66.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("48582", "3", "2017-02-14 03:12:18", "202.46.50.182", "72");
INSERT INTO `wp_gf_form_view` VALUES("48583", "15", "2017-02-14 03:12:19", "202.46.50.182", "48");
INSERT INTO `wp_gf_form_view` VALUES("48584", "2", "2017-02-14 03:31:35", "93.180.64.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("48585", "12", "2017-02-14 03:44:20", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48586", "3", "2017-02-14 04:38:35", "70.66.188.50", "92");
INSERT INTO `wp_gf_form_view` VALUES("48587", "15", "2017-02-14 04:38:35", "70.66.188.50", "62");
INSERT INTO `wp_gf_form_view` VALUES("48588", "3", "2017-02-14 05:01:02", "70.66.188.50", "192");
INSERT INTO `wp_gf_form_view` VALUES("48589", "15", "2017-02-14 05:01:02", "70.66.188.50", "128");
INSERT INTO `wp_gf_form_view` VALUES("48590", "14", "2017-02-14 05:25:44", "70.66.188.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("48591", "11", "2017-02-14 05:32:51", "157.55.39.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("48592", "14", "2017-02-14 06:20:15", "202.46.48.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("48593", "3", "2017-02-14 06:20:16", "202.46.48.85", "54");
INSERT INTO `wp_gf_form_view` VALUES("48594", "15", "2017-02-14 06:20:16", "202.46.48.85", "36");
INSERT INTO `wp_gf_form_view` VALUES("48595", "3", "2017-02-14 07:51:59", "157.55.39.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("48596", "15", "2017-02-14 07:52:00", "157.55.39.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("48597", "3", "2017-02-14 08:18:51", "77.75.78.168", "44");
INSERT INTO `wp_gf_form_view` VALUES("48598", "15", "2017-02-14 08:18:51", "77.75.78.168", "28");
INSERT INTO `wp_gf_form_view` VALUES("48599", "2", "2017-02-14 08:21:16", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48600", "3", "2017-02-14 09:35:21", "77.75.79.95", "18");
INSERT INTO `wp_gf_form_view` VALUES("48601", "15", "2017-02-14 09:35:21", "77.75.79.95", "12");
INSERT INTO `wp_gf_form_view` VALUES("48602", "3", "2017-02-14 10:13:33", "207.46.13.48", "18");
INSERT INTO `wp_gf_form_view` VALUES("48603", "15", "2017-02-14 10:13:33", "207.46.13.48", "12");
INSERT INTO `wp_gf_form_view` VALUES("48604", "14", "2017-02-14 10:31:34", "195.22.127.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("48605", "3", "2017-02-14 11:00:25", "66.249.66.33", "19");
INSERT INTO `wp_gf_form_view` VALUES("48606", "15", "2017-02-14 11:00:26", "66.249.66.33", "12");
INSERT INTO `wp_gf_form_view` VALUES("48607", "3", "2017-02-14 12:03:33", "77.75.79.32", "21");
INSERT INTO `wp_gf_form_view` VALUES("48608", "15", "2017-02-14 12:03:33", "77.75.79.32", "12");
INSERT INTO `wp_gf_form_view` VALUES("48609", "3", "2017-02-14 13:12:44", "77.75.79.11", "24");
INSERT INTO `wp_gf_form_view` VALUES("48610", "15", "2017-02-14 13:12:47", "77.75.79.11", "16");
INSERT INTO `wp_gf_form_view` VALUES("48611", "11", "2017-02-14 13:51:16", "66.249.66.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("48612", "3", "2017-02-14 14:08:05", "51.255.65.15", "18");
INSERT INTO `wp_gf_form_view` VALUES("48613", "15", "2017-02-14 14:08:09", "51.255.65.15", "12");
INSERT INTO `wp_gf_form_view` VALUES("48614", "3", "2017-02-14 15:37:44", "202.46.52.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("48615", "15", "2017-02-14 15:37:45", "202.46.52.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("48616", "12", "2017-02-14 15:41:23", "51.255.65.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("48617", "3", "2017-02-14 16:00:16", "163.172.65.127", "19");
INSERT INTO `wp_gf_form_view` VALUES("48618", "15", "2017-02-14 16:00:16", "163.172.65.127", "12");
INSERT INTO `wp_gf_form_view` VALUES("48619", "15", "2017-02-14 17:28:09", "157.55.39.68", "21");
INSERT INTO `wp_gf_form_view` VALUES("48620", "3", "2017-02-14 17:28:15", "157.55.39.68", "32");
INSERT INTO `wp_gf_form_view` VALUES("48621", "3", "2017-02-14 18:01:50", "24.68.248.211", "76");
INSERT INTO `wp_gf_form_view` VALUES("48622", "15", "2017-02-14 18:01:50", "24.68.248.211", "48");
INSERT INTO `wp_gf_form_view` VALUES("48623", "2", "2017-02-14 18:31:43", "54.87.17.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("48624", "3", "2017-02-14 19:17:05", "184.69.4.226", "62");
INSERT INTO `wp_gf_form_view` VALUES("48625", "15", "2017-02-14 19:17:17", "184.69.4.226", "39");
INSERT INTO `wp_gf_form_view` VALUES("48626", "15", "2017-02-14 19:17:17", "184.69.4.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("48627", "14", "2017-02-14 20:29:12", "202.46.53.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("48628", "3", "2017-02-14 20:29:52", "202.46.53.66", "22");
INSERT INTO `wp_gf_form_view` VALUES("48629", "15", "2017-02-14 20:29:52", "202.46.53.66", "12");
INSERT INTO `wp_gf_form_view` VALUES("48630", "3", "2017-02-14 21:02:03", "202.46.54.167", "66");
INSERT INTO `wp_gf_form_view` VALUES("48631", "15", "2017-02-14 21:02:06", "202.46.54.167", "44");
INSERT INTO `wp_gf_form_view` VALUES("48632", "3", "2017-02-14 22:03:18", "163.172.65.206", "18");
INSERT INTO `wp_gf_form_view` VALUES("48633", "15", "2017-02-14 22:03:18", "163.172.65.206", "12");
INSERT INTO `wp_gf_form_view` VALUES("48634", "3", "2017-02-14 23:12:55", "216.232.145.242", "200");
INSERT INTO `wp_gf_form_view` VALUES("48635", "15", "2017-02-14 23:12:55", "216.232.145.242", "133");
INSERT INTO `wp_gf_form_view` VALUES("48636", "11", "2017-02-14 23:22:45", "138.197.111.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48637", "2", "2017-02-14 23:22:46", "138.197.111.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48638", "3", "2017-02-15 00:04:34", "162.156.7.227", "12");
INSERT INTO `wp_gf_form_view` VALUES("48639", "15", "2017-02-15 00:04:34", "162.156.7.227", "8");
INSERT INTO `wp_gf_form_view` VALUES("48640", "3", "2017-02-15 01:40:40", "163.172.65.120", "24");
INSERT INTO `wp_gf_form_view` VALUES("48641", "15", "2017-02-15 01:40:40", "163.172.65.120", "16");
INSERT INTO `wp_gf_form_view` VALUES("48642", "3", "2017-02-15 02:00:38", "217.33.216.114", "49");
INSERT INTO `wp_gf_form_view` VALUES("48643", "15", "2017-02-15 02:00:38", "217.33.216.114", "32");
INSERT INTO `wp_gf_form_view` VALUES("48644", "2", "2017-02-15 02:36:55", "163.172.66.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("48645", "14", "2017-02-15 02:44:18", "184.66.246.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("48646", "3", "2017-02-15 03:00:40", "24.108.197.69", "31");
INSERT INTO `wp_gf_form_view` VALUES("48647", "15", "2017-02-15 03:00:40", "24.108.197.69", "20");
INSERT INTO `wp_gf_form_view` VALUES("48648", "3", "2017-02-15 04:00:55", "51.255.65.36", "38");
INSERT INTO `wp_gf_form_view` VALUES("48649", "15", "2017-02-15 04:00:55", "51.255.65.36", "24");
INSERT INTO `wp_gf_form_view` VALUES("48650", "10", "2017-02-15 04:30:55", "5.188.211.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("48651", "15", "2017-02-15 05:13:53", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("48652", "3", "2017-02-15 05:13:58", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("48653", "14", "2017-02-15 06:02:47", "89.47.22.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("48654", "3", "2017-02-15 06:02:50", "89.47.22.246", "124");
INSERT INTO `wp_gf_form_view` VALUES("48655", "15", "2017-02-15 06:02:50", "89.47.22.246", "80");
INSERT INTO `wp_gf_form_view` VALUES("48656", "11", "2017-02-15 06:04:11", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("48657", "2", "2017-02-15 06:17:40", "5.188.211.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("48658", "10", "2017-02-15 06:19:52", "164.132.161.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("48659", "3", "2017-02-15 07:12:50", "70.66.168.98", "36");
INSERT INTO `wp_gf_form_view` VALUES("48660", "15", "2017-02-15 07:12:52", "70.66.168.98", "24");
INSERT INTO `wp_gf_form_view` VALUES("48661", "3", "2017-02-15 08:30:16", "202.46.53.65", "18");
INSERT INTO `wp_gf_form_view` VALUES("48662", "15", "2017-02-15 08:30:17", "202.46.53.65", "12");
INSERT INTO `wp_gf_form_view` VALUES("48663", "3", "2017-02-15 09:03:34", "202.46.51.101", "32");
INSERT INTO `wp_gf_form_view` VALUES("48664", "15", "2017-02-15 09:03:34", "202.46.51.101", "20");
INSERT INTO `wp_gf_form_view` VALUES("48665", "3", "2017-02-15 10:14:02", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("48666", "15", "2017-02-15 10:14:04", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("48667", "3", "2017-02-15 11:50:17", "202.46.58.72", "12");
INSERT INTO `wp_gf_form_view` VALUES("48668", "15", "2017-02-15 11:50:18", "202.46.58.72", "8");
INSERT INTO `wp_gf_form_view` VALUES("48669", "3", "2017-02-15 12:23:40", "202.46.55.172", "90");
INSERT INTO `wp_gf_form_view` VALUES("48670", "15", "2017-02-15 12:23:40", "202.46.55.172", "60");
INSERT INTO `wp_gf_form_view` VALUES("48671", "11", "2017-02-15 12:46:45", "116.24.171.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("48672", "2", "2017-02-15 12:46:46", "116.24.171.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("48673", "14", "2017-02-15 13:38:03", "195.22.127.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("48674", "3", "2017-02-15 13:38:03", "195.22.127.251", "12");
INSERT INTO `wp_gf_form_view` VALUES("48675", "15", "2017-02-15 13:38:03", "195.22.127.251", "8");
INSERT INTO `wp_gf_form_view` VALUES("48676", "3", "2017-02-15 14:03:35", "202.46.57.178", "115");
INSERT INTO `wp_gf_form_view` VALUES("48677", "15", "2017-02-15 14:03:36", "202.46.57.178", "77");
INSERT INTO `wp_gf_form_view` VALUES("48678", "2", "2017-02-15 14:16:44", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("48679", "11", "2017-02-15 14:17:17", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("48680", "3", "2017-02-15 15:01:11", "157.55.39.118", "31");
INSERT INTO `wp_gf_form_view` VALUES("48681", "15", "2017-02-15 15:01:11", "157.55.39.118", "20");
INSERT INTO `wp_gf_form_view` VALUES("48682", "9", "2017-02-15 15:43:36", "202.46.50.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("48683", "15", "2017-02-15 16:30:03", "24.108.168.20", "34");
INSERT INTO `wp_gf_form_view` VALUES("48684", "3", "2017-02-15 16:30:07", "24.108.168.20", "48");
INSERT INTO `wp_gf_form_view` VALUES("48685", "15", "2017-02-15 17:27:13", "68.180.229.247", "30");
INSERT INTO `wp_gf_form_view` VALUES("48686", "3", "2017-02-15 17:27:31", "68.180.229.247", "42");
INSERT INTO `wp_gf_form_view` VALUES("48687", "14", "2017-02-15 17:44:37", "157.55.39.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("48688", "10", "2017-02-15 17:44:50", "157.55.39.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("48689", "3", "2017-02-15 18:19:34", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("48690", "15", "2017-02-15 18:19:34", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("48691", "3", "2017-02-15 19:15:21", "207.194.133.9", "24");
INSERT INTO `wp_gf_form_view` VALUES("48692", "15", "2017-02-15 19:15:25", "207.194.133.9", "16");
INSERT INTO `wp_gf_form_view` VALUES("48693", "3", "2017-02-15 20:13:36", "68.180.228.61", "30");
INSERT INTO `wp_gf_form_view` VALUES("48694", "15", "2017-02-15 20:13:50", "68.180.228.61", "20");
INSERT INTO `wp_gf_form_view` VALUES("48695", "3", "2017-02-15 21:23:20", "66.38.235.7", "43");
INSERT INTO `wp_gf_form_view` VALUES("48696", "15", "2017-02-15 21:23:24", "66.38.235.7", "28");
INSERT INTO `wp_gf_form_view` VALUES("48697", "3", "2017-02-15 22:12:49", "202.46.58.132", "43");
INSERT INTO `wp_gf_form_view` VALUES("48698", "15", "2017-02-15 22:12:50", "202.46.58.132", "28");
INSERT INTO `wp_gf_form_view` VALUES("48699", "3", "2017-02-15 23:17:15", "75.155.181.154", "1107");
INSERT INTO `wp_gf_form_view` VALUES("48700", "15", "2017-02-15 23:17:17", "75.155.181.154", "750");
INSERT INTO `wp_gf_form_view` VALUES("48701", "15", "2017-02-15 23:17:17", "75.155.181.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("48702", "2", "2017-02-15 23:20:08", "72.79.57.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("48703", "7", "2017-02-15 23:21:04", "72.79.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48704", "14", "2017-02-15 23:21:34", "72.79.57.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("48705", "11", "2017-02-15 23:21:37", "72.79.57.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("48706", "5", "2017-02-15 23:22:28", "72.79.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48707", "13", "2017-02-15 23:26:04", "72.79.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48708", "8", "2017-02-15 23:26:20", "72.79.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48709", "9", "2017-02-15 23:26:34", "72.79.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48710", "6", "2017-02-15 23:26:56", "72.79.57.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48711", "10", "2017-02-15 23:27:16", "72.79.57.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("48712", "3", "2017-02-16 00:09:21", "202.46.53.164", "12");
INSERT INTO `wp_gf_form_view` VALUES("48713", "15", "2017-02-16 00:09:21", "202.46.53.164", "8");
INSERT INTO `wp_gf_form_view` VALUES("48714", "3", "2017-02-16 01:18:01", "173.234.62.70", "206");
INSERT INTO `wp_gf_form_view` VALUES("48715", "15", "2017-02-16 01:18:02", "173.234.62.70", "136");
INSERT INTO `wp_gf_form_view` VALUES("48716", "11", "2017-02-16 01:18:13", "75.159.185.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("48717", "2", "2017-02-16 01:20:22", "173.255.138.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("48718", "11", "2017-02-16 02:16:40", "80.248.225.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("48719", "3", "2017-02-16 02:16:42", "80.248.225.146", "40");
INSERT INTO `wp_gf_form_view` VALUES("48720", "3", "2017-02-16 02:16:42", "80.248.225.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("48721", "3", "2017-02-16 02:16:42", "80.248.225.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("48722", "2", "2017-02-16 02:16:42", "80.248.225.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("48723", "15", "2017-02-16 02:16:45", "80.248.225.146", "28");
INSERT INTO `wp_gf_form_view` VALUES("48724", "5", "2017-02-16 02:28:50", "77.75.77.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("48725", "3", "2017-02-16 03:10:13", "184.69.106.198", "30");
INSERT INTO `wp_gf_form_view` VALUES("48726", "15", "2017-02-16 03:10:13", "184.69.106.198", "20");
INSERT INTO `wp_gf_form_view` VALUES("48727", "14", "2017-02-16 03:34:17", "162.212.170.31", "2");
INSERT INTO `wp_gf_form_view` VALUES("48728", "3", "2017-02-16 04:04:26", "163.172.66.105", "49");
INSERT INTO `wp_gf_form_view` VALUES("48729", "15", "2017-02-16 04:04:27", "163.172.66.105", "32");
INSERT INTO `wp_gf_form_view` VALUES("48730", "10", "2017-02-16 04:23:26", "163.172.65.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("48731", "3", "2017-02-16 05:30:44", "154.20.46.216", "50");
INSERT INTO `wp_gf_form_view` VALUES("48732", "15", "2017-02-16 05:30:46", "154.20.46.216", "32");
INSERT INTO `wp_gf_form_view` VALUES("48733", "3", "2017-02-16 06:02:01", "46.229.168.72", "51");
INSERT INTO `wp_gf_form_view` VALUES("48734", "15", "2017-02-16 06:02:01", "46.229.168.72", "32");
INSERT INTO `wp_gf_form_view` VALUES("48735", "10", "2017-02-16 06:21:14", "5.188.211.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("48736", "3", "2017-02-16 07:04:44", "163.172.66.101", "18");
INSERT INTO `wp_gf_form_view` VALUES("48737", "15", "2017-02-16 07:04:44", "163.172.66.101", "12");
INSERT INTO `wp_gf_form_view` VALUES("48738", "3", "2017-02-16 08:28:04", "202.46.54.210", "12");
INSERT INTO `wp_gf_form_view` VALUES("48739", "15", "2017-02-16 08:28:05", "202.46.54.210", "8");
INSERT INTO `wp_gf_form_view` VALUES("48740", "3", "2017-02-16 09:32:00", "163.172.65.240", "18");
INSERT INTO `wp_gf_form_view` VALUES("48741", "15", "2017-02-16 09:32:03", "163.172.65.240", "12");
INSERT INTO `wp_gf_form_view` VALUES("48742", "3", "2017-02-16 10:03:43", "163.172.65.45", "21");
INSERT INTO `wp_gf_form_view` VALUES("48743", "15", "2017-02-16 10:03:43", "163.172.65.45", "12");
INSERT INTO `wp_gf_form_view` VALUES("48744", "3", "2017-02-16 11:07:53", "66.249.79.148", "55");
INSERT INTO `wp_gf_form_view` VALUES("48745", "15", "2017-02-16 11:07:54", "66.249.79.148", "36");
INSERT INTO `wp_gf_form_view` VALUES("48746", "5", "2017-02-16 11:40:02", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48747", "3", "2017-02-16 12:31:33", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("48748", "15", "2017-02-16 12:31:36", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("48749", "6", "2017-02-16 13:36:44", "202.46.58.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("48750", "3", "2017-02-16 13:36:48", "202.46.58.93", "12");
INSERT INTO `wp_gf_form_view` VALUES("48751", "15", "2017-02-16 13:36:48", "202.46.58.93", "8");
INSERT INTO `wp_gf_form_view` VALUES("48752", "3", "2017-02-16 14:10:13", "202.46.51.200", "6");
INSERT INTO `wp_gf_form_view` VALUES("48753", "15", "2017-02-16 14:10:14", "202.46.51.200", "4");
INSERT INTO `wp_gf_form_view` VALUES("48754", "3", "2017-02-16 15:08:05", "157.55.39.118", "222");
INSERT INTO `wp_gf_form_view` VALUES("48755", "15", "2017-02-16 15:08:13", "157.55.39.118", "145");
INSERT INTO `wp_gf_form_view` VALUES("48756", "2", "2017-02-16 15:10:40", "138.197.71.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("48757", "11", "2017-02-16 15:10:40", "138.197.71.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("48758", "14", "2017-02-16 15:32:41", "198.24.172.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("48759", "3", "2017-02-16 16:19:02", "24.108.212.9", "20");
INSERT INTO `wp_gf_form_view` VALUES("48760", "15", "2017-02-16 16:19:03", "24.108.212.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("48761", "3", "2017-02-16 17:10:05", "106.120.188.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("48762", "15", "2017-02-16 17:10:08", "106.120.188.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("48763", "3", "2017-02-16 18:10:45", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("48764", "15", "2017-02-16 18:10:48", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("48765", "3", "2017-02-16 19:06:40", "184.69.184.90", "217");
INSERT INTO `wp_gf_form_view` VALUES("48766", "15", "2017-02-16 19:06:41", "184.69.184.90", "145");
INSERT INTO `wp_gf_form_view` VALUES("48767", "3", "2017-02-16 20:04:23", "202.46.49.70", "50");
INSERT INTO `wp_gf_form_view` VALUES("48768", "15", "2017-02-16 20:04:23", "202.46.49.70", "37");
INSERT INTO `wp_gf_form_view` VALUES("48769", "14", "2017-02-16 20:56:45", "179.43.132.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("48770", "14", "2017-02-16 21:27:44", "104.223.20.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("48771", "3", "2017-02-16 21:27:54", "104.223.20.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("48772", "15", "2017-02-16 21:27:55", "104.223.20.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("48773", "3", "2017-02-16 22:07:22", "77.75.78.169", "13");
INSERT INTO `wp_gf_form_view` VALUES("48774", "15", "2017-02-16 22:07:31", "77.75.78.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("48775", "3", "2017-02-16 23:14:34", "70.67.186.223", "25");
INSERT INTO `wp_gf_form_view` VALUES("48776", "15", "2017-02-16 23:14:40", "70.67.186.223", "16");
INSERT INTO `wp_gf_form_view` VALUES("48777", "3", "2017-02-17 00:15:21", "199.21.99.202", "55");
INSERT INTO `wp_gf_form_view` VALUES("48778", "15", "2017-02-17 00:15:21", "199.21.99.202", "36");
INSERT INTO `wp_gf_form_view` VALUES("48779", "3", "2017-02-17 01:51:08", "88.198.208.67", "6");
INSERT INTO `wp_gf_form_view` VALUES("48780", "15", "2017-02-17 01:51:09", "88.198.208.67", "4");
INSERT INTO `wp_gf_form_view` VALUES("48781", "3", "2017-02-17 02:05:29", "154.5.209.209", "24");
INSERT INTO `wp_gf_form_view` VALUES("48782", "15", "2017-02-17 02:05:29", "154.5.209.209", "16");
INSERT INTO `wp_gf_form_view` VALUES("48783", "14", "2017-02-17 03:20:27", "173.44.230.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("48784", "3", "2017-02-17 03:20:28", "173.44.230.74", "26");
INSERT INTO `wp_gf_form_view` VALUES("48785", "15", "2017-02-17 03:20:28", "173.44.230.74", "20");
INSERT INTO `wp_gf_form_view` VALUES("48786", "3", "2017-02-17 04:18:08", "24.68.42.124", "43");
INSERT INTO `wp_gf_form_view` VALUES("48787", "15", "2017-02-17 04:18:08", "24.68.42.124", "28");
INSERT INTO `wp_gf_form_view` VALUES("48788", "15", "2017-02-17 06:07:20", "24.108.192.79", "25");
INSERT INTO `wp_gf_form_view` VALUES("48789", "3", "2017-02-17 06:07:22", "24.108.192.79", "26");
INSERT INTO `wp_gf_form_view` VALUES("48790", "2", "2017-02-17 06:45:31", "88.198.208.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("48791", "15", "2017-02-17 07:23:26", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("48792", "3", "2017-02-17 07:23:41", "66.249.79.144", "20");
INSERT INTO `wp_gf_form_view` VALUES("48793", "6", "2017-02-17 07:55:58", "202.46.58.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("48794", "3", "2017-02-17 08:29:49", "157.55.39.105", "6");
INSERT INTO `wp_gf_form_view` VALUES("48795", "15", "2017-02-17 08:29:50", "157.55.39.105", "5");
INSERT INTO `wp_gf_form_view` VALUES("48796", "3", "2017-02-17 09:02:57", "202.46.51.37", "32");
INSERT INTO `wp_gf_form_view` VALUES("48797", "15", "2017-02-17 09:02:57", "202.46.51.37", "31");
INSERT INTO `wp_gf_form_view` VALUES("48798", "10", "2017-02-17 09:15:53", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("48799", "15", "2017-02-17 10:38:58", "207.46.13.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("48800", "3", "2017-02-17 10:39:03", "207.46.13.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("48801", "15", "2017-02-17 11:07:27", "202.46.51.16", "25");
INSERT INTO `wp_gf_form_view` VALUES("48802", "3", "2017-02-17 11:07:28", "202.46.51.16", "25");
INSERT INTO `wp_gf_form_view` VALUES("48803", "15", "2017-02-17 12:23:20", "51.255.65.90", "20");
INSERT INTO `wp_gf_form_view` VALUES("48804", "3", "2017-02-17 12:23:21", "51.255.65.90", "23");
INSERT INTO `wp_gf_form_view` VALUES("48805", "14", "2017-02-17 12:47:53", "202.46.48.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("48806", "15", "2017-02-17 13:21:23", "202.46.58.85", "10");
INSERT INTO `wp_gf_form_view` VALUES("48807", "3", "2017-02-17 13:21:23", "202.46.58.85", "10");
INSERT INTO `wp_gf_form_view` VALUES("48808", "3", "2017-02-17 14:05:27", "157.55.39.118", "11");
INSERT INTO `wp_gf_form_view` VALUES("48809", "15", "2017-02-17 14:05:30", "157.55.39.118", "10");
INSERT INTO `wp_gf_form_view` VALUES("48810", "15", "2017-02-17 15:00:08", "207.81.136.51", "15");
INSERT INTO `wp_gf_form_view` VALUES("48811", "3", "2017-02-17 15:00:08", "207.81.136.51", "15");
INSERT INTO `wp_gf_form_view` VALUES("48812", "10", "2017-02-17 15:32:08", "51.255.65.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("48813", "15", "2017-02-17 16:05:02", "164.132.161.7", "53");
INSERT INTO `wp_gf_form_view` VALUES("48814", "3", "2017-02-17 16:05:02", "164.132.161.7", "50");
INSERT INTO `wp_gf_form_view` VALUES("48815", "14", "2017-02-17 16:27:18", "173.208.146.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("48816", "15", "2017-02-17 17:15:51", "202.46.55.177", "15");
INSERT INTO `wp_gf_form_view` VALUES("48817", "3", "2017-02-17 17:16:09", "202.46.55.177", "17");
INSERT INTO `wp_gf_form_view` VALUES("48818", "3", "2017-02-17 18:19:45", "46.166.171.222", "11");
INSERT INTO `wp_gf_form_view` VALUES("48819", "15", "2017-02-17 18:19:47", "46.166.171.222", "10");
INSERT INTO `wp_gf_form_view` VALUES("48820", "6", "2017-02-17 18:36:55", "88.99.27.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("48821", "15", "2017-02-17 19:49:03", "216.232.157.49", "20");
INSERT INTO `wp_gf_form_view` VALUES("48822", "3", "2017-02-17 19:49:05", "216.232.157.49", "20");
INSERT INTO `wp_gf_form_view` VALUES("48823", "15", "2017-02-17 20:25:45", "196.186.192.178", "20");
INSERT INTO `wp_gf_form_view` VALUES("48824", "3", "2017-02-17 20:25:47", "196.186.192.178", "21");
INSERT INTO `wp_gf_form_view` VALUES("48825", "14", "2017-02-17 20:47:17", "107.174.5.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("48826", "15", "2017-02-17 21:07:08", "66.249.79.148", "35");
INSERT INTO `wp_gf_form_view` VALUES("48827", "3", "2017-02-17 21:07:09", "66.249.79.148", "35");
INSERT INTO `wp_gf_form_view` VALUES("48828", "14", "2017-02-17 21:34:01", "162.223.88.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("48829", "3", "2017-02-17 22:07:27", "51.255.65.35", "43");
INSERT INTO `wp_gf_form_view` VALUES("48830", "15", "2017-02-17 22:07:27", "51.255.65.35", "40");
INSERT INTO `wp_gf_form_view` VALUES("48831", "15", "2017-02-17 23:01:27", "207.46.13.48", "40");
INSERT INTO `wp_gf_form_view` VALUES("48832", "3", "2017-02-17 23:01:29", "207.46.13.48", "40");
INSERT INTO `wp_gf_form_view` VALUES("48833", "15", "2017-02-18 00:17:28", "68.180.229.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("48834", "3", "2017-02-18 00:17:33", "68.180.229.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("48835", "15", "2017-02-18 01:08:11", "66.249.79.148", "40");
INSERT INTO `wp_gf_form_view` VALUES("48836", "3", "2017-02-18 01:08:11", "66.249.79.148", "42");
INSERT INTO `wp_gf_form_view` VALUES("48837", "3", "2017-02-18 02:02:44", "68.180.229.247", "26");
INSERT INTO `wp_gf_form_view` VALUES("48838", "15", "2017-02-18 02:02:47", "68.180.229.247", "25");
INSERT INTO `wp_gf_form_view` VALUES("48839", "15", "2017-02-18 03:06:50", "77.75.77.54", "50");
INSERT INTO `wp_gf_form_view` VALUES("48840", "3", "2017-02-18 03:06:50", "77.75.77.54", "50");
INSERT INTO `wp_gf_form_view` VALUES("48841", "11", "2017-02-18 03:47:40", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("48842", "15", "2017-02-18 04:10:17", "66.249.79.144", "166");
INSERT INTO `wp_gf_form_view` VALUES("48843", "3", "2017-02-18 04:10:17", "66.249.79.144", "166");
INSERT INTO `wp_gf_form_view` VALUES("48844", "14", "2017-02-18 04:35:34", "216.232.157.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("48845", "3", "2017-02-18 05:00:38", "202.46.54.21", "163");
INSERT INTO `wp_gf_form_view` VALUES("48846", "15", "2017-02-18 05:00:45", "202.46.54.21", "162");
INSERT INTO `wp_gf_form_view` VALUES("48847", "11", "2017-02-18 05:13:10", "138.197.69.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("48848", "2", "2017-02-18 05:13:10", "138.197.69.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("48849", "13", "2017-02-18 05:38:01", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("48850", "15", "2017-02-18 06:01:42", "108.180.6.164", "55");
INSERT INTO `wp_gf_form_view` VALUES("48851", "3", "2017-02-18 06:01:42", "108.180.6.164", "58");
INSERT INTO `wp_gf_form_view` VALUES("48852", "15", "2017-02-18 07:13:53", "66.249.79.148", "35");
INSERT INTO `wp_gf_form_view` VALUES("48853", "3", "2017-02-18 07:14:04", "66.249.79.148", "35");
INSERT INTO `wp_gf_form_view` VALUES("48854", "14", "2017-02-18 07:14:30", "202.46.58.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("48855", "15", "2017-02-18 08:18:38", "51.255.65.17", "10");
INSERT INTO `wp_gf_form_view` VALUES("48856", "3", "2017-02-18 08:18:38", "51.255.65.17", "10");
INSERT INTO `wp_gf_form_view` VALUES("48857", "15", "2017-02-18 09:06:08", "51.255.65.74", "30");
INSERT INTO `wp_gf_form_view` VALUES("48858", "3", "2017-02-18 09:06:08", "51.255.65.74", "31");
INSERT INTO `wp_gf_form_view` VALUES("48859", "15", "2017-02-18 10:01:00", "77.75.77.72", "25");
INSERT INTO `wp_gf_form_view` VALUES("48860", "3", "2017-02-18 10:01:00", "77.75.77.72", "25");
INSERT INTO `wp_gf_form_view` VALUES("48861", "15", "2017-02-18 11:36:12", "66.249.79.140", "10");
INSERT INTO `wp_gf_form_view` VALUES("48862", "3", "2017-02-18 11:36:13", "66.249.79.140", "10");
INSERT INTO `wp_gf_form_view` VALUES("48863", "15", "2017-02-18 12:15:58", "66.249.79.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("48864", "3", "2017-02-18 12:15:59", "66.249.79.148", "22");
INSERT INTO `wp_gf_form_view` VALUES("48865", "6", "2017-02-18 12:28:51", "202.46.51.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("48866", "14", "2017-02-18 13:29:59", "46.17.99.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("48867", "15", "2017-02-18 13:29:59", "46.17.99.155", "15");
INSERT INTO `wp_gf_form_view` VALUES("48868", "3", "2017-02-18 13:30:00", "46.17.99.155", "15");
INSERT INTO `wp_gf_form_view` VALUES("48869", "14", "2017-02-18 14:09:20", "202.46.50.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("48870", "15", "2017-02-18 14:09:20", "202.46.50.12", "10");
INSERT INTO `wp_gf_form_view` VALUES("48871", "3", "2017-02-18 14:09:21", "202.46.50.12", "10");
INSERT INTO `wp_gf_form_view` VALUES("48872", "15", "2017-02-18 15:23:32", "66.249.79.144", "5");
INSERT INTO `wp_gf_form_view` VALUES("48873", "3", "2017-02-18 15:23:32", "66.249.79.144", "5");
INSERT INTO `wp_gf_form_view` VALUES("48874", "15", "2017-02-18 16:23:11", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("48875", "3", "2017-02-18 16:23:14", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("48876", "10", "2017-02-18 17:01:32", "164.132.161.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("48877", "15", "2017-02-18 17:01:32", "164.132.161.69", "41");
INSERT INTO `wp_gf_form_view` VALUES("48878", "3", "2017-02-18 17:01:32", "164.132.161.69", "40");
INSERT INTO `wp_gf_form_view` VALUES("48879", "14", "2017-02-18 17:12:42", "104.160.6.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("48880", "15", "2017-02-18 18:16:24", "68.180.229.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("48881", "3", "2017-02-18 18:16:24", "68.180.229.247", "23");
INSERT INTO `wp_gf_form_view` VALUES("48882", "15", "2017-02-18 19:10:02", "68.180.229.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("48883", "3", "2017-02-18 19:10:02", "68.180.229.247", "21");
INSERT INTO `wp_gf_form_view` VALUES("48884", "15", "2017-02-18 20:18:19", "50.7.151.30", "10");
INSERT INTO `wp_gf_form_view` VALUES("48885", "3", "2017-02-18 20:18:20", "50.7.151.30", "10");
INSERT INTO `wp_gf_form_view` VALUES("48886", "15", "2017-02-18 21:04:50", "77.75.79.119", "15");
INSERT INTO `wp_gf_form_view` VALUES("48887", "3", "2017-02-18 21:04:50", "77.75.79.119", "15");
INSERT INTO `wp_gf_form_view` VALUES("48888", "15", "2017-02-18 22:28:15", "77.75.77.95", "15");
INSERT INTO `wp_gf_form_view` VALUES("48889", "3", "2017-02-18 22:28:18", "77.75.77.95", "15");
INSERT INTO `wp_gf_form_view` VALUES("48890", "14", "2017-02-18 22:43:36", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("48891", "15", "2017-02-18 23:18:37", "202.46.51.194", "10");
INSERT INTO `wp_gf_form_view` VALUES("48892", "3", "2017-02-18 23:18:41", "202.46.51.194", "10");
INSERT INTO `wp_gf_form_view` VALUES("48893", "14", "2017-02-18 23:44:25", "173.208.146.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("48894", "3", "2017-02-19 00:12:31", "51.255.65.84", "22");
INSERT INTO `wp_gf_form_view` VALUES("48895", "15", "2017-02-19 00:12:33", "51.255.65.84", "19");
INSERT INTO `wp_gf_form_view` VALUES("48896", "3", "2017-02-19 01:03:46", "24.68.254.251", "62");
INSERT INTO `wp_gf_form_view` VALUES("48897", "15", "2017-02-19 01:03:46", "24.68.254.251", "40");
INSERT INTO `wp_gf_form_view` VALUES("48898", "6", "2017-02-19 01:41:53", "202.46.49.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("48899", "10", "2017-02-19 01:50:44", "51.255.65.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("48900", "3", "2017-02-19 02:31:30", "66.249.79.144", "27");
INSERT INTO `wp_gf_form_view` VALUES("48901", "15", "2017-02-19 02:31:31", "66.249.79.144", "23");
INSERT INTO `wp_gf_form_view` VALUES("48902", "11", "2017-02-19 02:44:47", "164.132.161.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("48903", "3", "2017-02-19 03:03:43", "164.132.161.49", "53");
INSERT INTO `wp_gf_form_view` VALUES("48904", "15", "2017-02-19 03:03:43", "164.132.161.49", "32");
INSERT INTO `wp_gf_form_view` VALUES("48905", "11", "2017-02-19 03:58:00", "77.75.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("48906", "3", "2017-02-19 04:46:34", "154.5.209.209", "30");
INSERT INTO `wp_gf_form_view` VALUES("48907", "15", "2017-02-19 04:46:35", "154.5.209.209", "20");
INSERT INTO `wp_gf_form_view` VALUES("48908", "3", "2017-02-19 05:09:17", "202.46.54.186", "43");
INSERT INTO `wp_gf_form_view` VALUES("48909", "15", "2017-02-19 05:09:17", "202.46.54.186", "29");
INSERT INTO `wp_gf_form_view` VALUES("48910", "14", "2017-02-19 05:35:31", "70.67.50.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("48911", "3", "2017-02-19 06:10:04", "68.180.229.247", "30");
INSERT INTO `wp_gf_form_view` VALUES("48912", "15", "2017-02-19 06:10:04", "68.180.229.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("48913", "3", "2017-02-19 07:13:46", "5.188.211.22", "335");
INSERT INTO `wp_gf_form_view` VALUES("48914", "15", "2017-02-19 07:13:48", "5.188.211.22", "241");
INSERT INTO `wp_gf_form_view` VALUES("48915", "3", "2017-02-19 08:17:28", "66.249.79.144", "19");
INSERT INTO `wp_gf_form_view` VALUES("48916", "15", "2017-02-19 08:17:28", "66.249.79.144", "12");
INSERT INTO `wp_gf_form_view` VALUES("48917", "3", "2017-02-19 09:07:41", "24.68.4.213", "102");
INSERT INTO `wp_gf_form_view` VALUES("48918", "15", "2017-02-19 09:07:41", "24.68.4.213", "68");
INSERT INTO `wp_gf_form_view` VALUES("48919", "10", "2017-02-19 09:47:26", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48920", "3", "2017-02-19 10:08:21", "66.249.79.140", "194");
INSERT INTO `wp_gf_form_view` VALUES("48921", "15", "2017-02-19 10:08:21", "66.249.79.140", "128");
INSERT INTO `wp_gf_form_view` VALUES("48922", "11", "2017-02-19 10:26:58", "96.56.24.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48923", "2", "2017-02-19 10:28:01", "96.56.24.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("48924", "3", "2017-02-19 11:34:00", "199.16.157.183", "19");
INSERT INTO `wp_gf_form_view` VALUES("48925", "3", "2017-02-19 11:34:00", "199.16.157.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("48926", "15", "2017-02-19 11:34:03", "199.16.157.183", "12");
INSERT INTO `wp_gf_form_view` VALUES("48927", "3", "2017-02-19 12:15:06", "66.249.79.140", "19");
INSERT INTO `wp_gf_form_view` VALUES("48928", "15", "2017-02-19 12:15:11", "66.249.79.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("48929", "3", "2017-02-19 13:47:14", "51.255.65.10", "12");
INSERT INTO `wp_gf_form_view` VALUES("48930", "15", "2017-02-19 13:47:16", "51.255.65.10", "8");
INSERT INTO `wp_gf_form_view` VALUES("48931", "10", "2017-02-19 14:06:07", "5.188.211.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("48932", "3", "2017-02-19 14:06:07", "5.188.211.15", "334");
INSERT INTO `wp_gf_form_view` VALUES("48933", "15", "2017-02-19 14:06:07", "5.188.211.15", "237");
INSERT INTO `wp_gf_form_view` VALUES("48934", "11", "2017-02-19 14:11:04", "173.242.126.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("48935", "2", "2017-02-19 14:11:59", "173.242.126.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("48936", "10", "2017-02-19 15:04:34", "199.16.157.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("48937", "3", "2017-02-19 15:04:35", "199.16.157.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("48938", "15", "2017-02-19 15:04:35", "199.16.157.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("48939", "3", "2017-02-19 16:07:01", "220.181.108.110", "63");
INSERT INTO `wp_gf_form_view` VALUES("48940", "15", "2017-02-19 16:07:03", "220.181.108.110", "40");
INSERT INTO `wp_gf_form_view` VALUES("48941", "2", "2017-02-19 16:52:30", "96.54.240.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("48942", "3", "2017-02-19 17:19:50", "51.255.65.42", "477");
INSERT INTO `wp_gf_form_view` VALUES("48943", "15", "2017-02-19 17:19:56", "51.255.65.42", "322");
INSERT INTO `wp_gf_form_view` VALUES("48944", "10", "2017-02-19 17:53:20", "207.46.13.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("48945", "11", "2017-02-19 17:53:30", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("48946", "6", "2017-02-19 17:53:53", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("48947", "9", "2017-02-19 17:54:21", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("48948", "5", "2017-02-19 17:54:46", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("48949", "3", "2017-02-19 18:44:18", "164.132.161.18", "12");
INSERT INTO `wp_gf_form_view` VALUES("48950", "15", "2017-02-19 18:44:19", "164.132.161.18", "8");
INSERT INTO `wp_gf_form_view` VALUES("48951", "3", "2017-02-19 19:13:13", "216.232.152.160", "67");
INSERT INTO `wp_gf_form_view` VALUES("48952", "15", "2017-02-19 19:13:14", "216.232.152.160", "44");
INSERT INTO `wp_gf_form_view` VALUES("48953", "11", "2017-02-19 19:59:40", "24.108.168.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("48954", "3", "2017-02-19 20:00:10", "24.108.168.103", "189");
INSERT INTO `wp_gf_form_view` VALUES("48955", "15", "2017-02-19 20:00:10", "24.108.168.103", "125");
INSERT INTO `wp_gf_form_view` VALUES("48956", "11", "2017-02-19 20:15:13", "138.197.111.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("48957", "2", "2017-02-19 20:15:14", "138.197.111.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("48958", "14", "2017-02-19 20:36:26", "210.91.48.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("48959", "3", "2017-02-19 21:18:54", "66.249.79.144", "66");
INSERT INTO `wp_gf_form_view` VALUES("48960", "15", "2017-02-19 21:19:03", "66.249.79.144", "44");
INSERT INTO `wp_gf_form_view` VALUES("48961", "14", "2017-02-19 21:29:23", "216.232.152.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("48962", "3", "2017-02-19 22:01:38", "66.249.79.140", "33");
INSERT INTO `wp_gf_form_view` VALUES("48963", "15", "2017-02-19 22:01:38", "66.249.79.140", "27");
INSERT INTO `wp_gf_form_view` VALUES("48964", "10", "2017-02-19 22:32:27", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48965", "3", "2017-02-19 23:11:22", "107.170.16.250", "68");
INSERT INTO `wp_gf_form_view` VALUES("48966", "15", "2017-02-19 23:11:28", "107.170.16.250", "44");
INSERT INTO `wp_gf_form_view` VALUES("48967", "3", "2017-02-20 00:18:55", "157.55.39.128", "13");
INSERT INTO `wp_gf_form_view` VALUES("48968", "15", "2017-02-20 00:18:56", "66.249.79.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("48969", "15", "2017-02-20 00:18:56", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("48970", "3", "2017-02-20 01:15:32", "202.46.52.172", "55");
INSERT INTO `wp_gf_form_view` VALUES("48971", "15", "2017-02-20 01:15:36", "202.46.52.172", "36");
INSERT INTO `wp_gf_form_view` VALUES("48972", "3", "2017-02-20 02:01:03", "77.75.79.109", "24");
INSERT INTO `wp_gf_form_view` VALUES("48973", "15", "2017-02-20 02:01:04", "77.75.79.109", "16");
INSERT INTO `wp_gf_form_view` VALUES("48974", "14", "2017-02-20 03:05:42", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("48975", "3", "2017-02-20 03:05:43", "68.180.229.247", "48");
INSERT INTO `wp_gf_form_view` VALUES("48976", "3", "2017-02-20 03:05:43", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48977", "15", "2017-02-20 03:05:44", "68.180.229.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("48978", "15", "2017-02-20 03:05:44", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("48979", "3", "2017-02-20 04:15:56", "77.75.79.101", "25");
INSERT INTO `wp_gf_form_view` VALUES("48980", "15", "2017-02-20 04:15:58", "77.75.79.101", "17");
INSERT INTO `wp_gf_form_view` VALUES("48981", "3", "2017-02-20 05:18:03", "207.46.13.48", "25");
INSERT INTO `wp_gf_form_view` VALUES("48982", "15", "2017-02-20 05:26:04", "77.75.79.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("48983", "13", "2017-02-20 06:07:34", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("48984", "3", "2017-02-20 06:10:53", "207.46.13.48", "25");
INSERT INTO `wp_gf_form_view` VALUES("48985", "15", "2017-02-20 06:10:54", "207.46.13.48", "16");
INSERT INTO `wp_gf_form_view` VALUES("48986", "10", "2017-02-20 07:16:41", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("48987", "3", "2017-02-20 07:16:51", "207.46.13.48", "37");
INSERT INTO `wp_gf_form_view` VALUES("48988", "15", "2017-02-20 07:16:51", "207.46.13.48", "24");
INSERT INTO `wp_gf_form_view` VALUES("48989", "3", "2017-02-20 08:19:05", "66.249.79.140", "25");
INSERT INTO `wp_gf_form_view` VALUES("48990", "15", "2017-02-20 08:19:06", "66.249.79.140", "23");
INSERT INTO `wp_gf_form_view` VALUES("48991", "3", "2017-02-20 09:04:48", "157.55.39.128", "40");
INSERT INTO `wp_gf_form_view` VALUES("48992", "15", "2017-02-20 09:04:48", "157.55.39.128", "31");
INSERT INTO `wp_gf_form_view` VALUES("48993", "3", "2017-02-20 10:13:39", "66.249.79.148", "15");
INSERT INTO `wp_gf_form_view` VALUES("48994", "15", "2017-02-20 10:13:40", "66.249.79.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("48995", "3", "2017-02-20 11:01:54", "66.249.79.148", "36");
INSERT INTO `wp_gf_form_view` VALUES("48996", "15", "2017-02-20 11:01:54", "66.249.79.148", "24");
INSERT INTO `wp_gf_form_view` VALUES("48997", "3", "2017-02-20 12:02:34", "157.55.39.128", "33");
INSERT INTO `wp_gf_form_view` VALUES("48998", "15", "2017-02-20 12:02:35", "157.55.39.128", "20");
INSERT INTO `wp_gf_form_view` VALUES("48999", "3", "2017-02-20 13:11:26", "207.46.13.48", "28");
INSERT INTO `wp_gf_form_view` VALUES("49000", "15", "2017-02-20 13:11:26", "207.46.13.48", "16");
INSERT INTO `wp_gf_form_view` VALUES("49001", "3", "2017-02-20 14:09:08", "207.46.13.48", "22");
INSERT INTO `wp_gf_form_view` VALUES("49002", "15", "2017-02-20 14:09:09", "207.46.13.48", "19");
INSERT INTO `wp_gf_form_view` VALUES("49003", "3", "2017-02-20 15:35:09", "66.249.79.140", "30");
INSERT INTO `wp_gf_form_view` VALUES("49004", "15", "2017-02-20 15:35:09", "66.249.79.140", "20");
INSERT INTO `wp_gf_form_view` VALUES("49005", "2", "2017-02-20 15:51:51", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49006", "3", "2017-02-20 16:11:58", "207.46.13.48", "68");
INSERT INTO `wp_gf_form_view` VALUES("49007", "15", "2017-02-20 16:12:00", "207.46.13.48", "44");
INSERT INTO `wp_gf_form_view` VALUES("49008", "13", "2017-02-20 16:56:53", "46.118.233.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("49009", "3", "2017-02-20 17:04:12", "66.249.79.140", "70");
INSERT INTO `wp_gf_form_view` VALUES("49010", "15", "2017-02-20 17:04:13", "66.249.79.140", "46");
INSERT INTO `wp_gf_form_view` VALUES("49011", "3", "2017-02-20 18:10:32", "66.249.79.148", "49");
INSERT INTO `wp_gf_form_view` VALUES("49012", "15", "2017-02-20 18:11:03", "66.249.79.148", "32");
INSERT INTO `wp_gf_form_view` VALUES("49013", "3", "2017-02-20 19:21:15", "68.180.229.247", "43");
INSERT INTO `wp_gf_form_view` VALUES("49014", "15", "2017-02-20 19:21:16", "68.180.229.247", "28");
INSERT INTO `wp_gf_form_view` VALUES("49015", "3", "2017-02-20 20:05:06", "66.249.79.144", "72");
INSERT INTO `wp_gf_form_view` VALUES("49016", "15", "2017-02-20 20:05:08", "66.249.79.144", "41");
INSERT INTO `wp_gf_form_view` VALUES("49017", "14", "2017-02-20 20:27:51", "24.69.158.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("49018", "3", "2017-02-20 21:07:30", "202.46.53.55", "50");
INSERT INTO `wp_gf_form_view` VALUES("49019", "8", "2017-02-20 22:08:03", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("49020", "3", "2017-02-20 22:08:05", "66.249.79.144", "82");
INSERT INTO `wp_gf_form_view` VALUES("49021", "10", "2017-02-20 22:18:59", "51.255.65.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("49022", "3", "2017-02-20 23:06:29", "66.249.79.148", "84");
INSERT INTO `wp_gf_form_view` VALUES("49023", "10", "2017-02-20 23:41:00", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49024", "3", "2017-02-21 00:21:55", "164.132.161.41", "91");
INSERT INTO `wp_gf_form_view` VALUES("49025", "14", "2017-02-21 00:33:17", "195.22.127.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("49026", "3", "2017-02-21 01:00:52", "202.46.58.151", "41");
INSERT INTO `wp_gf_form_view` VALUES("49027", "3", "2017-02-21 02:14:49", "37.187.174.89", "114");
INSERT INTO `wp_gf_form_view` VALUES("49028", "7", "2017-02-21 02:32:33", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("49029", "3", "2017-02-21 03:01:27", "157.55.39.105", "60");
INSERT INTO `wp_gf_form_view` VALUES("49030", "10", "2017-02-21 03:46:00", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("49031", "10", "2017-02-21 04:02:59", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("49032", "3", "2017-02-21 04:02:59", "66.249.79.144", "1086");
INSERT INTO `wp_gf_form_view` VALUES("49033", "14", "2017-02-21 04:51:30", "45.55.149.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("49034", "11", "2017-02-21 04:51:54", "45.55.149.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("49035", "3", "2017-02-21 05:00:39", "45.55.149.151", "3888");
INSERT INTO `wp_gf_form_view` VALUES("49036", "6", "2017-02-21 05:10:10", "45.55.149.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("49037", "9", "2017-02-21 05:18:04", "45.55.149.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("49038", "13", "2017-02-21 05:20:55", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("49039", "10", "2017-02-21 05:25:19", "157.55.39.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("49040", "2", "2017-02-21 05:58:24", "45.55.149.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("49041", "3", "2017-02-21 06:00:10", "45.55.149.151", "737");
INSERT INTO `wp_gf_form_view` VALUES("49042", "10", "2017-02-21 06:05:40", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("49043", "13", "2017-02-21 06:08:30", "45.55.149.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("49044", "8", "2017-02-21 06:09:34", "45.55.149.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("49045", "3", "2017-02-21 07:21:59", "202.46.53.17", "51");
INSERT INTO `wp_gf_form_view` VALUES("49046", "3", "2017-02-21 08:12:41", "24.69.174.160", "333");
INSERT INTO `wp_gf_form_view` VALUES("49047", "2", "2017-02-21 08:35:25", "23.20.31.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("49048", "11", "2017-02-21 08:41:49", "138.197.111.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("49049", "13", "2017-02-21 08:54:50", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("49050", "3", "2017-02-21 09:09:22", "66.249.79.148", "74");
INSERT INTO `wp_gf_form_view` VALUES("49051", "9", "2017-02-21 10:06:48", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49052", "10", "2017-02-21 10:23:57", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("49053", "3", "2017-02-21 10:23:58", "157.55.39.128", "61");
INSERT INTO `wp_gf_form_view` VALUES("49054", "3", "2017-02-21 11:00:04", "178.165.88.182", "51");
INSERT INTO `wp_gf_form_view` VALUES("49055", "3", "2017-02-21 12:18:30", "157.55.39.128", "72");
INSERT INTO `wp_gf_form_view` VALUES("49056", "3", "2017-02-21 12:18:30", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("49057", "8", "2017-02-21 12:43:22", "163.172.66.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("49058", "10", "2017-02-21 12:47:07", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("49059", "3", "2017-02-21 13:10:06", "66.249.79.148", "31");
INSERT INTO `wp_gf_form_view` VALUES("49060", "3", "2017-02-21 14:07:32", "66.249.79.140", "163");
INSERT INTO `wp_gf_form_view` VALUES("49061", "10", "2017-02-21 14:14:32", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("49062", "13", "2017-02-21 14:47:06", "163.172.66.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("49063", "3", "2017-02-21 15:06:01", "66.249.79.140", "51");
INSERT INTO `wp_gf_form_view` VALUES("49064", "3", "2017-02-21 16:18:02", "66.249.79.140", "82");
INSERT INTO `wp_gf_form_view` VALUES("49065", "10", "2017-02-21 17:20:47", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49066", "3", "2017-02-21 17:21:16", "207.46.13.48", "21");
INSERT INTO `wp_gf_form_view` VALUES("49067", "3", "2017-02-21 18:02:18", "203.96.149.247", "174");
INSERT INTO `wp_gf_form_view` VALUES("49068", "3", "2017-02-21 18:02:18", "203.96.149.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49069", "15", "2017-02-21 18:43:10", "70.67.53.250", "15");
INSERT INTO `wp_gf_form_view` VALUES("49070", "10", "2017-02-21 18:43:10", "70.67.53.250", "16");
INSERT INTO `wp_gf_form_view` VALUES("49071", "14", "2017-02-21 18:44:04", "70.67.53.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("49072", "15", "2017-02-21 19:00:29", "66.249.79.144", "28");
INSERT INTO `wp_gf_form_view` VALUES("49073", "3", "2017-02-21 19:00:29", "66.249.79.144", "137");
INSERT INTO `wp_gf_form_view` VALUES("49074", "10", "2017-02-21 19:00:30", "66.249.79.144", "22");
INSERT INTO `wp_gf_form_view` VALUES("49075", "14", "2017-02-21 20:02:12", "209.197.20.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("49076", "3", "2017-02-21 20:02:12", "209.197.20.197", "74");
INSERT INTO `wp_gf_form_view` VALUES("49077", "15", "2017-02-21 20:02:13", "209.197.20.197", "12");
INSERT INTO `wp_gf_form_view` VALUES("49078", "10", "2017-02-21 20:02:13", "209.197.20.197", "9");
INSERT INTO `wp_gf_form_view` VALUES("49079", "3", "2017-02-21 21:01:41", "184.66.246.177", "221");
INSERT INTO `wp_gf_form_view` VALUES("49080", "15", "2017-02-21 21:01:41", "184.66.246.177", "27");
INSERT INTO `wp_gf_form_view` VALUES("49081", "10", "2017-02-21 21:01:41", "184.66.246.177", "29");
INSERT INTO `wp_gf_form_view` VALUES("49082", "8", "2017-02-21 21:03:02", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49083", "13", "2017-02-21 21:03:03", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("49084", "14", "2017-02-21 21:05:34", "184.66.246.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("49085", "3", "2017-02-21 22:03:16", "66.249.79.148", "114");
INSERT INTO `wp_gf_form_view` VALUES("49086", "15", "2017-02-21 22:03:17", "66.249.79.148", "19");
INSERT INTO `wp_gf_form_view` VALUES("49087", "10", "2017-02-21 22:03:17", "66.249.79.148", "18");
INSERT INTO `wp_gf_form_view` VALUES("49088", "10", "2017-02-21 23:03:09", "64.74.215.59", "16");
INSERT INTO `wp_gf_form_view` VALUES("49089", "3", "2017-02-21 23:03:09", "64.74.215.59", "120");
INSERT INTO `wp_gf_form_view` VALUES("49090", "15", "2017-02-21 23:03:10", "64.74.215.59", "18");
INSERT INTO `wp_gf_form_view` VALUES("49091", "3", "2017-02-22 00:08:20", "77.75.77.119", "67");
INSERT INTO `wp_gf_form_view` VALUES("49092", "15", "2017-02-22 00:08:21", "77.75.77.119", "8");
INSERT INTO `wp_gf_form_view` VALUES("49093", "10", "2017-02-22 00:08:21", "77.75.77.119", "9");
INSERT INTO `wp_gf_form_view` VALUES("49094", "9", "2017-02-22 00:51:19", "163.172.65.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("49095", "3", "2017-02-22 01:04:52", "157.55.39.128", "121");
INSERT INTO `wp_gf_form_view` VALUES("49096", "15", "2017-02-22 01:04:56", "157.55.39.128", "18");
INSERT INTO `wp_gf_form_view` VALUES("49097", "10", "2017-02-22 01:04:56", "157.55.39.128", "18");
INSERT INTO `wp_gf_form_view` VALUES("49098", "10", "2017-02-22 02:00:16", "75.154.240.57", "39");
INSERT INTO `wp_gf_form_view` VALUES("49099", "3", "2017-02-22 02:00:16", "75.154.240.57", "310");
INSERT INTO `wp_gf_form_view` VALUES("49100", "15", "2017-02-22 02:00:17", "75.154.240.57", "43");
INSERT INTO `wp_gf_form_view` VALUES("49101", "14", "2017-02-22 02:29:38", "154.20.39.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("49102", "2", "2017-02-22 02:35:32", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49103", "3", "2017-02-22 03:01:50", "154.20.41.244", "96");
INSERT INTO `wp_gf_form_view` VALUES("49104", "10", "2017-02-22 03:01:50", "154.20.41.244", "14");
INSERT INTO `wp_gf_form_view` VALUES("49105", "15", "2017-02-22 03:02:42", "154.20.39.22", "12");
INSERT INTO `wp_gf_form_view` VALUES("49106", "3", "2017-02-22 04:00:04", "207.6.123.224", "146");
INSERT INTO `wp_gf_form_view` VALUES("49107", "15", "2017-02-22 04:00:05", "207.6.123.224", "20");
INSERT INTO `wp_gf_form_view` VALUES("49108", "10", "2017-02-22 04:00:05", "207.6.123.224", "18");
INSERT INTO `wp_gf_form_view` VALUES("49109", "14", "2017-02-22 04:00:42", "207.6.123.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("49110", "6", "2017-02-22 04:31:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49111", "9", "2017-02-22 04:31:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49112", "8", "2017-02-22 04:31:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49113", "13", "2017-02-22 04:31:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49114", "5", "2017-02-22 04:49:24", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("49115", "15", "2017-02-22 05:09:49", "207.6.125.244", "23");
INSERT INTO `wp_gf_form_view` VALUES("49116", "3", "2017-02-22 05:10:20", "207.6.125.244", "137");
INSERT INTO `wp_gf_form_view` VALUES("49117", "10", "2017-02-22 05:10:21", "207.6.125.244", "19");
INSERT INTO `wp_gf_form_view` VALUES("49118", "11", "2017-02-22 05:33:05", "217.69.133.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("49119", "15", "2017-02-22 06:00:52", "70.66.52.163", "25");
INSERT INTO `wp_gf_form_view` VALUES("49120", "3", "2017-02-22 06:00:52", "70.66.52.163", "128");
INSERT INTO `wp_gf_form_view` VALUES("49121", "10", "2017-02-22 06:00:53", "70.66.52.163", "17");
INSERT INTO `wp_gf_form_view` VALUES("49122", "11", "2017-02-22 06:32:30", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49123", "14", "2017-02-22 06:46:03", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49124", "3", "2017-02-22 07:09:02", "77.75.78.161", "107");
INSERT INTO `wp_gf_form_view` VALUES("49125", "15", "2017-02-22 07:09:05", "77.75.78.161", "17");
INSERT INTO `wp_gf_form_view` VALUES("49126", "10", "2017-02-22 07:09:05", "77.75.78.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("49127", "14", "2017-02-22 07:38:35", "163.172.66.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("49128", "3", "2017-02-22 08:00:53", "157.55.39.128", "159");
INSERT INTO `wp_gf_form_view` VALUES("49129", "15", "2017-02-22 08:07:07", "68.180.229.247", "25");
INSERT INTO `wp_gf_form_view` VALUES("49130", "10", "2017-02-22 08:07:07", "68.180.229.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("49131", "14", "2017-02-22 08:12:44", "188.208.0.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("49132", "3", "2017-02-22 09:16:10", "157.55.39.128", "32");
INSERT INTO `wp_gf_form_view` VALUES("49133", "15", "2017-02-22 09:16:11", "157.55.39.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("49134", "10", "2017-02-22 09:16:11", "157.55.39.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("49135", "3", "2017-02-22 10:01:50", "207.46.13.48", "51");
INSERT INTO `wp_gf_form_view` VALUES("49136", "15", "2017-02-22 10:01:51", "207.46.13.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("49137", "10", "2017-02-22 10:01:51", "207.46.13.48", "10");
INSERT INTO `wp_gf_form_view` VALUES("49138", "3", "2017-02-22 11:17:24", "202.46.48.82", "74");
INSERT INTO `wp_gf_form_view` VALUES("49139", "15", "2017-02-22 11:17:28", "202.46.48.82", "11");
INSERT INTO `wp_gf_form_view` VALUES("49140", "10", "2017-02-22 11:17:28", "202.46.48.82", "9");
INSERT INTO `wp_gf_form_view` VALUES("49141", "9", "2017-02-22 12:01:06", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("49142", "3", "2017-02-22 12:01:06", "207.46.13.48", "115");
INSERT INTO `wp_gf_form_view` VALUES("49143", "15", "2017-02-22 12:01:06", "207.46.13.48", "13");
INSERT INTO `wp_gf_form_view` VALUES("49144", "10", "2017-02-22 12:01:07", "207.46.13.48", "17");
INSERT INTO `wp_gf_form_view` VALUES("49145", "6", "2017-02-22 12:15:09", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49146", "8", "2017-02-22 12:15:10", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49147", "13", "2017-02-22 12:15:11", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("49148", "3", "2017-02-22 13:02:53", "66.249.79.144", "113");
INSERT INTO `wp_gf_form_view` VALUES("49149", "15", "2017-02-22 13:02:54", "66.249.79.144", "16");
INSERT INTO `wp_gf_form_view` VALUES("49150", "10", "2017-02-22 13:02:54", "66.249.79.144", "15");
INSERT INTO `wp_gf_form_view` VALUES("49151", "3", "2017-02-22 14:10:09", "66.249.79.148", "267");
INSERT INTO `wp_gf_form_view` VALUES("49152", "15", "2017-02-22 14:10:10", "66.249.79.148", "34");
INSERT INTO `wp_gf_form_view` VALUES("49153", "10", "2017-02-22 14:10:10", "66.249.79.148", "33");
INSERT INTO `wp_gf_form_view` VALUES("49154", "12", "2017-02-22 14:40:23", "163.172.64.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("49155", "11", "2017-02-22 14:55:01", "94.221.81.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("49156", "2", "2017-02-22 14:56:07", "94.221.81.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("49157", "15", "2017-02-22 15:06:23", "184.66.224.168", "19");
INSERT INTO `wp_gf_form_view` VALUES("49158", "3", "2017-02-22 15:06:24", "184.66.224.168", "97");
INSERT INTO `wp_gf_form_view` VALUES("49159", "10", "2017-02-22 15:06:24", "184.66.224.168", "13");
INSERT INTO `wp_gf_form_view` VALUES("49160", "15", "2017-02-22 16:01:40", "154.5.180.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("49161", "3", "2017-02-22 16:01:41", "154.5.180.3", "260");
INSERT INTO `wp_gf_form_view` VALUES("49162", "10", "2017-02-22 16:01:41", "154.5.180.3", "36");
INSERT INTO `wp_gf_form_view` VALUES("49163", "14", "2017-02-22 16:12:05", "24.108.188.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("49164", "6", "2017-02-22 16:20:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49165", "9", "2017-02-22 16:20:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49166", "8", "2017-02-22 16:20:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49167", "13", "2017-02-22 16:20:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("49168", "2", "2017-02-22 16:46:14", "173.212.216.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("49169", "3", "2017-02-22 17:00:14", "62.173.145.28", "129");
INSERT INTO `wp_gf_form_view` VALUES("49170", "15", "2017-02-22 17:00:16", "62.173.145.28", "23");
INSERT INTO `wp_gf_form_view` VALUES("49171", "10", "2017-02-22 17:00:17", "62.173.145.28", "18");
INSERT INTO `wp_gf_form_view` VALUES("49172", "15", "2017-02-22 18:00:30", "24.244.32.206", "31");
INSERT INTO `wp_gf_form_view` VALUES("49173", "3", "2017-02-22 18:00:30", "24.244.32.206", "186");
INSERT INTO `wp_gf_form_view` VALUES("49174", "10", "2017-02-22 18:00:31", "24.244.32.206", "28");
INSERT INTO `wp_gf_form_view` VALUES("49175", "11", "2017-02-22 18:27:24", "184.66.134.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("49176", "14", "2017-02-22 18:34:31", "184.66.134.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("49177", "3", "2017-02-22 19:03:46", "184.69.174.226", "17");
INSERT INTO `wp_gf_form_view` VALUES("49178", "15", "2017-02-22 19:03:46", "184.69.174.226", "8");
INSERT INTO `wp_gf_form_view` VALUES("49179", "10", "2017-02-22 19:03:46", "184.69.174.226", "11");
INSERT INTO `wp_gf_form_view` VALUES("49180", "15", "2017-02-22 20:37:35", "24.244.32.181", "7");
INSERT INTO `wp_gf_form_view` VALUES("49181", "3", "2017-02-22 20:37:55", "24.244.32.181", "15");
INSERT INTO `wp_gf_form_view` VALUES("49182", "10", "2017-02-22 20:37:56", "24.244.32.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("49183", "11", "2017-02-22 20:48:02", "138.197.104.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("49184", "2", "2017-02-22 20:48:05", "138.197.104.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("49185", "14", "2017-02-22 21:34:21", "71.19.247.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("49186", "3", "2017-02-22 21:34:25", "71.19.247.41", "7");
INSERT INTO `wp_gf_form_view` VALUES("49187", "15", "2017-02-22 21:34:25", "71.19.247.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("49188", "10", "2017-02-22 21:34:25", "71.19.247.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("49189", "3", "2017-02-22 22:10:26", "202.46.50.94", "11");
INSERT INTO `wp_gf_form_view` VALUES("49190", "15", "2017-02-22 22:10:45", "207.46.13.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("49191", "15", "2017-02-22 22:10:45", "202.46.50.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("49192", "10", "2017-02-22 22:10:46", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("49193", "10", "2017-02-22 22:10:46", "202.46.50.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("49194", "3", "2017-02-22 23:06:17", "66.249.79.140", "27");
INSERT INTO `wp_gf_form_view` VALUES("49195", "15", "2017-02-22 23:06:26", "66.249.79.140", "13");
INSERT INTO `wp_gf_form_view` VALUES("49196", "10", "2017-02-22 23:06:26", "66.249.79.140", "13");
INSERT INTO `wp_gf_form_view` VALUES("49197", "12", "2017-02-22 23:50:37", "202.46.48.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("49198", "3", "2017-02-23 00:01:47", "157.55.39.105", "22");
INSERT INTO `wp_gf_form_view` VALUES("49199", "15", "2017-02-23 00:01:52", "157.55.39.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("49200", "10", "2017-02-23 00:01:52", "157.55.39.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("49201", "14", "2017-02-23 00:58:59", "154.20.39.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("49202", "15", "2017-02-23 01:02:33", "24.68.154.5", "11");
INSERT INTO `wp_gf_form_view` VALUES("49203", "3", "2017-02-23 01:02:33", "24.68.154.5", "18");
INSERT INTO `wp_gf_form_view` VALUES("49204", "10", "2017-02-23 01:02:34", "24.68.154.5", "8");
INSERT INTO `wp_gf_form_view` VALUES("49205", "3", "2017-02-23 02:30:08", "68.180.229.247", "27");
INSERT INTO `wp_gf_form_view` VALUES("49206", "15", "2017-02-23 02:30:09", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("49207", "10", "2017-02-23 02:30:09", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("49208", "2", "2017-02-23 02:31:15", "163.172.64.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("49209", "13", "2017-02-23 02:53:49", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49210", "8", "2017-02-23 03:26:34", "202.46.56.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("49211", "3", "2017-02-23 03:26:35", "202.46.56.38", "32");
INSERT INTO `wp_gf_form_view` VALUES("49212", "15", "2017-02-23 03:26:35", "202.46.56.38", "6");
INSERT INTO `wp_gf_form_view` VALUES("49213", "10", "2017-02-23 03:26:35", "202.46.56.38", "6");
INSERT INTO `wp_gf_form_view` VALUES("49214", "6", "2017-02-23 03:59:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49215", "9", "2017-02-23 03:59:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49216", "13", "2017-02-23 03:59:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49217", "3", "2017-02-23 04:11:00", "207.46.13.48", "13");
INSERT INTO `wp_gf_form_view` VALUES("49218", "15", "2017-02-23 04:11:00", "207.46.13.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("49219", "10", "2017-02-23 04:11:00", "207.46.13.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("49220", "3", "2017-02-23 05:02:32", "51.255.65.87", "6");
INSERT INTO `wp_gf_form_view` VALUES("49221", "15", "2017-02-23 05:02:32", "51.255.65.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("49222", "10", "2017-02-23 05:02:32", "51.255.65.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("49223", "10", "2017-02-23 06:02:54", "66.249.79.140", "11");
INSERT INTO `wp_gf_form_view` VALUES("49224", "3", "2017-02-23 06:02:58", "66.249.79.140", "20");
INSERT INTO `wp_gf_form_view` VALUES("49225", "15", "2017-02-23 06:02:58", "66.249.79.140", "9");
INSERT INTO `wp_gf_form_view` VALUES("49226", "14", "2017-02-23 06:41:22", "185.128.36.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("49227", "9", "2017-02-23 06:46:43", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49228", "15", "2017-02-23 07:19:11", "154.5.209.227", "3");
INSERT INTO `wp_gf_form_view` VALUES("49229", "3", "2017-02-23 07:19:31", "154.5.209.227", "4");
INSERT INTO `wp_gf_form_view` VALUES("49230", "10", "2017-02-23 07:19:31", "154.5.209.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("49231", "3", "2017-02-23 08:00:32", "157.55.39.128", "7");
INSERT INTO `wp_gf_form_view` VALUES("49232", "10", "2017-02-23 08:07:25", "207.46.13.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("49233", "15", "2017-02-23 08:07:26", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("49234", "14", "2017-02-23 08:24:54", "125.141.200.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("49235", "3", "2017-02-23 09:18:38", "165.231.80.96", "9");
INSERT INTO `wp_gf_form_view` VALUES("49236", "15", "2017-02-23 09:18:43", "165.231.80.96", "7");
INSERT INTO `wp_gf_form_view` VALUES("49237", "10", "2017-02-23 09:18:44", "165.231.80.96", "7");
INSERT INTO `wp_gf_form_view` VALUES("49238", "3", "2017-02-23 10:11:09", "157.55.39.128", "8");
INSERT INTO `wp_gf_form_view` VALUES("49239", "15", "2017-02-23 10:11:09", "157.55.39.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("49240", "10", "2017-02-23 10:11:10", "157.55.39.128", "5");
INSERT INTO `wp_gf_form_view` VALUES("49241", "3", "2017-02-23 11:06:53", "202.46.49.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("49242", "15", "2017-02-23 11:06:54", "202.46.49.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("49243", "10", "2017-02-23 11:06:54", "202.46.49.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("49244", "14", "2017-02-23 11:51:28", "210.120.128.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("49245", "3", "2017-02-23 12:31:09", "207.46.13.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("49246", "15", "2017-02-23 12:31:19", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("49247", "10", "2017-02-23 12:31:19", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("49248", "3", "2017-02-23 13:25:46", "163.172.65.33", "37");
INSERT INTO `wp_gf_form_view` VALUES("49249", "15", "2017-02-23 13:25:48", "163.172.65.33", "6");
INSERT INTO `wp_gf_form_view` VALUES("49250", "10", "2017-02-23 13:25:48", "163.172.65.33", "9");
INSERT INTO `wp_gf_form_view` VALUES("49251", "6", "2017-02-23 13:48:17", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49252", "9", "2017-02-23 13:48:17", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49253", "8", "2017-02-23 13:48:17", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49254", "13", "2017-02-23 13:48:18", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49255", "3", "2017-02-23 14:10:34", "157.55.39.105", "36");
INSERT INTO `wp_gf_form_view` VALUES("49256", "15", "2017-02-23 14:10:39", "157.55.39.105", "6");
INSERT INTO `wp_gf_form_view` VALUES("49257", "10", "2017-02-23 14:10:39", "157.55.39.105", "8");
INSERT INTO `wp_gf_form_view` VALUES("49258", "8", "2017-02-23 14:30:15", "157.55.39.128", "2");
INSERT INTO `wp_gf_form_view` VALUES("49259", "6", "2017-02-23 14:43:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49260", "9", "2017-02-23 14:43:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49261", "13", "2017-02-23 14:43:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49262", "15", "2017-02-23 15:09:58", "108.172.162.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("49263", "3", "2017-02-23 15:10:00", "108.172.162.135", "9");
INSERT INTO `wp_gf_form_view` VALUES("49264", "10", "2017-02-23 15:10:00", "108.172.162.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("49265", "11", "2017-02-23 15:51:39", "202.46.58.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("49266", "3", "2017-02-23 16:17:16", "66.249.79.140", "14");
INSERT INTO `wp_gf_form_view` VALUES("49267", "15", "2017-02-23 16:17:17", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("49268", "10", "2017-02-23 16:17:17", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("49269", "3", "2017-02-23 17:08:08", "184.69.169.154", "44");
INSERT INTO `wp_gf_form_view` VALUES("49270", "3", "2017-02-23 17:08:08", "184.69.169.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("49271", "15", "2017-02-23 17:08:40", "184.69.169.154", "23");
INSERT INTO `wp_gf_form_view` VALUES("49272", "10", "2017-02-23 17:08:40", "184.69.169.154", "17");
INSERT INTO `wp_gf_form_view` VALUES("49273", "10", "2017-02-23 17:08:40", "184.69.169.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("49274", "10", "2017-02-23 17:08:40", "184.69.169.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("49275", "10", "2017-02-23 17:08:40", "184.69.169.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("49276", "8", "2017-02-23 17:23:12", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49277", "13", "2017-02-23 17:23:14", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49278", "10", "2017-02-23 18:04:41", "157.55.39.105", "20");
INSERT INTO `wp_gf_form_view` VALUES("49279", "3", "2017-02-23 18:04:43", "157.55.39.105", "37");
INSERT INTO `wp_gf_form_view` VALUES("49280", "15", "2017-02-23 18:04:43", "157.55.39.105", "22");
INSERT INTO `wp_gf_form_view` VALUES("49281", "12", "2017-02-23 18:05:47", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("49282", "8", "2017-02-23 18:30:03", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("49283", "3", "2017-02-23 19:00:37", "68.180.229.247", "19");
INSERT INTO `wp_gf_form_view` VALUES("49284", "15", "2017-02-23 19:00:37", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("49285", "10", "2017-02-23 19:00:37", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("49286", "13", "2017-02-23 19:38:36", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("49287", "3", "2017-02-23 20:01:30", "207.46.13.48", "27");
INSERT INTO `wp_gf_form_view` VALUES("49288", "8", "2017-02-23 20:01:31", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49289", "10", "2017-02-23 20:01:32", "207.46.13.48", "8");
INSERT INTO `wp_gf_form_view` VALUES("49290", "13", "2017-02-23 20:01:32", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49291", "15", "2017-02-23 20:01:32", "207.46.13.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("49292", "12", "2017-02-23 20:36:30", "202.46.56.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("49293", "3", "2017-02-23 21:20:41", "163.172.66.95", "13");
INSERT INTO `wp_gf_form_view` VALUES("49294", "15", "2017-02-23 21:20:48", "163.172.66.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("49295", "10", "2017-02-23 21:20:48", "163.172.66.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("49296", "10", "2017-02-23 22:10:20", "184.66.50.109", "11");
INSERT INTO `wp_gf_form_view` VALUES("49297", "3", "2017-02-23 22:10:31", "184.66.50.109", "19");
INSERT INTO `wp_gf_form_view` VALUES("49298", "15", "2017-02-23 22:10:31", "184.66.50.109", "9");
INSERT INTO `wp_gf_form_view` VALUES("49299", "10", "2017-02-23 23:01:54", "207.46.13.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("49300", "3", "2017-02-23 23:01:55", "207.46.13.48", "8");
INSERT INTO `wp_gf_form_view` VALUES("49301", "15", "2017-02-23 23:01:55", "207.46.13.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("49302", "3", "2017-02-24 00:00:11", "164.132.161.32", "20");
INSERT INTO `wp_gf_form_view` VALUES("49303", "15", "2017-02-24 00:00:11", "164.132.161.32", "9");
INSERT INTO `wp_gf_form_view` VALUES("49304", "10", "2017-02-24 00:00:12", "164.132.161.32", "11");
INSERT INTO `wp_gf_form_view` VALUES("49305", "3", "2017-02-24 01:05:35", "163.172.66.62", "39");
INSERT INTO `wp_gf_form_view` VALUES("49306", "15", "2017-02-24 01:05:35", "163.172.66.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("49307", "10", "2017-02-24 01:05:35", "163.172.66.62", "11");
INSERT INTO `wp_gf_form_view` VALUES("49308", "6", "2017-02-24 01:59:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49309", "9", "2017-02-24 01:59:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49310", "8", "2017-02-24 01:59:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49311", "13", "2017-02-24 01:59:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49312", "3", "2017-02-24 02:12:59", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("49313", "3", "2017-02-24 03:20:05", "207.46.13.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("49314", "15", "2017-02-24 03:20:09", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("49315", "10", "2017-02-24 03:20:09", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("49316", "3", "2017-02-24 04:04:32", "207.46.13.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("49317", "15", "2017-02-24 04:04:32", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("49318", "10", "2017-02-24 04:04:32", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("49319", "3", "2017-02-24 05:19:21", "157.55.39.105", "9");
INSERT INTO `wp_gf_form_view` VALUES("49320", "15", "2017-02-24 05:53:06", "207.228.78.138", "7");
INSERT INTO `wp_gf_form_view` VALUES("49321", "15", "2017-02-24 05:53:06", "207.228.78.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("49322", "10", "2017-02-24 05:53:35", "207.228.78.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("49323", "10", "2017-02-24 05:53:35", "207.228.78.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("49324", "10", "2017-02-24 05:53:35", "207.228.78.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("49325", "3", "2017-02-24 06:17:50", "207.46.13.48", "8");
INSERT INTO `wp_gf_form_view` VALUES("49326", "14", "2017-02-24 06:33:25", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49327", "15", "2017-02-24 06:33:27", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("49328", "10", "2017-02-24 06:33:27", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("49329", "14", "2017-02-24 07:01:57", "179.43.131.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("49330", "3", "2017-02-24 07:02:30", "179.43.131.197", "17");
INSERT INTO `wp_gf_form_view` VALUES("49331", "15", "2017-02-24 07:02:32", "179.43.131.197", "6");
INSERT INTO `wp_gf_form_view` VALUES("49332", "10", "2017-02-24 07:02:32", "179.43.131.197", "8");
INSERT INTO `wp_gf_form_view` VALUES("49333", "8", "2017-02-24 07:31:16", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("49334", "13", "2017-02-24 07:31:18", "157.55.39.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("49335", "11", "2017-02-24 08:00:10", "77.75.78.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("49336", "3", "2017-02-24 08:05:15", "202.46.49.157", "30");
INSERT INTO `wp_gf_form_view` VALUES("49337", "15", "2017-02-24 08:05:16", "202.46.49.157", "13");
INSERT INTO `wp_gf_form_view` VALUES("49338", "10", "2017-02-24 08:05:16", "202.46.49.157", "12");
INSERT INTO `wp_gf_form_view` VALUES("49339", "2", "2017-02-24 08:24:25", "138.197.96.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("49340", "3", "2017-02-24 09:08:03", "66.249.79.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("49341", "15", "2017-02-24 09:08:03", "66.249.79.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("49342", "10", "2017-02-24 09:08:03", "66.249.79.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("49343", "13", "2017-02-24 09:52:49", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("49344", "3", "2017-02-24 10:01:02", "157.55.39.128", "21");
INSERT INTO `wp_gf_form_view` VALUES("49345", "15", "2017-02-24 10:01:03", "157.55.39.128", "8");
INSERT INTO `wp_gf_form_view` VALUES("49346", "10", "2017-02-24 10:01:03", "157.55.39.128", "9");
INSERT INTO `wp_gf_form_view` VALUES("49347", "3", "2017-02-24 11:07:09", "207.46.13.48", "16");
INSERT INTO `wp_gf_form_view` VALUES("49348", "15", "2017-02-24 11:07:09", "207.46.13.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("49349", "10", "2017-02-24 11:07:09", "207.46.13.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("49350", "14", "2017-02-24 11:58:23", "173.208.146.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("49351", "3", "2017-02-24 12:02:20", "66.249.79.140", "17");
INSERT INTO `wp_gf_form_view` VALUES("49352", "15", "2017-02-24 12:02:20", "66.249.79.140", "7");
INSERT INTO `wp_gf_form_view` VALUES("49353", "10", "2017-02-24 12:02:20", "66.249.79.140", "7");
INSERT INTO `wp_gf_form_view` VALUES("49354", "2", "2017-02-24 12:30:58", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("49355", "14", "2017-02-24 12:32:47", "195.22.127.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("49356", "12", "2017-02-24 12:54:53", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("49357", "3", "2017-02-24 13:04:35", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("49358", "6", "2017-02-24 13:04:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49359", "9", "2017-02-24 13:04:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49360", "8", "2017-02-24 13:04:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49361", "10", "2017-02-24 13:04:37", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("49362", "13", "2017-02-24 13:04:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49363", "15", "2017-02-24 13:04:38", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("49364", "10", "2017-02-24 14:03:11", "157.55.39.105", "7");
INSERT INTO `wp_gf_form_view` VALUES("49365", "3", "2017-02-24 14:03:40", "157.55.39.105", "11");
INSERT INTO `wp_gf_form_view` VALUES("49366", "15", "2017-02-24 14:03:41", "157.55.39.105", "5");
INSERT INTO `wp_gf_form_view` VALUES("49367", "13", "2017-02-24 14:13:53", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("49368", "3", "2017-02-24 15:12:17", "207.46.13.48", "13");
INSERT INTO `wp_gf_form_view` VALUES("49369", "15", "2017-02-24 15:12:17", "207.46.13.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("49370", "10", "2017-02-24 15:12:17", "207.46.13.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("49371", "10", "2017-02-24 16:03:32", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("49372", "3", "2017-02-24 16:03:47", "68.180.229.247", "15");
INSERT INTO `wp_gf_form_view` VALUES("49373", "3", "2017-02-24 16:03:47", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49374", "15", "2017-02-24 16:03:47", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("49375", "10", "2017-02-24 17:01:18", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("49376", "3", "2017-02-24 17:01:37", "207.46.13.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("49377", "15", "2017-02-24 17:01:37", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("49378", "10", "2017-02-24 18:01:01", "184.71.26.18", "13");
INSERT INTO `wp_gf_form_view` VALUES("49379", "3", "2017-02-24 18:01:21", "184.71.26.18", "27");
INSERT INTO `wp_gf_form_view` VALUES("49380", "15", "2017-02-24 18:01:21", "184.71.26.18", "11");
INSERT INTO `wp_gf_form_view` VALUES("49381", "3", "2017-02-24 19:00:36", "163.172.66.94", "9");
INSERT INTO `wp_gf_form_view` VALUES("49382", "15", "2017-02-24 19:01:32", "163.172.66.94", "4");
INSERT INTO `wp_gf_form_view` VALUES("49383", "10", "2017-02-24 19:01:33", "163.172.66.94", "5");
INSERT INTO `wp_gf_form_view` VALUES("49384", "3", "2017-02-24 20:04:45", "40.77.167.83", "5");
INSERT INTO `wp_gf_form_view` VALUES("49385", "15", "2017-02-24 20:05:41", "40.77.167.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("49386", "10", "2017-02-24 20:05:42", "40.77.167.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("49387", "3", "2017-02-24 21:15:49", "163.172.66.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("49388", "3", "2017-02-24 22:30:12", "202.46.48.207", "10");
INSERT INTO `wp_gf_form_view` VALUES("49389", "15", "2017-02-24 22:31:25", "202.46.48.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("49390", "10", "2017-02-24 22:31:28", "202.46.48.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("49391", "14", "2017-02-24 22:50:05", "89.43.115.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("49392", "9", "2017-02-24 22:51:27", "163.172.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("49393", "3", "2017-02-24 23:28:24", "163.172.66.84", "18");
INSERT INTO `wp_gf_form_view` VALUES("49394", "15", "2017-02-24 23:29:12", "163.172.66.84", "9");
INSERT INTO `wp_gf_form_view` VALUES("49395", "10", "2017-02-24 23:29:13", "163.172.66.84", "9");
INSERT INTO `wp_gf_form_view` VALUES("49396", "15", "2017-02-25 00:11:42", "163.172.66.37", "5");
INSERT INTO `wp_gf_form_view` VALUES("49397", "3", "2017-02-25 00:11:48", "163.172.66.37", "32");
INSERT INTO `wp_gf_form_view` VALUES("49398", "10", "2017-02-25 00:11:48", "163.172.66.37", "6");
INSERT INTO `wp_gf_form_view` VALUES("49399", "6", "2017-02-25 00:30:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49400", "9", "2017-02-25 00:30:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49401", "8", "2017-02-25 00:30:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49402", "13", "2017-02-25 00:30:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49403", "3", "2017-02-25 01:12:25", "202.46.56.67", "9");
INSERT INTO `wp_gf_form_view` VALUES("49404", "15", "2017-02-25 01:12:26", "202.46.56.67", "4");
INSERT INTO `wp_gf_form_view` VALUES("49405", "10", "2017-02-25 01:12:26", "202.46.56.67", "5");
INSERT INTO `wp_gf_form_view` VALUES("49406", "3", "2017-02-25 02:15:42", "164.132.161.42", "11");
INSERT INTO `wp_gf_form_view` VALUES("49407", "15", "2017-02-25 02:15:57", "164.132.161.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("49408", "10", "2017-02-25 02:15:57", "164.132.161.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("49409", "13", "2017-02-25 02:33:33", "163.172.65.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("49410", "3", "2017-02-25 03:05:45", "37.187.56.81", "96");
INSERT INTO `wp_gf_form_view` VALUES("49411", "15", "2017-02-25 03:05:46", "37.187.56.81", "43");
INSERT INTO `wp_gf_form_view` VALUES("49412", "10", "2017-02-25 03:05:46", "37.187.56.81", "44");
INSERT INTO `wp_gf_form_view` VALUES("49413", "11", "2017-02-25 03:06:04", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("49414", "2", "2017-02-25 03:06:09", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("49415", "14", "2017-02-25 03:08:10", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("49416", "13", "2017-02-25 03:10:42", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("49417", "10", "2017-02-25 04:05:52", "163.172.65.20", "5");
INSERT INTO `wp_gf_form_view` VALUES("49418", "3", "2017-02-25 04:05:53", "163.172.65.20", "10");
INSERT INTO `wp_gf_form_view` VALUES("49419", "15", "2017-02-25 04:05:53", "163.172.65.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("49420", "14", "2017-02-25 05:23:33", "191.101.116.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("49421", "3", "2017-02-25 05:23:47", "191.101.116.171", "11");
INSERT INTO `wp_gf_form_view` VALUES("49422", "15", "2017-02-25 05:23:47", "191.101.116.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("49423", "10", "2017-02-25 05:23:47", "191.101.116.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("49424", "14", "2017-02-25 06:19:27", "45.45.150.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("49425", "3", "2017-02-25 06:19:29", "45.45.150.173", "7");
INSERT INTO `wp_gf_form_view` VALUES("49426", "15", "2017-02-25 06:19:29", "45.45.150.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("49427", "10", "2017-02-25 06:19:29", "45.45.150.173", "3");
INSERT INTO `wp_gf_form_view` VALUES("49428", "3", "2017-02-25 07:25:05", "69.58.178.57", "12");
INSERT INTO `wp_gf_form_view` VALUES("49429", "15", "2017-02-25 07:25:07", "69.58.178.57", "5");
INSERT INTO `wp_gf_form_view` VALUES("49430", "10", "2017-02-25 07:25:07", "69.58.178.57", "5");
INSERT INTO `wp_gf_form_view` VALUES("49431", "11", "2017-02-25 07:25:25", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("49432", "2", "2017-02-25 07:25:29", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("49433", "3", "2017-02-25 08:02:12", "66.249.79.144", "39");
INSERT INTO `wp_gf_form_view` VALUES("49434", "15", "2017-02-25 08:02:31", "66.249.79.144", "16");
INSERT INTO `wp_gf_form_view` VALUES("49435", "10", "2017-02-25 08:02:32", "66.249.79.144", "16");
INSERT INTO `wp_gf_form_view` VALUES("49436", "11", "2017-02-25 08:27:33", "213.127.54.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("49437", "2", "2017-02-25 08:28:38", "213.127.54.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("49438", "13", "2017-02-25 08:29:40", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("49439", "3", "2017-02-25 09:31:14", "163.172.65.11", "12");
INSERT INTO `wp_gf_form_view` VALUES("49440", "15", "2017-02-25 09:31:39", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49441", "10", "2017-02-25 09:31:39", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49442", "9", "2017-02-25 09:48:51", "202.46.52.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("49443", "3", "2017-02-25 10:08:02", "66.249.79.148", "20");
INSERT INTO `wp_gf_form_view` VALUES("49444", "15", "2017-02-25 10:08:02", "66.249.79.148", "9");
INSERT INTO `wp_gf_form_view` VALUES("49445", "10", "2017-02-25 10:08:02", "66.249.79.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("49446", "3", "2017-02-25 11:05:45", "51.255.65.58", "30");
INSERT INTO `wp_gf_form_view` VALUES("49447", "15", "2017-02-25 11:05:47", "51.255.65.58", "3");
INSERT INTO `wp_gf_form_view` VALUES("49448", "10", "2017-02-25 11:05:47", "51.255.65.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("49449", "6", "2017-02-25 11:22:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49450", "9", "2017-02-25 11:22:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49451", "8", "2017-02-25 11:22:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49452", "13", "2017-02-25 11:22:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49453", "3", "2017-02-25 12:03:07", "202.46.49.146", "12");
INSERT INTO `wp_gf_form_view` VALUES("49454", "15", "2017-02-25 12:03:31", "202.46.49.146", "5");
INSERT INTO `wp_gf_form_view` VALUES("49455", "10", "2017-02-25 12:03:32", "202.46.49.146", "5");
INSERT INTO `wp_gf_form_view` VALUES("49456", "3", "2017-02-25 13:14:41", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49457", "15", "2017-02-25 13:14:45", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("49458", "10", "2017-02-25 13:14:46", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("49459", "3", "2017-02-25 14:12:41", "51.255.65.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("49460", "15", "2017-02-25 14:12:44", "51.255.65.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("49461", "10", "2017-02-25 14:12:45", "51.255.65.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("49462", "10", "2017-02-25 15:25:27", "157.55.39.64", "42");
INSERT INTO `wp_gf_form_view` VALUES("49463", "3", "2017-02-25 15:25:35", "157.55.39.64", "90");
INSERT INTO `wp_gf_form_view` VALUES("49464", "15", "2017-02-25 15:25:36", "157.55.39.64", "37");
INSERT INTO `wp_gf_form_view` VALUES("49465", "9", "2017-02-25 15:26:00", "157.55.39.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("49466", "3", "2017-02-25 16:03:05", "202.46.50.164", "19");
INSERT INTO `wp_gf_form_view` VALUES("49467", "15", "2017-02-25 16:03:05", "202.46.50.164", "8");
INSERT INTO `wp_gf_form_view` VALUES("49468", "10", "2017-02-25 16:03:05", "202.46.50.164", "8");
INSERT INTO `wp_gf_form_view` VALUES("49469", "11", "2017-02-25 16:23:53", "138.197.73.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("49470", "2", "2017-02-25 16:23:54", "138.197.73.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("49471", "3", "2017-02-25 17:10:35", "66.249.79.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("49472", "15", "2017-02-25 17:10:47", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("49473", "10", "2017-02-25 17:10:47", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49474", "3", "2017-02-25 18:14:03", "40.77.167.116", "9");
INSERT INTO `wp_gf_form_view` VALUES("49475", "15", "2017-02-25 18:14:03", "40.77.167.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("49476", "10", "2017-02-25 18:14:04", "40.77.167.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("49477", "6", "2017-02-25 19:26:19", "202.46.52.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("49478", "3", "2017-02-25 19:26:24", "202.46.52.119", "5");
INSERT INTO `wp_gf_form_view` VALUES("49479", "15", "2017-02-25 19:26:25", "202.46.52.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("49480", "10", "2017-02-25 19:26:25", "202.46.52.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("49481", "10", "2017-02-25 20:17:44", "199.58.86.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("49482", "3", "2017-02-25 20:17:48", "199.58.86.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("49483", "15", "2017-02-25 20:17:48", "199.58.86.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("49484", "14", "2017-02-25 21:04:22", "173.208.146.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("49485", "3", "2017-02-25 21:04:28", "173.208.146.202", "13");
INSERT INTO `wp_gf_form_view` VALUES("49486", "15", "2017-02-25 21:04:29", "173.208.146.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("49487", "10", "2017-02-25 21:04:29", "173.208.146.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("49488", "2", "2017-02-25 21:44:01", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("49489", "3", "2017-02-25 22:03:24", "202.46.51.114", "34");
INSERT INTO `wp_gf_form_view` VALUES("49490", "15", "2017-02-25 22:03:24", "202.46.51.114", "5");
INSERT INTO `wp_gf_form_view` VALUES("49491", "10", "2017-02-25 22:03:24", "202.46.51.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("49492", "6", "2017-02-25 22:23:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49493", "9", "2017-02-25 22:23:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49494", "8", "2017-02-25 22:23:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49495", "13", "2017-02-25 22:23:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49496", "10", "2017-02-25 23:05:55", "77.75.78.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("49497", "3", "2017-02-25 23:05:56", "77.75.78.162", "12");
INSERT INTO `wp_gf_form_view` VALUES("49498", "15", "2017-02-25 23:05:56", "77.75.78.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("49499", "14", "2017-02-25 23:48:52", "184.66.17.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("49500", "3", "2017-02-26 00:14:15", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49501", "15", "2017-02-26 00:14:15", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("49502", "10", "2017-02-26 00:14:15", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("49503", "3", "2017-02-26 01:31:21", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("49504", "15", "2017-02-26 01:31:22", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("49505", "10", "2017-02-26 01:31:22", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("49506", "6", "2017-02-26 01:39:06", "163.172.64.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("49507", "3", "2017-02-26 02:00:27", "77.75.76.164", "7");
INSERT INTO `wp_gf_form_view` VALUES("49508", "15", "2017-02-26 02:00:27", "77.75.76.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("49509", "10", "2017-02-26 02:00:27", "77.75.76.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("49510", "3", "2017-02-26 03:04:47", "202.46.56.111", "12");
INSERT INTO `wp_gf_form_view` VALUES("49511", "15", "2017-02-26 03:04:48", "202.46.56.111", "5");
INSERT INTO `wp_gf_form_view` VALUES("49512", "10", "2017-02-26 03:04:48", "202.46.56.111", "5");
INSERT INTO `wp_gf_form_view` VALUES("49513", "14", "2017-02-26 03:45:58", "177.7.193.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("49514", "3", "2017-02-26 04:12:49", "202.46.48.195", "15");
INSERT INTO `wp_gf_form_view` VALUES("49515", "15", "2017-02-26 04:12:50", "202.46.48.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("49516", "10", "2017-02-26 04:12:50", "202.46.48.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("49517", "3", "2017-02-26 05:06:05", "77.75.79.101", "19");
INSERT INTO `wp_gf_form_view` VALUES("49518", "15", "2017-02-26 05:06:06", "77.75.79.101", "7");
INSERT INTO `wp_gf_form_view` VALUES("49519", "10", "2017-02-26 05:06:06", "77.75.79.101", "8");
INSERT INTO `wp_gf_form_view` VALUES("49520", "3", "2017-02-26 06:13:23", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("49521", "15", "2017-02-26 06:13:24", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("49522", "10", "2017-02-26 06:13:24", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("49523", "11", "2017-02-26 06:36:39", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49524", "3", "2017-02-26 07:21:55", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("49525", "15", "2017-02-26 07:21:58", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("49526", "10", "2017-02-26 07:21:58", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("49527", "10", "2017-02-26 08:02:01", "5.9.80.133", "5");
INSERT INTO `wp_gf_form_view` VALUES("49528", "3", "2017-02-26 08:09:32", "163.172.66.54", "5");
INSERT INTO `wp_gf_form_view` VALUES("49529", "15", "2017-02-26 08:09:33", "163.172.66.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("49530", "3", "2017-02-26 09:32:04", "66.249.79.144", "31");
INSERT INTO `wp_gf_form_view` VALUES("49531", "15", "2017-02-26 09:32:08", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("49532", "10", "2017-02-26 09:32:08", "66.249.79.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("49533", "6", "2017-02-26 09:44:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49534", "9", "2017-02-26 09:44:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49535", "8", "2017-02-26 09:44:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49536", "13", "2017-02-26 09:44:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49537", "3", "2017-02-26 10:37:55", "66.249.79.144", "9");
INSERT INTO `wp_gf_form_view` VALUES("49538", "15", "2017-02-26 10:37:58", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49539", "10", "2017-02-26 10:37:58", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49540", "14", "2017-02-26 11:34:39", "202.46.50.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("49541", "3", "2017-02-26 11:34:48", "202.46.50.181", "7");
INSERT INTO `wp_gf_form_view` VALUES("49542", "15", "2017-02-26 11:34:48", "202.46.50.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("49543", "10", "2017-02-26 11:34:48", "202.46.50.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("49544", "3", "2017-02-26 12:07:39", "66.249.79.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("49545", "15", "2017-02-26 12:07:41", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("49546", "10", "2017-02-26 12:07:41", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("49547", "3", "2017-02-26 13:02:41", "66.249.79.140", "13");
INSERT INTO `wp_gf_form_view` VALUES("49548", "15", "2017-02-26 13:02:43", "66.249.79.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("49549", "10", "2017-02-26 13:02:43", "66.249.79.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("49550", "3", "2017-02-26 14:16:04", "66.249.79.140", "5");
INSERT INTO `wp_gf_form_view` VALUES("49551", "15", "2017-02-26 14:16:09", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49552", "10", "2017-02-26 14:16:09", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("49553", "3", "2017-02-26 15:04:38", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("49554", "15", "2017-02-26 15:12:32", "192.254.152.35", "5");
INSERT INTO `wp_gf_form_view` VALUES("49555", "10", "2017-02-26 15:12:32", "192.254.152.35", "5");
INSERT INTO `wp_gf_form_view` VALUES("49556", "3", "2017-02-26 16:09:54", "66.249.79.144", "13");
INSERT INTO `wp_gf_form_view` VALUES("49557", "15", "2017-02-26 16:09:55", "66.249.79.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("49558", "10", "2017-02-26 16:09:55", "66.249.79.144", "7");
INSERT INTO `wp_gf_form_view` VALUES("49559", "11", "2017-02-26 16:30:58", "164.132.161.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("49560", "13", "2017-02-26 16:35:59", "202.46.51.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("49561", "14", "2017-02-26 17:09:28", "202.46.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("49562", "3", "2017-02-26 17:09:32", "202.46.53.114", "9");
INSERT INTO `wp_gf_form_view` VALUES("49563", "15", "2017-02-26 17:09:32", "202.46.53.114", "6");
INSERT INTO `wp_gf_form_view` VALUES("49564", "10", "2017-02-26 17:09:32", "202.46.53.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("49565", "3", "2017-02-26 18:16:32", "202.46.53.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("49566", "15", "2017-02-26 18:16:36", "202.46.53.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("49567", "10", "2017-02-26 18:16:36", "202.46.53.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("49568", "3", "2017-02-26 19:10:34", "164.132.161.47", "8");
INSERT INTO `wp_gf_form_view` VALUES("49569", "15", "2017-02-26 19:10:35", "164.132.161.47", "2");
INSERT INTO `wp_gf_form_view` VALUES("49570", "10", "2017-02-26 19:10:35", "164.132.161.47", "2");
INSERT INTO `wp_gf_form_view` VALUES("49571", "3", "2017-02-26 20:26:26", "163.172.65.107", "39");
INSERT INTO `wp_gf_form_view` VALUES("49572", "15", "2017-02-26 20:26:28", "163.172.65.107", "7");
INSERT INTO `wp_gf_form_view` VALUES("49573", "10", "2017-02-26 20:26:28", "163.172.65.107", "9");
INSERT INTO `wp_gf_form_view` VALUES("49574", "6", "2017-02-26 20:51:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49575", "9", "2017-02-26 20:51:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49576", "8", "2017-02-26 20:51:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49577", "13", "2017-02-26 20:51:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49578", "10", "2017-02-26 21:00:32", "66.249.79.144", "7");
INSERT INTO `wp_gf_form_view` VALUES("49579", "3", "2017-02-26 21:00:32", "66.249.79.144", "12");
INSERT INTO `wp_gf_form_view` VALUES("49580", "15", "2017-02-26 21:00:32", "66.249.79.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("49581", "2", "2017-02-26 21:45:22", "173.212.216.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("49582", "3", "2017-02-26 22:03:28", "68.180.229.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("49583", "15", "2017-02-26 22:03:32", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("49584", "10", "2017-02-26 22:03:32", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("49585", "5", "2017-02-26 22:03:46", "163.172.65.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("49586", "3", "2017-02-26 23:20:44", "202.46.57.177", "17");
INSERT INTO `wp_gf_form_view` VALUES("49587", "15", "2017-02-26 23:20:46", "202.46.57.177", "9");
INSERT INTO `wp_gf_form_view` VALUES("49588", "10", "2017-02-26 23:20:46", "202.46.57.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("49589", "14", "2017-02-26 23:47:49", "185.141.165.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("49590", "13", "2017-02-27 00:11:10", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49591", "3", "2017-02-27 00:11:10", "66.249.79.140", "7");
INSERT INTO `wp_gf_form_view` VALUES("49592", "15", "2017-02-27 00:11:11", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("49593", "10", "2017-02-27 00:11:11", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("49594", "3", "2017-02-27 01:04:11", "66.249.79.140", "34");
INSERT INTO `wp_gf_form_view` VALUES("49595", "6", "2017-02-27 01:04:12", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49596", "9", "2017-02-27 01:04:13", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49597", "8", "2017-02-27 01:04:13", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49598", "10", "2017-02-27 01:04:13", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("49599", "13", "2017-02-27 01:04:13", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49600", "15", "2017-02-27 01:04:14", "66.249.79.140", "5");
INSERT INTO `wp_gf_form_view` VALUES("49601", "3", "2017-02-27 02:15:36", "23.16.35.134", "14");
INSERT INTO `wp_gf_form_view` VALUES("49602", "15", "2017-02-27 02:15:37", "23.16.35.134", "6");
INSERT INTO `wp_gf_form_view` VALUES("49603", "10", "2017-02-27 02:15:37", "23.16.35.134", "6");
INSERT INTO `wp_gf_form_view` VALUES("49604", "3", "2017-02-27 03:48:10", "202.46.52.178", "3");
INSERT INTO `wp_gf_form_view` VALUES("49605", "15", "2017-02-27 03:48:14", "202.46.52.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("49606", "10", "2017-02-27 03:48:14", "202.46.52.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("49607", "3", "2017-02-27 04:02:32", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("49608", "15", "2017-02-27 04:02:32", "66.249.79.144", "5");
INSERT INTO `wp_gf_form_view` VALUES("49609", "10", "2017-02-27 04:02:32", "66.249.79.144", "5");
INSERT INTO `wp_gf_form_view` VALUES("49610", "3", "2017-02-27 05:06:31", "202.46.50.93", "11");
INSERT INTO `wp_gf_form_view` VALUES("49611", "15", "2017-02-27 05:06:34", "202.46.50.93", "5");
INSERT INTO `wp_gf_form_view` VALUES("49612", "10", "2017-02-27 05:06:34", "202.46.50.93", "6");
INSERT INTO `wp_gf_form_view` VALUES("49613", "3", "2017-02-27 06:28:57", "108.180.145.5", "13");
INSERT INTO `wp_gf_form_view` VALUES("49614", "15", "2017-02-27 06:28:59", "108.180.145.5", "5");
INSERT INTO `wp_gf_form_view` VALUES("49615", "10", "2017-02-27 06:28:59", "108.180.145.5", "5");
INSERT INTO `wp_gf_form_view` VALUES("49616", "3", "2017-02-27 07:20:32", "202.46.52.61", "8");
INSERT INTO `wp_gf_form_view` VALUES("49617", "15", "2017-02-27 07:20:42", "202.46.52.61", "3");
INSERT INTO `wp_gf_form_view` VALUES("49618", "10", "2017-02-27 07:20:42", "202.46.52.61", "3");
INSERT INTO `wp_gf_form_view` VALUES("49619", "10", "2017-02-27 08:02:40", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("49620", "3", "2017-02-27 08:02:40", "66.249.79.148", "29");
INSERT INTO `wp_gf_form_view` VALUES("49621", "15", "2017-02-27 08:02:40", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("49622", "6", "2017-02-27 08:15:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49623", "9", "2017-02-27 08:15:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49624", "8", "2017-02-27 08:15:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49625", "13", "2017-02-27 08:15:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49626", "3", "2017-02-27 09:07:07", "66.249.79.144", "23");
INSERT INTO `wp_gf_form_view` VALUES("49627", "15", "2017-02-27 09:07:09", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("49628", "10", "2017-02-27 09:07:09", "66.249.79.144", "14");
INSERT INTO `wp_gf_form_view` VALUES("49629", "3", "2017-02-27 10:23:38", "163.172.66.80", "80");
INSERT INTO `wp_gf_form_view` VALUES("49630", "15", "2017-02-27 10:23:40", "163.172.66.80", "33");
INSERT INTO `wp_gf_form_view` VALUES("49631", "10", "2017-02-27 10:23:40", "163.172.66.80", "37");
INSERT INTO `wp_gf_form_view` VALUES("49632", "6", "2017-02-27 10:40:08", "40.77.167.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("49633", "5", "2017-02-27 10:40:16", "40.77.167.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("49634", "3", "2017-02-27 11:12:41", "163.172.65.43", "12");
INSERT INTO `wp_gf_form_view` VALUES("49635", "15", "2017-02-27 11:12:43", "163.172.65.43", "5");
INSERT INTO `wp_gf_form_view` VALUES("49636", "10", "2017-02-27 11:12:43", "163.172.65.43", "5");
INSERT INTO `wp_gf_form_view` VALUES("49637", "3", "2017-02-27 12:54:35", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("49638", "15", "2017-02-27 12:54:37", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49639", "10", "2017-02-27 12:54:37", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49640", "3", "2017-02-27 13:39:41", "104.160.10.18", "3");
INSERT INTO `wp_gf_form_view` VALUES("49641", "14", "2017-02-27 13:48:46", "191.101.116.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("49642", "15", "2017-02-27 13:48:48", "191.101.116.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("49643", "10", "2017-02-27 13:48:48", "191.101.116.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("49644", "3", "2017-02-27 14:11:07", "40.77.167.83", "62");
INSERT INTO `wp_gf_form_view` VALUES("49645", "15", "2017-02-27 14:11:09", "40.77.167.83", "25");
INSERT INTO `wp_gf_form_view` VALUES("49646", "10", "2017-02-27 14:11:09", "40.77.167.83", "27");
INSERT INTO `wp_gf_form_view` VALUES("49647", "9", "2017-02-27 14:58:00", "157.55.39.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("49648", "10", "2017-02-27 15:09:30", "66.249.79.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("49649", "3", "2017-02-27 15:09:30", "66.249.79.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("49650", "15", "2017-02-27 15:09:30", "66.249.79.140", "5");
INSERT INTO `wp_gf_form_view` VALUES("49651", "13", "2017-02-27 15:29:05", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("49652", "2", "2017-02-27 15:48:01", "173.212.216.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("49653", "3", "2017-02-27 16:13:12", "77.75.78.171", "4");
INSERT INTO `wp_gf_form_view` VALUES("49654", "15", "2017-02-27 16:13:16", "77.75.78.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("49655", "10", "2017-02-27 16:13:16", "77.75.78.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("49656", "13", "2017-02-27 16:49:09", "164.132.161.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("49657", "3", "2017-02-27 17:23:50", "77.75.78.162", "13");
INSERT INTO `wp_gf_form_view` VALUES("49658", "15", "2017-02-27 17:23:52", "77.75.78.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("49659", "10", "2017-02-27 17:23:52", "77.75.78.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("49660", "14", "2017-02-27 17:38:58", "24.108.171.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("49661", "10", "2017-02-27 18:22:27", "164.132.161.96", "6");
INSERT INTO `wp_gf_form_view` VALUES("49662", "3", "2017-02-27 18:22:29", "164.132.161.96", "8");
INSERT INTO `wp_gf_form_view` VALUES("49663", "15", "2017-02-27 18:22:29", "164.132.161.96", "4");
INSERT INTO `wp_gf_form_view` VALUES("49664", "3", "2017-02-27 19:15:44", "202.46.57.122", "37");
INSERT INTO `wp_gf_form_view` VALUES("49665", "15", "2017-02-27 19:15:45", "202.46.57.122", "6");
INSERT INTO `wp_gf_form_view` VALUES("49666", "10", "2017-02-27 19:15:45", "202.46.57.122", "8");
INSERT INTO `wp_gf_form_view` VALUES("49667", "6", "2017-02-27 19:49:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49668", "9", "2017-02-27 19:49:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49669", "8", "2017-02-27 19:49:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49670", "13", "2017-02-27 19:49:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49671", "3", "2017-02-27 20:54:23", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("49672", "15", "2017-02-27 20:54:42", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("49673", "10", "2017-02-27 20:54:42", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("49674", "14", "2017-02-27 21:02:44", "202.46.48.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("49675", "3", "2017-02-27 21:02:58", "202.46.48.193", "6");
INSERT INTO `wp_gf_form_view` VALUES("49676", "15", "2017-02-27 21:02:59", "202.46.48.193", "3");
INSERT INTO `wp_gf_form_view` VALUES("49677", "10", "2017-02-27 21:02:59", "202.46.48.193", "4");
INSERT INTO `wp_gf_form_view` VALUES("49678", "2", "2017-02-27 21:26:48", "202.46.57.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("49679", "9", "2017-02-27 21:51:12", "202.46.53.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("49680", "3", "2017-02-27 22:24:08", "70.66.187.147", "16");
INSERT INTO `wp_gf_form_view` VALUES("49681", "15", "2017-02-27 22:24:21", "70.66.187.147", "8");
INSERT INTO `wp_gf_form_view` VALUES("49682", "10", "2017-02-27 22:24:22", "70.66.187.147", "8");
INSERT INTO `wp_gf_form_view` VALUES("49683", "14", "2017-02-27 22:39:23", "202.29.178.234", "3");
INSERT INTO `wp_gf_form_view` VALUES("49684", "3", "2017-02-27 23:34:14", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("49685", "15", "2017-02-27 23:34:26", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49686", "10", "2017-02-27 23:34:27", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49687", "3", "2017-02-28 01:17:01", "64.141.44.235", "6");
INSERT INTO `wp_gf_form_view` VALUES("49688", "15", "2017-02-28 01:17:09", "64.141.44.235", "3");
INSERT INTO `wp_gf_form_view` VALUES("49689", "10", "2017-02-28 01:17:09", "64.141.44.235", "3");
INSERT INTO `wp_gf_form_view` VALUES("49690", "3", "2017-02-28 02:29:20", "202.46.50.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("49691", "15", "2017-02-28 02:29:21", "202.46.50.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("49692", "10", "2017-02-28 02:29:21", "202.46.50.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("49693", "3", "2017-02-28 03:08:11", "204.13.201.137", "28");
INSERT INTO `wp_gf_form_view` VALUES("49694", "3", "2017-02-28 03:08:11", "107.178.194.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("49695", "15", "2017-02-28 03:08:12", "107.178.194.74", "12");
INSERT INTO `wp_gf_form_view` VALUES("49696", "15", "2017-02-28 03:08:12", "204.13.201.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("49697", "10", "2017-02-28 03:08:12", "204.13.201.137", "12");
INSERT INTO `wp_gf_form_view` VALUES("49698", "10", "2017-02-28 03:08:12", "107.178.194.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("49699", "14", "2017-02-28 03:23:10", "158.222.6.215", "4");
INSERT INTO `wp_gf_form_view` VALUES("49700", "3", "2017-02-28 04:01:22", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("49701", "15", "2017-02-28 04:01:30", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("49702", "10", "2017-02-28 04:01:30", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("49703", "14", "2017-02-28 05:07:45", "62.210.111.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("49704", "3", "2017-02-28 05:07:49", "62.210.111.55", "15");
INSERT INTO `wp_gf_form_view` VALUES("49705", "15", "2017-02-28 05:07:50", "62.210.111.55", "7");
INSERT INTO `wp_gf_form_view` VALUES("49706", "10", "2017-02-28 05:07:50", "62.210.111.55", "7");
INSERT INTO `wp_gf_form_view` VALUES("49707", "3", "2017-02-28 06:26:33", "157.55.39.94", "8");
INSERT INTO `wp_gf_form_view` VALUES("49708", "15", "2017-02-28 06:26:34", "157.55.39.94", "4");
INSERT INTO `wp_gf_form_view` VALUES("49709", "10", "2017-02-28 06:26:34", "157.55.39.94", "5");
INSERT INTO `wp_gf_form_view` VALUES("49710", "14", "2017-02-28 06:48:04", "62.210.111.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("49711", "3", "2017-02-28 07:15:29", "202.46.54.36", "29");
INSERT INTO `wp_gf_form_view` VALUES("49712", "15", "2017-02-28 07:15:32", "202.46.54.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("49713", "10", "2017-02-28 07:15:33", "202.46.54.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("49714", "6", "2017-02-28 07:18:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49715", "9", "2017-02-28 07:18:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49716", "8", "2017-02-28 07:18:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49717", "13", "2017-02-28 07:18:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49718", "3", "2017-02-28 08:00:31", "66.249.79.148", "19");
INSERT INTO `wp_gf_form_view` VALUES("49719", "15", "2017-02-28 08:00:31", "66.249.79.148", "9");
INSERT INTO `wp_gf_form_view` VALUES("49720", "10", "2017-02-28 08:00:31", "66.249.79.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("49721", "14", "2017-02-28 08:02:28", "188.208.0.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("49722", "3", "2017-02-28 09:00:29", "66.249.79.148", "14");
INSERT INTO `wp_gf_form_view` VALUES("49723", "15", "2017-02-28 09:00:29", "66.249.79.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("49724", "10", "2017-02-28 09:00:29", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("49725", "13", "2017-02-28 09:15:27", "202.46.57.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("49726", "12", "2017-02-28 09:40:47", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49727", "3", "2017-02-28 10:03:39", "202.46.52.149", "12");
INSERT INTO `wp_gf_form_view` VALUES("49728", "15", "2017-02-28 10:03:42", "202.46.52.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("49729", "10", "2017-02-28 10:03:42", "202.46.52.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("49730", "3", "2017-02-28 11:10:36", "163.172.64.241", "25");
INSERT INTO `wp_gf_form_view` VALUES("49731", "15", "2017-02-28 11:10:39", "163.172.64.241", "10");
INSERT INTO `wp_gf_form_view` VALUES("49732", "10", "2017-02-28 11:10:39", "163.172.64.241", "10");
INSERT INTO `wp_gf_form_view` VALUES("49733", "11", "2017-02-28 11:11:24", "108.175.2.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49734", "2", "2017-02-28 11:13:17", "108.175.2.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49735", "10", "2017-02-28 12:20:41", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49736", "3", "2017-02-28 12:20:44", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49737", "15", "2017-02-28 12:20:45", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49738", "3", "2017-02-28 14:56:23", "202.46.49.193", "2");
INSERT INTO `wp_gf_form_view` VALUES("49739", "15", "2017-02-28 14:56:24", "202.46.49.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("49740", "10", "2017-02-28 14:56:25", "202.46.49.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("49741", "3", "2017-02-28 15:09:24", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("49742", "15", "2017-02-28 15:09:24", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("49743", "10", "2017-02-28 15:09:24", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("49744", "3", "2017-02-28 16:10:11", "66.249.79.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("49745", "15", "2017-02-28 16:10:13", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49746", "10", "2017-02-28 16:10:13", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("49747", "14", "2017-02-28 16:18:36", "191.101.116.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("49748", "14", "2017-02-28 17:11:18", "64.114.197.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("49749", "3", "2017-02-28 17:11:24", "64.114.197.158", "5");
INSERT INTO `wp_gf_form_view` VALUES("49750", "15", "2017-02-28 17:11:24", "64.114.197.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("49751", "10", "2017-02-28 17:11:24", "64.114.197.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("49752", "3", "2017-02-28 18:04:32", "66.249.79.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("49753", "15", "2017-02-28 18:04:35", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("49754", "10", "2017-02-28 18:04:35", "66.249.79.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("49755", "6", "2017-02-28 18:55:36", "163.172.65.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("49756", "9", "2017-02-28 18:55:38", "163.172.65.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("49757", "8", "2017-02-28 18:55:39", "163.172.65.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("49758", "13", "2017-02-28 18:55:41", "163.172.65.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("49759", "3", "2017-02-28 19:04:18", "208.43.225.85", "66");
INSERT INTO `wp_gf_form_view` VALUES("49760", "15", "2017-02-28 19:04:20", "208.43.225.85", "20");
INSERT INTO `wp_gf_form_view` VALUES("49761", "10", "2017-02-28 19:04:20", "208.43.225.85", "23");
INSERT INTO `wp_gf_form_view` VALUES("49762", "11", "2017-02-28 19:05:15", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("49763", "6", "2017-02-28 19:13:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49764", "9", "2017-02-28 19:13:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49765", "8", "2017-02-28 19:13:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49766", "13", "2017-02-28 19:13:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49767", "10", "2017-02-28 20:22:48", "184.71.31.164", "9");
INSERT INTO `wp_gf_form_view` VALUES("49768", "10", "2017-02-28 20:22:48", "184.71.31.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("49769", "3", "2017-02-28 20:22:52", "184.71.31.164", "11");
INSERT INTO `wp_gf_form_view` VALUES("49770", "3", "2017-02-28 20:22:52", "184.71.31.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("49771", "15", "2017-02-28 20:22:52", "184.71.31.164", "5");
INSERT INTO `wp_gf_form_view` VALUES("49772", "15", "2017-02-28 20:22:52", "184.71.31.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("49773", "3", "2017-02-28 21:05:27", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("49774", "15", "2017-02-28 21:05:36", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("49775", "10", "2017-02-28 21:05:36", "66.249.79.140", "5");
INSERT INTO `wp_gf_form_view` VALUES("49776", "14", "2017-02-28 21:08:05", "154.20.197.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("49777", "3", "2017-02-28 22:02:28", "163.172.66.45", "14");
INSERT INTO `wp_gf_form_view` VALUES("49778", "15", "2017-02-28 22:02:29", "163.172.66.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("49779", "10", "2017-02-28 22:02:29", "163.172.66.45", "7");
INSERT INTO `wp_gf_form_view` VALUES("49780", "13", "2017-02-28 22:09:02", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("49781", "15", "2017-02-28 23:00:45", "184.69.163.74", "8");
INSERT INTO `wp_gf_form_view` VALUES("49782", "3", "2017-02-28 23:00:47", "184.69.163.74", "15");
INSERT INTO `wp_gf_form_view` VALUES("49783", "10", "2017-02-28 23:00:48", "184.69.163.74", "6");
INSERT INTO `wp_gf_form_view` VALUES("49784", "3", "2017-03-01 00:05:17", "202.46.50.95", "15");
INSERT INTO `wp_gf_form_view` VALUES("49785", "15", "2017-03-01 00:05:26", "202.46.50.95", "7");
INSERT INTO `wp_gf_form_view` VALUES("49786", "10", "2017-03-01 00:05:26", "202.46.50.95", "8");
INSERT INTO `wp_gf_form_view` VALUES("49787", "3", "2017-03-01 01:20:33", "77.75.78.172", "11");
INSERT INTO `wp_gf_form_view` VALUES("49788", "15", "2017-03-01 01:20:35", "77.75.78.172", "5");
INSERT INTO `wp_gf_form_view` VALUES("49789", "10", "2017-03-01 01:20:35", "77.75.78.172", "5");
INSERT INTO `wp_gf_form_view` VALUES("49790", "14", "2017-03-01 01:46:34", "46.246.36.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("49791", "3", "2017-03-01 02:30:02", "68.180.229.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("49792", "15", "2017-03-01 02:30:05", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("49793", "10", "2017-03-01 02:30:05", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("49794", "3", "2017-03-01 03:00:25", "66.249.79.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("49795", "15", "2017-03-01 03:00:25", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("49796", "10", "2017-03-01 03:00:25", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("49797", "3", "2017-03-01 04:20:37", "163.172.65.110", "13");
INSERT INTO `wp_gf_form_view` VALUES("49798", "15", "2017-03-01 04:20:40", "163.172.65.110", "6");
INSERT INTO `wp_gf_form_view` VALUES("49799", "10", "2017-03-01 04:20:41", "163.172.65.110", "6");
INSERT INTO `wp_gf_form_view` VALUES("49800", "3", "2017-03-01 05:51:42", "202.46.53.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("49801", "15", "2017-03-01 05:51:43", "202.46.53.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("49802", "10", "2017-03-01 05:51:43", "202.46.53.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("49803", "10", "2017-03-01 06:22:32", "96.50.21.43", "8");
INSERT INTO `wp_gf_form_view` VALUES("49804", "3", "2017-03-01 06:22:37", "96.50.21.43", "15");
INSERT INTO `wp_gf_form_view` VALUES("49805", "15", "2017-03-01 06:22:37", "96.50.21.43", "7");
INSERT INTO `wp_gf_form_view` VALUES("49806", "11", "2017-03-01 07:03:17", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49807", "15", "2017-03-01 07:06:15", "108.180.196.94", "4");
INSERT INTO `wp_gf_form_view` VALUES("49808", "3", "2017-03-01 07:06:18", "108.180.196.94", "29");
INSERT INTO `wp_gf_form_view` VALUES("49809", "10", "2017-03-01 07:06:18", "108.180.196.94", "5");
INSERT INTO `wp_gf_form_view` VALUES("49810", "6", "2017-03-01 07:12:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49811", "9", "2017-03-01 07:12:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49812", "8", "2017-03-01 07:12:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49813", "13", "2017-03-01 07:12:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49814", "3", "2017-03-01 08:04:03", "66.249.79.140", "5");
INSERT INTO `wp_gf_form_view` VALUES("49815", "15", "2017-03-01 08:04:04", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49816", "10", "2017-03-01 08:04:04", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("49817", "3", "2017-03-01 09:03:46", "164.132.161.79", "6");
INSERT INTO `wp_gf_form_view` VALUES("49818", "15", "2017-03-01 09:03:58", "164.132.161.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("49819", "10", "2017-03-01 09:03:58", "164.132.161.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("49820", "12", "2017-03-01 09:34:53", "202.46.53.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("49821", "3", "2017-03-01 10:32:12", "202.46.55.137", "4");
INSERT INTO `wp_gf_form_view` VALUES("49822", "15", "2017-03-01 10:32:13", "202.46.55.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("49823", "10", "2017-03-01 10:32:13", "202.46.55.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("49824", "3", "2017-03-01 11:20:48", "5.10.105.47", "6");
INSERT INTO `wp_gf_form_view` VALUES("49825", "15", "2017-03-01 11:20:53", "5.10.105.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("49826", "10", "2017-03-01 11:20:53", "5.10.105.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("49827", "3", "2017-03-01 12:06:25", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("49828", "15", "2017-03-01 12:06:29", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("49829", "10", "2017-03-01 12:06:29", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("49830", "5", "2017-03-01 12:10:53", "77.75.79.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("49831", "8", "2017-03-01 12:18:40", "163.172.66.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("49832", "3", "2017-03-01 13:25:42", "202.46.53.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("49833", "15", "2017-03-01 13:25:45", "202.46.53.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("49834", "10", "2017-03-01 13:25:45", "202.46.53.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("49835", "6", "2017-03-01 14:12:58", "202.46.53.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("49836", "3", "2017-03-01 14:13:00", "202.46.53.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("49837", "15", "2017-03-01 14:13:00", "202.46.53.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("49838", "10", "2017-03-01 14:13:00", "202.46.53.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("49839", "3", "2017-03-01 15:09:34", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("49840", "15", "2017-03-01 15:41:22", "202.46.50.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("49841", "10", "2017-03-01 15:41:22", "202.46.50.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("49842", "14", "2017-03-01 16:01:34", "195.22.127.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("49843", "3", "2017-03-01 16:01:39", "195.22.127.214", "6");
INSERT INTO `wp_gf_form_view` VALUES("49844", "15", "2017-03-01 16:01:39", "195.22.127.214", "3");
INSERT INTO `wp_gf_form_view` VALUES("49845", "10", "2017-03-01 16:01:39", "195.22.127.214", "3");
INSERT INTO `wp_gf_form_view` VALUES("49846", "3", "2017-03-01 18:03:16", "192.119.14.83", "11");
INSERT INTO `wp_gf_form_view` VALUES("49847", "15", "2017-03-01 18:16:38", "184.66.240.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("49848", "10", "2017-03-01 18:16:38", "184.66.240.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("49849", "3", "2017-03-01 19:15:46", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("49850", "6", "2017-03-01 19:15:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49851", "9", "2017-03-01 19:15:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49852", "8", "2017-03-01 19:15:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49853", "10", "2017-03-01 19:15:49", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("49854", "13", "2017-03-01 19:15:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49855", "15", "2017-03-01 19:15:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("49856", "3", "2017-03-01 20:07:26", "163.172.64.223", "6");
INSERT INTO `wp_gf_form_view` VALUES("49857", "15", "2017-03-01 20:07:26", "163.172.64.223", "3");
INSERT INTO `wp_gf_form_view` VALUES("49858", "10", "2017-03-01 20:07:26", "163.172.64.223", "3");
INSERT INTO `wp_gf_form_view` VALUES("49859", "14", "2017-03-01 21:03:04", "51.255.65.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("49860", "3", "2017-03-01 21:03:04", "51.255.65.42", "24");
INSERT INTO `wp_gf_form_view` VALUES("49861", "15", "2017-03-01 21:03:04", "51.255.65.42", "12");
INSERT INTO `wp_gf_form_view` VALUES("49862", "10", "2017-03-01 21:03:04", "51.255.65.42", "8");
INSERT INTO `wp_gf_form_view` VALUES("49863", "3", "2017-03-01 22:16:04", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("49864", "15", "2017-03-01 22:16:06", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("49865", "10", "2017-03-01 22:16:06", "66.249.79.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("49866", "6", "2017-03-01 22:24:54", "202.46.48.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("49867", "11", "2017-03-01 23:11:43", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("49868", "3", "2017-03-01 23:26:10", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("49869", "15", "2017-03-01 23:26:10", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("49870", "10", "2017-03-01 23:26:10", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("49871", "3", "2017-03-02 00:40:36", "66.249.79.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("49872", "15", "2017-03-02 00:40:37", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("49873", "10", "2017-03-02 00:40:37", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("49874", "3", "2017-03-02 02:09:10", "77.75.78.164", "10");
INSERT INTO `wp_gf_form_view` VALUES("49875", "15", "2017-03-02 02:09:11", "77.75.78.164", "5");
INSERT INTO `wp_gf_form_view` VALUES("49876", "10", "2017-03-02 02:09:11", "77.75.78.164", "5");
INSERT INTO `wp_gf_form_view` VALUES("49877", "14", "2017-03-02 02:37:13", "134.87.169.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("49878", "3", "2017-03-02 03:20:20", "157.55.39.247", "358");
INSERT INTO `wp_gf_form_view` VALUES("49879", "15", "2017-03-02 03:20:20", "157.55.39.247", "150");
INSERT INTO `wp_gf_form_view` VALUES("49880", "10", "2017-03-02 03:20:20", "157.55.39.247", "186");
INSERT INTO `wp_gf_form_view` VALUES("49881", "8", "2017-03-02 03:20:27", "157.55.39.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("49882", "13", "2017-03-02 03:20:29", "157.55.39.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("49883", "14", "2017-03-02 03:21:57", "157.55.39.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("49884", "9", "2017-03-02 03:22:12", "207.46.13.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("49885", "12", "2017-03-02 03:23:15", "40.77.167.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("49886", "2", "2017-03-02 03:23:27", "157.55.39.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("49887", "7", "2017-03-02 03:23:59", "40.77.167.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("49888", "3", "2017-03-02 04:57:38", "75.154.239.165", "5");
INSERT INTO `wp_gf_form_view` VALUES("49889", "15", "2017-03-02 04:57:38", "75.154.239.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("49890", "10", "2017-03-02 04:57:39", "75.154.239.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("49891", "3", "2017-03-02 05:03:09", "77.75.79.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("49892", "15", "2017-03-02 05:03:09", "77.75.79.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("49893", "10", "2017-03-02 05:03:09", "77.75.79.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("49894", "3", "2017-03-02 06:40:25", "51.255.65.78", "6");
INSERT INTO `wp_gf_form_view` VALUES("49895", "15", "2017-03-02 06:40:27", "51.255.65.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("49896", "10", "2017-03-02 06:40:27", "51.255.65.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("49897", "13", "2017-03-02 06:52:54", "163.172.65.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("49898", "3", "2017-03-02 07:04:36", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("49899", "6", "2017-03-02 07:04:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49900", "9", "2017-03-02 07:04:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49901", "8", "2017-03-02 07:04:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49902", "10", "2017-03-02 07:04:38", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("49903", "13", "2017-03-02 07:04:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49904", "15", "2017-03-02 07:04:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("49905", "15", "2017-03-02 08:28:46", "137.97.1.31", "4");
INSERT INTO `wp_gf_form_view` VALUES("49906", "3", "2017-03-02 08:28:48", "137.97.1.31", "4");
INSERT INTO `wp_gf_form_view` VALUES("49907", "10", "2017-03-02 08:28:48", "137.97.1.31", "2");
INSERT INTO `wp_gf_form_view` VALUES("49908", "3", "2017-03-02 10:09:12", "77.75.79.72", "196");
INSERT INTO `wp_gf_form_view` VALUES("49909", "15", "2017-03-02 10:09:13", "77.75.79.72", "91");
INSERT INTO `wp_gf_form_view` VALUES("49910", "10", "2017-03-02 10:09:14", "77.75.79.72", "85");
INSERT INTO `wp_gf_form_view` VALUES("49911", "14", "2017-03-02 10:46:23", "45.55.235.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("49912", "11", "2017-03-02 10:46:32", "45.55.235.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("49913", "6", "2017-03-02 10:55:53", "45.55.235.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("49914", "3", "2017-03-02 11:00:03", "45.55.235.249", "783");
INSERT INTO `wp_gf_form_view` VALUES("49915", "15", "2017-03-02 11:00:03", "45.55.235.249", "369");
INSERT INTO `wp_gf_form_view` VALUES("49916", "10", "2017-03-02 11:00:03", "45.55.235.249", "377");
INSERT INTO `wp_gf_form_view` VALUES("49917", "9", "2017-03-02 11:05:58", "45.55.235.249", "2");
INSERT INTO `wp_gf_form_view` VALUES("49918", "2", "2017-03-02 11:55:38", "45.55.235.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("49919", "3", "2017-03-02 12:00:03", "45.55.235.249", "91");
INSERT INTO `wp_gf_form_view` VALUES("49920", "15", "2017-03-02 12:00:03", "45.55.235.249", "41");
INSERT INTO `wp_gf_form_view` VALUES("49921", "10", "2017-03-02 12:00:03", "45.55.235.249", "41");
INSERT INTO `wp_gf_form_view` VALUES("49922", "13", "2017-03-02 12:06:03", "45.55.235.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("49923", "15", "2017-03-02 14:54:57", "24.108.38.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("49924", "3", "2017-03-02 14:55:00", "24.108.38.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("49925", "10", "2017-03-02 14:55:00", "24.108.38.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("49926", "3", "2017-03-02 15:15:41", "202.46.51.133", "5");
INSERT INTO `wp_gf_form_view` VALUES("49927", "15", "2017-03-02 15:15:42", "202.46.51.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("49928", "10", "2017-03-02 15:15:42", "202.46.51.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("49929", "3", "2017-03-02 16:11:04", "163.172.65.25", "17");
INSERT INTO `wp_gf_form_view` VALUES("49930", "15", "2017-03-02 16:11:04", "163.172.65.25", "8");
INSERT INTO `wp_gf_form_view` VALUES("49931", "10", "2017-03-02 16:11:04", "163.172.65.25", "9");
INSERT INTO `wp_gf_form_view` VALUES("49932", "14", "2017-03-02 16:30:10", "142.36.26.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("49933", "3", "2017-03-02 17:02:10", "96.50.4.172", "6");
INSERT INTO `wp_gf_form_view` VALUES("49934", "15", "2017-03-02 17:02:11", "96.50.4.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("49935", "10", "2017-03-02 17:08:08", "163.172.65.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("49936", "10", "2017-03-02 18:04:25", "184.66.49.231", "10");
INSERT INTO `wp_gf_form_view` VALUES("49937", "3", "2017-03-02 18:04:25", "184.66.49.231", "19");
INSERT INTO `wp_gf_form_view` VALUES("49938", "15", "2017-03-02 18:04:25", "184.66.49.231", "8");
INSERT INTO `wp_gf_form_view` VALUES("49939", "14", "2017-03-02 18:42:21", "24.68.101.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("49940", "10", "2017-03-02 19:01:02", "205.201.132.14", "42");
INSERT INTO `wp_gf_form_view` VALUES("49941", "3", "2017-03-02 19:01:02", "205.201.132.14", "116");
INSERT INTO `wp_gf_form_view` VALUES("49942", "15", "2017-03-02 19:01:02", "205.201.132.14", "34");
INSERT INTO `wp_gf_form_view` VALUES("49943", "2", "2017-03-02 19:11:06", "174.127.133.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("49944", "11", "2017-03-02 19:15:33", "174.127.133.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("49945", "6", "2017-03-02 19:16:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("49946", "9", "2017-03-02 19:16:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("49947", "8", "2017-03-02 19:16:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("49948", "13", "2017-03-02 19:16:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("49949", "3", "2017-03-02 20:19:03", "46.31.171.86", "30");
INSERT INTO `wp_gf_form_view` VALUES("49950", "15", "2017-03-02 20:19:04", "46.31.171.86", "13");
INSERT INTO `wp_gf_form_view` VALUES("49951", "10", "2017-03-02 20:19:04", "46.31.171.86", "14");
INSERT INTO `wp_gf_form_view` VALUES("49952", "11", "2017-03-02 20:19:11", "46.31.171.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("49953", "2", "2017-03-02 20:20:05", "46.31.171.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("49954", "15", "2017-03-02 21:05:00", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("49955", "3", "2017-03-02 21:05:00", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("49956", "10", "2017-03-02 21:05:00", "68.180.229.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("49957", "14", "2017-03-02 22:00:41", "134.87.144.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("49958", "3", "2017-03-02 22:00:41", "134.87.144.198", "10");
INSERT INTO `wp_gf_form_view` VALUES("49959", "15", "2017-03-02 22:00:42", "134.87.144.198", "6");
INSERT INTO `wp_gf_form_view` VALUES("49960", "10", "2017-03-02 22:00:42", "134.87.144.198", "6");
INSERT INTO `wp_gf_form_view` VALUES("49961", "3", "2017-03-02 23:14:48", "77.75.79.11", "6");
INSERT INTO `wp_gf_form_view` VALUES("49962", "15", "2017-03-02 23:14:49", "77.75.79.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("49963", "10", "2017-03-02 23:14:49", "77.75.79.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("49964", "3", "2017-03-03 00:16:54", "157.55.39.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("49965", "15", "2017-03-03 00:16:54", "157.55.39.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("49966", "10", "2017-03-03 00:16:54", "157.55.39.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("49967", "14", "2017-03-03 01:23:59", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("49968", "3", "2017-03-03 01:23:59", "68.180.229.247", "24");
INSERT INTO `wp_gf_form_view` VALUES("49969", "15", "2017-03-03 01:23:59", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("49970", "10", "2017-03-03 01:23:59", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("49971", "11", "2017-03-03 01:54:52", "109.70.52.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("49972", "2", "2017-03-03 01:55:46", "109.70.52.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("49973", "3", "2017-03-03 02:41:23", "45.35.113.134", "7");
INSERT INTO `wp_gf_form_view` VALUES("49974", "15", "2017-03-03 02:58:06", "184.69.173.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("49975", "10", "2017-03-03 02:58:06", "184.69.173.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("49976", "14", "2017-03-03 02:59:23", "184.69.173.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("49977", "3", "2017-03-03 03:02:20", "184.69.173.90", "11");
INSERT INTO `wp_gf_form_view` VALUES("49978", "15", "2017-03-03 03:02:20", "184.69.173.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("49979", "10", "2017-03-03 03:02:20", "184.69.173.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("49980", "14", "2017-03-03 03:28:01", "184.66.37.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("49981", "9", "2017-03-03 03:39:45", "157.55.39.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("49982", "3", "2017-03-03 04:03:07", "202.46.55.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("49983", "15", "2017-03-03 04:03:07", "202.46.55.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("49984", "10", "2017-03-03 04:03:07", "202.46.55.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("49985", "3", "2017-03-03 05:15:55", "154.5.144.97", "16");
INSERT INTO `wp_gf_form_view` VALUES("49986", "15", "2017-03-03 05:15:56", "154.5.144.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("49987", "10", "2017-03-03 05:15:56", "154.5.144.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("49988", "14", "2017-03-03 05:26:08", "157.55.39.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("49989", "3", "2017-03-03 06:08:03", "163.172.65.16", "29");
INSERT INTO `wp_gf_form_view` VALUES("49990", "15", "2017-03-03 06:08:03", "163.172.65.16", "3");
INSERT INTO `wp_gf_form_view` VALUES("49991", "10", "2017-03-03 06:08:03", "163.172.65.16", "5");
INSERT INTO `wp_gf_form_view` VALUES("49992", "6", "2017-03-03 06:55:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49993", "9", "2017-03-03 06:56:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49994", "8", "2017-03-03 06:56:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49995", "13", "2017-03-03 06:56:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("49996", "3", "2017-03-03 07:12:04", "163.172.66.152", "4");
INSERT INTO `wp_gf_form_view` VALUES("49997", "15", "2017-03-03 07:12:04", "163.172.66.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("49998", "10", "2017-03-03 07:12:04", "163.172.66.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("49999", "10", "2017-03-03 08:02:50", "202.46.58.124", "3");
INSERT INTO `wp_gf_form_view` VALUES("50000", "15", "2017-03-03 08:02:50", "202.46.58.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("50001", "3", "2017-03-03 08:02:50", "202.46.58.124", "8");
INSERT INTO `wp_gf_form_view` VALUES("50002", "13", "2017-03-03 08:02:50", "202.46.58.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("50003", "14", "2017-03-03 08:23:47", "24.68.227.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("50004", "10", "2017-03-03 09:37:15", "202.46.51.159", "25");
INSERT INTO `wp_gf_form_view` VALUES("50005", "3", "2017-03-03 09:37:17", "202.46.51.159", "49");
INSERT INTO `wp_gf_form_view` VALUES("50006", "15", "2017-03-03 09:37:17", "202.46.51.159", "19");
INSERT INTO `wp_gf_form_view` VALUES("50007", "14", "2017-03-03 09:52:41", "46.229.168.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("50008", "6", "2017-03-03 09:53:02", "46.229.168.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("50009", "3", "2017-03-03 10:00:50", "202.46.51.34", "7");
INSERT INTO `wp_gf_form_view` VALUES("50010", "15", "2017-03-03 10:00:50", "202.46.51.34", "3");
INSERT INTO `wp_gf_form_view` VALUES("50011", "10", "2017-03-03 10:00:50", "202.46.51.34", "3");
INSERT INTO `wp_gf_form_view` VALUES("50012", "3", "2017-03-03 11:11:40", "202.46.53.113", "5");
INSERT INTO `wp_gf_form_view` VALUES("50013", "15", "2017-03-03 11:11:40", "202.46.53.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("50014", "10", "2017-03-03 11:11:40", "202.46.53.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("50015", "14", "2017-03-03 11:49:08", "62.4.24.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("50016", "10", "2017-03-03 12:04:47", "163.172.66.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("50017", "3", "2017-03-03 12:04:47", "163.172.66.116", "7");
INSERT INTO `wp_gf_form_view` VALUES("50018", "15", "2017-03-03 12:04:47", "163.172.66.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("50019", "2", "2017-03-03 12:20:26", "51.255.65.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("50020", "13", "2017-03-03 13:20:31", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50021", "3", "2017-03-03 13:20:31", "68.180.229.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("50022", "15", "2017-03-03 13:20:31", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("50023", "10", "2017-03-03 13:20:31", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("50024", "3", "2017-03-03 14:35:26", "199.21.99.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("50025", "15", "2017-03-03 14:35:26", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("50026", "10", "2017-03-03 14:35:26", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("50027", "14", "2017-03-03 15:00:16", "184.66.37.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("50028", "3", "2017-03-03 15:00:16", "184.66.37.121", "6");
INSERT INTO `wp_gf_form_view` VALUES("50029", "15", "2017-03-03 15:00:16", "184.66.37.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("50030", "10", "2017-03-03 15:00:16", "184.66.37.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("50031", "3", "2017-03-03 16:05:37", "202.46.58.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("50032", "15", "2017-03-03 16:05:37", "202.46.58.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("50033", "10", "2017-03-03 16:05:37", "202.46.58.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("50034", "14", "2017-03-03 17:17:21", "70.74.164.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("50035", "3", "2017-03-03 17:17:21", "70.74.164.9", "9");
INSERT INTO `wp_gf_form_view` VALUES("50036", "15", "2017-03-03 17:17:21", "70.74.164.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("50037", "10", "2017-03-03 17:17:21", "70.74.164.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("50038", "3", "2017-03-03 18:51:34", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("50039", "6", "2017-03-03 18:51:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50040", "9", "2017-03-03 18:51:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50041", "8", "2017-03-03 18:51:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50042", "10", "2017-03-03 18:51:35", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("50043", "13", "2017-03-03 18:51:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50044", "15", "2017-03-03 18:51:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50045", "3", "2017-03-03 19:14:12", "64.114.197.158", "4");
INSERT INTO `wp_gf_form_view` VALUES("50046", "15", "2017-03-03 19:14:13", "64.114.197.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("50047", "10", "2017-03-03 19:14:13", "64.114.197.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("50048", "3", "2017-03-03 20:04:23", "163.172.64.181", "4");
INSERT INTO `wp_gf_form_view` VALUES("50049", "15", "2017-03-03 20:04:23", "163.172.64.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("50050", "10", "2017-03-03 20:04:23", "163.172.64.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("50051", "3", "2017-03-03 21:02:03", "77.75.78.161", "14");
INSERT INTO `wp_gf_form_view` VALUES("50052", "15", "2017-03-03 21:02:04", "77.75.78.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("50053", "10", "2017-03-03 21:02:04", "77.75.78.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("50054", "14", "2017-03-03 23:05:18", "144.217.33.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("50055", "3", "2017-03-03 23:05:20", "144.217.33.57", "6");
INSERT INTO `wp_gf_form_view` VALUES("50056", "15", "2017-03-03 23:05:21", "144.217.33.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("50057", "10", "2017-03-03 23:05:21", "144.217.33.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("50058", "10", "2017-03-04 00:09:00", "184.66.36.242", "6");
INSERT INTO `wp_gf_form_view` VALUES("50059", "3", "2017-03-04 00:09:00", "184.66.36.242", "10");
INSERT INTO `wp_gf_form_view` VALUES("50060", "15", "2017-03-04 00:09:00", "184.66.36.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("50061", "10", "2017-03-04 01:02:27", "75.157.25.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("50062", "3", "2017-03-04 01:02:27", "75.157.25.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("50063", "15", "2017-03-04 01:02:27", "75.157.25.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("50064", "6", "2017-03-04 01:51:51", "163.172.66.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("50065", "3", "2017-03-04 02:02:42", "202.46.50.89", "12");
INSERT INTO `wp_gf_form_view` VALUES("50066", "15", "2017-03-04 02:02:42", "202.46.50.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("50067", "10", "2017-03-04 02:02:42", "202.46.50.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("50068", "3", "2017-03-04 03:16:53", "207.46.13.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("50069", "15", "2017-03-04 03:16:53", "207.46.13.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("50070", "10", "2017-03-04 03:16:53", "207.46.13.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("50071", "3", "2017-03-04 04:33:30", "163.172.65.124", "3");
INSERT INTO `wp_gf_form_view` VALUES("50072", "15", "2017-03-04 04:38:33", "157.55.39.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("50073", "10", "2017-03-04 04:38:33", "157.55.39.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("50074", "3", "2017-03-04 05:05:01", "202.46.56.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("50075", "15", "2017-03-04 05:05:02", "202.46.56.192", "3");
INSERT INTO `wp_gf_form_view` VALUES("50076", "10", "2017-03-04 05:05:02", "202.46.56.192", "3");
INSERT INTO `wp_gf_form_view` VALUES("50077", "14", "2017-03-04 06:03:52", "1.9.171.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("50078", "3", "2017-03-04 06:03:52", "1.9.171.51", "31");
INSERT INTO `wp_gf_form_view` VALUES("50079", "15", "2017-03-04 06:03:52", "1.9.171.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("50080", "10", "2017-03-04 06:03:52", "1.9.171.51", "5");
INSERT INTO `wp_gf_form_view` VALUES("50081", "2", "2017-03-04 06:10:33", "163.172.65.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("50082", "6", "2017-03-04 06:39:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50083", "9", "2017-03-04 06:39:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50084", "8", "2017-03-04 06:39:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50085", "13", "2017-03-04 06:39:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50086", "3", "2017-03-04 07:09:32", "163.172.66.98", "13");
INSERT INTO `wp_gf_form_view` VALUES("50087", "15", "2017-03-04 07:09:32", "163.172.66.98", "5");
INSERT INTO `wp_gf_form_view` VALUES("50088", "10", "2017-03-04 07:09:32", "163.172.66.98", "6");
INSERT INTO `wp_gf_form_view` VALUES("50089", "11", "2017-03-04 07:52:40", "154.20.73.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("50090", "3", "2017-03-04 08:00:59", "154.20.73.77", "9");
INSERT INTO `wp_gf_form_view` VALUES("50091", "15", "2017-03-04 08:00:59", "154.20.73.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("50092", "10", "2017-03-04 08:00:59", "154.20.73.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("50093", "12", "2017-03-04 09:07:06", "202.46.55.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("50094", "3", "2017-03-04 09:07:06", "202.46.55.82", "37");
INSERT INTO `wp_gf_form_view` VALUES("50095", "15", "2017-03-04 09:07:06", "202.46.55.82", "17");
INSERT INTO `wp_gf_form_view` VALUES("50096", "10", "2017-03-04 09:07:06", "202.46.55.82", "17");
INSERT INTO `wp_gf_form_view` VALUES("50097", "11", "2017-03-04 09:35:07", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("50098", "2", "2017-03-04 09:41:48", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("50099", "3", "2017-03-04 10:17:54", "202.46.50.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("50100", "15", "2017-03-04 10:17:54", "202.46.50.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("50101", "10", "2017-03-04 10:17:54", "202.46.50.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("50102", "3", "2017-03-04 11:01:10", "51.255.65.70", "5");
INSERT INTO `wp_gf_form_view` VALUES("50103", "15", "2017-03-04 11:01:10", "51.255.65.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("50104", "10", "2017-03-04 11:01:10", "51.255.65.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("50105", "3", "2017-03-04 13:03:00", "163.172.66.83", "7");
INSERT INTO `wp_gf_form_view` VALUES("50106", "15", "2017-03-04 13:06:05", "202.46.55.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("50107", "10", "2017-03-04 13:06:05", "202.46.55.182", "3");
INSERT INTO `wp_gf_form_view` VALUES("50108", "3", "2017-03-04 14:07:11", "164.132.161.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("50109", "15", "2017-03-04 14:15:23", "77.75.78.167", "3");
INSERT INTO `wp_gf_form_view` VALUES("50110", "10", "2017-03-04 14:15:23", "77.75.78.167", "3");
INSERT INTO `wp_gf_form_view` VALUES("50111", "3", "2017-03-04 15:16:51", "207.46.13.98", "4");
INSERT INTO `wp_gf_form_view` VALUES("50112", "15", "2017-03-04 15:16:51", "207.46.13.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("50113", "10", "2017-03-04 15:16:51", "207.46.13.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("50114", "10", "2017-03-04 16:09:18", "66.249.79.148", "17");
INSERT INTO `wp_gf_form_view` VALUES("50115", "3", "2017-03-04 16:09:18", "66.249.79.148", "21");
INSERT INTO `wp_gf_form_view` VALUES("50116", "15", "2017-03-04 16:09:18", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("50117", "14", "2017-03-04 16:56:50", "46.246.63.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("50118", "3", "2017-03-04 17:18:45", "202.46.48.145", "20");
INSERT INTO `wp_gf_form_view` VALUES("50119", "15", "2017-03-04 17:18:45", "202.46.48.145", "9");
INSERT INTO `wp_gf_form_view` VALUES("50120", "10", "2017-03-04 17:18:45", "202.46.48.145", "10");
INSERT INTO `wp_gf_form_view` VALUES("50121", "2", "2017-03-04 17:42:11", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("50122", "6", "2017-03-04 17:42:23", "202.46.48.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("50123", "3", "2017-03-04 18:03:16", "77.75.79.32", "33");
INSERT INTO `wp_gf_form_view` VALUES("50124", "15", "2017-03-04 18:03:16", "77.75.79.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("50125", "10", "2017-03-04 18:03:16", "77.75.79.32", "6");
INSERT INTO `wp_gf_form_view` VALUES("50126", "5", "2017-03-04 18:29:37", "202.46.48.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("50127", "6", "2017-03-04 18:35:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50128", "9", "2017-03-04 18:35:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50129", "8", "2017-03-04 18:35:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50130", "13", "2017-03-04 18:35:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50131", "3", "2017-03-04 19:13:13", "163.172.66.87", "12");
INSERT INTO `wp_gf_form_view` VALUES("50132", "15", "2017-03-04 19:13:13", "163.172.66.87", "5");
INSERT INTO `wp_gf_form_view` VALUES("50133", "10", "2017-03-04 19:13:13", "163.172.66.87", "5");
INSERT INTO `wp_gf_form_view` VALUES("50134", "14", "2017-03-04 19:15:55", "89.47.22.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("50135", "10", "2017-03-04 20:13:02", "75.157.25.214", "4");
INSERT INTO `wp_gf_form_view` VALUES("50136", "3", "2017-03-04 20:13:02", "75.157.25.214", "4");
INSERT INTO `wp_gf_form_view` VALUES("50137", "15", "2017-03-04 20:13:02", "75.157.25.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("50138", "11", "2017-03-04 20:32:39", "184.161.207.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("50139", "3", "2017-03-04 21:06:19", "163.172.66.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("50140", "15", "2017-03-04 21:06:20", "163.172.66.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("50141", "10", "2017-03-04 21:06:21", "163.172.66.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("50142", "3", "2017-03-04 22:15:38", "202.46.58.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("50143", "15", "2017-03-04 22:15:39", "202.46.58.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("50144", "15", "2017-03-04 22:15:39", "51.255.65.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("50145", "10", "2017-03-04 22:15:39", "202.46.58.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("50146", "10", "2017-03-04 22:15:39", "51.255.65.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("50147", "3", "2017-03-05 00:22:36", "75.157.172.190", "30");
INSERT INTO `wp_gf_form_view` VALUES("50148", "15", "2017-03-05 00:22:38", "75.157.172.190", "12");
INSERT INTO `wp_gf_form_view` VALUES("50149", "10", "2017-03-05 00:22:38", "75.157.172.190", "12");
INSERT INTO `wp_gf_form_view` VALUES("50150", "11", "2017-03-05 00:36:22", "92.73.30.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("50151", "2", "2017-03-05 00:37:25", "92.73.30.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("50152", "3", "2017-03-05 01:03:05", "202.46.58.55", "6");
INSERT INTO `wp_gf_form_view` VALUES("50153", "15", "2017-03-05 01:03:05", "202.46.58.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("50154", "10", "2017-03-05 01:03:05", "202.46.58.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("50155", "3", "2017-03-05 02:23:16", "157.55.39.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("50156", "15", "2017-03-05 02:23:16", "157.55.39.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("50157", "10", "2017-03-05 02:23:16", "157.55.39.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("50158", "3", "2017-03-05 03:00:57", "46.246.63.161", "12");
INSERT INTO `wp_gf_form_view` VALUES("50159", "15", "2017-03-05 03:00:58", "46.246.63.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("50160", "10", "2017-03-05 03:00:58", "46.246.63.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("50161", "3", "2017-03-05 04:04:40", "163.172.64.227", "10");
INSERT INTO `wp_gf_form_view` VALUES("50162", "15", "2017-03-05 04:04:40", "163.172.64.227", "4");
INSERT INTO `wp_gf_form_view` VALUES("50163", "10", "2017-03-05 04:04:40", "163.172.64.227", "5");
INSERT INTO `wp_gf_form_view` VALUES("50164", "3", "2017-03-05 05:16:36", "24.108.169.185", "6");
INSERT INTO `wp_gf_form_view` VALUES("50165", "15", "2017-03-05 05:16:36", "24.108.169.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("50166", "10", "2017-03-05 05:16:36", "24.108.169.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("50167", "6", "2017-03-05 06:04:16", "207.46.13.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("50168", "3", "2017-03-05 06:04:16", "207.46.13.171", "31");
INSERT INTO `wp_gf_form_view` VALUES("50169", "15", "2017-03-05 06:04:16", "207.46.13.171", "4");
INSERT INTO `wp_gf_form_view` VALUES("50170", "10", "2017-03-05 06:04:16", "207.46.13.171", "6");
INSERT INTO `wp_gf_form_view` VALUES("50171", "9", "2017-03-05 06:25:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50172", "8", "2017-03-05 06:25:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50173", "13", "2017-03-05 06:25:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50174", "3", "2017-03-05 07:36:52", "51.255.65.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("50175", "15", "2017-03-05 07:36:52", "51.255.65.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("50176", "10", "2017-03-05 07:36:52", "51.255.65.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("50177", "3", "2017-03-05 09:28:29", "163.172.66.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("50178", "15", "2017-03-05 09:28:30", "163.172.66.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("50179", "10", "2017-03-05 09:28:30", "163.172.66.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("50180", "3", "2017-03-05 11:17:00", "202.46.49.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("50181", "15", "2017-03-05 11:17:02", "202.46.49.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("50182", "10", "2017-03-05 11:17:02", "202.46.49.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("50183", "3", "2017-03-05 12:04:10", "202.46.56.204", "10");
INSERT INTO `wp_gf_form_view` VALUES("50184", "15", "2017-03-05 12:04:10", "202.46.56.204", "5");
INSERT INTO `wp_gf_form_view` VALUES("50185", "10", "2017-03-05 12:04:10", "202.46.56.204", "5");
INSERT INTO `wp_gf_form_view` VALUES("50186", "14", "2017-03-05 12:32:46", "195.22.127.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("50187", "3", "2017-03-05 13:14:59", "202.46.50.139", "987");
INSERT INTO `wp_gf_form_view` VALUES("50188", "15", "2017-03-05 13:14:59", "202.46.50.139", "460");
INSERT INTO `wp_gf_form_view` VALUES("50189", "10", "2017-03-05 13:14:59", "202.46.50.139", "458");
INSERT INTO `wp_gf_form_view` VALUES("50190", "11", "2017-03-05 13:19:46", "157.55.39.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("50191", "2", "2017-03-05 13:23:22", "167.114.244.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("50192", "14", "2017-03-05 13:25:54", "167.114.244.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("50193", "13", "2017-03-05 13:43:23", "167.114.244.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("50194", "9", "2017-03-05 13:48:44", "167.114.244.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("50195", "10", "2017-03-05 14:02:11", "202.46.56.39", "7");
INSERT INTO `wp_gf_form_view` VALUES("50196", "3", "2017-03-05 14:02:11", "202.46.56.39", "11");
INSERT INTO `wp_gf_form_view` VALUES("50197", "15", "2017-03-05 14:02:12", "202.46.56.39", "5");
INSERT INTO `wp_gf_form_view` VALUES("50198", "14", "2017-03-05 14:07:44", "191.101.116.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("50199", "3", "2017-03-05 15:03:49", "163.172.66.66", "5");
INSERT INTO `wp_gf_form_view` VALUES("50200", "15", "2017-03-05 15:10:02", "220.181.108.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("50201", "10", "2017-03-05 15:10:02", "220.181.108.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("50202", "3", "2017-03-05 16:28:33", "207.46.13.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("50203", "15", "2017-03-05 16:28:43", "207.46.13.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("50204", "10", "2017-03-05 16:28:43", "207.46.13.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("50205", "10", "2017-03-05 17:04:37", "157.55.39.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("50206", "3", "2017-03-05 17:04:37", "157.55.39.171", "9");
INSERT INTO `wp_gf_form_view` VALUES("50207", "15", "2017-03-05 17:04:38", "157.55.39.171", "4");
INSERT INTO `wp_gf_form_view` VALUES("50208", "3", "2017-03-05 18:15:41", "24.108.46.122", "68");
INSERT INTO `wp_gf_form_view` VALUES("50209", "15", "2017-03-05 18:15:41", "24.108.46.122", "19");
INSERT INTO `wp_gf_form_view` VALUES("50210", "10", "2017-03-05 18:15:41", "24.108.46.122", "20");
INSERT INTO `wp_gf_form_view` VALUES("50211", "6", "2017-03-05 18:16:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50212", "9", "2017-03-05 18:16:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50213", "8", "2017-03-05 18:16:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50214", "13", "2017-03-05 18:16:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50215", "10", "2017-03-05 19:27:16", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50216", "3", "2017-03-05 19:37:30", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50217", "15", "2017-03-05 19:37:30", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50218", "3", "2017-03-05 20:16:18", "77.75.78.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("50219", "15", "2017-03-05 20:16:18", "77.75.78.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("50220", "10", "2017-03-05 20:16:19", "77.75.78.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("50221", "3", "2017-03-05 21:46:46", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("50222", "15", "2017-03-05 21:46:48", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50223", "10", "2017-03-05 21:46:48", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50224", "6", "2017-03-05 21:51:25", "163.172.66.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("50225", "3", "2017-03-05 22:27:07", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("50226", "15", "2017-03-05 22:27:07", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("50227", "10", "2017-03-05 22:27:07", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("50228", "3", "2017-03-05 23:34:34", "96.50.26.55", "12");
INSERT INTO `wp_gf_form_view` VALUES("50229", "15", "2017-03-05 23:34:34", "96.50.26.55", "5");
INSERT INTO `wp_gf_form_view` VALUES("50230", "10", "2017-03-05 23:34:34", "96.50.26.55", "4");
INSERT INTO `wp_gf_form_view` VALUES("50231", "3", "2017-03-06 00:31:48", "157.55.39.123", "8");
INSERT INTO `wp_gf_form_view` VALUES("50232", "15", "2017-03-06 00:31:48", "157.55.39.123", "4");
INSERT INTO `wp_gf_form_view` VALUES("50233", "10", "2017-03-06 00:31:48", "157.55.39.123", "5");
INSERT INTO `wp_gf_form_view` VALUES("50234", "10", "2017-03-06 01:22:43", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50235", "3", "2017-03-06 02:03:04", "202.46.52.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("50236", "15", "2017-03-06 02:03:04", "202.46.52.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("50237", "10", "2017-03-06 02:03:04", "202.46.52.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("50238", "15", "2017-03-06 03:12:30", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("50239", "3", "2017-03-06 03:12:31", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("50240", "10", "2017-03-06 03:12:31", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("50241", "12", "2017-03-06 03:34:10", "157.55.39.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("50242", "3", "2017-03-06 04:09:50", "163.172.65.121", "4");
INSERT INTO `wp_gf_form_view` VALUES("50243", "15", "2017-03-06 04:09:50", "163.172.65.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("50244", "10", "2017-03-06 04:09:50", "163.172.65.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("50245", "3", "2017-03-06 05:04:16", "163.172.65.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("50246", "15", "2017-03-06 05:04:16", "163.172.65.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("50247", "10", "2017-03-06 05:04:16", "163.172.65.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("50248", "3", "2017-03-06 06:55:01", "52.88.109.3", "52");
INSERT INTO `wp_gf_form_view` VALUES("50249", "6", "2017-03-06 06:55:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("50250", "9", "2017-03-06 06:55:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("50251", "8", "2017-03-06 06:55:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50252", "8", "2017-03-06 06:55:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50253", "10", "2017-03-06 06:55:08", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("50254", "10", "2017-03-06 06:55:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50255", "13", "2017-03-06 06:55:09", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("50256", "15", "2017-03-06 06:55:09", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("50257", "14", "2017-03-06 06:59:25", "184.66.37.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("50258", "3", "2017-03-06 07:34:54", "163.172.66.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("50259", "15", "2017-03-06 07:34:57", "163.172.66.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("50260", "10", "2017-03-06 07:34:57", "163.172.66.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("50261", "5", "2017-03-06 08:19:52", "77.75.77.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("50262", "3", "2017-03-06 08:19:52", "77.75.77.17", "12");
INSERT INTO `wp_gf_form_view` VALUES("50263", "15", "2017-03-06 08:19:52", "77.75.77.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("50264", "10", "2017-03-06 08:19:52", "77.75.77.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("50265", "14", "2017-03-06 08:44:19", "104.223.52.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("50266", "3", "2017-03-06 09:10:27", "202.46.56.68", "25");
INSERT INTO `wp_gf_form_view` VALUES("50267", "15", "2017-03-06 09:10:27", "202.46.56.68", "11");
INSERT INTO `wp_gf_form_view` VALUES("50268", "10", "2017-03-06 09:10:28", "202.46.56.68", "11");
INSERT INTO `wp_gf_form_view` VALUES("50269", "11", "2017-03-06 09:48:33", "89.123.25.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("50270", "3", "2017-03-06 10:22:58", "202.46.48.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("50271", "15", "2017-03-06 10:22:58", "202.46.48.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("50272", "10", "2017-03-06 10:22:58", "202.46.48.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("50273", "14", "2017-03-06 11:01:00", "89.47.16.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("50274", "3", "2017-03-06 11:01:01", "89.47.16.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("50275", "15", "2017-03-06 11:01:01", "89.47.16.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("50276", "10", "2017-03-06 11:01:01", "89.47.16.176", "5");
INSERT INTO `wp_gf_form_view` VALUES("50277", "3", "2017-03-06 12:08:06", "220.181.108.109", "4");
INSERT INTO `wp_gf_form_view` VALUES("50278", "15", "2017-03-06 12:08:06", "220.181.108.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("50279", "10", "2017-03-06 12:08:06", "220.181.108.109", "2");
INSERT INTO `wp_gf_form_view` VALUES("50280", "3", "2017-03-06 13:28:03", "163.172.65.240", "5");
INSERT INTO `wp_gf_form_view` VALUES("50281", "15", "2017-03-06 13:28:03", "163.172.65.240", "2");
INSERT INTO `wp_gf_form_view` VALUES("50282", "10", "2017-03-06 13:28:03", "163.172.65.240", "2");
INSERT INTO `wp_gf_form_view` VALUES("50283", "3", "2017-03-06 14:26:34", "69.77.162.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("50284", "15", "2017-03-06 14:26:34", "69.77.162.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("50285", "10", "2017-03-06 14:26:35", "69.77.162.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("50286", "3", "2017-03-06 15:31:00", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("50287", "15", "2017-03-06 15:31:00", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50288", "10", "2017-03-06 15:31:01", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50289", "14", "2017-03-06 16:41:39", "69.77.162.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("50290", "3", "2017-03-06 16:41:41", "69.77.162.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("50291", "15", "2017-03-06 16:41:42", "69.77.162.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("50292", "10", "2017-03-06 16:41:42", "69.77.162.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("50293", "8", "2017-03-06 17:28:00", "207.46.13.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("50294", "3", "2017-03-06 17:28:01", "207.46.13.176", "7");
INSERT INTO `wp_gf_form_view` VALUES("50295", "15", "2017-03-06 17:28:01", "207.46.13.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("50296", "10", "2017-03-06 17:28:01", "207.46.13.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("50297", "3", "2017-03-06 18:48:51", "163.172.66.125", "9");
INSERT INTO `wp_gf_form_view` VALUES("50298", "15", "2017-03-06 18:48:52", "163.172.66.125", "3");
INSERT INTO `wp_gf_form_view` VALUES("50299", "10", "2017-03-06 18:48:52", "163.172.66.125", "3");
INSERT INTO `wp_gf_form_view` VALUES("50300", "7", "2017-03-06 19:06:53", "46.246.62.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("50301", "3", "2017-03-06 19:06:53", "46.246.62.76", "39");
INSERT INTO `wp_gf_form_view` VALUES("50302", "15", "2017-03-06 19:06:53", "46.246.62.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("50303", "10", "2017-03-06 19:06:53", "46.246.62.76", "10");
INSERT INTO `wp_gf_form_view` VALUES("50304", "6", "2017-03-06 19:23:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50305", "9", "2017-03-06 19:23:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50306", "8", "2017-03-06 19:23:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50307", "13", "2017-03-06 19:23:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50308", "14", "2017-03-06 19:37:53", "64.180.75.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("50309", "14", "2017-03-06 20:13:16", "24.108.216.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("50310", "3", "2017-03-06 20:13:17", "24.108.216.76", "12");
INSERT INTO `wp_gf_form_view` VALUES("50311", "15", "2017-03-06 20:13:18", "24.108.216.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("50312", "10", "2017-03-06 20:13:18", "24.108.216.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("50313", "3", "2017-03-06 21:03:20", "51.255.65.89", "10");
INSERT INTO `wp_gf_form_view` VALUES("50314", "15", "2017-03-06 21:03:20", "51.255.65.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("50315", "10", "2017-03-06 21:03:20", "51.255.65.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("50316", "3", "2017-03-06 22:16:15", "202.46.56.91", "8");
INSERT INTO `wp_gf_form_view` VALUES("50317", "15", "2017-03-06 22:16:16", "202.46.56.91", "4");
INSERT INTO `wp_gf_form_view` VALUES("50318", "10", "2017-03-06 22:16:16", "202.46.56.91", "4");
INSERT INTO `wp_gf_form_view` VALUES("50319", "3", "2017-03-06 23:34:02", "157.55.39.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("50320", "15", "2017-03-06 23:34:03", "157.55.39.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("50321", "10", "2017-03-06 23:34:03", "157.55.39.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("50322", "3", "2017-03-07 00:17:21", "77.75.79.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("50323", "15", "2017-03-07 00:17:22", "77.75.79.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("50324", "10", "2017-03-07 00:17:22", "77.75.79.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("50325", "3", "2017-03-07 01:17:56", "157.55.39.2", "4");
INSERT INTO `wp_gf_form_view` VALUES("50326", "15", "2017-03-07 01:17:56", "157.55.39.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("50327", "10", "2017-03-07 01:17:56", "157.55.39.2", "3");
INSERT INTO `wp_gf_form_view` VALUES("50328", "3", "2017-03-07 02:01:15", "157.55.39.58", "9");
INSERT INTO `wp_gf_form_view` VALUES("50329", "15", "2017-03-07 02:01:15", "157.55.39.58", "4");
INSERT INTO `wp_gf_form_view` VALUES("50330", "10", "2017-03-07 02:01:15", "157.55.39.58", "4");
INSERT INTO `wp_gf_form_view` VALUES("50331", "3", "2017-03-07 03:48:32", "202.46.58.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("50332", "15", "2017-03-07 03:48:33", "202.46.58.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("50333", "10", "2017-03-07 03:48:33", "202.46.58.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("50334", "3", "2017-03-07 04:10:08", "68.180.229.247", "11");
INSERT INTO `wp_gf_form_view` VALUES("50335", "15", "2017-03-07 04:10:08", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("50336", "10", "2017-03-07 04:10:08", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("50337", "10", "2017-03-07 05:16:05", "96.50.4.172", "4");
INSERT INTO `wp_gf_form_view` VALUES("50338", "3", "2017-03-07 05:16:05", "96.50.4.172", "6");
INSERT INTO `wp_gf_form_view` VALUES("50339", "15", "2017-03-07 05:16:06", "96.50.4.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("50340", "15", "2017-03-07 06:19:06", "163.172.66.93", "10");
INSERT INTO `wp_gf_form_view` VALUES("50341", "3", "2017-03-07 06:25:54", "89.123.35.50", "18");
INSERT INTO `wp_gf_form_view` VALUES("50342", "10", "2017-03-07 06:25:54", "89.123.35.50", "8");
INSERT INTO `wp_gf_form_view` VALUES("50343", "11", "2017-03-07 06:25:58", "89.123.35.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("50344", "2", "2017-03-07 06:27:33", "89.123.35.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("50345", "3", "2017-03-07 07:24:28", "5.9.98.130", "551");
INSERT INTO `wp_gf_form_view` VALUES("50346", "15", "2017-03-07 07:24:31", "5.9.98.130", "239");
INSERT INTO `wp_gf_form_view` VALUES("50347", "10", "2017-03-07 07:24:31", "5.9.98.130", "241");
INSERT INTO `wp_gf_form_view` VALUES("50348", "11", "2017-03-07 07:24:42", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50349", "2", "2017-03-07 07:24:45", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50350", "14", "2017-03-07 07:26:22", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50351", "13", "2017-03-07 07:28:54", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50352", "8", "2017-03-07 07:32:49", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50353", "9", "2017-03-07 07:32:59", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50354", "6", "2017-03-07 07:33:47", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50355", "3", "2017-03-07 08:00:02", "5.9.98.130", "938");
INSERT INTO `wp_gf_form_view` VALUES("50356", "15", "2017-03-07 08:00:02", "5.9.98.130", "423");
INSERT INTO `wp_gf_form_view` VALUES("50357", "10", "2017-03-07 08:00:02", "5.9.98.130", "424");
INSERT INTO `wp_gf_form_view` VALUES("50358", "5", "2017-03-07 08:04:00", "51.255.65.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("50359", "14", "2017-03-07 08:06:42", "184.175.246.124", "4");
INSERT INTO `wp_gf_form_view` VALUES("50360", "6", "2017-03-07 08:12:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50361", "9", "2017-03-07 08:12:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50362", "8", "2017-03-07 08:12:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50363", "13", "2017-03-07 08:12:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50364", "3", "2017-03-07 09:00:04", "5.9.98.130", "644");
INSERT INTO `wp_gf_form_view` VALUES("50365", "15", "2017-03-07 09:00:05", "5.9.98.130", "300");
INSERT INTO `wp_gf_form_view` VALUES("50366", "10", "2017-03-07 09:00:05", "5.9.98.130", "300");
INSERT INTO `wp_gf_form_view` VALUES("50367", "2", "2017-03-07 09:44:34", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50368", "14", "2017-03-07 09:48:08", "62.210.111.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("50369", "3", "2017-03-07 10:17:13", "5.9.98.130", "576");
INSERT INTO `wp_gf_form_view` VALUES("50370", "15", "2017-03-07 10:17:14", "5.9.98.130", "272");
INSERT INTO `wp_gf_form_view` VALUES("50371", "10", "2017-03-07 10:17:14", "5.9.98.130", "272");
INSERT INTO `wp_gf_form_view` VALUES("50372", "3", "2017-03-07 11:17:09", "5.9.98.130", "574");
INSERT INTO `wp_gf_form_view` VALUES("50373", "15", "2017-03-07 11:17:10", "5.9.98.130", "255");
INSERT INTO `wp_gf_form_view` VALUES("50374", "10", "2017-03-07 11:17:10", "5.9.98.130", "255");
INSERT INTO `wp_gf_form_view` VALUES("50375", "14", "2017-03-07 11:29:56", "62.210.111.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("50376", "3", "2017-03-07 12:00:20", "5.9.98.130", "844");
INSERT INTO `wp_gf_form_view` VALUES("50377", "15", "2017-03-07 12:00:20", "5.9.98.130", "390");
INSERT INTO `wp_gf_form_view` VALUES("50378", "10", "2017-03-07 12:00:20", "5.9.98.130", "391");
INSERT INTO `wp_gf_form_view` VALUES("50379", "3", "2017-03-07 13:04:10", "164.132.161.34", "1078");
INSERT INTO `wp_gf_form_view` VALUES("50380", "15", "2017-03-07 13:04:10", "164.132.161.34", "520");
INSERT INTO `wp_gf_form_view` VALUES("50381", "10", "2017-03-07 13:04:10", "164.132.161.34", "521");
INSERT INTO `wp_gf_form_view` VALUES("50382", "14", "2017-03-07 13:10:06", "62.210.111.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("50383", "3", "2017-03-07 14:00:00", "5.9.98.130", "1170");
INSERT INTO `wp_gf_form_view` VALUES("50384", "15", "2017-03-07 14:00:01", "5.9.98.130", "507");
INSERT INTO `wp_gf_form_view` VALUES("50385", "10", "2017-03-07 14:00:01", "5.9.98.130", "507");
INSERT INTO `wp_gf_form_view` VALUES("50386", "3", "2017-03-07 15:00:00", "5.9.98.130", "710");
INSERT INTO `wp_gf_form_view` VALUES("50387", "15", "2017-03-07 15:00:00", "5.9.98.130", "252");
INSERT INTO `wp_gf_form_view` VALUES("50388", "10", "2017-03-07 15:00:01", "5.9.98.130", "253");
INSERT INTO `wp_gf_form_view` VALUES("50389", "2", "2017-03-07 15:24:16", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("50390", "11", "2017-03-07 15:24:44", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("50391", "14", "2017-03-07 15:32:21", "173.208.146.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("50392", "5", "2017-03-07 15:33:45", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("50393", "3", "2017-03-07 16:00:01", "5.9.98.130", "1084");
INSERT INTO `wp_gf_form_view` VALUES("50394", "15", "2017-03-07 16:00:02", "5.9.98.130", "581");
INSERT INTO `wp_gf_form_view` VALUES("50395", "10", "2017-03-07 16:00:02", "5.9.98.130", "578");
INSERT INTO `wp_gf_form_view` VALUES("50396", "14", "2017-03-07 16:49:12", "173.195.59.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("50397", "14", "2017-03-07 17:01:03", "173.195.59.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("50398", "3", "2017-03-07 17:01:04", "173.195.59.101", "1263");
INSERT INTO `wp_gf_form_view` VALUES("50399", "15", "2017-03-07 17:01:04", "173.195.59.101", "631");
INSERT INTO `wp_gf_form_view` VALUES("50400", "10", "2017-03-07 17:01:04", "173.195.59.101", "634");
INSERT INTO `wp_gf_form_view` VALUES("50401", "3", "2017-03-07 18:00:02", "5.9.98.130", "1060");
INSERT INTO `wp_gf_form_view` VALUES("50402", "15", "2017-03-07 18:00:02", "5.9.98.130", "466");
INSERT INTO `wp_gf_form_view` VALUES("50403", "10", "2017-03-07 18:00:02", "5.9.98.130", "467");
INSERT INTO `wp_gf_form_view` VALUES("50404", "3", "2017-03-07 19:10:59", "24.108.13.133", "344");
INSERT INTO `wp_gf_form_view` VALUES("50405", "15", "2017-03-07 19:11:00", "24.108.13.133", "115");
INSERT INTO `wp_gf_form_view` VALUES("50406", "10", "2017-03-07 19:11:00", "24.108.13.133", "115");
INSERT INTO `wp_gf_form_view` VALUES("50407", "3", "2017-03-07 20:00:01", "5.9.98.130", "1823");
INSERT INTO `wp_gf_form_view` VALUES("50408", "15", "2017-03-07 20:00:01", "5.9.98.130", "823");
INSERT INTO `wp_gf_form_view` VALUES("50409", "10", "2017-03-07 20:00:01", "5.9.98.130", "837");
INSERT INTO `wp_gf_form_view` VALUES("50410", "13", "2017-03-07 20:12:35", "157.55.39.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("50411", "8", "2017-03-07 20:12:37", "157.55.39.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("50412", "12", "2017-03-07 20:13:08", "157.55.39.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("50413", "9", "2017-03-07 20:13:10", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("50414", "3", "2017-03-07 21:00:02", "5.9.98.130", "445");
INSERT INTO `wp_gf_form_view` VALUES("50415", "15", "2017-03-07 21:00:02", "5.9.98.130", "211");
INSERT INTO `wp_gf_form_view` VALUES("50416", "10", "2017-03-07 21:00:02", "5.9.98.130", "212");
INSERT INTO `wp_gf_form_view` VALUES("50417", "2", "2017-03-07 21:23:02", "23.23.91.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("50418", "6", "2017-03-07 21:25:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50419", "9", "2017-03-07 21:25:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50420", "8", "2017-03-07 21:25:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50421", "13", "2017-03-07 21:25:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50422", "14", "2017-03-07 21:40:21", "199.60.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("50423", "3", "2017-03-07 22:00:06", "24.108.13.133", "584");
INSERT INTO `wp_gf_form_view` VALUES("50424", "15", "2017-03-07 22:00:06", "24.108.13.133", "197");
INSERT INTO `wp_gf_form_view` VALUES("50425", "10", "2017-03-07 22:00:07", "24.108.13.133", "198");
INSERT INTO `wp_gf_form_view` VALUES("50426", "11", "2017-03-07 22:50:12", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("50427", "2", "2017-03-07 22:50:14", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("50428", "3", "2017-03-07 23:00:03", "5.9.98.130", "2152");
INSERT INTO `wp_gf_form_view` VALUES("50429", "15", "2017-03-07 23:00:04", "5.9.98.130", "980");
INSERT INTO `wp_gf_form_view` VALUES("50430", "10", "2017-03-07 23:00:04", "5.9.98.130", "783");
INSERT INTO `wp_gf_form_view` VALUES("50431", "15", "2017-03-08 00:00:02", "5.9.98.130", "375");
INSERT INTO `wp_gf_form_view` VALUES("50432", "3", "2017-03-08 00:00:02", "5.9.98.130", "632");
INSERT INTO `wp_gf_form_view` VALUES("50433", "10", "2017-03-08 00:00:03", "5.9.98.130", "572");
INSERT INTO `wp_gf_form_view` VALUES("50434", "6", "2017-03-08 00:36:25", "202.46.48.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("50435", "3", "2017-03-08 01:18:04", "40.77.167.27", "174");
INSERT INTO `wp_gf_form_view` VALUES("50436", "15", "2017-03-08 01:18:04", "40.77.167.27", "90");
INSERT INTO `wp_gf_form_view` VALUES("50437", "10", "2017-03-08 01:18:04", "40.77.167.27", "87");
INSERT INTO `wp_gf_form_view` VALUES("50438", "3", "2017-03-08 02:00:03", "5.9.98.130", "1117");
INSERT INTO `wp_gf_form_view` VALUES("50439", "15", "2017-03-08 02:00:03", "5.9.98.130", "558");
INSERT INTO `wp_gf_form_view` VALUES("50440", "10", "2017-03-08 02:00:03", "5.9.98.130", "558");
INSERT INTO `wp_gf_form_view` VALUES("50441", "3", "2017-03-08 03:00:02", "5.9.98.130", "1095");
INSERT INTO `wp_gf_form_view` VALUES("50442", "15", "2017-03-08 03:00:02", "5.9.98.130", "544");
INSERT INTO `wp_gf_form_view` VALUES("50443", "10", "2017-03-08 03:00:02", "5.9.98.130", "544");
INSERT INTO `wp_gf_form_view` VALUES("50444", "3", "2017-03-08 04:00:01", "5.9.98.130", "1102");
INSERT INTO `wp_gf_form_view` VALUES("50445", "15", "2017-03-08 04:00:01", "5.9.98.130", "551");
INSERT INTO `wp_gf_form_view` VALUES("50446", "10", "2017-03-08 04:00:01", "5.9.98.130", "551");
INSERT INTO `wp_gf_form_view` VALUES("50447", "11", "2017-03-08 04:24:00", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("50448", "3", "2017-03-08 05:00:09", "5.9.98.130", "1152");
INSERT INTO `wp_gf_form_view` VALUES("50449", "15", "2017-03-08 05:00:09", "5.9.98.130", "448");
INSERT INTO `wp_gf_form_view` VALUES("50450", "10", "2017-03-08 05:00:09", "5.9.98.130", "448");
INSERT INTO `wp_gf_form_view` VALUES("50451", "14", "2017-03-08 05:37:10", "77.75.79.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("50452", "3", "2017-03-08 06:03:16", "145.132.56.2", "37");
INSERT INTO `wp_gf_form_view` VALUES("50453", "15", "2017-03-08 06:03:17", "145.132.56.2", "16");
INSERT INTO `wp_gf_form_view` VALUES("50454", "10", "2017-03-08 06:03:17", "145.132.56.2", "19");
INSERT INTO `wp_gf_form_view` VALUES("50455", "11", "2017-03-08 06:03:23", "145.132.56.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("50456", "2", "2017-03-08 06:04:19", "145.132.56.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("50457", "14", "2017-03-08 06:50:47", "24.68.49.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("50458", "3", "2017-03-08 07:11:12", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("50459", "15", "2017-03-08 07:11:13", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50460", "10", "2017-03-08 07:11:13", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("50461", "11", "2017-03-08 07:30:32", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50462", "3", "2017-03-08 08:04:15", "5.9.98.130", "1571");
INSERT INTO `wp_gf_form_view` VALUES("50463", "15", "2017-03-08 08:04:16", "5.9.98.130", "529");
INSERT INTO `wp_gf_form_view` VALUES("50464", "10", "2017-03-08 08:04:16", "5.9.98.130", "529");
INSERT INTO `wp_gf_form_view` VALUES("50465", "3", "2017-03-08 09:00:00", "5.9.98.130", "1185");
INSERT INTO `wp_gf_form_view` VALUES("50466", "15", "2017-03-08 09:00:01", "5.9.98.130", "592");
INSERT INTO `wp_gf_form_view` VALUES("50467", "10", "2017-03-08 09:00:01", "5.9.98.130", "592");
INSERT INTO `wp_gf_form_view` VALUES("50468", "3", "2017-03-08 10:00:02", "5.9.98.130", "1263");
INSERT INTO `wp_gf_form_view` VALUES("50469", "15", "2017-03-08 10:00:02", "5.9.98.130", "620");
INSERT INTO `wp_gf_form_view` VALUES("50470", "10", "2017-03-08 10:00:03", "5.9.98.130", "622");
INSERT INTO `wp_gf_form_view` VALUES("50471", "6", "2017-03-08 10:22:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50472", "9", "2017-03-08 10:22:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50473", "8", "2017-03-08 10:22:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50474", "13", "2017-03-08 10:23:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50475", "14", "2017-03-08 10:34:45", "104.202.147.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("50476", "3", "2017-03-08 11:00:02", "5.9.98.130", "632");
INSERT INTO `wp_gf_form_view` VALUES("50477", "15", "2017-03-08 11:00:03", "5.9.98.130", "316");
INSERT INTO `wp_gf_form_view` VALUES("50478", "10", "2017-03-08 11:00:03", "5.9.98.130", "316");
INSERT INTO `wp_gf_form_view` VALUES("50479", "2", "2017-03-08 11:30:26", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("50480", "3", "2017-03-08 12:03:50", "5.9.98.130", "23");
INSERT INTO `wp_gf_form_view` VALUES("50481", "15", "2017-03-08 12:03:51", "5.9.98.130", "11");
INSERT INTO `wp_gf_form_view` VALUES("50482", "10", "2017-03-08 12:03:51", "5.9.98.130", "13");
INSERT INTO `wp_gf_form_view` VALUES("50483", "9", "2017-03-08 12:03:59", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50484", "15", "2017-03-08 13:04:40", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("50485", "3", "2017-03-08 13:04:40", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("50486", "10", "2017-03-08 13:04:40", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("50487", "11", "2017-03-08 13:19:02", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("50488", "3", "2017-03-08 14:02:42", "77.75.78.170", "29");
INSERT INTO `wp_gf_form_view` VALUES("50489", "15", "2017-03-08 14:02:42", "77.75.78.170", "14");
INSERT INTO `wp_gf_form_view` VALUES("50490", "10", "2017-03-08 14:02:42", "77.75.78.170", "14");
INSERT INTO `wp_gf_form_view` VALUES("50491", "2", "2017-03-08 14:33:35", "207.46.13.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("50492", "11", "2017-03-08 14:45:25", "86.92.137.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("50493", "2", "2017-03-08 15:04:22", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("50494", "10", "2017-03-08 15:04:52", "207.46.13.65", "5");
INSERT INTO `wp_gf_form_view` VALUES("50495", "3", "2017-03-08 15:04:52", "207.46.13.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("50496", "15", "2017-03-08 15:04:52", "207.46.13.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("50497", "3", "2017-03-08 16:03:47", "142.36.234.156", "30");
INSERT INTO `wp_gf_form_view` VALUES("50498", "15", "2017-03-08 16:03:47", "142.36.234.156", "12");
INSERT INTO `wp_gf_form_view` VALUES("50499", "10", "2017-03-08 16:03:47", "142.36.234.156", "17");
INSERT INTO `wp_gf_form_view` VALUES("50500", "3", "2017-03-08 17:16:19", "202.46.56.110", "17");
INSERT INTO `wp_gf_form_view` VALUES("50501", "15", "2017-03-08 17:16:19", "202.46.56.110", "9");
INSERT INTO `wp_gf_form_view` VALUES("50502", "10", "2017-03-08 17:16:19", "202.46.56.110", "11");
INSERT INTO `wp_gf_form_view` VALUES("50503", "6", "2017-03-08 17:54:13", "202.46.54.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("50504", "14", "2017-03-08 17:58:14", "184.69.25.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("50505", "3", "2017-03-08 18:01:20", "184.69.25.118", "14");
INSERT INTO `wp_gf_form_view` VALUES("50506", "15", "2017-03-08 18:01:20", "184.69.25.118", "6");
INSERT INTO `wp_gf_form_view` VALUES("50507", "10", "2017-03-08 18:01:20", "184.69.25.118", "6");
INSERT INTO `wp_gf_form_view` VALUES("50508", "11", "2017-03-08 18:11:19", "207.46.13.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("50509", "3", "2017-03-08 19:00:26", "96.50.19.46", "26");
INSERT INTO `wp_gf_form_view` VALUES("50510", "15", "2017-03-08 19:00:27", "96.50.19.46", "11");
INSERT INTO `wp_gf_form_view` VALUES("50511", "10", "2017-03-08 19:00:27", "96.50.19.46", "12");
INSERT INTO `wp_gf_form_view` VALUES("50512", "3", "2017-03-08 20:04:42", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("50513", "15", "2017-03-08 20:04:42", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50514", "10", "2017-03-08 20:04:42", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50515", "2", "2017-03-08 20:55:38", "220.181.108.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("50516", "3", "2017-03-08 21:26:45", "202.46.57.126", "6");
INSERT INTO `wp_gf_form_view` VALUES("50517", "15", "2017-03-08 21:26:45", "202.46.57.126", "5");
INSERT INTO `wp_gf_form_view` VALUES("50518", "10", "2017-03-08 21:26:45", "202.46.57.126", "3");
INSERT INTO `wp_gf_form_view` VALUES("50519", "10", "2017-03-08 22:03:20", "184.69.188.2", "8");
INSERT INTO `wp_gf_form_view` VALUES("50520", "3", "2017-03-08 22:03:20", "184.69.188.2", "16");
INSERT INTO `wp_gf_form_view` VALUES("50521", "15", "2017-03-08 22:03:20", "184.69.188.2", "9");
INSERT INTO `wp_gf_form_view` VALUES("50522", "10", "2017-03-08 23:08:15", "24.108.25.208", "3");
INSERT INTO `wp_gf_form_view` VALUES("50523", "3", "2017-03-08 23:08:16", "24.108.25.208", "5");
INSERT INTO `wp_gf_form_view` VALUES("50524", "15", "2017-03-08 23:08:16", "24.108.25.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("50525", "3", "2017-03-09 00:18:25", "142.32.114.118", "41");
INSERT INTO `wp_gf_form_view` VALUES("50526", "15", "2017-03-09 00:18:25", "142.32.114.118", "7");
INSERT INTO `wp_gf_form_view` VALUES("50527", "10", "2017-03-09 00:18:25", "142.32.114.118", "9");
INSERT INTO `wp_gf_form_view` VALUES("50528", "6", "2017-03-09 00:50:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50529", "9", "2017-03-09 00:50:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50530", "8", "2017-03-09 00:50:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50531", "13", "2017-03-09 00:50:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50532", "11", "2017-03-09 01:29:43", "178.238.38.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("50533", "3", "2017-03-09 01:29:56", "202.46.48.199", "6");
INSERT INTO `wp_gf_form_view` VALUES("50534", "15", "2017-03-09 01:29:56", "202.46.48.199", "5");
INSERT INTO `wp_gf_form_view` VALUES("50535", "10", "2017-03-09 01:29:56", "202.46.48.199", "3");
INSERT INTO `wp_gf_form_view` VALUES("50536", "3", "2017-03-09 02:24:18", "40.77.167.27", "6");
INSERT INTO `wp_gf_form_view` VALUES("50537", "15", "2017-03-09 02:24:19", "40.77.167.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("50538", "10", "2017-03-09 02:24:19", "40.77.167.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("50539", "3", "2017-03-09 03:05:56", "202.46.58.210", "5");
INSERT INTO `wp_gf_form_view` VALUES("50540", "15", "2017-03-09 03:05:56", "202.46.58.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("50541", "10", "2017-03-09 03:05:56", "202.46.58.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("50542", "3", "2017-03-09 04:28:19", "154.20.41.119", "19");
INSERT INTO `wp_gf_form_view` VALUES("50543", "15", "2017-03-09 04:28:23", "154.20.41.119", "11");
INSERT INTO `wp_gf_form_view` VALUES("50544", "10", "2017-03-09 04:28:23", "154.20.41.119", "10");
INSERT INTO `wp_gf_form_view` VALUES("50545", "3", "2017-03-09 05:49:01", "202.46.53.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("50546", "15", "2017-03-09 05:49:02", "202.46.53.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("50547", "10", "2017-03-09 05:49:02", "202.46.53.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("50548", "3", "2017-03-09 07:29:21", "202.46.50.75", "7");
INSERT INTO `wp_gf_form_view` VALUES("50549", "15", "2017-03-09 07:29:22", "202.46.50.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("50550", "10", "2017-03-09 07:29:22", "202.46.50.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("50551", "5", "2017-03-09 08:02:49", "202.46.55.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("50552", "3", "2017-03-09 08:02:49", "202.46.55.88", "6");
INSERT INTO `wp_gf_form_view` VALUES("50553", "15", "2017-03-09 08:02:49", "202.46.55.88", "3");
INSERT INTO `wp_gf_form_view` VALUES("50554", "10", "2017-03-09 08:02:49", "202.46.55.88", "3");
INSERT INTO `wp_gf_form_view` VALUES("50555", "3", "2017-03-09 09:06:33", "157.55.39.57", "10");
INSERT INTO `wp_gf_form_view` VALUES("50556", "15", "2017-03-09 09:06:33", "157.55.39.57", "5");
INSERT INTO `wp_gf_form_view` VALUES("50557", "10", "2017-03-09 09:06:33", "157.55.39.57", "5");
INSERT INTO `wp_gf_form_view` VALUES("50558", "15", "2017-03-09 10:15:16", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50559", "3", "2017-03-09 10:20:02", "51.255.65.61", "3");
INSERT INTO `wp_gf_form_view` VALUES("50560", "10", "2017-03-09 10:20:03", "51.255.65.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("50561", "3", "2017-03-09 11:13:04", "88.99.27.172", "4");
INSERT INTO `wp_gf_form_view` VALUES("50562", "15", "2017-03-09 11:13:04", "88.99.27.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("50563", "10", "2017-03-09 11:13:04", "88.99.27.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("50564", "3", "2017-03-09 12:23:53", "46.246.38.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("50565", "15", "2017-03-09 12:23:53", "46.246.38.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("50566", "10", "2017-03-09 12:23:53", "46.246.38.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("50567", "10", "2017-03-09 13:40:44", "54.201.143.242", "3");
INSERT INTO `wp_gf_form_view` VALUES("50568", "3", "2017-03-09 13:40:44", "54.201.143.242", "5");
INSERT INTO `wp_gf_form_view` VALUES("50569", "15", "2017-03-09 13:40:45", "54.201.143.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("50570", "3", "2017-03-09 14:07:56", "81.109.85.9", "35");
INSERT INTO `wp_gf_form_view` VALUES("50571", "15", "2017-03-09 14:07:56", "81.109.85.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("50572", "10", "2017-03-09 14:07:56", "81.109.85.9", "8");
INSERT INTO `wp_gf_form_view` VALUES("50573", "6", "2017-03-09 14:38:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50574", "9", "2017-03-09 14:38:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50575", "8", "2017-03-09 14:38:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50576", "13", "2017-03-09 14:38:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50577", "3", "2017-03-09 15:40:51", "202.46.53.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("50578", "15", "2017-03-09 15:40:51", "202.46.53.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("50579", "10", "2017-03-09 15:40:51", "202.46.53.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("50580", "3", "2017-03-09 16:14:51", "40.77.167.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("50581", "15", "2017-03-09 16:14:51", "40.77.167.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("50582", "10", "2017-03-09 16:14:51", "40.77.167.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("50583", "3", "2017-03-09 17:12:39", "184.66.49.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("50584", "15", "2017-03-09 17:12:39", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("50585", "10", "2017-03-09 17:12:39", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("50586", "3", "2017-03-09 18:28:17", "202.46.56.137", "10");
INSERT INTO `wp_gf_form_view` VALUES("50587", "15", "2017-03-09 18:41:53", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("50588", "10", "2017-03-09 18:41:53", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("50589", "15", "2017-03-09 19:00:48", "24.68.45.80", "5");
INSERT INTO `wp_gf_form_view` VALUES("50590", "3", "2017-03-09 19:00:48", "24.68.45.80", "13");
INSERT INTO `wp_gf_form_view` VALUES("50591", "10", "2017-03-09 19:00:48", "24.68.45.80", "9");
INSERT INTO `wp_gf_form_view` VALUES("50592", "10", "2017-03-09 20:02:57", "24.68.36.32", "11");
INSERT INTO `wp_gf_form_view` VALUES("50593", "3", "2017-03-09 20:02:57", "24.68.36.32", "16");
INSERT INTO `wp_gf_form_view` VALUES("50594", "15", "2017-03-09 20:02:57", "24.68.36.32", "7");
INSERT INTO `wp_gf_form_view` VALUES("50595", "3", "2017-03-09 21:05:11", "24.69.161.166", "17");
INSERT INTO `wp_gf_form_view` VALUES("50596", "15", "2017-03-09 21:05:11", "24.69.161.166", "7");
INSERT INTO `wp_gf_form_view` VALUES("50597", "10", "2017-03-09 21:05:11", "24.69.161.166", "8");
INSERT INTO `wp_gf_form_view` VALUES("50598", "5", "2017-03-09 21:15:44", "202.46.51.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("50599", "3", "2017-03-09 22:42:50", "69.196.72.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("50600", "15", "2017-03-09 22:42:52", "69.196.72.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("50601", "10", "2017-03-09 22:42:52", "69.196.72.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("50602", "3", "2017-03-09 23:29:42", "202.46.56.190", "7");
INSERT INTO `wp_gf_form_view` VALUES("50603", "15", "2017-03-09 23:29:43", "202.46.56.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("50604", "10", "2017-03-09 23:29:43", "202.46.56.190", "4");
INSERT INTO `wp_gf_form_view` VALUES("50605", "3", "2017-03-10 01:05:30", "108.172.161.159", "3");
INSERT INTO `wp_gf_form_view` VALUES("50606", "15", "2017-03-10 01:05:31", "108.172.161.159", "4");
INSERT INTO `wp_gf_form_view` VALUES("50607", "10", "2017-03-10 01:05:31", "108.172.161.159", "4");
INSERT INTO `wp_gf_form_view` VALUES("50608", "3", "2017-03-10 02:10:25", "195.154.211.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("50609", "15", "2017-03-10 02:10:25", "195.154.211.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("50610", "10", "2017-03-10 02:10:25", "195.154.211.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("50611", "3", "2017-03-10 03:02:38", "163.172.66.99", "4");
INSERT INTO `wp_gf_form_view` VALUES("50612", "15", "2017-03-10 03:02:38", "163.172.66.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("50613", "10", "2017-03-10 03:02:38", "163.172.66.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("50614", "3", "2017-03-10 04:23:54", "207.46.13.3", "61");
INSERT INTO `wp_gf_form_view` VALUES("50615", "15", "2017-03-10 04:23:54", "207.46.13.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("50616", "10", "2017-03-10 04:23:54", "207.46.13.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("50617", "8", "2017-03-10 04:24:22", "157.55.39.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("50618", "6", "2017-03-10 04:24:32", "157.55.39.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("50619", "9", "2017-03-10 04:56:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50620", "13", "2017-03-10 04:56:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50621", "3", "2017-03-10 05:17:44", "202.46.55.136", "10");
INSERT INTO `wp_gf_form_view` VALUES("50622", "15", "2017-03-10 05:17:44", "202.46.55.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("50623", "10", "2017-03-10 05:17:44", "202.46.55.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("50624", "3", "2017-03-10 06:16:14", "24.69.158.129", "6");
INSERT INTO `wp_gf_form_view` VALUES("50625", "15", "2017-03-10 06:16:15", "24.69.158.129", "4");
INSERT INTO `wp_gf_form_view` VALUES("50626", "10", "2017-03-10 06:16:15", "24.69.158.129", "4");
INSERT INTO `wp_gf_form_view` VALUES("50627", "3", "2017-03-10 08:06:49", "202.46.58.13", "10");
INSERT INTO `wp_gf_form_view` VALUES("50628", "15", "2017-03-10 08:06:51", "202.46.58.13", "8");
INSERT INTO `wp_gf_form_view` VALUES("50629", "10", "2017-03-10 08:06:51", "202.46.58.13", "8");
INSERT INTO `wp_gf_form_view` VALUES("50630", "3", "2017-03-10 09:13:48", "202.46.56.134", "8");
INSERT INTO `wp_gf_form_view` VALUES("50631", "15", "2017-03-10 09:13:48", "202.46.56.134", "6");
INSERT INTO `wp_gf_form_view` VALUES("50632", "10", "2017-03-10 09:13:48", "202.46.56.134", "6");
INSERT INTO `wp_gf_form_view` VALUES("50633", "9", "2017-03-10 09:41:47", "163.172.66.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("50634", "3", "2017-03-10 10:20:44", "202.46.52.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("50635", "15", "2017-03-10 10:20:44", "202.46.52.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("50636", "10", "2017-03-10 10:20:44", "202.46.52.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("50637", "3", "2017-03-10 11:12:40", "51.255.65.2", "4");
INSERT INTO `wp_gf_form_view` VALUES("50638", "15", "2017-03-10 11:12:40", "51.255.65.2", "3");
INSERT INTO `wp_gf_form_view` VALUES("50639", "10", "2017-03-10 11:12:40", "51.255.65.2", "3");
INSERT INTO `wp_gf_form_view` VALUES("50640", "10", "2017-03-10 12:29:10", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("50641", "3", "2017-03-10 12:29:11", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50642", "15", "2017-03-10 12:29:12", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50643", "14", "2017-03-10 13:36:14", "51.255.65.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("50644", "3", "2017-03-10 13:36:14", "51.255.65.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("50645", "15", "2017-03-10 13:36:14", "51.255.65.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("50646", "10", "2017-03-10 13:36:14", "51.255.65.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("50647", "3", "2017-03-10 14:00:57", "77.75.79.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("50648", "15", "2017-03-10 14:00:57", "77.75.79.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("50649", "10", "2017-03-10 14:00:57", "77.75.79.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("50650", "3", "2017-03-10 15:12:22", "202.46.51.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("50651", "15", "2017-03-10 15:12:22", "202.46.51.35", "5");
INSERT INTO `wp_gf_form_view` VALUES("50652", "10", "2017-03-10 15:12:22", "202.46.51.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("50653", "2", "2017-03-10 15:50:07", "167.114.172.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("50654", "3", "2017-03-10 16:12:19", "164.132.161.32", "13");
INSERT INTO `wp_gf_form_view` VALUES("50655", "15", "2017-03-10 16:12:19", "164.132.161.32", "13");
INSERT INTO `wp_gf_form_view` VALUES("50656", "10", "2017-03-10 16:12:19", "164.132.161.32", "13");
INSERT INTO `wp_gf_form_view` VALUES("50657", "14", "2017-03-10 17:33:41", "96.50.96.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("50658", "3", "2017-03-10 17:33:43", "96.50.96.111", "5");
INSERT INTO `wp_gf_form_view` VALUES("50659", "15", "2017-03-10 17:33:43", "96.50.96.111", "3");
INSERT INTO `wp_gf_form_view` VALUES("50660", "10", "2017-03-10 17:33:43", "96.50.96.111", "3");
INSERT INTO `wp_gf_form_view` VALUES("50661", "14", "2017-03-10 18:14:11", "207.46.13.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50662", "3", "2017-03-10 18:14:12", "207.46.13.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("50663", "15", "2017-03-10 18:14:12", "207.46.13.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("50664", "10", "2017-03-10 18:14:12", "207.46.13.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("50665", "6", "2017-03-10 18:54:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50666", "9", "2017-03-10 18:54:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50667", "8", "2017-03-10 18:54:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50668", "13", "2017-03-10 18:54:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50669", "3", "2017-03-10 19:32:16", "202.46.50.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("50670", "15", "2017-03-10 19:32:20", "202.46.50.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("50671", "10", "2017-03-10 19:32:20", "202.46.50.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("50672", "14", "2017-03-10 20:22:01", "96.50.96.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("50673", "3", "2017-03-10 20:22:01", "96.50.96.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("50674", "15", "2017-03-10 20:22:01", "96.50.96.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("50675", "10", "2017-03-10 20:22:01", "96.50.96.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("50676", "3", "2017-03-10 21:31:07", "46.246.38.151", "4");
INSERT INTO `wp_gf_form_view` VALUES("50677", "15", "2017-03-10 21:31:10", "46.246.38.151", "4");
INSERT INTO `wp_gf_form_view` VALUES("50678", "10", "2017-03-10 21:31:10", "46.246.38.151", "4");
INSERT INTO `wp_gf_form_view` VALUES("50679", "11", "2017-03-10 21:54:18", "77.75.79.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("50680", "3", "2017-03-10 23:12:50", "51.255.65.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("50681", "10", "2017-03-10 23:23:54", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("50682", "15", "2017-03-10 23:23:55", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("50683", "13", "2017-03-11 00:38:32", "157.55.39.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("50684", "3", "2017-03-11 00:38:34", "157.55.39.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("50685", "15", "2017-03-11 00:38:34", "157.55.39.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("50686", "10", "2017-03-11 00:38:34", "157.55.39.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("50687", "3", "2017-03-11 01:01:39", "164.132.161.77", "27");
INSERT INTO `wp_gf_form_view` VALUES("50688", "15", "2017-03-11 01:01:39", "164.132.161.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("50689", "10", "2017-03-11 01:01:39", "164.132.161.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("50690", "6", "2017-03-11 01:26:16", "163.172.66.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("50691", "9", "2017-03-11 01:26:16", "163.172.66.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("50692", "8", "2017-03-11 01:26:17", "163.172.66.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("50693", "13", "2017-03-11 01:26:17", "163.172.66.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("50694", "3", "2017-03-11 02:27:09", "163.172.64.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("50695", "15", "2017-03-11 02:27:09", "163.172.64.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("50696", "10", "2017-03-11 02:27:09", "163.172.64.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("50697", "11", "2017-03-11 02:38:19", "108.175.2.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("50698", "2", "2017-03-11 02:39:47", "108.175.2.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("50699", "3", "2017-03-11 03:27:23", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("50700", "15", "2017-03-11 03:27:23", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50701", "10", "2017-03-11 03:27:23", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50702", "3", "2017-03-11 04:17:06", "202.46.50.180", "3");
INSERT INTO `wp_gf_form_view` VALUES("50703", "15", "2017-03-11 04:17:07", "202.46.50.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("50704", "10", "2017-03-11 04:17:07", "202.46.50.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("50705", "14", "2017-03-11 04:43:44", "139.129.230.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("50706", "3", "2017-03-11 05:01:02", "157.55.39.241", "4");
INSERT INTO `wp_gf_form_view` VALUES("50707", "15", "2017-03-11 05:01:02", "157.55.39.241", "3");
INSERT INTO `wp_gf_form_view` VALUES("50708", "10", "2017-03-11 05:01:02", "157.55.39.241", "4");
INSERT INTO `wp_gf_form_view` VALUES("50709", "3", "2017-03-11 06:05:51", "77.75.78.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("50710", "15", "2017-03-11 06:05:51", "77.75.78.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("50711", "10", "2017-03-11 06:05:51", "77.75.78.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("50712", "3", "2017-03-11 07:04:36", "202.46.51.14", "7");
INSERT INTO `wp_gf_form_view` VALUES("50713", "15", "2017-03-11 07:04:38", "202.46.51.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("50714", "10", "2017-03-11 07:04:38", "202.46.51.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("50715", "3", "2017-03-11 08:04:30", "163.172.66.97", "29");
INSERT INTO `wp_gf_form_view` VALUES("50716", "15", "2017-03-11 08:09:49", "157.55.39.242", "3");
INSERT INTO `wp_gf_form_view` VALUES("50717", "10", "2017-03-11 08:09:49", "157.55.39.242", "5");
INSERT INTO `wp_gf_form_view` VALUES("50718", "6", "2017-03-11 08:58:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50719", "9", "2017-03-11 08:58:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50720", "8", "2017-03-11 08:58:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50721", "13", "2017-03-11 08:58:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50722", "14", "2017-03-11 10:33:58", "163.172.65.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("50723", "3", "2017-03-11 10:34:04", "163.172.65.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("50724", "15", "2017-03-11 10:34:05", "163.172.65.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("50725", "10", "2017-03-11 10:34:05", "163.172.65.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("50726", "14", "2017-03-11 11:46:21", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("50727", "3", "2017-03-11 11:46:24", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("50728", "15", "2017-03-11 11:46:24", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("50729", "10", "2017-03-11 11:46:24", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("50730", "3", "2017-03-11 12:14:05", "141.8.143.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("50731", "15", "2017-03-11 12:14:05", "141.8.143.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("50732", "10", "2017-03-11 12:14:05", "141.8.143.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("50733", "14", "2017-03-11 12:41:39", "37.203.214.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("50734", "3", "2017-03-11 13:03:29", "163.172.65.130", "6");
INSERT INTO `wp_gf_form_view` VALUES("50735", "15", "2017-03-11 13:03:30", "163.172.65.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("50736", "10", "2017-03-11 13:03:30", "163.172.65.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("50737", "14", "2017-03-11 13:56:36", "104.223.54.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("50738", "3", "2017-03-11 14:05:14", "164.132.161.27", "3");
INSERT INTO `wp_gf_form_view` VALUES("50739", "10", "2017-03-11 14:45:41", "157.55.39.219", "2");
INSERT INTO `wp_gf_form_view` VALUES("50740", "15", "2017-03-11 14:45:41", "157.55.39.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("50741", "3", "2017-03-11 15:25:22", "202.46.54.27", "3");
INSERT INTO `wp_gf_form_view` VALUES("50742", "15", "2017-03-11 15:25:22", "202.46.54.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("50743", "10", "2017-03-11 15:25:22", "202.46.54.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("50744", "15", "2017-03-11 16:25:18", "96.50.96.111", "3");
INSERT INTO `wp_gf_form_view` VALUES("50745", "3", "2017-03-11 16:25:18", "96.50.96.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("50746", "10", "2017-03-11 16:25:19", "96.50.96.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("50747", "14", "2017-03-11 16:30:50", "24.69.27.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("50748", "14", "2017-03-11 17:01:31", "24.108.188.215", "3");
INSERT INTO `wp_gf_form_view` VALUES("50749", "3", "2017-03-11 17:01:32", "24.108.188.215", "114");
INSERT INTO `wp_gf_form_view` VALUES("50750", "15", "2017-03-11 17:01:32", "24.108.188.215", "85");
INSERT INTO `wp_gf_form_view` VALUES("50751", "10", "2017-03-11 17:01:32", "24.108.188.215", "83");
INSERT INTO `wp_gf_form_view` VALUES("50752", "11", "2017-03-11 17:48:59", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("50753", "6", "2017-03-11 17:59:15", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("50754", "15", "2017-03-11 18:00:04", "162.243.251.166", "364");
INSERT INTO `wp_gf_form_view` VALUES("50755", "3", "2017-03-11 18:00:05", "162.243.251.166", "397");
INSERT INTO `wp_gf_form_view` VALUES("50756", "10", "2017-03-11 18:00:05", "162.243.251.166", "370");
INSERT INTO `wp_gf_form_view` VALUES("50757", "9", "2017-03-11 18:08:24", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("50758", "14", "2017-03-11 18:41:32", "173.208.146.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("50759", "2", "2017-03-11 18:57:20", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("50760", "3", "2017-03-11 19:00:20", "162.243.251.166", "70");
INSERT INTO `wp_gf_form_view` VALUES("50761", "15", "2017-03-11 19:00:20", "162.243.251.166", "60");
INSERT INTO `wp_gf_form_view` VALUES("50762", "10", "2017-03-11 19:00:20", "162.243.251.166", "59");
INSERT INTO `wp_gf_form_view` VALUES("50763", "13", "2017-03-11 19:07:39", "162.243.251.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("50764", "3", "2017-03-11 20:19:35", "51.255.65.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("50765", "15", "2017-03-11 20:19:35", "51.255.65.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("50766", "10", "2017-03-11 20:19:35", "51.255.65.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("50767", "3", "2017-03-11 21:39:46", "202.46.53.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("50768", "15", "2017-03-11 21:39:52", "202.46.53.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("50769", "10", "2017-03-11 21:39:52", "202.46.53.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("50770", "3", "2017-03-11 22:46:42", "202.46.52.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("50771", "15", "2017-03-11 22:46:43", "202.46.52.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("50772", "10", "2017-03-11 22:46:43", "202.46.52.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("50773", "3", "2017-03-11 23:20:12", "202.46.54.109", "32");
INSERT INTO `wp_gf_form_view` VALUES("50774", "15", "2017-03-11 23:20:13", "202.46.54.109", "8");
INSERT INTO `wp_gf_form_view` VALUES("50775", "10", "2017-03-11 23:20:13", "202.46.54.109", "8");
INSERT INTO `wp_gf_form_view` VALUES("50776", "6", "2017-03-11 23:32:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50777", "9", "2017-03-11 23:32:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50778", "8", "2017-03-11 23:32:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50779", "13", "2017-03-11 23:32:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50780", "3", "2017-03-12 00:57:27", "163.172.64.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("50781", "10", "2017-03-12 01:18:00", "199.58.86.209", "8");
INSERT INTO `wp_gf_form_view` VALUES("50782", "3", "2017-03-12 01:18:00", "199.58.86.209", "9");
INSERT INTO `wp_gf_form_view` VALUES("50783", "15", "2017-03-12 01:18:00", "199.58.86.209", "8");
INSERT INTO `wp_gf_form_view` VALUES("50784", "14", "2017-03-12 01:38:44", "70.67.164.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("50785", "3", "2017-03-12 02:30:06", "163.172.66.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("50786", "15", "2017-03-12 02:33:55", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("50787", "10", "2017-03-12 02:33:55", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("50788", "14", "2017-03-12 03:04:03", "155.94.134.193", "3");
INSERT INTO `wp_gf_form_view` VALUES("50789", "3", "2017-03-12 03:04:03", "155.94.134.193", "4");
INSERT INTO `wp_gf_form_view` VALUES("50790", "15", "2017-03-12 03:04:03", "155.94.134.193", "4");
INSERT INTO `wp_gf_form_view` VALUES("50791", "10", "2017-03-12 03:04:03", "155.94.134.193", "4");
INSERT INTO `wp_gf_form_view` VALUES("50792", "3", "2017-03-12 04:10:25", "202.46.49.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("50793", "15", "2017-03-12 04:10:25", "202.46.49.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("50794", "10", "2017-03-12 04:10:25", "202.46.49.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("50795", "3", "2017-03-12 05:01:19", "163.172.66.115", "4");
INSERT INTO `wp_gf_form_view` VALUES("50796", "15", "2017-03-12 05:34:25", "202.46.50.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("50797", "10", "2017-03-12 05:34:25", "202.46.50.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("50798", "3", "2017-03-12 06:00:27", "163.172.66.138", "7");
INSERT INTO `wp_gf_form_view` VALUES("50799", "15", "2017-03-12 06:07:55", "202.46.50.16", "4");
INSERT INTO `wp_gf_form_view` VALUES("50800", "10", "2017-03-12 06:07:55", "202.46.50.16", "4");
INSERT INTO `wp_gf_form_view` VALUES("50801", "6", "2017-03-12 06:33:35", "163.172.66.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("50802", "15", "2017-03-12 07:01:52", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("50803", "3", "2017-03-12 07:01:54", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50804", "10", "2017-03-12 07:01:54", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50805", "10", "2017-03-12 08:00:11", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("50806", "3", "2017-03-12 08:00:13", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("50807", "15", "2017-03-12 08:00:13", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50808", "3", "2017-03-12 09:16:05", "40.77.167.123", "4");
INSERT INTO `wp_gf_form_view` VALUES("50809", "15", "2017-03-12 09:16:05", "40.77.167.123", "3");
INSERT INTO `wp_gf_form_view` VALUES("50810", "10", "2017-03-12 09:16:06", "40.77.167.123", "3");
INSERT INTO `wp_gf_form_view` VALUES("50811", "3", "2017-03-12 10:01:52", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("50812", "15", "2017-03-12 10:15:00", "77.75.76.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("50813", "10", "2017-03-12 10:15:00", "77.75.76.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("50814", "3", "2017-03-12 11:19:04", "202.46.50.124", "3");
INSERT INTO `wp_gf_form_view` VALUES("50815", "15", "2017-03-12 11:19:04", "202.46.50.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("50816", "10", "2017-03-12 11:19:04", "202.46.50.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("50817", "3", "2017-03-12 12:26:02", "202.46.54.106", "107");
INSERT INTO `wp_gf_form_view` VALUES("50818", "15", "2017-03-12 12:26:02", "202.46.54.106", "77");
INSERT INTO `wp_gf_form_view` VALUES("50819", "10", "2017-03-12 12:26:02", "202.46.54.106", "89");
INSERT INTO `wp_gf_form_view` VALUES("50820", "13", "2017-03-12 12:42:51", "40.77.167.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("50821", "8", "2017-03-12 12:42:53", "40.77.167.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("50822", "12", "2017-03-12 12:43:21", "207.46.13.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("50823", "3", "2017-03-12 13:05:47", "163.172.65.235", "30");
INSERT INTO `wp_gf_form_view` VALUES("50824", "15", "2017-03-12 13:05:47", "163.172.65.235", "3");
INSERT INTO `wp_gf_form_view` VALUES("50825", "10", "2017-03-12 13:05:47", "163.172.65.235", "5");
INSERT INTO `wp_gf_form_view` VALUES("50826", "6", "2017-03-12 13:48:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50827", "9", "2017-03-12 13:48:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50828", "8", "2017-03-12 13:48:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50829", "13", "2017-03-12 13:48:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50830", "3", "2017-03-12 14:06:32", "202.46.53.175", "5");
INSERT INTO `wp_gf_form_view` VALUES("50831", "15", "2017-03-12 14:06:32", "202.46.53.175", "4");
INSERT INTO `wp_gf_form_view` VALUES("50832", "10", "2017-03-12 14:06:32", "202.46.53.175", "4");
INSERT INTO `wp_gf_form_view` VALUES("50833", "3", "2017-03-12 15:13:30", "202.46.50.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("50834", "15", "2017-03-12 15:13:30", "202.46.50.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("50835", "10", "2017-03-12 15:13:30", "202.46.50.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("50836", "15", "2017-03-12 16:17:38", "52.86.176.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("50837", "3", "2017-03-12 16:17:38", "52.86.176.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("50838", "10", "2017-03-12 16:17:38", "52.86.176.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("50839", "3", "2017-03-12 17:01:18", "164.132.161.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("50840", "15", "2017-03-12 17:01:18", "164.132.161.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("50841", "10", "2017-03-12 17:01:19", "164.132.161.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("50842", "3", "2017-03-12 19:30:24", "202.46.58.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("50843", "15", "2017-03-12 19:30:28", "202.46.58.136", "8");
INSERT INTO `wp_gf_form_view` VALUES("50844", "10", "2017-03-12 19:30:28", "202.46.58.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("50845", "3", "2017-03-12 20:07:33", "207.46.13.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("50846", "15", "2017-03-12 20:07:33", "207.46.13.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("50847", "10", "2017-03-12 20:07:33", "207.46.13.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("50848", "3", "2017-03-12 22:26:39", "77.75.76.160", "27");
INSERT INTO `wp_gf_form_view` VALUES("50849", "15", "2017-03-12 22:26:40", "77.75.76.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("50850", "10", "2017-03-12 22:26:40", "77.75.76.160", "5");
INSERT INTO `wp_gf_form_view` VALUES("50851", "6", "2017-03-12 22:49:10", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50852", "9", "2017-03-12 22:49:11", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50853", "8", "2017-03-12 22:49:11", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50854", "13", "2017-03-12 22:49:12", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50855", "2", "2017-03-12 23:31:30", "157.55.39.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("50856", "3", "2017-03-13 00:05:53", "68.180.229.247", "28");
INSERT INTO `wp_gf_form_view` VALUES("50857", "15", "2017-03-13 00:05:54", "68.180.229.247", "19");
INSERT INTO `wp_gf_form_view` VALUES("50858", "10", "2017-03-13 00:05:54", "68.180.229.247", "22");
INSERT INTO `wp_gf_form_view` VALUES("50859", "6", "2017-03-13 00:37:40", "46.229.168.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("50860", "14", "2017-03-13 00:38:07", "46.229.168.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("50861", "3", "2017-03-13 01:12:44", "77.75.76.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("50862", "15", "2017-03-13 01:12:44", "77.75.76.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("50863", "10", "2017-03-13 01:12:44", "77.75.76.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("50864", "7", "2017-03-13 01:31:02", "202.46.49.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("50865", "3", "2017-03-13 02:14:15", "77.75.79.11", "7");
INSERT INTO `wp_gf_form_view` VALUES("50866", "15", "2017-03-13 02:14:17", "77.75.79.11", "5");
INSERT INTO `wp_gf_form_view` VALUES("50867", "10", "2017-03-13 02:14:17", "77.75.79.11", "6");
INSERT INTO `wp_gf_form_view` VALUES("50868", "14", "2017-03-13 02:25:39", "45.45.150.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("50869", "3", "2017-03-13 03:11:30", "202.46.51.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("50870", "15", "2017-03-13 03:11:30", "202.46.51.27", "3");
INSERT INTO `wp_gf_form_view` VALUES("50871", "10", "2017-03-13 03:11:30", "202.46.51.27", "3");
INSERT INTO `wp_gf_form_view` VALUES("50872", "10", "2017-03-13 04:17:04", "51.255.65.33", "7");
INSERT INTO `wp_gf_form_view` VALUES("50873", "3", "2017-03-13 04:17:04", "51.255.65.33", "29");
INSERT INTO `wp_gf_form_view` VALUES("50874", "15", "2017-03-13 04:17:04", "51.255.65.33", "4");
INSERT INTO `wp_gf_form_view` VALUES("50875", "6", "2017-03-13 04:23:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50876", "9", "2017-03-13 04:23:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50877", "8", "2017-03-13 04:23:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50878", "13", "2017-03-13 04:23:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50879", "3", "2017-03-13 05:06:06", "95.211.196.214", "5");
INSERT INTO `wp_gf_form_view` VALUES("50880", "15", "2017-03-13 05:06:06", "95.211.196.214", "4");
INSERT INTO `wp_gf_form_view` VALUES("50881", "10", "2017-03-13 05:06:06", "95.211.196.214", "4");
INSERT INTO `wp_gf_form_view` VALUES("50882", "8", "2017-03-13 05:41:09", "157.55.39.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("50883", "3", "2017-03-13 06:09:20", "77.75.78.163", "42");
INSERT INTO `wp_gf_form_view` VALUES("50884", "15", "2017-03-13 06:09:20", "77.75.78.163", "7");
INSERT INTO `wp_gf_form_view` VALUES("50885", "10", "2017-03-13 06:09:20", "77.75.78.163", "13");
INSERT INTO `wp_gf_form_view` VALUES("50886", "14", "2017-03-13 06:26:44", "45.55.72.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("50887", "13", "2017-03-13 06:53:55", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("50888", "3", "2017-03-13 07:27:23", "163.172.66.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("50889", "15", "2017-03-13 07:27:23", "163.172.66.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("50890", "10", "2017-03-13 07:27:23", "163.172.66.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("50891", "14", "2017-03-13 08:06:37", "154.16.61.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("50892", "3", "2017-03-13 08:06:37", "154.16.61.29", "3");
INSERT INTO `wp_gf_form_view` VALUES("50893", "15", "2017-03-13 08:06:38", "154.16.61.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("50894", "10", "2017-03-13 08:06:38", "154.16.61.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("50895", "8", "2017-03-13 09:33:07", "131.253.25.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("50896", "3", "2017-03-13 09:33:10", "131.253.25.217", "28");
INSERT INTO `wp_gf_form_view` VALUES("50897", "15", "2017-03-13 09:33:10", "131.253.25.217", "3");
INSERT INTO `wp_gf_form_view` VALUES("50898", "10", "2017-03-13 09:33:10", "131.253.25.217", "5");
INSERT INTO `wp_gf_form_view` VALUES("50899", "6", "2017-03-13 09:49:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50900", "9", "2017-03-13 09:49:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50901", "13", "2017-03-13 09:49:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50902", "3", "2017-03-13 10:07:48", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("50903", "15", "2017-03-13 10:07:48", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("50904", "10", "2017-03-13 10:07:49", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("50905", "3", "2017-03-13 11:37:00", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("50906", "15", "2017-03-13 11:37:01", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("50907", "10", "2017-03-13 11:37:01", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("50908", "3", "2017-03-13 12:06:42", "40.77.167.124", "5");
INSERT INTO `wp_gf_form_view` VALUES("50909", "15", "2017-03-13 12:06:42", "40.77.167.124", "4");
INSERT INTO `wp_gf_form_view` VALUES("50910", "10", "2017-03-13 12:06:42", "40.77.167.124", "5");
INSERT INTO `wp_gf_form_view` VALUES("50911", "3", "2017-03-13 13:03:12", "163.172.66.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("50912", "15", "2017-03-13 13:03:12", "163.172.66.89", "3");
INSERT INTO `wp_gf_form_view` VALUES("50913", "10", "2017-03-13 13:03:12", "163.172.66.89", "3");
INSERT INTO `wp_gf_form_view` VALUES("50914", "3", "2017-03-13 14:03:48", "66.249.79.140", "11");
INSERT INTO `wp_gf_form_view` VALUES("50915", "15", "2017-03-13 14:03:48", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("50916", "10", "2017-03-13 14:03:48", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("50917", "14", "2017-03-13 14:11:13", "95.211.196.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("50918", "3", "2017-03-13 15:09:51", "202.46.51.17", "8");
INSERT INTO `wp_gf_form_view` VALUES("50919", "15", "2017-03-13 15:09:52", "202.46.51.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("50920", "10", "2017-03-13 15:09:52", "202.46.51.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("50921", "14", "2017-03-13 16:11:31", "204.152.206.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("50922", "3", "2017-03-13 16:11:32", "204.152.206.130", "10");
INSERT INTO `wp_gf_form_view` VALUES("50923", "15", "2017-03-13 16:11:32", "204.152.206.130", "7");
INSERT INTO `wp_gf_form_view` VALUES("50924", "10", "2017-03-13 16:11:32", "204.152.206.130", "6");
INSERT INTO `wp_gf_form_view` VALUES("50925", "3", "2017-03-13 17:20:20", "95.211.196.214", "15");
INSERT INTO `wp_gf_form_view` VALUES("50926", "15", "2017-03-13 17:20:20", "95.211.196.214", "9");
INSERT INTO `wp_gf_form_view` VALUES("50927", "10", "2017-03-13 17:20:20", "95.211.196.214", "8");
INSERT INTO `wp_gf_form_view` VALUES("50928", "3", "2017-03-13 18:09:35", "24.244.32.141", "11");
INSERT INTO `wp_gf_form_view` VALUES("50929", "15", "2017-03-13 18:23:53", "163.172.65.34", "11");
INSERT INTO `wp_gf_form_view` VALUES("50930", "10", "2017-03-13 18:23:53", "163.172.65.34", "10");
INSERT INTO `wp_gf_form_view` VALUES("50931", "3", "2017-03-13 19:00:16", "202.46.52.40", "29");
INSERT INTO `wp_gf_form_view` VALUES("50932", "15", "2017-03-13 19:00:16", "202.46.52.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("50933", "10", "2017-03-13 19:00:16", "202.46.52.40", "6");
INSERT INTO `wp_gf_form_view` VALUES("50934", "6", "2017-03-13 19:29:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50935", "9", "2017-03-13 19:29:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50936", "8", "2017-03-13 19:29:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50937", "13", "2017-03-13 19:29:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50938", "3", "2017-03-13 20:03:36", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("50939", "15", "2017-03-13 20:03:36", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("50940", "10", "2017-03-13 20:03:36", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("50941", "3", "2017-03-13 21:15:29", "202.46.56.62", "10");
INSERT INTO `wp_gf_form_view` VALUES("50942", "15", "2017-03-13 21:15:30", "202.46.56.62", "9");
INSERT INTO `wp_gf_form_view` VALUES("50943", "10", "2017-03-13 21:15:30", "202.46.56.62", "7");
INSERT INTO `wp_gf_form_view` VALUES("50944", "3", "2017-03-13 22:11:03", "163.172.65.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("50945", "15", "2017-03-13 22:11:05", "163.172.65.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("50946", "10", "2017-03-13 22:11:05", "163.172.65.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("50947", "10", "2017-03-14 00:33:04", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("50948", "3", "2017-03-14 00:33:09", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("50949", "15", "2017-03-14 00:33:09", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("50950", "3", "2017-03-14 01:08:18", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("50951", "6", "2017-03-14 01:08:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50952", "9", "2017-03-14 01:08:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50953", "8", "2017-03-14 01:08:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50954", "10", "2017-03-14 01:08:19", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("50955", "13", "2017-03-14 01:08:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50956", "15", "2017-03-14 01:08:20", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("50957", "3", "2017-03-14 02:04:37", "51.255.65.12", "19");
INSERT INTO `wp_gf_form_view` VALUES("50958", "15", "2017-03-14 02:04:37", "51.255.65.12", "15");
INSERT INTO `wp_gf_form_view` VALUES("50959", "10", "2017-03-14 02:04:37", "51.255.65.12", "16");
INSERT INTO `wp_gf_form_view` VALUES("50960", "14", "2017-03-14 02:12:12", "70.67.60.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("50961", "11", "2017-03-14 02:49:15", "46.31.171.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("50962", "2", "2017-03-14 02:50:21", "46.31.171.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("50963", "10", "2017-03-14 03:32:27", "51.255.65.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("50964", "3", "2017-03-14 03:32:28", "51.255.65.56", "5");
INSERT INTO `wp_gf_form_view` VALUES("50965", "15", "2017-03-14 03:32:28", "51.255.65.56", "5");
INSERT INTO `wp_gf_form_view` VALUES("50966", "14", "2017-03-14 03:58:43", "172.103.218.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("50967", "3", "2017-03-14 04:11:31", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("50968", "15", "2017-03-14 04:11:31", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("50969", "10", "2017-03-14 04:11:31", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("50970", "10", "2017-03-14 06:00:43", "51.255.65.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("50971", "3", "2017-03-14 06:00:46", "51.255.65.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("50972", "15", "2017-03-14 06:00:46", "51.255.65.62", "4");
INSERT INTO `wp_gf_form_view` VALUES("50973", "3", "2017-03-14 07:23:58", "77.246.156.146", "70");
INSERT INTO `wp_gf_form_view` VALUES("50974", "6", "2017-03-14 07:28:40", "77.246.156.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("50975", "9", "2017-03-14 07:28:41", "77.246.156.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("50976", "8", "2017-03-14 07:28:41", "77.246.156.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("50977", "10", "2017-03-14 07:28:41", "77.246.156.146", "4");
INSERT INTO `wp_gf_form_view` VALUES("50978", "13", "2017-03-14 07:28:42", "77.246.156.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("50979", "15", "2017-03-14 07:28:42", "77.246.156.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("50980", "3", "2017-03-14 08:07:32", "202.46.50.157", "5");
INSERT INTO `wp_gf_form_view` VALUES("50981", "15", "2017-03-14 08:07:32", "202.46.50.157", "3");
INSERT INTO `wp_gf_form_view` VALUES("50982", "10", "2017-03-14 08:07:32", "202.46.50.157", "3");
INSERT INTO `wp_gf_form_view` VALUES("50983", "3", "2017-03-14 09:33:55", "213.251.182.105", "6");
INSERT INTO `wp_gf_form_view` VALUES("50984", "15", "2017-03-14 09:33:57", "213.251.182.105", "5");
INSERT INTO `wp_gf_form_view` VALUES("50985", "10", "2017-03-14 09:33:57", "213.251.182.105", "5");
INSERT INTO `wp_gf_form_view` VALUES("50986", "3", "2017-03-14 10:13:20", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("50987", "6", "2017-03-14 10:13:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50988", "9", "2017-03-14 10:13:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50989", "8", "2017-03-14 10:13:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50990", "10", "2017-03-14 10:13:21", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("50991", "13", "2017-03-14 10:13:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("50992", "15", "2017-03-14 10:13:22", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("50993", "2", "2017-03-14 10:34:52", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("50994", "3", "2017-03-14 12:28:58", "144.76.8.134", "13");
INSERT INTO `wp_gf_form_view` VALUES("50995", "15", "2017-03-14 12:29:00", "144.76.8.134", "8");
INSERT INTO `wp_gf_form_view` VALUES("50996", "10", "2017-03-14 12:29:00", "144.76.8.134", "8");
INSERT INTO `wp_gf_form_view` VALUES("50997", "14", "2017-03-14 13:03:08", "179.43.132.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("50998", "3", "2017-03-14 13:03:08", "179.43.132.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("50999", "15", "2017-03-14 13:03:08", "179.43.132.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("51000", "10", "2017-03-14 13:03:08", "179.43.132.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("51001", "3", "2017-03-14 14:02:58", "202.46.52.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("51002", "15", "2017-03-14 14:02:58", "202.46.52.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("51003", "10", "2017-03-14 14:02:58", "202.46.52.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("51004", "3", "2017-03-14 15:54:01", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("51005", "6", "2017-03-14 15:54:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51006", "9", "2017-03-14 15:54:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51007", "8", "2017-03-14 15:54:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51008", "10", "2017-03-14 15:54:03", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("51009", "13", "2017-03-14 15:54:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51010", "15", "2017-03-14 15:54:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("51011", "3", "2017-03-14 16:58:58", "51.255.65.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("51012", "15", "2017-03-14 16:59:00", "51.255.65.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("51013", "10", "2017-03-14 16:59:00", "51.255.65.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("51014", "3", "2017-03-14 17:03:50", "77.75.79.11", "8");
INSERT INTO `wp_gf_form_view` VALUES("51015", "15", "2017-03-14 17:03:50", "77.75.79.11", "10");
INSERT INTO `wp_gf_form_view` VALUES("51016", "10", "2017-03-14 17:03:50", "77.75.79.11", "11");
INSERT INTO `wp_gf_form_view` VALUES("51017", "3", "2017-03-14 18:11:53", "202.46.55.154", "7");
INSERT INTO `wp_gf_form_view` VALUES("51018", "15", "2017-03-14 18:11:53", "202.46.55.154", "6");
INSERT INTO `wp_gf_form_view` VALUES("51019", "10", "2017-03-14 18:11:53", "202.46.55.154", "6");
INSERT INTO `wp_gf_form_view` VALUES("51020", "3", "2017-03-14 19:35:23", "184.66.224.18", "5");
INSERT INTO `wp_gf_form_view` VALUES("51021", "15", "2017-03-14 19:35:27", "184.66.224.18", "4");
INSERT INTO `wp_gf_form_view` VALUES("51022", "10", "2017-03-14 19:35:28", "184.66.224.18", "4");
INSERT INTO `wp_gf_form_view` VALUES("51023", "3", "2017-03-14 20:10:43", "77.75.76.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("51024", "15", "2017-03-14 20:10:44", "77.75.76.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("51025", "10", "2017-03-14 20:10:44", "77.75.76.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("51026", "14", "2017-03-14 21:09:55", "142.31.10.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("51027", "3", "2017-03-14 21:09:57", "142.31.10.42", "7");
INSERT INTO `wp_gf_form_view` VALUES("51028", "15", "2017-03-14 21:09:57", "142.31.10.42", "6");
INSERT INTO `wp_gf_form_view` VALUES("51029", "10", "2017-03-14 21:09:57", "142.31.10.42", "6");
INSERT INTO `wp_gf_form_view` VALUES("51030", "3", "2017-03-14 22:06:28", "96.54.241.124", "5");
INSERT INTO `wp_gf_form_view` VALUES("51031", "15", "2017-03-14 22:06:30", "96.54.241.124", "4");
INSERT INTO `wp_gf_form_view` VALUES("51032", "10", "2017-03-14 22:06:30", "96.54.241.124", "4");
INSERT INTO `wp_gf_form_view` VALUES("51033", "5", "2017-03-14 22:58:46", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("51034", "3", "2017-03-14 23:19:09", "163.172.64.237", "17");
INSERT INTO `wp_gf_form_view` VALUES("51035", "15", "2017-03-14 23:19:11", "163.172.64.237", "9");
INSERT INTO `wp_gf_form_view` VALUES("51036", "10", "2017-03-14 23:19:11", "163.172.64.237", "9");
INSERT INTO `wp_gf_form_view` VALUES("51037", "3", "2017-03-15 00:04:21", "202.46.48.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("51038", "15", "2017-03-15 00:04:21", "202.46.48.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("51039", "10", "2017-03-15 00:04:21", "202.46.48.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("51040", "3", "2017-03-15 01:44:31", "202.46.49.201", "26");
INSERT INTO `wp_gf_form_view` VALUES("51041", "15", "2017-03-15 01:44:36", "202.46.49.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("51042", "10", "2017-03-15 01:44:36", "202.46.49.201", "4");
INSERT INTO `wp_gf_form_view` VALUES("51043", "6", "2017-03-15 01:45:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51044", "9", "2017-03-15 01:45:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51045", "8", "2017-03-15 01:45:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51046", "13", "2017-03-15 01:45:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51047", "3", "2017-03-15 02:09:07", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("51048", "15", "2017-03-15 02:09:07", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51049", "10", "2017-03-15 02:09:07", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51050", "3", "2017-03-15 03:17:09", "157.55.39.92", "5");
INSERT INTO `wp_gf_form_view` VALUES("51051", "15", "2017-03-15 03:17:09", "157.55.39.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("51052", "10", "2017-03-15 03:17:09", "157.55.39.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("51053", "3", "2017-03-15 05:40:35", "66.249.79.48", "28");
INSERT INTO `wp_gf_form_view` VALUES("51054", "15", "2017-03-15 05:40:37", "66.249.79.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("51055", "10", "2017-03-15 05:40:37", "66.249.79.48", "9");
INSERT INTO `wp_gf_form_view` VALUES("51056", "8", "2017-03-15 05:47:55", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("51057", "13", "2017-03-15 05:47:55", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("51058", "3", "2017-03-15 06:18:02", "88.99.27.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("51059", "15", "2017-03-15 06:18:07", "88.99.27.172", "4");
INSERT INTO `wp_gf_form_view` VALUES("51060", "10", "2017-03-15 06:18:07", "88.99.27.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("51061", "14", "2017-03-15 06:58:15", "184.175.212.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("51062", "3", "2017-03-15 07:10:38", "51.255.65.6", "31");
INSERT INTO `wp_gf_form_view` VALUES("51063", "15", "2017-03-15 07:10:38", "51.255.65.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("51064", "10", "2017-03-15 07:10:38", "51.255.65.6", "8");
INSERT INTO `wp_gf_form_view` VALUES("51065", "6", "2017-03-15 07:20:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51066", "9", "2017-03-15 07:20:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51067", "8", "2017-03-15 07:20:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51068", "13", "2017-03-15 07:20:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51069", "14", "2017-03-15 07:39:21", "188.208.0.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("51070", "3", "2017-03-15 08:17:30", "202.46.58.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("51071", "15", "2017-03-15 08:17:31", "202.46.58.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("51072", "10", "2017-03-15 08:17:31", "202.46.58.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("51073", "3", "2017-03-15 09:21:30", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51074", "15", "2017-03-15 09:21:31", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51075", "10", "2017-03-15 09:21:32", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51076", "3", "2017-03-15 10:12:59", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("51077", "15", "2017-03-15 10:12:59", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("51078", "10", "2017-03-15 10:12:59", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("51079", "3", "2017-03-15 11:03:29", "164.132.161.90", "4");
INSERT INTO `wp_gf_form_view` VALUES("51080", "15", "2017-03-15 11:03:29", "164.132.161.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("51081", "10", "2017-03-15 11:03:29", "164.132.161.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("51082", "3", "2017-03-15 12:08:19", "82.145.222.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("51083", "15", "2017-03-15 12:08:19", "82.145.222.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("51084", "10", "2017-03-15 12:08:19", "82.145.222.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("51085", "12", "2017-03-15 13:06:17", "66.249.79.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("51086", "3", "2017-03-15 13:06:19", "66.249.79.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("51087", "15", "2017-03-15 13:06:19", "66.249.79.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("51088", "10", "2017-03-15 13:06:19", "66.249.79.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("51089", "13", "2017-03-15 14:11:07", "66.249.79.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("51090", "3", "2017-03-15 14:11:09", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("51091", "15", "2017-03-15 14:11:09", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("51092", "10", "2017-03-15 14:11:09", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("51093", "11", "2017-03-15 15:09:34", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51094", "3", "2017-03-15 15:13:28", "207.46.13.184", "6");
INSERT INTO `wp_gf_form_view` VALUES("51095", "15", "2017-03-15 15:13:28", "207.46.13.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("51096", "10", "2017-03-15 15:13:29", "207.46.13.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("51097", "9", "2017-03-15 15:19:33", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51098", "3", "2017-03-15 16:00:25", "66.249.79.40", "30");
INSERT INTO `wp_gf_form_view` VALUES("51099", "15", "2017-03-15 16:00:25", "66.249.79.40", "5");
INSERT INTO `wp_gf_form_view` VALUES("51100", "10", "2017-03-15 16:00:25", "66.249.79.40", "7");
INSERT INTO `wp_gf_form_view` VALUES("51101", "11", "2017-03-15 16:03:03", "24.68.108.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("51102", "13", "2017-03-15 16:32:27", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("51103", "6", "2017-03-15 16:45:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51104", "9", "2017-03-15 16:45:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51105", "8", "2017-03-15 16:45:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51106", "3", "2017-03-15 17:44:26", "52.87.223.91", "8");
INSERT INTO `wp_gf_form_view` VALUES("51107", "15", "2017-03-15 17:44:28", "52.87.223.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("51108", "10", "2017-03-15 17:44:28", "52.87.223.91", "6");
INSERT INTO `wp_gf_form_view` VALUES("51109", "3", "2017-03-15 18:02:11", "176.9.110.70", "43");
INSERT INTO `wp_gf_form_view` VALUES("51110", "8", "2017-03-15 18:02:18", "176.9.110.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("51111", "13", "2017-03-15 18:02:18", "176.9.110.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("51112", "15", "2017-03-15 18:26:34", "54.204.207.174", "5");
INSERT INTO `wp_gf_form_view` VALUES("51113", "10", "2017-03-15 18:26:34", "54.204.207.174", "6");
INSERT INTO `wp_gf_form_view` VALUES("51114", "9", "2017-03-15 19:02:36", "202.46.49.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("51115", "3", "2017-03-15 19:02:36", "202.46.49.157", "9");
INSERT INTO `wp_gf_form_view` VALUES("51116", "15", "2017-03-15 19:02:36", "202.46.49.157", "10");
INSERT INTO `wp_gf_form_view` VALUES("51117", "10", "2017-03-15 19:02:36", "202.46.49.157", "9");
INSERT INTO `wp_gf_form_view` VALUES("51118", "14", "2017-03-15 19:31:21", "146.0.74.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("51119", "7", "2017-03-15 19:35:55", "202.46.53.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("51120", "3", "2017-03-15 20:12:58", "95.211.196.210", "9");
INSERT INTO `wp_gf_form_view` VALUES("51121", "15", "2017-03-15 20:12:59", "95.211.196.210", "9");
INSERT INTO `wp_gf_form_view` VALUES("51122", "10", "2017-03-15 20:12:59", "95.211.196.210", "8");
INSERT INTO `wp_gf_form_view` VALUES("51123", "3", "2017-03-15 21:52:53", "207.46.13.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("51124", "15", "2017-03-15 21:52:55", "207.46.13.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("51125", "10", "2017-03-15 21:52:55", "207.46.13.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("51126", "10", "2017-03-15 22:14:56", "51.255.65.82", "13");
INSERT INTO `wp_gf_form_view` VALUES("51127", "3", "2017-03-15 22:14:57", "51.255.65.82", "34");
INSERT INTO `wp_gf_form_view` VALUES("51128", "15", "2017-03-15 22:14:57", "51.255.65.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("51129", "6", "2017-03-15 22:55:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51130", "9", "2017-03-15 22:55:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51131", "8", "2017-03-15 22:55:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51132", "13", "2017-03-15 22:55:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51133", "3", "2017-03-15 23:11:07", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("51134", "15", "2017-03-15 23:11:07", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51135", "10", "2017-03-15 23:11:08", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51136", "3", "2017-03-16 00:21:19", "51.255.65.37", "4");
INSERT INTO `wp_gf_form_view` VALUES("51137", "15", "2017-03-16 00:21:21", "51.255.65.37", "5");
INSERT INTO `wp_gf_form_view` VALUES("51138", "10", "2017-03-16 00:21:21", "51.255.65.37", "4");
INSERT INTO `wp_gf_form_view` VALUES("51139", "6", "2017-03-16 01:00:59", "202.46.49.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("51140", "3", "2017-03-16 01:01:00", "202.46.49.198", "5");
INSERT INTO `wp_gf_form_view` VALUES("51141", "15", "2017-03-16 01:01:00", "202.46.49.198", "5");
INSERT INTO `wp_gf_form_view` VALUES("51142", "10", "2017-03-16 01:01:00", "202.46.49.198", "5");
INSERT INTO `wp_gf_form_view` VALUES("51143", "3", "2017-03-16 02:07:41", "202.46.57.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("51144", "15", "2017-03-16 02:07:42", "202.46.57.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("51145", "10", "2017-03-16 02:07:42", "202.46.57.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("51146", "14", "2017-03-16 03:32:19", "157.55.39.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("51147", "3", "2017-03-16 03:32:25", "157.55.39.73", "4");
INSERT INTO `wp_gf_form_view` VALUES("51148", "15", "2017-03-16 03:32:25", "157.55.39.73", "4");
INSERT INTO `wp_gf_form_view` VALUES("51149", "10", "2017-03-16 03:32:25", "157.55.39.73", "4");
INSERT INTO `wp_gf_form_view` VALUES("51150", "3", "2017-03-16 04:20:58", "77.75.78.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("51151", "15", "2017-03-16 04:20:58", "77.75.78.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("51152", "10", "2017-03-16 04:20:58", "77.75.78.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("51153", "14", "2017-03-16 04:54:20", "202.46.54.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("51154", "3", "2017-03-16 05:07:30", "77.75.76.166", "9");
INSERT INTO `wp_gf_form_view` VALUES("51155", "15", "2017-03-16 05:27:39", "202.46.52.118", "5");
INSERT INTO `wp_gf_form_view` VALUES("51156", "10", "2017-03-16 05:27:40", "202.46.52.118", "5");
INSERT INTO `wp_gf_form_view` VALUES("51157", "3", "2017-03-16 06:02:03", "77.75.78.167", "5");
INSERT INTO `wp_gf_form_view` VALUES("51158", "15", "2017-03-16 06:02:03", "77.75.78.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("51159", "10", "2017-03-16 06:02:03", "77.75.78.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("51160", "14", "2017-03-16 06:22:25", "184.66.145.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("51161", "10", "2017-03-16 07:57:03", "77.75.79.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("51162", "3", "2017-03-16 07:57:05", "77.75.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("51163", "15", "2017-03-16 07:57:05", "77.75.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("51164", "3", "2017-03-16 08:02:45", "68.180.229.247", "28");
INSERT INTO `wp_gf_form_view` VALUES("51165", "15", "2017-03-16 08:02:45", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51166", "10", "2017-03-16 08:02:45", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("51167", "6", "2017-03-16 08:17:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51168", "9", "2017-03-16 08:17:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51169", "8", "2017-03-16 08:17:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51170", "13", "2017-03-16 08:17:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51171", "15", "2017-03-16 10:41:28", "185.26.92.76", "11");
INSERT INTO `wp_gf_form_view` VALUES("51172", "3", "2017-03-16 10:41:31", "185.26.92.76", "13");
INSERT INTO `wp_gf_form_view` VALUES("51173", "10", "2017-03-16 10:41:31", "185.26.92.76", "15");
INSERT INTO `wp_gf_form_view` VALUES("51174", "3", "2017-03-16 11:20:36", "66.249.79.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("51175", "15", "2017-03-16 11:20:36", "66.249.79.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("51176", "10", "2017-03-16 11:20:36", "66.249.79.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("51177", "11", "2017-03-16 11:36:59", "185.26.92.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51178", "2", "2017-03-16 11:37:15", "185.26.92.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51179", "14", "2017-03-16 11:38:50", "185.26.92.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51180", "3", "2017-03-16 12:38:25", "185.26.92.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51181", "15", "2017-03-16 12:38:26", "185.26.92.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51182", "10", "2017-03-16 12:38:26", "185.26.92.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51183", "3", "2017-03-16 14:29:15", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("51184", "6", "2017-03-16 14:29:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51185", "9", "2017-03-16 14:29:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51186", "8", "2017-03-16 14:29:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51187", "10", "2017-03-16 14:29:17", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("51188", "13", "2017-03-16 14:29:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51189", "15", "2017-03-16 14:29:18", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("51190", "3", "2017-03-16 15:52:26", "51.255.65.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51191", "15", "2017-03-16 15:52:27", "51.255.65.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("51192", "10", "2017-03-16 15:52:27", "51.255.65.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("51193", "3", "2017-03-16 16:06:13", "24.68.248.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("51194", "15", "2017-03-16 16:06:13", "24.68.248.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("51195", "10", "2017-03-16 16:06:13", "24.68.248.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("51196", "9", "2017-03-16 17:47:09", "202.46.49.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("51197", "3", "2017-03-16 17:47:12", "202.46.49.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("51198", "15", "2017-03-16 17:47:12", "202.46.49.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("51199", "10", "2017-03-16 17:47:12", "202.46.49.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("51200", "10", "2017-03-16 18:05:37", "205.201.132.14", "7");
INSERT INTO `wp_gf_form_view` VALUES("51201", "3", "2017-03-16 18:05:37", "205.201.132.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("51202", "15", "2017-03-16 18:05:37", "205.201.132.14", "5");
INSERT INTO `wp_gf_form_view` VALUES("51203", "10", "2017-03-16 19:10:22", "163.172.66.96", "11");
INSERT INTO `wp_gf_form_view` VALUES("51204", "3", "2017-03-16 19:10:23", "163.172.66.96", "11");
INSERT INTO `wp_gf_form_view` VALUES("51205", "15", "2017-03-16 19:10:23", "163.172.66.96", "10");
INSERT INTO `wp_gf_form_view` VALUES("51206", "14", "2017-03-16 19:14:58", "64.34.217.4", "5");
INSERT INTO `wp_gf_form_view` VALUES("51207", "3", "2017-03-16 20:06:20", "24.69.27.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("51208", "15", "2017-03-16 20:06:20", "24.69.27.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("51209", "10", "2017-03-16 20:06:20", "24.69.27.66", "5");
INSERT INTO `wp_gf_form_view` VALUES("51210", "10", "2017-03-16 21:21:34", "164.132.161.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("51211", "3", "2017-03-16 21:42:17", "64.114.197.211", "4");
INSERT INTO `wp_gf_form_view` VALUES("51212", "15", "2017-03-16 21:42:18", "64.114.197.211", "3");
INSERT INTO `wp_gf_form_view` VALUES("51213", "3", "2017-03-16 22:07:38", "95.211.196.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("51214", "15", "2017-03-16 22:07:38", "95.211.196.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("51215", "10", "2017-03-16 22:07:38", "95.211.196.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("51216", "3", "2017-03-16 23:57:05", "163.172.65.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("51217", "15", "2017-03-16 23:57:06", "163.172.65.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("51218", "10", "2017-03-16 23:57:06", "163.172.65.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("51219", "3", "2017-03-17 00:27:54", "202.46.56.71", "28");
INSERT INTO `wp_gf_form_view` VALUES("51220", "15", "2017-03-17 00:27:54", "202.46.56.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("51221", "10", "2017-03-17 00:27:54", "202.46.56.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("51222", "6", "2017-03-17 00:45:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51223", "9", "2017-03-17 00:45:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51224", "8", "2017-03-17 00:45:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51225", "13", "2017-03-17 00:45:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51226", "3", "2017-03-17 01:00:25", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51227", "15", "2017-03-17 01:00:25", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51228", "10", "2017-03-17 01:00:25", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51229", "3", "2017-03-17 02:09:55", "185.9.233.4", "112");
INSERT INTO `wp_gf_form_view` VALUES("51230", "15", "2017-03-17 02:09:57", "185.9.233.4", "77");
INSERT INTO `wp_gf_form_view` VALUES("51231", "10", "2017-03-17 02:09:57", "185.9.233.4", "89");
INSERT INTO `wp_gf_form_view` VALUES("51232", "9", "2017-03-17 02:11:12", "157.55.39.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("51233", "13", "2017-03-17 02:12:50", "40.77.167.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("51234", "8", "2017-03-17 02:13:29", "40.77.167.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("51235", "14", "2017-03-17 03:14:00", "146.0.74.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("51236", "3", "2017-03-17 03:14:15", "146.0.74.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("51237", "15", "2017-03-17 03:14:16", "146.0.74.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("51238", "10", "2017-03-17 03:14:16", "146.0.74.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("51239", "3", "2017-03-17 04:34:32", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51240", "15", "2017-03-17 04:34:33", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51241", "10", "2017-03-17 04:34:33", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51242", "3", "2017-03-17 05:45:55", "202.46.48.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("51243", "15", "2017-03-17 05:45:56", "202.46.48.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("51244", "10", "2017-03-17 05:45:57", "202.46.48.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("51245", "3", "2017-03-17 06:33:14", "66.249.79.48", "31");
INSERT INTO `wp_gf_form_view` VALUES("51246", "15", "2017-03-17 06:33:18", "66.249.79.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("51247", "10", "2017-03-17 06:33:18", "66.249.79.48", "9");
INSERT INTO `wp_gf_form_view` VALUES("51248", "6", "2017-03-17 06:48:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51249", "9", "2017-03-17 06:48:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51250", "8", "2017-03-17 06:48:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51251", "13", "2017-03-17 06:48:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51252", "10", "2017-03-17 07:02:58", "24.68.137.19", "4");
INSERT INTO `wp_gf_form_view` VALUES("51253", "3", "2017-03-17 07:02:58", "24.68.137.19", "3");
INSERT INTO `wp_gf_form_view` VALUES("51254", "15", "2017-03-17 07:02:58", "24.68.137.19", "4");
INSERT INTO `wp_gf_form_view` VALUES("51255", "14", "2017-03-17 07:34:24", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51256", "3", "2017-03-17 08:01:52", "202.46.48.204", "23");
INSERT INTO `wp_gf_form_view` VALUES("51257", "15", "2017-03-17 08:01:52", "202.46.48.204", "13");
INSERT INTO `wp_gf_form_view` VALUES("51258", "10", "2017-03-17 08:01:52", "202.46.48.204", "13");
INSERT INTO `wp_gf_form_view` VALUES("51259", "3", "2017-03-17 09:41:48", "202.46.57.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("51260", "15", "2017-03-17 09:41:48", "202.46.57.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("51261", "10", "2017-03-17 09:41:48", "202.46.57.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("51262", "3", "2017-03-17 10:15:06", "202.46.54.72", "20");
INSERT INTO `wp_gf_form_view` VALUES("51263", "15", "2017-03-17 10:15:07", "202.46.54.72", "13");
INSERT INTO `wp_gf_form_view` VALUES("51264", "10", "2017-03-17 10:15:07", "202.46.54.72", "13");
INSERT INTO `wp_gf_form_view` VALUES("51265", "11", "2017-03-17 10:16:23", "145.132.56.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("51266", "2", "2017-03-17 10:17:13", "145.132.56.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("51267", "14", "2017-03-17 10:48:27", "202.46.50.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("51268", "3", "2017-03-17 12:11:09", "157.55.39.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("51269", "15", "2017-03-17 12:11:11", "157.55.39.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51270", "10", "2017-03-17 12:11:11", "157.55.39.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51271", "3", "2017-03-17 13:20:33", "202.46.49.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("51272", "15", "2017-03-17 13:20:36", "202.46.49.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("51273", "10", "2017-03-17 13:20:36", "202.46.49.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("51274", "3", "2017-03-17 14:30:09", "70.66.183.0", "3");
INSERT INTO `wp_gf_form_view` VALUES("51275", "15", "2017-03-17 14:30:10", "70.66.183.0", "2");
INSERT INTO `wp_gf_form_view` VALUES("51276", "10", "2017-03-17 14:30:10", "70.66.183.0", "2");
INSERT INTO `wp_gf_form_view` VALUES("51277", "3", "2017-03-17 15:10:43", "66.249.79.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("51278", "15", "2017-03-17 15:10:43", "66.249.79.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("51279", "10", "2017-03-17 15:10:43", "66.249.79.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("51280", "3", "2017-03-17 16:12:20", "163.172.65.11", "34");
INSERT INTO `wp_gf_form_view` VALUES("51281", "15", "2017-03-17 16:12:27", "163.172.65.11", "9");
INSERT INTO `wp_gf_form_view` VALUES("51282", "10", "2017-03-17 16:12:27", "163.172.65.11", "11");
INSERT INTO `wp_gf_form_view` VALUES("51283", "14", "2017-03-17 16:46:38", "216.232.155.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("51284", "6", "2017-03-17 16:52:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51285", "9", "2017-03-17 16:52:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51286", "8", "2017-03-17 16:52:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51287", "13", "2017-03-17 16:52:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51288", "3", "2017-03-17 17:03:29", "207.194.133.9", "10");
INSERT INTO `wp_gf_form_view` VALUES("51289", "15", "2017-03-17 17:03:29", "207.194.133.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("51290", "10", "2017-03-17 17:03:29", "207.194.133.9", "10");
INSERT INTO `wp_gf_form_view` VALUES("51291", "3", "2017-03-17 18:01:20", "151.80.31.150", "7");
INSERT INTO `wp_gf_form_view` VALUES("51292", "15", "2017-03-17 18:05:05", "202.46.49.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("51293", "10", "2017-03-17 18:05:05", "202.46.49.116", "5");
INSERT INTO `wp_gf_form_view` VALUES("51294", "3", "2017-03-17 19:11:43", "202.46.56.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("51295", "15", "2017-03-17 19:11:43", "202.46.56.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("51296", "10", "2017-03-17 19:11:43", "202.46.56.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("51297", "15", "2017-03-17 20:01:02", "151.80.31.154", "3");
INSERT INTO `wp_gf_form_view` VALUES("51298", "3", "2017-03-17 20:18:23", "202.46.51.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("51299", "10", "2017-03-17 20:18:24", "202.46.51.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("51300", "14", "2017-03-17 20:28:19", "104.140.4.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("51301", "3", "2017-03-17 21:25:06", "202.46.53.47", "10");
INSERT INTO `wp_gf_form_view` VALUES("51302", "15", "2017-03-17 21:25:10", "202.46.53.47", "2");
INSERT INTO `wp_gf_form_view` VALUES("51303", "10", "2017-03-17 21:25:10", "202.46.53.47", "2");
INSERT INTO `wp_gf_form_view` VALUES("51304", "3", "2017-03-17 22:20:57", "207.194.133.9", "30");
INSERT INTO `wp_gf_form_view` VALUES("51305", "15", "2017-03-17 22:21:01", "207.194.133.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("51306", "10", "2017-03-17 22:21:01", "207.194.133.9", "9");
INSERT INTO `wp_gf_form_view` VALUES("51307", "6", "2017-03-17 22:57:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51308", "9", "2017-03-17 22:57:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51309", "8", "2017-03-17 22:57:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51310", "13", "2017-03-17 22:57:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51311", "15", "2017-03-17 23:19:18", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("51312", "3", "2017-03-17 23:27:52", "207.46.13.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("51313", "10", "2017-03-17 23:27:52", "207.46.13.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("51314", "3", "2017-03-18 00:30:02", "24.108.4.141", "3");
INSERT INTO `wp_gf_form_view` VALUES("51315", "15", "2017-03-18 00:30:02", "24.108.4.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("51316", "10", "2017-03-18 00:30:02", "24.108.4.141", "3");
INSERT INTO `wp_gf_form_view` VALUES("51317", "3", "2017-03-18 01:27:13", "202.46.53.150", "4");
INSERT INTO `wp_gf_form_view` VALUES("51318", "15", "2017-03-18 01:27:13", "202.46.53.150", "3");
INSERT INTO `wp_gf_form_view` VALUES("51319", "10", "2017-03-18 01:27:13", "202.46.53.150", "3");
INSERT INTO `wp_gf_form_view` VALUES("51320", "15", "2017-03-18 02:27:40", "154.20.88.212", "7");
INSERT INTO `wp_gf_form_view` VALUES("51321", "3", "2017-03-18 02:27:41", "154.20.88.212", "6");
INSERT INTO `wp_gf_form_view` VALUES("51322", "10", "2017-03-18 02:27:41", "154.20.88.212", "5");
INSERT INTO `wp_gf_form_view` VALUES("51323", "3", "2017-03-18 03:43:46", "164.132.161.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("51324", "15", "2017-03-18 03:52:44", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51325", "10", "2017-03-18 03:52:44", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51326", "3", "2017-03-18 04:09:32", "163.172.66.5", "19");
INSERT INTO `wp_gf_form_view` VALUES("51327", "15", "2017-03-18 04:09:32", "163.172.66.5", "11");
INSERT INTO `wp_gf_form_view` VALUES("51328", "10", "2017-03-18 04:09:33", "163.172.66.5", "11");
INSERT INTO `wp_gf_form_view` VALUES("51329", "3", "2017-03-18 05:40:15", "77.75.78.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("51330", "15", "2017-03-18 05:40:17", "77.75.78.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("51331", "10", "2017-03-18 05:40:17", "77.75.78.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("51332", "3", "2017-03-18 06:30:42", "202.46.55.150", "2");
INSERT INTO `wp_gf_form_view` VALUES("51333", "15", "2017-03-18 06:30:44", "202.46.55.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("51334", "10", "2017-03-18 06:30:44", "202.46.55.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("51335", "3", "2017-03-18 07:04:01", "202.46.48.125", "3");
INSERT INTO `wp_gf_form_view` VALUES("51336", "15", "2017-03-18 07:04:03", "202.46.48.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("51337", "10", "2017-03-18 07:04:03", "202.46.48.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("51338", "5", "2017-03-18 08:04:07", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("51339", "3", "2017-03-18 08:04:08", "77.75.76.162", "26");
INSERT INTO `wp_gf_form_view` VALUES("51340", "15", "2017-03-18 08:04:09", "77.75.76.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("51341", "10", "2017-03-18 08:04:10", "77.75.76.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("51342", "6", "2017-03-18 08:23:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51343", "9", "2017-03-18 08:23:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51344", "8", "2017-03-18 08:23:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51345", "13", "2017-03-18 08:23:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51346", "3", "2017-03-18 09:06:30", "77.75.76.168", "28");
INSERT INTO `wp_gf_form_view` VALUES("51347", "15", "2017-03-18 09:06:30", "77.75.76.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("51348", "10", "2017-03-18 09:06:30", "77.75.76.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("51349", "6", "2017-03-18 09:41:14", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51350", "9", "2017-03-18 09:41:15", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51351", "8", "2017-03-18 09:41:15", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51352", "13", "2017-03-18 09:41:16", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51353", "14", "2017-03-18 10:18:08", "104.247.7.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("51354", "3", "2017-03-18 10:18:09", "104.247.7.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("51355", "15", "2017-03-18 10:18:09", "104.247.7.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("51356", "10", "2017-03-18 10:18:09", "104.247.7.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("51357", "3", "2017-03-18 11:04:29", "77.75.77.62", "4");
INSERT INTO `wp_gf_form_view` VALUES("51358", "15", "2017-03-18 11:04:31", "77.75.77.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("51359", "10", "2017-03-18 11:04:31", "77.75.77.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("51360", "2", "2017-03-18 11:39:40", "46.119.124.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("51361", "10", "2017-03-18 12:51:50", "157.55.39.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("51362", "3", "2017-03-18 12:51:50", "157.55.39.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("51363", "15", "2017-03-18 12:51:50", "157.55.39.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("51364", "3", "2017-03-18 13:02:09", "77.75.78.162", "27");
INSERT INTO `wp_gf_form_view` VALUES("51365", "15", "2017-03-18 13:02:09", "77.75.78.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("51366", "10", "2017-03-18 13:02:09", "77.75.78.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("51367", "9", "2017-03-18 13:33:23", "163.172.66.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("51368", "6", "2017-03-18 13:52:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51369", "8", "2017-03-18 13:52:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51370", "13", "2017-03-18 13:52:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51371", "3", "2017-03-18 14:14:14", "202.46.54.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("51372", "15", "2017-03-18 14:14:14", "202.46.54.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("51373", "10", "2017-03-18 14:14:14", "202.46.54.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("51374", "3", "2017-03-18 15:20:55", "202.46.57.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("51375", "15", "2017-03-18 15:20:58", "202.46.57.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("51376", "10", "2017-03-18 15:20:58", "202.46.57.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("51377", "11", "2017-03-18 16:27:34", "202.46.48.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("51378", "10", "2017-03-18 16:48:46", "163.172.66.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("51379", "15", "2017-03-18 17:04:34", "24.69.173.128", "6");
INSERT INTO `wp_gf_form_view` VALUES("51380", "3", "2017-03-18 17:04:35", "24.69.173.128", "24");
INSERT INTO `wp_gf_form_view` VALUES("51381", "10", "2017-03-18 17:04:35", "24.69.173.128", "7");
INSERT INTO `wp_gf_form_view` VALUES("51382", "8", "2017-03-18 17:09:09", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51383", "13", "2017-03-18 17:09:09", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51384", "3", "2017-03-18 18:07:35", "202.46.53.160", "7");
INSERT INTO `wp_gf_form_view` VALUES("51385", "15", "2017-03-18 18:07:35", "202.46.53.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("51386", "10", "2017-03-18 18:07:35", "202.46.53.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("51387", "2", "2017-03-18 18:18:21", "104.192.6.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("51388", "12", "2017-03-18 18:40:53", "202.46.58.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("51389", "3", "2017-03-18 19:31:07", "163.172.66.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("51390", "15", "2017-03-18 19:31:11", "163.172.66.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("51391", "10", "2017-03-18 19:31:11", "163.172.66.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("51392", "3", "2017-03-18 20:54:15", "202.46.55.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("51393", "15", "2017-03-18 20:54:17", "202.46.55.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("51394", "10", "2017-03-18 20:54:18", "202.46.55.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("51395", "15", "2017-03-18 22:00:56", "202.46.55.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51396", "10", "2017-03-18 22:01:00", "202.46.55.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51397", "15", "2017-03-18 23:07:34", "202.46.56.117", "10");
INSERT INTO `wp_gf_form_view` VALUES("51398", "10", "2017-03-18 23:07:37", "202.46.56.117", "13");
INSERT INTO `wp_gf_form_view` VALUES("51399", "3", "2017-03-18 23:25:13", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("51400", "6", "2017-03-18 23:25:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51401", "9", "2017-03-18 23:25:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51402", "8", "2017-03-18 23:25:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51403", "13", "2017-03-18 23:25:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51404", "15", "2017-03-19 00:14:13", "202.46.48.120", "4");
INSERT INTO `wp_gf_form_view` VALUES("51405", "10", "2017-03-19 00:14:13", "202.46.48.120", "4");
INSERT INTO `wp_gf_form_view` VALUES("51406", "15", "2017-03-19 01:20:56", "202.46.52.205", "2");
INSERT INTO `wp_gf_form_view` VALUES("51407", "10", "2017-03-19 01:20:57", "202.46.52.205", "2");
INSERT INTO `wp_gf_form_view` VALUES("51408", "3", "2017-03-19 01:24:13", "163.172.65.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("51409", "3", "2017-03-19 03:08:18", "66.249.79.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("51410", "15", "2017-03-19 03:08:21", "66.249.79.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("51411", "10", "2017-03-19 03:08:22", "66.249.79.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("51412", "15", "2017-03-19 04:27:51", "173.180.73.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("51413", "10", "2017-03-19 04:27:52", "173.180.73.58", "4");
INSERT INTO `wp_gf_form_view` VALUES("51414", "3", "2017-03-19 04:28:26", "173.180.73.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("51415", "3", "2017-03-19 05:06:28", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("51416", "6", "2017-03-19 05:06:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51417", "9", "2017-03-19 05:06:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51418", "8", "2017-03-19 05:06:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51419", "10", "2017-03-19 05:06:29", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("51420", "13", "2017-03-19 05:06:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51421", "15", "2017-03-19 05:06:30", "52.88.109.3", "11");
INSERT INTO `wp_gf_form_view` VALUES("51422", "14", "2017-03-19 05:45:56", "184.66.145.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("51423", "15", "2017-03-19 06:02:53", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("51424", "10", "2017-03-19 06:02:54", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("51425", "3", "2017-03-19 06:34:36", "202.46.52.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("51426", "15", "2017-03-19 07:00:22", "50.93.112.167", "17");
INSERT INTO `wp_gf_form_view` VALUES("51427", "10", "2017-03-19 07:00:23", "50.93.112.167", "19");
INSERT INTO `wp_gf_form_view` VALUES("51428", "3", "2017-03-19 07:03:49", "157.55.39.105", "11");
INSERT INTO `wp_gf_form_view` VALUES("51429", "3", "2017-03-19 08:04:05", "157.55.39.25", "27");
INSERT INTO `wp_gf_form_view` VALUES("51430", "15", "2017-03-19 08:04:08", "157.55.39.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("51431", "10", "2017-03-19 08:04:08", "157.55.39.25", "5");
INSERT INTO `wp_gf_form_view` VALUES("51432", "6", "2017-03-19 08:30:52", "163.172.66.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("51433", "9", "2017-03-19 08:30:53", "163.172.66.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("51434", "8", "2017-03-19 08:30:53", "163.172.66.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("51435", "13", "2017-03-19 08:30:53", "163.172.66.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("51436", "15", "2017-03-19 09:15:44", "163.172.66.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("51437", "10", "2017-03-19 09:15:45", "163.172.66.20", "3");
INSERT INTO `wp_gf_form_view` VALUES("51438", "15", "2017-03-19 11:01:20", "157.55.39.55", "7");
INSERT INTO `wp_gf_form_view` VALUES("51439", "10", "2017-03-19 11:01:21", "157.55.39.55", "9");
INSERT INTO `wp_gf_form_view` VALUES("51440", "3", "2017-03-19 11:28:23", "157.55.39.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("51441", "6", "2017-03-19 11:52:13", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("51442", "3", "2017-03-19 12:23:24", "51.255.65.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("51443", "9", "2017-03-19 12:33:49", "40.77.167.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("51444", "15", "2017-03-19 12:33:50", "40.77.167.129", "3");
INSERT INTO `wp_gf_form_view` VALUES("51445", "10", "2017-03-19 12:33:50", "40.77.167.129", "4");
INSERT INTO `wp_gf_form_view` VALUES("51446", "15", "2017-03-19 13:04:38", "66.249.79.48", "9");
INSERT INTO `wp_gf_form_view` VALUES("51447", "10", "2017-03-19 13:04:39", "66.249.79.48", "9");
INSERT INTO `wp_gf_form_view` VALUES("51448", "3", "2017-03-19 13:07:45", "207.46.13.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("51449", "3", "2017-03-19 14:35:11", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("51450", "6", "2017-03-19 14:35:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51451", "9", "2017-03-19 14:35:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51452", "8", "2017-03-19 14:35:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51453", "10", "2017-03-19 14:35:14", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("51454", "13", "2017-03-19 14:35:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51455", "15", "2017-03-19 14:35:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("51456", "3", "2017-03-19 16:21:09", "51.255.65.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("51457", "15", "2017-03-19 16:25:53", "202.46.49.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("51458", "10", "2017-03-19 16:25:53", "202.46.49.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("51459", "3", "2017-03-19 17:32:34", "202.46.56.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("51460", "15", "2017-03-19 17:32:36", "202.46.56.92", "4");
INSERT INTO `wp_gf_form_view` VALUES("51461", "10", "2017-03-19 17:32:36", "202.46.56.92", "5");
INSERT INTO `wp_gf_form_view` VALUES("51462", "15", "2017-03-19 18:20:55", "164.132.161.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("51463", "10", "2017-03-19 18:20:56", "164.132.161.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("51464", "3", "2017-03-19 18:28:45", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51465", "3", "2017-03-19 20:07:33", "173.212.216.186", "42");
INSERT INTO `wp_gf_form_view` VALUES("51466", "15", "2017-03-19 20:17:08", "68.180.229.247", "24");
INSERT INTO `wp_gf_form_view` VALUES("51467", "10", "2017-03-19 20:17:09", "68.180.229.247", "25");
INSERT INTO `wp_gf_form_view` VALUES("51468", "11", "2017-03-19 20:20:56", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("51469", "2", "2017-03-19 20:22:20", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("51470", "6", "2017-03-19 20:25:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51471", "9", "2017-03-19 20:25:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51472", "8", "2017-03-19 20:25:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51473", "13", "2017-03-19 20:25:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51474", "14", "2017-03-19 21:45:56", "134.87.170.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("51475", "15", "2017-03-19 21:45:58", "134.87.170.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("51476", "10", "2017-03-19 21:45:58", "134.87.170.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("51477", "15", "2017-03-19 22:08:19", "202.46.55.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("51478", "10", "2017-03-19 22:08:19", "202.46.55.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("51479", "3", "2017-03-19 23:15:00", "202.46.51.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("51480", "15", "2017-03-19 23:15:00", "202.46.51.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("51481", "10", "2017-03-19 23:15:00", "202.46.51.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("51482", "3", "2017-03-20 00:21:40", "202.46.49.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("51483", "15", "2017-03-20 00:21:41", "202.46.49.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("51484", "10", "2017-03-20 00:21:41", "202.46.49.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("51485", "15", "2017-03-20 01:28:21", "202.46.50.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("51486", "10", "2017-03-20 01:28:21", "202.46.50.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("51487", "15", "2017-03-20 02:06:44", "157.55.39.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("51488", "10", "2017-03-20 02:06:46", "157.55.39.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("51489", "15", "2017-03-20 03:08:22", "202.46.54.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("51490", "10", "2017-03-20 03:08:24", "202.46.54.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("51491", "5", "2017-03-20 03:28:53", "157.55.39.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("51492", "15", "2017-03-20 04:18:28", "157.55.39.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("51493", "10", "2017-03-20 04:18:28", "157.55.39.108", "3");
INSERT INTO `wp_gf_form_view` VALUES("51494", "3", "2017-03-20 05:52:03", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("51495", "6", "2017-03-20 05:52:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51496", "9", "2017-03-20 05:52:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51497", "8", "2017-03-20 05:52:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51498", "10", "2017-03-20 05:52:06", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("51499", "13", "2017-03-20 05:52:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51500", "15", "2017-03-20 05:52:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51501", "15", "2017-03-20 06:06:29", "40.77.167.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("51502", "10", "2017-03-20 06:06:30", "40.77.167.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("51503", "15", "2017-03-20 07:18:23", "136.243.152.18", "17");
INSERT INTO `wp_gf_form_view` VALUES("51504", "10", "2017-03-20 07:18:26", "136.243.152.18", "16");
INSERT INTO `wp_gf_form_view` VALUES("51505", "5", "2017-03-20 07:18:49", "136.243.152.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("51506", "3", "2017-03-20 07:30:17", "82.165.75.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("51507", "11", "2017-03-20 07:30:24", "82.165.75.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51508", "2", "2017-03-20 07:31:17", "82.165.75.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("51509", "6", "2017-03-20 07:55:09", "164.132.161.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("51510", "15", "2017-03-20 08:14:11", "66.249.79.40", "5");
INSERT INTO `wp_gf_form_view` VALUES("51511", "10", "2017-03-20 08:14:12", "66.249.79.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("51512", "3", "2017-03-20 08:24:18", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51513", "9", "2017-03-20 08:55:01", "157.55.39.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("51514", "15", "2017-03-20 09:07:57", "163.172.66.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("51515", "10", "2017-03-20 09:07:58", "163.172.66.104", "9");
INSERT INTO `wp_gf_form_view` VALUES("51516", "3", "2017-03-20 09:24:48", "68.180.229.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("51517", "13", "2017-03-20 09:43:01", "66.249.79.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("51518", "15", "2017-03-20 11:19:42", "202.46.54.21", "4");
INSERT INTO `wp_gf_form_view` VALUES("51519", "10", "2017-03-20 11:19:48", "202.46.54.21", "6");
INSERT INTO `wp_gf_form_view` VALUES("51520", "3", "2017-03-20 11:55:27", "40.77.167.50", "26");
INSERT INTO `wp_gf_form_view` VALUES("51521", "6", "2017-03-20 11:58:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51522", "9", "2017-03-20 11:58:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51523", "8", "2017-03-20 11:58:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51524", "13", "2017-03-20 11:58:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51525", "15", "2017-03-20 12:26:09", "202.46.55.64", "3");
INSERT INTO `wp_gf_form_view` VALUES("51526", "10", "2017-03-20 12:26:10", "202.46.55.64", "3");
INSERT INTO `wp_gf_form_view` VALUES("51527", "3", "2017-03-20 12:58:46", "164.132.161.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("51528", "15", "2017-03-20 14:28:25", "40.77.167.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("51529", "10", "2017-03-20 14:28:29", "40.77.167.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("51530", "3", "2017-03-20 15:57:58", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51531", "15", "2017-03-20 15:58:00", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51532", "10", "2017-03-20 15:58:00", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51533", "3", "2017-03-20 16:19:47", "40.77.167.57", "25");
INSERT INTO `wp_gf_form_view` VALUES("51534", "6", "2017-03-20 16:19:48", "40.77.167.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("51535", "9", "2017-03-20 16:19:49", "40.77.167.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("51536", "8", "2017-03-20 16:19:49", "40.77.167.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("51537", "10", "2017-03-20 16:19:49", "40.77.167.57", "4");
INSERT INTO `wp_gf_form_view` VALUES("51538", "13", "2017-03-20 16:19:50", "40.77.167.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("51539", "15", "2017-03-20 16:19:50", "40.77.167.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("51540", "14", "2017-03-20 16:45:47", "184.66.145.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("51541", "15", "2017-03-20 17:13:48", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51542", "10", "2017-03-20 17:13:49", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51543", "15", "2017-03-20 18:10:08", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("51544", "10", "2017-03-20 18:10:21", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("51545", "15", "2017-03-20 19:05:24", "202.46.50.184", "2");
INSERT INTO `wp_gf_form_view` VALUES("51546", "10", "2017-03-20 19:05:33", "202.46.50.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("51547", "3", "2017-03-20 19:40:34", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51548", "15", "2017-03-20 20:12:06", "202.46.48.208", "3");
INSERT INTO `wp_gf_form_view` VALUES("51549", "10", "2017-03-20 20:12:07", "202.46.48.208", "4");
INSERT INTO `wp_gf_form_view` VALUES("51550", "3", "2017-03-20 20:50:51", "40.77.167.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("51551", "3", "2017-03-20 21:15:21", "66.249.79.44", "26");
INSERT INTO `wp_gf_form_view` VALUES("51552", "15", "2017-03-20 21:15:22", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("51553", "10", "2017-03-20 21:15:22", "66.249.79.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("51554", "6", "2017-03-20 21:58:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51555", "9", "2017-03-20 21:58:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51556", "8", "2017-03-20 21:58:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51557", "13", "2017-03-20 21:58:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51558", "7", "2017-03-20 22:29:42", "202.46.58.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("51559", "15", "2017-03-20 22:29:44", "202.46.58.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("51560", "10", "2017-03-20 22:29:44", "202.46.58.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("51561", "15", "2017-03-20 23:24:56", "157.55.39.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("51562", "10", "2017-03-20 23:24:57", "157.55.39.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("51563", "3", "2017-03-20 23:26:37", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51564", "15", "2017-03-21 00:09:40", "202.46.55.153", "4");
INSERT INTO `wp_gf_form_view` VALUES("51565", "10", "2017-03-21 00:09:42", "202.46.55.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("51566", "3", "2017-03-21 00:43:01", "202.46.54.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("51567", "3", "2017-03-21 01:30:46", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("51568", "15", "2017-03-21 02:24:49", "104.236.221.54", "232");
INSERT INTO `wp_gf_form_view` VALUES("51569", "10", "2017-03-21 02:24:51", "104.236.221.54", "200");
INSERT INTO `wp_gf_form_view` VALUES("51570", "14", "2017-03-21 02:28:00", "104.236.221.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("51571", "11", "2017-03-21 02:28:05", "104.236.221.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("51572", "3", "2017-03-21 02:31:05", "104.236.221.54", "6");
INSERT INTO `wp_gf_form_view` VALUES("51573", "6", "2017-03-21 02:37:44", "104.236.221.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("51574", "9", "2017-03-21 02:46:44", "104.236.221.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("51575", "10", "2017-03-21 03:00:00", "104.236.221.54", "304");
INSERT INTO `wp_gf_form_view` VALUES("51576", "15", "2017-03-21 03:00:05", "104.236.221.54", "314");
INSERT INTO `wp_gf_form_view` VALUES("51577", "3", "2017-03-21 03:01:01", "104.236.221.54", "42");
INSERT INTO `wp_gf_form_view` VALUES("51578", "2", "2017-03-21 03:34:20", "104.236.221.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("51579", "13", "2017-03-21 03:47:05", "104.236.221.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("51580", "6", "2017-03-21 03:59:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51581", "9", "2017-03-21 03:59:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51582", "8", "2017-03-21 03:59:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51583", "10", "2017-03-21 04:15:08", "136.243.36.94", "48");
INSERT INTO `wp_gf_form_view` VALUES("51584", "15", "2017-03-21 04:15:09", "136.243.36.94", "39");
INSERT INTO `wp_gf_form_view` VALUES("51585", "11", "2017-03-21 04:15:47", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("51586", "2", "2017-03-21 04:16:26", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("51587", "3", "2017-03-21 04:19:06", "136.243.36.94", "90");
INSERT INTO `wp_gf_form_view` VALUES("51588", "6", "2017-03-21 04:21:15", "136.243.36.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("51589", "9", "2017-03-21 04:21:16", "136.243.36.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("51590", "8", "2017-03-21 04:21:16", "136.243.36.94", "3");
INSERT INTO `wp_gf_form_view` VALUES("51591", "13", "2017-03-21 04:21:17", "136.243.36.94", "5");
INSERT INTO `wp_gf_form_view` VALUES("51592", "14", "2017-03-21 04:22:00", "136.243.36.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("51593", "15", "2017-03-21 05:06:03", "96.50.98.209", "4");
INSERT INTO `wp_gf_form_view` VALUES("51594", "10", "2017-03-21 05:06:05", "96.50.98.209", "4");
INSERT INTO `wp_gf_form_view` VALUES("51595", "3", "2017-03-21 05:58:36", "122.57.208.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("51596", "3", "2017-03-21 05:58:36", "122.57.208.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("51597", "11", "2017-03-21 06:37:07", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("51598", "15", "2017-03-21 06:37:51", "66.249.79.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("51599", "10", "2017-03-21 06:37:51", "66.249.79.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("51600", "15", "2017-03-21 07:04:20", "66.249.79.48", "68");
INSERT INTO `wp_gf_form_view` VALUES("51601", "10", "2017-03-21 07:04:20", "66.249.79.48", "79");
INSERT INTO `wp_gf_form_view` VALUES("51602", "3", "2017-03-21 07:27:17", "202.46.54.90", "30");
INSERT INTO `wp_gf_form_view` VALUES("51603", "9", "2017-03-21 07:37:51", "157.55.39.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("51604", "8", "2017-03-21 07:39:12", "207.46.13.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("51605", "3", "2017-03-21 08:00:39", "202.46.48.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("51606", "15", "2017-03-21 08:00:40", "202.46.48.82", "3");
INSERT INTO `wp_gf_form_view` VALUES("51607", "10", "2017-03-21 08:00:41", "202.46.48.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("51608", "15", "2017-03-21 09:27:24", "207.46.13.87", "17");
INSERT INTO `wp_gf_form_view` VALUES("51609", "10", "2017-03-21 09:27:33", "207.46.13.87", "15");
INSERT INTO `wp_gf_form_view` VALUES("51610", "3", "2017-03-21 09:33:05", "116.252.148.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("51611", "15", "2017-03-21 10:07:48", "157.55.39.244", "3");
INSERT INTO `wp_gf_form_view` VALUES("51612", "10", "2017-03-21 10:07:49", "157.55.39.244", "3");
INSERT INTO `wp_gf_form_view` VALUES("51613", "2", "2017-03-21 10:27:55", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51614", "3", "2017-03-21 10:47:24", "202.46.55.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("51615", "3", "2017-03-21 11:42:00", "157.55.39.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("51616", "15", "2017-03-21 11:42:01", "157.55.39.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("51617", "10", "2017-03-21 11:42:01", "157.55.39.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("51618", "15", "2017-03-21 12:04:33", "157.55.39.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("51619", "10", "2017-03-21 12:04:33", "157.55.39.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("51620", "3", "2017-03-21 12:17:54", "163.172.66.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("51621", "3", "2017-03-21 13:00:38", "202.46.52.159", "27");
INSERT INTO `wp_gf_form_view` VALUES("51622", "15", "2017-03-21 13:00:40", "202.46.52.159", "9");
INSERT INTO `wp_gf_form_view` VALUES("51623", "10", "2017-03-21 13:00:40", "202.46.52.159", "10");
INSERT INTO `wp_gf_form_view` VALUES("51624", "6", "2017-03-21 13:24:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51625", "9", "2017-03-21 13:24:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51626", "8", "2017-03-21 13:24:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51627", "13", "2017-03-21 13:24:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51628", "14", "2017-03-21 13:27:19", "157.55.39.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("51629", "15", "2017-03-21 14:40:39", "202.46.51.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("51630", "10", "2017-03-21 14:40:41", "202.46.51.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("51631", "15", "2017-03-21 15:14:00", "202.46.58.134", "4");
INSERT INTO `wp_gf_form_view` VALUES("51632", "10", "2017-03-21 15:14:01", "202.46.58.134", "4");
INSERT INTO `wp_gf_form_view` VALUES("51633", "3", "2017-03-21 15:35:44", "38.116.192.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("51634", "8", "2017-03-21 15:40:24", "66.249.79.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("51635", "15", "2017-03-21 16:20:40", "202.46.52.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("51636", "10", "2017-03-21 16:20:42", "202.46.52.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("51637", "15", "2017-03-21 17:07:45", "184.71.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("51638", "10", "2017-03-21 17:07:50", "184.71.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("51639", "3", "2017-03-21 18:41:19", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51640", "15", "2017-03-21 18:41:25", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51641", "10", "2017-03-21 18:41:26", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51642", "15", "2017-03-21 19:23:02", "184.66.134.167", "3");
INSERT INTO `wp_gf_form_view` VALUES("51643", "10", "2017-03-21 19:23:06", "184.66.134.167", "5");
INSERT INTO `wp_gf_form_view` VALUES("51644", "3", "2017-03-21 19:24:09", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("51645", "6", "2017-03-21 19:24:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51646", "9", "2017-03-21 19:24:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51647", "8", "2017-03-21 19:24:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51648", "13", "2017-03-21 19:24:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51649", "15", "2017-03-21 20:43:48", "163.172.65.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("51650", "10", "2017-03-21 20:43:52", "163.172.65.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("51651", "3", "2017-03-21 21:03:54", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51652", "15", "2017-03-21 21:03:54", "68.180.229.247", "14");
INSERT INTO `wp_gf_form_view` VALUES("51653", "10", "2017-03-21 21:03:54", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("51654", "11", "2017-03-21 21:39:51", "163.172.65.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("51655", "2", "2017-03-21 21:41:28", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("51656", "14", "2017-03-21 22:22:25", "24.68.252.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("51657", "15", "2017-03-21 22:22:30", "24.68.252.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("51658", "10", "2017-03-21 22:22:32", "24.68.252.194", "6");
INSERT INTO `wp_gf_form_view` VALUES("51659", "3", "2017-03-21 23:23:56", "202.46.56.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("51660", "15", "2017-03-21 23:23:56", "202.46.56.205", "3");
INSERT INTO `wp_gf_form_view` VALUES("51661", "10", "2017-03-21 23:23:56", "202.46.56.205", "3");
INSERT INTO `wp_gf_form_view` VALUES("51662", "2", "2017-03-21 23:57:14", "202.46.58.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("51663", "3", "2017-03-22 00:30:36", "202.46.52.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("51664", "15", "2017-03-22 00:30:37", "202.46.52.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("51665", "10", "2017-03-22 00:30:37", "202.46.52.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("51666", "15", "2017-03-22 01:03:55", "202.46.51.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("51667", "10", "2017-03-22 01:03:55", "202.46.51.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("51668", "3", "2017-03-22 02:09:27", "51.255.65.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("51669", "15", "2017-03-22 02:09:29", "51.255.65.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("51670", "10", "2017-03-22 02:09:29", "51.255.65.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("51671", "3", "2017-03-22 03:11:26", "24.108.4.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("51672", "15", "2017-03-22 03:11:26", "24.108.4.141", "8");
INSERT INTO `wp_gf_form_view` VALUES("51673", "10", "2017-03-22 03:11:27", "24.108.4.141", "8");
INSERT INTO `wp_gf_form_view` VALUES("51674", "11", "2017-03-22 03:18:09", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("51675", "2", "2017-03-22 03:18:11", "69.58.178.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("51676", "3", "2017-03-22 04:13:22", "108.172.117.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("51677", "15", "2017-03-22 04:13:22", "108.172.117.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("51678", "10", "2017-03-22 04:13:22", "108.172.117.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("51679", "3", "2017-03-22 05:10:21", "163.172.65.28", "26");
INSERT INTO `wp_gf_form_view` VALUES("51680", "15", "2017-03-22 05:10:22", "163.172.65.28", "3");
INSERT INTO `wp_gf_form_view` VALUES("51681", "10", "2017-03-22 05:10:22", "163.172.65.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("51682", "6", "2017-03-22 05:15:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51683", "9", "2017-03-22 05:15:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51684", "8", "2017-03-22 05:15:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51685", "13", "2017-03-22 05:15:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51686", "3", "2017-03-22 06:04:02", "202.46.49.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("51687", "15", "2017-03-22 06:04:06", "202.46.49.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("51688", "10", "2017-03-22 06:04:06", "202.46.49.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("51689", "3", "2017-03-22 07:13:41", "51.255.65.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("51690", "15", "2017-03-22 07:13:43", "51.255.65.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("51691", "10", "2017-03-22 07:13:43", "51.255.65.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("51692", "15", "2017-03-22 08:02:05", "24.69.27.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("51693", "10", "2017-03-22 08:02:06", "24.69.27.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("51694", "15", "2017-03-22 09:25:07", "51.255.65.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("51695", "10", "2017-03-22 09:25:08", "51.255.65.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("51696", "15", "2017-03-22 10:36:56", "202.46.51.160", "2");
INSERT INTO `wp_gf_form_view` VALUES("51697", "10", "2017-03-22 10:36:57", "202.46.51.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("51698", "3", "2017-03-22 11:05:58", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("51699", "6", "2017-03-22 11:05:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51700", "9", "2017-03-22 11:05:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51701", "8", "2017-03-22 11:05:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51702", "10", "2017-03-22 11:06:00", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("51703", "13", "2017-03-22 11:06:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51704", "15", "2017-03-22 11:06:00", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("51705", "15", "2017-03-22 12:01:25", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("51706", "10", "2017-03-22 12:01:25", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("51707", "3", "2017-03-22 12:27:47", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51708", "15", "2017-03-22 13:25:31", "77.75.78.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("51709", "10", "2017-03-22 13:25:31", "77.75.78.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("51710", "10", "2017-03-22 14:39:04", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51711", "15", "2017-03-22 14:39:09", "66.249.79.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("51712", "15", "2017-03-22 15:01:33", "202.46.48.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("51713", "10", "2017-03-22 15:01:34", "202.46.48.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("51714", "11", "2017-03-22 15:30:32", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51715", "15", "2017-03-22 16:41:31", "202.46.57.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("51716", "10", "2017-03-22 16:41:41", "202.46.57.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("51717", "15", "2017-03-22 17:08:18", "207.6.127.203", "7");
INSERT INTO `wp_gf_form_view` VALUES("51718", "10", "2017-03-22 17:08:18", "207.6.127.203", "11");
INSERT INTO `wp_gf_form_view` VALUES("51719", "3", "2017-03-22 17:12:57", "68.180.229.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("51720", "6", "2017-03-22 17:12:57", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51721", "9", "2017-03-22 17:12:58", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51722", "8", "2017-03-22 17:12:58", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51723", "13", "2017-03-22 17:12:59", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51724", "15", "2017-03-22 18:03:45", "77.75.77.119", "3");
INSERT INTO `wp_gf_form_view` VALUES("51725", "10", "2017-03-22 18:03:46", "77.75.77.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("51726", "14", "2017-03-22 18:17:47", "209.16.117.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("51727", "15", "2017-03-22 19:24:55", "77.75.76.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("51728", "10", "2017-03-22 19:25:18", "77.75.76.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("51729", "15", "2017-03-22 20:35:16", "163.172.73.28", "4");
INSERT INTO `wp_gf_form_view` VALUES("51730", "10", "2017-03-22 20:35:41", "163.172.73.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("51731", "10", "2017-03-22 20:35:41", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51732", "2", "2017-03-22 20:40:09", "40.77.167.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("51733", "3", "2017-03-22 20:53:47", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("51734", "6", "2017-03-22 20:53:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51735", "9", "2017-03-22 20:53:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51736", "8", "2017-03-22 20:53:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51737", "13", "2017-03-22 20:53:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51738", "3", "2017-03-22 21:00:21", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51739", "15", "2017-03-22 21:00:21", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51740", "10", "2017-03-22 21:00:21", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51741", "10", "2017-03-22 22:00:03", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("51742", "15", "2017-03-22 22:52:43", "202.46.50.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("51743", "15", "2017-03-22 23:01:14", "68.180.229.247", "11");
INSERT INTO `wp_gf_form_view` VALUES("51744", "10", "2017-03-22 23:01:14", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("51745", "3", "2017-03-22 23:41:51", "164.132.161.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("51746", "15", "2017-03-23 00:33:14", "52.5.220.220", "5");
INSERT INTO `wp_gf_form_view` VALUES("51747", "10", "2017-03-23 00:33:15", "52.5.220.220", "5");
INSERT INTO `wp_gf_form_view` VALUES("51748", "2", "2017-03-23 01:06:03", "202.46.56.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("51749", "10", "2017-03-23 02:12:45", "202.46.53.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("51750", "15", "2017-03-23 02:12:46", "202.46.53.167", "5");
INSERT INTO `wp_gf_form_view` VALUES("51751", "3", "2017-03-23 02:12:46", "202.46.53.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("51752", "13", "2017-03-23 02:12:47", "202.46.53.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("51753", "3", "2017-03-23 03:02:42", "52.88.109.3", "65");
INSERT INTO `wp_gf_form_view` VALUES("51754", "6", "2017-03-23 03:02:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51755", "9", "2017-03-23 03:02:43", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("51756", "8", "2017-03-23 03:02:43", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("51757", "10", "2017-03-23 03:02:43", "52.88.109.3", "117");
INSERT INTO `wp_gf_form_view` VALUES("51758", "13", "2017-03-23 03:02:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("51759", "15", "2017-03-23 03:02:44", "52.88.109.3", "100");
INSERT INTO `wp_gf_form_view` VALUES("51760", "3", "2017-03-23 04:23:05", "66.249.79.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("51761", "15", "2017-03-23 04:23:05", "66.249.79.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("51762", "10", "2017-03-23 04:23:06", "66.249.79.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("51763", "13", "2017-03-23 04:59:26", "202.46.58.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("51764", "15", "2017-03-23 06:30:27", "40.77.167.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("51765", "10", "2017-03-23 06:30:29", "40.77.167.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("51766", "3", "2017-03-23 06:39:27", "163.172.64.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("51767", "15", "2017-03-23 07:04:09", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51768", "10", "2017-03-23 07:04:09", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51769", "15", "2017-03-23 08:06:30", "14.192.54.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("51770", "10", "2017-03-23 08:06:31", "14.192.54.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("51771", "15", "2017-03-23 09:02:52", "190.129.92.214", "8");
INSERT INTO `wp_gf_form_view` VALUES("51772", "10", "2017-03-23 09:02:53", "190.129.92.214", "9");
INSERT INTO `wp_gf_form_view` VALUES("51773", "3", "2017-03-23 10:16:52", "163.172.65.46", "3");
INSERT INTO `wp_gf_form_view` VALUES("51774", "15", "2017-03-23 10:16:52", "163.172.65.46", "5");
INSERT INTO `wp_gf_form_view` VALUES("51775", "10", "2017-03-23 10:16:52", "163.172.65.46", "6");
INSERT INTO `wp_gf_form_view` VALUES("51776", "9", "2017-03-23 10:52:00", "202.46.55.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("51777", "10", "2017-03-23 11:00:42", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("51778", "3", "2017-03-23 11:17:48", "40.77.167.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("51779", "15", "2017-03-23 11:17:48", "40.77.167.59", "5");
INSERT INTO `wp_gf_form_view` VALUES("51780", "15", "2017-03-23 12:32:20", "40.77.167.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("51781", "10", "2017-03-23 12:32:21", "40.77.167.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("51782", "3", "2017-03-23 13:25:31", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("51783", "6", "2017-03-23 13:25:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51784", "9", "2017-03-23 13:25:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51785", "8", "2017-03-23 13:25:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51786", "10", "2017-03-23 13:25:32", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("51787", "13", "2017-03-23 13:25:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51788", "15", "2017-03-23 13:25:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("51789", "15", "2017-03-23 14:07:00", "202.46.53.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("51790", "10", "2017-03-23 14:07:02", "202.46.53.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("51791", "15", "2017-03-23 15:23:41", "202.46.48.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("51792", "10", "2017-03-23 15:23:42", "202.46.48.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("51793", "3", "2017-03-23 15:58:03", "51.255.65.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("51794", "15", "2017-03-23 17:58:37", "202.46.58.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("51795", "10", "2017-03-23 17:58:39", "202.46.58.206", "3");
INSERT INTO `wp_gf_form_view` VALUES("51796", "15", "2017-03-23 18:06:28", "157.55.39.163", "3");
INSERT INTO `wp_gf_form_view` VALUES("51797", "10", "2017-03-23 18:06:28", "157.55.39.163", "3");
INSERT INTO `wp_gf_form_view` VALUES("51798", "14", "2017-03-23 18:13:07", "146.0.74.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("51799", "15", "2017-03-23 19:05:34", "54.159.179.40", "5");
INSERT INTO `wp_gf_form_view` VALUES("51800", "10", "2017-03-23 19:05:39", "54.159.179.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("51801", "2", "2017-03-23 19:05:49", "54.159.179.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("51802", "3", "2017-03-23 20:00:30", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("51803", "6", "2017-03-23 20:00:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51804", "9", "2017-03-23 20:00:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51805", "8", "2017-03-23 20:00:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51806", "10", "2017-03-23 20:00:31", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("51807", "13", "2017-03-23 20:00:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51808", "15", "2017-03-23 20:00:32", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("51809", "10", "2017-03-23 21:08:54", "207.194.133.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("51810", "10", "2017-03-23 21:08:54", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("51811", "15", "2017-03-23 21:08:55", "207.194.133.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("51812", "15", "2017-03-23 21:08:55", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("51813", "14", "2017-03-23 21:09:36", "112.198.76.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("51814", "15", "2017-03-23 22:23:11", "157.55.39.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("51815", "10", "2017-03-23 22:23:12", "157.55.39.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("51816", "9", "2017-03-23 22:25:43", "202.46.58.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("51817", "3", "2017-03-23 23:04:48", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("51818", "15", "2017-03-23 23:04:49", "66.249.79.148", "11");
INSERT INTO `wp_gf_form_view` VALUES("51819", "10", "2017-03-23 23:04:49", "66.249.79.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("51820", "14", "2017-03-23 23:22:14", "154.20.32.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("51821", "15", "2017-03-24 00:05:43", "202.46.48.16", "6");
INSERT INTO `wp_gf_form_view` VALUES("51822", "10", "2017-03-24 00:05:44", "202.46.48.16", "5");
INSERT INTO `wp_gf_form_view` VALUES("51823", "3", "2017-03-24 00:32:47", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("51824", "15", "2017-03-24 01:12:23", "202.46.53.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("51825", "10", "2017-03-24 01:12:23", "202.46.53.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("51826", "11", "2017-03-24 01:23:09", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("51827", "3", "2017-03-24 01:23:43", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("51828", "14", "2017-03-24 01:45:43", "202.46.52.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("51829", "15", "2017-03-24 02:02:56", "24.68.137.19", "10");
INSERT INTO `wp_gf_form_view` VALUES("51830", "10", "2017-03-24 02:02:56", "24.68.137.19", "8");
INSERT INTO `wp_gf_form_view` VALUES("51831", "3", "2017-03-24 02:44:11", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("51832", "3", "2017-03-24 04:19:32", "40.77.167.59", "5");
INSERT INTO `wp_gf_form_view` VALUES("51833", "8", "2017-03-24 04:19:42", "40.77.167.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("51834", "13", "2017-03-24 04:19:43", "40.77.167.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("51835", "15", "2017-03-24 04:25:15", "157.55.39.163", "3");
INSERT INTO `wp_gf_form_view` VALUES("51836", "10", "2017-03-24 04:25:17", "157.55.39.163", "3");
INSERT INTO `wp_gf_form_view` VALUES("51837", "15", "2017-03-24 05:08:16", "51.255.65.19", "11");
INSERT INTO `wp_gf_form_view` VALUES("51838", "10", "2017-03-24 05:08:17", "51.255.65.19", "12");
INSERT INTO `wp_gf_form_view` VALUES("51839", "14", "2017-03-24 05:12:29", "154.20.56.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("51840", "3", "2017-03-24 05:27:35", "154.20.56.175", "24");
INSERT INTO `wp_gf_form_view` VALUES("51841", "6", "2017-03-24 05:59:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51842", "9", "2017-03-24 05:59:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51843", "8", "2017-03-24 05:59:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51844", "13", "2017-03-24 05:59:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51845", "3", "2017-03-24 06:00:00", "52.88.109.3", "38");
INSERT INTO `wp_gf_form_view` VALUES("51846", "15", "2017-03-24 06:00:00", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("51847", "10", "2017-03-24 06:00:00", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("51848", "6", "2017-03-24 06:00:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51849", "9", "2017-03-24 06:00:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51850", "8", "2017-03-24 06:00:13", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("51851", "13", "2017-03-24 06:00:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("51852", "14", "2017-03-24 06:03:15", "184.66.50.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("51853", "15", "2017-03-24 07:02:35", "66.249.79.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("51854", "10", "2017-03-24 07:02:35", "66.249.79.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("51855", "14", "2017-03-24 07:54:48", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51856", "3", "2017-03-24 08:22:55", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("51857", "15", "2017-03-24 08:22:55", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("51858", "10", "2017-03-24 08:22:56", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("51859", "11", "2017-03-24 09:01:10", "207.46.13.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("51860", "15", "2017-03-24 09:10:45", "66.249.79.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("51861", "10", "2017-03-24 09:10:48", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("51862", "15", "2017-03-24 11:45:26", "157.55.39.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51863", "10", "2017-03-24 11:58:12", "157.55.39.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("51864", "3", "2017-03-24 11:58:16", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("51865", "6", "2017-03-24 11:58:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51866", "9", "2017-03-24 11:58:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51867", "8", "2017-03-24 11:58:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51868", "13", "2017-03-24 11:58:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51869", "10", "2017-03-24 12:02:15", "157.55.39.194", "41");
INSERT INTO `wp_gf_form_view` VALUES("51870", "15", "2017-03-24 12:02:15", "157.55.39.194", "34");
INSERT INTO `wp_gf_form_view` VALUES("51871", "3", "2017-03-24 12:02:19", "157.55.39.194", "22");
INSERT INTO `wp_gf_form_view` VALUES("51872", "9", "2017-03-24 12:02:48", "157.55.39.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("51873", "14", "2017-03-24 12:05:10", "221.211.110.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("51874", "3", "2017-03-24 13:07:37", "157.55.39.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("51875", "15", "2017-03-24 13:07:38", "157.55.39.119", "8");
INSERT INTO `wp_gf_form_view` VALUES("51876", "10", "2017-03-24 13:07:38", "157.55.39.119", "9");
INSERT INTO `wp_gf_form_view` VALUES("51877", "14", "2017-03-24 13:45:41", "124.90.52.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("51878", "3", "2017-03-24 14:02:46", "202.46.54.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("51879", "15", "2017-03-24 14:02:46", "202.46.54.165", "3");
INSERT INTO `wp_gf_form_view` VALUES("51880", "10", "2017-03-24 14:02:46", "202.46.54.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("51881", "15", "2017-03-24 16:08:17", "96.50.20.28", "10");
INSERT INTO `wp_gf_form_view` VALUES("51882", "10", "2017-03-24 16:08:53", "96.50.20.28", "10");
INSERT INTO `wp_gf_form_view` VALUES("51883", "3", "2017-03-24 17:19:12", "51.255.65.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("51884", "15", "2017-03-24 17:19:23", "51.255.65.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("51885", "10", "2017-03-24 17:19:24", "51.255.65.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("51886", "12", "2017-03-24 17:59:21", "157.55.39.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("51887", "14", "2017-03-24 18:00:51", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("51888", "15", "2017-03-24 18:00:51", "207.194.133.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("51889", "10", "2017-03-24 18:00:51", "207.194.133.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("51890", "3", "2017-03-24 18:11:43", "51.255.65.39", "3");
INSERT INTO `wp_gf_form_view` VALUES("51891", "15", "2017-03-24 19:08:17", "157.55.39.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51892", "10", "2017-03-24 19:08:18", "157.55.39.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("51893", "3", "2017-03-24 19:16:58", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51894", "14", "2017-03-24 19:18:39", "202.46.49.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("51895", "15", "2017-03-24 20:00:30", "47.150.129.197", "32");
INSERT INTO `wp_gf_form_view` VALUES("51896", "15", "2017-03-24 20:00:30", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("51897", "10", "2017-03-24 20:00:31", "47.150.129.197", "28");
INSERT INTO `wp_gf_form_view` VALUES("51898", "10", "2017-03-24 20:00:31", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("51899", "11", "2017-03-24 20:54:54", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51900", "2", "2017-03-24 20:55:01", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51901", "3", "2017-03-24 20:55:57", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("51902", "14", "2017-03-24 20:57:57", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51903", "15", "2017-03-24 21:00:02", "5.9.98.130", "526");
INSERT INTO `wp_gf_form_view` VALUES("51904", "10", "2017-03-24 21:00:02", "5.9.98.130", "422");
INSERT INTO `wp_gf_form_view` VALUES("51905", "3", "2017-03-24 21:02:16", "5.9.98.130", "24");
INSERT INTO `wp_gf_form_view` VALUES("51906", "13", "2017-03-24 21:02:53", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51907", "8", "2017-03-24 21:10:38", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51908", "9", "2017-03-24 21:10:58", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51909", "6", "2017-03-24 21:12:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("51910", "14", "2017-03-24 21:15:27", "66.249.84.52", "3");
INSERT INTO `wp_gf_form_view` VALUES("51911", "15", "2017-03-24 22:00:00", "5.9.98.130", "568");
INSERT INTO `wp_gf_form_view` VALUES("51912", "10", "2017-03-24 22:00:00", "5.9.98.130", "490");
INSERT INTO `wp_gf_form_view` VALUES("51913", "3", "2017-03-24 22:17:19", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("51914", "6", "2017-03-24 22:17:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51915", "9", "2017-03-24 22:17:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51916", "8", "2017-03-24 22:17:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51917", "13", "2017-03-24 22:17:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51918", "14", "2017-03-24 22:53:09", "158.69.244.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("51919", "15", "2017-03-24 23:11:59", "202.46.57.151", "739");
INSERT INTO `wp_gf_form_view` VALUES("51920", "10", "2017-03-24 23:12:00", "202.46.57.151", "507");
INSERT INTO `wp_gf_form_view` VALUES("51921", "3", "2017-03-24 23:37:17", "163.172.66.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("51922", "15", "2017-03-25 00:00:01", "5.9.98.130", "336");
INSERT INTO `wp_gf_form_view` VALUES("51923", "10", "2017-03-25 00:00:02", "5.9.98.130", "376");
INSERT INTO `wp_gf_form_view` VALUES("51924", "10", "2017-03-25 01:20:01", "68.180.229.247", "115");
INSERT INTO `wp_gf_form_view` VALUES("51925", "15", "2017-03-25 01:20:02", "68.180.229.247", "114");
INSERT INTO `wp_gf_form_view` VALUES("51926", "15", "2017-03-25 02:00:02", "5.9.98.130", "1067");
INSERT INTO `wp_gf_form_view` VALUES("51927", "10", "2017-03-25 02:00:02", "5.9.98.130", "752");
INSERT INTO `wp_gf_form_view` VALUES("51928", "15", "2017-03-25 03:00:00", "5.9.98.130", "845");
INSERT INTO `wp_gf_form_view` VALUES("51929", "10", "2017-03-25 03:00:02", "5.9.98.130", "647");
INSERT INTO `wp_gf_form_view` VALUES("51930", "3", "2017-03-25 04:18:27", "92.238.226.245", "37");
INSERT INTO `wp_gf_form_view` VALUES("51931", "15", "2017-03-25 04:18:28", "92.238.226.245", "155");
INSERT INTO `wp_gf_form_view` VALUES("51932", "10", "2017-03-25 04:18:28", "92.238.226.245", "286");
INSERT INTO `wp_gf_form_view` VALUES("51933", "11", "2017-03-25 04:18:42", "92.238.226.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("51934", "13", "2017-03-25 04:19:25", "92.238.226.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("51935", "12", "2017-03-25 04:20:31", "92.238.226.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("51936", "6", "2017-03-25 04:36:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51937", "9", "2017-03-25 04:36:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51938", "8", "2017-03-25 04:36:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51939", "15", "2017-03-25 06:04:30", "207.46.13.66", "688");
INSERT INTO `wp_gf_form_view` VALUES("51940", "10", "2017-03-25 06:04:32", "207.46.13.66", "688");
INSERT INTO `wp_gf_form_view` VALUES("51941", "3", "2017-03-25 06:36:13", "207.46.13.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("51942", "8", "2017-03-25 06:48:47", "202.46.51.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("51943", "15", "2017-03-25 07:00:02", "5.9.98.130", "1034");
INSERT INTO `wp_gf_form_view` VALUES("51944", "10", "2017-03-25 07:00:02", "5.9.98.130", "721");
INSERT INTO `wp_gf_form_view` VALUES("51945", "15", "2017-03-25 08:00:03", "5.9.98.130", "1576");
INSERT INTO `wp_gf_form_view` VALUES("51946", "10", "2017-03-25 08:00:03", "5.9.98.130", "865");
INSERT INTO `wp_gf_form_view` VALUES("51947", "3", "2017-03-25 08:01:04", "66.249.79.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("51948", "15", "2017-03-25 09:00:02", "5.9.98.130", "748");
INSERT INTO `wp_gf_form_view` VALUES("51949", "10", "2017-03-25 09:00:02", "5.9.98.130", "748");
INSERT INTO `wp_gf_form_view` VALUES("51950", "3", "2017-03-25 10:07:04", "66.249.79.48", "8");
INSERT INTO `wp_gf_form_view` VALUES("51951", "15", "2017-03-25 10:07:05", "66.249.79.48", "44");
INSERT INTO `wp_gf_form_view` VALUES("51952", "10", "2017-03-25 10:07:05", "66.249.79.48", "41");
INSERT INTO `wp_gf_form_view` VALUES("51953", "11", "2017-03-25 10:35:51", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("51954", "2", "2017-03-25 10:35:55", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("51955", "14", "2017-03-25 10:37:36", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("51956", "13", "2017-03-25 10:40:02", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("51957", "10", "2017-03-25 11:13:09", "5.9.98.130", "514");
INSERT INTO `wp_gf_form_view` VALUES("51958", "15", "2017-03-25 11:13:10", "5.9.98.130", "258");
INSERT INTO `wp_gf_form_view` VALUES("51959", "15", "2017-03-25 12:50:29", "202.46.53.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("51960", "10", "2017-03-25 12:50:29", "202.46.53.16", "4");
INSERT INTO `wp_gf_form_view` VALUES("51961", "3", "2017-03-25 12:57:16", "157.55.39.247", "25");
INSERT INTO `wp_gf_form_view` VALUES("51962", "6", "2017-03-25 12:57:16", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51963", "9", "2017-03-25 12:57:16", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51964", "8", "2017-03-25 12:57:16", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51965", "13", "2017-03-25 12:57:17", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51966", "15", "2017-03-25 13:57:10", "202.46.57.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("51967", "10", "2017-03-25 13:57:11", "202.46.57.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("51968", "3", "2017-03-25 14:33:27", "92.238.226.245", "28");
INSERT INTO `wp_gf_form_view` VALUES("51969", "15", "2017-03-25 14:33:27", "92.238.226.245", "190");
INSERT INTO `wp_gf_form_view` VALUES("51970", "10", "2017-03-25 14:33:28", "92.238.226.245", "192");
INSERT INTO `wp_gf_form_view` VALUES("51971", "9", "2017-03-25 14:33:44", "92.238.226.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("51972", "8", "2017-03-25 14:33:58", "92.238.226.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("51973", "6", "2017-03-25 14:41:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51974", "13", "2017-03-25 14:41:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51975", "15", "2017-03-25 15:00:03", "5.9.98.130", "542");
INSERT INTO `wp_gf_form_view` VALUES("51976", "10", "2017-03-25 15:00:03", "5.9.98.130", "544");
INSERT INTO `wp_gf_form_view` VALUES("51977", "3", "2017-03-25 15:36:19", "66.249.79.40", "27");
INSERT INTO `wp_gf_form_view` VALUES("51978", "6", "2017-03-25 15:49:22", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51979", "9", "2017-03-25 15:49:23", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51980", "8", "2017-03-25 15:49:23", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51981", "13", "2017-03-25 15:49:24", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("51982", "15", "2017-03-25 16:00:05", "5.9.98.130", "442");
INSERT INTO `wp_gf_form_view` VALUES("51983", "10", "2017-03-25 16:00:05", "5.9.98.130", "442");
INSERT INTO `wp_gf_form_view` VALUES("51984", "15", "2017-03-25 17:00:01", "5.9.98.130", "490");
INSERT INTO `wp_gf_form_view` VALUES("51985", "10", "2017-03-25 17:00:02", "5.9.98.130", "490");
INSERT INTO `wp_gf_form_view` VALUES("51986", "15", "2017-03-25 18:00:01", "5.9.98.130", "270");
INSERT INTO `wp_gf_form_view` VALUES("51987", "10", "2017-03-25 18:00:01", "5.9.98.130", "270");
INSERT INTO `wp_gf_form_view` VALUES("51988", "15", "2017-03-25 19:11:46", "5.9.98.130", "437");
INSERT INTO `wp_gf_form_view` VALUES("51989", "10", "2017-03-25 19:11:46", "5.9.98.130", "351");
INSERT INTO `wp_gf_form_view` VALUES("51990", "3", "2017-03-25 19:54:09", "88.15.30.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("51991", "11", "2017-03-25 19:54:16", "88.15.30.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("51992", "2", "2017-03-25 19:55:15", "88.15.30.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("51993", "15", "2017-03-25 20:00:03", "5.9.98.130", "774");
INSERT INTO `wp_gf_form_view` VALUES("51994", "10", "2017-03-25 20:00:04", "5.9.98.130", "390");
INSERT INTO `wp_gf_form_view` VALUES("51995", "3", "2017-03-25 20:57:36", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("51996", "6", "2017-03-25 20:57:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51997", "9", "2017-03-25 20:57:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51998", "8", "2017-03-25 20:57:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("51999", "13", "2017-03-25 20:57:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52000", "15", "2017-03-25 21:00:06", "5.9.98.130", "832");
INSERT INTO `wp_gf_form_view` VALUES("52001", "10", "2017-03-25 21:00:06", "5.9.98.130", "417");
INSERT INTO `wp_gf_form_view` VALUES("52002", "15", "2017-03-25 22:00:07", "5.9.98.130", "1001");
INSERT INTO `wp_gf_form_view` VALUES("52003", "10", "2017-03-25 22:00:07", "5.9.98.130", "501");
INSERT INTO `wp_gf_form_view` VALUES("52004", "3", "2017-03-25 22:03:52", "5.9.145.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("52005", "15", "2017-03-25 23:00:07", "5.9.98.130", "675");
INSERT INTO `wp_gf_form_view` VALUES("52006", "10", "2017-03-25 23:00:07", "5.9.98.130", "338");
INSERT INTO `wp_gf_form_view` VALUES("52007", "15", "2017-03-26 00:00:00", "5.9.98.130", "711");
INSERT INTO `wp_gf_form_view` VALUES("52008", "10", "2017-03-26 00:00:01", "5.9.98.130", "386");
INSERT INTO `wp_gf_form_view` VALUES("52009", "15", "2017-03-26 01:00:03", "5.9.98.130", "372");
INSERT INTO `wp_gf_form_view` VALUES("52010", "10", "2017-03-26 01:00:03", "5.9.98.130", "371");
INSERT INTO `wp_gf_form_view` VALUES("52011", "15", "2017-03-26 02:00:04", "5.9.98.130", "413");
INSERT INTO `wp_gf_form_view` VALUES("52012", "10", "2017-03-26 02:00:04", "5.9.98.130", "413");
INSERT INTO `wp_gf_form_view` VALUES("52013", "3", "2017-03-26 02:30:24", "51.255.65.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("52014", "9", "2017-03-26 02:43:34", "188.213.49.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("52015", "8", "2017-03-26 02:43:51", "188.213.49.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("52016", "15", "2017-03-26 03:00:02", "5.9.98.130", "317");
INSERT INTO `wp_gf_form_view` VALUES("52017", "10", "2017-03-26 03:00:02", "5.9.98.130", "317");
INSERT INTO `wp_gf_form_view` VALUES("52018", "15", "2017-03-26 04:00:03", "5.9.98.130", "342");
INSERT INTO `wp_gf_form_view` VALUES("52019", "10", "2017-03-26 04:00:04", "5.9.98.130", "342");
INSERT INTO `wp_gf_form_view` VALUES("52020", "15", "2017-03-26 05:00:12", "5.9.98.130", "140");
INSERT INTO `wp_gf_form_view` VALUES("52021", "10", "2017-03-26 05:00:12", "5.9.98.130", "141");
INSERT INTO `wp_gf_form_view` VALUES("52022", "9", "2017-03-26 05:24:52", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("52023", "3", "2017-03-26 05:55:30", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52024", "15", "2017-03-26 06:12:16", "167.114.174.95", "9");
INSERT INTO `wp_gf_form_view` VALUES("52025", "10", "2017-03-26 06:12:17", "167.114.174.95", "11");
INSERT INTO `wp_gf_form_view` VALUES("52026", "2", "2017-03-26 06:12:19", "167.114.174.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("52027", "14", "2017-03-26 06:12:43", "167.114.174.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("52028", "3", "2017-03-26 06:13:11", "167.114.174.95", "26");
INSERT INTO `wp_gf_form_view` VALUES("52029", "6", "2017-03-26 06:55:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52030", "9", "2017-03-26 06:55:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52031", "8", "2017-03-26 06:55:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52032", "13", "2017-03-26 06:55:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52033", "15", "2017-03-26 07:09:00", "167.114.173.221", "8");
INSERT INTO `wp_gf_form_view` VALUES("52034", "10", "2017-03-26 07:09:00", "167.114.173.221", "7");
INSERT INTO `wp_gf_form_view` VALUES("52035", "3", "2017-03-26 07:36:55", "46.4.0.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("52036", "14", "2017-03-26 07:57:59", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("52037", "15", "2017-03-26 08:19:30", "202.46.49.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("52038", "10", "2017-03-26 08:19:30", "202.46.49.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("52039", "3", "2017-03-26 08:21:20", "66.249.79.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("52040", "10", "2017-03-26 09:19:43", "157.55.39.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("52041", "15", "2017-03-26 09:19:46", "157.55.39.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("52042", "3", "2017-03-26 10:11:54", "202.46.56.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("52043", "15", "2017-03-26 10:11:55", "202.46.56.16", "9");
INSERT INTO `wp_gf_form_view` VALUES("52044", "10", "2017-03-26 10:11:55", "202.46.56.16", "7");
INSERT INTO `wp_gf_form_view` VALUES("52045", "14", "2017-03-26 10:36:52", "107.150.90.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("52046", "2", "2017-03-26 10:41:56", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("52047", "11", "2017-03-26 10:42:09", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("52048", "15", "2017-03-26 11:23:48", "77.75.76.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("52049", "10", "2017-03-26 11:23:49", "77.75.76.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("52050", "11", "2017-03-26 11:51:55", "202.46.49.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("52051", "15", "2017-03-26 12:16:48", "157.55.39.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("52052", "3", "2017-03-26 12:25:15", "202.46.58.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("52053", "10", "2017-03-26 12:25:16", "202.46.58.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("52054", "11", "2017-03-26 13:08:32", "77.75.76.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("52055", "3", "2017-03-26 13:15:19", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("52056", "6", "2017-03-26 13:15:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52057", "9", "2017-03-26 13:15:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52058", "8", "2017-03-26 13:15:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52059", "10", "2017-03-26 13:15:20", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("52060", "13", "2017-03-26 13:15:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52061", "15", "2017-03-26 13:15:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52062", "15", "2017-03-26 14:04:44", "77.75.77.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("52063", "10", "2017-03-26 14:04:45", "77.75.77.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("52064", "3", "2017-03-26 14:29:31", "51.255.65.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("52065", "3", "2017-03-26 15:30:10", "5.9.106.230", "3");
INSERT INTO `wp_gf_form_view` VALUES("52066", "15", "2017-03-26 15:30:10", "5.9.106.230", "6");
INSERT INTO `wp_gf_form_view` VALUES("52067", "10", "2017-03-26 15:30:10", "5.9.106.230", "6");
INSERT INTO `wp_gf_form_view` VALUES("52068", "13", "2017-03-26 15:30:24", "5.9.106.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("52069", "15", "2017-03-26 16:08:53", "208.43.225.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("52070", "10", "2017-03-26 16:08:53", "208.43.225.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("52071", "3", "2017-03-26 16:23:23", "202.46.50.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("52072", "3", "2017-03-26 18:03:36", "66.183.12.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("52073", "15", "2017-03-26 18:03:38", "66.183.12.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("52074", "10", "2017-03-26 18:03:38", "66.183.12.73", "4");
INSERT INTO `wp_gf_form_view` VALUES("52075", "3", "2017-03-26 19:52:59", "202.46.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("52076", "15", "2017-03-26 19:53:01", "202.46.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("52077", "10", "2017-03-26 19:53:01", "202.46.57.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("52078", "15", "2017-03-26 20:26:19", "202.46.49.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("52079", "10", "2017-03-26 20:26:19", "202.46.49.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("52080", "3", "2017-03-26 20:39:18", "83.18.240.138", "27");
INSERT INTO `wp_gf_form_view` VALUES("52081", "15", "2017-03-26 21:32:59", "202.46.52.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("52082", "10", "2017-03-26 21:32:59", "202.46.52.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("52083", "3", "2017-03-26 22:18:38", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("52084", "15", "2017-03-26 22:18:38", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("52085", "10", "2017-03-26 22:18:38", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("52086", "15", "2017-03-26 23:06:59", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("52087", "10", "2017-03-26 23:07:00", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("52088", "3", "2017-03-26 23:13:58", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("52089", "6", "2017-03-26 23:13:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52090", "9", "2017-03-26 23:13:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52091", "8", "2017-03-26 23:13:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52092", "13", "2017-03-26 23:13:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52093", "14", "2017-03-27 00:48:57", "94.177.233.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("52094", "15", "2017-03-27 00:48:57", "94.177.233.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("52095", "10", "2017-03-27 00:48:57", "94.177.233.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("52096", "15", "2017-03-27 02:58:36", "163.172.66.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("52097", "10", "2017-03-27 02:58:38", "163.172.66.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("52098", "15", "2017-03-27 03:21:39", "202.46.53.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("52099", "10", "2017-03-27 03:21:40", "202.46.53.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("52100", "2", "2017-03-27 03:55:00", "202.46.53.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("52101", "3", "2017-03-27 04:16:51", "192.162.227.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("52102", "13", "2017-03-27 04:16:59", "192.162.227.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("52103", "15", "2017-03-27 04:39:54", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("52104", "10", "2017-03-27 04:39:54", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52105", "15", "2017-03-27 05:01:39", "202.46.49.191", "46");
INSERT INTO `wp_gf_form_view` VALUES("52106", "10", "2017-03-27 05:01:39", "202.46.49.191", "60");
INSERT INTO `wp_gf_form_view` VALUES("52107", "3", "2017-03-27 05:05:19", "207.46.13.156", "44");
INSERT INTO `wp_gf_form_view` VALUES("52108", "9", "2017-03-27 05:05:21", "207.46.13.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("52109", "11", "2017-03-27 05:05:23", "207.46.13.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("52110", "8", "2017-03-27 05:06:24", "157.55.39.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("52111", "6", "2017-03-27 05:30:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52112", "13", "2017-03-27 05:30:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52113", "15", "2017-03-27 06:04:35", "75.155.180.209", "6");
INSERT INTO `wp_gf_form_view` VALUES("52114", "10", "2017-03-27 06:04:35", "75.155.180.209", "5");
INSERT INTO `wp_gf_form_view` VALUES("52115", "3", "2017-03-27 07:35:37", "66.249.79.40", "5");
INSERT INTO `wp_gf_form_view` VALUES("52116", "15", "2017-03-27 07:35:38", "66.249.79.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("52117", "10", "2017-03-27 07:35:38", "66.249.79.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("52118", "15", "2017-03-27 08:26:26", "207.46.13.48", "9");
INSERT INTO `wp_gf_form_view` VALUES("52119", "10", "2017-03-27 08:26:27", "207.46.13.48", "6");
INSERT INTO `wp_gf_form_view` VALUES("52120", "3", "2017-03-27 08:47:44", "157.55.39.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("52121", "15", "2017-03-27 09:31:30", "207.46.13.48", "4");
INSERT INTO `wp_gf_form_view` VALUES("52122", "10", "2017-03-27 09:31:30", "207.46.13.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("52123", "6", "2017-03-27 10:13:41", "157.55.39.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("52124", "15", "2017-03-27 10:13:41", "157.55.39.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("52125", "10", "2017-03-27 10:13:41", "157.55.39.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("52126", "3", "2017-03-27 10:17:36", "157.55.39.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("52127", "15", "2017-03-27 11:25:36", "47.150.129.197", "6");
INSERT INTO `wp_gf_form_view` VALUES("52128", "10", "2017-03-27 11:25:37", "47.150.129.197", "5");
INSERT INTO `wp_gf_form_view` VALUES("52129", "3", "2017-03-27 11:59:54", "163.172.64.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("52130", "11", "2017-03-27 12:14:38", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52131", "3", "2017-03-27 12:14:41", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52132", "15", "2017-03-27 12:14:41", "157.55.39.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("52133", "10", "2017-03-27 12:14:41", "157.55.39.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("52134", "3", "2017-03-27 13:27:26", "207.46.13.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("52135", "15", "2017-03-27 13:27:26", "207.46.13.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("52136", "10", "2017-03-27 13:27:26", "207.46.13.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("52137", "15", "2017-03-27 14:00:13", "66.249.79.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("52138", "10", "2017-03-27 14:00:14", "66.249.79.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("52139", "3", "2017-03-27 14:43:38", "178.202.133.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("52140", "15", "2017-03-27 15:25:40", "66.249.79.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("52141", "10", "2017-03-27 15:25:41", "66.249.79.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("52142", "3", "2017-03-27 15:48:48", "66.249.79.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("52143", "15", "2017-03-27 16:05:45", "164.132.161.63", "4");
INSERT INTO `wp_gf_form_view` VALUES("52144", "10", "2017-03-27 16:05:45", "164.132.161.63", "6");
INSERT INTO `wp_gf_form_view` VALUES("52145", "3", "2017-03-27 16:07:14", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("52146", "6", "2017-03-27 16:07:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52147", "9", "2017-03-27 16:07:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52148", "8", "2017-03-27 16:07:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52149", "13", "2017-03-27 16:07:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52150", "2", "2017-03-27 16:13:53", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52151", "11", "2017-03-27 16:41:09", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52152", "15", "2017-03-27 21:13:30", "202.46.49.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("52153", "10", "2017-03-27 21:14:54", "202.46.49.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("52154", "3", "2017-03-27 21:25:28", "157.55.39.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("52155", "3", "2017-03-27 22:32:11", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("52156", "6", "2017-03-27 22:32:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52157", "9", "2017-03-27 22:32:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52158", "8", "2017-03-27 22:32:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52159", "10", "2017-03-27 22:32:13", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("52160", "13", "2017-03-27 22:32:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52161", "15", "2017-03-27 22:32:14", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("52162", "15", "2017-03-27 23:26:16", "202.46.51.191", "4");
INSERT INTO `wp_gf_form_view` VALUES("52163", "10", "2017-03-27 23:26:17", "202.46.51.191", "5");
INSERT INTO `wp_gf_form_view` VALUES("52164", "3", "2017-03-27 23:35:34", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52165", "14", "2017-03-27 23:55:55", "176.103.56.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("52166", "2", "2017-03-28 01:19:39", "138.197.111.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("52167", "10", "2017-03-28 01:19:39", "138.197.111.194", "9");
INSERT INTO `wp_gf_form_view` VALUES("52168", "15", "2017-03-28 01:19:40", "138.197.111.194", "9");
INSERT INTO `wp_gf_form_view` VALUES("52169", "3", "2017-03-28 01:19:44", "138.197.111.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("52170", "11", "2017-03-28 01:19:45", "138.197.111.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("52171", "14", "2017-03-28 01:21:46", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("52172", "6", "2017-03-28 01:58:12", "202.46.53.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("52173", "15", "2017-03-28 02:20:08", "24.108.4.141", "7");
INSERT INTO `wp_gf_form_view` VALUES("52174", "10", "2017-03-28 02:20:08", "24.108.4.141", "8");
INSERT INTO `wp_gf_form_view` VALUES("52175", "3", "2017-03-28 02:48:13", "163.172.66.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("52176", "7", "2017-03-28 02:55:47", "40.77.167.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("52177", "15", "2017-03-28 04:04:35", "163.172.66.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("52178", "10", "2017-03-28 04:04:35", "163.172.66.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("52179", "15", "2017-03-28 05:07:27", "157.55.39.194", "17");
INSERT INTO `wp_gf_form_view` VALUES("52180", "10", "2017-03-28 05:07:27", "157.55.39.194", "16");
INSERT INTO `wp_gf_form_view` VALUES("52181", "2", "2017-03-28 05:09:03", "5.188.211.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("52182", "11", "2017-03-28 05:09:24", "5.188.211.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("52183", "3", "2017-03-28 05:31:38", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("52184", "5", "2017-03-28 05:50:22", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("52185", "15", "2017-03-28 06:03:07", "162.156.84.130", "8");
INSERT INTO `wp_gf_form_view` VALUES("52186", "10", "2017-03-28 06:03:07", "162.156.84.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("52187", "11", "2017-03-28 06:28:50", "162.156.84.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("52188", "3", "2017-03-28 06:34:56", "108.180.48.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("52189", "14", "2017-03-28 06:51:32", "70.66.220.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("52190", "2", "2017-03-28 06:55:48", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("52191", "3", "2017-03-28 07:20:10", "157.55.39.194", "27");
INSERT INTO `wp_gf_form_view` VALUES("52192", "8", "2017-03-28 07:20:10", "157.55.39.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("52193", "13", "2017-03-28 07:20:10", "157.55.39.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("52194", "15", "2017-03-28 07:31:33", "202.46.50.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("52195", "10", "2017-03-28 07:31:34", "202.46.50.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("52196", "15", "2017-03-28 08:05:20", "185.116.212.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("52197", "10", "2017-03-28 08:05:20", "185.116.212.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("52198", "3", "2017-03-28 08:08:42", "157.55.39.194", "52");
INSERT INTO `wp_gf_form_view` VALUES("52199", "8", "2017-03-28 08:08:42", "157.55.39.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("52200", "13", "2017-03-28 08:08:43", "157.55.39.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("52201", "6", "2017-03-28 08:34:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52202", "9", "2017-03-28 08:34:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52203", "15", "2017-03-28 09:32:27", "164.132.161.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("52204", "10", "2017-03-28 09:32:28", "164.132.161.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("52205", "15", "2017-03-28 10:28:32", "163.172.65.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("52206", "10", "2017-03-28 10:28:35", "163.172.65.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("52207", "15", "2017-03-28 11:05:47", "164.132.161.52", "4");
INSERT INTO `wp_gf_form_view` VALUES("52208", "10", "2017-03-28 11:05:47", "164.132.161.52", "6");
INSERT INTO `wp_gf_form_view` VALUES("52209", "3", "2017-03-28 11:24:31", "164.132.161.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("52210", "3", "2017-03-28 12:12:10", "163.172.66.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("52211", "15", "2017-03-28 12:12:10", "163.172.66.154", "3");
INSERT INTO `wp_gf_form_view` VALUES("52212", "10", "2017-03-28 12:12:10", "163.172.66.154", "3");
INSERT INTO `wp_gf_form_view` VALUES("52213", "15", "2017-03-28 13:23:04", "77.75.76.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("52214", "10", "2017-03-28 13:23:06", "77.75.76.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("52215", "15", "2017-03-28 14:01:44", "157.55.39.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("52216", "10", "2017-03-28 14:01:45", "157.55.39.194", "6");
INSERT INTO `wp_gf_form_view` VALUES("52217", "3", "2017-03-28 15:18:13", "52.88.109.3", "25");
INSERT INTO `wp_gf_form_view` VALUES("52218", "6", "2017-03-28 15:18:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52219", "9", "2017-03-28 15:18:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52220", "8", "2017-03-28 15:18:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52221", "10", "2017-03-28 15:18:16", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("52222", "13", "2017-03-28 15:18:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52223", "15", "2017-03-28 15:18:18", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("52224", "15", "2017-03-28 16:30:28", "66.249.79.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("52225", "10", "2017-03-28 16:30:45", "66.249.79.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("52226", "12", "2017-03-28 18:01:36", "202.46.57.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("52227", "15", "2017-03-28 18:01:47", "202.46.57.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("52228", "10", "2017-03-28 18:01:49", "202.46.57.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("52229", "14", "2017-03-28 18:06:50", "107.173.169.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("52230", "3", "2017-03-28 18:34:52", "202.46.56.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("52231", "6", "2017-03-28 19:12:13", "163.172.65.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("52232", "15", "2017-03-28 19:12:14", "163.172.65.204", "3");
INSERT INTO `wp_gf_form_view` VALUES("52233", "10", "2017-03-28 19:12:14", "163.172.65.204", "3");
INSERT INTO `wp_gf_form_view` VALUES("52234", "3", "2017-03-28 19:12:14", "163.172.65.204", "5");
INSERT INTO `wp_gf_form_view` VALUES("52235", "15", "2017-03-28 20:03:00", "46.4.97.116", "11");
INSERT INTO `wp_gf_form_view` VALUES("52236", "10", "2017-03-28 20:03:00", "46.4.97.116", "11");
INSERT INTO `wp_gf_form_view` VALUES("52237", "3", "2017-03-28 20:03:00", "46.4.97.116", "12");
INSERT INTO `wp_gf_form_view` VALUES("52238", "2", "2017-03-28 20:03:35", "46.4.97.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("52239", "6", "2017-03-28 20:04:25", "46.4.97.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("52240", "10", "2017-03-28 21:00:15", "192.99.100.21", "12");
INSERT INTO `wp_gf_form_view` VALUES("52241", "15", "2017-03-28 21:00:16", "192.99.100.21", "9");
INSERT INTO `wp_gf_form_view` VALUES("52242", "3", "2017-03-28 21:00:16", "192.99.100.21", "9");
INSERT INTO `wp_gf_form_view` VALUES("52243", "14", "2017-03-28 21:56:15", "168.235.70.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("52244", "11", "2017-03-28 22:37:44", "184.69.106.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("52245", "3", "2017-03-28 23:00:35", "68.180.229.247", "14");
INSERT INTO `wp_gf_form_view` VALUES("52246", "15", "2017-03-28 23:00:37", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("52247", "10", "2017-03-28 23:00:38", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("52248", "13", "2017-03-28 23:39:35", "207.46.13.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("52249", "14", "2017-03-28 23:56:08", "63.135.161.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("52250", "11", "2017-03-28 23:56:21", "63.135.161.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("52251", "13", "2017-03-29 00:10:36", "207.46.13.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("52252", "15", "2017-03-29 00:10:36", "207.46.13.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("52253", "10", "2017-03-29 00:10:36", "207.46.13.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("52254", "3", "2017-03-29 00:10:36", "207.46.13.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("52255", "3", "2017-03-29 01:04:33", "66.249.79.48", "13");
INSERT INTO `wp_gf_form_view` VALUES("52256", "15", "2017-03-29 01:04:33", "66.249.79.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("52257", "10", "2017-03-29 01:04:34", "66.249.79.48", "7");
INSERT INTO `wp_gf_form_view` VALUES("52258", "14", "2017-03-29 01:57:52", "146.0.74.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("52259", "13", "2017-03-29 02:03:54", "207.46.13.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("52260", "15", "2017-03-29 02:03:54", "207.46.13.161", "10");
INSERT INTO `wp_gf_form_view` VALUES("52261", "10", "2017-03-29 02:03:54", "207.46.13.161", "13");
INSERT INTO `wp_gf_form_view` VALUES("52262", "3", "2017-03-29 02:03:55", "207.46.13.161", "36");
INSERT INTO `wp_gf_form_view` VALUES("52263", "6", "2017-03-29 02:09:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52264", "9", "2017-03-29 02:09:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52265", "8", "2017-03-29 02:09:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52266", "11", "2017-03-29 02:57:30", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("52267", "13", "2017-03-29 03:09:59", "207.46.13.161", "7");
INSERT INTO `wp_gf_form_view` VALUES("52268", "15", "2017-03-29 03:09:59", "207.46.13.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("52269", "10", "2017-03-29 03:09:59", "207.46.13.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("52270", "3", "2017-03-29 03:10:00", "207.46.13.161", "9");
INSERT INTO `wp_gf_form_view` VALUES("52271", "3", "2017-03-29 04:53:29", "202.46.58.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("52272", "15", "2017-03-29 04:53:31", "202.46.58.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("52273", "10", "2017-03-29 04:53:31", "202.46.58.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("52274", "2", "2017-03-29 05:17:23", "5.188.211.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("52275", "15", "2017-03-29 05:17:32", "5.188.211.22", "6");
INSERT INTO `wp_gf_form_view` VALUES("52276", "10", "2017-03-29 05:17:33", "5.188.211.22", "5");
INSERT INTO `wp_gf_form_view` VALUES("52277", "3", "2017-03-29 05:17:34", "5.188.211.22", "6");
INSERT INTO `wp_gf_form_view` VALUES("52278", "11", "2017-03-29 05:17:43", "5.188.211.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("52279", "15", "2017-03-29 06:23:30", "202.46.51.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("52280", "10", "2017-03-29 06:23:32", "202.46.51.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("52281", "3", "2017-03-29 06:23:33", "202.46.51.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("52282", "3", "2017-03-29 07:43:35", "157.55.39.210", "6");
INSERT INTO `wp_gf_form_view` VALUES("52283", "15", "2017-03-29 07:43:36", "157.55.39.210", "6");
INSERT INTO `wp_gf_form_view` VALUES("52284", "10", "2017-03-29 07:43:36", "157.55.39.210", "5");
INSERT INTO `wp_gf_form_view` VALUES("52285", "2", "2017-03-29 07:52:30", "5.188.211.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("52286", "11", "2017-03-29 07:52:45", "5.188.211.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("52287", "3", "2017-03-29 08:30:20", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("52288", "6", "2017-03-29 08:30:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52289", "9", "2017-03-29 08:30:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52290", "8", "2017-03-29 08:30:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52291", "10", "2017-03-29 08:30:21", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("52292", "13", "2017-03-29 08:30:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52293", "15", "2017-03-29 08:30:22", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("52294", "2", "2017-03-29 08:33:35", "5.188.211.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("52295", "11", "2017-03-29 08:34:01", "163.172.66.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("52296", "11", "2017-03-29 09:04:16", "85.144.181.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("52297", "15", "2017-03-29 09:04:21", "85.144.181.178", "12");
INSERT INTO `wp_gf_form_view` VALUES("52298", "10", "2017-03-29 09:04:21", "85.144.181.178", "12");
INSERT INTO `wp_gf_form_view` VALUES("52299", "3", "2017-03-29 09:04:22", "85.144.181.178", "14");
INSERT INTO `wp_gf_form_view` VALUES("52300", "2", "2017-03-29 09:05:06", "85.144.181.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("52301", "15", "2017-03-29 10:28:25", "202.46.49.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("52302", "10", "2017-03-29 10:28:25", "202.46.49.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("52303", "3", "2017-03-29 10:28:25", "202.46.49.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("52304", "10", "2017-03-29 11:11:14", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("52305", "15", "2017-03-29 11:11:15", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("52306", "3", "2017-03-29 11:11:16", "68.180.229.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("52307", "14", "2017-03-29 11:25:08", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52308", "6", "2017-03-29 12:00:43", "69.30.198.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("52309", "15", "2017-03-29 12:01:06", "69.30.198.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("52310", "10", "2017-03-29 12:01:06", "69.30.198.202", "5");
INSERT INTO `wp_gf_form_view` VALUES("52311", "3", "2017-03-29 12:01:06", "69.30.198.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("52312", "6", "2017-03-29 13:15:03", "202.46.49.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("52313", "15", "2017-03-29 13:15:03", "202.46.49.112", "5");
INSERT INTO `wp_gf_form_view` VALUES("52314", "10", "2017-03-29 13:15:04", "202.46.49.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("52315", "3", "2017-03-29 13:15:04", "202.46.49.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("52316", "11", "2017-03-29 13:50:10", "52.26.163.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("52317", "15", "2017-03-29 14:06:04", "220.181.108.158", "24");
INSERT INTO `wp_gf_form_view` VALUES("52318", "10", "2017-03-29 14:06:04", "220.181.108.158", "33");
INSERT INTO `wp_gf_form_view` VALUES("52319", "3", "2017-03-29 14:06:04", "220.181.108.158", "102");
INSERT INTO `wp_gf_form_view` VALUES("52320", "13", "2017-03-29 14:57:12", "40.77.167.116", "6");
INSERT INTO `wp_gf_form_view` VALUES("52321", "8", "2017-03-29 14:57:27", "40.77.167.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("52322", "9", "2017-03-29 14:57:33", "40.77.167.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("52323", "15", "2017-03-29 15:21:43", "204.12.207.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("52324", "10", "2017-03-29 15:21:44", "204.12.207.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("52325", "3", "2017-03-29 15:21:44", "204.12.207.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("52326", "15", "2017-03-29 16:07:30", "202.46.53.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("52327", "10", "2017-03-29 16:07:31", "202.46.53.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("52328", "3", "2017-03-29 16:07:31", "202.46.53.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("52329", "3", "2017-03-29 17:14:11", "202.46.48.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("52330", "15", "2017-03-29 17:14:12", "202.46.48.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("52331", "10", "2017-03-29 17:14:12", "202.46.48.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("52332", "14", "2017-03-29 18:12:19", "206.127.88.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("52333", "15", "2017-03-29 18:12:19", "206.127.88.99", "9");
INSERT INTO `wp_gf_form_view` VALUES("52334", "10", "2017-03-29 18:12:19", "206.127.88.99", "8");
INSERT INTO `wp_gf_form_view` VALUES("52335", "3", "2017-03-29 18:12:19", "206.127.88.99", "7");
INSERT INTO `wp_gf_form_view` VALUES("52336", "10", "2017-03-29 19:07:14", "202.46.53.149", "8");
INSERT INTO `wp_gf_form_view` VALUES("52337", "15", "2017-03-29 19:07:14", "202.46.53.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("52338", "3", "2017-03-29 19:07:14", "202.46.53.149", "7");
INSERT INTO `wp_gf_form_view` VALUES("52339", "3", "2017-03-29 20:12:36", "52.88.109.3", "44");
INSERT INTO `wp_gf_form_view` VALUES("52340", "6", "2017-03-29 20:12:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52341", "9", "2017-03-29 20:12:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52342", "8", "2017-03-29 20:12:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52343", "10", "2017-03-29 20:12:38", "52.88.109.3", "20");
INSERT INTO `wp_gf_form_view` VALUES("52344", "13", "2017-03-29 20:12:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52345", "15", "2017-03-29 20:12:39", "52.88.109.3", "20");
INSERT INTO `wp_gf_form_view` VALUES("52346", "5", "2017-03-29 20:22:34", "163.172.65.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("52347", "2", "2017-03-29 20:28:04", "5.188.211.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("52348", "14", "2017-03-29 20:28:04", "24.108.6.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("52349", "11", "2017-03-29 20:28:28", "5.188.211.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("52350", "3", "2017-03-29 21:09:53", "104.196.24.131", "32");
INSERT INTO `wp_gf_form_view` VALUES("52351", "15", "2017-03-29 21:09:53", "104.196.24.131", "29");
INSERT INTO `wp_gf_form_view` VALUES("52352", "10", "2017-03-29 21:09:53", "104.196.24.131", "30");
INSERT INTO `wp_gf_form_view` VALUES("52353", "2", "2017-03-29 21:11:35", "104.196.24.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("52354", "11", "2017-03-29 21:13:39", "104.196.24.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("52355", "5", "2017-03-29 21:45:18", "77.75.76.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("52356", "14", "2017-03-29 21:56:50", "104.196.186.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("52357", "15", "2017-03-29 22:01:15", "104.196.186.134", "24");
INSERT INTO `wp_gf_form_view` VALUES("52358", "10", "2017-03-29 22:01:15", "104.196.186.134", "25");
INSERT INTO `wp_gf_form_view` VALUES("52359", "3", "2017-03-29 22:01:15", "104.196.186.134", "34");
INSERT INTO `wp_gf_form_view` VALUES("52360", "14", "2017-03-29 22:48:01", "104.196.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("52361", "13", "2017-03-29 22:48:13", "104.196.24.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("52362", "3", "2017-03-29 23:33:27", "104.196.183.13", "56");
INSERT INTO `wp_gf_form_view` VALUES("52363", "15", "2017-03-29 23:33:27", "104.196.183.13", "29");
INSERT INTO `wp_gf_form_view` VALUES("52364", "10", "2017-03-29 23:33:27", "104.196.183.13", "31");
INSERT INTO `wp_gf_form_view` VALUES("52365", "8", "2017-03-29 23:33:43", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("52366", "13", "2017-03-29 23:34:08", "104.196.183.13", "3");
INSERT INTO `wp_gf_form_view` VALUES("52367", "9", "2017-03-29 23:34:10", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("52368", "6", "2017-03-29 23:34:44", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("52369", "3", "2017-03-30 00:03:59", "68.180.229.247", "56");
INSERT INTO `wp_gf_form_view` VALUES("52370", "15", "2017-03-30 00:03:59", "68.180.229.247", "25");
INSERT INTO `wp_gf_form_view` VALUES("52371", "10", "2017-03-30 00:03:59", "68.180.229.247", "27");
INSERT INTO `wp_gf_form_view` VALUES("52372", "8", "2017-03-30 00:18:17", "104.196.167.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("52373", "9", "2017-03-30 00:18:29", "104.196.167.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("52374", "13", "2017-03-30 00:19:37", "104.196.167.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("52375", "15", "2017-03-30 01:01:51", "104.196.24.131", "23");
INSERT INTO `wp_gf_form_view` VALUES("52376", "10", "2017-03-30 01:01:51", "104.196.24.131", "22");
INSERT INTO `wp_gf_form_view` VALUES("52377", "3", "2017-03-30 01:01:51", "104.196.24.131", "53");
INSERT INTO `wp_gf_form_view` VALUES("52378", "6", "2017-03-30 01:02:37", "104.196.24.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("52379", "8", "2017-03-30 01:03:13", "104.196.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("52380", "9", "2017-03-30 01:03:23", "104.196.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("52381", "11", "2017-03-30 01:13:16", "142.0.35.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("52382", "2", "2017-03-30 01:14:03", "142.0.35.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("52383", "3", "2017-03-30 02:16:31", "66.249.79.44", "28");
INSERT INTO `wp_gf_form_view` VALUES("52384", "15", "2017-03-30 02:16:31", "66.249.79.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("52385", "10", "2017-03-30 02:16:31", "66.249.79.44", "4");
INSERT INTO `wp_gf_form_view` VALUES("52386", "6", "2017-03-30 02:55:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52387", "9", "2017-03-30 02:55:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52388", "8", "2017-03-30 02:55:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52389", "13", "2017-03-30 02:55:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52390", "15", "2017-03-30 03:07:18", "107.190.19.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("52391", "10", "2017-03-30 03:07:18", "107.190.19.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("52392", "3", "2017-03-30 03:07:18", "107.190.19.194", "6");
INSERT INTO `wp_gf_form_view` VALUES("52393", "13", "2017-03-30 03:37:43", "51.255.65.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("52394", "15", "2017-03-30 04:54:19", "77.75.79.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("52395", "10", "2017-03-30 04:54:19", "77.75.79.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("52396", "3", "2017-03-30 04:54:20", "77.75.79.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("52397", "10", "2017-03-30 05:10:46", "207.46.13.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("52398", "15", "2017-03-30 05:10:46", "207.46.13.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("52399", "3", "2017-03-30 05:10:46", "207.46.13.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("52400", "15", "2017-03-30 06:24:45", "24.108.6.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("52401", "10", "2017-03-30 06:24:50", "24.108.6.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("52402", "3", "2017-03-30 06:24:50", "24.108.6.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("52403", "3", "2017-03-30 07:15:24", "66.249.79.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("52404", "15", "2017-03-30 07:36:30", "77.75.79.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("52405", "10", "2017-03-30 07:36:31", "77.75.79.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("52406", "15", "2017-03-30 08:09:30", "104.215.93.5", "6");
INSERT INTO `wp_gf_form_view` VALUES("52407", "10", "2017-03-30 08:09:30", "104.215.93.5", "6");
INSERT INTO `wp_gf_form_view` VALUES("52408", "3", "2017-03-30 08:09:30", "104.215.93.5", "8");
INSERT INTO `wp_gf_form_view` VALUES("52409", "11", "2017-03-30 08:09:36", "104.215.93.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("52410", "2", "2017-03-30 08:09:37", "104.215.93.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("52411", "15", "2017-03-30 09:23:43", "202.46.55.122", "7");
INSERT INTO `wp_gf_form_view` VALUES("52412", "10", "2017-03-30 09:23:43", "202.46.55.122", "6");
INSERT INTO `wp_gf_form_view` VALUES("52413", "3", "2017-03-30 09:23:43", "202.46.55.122", "10");
INSERT INTO `wp_gf_form_view` VALUES("52414", "11", "2017-03-30 09:38:43", "138.197.96.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("52415", "2", "2017-03-30 09:38:45", "138.197.96.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("52416", "15", "2017-03-30 10:22:11", "77.75.78.166", "5");
INSERT INTO `wp_gf_form_view` VALUES("52417", "10", "2017-03-30 10:22:11", "77.75.78.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("52418", "3", "2017-03-30 10:22:12", "77.75.78.166", "6");
INSERT INTO `wp_gf_form_view` VALUES("52419", "8", "2017-03-30 10:53:46", "157.55.39.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("52420", "3", "2017-03-30 11:03:43", "202.46.48.92", "309");
INSERT INTO `wp_gf_form_view` VALUES("52421", "15", "2017-03-30 11:03:43", "202.46.48.92", "317");
INSERT INTO `wp_gf_form_view` VALUES("52422", "10", "2017-03-30 11:03:43", "202.46.48.92", "289");
INSERT INTO `wp_gf_form_view` VALUES("52423", "14", "2017-03-30 11:16:50", "104.236.109.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("52424", "11", "2017-03-30 11:16:59", "104.236.109.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("52425", "6", "2017-03-30 11:25:20", "104.236.109.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("52426", "2", "2017-03-30 11:26:54", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("52427", "9", "2017-03-30 11:35:15", "104.236.109.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("52428", "15", "2017-03-30 12:00:05", "104.236.109.129", "235");
INSERT INTO `wp_gf_form_view` VALUES("52429", "10", "2017-03-30 12:00:05", "104.236.109.129", "219");
INSERT INTO `wp_gf_form_view` VALUES("52430", "3", "2017-03-30 12:00:05", "104.236.109.129", "237");
INSERT INTO `wp_gf_form_view` VALUES("52431", "2", "2017-03-30 12:23:25", "104.236.109.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("52432", "13", "2017-03-30 12:36:10", "104.236.109.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("52433", "3", "2017-03-30 13:17:04", "202.46.57.79", "30");
INSERT INTO `wp_gf_form_view` VALUES("52434", "15", "2017-03-30 13:17:05", "202.46.57.79", "4");
INSERT INTO `wp_gf_form_view` VALUES("52435", "10", "2017-03-30 13:17:05", "202.46.57.79", "7");
INSERT INTO `wp_gf_form_view` VALUES("52436", "6", "2017-03-30 13:49:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52437", "9", "2017-03-30 13:49:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52438", "8", "2017-03-30 13:49:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52439", "13", "2017-03-30 13:49:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52440", "15", "2017-03-30 14:17:38", "220.181.108.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("52441", "10", "2017-03-30 14:17:38", "220.181.108.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("52442", "3", "2017-03-30 14:17:38", "220.181.108.114", "6");
INSERT INTO `wp_gf_form_view` VALUES("52443", "12", "2017-03-30 15:08:42", "163.172.66.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("52444", "15", "2017-03-30 15:08:42", "163.172.66.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("52445", "10", "2017-03-30 15:08:42", "163.172.66.55", "4");
INSERT INTO `wp_gf_form_view` VALUES("52446", "3", "2017-03-30 15:08:42", "163.172.66.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("52447", "10", "2017-03-30 16:02:15", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("52448", "15", "2017-03-30 16:02:27", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("52449", "3", "2017-03-30 16:02:27", "68.180.229.247", "15");
INSERT INTO `wp_gf_form_view` VALUES("52450", "6", "2017-03-30 16:28:21", "217.182.91.226", "2");
INSERT INTO `wp_gf_form_view` VALUES("52451", "15", "2017-03-30 17:10:22", "202.46.53.67", "4");
INSERT INTO `wp_gf_form_view` VALUES("52452", "10", "2017-03-30 17:10:22", "202.46.53.67", "5");
INSERT INTO `wp_gf_form_view` VALUES("52453", "3", "2017-03-30 17:10:23", "202.46.53.67", "6");
INSERT INTO `wp_gf_form_view` VALUES("52454", "10", "2017-03-30 18:00:04", "205.201.132.14", "10");
INSERT INTO `wp_gf_form_view` VALUES("52455", "15", "2017-03-30 18:00:04", "205.201.132.14", "10");
INSERT INTO `wp_gf_form_view` VALUES("52456", "3", "2017-03-30 18:00:04", "205.201.132.14", "10");
INSERT INTO `wp_gf_form_view` VALUES("52457", "16", "2017-03-30 18:28:18", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("52458", "2", "2017-03-30 18:31:54", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("52459", "11", "2017-03-30 18:32:20", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("52460", "14", "2017-03-30 18:58:31", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("52461", "14", "2017-03-30 19:00:33", "184.66.49.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("52462", "15", "2017-03-30 19:00:34", "184.66.49.231", "8");
INSERT INTO `wp_gf_form_view` VALUES("52463", "10", "2017-03-30 19:00:34", "184.66.49.231", "8");
INSERT INTO `wp_gf_form_view` VALUES("52464", "3", "2017-03-30 19:00:34", "184.66.49.231", "8");
INSERT INTO `wp_gf_form_view` VALUES("52465", "8", "2017-03-30 19:48:01", "96.54.47.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("52466", "14", "2017-03-30 20:24:30", "146.0.74.182", "3");
INSERT INTO `wp_gf_form_view` VALUES("52467", "15", "2017-03-30 20:51:30", "202.46.53.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("52468", "10", "2017-03-30 20:51:30", "202.46.53.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("52469", "3", "2017-03-30 20:51:31", "202.46.53.110", "4");
INSERT INTO `wp_gf_form_view` VALUES("52470", "3", "2017-03-30 21:04:01", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("52471", "6", "2017-03-30 21:04:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52472", "9", "2017-03-30 21:04:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52473", "8", "2017-03-30 21:04:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52474", "10", "2017-03-30 21:04:02", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("52475", "13", "2017-03-30 21:04:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52476", "15", "2017-03-30 21:04:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("52477", "15", "2017-03-30 22:09:16", "66.249.79.48", "10");
INSERT INTO `wp_gf_form_view` VALUES("52478", "10", "2017-03-30 22:09:16", "66.249.79.48", "10");
INSERT INTO `wp_gf_form_view` VALUES("52479", "3", "2017-03-30 22:09:16", "66.249.79.48", "11");
INSERT INTO `wp_gf_form_view` VALUES("52480", "10", "2017-03-30 23:38:08", "202.46.52.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("52481", "15", "2017-03-30 23:38:10", "202.46.52.149", "4");
INSERT INTO `wp_gf_form_view` VALUES("52482", "3", "2017-03-30 23:38:10", "202.46.52.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("52483", "15", "2017-03-31 00:11:27", "202.46.51.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("52484", "10", "2017-03-31 00:11:28", "202.46.51.167", "8");
INSERT INTO `wp_gf_form_view` VALUES("52485", "3", "2017-03-31 00:11:28", "202.46.51.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("52486", "2", "2017-03-31 00:39:02", "13.124.76.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("52487", "11", "2017-03-31 00:39:04", "13.124.76.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("52488", "3", "2017-03-31 01:43:54", "202.46.54.28", "3");
INSERT INTO `wp_gf_form_view` VALUES("52489", "15", "2017-03-31 01:43:55", "202.46.54.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("52490", "10", "2017-03-31 01:43:55", "202.46.54.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("52491", "13", "2017-03-31 01:55:47", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52492", "11", "2017-03-31 02:11:03", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52493", "3", "2017-03-31 02:52:11", "163.172.66.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("52494", "15", "2017-03-31 02:52:12", "163.172.66.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("52495", "10", "2017-03-31 02:52:12", "163.172.66.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("52496", "3", "2017-03-31 03:07:06", "157.55.39.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("52497", "15", "2017-03-31 03:07:06", "157.55.39.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("52498", "10", "2017-03-31 03:07:06", "157.55.39.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("52499", "15", "2017-03-31 04:01:23", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("52500", "10", "2017-03-31 04:01:24", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("52501", "3", "2017-03-31 04:01:24", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("52502", "3", "2017-03-31 05:40:29", "157.55.39.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("52503", "15", "2017-03-31 05:40:31", "157.55.39.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("52504", "10", "2017-03-31 05:40:31", "157.55.39.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("52505", "15", "2017-03-31 06:33:03", "144.76.8.66", "9");
INSERT INTO `wp_gf_form_view` VALUES("52506", "10", "2017-03-31 06:33:05", "144.76.8.66", "10");
INSERT INTO `wp_gf_form_view` VALUES("52507", "3", "2017-03-31 06:33:06", "144.76.8.66", "11");
INSERT INTO `wp_gf_form_view` VALUES("52508", "14", "2017-03-31 06:33:16", "144.76.8.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("52509", "15", "2017-03-31 07:52:03", "202.46.56.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("52510", "10", "2017-03-31 07:52:03", "202.46.56.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("52511", "3", "2017-03-31 07:52:04", "202.46.56.17", "27");
INSERT INTO `wp_gf_form_view` VALUES("52512", "6", "2017-03-31 07:52:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52513", "9", "2017-03-31 07:52:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52514", "8", "2017-03-31 07:52:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52515", "13", "2017-03-31 07:52:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52516", "15", "2017-03-31 08:07:23", "217.69.133.233", "11");
INSERT INTO `wp_gf_form_view` VALUES("52517", "10", "2017-03-31 08:07:23", "217.69.133.233", "18");
INSERT INTO `wp_gf_form_view` VALUES("52518", "3", "2017-03-31 08:07:23", "217.69.133.233", "50");
INSERT INTO `wp_gf_form_view` VALUES("52519", "13", "2017-03-31 08:36:29", "157.55.39.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("52520", "8", "2017-03-31 08:37:27", "157.55.39.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52521", "3", "2017-03-31 09:14:53", "157.55.39.120", "76");
INSERT INTO `wp_gf_form_view` VALUES("52522", "10", "2017-03-31 09:14:53", "157.55.39.120", "25");
INSERT INTO `wp_gf_form_view` VALUES("52523", "13", "2017-03-31 09:14:53", "157.55.39.120", "4");
INSERT INTO `wp_gf_form_view` VALUES("52524", "15", "2017-03-31 09:14:53", "157.55.39.120", "20");
INSERT INTO `wp_gf_form_view` VALUES("52525", "8", "2017-03-31 09:35:25", "157.55.39.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("52526", "9", "2017-03-31 09:35:30", "157.55.39.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("52527", "11", "2017-03-31 09:39:20", "217.122.185.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("52528", "2", "2017-03-31 09:40:08", "217.122.185.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("52529", "15", "2017-03-31 10:06:47", "157.55.39.97", "3");
INSERT INTO `wp_gf_form_view` VALUES("52530", "10", "2017-03-31 10:06:47", "157.55.39.97", "3");
INSERT INTO `wp_gf_form_view` VALUES("52531", "3", "2017-03-31 10:06:47", "157.55.39.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("52532", "15", "2017-03-31 11:21:46", "176.62.76.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("52533", "10", "2017-03-31 11:21:46", "176.62.76.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("52534", "3", "2017-03-31 11:21:47", "176.62.76.168", "12");
INSERT INTO `wp_gf_form_view` VALUES("52535", "11", "2017-03-31 11:48:01", "220.181.108.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("52536", "9", "2017-03-31 11:57:51", "157.55.39.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("52537", "8", "2017-03-31 11:57:55", "157.55.39.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("52538", "13", "2017-03-31 11:57:55", "157.55.39.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("52539", "3", "2017-03-31 12:29:18", "202.46.54.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("52540", "15", "2017-03-31 12:29:18", "202.46.54.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("52541", "10", "2017-03-31 12:29:18", "202.46.54.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("52542", "14", "2017-03-31 12:56:16", "24.68.156.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("52543", "3", "2017-03-31 13:02:37", "202.46.54.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("52544", "15", "2017-03-31 13:02:37", "202.46.54.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("52545", "10", "2017-03-31 13:02:37", "202.46.54.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("52546", "3", "2017-03-31 14:33:08", "52.88.109.3", "142");
INSERT INTO `wp_gf_form_view` VALUES("52547", "6", "2017-03-31 14:33:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52548", "9", "2017-03-31 14:33:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52549", "8", "2017-03-31 14:33:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52550", "10", "2017-03-31 14:33:12", "52.88.109.3", "107");
INSERT INTO `wp_gf_form_view` VALUES("52551", "13", "2017-03-31 14:33:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("52552", "15", "2017-03-31 14:33:13", "52.88.109.3", "126");
INSERT INTO `wp_gf_form_view` VALUES("52553", "11", "2017-03-31 14:33:21", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("52554", "2", "2017-03-31 14:33:22", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("52555", "14", "2017-03-31 14:34:36", "173.192.34.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("52556", "10", "2017-03-31 15:01:27", "199.16.157.180", "3");
INSERT INTO `wp_gf_form_view` VALUES("52557", "15", "2017-03-31 15:01:28", "199.16.157.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("52558", "3", "2017-03-31 15:01:28", "199.16.157.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("52559", "3", "2017-03-31 16:05:19", "163.172.66.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("52560", "15", "2017-03-31 16:05:37", "163.172.66.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("52561", "10", "2017-03-31 16:05:38", "163.172.66.184", "5");
INSERT INTO `wp_gf_form_view` VALUES("52562", "15", "2017-03-31 17:27:15", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("52563", "10", "2017-03-31 17:27:22", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("52564", "3", "2017-03-31 17:27:24", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("52565", "3", "2017-03-31 18:45:15", "202.46.48.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("52566", "15", "2017-03-31 19:01:22", "157.55.39.120", "4");
INSERT INTO `wp_gf_form_view` VALUES("52567", "10", "2017-03-31 19:01:41", "157.55.39.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("52568", "3", "2017-03-31 19:01:42", "157.55.39.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("52569", "15", "2017-03-31 20:06:24", "207.46.13.100", "33");
INSERT INTO `wp_gf_form_view` VALUES("52570", "10", "2017-03-31 20:06:25", "207.46.13.100", "27");
INSERT INTO `wp_gf_form_view` VALUES("52571", "3", "2017-03-31 20:06:25", "207.46.13.100", "31");
INSERT INTO `wp_gf_form_view` VALUES("52572", "11", "2017-03-31 20:26:53", "5.188.211.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("52573", "2", "2017-03-31 20:26:56", "5.188.211.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("52574", "3", "2017-03-31 21:15:49", "47.150.129.197", "13");
INSERT INTO `wp_gf_form_view` VALUES("52575", "15", "2017-03-31 21:15:59", "47.150.129.197", "7");
INSERT INTO `wp_gf_form_view` VALUES("52576", "10", "2017-03-31 21:15:59", "47.150.129.197", "7");
INSERT INTO `wp_gf_form_view` VALUES("52577", "6", "2017-03-31 21:16:19", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("52578", "15", "2017-03-31 22:06:25", "5.188.211.41", "27");
INSERT INTO `wp_gf_form_view` VALUES("52579", "10", "2017-03-31 22:06:26", "5.188.211.41", "23");
INSERT INTO `wp_gf_form_view` VALUES("52580", "3", "2017-03-31 22:06:26", "5.188.211.41", "26");
INSERT INTO `wp_gf_form_view` VALUES("52581", "2", "2017-03-31 22:44:21", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("52582", "3", "2017-03-31 23:05:34", "202.46.56.194", "5");
INSERT INTO `wp_gf_form_view` VALUES("52583", "15", "2017-03-31 23:05:35", "202.46.56.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("52584", "10", "2017-03-31 23:05:35", "202.46.56.194", "3");
INSERT INTO `wp_gf_form_view` VALUES("52585", "3", "2017-04-01 00:07:41", "5.188.211.22", "9");
INSERT INTO `wp_gf_form_view` VALUES("52586", "11", "2017-04-01 00:08:00", "5.188.211.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("52587", "2", "2017-04-01 00:08:04", "5.188.211.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("52588", "15", "2017-04-01 00:08:07", "5.188.211.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("52589", "10", "2017-04-01 00:08:07", "5.188.211.22", "9");
INSERT INTO `wp_gf_form_view` VALUES("52590", "3", "2017-04-01 01:01:59", "163.172.65.243", "39");
INSERT INTO `wp_gf_form_view` VALUES("52591", "15", "2017-04-01 01:01:59", "163.172.65.243", "13");
INSERT INTO `wp_gf_form_view` VALUES("52592", "10", "2017-04-01 01:01:59", "163.172.65.243", "14");
INSERT INTO `wp_gf_form_view` VALUES("52593", "6", "2017-04-01 01:36:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52594", "9", "2017-04-01 01:36:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52595", "8", "2017-04-01 01:36:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52596", "13", "2017-04-01 01:36:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52597", "11", "2017-04-01 01:42:17", "192.99.67.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("52598", "2", "2017-04-01 01:42:21", "192.99.67.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("52599", "14", "2017-04-01 01:51:38", "64.180.72.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("52600", "3", "2017-04-01 02:04:43", "66.249.79.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("52601", "15", "2017-04-01 02:04:43", "66.249.79.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("52602", "10", "2017-04-01 02:04:44", "66.249.79.48", "3");
INSERT INTO `wp_gf_form_view` VALUES("52603", "15", "2017-04-01 03:12:12", "40.77.167.14", "5");
INSERT INTO `wp_gf_form_view` VALUES("52604", "10", "2017-04-01 03:12:13", "40.77.167.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("52605", "3", "2017-04-01 03:12:13", "40.77.167.14", "5");
INSERT INTO `wp_gf_form_view` VALUES("52606", "13", "2017-04-01 03:26:57", "66.249.79.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("52607", "15", "2017-04-01 04:21:31", "202.46.55.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("52608", "10", "2017-04-01 04:21:31", "202.46.55.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("52609", "3", "2017-04-01 04:21:31", "202.46.55.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("52610", "12", "2017-04-01 05:28:10", "202.46.52.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("52611", "15", "2017-04-01 05:28:11", "202.46.52.160", "13");
INSERT INTO `wp_gf_form_view` VALUES("52612", "10", "2017-04-01 05:28:11", "202.46.52.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("52613", "3", "2017-04-01 05:28:11", "202.46.52.160", "11");
INSERT INTO `wp_gf_form_view` VALUES("52614", "15", "2017-04-01 06:01:31", "202.46.49.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("52615", "10", "2017-04-01 06:01:32", "202.46.49.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("52616", "3", "2017-04-01 06:01:32", "202.46.49.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("52617", "15", "2017-04-01 08:06:31", "77.75.76.166", "5");
INSERT INTO `wp_gf_form_view` VALUES("52618", "10", "2017-04-01 08:06:33", "77.75.76.166", "8");
INSERT INTO `wp_gf_form_view` VALUES("52619", "3", "2017-04-01 08:06:33", "77.75.76.166", "30");
INSERT INTO `wp_gf_form_view` VALUES("52620", "6", "2017-04-01 08:07:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52621", "9", "2017-04-01 08:07:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52622", "8", "2017-04-01 08:07:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52623", "13", "2017-04-01 08:07:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52624", "10", "2017-04-01 09:17:36", "163.172.65.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("52625", "15", "2017-04-01 09:17:36", "163.172.65.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("52626", "3", "2017-04-01 09:17:36", "163.172.65.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("52627", "15", "2017-04-01 11:14:32", "113.190.82.146", "65");
INSERT INTO `wp_gf_form_view` VALUES("52628", "10", "2017-04-01 11:14:36", "113.190.82.146", "56");
INSERT INTO `wp_gf_form_view` VALUES("52629", "3", "2017-04-01 11:14:36", "113.190.82.146", "64");
INSERT INTO `wp_gf_form_view` VALUES("52630", "15", "2017-04-01 12:45:30", "220.181.108.178", "28");
INSERT INTO `wp_gf_form_view` VALUES("52631", "10", "2017-04-01 12:45:31", "220.181.108.178", "24");
INSERT INTO `wp_gf_form_view` VALUES("52632", "3", "2017-04-01 12:45:31", "220.181.108.178", "26");
INSERT INTO `wp_gf_form_view` VALUES("52633", "15", "2017-04-01 13:05:49", "157.55.39.143", "3");
INSERT INTO `wp_gf_form_view` VALUES("52634", "10", "2017-04-01 13:05:49", "157.55.39.143", "3");
INSERT INTO `wp_gf_form_view` VALUES("52635", "3", "2017-04-01 13:05:49", "157.55.39.143", "3");
INSERT INTO `wp_gf_form_view` VALUES("52636", "5", "2017-04-01 13:50:35", "202.46.50.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("52637", "10", "2017-04-01 14:34:42", "77.75.76.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("52638", "15", "2017-04-01 14:34:42", "77.75.76.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("52639", "3", "2017-04-01 14:34:43", "77.75.76.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("52640", "6", "2017-04-01 15:30:37", "202.46.48.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("52641", "15", "2017-04-01 15:30:37", "202.46.48.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("52642", "10", "2017-04-01 15:30:37", "202.46.48.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("52643", "3", "2017-04-01 15:30:38", "202.46.48.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("52644", "15", "2017-04-01 16:03:55", "202.46.51.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("52645", "10", "2017-04-01 16:03:55", "202.46.51.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("52646", "3", "2017-04-01 16:03:55", "202.46.51.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("52647", "15", "2017-04-01 17:07:29", "163.172.66.126", "63");
INSERT INTO `wp_gf_form_view` VALUES("52648", "10", "2017-04-01 17:07:29", "163.172.66.126", "77");
INSERT INTO `wp_gf_form_view` VALUES("52649", "3", "2017-04-01 17:07:29", "163.172.66.126", "75");
INSERT INTO `wp_gf_form_view` VALUES("52650", "13", "2017-04-01 17:28:46", "207.46.13.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("52651", "8", "2017-04-01 17:28:48", "207.46.13.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("52652", "9", "2017-04-01 17:29:42", "157.55.39.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("52653", "3", "2017-04-01 18:32:59", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("52654", "6", "2017-04-01 18:32:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52655", "9", "2017-04-01 18:33:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52656", "8", "2017-04-01 18:33:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52657", "10", "2017-04-01 18:33:00", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("52658", "13", "2017-04-01 18:33:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52659", "15", "2017-04-01 18:33:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52660", "3", "2017-04-01 19:10:09", "207.46.13.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("52661", "15", "2017-04-01 19:10:10", "207.46.13.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("52662", "10", "2017-04-01 19:10:10", "207.46.13.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("52663", "15", "2017-04-01 20:08:50", "77.75.78.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("52664", "10", "2017-04-01 20:08:50", "77.75.78.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("52665", "3", "2017-04-01 20:08:50", "77.75.78.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("52666", "3", "2017-04-01 21:10:48", "47.150.129.197", "10");
INSERT INTO `wp_gf_form_view` VALUES("52667", "15", "2017-04-01 21:10:48", "47.150.129.197", "6");
INSERT INTO `wp_gf_form_view` VALUES("52668", "10", "2017-04-01 21:10:48", "47.150.129.197", "6");
INSERT INTO `wp_gf_form_view` VALUES("52669", "3", "2017-04-01 22:14:49", "207.46.13.104", "19");
INSERT INTO `wp_gf_form_view` VALUES("52670", "15", "2017-04-01 22:14:49", "207.46.13.104", "18");
INSERT INTO `wp_gf_form_view` VALUES("52671", "10", "2017-04-01 22:14:49", "207.46.13.104", "13");
INSERT INTO `wp_gf_form_view` VALUES("52672", "15", "2017-04-01 23:11:31", "157.55.39.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("52673", "10", "2017-04-01 23:11:31", "157.55.39.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("52674", "3", "2017-04-01 23:11:31", "157.55.39.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("52675", "3", "2017-04-02 00:47:32", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("52676", "6", "2017-04-02 00:47:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52677", "9", "2017-04-02 00:47:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52678", "8", "2017-04-02 00:47:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52679", "10", "2017-04-02 00:47:34", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("52680", "13", "2017-04-02 00:47:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52681", "15", "2017-04-02 00:47:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52682", "14", "2017-04-02 01:12:11", "207.46.13.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("52683", "15", "2017-04-02 01:15:24", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("52684", "10", "2017-04-02 01:15:24", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("52685", "3", "2017-04-02 01:15:24", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("52686", "11", "2017-04-02 02:07:52", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52687", "13", "2017-04-02 02:53:07", "163.172.65.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("52688", "15", "2017-04-02 04:26:38", "202.46.54.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("52689", "10", "2017-04-02 04:26:39", "202.46.54.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("52690", "3", "2017-04-02 04:26:39", "202.46.54.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("52691", "3", "2017-04-02 05:33:16", "202.46.53.177", "4");
INSERT INTO `wp_gf_form_view` VALUES("52692", "15", "2017-04-02 05:33:17", "202.46.53.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("52693", "10", "2017-04-02 05:33:17", "202.46.53.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("52694", "15", "2017-04-02 06:15:05", "157.55.39.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("52695", "10", "2017-04-02 06:15:06", "157.55.39.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("52696", "3", "2017-04-02 06:15:06", "157.55.39.159", "4");
INSERT INTO `wp_gf_form_view` VALUES("52697", "15", "2017-04-02 07:32:09", "164.132.161.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("52698", "10", "2017-04-02 07:32:13", "164.132.161.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("52699", "3", "2017-04-02 07:32:13", "164.132.161.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("52700", "3", "2017-04-02 08:33:22", "163.172.65.217", "4");
INSERT INTO `wp_gf_form_view` VALUES("52701", "15", "2017-04-02 08:50:29", "163.172.64.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("52702", "10", "2017-04-02 08:50:30", "163.172.64.230", "2");
INSERT INTO `wp_gf_form_view` VALUES("52703", "15", "2017-04-02 09:47:32", "157.55.39.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("52704", "10", "2017-04-02 09:47:33", "157.55.39.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("52705", "3", "2017-04-02 09:47:33", "157.55.39.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("52706", "15", "2017-04-02 10:03:11", "163.172.66.9", "5");
INSERT INTO `wp_gf_form_view` VALUES("52707", "10", "2017-04-02 10:03:11", "163.172.66.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("52708", "3", "2017-04-02 10:03:11", "163.172.66.9", "5");
INSERT INTO `wp_gf_form_view` VALUES("52709", "3", "2017-04-02 11:34:03", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("52710", "6", "2017-04-02 11:34:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52711", "9", "2017-04-02 11:34:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52712", "8", "2017-04-02 11:34:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52713", "10", "2017-04-02 11:34:05", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("52714", "13", "2017-04-02 11:34:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52715", "15", "2017-04-02 11:34:06", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("52716", "3", "2017-04-02 12:17:07", "207.46.13.187", "5");
INSERT INTO `wp_gf_form_view` VALUES("52717", "15", "2017-04-02 12:17:07", "207.46.13.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("52718", "10", "2017-04-02 12:17:07", "207.46.13.187", "5");
INSERT INTO `wp_gf_form_view` VALUES("52719", "3", "2017-04-02 13:06:34", "207.46.13.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("52720", "15", "2017-04-02 13:06:34", "207.46.13.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("52721", "10", "2017-04-02 13:06:34", "207.46.13.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("52722", "14", "2017-04-02 13:13:56", "117.14.152.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("52723", "3", "2017-04-02 14:09:27", "51.255.66.103", "7");
INSERT INTO `wp_gf_form_view` VALUES("52724", "15", "2017-04-02 14:09:27", "51.255.66.103", "5");
INSERT INTO `wp_gf_form_view` VALUES("52725", "10", "2017-04-02 14:09:27", "51.255.66.103", "5");
INSERT INTO `wp_gf_form_view` VALUES("52726", "5", "2017-04-02 14:21:16", "77.75.78.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("52727", "15", "2017-04-02 15:02:34", "24.69.144.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("52728", "10", "2017-04-02 15:02:34", "24.69.144.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("52729", "3", "2017-04-02 15:02:34", "24.69.144.171", "6");
INSERT INTO `wp_gf_form_view` VALUES("52730", "15", "2017-04-02 16:18:22", "157.55.39.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("52731", "10", "2017-04-02 16:18:22", "157.55.39.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("52732", "3", "2017-04-02 16:18:22", "157.55.39.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("52733", "15", "2017-04-02 17:03:19", "163.172.64.216", "3");
INSERT INTO `wp_gf_form_view` VALUES("52734", "10", "2017-04-02 17:03:19", "163.172.64.216", "3");
INSERT INTO `wp_gf_form_view` VALUES("52735", "3", "2017-04-02 17:03:19", "163.172.64.216", "4");
INSERT INTO `wp_gf_form_view` VALUES("52736", "14", "2017-04-02 17:17:03", "216.232.149.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("52737", "14", "2017-04-02 18:08:47", "154.5.205.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("52738", "3", "2017-04-02 18:14:41", "52.88.109.3", "51");
INSERT INTO `wp_gf_form_view` VALUES("52739", "6", "2017-04-02 18:14:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52740", "9", "2017-04-02 18:14:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52741", "8", "2017-04-02 18:14:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52742", "10", "2017-04-02 18:14:42", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("52743", "13", "2017-04-02 18:14:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52744", "15", "2017-04-02 18:14:43", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("52745", "14", "2017-04-02 19:20:18", "62.210.111.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("52746", "15", "2017-04-02 19:26:31", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("52747", "10", "2017-04-02 19:26:31", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("52748", "3", "2017-04-02 19:26:31", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("52749", "9", "2017-04-02 20:29:05", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("52750", "15", "2017-04-02 20:29:05", "47.150.129.197", "7");
INSERT INTO `wp_gf_form_view` VALUES("52751", "10", "2017-04-02 20:29:05", "47.150.129.197", "7");
INSERT INTO `wp_gf_form_view` VALUES("52752", "3", "2017-04-02 20:29:05", "47.150.129.197", "13");
INSERT INTO `wp_gf_form_view` VALUES("52753", "15", "2017-04-02 21:53:06", "202.46.57.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("52754", "10", "2017-04-02 21:53:07", "202.46.57.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("52755", "3", "2017-04-02 21:53:08", "202.46.57.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("52756", "14", "2017-04-02 22:01:07", "37.230.135.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("52757", "15", "2017-04-02 22:27:18", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("52758", "10", "2017-04-02 22:27:18", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("52759", "3", "2017-04-02 22:27:18", "66.249.79.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("52760", "3", "2017-04-02 23:06:34", "163.172.66.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("52761", "15", "2017-04-02 23:06:34", "163.172.66.106", "4");
INSERT INTO `wp_gf_form_view` VALUES("52762", "10", "2017-04-02 23:06:34", "163.172.66.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("52763", "2", "2017-04-02 23:21:55", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("52764", "15", "2017-04-03 00:52:42", "66.249.79.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("52765", "10", "2017-04-03 00:52:45", "66.249.79.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("52766", "3", "2017-04-03 00:52:45", "66.249.79.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("52767", "15", "2017-04-03 01:04:02", "202.46.55.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("52768", "10", "2017-04-03 01:04:02", "202.46.55.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("52769", "3", "2017-04-03 01:04:02", "202.46.55.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("52770", "3", "2017-04-03 02:10:42", "202.46.58.57", "5");
INSERT INTO `wp_gf_form_view` VALUES("52771", "15", "2017-04-03 02:10:44", "202.46.58.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("52772", "10", "2017-04-03 02:10:44", "202.46.58.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("52773", "3", "2017-04-03 03:17:23", "202.46.49.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("52774", "15", "2017-04-03 03:17:25", "202.46.49.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("52775", "10", "2017-04-03 03:17:25", "202.46.49.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("52776", "15", "2017-04-03 04:16:03", "66.249.79.40", "6");
INSERT INTO `wp_gf_form_view` VALUES("52777", "10", "2017-04-03 04:16:04", "66.249.79.40", "5");
INSERT INTO `wp_gf_form_view` VALUES("52778", "3", "2017-04-03 04:16:04", "66.249.79.40", "6");
INSERT INTO `wp_gf_form_view` VALUES("52779", "14", "2017-04-03 04:43:34", "208.181.174.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("52780", "3", "2017-04-03 05:09:16", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("52781", "6", "2017-04-03 05:09:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52782", "9", "2017-04-03 05:09:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52783", "8", "2017-04-03 05:09:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52784", "10", "2017-04-03 05:09:18", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("52785", "13", "2017-04-03 05:09:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52786", "15", "2017-04-03 05:09:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("52787", "14", "2017-04-03 06:06:21", "24.68.143.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("52788", "15", "2017-04-03 06:19:26", "77.75.79.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("52789", "10", "2017-04-03 06:19:26", "77.75.79.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("52790", "3", "2017-04-03 06:19:26", "77.75.79.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("52791", "5", "2017-04-03 06:49:00", "202.46.49.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("52792", "15", "2017-04-03 07:11:45", "207.46.13.193", "4");
INSERT INTO `wp_gf_form_view` VALUES("52793", "10", "2017-04-03 07:11:45", "207.46.13.193", "4");
INSERT INTO `wp_gf_form_view` VALUES("52794", "3", "2017-04-03 07:11:45", "207.46.13.193", "5");
INSERT INTO `wp_gf_form_view` VALUES("52795", "15", "2017-04-03 08:09:40", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("52796", "10", "2017-04-03 08:09:40", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("52797", "3", "2017-04-03 08:09:40", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("52798", "14", "2017-04-03 08:28:04", "132.148.76.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("52799", "3", "2017-04-03 09:20:15", "66.249.79.40", "13");
INSERT INTO `wp_gf_form_view` VALUES("52800", "15", "2017-04-03 09:20:18", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("52801", "10", "2017-04-03 09:20:18", "66.249.79.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("52802", "8", "2017-04-03 09:26:43", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("52803", "13", "2017-04-03 09:26:43", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("52804", "15", "2017-04-03 10:09:00", "202.46.56.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("52805", "10", "2017-04-03 10:09:01", "202.46.56.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("52806", "3", "2017-04-03 10:09:01", "202.46.56.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("52807", "3", "2017-04-03 11:57:42", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("52808", "6", "2017-04-03 11:57:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52809", "9", "2017-04-03 11:57:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52810", "8", "2017-04-03 11:57:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52811", "10", "2017-04-03 11:57:43", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("52812", "13", "2017-04-03 11:57:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52813", "15", "2017-04-03 11:57:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52814", "3", "2017-04-03 12:14:07", "207.46.13.68", "4");
INSERT INTO `wp_gf_form_view` VALUES("52815", "15", "2017-04-03 12:14:07", "207.46.13.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("52816", "10", "2017-04-03 12:14:07", "207.46.13.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("52817", "15", "2017-04-03 13:36:14", "220.181.108.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("52818", "10", "2017-04-03 13:36:15", "220.181.108.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("52819", "3", "2017-04-03 13:36:16", "220.181.108.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("52820", "3", "2017-04-03 14:16:03", "66.249.79.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("52821", "15", "2017-04-03 14:16:04", "66.249.79.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("52822", "10", "2017-04-03 14:16:04", "66.249.79.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("52823", "10", "2017-04-03 15:01:05", "188.40.46.135", "11");
INSERT INTO `wp_gf_form_view` VALUES("52824", "11", "2017-04-03 15:01:14", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("52825", "15", "2017-04-03 15:01:19", "188.40.46.135", "13");
INSERT INTO `wp_gf_form_view` VALUES("52826", "3", "2017-04-03 15:01:19", "188.40.46.135", "9");
INSERT INTO `wp_gf_form_view` VALUES("52827", "2", "2017-04-03 15:39:12", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("52828", "15", "2017-04-03 16:24:40", "188.40.46.135", "15");
INSERT INTO `wp_gf_form_view` VALUES("52829", "10", "2017-04-03 16:24:40", "188.40.46.135", "15");
INSERT INTO `wp_gf_form_view` VALUES("52830", "3", "2017-04-03 16:24:40", "188.40.46.135", "20");
INSERT INTO `wp_gf_form_view` VALUES("52831", "15", "2017-04-03 17:00:39", "77.75.76.168", "13");
INSERT INTO `wp_gf_form_view` VALUES("52832", "10", "2017-04-03 17:00:39", "77.75.76.168", "15");
INSERT INTO `wp_gf_form_view` VALUES("52833", "3", "2017-04-03 17:00:40", "77.75.76.168", "13");
INSERT INTO `wp_gf_form_view` VALUES("52834", "11", "2017-04-03 17:34:08", "82.2.44.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("52835", "2", "2017-04-03 17:34:52", "82.2.44.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("52836", "15", "2017-04-03 18:23:26", "209.52.88.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("52837", "10", "2017-04-03 18:23:26", "209.52.88.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("52838", "3", "2017-04-03 18:23:26", "209.52.88.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("52839", "15", "2017-04-03 19:12:40", "66.249.79.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("52840", "10", "2017-04-03 19:12:43", "66.249.79.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("52841", "3", "2017-04-03 19:12:43", "66.249.79.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("52842", "3", "2017-04-03 20:02:38", "47.150.129.197", "11");
INSERT INTO `wp_gf_form_view` VALUES("52843", "15", "2017-04-03 20:02:38", "47.150.129.197", "11");
INSERT INTO `wp_gf_form_view` VALUES("52844", "10", "2017-04-03 20:02:38", "47.150.129.197", "10");
INSERT INTO `wp_gf_form_view` VALUES("52845", "15", "2017-04-03 21:01:52", "24.68.4.16", "7");
INSERT INTO `wp_gf_form_view` VALUES("52846", "10", "2017-04-03 21:01:52", "24.68.4.16", "9");
INSERT INTO `wp_gf_form_view` VALUES("52847", "3", "2017-04-03 21:01:52", "24.68.4.16", "7");
INSERT INTO `wp_gf_form_view` VALUES("52848", "3", "2017-04-03 22:10:01", "202.46.58.26", "30");
INSERT INTO `wp_gf_form_view` VALUES("52849", "15", "2017-04-03 22:10:02", "202.46.58.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("52850", "10", "2017-04-03 22:10:02", "202.46.58.26", "5");
INSERT INTO `wp_gf_form_view` VALUES("52851", "6", "2017-04-03 22:59:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52852", "9", "2017-04-03 22:59:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52853", "8", "2017-04-03 22:59:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52854", "13", "2017-04-03 22:59:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52855", "10", "2017-04-03 23:08:52", "157.55.39.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("52856", "15", "2017-04-03 23:08:52", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("52857", "3", "2017-04-03 23:08:53", "157.55.39.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("52858", "5", "2017-04-03 23:34:17", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("52859", "15", "2017-04-04 01:29:07", "202.46.58.132", "3");
INSERT INTO `wp_gf_form_view` VALUES("52860", "10", "2017-04-04 01:29:09", "202.46.58.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("52861", "3", "2017-04-04 01:29:09", "202.46.58.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("52862", "15", "2017-04-04 02:23:52", "207.46.13.39", "5");
INSERT INTO `wp_gf_form_view` VALUES("52863", "10", "2017-04-04 02:23:53", "207.46.13.39", "5");
INSERT INTO `wp_gf_form_view` VALUES("52864", "3", "2017-04-04 02:23:53", "207.46.13.39", "5");
INSERT INTO `wp_gf_form_view` VALUES("52865", "15", "2017-04-04 03:05:42", "40.77.167.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("52866", "10", "2017-04-04 03:05:42", "40.77.167.47", "6");
INSERT INTO `wp_gf_form_view` VALUES("52867", "3", "2017-04-04 03:05:42", "40.77.167.47", "16");
INSERT INTO `wp_gf_form_view` VALUES("52868", "13", "2017-04-04 03:20:20", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52869", "15", "2017-04-04 04:08:22", "66.249.84.54", "43");
INSERT INTO `wp_gf_form_view` VALUES("52870", "10", "2017-04-04 04:08:22", "66.249.84.54", "47");
INSERT INTO `wp_gf_form_view` VALUES("52871", "3", "2017-04-04 04:08:22", "66.249.84.54", "56");
INSERT INTO `wp_gf_form_view` VALUES("52872", "6", "2017-04-04 04:46:36", "46.229.168.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("52873", "14", "2017-04-04 04:50:22", "46.229.168.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("52874", "15", "2017-04-04 05:21:42", "51.255.65.94", "16");
INSERT INTO `wp_gf_form_view` VALUES("52875", "10", "2017-04-04 05:21:42", "51.255.65.94", "17");
INSERT INTO `wp_gf_form_view` VALUES("52876", "3", "2017-04-04 05:21:43", "51.255.65.94", "43");
INSERT INTO `wp_gf_form_view` VALUES("52877", "14", "2017-04-04 05:29:52", "154.20.39.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("52878", "6", "2017-04-04 05:45:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52879", "9", "2017-04-04 05:45:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52880", "8", "2017-04-04 05:45:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52881", "13", "2017-04-04 05:45:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52882", "2", "2017-04-04 05:58:21", "149.5.113.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("52883", "11", "2017-04-04 05:58:38", "207.195.228.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("52884", "3", "2017-04-04 06:06:31", "68.180.229.247", "115");
INSERT INTO `wp_gf_form_view` VALUES("52885", "15", "2017-04-04 06:06:31", "68.180.229.247", "41");
INSERT INTO `wp_gf_form_view` VALUES("52886", "10", "2017-04-04 06:06:31", "68.180.229.247", "43");
INSERT INTO `wp_gf_form_view` VALUES("52887", "6", "2017-04-04 06:22:31", "95.143.32.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("52888", "9", "2017-04-04 06:22:32", "95.143.32.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("52889", "8", "2017-04-04 06:22:32", "95.143.32.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("52890", "13", "2017-04-04 06:22:33", "95.143.32.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("52891", "14", "2017-04-04 06:23:11", "66.160.179.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("52892", "2", "2017-04-04 06:23:25", "63.223.124.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("52893", "11", "2017-04-04 06:23:42", "66.160.179.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("52894", "3", "2017-04-04 07:16:59", "202.46.53.151", "6");
INSERT INTO `wp_gf_form_view` VALUES("52895", "15", "2017-04-04 07:28:11", "164.132.161.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("52896", "10", "2017-04-04 07:28:11", "164.132.161.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("52897", "15", "2017-04-04 08:46:07", "164.132.161.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("52898", "10", "2017-04-04 08:46:07", "164.132.161.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("52899", "3", "2017-04-04 08:46:07", "164.132.161.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("52900", "15", "2017-04-04 09:43:10", "40.77.167.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("52901", "10", "2017-04-04 09:43:11", "40.77.167.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("52902", "3", "2017-04-04 09:43:11", "40.77.167.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("52903", "15", "2017-04-04 10:21:49", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("52904", "10", "2017-04-04 10:21:49", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("52905", "3", "2017-04-04 10:21:49", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("52906", "8", "2017-04-04 10:58:55", "164.132.161.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("52907", "3", "2017-04-04 11:12:56", "202.46.56.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("52908", "15", "2017-04-04 11:12:56", "202.46.56.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("52909", "10", "2017-04-04 11:12:57", "202.46.56.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("52910", "3", "2017-04-04 12:27:24", "51.255.65.13", "4");
INSERT INTO `wp_gf_form_view` VALUES("52911", "15", "2017-04-04 12:27:24", "51.255.65.13", "3");
INSERT INTO `wp_gf_form_view` VALUES("52912", "10", "2017-04-04 12:27:24", "51.255.65.13", "3");
INSERT INTO `wp_gf_form_view` VALUES("52913", "3", "2017-04-04 13:07:44", "163.172.65.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("52914", "15", "2017-04-04 13:07:47", "163.172.65.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("52915", "10", "2017-04-04 13:07:47", "163.172.65.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("52916", "15", "2017-04-04 14:10:39", "40.77.167.110", "4");
INSERT INTO `wp_gf_form_view` VALUES("52917", "10", "2017-04-04 14:10:42", "40.77.167.110", "6");
INSERT INTO `wp_gf_form_view` VALUES("52918", "3", "2017-04-04 14:10:43", "40.77.167.110", "30");
INSERT INTO `wp_gf_form_view` VALUES("52919", "6", "2017-04-04 14:53:05", "163.172.66.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("52920", "9", "2017-04-04 14:53:05", "163.172.66.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("52921", "8", "2017-04-04 14:53:06", "163.172.66.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("52922", "13", "2017-04-04 14:53:06", "163.172.66.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("52923", "15", "2017-04-04 15:22:16", "202.46.51.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("52924", "10", "2017-04-04 15:22:16", "202.46.51.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("52925", "3", "2017-04-04 15:22:16", "202.46.51.201", "3");
INSERT INTO `wp_gf_form_view` VALUES("52926", "10", "2017-04-04 16:13:28", "75.154.240.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("52927", "15", "2017-04-04 16:13:28", "75.154.240.57", "3");
INSERT INTO `wp_gf_form_view` VALUES("52928", "3", "2017-04-04 16:13:28", "75.154.240.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("52929", "3", "2017-04-04 17:25:55", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("52930", "6", "2017-04-04 17:25:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52931", "9", "2017-04-04 17:25:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52932", "8", "2017-04-04 17:25:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52933", "10", "2017-04-04 17:25:57", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("52934", "13", "2017-04-04 17:25:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52935", "15", "2017-04-04 17:25:57", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("52936", "15", "2017-04-04 18:03:03", "202.46.58.158", "5");
INSERT INTO `wp_gf_form_view` VALUES("52937", "10", "2017-04-04 18:03:03", "202.46.58.158", "5");
INSERT INTO `wp_gf_form_view` VALUES("52938", "3", "2017-04-04 18:03:03", "202.46.58.158", "7");
INSERT INTO `wp_gf_form_view` VALUES("52939", "3", "2017-04-04 19:02:48", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("52940", "15", "2017-04-04 19:02:48", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52941", "10", "2017-04-04 19:02:48", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52942", "14", "2017-04-04 19:33:43", "96.54.58.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("52943", "15", "2017-04-04 20:05:38", "202.46.51.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("52944", "10", "2017-04-04 20:05:39", "202.46.51.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("52945", "3", "2017-04-04 20:05:39", "202.46.51.190", "4");
INSERT INTO `wp_gf_form_view` VALUES("52946", "15", "2017-04-04 21:05:09", "154.20.32.89", "10");
INSERT INTO `wp_gf_form_view` VALUES("52947", "10", "2017-04-04 21:05:09", "154.20.32.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("52948", "3", "2017-04-04 21:05:10", "154.20.32.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("52949", "13", "2017-04-04 21:45:38", "202.46.48.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("52950", "15", "2017-04-04 22:03:24", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("52951", "10", "2017-04-04 22:03:24", "68.180.229.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("52952", "3", "2017-04-04 22:03:24", "68.180.229.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("52953", "11", "2017-04-04 22:52:38", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("52954", "15", "2017-04-05 00:11:27", "24.68.137.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("52955", "10", "2017-04-05 00:11:27", "24.68.137.8", "5");
INSERT INTO `wp_gf_form_view` VALUES("52956", "3", "2017-04-05 00:11:28", "24.68.137.8", "28");
INSERT INTO `wp_gf_form_view` VALUES("52957", "6", "2017-04-05 00:35:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52958", "9", "2017-04-05 00:35:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52959", "8", "2017-04-05 00:35:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52960", "13", "2017-04-05 00:35:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52961", "15", "2017-04-05 01:11:40", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52962", "10", "2017-04-05 01:11:40", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("52963", "3", "2017-04-05 01:11:40", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("52964", "3", "2017-04-05 02:16:14", "163.172.68.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("52965", "15", "2017-04-05 02:16:16", "163.172.68.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("52966", "10", "2017-04-05 02:16:16", "163.172.68.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("52967", "15", "2017-04-05 03:10:11", "103.207.37.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("52968", "10", "2017-04-05 03:10:11", "103.207.37.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("52969", "3", "2017-04-05 03:10:11", "103.207.37.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("52970", "14", "2017-04-05 03:10:23", "195.22.127.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("52971", "15", "2017-04-05 04:19:28", "202.46.48.210", "8");
INSERT INTO `wp_gf_form_view` VALUES("52972", "10", "2017-04-05 04:19:28", "202.46.48.210", "5");
INSERT INTO `wp_gf_form_view` VALUES("52973", "3", "2017-04-05 04:19:28", "202.46.48.210", "6");
INSERT INTO `wp_gf_form_view` VALUES("52974", "15", "2017-04-05 05:22:48", "24.68.153.187", "6");
INSERT INTO `wp_gf_form_view` VALUES("52975", "10", "2017-04-05 05:22:52", "24.68.153.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("52976", "10", "2017-04-05 05:22:52", "24.68.153.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("52977", "3", "2017-04-05 05:22:53", "24.68.153.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("52978", "3", "2017-04-05 05:22:53", "24.68.153.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("52979", "2", "2017-04-05 08:12:08", "220.181.108.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("52980", "3", "2017-04-05 09:02:31", "202.46.50.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("52981", "15", "2017-04-05 09:02:32", "202.46.50.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("52982", "10", "2017-04-05 09:02:33", "202.46.50.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("52983", "15", "2017-04-05 10:21:49", "51.255.65.85", "4");
INSERT INTO `wp_gf_form_view` VALUES("52984", "10", "2017-04-05 10:21:49", "51.255.65.85", "5");
INSERT INTO `wp_gf_form_view` VALUES("52985", "3", "2017-04-05 10:21:49", "51.255.65.85", "6");
INSERT INTO `wp_gf_form_view` VALUES("52986", "14", "2017-04-05 11:09:07", "164.132.161.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("52987", "3", "2017-04-05 12:32:47", "164.132.161.28", "29");
INSERT INTO `wp_gf_form_view` VALUES("52988", "15", "2017-04-05 12:32:49", "164.132.161.28", "3");
INSERT INTO `wp_gf_form_view` VALUES("52989", "10", "2017-04-05 12:32:49", "164.132.161.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("52990", "6", "2017-04-05 12:56:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52991", "9", "2017-04-05 12:56:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52992", "8", "2017-04-05 12:56:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52993", "13", "2017-04-05 12:56:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("52994", "10", "2017-04-05 13:31:44", "157.55.39.29", "30");
INSERT INTO `wp_gf_form_view` VALUES("52995", "3", "2017-04-05 13:31:45", "157.55.39.29", "47");
INSERT INTO `wp_gf_form_view` VALUES("52996", "15", "2017-04-05 13:31:46", "157.55.39.29", "27");
INSERT INTO `wp_gf_form_view` VALUES("52997", "9", "2017-04-05 13:32:04", "157.55.39.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("52998", "13", "2017-04-05 13:32:10", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("52999", "15", "2017-04-05 14:02:31", "202.46.55.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("53000", "10", "2017-04-05 14:02:33", "202.46.55.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("53001", "3", "2017-04-05 14:02:33", "202.46.55.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("53002", "15", "2017-04-05 15:12:47", "77.75.78.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("53003", "10", "2017-04-05 15:12:47", "77.75.78.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("53004", "3", "2017-04-05 15:12:47", "77.75.78.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("53005", "15", "2017-04-05 16:03:18", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53006", "10", "2017-04-05 16:03:20", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("53007", "3", "2017-04-05 16:03:20", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("53008", "15", "2017-04-05 17:17:42", "163.172.66.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("53009", "10", "2017-04-05 17:17:42", "163.172.66.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("53010", "3", "2017-04-05 17:17:43", "163.172.66.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("53011", "15", "2017-04-05 18:18:13", "77.75.77.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("53012", "10", "2017-04-05 18:18:13", "77.75.77.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("53013", "3", "2017-04-05 18:18:14", "77.75.77.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("53014", "15", "2017-04-05 19:08:04", "202.46.49.111", "5");
INSERT INTO `wp_gf_form_view` VALUES("53015", "10", "2017-04-05 19:08:04", "202.46.49.111", "4");
INSERT INTO `wp_gf_form_view` VALUES("53016", "3", "2017-04-05 19:08:04", "202.46.49.111", "6");
INSERT INTO `wp_gf_form_view` VALUES("53017", "6", "2017-04-05 19:26:07", "164.132.161.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("53018", "15", "2017-04-05 20:02:39", "77.75.78.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("53019", "10", "2017-04-05 20:02:39", "77.75.78.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("53020", "3", "2017-04-05 20:02:39", "77.75.78.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("53021", "3", "2017-04-05 21:06:49", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("53022", "6", "2017-04-05 21:06:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53023", "9", "2017-04-05 21:06:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53024", "8", "2017-04-05 21:06:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53025", "10", "2017-04-05 21:06:50", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("53026", "13", "2017-04-05 21:06:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53027", "15", "2017-04-05 21:06:51", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53028", "15", "2017-04-05 22:12:31", "202.46.54.31", "10");
INSERT INTO `wp_gf_form_view` VALUES("53029", "10", "2017-04-05 22:12:31", "202.46.54.31", "9");
INSERT INTO `wp_gf_form_view` VALUES("53030", "3", "2017-04-05 22:12:31", "202.46.54.31", "10");
INSERT INTO `wp_gf_form_view` VALUES("53031", "2", "2017-04-05 22:38:05", "174.127.133.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("53032", "15", "2017-04-05 23:01:02", "174.127.133.56", "25");
INSERT INTO `wp_gf_form_view` VALUES("53033", "10", "2017-04-05 23:01:02", "174.127.133.56", "29");
INSERT INTO `wp_gf_form_view` VALUES("53034", "3", "2017-04-05 23:01:02", "174.127.133.56", "50");
INSERT INTO `wp_gf_form_view` VALUES("53035", "6", "2017-04-05 23:03:41", "174.127.133.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("53036", "9", "2017-04-05 23:03:42", "174.127.133.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("53037", "8", "2017-04-05 23:03:42", "174.127.133.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("53038", "13", "2017-04-05 23:03:42", "174.127.133.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("53039", "14", "2017-04-05 23:11:48", "174.127.133.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("53040", "3", "2017-04-06 00:25:52", "202.46.50.11", "28");
INSERT INTO `wp_gf_form_view` VALUES("53041", "15", "2017-04-06 00:25:53", "202.46.50.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("53042", "10", "2017-04-06 00:25:53", "202.46.50.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("53043", "6", "2017-04-06 00:57:05", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53044", "9", "2017-04-06 00:57:05", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53045", "8", "2017-04-06 00:57:05", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53046", "13", "2017-04-06 00:57:06", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53047", "3", "2017-04-06 01:32:31", "202.46.58.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("53048", "15", "2017-04-06 01:32:32", "202.46.58.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("53049", "10", "2017-04-06 01:32:32", "202.46.58.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("53050", "15", "2017-04-06 02:29:21", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("53051", "10", "2017-04-06 02:39:13", "202.46.50.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("53052", "3", "2017-04-06 02:39:13", "202.46.50.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("53053", "3", "2017-04-06 03:12:33", "202.46.52.151", "4");
INSERT INTO `wp_gf_form_view` VALUES("53054", "15", "2017-04-06 03:12:33", "202.46.52.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("53055", "10", "2017-04-06 03:12:33", "202.46.52.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("53056", "10", "2017-04-06 04:12:52", "51.255.65.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("53057", "15", "2017-04-06 04:12:52", "51.255.65.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("53058", "3", "2017-04-06 04:12:52", "51.255.65.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("53059", "15", "2017-04-06 05:21:11", "157.55.39.26", "7");
INSERT INTO `wp_gf_form_view` VALUES("53060", "10", "2017-04-06 05:21:12", "157.55.39.26", "8");
INSERT INTO `wp_gf_form_view` VALUES("53061", "3", "2017-04-06 05:21:12", "157.55.39.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("53062", "11", "2017-04-06 05:30:43", "163.172.66.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("53063", "15", "2017-04-06 06:06:55", "77.75.77.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("53064", "10", "2017-04-06 06:06:55", "77.75.77.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("53065", "3", "2017-04-06 06:06:55", "77.75.77.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("53066", "15", "2017-04-06 07:03:34", "77.75.77.72", "7");
INSERT INTO `wp_gf_form_view` VALUES("53067", "10", "2017-04-06 07:03:34", "77.75.77.72", "9");
INSERT INTO `wp_gf_form_view` VALUES("53068", "3", "2017-04-06 07:03:34", "77.75.77.72", "8");
INSERT INTO `wp_gf_form_view` VALUES("53069", "15", "2017-04-06 08:07:33", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("53070", "10", "2017-04-06 08:07:33", "68.180.229.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("53071", "3", "2017-04-06 08:07:33", "68.180.229.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("53072", "6", "2017-04-06 08:27:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53073", "9", "2017-04-06 08:27:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53074", "8", "2017-04-06 08:27:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53075", "13", "2017-04-06 08:27:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53076", "3", "2017-04-06 09:11:11", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53077", "15", "2017-04-06 09:16:12", "202.46.55.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("53078", "10", "2017-04-06 09:16:12", "202.46.55.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("53079", "15", "2017-04-06 10:07:07", "163.172.65.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("53080", "10", "2017-04-06 10:07:07", "163.172.65.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("53081", "3", "2017-04-06 10:07:07", "163.172.65.123", "3");
INSERT INTO `wp_gf_form_view` VALUES("53082", "14", "2017-04-06 10:10:51", "62.210.111.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("53083", "15", "2017-04-06 11:53:45", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("53084", "10", "2017-04-06 11:53:46", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("53085", "3", "2017-04-06 11:53:46", "66.249.79.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("53086", "15", "2017-04-06 12:50:41", "164.132.161.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("53087", "10", "2017-04-06 12:50:41", "164.132.161.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("53088", "3", "2017-04-06 12:50:42", "164.132.161.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("53089", "14", "2017-04-06 12:55:25", "37.153.169.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("53090", "3", "2017-04-06 13:12:39", "163.172.66.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("53091", "15", "2017-04-06 14:03:10", "202.46.54.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("53092", "10", "2017-04-06 14:03:12", "202.46.54.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("53093", "3", "2017-04-06 14:03:12", "202.46.54.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("53094", "3", "2017-04-06 15:50:59", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("53095", "6", "2017-04-06 15:51:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53096", "9", "2017-04-06 15:51:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53097", "8", "2017-04-06 15:51:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53098", "10", "2017-04-06 15:51:01", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53099", "13", "2017-04-06 15:51:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53100", "15", "2017-04-06 15:51:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53101", "3", "2017-04-06 16:14:01", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53102", "15", "2017-04-06 16:14:02", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53103", "10", "2017-04-06 16:14:02", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53104", "3", "2017-04-06 17:07:08", "202.46.57.19", "4");
INSERT INTO `wp_gf_form_view` VALUES("53105", "15", "2017-04-06 17:07:08", "202.46.57.19", "3");
INSERT INTO `wp_gf_form_view` VALUES("53106", "10", "2017-04-06 17:07:08", "202.46.57.19", "3");
INSERT INTO `wp_gf_form_view` VALUES("53107", "9", "2017-04-06 17:27:01", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("53108", "2", "2017-04-06 17:52:41", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("53109", "10", "2017-04-06 18:00:38", "205.201.132.14", "6");
INSERT INTO `wp_gf_form_view` VALUES("53110", "15", "2017-04-06 18:00:38", "205.201.132.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("53111", "3", "2017-04-06 18:00:39", "205.201.132.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("53112", "14", "2017-04-06 18:03:55", "107.175.65.132", "3");
INSERT INTO `wp_gf_form_view` VALUES("53113", "15", "2017-04-06 19:20:27", "202.46.51.191", "17");
INSERT INTO `wp_gf_form_view` VALUES("53114", "10", "2017-04-06 19:20:28", "202.46.51.191", "20");
INSERT INTO `wp_gf_form_view` VALUES("53115", "3", "2017-04-06 19:20:29", "202.46.51.191", "13");
INSERT INTO `wp_gf_form_view` VALUES("53116", "15", "2017-04-06 20:20:12", "108.172.119.234", "11");
INSERT INTO `wp_gf_form_view` VALUES("53117", "10", "2017-04-06 20:20:12", "108.172.119.234", "9");
INSERT INTO `wp_gf_form_view` VALUES("53118", "3", "2017-04-06 20:20:12", "108.172.119.234", "10");
INSERT INTO `wp_gf_form_view` VALUES("53119", "15", "2017-04-06 21:00:29", "202.46.53.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("53120", "10", "2017-04-06 21:00:30", "202.46.53.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("53121", "3", "2017-04-06 21:00:30", "202.46.53.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("53122", "15", "2017-04-06 22:07:05", "202.46.49.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("53123", "10", "2017-04-06 22:07:06", "202.46.49.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("53124", "3", "2017-04-06 22:07:06", "202.46.49.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("53125", "2", "2017-04-06 22:51:42", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53126", "15", "2017-04-06 23:13:47", "202.46.51.158", "4");
INSERT INTO `wp_gf_form_view` VALUES("53127", "10", "2017-04-06 23:13:48", "202.46.51.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("53128", "3", "2017-04-06 23:13:48", "202.46.51.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("53129", "14", "2017-04-06 23:16:37", "70.66.168.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("53130", "11", "2017-04-06 23:50:15", "154.20.36.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("53131", "2", "2017-04-06 23:50:21", "154.20.36.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("53132", "14", "2017-04-07 00:17:37", "23.245.152.181", "4");
INSERT INTO `wp_gf_form_view` VALUES("53133", "15", "2017-04-07 00:24:31", "108.180.147.145", "5");
INSERT INTO `wp_gf_form_view` VALUES("53134", "10", "2017-04-07 00:24:31", "108.180.147.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("53135", "3", "2017-04-07 00:24:31", "108.180.147.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("53136", "15", "2017-04-07 01:04:04", "157.55.39.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("53137", "10", "2017-04-07 01:04:04", "157.55.39.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("53138", "3", "2017-04-07 01:04:04", "157.55.39.89", "6");
INSERT INTO `wp_gf_form_view` VALUES("53139", "10", "2017-04-07 02:05:13", "163.172.66.174", "7");
INSERT INTO `wp_gf_form_view` VALUES("53140", "15", "2017-04-07 02:05:13", "163.172.66.174", "8");
INSERT INTO `wp_gf_form_view` VALUES("53141", "3", "2017-04-07 02:05:13", "163.172.66.174", "7");
INSERT INTO `wp_gf_form_view` VALUES("53142", "15", "2017-04-07 03:10:25", "24.108.29.2", "4");
INSERT INTO `wp_gf_form_view` VALUES("53143", "10", "2017-04-07 03:10:25", "24.108.29.2", "6");
INSERT INTO `wp_gf_form_view` VALUES("53144", "3", "2017-04-07 03:10:25", "24.108.29.2", "31");
INSERT INTO `wp_gf_form_view` VALUES("53145", "6", "2017-04-07 03:44:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53146", "9", "2017-04-07 03:44:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53147", "8", "2017-04-07 03:44:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53148", "13", "2017-04-07 03:44:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53149", "15", "2017-04-07 04:02:47", "216.244.66.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("53150", "10", "2017-04-07 04:02:47", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("53151", "3", "2017-04-07 04:02:47", "216.244.66.231", "8");
INSERT INTO `wp_gf_form_view` VALUES("53152", "15", "2017-04-07 05:04:10", "70.66.187.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("53153", "10", "2017-04-07 05:04:10", "70.66.187.163", "5");
INSERT INTO `wp_gf_form_view` VALUES("53154", "3", "2017-04-07 05:04:10", "70.66.187.163", "5");
INSERT INTO `wp_gf_form_view` VALUES("53155", "3", "2017-04-07 06:36:45", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53156", "15", "2017-04-07 07:53:31", "51.255.65.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("53157", "10", "2017-04-07 07:53:32", "51.255.65.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("53158", "3", "2017-04-07 07:53:32", "51.255.65.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("53159", "15", "2017-04-07 08:17:13", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53160", "10", "2017-04-07 08:17:13", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53161", "3", "2017-04-07 08:17:13", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53162", "15", "2017-04-07 09:17:17", "77.75.78.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("53163", "10", "2017-04-07 09:17:17", "77.75.78.160", "5");
INSERT INTO `wp_gf_form_view` VALUES("53164", "3", "2017-04-07 09:17:17", "77.75.78.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("53165", "13", "2017-04-07 10:48:48", "51.255.65.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("53166", "15", "2017-04-07 10:48:51", "51.255.65.49", "2");
INSERT INTO `wp_gf_form_view` VALUES("53167", "10", "2017-04-07 10:48:51", "51.255.65.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("53168", "3", "2017-04-07 10:48:52", "51.255.65.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("53169", "3", "2017-04-07 11:22:54", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("53170", "6", "2017-04-07 11:22:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53171", "9", "2017-04-07 11:22:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53172", "8", "2017-04-07 11:22:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53173", "10", "2017-04-07 11:22:55", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53174", "13", "2017-04-07 11:22:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53175", "15", "2017-04-07 11:22:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53176", "10", "2017-04-07 12:12:00", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53177", "15", "2017-04-07 12:36:05", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53178", "3", "2017-04-07 12:36:06", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53179", "15", "2017-04-07 13:06:12", "202.46.55.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("53180", "10", "2017-04-07 13:06:12", "202.46.55.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("53181", "3", "2017-04-07 13:06:12", "202.46.55.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("53182", "3", "2017-04-07 14:20:37", "202.46.55.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("53183", "15", "2017-04-07 14:20:39", "202.46.55.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("53184", "10", "2017-04-07 14:20:39", "202.46.55.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("53185", "3", "2017-04-07 15:23:26", "163.172.64.187", "7");
INSERT INTO `wp_gf_form_view` VALUES("53186", "15", "2017-04-07 15:23:27", "163.172.64.187", "4");
INSERT INTO `wp_gf_form_view` VALUES("53187", "10", "2017-04-07 15:23:27", "163.172.64.187", "7");
INSERT INTO `wp_gf_form_view` VALUES("53188", "15", "2017-04-07 16:23:52", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("53189", "10", "2017-04-07 16:23:53", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("53190", "3", "2017-04-07 16:23:54", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("53191", "15", "2017-04-07 17:07:37", "202.46.51.32", "7");
INSERT INTO `wp_gf_form_view` VALUES("53192", "10", "2017-04-07 17:09:07", "202.46.51.32", "5");
INSERT INTO `wp_gf_form_view` VALUES("53193", "3", "2017-04-07 17:09:20", "202.46.51.32", "6");
INSERT INTO `wp_gf_form_view` VALUES("53194", "15", "2017-04-07 18:00:49", "64.114.204.58", "7");
INSERT INTO `wp_gf_form_view` VALUES("53195", "10", "2017-04-07 18:00:49", "64.114.204.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("53196", "3", "2017-04-07 18:00:50", "64.114.204.58", "4");
INSERT INTO `wp_gf_form_view` VALUES("53197", "15", "2017-04-07 19:05:56", "96.50.29.134", "5");
INSERT INTO `wp_gf_form_view` VALUES("53198", "10", "2017-04-07 19:06:00", "96.50.29.134", "7");
INSERT INTO `wp_gf_form_view` VALUES("53199", "3", "2017-04-07 19:06:01", "96.50.29.134", "5");
INSERT INTO `wp_gf_form_view` VALUES("53200", "15", "2017-04-07 20:16:04", "207.194.133.9", "12");
INSERT INTO `wp_gf_form_view` VALUES("53201", "10", "2017-04-07 20:16:07", "207.194.133.9", "10");
INSERT INTO `wp_gf_form_view` VALUES("53202", "3", "2017-04-07 20:16:07", "207.194.133.9", "8");
INSERT INTO `wp_gf_form_view` VALUES("53203", "3", "2017-04-07 21:10:46", "202.46.58.164", "13");
INSERT INTO `wp_gf_form_view` VALUES("53204", "10", "2017-04-07 21:10:50", "202.46.58.164", "11");
INSERT INTO `wp_gf_form_view` VALUES("53205", "15", "2017-04-07 21:10:50", "202.46.58.164", "7");
INSERT INTO `wp_gf_form_view` VALUES("53206", "13", "2017-04-07 21:10:51", "202.46.58.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("53207", "15", "2017-04-07 22:04:40", "184.69.20.66", "4");
INSERT INTO `wp_gf_form_view` VALUES("53208", "10", "2017-04-07 22:04:41", "184.69.20.66", "5");
INSERT INTO `wp_gf_form_view` VALUES("53209", "3", "2017-04-07 22:04:41", "184.69.20.66", "4");
INSERT INTO `wp_gf_form_view` VALUES("53210", "14", "2017-04-07 22:30:14", "146.0.74.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("53211", "15", "2017-04-07 23:10:28", "24.108.10.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("53212", "10", "2017-04-07 23:10:28", "24.108.10.224", "7");
INSERT INTO `wp_gf_form_view` VALUES("53213", "3", "2017-04-07 23:10:29", "24.108.10.224", "29");
INSERT INTO `wp_gf_form_view` VALUES("53214", "6", "2017-04-07 23:34:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53215", "9", "2017-04-07 23:34:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53216", "8", "2017-04-07 23:34:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53217", "13", "2017-04-07 23:34:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53218", "3", "2017-04-08 00:07:37", "163.172.64.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("53219", "15", "2017-04-08 00:07:37", "163.172.64.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("53220", "10", "2017-04-08 00:07:37", "163.172.64.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("53221", "12", "2017-04-08 00:18:48", "163.172.66.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("53222", "14", "2017-04-08 00:39:31", "176.103.56.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("53223", "10", "2017-04-08 01:11:31", "199.16.157.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("53224", "15", "2017-04-08 01:11:31", "199.16.157.183", "3");
INSERT INTO `wp_gf_form_view` VALUES("53225", "3", "2017-04-08 01:11:31", "199.16.157.183", "3");
INSERT INTO `wp_gf_form_view` VALUES("53226", "13", "2017-04-08 01:40:36", "163.172.65.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("53227", "3", "2017-04-08 02:25:50", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53228", "10", "2017-04-08 03:44:07", "184.66.34.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("53229", "15", "2017-04-08 03:44:08", "184.66.34.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("53230", "3", "2017-04-08 03:44:08", "184.66.34.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("53231", "7", "2017-04-08 03:52:26", "202.46.58.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("53232", "3", "2017-04-08 04:02:54", "163.172.64.225", "8");
INSERT INTO `wp_gf_form_view` VALUES("53233", "15", "2017-04-08 04:02:54", "163.172.64.225", "5");
INSERT INTO `wp_gf_form_view` VALUES("53234", "10", "2017-04-08 04:02:54", "163.172.64.225", "5");
INSERT INTO `wp_gf_form_view` VALUES("53235", "15", "2017-04-08 05:36:45", "24.68.227.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("53236", "10", "2017-04-08 05:36:45", "24.68.227.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("53237", "3", "2017-04-08 05:36:45", "24.68.227.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("53238", "14", "2017-04-08 05:37:16", "24.68.227.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("53239", "3", "2017-04-08 06:44:39", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("53240", "6", "2017-04-08 06:44:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53241", "9", "2017-04-08 06:44:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53242", "8", "2017-04-08 06:44:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53243", "10", "2017-04-08 06:44:41", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("53244", "13", "2017-04-08 06:44:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53245", "15", "2017-04-08 06:44:42", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("53246", "11", "2017-04-08 07:15:22", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53247", "13", "2017-04-08 07:15:25", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53248", "15", "2017-04-08 07:15:25", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("53249", "10", "2017-04-08 07:15:26", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("53250", "3", "2017-04-08 07:15:27", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("53251", "15", "2017-04-08 08:03:35", "202.46.50.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("53252", "10", "2017-04-08 08:03:35", "202.46.50.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("53253", "3", "2017-04-08 08:03:35", "202.46.50.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("53254", "5", "2017-04-08 08:10:09", "77.75.78.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("53255", "3", "2017-04-08 09:32:00", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("53256", "15", "2017-04-08 09:32:01", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53257", "10", "2017-04-08 09:32:01", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53258", "3", "2017-04-08 10:03:31", "216.244.66.231", "56");
INSERT INTO `wp_gf_form_view` VALUES("53259", "15", "2017-04-08 10:03:32", "216.244.66.231", "54");
INSERT INTO `wp_gf_form_view` VALUES("53260", "10", "2017-04-08 10:03:32", "216.244.66.231", "48");
INSERT INTO `wp_gf_form_view` VALUES("53261", "11", "2017-04-08 10:30:08", "37.59.55.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("53262", "2", "2017-04-08 10:30:12", "37.59.55.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("53263", "14", "2017-04-08 10:31:52", "37.59.55.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("53264", "13", "2017-04-08 10:34:27", "37.59.55.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("53265", "15", "2017-04-08 11:13:39", "202.46.53.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("53266", "10", "2017-04-08 11:13:39", "202.46.53.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("53267", "3", "2017-04-08 11:13:39", "202.46.53.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("53268", "9", "2017-04-08 12:20:22", "202.46.54.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("53269", "15", "2017-04-08 12:20:24", "202.46.54.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("53270", "10", "2017-04-08 12:20:24", "202.46.54.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("53271", "3", "2017-04-08 12:20:25", "202.46.54.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("53272", "15", "2017-04-08 13:57:28", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53273", "10", "2017-04-08 13:57:32", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53274", "3", "2017-04-08 13:57:33", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53275", "3", "2017-04-08 14:25:34", "157.55.39.215", "3");
INSERT INTO `wp_gf_form_view` VALUES("53276", "15", "2017-04-08 14:25:34", "157.55.39.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("53277", "10", "2017-04-08 14:25:35", "157.55.39.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("53278", "14", "2017-04-08 14:33:30", "37.153.169.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("53279", "15", "2017-04-08 15:05:38", "207.46.13.80", "66");
INSERT INTO `wp_gf_form_view` VALUES("53280", "10", "2017-04-08 15:05:38", "207.46.13.80", "78");
INSERT INTO `wp_gf_form_view` VALUES("53281", "3", "2017-04-08 15:05:39", "207.46.13.80", "79");
INSERT INTO `wp_gf_form_view` VALUES("53282", "13", "2017-04-08 15:05:56", "207.46.13.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("53283", "8", "2017-04-08 15:06:24", "207.46.13.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("53284", "7", "2017-04-08 15:13:58", "157.55.39.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("53285", "15", "2017-04-08 16:08:28", "154.5.13.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("53286", "10", "2017-04-08 16:08:28", "154.5.13.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("53287", "3", "2017-04-08 16:08:28", "154.5.13.50", "4");
INSERT INTO `wp_gf_form_view` VALUES("53288", "10", "2017-04-08 17:04:24", "51.255.65.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("53289", "15", "2017-04-08 17:04:24", "51.255.65.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("53290", "3", "2017-04-08 17:04:24", "51.255.65.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("53291", "3", "2017-04-08 18:11:49", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("53292", "6", "2017-04-08 18:11:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53293", "9", "2017-04-08 18:11:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53294", "8", "2017-04-08 18:11:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53295", "10", "2017-04-08 18:11:52", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("53296", "13", "2017-04-08 18:11:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53297", "15", "2017-04-08 18:11:52", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("53298", "15", "2017-04-08 19:30:20", "142.134.73.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("53299", "10", "2017-04-08 19:30:24", "142.134.73.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("53300", "3", "2017-04-08 19:30:24", "142.134.73.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("53301", "3", "2017-04-08 19:30:24", "142.134.73.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("53302", "15", "2017-04-08 20:00:54", "207.46.13.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("53303", "10", "2017-04-08 20:00:54", "207.46.13.170", "4");
INSERT INTO `wp_gf_form_view` VALUES("53304", "3", "2017-04-08 20:00:54", "207.46.13.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("53305", "15", "2017-04-08 21:23:13", "24.68.130.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("53306", "10", "2017-04-08 21:23:13", "24.68.130.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("53307", "3", "2017-04-08 21:23:14", "24.68.130.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("53308", "3", "2017-04-08 22:44:28", "163.172.66.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("53309", "15", "2017-04-08 22:44:29", "163.172.66.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("53310", "10", "2017-04-08 22:44:29", "163.172.66.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("53311", "3", "2017-04-08 23:15:18", "163.172.66.118", "5");
INSERT INTO `wp_gf_form_view` VALUES("53312", "15", "2017-04-08 23:15:19", "163.172.66.118", "4");
INSERT INTO `wp_gf_form_view` VALUES("53313", "10", "2017-04-08 23:15:19", "163.172.66.118", "5");
INSERT INTO `wp_gf_form_view` VALUES("53314", "14", "2017-04-08 23:44:28", "184.66.47.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("53315", "15", "2017-04-09 01:10:45", "202.46.48.197", "4");
INSERT INTO `wp_gf_form_view` VALUES("53316", "10", "2017-04-09 01:10:47", "202.46.48.197", "6");
INSERT INTO `wp_gf_form_view` VALUES("53317", "3", "2017-04-09 01:10:48", "202.46.48.197", "30");
INSERT INTO `wp_gf_form_view` VALUES("53318", "6", "2017-04-09 01:29:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53319", "9", "2017-04-09 01:29:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53320", "8", "2017-04-09 01:29:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53321", "13", "2017-04-09 01:29:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53322", "15", "2017-04-09 02:42:30", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("53323", "10", "2017-04-09 02:42:31", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("53324", "3", "2017-04-09 02:42:31", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("53325", "15", "2017-04-09 03:11:35", "24.70.196.199", "5");
INSERT INTO `wp_gf_form_view` VALUES("53326", "10", "2017-04-09 03:11:35", "24.70.196.199", "5");
INSERT INTO `wp_gf_form_view` VALUES("53327", "3", "2017-04-09 03:11:35", "24.70.196.199", "29");
INSERT INTO `wp_gf_form_view` VALUES("53328", "6", "2017-04-09 03:31:33", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53329", "9", "2017-04-09 03:31:33", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53330", "8", "2017-04-09 03:31:33", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53331", "13", "2017-04-09 03:31:34", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53332", "15", "2017-04-09 04:41:24", "157.55.39.21", "4");
INSERT INTO `wp_gf_form_view` VALUES("53333", "10", "2017-04-09 04:41:25", "157.55.39.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("53334", "3", "2017-04-09 04:41:25", "157.55.39.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("53335", "3", "2017-04-09 05:51:38", "157.55.39.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("53336", "3", "2017-04-09 06:35:09", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53337", "15", "2017-04-09 06:40:35", "202.46.48.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("53338", "10", "2017-04-09 06:40:36", "202.46.48.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("53339", "15", "2017-04-09 07:13:55", "202.46.51.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("53340", "10", "2017-04-09 07:13:55", "202.46.51.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("53341", "3", "2017-04-09 07:13:55", "202.46.51.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("53342", "3", "2017-04-09 08:04:48", "164.132.161.92", "5");
INSERT INTO `wp_gf_form_view` VALUES("53343", "15", "2017-04-09 08:04:49", "164.132.161.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("53344", "10", "2017-04-09 08:04:49", "164.132.161.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("53345", "15", "2017-04-09 09:15:47", "163.172.66.5", "6");
INSERT INTO `wp_gf_form_view` VALUES("53346", "10", "2017-04-09 09:15:52", "163.172.66.5", "8");
INSERT INTO `wp_gf_form_view` VALUES("53347", "3", "2017-04-09 09:15:53", "163.172.66.5", "7");
INSERT INTO `wp_gf_form_view` VALUES("53348", "6", "2017-04-09 09:41:00", "202.46.50.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("53349", "14", "2017-04-09 10:12:07", "210.61.209.197", "3");
INSERT INTO `wp_gf_form_view` VALUES("53350", "15", "2017-04-09 10:26:38", "207.46.13.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("53351", "10", "2017-04-09 10:26:38", "207.46.13.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("53352", "3", "2017-04-09 10:26:38", "207.46.13.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("53353", "15", "2017-04-09 11:08:24", "77.75.79.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("53354", "10", "2017-04-09 11:08:28", "77.75.79.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("53355", "3", "2017-04-09 11:08:28", "77.75.79.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("53356", "10", "2017-04-09 12:51:17", "207.46.13.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("53357", "15", "2017-04-09 12:51:19", "207.46.13.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("53358", "3", "2017-04-09 12:51:19", "207.46.13.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("53359", "15", "2017-04-09 13:01:00", "202.46.55.141", "3");
INSERT INTO `wp_gf_form_view` VALUES("53360", "10", "2017-04-09 13:01:00", "202.46.55.141", "5");
INSERT INTO `wp_gf_form_view` VALUES("53361", "3", "2017-04-09 13:01:00", "202.46.55.141", "29");
INSERT INTO `wp_gf_form_view` VALUES("53362", "6", "2017-04-09 13:13:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53363", "9", "2017-04-09 13:13:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53364", "8", "2017-04-09 13:13:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53365", "13", "2017-04-09 13:13:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53366", "15", "2017-04-09 14:07:41", "202.46.50.181", "9");
INSERT INTO `wp_gf_form_view` VALUES("53367", "10", "2017-04-09 14:07:41", "202.46.50.181", "8");
INSERT INTO `wp_gf_form_view` VALUES("53368", "3", "2017-04-09 14:07:42", "202.46.50.181", "10");
INSERT INTO `wp_gf_form_view` VALUES("53369", "8", "2017-04-09 14:14:57", "163.172.65.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("53370", "11", "2017-04-09 14:30:39", "142.0.35.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("53371", "2", "2017-04-09 14:31:21", "142.0.35.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("53372", "15", "2017-04-09 15:14:20", "202.46.51.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("53373", "10", "2017-04-09 15:14:21", "202.46.51.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("53374", "3", "2017-04-09 15:14:21", "202.46.51.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("53375", "13", "2017-04-09 16:06:22", "164.132.161.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("53376", "15", "2017-04-09 16:08:59", "77.75.77.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("53377", "10", "2017-04-09 16:08:59", "77.75.77.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("53378", "3", "2017-04-09 16:08:59", "77.75.77.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("53379", "10", "2017-04-09 17:21:21", "40.77.179.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("53380", "15", "2017-04-09 17:21:22", "40.77.179.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("53381", "3", "2017-04-09 17:21:22", "40.77.179.32", "3");
INSERT INTO `wp_gf_form_view` VALUES("53382", "14", "2017-04-09 18:11:09", "184.66.224.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("53383", "15", "2017-04-09 18:25:52", "202.46.49.93", "4");
INSERT INTO `wp_gf_form_view` VALUES("53384", "10", "2017-04-09 18:25:52", "202.46.49.93", "6");
INSERT INTO `wp_gf_form_view` VALUES("53385", "3", "2017-04-09 18:25:52", "202.46.49.93", "30");
INSERT INTO `wp_gf_form_view` VALUES("53386", "6", "2017-04-09 18:31:06", "157.55.39.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("53387", "9", "2017-04-09 18:31:06", "157.55.39.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("53388", "8", "2017-04-09 18:31:07", "157.55.39.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("53389", "13", "2017-04-09 18:31:07", "157.55.39.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("53390", "15", "2017-04-09 19:43:17", "163.172.65.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("53391", "10", "2017-04-09 19:43:17", "163.172.65.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("53392", "3", "2017-04-09 19:43:18", "163.172.65.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("53393", "3", "2017-04-09 20:12:54", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("53394", "6", "2017-04-09 20:12:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("53395", "9", "2017-04-09 20:12:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53396", "8", "2017-04-09 20:12:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53397", "10", "2017-04-09 20:12:55", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("53398", "13", "2017-04-09 20:12:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53399", "15", "2017-04-09 20:12:56", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53400", "14", "2017-04-09 20:46:05", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53401", "10", "2017-04-09 21:22:46", "24.108.12.82", "16");
INSERT INTO `wp_gf_form_view` VALUES("53402", "15", "2017-04-09 21:22:46", "24.108.12.82", "10");
INSERT INTO `wp_gf_form_view` VALUES("53403", "3", "2017-04-09 21:22:46", "24.108.12.82", "38");
INSERT INTO `wp_gf_form_view` VALUES("53404", "6", "2017-04-09 21:24:01", "24.108.12.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("53405", "9", "2017-04-09 21:24:02", "24.108.12.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("53406", "8", "2017-04-09 21:24:02", "24.108.12.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("53407", "13", "2017-04-09 21:24:03", "24.108.12.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("53408", "15", "2017-04-09 22:00:34", "202.46.51.166", "3");
INSERT INTO `wp_gf_form_view` VALUES("53409", "10", "2017-04-09 22:00:34", "202.46.51.166", "3");
INSERT INTO `wp_gf_form_view` VALUES("53410", "3", "2017-04-09 22:00:34", "202.46.51.166", "4");
INSERT INTO `wp_gf_form_view` VALUES("53411", "14", "2017-04-09 22:49:45", "142.4.194.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("53412", "11", "2017-04-09 23:04:42", "108.175.3.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("53413", "15", "2017-04-09 23:04:45", "108.175.3.139", "8");
INSERT INTO `wp_gf_form_view` VALUES("53414", "10", "2017-04-09 23:04:45", "108.175.3.139", "7");
INSERT INTO `wp_gf_form_view` VALUES("53415", "3", "2017-04-09 23:04:46", "108.175.3.139", "8");
INSERT INTO `wp_gf_form_view` VALUES("53416", "2", "2017-04-09 23:07:25", "108.175.3.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("53417", "12", "2017-04-10 00:13:54", "202.46.53.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("53418", "15", "2017-04-10 00:13:54", "202.46.53.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("53419", "10", "2017-04-10 00:13:54", "202.46.53.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("53420", "3", "2017-04-10 00:13:54", "202.46.53.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("53421", "15", "2017-04-10 01:10:24", "77.75.76.171", "3");
INSERT INTO `wp_gf_form_view` VALUES("53422", "10", "2017-04-10 01:10:24", "77.75.76.171", "4");
INSERT INTO `wp_gf_form_view` VALUES("53423", "3", "2017-04-10 01:10:25", "77.75.76.171", "3");
INSERT INTO `wp_gf_form_view` VALUES("53424", "15", "2017-04-10 02:21:14", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("53425", "15", "2017-04-10 02:21:14", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53426", "10", "2017-04-10 02:21:17", "216.244.66.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("53427", "10", "2017-04-10 02:21:17", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53428", "3", "2017-04-10 02:21:19", "216.244.66.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("53429", "3", "2017-04-10 02:21:19", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53430", "15", "2017-04-10 03:00:34", "202.46.54.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("53431", "10", "2017-04-10 03:00:34", "202.46.54.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("53432", "3", "2017-04-10 03:00:34", "202.46.54.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("53433", "15", "2017-04-10 04:01:57", "97.115.198.180", "5");
INSERT INTO `wp_gf_form_view` VALUES("53434", "10", "2017-04-10 04:01:58", "97.115.198.180", "7");
INSERT INTO `wp_gf_form_view` VALUES("53435", "3", "2017-04-10 04:01:58", "97.115.198.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("53436", "14", "2017-04-10 04:07:55", "96.54.234.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("53437", "9", "2017-04-10 05:21:25", "163.172.64.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("53438", "15", "2017-04-10 05:21:25", "163.172.64.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("53439", "10", "2017-04-10 05:21:25", "163.172.64.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("53440", "3", "2017-04-10 05:21:25", "163.172.64.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("53441", "15", "2017-04-10 06:16:30", "207.46.13.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("53442", "10", "2017-04-10 06:16:32", "207.46.13.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("53443", "3", "2017-04-10 06:16:33", "207.46.13.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("53444", "15", "2017-04-10 07:01:51", "157.55.39.79", "5");
INSERT INTO `wp_gf_form_view` VALUES("53445", "10", "2017-04-10 07:01:52", "157.55.39.79", "7");
INSERT INTO `wp_gf_form_view` VALUES("53446", "3", "2017-04-10 07:01:52", "157.55.39.79", "31");
INSERT INTO `wp_gf_form_view` VALUES("53447", "6", "2017-04-10 07:40:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53448", "9", "2017-04-10 07:40:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53449", "8", "2017-04-10 07:40:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53450", "13", "2017-04-10 07:40:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53451", "15", "2017-04-10 08:20:35", "163.172.66.146", "3");
INSERT INTO `wp_gf_form_view` VALUES("53452", "10", "2017-04-10 08:20:35", "163.172.66.146", "3");
INSERT INTO `wp_gf_form_view` VALUES("53453", "3", "2017-04-10 08:20:35", "163.172.66.146", "4");
INSERT INTO `wp_gf_form_view` VALUES("53454", "5", "2017-04-10 08:59:30", "207.46.13.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("53455", "14", "2017-04-10 09:11:45", "146.0.74.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("53456", "15", "2017-04-10 09:28:30", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("53457", "10", "2017-04-10 09:28:30", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("53458", "3", "2017-04-10 09:28:30", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("53459", "10", "2017-04-10 10:18:40", "207.46.13.212", "10");
INSERT INTO `wp_gf_form_view` VALUES("53460", "15", "2017-04-10 10:18:41", "207.46.13.212", "10");
INSERT INTO `wp_gf_form_view` VALUES("53461", "3", "2017-04-10 10:18:42", "207.46.13.212", "12");
INSERT INTO `wp_gf_form_view` VALUES("53462", "11", "2017-04-10 10:29:29", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("53463", "2", "2017-04-10 10:31:37", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("53464", "3", "2017-04-10 11:02:07", "157.55.39.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("53465", "15", "2017-04-10 11:02:07", "157.55.39.38", "3");
INSERT INTO `wp_gf_form_view` VALUES("53466", "10", "2017-04-10 11:02:08", "157.55.39.38", "3");
INSERT INTO `wp_gf_form_view` VALUES("53467", "3", "2017-04-10 12:09:32", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("53468", "15", "2017-04-10 12:09:42", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("53469", "10", "2017-04-10 12:09:42", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("53470", "3", "2017-04-10 13:15:34", "202.46.51.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("53471", "15", "2017-04-10 13:15:39", "202.46.51.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("53472", "10", "2017-04-10 13:15:39", "202.46.51.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("53473", "15", "2017-04-10 14:15:41", "96.54.234.180", "8");
INSERT INTO `wp_gf_form_view` VALUES("53474", "10", "2017-04-10 14:15:43", "96.54.234.180", "9");
INSERT INTO `wp_gf_form_view` VALUES("53475", "3", "2017-04-10 14:15:43", "96.54.234.180", "9");
INSERT INTO `wp_gf_form_view` VALUES("53476", "9", "2017-04-10 15:00:37", "188.162.40.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("53477", "3", "2017-04-10 15:21:55", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("53478", "6", "2017-04-10 15:21:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53479", "8", "2017-04-10 15:21:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53480", "10", "2017-04-10 15:21:57", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53481", "13", "2017-04-10 15:21:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53482", "15", "2017-04-10 15:21:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53483", "15", "2017-04-10 16:45:02", "142.31.189.216", "4");
INSERT INTO `wp_gf_form_view` VALUES("53484", "10", "2017-04-10 16:45:03", "142.31.189.216", "2");
INSERT INTO `wp_gf_form_view` VALUES("53485", "3", "2017-04-10 16:45:03", "142.31.189.216", "2");
INSERT INTO `wp_gf_form_view` VALUES("53486", "3", "2017-04-10 17:16:10", "51.255.65.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("53487", "15", "2017-04-10 17:16:11", "51.255.65.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("53488", "10", "2017-04-10 17:16:11", "51.255.65.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("53489", "15", "2017-04-10 18:06:08", "207.194.133.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("53490", "10", "2017-04-10 18:06:09", "207.194.133.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("53491", "3", "2017-04-10 18:06:09", "207.194.133.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("53492", "15", "2017-04-10 19:04:47", "184.66.49.231", "8");
INSERT INTO `wp_gf_form_view` VALUES("53493", "10", "2017-04-10 19:04:50", "184.66.49.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("53494", "3", "2017-04-10 19:04:51", "184.66.49.231", "12");
INSERT INTO `wp_gf_form_view` VALUES("53495", "15", "2017-04-10 20:03:06", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("53496", "10", "2017-04-10 20:03:06", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("53497", "3", "2017-04-10 20:03:07", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("53498", "10", "2017-04-10 21:08:48", "142.36.207.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("53499", "15", "2017-04-10 21:08:48", "142.36.207.136", "4");
INSERT INTO `wp_gf_form_view` VALUES("53500", "3", "2017-04-10 21:08:49", "142.36.207.136", "4");
INSERT INTO `wp_gf_form_view` VALUES("53501", "15", "2017-04-10 22:09:14", "142.36.180.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("53502", "10", "2017-04-10 22:09:15", "142.36.180.184", "8");
INSERT INTO `wp_gf_form_view` VALUES("53503", "3", "2017-04-10 22:09:15", "142.36.180.184", "7");
INSERT INTO `wp_gf_form_view` VALUES("53504", "11", "2017-04-10 22:43:08", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("53505", "15", "2017-04-10 23:15:31", "77.75.78.163", "5");
INSERT INTO `wp_gf_form_view` VALUES("53506", "10", "2017-04-10 23:15:37", "77.75.78.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("53507", "3", "2017-04-10 23:15:38", "77.75.78.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("53508", "15", "2017-04-11 00:14:16", "51.255.65.53", "5");
INSERT INTO `wp_gf_form_view` VALUES("53509", "10", "2017-04-11 00:14:30", "51.255.65.53", "4");
INSERT INTO `wp_gf_form_view` VALUES("53510", "3", "2017-04-11 00:14:31", "51.255.65.53", "5");
INSERT INTO `wp_gf_form_view` VALUES("53511", "14", "2017-04-11 00:25:52", "108.180.145.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("53512", "15", "2017-04-11 01:03:01", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("53513", "10", "2017-04-11 01:03:02", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("53514", "3", "2017-04-11 01:03:03", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("53515", "2", "2017-04-11 01:21:24", "54.183.100.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("53516", "14", "2017-04-11 01:21:25", "54.183.100.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("53517", "15", "2017-04-11 02:55:10", "40.77.167.90", "15");
INSERT INTO `wp_gf_form_view` VALUES("53518", "10", "2017-04-11 02:55:13", "40.77.167.90", "16");
INSERT INTO `wp_gf_form_view` VALUES("53519", "3", "2017-04-11 02:55:14", "40.77.167.90", "17");
INSERT INTO `wp_gf_form_view` VALUES("53520", "9", "2017-04-11 02:55:17", "40.77.167.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("53521", "15", "2017-04-11 03:01:36", "40.77.167.1", "17");
INSERT INTO `wp_gf_form_view` VALUES("53522", "10", "2017-04-11 03:01:36", "40.77.167.1", "20");
INSERT INTO `wp_gf_form_view` VALUES("53523", "3", "2017-04-11 03:01:36", "40.77.167.1", "44");
INSERT INTO `wp_gf_form_view` VALUES("53524", "9", "2017-04-11 03:16:11", "207.46.13.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("53525", "6", "2017-04-11 03:39:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53526", "8", "2017-04-11 03:39:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53527", "13", "2017-04-11 03:39:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53528", "10", "2017-04-11 04:00:50", "217.182.132.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("53529", "15", "2017-04-11 04:00:50", "217.182.132.184", "3");
INSERT INTO `wp_gf_form_view` VALUES("53530", "3", "2017-04-11 04:00:51", "217.182.132.184", "4");
INSERT INTO `wp_gf_form_view` VALUES("53531", "2", "2017-04-11 04:54:23", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53532", "15", "2017-04-11 05:11:01", "202.46.55.39", "4");
INSERT INTO `wp_gf_form_view` VALUES("53533", "10", "2017-04-11 05:11:02", "202.46.55.39", "6");
INSERT INTO `wp_gf_form_view` VALUES("53534", "3", "2017-04-11 05:11:02", "202.46.55.39", "4");
INSERT INTO `wp_gf_form_view` VALUES("53535", "14", "2017-04-11 06:04:15", "195.22.127.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("53536", "3", "2017-04-11 06:51:09", "202.46.53.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("53537", "15", "2017-04-11 06:51:13", "202.46.53.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("53538", "10", "2017-04-11 06:51:14", "202.46.53.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("53539", "15", "2017-04-11 07:24:23", "202.46.55.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("53540", "10", "2017-04-11 07:24:23", "202.46.55.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("53541", "3", "2017-04-11 07:24:24", "202.46.55.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("53542", "14", "2017-04-11 08:31:03", "202.46.56.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("53543", "15", "2017-04-11 09:39:09", "31.210.45.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("53544", "10", "2017-04-11 09:39:11", "31.210.45.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("53545", "3", "2017-04-11 09:39:12", "31.210.45.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("53546", "15", "2017-04-11 10:06:04", "157.55.39.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("53547", "10", "2017-04-11 10:06:04", "157.55.39.8", "4");
INSERT INTO `wp_gf_form_view` VALUES("53548", "3", "2017-04-11 10:06:04", "157.55.39.8", "5");
INSERT INTO `wp_gf_form_view` VALUES("53549", "15", "2017-04-11 11:25:47", "202.46.56.91", "4");
INSERT INTO `wp_gf_form_view` VALUES("53550", "10", "2017-04-11 11:25:50", "202.46.56.91", "7");
INSERT INTO `wp_gf_form_view` VALUES("53551", "3", "2017-04-11 11:25:51", "202.46.56.91", "29");
INSERT INTO `wp_gf_form_view` VALUES("53552", "2", "2017-04-11 11:31:37", "194.187.170.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("53553", "6", "2017-04-11 11:42:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53554", "9", "2017-04-11 11:42:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53555", "8", "2017-04-11 11:42:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53556", "13", "2017-04-11 11:42:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53557", "3", "2017-04-11 12:41:40", "51.255.65.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("53558", "15", "2017-04-11 12:41:41", "51.255.65.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("53559", "10", "2017-04-11 12:41:41", "51.255.65.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("53560", "15", "2017-04-11 13:05:42", "202.46.56.182", "3");
INSERT INTO `wp_gf_form_view` VALUES("53561", "10", "2017-04-11 13:05:42", "202.46.56.182", "3");
INSERT INTO `wp_gf_form_view` VALUES("53562", "3", "2017-04-11 13:05:42", "202.46.56.182", "5");
INSERT INTO `wp_gf_form_view` VALUES("53563", "3", "2017-04-11 14:12:28", "202.46.53.193", "33");
INSERT INTO `wp_gf_form_view` VALUES("53564", "15", "2017-04-11 14:12:43", "202.46.53.193", "5");
INSERT INTO `wp_gf_form_view` VALUES("53565", "10", "2017-04-11 14:12:43", "202.46.53.193", "7");
INSERT INTO `wp_gf_form_view` VALUES("53566", "6", "2017-04-11 14:14:23", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53567", "9", "2017-04-11 14:14:24", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53568", "8", "2017-04-11 14:14:24", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53569", "13", "2017-04-11 14:14:25", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53570", "2", "2017-04-11 16:31:28", "217.182.132.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("53571", "15", "2017-04-11 17:04:57", "72.143.226.228", "5");
INSERT INTO `wp_gf_form_view` VALUES("53572", "10", "2017-04-11 17:04:59", "72.143.226.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("53573", "3", "2017-04-11 17:05:00", "72.143.226.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("53574", "15", "2017-04-11 18:04:43", "142.36.207.136", "12");
INSERT INTO `wp_gf_form_view` VALUES("53575", "3", "2017-04-11 18:04:43", "142.36.207.136", "11");
INSERT INTO `wp_gf_form_view` VALUES("53576", "10", "2017-04-11 18:09:34", "142.36.207.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("53577", "3", "2017-04-11 19:06:13", "202.46.57.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("53578", "15", "2017-04-11 19:06:14", "202.46.57.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("53579", "10", "2017-04-11 19:06:14", "202.46.57.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("53580", "10", "2017-04-11 20:51:06", "40.77.167.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("53581", "15", "2017-04-11 20:51:07", "40.77.167.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("53582", "3", "2017-04-11 20:51:08", "40.77.167.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("53583", "2", "2017-04-11 21:20:51", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("53584", "10", "2017-04-11 21:29:56", "24.108.217.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("53585", "14", "2017-04-11 21:32:51", "154.20.32.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("53586", "15", "2017-04-11 22:00:00", "66.249.79.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("53587", "10", "2017-04-11 22:00:01", "66.249.79.148", "9");
INSERT INTO `wp_gf_form_view` VALUES("53588", "3", "2017-04-11 22:00:02", "66.249.79.148", "7");
INSERT INTO `wp_gf_form_view` VALUES("53589", "14", "2017-04-11 22:29:39", "96.50.29.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("53590", "14", "2017-04-11 23:56:15", "104.227.124.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("53591", "3", "2017-04-12 00:12:39", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("53592", "6", "2017-04-12 00:12:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53593", "9", "2017-04-12 00:12:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53594", "8", "2017-04-12 00:12:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53595", "10", "2017-04-12 00:12:40", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("53596", "13", "2017-04-12 00:12:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53597", "15", "2017-04-12 00:12:40", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53598", "15", "2017-04-12 01:20:21", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53599", "10", "2017-04-12 01:20:24", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53600", "3", "2017-04-12 01:20:24", "68.180.229.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("53601", "15", "2017-04-12 02:31:12", "202.46.58.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("53602", "10", "2017-04-12 02:31:13", "202.46.58.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("53603", "3", "2017-04-12 02:31:13", "202.46.58.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("53604", "3", "2017-04-12 03:04:33", "202.46.53.120", "8");
INSERT INTO `wp_gf_form_view` VALUES("53605", "15", "2017-04-12 03:04:33", "202.46.53.120", "7");
INSERT INTO `wp_gf_form_view` VALUES("53606", "10", "2017-04-12 03:04:33", "202.46.53.120", "7");
INSERT INTO `wp_gf_form_view` VALUES("53607", "3", "2017-04-12 04:12:01", "194.187.170.143", "11");
INSERT INTO `wp_gf_form_view` VALUES("53608", "15", "2017-04-12 04:12:02", "194.187.170.143", "13");
INSERT INTO `wp_gf_form_view` VALUES("53609", "10", "2017-04-12 04:12:02", "194.187.170.143", "11");
INSERT INTO `wp_gf_form_view` VALUES("53610", "3", "2017-04-12 05:45:41", "216.244.66.231", "13");
INSERT INTO `wp_gf_form_view` VALUES("53611", "15", "2017-04-12 05:45:41", "216.244.66.231", "9");
INSERT INTO `wp_gf_form_view` VALUES("53612", "10", "2017-04-12 05:45:41", "216.244.66.231", "9");
INSERT INTO `wp_gf_form_view` VALUES("53613", "8", "2017-04-12 05:56:26", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("53614", "15", "2017-04-12 06:24:44", "202.46.50.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("53615", "10", "2017-04-12 06:24:47", "202.46.50.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("53616", "3", "2017-04-12 06:24:48", "202.46.50.139", "4");
INSERT INTO `wp_gf_form_view` VALUES("53617", "3", "2017-04-12 07:42:24", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("53618", "6", "2017-04-12 07:42:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53619", "9", "2017-04-12 07:42:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53620", "8", "2017-04-12 07:42:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53621", "10", "2017-04-12 07:42:26", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53622", "13", "2017-04-12 07:42:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53623", "15", "2017-04-12 07:42:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53624", "10", "2017-04-12 08:03:39", "51.255.65.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("53625", "15", "2017-04-12 08:03:39", "51.255.65.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("53626", "3", "2017-04-12 08:03:40", "51.255.65.28", "6");
INSERT INTO `wp_gf_form_view` VALUES("53627", "11", "2017-04-12 08:54:01", "207.46.13.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("53628", "2", "2017-04-12 08:56:01", "167.114.174.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("53629", "15", "2017-04-12 09:08:16", "69.58.178.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("53630", "10", "2017-04-12 09:08:16", "69.58.178.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("53631", "3", "2017-04-12 09:08:16", "69.58.178.59", "5");
INSERT INTO `wp_gf_form_view` VALUES("53632", "11", "2017-04-12 09:08:37", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("53633", "2", "2017-04-12 09:08:39", "69.58.178.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("53634", "15", "2017-04-12 10:26:37", "77.75.76.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("53635", "10", "2017-04-12 10:26:37", "77.75.76.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("53636", "3", "2017-04-12 10:26:38", "77.75.76.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("53637", "3", "2017-04-12 11:12:41", "77.75.78.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("53638", "15", "2017-04-12 11:18:10", "164.132.161.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("53639", "10", "2017-04-12 11:18:10", "164.132.161.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("53640", "15", "2017-04-12 12:26:32", "202.46.56.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("53641", "10", "2017-04-12 12:26:38", "202.46.56.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("53642", "3", "2017-04-12 12:26:38", "202.46.56.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("53643", "14", "2017-04-12 12:51:28", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53644", "10", "2017-04-12 13:14:33", "77.75.76.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("53645", "15", "2017-04-12 13:14:34", "77.75.76.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("53646", "3", "2017-04-12 13:14:34", "77.75.76.169", "4");
INSERT INTO `wp_gf_form_view` VALUES("53647", "8", "2017-04-12 13:41:55", "164.132.161.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("53648", "10", "2017-04-12 14:24:59", "83.24.80.64", "5");
INSERT INTO `wp_gf_form_view` VALUES("53649", "15", "2017-04-12 14:25:00", "83.24.80.64", "3");
INSERT INTO `wp_gf_form_view` VALUES("53650", "3", "2017-04-12 14:25:00", "83.24.80.64", "3");
INSERT INTO `wp_gf_form_view` VALUES("53651", "2", "2017-04-12 14:52:32", "52.74.22.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("53652", "14", "2017-04-12 15:00:39", "176.103.56.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("53653", "15", "2017-04-12 15:03:45", "52.5.220.220", "7");
INSERT INTO `wp_gf_form_view` VALUES("53654", "15", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("53655", "15", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("53656", "10", "2017-04-12 15:03:45", "52.5.220.220", "7");
INSERT INTO `wp_gf_form_view` VALUES("53657", "10", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("53658", "10", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("53659", "3", "2017-04-12 15:03:45", "52.5.220.220", "9");
INSERT INTO `wp_gf_form_view` VALUES("53660", "3", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("53661", "3", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("53662", "13", "2017-04-12 15:15:30", "40.77.167.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("53663", "14", "2017-04-12 16:14:48", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53664", "3", "2017-04-12 16:19:35", "217.182.132.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("53665", "15", "2017-04-12 16:19:36", "217.182.132.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("53666", "10", "2017-04-12 16:19:36", "217.182.132.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("53667", "15", "2017-04-12 17:02:40", "202.46.54.207", "5");
INSERT INTO `wp_gf_form_view` VALUES("53668", "10", "2017-04-12 17:02:42", "202.46.54.207", "4");
INSERT INTO `wp_gf_form_view` VALUES("53669", "3", "2017-04-12 17:02:43", "202.46.54.207", "6");
INSERT INTO `wp_gf_form_view` VALUES("53670", "3", "2017-04-12 18:04:41", "66.249.79.144", "9");
INSERT INTO `wp_gf_form_view` VALUES("53671", "15", "2017-04-12 18:24:38", "217.182.132.241", "8");
INSERT INTO `wp_gf_form_view` VALUES("53672", "10", "2017-04-12 18:24:38", "217.182.132.241", "8");
INSERT INTO `wp_gf_form_view` VALUES("53673", "13", "2017-04-12 18:59:11", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("53674", "3", "2017-04-12 19:01:33", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("53675", "15", "2017-04-12 19:15:10", "194.187.170.124", "6");
INSERT INTO `wp_gf_form_view` VALUES("53676", "10", "2017-04-12 19:15:11", "194.187.170.124", "3");
INSERT INTO `wp_gf_form_view` VALUES("53677", "8", "2017-04-12 19:18:51", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("53678", "3", "2017-04-12 20:01:10", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("53679", "6", "2017-04-12 20:01:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53680", "9", "2017-04-12 20:01:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53681", "8", "2017-04-12 20:01:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53682", "10", "2017-04-12 20:01:12", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("53683", "13", "2017-04-12 20:01:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53684", "15", "2017-04-12 20:01:13", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("53685", "3", "2017-04-12 21:10:28", "202.46.54.205", "7");
INSERT INTO `wp_gf_form_view` VALUES("53686", "15", "2017-04-12 21:10:30", "202.46.54.205", "4");
INSERT INTO `wp_gf_form_view` VALUES("53687", "10", "2017-04-12 21:10:30", "202.46.54.205", "4");
INSERT INTO `wp_gf_form_view` VALUES("53688", "13", "2017-04-12 21:25:35", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("53689", "14", "2017-04-12 21:36:28", "192.241.119.237", "3");
INSERT INTO `wp_gf_form_view` VALUES("53690", "8", "2017-04-12 22:01:14", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("53691", "15", "2017-04-12 22:14:46", "157.55.39.111", "12");
INSERT INTO `wp_gf_form_view` VALUES("53692", "10", "2017-04-12 22:14:47", "157.55.39.111", "12");
INSERT INTO `wp_gf_form_view` VALUES("53693", "3", "2017-04-12 22:14:47", "157.55.39.111", "11");
INSERT INTO `wp_gf_form_view` VALUES("53694", "15", "2017-04-12 23:06:59", "157.55.39.171", "7");
INSERT INTO `wp_gf_form_view` VALUES("53695", "10", "2017-04-12 23:06:59", "157.55.39.171", "6");
INSERT INTO `wp_gf_form_view` VALUES("53696", "3", "2017-04-12 23:06:59", "157.55.39.171", "6");
INSERT INTO `wp_gf_form_view` VALUES("53697", "14", "2017-04-12 23:48:15", "176.103.56.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("53698", "15", "2017-04-13 00:14:17", "104.154.58.95", "9");
INSERT INTO `wp_gf_form_view` VALUES("53699", "10", "2017-04-13 00:14:17", "104.154.58.95", "7");
INSERT INTO `wp_gf_form_view` VALUES("53700", "3", "2017-04-13 00:14:17", "104.154.58.95", "8");
INSERT INTO `wp_gf_form_view` VALUES("53701", "14", "2017-04-13 00:28:15", "40.77.167.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("53702", "15", "2017-04-13 01:19:21", "104.154.58.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("53703", "10", "2017-04-13 01:19:21", "104.154.58.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("53704", "3", "2017-04-13 01:19:22", "104.154.58.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("53705", "15", "2017-04-13 02:15:43", "104.154.58.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("53706", "10", "2017-04-13 02:15:43", "104.154.58.95", "7");
INSERT INTO `wp_gf_form_view` VALUES("53707", "3", "2017-04-13 02:15:44", "104.154.58.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("53708", "14", "2017-04-13 02:24:28", "107.173.241.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("53709", "3", "2017-04-13 03:22:06", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("53710", "6", "2017-04-13 03:22:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53711", "9", "2017-04-13 03:22:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53712", "8", "2017-04-13 03:22:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53713", "10", "2017-04-13 03:22:07", "52.88.109.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("53714", "13", "2017-04-13 03:22:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53715", "15", "2017-04-13 03:22:08", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("53716", "12", "2017-04-13 04:05:31", "202.46.58.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("53717", "15", "2017-04-13 04:05:31", "202.46.58.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("53718", "10", "2017-04-13 04:05:31", "202.46.58.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("53719", "3", "2017-04-13 04:05:32", "202.46.58.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("53720", "3", "2017-04-13 05:11:42", "51.255.65.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("53721", "15", "2017-04-13 05:11:42", "51.255.65.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("53722", "10", "2017-04-13 05:11:42", "51.255.65.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("53723", "15", "2017-04-13 06:18:54", "202.46.51.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("53724", "10", "2017-04-13 06:18:55", "202.46.51.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("53725", "3", "2017-04-13 06:18:56", "202.46.51.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("53726", "15", "2017-04-13 07:25:31", "202.46.54.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("53727", "10", "2017-04-13 07:25:32", "202.46.54.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("53728", "3", "2017-04-13 07:25:32", "202.46.54.182", "3");
INSERT INTO `wp_gf_form_view` VALUES("53729", "14", "2017-04-13 07:27:23", "217.182.132.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("53730", "10", "2017-04-13 08:12:16", "137.74.207.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("53731", "15", "2017-04-13 08:12:17", "137.74.207.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("53732", "3", "2017-04-13 08:12:17", "137.74.207.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("53733", "3", "2017-04-13 09:32:39", "164.132.161.7", "11");
INSERT INTO `wp_gf_form_view` VALUES("53734", "8", "2017-04-13 09:33:40", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53735", "13", "2017-04-13 09:33:40", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53736", "15", "2017-04-13 10:03:34", "164.132.161.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("53737", "10", "2017-04-13 10:03:34", "164.132.161.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("53738", "3", "2017-04-13 10:03:34", "164.132.161.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("53739", "3", "2017-04-13 13:32:05", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("53740", "15", "2017-04-13 14:01:02", "202.46.51.177", "4");
INSERT INTO `wp_gf_form_view` VALUES("53741", "10", "2017-04-13 14:01:03", "202.46.51.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("53742", "3", "2017-04-13 14:01:03", "202.46.51.177", "4");
INSERT INTO `wp_gf_form_view` VALUES("53743", "3", "2017-04-13 15:16:45", "52.88.109.3", "49");
INSERT INTO `wp_gf_form_view` VALUES("53744", "6", "2017-04-13 15:16:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53745", "9", "2017-04-13 15:16:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53746", "8", "2017-04-13 15:16:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53747", "10", "2017-04-13 15:16:46", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("53748", "13", "2017-04-13 15:16:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53749", "15", "2017-04-13 15:16:47", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("53750", "11", "2017-04-13 15:57:08", "213.174.147.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("53751", "2", "2017-04-13 15:57:45", "213.174.147.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("53752", "15", "2017-04-13 16:00:34", "213.174.147.33", "3");
INSERT INTO `wp_gf_form_view` VALUES("53753", "10", "2017-04-13 16:00:34", "213.174.147.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("53754", "3", "2017-04-13 16:00:34", "213.174.147.33", "4");
INSERT INTO `wp_gf_form_view` VALUES("53755", "3", "2017-04-13 17:00:16", "207.46.13.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("53756", "15", "2017-04-13 17:46:00", "75.154.233.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("53757", "10", "2017-04-13 17:46:02", "75.154.233.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("53758", "10", "2017-04-13 18:00:11", "205.201.132.14", "7");
INSERT INTO `wp_gf_form_view` VALUES("53759", "15", "2017-04-13 18:00:11", "205.201.132.14", "5");
INSERT INTO `wp_gf_form_view` VALUES("53760", "3", "2017-04-13 18:00:11", "205.201.132.14", "5");
INSERT INTO `wp_gf_form_view` VALUES("53761", "15", "2017-04-13 19:25:38", "51.255.65.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("53762", "10", "2017-04-13 19:25:39", "51.255.65.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("53763", "3", "2017-04-13 19:25:39", "51.255.65.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("53764", "14", "2017-04-13 21:43:20", "195.22.127.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("53765", "3", "2017-04-13 22:32:23", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("53766", "6", "2017-04-13 22:32:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53767", "9", "2017-04-13 22:32:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53768", "8", "2017-04-13 22:32:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53769", "10", "2017-04-13 22:32:26", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("53770", "13", "2017-04-13 22:32:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53771", "15", "2017-04-13 22:32:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("53772", "14", "2017-04-13 22:52:47", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("53773", "5", "2017-04-13 23:02:05", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("53774", "15", "2017-04-13 23:02:05", "77.75.76.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("53775", "10", "2017-04-13 23:02:05", "77.75.76.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("53776", "3", "2017-04-13 23:02:05", "77.75.76.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("53777", "2", "2017-04-13 23:02:18", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53778", "8", "2017-04-13 23:17:24", "202.46.58.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("53779", "15", "2017-04-14 00:07:19", "70.67.175.5", "5");
INSERT INTO `wp_gf_form_view` VALUES("53780", "10", "2017-04-14 00:07:19", "70.67.175.5", "7");
INSERT INTO `wp_gf_form_view` VALUES("53781", "3", "2017-04-14 00:07:19", "70.67.175.5", "6");
INSERT INTO `wp_gf_form_view` VALUES("53782", "3", "2017-04-14 01:30:41", "202.46.53.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("53783", "15", "2017-04-14 01:30:42", "202.46.53.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("53784", "10", "2017-04-14 01:30:42", "202.46.53.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("53785", "15", "2017-04-14 02:03:08", "77.75.76.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("53786", "10", "2017-04-14 02:03:09", "77.75.76.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("53787", "3", "2017-04-14 02:03:10", "77.75.76.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("53788", "15", "2017-04-14 03:32:44", "164.132.161.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("53789", "10", "2017-04-14 03:32:45", "164.132.161.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("53790", "3", "2017-04-14 03:32:45", "164.132.161.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("53791", "15", "2017-04-14 04:05:38", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("53792", "10", "2017-04-14 04:05:38", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("53793", "3", "2017-04-14 04:05:38", "216.244.66.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("53794", "15", "2017-04-14 05:07:10", "47.29.21.121", "7");
INSERT INTO `wp_gf_form_view` VALUES("53795", "10", "2017-04-14 05:07:10", "47.29.21.121", "5");
INSERT INTO `wp_gf_form_view` VALUES("53796", "3", "2017-04-14 05:07:10", "47.29.21.121", "7");
INSERT INTO `wp_gf_form_view` VALUES("53797", "3", "2017-04-14 06:24:50", "51.255.173.85", "7");
INSERT INTO `wp_gf_form_view` VALUES("53798", "15", "2017-04-14 06:24:52", "51.255.173.85", "5");
INSERT INTO `wp_gf_form_view` VALUES("53799", "10", "2017-04-14 06:24:52", "51.255.173.85", "5");
INSERT INTO `wp_gf_form_view` VALUES("53800", "15", "2017-04-14 07:15:18", "51.255.65.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("53801", "10", "2017-04-14 07:15:20", "51.255.65.54", "4");
INSERT INTO `wp_gf_form_view` VALUES("53802", "3", "2017-04-14 07:15:21", "51.255.65.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("53803", "3", "2017-04-14 08:25:10", "202.46.52.179", "5");
INSERT INTO `wp_gf_form_view` VALUES("53804", "15", "2017-04-14 08:25:12", "202.46.52.179", "3");
INSERT INTO `wp_gf_form_view` VALUES("53805", "10", "2017-04-14 08:25:12", "202.46.52.179", "3");
INSERT INTO `wp_gf_form_view` VALUES("53806", "15", "2017-04-14 09:17:46", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53807", "10", "2017-04-14 09:17:46", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53808", "3", "2017-04-14 09:17:46", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53809", "11", "2017-04-14 09:21:59", "77.75.76.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("53810", "12", "2017-04-14 10:00:35", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53811", "15", "2017-04-14 10:00:37", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("53812", "10", "2017-04-14 10:00:37", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("53813", "3", "2017-04-14 10:00:38", "68.180.229.247", "27");
INSERT INTO `wp_gf_form_view` VALUES("53814", "6", "2017-04-14 10:15:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53815", "9", "2017-04-14 10:15:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53816", "8", "2017-04-14 10:15:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53817", "13", "2017-04-14 10:15:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53818", "3", "2017-04-14 11:06:45", "40.77.167.117", "7");
INSERT INTO `wp_gf_form_view` VALUES("53819", "8", "2017-04-14 11:06:46", "40.77.167.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("53820", "13", "2017-04-14 11:06:46", "40.77.167.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("53821", "15", "2017-04-14 11:07:04", "137.74.207.109", "3");
INSERT INTO `wp_gf_form_view` VALUES("53822", "10", "2017-04-14 11:07:04", "137.74.207.109", "3");
INSERT INTO `wp_gf_form_view` VALUES("53823", "3", "2017-04-14 12:40:15", "51.255.65.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("53824", "15", "2017-04-14 13:44:22", "202.46.58.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("53825", "10", "2017-04-14 13:44:25", "202.46.58.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("53826", "3", "2017-04-14 13:44:25", "202.46.58.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("53827", "8", "2017-04-14 13:58:48", "40.77.167.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("53828", "13", "2017-04-14 13:58:48", "40.77.167.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("53829", "15", "2017-04-14 14:02:34", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53830", "10", "2017-04-14 14:02:34", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53831", "3", "2017-04-14 14:02:34", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("53832", "15", "2017-04-14 15:11:15", "67.207.207.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("53833", "10", "2017-04-14 15:11:16", "67.207.207.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("53834", "3", "2017-04-14 15:11:16", "67.207.207.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("53835", "7", "2017-04-14 16:02:53", "40.77.167.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("53836", "15", "2017-04-14 16:02:53", "40.77.167.117", "382");
INSERT INTO `wp_gf_form_view` VALUES("53837", "10", "2017-04-14 16:02:53", "40.77.167.117", "338");
INSERT INTO `wp_gf_form_view` VALUES("53838", "3", "2017-04-14 16:02:53", "40.77.167.117", "379");
INSERT INTO `wp_gf_form_view` VALUES("53839", "11", "2017-04-14 16:15:55", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("53840", "2", "2017-04-14 16:15:59", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("53841", "14", "2017-04-14 16:17:42", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("53842", "13", "2017-04-14 16:20:45", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("53843", "8", "2017-04-14 16:24:52", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("53844", "9", "2017-04-14 16:25:00", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("53845", "6", "2017-04-14 16:25:54", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("53846", "15", "2017-04-14 17:00:00", "5.9.98.130", "704");
INSERT INTO `wp_gf_form_view` VALUES("53847", "10", "2017-04-14 17:00:00", "5.9.98.130", "530");
INSERT INTO `wp_gf_form_view` VALUES("53848", "3", "2017-04-14 17:00:00", "5.9.98.130", "570");
INSERT INTO `wp_gf_form_view` VALUES("53849", "6", "2017-04-14 17:40:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53850", "9", "2017-04-14 17:40:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53851", "8", "2017-04-14 17:40:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53852", "13", "2017-04-14 17:40:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53853", "3", "2017-04-14 18:02:50", "164.132.161.92", "477");
INSERT INTO `wp_gf_form_view` VALUES("53854", "15", "2017-04-14 18:02:50", "164.132.161.92", "487");
INSERT INTO `wp_gf_form_view` VALUES("53855", "10", "2017-04-14 18:02:50", "164.132.161.92", "444");
INSERT INTO `wp_gf_form_view` VALUES("53856", "15", "2017-04-14 19:00:03", "5.9.98.130", "749");
INSERT INTO `wp_gf_form_view` VALUES("53857", "10", "2017-04-14 19:00:04", "5.9.98.130", "631");
INSERT INTO `wp_gf_form_view` VALUES("53858", "3", "2017-04-14 19:00:04", "5.9.98.130", "696");
INSERT INTO `wp_gf_form_view` VALUES("53859", "15", "2017-04-14 20:01:38", "41.13.154.229", "327");
INSERT INTO `wp_gf_form_view` VALUES("53860", "10", "2017-04-14 20:01:38", "41.13.154.229", "325");
INSERT INTO `wp_gf_form_view` VALUES("53861", "3", "2017-04-14 20:01:38", "41.13.154.229", "325");
INSERT INTO `wp_gf_form_view` VALUES("53862", "15", "2017-04-14 21:00:00", "5.9.98.130", "977");
INSERT INTO `wp_gf_form_view` VALUES("53863", "10", "2017-04-14 21:00:00", "5.9.98.130", "568");
INSERT INTO `wp_gf_form_view` VALUES("53864", "3", "2017-04-14 21:00:00", "5.9.98.130", "568");
INSERT INTO `wp_gf_form_view` VALUES("53865", "13", "2017-04-14 21:35:09", "202.46.50.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("53866", "15", "2017-04-14 22:00:00", "5.9.98.130", "594");
INSERT INTO `wp_gf_form_view` VALUES("53867", "10", "2017-04-14 22:00:01", "5.9.98.130", "491");
INSERT INTO `wp_gf_form_view` VALUES("53868", "3", "2017-04-14 22:00:01", "5.9.98.130", "493");
INSERT INTO `wp_gf_form_view` VALUES("53869", "13", "2017-04-14 22:16:41", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53870", "15", "2017-04-14 23:15:08", "202.46.56.130", "385");
INSERT INTO `wp_gf_form_view` VALUES("53871", "10", "2017-04-14 23:15:09", "202.46.56.130", "513");
INSERT INTO `wp_gf_form_view` VALUES("53872", "3", "2017-04-14 23:15:10", "202.46.56.130", "641");
INSERT INTO `wp_gf_form_view` VALUES("53873", "15", "2017-04-15 01:04:17", "5.9.98.130", "803");
INSERT INTO `wp_gf_form_view` VALUES("53874", "10", "2017-04-15 01:04:19", "5.9.98.130", "801");
INSERT INTO `wp_gf_form_view` VALUES("53875", "3", "2017-04-15 01:04:19", "5.9.98.130", "801");
INSERT INTO `wp_gf_form_view` VALUES("53876", "15", "2017-04-15 02:00:04", "5.9.98.130", "673");
INSERT INTO `wp_gf_form_view` VALUES("53877", "10", "2017-04-15 02:00:04", "5.9.98.130", "419");
INSERT INTO `wp_gf_form_view` VALUES("53878", "3", "2017-04-15 02:00:04", "5.9.98.130", "418");
INSERT INTO `wp_gf_form_view` VALUES("53879", "15", "2017-04-15 03:00:02", "5.9.98.130", "1599");
INSERT INTO `wp_gf_form_view` VALUES("53880", "10", "2017-04-15 03:00:02", "5.9.98.130", "829");
INSERT INTO `wp_gf_form_view` VALUES("53881", "3", "2017-04-15 03:00:02", "5.9.98.130", "829");
INSERT INTO `wp_gf_form_view` VALUES("53882", "15", "2017-04-15 04:00:03", "5.9.98.130", "711");
INSERT INTO `wp_gf_form_view` VALUES("53883", "10", "2017-04-15 04:00:03", "5.9.98.130", "711");
INSERT INTO `wp_gf_form_view` VALUES("53884", "3", "2017-04-15 04:00:03", "5.9.98.130", "712");
INSERT INTO `wp_gf_form_view` VALUES("53885", "3", "2017-04-15 05:33:37", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("53886", "6", "2017-04-15 05:33:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53887", "9", "2017-04-15 05:33:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53888", "8", "2017-04-15 05:33:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53889", "10", "2017-04-15 05:33:39", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53890", "13", "2017-04-15 05:33:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53891", "15", "2017-04-15 05:33:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53892", "10", "2017-04-15 06:10:55", "5.9.98.130", "974");
INSERT INTO `wp_gf_form_view` VALUES("53893", "15", "2017-04-15 06:10:56", "5.9.98.130", "718");
INSERT INTO `wp_gf_form_view` VALUES("53894", "3", "2017-04-15 06:10:56", "5.9.98.130", "1179");
INSERT INTO `wp_gf_form_view` VALUES("53895", "3", "2017-04-15 07:00:01", "5.9.98.130", "105");
INSERT INTO `wp_gf_form_view` VALUES("53896", "15", "2017-04-15 07:00:02", "5.9.98.130", "53");
INSERT INTO `wp_gf_form_view` VALUES("53897", "10", "2017-04-15 07:00:02", "5.9.98.130", "53");
INSERT INTO `wp_gf_form_view` VALUES("53898", "9", "2017-04-15 07:14:34", "217.182.92.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("53899", "12", "2017-04-15 08:16:34", "51.255.65.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("53900", "15", "2017-04-15 08:16:36", "51.255.65.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("53901", "10", "2017-04-15 08:16:36", "51.255.65.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("53902", "3", "2017-04-15 08:16:37", "51.255.65.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("53903", "13", "2017-04-15 08:25:08", "51.255.65.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("53904", "15", "2017-04-15 09:27:37", "5.9.98.130", "488");
INSERT INTO `wp_gf_form_view` VALUES("53905", "10", "2017-04-15 09:27:37", "5.9.98.130", "488");
INSERT INTO `wp_gf_form_view` VALUES("53906", "3", "2017-04-15 09:27:38", "5.9.98.130", "488");
INSERT INTO `wp_gf_form_view` VALUES("53907", "15", "2017-04-15 10:00:00", "5.9.98.130", "860");
INSERT INTO `wp_gf_form_view` VALUES("53908", "10", "2017-04-15 10:00:00", "5.9.98.130", "861");
INSERT INTO `wp_gf_form_view` VALUES("53909", "3", "2017-04-15 10:00:00", "5.9.98.130", "860");
INSERT INTO `wp_gf_form_view` VALUES("53910", "8", "2017-04-15 10:47:42", "202.46.52.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("53911", "15", "2017-04-15 11:00:00", "5.9.98.130", "576");
INSERT INTO `wp_gf_form_view` VALUES("53912", "10", "2017-04-15 11:00:01", "5.9.98.130", "577");
INSERT INTO `wp_gf_form_view` VALUES("53913", "3", "2017-04-15 11:00:01", "5.9.98.130", "577");
INSERT INTO `wp_gf_form_view` VALUES("53914", "3", "2017-04-15 12:00:12", "217.182.132.147", "268");
INSERT INTO `wp_gf_form_view` VALUES("53915", "15", "2017-04-15 12:00:13", "217.182.132.147", "530");
INSERT INTO `wp_gf_form_view` VALUES("53916", "10", "2017-04-15 12:00:13", "217.182.132.147", "267");
INSERT INTO `wp_gf_form_view` VALUES("53917", "13", "2017-04-15 12:23:01", "207.46.13.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("53918", "15", "2017-04-15 13:00:02", "5.9.98.130", "1659");
INSERT INTO `wp_gf_form_view` VALUES("53919", "10", "2017-04-15 13:00:02", "5.9.98.130", "834");
INSERT INTO `wp_gf_form_view` VALUES("53920", "3", "2017-04-15 13:00:03", "5.9.98.130", "856");
INSERT INTO `wp_gf_form_view` VALUES("53921", "6", "2017-04-15 13:08:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53922", "9", "2017-04-15 13:08:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53923", "8", "2017-04-15 13:08:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53924", "13", "2017-04-15 13:08:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53925", "15", "2017-04-15 14:00:00", "5.9.98.130", "1624");
INSERT INTO `wp_gf_form_view` VALUES("53926", "10", "2017-04-15 14:00:01", "5.9.98.130", "813");
INSERT INTO `wp_gf_form_view` VALUES("53927", "3", "2017-04-15 14:00:01", "5.9.98.130", "815");
INSERT INTO `wp_gf_form_view` VALUES("53928", "15", "2017-04-15 15:00:03", "5.9.98.130", "637");
INSERT INTO `wp_gf_form_view` VALUES("53929", "10", "2017-04-15 15:00:04", "5.9.98.130", "490");
INSERT INTO `wp_gf_form_view` VALUES("53930", "3", "2017-04-15 15:00:04", "5.9.98.130", "490");
INSERT INTO `wp_gf_form_view` VALUES("53931", "13", "2017-04-15 15:04:02", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("53932", "14", "2017-04-15 15:56:22", "202.46.54.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("53933", "15", "2017-04-15 16:15:51", "164.132.161.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("53934", "10", "2017-04-15 16:15:51", "164.132.161.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("53935", "3", "2017-04-15 16:15:52", "164.132.161.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("53936", "15", "2017-04-15 17:21:55", "157.55.39.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("53937", "10", "2017-04-15 17:21:55", "157.55.39.55", "4");
INSERT INTO `wp_gf_form_view` VALUES("53938", "3", "2017-04-15 17:21:56", "157.55.39.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("53939", "5", "2017-04-15 17:46:29", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("53940", "10", "2017-04-15 18:06:25", "24.108.12.82", "6");
INSERT INTO `wp_gf_form_view` VALUES("53941", "15", "2017-04-15 18:19:04", "117.227.7.237", "6");
INSERT INTO `wp_gf_form_view` VALUES("53942", "3", "2017-04-15 18:19:05", "117.227.7.237", "4");
INSERT INTO `wp_gf_form_view` VALUES("53943", "15", "2017-04-15 19:35:25", "137.74.207.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("53944", "10", "2017-04-15 19:35:27", "137.74.207.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("53945", "3", "2017-04-15 19:35:28", "137.74.207.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("53946", "11", "2017-04-15 20:16:16", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("53947", "10", "2017-04-15 20:38:34", "157.55.39.199", "47");
INSERT INTO `wp_gf_form_view` VALUES("53948", "15", "2017-04-15 20:38:36", "157.55.39.199", "38");
INSERT INTO `wp_gf_form_view` VALUES("53949", "3", "2017-04-15 20:38:36", "157.55.39.199", "50");
INSERT INTO `wp_gf_form_view` VALUES("53950", "8", "2017-04-15 20:38:45", "157.55.39.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("53951", "9", "2017-04-15 20:49:35", "157.55.39.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("53952", "3", "2017-04-15 21:21:30", "217.182.132.183", "25");
INSERT INTO `wp_gf_form_view` VALUES("53953", "15", "2017-04-15 21:21:30", "217.182.132.183", "17");
INSERT INTO `wp_gf_form_view` VALUES("53954", "10", "2017-04-15 21:21:30", "217.182.132.183", "20");
INSERT INTO `wp_gf_form_view` VALUES("53955", "9", "2017-04-15 21:26:19", "157.55.39.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("53956", "15", "2017-04-15 22:12:38", "77.75.76.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("53957", "10", "2017-04-15 22:12:39", "77.75.76.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("53958", "3", "2017-04-15 22:12:39", "77.75.76.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("53959", "14", "2017-04-15 23:35:33", "24.244.32.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("53960", "3", "2017-04-15 23:48:09", "51.255.65.80", "4");
INSERT INTO `wp_gf_form_view` VALUES("53961", "15", "2017-04-15 23:48:10", "51.255.65.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("53962", "10", "2017-04-15 23:48:10", "51.255.65.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("53963", "15", "2017-04-16 00:22:08", "77.75.79.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("53964", "10", "2017-04-16 00:22:09", "77.75.79.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("53965", "3", "2017-04-16 00:22:09", "77.75.79.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("53966", "2", "2017-04-16 00:59:52", "52.54.103.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("53967", "3", "2017-04-16 01:08:05", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("53968", "6", "2017-04-16 01:08:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53969", "9", "2017-04-16 01:08:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53970", "8", "2017-04-16 01:08:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53971", "10", "2017-04-16 01:08:06", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("53972", "13", "2017-04-16 01:08:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53973", "15", "2017-04-16 01:08:07", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53974", "10", "2017-04-16 02:13:33", "202.46.57.208", "3");
INSERT INTO `wp_gf_form_view` VALUES("53975", "15", "2017-04-16 02:13:34", "202.46.57.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("53976", "3", "2017-04-16 02:13:34", "202.46.57.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("53977", "15", "2017-04-16 04:14:19", "207.46.13.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("53978", "10", "2017-04-16 04:14:24", "207.46.13.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("53979", "3", "2017-04-16 04:14:25", "207.46.13.183", "4");
INSERT INTO `wp_gf_form_view` VALUES("53980", "3", "2017-04-16 05:20:55", "202.46.52.165", "6");
INSERT INTO `wp_gf_form_view` VALUES("53981", "15", "2017-04-16 05:20:55", "202.46.52.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("53982", "10", "2017-04-16 05:20:55", "202.46.52.165", "5");
INSERT INTO `wp_gf_form_view` VALUES("53983", "14", "2017-04-16 05:31:23", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("53984", "15", "2017-04-16 06:16:32", "157.55.39.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("53985", "10", "2017-04-16 06:16:33", "157.55.39.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("53986", "3", "2017-04-16 06:16:33", "157.55.39.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("53987", "15", "2017-04-16 07:16:34", "148.251.50.205", "13");
INSERT INTO `wp_gf_form_view` VALUES("53988", "10", "2017-04-16 07:16:35", "148.251.50.205", "12");
INSERT INTO `wp_gf_form_view` VALUES("53989", "3", "2017-04-16 07:16:35", "148.251.50.205", "13");
INSERT INTO `wp_gf_form_view` VALUES("53990", "2", "2017-04-16 07:16:43", "148.251.50.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("53991", "11", "2017-04-16 07:17:10", "148.251.50.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("53992", "3", "2017-04-16 08:37:44", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("53993", "6", "2017-04-16 08:37:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53994", "9", "2017-04-16 08:37:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53995", "8", "2017-04-16 08:37:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53996", "10", "2017-04-16 08:37:46", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("53997", "13", "2017-04-16 08:37:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53998", "15", "2017-04-16 08:37:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("53999", "15", "2017-04-16 09:01:40", "157.55.39.118", "3");
INSERT INTO `wp_gf_form_view` VALUES("54000", "10", "2017-04-16 09:01:40", "157.55.39.118", "3");
INSERT INTO `wp_gf_form_view` VALUES("54001", "3", "2017-04-16 09:01:40", "157.55.39.118", "3");
INSERT INTO `wp_gf_form_view` VALUES("54002", "15", "2017-04-16 10:24:35", "40.77.167.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("54003", "10", "2017-04-16 10:24:35", "40.77.167.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("54004", "3", "2017-04-16 10:24:36", "40.77.167.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("54005", "14", "2017-04-16 10:27:14", "107.173.241.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("54006", "15", "2017-04-16 11:03:54", "202.46.53.118", "7");
INSERT INTO `wp_gf_form_view` VALUES("54007", "10", "2017-04-16 11:03:55", "202.46.53.118", "6");
INSERT INTO `wp_gf_form_view` VALUES("54008", "3", "2017-04-16 11:03:55", "202.46.53.118", "8");
INSERT INTO `wp_gf_form_view` VALUES("54009", "11", "2017-04-16 11:38:49", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("54010", "2", "2017-04-16 11:55:46", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("54011", "15", "2017-04-16 12:01:32", "188.40.46.135", "24");
INSERT INTO `wp_gf_form_view` VALUES("54012", "10", "2017-04-16 12:01:32", "188.40.46.135", "26");
INSERT INTO `wp_gf_form_view` VALUES("54013", "3", "2017-04-16 12:01:32", "188.40.46.135", "97");
INSERT INTO `wp_gf_form_view` VALUES("54014", "6", "2017-04-16 12:09:39", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("54015", "9", "2017-04-16 12:09:40", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("54016", "8", "2017-04-16 12:09:41", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("54017", "13", "2017-04-16 12:09:42", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("54018", "14", "2017-04-16 12:12:20", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("54019", "10", "2017-04-16 13:11:33", "68.180.229.247", "11");
INSERT INTO `wp_gf_form_view` VALUES("54020", "15", "2017-04-16 13:11:34", "68.180.229.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("54021", "3", "2017-04-16 13:11:34", "68.180.229.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("54022", "3", "2017-04-16 14:23:55", "202.46.49.110", "4");
INSERT INTO `wp_gf_form_view` VALUES("54023", "15", "2017-04-16 14:23:56", "202.46.49.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("54024", "10", "2017-04-16 14:23:56", "202.46.49.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("54025", "15", "2017-04-16 15:30:39", "202.46.53.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("54026", "10", "2017-04-16 15:30:40", "202.46.53.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("54027", "3", "2017-04-16 15:30:40", "202.46.53.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("54028", "13", "2017-04-16 16:03:54", "202.46.54.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("54029", "15", "2017-04-16 16:03:54", "202.46.54.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("54030", "10", "2017-04-16 16:03:54", "202.46.54.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("54031", "3", "2017-04-16 16:03:54", "202.46.54.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("54032", "15", "2017-04-16 17:23:19", "40.77.167.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("54033", "10", "2017-04-16 17:23:19", "40.77.167.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("54034", "3", "2017-04-16 17:23:20", "40.77.167.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("54035", "14", "2017-04-16 17:43:56", "202.46.58.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("54036", "15", "2017-04-16 18:03:46", "52.43.18.103", "4");
INSERT INTO `wp_gf_form_view` VALUES("54037", "10", "2017-04-16 18:03:47", "52.43.18.103", "6");
INSERT INTO `wp_gf_form_view` VALUES("54038", "3", "2017-04-16 18:03:47", "52.43.18.103", "5");
INSERT INTO `wp_gf_form_view` VALUES("54039", "10", "2017-04-16 19:55:49", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("54040", "15", "2017-04-16 19:55:51", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("54041", "3", "2017-04-16 19:55:52", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("54042", "5", "2017-04-16 20:09:15", "164.132.161.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("54043", "15", "2017-04-16 20:09:15", "164.132.161.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("54044", "10", "2017-04-16 20:09:15", "164.132.161.22", "4");
INSERT INTO `wp_gf_form_view` VALUES("54045", "3", "2017-04-16 20:09:15", "164.132.161.22", "27");
INSERT INTO `wp_gf_form_view` VALUES("54046", "6", "2017-04-16 20:58:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54047", "9", "2017-04-16 20:58:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54048", "8", "2017-04-16 20:58:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54049", "13", "2017-04-16 20:58:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54050", "15", "2017-04-16 21:37:21", "202.46.48.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("54051", "10", "2017-04-16 21:37:22", "202.46.48.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("54052", "3", "2017-04-16 21:37:22", "202.46.48.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("54053", "15", "2017-04-16 22:55:16", "164.132.161.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("54054", "10", "2017-04-16 22:55:18", "164.132.161.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("54055", "3", "2017-04-16 22:55:18", "164.132.161.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("54056", "3", "2017-04-16 23:12:55", "217.182.132.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("54057", "14", "2017-04-16 23:27:44", "146.0.74.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("54058", "10", "2017-04-17 00:13:33", "217.182.132.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("54059", "15", "2017-04-17 00:13:33", "217.182.132.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("54060", "3", "2017-04-17 00:13:33", "217.182.132.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("54061", "15", "2017-04-17 01:23:14", "68.180.229.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("54062", "10", "2017-04-17 01:23:18", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("54063", "3", "2017-04-17 01:23:19", "68.180.229.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("54064", "15", "2017-04-17 02:08:46", "40.77.167.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("54065", "10", "2017-04-17 02:08:46", "40.77.167.69", "7");
INSERT INTO `wp_gf_form_view` VALUES("54066", "3", "2017-04-17 02:08:46", "40.77.167.69", "7");
INSERT INTO `wp_gf_form_view` VALUES("54067", "15", "2017-04-17 03:44:04", "157.55.39.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("54068", "10", "2017-04-17 03:44:04", "157.55.39.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("54069", "3", "2017-04-17 03:44:04", "157.55.39.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("54070", "3", "2017-04-17 04:07:03", "202.46.49.90", "33");
INSERT INTO `wp_gf_form_view` VALUES("54071", "15", "2017-04-17 04:07:03", "202.46.49.90", "7");
INSERT INTO `wp_gf_form_view` VALUES("54072", "10", "2017-04-17 04:07:03", "202.46.49.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("54073", "6", "2017-04-17 04:29:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54074", "9", "2017-04-17 04:29:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54075", "8", "2017-04-17 04:29:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54076", "13", "2017-04-17 04:29:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54077", "2", "2017-04-17 04:31:18", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("54078", "3", "2017-04-17 05:15:58", "151.80.31.152", "4");
INSERT INTO `wp_gf_form_view` VALUES("54079", "15", "2017-04-17 05:15:59", "151.80.31.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("54080", "10", "2017-04-17 05:15:59", "151.80.31.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("54081", "15", "2017-04-17 06:10:51", "157.55.39.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("54082", "10", "2017-04-17 06:10:52", "157.55.39.242", "6");
INSERT INTO `wp_gf_form_view` VALUES("54083", "3", "2017-04-17 06:10:53", "157.55.39.242", "29");
INSERT INTO `wp_gf_form_view` VALUES("54084", "6", "2017-04-17 06:48:09", "157.55.39.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("54085", "9", "2017-04-17 06:48:09", "157.55.39.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("54086", "8", "2017-04-17 06:48:09", "157.55.39.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("54087", "13", "2017-04-17 06:48:10", "157.55.39.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("54088", "15", "2017-04-17 08:33:43", "202.46.51.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("54089", "10", "2017-04-17 08:33:46", "202.46.51.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("54090", "3", "2017-04-17 08:33:47", "202.46.51.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("54091", "15", "2017-04-17 09:13:20", "157.55.39.201", "5");
INSERT INTO `wp_gf_form_view` VALUES("54092", "10", "2017-04-17 09:13:21", "157.55.39.201", "4");
INSERT INTO `wp_gf_form_view` VALUES("54093", "3", "2017-04-17 09:13:23", "157.55.39.201", "5");
INSERT INTO `wp_gf_form_view` VALUES("54094", "3", "2017-04-17 10:14:34", "157.55.39.201", "3");
INSERT INTO `wp_gf_form_view` VALUES("54095", "15", "2017-04-17 10:14:34", "157.55.39.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("54096", "10", "2017-04-17 10:14:34", "157.55.39.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("54097", "3", "2017-04-17 11:12:37", "217.182.132.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("54098", "15", "2017-04-17 11:12:43", "217.182.132.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("54099", "10", "2017-04-17 11:12:44", "217.182.132.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("54100", "15", "2017-04-17 12:03:17", "202.46.49.152", "5");
INSERT INTO `wp_gf_form_view` VALUES("54101", "10", "2017-04-17 12:03:22", "202.46.49.152", "6");
INSERT INTO `wp_gf_form_view` VALUES("54102", "3", "2017-04-17 12:03:22", "202.46.49.152", "5");
INSERT INTO `wp_gf_form_view` VALUES("54103", "3", "2017-04-17 13:07:50", "164.132.162.188", "8");
INSERT INTO `wp_gf_form_view` VALUES("54104", "15", "2017-04-17 13:07:50", "164.132.162.188", "5");
INSERT INTO `wp_gf_form_view` VALUES("54105", "10", "2017-04-17 13:07:50", "164.132.162.188", "6");
INSERT INTO `wp_gf_form_view` VALUES("54106", "15", "2017-04-17 14:16:34", "202.46.58.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("54107", "10", "2017-04-17 14:16:35", "202.46.58.27", "6");
INSERT INTO `wp_gf_form_view` VALUES("54108", "3", "2017-04-17 14:16:36", "202.46.58.27", "5");
INSERT INTO `wp_gf_form_view` VALUES("54109", "15", "2017-04-17 15:09:18", "51.255.65.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("54110", "10", "2017-04-17 15:09:18", "51.255.65.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("54111", "3", "2017-04-17 15:09:18", "51.255.65.26", "4");
INSERT INTO `wp_gf_form_view` VALUES("54112", "9", "2017-04-17 15:56:37", "202.46.55.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("54113", "15", "2017-04-17 16:10:54", "77.75.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("54114", "10", "2017-04-17 16:10:54", "77.75.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("54115", "3", "2017-04-17 16:10:54", "77.75.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("54116", "15", "2017-04-17 17:03:20", "202.46.51.196", "5");
INSERT INTO `wp_gf_form_view` VALUES("54117", "10", "2017-04-17 17:03:30", "202.46.51.196", "7");
INSERT INTO `wp_gf_form_view` VALUES("54118", "3", "2017-04-17 17:03:31", "202.46.51.196", "32");
INSERT INTO `wp_gf_form_view` VALUES("54119", "6", "2017-04-17 17:09:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54120", "9", "2017-04-17 17:09:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54121", "8", "2017-04-17 17:09:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54122", "13", "2017-04-17 17:09:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54123", "3", "2017-04-17 18:19:24", "68.180.229.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("54124", "8", "2017-04-17 18:19:25", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("54125", "13", "2017-04-17 18:19:26", "68.180.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("54126", "15", "2017-04-17 18:55:14", "51.255.71.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("54127", "10", "2017-04-17 18:55:15", "51.255.71.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("54128", "3", "2017-04-17 19:47:22", "68.180.230.59", "8");
INSERT INTO `wp_gf_form_view` VALUES("54129", "8", "2017-04-17 19:47:35", "68.180.230.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("54130", "13", "2017-04-17 19:47:35", "68.180.230.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("54131", "15", "2017-04-17 19:50:26", "217.182.132.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("54132", "10", "2017-04-17 19:50:27", "217.182.132.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("54133", "15", "2017-04-17 20:00:14", "217.182.132.80", "5");
INSERT INTO `wp_gf_form_view` VALUES("54134", "10", "2017-04-17 20:00:14", "217.182.132.80", "5");
INSERT INTO `wp_gf_form_view` VALUES("54135", "3", "2017-04-17 20:00:14", "217.182.132.80", "6");
INSERT INTO `wp_gf_form_view` VALUES("54136", "13", "2017-04-17 20:53:07", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54137", "15", "2017-04-17 21:04:33", "77.75.76.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("54138", "10", "2017-04-17 21:04:33", "77.75.76.162", "7");
INSERT INTO `wp_gf_form_view` VALUES("54139", "3", "2017-04-17 21:04:33", "77.75.76.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("54140", "15", "2017-04-17 22:26:40", "40.77.167.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("54141", "15", "2017-04-17 23:07:41", "202.46.54.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("54142", "10", "2017-04-17 23:07:46", "202.46.54.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("54143", "3", "2017-04-17 23:07:47", "202.46.54.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("54144", "8", "2017-04-17 23:18:11", "157.55.39.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("54145", "15", "2017-04-18 00:50:59", "24.68.126.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("54146", "10", "2017-04-18 00:50:59", "24.68.126.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("54147", "3", "2017-04-18 00:51:00", "24.68.126.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("54148", "15", "2017-04-18 01:11:59", "164.132.161.93", "4");
INSERT INTO `wp_gf_form_view` VALUES("54149", "10", "2017-04-18 01:20:58", "202.46.50.81", "5");
INSERT INTO `wp_gf_form_view` VALUES("54150", "3", "2017-04-18 01:20:59", "202.46.50.81", "28");
INSERT INTO `wp_gf_form_view` VALUES("54151", "6", "2017-04-18 01:29:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54152", "9", "2017-04-18 01:29:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54153", "8", "2017-04-18 01:29:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54154", "13", "2017-04-18 01:29:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54155", "2", "2017-04-18 02:04:07", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("54156", "15", "2017-04-18 02:28:05", "131.253.26.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54157", "10", "2017-04-18 02:28:05", "131.253.26.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54158", "3", "2017-04-18 02:28:05", "131.253.26.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54159", "15", "2017-04-18 03:05:07", "66.249.79.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("54160", "10", "2017-04-18 03:05:07", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("54161", "3", "2017-04-18 03:05:07", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("54162", "10", "2017-04-18 04:02:05", "199.59.150.183", "5");
INSERT INTO `wp_gf_form_view` VALUES("54163", "10", "2017-04-18 04:02:05", "199.16.157.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("54164", "15", "2017-04-18 04:02:05", "199.59.150.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("54165", "3", "2017-04-18 04:02:05", "199.59.150.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("54166", "15", "2017-04-18 05:07:38", "66.249.79.148", "11");
INSERT INTO `wp_gf_form_view` VALUES("54167", "10", "2017-04-18 05:07:39", "66.249.79.148", "10");
INSERT INTO `wp_gf_form_view` VALUES("54168", "3", "2017-04-18 05:07:40", "66.249.79.148", "13");
INSERT INTO `wp_gf_form_view` VALUES("54169", "14", "2017-04-18 05:14:15", "103.28.84.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("54170", "11", "2017-04-18 05:14:59", "191.101.31.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("54171", "2", "2017-04-18 05:15:49", "191.101.31.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("54172", "14", "2017-04-18 06:29:18", "37.230.135.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("54173", "8", "2017-04-18 07:32:56", "202.46.51.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("54174", "15", "2017-04-18 07:33:00", "202.46.51.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("54175", "10", "2017-04-18 07:33:02", "202.46.51.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("54176", "3", "2017-04-18 07:33:02", "202.46.51.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("54177", "15", "2017-04-18 08:16:09", "183.171.180.253", "138");
INSERT INTO `wp_gf_form_view` VALUES("54178", "10", "2017-04-18 08:16:09", "183.171.180.253", "113");
INSERT INTO `wp_gf_form_view` VALUES("54179", "3", "2017-04-18 08:16:10", "183.171.180.253", "127");
INSERT INTO `wp_gf_form_view` VALUES("54180", "14", "2017-04-18 08:42:55", "104.236.201.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("54181", "11", "2017-04-18 08:42:59", "104.236.201.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("54182", "6", "2017-04-18 08:51:05", "104.236.201.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("54183", "15", "2017-04-18 09:00:00", "104.236.201.239", "390");
INSERT INTO `wp_gf_form_view` VALUES("54184", "10", "2017-04-18 09:00:00", "104.236.201.239", "372");
INSERT INTO `wp_gf_form_view` VALUES("54185", "3", "2017-04-18 09:00:00", "104.236.201.239", "393");
INSERT INTO `wp_gf_form_view` VALUES("54186", "9", "2017-04-18 09:01:20", "104.236.201.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("54187", "2", "2017-04-18 09:49:20", "104.236.201.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("54188", "15", "2017-04-18 10:00:00", "104.236.201.239", "25");
INSERT INTO `wp_gf_form_view` VALUES("54189", "10", "2017-04-18 10:00:00", "104.236.201.239", "22");
INSERT INTO `wp_gf_form_view` VALUES("54190", "3", "2017-04-18 10:00:00", "104.236.201.239", "27");
INSERT INTO `wp_gf_form_view` VALUES("54191", "13", "2017-04-18 10:01:56", "104.236.201.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("54192", "9", "2017-04-18 11:00:30", "202.46.54.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("54193", "15", "2017-04-18 11:00:30", "202.46.54.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("54194", "10", "2017-04-18 11:00:31", "202.46.54.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("54195", "3", "2017-04-18 11:00:31", "202.46.54.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("54196", "15", "2017-04-18 12:07:12", "202.46.53.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("54197", "10", "2017-04-18 12:07:18", "202.46.53.11", "5");
INSERT INTO `wp_gf_form_view` VALUES("54198", "3", "2017-04-18 12:07:19", "202.46.53.11", "6");
INSERT INTO `wp_gf_form_view` VALUES("54199", "3", "2017-04-18 13:04:20", "216.244.66.231", "30");
INSERT INTO `wp_gf_form_view` VALUES("54200", "15", "2017-04-18 13:04:21", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("54201", "10", "2017-04-18 13:04:21", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("54202", "6", "2017-04-18 13:07:33", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54203", "9", "2017-04-18 13:07:33", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54204", "8", "2017-04-18 13:07:34", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54205", "13", "2017-04-18 13:07:35", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54206", "15", "2017-04-18 14:04:20", "96.54.236.74", "7");
INSERT INTO `wp_gf_form_view` VALUES("54207", "10", "2017-04-18 14:04:22", "96.54.236.74", "8");
INSERT INTO `wp_gf_form_view` VALUES("54208", "3", "2017-04-18 14:04:22", "96.54.236.74", "7");
INSERT INTO `wp_gf_form_view` VALUES("54209", "11", "2017-04-18 14:05:37", "68.180.230.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("54210", "8", "2017-04-18 14:23:12", "157.55.39.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("54211", "3", "2017-04-18 15:11:26", "52.88.109.3", "35");
INSERT INTO `wp_gf_form_view` VALUES("54212", "6", "2017-04-18 15:11:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54213", "9", "2017-04-18 15:11:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54214", "8", "2017-04-18 15:11:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54215", "10", "2017-04-18 15:11:28", "52.88.109.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("54216", "13", "2017-04-18 15:11:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54217", "15", "2017-04-18 15:11:29", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("54218", "14", "2017-04-18 15:40:17", "96.8.122.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("54219", "15", "2017-04-18 16:00:59", "199.21.99.202", "12");
INSERT INTO `wp_gf_form_view` VALUES("54220", "10", "2017-04-18 16:00:59", "199.21.99.202", "11");
INSERT INTO `wp_gf_form_view` VALUES("54221", "3", "2017-04-18 16:01:00", "199.21.99.202", "13");
INSERT INTO `wp_gf_form_view` VALUES("54222", "11", "2017-04-18 16:01:04", "141.8.143.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("54223", "2", "2017-04-18 16:07:30", "96.45.202.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("54224", "15", "2017-04-18 17:11:58", "96.50.17.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("54225", "10", "2017-04-18 17:12:03", "96.50.17.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("54226", "3", "2017-04-18 17:12:03", "96.50.17.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("54227", "10", "2017-04-18 18:10:54", "207.194.133.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("54228", "15", "2017-04-18 18:10:57", "207.194.133.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("54229", "3", "2017-04-18 18:10:57", "207.194.133.9", "5");
INSERT INTO `wp_gf_form_view` VALUES("54230", "10", "2017-04-18 19:36:07", "68.180.230.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("54231", "15", "2017-04-18 20:32:09", "164.132.161.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("54232", "10", "2017-04-18 20:32:10", "164.132.161.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("54233", "3", "2017-04-18 20:32:11", "164.132.161.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("54234", "15", "2017-04-18 21:38:10", "202.46.49.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("54235", "10", "2017-04-18 21:38:15", "202.46.49.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("54236", "3", "2017-04-18 21:38:16", "202.46.49.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("54237", "15", "2017-04-18 22:12:57", "68.180.230.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("54238", "10", "2017-04-18 22:13:01", "68.180.230.59", "5");
INSERT INTO `wp_gf_form_view` VALUES("54239", "3", "2017-04-18 22:13:02", "68.180.230.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("54240", "10", "2017-04-18 23:03:24", "68.180.230.59", "9");
INSERT INTO `wp_gf_form_view` VALUES("54241", "15", "2017-04-18 23:03:26", "68.180.230.59", "8");
INSERT INTO `wp_gf_form_view` VALUES("54242", "3", "2017-04-18 23:03:27", "68.180.230.59", "31");
INSERT INTO `wp_gf_form_view` VALUES("54243", "6", "2017-04-18 23:36:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54244", "9", "2017-04-18 23:36:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54245", "8", "2017-04-18 23:36:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54246", "13", "2017-04-18 23:36:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54247", "15", "2017-04-19 01:28:38", "199.71.240.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("54248", "10", "2017-04-19 01:28:40", "199.71.240.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("54249", "3", "2017-04-19 01:28:41", "199.71.240.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("54250", "15", "2017-04-19 02:43:20", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("54251", "10", "2017-04-19 02:43:25", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54252", "3", "2017-04-19 02:43:26", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54253", "15", "2017-04-19 03:19:44", "77.75.77.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("54254", "10", "2017-04-19 03:19:44", "77.75.77.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("54255", "3", "2017-04-19 03:19:44", "77.75.77.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("54256", "10", "2017-04-19 04:17:27", "202.46.50.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("54257", "3", "2017-04-19 04:17:27", "202.46.50.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("54258", "10", "2017-04-19 05:38:57", "51.255.65.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("54259", "3", "2017-04-19 05:38:58", "51.255.65.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("54260", "10", "2017-04-19 06:26:35", "68.180.230.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("54261", "3", "2017-04-19 06:26:35", "68.180.230.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("54262", "10", "2017-04-19 07:04:07", "202.46.51.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("54263", "3", "2017-04-19 07:04:07", "202.46.51.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("54264", "14", "2017-04-19 07:23:09", "104.223.52.120", "4");
INSERT INTO `wp_gf_form_view` VALUES("54265", "3", "2017-04-19 08:32:19", "68.180.230.59", "3");
INSERT INTO `wp_gf_form_view` VALUES("54266", "10", "2017-04-19 08:51:40", "151.80.31.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("54267", "10", "2017-04-19 09:17:30", "202.46.48.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("54268", "3", "2017-04-19 09:17:30", "202.46.48.137", "4");
INSERT INTO `wp_gf_form_view` VALUES("54269", "10", "2017-04-19 12:51:02", "66.249.66.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("54270", "3", "2017-04-19 12:51:04", "66.249.66.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("54271", "3", "2017-04-19 13:04:51", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("54272", "6", "2017-04-19 13:04:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54273", "9", "2017-04-19 13:04:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54274", "8", "2017-04-19 13:04:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54275", "10", "2017-04-19 13:04:52", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("54276", "13", "2017-04-19 13:04:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54277", "15", "2017-04-19 13:04:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54278", "5", "2017-04-19 13:32:09", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("54279", "8", "2017-04-19 14:25:00", "202.46.55.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("54280", "10", "2017-04-19 14:25:01", "202.46.55.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("54281", "3", "2017-04-19 14:25:02", "202.46.55.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("54282", "3", "2017-04-19 15:10:51", "68.180.230.59", "16");
INSERT INTO `wp_gf_form_view` VALUES("54283", "10", "2017-04-19 15:10:52", "68.180.230.59", "14");
INSERT INTO `wp_gf_form_view` VALUES("54284", "2", "2017-04-19 15:20:03", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("54285", "10", "2017-04-19 16:11:20", "77.75.76.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("54286", "3", "2017-04-19 16:11:22", "77.75.76.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("54287", "10", "2017-04-19 17:13:05", "96.45.202.182", "11");
INSERT INTO `wp_gf_form_view` VALUES("54288", "3", "2017-04-19 17:13:09", "96.45.202.182", "12");
INSERT INTO `wp_gf_form_view` VALUES("54289", "10", "2017-04-19 18:06:40", "202.46.48.81", "8");
INSERT INTO `wp_gf_form_view` VALUES("54290", "3", "2017-04-19 18:06:40", "202.46.48.81", "8");
INSERT INTO `wp_gf_form_view` VALUES("54291", "3", "2017-04-19 19:11:31", "216.244.66.234", "5");
INSERT INTO `wp_gf_form_view` VALUES("54292", "10", "2017-04-19 19:33:51", "66.249.66.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("54293", "15", "2017-04-19 20:04:02", "66.249.66.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("54294", "10", "2017-04-19 20:04:02", "66.249.66.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("54295", "3", "2017-04-19 20:04:03", "66.249.66.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("54296", "13", "2017-04-19 20:40:27", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("54297", "10", "2017-04-19 21:12:32", "24.108.12.82", "6");
INSERT INTO `wp_gf_form_view` VALUES("54298", "3", "2017-04-19 21:28:44", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("54299", "6", "2017-04-19 21:28:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54300", "9", "2017-04-19 21:28:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54301", "8", "2017-04-19 21:28:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54302", "13", "2017-04-19 21:28:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54303", "15", "2017-04-19 21:28:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54304", "10", "2017-04-19 22:10:31", "202.46.58.161", "4");
INSERT INTO `wp_gf_form_view` VALUES("54305", "3", "2017-04-19 22:10:31", "202.46.58.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("54306", "3", "2017-04-19 23:27:11", "40.77.167.103", "6");
INSERT INTO `wp_gf_form_view` VALUES("54307", "10", "2017-04-19 23:27:14", "207.46.13.129", "6");
INSERT INTO `wp_gf_form_view` VALUES("54308", "2", "2017-04-19 23:31:14", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("54309", "10", "2017-04-20 00:06:34", "207.46.13.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("54310", "3", "2017-04-20 00:06:35", "207.46.13.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("54311", "11", "2017-04-20 00:08:16", "207.46.13.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("54312", "14", "2017-04-20 01:27:37", "24.68.112.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("54313", "3", "2017-04-20 01:30:29", "202.46.58.84", "2");
INSERT INTO `wp_gf_form_view` VALUES("54314", "10", "2017-04-20 01:30:29", "202.46.58.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("54315", "10", "2017-04-20 02:03:52", "202.46.52.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("54316", "3", "2017-04-20 02:03:53", "202.46.52.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("54317", "11", "2017-04-20 03:07:16", "207.46.13.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("54318", "10", "2017-04-20 03:07:21", "207.46.13.137", "10");
INSERT INTO `wp_gf_form_view` VALUES("54319", "3", "2017-04-20 03:07:22", "207.46.13.137", "9");
INSERT INTO `wp_gf_form_view` VALUES("54320", "10", "2017-04-20 04:39:01", "207.46.13.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("54321", "3", "2017-04-20 04:39:02", "207.46.13.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("54322", "3", "2017-04-20 05:17:17", "137.74.207.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("54323", "10", "2017-04-20 05:35:02", "66.249.66.39", "3");
INSERT INTO `wp_gf_form_view` VALUES("54324", "10", "2017-04-20 06:39:50", "202.46.51.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("54325", "3", "2017-04-20 06:39:51", "202.46.51.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("54326", "14", "2017-04-20 07:46:29", "191.101.106.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("54327", "11", "2017-04-20 08:11:56", "207.46.13.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("54328", "10", "2017-04-20 08:13:13", "207.46.13.47", "5");
INSERT INTO `wp_gf_form_view` VALUES("54329", "3", "2017-04-20 08:13:14", "207.46.13.47", "5");
INSERT INTO `wp_gf_form_view` VALUES("54330", "13", "2017-04-20 08:42:38", "66.249.66.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("54331", "3", "2017-04-20 10:36:13", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("54332", "6", "2017-04-20 10:36:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54333", "9", "2017-04-20 10:36:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54334", "8", "2017-04-20 10:36:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54335", "10", "2017-04-20 10:36:18", "52.88.109.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("54336", "13", "2017-04-20 10:36:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54337", "15", "2017-04-20 10:36:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54338", "3", "2017-04-20 11:20:10", "207.46.13.47", "4");
INSERT INTO `wp_gf_form_view` VALUES("54339", "10", "2017-04-20 11:20:10", "207.46.13.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("54340", "10", "2017-04-20 12:01:06", "184.66.4.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("54341", "3", "2017-04-20 12:01:07", "184.66.4.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("54342", "14", "2017-04-20 12:50:19", "107.175.154.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("54343", "10", "2017-04-20 13:58:34", "207.46.13.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("54344", "3", "2017-04-20 13:58:38", "207.46.13.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("54345", "3", "2017-04-20 14:09:21", "202.46.54.117", "18");
INSERT INTO `wp_gf_form_view` VALUES("54346", "10", "2017-04-20 14:09:21", "202.46.54.117", "7");
INSERT INTO `wp_gf_form_view` VALUES("54347", "14", "2017-04-20 14:16:02", "207.46.13.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("54348", "8", "2017-04-20 14:46:45", "66.249.66.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("54349", "13", "2017-04-20 14:46:46", "66.249.66.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("54350", "11", "2017-04-20 15:16:00", "202.46.51.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("54351", "14", "2017-04-20 15:36:00", "24.68.109.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("54352", "10", "2017-04-20 15:39:04", "162.210.196.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("54353", "3", "2017-04-20 15:39:05", "162.210.196.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("54354", "11", "2017-04-20 16:05:10", "45.32.156.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("54355", "10", "2017-04-20 16:05:23", "45.32.156.159", "10");
INSERT INTO `wp_gf_form_view` VALUES("54356", "3", "2017-04-20 16:05:23", "45.32.156.159", "10");
INSERT INTO `wp_gf_form_view` VALUES("54357", "2", "2017-04-20 16:12:38", "45.32.156.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("54358", "15", "2017-04-20 17:33:59", "207.46.13.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("54359", "10", "2017-04-20 17:37:11", "184.66.130.240", "3");
INSERT INTO `wp_gf_form_view` VALUES("54360", "3", "2017-04-20 17:37:12", "184.66.130.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("54361", "3", "2017-04-20 18:06:36", "51.255.65.69", "36");
INSERT INTO `wp_gf_form_view` VALUES("54362", "10", "2017-04-20 18:07:27", "95.158.189.118", "14");
INSERT INTO `wp_gf_form_view` VALUES("54363", "6", "2017-04-20 18:43:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54364", "9", "2017-04-20 18:43:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54365", "8", "2017-04-20 18:43:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54366", "13", "2017-04-20 18:43:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54367", "15", "2017-04-20 18:43:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54368", "3", "2017-04-20 19:09:58", "217.182.132.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("54369", "10", "2017-04-20 19:29:33", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54370", "10", "2017-04-20 20:12:12", "207.46.13.116", "5");
INSERT INTO `wp_gf_form_view` VALUES("54371", "3", "2017-04-20 20:12:13", "207.46.13.116", "5");
INSERT INTO `wp_gf_form_view` VALUES("54372", "10", "2017-04-20 21:04:24", "216.244.66.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("54373", "3", "2017-04-20 21:04:25", "216.244.66.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("54374", "8", "2017-04-20 21:32:30", "51.255.65.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("54375", "10", "2017-04-20 22:41:05", "207.46.13.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("54376", "3", "2017-04-20 22:41:08", "207.46.13.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("54377", "6", "2017-04-20 22:48:37", "51.255.65.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("54378", "14", "2017-04-20 22:48:51", "154.20.33.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("54379", "10", "2017-04-20 23:36:12", "202.46.51.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("54380", "3", "2017-04-20 23:36:15", "202.46.51.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("54381", "2", "2017-04-20 23:50:31", "5.148.165.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("54382", "6", "2017-04-21 00:13:10", "46.229.168.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("54383", "10", "2017-04-21 00:13:10", "46.229.168.75", "41");
INSERT INTO `wp_gf_form_view` VALUES("54384", "3", "2017-04-21 00:13:11", "46.229.168.75", "50");
INSERT INTO `wp_gf_form_view` VALUES("54385", "11", "2017-04-21 00:15:00", "46.229.168.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("54386", "14", "2017-04-21 00:15:57", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("54387", "3", "2017-04-21 01:13:05", "217.182.132.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("54388", "10", "2017-04-21 01:13:08", "217.182.132.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("54389", "10", "2017-04-21 02:05:47", "202.46.53.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("54390", "3", "2017-04-21 02:05:48", "202.46.53.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("54391", "10", "2017-04-21 03:48:34", "77.75.78.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("54392", "3", "2017-04-21 03:48:36", "77.75.78.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("54393", "10", "2017-04-21 05:39:24", "202.46.51.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("54394", "3", "2017-04-21 05:39:25", "202.46.51.83", "3");
INSERT INTO `wp_gf_form_view` VALUES("54395", "14", "2017-04-21 05:41:01", "217.182.132.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("54396", "10", "2017-04-21 06:42:29", "88.198.55.175", "3");
INSERT INTO `wp_gf_form_view` VALUES("54397", "3", "2017-04-21 06:42:32", "88.198.55.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("54398", "3", "2017-04-21 07:59:26", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("54399", "6", "2017-04-21 07:59:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54400", "9", "2017-04-21 07:59:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54401", "8", "2017-04-21 07:59:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54402", "10", "2017-04-21 07:59:28", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54403", "13", "2017-04-21 07:59:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54404", "15", "2017-04-21 07:59:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54405", "10", "2017-04-21 08:07:26", "77.75.78.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("54406", "3", "2017-04-21 08:07:26", "77.75.78.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("54407", "15", "2017-04-21 08:47:54", "157.55.39.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("54408", "10", "2017-04-21 09:36:18", "157.55.39.243", "3");
INSERT INTO `wp_gf_form_view` VALUES("54409", "3", "2017-04-21 09:47:45", "217.182.132.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("54410", "3", "2017-04-21 10:16:36", "51.255.65.97", "4");
INSERT INTO `wp_gf_form_view` VALUES("54411", "10", "2017-04-21 10:19:04", "34.209.169.96", "3");
INSERT INTO `wp_gf_form_view` VALUES("54412", "15", "2017-04-21 12:25:02", "39.47.50.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("54413", "10", "2017-04-21 12:25:05", "39.47.50.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("54414", "3", "2017-04-21 12:25:06", "39.47.50.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("54415", "10", "2017-04-21 13:13:21", "173.35.62.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("54416", "3", "2017-04-21 13:13:22", "173.35.62.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("54417", "10", "2017-04-21 14:33:58", "72.143.231.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("54418", "3", "2017-04-21 14:33:58", "72.143.231.82", "3");
INSERT INTO `wp_gf_form_view` VALUES("54419", "3", "2017-04-21 15:01:10", "157.55.39.244", "3");
INSERT INTO `wp_gf_form_view` VALUES("54420", "10", "2017-04-21 15:01:10", "157.55.39.244", "2");
INSERT INTO `wp_gf_form_view` VALUES("54421", "3", "2017-04-21 16:12:04", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("54422", "6", "2017-04-21 16:12:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54423", "9", "2017-04-21 16:12:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54424", "8", "2017-04-21 16:12:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54425", "10", "2017-04-21 16:12:05", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54426", "13", "2017-04-21 16:12:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54427", "15", "2017-04-21 16:12:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54428", "10", "2017-04-21 17:12:28", "207.194.40.8", "12");
INSERT INTO `wp_gf_form_view` VALUES("54429", "3", "2017-04-21 17:12:31", "207.194.40.8", "12");
INSERT INTO `wp_gf_form_view` VALUES("54430", "14", "2017-04-21 17:13:21", "207.194.40.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("54431", "10", "2017-04-21 18:16:59", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("54432", "3", "2017-04-21 18:17:00", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("54433", "3", "2017-04-21 19:38:40", "202.46.51.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("54434", "10", "2017-04-21 19:38:48", "202.46.51.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("54435", "3", "2017-04-21 20:11:27", "157.55.39.244", "4");
INSERT INTO `wp_gf_form_view` VALUES("54436", "10", "2017-04-21 20:11:28", "157.55.39.244", "3");
INSERT INTO `wp_gf_form_view` VALUES("54437", "14", "2017-04-21 21:30:44", "154.20.32.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("54438", "10", "2017-04-21 21:51:59", "202.46.48.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("54439", "3", "2017-04-21 21:52:00", "202.46.48.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("54440", "10", "2017-04-21 23:32:01", "157.55.39.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("54441", "3", "2017-04-21 23:32:06", "157.55.39.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("54442", "3", "2017-04-22 00:20:41", "40.77.167.74", "4");
INSERT INTO `wp_gf_form_view` VALUES("54443", "10", "2017-04-22 00:20:41", "40.77.167.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("54444", "6", "2017-04-22 02:58:43", "202.46.55.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54445", "10", "2017-04-22 02:58:44", "202.46.55.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54446", "3", "2017-04-22 02:58:45", "202.46.55.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54447", "10", "2017-04-22 03:32:05", "202.46.58.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("54448", "3", "2017-04-22 03:32:06", "202.46.58.55", "3");
INSERT INTO `wp_gf_form_view` VALUES("54449", "10", "2017-04-22 04:38:42", "202.46.57.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("54450", "3", "2017-04-22 04:38:43", "202.46.57.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("54451", "15", "2017-04-22 05:00:23", "217.182.132.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("54452", "10", "2017-04-22 05:00:23", "217.182.132.52", "7");
INSERT INTO `wp_gf_form_view` VALUES("54453", "3", "2017-04-22 05:00:23", "217.182.132.52", "31");
INSERT INTO `wp_gf_form_view` VALUES("54454", "6", "2017-04-22 05:33:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54455", "9", "2017-04-22 05:33:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54456", "8", "2017-04-22 05:33:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("54457", "13", "2017-04-22 05:33:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54458", "3", "2017-04-22 06:04:42", "217.182.132.75", "13");
INSERT INTO `wp_gf_form_view` VALUES("54459", "10", "2017-04-22 06:04:46", "217.182.132.75", "10");
INSERT INTO `wp_gf_form_view` VALUES("54460", "11", "2017-04-22 06:37:21", "86.123.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("54461", "2", "2017-04-22 06:38:33", "86.123.242.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("54462", "3", "2017-04-22 07:05:23", "51.255.65.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("54463", "14", "2017-04-22 08:22:06", "96.50.13.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("54464", "10", "2017-04-22 08:30:17", "37.187.56.76", "45");
INSERT INTO `wp_gf_form_view` VALUES("54465", "3", "2017-04-22 08:30:17", "37.187.56.76", "47");
INSERT INTO `wp_gf_form_view` VALUES("54466", "11", "2017-04-22 08:30:32", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("54467", "2", "2017-04-22 08:30:36", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("54468", "15", "2017-04-22 08:34:27", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("54469", "13", "2017-04-22 08:34:54", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("54470", "3", "2017-04-22 09:11:43", "164.132.161.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("54471", "10", "2017-04-22 10:14:42", "157.55.39.242", "3");
INSERT INTO `wp_gf_form_view` VALUES("54472", "3", "2017-04-22 10:14:43", "157.55.39.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("54473", "2", "2017-04-22 10:22:23", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("54474", "10", "2017-04-22 11:03:50", "40.77.167.74", "8");
INSERT INTO `wp_gf_form_view` VALUES("54475", "3", "2017-04-22 11:03:50", "40.77.167.74", "6");
INSERT INTO `wp_gf_form_view` VALUES("54476", "10", "2017-04-22 13:16:33", "96.50.22.26", "5");
INSERT INTO `wp_gf_form_view` VALUES("54477", "3", "2017-04-22 13:16:34", "96.50.22.26", "28");
INSERT INTO `wp_gf_form_view` VALUES("54478", "6", "2017-04-22 13:37:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54479", "9", "2017-04-22 13:37:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54480", "8", "2017-04-22 13:37:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54481", "13", "2017-04-22 13:37:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54482", "15", "2017-04-22 13:37:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54483", "10", "2017-04-22 14:08:20", "157.55.39.47", "2");
INSERT INTO `wp_gf_form_view` VALUES("54484", "3", "2017-04-22 14:08:21", "157.55.39.47", "2");
INSERT INTO `wp_gf_form_view` VALUES("54485", "10", "2017-04-22 15:13:11", "24.68.154.5", "14");
INSERT INTO `wp_gf_form_view` VALUES("54486", "3", "2017-04-22 15:13:11", "24.68.154.5", "11");
INSERT INTO `wp_gf_form_view` VALUES("54487", "15", "2017-04-22 15:14:07", "24.68.154.5", "3");
INSERT INTO `wp_gf_form_view` VALUES("54488", "10", "2017-04-22 16:39:15", "157.55.39.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("54489", "3", "2017-04-22 16:39:16", "157.55.39.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("54490", "3", "2017-04-22 17:15:06", "202.46.57.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("54491", "10", "2017-04-22 17:15:06", "202.46.57.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("54492", "6", "2017-04-22 17:15:26", "217.182.132.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("54493", "3", "2017-04-22 18:21:46", "202.46.52.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("54494", "10", "2017-04-22 18:21:46", "202.46.52.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("54495", "13", "2017-04-22 19:39:09", "217.182.132.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("54496", "10", "2017-04-22 19:39:10", "217.182.132.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("54497", "3", "2017-04-22 19:39:11", "217.182.132.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("54498", "10", "2017-04-22 20:34:39", "5.9.106.81", "14");
INSERT INTO `wp_gf_form_view` VALUES("54499", "3", "2017-04-22 20:34:39", "5.9.106.81", "9");
INSERT INTO `wp_gf_form_view` VALUES("54500", "14", "2017-04-22 21:11:13", "70.67.181.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("54501", "3", "2017-04-22 21:14:39", "40.77.167.4", "4");
INSERT INTO `wp_gf_form_view` VALUES("54502", "10", "2017-04-22 21:14:39", "40.77.167.4", "3");
INSERT INTO `wp_gf_form_view` VALUES("54503", "10", "2017-04-22 22:15:05", "202.46.57.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("54504", "3", "2017-04-22 22:15:06", "202.46.57.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("54505", "10", "2017-04-22 23:21:46", "202.46.51.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("54506", "3", "2017-04-22 23:21:49", "202.46.51.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("54507", "3", "2017-04-23 00:30:43", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("54508", "10", "2017-04-23 01:10:54", "199.30.25.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("54509", "3", "2017-04-23 01:10:54", "199.30.25.197", "3");
INSERT INTO `wp_gf_form_view` VALUES("54510", "3", "2017-04-23 02:41:02", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("54511", "6", "2017-04-23 02:41:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54512", "9", "2017-04-23 02:41:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54513", "8", "2017-04-23 02:41:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54514", "10", "2017-04-23 02:41:04", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54515", "13", "2017-04-23 02:41:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54516", "15", "2017-04-23 02:41:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54517", "3", "2017-04-23 03:56:12", "202.46.51.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("54518", "14", "2017-04-23 04:16:06", "184.69.4.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("54519", "3", "2017-04-23 04:56:34", "77.75.77.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("54520", "12", "2017-04-23 05:10:03", "164.132.161.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("54521", "3", "2017-04-23 05:10:03", "164.132.161.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("54522", "14", "2017-04-23 06:24:20", "207.6.120.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("54523", "3", "2017-04-23 06:29:39", "66.249.66.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("54524", "3", "2017-04-23 07:45:14", "40.77.167.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("54525", "3", "2017-04-23 08:13:33", "40.77.167.4", "3");
INSERT INTO `wp_gf_form_view` VALUES("54526", "14", "2017-04-23 09:20:38", "176.103.56.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("54527", "6", "2017-04-23 09:29:30", "202.46.50.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54528", "3", "2017-04-23 09:29:31", "202.46.50.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("54529", "3", "2017-04-23 10:10:12", "157.55.39.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("54530", "10", "2017-04-23 10:22:51", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("54531", "3", "2017-04-23 11:02:39", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("54532", "6", "2017-04-23 11:02:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54533", "9", "2017-04-23 11:02:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54534", "8", "2017-04-23 11:02:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54535", "10", "2017-04-23 11:02:40", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54536", "13", "2017-04-23 11:02:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54537", "15", "2017-04-23 11:02:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54538", "2", "2017-04-23 12:32:22", "202.46.51.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("54539", "3", "2017-04-23 14:27:29", "202.46.58.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("54540", "10", "2017-04-23 14:36:41", "66.249.66.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("54541", "10", "2017-04-23 15:06:00", "66.249.66.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("54542", "3", "2017-04-23 15:06:00", "66.249.66.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("54543", "10", "2017-04-23 16:15:08", "24.108.12.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("54544", "3", "2017-04-23 16:21:35", "202.46.54.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("54545", "2", "2017-04-23 16:26:59", "157.55.39.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("54546", "3", "2017-04-23 18:01:39", "202.46.58.95", "33");
INSERT INTO `wp_gf_form_view` VALUES("54547", "6", "2017-04-23 18:17:37", "51.255.65.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("54548", "9", "2017-04-23 18:17:37", "51.255.65.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("54549", "8", "2017-04-23 18:17:38", "51.255.65.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("54550", "10", "2017-04-23 18:17:38", "51.255.65.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("54551", "13", "2017-04-23 18:17:38", "51.255.65.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("54552", "15", "2017-04-23 18:17:39", "51.255.65.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("54553", "3", "2017-04-23 19:00:01", "154.20.29.44", "7");
INSERT INTO `wp_gf_form_view` VALUES("54554", "11", "2017-04-23 19:02:45", "154.20.29.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("54555", "3", "2017-04-23 20:48:54", "209.52.88.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("54556", "3", "2017-04-23 21:27:53", "202.46.54.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("54557", "12", "2017-04-23 22:35:29", "164.132.161.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("54558", "3", "2017-04-23 22:35:30", "164.132.161.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("54559", "3", "2017-04-23 23:23:45", "24.69.116.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("54560", "14", "2017-04-23 23:27:59", "195.22.127.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("54561", "3", "2017-04-24 00:30:52", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("54562", "6", "2017-04-24 00:30:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54563", "9", "2017-04-24 00:30:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54564", "8", "2017-04-24 00:30:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54565", "10", "2017-04-24 00:30:53", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54566", "13", "2017-04-24 00:30:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54567", "15", "2017-04-24 00:30:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54568", "3", "2017-04-24 01:03:06", "157.55.39.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("54569", "3", "2017-04-24 02:09:21", "99.245.77.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("54570", "14", "2017-04-24 02:56:24", "50.98.33.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("54571", "13", "2017-04-24 03:09:25", "217.182.132.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("54572", "3", "2017-04-24 03:09:29", "217.182.132.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("54573", "3", "2017-04-24 04:26:13", "202.46.50.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("54574", "3", "2017-04-24 06:01:21", "24.68.54.29", "5");
INSERT INTO `wp_gf_form_view` VALUES("54575", "3", "2017-04-24 07:12:58", "202.46.56.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("54576", "3", "2017-04-24 08:41:59", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("54577", "6", "2017-04-24 08:42:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54578", "9", "2017-04-24 08:42:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54579", "8", "2017-04-24 08:42:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54580", "10", "2017-04-24 08:42:05", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54581", "13", "2017-04-24 08:42:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54582", "15", "2017-04-24 08:42:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54583", "3", "2017-04-24 11:36:19", "202.46.50.163", "3");
INSERT INTO `wp_gf_form_view` VALUES("54584", "3", "2017-04-24 13:16:15", "202.46.52.154", "3");
INSERT INTO `wp_gf_form_view` VALUES("54585", "3", "2017-04-24 14:56:14", "202.46.51.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("54586", "3", "2017-04-24 16:02:53", "202.46.54.139", "5");
INSERT INTO `wp_gf_form_view` VALUES("54587", "14", "2017-04-24 16:13:26", "70.67.51.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("54588", "3", "2017-04-24 18:17:02", "193.201.225.151", "6");
INSERT INTO `wp_gf_form_view` VALUES("54589", "3", "2017-04-24 19:23:23", "202.46.56.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("54590", "3", "2017-04-24 20:08:48", "207.46.13.35", "7");
INSERT INTO `wp_gf_form_view` VALUES("54591", "10", "2017-04-24 20:33:40", "40.77.167.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("54592", "3", "2017-04-24 21:03:18", "202.46.50.161", "5");
INSERT INTO `wp_gf_form_view` VALUES("54593", "10", "2017-04-24 21:43:01", "217.182.132.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("54594", "3", "2017-04-24 22:14:47", "70.67.51.254", "29");
INSERT INTO `wp_gf_form_view` VALUES("54595", "6", "2017-04-24 22:39:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54596", "9", "2017-04-24 22:39:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54597", "8", "2017-04-24 22:39:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54598", "10", "2017-04-24 22:39:31", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54599", "13", "2017-04-24 22:39:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54600", "15", "2017-04-24 22:39:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54601", "3", "2017-04-24 23:07:56", "51.255.65.39", "9");
INSERT INTO `wp_gf_form_view` VALUES("54602", "10", "2017-04-24 23:13:48", "192.40.235.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("54603", "3", "2017-04-25 00:26:28", "52.201.153.178", "8");
INSERT INTO `wp_gf_form_view` VALUES("54604", "14", "2017-04-25 01:12:02", "155.133.43.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("54605", "3", "2017-04-25 01:40:22", "202.46.58.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("54606", "3", "2017-04-25 02:46:24", "23.253.17.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("54607", "3", "2017-04-25 03:32:23", "77.75.76.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("54608", "3", "2017-04-25 04:13:11", "157.55.39.206", "10");
INSERT INTO `wp_gf_form_view` VALUES("54609", "10", "2017-04-25 04:15:02", "157.55.39.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("54610", "3", "2017-04-25 05:45:46", "202.46.58.59", "3");
INSERT INTO `wp_gf_form_view` VALUES("54611", "3", "2017-04-25 06:12:14", "40.77.167.119", "30");
INSERT INTO `wp_gf_form_view` VALUES("54612", "5", "2017-04-25 06:35:59", "77.75.77.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("54613", "6", "2017-04-25 06:56:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54614", "9", "2017-04-25 06:56:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54615", "8", "2017-04-25 06:56:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54616", "10", "2017-04-25 06:56:42", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54617", "13", "2017-04-25 06:56:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54618", "15", "2017-04-25 06:56:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54619", "3", "2017-04-25 07:17:16", "157.55.39.153", "5");
INSERT INTO `wp_gf_form_view` VALUES("54620", "5", "2017-04-25 07:28:33", "77.75.78.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("54621", "3", "2017-04-25 08:24:54", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("54622", "3", "2017-04-25 09:00:10", "202.46.48.134", "377");
INSERT INTO `wp_gf_form_view` VALUES("54623", "2", "2017-04-25 09:34:27", "80.248.225.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("54624", "11", "2017-04-25 09:34:39", "80.248.225.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("54625", "14", "2017-04-25 09:34:39", "80.248.225.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("54626", "6", "2017-04-25 09:35:40", "80.248.225.157", "8");
INSERT INTO `wp_gf_form_view` VALUES("54627", "9", "2017-04-25 09:35:41", "80.248.225.157", "8");
INSERT INTO `wp_gf_form_view` VALUES("54628", "8", "2017-04-25 09:35:41", "80.248.225.157", "12");
INSERT INTO `wp_gf_form_view` VALUES("54629", "10", "2017-04-25 09:35:42", "80.248.225.157", "32");
INSERT INTO `wp_gf_form_view` VALUES("54630", "13", "2017-04-25 09:35:42", "80.248.225.157", "14");
INSERT INTO `wp_gf_form_view` VALUES("54631", "15", "2017-04-25 09:35:43", "80.248.225.157", "9");
INSERT INTO `wp_gf_form_view` VALUES("54632", "3", "2017-04-25 12:19:43", "202.46.56.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("54633", "3", "2017-04-25 13:11:23", "207.46.13.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("54634", "11", "2017-04-25 14:35:48", "107.22.94.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("54635", "3", "2017-04-25 14:35:53", "107.22.94.85", "11");
INSERT INTO `wp_gf_form_view` VALUES("54636", "2", "2017-04-25 14:35:54", "107.22.94.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("54637", "3", "2017-04-25 15:05:18", "202.46.49.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("54638", "3", "2017-04-25 16:11:59", "202.46.49.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("54639", "3", "2017-04-25 18:05:41", "191.96.43.11", "13");
INSERT INTO `wp_gf_form_view` VALUES("54640", "14", "2017-04-25 18:05:58", "191.96.43.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54641", "11", "2017-04-25 18:06:07", "191.96.43.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54642", "3", "2017-04-25 19:05:07", "24.69.169.166", "8");
INSERT INTO `wp_gf_form_view` VALUES("54643", "14", "2017-04-25 20:18:46", "64.180.191.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("54644", "3", "2017-04-25 20:21:58", "164.132.161.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("54645", "3", "2017-04-25 21:15:38", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("54646", "6", "2017-04-25 21:15:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54647", "9", "2017-04-25 21:15:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54648", "8", "2017-04-25 21:15:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54649", "10", "2017-04-25 21:15:43", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54650", "13", "2017-04-25 21:15:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54651", "15", "2017-04-25 21:15:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54652", "11", "2017-04-25 21:52:21", "194.187.170.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("54653", "3", "2017-04-25 22:02:49", "154.5.210.206", "3");
INSERT INTO `wp_gf_form_view` VALUES("54654", "3", "2017-04-25 23:25:36", "202.46.55.132", "8");
INSERT INTO `wp_gf_form_view` VALUES("54655", "7", "2017-04-25 23:34:39", "185.191.204.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54656", "10", "2017-04-25 23:43:46", "157.55.39.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("54657", "3", "2017-04-26 00:24:13", "46.229.168.67", "34");
INSERT INTO `wp_gf_form_view` VALUES("54658", "3", "2017-04-26 00:24:13", "46.229.168.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("54659", "2", "2017-04-26 00:24:17", "46.229.168.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("54660", "15", "2017-04-26 00:25:25", "46.229.168.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("54661", "3", "2017-04-26 01:05:29", "202.46.58.97", "2");
INSERT INTO `wp_gf_form_view` VALUES("54662", "10", "2017-04-26 01:36:54", "24.108.12.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("54663", "14", "2017-04-26 01:51:41", "209.52.88.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("54664", "3", "2017-04-26 02:53:09", "157.55.39.223", "3");
INSERT INTO `wp_gf_form_view` VALUES("54665", "3", "2017-04-26 03:35:08", "157.55.39.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54666", "3", "2017-04-26 04:35:18", "202.46.54.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("54667", "14", "2017-04-26 04:56:29", "24.68.116.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("54668", "3", "2017-04-26 05:06:50", "194.187.170.103", "6");
INSERT INTO `wp_gf_form_view` VALUES("54669", "10", "2017-04-26 05:52:50", "217.182.132.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("54670", "3", "2017-04-26 06:01:18", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("54671", "6", "2017-04-26 06:01:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54672", "9", "2017-04-26 06:01:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54673", "8", "2017-04-26 06:01:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54674", "10", "2017-04-26 06:01:21", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54675", "13", "2017-04-26 06:01:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54676", "15", "2017-04-26 06:01:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54677", "3", "2017-04-26 08:13:58", "202.46.51.157", "5");
INSERT INTO `wp_gf_form_view` VALUES("54678", "3", "2017-04-26 09:08:41", "52.5.220.220", "10");
INSERT INTO `wp_gf_form_view` VALUES("54679", "3", "2017-04-26 10:28:46", "62.138.8.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("54680", "3", "2017-04-26 11:52:34", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("54681", "3", "2017-04-26 12:09:40", "202.46.57.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("54682", "3", "2017-04-26 13:21:49", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("54683", "14", "2017-04-26 14:25:53", "207.46.13.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("54684", "3", "2017-04-26 14:26:00", "207.46.13.44", "12");
INSERT INTO `wp_gf_form_view` VALUES("54685", "3", "2017-04-26 15:38:35", "77.75.77.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("54686", "3", "2017-04-26 16:55:48", "157.55.39.222", "2");
INSERT INTO `wp_gf_form_view` VALUES("54687", "3", "2017-04-26 17:51:01", "77.75.78.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("54688", "3", "2017-04-26 18:20:37", "202.46.58.139", "197");
INSERT INTO `wp_gf_form_view` VALUES("54689", "2", "2017-04-26 18:34:36", "72.79.54.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("54690", "7", "2017-04-26 18:35:19", "72.79.54.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("54691", "14", "2017-04-26 18:35:38", "72.79.54.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("54692", "11", "2017-04-26 18:35:45", "72.79.54.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("54693", "5", "2017-04-26 18:36:06", "72.79.54.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("54694", "6", "2017-04-26 18:40:35", "72.79.54.220", "4");
INSERT INTO `wp_gf_form_view` VALUES("54695", "9", "2017-04-26 18:40:35", "72.79.54.220", "3");
INSERT INTO `wp_gf_form_view` VALUES("54696", "8", "2017-04-26 18:40:35", "72.79.54.220", "4");
INSERT INTO `wp_gf_form_view` VALUES("54697", "10", "2017-04-26 18:40:36", "72.79.54.220", "11");
INSERT INTO `wp_gf_form_view` VALUES("54698", "13", "2017-04-26 18:40:36", "72.79.54.220", "4");
INSERT INTO `wp_gf_form_view` VALUES("54699", "15", "2017-04-26 18:40:37", "72.79.54.220", "4");
INSERT INTO `wp_gf_form_view` VALUES("54700", "3", "2017-04-26 19:30:48", "157.55.39.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54701", "3", "2017-04-26 20:05:45", "24.68.186.26", "32");
INSERT INTO `wp_gf_form_view` VALUES("54702", "6", "2017-04-26 20:34:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54703", "9", "2017-04-26 20:34:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54704", "8", "2017-04-26 20:34:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54705", "10", "2017-04-26 20:34:33", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54706", "13", "2017-04-26 20:34:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54707", "15", "2017-04-26 20:34:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54708", "3", "2017-04-26 21:16:33", "142.32.114.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("54709", "3", "2017-04-26 22:12:11", "164.132.161.5", "5");
INSERT INTO `wp_gf_form_view` VALUES("54710", "13", "2017-04-26 22:47:19", "202.46.52.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("54711", "3", "2017-04-27 00:34:38", "104.154.58.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("54712", "3", "2017-04-27 02:52:31", "40.77.167.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("54713", "14", "2017-04-27 02:54:02", "37.157.216.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("54714", "3", "2017-04-27 03:10:14", "66.249.79.104", "6");
INSERT INTO `wp_gf_form_view` VALUES("54715", "9", "2017-04-27 03:15:08", "207.46.13.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("54716", "10", "2017-04-27 03:35:33", "24.108.12.82", "4");
INSERT INTO `wp_gf_form_view` VALUES("54717", "2", "2017-04-27 04:10:47", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("54718", "3", "2017-04-27 05:19:35", "202.46.49.113", "28");
INSERT INTO `wp_gf_form_view` VALUES("54719", "6", "2017-04-27 05:27:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54720", "9", "2017-04-27 05:27:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54721", "8", "2017-04-27 05:27:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54722", "10", "2017-04-27 05:27:34", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54723", "13", "2017-04-27 05:27:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54724", "15", "2017-04-27 05:27:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54725", "3", "2017-04-27 06:55:03", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("54726", "5", "2017-04-27 07:20:51", "202.46.52.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("54727", "3", "2017-04-27 07:20:54", "202.46.52.78", "2");
INSERT INTO `wp_gf_form_view` VALUES("54728", "3", "2017-04-27 08:01:23", "198.204.235.26", "6");
INSERT INTO `wp_gf_form_view` VALUES("54729", "14", "2017-04-27 08:55:53", "185.191.204.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54730", "3", "2017-04-27 10:30:34", "202.46.52.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("54731", "10", "2017-04-27 11:03:51", "202.46.58.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("54732", "3", "2017-04-27 11:03:52", "202.46.58.189", "14");
INSERT INTO `wp_gf_form_view` VALUES("54733", "11", "2017-04-27 11:07:28", "67.213.90.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("54734", "2", "2017-04-27 11:07:37", "67.213.90.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("54735", "3", "2017-04-27 12:16:56", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54736", "3", "2017-04-27 13:02:20", "202.46.53.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("54737", "3", "2017-04-27 14:33:32", "51.255.71.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("54738", "3", "2017-04-27 15:16:21", "202.46.55.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("54739", "3", "2017-04-27 16:23:05", "202.46.58.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("54740", "3", "2017-04-27 18:03:04", "202.46.52.149", "10");
INSERT INTO `wp_gf_form_view` VALUES("54741", "10", "2017-04-27 18:29:54", "164.132.161.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("54742", "11", "2017-04-27 18:41:38", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("54743", "3", "2017-04-27 19:45:45", "157.55.39.129", "28");
INSERT INTO `wp_gf_form_view` VALUES("54744", "6", "2017-04-27 19:58:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54745", "9", "2017-04-27 19:58:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54746", "8", "2017-04-27 19:58:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54747", "10", "2017-04-27 19:58:29", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54748", "13", "2017-04-27 19:58:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54749", "15", "2017-04-27 19:58:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54750", "3", "2017-04-27 20:04:33", "202.46.48.14", "3");
INSERT INTO `wp_gf_form_view` VALUES("54751", "3", "2017-04-27 21:11:21", "202.46.52.67", "7");
INSERT INTO `wp_gf_form_view` VALUES("54752", "14", "2017-04-27 22:01:15", "75.154.237.159", "3");
INSERT INTO `wp_gf_form_view` VALUES("54753", "3", "2017-04-27 22:04:03", "24.68.136.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("54754", "3", "2017-04-27 23:35:35", "202.46.57.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("54755", "10", "2017-04-28 00:19:36", "157.55.39.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("54756", "3", "2017-04-28 00:19:37", "157.55.39.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("54757", "3", "2017-04-28 01:17:21", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("54758", "3", "2017-04-28 02:19:17", "104.236.209.134", "275");
INSERT INTO `wp_gf_form_view` VALUES("54759", "14", "2017-04-28 02:21:02", "104.236.209.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("54760", "11", "2017-04-28 02:21:08", "104.236.209.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("54761", "10", "2017-04-28 02:22:06", "202.46.56.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("54762", "6", "2017-04-28 02:27:27", "104.236.209.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("54763", "9", "2017-04-28 02:38:38", "104.236.209.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("54764", "15", "2017-04-28 02:46:58", "104.236.209.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("54765", "3", "2017-04-28 03:00:03", "104.236.209.134", "283");
INSERT INTO `wp_gf_form_view` VALUES("54766", "10", "2017-04-28 03:02:07", "104.236.209.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("54767", "2", "2017-04-28 03:28:18", "104.236.209.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("54768", "13", "2017-04-28 03:40:54", "104.236.209.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("54769", "3", "2017-04-28 04:02:06", "202.46.55.66", "28");
INSERT INTO `wp_gf_form_view` VALUES("54770", "10", "2017-04-28 04:50:08", "217.182.132.22", "4");
INSERT INTO `wp_gf_form_view` VALUES("54771", "6", "2017-04-28 04:53:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54772", "9", "2017-04-28 04:53:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54773", "8", "2017-04-28 04:53:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54774", "13", "2017-04-28 04:53:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54775", "15", "2017-04-28 04:53:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54776", "3", "2017-04-28 06:01:27", "75.155.144.41", "4");
INSERT INTO `wp_gf_form_view` VALUES("54777", "3", "2017-04-28 07:15:38", "24.108.186.115", "3");
INSERT INTO `wp_gf_form_view` VALUES("54778", "3", "2017-04-28 08:25:18", "157.55.39.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("54779", "3", "2017-04-28 09:01:19", "202.46.48.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("54780", "6", "2017-04-28 09:34:41", "202.46.57.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("54781", "3", "2017-04-28 10:50:01", "51.255.65.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("54782", "3", "2017-04-28 11:14:13", "202.46.54.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("54783", "2", "2017-04-28 11:54:18", "54.202.96.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("54784", "3", "2017-04-28 12:44:26", "103.207.37.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("54785", "10", "2017-04-28 12:55:30", "157.55.39.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("54786", "3", "2017-04-28 13:22:30", "157.55.39.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("54787", "3", "2017-04-28 14:00:54", "202.46.53.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("54788", "14", "2017-04-28 16:22:57", "24.108.4.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("54789", "3", "2017-04-28 17:13:50", "40.77.167.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("54790", "14", "2017-04-28 17:43:09", "194.187.170.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("54791", "3", "2017-04-28 18:17:26", "194.187.170.140", "4");
INSERT INTO `wp_gf_form_view` VALUES("54792", "11", "2017-04-28 19:01:16", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54793", "3", "2017-04-28 19:02:01", "217.182.132.17", "8");
INSERT INTO `wp_gf_form_view` VALUES("54794", "14", "2017-04-28 19:08:15", "24.108.220.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("54795", "15", "2017-04-28 19:19:35", "40.77.167.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("54796", "3", "2017-04-28 20:08:57", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("54797", "6", "2017-04-28 20:08:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54798", "9", "2017-04-28 20:09:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54799", "8", "2017-04-28 20:09:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54800", "10", "2017-04-28 20:09:00", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54801", "13", "2017-04-28 20:09:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54802", "15", "2017-04-28 20:09:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54803", "3", "2017-04-28 21:03:02", "51.255.65.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("54804", "15", "2017-04-28 21:39:06", "202.46.55.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("54805", "8", "2017-04-28 21:49:02", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54806", "13", "2017-04-28 21:49:03", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54807", "11", "2017-04-28 22:27:11", "145.53.113.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("54808", "3", "2017-04-28 22:27:14", "145.53.113.22", "9");
INSERT INTO `wp_gf_form_view` VALUES("54809", "2", "2017-04-28 22:27:50", "145.53.113.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("54810", "3", "2017-04-28 23:38:40", "154.5.210.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("54811", "3", "2017-04-29 00:18:40", "217.182.132.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("54812", "10", "2017-04-29 00:51:30", "24.108.12.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("54813", "5", "2017-04-29 01:18:15", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("54814", "3", "2017-04-29 01:18:15", "77.75.77.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("54815", "14", "2017-04-29 01:19:00", "52.2.10.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("54816", "14", "2017-04-29 02:00:48", "64.180.191.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("54817", "3", "2017-04-29 02:10:12", "51.255.65.49", "4");
INSERT INTO `wp_gf_form_view` VALUES("54818", "3", "2017-04-29 03:57:33", "202.46.58.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("54819", "10", "2017-04-29 04:21:48", "40.77.167.0", "4");
INSERT INTO `wp_gf_form_view` VALUES("54820", "3", "2017-04-29 04:30:52", "202.46.56.189", "27");
INSERT INTO `wp_gf_form_view` VALUES("54821", "6", "2017-04-29 04:45:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54822", "9", "2017-04-29 04:45:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54823", "8", "2017-04-29 04:45:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54824", "13", "2017-04-29 04:45:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54825", "15", "2017-04-29 04:45:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54826", "3", "2017-04-29 05:00:31", "51.255.71.98", "4");
INSERT INTO `wp_gf_form_view` VALUES("54827", "10", "2017-04-29 05:47:50", "24.108.12.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("54828", "3", "2017-04-29 06:01:31", "66.249.79.144", "21");
INSERT INTO `wp_gf_form_view` VALUES("54829", "8", "2017-04-29 06:50:43", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54830", "10", "2017-04-29 06:50:44", "68.180.230.222", "3");
INSERT INTO `wp_gf_form_view` VALUES("54831", "13", "2017-04-29 06:50:44", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54832", "15", "2017-04-29 06:50:45", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54833", "3", "2017-04-29 07:08:05", "220.181.108.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("54834", "14", "2017-04-29 07:37:54", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54835", "3", "2017-04-29 08:07:30", "194.187.170.141", "31");
INSERT INTO `wp_gf_form_view` VALUES("54836", "6", "2017-04-29 08:29:50", "207.46.13.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("54837", "9", "2017-04-29 08:29:50", "207.46.13.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("54838", "8", "2017-04-29 08:29:51", "207.46.13.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("54839", "10", "2017-04-29 08:29:51", "207.46.13.121", "4");
INSERT INTO `wp_gf_form_view` VALUES("54840", "13", "2017-04-29 08:29:51", "207.46.13.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("54841", "15", "2017-04-29 08:29:52", "207.46.13.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("54842", "3", "2017-04-29 09:02:22", "194.187.170.141", "7");
INSERT INTO `wp_gf_form_view` VALUES("54843", "3", "2017-04-29 10:17:27", "217.182.132.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("54844", "8", "2017-04-29 12:09:22", "51.255.71.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("54845", "3", "2017-04-29 12:09:24", "51.255.71.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("54846", "3", "2017-04-29 13:19:11", "202.46.52.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("54847", "3", "2017-04-29 14:59:13", "202.46.57.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("54848", "3", "2017-04-29 15:32:32", "202.46.53.126", "3");
INSERT INTO `wp_gf_form_view` VALUES("54849", "3", "2017-04-29 16:05:51", "202.46.50.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("54850", "12", "2017-04-29 16:39:11", "202.46.49.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("54851", "3", "2017-04-29 17:12:30", "202.46.52.68", "19");
INSERT INTO `wp_gf_form_view` VALUES("54852", "10", "2017-04-29 17:30:48", "68.180.230.222", "3");
INSERT INTO `wp_gf_form_view` VALUES("54853", "13", "2017-04-29 17:30:48", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54854", "15", "2017-04-29 17:30:48", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54855", "3", "2017-04-29 18:00:07", "24.68.122.81", "9");
INSERT INTO `wp_gf_form_view` VALUES("54856", "3", "2017-04-29 19:11:44", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("54857", "6", "2017-04-29 19:11:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54858", "9", "2017-04-29 19:11:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54859", "8", "2017-04-29 19:11:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54860", "10", "2017-04-29 19:11:46", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54861", "13", "2017-04-29 19:11:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54862", "15", "2017-04-29 19:11:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54863", "14", "2017-04-29 20:05:19", "94.15.125.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("54864", "3", "2017-04-29 20:32:34", "202.46.56.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("54865", "3", "2017-04-29 21:21:10", "207.194.133.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("54866", "14", "2017-04-29 21:31:03", "24.108.186.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("54867", "9", "2017-04-29 22:03:54", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54868", "3", "2017-04-29 22:15:16", "24.69.177.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("54869", "10", "2017-04-29 22:35:31", "194.187.170.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("54870", "3", "2017-04-29 23:01:44", "194.187.170.101", "13");
INSERT INTO `wp_gf_form_view` VALUES("54871", "10", "2017-04-29 23:44:03", "24.108.12.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("54872", "3", "2017-04-30 00:05:03", "202.46.52.74", "11");
INSERT INTO `wp_gf_form_view` VALUES("54873", "10", "2017-04-30 00:09:56", "194.187.170.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("54874", "13", "2017-04-30 00:54:40", "194.187.170.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("54875", "12", "2017-04-30 01:22:14", "194.187.170.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("54876", "3", "2017-04-30 01:22:14", "194.187.170.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("54877", "3", "2017-04-30 02:28:09", "202.46.56.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("54878", "3", "2017-04-30 03:01:27", "202.46.57.28", "3");
INSERT INTO `wp_gf_form_view` VALUES("54879", "5", "2017-04-30 03:52:36", "207.46.13.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("54880", "3", "2017-04-30 04:21:57", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("54881", "6", "2017-04-30 04:21:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54882", "9", "2017-04-30 04:21:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54883", "8", "2017-04-30 04:21:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54884", "10", "2017-04-30 04:21:58", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54885", "13", "2017-04-30 04:21:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54886", "15", "2017-04-30 04:21:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54887", "11", "2017-04-30 05:01:43", "77.75.76.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("54888", "3", "2017-04-30 05:39:49", "104.154.58.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("54889", "3", "2017-04-30 07:01:21", "194.187.170.131", "10");
INSERT INTO `wp_gf_form_view` VALUES("54890", "14", "2017-04-30 07:24:58", "191.101.106.198", "3");
INSERT INTO `wp_gf_form_view` VALUES("54891", "3", "2017-04-30 08:08:49", "194.187.170.131", "5");
INSERT INTO `wp_gf_form_view` VALUES("54892", "3", "2017-04-30 09:02:05", "77.75.77.119", "3");
INSERT INTO `wp_gf_form_view` VALUES("54893", "2", "2017-04-30 10:00:17", "64.113.32.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("54894", "3", "2017-04-30 10:37:57", "202.46.51.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("54895", "3", "2017-04-30 11:11:15", "202.46.51.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("54896", "3", "2017-04-30 12:06:34", "51.255.71.100", "8");
INSERT INTO `wp_gf_form_view` VALUES("54897", "2", "2017-04-30 12:51:33", "92.42.30.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("54898", "10", "2017-04-30 12:58:03", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("54899", "3", "2017-04-30 13:23:12", "194.187.170.105", "51");
INSERT INTO `wp_gf_form_view` VALUES("54900", "5", "2017-04-30 13:38:30", "40.77.167.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("54901", "8", "2017-04-30 13:38:33", "40.77.167.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("54902", "9", "2017-04-30 13:38:47", "40.77.167.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("54903", "10", "2017-04-30 13:38:52", "207.46.13.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("54904", "5", "2017-04-30 14:18:07", "77.75.78.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("54905", "3", "2017-04-30 14:18:09", "77.75.78.165", "24");
INSERT INTO `wp_gf_form_view` VALUES("54906", "3", "2017-04-30 15:15:38", "202.46.48.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("54907", "2", "2017-04-30 15:28:45", "92.42.30.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("54908", "3", "2017-04-30 16:55:38", "202.46.54.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("54909", "3", "2017-04-30 17:13:42", "40.77.167.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("54910", "3", "2017-04-30 18:02:17", "202.46.51.83", "6");
INSERT INTO `wp_gf_form_view` VALUES("54911", "3", "2017-04-30 19:40:34", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("54912", "6", "2017-04-30 19:40:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54913", "9", "2017-04-30 19:40:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54914", "8", "2017-04-30 19:40:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54915", "10", "2017-04-30 19:40:37", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54916", "13", "2017-04-30 19:40:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54917", "15", "2017-04-30 19:40:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54918", "14", "2017-04-30 20:48:00", "154.5.182.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("54919", "3", "2017-04-30 20:59:15", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("54920", "3", "2017-04-30 21:04:55", "207.46.13.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("54921", "3", "2017-04-30 22:02:29", "77.75.78.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("54922", "5", "2017-04-30 22:20:44", "194.187.170.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("54923", "14", "2017-04-30 23:15:49", "154.20.197.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("54924", "3", "2017-04-30 23:20:54", "40.77.167.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("54925", "3", "2017-05-01 00:09:59", "164.132.161.25", "5");
INSERT INTO `wp_gf_form_view` VALUES("54926", "2", "2017-05-01 00:43:03", "54.167.23.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("54927", "3", "2017-05-01 01:06:43", "217.182.132.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("54928", "10", "2017-05-01 01:36:42", "199.16.157.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("54929", "3", "2017-05-01 02:40:43", "202.46.55.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("54930", "3", "2017-05-01 03:11:44", "51.255.71.116", "6");
INSERT INTO `wp_gf_form_view` VALUES("54931", "3", "2017-05-01 04:20:46", "202.46.50.132", "3");
INSERT INTO `wp_gf_form_view` VALUES("54932", "3", "2017-05-01 05:03:05", "217.69.133.233", "42");
INSERT INTO `wp_gf_form_view` VALUES("54933", "6", "2017-05-01 05:11:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54934", "9", "2017-05-01 05:11:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54935", "8", "2017-05-01 05:11:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54936", "10", "2017-05-01 05:11:51", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54937", "13", "2017-05-01 05:11:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54938", "15", "2017-05-01 05:11:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54939", "3", "2017-05-01 06:31:50", "202.46.52.103", "4");
INSERT INTO `wp_gf_form_view` VALUES("54940", "6", "2017-05-01 07:05:10", "202.46.50.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("54941", "3", "2017-05-01 07:05:10", "202.46.50.162", "54");
INSERT INTO `wp_gf_form_view` VALUES("54942", "9", "2017-05-01 07:41:26", "80.117.199.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("54943", "8", "2017-05-01 07:41:26", "80.117.199.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("54944", "10", "2017-05-01 07:41:26", "80.117.199.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("54945", "13", "2017-05-01 07:41:27", "80.117.199.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("54946", "15", "2017-05-01 07:41:27", "80.117.199.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("54947", "3", "2017-05-01 08:11:35", "217.182.132.174", "7");
INSERT INTO `wp_gf_form_view` VALUES("54948", "2", "2017-05-01 09:00:46", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("54949", "14", "2017-05-01 09:03:05", "77.75.78.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("54950", "3", "2017-05-01 09:28:56", "51.255.65.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("54951", "3", "2017-05-01 10:01:43", "217.182.132.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("54952", "10", "2017-05-01 10:50:28", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("54953", "3", "2017-05-01 11:19:19", "217.182.132.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("54954", "3", "2017-05-01 12:22:01", "202.46.58.139", "5");
INSERT INTO `wp_gf_form_view` VALUES("54955", "5", "2017-05-01 12:59:47", "217.69.133.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("54956", "15", "2017-05-01 13:08:39", "104.154.58.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("54957", "3", "2017-05-01 13:08:39", "104.154.58.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("54958", "10", "2017-05-01 13:50:56", "208.181.116.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("54959", "3", "2017-05-01 14:35:09", "217.69.133.233", "5");
INSERT INTO `wp_gf_form_view` VALUES("54960", "10", "2017-05-01 14:54:33", "51.255.65.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("54961", "3", "2017-05-01 15:24:11", "202.46.53.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("54962", "12", "2017-05-01 16:43:03", "40.77.167.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("54963", "3", "2017-05-01 16:43:05", "40.77.167.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("54964", "6", "2017-05-01 17:04:15", "202.46.58.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("54965", "3", "2017-05-01 17:04:16", "202.46.58.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("54966", "15", "2017-05-01 18:00:04", "104.154.58.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("54967", "3", "2017-05-01 18:06:12", "77.75.79.101", "15");
INSERT INTO `wp_gf_form_view` VALUES("54968", "10", "2017-05-01 18:11:35", "40.77.167.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("54969", "3", "2017-05-01 19:21:40", "217.69.133.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("54970", "3", "2017-05-01 20:33:36", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("54971", "6", "2017-05-01 20:33:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54972", "9", "2017-05-01 20:33:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54973", "8", "2017-05-01 20:33:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54974", "10", "2017-05-01 20:33:38", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54975", "13", "2017-05-01 20:33:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54976", "15", "2017-05-01 20:33:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54977", "3", "2017-05-01 21:06:47", "194.187.170.141", "7");
INSERT INTO `wp_gf_form_view` VALUES("54978", "7", "2017-05-01 22:14:21", "202.46.58.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("54979", "3", "2017-05-01 22:14:22", "202.46.58.205", "9");
INSERT INTO `wp_gf_form_view` VALUES("54980", "2", "2017-05-01 22:33:22", "217.69.133.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("54981", "11", "2017-05-01 22:59:42", "138.197.73.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("54982", "2", "2017-05-01 23:10:30", "138.197.64.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("54983", "3", "2017-05-01 23:10:30", "138.197.64.76", "14");
INSERT INTO `wp_gf_form_view` VALUES("54984", "11", "2017-05-01 23:10:33", "138.197.64.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("54985", "3", "2017-05-02 01:05:54", "202.46.53.112", "7");
INSERT INTO `wp_gf_form_view` VALUES("54986", "14", "2017-05-02 02:35:57", "157.55.39.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("54987", "11", "2017-05-02 02:36:03", "157.55.39.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("54988", "3", "2017-05-02 03:18:52", "217.69.133.232", "3");
INSERT INTO `wp_gf_form_view` VALUES("54989", "3", "2017-05-02 04:53:00", "164.132.161.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("54990", "12", "2017-05-02 05:35:02", "40.77.167.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("54991", "3", "2017-05-02 05:35:05", "40.77.167.76", "27");
INSERT INTO `wp_gf_form_view` VALUES("54992", "6", "2017-05-02 05:35:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54993", "9", "2017-05-02 05:35:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54994", "8", "2017-05-02 05:35:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54995", "10", "2017-05-02 05:35:49", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("54996", "13", "2017-05-02 05:35:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54997", "15", "2017-05-02 05:35:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("54998", "14", "2017-05-02 05:53:55", "157.55.39.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("54999", "3", "2017-05-02 06:19:46", "51.255.71.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("55000", "3", "2017-05-02 07:57:41", "202.46.51.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("55001", "3", "2017-05-02 09:36:25", "202.46.57.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("55002", "3", "2017-05-02 10:16:42", "217.182.132.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("55003", "13", "2017-05-02 10:59:49", "51.255.65.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("55004", "3", "2017-05-02 11:18:47", "202.46.51.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("55005", "3", "2017-05-02 12:02:08", "77.75.78.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("55006", "3", "2017-05-02 13:04:57", "40.77.167.76", "8");
INSERT INTO `wp_gf_form_view` VALUES("55007", "12", "2017-05-02 13:39:17", "51.255.71.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("55008", "3", "2017-05-02 14:12:59", "217.182.132.183", "13");
INSERT INTO `wp_gf_form_view` VALUES("55009", "2", "2017-05-02 14:37:19", "174.127.133.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("55010", "3", "2017-05-02 15:02:52", "174.127.133.68", "14");
INSERT INTO `wp_gf_form_view` VALUES("55011", "12", "2017-05-02 15:15:54", "40.77.167.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("55012", "14", "2017-05-02 15:17:20", "174.127.133.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("55013", "3", "2017-05-02 16:09:04", "68.180.230.222", "7");
INSERT INTO `wp_gf_form_view` VALUES("55014", "10", "2017-05-02 16:09:05", "68.180.230.222", "2");
INSERT INTO `wp_gf_form_view` VALUES("55015", "13", "2017-05-02 16:09:05", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("55016", "15", "2017-05-02 16:09:05", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("55017", "3", "2017-05-02 17:23:31", "188.243.168.99", "24");
INSERT INTO `wp_gf_form_view` VALUES("55018", "10", "2017-05-02 17:23:31", "188.243.168.99", "6");
INSERT INTO `wp_gf_form_view` VALUES("55019", "13", "2017-05-02 17:23:32", "188.243.168.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("55020", "15", "2017-05-02 17:23:32", "188.243.168.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("55021", "3", "2017-05-02 18:01:37", "40.77.167.122", "27");
INSERT INTO `wp_gf_form_view` VALUES("55022", "8", "2017-05-02 18:01:49", "40.77.167.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("55023", "9", "2017-05-02 18:01:53", "40.77.167.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("55024", "5", "2017-05-02 18:11:16", "40.77.167.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("55025", "10", "2017-05-02 18:28:16", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("55026", "3", "2017-05-02 19:06:58", "40.77.167.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("55027", "10", "2017-05-02 20:36:26", "164.132.161.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("55028", "3", "2017-05-02 20:36:28", "164.132.161.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("55029", "3", "2017-05-02 21:25:47", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("55030", "6", "2017-05-02 21:25:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55031", "9", "2017-05-02 21:25:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55032", "8", "2017-05-02 21:25:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55033", "10", "2017-05-02 21:26:01", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("55034", "13", "2017-05-02 21:26:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55035", "15", "2017-05-02 21:26:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55036", "14", "2017-05-02 21:45:03", "216.240.124.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("55037", "11", "2017-05-02 22:05:29", "40.77.167.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("55038", "3", "2017-05-02 22:29:45", "174.129.185.174", "5");
INSERT INTO `wp_gf_form_view` VALUES("55039", "2", "2017-05-02 22:29:54", "174.129.185.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("55040", "3", "2017-05-02 23:06:38", "202.46.48.12", "4");
INSERT INTO `wp_gf_form_view` VALUES("55041", "3", "2017-05-03 00:17:55", "207.46.13.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("55042", "14", "2017-05-03 00:58:31", "99.250.122.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("55043", "3", "2017-05-03 01:24:56", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("55044", "3", "2017-05-03 02:05:52", "40.77.167.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("55045", "14", "2017-05-03 02:30:36", "108.180.243.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("55046", "3", "2017-05-03 03:17:12", "51.255.65.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("55047", "3", "2017-05-03 04:17:50", "194.187.170.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("55048", "5", "2017-05-03 04:28:09", "51.255.65.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("55049", "3", "2017-05-03 05:26:52", "202.46.53.54", "4");
INSERT INTO `wp_gf_form_view` VALUES("55050", "3", "2017-05-03 06:15:19", "77.75.79.17", "29");
INSERT INTO `wp_gf_form_view` VALUES("55051", "6", "2017-05-03 06:30:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55052", "9", "2017-05-03 06:30:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55053", "8", "2017-05-03 06:30:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55054", "10", "2017-05-03 06:30:28", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("55055", "13", "2017-05-03 06:30:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55056", "15", "2017-05-03 06:30:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("55057", "3", "2017-05-03 07:18:34", "77.75.76.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("55058", "3", "2017-05-03 08:35:41", "202.46.49.146", "5");
INSERT INTO `wp_gf_form_view` VALUES("55059", "3", "2017-05-03 09:03:27", "207.46.13.185", "10");
INSERT INTO `wp_gf_form_view` VALUES("55060", "14", "2017-05-03 09:20:42", "65.254.33.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("55061", "11", "2017-05-03 09:20:53", "65.254.33.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("55062", "3", "2017-05-03 10:15:42", "202.46.58.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("55063", "3", "2017-05-03 11:14:14", "206.47.38.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("55064", "3", "2017-05-03 12:46:00", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("55065", "10", "2017-05-03 12:46:04", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("55066", "3", "2017-05-03 13:01:03", "202.46.56.16", "10");
INSERT INTO `wp_gf_form_view` VALUES("55067", "11", "2017-05-03 13:02:51", "45.55.50.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("55068", "2", "2017-05-03 13:02:52", "45.55.50.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("55069", "10", "2017-05-03 13:44:37", "157.55.39.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("55070", "3", "2017-05-03 14:07:44", "202.46.58.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("55071", "3", "2017-05-03 15:14:24", "202.46.51.210", "10");
INSERT INTO `wp_gf_form_view` VALUES("55072", "2", "2017-05-03 15:24:41", "138.197.7.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("55073", "11", "2017-05-03 15:24:41", "138.197.7.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("55074", "14", "2017-05-03 15:35:07", "70.67.186.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("55075", "3", "2017-05-03 16:00:24", "164.132.161.47", "6");
INSERT INTO `wp_gf_form_view` VALUES("55076", "3", "2017-05-03 17:05:33", "51.255.65.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("55077", "14", "2017-05-03 17:46:08", "184.66.240.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("55078", "5", "2017-05-03 18:03:43", "77.75.78.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("55079", "3", "2017-05-03 18:03:44", "77.75.78.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("55080", "10", "2017-05-03 19:34:28", "157.55.39.98", "35");
INSERT INTO `wp_gf_form_view` VALUES("55081", "3", "2017-05-03 19:34:29", "157.55.39.98", "4");
INSERT INTO `wp_gf_form_view` VALUES("55082", "3", "2017-05-03 20:10:20", "198.103.152.51", "4");
INSERT INTO `wp_gf_form_view` VALUES("55083", "10", "2017-05-03 20:10:20", "198.103.152.51", "32");
INSERT INTO `wp_gf_form_view` VALUES("55084", "2", "2017-05-03 20:38:02", "207.46.13.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("55085", "3", "2017-05-03 21:02:37", "202.46.57.168", "30");
INSERT INTO `wp_gf_form_view` VALUES("55086", "10", "2017-05-03 21:02:37", "202.46.57.168", "36");
INSERT INTO `wp_gf_form_view` VALUES("55087", "6", "2017-05-03 21:54:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55088", "9", "2017-05-03 21:54:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55089", "8", "2017-05-03 21:54:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55090", "13", "2017-05-03 21:54:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55091", "15", "2017-05-03 21:54:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55092", "3", "2017-05-03 22:03:08", "77.75.78.162", "9");
INSERT INTO `wp_gf_form_view` VALUES("55093", "10", "2017-05-03 22:03:08", "77.75.78.162", "24");
INSERT INTO `wp_gf_form_view` VALUES("55094", "2", "2017-05-03 22:24:44", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("55095", "3", "2017-05-03 23:15:59", "202.46.58.14", "6");
INSERT INTO `wp_gf_form_view` VALUES("55096", "10", "2017-05-03 23:15:59", "202.46.58.14", "50");
INSERT INTO `wp_gf_form_view` VALUES("55097", "8", "2017-05-03 23:23:36", "217.182.132.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("55098", "3", "2017-05-04 00:13:03", "24.68.248.211", "29");
INSERT INTO `wp_gf_form_view` VALUES("55099", "10", "2017-05-04 00:13:03", "24.68.248.211", "194");
INSERT INTO `wp_gf_form_view` VALUES("55100", "13", "2017-05-04 00:42:08", "96.54.47.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("55101", "3", "2017-05-04 02:15:50", "202.46.51.182", "6");
INSERT INTO `wp_gf_form_view` VALUES("55102", "10", "2017-05-04 02:15:52", "202.46.51.182", "24");
INSERT INTO `wp_gf_form_view` VALUES("55103", "14", "2017-05-04 03:31:53", "184.67.128.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("55104", "3", "2017-05-04 04:19:39", "164.132.161.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("55105", "10", "2017-05-04 04:19:40", "164.132.161.32", "24");
INSERT INTO `wp_gf_form_view` VALUES("55106", "3", "2017-05-04 05:02:16", "194.187.170.110", "8");
INSERT INTO `wp_gf_form_view` VALUES("55107", "10", "2017-05-04 05:02:16", "194.187.170.110", "40");
INSERT INTO `wp_gf_form_view` VALUES("55108", "3", "2017-05-04 06:04:30", "157.55.39.174", "6");
INSERT INTO `wp_gf_form_view` VALUES("55109", "10", "2017-05-04 06:04:31", "157.55.39.174", "32");
INSERT INTO `wp_gf_form_view` VALUES("55110", "15", "2017-05-04 06:24:16", "157.55.39.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("55111", "3", "2017-05-04 07:06:36", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("55112", "6", "2017-05-04 07:06:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55113", "9", "2017-05-04 07:06:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55114", "8", "2017-05-04 07:06:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55115", "10", "2017-05-04 07:06:38", "52.88.109.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("55116", "13", "2017-05-04 07:06:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55117", "15", "2017-05-04 07:06:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55118", "3", "2017-05-04 08:41:43", "68.180.230.222", "2");
INSERT INTO `wp_gf_form_view` VALUES("55119", "10", "2017-05-04 08:44:22", "157.55.39.174", "8");
INSERT INTO `wp_gf_form_view` VALUES("55120", "3", "2017-05-04 09:00:42", "104.154.58.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("55121", "10", "2017-05-04 09:00:42", "104.154.58.95", "8");
INSERT INTO `wp_gf_form_view` VALUES("55122", "3", "2017-05-04 10:34:32", "51.255.71.122", "3");
INSERT INTO `wp_gf_form_view` VALUES("55123", "10", "2017-05-04 10:34:35", "51.255.71.122", "24");
INSERT INTO `wp_gf_form_view` VALUES("55124", "9", "2017-05-04 11:06:10", "202.46.49.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("55125", "3", "2017-05-04 11:06:11", "202.46.49.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("55126", "10", "2017-05-04 11:06:11", "202.46.49.110", "16");
INSERT INTO `wp_gf_form_view` VALUES("55127", "3", "2017-05-04 12:09:09", "51.255.65.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("55128", "10", "2017-05-04 12:09:10", "51.255.65.91", "8");
INSERT INTO `wp_gf_form_view` VALUES("55129", "3", "2017-05-04 13:15:05", "164.132.161.67", "5");
INSERT INTO `wp_gf_form_view` VALUES("55130", "10", "2017-05-04 13:28:22", "66.249.79.148", "12");
INSERT INTO `wp_gf_form_view` VALUES("55131", "3", "2017-05-04 14:46:48", "202.46.53.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("55132", "10", "2017-05-04 14:46:49", "202.46.53.175", "8");
INSERT INTO `wp_gf_form_view` VALUES("55133", "14", "2017-05-04 14:46:58", "83.143.242.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("55134", "3", "2017-05-04 15:20:10", "202.46.48.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("55135", "10", "2017-05-04 15:20:12", "202.46.48.16", "8");
INSERT INTO `wp_gf_form_view` VALUES("55136", "14", "2017-05-04 16:21:45", "154.16.61.125", "3");
INSERT INTO `wp_gf_form_view` VALUES("55137", "10", "2017-05-04 16:25:37", "184.66.49.231", "54");
INSERT INTO `wp_gf_form_view` VALUES("55138", "3", "2017-05-04 16:25:38", "184.66.49.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("55139", "3", "2017-05-04 17:22:29", "202.46.57.179", "3");
INSERT INTO `wp_gf_form_view` VALUES("55140", "10", "2017-05-04 17:22:30", "202.46.57.179", "25");
INSERT INTO `wp_gf_form_view` VALUES("55141", "3", "2017-05-04 18:22:47", "164.132.161.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("55142", "10", "2017-05-04 18:22:48", "164.132.161.54", "16");
INSERT INTO `wp_gf_form_view` VALUES("55143", "16", "2017-05-04 18:27:42", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("55144", "3", "2017-05-04 19:43:36", "77.75.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("55145", "10", "2017-05-04 19:43:40", "77.75.76.169", "8");
INSERT INTO `wp_gf_form_view` VALUES("55146", "3", "2017-05-04 20:11:30", "40.77.167.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("55147", "10", "2017-05-04 20:11:30", "40.77.167.35", "24");
INSERT INTO `wp_gf_form_view` VALUES("55148", "14", "2017-05-04 20:53:05", "51.255.65.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("55149", "3", "2017-05-04 21:43:17", "184.68.134.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("55150", "10", "2017-05-04 21:43:19", "184.68.134.18", "16");
INSERT INTO `wp_gf_form_view` VALUES("55151", "3", "2017-05-04 22:07:16", "40.77.167.96", "31");
INSERT INTO `wp_gf_form_view` VALUES("55152", "10", "2017-05-04 22:07:16", "40.77.167.96", "45");
INSERT INTO `wp_gf_form_view` VALUES("55153", "14", "2017-05-04 22:35:01", "184.66.224.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("55154", "6", "2017-05-04 22:48:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55155", "9", "2017-05-04 22:48:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55156", "8", "2017-05-04 22:48:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55157", "13", "2017-05-04 22:48:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55158", "15", "2017-05-04 22:48:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55159", "3", "2017-05-04 23:00:40", "40.77.167.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("55160", "10", "2017-05-04 23:00:40", "40.77.167.138", "64");
INSERT INTO `wp_gf_form_view` VALUES("55161", "11", "2017-05-04 23:30:36", "194.187.170.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("55162", "3", "2017-05-05 00:05:16", "40.77.167.138", "7");
INSERT INTO `wp_gf_form_view` VALUES("55163", "10", "2017-05-05 00:05:16", "40.77.167.138", "60");
INSERT INTO `wp_gf_form_view` VALUES("55164", "10", "2017-05-05 01:06:13", "66.249.79.144", "53");
INSERT INTO `wp_gf_form_view` VALUES("55165", "3", "2017-05-05 01:06:14", "66.249.79.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("55166", "3", "2017-05-05 02:17:05", "157.55.39.67", "7");
INSERT INTO `wp_gf_form_view` VALUES("55167", "10", "2017-05-05 02:17:05", "157.55.39.67", "40");
INSERT INTO `wp_gf_form_view` VALUES("55168", "3", "2017-05-05 03:30:54", "202.46.48.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("55169", "10", "2017-05-05 03:30:55", "202.46.48.15", "8");
INSERT INTO `wp_gf_form_view` VALUES("55170", "15", "2017-05-05 03:44:47", "104.154.58.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("55171", "14", "2017-05-05 04:44:28", "107.174.9.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("55172", "3", "2017-05-05 04:47:17", "54.243.53.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("55173", "10", "2017-05-05 04:47:17", "54.243.53.148", "24");
INSERT INTO `wp_gf_form_view` VALUES("55174", "10", "2017-05-05 05:00:21", "24.108.12.82", "376");
INSERT INTO `wp_gf_form_view` VALUES("55175", "14", "2017-05-05 05:10:59", "202.46.53.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("55176", "3", "2017-05-05 05:31:25", "46.229.168.67", "65");
INSERT INTO `wp_gf_form_view` VALUES("55177", "11", "2017-05-05 05:32:26", "46.229.168.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("55178", "6", "2017-05-05 05:33:17", "46.229.168.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("55179", "2", "2017-05-05 05:54:51", "138.197.96.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("55180", "3", "2017-05-05 06:27:15", "111.69.145.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("55181", "10", "2017-05-05 06:27:17", "111.69.145.195", "64");
INSERT INTO `wp_gf_form_view` VALUES("55182", "11", "2017-05-05 06:46:29", "138.197.7.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("55183", "2", "2017-05-05 06:46:30", "138.197.7.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("55184", "14", "2017-05-05 06:57:24", "37.220.22.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("55185", "3", "2017-05-05 07:03:51", "5.9.156.43", "33");
INSERT INTO `wp_gf_form_view` VALUES("55186", "10", "2017-05-05 07:03:51", "5.9.156.43", "44");
INSERT INTO `wp_gf_form_view` VALUES("55187", "6", "2017-05-05 07:56:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55188", "9", "2017-05-05 07:56:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55189", "8", "2017-05-05 07:56:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55190", "13", "2017-05-05 07:56:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55191", "15", "2017-05-05 07:56:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55192", "3", "2017-05-05 08:05:35", "40.77.167.137", "15");
INSERT INTO `wp_gf_form_view` VALUES("55193", "10", "2017-05-05 08:05:35", "40.77.167.137", "104");
INSERT INTO `wp_gf_form_view` VALUES("55194", "3", "2017-05-05 09:56:55", "164.132.161.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("55195", "10", "2017-05-05 09:56:56", "164.132.161.58", "8");
INSERT INTO `wp_gf_form_view` VALUES("55196", "3", "2017-05-05 11:23:40", "202.46.49.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("55197", "10", "2017-05-05 11:23:42", "202.46.49.142", "8");
INSERT INTO `wp_gf_form_view` VALUES("55198", "14", "2017-05-05 12:49:06", "108.180.50.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("55199", "10", "2017-05-05 12:55:02", "77.75.76.162", "49");
INSERT INTO `wp_gf_form_view` VALUES("55200", "3", "2017-05-05 12:55:04", "77.75.76.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("55201", "11", "2017-05-05 12:59:06", "86.88.81.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("55202", "2", "2017-05-05 12:59:51", "86.88.81.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("55203", "3", "2017-05-05 13:00:12", "86.88.81.57", "6");
INSERT INTO `wp_gf_form_view` VALUES("55204", "10", "2017-05-05 13:00:17", "86.88.81.57", "32");
INSERT INTO `wp_gf_form_view` VALUES("55205", "3", "2017-05-05 14:00:53", "66.249.79.144", "4");
INSERT INTO `wp_gf_form_view` VALUES("55206", "10", "2017-05-05 14:00:53", "66.249.79.144", "34");
INSERT INTO `wp_gf_form_view` VALUES("55207", "3", "2017-05-05 15:18:39", "207.194.133.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("55208", "10", "2017-05-05 15:18:40", "207.194.133.9", "42");
INSERT INTO `wp_gf_form_view` VALUES("55209", "3", "2017-05-05 16:08:16", "194.187.170.105", "359");
INSERT INTO `wp_gf_form_view` VALUES("55210", "10", "2017-05-05 16:08:16", "194.187.170.105", "950");
INSERT INTO `wp_gf_form_view` VALUES("55211", "14", "2017-05-05 16:16:04", "62.138.14.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("55212", "11", "2017-05-05 16:16:13", "62.138.14.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("55213", "2", "2017-05-05 16:16:19", "62.138.14.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("55214", "6", "2017-05-05 16:17:42", "62.138.14.52", "9");
INSERT INTO `wp_gf_form_view` VALUES("55215", "9", "2017-05-05 16:17:43", "62.138.14.52", "9");
INSERT INTO `wp_gf_form_view` VALUES("55216", "8", "2017-05-05 16:17:43", "62.138.14.52", "9");
INSERT INTO `wp_gf_form_view` VALUES("55217", "13", "2017-05-05 16:17:44", "62.138.14.52", "9");
INSERT INTO `wp_gf_form_view` VALUES("55218", "15", "2017-05-05 16:17:45", "62.138.14.52", "9");
INSERT INTO `wp_gf_form_view` VALUES("55219", "14", "2017-05-05 17:06:17", "202.46.49.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("55220", "3", "2017-05-05 17:07:04", "96.54.46.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("55221", "10", "2017-05-05 17:07:04", "96.54.46.220", "16");
INSERT INTO `wp_gf_form_view` VALUES("55222", "3", "2017-05-05 18:25:26", "77.75.77.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("55223", "10", "2017-05-05 18:25:26", "77.75.77.62", "8");
INSERT INTO `wp_gf_form_view` VALUES("55224", "3", "2017-05-05 19:19:45", "202.46.54.141", "6");
INSERT INTO `wp_gf_form_view` VALUES("55225", "10", "2017-05-05 19:19:50", "202.46.54.141", "45");
INSERT INTO `wp_gf_form_view` VALUES("55226", "2", "2017-05-05 19:36:12", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("55227", "3", "2017-05-05 20:03:46", "40.77.167.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("55228", "10", "2017-05-05 20:03:46", "40.77.167.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("55229", "3", "2017-05-05 21:10:05", "77.75.77.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("55230", "10", "2017-05-05 21:10:07", "77.75.77.11", "17");
INSERT INTO `wp_gf_form_view` VALUES("55231", "3", "2017-05-05 22:08:17", "194.187.170.114", "6");
INSERT INTO `wp_gf_form_view` VALUES("55232", "10", "2017-05-05 22:08:18", "194.187.170.114", "51");
INSERT INTO `wp_gf_form_view` VALUES("55233", "3", "2017-05-05 23:01:57", "149.202.74.124", "41");
INSERT INTO `wp_gf_form_view` VALUES("55234", "10", "2017-05-05 23:01:57", "149.202.74.124", "92");
INSERT INTO `wp_gf_form_view` VALUES("55235", "11", "2017-05-05 23:02:14", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("55236", "2", "2017-05-05 23:02:18", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("55237", "6", "2017-05-05 23:41:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55238", "9", "2017-05-05 23:41:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55239", "8", "2017-05-05 23:41:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55240", "13", "2017-05-05 23:41:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55241", "15", "2017-05-05 23:41:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55242", "15", "2017-05-06 00:23:37", "40.77.167.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("55243", "3", "2017-05-06 00:23:38", "40.77.167.90", "7");
INSERT INTO `wp_gf_form_view` VALUES("55244", "10", "2017-05-06 00:23:38", "40.77.167.90", "40");
INSERT INTO `wp_gf_form_view` VALUES("55245", "13", "2017-05-06 01:32:27", "40.77.167.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("55246", "3", "2017-05-06 01:32:29", "40.77.167.90", "3");
INSERT INTO `wp_gf_form_view` VALUES("55247", "10", "2017-05-06 01:32:29", "40.77.167.90", "24");
INSERT INTO `wp_gf_form_view` VALUES("55248", "3", "2017-05-06 02:04:01", "51.255.71.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("55249", "10", "2017-05-06 02:04:02", "51.255.71.127", "24");
INSERT INTO `wp_gf_form_view` VALUES("55250", "11", "2017-05-06 02:54:19", "220.181.108.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("55251", "15", "2017-05-06 03:13:48", "40.77.167.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("55252", "3", "2017-05-06 03:13:50", "40.77.167.2", "46");
INSERT INTO `wp_gf_form_view` VALUES("55253", "10", "2017-05-06 03:13:50", "40.77.167.2", "282");
INSERT INTO `wp_gf_form_view` VALUES("55254", "11", "2017-05-06 03:55:12", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("55255", "2", "2017-05-06 03:55:16", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("55256", "14", "2017-05-06 03:56:33", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("55257", "13", "2017-05-06 03:58:57", "94.23.27.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("55258", "10", "2017-05-06 04:15:02", "24.108.12.82", "9");
INSERT INTO `wp_gf_form_view` VALUES("55259", "3", "2017-05-06 04:34:57", "164.132.161.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("55260", "3", "2017-05-06 05:23:52", "202.46.55.182", "3");
INSERT INTO `wp_gf_form_view` VALUES("55261", "10", "2017-05-06 05:23:54", "202.46.55.182", "8");
INSERT INTO `wp_gf_form_view` VALUES("55262", "3", "2017-05-06 06:12:22", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("55263", "10", "2017-05-06 06:12:24", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("55264", "15", "2017-05-06 07:10:24", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55265", "3", "2017-05-06 07:10:27", "35.184.189.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("55266", "10", "2017-05-06 07:10:28", "35.184.189.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("55267", "13", "2017-05-06 07:44:51", "141.8.143.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("55268", "3", "2017-05-06 08:44:16", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("55269", "6", "2017-05-06 08:44:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55270", "9", "2017-05-06 08:44:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55271", "8", "2017-05-06 08:44:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55272", "10", "2017-05-06 08:44:18", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("55273", "13", "2017-05-06 08:44:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55274", "15", "2017-05-06 08:44:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55275", "3", "2017-05-06 09:06:12", "68.180.230.222", "5");
INSERT INTO `wp_gf_form_view` VALUES("55276", "10", "2017-05-06 09:06:12", "68.180.230.222", "41");
INSERT INTO `wp_gf_form_view` VALUES("55277", "11", "2017-05-06 09:12:17", "88.198.22.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("55278", "2", "2017-05-06 09:12:20", "88.198.22.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("55279", "3", "2017-05-06 10:04:00", "164.132.161.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("55280", "10", "2017-05-06 10:04:01", "164.132.161.23", "24");
INSERT INTO `wp_gf_form_view` VALUES("55281", "3", "2017-05-06 11:28:48", "35.184.189.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("55282", "10", "2017-05-06 11:28:50", "35.184.189.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("55283", "14", "2017-05-06 12:11:41", "5.255.250.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("55284", "3", "2017-05-06 13:31:57", "202.46.50.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("55285", "10", "2017-05-06 13:40:19", "100.43.91.1", "8");
INSERT INTO `wp_gf_form_view` VALUES("55286", "10", "2017-05-06 14:09:17", "35.184.189.105", "9");
INSERT INTO `wp_gf_form_view` VALUES("55287", "3", "2017-05-06 14:09:22", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55288", "3", "2017-05-06 15:33:01", "202.46.55.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("55289", "10", "2017-05-06 15:33:05", "202.46.55.149", "34");
INSERT INTO `wp_gf_form_view` VALUES("55290", "3", "2017-05-06 16:06:17", "202.46.56.32", "10");
INSERT INTO `wp_gf_form_view` VALUES("55291", "10", "2017-05-06 16:06:17", "202.46.56.32", "57");
INSERT INTO `wp_gf_form_view` VALUES("55292", "14", "2017-05-06 16:31:51", "83.143.242.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("55293", "6", "2017-05-06 16:55:00", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("55294", "3", "2017-05-06 17:10:22", "164.132.162.158", "8");
INSERT INTO `wp_gf_form_view` VALUES("55295", "10", "2017-05-06 17:10:22", "164.132.162.158", "48");
INSERT INTO `wp_gf_form_view` VALUES("55296", "2", "2017-05-06 18:14:10", "77.88.47.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("55297", "3", "2017-05-06 18:42:30", "100.43.91.1", "8");
INSERT INTO `wp_gf_form_view` VALUES("55298", "10", "2017-05-06 18:42:31", "100.43.91.1", "48");
INSERT INTO `wp_gf_form_view` VALUES("55299", "11", "2017-05-06 18:55:11", "138.197.69.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("55300", "10", "2017-05-06 19:06:14", "35.184.189.105", "17");
INSERT INTO `wp_gf_form_view` VALUES("55301", "3", "2017-05-06 19:06:15", "35.184.189.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("55302", "3", "2017-05-06 20:09:03", "202.46.57.168", "6");
INSERT INTO `wp_gf_form_view` VALUES("55303", "10", "2017-05-06 20:09:03", "202.46.57.168", "48");
INSERT INTO `wp_gf_form_view` VALUES("55304", "3", "2017-05-06 21:14:08", "5.255.250.37", "13");
INSERT INTO `wp_gf_form_view` VALUES("55305", "10", "2017-05-06 21:14:08", "5.255.250.37", "57");
INSERT INTO `wp_gf_form_view` VALUES("55306", "3", "2017-05-06 22:05:22", "40.77.167.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("55307", "10", "2017-05-06 22:05:23", "40.77.167.2", "49");
INSERT INTO `wp_gf_form_view` VALUES("55308", "3", "2017-05-06 23:27:30", "202.46.58.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("55309", "10", "2017-05-06 23:27:34", "202.46.58.77", "8");
INSERT INTO `wp_gf_form_view` VALUES("55310", "3", "2017-05-07 00:13:11", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("55311", "6", "2017-05-07 00:13:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55312", "9", "2017-05-07 00:13:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55313", "8", "2017-05-07 00:13:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55314", "10", "2017-05-07 00:13:14", "52.88.109.3", "21");
INSERT INTO `wp_gf_form_view` VALUES("55315", "13", "2017-05-07 00:13:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55316", "15", "2017-05-07 00:13:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55317", "3", "2017-05-07 01:21:18", "202.46.58.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("55318", "10", "2017-05-07 01:21:19", "202.46.58.126", "8");
INSERT INTO `wp_gf_form_view` VALUES("55319", "10", "2017-05-07 02:00:26", "51.255.65.29", "26");
INSERT INTO `wp_gf_form_view` VALUES("55320", "3", "2017-05-07 02:21:05", "164.132.161.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("55321", "3", "2017-05-07 03:01:17", "202.46.57.174", "10");
INSERT INTO `wp_gf_form_view` VALUES("55322", "10", "2017-05-07 03:01:17", "202.46.57.174", "18");
INSERT INTO `wp_gf_form_view` VALUES("55323", "15", "2017-05-07 03:54:56", "51.255.65.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("55324", "13", "2017-05-07 03:54:57", "51.255.65.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("55325", "3", "2017-05-07 04:02:45", "66.249.79.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("55326", "10", "2017-05-07 04:02:45", "66.249.79.148", "25");
INSERT INTO `wp_gf_form_view` VALUES("55327", "3", "2017-05-07 05:00:04", "51.255.65.44", "8");
INSERT INTO `wp_gf_form_view` VALUES("55328", "10", "2017-05-07 05:00:04", "51.255.65.44", "48");
INSERT INTO `wp_gf_form_view` VALUES("55329", "3", "2017-05-07 06:39:24", "217.182.132.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("55330", "10", "2017-05-07 06:39:27", "217.182.132.188", "8");
INSERT INTO `wp_gf_form_view` VALUES("55331", "3", "2017-05-07 07:22:02", "77.75.79.101", "3");
INSERT INTO `wp_gf_form_view` VALUES("55332", "10", "2017-05-07 07:22:04", "77.75.79.101", "24");
INSERT INTO `wp_gf_form_view` VALUES("55333", "3", "2017-05-07 08:09:47", "194.187.170.142", "5");
INSERT INTO `wp_gf_form_view` VALUES("55334", "10", "2017-05-07 08:09:48", "194.187.170.142", "32");
INSERT INTO `wp_gf_form_view` VALUES("55335", "3", "2017-05-07 09:10:18", "217.182.132.84", "29");
INSERT INTO `wp_gf_form_view` VALUES("55336", "10", "2017-05-07 09:10:18", "217.182.132.84", "29");
INSERT INTO `wp_gf_form_view` VALUES("55337", "6", "2017-05-07 09:48:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55338", "9", "2017-05-07 09:48:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55339", "8", "2017-05-07 09:48:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55340", "13", "2017-05-07 09:48:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55341", "15", "2017-05-07 09:48:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55342", "12", "2017-05-07 10:16:57", "202.46.48.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("55343", "3", "2017-05-07 10:16:59", "202.46.48.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("55344", "10", "2017-05-07 10:16:59", "202.46.48.143", "16");
INSERT INTO `wp_gf_form_view` VALUES("55345", "10", "2017-05-07 11:05:57", "151.80.27.116", "49");
INSERT INTO `wp_gf_form_view` VALUES("55346", "3", "2017-05-07 11:05:58", "151.80.27.116", "7");
INSERT INTO `wp_gf_form_view` VALUES("55347", "15", "2017-05-07 11:23:29", "40.77.167.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("55348", "3", "2017-05-07 12:27:38", "35.184.189.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("55349", "10", "2017-05-07 12:46:16", "217.182.132.29", "16");
INSERT INTO `wp_gf_form_view` VALUES("55350", "3", "2017-05-07 13:23:31", "217.182.132.36", "4");
INSERT INTO `wp_gf_form_view` VALUES("55351", "10", "2017-05-07 13:23:31", "217.182.132.36", "32");
INSERT INTO `wp_gf_form_view` VALUES("55352", "5", "2017-05-07 13:54:04", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("55353", "3", "2017-05-07 14:04:05", "202.46.57.186", "6");
INSERT INTO `wp_gf_form_view` VALUES("55354", "10", "2017-05-07 14:04:05", "202.46.57.186", "40");
INSERT INTO `wp_gf_form_view` VALUES("55355", "14", "2017-05-07 14:12:17", "194.187.170.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("55356", "3", "2017-05-07 15:05:27", "157.55.39.150", "6");
INSERT INTO `wp_gf_form_view` VALUES("55357", "10", "2017-05-07 15:05:27", "157.55.39.150", "33");
INSERT INTO `wp_gf_form_view` VALUES("55358", "3", "2017-05-07 16:07:42", "194.187.170.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("55359", "10", "2017-05-07 16:07:42", "194.187.170.104", "24");
INSERT INTO `wp_gf_form_view` VALUES("55360", "14", "2017-05-07 16:20:07", "83.143.242.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("55361", "3", "2017-05-07 17:16:55", "202.46.53.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("55362", "10", "2017-05-07 17:16:55", "202.46.53.42", "25");
INSERT INTO `wp_gf_form_view` VALUES("55363", "8", "2017-05-07 17:36:41", "217.182.132.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("55364", "3", "2017-05-07 18:30:59", "35.184.189.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("55365", "10", "2017-05-07 18:31:00", "35.184.189.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("55366", "14", "2017-05-07 18:52:25", "184.66.47.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("55367", "3", "2017-05-07 19:48:40", "202.46.57.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("55368", "10", "2017-05-07 19:48:40", "202.46.57.162", "8");
INSERT INTO `wp_gf_form_view` VALUES("55369", "3", "2017-05-07 20:21:59", "202.46.48.206", "3");
INSERT INTO `wp_gf_form_view` VALUES("55370", "10", "2017-05-07 20:21:59", "202.46.48.206", "16");
INSERT INTO `wp_gf_form_view` VALUES("55371", "3", "2017-05-07 21:51:27", "40.77.167.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("55372", "10", "2017-05-07 21:51:28", "40.77.167.138", "8");
INSERT INTO `wp_gf_form_view` VALUES("55373", "3", "2017-05-07 22:42:05", "159.203.160.202", "127");
INSERT INTO `wp_gf_form_view` VALUES("55374", "10", "2017-05-07 22:42:08", "159.203.160.202", "880");
INSERT INTO `wp_gf_form_view` VALUES("55375", "14", "2017-05-07 22:43:34", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("55376", "11", "2017-05-07 22:43:39", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("55377", "6", "2017-05-07 22:50:05", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("55378", "3", "2017-05-07 23:01:19", "159.203.160.202", "404");
INSERT INTO `wp_gf_form_view` VALUES("55379", "10", "2017-05-07 23:01:20", "159.203.160.202", "2878");
INSERT INTO `wp_gf_form_view` VALUES("55380", "9", "2017-05-07 23:03:10", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("55381", "15", "2017-05-07 23:15:10", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("55382", "2", "2017-05-07 23:50:59", "159.203.160.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("55383", "11", "2017-05-07 23:57:42", "149.5.113.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("55384", "3", "2017-05-08 00:00:09", "159.203.160.202", "102");
INSERT INTO `wp_gf_form_view` VALUES("55385", "10", "2017-05-08 00:00:09", "159.203.160.202", "503");
INSERT INTO `wp_gf_form_view` VALUES("55386", "13", "2017-05-08 00:03:44", "159.203.160.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("55387", "6", "2017-05-08 00:19:30", "5.188.211.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("55388", "9", "2017-05-08 00:19:31", "5.188.211.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("55389", "8", "2017-05-08 00:19:32", "5.188.211.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("55390", "15", "2017-05-08 00:19:34", "5.188.211.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("55391", "14", "2017-05-08 00:26:27", "107.155.193.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("55392", "2", "2017-05-08 00:26:40", "94.103.43.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("55393", "11", "2017-05-08 00:26:56", "217.18.246.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("55394", "12", "2017-05-08 00:42:38", "194.187.170.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("55395", "3", "2017-05-08 01:04:10", "194.187.170.140", "35");
INSERT INTO `wp_gf_form_view` VALUES("55396", "10", "2017-05-08 01:04:11", "194.187.170.140", "69");
INSERT INTO `wp_gf_form_view` VALUES("55397", "6", "2017-05-08 01:13:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55398", "9", "2017-05-08 01:13:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55399", "8", "2017-05-08 01:13:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55400", "13", "2017-05-08 01:13:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55401", "15", "2017-05-08 01:13:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55402", "11", "2017-05-08 01:57:49", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("55403", "2", "2017-05-08 01:58:30", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("55404", "14", "2017-05-08 01:59:36", "176.103.56.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("55405", "3", "2017-05-08 02:00:04", "188.40.46.135", "29");
INSERT INTO `wp_gf_form_view` VALUES("55406", "10", "2017-05-08 02:00:04", "188.40.46.135", "215");
INSERT INTO `wp_gf_form_view` VALUES("55407", "14", "2017-05-08 03:06:35", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55408", "3", "2017-05-08 03:21:11", "202.46.50.136", "10");
INSERT INTO `wp_gf_form_view` VALUES("55409", "10", "2017-05-08 03:21:12", "202.46.50.136", "56");
INSERT INTO `wp_gf_form_view` VALUES("55410", "2", "2017-05-08 03:29:57", "5.188.211.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("55411", "11", "2017-05-08 03:30:09", "5.188.211.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("55412", "3", "2017-05-08 05:02:28", "157.55.39.150", "8");
INSERT INTO `wp_gf_form_view` VALUES("55413", "10", "2017-05-08 05:02:30", "157.55.39.150", "42");
INSERT INTO `wp_gf_form_view` VALUES("55414", "14", "2017-05-08 06:06:31", "176.103.56.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("55415", "10", "2017-05-08 06:08:37", "35.184.189.105", "89");
INSERT INTO `wp_gf_form_view` VALUES("55416", "3", "2017-05-08 06:08:39", "35.184.189.105", "15");
INSERT INTO `wp_gf_form_view` VALUES("55417", "11", "2017-05-08 06:48:19", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("55418", "3", "2017-05-08 07:02:40", "35.184.189.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("55419", "10", "2017-05-08 07:02:40", "35.184.189.105", "64");
INSERT INTO `wp_gf_form_view` VALUES("55420", "11", "2017-05-08 07:28:43", "138.197.111.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("55421", "2", "2017-05-08 07:28:48", "138.197.111.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("55422", "14", "2017-05-08 07:57:51", "176.103.56.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("55423", "3", "2017-05-08 08:39:31", "194.187.170.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("55424", "10", "2017-05-08 08:39:33", "194.187.170.125", "8");
INSERT INTO `wp_gf_form_view` VALUES("55425", "3", "2017-05-08 09:00:57", "202.46.52.110", "8");
INSERT INTO `wp_gf_form_view` VALUES("55426", "10", "2017-05-08 09:00:57", "202.46.52.110", "58");
INSERT INTO `wp_gf_form_view` VALUES("55427", "3", "2017-05-08 10:16:51", "40.77.167.2", "27");
INSERT INTO `wp_gf_form_view` VALUES("55428", "10", "2017-05-08 10:16:53", "40.77.167.2", "12");
INSERT INTO `wp_gf_form_view` VALUES("55429", "6", "2017-05-08 10:38:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55430", "9", "2017-05-08 10:38:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55431", "8", "2017-05-08 10:38:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55432", "13", "2017-05-08 10:38:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55433", "15", "2017-05-08 10:38:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55434", "3", "2017-05-08 11:01:21", "5.188.211.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("55435", "10", "2017-05-08 11:01:21", "5.188.211.62", "50");
INSERT INTO `wp_gf_form_view` VALUES("55436", "2", "2017-05-08 11:01:25", "5.188.211.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("55437", "11", "2017-05-08 11:01:39", "5.188.211.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("55438", "3", "2017-05-08 12:11:01", "51.255.65.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("55439", "10", "2017-05-08 12:11:01", "51.255.65.37", "17");
INSERT INTO `wp_gf_form_view` VALUES("55440", "3", "2017-05-08 13:15:27", "51.255.65.5", "4");
INSERT INTO `wp_gf_form_view` VALUES("55441", "10", "2017-05-08 13:15:28", "51.255.65.5", "24");
INSERT INTO `wp_gf_form_view` VALUES("55442", "3", "2017-05-08 14:11:59", "208.90.57.196", "6");
INSERT INTO `wp_gf_form_view` VALUES("55443", "10", "2017-05-08 14:12:01", "208.90.57.196", "48");
INSERT INTO `wp_gf_form_view` VALUES("55444", "10", "2017-05-08 15:42:57", "51.255.65.58", "17");
INSERT INTO `wp_gf_form_view` VALUES("55445", "3", "2017-05-08 15:43:00", "51.255.65.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("55446", "11", "2017-05-08 15:57:49", "154.20.32.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("55447", "10", "2017-05-08 16:18:46", "77.75.79.17", "33");
INSERT INTO `wp_gf_form_view` VALUES("55448", "3", "2017-05-08 16:18:50", "77.75.79.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("55449", "8", "2017-05-08 17:04:14", "217.182.132.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55450", "3", "2017-05-08 17:04:15", "217.182.132.24", "7");
INSERT INTO `wp_gf_form_view` VALUES("55451", "10", "2017-05-08 17:04:15", "217.182.132.24", "32");
INSERT INTO `wp_gf_form_view` VALUES("55452", "3", "2017-05-08 18:28:30", "40.77.167.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("55453", "10", "2017-05-08 18:28:37", "40.77.167.138", "24");
INSERT INTO `wp_gf_form_view` VALUES("55454", "2", "2017-05-08 19:03:16", "54.202.96.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("55455", "3", "2017-05-08 19:03:21", "54.202.96.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("55456", "10", "2017-05-08 19:03:22", "54.202.96.182", "25");
INSERT INTO `wp_gf_form_view` VALUES("55457", "3", "2017-05-08 20:05:55", "51.255.65.43", "12");
INSERT INTO `wp_gf_form_view` VALUES("55458", "10", "2017-05-08 20:05:56", "51.255.65.43", "84");
INSERT INTO `wp_gf_form_view` VALUES("55459", "13", "2017-05-08 20:06:09", "202.46.58.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("55460", "3", "2017-05-08 21:36:47", "35.184.189.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("55461", "10", "2017-05-08 21:36:48", "35.184.189.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("55462", "14", "2017-05-08 21:59:31", "64.180.188.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("55463", "10", "2017-05-08 22:10:58", "157.55.39.150", "100");
INSERT INTO `wp_gf_form_view` VALUES("55464", "3", "2017-05-08 22:10:59", "157.55.39.150", "14");
INSERT INTO `wp_gf_form_view` VALUES("55465", "14", "2017-05-08 22:13:17", "64.180.188.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("55466", "2", "2017-05-08 22:52:52", "5.188.211.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("55467", "11", "2017-05-08 22:53:11", "5.188.211.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("55468", "3", "2017-05-08 23:08:03", "194.187.170.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("55469", "10", "2017-05-08 23:08:04", "194.187.170.105", "89");
INSERT INTO `wp_gf_form_view` VALUES("55470", "3", "2017-05-09 00:13:51", "40.77.167.2", "15");
INSERT INTO `wp_gf_form_view` VALUES("55471", "10", "2017-05-09 00:13:53", "40.77.167.2", "97");
INSERT INTO `wp_gf_form_view` VALUES("55472", "3", "2017-05-09 01:14:28", "164.132.161.78", "6");
INSERT INTO `wp_gf_form_view` VALUES("55473", "10", "2017-05-09 01:14:28", "164.132.161.78", "41");
INSERT INTO `wp_gf_form_view` VALUES("55474", "3", "2017-05-09 02:10:16", "40.77.167.2", "29");
INSERT INTO `wp_gf_form_view` VALUES("55475", "10", "2017-05-09 02:10:16", "40.77.167.2", "28");
INSERT INTO `wp_gf_form_view` VALUES("55476", "6", "2017-05-09 02:36:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55477", "9", "2017-05-09 02:36:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55478", "8", "2017-05-09 02:36:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55479", "13", "2017-05-09 02:36:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55480", "15", "2017-05-09 02:36:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55481", "3", "2017-05-09 03:11:47", "164.132.161.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("55482", "10", "2017-05-09 03:11:48", "164.132.161.79", "16");
INSERT INTO `wp_gf_form_view` VALUES("55483", "3", "2017-05-09 04:15:41", "202.46.50.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("55484", "10", "2017-05-09 04:15:41", "202.46.50.151", "25");
INSERT INTO `wp_gf_form_view` VALUES("55485", "3", "2017-05-09 05:02:55", "77.75.79.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("55486", "10", "2017-05-09 05:02:55", "77.75.79.95", "24");
INSERT INTO `wp_gf_form_view` VALUES("55487", "3", "2017-05-09 06:04:29", "77.75.76.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("55488", "10", "2017-05-09 06:04:37", "77.75.76.172", "56");
INSERT INTO `wp_gf_form_view` VALUES("55489", "3", "2017-05-09 07:13:21", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("55490", "10", "2017-05-09 07:13:24", "66.249.79.144", "17");
INSERT INTO `wp_gf_form_view` VALUES("55491", "3", "2017-05-09 08:06:39", "194.187.170.120", "23");
INSERT INTO `wp_gf_form_view` VALUES("55492", "10", "2017-05-09 08:06:40", "194.187.170.120", "161");
INSERT INTO `wp_gf_form_view` VALUES("55493", "13", "2017-05-09 08:28:11", "77.88.47.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("55494", "3", "2017-05-09 09:19:41", "5.255.250.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("55495", "11", "2017-05-09 09:42:57", "217.69.133.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("55496", "10", "2017-05-09 10:13:23", "35.184.189.105", "17");
INSERT INTO `wp_gf_form_view` VALUES("55497", "3", "2017-05-09 10:13:27", "35.184.189.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("55498", "12", "2017-05-09 11:21:54", "118.211.212.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("55499", "3", "2017-05-09 11:22:02", "118.211.212.40", "13");
INSERT INTO `wp_gf_form_view` VALUES("55500", "10", "2017-05-09 11:22:03", "118.211.212.40", "88");
INSERT INTO `wp_gf_form_view` VALUES("55501", "2", "2017-05-09 11:31:54", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55502", "11", "2017-05-09 11:32:21", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55503", "3", "2017-05-09 12:06:18", "141.8.143.242", "33");
INSERT INTO `wp_gf_form_view` VALUES("55504", "10", "2017-05-09 12:06:18", "141.8.143.242", "52");
INSERT INTO `wp_gf_form_view` VALUES("55505", "6", "2017-05-09 12:09:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55506", "9", "2017-05-09 12:09:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55507", "8", "2017-05-09 12:09:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55508", "13", "2017-05-09 12:09:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55509", "15", "2017-05-09 12:09:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55510", "3", "2017-05-09 14:40:49", "202.46.52.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("55511", "10", "2017-05-09 14:40:50", "202.46.52.63", "8");
INSERT INTO `wp_gf_form_view` VALUES("55512", "2", "2017-05-09 14:54:26", "141.8.143.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("55513", "3", "2017-05-09 15:08:04", "141.8.143.175", "42");
INSERT INTO `wp_gf_form_view` VALUES("55514", "10", "2017-05-09 15:08:05", "141.8.143.175", "232");
INSERT INTO `wp_gf_form_view` VALUES("55515", "2", "2017-05-09 15:33:46", "46.229.168.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("55516", "15", "2017-05-09 15:35:11", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("55517", "13", "2017-05-09 16:13:49", "68.180.230.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("55518", "3", "2017-05-09 17:02:06", "194.187.170.123", "5");
INSERT INTO `wp_gf_form_view` VALUES("55519", "10", "2017-05-09 17:02:09", "194.187.170.123", "24");
INSERT INTO `wp_gf_form_view` VALUES("55520", "6", "2017-05-09 18:06:23", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("55521", "3", "2017-05-09 18:06:31", "199.21.99.202", "33");
INSERT INTO `wp_gf_form_view` VALUES("55522", "10", "2017-05-09 18:06:31", "199.21.99.202", "52");
INSERT INTO `wp_gf_form_view` VALUES("55523", "14", "2017-05-09 18:16:28", "204.239.148.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("55524", "2", "2017-05-09 18:26:30", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("55525", "8", "2017-05-09 18:39:18", "40.77.167.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("55526", "9", "2017-05-09 18:58:33", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55527", "13", "2017-05-09 18:58:34", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55528", "15", "2017-05-09 18:58:35", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55529", "3", "2017-05-09 19:16:10", "66.249.79.144", "10");
INSERT INTO `wp_gf_form_view` VALUES("55530", "10", "2017-05-09 19:16:10", "66.249.79.144", "75");
INSERT INTO `wp_gf_form_view` VALUES("55531", "12", "2017-05-09 19:51:17", "202.46.53.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("55532", "15", "2017-05-09 19:57:05", "91.103.66.203", "2");
INSERT INTO `wp_gf_form_view` VALUES("55533", "15", "2017-05-09 19:57:05", "91.103.66.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("55534", "3", "2017-05-09 20:07:03", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("55535", "10", "2017-05-09 20:07:03", "199.21.99.202", "16");
INSERT INTO `wp_gf_form_view` VALUES("55536", "14", "2017-05-09 20:58:31", "24.108.1.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("55537", "6", "2017-05-09 21:06:32", "217.182.132.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("55538", "3", "2017-05-09 21:06:37", "217.182.132.180", "15");
INSERT INTO `wp_gf_form_view` VALUES("55539", "10", "2017-05-09 21:06:37", "217.182.132.180", "89");
INSERT INTO `wp_gf_form_view` VALUES("55540", "14", "2017-05-09 21:37:14", "216.232.150.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("55541", "11", "2017-05-09 21:43:38", "138.197.96.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("55542", "2", "2017-05-09 21:43:39", "138.197.96.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("55543", "3", "2017-05-09 22:04:35", "146.185.223.45", "7");
INSERT INTO `wp_gf_form_view` VALUES("55544", "13", "2017-05-09 22:04:36", "202.46.54.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("55545", "10", "2017-05-09 22:04:36", "146.185.223.45", "50");
INSERT INTO `wp_gf_form_view` VALUES("55546", "3", "2017-05-09 23:10:33", "35.184.189.105", "21");
INSERT INTO `wp_gf_form_view` VALUES("55547", "10", "2017-05-09 23:10:34", "35.184.189.105", "165");
INSERT INTO `wp_gf_form_view` VALUES("55548", "3", "2017-05-10 00:17:01", "202.46.54.142", "8");
INSERT INTO `wp_gf_form_view` VALUES("55549", "10", "2017-05-10 00:17:03", "202.46.54.142", "48");
INSERT INTO `wp_gf_form_view` VALUES("55550", "13", "2017-05-10 00:38:42", "194.187.170.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("55551", "12", "2017-05-10 00:48:34", "164.132.161.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("55552", "14", "2017-05-10 01:23:39", "202.46.58.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("55553", "3", "2017-05-10 01:57:03", "202.46.52.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("55554", "10", "2017-05-10 01:57:04", "202.46.52.177", "8");
INSERT INTO `wp_gf_form_view` VALUES("55555", "10", "2017-05-10 02:19:19", "51.255.65.15", "9");
INSERT INTO `wp_gf_form_view` VALUES("55556", "3", "2017-05-10 02:19:23", "51.255.65.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("55557", "3", "2017-05-10 03:03:39", "202.46.49.75", "8");
INSERT INTO `wp_gf_form_view` VALUES("55558", "10", "2017-05-10 03:03:40", "202.46.49.75", "40");
INSERT INTO `wp_gf_form_view` VALUES("55559", "3", "2017-05-10 04:10:20", "202.46.51.27", "32");
INSERT INTO `wp_gf_form_view` VALUES("55560", "10", "2017-05-10 04:10:20", "202.46.51.27", "39");
INSERT INTO `wp_gf_form_view` VALUES("55561", "6", "2017-05-10 04:27:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55562", "9", "2017-05-10 04:27:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55563", "8", "2017-05-10 04:27:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55564", "13", "2017-05-10 04:27:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55565", "15", "2017-05-10 04:27:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55566", "3", "2017-05-10 05:17:02", "202.46.53.142", "16");
INSERT INTO `wp_gf_form_view` VALUES("55567", "10", "2017-05-10 05:17:06", "202.46.53.142", "25");
INSERT INTO `wp_gf_form_view` VALUES("55568", "8", "2017-05-10 05:23:04", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55569", "13", "2017-05-10 05:23:05", "35.184.189.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("55570", "15", "2017-05-10 05:23:05", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55571", "10", "2017-05-10 06:03:25", "77.75.77.54", "47");
INSERT INTO `wp_gf_form_view` VALUES("55572", "3", "2017-05-10 06:03:26", "77.75.77.54", "32");
INSERT INTO `wp_gf_form_view` VALUES("55573", "6", "2017-05-10 06:55:42", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55574", "9", "2017-05-10 06:55:42", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55575", "8", "2017-05-10 06:55:42", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55576", "13", "2017-05-10 06:55:43", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55577", "15", "2017-05-10 06:55:44", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55578", "3", "2017-05-10 07:13:10", "77.75.79.17", "4");
INSERT INTO `wp_gf_form_view` VALUES("55579", "10", "2017-05-10 07:13:10", "77.75.79.17", "34");
INSERT INTO `wp_gf_form_view` VALUES("55580", "3", "2017-05-10 08:15:29", "157.55.39.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("55581", "10", "2017-05-10 08:15:29", "157.55.39.150", "8");
INSERT INTO `wp_gf_form_view` VALUES("55582", "10", "2017-05-10 09:04:38", "51.255.71.100", "17");
INSERT INTO `wp_gf_form_view` VALUES("55583", "3", "2017-05-10 09:04:40", "51.255.71.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("55584", "3", "2017-05-10 10:03:32", "77.75.79.101", "5");
INSERT INTO `wp_gf_form_view` VALUES("55585", "10", "2017-05-10 10:03:34", "77.75.79.101", "41");
INSERT INTO `wp_gf_form_view` VALUES("55586", "3", "2017-05-10 11:02:14", "77.75.76.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("55587", "10", "2017-05-10 11:02:14", "77.75.76.160", "32");
INSERT INTO `wp_gf_form_view` VALUES("55588", "3", "2017-05-10 12:07:32", "199.21.99.201", "5");
INSERT INTO `wp_gf_form_view` VALUES("55589", "10", "2017-05-10 12:07:33", "199.21.99.201", "24");
INSERT INTO `wp_gf_form_view` VALUES("55590", "14", "2017-05-10 12:35:48", "83.69.106.178", "3");
INSERT INTO `wp_gf_form_view` VALUES("55591", "14", "2017-05-10 13:06:27", "103.79.165.236", "2");
INSERT INTO `wp_gf_form_view` VALUES("55592", "3", "2017-05-10 13:12:08", "35.184.189.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("55593", "10", "2017-05-10 13:12:08", "35.184.189.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("55594", "3", "2017-05-10 14:02:00", "199.21.99.202", "33");
INSERT INTO `wp_gf_form_view` VALUES("55595", "10", "2017-05-10 14:02:01", "199.21.99.202", "45");
INSERT INTO `wp_gf_form_view` VALUES("55596", "6", "2017-05-10 14:20:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55597", "9", "2017-05-10 14:20:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55598", "8", "2017-05-10 14:20:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55599", "13", "2017-05-10 14:20:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55600", "15", "2017-05-10 14:20:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55601", "10", "2017-05-10 15:14:19", "217.182.132.187", "89");
INSERT INTO `wp_gf_form_view` VALUES("55602", "3", "2017-05-10 15:14:19", "217.182.132.187", "15");
INSERT INTO `wp_gf_form_view` VALUES("55603", "2", "2017-05-10 15:20:06", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55604", "11", "2017-05-10 15:29:08", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55605", "11", "2017-05-10 16:04:16", "51.255.65.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("55606", "3", "2017-05-10 17:18:03", "202.46.51.154", "13");
INSERT INTO `wp_gf_form_view` VALUES("55607", "10", "2017-05-10 17:18:12", "202.46.51.154", "88");
INSERT INTO `wp_gf_form_view` VALUES("55608", "11", "2017-05-10 17:36:05", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55609", "2", "2017-05-10 17:36:07", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55610", "9", "2017-05-10 17:51:21", "202.46.55.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("55611", "10", "2017-05-10 18:21:56", "5.188.211.14", "25");
INSERT INTO `wp_gf_form_view` VALUES("55612", "3", "2017-05-10 18:21:57", "5.188.211.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("55613", "14", "2017-05-10 18:28:18", "24.68.158.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("55614", "14", "2017-05-10 20:08:55", "159.255.163.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("55615", "3", "2017-05-10 20:11:57", "202.46.49.118", "6");
INSERT INTO `wp_gf_form_view` VALUES("55616", "10", "2017-05-10 20:11:57", "202.46.49.118", "40");
INSERT INTO `wp_gf_form_view` VALUES("55617", "11", "2017-05-10 20:30:30", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("55618", "2", "2017-05-10 20:30:32", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("55619", "3", "2017-05-10 21:18:40", "202.46.54.18", "12");
INSERT INTO `wp_gf_form_view` VALUES("55620", "10", "2017-05-10 21:18:42", "202.46.54.18", "64");
INSERT INTO `wp_gf_form_view` VALUES("55621", "2", "2017-05-10 21:51:16", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("55622", "11", "2017-05-10 21:51:33", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("55623", "3", "2017-05-10 22:11:12", "35.184.189.105", "10");
INSERT INTO `wp_gf_form_view` VALUES("55624", "10", "2017-05-10 22:11:13", "35.184.189.105", "56");
INSERT INTO `wp_gf_form_view` VALUES("55625", "3", "2017-05-10 23:32:06", "202.46.56.134", "11");
INSERT INTO `wp_gf_form_view` VALUES("55626", "10", "2017-05-10 23:32:08", "202.46.56.134", "72");
INSERT INTO `wp_gf_form_view` VALUES("55627", "2", "2017-05-10 23:32:56", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55628", "11", "2017-05-10 23:34:26", "40.77.167.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("55629", "3", "2017-05-11 00:05:18", "202.46.57.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("55630", "10", "2017-05-11 00:05:19", "202.46.57.70", "8");
INSERT INTO `wp_gf_form_view` VALUES("55631", "3", "2017-05-11 01:11:36", "157.55.39.150", "10");
INSERT INTO `wp_gf_form_view` VALUES("55632", "10", "2017-05-11 01:11:37", "157.55.39.150", "74");
INSERT INTO `wp_gf_form_view` VALUES("55633", "8", "2017-05-11 01:11:55", "202.46.55.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("55634", "2", "2017-05-11 01:30:55", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55635", "11", "2017-05-11 01:31:23", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55636", "3", "2017-05-11 02:05:49", "40.77.167.138", "9");
INSERT INTO `wp_gf_form_view` VALUES("55637", "10", "2017-05-11 02:05:49", "40.77.167.138", "56");
INSERT INTO `wp_gf_form_view` VALUES("55638", "2", "2017-05-11 02:30:37", "5.188.211.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("55639", "11", "2017-05-11 02:30:59", "5.188.211.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("55640", "14", "2017-05-11 02:41:48", "80.245.114.223", "3");
INSERT INTO `wp_gf_form_view` VALUES("55641", "3", "2017-05-11 03:01:31", "51.255.65.51", "3");
INSERT INTO `wp_gf_form_view` VALUES("55642", "10", "2017-05-11 03:01:40", "51.255.65.51", "25");
INSERT INTO `wp_gf_form_view` VALUES("55643", "3", "2017-05-11 04:04:26", "202.46.53.124", "9");
INSERT INTO `wp_gf_form_view` VALUES("55644", "10", "2017-05-11 04:04:27", "202.46.53.124", "59");
INSERT INTO `wp_gf_form_view` VALUES("55645", "3", "2017-05-11 05:10:47", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55646", "10", "2017-05-11 05:10:48", "35.184.189.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("55647", "3", "2017-05-11 06:02:44", "202.46.57.185", "7");
INSERT INTO `wp_gf_form_view` VALUES("55648", "10", "2017-05-11 06:02:51", "202.46.57.185", "41");
INSERT INTO `wp_gf_form_view` VALUES("55649", "5", "2017-05-11 07:00:14", "51.255.65.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("55650", "3", "2017-05-11 07:00:15", "51.255.65.5", "37");
INSERT INTO `wp_gf_form_view` VALUES("55651", "10", "2017-05-11 07:00:15", "51.255.65.5", "84");
INSERT INTO `wp_gf_form_view` VALUES("55652", "6", "2017-05-11 07:10:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55653", "9", "2017-05-11 07:10:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55654", "8", "2017-05-11 07:10:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55655", "13", "2017-05-11 07:10:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55656", "15", "2017-05-11 07:10:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55657", "11", "2017-05-11 07:32:10", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55658", "2", "2017-05-11 07:32:11", "104.154.189.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("55659", "3", "2017-05-11 08:17:20", "207.46.13.42", "7");
INSERT INTO `wp_gf_form_view` VALUES("55660", "10", "2017-05-11 08:17:25", "207.46.13.42", "40");
INSERT INTO `wp_gf_form_view` VALUES("55661", "10", "2017-05-11 09:18:42", "207.46.13.42", "38");
INSERT INTO `wp_gf_form_view` VALUES("55662", "3", "2017-05-11 09:18:43", "207.46.13.42", "30");
INSERT INTO `wp_gf_form_view` VALUES("55663", "6", "2017-05-11 09:59:37", "40.77.167.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("55664", "9", "2017-05-11 09:59:38", "40.77.167.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("55665", "8", "2017-05-11 09:59:38", "40.77.167.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("55666", "13", "2017-05-11 09:59:39", "40.77.167.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("55667", "15", "2017-05-11 09:59:40", "40.77.167.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("55668", "3", "2017-05-11 10:09:55", "35.184.189.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("55669", "10", "2017-05-11 10:09:55", "35.184.189.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("55670", "3", "2017-05-11 11:17:48", "207.46.13.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("55671", "10", "2017-05-11 11:17:52", "207.46.13.42", "24");
INSERT INTO `wp_gf_form_view` VALUES("55672", "3", "2017-05-11 12:16:36", "51.255.65.25", "14");
INSERT INTO `wp_gf_form_view` VALUES("55673", "10", "2017-05-11 12:16:37", "51.255.65.25", "89");
INSERT INTO `wp_gf_form_view` VALUES("55674", "2", "2017-05-11 12:24:25", "138.197.104.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("55675", "11", "2017-05-11 12:24:27", "138.197.104.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("55676", "3", "2017-05-11 13:02:24", "35.184.189.105", "11");
INSERT INTO `wp_gf_form_view` VALUES("55677", "10", "2017-05-11 13:02:24", "35.184.189.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("55678", "3", "2017-05-11 14:01:56", "46.119.117.60", "15");
INSERT INTO `wp_gf_form_view` VALUES("55679", "10", "2017-05-11 14:21:00", "35.184.189.105", "74");
INSERT INTO `wp_gf_form_view` VALUES("55680", "2", "2017-05-11 14:36:00", "5.188.211.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("55681", "11", "2017-05-11 14:36:41", "5.188.211.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("55682", "3", "2017-05-11 15:04:46", "178.165.88.182", "17");
INSERT INTO `wp_gf_form_view` VALUES("55683", "10", "2017-05-11 15:04:46", "178.165.88.182", "64");
INSERT INTO `wp_gf_form_view` VALUES("55684", "3", "2017-05-11 16:09:44", "77.75.76.170", "32");
INSERT INTO `wp_gf_form_view` VALUES("55685", "10", "2017-05-11 16:09:44", "77.75.76.170", "52");
INSERT INTO `wp_gf_form_view` VALUES("55686", "6", "2017-05-11 16:54:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55687", "9", "2017-05-11 16:54:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55688", "8", "2017-05-11 16:54:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55689", "13", "2017-05-11 16:54:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55690", "15", "2017-05-11 16:54:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55691", "3", "2017-05-11 17:00:33", "40.77.167.35", "23");
INSERT INTO `wp_gf_form_view` VALUES("55692", "10", "2017-05-11 17:00:33", "40.77.167.35", "148");
INSERT INTO `wp_gf_form_view` VALUES("55693", "2", "2017-05-11 17:10:07", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("55694", "11", "2017-05-11 17:10:36", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("55695", "9", "2017-05-11 17:23:17", "51.255.64.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("55696", "14", "2017-05-11 17:45:33", "134.60.51.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("55697", "10", "2017-05-11 18:33:10", "35.184.189.105", "34");
INSERT INTO `wp_gf_form_view` VALUES("55698", "3", "2017-05-11 18:33:21", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55699", "3", "2017-05-11 19:10:49", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55700", "10", "2017-05-11 19:10:50", "35.184.189.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("55701", "10", "2017-05-11 20:01:16", "35.184.189.105", "49");
INSERT INTO `wp_gf_form_view` VALUES("55702", "3", "2017-05-11 20:01:17", "35.184.189.105", "7");
INSERT INTO `wp_gf_form_view` VALUES("55703", "14", "2017-05-11 20:48:29", "96.50.106.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("55704", "15", "2017-05-11 20:53:21", "164.132.161.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("55705", "3", "2017-05-11 21:01:28", "77.75.79.95", "4");
INSERT INTO `wp_gf_form_view` VALUES("55706", "10", "2017-05-11 21:01:28", "77.75.79.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("55707", "14", "2017-05-11 21:04:32", "96.50.106.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("55708", "3", "2017-05-11 22:13:44", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55709", "10", "2017-05-11 22:13:49", "35.184.189.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("55710", "2", "2017-05-11 22:26:58", "37.221.166.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("55711", "3", "2017-05-11 23:05:29", "202.46.53.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("55712", "10", "2017-05-11 23:05:32", "202.46.53.56", "16");
INSERT INTO `wp_gf_form_view` VALUES("55713", "3", "2017-05-12 00:09:02", "108.180.193.188", "8");
INSERT INTO `wp_gf_form_view` VALUES("55714", "10", "2017-05-12 00:09:05", "108.180.193.188", "40");
INSERT INTO `wp_gf_form_view` VALUES("55715", "10", "2017-05-12 01:01:46", "35.184.189.105", "33");
INSERT INTO `wp_gf_form_view` VALUES("55716", "3", "2017-05-12 01:01:47", "35.184.189.105", "5");
INSERT INTO `wp_gf_form_view` VALUES("55717", "3", "2017-05-12 02:06:49", "202.46.53.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("55718", "10", "2017-05-12 02:06:49", "202.46.53.126", "17");
INSERT INTO `wp_gf_form_view` VALUES("55719", "3", "2017-05-12 03:29:53", "35.184.189.105", "6");
INSERT INTO `wp_gf_form_view` VALUES("55720", "10", "2017-05-12 03:29:55", "35.184.189.105", "32");
INSERT INTO `wp_gf_form_view` VALUES("55721", "10", "2017-05-12 04:13:38", "35.184.189.105", "34");
INSERT INTO `wp_gf_form_view` VALUES("55722", "3", "2017-05-12 04:13:38", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55723", "3", "2017-05-12 05:11:03", "24.68.120.230", "11");
INSERT INTO `wp_gf_form_view` VALUES("55724", "10", "2017-05-12 05:11:04", "24.68.120.230", "37");
INSERT INTO `wp_gf_form_view` VALUES("55725", "3", "2017-05-12 06:06:14", "40.77.167.2", "6");
INSERT INTO `wp_gf_form_view` VALUES("55726", "10", "2017-05-12 06:06:22", "40.77.167.2", "49");
INSERT INTO `wp_gf_form_view` VALUES("55727", "2", "2017-05-12 06:39:13", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("55728", "11", "2017-05-12 06:39:30", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("55729", "10", "2017-05-12 07:06:46", "202.46.56.117", "85");
INSERT INTO `wp_gf_form_view` VALUES("55730", "3", "2017-05-12 07:06:48", "202.46.56.117", "28");
INSERT INTO `wp_gf_form_view` VALUES("55731", "14", "2017-05-12 07:23:45", "64.180.191.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("55732", "13", "2017-05-12 07:40:18", "68.180.228.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("55733", "15", "2017-05-12 07:40:18", "68.180.228.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("55734", "14", "2017-05-12 08:11:09", "91.108.183.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("55735", "3", "2017-05-12 08:39:33", "66.249.79.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("55736", "10", "2017-05-12 08:39:38", "66.249.79.148", "16");
INSERT INTO `wp_gf_form_view` VALUES("55737", "3", "2017-05-12 09:07:54", "52.88.109.3", "39");
INSERT INTO `wp_gf_form_view` VALUES("55738", "6", "2017-05-12 09:07:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55739", "9", "2017-05-12 09:07:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55740", "8", "2017-05-12 09:07:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55741", "10", "2017-05-12 09:07:57", "52.88.109.3", "92");
INSERT INTO `wp_gf_form_view` VALUES("55742", "13", "2017-05-12 09:07:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55743", "15", "2017-05-12 09:07:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55744", "2", "2017-05-12 09:19:01", "5.188.211.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("55745", "11", "2017-05-12 09:19:27", "5.188.211.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("55746", "3", "2017-05-12 10:02:42", "35.184.189.105", "11");
INSERT INTO `wp_gf_form_view` VALUES("55747", "10", "2017-05-12 10:02:43", "35.184.189.105", "48");
INSERT INTO `wp_gf_form_view` VALUES("55748", "2", "2017-05-12 10:17:53", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("55749", "11", "2017-05-12 10:18:07", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("55750", "3", "2017-05-12 11:59:05", "40.77.167.43", "10");
INSERT INTO `wp_gf_form_view` VALUES("55751", "8", "2017-05-12 11:59:06", "40.77.167.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("55752", "13", "2017-05-12 11:59:06", "40.77.167.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("55753", "3", "2017-05-12 12:23:47", "202.46.54.98", "3");
INSERT INTO `wp_gf_form_view` VALUES("55754", "10", "2017-05-12 12:23:51", "202.46.54.98", "24");
INSERT INTO `wp_gf_form_view` VALUES("55755", "3", "2017-05-12 13:27:57", "137.74.207.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("55756", "10", "2017-05-12 13:27:59", "137.74.207.170", "17");
INSERT INTO `wp_gf_form_view` VALUES("55757", "14", "2017-05-12 14:02:12", "137.74.207.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("55758", "3", "2017-05-12 14:12:10", "35.184.189.105", "7");
INSERT INTO `wp_gf_form_view` VALUES("55759", "10", "2017-05-12 14:12:11", "35.184.189.105", "41");
INSERT INTO `wp_gf_form_view` VALUES("55760", "2", "2017-05-12 15:11:04", "40.77.167.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("55761", "3", "2017-05-12 15:13:02", "202.46.57.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("55762", "10", "2017-05-12 15:13:04", "202.46.57.77", "16");
INSERT INTO `wp_gf_form_view` VALUES("55763", "14", "2017-05-12 15:32:38", "24.68.4.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("55764", "3", "2017-05-12 16:19:41", "202.46.58.152", "5");
INSERT INTO `wp_gf_form_view` VALUES("55765", "10", "2017-05-12 16:19:43", "202.46.58.152", "32");
INSERT INTO `wp_gf_form_view` VALUES("55766", "14", "2017-05-12 16:33:19", "24.69.141.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("55767", "3", "2017-05-12 17:03:48", "46.119.117.60", "10");
INSERT INTO `wp_gf_form_view` VALUES("55768", "3", "2017-05-12 17:03:48", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("55769", "3", "2017-05-12 17:03:48", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("55770", "3", "2017-05-12 17:03:48", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("55771", "3", "2017-05-12 17:03:48", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("55772", "10", "2017-05-12 17:25:07", "217.182.132.37", "73");
INSERT INTO `wp_gf_form_view` VALUES("55773", "3", "2017-05-12 18:03:53", "66.249.79.144", "38");
INSERT INTO `wp_gf_form_view` VALUES("55774", "10", "2017-05-12 18:03:53", "66.249.79.144", "85");
INSERT INTO `wp_gf_form_view` VALUES("55775", "6", "2017-05-12 18:59:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55776", "9", "2017-05-12 18:59:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55777", "8", "2017-05-12 18:59:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55778", "13", "2017-05-12 18:59:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55779", "15", "2017-05-12 18:59:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55780", "2", "2017-05-12 19:11:42", "52.43.117.234", "2");
INSERT INTO `wp_gf_form_view` VALUES("55781", "10", "2017-05-12 19:38:43", "35.184.189.105", "99");
INSERT INTO `wp_gf_form_view` VALUES("55782", "3", "2017-05-12 19:38:46", "35.184.189.105", "12");
INSERT INTO `wp_gf_form_view` VALUES("55783", "3", "2017-05-12 20:18:44", "207.46.13.42", "91");
INSERT INTO `wp_gf_form_view` VALUES("55784", "10", "2017-05-12 20:18:45", "207.46.13.42", "512");
INSERT INTO `wp_gf_form_view` VALUES("55785", "9", "2017-05-12 20:28:53", "40.77.167.43", "3");
INSERT INTO `wp_gf_form_view` VALUES("55786", "6", "2017-05-12 20:29:13", "157.55.39.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("55787", "8", "2017-05-12 20:29:19", "157.55.39.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("55788", "13", "2017-05-12 20:29:21", "157.55.39.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("55789", "15", "2017-05-12 20:29:22", "157.55.39.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("55790", "7", "2017-05-12 20:29:36", "157.55.39.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("55791", "14", "2017-05-12 21:13:20", "75.157.26.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("55792", "3", "2017-05-12 21:22:24", "164.132.161.58", "15");
INSERT INTO `wp_gf_form_view` VALUES("55793", "10", "2017-05-12 21:22:26", "164.132.161.58", "93");
INSERT INTO `wp_gf_form_view` VALUES("55794", "3", "2017-05-12 22:11:06", "207.102.236.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("55795", "10", "2017-05-12 22:11:07", "207.102.236.24", "17");
INSERT INTO `wp_gf_form_view` VALUES("55796", "3", "2017-05-12 23:01:40", "207.46.13.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("55797", "10", "2017-05-12 23:01:41", "207.46.13.42", "24");
INSERT INTO `wp_gf_form_view` VALUES("55798", "14", "2017-05-12 23:49:10", "207.194.133.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("55799", "10", "2017-05-13 00:00:07", "217.182.132.50", "87");
INSERT INTO `wp_gf_form_view` VALUES("55800", "3", "2017-05-13 00:00:07", "217.182.132.50", "38");
INSERT INTO `wp_gf_form_view` VALUES("55801", "6", "2017-05-13 00:38:10", "5.188.211.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("55802", "9", "2017-05-13 00:38:11", "5.188.211.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("55803", "8", "2017-05-13 00:38:11", "5.188.211.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("55804", "13", "2017-05-13 00:38:12", "5.188.211.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("55805", "15", "2017-05-13 00:38:13", "5.188.211.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("55806", "5", "2017-05-13 00:51:52", "77.75.77.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("55807", "3", "2017-05-13 01:00:10", "64.62.210.39", "23");
INSERT INTO `wp_gf_form_view` VALUES("55808", "10", "2017-05-13 01:00:10", "64.62.210.39", "44");
INSERT INTO `wp_gf_form_view` VALUES("55809", "8", "2017-05-13 01:49:28", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55810", "13", "2017-05-13 01:49:29", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55811", "15", "2017-05-13 01:49:29", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55812", "12", "2017-05-13 01:53:15", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("55813", "11", "2017-05-13 02:00:57", "138.197.96.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("55814", "3", "2017-05-13 02:00:57", "138.197.96.40", "14");
INSERT INTO `wp_gf_form_view` VALUES("55815", "2", "2017-05-13 02:00:59", "138.197.96.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("55816", "10", "2017-05-13 02:01:03", "138.197.96.40", "98");
INSERT INTO `wp_gf_form_view` VALUES("55817", "10", "2017-05-13 02:01:03", "138.197.96.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("55818", "10", "2017-05-13 02:01:03", "138.197.96.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("55819", "3", "2017-05-13 03:28:02", "46.118.155.24", "8");
INSERT INTO `wp_gf_form_view` VALUES("55820", "10", "2017-05-13 03:37:55", "35.184.189.105", "17");
INSERT INTO `wp_gf_form_view` VALUES("55821", "8", "2017-05-13 03:58:48", "202.46.54.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("55822", "3", "2017-05-13 04:20:19", "35.184.189.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("55823", "10", "2017-05-13 04:20:19", "35.184.189.105", "17");
INSERT INTO `wp_gf_form_view` VALUES("55824", "3", "2017-05-13 05:11:32", "202.46.51.205", "3");
INSERT INTO `wp_gf_form_view` VALUES("55825", "10", "2017-05-13 05:11:33", "202.46.51.205", "24");
INSERT INTO `wp_gf_form_view` VALUES("55826", "3", "2017-05-13 06:08:46", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55827", "10", "2017-05-13 06:08:49", "35.184.189.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("55828", "14", "2017-05-13 06:39:48", "154.20.32.249", "1");
INSERT INTO `wp_gf_form_view` VALUES("55829", "11", "2017-05-13 07:01:47", "217.122.185.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("55830", "3", "2017-05-13 07:01:51", "217.122.185.187", "10");
INSERT INTO `wp_gf_form_view` VALUES("55831", "10", "2017-05-13 07:01:51", "217.122.185.187", "72");
INSERT INTO `wp_gf_form_view` VALUES("55832", "2", "2017-05-13 07:02:37", "217.122.185.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("55833", "3", "2017-05-13 08:33:13", "202.46.48.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("55834", "10", "2017-05-13 08:33:15", "202.46.48.195", "25");
INSERT INTO `wp_gf_form_view` VALUES("55835", "3", "2017-05-13 09:34:40", "207.46.13.42", "11");
INSERT INTO `wp_gf_form_view` VALUES("55836", "10", "2017-05-13 09:34:42", "207.46.13.42", "80");
INSERT INTO `wp_gf_form_view` VALUES("55837", "11", "2017-05-13 09:45:40", "70.35.194.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("55838", "2", "2017-05-13 09:46:16", "70.35.194.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("55839", "3", "2017-05-13 10:03:28", "46.118.116.168", "9");
INSERT INTO `wp_gf_form_view` VALUES("55840", "10", "2017-05-13 10:34:15", "77.75.79.95", "24");
INSERT INTO `wp_gf_form_view` VALUES("55841", "3", "2017-05-13 11:20:01", "202.46.53.154", "30");
INSERT INTO `wp_gf_form_view` VALUES("55842", "10", "2017-05-13 11:20:14", "202.46.53.154", "37");
INSERT INTO `wp_gf_form_view` VALUES("55843", "6", "2017-05-13 11:45:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55844", "9", "2017-05-13 11:45:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55845", "8", "2017-05-13 11:45:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55846", "13", "2017-05-13 11:45:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55847", "15", "2017-05-13 11:45:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55848", "3", "2017-05-13 12:12:56", "35.184.189.105", "34");
INSERT INTO `wp_gf_form_view` VALUES("55849", "10", "2017-05-13 12:13:01", "35.184.189.105", "28");
INSERT INTO `wp_gf_form_view` VALUES("55850", "6", "2017-05-13 12:25:07", "164.132.161.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55851", "9", "2017-05-13 12:25:08", "164.132.161.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55852", "8", "2017-05-13 12:25:08", "164.132.161.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55853", "13", "2017-05-13 12:25:09", "164.132.161.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55854", "15", "2017-05-13 12:25:10", "164.132.161.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55855", "3", "2017-05-13 13:12:19", "202.46.49.93", "5");
INSERT INTO `wp_gf_form_view` VALUES("55856", "10", "2017-05-13 13:12:19", "202.46.49.93", "42");
INSERT INTO `wp_gf_form_view` VALUES("55857", "3", "2017-05-13 14:04:33", "40.77.167.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("55858", "10", "2017-05-13 14:04:33", "40.77.167.15", "32");
INSERT INTO `wp_gf_form_view` VALUES("55859", "14", "2017-05-13 14:55:52", "198.98.96.203", "3");
INSERT INTO `wp_gf_form_view` VALUES("55860", "3", "2017-05-13 15:00:36", "178.137.4.41", "10");
INSERT INTO `wp_gf_form_view` VALUES("55861", "10", "2017-05-13 15:08:56", "51.255.71.100", "66");
INSERT INTO `wp_gf_form_view` VALUES("55862", "2", "2017-05-13 16:05:08", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("55863", "3", "2017-05-13 16:05:16", "188.40.46.135", "111");
INSERT INTO `wp_gf_form_view` VALUES("55864", "10", "2017-05-13 16:05:16", "188.40.46.135", "191");
INSERT INTO `wp_gf_form_view` VALUES("55865", "14", "2017-05-13 16:08:36", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("55866", "6", "2017-05-13 16:37:31", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("55867", "9", "2017-05-13 16:37:31", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("55868", "8", "2017-05-13 16:37:32", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("55869", "13", "2017-05-13 16:37:32", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("55870", "15", "2017-05-13 16:37:33", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("55871", "3", "2017-05-13 17:03:09", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55872", "10", "2017-05-13 17:03:09", "35.184.189.105", "8");
INSERT INTO `wp_gf_form_view` VALUES("55873", "11", "2017-05-13 17:27:23", "77.75.76.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("55874", "3", "2017-05-13 18:04:01", "46.118.116.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("55875", "10", "2017-05-13 18:04:31", "202.46.54.131", "42");
INSERT INTO `wp_gf_form_view` VALUES("55876", "3", "2017-05-13 19:07:20", "163.172.108.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("55877", "10", "2017-05-13 19:07:20", "163.172.108.176", "32");
INSERT INTO `wp_gf_form_view` VALUES("55878", "3", "2017-05-13 20:12:12", "35.184.189.105", "33");
INSERT INTO `wp_gf_form_view` VALUES("55879", "10", "2017-05-13 20:12:16", "35.184.189.105", "53");
INSERT INTO `wp_gf_form_view` VALUES("55880", "6", "2017-05-13 20:43:47", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55881", "9", "2017-05-13 20:43:47", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55882", "8", "2017-05-13 20:43:48", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55883", "13", "2017-05-13 20:43:49", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55884", "15", "2017-05-13 20:43:51", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55885", "3", "2017-05-13 21:32:18", "46.119.117.60", "37");
INSERT INTO `wp_gf_form_view` VALUES("55886", "3", "2017-05-13 21:32:18", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("55887", "3", "2017-05-13 21:32:18", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("55888", "6", "2017-05-13 21:32:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55889", "9", "2017-05-13 21:32:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55890", "8", "2017-05-13 21:32:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55891", "10", "2017-05-13 21:32:47", "52.88.109.3", "68");
INSERT INTO `wp_gf_form_view` VALUES("55892", "13", "2017-05-13 21:32:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55893", "15", "2017-05-13 21:32:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55894", "11", "2017-05-13 21:42:04", "88.99.211.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("55895", "2", "2017-05-13 21:42:06", "88.99.211.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("55896", "10", "2017-05-13 22:12:25", "35.184.189.105", "33");
INSERT INTO `wp_gf_form_view` VALUES("55897", "3", "2017-05-13 22:12:35", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55898", "3", "2017-05-13 23:01:46", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55899", "10", "2017-05-13 23:01:48", "35.184.189.105", "32");
INSERT INTO `wp_gf_form_view` VALUES("55900", "3", "2017-05-14 00:06:04", "157.55.39.217", "4");
INSERT INTO `wp_gf_form_view` VALUES("55901", "10", "2017-05-14 00:06:04", "157.55.39.217", "32");
INSERT INTO `wp_gf_form_view` VALUES("55902", "13", "2017-05-14 00:30:26", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("55903", "3", "2017-05-14 01:22:51", "202.46.57.203", "17");
INSERT INTO `wp_gf_form_view` VALUES("55904", "10", "2017-05-14 01:22:56", "202.46.57.203", "20");
INSERT INTO `wp_gf_form_view` VALUES("55905", "13", "2017-05-14 01:25:52", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55906", "15", "2017-05-14 01:25:53", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55907", "3", "2017-05-14 02:47:28", "66.249.79.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("55908", "10", "2017-05-14 02:47:29", "66.249.79.144", "16");
INSERT INTO `wp_gf_form_view` VALUES("55909", "10", "2017-05-14 03:06:04", "35.184.189.105", "25");
INSERT INTO `wp_gf_form_view` VALUES("55910", "3", "2017-05-14 03:06:05", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55911", "3", "2017-05-14 04:00:49", "66.249.79.140", "34");
INSERT INTO `wp_gf_form_view` VALUES("55912", "10", "2017-05-14 04:00:49", "66.249.79.140", "44");
INSERT INTO `wp_gf_form_view` VALUES("55913", "6", "2017-05-14 04:27:16", "5.188.211.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("55914", "9", "2017-05-14 04:27:16", "5.188.211.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("55915", "8", "2017-05-14 04:27:16", "5.188.211.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("55916", "13", "2017-05-14 04:27:17", "5.188.211.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("55917", "15", "2017-05-14 04:27:17", "5.188.211.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("55918", "3", "2017-05-14 05:14:58", "46.118.155.24", "13");
INSERT INTO `wp_gf_form_view` VALUES("55919", "3", "2017-05-14 05:14:58", "46.118.155.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("55920", "10", "2017-05-14 05:18:24", "164.132.161.49", "75");
INSERT INTO `wp_gf_form_view` VALUES("55921", "15", "2017-05-14 05:22:21", "46.4.32.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("55922", "14", "2017-05-14 06:13:05", "68.180.228.235", "2");
INSERT INTO `wp_gf_form_view` VALUES("55923", "3", "2017-05-14 06:14:16", "178.137.4.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("55924", "10", "2017-05-14 06:41:29", "35.184.189.105", "8");
INSERT INTO `wp_gf_form_view` VALUES("55925", "3", "2017-05-14 07:31:13", "202.46.58.27", "3");
INSERT INTO `wp_gf_form_view` VALUES("55926", "10", "2017-05-14 07:31:17", "202.46.58.27", "16");
INSERT INTO `wp_gf_form_view` VALUES("55927", "3", "2017-05-14 08:09:00", "35.184.189.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("55928", "10", "2017-05-14 08:09:01", "35.184.189.105", "24");
INSERT INTO `wp_gf_form_view` VALUES("55929", "3", "2017-05-14 09:54:07", "5.188.211.70", "4");
INSERT INTO `wp_gf_form_view` VALUES("55930", "10", "2017-05-14 09:54:08", "5.188.211.70", "33");
INSERT INTO `wp_gf_form_view` VALUES("55931", "2", "2017-05-14 09:54:13", "5.188.211.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("55932", "11", "2017-05-14 09:54:46", "5.188.211.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("55933", "3", "2017-05-14 10:27:06", "217.182.132.14", "5");
INSERT INTO `wp_gf_form_view` VALUES("55934", "10", "2017-05-14 10:27:06", "217.182.132.14", "24");
INSERT INTO `wp_gf_form_view` VALUES("55935", "3", "2017-05-14 11:27:14", "46.229.168.68", "47");
INSERT INTO `wp_gf_form_view` VALUES("55936", "10", "2017-05-14 11:27:17", "46.229.168.68", "172");
INSERT INTO `wp_gf_form_view` VALUES("55937", "6", "2017-05-14 11:28:07", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55938", "9", "2017-05-14 11:28:07", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55939", "8", "2017-05-14 11:28:08", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55940", "13", "2017-05-14 11:28:08", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55941", "15", "2017-05-14 11:28:09", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55942", "10", "2017-05-14 12:33:28", "35.184.189.105", "34");
INSERT INTO `wp_gf_form_view` VALUES("55943", "3", "2017-05-14 12:33:40", "35.184.189.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("55944", "3", "2017-05-14 13:21:07", "51.255.65.52", "5");
INSERT INTO `wp_gf_form_view` VALUES("55945", "10", "2017-05-14 13:21:07", "51.255.65.52", "16");
INSERT INTO `wp_gf_form_view` VALUES("55946", "3", "2017-05-14 14:00:34", "68.180.228.235", "38");
INSERT INTO `wp_gf_form_view` VALUES("55947", "10", "2017-05-14 14:00:36", "68.180.228.235", "76");
INSERT INTO `wp_gf_form_view` VALUES("55948", "6", "2017-05-14 14:22:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55949", "9", "2017-05-14 14:22:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55950", "8", "2017-05-14 14:22:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("55951", "13", "2017-05-14 14:22:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55952", "15", "2017-05-14 14:22:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55953", "2", "2017-05-14 14:53:15", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("55954", "11", "2017-05-14 14:53:33", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("55955", "3", "2017-05-14 15:01:51", "35.184.189.105", "14");
INSERT INTO `wp_gf_form_view` VALUES("55956", "10", "2017-05-14 15:01:51", "35.184.189.105", "40");
INSERT INTO `wp_gf_form_view` VALUES("55957", "3", "2017-05-14 16:03:11", "184.69.189.158", "13");
INSERT INTO `wp_gf_form_view` VALUES("55958", "10", "2017-05-14 16:03:11", "184.69.189.158", "72");
INSERT INTO `wp_gf_form_view` VALUES("55959", "2", "2017-05-14 16:43:08", "138.197.111.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("55960", "11", "2017-05-14 16:43:09", "138.197.111.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("55961", "3", "2017-05-14 17:41:29", "136.243.17.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("55962", "10", "2017-05-14 17:41:31", "136.243.17.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("55963", "3", "2017-05-14 18:05:58", "35.184.189.105", "17");
INSERT INTO `wp_gf_form_view` VALUES("55964", "10", "2017-05-14 18:05:58", "35.184.189.105", "38");
INSERT INTO `wp_gf_form_view` VALUES("55965", "6", "2017-05-14 18:17:25", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55966", "9", "2017-05-14 18:17:25", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55967", "13", "2017-05-14 18:17:25", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55968", "15", "2017-05-14 18:17:26", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55969", "3", "2017-05-14 19:06:59", "35.184.189.105", "6");
INSERT INTO `wp_gf_form_view` VALUES("55970", "10", "2017-05-14 19:07:04", "35.184.189.105", "32");
INSERT INTO `wp_gf_form_view` VALUES("55971", "2", "2017-05-14 19:49:43", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("55972", "14", "2017-05-14 19:49:48", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("55973", "3", "2017-05-14 20:17:20", "66.249.79.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("55974", "10", "2017-05-14 20:17:21", "66.249.79.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("55975", "10", "2017-05-14 21:04:23", "68.180.228.235", "9");
INSERT INTO `wp_gf_form_view` VALUES("55976", "3", "2017-05-14 21:22:34", "46.118.116.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("55977", "3", "2017-05-14 22:03:30", "46.118.116.168", "5");
INSERT INTO `wp_gf_form_view` VALUES("55978", "10", "2017-05-14 22:04:11", "202.46.50.134", "25");
INSERT INTO `wp_gf_form_view` VALUES("55979", "14", "2017-05-14 23:02:57", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("55980", "3", "2017-05-14 23:44:10", "202.46.56.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("55981", "10", "2017-05-14 23:44:12", "202.46.56.134", "17");
INSERT INTO `wp_gf_form_view` VALUES("55982", "10", "2017-05-15 00:06:28", "35.184.189.105", "67");
INSERT INTO `wp_gf_form_view` VALUES("55983", "3", "2017-05-15 00:06:29", "35.184.189.105", "50");
INSERT INTO `wp_gf_form_view` VALUES("55984", "6", "2017-05-15 00:22:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55985", "9", "2017-05-15 00:22:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("55986", "8", "2017-05-15 00:22:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("55987", "13", "2017-05-15 00:22:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("55988", "15", "2017-05-15 00:22:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("55989", "10", "2017-05-15 01:20:16", "35.184.189.105", "17");
INSERT INTO `wp_gf_form_view` VALUES("55990", "3", "2017-05-15 01:20:17", "35.184.189.105", "6");
INSERT INTO `wp_gf_form_view` VALUES("55991", "8", "2017-05-15 01:48:59", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55992", "13", "2017-05-15 01:48:59", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55993", "15", "2017-05-15 01:48:59", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("55994", "14", "2017-05-15 02:35:49", "103.39.237.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("55995", "10", "2017-05-15 02:54:55", "24.108.13.92", "17");
INSERT INTO `wp_gf_form_view` VALUES("55996", "3", "2017-05-15 02:57:48", "35.184.189.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("55997", "3", "2017-05-15 04:00:18", "202.46.53.64", "6");
INSERT INTO `wp_gf_form_view` VALUES("55998", "10", "2017-05-15 04:00:19", "202.46.53.64", "33");
INSERT INTO `wp_gf_form_view` VALUES("55999", "3", "2017-05-15 05:30:55", "35.184.189.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("56000", "10", "2017-05-15 05:30:57", "35.184.189.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("56001", "3", "2017-05-15 06:11:31", "46.119.117.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("56002", "3", "2017-05-15 06:11:31", "77.75.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("56003", "3", "2017-05-15 06:11:31", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("56004", "10", "2017-05-15 06:11:35", "77.75.76.161", "24");
INSERT INTO `wp_gf_form_view` VALUES("56005", "11", "2017-05-15 06:43:45", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("56006", "3", "2017-05-15 07:06:54", "77.75.78.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("56007", "10", "2017-05-15 07:06:55", "77.75.78.167", "16");
INSERT INTO `wp_gf_form_view` VALUES("56008", "10", "2017-05-15 08:02:31", "35.184.189.105", "25");
INSERT INTO `wp_gf_form_view` VALUES("56009", "3", "2017-05-15 08:02:34", "35.184.189.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("56010", "3", "2017-05-15 10:21:37", "217.182.132.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("56011", "10", "2017-05-15 10:21:39", "217.182.132.185", "16");
INSERT INTO `wp_gf_form_view` VALUES("56012", "3", "2017-05-15 11:05:32", "35.184.189.105", "12");
INSERT INTO `wp_gf_form_view` VALUES("56013", "10", "2017-05-15 11:05:33", "35.184.189.105", "32");
INSERT INTO `wp_gf_form_view` VALUES("56014", "2", "2017-05-15 11:17:16", "5.62.43.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("56015", "8", "2017-05-15 11:25:14", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("56016", "13", "2017-05-15 11:25:15", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("56017", "15", "2017-05-15 11:25:15", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("56018", "3", "2017-05-15 12:03:11", "35.184.189.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("56019", "10", "2017-05-15 12:03:11", "35.184.189.105", "16");
INSERT INTO `wp_gf_form_view` VALUES("56020", "3", "2017-05-15 13:12:17", "202.46.51.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("56021", "10", "2017-05-15 13:12:19", "202.46.51.89", "16");
INSERT INTO `wp_gf_form_view` VALUES("56022", "2", "2017-05-15 14:11:29", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("56023", "3", "2017-05-15 14:52:18", "202.46.52.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("56024", "10", "2017-05-15 14:52:19", "202.46.52.179", "8");
INSERT INTO `wp_gf_form_view` VALUES("56025", "3", "2017-05-15 16:00:55", "157.55.39.217", "20");
INSERT INTO `wp_gf_form_view` VALUES("56026", "10", "2017-05-15 16:01:01", "157.55.39.217", "68");
INSERT INTO `wp_gf_form_view` VALUES("56027", "3", "2017-05-15 17:01:53", "202.46.54.142", "27");
INSERT INTO `wp_gf_form_view` VALUES("56028", "10", "2017-05-15 17:01:53", "202.46.54.142", "12");
INSERT INTO `wp_gf_form_view` VALUES("56029", "6", "2017-05-15 17:58:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56030", "9", "2017-05-15 17:58:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56031", "8", "2017-05-15 17:58:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56032", "13", "2017-05-15 17:58:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56033", "15", "2017-05-15 17:58:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56034", "3", "2017-05-15 18:14:30", "68.180.228.235", "8");
INSERT INTO `wp_gf_form_view` VALUES("56035", "10", "2017-05-15 18:14:30", "68.180.228.235", "48");
INSERT INTO `wp_gf_form_view` VALUES("56036", "2", "2017-05-15 18:51:24", "5.62.43.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("56037", "3", "2017-05-15 19:06:57", "5.62.43.52", "8");
INSERT INTO `wp_gf_form_view` VALUES("56038", "10", "2017-05-15 19:06:58", "5.62.43.52", "40");
INSERT INTO `wp_gf_form_view` VALUES("56039", "3", "2017-05-15 20:00:32", "66.249.79.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("56040", "10", "2017-05-15 20:00:32", "66.249.79.148", "16");
INSERT INTO `wp_gf_form_view` VALUES("56041", "10", "2017-05-15 21:12:08", "77.75.79.119", "73");
INSERT INTO `wp_gf_form_view` VALUES("56042", "3", "2017-05-15 21:12:13", "77.75.79.119", "11");
INSERT INTO `wp_gf_form_view` VALUES("56043", "3", "2017-05-15 22:09:14", "77.75.79.11", "7");
INSERT INTO `wp_gf_form_view` VALUES("56044", "10", "2017-05-15 22:09:17", "77.75.79.11", "40");
INSERT INTO `wp_gf_form_view` VALUES("56045", "2", "2017-05-15 22:45:50", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("56046", "11", "2017-05-15 22:46:27", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("56047", "3", "2017-05-15 23:01:08", "142.25.113.201", "3");
INSERT INTO `wp_gf_form_view` VALUES("56048", "10", "2017-05-15 23:01:08", "142.25.113.201", "24");
INSERT INTO `wp_gf_form_view` VALUES("56049", "3", "2017-05-16 00:20:56", "217.182.132.21", "4");
INSERT INTO `wp_gf_form_view` VALUES("56050", "10", "2017-05-16 00:20:56", "217.182.132.21", "25");
INSERT INTO `wp_gf_form_view` VALUES("56051", "14", "2017-05-16 00:56:28", "24.108.24.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("56052", "2", "2017-05-16 01:56:06", "24.108.24.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("56053", "3", "2017-05-16 01:59:06", "24.108.24.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("56054", "10", "2017-05-16 01:59:06", "24.108.24.50", "17");
INSERT INTO `wp_gf_form_view` VALUES("56055", "10", "2017-05-16 02:00:09", "24.108.24.50", "26");
INSERT INTO `wp_gf_form_view` VALUES("56056", "3", "2017-05-16 02:00:09", "24.108.24.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("56057", "6", "2017-05-16 02:49:56", "202.46.49.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("56058", "3", "2017-05-16 03:23:18", "202.46.55.124", "5");
INSERT INTO `wp_gf_form_view` VALUES("56059", "10", "2017-05-16 03:23:21", "202.46.55.124", "16");
INSERT INTO `wp_gf_form_view` VALUES("56060", "2", "2017-05-16 03:58:35", "66.249.79.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("56061", "3", "2017-05-16 04:20:57", "217.182.132.33", "31");
INSERT INTO `wp_gf_form_view` VALUES("56062", "10", "2017-05-16 04:20:58", "217.182.132.33", "20");
INSERT INTO `wp_gf_form_view` VALUES("56063", "6", "2017-05-16 04:26:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56064", "9", "2017-05-16 04:26:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56065", "8", "2017-05-16 04:26:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56066", "13", "2017-05-16 04:26:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56067", "15", "2017-05-16 04:26:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56068", "3", "2017-05-16 05:26:25", "40.77.167.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("56069", "10", "2017-05-16 05:26:25", "40.77.167.77", "24");
INSERT INTO `wp_gf_form_view` VALUES("56070", "11", "2017-05-16 06:04:19", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56071", "2", "2017-05-16 06:04:19", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56072", "3", "2017-05-16 06:04:20", "138.197.104.18", "12");
INSERT INTO `wp_gf_form_view` VALUES("56073", "3", "2017-05-16 06:04:20", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56074", "3", "2017-05-16 06:04:20", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56075", "3", "2017-05-16 06:04:20", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56076", "3", "2017-05-16 06:04:20", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56077", "10", "2017-05-16 06:04:35", "138.197.104.18", "95");
INSERT INTO `wp_gf_form_view` VALUES("56078", "10", "2017-05-16 06:04:35", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56079", "10", "2017-05-16 06:04:35", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56080", "10", "2017-05-16 06:04:35", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56081", "10", "2017-05-16 06:04:35", "138.197.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("56082", "3", "2017-05-16 07:14:05", "202.46.54.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("56083", "10", "2017-05-16 07:14:08", "202.46.54.130", "32");
INSERT INTO `wp_gf_form_view` VALUES("56084", "14", "2017-05-16 07:16:14", "96.50.117.220", "4");
INSERT INTO `wp_gf_form_view` VALUES("56085", "11", "2017-05-16 07:19:26", "96.50.117.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("56086", "8", "2017-05-16 07:24:07", "51.255.65.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("56087", "6", "2017-05-16 07:47:20", "202.46.53.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("56088", "3", "2017-05-16 08:04:31", "66.249.79.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("56089", "10", "2017-05-16 08:04:31", "66.249.79.140", "25");
INSERT INTO `wp_gf_form_view` VALUES("56090", "3", "2017-05-16 09:10:05", "40.77.167.43", "3");
INSERT INTO `wp_gf_form_view` VALUES("56091", "10", "2017-05-16 09:10:06", "40.77.167.43", "16");
INSERT INTO `wp_gf_form_view` VALUES("56092", "5", "2017-05-16 10:06:16", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("56093", "3", "2017-05-16 10:06:23", "77.75.79.72", "5");
INSERT INTO `wp_gf_form_view` VALUES("56094", "10", "2017-05-16 10:06:27", "77.75.79.72", "24");
INSERT INTO `wp_gf_form_view` VALUES("56095", "3", "2017-05-16 11:02:19", "77.75.77.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("56096", "10", "2017-05-16 11:02:19", "77.75.77.32", "24");
INSERT INTO `wp_gf_form_view` VALUES("56097", "3", "2017-05-16 12:06:53", "202.46.55.142", "5");
INSERT INTO `wp_gf_form_view` VALUES("56098", "10", "2017-05-16 12:06:57", "202.46.55.142", "16");
INSERT INTO `wp_gf_form_view` VALUES("56099", "3", "2017-05-16 13:04:45", "77.75.78.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("56100", "10", "2017-05-16 13:04:47", "77.75.78.167", "24");
INSERT INTO `wp_gf_form_view` VALUES("56101", "3", "2017-05-16 14:20:11", "202.46.50.199", "2");
INSERT INTO `wp_gf_form_view` VALUES("56102", "10", "2017-05-16 14:20:13", "202.46.50.199", "8");
INSERT INTO `wp_gf_form_view` VALUES("56103", "3", "2017-05-16 15:13:35", "167.114.172.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("56104", "10", "2017-05-16 15:13:37", "167.114.172.223", "16");
INSERT INTO `wp_gf_form_view` VALUES("56105", "2", "2017-05-16 15:13:43", "167.114.172.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("56106", "3", "2017-05-16 16:17:50", "68.180.228.235", "30");
INSERT INTO `wp_gf_form_view` VALUES("56107", "6", "2017-05-16 16:17:55", "68.180.228.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("56108", "9", "2017-05-16 16:17:56", "68.180.228.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("56109", "8", "2017-05-16 16:17:56", "68.180.228.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("56110", "10", "2017-05-16 16:17:57", "68.180.228.235", "29");
INSERT INTO `wp_gf_form_view` VALUES("56111", "13", "2017-05-16 16:17:57", "68.180.228.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("56112", "15", "2017-05-16 16:17:58", "68.180.228.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("56113", "3", "2017-05-16 17:18:15", "46.118.116.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("56114", "3", "2017-05-16 17:18:15", "46.118.116.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("56115", "14", "2017-05-16 17:25:53", "24.69.140.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("56116", "3", "2017-05-16 18:15:20", "184.66.49.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("56117", "10", "2017-05-16 18:15:21", "184.66.49.231", "17");
INSERT INTO `wp_gf_form_view` VALUES("56118", "14", "2017-05-16 18:28:46", "24.69.140.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("56119", "3", "2017-05-16 19:01:37", "217.182.132.177", "13");
INSERT INTO `wp_gf_form_view` VALUES("56120", "10", "2017-05-16 19:01:41", "217.182.132.177", "80");
INSERT INTO `wp_gf_form_view` VALUES("56121", "15", "2017-05-16 19:16:49", "40.77.167.124", "6");
INSERT INTO `wp_gf_form_view` VALUES("56122", "10", "2017-05-16 20:02:49", "148.163.128.145", "65");
INSERT INTO `wp_gf_form_view` VALUES("56123", "3", "2017-05-16 20:02:50", "148.163.128.145", "10");
INSERT INTO `wp_gf_form_view` VALUES("56124", "3", "2017-05-16 21:12:08", "207.194.133.9", "9");
INSERT INTO `wp_gf_form_view` VALUES("56125", "10", "2017-05-16 21:12:10", "207.194.133.9", "75");
INSERT INTO `wp_gf_form_view` VALUES("56126", "14", "2017-05-16 21:34:32", "24.68.144.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("56127", "10", "2017-05-16 22:09:35", "24.68.250.127", "34");
INSERT INTO `wp_gf_form_view` VALUES("56128", "3", "2017-05-16 22:09:36", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("56129", "6", "2017-05-16 22:09:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56130", "9", "2017-05-16 22:09:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56131", "8", "2017-05-16 22:09:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56132", "13", "2017-05-16 22:09:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56133", "15", "2017-05-16 22:09:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56134", "3", "2017-05-16 23:02:11", "154.20.29.44", "28");
INSERT INTO `wp_gf_form_view` VALUES("56135", "10", "2017-05-16 23:02:11", "154.20.29.44", "265");
INSERT INTO `wp_gf_form_view` VALUES("56136", "10", "2017-05-17 00:00:05", "37.187.165.195", "211");
INSERT INTO `wp_gf_form_view` VALUES("56137", "3", "2017-05-17 00:00:05", "37.187.165.195", "27");
INSERT INTO `wp_gf_form_view` VALUES("56138", "11", "2017-05-17 00:41:13", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("56139", "2", "2017-05-17 00:41:16", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("56140", "3", "2017-05-17 01:33:08", "173.252.74.109", "5");
INSERT INTO `wp_gf_form_view` VALUES("56141", "10", "2017-05-17 01:33:09", "173.252.74.109", "18");
INSERT INTO `wp_gf_form_view` VALUES("56142", "10", "2017-05-17 02:14:38", "195.154.172.143", "122");
INSERT INTO `wp_gf_form_view` VALUES("56143", "3", "2017-05-17 02:14:39", "195.154.172.143", "16");
INSERT INTO `wp_gf_form_view` VALUES("56144", "11", "2017-05-17 02:47:59", "79.49.152.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("56145", "2", "2017-05-17 02:48:53", "79.49.152.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("56146", "3", "2017-05-17 03:09:13", "64.180.74.246", "4");
INSERT INTO `wp_gf_form_view` VALUES("56147", "10", "2017-05-17 03:10:19", "66.249.80.20", "21");
INSERT INTO `wp_gf_form_view` VALUES("56148", "10", "2017-05-17 04:03:14", "154.20.33.216", "19");
INSERT INTO `wp_gf_form_view` VALUES("56149", "3", "2017-05-17 04:03:14", "154.20.33.216", "3");
INSERT INTO `wp_gf_form_view` VALUES("56150", "14", "2017-05-17 04:22:33", "1.209.188.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("56151", "14", "2017-05-17 04:22:33", "112.78.1.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("56152", "3", "2017-05-17 05:21:27", "46.118.115.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("56153", "3", "2017-05-17 05:21:27", "46.118.115.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("56154", "10", "2017-05-17 05:23:40", "96.50.6.156", "39");
INSERT INTO `wp_gf_form_view` VALUES("56155", "3", "2017-05-17 06:07:19", "77.75.76.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("56156", "10", "2017-05-17 06:07:20", "77.75.76.168", "28");
INSERT INTO `wp_gf_form_view` VALUES("56157", "12", "2017-05-17 06:20:53", "217.182.132.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("56158", "3", "2017-05-17 07:01:41", "202.46.51.175", "3");
INSERT INTO `wp_gf_form_view` VALUES("56159", "10", "2017-05-17 07:01:42", "202.46.51.175", "27");
INSERT INTO `wp_gf_form_view` VALUES("56160", "3", "2017-05-17 08:08:24", "202.46.54.130", "30");
INSERT INTO `wp_gf_form_view` VALUES("56161", "10", "2017-05-17 08:08:24", "202.46.54.130", "41");
INSERT INTO `wp_gf_form_view` VALUES("56162", "6", "2017-05-17 08:32:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56163", "9", "2017-05-17 08:32:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("56164", "8", "2017-05-17 08:32:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56165", "13", "2017-05-17 08:32:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56166", "15", "2017-05-17 08:32:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56167", "3", "2017-05-17 09:00:15", "68.180.228.235", "5");
INSERT INTO `wp_gf_form_view` VALUES("56168", "10", "2017-05-17 09:00:15", "68.180.228.235", "28");
INSERT INTO `wp_gf_form_view` VALUES("56169", "3", "2017-05-17 10:08:53", "202.46.55.63", "7");
INSERT INTO `wp_gf_form_view` VALUES("56170", "10", "2017-05-17 10:08:55", "202.46.55.63", "27");
INSERT INTO `wp_gf_form_view` VALUES("56171", "3", "2017-05-17 11:26:27", "164.132.161.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("56172", "10", "2017-05-17 11:26:28", "164.132.161.50", "27");
INSERT INTO `wp_gf_form_view` VALUES("56173", "3", "2017-05-17 13:09:55", "66.249.79.140", "8");
INSERT INTO `wp_gf_form_view` VALUES("56174", "10", "2017-05-17 13:09:57", "66.249.79.140", "68");
INSERT INTO `wp_gf_form_view` VALUES("56175", "2", "2017-05-17 14:04:51", "220.181.108.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("56176", "3", "2017-05-17 14:25:37", "40.77.167.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("56177", "10", "2017-05-17 14:25:37", "40.77.167.77", "37");
INSERT INTO `wp_gf_form_view` VALUES("56178", "3", "2017-05-17 15:27:05", "207.46.13.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("56179", "10", "2017-05-17 15:27:06", "207.46.13.42", "9");
INSERT INTO `wp_gf_form_view` VALUES("56180", "3", "2017-05-17 16:11:56", "104.131.16.225", "383");
INSERT INTO `wp_gf_form_view` VALUES("56181", "10", "2017-05-17 16:11:58", "104.131.16.225", "3013");
INSERT INTO `wp_gf_form_view` VALUES("56182", "14", "2017-05-17 16:13:37", "104.131.16.225", "2");
INSERT INTO `wp_gf_form_view` VALUES("56183", "11", "2017-05-17 16:13:47", "104.131.16.225", "3");
INSERT INTO `wp_gf_form_view` VALUES("56184", "6", "2017-05-17 16:20:12", "104.131.16.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("56185", "9", "2017-05-17 16:33:17", "104.131.16.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("56186", "15", "2017-05-17 16:41:57", "104.131.16.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("56187", "2", "2017-05-17 16:58:18", "82.80.230.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56188", "10", "2017-05-17 17:00:00", "82.80.230.228", "10864");
INSERT INTO `wp_gf_form_view` VALUES("56189", "3", "2017-05-17 17:00:01", "82.80.230.228", "1753");
INSERT INTO `wp_gf_form_view` VALUES("56190", "6", "2017-05-17 17:00:45", "82.80.230.228", "5");
INSERT INTO `wp_gf_form_view` VALUES("56191", "6", "2017-05-17 17:00:45", "82.80.230.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56192", "9", "2017-05-17 17:00:47", "82.80.230.228", "7");
INSERT INTO `wp_gf_form_view` VALUES("56193", "8", "2017-05-17 17:00:50", "82.80.230.228", "20");
INSERT INTO `wp_gf_form_view` VALUES("56194", "8", "2017-05-17 17:00:50", "82.80.230.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56195", "13", "2017-05-17 17:00:54", "82.80.230.228", "29");
INSERT INTO `wp_gf_form_view` VALUES("56196", "13", "2017-05-17 17:00:54", "82.80.230.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56197", "15", "2017-05-17 17:00:56", "82.80.230.228", "19");
INSERT INTO `wp_gf_form_view` VALUES("56198", "2", "2017-05-17 17:25:22", "104.131.16.225", "2");
INSERT INTO `wp_gf_form_view` VALUES("56199", "11", "2017-05-17 17:31:38", "138.197.6.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("56200", "10", "2017-05-17 18:03:10", "24.68.250.127", "29");
INSERT INTO `wp_gf_form_view` VALUES("56201", "3", "2017-05-17 18:03:14", "24.68.250.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("56202", "3", "2017-05-17 19:08:41", "46.119.117.60", "8");
INSERT INTO `wp_gf_form_view` VALUES("56203", "3", "2017-05-17 19:08:41", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("56204", "10", "2017-05-17 19:26:35", "40.77.167.77", "18");
INSERT INTO `wp_gf_form_view` VALUES("56205", "13", "2017-05-17 20:04:37", "217.182.132.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("56206", "3", "2017-05-17 20:04:52", "217.182.132.72", "7");
INSERT INTO `wp_gf_form_view` VALUES("56207", "10", "2017-05-17 20:04:53", "217.182.132.72", "37");
INSERT INTO `wp_gf_form_view` VALUES("56208", "3", "2017-05-17 21:31:35", "68.180.228.235", "3");
INSERT INTO `wp_gf_form_view` VALUES("56209", "10", "2017-05-17 21:31:37", "68.180.228.235", "27");
INSERT INTO `wp_gf_form_view` VALUES("56210", "10", "2017-05-17 22:02:46", "209.52.88.11", "47");
INSERT INTO `wp_gf_form_view` VALUES("56211", "3", "2017-05-17 22:02:47", "209.52.88.11", "5");
INSERT INTO `wp_gf_form_view` VALUES("56212", "6", "2017-05-17 22:51:13", "51.255.65.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("56213", "3", "2017-05-17 23:10:07", "68.180.228.235", "20");
INSERT INTO `wp_gf_form_view` VALUES("56214", "10", "2017-05-17 23:10:08", "68.180.228.235", "135");
INSERT INTO `wp_gf_form_view` VALUES("56215", "3", "2017-05-18 00:12:23", "217.182.132.21", "31");
INSERT INTO `wp_gf_form_view` VALUES("56216", "10", "2017-05-18 00:12:24", "217.182.132.21", "55");
INSERT INTO `wp_gf_form_view` VALUES("56217", "6", "2017-05-18 00:59:04", "40.77.167.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("56218", "9", "2017-05-18 00:59:05", "40.77.167.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("56219", "8", "2017-05-18 00:59:05", "40.77.167.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("56220", "13", "2017-05-18 00:59:06", "40.77.167.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("56221", "15", "2017-05-18 00:59:06", "40.77.167.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("56222", "3", "2017-05-18 01:04:15", "40.77.167.43", "9");
INSERT INTO `wp_gf_form_view` VALUES("56223", "10", "2017-05-18 01:04:15", "40.77.167.43", "55");
INSERT INTO `wp_gf_form_view` VALUES("56224", "3", "2017-05-18 02:30:54", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("56225", "6", "2017-05-18 02:30:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56226", "9", "2017-05-18 02:30:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56227", "8", "2017-05-18 02:30:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56228", "10", "2017-05-18 02:30:56", "52.88.109.3", "15");
INSERT INTO `wp_gf_form_view` VALUES("56229", "13", "2017-05-18 02:30:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56230", "15", "2017-05-18 02:30:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56231", "3", "2017-05-18 03:00:36", "5.188.211.40", "34");
INSERT INTO `wp_gf_form_view` VALUES("56232", "10", "2017-05-18 03:00:45", "5.188.211.40", "259");
INSERT INTO `wp_gf_form_view` VALUES("56233", "11", "2017-05-18 03:00:53", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("56234", "2", "2017-05-18 03:00:56", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("56235", "3", "2017-05-18 04:15:20", "202.46.55.150", "8");
INSERT INTO `wp_gf_form_view` VALUES("56236", "10", "2017-05-18 04:15:21", "202.46.55.150", "46");
INSERT INTO `wp_gf_form_view` VALUES("56237", "11", "2017-05-18 04:59:36", "77.75.78.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("56238", "10", "2017-05-18 05:02:09", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("56239", "10", "2017-05-18 06:05:15", "51.255.65.42", "38");
INSERT INTO `wp_gf_form_view` VALUES("56240", "3", "2017-05-18 06:05:19", "51.255.65.42", "5");
INSERT INTO `wp_gf_form_view` VALUES("56241", "6", "2017-05-18 06:45:41", "68.180.228.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("56242", "10", "2017-05-18 07:10:06", "72.14.199.70", "28");
INSERT INTO `wp_gf_form_view` VALUES("56243", "3", "2017-05-18 07:44:14", "202.46.54.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("56244", "3", "2017-05-18 08:04:40", "66.249.79.144", "6");
INSERT INTO `wp_gf_form_view` VALUES("56245", "10", "2017-05-18 08:04:41", "66.249.79.144", "19");
INSERT INTO `wp_gf_form_view` VALUES("56246", "3", "2017-05-18 09:24:14", "202.46.55.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("56247", "10", "2017-05-18 09:24:15", "202.46.55.15", "18");
INSERT INTO `wp_gf_form_view` VALUES("56248", "11", "2017-05-18 09:46:58", "40.77.167.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("56249", "10", "2017-05-18 10:14:56", "51.255.66.124", "37");
INSERT INTO `wp_gf_form_view` VALUES("56250", "3", "2017-05-18 10:14:56", "51.255.66.124", "5");
INSERT INTO `wp_gf_form_view` VALUES("56251", "10", "2017-05-18 11:00:29", "5.188.211.39", "145");
INSERT INTO `wp_gf_form_view` VALUES("56252", "3", "2017-05-18 11:00:29", "5.188.211.39", "25");
INSERT INTO `wp_gf_form_view` VALUES("56253", "3", "2017-05-18 12:02:10", "217.182.132.95", "14");
INSERT INTO `wp_gf_form_view` VALUES("56254", "11", "2017-05-18 12:38:00", "45.63.68.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("56255", "10", "2017-05-18 12:38:03", "45.63.68.97", "72");
INSERT INTO `wp_gf_form_view` VALUES("56256", "2", "2017-05-18 12:39:21", "45.63.68.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("56257", "3", "2017-05-18 13:09:39", "52.88.109.3", "109");
INSERT INTO `wp_gf_form_view` VALUES("56258", "6", "2017-05-18 13:09:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56259", "9", "2017-05-18 13:09:39", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("56260", "8", "2017-05-18 13:09:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("56261", "10", "2017-05-18 13:09:40", "52.88.109.3", "534");
INSERT INTO `wp_gf_form_view` VALUES("56262", "13", "2017-05-18 13:09:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("56263", "15", "2017-05-18 13:09:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56264", "2", "2017-05-18 14:07:31", "66.249.79.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("56265", "3", "2017-05-18 14:13:12", "77.75.77.36", "9");
INSERT INTO `wp_gf_form_view` VALUES("56266", "10", "2017-05-18 14:13:13", "77.75.77.36", "63");
INSERT INTO `wp_gf_form_view` VALUES("56267", "11", "2017-05-18 14:29:13", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("56268", "3", "2017-05-18 15:33:13", "70.67.37.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("56269", "10", "2017-05-18 15:33:15", "70.67.37.131", "28");
INSERT INTO `wp_gf_form_view` VALUES("56270", "2", "2017-05-18 16:06:08", "66.249.79.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("56271", "15", "2017-05-18 16:17:16", "5.188.211.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("56272", "3", "2017-05-18 16:17:16", "5.188.211.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("56273", "10", "2017-05-18 16:17:16", "5.188.211.72", "18");
INSERT INTO `wp_gf_form_view` VALUES("56274", "14", "2017-05-18 17:11:25", "185.104.217.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("56275", "10", "2017-05-18 18:07:47", "217.182.132.76", "28");
INSERT INTO `wp_gf_form_view` VALUES("56276", "3", "2017-05-18 18:08:04", "217.182.132.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("56277", "3", "2017-05-18 19:16:29", "66.249.79.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("56278", "10", "2017-05-18 19:16:32", "66.249.79.148", "27");
INSERT INTO `wp_gf_form_view` VALUES("56279", "3", "2017-05-18 20:07:09", "202.46.51.162", "5");
INSERT INTO `wp_gf_form_view` VALUES("56280", "10", "2017-05-18 20:07:09", "202.46.51.162", "38");
INSERT INTO `wp_gf_form_view` VALUES("56281", "10", "2017-05-18 21:13:45", "202.46.53.17", "28");
INSERT INTO `wp_gf_form_view` VALUES("56282", "3", "2017-05-18 21:13:45", "202.46.53.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("56283", "10", "2017-05-18 22:04:47", "184.66.248.195", "60");
INSERT INTO `wp_gf_form_view` VALUES("56284", "3", "2017-05-18 22:04:47", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56285", "3", "2017-05-18 23:06:47", "164.132.161.7", "15");
INSERT INTO `wp_gf_form_view` VALUES("56286", "10", "2017-05-18 23:06:47", "164.132.161.7", "56");
INSERT INTO `wp_gf_form_view` VALUES("56287", "11", "2017-05-18 23:24:44", "5.188.211.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("56288", "2", "2017-05-18 23:24:48", "5.188.211.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("56289", "3", "2017-05-19 00:00:15", "178.137.4.41", "7");
INSERT INTO `wp_gf_form_view` VALUES("56290", "10", "2017-05-19 00:07:59", "62.221.208.175", "30");
INSERT INTO `wp_gf_form_view` VALUES("56291", "10", "2017-05-19 01:20:46", "184.66.248.195", "206");
INSERT INTO `wp_gf_form_view` VALUES("56292", "3", "2017-05-19 01:32:25", "202.46.48.206", "26");
INSERT INTO `wp_gf_form_view` VALUES("56293", "3", "2017-05-19 02:10:33", "68.180.228.235", "10");
INSERT INTO `wp_gf_form_view` VALUES("56294", "10", "2017-05-19 02:10:33", "68.180.228.235", "77");
INSERT INTO `wp_gf_form_view` VALUES("56295", "3", "2017-05-19 03:07:15", "77.75.78.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("56296", "10", "2017-05-19 03:07:15", "77.75.78.168", "30");
INSERT INTO `wp_gf_form_view` VALUES("56297", "3", "2017-05-19 04:11:14", "104.144.204.208", "26");
INSERT INTO `wp_gf_form_view` VALUES("56298", "10", "2017-05-19 04:11:14", "104.144.204.208", "216");
INSERT INTO `wp_gf_form_view` VALUES("56299", "14", "2017-05-19 04:54:27", "93.119.20.38", "3");
INSERT INTO `wp_gf_form_view` VALUES("56300", "10", "2017-05-19 05:21:30", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56301", "3", "2017-05-19 05:33:22", "207.46.13.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("56302", "13", "2017-05-19 05:52:41", "202.46.57.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("56303", "3", "2017-05-19 06:04:34", "77.75.79.36", "6");
INSERT INTO `wp_gf_form_view` VALUES("56304", "10", "2017-05-19 06:04:35", "77.75.79.36", "38");
INSERT INTO `wp_gf_form_view` VALUES("56305", "11", "2017-05-19 06:24:42", "108.180.117.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("56306", "3", "2017-05-19 07:03:14", "40.77.167.43", "41");
INSERT INTO `wp_gf_form_view` VALUES("56307", "10", "2017-05-19 07:03:14", "40.77.167.43", "71");
INSERT INTO `wp_gf_form_view` VALUES("56308", "6", "2017-05-19 07:11:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56309", "9", "2017-05-19 07:11:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56310", "8", "2017-05-19 07:11:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56311", "13", "2017-05-19 07:11:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56312", "15", "2017-05-19 07:11:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56313", "11", "2017-05-19 07:40:17", "45.55.237.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("56314", "2", "2017-05-19 07:40:18", "45.55.237.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("56315", "10", "2017-05-19 08:21:32", "184.66.248.195", "251");
INSERT INTO `wp_gf_form_view` VALUES("56316", "3", "2017-05-19 08:27:39", "5.188.211.43", "30");
INSERT INTO `wp_gf_form_view` VALUES("56317", "10", "2017-05-19 09:21:36", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56318", "3", "2017-05-19 09:28:17", "202.46.53.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("56319", "3", "2017-05-19 10:01:35", "202.46.48.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("56320", "10", "2017-05-19 10:01:36", "202.46.48.17", "39");
INSERT INTO `wp_gf_form_view` VALUES("56321", "3", "2017-05-19 11:02:42", "46.118.115.89", "6");
INSERT INTO `wp_gf_form_view` VALUES("56322", "10", "2017-05-19 11:21:45", "202.46.57.39", "20");
INSERT INTO `wp_gf_form_view` VALUES("56323", "3", "2017-05-19 12:13:28", "207.46.13.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("56324", "10", "2017-05-19 12:13:28", "207.46.13.42", "21");
INSERT INTO `wp_gf_form_view` VALUES("56325", "3", "2017-05-19 13:09:18", "202.46.56.184", "33");
INSERT INTO `wp_gf_form_view` VALUES("56326", "10", "2017-05-19 13:09:18", "202.46.56.184", "233");
INSERT INTO `wp_gf_form_view` VALUES("56327", "10", "2017-05-19 14:14:19", "68.180.228.235", "39");
INSERT INTO `wp_gf_form_view` VALUES("56328", "3", "2017-05-19 14:14:20", "68.180.228.235", "4");
INSERT INTO `wp_gf_form_view` VALUES("56329", "3", "2017-05-19 15:22:34", "202.46.53.46", "5");
INSERT INTO `wp_gf_form_view` VALUES("56330", "10", "2017-05-19 15:22:35", "202.46.53.46", "20");
INSERT INTO `wp_gf_form_view` VALUES("56331", "10", "2017-05-19 16:23:22", "184.66.248.195", "111");
INSERT INTO `wp_gf_form_view` VALUES("56332", "11", "2017-05-19 16:24:02", "78.22.170.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("56333", "3", "2017-05-19 16:24:09", "78.22.170.42", "13");
INSERT INTO `wp_gf_form_view` VALUES("56334", "2", "2017-05-19 16:25:10", "78.22.170.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("56335", "3", "2017-05-19 17:21:54", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("56336", "6", "2017-05-19 17:21:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56337", "9", "2017-05-19 17:21:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56338", "8", "2017-05-19 17:22:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56339", "10", "2017-05-19 17:22:00", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("56340", "13", "2017-05-19 17:22:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56341", "15", "2017-05-19 17:22:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56342", "3", "2017-05-19 18:02:27", "40.77.167.124", "6");
INSERT INTO `wp_gf_form_view` VALUES("56343", "10", "2017-05-19 18:02:28", "40.77.167.124", "39");
INSERT INTO `wp_gf_form_view` VALUES("56344", "14", "2017-05-19 18:50:40", "24.108.0.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("56345", "10", "2017-05-19 19:00:23", "24.68.248.196", "115");
INSERT INTO `wp_gf_form_view` VALUES("56346", "3", "2017-05-19 19:00:24", "24.68.248.196", "70");
INSERT INTO `wp_gf_form_view` VALUES("56347", "6", "2017-05-19 19:52:18", "5.188.211.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("56348", "9", "2017-05-19 19:52:19", "5.188.211.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("56349", "8", "2017-05-19 19:52:19", "5.188.211.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("56350", "13", "2017-05-19 19:52:20", "5.188.211.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("56351", "15", "2017-05-19 19:52:20", "5.188.211.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("56352", "11", "2017-05-19 19:53:03", "5.188.211.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("56353", "2", "2017-05-19 19:53:05", "5.188.211.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("56354", "10", "2017-05-19 20:18:17", "68.180.228.235", "30");
INSERT INTO `wp_gf_form_view` VALUES("56355", "3", "2017-05-19 20:18:18", "68.180.228.235", "3");
INSERT INTO `wp_gf_form_view` VALUES("56356", "11", "2017-05-19 21:08:36", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56357", "3", "2017-05-19 21:20:46", "164.132.161.42", "6");
INSERT INTO `wp_gf_form_view` VALUES("56358", "10", "2017-05-19 21:20:47", "164.132.161.42", "20");
INSERT INTO `wp_gf_form_view` VALUES("56359", "10", "2017-05-19 22:23:55", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56360", "3", "2017-05-19 22:26:50", "217.182.132.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("56361", "14", "2017-05-19 22:36:50", "143.202.155.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("56362", "15", "2017-05-19 22:46:35", "202.46.50.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("56363", "9", "2017-05-19 23:16:29", "217.182.132.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("56364", "3", "2017-05-19 23:16:38", "217.182.132.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("56365", "10", "2017-05-19 23:16:39", "217.182.132.70", "58");
INSERT INTO `wp_gf_form_view` VALUES("56366", "13", "2017-05-19 23:53:16", "202.46.58.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("56367", "3", "2017-05-20 00:04:14", "68.180.229.228", "4");
INSERT INTO `wp_gf_form_view` VALUES("56368", "10", "2017-05-20 00:04:14", "68.180.229.228", "40");
INSERT INTO `wp_gf_form_view` VALUES("56369", "11", "2017-05-20 01:10:27", "40.77.167.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("56370", "10", "2017-05-20 01:23:56", "184.66.248.195", "42");
INSERT INTO `wp_gf_form_view` VALUES("56371", "3", "2017-05-20 01:36:00", "77.75.78.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("56372", "10", "2017-05-20 02:24:00", "184.66.248.195", "40");
INSERT INTO `wp_gf_form_view` VALUES("56373", "3", "2017-05-20 02:38:51", "40.77.167.124", "5");
INSERT INTO `wp_gf_form_view` VALUES("56374", "10", "2017-05-20 03:23:56", "184.66.248.195", "1271");
INSERT INTO `wp_gf_form_view` VALUES("56375", "3", "2017-05-20 03:29:48", "51.255.71.118", "188");
INSERT INTO `wp_gf_form_view` VALUES("56376", "11", "2017-05-20 03:33:28", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("56377", "2", "2017-05-20 03:33:32", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("56378", "14", "2017-05-20 03:34:53", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("56379", "15", "2017-05-20 03:37:24", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("56380", "13", "2017-05-20 03:41:33", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("56381", "8", "2017-05-20 03:42:36", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("56382", "9", "2017-05-20 03:42:48", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("56383", "6", "2017-05-20 03:43:55", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("56384", "10", "2017-05-20 04:00:02", "5.9.98.130", "2956");
INSERT INTO `wp_gf_form_view` VALUES("56385", "3", "2017-05-20 04:00:03", "5.9.98.130", "392");
INSERT INTO `wp_gf_form_view` VALUES("56386", "3", "2017-05-20 05:00:07", "5.9.98.130", "441");
INSERT INTO `wp_gf_form_view` VALUES("56387", "10", "2017-05-20 05:00:07", "5.9.98.130", "2896");
INSERT INTO `wp_gf_form_view` VALUES("56388", "8", "2017-05-20 05:14:04", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56389", "13", "2017-05-20 05:14:06", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56390", "15", "2017-05-20 05:14:07", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56391", "11", "2017-05-20 05:19:19", "5.188.211.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("56392", "2", "2017-05-20 05:19:23", "5.188.211.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("56393", "10", "2017-05-20 06:00:00", "5.9.98.130", "3518");
INSERT INTO `wp_gf_form_view` VALUES("56394", "3", "2017-05-20 06:00:05", "5.9.98.130", "383");
INSERT INTO `wp_gf_form_view` VALUES("56395", "3", "2017-05-20 07:00:02", "5.9.98.130", "581");
INSERT INTO `wp_gf_form_view` VALUES("56396", "10", "2017-05-20 07:00:02", "5.9.98.130", "3513");
INSERT INTO `wp_gf_form_view` VALUES("56397", "10", "2017-05-20 08:00:02", "5.9.98.130", "4072");
INSERT INTO `wp_gf_form_view` VALUES("56398", "3", "2017-05-20 08:00:03", "5.9.98.130", "436");
INSERT INTO `wp_gf_form_view` VALUES("56399", "3", "2017-05-20 09:00:01", "5.9.98.130", "275");
INSERT INTO `wp_gf_form_view` VALUES("56400", "10", "2017-05-20 09:00:02", "5.9.98.130", "2468");
INSERT INTO `wp_gf_form_view` VALUES("56401", "11", "2017-05-20 09:47:28", "2.228.138.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("56402", "2", "2017-05-20 09:48:29", "2.228.138.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("56403", "3", "2017-05-20 10:02:10", "202.46.48.147", "327");
INSERT INTO `wp_gf_form_view` VALUES("56404", "10", "2017-05-20 10:02:18", "202.46.48.147", "2927");
INSERT INTO `wp_gf_form_view` VALUES("56405", "9", "2017-05-20 10:30:02", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("56406", "3", "2017-05-20 11:03:28", "164.132.161.94", "824");
INSERT INTO `wp_gf_form_view` VALUES("56407", "10", "2017-05-20 11:03:28", "164.132.161.94", "3761");
INSERT INTO `wp_gf_form_view` VALUES("56408", "6", "2017-05-20 11:31:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56409", "9", "2017-05-20 11:31:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56410", "8", "2017-05-20 11:31:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56411", "13", "2017-05-20 11:31:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56412", "15", "2017-05-20 11:31:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56413", "10", "2017-05-20 12:00:00", "5.9.98.130", "3562");
INSERT INTO `wp_gf_form_view` VALUES("56414", "3", "2017-05-20 12:00:01", "5.9.98.130", "356");
INSERT INTO `wp_gf_form_view` VALUES("56415", "3", "2017-05-20 13:08:39", "5.9.98.130", "515");
INSERT INTO `wp_gf_form_view` VALUES("56416", "10", "2017-05-20 13:08:39", "5.9.98.130", "4617");
INSERT INTO `wp_gf_form_view` VALUES("56417", "14", "2017-05-20 13:39:50", "80.243.181.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("56418", "10", "2017-05-20 14:00:00", "5.9.98.130", "4700");
INSERT INTO `wp_gf_form_view` VALUES("56419", "3", "2017-05-20 14:00:04", "5.9.98.130", "524");
INSERT INTO `wp_gf_form_view` VALUES("56420", "14", "2017-05-20 14:10:57", "88.150.182.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("56421", "10", "2017-05-20 15:00:00", "5.9.98.130", "554");
INSERT INTO `wp_gf_form_view` VALUES("56422", "3", "2017-05-20 15:00:04", "5.9.98.130", "63");
INSERT INTO `wp_gf_form_view` VALUES("56423", "11", "2017-05-20 15:05:41", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("56424", "2", "2017-05-20 15:05:44", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("56425", "3", "2017-05-20 16:08:52", "46.118.115.89", "366");
INSERT INTO `wp_gf_form_view` VALUES("56426", "3", "2017-05-20 16:08:52", "46.118.115.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("56427", "10", "2017-05-20 16:18:28", "5.9.98.130", "3270");
INSERT INTO `wp_gf_form_view` VALUES("56428", "14", "2017-05-20 16:59:29", "51.255.65.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("56429", "10", "2017-05-20 17:00:00", "5.9.98.130", "2549");
INSERT INTO `wp_gf_form_view` VALUES("56430", "3", "2017-05-20 17:00:07", "5.9.98.130", "283");
INSERT INTO `wp_gf_form_view` VALUES("56431", "3", "2017-05-20 18:04:55", "107.170.16.250", "9");
INSERT INTO `wp_gf_form_view` VALUES("56432", "10", "2017-05-20 18:04:55", "107.170.16.250", "74");
INSERT INTO `wp_gf_form_view` VALUES("56433", "3", "2017-05-20 19:03:21", "46.118.116.168", "17");
INSERT INTO `wp_gf_form_view` VALUES("56434", "10", "2017-05-20 19:19:38", "162.221.207.214", "66");
INSERT INTO `wp_gf_form_view` VALUES("56435", "11", "2017-05-20 19:20:11", "162.221.207.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("56436", "2", "2017-05-20 19:34:35", "138.197.66.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("56437", "3", "2017-05-20 20:02:56", "5.9.98.130", "702");
INSERT INTO `wp_gf_form_view` VALUES("56438", "10", "2017-05-20 20:02:58", "5.9.98.130", "3152");
INSERT INTO `wp_gf_form_view` VALUES("56439", "3", "2017-05-20 21:00:00", "5.9.98.130", "705");
INSERT INTO `wp_gf_form_view` VALUES("56440", "10", "2017-05-20 21:00:00", "5.9.98.130", "3198");
INSERT INTO `wp_gf_form_view` VALUES("56441", "2", "2017-05-20 21:05:12", "51.255.71.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("56442", "11", "2017-05-20 21:12:00", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("56443", "3", "2017-05-20 22:00:02", "5.9.98.130", "475");
INSERT INTO `wp_gf_form_view` VALUES("56444", "10", "2017-05-20 22:00:03", "5.9.98.130", "3426");
INSERT INTO `wp_gf_form_view` VALUES("56445", "6", "2017-05-20 22:04:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("56446", "9", "2017-05-20 22:05:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("56447", "8", "2017-05-20 22:05:02", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("56448", "13", "2017-05-20 22:05:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("56449", "15", "2017-05-20 22:05:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("56450", "11", "2017-05-20 22:43:47", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("56451", "2", "2017-05-20 22:43:50", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("56452", "10", "2017-05-20 23:00:04", "5.9.98.130", "3490");
INSERT INTO `wp_gf_form_view` VALUES("56453", "3", "2017-05-20 23:00:05", "5.9.98.130", "350");
INSERT INTO `wp_gf_form_view` VALUES("56454", "14", "2017-05-20 23:28:47", "40.77.167.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("56455", "10", "2017-05-21 00:00:03", "5.9.98.130", "1519");
INSERT INTO `wp_gf_form_view` VALUES("56456", "3", "2017-05-21 00:00:04", "5.9.98.130", "159");
INSERT INTO `wp_gf_form_view` VALUES("56457", "3", "2017-05-21 01:04:34", "178.137.4.41", "388");
INSERT INTO `wp_gf_form_view` VALUES("56458", "10", "2017-05-21 01:23:56", "184.66.248.195", "3449");
INSERT INTO `wp_gf_form_view` VALUES("56459", "3", "2017-05-21 02:00:00", "5.9.98.130", "509");
INSERT INTO `wp_gf_form_view` VALUES("56460", "10", "2017-05-21 02:00:00", "5.9.98.130", "4555");
INSERT INTO `wp_gf_form_view` VALUES("56461", "10", "2017-05-21 03:00:00", "5.9.98.130", "3929");
INSERT INTO `wp_gf_form_view` VALUES("56462", "3", "2017-05-21 03:00:06", "5.9.98.130", "436");
INSERT INTO `wp_gf_form_view` VALUES("56463", "3", "2017-05-21 04:00:01", "5.9.98.130", "436");
INSERT INTO `wp_gf_form_view` VALUES("56464", "10", "2017-05-21 04:00:01", "5.9.98.130", "3923");
INSERT INTO `wp_gf_form_view` VALUES("56465", "10", "2017-05-21 05:00:00", "5.9.98.130", "3766");
INSERT INTO `wp_gf_form_view` VALUES("56466", "3", "2017-05-21 05:00:07", "5.9.98.130", "444");
INSERT INTO `wp_gf_form_view` VALUES("56467", "13", "2017-05-21 05:10:56", "51.255.65.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("56468", "6", "2017-05-21 05:28:48", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("56469", "9", "2017-05-21 05:28:50", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("56470", "8", "2017-05-21 05:28:50", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("56471", "15", "2017-05-21 05:28:55", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("56472", "14", "2017-05-21 05:53:45", "24.68.227.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("56473", "3", "2017-05-21 06:00:04", "5.9.98.130", "13");
INSERT INTO `wp_gf_form_view` VALUES("56474", "10", "2017-05-21 06:00:04", "5.9.98.130", "110");
INSERT INTO `wp_gf_form_view` VALUES("56475", "14", "2017-05-21 06:03:55", "83.143.242.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("56476", "10", "2017-05-21 07:23:58", "184.66.248.195", "305");
INSERT INTO `wp_gf_form_view` VALUES("56477", "3", "2017-05-21 07:41:02", "202.46.55.157", "46");
INSERT INTO `wp_gf_form_view` VALUES("56478", "11", "2017-05-21 07:49:12", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("56479", "2", "2017-05-21 07:49:21", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("56480", "14", "2017-05-21 07:57:52", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("56481", "3", "2017-05-21 08:00:09", "94.199.151.22", "197");
INSERT INTO `wp_gf_form_view` VALUES("56482", "10", "2017-05-21 08:00:10", "94.199.151.22", "990");
INSERT INTO `wp_gf_form_view` VALUES("56483", "6", "2017-05-21 08:10:43", "94.199.151.22", "6");
INSERT INTO `wp_gf_form_view` VALUES("56484", "9", "2017-05-21 08:10:43", "94.199.151.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("56485", "8", "2017-05-21 08:10:44", "94.199.151.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("56486", "13", "2017-05-21 08:10:44", "94.199.151.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("56487", "15", "2017-05-21 08:10:45", "94.199.151.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("56488", "11", "2017-05-21 08:14:52", "46.229.168.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("56489", "3", "2017-05-21 09:16:19", "178.137.4.41", "246");
INSERT INTO `wp_gf_form_view` VALUES("56490", "10", "2017-05-21 09:20:53", "5.188.211.37", "2162");
INSERT INTO `wp_gf_form_view` VALUES("56491", "11", "2017-05-21 09:21:04", "5.188.211.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("56492", "2", "2017-05-21 09:21:09", "5.188.211.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("56493", "14", "2017-05-21 09:23:44", "62.210.79.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("56494", "3", "2017-05-21 10:00:05", "5.9.98.130", "349");
INSERT INTO `wp_gf_form_view` VALUES("56495", "10", "2017-05-21 10:00:05", "5.9.98.130", "3144");
INSERT INTO `wp_gf_form_view` VALUES("56496", "11", "2017-05-21 10:50:03", "40.77.167.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("56497", "3", "2017-05-21 11:00:02", "5.9.98.130", "399");
INSERT INTO `wp_gf_form_view` VALUES("56498", "10", "2017-05-21 11:00:02", "5.9.98.130", "3418");
INSERT INTO `wp_gf_form_view` VALUES("56499", "9", "2017-05-21 11:14:31", "40.77.167.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("56500", "13", "2017-05-21 11:15:19", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("56501", "8", "2017-05-21 11:15:23", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("56502", "2", "2017-05-21 11:21:08", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("56503", "14", "2017-05-21 11:59:43", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56504", "3", "2017-05-21 12:00:08", "5.9.98.130", "359");
INSERT INTO `wp_gf_form_view` VALUES("56505", "10", "2017-05-21 12:00:08", "5.9.98.130", "3233");
INSERT INTO `wp_gf_form_view` VALUES("56506", "14", "2017-05-21 12:46:37", "23.250.78.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("56507", "3", "2017-05-21 13:00:01", "5.9.98.130", "16");
INSERT INTO `wp_gf_form_view` VALUES("56508", "10", "2017-05-21 13:00:01", "5.9.98.130", "120");
INSERT INTO `wp_gf_form_view` VALUES("56509", "11", "2017-05-21 13:18:20", "45.63.68.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("56510", "2", "2017-05-21 13:19:52", "45.63.68.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("56511", "3", "2017-05-21 14:02:03", "46.185.71.194", "4");
INSERT INTO `wp_gf_form_view` VALUES("56512", "10", "2017-05-21 14:23:57", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56513", "3", "2017-05-21 15:14:12", "5.9.98.130", "22");
INSERT INTO `wp_gf_form_view` VALUES("56514", "10", "2017-05-21 15:14:13", "5.9.98.130", "88");
INSERT INTO `wp_gf_form_view` VALUES("56515", "15", "2017-05-21 15:37:15", "66.249.79.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("56516", "13", "2017-05-21 15:57:33", "66.249.79.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("56517", "14", "2017-05-21 16:05:13", "88.150.182.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("56518", "3", "2017-05-21 16:23:38", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("56519", "6", "2017-05-21 16:23:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56520", "9", "2017-05-21 16:23:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56521", "8", "2017-05-21 16:23:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56522", "10", "2017-05-21 16:23:39", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("56523", "13", "2017-05-21 16:23:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56524", "15", "2017-05-21 16:23:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56525", "3", "2017-05-21 17:00:08", "24.69.156.108", "4");
INSERT INTO `wp_gf_form_view` VALUES("56526", "10", "2017-05-21 17:00:08", "24.69.156.108", "39");
INSERT INTO `wp_gf_form_view` VALUES("56527", "14", "2017-05-21 17:00:54", "185.104.219.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("56528", "3", "2017-05-21 18:09:25", "46.118.115.89", "5");
INSERT INTO `wp_gf_form_view` VALUES("56529", "10", "2017-05-21 18:23:58", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("56530", "10", "2017-05-21 19:24:00", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("56531", "3", "2017-05-21 19:25:39", "66.249.79.112", "4");
INSERT INTO `wp_gf_form_view` VALUES("56532", "12", "2017-05-21 19:43:07", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("56533", "3", "2017-05-21 20:20:03", "164.132.161.59", "3");
INSERT INTO `wp_gf_form_view` VALUES("56534", "10", "2017-05-21 20:20:03", "164.132.161.59", "20");
INSERT INTO `wp_gf_form_view` VALUES("56535", "3", "2017-05-21 21:11:08", "46.118.155.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("56536", "10", "2017-05-21 21:16:11", "66.249.79.108", "11");
INSERT INTO `wp_gf_form_view` VALUES("56537", "10", "2017-05-21 22:13:12", "217.182.132.5", "12");
INSERT INTO `wp_gf_form_view` VALUES("56538", "3", "2017-05-21 22:13:14", "217.182.132.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("56539", "3", "2017-05-21 23:06:18", "202.46.57.172", "10");
INSERT INTO `wp_gf_form_view` VALUES("56540", "10", "2017-05-21 23:06:18", "202.46.57.172", "83");
INSERT INTO `wp_gf_form_view` VALUES("56541", "11", "2017-05-21 23:16:59", "45.63.68.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("56542", "2", "2017-05-21 23:20:01", "45.63.68.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("56543", "10", "2017-05-22 00:23:58", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56544", "3", "2017-05-22 00:50:11", "164.132.161.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("56545", "3", "2017-05-22 01:01:38", "164.132.161.18", "9");
INSERT INTO `wp_gf_form_view` VALUES("56546", "10", "2017-05-22 01:01:38", "164.132.161.18", "65");
INSERT INTO `wp_gf_form_view` VALUES("56547", "14", "2017-05-22 01:18:16", "207.164.255.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("56548", "10", "2017-05-22 02:23:58", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("56549", "3", "2017-05-22 02:56:01", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("56550", "6", "2017-05-22 02:56:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56551", "9", "2017-05-22 02:56:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56552", "8", "2017-05-22 02:56:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56553", "13", "2017-05-22 02:56:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56554", "15", "2017-05-22 02:56:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56555", "10", "2017-05-22 03:23:58", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("56556", "3", "2017-05-22 04:17:24", "66.249.79.104", "22");
INSERT INTO `wp_gf_form_view` VALUES("56557", "10", "2017-05-22 04:17:24", "66.249.79.104", "26");
INSERT INTO `wp_gf_form_view` VALUES("56558", "8", "2017-05-22 04:28:58", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56559", "13", "2017-05-22 04:28:58", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56560", "15", "2017-05-22 04:28:59", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56561", "3", "2017-05-22 05:10:09", "202.46.49.64", "6");
INSERT INTO `wp_gf_form_view` VALUES("56562", "10", "2017-05-22 05:10:09", "202.46.49.64", "21");
INSERT INTO `wp_gf_form_view` VALUES("56563", "8", "2017-05-22 05:42:02", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("56564", "13", "2017-05-22 05:42:02", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("56565", "3", "2017-05-22 06:16:49", "202.46.55.60", "12");
INSERT INTO `wp_gf_form_view` VALUES("56566", "10", "2017-05-22 06:16:50", "202.46.55.60", "66");
INSERT INTO `wp_gf_form_view` VALUES("56567", "2", "2017-05-22 06:38:56", "45.55.255.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("56568", "11", "2017-05-22 06:38:56", "45.55.255.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("56569", "10", "2017-05-22 07:24:01", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56570", "3", "2017-05-22 07:33:16", "77.75.76.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("56571", "10", "2017-05-22 08:23:58", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56572", "3", "2017-05-22 08:49:58", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("56573", "10", "2017-05-22 09:23:58", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56574", "3", "2017-05-22 09:24:26", "217.182.132.29", "4");
INSERT INTO `wp_gf_form_view` VALUES("56575", "10", "2017-05-22 10:04:05", "217.182.132.75", "23");
INSERT INTO `wp_gf_form_view` VALUES("56576", "3", "2017-05-22 10:04:05", "217.182.132.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("56577", "12", "2017-05-22 11:03:47", "202.46.50.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("56578", "3", "2017-05-22 11:03:48", "202.46.50.180", "5");
INSERT INTO `wp_gf_form_view` VALUES("56579", "10", "2017-05-22 11:03:49", "202.46.50.180", "20");
INSERT INTO `wp_gf_form_view` VALUES("56580", "15", "2017-05-22 11:49:20", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("56581", "3", "2017-05-22 12:10:26", "202.46.56.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("56582", "10", "2017-05-22 12:10:26", "202.46.56.15", "30");
INSERT INTO `wp_gf_form_view` VALUES("56583", "3", "2017-05-22 13:21:45", "66.249.79.108", "9");
INSERT INTO `wp_gf_form_view` VALUES("56584", "10", "2017-05-22 13:21:45", "66.249.79.108", "34");
INSERT INTO `wp_gf_form_view` VALUES("56585", "13", "2017-05-22 13:36:16", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56586", "15", "2017-05-22 13:36:16", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56587", "3", "2017-05-22 14:17:40", "207.46.13.42", "5");
INSERT INTO `wp_gf_form_view` VALUES("56588", "10", "2017-05-22 14:17:40", "207.46.13.42", "38");
INSERT INTO `wp_gf_form_view` VALUES("56589", "3", "2017-05-22 15:10:54", "66.249.79.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("56590", "10", "2017-05-22 15:10:54", "66.249.79.108", "20");
INSERT INTO `wp_gf_form_view` VALUES("56591", "3", "2017-05-22 16:02:57", "77.75.76.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("56592", "10", "2017-05-22 16:02:57", "77.75.76.160", "29");
INSERT INTO `wp_gf_form_view` VALUES("56593", "12", "2017-05-22 16:13:42", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("56594", "10", "2017-05-22 17:23:59", "184.66.248.195", "74");
INSERT INTO `wp_gf_form_view` VALUES("56595", "11", "2017-05-22 17:34:18", "24.97.160.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("56596", "3", "2017-05-22 17:34:23", "24.97.160.155", "11");
INSERT INTO `wp_gf_form_view` VALUES("56597", "2", "2017-05-22 17:35:03", "24.97.160.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("56598", "3", "2017-05-22 18:13:20", "209.52.88.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("56599", "10", "2017-05-22 18:13:20", "209.52.88.22", "29");
INSERT INTO `wp_gf_form_view` VALUES("56600", "14", "2017-05-22 18:16:36", "185.104.217.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("56601", "3", "2017-05-22 19:14:42", "184.169.148.226", "24");
INSERT INTO `wp_gf_form_view` VALUES("56602", "10", "2017-05-22 19:14:42", "184.169.148.226", "130");
INSERT INTO `wp_gf_form_view` VALUES("56603", "3", "2017-05-22 20:08:00", "46.118.116.168", "10");
INSERT INTO `wp_gf_form_view` VALUES("56604", "10", "2017-05-22 20:11:17", "207.46.13.42", "21");
INSERT INTO `wp_gf_form_view` VALUES("56605", "3", "2017-05-22 21:17:28", "202.46.51.83", "31");
INSERT INTO `wp_gf_form_view` VALUES("56606", "10", "2017-05-22 21:17:31", "202.46.51.83", "27");
INSERT INTO `wp_gf_form_view` VALUES("56607", "6", "2017-05-22 21:27:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56608", "9", "2017-05-22 21:27:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56609", "8", "2017-05-22 21:27:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56610", "13", "2017-05-22 21:27:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56611", "15", "2017-05-22 21:27:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56612", "3", "2017-05-22 22:02:49", "51.255.65.42", "5");
INSERT INTO `wp_gf_form_view` VALUES("56613", "10", "2017-05-22 22:02:49", "51.255.65.42", "21");
INSERT INTO `wp_gf_form_view` VALUES("56614", "3", "2017-05-22 23:18:55", "75.157.130.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("56615", "10", "2017-05-22 23:18:58", "75.157.130.176", "20");
INSERT INTO `wp_gf_form_view` VALUES("56616", "10", "2017-05-23 00:07:06", "72.14.199.152", "12");
INSERT INTO `wp_gf_form_view` VALUES("56617", "14", "2017-05-23 00:12:46", "146.0.74.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("56618", "3", "2017-05-23 00:16:53", "202.46.51.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("56619", "10", "2017-05-23 01:23:59", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("56620", "3", "2017-05-23 01:57:13", "46.118.155.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("56621", "3", "2017-05-23 02:20:54", "202.46.48.91", "5");
INSERT INTO `wp_gf_form_view` VALUES("56622", "10", "2017-05-23 02:20:54", "202.46.48.91", "29");
INSERT INTO `wp_gf_form_view` VALUES("56623", "10", "2017-05-23 03:23:59", "184.66.248.195", "39");
INSERT INTO `wp_gf_form_view` VALUES("56624", "3", "2017-05-23 03:27:16", "66.249.79.108", "6");
INSERT INTO `wp_gf_form_view` VALUES("56625", "6", "2017-05-23 03:27:56", "66.249.79.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("56626", "15", "2017-05-23 04:00:53", "202.46.58.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("56627", "3", "2017-05-23 04:00:53", "202.46.58.194", "14");
INSERT INTO `wp_gf_form_view` VALUES("56628", "10", "2017-05-23 04:00:53", "202.46.58.194", "111");
INSERT INTO `wp_gf_form_view` VALUES("56629", "6", "2017-05-23 04:03:24", "66.249.79.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("56630", "11", "2017-05-23 04:30:20", "192.69.91.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("56631", "2", "2017-05-23 04:30:55", "192.69.91.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("56632", "10", "2017-05-23 05:24:02", "184.66.248.195", "263");
INSERT INTO `wp_gf_form_view` VALUES("56633", "3", "2017-05-23 05:27:15", "217.182.132.186", "42");
INSERT INTO `wp_gf_form_view` VALUES("56634", "2", "2017-05-23 05:53:20", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("56635", "11", "2017-05-23 05:54:02", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("56636", "9", "2017-05-23 05:54:31", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("56637", "6", "2017-05-23 05:55:29", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("56638", "14", "2017-05-23 05:56:06", "47.150.129.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("56639", "10", "2017-05-23 06:24:02", "184.66.248.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("56640", "3", "2017-05-23 06:27:37", "217.182.132.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("56641", "3", "2017-05-23 07:12:18", "77.75.76.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("56642", "10", "2017-05-23 07:12:18", "77.75.76.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("56643", "10", "2017-05-23 08:05:13", "77.75.78.172", "44");
INSERT INTO `wp_gf_form_view` VALUES("56644", "3", "2017-05-23 08:05:14", "77.75.78.172", "32");
INSERT INTO `wp_gf_form_view` VALUES("56645", "6", "2017-05-23 08:09:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56646", "9", "2017-05-23 08:09:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56647", "8", "2017-05-23 08:09:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56648", "13", "2017-05-23 08:09:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56649", "15", "2017-05-23 08:09:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56650", "10", "2017-05-23 09:24:00", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56651", "2", "2017-05-23 09:55:19", "142.4.218.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("56652", "3", "2017-05-23 09:55:23", "142.4.218.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("56653", "10", "2017-05-23 10:15:22", "34.206.145.199", "21");
INSERT INTO `wp_gf_form_view` VALUES("56654", "3", "2017-05-23 10:15:22", "34.206.145.199", "3");
INSERT INTO `wp_gf_form_view` VALUES("56655", "14", "2017-05-23 10:26:08", "198.71.87.205", "3");
INSERT INTO `wp_gf_form_view` VALUES("56656", "3", "2017-05-23 11:09:57", "46.119.117.60", "7");
INSERT INTO `wp_gf_form_view` VALUES("56657", "10", "2017-05-23 11:22:44", "77.75.76.169", "29");
INSERT INTO `wp_gf_form_view` VALUES("56658", "10", "2017-05-23 12:24:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("56659", "3", "2017-05-23 13:04:18", "202.46.55.123", "4");
INSERT INTO `wp_gf_form_view` VALUES("56660", "10", "2017-05-23 13:04:19", "202.46.55.123", "30");
INSERT INTO `wp_gf_form_view` VALUES("56661", "3", "2017-05-23 14:05:20", "40.77.167.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("56662", "10", "2017-05-23 14:05:22", "40.77.167.93", "20");
INSERT INTO `wp_gf_form_view` VALUES("56663", "11", "2017-05-23 14:27:09", "202.46.54.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("56664", "3", "2017-05-23 15:00:29", "202.46.52.205", "7");
INSERT INTO `wp_gf_form_view` VALUES("56665", "10", "2017-05-23 15:00:29", "202.46.52.205", "20");
INSERT INTO `wp_gf_form_view` VALUES("56666", "3", "2017-05-23 16:03:48", "142.25.113.201", "14");
INSERT INTO `wp_gf_form_view` VALUES("56667", "10", "2017-05-23 16:03:48", "142.25.113.201", "110");
INSERT INTO `wp_gf_form_view` VALUES("56668", "6", "2017-05-23 16:07:09", "202.46.49.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("56669", "11", "2017-05-23 16:32:07", "217.122.185.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("56670", "2", "2017-05-23 16:32:57", "217.122.185.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("56671", "3", "2017-05-23 17:20:19", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("56672", "10", "2017-05-23 17:24:40", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("56673", "11", "2017-05-23 18:07:17", "159.203.111.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("56674", "2", "2017-05-23 18:07:18", "159.203.111.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("56675", "3", "2017-05-23 18:07:18", "159.203.111.218", "17");
INSERT INTO `wp_gf_form_view` VALUES("56676", "10", "2017-05-23 18:07:21", "159.203.111.218", "113");
INSERT INTO `wp_gf_form_view` VALUES("56677", "15", "2017-05-23 18:34:22", "70.27.177.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("56678", "10", "2017-05-23 19:25:11", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56679", "3", "2017-05-23 19:42:49", "164.132.161.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("56680", "3", "2017-05-23 20:04:27", "46.118.115.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("56681", "3", "2017-05-23 20:04:27", "46.118.115.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("56682", "3", "2017-05-23 20:04:27", "46.118.115.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("56683", "10", "2017-05-23 20:24:35", "207.46.13.152", "22");
INSERT INTO `wp_gf_form_view` VALUES("56684", "3", "2017-05-23 21:05:41", "217.182.132.36", "8");
INSERT INTO `wp_gf_form_view` VALUES("56685", "10", "2017-05-23 21:05:42", "217.182.132.36", "29");
INSERT INTO `wp_gf_form_view` VALUES("56686", "10", "2017-05-23 22:25:11", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56687", "3", "2017-05-23 22:55:30", "202.46.51.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("56688", "14", "2017-05-23 23:05:14", "184.71.18.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("56689", "10", "2017-05-23 23:23:13", "199.16.157.181", "21");
INSERT INTO `wp_gf_form_view` VALUES("56690", "3", "2017-05-23 23:23:13", "199.16.157.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("56691", "10", "2017-05-24 00:25:12", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56692", "3", "2017-05-24 00:27:41", "202.46.48.18", "4");
INSERT INTO `wp_gf_form_view` VALUES("56693", "10", "2017-05-24 01:25:12", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("56694", "3", "2017-05-24 02:12:52", "199.21.99.202", "29");
INSERT INTO `wp_gf_form_view` VALUES("56695", "10", "2017-05-24 02:12:53", "199.21.99.202", "26");
INSERT INTO `wp_gf_form_view` VALUES("56696", "6", "2017-05-24 02:53:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56697", "9", "2017-05-24 02:53:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56698", "8", "2017-05-24 02:53:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56699", "13", "2017-05-24 02:53:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56700", "15", "2017-05-24 02:53:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56701", "10", "2017-05-24 03:09:30", "164.132.161.66", "21");
INSERT INTO `wp_gf_form_view` VALUES("56702", "3", "2017-05-24 03:09:30", "164.132.161.66", "4");
INSERT INTO `wp_gf_form_view` VALUES("56703", "11", "2017-05-24 03:28:43", "202.46.49.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("56704", "10", "2017-05-24 04:18:22", "72.14.199.74", "31");
INSERT INTO `wp_gf_form_view` VALUES("56705", "3", "2017-05-24 04:35:24", "202.46.51.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("56706", "14", "2017-05-24 04:36:47", "94.103.80.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("56707", "10", "2017-05-24 05:25:13", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("56708", "3", "2017-05-24 05:27:49", "66.249.79.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("56709", "3", "2017-05-24 06:08:55", "202.46.56.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("56710", "10", "2017-05-24 06:08:55", "202.46.56.130", "11");
INSERT INTO `wp_gf_form_view` VALUES("56711", "3", "2017-05-24 07:00:10", "51.255.65.224", "4");
INSERT INTO `wp_gf_form_view` VALUES("56712", "10", "2017-05-24 07:00:12", "51.255.65.224", "20");
INSERT INTO `wp_gf_form_view` VALUES("56713", "3", "2017-05-24 08:12:13", "202.46.57.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("56714", "10", "2017-05-24 08:12:14", "202.46.57.71", "21");
INSERT INTO `wp_gf_form_view` VALUES("56715", "3", "2017-05-24 09:18:53", "202.46.55.18", "9");
INSERT INTO `wp_gf_form_view` VALUES("56716", "10", "2017-05-24 09:18:54", "202.46.55.18", "47");
INSERT INTO `wp_gf_form_view` VALUES("56717", "10", "2017-05-24 10:25:14", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56718", "7", "2017-05-24 10:58:52", "202.46.49.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("56719", "3", "2017-05-24 10:58:54", "202.46.49.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("56720", "3", "2017-05-24 11:06:24", "51.255.65.224", "29");
INSERT INTO `wp_gf_form_view` VALUES("56721", "10", "2017-05-24 11:06:24", "51.255.65.224", "194");
INSERT INTO `wp_gf_form_view` VALUES("56722", "11", "2017-05-24 11:17:17", "94.23.204.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("56723", "2", "2017-05-24 11:17:19", "94.23.204.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("56724", "14", "2017-05-24 11:18:37", "94.23.204.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("56725", "3", "2017-05-24 12:18:15", "66.249.79.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("56726", "10", "2017-05-24 12:18:16", "66.249.79.148", "48");
INSERT INTO `wp_gf_form_view` VALUES("56727", "10", "2017-05-24 13:25:14", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("56728", "3", "2017-05-24 13:31:14", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("56729", "6", "2017-05-24 13:31:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56730", "9", "2017-05-24 13:31:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56731", "8", "2017-05-24 13:31:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56732", "13", "2017-05-24 13:31:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56733", "15", "2017-05-24 13:31:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56734", "3", "2017-05-24 14:11:35", "178.137.4.41", "7");
INSERT INTO `wp_gf_form_view` VALUES("56735", "10", "2017-05-24 14:25:14", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56736", "10", "2017-05-24 15:25:14", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56737", "14", "2017-05-24 15:27:50", "172.107.98.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("56738", "3", "2017-05-24 15:29:07", "68.180.229.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("56739", "9", "2017-05-24 15:30:34", "202.46.54.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("56740", "13", "2017-05-24 16:25:09", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("56741", "3", "2017-05-24 16:25:10", "40.77.167.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("56742", "10", "2017-05-24 16:25:10", "40.77.167.93", "29");
INSERT INTO `wp_gf_form_view` VALUES("56743", "14", "2017-05-24 16:51:43", "70.67.45.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("56744", "3", "2017-05-24 17:00:07", "46.118.155.24", "8");
INSERT INTO `wp_gf_form_view` VALUES("56745", "10", "2017-05-24 17:10:34", "202.46.58.161", "21");
INSERT INTO `wp_gf_form_view` VALUES("56746", "3", "2017-05-24 18:25:06", "77.75.78.160", "4");
INSERT INTO `wp_gf_form_view` VALUES("56747", "10", "2017-05-24 18:25:06", "77.75.78.160", "29");
INSERT INTO `wp_gf_form_view` VALUES("56748", "3", "2017-05-24 19:04:11", "66.249.79.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("56749", "10", "2017-05-24 19:04:11", "66.249.79.88", "21");
INSERT INTO `wp_gf_form_view` VALUES("56750", "3", "2017-05-24 20:01:53", "164.132.162.159", "15");
INSERT INTO `wp_gf_form_view` VALUES("56751", "10", "2017-05-24 20:01:53", "164.132.162.159", "66");
INSERT INTO `wp_gf_form_view` VALUES("56752", "14", "2017-05-24 20:20:32", "96.50.57.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("56753", "10", "2017-05-24 21:25:15", "184.66.248.195", "29");
INSERT INTO `wp_gf_form_view` VALUES("56754", "3", "2017-05-24 21:33:30", "202.46.53.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("56755", "10", "2017-05-24 22:25:15", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56756", "3", "2017-05-24 22:27:38", "184.71.18.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("56757", "3", "2017-05-24 23:02:33", "164.132.161.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("56758", "10", "2017-05-24 23:02:35", "164.132.161.9", "29");
INSERT INTO `wp_gf_form_view` VALUES("56759", "15", "2017-05-24 23:54:01", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("56760", "10", "2017-05-25 00:13:43", "184.66.129.248", "14");
INSERT INTO `wp_gf_form_view` VALUES("56761", "3", "2017-05-25 00:22:41", "40.77.167.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("56762", "11", "2017-05-25 01:14:22", "79.116.27.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("56763", "3", "2017-05-25 01:14:26", "79.116.27.70", "9");
INSERT INTO `wp_gf_form_view` VALUES("56764", "10", "2017-05-25 01:14:26", "79.116.27.70", "74");
INSERT INTO `wp_gf_form_view` VALUES("56765", "2", "2017-05-25 01:15:07", "79.116.27.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("56766", "10", "2017-05-25 02:25:18", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56767", "3", "2017-05-25 02:35:05", "40.77.167.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("56768", "8", "2017-05-25 02:42:00", "51.255.71.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("56769", "3", "2017-05-25 03:08:25", "46.118.155.24", "9");
INSERT INTO `wp_gf_form_view` VALUES("56770", "10", "2017-05-25 03:08:45", "54.74.221.255", "48");
INSERT INTO `wp_gf_form_view` VALUES("56771", "3", "2017-05-25 04:04:03", "40.77.167.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("56772", "10", "2017-05-25 04:04:03", "40.77.167.77", "11");
INSERT INTO `wp_gf_form_view` VALUES("56773", "3", "2017-05-25 05:16:35", "202.46.49.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("56774", "10", "2017-05-25 05:16:36", "202.46.49.144", "29");
INSERT INTO `wp_gf_form_view` VALUES("56775", "12", "2017-05-25 06:07:19", "51.255.65.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("56776", "3", "2017-05-25 06:07:20", "51.255.65.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("56777", "10", "2017-05-25 06:07:20", "51.255.65.76", "29");
INSERT INTO `wp_gf_form_view` VALUES("56778", "3", "2017-05-25 07:16:52", "66.249.79.88", "11");
INSERT INTO `wp_gf_form_view` VALUES("56779", "10", "2017-05-25 07:16:54", "66.249.79.88", "76");
INSERT INTO `wp_gf_form_view` VALUES("56780", "11", "2017-05-25 07:38:05", "138.197.73.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("56781", "2", "2017-05-25 07:38:06", "138.197.73.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("56782", "10", "2017-05-25 08:09:25", "164.132.161.26", "36");
INSERT INTO `wp_gf_form_view` VALUES("56783", "3", "2017-05-25 08:09:25", "164.132.161.26", "32");
INSERT INTO `wp_gf_form_view` VALUES("56784", "6", "2017-05-25 08:31:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56785", "9", "2017-05-25 08:31:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56786", "8", "2017-05-25 08:31:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56787", "13", "2017-05-25 08:31:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56788", "15", "2017-05-25 08:31:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56789", "10", "2017-05-25 09:25:20", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56790", "3", "2017-05-25 09:32:42", "202.46.57.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("56791", "3", "2017-05-25 10:05:03", "164.132.161.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("56792", "10", "2017-05-25 10:05:04", "164.132.161.58", "29");
INSERT INTO `wp_gf_form_view` VALUES("56793", "10", "2017-05-25 11:05:05", "51.255.71.126", "30");
INSERT INTO `wp_gf_form_view` VALUES("56794", "3", "2017-05-25 11:05:05", "51.255.71.126", "3");
INSERT INTO `wp_gf_form_view` VALUES("56795", "15", "2017-05-25 11:32:59", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("56796", "10", "2017-05-25 12:25:18", "184.66.248.195", "29");
INSERT INTO `wp_gf_form_view` VALUES("56797", "3", "2017-05-25 12:31:43", "207.46.13.98", "3");
INSERT INTO `wp_gf_form_view` VALUES("56798", "3", "2017-05-25 13:13:54", "178.137.4.41", "8");
INSERT INTO `wp_gf_form_view` VALUES("56799", "10", "2017-05-25 13:21:08", "40.77.167.93", "26");
INSERT INTO `wp_gf_form_view` VALUES("56800", "10", "2017-05-25 14:25:20", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("56801", "3", "2017-05-25 14:53:42", "66.249.79.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("56802", "11", "2017-05-25 15:02:15", "212.83.149.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("56803", "3", "2017-05-25 15:02:19", "212.83.149.185", "10");
INSERT INTO `wp_gf_form_view` VALUES("56804", "10", "2017-05-25 15:02:19", "212.83.149.185", "84");
INSERT INTO `wp_gf_form_view` VALUES("56805", "2", "2017-05-25 15:02:58", "212.83.149.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("56806", "7", "2017-05-25 15:06:41", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("56807", "3", "2017-05-25 16:11:22", "202.46.57.208", "4");
INSERT INTO `wp_gf_form_view` VALUES("56808", "10", "2017-05-25 16:11:26", "202.46.57.208", "29");
INSERT INTO `wp_gf_form_view` VALUES("56809", "3", "2017-05-25 17:12:04", "81.138.25.225", "7");
INSERT INTO `wp_gf_form_view` VALUES("56810", "10", "2017-05-25 17:12:05", "81.138.25.225", "58");
INSERT INTO `wp_gf_form_view` VALUES("56811", "2", "2017-05-25 17:12:21", "81.138.25.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("56812", "3", "2017-05-25 18:08:27", "207.46.13.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("56813", "10", "2017-05-25 18:08:27", "207.46.13.98", "21");
INSERT INTO `wp_gf_form_view` VALUES("56814", "10", "2017-05-25 19:03:11", "204.79.180.103", "116");
INSERT INTO `wp_gf_form_view` VALUES("56815", "3", "2017-05-25 19:03:12", "204.79.180.103", "41");
INSERT INTO `wp_gf_form_view` VALUES("56816", "14", "2017-05-25 19:20:54", "88.150.182.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("56817", "11", "2017-05-25 19:37:58", "86.123.245.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("56818", "2", "2017-05-25 19:39:00", "86.123.245.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("56819", "6", "2017-05-25 19:40:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56820", "9", "2017-05-25 19:40:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56821", "8", "2017-05-25 19:40:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56822", "13", "2017-05-25 19:40:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56823", "15", "2017-05-25 19:40:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56824", "3", "2017-05-25 20:09:32", "40.77.167.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("56825", "10", "2017-05-25 20:09:32", "40.77.167.77", "30");
INSERT INTO `wp_gf_form_view` VALUES("56826", "3", "2017-05-25 21:14:12", "46.118.155.24", "7");
INSERT INTO `wp_gf_form_view` VALUES("56827", "3", "2017-05-25 21:14:12", "46.118.155.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("56828", "10", "2017-05-25 21:25:25", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56829", "3", "2017-05-25 22:10:05", "40.77.167.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("56830", "10", "2017-05-25 22:10:05", "40.77.167.77", "20");
INSERT INTO `wp_gf_form_view` VALUES("56831", "3", "2017-05-25 23:07:55", "46.118.155.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("56832", "10", "2017-05-25 23:25:21", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("56833", "15", "2017-05-25 23:53:34", "204.79.180.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("56834", "3", "2017-05-26 00:06:35", "142.36.94.180", "12");
INSERT INTO `wp_gf_form_view` VALUES("56835", "10", "2017-05-26 00:06:35", "142.36.94.180", "77");
INSERT INTO `wp_gf_form_view` VALUES("56836", "10", "2017-05-26 01:25:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("56837", "13", "2017-05-26 01:41:49", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56838", "3", "2017-05-26 02:11:03", "202.46.56.208", "6");
INSERT INTO `wp_gf_form_view` VALUES("56839", "10", "2017-05-26 02:11:04", "202.46.56.208", "29");
INSERT INTO `wp_gf_form_view` VALUES("56840", "10", "2017-05-26 03:25:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("56841", "3", "2017-05-26 04:22:34", "164.132.161.96", "3");
INSERT INTO `wp_gf_form_view` VALUES("56842", "10", "2017-05-26 04:22:35", "164.132.161.96", "20");
INSERT INTO `wp_gf_form_view` VALUES("56843", "10", "2017-05-26 05:25:22", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56844", "6", "2017-05-26 05:32:23", "217.182.132.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("56845", "3", "2017-05-26 05:32:24", "217.182.132.78", "4");
INSERT INTO `wp_gf_form_view` VALUES("56846", "14", "2017-05-26 05:41:43", "104.223.31.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("56847", "3", "2017-05-26 06:09:50", "66.249.79.86", "6");
INSERT INTO `wp_gf_form_view` VALUES("56848", "10", "2017-05-26 06:09:52", "66.249.79.86", "30");
INSERT INTO `wp_gf_form_view` VALUES("56849", "14", "2017-05-26 06:25:07", "80.243.181.57", "2");
INSERT INTO `wp_gf_form_view` VALUES("56850", "6", "2017-05-26 06:43:44", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("56851", "10", "2017-05-26 07:25:23", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("56852", "3", "2017-05-26 07:26:00", "202.46.58.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("56853", "3", "2017-05-26 08:13:26", "46.229.168.73", "20");
INSERT INTO `wp_gf_form_view` VALUES("56854", "10", "2017-05-26 08:13:48", "46.229.168.65", "128");
INSERT INTO `wp_gf_form_view` VALUES("56855", "15", "2017-05-26 08:16:30", "46.229.168.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("56856", "2", "2017-05-26 08:16:56", "46.229.168.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("56857", "11", "2017-05-26 09:00:15", "5.102.1.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("56858", "3", "2017-05-26 09:00:20", "5.102.1.50", "12");
INSERT INTO `wp_gf_form_view` VALUES("56859", "10", "2017-05-26 09:00:20", "5.102.1.50", "92");
INSERT INTO `wp_gf_form_view` VALUES("56860", "2", "2017-05-26 09:01:13", "5.102.1.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("56861", "15", "2017-05-26 09:52:27", "202.46.49.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("56862", "3", "2017-05-26 10:15:01", "54.74.221.255", "7");
INSERT INTO `wp_gf_form_view` VALUES("56863", "10", "2017-05-26 10:15:04", "54.74.221.255", "48");
INSERT INTO `wp_gf_form_view` VALUES("56864", "10", "2017-05-26 11:25:24", "184.66.248.195", "178");
INSERT INTO `wp_gf_form_view` VALUES("56865", "11", "2017-05-26 11:28:53", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("56866", "3", "2017-05-26 11:29:15", "188.40.46.135", "21");
INSERT INTO `wp_gf_form_view` VALUES("56867", "14", "2017-05-26 11:33:06", "155.94.148.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("56868", "6", "2017-05-26 12:05:51", "202.46.48.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("56869", "3", "2017-05-26 12:05:56", "202.46.48.145", "8");
INSERT INTO `wp_gf_form_view` VALUES("56870", "10", "2017-05-26 12:05:56", "202.46.48.145", "38");
INSERT INTO `wp_gf_form_view` VALUES("56871", "3", "2017-05-26 13:12:29", "202.46.53.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("56872", "10", "2017-05-26 13:12:29", "202.46.53.111", "13");
INSERT INTO `wp_gf_form_view` VALUES("56873", "3", "2017-05-26 14:01:29", "46.119.117.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("56874", "3", "2017-05-26 14:01:29", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("56875", "10", "2017-05-26 14:17:56", "188.40.46.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("56876", "3", "2017-05-26 15:03:18", "40.77.167.77", "39");
INSERT INTO `wp_gf_form_view` VALUES("56877", "10", "2017-05-26 15:03:18", "40.77.167.77", "43");
INSERT INTO `wp_gf_form_view` VALUES("56878", "6", "2017-05-26 15:14:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56879", "9", "2017-05-26 15:14:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56880", "8", "2017-05-26 15:14:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56881", "13", "2017-05-26 15:14:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56882", "15", "2017-05-26 15:14:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56883", "3", "2017-05-26 16:16:08", "217.182.132.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("56884", "10", "2017-05-26 16:16:08", "217.182.132.17", "20");
INSERT INTO `wp_gf_form_view` VALUES("56885", "3", "2017-05-26 17:05:47", "202.46.56.190", "5");
INSERT INTO `wp_gf_form_view` VALUES("56886", "10", "2017-05-26 17:05:47", "202.46.56.190", "11");
INSERT INTO `wp_gf_form_view` VALUES("56887", "3", "2017-05-26 18:06:42", "198.103.109.141", "5");
INSERT INTO `wp_gf_form_view` VALUES("56888", "10", "2017-05-26 18:06:42", "198.103.109.141", "38");
INSERT INTO `wp_gf_form_view` VALUES("56889", "10", "2017-05-26 19:00:25", "68.180.229.228", "32");
INSERT INTO `wp_gf_form_view` VALUES("56890", "3", "2017-05-26 19:00:25", "68.180.229.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("56891", "10", "2017-05-26 20:25:33", "184.66.248.195", "158");
INSERT INTO `wp_gf_form_view` VALUES("56892", "3", "2017-05-26 20:36:09", "68.180.229.228", "25");
INSERT INTO `wp_gf_form_view` VALUES("56893", "13", "2017-05-26 20:40:50", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("56894", "15", "2017-05-26 20:43:30", "47.150.129.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("56895", "9", "2017-05-26 20:55:02", "202.46.52.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("56896", "10", "2017-05-26 21:25:25", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("56897", "3", "2017-05-26 22:01:46", "202.46.53.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("56898", "10", "2017-05-26 22:01:49", "202.46.53.200", "11");
INSERT INTO `wp_gf_form_view` VALUES("56899", "2", "2017-05-26 23:18:55", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56900", "3", "2017-05-26 23:45:24", "164.132.161.4", "3");
INSERT INTO `wp_gf_form_view` VALUES("56901", "10", "2017-05-26 23:46:24", "51.255.65.33", "18");
INSERT INTO `wp_gf_form_view` VALUES("56902", "11", "2017-05-27 00:44:18", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56903", "2", "2017-05-27 00:44:18", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56904", "10", "2017-05-27 00:44:19", "138.197.73.162", "65");
INSERT INTO `wp_gf_form_view` VALUES("56905", "3", "2017-05-27 00:44:19", "138.197.73.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("56906", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56907", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56908", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56909", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56910", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56911", "3", "2017-05-27 02:00:48", "46.119.117.60", "34");
INSERT INTO `wp_gf_form_view` VALUES("56912", "10", "2017-05-27 02:04:01", "202.46.58.194", "52");
INSERT INTO `wp_gf_form_view` VALUES("56913", "6", "2017-05-27 02:23:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56914", "9", "2017-05-27 02:23:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56915", "8", "2017-05-27 02:23:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56916", "13", "2017-05-27 02:23:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56917", "15", "2017-05-27 02:23:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56918", "3", "2017-05-27 03:00:23", "68.180.229.228", "23");
INSERT INTO `wp_gf_form_view` VALUES("56919", "10", "2017-05-27 03:00:23", "68.180.229.228", "37");
INSERT INTO `wp_gf_form_view` VALUES("56920", "8", "2017-05-27 03:37:21", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56921", "13", "2017-05-27 03:37:21", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("56922", "3", "2017-05-27 04:01:06", "40.77.167.43", "5");
INSERT INTO `wp_gf_form_view` VALUES("56923", "10", "2017-05-27 04:01:07", "40.77.167.43", "18");
INSERT INTO `wp_gf_form_view` VALUES("56924", "3", "2017-05-27 05:53:57", "172.104.54.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("56925", "10", "2017-05-27 05:54:09", "172.104.54.86", "9");
INSERT INTO `wp_gf_form_view` VALUES("56926", "14", "2017-05-27 06:15:34", "68.185.106.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("56927", "3", "2017-05-27 06:39:08", "54.74.221.255", "37");
INSERT INTO `wp_gf_form_view` VALUES("56928", "10", "2017-05-27 06:39:10", "54.74.221.255", "237");
INSERT INTO `wp_gf_form_view` VALUES("56929", "9", "2017-05-27 06:49:49", "207.46.13.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("56930", "11", "2017-05-27 06:55:23", "77.75.77.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("56931", "10", "2017-05-27 07:15:56", "202.46.53.120", "19");
INSERT INTO `wp_gf_form_view` VALUES("56932", "3", "2017-05-27 07:15:56", "202.46.53.120", "6");
INSERT INTO `wp_gf_form_view` VALUES("56933", "11", "2017-05-27 08:17:41", "217.182.132.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("56934", "3", "2017-05-27 08:47:22", "40.77.167.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("56935", "10", "2017-05-27 08:47:22", "40.77.167.93", "9");
INSERT INTO `wp_gf_form_view` VALUES("56936", "3", "2017-05-27 09:14:05", "217.182.132.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("56937", "10", "2017-05-27 09:14:05", "217.182.132.24", "18");
INSERT INTO `wp_gf_form_view` VALUES("56938", "3", "2017-05-27 10:15:19", "46.119.117.60", "5");
INSERT INTO `wp_gf_form_view` VALUES("56939", "3", "2017-05-27 10:15:19", "46.119.117.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("56940", "10", "2017-05-27 10:26:01", "202.46.48.207", "18");
INSERT INTO `wp_gf_form_view` VALUES("56941", "3", "2017-05-27 11:22:14", "68.180.229.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("56942", "10", "2017-05-27 11:22:16", "68.180.229.228", "27");
INSERT INTO `wp_gf_form_view` VALUES("56943", "9", "2017-05-27 12:39:17", "202.46.55.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("56944", "3", "2017-05-27 12:39:19", "202.46.55.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("56945", "10", "2017-05-27 12:39:19", "202.46.55.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("56946", "3", "2017-05-27 13:00:40", "68.180.229.228", "51");
INSERT INTO `wp_gf_form_view` VALUES("56947", "10", "2017-05-27 13:45:57", "202.46.58.196", "351");
INSERT INTO `wp_gf_form_view` VALUES("56948", "14", "2017-05-27 13:54:43", "104.131.22.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56949", "11", "2017-05-27 13:54:48", "104.131.22.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56950", "2", "2017-05-27 13:58:06", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("56951", "10", "2017-05-27 14:00:16", "104.196.183.13", "3400");
INSERT INTO `wp_gf_form_view` VALUES("56952", "3", "2017-05-27 14:00:16", "104.196.183.13", "427");
INSERT INTO `wp_gf_form_view` VALUES("56953", "11", "2017-05-27 14:00:26", "104.196.183.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("56954", "6", "2017-05-27 14:01:13", "104.131.22.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56955", "14", "2017-05-27 14:03:07", "24.69.154.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("56956", "9", "2017-05-27 14:14:08", "104.131.22.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56957", "15", "2017-05-27 14:27:19", "104.131.22.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56958", "2", "2017-05-27 14:36:39", "35.185.0.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("56959", "3", "2017-05-27 15:00:09", "104.131.22.162", "140");
INSERT INTO `wp_gf_form_view` VALUES("56960", "10", "2017-05-27 15:00:09", "104.131.22.162", "1088");
INSERT INTO `wp_gf_form_view` VALUES("56961", "2", "2017-05-27 15:02:18", "104.131.22.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("56962", "9", "2017-05-27 15:13:53", "164.132.161.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("56963", "13", "2017-05-27 15:14:38", "104.131.22.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("56964", "14", "2017-05-27 15:56:43", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("56965", "11", "2017-05-27 15:57:22", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("56966", "10", "2017-05-27 16:00:12", "104.196.183.13", "268");
INSERT INTO `wp_gf_form_view` VALUES("56967", "3", "2017-05-27 16:00:12", "104.196.183.13", "36");
INSERT INTO `wp_gf_form_view` VALUES("56968", "14", "2017-05-27 16:05:17", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("56969", "2", "2017-05-27 16:05:32", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("56970", "11", "2017-05-27 16:05:50", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("56971", "10", "2017-05-27 17:34:33", "104.196.154.58", "190");
INSERT INTO `wp_gf_form_view` VALUES("56972", "3", "2017-05-27 17:34:37", "104.196.154.58", "32");
INSERT INTO `wp_gf_form_view` VALUES("56973", "14", "2017-05-27 17:35:21", "104.196.154.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("56974", "15", "2017-05-27 17:37:14", "104.196.154.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("56975", "3", "2017-05-27 18:02:33", "40.77.167.93", "66");
INSERT INTO `wp_gf_form_view` VALUES("56976", "10", "2017-05-27 18:02:33", "40.77.167.93", "345");
INSERT INTO `wp_gf_form_view` VALUES("56977", "2", "2017-05-27 18:09:35", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("56978", "15", "2017-05-27 18:22:54", "35.185.0.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("56979", "8", "2017-05-27 18:23:12", "35.185.0.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("56980", "13", "2017-05-27 18:24:13", "35.185.0.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("56981", "6", "2017-05-27 18:24:26", "35.185.0.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("56982", "14", "2017-05-27 18:51:30", "199.60.109.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("56983", "3", "2017-05-27 19:08:04", "104.196.33.217", "88");
INSERT INTO `wp_gf_form_view` VALUES("56984", "10", "2017-05-27 19:08:04", "104.196.33.217", "280");
INSERT INTO `wp_gf_form_view` VALUES("56985", "15", "2017-05-27 19:08:20", "104.196.33.217", "3");
INSERT INTO `wp_gf_form_view` VALUES("56986", "9", "2017-05-27 19:08:55", "104.196.33.217", "3");
INSERT INTO `wp_gf_form_view` VALUES("56987", "8", "2017-05-27 19:09:58", "104.196.33.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("56988", "6", "2017-05-27 19:55:27", "104.196.217.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("56989", "13", "2017-05-27 19:55:51", "104.196.217.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("56990", "3", "2017-05-27 20:11:38", "77.75.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("56991", "10", "2017-05-27 20:11:38", "77.75.76.169", "9");
INSERT INTO `wp_gf_form_view` VALUES("56992", "10", "2017-05-27 21:19:45", "66.249.79.136", "43");
INSERT INTO `wp_gf_form_view` VALUES("56993", "3", "2017-05-27 21:19:50", "66.249.79.136", "31");
INSERT INTO `wp_gf_form_view` VALUES("56994", "6", "2017-05-27 21:21:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56995", "9", "2017-05-27 21:21:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56996", "8", "2017-05-27 21:21:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56997", "13", "2017-05-27 21:21:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56998", "15", "2017-05-27 21:21:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("56999", "3", "2017-05-27 22:24:59", "51.255.65.44", "6");
INSERT INTO `wp_gf_form_view` VALUES("57000", "10", "2017-05-27 22:25:00", "51.255.65.44", "47");
INSERT INTO `wp_gf_form_view` VALUES("57001", "10", "2017-05-27 23:06:30", "66.249.84.200", "38");
INSERT INTO `wp_gf_form_view` VALUES("57002", "3", "2017-05-27 23:06:31", "66.249.84.200", "4");
INSERT INTO `wp_gf_form_view` VALUES("57003", "3", "2017-05-28 00:06:20", "77.75.76.169", "16");
INSERT INTO `wp_gf_form_view` VALUES("57004", "10", "2017-05-28 00:06:20", "77.75.76.169", "28");
INSERT INTO `wp_gf_form_view` VALUES("57005", "8", "2017-05-28 00:48:52", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57006", "13", "2017-05-28 00:48:52", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57007", "3", "2017-05-28 01:08:01", "77.75.78.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("57008", "10", "2017-05-28 01:08:01", "77.75.78.169", "10");
INSERT INTO `wp_gf_form_view` VALUES("57009", "2", "2017-05-28 01:18:29", "202.46.56.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("57010", "10", "2017-05-28 02:24:49", "207.6.150.150", "19");
INSERT INTO `wp_gf_form_view` VALUES("57011", "3", "2017-05-28 02:24:51", "207.6.150.150", "6");
INSERT INTO `wp_gf_form_view` VALUES("57012", "3", "2017-05-28 03:29:44", "77.75.79.17", "5");
INSERT INTO `wp_gf_form_view` VALUES("57013", "10", "2017-05-28 03:29:45", "77.75.79.17", "9");
INSERT INTO `wp_gf_form_view` VALUES("57014", "3", "2017-05-28 04:25:33", "137.74.201.100", "12");
INSERT INTO `wp_gf_form_view` VALUES("57015", "10", "2017-05-28 04:25:33", "137.74.201.100", "40");
INSERT INTO `wp_gf_form_view` VALUES("57016", "9", "2017-05-28 05:09:34", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57017", "3", "2017-05-28 05:09:35", "68.180.229.228", "4");
INSERT INTO `wp_gf_form_view` VALUES("57018", "10", "2017-05-28 05:09:35", "68.180.229.228", "36");
INSERT INTO `wp_gf_form_view` VALUES("57019", "3", "2017-05-28 06:01:07", "217.182.132.70", "4");
INSERT INTO `wp_gf_form_view` VALUES("57020", "10", "2017-05-28 06:01:10", "217.182.132.70", "27");
INSERT INTO `wp_gf_form_view` VALUES("57021", "3", "2017-05-28 07:04:46", "88.198.19.164", "7");
INSERT INTO `wp_gf_form_view` VALUES("57022", "10", "2017-05-28 07:04:46", "88.198.19.164", "65");
INSERT INTO `wp_gf_form_view` VALUES("57023", "3", "2017-05-28 08:01:17", "68.180.229.228", "38");
INSERT INTO `wp_gf_form_view` VALUES("57024", "10", "2017-05-28 08:01:17", "68.180.229.228", "78");
INSERT INTO `wp_gf_form_view` VALUES("57025", "6", "2017-05-28 08:32:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57026", "9", "2017-05-28 08:32:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57027", "8", "2017-05-28 08:32:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57028", "13", "2017-05-28 08:32:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57029", "15", "2017-05-28 08:32:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57030", "3", "2017-05-28 10:54:40", "66.249.79.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("57031", "10", "2017-05-28 10:54:42", "66.249.79.134", "9");
INSERT INTO `wp_gf_form_view` VALUES("57032", "14", "2017-05-28 11:26:05", "83.143.242.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("57033", "3", "2017-05-28 11:42:36", "46.118.116.168", "3");
INSERT INTO `wp_gf_form_view` VALUES("57034", "3", "2017-05-28 11:42:36", "46.118.116.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("57035", "15", "2017-05-28 11:56:31", "51.255.65.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("57036", "3", "2017-05-28 12:17:37", "217.182.132.193", "4");
INSERT INTO `wp_gf_form_view` VALUES("57037", "10", "2017-05-28 12:17:38", "217.182.132.193", "27");
INSERT INTO `wp_gf_form_view` VALUES("57038", "3", "2017-05-28 13:02:56", "164.132.161.33", "4");
INSERT INTO `wp_gf_form_view` VALUES("57039", "10", "2017-05-28 13:02:57", "164.132.161.33", "28");
INSERT INTO `wp_gf_form_view` VALUES("57040", "2", "2017-05-28 13:38:09", "164.132.161.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("57041", "3", "2017-05-28 14:08:23", "202.46.56.16", "17");
INSERT INTO `wp_gf_form_view` VALUES("57042", "10", "2017-05-28 14:08:24", "202.46.56.16", "99");
INSERT INTO `wp_gf_form_view` VALUES("57043", "11", "2017-05-28 14:37:20", "94.209.237.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("57044", "2", "2017-05-28 14:38:11", "94.209.237.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("57045", "10", "2017-05-28 15:19:59", "40.77.167.93", "19");
INSERT INTO `wp_gf_form_view` VALUES("57046", "3", "2017-05-28 15:20:00", "40.77.167.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("57047", "14", "2017-05-28 15:48:05", "146.0.74.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("57048", "3", "2017-05-28 16:21:40", "202.46.58.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("57049", "10", "2017-05-28 16:21:40", "202.46.58.164", "27");
INSERT INTO `wp_gf_form_view` VALUES("57050", "3", "2017-05-28 17:28:21", "202.46.52.178", "9");
INSERT INTO `wp_gf_form_view` VALUES("57051", "10", "2017-05-28 17:28:21", "202.46.52.178", "64");
INSERT INTO `wp_gf_form_view` VALUES("57052", "11", "2017-05-28 17:35:54", "159.203.112.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("57053", "2", "2017-05-28 17:35:54", "159.203.112.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("57054", "3", "2017-05-28 18:01:40", "202.46.48.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("57055", "10", "2017-05-28 18:01:41", "202.46.48.84", "18");
INSERT INTO `wp_gf_form_view` VALUES("57056", "3", "2017-05-28 19:02:17", "178.137.4.41", "4");
INSERT INTO `wp_gf_form_view` VALUES("57057", "10", "2017-05-28 19:08:23", "202.46.53.17", "18");
INSERT INTO `wp_gf_form_view` VALUES("57058", "3", "2017-05-28 20:48:21", "202.46.53.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("57059", "10", "2017-05-28 20:48:22", "202.46.53.41", "19");
INSERT INTO `wp_gf_form_view` VALUES("57060", "3", "2017-05-28 21:12:34", "217.182.132.188", "5");
INSERT INTO `wp_gf_form_view` VALUES("57061", "10", "2017-05-28 21:12:34", "217.182.132.188", "18");
INSERT INTO `wp_gf_form_view` VALUES("57062", "15", "2017-05-28 21:28:42", "66.249.79.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("57063", "10", "2017-05-28 22:20:14", "207.46.13.126", "19");
INSERT INTO `wp_gf_form_view` VALUES("57064", "3", "2017-05-28 22:20:15", "207.46.13.126", "4");
INSERT INTO `wp_gf_form_view` VALUES("57065", "3", "2017-05-28 23:35:05", "66.249.79.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("57066", "10", "2017-05-28 23:39:13", "77.75.77.62", "9");
INSERT INTO `wp_gf_form_view` VALUES("57067", "3", "2017-05-29 00:29:35", "178.137.4.41", "7");
INSERT INTO `wp_gf_form_view` VALUES("57068", "10", "2017-05-29 00:34:35", "207.46.13.126", "9");
INSERT INTO `wp_gf_form_view` VALUES("57069", "14", "2017-05-29 01:06:25", "51.255.65.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("57070", "3", "2017-05-29 01:19:42", "207.46.13.126", "4");
INSERT INTO `wp_gf_form_view` VALUES("57071", "10", "2017-05-29 01:19:42", "207.46.13.126", "36");
INSERT INTO `wp_gf_form_view` VALUES("57072", "5", "2017-05-29 01:49:23", "66.249.79.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("57073", "14", "2017-05-29 02:07:24", "155.133.64.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("57074", "3", "2017-05-29 02:12:12", "54.74.221.255", "5");
INSERT INTO `wp_gf_form_view` VALUES("57075", "10", "2017-05-29 02:12:12", "54.74.221.255", "37");
INSERT INTO `wp_gf_form_view` VALUES("57076", "15", "2017-05-29 03:09:21", "40.77.167.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("57077", "3", "2017-05-29 03:09:23", "40.77.167.93", "28");
INSERT INTO `wp_gf_form_view` VALUES("57078", "10", "2017-05-29 03:09:23", "40.77.167.93", "14");
INSERT INTO `wp_gf_form_view` VALUES("57079", "6", "2017-05-29 03:43:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57080", "9", "2017-05-29 03:43:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57081", "8", "2017-05-29 03:43:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57082", "13", "2017-05-29 03:43:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57083", "3", "2017-05-29 04:18:20", "66.249.79.138", "22");
INSERT INTO `wp_gf_form_view` VALUES("57084", "10", "2017-05-29 04:18:21", "66.249.79.138", "110");
INSERT INTO `wp_gf_form_view` VALUES("57085", "11", "2017-05-29 04:37:51", "191.101.31.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("57086", "2", "2017-05-29 04:38:35", "191.101.31.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("57087", "8", "2017-05-29 04:45:59", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57088", "13", "2017-05-29 04:45:59", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57089", "10", "2017-05-29 05:21:23", "184.66.248.195", "69");
INSERT INTO `wp_gf_form_view` VALUES("57090", "3", "2017-05-29 05:48:22", "68.180.229.228", "19");
INSERT INTO `wp_gf_form_view` VALUES("57091", "15", "2017-05-29 05:50:28", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57092", "3", "2017-05-29 06:00:11", "68.180.229.228", "5");
INSERT INTO `wp_gf_form_view` VALUES("57093", "10", "2017-05-29 06:00:11", "68.180.229.228", "38");
INSERT INTO `wp_gf_form_view` VALUES("57094", "3", "2017-05-29 07:05:44", "121.35.176.252", "6");
INSERT INTO `wp_gf_form_view` VALUES("57095", "10", "2017-05-29 07:05:44", "121.35.176.252", "38");
INSERT INTO `wp_gf_form_view` VALUES("57096", "2", "2017-05-29 07:05:45", "121.35.176.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("57097", "11", "2017-05-29 07:05:45", "121.35.176.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("57098", "8", "2017-05-29 07:09:24", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("57099", "10", "2017-05-29 08:22:04", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57100", "3", "2017-05-29 08:28:24", "207.46.13.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("57101", "3", "2017-05-29 09:11:13", "77.75.76.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("57102", "10", "2017-05-29 09:11:13", "77.75.76.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("57103", "3", "2017-05-29 10:12:39", "207.46.13.43", "39");
INSERT INTO `wp_gf_form_view` VALUES("57104", "10", "2017-05-29 10:12:40", "207.46.13.43", "255");
INSERT INTO `wp_gf_form_view` VALUES("57105", "9", "2017-05-29 10:12:57", "207.46.13.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("57106", "8", "2017-05-29 10:12:59", "207.46.13.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("57107", "14", "2017-05-29 10:51:30", "195.184.208.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("57108", "3", "2017-05-29 11:05:16", "51.255.65.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("57109", "10", "2017-05-29 11:05:17", "51.255.65.60", "11");
INSERT INTO `wp_gf_form_view` VALUES("57110", "14", "2017-05-29 11:06:19", "217.182.132.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("57111", "3", "2017-05-29 12:06:09", "202.46.54.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("57112", "10", "2017-05-29 12:06:09", "202.46.54.134", "11");
INSERT INTO `wp_gf_form_view` VALUES("57113", "10", "2017-05-29 13:22:47", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57114", "3", "2017-05-29 13:50:39", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57115", "10", "2017-05-29 14:22:47", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57116", "3", "2017-05-29 14:49:58", "217.182.132.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("57117", "3", "2017-05-29 15:03:21", "68.180.229.228", "59");
INSERT INTO `wp_gf_form_view` VALUES("57118", "6", "2017-05-29 15:03:21", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("57119", "9", "2017-05-29 15:03:21", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("57120", "8", "2017-05-29 15:03:22", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("57121", "10", "2017-05-29 15:03:22", "68.180.229.228", "59");
INSERT INTO `wp_gf_form_view` VALUES("57122", "13", "2017-05-29 15:03:22", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("57123", "15", "2017-05-29 15:03:23", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("57124", "11", "2017-05-29 16:01:14", "173.161.189.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("57125", "3", "2017-05-29 16:01:19", "173.161.189.149", "11");
INSERT INTO `wp_gf_form_view` VALUES("57126", "10", "2017-05-29 16:01:19", "173.161.189.149", "92");
INSERT INTO `wp_gf_form_view` VALUES("57127", "2", "2017-05-29 16:01:55", "173.161.189.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("57128", "10", "2017-05-29 17:02:20", "51.255.71.123", "87");
INSERT INTO `wp_gf_form_view` VALUES("57129", "6", "2017-05-29 17:10:28", "5.9.145.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("57130", "3", "2017-05-29 17:10:30", "5.9.145.132", "13");
INSERT INTO `wp_gf_form_view` VALUES("57131", "14", "2017-05-29 17:20:15", "62.210.79.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("57132", "14", "2017-05-29 18:04:13", "24.69.156.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("57133", "3", "2017-05-29 18:06:30", "202.46.54.31", "10");
INSERT INTO `wp_gf_form_view` VALUES("57134", "10", "2017-05-29 18:06:30", "202.46.54.31", "29");
INSERT INTO `wp_gf_form_view` VALUES("57135", "3", "2017-05-29 19:21:29", "164.132.161.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("57136", "10", "2017-05-29 19:21:31", "164.132.161.83", "10");
INSERT INTO `wp_gf_form_view` VALUES("57137", "10", "2017-05-29 20:00:10", "184.66.248.195", "65");
INSERT INTO `wp_gf_form_view` VALUES("57138", "3", "2017-05-29 20:08:52", "52.5.220.220", "8");
INSERT INTO `wp_gf_form_view` VALUES("57139", "10", "2017-05-29 21:00:28", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57140", "3", "2017-05-29 21:43:44", "46.118.123.232", "3");
INSERT INTO `wp_gf_form_view` VALUES("57141", "10", "2017-05-29 22:00:35", "184.66.248.195", "29");
INSERT INTO `wp_gf_form_view` VALUES("57142", "3", "2017-05-29 22:30:30", "207.46.13.126", "5");
INSERT INTO `wp_gf_form_view` VALUES("57143", "10", "2017-05-29 23:01:06", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57144", "3", "2017-05-29 23:06:31", "202.46.48.203", "3");
INSERT INTO `wp_gf_form_view` VALUES("57145", "10", "2017-05-30 00:01:12", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57146", "3", "2017-05-30 00:48:16", "68.180.229.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("57147", "10", "2017-05-30 01:01:19", "184.66.248.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("57148", "3", "2017-05-30 01:05:29", "46.118.117.131", "8");
INSERT INTO `wp_gf_form_view` VALUES("57149", "3", "2017-05-30 02:00:05", "202.46.48.93", "4");
INSERT INTO `wp_gf_form_view` VALUES("57150", "10", "2017-05-30 02:00:06", "202.46.48.93", "20");
INSERT INTO `wp_gf_form_view` VALUES("57151", "10", "2017-05-30 03:01:32", "184.66.248.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("57152", "3", "2017-05-30 03:06:44", "202.46.53.196", "4");
INSERT INTO `wp_gf_form_view` VALUES("57153", "10", "2017-05-30 04:01:32", "184.66.248.195", "39");
INSERT INTO `wp_gf_form_view` VALUES("57154", "3", "2017-05-30 04:10:39", "54.74.221.255", "8");
INSERT INTO `wp_gf_form_view` VALUES("57155", "10", "2017-05-30 05:01:54", "184.66.248.195", "103");
INSERT INTO `wp_gf_form_view` VALUES("57156", "3", "2017-05-30 05:11:49", "96.54.234.24", "13");
INSERT INTO `wp_gf_form_view` VALUES("57157", "11", "2017-05-30 05:54:50", "208.43.225.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("57158", "10", "2017-05-30 06:01:55", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57159", "3", "2017-05-30 06:30:05", "202.46.53.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("57160", "10", "2017-05-30 07:02:03", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57161", "3", "2017-05-30 07:16:49", "207.46.13.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("57162", "10", "2017-05-30 08:00:00", "207.46.13.126", "30");
INSERT INTO `wp_gf_form_view` VALUES("57163", "3", "2017-05-30 08:00:01", "207.46.13.126", "6");
INSERT INTO `wp_gf_form_view` VALUES("57164", "10", "2017-05-30 09:02:14", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57165", "3", "2017-05-30 09:31:59", "202.46.55.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("57166", "14", "2017-05-30 09:45:34", "91.235.142.224", "2");
INSERT INTO `wp_gf_form_view` VALUES("57167", "10", "2017-05-30 10:02:14", "184.66.248.195", "25");
INSERT INTO `wp_gf_form_view` VALUES("57168", "3", "2017-05-30 10:13:22", "46.118.117.131", "29");
INSERT INTO `wp_gf_form_view` VALUES("57169", "6", "2017-05-30 10:29:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57170", "9", "2017-05-30 10:29:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57171", "8", "2017-05-30 10:29:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57172", "13", "2017-05-30 10:29:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57173", "15", "2017-05-30 10:29:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57174", "10", "2017-05-30 11:00:56", "164.132.161.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("57175", "3", "2017-05-30 11:26:31", "137.74.207.101", "5");
INSERT INTO `wp_gf_form_view` VALUES("57176", "13", "2017-05-30 11:28:59", "66.249.79.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("57177", "3", "2017-05-30 12:00:46", "77.75.78.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("57178", "10", "2017-05-30 12:00:47", "77.75.78.160", "50");
INSERT INTO `wp_gf_form_view` VALUES("57179", "10", "2017-05-30 13:02:56", "184.66.248.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("57180", "3", "2017-05-30 13:03:54", "46.118.123.232", "5");
INSERT INTO `wp_gf_form_view` VALUES("57181", "10", "2017-05-30 14:03:17", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57182", "3", "2017-05-30 14:36:54", "202.46.50.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("57183", "10", "2017-05-30 15:03:28", "184.66.248.195", "47");
INSERT INTO `wp_gf_form_view` VALUES("57184", "3", "2017-05-30 15:10:20", "207.46.13.126", "6");
INSERT INTO `wp_gf_form_view` VALUES("57185", "3", "2017-05-30 16:02:43", "217.182.132.94", "7");
INSERT INTO `wp_gf_form_view` VALUES("57186", "10", "2017-05-30 16:02:43", "217.182.132.94", "20");
INSERT INTO `wp_gf_form_view` VALUES("57187", "10", "2017-05-30 17:03:51", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57188", "3", "2017-05-30 17:09:15", "164.132.161.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("57189", "10", "2017-05-30 18:03:53", "184.66.248.195", "29");
INSERT INTO `wp_gf_form_view` VALUES("57190", "3", "2017-05-30 18:10:01", "217.182.132.147", "7");
INSERT INTO `wp_gf_form_view` VALUES("57191", "3", "2017-05-30 19:03:33", "202.46.49.118", "10");
INSERT INTO `wp_gf_form_view` VALUES("57192", "10", "2017-05-30 19:03:34", "202.46.49.118", "21");
INSERT INTO `wp_gf_form_view` VALUES("57193", "8", "2017-05-30 19:17:11", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57194", "13", "2017-05-30 19:17:12", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57195", "10", "2017-05-30 20:03:52", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57196", "10", "2017-05-30 21:03:55", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57197", "3", "2017-05-30 21:04:23", "178.137.4.41", "5");
INSERT INTO `wp_gf_form_view` VALUES("57198", "14", "2017-05-30 21:15:15", "75.157.25.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("57199", "10", "2017-05-30 22:03:52", "184.66.248.195", "27");
INSERT INTO `wp_gf_form_view` VALUES("57200", "3", "2017-05-30 22:13:58", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("57201", "6", "2017-05-30 22:13:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57202", "9", "2017-05-30 22:13:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57203", "8", "2017-05-30 22:14:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57204", "13", "2017-05-30 22:14:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57205", "15", "2017-05-30 22:14:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57206", "3", "2017-05-30 23:14:59", "77.75.79.32", "3");
INSERT INTO `wp_gf_form_view` VALUES("57207", "10", "2017-05-30 23:15:07", "77.75.79.32", "9");
INSERT INTO `wp_gf_form_view` VALUES("57208", "14", "2017-05-30 23:46:17", "70.67.56.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("57209", "3", "2017-05-31 00:08:19", "37.115.187.118", "7");
INSERT INTO `wp_gf_form_view` VALUES("57210", "10", "2017-05-31 00:24:34", "24.108.38.201", "37");
INSERT INTO `wp_gf_form_view` VALUES("57211", "14", "2017-05-31 00:44:16", "184.66.238.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("57212", "3", "2017-05-31 01:40:03", "217.182.132.149", "5");
INSERT INTO `wp_gf_form_view` VALUES("57213", "10", "2017-05-31 01:40:04", "217.182.132.149", "36");
INSERT INTO `wp_gf_form_view` VALUES("57214", "8", "2017-05-31 01:54:46", "66.249.79.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("57215", "10", "2017-05-31 02:05:58", "199.16.157.182", "56");
INSERT INTO `wp_gf_form_view` VALUES("57216", "3", "2017-05-31 02:05:58", "199.16.157.182", "6");
INSERT INTO `wp_gf_form_view` VALUES("57217", "10", "2017-05-31 03:20:22", "184.66.129.248", "29");
INSERT INTO `wp_gf_form_view` VALUES("57218", "3", "2017-05-31 03:24:27", "40.77.167.93", "5");
INSERT INTO `wp_gf_form_view` VALUES("57219", "3", "2017-05-31 04:34:45", "178.137.4.41", "5");
INSERT INTO `wp_gf_form_view` VALUES("57220", "3", "2017-05-31 04:34:45", "178.137.4.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("57221", "10", "2017-05-31 04:36:58", "202.46.57.183", "27");
INSERT INTO `wp_gf_form_view` VALUES("57222", "3", "2017-05-31 05:01:35", "46.118.158.86", "10");
INSERT INTO `wp_gf_form_view` VALUES("57223", "11", "2017-05-31 05:11:17", "77.75.76.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("57224", "10", "2017-05-31 05:19:04", "207.46.13.15", "37");
INSERT INTO `wp_gf_form_view` VALUES("57225", "3", "2017-05-31 07:04:34", "207.46.13.15", "33");
INSERT INTO `wp_gf_form_view` VALUES("57226", "10", "2017-05-31 07:04:35", "207.46.13.15", "33");
INSERT INTO `wp_gf_form_view` VALUES("57227", "6", "2017-05-31 07:51:40", "217.182.132.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("57228", "9", "2017-05-31 07:51:40", "217.182.132.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("57229", "8", "2017-05-31 07:51:41", "217.182.132.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("57230", "13", "2017-05-31 07:51:41", "217.182.132.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("57231", "15", "2017-05-31 07:51:42", "217.182.132.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("57232", "3", "2017-05-31 09:02:06", "154.5.208.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("57233", "10", "2017-05-31 09:02:10", "154.5.208.77", "9");
INSERT INTO `wp_gf_form_view` VALUES("57234", "3", "2017-05-31 10:54:40", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57235", "3", "2017-05-31 12:44:36", "220.181.108.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("57236", "10", "2017-05-31 12:44:38", "220.181.108.111", "9");
INSERT INTO `wp_gf_form_view` VALUES("57237", "3", "2017-05-31 13:00:16", "207.46.13.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("57238", "10", "2017-05-31 13:00:17", "207.46.13.126", "9");
INSERT INTO `wp_gf_form_view` VALUES("57239", "3", "2017-05-31 15:19:58", "137.74.201.99", "4");
INSERT INTO `wp_gf_form_view` VALUES("57240", "10", "2017-05-31 15:29:27", "51.255.65.38", "30");
INSERT INTO `wp_gf_form_view` VALUES("57241", "3", "2017-05-31 16:20:09", "202.46.55.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("57242", "10", "2017-05-31 16:20:29", "202.46.55.176", "29");
INSERT INTO `wp_gf_form_view` VALUES("57243", "10", "2017-05-31 17:05:20", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57244", "2", "2017-05-31 17:19:45", "194.187.170.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("57245", "3", "2017-05-31 17:26:34", "202.46.50.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("57246", "3", "2017-05-31 18:02:14", "194.187.170.128", "47");
INSERT INTO `wp_gf_form_view` VALUES("57247", "10", "2017-05-31 18:02:14", "194.187.170.128", "153");
INSERT INTO `wp_gf_form_view` VALUES("57248", "2", "2017-05-31 18:11:58", "157.55.39.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("57249", "11", "2017-05-31 18:14:25", "157.55.39.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("57250", "6", "2017-05-31 18:32:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57251", "9", "2017-05-31 18:32:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57252", "8", "2017-05-31 18:32:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57253", "13", "2017-05-31 18:32:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57254", "15", "2017-05-31 18:32:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57255", "3", "2017-05-31 19:04:57", "40.77.167.93", "32");
INSERT INTO `wp_gf_form_view` VALUES("57256", "6", "2017-05-31 19:04:57", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("57257", "9", "2017-05-31 19:04:58", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("57258", "8", "2017-05-31 19:04:58", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("57259", "10", "2017-05-31 19:04:58", "40.77.167.93", "25");
INSERT INTO `wp_gf_form_view` VALUES("57260", "13", "2017-05-31 19:04:59", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("57261", "15", "2017-05-31 19:04:59", "40.77.167.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("57262", "10", "2017-05-31 20:00:18", "157.55.39.201", "49");
INSERT INTO `wp_gf_form_view` VALUES("57263", "3", "2017-05-31 20:00:18", "157.55.39.201", "5");
INSERT INTO `wp_gf_form_view` VALUES("57264", "10", "2017-05-31 21:05:44", "184.66.248.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("57265", "3", "2017-05-31 21:47:44", "66.249.79.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("57266", "10", "2017-05-31 22:05:45", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57267", "3", "2017-05-31 22:34:56", "207.46.13.126", "3");
INSERT INTO `wp_gf_form_view` VALUES("57268", "10", "2017-05-31 23:06:06", "184.66.248.195", "47");
INSERT INTO `wp_gf_form_view` VALUES("57269", "3", "2017-05-31 23:10:17", "199.21.99.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("57270", "3", "2017-06-01 00:05:33", "202.46.52.204", "9");
INSERT INTO `wp_gf_form_view` VALUES("57271", "10", "2017-06-01 00:05:34", "202.46.52.204", "75");
INSERT INTO `wp_gf_form_view` VALUES("57272", "10", "2017-06-01 01:06:27", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57273", "15", "2017-06-01 01:16:24", "217.182.132.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("57274", "3", "2017-06-01 01:16:25", "217.182.132.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("57275", "10", "2017-06-01 02:06:49", "184.66.248.195", "139");
INSERT INTO `wp_gf_form_view` VALUES("57276", "3", "2017-06-01 02:07:36", "66.249.79.84", "21");
INSERT INTO `wp_gf_form_view` VALUES("57277", "11", "2017-06-01 02:16:40", "157.55.39.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("57278", "2", "2017-06-01 02:23:29", "157.55.39.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("57279", "10", "2017-06-01 03:07:08", "184.66.248.195", "57");
INSERT INTO `wp_gf_form_view` VALUES("57280", "3", "2017-06-01 03:16:49", "54.74.221.255", "7");
INSERT INTO `wp_gf_form_view` VALUES("57281", "5", "2017-06-01 03:41:32", "217.182.132.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("57282", "10", "2017-06-01 04:07:28", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57283", "3", "2017-06-01 04:33:58", "46.118.158.86", "5");
INSERT INTO `wp_gf_form_view` VALUES("57284", "10", "2017-06-01 05:07:49", "184.66.248.195", "129");
INSERT INTO `wp_gf_form_view` VALUES("57285", "3", "2017-06-01 05:08:32", "51.255.65.16", "22");
INSERT INTO `wp_gf_form_view` VALUES("57286", "3", "2017-06-01 06:00:40", "164.132.161.96", "31");
INSERT INTO `wp_gf_form_view` VALUES("57287", "10", "2017-06-01 06:00:40", "164.132.161.96", "44");
INSERT INTO `wp_gf_form_view` VALUES("57288", "6", "2017-06-01 06:35:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57289", "9", "2017-06-01 06:35:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57290", "8", "2017-06-01 06:35:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57291", "13", "2017-06-01 06:35:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57292", "15", "2017-06-01 06:35:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57293", "3", "2017-06-01 07:08:29", "46.118.117.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("57294", "10", "2017-06-01 07:08:31", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57295", "10", "2017-06-01 08:08:31", "184.66.248.195", "56");
INSERT INTO `wp_gf_form_view` VALUES("57296", "3", "2017-06-01 08:24:33", "207.46.13.126", "6");
INSERT INTO `wp_gf_form_view` VALUES("57297", "13", "2017-06-01 08:30:47", "66.249.66.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("57298", "10", "2017-06-01 09:08:31", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57299", "3", "2017-06-01 09:26:12", "194.187.170.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("57300", "10", "2017-06-01 10:08:54", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57301", "3", "2017-06-01 10:15:14", "207.46.13.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("57302", "3", "2017-06-01 11:01:38", "46.118.123.232", "7");
INSERT INTO `wp_gf_form_view` VALUES("57303", "10", "2017-06-01 11:08:52", "184.66.248.195", "40");
INSERT INTO `wp_gf_form_view` VALUES("57304", "10", "2017-06-01 12:01:56", "66.249.92.212", "57");
INSERT INTO `wp_gf_form_view` VALUES("57305", "3", "2017-06-01 12:20:13", "217.182.132.61", "9");
INSERT INTO `wp_gf_form_view` VALUES("57306", "10", "2017-06-01 13:09:12", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57307", "3", "2017-06-01 13:25:17", "37.115.187.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57308", "10", "2017-06-01 14:09:34", "184.66.248.195", "608");
INSERT INTO `wp_gf_form_view` VALUES("57309", "3", "2017-06-01 14:24:31", "207.46.13.0", "95");
INSERT INTO `wp_gf_form_view` VALUES("57310", "9", "2017-06-01 14:24:38", "207.46.13.0", "3");
INSERT INTO `wp_gf_form_view` VALUES("57311", "8", "2017-06-01 14:24:40", "207.46.13.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("57312", "5", "2017-06-01 14:24:49", "207.46.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("57313", "13", "2017-06-01 14:24:55", "207.46.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("57314", "6", "2017-06-01 14:25:19", "207.46.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("57315", "10", "2017-06-01 15:09:35", "184.66.248.195", "67");
INSERT INTO `wp_gf_form_view` VALUES("57316", "3", "2017-06-01 15:26:59", "207.46.13.110", "10");
INSERT INTO `wp_gf_form_view` VALUES("57317", "11", "2017-06-01 15:29:23", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("57318", "2", "2017-06-01 15:29:23", "138.197.73.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("57319", "3", "2017-06-01 16:04:44", "66.249.79.88", "5");
INSERT INTO `wp_gf_form_view` VALUES("57320", "10", "2017-06-01 16:04:45", "66.249.79.88", "38");
INSERT INTO `wp_gf_form_view` VALUES("57321", "2", "2017-06-01 16:53:55", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("57322", "3", "2017-06-01 17:09:52", "77.75.79.101", "11");
INSERT INTO `wp_gf_form_view` VALUES("57323", "10", "2017-06-01 17:09:52", "77.75.79.101", "83");
INSERT INTO `wp_gf_form_view` VALUES("57324", "14", "2017-06-01 17:38:05", "194.187.170.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("57325", "8", "2017-06-01 17:52:53", "137.74.207.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("57326", "3", "2017-06-01 18:44:16", "142.104.37.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("57327", "10", "2017-06-01 18:44:17", "142.104.37.89", "18");
INSERT INTO `wp_gf_form_view` VALUES("57328", "2", "2017-06-01 19:23:11", "107.172.3.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("57329", "3", "2017-06-01 19:25:07", "194.187.170.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("57330", "10", "2017-06-01 19:25:07", "194.187.170.135", "9");
INSERT INTO `wp_gf_form_view` VALUES("57331", "3", "2017-06-01 20:24:54", "207.46.13.0", "6");
INSERT INTO `wp_gf_form_view` VALUES("57332", "10", "2017-06-01 20:24:54", "207.46.13.0", "37");
INSERT INTO `wp_gf_form_view` VALUES("57333", "3", "2017-06-01 21:10:29", "217.182.132.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("57334", "10", "2017-06-01 21:10:31", "217.182.132.192", "47");
INSERT INTO `wp_gf_form_view` VALUES("57335", "10", "2017-06-01 22:03:36", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("57336", "3", "2017-06-01 22:38:03", "66.249.79.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("57337", "10", "2017-06-01 23:13:53", "184.66.248.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("57338", "3", "2017-06-01 23:14:11", "203.173.182.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("57339", "12", "2017-06-01 23:29:56", "164.132.161.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("57340", "10", "2017-06-02 00:13:53", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57341", "10", "2017-06-02 01:05:37", "72.14.199.148", "30");
INSERT INTO `wp_gf_form_view` VALUES("57342", "3", "2017-06-02 01:07:59", "194.187.170.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("57343", "14", "2017-06-02 01:30:43", "104.166.98.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("57344", "3", "2017-06-02 02:02:22", "207.46.13.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("57345", "10", "2017-06-02 02:02:22", "207.46.13.56", "29");
INSERT INTO `wp_gf_form_view` VALUES("57346", "3", "2017-06-02 03:04:04", "202.46.52.78", "33");
INSERT INTO `wp_gf_form_view` VALUES("57347", "10", "2017-06-02 03:04:04", "202.46.52.78", "34");
INSERT INTO `wp_gf_form_view` VALUES("57348", "6", "2017-06-02 03:23:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57349", "9", "2017-06-02 03:23:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57350", "8", "2017-06-02 03:23:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57351", "13", "2017-06-02 03:23:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57352", "15", "2017-06-02 03:23:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57353", "10", "2017-06-02 04:14:05", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57354", "3", "2017-06-02 04:42:55", "207.46.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("57355", "3", "2017-06-02 05:13:01", "66.249.79.86", "5");
INSERT INTO `wp_gf_form_view` VALUES("57356", "10", "2017-06-02 05:13:01", "66.249.79.86", "38");
INSERT INTO `wp_gf_form_view` VALUES("57357", "10", "2017-06-02 06:14:15", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57358", "3", "2017-06-02 06:50:01", "202.46.55.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("57359", "3", "2017-06-02 07:05:41", "81.158.93.232", "15");
INSERT INTO `wp_gf_form_view` VALUES("57360", "10", "2017-06-02 07:05:41", "81.158.93.232", "83");
INSERT INTO `wp_gf_form_view` VALUES("57361", "10", "2017-06-02 08:14:15", "184.66.248.195", "47");
INSERT INTO `wp_gf_form_view` VALUES("57362", "3", "2017-06-02 08:18:01", "51.255.65.35", "10");
INSERT INTO `wp_gf_form_view` VALUES("57363", "3", "2017-06-02 09:05:11", "46.118.158.86", "10");
INSERT INTO `wp_gf_form_view` VALUES("57364", "10", "2017-06-02 09:06:29", "66.249.66.212", "39");
INSERT INTO `wp_gf_form_view` VALUES("57365", "3", "2017-06-02 10:03:28", "194.187.170.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("57366", "10", "2017-06-02 10:03:28", "194.187.170.137", "29");
INSERT INTO `wp_gf_form_view` VALUES("57367", "3", "2017-06-02 11:01:00", "194.187.170.137", "7");
INSERT INTO `wp_gf_form_view` VALUES("57368", "10", "2017-06-02 11:01:01", "194.187.170.137", "56");
INSERT INTO `wp_gf_form_view` VALUES("57369", "12", "2017-06-02 11:56:18", "202.46.58.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("57370", "10", "2017-06-02 12:00:05", "184.66.129.248", "21");
INSERT INTO `wp_gf_form_view` VALUES("57371", "3", "2017-06-02 12:18:38", "207.46.13.0", "5");
INSERT INTO `wp_gf_form_view` VALUES("57372", "3", "2017-06-02 13:02:58", "202.46.56.203", "2");
INSERT INTO `wp_gf_form_view` VALUES("57373", "10", "2017-06-02 13:02:58", "202.46.56.203", "20");
INSERT INTO `wp_gf_form_view` VALUES("57374", "10", "2017-06-02 14:14:21", "72.14.199.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("57375", "3", "2017-06-02 15:00:39", "202.46.49.147", "30");
INSERT INTO `wp_gf_form_view` VALUES("57376", "10", "2017-06-02 15:00:41", "202.46.49.147", "25");
INSERT INTO `wp_gf_form_view` VALUES("57377", "6", "2017-06-02 15:20:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57378", "9", "2017-06-02 15:20:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57379", "8", "2017-06-02 15:20:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57380", "13", "2017-06-02 15:20:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57381", "15", "2017-06-02 15:20:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57382", "10", "2017-06-02 16:06:23", "157.55.39.9", "21");
INSERT INTO `wp_gf_form_view` VALUES("57383", "3", "2017-06-02 16:06:23", "157.55.39.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("57384", "10", "2017-06-02 17:04:44", "194.187.170.120", "21");
INSERT INTO `wp_gf_form_view` VALUES("57385", "3", "2017-06-02 17:04:45", "194.187.170.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("57386", "3", "2017-06-02 18:09:42", "64.180.74.235", "10");
INSERT INTO `wp_gf_form_view` VALUES("57387", "10", "2017-06-02 18:09:58", "64.180.74.235", "66");
INSERT INTO `wp_gf_form_view` VALUES("57388", "10", "2017-06-02 19:07:35", "68.180.229.228", "79");
INSERT INTO `wp_gf_form_view` VALUES("57389", "3", "2017-06-02 19:07:36", "68.180.229.228", "10");
INSERT INTO `wp_gf_form_view` VALUES("57390", "3", "2017-06-02 20:03:57", "77.75.76.165", "12");
INSERT INTO `wp_gf_form_view` VALUES("57391", "10", "2017-06-02 20:03:57", "77.75.76.165", "47");
INSERT INTO `wp_gf_form_view` VALUES("57392", "3", "2017-06-02 21:01:12", "66.249.79.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("57393", "10", "2017-06-02 21:08:48", "68.180.229.228", "57");
INSERT INTO `wp_gf_form_view` VALUES("57394", "15", "2017-06-02 21:31:37", "207.46.13.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("57395", "10", "2017-06-02 22:15:56", "184.66.248.195", "66");
INSERT INTO `wp_gf_form_view` VALUES("57396", "14", "2017-06-02 22:40:33", "40.77.167.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("57397", "3", "2017-06-02 22:50:06", "100.43.85.12", "9");
INSERT INTO `wp_gf_form_view` VALUES("57398", "10", "2017-06-02 23:16:16", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57399", "3", "2017-06-02 23:33:16", "202.46.56.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("57400", "2", "2017-06-02 23:47:04", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57401", "10", "2017-06-03 00:06:34", "202.46.52.144", "30");
INSERT INTO `wp_gf_form_view` VALUES("57402", "3", "2017-06-03 00:06:35", "202.46.52.144", "8");
INSERT INTO `wp_gf_form_view` VALUES("57403", "3", "2017-06-03 01:02:40", "194.187.170.148", "6");
INSERT INTO `wp_gf_form_view` VALUES("57404", "10", "2017-06-03 01:02:41", "194.187.170.148", "58");
INSERT INTO `wp_gf_form_view` VALUES("57405", "5", "2017-06-03 01:28:30", "77.75.79.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("57406", "10", "2017-06-03 02:16:48", "184.66.248.195", "66");
INSERT INTO `wp_gf_form_view` VALUES("57407", "6", "2017-06-03 02:18:32", "217.182.132.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("57408", "3", "2017-06-03 02:18:33", "217.182.132.6", "10");
INSERT INTO `wp_gf_form_view` VALUES("57409", "3", "2017-06-03 03:07:28", "68.180.229.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("57410", "10", "2017-06-03 03:07:28", "68.180.229.228", "11");
INSERT INTO `wp_gf_form_view` VALUES("57411", "2", "2017-06-03 03:11:51", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("57412", "10", "2017-06-03 04:17:08", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57413", "10", "2017-06-03 05:17:29", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57414", "3", "2017-06-03 05:56:51", "51.255.65.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("57415", "3", "2017-06-03 06:05:42", "217.182.132.60", "51");
INSERT INTO `wp_gf_form_view` VALUES("57416", "10", "2017-06-03 06:05:42", "217.182.132.60", "360");
INSERT INTO `wp_gf_form_view` VALUES("57417", "11", "2017-06-03 06:14:17", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("57418", "2", "2017-06-03 06:14:22", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("57419", "14", "2017-06-03 06:15:54", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("57420", "15", "2017-06-03 06:18:17", "37.187.56.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("57421", "10", "2017-06-03 07:04:50", "40.77.167.12", "30");
INSERT INTO `wp_gf_form_view` VALUES("57422", "3", "2017-06-03 07:04:51", "40.77.167.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("57423", "3", "2017-06-03 08:02:55", "46.118.158.86", "7");
INSERT INTO `wp_gf_form_view` VALUES("57424", "3", "2017-06-03 08:02:55", "46.118.158.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("57425", "10", "2017-06-03 08:11:17", "66.249.79.138", "41");
INSERT INTO `wp_gf_form_view` VALUES("57426", "10", "2017-06-03 09:18:07", "184.66.248.195", "49");
INSERT INTO `wp_gf_form_view` VALUES("57427", "3", "2017-06-03 09:21:44", "194.187.170.111", "6");
INSERT INTO `wp_gf_form_view` VALUES("57428", "13", "2017-06-03 09:43:19", "194.187.170.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("57429", "10", "2017-06-03 10:05:09", "66.249.79.134", "39");
INSERT INTO `wp_gf_form_view` VALUES("57430", "3", "2017-06-03 10:05:10", "66.249.79.134", "13");
INSERT INTO `wp_gf_form_view` VALUES("57431", "10", "2017-06-03 11:18:07", "184.66.248.195", "26");
INSERT INTO `wp_gf_form_view` VALUES("57432", "3", "2017-06-03 11:27:37", "68.180.229.228", "29");
INSERT INTO `wp_gf_form_view` VALUES("57433", "6", "2017-06-03 11:42:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57434", "9", "2017-06-03 11:42:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57435", "8", "2017-06-03 11:42:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57436", "13", "2017-06-03 11:42:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57437", "15", "2017-06-03 11:42:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57438", "3", "2017-06-03 12:05:06", "202.46.58.83", "4");
INSERT INTO `wp_gf_form_view` VALUES("57439", "10", "2017-06-03 12:05:07", "202.46.58.83", "20");
INSERT INTO `wp_gf_form_view` VALUES("57440", "10", "2017-06-03 13:18:07", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57441", "3", "2017-06-03 13:40:02", "74.56.183.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("57442", "10", "2017-06-03 14:18:11", "184.66.248.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("57443", "3", "2017-06-03 14:36:03", "46.118.123.232", "2");
INSERT INTO `wp_gf_form_view` VALUES("57444", "10", "2017-06-03 15:16:25", "24.108.13.92", "41");
INSERT INTO `wp_gf_form_view` VALUES("57445", "3", "2017-06-03 15:17:51", "77.75.79.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("57446", "13", "2017-06-03 15:54:24", "217.182.132.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("57447", "3", "2017-06-03 16:10:38", "109.162.67.12", "4");
INSERT INTO `wp_gf_form_view` VALUES("57448", "10", "2017-06-03 16:18:07", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57449", "10", "2017-06-03 17:18:08", "184.66.248.195", "38");
INSERT INTO `wp_gf_form_view` VALUES("57450", "3", "2017-06-03 17:35:18", "157.55.39.208", "7");
INSERT INTO `wp_gf_form_view` VALUES("57451", "3", "2017-06-03 18:08:40", "194.187.170.111", "6");
INSERT INTO `wp_gf_form_view` VALUES("57452", "10", "2017-06-03 18:08:40", "194.187.170.111", "47");
INSERT INTO `wp_gf_form_view` VALUES("57453", "10", "2017-06-03 19:18:10", "184.66.248.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("57454", "14", "2017-06-03 19:33:58", "108.173.75.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("57455", "3", "2017-06-03 19:34:42", "108.173.75.96", "4");
INSERT INTO `wp_gf_form_view` VALUES("57456", "2", "2017-06-03 19:48:41", "107.172.3.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("57457", "3", "2017-06-03 20:03:21", "66.249.79.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("57458", "10", "2017-06-03 20:03:21", "66.249.79.136", "20");
INSERT INTO `wp_gf_form_view` VALUES("57459", "3", "2017-06-03 21:10:29", "173.208.208.34", "4");
INSERT INTO `wp_gf_form_view` VALUES("57460", "10", "2017-06-03 21:10:31", "173.208.208.34", "39");
INSERT INTO `wp_gf_form_view` VALUES("57461", "3", "2017-06-03 22:05:55", "108.173.75.96", "3");
INSERT INTO `wp_gf_form_view` VALUES("57462", "10", "2017-06-03 22:05:55", "108.173.75.96", "29");
INSERT INTO `wp_gf_form_view` VALUES("57463", "3", "2017-06-03 23:11:39", "51.255.65.35", "30");
INSERT INTO `wp_gf_form_view` VALUES("57464", "10", "2017-06-03 23:18:09", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("57465", "6", "2017-06-03 23:18:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57466", "9", "2017-06-03 23:18:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57467", "8", "2017-06-03 23:18:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57468", "13", "2017-06-03 23:18:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57469", "15", "2017-06-03 23:18:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57470", "10", "2017-06-04 00:18:08", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57471", "3", "2017-06-04 00:20:30", "66.249.79.134", "4");
INSERT INTO `wp_gf_form_view` VALUES("57472", "10", "2017-06-04 01:18:08", "184.66.248.195", "29");
INSERT INTO `wp_gf_form_view` VALUES("57473", "3", "2017-06-04 01:24:38", "194.187.170.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("57474", "3", "2017-06-04 02:08:02", "157.55.39.9", "7");
INSERT INTO `wp_gf_form_view` VALUES("57475", "10", "2017-06-04 02:08:02", "157.55.39.9", "38");
INSERT INTO `wp_gf_form_view` VALUES("57476", "14", "2017-06-04 02:24:55", "24.68.4.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("57477", "10", "2017-06-04 03:01:12", "24.108.13.92", "60");
INSERT INTO `wp_gf_form_view` VALUES("57478", "14", "2017-06-04 03:10:56", "104.168.75.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("57479", "3", "2017-06-04 03:16:14", "51.255.65.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("57480", "15", "2017-06-04 03:16:49", "207.46.13.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("57481", "3", "2017-06-04 04:12:24", "46.118.117.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("57482", "10", "2017-06-04 04:18:08", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57483", "10", "2017-06-04 05:18:08", "184.66.248.195", "39");
INSERT INTO `wp_gf_form_view` VALUES("57484", "3", "2017-06-04 05:53:47", "54.74.221.255", "5");
INSERT INTO `wp_gf_form_view` VALUES("57485", "3", "2017-06-04 06:14:05", "37.115.187.118", "4");
INSERT INTO `wp_gf_form_view` VALUES("57486", "10", "2017-06-04 06:18:09", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57487", "10", "2017-06-04 07:18:10", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57488", "3", "2017-06-04 07:19:26", "46.118.158.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("57489", "3", "2017-06-04 08:01:29", "66.249.79.136", "5");
INSERT INTO `wp_gf_form_view` VALUES("57490", "10", "2017-06-04 08:01:29", "66.249.79.136", "20");
INSERT INTO `wp_gf_form_view` VALUES("57491", "14", "2017-06-04 08:41:02", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("57492", "10", "2017-06-04 09:18:08", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57493", "3", "2017-06-04 09:21:24", "66.249.79.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("57494", "10", "2017-06-04 10:14:45", "40.77.167.17", "75");
INSERT INTO `wp_gf_form_view` VALUES("57495", "3", "2017-06-04 10:14:46", "40.77.167.17", "8");
INSERT INTO `wp_gf_form_view` VALUES("57496", "10", "2017-06-04 11:18:09", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57497", "3", "2017-06-04 11:19:41", "194.187.170.108", "3");
INSERT INTO `wp_gf_form_view` VALUES("57498", "2", "2017-06-04 11:52:45", "107.172.3.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("57499", "3", "2017-06-04 12:02:14", "202.46.58.14", "7");
INSERT INTO `wp_gf_form_view` VALUES("57500", "10", "2017-06-04 12:02:15", "202.46.58.14", "11");
INSERT INTO `wp_gf_form_view` VALUES("57501", "3", "2017-06-04 13:08:54", "202.46.57.12", "6");
INSERT INTO `wp_gf_form_view` VALUES("57502", "10", "2017-06-04 13:08:55", "202.46.57.12", "29");
INSERT INTO `wp_gf_form_view` VALUES("57503", "3", "2017-06-04 14:04:30", "51.255.65.66", "7");
INSERT INTO `wp_gf_form_view` VALUES("57504", "10", "2017-06-04 14:04:30", "51.255.65.66", "38");
INSERT INTO `wp_gf_form_view` VALUES("57505", "3", "2017-06-04 15:05:19", "217.182.132.5", "10");
INSERT INTO `wp_gf_form_view` VALUES("57506", "10", "2017-06-04 15:05:19", "217.182.132.5", "65");
INSERT INTO `wp_gf_form_view` VALUES("57507", "8", "2017-06-04 15:22:12", "202.46.51.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("57508", "9", "2017-06-04 15:54:26", "164.132.161.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("57509", "10", "2017-06-04 16:15:38", "184.66.129.248", "40");
INSERT INTO `wp_gf_form_view` VALUES("57510", "3", "2017-06-04 16:19:25", "157.55.39.208", "5");
INSERT INTO `wp_gf_form_view` VALUES("57511", "10", "2017-06-04 17:18:09", "184.66.248.195", "75");
INSERT INTO `wp_gf_form_view` VALUES("57512", "3", "2017-06-04 17:18:14", "194.187.170.138", "14");
INSERT INTO `wp_gf_form_view` VALUES("57513", "3", "2017-06-04 18:09:34", "217.182.132.51", "8");
INSERT INTO `wp_gf_form_view` VALUES("57514", "10", "2017-06-04 18:09:35", "217.182.132.51", "66");
INSERT INTO `wp_gf_form_view` VALUES("57515", "3", "2017-06-04 19:01:28", "194.187.170.138", "89");
INSERT INTO `wp_gf_form_view` VALUES("57516", "10", "2017-06-04 19:01:29", "194.187.170.138", "362");
INSERT INTO `wp_gf_form_view` VALUES("57517", "15", "2017-06-04 19:25:19", "207.46.13.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("57518", "8", "2017-06-04 19:25:34", "207.46.13.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("57519", "6", "2017-06-04 19:36:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57520", "9", "2017-06-04 19:36:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57521", "13", "2017-06-04 19:37:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57522", "10", "2017-06-04 20:18:10", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57523", "3", "2017-06-04 20:26:51", "46.118.117.131", "6");
INSERT INTO `wp_gf_form_view` VALUES("57524", "3", "2017-06-04 21:16:37", "46.118.117.131", "5");
INSERT INTO `wp_gf_form_view` VALUES("57525", "10", "2017-06-04 21:18:09", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57526", "3", "2017-06-04 22:02:10", "157.55.39.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("57527", "10", "2017-06-04 22:02:10", "157.55.39.208", "21");
INSERT INTO `wp_gf_form_view` VALUES("57528", "10", "2017-06-04 23:18:11", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57529", "3", "2017-06-04 23:25:21", "77.75.77.32", "3");
INSERT INTO `wp_gf_form_view` VALUES("57530", "3", "2017-06-05 00:11:23", "77.75.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("57531", "10", "2017-06-05 00:11:23", "77.75.76.161", "11");
INSERT INTO `wp_gf_form_view` VALUES("57532", "3", "2017-06-05 01:04:23", "94.177.236.7", "19");
INSERT INTO `wp_gf_form_view` VALUES("57533", "10", "2017-06-05 01:04:23", "94.177.236.7", "111");
INSERT INTO `wp_gf_form_view` VALUES("57534", "3", "2017-06-05 02:00:48", "68.180.229.228", "8");
INSERT INTO `wp_gf_form_view` VALUES("57535", "10", "2017-06-05 02:10:36", "66.249.79.138", "50");
INSERT INTO `wp_gf_form_view` VALUES("57536", "13", "2017-06-05 03:03:59", "194.187.170.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("57537", "3", "2017-06-05 03:03:59", "194.187.170.104", "13");
INSERT INTO `wp_gf_form_view` VALUES("57538", "10", "2017-06-05 03:04:00", "194.187.170.104", "94");
INSERT INTO `wp_gf_form_view` VALUES("57539", "12", "2017-06-05 03:10:52", "194.187.170.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("57540", "14", "2017-06-05 03:12:36", "207.6.152.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("57541", "10", "2017-06-05 04:12:04", "184.66.129.248", "48");
INSERT INTO `wp_gf_form_view` VALUES("57542", "10", "2017-06-05 04:12:04", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("57543", "3", "2017-06-05 04:12:40", "164.132.161.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("57544", "14", "2017-06-05 04:28:49", "60.20.133.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("57545", "3", "2017-06-05 05:00:02", "207.46.13.110", "5");
INSERT INTO `wp_gf_form_view` VALUES("57546", "10", "2017-06-05 05:00:02", "207.46.13.110", "38");
INSERT INTO `wp_gf_form_view` VALUES("57547", "9", "2017-06-05 06:17:52", "40.77.167.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("57548", "3", "2017-06-05 06:17:54", "40.77.167.17", "27");
INSERT INTO `wp_gf_form_view` VALUES("57549", "10", "2017-06-05 06:17:55", "40.77.167.17", "110");
INSERT INTO `wp_gf_form_view` VALUES("57550", "10", "2017-06-05 07:18:30", "184.66.248.195", "17");
INSERT INTO `wp_gf_form_view` VALUES("57551", "3", "2017-06-05 07:26:44", "46.118.123.232", "29");
INSERT INTO `wp_gf_form_view` VALUES("57552", "6", "2017-06-05 07:36:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57553", "9", "2017-06-05 07:36:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57554", "8", "2017-06-05 07:36:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57555", "13", "2017-06-05 07:36:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57556", "15", "2017-06-05 07:36:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57557", "3", "2017-06-05 08:01:16", "217.182.132.149", "10");
INSERT INTO `wp_gf_form_view` VALUES("57558", "10", "2017-06-05 08:01:16", "217.182.132.149", "39");
INSERT INTO `wp_gf_form_view` VALUES("57559", "3", "2017-06-05 09:02:49", "51.255.65.78", "5");
INSERT INTO `wp_gf_form_view` VALUES("57560", "10", "2017-06-05 09:02:49", "51.255.65.78", "29");
INSERT INTO `wp_gf_form_view` VALUES("57561", "10", "2017-06-05 10:18:30", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57562", "10", "2017-06-05 11:18:30", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57563", "3", "2017-06-05 11:42:13", "37.115.187.118", "3");
INSERT INTO `wp_gf_form_view` VALUES("57564", "10", "2017-06-05 12:18:31", "184.66.248.195", "22");
INSERT INTO `wp_gf_form_view` VALUES("57565", "3", "2017-06-05 12:18:56", "46.118.158.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("57566", "10", "2017-06-05 13:18:30", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57567", "3", "2017-06-05 13:27:32", "202.46.51.192", "2");
INSERT INTO `wp_gf_form_view` VALUES("57568", "10", "2017-06-05 14:18:31", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57569", "3", "2017-06-05 14:30:06", "51.255.65.5", "4");
INSERT INTO `wp_gf_form_view` VALUES("57570", "3", "2017-06-05 15:07:33", "202.46.51.28", "4");
INSERT INTO `wp_gf_form_view` VALUES("57571", "10", "2017-06-05 15:07:33", "202.46.51.28", "29");
INSERT INTO `wp_gf_form_view` VALUES("57572", "10", "2017-06-05 16:18:51", "184.66.248.195", "39");
INSERT INTO `wp_gf_form_view` VALUES("57573", "3", "2017-06-05 16:20:01", "202.46.54.11", "5");
INSERT INTO `wp_gf_form_view` VALUES("57574", "3", "2017-06-05 17:02:45", "157.55.39.208", "8");
INSERT INTO `wp_gf_form_view` VALUES("57575", "10", "2017-06-05 17:02:45", "157.55.39.208", "58");
INSERT INTO `wp_gf_form_view` VALUES("57576", "8", "2017-06-05 17:29:40", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57577", "3", "2017-06-05 18:11:11", "77.75.78.165", "11");
INSERT INTO `wp_gf_form_view` VALUES("57578", "10", "2017-06-05 18:11:11", "77.75.78.165", "80");
INSERT INTO `wp_gf_form_view` VALUES("57579", "15", "2017-06-05 18:42:31", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57580", "3", "2017-06-05 19:11:48", "69.197.177.50", "9");
INSERT INTO `wp_gf_form_view` VALUES("57581", "13", "2017-06-05 19:13:58", "202.46.53.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("57582", "10", "2017-06-05 19:13:58", "202.46.53.113", "29");
INSERT INTO `wp_gf_form_view` VALUES("57583", "3", "2017-06-05 20:06:59", "164.132.161.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("57584", "10", "2017-06-05 20:07:00", "164.132.161.95", "38");
INSERT INTO `wp_gf_form_view` VALUES("57585", "3", "2017-06-05 21:03:33", "142.104.37.87", "13");
INSERT INTO `wp_gf_form_view` VALUES("57586", "10", "2017-06-05 21:03:44", "142.104.37.87", "87");
INSERT INTO `wp_gf_form_view` VALUES("57587", "3", "2017-06-05 22:02:32", "51.255.65.52", "8");
INSERT INTO `wp_gf_form_view` VALUES("57588", "10", "2017-06-05 22:02:32", "51.255.65.52", "58");
INSERT INTO `wp_gf_form_view` VALUES("57589", "10", "2017-06-05 23:18:59", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57590", "3", "2017-06-05 23:38:31", "46.118.117.131", "4");
INSERT INTO `wp_gf_form_view` VALUES("57591", "3", "2017-06-06 00:14:00", "202.46.49.190", "14");
INSERT INTO `wp_gf_form_view` VALUES("57592", "10", "2017-06-06 00:14:00", "202.46.49.190", "105");
INSERT INTO `wp_gf_form_view` VALUES("57593", "14", "2017-06-06 00:15:07", "107.175.89.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("57594", "10", "2017-06-06 01:18:58", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57595", "3", "2017-06-06 01:19:43", "66.249.79.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("57596", "3", "2017-06-06 02:00:24", "157.55.39.123", "3");
INSERT INTO `wp_gf_form_view` VALUES("57597", "10", "2017-06-06 02:00:24", "157.55.39.123", "11");
INSERT INTO `wp_gf_form_view` VALUES("57598", "3", "2017-06-06 03:00:29", "37.115.187.118", "6");
INSERT INTO `wp_gf_form_view` VALUES("57599", "10", "2017-06-06 03:18:58", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57600", "3", "2017-06-06 04:04:04", "24.108.14.97", "35");
INSERT INTO `wp_gf_form_view` VALUES("57601", "10", "2017-06-06 04:04:04", "24.108.14.97", "53");
INSERT INTO `wp_gf_form_view` VALUES("57602", "6", "2017-06-06 04:17:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57603", "9", "2017-06-06 04:17:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57604", "8", "2017-06-06 04:17:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57605", "13", "2017-06-06 04:17:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57606", "15", "2017-06-06 04:17:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57607", "3", "2017-06-06 05:04:03", "66.249.79.136", "18");
INSERT INTO `wp_gf_form_view` VALUES("57608", "8", "2017-06-06 05:04:03", "66.249.79.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("57609", "13", "2017-06-06 05:04:04", "66.249.79.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("57610", "10", "2017-06-06 05:18:59", "184.66.248.195", "57");
INSERT INTO `wp_gf_form_view` VALUES("57611", "11", "2017-06-06 05:21:38", "159.203.82.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("57612", "2", "2017-06-06 05:21:38", "159.203.82.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("57613", "3", "2017-06-06 06:00:01", "172.103.55.197", "9");
INSERT INTO `wp_gf_form_view` VALUES("57614", "10", "2017-06-06 06:00:02", "172.103.55.197", "56");
INSERT INTO `wp_gf_form_view` VALUES("57615", "9", "2017-06-06 06:14:46", "217.182.132.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("57616", "14", "2017-06-06 06:56:24", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("57617", "3", "2017-06-06 07:00:10", "54.165.59.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("57618", "10", "2017-06-06 07:00:10", "54.165.59.7", "11");
INSERT INTO `wp_gf_form_view` VALUES("57619", "14", "2017-06-06 07:31:20", "62.210.79.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("57620", "3", "2017-06-06 08:00:19", "164.132.161.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("57621", "10", "2017-06-06 08:00:19", "164.132.161.92", "30");
INSERT INTO `wp_gf_form_view` VALUES("57622", "10", "2017-06-06 09:19:00", "184.66.248.195", "57");
INSERT INTO `wp_gf_form_view` VALUES("57623", "3", "2017-06-06 09:20:12", "217.182.132.59", "6");
INSERT INTO `wp_gf_form_view` VALUES("57624", "10", "2017-06-06 10:19:00", "184.66.248.195", "29");
INSERT INTO `wp_gf_form_view` VALUES("57625", "3", "2017-06-06 10:48:58", "157.55.39.208", "3");
INSERT INTO `wp_gf_form_view` VALUES("57626", "3", "2017-06-06 11:08:06", "46.118.117.131", "216");
INSERT INTO `wp_gf_form_view` VALUES("57627", "3", "2017-06-06 11:08:06", "46.118.117.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("57628", "10", "2017-06-06 11:13:20", "157.55.39.208", "1626");
INSERT INTO `wp_gf_form_view` VALUES("57629", "14", "2017-06-06 11:32:08", "45.55.156.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("57630", "11", "2017-06-06 11:32:13", "45.55.156.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("57631", "6", "2017-06-06 11:40:38", "45.55.156.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("57632", "9", "2017-06-06 11:51:53", "45.55.156.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("57633", "10", "2017-06-06 12:00:08", "45.55.156.183", "2839");
INSERT INTO `wp_gf_form_view` VALUES("57634", "3", "2017-06-06 12:00:08", "45.55.156.183", "364");
INSERT INTO `wp_gf_form_view` VALUES("57635", "15", "2017-06-06 12:04:42", "45.55.156.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("57636", "2", "2017-06-06 12:39:52", "45.55.156.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("57637", "13", "2017-06-06 12:52:17", "45.55.156.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("57638", "3", "2017-06-06 13:16:26", "157.55.39.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("57639", "10", "2017-06-06 13:16:27", "157.55.39.123", "20");
INSERT INTO `wp_gf_form_view` VALUES("57640", "10", "2017-06-06 14:19:03", "184.66.248.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("57641", "3", "2017-06-06 14:34:55", "154.5.182.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("57642", "10", "2017-06-06 15:19:02", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57643", "3", "2017-06-06 15:31:19", "202.46.52.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("57644", "3", "2017-06-06 16:00:49", "46.118.117.131", "32");
INSERT INTO `wp_gf_form_view` VALUES("57645", "10", "2017-06-06 16:03:47", "51.255.65.89", "26");
INSERT INTO `wp_gf_form_view` VALUES("57646", "6", "2017-06-06 16:52:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57647", "9", "2017-06-06 16:52:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57648", "8", "2017-06-06 16:52:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57649", "13", "2017-06-06 16:52:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57650", "15", "2017-06-06 16:52:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57651", "3", "2017-06-06 17:11:17", "202.46.57.167", "7");
INSERT INTO `wp_gf_form_view` VALUES("57652", "10", "2017-06-06 17:11:18", "202.46.57.167", "20");
INSERT INTO `wp_gf_form_view` VALUES("57653", "3", "2017-06-06 18:11:26", "184.66.225.215", "13");
INSERT INTO `wp_gf_form_view` VALUES("57654", "10", "2017-06-06 18:11:26", "184.66.225.215", "66");
INSERT INTO `wp_gf_form_view` VALUES("57655", "10", "2017-06-06 19:19:30", "184.66.248.195", "29");
INSERT INTO `wp_gf_form_view` VALUES("57656", "3", "2017-06-06 19:24:42", "202.46.56.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("57657", "13", "2017-06-06 19:57:57", "202.46.53.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57658", "3", "2017-06-06 20:08:44", "66.249.79.138", "23");
INSERT INTO `wp_gf_form_view` VALUES("57659", "10", "2017-06-06 20:08:45", "66.249.79.138", "111");
INSERT INTO `wp_gf_form_view` VALUES("57660", "6", "2017-06-06 20:50:28", "46.229.168.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("57661", "11", "2017-06-06 20:53:38", "46.229.168.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("57662", "10", "2017-06-06 21:19:59", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57663", "3", "2017-06-06 21:37:56", "202.46.58.203", "3");
INSERT INTO `wp_gf_form_view` VALUES("57664", "8", "2017-06-06 22:11:24", "202.46.49.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("57665", "3", "2017-06-06 22:11:29", "202.46.49.95", "5");
INSERT INTO `wp_gf_form_view` VALUES("57666", "10", "2017-06-06 22:11:29", "202.46.49.95", "29");
INSERT INTO `wp_gf_form_view` VALUES("57667", "3", "2017-06-06 23:05:20", "68.180.229.228", "74");
INSERT INTO `wp_gf_form_view` VALUES("57668", "10", "2017-06-06 23:05:20", "68.180.229.228", "431");
INSERT INTO `wp_gf_form_view` VALUES("57669", "9", "2017-06-06 23:18:54", "40.77.167.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("57670", "15", "2017-06-06 23:18:58", "207.46.13.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("57671", "8", "2017-06-06 23:19:15", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57672", "10", "2017-06-07 00:08:15", "96.50.61.75", "30");
INSERT INTO `wp_gf_form_view` VALUES("57673", "3", "2017-06-07 00:08:16", "96.50.61.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("57674", "3", "2017-06-07 01:10:12", "207.46.13.181", "7");
INSERT INTO `wp_gf_form_view` VALUES("57675", "10", "2017-06-07 01:10:12", "207.46.13.181", "39");
INSERT INTO `wp_gf_form_view` VALUES("57676", "3", "2017-06-07 02:04:38", "202.46.48.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("57677", "10", "2017-06-07 02:04:38", "202.46.48.143", "20");
INSERT INTO `wp_gf_form_view` VALUES("57678", "5", "2017-06-07 03:00:17", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57679", "3", "2017-06-07 03:00:18", "207.46.13.181", "17");
INSERT INTO `wp_gf_form_view` VALUES("57680", "10", "2017-06-07 03:00:18", "207.46.13.181", "137");
INSERT INTO `wp_gf_form_view` VALUES("57681", "11", "2017-06-07 03:09:48", "104.192.6.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("57682", "2", "2017-06-07 03:11:07", "104.192.6.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("57683", "10", "2017-06-07 04:21:34", "184.66.248.195", "16");
INSERT INTO `wp_gf_form_view` VALUES("57684", "3", "2017-06-07 04:30:21", "207.46.13.181", "29");
INSERT INTO `wp_gf_form_view` VALUES("57685", "6", "2017-06-07 04:30:22", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57686", "9", "2017-06-07 04:30:22", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57687", "8", "2017-06-07 04:30:22", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57688", "13", "2017-06-07 04:30:23", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57689", "15", "2017-06-07 04:30:24", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57690", "10", "2017-06-07 05:21:54", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57691", "3", "2017-06-07 05:41:50", "40.77.167.64", "3");
INSERT INTO `wp_gf_form_view` VALUES("57692", "3", "2017-06-07 06:21:44", "51.255.65.5", "4");
INSERT INTO `wp_gf_form_view` VALUES("57693", "10", "2017-06-07 06:21:47", "51.255.65.5", "29");
INSERT INTO `wp_gf_form_view` VALUES("57694", "10", "2017-06-07 07:22:21", "184.66.248.195", "47");
INSERT INTO `wp_gf_form_view` VALUES("57695", "3", "2017-06-07 07:30:46", "207.46.13.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("57696", "10", "2017-06-07 08:22:38", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57697", "3", "2017-06-07 08:30:56", "51.255.71.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("57698", "10", "2017-06-07 09:02:24", "157.55.39.208", "12");
INSERT INTO `wp_gf_form_view` VALUES("57699", "3", "2017-06-07 09:02:24", "157.55.39.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("57700", "3", "2017-06-07 10:10:35", "207.46.13.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("57701", "10", "2017-06-07 10:10:36", "207.46.13.18", "20");
INSERT INTO `wp_gf_form_view` VALUES("57702", "3", "2017-06-07 11:02:24", "46.118.123.232", "4");
INSERT INTO `wp_gf_form_view` VALUES("57703", "10", "2017-06-07 11:12:46", "164.132.161.32", "20");
INSERT INTO `wp_gf_form_view` VALUES("57704", "10", "2017-06-07 12:23:05", "184.66.248.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("57705", "3", "2017-06-07 12:42:31", "202.46.56.191", "6");
INSERT INTO `wp_gf_form_view` VALUES("57706", "15", "2017-06-07 12:42:31", "202.46.56.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("57707", "10", "2017-06-07 13:23:04", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57708", "3", "2017-06-07 13:25:06", "37.115.187.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("57709", "3", "2017-06-07 14:13:32", "199.21.99.202", "33");
INSERT INTO `wp_gf_form_view` VALUES("57710", "10", "2017-06-07 14:22:41", "141.8.143.171", "43");
INSERT INTO `wp_gf_form_view` VALUES("57711", "6", "2017-06-07 14:41:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57712", "9", "2017-06-07 14:41:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57713", "8", "2017-06-07 14:41:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57714", "13", "2017-06-07 14:41:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57715", "15", "2017-06-07 14:41:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57716", "3", "2017-06-07 15:14:59", "66.249.79.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("57717", "10", "2017-06-07 15:14:59", "66.249.79.136", "39");
INSERT INTO `wp_gf_form_view` VALUES("57718", "3", "2017-06-07 16:12:38", "202.46.50.138", "5");
INSERT INTO `wp_gf_form_view` VALUES("57719", "10", "2017-06-07 16:12:38", "202.46.50.138", "38");
INSERT INTO `wp_gf_form_view` VALUES("57720", "10", "2017-06-07 17:23:07", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57721", "3", "2017-06-07 17:39:13", "199.59.150.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("57722", "3", "2017-06-07 18:02:29", "46.118.123.232", "12");
INSERT INTO `wp_gf_form_view` VALUES("57723", "10", "2017-06-07 18:16:49", "66.249.79.138", "58");
INSERT INTO `wp_gf_form_view` VALUES("57724", "3", "2017-06-07 19:03:57", "46.118.117.131", "6");
INSERT INTO `wp_gf_form_view` VALUES("57725", "10", "2017-06-07 19:05:50", "164.132.161.81", "40");
INSERT INTO `wp_gf_form_view` VALUES("57726", "10", "2017-06-07 20:23:07", "184.66.248.195", "70");
INSERT INTO `wp_gf_form_view` VALUES("57727", "3", "2017-06-07 20:27:54", "141.8.143.171", "10");
INSERT INTO `wp_gf_form_view` VALUES("57728", "10", "2017-06-07 21:00:07", "24.68.156.6", "67");
INSERT INTO `wp_gf_form_view` VALUES("57729", "3", "2017-06-07 21:00:07", "24.68.156.6", "13");
INSERT INTO `wp_gf_form_view` VALUES("57730", "3", "2017-06-07 22:22:13", "37.115.187.118", "13");
INSERT INTO `wp_gf_form_view` VALUES("57731", "3", "2017-06-07 22:22:13", "37.115.187.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57732", "10", "2017-06-07 22:23:06", "184.66.248.195", "103");
INSERT INTO `wp_gf_form_view` VALUES("57733", "11", "2017-06-07 22:54:09", "172.94.6.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("57734", "2", "2017-06-07 22:54:55", "172.94.6.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("57735", "11", "2017-06-07 23:08:26", "66.249.79.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("57736", "3", "2017-06-07 23:10:34", "69.146.169.206", "12");
INSERT INTO `wp_gf_form_view` VALUES("57737", "10", "2017-06-07 23:10:34", "69.146.169.206", "101");
INSERT INTO `wp_gf_form_view` VALUES("57738", "2", "2017-06-07 23:10:59", "69.146.169.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("57739", "14", "2017-06-08 00:07:08", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("57740", "10", "2017-06-08 00:23:07", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57741", "3", "2017-06-08 01:06:23", "220.181.108.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("57742", "10", "2017-06-08 01:06:23", "220.181.108.117", "20");
INSERT INTO `wp_gf_form_view` VALUES("57743", "3", "2017-06-08 02:00:48", "202.46.56.111", "7");
INSERT INTO `wp_gf_form_view` VALUES("57744", "10", "2017-06-08 02:00:49", "202.46.56.111", "29");
INSERT INTO `wp_gf_form_view` VALUES("57745", "3", "2017-06-08 03:16:18", "66.249.79.136", "104");
INSERT INTO `wp_gf_form_view` VALUES("57746", "10", "2017-06-08 03:16:18", "66.249.79.136", "518");
INSERT INTO `wp_gf_form_view` VALUES("57747", "5", "2017-06-08 03:19:27", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("57748", "6", "2017-06-08 03:19:29", "207.46.13.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("57749", "9", "2017-06-08 03:19:35", "157.55.39.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("57750", "13", "2017-06-08 03:19:41", "207.46.13.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("57751", "8", "2017-06-08 03:19:58", "157.55.39.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("57752", "15", "2017-06-08 03:32:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57753", "10", "2017-06-08 04:23:07", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57754", "3", "2017-06-08 04:55:34", "217.182.132.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("57755", "10", "2017-06-08 05:07:41", "199.21.99.202", "67");
INSERT INTO `wp_gf_form_view` VALUES("57756", "3", "2017-06-08 05:07:41", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("57757", "14", "2017-06-08 06:10:51", "75.157.168.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("57758", "3", "2017-06-08 06:19:07", "202.46.57.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("57759", "10", "2017-06-08 06:19:07", "202.46.57.70", "11");
INSERT INTO `wp_gf_form_view` VALUES("57760", "3", "2017-06-08 07:07:29", "62.210.157.95", "16");
INSERT INTO `wp_gf_form_view` VALUES("57761", "10", "2017-06-08 07:07:29", "62.210.157.95", "56");
INSERT INTO `wp_gf_form_view` VALUES("57762", "5", "2017-06-08 07:08:19", "62.210.157.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("57763", "10", "2017-06-08 08:07:25", "199.21.99.202", "50");
INSERT INTO `wp_gf_form_view` VALUES("57764", "3", "2017-06-08 08:07:25", "199.21.99.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("57765", "3", "2017-06-08 09:07:01", "174.127.133.95", "32");
INSERT INTO `wp_gf_form_view` VALUES("57766", "10", "2017-06-08 09:07:01", "174.127.133.95", "243");
INSERT INTO `wp_gf_form_view` VALUES("57767", "2", "2017-06-08 09:08:50", "174.127.133.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("57768", "11", "2017-06-08 09:11:40", "174.127.133.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("57769", "14", "2017-06-08 09:38:02", "174.127.133.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("57770", "3", "2017-06-08 10:10:39", "202.46.51.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("57771", "10", "2017-06-08 10:10:39", "202.46.51.58", "20");
INSERT INTO `wp_gf_form_view` VALUES("57772", "3", "2017-06-08 11:17:21", "202.46.52.78", "6");
INSERT INTO `wp_gf_form_view` VALUES("57773", "10", "2017-06-08 11:17:23", "202.46.52.78", "20");
INSERT INTO `wp_gf_form_view` VALUES("57774", "14", "2017-06-08 12:04:29", "184.66.248.198", "4");
INSERT INTO `wp_gf_form_view` VALUES("57775", "3", "2017-06-08 12:21:52", "51.255.65.97", "3");
INSERT INTO `wp_gf_form_view` VALUES("57776", "10", "2017-06-08 12:21:52", "51.255.65.97", "20");
INSERT INTO `wp_gf_form_view` VALUES("57777", "3", "2017-06-08 13:08:53", "46.118.117.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("57778", "10", "2017-06-08 13:10:59", "141.8.143.171", "20");
INSERT INTO `wp_gf_form_view` VALUES("57779", "3", "2017-06-08 14:04:00", "202.46.52.118", "14");
INSERT INTO `wp_gf_form_view` VALUES("57780", "10", "2017-06-08 14:04:01", "202.46.52.118", "66");
INSERT INTO `wp_gf_form_view` VALUES("57781", "11", "2017-06-08 14:41:58", "159.203.109.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("57782", "2", "2017-06-08 14:41:59", "159.203.109.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("57783", "3", "2017-06-08 15:10:43", "202.46.58.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("57784", "10", "2017-06-08 15:10:43", "202.46.58.137", "21");
INSERT INTO `wp_gf_form_view` VALUES("57785", "3", "2017-06-08 16:09:22", "154.5.208.67", "7");
INSERT INTO `wp_gf_form_view` VALUES("57786", "10", "2017-06-08 16:09:31", "154.5.208.67", "38");
INSERT INTO `wp_gf_form_view` VALUES("57787", "10", "2017-06-08 17:23:14", "184.66.248.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("57788", "3", "2017-06-08 17:49:27", "54.165.59.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("57789", "10", "2017-06-08 18:23:10", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57790", "14", "2017-06-08 18:54:20", "154.20.6.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("57791", "3", "2017-06-08 19:11:06", "24.108.36.114", "10");
INSERT INTO `wp_gf_form_view` VALUES("57792", "10", "2017-06-08 19:11:06", "24.108.36.114", "77");
INSERT INTO `wp_gf_form_view` VALUES("57793", "13", "2017-06-08 20:06:29", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("57794", "3", "2017-06-08 20:06:29", "207.46.13.1", "9");
INSERT INTO `wp_gf_form_view` VALUES("57795", "10", "2017-06-08 20:06:30", "207.46.13.1", "39");
INSERT INTO `wp_gf_form_view` VALUES("57796", "2", "2017-06-08 20:24:49", "51.255.65.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("57797", "10", "2017-06-08 21:23:12", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57798", "3", "2017-06-08 21:52:42", "5.9.112.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("57799", "10", "2017-06-08 22:13:26", "72.14.199.72", "12");
INSERT INTO `wp_gf_form_view` VALUES("57800", "8", "2017-06-08 22:19:00", "51.255.71.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("57801", "3", "2017-06-08 22:26:57", "164.132.161.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("57802", "10", "2017-06-08 23:09:48", "24.69.176.191", "40");
INSERT INTO `wp_gf_form_view` VALUES("57803", "3", "2017-06-08 23:09:50", "24.69.176.191", "4");
INSERT INTO `wp_gf_form_view` VALUES("57804", "3", "2017-06-09 00:04:22", "207.46.13.1", "12");
INSERT INTO `wp_gf_form_view` VALUES("57805", "10", "2017-06-09 00:04:22", "207.46.13.1", "74");
INSERT INTO `wp_gf_form_view` VALUES("57806", "5", "2017-06-09 00:27:50", "217.182.132.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("57807", "14", "2017-06-09 01:00:14", "209.52.88.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("57808", "3", "2017-06-09 01:03:15", "70.66.174.217", "32");
INSERT INTO `wp_gf_form_view` VALUES("57809", "10", "2017-06-09 01:03:15", "70.66.174.217", "25");
INSERT INTO `wp_gf_form_view` VALUES("57810", "6", "2017-06-09 01:31:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57811", "9", "2017-06-09 01:31:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57812", "8", "2017-06-09 01:31:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57813", "13", "2017-06-09 01:31:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57814", "15", "2017-06-09 01:31:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57815", "10", "2017-06-09 02:23:13", "184.66.248.195", "38");
INSERT INTO `wp_gf_form_view` VALUES("57816", "5", "2017-06-09 02:23:56", "202.46.54.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("57817", "3", "2017-06-09 02:23:57", "202.46.54.102", "7");
INSERT INTO `wp_gf_form_view` VALUES("57818", "10", "2017-06-09 03:23:12", "184.66.248.195", "38");
INSERT INTO `wp_gf_form_view` VALUES("57819", "3", "2017-06-09 03:23:22", "51.255.65.88", "4");
INSERT INTO `wp_gf_form_view` VALUES("57820", "3", "2017-06-09 04:11:07", "202.46.55.152", "4");
INSERT INTO `wp_gf_form_view` VALUES("57821", "10", "2017-06-09 04:11:07", "202.46.55.152", "20");
INSERT INTO `wp_gf_form_view` VALUES("57822", "11", "2017-06-09 04:51:50", "51.255.71.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("57823", "10", "2017-06-09 05:23:12", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57824", "3", "2017-06-09 05:51:10", "202.46.54.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("57825", "10", "2017-06-09 06:04:17", "207.46.13.1", "48");
INSERT INTO `wp_gf_form_view` VALUES("57826", "3", "2017-06-09 06:04:19", "207.46.13.1", "6");
INSERT INTO `wp_gf_form_view` VALUES("57827", "3", "2017-06-09 07:01:41", "51.255.65.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("57828", "10", "2017-06-09 07:01:42", "51.255.65.69", "29");
INSERT INTO `wp_gf_form_view` VALUES("57829", "10", "2017-06-09 08:23:12", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57830", "15", "2017-06-09 08:56:35", "51.255.65.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("57831", "3", "2017-06-09 08:56:35", "51.255.65.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("57832", "10", "2017-06-09 09:23:12", "184.66.248.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("57833", "3", "2017-06-09 09:36:20", "164.132.161.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("57834", "3", "2017-06-09 10:20:00", "37.115.187.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("57835", "3", "2017-06-09 10:20:00", "37.115.187.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57836", "3", "2017-06-09 10:20:00", "37.115.187.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57837", "10", "2017-06-09 10:23:13", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57838", "2", "2017-06-09 10:53:54", "62.210.29.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57839", "10", "2017-06-09 11:23:13", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57840", "10", "2017-06-09 12:00:04", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("57841", "3", "2017-06-09 12:29:40", "109.162.67.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("57842", "2", "2017-06-09 12:49:51", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("57843", "3", "2017-06-09 13:22:22", "54.243.53.148", "5");
INSERT INTO `wp_gf_form_view` VALUES("57844", "10", "2017-06-09 13:22:22", "54.243.53.148", "39");
INSERT INTO `wp_gf_form_view` VALUES("57845", "14", "2017-06-09 13:48:09", "89.40.115.227", "3");
INSERT INTO `wp_gf_form_view` VALUES("57846", "3", "2017-06-09 14:11:47", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("57847", "6", "2017-06-09 14:11:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57848", "9", "2017-06-09 14:11:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57849", "8", "2017-06-09 14:11:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57850", "10", "2017-06-09 14:11:48", "52.88.109.3", "16");
INSERT INTO `wp_gf_form_view` VALUES("57851", "13", "2017-06-09 14:11:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57852", "15", "2017-06-09 14:11:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57853", "3", "2017-06-09 15:04:59", "202.46.50.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("57854", "10", "2017-06-09 15:04:59", "202.46.50.12", "29");
INSERT INTO `wp_gf_form_view` VALUES("57855", "10", "2017-06-09 16:23:15", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57856", "3", "2017-06-09 16:45:29", "202.46.56.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("57857", "10", "2017-06-09 17:05:27", "70.67.108.41", "141");
INSERT INTO `wp_gf_form_view` VALUES("57858", "3", "2017-06-09 17:05:29", "184.69.102.226", "25");
INSERT INTO `wp_gf_form_view` VALUES("57859", "3", "2017-06-09 17:05:29", "184.69.102.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("57860", "9", "2017-06-09 17:27:50", "40.77.167.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("57861", "8", "2017-06-09 17:31:34", "138.201.29.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57862", "13", "2017-06-09 17:31:35", "138.201.29.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57863", "3", "2017-06-09 18:19:05", "24.244.32.163", "22");
INSERT INTO `wp_gf_form_view` VALUES("57864", "10", "2017-06-09 18:19:29", "24.244.32.163", "113");
INSERT INTO `wp_gf_form_view` VALUES("57865", "8", "2017-06-09 18:40:54", "217.182.132.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("57866", "3", "2017-06-09 19:10:28", "68.180.229.228", "9");
INSERT INTO `wp_gf_form_view` VALUES("57867", "10", "2017-06-09 19:23:15", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57868", "2", "2017-06-09 20:04:24", "173.252.114.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("57869", "3", "2017-06-09 20:04:33", "173.252.114.112", "6");
INSERT INTO `wp_gf_form_view` VALUES("57870", "10", "2017-06-09 20:04:33", "173.252.114.112", "38");
INSERT INTO `wp_gf_form_view` VALUES("57871", "14", "2017-06-09 20:16:19", "142.36.106.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("57872", "3", "2017-06-09 21:02:52", "24.69.147.199", "8");
INSERT INTO `wp_gf_form_view` VALUES("57873", "10", "2017-06-09 21:02:52", "24.69.147.199", "49");
INSERT INTO `wp_gf_form_view` VALUES("57874", "14", "2017-06-09 21:13:12", "209.52.88.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("57875", "11", "2017-06-09 22:09:24", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("57876", "10", "2017-06-09 22:23:16", "184.66.248.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("57877", "3", "2017-06-09 22:43:53", "66.249.79.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("57878", "3", "2017-06-09 23:02:38", "202.46.55.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("57879", "10", "2017-06-09 23:02:39", "202.46.55.157", "20");
INSERT INTO `wp_gf_form_view` VALUES("57880", "3", "2017-06-10 00:00:56", "164.132.161.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("57881", "10", "2017-06-10 00:00:56", "164.132.161.22", "47");
INSERT INTO `wp_gf_form_view` VALUES("57882", "3", "2017-06-10 01:01:28", "68.180.229.228", "22");
INSERT INTO `wp_gf_form_view` VALUES("57883", "8", "2017-06-10 01:01:29", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57884", "13", "2017-06-10 01:01:29", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57885", "10", "2017-06-10 01:02:09", "54.165.59.7", "68");
INSERT INTO `wp_gf_form_view` VALUES("57886", "8", "2017-06-10 02:03:09", "207.46.13.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("57887", "3", "2017-06-10 02:03:09", "207.46.13.1", "73");
INSERT INTO `wp_gf_form_view` VALUES("57888", "10", "2017-06-10 02:03:09", "207.46.13.1", "485");
INSERT INTO `wp_gf_form_view` VALUES("57889", "5", "2017-06-10 02:50:42", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("57890", "6", "2017-06-10 02:50:43", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("57891", "9", "2017-06-10 02:50:53", "207.46.13.136", "3");
INSERT INTO `wp_gf_form_view` VALUES("57892", "13", "2017-06-10 02:50:54", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("57893", "2", "2017-06-10 03:03:01", "66.249.79.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("57894", "3", "2017-06-10 03:05:13", "68.180.229.228", "5");
INSERT INTO `wp_gf_form_view` VALUES("57895", "10", "2017-06-10 03:05:13", "68.180.229.228", "38");
INSERT INTO `wp_gf_form_view` VALUES("57896", "3", "2017-06-10 04:06:58", "46.118.117.131", "5");
INSERT INTO `wp_gf_form_view` VALUES("57897", "10", "2017-06-10 04:20:52", "207.46.13.1", "21");
INSERT INTO `wp_gf_form_view` VALUES("57898", "10", "2017-06-10 05:23:17", "184.66.248.195", "21");
INSERT INTO `wp_gf_form_view` VALUES("57899", "3", "2017-06-10 05:25:56", "202.46.52.171", "3");
INSERT INTO `wp_gf_form_view` VALUES("57900", "3", "2017-06-10 06:22:10", "136.243.59.237", "2");
INSERT INTO `wp_gf_form_view` VALUES("57901", "10", "2017-06-10 06:22:13", "136.243.59.237", "11");
INSERT INTO `wp_gf_form_view` VALUES("57902", "3", "2017-06-10 07:19:02", "46.118.117.131", "16");
INSERT INTO `wp_gf_form_view` VALUES("57903", "10", "2017-06-10 07:21:21", "164.132.161.53", "125");
INSERT INTO `wp_gf_form_view` VALUES("57904", "10", "2017-06-10 08:23:17", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57905", "3", "2017-06-10 08:42:29", "46.118.117.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("57906", "2", "2017-06-10 08:48:54", "5.101.220.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("57907", "3", "2017-06-10 09:10:35", "202.46.51.58", "61");
INSERT INTO `wp_gf_form_view` VALUES("57908", "10", "2017-06-10 09:10:35", "202.46.51.58", "421");
INSERT INTO `wp_gf_form_view` VALUES("57909", "11", "2017-06-10 09:12:56", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("57910", "14", "2017-06-10 09:14:27", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("57911", "2", "2017-06-10 09:14:35", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("57912", "15", "2017-06-10 09:18:46", "188.40.46.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("57913", "12", "2017-06-10 09:43:55", "217.182.132.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("57914", "3", "2017-06-10 10:06:42", "51.255.65.95", "10");
INSERT INTO `wp_gf_form_view` VALUES("57915", "10", "2017-06-10 10:23:17", "184.66.248.195", "56");
INSERT INTO `wp_gf_form_view` VALUES("57916", "10", "2017-06-10 11:04:55", "216.244.66.231", "58");
INSERT INTO `wp_gf_form_view` VALUES("57917", "3", "2017-06-10 11:04:56", "216.244.66.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("57918", "11", "2017-06-10 11:22:59", "136.243.59.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("57919", "3", "2017-06-10 12:12:55", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("57920", "6", "2017-06-10 12:12:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57921", "9", "2017-06-10 12:12:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57922", "8", "2017-06-10 12:12:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57923", "10", "2017-06-10 12:12:57", "52.88.109.3", "17");
INSERT INTO `wp_gf_form_view` VALUES("57924", "13", "2017-06-10 12:12:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57925", "15", "2017-06-10 12:12:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57926", "3", "2017-06-10 13:04:18", "217.182.132.25", "13");
INSERT INTO `wp_gf_form_view` VALUES("57927", "10", "2017-06-10 13:04:18", "217.182.132.25", "56");
INSERT INTO `wp_gf_form_view` VALUES("57928", "10", "2017-06-10 14:23:19", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("57929", "10", "2017-06-10 15:09:09", "72.14.199.74", "30");
INSERT INTO `wp_gf_form_view` VALUES("57930", "3", "2017-06-10 15:32:26", "157.55.39.157", "5");
INSERT INTO `wp_gf_form_view` VALUES("57931", "10", "2017-06-10 16:23:19", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57932", "3", "2017-06-10 16:23:53", "202.46.50.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("57933", "3", "2017-06-10 17:06:27", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57934", "10", "2017-06-10 17:06:27", "68.180.229.228", "11");
INSERT INTO `wp_gf_form_view` VALUES("57935", "10", "2017-06-10 18:23:22", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("57936", "3", "2017-06-10 18:40:15", "66.249.79.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("57937", "10", "2017-06-10 19:23:21", "184.66.248.195", "66");
INSERT INTO `wp_gf_form_view` VALUES("57938", "3", "2017-06-10 19:37:50", "37.115.187.118", "11");
INSERT INTO `wp_gf_form_view` VALUES("57939", "3", "2017-06-10 20:18:35", "216.244.66.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("57940", "10", "2017-06-10 20:18:35", "216.244.66.231", "29");
INSERT INTO `wp_gf_form_view` VALUES("57941", "12", "2017-06-10 20:33:33", "157.55.39.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("57942", "3", "2017-06-10 21:01:05", "46.118.123.232", "5");
INSERT INTO `wp_gf_form_view` VALUES("57943", "14", "2017-06-10 21:03:28", "172.245.68.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("57944", "10", "2017-06-10 21:14:51", "66.249.79.134", "29");
INSERT INTO `wp_gf_form_view` VALUES("57945", "10", "2017-06-10 22:05:38", "68.180.229.228", "21");
INSERT INTO `wp_gf_form_view` VALUES("57946", "3", "2017-06-10 22:05:39", "68.180.229.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("57947", "13", "2017-06-10 23:13:13", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57948", "3", "2017-06-10 23:13:13", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("57949", "10", "2017-06-10 23:13:13", "68.180.229.228", "20");
INSERT INTO `wp_gf_form_view` VALUES("57950", "3", "2017-06-11 00:21:22", "37.115.187.118", "31");
INSERT INTO `wp_gf_form_view` VALUES("57951", "10", "2017-06-11 00:23:20", "184.66.248.195", "16");
INSERT INTO `wp_gf_form_view` VALUES("57952", "6", "2017-06-11 00:32:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57953", "9", "2017-06-11 00:32:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57954", "8", "2017-06-11 00:32:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57955", "13", "2017-06-11 00:32:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57956", "15", "2017-06-11 00:32:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("57957", "14", "2017-06-11 00:53:56", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("57958", "10", "2017-06-11 01:20:49", "51.255.65.16", "44");
INSERT INTO `wp_gf_form_view` VALUES("57959", "2", "2017-06-11 01:22:21", "13.56.16.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("57960", "14", "2017-06-11 01:22:22", "13.56.16.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("57961", "3", "2017-06-11 01:37:20", "164.132.162.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("57962", "10", "2017-06-11 02:07:55", "217.182.132.16", "22");
INSERT INTO `wp_gf_form_view` VALUES("57963", "3", "2017-06-11 02:08:35", "46.118.158.86", "4");
INSERT INTO `wp_gf_form_view` VALUES("57964", "10", "2017-06-11 03:10:41", "24.108.176.13", "43");
INSERT INTO `wp_gf_form_view` VALUES("57965", "14", "2017-06-11 03:11:04", "24.108.176.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("57966", "3", "2017-06-11 03:22:23", "202.46.54.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("57967", "10", "2017-06-11 04:15:21", "207.46.13.1", "33");
INSERT INTO `wp_gf_form_view` VALUES("57968", "10", "2017-06-11 05:02:26", "202.46.58.154", "33");
INSERT INTO `wp_gf_form_view` VALUES("57969", "3", "2017-06-11 05:35:44", "202.46.58.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("57970", "3", "2017-06-11 06:09:03", "202.46.55.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("57971", "10", "2017-06-11 06:09:06", "202.46.55.142", "22");
INSERT INTO `wp_gf_form_view` VALUES("57972", "6", "2017-06-11 07:08:10", "51.255.65.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("57973", "10", "2017-06-11 07:08:12", "51.255.65.15", "12");
INSERT INTO `wp_gf_form_view` VALUES("57974", "3", "2017-06-11 07:24:22", "46.118.158.86", "4");
INSERT INTO `wp_gf_form_view` VALUES("57975", "10", "2017-06-11 08:14:15", "68.180.229.228", "54");
INSERT INTO `wp_gf_form_view` VALUES("57976", "3", "2017-06-11 08:15:30", "37.115.187.118", "14");
INSERT INTO `wp_gf_form_view` VALUES("57977", "8", "2017-06-11 08:55:38", "66.249.79.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("57978", "13", "2017-06-11 08:55:39", "66.249.79.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("57979", "10", "2017-06-11 09:00:40", "216.244.66.231", "32");
INSERT INTO `wp_gf_form_view` VALUES("57980", "6", "2017-06-11 09:29:03", "202.46.53.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("57981", "3", "2017-06-11 09:59:49", "46.118.117.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("57982", "10", "2017-06-11 10:16:56", "66.249.79.134", "13");
INSERT INTO `wp_gf_form_view` VALUES("57983", "10", "2017-06-11 11:06:45", "204.79.180.0", "44");
INSERT INTO `wp_gf_form_view` VALUES("57984", "3", "2017-06-11 11:08:44", "164.132.161.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("57985", "3", "2017-06-11 12:10:05", "217.182.132.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("57986", "10", "2017-06-11 12:10:06", "217.182.132.182", "22");
INSERT INTO `wp_gf_form_view` VALUES("57987", "10", "2017-06-11 13:01:22", "51.255.65.74", "23");
INSERT INTO `wp_gf_form_view` VALUES("57988", "3", "2017-06-11 13:51:49", "202.46.51.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("57989", "3", "2017-06-11 14:02:37", "46.118.123.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("57990", "14", "2017-06-11 14:08:07", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("57991", "10", "2017-06-11 14:23:24", "184.66.248.195", "52");
INSERT INTO `wp_gf_form_view` VALUES("57992", "10", "2017-06-11 15:05:36", "164.132.161.4", "13");
INSERT INTO `wp_gf_form_view` VALUES("57993", "3", "2017-06-11 15:10:06", "37.115.187.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("57994", "10", "2017-06-11 16:23:24", "184.66.248.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("57995", "3", "2017-06-11 16:23:31", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("57996", "3", "2017-06-11 17:07:20", "68.180.229.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("57997", "10", "2017-06-11 17:16:54", "164.132.161.75", "22");
INSERT INTO `wp_gf_form_view` VALUES("57998", "10", "2017-06-11 18:23:23", "184.66.248.195", "23");
INSERT INTO `wp_gf_form_view` VALUES("57999", "11", "2017-06-11 18:26:34", "37.48.68.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("58000", "2", "2017-06-11 18:26:35", "37.48.68.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("58001", "10", "2017-06-11 19:20:29", "202.46.57.13", "23");
INSERT INTO `wp_gf_form_view` VALUES("58002", "10", "2017-06-11 20:11:45", "164.132.161.58", "32");
INSERT INTO `wp_gf_form_view` VALUES("58003", "3", "2017-06-11 20:44:49", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("58004", "10", "2017-06-11 21:23:24", "184.66.248.195", "14");
INSERT INTO `wp_gf_form_view` VALUES("58005", "3", "2017-06-11 21:36:14", "184.151.231.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("58006", "3", "2017-06-11 22:22:53", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58007", "6", "2017-06-11 22:22:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58008", "9", "2017-06-11 22:22:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58009", "8", "2017-06-11 22:22:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58010", "10", "2017-06-11 22:22:55", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("58011", "13", "2017-06-11 22:22:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58012", "15", "2017-06-11 22:22:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58013", "10", "2017-06-11 23:04:30", "207.46.13.6", "701");
INSERT INTO `wp_gf_form_view` VALUES("58014", "3", "2017-06-11 23:04:33", "207.46.13.6", "37");
INSERT INTO `wp_gf_form_view` VALUES("58015", "9", "2017-06-11 23:04:47", "207.46.13.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("58016", "15", "2017-06-11 23:05:19", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("58017", "8", "2017-06-11 23:05:41", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("58018", "13", "2017-06-11 23:05:43", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("58019", "10", "2017-06-12 00:19:27", "51.255.71.121", "44");
INSERT INTO `wp_gf_form_view` VALUES("58020", "11", "2017-06-12 01:04:28", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("58021", "10", "2017-06-12 01:06:47", "96.54.246.55", "37");
INSERT INTO `wp_gf_form_view` VALUES("58022", "13", "2017-06-12 01:09:29", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("58023", "3", "2017-06-12 01:44:52", "192.99.108.233", "27");
INSERT INTO `wp_gf_form_view` VALUES("58024", "6", "2017-06-12 01:44:54", "192.99.108.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("58025", "9", "2017-06-12 01:44:54", "192.99.108.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("58026", "8", "2017-06-12 01:44:54", "192.99.108.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("58027", "15", "2017-06-12 01:44:56", "192.99.108.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("58028", "3", "2017-06-12 02:16:10", "66.249.79.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("58029", "10", "2017-06-12 02:23:26", "184.66.248.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("58030", "10", "2017-06-12 03:07:51", "217.182.132.172", "43");
INSERT INTO `wp_gf_form_view` VALUES("58031", "3", "2017-06-12 03:12:08", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("58032", "13", "2017-06-12 03:36:52", "51.255.65.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58033", "3", "2017-06-12 04:00:49", "202.46.57.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("58034", "10", "2017-06-12 04:00:49", "202.46.57.163", "22");
INSERT INTO `wp_gf_form_view` VALUES("58035", "15", "2017-06-12 04:34:10", "202.46.48.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("58036", "10", "2017-06-12 05:02:13", "199.21.99.202", "32");
INSERT INTO `wp_gf_form_view` VALUES("58037", "14", "2017-06-12 05:07:30", "202.46.58.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("58038", "3", "2017-06-12 05:40:50", "202.46.57.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("58039", "10", "2017-06-12 06:07:02", "176.56.62.199", "42");
INSERT INTO `wp_gf_form_view` VALUES("58040", "14", "2017-06-12 06:25:53", "24.108.40.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("58041", "3", "2017-06-12 06:56:47", "164.132.161.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("58042", "11", "2017-06-12 07:06:39", "94.209.237.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("58043", "10", "2017-06-12 07:06:42", "94.209.237.27", "92");
INSERT INTO `wp_gf_form_view` VALUES("58044", "2", "2017-06-12 07:07:30", "94.209.237.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("58045", "3", "2017-06-12 07:07:52", "94.209.237.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("58046", "10", "2017-06-12 08:23:27", "184.66.248.195", "22");
INSERT INTO `wp_gf_form_view` VALUES("58047", "3", "2017-06-12 08:44:55", "217.182.132.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("58048", "3", "2017-06-12 09:15:16", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("58049", "10", "2017-06-12 09:18:36", "72.14.199.72", "23");
INSERT INTO `wp_gf_form_view` VALUES("58050", "10", "2017-06-12 10:23:27", "184.66.248.195", "17");
INSERT INTO `wp_gf_form_view` VALUES("58051", "3", "2017-06-12 10:54:38", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58052", "6", "2017-06-12 10:54:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58053", "9", "2017-06-12 10:54:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58054", "8", "2017-06-12 10:54:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58055", "13", "2017-06-12 10:54:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58056", "15", "2017-06-12 10:54:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58057", "10", "2017-06-12 11:15:26", "207.46.13.6", "22");
INSERT INTO `wp_gf_form_view` VALUES("58058", "3", "2017-06-12 11:19:59", "217.182.132.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("58059", "10", "2017-06-12 12:23:28", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58060", "10", "2017-06-12 13:12:28", "66.249.79.138", "22");
INSERT INTO `wp_gf_form_view` VALUES("58061", "13", "2017-06-12 13:47:23", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("58062", "10", "2017-06-12 14:23:28", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58063", "3", "2017-06-12 15:06:48", "157.55.39.160", "2");
INSERT INTO `wp_gf_form_view` VALUES("58064", "10", "2017-06-12 15:06:48", "157.55.39.160", "62");
INSERT INTO `wp_gf_form_view` VALUES("58065", "8", "2017-06-12 15:07:38", "207.46.13.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("58066", "10", "2017-06-12 16:23:34", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58067", "10", "2017-06-12 17:23:28", "184.66.248.195", "42");
INSERT INTO `wp_gf_form_view` VALUES("58068", "3", "2017-06-12 17:25:54", "207.46.13.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("58069", "9", "2017-06-12 17:48:20", "207.46.13.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("58070", "10", "2017-06-12 18:23:28", "184.66.248.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("58071", "10", "2017-06-12 19:10:16", "142.103.91.1", "94");
INSERT INTO `wp_gf_form_view` VALUES("58072", "14", "2017-06-12 19:13:45", "184.69.96.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("58073", "3", "2017-06-12 19:50:25", "185.26.92.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("58074", "10", "2017-06-12 20:10:40", "185.26.92.74", "42");
INSERT INTO `wp_gf_form_view` VALUES("58075", "3", "2017-06-12 20:13:24", "185.26.92.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("58076", "8", "2017-06-12 21:19:02", "202.46.58.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("58077", "10", "2017-06-12 21:19:03", "202.46.58.87", "42");
INSERT INTO `wp_gf_form_view` VALUES("58078", "10", "2017-06-12 22:02:34", "66.249.79.136", "81");
INSERT INTO `wp_gf_form_view` VALUES("58079", "14", "2017-06-12 22:10:25", "184.66.139.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("58080", "11", "2017-06-12 22:21:04", "185.26.92.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("58081", "2", "2017-06-12 22:21:26", "185.26.92.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("58082", "3", "2017-06-12 22:38:47", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("58083", "10", "2017-06-12 23:09:35", "72.14.199.72", "11");
INSERT INTO `wp_gf_form_view` VALUES("58084", "10", "2017-06-13 00:05:39", "202.46.48.89", "10");
INSERT INTO `wp_gf_form_view` VALUES("58085", "3", "2017-06-13 01:07:15", "24.69.27.47", "5");
INSERT INTO `wp_gf_form_view` VALUES("58086", "10", "2017-06-13 01:07:18", "24.69.27.47", "61");
INSERT INTO `wp_gf_form_view` VALUES("58087", "3", "2017-06-13 02:21:59", "66.249.79.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("58088", "10", "2017-06-13 03:20:27", "24.108.40.251", "10");
INSERT INTO `wp_gf_form_view` VALUES("58089", "3", "2017-06-13 04:05:57", "68.180.229.228", "7");
INSERT INTO `wp_gf_form_view` VALUES("58090", "8", "2017-06-13 04:05:57", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58091", "13", "2017-06-13 04:05:57", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58092", "10", "2017-06-13 04:46:00", "96.50.28.110", "142");
INSERT INTO `wp_gf_form_view` VALUES("58093", "15", "2017-06-13 04:56:14", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("58094", "10", "2017-06-13 05:00:13", "46.229.168.67", "70");
INSERT INTO `wp_gf_form_view` VALUES("58095", "3", "2017-06-13 05:00:32", "46.229.168.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("58096", "2", "2017-06-13 05:01:27", "46.229.168.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("58097", "10", "2017-06-13 06:37:03", "157.55.39.160", "32");
INSERT INTO `wp_gf_form_view` VALUES("58098", "3", "2017-06-13 06:45:26", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("58099", "3", "2017-06-13 07:15:47", "207.46.13.1", "19");
INSERT INTO `wp_gf_form_view` VALUES("58100", "10", "2017-06-13 07:15:49", "207.46.13.1", "355");
INSERT INTO `wp_gf_form_view` VALUES("58101", "9", "2017-06-13 07:26:47", "144.76.8.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("58102", "8", "2017-06-13 07:27:10", "144.76.8.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("58103", "11", "2017-06-13 07:27:41", "144.76.8.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("58104", "15", "2017-06-13 07:28:46", "144.76.8.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("58105", "12", "2017-06-13 07:30:38", "144.76.8.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("58106", "14", "2017-06-13 08:25:40", "202.46.55.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("58107", "10", "2017-06-13 08:49:52", "207.46.13.6", "31");
INSERT INTO `wp_gf_form_view` VALUES("58108", "3", "2017-06-13 08:54:43", "51.255.71.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("58109", "10", "2017-06-13 09:01:57", "157.55.39.160", "15");
INSERT INTO `wp_gf_form_view` VALUES("58110", "3", "2017-06-13 09:17:54", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58111", "6", "2017-06-13 09:17:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58112", "9", "2017-06-13 09:17:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58113", "8", "2017-06-13 09:17:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58114", "13", "2017-06-13 09:17:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58115", "15", "2017-06-13 09:17:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58116", "14", "2017-06-13 09:44:52", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("58117", "10", "2017-06-13 10:05:39", "217.182.132.35", "101");
INSERT INTO `wp_gf_form_view` VALUES("58118", "3", "2017-06-13 10:05:39", "202.46.52.107", "4");
INSERT INTO `wp_gf_form_view` VALUES("58119", "14", "2017-06-13 10:09:19", "138.128.75.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("58120", "11", "2017-06-13 10:55:41", "138.197.111.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("58121", "2", "2017-06-13 10:55:42", "138.197.111.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("58122", "13", "2017-06-13 11:12:21", "202.46.56.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("58123", "10", "2017-06-13 11:12:21", "202.46.56.32", "30");
INSERT INTO `wp_gf_form_view` VALUES("58124", "3", "2017-06-13 11:19:09", "51.255.65.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("58125", "14", "2017-06-13 11:28:27", "192.3.191.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("58126", "3", "2017-06-13 12:02:03", "207.46.13.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("58127", "10", "2017-06-13 12:14:55", "51.255.65.90", "40");
INSERT INTO `wp_gf_form_view` VALUES("58128", "10", "2017-06-13 13:25:38", "202.46.52.177", "10");
INSERT INTO `wp_gf_form_view` VALUES("58129", "10", "2017-06-13 14:31:53", "72.14.199.74", "61");
INSERT INTO `wp_gf_form_view` VALUES("58130", "11", "2017-06-13 14:43:23", "52.31.245.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("58131", "2", "2017-06-13 14:43:51", "52.31.245.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("58132", "10", "2017-06-13 15:15:51", "77.75.79.72", "72");
INSERT INTO `wp_gf_form_view` VALUES("58133", "14", "2017-06-13 15:56:41", "204.209.209.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("58134", "10", "2017-06-13 16:04:51", "184.66.248.195", "42");
INSERT INTO `wp_gf_form_view` VALUES("58135", "10", "2017-06-13 17:02:01", "202.46.53.147", "23");
INSERT INTO `wp_gf_form_view` VALUES("58136", "10", "2017-06-13 18:17:08", "184.66.248.195", "153");
INSERT INTO `wp_gf_form_view` VALUES("58137", "11", "2017-06-13 18:29:43", "81.171.85.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("58138", "3", "2017-06-13 18:30:06", "66.183.165.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("58139", "2", "2017-06-13 18:30:44", "81.171.85.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("58140", "10", "2017-06-13 19:04:36", "157.55.39.160", "63");
INSERT INTO `wp_gf_form_view` VALUES("58141", "5", "2017-06-13 19:05:36", "77.75.79.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("58142", "3", "2017-06-13 19:07:56", "207.46.13.1", "2");
INSERT INTO `wp_gf_form_view` VALUES("58143", "10", "2017-06-13 20:18:13", "207.194.133.9", "70");
INSERT INTO `wp_gf_form_view` VALUES("58144", "15", "2017-06-13 20:55:19", "202.46.52.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("58145", "10", "2017-06-13 21:08:44", "51.255.71.122", "21");
INSERT INTO `wp_gf_form_view` VALUES("58146", "6", "2017-06-13 22:02:08", "202.46.58.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("58147", "10", "2017-06-13 22:02:09", "202.46.58.188", "138");
INSERT INTO `wp_gf_form_view` VALUES("58148", "3", "2017-06-13 22:28:41", "51.255.173.50", "34");
INSERT INTO `wp_gf_form_view` VALUES("58149", "9", "2017-06-13 22:29:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58150", "8", "2017-06-13 22:29:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58151", "13", "2017-06-13 22:29:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58152", "15", "2017-06-13 22:29:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58153", "14", "2017-06-13 23:03:01", "96.50.22.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("58154", "10", "2017-06-13 23:17:20", "69.58.178.57", "61");
INSERT INTO `wp_gf_form_view` VALUES("58155", "11", "2017-06-13 23:17:40", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("58156", "2", "2017-06-13 23:17:42", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("58157", "3", "2017-06-13 23:24:57", "96.54.246.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("58158", "3", "2017-06-14 00:31:35", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("58159", "10", "2017-06-14 00:50:23", "157.55.39.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("58160", "14", "2017-06-14 00:51:59", "66.249.79.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("58161", "3", "2017-06-14 01:45:40", "202.46.54.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("58162", "10", "2017-06-14 01:45:43", "202.46.54.167", "20");
INSERT INTO `wp_gf_form_view` VALUES("58163", "10", "2017-06-14 02:06:25", "157.55.39.157", "42");
INSERT INTO `wp_gf_form_view` VALUES("58164", "3", "2017-06-14 02:16:16", "51.255.65.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("58165", "10", "2017-06-14 03:09:11", "217.182.132.52", "57");
INSERT INTO `wp_gf_form_view` VALUES("58166", "14", "2017-06-14 03:37:07", "96.50.16.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("58167", "14", "2017-06-14 04:39:09", "185.145.195.171", "2");
INSERT INTO `wp_gf_form_view` VALUES("58168", "10", "2017-06-14 04:43:09", "157.55.39.157", "40");
INSERT INTO `wp_gf_form_view` VALUES("58169", "10", "2017-06-14 05:01:44", "72.14.199.118", "43");
INSERT INTO `wp_gf_form_view` VALUES("58170", "3", "2017-06-14 06:07:30", "164.132.161.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58171", "10", "2017-06-14 06:07:33", "164.132.161.56", "20");
INSERT INTO `wp_gf_form_view` VALUES("58172", "10", "2017-06-14 07:15:04", "217.182.132.75", "20");
INSERT INTO `wp_gf_form_view` VALUES("58173", "10", "2017-06-14 08:12:27", "51.255.173.13", "91");
INSERT INTO `wp_gf_form_view` VALUES("58174", "3", "2017-06-14 08:12:55", "51.255.173.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("58175", "10", "2017-06-14 09:19:26", "77.75.78.169", "20");
INSERT INTO `wp_gf_form_view` VALUES("58176", "3", "2017-06-14 09:45:15", "202.46.48.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("58177", "10", "2017-06-14 10:13:36", "77.75.76.167", "20");
INSERT INTO `wp_gf_form_view` VALUES("58178", "3", "2017-06-14 10:51:55", "202.46.51.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("58179", "10", "2017-06-14 11:20:30", "137.74.207.164", "21");
INSERT INTO `wp_gf_form_view` VALUES("58180", "3", "2017-06-14 11:58:35", "202.46.57.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("58181", "9", "2017-06-14 12:23:27", "217.182.132.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("58182", "10", "2017-06-14 12:23:27", "217.182.132.174", "20");
INSERT INTO `wp_gf_form_view` VALUES("58183", "10", "2017-06-14 13:06:59", "216.244.66.231", "1975");
INSERT INTO `wp_gf_form_view` VALUES("58184", "6", "2017-06-14 13:11:57", "5.9.111.70", "4");
INSERT INTO `wp_gf_form_view` VALUES("58185", "9", "2017-06-14 13:11:58", "5.9.111.70", "4");
INSERT INTO `wp_gf_form_view` VALUES("58186", "3", "2017-06-14 13:12:04", "5.9.111.70", "41");
INSERT INTO `wp_gf_form_view` VALUES("58187", "11", "2017-06-14 13:29:51", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58188", "2", "2017-06-14 13:29:55", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58189", "14", "2017-06-14 13:31:08", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58190", "15", "2017-06-14 13:33:19", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58191", "13", "2017-06-14 13:36:09", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58192", "8", "2017-06-14 13:37:03", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58193", "10", "2017-06-14 14:00:56", "5.9.98.130", "4168");
INSERT INTO `wp_gf_form_view` VALUES("58194", "3", "2017-06-14 14:03:37", "5.9.98.130", "24");
INSERT INTO `wp_gf_form_view` VALUES("58195", "9", "2017-06-14 14:18:43", "66.249.79.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("58196", "10", "2017-06-14 15:00:00", "5.9.98.130", "4434");
INSERT INTO `wp_gf_form_view` VALUES("58197", "3", "2017-06-14 15:21:21", "157.55.39.157", "33");
INSERT INTO `wp_gf_form_view` VALUES("58198", "10", "2017-06-14 16:00:00", "5.9.98.130", "2455");
INSERT INTO `wp_gf_form_view` VALUES("58199", "2", "2017-06-14 16:28:07", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58200", "10", "2017-06-14 17:00:01", "5.9.98.130", "5199");
INSERT INTO `wp_gf_form_view` VALUES("58201", "3", "2017-06-14 17:21:37", "5.9.98.130", "68");
INSERT INTO `wp_gf_form_view` VALUES("58202", "13", "2017-06-14 17:33:53", "213.136.73.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("58203", "10", "2017-06-14 18:00:00", "5.9.98.130", "4138");
INSERT INTO `wp_gf_form_view` VALUES("58204", "3", "2017-06-14 18:34:30", "164.132.161.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("58205", "2", "2017-06-14 18:58:42", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("58206", "10", "2017-06-14 19:09:47", "5.9.98.130", "2601");
INSERT INTO `wp_gf_form_view` VALUES("58207", "10", "2017-06-14 20:06:41", "66.249.79.138", "4410");
INSERT INTO `wp_gf_form_view` VALUES("58208", "14", "2017-06-14 20:34:49", "70.66.181.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("58209", "10", "2017-06-14 21:00:00", "5.9.98.130", "4108");
INSERT INTO `wp_gf_form_view` VALUES("58210", "3", "2017-06-14 21:12:14", "5.9.98.130", "200");
INSERT INTO `wp_gf_form_view` VALUES("58211", "6", "2017-06-14 21:19:59", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58212", "9", "2017-06-14 21:20:01", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("58213", "8", "2017-06-14 21:20:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58214", "13", "2017-06-14 21:20:06", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58215", "15", "2017-06-14 21:20:09", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58216", "5", "2017-06-14 21:40:06", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58217", "10", "2017-06-14 22:00:00", "5.9.98.130", "5638");
INSERT INTO `wp_gf_form_view` VALUES("58218", "3", "2017-06-14 22:40:44", "24.69.158.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("58219", "10", "2017-06-14 23:00:03", "5.9.98.130", "5390");
INSERT INTO `wp_gf_form_view` VALUES("58220", "3", "2017-06-14 23:24:18", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58221", "10", "2017-06-15 00:21:20", "51.255.65.7", "381");
INSERT INTO `wp_gf_form_view` VALUES("58222", "10", "2017-06-15 01:00:00", "5.9.98.130", "4771");
INSERT INTO `wp_gf_form_view` VALUES("58223", "3", "2017-06-15 02:41:35", "68.180.229.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("58224", "10", "2017-06-15 02:50:37", "217.182.132.74", "10");
INSERT INTO `wp_gf_form_view` VALUES("58225", "14", "2017-06-15 02:54:45", "96.54.157.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("58226", "10", "2017-06-15 03:09:30", "202.46.57.170", "4882");
INSERT INTO `wp_gf_form_view` VALUES("58227", "3", "2017-06-15 03:59:48", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("58228", "10", "2017-06-15 04:00:00", "5.9.98.130", "4640");
INSERT INTO `wp_gf_form_view` VALUES("58229", "3", "2017-06-15 04:40:22", "66.249.79.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("58230", "10", "2017-06-15 05:00:00", "5.9.98.130", "4353");
INSERT INTO `wp_gf_form_view` VALUES("58231", "3", "2017-06-15 05:21:54", "5.9.98.130", "257");
INSERT INTO `wp_gf_form_view` VALUES("58232", "10", "2017-06-15 06:39:15", "72.14.199.70", "1262");
INSERT INTO `wp_gf_form_view` VALUES("58233", "3", "2017-06-15 06:56:01", "144.76.12.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("58234", "9", "2017-06-15 06:56:07", "144.76.12.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("58235", "8", "2017-06-15 06:56:16", "144.76.12.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("58236", "10", "2017-06-15 07:00:01", "5.9.98.130", "4946");
INSERT INTO `wp_gf_form_view` VALUES("58237", "10", "2017-06-15 08:00:00", "5.9.98.130", "4727");
INSERT INTO `wp_gf_form_view` VALUES("58238", "12", "2017-06-15 08:14:53", "202.46.50.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("58239", "10", "2017-06-15 09:00:01", "5.9.98.130", "4790");
INSERT INTO `wp_gf_form_view` VALUES("58240", "3", "2017-06-15 09:21:34", "202.46.48.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("58241", "10", "2017-06-15 10:00:03", "5.9.98.130", "4968");
INSERT INTO `wp_gf_form_view` VALUES("58242", "3", "2017-06-15 10:54:28", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("58243", "6", "2017-06-15 10:54:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58244", "9", "2017-06-15 10:54:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58245", "8", "2017-06-15 10:54:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58246", "13", "2017-06-15 10:54:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58247", "15", "2017-06-15 10:54:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58248", "10", "2017-06-15 11:00:00", "5.9.98.130", "3761");
INSERT INTO `wp_gf_form_view` VALUES("58249", "3", "2017-06-15 11:53:44", "164.132.161.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("58250", "10", "2017-06-15 12:11:20", "202.46.55.150", "20");
INSERT INTO `wp_gf_form_view` VALUES("58251", "3", "2017-06-15 12:44:19", "51.255.65.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("58252", "14", "2017-06-15 12:44:35", "202.46.52.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("58253", "5", "2017-06-15 13:05:05", "77.75.79.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("58254", "10", "2017-06-15 13:05:06", "77.75.79.32", "335");
INSERT INTO `wp_gf_form_view` VALUES("58255", "3", "2017-06-15 13:51:17", "202.46.50.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("58256", "10", "2017-06-15 14:00:00", "5.9.98.130", "6205");
INSERT INTO `wp_gf_form_view` VALUES("58257", "3", "2017-06-15 14:45:22", "157.55.39.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("58258", "10", "2017-06-15 15:00:00", "5.9.98.130", "3760");
INSERT INTO `wp_gf_form_view` VALUES("58259", "3", "2017-06-15 15:32:36", "217.182.132.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("58260", "3", "2017-06-15 16:04:37", "202.46.50.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("58261", "10", "2017-06-15 16:04:39", "202.46.50.180", "10");
INSERT INTO `wp_gf_form_view` VALUES("58262", "10", "2017-06-15 17:01:44", "75.157.130.176", "32");
INSERT INTO `wp_gf_form_view` VALUES("58263", "3", "2017-06-15 17:02:10", "75.157.130.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("58264", "10", "2017-06-15 18:07:45", "138.197.158.245", "72");
INSERT INTO `wp_gf_form_view` VALUES("58265", "3", "2017-06-15 18:20:33", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58266", "10", "2017-06-15 19:06:48", "207.46.13.52", "152");
INSERT INTO `wp_gf_form_view` VALUES("58267", "3", "2017-06-15 19:57:35", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58268", "10", "2017-06-15 20:00:34", "195.154.172.53", "67");
INSERT INTO `wp_gf_form_view` VALUES("58269", "10", "2017-06-15 21:04:29", "72.14.199.72", "123");
INSERT INTO `wp_gf_form_view` VALUES("58270", "9", "2017-06-15 21:26:42", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("58271", "3", "2017-06-15 21:26:48", "207.46.13.52", "5");
INSERT INTO `wp_gf_form_view` VALUES("58272", "15", "2017-06-15 21:26:51", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58273", "11", "2017-06-15 21:47:33", "138.197.73.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("58274", "2", "2017-06-15 21:47:33", "138.197.73.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("58275", "3", "2017-06-15 22:06:17", "207.46.13.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("58276", "10", "2017-06-15 22:06:17", "207.46.13.52", "51");
INSERT INTO `wp_gf_form_view` VALUES("58277", "13", "2017-06-15 22:43:29", "202.46.58.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("58278", "15", "2017-06-15 22:53:47", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58279", "3", "2017-06-15 23:30:31", "164.132.161.23", "6");
INSERT INTO `wp_gf_form_view` VALUES("58280", "10", "2017-06-15 23:30:38", "164.132.161.23", "13");
INSERT INTO `wp_gf_form_view` VALUES("58281", "15", "2017-06-15 23:30:38", "164.132.161.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("58282", "10", "2017-06-16 00:19:01", "77.75.77.32", "20");
INSERT INTO `wp_gf_form_view` VALUES("58283", "3", "2017-06-16 01:13:29", "202.46.54.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("58284", "10", "2017-06-16 01:13:29", "202.46.54.144", "32");
INSERT INTO `wp_gf_form_view` VALUES("58285", "3", "2017-06-16 02:07:13", "66.249.79.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("58286", "10", "2017-06-16 02:07:14", "66.249.79.134", "31");
INSERT INTO `wp_gf_form_view` VALUES("58287", "3", "2017-06-16 03:06:11", "37.229.253.71", "30");
INSERT INTO `wp_gf_form_view` VALUES("58288", "10", "2017-06-16 03:37:30", "24.69.136.239", "16");
INSERT INTO `wp_gf_form_view` VALUES("58289", "6", "2017-06-16 03:51:20", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58290", "9", "2017-06-16 03:51:21", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58291", "8", "2017-06-16 03:51:21", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58292", "13", "2017-06-16 03:51:22", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58293", "15", "2017-06-16 03:51:22", "207.46.13.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58294", "14", "2017-06-16 04:01:38", "24.69.136.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("58295", "10", "2017-06-16 05:42:13", "66.249.79.136", "10");
INSERT INTO `wp_gf_form_view` VALUES("58296", "3", "2017-06-16 06:01:15", "51.255.65.65", "9");
INSERT INTO `wp_gf_form_view` VALUES("58297", "10", "2017-06-16 06:01:19", "51.255.65.65", "1023");
INSERT INTO `wp_gf_form_view` VALUES("58298", "14", "2017-06-16 06:45:32", "104.236.127.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("58299", "11", "2017-06-16 06:45:42", "104.236.127.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("58300", "6", "2017-06-16 06:54:07", "104.236.127.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("58301", "10", "2017-06-16 07:00:17", "104.236.127.151", "3601");
INSERT INTO `wp_gf_form_view` VALUES("58302", "3", "2017-06-16 07:02:16", "104.236.127.151", "28");
INSERT INTO `wp_gf_form_view` VALUES("58303", "9", "2017-06-16 07:05:33", "104.236.127.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("58304", "15", "2017-06-16 07:17:52", "104.236.127.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("58305", "2", "2017-06-16 07:53:22", "104.236.127.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("58306", "10", "2017-06-16 08:00:02", "104.236.127.151", "454");
INSERT INTO `wp_gf_form_view` VALUES("58307", "3", "2017-06-16 08:01:02", "104.236.127.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("58308", "13", "2017-06-16 08:06:06", "104.236.127.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("58309", "2", "2017-06-16 08:46:44", "220.181.108.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("58310", "6", "2017-06-16 09:00:12", "69.30.213.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("58311", "10", "2017-06-16 09:00:12", "69.30.213.138", "31");
INSERT INTO `wp_gf_form_view` VALUES("58312", "3", "2017-06-16 10:09:24", "51.255.65.19", "28");
INSERT INTO `wp_gf_form_view` VALUES("58313", "10", "2017-06-16 10:09:26", "51.255.65.19", "35");
INSERT INTO `wp_gf_form_view` VALUES("58314", "6", "2017-06-16 10:58:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58315", "9", "2017-06-16 10:58:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58316", "8", "2017-06-16 10:58:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58317", "13", "2017-06-16 10:58:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58318", "15", "2017-06-16 10:58:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58319", "3", "2017-06-16 11:08:01", "217.182.132.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("58320", "10", "2017-06-16 11:35:06", "66.249.79.132", "21");
INSERT INTO `wp_gf_form_view` VALUES("58321", "10", "2017-06-16 12:41:22", "51.255.65.65", "30");
INSERT INTO `wp_gf_form_view` VALUES("58322", "10", "2017-06-16 13:48:24", "157.55.39.253", "20");
INSERT INTO `wp_gf_form_view` VALUES("58323", "3", "2017-06-16 14:05:03", "220.181.108.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("58324", "10", "2017-06-16 14:05:04", "220.181.108.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("58325", "11", "2017-06-16 14:27:21", "77.75.76.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("58326", "10", "2017-06-16 15:26:40", "157.55.39.253", "10");
INSERT INTO `wp_gf_form_view` VALUES("58327", "3", "2017-06-16 16:05:55", "202.46.51.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("58328", "10", "2017-06-16 16:05:57", "202.46.51.190", "41");
INSERT INTO `wp_gf_form_view` VALUES("58329", "10", "2017-06-16 17:13:23", "202.46.55.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("58330", "10", "2017-06-16 17:13:23", "207.46.13.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("58331", "10", "2017-06-16 18:03:17", "77.75.77.119", "72");
INSERT INTO `wp_gf_form_view` VALUES("58332", "3", "2017-06-16 18:20:44", "157.55.39.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("58333", "5", "2017-06-16 19:09:17", "51.255.65.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("58334", "10", "2017-06-16 19:09:17", "51.255.65.50", "40");
INSERT INTO `wp_gf_form_view` VALUES("58335", "3", "2017-06-16 19:12:27", "164.132.162.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("58336", "14", "2017-06-16 19:40:55", "107.175.89.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("58337", "10", "2017-06-16 20:25:25", "96.54.225.248", "52");
INSERT INTO `wp_gf_form_view` VALUES("58338", "3", "2017-06-16 20:34:30", "142.104.69.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("58339", "10", "2017-06-16 21:05:32", "162.210.196.130", "51");
INSERT INTO `wp_gf_form_view` VALUES("58340", "3", "2017-06-16 21:20:28", "164.132.161.60", "3");
INSERT INTO `wp_gf_form_view` VALUES("58341", "12", "2017-06-16 21:52:31", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58342", "10", "2017-06-16 22:16:00", "207.194.133.9", "113");
INSERT INTO `wp_gf_form_view` VALUES("58343", "3", "2017-06-16 22:53:39", "146.185.223.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("58344", "10", "2017-06-16 23:56:59", "217.182.132.28", "635");
INSERT INTO `wp_gf_form_view` VALUES("58345", "3", "2017-06-16 23:57:16", "207.46.13.176", "26");
INSERT INTO `wp_gf_form_view` VALUES("58346", "9", "2017-06-16 23:57:17", "207.46.13.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("58347", "5", "2017-06-16 23:57:50", "207.46.13.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("58348", "13", "2017-06-16 23:57:56", "207.46.13.49", "2");
INSERT INTO `wp_gf_form_view` VALUES("58349", "15", "2017-06-16 23:58:11", "207.46.13.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("58350", "6", "2017-06-16 23:58:13", "207.46.13.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("58351", "8", "2017-06-16 23:58:25", "157.55.39.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("58352", "10", "2017-06-17 00:05:20", "202.46.58.99", "48");
INSERT INTO `wp_gf_form_view` VALUES("58353", "3", "2017-06-17 00:14:17", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("58354", "6", "2017-06-17 00:14:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58355", "9", "2017-06-17 00:14:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58356", "8", "2017-06-17 00:14:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58357", "13", "2017-06-17 00:14:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58358", "15", "2017-06-17 00:14:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58359", "14", "2017-06-17 00:52:30", "64.180.86.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("58360", "3", "2017-06-17 01:03:28", "66.249.79.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("58361", "10", "2017-06-17 01:03:28", "66.249.79.20", "31");
INSERT INTO `wp_gf_form_view` VALUES("58362", "3", "2017-06-17 02:19:17", "202.46.54.95", "3");
INSERT INTO `wp_gf_form_view` VALUES("58363", "10", "2017-06-17 02:19:20", "202.46.54.95", "40");
INSERT INTO `wp_gf_form_view` VALUES("58364", "10", "2017-06-17 03:12:55", "68.180.229.228", "111");
INSERT INTO `wp_gf_form_view` VALUES("58365", "3", "2017-06-17 03:20:59", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("58366", "14", "2017-06-17 03:32:01", "91.205.52.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("58367", "10", "2017-06-17 05:00:49", "24.108.13.92", "32");
INSERT INTO `wp_gf_form_view` VALUES("58368", "8", "2017-06-17 05:18:35", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("58369", "10", "2017-06-17 06:22:05", "89.144.46.17", "469");
INSERT INTO `wp_gf_form_view` VALUES("58370", "2", "2017-06-17 06:22:13", "99.192.47.207", "2");
INSERT INTO `wp_gf_form_view` VALUES("58371", "3", "2017-06-17 06:22:21", "212.69.166.17", "11");
INSERT INTO `wp_gf_form_view` VALUES("58372", "11", "2017-06-17 06:22:24", "185.15.95.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("58373", "14", "2017-06-17 06:36:49", "37.187.56.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("58374", "15", "2017-06-17 06:39:06", "37.187.56.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("58375", "10", "2017-06-17 07:03:13", "202.46.50.157", "289");
INSERT INTO `wp_gf_form_view` VALUES("58376", "3", "2017-06-17 07:58:06", "217.79.249.41", "5");
INSERT INTO `wp_gf_form_view` VALUES("58377", "14", "2017-06-17 07:58:10", "89.144.32.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("58378", "11", "2017-06-17 07:58:26", "63.223.124.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("58379", "2", "2017-06-17 07:58:49", "89.144.54.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("58380", "3", "2017-06-17 08:12:27", "202.46.58.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("58381", "10", "2017-06-17 08:12:28", "202.46.58.182", "10");
INSERT INTO `wp_gf_form_view` VALUES("58382", "10", "2017-06-17 09:08:25", "164.132.161.55", "43");
INSERT INTO `wp_gf_form_view` VALUES("58383", "3", "2017-06-17 09:39:21", "66.249.79.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("58384", "8", "2017-06-17 10:15:14", "51.255.71.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("58385", "10", "2017-06-17 10:15:16", "51.255.71.117", "30");
INSERT INTO `wp_gf_form_view` VALUES("58386", "3", "2017-06-17 10:23:43", "157.55.39.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("58387", "10", "2017-06-17 11:32:13", "68.180.229.228", "10");
INSERT INTO `wp_gf_form_view` VALUES("58388", "3", "2017-06-17 12:08:45", "51.255.71.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("58389", "10", "2017-06-17 12:08:46", "51.255.71.110", "20");
INSERT INTO `wp_gf_form_view` VALUES("58390", "10", "2017-06-17 13:06:23", "72.14.199.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("58391", "10", "2017-06-17 14:19:16", "202.46.54.180", "31");
INSERT INTO `wp_gf_form_view` VALUES("58392", "3", "2017-06-17 14:52:32", "202.46.51.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("58393", "10", "2017-06-17 15:25:26", "66.249.79.22", "31");
INSERT INTO `wp_gf_form_view` VALUES("58394", "10", "2017-06-17 16:32:40", "202.46.48.198", "10");
INSERT INTO `wp_gf_form_view` VALUES("58395", "3", "2017-06-17 17:05:55", "202.46.52.79", "9");
INSERT INTO `wp_gf_form_view` VALUES("58396", "10", "2017-06-17 17:19:59", "195.154.146.17", "20");
INSERT INTO `wp_gf_form_view` VALUES("58397", "6", "2017-06-17 18:12:34", "202.46.55.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("58398", "10", "2017-06-17 18:12:37", "202.46.55.69", "74");
INSERT INTO `wp_gf_form_view` VALUES("58399", "10", "2017-06-17 19:03:39", "204.12.228.194", "70");
INSERT INTO `wp_gf_form_view` VALUES("58400", "3", "2017-06-17 19:39:40", "51.255.65.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("58401", "10", "2017-06-17 20:59:14", "202.46.56.65", "10");
INSERT INTO `wp_gf_form_view` VALUES("58402", "8", "2017-06-17 21:26:32", "66.249.79.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("58403", "3", "2017-06-17 21:59:50", "157.55.39.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("58404", "10", "2017-06-17 21:59:51", "157.55.39.253", "10");
INSERT INTO `wp_gf_form_view` VALUES("58405", "10", "2017-06-17 22:12:13", "157.55.39.93", "20");
INSERT INTO `wp_gf_form_view` VALUES("58406", "15", "2017-06-17 23:12:56", "66.249.79.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("58407", "10", "2017-06-17 23:12:59", "66.249.79.22", "45");
INSERT INTO `wp_gf_form_view` VALUES("58408", "3", "2017-06-17 23:17:48", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("58409", "6", "2017-06-17 23:17:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58410", "9", "2017-06-17 23:17:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58411", "8", "2017-06-17 23:17:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58412", "13", "2017-06-17 23:17:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58413", "10", "2017-06-18 00:00:49", "51.255.71.122", "22");
INSERT INTO `wp_gf_form_view` VALUES("58414", "10", "2017-06-18 01:05:50", "157.55.39.149", "25");
INSERT INTO `wp_gf_form_view` VALUES("58415", "3", "2017-06-18 01:27:28", "157.55.39.188", "28");
INSERT INTO `wp_gf_form_view` VALUES("58416", "6", "2017-06-18 01:32:29", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("58417", "9", "2017-06-18 01:32:30", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("58418", "8", "2017-06-18 01:32:30", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("58419", "13", "2017-06-18 01:32:30", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("58420", "15", "2017-06-18 01:32:31", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("58421", "10", "2017-06-18 02:15:48", "164.132.161.73", "20");
INSERT INTO `wp_gf_form_view` VALUES("58422", "8", "2017-06-18 02:25:55", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("58423", "11", "2017-06-18 03:31:11", "78.48.178.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("58424", "10", "2017-06-18 03:31:21", "78.48.178.245", "90");
INSERT INTO `wp_gf_form_view` VALUES("58425", "2", "2017-06-18 03:32:17", "78.48.178.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("58426", "3", "2017-06-18 03:32:47", "78.48.178.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("58427", "6", "2017-06-18 03:59:21", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("58428", "3", "2017-06-18 04:08:59", "157.55.39.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("58429", "10", "2017-06-18 04:08:59", "157.55.39.187", "52");
INSERT INTO `wp_gf_form_view` VALUES("58430", "14", "2017-06-18 05:00:59", "96.50.16.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("58431", "10", "2017-06-18 05:08:00", "68.180.229.228", "30");
INSERT INTO `wp_gf_form_view` VALUES("58432", "3", "2017-06-18 05:19:27", "157.55.39.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("58433", "3", "2017-06-18 06:43:24", "24.69.17.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("58434", "10", "2017-06-18 06:52:56", "164.132.161.5", "11");
INSERT INTO `wp_gf_form_view` VALUES("58435", "10", "2017-06-18 07:32:11", "202.46.55.130", "10");
INSERT INTO `wp_gf_form_view` VALUES("58436", "3", "2017-06-18 07:36:50", "5.9.62.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58437", "6", "2017-06-18 07:37:29", "5.9.62.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58438", "10", "2017-06-18 08:16:22", "217.182.132.18", "40");
INSERT INTO `wp_gf_form_view` VALUES("58439", "3", "2017-06-18 09:05:49", "217.182.132.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("58440", "10", "2017-06-18 09:09:12", "68.180.229.228", "40");
INSERT INTO `wp_gf_form_view` VALUES("58441", "9", "2017-06-18 09:47:59", "202.46.53.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("58442", "10", "2017-06-18 10:09:01", "51.255.65.29", "21");
INSERT INTO `wp_gf_form_view` VALUES("58443", "2", "2017-06-18 10:33:48", "134.119.213.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("58444", "10", "2017-06-18 11:07:13", "157.55.39.93", "30");
INSERT INTO `wp_gf_form_view` VALUES("58445", "3", "2017-06-18 11:55:58", "202.46.51.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("58446", "10", "2017-06-18 12:14:45", "68.180.229.228", "21");
INSERT INTO `wp_gf_form_view` VALUES("58447", "14", "2017-06-18 13:02:41", "202.46.58.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("58448", "3", "2017-06-18 13:14:24", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("58449", "6", "2017-06-18 13:14:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58450", "9", "2017-06-18 13:14:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58451", "8", "2017-06-18 13:14:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58452", "10", "2017-06-18 13:14:40", "52.88.109.3", "35");
INSERT INTO `wp_gf_form_view` VALUES("58453", "13", "2017-06-18 13:14:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58454", "15", "2017-06-18 13:14:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58455", "10", "2017-06-18 14:06:15", "66.249.79.22", "70");
INSERT INTO `wp_gf_form_view` VALUES("58456", "3", "2017-06-18 14:15:40", "164.132.161.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("58457", "10", "2017-06-18 15:15:57", "202.46.51.186", "10");
INSERT INTO `wp_gf_form_view` VALUES("58458", "10", "2017-06-18 16:03:59", "164.132.161.75", "11");
INSERT INTO `wp_gf_form_view` VALUES("58459", "3", "2017-06-18 17:02:10", "24.114.23.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("58460", "10", "2017-06-18 17:02:11", "24.114.23.27", "72");
INSERT INTO `wp_gf_form_view` VALUES("58461", "10", "2017-06-18 18:18:24", "24.69.24.47", "25");
INSERT INTO `wp_gf_form_view` VALUES("58462", "12", "2017-06-18 18:52:02", "51.255.65.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("58463", "3", "2017-06-18 19:10:04", "217.182.132.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("58464", "10", "2017-06-18 19:10:05", "217.182.132.191", "51");
INSERT INTO `wp_gf_form_view` VALUES("58465", "14", "2017-06-18 20:01:49", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("58466", "10", "2017-06-18 20:20:28", "24.69.136.239", "31");
INSERT INTO `wp_gf_form_view` VALUES("58467", "15", "2017-06-18 21:28:09", "207.46.13.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("58468", "10", "2017-06-18 21:28:21", "207.46.13.116", "10");
INSERT INTO `wp_gf_form_view` VALUES("58469", "14", "2017-06-18 22:08:20", "24.68.36.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("58470", "10", "2017-06-18 22:39:35", "40.77.167.14", "454");
INSERT INTO `wp_gf_form_view` VALUES("58471", "3", "2017-06-18 22:39:48", "40.77.167.138", "34");
INSERT INTO `wp_gf_form_view` VALUES("58472", "8", "2017-06-18 22:39:55", "207.46.13.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("58473", "13", "2017-06-18 22:39:59", "207.46.13.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("58474", "9", "2017-06-18 22:40:26", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("58475", "10", "2017-06-18 23:11:31", "77.75.77.36", "50");
INSERT INTO `wp_gf_form_view` VALUES("58476", "3", "2017-06-18 23:18:56", "66.249.79.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("58477", "3", "2017-06-19 00:19:24", "217.182.132.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("58478", "10", "2017-06-19 00:19:26", "217.182.132.69", "10");
INSERT INTO `wp_gf_form_view` VALUES("58479", "10", "2017-06-19 01:00:28", "217.182.132.150", "50");
INSERT INTO `wp_gf_form_view` VALUES("58480", "3", "2017-06-19 01:44:26", "209.52.88.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("58481", "10", "2017-06-19 02:04:08", "40.77.167.84", "26");
INSERT INTO `wp_gf_form_view` VALUES("58482", "3", "2017-06-19 02:56:29", "51.255.65.33", "27");
INSERT INTO `wp_gf_form_view` VALUES("58483", "6", "2017-06-19 02:56:30", "51.255.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("58484", "9", "2017-06-19 02:56:30", "51.255.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("58485", "8", "2017-06-19 02:56:30", "51.255.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("58486", "13", "2017-06-19 02:56:31", "51.255.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("58487", "15", "2017-06-19 02:56:31", "51.255.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("58488", "3", "2017-06-19 04:02:29", "202.46.52.200", "4");
INSERT INTO `wp_gf_form_view` VALUES("58489", "10", "2017-06-19 04:02:31", "202.46.52.200", "103");
INSERT INTO `wp_gf_form_view` VALUES("58490", "14", "2017-06-19 04:45:51", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("58491", "11", "2017-06-19 04:45:58", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("58492", "10", "2017-06-19 05:09:15", "24.68.228.217", "20");
INSERT INTO `wp_gf_form_view` VALUES("58493", "14", "2017-06-19 06:34:26", "154.5.181.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("58494", "10", "2017-06-19 06:46:46", "51.255.203.77", "20");
INSERT INTO `wp_gf_form_view` VALUES("58495", "13", "2017-06-19 07:10:58", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58496", "10", "2017-06-19 07:10:59", "157.55.39.252", "111");
INSERT INTO `wp_gf_form_view` VALUES("58497", "3", "2017-06-19 07:11:27", "40.77.167.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("58498", "15", "2017-06-19 07:11:45", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58499", "8", "2017-06-19 07:30:12", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58500", "14", "2017-06-19 07:38:43", "5.189.170.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("58501", "3", "2017-06-19 09:02:45", "202.46.51.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("58502", "10", "2017-06-19 09:02:50", "202.46.51.177", "20");
INSERT INTO `wp_gf_form_view` VALUES("58503", "10", "2017-06-19 10:30:30", "72.14.199.116", "11");
INSERT INTO `wp_gf_form_view` VALUES("58504", "6", "2017-06-19 10:42:26", "202.46.49.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("58505", "3", "2017-06-19 11:21:50", "51.255.65.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58506", "10", "2017-06-19 11:21:58", "51.255.65.3", "52");
INSERT INTO `wp_gf_form_view` VALUES("58507", "10", "2017-06-19 12:02:50", "68.180.229.228", "45");
INSERT INTO `wp_gf_form_view` VALUES("58508", "3", "2017-06-19 12:20:45", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58509", "6", "2017-06-19 12:20:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58510", "9", "2017-06-19 12:20:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58511", "8", "2017-06-19 12:20:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58512", "13", "2017-06-19 12:20:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58513", "15", "2017-06-19 12:20:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58514", "11", "2017-06-19 13:00:54", "79.116.30.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("58515", "10", "2017-06-19 13:01:03", "77.75.77.95", "111");
INSERT INTO `wp_gf_form_view` VALUES("58516", "2", "2017-06-19 13:01:59", "79.116.30.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("58517", "3", "2017-06-19 13:02:39", "79.116.30.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("58518", "13", "2017-06-19 14:18:59", "164.132.161.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("58519", "10", "2017-06-19 14:19:01", "164.132.161.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("58520", "10", "2017-06-19 15:01:01", "202.46.50.134", "40");
INSERT INTO `wp_gf_form_view` VALUES("58521", "3", "2017-06-19 15:50:06", "157.55.39.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("58522", "10", "2017-06-19 16:07:49", "202.46.48.97", "21");
INSERT INTO `wp_gf_form_view` VALUES("58523", "10", "2017-06-19 17:14:28", "202.46.53.166", "80");
INSERT INTO `wp_gf_form_view` VALUES("58524", "3", "2017-06-19 17:19:46", "51.255.65.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58525", "10", "2017-06-19 18:01:36", "141.8.143.171", "90");
INSERT INTO `wp_gf_form_view` VALUES("58526", "3", "2017-06-19 18:25:56", "157.55.39.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("58527", "14", "2017-06-19 19:05:04", "96.54.254.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("58528", "3", "2017-06-19 19:07:03", "37.229.253.71", "7");
INSERT INTO `wp_gf_form_view` VALUES("58529", "3", "2017-06-19 19:07:03", "37.229.253.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("58530", "3", "2017-06-19 19:07:03", "37.229.253.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("58531", "10", "2017-06-19 19:07:55", "184.69.111.170", "40");
INSERT INTO `wp_gf_form_view` VALUES("58532", "13", "2017-06-19 19:11:18", "62.210.251.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("58533", "10", "2017-06-19 20:19:53", "217.182.132.83", "20");
INSERT INTO `wp_gf_form_view` VALUES("58534", "6", "2017-06-19 20:40:54", "51.255.65.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("58535", "10", "2017-06-19 21:20:51", "164.132.161.12", "90");
INSERT INTO `wp_gf_form_view` VALUES("58536", "5", "2017-06-19 21:29:18", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("58537", "3", "2017-06-19 21:31:51", "100.43.85.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("58538", "10", "2017-06-19 22:10:58", "40.77.167.14", "55");
INSERT INTO `wp_gf_form_view` VALUES("58539", "3", "2017-06-19 22:21:40", "157.55.39.252", "29");
INSERT INTO `wp_gf_form_view` VALUES("58540", "6", "2017-06-19 22:21:41", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58541", "9", "2017-06-19 22:21:42", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58542", "8", "2017-06-19 22:21:42", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58543", "13", "2017-06-19 22:21:43", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58544", "15", "2017-06-19 22:21:43", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58545", "14", "2017-06-19 22:42:25", "172.218.108.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("58546", "10", "2017-06-19 23:21:08", "202.46.57.161", "20");
INSERT INTO `wp_gf_form_view` VALUES("58547", "3", "2017-06-19 23:54:21", "202.46.49.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("58548", "10", "2017-06-20 00:10:20", "72.14.199.116", "22");
INSERT INTO `wp_gf_form_view` VALUES("58549", "7", "2017-06-20 01:01:01", "202.46.48.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("58550", "10", "2017-06-20 01:01:11", "202.46.48.196", "50");
INSERT INTO `wp_gf_form_view` VALUES("58551", "10", "2017-06-20 02:01:33", "199.59.150.183", "38");
INSERT INTO `wp_gf_form_view` VALUES("58552", "3", "2017-06-20 02:12:25", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58553", "6", "2017-06-20 02:12:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58554", "9", "2017-06-20 02:12:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58555", "8", "2017-06-20 02:12:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58556", "13", "2017-06-20 02:12:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58557", "15", "2017-06-20 02:12:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58558", "10", "2017-06-20 03:43:45", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("58559", "10", "2017-06-20 04:31:01", "164.132.162.154", "10");
INSERT INTO `wp_gf_form_view` VALUES("58560", "10", "2017-06-20 06:52:15", "68.180.229.228", "246");
INSERT INTO `wp_gf_form_view` VALUES("58561", "3", "2017-06-20 06:52:57", "46.229.168.75", "5");
INSERT INTO `wp_gf_form_view` VALUES("58562", "10", "2017-06-20 07:00:09", "46.229.168.69", "32");
INSERT INTO `wp_gf_form_view` VALUES("58563", "14", "2017-06-20 07:34:05", "181.214.4.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("58564", "10", "2017-06-20 08:59:28", "199.21.99.202", "10");
INSERT INTO `wp_gf_form_view` VALUES("58565", "13", "2017-06-20 09:08:17", "141.8.143.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("58566", "10", "2017-06-20 09:08:17", "141.8.143.171", "50");
INSERT INTO `wp_gf_form_view` VALUES("58567", "3", "2017-06-20 09:08:58", "202.46.55.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("58568", "10", "2017-06-20 10:06:29", "37.9.122.203", "71");
INSERT INTO `wp_gf_form_view` VALUES("58569", "11", "2017-06-20 10:13:11", "45.55.254.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("58570", "2", "2017-06-20 10:13:11", "45.55.254.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("58571", "3", "2017-06-20 10:13:12", "45.55.254.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("58572", "10", "2017-06-20 12:18:38", "70.65.77.74", "60");
INSERT INTO `wp_gf_form_view` VALUES("58573", "3", "2017-06-20 12:19:02", "70.65.77.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("58574", "14", "2017-06-20 12:50:00", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("58575", "10", "2017-06-20 13:37:51", "141.8.143.171", "30");
INSERT INTO `wp_gf_form_view` VALUES("58576", "3", "2017-06-20 13:58:03", "217.182.132.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("58577", "10", "2017-06-20 14:49:16", "77.75.76.160", "10");
INSERT INTO `wp_gf_form_view` VALUES("58578", "3", "2017-06-20 15:03:48", "202.46.51.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("58579", "10", "2017-06-20 15:03:49", "202.46.51.113", "31");
INSERT INTO `wp_gf_form_view` VALUES("58580", "10", "2017-06-20 16:07:23", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58581", "10", "2017-06-20 18:08:38", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58582", "10", "2017-06-20 19:06:13", "77.75.77.95", "23");
INSERT INTO `wp_gf_form_view` VALUES("58583", "3", "2017-06-20 19:37:19", "51.255.65.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("58584", "10", "2017-06-20 20:07:53", "184.66.248.195", "51");
INSERT INTO `wp_gf_form_view` VALUES("58585", "3", "2017-06-20 20:43:14", "75.155.181.187", "2");
INSERT INTO `wp_gf_form_view` VALUES("58586", "10", "2017-06-20 21:08:43", "184.66.49.231", "71");
INSERT INTO `wp_gf_form_view` VALUES("58587", "3", "2017-06-20 21:08:50", "184.66.49.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("58588", "14", "2017-06-20 21:24:58", "172.218.193.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("58589", "10", "2017-06-20 22:36:43", "202.46.57.184", "20");
INSERT INTO `wp_gf_form_view` VALUES("58590", "10", "2017-06-20 23:10:47", "24.68.20.29", "59");
INSERT INTO `wp_gf_form_view` VALUES("58591", "10", "2017-06-20 23:10:47", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58592", "10", "2017-06-20 23:10:47", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("58593", "14", "2017-06-20 23:56:23", "24.68.20.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("58594", "10", "2017-06-21 00:06:14", "157.55.39.252", "30");
INSERT INTO `wp_gf_form_view` VALUES("58595", "10", "2017-06-21 01:11:43", "202.46.58.133", "141");
INSERT INTO `wp_gf_form_view` VALUES("58596", "8", "2017-06-21 01:24:47", "66.249.79.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("58597", "11", "2017-06-21 01:55:00", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("58598", "2", "2017-06-21 01:55:04", "149.202.74.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("58599", "3", "2017-06-21 01:55:13", "51.255.71.100", "3");
INSERT INTO `wp_gf_form_view` VALUES("58600", "8", "2017-06-21 02:43:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58601", "3", "2017-06-21 02:43:51", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58602", "6", "2017-06-21 02:43:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58603", "9", "2017-06-21 02:43:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58604", "10", "2017-06-21 02:43:52", "52.88.109.3", "15");
INSERT INTO `wp_gf_form_view` VALUES("58605", "15", "2017-06-21 02:43:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58606", "10", "2017-06-21 03:22:23", "70.67.60.153", "62");
INSERT INTO `wp_gf_form_view` VALUES("58607", "3", "2017-06-21 03:24:03", "70.67.60.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("58608", "8", "2017-06-21 03:49:10", "51.255.65.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("58609", "10", "2017-06-21 04:20:40", "40.77.167.26", "30");
INSERT INTO `wp_gf_form_view` VALUES("58610", "10", "2017-06-21 05:24:53", "202.46.50.156", "20");
INSERT INTO `wp_gf_form_view` VALUES("58611", "10", "2017-06-21 06:03:12", "24.108.13.92", "43");
INSERT INTO `wp_gf_form_view` VALUES("58612", "8", "2017-06-21 06:50:24", "164.132.162.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("58613", "10", "2017-06-21 07:00:37", "141.8.143.171", "121");
INSERT INTO `wp_gf_form_view` VALUES("58614", "3", "2017-06-21 07:04:51", "202.46.54.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58615", "8", "2017-06-21 07:38:16", "202.46.52.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("58616", "10", "2017-06-21 08:09:16", "100.43.81.132", "30");
INSERT INTO `wp_gf_form_view` VALUES("58617", "3", "2017-06-21 08:24:27", "100.43.85.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("58618", "10", "2017-06-21 09:18:18", "202.46.49.207", "20");
INSERT INTO `wp_gf_form_view` VALUES("58619", "3", "2017-06-21 09:51:30", "202.46.48.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("58620", "10", "2017-06-21 10:04:37", "51.255.65.67", "20");
INSERT INTO `wp_gf_form_view` VALUES("58621", "2", "2017-06-21 10:30:08", "164.132.161.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("58622", "10", "2017-06-21 11:31:34", "202.46.58.157", "20");
INSERT INTO `wp_gf_form_view` VALUES("58623", "10", "2017-06-21 12:52:56", "202.46.51.39", "10");
INSERT INTO `wp_gf_form_view` VALUES("58624", "3", "2017-06-21 13:28:46", "195.22.127.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("58625", "10", "2017-06-21 13:28:52", "195.22.127.139", "15");
INSERT INTO `wp_gf_form_view` VALUES("58626", "10", "2017-06-21 14:39:21", "154.5.209.249", "90");
INSERT INTO `wp_gf_form_view` VALUES("58627", "2", "2017-06-21 14:47:17", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("58628", "3", "2017-06-21 14:47:57", "40.77.167.26", "4");
INSERT INTO `wp_gf_form_view` VALUES("58629", "11", "2017-06-21 14:54:19", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("58630", "10", "2017-06-21 15:00:40", "40.77.167.122", "51");
INSERT INTO `wp_gf_form_view` VALUES("58631", "3", "2017-06-21 15:39:33", "202.46.48.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("58632", "10", "2017-06-21 16:12:54", "202.46.56.185", "12");
INSERT INTO `wp_gf_form_view` VALUES("58633", "8", "2017-06-21 16:27:43", "66.249.79.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("58634", "3", "2017-06-21 17:08:23", "207.46.13.129", "29");
INSERT INTO `wp_gf_form_view` VALUES("58635", "10", "2017-06-21 17:08:33", "207.46.13.129", "78");
INSERT INTO `wp_gf_form_view` VALUES("58636", "8", "2017-06-21 17:16:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58637", "6", "2017-06-21 17:16:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58638", "9", "2017-06-21 17:16:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58639", "15", "2017-06-21 17:16:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58640", "10", "2017-06-21 18:05:29", "202.46.51.200", "61");
INSERT INTO `wp_gf_form_view` VALUES("58641", "11", "2017-06-21 18:20:59", "5.255.250.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("58642", "3", "2017-06-21 18:38:49", "202.46.51.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("58643", "6", "2017-06-21 19:12:16", "202.46.53.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("58644", "10", "2017-06-21 19:12:22", "202.46.53.156", "10");
INSERT INTO `wp_gf_form_view` VALUES("58645", "3", "2017-06-21 19:55:11", "66.249.79.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("58646", "10", "2017-06-21 20:14:40", "24.108.220.81", "539");
INSERT INTO `wp_gf_form_view` VALUES("58647", "10", "2017-06-21 20:14:40", "24.108.220.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58648", "3", "2017-06-21 20:24:35", "40.77.167.26", "21");
INSERT INTO `wp_gf_form_view` VALUES("58649", "9", "2017-06-21 20:25:10", "40.77.167.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("58650", "8", "2017-06-21 20:25:25", "40.77.167.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58651", "10", "2017-06-21 21:16:49", "202.46.53.140", "42");
INSERT INTO `wp_gf_form_view` VALUES("58652", "3", "2017-06-21 21:18:58", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("58653", "10", "2017-06-21 22:22:02", "184.66.248.195", "22");
INSERT INTO `wp_gf_form_view` VALUES("58654", "5", "2017-06-21 22:52:17", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("58655", "10", "2017-06-21 23:09:56", "40.77.167.26", "131");
INSERT INTO `wp_gf_form_view` VALUES("58656", "3", "2017-06-21 23:15:45", "40.77.167.26", "7");
INSERT INTO `wp_gf_form_view` VALUES("58657", "11", "2017-06-21 23:22:32", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("58658", "2", "2017-06-21 23:49:02", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("58659", "3", "2017-06-22 00:05:10", "40.77.167.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("58660", "10", "2017-06-22 00:14:19", "40.77.167.122", "30");
INSERT INTO `wp_gf_form_view` VALUES("58661", "10", "2017-06-22 01:06:14", "77.75.79.119", "20");
INSERT INTO `wp_gf_form_view` VALUES("58662", "10", "2017-06-22 02:27:40", "184.66.37.77", "112");
INSERT INTO `wp_gf_form_view` VALUES("58663", "2", "2017-06-22 02:35:18", "54.149.84.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("58664", "8", "2017-06-22 02:47:27", "141.8.143.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("58665", "10", "2017-06-22 03:10:44", "24.108.13.92", "11");
INSERT INTO `wp_gf_form_view` VALUES("58666", "3", "2017-06-22 05:17:45", "202.46.54.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("58667", "10", "2017-06-22 05:17:47", "202.46.54.109", "20");
INSERT INTO `wp_gf_form_view` VALUES("58668", "10", "2017-06-22 06:36:19", "96.50.5.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("58669", "10", "2017-06-22 07:11:53", "77.75.79.62", "20");
INSERT INTO `wp_gf_form_view` VALUES("58670", "11", "2017-06-22 07:46:08", "174.129.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("58671", "3", "2017-06-22 07:47:01", "174.129.133.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("58672", "3", "2017-06-22 08:03:23", "164.132.161.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("58673", "10", "2017-06-22 09:07:37", "72.14.199.118", "19");
INSERT INTO `wp_gf_form_view` VALUES("58674", "3", "2017-06-22 09:15:39", "68.180.229.228", "9");
INSERT INTO `wp_gf_form_view` VALUES("58675", "3", "2017-06-22 10:44:18", "141.8.143.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("58676", "10", "2017-06-22 10:44:45", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("58677", "3", "2017-06-22 11:06:06", "199.21.99.202", "59");
INSERT INTO `wp_gf_form_view` VALUES("58678", "8", "2017-06-22 11:29:09", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58679", "8", "2017-06-22 11:29:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58680", "6", "2017-06-22 11:29:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58681", "6", "2017-06-22 11:29:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58682", "9", "2017-06-22 11:29:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58683", "9", "2017-06-22 11:29:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58684", "10", "2017-06-22 11:29:14", "52.88.109.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("58685", "10", "2017-06-22 11:29:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58686", "15", "2017-06-22 11:29:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58687", "15", "2017-06-22 11:29:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58688", "11", "2017-06-22 11:43:05", "77.161.235.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("58689", "2", "2017-06-22 11:43:39", "77.161.235.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("58690", "15", "2017-06-22 12:51:34", "202.46.54.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("58691", "3", "2017-06-22 12:57:08", "164.132.161.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("58692", "5", "2017-06-22 13:24:55", "202.46.57.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("58693", "11", "2017-06-22 14:17:13", "51.255.65.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("58694", "3", "2017-06-22 14:23:54", "40.77.167.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58695", "8", "2017-06-22 15:05:08", "202.46.55.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("58696", "10", "2017-06-22 15:28:15", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("58697", "3", "2017-06-22 15:55:27", "96.54.240.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("58698", "14", "2017-06-22 15:56:36", "96.54.240.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("58699", "3", "2017-06-22 17:55:25", "51.255.65.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("58700", "3", "2017-06-22 18:11:58", "77.66.1.97", "30");
INSERT INTO `wp_gf_form_view` VALUES("58701", "8", "2017-06-22 18:19:10", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58702", "6", "2017-06-22 18:19:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58703", "9", "2017-06-22 18:19:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58704", "10", "2017-06-22 18:19:11", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("58705", "15", "2017-06-22 18:19:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58706", "10", "2017-06-22 19:18:27", "142.31.10.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("58707", "9", "2017-06-22 20:04:54", "202.46.56.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("58708", "10", "2017-06-22 20:08:45", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("58709", "10", "2017-06-22 21:18:58", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58710", "3", "2017-06-22 21:30:28", "207.46.13.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("58711", "3", "2017-06-22 22:03:27", "77.75.79.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("58712", "10", "2017-06-22 22:34:33", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("58713", "10", "2017-06-22 23:16:00", "77.75.78.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("58714", "14", "2017-06-22 23:40:51", "45.61.46.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("58715", "3", "2017-06-23 00:07:52", "137.74.207.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("58716", "14", "2017-06-23 00:16:32", "66.249.79.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("58717", "10", "2017-06-23 00:31:48", "66.249.79.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("58718", "3", "2017-06-23 02:13:54", "66.249.79.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("58719", "10", "2017-06-23 02:32:19", "202.46.54.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("58720", "15", "2017-06-23 03:05:40", "202.46.55.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("58721", "3", "2017-06-23 03:07:33", "51.255.65.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("58722", "10", "2017-06-23 03:10:23", "157.55.39.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("58723", "11", "2017-06-23 06:16:26", "100.43.85.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("58724", "10", "2017-06-23 06:29:43", "199.21.99.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("58725", "3", "2017-06-23 06:54:16", "40.77.167.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58726", "3", "2017-06-23 07:41:02", "66.249.79.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("58727", "10", "2017-06-23 07:41:03", "66.249.79.22", "5");
INSERT INTO `wp_gf_form_view` VALUES("58728", "8", "2017-06-23 08:31:13", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58729", "3", "2017-06-23 08:31:14", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58730", "6", "2017-06-23 08:31:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58731", "9", "2017-06-23 08:31:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58732", "10", "2017-06-23 08:31:15", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("58733", "15", "2017-06-23 08:31:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58734", "10", "2017-06-23 09:00:52", "40.77.167.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("58735", "3", "2017-06-23 09:20:48", "40.77.167.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("58736", "3", "2017-06-23 12:07:30", "51.255.65.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("58737", "3", "2017-06-23 13:34:26", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("58738", "10", "2017-06-23 13:58:25", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("58739", "10", "2017-06-23 14:01:34", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("58740", "3", "2017-06-23 15:31:19", "202.46.55.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("58741", "3", "2017-06-23 17:11:43", "202.46.52.100", "3");
INSERT INTO `wp_gf_form_view` VALUES("58742", "10", "2017-06-23 18:12:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58743", "8", "2017-06-23 18:15:06", "77.75.78.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("58744", "3", "2017-06-23 18:51:27", "202.46.48.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("58745", "10", "2017-06-23 19:12:23", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58746", "6", "2017-06-23 19:24:36", "202.46.57.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("58747", "3", "2017-06-23 19:44:05", "66.249.79.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("58748", "8", "2017-06-23 20:11:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58749", "3", "2017-06-23 20:11:38", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("58750", "6", "2017-06-23 20:11:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58751", "9", "2017-06-23 20:11:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58752", "10", "2017-06-23 20:11:39", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("58753", "15", "2017-06-23 20:11:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58754", "3", "2017-06-23 21:10:45", "40.77.167.112", "25");
INSERT INTO `wp_gf_form_view` VALUES("58755", "10", "2017-06-23 21:10:50", "40.77.167.112", "11");
INSERT INTO `wp_gf_form_view` VALUES("58756", "9", "2017-06-23 21:11:12", "157.55.39.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("58757", "15", "2017-06-23 21:11:23", "40.77.167.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("58758", "6", "2017-06-23 21:11:28", "40.77.167.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("58759", "5", "2017-06-23 21:11:29", "40.77.167.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("58760", "8", "2017-06-23 21:12:54", "40.77.167.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58761", "11", "2017-06-23 22:21:11", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58762", "3", "2017-06-23 22:24:25", "66.249.79.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("58763", "3", "2017-06-23 23:55:02", "66.249.79.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("58764", "10", "2017-06-23 23:56:07", "40.77.167.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("58765", "10", "2017-06-24 00:06:43", "72.14.199.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("58766", "3", "2017-06-24 00:10:19", "164.132.161.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("58767", "10", "2017-06-24 01:22:29", "68.180.229.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("58768", "3", "2017-06-24 01:49:56", "202.46.51.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("58769", "3", "2017-06-24 02:18:49", "192.99.66.150", "56");
INSERT INTO `wp_gf_form_view` VALUES("58770", "10", "2017-06-24 02:19:05", "192.99.66.150", "12");
INSERT INTO `wp_gf_form_view` VALUES("58771", "14", "2017-06-24 02:19:29", "192.99.66.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("58772", "8", "2017-06-24 02:38:08", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58773", "8", "2017-06-24 02:38:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58774", "6", "2017-06-24 02:38:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58775", "6", "2017-06-24 02:38:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58776", "9", "2017-06-24 02:38:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58777", "9", "2017-06-24 02:38:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58778", "15", "2017-06-24 02:38:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58779", "15", "2017-06-24 02:38:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58780", "10", "2017-06-24 03:20:41", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("58781", "3", "2017-06-24 03:37:33", "202.46.52.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("58782", "3", "2017-06-24 05:59:40", "202.46.57.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("58783", "10", "2017-06-24 07:49:50", "77.75.76.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("58784", "10", "2017-06-24 08:51:41", "66.249.79.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("58785", "8", "2017-06-24 09:03:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58786", "3", "2017-06-24 09:03:40", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58787", "6", "2017-06-24 09:03:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58788", "9", "2017-06-24 09:03:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58789", "10", "2017-06-24 09:03:41", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("58790", "15", "2017-06-24 09:03:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58791", "10", "2017-06-24 10:07:26", "40.77.167.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("58792", "3", "2017-06-24 10:13:33", "202.46.57.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("58793", "3", "2017-06-24 11:16:16", "202.46.56.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("58794", "10", "2017-06-24 11:30:46", "66.249.79.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("58795", "8", "2017-06-24 11:34:03", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58796", "8", "2017-06-24 12:12:43", "51.255.65.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("58797", "3", "2017-06-24 13:07:44", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58798", "10", "2017-06-24 13:29:32", "202.46.54.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("58799", "14", "2017-06-24 14:19:41", "77.75.79.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("58800", "15", "2017-06-24 14:28:26", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58801", "3", "2017-06-24 14:34:19", "40.77.167.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("58802", "9", "2017-06-24 15:10:12", "40.77.167.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("58803", "10", "2017-06-24 15:13:50", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("58804", "14", "2017-06-24 15:24:35", "23.94.158.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("58805", "3", "2017-06-24 15:24:37", "23.94.158.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("58806", "3", "2017-06-24 16:23:02", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58807", "3", "2017-06-24 17:23:56", "208.43.225.85", "6");
INSERT INTO `wp_gf_form_view` VALUES("58808", "10", "2017-06-24 17:24:07", "208.43.225.85", "7");
INSERT INTO `wp_gf_form_view` VALUES("58809", "8", "2017-06-24 17:24:37", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("58810", "15", "2017-06-24 17:25:19", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("58811", "11", "2017-06-24 17:25:23", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("58812", "10", "2017-06-24 18:32:34", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58813", "3", "2017-06-24 18:32:34", "40.77.167.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("58814", "11", "2017-06-24 19:16:58", "142.104.35.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("58815", "11", "2017-06-24 19:16:58", "142.104.35.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("58816", "3", "2017-06-24 19:56:56", "51.255.65.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("58817", "3", "2017-06-24 20:07:43", "217.182.132.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("58818", "3", "2017-06-24 21:37:12", "66.249.79.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("58819", "14", "2017-06-24 21:59:07", "158.69.225.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("58820", "3", "2017-06-24 22:04:22", "157.55.39.81", "14");
INSERT INTO `wp_gf_form_view` VALUES("58821", "10", "2017-06-24 22:04:31", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58822", "8", "2017-06-24 22:04:34", "157.55.39.81", "3");
INSERT INTO `wp_gf_form_view` VALUES("58823", "8", "2017-06-24 23:35:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58824", "3", "2017-06-24 23:35:44", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58825", "6", "2017-06-24 23:35:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58826", "9", "2017-06-24 23:35:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58827", "10", "2017-06-24 23:35:47", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("58828", "15", "2017-06-24 23:35:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58829", "8", "2017-06-25 00:20:45", "51.255.65.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("58830", "3", "2017-06-25 00:33:15", "141.8.143.171", "5");
INSERT INTO `wp_gf_form_view` VALUES("58831", "10", "2017-06-25 00:37:14", "218.107.10.236", "7");
INSERT INTO `wp_gf_form_view` VALUES("58832", "5", "2017-06-25 00:39:42", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("58833", "14", "2017-06-25 00:39:57", "218.107.10.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("58834", "3", "2017-06-25 01:03:29", "157.55.39.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("58835", "3", "2017-06-25 03:07:31", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("58836", "14", "2017-06-25 03:32:41", "154.16.89.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("58837", "10", "2017-06-25 04:34:40", "217.182.132.27", "2");
INSERT INTO `wp_gf_form_view` VALUES("58838", "3", "2017-06-25 04:50:06", "37.229.253.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("58839", "3", "2017-06-25 05:27:46", "40.77.167.26", "4");
INSERT INTO `wp_gf_form_view` VALUES("58840", "10", "2017-06-25 05:30:44", "72.14.199.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("58841", "3", "2017-06-25 06:45:55", "141.8.143.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("58842", "10", "2017-06-25 07:35:46", "40.77.167.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58843", "10", "2017-06-25 08:01:51", "202.46.57.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("58844", "3", "2017-06-25 08:19:31", "164.132.161.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("58845", "5", "2017-06-25 08:51:33", "217.182.132.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("58846", "3", "2017-06-25 09:08:33", "202.46.50.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("58847", "10", "2017-06-25 10:28:59", "51.255.65.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("58848", "3", "2017-06-25 10:34:02", "51.255.65.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("58849", "3", "2017-06-25 11:01:37", "46.229.168.72", "43");
INSERT INTO `wp_gf_form_view` VALUES("58850", "10", "2017-06-25 11:03:53", "46.229.168.68", "21");
INSERT INTO `wp_gf_form_view` VALUES("58851", "11", "2017-06-25 11:06:04", "46.229.168.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("58852", "14", "2017-06-25 11:09:05", "46.229.168.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("58853", "8", "2017-06-25 11:12:08", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("58854", "6", "2017-06-25 11:12:21", "46.229.168.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("58855", "9", "2017-06-25 11:33:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58856", "15", "2017-06-25 11:33:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58857", "3", "2017-06-25 12:11:15", "157.55.39.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58858", "10", "2017-06-25 12:19:29", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58859", "3", "2017-06-25 13:14:38", "202.46.58.83", "4");
INSERT INTO `wp_gf_form_view` VALUES("58860", "10", "2017-06-25 13:43:16", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("58861", "6", "2017-06-25 14:20:53", "202.46.50.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("58862", "3", "2017-06-25 15:03:47", "40.77.167.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("58863", "14", "2017-06-25 15:22:08", "184.66.240.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("58864", "11", "2017-06-25 15:27:38", "202.46.53.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("58865", "14", "2017-06-25 16:39:06", "154.16.89.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("58866", "8", "2017-06-25 17:26:19", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("58867", "3", "2017-06-25 17:26:21", "52.88.109.3", "82");
INSERT INTO `wp_gf_form_view` VALUES("58868", "6", "2017-06-25 17:26:22", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58869", "9", "2017-06-25 17:26:22", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58870", "10", "2017-06-25 17:26:23", "52.88.109.3", "15");
INSERT INTO `wp_gf_form_view` VALUES("58871", "15", "2017-06-25 17:26:24", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58872", "10", "2017-06-25 18:47:28", "72.14.199.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("58873", "3", "2017-06-25 19:14:35", "164.132.161.5", "4");
INSERT INTO `wp_gf_form_view` VALUES("58874", "3", "2017-06-25 20:11:45", "96.50.105.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("58875", "10", "2017-06-25 21:30:41", "199.21.99.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("58876", "3", "2017-06-25 21:36:14", "164.132.161.26", "4");
INSERT INTO `wp_gf_form_view` VALUES("58877", "11", "2017-06-25 21:40:11", "141.8.143.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("58878", "7", "2017-06-25 21:41:12", "141.8.143.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("58879", "6", "2017-06-25 21:43:45", "141.8.143.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("58880", "3", "2017-06-25 22:12:38", "217.182.132.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("58881", "10", "2017-06-25 22:33:00", "217.182.132.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("58882", "10", "2017-06-25 23:48:46", "24.108.200.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("58883", "10", "2017-06-26 00:05:04", "24.108.200.151", "6");
INSERT INTO `wp_gf_form_view` VALUES("58884", "8", "2017-06-26 00:48:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58885", "3", "2017-06-26 00:48:30", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58886", "6", "2017-06-26 00:48:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58887", "9", "2017-06-26 00:48:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58888", "15", "2017-06-26 00:48:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58889", "10", "2017-06-26 01:14:50", "51.255.71.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("58890", "3", "2017-06-26 04:09:28", "164.132.161.10", "6");
INSERT INTO `wp_gf_form_view` VALUES("58891", "10", "2017-06-26 05:30:34", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("58892", "10", "2017-06-26 08:15:04", "72.14.199.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("58893", "3", "2017-06-26 09:29:36", "66.249.79.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("58894", "14", "2017-06-26 10:01:05", "154.16.89.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("58895", "3", "2017-06-26 10:11:55", "202.46.49.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("58896", "10", "2017-06-26 10:40:42", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("58897", "10", "2017-06-26 11:55:46", "68.180.229.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("58898", "3", "2017-06-26 14:22:57", "207.46.13.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("58899", "8", "2017-06-26 14:32:14", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("58900", "3", "2017-06-26 15:05:55", "164.132.162.154", "29");
INSERT INTO `wp_gf_form_view` VALUES("58901", "10", "2017-06-26 15:12:13", "68.180.229.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("58902", "8", "2017-06-26 15:32:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58903", "6", "2017-06-26 15:32:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58904", "9", "2017-06-26 15:32:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58905", "15", "2017-06-26 15:32:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58906", "10", "2017-06-26 16:00:11", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58907", "10", "2017-06-26 17:01:06", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58908", "10", "2017-06-26 18:04:12", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("58909", "3", "2017-06-26 20:45:11", "202.46.50.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("58910", "10", "2017-06-26 21:00:41", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58911", "3", "2017-06-26 21:44:21", "157.55.39.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("58912", "10", "2017-06-26 22:03:26", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("58913", "3", "2017-06-26 22:31:25", "207.46.13.129", "3");
INSERT INTO `wp_gf_form_view` VALUES("58914", "14", "2017-06-26 22:50:31", "195.154.252.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("58915", "10", "2017-06-26 23:07:53", "70.66.168.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("58916", "6", "2017-06-27 00:11:13", "207.46.13.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("58917", "15", "2017-06-27 00:11:24", "207.46.13.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("58918", "3", "2017-06-27 00:11:27", "207.46.13.129", "17");
INSERT INTO `wp_gf_form_view` VALUES("58919", "10", "2017-06-27 00:11:28", "207.46.13.129", "8");
INSERT INTO `wp_gf_form_view` VALUES("58920", "9", "2017-06-27 00:11:29", "157.55.39.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("58921", "5", "2017-06-27 00:11:30", "207.46.13.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("58922", "10", "2017-06-27 01:20:54", "40.77.167.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58923", "8", "2017-06-27 01:48:02", "173.212.229.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("58924", "10", "2017-06-27 06:53:24", "77.75.76.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("58925", "3", "2017-06-27 07:20:20", "202.46.55.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("58926", "10", "2017-06-27 07:34:03", "199.21.99.202", "8");
INSERT INTO `wp_gf_form_view` VALUES("58927", "15", "2017-06-27 07:34:21", "141.8.143.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("58928", "6", "2017-06-27 07:38:36", "100.43.85.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("58929", "9", "2017-06-27 09:10:50", "202.46.55.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("58930", "3", "2017-06-27 09:44:10", "202.46.58.17", "28");
INSERT INTO `wp_gf_form_view` VALUES("58931", "8", "2017-06-27 09:54:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58932", "6", "2017-06-27 09:54:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58933", "10", "2017-06-27 09:54:56", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("58934", "15", "2017-06-27 09:54:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58935", "10", "2017-06-27 10:05:05", "40.77.167.26", "13");
INSERT INTO `wp_gf_form_view` VALUES("58936", "8", "2017-06-27 10:12:27", "213.202.242.25", "6");
INSERT INTO `wp_gf_form_view` VALUES("58937", "3", "2017-06-27 10:13:55", "213.202.242.25", "57");
INSERT INTO `wp_gf_form_view` VALUES("58938", "6", "2017-06-27 10:28:46", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58939", "9", "2017-06-27 10:28:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58940", "15", "2017-06-27 10:28:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58941", "5", "2017-06-27 10:55:51", "77.75.76.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("58942", "8", "2017-06-27 11:02:28", "66.249.79.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("58943", "3", "2017-06-27 12:54:59", "51.255.65.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("58944", "10", "2017-06-27 13:36:10", "72.14.199.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("58945", "3", "2017-06-27 15:52:01", "24.68.124.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("58946", "10", "2017-06-27 16:10:54", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("58947", "3", "2017-06-27 16:14:03", "199.21.99.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("58948", "10", "2017-06-27 17:11:03", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("58949", "3", "2017-06-27 17:18:43", "66.249.79.22", "28");
INSERT INTO `wp_gf_form_view` VALUES("58950", "8", "2017-06-27 17:31:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("58951", "6", "2017-06-27 17:31:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58952", "9", "2017-06-27 17:31:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58953", "15", "2017-06-27 17:31:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58954", "3", "2017-06-27 18:12:15", "184.71.26.18", "4");
INSERT INTO `wp_gf_form_view` VALUES("58955", "10", "2017-06-27 18:17:19", "184.71.26.18", "3");
INSERT INTO `wp_gf_form_view` VALUES("58956", "8", "2017-06-27 18:26:38", "50.62.143.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("58957", "10", "2017-06-27 21:49:07", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("58958", "10", "2017-06-27 22:19:08", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58959", "3", "2017-06-27 22:41:42", "70.66.42.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("58960", "3", "2017-06-27 23:46:15", "96.50.5.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("58961", "8", "2017-06-27 23:46:33", "96.50.5.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("58962", "5", "2017-06-27 23:59:44", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("58963", "8", "2017-06-28 00:00:51", "61.135.221.56", "6");
INSERT INTO `wp_gf_form_view` VALUES("58964", "3", "2017-06-28 00:09:16", "202.46.55.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("58965", "10", "2017-06-28 00:42:25", "202.46.55.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("58966", "3", "2017-06-28 01:16:18", "202.46.49.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("58967", "8", "2017-06-28 02:01:15", "66.249.69.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("58968", "10", "2017-06-28 02:22:06", "66.249.91.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("58969", "8", "2017-06-28 03:05:34", "66.249.69.87", "3");
INSERT INTO `wp_gf_form_view` VALUES("58970", "10", "2017-06-28 03:25:28", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("58971", "11", "2017-06-28 03:29:06", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("58972", "3", "2017-06-28 04:08:38", "207.46.13.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("58973", "8", "2017-06-28 04:13:40", "66.249.69.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("58974", "7", "2017-06-28 04:29:32", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("58975", "10", "2017-06-28 07:49:41", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("58976", "14", "2017-06-28 08:15:22", "5.157.40.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("58977", "8", "2017-06-28 08:31:52", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("58978", "3", "2017-06-28 08:31:52", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("58979", "6", "2017-06-28 08:31:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58980", "9", "2017-06-28 08:31:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58981", "10", "2017-06-28 08:31:55", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("58982", "15", "2017-06-28 08:31:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("58983", "3", "2017-06-28 09:05:45", "157.55.39.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("58984", "10", "2017-06-28 10:47:00", "220.181.108.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("58985", "3", "2017-06-28 12:26:33", "40.77.167.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("58986", "3", "2017-06-28 13:30:22", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("58987", "10", "2017-06-28 14:06:44", "77.75.78.165", "10");
INSERT INTO `wp_gf_form_view` VALUES("58988", "8", "2017-06-28 14:08:27", "74.208.87.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("58989", "5", "2017-06-28 14:14:52", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("58990", "3", "2017-06-28 14:15:09", "74.208.87.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("58991", "6", "2017-06-28 14:29:39", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("58992", "10", "2017-06-28 15:21:57", "72.14.199.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("58993", "14", "2017-06-28 16:08:49", "23.80.164.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("58994", "10", "2017-06-28 16:15:34", "207.194.130.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("58995", "3", "2017-06-28 16:24:57", "77.75.78.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("58996", "3", "2017-06-28 17:07:47", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("58997", "10", "2017-06-28 17:17:41", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("58998", "14", "2017-06-28 17:51:02", "154.20.29.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("58999", "8", "2017-06-28 18:05:53", "202.46.52.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("59000", "10", "2017-06-28 18:18:23", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59001", "8", "2017-06-28 19:01:08", "157.55.39.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("59002", "10", "2017-06-28 19:24:14", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59003", "3", "2017-06-28 19:44:31", "40.77.167.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("59004", "10", "2017-06-28 20:02:41", "184.66.248.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("59005", "8", "2017-06-28 20:11:39", "184.65.200.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("59006", "3", "2017-06-28 20:24:10", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("59007", "10", "2017-06-28 21:02:58", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("59008", "8", "2017-06-28 21:15:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59009", "3", "2017-06-28 21:15:40", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59010", "6", "2017-06-28 21:15:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59011", "9", "2017-06-28 21:15:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59012", "15", "2017-06-28 21:15:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59013", "10", "2017-06-28 22:02:26", "40.77.167.128", "3");
INSERT INTO `wp_gf_form_view` VALUES("59014", "15", "2017-06-28 22:19:33", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("59015", "5", "2017-06-28 22:58:52", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("59016", "10", "2017-06-28 23:03:31", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59017", "3", "2017-06-29 00:01:51", "202.46.55.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("59018", "10", "2017-06-29 00:03:32", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59019", "10", "2017-06-29 01:03:52", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59020", "10", "2017-06-29 02:04:13", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59021", "10", "2017-06-29 03:04:13", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("59022", "8", "2017-06-29 03:29:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59023", "3", "2017-06-29 03:29:45", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59024", "6", "2017-06-29 03:29:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59025", "9", "2017-06-29 03:29:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59026", "15", "2017-06-29 03:29:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59027", "8", "2017-06-29 04:03:30", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("59028", "3", "2017-06-29 04:03:31", "52.88.109.3", "53");
INSERT INTO `wp_gf_form_view` VALUES("59029", "3", "2017-06-29 04:03:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59030", "6", "2017-06-29 04:03:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59031", "9", "2017-06-29 04:03:34", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59032", "10", "2017-06-29 04:03:36", "52.88.109.3", "11");
INSERT INTO `wp_gf_form_view` VALUES("59033", "10", "2017-06-29 04:03:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59034", "15", "2017-06-29 04:03:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59035", "15", "2017-06-29 04:03:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59036", "10", "2017-06-29 05:04:14", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59037", "10", "2017-06-29 06:04:14", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59038", "10", "2017-06-29 07:04:14", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59039", "8", "2017-06-29 07:05:16", "70.67.60.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("59040", "10", "2017-06-29 08:04:18", "184.66.248.195", "108");
INSERT INTO `wp_gf_form_view` VALUES("59041", "3", "2017-06-29 08:33:46", "148.251.187.239", "63");
INSERT INTO `wp_gf_form_view` VALUES("59042", "10", "2017-06-29 09:04:14", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("59043", "8", "2017-06-29 09:38:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59044", "3", "2017-06-29 09:38:08", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59045", "6", "2017-06-29 09:38:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59046", "9", "2017-06-29 09:38:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59047", "15", "2017-06-29 09:38:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59048", "10", "2017-06-29 10:04:15", "184.66.248.195", "107");
INSERT INTO `wp_gf_form_view` VALUES("59049", "3", "2017-06-29 10:19:49", "157.55.39.217", "64");
INSERT INTO `wp_gf_form_view` VALUES("59050", "14", "2017-06-29 10:31:25", "192.69.90.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("59051", "8", "2017-06-29 10:51:42", "137.74.207.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("59052", "10", "2017-06-29 11:04:15", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("59053", "8", "2017-06-29 11:10:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59054", "3", "2017-06-29 11:10:39", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("59055", "6", "2017-06-29 11:10:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59056", "9", "2017-06-29 11:10:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59057", "15", "2017-06-29 11:10:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59058", "10", "2017-06-29 12:04:15", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59059", "14", "2017-06-29 12:40:51", "107.175.78.62", "5");
INSERT INTO `wp_gf_form_view` VALUES("59060", "3", "2017-06-29 12:40:55", "107.175.78.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("59061", "10", "2017-06-29 13:04:15", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59062", "8", "2017-06-29 13:22:19", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59063", "15", "2017-06-29 14:03:09", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59064", "10", "2017-06-29 14:04:15", "184.66.248.195", "107");
INSERT INTO `wp_gf_form_view` VALUES("59065", "3", "2017-06-29 14:10:22", "137.74.207.109", "64");
INSERT INTO `wp_gf_form_view` VALUES("59066", "10", "2017-06-29 15:02:13", "157.55.39.217", "3");
INSERT INTO `wp_gf_form_view` VALUES("59067", "3", "2017-06-29 15:06:14", "202.46.53.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("59068", "10", "2017-06-29 16:04:16", "184.66.248.195", "108");
INSERT INTO `wp_gf_form_view` VALUES("59069", "3", "2017-06-29 16:11:14", "78.110.50.110", "63");
INSERT INTO `wp_gf_form_view` VALUES("59070", "10", "2017-06-29 17:04:16", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("59071", "3", "2017-06-29 17:15:58", "51.255.71.132", "37");
INSERT INTO `wp_gf_form_view` VALUES("59072", "8", "2017-06-29 17:30:41", "40.77.167.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("59073", "6", "2017-06-29 17:30:41", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59074", "9", "2017-06-29 17:30:42", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59075", "15", "2017-06-29 17:30:46", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59076", "10", "2017-06-29 18:04:18", "184.66.248.195", "107");
INSERT INTO `wp_gf_form_view` VALUES("59077", "3", "2017-06-29 18:08:13", "194.187.170.147", "64");
INSERT INTO `wp_gf_form_view` VALUES("59078", "10", "2017-06-29 19:04:36", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59079", "3", "2017-06-29 19:07:21", "66.249.79.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("59080", "8", "2017-06-29 19:18:20", "77.75.78.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("59081", "10", "2017-06-29 20:04:57", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59082", "10", "2017-06-29 21:05:16", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59083", "3", "2017-06-29 22:04:33", "31.28.24.113", "64");
INSERT INTO `wp_gf_form_view` VALUES("59084", "10", "2017-06-29 22:04:33", "31.28.24.113", "108");
INSERT INTO `wp_gf_form_view` VALUES("59085", "10", "2017-06-29 23:06:00", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("59086", "3", "2017-06-29 23:20:43", "77.75.76.165", "2");
INSERT INTO `wp_gf_form_view` VALUES("59087", "12", "2017-06-30 00:50:47", "40.77.167.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("59088", "11", "2017-06-30 01:13:44", "220.181.108.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("59089", "3", "2017-06-30 01:26:20", "67.227.198.100", "57");
INSERT INTO `wp_gf_form_view` VALUES("59090", "10", "2017-06-30 01:26:21", "67.227.198.100", "95");
INSERT INTO `wp_gf_form_view` VALUES("59091", "3", "2017-06-30 02:29:58", "180.76.15.136", "28");
INSERT INTO `wp_gf_form_view` VALUES("59092", "14", "2017-06-30 02:35:40", "99.199.1.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("59093", "8", "2017-06-30 02:42:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59094", "6", "2017-06-30 02:42:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59095", "9", "2017-06-30 02:43:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59096", "10", "2017-06-30 02:43:05", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59097", "15", "2017-06-30 02:43:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59098", "3", "2017-06-30 04:24:03", "5.189.149.117", "6");
INSERT INTO `wp_gf_form_view` VALUES("59099", "10", "2017-06-30 04:24:04", "5.189.149.117", "10");
INSERT INTO `wp_gf_form_view` VALUES("59100", "10", "2017-06-30 05:05:15", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59101", "14", "2017-06-30 05:47:19", "24.69.149.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("59102", "3", "2017-06-30 05:47:32", "164.132.162.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("59103", "8", "2017-06-30 05:48:38", "154.5.205.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("59104", "3", "2017-06-30 06:27:22", "40.77.167.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("59105", "10", "2017-06-30 06:39:14", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("59106", "10", "2017-06-30 07:09:14", "184.66.248.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("59107", "8", "2017-06-30 07:15:33", "217.182.132.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("59108", "3", "2017-06-30 07:25:47", "69.89.31.109", "23");
INSERT INTO `wp_gf_form_view` VALUES("59109", "10", "2017-06-30 09:13:36", "72.14.199.117", "106");
INSERT INTO `wp_gf_form_view` VALUES("59110", "3", "2017-06-30 09:25:32", "74.220.202.45", "64");
INSERT INTO `wp_gf_form_view` VALUES("59111", "8", "2017-06-30 10:35:20", "180.76.15.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59112", "10", "2017-06-30 10:52:22", "138.197.77.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("59113", "3", "2017-06-30 11:03:42", "50.63.25.22", "4");
INSERT INTO `wp_gf_form_view` VALUES("59114", "8", "2017-06-30 11:04:00", "50.63.25.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("59115", "14", "2017-06-30 11:04:14", "50.63.25.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("59116", "10", "2017-06-30 11:04:35", "50.63.25.22", "4");
INSERT INTO `wp_gf_form_view` VALUES("59117", "3", "2017-06-30 12:04:24", "66.249.79.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("59118", "15", "2017-06-30 13:26:23", "51.255.71.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("59119", "10", "2017-06-30 13:36:03", "164.132.161.35", "106");
INSERT INTO `wp_gf_form_view` VALUES("59120", "3", "2017-06-30 13:47:19", "51.255.71.133", "64");
INSERT INTO `wp_gf_form_view` VALUES("59121", "3", "2017-06-30 14:11:26", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("59122", "14", "2017-06-30 15:11:38", "184.151.231.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("59123", "8", "2017-06-30 15:18:06", "180.76.15.19", "3");
INSERT INTO `wp_gf_form_view` VALUES("59124", "3", "2017-06-30 15:35:24", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59125", "6", "2017-06-30 15:35:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59126", "9", "2017-06-30 15:35:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59127", "10", "2017-06-30 15:35:27", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59128", "15", "2017-06-30 15:35:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59129", "10", "2017-06-30 16:19:50", "40.77.167.145", "12");
INSERT INTO `wp_gf_form_view` VALUES("59130", "3", "2017-06-30 16:54:00", "94.73.151.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("59131", "15", "2017-06-30 17:01:29", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59132", "10", "2017-06-30 17:09:39", "66.249.79.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("59133", "3", "2017-06-30 17:23:55", "194.187.170.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("59134", "14", "2017-06-30 17:37:44", "96.54.69.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("59135", "3", "2017-06-30 18:04:46", "180.76.15.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("59136", "11", "2017-06-30 18:28:44", "66.249.79.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("59137", "3", "2017-06-30 19:49:56", "78.110.50.113", "63");
INSERT INTO `wp_gf_form_view` VALUES("59138", "10", "2017-06-30 19:49:57", "78.110.50.113", "105");
INSERT INTO `wp_gf_form_view` VALUES("59139", "3", "2017-06-30 21:05:13", "217.182.132.70", "29");
INSERT INTO `wp_gf_form_view` VALUES("59140", "8", "2017-06-30 21:54:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59141", "6", "2017-06-30 21:54:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59142", "9", "2017-06-30 21:54:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59143", "10", "2017-06-30 21:54:38", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59144", "15", "2017-06-30 21:54:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59145", "10", "2017-06-30 22:04:08", "207.194.130.127", "116");
INSERT INTO `wp_gf_form_view` VALUES("59146", "11", "2017-06-30 22:12:58", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("59147", "3", "2017-06-30 22:26:51", "188.128.240.32", "128");
INSERT INTO `wp_gf_form_view` VALUES("59148", "8", "2017-06-30 22:29:21", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("59149", "6", "2017-06-30 22:29:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59150", "6", "2017-06-30 22:29:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59151", "9", "2017-06-30 22:29:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59152", "15", "2017-06-30 22:29:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59153", "15", "2017-06-30 22:29:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59154", "10", "2017-06-30 23:05:56", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("59155", "3", "2017-06-30 23:48:19", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("59156", "3", "2017-07-01 01:01:43", "23.91.66.224", "79");
INSERT INTO `wp_gf_form_view` VALUES("59157", "10", "2017-07-01 01:01:43", "23.91.66.224", "106");
INSERT INTO `wp_gf_form_view` VALUES("59158", "8", "2017-07-01 01:04:35", "68.180.229.228", "8");
INSERT INTO `wp_gf_form_view` VALUES("59159", "3", "2017-07-01 02:00:14", "66.249.79.21", "6");
INSERT INTO `wp_gf_form_view` VALUES("59160", "10", "2017-07-01 02:06:12", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("59161", "9", "2017-07-01 02:32:19", "180.76.15.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("59162", "8", "2017-07-01 02:51:07", "68.180.229.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("59163", "3", "2017-07-01 03:09:10", "66.249.79.19", "64");
INSERT INTO `wp_gf_form_view` VALUES("59164", "10", "2017-07-01 03:40:38", "78.110.50.113", "107");
INSERT INTO `wp_gf_form_view` VALUES("59165", "10", "2017-07-01 04:07:39", "77.75.77.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("59166", "8", "2017-07-01 04:22:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59167", "3", "2017-07-01 04:22:00", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59168", "6", "2017-07-01 04:22:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59169", "9", "2017-07-01 04:22:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59170", "15", "2017-07-01 04:22:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59171", "11", "2017-07-01 05:02:52", "66.249.79.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("59172", "3", "2017-07-01 05:04:28", "66.249.79.19", "96");
INSERT INTO `wp_gf_form_view` VALUES("59173", "10", "2017-07-01 05:04:56", "66.249.79.19", "115");
INSERT INTO `wp_gf_form_view` VALUES("59174", "8", "2017-07-01 05:52:14", "52.88.109.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("59175", "6", "2017-07-01 05:52:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59176", "9", "2017-07-01 05:52:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59177", "15", "2017-07-01 05:52:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59178", "14", "2017-07-01 05:57:51", "37.187.56.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("59179", "10", "2017-07-01 06:08:42", "199.59.150.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("59180", "8", "2017-07-01 06:13:27", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("59181", "3", "2017-07-01 06:47:48", "40.77.167.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59182", "3", "2017-07-01 07:34:36", "180.76.15.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("59183", "10", "2017-07-01 07:37:14", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("59184", "8", "2017-07-01 08:07:53", "180.76.15.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("59185", "3", "2017-07-01 08:34:48", "5.188.211.26", "28");
INSERT INTO `wp_gf_form_view` VALUES("59186", "6", "2017-07-01 08:34:48", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("59187", "9", "2017-07-01 08:34:49", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("59188", "10", "2017-07-01 08:34:50", "5.188.211.26", "5");
INSERT INTO `wp_gf_form_view` VALUES("59189", "15", "2017-07-01 08:34:52", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("59190", "3", "2017-07-01 09:08:50", "40.77.167.4", "95");
INSERT INTO `wp_gf_form_view` VALUES("59191", "8", "2017-07-01 09:23:23", "5.188.211.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("59192", "6", "2017-07-01 09:23:24", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("59193", "9", "2017-07-01 09:23:25", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("59194", "10", "2017-07-01 09:23:26", "5.188.211.26", "111");
INSERT INTO `wp_gf_form_view` VALUES("59195", "15", "2017-07-01 09:23:28", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("59196", "12", "2017-07-01 11:12:27", "194.187.170.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("59197", "3", "2017-07-01 11:13:28", "66.147.244.59", "63");
INSERT INTO `wp_gf_form_view` VALUES("59198", "10", "2017-07-01 11:13:29", "66.147.244.59", "105");
INSERT INTO `wp_gf_form_view` VALUES("59199", "8", "2017-07-01 11:24:30", "66.249.79.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("59200", "3", "2017-07-01 12:28:33", "217.182.132.25", "7");
INSERT INTO `wp_gf_form_view` VALUES("59201", "8", "2017-07-01 12:33:50", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("59202", "10", "2017-07-01 12:46:58", "213.32.20.191", "10");
INSERT INTO `wp_gf_form_view` VALUES("59203", "10", "2017-07-01 13:23:34", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("59204", "3", "2017-07-01 14:16:08", "69.89.31.186", "64");
INSERT INTO `wp_gf_form_view` VALUES("59205", "10", "2017-07-01 14:16:08", "69.89.31.186", "105");
INSERT INTO `wp_gf_form_view` VALUES("59206", "3", "2017-07-01 15:43:01", "194.28.172.163", "63");
INSERT INTO `wp_gf_form_view` VALUES("59207", "10", "2017-07-01 15:43:01", "194.28.172.163", "105");
INSERT INTO `wp_gf_form_view` VALUES("59208", "10", "2017-07-01 16:14:47", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("59209", "3", "2017-07-01 16:27:55", "207.46.13.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("59210", "3", "2017-07-01 17:04:43", "213.251.182.106", "63");
INSERT INTO `wp_gf_form_view` VALUES("59211", "10", "2017-07-01 17:04:43", "213.251.182.106", "105");
INSERT INTO `wp_gf_form_view` VALUES("59212", "14", "2017-07-01 18:06:12", "212.237.54.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("59213", "3", "2017-07-01 18:06:16", "212.237.54.156", "64");
INSERT INTO `wp_gf_form_view` VALUES("59214", "10", "2017-07-01 18:36:14", "148.251.187.239", "105");
INSERT INTO `wp_gf_form_view` VALUES("59215", "8", "2017-07-01 18:42:00", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("59216", "8", "2017-07-01 19:38:15", "180.76.15.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("59217", "3", "2017-07-01 20:21:53", "94.73.151.90", "9");
INSERT INTO `wp_gf_form_view` VALUES("59218", "10", "2017-07-01 20:21:54", "94.73.151.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("59219", "3", "2017-07-01 21:01:21", "40.77.167.14", "30");
INSERT INTO `wp_gf_form_view` VALUES("59220", "8", "2017-07-01 21:09:13", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59221", "6", "2017-07-01 21:09:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59222", "9", "2017-07-01 21:09:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59223", "10", "2017-07-01 21:09:15", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59224", "15", "2017-07-01 21:09:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59225", "3", "2017-07-01 22:05:41", "178.210.90.90", "64");
INSERT INTO `wp_gf_form_view` VALUES("59226", "10", "2017-07-01 22:05:42", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59227", "3", "2017-07-01 23:36:04", "69.89.31.109", "63");
INSERT INTO `wp_gf_form_view` VALUES("59228", "10", "2017-07-01 23:36:05", "69.89.31.109", "105");
INSERT INTO `wp_gf_form_view` VALUES("59229", "3", "2017-07-02 00:15:57", "40.77.167.4", "64");
INSERT INTO `wp_gf_form_view` VALUES("59230", "10", "2017-07-02 00:47:19", "199.59.150.183", "107");
INSERT INTO `wp_gf_form_view` VALUES("59231", "3", "2017-07-02 01:15:23", "5.188.211.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("59232", "10", "2017-07-02 01:45:54", "5.188.211.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("59233", "3", "2017-07-02 02:00:46", "94.73.149.109", "12");
INSERT INTO `wp_gf_form_view` VALUES("59234", "10", "2017-07-02 02:00:48", "94.73.149.109", "20");
INSERT INTO `wp_gf_form_view` VALUES("59235", "8", "2017-07-02 02:31:52", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59236", "9", "2017-07-02 02:56:40", "157.55.39.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("59237", "3", "2017-07-02 03:12:36", "78.110.50.113", "64");
INSERT INTO `wp_gf_form_view` VALUES("59238", "10", "2017-07-02 03:12:36", "78.110.50.113", "105");
INSERT INTO `wp_gf_form_view` VALUES("59239", "3", "2017-07-02 04:24:03", "94.73.146.42", "9");
INSERT INTO `wp_gf_form_view` VALUES("59240", "10", "2017-07-02 04:24:03", "94.73.146.42", "15");
INSERT INTO `wp_gf_form_view` VALUES("59241", "3", "2017-07-02 05:25:58", "180.76.15.18", "72");
INSERT INTO `wp_gf_form_view` VALUES("59242", "8", "2017-07-02 05:26:54", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("59243", "10", "2017-07-02 05:26:54", "66.249.79.23", "110");
INSERT INTO `wp_gf_form_view` VALUES("59244", "15", "2017-07-02 05:26:55", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("59245", "5", "2017-07-02 06:14:24", "77.75.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("59246", "3", "2017-07-02 06:54:18", "78.110.50.113", "63");
INSERT INTO `wp_gf_form_view` VALUES("59247", "10", "2017-07-02 06:54:19", "78.110.50.113", "105");
INSERT INTO `wp_gf_form_view` VALUES("59248", "3", "2017-07-02 07:19:24", "194.187.170.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59249", "8", "2017-07-02 07:21:53", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("59250", "10", "2017-07-02 07:42:03", "217.182.132.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("59251", "3", "2017-07-02 08:09:39", "85.128.142.53", "63");
INSERT INTO `wp_gf_form_view` VALUES("59252", "10", "2017-07-02 08:09:39", "85.128.142.53", "106");
INSERT INTO `wp_gf_form_view` VALUES("59253", "3", "2017-07-02 09:23:04", "46.165.222.10", "90");
INSERT INTO `wp_gf_form_view` VALUES("59254", "10", "2017-07-02 09:23:04", "46.165.222.10", "110");
INSERT INTO `wp_gf_form_view` VALUES("59255", "8", "2017-07-02 09:47:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59256", "6", "2017-07-02 09:47:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59257", "9", "2017-07-02 09:47:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59258", "15", "2017-07-02 09:47:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59259", "14", "2017-07-02 10:01:15", "104.223.58.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("59260", "3", "2017-07-02 10:11:41", "217.182.132.35", "64");
INSERT INTO `wp_gf_form_view` VALUES("59261", "10", "2017-07-02 10:36:30", "178.35.152.47", "107");
INSERT INTO `wp_gf_form_view` VALUES("59262", "10", "2017-07-02 11:04:17", "66.249.79.23", "106");
INSERT INTO `wp_gf_form_view` VALUES("59263", "3", "2017-07-02 11:21:37", "51.255.65.54", "65");
INSERT INTO `wp_gf_form_view` VALUES("59264", "10", "2017-07-02 12:02:55", "207.46.13.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("59265", "10", "2017-07-02 13:00:04", "66.249.79.19", "112");
INSERT INTO `wp_gf_form_view` VALUES("59266", "14", "2017-07-02 13:04:37", "89.37.65.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("59267", "3", "2017-07-02 13:11:30", "178.210.90.90", "90");
INSERT INTO `wp_gf_form_view` VALUES("59268", "8", "2017-07-02 13:12:36", "5.188.211.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("59269", "6", "2017-07-02 13:12:39", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("59270", "9", "2017-07-02 13:12:41", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("59271", "15", "2017-07-02 13:12:49", "5.188.211.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("59272", "3", "2017-07-02 14:28:30", "78.110.50.113", "73");
INSERT INTO `wp_gf_form_view` VALUES("59273", "10", "2017-07-02 14:28:30", "78.110.50.113", "106");
INSERT INTO `wp_gf_form_view` VALUES("59274", "8", "2017-07-02 14:35:32", "5.188.211.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("59275", "14", "2017-07-02 14:41:52", "68.180.229.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("59276", "3", "2017-07-02 15:04:26", "51.255.65.97", "85");
INSERT INTO `wp_gf_form_view` VALUES("59277", "8", "2017-07-02 15:11:23", "66.249.79.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("59278", "10", "2017-07-02 15:11:25", "66.249.79.19", "111");
INSERT INTO `wp_gf_form_view` VALUES("59279", "15", "2017-07-02 15:11:27", "66.249.79.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("59280", "8", "2017-07-02 16:18:23", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59281", "3", "2017-07-02 16:18:23", "52.88.109.3", "81");
INSERT INTO `wp_gf_form_view` VALUES("59282", "6", "2017-07-02 16:18:24", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("59283", "9", "2017-07-02 16:18:25", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("59284", "10", "2017-07-02 16:18:26", "52.88.109.3", "16");
INSERT INTO `wp_gf_form_view` VALUES("59285", "15", "2017-07-02 16:18:29", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("59286", "3", "2017-07-02 17:01:07", "194.28.172.163", "63");
INSERT INTO `wp_gf_form_view` VALUES("59287", "10", "2017-07-02 17:01:07", "194.28.172.163", "106");
INSERT INTO `wp_gf_form_view` VALUES("59288", "10", "2017-07-02 18:04:47", "157.55.39.85", "106");
INSERT INTO `wp_gf_form_view` VALUES("59289", "3", "2017-07-02 18:19:32", "69.195.124.70", "63");
INSERT INTO `wp_gf_form_view` VALUES("59290", "3", "2017-07-02 19:26:17", "164.132.161.14", "65");
INSERT INTO `wp_gf_form_view` VALUES("59291", "10", "2017-07-02 19:45:21", "69.195.124.70", "105");
INSERT INTO `wp_gf_form_view` VALUES("59292", "8", "2017-07-02 20:08:56", "77.75.79.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("59293", "10", "2017-07-02 20:11:29", "84.201.133.76", "5");
INSERT INTO `wp_gf_form_view` VALUES("59294", "3", "2017-07-02 20:14:30", "40.77.167.145", "4");
INSERT INTO `wp_gf_form_view` VALUES("59295", "14", "2017-07-02 20:31:31", "154.5.205.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("59296", "7", "2017-07-02 20:52:04", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59297", "3", "2017-07-02 21:10:53", "69.195.124.70", "64");
INSERT INTO `wp_gf_form_view` VALUES("59298", "10", "2017-07-02 21:10:54", "69.195.124.70", "107");
INSERT INTO `wp_gf_form_view` VALUES("59299", "8", "2017-07-02 21:20:18", "216.232.151.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59300", "5", "2017-07-02 21:38:15", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59301", "6", "2017-07-02 22:11:09", "141.8.143.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("59302", "5", "2017-07-02 22:20:07", "217.182.132.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("59303", "8", "2017-07-02 22:33:46", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59304", "3", "2017-07-02 22:33:46", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("59305", "9", "2017-07-02 22:33:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59306", "10", "2017-07-02 22:33:49", "52.88.109.3", "17");
INSERT INTO `wp_gf_form_view` VALUES("59307", "15", "2017-07-02 22:33:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59308", "3", "2017-07-02 23:52:05", "66.147.244.59", "63");
INSERT INTO `wp_gf_form_view` VALUES("59309", "10", "2017-07-02 23:52:06", "66.147.244.59", "107");
INSERT INTO `wp_gf_form_view` VALUES("59310", "8", "2017-07-03 00:02:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59311", "3", "2017-07-03 00:02:14", "52.88.109.3", "93");
INSERT INTO `wp_gf_form_view` VALUES("59312", "6", "2017-07-03 00:02:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59313", "9", "2017-07-03 00:02:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59314", "10", "2017-07-03 00:02:17", "52.88.109.3", "111");
INSERT INTO `wp_gf_form_view` VALUES("59315", "15", "2017-07-03 00:02:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59316", "14", "2017-07-03 01:28:37", "24.69.169.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("59317", "3", "2017-07-03 02:00:38", "78.110.50.113", "63");
INSERT INTO `wp_gf_form_view` VALUES("59318", "10", "2017-07-03 02:00:39", "78.110.50.113", "106");
INSERT INTO `wp_gf_form_view` VALUES("59319", "10", "2017-07-03 03:02:46", "66.249.79.23", "106");
INSERT INTO `wp_gf_form_view` VALUES("59320", "3", "2017-07-03 03:04:06", "23.227.132.78", "64");
INSERT INTO `wp_gf_form_view` VALUES("59321", "8", "2017-07-03 03:31:47", "75.154.242.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("59322", "3", "2017-07-03 04:07:15", "173.236.224.103", "9");
INSERT INTO `wp_gf_form_view` VALUES("59323", "10", "2017-07-03 04:07:16", "173.236.224.103", "15");
INSERT INTO `wp_gf_form_view` VALUES("59324", "11", "2017-07-03 05:06:35", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59325", "8", "2017-07-03 05:15:51", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("59326", "10", "2017-07-03 05:40:15", "66.249.79.23", "108");
INSERT INTO `wp_gf_form_view` VALUES("59327", "7", "2017-07-03 05:43:27", "84.201.133.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("59328", "3", "2017-07-03 05:47:40", "178.210.90.90", "63");
INSERT INTO `wp_gf_form_view` VALUES("59329", "3", "2017-07-03 06:20:13", "141.8.143.140", "66");
INSERT INTO `wp_gf_form_view` VALUES("59330", "10", "2017-07-03 06:48:58", "5.189.153.247", "107");
INSERT INTO `wp_gf_form_view` VALUES("59331", "8", "2017-07-03 06:56:48", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59332", "5", "2017-07-03 07:05:52", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59333", "8", "2017-07-03 07:38:42", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59334", "3", "2017-07-03 07:44:30", "66.249.79.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("59335", "14", "2017-07-03 07:45:58", "138.128.127.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("59336", "3", "2017-07-03 08:00:00", "69.195.124.70", "62");
INSERT INTO `wp_gf_form_view` VALUES("59337", "10", "2017-07-03 08:00:00", "69.195.124.70", "107");
INSERT INTO `wp_gf_form_view` VALUES("59338", "3", "2017-07-03 09:14:57", "69.89.22.143", "63");
INSERT INTO `wp_gf_form_view` VALUES("59339", "10", "2017-07-03 09:14:57", "69.89.22.143", "107");
INSERT INTO `wp_gf_form_view` VALUES("59340", "12", "2017-07-03 09:28:55", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("59341", "3", "2017-07-03 10:40:00", "178.210.90.90", "63");
INSERT INTO `wp_gf_form_view` VALUES("59342", "10", "2017-07-03 10:40:00", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59343", "3", "2017-07-03 11:04:00", "180.76.15.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("59344", "3", "2017-07-03 12:39:24", "94.73.147.2", "6");
INSERT INTO `wp_gf_form_view` VALUES("59345", "10", "2017-07-03 12:39:24", "94.73.147.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("59346", "3", "2017-07-03 13:04:14", "194.187.170.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("59347", "8", "2017-07-03 13:07:24", "61.52.157.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("59348", "10", "2017-07-03 13:46:50", "164.132.161.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("59349", "8", "2017-07-03 14:15:30", "217.182.132.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("59350", "3", "2017-07-03 14:50:52", "5.189.149.67", "63");
INSERT INTO `wp_gf_form_view` VALUES("59351", "10", "2017-07-03 14:50:53", "5.189.149.67", "105");
INSERT INTO `wp_gf_form_view` VALUES("59352", "10", "2017-07-03 15:42:21", "24.108.13.92", "16");
INSERT INTO `wp_gf_form_view` VALUES("59353", "8", "2017-07-03 15:44:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59354", "3", "2017-07-03 15:44:07", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("59355", "6", "2017-07-03 15:44:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59356", "9", "2017-07-03 15:44:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59357", "15", "2017-07-03 15:44:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59358", "3", "2017-07-03 16:22:24", "184.96.222.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("59359", "10", "2017-07-03 16:53:40", "217.182.132.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("59360", "3", "2017-07-03 17:16:42", "69.89.31.109", "10");
INSERT INTO `wp_gf_form_view` VALUES("59361", "10", "2017-07-03 17:16:42", "69.89.31.109", "15");
INSERT INTO `wp_gf_form_view` VALUES("59362", "14", "2017-07-03 18:15:31", "24.69.149.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("59363", "3", "2017-07-03 19:08:00", "45.76.163.222", "10");
INSERT INTO `wp_gf_form_view` VALUES("59364", "10", "2017-07-03 19:46:53", "185.48.181.104", "10");
INSERT INTO `wp_gf_form_view` VALUES("59365", "3", "2017-07-03 20:04:53", "180.76.15.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("59366", "10", "2017-07-03 20:58:11", "72.14.199.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("59367", "8", "2017-07-03 21:25:54", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("59368", "3", "2017-07-03 21:26:06", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("59369", "10", "2017-07-03 22:23:56", "217.182.132.15", "106");
INSERT INTO `wp_gf_form_view` VALUES("59370", "3", "2017-07-03 22:39:39", "178.35.152.47", "63");
INSERT INTO `wp_gf_form_view` VALUES("59371", "14", "2017-07-03 23:26:08", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("59372", "8", "2017-07-03 23:26:14", "104.196.217.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("59373", "3", "2017-07-03 23:28:54", "104.196.217.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("59374", "10", "2017-07-03 23:37:09", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("59375", "10", "2017-07-04 00:25:50", "151.80.27.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("59376", "8", "2017-07-04 00:26:53", "79.114.248.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("59377", "3", "2017-07-04 00:29:04", "79.114.248.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("59378", "5", "2017-07-04 00:30:07", "77.75.77.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("59379", "3", "2017-07-04 01:19:17", "178.210.90.90", "76");
INSERT INTO `wp_gf_form_view` VALUES("59380", "10", "2017-07-04 01:19:17", "178.210.90.90", "112");
INSERT INTO `wp_gf_form_view` VALUES("59381", "14", "2017-07-04 01:54:27", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("59382", "8", "2017-07-04 01:55:47", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("59383", "15", "2017-07-04 01:55:49", "104.196.217.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("59384", "10", "2017-07-04 02:55:14", "77.75.78.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("59385", "3", "2017-07-04 02:59:30", "178.35.152.47", "4");
INSERT INTO `wp_gf_form_view` VALUES("59386", "3", "2017-07-04 03:00:18", "178.35.152.47", "84");
INSERT INTO `wp_gf_form_view` VALUES("59387", "10", "2017-07-04 03:00:18", "178.35.152.47", "110");
INSERT INTO `wp_gf_form_view` VALUES("59388", "15", "2017-07-04 03:40:31", "104.196.217.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("59389", "8", "2017-07-04 03:40:47", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("59390", "9", "2017-07-04 03:41:41", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("59391", "6", "2017-07-04 03:43:02", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("59392", "8", "2017-07-04 04:31:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59393", "3", "2017-07-04 04:31:52", "52.88.109.3", "90");
INSERT INTO `wp_gf_form_view` VALUES("59394", "6", "2017-07-04 04:31:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59395", "9", "2017-07-04 04:31:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59396", "10", "2017-07-04 04:31:55", "52.88.109.3", "110");
INSERT INTO `wp_gf_form_view` VALUES("59397", "15", "2017-07-04 04:31:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59398", "3", "2017-07-04 05:05:32", "164.132.161.91", "90");
INSERT INTO `wp_gf_form_view` VALUES("59399", "10", "2017-07-04 05:24:44", "35.185.0.83", "108");
INSERT INTO `wp_gf_form_view` VALUES("59400", "15", "2017-07-04 05:24:49", "35.185.0.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("59401", "9", "2017-07-04 05:25:13", "35.185.0.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("59402", "8", "2017-07-04 05:27:59", "35.185.0.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("59403", "3", "2017-07-04 06:38:09", "104.196.24.131", "27");
INSERT INTO `wp_gf_form_view` VALUES("59404", "9", "2017-07-04 06:39:07", "104.196.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("59405", "6", "2017-07-04 06:39:50", "104.196.24.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("59406", "3", "2017-07-04 07:00:27", "164.132.162.155", "66");
INSERT INTO `wp_gf_form_view` VALUES("59407", "10", "2017-07-04 07:05:51", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59408", "14", "2017-07-04 08:10:00", "84.201.133.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("59409", "10", "2017-07-04 08:10:27", "141.8.143.140", "106");
INSERT INTO `wp_gf_form_view` VALUES("59410", "3", "2017-07-04 08:18:38", "78.110.50.113", "64");
INSERT INTO `wp_gf_form_view` VALUES("59411", "3", "2017-07-04 09:28:49", "178.210.90.90", "64");
INSERT INTO `wp_gf_form_view` VALUES("59412", "10", "2017-07-04 09:28:50", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59413", "3", "2017-07-04 10:56:22", "180.76.15.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("59414", "8", "2017-07-04 11:00:00", "52.88.109.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("59415", "3", "2017-07-04 11:00:01", "52.88.109.3", "227");
INSERT INTO `wp_gf_form_view` VALUES("59416", "6", "2017-07-04 11:00:02", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59417", "9", "2017-07-04 11:00:05", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59418", "10", "2017-07-04 11:00:08", "52.88.109.3", "136");
INSERT INTO `wp_gf_form_view` VALUES("59419", "15", "2017-07-04 11:00:14", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59420", "10", "2017-07-04 12:09:23", "141.8.143.140", "138");
INSERT INTO `wp_gf_form_view` VALUES("59421", "3", "2017-07-04 12:33:36", "51.255.65.71", "226");
INSERT INTO `wp_gf_form_view` VALUES("59422", "8", "2017-07-04 12:43:16", "169.45.224.180", "12");
INSERT INTO `wp_gf_form_view` VALUES("59423", "6", "2017-07-04 12:43:17", "169.45.224.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("59424", "9", "2017-07-04 12:43:18", "169.45.224.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("59425", "15", "2017-07-04 12:43:21", "169.45.224.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("59426", "7", "2017-07-04 13:10:02", "40.77.167.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("59427", "3", "2017-07-04 13:42:37", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("59428", "8", "2017-07-04 14:03:32", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59429", "10", "2017-07-04 14:26:01", "184.66.129.248", "106");
INSERT INTO `wp_gf_form_view` VALUES("59430", "3", "2017-07-04 14:49:15", "69.89.31.180", "63");
INSERT INTO `wp_gf_form_view` VALUES("59431", "3", "2017-07-04 15:32:55", "40.77.167.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("59432", "10", "2017-07-04 16:02:24", "184.66.248.195", "20");
INSERT INTO `wp_gf_form_view` VALUES("59433", "3", "2017-07-04 16:43:43", "94.73.150.132", "9");
INSERT INTO `wp_gf_form_view` VALUES("59434", "10", "2017-07-04 17:21:53", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("59435", "8", "2017-07-04 17:27:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59436", "3", "2017-07-04 17:27:05", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59437", "6", "2017-07-04 17:27:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59438", "9", "2017-07-04 17:27:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59439", "15", "2017-07-04 17:27:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59440", "14", "2017-07-04 17:51:03", "149.56.147.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("59441", "8", "2017-07-04 18:02:03", "180.76.15.18", "3");
INSERT INTO `wp_gf_form_view` VALUES("59442", "3", "2017-07-04 18:11:00", "5.44.216.9", "93");
INSERT INTO `wp_gf_form_view` VALUES("59443", "10", "2017-07-04 18:11:00", "5.44.216.9", "112");
INSERT INTO `wp_gf_form_view` VALUES("59444", "6", "2017-07-04 18:49:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59445", "9", "2017-07-04 18:49:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59446", "15", "2017-07-04 18:49:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59447", "10", "2017-07-04 19:16:38", "64.114.222.228", "108");
INSERT INTO `wp_gf_form_view` VALUES("59448", "10", "2017-07-04 19:16:38", "64.114.222.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("59449", "3", "2017-07-04 19:32:15", "178.210.90.90", "63");
INSERT INTO `wp_gf_form_view` VALUES("59450", "8", "2017-07-04 20:08:28", "104.192.6.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("59451", "10", "2017-07-04 20:09:25", "104.192.6.139", "108");
INSERT INTO `wp_gf_form_view` VALUES("59452", "3", "2017-07-04 20:10:41", "104.192.6.139", "64");
INSERT INTO `wp_gf_form_view` VALUES("59453", "8", "2017-07-04 21:00:37", "180.76.15.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("59454", "3", "2017-07-04 21:05:48", "157.55.39.114", "3");
INSERT INTO `wp_gf_form_view` VALUES("59455", "10", "2017-07-04 21:22:24", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59456", "3", "2017-07-04 22:15:01", "188.116.33.163", "3");
INSERT INTO `wp_gf_form_view` VALUES("59457", "10", "2017-07-04 22:15:02", "188.116.33.163", "7");
INSERT INTO `wp_gf_form_view` VALUES("59458", "3", "2017-07-04 23:08:16", "157.55.39.85", "79");
INSERT INTO `wp_gf_form_view` VALUES("59459", "6", "2017-07-04 23:08:46", "157.55.39.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("59460", "10", "2017-07-04 23:09:50", "157.55.39.114", "109");
INSERT INTO `wp_gf_form_view` VALUES("59461", "8", "2017-07-04 23:10:05", "157.55.39.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("59462", "15", "2017-07-04 23:10:24", "157.55.39.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("59463", "14", "2017-07-05 00:33:31", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59464", "8", "2017-07-05 01:24:08", "141.8.143.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59465", "10", "2017-07-05 01:24:17", "141.8.143.140", "106");
INSERT INTO `wp_gf_form_view` VALUES("59466", "3", "2017-07-05 01:46:50", "178.210.90.90", "63");
INSERT INTO `wp_gf_form_view` VALUES("59467", "15", "2017-07-05 02:03:48", "157.55.39.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("59468", "10", "2017-07-05 02:12:09", "157.55.39.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("59469", "3", "2017-07-05 02:16:36", "40.77.167.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("59470", "8", "2017-07-05 02:17:04", "157.55.39.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("59471", "3", "2017-07-05 03:07:05", "178.210.90.90", "63");
INSERT INTO `wp_gf_form_view` VALUES("59472", "10", "2017-07-05 03:07:07", "178.210.90.90", "106");
INSERT INTO `wp_gf_form_view` VALUES("59473", "3", "2017-07-05 04:26:19", "69.89.31.180", "63");
INSERT INTO `wp_gf_form_view` VALUES("59474", "10", "2017-07-05 04:26:20", "69.89.31.180", "107");
INSERT INTO `wp_gf_form_view` VALUES("59475", "3", "2017-07-05 05:18:52", "51.255.65.86", "65");
INSERT INTO `wp_gf_form_view` VALUES("59476", "8", "2017-07-05 05:27:54", "204.79.180.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("59477", "10", "2017-07-05 05:43:01", "69.89.31.180", "105");
INSERT INTO `wp_gf_form_view` VALUES("59478", "3", "2017-07-05 06:11:00", "77.75.77.119", "5");
INSERT INTO `wp_gf_form_view` VALUES("59479", "8", "2017-07-05 06:22:36", "51.255.65.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("59480", "10", "2017-07-05 06:57:32", "213.32.20.191", "5");
INSERT INTO `wp_gf_form_view` VALUES("59481", "8", "2017-07-05 07:04:19", "149.202.184.37", "10");
INSERT INTO `wp_gf_form_view` VALUES("59482", "3", "2017-07-05 07:04:44", "149.202.184.37", "2");
INSERT INTO `wp_gf_form_view` VALUES("59483", "14", "2017-07-05 07:05:17", "149.202.184.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("59484", "10", "2017-07-05 07:05:23", "149.202.184.37", "7");
INSERT INTO `wp_gf_form_view` VALUES("59485", "3", "2017-07-05 08:15:16", "45.35.89.23", "63");
INSERT INTO `wp_gf_form_view` VALUES("59486", "10", "2017-07-05 08:15:17", "45.35.89.23", "105");
INSERT INTO `wp_gf_form_view` VALUES("59487", "11", "2017-07-05 09:31:17", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("59488", "3", "2017-07-05 09:31:46", "173.236.224.103", "12");
INSERT INTO `wp_gf_form_view` VALUES("59489", "10", "2017-07-05 09:31:46", "173.236.224.103", "20");
INSERT INTO `wp_gf_form_view` VALUES("59490", "8", "2017-07-05 10:22:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59491", "3", "2017-07-05 10:22:50", "52.88.109.3", "90");
INSERT INTO `wp_gf_form_view` VALUES("59492", "6", "2017-07-05 10:22:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59493", "9", "2017-07-05 10:22:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59494", "10", "2017-07-05 10:22:52", "52.88.109.3", "110");
INSERT INTO `wp_gf_form_view` VALUES("59495", "15", "2017-07-05 10:22:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59496", "10", "2017-07-05 12:05:24", "157.55.39.114", "106");
INSERT INTO `wp_gf_form_view` VALUES("59497", "3", "2017-07-05 12:05:32", "217.182.132.185", "65");
INSERT INTO `wp_gf_form_view` VALUES("59498", "3", "2017-07-05 13:50:28", "66.249.79.21", "12");
INSERT INTO `wp_gf_form_view` VALUES("59499", "10", "2017-07-05 13:58:00", "178.210.90.90", "16");
INSERT INTO `wp_gf_form_view` VALUES("59500", "3", "2017-07-05 14:00:00", "178.210.90.90", "52");
INSERT INTO `wp_gf_form_view` VALUES("59501", "10", "2017-07-05 14:00:00", "178.210.90.90", "89");
INSERT INTO `wp_gf_form_view` VALUES("59502", "6", "2017-07-05 14:55:54", "66.249.79.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("59503", "10", "2017-07-05 15:04:24", "180.76.15.138", "11");
INSERT INTO `wp_gf_form_view` VALUES("59504", "3", "2017-07-05 15:31:45", "213.32.20.191", "6");
INSERT INTO `wp_gf_form_view` VALUES("59505", "10", "2017-07-05 16:03:43", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59506", "3", "2017-07-05 16:13:42", "51.255.65.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("59507", "3", "2017-07-05 17:03:51", "69.195.124.70", "63");
INSERT INTO `wp_gf_form_view` VALUES("59508", "10", "2017-07-05 17:03:51", "69.195.124.70", "109");
INSERT INTO `wp_gf_form_view` VALUES("59509", "10", "2017-07-05 18:28:45", "184.66.248.195", "106");
INSERT INTO `wp_gf_form_view` VALUES("59510", "3", "2017-07-05 18:32:44", "45.35.89.23", "64");
INSERT INTO `wp_gf_form_view` VALUES("59511", "8", "2017-07-05 18:48:12", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("59512", "3", "2017-07-05 19:48:12", "164.132.161.39", "64");
INSERT INTO `wp_gf_form_view` VALUES("59513", "10", "2017-07-05 19:51:56", "66.147.244.54", "105");
INSERT INTO `wp_gf_form_view` VALUES("59514", "10", "2017-07-05 20:46:34", "184.66.248.195", "106");
INSERT INTO `wp_gf_form_view` VALUES("59515", "3", "2017-07-05 20:46:46", "89.161.188.130", "65");
INSERT INTO `wp_gf_form_view` VALUES("59516", "14", "2017-07-05 20:47:25", "210.35.171.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("59517", "14", "2017-07-05 21:11:52", "96.50.28.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("59518", "10", "2017-07-05 21:16:46", "184.66.248.195", "106");
INSERT INTO `wp_gf_form_view` VALUES("59519", "3", "2017-07-05 21:41:26", "85.128.142.54", "63");
INSERT INTO `wp_gf_form_view` VALUES("59520", "3", "2017-07-05 22:31:11", "216.244.66.231", "64");
INSERT INTO `wp_gf_form_view` VALUES("59521", "10", "2017-07-05 22:37:13", "23.227.132.78", "105");
INSERT INTO `wp_gf_form_view` VALUES("59522", "8", "2017-07-05 23:05:46", "96.50.28.252", "4");
INSERT INTO `wp_gf_form_view` VALUES("59523", "3", "2017-07-05 23:16:36", "96.50.28.252", "92");
INSERT INTO `wp_gf_form_view` VALUES("59524", "6", "2017-07-05 23:29:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59525", "9", "2017-07-05 23:29:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59526", "10", "2017-07-05 23:29:37", "52.88.109.3", "110");
INSERT INTO `wp_gf_form_view` VALUES("59527", "15", "2017-07-05 23:29:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59528", "3", "2017-07-06 00:16:25", "68.180.228.163", "85");
INSERT INTO `wp_gf_form_view` VALUES("59529", "10", "2017-07-06 00:23:42", "69.89.31.220", "146");
INSERT INTO `wp_gf_form_view` VALUES("59530", "14", "2017-07-06 00:27:32", "45.55.225.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("59531", "6", "2017-07-06 00:33:36", "45.55.225.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("59532", "8", "2017-07-06 00:39:06", "45.55.225.20", "54");
INSERT INTO `wp_gf_form_view` VALUES("59533", "9", "2017-07-06 00:46:14", "45.55.225.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("59534", "15", "2017-07-06 00:49:45", "45.55.225.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("59535", "3", "2017-07-06 01:00:04", "45.55.225.20", "40");
INSERT INTO `wp_gf_form_view` VALUES("59536", "10", "2017-07-06 01:01:46", "45.55.225.20", "58");
INSERT INTO `wp_gf_form_view` VALUES("59537", "8", "2017-07-06 01:02:56", "45.55.225.20", "166");
INSERT INTO `wp_gf_form_view` VALUES("59538", "3", "2017-07-06 02:42:00", "69.89.31.180", "63");
INSERT INTO `wp_gf_form_view` VALUES("59539", "10", "2017-07-06 02:42:00", "69.89.31.180", "105");
INSERT INTO `wp_gf_form_view` VALUES("59540", "3", "2017-07-06 03:48:16", "51.255.65.94", "7");
INSERT INTO `wp_gf_form_view` VALUES("59541", "10", "2017-07-06 03:58:49", "69.195.124.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("59542", "3", "2017-07-06 04:00:14", "69.195.124.70", "57");
INSERT INTO `wp_gf_form_view` VALUES("59543", "10", "2017-07-06 04:00:14", "69.195.124.70", "95");
INSERT INTO `wp_gf_form_view` VALUES("59544", "8", "2017-07-06 04:56:39", "192.187.31.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("59545", "3", "2017-07-06 05:15:37", "45.35.89.23", "90");
INSERT INTO `wp_gf_form_view` VALUES("59546", "10", "2017-07-06 05:15:37", "45.35.89.23", "110");
INSERT INTO `wp_gf_form_view` VALUES("59547", "8", "2017-07-06 05:46:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59548", "6", "2017-07-06 05:46:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59549", "9", "2017-07-06 05:46:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59550", "15", "2017-07-06 05:46:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59551", "8", "2017-07-06 06:22:31", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("59552", "3", "2017-07-06 06:22:33", "52.88.109.3", "58");
INSERT INTO `wp_gf_form_view` VALUES("59553", "6", "2017-07-06 06:22:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59554", "9", "2017-07-06 06:22:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59555", "10", "2017-07-06 06:22:41", "52.88.109.3", "15");
INSERT INTO `wp_gf_form_view` VALUES("59556", "15", "2017-07-06 06:22:46", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59557", "10", "2017-07-06 08:24:12", "66.249.79.137", "106");
INSERT INTO `wp_gf_form_view` VALUES("59558", "3", "2017-07-06 08:49:17", "178.210.90.90", "63");
INSERT INTO `wp_gf_form_view` VALUES("59559", "3", "2017-07-06 09:21:43", "180.76.15.140", "7");
INSERT INTO `wp_gf_form_view` VALUES("59560", "10", "2017-07-06 09:59:08", "178.210.90.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("59561", "3", "2017-07-06 10:00:35", "178.210.90.90", "58");
INSERT INTO `wp_gf_form_view` VALUES("59562", "10", "2017-07-06 10:00:35", "178.210.90.90", "96");
INSERT INTO `wp_gf_form_view` VALUES("59563", "15", "2017-07-06 10:49:24", "164.132.162.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("59564", "3", "2017-07-06 11:04:57", "94.73.149.109", "8");
INSERT INTO `wp_gf_form_view` VALUES("59565", "10", "2017-07-06 11:04:58", "94.73.149.109", "10");
INSERT INTO `wp_gf_form_view` VALUES("59566", "10", "2017-07-06 12:00:05", "184.66.129.248", "114");
INSERT INTO `wp_gf_form_view` VALUES("59567", "3", "2017-07-06 12:07:24", "69.89.31.180", "90");
INSERT INTO `wp_gf_form_view` VALUES("59568", "8", "2017-07-06 12:08:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59569", "6", "2017-07-06 12:08:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59570", "9", "2017-07-06 12:08:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59571", "15", "2017-07-06 12:08:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59572", "5", "2017-07-06 13:14:46", "180.76.15.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("59573", "3", "2017-07-06 13:28:33", "31.210.156.230", "90");
INSERT INTO `wp_gf_form_view` VALUES("59574", "10", "2017-07-06 13:28:34", "31.210.156.230", "110");
INSERT INTO `wp_gf_form_view` VALUES("59575", "8", "2017-07-06 13:40:46", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59576", "6", "2017-07-06 13:40:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59577", "9", "2017-07-06 13:40:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59578", "15", "2017-07-06 13:40:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59579", "3", "2017-07-06 14:52:06", "178.210.90.90", "63");
INSERT INTO `wp_gf_form_view` VALUES("59580", "10", "2017-07-06 14:52:07", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59581", "15", "2017-07-06 14:56:58", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("59582", "3", "2017-07-06 15:01:56", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("59583", "10", "2017-07-06 15:13:08", "213.239.205.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("59584", "8", "2017-07-06 16:28:01", "142.104.160.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("59585", "3", "2017-07-06 16:38:02", "5.44.216.9", "63");
INSERT INTO `wp_gf_form_view` VALUES("59586", "10", "2017-07-06 16:38:03", "5.44.216.9", "105");
INSERT INTO `wp_gf_form_view` VALUES("59587", "14", "2017-07-06 17:55:12", "96.50.22.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("59588", "3", "2017-07-06 18:03:43", "94.73.151.90", "6");
INSERT INTO `wp_gf_form_view` VALUES("59589", "10", "2017-07-06 18:03:43", "94.73.151.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("59590", "8", "2017-07-06 19:17:53", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("59591", "3", "2017-07-06 20:00:51", "178.210.90.90", "65");
INSERT INTO `wp_gf_form_view` VALUES("59592", "10", "2017-07-06 20:00:51", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59593", "8", "2017-07-06 20:20:05", "158.69.225.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("59594", "6", "2017-07-06 20:53:27", "217.182.92.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("59595", "3", "2017-07-06 21:14:44", "94.73.149.109", "9");
INSERT INTO `wp_gf_form_view` VALUES("59596", "10", "2017-07-06 21:14:44", "94.73.149.109", "15");
INSERT INTO `wp_gf_form_view` VALUES("59597", "3", "2017-07-06 22:28:22", "31.28.24.112", "64");
INSERT INTO `wp_gf_form_view` VALUES("59598", "10", "2017-07-06 22:28:22", "31.28.24.112", "105");
INSERT INTO `wp_gf_form_view` VALUES("59599", "3", "2017-07-06 23:13:53", "164.132.161.15", "64");
INSERT INTO `wp_gf_form_view` VALUES("59600", "15", "2017-07-06 23:37:07", "77.66.1.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("59601", "10", "2017-07-06 23:40:40", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59602", "3", "2017-07-07 00:12:59", "207.46.13.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("59603", "7", "2017-07-07 00:15:22", "77.66.1.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("59604", "10", "2017-07-07 00:21:16", "194.187.170.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("59605", "10", "2017-07-07 01:08:52", "77.75.78.165", "108");
INSERT INTO `wp_gf_form_view` VALUES("59606", "3", "2017-07-07 01:16:52", "54.165.59.7", "68");
INSERT INTO `wp_gf_form_view` VALUES("59607", "14", "2017-07-07 01:17:55", "179.61.213.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("59608", "11", "2017-07-07 01:21:30", "77.66.1.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("59609", "3", "2017-07-07 02:18:32", "77.66.1.97", "9");
INSERT INTO `wp_gf_form_view` VALUES("59610", "10", "2017-07-07 02:23:13", "216.244.66.247", "11");
INSERT INTO `wp_gf_form_view` VALUES("59611", "10", "2017-07-07 03:21:48", "24.108.13.92", "109");
INSERT INTO `wp_gf_form_view` VALUES("59612", "3", "2017-07-07 03:39:36", "163.172.120.155", "64");
INSERT INTO `wp_gf_form_view` VALUES("59613", "3", "2017-07-07 04:20:07", "24.244.32.134", "64");
INSERT INTO `wp_gf_form_view` VALUES("59614", "10", "2017-07-07 04:38:43", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59615", "9", "2017-07-07 04:39:42", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("59616", "3", "2017-07-07 05:38:26", "178.210.90.90", "92");
INSERT INTO `wp_gf_form_view` VALUES("59617", "10", "2017-07-07 05:38:26", "178.210.90.90", "114");
INSERT INTO `wp_gf_form_view` VALUES("59618", "8", "2017-07-07 05:58:06", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("59619", "6", "2017-07-07 05:58:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59620", "9", "2017-07-07 05:58:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59621", "15", "2017-07-07 05:58:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59622", "10", "2017-07-07 06:00:00", "5.188.211.15", "111");
INSERT INTO `wp_gf_form_view` VALUES("59623", "8", "2017-07-07 06:04:45", "180.76.15.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59624", "3", "2017-07-07 06:36:36", "77.66.1.97", "64");
INSERT INTO `wp_gf_form_view` VALUES("59625", "14", "2017-07-07 07:29:07", "77.66.1.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("59626", "3", "2017-07-07 07:49:37", "77.66.1.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("59627", "3", "2017-07-07 08:00:03", "207.46.13.140", "64");
INSERT INTO `wp_gf_form_view` VALUES("59628", "10", "2017-07-07 08:08:46", "213.251.182.106", "106");
INSERT INTO `wp_gf_form_view` VALUES("59629", "3", "2017-07-07 09:28:29", "69.89.31.180", "65");
INSERT INTO `wp_gf_form_view` VALUES("59630", "10", "2017-07-07 09:28:29", "69.89.31.180", "106");
INSERT INTO `wp_gf_form_view` VALUES("59631", "9", "2017-07-07 09:34:10", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("59632", "3", "2017-07-07 10:01:56", "5.188.211.14", "66");
INSERT INTO `wp_gf_form_view` VALUES("59633", "10", "2017-07-07 10:41:30", "178.210.90.90", "105");
INSERT INTO `wp_gf_form_view` VALUES("59634", "8", "2017-07-07 11:08:56", "51.255.71.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("59635", "3", "2017-07-07 11:36:00", "207.46.13.140", "64");
INSERT INTO `wp_gf_form_view` VALUES("59636", "10", "2017-07-07 11:49:44", "213.251.182.106", "105");
INSERT INTO `wp_gf_form_view` VALUES("59637", "3", "2017-07-07 12:13:02", "180.76.15.13", "66");
INSERT INTO `wp_gf_form_view` VALUES("59638", "10", "2017-07-07 12:40:17", "208.43.225.85", "106");
INSERT INTO `wp_gf_form_view` VALUES("59639", "3", "2017-07-07 14:04:54", "5.188.211.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("59640", "3", "2017-07-07 15:33:02", "217.182.132.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("59641", "3", "2017-07-07 16:16:00", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("59642", "3", "2017-07-07 17:26:45", "180.76.15.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59643", "3", "2017-07-07 18:13:36", "5.188.211.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("59644", "8", "2017-07-07 19:35:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59645", "3", "2017-07-07 19:35:54", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59646", "6", "2017-07-07 19:35:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59647", "9", "2017-07-07 19:35:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59648", "10", "2017-07-07 19:35:57", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59649", "15", "2017-07-07 19:35:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59650", "8", "2017-07-07 20:12:28", "180.76.15.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("59651", "3", "2017-07-07 20:30:06", "194.187.170.113", "3");
INSERT INTO `wp_gf_form_view` VALUES("59652", "10", "2017-07-07 20:38:40", "86.88.81.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("59653", "3", "2017-07-07 21:06:47", "207.46.13.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("59654", "10", "2017-07-07 21:26:57", "51.255.65.96", "3");
INSERT INTO `wp_gf_form_view` VALUES("59655", "8", "2017-07-07 21:40:44", "104.192.7.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("59656", "10", "2017-07-07 22:02:12", "194.187.170.113", "3");
INSERT INTO `wp_gf_form_view` VALUES("59657", "3", "2017-07-07 22:18:44", "207.46.13.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("59658", "8", "2017-07-07 22:46:00", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("59659", "11", "2017-07-07 23:05:37", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("59660", "3", "2017-07-07 23:23:20", "217.182.132.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("59661", "14", "2017-07-07 23:27:32", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("59662", "3", "2017-07-08 01:08:47", "180.76.15.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("59663", "14", "2017-07-08 01:32:55", "24.69.136.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("59664", "8", "2017-07-08 02:11:24", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59665", "3", "2017-07-08 02:11:25", "52.88.109.3", "82");
INSERT INTO `wp_gf_form_view` VALUES("59666", "6", "2017-07-08 02:11:25", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("59667", "9", "2017-07-08 02:11:26", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("59668", "10", "2017-07-08 02:11:27", "52.88.109.3", "15");
INSERT INTO `wp_gf_form_view` VALUES("59669", "15", "2017-07-08 02:11:29", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("59670", "11", "2017-07-08 02:12:31", "217.182.132.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("59671", "10", "2017-07-08 03:29:28", "208.43.225.85", "3");
INSERT INTO `wp_gf_form_view` VALUES("59672", "8", "2017-07-08 03:29:31", "208.43.225.85", "3");
INSERT INTO `wp_gf_form_view` VALUES("59673", "15", "2017-07-08 03:29:47", "208.43.225.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("59674", "3", "2017-07-08 03:30:01", "208.43.225.85", "7");
INSERT INTO `wp_gf_form_view` VALUES("59675", "5", "2017-07-08 05:03:13", "77.75.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("59676", "3", "2017-07-08 06:09:04", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59677", "3", "2017-07-08 07:15:28", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("59678", "8", "2017-07-08 08:42:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59679", "3", "2017-07-08 08:42:40", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59680", "6", "2017-07-08 08:42:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59681", "9", "2017-07-08 08:42:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59682", "10", "2017-07-08 08:42:42", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59683", "15", "2017-07-08 08:42:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59684", "3", "2017-07-08 09:19:08", "217.182.132.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("59685", "8", "2017-07-08 10:15:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59686", "3", "2017-07-08 10:15:54", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59687", "6", "2017-07-08 10:15:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59688", "9", "2017-07-08 10:15:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59689", "10", "2017-07-08 10:15:56", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("59690", "15", "2017-07-08 10:15:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59691", "10", "2017-07-08 11:53:46", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59692", "8", "2017-07-08 12:05:59", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("59693", "10", "2017-07-08 14:26:06", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("59694", "3", "2017-07-08 15:40:36", "194.187.170.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("59695", "10", "2017-07-08 16:25:10", "194.187.170.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("59696", "3", "2017-07-08 16:38:24", "137.74.207.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("59697", "3", "2017-07-08 17:17:42", "180.76.15.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("59698", "3", "2017-07-08 18:07:13", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("59699", "3", "2017-07-08 19:04:43", "68.180.228.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("59700", "3", "2017-07-08 20:00:57", "51.255.65.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("59701", "3", "2017-07-08 21:17:58", "180.76.15.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("59702", "12", "2017-07-08 23:18:05", "217.182.132.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("59703", "3", "2017-07-09 00:38:00", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("59704", "3", "2017-07-09 01:09:23", "51.255.65.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("59705", "10", "2017-07-09 01:32:47", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("59706", "8", "2017-07-09 02:14:39", "40.77.167.58", "8");
INSERT INTO `wp_gf_form_view` VALUES("59707", "3", "2017-07-09 02:24:55", "5.188.211.35", "49");
INSERT INTO `wp_gf_form_view` VALUES("59708", "6", "2017-07-09 02:38:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59709", "9", "2017-07-09 02:38:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59710", "10", "2017-07-09 02:38:12", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59711", "15", "2017-07-09 02:38:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59712", "8", "2017-07-09 03:36:45", "184.69.31.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("59713", "3", "2017-07-09 03:37:27", "184.69.31.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("59714", "10", "2017-07-09 04:00:33", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59715", "3", "2017-07-09 05:16:33", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("59716", "10", "2017-07-09 05:36:06", "77.75.76.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("59717", "3", "2017-07-09 06:23:15", "180.76.15.27", "11");
INSERT INTO `wp_gf_form_view` VALUES("59718", "10", "2017-07-09 06:54:21", "157.55.39.85", "9");
INSERT INTO `wp_gf_form_view` VALUES("59719", "8", "2017-07-09 06:56:49", "40.77.167.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("59720", "8", "2017-07-09 07:09:57", "89.123.19.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("59721", "3", "2017-07-09 07:11:36", "89.123.19.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("59722", "10", "2017-07-09 08:17:28", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("59723", "3", "2017-07-09 08:36:26", "51.255.65.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("59724", "3", "2017-07-09 09:05:54", "5.9.98.130", "36");
INSERT INTO `wp_gf_form_view` VALUES("59725", "8", "2017-07-09 09:06:36", "5.9.98.130", "44");
INSERT INTO `wp_gf_form_view` VALUES("59726", "14", "2017-07-09 09:06:41", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("59727", "10", "2017-07-09 09:06:52", "5.9.98.130", "34");
INSERT INTO `wp_gf_form_view` VALUES("59728", "15", "2017-07-09 09:09:16", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("59729", "9", "2017-07-09 09:16:21", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("59730", "6", "2017-07-09 09:17:36", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("59731", "3", "2017-07-09 10:02:54", "5.9.98.130", "24");
INSERT INTO `wp_gf_form_view` VALUES("59732", "10", "2017-07-09 10:03:46", "5.9.98.130", "64");
INSERT INTO `wp_gf_form_view` VALUES("59733", "8", "2017-07-09 10:04:38", "5.9.98.130", "119");
INSERT INTO `wp_gf_form_view` VALUES("59734", "8", "2017-07-09 11:00:05", "5.9.98.130", "26");
INSERT INTO `wp_gf_form_view` VALUES("59735", "10", "2017-07-09 11:02:47", "5.9.98.130", "32");
INSERT INTO `wp_gf_form_view` VALUES("59736", "3", "2017-07-09 11:21:02", "213.127.117.93", "3");
INSERT INTO `wp_gf_form_view` VALUES("59737", "3", "2017-07-09 12:20:01", "5.9.98.130", "59");
INSERT INTO `wp_gf_form_view` VALUES("59738", "10", "2017-07-09 12:23:23", "5.9.98.130", "101");
INSERT INTO `wp_gf_form_view` VALUES("59739", "8", "2017-07-09 12:26:49", "5.9.98.130", "194");
INSERT INTO `wp_gf_form_view` VALUES("59740", "6", "2017-07-09 12:36:33", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("59741", "9", "2017-07-09 12:36:36", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("59742", "15", "2017-07-09 12:36:43", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("59743", "10", "2017-07-09 13:32:54", "5.9.98.130", "33");
INSERT INTO `wp_gf_form_view` VALUES("59744", "14", "2017-07-09 14:49:56", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("59745", "3", "2017-07-09 15:19:46", "5.9.98.130", "64");
INSERT INTO `wp_gf_form_view` VALUES("59746", "10", "2017-07-09 15:26:56", "5.9.98.130", "65");
INSERT INTO `wp_gf_form_view` VALUES("59747", "8", "2017-07-09 15:33:52", "5.9.98.130", "237");
INSERT INTO `wp_gf_form_view` VALUES("59748", "6", "2017-07-09 15:41:30", "51.255.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("59749", "8", "2017-07-09 16:00:00", "5.9.98.130", "149");
INSERT INTO `wp_gf_form_view` VALUES("59750", "10", "2017-07-09 16:02:03", "5.9.98.130", "133");
INSERT INTO `wp_gf_form_view` VALUES("59751", "3", "2017-07-09 16:05:20", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59752", "6", "2017-07-09 16:05:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59753", "9", "2017-07-09 16:05:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59754", "15", "2017-07-09 16:05:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59755", "10", "2017-07-09 17:47:05", "5.9.98.130", "64");
INSERT INTO `wp_gf_form_view` VALUES("59756", "3", "2017-07-09 18:17:46", "217.182.132.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("59757", "10", "2017-07-09 19:05:59", "51.255.65.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("59758", "3", "2017-07-09 19:21:15", "157.55.39.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("59759", "6", "2017-07-09 20:16:36", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("59760", "3", "2017-07-09 21:21:02", "5.9.98.130", "128");
INSERT INTO `wp_gf_form_view` VALUES("59761", "10", "2017-07-09 21:34:58", "5.9.98.130", "130");
INSERT INTO `wp_gf_form_view` VALUES("59762", "8", "2017-07-09 21:49:25", "5.9.98.130", "98");
INSERT INTO `wp_gf_form_view` VALUES("59763", "8", "2017-07-09 22:00:05", "5.9.98.130", "424");
INSERT INTO `wp_gf_form_view` VALUES("59764", "3", "2017-07-09 22:28:57", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59765", "6", "2017-07-09 22:28:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59766", "9", "2017-07-09 22:29:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59767", "10", "2017-07-09 22:29:05", "52.88.109.3", "133");
INSERT INTO `wp_gf_form_view` VALUES("59768", "15", "2017-07-09 22:29:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59769", "8", "2017-07-09 23:00:05", "5.9.98.130", "252");
INSERT INTO `wp_gf_form_view` VALUES("59770", "3", "2017-07-09 23:04:07", "52.88.109.3", "56");
INSERT INTO `wp_gf_form_view` VALUES("59771", "6", "2017-07-09 23:04:09", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59772", "9", "2017-07-09 23:04:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59773", "10", "2017-07-09 23:04:22", "52.88.109.3", "138");
INSERT INTO `wp_gf_form_view` VALUES("59774", "15", "2017-07-09 23:04:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59775", "10", "2017-07-10 00:20:30", "51.255.65.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("59776", "3", "2017-07-10 00:39:00", "164.132.161.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("59777", "3", "2017-07-10 01:03:10", "66.249.79.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("59778", "8", "2017-07-10 01:57:19", "185.29.10.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("59779", "10", "2017-07-10 01:59:14", "185.29.10.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("59780", "3", "2017-07-10 02:02:03", "185.29.10.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("59781", "10", "2017-07-10 02:19:37", "5.9.98.130", "129");
INSERT INTO `wp_gf_form_view` VALUES("59782", "14", "2017-07-10 03:03:09", "96.50.16.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("59783", "10", "2017-07-10 03:32:56", "194.187.170.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("59784", "3", "2017-07-10 04:12:12", "180.76.15.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("59785", "10", "2017-07-10 04:13:24", "194.187.170.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("59786", "8", "2017-07-10 05:06:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59787", "3", "2017-07-10 05:06:59", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59788", "6", "2017-07-10 05:06:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59789", "9", "2017-07-10 05:07:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59790", "10", "2017-07-10 05:07:04", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("59791", "15", "2017-07-10 05:07:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59792", "5", "2017-07-10 06:14:51", "51.255.71.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("59793", "8", "2017-07-10 06:36:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59794", "3", "2017-07-10 06:36:17", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("59795", "6", "2017-07-10 06:36:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59796", "9", "2017-07-10 06:36:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59797", "10", "2017-07-10 06:36:22", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("59798", "15", "2017-07-10 06:36:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59799", "3", "2017-07-10 07:20:38", "217.182.132.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("59800", "10", "2017-07-10 09:05:35", "180.76.15.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("59801", "3", "2017-07-10 10:14:07", "5.9.98.130", "257");
INSERT INTO `wp_gf_form_view` VALUES("59802", "10", "2017-07-10 10:42:15", "5.9.98.130", "163");
INSERT INTO `wp_gf_form_view` VALUES("59803", "10", "2017-07-10 11:00:03", "5.9.98.130", "94");
INSERT INTO `wp_gf_form_view` VALUES("59804", "8", "2017-07-10 11:10:09", "5.9.98.130", "454");
INSERT INTO `wp_gf_form_view` VALUES("59805", "3", "2017-07-10 11:23:50", "40.77.167.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("59806", "15", "2017-07-10 11:50:39", "180.76.15.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("59807", "8", "2017-07-10 12:00:00", "5.9.98.130", "538");
INSERT INTO `wp_gf_form_view` VALUES("59808", "3", "2017-07-10 12:14:17", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59809", "10", "2017-07-10 12:20:14", "157.55.39.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("59810", "9", "2017-07-10 12:20:21", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59811", "8", "2017-07-10 13:00:05", "5.9.98.130", "213");
INSERT INTO `wp_gf_form_view` VALUES("59812", "10", "2017-07-10 13:03:41", "5.9.98.130", "262");
INSERT INTO `wp_gf_form_view` VALUES("59813", "14", "2017-07-10 13:19:48", "75.157.168.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("59814", "3", "2017-07-10 13:30:42", "180.76.15.13", "27");
INSERT INTO `wp_gf_form_view` VALUES("59815", "6", "2017-07-10 13:51:11", "157.55.39.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("59816", "9", "2017-07-10 13:51:42", "207.46.13.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("59817", "8", "2017-07-10 14:00:00", "5.9.98.130", "333");
INSERT INTO `wp_gf_form_view` VALUES("59818", "10", "2017-07-10 14:37:49", "5.9.98.130", "198");
INSERT INTO `wp_gf_form_view` VALUES("59819", "3", "2017-07-10 14:58:30", "40.77.167.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("59820", "10", "2017-07-10 15:00:03", "5.9.98.130", "58");
INSERT INTO `wp_gf_form_view` VALUES("59821", "3", "2017-07-10 15:10:42", "180.76.15.32", "2");
INSERT INTO `wp_gf_form_view` VALUES("59822", "10", "2017-07-10 16:19:18", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59823", "14", "2017-07-10 16:53:07", "78.97.84.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("59824", "3", "2017-07-10 16:53:15", "78.97.84.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("59825", "8", "2017-07-10 16:54:18", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("59826", "10", "2017-07-10 17:17:13", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59827", "10", "2017-07-10 18:17:36", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59828", "10", "2017-07-10 19:18:01", "184.66.248.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("59829", "10", "2017-07-10 20:01:45", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("59830", "15", "2017-07-10 20:05:55", "180.76.15.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("59831", "14", "2017-07-10 20:25:22", "24.69.158.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59832", "3", "2017-07-10 20:39:10", "180.76.15.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("59833", "3", "2017-07-10 21:07:05", "64.180.188.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("59834", "10", "2017-07-10 21:18:32", "184.66.248.195", "258");
INSERT INTO `wp_gf_form_view` VALUES("59835", "10", "2017-07-10 22:18:52", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("59836", "8", "2017-07-10 23:33:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59837", "3", "2017-07-10 23:33:31", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59838", "6", "2017-07-10 23:33:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59839", "9", "2017-07-10 23:33:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59840", "10", "2017-07-10 23:33:34", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59841", "15", "2017-07-10 23:33:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59842", "3", "2017-07-11 01:37:05", "46.229.168.66", "96");
INSERT INTO `wp_gf_form_view` VALUES("59843", "11", "2017-07-11 01:38:29", "46.229.168.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("59844", "8", "2017-07-11 01:44:57", "46.229.168.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("59845", "6", "2017-07-11 01:44:59", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("59846", "9", "2017-07-11 01:45:03", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("59847", "10", "2017-07-11 01:45:06", "46.229.168.71", "19");
INSERT INTO `wp_gf_form_view` VALUES("59848", "15", "2017-07-11 01:45:09", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("59849", "3", "2017-07-11 02:20:36", "164.132.161.67", "2");
INSERT INTO `wp_gf_form_view` VALUES("59850", "3", "2017-07-11 03:02:41", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("59851", "10", "2017-07-11 03:29:18", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("59852", "10", "2017-07-11 04:26:32", "164.132.161.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59853", "5", "2017-07-11 04:30:16", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("59854", "8", "2017-07-11 04:54:19", "184.66.229.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("59855", "3", "2017-07-11 05:20:18", "217.182.132.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("59856", "10", "2017-07-11 06:07:11", "157.55.39.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("59857", "3", "2017-07-11 06:09:20", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("59858", "15", "2017-07-11 06:21:09", "184.66.154.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("59859", "10", "2017-07-11 07:24:45", "72.14.199.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("59860", "8", "2017-07-11 07:47:42", "51.254.190.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("59861", "3", "2017-07-11 07:50:16", "51.254.190.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("59862", "5", "2017-07-11 08:33:01", "77.75.77.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("59863", "3", "2017-07-11 08:53:38", "207.46.13.107", "3");
INSERT INTO `wp_gf_form_view` VALUES("59864", "10", "2017-07-11 09:21:37", "77.75.77.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("59865", "3", "2017-07-11 09:32:25", "180.76.15.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("59866", "10", "2017-07-11 10:15:01", "217.182.132.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("59867", "8", "2017-07-11 10:22:08", "217.182.132.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("59868", "10", "2017-07-11 13:03:47", "40.77.167.42", "6");
INSERT INTO `wp_gf_form_view` VALUES("59869", "8", "2017-07-11 13:27:42", "51.255.71.113", "3");
INSERT INTO `wp_gf_form_view` VALUES("59870", "3", "2017-07-11 13:52:13", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59871", "6", "2017-07-11 13:52:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59872", "9", "2017-07-11 13:52:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59873", "15", "2017-07-11 13:52:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59874", "3", "2017-07-11 14:20:00", "66.183.103.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("59875", "8", "2017-07-11 14:23:04", "180.76.15.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("59876", "10", "2017-07-11 14:24:47", "217.182.132.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("59877", "10", "2017-07-11 16:03:09", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59878", "14", "2017-07-11 16:38:19", "207.194.253.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("59879", "3", "2017-07-11 16:39:25", "164.132.161.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("59880", "10", "2017-07-11 18:02:53", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("59881", "3", "2017-07-11 18:10:47", "192.210.186.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("59882", "8", "2017-07-11 18:18:43", "207.194.133.9", "8");
INSERT INTO `wp_gf_form_view` VALUES("59883", "10", "2017-07-11 19:20:16", "51.255.65.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("59884", "15", "2017-07-11 19:28:22", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("59885", "3", "2017-07-11 19:49:18", "180.76.15.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("59886", "10", "2017-07-11 20:22:41", "180.76.15.32", "3");
INSERT INTO `wp_gf_form_view` VALUES("59887", "8", "2017-07-11 21:13:34", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("59888", "3", "2017-07-11 21:13:35", "52.88.109.3", "135");
INSERT INTO `wp_gf_form_view` VALUES("59889", "6", "2017-07-11 21:13:35", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59890", "9", "2017-07-11 21:13:37", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59891", "10", "2017-07-11 21:13:38", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("59892", "15", "2017-07-11 21:13:40", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59893", "14", "2017-07-11 21:41:19", "24.108.164.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("59894", "10", "2017-07-11 22:23:24", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59895", "3", "2017-07-11 23:18:00", "164.132.161.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("59896", "14", "2017-07-11 23:19:30", "23.245.152.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("59897", "10", "2017-07-11 23:23:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59898", "10", "2017-07-12 00:23:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59899", "10", "2017-07-12 01:02:09", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("59900", "10", "2017-07-12 02:23:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59901", "3", "2017-07-12 02:37:30", "137.74.207.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("59902", "10", "2017-07-12 03:23:24", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59903", "11", "2017-07-12 03:31:50", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("59904", "8", "2017-07-12 04:11:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59905", "3", "2017-07-12 04:11:34", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("59906", "6", "2017-07-12 04:11:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59907", "9", "2017-07-12 04:11:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59908", "10", "2017-07-12 04:11:40", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("59909", "15", "2017-07-12 04:11:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59910", "3", "2017-07-12 05:18:56", "180.76.15.150", "28");
INSERT INTO `wp_gf_form_view` VALUES("59911", "10", "2017-07-12 05:23:25", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("59912", "8", "2017-07-12 05:47:11", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59913", "6", "2017-07-12 05:47:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59914", "9", "2017-07-12 05:47:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59915", "15", "2017-07-12 05:47:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59916", "10", "2017-07-12 06:23:24", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("59917", "10", "2017-07-12 07:23:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59918", "3", "2017-07-12 07:49:57", "180.76.15.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("59919", "10", "2017-07-12 08:23:24", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59920", "10", "2017-07-12 09:23:25", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59921", "10", "2017-07-12 10:23:23", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59922", "3", "2017-07-12 10:26:54", "51.255.71.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("59923", "10", "2017-07-12 11:23:26", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59924", "10", "2017-07-12 12:00:22", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("59925", "3", "2017-07-12 12:26:39", "157.55.39.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("59926", "8", "2017-07-12 12:37:52", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("59927", "10", "2017-07-12 13:19:21", "164.132.162.159", "3");
INSERT INTO `wp_gf_form_view` VALUES("59928", "5", "2017-07-12 13:37:45", "77.75.78.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("59929", "3", "2017-07-12 13:54:29", "180.76.15.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("59930", "10", "2017-07-12 14:15:30", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("59931", "3", "2017-07-12 14:59:58", "164.132.161.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("59932", "3", "2017-07-12 15:09:04", "217.182.132.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("59933", "14", "2017-07-12 15:13:38", "51.255.65.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("59934", "10", "2017-07-12 15:23:23", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59935", "3", "2017-07-12 16:10:46", "142.25.27.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("59936", "10", "2017-07-12 16:23:25", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59937", "10", "2017-07-12 17:23:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59938", "8", "2017-07-12 17:47:54", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("59939", "10", "2017-07-12 18:23:24", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59940", "3", "2017-07-12 18:54:28", "180.76.15.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("59941", "15", "2017-07-12 19:02:58", "207.46.13.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("59942", "10", "2017-07-12 19:23:26", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("59943", "3", "2017-07-12 19:38:15", "137.74.207.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("59944", "14", "2017-07-12 19:56:39", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("59945", "10", "2017-07-12 20:02:40", "66.249.79.137", "4");
INSERT INTO `wp_gf_form_view` VALUES("59946", "8", "2017-07-12 20:07:19", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("59947", "3", "2017-07-12 20:09:52", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("59948", "3", "2017-07-12 21:07:47", "180.76.15.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("59949", "10", "2017-07-12 21:23:26", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59950", "10", "2017-07-12 22:23:23", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59951", "3", "2017-07-12 23:01:45", "142.104.18.238", "29");
INSERT INTO `wp_gf_form_view` VALUES("59952", "8", "2017-07-12 23:02:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59953", "6", "2017-07-12 23:02:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59954", "9", "2017-07-12 23:02:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59955", "10", "2017-07-12 23:02:57", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("59956", "15", "2017-07-12 23:02:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59957", "10", "2017-07-13 00:23:26", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59958", "3", "2017-07-13 00:27:55", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("59959", "10", "2017-07-13 01:23:26", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59960", "14", "2017-07-13 01:35:13", "209.52.88.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("59961", "10", "2017-07-13 02:15:46", "217.182.132.62", "4");
INSERT INTO `wp_gf_form_view` VALUES("59962", "10", "2017-07-13 03:23:26", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59963", "10", "2017-07-13 04:04:54", "217.182.132.149", "7");
INSERT INTO `wp_gf_form_view` VALUES("59964", "8", "2017-07-13 04:20:10", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("59965", "9", "2017-07-13 04:28:45", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("59966", "3", "2017-07-13 04:30:54", "164.132.161.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("59967", "8", "2017-07-13 05:08:45", "217.182.132.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("59968", "3", "2017-07-13 05:15:48", "207.46.13.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("59969", "10", "2017-07-13 05:22:43", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("59970", "3", "2017-07-13 06:07:22", "207.46.13.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("59971", "10", "2017-07-13 06:23:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59972", "3", "2017-07-13 07:16:46", "40.77.167.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("59973", "10", "2017-07-13 07:16:56", "157.55.39.85", "9");
INSERT INTO `wp_gf_form_view` VALUES("59974", "10", "2017-07-13 08:23:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59975", "3", "2017-07-13 08:56:19", "180.76.15.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("59976", "10", "2017-07-13 09:23:26", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("59977", "10", "2017-07-13 10:23:24", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("59978", "10", "2017-07-13 11:51:53", "217.182.132.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("59979", "3", "2017-07-13 11:55:42", "51.255.65.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("59980", "10", "2017-07-13 12:01:09", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("59981", "8", "2017-07-13 13:04:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("59982", "3", "2017-07-13 13:04:07", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("59983", "6", "2017-07-13 13:04:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59984", "9", "2017-07-13 13:04:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59985", "10", "2017-07-13 13:04:10", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("59986", "15", "2017-07-13 13:04:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("59987", "10", "2017-07-13 14:23:49", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("59988", "14", "2017-07-13 15:28:55", "24.68.52.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("59989", "10", "2017-07-13 15:50:16", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("59990", "10", "2017-07-13 16:20:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59991", "3", "2017-07-13 17:05:32", "217.182.132.34", "3");
INSERT INTO `wp_gf_form_view` VALUES("59992", "10", "2017-07-13 17:09:44", "137.74.207.109", "3");
INSERT INTO `wp_gf_form_view` VALUES("59993", "3", "2017-07-13 18:08:40", "77.75.78.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("59994", "10", "2017-07-13 18:20:51", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59995", "10", "2017-07-13 19:20:48", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("59996", "14", "2017-07-13 19:32:26", "181.214.10.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("59997", "10", "2017-07-13 20:01:19", "157.55.39.250", "24");
INSERT INTO `wp_gf_form_view` VALUES("59998", "8", "2017-07-13 20:20:06", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("59999", "3", "2017-07-13 20:20:07", "52.88.109.3", "111");
INSERT INTO `wp_gf_form_view` VALUES("60000", "6", "2017-07-13 20:20:08", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60001", "9", "2017-07-13 20:20:11", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60002", "15", "2017-07-13 20:20:18", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60003", "15", "2017-07-13 21:15:19", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("60004", "10", "2017-07-13 21:20:51", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("60005", "9", "2017-07-13 21:31:15", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60006", "3", "2017-07-13 21:43:14", "180.76.15.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("60007", "10", "2017-07-13 22:20:55", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("60008", "6", "2017-07-13 22:49:54", "180.76.15.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("60009", "14", "2017-07-13 23:19:26", "70.66.168.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("60010", "10", "2017-07-13 23:43:01", "77.75.77.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("60011", "14", "2017-07-14 00:09:21", "70.67.52.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("60012", "10", "2017-07-14 01:09:48", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("60013", "8", "2017-07-14 01:20:15", "220.181.108.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("60014", "3", "2017-07-14 01:43:30", "184.69.99.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("60015", "3", "2017-07-14 02:33:20", "217.182.132.177", "28");
INSERT INTO `wp_gf_form_view` VALUES("60016", "8", "2017-07-14 02:58:44", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60017", "6", "2017-07-14 02:58:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60018", "9", "2017-07-14 02:58:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60019", "10", "2017-07-14 02:58:46", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60020", "15", "2017-07-14 02:58:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60021", "12", "2017-07-14 03:32:30", "180.76.15.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("60022", "10", "2017-07-14 04:35:10", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("60023", "8", "2017-07-14 04:41:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60024", "3", "2017-07-14 04:41:26", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60025", "6", "2017-07-14 04:41:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60026", "9", "2017-07-14 04:41:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60027", "15", "2017-07-14 04:41:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60028", "14", "2017-07-14 05:06:49", "24.69.140.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("60029", "5", "2017-07-14 06:10:37", "77.75.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("60030", "10", "2017-07-14 06:28:53", "72.14.199.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("60031", "9", "2017-07-14 06:55:45", "217.182.91.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("60032", "3", "2017-07-14 07:35:04", "66.249.79.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("60033", "10", "2017-07-14 08:36:48", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60034", "8", "2017-07-14 08:58:41", "180.76.15.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("60035", "8", "2017-07-14 09:12:04", "40.77.167.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60036", "3", "2017-07-14 09:12:05", "40.77.167.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60037", "6", "2017-07-14 09:12:05", "40.77.167.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60038", "9", "2017-07-14 09:12:06", "40.77.167.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60039", "10", "2017-07-14 09:12:07", "40.77.167.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60040", "15", "2017-07-14 09:12:09", "40.77.167.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60041", "3", "2017-07-14 10:11:30", "108.172.127.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("60042", "10", "2017-07-14 10:42:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60043", "8", "2017-07-14 11:51:47", "164.132.161.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("60044", "10", "2017-07-14 12:00:19", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60045", "3", "2017-07-14 12:13:05", "164.132.161.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("60046", "15", "2017-07-14 13:59:19", "137.74.207.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("60047", "3", "2017-07-14 18:30:19", "77.75.79.32", "2");
INSERT INTO `wp_gf_form_view` VALUES("60048", "10", "2017-07-14 18:36:42", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60049", "10", "2017-07-14 19:51:50", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60050", "3", "2017-07-14 20:08:27", "207.46.13.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("60051", "10", "2017-07-14 20:42:45", "68.180.228.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("60052", "10", "2017-07-14 21:03:52", "199.59.150.183", "8");
INSERT INTO `wp_gf_form_view` VALUES("60053", "9", "2017-07-14 21:13:02", "99.238.37.90", "7");
INSERT INTO `wp_gf_form_view` VALUES("60054", "8", "2017-07-14 21:45:44", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60055", "3", "2017-07-14 21:45:44", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("60056", "6", "2017-07-14 21:45:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60057", "15", "2017-07-14 21:45:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60058", "10", "2017-07-14 22:04:31", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("60059", "14", "2017-07-14 23:36:21", "180.76.15.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("60060", "8", "2017-07-15 00:18:27", "50.62.143.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("60061", "3", "2017-07-15 00:20:02", "50.62.143.234", "3");
INSERT INTO `wp_gf_form_view` VALUES("60062", "3", "2017-07-15 01:14:43", "207.46.13.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("60063", "3", "2017-07-15 02:11:39", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60064", "10", "2017-07-15 02:16:47", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60065", "3", "2017-07-15 03:07:20", "104.198.249.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("60066", "14", "2017-07-15 04:22:05", "24.69.158.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("60067", "12", "2017-07-15 04:43:50", "180.76.15.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("60068", "3", "2017-07-15 05:05:46", "35.184.210.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("60069", "14", "2017-07-15 05:20:39", "24.69.140.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("60070", "10", "2017-07-15 05:50:47", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60071", "8", "2017-07-15 06:21:10", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("60072", "10", "2017-07-15 06:30:03", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("60073", "3", "2017-07-15 08:10:44", "207.46.13.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("60074", "10", "2017-07-15 08:33:56", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60075", "9", "2017-07-15 08:55:55", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60076", "3", "2017-07-15 09:32:21", "164.132.162.153", "7");
INSERT INTO `wp_gf_form_view` VALUES("60077", "9", "2017-07-15 09:43:51", "180.76.15.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("60078", "8", "2017-07-15 09:52:09", "176.31.126.56", "9");
INSERT INTO `wp_gf_form_view` VALUES("60079", "14", "2017-07-15 09:52:15", "176.31.126.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("60080", "3", "2017-07-15 10:17:15", "180.76.15.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("60081", "10", "2017-07-15 10:25:26", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("60082", "8", "2017-07-15 11:48:43", "77.75.78.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("60083", "3", "2017-07-15 11:58:04", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60084", "6", "2017-07-15 11:58:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60085", "9", "2017-07-15 11:58:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60086", "10", "2017-07-15 11:58:07", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60087", "15", "2017-07-15 11:58:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60088", "10", "2017-07-15 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60089", "3", "2017-07-15 13:05:32", "157.55.39.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("60090", "5", "2017-07-15 13:33:41", "40.77.167.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("60091", "10", "2017-07-15 13:42:50", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("60092", "10", "2017-07-15 14:26:11", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60093", "3", "2017-07-15 14:48:25", "40.77.167.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60094", "10", "2017-07-15 15:15:19", "217.182.132.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("60095", "3", "2017-07-15 15:47:39", "180.76.15.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("60096", "10", "2017-07-15 16:08:38", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("60097", "3", "2017-07-15 17:31:01", "40.77.167.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60098", "14", "2017-07-15 17:40:03", "184.66.246.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("60099", "8", "2017-07-15 17:46:15", "207.46.13.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("60100", "10", "2017-07-15 18:01:02", "180.76.15.22", "6");
INSERT INTO `wp_gf_form_view` VALUES("60101", "3", "2017-07-15 18:07:31", "35.192.136.76", "28");
INSERT INTO `wp_gf_form_view` VALUES("60102", "8", "2017-07-15 18:34:18", "180.76.15.136", "3");
INSERT INTO `wp_gf_form_view` VALUES("60103", "6", "2017-07-15 18:57:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60104", "9", "2017-07-15 18:57:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60105", "15", "2017-07-15 18:57:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60106", "3", "2017-07-15 19:07:44", "180.76.15.14", "57");
INSERT INTO `wp_gf_form_view` VALUES("60107", "8", "2017-07-15 19:36:10", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("60108", "8", "2017-07-15 19:36:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60109", "6", "2017-07-15 19:36:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60110", "6", "2017-07-15 19:36:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60111", "9", "2017-07-15 19:36:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60112", "10", "2017-07-15 19:36:16", "52.88.109.3", "11");
INSERT INTO `wp_gf_form_view` VALUES("60113", "15", "2017-07-15 19:36:21", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60114", "7", "2017-07-15 20:14:18", "180.76.15.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("60115", "3", "2017-07-15 20:14:35", "157.55.39.250", "19");
INSERT INTO `wp_gf_form_view` VALUES("60116", "10", "2017-07-15 20:14:40", "157.55.39.250", "3");
INSERT INTO `wp_gf_form_view` VALUES("60117", "11", "2017-07-15 20:16:44", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60118", "9", "2017-07-15 20:17:09", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60119", "5", "2017-07-15 20:17:38", "40.77.167.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60120", "8", "2017-07-15 20:36:57", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60121", "3", "2017-07-15 21:00:15", "51.255.65.89", "26");
INSERT INTO `wp_gf_form_view` VALUES("60122", "14", "2017-07-15 21:29:13", "104.131.78.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("60123", "6", "2017-07-15 21:33:43", "104.131.78.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("60124", "10", "2017-07-15 21:35:59", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("60125", "8", "2017-07-15 21:36:19", "104.131.78.25", "59");
INSERT INTO `wp_gf_form_view` VALUES("60126", "9", "2017-07-15 21:50:20", "104.131.78.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("60127", "15", "2017-07-15 21:55:13", "104.131.78.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("60128", "8", "2017-07-15 22:00:25", "104.131.78.25", "140");
INSERT INTO `wp_gf_form_view` VALUES("60129", "3", "2017-07-15 22:01:04", "104.131.78.25", "52");
INSERT INTO `wp_gf_form_view` VALUES("60130", "10", "2017-07-15 22:05:40", "104.131.78.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("60131", "8", "2017-07-15 23:34:09", "77.75.79.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("60132", "10", "2017-07-16 00:27:00", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("60133", "10", "2017-07-16 01:09:09", "24.108.13.92", "7");
INSERT INTO `wp_gf_form_view` VALUES("60134", "3", "2017-07-16 01:12:37", "207.46.13.24", "30");
INSERT INTO `wp_gf_form_view` VALUES("60135", "15", "2017-07-16 01:52:17", "207.46.13.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("60136", "8", "2017-07-16 01:53:20", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60137", "6", "2017-07-16 01:53:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60138", "9", "2017-07-16 01:53:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60139", "10", "2017-07-16 02:53:03", "207.46.13.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("60140", "3", "2017-07-16 02:53:12", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60141", "8", "2017-07-16 03:30:50", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("60142", "3", "2017-07-16 03:30:50", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60143", "6", "2017-07-16 03:30:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60144", "9", "2017-07-16 03:30:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60145", "10", "2017-07-16 03:30:56", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60146", "15", "2017-07-16 03:30:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60147", "3", "2017-07-16 04:21:53", "77.75.78.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("60148", "10", "2017-07-16 06:06:36", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("60149", "11", "2017-07-16 06:27:52", "164.132.161.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("60150", "3", "2017-07-16 06:37:48", "164.132.161.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("60151", "3", "2017-07-16 07:38:04", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("60152", "10", "2017-07-16 10:29:46", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("60153", "3", "2017-07-16 11:03:45", "51.255.71.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("60154", "9", "2017-07-16 11:19:59", "180.76.15.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("60155", "10", "2017-07-16 12:00:23", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60156", "10", "2017-07-16 13:03:49", "164.132.161.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("60157", "9", "2017-07-16 13:08:21", "164.132.162.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("60158", "3", "2017-07-16 13:11:28", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("60159", "10", "2017-07-16 14:20:52", "72.14.199.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("60160", "8", "2017-07-16 15:19:22", "207.46.13.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("60161", "12", "2017-07-16 15:32:39", "217.182.132.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("60162", "8", "2017-07-16 16:21:54", "66.249.79.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("60163", "3", "2017-07-16 16:21:54", "66.249.79.135", "22");
INSERT INTO `wp_gf_form_view` VALUES("60164", "10", "2017-07-16 16:21:56", "66.249.79.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("60165", "15", "2017-07-16 16:21:58", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60166", "11", "2017-07-16 17:47:34", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60167", "3", "2017-07-16 17:50:38", "188.40.46.135", "9");
INSERT INTO `wp_gf_form_view` VALUES("60168", "10", "2017-07-16 17:52:37", "188.40.46.135", "13");
INSERT INTO `wp_gf_form_view` VALUES("60169", "8", "2017-07-16 17:59:29", "188.40.46.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("60170", "8", "2017-07-16 18:00:06", "188.40.46.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("60171", "3", "2017-07-16 18:01:11", "188.40.46.135", "48");
INSERT INTO `wp_gf_form_view` VALUES("60172", "10", "2017-07-16 18:03:01", "188.40.46.135", "12");
INSERT INTO `wp_gf_form_view` VALUES("60173", "15", "2017-07-16 18:03:26", "188.40.46.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("60174", "6", "2017-07-16 18:03:38", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60175", "9", "2017-07-16 18:03:39", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60176", "5", "2017-07-16 18:13:41", "194.187.170.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("60177", "8", "2017-07-16 19:48:15", "104.192.7.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("60178", "3", "2017-07-16 19:49:53", "104.192.7.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("60179", "7", "2017-07-16 20:19:32", "180.76.15.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("60180", "10", "2017-07-16 20:28:39", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("60181", "15", "2017-07-16 20:35:15", "68.180.228.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("60182", "8", "2017-07-16 20:50:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60183", "3", "2017-07-16 20:50:56", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60184", "6", "2017-07-16 20:50:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60185", "9", "2017-07-16 20:50:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60186", "3", "2017-07-16 21:00:33", "217.69.133.225", "2");
INSERT INTO `wp_gf_form_view` VALUES("60187", "14", "2017-07-16 21:26:17", "180.76.15.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("60188", "3", "2017-07-16 22:47:59", "164.132.161.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("60189", "3", "2017-07-16 23:44:46", "51.255.65.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("60190", "3", "2017-07-17 00:18:44", "164.132.161.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("60191", "10", "2017-07-17 01:24:43", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60192", "10", "2017-07-17 02:10:54", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60193", "14", "2017-07-17 02:25:18", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("60194", "10", "2017-07-17 03:51:55", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("60195", "11", "2017-07-17 03:58:14", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60196", "10", "2017-07-17 04:07:28", "66.249.79.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("60197", "3", "2017-07-17 05:20:36", "164.132.161.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("60198", "8", "2017-07-17 05:52:03", "75.157.174.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("60199", "3", "2017-07-17 06:15:01", "180.76.15.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("60200", "10", "2017-07-17 08:49:08", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60201", "3", "2017-07-17 09:01:22", "180.76.15.146", "3");
INSERT INTO `wp_gf_form_view` VALUES("60202", "8", "2017-07-17 09:25:03", "51.255.71.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("60203", "10", "2017-07-17 11:05:33", "66.249.79.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("60204", "8", "2017-07-17 11:16:09", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60205", "3", "2017-07-17 11:16:10", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60206", "6", "2017-07-17 11:16:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60207", "9", "2017-07-17 11:16:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60208", "15", "2017-07-17 11:16:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60209", "10", "2017-07-17 12:00:25", "184.66.129.248", "18");
INSERT INTO `wp_gf_form_view` VALUES("60210", "9", "2017-07-17 12:02:54", "180.76.15.146", "3");
INSERT INTO `wp_gf_form_view` VALUES("60211", "3", "2017-07-17 12:27:11", "46.229.168.75", "61");
INSERT INTO `wp_gf_form_view` VALUES("60212", "8", "2017-07-17 12:27:29", "46.229.168.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("60213", "6", "2017-07-17 12:27:29", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("60214", "15", "2017-07-17 12:27:34", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("60215", "3", "2017-07-17 13:39:13", "51.255.65.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("60216", "10", "2017-07-17 14:26:00", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60217", "8", "2017-07-17 14:43:24", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("60218", "14", "2017-07-17 14:43:29", "217.23.14.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("60219", "3", "2017-07-17 15:25:42", "207.46.13.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("60220", "10", "2017-07-17 15:50:30", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("60221", "10", "2017-07-17 16:26:54", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60222", "5", "2017-07-17 18:04:26", "164.132.161.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("60223", "10", "2017-07-17 18:24:02", "199.59.150.180", "7");
INSERT INTO `wp_gf_form_view` VALUES("60224", "8", "2017-07-17 18:37:42", "180.76.15.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("60225", "3", "2017-07-17 18:38:38", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60226", "6", "2017-07-17 18:38:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60227", "9", "2017-07-17 18:38:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60228", "15", "2017-07-17 18:38:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60229", "8", "2017-07-17 19:19:23", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60230", "3", "2017-07-17 19:19:24", "52.88.109.3", "55");
INSERT INTO `wp_gf_form_view` VALUES("60231", "6", "2017-07-17 19:19:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60232", "9", "2017-07-17 19:19:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60233", "10", "2017-07-17 19:19:33", "52.88.109.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("60234", "10", "2017-07-17 19:19:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60235", "15", "2017-07-17 19:19:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60236", "10", "2017-07-17 20:28:37", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60237", "15", "2017-07-17 20:43:02", "207.46.13.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("60238", "3", "2017-07-17 21:14:38", "207.46.13.24", "16");
INSERT INTO `wp_gf_form_view` VALUES("60239", "10", "2017-07-17 21:15:06", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60240", "11", "2017-07-17 21:16:28", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60241", "9", "2017-07-17 21:16:46", "157.55.39.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("60242", "8", "2017-07-17 21:46:58", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("60243", "10", "2017-07-17 22:29:21", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60244", "14", "2017-07-17 22:47:06", "104.129.4.32", "2");
INSERT INTO `wp_gf_form_view` VALUES("60245", "14", "2017-07-18 00:07:09", "70.67.111.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("60246", "10", "2017-07-18 00:30:09", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60247", "8", "2017-07-18 00:48:13", "77.75.76.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("60248", "3", "2017-07-18 00:53:06", "164.132.161.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("60249", "6", "2017-07-18 00:53:15", "217.182.132.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("60250", "3", "2017-07-18 01:22:39", "164.132.161.84", "29");
INSERT INTO `wp_gf_form_view` VALUES("60251", "8", "2017-07-18 01:44:08", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60252", "6", "2017-07-18 01:44:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60253", "9", "2017-07-18 01:44:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60254", "10", "2017-07-18 01:44:10", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60255", "15", "2017-07-18 01:44:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60256", "3", "2017-07-18 02:29:36", "217.182.132.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("60257", "10", "2017-07-18 02:31:01", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60258", "14", "2017-07-18 02:55:55", "184.66.255.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("60259", "14", "2017-07-18 03:05:09", "184.66.255.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("60260", "8", "2017-07-18 03:33:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60261", "3", "2017-07-18 03:33:28", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60262", "6", "2017-07-18 03:33:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60263", "9", "2017-07-18 03:33:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60264", "10", "2017-07-18 03:33:30", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60265", "15", "2017-07-18 03:33:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60266", "3", "2017-07-18 04:00:24", "180.76.15.150", "2");
INSERT INTO `wp_gf_form_view` VALUES("60267", "10", "2017-07-18 04:09:12", "72.14.199.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("60268", "3", "2017-07-18 05:19:11", "180.76.15.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("60269", "10", "2017-07-18 06:01:10", "151.80.27.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("60270", "3", "2017-07-18 06:41:15", "164.132.161.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("60271", "15", "2017-07-18 08:33:23", "180.76.15.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("60272", "10", "2017-07-18 08:33:28", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60273", "10", "2017-07-18 10:34:17", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60274", "10", "2017-07-18 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60275", "6", "2017-07-18 13:08:09", "180.76.15.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("60276", "5", "2017-07-18 13:41:31", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("60277", "3", "2017-07-18 13:42:47", "157.55.39.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("60278", "10", "2017-07-18 14:04:28", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("60279", "8", "2017-07-18 14:12:01", "164.132.161.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("60280", "3", "2017-07-18 14:46:46", "207.46.13.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("60281", "3", "2017-07-18 15:07:33", "180.76.15.21", "3");
INSERT INTO `wp_gf_form_view` VALUES("60282", "10", "2017-07-18 15:19:53", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("60283", "3", "2017-07-18 16:09:51", "137.74.207.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("60284", "10", "2017-07-18 16:26:59", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60285", "14", "2017-07-18 16:51:13", "75.154.237.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("60286", "10", "2017-07-18 17:00:01", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("60287", "8", "2017-07-18 17:08:57", "205.250.181.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("60288", "14", "2017-07-18 17:26:15", "184.66.255.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("60289", "3", "2017-07-18 17:36:17", "180.76.15.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("60290", "10", "2017-07-18 18:27:54", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60291", "10", "2017-07-18 20:28:43", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60292", "3", "2017-07-18 21:23:31", "217.182.132.32", "55");
INSERT INTO `wp_gf_form_view` VALUES("60293", "8", "2017-07-18 21:36:45", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60294", "6", "2017-07-18 21:36:46", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60295", "9", "2017-07-18 21:36:48", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60296", "10", "2017-07-18 21:36:51", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("60297", "15", "2017-07-18 21:36:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60298", "3", "2017-07-18 22:06:48", "180.76.15.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("60299", "10", "2017-07-18 22:29:31", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60300", "3", "2017-07-18 23:13:29", "63.243.252.153", "55");
INSERT INTO `wp_gf_form_view` VALUES("60301", "8", "2017-07-18 23:15:03", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60302", "6", "2017-07-18 23:15:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60303", "9", "2017-07-18 23:15:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60304", "10", "2017-07-18 23:15:07", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("60305", "15", "2017-07-18 23:15:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60306", "5", "2017-07-19 00:08:09", "77.75.78.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("60307", "14", "2017-07-19 00:09:09", "24.244.32.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("60308", "10", "2017-07-19 00:17:42", "217.182.132.64", "3");
INSERT INTO `wp_gf_form_view` VALUES("60309", "12", "2017-07-19 00:21:55", "207.46.13.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("60310", "3", "2017-07-19 00:43:47", "159.203.161.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("60311", "10", "2017-07-19 02:31:09", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60312", "10", "2017-07-19 03:51:08", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60313", "3", "2017-07-19 04:48:42", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60314", "10", "2017-07-19 05:11:54", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60315", "3", "2017-07-19 05:27:43", "180.76.15.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("60316", "10", "2017-07-19 06:19:49", "72.14.199.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("60317", "10", "2017-07-19 07:12:45", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60318", "3", "2017-07-19 08:08:38", "164.132.161.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("60319", "10", "2017-07-19 09:13:39", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60320", "3", "2017-07-19 10:28:31", "199.47.87.140", "63");
INSERT INTO `wp_gf_form_view` VALUES("60321", "8", "2017-07-19 10:28:53", "199.47.87.140", "11");
INSERT INTO `wp_gf_form_view` VALUES("60322", "6", "2017-07-19 10:28:54", "199.47.87.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("60323", "9", "2017-07-19 10:28:56", "199.47.87.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("60324", "10", "2017-07-19 10:28:57", "199.47.87.140", "12");
INSERT INTO `wp_gf_form_view` VALUES("60325", "15", "2017-07-19 10:28:59", "199.47.87.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("60326", "14", "2017-07-19 10:30:51", "199.47.87.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("60327", "10", "2017-07-19 11:14:28", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60328", "10", "2017-07-19 12:00:15", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("60329", "8", "2017-07-19 12:21:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60330", "3", "2017-07-19 12:21:07", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("60331", "6", "2017-07-19 12:21:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60332", "9", "2017-07-19 12:21:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60333", "15", "2017-07-19 12:21:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60334", "3", "2017-07-19 13:41:13", "207.46.13.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("60335", "10", "2017-07-19 14:25:56", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60336", "3", "2017-07-19 14:28:41", "96.50.52.144", "2");
INSERT INTO `wp_gf_form_view` VALUES("60337", "3", "2017-07-19 15:23:05", "180.76.15.140", "22");
INSERT INTO `wp_gf_form_view` VALUES("60338", "10", "2017-07-19 15:40:01", "157.55.39.198", "3");
INSERT INTO `wp_gf_form_view` VALUES("60339", "5", "2017-07-19 15:41:12", "157.55.39.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("60340", "11", "2017-07-19 15:42:29", "40.77.167.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("60341", "9", "2017-07-19 15:43:12", "40.77.167.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("60342", "10", "2017-07-19 16:26:44", "184.66.129.248", "11");
INSERT INTO `wp_gf_form_view` VALUES("60343", "8", "2017-07-19 16:53:33", "192.210.164.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("60344", "3", "2017-07-19 16:53:33", "192.210.164.77", "54");
INSERT INTO `wp_gf_form_view` VALUES("60345", "6", "2017-07-19 16:53:34", "192.210.164.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("60346", "9", "2017-07-19 16:53:35", "192.210.164.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("60347", "15", "2017-07-19 16:53:41", "192.210.164.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("60348", "3", "2017-07-19 17:21:14", "207.46.13.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("60349", "10", "2017-07-19 18:14:48", "72.14.199.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("60350", "3", "2017-07-19 18:43:19", "217.182.132.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("60351", "14", "2017-07-19 19:50:40", "189.122.176.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("60352", "8", "2017-07-19 19:55:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60353", "3", "2017-07-19 19:55:59", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60354", "6", "2017-07-19 19:56:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60355", "9", "2017-07-19 19:56:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60356", "10", "2017-07-19 19:56:04", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60357", "15", "2017-07-19 19:56:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60358", "8", "2017-07-19 20:10:30", "157.55.39.198", "6");
INSERT INTO `wp_gf_form_view` VALUES("60359", "3", "2017-07-19 20:10:30", "157.55.39.198", "82");
INSERT INTO `wp_gf_form_view` VALUES("60360", "6", "2017-07-19 20:10:31", "157.55.39.198", "3");
INSERT INTO `wp_gf_form_view` VALUES("60361", "9", "2017-07-19 20:10:33", "157.55.39.198", "3");
INSERT INTO `wp_gf_form_view` VALUES("60362", "10", "2017-07-19 20:10:36", "157.55.39.198", "18");
INSERT INTO `wp_gf_form_view` VALUES("60363", "15", "2017-07-19 20:10:42", "157.55.39.198", "3");
INSERT INTO `wp_gf_form_view` VALUES("60364", "14", "2017-07-19 21:17:37", "72.93.213.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("60365", "3", "2017-07-19 21:41:25", "180.76.15.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("60366", "10", "2017-07-19 22:12:16", "207.46.13.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("60367", "14", "2017-07-19 22:35:04", "193.201.224.225", "2");
INSERT INTO `wp_gf_form_view` VALUES("60368", "14", "2017-07-19 23:06:45", "206.87.160.235", "2");
INSERT INTO `wp_gf_form_view` VALUES("60369", "3", "2017-07-19 23:28:10", "157.55.39.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("60370", "10", "2017-07-19 23:41:29", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60371", "3", "2017-07-20 00:26:14", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60372", "10", "2017-07-20 01:42:18", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60373", "3", "2017-07-20 02:35:13", "24.69.138.197", "2");
INSERT INTO `wp_gf_form_view` VALUES("60374", "8", "2017-07-20 03:09:56", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60375", "3", "2017-07-20 03:09:57", "52.88.109.3", "55");
INSERT INTO `wp_gf_form_view` VALUES("60376", "6", "2017-07-20 03:09:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60377", "9", "2017-07-20 03:09:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60378", "10", "2017-07-20 03:09:59", "52.88.109.3", "11");
INSERT INTO `wp_gf_form_view` VALUES("60379", "15", "2017-07-20 03:10:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60380", "14", "2017-07-20 03:24:45", "64.180.20.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("60381", "8", "2017-07-20 04:51:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60382", "3", "2017-07-20 04:51:44", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60383", "6", "2017-07-20 04:51:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60384", "9", "2017-07-20 04:51:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60385", "10", "2017-07-20 04:51:51", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60386", "15", "2017-07-20 04:51:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60387", "3", "2017-07-20 05:11:23", "51.255.71.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("60388", "10", "2017-07-20 05:43:53", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60389", "14", "2017-07-20 05:52:17", "191.101.112.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("60390", "10", "2017-07-20 06:18:16", "164.132.161.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("60391", "3", "2017-07-20 07:33:42", "180.76.15.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("60392", "10", "2017-07-20 07:44:44", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60393", "8", "2017-07-20 08:27:10", "40.77.167.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("60394", "10", "2017-07-20 08:50:26", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("60395", "10", "2017-07-20 09:45:33", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60396", "8", "2017-07-20 11:04:25", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("60397", "3", "2017-07-20 11:06:17", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("60398", "10", "2017-07-20 11:46:27", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60399", "10", "2017-07-20 12:00:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60400", "3", "2017-07-20 12:15:24", "51.255.71.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("60401", "10", "2017-07-20 13:00:24", "66.249.79.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("60402", "10", "2017-07-20 14:26:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60403", "15", "2017-07-20 14:29:02", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("60404", "3", "2017-07-20 14:46:50", "180.76.15.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("60405", "10", "2017-07-20 15:12:26", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("60406", "3", "2017-07-20 15:18:02", "24.108.13.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60407", "14", "2017-07-20 15:36:09", "164.132.161.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("60408", "10", "2017-07-20 16:27:02", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60409", "3", "2017-07-20 17:19:39", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("60410", "8", "2017-07-20 17:20:03", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("60411", "3", "2017-07-20 18:06:52", "180.76.15.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("60412", "10", "2017-07-20 18:27:52", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60413", "3", "2017-07-20 19:28:58", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60414", "3", "2017-07-20 20:11:34", "157.55.39.198", "3");
INSERT INTO `wp_gf_form_view` VALUES("60415", "10", "2017-07-20 20:16:32", "180.76.15.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("60416", "8", "2017-07-20 20:20:12", "104.192.7.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60417", "10", "2017-07-20 21:11:08", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60418", "3", "2017-07-20 21:24:16", "217.182.132.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("60419", "3", "2017-07-20 22:58:26", "217.182.132.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("60420", "10", "2017-07-20 22:59:52", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("60421", "8", "2017-07-20 23:03:29", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60422", "3", "2017-07-20 23:03:29", "52.88.109.3", "54");
INSERT INTO `wp_gf_form_view` VALUES("60423", "6", "2017-07-20 23:03:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60424", "9", "2017-07-20 23:03:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60425", "10", "2017-07-20 23:03:32", "52.88.109.3", "11");
INSERT INTO `wp_gf_form_view` VALUES("60426", "15", "2017-07-20 23:03:34", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60427", "14", "2017-07-20 23:14:48", "89.33.71.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("60428", "8", "2017-07-21 00:47:46", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60429", "3", "2017-07-21 00:47:46", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60430", "6", "2017-07-21 00:47:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60431", "9", "2017-07-21 00:47:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60432", "10", "2017-07-21 00:47:49", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60433", "15", "2017-07-21 00:47:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60434", "3", "2017-07-21 01:06:25", "180.76.15.139", "3");
INSERT INTO `wp_gf_form_view` VALUES("60435", "10", "2017-07-21 01:20:27", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("60436", "8", "2017-07-21 02:13:06", "180.76.15.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("60437", "3", "2017-07-21 02:29:56", "51.255.65.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("60438", "10", "2017-07-21 02:48:13", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60439", "14", "2017-07-21 03:01:05", "139.167.11.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("60440", "10", "2017-07-21 06:41:24", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("60441", "3", "2017-07-21 06:54:23", "164.132.161.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("60442", "3", "2017-07-21 09:12:58", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("60443", "3", "2017-07-21 10:27:54", "207.46.13.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("60444", "3", "2017-07-21 11:20:43", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("60445", "10", "2017-07-21 12:00:22", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("60446", "8", "2017-07-21 12:07:47", "164.132.161.33", "3");
INSERT INTO `wp_gf_form_view` VALUES("60447", "3", "2017-07-21 12:17:15", "66.249.79.133", "27");
INSERT INTO `wp_gf_form_view` VALUES("60448", "6", "2017-07-21 12:17:16", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60449", "9", "2017-07-21 12:17:17", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60450", "15", "2017-07-21 12:17:20", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60451", "8", "2017-07-21 14:00:22", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60452", "3", "2017-07-21 14:00:22", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("60453", "6", "2017-07-21 14:00:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60454", "9", "2017-07-21 14:00:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60455", "10", "2017-07-21 14:00:25", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("60456", "15", "2017-07-21 14:00:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60457", "14", "2017-07-21 14:09:13", "207.46.13.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("60458", "3", "2017-07-21 15:10:34", "180.76.15.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("60459", "10", "2017-07-21 15:31:52", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("60460", "3", "2017-07-21 16:39:34", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("60461", "8", "2017-07-21 16:41:06", "40.77.167.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("60462", "7", "2017-07-21 16:53:53", "93.158.161.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("60463", "10", "2017-07-21 16:54:01", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("60464", "3", "2017-07-21 17:25:47", "51.255.65.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("60465", "8", "2017-07-21 17:59:29", "93.158.161.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("60466", "8", "2017-07-21 18:23:06", "114.38.147.34", "4");
INSERT INTO `wp_gf_form_view` VALUES("60467", "3", "2017-07-21 18:23:07", "114.38.147.34", "27");
INSERT INTO `wp_gf_form_view` VALUES("60468", "6", "2017-07-21 18:23:07", "114.38.147.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("60469", "9", "2017-07-21 18:23:08", "114.38.147.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("60470", "10", "2017-07-21 18:23:09", "114.38.147.34", "5");
INSERT INTO `wp_gf_form_view` VALUES("60471", "15", "2017-07-21 18:23:11", "114.38.147.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("60472", "14", "2017-07-21 18:31:43", "184.71.11.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("60473", "8", "2017-07-21 19:00:08", "68.180.228.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("60474", "10", "2017-07-21 19:06:05", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("60475", "10", "2017-07-21 20:52:11", "217.182.132.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("60476", "10", "2017-07-21 21:06:48", "217.182.132.83", "6");
INSERT INTO `wp_gf_form_view` VALUES("60477", "8", "2017-07-21 21:33:11", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60478", "3", "2017-07-21 21:33:12", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("60479", "6", "2017-07-21 21:33:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60480", "9", "2017-07-21 21:33:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60481", "15", "2017-07-21 21:33:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60482", "14", "2017-07-21 21:41:20", "189.100.55.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("60483", "3", "2017-07-21 22:01:08", "207.46.13.24", "56");
INSERT INTO `wp_gf_form_view` VALUES("60484", "10", "2017-07-21 22:06:24", "217.182.132.170", "11");
INSERT INTO `wp_gf_form_view` VALUES("60485", "8", "2017-07-21 22:11:48", "142.36.24.121", "5");
INSERT INTO `wp_gf_form_view` VALUES("60486", "6", "2017-07-21 22:18:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60487", "6", "2017-07-21 22:18:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60488", "9", "2017-07-21 22:18:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60489", "15", "2017-07-21 22:18:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60490", "10", "2017-07-21 23:19:43", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60491", "8", "2017-07-21 23:47:37", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60492", "14", "2017-07-22 00:12:44", "184.66.129.87", "4");
INSERT INTO `wp_gf_form_view` VALUES("60493", "3", "2017-07-22 00:23:04", "180.76.15.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("60494", "10", "2017-07-22 00:28:56", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("60495", "8", "2017-07-22 01:21:50", "207.46.13.107", "3");
INSERT INTO `wp_gf_form_view` VALUES("60496", "3", "2017-07-22 01:21:50", "207.46.13.107", "28");
INSERT INTO `wp_gf_form_view` VALUES("60497", "6", "2017-07-22 01:21:51", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60498", "9", "2017-07-22 01:21:52", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60499", "10", "2017-07-22 01:21:53", "207.46.13.107", "6");
INSERT INTO `wp_gf_form_view` VALUES("60500", "15", "2017-07-22 01:21:55", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60501", "14", "2017-07-22 01:52:57", "191.101.69.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("60502", "3", "2017-07-22 02:24:44", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60503", "8", "2017-07-22 04:43:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60504", "3", "2017-07-22 04:43:57", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60505", "6", "2017-07-22 04:43:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60506", "9", "2017-07-22 04:43:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60507", "10", "2017-07-22 04:43:59", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("60508", "15", "2017-07-22 04:44:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60509", "3", "2017-07-22 05:19:23", "66.249.79.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("60510", "10", "2017-07-22 06:12:04", "66.249.79.137", "6");
INSERT INTO `wp_gf_form_view` VALUES("60511", "8", "2017-07-22 06:20:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60512", "3", "2017-07-22 06:20:51", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("60513", "6", "2017-07-22 06:20:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60514", "9", "2017-07-22 06:20:53", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("60515", "15", "2017-07-22 06:20:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60516", "10", "2017-07-22 07:22:58", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60517", "3", "2017-07-22 08:35:30", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60518", "3", "2017-07-22 09:17:02", "46.229.168.80", "15");
INSERT INTO `wp_gf_form_view` VALUES("60519", "10", "2017-07-22 09:17:42", "46.229.168.76", "11");
INSERT INTO `wp_gf_form_view` VALUES("60520", "8", "2017-07-22 09:20:35", "46.229.168.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("60521", "3", "2017-07-22 10:00:05", "40.77.167.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("60522", "11", "2017-07-22 11:03:01", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60523", "3", "2017-07-22 11:06:43", "188.40.46.135", "58");
INSERT INTO `wp_gf_form_view` VALUES("60524", "10", "2017-07-22 11:08:44", "188.40.46.135", "24");
INSERT INTO `wp_gf_form_view` VALUES("60525", "8", "2017-07-22 11:17:32", "188.40.46.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("60526", "15", "2017-07-22 11:23:57", "188.40.46.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("60527", "6", "2017-07-22 11:24:17", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60528", "9", "2017-07-22 11:24:18", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60529", "10", "2017-07-22 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60530", "3", "2017-07-22 12:09:48", "138.197.7.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("60531", "8", "2017-07-22 12:54:38", "74.208.251.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("60532", "3", "2017-07-22 13:06:13", "207.46.13.188", "17");
INSERT INTO `wp_gf_form_view` VALUES("60533", "10", "2017-07-22 13:06:40", "157.55.39.41", "7");
INSERT INTO `wp_gf_form_view` VALUES("60534", "11", "2017-07-22 13:07:50", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("60535", "5", "2017-07-22 13:07:55", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60536", "9", "2017-07-22 13:08:26", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("60537", "8", "2017-07-22 13:34:59", "217.182.132.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("60538", "15", "2017-07-22 13:35:00", "217.182.132.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("60539", "3", "2017-07-22 14:04:21", "180.76.15.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("60540", "10", "2017-07-22 14:26:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60541", "3", "2017-07-22 15:07:01", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60542", "10", "2017-07-22 15:31:38", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("60543", "10", "2017-07-22 16:27:09", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60544", "14", "2017-07-22 16:55:52", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("60545", "3", "2017-07-22 17:29:13", "180.76.15.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("60546", "10", "2017-07-22 18:28:01", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60547", "3", "2017-07-22 18:41:28", "217.182.132.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("60548", "6", "2017-07-22 19:33:22", "47.88.18.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("60549", "10", "2017-07-22 19:50:13", "180.76.15.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("60550", "10", "2017-07-22 20:28:51", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60551", "8", "2017-07-22 21:09:15", "184.69.106.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("60552", "3", "2017-07-22 22:13:16", "77.75.76.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("60553", "10", "2017-07-22 22:29:35", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60554", "3", "2017-07-22 23:18:14", "40.77.167.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("60555", "8", "2017-07-23 00:07:33", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60556", "3", "2017-07-23 00:07:34", "52.88.109.3", "54");
INSERT INTO `wp_gf_form_view` VALUES("60557", "6", "2017-07-23 00:07:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60558", "9", "2017-07-23 00:07:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60559", "10", "2017-07-23 00:07:41", "52.88.109.3", "13");
INSERT INTO `wp_gf_form_view` VALUES("60560", "15", "2017-07-23 00:07:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60561", "8", "2017-07-23 01:10:55", "77.75.79.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("60562", "3", "2017-07-23 01:47:47", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60563", "6", "2017-07-23 01:47:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60564", "9", "2017-07-23 01:47:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60565", "10", "2017-07-23 01:47:54", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60566", "15", "2017-07-23 01:48:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60567", "8", "2017-07-23 02:28:54", "66.249.66.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("60568", "3", "2017-07-23 02:28:55", "66.249.66.29", "27");
INSERT INTO `wp_gf_form_view` VALUES("60569", "6", "2017-07-23 02:28:57", "66.249.66.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("60570", "9", "2017-07-23 02:28:58", "66.249.66.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("60571", "10", "2017-07-23 02:29:00", "66.249.66.29", "5");
INSERT INTO `wp_gf_form_view` VALUES("60572", "15", "2017-07-23 02:29:02", "66.249.66.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("60573", "10", "2017-07-23 03:40:59", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60574", "14", "2017-07-23 04:20:08", "201.53.251.208", "1");
INSERT INTO `wp_gf_form_view` VALUES("60575", "8", "2017-07-23 04:44:17", "51.255.65.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("60576", "15", "2017-07-23 05:12:27", "207.46.13.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("60577", "8", "2017-07-23 05:13:11", "164.132.161.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("60578", "3", "2017-07-23 05:13:11", "164.132.161.4", "28");
INSERT INTO `wp_gf_form_view` VALUES("60579", "6", "2017-07-23 05:13:11", "164.132.161.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("60580", "9", "2017-07-23 05:13:13", "164.132.161.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("60581", "10", "2017-07-23 05:13:14", "164.132.161.4", "6");
INSERT INTO `wp_gf_form_view` VALUES("60582", "10", "2017-07-23 06:19:56", "51.255.66.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("60583", "3", "2017-07-23 06:43:09", "173.44.165.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("60584", "15", "2017-07-23 06:55:36", "217.182.132.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("60585", "10", "2017-07-23 07:42:33", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60586", "10", "2017-07-23 08:56:53", "180.76.15.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("60587", "3", "2017-07-23 09:10:35", "51.255.65.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("60588", "3", "2017-07-23 10:36:57", "180.76.15.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("60589", "10", "2017-07-23 12:00:21", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60590", "3", "2017-07-23 12:16:52", "180.76.15.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("60591", "3", "2017-07-23 13:23:36", "180.76.15.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("60592", "10", "2017-07-23 13:34:27", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60593", "6", "2017-07-23 13:56:54", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("60594", "10", "2017-07-23 14:25:36", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60595", "8", "2017-07-23 14:47:27", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("60596", "14", "2017-07-23 14:59:58", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("60597", "8", "2017-07-23 15:03:43", "180.76.15.139", "9");
INSERT INTO `wp_gf_form_view` VALUES("60598", "3", "2017-07-23 15:04:59", "52.88.109.3", "54");
INSERT INTO `wp_gf_form_view` VALUES("60599", "6", "2017-07-23 15:05:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60600", "9", "2017-07-23 15:05:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60601", "10", "2017-07-23 15:05:06", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("60602", "15", "2017-07-23 15:05:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60603", "10", "2017-07-23 16:52:01", "217.182.132.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("60604", "8", "2017-07-23 17:02:14", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("60605", "3", "2017-07-23 17:04:28", "157.55.39.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("60606", "10", "2017-07-23 17:36:30", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("60607", "15", "2017-07-23 18:28:11", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60608", "3", "2017-07-23 19:11:20", "217.182.132.187", "33");
INSERT INTO `wp_gf_form_view` VALUES("60609", "8", "2017-07-23 19:27:47", "207.46.13.107", "12");
INSERT INTO `wp_gf_form_view` VALUES("60610", "6", "2017-07-23 19:27:48", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60611", "9", "2017-07-23 19:27:49", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60612", "10", "2017-07-23 19:27:50", "207.46.13.107", "5");
INSERT INTO `wp_gf_form_view` VALUES("60613", "15", "2017-07-23 19:27:52", "207.46.13.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("60614", "14", "2017-07-23 19:36:32", "207.255.192.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("60615", "10", "2017-07-23 20:42:37", "217.182.132.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("60616", "3", "2017-07-23 20:59:01", "47.88.19.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("60617", "10", "2017-07-23 21:06:25", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60618", "3", "2017-07-23 21:35:16", "51.255.65.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("60619", "3", "2017-07-23 22:26:22", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("60620", "6", "2017-07-23 22:26:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60621", "9", "2017-07-23 22:26:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60622", "8", "2017-07-23 22:26:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60623", "10", "2017-07-23 22:26:25", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60624", "15", "2017-07-23 22:26:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60625", "3", "2017-07-23 23:05:45", "52.88.109.3", "54");
INSERT INTO `wp_gf_form_view` VALUES("60626", "6", "2017-07-23 23:05:46", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60627", "9", "2017-07-23 23:05:48", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60628", "8", "2017-07-23 23:05:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60629", "10", "2017-07-23 23:05:51", "52.88.109.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("60630", "15", "2017-07-23 23:05:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60631", "3", "2017-07-24 00:15:43", "217.182.132.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("60632", "14", "2017-07-24 00:18:33", "193.17.219.81", "3");
INSERT INTO `wp_gf_form_view` VALUES("60633", "10", "2017-07-24 00:18:46", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60634", "3", "2017-07-24 01:22:22", "51.255.65.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("60635", "3", "2017-07-24 02:13:27", "180.76.15.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("60636", "10", "2017-07-24 02:44:57", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60637", "3", "2017-07-24 03:27:04", "70.66.221.147", "3");
INSERT INTO `wp_gf_form_view` VALUES("60638", "8", "2017-07-24 04:42:38", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60639", "3", "2017-07-24 04:55:48", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("60640", "3", "2017-07-24 05:03:05", "207.46.13.58", "29");
INSERT INTO `wp_gf_form_view` VALUES("60641", "6", "2017-07-24 05:27:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60642", "9", "2017-07-24 05:27:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60643", "8", "2017-07-24 05:27:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60644", "10", "2017-07-24 05:27:35", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60645", "15", "2017-07-24 05:27:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60646", "14", "2017-07-24 05:42:39", "24.68.154.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("60647", "15", "2017-07-24 06:51:40", "207.46.13.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("60648", "3", "2017-07-24 07:03:12", "217.182.132.66", "30");
INSERT INTO `wp_gf_form_view` VALUES("60649", "6", "2017-07-24 07:06:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60650", "9", "2017-07-24 07:06:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60651", "8", "2017-07-24 07:06:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60652", "10", "2017-07-24 07:06:26", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("60653", "15", "2017-07-24 07:06:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60654", "5", "2017-07-24 08:24:59", "77.75.78.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("60655", "10", "2017-07-24 08:47:23", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60656", "3", "2017-07-24 09:03:17", "180.76.15.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("60657", "11", "2017-07-24 10:06:04", "217.182.132.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("60658", "3", "2017-07-24 11:13:53", "157.55.39.213", "2");
INSERT INTO `wp_gf_form_view` VALUES("60659", "10", "2017-07-24 12:00:15", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60660", "9", "2017-07-24 12:14:52", "51.255.65.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("60661", "8", "2017-07-24 13:54:11", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("60662", "3", "2017-07-24 14:10:27", "51.255.65.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("60663", "10", "2017-07-24 14:26:17", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60664", "10", "2017-07-24 15:04:27", "217.182.132.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("60665", "3", "2017-07-24 15:34:11", "180.76.15.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("60666", "10", "2017-07-24 16:13:47", "207.46.13.58", "3");
INSERT INTO `wp_gf_form_view` VALUES("60667", "3", "2017-07-24 16:54:58", "164.132.161.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("60668", "3", "2017-07-24 17:23:05", "164.132.162.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("60669", "10", "2017-07-24 17:25:34", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60670", "12", "2017-07-24 17:37:15", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("60671", "14", "2017-07-24 18:21:08", "24.68.117.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("60672", "3", "2017-07-24 18:30:09", "51.255.71.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("60673", "10", "2017-07-24 19:17:04", "51.255.71.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("60674", "3", "2017-07-24 19:52:59", "180.76.15.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("60675", "10", "2017-07-24 20:06:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60676", "10", "2017-07-24 22:07:03", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60677", "12", "2017-07-24 22:51:30", "51.255.65.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("60678", "11", "2017-07-24 23:43:02", "79.142.68.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("60679", "3", "2017-07-25 01:16:04", "40.77.167.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("60680", "10", "2017-07-25 02:08:44", "184.66.129.248", "5");
INSERT INTO `wp_gf_form_view` VALUES("60681", "3", "2017-07-25 02:49:23", "157.55.39.213", "9");
INSERT INTO `wp_gf_form_view` VALUES("60682", "15", "2017-07-25 02:50:44", "207.46.13.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("60683", "6", "2017-07-25 02:50:53", "207.46.13.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("60684", "3", "2017-07-25 03:46:34", "164.132.162.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("60685", "10", "2017-07-25 04:09:32", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60686", "3", "2017-07-25 05:51:52", "184.66.255.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("60687", "10", "2017-07-25 08:11:09", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60688", "14", "2017-07-25 08:14:27", "24.108.169.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("60689", "8", "2017-07-25 08:26:14", "180.76.15.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("60690", "10", "2017-07-25 10:02:54", "66.249.91.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("60691", "3", "2017-07-25 10:17:28", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("60692", "3", "2017-07-25 11:20:52", "207.46.13.58", "137");
INSERT INTO `wp_gf_form_view` VALUES("60693", "6", "2017-07-25 11:57:41", "212.129.21.56", "5");
INSERT INTO `wp_gf_form_view` VALUES("60694", "9", "2017-07-25 11:57:42", "212.129.21.56", "5");
INSERT INTO `wp_gf_form_view` VALUES("60695", "8", "2017-07-25 11:57:42", "212.129.21.56", "5");
INSERT INTO `wp_gf_form_view` VALUES("60696", "10", "2017-07-25 11:57:43", "212.129.21.56", "25");
INSERT INTO `wp_gf_form_view` VALUES("60697", "15", "2017-07-25 11:57:45", "212.129.21.56", "5");
INSERT INTO `wp_gf_form_view` VALUES("60698", "10", "2017-07-25 12:00:09", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60699", "3", "2017-07-25 12:17:04", "180.76.15.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("60700", "10", "2017-07-25 13:46:46", "66.249.69.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("60701", "3", "2017-07-25 13:57:05", "180.76.15.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("60702", "3", "2017-07-25 14:04:04", "207.46.13.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("60703", "10", "2017-07-25 14:26:09", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60704", "3", "2017-07-25 15:03:45", "180.76.15.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("60705", "3", "2017-07-25 16:10:25", "180.76.15.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("60706", "3", "2017-07-25 17:17:16", "180.76.15.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("60707", "3", "2017-07-25 18:23:51", "180.76.15.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("60708", "10", "2017-07-25 19:18:40", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("60709", "3", "2017-07-25 20:07:09", "207.46.13.131", "28");
INSERT INTO `wp_gf_form_view` VALUES("60710", "6", "2017-07-25 20:07:10", "207.46.13.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("60711", "9", "2017-07-25 20:07:11", "207.46.13.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("60712", "8", "2017-07-25 20:07:12", "207.46.13.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("60713", "10", "2017-07-25 20:07:13", "207.46.13.131", "7");
INSERT INTO `wp_gf_form_view` VALUES("60714", "15", "2017-07-25 20:07:15", "207.46.13.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("60715", "3", "2017-07-25 21:32:06", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60716", "6", "2017-07-25 21:32:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60717", "9", "2017-07-25 21:32:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60718", "8", "2017-07-25 21:32:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60719", "10", "2017-07-25 21:32:09", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60720", "15", "2017-07-25 21:32:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60721", "10", "2017-07-25 22:29:35", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60722", "3", "2017-07-26 00:33:12", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60723", "6", "2017-07-26 00:33:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60724", "9", "2017-07-26 00:33:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60725", "8", "2017-07-26 00:33:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60726", "10", "2017-07-26 00:33:15", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60727", "15", "2017-07-26 00:33:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60728", "10", "2017-07-26 02:09:53", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60729", "3", "2017-07-26 03:39:15", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60730", "6", "2017-07-26 03:39:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60731", "9", "2017-07-26 03:39:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60732", "8", "2017-07-26 03:39:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60733", "10", "2017-07-26 03:39:18", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60734", "15", "2017-07-26 03:39:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60735", "14", "2017-07-26 03:47:34", "216.232.194.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("60736", "10", "2017-07-26 04:18:33", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60737", "14", "2017-07-26 06:04:22", "62.210.79.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("60738", "3", "2017-07-26 06:04:27", "172.245.134.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("60739", "10", "2017-07-26 06:46:28", "51.255.65.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("60740", "10", "2017-07-26 08:20:09", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60741", "10", "2017-07-26 10:26:06", "164.132.161.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("60742", "3", "2017-07-26 11:11:52", "217.182.132.17", "6");
INSERT INTO `wp_gf_form_view` VALUES("60743", "10", "2017-07-26 11:12:31", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("60744", "10", "2017-07-26 12:00:09", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("60745", "3", "2017-07-26 12:13:30", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("60746", "6", "2017-07-26 13:08:59", "51.255.65.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("60747", "3", "2017-07-26 13:24:34", "217.182.132.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("60748", "3", "2017-07-26 14:12:20", "46.161.9.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("60749", "10", "2017-07-26 14:21:16", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60750", "3", "2017-07-26 16:09:00", "83.55.34.210", "3");
INSERT INTO `wp_gf_form_view` VALUES("60751", "10", "2017-07-26 16:23:28", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60752", "3", "2017-07-26 17:17:54", "81.209.177.189", "291");
INSERT INTO `wp_gf_form_view` VALUES("60753", "8", "2017-07-26 17:21:25", "81.209.177.189", "12");
INSERT INTO `wp_gf_form_view` VALUES("60754", "10", "2017-07-26 17:21:25", "81.209.177.189", "74");
INSERT INTO `wp_gf_form_view` VALUES("60755", "15", "2017-07-26 17:21:27", "81.209.177.189", "10");
INSERT INTO `wp_gf_form_view` VALUES("60756", "14", "2017-07-26 17:27:30", "81.209.177.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("60757", "6", "2017-07-26 17:28:24", "81.209.177.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("60758", "9", "2017-07-26 17:28:25", "81.209.177.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("60759", "8", "2017-07-26 18:00:09", "81.209.177.136", "14");
INSERT INTO `wp_gf_form_view` VALUES("60760", "3", "2017-07-26 18:00:21", "81.209.177.136", "218");
INSERT INTO `wp_gf_form_view` VALUES("60761", "10", "2017-07-26 18:01:12", "81.209.177.136", "24");
INSERT INTO `wp_gf_form_view` VALUES("60762", "6", "2017-07-26 18:02:00", "81.209.177.189", "8");
INSERT INTO `wp_gf_form_view` VALUES("60763", "9", "2017-07-26 18:02:00", "81.209.177.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("60764", "15", "2017-07-26 18:05:13", "81.209.177.189", "7");
INSERT INTO `wp_gf_form_view` VALUES("60765", "3", "2017-07-26 19:10:02", "176.31.231.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("60766", "10", "2017-07-26 19:47:45", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60767", "14", "2017-07-26 21:03:47", "96.50.19.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("60768", "3", "2017-07-26 21:17:50", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60769", "6", "2017-07-26 21:17:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60770", "9", "2017-07-26 21:17:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60771", "8", "2017-07-26 21:17:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60772", "10", "2017-07-26 21:17:54", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60773", "15", "2017-07-26 21:17:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60774", "10", "2017-07-26 22:20:13", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60775", "3", "2017-07-26 23:20:33", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("60776", "14", "2017-07-26 23:26:20", "198.46.210.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("60777", "10", "2017-07-26 23:28:17", "66.249.89.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("60778", "10", "2017-07-27 00:14:41", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("60779", "3", "2017-07-27 00:19:29", "51.255.65.51", "31");
INSERT INTO `wp_gf_form_view` VALUES("60780", "6", "2017-07-27 00:48:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60781", "9", "2017-07-27 00:48:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60782", "8", "2017-07-27 00:48:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60783", "15", "2017-07-27 00:48:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60784", "10", "2017-07-27 01:27:09", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("60785", "3", "2017-07-27 01:33:53", "180.76.15.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("60786", "12", "2017-07-27 03:13:49", "180.76.15.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("60787", "3", "2017-07-27 03:30:57", "51.255.71.112", "28");
INSERT INTO `wp_gf_form_view` VALUES("60788", "6", "2017-07-27 03:51:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60789", "9", "2017-07-27 03:51:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60790", "8", "2017-07-27 03:51:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60791", "10", "2017-07-27 03:51:54", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60792", "15", "2017-07-27 03:51:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60793", "3", "2017-07-27 04:20:25", "51.255.65.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("60794", "3", "2017-07-27 05:43:53", "46.229.168.69", "95");
INSERT INTO `wp_gf_form_view` VALUES("60795", "10", "2017-07-27 05:45:25", "46.229.168.74", "28");
INSERT INTO `wp_gf_form_view` VALUES("60796", "6", "2017-07-27 05:49:02", "46.229.168.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("60797", "9", "2017-07-27 05:50:57", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("60798", "8", "2017-07-27 05:50:59", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("60799", "15", "2017-07-27 05:51:04", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("60800", "11", "2017-07-27 05:58:43", "46.229.168.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("60801", "15", "2017-07-27 06:12:29", "66.249.64.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("60802", "3", "2017-07-27 06:16:42", "66.249.64.83", "31");
INSERT INTO `wp_gf_form_view` VALUES("60803", "10", "2017-07-27 06:28:19", "217.182.132.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("60804", "14", "2017-07-27 06:30:19", "24.68.116.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("60805", "6", "2017-07-27 06:55:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60806", "9", "2017-07-27 06:55:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60807", "8", "2017-07-27 06:55:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60808", "14", "2017-07-27 07:21:09", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("60809", "10", "2017-07-27 08:24:17", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60810", "10", "2017-07-27 09:37:13", "207.46.13.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("60811", "6", "2017-07-27 09:54:08", "217.182.132.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("60812", "3", "2017-07-27 10:03:52", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("60813", "6", "2017-07-27 10:03:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60814", "9", "2017-07-27 10:03:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60815", "8", "2017-07-27 10:03:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60816", "10", "2017-07-27 10:03:55", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60817", "15", "2017-07-27 10:03:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60818", "3", "2017-07-27 11:03:11", "104.192.7.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("60819", "6", "2017-07-27 11:56:32", "157.55.39.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("60820", "10", "2017-07-27 12:00:03", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60821", "3", "2017-07-27 12:01:14", "217.182.132.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("60822", "3", "2017-07-27 13:14:26", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60823", "6", "2017-07-27 13:14:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60824", "9", "2017-07-27 13:14:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60825", "8", "2017-07-27 13:14:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60826", "10", "2017-07-27 13:14:29", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("60827", "15", "2017-07-27 13:14:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60828", "10", "2017-07-27 14:25:52", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60829", "10", "2017-07-27 15:32:52", "66.249.89.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("60830", "14", "2017-07-27 15:51:15", "66.183.174.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60831", "3", "2017-07-27 15:51:55", "217.182.132.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("60832", "3", "2017-07-27 16:00:26", "207.46.13.50", "29");
INSERT INTO `wp_gf_form_view` VALUES("60833", "10", "2017-07-27 16:26:38", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("60834", "6", "2017-07-27 16:33:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60835", "9", "2017-07-27 16:33:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60836", "8", "2017-07-27 16:33:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60837", "15", "2017-07-27 16:33:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60838", "3", "2017-07-27 17:11:18", "24.108.168.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("60839", "3", "2017-07-27 18:09:51", "66.249.64.85", "2");
INSERT INTO `wp_gf_form_view` VALUES("60840", "3", "2017-07-27 19:23:31", "154.5.209.143", "28");
INSERT INTO `wp_gf_form_view` VALUES("60841", "8", "2017-07-27 19:24:10", "154.5.209.143", "5");
INSERT INTO `wp_gf_form_view` VALUES("60842", "6", "2017-07-27 19:43:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60843", "9", "2017-07-27 19:43:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60844", "10", "2017-07-27 19:43:54", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("60845", "15", "2017-07-27 19:43:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60846", "8", "2017-07-27 20:23:56", "184.66.49.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("60847", "10", "2017-07-27 20:28:17", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60848", "3", "2017-07-27 20:52:07", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("60849", "3", "2017-07-27 21:33:39", "180.76.15.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("60850", "10", "2017-07-27 21:39:57", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60851", "3", "2017-07-27 22:07:02", "180.76.15.17", "30");
INSERT INTO `wp_gf_form_view` VALUES("60852", "16", "2017-07-27 22:19:46", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("60853", "8", "2017-07-27 22:38:17", "66.249.79.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("60854", "6", "2017-07-27 22:46:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60855", "9", "2017-07-27 22:46:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60856", "10", "2017-07-27 22:46:31", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60857", "15", "2017-07-27 22:46:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60858", "9", "2017-07-27 23:13:39", "180.76.15.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("60859", "3", "2017-07-27 23:47:28", "207.46.13.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("60860", "14", "2017-07-27 23:54:00", "96.50.19.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("60861", "10", "2017-07-27 23:58:28", "157.55.39.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("60862", "10", "2017-07-28 00:10:16", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60863", "14", "2017-07-28 00:18:04", "96.50.19.46", "3");
INSERT INTO `wp_gf_form_view` VALUES("60864", "3", "2017-07-28 01:56:01", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("60865", "3", "2017-07-28 02:20:14", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("60866", "6", "2017-07-28 02:20:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60867", "9", "2017-07-28 02:20:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60868", "8", "2017-07-28 02:20:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60869", "10", "2017-07-28 02:20:16", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60870", "15", "2017-07-28 02:20:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60871", "5", "2017-07-28 03:35:28", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("60872", "11", "2017-07-28 03:38:23", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("60873", "7", "2017-07-28 03:38:42", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("60874", "3", "2017-07-28 03:40:05", "109.169.29.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("60875", "3", "2017-07-28 04:15:59", "180.76.15.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("60876", "10", "2017-07-28 04:51:30", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("60877", "3", "2017-07-28 05:34:16", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60878", "6", "2017-07-28 05:34:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60879", "9", "2017-07-28 05:34:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60880", "8", "2017-07-28 05:34:18", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60881", "10", "2017-07-28 05:34:19", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60882", "15", "2017-07-28 05:34:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60883", "3", "2017-07-28 06:50:44", "51.255.71.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("60884", "10", "2017-07-28 08:13:34", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("60885", "3", "2017-07-28 08:22:45", "217.182.132.20", "29");
INSERT INTO `wp_gf_form_view` VALUES("60886", "6", "2017-07-28 08:44:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60887", "9", "2017-07-28 08:44:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60888", "8", "2017-07-28 08:44:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60889", "15", "2017-07-28 08:44:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60890", "16", "2017-07-28 09:50:35", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("60891", "10", "2017-07-28 10:29:32", "51.255.65.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("60892", "3", "2017-07-28 11:03:24", "66.249.79.137", "28");
INSERT INTO `wp_gf_form_view` VALUES("60893", "10", "2017-07-28 11:42:40", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("60894", "6", "2017-07-28 11:54:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60895", "9", "2017-07-28 11:54:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60896", "8", "2017-07-28 11:54:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60897", "15", "2017-07-28 11:54:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60898", "10", "2017-07-28 12:00:21", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60899", "3", "2017-07-28 12:38:29", "185.93.182.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("60900", "3", "2017-07-28 13:03:52", "107.174.239.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("60901", "14", "2017-07-28 13:13:15", "51.255.65.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("60902", "14", "2017-07-28 14:48:36", "24.108.12.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("60903", "3", "2017-07-28 15:05:43", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60904", "6", "2017-07-28 15:05:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60905", "9", "2017-07-28 15:05:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60906", "8", "2017-07-28 15:05:48", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60907", "10", "2017-07-28 15:05:48", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60908", "15", "2017-07-28 15:05:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60909", "3", "2017-07-28 16:05:50", "37.49.224.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("60910", "8", "2017-07-28 16:06:02", "37.49.224.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60911", "16", "2017-07-28 16:41:38", "68.180.228.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("60912", "8", "2017-07-28 17:15:47", "40.77.167.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("60913", "3", "2017-07-28 17:29:44", "157.55.39.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("60914", "3", "2017-07-28 18:19:16", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("60915", "6", "2017-07-28 18:19:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60916", "9", "2017-07-28 18:19:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60917", "8", "2017-07-28 18:19:18", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60918", "10", "2017-07-28 18:19:18", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("60919", "15", "2017-07-28 18:19:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60920", "10", "2017-07-28 19:16:22", "77.75.76.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("60921", "3", "2017-07-28 19:33:51", "168.235.195.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("60922", "10", "2017-07-28 20:15:40", "72.14.199.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("60923", "3", "2017-07-28 20:36:47", "142.104.35.60", "8");
INSERT INTO `wp_gf_form_view` VALUES("60924", "10", "2017-07-28 21:04:05", "157.55.39.44", "7");
INSERT INTO `wp_gf_form_view` VALUES("60925", "3", "2017-07-28 21:04:09", "157.55.39.44", "31");
INSERT INTO `wp_gf_form_view` VALUES("60926", "6", "2017-07-28 21:21:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60927", "9", "2017-07-28 21:21:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60928", "8", "2017-07-28 21:21:13", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60929", "15", "2017-07-28 21:21:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60930", "3", "2017-07-28 22:14:21", "51.255.65.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("60931", "14", "2017-07-28 22:33:05", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("60932", "10", "2017-07-28 22:42:36", "199.16.157.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("60933", "11", "2017-07-28 22:55:51", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("60934", "3", "2017-07-28 23:01:02", "180.76.15.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("60935", "3", "2017-07-29 00:00:52", "51.255.50.158", "28");
INSERT INTO `wp_gf_form_view` VALUES("60936", "8", "2017-07-29 00:01:04", "51.255.50.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("60937", "10", "2017-07-29 00:29:52", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("60938", "6", "2017-07-29 00:30:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60939", "9", "2017-07-29 00:30:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60940", "15", "2017-07-29 00:30:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60941", "3", "2017-07-29 01:27:18", "47.88.7.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("60942", "8", "2017-07-29 02:51:29", "164.132.162.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("60943", "3", "2017-07-29 03:05:13", "164.132.162.157", "28");
INSERT INTO `wp_gf_form_view` VALUES("60944", "6", "2017-07-29 03:42:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60945", "9", "2017-07-29 03:42:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60946", "8", "2017-07-29 03:42:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60947", "10", "2017-07-29 03:42:36", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60948", "15", "2017-07-29 03:42:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60949", "10", "2017-07-29 04:53:34", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("60950", "5", "2017-07-29 04:56:00", "77.75.77.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("60951", "3", "2017-07-29 05:05:35", "180.76.15.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("60952", "16", "2017-07-29 05:15:21", "68.180.230.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("60953", "3", "2017-07-29 06:32:30", "207.46.13.184", "29");
INSERT INTO `wp_gf_form_view` VALUES("60954", "6", "2017-07-29 06:53:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60955", "9", "2017-07-29 06:53:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60956", "8", "2017-07-29 06:53:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60957", "10", "2017-07-29 06:53:35", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60958", "15", "2017-07-29 06:53:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60959", "10", "2017-07-29 07:06:23", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("60960", "10", "2017-07-29 08:33:16", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60961", "10", "2017-07-29 09:14:08", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("60962", "3", "2017-07-29 09:57:45", "88.198.55.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("60963", "3", "2017-07-29 10:01:39", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("60964", "6", "2017-07-29 10:01:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60965", "9", "2017-07-29 10:01:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60966", "8", "2017-07-29 10:01:42", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60967", "10", "2017-07-29 10:01:44", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60968", "15", "2017-07-29 10:01:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60969", "14", "2017-07-29 11:00:20", "5.39.85.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("60970", "3", "2017-07-29 11:00:34", "5.39.85.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("60971", "10", "2017-07-29 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("60972", "3", "2017-07-29 12:18:55", "180.76.15.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("60973", "5", "2017-07-29 12:25:25", "207.46.13.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("60974", "3", "2017-07-29 13:01:32", "40.77.167.147", "57");
INSERT INTO `wp_gf_form_view` VALUES("60975", "6", "2017-07-29 13:04:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60976", "9", "2017-07-29 13:04:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60977", "8", "2017-07-29 13:04:56", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("60978", "10", "2017-07-29 13:04:57", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("60979", "15", "2017-07-29 13:04:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60980", "10", "2017-07-29 14:25:52", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("60981", "3", "2017-07-29 16:04:49", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60982", "6", "2017-07-29 16:04:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60983", "9", "2017-07-29 16:04:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60984", "8", "2017-07-29 16:04:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60985", "10", "2017-07-29 16:04:52", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60986", "15", "2017-07-29 16:04:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60987", "14", "2017-07-29 16:35:51", "23.94.229.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("60988", "3", "2017-07-29 17:56:29", "164.132.161.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("60989", "3", "2017-07-29 19:07:28", "157.55.39.252", "28");
INSERT INTO `wp_gf_form_view` VALUES("60990", "6", "2017-07-29 19:17:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60991", "9", "2017-07-29 19:17:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60992", "8", "2017-07-29 19:17:46", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("60993", "10", "2017-07-29 19:17:46", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("60994", "15", "2017-07-29 19:17:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60995", "10", "2017-07-29 21:04:23", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("60996", "8", "2017-07-29 21:16:41", "157.55.39.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("60997", "3", "2017-07-29 22:22:47", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("60998", "6", "2017-07-29 22:22:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("60999", "9", "2017-07-29 22:22:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61000", "8", "2017-07-29 22:22:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61001", "10", "2017-07-29 22:22:50", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61002", "15", "2017-07-29 22:22:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61003", "10", "2017-07-30 00:59:34", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("61004", "6", "2017-07-30 01:33:00", "47.88.18.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("61005", "3", "2017-07-30 01:33:48", "47.88.2.245", "28");
INSERT INTO `wp_gf_form_view` VALUES("61006", "9", "2017-07-30 01:35:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61007", "8", "2017-07-30 01:35:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61008", "10", "2017-07-30 01:35:58", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61009", "15", "2017-07-30 01:36:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61010", "3", "2017-07-30 02:52:36", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("61011", "3", "2017-07-30 03:19:37", "66.249.79.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("61012", "3", "2017-07-30 04:48:42", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61013", "6", "2017-07-30 04:48:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61014", "9", "2017-07-30 04:48:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61015", "8", "2017-07-30 04:48:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61016", "10", "2017-07-30 04:48:47", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61017", "15", "2017-07-30 04:48:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61018", "10", "2017-07-30 05:03:33", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("61019", "12", "2017-07-30 05:45:45", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61020", "3", "2017-07-30 06:12:40", "157.55.39.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("61021", "3", "2017-07-30 07:59:27", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61022", "6", "2017-07-30 07:59:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61023", "9", "2017-07-30 07:59:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61024", "8", "2017-07-30 07:59:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61025", "10", "2017-07-30 07:59:30", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61026", "15", "2017-07-30 07:59:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61027", "10", "2017-07-30 08:59:16", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("61028", "3", "2017-07-30 09:15:42", "164.132.161.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("61029", "3", "2017-07-30 11:04:24", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61030", "6", "2017-07-30 11:04:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61031", "9", "2017-07-30 11:04:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61032", "8", "2017-07-30 11:04:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61033", "10", "2017-07-30 11:04:27", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61034", "15", "2017-07-30 11:04:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61035", "10", "2017-07-30 12:00:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61036", "3", "2017-07-30 14:07:40", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61037", "6", "2017-07-30 14:07:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61038", "9", "2017-07-30 14:07:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61039", "8", "2017-07-30 14:07:42", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61040", "10", "2017-07-30 14:07:43", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61041", "15", "2017-07-30 14:07:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61042", "10", "2017-07-30 15:06:19", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("61043", "3", "2017-07-30 15:17:33", "5.188.211.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("61044", "3", "2017-07-30 16:15:57", "51.255.71.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("61045", "14", "2017-07-30 16:56:53", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("61046", "3", "2017-07-30 17:07:12", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61047", "6", "2017-07-30 17:07:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61048", "9", "2017-07-30 17:07:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61049", "8", "2017-07-30 17:07:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61050", "10", "2017-07-30 17:07:15", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61051", "15", "2017-07-30 17:07:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61052", "14", "2017-07-30 17:10:10", "24.108.12.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("61053", "11", "2017-07-30 18:19:41", "180.76.15.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("61054", "3", "2017-07-30 19:06:18", "154.20.46.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("61055", "14", "2017-07-30 19:16:30", "154.20.46.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("61056", "3", "2017-07-30 20:06:37", "52.88.109.3", "351");
INSERT INTO `wp_gf_form_view` VALUES("61057", "6", "2017-07-30 20:06:38", "52.88.109.3", "13");
INSERT INTO `wp_gf_form_view` VALUES("61058", "9", "2017-07-30 20:06:39", "52.88.109.3", "13");
INSERT INTO `wp_gf_form_view` VALUES("61059", "8", "2017-07-30 20:06:40", "52.88.109.3", "26");
INSERT INTO `wp_gf_form_view` VALUES("61060", "10", "2017-07-30 20:06:40", "52.88.109.3", "66");
INSERT INTO `wp_gf_form_view` VALUES("61061", "15", "2017-07-30 20:06:42", "52.88.109.3", "13");
INSERT INTO `wp_gf_form_view` VALUES("61062", "10", "2017-07-30 21:15:55", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61063", "3", "2017-07-30 22:28:16", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("61064", "3", "2017-07-30 23:06:58", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61065", "6", "2017-07-30 23:06:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61066", "9", "2017-07-30 23:07:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61067", "8", "2017-07-30 23:07:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61068", "10", "2017-07-30 23:07:01", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61069", "15", "2017-07-30 23:07:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61070", "14", "2017-07-30 23:39:29", "81.171.53.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("61071", "3", "2017-07-31 01:15:27", "104.142.127.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("61072", "10", "2017-07-31 01:38:40", "157.55.39.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("61073", "3", "2017-07-31 02:12:21", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61074", "6", "2017-07-31 02:12:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61075", "9", "2017-07-31 02:12:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61076", "8", "2017-07-31 02:12:23", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61077", "10", "2017-07-31 02:12:24", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61078", "15", "2017-07-31 02:12:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61079", "10", "2017-07-31 03:32:46", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("61080", "10", "2017-07-31 04:02:50", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("61081", "8", "2017-07-31 04:20:51", "96.50.4.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("61082", "3", "2017-07-31 04:21:59", "96.50.4.204", "2");
INSERT INTO `wp_gf_form_view` VALUES("61083", "15", "2017-07-31 04:44:13", "164.132.161.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("61084", "3", "2017-07-31 05:17:56", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("61085", "6", "2017-07-31 05:17:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61086", "9", "2017-07-31 05:17:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61087", "8", "2017-07-31 05:17:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61088", "10", "2017-07-31 05:17:58", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61089", "15", "2017-07-31 05:18:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61090", "10", "2017-07-31 06:20:41", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("61091", "10", "2017-07-31 07:34:46", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("61092", "3", "2017-07-31 07:42:50", "180.76.15.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("61093", "3", "2017-07-31 08:14:07", "141.8.144.38", "28");
INSERT INTO `wp_gf_form_view` VALUES("61094", "6", "2017-07-31 08:34:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61095", "9", "2017-07-31 08:34:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61096", "8", "2017-07-31 08:34:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61097", "10", "2017-07-31 08:34:02", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61098", "15", "2017-07-31 08:34:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61099", "3", "2017-07-31 09:22:28", "180.76.15.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61100", "14", "2017-07-31 09:43:50", "66.220.156.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("61101", "10", "2017-07-31 09:48:45", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61102", "5", "2017-07-31 11:09:00", "157.55.39.230", "1");
INSERT INTO `wp_gf_form_view` VALUES("61103", "3", "2017-07-31 11:11:00", "188.226.139.54", "30");
INSERT INTO `wp_gf_form_view` VALUES("61104", "6", "2017-07-31 11:43:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61105", "9", "2017-07-31 11:43:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61106", "8", "2017-07-31 11:43:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61107", "10", "2017-07-31 11:43:48", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61108", "15", "2017-07-31 11:43:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61109", "10", "2017-07-31 12:00:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61110", "3", "2017-07-31 12:09:08", "180.76.15.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("61111", "10", "2017-07-31 14:31:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61112", "3", "2017-07-31 15:08:52", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("61113", "6", "2017-07-31 15:08:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61114", "9", "2017-07-31 15:08:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61115", "8", "2017-07-31 15:08:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61116", "10", "2017-07-31 15:08:54", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61117", "15", "2017-07-31 15:08:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61118", "10", "2017-07-31 16:27:31", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61119", "10", "2017-07-31 17:27:33", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61120", "10", "2017-07-31 18:02:47", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("61121", "3", "2017-07-31 18:28:10", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61122", "6", "2017-07-31 18:28:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61123", "9", "2017-07-31 18:28:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61124", "8", "2017-07-31 18:28:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61125", "15", "2017-07-31 18:28:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61126", "11", "2017-07-31 18:44:54", "180.76.15.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("61127", "10", "2017-07-31 19:07:23", "72.14.199.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("61128", "3", "2017-07-31 19:41:43", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("61129", "8", "2017-07-31 20:19:19", "192.41.148.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("61130", "10", "2017-07-31 20:28:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61131", "3", "2017-07-31 20:29:31", "40.77.167.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("61132", "14", "2017-07-31 20:42:52", "168.235.66.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("61133", "10", "2017-07-31 21:28:40", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61134", "11", "2017-07-31 21:30:44", "164.132.161.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("61135", "14", "2017-07-31 21:31:34", "180.76.15.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("61136", "3", "2017-07-31 21:41:56", "217.182.132.67", "28");
INSERT INTO `wp_gf_form_view` VALUES("61137", "6", "2017-07-31 21:44:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61138", "9", "2017-07-31 21:44:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61139", "8", "2017-07-31 21:44:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61140", "15", "2017-07-31 21:44:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61141", "10", "2017-07-31 22:28:40", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61142", "10", "2017-07-31 23:28:42", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61143", "10", "2017-08-01 00:28:40", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61144", "3", "2017-08-01 00:56:39", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61145", "6", "2017-08-01 00:56:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61146", "9", "2017-08-01 00:56:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61147", "8", "2017-08-01 00:56:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61148", "15", "2017-08-01 00:56:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61149", "3", "2017-08-01 01:09:41", "185.93.182.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("61150", "10", "2017-08-01 01:29:03", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61151", "3", "2017-08-01 02:10:21", "164.132.161.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("61152", "10", "2017-08-01 02:29:23", "184.66.248.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("61153", "15", "2017-08-01 02:38:31", "46.229.168.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("61154", "6", "2017-08-01 02:40:21", "46.229.168.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("61155", "3", "2017-08-01 03:06:20", "51.255.65.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("61156", "10", "2017-08-01 03:29:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61157", "3", "2017-08-01 04:08:43", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("61158", "6", "2017-08-01 04:08:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61159", "9", "2017-08-01 04:08:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61160", "8", "2017-08-01 04:08:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61161", "10", "2017-08-01 04:08:45", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("61162", "15", "2017-08-01 04:08:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61163", "10", "2017-08-01 05:30:02", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61164", "9", "2017-08-01 05:37:53", "51.255.71.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("61165", "3", "2017-08-01 05:52:18", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61166", "10", "2017-08-01 06:00:03", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61167", "3", "2017-08-01 06:39:12", "164.132.161.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("61168", "10", "2017-08-01 07:00:24", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("61169", "14", "2017-08-01 07:25:03", "23.245.152.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("61170", "3", "2017-08-01 07:26:31", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61171", "6", "2017-08-01 07:26:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61172", "9", "2017-08-01 07:26:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61173", "8", "2017-08-01 07:26:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61174", "15", "2017-08-01 07:26:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61175", "10", "2017-08-01 08:00:44", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("61176", "3", "2017-08-01 08:47:19", "216.244.66.247", "27");
INSERT INTO `wp_gf_form_view` VALUES("61177", "6", "2017-08-01 08:47:19", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61178", "9", "2017-08-01 08:47:20", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61179", "8", "2017-08-01 08:47:21", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("61180", "15", "2017-08-01 08:47:23", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61181", "10", "2017-08-01 09:00:44", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61182", "10", "2017-08-01 10:00:55", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61183", "3", "2017-08-01 10:22:21", "180.76.15.162", "29");
INSERT INTO `wp_gf_form_view` VALUES("61184", "6", "2017-08-01 10:50:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61185", "9", "2017-08-01 10:50:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61186", "8", "2017-08-01 10:50:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61187", "15", "2017-08-01 10:50:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61188", "3", "2017-08-01 11:29:01", "180.76.15.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("61189", "8", "2017-08-01 11:36:56", "68.180.230.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("61190", "10", "2017-08-01 11:59:13", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61191", "3", "2017-08-01 12:01:02", "157.55.39.72", "4");
INSERT INTO `wp_gf_form_view` VALUES("61192", "10", "2017-08-01 12:01:08", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61193", "3", "2017-08-01 13:08:36", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61194", "3", "2017-08-01 14:05:53", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61195", "6", "2017-08-01 14:05:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61196", "9", "2017-08-01 14:05:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61197", "8", "2017-08-01 14:05:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61198", "10", "2017-08-01 14:05:56", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("61199", "15", "2017-08-01 14:05:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61200", "14", "2017-08-01 15:11:48", "77.75.77.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("61201", "10", "2017-08-01 15:48:25", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61202", "10", "2017-08-01 16:18:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61203", "14", "2017-08-01 17:03:37", "50.92.251.174", "1");
INSERT INTO `wp_gf_form_view` VALUES("61204", "10", "2017-08-01 17:18:30", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61205", "3", "2017-08-01 17:25:27", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61206", "6", "2017-08-01 17:25:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61207", "9", "2017-08-01 17:25:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61208", "8", "2017-08-01 17:25:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61209", "15", "2017-08-01 17:25:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61210", "10", "2017-08-01 18:02:50", "217.182.132.177", "11");
INSERT INTO `wp_gf_form_view` VALUES("61211", "11", "2017-08-01 18:20:08", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61212", "3", "2017-08-01 18:29:11", "188.40.46.135", "8");
INSERT INTO `wp_gf_form_view` VALUES("61213", "14", "2017-08-01 18:34:13", "24.69.188.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("61214", "15", "2017-08-01 18:55:42", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61215", "10", "2017-08-01 19:18:59", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61216", "3", "2017-08-01 19:45:00", "164.132.161.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("61217", "10", "2017-08-01 20:19:17", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61218", "3", "2017-08-01 20:36:18", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61219", "6", "2017-08-01 20:36:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61220", "9", "2017-08-01 20:36:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61221", "8", "2017-08-01 20:36:20", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61222", "15", "2017-08-01 20:36:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61223", "14", "2017-08-01 20:42:23", "96.50.28.78", "2");
INSERT INTO `wp_gf_form_view` VALUES("61224", "3", "2017-08-01 21:06:53", "75.154.241.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("61225", "10", "2017-08-01 21:19:37", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61226", "3", "2017-08-01 22:13:22", "142.36.249.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("61227", "14", "2017-08-01 22:17:57", "24.68.130.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("61228", "10", "2017-08-01 22:20:01", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61229", "8", "2017-08-01 22:53:48", "24.108.207.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("61230", "3", "2017-08-01 23:50:40", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61231", "6", "2017-08-01 23:50:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61232", "9", "2017-08-01 23:50:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61233", "8", "2017-08-01 23:50:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61234", "10", "2017-08-01 23:51:05", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61235", "15", "2017-08-01 23:51:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61236", "10", "2017-08-02 00:33:16", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("61237", "3", "2017-08-02 00:56:10", "40.77.167.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("61238", "8", "2017-08-02 01:21:53", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("61239", "3", "2017-08-02 01:22:47", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("61240", "3", "2017-08-02 03:18:32", "52.88.109.3", "56");
INSERT INTO `wp_gf_form_view` VALUES("61241", "6", "2017-08-02 03:18:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61242", "9", "2017-08-02 03:18:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61243", "8", "2017-08-02 03:18:33", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61244", "10", "2017-08-02 03:18:34", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("61245", "15", "2017-08-02 03:18:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61246", "14", "2017-08-02 03:28:10", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("61247", "11", "2017-08-02 04:35:37", "180.76.15.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61248", "10", "2017-08-02 05:06:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61249", "8", "2017-08-02 06:40:07", "141.8.144.38", "3");
INSERT INTO `wp_gf_form_view` VALUES("61250", "3", "2017-08-02 06:43:49", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61251", "6", "2017-08-02 06:43:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61252", "9", "2017-08-02 06:43:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61253", "10", "2017-08-02 06:43:53", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61254", "15", "2017-08-02 06:43:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61255", "14", "2017-08-02 06:48:56", "180.76.15.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("61256", "10", "2017-08-02 07:07:01", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61257", "10", "2017-08-02 08:05:12", "198.204.243.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("61258", "15", "2017-08-02 08:05:26", "198.204.243.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("61259", "3", "2017-08-02 10:03:01", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61260", "6", "2017-08-02 10:03:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61261", "9", "2017-08-02 10:03:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61262", "8", "2017-08-02 10:03:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61263", "10", "2017-08-02 10:03:08", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61264", "15", "2017-08-02 10:03:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61265", "10", "2017-08-02 12:00:24", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61266", "5", "2017-08-02 12:22:06", "157.55.39.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("61267", "14", "2017-08-02 12:41:16", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("61268", "10", "2017-08-02 13:19:37", "72.14.199.71", "11");
INSERT INTO `wp_gf_form_view` VALUES("61269", "3", "2017-08-02 13:20:00", "52.88.109.3", "54");
INSERT INTO `wp_gf_form_view` VALUES("61270", "6", "2017-08-02 13:20:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61271", "9", "2017-08-02 13:20:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61272", "8", "2017-08-02 13:20:05", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("61273", "15", "2017-08-02 13:20:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61274", "10", "2017-08-02 14:26:28", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61275", "10", "2017-08-02 15:46:57", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61276", "10", "2017-08-02 16:17:13", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61277", "3", "2017-08-02 16:46:14", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61278", "6", "2017-08-02 16:46:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61279", "9", "2017-08-02 16:46:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61280", "8", "2017-08-02 16:46:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61281", "15", "2017-08-02 16:46:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61282", "3", "2017-08-02 17:29:53", "180.76.15.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("61283", "10", "2017-08-02 17:51:02", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61284", "10", "2017-08-02 18:21:06", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("61285", "11", "2017-08-02 18:36:25", "180.76.15.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("61286", "3", "2017-08-02 19:49:08", "141.193.12.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("61287", "3", "2017-08-02 20:14:00", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61288", "6", "2017-08-02 20:14:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61289", "9", "2017-08-02 20:14:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61290", "8", "2017-08-02 20:14:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61291", "10", "2017-08-02 20:14:06", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("61292", "15", "2017-08-02 20:14:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61293", "10", "2017-08-02 21:21:37", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61294", "14", "2017-08-02 21:23:08", "180.76.15.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("61295", "3", "2017-08-02 21:56:33", "180.76.15.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("61296", "3", "2017-08-02 22:25:04", "107.173.112.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("61297", "14", "2017-08-02 23:35:14", "96.50.125.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("61298", "3", "2017-08-02 23:47:50", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61299", "6", "2017-08-02 23:47:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61300", "9", "2017-08-02 23:47:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61301", "8", "2017-08-02 23:47:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61302", "10", "2017-08-02 23:47:55", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61303", "15", "2017-08-02 23:47:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61304", "3", "2017-08-03 00:43:11", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("61305", "3", "2017-08-03 01:22:48", "31.28.24.112", "189");
INSERT INTO `wp_gf_form_view` VALUES("61306", "6", "2017-08-03 01:22:49", "31.28.24.112", "7");
INSERT INTO `wp_gf_form_view` VALUES("61307", "9", "2017-08-03 01:22:50", "31.28.24.112", "7");
INSERT INTO `wp_gf_form_view` VALUES("61308", "8", "2017-08-03 01:22:51", "31.28.24.112", "14");
INSERT INTO `wp_gf_form_view` VALUES("61309", "10", "2017-08-03 01:22:52", "31.28.24.112", "35");
INSERT INTO `wp_gf_form_view` VALUES("61310", "15", "2017-08-03 01:22:57", "31.28.24.112", "7");
INSERT INTO `wp_gf_form_view` VALUES("61311", "10", "2017-08-03 02:30:49", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("61312", "14", "2017-08-03 02:44:53", "104.142.118.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("61313", "3", "2017-08-03 03:08:55", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61314", "6", "2017-08-03 03:08:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61315", "9", "2017-08-03 03:08:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61316", "8", "2017-08-03 03:08:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61317", "10", "2017-08-03 03:08:58", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61318", "15", "2017-08-03 03:09:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61319", "3", "2017-08-03 04:07:47", "94.73.151.90", "54");
INSERT INTO `wp_gf_form_view` VALUES("61320", "6", "2017-08-03 04:07:48", "94.73.151.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("61321", "9", "2017-08-03 04:07:50", "94.73.151.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("61322", "8", "2017-08-03 04:07:51", "94.73.151.90", "4");
INSERT INTO `wp_gf_form_view` VALUES("61323", "10", "2017-08-03 04:07:51", "94.73.151.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("61324", "15", "2017-08-03 04:07:56", "94.73.151.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("61325", "14", "2017-08-03 05:23:22", "24.244.32.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("61326", "10", "2017-08-03 05:49:29", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("61327", "3", "2017-08-03 06:24:50", "52.88.109.3", "55");
INSERT INTO `wp_gf_form_view` VALUES("61328", "6", "2017-08-03 06:24:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61329", "9", "2017-08-03 06:24:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61330", "8", "2017-08-03 06:24:54", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("61331", "10", "2017-08-03 06:24:54", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("61332", "15", "2017-08-03 06:24:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61333", "3", "2017-08-03 07:19:15", "69.89.31.109", "162");
INSERT INTO `wp_gf_form_view` VALUES("61334", "6", "2017-08-03 07:19:16", "69.89.31.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("61335", "9", "2017-08-03 07:19:17", "69.89.31.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("61336", "8", "2017-08-03 07:19:17", "69.89.31.109", "12");
INSERT INTO `wp_gf_form_view` VALUES("61337", "10", "2017-08-03 07:19:18", "69.89.31.109", "30");
INSERT INTO `wp_gf_form_view` VALUES("61338", "15", "2017-08-03 07:19:22", "69.89.31.109", "6");
INSERT INTO `wp_gf_form_view` VALUES("61339", "3", "2017-08-03 08:11:17", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61340", "10", "2017-08-03 08:30:55", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("61341", "3", "2017-08-03 09:26:32", "180.76.15.146", "55");
INSERT INTO `wp_gf_form_view` VALUES("61342", "10", "2017-08-03 09:31:52", "216.244.66.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("61343", "14", "2017-08-03 09:41:20", "81.171.81.227", "2");
INSERT INTO `wp_gf_form_view` VALUES("61344", "6", "2017-08-03 09:51:42", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61345", "9", "2017-08-03 09:51:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61346", "8", "2017-08-03 09:51:46", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("61347", "15", "2017-08-03 09:51:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61348", "3", "2017-08-03 10:33:10", "180.76.15.147", "112");
INSERT INTO `wp_gf_form_view` VALUES("61349", "6", "2017-08-03 10:35:04", "94.73.146.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("61350", "9", "2017-08-03 10:35:07", "94.73.146.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("61351", "8", "2017-08-03 10:35:09", "94.73.146.42", "8");
INSERT INTO `wp_gf_form_view` VALUES("61352", "10", "2017-08-03 10:35:10", "94.73.146.42", "20");
INSERT INTO `wp_gf_form_view` VALUES("61353", "15", "2017-08-03 10:35:16", "94.73.146.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("61354", "3", "2017-08-03 11:52:45", "217.182.132.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("61355", "10", "2017-08-03 12:00:20", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61356", "10", "2017-08-03 13:03:55", "207.46.13.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("61357", "3", "2017-08-03 13:32:21", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61358", "6", "2017-08-03 13:32:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61359", "9", "2017-08-03 13:32:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61360", "8", "2017-08-03 13:32:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61361", "15", "2017-08-03 13:32:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61362", "3", "2017-08-03 14:06:21", "185.5.53.39", "162");
INSERT INTO `wp_gf_form_view` VALUES("61363", "6", "2017-08-03 14:06:23", "185.5.53.39", "6");
INSERT INTO `wp_gf_form_view` VALUES("61364", "9", "2017-08-03 14:06:24", "185.5.53.39", "6");
INSERT INTO `wp_gf_form_view` VALUES("61365", "8", "2017-08-03 14:06:25", "185.5.53.39", "12");
INSERT INTO `wp_gf_form_view` VALUES("61366", "10", "2017-08-03 14:06:25", "185.5.53.39", "31");
INSERT INTO `wp_gf_form_view` VALUES("61367", "15", "2017-08-03 14:06:30", "185.5.53.39", "6");
INSERT INTO `wp_gf_form_view` VALUES("61368", "10", "2017-08-03 15:30:01", "207.46.13.102", "3");
INSERT INTO `wp_gf_form_view` VALUES("61369", "3", "2017-08-03 15:30:13", "207.46.13.102", "13");
INSERT INTO `wp_gf_form_view` VALUES("61370", "6", "2017-08-03 15:30:37", "157.55.39.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("61371", "15", "2017-08-03 15:32:07", "157.55.39.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("61372", "3", "2017-08-03 16:34:45", "184.71.11.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("61373", "3", "2017-08-03 17:09:22", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("61374", "6", "2017-08-03 17:09:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61375", "9", "2017-08-03 17:09:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61376", "8", "2017-08-03 17:09:25", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61377", "10", "2017-08-03 17:09:26", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("61378", "15", "2017-08-03 17:09:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61379", "10", "2017-08-03 18:10:05", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("61380", "3", "2017-08-03 18:34:59", "77.75.76.167", "2");
INSERT INTO `wp_gf_form_view` VALUES("61381", "10", "2017-08-03 19:26:38", "180.76.15.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("61382", "3", "2017-08-03 19:34:47", "51.255.65.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("61383", "10", "2017-08-03 20:06:47", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("61384", "3", "2017-08-03 20:28:28", "52.88.109.3", "37");
INSERT INTO `wp_gf_form_view` VALUES("61385", "6", "2017-08-03 20:28:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61386", "9", "2017-08-03 20:28:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61387", "8", "2017-08-03 20:28:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61388", "15", "2017-08-03 20:28:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61389", "10", "2017-08-03 22:00:43", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("61390", "11", "2017-08-03 22:30:58", "207.46.13.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("61391", "3", "2017-08-03 22:37:38", "5.9.98.130", "3");
INSERT INTO `wp_gf_form_view` VALUES("61392", "9", "2017-08-03 22:48:30", "207.46.13.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("61393", "10", "2017-08-03 23:00:43", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61394", "3", "2017-08-03 23:33:02", "184.71.14.170", "28");
INSERT INTO `wp_gf_form_view` VALUES("61395", "8", "2017-08-03 23:34:12", "184.71.14.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("61396", "6", "2017-08-03 23:49:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61397", "9", "2017-08-03 23:49:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61398", "15", "2017-08-03 23:49:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61399", "3", "2017-08-04 00:03:24", "217.182.132.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("61400", "14", "2017-08-04 00:17:54", "184.71.25.154", "2");
INSERT INTO `wp_gf_form_view` VALUES("61401", "5", "2017-08-04 00:51:10", "77.75.78.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("61402", "3", "2017-08-04 01:56:24", "164.132.162.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("61403", "6", "2017-08-04 02:58:49", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61404", "9", "2017-08-04 02:58:59", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61405", "3", "2017-08-04 02:59:21", "188.40.46.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("61406", "3", "2017-08-04 03:00:18", "188.40.46.135", "118");
INSERT INTO `wp_gf_form_view` VALUES("61407", "8", "2017-08-04 03:02:16", "188.40.46.135", "8");
INSERT INTO `wp_gf_form_view` VALUES("61408", "6", "2017-08-04 03:07:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61409", "9", "2017-08-04 03:07:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61410", "10", "2017-08-04 03:07:09", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61411", "15", "2017-08-04 03:07:14", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61412", "11", "2017-08-04 04:01:35", "5.255.250.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("61413", "3", "2017-08-04 04:13:06", "5.255.250.47", "9");
INSERT INTO `wp_gf_form_view` VALUES("61414", "10", "2017-08-04 04:21:09", "188.40.46.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61415", "6", "2017-08-04 04:45:29", "51.255.65.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("61416", "3", "2017-08-04 05:41:19", "5.255.250.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("61417", "10", "2017-08-04 05:56:23", "207.46.13.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("61418", "3", "2017-08-04 06:17:52", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61419", "6", "2017-08-04 06:17:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61420", "9", "2017-08-04 06:17:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61421", "8", "2017-08-04 06:17:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61422", "10", "2017-08-04 06:17:54", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61423", "15", "2017-08-04 06:17:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61424", "3", "2017-08-04 09:35:47", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61425", "6", "2017-08-04 09:35:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61426", "9", "2017-08-04 09:35:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61427", "8", "2017-08-04 09:35:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61428", "10", "2017-08-04 09:35:50", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61429", "15", "2017-08-04 09:35:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61430", "3", "2017-08-04 11:11:51", "68.180.229.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("61431", "10", "2017-08-04 12:00:16", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("61432", "3", "2017-08-04 12:21:57", "180.76.15.157", "28");
INSERT INTO `wp_gf_form_view` VALUES("61433", "6", "2017-08-04 12:53:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61434", "9", "2017-08-04 12:53:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61435", "8", "2017-08-04 12:53:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61436", "15", "2017-08-04 12:53:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61437", "3", "2017-08-04 13:23:35", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61438", "3", "2017-08-04 14:04:06", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("61439", "10", "2017-08-04 14:26:05", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61440", "3", "2017-08-04 15:01:06", "217.182.132.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("61441", "14", "2017-08-04 16:01:56", "66.70.191.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("61442", "3", "2017-08-04 16:11:34", "66.249.79.135", "29");
INSERT INTO `wp_gf_form_view` VALUES("61443", "6", "2017-08-04 16:18:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61444", "9", "2017-08-04 16:18:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61445", "8", "2017-08-04 16:18:27", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("61446", "10", "2017-08-04 16:18:27", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("61447", "15", "2017-08-04 16:18:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61448", "3", "2017-08-04 17:02:12", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("61449", "10", "2017-08-04 18:27:42", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61450", "3", "2017-08-04 18:58:55", "217.182.132.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("61451", "10", "2017-08-04 19:30:58", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("61452", "3", "2017-08-04 19:36:47", "52.88.109.3", "38");
INSERT INTO `wp_gf_form_view` VALUES("61453", "6", "2017-08-04 19:36:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61454", "9", "2017-08-04 19:36:48", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61455", "8", "2017-08-04 19:36:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61456", "15", "2017-08-04 19:36:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61457", "14", "2017-08-04 19:44:15", "104.236.119.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("61458", "3", "2017-08-04 20:01:06", "104.236.119.206", "17");
INSERT INTO `wp_gf_form_view` VALUES("61459", "10", "2017-08-04 20:02:28", "104.236.119.206", "4");
INSERT INTO `wp_gf_form_view` VALUES("61460", "8", "2017-08-04 20:18:45", "104.236.119.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("61461", "3", "2017-08-04 21:05:23", "142.36.94.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("61462", "10", "2017-08-04 21:47:02", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61463", "10", "2017-08-04 22:08:29", "72.14.199.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("61464", "3", "2017-08-04 22:11:54", "66.249.79.137", "28");
INSERT INTO `wp_gf_form_view` VALUES("61465", "15", "2017-08-04 22:42:01", "157.55.39.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("61466", "6", "2017-08-04 22:45:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61467", "9", "2017-08-04 22:45:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61468", "8", "2017-08-04 22:45:42", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61469", "3", "2017-08-05 00:30:21", "40.77.167.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("61470", "14", "2017-08-05 00:31:49", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("61471", "3", "2017-08-05 01:25:47", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("61472", "10", "2017-08-05 01:41:34", "96.44.120.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("61473", "3", "2017-08-05 02:04:04", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("61474", "6", "2017-08-05 02:04:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61475", "9", "2017-08-05 02:04:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61476", "8", "2017-08-05 02:04:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61477", "10", "2017-08-05 02:04:06", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("61478", "15", "2017-08-05 02:04:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61479", "3", "2017-08-05 04:11:54", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("61480", "3", "2017-08-05 05:29:25", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61481", "6", "2017-08-05 05:29:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61482", "9", "2017-08-05 05:29:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61483", "8", "2017-08-05 05:29:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61484", "10", "2017-08-05 05:29:28", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61485", "15", "2017-08-05 05:29:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61486", "3", "2017-08-05 07:15:14", "137.74.207.102", "28");
INSERT INTO `wp_gf_form_view` VALUES("61487", "10", "2017-08-05 07:30:22", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("61488", "6", "2017-08-05 07:41:49", "217.11.128.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("61489", "9", "2017-08-05 07:41:50", "217.11.128.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("61490", "8", "2017-08-05 07:41:50", "217.11.128.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("61491", "15", "2017-08-05 07:41:53", "217.11.128.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("61492", "3", "2017-08-05 08:41:31", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61493", "6", "2017-08-05 08:41:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61494", "9", "2017-08-05 08:41:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61495", "8", "2017-08-05 08:41:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61496", "10", "2017-08-05 08:41:34", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61497", "15", "2017-08-05 08:41:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61498", "10", "2017-08-05 09:31:10", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61499", "3", "2017-08-05 11:21:21", "40.77.167.92", "28");
INSERT INTO `wp_gf_form_view` VALUES("61500", "10", "2017-08-05 11:31:57", "217.182.132.175", "7");
INSERT INTO `wp_gf_form_view` VALUES("61501", "6", "2017-08-05 11:52:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61502", "9", "2017-08-05 11:52:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61503", "8", "2017-08-05 11:52:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61504", "15", "2017-08-05 11:52:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61505", "10", "2017-08-05 12:00:21", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61506", "3", "2017-08-05 12:17:29", "217.182.132.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("61507", "3", "2017-08-05 13:06:35", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61508", "10", "2017-08-05 14:26:26", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61509", "14", "2017-08-05 14:34:36", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61510", "3", "2017-08-05 15:09:25", "216.244.66.231", "30");
INSERT INTO `wp_gf_form_view` VALUES("61511", "6", "2017-08-05 15:16:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61512", "9", "2017-08-05 15:16:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61513", "8", "2017-08-05 15:16:23", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61514", "10", "2017-08-05 15:16:23", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61515", "15", "2017-08-05 15:16:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61516", "10", "2017-08-05 16:27:16", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61517", "10", "2017-08-05 17:15:02", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61518", "15", "2017-08-05 17:34:57", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61519", "3", "2017-08-05 17:52:31", "164.132.161.78", "4");
INSERT INTO `wp_gf_form_view` VALUES("61520", "8", "2017-08-05 17:58:00", "138.201.49.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("61521", "3", "2017-08-05 18:00:11", "138.201.49.101", "30");
INSERT INTO `wp_gf_form_view` VALUES("61522", "14", "2017-08-05 18:00:30", "138.201.49.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("61523", "10", "2017-08-05 18:25:58", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("61524", "6", "2017-08-05 18:33:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61525", "9", "2017-08-05 18:33:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61526", "8", "2017-08-05 18:33:10", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61527", "15", "2017-08-05 18:33:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61528", "5", "2017-08-05 19:47:37", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("61529", "12", "2017-08-05 20:35:32", "40.77.167.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("61530", "3", "2017-08-05 20:52:47", "70.66.221.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("61531", "3", "2017-08-05 21:05:02", "180.76.15.8", "29");
INSERT INTO `wp_gf_form_view` VALUES("61532", "6", "2017-08-05 21:41:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61533", "9", "2017-08-05 21:41:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61534", "8", "2017-08-05 21:41:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61535", "10", "2017-08-05 21:41:38", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61536", "15", "2017-08-05 21:41:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61537", "3", "2017-08-05 22:28:20", "164.132.161.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("61538", "3", "2017-08-05 23:03:53", "217.182.132.53", "5");
INSERT INTO `wp_gf_form_view` VALUES("61539", "10", "2017-08-05 23:05:35", "157.55.39.70", "5");
INSERT INTO `wp_gf_form_view` VALUES("61540", "15", "2017-08-05 23:18:25", "180.76.15.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("61541", "14", "2017-08-05 23:48:14", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("61542", "3", "2017-08-06 00:51:39", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61543", "6", "2017-08-06 00:51:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61544", "9", "2017-08-06 00:51:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61545", "8", "2017-08-06 00:51:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61546", "10", "2017-08-06 00:51:41", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61547", "15", "2017-08-06 00:51:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61548", "10", "2017-08-06 01:50:56", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61549", "14", "2017-08-06 01:54:57", "68.180.229.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("61550", "3", "2017-08-06 02:08:33", "51.255.65.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("61551", "10", "2017-08-06 02:58:48", "217.182.132.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("61552", "10", "2017-08-06 03:56:57", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("61553", "3", "2017-08-06 04:09:29", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("61554", "6", "2017-08-06 04:09:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61555", "9", "2017-08-06 04:09:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61556", "8", "2017-08-06 04:09:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61557", "10", "2017-08-06 04:09:31", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61558", "15", "2017-08-06 04:09:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61559", "14", "2017-08-06 04:32:50", "207.194.133.9", "6");
INSERT INTO `wp_gf_form_view` VALUES("61560", "3", "2017-08-06 05:19:34", "217.182.132.51", "2");
INSERT INTO `wp_gf_form_view` VALUES("61561", "10", "2017-08-06 05:38:31", "96.44.120.218", "4");
INSERT INTO `wp_gf_form_view` VALUES("61562", "10", "2017-08-06 07:06:49", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("61563", "3", "2017-08-06 07:22:48", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61564", "6", "2017-08-06 07:22:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61565", "9", "2017-08-06 07:22:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61566", "8", "2017-08-06 07:22:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61567", "15", "2017-08-06 07:22:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61568", "10", "2017-08-06 09:07:33", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61569", "3", "2017-08-06 10:41:45", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61570", "6", "2017-08-06 10:41:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61571", "9", "2017-08-06 10:41:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61572", "8", "2017-08-06 10:41:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61573", "10", "2017-08-06 10:41:47", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61574", "15", "2017-08-06 10:41:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61575", "10", "2017-08-06 11:08:24", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61576", "14", "2017-08-06 11:26:13", "103.79.164.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("61577", "10", "2017-08-06 12:00:21", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61578", "3", "2017-08-06 12:38:23", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("61579", "14", "2017-08-06 13:48:21", "193.201.224.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("61580", "3", "2017-08-06 13:55:03", "52.88.109.3", "54");
INSERT INTO `wp_gf_form_view` VALUES("61581", "6", "2017-08-06 13:55:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61582", "9", "2017-08-06 13:55:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61583", "8", "2017-08-06 13:55:05", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("61584", "10", "2017-08-06 13:55:05", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("61585", "15", "2017-08-06 13:55:08", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61586", "10", "2017-08-06 14:12:47", "96.44.120.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("61587", "3", "2017-08-06 14:59:30", "180.76.15.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("61588", "3", "2017-08-06 15:32:50", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("61589", "10", "2017-08-06 15:35:01", "157.55.39.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("61590", "3", "2017-08-06 16:08:29", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("61591", "10", "2017-08-06 16:26:25", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61592", "3", "2017-08-06 17:11:14", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61593", "6", "2017-08-06 17:11:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61594", "9", "2017-08-06 17:11:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61595", "8", "2017-08-06 17:11:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61596", "10", "2017-08-06 17:11:17", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("61597", "15", "2017-08-06 17:11:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61598", "14", "2017-08-06 17:58:05", "24.68.134.70", "1");
INSERT INTO `wp_gf_form_view` VALUES("61599", "3", "2017-08-06 18:37:01", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61600", "10", "2017-08-06 19:05:28", "96.44.120.218", "7");
INSERT INTO `wp_gf_form_view` VALUES("61601", "3", "2017-08-06 19:23:49", "216.244.66.247", "29");
INSERT INTO `wp_gf_form_view` VALUES("61602", "6", "2017-08-06 19:23:50", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61603", "9", "2017-08-06 19:23:51", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61604", "8", "2017-08-06 19:23:51", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("61605", "15", "2017-08-06 19:23:54", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61606", "3", "2017-08-06 20:35:54", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61607", "6", "2017-08-06 20:35:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61608", "9", "2017-08-06 20:35:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61609", "8", "2017-08-06 20:35:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61610", "10", "2017-08-06 20:35:56", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61611", "15", "2017-08-06 20:35:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61612", "10", "2017-08-06 21:14:39", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61613", "10", "2017-08-06 22:41:09", "51.255.65.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("61614", "11", "2017-08-06 22:41:26", "5.255.250.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("61615", "10", "2017-08-06 23:46:55", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("61616", "8", "2017-08-06 23:49:20", "69.10.148.164", "3");
INSERT INTO `wp_gf_form_view` VALUES("61617", "3", "2017-08-06 23:56:53", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61618", "6", "2017-08-06 23:56:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61619", "9", "2017-08-06 23:56:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61620", "15", "2017-08-06 23:56:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61621", "10", "2017-08-07 00:01:13", "96.44.120.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("61622", "3", "2017-08-07 01:15:08", "180.76.15.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("61623", "10", "2017-08-07 02:26:19", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("61624", "3", "2017-08-07 03:04:18", "24.71.229.24", "29");
INSERT INTO `wp_gf_form_view` VALUES("61625", "6", "2017-08-07 03:19:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61626", "9", "2017-08-07 03:19:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61627", "8", "2017-08-07 03:19:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61628", "10", "2017-08-07 03:19:12", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61629", "15", "2017-08-07 03:19:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61630", "10", "2017-08-07 04:01:50", "180.76.15.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("61631", "3", "2017-08-07 04:22:04", "24.71.229.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("61632", "10", "2017-08-07 06:27:50", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("61633", "3", "2017-08-07 06:38:06", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61634", "6", "2017-08-07 06:38:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61635", "9", "2017-08-07 06:38:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61636", "8", "2017-08-07 06:38:08", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61637", "15", "2017-08-07 06:38:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61638", "10", "2017-08-07 07:49:21", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("61639", "10", "2017-08-07 08:28:40", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61640", "3", "2017-08-07 09:28:32", "51.255.65.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("61641", "10", "2017-08-07 09:44:34", "157.55.39.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("61642", "3", "2017-08-07 10:15:44", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61643", "6", "2017-08-07 10:15:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61644", "9", "2017-08-07 10:15:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61645", "8", "2017-08-07 10:15:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61646", "10", "2017-08-07 10:15:51", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61647", "15", "2017-08-07 10:15:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61648", "10", "2017-08-07 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61649", "3", "2017-08-07 13:10:21", "157.55.39.73", "28");
INSERT INTO `wp_gf_form_view` VALUES("61650", "6", "2017-08-07 13:33:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61651", "9", "2017-08-07 13:33:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61652", "8", "2017-08-07 13:33:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61653", "10", "2017-08-07 13:33:14", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61654", "15", "2017-08-07 13:33:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61655", "10", "2017-08-07 14:00:10", "96.44.120.218", "4");
INSERT INTO `wp_gf_form_view` VALUES("61656", "3", "2017-08-07 15:25:44", "40.77.167.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("61657", "10", "2017-08-07 16:34:30", "180.76.15.140", "6");
INSERT INTO `wp_gf_form_view` VALUES("61658", "3", "2017-08-07 16:53:40", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61659", "6", "2017-08-07 16:53:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61660", "9", "2017-08-07 16:53:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61661", "8", "2017-08-07 16:53:42", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61662", "15", "2017-08-07 16:53:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61663", "3", "2017-08-07 17:04:12", "217.182.132.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("61664", "10", "2017-08-07 18:05:07", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61665", "10", "2017-08-07 20:07:00", "72.14.199.73", "11");
INSERT INTO `wp_gf_form_view` VALUES("61666", "3", "2017-08-07 20:14:57", "52.88.109.3", "54");
INSERT INTO `wp_gf_form_view` VALUES("61667", "6", "2017-08-07 20:14:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61668", "9", "2017-08-07 20:14:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61669", "8", "2017-08-07 20:14:59", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("61670", "15", "2017-08-07 20:15:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61671", "10", "2017-08-07 21:04:49", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61672", "14", "2017-08-07 21:33:07", "70.67.111.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("61673", "10", "2017-08-07 22:11:30", "164.132.161.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("61674", "15", "2017-08-07 22:13:42", "217.182.132.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("61675", "10", "2017-08-07 23:22:24", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("61676", "3", "2017-08-07 23:33:52", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61677", "6", "2017-08-07 23:33:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61678", "9", "2017-08-07 23:33:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61679", "8", "2017-08-07 23:33:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61680", "15", "2017-08-07 23:33:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61681", "10", "2017-08-08 00:04:17", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("61682", "10", "2017-08-08 01:23:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61683", "6", "2017-08-08 01:30:18", "180.76.15.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("61684", "14", "2017-08-08 01:32:24", "75.157.168.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("61685", "3", "2017-08-08 02:50:40", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61686", "6", "2017-08-08 02:50:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61687", "9", "2017-08-08 02:50:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61688", "8", "2017-08-08 02:50:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61689", "10", "2017-08-08 02:50:47", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61690", "15", "2017-08-08 02:50:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61691", "10", "2017-08-08 03:24:04", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("61692", "10", "2017-08-08 04:15:34", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61693", "10", "2017-08-08 05:24:52", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61694", "3", "2017-08-08 06:12:36", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61695", "6", "2017-08-08 06:12:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61696", "9", "2017-08-08 06:12:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61697", "8", "2017-08-08 06:12:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61698", "10", "2017-08-08 06:12:39", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("61699", "15", "2017-08-08 06:12:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61700", "11", "2017-08-08 06:23:55", "217.182.132.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("61701", "3", "2017-08-08 07:02:22", "180.76.15.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("61702", "10", "2017-08-08 07:25:43", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61703", "10", "2017-08-08 09:26:35", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("61704", "3", "2017-08-08 09:29:17", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61705", "6", "2017-08-08 09:29:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61706", "9", "2017-08-08 09:29:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61707", "8", "2017-08-08 09:29:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61708", "15", "2017-08-08 09:29:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61709", "5", "2017-08-08 10:01:12", "51.255.65.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("61710", "14", "2017-08-08 10:06:36", "157.55.39.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("61711", "11", "2017-08-08 11:12:31", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("61712", "10", "2017-08-08 11:27:24", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61713", "8", "2017-08-08 11:43:12", "68.180.229.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("61714", "10", "2017-08-08 12:00:26", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("61715", "3", "2017-08-08 12:24:13", "66.249.79.137", "40");
INSERT INTO `wp_gf_form_view` VALUES("61716", "15", "2017-08-08 12:42:22", "157.55.39.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("61717", "6", "2017-08-08 12:49:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61718", "9", "2017-08-08 12:49:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61719", "8", "2017-08-08 12:49:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61720", "3", "2017-08-08 13:42:24", "180.76.15.141", "28");
INSERT INTO `wp_gf_form_view` VALUES("61721", "6", "2017-08-08 13:45:08", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61722", "9", "2017-08-08 13:45:09", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61723", "8", "2017-08-08 13:45:09", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("61724", "10", "2017-08-08 13:45:10", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("61725", "15", "2017-08-08 13:45:12", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61726", "3", "2017-08-08 14:15:41", "180.76.15.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("61727", "10", "2017-08-08 14:26:30", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("61728", "14", "2017-08-08 14:44:46", "154.16.43.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("61729", "3", "2017-08-08 15:17:11", "164.132.161.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("61730", "10", "2017-08-08 15:48:10", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61731", "3", "2017-08-08 16:07:24", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61732", "6", "2017-08-08 16:07:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61733", "9", "2017-08-08 16:07:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61734", "8", "2017-08-08 16:07:25", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61735", "10", "2017-08-08 16:07:26", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("61736", "15", "2017-08-08 16:07:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61737", "10", "2017-08-08 17:04:02", "40.77.167.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("61738", "14", "2017-08-08 17:07:03", "24.108.172.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("61739", "10", "2017-08-08 18:02:19", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("61740", "8", "2017-08-08 18:17:01", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("61741", "10", "2017-08-08 19:02:34", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("61742", "14", "2017-08-08 19:28:42", "184.66.252.209", "2");
INSERT INTO `wp_gf_form_view` VALUES("61743", "3", "2017-08-08 19:39:21", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61744", "6", "2017-08-08 19:39:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61745", "9", "2017-08-08 19:39:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61746", "8", "2017-08-08 19:39:23", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61747", "15", "2017-08-08 19:39:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61748", "3", "2017-08-08 20:00:04", "157.55.39.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("61749", "14", "2017-08-08 20:02:32", "24.68.106.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("61750", "10", "2017-08-08 20:03:05", "184.66.248.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("61751", "10", "2017-08-08 21:17:15", "194.187.170.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("61752", "10", "2017-08-08 22:12:29", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61753", "3", "2017-08-08 22:39:08", "162.211.109.198", "5");
INSERT INTO `wp_gf_form_view` VALUES("61754", "8", "2017-08-08 22:40:12", "162.211.109.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("61755", "14", "2017-08-08 22:41:09", "162.211.109.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("61756", "3", "2017-08-08 23:09:32", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61757", "6", "2017-08-08 23:09:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61758", "9", "2017-08-08 23:09:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61759", "8", "2017-08-08 23:09:34", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61760", "10", "2017-08-08 23:09:35", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("61761", "15", "2017-08-08 23:09:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61762", "10", "2017-08-09 00:12:40", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61763", "10", "2017-08-09 01:13:02", "184.66.248.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("61764", "3", "2017-08-09 01:24:50", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("61765", "15", "2017-08-09 01:24:51", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61766", "14", "2017-08-09 02:02:04", "96.44.123.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("61767", "10", "2017-08-09 02:13:21", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61768", "3", "2017-08-09 02:27:09", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61769", "6", "2017-08-09 02:27:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61770", "9", "2017-08-09 02:27:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61771", "8", "2017-08-09 02:27:11", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61772", "15", "2017-08-09 02:27:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61773", "10", "2017-08-09 03:00:01", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("61774", "10", "2017-08-09 04:14:02", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61775", "3", "2017-08-09 04:41:39", "194.187.170.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("61776", "10", "2017-08-09 05:14:03", "184.66.248.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("61777", "3", "2017-08-09 05:43:18", "216.244.66.195", "28");
INSERT INTO `wp_gf_form_view` VALUES("61778", "6", "2017-08-09 05:52:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61779", "9", "2017-08-09 05:52:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61780", "8", "2017-08-09 05:52:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61781", "15", "2017-08-09 05:52:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61782", "3", "2017-08-09 06:03:52", "137.74.207.120", "2");
INSERT INTO `wp_gf_form_view` VALUES("61783", "10", "2017-08-09 06:14:23", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61784", "10", "2017-08-09 07:14:45", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61785", "10", "2017-08-09 08:15:05", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61786", "3", "2017-08-09 08:19:57", "164.132.161.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("61787", "10", "2017-08-09 09:15:25", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("61788", "3", "2017-08-09 09:18:24", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61789", "6", "2017-08-09 09:18:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61790", "9", "2017-08-09 09:18:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61791", "8", "2017-08-09 09:18:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61792", "15", "2017-08-09 09:18:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61793", "10", "2017-08-09 10:15:47", "184.66.248.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61794", "10", "2017-08-09 12:00:22", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("61795", "3", "2017-08-09 12:41:54", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61796", "6", "2017-08-09 12:41:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61797", "9", "2017-08-09 12:41:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61798", "8", "2017-08-09 12:41:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61799", "15", "2017-08-09 12:41:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61800", "3", "2017-08-09 13:40:31", "217.182.132.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("61801", "10", "2017-08-09 14:26:12", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("61802", "3", "2017-08-09 14:31:53", "180.76.15.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("61803", "14", "2017-08-09 15:03:41", "193.201.224.225", "3");
INSERT INTO `wp_gf_form_view` VALUES("61804", "10", "2017-08-09 15:08:59", "137.74.207.109", "3");
INSERT INTO `wp_gf_form_view` VALUES("61805", "3", "2017-08-09 16:12:36", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61806", "6", "2017-08-09 16:12:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61807", "9", "2017-08-09 16:12:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61808", "8", "2017-08-09 16:12:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61809", "10", "2017-08-09 16:12:39", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("61810", "15", "2017-08-09 16:12:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61811", "3", "2017-08-09 17:14:45", "109.169.29.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("61812", "10", "2017-08-09 17:17:43", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61813", "14", "2017-08-09 18:06:03", "96.50.19.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("61814", "10", "2017-08-09 18:18:08", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61815", "10", "2017-08-09 19:09:17", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("61816", "3", "2017-08-09 19:20:58", "157.55.39.124", "29");
INSERT INTO `wp_gf_form_view` VALUES("61817", "6", "2017-08-09 19:31:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61818", "9", "2017-08-09 19:31:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61819", "8", "2017-08-09 19:31:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61820", "15", "2017-08-09 19:31:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61821", "3", "2017-08-09 20:09:07", "154.20.232.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("61822", "10", "2017-08-09 20:18:36", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61823", "14", "2017-08-09 20:20:09", "24.68.146.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("61824", "10", "2017-08-09 21:18:50", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61825", "8", "2017-08-09 21:27:00", "66.249.66.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("61826", "3", "2017-08-09 22:07:25", "24.11.116.220", "30");
INSERT INTO `wp_gf_form_view` VALUES("61827", "10", "2017-08-09 22:18:58", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61828", "8", "2017-08-09 22:47:57", "66.249.66.28", "3");
INSERT INTO `wp_gf_form_view` VALUES("61829", "6", "2017-08-09 22:56:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61830", "9", "2017-08-09 22:56:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61831", "15", "2017-08-09 22:56:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61832", "10", "2017-08-09 23:09:20", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("61833", "3", "2017-08-09 23:49:21", "174.127.133.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("61834", "10", "2017-08-10 00:20:16", "184.66.248.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("61835", "11", "2017-08-10 00:51:47", "77.75.78.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("61836", "3", "2017-08-10 00:58:26", "216.244.66.195", "27");
INSERT INTO `wp_gf_form_view` VALUES("61837", "6", "2017-08-10 00:58:26", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61838", "9", "2017-08-10 00:58:27", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61839", "8", "2017-08-10 00:58:27", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61840", "15", "2017-08-10 00:58:30", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("61841", "3", "2017-08-10 01:14:25", "70.66.192.163", "2");
INSERT INTO `wp_gf_form_view` VALUES("61842", "10", "2017-08-10 01:20:37", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61843", "10", "2017-08-10 02:20:57", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61844", "3", "2017-08-10 02:31:52", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61845", "6", "2017-08-10 02:31:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61846", "9", "2017-08-10 02:31:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61847", "8", "2017-08-10 02:31:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61848", "15", "2017-08-10 02:31:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61849", "14", "2017-08-10 03:15:31", "24.68.144.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("61850", "10", "2017-08-10 03:21:16", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61851", "3", "2017-08-10 03:45:08", "180.76.15.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("61852", "14", "2017-08-10 04:18:33", "180.76.15.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("61853", "10", "2017-08-10 04:21:36", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61854", "10", "2017-08-10 05:22:03", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61855", "3", "2017-08-10 05:52:56", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61856", "6", "2017-08-10 05:52:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61857", "9", "2017-08-10 05:52:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61858", "8", "2017-08-10 05:52:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61859", "15", "2017-08-10 05:53:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61860", "10", "2017-08-10 06:12:55", "24.108.13.92", "5");
INSERT INTO `wp_gf_form_view` VALUES("61861", "10", "2017-08-10 07:22:27", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61862", "10", "2017-08-10 08:22:52", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61863", "3", "2017-08-10 09:15:37", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61864", "6", "2017-08-10 09:15:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61865", "9", "2017-08-10 09:15:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61866", "8", "2017-08-10 09:15:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61867", "10", "2017-08-10 09:15:40", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("61868", "15", "2017-08-10 09:15:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61869", "10", "2017-08-10 10:23:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61870", "3", "2017-08-10 11:09:58", "5.255.250.47", "4");
INSERT INTO `wp_gf_form_view` VALUES("61871", "10", "2017-08-10 11:23:19", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61872", "10", "2017-08-10 12:00:21", "184.66.129.248", "9");
INSERT INTO `wp_gf_form_view` VALUES("61873", "3", "2017-08-10 12:41:17", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("61874", "6", "2017-08-10 12:41:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61875", "9", "2017-08-10 12:41:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61876", "8", "2017-08-10 12:41:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61877", "15", "2017-08-10 12:41:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61878", "10", "2017-08-10 13:09:25", "66.249.92.28", "3");
INSERT INTO `wp_gf_form_view` VALUES("61879", "14", "2017-08-10 13:42:03", "212.129.61.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("61880", "3", "2017-08-10 13:46:46", "40.77.167.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("61881", "10", "2017-08-10 14:24:04", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("61882", "10", "2017-08-10 15:24:38", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61883", "3", "2017-08-10 15:28:30", "217.182.132.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("61884", "3", "2017-08-10 16:23:16", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61885", "6", "2017-08-10 16:23:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61886", "9", "2017-08-10 16:23:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61887", "8", "2017-08-10 16:23:18", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61888", "10", "2017-08-10 16:23:19", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("61889", "15", "2017-08-10 16:23:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61890", "9", "2017-08-10 17:05:09", "51.255.65.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("61891", "14", "2017-08-10 17:16:52", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61892", "10", "2017-08-10 17:25:05", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61893", "10", "2017-08-10 18:25:03", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61894", "3", "2017-08-10 18:48:29", "180.76.15.141", "3");
INSERT INTO `wp_gf_form_view` VALUES("61895", "6", "2017-08-10 18:55:09", "46.229.168.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("61896", "10", "2017-08-10 19:00:31", "46.229.168.75", "13");
INSERT INTO `wp_gf_form_view` VALUES("61897", "3", "2017-08-10 19:06:29", "46.229.168.67", "33");
INSERT INTO `wp_gf_form_view` VALUES("61898", "11", "2017-08-10 19:08:22", "46.229.168.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("61899", "6", "2017-08-10 19:50:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61900", "9", "2017-08-10 19:50:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61901", "8", "2017-08-10 19:50:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61902", "15", "2017-08-10 19:50:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61903", "15", "2017-08-10 20:15:18", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61904", "3", "2017-08-10 20:22:49", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61905", "10", "2017-08-10 20:25:03", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61906", "10", "2017-08-10 21:25:05", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61907", "10", "2017-08-10 22:19:52", "180.76.15.153", "4");
INSERT INTO `wp_gf_form_view` VALUES("61908", "3", "2017-08-10 23:11:53", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("61909", "6", "2017-08-10 23:11:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61910", "9", "2017-08-10 23:11:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61911", "8", "2017-08-10 23:11:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61912", "10", "2017-08-10 23:11:56", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("61913", "15", "2017-08-10 23:11:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61914", "10", "2017-08-11 00:25:03", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61915", "3", "2017-08-11 00:35:29", "24.108.13.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("61916", "10", "2017-08-11 01:11:20", "217.182.132.28", "5");
INSERT INTO `wp_gf_form_view` VALUES("61917", "3", "2017-08-11 02:00:39", "141.8.144.124", "28");
INSERT INTO `wp_gf_form_view` VALUES("61918", "10", "2017-08-11 02:25:06", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61919", "6", "2017-08-11 02:30:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61920", "9", "2017-08-11 02:30:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61921", "8", "2017-08-11 02:30:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61922", "15", "2017-08-11 02:30:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61923", "10", "2017-08-11 03:25:05", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61924", "3", "2017-08-11 03:40:22", "217.182.132.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("61925", "3", "2017-08-11 04:00:58", "157.55.39.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("61926", "10", "2017-08-11 04:01:39", "72.14.199.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("61927", "14", "2017-08-11 04:53:23", "68.180.229.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("61928", "10", "2017-08-11 05:25:05", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61929", "3", "2017-08-11 05:58:01", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61930", "6", "2017-08-11 05:58:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61931", "9", "2017-08-11 05:58:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61932", "8", "2017-08-11 05:58:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61933", "15", "2017-08-11 05:58:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61934", "10", "2017-08-11 06:25:19", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("61935", "10", "2017-08-11 07:25:19", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61936", "14", "2017-08-11 07:28:33", "193.201.224.225", "2");
INSERT INTO `wp_gf_form_view` VALUES("61937", "14", "2017-08-11 08:04:12", "180.76.15.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("61938", "10", "2017-08-11 08:25:22", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61939", "15", "2017-08-11 08:37:29", "180.76.15.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("61940", "3", "2017-08-11 09:10:29", "68.180.229.245", "28");
INSERT INTO `wp_gf_form_view` VALUES("61941", "6", "2017-08-11 09:23:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61942", "9", "2017-08-11 09:23:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61943", "8", "2017-08-11 09:23:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61944", "10", "2017-08-11 09:23:14", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("61945", "15", "2017-08-11 09:23:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61946", "3", "2017-08-11 10:03:03", "157.55.39.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("61947", "10", "2017-08-11 10:25:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61948", "8", "2017-08-11 10:29:17", "40.77.167.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("61949", "10", "2017-08-11 11:25:22", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61950", "10", "2017-08-11 12:00:19", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("61951", "3", "2017-08-11 12:20:02", "157.55.39.214", "42");
INSERT INTO `wp_gf_form_view` VALUES("61952", "15", "2017-08-11 12:20:38", "40.77.167.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("61953", "9", "2017-08-11 12:21:52", "157.55.39.214", "2");
INSERT INTO `wp_gf_form_view` VALUES("61954", "6", "2017-08-11 12:22:09", "40.77.167.96", "3");
INSERT INTO `wp_gf_form_view` VALUES("61955", "8", "2017-08-11 12:48:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61956", "10", "2017-08-11 13:12:26", "157.55.39.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("61957", "10", "2017-08-11 14:25:21", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61958", "3", "2017-08-11 14:30:52", "51.255.71.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("61959", "3", "2017-08-11 15:05:15", "180.76.15.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("61960", "10", "2017-08-11 15:25:21", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61961", "3", "2017-08-11 16:12:51", "138.197.96.169", "28");
INSERT INTO `wp_gf_form_view` VALUES("61962", "8", "2017-08-11 16:13:02", "138.197.96.169", "3");
INSERT INTO `wp_gf_form_view` VALUES("61963", "6", "2017-08-11 16:15:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61964", "9", "2017-08-11 16:15:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61965", "10", "2017-08-11 16:15:56", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("61966", "15", "2017-08-11 16:15:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61967", "10", "2017-08-11 17:25:21", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61968", "10", "2017-08-11 18:18:12", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("61969", "3", "2017-08-11 19:04:49", "40.77.167.96", "29");
INSERT INTO `wp_gf_form_view` VALUES("61970", "10", "2017-08-11 19:05:43", "72.14.199.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("61971", "6", "2017-08-11 19:36:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61972", "9", "2017-08-11 19:36:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61973", "8", "2017-08-11 19:36:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61974", "15", "2017-08-11 19:36:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61975", "3", "2017-08-11 20:21:19", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61976", "10", "2017-08-11 20:25:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61977", "3", "2017-08-11 21:07:06", "23.95.27.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("61978", "10", "2017-08-11 21:25:25", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61979", "3", "2017-08-11 22:21:48", "50.98.165.111", "30");
INSERT INTO `wp_gf_form_view` VALUES("61980", "10", "2017-08-11 22:25:22", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("61981", "8", "2017-08-11 22:28:53", "99.199.2.175", "3");
INSERT INTO `wp_gf_form_view` VALUES("61982", "6", "2017-08-11 22:51:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61983", "9", "2017-08-11 22:51:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61984", "15", "2017-08-11 22:51:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61985", "3", "2017-08-11 23:00:36", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("61986", "10", "2017-08-11 23:25:23", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("61987", "10", "2017-08-12 00:18:05", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("61988", "10", "2017-08-12 01:25:24", "184.66.248.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("61989", "3", "2017-08-12 01:37:28", "216.244.66.247", "28");
INSERT INTO `wp_gf_form_view` VALUES("61990", "6", "2017-08-12 01:37:29", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61991", "9", "2017-08-12 01:37:30", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61992", "8", "2017-08-12 01:37:30", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("61993", "15", "2017-08-12 01:37:33", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("61994", "3", "2017-08-12 02:19:52", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("61995", "6", "2017-08-12 02:19:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61996", "9", "2017-08-12 02:19:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("61997", "8", "2017-08-12 02:19:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("61998", "10", "2017-08-12 02:19:55", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("61999", "15", "2017-08-12 02:19:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62000", "10", "2017-08-12 03:02:40", "180.76.15.141", "3");
INSERT INTO `wp_gf_form_view` VALUES("62001", "15", "2017-08-12 04:19:30", "40.77.167.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("62002", "10", "2017-08-12 04:25:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62003", "3", "2017-08-12 05:09:35", "108.180.119.43", "29");
INSERT INTO `wp_gf_form_view` VALUES("62004", "10", "2017-08-12 05:25:26", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62005", "14", "2017-08-12 05:30:17", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("62006", "6", "2017-08-12 05:40:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62007", "9", "2017-08-12 05:40:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62008", "8", "2017-08-12 05:40:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62009", "15", "2017-08-12 05:40:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62010", "10", "2017-08-12 06:25:26", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62011", "3", "2017-08-12 06:41:44", "37.187.56.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("62012", "8", "2017-08-12 06:43:12", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("62013", "14", "2017-08-12 06:43:33", "37.187.56.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("62014", "10", "2017-08-12 07:25:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62015", "10", "2017-08-12 08:25:27", "184.66.248.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("62016", "3", "2017-08-12 08:49:17", "51.255.71.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("62017", "3", "2017-08-12 09:00:26", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62018", "6", "2017-08-12 09:00:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62019", "9", "2017-08-12 09:00:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62020", "8", "2017-08-12 09:00:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62021", "10", "2017-08-12 09:00:31", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("62022", "15", "2017-08-12 09:00:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62023", "3", "2017-08-12 10:20:24", "180.76.15.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("62024", "10", "2017-08-12 10:25:25", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62025", "10", "2017-08-12 11:25:25", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62026", "10", "2017-08-12 12:00:21", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("62027", "3", "2017-08-12 12:23:18", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62028", "6", "2017-08-12 12:23:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62029", "9", "2017-08-12 12:23:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62030", "8", "2017-08-12 12:23:20", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62031", "15", "2017-08-12 12:23:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62032", "15", "2017-08-12 13:03:18", "180.76.15.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("62033", "10", "2017-08-12 13:25:28", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62034", "3", "2017-08-12 13:28:34", "99.199.80.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("62035", "10", "2017-08-12 14:21:59", "164.132.161.55", "6");
INSERT INTO `wp_gf_form_view` VALUES("62036", "14", "2017-08-12 14:32:29", "212.129.61.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("62037", "3", "2017-08-12 15:10:43", "164.132.162.164", "30");
INSERT INTO `wp_gf_form_view` VALUES("62038", "10", "2017-08-12 15:25:26", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62039", "14", "2017-08-12 15:32:37", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("62040", "9", "2017-08-12 15:42:20", "180.76.15.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("62041", "6", "2017-08-12 15:42:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62042", "8", "2017-08-12 15:42:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62043", "15", "2017-08-12 15:42:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62044", "10", "2017-08-12 16:25:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62045", "3", "2017-08-12 17:11:43", "164.132.161.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("62046", "10", "2017-08-12 17:25:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62047", "10", "2017-08-12 18:25:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62048", "3", "2017-08-12 18:29:04", "180.76.15.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("62049", "3", "2017-08-12 19:01:15", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62050", "6", "2017-08-12 19:01:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62051", "9", "2017-08-12 19:01:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62052", "8", "2017-08-12 19:01:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62053", "10", "2017-08-12 19:01:18", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("62054", "15", "2017-08-12 19:01:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62055", "3", "2017-08-12 20:07:50", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62056", "10", "2017-08-12 20:11:59", "207.46.13.164", "4");
INSERT INTO `wp_gf_form_view` VALUES("62057", "10", "2017-08-12 21:07:17", "72.14.199.73", "4");
INSERT INTO `wp_gf_form_view` VALUES("62058", "3", "2017-08-12 21:17:50", "157.55.39.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("62059", "3", "2017-08-12 22:00:26", "217.182.132.152", "29");
INSERT INTO `wp_gf_form_view` VALUES("62060", "6", "2017-08-12 22:12:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62061", "9", "2017-08-12 22:12:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62062", "8", "2017-08-12 22:12:24", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62063", "10", "2017-08-12 22:12:25", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("62064", "15", "2017-08-12 22:12:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62065", "10", "2017-08-12 23:06:04", "157.55.39.214", "3");
INSERT INTO `wp_gf_form_view` VALUES("62066", "10", "2017-08-13 00:25:30", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62067", "10", "2017-08-13 01:25:34", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62068", "3", "2017-08-13 01:30:17", "216.244.66.247", "28");
INSERT INTO `wp_gf_form_view` VALUES("62069", "6", "2017-08-13 01:49:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62070", "9", "2017-08-13 01:49:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62071", "8", "2017-08-13 01:49:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62072", "15", "2017-08-13 01:49:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62073", "10", "2017-08-13 02:25:30", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62074", "3", "2017-08-13 02:30:24", "217.182.132.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("62075", "12", "2017-08-13 02:30:26", "217.182.132.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("62076", "10", "2017-08-13 03:25:28", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62077", "3", "2017-08-13 04:20:21", "180.76.15.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("62078", "10", "2017-08-13 04:25:28", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62079", "3", "2017-08-13 05:19:56", "52.88.109.3", "54");
INSERT INTO `wp_gf_form_view` VALUES("62080", "6", "2017-08-13 05:19:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62081", "9", "2017-08-13 05:19:58", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("62082", "8", "2017-08-13 05:19:58", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("62083", "10", "2017-08-13 05:19:59", "52.88.109.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("62084", "15", "2017-08-13 05:20:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62085", "14", "2017-08-13 05:27:57", "31.187.66.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("62086", "10", "2017-08-13 06:11:41", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("62087", "3", "2017-08-13 07:07:01", "180.76.15.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("62088", "10", "2017-08-13 07:25:31", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62089", "10", "2017-08-13 08:07:49", "164.132.161.9", "10");
INSERT INTO `wp_gf_form_view` VALUES("62090", "3", "2017-08-13 08:51:16", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62091", "6", "2017-08-13 08:51:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62092", "9", "2017-08-13 08:51:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62093", "8", "2017-08-13 08:51:18", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62094", "15", "2017-08-13 08:51:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62095", "10", "2017-08-13 09:25:29", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62096", "10", "2017-08-13 10:13:19", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("62097", "10", "2017-08-13 11:25:32", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62098", "10", "2017-08-13 12:00:22", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("62099", "3", "2017-08-13 12:08:17", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62100", "6", "2017-08-13 12:08:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62101", "9", "2017-08-13 12:08:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62102", "8", "2017-08-13 12:08:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62103", "15", "2017-08-13 12:08:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62104", "3", "2017-08-13 13:01:01", "40.77.167.23", "20");
INSERT INTO `wp_gf_form_view` VALUES("62105", "15", "2017-08-13 13:01:15", "40.77.167.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("62106", "9", "2017-08-13 13:03:04", "157.55.39.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("62107", "6", "2017-08-13 13:03:13", "40.77.167.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("62108", "10", "2017-08-13 13:25:32", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62109", "10", "2017-08-13 14:25:32", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62110", "10", "2017-08-13 15:25:33", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62111", "3", "2017-08-13 15:32:50", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62112", "6", "2017-08-13 15:32:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62113", "9", "2017-08-13 15:32:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62114", "8", "2017-08-13 15:32:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62115", "15", "2017-08-13 15:32:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62116", "3", "2017-08-13 16:16:56", "180.76.15.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("62117", "10", "2017-08-13 16:25:33", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62118", "10", "2017-08-13 17:25:31", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62119", "3", "2017-08-13 17:58:36", "216.244.66.195", "27");
INSERT INTO `wp_gf_form_view` VALUES("62120", "6", "2017-08-13 17:58:36", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62121", "9", "2017-08-13 17:58:37", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62122", "8", "2017-08-13 17:58:38", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62123", "15", "2017-08-13 17:58:41", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62124", "10", "2017-08-13 18:25:31", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62125", "3", "2017-08-13 18:54:05", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62126", "6", "2017-08-13 18:54:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62127", "9", "2017-08-13 18:54:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62128", "8", "2017-08-13 18:54:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62129", "15", "2017-08-13 18:54:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62130", "3", "2017-08-13 19:11:05", "217.182.132.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("62131", "10", "2017-08-13 19:25:31", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62132", "3", "2017-08-13 20:09:07", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62133", "10", "2017-08-13 20:25:34", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62134", "15", "2017-08-13 21:16:06", "40.77.167.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("62135", "10", "2017-08-13 21:25:32", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62136", "3", "2017-08-13 22:13:27", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62137", "6", "2017-08-13 22:13:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62138", "9", "2017-08-13 22:13:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62139", "8", "2017-08-13 22:13:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62140", "10", "2017-08-13 22:13:29", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("62141", "15", "2017-08-13 22:13:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62142", "3", "2017-08-13 23:07:42", "164.132.161.2", "2");
INSERT INTO `wp_gf_form_view` VALUES("62143", "10", "2017-08-13 23:25:34", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62144", "10", "2017-08-14 00:25:37", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62145", "14", "2017-08-14 00:31:21", "40.77.167.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("62146", "3", "2017-08-14 00:51:43", "157.55.39.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("62147", "10", "2017-08-14 01:25:35", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62148", "3", "2017-08-14 01:46:20", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62149", "6", "2017-08-14 01:46:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62150", "9", "2017-08-14 01:46:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62151", "8", "2017-08-14 01:46:25", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62152", "15", "2017-08-14 01:46:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62153", "10", "2017-08-14 02:25:37", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62154", "3", "2017-08-14 02:49:25", "217.182.132.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("62155", "10", "2017-08-14 03:21:56", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("62156", "3", "2017-08-14 04:12:10", "40.77.167.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("62157", "10", "2017-08-14 04:25:33", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62158", "3", "2017-08-14 05:06:30", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62159", "6", "2017-08-14 05:06:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62160", "9", "2017-08-14 05:06:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62161", "8", "2017-08-14 05:06:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62162", "10", "2017-08-14 05:06:33", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("62163", "15", "2017-08-14 05:06:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62164", "10", "2017-08-14 06:15:35", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("62165", "3", "2017-08-14 06:34:17", "24.68.135.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("62166", "3", "2017-08-14 07:14:06", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("62167", "10", "2017-08-14 07:14:07", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("62168", "15", "2017-08-14 07:14:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62169", "8", "2017-08-14 08:01:58", "217.182.132.147", "3");
INSERT INTO `wp_gf_form_view` VALUES("62170", "3", "2017-08-14 08:18:18", "180.76.15.9", "28");
INSERT INTO `wp_gf_form_view` VALUES("62171", "10", "2017-08-14 08:25:34", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62172", "6", "2017-08-14 08:26:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62173", "9", "2017-08-14 08:26:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62174", "15", "2017-08-14 08:26:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62175", "10", "2017-08-14 09:25:34", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62176", "3", "2017-08-14 10:11:50", "51.255.65.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("62177", "10", "2017-08-14 10:25:34", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62178", "10", "2017-08-14 11:25:37", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62179", "3", "2017-08-14 11:46:49", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62180", "6", "2017-08-14 11:46:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62181", "9", "2017-08-14 11:46:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62182", "8", "2017-08-14 11:46:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62183", "15", "2017-08-14 11:46:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62184", "10", "2017-08-14 12:00:22", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("62185", "10", "2017-08-14 13:25:35", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62186", "3", "2017-08-14 14:02:04", "180.76.15.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("62187", "10", "2017-08-14 14:25:35", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62188", "3", "2017-08-14 15:09:10", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62189", "6", "2017-08-14 15:09:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62190", "9", "2017-08-14 15:09:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62191", "8", "2017-08-14 15:09:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62192", "10", "2017-08-14 15:09:15", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("62193", "15", "2017-08-14 15:09:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62194", "14", "2017-08-14 15:19:00", "70.67.58.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("62195", "3", "2017-08-14 16:02:49", "24.69.189.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("62196", "10", "2017-08-14 16:25:36", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62197", "9", "2017-08-14 16:55:54", "180.76.15.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("62198", "10", "2017-08-14 17:05:12", "72.14.199.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("62199", "14", "2017-08-14 17:35:31", "196.16.7.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("62200", "3", "2017-08-14 17:45:09", "51.255.65.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("62201", "10", "2017-08-14 18:25:39", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62202", "3", "2017-08-14 18:32:48", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62203", "6", "2017-08-14 18:32:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62204", "9", "2017-08-14 18:32:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62205", "8", "2017-08-14 18:32:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62206", "15", "2017-08-14 18:32:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62207", "3", "2017-08-14 19:09:15", "180.76.15.134", "35");
INSERT INTO `wp_gf_form_view` VALUES("62208", "14", "2017-08-14 19:19:40", "104.236.89.15", "6");
INSERT INTO `wp_gf_form_view` VALUES("62209", "6", "2017-08-14 19:23:32", "104.236.89.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("62210", "10", "2017-08-14 19:25:16", "104.236.89.15", "7");
INSERT INTO `wp_gf_form_view` VALUES("62211", "9", "2017-08-14 19:29:37", "104.236.89.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("62212", "15", "2017-08-14 19:35:43", "104.236.89.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("62213", "8", "2017-08-14 19:56:50", "104.236.89.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("62214", "10", "2017-08-14 20:25:47", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62215", "10", "2017-08-14 21:25:42", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62216", "3", "2017-08-14 21:57:29", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62217", "6", "2017-08-14 21:57:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62218", "9", "2017-08-14 21:57:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62219", "8", "2017-08-14 21:57:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62220", "15", "2017-08-14 21:57:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62221", "3", "2017-08-14 22:24:44", "104.196.24.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("62222", "10", "2017-08-14 22:25:40", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62223", "8", "2017-08-14 22:26:19", "104.196.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("62224", "10", "2017-08-14 23:04:43", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62225", "3", "2017-08-14 23:10:10", "51.255.71.116", "4");
INSERT INTO `wp_gf_form_view` VALUES("62226", "8", "2017-08-14 23:25:47", "159.203.169.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("62227", "14", "2017-08-14 23:55:46", "104.196.167.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("62228", "3", "2017-08-15 00:01:14", "104.196.167.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("62229", "10", "2017-08-15 00:05:01", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62230", "10", "2017-08-15 01:05:05", "184.66.248.195", "16");
INSERT INTO `wp_gf_form_view` VALUES("62231", "3", "2017-08-15 01:13:03", "104.196.167.196", "36");
INSERT INTO `wp_gf_form_view` VALUES("62232", "14", "2017-08-15 01:14:22", "104.196.167.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("62233", "15", "2017-08-15 01:16:48", "104.196.167.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("62234", "6", "2017-08-15 01:24:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62235", "9", "2017-08-15 01:24:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62236", "8", "2017-08-15 01:24:39", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("62237", "10", "2017-08-15 02:05:26", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("62238", "11", "2017-08-15 02:07:28", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("62239", "3", "2017-08-15 02:39:25", "104.196.159.88", "16");
INSERT INTO `wp_gf_form_view` VALUES("62240", "15", "2017-08-15 02:39:45", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("62241", "8", "2017-08-15 02:40:01", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("62242", "9", "2017-08-15 02:40:38", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("62243", "6", "2017-08-15 02:41:15", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("62244", "10", "2017-08-15 03:05:47", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62245", "10", "2017-08-15 04:06:07", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62246", "3", "2017-08-15 04:08:05", "104.196.217.246", "41");
INSERT INTO `wp_gf_form_view` VALUES("62247", "6", "2017-08-15 04:10:47", "104.196.217.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("62248", "9", "2017-08-15 04:53:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62249", "8", "2017-08-15 04:53:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62250", "15", "2017-08-15 04:53:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62251", "3", "2017-08-15 05:03:09", "104.196.24.131", "9");
INSERT INTO `wp_gf_form_view` VALUES("62252", "10", "2017-08-15 05:06:07", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62253", "10", "2017-08-15 06:06:28", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62254", "10", "2017-08-15 07:06:49", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62255", "10", "2017-08-15 08:07:09", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62256", "3", "2017-08-15 08:17:26", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62257", "6", "2017-08-15 08:17:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62258", "9", "2017-08-15 08:17:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62259", "8", "2017-08-15 08:17:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62260", "15", "2017-08-15 08:17:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62261", "10", "2017-08-15 09:07:30", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62262", "3", "2017-08-15 10:01:54", "24.69.147.84", "28");
INSERT INTO `wp_gf_form_view` VALUES("62263", "10", "2017-08-15 10:07:50", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62264", "6", "2017-08-15 10:49:02", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62265", "9", "2017-08-15 10:49:03", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62266", "8", "2017-08-15 10:49:03", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("62267", "15", "2017-08-15 10:49:06", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62268", "10", "2017-08-15 11:08:11", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62269", "3", "2017-08-15 11:36:48", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62270", "6", "2017-08-15 11:36:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62271", "9", "2017-08-15 11:36:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62272", "8", "2017-08-15 11:36:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62273", "15", "2017-08-15 11:36:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62274", "10", "2017-08-15 12:01:58", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("62275", "10", "2017-08-15 13:00:31", "180.76.15.9", "5");
INSERT INTO `wp_gf_form_view` VALUES("62276", "8", "2017-08-15 13:20:47", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("62277", "15", "2017-08-15 13:32:22", "164.132.161.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("62278", "3", "2017-08-15 13:33:51", "180.76.15.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("62279", "3", "2017-08-15 14:06:53", "51.255.65.27", "31");
INSERT INTO `wp_gf_form_view` VALUES("62280", "10", "2017-08-15 14:09:13", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62281", "6", "2017-08-15 14:59:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62282", "9", "2017-08-15 14:59:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62283", "8", "2017-08-15 14:59:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62284", "15", "2017-08-15 14:59:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62285", "10", "2017-08-15 15:09:33", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62286", "6", "2017-08-15 15:38:32", "46.229.168.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("62287", "3", "2017-08-15 15:39:08", "46.229.168.73", "10");
INSERT INTO `wp_gf_form_view` VALUES("62288", "15", "2017-08-15 15:41:38", "46.229.168.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("62289", "10", "2017-08-15 16:09:37", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62290", "8", "2017-08-15 16:56:01", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("62291", "3", "2017-08-15 16:56:37", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("62292", "10", "2017-08-15 17:09:42", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62293", "3", "2017-08-15 17:10:25", "40.77.167.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("62294", "8", "2017-08-15 17:36:11", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("62295", "10", "2017-08-15 18:09:42", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62296", "3", "2017-08-15 18:36:44", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62297", "6", "2017-08-15 18:36:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62298", "9", "2017-08-15 18:36:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62299", "8", "2017-08-15 18:36:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62300", "15", "2017-08-15 18:36:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62301", "5", "2017-08-15 18:47:01", "164.132.161.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("62302", "3", "2017-08-15 19:13:48", "180.76.15.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("62303", "10", "2017-08-15 19:15:58", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62304", "3", "2017-08-15 20:10:50", "154.5.209.143", "4");
INSERT INTO `wp_gf_form_view` VALUES("62305", "10", "2017-08-15 20:10:57", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("62306", "10", "2017-08-15 21:04:21", "72.14.199.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("62307", "3", "2017-08-15 21:56:03", "52.88.109.3", "27");
INSERT INTO `wp_gf_form_view` VALUES("62308", "6", "2017-08-15 21:56:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62309", "9", "2017-08-15 21:56:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62310", "8", "2017-08-15 21:56:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62311", "15", "2017-08-15 21:56:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62312", "10", "2017-08-15 22:16:40", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62313", "8", "2017-08-15 22:32:05", "70.67.51.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("62314", "10", "2017-08-15 23:05:52", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("62315", "3", "2017-08-16 00:10:59", "154.5.209.143", "30");
INSERT INTO `wp_gf_form_view` VALUES("62316", "10", "2017-08-16 00:12:05", "216.244.66.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("62317", "6", "2017-08-16 00:14:32", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62318", "9", "2017-08-16 00:14:34", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62319", "8", "2017-08-16 00:14:35", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("62320", "15", "2017-08-16 00:14:41", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62321", "11", "2017-08-16 00:19:09", "164.132.161.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("62322", "3", "2017-08-16 01:13:53", "96.50.5.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("62323", "10", "2017-08-16 01:17:44", "184.66.248.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("62324", "6", "2017-08-16 01:21:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62325", "9", "2017-08-16 01:21:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62326", "8", "2017-08-16 01:21:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62327", "15", "2017-08-16 01:21:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62328", "11", "2017-08-16 01:53:08", "40.77.167.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("62329", "10", "2017-08-16 02:11:11", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("62330", "3", "2017-08-16 02:44:25", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("62331", "3", "2017-08-16 03:12:50", "180.76.15.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("62332", "10", "2017-08-16 03:18:02", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62333", "3", "2017-08-16 04:07:39", "66.249.79.135", "29");
INSERT INTO `wp_gf_form_view` VALUES("62334", "10", "2017-08-16 04:11:59", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("62335", "6", "2017-08-16 04:43:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62336", "9", "2017-08-16 04:43:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62337", "8", "2017-08-16 04:43:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62338", "15", "2017-08-16 04:44:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62339", "10", "2017-08-16 05:18:44", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62340", "3", "2017-08-16 05:27:56", "40.77.167.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("62341", "3", "2017-08-16 06:01:26", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("62342", "10", "2017-08-16 06:19:04", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62343", "10", "2017-08-16 07:19:05", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62344", "3", "2017-08-16 08:11:12", "151.80.46.90", "30");
INSERT INTO `wp_gf_form_view` VALUES("62345", "6", "2017-08-16 08:14:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62346", "9", "2017-08-16 08:14:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62347", "8", "2017-08-16 08:14:19", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("62348", "10", "2017-08-16 08:14:20", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("62349", "15", "2017-08-16 08:14:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62350", "10", "2017-08-16 09:19:27", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62351", "10", "2017-08-16 10:19:28", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62352", "10", "2017-08-16 11:19:49", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62353", "3", "2017-08-16 11:36:24", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62354", "6", "2017-08-16 11:36:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62355", "9", "2017-08-16 11:36:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62356", "8", "2017-08-16 11:36:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62357", "15", "2017-08-16 11:36:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62358", "14", "2017-08-16 11:37:56", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("62359", "10", "2017-08-16 12:00:23", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("62360", "3", "2017-08-16 12:17:10", "46.118.154.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("62361", "8", "2017-08-16 12:25:08", "174.3.52.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("62362", "3", "2017-08-16 13:08:47", "194.187.170.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("62363", "10", "2017-08-16 13:20:09", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62364", "11", "2017-08-16 13:29:40", "194.187.170.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("62365", "10", "2017-08-16 14:20:30", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62366", "3", "2017-08-16 14:43:01", "51.255.71.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("62367", "3", "2017-08-16 15:07:46", "52.88.109.3", "38");
INSERT INTO `wp_gf_form_view` VALUES("62368", "6", "2017-08-16 15:07:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62369", "9", "2017-08-16 15:07:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62370", "8", "2017-08-16 15:07:48", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62371", "10", "2017-08-16 15:07:49", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("62372", "15", "2017-08-16 15:07:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62373", "11", "2017-08-16 15:17:51", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("62374", "5", "2017-08-16 15:18:49", "207.46.13.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("62375", "10", "2017-08-16 16:20:48", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62376", "3", "2017-08-16 16:33:50", "184.66.49.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("62377", "10", "2017-08-16 17:20:48", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62378", "3", "2017-08-16 18:01:15", "180.76.15.14", "34");
INSERT INTO `wp_gf_form_view` VALUES("62379", "10", "2017-08-16 18:20:48", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62380", "6", "2017-08-16 18:30:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62381", "9", "2017-08-16 18:30:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62382", "8", "2017-08-16 18:30:20", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("62383", "15", "2017-08-16 18:30:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62384", "10", "2017-08-16 19:20:46", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62385", "3", "2017-08-16 19:28:43", "180.76.15.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("62386", "9", "2017-08-16 19:51:07", "207.46.13.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("62387", "10", "2017-08-16 20:20:49", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62388", "10", "2017-08-16 21:20:48", "184.66.248.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("62389", "3", "2017-08-16 21:39:14", "138.201.34.170", "38");
INSERT INTO `wp_gf_form_view` VALUES("62390", "8", "2017-08-16 21:40:33", "138.201.34.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("62391", "14", "2017-08-16 21:42:27", "138.201.34.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("62392", "15", "2017-08-16 21:43:54", "138.201.34.170", "3");
INSERT INTO `wp_gf_form_view` VALUES("62393", "6", "2017-08-16 21:57:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62394", "9", "2017-08-16 21:57:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62395", "10", "2017-08-16 22:11:17", "164.132.161.54", "4");
INSERT INTO `wp_gf_form_view` VALUES("62396", "10", "2017-08-16 23:20:46", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62397", "3", "2017-08-16 23:58:43", "72.143.223.159", "3");
INSERT INTO `wp_gf_form_view` VALUES("62398", "10", "2017-08-17 00:20:49", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62399", "14", "2017-08-17 00:32:37", "5.255.250.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("62400", "3", "2017-08-17 00:44:09", "96.50.20.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("62401", "3", "2017-08-17 01:19:49", "52.88.109.3", "57");
INSERT INTO `wp_gf_form_view` VALUES("62402", "6", "2017-08-17 01:19:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62403", "9", "2017-08-17 01:19:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62404", "8", "2017-08-17 01:19:55", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("62405", "10", "2017-08-17 01:19:56", "52.88.109.3", "13");
INSERT INTO `wp_gf_form_view` VALUES("62406", "15", "2017-08-17 01:19:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62407", "10", "2017-08-17 02:20:49", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62408", "3", "2017-08-17 02:39:35", "164.132.161.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("62409", "3", "2017-08-17 03:05:43", "157.55.39.119", "195");
INSERT INTO `wp_gf_form_view` VALUES("62410", "10", "2017-08-17 03:20:49", "184.66.248.195", "37");
INSERT INTO `wp_gf_form_view` VALUES("62411", "14", "2017-08-17 03:32:43", "31.187.66.52", "4");
INSERT INTO `wp_gf_form_view` VALUES("62412", "12", "2017-08-17 03:38:51", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("62413", "8", "2017-08-17 03:40:02", "138.201.34.170", "15");
INSERT INTO `wp_gf_form_view` VALUES("62414", "15", "2017-08-17 03:43:31", "138.201.34.170", "7");
INSERT INTO `wp_gf_form_view` VALUES("62415", "6", "2017-08-17 03:46:34", "138.201.34.170", "6");
INSERT INTO `wp_gf_form_view` VALUES("62416", "9", "2017-08-17 03:46:35", "138.201.34.170", "6");
INSERT INTO `wp_gf_form_view` VALUES("62417", "10", "2017-08-17 04:20:46", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62418", "3", "2017-08-17 04:48:48", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62419", "6", "2017-08-17 04:48:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62420", "9", "2017-08-17 04:48:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62421", "8", "2017-08-17 04:48:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62422", "15", "2017-08-17 04:48:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62423", "10", "2017-08-17 05:20:48", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62424", "10", "2017-08-17 06:20:49", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62425", "3", "2017-08-17 06:30:46", "207.46.13.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("62426", "10", "2017-08-17 07:20:46", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62427", "3", "2017-08-17 08:18:20", "52.88.109.3", "133");
INSERT INTO `wp_gf_form_view` VALUES("62428", "6", "2017-08-17 08:18:21", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62429", "9", "2017-08-17 08:18:22", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62430", "8", "2017-08-17 08:18:22", "52.88.109.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("62431", "10", "2017-08-17 08:18:23", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("62432", "15", "2017-08-17 08:18:25", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("62433", "10", "2017-08-17 09:20:49", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62434", "3", "2017-08-17 10:04:15", "180.76.15.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("62435", "10", "2017-08-17 10:20:47", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62436", "10", "2017-08-17 11:10:59", "180.76.15.148", "8");
INSERT INTO `wp_gf_form_view` VALUES("62437", "3", "2017-08-17 11:44:26", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62438", "6", "2017-08-17 11:44:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62439", "9", "2017-08-17 11:44:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62440", "8", "2017-08-17 11:44:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62441", "15", "2017-08-17 11:44:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62442", "10", "2017-08-17 12:00:19", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("62443", "14", "2017-08-17 12:08:58", "58.187.170.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("62444", "3", "2017-08-17 12:17:35", "180.76.15.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("62445", "10", "2017-08-17 13:20:49", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("62446", "3", "2017-08-17 13:25:11", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("62447", "11", "2017-08-17 14:00:19", "194.187.170.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("62448", "10", "2017-08-17 14:20:54", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62449", "3", "2017-08-17 15:12:28", "104.155.189.59", "56");
INSERT INTO `wp_gf_form_view` VALUES("62450", "6", "2017-08-17 15:12:29", "104.155.189.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("62451", "9", "2017-08-17 15:12:30", "104.155.189.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("62452", "8", "2017-08-17 15:12:30", "104.155.189.59", "4");
INSERT INTO `wp_gf_form_view` VALUES("62453", "10", "2017-08-17 15:12:31", "104.155.189.59", "12");
INSERT INTO `wp_gf_form_view` VALUES("62454", "15", "2017-08-17 15:12:33", "104.155.189.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("62455", "3", "2017-08-17 16:17:12", "180.76.15.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("62456", "10", "2017-08-17 16:20:49", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62457", "10", "2017-08-17 17:08:28", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("62458", "3", "2017-08-17 17:51:44", "70.67.56.20", "3");
INSERT INTO `wp_gf_form_view` VALUES("62459", "14", "2017-08-17 17:55:52", "70.67.56.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("62460", "3", "2017-08-17 18:01:48", "109.169.29.30", "35");
INSERT INTO `wp_gf_form_view` VALUES("62461", "14", "2017-08-17 18:14:05", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62462", "10", "2017-08-17 18:20:56", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62463", "6", "2017-08-17 18:47:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62464", "9", "2017-08-17 18:47:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62465", "8", "2017-08-17 18:47:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62466", "15", "2017-08-17 18:47:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62467", "10", "2017-08-17 19:21:10", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62468", "10", "2017-08-17 20:21:10", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62469", "10", "2017-08-17 21:17:56", "68.180.230.188", "4");
INSERT INTO `wp_gf_form_view` VALUES("62470", "15", "2017-08-17 21:22:40", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62471", "3", "2017-08-17 21:28:17", "142.25.150.212", "2");
INSERT INTO `wp_gf_form_view` VALUES("62472", "3", "2017-08-17 22:00:26", "216.244.66.195", "56");
INSERT INTO `wp_gf_form_view` VALUES("62473", "6", "2017-08-17 22:00:27", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62474", "9", "2017-08-17 22:00:28", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62475", "8", "2017-08-17 22:00:28", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("62476", "10", "2017-08-17 22:00:29", "216.244.66.195", "13");
INSERT INTO `wp_gf_form_view` VALUES("62477", "15", "2017-08-17 22:00:31", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62478", "8", "2017-08-17 23:10:07", "180.76.15.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("62479", "10", "2017-08-17 23:21:08", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62480", "3", "2017-08-17 23:43:26", "180.76.15.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("62481", "10", "2017-08-18 00:10:58", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("62482", "10", "2017-08-18 01:21:12", "184.66.248.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("62483", "3", "2017-08-18 01:48:25", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62484", "6", "2017-08-18 01:48:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62485", "9", "2017-08-18 01:48:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62486", "8", "2017-08-18 01:48:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62487", "15", "2017-08-18 01:48:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62488", "10", "2017-08-18 02:21:12", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62489", "10", "2017-08-18 03:21:13", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62490", "10", "2017-08-18 04:21:11", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62491", "3", "2017-08-18 04:54:25", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("62492", "15", "2017-08-18 05:05:36", "40.77.167.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("62493", "3", "2017-08-18 05:07:27", "158.69.229.6", "35");
INSERT INTO `wp_gf_form_view` VALUES("62494", "8", "2017-08-18 05:08:24", "158.69.229.6", "3");
INSERT INTO `wp_gf_form_view` VALUES("62495", "10", "2017-08-18 05:21:12", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62496", "6", "2017-08-18 05:29:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62497", "9", "2017-08-18 05:29:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62498", "10", "2017-08-18 06:21:12", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62499", "3", "2017-08-18 06:50:14", "68.180.230.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("62500", "3", "2017-08-18 07:02:29", "24.108.168.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("62501", "10", "2017-08-18 07:21:12", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62502", "10", "2017-08-18 08:21:12", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62503", "3", "2017-08-18 08:58:27", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62504", "6", "2017-08-18 08:58:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62505", "9", "2017-08-18 08:58:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62506", "8", "2017-08-18 08:58:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62507", "15", "2017-08-18 08:58:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62508", "10", "2017-08-18 09:21:10", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62509", "10", "2017-08-18 10:21:12", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62510", "10", "2017-08-18 11:12:07", "157.55.39.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("62511", "10", "2017-08-18 12:00:20", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("62512", "3", "2017-08-18 12:15:02", "180.76.15.145", "29");
INSERT INTO `wp_gf_form_view` VALUES("62513", "6", "2017-08-18 12:31:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62514", "9", "2017-08-18 12:31:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62515", "8", "2017-08-18 12:31:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62516", "15", "2017-08-18 12:31:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62517", "10", "2017-08-18 13:21:11", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62518", "3", "2017-08-18 13:53:32", "207.115.104.72", "6");
INSERT INTO `wp_gf_form_view` VALUES("62519", "8", "2017-08-18 13:53:45", "207.115.104.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("62520", "3", "2017-08-18 14:06:04", "207.115.104.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("62521", "8", "2017-08-18 14:06:50", "207.115.104.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("62522", "10", "2017-08-18 14:18:41", "157.55.39.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("62523", "10", "2017-08-18 15:21:14", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62524", "3", "2017-08-18 15:58:12", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62525", "6", "2017-08-18 15:58:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62526", "9", "2017-08-18 15:58:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62527", "8", "2017-08-18 15:58:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62528", "15", "2017-08-18 15:58:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62529", "3", "2017-08-18 16:02:43", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("62530", "6", "2017-08-18 16:02:44", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62531", "9", "2017-08-18 16:02:45", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62532", "8", "2017-08-18 16:02:45", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("62533", "10", "2017-08-18 16:02:46", "216.244.66.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("62534", "15", "2017-08-18 16:02:48", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62535", "10", "2017-08-18 17:21:14", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62536", "10", "2017-08-18 18:21:14", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62537", "14", "2017-08-18 18:54:40", "70.67.60.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("62538", "3", "2017-08-18 18:55:01", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("62539", "3", "2017-08-18 19:10:35", "66.249.79.137", "29");
INSERT INTO `wp_gf_form_view` VALUES("62540", "10", "2017-08-18 19:21:14", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62541", "6", "2017-08-18 19:27:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62542", "9", "2017-08-18 19:27:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62543", "8", "2017-08-18 19:27:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62544", "15", "2017-08-18 19:27:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62545", "10", "2017-08-18 20:21:14", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62546", "11", "2017-08-18 20:38:32", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("62547", "3", "2017-08-18 20:58:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62548", "3", "2017-08-18 21:17:46", "157.55.39.210", "6");
INSERT INTO `wp_gf_form_view` VALUES("62549", "10", "2017-08-18 21:20:27", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("62550", "10", "2017-08-18 22:21:15", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62551", "3", "2017-08-18 22:32:36", "157.55.39.210", "32");
INSERT INTO `wp_gf_form_view` VALUES("62552", "8", "2017-08-18 22:38:57", "40.77.167.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("62553", "6", "2017-08-18 22:59:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62554", "9", "2017-08-18 22:59:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62555", "15", "2017-08-18 22:59:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62556", "10", "2017-08-18 23:21:15", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62557", "8", "2017-08-18 23:21:45", "180.76.15.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("62558", "3", "2017-08-18 23:55:05", "180.76.15.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("62559", "10", "2017-08-19 00:21:15", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62560", "10", "2017-08-19 01:21:17", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62561", "10", "2017-08-19 02:21:15", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62562", "3", "2017-08-19 02:29:27", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62563", "6", "2017-08-19 02:29:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62564", "9", "2017-08-19 02:29:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62565", "8", "2017-08-19 02:29:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62566", "15", "2017-08-19 02:29:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62567", "10", "2017-08-19 03:09:24", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62568", "3", "2017-08-19 03:35:07", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62569", "14", "2017-08-19 03:50:29", "190.112.193.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62570", "10", "2017-08-19 04:21:16", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62571", "3", "2017-08-19 04:51:43", "180.76.15.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("62572", "3", "2017-08-19 05:03:50", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("62573", "10", "2017-08-19 05:21:16", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("62574", "3", "2017-08-19 06:00:57", "52.88.109.3", "61");
INSERT INTO `wp_gf_form_view` VALUES("62575", "6", "2017-08-19 06:00:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62576", "9", "2017-08-19 06:00:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62577", "8", "2017-08-19 06:00:59", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62578", "10", "2017-08-19 06:01:00", "52.88.109.3", "13");
INSERT INTO `wp_gf_form_view` VALUES("62579", "15", "2017-08-19 06:01:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62580", "10", "2017-08-19 07:21:16", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62581", "3", "2017-08-19 07:38:21", "180.76.15.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("62582", "10", "2017-08-19 08:12:01", "157.55.39.99", "3");
INSERT INTO `wp_gf_form_view` VALUES("62583", "3", "2017-08-19 08:37:49", "77.75.76.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("62584", "10", "2017-08-19 09:21:17", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62585", "3", "2017-08-19 09:37:15", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62586", "6", "2017-08-19 09:37:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62587", "9", "2017-08-19 09:37:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62588", "8", "2017-08-19 09:37:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62589", "15", "2017-08-19 09:37:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62590", "10", "2017-08-19 10:21:15", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62591", "14", "2017-08-19 10:23:25", "77.75.78.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("62592", "3", "2017-08-19 11:14:02", "178.210.90.90", "141");
INSERT INTO `wp_gf_form_view` VALUES("62593", "6", "2017-08-19 11:14:03", "178.210.90.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("62594", "9", "2017-08-19 11:14:04", "178.210.90.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("62595", "8", "2017-08-19 11:14:04", "178.210.90.90", "10");
INSERT INTO `wp_gf_form_view` VALUES("62596", "10", "2017-08-19 11:14:05", "178.210.90.90", "27");
INSERT INTO `wp_gf_form_view` VALUES("62597", "15", "2017-08-19 11:14:07", "178.210.90.90", "5");
INSERT INTO `wp_gf_form_view` VALUES("62598", "10", "2017-08-19 12:00:22", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("62599", "3", "2017-08-19 12:20:15", "180.76.15.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("62600", "3", "2017-08-19 13:01:37", "216.244.66.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("62601", "6", "2017-08-19 13:12:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62602", "9", "2017-08-19 13:12:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62603", "8", "2017-08-19 13:12:18", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62604", "10", "2017-08-19 13:12:18", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("62605", "15", "2017-08-19 13:12:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62606", "10", "2017-08-19 14:21:16", "184.66.248.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("62607", "3", "2017-08-19 14:24:26", "40.77.167.0", "17");
INSERT INTO `wp_gf_form_view` VALUES("62608", "9", "2017-08-19 14:25:00", "157.55.39.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("62609", "10", "2017-08-19 15:10:05", "68.180.230.188", "4");
INSERT INTO `wp_gf_form_view` VALUES("62610", "9", "2017-08-19 15:17:31", "217.182.132.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("62611", "3", "2017-08-19 15:26:35", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("62612", "3", "2017-08-19 16:13:35", "180.76.15.141", "31");
INSERT INTO `wp_gf_form_view` VALUES("62613", "10", "2017-08-19 16:21:16", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62614", "14", "2017-08-19 16:34:56", "96.50.26.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("62615", "6", "2017-08-19 16:43:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62616", "9", "2017-08-19 16:43:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62617", "8", "2017-08-19 16:43:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62618", "15", "2017-08-19 16:43:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62619", "12", "2017-08-19 17:20:17", "180.76.15.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("62620", "10", "2017-08-19 17:21:16", "184.66.248.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("62621", "3", "2017-08-19 17:48:04", "164.132.161.36", "31");
INSERT INTO `wp_gf_form_view` VALUES("62622", "6", "2017-08-19 17:57:48", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62623", "9", "2017-08-19 17:57:50", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62624", "8", "2017-08-19 17:57:51", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("62625", "15", "2017-08-19 17:57:53", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62626", "10", "2017-08-19 18:16:43", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("62627", "3", "2017-08-19 18:35:34", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("62628", "10", "2017-08-19 19:21:21", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62629", "3", "2017-08-19 19:32:49", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62630", "3", "2017-08-19 20:01:52", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("62631", "6", "2017-08-19 20:01:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62632", "9", "2017-08-19 20:01:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62633", "8", "2017-08-19 20:01:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62634", "10", "2017-08-19 20:01:54", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("62635", "15", "2017-08-19 20:01:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62636", "3", "2017-08-19 21:13:05", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("62637", "10", "2017-08-19 21:21:19", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62638", "3", "2017-08-19 22:04:32", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62639", "10", "2017-08-19 22:21:19", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62640", "14", "2017-08-19 22:27:48", "209.52.88.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("62641", "10", "2017-08-19 23:21:19", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62642", "3", "2017-08-19 23:25:47", "157.55.39.164", "30");
INSERT INTO `wp_gf_form_view` VALUES("62643", "6", "2017-08-19 23:29:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62644", "9", "2017-08-19 23:29:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62645", "8", "2017-08-19 23:29:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62646", "15", "2017-08-19 23:29:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62647", "6", "2017-08-20 00:05:41", "51.255.71.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("62648", "10", "2017-08-20 00:21:20", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62649", "3", "2017-08-20 00:25:15", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62650", "10", "2017-08-20 01:08:25", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("62651", "3", "2017-08-20 01:17:21", "180.76.15.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("62652", "14", "2017-08-20 02:04:51", "149.56.201.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("62653", "10", "2017-08-20 02:21:20", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62654", "3", "2017-08-20 02:48:27", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62655", "3", "2017-08-20 03:00:22", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62656", "6", "2017-08-20 03:00:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62657", "9", "2017-08-20 03:00:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62658", "8", "2017-08-20 03:00:24", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62659", "10", "2017-08-20 03:00:25", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("62660", "15", "2017-08-20 03:00:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62661", "14", "2017-08-20 03:01:16", "70.66.184.25", "3");
INSERT INTO `wp_gf_form_view` VALUES("62662", "3", "2017-08-20 04:03:58", "180.76.15.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("62663", "10", "2017-08-20 04:21:18", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62664", "10", "2017-08-20 05:21:19", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62665", "10", "2017-08-20 06:21:22", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62666", "3", "2017-08-20 06:39:28", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62667", "6", "2017-08-20 06:39:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62668", "9", "2017-08-20 06:39:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62669", "8", "2017-08-20 06:39:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62670", "15", "2017-08-20 06:39:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62671", "10", "2017-08-20 07:21:21", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62672", "15", "2017-08-20 07:37:40", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62673", "9", "2017-08-20 07:37:44", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62674", "10", "2017-08-20 08:21:22", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("62675", "15", "2017-08-20 09:02:12", "40.77.167.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("62676", "10", "2017-08-20 09:21:22", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62677", "3", "2017-08-20 09:40:37", "40.77.167.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("62678", "3", "2017-08-20 10:14:11", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("62679", "12", "2017-08-20 10:17:56", "51.255.65.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("62680", "10", "2017-08-20 10:21:20", "184.66.248.195", "13");
INSERT INTO `wp_gf_form_view` VALUES("62681", "6", "2017-08-20 10:25:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62682", "9", "2017-08-20 10:25:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62683", "8", "2017-08-20 10:25:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62684", "15", "2017-08-20 10:25:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62685", "10", "2017-08-20 11:08:44", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62686", "10", "2017-08-20 12:00:20", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("62687", "3", "2017-08-20 12:45:01", "207.115.104.72", "6");
INSERT INTO `wp_gf_form_view` VALUES("62688", "8", "2017-08-20 12:45:15", "207.115.104.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("62689", "8", "2017-08-20 13:00:13", "207.115.104.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("62690", "3", "2017-08-20 13:01:08", "207.115.104.72", "29");
INSERT INTO `wp_gf_form_view` VALUES("62691", "10", "2017-08-20 13:21:22", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62692", "6", "2017-08-20 13:51:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62693", "9", "2017-08-20 13:51:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62694", "15", "2017-08-20 13:51:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62695", "3", "2017-08-20 14:19:11", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62696", "10", "2017-08-20 14:21:21", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62697", "10", "2017-08-20 15:21:23", "184.66.248.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("62698", "3", "2017-08-20 15:31:35", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("62699", "15", "2017-08-20 15:31:36", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62700", "3", "2017-08-20 16:11:28", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("62701", "10", "2017-08-20 16:21:23", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62702", "10", "2017-08-20 17:21:23", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62703", "3", "2017-08-20 17:21:50", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62704", "6", "2017-08-20 17:21:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62705", "9", "2017-08-20 17:21:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62706", "8", "2017-08-20 17:21:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62707", "15", "2017-08-20 17:21:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62708", "3", "2017-08-20 18:11:37", "137.74.207.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("62709", "10", "2017-08-20 18:21:25", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62710", "3", "2017-08-20 19:18:19", "54.156.76.240", "3");
INSERT INTO `wp_gf_form_view` VALUES("62711", "8", "2017-08-20 19:20:18", "54.156.76.240", "2");
INSERT INTO `wp_gf_form_view` VALUES("62712", "10", "2017-08-20 19:21:31", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62713", "10", "2017-08-20 20:21:25", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62714", "3", "2017-08-20 20:30:46", "180.76.15.21", "29");
INSERT INTO `wp_gf_form_view` VALUES("62715", "6", "2017-08-20 20:48:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62716", "9", "2017-08-20 20:48:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62717", "8", "2017-08-20 20:48:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62718", "15", "2017-08-20 20:48:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62719", "10", "2017-08-20 21:21:25", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62720", "15", "2017-08-20 22:04:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62721", "3", "2017-08-20 22:10:46", "180.76.15.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("62722", "10", "2017-08-20 22:21:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62723", "14", "2017-08-20 23:02:45", "103.75.182.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("62724", "10", "2017-08-20 23:13:13", "72.14.199.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("62725", "3", "2017-08-20 23:17:29", "180.76.15.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("62726", "10", "2017-08-21 00:21:22", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62727", "3", "2017-08-21 00:24:50", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("62728", "6", "2017-08-21 00:24:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62729", "9", "2017-08-21 00:24:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62730", "8", "2017-08-21 00:24:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62731", "15", "2017-08-21 00:24:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62732", "10", "2017-08-21 01:21:23", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62733", "3", "2017-08-21 01:50:47", "51.255.65.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("62734", "10", "2017-08-21 02:21:25", "184.66.248.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62735", "14", "2017-08-21 02:29:10", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("62736", "3", "2017-08-21 02:40:06", "164.132.162.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("62737", "3", "2017-08-21 03:10:19", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("62738", "10", "2017-08-21 03:21:25", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62739", "6", "2017-08-21 03:54:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62740", "9", "2017-08-21 03:54:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62741", "8", "2017-08-21 03:54:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62742", "15", "2017-08-21 03:54:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62743", "10", "2017-08-21 04:21:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62744", "3", "2017-08-21 05:04:52", "51.255.65.31", "2");
INSERT INTO `wp_gf_form_view` VALUES("62745", "10", "2017-08-21 05:21:26", "184.66.248.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("62746", "3", "2017-08-21 06:08:26", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62747", "10", "2017-08-21 06:21:24", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62748", "3", "2017-08-21 07:16:12", "89.98.140.88", "33");
INSERT INTO `wp_gf_form_view` VALUES("62749", "10", "2017-08-21 07:21:26", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62750", "6", "2017-08-21 07:29:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62751", "9", "2017-08-21 07:29:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62752", "8", "2017-08-21 07:29:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62753", "15", "2017-08-21 07:29:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62754", "10", "2017-08-21 08:21:27", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62755", "10", "2017-08-21 09:21:27", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62756", "15", "2017-08-21 10:04:19", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62757", "10", "2017-08-21 10:21:25", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62758", "3", "2017-08-21 10:43:17", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62759", "3", "2017-08-21 11:03:15", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62760", "6", "2017-08-21 11:03:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62761", "9", "2017-08-21 11:03:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62762", "8", "2017-08-21 11:03:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62763", "10", "2017-08-21 11:03:17", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("62764", "15", "2017-08-21 11:03:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62765", "14", "2017-08-21 11:18:32", "180.76.15.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("62766", "12", "2017-08-21 11:51:46", "180.76.15.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("62767", "10", "2017-08-21 12:00:20", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("62768", "10", "2017-08-21 13:10:27", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("62769", "3", "2017-08-21 14:02:56", "180.76.15.27", "29");
INSERT INTO `wp_gf_form_view` VALUES("62770", "10", "2017-08-21 14:21:28", "184.66.248.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("62771", "6", "2017-08-21 14:41:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62772", "9", "2017-08-21 14:41:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62773", "8", "2017-08-21 14:41:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62774", "15", "2017-08-21 14:41:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62775", "3", "2017-08-21 15:02:24", "24.244.32.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("62776", "10", "2017-08-21 15:21:28", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62777", "3", "2017-08-21 16:16:12", "24.68.157.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("62778", "10", "2017-08-21 16:21:26", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62779", "10", "2017-08-21 17:21:29", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62780", "10", "2017-08-21 18:09:12", "192.40.235.106", "9");
INSERT INTO `wp_gf_form_view` VALUES("62781", "3", "2017-08-21 18:14:38", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62782", "6", "2017-08-21 18:14:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62783", "9", "2017-08-21 18:14:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62784", "8", "2017-08-21 18:14:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62785", "15", "2017-08-21 18:14:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62786", "14", "2017-08-21 18:54:16", "180.76.15.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("62787", "3", "2017-08-21 19:17:07", "40.77.167.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("62788", "10", "2017-08-21 19:21:34", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62789", "3", "2017-08-21 20:04:12", "24.244.32.146", "3");
INSERT INTO `wp_gf_form_view` VALUES("62790", "10", "2017-08-21 20:21:50", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62791", "14", "2017-08-21 20:21:54", "62.210.25.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("62792", "3", "2017-08-21 21:07:18", "207.194.40.8", "29");
INSERT INTO `wp_gf_form_view` VALUES("62793", "10", "2017-08-21 21:21:53", "184.66.248.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("62794", "6", "2017-08-21 21:52:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62795", "9", "2017-08-21 21:52:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62796", "8", "2017-08-21 21:52:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62797", "15", "2017-08-21 21:53:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62798", "10", "2017-08-21 22:21:50", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62799", "3", "2017-08-21 22:34:33", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("62800", "10", "2017-08-21 23:29:42", "51.255.65.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("62801", "3", "2017-08-22 00:39:59", "164.132.162.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("62802", "3", "2017-08-22 01:20:48", "77.88.5.25", "30");
INSERT INTO `wp_gf_form_view` VALUES("62803", "6", "2017-08-22 01:25:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62804", "9", "2017-08-22 01:25:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62805", "8", "2017-08-22 01:25:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62806", "10", "2017-08-22 01:25:37", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("62807", "15", "2017-08-22 01:25:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62808", "10", "2017-08-22 02:30:46", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62809", "10", "2017-08-22 03:27:21", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("62810", "3", "2017-08-22 04:08:23", "180.76.15.137", "29");
INSERT INTO `wp_gf_form_view` VALUES("62811", "8", "2017-08-22 04:10:30", "154.20.28.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("62812", "10", "2017-08-22 04:25:30", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("62813", "6", "2017-08-22 04:58:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62814", "9", "2017-08-22 04:58:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62815", "15", "2017-08-22 04:58:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62816", "10", "2017-08-22 05:57:51", "217.182.132.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("62817", "3", "2017-08-22 06:03:02", "34.228.147.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("62818", "3", "2017-08-22 07:01:14", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("62819", "3", "2017-08-22 08:17:26", "180.76.15.158", "29");
INSERT INTO `wp_gf_form_view` VALUES("62820", "6", "2017-08-22 08:28:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62821", "9", "2017-08-22 08:28:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62822", "8", "2017-08-22 08:28:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62823", "10", "2017-08-22 08:28:56", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("62824", "15", "2017-08-22 08:28:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62825", "3", "2017-08-22 09:57:23", "180.76.15.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("62826", "3", "2017-08-22 11:37:29", "180.76.15.144", "30");
INSERT INTO `wp_gf_form_view` VALUES("62827", "6", "2017-08-22 11:59:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62828", "9", "2017-08-22 11:59:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62829", "8", "2017-08-22 11:59:18", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62830", "10", "2017-08-22 11:59:19", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62831", "15", "2017-08-22 11:59:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62832", "10", "2017-08-22 12:00:21", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62833", "3", "2017-08-22 12:44:06", "180.76.15.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("62834", "8", "2017-08-22 12:51:23", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62835", "8", "2017-08-22 13:20:27", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("62836", "3", "2017-08-22 14:04:01", "51.255.71.122", "4");
INSERT INTO `wp_gf_form_view` VALUES("62837", "14", "2017-08-22 14:15:10", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62838", "10", "2017-08-22 14:26:28", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62839", "3", "2017-08-22 15:06:56", "66.249.79.137", "29");
INSERT INTO `wp_gf_form_view` VALUES("62840", "10", "2017-08-22 15:15:47", "180.76.15.28", "6");
INSERT INTO `wp_gf_form_view` VALUES("62841", "6", "2017-08-22 15:38:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62842", "9", "2017-08-22 15:38:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62843", "8", "2017-08-22 15:38:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62844", "15", "2017-08-22 15:38:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62845", "10", "2017-08-22 16:10:59", "40.77.167.123", "3");
INSERT INTO `wp_gf_form_view` VALUES("62846", "3", "2017-08-22 16:22:30", "180.76.15.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("62847", "10", "2017-08-22 17:13:36", "184.66.248.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("62848", "15", "2017-08-22 17:17:20", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("62849", "3", "2017-08-22 17:24:46", "37.17.172.122", "12");
INSERT INTO `wp_gf_form_view` VALUES("62850", "8", "2017-08-22 17:26:04", "37.17.172.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("62851", "10", "2017-08-22 18:13:52", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62852", "10", "2017-08-22 19:13:10", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("62853", "3", "2017-08-22 19:18:29", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62854", "6", "2017-08-22 19:18:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62855", "9", "2017-08-22 19:18:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62856", "8", "2017-08-22 19:18:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62857", "15", "2017-08-22 19:18:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62858", "10", "2017-08-22 20:14:02", "184.66.248.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62859", "14", "2017-08-22 20:14:10", "107.175.128.104", "1");
INSERT INTO `wp_gf_form_view` VALUES("62860", "3", "2017-08-22 20:36:07", "5.255.250.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("62861", "9", "2017-08-22 20:54:51", "157.55.39.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("62862", "3", "2017-08-22 21:04:27", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("62863", "10", "2017-08-22 21:13:58", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62864", "3", "2017-08-22 22:11:08", "180.76.15.153", "29");
INSERT INTO `wp_gf_form_view` VALUES("62865", "6", "2017-08-22 22:57:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62866", "9", "2017-08-22 22:57:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62867", "8", "2017-08-22 22:57:11", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62868", "10", "2017-08-22 22:57:12", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62869", "15", "2017-08-22 22:57:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62870", "3", "2017-08-23 00:06:28", "180.76.15.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("62871", "8", "2017-08-23 00:06:50", "51.255.65.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("62872", "11", "2017-08-23 00:49:16", "157.55.39.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("62873", "10", "2017-08-23 00:59:54", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("62874", "10", "2017-08-23 01:46:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62875", "3", "2017-08-23 01:57:21", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("62876", "3", "2017-08-23 02:02:32", "157.55.39.209", "30");
INSERT INTO `wp_gf_form_view` VALUES("62877", "10", "2017-08-23 02:07:30", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("62878", "6", "2017-08-23 02:29:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62879", "9", "2017-08-23 02:29:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62880", "8", "2017-08-23 02:29:24", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62881", "15", "2017-08-23 02:29:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62882", "10", "2017-08-23 03:09:30", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62883", "3", "2017-08-23 06:03:42", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62884", "6", "2017-08-23 06:03:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62885", "9", "2017-08-23 06:03:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62886", "8", "2017-08-23 06:03:44", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62887", "10", "2017-08-23 06:03:45", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62888", "15", "2017-08-23 06:03:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62889", "3", "2017-08-23 07:22:47", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62890", "3", "2017-08-23 08:00:06", "5.255.250.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("62891", "10", "2017-08-23 09:33:11", "72.14.199.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("62892", "3", "2017-08-23 09:39:35", "180.76.15.155", "29");
INSERT INTO `wp_gf_form_view` VALUES("62893", "6", "2017-08-23 09:49:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62894", "9", "2017-08-23 09:49:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62895", "8", "2017-08-23 09:49:44", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62896", "15", "2017-08-23 09:49:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62897", "14", "2017-08-23 10:08:11", "77.75.77.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("62898", "10", "2017-08-23 10:46:35", "51.255.65.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("62899", "15", "2017-08-23 10:51:34", "217.182.132.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("62900", "10", "2017-08-23 11:08:56", "137.74.207.120", "6");
INSERT INTO `wp_gf_form_view` VALUES("62901", "3", "2017-08-23 11:20:52", "216.244.66.247", "29");
INSERT INTO `wp_gf_form_view` VALUES("62902", "6", "2017-08-23 11:20:53", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62903", "9", "2017-08-23 11:20:54", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62904", "8", "2017-08-23 11:20:54", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("62905", "15", "2017-08-23 11:20:57", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62906", "10", "2017-08-23 12:00:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62907", "3", "2017-08-23 13:27:49", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62908", "6", "2017-08-23 13:27:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62909", "9", "2017-08-23 13:27:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62910", "8", "2017-08-23 13:27:51", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62911", "10", "2017-08-23 13:27:52", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62912", "15", "2017-08-23 13:27:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62913", "10", "2017-08-23 14:25:43", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62914", "3", "2017-08-23 15:04:39", "157.55.39.98", "6");
INSERT INTO `wp_gf_form_view` VALUES("62915", "8", "2017-08-23 16:17:33", "24.108.184.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("62916", "10", "2017-08-23 16:26:36", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("62917", "3", "2017-08-23 16:28:34", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62918", "3", "2017-08-23 17:02:33", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("62919", "6", "2017-08-23 17:02:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62920", "9", "2017-08-23 17:02:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62921", "8", "2017-08-23 17:02:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62922", "10", "2017-08-23 17:02:36", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62923", "15", "2017-08-23 17:02:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62924", "8", "2017-08-23 18:03:16", "108.180.145.171", "4");
INSERT INTO `wp_gf_form_view` VALUES("62925", "5", "2017-08-23 18:04:28", "217.182.132.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("62926", "3", "2017-08-23 18:37:05", "184.69.7.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("62927", "10", "2017-08-23 19:14:03", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62928", "3", "2017-08-23 20:20:46", "217.182.132.157", "31");
INSERT INTO `wp_gf_form_view` VALUES("62929", "6", "2017-08-23 20:34:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62930", "9", "2017-08-23 20:34:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62931", "8", "2017-08-23 20:34:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62932", "10", "2017-08-23 20:34:05", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62933", "15", "2017-08-23 20:34:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62934", "3", "2017-08-23 21:20:18", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62935", "3", "2017-08-23 22:05:37", "180.76.15.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("62936", "14", "2017-08-23 23:08:17", "208.181.174.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("62937", "3", "2017-08-23 23:08:48", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("62938", "8", "2017-08-23 23:33:14", "136.243.133.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("62939", "3", "2017-08-24 00:03:09", "216.244.66.247", "30");
INSERT INTO `wp_gf_form_view` VALUES("62940", "10", "2017-08-24 00:10:40", "72.14.199.69", "7");
INSERT INTO `wp_gf_form_view` VALUES("62941", "6", "2017-08-24 00:17:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62942", "9", "2017-08-24 00:17:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62943", "8", "2017-08-24 00:17:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62944", "15", "2017-08-24 00:17:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62945", "14", "2017-08-24 00:25:00", "96.50.117.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("62946", "11", "2017-08-24 00:46:31", "51.255.71.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("62947", "3", "2017-08-24 02:32:14", "144.76.153.198", "5");
INSERT INTO `wp_gf_form_view` VALUES("62948", "8", "2017-08-24 02:34:18", "144.76.153.198", "3");
INSERT INTO `wp_gf_form_view` VALUES("62949", "3", "2017-08-24 03:07:46", "180.76.15.140", "57");
INSERT INTO `wp_gf_form_view` VALUES("62950", "6", "2017-08-24 03:54:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62951", "9", "2017-08-24 03:54:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62952", "8", "2017-08-24 03:54:57", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("62953", "10", "2017-08-24 03:54:58", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("62954", "15", "2017-08-24 03:55:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62955", "10", "2017-08-24 04:10:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("62956", "3", "2017-08-24 04:35:14", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62957", "10", "2017-08-24 06:12:00", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("62958", "3", "2017-08-24 06:13:05", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("62959", "3", "2017-08-24 07:35:13", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62960", "6", "2017-08-24 07:35:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62961", "9", "2017-08-24 07:35:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62962", "8", "2017-08-24 07:35:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62963", "10", "2017-08-24 07:35:16", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62964", "15", "2017-08-24 07:35:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62965", "3", "2017-08-24 08:49:26", "164.132.161.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("62966", "3", "2017-08-24 09:33:06", "180.76.15.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("62967", "3", "2017-08-24 10:16:37", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("62968", "3", "2017-08-24 11:09:43", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("62969", "6", "2017-08-24 11:09:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62970", "9", "2017-08-24 11:09:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62971", "8", "2017-08-24 11:09:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62972", "10", "2017-08-24 11:09:45", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("62973", "15", "2017-08-24 11:09:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62974", "10", "2017-08-24 12:00:17", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("62975", "3", "2017-08-24 12:13:13", "198.144.157.39", "12");
INSERT INTO `wp_gf_form_view` VALUES("62976", "3", "2017-08-24 13:04:58", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("62977", "10", "2017-08-24 14:26:27", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("62978", "3", "2017-08-24 14:48:22", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("62979", "6", "2017-08-24 14:48:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62980", "9", "2017-08-24 14:48:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62981", "8", "2017-08-24 14:48:24", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62982", "15", "2017-08-24 14:48:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("62983", "10", "2017-08-24 15:14:47", "164.132.161.53", "9");
INSERT INTO `wp_gf_form_view` VALUES("62984", "3", "2017-08-24 15:33:28", "216.244.66.247", "29");
INSERT INTO `wp_gf_form_view` VALUES("62985", "6", "2017-08-24 15:33:29", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62986", "9", "2017-08-24 15:33:30", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62987", "8", "2017-08-24 15:33:30", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("62988", "15", "2017-08-24 15:33:33", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("62989", "3", "2017-08-24 17:22:28", "164.132.161.29", "3");
INSERT INTO `wp_gf_form_view` VALUES("62990", "10", "2017-08-24 18:27:18", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("62991", "3", "2017-08-24 18:29:16", "52.88.109.3", "50");
INSERT INTO `wp_gf_form_view` VALUES("62992", "6", "2017-08-24 18:29:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("62993", "9", "2017-08-24 18:29:25", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("62994", "8", "2017-08-24 18:29:27", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("62995", "15", "2017-08-24 18:29:37", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("62996", "5", "2017-08-24 18:37:09", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("62997", "3", "2017-08-24 19:04:56", "164.132.161.30", "10");
INSERT INTO `wp_gf_form_view` VALUES("62998", "14", "2017-08-24 19:19:00", "24.108.19.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("62999", "6", "2017-08-24 19:47:37", "159.203.125.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("63000", "10", "2017-08-24 19:49:19", "159.203.125.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("63001", "9", "2017-08-24 19:53:18", "159.203.125.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("63002", "15", "2017-08-24 19:55:47", "159.203.125.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("63003", "10", "2017-08-24 20:00:05", "159.203.125.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("63004", "3", "2017-08-24 20:00:13", "149.202.7.207", "28");
INSERT INTO `wp_gf_form_view` VALUES("63005", "8", "2017-08-24 20:01:16", "149.202.7.207", "3");
INSERT INTO `wp_gf_form_view` VALUES("63006", "10", "2017-08-24 21:12:57", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("63007", "3", "2017-08-24 21:13:56", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63008", "10", "2017-08-24 22:09:19", "157.55.39.98", "6");
INSERT INTO `wp_gf_form_view` VALUES("63009", "3", "2017-08-24 22:09:39", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("63010", "6", "2017-08-24 22:09:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63011", "9", "2017-08-24 22:09:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63012", "8", "2017-08-24 22:09:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63013", "15", "2017-08-24 22:09:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63014", "10", "2017-08-24 23:10:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("63015", "14", "2017-08-24 23:39:43", "180.76.15.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("63016", "3", "2017-08-25 00:12:57", "180.76.15.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("63017", "10", "2017-08-25 00:49:50", "151.80.27.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("63018", "3", "2017-08-25 01:29:37", "216.244.66.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("63019", "10", "2017-08-25 01:31:22", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("63020", "6", "2017-08-25 01:56:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63021", "9", "2017-08-25 01:56:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63022", "8", "2017-08-25 01:56:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63023", "15", "2017-08-25 01:56:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63024", "3", "2017-08-25 02:04:33", "180.76.15.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("63025", "3", "2017-08-25 03:44:30", "180.76.15.158", "2");
INSERT INTO `wp_gf_form_view` VALUES("63026", "10", "2017-08-25 04:18:42", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63027", "10", "2017-08-25 05:18:36", "66.249.89.53", "6");
INSERT INTO `wp_gf_form_view` VALUES("63028", "3", "2017-08-25 05:45:58", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63029", "6", "2017-08-25 05:45:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63030", "9", "2017-08-25 05:45:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63031", "8", "2017-08-25 05:46:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63032", "15", "2017-08-25 05:46:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63033", "3", "2017-08-25 06:13:22", "180.76.15.154", "12");
INSERT INTO `wp_gf_form_view` VALUES("63034", "10", "2017-08-25 06:37:22", "46.229.168.77", "8");
INSERT INTO `wp_gf_form_view` VALUES("63035", "6", "2017-08-25 06:38:57", "46.229.168.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("63036", "14", "2017-08-25 06:40:44", "46.229.168.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("63037", "11", "2017-08-25 06:42:38", "46.229.168.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("63038", "15", "2017-08-25 07:56:51", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63039", "9", "2017-08-25 07:57:20", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63040", "10", "2017-08-25 09:13:42", "217.182.132.179", "7");
INSERT INTO `wp_gf_form_view` VALUES("63041", "3", "2017-08-25 09:27:02", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63042", "6", "2017-08-25 09:27:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63043", "9", "2017-08-25 09:27:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63044", "8", "2017-08-25 09:27:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63045", "15", "2017-08-25 09:27:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63046", "3", "2017-08-25 10:06:42", "180.76.15.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("63047", "3", "2017-08-25 11:18:34", "77.75.76.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("63048", "14", "2017-08-25 11:27:38", "62.210.25.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("63049", "10", "2017-08-25 12:00:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63050", "3", "2017-08-25 12:00:28", "66.249.70.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("63051", "5", "2017-08-25 12:32:34", "66.249.70.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("63052", "3", "2017-08-25 13:04:06", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63053", "6", "2017-08-25 13:04:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63054", "9", "2017-08-25 13:04:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63055", "8", "2017-08-25 13:04:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63056", "10", "2017-08-25 13:04:08", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63057", "15", "2017-08-25 13:04:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63058", "10", "2017-08-25 14:26:13", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("63059", "8", "2017-08-25 14:41:54", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("63060", "3", "2017-08-25 15:02:37", "180.76.15.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("63061", "8", "2017-08-25 15:18:02", "155.94.168.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63062", "3", "2017-08-25 16:00:05", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("63063", "10", "2017-08-25 16:00:06", "216.244.66.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("63064", "15", "2017-08-25 16:00:07", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("63065", "6", "2017-08-25 16:47:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63066", "9", "2017-08-25 16:47:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63067", "8", "2017-08-25 16:47:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63068", "3", "2017-08-25 17:20:47", "207.46.13.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("63069", "3", "2017-08-25 18:06:35", "24.68.44.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("63070", "10", "2017-08-25 18:25:49", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("63071", "14", "2017-08-25 18:42:00", "184.69.178.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("63072", "8", "2017-08-25 18:45:31", "68.232.76.18", "4");
INSERT INTO `wp_gf_form_view` VALUES("63073", "3", "2017-08-25 19:09:07", "68.180.230.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("63074", "3", "2017-08-25 20:19:33", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63075", "6", "2017-08-25 20:19:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63076", "9", "2017-08-25 20:19:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63077", "8", "2017-08-25 20:19:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63078", "10", "2017-08-25 20:19:36", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("63079", "15", "2017-08-25 20:19:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63080", "6", "2017-08-25 21:21:49", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63081", "3", "2017-08-25 21:26:58", "24.108.19.129", "2");
INSERT INTO `wp_gf_form_view` VALUES("63082", "10", "2017-08-25 21:46:45", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63083", "3", "2017-08-25 22:15:07", "180.76.15.143", "4");
INSERT INTO `wp_gf_form_view` VALUES("63084", "14", "2017-08-25 22:22:37", "142.36.123.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("63085", "8", "2017-08-25 23:43:35", "24.68.114.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("63086", "10", "2017-08-25 23:46:37", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("63087", "3", "2017-08-25 23:52:27", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63088", "6", "2017-08-25 23:52:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63089", "9", "2017-08-25 23:52:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63090", "15", "2017-08-25 23:52:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63091", "3", "2017-08-26 00:02:40", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("63092", "10", "2017-08-26 00:28:32", "180.76.15.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("63093", "3", "2017-08-26 01:02:10", "184.66.21.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("63094", "15", "2017-08-26 01:43:47", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63095", "3", "2017-08-26 03:31:47", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("63096", "6", "2017-08-26 03:31:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63097", "9", "2017-08-26 03:31:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63098", "8", "2017-08-26 03:31:52", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("63099", "10", "2017-08-26 03:31:53", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63100", "15", "2017-08-26 03:31:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63101", "14", "2017-08-26 03:48:10", "198.27.80.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("63102", "10", "2017-08-26 04:17:14", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("63103", "3", "2017-08-26 05:17:59", "68.180.230.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("63104", "3", "2017-08-26 06:14:49", "154.5.208.218", "2");
INSERT INTO `wp_gf_form_view` VALUES("63105", "8", "2017-08-26 07:02:49", "167.114.209.38", "3");
INSERT INTO `wp_gf_form_view` VALUES("63106", "3", "2017-08-26 07:02:57", "167.114.209.38", "33");
INSERT INTO `wp_gf_form_view` VALUES("63107", "6", "2017-08-26 07:11:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63108", "9", "2017-08-26 07:11:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63109", "10", "2017-08-26 07:11:02", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63110", "15", "2017-08-26 07:11:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63111", "10", "2017-08-26 08:16:39", "207.46.13.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("63112", "15", "2017-08-26 08:25:09", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("63113", "3", "2017-08-26 08:25:17", "180.76.15.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("63114", "10", "2017-08-26 09:38:13", "72.14.199.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("63115", "3", "2017-08-26 09:47:36", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63116", "15", "2017-08-26 10:46:40", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63117", "3", "2017-08-26 11:06:17", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63118", "6", "2017-08-26 11:06:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63119", "9", "2017-08-26 11:06:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63120", "8", "2017-08-26 11:06:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63121", "10", "2017-08-26 11:06:19", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63122", "15", "2017-08-26 11:06:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63123", "10", "2017-08-26 12:00:23", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63124", "10", "2017-08-26 13:28:12", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63125", "3", "2017-08-26 13:40:53", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("63126", "10", "2017-08-26 14:26:37", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("63127", "3", "2017-08-26 14:46:28", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63128", "6", "2017-08-26 14:46:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63129", "9", "2017-08-26 14:46:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63130", "8", "2017-08-26 14:46:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63131", "15", "2017-08-26 14:46:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63132", "3", "2017-08-26 15:11:04", "180.76.15.28", "7");
INSERT INTO `wp_gf_form_view` VALUES("63133", "8", "2017-08-26 15:21:22", "70.67.60.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("63134", "3", "2017-08-26 16:17:15", "216.244.66.195", "24");
INSERT INTO `wp_gf_form_view` VALUES("63135", "12", "2017-08-26 16:31:17", "207.46.13.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("63136", "10", "2017-08-26 16:43:54", "157.55.39.105", "4");
INSERT INTO `wp_gf_form_view` VALUES("63137", "8", "2017-08-26 16:44:00", "207.46.13.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("63138", "9", "2017-08-26 16:45:53", "207.46.13.4", "2");
INSERT INTO `wp_gf_form_view` VALUES("63139", "6", "2017-08-26 16:47:20", "157.55.39.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("63140", "15", "2017-08-26 16:48:41", "157.55.39.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("63141", "14", "2017-08-26 17:23:53", "70.67.170.1", "1");
INSERT INTO `wp_gf_form_view` VALUES("63142", "3", "2017-08-26 17:24:24", "180.76.15.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("63143", "3", "2017-08-26 18:18:15", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("63144", "14", "2017-08-26 18:31:07", "180.76.15.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("63145", "6", "2017-08-26 18:31:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63146", "9", "2017-08-26 18:31:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63147", "8", "2017-08-26 18:31:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63148", "10", "2017-08-26 18:31:16", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63149", "15", "2017-08-26 18:31:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63150", "10", "2017-08-26 19:05:36", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("63151", "3", "2017-08-26 20:24:23", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("63152", "10", "2017-08-26 20:38:50", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63153", "3", "2017-08-26 21:28:13", "62.210.151.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("63154", "9", "2017-08-26 21:32:32", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("63155", "14", "2017-08-26 21:50:06", "109.73.79.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("63156", "10", "2017-08-26 22:01:13", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("63157", "3", "2017-08-26 22:02:50", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63158", "6", "2017-08-26 22:02:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63159", "9", "2017-08-26 22:02:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63160", "8", "2017-08-26 22:02:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63161", "15", "2017-08-26 22:02:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63162", "10", "2017-08-26 23:14:06", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("63163", "3", "2017-08-26 23:37:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63164", "10", "2017-08-27 00:04:49", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("63165", "3", "2017-08-27 00:05:06", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("63166", "8", "2017-08-27 00:31:19", "84.38.135.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("63167", "6", "2017-08-27 01:16:00", "180.76.15.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("63168", "10", "2017-08-27 01:23:18", "157.55.39.105", "7");
INSERT INTO `wp_gf_form_view` VALUES("63169", "3", "2017-08-27 01:41:30", "164.132.161.54", "29");
INSERT INTO `wp_gf_form_view` VALUES("63170", "9", "2017-08-27 01:44:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63171", "8", "2017-08-27 01:44:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63172", "15", "2017-08-27 01:44:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63173", "10", "2017-08-27 02:14:26", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63174", "3", "2017-08-27 03:00:46", "70.67.60.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("63175", "10", "2017-08-27 04:17:15", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63176", "3", "2017-08-27 05:12:32", "216.244.66.247", "30");
INSERT INTO `wp_gf_form_view` VALUES("63177", "6", "2017-08-27 05:23:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63178", "9", "2017-08-27 05:23:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63179", "8", "2017-08-27 05:23:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63180", "10", "2017-08-27 05:23:02", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63181", "15", "2017-08-27 05:23:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63182", "14", "2017-08-27 05:31:31", "157.55.39.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("63183", "10", "2017-08-27 06:08:36", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("63184", "3", "2017-08-27 07:15:16", "180.76.15.20", "2");
INSERT INTO `wp_gf_form_view` VALUES("63185", "10", "2017-08-27 07:47:50", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63186", "3", "2017-08-27 08:02:05", "216.244.66.247", "58");
INSERT INTO `wp_gf_form_view` VALUES("63187", "6", "2017-08-27 08:55:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63188", "9", "2017-08-27 08:55:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63189", "8", "2017-08-27 08:55:01", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("63190", "10", "2017-08-27 08:55:02", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("63191", "15", "2017-08-27 08:55:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63192", "3", "2017-08-27 09:29:48", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63193", "14", "2017-08-27 10:08:42", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("63194", "5", "2017-08-27 10:31:41", "79.143.185.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("63195", "3", "2017-08-27 10:59:30", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("63196", "3", "2017-08-27 11:07:23", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63197", "9", "2017-08-27 11:33:50", "51.255.65.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("63198", "14", "2017-08-27 11:45:20", "23.229.105.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("63199", "10", "2017-08-27 12:00:22", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("63200", "6", "2017-08-27 12:28:07", "180.76.15.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("63201", "3", "2017-08-27 12:34:13", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("63202", "9", "2017-08-27 12:34:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63203", "8", "2017-08-27 12:34:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63204", "15", "2017-08-27 12:34:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63205", "3", "2017-08-27 13:01:21", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("63206", "10", "2017-08-27 14:25:45", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63207", "3", "2017-08-27 14:42:59", "164.132.161.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("63208", "8", "2017-08-27 15:02:19", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63209", "3", "2017-08-27 15:03:49", "216.244.66.195", "24");
INSERT INTO `wp_gf_form_view` VALUES("63210", "10", "2017-08-27 15:25:44", "72.14.199.71", "17");
INSERT INTO `wp_gf_form_view` VALUES("63211", "11", "2017-08-27 15:39:01", "207.46.13.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("63212", "3", "2017-08-27 16:09:10", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63213", "6", "2017-08-27 16:09:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63214", "9", "2017-08-27 16:09:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63215", "8", "2017-08-27 16:09:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63216", "10", "2017-08-27 16:09:12", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63217", "15", "2017-08-27 16:09:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63218", "14", "2017-08-27 16:30:23", "24.69.5.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("63219", "6", "2017-08-27 17:52:12", "51.255.65.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("63220", "3", "2017-08-27 18:05:51", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("63221", "8", "2017-08-27 18:06:35", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63222", "3", "2017-08-27 19:12:02", "180.76.15.156", "59");
INSERT INTO `wp_gf_form_view` VALUES("63223", "6", "2017-08-27 19:45:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63224", "9", "2017-08-27 19:45:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63225", "8", "2017-08-27 19:45:03", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("63226", "10", "2017-08-27 19:45:03", "52.88.109.3", "11");
INSERT INTO `wp_gf_form_view` VALUES("63227", "15", "2017-08-27 19:45:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63228", "3", "2017-08-27 20:09:41", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("63229", "8", "2017-08-27 20:10:23", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63230", "10", "2017-08-27 20:52:01", "180.76.15.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("63231", "10", "2017-08-27 21:02:37", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63232", "10", "2017-08-27 22:32:02", "180.76.15.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("63233", "14", "2017-08-27 23:10:01", "69.4.85.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("63234", "3", "2017-08-27 23:10:05", "69.4.85.171", "30");
INSERT INTO `wp_gf_form_view` VALUES("63235", "6", "2017-08-27 23:22:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63236", "9", "2017-08-27 23:22:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63237", "8", "2017-08-27 23:23:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63238", "10", "2017-08-27 23:23:01", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("63239", "15", "2017-08-27 23:23:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63240", "3", "2017-08-28 00:44:42", "157.55.39.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("63241", "3", "2017-08-28 01:19:09", "37.115.215.125", "9");
INSERT INTO `wp_gf_form_view` VALUES("63242", "8", "2017-08-28 01:23:08", "5.62.43.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("63243", "3", "2017-08-28 02:16:12", "83.103.171.221", "4");
INSERT INTO `wp_gf_form_view` VALUES("63244", "8", "2017-08-28 02:16:20", "83.103.171.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("63245", "3", "2017-08-28 03:14:07", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63246", "6", "2017-08-28 03:14:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63247", "9", "2017-08-28 03:14:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63248", "8", "2017-08-28 03:14:09", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63249", "10", "2017-08-28 03:14:09", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63250", "15", "2017-08-28 03:14:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63251", "10", "2017-08-28 04:28:20", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("63252", "10", "2017-08-28 05:19:13", "199.16.157.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("63253", "3", "2017-08-28 05:48:39", "5.188.211.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("63254", "3", "2017-08-28 06:09:08", "217.182.132.192", "34");
INSERT INTO `wp_gf_form_view` VALUES("63255", "8", "2017-08-28 06:48:26", "37.44.176.249", "3");
INSERT INTO `wp_gf_form_view` VALUES("63256", "6", "2017-08-28 06:52:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63257", "9", "2017-08-28 06:52:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63258", "10", "2017-08-28 06:52:41", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63259", "15", "2017-08-28 06:52:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63260", "14", "2017-08-28 07:00:38", "64.180.190.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("63261", "3", "2017-08-28 07:26:57", "188.165.200.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("63262", "10", "2017-08-28 09:08:50", "217.182.132.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("63263", "3", "2017-08-28 10:34:06", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63264", "6", "2017-08-28 10:34:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63265", "9", "2017-08-28 10:34:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63266", "8", "2017-08-28 10:34:09", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63267", "10", "2017-08-28 10:34:10", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63268", "15", "2017-08-28 10:34:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63269", "10", "2017-08-28 11:10:12", "137.74.201.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("63270", "10", "2017-08-28 12:00:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63271", "12", "2017-08-28 12:57:46", "180.76.15.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("63272", "3", "2017-08-28 13:08:45", "137.74.207.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("63273", "14", "2017-08-28 13:18:48", "149.56.43.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("63274", "3", "2017-08-28 14:08:57", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63275", "6", "2017-08-28 14:08:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63276", "9", "2017-08-28 14:08:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63277", "8", "2017-08-28 14:08:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63278", "10", "2017-08-28 14:09:00", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("63279", "15", "2017-08-28 14:09:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63280", "14", "2017-08-28 14:10:00", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("63281", "3", "2017-08-28 16:28:19", "217.182.132.153", "5");
INSERT INTO `wp_gf_form_view` VALUES("63282", "8", "2017-08-28 16:40:12", "46.183.222.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("63283", "10", "2017-08-28 16:42:06", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("63284", "3", "2017-08-28 17:48:04", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63285", "6", "2017-08-28 17:48:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63286", "9", "2017-08-28 17:48:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63287", "8", "2017-08-28 17:48:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63288", "10", "2017-08-28 17:48:07", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63289", "15", "2017-08-28 17:48:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63290", "10", "2017-08-28 18:30:45", "207.46.13.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("63291", "10", "2017-08-28 19:20:43", "217.182.132.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("63292", "3", "2017-08-28 20:44:27", "180.76.15.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("63293", "14", "2017-08-28 20:54:30", "96.50.25.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("63294", "12", "2017-08-28 21:17:46", "180.76.15.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("63295", "3", "2017-08-28 21:28:49", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63296", "6", "2017-08-28 21:28:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63297", "9", "2017-08-28 21:28:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63298", "8", "2017-08-28 21:28:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63299", "10", "2017-08-28 21:28:52", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63300", "15", "2017-08-28 21:28:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63301", "10", "2017-08-28 22:08:34", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63302", "3", "2017-08-29 00:22:23", "66.249.79.133", "30");
INSERT INTO `wp_gf_form_view` VALUES("63303", "10", "2017-08-29 00:33:51", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("63304", "6", "2017-08-29 00:56:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63305", "9", "2017-08-29 00:56:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63306", "8", "2017-08-29 00:56:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63307", "15", "2017-08-29 00:56:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63308", "14", "2017-08-29 01:03:25", "172.241.56.103", "3");
INSERT INTO `wp_gf_form_view` VALUES("63309", "12", "2017-08-29 03:18:14", "217.182.132.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("63310", "3", "2017-08-29 03:24:17", "217.182.132.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("63311", "8", "2017-08-29 03:27:14", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("63312", "3", "2017-08-29 04:00:37", "180.76.15.11", "29");
INSERT INTO `wp_gf_form_view` VALUES("63313", "6", "2017-08-29 04:30:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63314", "9", "2017-08-29 04:30:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63315", "8", "2017-08-29 04:30:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63316", "10", "2017-08-29 04:30:34", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63317", "15", "2017-08-29 04:30:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63318", "3", "2017-08-29 05:39:08", "84.38.135.159", "4");
INSERT INTO `wp_gf_form_view` VALUES("63319", "8", "2017-08-29 05:39:16", "84.38.135.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("63320", "10", "2017-08-29 06:09:18", "72.14.199.73", "4");
INSERT INTO `wp_gf_form_view` VALUES("63321", "3", "2017-08-29 06:53:39", "66.249.79.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("63322", "15", "2017-08-29 06:53:40", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63323", "3", "2017-08-29 08:05:58", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63324", "6", "2017-08-29 08:05:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63325", "9", "2017-08-29 08:06:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63326", "8", "2017-08-29 08:06:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63327", "10", "2017-08-29 08:06:01", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("63328", "15", "2017-08-29 08:06:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63329", "3", "2017-08-29 09:04:21", "217.182.132.76", "29");
INSERT INTO `wp_gf_form_view` VALUES("63330", "6", "2017-08-29 09:46:44", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("63331", "9", "2017-08-29 09:46:45", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("63332", "8", "2017-08-29 09:46:46", "5.188.211.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("63333", "10", "2017-08-29 09:46:46", "5.188.211.26", "5");
INSERT INTO `wp_gf_form_view` VALUES("63334", "15", "2017-08-29 09:46:49", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("63335", "10", "2017-08-29 10:38:01", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63336", "14", "2017-08-29 10:44:54", "193.180.245.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("63337", "3", "2017-08-29 10:45:16", "193.180.245.42", "3");
INSERT INTO `wp_gf_form_view` VALUES("63338", "3", "2017-08-29 11:23:29", "157.55.39.192", "46");
INSERT INTO `wp_gf_form_view` VALUES("63339", "15", "2017-08-29 11:24:32", "157.55.39.254", "3");
INSERT INTO `wp_gf_form_view` VALUES("63340", "10", "2017-08-29 11:25:58", "157.55.39.192", "9");
INSERT INTO `wp_gf_form_view` VALUES("63341", "8", "2017-08-29 11:26:54", "157.55.39.192", "3");
INSERT INTO `wp_gf_form_view` VALUES("63342", "9", "2017-08-29 11:28:16", "157.55.39.192", "2");
INSERT INTO `wp_gf_form_view` VALUES("63343", "6", "2017-08-29 11:29:51", "157.55.39.254", "2");
INSERT INTO `wp_gf_form_view` VALUES("63344", "10", "2017-08-29 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63345", "10", "2017-08-29 14:25:37", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63346", "3", "2017-08-29 15:11:39", "164.132.161.16", "29");
INSERT INTO `wp_gf_form_view` VALUES("63347", "10", "2017-08-29 15:11:46", "164.132.161.18", "6");
INSERT INTO `wp_gf_form_view` VALUES("63348", "6", "2017-08-29 15:36:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63349", "9", "2017-08-29 15:36:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63350", "8", "2017-08-29 15:36:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63351", "15", "2017-08-29 15:36:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63352", "10", "2017-08-29 16:10:23", "180.76.15.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("63353", "14", "2017-08-29 17:14:51", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("63354", "10", "2017-08-29 17:36:52", "51.255.71.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("63355", "3", "2017-08-29 17:48:09", "157.55.39.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("63356", "15", "2017-08-29 18:11:34", "157.55.39.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("63357", "3", "2017-08-29 18:12:29", "157.55.39.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("63358", "14", "2017-08-29 18:31:32", "184.69.173.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("63359", "10", "2017-08-29 18:32:47", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("63360", "3", "2017-08-29 19:17:55", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63361", "6", "2017-08-29 19:17:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63362", "9", "2017-08-29 19:18:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63363", "8", "2017-08-29 19:18:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63364", "10", "2017-08-29 19:18:02", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63365", "15", "2017-08-29 19:18:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63366", "3", "2017-08-29 20:52:27", "51.255.71.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("63367", "3", "2017-08-29 21:06:40", "51.255.65.84", "7");
INSERT INTO `wp_gf_form_view` VALUES("63368", "10", "2017-08-29 21:06:40", "51.255.65.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("63369", "15", "2017-08-29 21:06:41", "51.255.65.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("63370", "14", "2017-08-29 21:24:50", "45.35.255.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("63371", "3", "2017-08-29 23:01:38", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63372", "6", "2017-08-29 23:01:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63373", "9", "2017-08-29 23:01:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63374", "8", "2017-08-29 23:01:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63375", "10", "2017-08-29 23:01:41", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63376", "15", "2017-08-29 23:01:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63377", "3", "2017-08-30 00:30:20", "180.76.15.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("63378", "9", "2017-08-30 01:03:40", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("63379", "6", "2017-08-30 01:37:00", "180.76.15.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("63380", "10", "2017-08-30 02:01:30", "51.255.65.95", "6");
INSERT INTO `wp_gf_form_view` VALUES("63381", "3", "2017-08-30 02:20:06", "164.132.161.93", "29");
INSERT INTO `wp_gf_form_view` VALUES("63382", "6", "2017-08-30 02:44:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63383", "9", "2017-08-30 02:44:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63384", "8", "2017-08-30 02:44:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63385", "15", "2017-08-30 02:44:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63386", "3", "2017-08-30 03:49:33", "46.229.168.69", "11");
INSERT INTO `wp_gf_form_view` VALUES("63387", "6", "2017-08-30 03:50:45", "46.229.168.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("63388", "10", "2017-08-30 03:51:21", "46.229.168.71", "8");
INSERT INTO `wp_gf_form_view` VALUES("63389", "15", "2017-08-30 03:56:46", "46.229.168.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("63390", "10", "2017-08-30 06:20:18", "194.187.170.113", "11");
INSERT INTO `wp_gf_form_view` VALUES("63391", "3", "2017-08-30 06:36:35", "52.88.109.3", "56");
INSERT INTO `wp_gf_form_view` VALUES("63392", "6", "2017-08-30 06:36:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63393", "9", "2017-08-30 06:36:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63394", "8", "2017-08-30 06:36:37", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("63395", "15", "2017-08-30 06:36:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63396", "10", "2017-08-30 07:07:17", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("63397", "3", "2017-08-30 07:18:31", "96.54.56.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("63398", "10", "2017-08-30 08:33:02", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("63399", "14", "2017-08-30 09:33:56", "52.65.157.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("63400", "3", "2017-08-30 09:34:49", "52.65.157.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("63401", "10", "2017-08-30 09:47:49", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("63402", "3", "2017-08-30 10:14:38", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63403", "6", "2017-08-30 10:14:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63404", "9", "2017-08-30 10:14:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63405", "8", "2017-08-30 10:14:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63406", "10", "2017-08-30 10:14:42", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("63407", "15", "2017-08-30 10:14:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63408", "10", "2017-08-30 11:38:42", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("63409", "10", "2017-08-30 12:00:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63410", "3", "2017-08-30 12:13:41", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63411", "8", "2017-08-30 12:59:30", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("63412", "10", "2017-08-30 13:35:28", "164.132.161.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("63413", "3", "2017-08-30 13:50:17", "167.114.219.41", "29");
INSERT INTO `wp_gf_form_view` VALUES("63414", "6", "2017-08-30 13:53:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63415", "9", "2017-08-30 13:53:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63416", "8", "2017-08-30 13:53:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63417", "15", "2017-08-30 13:53:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63418", "10", "2017-08-30 14:25:36", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("63419", "10", "2017-08-30 15:08:36", "162.210.196.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("63420", "11", "2017-08-30 15:33:46", "40.77.167.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("63421", "10", "2017-08-30 16:26:28", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63422", "11", "2017-08-30 16:30:00", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("63423", "3", "2017-08-30 17:36:24", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63424", "6", "2017-08-30 17:36:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63425", "9", "2017-08-30 17:36:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63426", "8", "2017-08-30 17:36:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63427", "10", "2017-08-30 17:36:27", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63428", "15", "2017-08-30 17:36:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63429", "10", "2017-08-30 18:27:15", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63430", "3", "2017-08-30 18:31:17", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("63431", "10", "2017-08-30 20:28:02", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63432", "8", "2017-08-30 20:35:05", "157.55.39.219", "1");
INSERT INTO `wp_gf_form_view` VALUES("63433", "3", "2017-08-30 21:17:05", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63434", "6", "2017-08-30 21:17:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63435", "9", "2017-08-30 21:17:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63436", "8", "2017-08-30 21:17:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63437", "10", "2017-08-30 21:17:08", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63438", "15", "2017-08-30 21:17:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63439", "3", "2017-08-30 22:08:15", "51.255.65.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("63440", "10", "2017-08-30 22:10:03", "72.14.199.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("63441", "10", "2017-08-30 23:13:42", "164.132.162.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("63442", "8", "2017-08-30 23:56:58", "108.180.145.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("63443", "14", "2017-08-30 23:59:31", "89.175.148.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("63444", "3", "2017-08-30 23:59:39", "89.175.148.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("63445", "11", "2017-08-31 00:17:41", "180.76.15.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63446", "10", "2017-08-31 00:29:46", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("63447", "3", "2017-08-31 00:55:14", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63448", "6", "2017-08-31 00:55:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63449", "9", "2017-08-31 00:55:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63450", "8", "2017-08-31 00:55:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63451", "15", "2017-08-31 00:55:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63452", "3", "2017-08-31 01:36:07", "96.50.28.252", "2");
INSERT INTO `wp_gf_form_view` VALUES("63453", "8", "2017-08-31 01:38:44", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("63454", "10", "2017-08-31 02:19:45", "217.182.132.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("63455", "10", "2017-08-31 03:38:29", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63456", "14", "2017-08-31 04:02:10", "23.244.128.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("63457", "3", "2017-08-31 04:02:15", "23.244.128.69", "32");
INSERT INTO `wp_gf_form_view` VALUES("63458", "6", "2017-08-31 04:32:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63459", "9", "2017-08-31 04:32:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63460", "8", "2017-08-31 04:32:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63461", "10", "2017-08-31 04:32:31", "52.88.109.3", "9");
INSERT INTO `wp_gf_form_view` VALUES("63462", "15", "2017-08-31 04:32:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63463", "10", "2017-08-31 05:22:26", "207.46.13.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("63464", "9", "2017-08-31 06:28:19", "180.76.15.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("63465", "10", "2017-08-31 06:48:43", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63466", "3", "2017-08-31 07:09:16", "207.46.13.37", "4");
INSERT INTO `wp_gf_form_view` VALUES("63467", "14", "2017-08-31 07:19:12", "196.245.7.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("63468", "3", "2017-08-31 08:08:43", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("63469", "6", "2017-08-31 08:08:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63470", "9", "2017-08-31 08:08:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63471", "8", "2017-08-31 08:08:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63472", "10", "2017-08-31 08:08:46", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63473", "15", "2017-08-31 08:08:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63474", "10", "2017-08-31 09:10:51", "199.16.157.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("63475", "3", "2017-08-31 10:13:59", "51.255.71.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("63476", "10", "2017-08-31 10:50:46", "40.77.167.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("63477", "11", "2017-08-31 11:35:14", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("63478", "3", "2017-08-31 11:35:43", "207.46.13.37", "43");
INSERT INTO `wp_gf_form_view` VALUES("63479", "10", "2017-08-31 11:37:45", "157.55.39.41", "6");
INSERT INTO `wp_gf_form_view` VALUES("63480", "6", "2017-08-31 11:49:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63481", "9", "2017-08-31 11:49:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63482", "8", "2017-08-31 11:49:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63483", "15", "2017-08-31 11:49:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63484", "10", "2017-08-31 12:00:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63485", "15", "2017-08-31 12:58:40", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("63486", "10", "2017-08-31 13:58:01", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("63487", "14", "2017-08-31 14:22:02", "104.142.123.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("63488", "3", "2017-08-31 14:55:23", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("63489", "3", "2017-08-31 15:20:21", "66.249.79.133", "30");
INSERT INTO `wp_gf_form_view` VALUES("63490", "6", "2017-08-31 15:25:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63491", "9", "2017-08-31 15:25:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63492", "8", "2017-08-31 15:25:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63493", "10", "2017-08-31 15:25:27", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63494", "15", "2017-08-31 15:25:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63495", "3", "2017-08-31 16:49:54", "51.255.65.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("63496", "3", "2017-08-31 17:50:05", "24.68.35.40", "5");
INSERT INTO `wp_gf_form_view` VALUES("63497", "8", "2017-08-31 17:52:58", "24.68.35.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("63498", "10", "2017-08-31 17:58:16", "217.182.132.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("63499", "3", "2017-08-31 19:05:01", "52.88.109.3", "57");
INSERT INTO `wp_gf_form_view` VALUES("63500", "6", "2017-08-31 19:05:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63501", "9", "2017-08-31 19:05:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63502", "8", "2017-08-31 19:05:03", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("63503", "10", "2017-08-31 19:05:04", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("63504", "15", "2017-08-31 19:05:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63505", "3", "2017-08-31 20:13:16", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("63506", "10", "2017-08-31 21:03:48", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("63507", "14", "2017-08-31 21:06:42", "75.157.27.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("63508", "3", "2017-08-31 21:35:24", "207.46.13.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("63509", "3", "2017-08-31 22:35:48", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63510", "6", "2017-08-31 22:35:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63511", "9", "2017-08-31 22:35:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63512", "8", "2017-08-31 22:35:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63513", "10", "2017-08-31 22:35:51", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("63514", "15", "2017-08-31 22:35:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63515", "11", "2017-08-31 23:07:26", "180.76.15.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("63516", "10", "2017-09-01 00:06:58", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("63517", "3", "2017-09-01 01:50:06", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("63518", "3", "2017-09-01 02:18:46", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63519", "6", "2017-09-01 02:18:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63520", "9", "2017-09-01 02:18:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63521", "8", "2017-09-01 02:18:48", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63522", "10", "2017-09-01 02:18:48", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63523", "15", "2017-09-01 02:18:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63524", "3", "2017-09-01 04:20:28", "54.74.221.255", "3");
INSERT INTO `wp_gf_form_view` VALUES("63525", "8", "2017-09-01 05:12:35", "66.249.79.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("63526", "14", "2017-09-01 05:13:32", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("63527", "3", "2017-09-01 05:56:27", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63528", "6", "2017-09-01 05:56:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63529", "9", "2017-09-01 05:56:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63530", "10", "2017-09-01 05:56:30", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63531", "15", "2017-09-01 05:56:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63532", "10", "2017-09-01 06:42:44", "51.255.65.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("63533", "3", "2017-09-01 07:13:27", "198.204.243.138", "17");
INSERT INTO `wp_gf_form_view` VALUES("63534", "9", "2017-09-01 07:14:05", "198.204.243.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("63535", "8", "2017-09-01 07:14:52", "198.204.243.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("63536", "11", "2017-09-01 07:15:54", "198.204.243.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("63537", "10", "2017-09-01 07:19:18", "198.204.243.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("63538", "15", "2017-09-01 07:19:19", "198.204.243.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("63539", "12", "2017-09-01 07:21:58", "198.204.243.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("63540", "3", "2017-09-01 09:18:09", "164.132.161.93", "29");
INSERT INTO `wp_gf_form_view` VALUES("63541", "6", "2017-09-01 09:41:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63542", "9", "2017-09-01 09:41:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63543", "8", "2017-09-01 09:41:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63544", "10", "2017-09-01 09:41:17", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63545", "15", "2017-09-01 09:41:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63546", "3", "2017-09-01 10:49:58", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("63547", "15", "2017-09-01 11:09:34", "192.99.10.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("63548", "3", "2017-09-01 12:01:03", "74.213.69.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("63549", "10", "2017-09-01 12:01:44", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("63550", "3", "2017-09-01 13:22:55", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63551", "6", "2017-09-01 13:22:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63552", "9", "2017-09-01 13:22:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63553", "8", "2017-09-01 13:22:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63554", "10", "2017-09-01 13:22:58", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63555", "15", "2017-09-01 13:23:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63556", "3", "2017-09-01 14:43:48", "69.147.252.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("63557", "3", "2017-09-01 15:50:21", "5.188.211.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("63558", "3", "2017-09-01 17:11:52", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63559", "6", "2017-09-01 17:11:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63560", "9", "2017-09-01 17:11:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63561", "8", "2017-09-01 17:11:54", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("63562", "10", "2017-09-01 17:11:55", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("63563", "15", "2017-09-01 17:11:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63564", "10", "2017-09-01 18:08:37", "51.255.65.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("63565", "3", "2017-09-01 18:19:17", "217.182.132.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("63566", "3", "2017-09-01 19:42:01", "173.212.241.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("63567", "10", "2017-09-01 20:12:05", "217.182.132.97", "6");
INSERT INTO `wp_gf_form_view` VALUES("63568", "3", "2017-09-01 20:18:42", "207.194.133.9", "30");
INSERT INTO `wp_gf_form_view` VALUES("63569", "6", "2017-09-01 20:56:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63570", "9", "2017-09-01 20:56:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63571", "8", "2017-09-01 20:56:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63572", "15", "2017-09-01 20:56:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63573", "3", "2017-09-01 21:25:19", "180.76.15.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("63574", "3", "2017-09-01 22:31:32", "198.44.206.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("63575", "3", "2017-09-02 00:38:20", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63576", "6", "2017-09-02 00:38:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63577", "9", "2017-09-02 00:38:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63578", "8", "2017-09-02 00:38:23", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63579", "10", "2017-09-02 00:38:23", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63580", "15", "2017-09-02 00:38:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63581", "10", "2017-09-02 01:25:04", "194.187.170.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("63582", "3", "2017-09-02 01:37:08", "217.182.132.56", "2");
INSERT INTO `wp_gf_form_view` VALUES("63583", "10", "2017-09-02 02:20:52", "72.14.199.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("63584", "3", "2017-09-02 03:09:44", "5.188.211.26", "29");
INSERT INTO `wp_gf_form_view` VALUES("63585", "6", "2017-09-02 03:09:45", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("63586", "9", "2017-09-02 03:09:46", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("63587", "8", "2017-09-02 03:09:46", "5.188.211.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("63588", "10", "2017-09-02 03:09:47", "5.188.211.26", "8");
INSERT INTO `wp_gf_form_view` VALUES("63589", "15", "2017-09-02 03:09:51", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("63590", "3", "2017-09-02 04:09:39", "218.94.86.18", "61");
INSERT INTO `wp_gf_form_view` VALUES("63591", "6", "2017-09-02 04:25:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63592", "9", "2017-09-02 04:25:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63593", "8", "2017-09-02 04:25:01", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("63594", "10", "2017-09-02 04:25:02", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("63595", "15", "2017-09-02 04:25:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63596", "14", "2017-09-02 04:52:09", "184.66.36.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("63597", "14", "2017-09-02 05:01:23", "184.66.49.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("63598", "3", "2017-09-02 05:29:09", "184.66.49.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("63599", "3", "2017-09-02 06:49:40", "137.74.207.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("63600", "3", "2017-09-02 07:04:15", "5.188.211.35", "28");
INSERT INTO `wp_gf_form_view` VALUES("63601", "6", "2017-09-02 07:04:16", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("63602", "9", "2017-09-02 07:04:19", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("63603", "8", "2017-09-02 07:04:20", "5.188.211.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("63604", "10", "2017-09-02 07:04:20", "5.188.211.35", "5");
INSERT INTO `wp_gf_form_view` VALUES("63605", "15", "2017-09-02 07:04:22", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("63606", "3", "2017-09-02 08:09:19", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63607", "6", "2017-09-02 08:09:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63608", "9", "2017-09-02 08:09:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63609", "8", "2017-09-02 08:09:21", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63610", "10", "2017-09-02 08:09:22", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("63611", "15", "2017-09-02 08:09:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63612", "14", "2017-09-02 09:17:17", "31.187.66.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("63613", "14", "2017-09-02 10:34:58", "104.202.102.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("63614", "10", "2017-09-02 11:05:12", "178.203.120.140", "7");
INSERT INTO `wp_gf_form_view` VALUES("63615", "3", "2017-09-02 11:05:26", "178.203.120.140", "29");
INSERT INTO `wp_gf_form_view` VALUES("63616", "6", "2017-09-02 11:43:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63617", "9", "2017-09-02 11:43:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63618", "8", "2017-09-02 11:43:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63619", "15", "2017-09-02 11:43:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63620", "10", "2017-09-02 13:06:07", "199.59.150.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("63621", "3", "2017-09-02 14:31:56", "70.67.60.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("63622", "3", "2017-09-02 15:21:10", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63623", "6", "2017-09-02 15:21:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63624", "9", "2017-09-02 15:21:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63625", "8", "2017-09-02 15:21:13", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63626", "10", "2017-09-02 15:21:15", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63627", "15", "2017-09-02 15:21:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63628", "3", "2017-09-02 16:16:18", "40.77.167.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("63629", "10", "2017-09-02 16:27:53", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("63630", "14", "2017-09-02 17:43:59", "139.59.125.112", "4");
INSERT INTO `wp_gf_form_view` VALUES("63631", "3", "2017-09-02 17:44:12", "139.59.125.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("63632", "3", "2017-09-02 18:10:20", "40.77.167.109", "29");
INSERT INTO `wp_gf_form_view` VALUES("63633", "15", "2017-09-02 18:29:20", "66.249.79.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("63634", "6", "2017-09-02 18:46:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63635", "9", "2017-09-02 18:46:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63636", "8", "2017-09-02 18:46:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63637", "10", "2017-09-02 18:46:59", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63638", "14", "2017-09-02 19:30:38", "128.199.138.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("63639", "3", "2017-09-02 21:13:59", "40.77.167.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("63640", "14", "2017-09-02 22:22:55", "181.215.147.91", "5");
INSERT INTO `wp_gf_form_view` VALUES("63641", "3", "2017-09-02 22:22:58", "181.215.147.91", "31");
INSERT INTO `wp_gf_form_view` VALUES("63642", "6", "2017-09-02 22:24:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63643", "9", "2017-09-02 22:24:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63644", "8", "2017-09-02 22:24:38", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("63645", "10", "2017-09-02 22:24:39", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63646", "15", "2017-09-02 22:24:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63647", "14", "2017-09-02 23:01:33", "125.141.200.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("63648", "3", "2017-09-02 23:09:53", "5.188.211.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("63649", "10", "2017-09-03 00:14:20", "40.77.167.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("63650", "3", "2017-09-03 01:02:03", "157.55.39.41", "11");
INSERT INTO `wp_gf_form_view` VALUES("63651", "10", "2017-09-03 01:03:11", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("63652", "15", "2017-09-03 01:03:20", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("63653", "6", "2017-09-03 01:03:32", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("63654", "3", "2017-09-03 02:01:26", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63655", "6", "2017-09-03 02:01:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63656", "9", "2017-09-03 02:01:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63657", "8", "2017-09-03 02:01:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63658", "10", "2017-09-03 02:01:29", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63659", "15", "2017-09-03 02:01:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63660", "3", "2017-09-03 03:28:48", "24.108.10.44", "2");
INSERT INTO `wp_gf_form_view` VALUES("63661", "3", "2017-09-03 05:42:26", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63662", "6", "2017-09-03 05:42:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63663", "9", "2017-09-03 05:42:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63664", "8", "2017-09-03 05:42:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63665", "10", "2017-09-03 05:42:32", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63666", "15", "2017-09-03 05:42:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63667", "10", "2017-09-03 06:30:27", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("63668", "10", "2017-09-03 09:16:56", "51.255.65.61", "6");
INSERT INTO `wp_gf_form_view` VALUES("63669", "3", "2017-09-03 09:25:31", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63670", "6", "2017-09-03 09:25:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63671", "9", "2017-09-03 09:25:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63672", "8", "2017-09-03 09:25:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63673", "15", "2017-09-03 09:25:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63674", "10", "2017-09-03 10:20:16", "157.55.39.41", "4");
INSERT INTO `wp_gf_form_view` VALUES("63675", "3", "2017-09-03 11:46:55", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("63676", "15", "2017-09-03 11:47:58", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("63677", "10", "2017-09-03 12:28:53", "217.182.132.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("63678", "3", "2017-09-03 13:11:25", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63679", "6", "2017-09-03 13:11:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63680", "9", "2017-09-03 13:11:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63681", "8", "2017-09-03 13:11:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63682", "10", "2017-09-03 13:11:28", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63683", "15", "2017-09-03 13:11:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63684", "3", "2017-09-03 14:43:40", "180.76.15.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("63685", "10", "2017-09-03 15:20:06", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("63686", "14", "2017-09-03 16:18:06", "107.173.68.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("63687", "3", "2017-09-03 16:18:13", "107.173.68.62", "29");
INSERT INTO `wp_gf_form_view` VALUES("63688", "6", "2017-09-03 16:43:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63689", "9", "2017-09-03 16:43:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63690", "8", "2017-09-03 16:43:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63691", "10", "2017-09-03 16:43:12", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63692", "15", "2017-09-03 16:43:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63693", "3", "2017-09-03 19:51:08", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("63694", "10", "2017-09-03 20:18:18", "72.14.199.73", "7");
INSERT INTO `wp_gf_form_view` VALUES("63695", "3", "2017-09-03 20:21:48", "52.88.109.3", "36");
INSERT INTO `wp_gf_form_view` VALUES("63696", "6", "2017-09-03 20:21:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63697", "9", "2017-09-03 20:21:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63698", "8", "2017-09-03 20:21:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63699", "15", "2017-09-03 20:21:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63700", "14", "2017-09-03 20:43:12", "108.175.52.169", "5");
INSERT INTO `wp_gf_form_view` VALUES("63701", "15", "2017-09-03 21:01:43", "159.203.110.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("63702", "10", "2017-09-03 21:01:57", "159.203.110.210", "4");
INSERT INTO `wp_gf_form_view` VALUES("63703", "3", "2017-09-03 21:02:03", "159.203.110.210", "20");
INSERT INTO `wp_gf_form_view` VALUES("63704", "8", "2017-09-03 21:24:50", "159.203.110.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("63705", "14", "2017-09-03 22:23:05", "103.253.147.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("63706", "10", "2017-09-03 22:41:02", "46.229.168.70", "7");
INSERT INTO `wp_gf_form_view` VALUES("63707", "3", "2017-09-03 22:41:39", "46.229.168.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("63708", "14", "2017-09-03 23:00:29", "125.141.200.46", "5");
INSERT INTO `wp_gf_form_view` VALUES("63709", "3", "2017-09-03 23:00:45", "125.141.200.46", "32");
INSERT INTO `wp_gf_form_view` VALUES("63710", "6", "2017-09-03 23:55:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63711", "9", "2017-09-03 23:55:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63712", "8", "2017-09-03 23:55:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63713", "10", "2017-09-03 23:55:16", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63714", "15", "2017-09-03 23:55:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63715", "3", "2017-09-04 00:22:46", "180.76.15.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("63716", "10", "2017-09-04 00:25:14", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("63717", "3", "2017-09-04 02:02:44", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("63718", "10", "2017-09-04 03:09:24", "180.76.15.138", "7");
INSERT INTO `wp_gf_form_view` VALUES("63719", "3", "2017-09-04 03:39:12", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("63720", "6", "2017-09-04 03:39:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63721", "9", "2017-09-04 03:39:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63722", "8", "2017-09-04 03:39:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63723", "15", "2017-09-04 03:39:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63724", "14", "2017-09-04 03:42:41", "107.173.68.91", "5");
INSERT INTO `wp_gf_form_view` VALUES("63725", "3", "2017-09-04 05:22:46", "180.76.15.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("63726", "9", "2017-09-04 05:41:17", "137.74.207.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("63727", "6", "2017-09-04 05:42:17", "83.161.67.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("63728", "15", "2017-09-04 05:46:10", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("63729", "3", "2017-09-04 06:04:18", "157.55.39.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("63730", "8", "2017-09-04 06:58:33", "185.13.202.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("63731", "3", "2017-09-04 07:02:08", "185.13.202.215", "29");
INSERT INTO `wp_gf_form_view` VALUES("63732", "6", "2017-09-04 07:22:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63733", "9", "2017-09-04 07:22:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63734", "8", "2017-09-04 07:22:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63735", "10", "2017-09-04 07:22:06", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63736", "15", "2017-09-04 07:22:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63737", "14", "2017-09-04 07:55:15", "217.182.132.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("63738", "3", "2017-09-04 09:49:02", "13.56.168.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("63739", "10", "2017-09-04 09:49:44", "51.255.65.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("63740", "14", "2017-09-04 10:07:03", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("63741", "10", "2017-09-04 11:00:57", "180.76.15.146", "12");
INSERT INTO `wp_gf_form_view` VALUES("63742", "3", "2017-09-04 11:04:52", "52.88.109.3", "56");
INSERT INTO `wp_gf_form_view` VALUES("63743", "6", "2017-09-04 11:04:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63744", "9", "2017-09-04 11:04:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63745", "8", "2017-09-04 11:04:56", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("63746", "15", "2017-09-04 11:04:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63747", "5", "2017-09-04 11:45:42", "77.75.79.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("63748", "14", "2017-09-04 12:20:11", "23.94.228.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("63749", "3", "2017-09-04 13:14:17", "180.76.15.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("63750", "10", "2017-09-04 13:17:13", "40.77.167.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("63751", "3", "2017-09-04 14:30:47", "217.182.132.71", "29");
INSERT INTO `wp_gf_form_view` VALUES("63752", "6", "2017-09-04 14:48:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63753", "9", "2017-09-04 14:48:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63754", "8", "2017-09-04 14:48:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63755", "10", "2017-09-04 14:48:04", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63756", "15", "2017-09-04 14:48:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63757", "3", "2017-09-04 15:28:28", "40.77.167.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("63758", "3", "2017-09-04 16:00:41", "217.182.132.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("63759", "3", "2017-09-04 17:11:24", "180.76.15.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("63760", "3", "2017-09-04 18:23:48", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63761", "6", "2017-09-04 18:23:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63762", "9", "2017-09-04 18:23:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63763", "8", "2017-09-04 18:23:50", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63764", "10", "2017-09-04 18:23:51", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63765", "15", "2017-09-04 18:23:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63766", "3", "2017-09-04 19:50:07", "180.76.15.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("63767", "3", "2017-09-04 20:13:10", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63768", "3", "2017-09-04 22:06:50", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("63769", "6", "2017-09-04 22:06:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63770", "9", "2017-09-04 22:06:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63771", "8", "2017-09-04 22:06:52", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("63772", "10", "2017-09-04 22:06:53", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63773", "15", "2017-09-04 22:06:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63774", "14", "2017-09-04 23:09:07", "107.173.68.62", "3");
INSERT INTO `wp_gf_form_view` VALUES("63775", "3", "2017-09-04 23:22:39", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("63776", "3", "2017-09-05 00:06:12", "180.76.15.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("63777", "10", "2017-09-05 00:17:12", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("63778", "10", "2017-09-05 01:18:08", "192.99.10.173", "6");
INSERT INTO `wp_gf_form_view` VALUES("63779", "3", "2017-09-05 01:39:37", "70.66.211.204", "29");
INSERT INTO `wp_gf_form_view` VALUES("63780", "6", "2017-09-05 01:40:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63781", "9", "2017-09-05 01:40:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63782", "8", "2017-09-05 01:40:25", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63783", "15", "2017-09-05 01:40:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63784", "3", "2017-09-05 04:19:55", "154.5.209.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("63785", "3", "2017-09-05 05:19:04", "52.88.109.3", "28");
INSERT INTO `wp_gf_form_view` VALUES("63786", "6", "2017-09-05 05:19:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63787", "9", "2017-09-05 05:19:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63788", "8", "2017-09-05 05:19:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63789", "10", "2017-09-05 05:19:07", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63790", "15", "2017-09-05 05:19:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63791", "10", "2017-09-05 06:14:57", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("63792", "6", "2017-09-05 06:45:30", "51.255.65.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("63793", "3", "2017-09-05 07:06:56", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63794", "3", "2017-09-05 08:20:13", "68.180.230.188", "5");
INSERT INTO `wp_gf_form_view` VALUES("63795", "3", "2017-09-05 09:04:06", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("63796", "6", "2017-09-05 09:04:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63797", "9", "2017-09-05 09:04:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63798", "8", "2017-09-05 09:04:08", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63799", "10", "2017-09-05 09:04:09", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63800", "15", "2017-09-05 09:04:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63801", "3", "2017-09-05 10:18:08", "164.132.161.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("63802", "3", "2017-09-05 11:00:38", "180.76.15.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("63803", "10", "2017-09-05 11:28:41", "51.255.71.128", "2");
INSERT INTO `wp_gf_form_view` VALUES("63804", "3", "2017-09-05 12:31:47", "157.55.39.221", "30");
INSERT INTO `wp_gf_form_view` VALUES("63805", "6", "2017-09-05 12:49:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63806", "9", "2017-09-05 12:49:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63807", "8", "2017-09-05 12:49:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63808", "10", "2017-09-05 12:49:33", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63809", "15", "2017-09-05 12:49:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63810", "3", "2017-09-05 13:23:33", "180.76.15.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("63811", "8", "2017-09-05 13:36:39", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("63812", "14", "2017-09-05 14:07:59", "45.35.255.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63813", "3", "2017-09-05 14:08:09", "45.35.255.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63814", "8", "2017-09-05 14:17:17", "164.132.161.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("63815", "10", "2017-09-05 15:28:47", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("63816", "14", "2017-09-05 15:32:56", "50.3.197.64", "4");
INSERT INTO `wp_gf_form_view` VALUES("63817", "3", "2017-09-05 16:27:20", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63818", "6", "2017-09-05 16:27:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63819", "9", "2017-09-05 16:27:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63820", "8", "2017-09-05 16:27:22", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63821", "10", "2017-09-05 16:27:23", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63822", "15", "2017-09-05 16:27:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63823", "3", "2017-09-05 18:03:57", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("63824", "14", "2017-09-05 18:20:41", "5.188.211.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("63825", "3", "2017-09-05 20:13:50", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63826", "6", "2017-09-05 20:13:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63827", "9", "2017-09-05 20:13:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63828", "8", "2017-09-05 20:13:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63829", "10", "2017-09-05 20:13:53", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63830", "15", "2017-09-05 20:13:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63831", "14", "2017-09-05 21:49:08", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("63832", "3", "2017-09-05 22:31:48", "51.255.65.55", "2");
INSERT INTO `wp_gf_form_view` VALUES("63833", "10", "2017-09-05 22:35:52", "64.114.222.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("63834", "3", "2017-09-05 23:52:47", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63835", "6", "2017-09-05 23:52:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63836", "9", "2017-09-05 23:52:49", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63837", "8", "2017-09-05 23:52:49", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63838", "10", "2017-09-05 23:52:50", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63839", "15", "2017-09-05 23:52:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63840", "10", "2017-09-06 00:16:10", "51.255.65.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("63841", "3", "2017-09-06 01:23:57", "5.188.211.15", "29");
INSERT INTO `wp_gf_form_view` VALUES("63842", "6", "2017-09-06 01:23:58", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("63843", "9", "2017-09-06 01:24:00", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("63844", "8", "2017-09-06 01:24:01", "5.188.211.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("63845", "10", "2017-09-06 01:24:02", "5.188.211.15", "5");
INSERT INTO `wp_gf_form_view` VALUES("63846", "15", "2017-09-06 01:24:05", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("63847", "3", "2017-09-06 02:01:25", "49.178.14.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("63848", "3", "2017-09-06 03:17:19", "46.161.9.57", "31");
INSERT INTO `wp_gf_form_view` VALUES("63849", "6", "2017-09-06 03:41:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63850", "9", "2017-09-06 03:41:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63851", "8", "2017-09-06 03:41:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63852", "10", "2017-09-06 03:41:40", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63853", "15", "2017-09-06 03:41:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63854", "3", "2017-09-06 04:29:08", "52.71.155.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("63855", "15", "2017-09-06 04:36:38", "180.76.15.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("63856", "10", "2017-09-06 04:43:32", "72.14.199.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("63857", "3", "2017-09-06 05:43:23", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("63858", "3", "2017-09-06 07:18:56", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("63859", "6", "2017-09-06 07:18:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63860", "9", "2017-09-06 07:19:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63861", "8", "2017-09-06 07:19:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63862", "10", "2017-09-06 07:19:05", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63863", "15", "2017-09-06 07:19:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63864", "3", "2017-09-06 08:19:42", "180.76.15.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("63865", "3", "2017-09-06 09:38:26", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("63866", "3", "2017-09-06 11:10:29", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63867", "6", "2017-09-06 11:10:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63868", "9", "2017-09-06 11:10:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63869", "8", "2017-09-06 11:10:34", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63870", "10", "2017-09-06 11:10:36", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63871", "15", "2017-09-06 11:10:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63872", "3", "2017-09-06 12:55:13", "157.55.39.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("63873", "3", "2017-09-06 13:26:25", "5.9.98.130", "30");
INSERT INTO `wp_gf_form_view` VALUES("63874", "8", "2017-09-06 13:29:14", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("63875", "14", "2017-09-06 13:30:14", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("63876", "10", "2017-09-06 13:33:58", "5.9.98.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("63877", "15", "2017-09-06 13:34:31", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("63878", "9", "2017-09-06 13:42:52", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("63879", "6", "2017-09-06 13:45:02", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("63880", "3", "2017-09-06 14:03:07", "96.50.28.252", "30");
INSERT INTO `wp_gf_form_view` VALUES("63881", "11", "2017-09-06 14:08:27", "180.76.15.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63882", "6", "2017-09-06 14:58:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63883", "9", "2017-09-06 14:58:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63884", "8", "2017-09-06 14:58:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63885", "10", "2017-09-06 14:58:33", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63886", "15", "2017-09-06 14:58:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63887", "3", "2017-09-06 15:24:29", "75.156.34.137", "16");
INSERT INTO `wp_gf_form_view` VALUES("63888", "15", "2017-09-06 15:26:54", "40.77.167.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("63889", "10", "2017-09-06 15:27:13", "40.77.167.145", "3");
INSERT INTO `wp_gf_form_view` VALUES("63890", "6", "2017-09-06 15:32:01", "40.77.167.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("63891", "9", "2017-09-06 15:38:01", "207.46.13.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("63892", "10", "2017-09-06 17:01:06", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("63893", "3", "2017-09-06 18:03:59", "51.255.65.82", "30");
INSERT INTO `wp_gf_form_view` VALUES("63894", "10", "2017-09-06 18:31:08", "24.108.13.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("63895", "6", "2017-09-06 18:52:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63896", "9", "2017-09-06 18:52:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63897", "8", "2017-09-06 18:52:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63898", "15", "2017-09-06 18:52:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63899", "14", "2017-09-06 19:15:49", "70.67.174.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("63900", "15", "2017-09-06 19:26:05", "180.76.15.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("63901", "3", "2017-09-06 21:05:55", "180.76.15.7", "3");
INSERT INTO `wp_gf_form_view` VALUES("63902", "3", "2017-09-06 22:36:18", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63903", "6", "2017-09-06 22:36:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63904", "9", "2017-09-06 22:36:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63905", "8", "2017-09-06 22:36:21", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63906", "10", "2017-09-06 22:36:23", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63907", "15", "2017-09-06 22:36:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63908", "8", "2017-09-06 23:07:51", "24.69.151.198", "2");
INSERT INTO `wp_gf_form_view` VALUES("63909", "10", "2017-09-06 23:24:33", "217.182.132.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("63910", "3", "2017-09-06 23:26:40", "174.127.133.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("63911", "10", "2017-09-07 00:45:19", "207.46.13.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("63912", "10", "2017-09-07 01:06:38", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("63913", "3", "2017-09-07 01:23:01", "157.55.39.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("63914", "14", "2017-09-07 01:56:11", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("63915", "14", "2017-09-07 02:17:14", "193.17.219.81", "3");
INSERT INTO `wp_gf_form_view` VALUES("63916", "3", "2017-09-07 02:17:24", "193.17.219.81", "30");
INSERT INTO `wp_gf_form_view` VALUES("63917", "6", "2017-09-07 02:22:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63918", "9", "2017-09-07 02:22:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63919", "8", "2017-09-07 02:22:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63920", "10", "2017-09-07 02:22:35", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63921", "15", "2017-09-07 02:22:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63922", "8", "2017-09-07 03:14:04", "154.20.234.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("63923", "3", "2017-09-07 03:14:13", "154.20.234.215", "4");
INSERT INTO `wp_gf_form_view` VALUES("63924", "3", "2017-09-07 04:03:03", "144.76.80.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("63925", "10", "2017-09-07 05:39:20", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("63926", "3", "2017-09-07 05:57:08", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63927", "6", "2017-09-07 05:57:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63928", "9", "2017-09-07 05:57:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63929", "8", "2017-09-07 05:57:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63930", "15", "2017-09-07 05:57:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63931", "3", "2017-09-07 08:00:50", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("63932", "3", "2017-09-07 09:03:38", "180.76.15.141", "30");
INSERT INTO `wp_gf_form_view` VALUES("63933", "14", "2017-09-07 09:11:09", "213.136.73.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("63934", "6", "2017-09-07 09:43:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63935", "9", "2017-09-07 09:43:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63936", "8", "2017-09-07 09:43:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63937", "10", "2017-09-07 09:43:56", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63938", "15", "2017-09-07 09:44:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63939", "3", "2017-09-07 10:38:16", "217.182.132.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("63940", "3", "2017-09-07 12:10:47", "51.255.65.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("63941", "3", "2017-09-07 13:30:26", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("63942", "6", "2017-09-07 13:30:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63943", "9", "2017-09-07 13:30:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63944", "8", "2017-09-07 13:30:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63945", "10", "2017-09-07 13:30:33", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63946", "15", "2017-09-07 13:30:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63947", "3", "2017-09-07 14:03:55", "180.76.15.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("63948", "14", "2017-09-07 15:41:06", "155.94.237.30", "5");
INSERT INTO `wp_gf_form_view` VALUES("63949", "3", "2017-09-07 15:41:15", "155.94.237.30", "4");
INSERT INTO `wp_gf_form_view` VALUES("63950", "14", "2017-09-07 16:33:26", "96.54.252.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("63951", "10", "2017-09-07 16:53:16", "199.59.150.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("63952", "3", "2017-09-07 17:20:25", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63953", "6", "2017-09-07 17:20:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63954", "9", "2017-09-07 17:20:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63955", "8", "2017-09-07 17:20:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63956", "10", "2017-09-07 17:20:31", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63957", "15", "2017-09-07 17:20:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63958", "3", "2017-09-07 18:07:26", "142.36.92.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("63959", "3", "2017-09-07 19:07:05", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("63960", "14", "2017-09-07 19:26:07", "24.68.96.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("63961", "10", "2017-09-07 20:24:55", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("63962", "3", "2017-09-07 20:44:02", "180.76.15.160", "30");
INSERT INTO `wp_gf_form_view` VALUES("63963", "6", "2017-09-07 20:55:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63964", "9", "2017-09-07 20:55:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63965", "8", "2017-09-07 20:55:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63966", "15", "2017-09-07 20:56:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63967", "3", "2017-09-07 21:10:41", "185.75.242.136", "7");
INSERT INTO `wp_gf_form_view` VALUES("63968", "8", "2017-09-07 21:12:38", "91.223.159.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("63969", "14", "2017-09-07 21:32:56", "69.61.28.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("63970", "10", "2017-09-07 22:03:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63971", "3", "2017-09-07 22:43:22", "96.54.45.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("63972", "3", "2017-09-07 23:34:42", "184.69.116.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("63973", "3", "2017-09-08 00:39:37", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("63974", "6", "2017-09-08 00:39:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63975", "9", "2017-09-08 00:39:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63976", "8", "2017-09-08 00:39:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63977", "10", "2017-09-08 00:39:43", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63978", "15", "2017-09-08 00:39:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63979", "10", "2017-09-08 02:06:03", "40.77.167.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("63980", "3", "2017-09-08 02:37:31", "67.2.254.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("63981", "8", "2017-09-08 02:44:33", "70.66.169.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("63982", "10", "2017-09-08 03:16:57", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("63983", "3", "2017-09-08 04:25:34", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("63984", "6", "2017-09-08 04:25:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63985", "9", "2017-09-08 04:25:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63986", "8", "2017-09-08 04:25:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63987", "10", "2017-09-08 04:25:39", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("63988", "15", "2017-09-08 04:25:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63989", "3", "2017-09-08 05:15:41", "182.161.38.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("63990", "10", "2017-09-08 05:24:54", "217.182.132.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("63991", "14", "2017-09-08 06:09:14", "190.112.200.234", "3");
INSERT INTO `wp_gf_form_view` VALUES("63992", "3", "2017-09-08 06:09:29", "190.112.200.234", "3");
INSERT INTO `wp_gf_form_view` VALUES("63993", "3", "2017-09-08 07:05:18", "157.55.39.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("63994", "3", "2017-09-08 08:03:49", "52.88.109.3", "51");
INSERT INTO `wp_gf_form_view` VALUES("63995", "6", "2017-09-08 08:03:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("63996", "9", "2017-09-08 08:03:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63997", "8", "2017-09-08 08:03:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("63998", "10", "2017-09-08 08:03:54", "52.88.109.3", "11");
INSERT INTO `wp_gf_form_view` VALUES("63999", "15", "2017-09-08 08:03:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64000", "3", "2017-09-08 09:49:08", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("64001", "3", "2017-09-08 10:42:50", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("64002", "8", "2017-09-08 10:54:25", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("64003", "3", "2017-09-08 11:15:25", "180.76.15.13", "30");
INSERT INTO `wp_gf_form_view` VALUES("64004", "6", "2017-09-08 11:46:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64005", "9", "2017-09-08 11:46:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64006", "8", "2017-09-08 11:46:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64007", "10", "2017-09-08 11:46:42", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64008", "15", "2017-09-08 11:46:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64009", "10", "2017-09-08 12:16:22", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("64010", "8", "2017-09-08 13:36:17", "94.209.237.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("64011", "3", "2017-09-08 13:36:25", "94.209.237.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("64012", "3", "2017-09-08 15:25:13", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64013", "6", "2017-09-08 15:25:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64014", "9", "2017-09-08 15:25:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64015", "8", "2017-09-08 15:25:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64016", "10", "2017-09-08 15:25:16", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64017", "15", "2017-09-08 15:25:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64018", "14", "2017-09-08 15:33:56", "209.52.88.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("64019", "3", "2017-09-08 16:15:15", "216.197.203.98", "3");
INSERT INTO `wp_gf_form_view` VALUES("64020", "14", "2017-09-08 16:25:53", "108.180.146.220", "2");
INSERT INTO `wp_gf_form_view` VALUES("64021", "3", "2017-09-08 17:13:37", "184.71.18.250", "2");
INSERT INTO `wp_gf_form_view` VALUES("64022", "10", "2017-09-08 17:19:04", "51.255.65.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("64023", "14", "2017-09-08 17:37:54", "202.159.36.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("64024", "8", "2017-09-08 18:00:44", "24.108.14.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("64025", "3", "2017-09-08 18:43:10", "164.132.161.12", "32");
INSERT INTO `wp_gf_form_view` VALUES("64026", "6", "2017-09-08 18:59:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64027", "9", "2017-09-08 18:59:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64028", "10", "2017-09-08 18:59:53", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64029", "15", "2017-09-08 18:59:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64030", "3", "2017-09-08 19:18:58", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("64031", "10", "2017-09-08 19:26:43", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("64032", "3", "2017-09-08 20:02:09", "46.229.168.80", "12");
INSERT INTO `wp_gf_form_view` VALUES("64033", "10", "2017-09-08 20:04:07", "46.229.168.78", "9");
INSERT INTO `wp_gf_form_view` VALUES("64034", "6", "2017-09-08 20:07:14", "46.229.168.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("64035", "11", "2017-09-08 20:10:59", "46.229.168.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("64036", "14", "2017-09-08 20:13:55", "46.229.168.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("64037", "3", "2017-09-08 22:42:41", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("64038", "6", "2017-09-08 22:42:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64039", "9", "2017-09-08 22:42:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64040", "8", "2017-09-08 22:42:44", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64041", "10", "2017-09-08 22:42:44", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64042", "15", "2017-09-08 22:42:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64043", "10", "2017-09-08 23:51:25", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("64044", "3", "2017-09-09 00:34:08", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("64045", "3", "2017-09-09 01:49:51", "157.55.39.254", "1");
INSERT INTO `wp_gf_form_view` VALUES("64046", "10", "2017-09-09 02:07:36", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("64047", "3", "2017-09-09 02:29:33", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("64048", "6", "2017-09-09 02:29:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64049", "9", "2017-09-09 02:29:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64050", "8", "2017-09-09 02:29:36", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("64051", "15", "2017-09-09 02:29:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64052", "14", "2017-09-09 02:45:28", "46.105.100.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("64053", "6", "2017-09-09 03:50:30", "180.76.15.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("64054", "14", "2017-09-09 04:16:35", "45.35.255.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("64055", "3", "2017-09-09 04:16:39", "45.35.255.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("64056", "3", "2017-09-09 05:22:53", "68.180.230.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("64057", "3", "2017-09-09 06:06:34", "180.76.15.155", "30");
INSERT INTO `wp_gf_form_view` VALUES("64058", "6", "2017-09-09 06:15:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64059", "9", "2017-09-09 06:15:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64060", "8", "2017-09-09 06:15:23", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64061", "10", "2017-09-09 06:15:24", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64062", "15", "2017-09-09 06:15:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64063", "14", "2017-09-09 07:01:49", "190.60.234.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("64064", "3", "2017-09-09 07:02:06", "190.60.234.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("64065", "14", "2017-09-09 09:50:14", "96.50.117.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("64066", "3", "2017-09-09 09:55:41", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("64067", "6", "2017-09-09 09:55:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64068", "9", "2017-09-09 09:55:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64069", "8", "2017-09-09 09:55:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64070", "10", "2017-09-09 09:55:44", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64071", "15", "2017-09-09 09:55:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64072", "3", "2017-09-09 11:07:51", "157.55.39.208", "2");
INSERT INTO `wp_gf_form_view` VALUES("64073", "3", "2017-09-09 12:53:43", "207.46.13.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("64074", "8", "2017-09-09 12:58:47", "40.77.167.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("64075", "14", "2017-09-09 13:05:23", "62.210.25.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("64076", "10", "2017-09-09 13:37:07", "180.76.15.14", "6");
INSERT INTO `wp_gf_form_view` VALUES("64077", "3", "2017-09-09 13:43:31", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64078", "6", "2017-09-09 13:43:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64079", "9", "2017-09-09 13:43:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64080", "8", "2017-09-09 13:43:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64081", "15", "2017-09-09 13:43:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64082", "3", "2017-09-09 14:09:21", "207.46.13.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("64083", "10", "2017-09-09 14:14:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("64084", "10", "2017-09-09 16:03:52", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("64085", "3", "2017-09-09 17:13:27", "180.76.15.34", "35");
INSERT INTO `wp_gf_form_view` VALUES("64086", "14", "2017-09-09 17:23:32", "89.37.65.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("64087", "6", "2017-09-09 17:35:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64088", "9", "2017-09-09 17:35:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64089", "8", "2017-09-09 17:35:39", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("64090", "10", "2017-09-09 17:35:40", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64091", "15", "2017-09-09 17:35:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64092", "3", "2017-09-09 19:17:28", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("64093", "3", "2017-09-09 20:00:10", "180.76.15.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("64094", "3", "2017-09-09 21:18:06", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("64095", "6", "2017-09-09 21:18:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64096", "9", "2017-09-09 21:18:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64097", "8", "2017-09-09 21:18:08", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64098", "10", "2017-09-09 21:18:08", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64099", "15", "2017-09-09 21:18:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64100", "3", "2017-09-09 22:02:35", "164.132.161.86", "6");
INSERT INTO `wp_gf_form_view` VALUES("64101", "8", "2017-09-09 22:18:21", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("64102", "3", "2017-09-09 23:14:15", "207.46.13.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("64103", "3", "2017-09-10 00:03:19", "207.46.13.69", "36");
INSERT INTO `wp_gf_form_view` VALUES("64104", "12", "2017-09-10 00:03:41", "207.46.13.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("64105", "10", "2017-09-10 00:04:10", "207.46.13.69", "12");
INSERT INTO `wp_gf_form_view` VALUES("64106", "11", "2017-09-10 00:04:21", "157.55.39.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("64107", "8", "2017-09-10 00:04:58", "157.55.39.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("64108", "14", "2017-09-10 00:08:07", "202.201.64.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("64109", "3", "2017-09-10 01:05:03", "52.88.109.3", "64");
INSERT INTO `wp_gf_form_view` VALUES("64110", "6", "2017-09-10 01:05:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64111", "9", "2017-09-10 01:05:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64112", "8", "2017-09-10 01:05:05", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64113", "10", "2017-09-10 01:05:05", "52.88.109.3", "15");
INSERT INTO `wp_gf_form_view` VALUES("64114", "15", "2017-09-10 01:05:08", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("64115", "3", "2017-09-10 02:08:55", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("64116", "10", "2017-09-10 02:33:53", "157.55.39.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("64117", "3", "2017-09-10 04:18:42", "207.6.209.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("64118", "3", "2017-09-10 05:01:20", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64119", "6", "2017-09-10 05:01:20", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64120", "9", "2017-09-10 05:01:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64121", "8", "2017-09-10 05:01:22", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64122", "10", "2017-09-10 05:01:22", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64123", "15", "2017-09-10 05:01:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64124", "9", "2017-09-10 06:03:08", "217.182.88.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("64125", "3", "2017-09-10 06:03:38", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("64126", "3", "2017-09-10 07:02:47", "40.77.167.79", "12");
INSERT INTO `wp_gf_form_view` VALUES("64127", "9", "2017-09-10 07:03:08", "40.77.167.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("64128", "10", "2017-09-10 07:03:22", "40.77.167.79", "7");
INSERT INTO `wp_gf_form_view` VALUES("64129", "8", "2017-09-10 08:08:59", "180.76.15.140", "3");
INSERT INTO `wp_gf_form_view` VALUES("64130", "3", "2017-09-10 08:09:59", "180.76.15.147", "30");
INSERT INTO `wp_gf_form_view` VALUES("64131", "6", "2017-09-10 08:44:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64132", "9", "2017-09-10 08:44:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64133", "10", "2017-09-10 08:44:39", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64134", "15", "2017-09-10 08:44:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64135", "3", "2017-09-10 10:55:33", "52.214.197.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("64136", "3", "2017-09-10 11:30:02", "180.76.15.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("64137", "3", "2017-09-10 12:37:41", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("64138", "6", "2017-09-10 12:37:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64139", "9", "2017-09-10 12:37:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64140", "8", "2017-09-10 12:37:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64141", "10", "2017-09-10 12:37:43", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64142", "15", "2017-09-10 12:37:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64143", "14", "2017-09-10 12:47:47", "198.12.68.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("64144", "8", "2017-09-10 13:40:16", "52.5.220.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("64145", "3", "2017-09-10 14:23:22", "180.76.15.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("64146", "6", "2017-09-10 14:31:18", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("64147", "3", "2017-09-10 15:14:02", "5.188.211.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("64148", "3", "2017-09-10 16:36:02", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64149", "6", "2017-09-10 16:36:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64150", "9", "2017-09-10 16:36:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64151", "8", "2017-09-10 16:36:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64152", "10", "2017-09-10 16:36:05", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64153", "15", "2017-09-10 16:36:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64154", "14", "2017-09-10 17:03:46", "165.231.45.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("64155", "3", "2017-09-10 18:14:01", "5.188.211.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("64156", "3", "2017-09-10 19:10:35", "180.76.15.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("64157", "3", "2017-09-10 20:18:59", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64158", "6", "2017-09-10 20:18:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64159", "9", "2017-09-10 20:19:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64160", "8", "2017-09-10 20:19:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64161", "10", "2017-09-10 20:19:01", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64162", "15", "2017-09-10 20:19:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64163", "10", "2017-09-10 22:31:55", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("64164", "3", "2017-09-10 22:55:30", "207.46.13.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("64165", "3", "2017-09-11 00:08:51", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64166", "6", "2017-09-11 00:08:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64167", "9", "2017-09-11 00:08:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64168", "8", "2017-09-11 00:08:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64169", "10", "2017-09-11 00:08:54", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64170", "15", "2017-09-11 00:08:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64171", "14", "2017-09-11 01:06:42", "196.196.160.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("64172", "3", "2017-09-11 01:06:46", "196.196.160.171", "6");
INSERT INTO `wp_gf_form_view` VALUES("64173", "3", "2017-09-11 02:00:02", "217.182.132.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("64174", "15", "2017-09-11 02:06:20", "5.188.211.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("64175", "10", "2017-09-11 02:42:20", "137.74.201.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("64176", "3", "2017-09-11 03:11:04", "180.76.15.29", "31");
INSERT INTO `wp_gf_form_view` VALUES("64177", "6", "2017-09-11 03:58:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64178", "9", "2017-09-11 03:58:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64179", "8", "2017-09-11 03:58:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64180", "10", "2017-09-11 03:58:57", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64181", "15", "2017-09-11 03:58:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64182", "3", "2017-09-11 04:39:36", "40.77.167.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("64183", "3", "2017-09-11 06:45:33", "207.46.13.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("64184", "14", "2017-09-11 06:54:16", "67.2.254.235", "1");
INSERT INTO `wp_gf_form_view` VALUES("64185", "10", "2017-09-11 07:33:54", "40.77.167.53", "6");
INSERT INTO `wp_gf_form_view` VALUES("64186", "3", "2017-09-11 07:43:36", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64187", "6", "2017-09-11 07:43:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64188", "9", "2017-09-11 07:43:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64189", "8", "2017-09-11 07:43:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64190", "15", "2017-09-11 07:43:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64191", "3", "2017-09-11 09:05:13", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("64192", "3", "2017-09-11 10:11:52", "180.76.15.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("64193", "3", "2017-09-11 11:32:00", "52.88.109.3", "31");
INSERT INTO `wp_gf_form_view` VALUES("64194", "6", "2017-09-11 11:32:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64195", "9", "2017-09-11 11:32:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64196", "8", "2017-09-11 11:32:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64197", "10", "2017-09-11 11:32:03", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64198", "15", "2017-09-11 11:32:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64199", "14", "2017-09-11 13:00:09", "196.196.31.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("64200", "3", "2017-09-11 14:36:02", "40.77.167.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("64201", "3", "2017-09-11 15:00:57", "217.182.132.93", "30");
INSERT INTO `wp_gf_form_view` VALUES("64202", "6", "2017-09-11 15:31:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64203", "9", "2017-09-11 15:31:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64204", "8", "2017-09-11 15:31:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64205", "10", "2017-09-11 15:31:45", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64206", "15", "2017-09-11 15:31:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64207", "3", "2017-09-11 17:06:40", "184.66.146.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("64208", "3", "2017-09-11 19:27:12", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("64209", "6", "2017-09-11 19:27:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64210", "9", "2017-09-11 19:27:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64211", "8", "2017-09-11 19:27:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64212", "10", "2017-09-11 19:27:16", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64213", "15", "2017-09-11 19:27:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64214", "8", "2017-09-11 20:41:40", "217.182.93.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("64215", "14", "2017-09-11 20:44:22", "62.210.25.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("64216", "14", "2017-09-11 21:38:04", "217.182.132.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("64217", "8", "2017-09-11 22:40:34", "184.66.233.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("64218", "3", "2017-09-11 22:43:35", "184.66.233.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("64219", "3", "2017-09-11 23:00:17", "217.182.88.168", "30");
INSERT INTO `wp_gf_form_view` VALUES("64220", "6", "2017-09-11 23:19:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64221", "9", "2017-09-11 23:19:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64222", "8", "2017-09-11 23:19:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64223", "10", "2017-09-11 23:19:05", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64224", "15", "2017-09-11 23:19:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64225", "10", "2017-09-12 00:17:37", "5.188.211.35", "5");
INSERT INTO `wp_gf_form_view` VALUES("64226", "3", "2017-09-12 00:18:50", "5.188.211.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("64227", "3", "2017-09-12 01:00:13", "70.74.228.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("64228", "14", "2017-09-12 01:03:09", "70.74.228.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("64229", "3", "2017-09-12 03:17:17", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("64230", "6", "2017-09-12 03:17:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64231", "9", "2017-09-12 03:17:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64232", "8", "2017-09-12 03:17:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64233", "10", "2017-09-12 03:17:20", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64234", "15", "2017-09-12 03:17:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64235", "10", "2017-09-12 04:56:57", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("64236", "10", "2017-09-12 05:08:38", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("64237", "3", "2017-09-12 05:23:12", "157.55.39.110", "6");
INSERT INTO `wp_gf_form_view` VALUES("64238", "8", "2017-09-12 05:28:21", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("64239", "3", "2017-09-12 07:06:26", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64240", "6", "2017-09-12 07:06:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64241", "9", "2017-09-12 07:06:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64242", "8", "2017-09-12 07:06:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64243", "10", "2017-09-12 07:06:29", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64244", "15", "2017-09-12 07:06:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64245", "3", "2017-09-12 09:08:49", "5.188.211.13", "29");
INSERT INTO `wp_gf_form_view` VALUES("64246", "6", "2017-09-12 09:08:51", "5.188.211.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("64247", "9", "2017-09-12 09:08:52", "5.188.211.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("64248", "8", "2017-09-12 09:08:52", "5.188.211.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("64249", "10", "2017-09-12 09:08:53", "5.188.211.13", "5");
INSERT INTO `wp_gf_form_view` VALUES("64250", "15", "2017-09-12 09:08:55", "5.188.211.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("64251", "3", "2017-09-12 10:46:37", "180.76.15.6", "31");
INSERT INTO `wp_gf_form_view` VALUES("64252", "14", "2017-09-12 10:50:03", "155.94.176.234", "3");
INSERT INTO `wp_gf_form_view` VALUES("64253", "6", "2017-09-12 10:56:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64254", "9", "2017-09-12 10:56:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64255", "8", "2017-09-12 10:56:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64256", "10", "2017-09-12 10:56:41", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64257", "15", "2017-09-12 10:56:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64258", "3", "2017-09-12 11:31:44", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("64259", "15", "2017-09-12 12:25:30", "207.46.13.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("64260", "3", "2017-09-12 12:26:32", "180.76.15.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("64261", "10", "2017-09-12 12:41:19", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("64262", "3", "2017-09-12 13:28:33", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("64263", "8", "2017-09-12 13:40:06", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("64264", "10", "2017-09-12 13:51:36", "207.46.13.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("64265", "10", "2017-09-12 14:10:08", "199.59.150.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("64266", "3", "2017-09-12 14:53:32", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64267", "6", "2017-09-12 14:53:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64268", "9", "2017-09-12 14:53:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64269", "8", "2017-09-12 14:53:34", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64270", "15", "2017-09-12 14:53:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64271", "3", "2017-09-12 16:32:43", "180.76.15.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("64272", "14", "2017-09-12 17:21:35", "96.54.252.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("64273", "8", "2017-09-12 18:24:28", "96.54.248.136", "3");
INSERT INTO `wp_gf_form_view` VALUES("64274", "3", "2017-09-12 18:57:30", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64275", "6", "2017-09-12 18:57:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64276", "9", "2017-09-12 18:57:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64277", "10", "2017-09-12 18:57:33", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64278", "15", "2017-09-12 18:57:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64279", "8", "2017-09-12 19:14:50", "185.13.202.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("64280", "3", "2017-09-12 19:14:58", "185.13.202.215", "4");
INSERT INTO `wp_gf_form_view` VALUES("64281", "3", "2017-09-12 20:14:40", "157.55.39.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("64282", "8", "2017-09-12 22:15:05", "173.183.79.145", "5");
INSERT INTO `wp_gf_form_view` VALUES("64283", "3", "2017-09-12 22:59:34", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64284", "6", "2017-09-12 22:59:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64285", "9", "2017-09-12 22:59:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64286", "10", "2017-09-12 22:59:40", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64287", "15", "2017-09-12 22:59:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64288", "6", "2017-09-12 23:22:43", "207.46.13.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("64289", "3", "2017-09-12 23:45:01", "180.76.15.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("64290", "3", "2017-09-13 02:46:26", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64291", "6", "2017-09-13 02:46:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64292", "9", "2017-09-13 02:46:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64293", "8", "2017-09-13 02:46:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64294", "10", "2017-09-13 02:46:30", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64295", "15", "2017-09-13 02:46:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64296", "14", "2017-09-13 02:58:02", "139.59.243.186", "2");
INSERT INTO `wp_gf_form_view` VALUES("64297", "3", "2017-09-13 03:09:53", "217.182.132.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("64298", "8", "2017-09-13 04:07:05", "109.102.111.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("64299", "3", "2017-09-13 04:07:13", "109.102.111.89", "3");
INSERT INTO `wp_gf_form_view` VALUES("64300", "10", "2017-09-13 04:13:00", "72.14.199.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("64301", "3", "2017-09-13 06:29:01", "180.76.15.7", "30");
INSERT INTO `wp_gf_form_view` VALUES("64302", "6", "2017-09-13 06:36:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64303", "9", "2017-09-13 06:36:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64304", "8", "2017-09-13 06:36:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64305", "10", "2017-09-13 06:36:56", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64306", "15", "2017-09-13 06:36:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64307", "9", "2017-09-13 07:09:13", "157.55.39.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("64308", "15", "2017-09-13 08:08:58", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("64309", "3", "2017-09-13 08:10:29", "157.55.39.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("64310", "10", "2017-09-13 08:13:26", "157.55.39.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("64311", "3", "2017-09-13 10:27:24", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64312", "6", "2017-09-13 10:27:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64313", "9", "2017-09-13 10:27:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64314", "8", "2017-09-13 10:27:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64315", "10", "2017-09-13 10:27:28", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64316", "15", "2017-09-13 10:27:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64317", "14", "2017-09-13 10:46:47", "24.68.142.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("64318", "3", "2017-09-13 11:48:29", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("64319", "3", "2017-09-13 14:25:56", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("64320", "6", "2017-09-13 14:25:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64321", "9", "2017-09-13 14:25:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64322", "8", "2017-09-13 14:25:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64323", "10", "2017-09-13 14:25:59", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64324", "15", "2017-09-13 14:26:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64325", "8", "2017-09-13 15:09:39", "173.183.79.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("64326", "14", "2017-09-13 15:48:31", "209.52.88.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("64327", "8", "2017-09-13 16:46:08", "96.50.18.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("64328", "3", "2017-09-13 16:51:07", "46.229.168.75", "4");
INSERT INTO `wp_gf_form_view` VALUES("64329", "10", "2017-09-13 16:53:28", "46.229.168.74", "7");
INSERT INTO `wp_gf_form_view` VALUES("64330", "15", "2017-09-13 16:53:51", "46.229.168.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("64331", "6", "2017-09-13 16:58:30", "46.229.168.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("64332", "10", "2017-09-13 17:01:22", "46.229.168.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("64333", "3", "2017-09-13 17:02:38", "46.229.168.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("64334", "14", "2017-09-13 17:47:59", "50.2.36.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("64335", "3", "2017-09-13 18:32:34", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64336", "6", "2017-09-13 18:32:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64337", "9", "2017-09-13 18:32:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64338", "8", "2017-09-13 18:32:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64339", "10", "2017-09-13 18:32:38", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64340", "15", "2017-09-13 18:32:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64341", "10", "2017-09-13 19:38:16", "162.210.196.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("64342", "14", "2017-09-13 20:12:31", "193.17.219.35", "6");
INSERT INTO `wp_gf_form_view` VALUES("64343", "3", "2017-09-13 20:12:41", "193.17.219.35", "10");
INSERT INTO `wp_gf_form_view` VALUES("64344", "10", "2017-09-13 20:17:18", "72.14.199.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("64345", "6", "2017-09-13 20:50:15", "159.203.110.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("64346", "9", "2017-09-13 20:57:31", "159.203.110.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("64347", "15", "2017-09-13 20:59:58", "159.203.110.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("64348", "10", "2017-09-13 21:04:03", "159.203.110.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("64349", "3", "2017-09-13 21:04:12", "159.203.110.32", "25");
INSERT INTO `wp_gf_form_view` VALUES("64350", "14", "2017-09-13 21:17:10", "196.19.112.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("64351", "8", "2017-09-13 21:25:41", "159.203.110.32", "2");
INSERT INTO `wp_gf_form_view` VALUES("64352", "3", "2017-09-13 22:03:34", "45.35.255.17", "31");
INSERT INTO `wp_gf_form_view` VALUES("64353", "6", "2017-09-13 22:19:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64354", "9", "2017-09-13 22:19:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64355", "8", "2017-09-13 22:19:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64356", "10", "2017-09-13 22:19:14", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64357", "15", "2017-09-13 22:19:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64358", "8", "2017-09-13 23:09:27", "24.69.176.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("64359", "3", "2017-09-13 23:26:00", "198.245.115.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("64360", "14", "2017-09-13 23:48:30", "190.112.201.12", "3");
INSERT INTO `wp_gf_form_view` VALUES("64361", "3", "2017-09-14 01:39:44", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("64362", "3", "2017-09-14 02:12:36", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64363", "6", "2017-09-14 02:12:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64364", "9", "2017-09-14 02:12:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64365", "8", "2017-09-14 02:12:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64366", "10", "2017-09-14 02:12:39", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64367", "15", "2017-09-14 02:12:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64368", "10", "2017-09-14 03:37:51", "217.182.132.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("64369", "3", "2017-09-14 06:05:59", "52.88.109.3", "29");
INSERT INTO `wp_gf_form_view` VALUES("64370", "6", "2017-09-14 06:06:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64371", "9", "2017-09-14 06:06:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64372", "8", "2017-09-14 06:06:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64373", "10", "2017-09-14 06:06:02", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64374", "15", "2017-09-14 06:06:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64375", "11", "2017-09-14 07:12:42", "157.55.39.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("64376", "8", "2017-09-14 07:46:00", "167.114.181.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("64377", "3", "2017-09-14 07:46:15", "167.114.181.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("64378", "9", "2017-09-14 07:54:46", "157.55.39.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("64379", "3", "2017-09-14 08:05:22", "207.46.13.147", "10");
INSERT INTO `wp_gf_form_view` VALUES("64380", "10", "2017-09-14 08:05:29", "157.55.39.89", "3");
INSERT INTO `wp_gf_form_view` VALUES("64381", "11", "2017-09-14 08:06:05", "157.55.39.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("64382", "9", "2017-09-14 08:06:14", "207.46.13.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("64383", "3", "2017-09-14 09:53:57", "41.251.91.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("64384", "3", "2017-09-14 10:05:03", "52.88.109.3", "60");
INSERT INTO `wp_gf_form_view` VALUES("64385", "6", "2017-09-14 10:05:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64386", "9", "2017-09-14 10:05:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64387", "8", "2017-09-14 10:05:05", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64388", "10", "2017-09-14 10:05:06", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("64389", "15", "2017-09-14 10:05:09", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64390", "14", "2017-09-14 10:40:21", "131.153.28.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("64391", "10", "2017-09-14 11:03:22", "51.255.66.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("64392", "3", "2017-09-14 11:14:58", "180.76.15.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("64393", "3", "2017-09-14 12:12:32", "66.249.79.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("64394", "3", "2017-09-14 13:26:48", "46.161.9.59", "32");
INSERT INTO `wp_gf_form_view` VALUES("64395", "6", "2017-09-14 13:54:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64396", "9", "2017-09-14 13:54:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64397", "8", "2017-09-14 13:54:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64398", "10", "2017-09-14 13:54:31", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64399", "15", "2017-09-14 13:54:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64400", "3", "2017-09-14 14:01:41", "180.76.15.31", "2");
INSERT INTO `wp_gf_form_view` VALUES("64401", "8", "2017-09-14 15:55:25", "24.108.29.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("64402", "3", "2017-09-14 16:14:58", "180.76.15.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("64403", "3", "2017-09-14 17:16:08", "209.52.88.31", "61");
INSERT INTO `wp_gf_form_view` VALUES("64404", "6", "2017-09-14 17:49:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64405", "9", "2017-09-14 17:49:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64406", "8", "2017-09-14 17:49:58", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64407", "10", "2017-09-14 17:49:59", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("64408", "15", "2017-09-14 17:50:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64409", "9", "2017-09-14 18:28:24", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("64410", "3", "2017-09-14 19:01:48", "180.76.15.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("64411", "10", "2017-09-14 20:35:44", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("64412", "3", "2017-09-14 20:36:38", "108.180.177.111", "5");
INSERT INTO `wp_gf_form_view` VALUES("64413", "14", "2017-09-14 21:01:22", "177.180.173.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("64414", "3", "2017-09-14 21:47:27", "52.88.109.3", "30");
INSERT INTO `wp_gf_form_view` VALUES("64415", "6", "2017-09-14 21:47:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64416", "9", "2017-09-14 21:47:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64417", "8", "2017-09-14 21:47:30", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64418", "10", "2017-09-14 21:47:30", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64419", "15", "2017-09-14 21:47:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64420", "10", "2017-09-14 22:01:10", "178.208.12.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64421", "3", "2017-09-14 23:20:14", "70.66.168.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("64422", "8", "2017-09-14 23:26:03", "24.108.184.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("64423", "3", "2017-09-15 00:00:54", "70.66.190.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("64424", "11", "2017-09-15 00:38:43", "77.75.76.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("64425", "3", "2017-09-15 01:43:56", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64426", "6", "2017-09-15 01:43:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64427", "9", "2017-09-15 01:43:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64428", "8", "2017-09-15 01:43:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64429", "10", "2017-09-15 01:43:59", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64430", "15", "2017-09-15 01:44:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64431", "3", "2017-09-15 03:07:56", "180.76.15.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("64432", "3", "2017-09-15 04:07:39", "66.249.79.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("64433", "10", "2017-09-15 04:43:38", "51.255.65.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("64434", "3", "2017-09-15 05:16:18", "99.199.3.13", "35");
INSERT INTO `wp_gf_form_view` VALUES("64435", "6", "2017-09-15 05:36:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64436", "9", "2017-09-15 05:36:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64437", "8", "2017-09-15 05:36:22", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64438", "10", "2017-09-15 05:36:23", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64439", "15", "2017-09-15 05:36:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64440", "14", "2017-09-15 06:03:51", "100.35.47.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("64441", "8", "2017-09-15 06:07:20", "100.35.47.77", "17");
INSERT INTO `wp_gf_form_view` VALUES("64442", "3", "2017-09-15 06:07:27", "100.35.47.77", "244");
INSERT INTO `wp_gf_form_view` VALUES("64443", "9", "2017-09-15 06:12:20", "100.35.47.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("64444", "6", "2017-09-15 06:13:18", "100.35.47.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("64445", "10", "2017-09-15 06:13:49", "100.35.47.77", "41");
INSERT INTO `wp_gf_form_view` VALUES("64446", "15", "2017-09-15 06:14:17", "100.35.47.77", "12");
INSERT INTO `wp_gf_form_view` VALUES("64447", "3", "2017-09-15 08:44:15", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("64448", "3", "2017-09-15 09:28:54", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("64449", "6", "2017-09-15 09:28:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64450", "9", "2017-09-15 09:28:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64451", "8", "2017-09-15 09:28:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64452", "10", "2017-09-15 09:28:57", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64453", "15", "2017-09-15 09:28:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64454", "3", "2017-09-15 10:15:58", "180.76.15.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("64455", "3", "2017-09-15 11:26:25", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("64456", "12", "2017-09-15 11:39:44", "157.55.39.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("64457", "3", "2017-09-15 13:28:39", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("64458", "6", "2017-09-15 13:28:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64459", "9", "2017-09-15 13:28:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64460", "8", "2017-09-15 13:28:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64461", "10", "2017-09-15 13:28:41", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64462", "15", "2017-09-15 13:28:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64463", "3", "2017-09-15 14:00:27", "167.114.172.229", "42");
INSERT INTO `wp_gf_form_view` VALUES("64464", "8", "2017-09-15 14:00:43", "167.114.172.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("64465", "14", "2017-09-15 14:01:38", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("64466", "10", "2017-09-15 14:03:11", "167.114.172.229", "6");
INSERT INTO `wp_gf_form_view` VALUES("64467", "15", "2017-09-15 14:07:19", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("64468", "9", "2017-09-15 14:09:50", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("64469", "6", "2017-09-15 14:11:00", "167.114.172.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("64470", "3", "2017-09-15 15:48:23", "180.76.15.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("64471", "3", "2017-09-15 17:15:31", "66.249.66.213", "38");
INSERT INTO `wp_gf_form_view` VALUES("64472", "6", "2017-09-15 17:28:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64473", "9", "2017-09-15 17:28:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64474", "8", "2017-09-15 17:28:13", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("64475", "10", "2017-09-15 17:28:14", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64476", "15", "2017-09-15 17:28:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64477", "3", "2017-09-15 18:58:07", "207.6.150.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("64478", "15", "2017-09-15 19:07:35", "66.249.66.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("64479", "3", "2017-09-15 20:15:58", "173.212.223.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("64480", "10", "2017-09-15 21:12:25", "164.132.161.55", "6");
INSERT INTO `wp_gf_form_view` VALUES("64481", "3", "2017-09-15 21:15:41", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("64482", "6", "2017-09-15 21:15:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64483", "9", "2017-09-15 21:15:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64484", "8", "2017-09-15 21:15:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64485", "15", "2017-09-15 21:15:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64486", "14", "2017-09-15 22:04:04", "184.71.26.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("64487", "3", "2017-09-15 22:15:02", "24.68.248.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("64488", "10", "2017-09-15 23:48:17", "66.249.92.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("64489", "3", "2017-09-16 00:59:34", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64490", "6", "2017-09-16 00:59:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64491", "9", "2017-09-16 00:59:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64492", "8", "2017-09-16 00:59:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64493", "10", "2017-09-16 00:59:36", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64494", "15", "2017-09-16 00:59:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64495", "3", "2017-09-16 04:48:48", "207.46.13.53", "33");
INSERT INTO `wp_gf_form_view` VALUES("64496", "6", "2017-09-16 04:52:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64497", "9", "2017-09-16 04:52:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64498", "8", "2017-09-16 04:52:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64499", "10", "2017-09-16 04:52:02", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64500", "15", "2017-09-16 04:52:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64501", "10", "2017-09-16 05:35:30", "66.249.66.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("64502", "3", "2017-09-16 06:01:45", "178.63.1.153", "12");
INSERT INTO `wp_gf_form_view` VALUES("64503", "8", "2017-09-16 06:04:10", "178.63.1.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("64504", "10", "2017-09-16 06:29:14", "157.55.39.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("64505", "11", "2017-09-16 06:29:38", "157.55.39.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("64506", "9", "2017-09-16 06:30:26", "157.55.39.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("64507", "3", "2017-09-16 07:21:27", "180.76.15.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("64508", "14", "2017-09-16 07:41:32", "40.77.167.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("64509", "3", "2017-09-16 08:16:52", "157.55.39.10", "65");
INSERT INTO `wp_gf_form_view` VALUES("64510", "6", "2017-09-16 08:50:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64511", "9", "2017-09-16 08:50:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64512", "8", "2017-09-16 08:50:04", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64513", "10", "2017-09-16 08:50:05", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("64514", "15", "2017-09-16 08:50:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64515", "3", "2017-09-16 10:30:42", "66.249.66.215", "2");
INSERT INTO `wp_gf_form_view` VALUES("64516", "15", "2017-09-16 11:54:37", "40.77.167.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("64517", "3", "2017-09-16 12:41:56", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64518", "6", "2017-09-16 12:41:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64519", "9", "2017-09-16 12:41:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64520", "8", "2017-09-16 12:41:59", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64521", "10", "2017-09-16 12:41:59", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64522", "15", "2017-09-16 12:42:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64523", "10", "2017-09-16 13:41:58", "66.249.92.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("64524", "10", "2017-09-16 14:47:42", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("64525", "14", "2017-09-16 14:57:34", "138.128.226.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("64526", "3", "2017-09-16 15:13:11", "157.55.39.10", "2");
INSERT INTO `wp_gf_form_view` VALUES("64527", "10", "2017-09-16 16:02:59", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("64528", "3", "2017-09-16 16:19:52", "157.55.39.71", "34");
INSERT INTO `wp_gf_form_view` VALUES("64529", "6", "2017-09-16 16:35:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64530", "9", "2017-09-16 16:35:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64531", "8", "2017-09-16 16:35:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64532", "15", "2017-09-16 16:35:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64533", "3", "2017-09-16 17:20:35", "189.100.8.192", "2");
INSERT INTO `wp_gf_form_view` VALUES("64534", "8", "2017-09-16 17:45:31", "24.69.15.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("64535", "9", "2017-09-16 18:04:29", "180.76.15.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("64536", "10", "2017-09-16 18:24:44", "157.55.39.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("64537", "14", "2017-09-16 18:50:01", "184.66.229.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("64538", "14", "2017-09-16 19:36:17", "96.50.117.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("64539", "3", "2017-09-16 20:28:31", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64540", "6", "2017-09-16 20:28:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64541", "9", "2017-09-16 20:28:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64542", "8", "2017-09-16 20:28:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64543", "10", "2017-09-16 20:28:34", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64544", "15", "2017-09-16 20:28:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64545", "3", "2017-09-16 22:03:48", "180.76.15.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("64546", "8", "2017-09-16 22:11:09", "70.67.107.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("64547", "3", "2017-09-16 23:03:16", "217.27.220.88", "11");
INSERT INTO `wp_gf_form_view` VALUES("64548", "8", "2017-09-16 23:04:14", "217.27.220.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("64549", "14", "2017-09-16 23:05:02", "217.27.220.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("64550", "3", "2017-09-17 00:21:23", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64551", "6", "2017-09-17 00:21:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64552", "9", "2017-09-17 00:21:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64553", "8", "2017-09-17 00:21:25", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64554", "10", "2017-09-17 00:21:26", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64555", "15", "2017-09-17 00:21:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64556", "10", "2017-09-17 03:27:48", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("64557", "3", "2017-09-17 03:38:43", "109.102.111.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("64558", "14", "2017-09-17 03:39:25", "109.102.111.87", "2");
INSERT INTO `wp_gf_form_view` VALUES("64559", "3", "2017-09-17 04:10:08", "5.255.250.107", "33");
INSERT INTO `wp_gf_form_view` VALUES("64560", "6", "2017-09-17 04:16:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64561", "9", "2017-09-17 04:16:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64562", "8", "2017-09-17 04:16:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64563", "10", "2017-09-17 04:16:08", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64564", "15", "2017-09-17 04:16:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64565", "14", "2017-09-17 04:40:39", "64.114.250.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("64566", "8", "2017-09-17 05:32:04", "70.67.196.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("64567", "3", "2017-09-17 06:24:29", "180.76.15.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("64568", "3", "2017-09-17 08:10:51", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64569", "6", "2017-09-17 08:10:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64570", "9", "2017-09-17 08:10:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64571", "8", "2017-09-17 08:10:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64572", "10", "2017-09-17 08:10:54", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64573", "15", "2017-09-17 08:10:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64574", "8", "2017-09-17 09:17:53", "12.202.16.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("64575", "3", "2017-09-17 09:18:01", "12.202.16.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("64576", "10", "2017-09-17 12:00:13", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("64577", "3", "2017-09-17 12:05:58", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64578", "6", "2017-09-17 12:05:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64579", "9", "2017-09-17 12:05:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64580", "8", "2017-09-17 12:06:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64581", "15", "2017-09-17 12:06:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64582", "14", "2017-09-17 15:00:24", "180.76.15.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("64583", "3", "2017-09-17 15:53:42", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64584", "6", "2017-09-17 15:53:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64585", "9", "2017-09-17 15:53:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64586", "8", "2017-09-17 15:53:44", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64587", "10", "2017-09-17 15:53:45", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64588", "15", "2017-09-17 15:53:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64589", "10", "2017-09-17 16:00:24", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("64590", "10", "2017-09-17 18:46:30", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("64591", "10", "2017-09-17 19:26:48", "24.108.13.92", "7");
INSERT INTO `wp_gf_form_view` VALUES("64592", "3", "2017-09-17 19:45:33", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64593", "6", "2017-09-17 19:45:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64594", "9", "2017-09-17 19:45:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64595", "8", "2017-09-17 19:45:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64596", "15", "2017-09-17 19:45:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64597", "14", "2017-09-17 20:41:24", "91.198.127.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("64598", "3", "2017-09-17 20:41:59", "185.101.69.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("64599", "14", "2017-09-17 22:11:54", "24.108.166.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("64600", "8", "2017-09-17 22:33:03", "207.46.13.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("64601", "3", "2017-09-17 23:40:26", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64602", "6", "2017-09-17 23:40:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64603", "9", "2017-09-17 23:40:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64604", "8", "2017-09-17 23:40:30", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64605", "10", "2017-09-17 23:40:30", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64606", "15", "2017-09-17 23:40:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64607", "14", "2017-09-18 03:27:23", "107.150.74.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("64608", "3", "2017-09-18 03:28:10", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64609", "6", "2017-09-18 03:28:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64610", "9", "2017-09-18 03:28:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64611", "8", "2017-09-18 03:28:13", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64612", "10", "2017-09-18 03:28:14", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64613", "15", "2017-09-18 03:28:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64614", "3", "2017-09-18 04:08:20", "51.255.65.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("64615", "14", "2017-09-18 04:30:27", "94.75.13.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("64616", "3", "2017-09-18 05:17:18", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("64617", "14", "2017-09-18 05:55:11", "207.6.123.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("64618", "10", "2017-09-18 06:45:20", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("64619", "3", "2017-09-18 07:18:07", "66.249.79.133", "66");
INSERT INTO `wp_gf_form_view` VALUES("64620", "6", "2017-09-18 07:20:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64621", "9", "2017-09-18 07:20:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64622", "8", "2017-09-18 07:20:02", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64623", "10", "2017-09-18 07:20:03", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("64624", "15", "2017-09-18 07:20:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64625", "10", "2017-09-18 10:11:09", "180.76.15.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("64626", "14", "2017-09-18 10:44:27", "180.76.15.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("64627", "14", "2017-09-18 11:06:14", "198.46.210.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("64628", "3", "2017-09-18 11:14:12", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64629", "6", "2017-09-18 11:14:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64630", "9", "2017-09-18 11:14:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64631", "8", "2017-09-18 11:14:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64632", "10", "2017-09-18 11:14:15", "52.88.109.3", "7");
INSERT INTO `wp_gf_form_view` VALUES("64633", "15", "2017-09-18 11:14:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64634", "10", "2017-09-18 14:07:45", "66.249.79.133", "11");
INSERT INTO `wp_gf_form_view` VALUES("64635", "3", "2017-09-18 14:17:15", "46.229.168.70", "10");
INSERT INTO `wp_gf_form_view` VALUES("64636", "3", "2017-09-18 15:16:33", "40.77.167.27", "33");
INSERT INTO `wp_gf_form_view` VALUES("64637", "6", "2017-09-18 15:17:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64638", "9", "2017-09-18 15:17:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64639", "8", "2017-09-18 15:17:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64640", "10", "2017-09-18 15:17:52", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64641", "15", "2017-09-18 15:17:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64642", "10", "2017-09-18 16:28:32", "51.255.71.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("64643", "3", "2017-09-18 16:36:43", "142.104.19.218", "1");
INSERT INTO `wp_gf_form_view` VALUES("64644", "3", "2017-09-18 17:18:44", "40.77.167.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("64645", "10", "2017-09-18 17:44:32", "40.77.167.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("64646", "3", "2017-09-18 19:10:53", "66.249.79.137", "33");
INSERT INTO `wp_gf_form_view` VALUES("64647", "6", "2017-09-18 19:22:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64648", "9", "2017-09-18 19:22:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64649", "8", "2017-09-18 19:22:18", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("64650", "10", "2017-09-18 19:22:18", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64651", "15", "2017-09-18 19:22:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64652", "3", "2017-09-18 20:24:05", "184.66.49.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("64653", "8", "2017-09-18 21:30:24", "24.108.184.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("64654", "10", "2017-09-18 22:19:56", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("64655", "3", "2017-09-18 22:22:33", "69.196.72.126", "8");
INSERT INTO `wp_gf_form_view` VALUES("64656", "8", "2017-09-18 22:58:14", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("64657", "3", "2017-09-18 23:15:38", "151.80.31.154", "33");
INSERT INTO `wp_gf_form_view` VALUES("64658", "6", "2017-09-18 23:22:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64659", "9", "2017-09-18 23:22:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64660", "8", "2017-09-18 23:22:13", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64661", "10", "2017-09-18 23:22:14", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64662", "15", "2017-09-18 23:22:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64663", "3", "2017-09-19 00:35:52", "151.80.31.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("64664", "8", "2017-09-19 00:56:23", "184.66.18.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("64665", "3", "2017-09-19 01:02:11", "184.66.18.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("64666", "8", "2017-09-19 01:40:42", "151.80.31.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("64667", "3", "2017-09-19 03:21:34", "52.88.109.3", "45");
INSERT INTO `wp_gf_form_view` VALUES("64668", "6", "2017-09-19 03:21:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64669", "9", "2017-09-19 03:21:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64670", "8", "2017-09-19 03:21:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64671", "10", "2017-09-19 03:21:36", "52.88.109.3", "8");
INSERT INTO `wp_gf_form_view` VALUES("64672", "15", "2017-09-19 03:21:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64673", "11", "2017-09-19 03:57:37", "40.77.167.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("64674", "3", "2017-09-19 04:27:22", "24.68.248.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("64675", "14", "2017-09-19 04:41:10", "184.66.150.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("64676", "8", "2017-09-19 05:24:25", "158.69.27.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("64677", "3", "2017-09-19 05:24:34", "158.69.27.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("64678", "3", "2017-09-19 07:20:32", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64679", "6", "2017-09-19 07:20:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64680", "9", "2017-09-19 07:20:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64681", "8", "2017-09-19 07:20:34", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64682", "10", "2017-09-19 07:20:35", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64683", "15", "2017-09-19 07:20:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64684", "3", "2017-09-19 08:21:13", "68.180.230.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("64685", "3", "2017-09-19 09:15:19", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("64686", "10", "2017-09-19 10:40:15", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("64687", "10", "2017-09-19 11:06:36", "180.76.15.27", "6");
INSERT INTO `wp_gf_form_view` VALUES("64688", "3", "2017-09-19 11:15:40", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("64689", "6", "2017-09-19 11:15:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64690", "9", "2017-09-19 11:15:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64691", "8", "2017-09-19 11:15:42", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64692", "15", "2017-09-19 11:15:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64693", "3", "2017-09-19 13:42:31", "173.44.222.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("64694", "10", "2017-09-19 13:51:13", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("64695", "10", "2017-09-19 14:10:06", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("64696", "3", "2017-09-19 15:11:41", "52.88.109.3", "37");
INSERT INTO `wp_gf_form_view` VALUES("64697", "6", "2017-09-19 15:11:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64698", "9", "2017-09-19 15:11:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64699", "8", "2017-09-19 15:11:44", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("64700", "10", "2017-09-19 15:11:44", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64701", "15", "2017-09-19 15:11:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64702", "8", "2017-09-19 17:24:59", "154.20.4.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("64703", "10", "2017-09-19 18:19:59", "180.76.15.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("64704", "3", "2017-09-19 19:08:00", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("64705", "6", "2017-09-19 19:08:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64706", "9", "2017-09-19 19:08:02", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64707", "8", "2017-09-19 19:08:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64708", "10", "2017-09-19 19:08:03", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64709", "15", "2017-09-19 19:08:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64710", "3", "2017-09-19 20:35:29", "134.87.168.2", "10");
INSERT INTO `wp_gf_form_view` VALUES("64711", "8", "2017-09-19 20:43:40", "104.254.244.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("64712", "3", "2017-09-19 21:37:13", "70.67.107.36", "2");
INSERT INTO `wp_gf_form_view` VALUES("64713", "8", "2017-09-19 21:38:35", "70.67.107.36", "7");
INSERT INTO `wp_gf_form_view` VALUES("64714", "3", "2017-09-19 23:10:54", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64715", "6", "2017-09-19 23:10:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64716", "9", "2017-09-19 23:10:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64717", "8", "2017-09-19 23:10:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64718", "10", "2017-09-19 23:10:57", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64719", "15", "2017-09-19 23:10:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64720", "14", "2017-09-20 00:36:37", "192.36.168.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("64721", "3", "2017-09-20 02:07:08", "51.255.71.123", "7");
INSERT INTO `wp_gf_form_view` VALUES("64722", "10", "2017-09-20 02:10:05", "72.14.199.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("64723", "14", "2017-09-20 02:22:06", "108.180.146.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("64724", "3", "2017-09-20 03:10:58", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64725", "6", "2017-09-20 03:10:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64726", "9", "2017-09-20 03:10:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64727", "8", "2017-09-20 03:11:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64728", "10", "2017-09-20 03:11:01", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64729", "15", "2017-09-20 03:11:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64730", "14", "2017-09-20 04:13:41", "108.180.145.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("64731", "10", "2017-09-20 06:33:00", "178.208.12.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("64732", "3", "2017-09-20 07:06:09", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("64733", "6", "2017-09-20 07:06:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64734", "9", "2017-09-20 07:06:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64735", "8", "2017-09-20 07:06:11", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64736", "10", "2017-09-20 07:06:12", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64737", "15", "2017-09-20 07:06:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64738", "14", "2017-09-20 07:33:08", "51.255.65.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("64739", "14", "2017-09-20 09:38:03", "178.216.49.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("64740", "3", "2017-09-20 09:38:15", "178.216.49.178", "2");
INSERT INTO `wp_gf_form_view` VALUES("64741", "3", "2017-09-20 10:30:49", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("64742", "3", "2017-09-20 11:15:03", "52.88.109.3", "65");
INSERT INTO `wp_gf_form_view` VALUES("64743", "6", "2017-09-20 11:15:03", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64744", "9", "2017-09-20 11:15:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64745", "8", "2017-09-20 11:15:05", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64746", "10", "2017-09-20 11:15:06", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("64747", "15", "2017-09-20 11:15:10", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64748", "14", "2017-09-20 11:19:18", "91.108.177.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("64749", "3", "2017-09-20 12:31:04", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("64750", "10", "2017-09-20 14:08:48", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("64751", "8", "2017-09-20 14:11:04", "180.76.15.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("64752", "10", "2017-09-20 15:14:34", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("64753", "3", "2017-09-20 15:20:59", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64754", "6", "2017-09-20 15:20:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64755", "9", "2017-09-20 15:21:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64756", "8", "2017-09-20 15:21:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64757", "15", "2017-09-20 15:21:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64758", "3", "2017-09-20 16:24:21", "180.76.15.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("64759", "3", "2017-09-20 17:31:05", "180.76.15.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("64760", "8", "2017-09-20 17:49:08", "154.20.7.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("64761", "3", "2017-09-20 18:35:17", "70.66.175.202", "3");
INSERT INTO `wp_gf_form_view` VALUES("64762", "8", "2017-09-20 18:46:16", "70.66.175.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("64763", "3", "2017-09-20 19:25:54", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("64764", "6", "2017-09-20 19:25:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64765", "9", "2017-09-20 19:25:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64766", "8", "2017-09-20 19:25:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64767", "10", "2017-09-20 19:25:57", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64768", "15", "2017-09-20 19:25:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64769", "14", "2017-09-20 22:04:57", "184.69.11.186", "3");
INSERT INTO `wp_gf_form_view` VALUES("64770", "3", "2017-09-20 22:31:04", "180.76.15.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("64771", "8", "2017-09-20 23:17:06", "104.254.247.188", "4");
INSERT INTO `wp_gf_form_view` VALUES("64772", "3", "2017-09-20 23:17:24", "104.254.247.188", "37");
INSERT INTO `wp_gf_form_view` VALUES("64773", "6", "2017-09-20 23:27:13", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64774", "9", "2017-09-20 23:27:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64775", "10", "2017-09-20 23:27:18", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64776", "15", "2017-09-20 23:27:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64777", "11", "2017-09-21 00:41:26", "182.74.164.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("64778", "3", "2017-09-21 01:25:11", "51.255.71.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("64779", "14", "2017-09-21 02:33:22", "36.67.78.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("64780", "3", "2017-09-21 02:33:45", "36.67.78.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("64781", "3", "2017-09-21 03:28:40", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64782", "6", "2017-09-21 03:28:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64783", "9", "2017-09-21 03:28:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64784", "8", "2017-09-21 03:28:43", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64785", "10", "2017-09-21 03:28:43", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64786", "15", "2017-09-21 03:28:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64787", "3", "2017-09-21 04:08:37", "207.46.13.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("64788", "8", "2017-09-21 05:16:44", "154.20.4.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("64789", "3", "2017-09-21 06:33:43", "91.121.97.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("64790", "3", "2017-09-21 07:29:29", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64791", "6", "2017-09-21 07:29:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64792", "9", "2017-09-21 07:29:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64793", "8", "2017-09-21 07:29:32", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64794", "10", "2017-09-21 07:29:32", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64795", "15", "2017-09-21 07:29:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64796", "3", "2017-09-21 10:19:49", "180.76.15.21", "5");
INSERT INTO `wp_gf_form_view` VALUES("64797", "12", "2017-09-21 10:53:11", "180.76.15.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("64798", "14", "2017-09-21 10:54:36", "191.96.247.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("64799", "3", "2017-09-21 11:24:52", "52.88.109.3", "66");
INSERT INTO `wp_gf_form_view` VALUES("64800", "6", "2017-09-21 11:24:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64801", "9", "2017-09-21 11:24:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64802", "8", "2017-09-21 11:24:54", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64803", "10", "2017-09-21 11:24:55", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("64804", "15", "2017-09-21 11:24:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64805", "3", "2017-09-21 12:27:58", "157.55.39.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("64806", "3", "2017-09-21 13:06:29", "180.76.15.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("64807", "3", "2017-09-21 14:13:09", "180.76.15.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("64808", "3", "2017-09-21 15:25:54", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64809", "6", "2017-09-21 15:25:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64810", "9", "2017-09-21 15:25:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64811", "8", "2017-09-21 15:25:56", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64812", "10", "2017-09-21 15:25:57", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64813", "15", "2017-09-21 15:25:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64814", "3", "2017-09-21 16:30:27", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("64815", "10", "2017-09-21 16:45:51", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("64816", "3", "2017-09-21 17:13:29", "194.187.170.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("64817", "10", "2017-09-21 17:33:12", "180.76.15.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("64818", "3", "2017-09-21 18:06:32", "180.76.15.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("64819", "10", "2017-09-21 19:13:12", "180.76.15.138", "6");
INSERT INTO `wp_gf_form_view` VALUES("64820", "3", "2017-09-21 19:23:39", "52.88.109.3", "35");
INSERT INTO `wp_gf_form_view` VALUES("64821", "6", "2017-09-21 19:23:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64822", "9", "2017-09-21 19:23:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64823", "8", "2017-09-21 19:23:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64824", "15", "2017-09-21 19:23:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64825", "3", "2017-09-21 20:14:59", "157.55.39.78", "13");
INSERT INTO `wp_gf_form_view` VALUES("64826", "14", "2017-09-21 20:27:35", "96.54.226.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("64827", "10", "2017-09-21 20:36:22", "157.55.39.78", "2");
INSERT INTO `wp_gf_form_view` VALUES("64828", "9", "2017-09-21 20:43:30", "157.55.39.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("64829", "8", "2017-09-21 20:43:57", "157.55.39.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("64830", "3", "2017-09-21 21:13:27", "157.55.39.67", "5");
INSERT INTO `wp_gf_form_view` VALUES("64831", "8", "2017-09-21 21:18:21", "157.55.39.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("64832", "10", "2017-09-21 21:18:26", "157.55.39.78", "3");
INSERT INTO `wp_gf_form_view` VALUES("64833", "3", "2017-09-21 22:07:33", "207.46.13.66", "9");
INSERT INTO `wp_gf_form_view` VALUES("64834", "10", "2017-09-21 22:07:53", "207.46.13.66", "7");
INSERT INTO `wp_gf_form_view` VALUES("64835", "14", "2017-09-21 22:17:35", "23.245.152.181", "5");
INSERT INTO `wp_gf_form_view` VALUES("64836", "8", "2017-09-21 22:26:11", "154.20.28.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("64837", "9", "2017-09-21 22:36:50", "157.55.39.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("64838", "3", "2017-09-21 23:26:44", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("64839", "6", "2017-09-21 23:26:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64840", "9", "2017-09-21 23:26:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64841", "8", "2017-09-21 23:26:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64842", "10", "2017-09-21 23:26:47", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64843", "15", "2017-09-21 23:26:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64844", "8", "2017-09-22 00:05:34", "208.123.8.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("64845", "3", "2017-09-22 00:05:50", "208.123.8.103", "7");
INSERT INTO `wp_gf_form_view` VALUES("64846", "10", "2017-09-22 00:18:12", "207.46.13.66", "4");
INSERT INTO `wp_gf_form_view` VALUES("64847", "3", "2017-09-22 01:16:24", "180.76.15.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("64848", "3", "2017-09-22 02:23:08", "180.76.15.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("64849", "3", "2017-09-22 03:29:13", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("64850", "6", "2017-09-22 03:29:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64851", "9", "2017-09-22 03:29:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64852", "8", "2017-09-22 03:29:15", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64853", "10", "2017-09-22 03:29:16", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64854", "15", "2017-09-22 03:29:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64855", "3", "2017-09-22 04:06:37", "136.243.59.237", "6");
INSERT INTO `wp_gf_form_view` VALUES("64856", "14", "2017-09-22 04:28:08", "96.54.63.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("64857", "10", "2017-09-22 05:10:27", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("64858", "14", "2017-09-22 05:50:54", "184.66.150.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("64859", "3", "2017-09-22 05:54:24", "209.52.88.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("64860", "3", "2017-09-22 07:11:05", "115.215.40.161", "35");
INSERT INTO `wp_gf_form_view` VALUES("64861", "6", "2017-09-22 07:24:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64862", "9", "2017-09-22 07:24:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64863", "8", "2017-09-22 07:24:42", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64864", "10", "2017-09-22 07:24:43", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64865", "15", "2017-09-22 07:24:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64866", "3", "2017-09-22 08:21:06", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("64867", "14", "2017-09-22 10:41:14", "77.75.76.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("64868", "3", "2017-09-22 10:54:02", "157.55.39.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("64869", "3", "2017-09-22 11:16:37", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("64870", "6", "2017-09-22 11:16:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64871", "9", "2017-09-22 11:16:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64872", "8", "2017-09-22 11:16:39", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64873", "10", "2017-09-22 11:16:39", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64874", "15", "2017-09-22 11:16:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64875", "10", "2017-09-22 13:27:17", "164.132.161.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("64876", "8", "2017-09-22 13:40:44", "12.202.16.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("64877", "3", "2017-09-22 13:40:55", "12.202.16.36", "6");
INSERT INTO `wp_gf_form_view` VALUES("64878", "3", "2017-09-22 15:04:55", "52.88.109.3", "64");
INSERT INTO `wp_gf_form_view` VALUES("64879", "6", "2017-09-22 15:04:55", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64880", "9", "2017-09-22 15:04:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64881", "8", "2017-09-22 15:04:57", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64882", "10", "2017-09-22 15:04:58", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("64883", "15", "2017-09-22 15:05:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64884", "5", "2017-09-22 15:57:56", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("64885", "8", "2017-09-22 17:00:00", "184.66.18.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("64886", "3", "2017-09-22 18:59:03", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64887", "6", "2017-09-22 18:59:03", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64888", "9", "2017-09-22 18:59:05", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64889", "8", "2017-09-22 18:59:05", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64890", "10", "2017-09-22 18:59:06", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64891", "15", "2017-09-22 18:59:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64892", "10", "2017-09-22 19:18:25", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("64893", "3", "2017-09-22 20:46:55", "207.46.13.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("64894", "8", "2017-09-22 20:50:32", "70.67.107.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("64895", "3", "2017-09-22 21:50:31", "180.76.15.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("64896", "3", "2017-09-22 22:13:53", "216.244.66.231", "41");
INSERT INTO `wp_gf_form_view` VALUES("64897", "10", "2017-09-22 22:25:36", "207.46.13.59", "6");
INSERT INTO `wp_gf_form_view` VALUES("64898", "15", "2017-09-22 22:25:36", "207.46.13.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("64899", "6", "2017-09-22 22:46:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64900", "9", "2017-09-22 22:46:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64901", "8", "2017-09-22 22:46:47", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("64902", "3", "2017-09-22 23:30:29", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("64903", "3", "2017-09-23 00:37:07", "180.76.15.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("64904", "10", "2017-09-23 01:04:30", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("64905", "3", "2017-09-23 02:12:11", "99.199.3.24", "34");
INSERT INTO `wp_gf_form_view` VALUES("64906", "6", "2017-09-23 02:33:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64907", "9", "2017-09-23 02:33:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64908", "8", "2017-09-23 02:33:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64909", "10", "2017-09-23 02:33:18", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64910", "15", "2017-09-23 02:33:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64911", "10", "2017-09-23 03:43:30", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("64912", "14", "2017-09-23 04:27:10", "198.20.181.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("64913", "3", "2017-09-23 04:27:16", "198.20.181.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("64914", "3", "2017-09-23 06:20:45", "52.88.109.3", "41");
INSERT INTO `wp_gf_form_view` VALUES("64915", "6", "2017-09-23 06:20:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64916", "9", "2017-09-23 06:20:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64917", "8", "2017-09-23 06:20:47", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("64918", "10", "2017-09-23 06:20:48", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64919", "15", "2017-09-23 06:20:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64920", "14", "2017-09-23 06:27:02", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("64921", "10", "2017-09-23 07:42:03", "180.76.15.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("64922", "3", "2017-09-23 09:27:08", "207.46.13.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("64923", "3", "2017-09-23 10:23:27", "194.187.170.104", "34");
INSERT INTO `wp_gf_form_view` VALUES("64924", "6", "2017-09-23 10:29:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64925", "9", "2017-09-23 10:29:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64926", "8", "2017-09-23 10:29:44", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64927", "10", "2017-09-23 10:29:45", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64928", "15", "2017-09-23 10:29:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64929", "10", "2017-09-23 11:09:33", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("64930", "3", "2017-09-23 11:31:26", "51.255.65.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("64931", "3", "2017-09-23 12:14:46", "46.229.168.65", "33");
INSERT INTO `wp_gf_form_view` VALUES("64932", "9", "2017-09-23 12:16:38", "46.229.168.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("64933", "10", "2017-09-23 12:18:29", "46.229.168.68", "5");
INSERT INTO `wp_gf_form_view` VALUES("64934", "8", "2017-09-23 12:19:31", "46.229.168.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("64935", "11", "2017-09-23 12:22:38", "46.229.168.65", "1");
INSERT INTO `wp_gf_form_view` VALUES("64936", "14", "2017-09-23 12:26:31", "46.229.168.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("64937", "6", "2017-09-23 12:28:21", "46.229.168.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("64938", "3", "2017-09-23 13:00:18", "80.211.130.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("64939", "10", "2017-09-23 13:10:18", "180.76.15.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("64940", "3", "2017-09-23 14:16:59", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("64941", "6", "2017-09-23 14:16:59", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64942", "9", "2017-09-23 14:17:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64943", "8", "2017-09-23 14:17:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64944", "10", "2017-09-23 14:17:02", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("64945", "15", "2017-09-23 14:17:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64946", "14", "2017-09-23 14:58:43", "196.196.37.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("64947", "3", "2017-09-23 16:26:20", "157.55.39.156", "11");
INSERT INTO `wp_gf_form_view` VALUES("64948", "14", "2017-09-23 16:33:57", "192.154.231.104", "3");
INSERT INTO `wp_gf_form_view` VALUES("64949", "6", "2017-09-23 16:46:40", "104.236.32.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("64950", "10", "2017-09-23 16:48:45", "104.236.32.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("64951", "9", "2017-09-23 16:53:01", "104.236.32.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("64952", "15", "2017-09-23 16:59:13", "104.236.32.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("64953", "3", "2017-09-23 17:01:26", "104.236.32.242", "22");
INSERT INTO `wp_gf_form_view` VALUES("64954", "10", "2017-09-23 17:03:17", "104.236.32.242", "3");
INSERT INTO `wp_gf_form_view` VALUES("64955", "8", "2017-09-23 17:21:31", "104.236.32.242", "2");
INSERT INTO `wp_gf_form_view` VALUES("64956", "3", "2017-09-23 18:12:32", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64957", "6", "2017-09-23 18:12:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64958", "9", "2017-09-23 18:12:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64959", "8", "2017-09-23 18:12:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64960", "10", "2017-09-23 18:12:38", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64961", "15", "2017-09-23 18:12:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64962", "10", "2017-09-23 20:25:05", "157.55.39.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("64963", "3", "2017-09-23 20:59:08", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("64964", "3", "2017-09-23 21:52:17", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64965", "6", "2017-09-23 21:52:18", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64966", "9", "2017-09-23 21:52:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64967", "8", "2017-09-23 21:52:19", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64968", "10", "2017-09-23 21:52:20", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64969", "15", "2017-09-23 21:52:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64970", "9", "2017-09-23 22:31:04", "207.46.13.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("64971", "3", "2017-09-23 22:31:14", "207.46.13.139", "29");
INSERT INTO `wp_gf_form_view` VALUES("64972", "8", "2017-09-23 22:32:33", "207.46.13.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("64973", "10", "2017-09-23 22:32:53", "207.46.13.140", "17");
INSERT INTO `wp_gf_form_view` VALUES("64974", "15", "2017-09-23 22:37:24", "157.55.39.96", "2");
INSERT INTO `wp_gf_form_view` VALUES("64975", "10", "2017-09-24 01:15:48", "72.14.199.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("64976", "3", "2017-09-24 01:39:06", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64977", "6", "2017-09-24 01:39:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64978", "9", "2017-09-24 01:39:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64979", "8", "2017-09-24 01:39:08", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64980", "15", "2017-09-24 01:39:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64981", "14", "2017-09-24 01:43:30", "155.94.221.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("64982", "10", "2017-09-24 02:10:21", "217.182.132.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("64983", "3", "2017-09-24 02:55:06", "217.182.88.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("64984", "10", "2017-09-24 04:41:41", "180.76.15.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("64985", "3", "2017-09-24 05:36:40", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("64986", "6", "2017-09-24 05:36:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64987", "9", "2017-09-24 05:36:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64988", "8", "2017-09-24 05:36:42", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64989", "10", "2017-09-24 05:36:42", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("64990", "15", "2017-09-24 05:36:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("64991", "3", "2017-09-24 06:18:37", "194.187.170.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("64992", "8", "2017-09-24 07:09:41", "51.255.65.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("64993", "3", "2017-09-24 07:55:26", "184.66.35.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("64994", "3", "2017-09-24 08:03:56", "180.76.15.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("64995", "3", "2017-09-24 09:10:36", "180.76.15.152", "65");
INSERT INTO `wp_gf_form_view` VALUES("64996", "6", "2017-09-24 09:29:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64997", "9", "2017-09-24 09:29:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("64998", "8", "2017-09-24 09:29:54", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("64999", "10", "2017-09-24 09:29:55", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("65000", "15", "2017-09-24 09:29:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65001", "3", "2017-09-24 10:18:53", "51.255.65.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("65002", "3", "2017-09-24 11:11:31", "207.46.13.63", "2");
INSERT INTO `wp_gf_form_view` VALUES("65003", "10", "2017-09-24 13:17:31", "51.255.65.49", "6");
INSERT INTO `wp_gf_form_view` VALUES("65004", "3", "2017-09-24 13:21:42", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65005", "6", "2017-09-24 13:21:42", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65006", "9", "2017-09-24 13:21:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65007", "8", "2017-09-24 13:21:44", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65008", "15", "2017-09-24 13:21:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65009", "10", "2017-09-24 14:55:56", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("65010", "10", "2017-09-24 15:16:48", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("65011", "3", "2017-09-24 15:37:57", "180.76.15.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("65012", "3", "2017-09-24 16:47:50", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("65013", "3", "2017-09-24 17:07:48", "217.182.132.83", "34");
INSERT INTO `wp_gf_form_view` VALUES("65014", "6", "2017-09-24 17:12:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65015", "9", "2017-09-24 17:12:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65016", "8", "2017-09-24 17:12:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65017", "10", "2017-09-24 17:12:27", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65018", "15", "2017-09-24 17:12:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65019", "3", "2017-09-24 19:01:51", "180.76.15.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("65020", "14", "2017-09-24 20:29:21", "107.150.73.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("65021", "3", "2017-09-24 20:54:24", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65022", "6", "2017-09-24 20:54:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65023", "9", "2017-09-24 20:54:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65024", "8", "2017-09-24 20:54:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65025", "10", "2017-09-24 20:54:27", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65026", "15", "2017-09-24 20:54:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65027", "8", "2017-09-24 21:25:22", "180.76.15.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("65028", "3", "2017-09-24 21:36:37", "24.68.40.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("65029", "10", "2017-09-24 22:32:05", "180.76.15.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("65030", "3", "2017-09-24 23:23:17", "64.180.207.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("65031", "3", "2017-09-25 00:45:50", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65032", "6", "2017-09-25 00:45:51", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65033", "9", "2017-09-25 00:45:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65034", "8", "2017-09-25 00:45:52", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65035", "10", "2017-09-25 00:45:53", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65036", "15", "2017-09-25 00:45:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65037", "3", "2017-09-25 01:15:27", "104.196.217.246", "6");
INSERT INTO `wp_gf_form_view` VALUES("65038", "8", "2017-09-25 01:20:51", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("65039", "10", "2017-09-25 03:02:19", "157.55.39.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("65040", "3", "2017-09-25 03:08:20", "180.76.15.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("65041", "8", "2017-09-25 03:25:01", "24.69.160.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("65042", "14", "2017-09-25 03:48:49", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("65043", "3", "2017-09-25 04:30:21", "180.76.15.160", "33");
INSERT INTO `wp_gf_form_view` VALUES("65044", "6", "2017-09-25 04:36:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65045", "9", "2017-09-25 04:36:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65046", "8", "2017-09-25 04:36:28", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65047", "10", "2017-09-25 04:36:29", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65048", "15", "2017-09-25 04:36:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65049", "3", "2017-09-25 05:55:40", "104.196.217.246", "9");
INSERT INTO `wp_gf_form_view` VALUES("65050", "14", "2017-09-25 05:56:37", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("65051", "10", "2017-09-25 05:59:06", "104.196.217.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("65052", "3", "2017-09-25 06:00:21", "104.196.217.246", "14");
INSERT INTO `wp_gf_form_view` VALUES("65053", "10", "2017-09-25 06:14:44", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("65054", "8", "2017-09-25 06:58:26", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("65055", "6", "2017-09-25 07:00:24", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("65056", "3", "2017-09-25 07:00:36", "104.196.183.13", "21");
INSERT INTO `wp_gf_form_view` VALUES("65057", "10", "2017-09-25 07:02:51", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("65058", "9", "2017-09-25 07:56:13", "104.196.167.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("65059", "3", "2017-09-25 08:37:04", "52.88.109.3", "40");
INSERT INTO `wp_gf_form_view` VALUES("65060", "6", "2017-09-25 08:37:04", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65061", "9", "2017-09-25 08:37:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65062", "8", "2017-09-25 08:37:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65063", "10", "2017-09-25 08:37:07", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65064", "15", "2017-09-25 08:37:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65065", "10", "2017-09-25 09:41:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("65066", "10", "2017-09-25 10:00:30", "157.55.39.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("65067", "3", "2017-09-25 10:21:49", "195.154.230.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("65068", "10", "2017-09-25 12:00:06", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("65069", "3", "2017-09-25 12:27:01", "180.76.15.33", "33");
INSERT INTO `wp_gf_form_view` VALUES("65070", "6", "2017-09-25 12:42:25", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65071", "9", "2017-09-25 12:42:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65072", "8", "2017-09-25 12:42:26", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65073", "15", "2017-09-25 12:42:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65074", "14", "2017-09-25 12:57:33", "118.179.206.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("65075", "3", "2017-09-25 14:03:24", "180.76.15.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("65076", "3", "2017-09-25 15:16:01", "192.99.10.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("65077", "8", "2017-09-25 15:43:15", "180.76.15.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("65078", "3", "2017-09-25 16:42:33", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65079", "6", "2017-09-25 16:42:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65080", "9", "2017-09-25 16:42:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65081", "8", "2017-09-25 16:42:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65082", "10", "2017-09-25 16:42:37", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65083", "15", "2017-09-25 16:42:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65084", "3", "2017-09-25 17:01:10", "66.249.69.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("65085", "3", "2017-09-25 18:38:03", "69.196.72.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("65086", "14", "2017-09-25 19:37:44", "194.187.170.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("65087", "10", "2017-09-25 19:50:27", "194.187.170.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("65088", "10", "2017-09-25 20:19:48", "194.187.170.126", "7");
INSERT INTO `wp_gf_form_view` VALUES("65089", "3", "2017-09-25 20:47:08", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65090", "6", "2017-09-25 20:47:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65091", "9", "2017-09-25 20:47:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65092", "8", "2017-09-25 20:47:10", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65093", "15", "2017-09-25 20:47:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65094", "3", "2017-09-25 21:13:31", "142.36.92.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("65095", "10", "2017-09-25 22:00:03", "66.249.91.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("65096", "14", "2017-09-25 23:13:09", "91.108.177.239", "3");
INSERT INTO `wp_gf_form_view` VALUES("65097", "3", "2017-09-25 23:13:14", "91.108.177.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("65098", "10", "2017-09-26 00:04:28", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65099", "3", "2017-09-26 00:24:33", "180.76.15.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("65100", "3", "2017-09-26 01:10:39", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65101", "6", "2017-09-26 01:10:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65102", "9", "2017-09-26 01:10:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65103", "8", "2017-09-26 01:10:41", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65104", "10", "2017-09-26 01:10:42", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65105", "15", "2017-09-26 01:10:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65106", "3", "2017-09-26 02:53:25", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65107", "10", "2017-09-26 03:47:26", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("65108", "3", "2017-09-26 04:41:40", "51.255.65.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("65109", "8", "2017-09-26 04:54:46", "154.20.28.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("65110", "3", "2017-09-26 05:23:07", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65111", "6", "2017-09-26 05:23:07", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65112", "9", "2017-09-26 05:23:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65113", "8", "2017-09-26 05:23:09", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65114", "10", "2017-09-26 05:23:09", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65115", "15", "2017-09-26 05:23:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65116", "3", "2017-09-26 06:09:29", "180.76.15.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("65117", "3", "2017-09-26 07:16:09", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("65118", "10", "2017-09-26 07:49:28", "180.76.15.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("65119", "3", "2017-09-26 08:22:29", "68.180.230.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("65120", "3", "2017-09-26 09:22:27", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("65121", "6", "2017-09-26 09:22:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65122", "9", "2017-09-26 09:22:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65123", "8", "2017-09-26 09:22:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65124", "10", "2017-09-26 09:22:29", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65125", "15", "2017-09-26 09:22:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65126", "3", "2017-09-26 10:34:07", "66.249.69.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("65127", "10", "2017-09-26 11:04:36", "66.249.91.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("65128", "14", "2017-09-26 12:23:02", "91.200.12.106", "12");
INSERT INTO `wp_gf_form_view` VALUES("65129", "3", "2017-09-26 12:37:54", "180.76.15.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("65130", "14", "2017-09-26 13:04:26", "91.200.12.7", "4");
INSERT INTO `wp_gf_form_view` VALUES("65131", "3", "2017-09-26 13:33:34", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("65132", "6", "2017-09-26 13:33:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65133", "9", "2017-09-26 13:33:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65134", "8", "2017-09-26 13:33:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65135", "10", "2017-09-26 13:33:37", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65136", "15", "2017-09-26 13:33:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65137", "8", "2017-09-26 14:00:37", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65138", "3", "2017-09-26 15:48:02", "51.255.71.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("65139", "3", "2017-09-26 16:20:13", "77.75.76.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("65140", "3", "2017-09-26 17:45:11", "52.88.109.3", "66");
INSERT INTO `wp_gf_form_view` VALUES("65141", "6", "2017-09-26 17:45:13", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65142", "9", "2017-09-26 17:45:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65143", "8", "2017-09-26 17:45:18", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("65144", "10", "2017-09-26 17:45:20", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("65145", "15", "2017-09-26 17:45:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65146", "3", "2017-09-26 18:04:12", "184.66.49.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("65147", "14", "2017-09-26 18:48:18", "180.76.15.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("65148", "3", "2017-09-26 20:01:13", "164.132.161.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("65149", "14", "2017-09-26 20:18:52", "216.232.152.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("65150", "3", "2017-09-26 21:01:39", "180.76.15.15", "36");
INSERT INTO `wp_gf_form_view` VALUES("65151", "10", "2017-09-26 21:21:39", "194.187.170.107", "6");
INSERT INTO `wp_gf_form_view` VALUES("65152", "6", "2017-09-26 21:47:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65153", "9", "2017-09-26 21:47:54", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65154", "8", "2017-09-26 21:47:54", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65155", "15", "2017-09-26 21:47:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65156", "10", "2017-09-26 22:04:23", "194.187.170.107", "2");
INSERT INTO `wp_gf_form_view` VALUES("65157", "10", "2017-09-26 23:25:55", "194.187.170.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("65158", "3", "2017-09-27 00:16:34", "178.63.1.153", "6");
INSERT INTO `wp_gf_form_view` VALUES("65159", "8", "2017-09-27 00:20:20", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("65160", "14", "2017-09-27 00:24:02", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("65161", "10", "2017-09-27 01:01:47", "199.16.157.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("65162", "3", "2017-09-27 01:15:23", "66.249.64.21", "34");
INSERT INTO `wp_gf_form_view` VALUES("65163", "6", "2017-09-27 01:49:10", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65164", "9", "2017-09-27 01:49:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65165", "8", "2017-09-27 01:49:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65166", "15", "2017-09-27 01:49:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65167", "3", "2017-09-27 02:00:23", "66.249.64.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("65168", "15", "2017-09-27 02:21:54", "157.55.39.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("65169", "10", "2017-09-27 02:33:00", "66.249.89.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("65170", "3", "2017-09-27 03:16:20", "180.76.15.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("65171", "14", "2017-09-27 05:22:10", "91.200.12.63", "5");
INSERT INTO `wp_gf_form_view` VALUES("65172", "3", "2017-09-27 05:42:32", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65173", "6", "2017-09-27 05:42:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65174", "9", "2017-09-27 05:42:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65175", "8", "2017-09-27 05:42:34", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65176", "10", "2017-09-27 05:42:35", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65177", "15", "2017-09-27 05:42:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65178", "3", "2017-09-27 07:20:31", "68.180.230.223", "8");
INSERT INTO `wp_gf_form_view` VALUES("65179", "10", "2017-09-27 07:20:32", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65180", "3", "2017-09-27 09:40:21", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65181", "6", "2017-09-27 09:40:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65182", "9", "2017-09-27 09:40:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65183", "8", "2017-09-27 09:40:23", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65184", "10", "2017-09-27 09:40:23", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65185", "15", "2017-09-27 09:40:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65186", "3", "2017-09-27 13:10:02", "180.76.15.144", "39");
INSERT INTO `wp_gf_form_view` VALUES("65187", "8", "2017-09-27 13:38:06", "12.202.16.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("65188", "6", "2017-09-27 13:38:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65189", "9", "2017-09-27 13:38:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65190", "10", "2017-09-27 13:38:18", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65191", "15", "2017-09-27 13:38:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65192", "8", "2017-09-27 16:28:30", "216.220.37.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("65193", "3", "2017-09-27 16:28:44", "216.220.37.161", "8");
INSERT INTO `wp_gf_form_view` VALUES("65194", "15", "2017-09-27 16:51:12", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("65195", "3", "2017-09-27 17:08:25", "184.71.24.158", "39");
INSERT INTO `wp_gf_form_view` VALUES("65196", "6", "2017-09-27 17:40:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65197", "9", "2017-09-27 17:40:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65198", "8", "2017-09-27 17:40:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65199", "10", "2017-09-27 17:40:58", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("65200", "15", "2017-09-27 17:41:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65201", "10", "2017-09-27 18:11:43", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("65202", "14", "2017-09-27 18:18:27", "189.100.139.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("65203", "3", "2017-09-27 18:27:10", "184.71.14.182", "3");
INSERT INTO `wp_gf_form_view` VALUES("65204", "14", "2017-09-27 19:30:44", "216.232.156.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("65205", "3", "2017-09-27 19:39:24", "199.71.174.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("65206", "3", "2017-09-27 20:44:42", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("65207", "3", "2017-09-27 21:40:22", "184.69.106.198", "34");
INSERT INTO `wp_gf_form_view` VALUES("65208", "6", "2017-09-27 21:42:09", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65209", "9", "2017-09-27 21:42:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65210", "8", "2017-09-27 21:42:11", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("65211", "10", "2017-09-27 21:42:12", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65212", "15", "2017-09-27 21:42:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65213", "3", "2017-09-27 23:24:48", "180.76.15.19", "2");
INSERT INTO `wp_gf_form_view` VALUES("65214", "3", "2017-09-28 00:31:27", "180.76.15.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("65215", "3", "2017-09-28 01:42:22", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65216", "6", "2017-09-28 01:42:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65217", "9", "2017-09-28 01:42:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65218", "8", "2017-09-28 01:42:24", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65219", "10", "2017-09-28 01:42:25", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65220", "15", "2017-09-28 01:42:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65221", "10", "2017-09-28 02:00:45", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("65222", "10", "2017-09-28 03:08:32", "199.58.86.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("65223", "3", "2017-09-28 03:18:18", "207.6.120.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("65224", "14", "2017-09-28 03:59:17", "58.56.117.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("65225", "10", "2017-09-28 05:39:19", "24.108.13.92", "8");
INSERT INTO `wp_gf_form_view` VALUES("65226", "3", "2017-09-28 05:48:27", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65227", "6", "2017-09-28 05:48:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65228", "9", "2017-09-28 05:48:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65229", "8", "2017-09-28 05:48:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65230", "15", "2017-09-28 05:48:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65231", "3", "2017-09-28 06:11:29", "180.76.15.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("65232", "3", "2017-09-28 07:18:08", "180.76.15.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("65233", "10", "2017-09-28 08:04:34", "51.255.65.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("65234", "10", "2017-09-28 09:16:19", "68.180.230.223", "6");
INSERT INTO `wp_gf_form_view` VALUES("65235", "3", "2017-09-28 09:54:33", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65236", "6", "2017-09-28 09:54:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65237", "9", "2017-09-28 09:54:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65238", "8", "2017-09-28 09:54:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65239", "15", "2017-09-28 09:54:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65240", "10", "2017-09-28 10:30:43", "46.229.168.78", "7");
INSERT INTO `wp_gf_form_view` VALUES("65241", "3", "2017-09-28 10:33:19", "46.229.168.74", "16");
INSERT INTO `wp_gf_form_view` VALUES("65242", "15", "2017-09-28 10:33:50", "46.229.168.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("65243", "6", "2017-09-28 10:41:23", "46.229.168.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("65244", "14", "2017-09-28 11:32:52", "91.108.177.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("65245", "3", "2017-09-28 13:47:33", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65246", "6", "2017-09-28 13:47:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65247", "9", "2017-09-28 13:47:35", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65248", "8", "2017-09-28 13:47:35", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65249", "10", "2017-09-28 13:47:36", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65250", "15", "2017-09-28 13:47:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65251", "10", "2017-09-28 14:13:57", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("65252", "6", "2017-09-28 15:25:13", "180.76.15.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("65253", "10", "2017-09-28 15:35:55", "207.46.13.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("65254", "3", "2017-09-28 17:54:11", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65255", "6", "2017-09-28 17:54:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65256", "9", "2017-09-28 17:54:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65257", "8", "2017-09-28 17:54:14", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65258", "10", "2017-09-28 17:54:15", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65259", "15", "2017-09-28 17:54:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65260", "6", "2017-09-28 18:11:54", "180.76.15.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("65261", "3", "2017-09-28 18:45:18", "180.76.15.140", "1");
INSERT INTO `wp_gf_form_view` VALUES("65262", "3", "2017-09-28 19:04:42", "88.99.19.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("65263", "10", "2017-09-28 19:33:48", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("65264", "14", "2017-09-28 19:51:56", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("65265", "3", "2017-09-28 20:25:13", "180.76.15.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("65266", "10", "2017-09-28 21:01:15", "184.71.47.146", "6");
INSERT INTO `wp_gf_form_view` VALUES("65267", "3", "2017-09-28 21:01:52", "184.71.47.146", "33");
INSERT INTO `wp_gf_form_view` VALUES("65268", "14", "2017-09-28 21:34:59", "91.121.83.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("65269", "6", "2017-09-28 21:59:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65270", "9", "2017-09-28 21:59:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65271", "8", "2017-09-28 21:59:31", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65272", "15", "2017-09-28 21:59:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65273", "3", "2017-09-28 22:05:12", "180.76.15.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("65274", "8", "2017-09-28 22:17:52", "184.66.137.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("65275", "14", "2017-09-28 23:18:01", "217.182.132.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("65276", "3", "2017-09-29 00:13:09", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("65277", "8", "2017-09-29 00:17:38", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("65278", "3", "2017-09-29 01:54:25", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65279", "6", "2017-09-29 01:54:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65280", "9", "2017-09-29 01:54:27", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65281", "8", "2017-09-29 01:54:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65282", "10", "2017-09-29 01:54:28", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65283", "15", "2017-09-29 01:54:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65284", "3", "2017-09-29 02:31:54", "180.76.15.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("65285", "8", "2017-09-29 05:09:02", "157.55.39.82", "3");
INSERT INTO `wp_gf_form_view` VALUES("65286", "3", "2017-09-29 05:34:07", "180.76.15.158", "33");
INSERT INTO `wp_gf_form_view` VALUES("65287", "6", "2017-09-29 05:52:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65288", "9", "2017-09-29 05:52:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65289", "10", "2017-09-29 05:52:06", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65290", "15", "2017-09-29 05:52:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65291", "14", "2017-09-29 06:44:57", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65292", "3", "2017-09-29 07:07:19", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("65293", "10", "2017-09-29 08:17:40", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("65294", "3", "2017-09-29 09:58:31", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65295", "6", "2017-09-29 09:58:31", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65296", "9", "2017-09-29 09:58:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65297", "8", "2017-09-29 09:58:33", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65298", "10", "2017-09-29 09:58:34", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65299", "15", "2017-09-29 09:58:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65300", "14", "2017-09-29 12:51:54", "104.255.68.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("65301", "3", "2017-09-29 13:36:56", "24.108.38.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("65302", "3", "2017-09-29 14:01:10", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65303", "6", "2017-09-29 14:01:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65304", "9", "2017-09-29 14:01:12", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65305", "8", "2017-09-29 14:01:12", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65306", "10", "2017-09-29 14:01:13", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65307", "15", "2017-09-29 14:01:17", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65308", "10", "2017-09-29 16:13:39", "180.76.15.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("65309", "3", "2017-09-29 17:20:16", "180.76.15.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("65310", "3", "2017-09-29 18:00:00", "52.88.109.3", "64");
INSERT INTO `wp_gf_form_view` VALUES("65311", "6", "2017-09-29 18:00:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65312", "9", "2017-09-29 18:00:02", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65313", "8", "2017-09-29 18:00:03", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("65314", "10", "2017-09-29 18:00:04", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("65315", "15", "2017-09-29 18:00:07", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65316", "10", "2017-09-29 19:00:17", "180.76.15.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("65317", "3", "2017-09-29 19:32:14", "68.180.230.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("65318", "8", "2017-09-29 20:29:06", "192.99.150.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("65319", "3", "2017-09-29 20:29:15", "192.99.150.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("65320", "9", "2017-09-29 20:33:15", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("65321", "14", "2017-09-29 21:14:09", "107.150.73.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("65322", "3", "2017-09-29 22:02:03", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("65323", "6", "2017-09-29 22:02:04", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65324", "9", "2017-09-29 22:02:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65325", "8", "2017-09-29 22:02:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65326", "10", "2017-09-29 22:02:07", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("65327", "15", "2017-09-29 22:02:11", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65328", "14", "2017-09-29 22:35:02", "96.50.12.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("65329", "3", "2017-09-29 23:16:35", "68.180.230.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("65330", "14", "2017-09-30 00:00:16", "180.76.15.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("65331", "12", "2017-09-30 01:06:56", "180.76.15.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("65332", "3", "2017-09-30 02:05:36", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65333", "6", "2017-09-30 02:05:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65334", "9", "2017-09-30 02:05:38", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65335", "8", "2017-09-30 02:05:38", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65336", "10", "2017-09-30 02:05:39", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65337", "15", "2017-09-30 02:05:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65338", "3", "2017-09-30 04:39:19", "217.182.132.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("65339", "3", "2017-09-30 05:18:25", "176.215.71.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("65340", "10", "2017-09-30 05:34:31", "96.44.120.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("65341", "10", "2017-09-30 06:01:58", "194.187.170.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("65342", "3", "2017-09-30 06:04:55", "194.187.170.113", "36");
INSERT INTO `wp_gf_form_view` VALUES("65343", "6", "2017-09-30 06:05:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65344", "9", "2017-09-30 06:05:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65345", "8", "2017-09-30 06:05:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65346", "15", "2017-09-30 06:05:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65347", "3", "2017-09-30 09:59:11", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("65348", "3", "2017-09-30 10:04:27", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65349", "6", "2017-09-30 10:04:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65350", "9", "2017-09-30 10:04:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65351", "8", "2017-09-30 10:04:29", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65352", "10", "2017-09-30 10:04:30", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65353", "15", "2017-09-30 10:04:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65354", "8", "2017-09-30 11:35:47", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("65355", "3", "2017-09-30 12:08:24", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65356", "14", "2017-09-30 12:42:35", "180.76.15.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("65357", "3", "2017-09-30 14:02:23", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65358", "6", "2017-09-30 14:02:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65359", "9", "2017-09-30 14:02:26", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65360", "8", "2017-09-30 14:02:27", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65361", "10", "2017-09-30 14:02:28", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65362", "15", "2017-09-30 14:02:32", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65363", "3", "2017-09-30 15:32:45", "36.57.178.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("65364", "14", "2017-09-30 15:55:06", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("65365", "3", "2017-09-30 16:43:45", "40.77.167.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("65366", "14", "2017-09-30 16:57:17", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("65367", "3", "2017-09-30 18:09:04", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65368", "6", "2017-09-30 18:09:06", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65369", "9", "2017-09-30 18:09:08", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65370", "8", "2017-09-30 18:09:09", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65371", "10", "2017-09-30 18:09:10", "52.88.109.3", "6");
INSERT INTO `wp_gf_form_view` VALUES("65372", "15", "2017-09-30 18:09:14", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65373", "5", "2017-09-30 19:12:42", "164.132.161.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("65374", "3", "2017-09-30 19:52:18", "23.228.86.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("65375", "8", "2017-09-30 21:08:12", "180.76.15.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("65376", "3", "2017-09-30 21:27:33", "217.182.132.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("65377", "14", "2017-09-30 22:04:34", "107.150.74.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("65378", "3", "2017-09-30 22:07:20", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("65379", "6", "2017-09-30 22:07:21", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65380", "9", "2017-09-30 22:07:22", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65381", "8", "2017-09-30 22:07:23", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65382", "10", "2017-09-30 22:07:24", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65383", "15", "2017-09-30 22:07:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65384", "12", "2017-09-30 22:14:51", "180.76.15.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("65385", "10", "2017-10-01 00:13:55", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("65386", "3", "2017-10-01 00:24:47", "154.16.89.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("65387", "10", "2017-10-01 01:01:31", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("65388", "3", "2017-10-01 01:46:22", "36.57.178.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("65389", "10", "2017-10-01 02:05:18", "96.44.120.225", "7");
INSERT INTO `wp_gf_form_view` VALUES("65390", "3", "2017-10-01 02:14:28", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("65391", "6", "2017-10-01 02:14:29", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65392", "9", "2017-10-01 02:14:30", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65393", "8", "2017-10-01 02:14:30", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("65394", "15", "2017-10-01 02:14:33", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65395", "8", "2017-10-01 04:07:41", "40.77.167.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("65396", "3", "2017-10-01 05:00:18", "40.77.167.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("65397", "3", "2017-10-01 06:18:56", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65398", "6", "2017-10-01 06:18:57", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65399", "9", "2017-10-01 06:18:58", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65400", "8", "2017-10-01 06:18:58", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65401", "10", "2017-10-01 06:18:59", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65402", "15", "2017-10-01 06:19:01", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65403", "3", "2017-10-01 07:14:31", "40.77.167.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("65404", "3", "2017-10-01 09:10:49", "198.58.75.9", "21");
INSERT INTO `wp_gf_form_view` VALUES("65405", "8", "2017-10-01 09:11:30", "198.58.75.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("65406", "14", "2017-10-01 09:16:29", "198.58.75.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("65407", "10", "2017-10-01 09:19:26", "198.58.75.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("65408", "3", "2017-10-01 10:17:51", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("65409", "6", "2017-10-01 10:17:52", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65410", "9", "2017-10-01 10:17:53", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65411", "8", "2017-10-01 10:17:53", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65412", "10", "2017-10-01 10:17:54", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65413", "15", "2017-10-01 10:17:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65414", "8", "2017-10-01 11:44:44", "104.243.26.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("65415", "3", "2017-10-01 11:44:52", "104.243.26.250", "6");
INSERT INTO `wp_gf_form_view` VALUES("65416", "6", "2017-10-01 13:22:39", "180.76.15.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("65417", "3", "2017-10-01 13:55:45", "69.30.213.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("65418", "3", "2017-10-01 14:14:20", "40.77.167.74", "65");
INSERT INTO `wp_gf_form_view` VALUES("65419", "6", "2017-10-01 14:20:00", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65420", "9", "2017-10-01 14:20:01", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65421", "8", "2017-10-01 14:20:02", "52.88.109.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("65422", "10", "2017-10-01 14:20:03", "52.88.109.3", "10");
INSERT INTO `wp_gf_form_view` VALUES("65423", "15", "2017-10-01 14:20:06", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65424", "3", "2017-10-01 15:02:45", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("65425", "10", "2017-10-01 15:22:41", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("65426", "3", "2017-10-01 17:32:57", "51.255.65.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("65427", "10", "2017-10-01 17:44:54", "51.255.65.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("65428", "3", "2017-10-01 18:11:18", "180.76.15.12", "33");
INSERT INTO `wp_gf_form_view` VALUES("65429", "6", "2017-10-01 18:17:46", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65430", "9", "2017-10-01 18:17:47", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65431", "8", "2017-10-01 18:17:47", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65432", "10", "2017-10-01 18:17:48", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65433", "15", "2017-10-01 18:17:50", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65434", "10", "2017-10-01 19:03:45", "194.187.170.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("65435", "3", "2017-10-01 19:04:12", "194.187.170.143", "7");
INSERT INTO `wp_gf_form_view` VALUES("65436", "3", "2017-10-01 21:07:22", "194.187.170.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("65437", "12", "2017-10-01 21:25:06", "194.187.170.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("65438", "3", "2017-10-01 22:11:38", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65439", "6", "2017-10-01 22:11:39", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65440", "9", "2017-10-01 22:11:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65441", "8", "2017-10-01 22:11:40", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65442", "10", "2017-10-01 22:11:41", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65443", "15", "2017-10-01 22:11:43", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65444", "6", "2017-10-02 00:04:17", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("65445", "3", "2017-10-02 00:31:33", "66.249.79.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("65446", "3", "2017-10-02 02:02:56", "51.255.65.59", "33");
INSERT INTO `wp_gf_form_view` VALUES("65447", "6", "2017-10-02 02:14:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65448", "9", "2017-10-02 02:14:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65449", "8", "2017-10-02 02:14:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65450", "10", "2017-10-02 02:14:38", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65451", "15", "2017-10-02 02:14:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65452", "14", "2017-10-02 03:12:33", "216.232.157.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("65453", "3", "2017-10-02 03:13:46", "216.232.157.185", "5");
INSERT INTO `wp_gf_form_view` VALUES("65454", "9", "2017-10-02 03:30:04", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("65455", "10", "2017-10-02 04:01:12", "72.14.199.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("65456", "3", "2017-10-02 06:20:35", "52.88.109.3", "33");
INSERT INTO `wp_gf_form_view` VALUES("65457", "6", "2017-10-02 06:20:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65458", "9", "2017-10-02 06:20:37", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65459", "8", "2017-10-02 06:20:37", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65460", "10", "2017-10-02 06:20:38", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65461", "15", "2017-10-02 06:20:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65462", "3", "2017-10-02 08:06:14", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("65463", "3", "2017-10-02 09:12:47", "207.46.13.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("65464", "3", "2017-10-02 10:18:43", "52.88.109.3", "32");
INSERT INTO `wp_gf_form_view` VALUES("65465", "6", "2017-10-02 10:18:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65466", "9", "2017-10-02 10:18:45", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65467", "8", "2017-10-02 10:18:45", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65468", "10", "2017-10-02 10:18:46", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65469", "15", "2017-10-02 10:18:48", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65470", "3", "2017-10-02 11:17:24", "104.192.74.38", "11");
INSERT INTO `wp_gf_form_view` VALUES("65471", "8", "2017-10-02 11:18:46", "104.192.74.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("65472", "10", "2017-10-02 12:00:12", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("65473", "3", "2017-10-02 12:48:36", "194.187.170.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("65474", "3", "2017-10-02 13:08:33", "194.187.170.123", "6");
INSERT INTO `wp_gf_form_view` VALUES("65475", "3", "2017-10-02 14:30:33", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("65476", "6", "2017-10-02 14:30:34", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65477", "9", "2017-10-02 14:30:36", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65478", "8", "2017-10-02 14:30:36", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65479", "10", "2017-10-02 14:30:37", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65480", "15", "2017-10-02 14:30:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65481", "12", "2017-10-02 15:06:09", "194.187.170.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("65482", "3", "2017-10-02 15:34:41", "194.187.170.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("65483", "3", "2017-10-02 16:17:11", "147.135.137.81", "5");
INSERT INTO `wp_gf_form_view` VALUES("65484", "8", "2017-10-02 16:18:23", "147.135.137.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("65485", "3", "2017-10-02 17:39:02", "217.182.132.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("65486", "10", "2017-10-02 18:02:01", "51.255.71.131", "6");
INSERT INTO `wp_gf_form_view` VALUES("65487", "3", "2017-10-02 18:21:18", "180.76.15.137", "35");
INSERT INTO `wp_gf_form_view` VALUES("65488", "6", "2017-10-02 18:40:40", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65489", "9", "2017-10-02 18:40:41", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65490", "8", "2017-10-02 18:40:41", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("65491", "15", "2017-10-02 18:40:44", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65492", "12", "2017-10-02 18:55:27", "75.157.238.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("65493", "3", "2017-10-02 19:13:22", "64.180.207.31", "5");
INSERT INTO `wp_gf_form_view` VALUES("65494", "8", "2017-10-02 19:13:48", "24.68.32.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("65495", "10", "2017-10-02 19:21:41", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("65496", "14", "2017-10-02 20:07:10", "75.156.35.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("65497", "3", "2017-10-02 21:14:55", "180.76.15.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("65498", "8", "2017-10-02 22:00:29", "12.202.16.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("65499", "3", "2017-10-02 22:00:38", "12.202.16.36", "7");
INSERT INTO `wp_gf_form_view` VALUES("65500", "14", "2017-10-02 22:15:12", "179.61.209.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("65501", "3", "2017-10-02 23:05:54", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("65502", "6", "2017-10-02 23:05:55", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65503", "9", "2017-10-02 23:05:56", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65504", "8", "2017-10-02 23:05:57", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65505", "10", "2017-10-02 23:05:57", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65506", "15", "2017-10-02 23:06:00", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65507", "3", "2017-10-03 00:17:29", "66.249.79.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("65508", "3", "2017-10-03 01:04:39", "164.132.161.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("65509", "10", "2017-10-03 02:12:27", "51.255.71.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("65510", "3", "2017-10-03 03:12:14", "52.88.109.3", "34");
INSERT INTO `wp_gf_form_view` VALUES("65511", "6", "2017-10-03 03:12:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65512", "9", "2017-10-03 03:12:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65513", "8", "2017-10-03 03:12:17", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65514", "10", "2017-10-03 03:12:17", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65515", "15", "2017-10-03 03:12:20", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65516", "10", "2017-10-03 04:19:05", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("65517", "3", "2017-10-03 04:44:03", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65518", "3", "2017-10-03 05:20:56", "24.108.21.7", "3");
INSERT INTO `wp_gf_form_view` VALUES("65519", "14", "2017-10-03 05:24:07", "212.12.31.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("65520", "3", "2017-10-03 07:11:14", "52.88.109.3", "40");
INSERT INTO `wp_gf_form_view` VALUES("65521", "6", "2017-10-03 07:11:15", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65522", "9", "2017-10-03 07:11:16", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65523", "8", "2017-10-03 07:11:16", "52.88.109.3", "2");
INSERT INTO `wp_gf_form_view` VALUES("65524", "10", "2017-10-03 07:11:17", "52.88.109.3", "12");
INSERT INTO `wp_gf_form_view` VALUES("65525", "15", "2017-10-03 07:11:19", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65526", "3", "2017-10-03 08:31:51", "68.180.230.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("65527", "14", "2017-10-03 11:04:01", "104.223.52.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("65528", "3", "2017-10-03 11:16:22", "52.88.109.3", "35");
INSERT INTO `wp_gf_form_view` VALUES("65529", "6", "2017-10-03 11:16:23", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65530", "9", "2017-10-03 11:16:24", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65531", "8", "2017-10-03 11:16:25", "52.88.109.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("65532", "10", "2017-10-03 11:16:25", "52.88.109.3", "5");
INSERT INTO `wp_gf_form_view` VALUES("65533", "15", "2017-10-03 11:16:28", "52.88.109.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("65534", "10", "2017-10-03 13:06:41", "164.132.161.47", "3");
INSERT INTO `wp_gf_form_view` VALUES("65535", "3", "2017-10-03 13:38:29", "40.77.167.68", "7");
INSERT INTO `wp_gf_form_view` VALUES("65536", "8", "2017-10-03 13:41:52", "213.127.48.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("65537", "3", "2017-10-03 14:19:56", "207.46.13.142", "16");
INSERT INTO `wp_gf_form_view` VALUES("65538", "8", "2017-10-03 14:24:39", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65539", "10", "2017-10-03 14:37:09", "40.77.167.68", "10");
INSERT INTO `wp_gf_form_view` VALUES("65540", "9", "2017-10-03 14:37:18", "157.55.39.94", "4");
INSERT INTO `wp_gf_form_view` VALUES("65541", "3", "2017-10-03 15:03:41", "164.132.161.44", "44");
INSERT INTO `wp_gf_form_view` VALUES("65542", "10", "2017-10-03 15:37:00", "157.55.39.34", "10");
INSERT INTO `wp_gf_form_view` VALUES("65543", "6", "2017-10-03 15:37:18", "157.55.39.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("65544", "9", "2017-10-03 15:53:21", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65545", "8", "2017-10-03 15:53:22", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65546", "15", "2017-10-03 15:53:25", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65547", "14", "2017-10-03 16:02:06", "104.131.71.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("65548", "6", "2017-10-03 16:03:13", "104.131.71.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("65549", "3", "2017-10-03 16:04:27", "104.131.71.33", "30");
INSERT INTO `wp_gf_form_view` VALUES("65550", "10", "2017-10-03 16:05:45", "104.131.71.33", "5");
INSERT INTO `wp_gf_form_view` VALUES("65551", "9", "2017-10-03 16:10:15", "104.131.71.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("65552", "15", "2017-10-03 16:17:03", "104.131.71.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("65553", "8", "2017-10-03 16:17:36", "24.68.252.32", "4");
INSERT INTO `wp_gf_form_view` VALUES("65554", "3", "2017-10-03 17:29:15", "180.76.15.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("65555", "3", "2017-10-03 18:02:21", "174.127.133.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("65556", "8", "2017-10-03 18:42:16", "54.85.182.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("65557", "14", "2017-10-03 18:51:43", "24.68.32.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("65558", "3", "2017-10-03 19:22:27", "180.76.15.159", "34");
INSERT INTO `wp_gf_form_view` VALUES("65559", "8", "2017-10-03 19:39:38", "24.108.184.241", "3");
INSERT INTO `wp_gf_form_view` VALUES("65560", "14", "2017-10-03 19:44:03", "91.108.177.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("65561", "6", "2017-10-03 19:49:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65562", "9", "2017-10-03 19:49:02", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65563", "10", "2017-10-03 19:49:03", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65564", "15", "2017-10-03 19:49:06", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65565", "3", "2017-10-03 20:20:50", "142.24.79.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("65566", "10", "2017-10-03 21:04:19", "66.249.90.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("65567", "15", "2017-10-03 22:46:15", "157.55.39.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("65568", "3", "2017-10-03 22:52:32", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("65569", "10", "2017-10-03 22:59:43", "164.132.161.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("65570", "8", "2017-10-03 23:14:26", "24.108.184.241", "3");
INSERT INTO `wp_gf_form_view` VALUES("65571", "3", "2017-10-03 23:28:06", "35.160.137.253", "33");
INSERT INTO `wp_gf_form_view` VALUES("65572", "6", "2017-10-03 23:28:06", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65573", "9", "2017-10-03 23:28:08", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65574", "10", "2017-10-03 23:28:09", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65575", "15", "2017-10-03 23:28:11", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65576", "8", "2017-10-04 00:44:34", "139.162.246.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("65577", "3", "2017-10-04 01:34:00", "96.54.227.7", "9");
INSERT INTO `wp_gf_form_view` VALUES("65578", "10", "2017-10-04 01:55:49", "137.74.207.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("65579", "10", "2017-10-04 02:39:04", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("65580", "3", "2017-10-04 03:14:03", "35.160.137.253", "33");
INSERT INTO `wp_gf_form_view` VALUES("65581", "6", "2017-10-04 03:14:04", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65582", "9", "2017-10-04 03:14:05", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65583", "8", "2017-10-04 03:14:06", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65584", "10", "2017-10-04 03:14:06", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65585", "15", "2017-10-04 03:14:09", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65586", "3", "2017-10-04 04:18:11", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("65587", "3", "2017-10-04 05:06:54", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("65588", "3", "2017-10-04 06:17:01", "157.55.39.141", "36");
INSERT INTO `wp_gf_form_view` VALUES("65589", "6", "2017-10-04 06:54:16", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65590", "9", "2017-10-04 06:54:17", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65591", "8", "2017-10-04 06:54:17", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65592", "10", "2017-10-04 06:54:18", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65593", "15", "2017-10-04 06:54:20", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65594", "3", "2017-10-04 08:26:55", "180.76.15.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("65595", "10", "2017-10-04 08:50:07", "164.132.161.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("65596", "3", "2017-10-04 09:46:39", "157.55.39.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("65597", "3", "2017-10-04 10:41:21", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("65598", "6", "2017-10-04 10:41:22", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65599", "9", "2017-10-04 10:41:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65600", "8", "2017-10-04 10:41:23", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65601", "10", "2017-10-04 10:41:24", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("65602", "15", "2017-10-04 10:41:26", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65603", "14", "2017-10-04 11:29:54", "192.210.210.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("65604", "3", "2017-10-04 13:09:09", "66.249.73.223", "3");
INSERT INTO `wp_gf_form_view` VALUES("65605", "10", "2017-10-04 14:08:06", "217.182.132.21", "6");
INSERT INTO `wp_gf_form_view` VALUES("65606", "3", "2017-10-04 14:32:50", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("65607", "6", "2017-10-04 14:32:51", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65608", "9", "2017-10-04 14:32:52", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65609", "8", "2017-10-04 14:32:53", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65610", "15", "2017-10-04 14:32:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65611", "8", "2017-10-04 16:00:20", "216.113.204.83", "2");
INSERT INTO `wp_gf_form_view` VALUES("65612", "3", "2017-10-04 16:22:10", "64.114.223.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("65613", "3", "2017-10-04 17:40:44", "180.76.15.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("65614", "3", "2017-10-04 18:28:00", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65615", "6", "2017-10-04 18:28:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65616", "9", "2017-10-04 18:28:02", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65617", "8", "2017-10-04 18:28:03", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65618", "10", "2017-10-04 18:28:04", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65619", "15", "2017-10-04 18:28:06", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65620", "12", "2017-10-04 19:08:05", "51.255.65.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("65621", "3", "2017-10-04 19:14:10", "66.249.73.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("65622", "8", "2017-10-04 19:19:53", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("65623", "8", "2017-10-04 20:28:29", "24.68.35.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("65624", "3", "2017-10-04 20:29:56", "66.249.73.193", "3");
INSERT INTO `wp_gf_form_view` VALUES("65625", "8", "2017-10-04 21:34:08", "24.68.35.40", "4");
INSERT INTO `wp_gf_form_view` VALUES("65626", "3", "2017-10-04 22:11:44", "142.104.153.6", "38");
INSERT INTO `wp_gf_form_view` VALUES("65627", "6", "2017-10-04 22:12:43", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65628", "9", "2017-10-04 22:12:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65629", "8", "2017-10-04 22:12:45", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65630", "10", "2017-10-04 22:12:45", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65631", "15", "2017-10-04 22:12:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65632", "8", "2017-10-04 23:16:29", "64.233.172.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("65633", "3", "2017-10-04 23:25:54", "194.187.170.110", "5");
INSERT INTO `wp_gf_form_view` VALUES("65634", "10", "2017-10-04 23:52:05", "199.59.150.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("65635", "8", "2017-10-05 00:01:20", "139.162.246.62", "6");
INSERT INTO `wp_gf_form_view` VALUES("65636", "10", "2017-10-05 00:05:50", "66.249.90.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("65637", "3", "2017-10-05 00:12:04", "180.76.15.18", "4");
INSERT INTO `wp_gf_form_view` VALUES("65638", "3", "2017-10-05 02:05:43", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65639", "6", "2017-10-05 02:05:43", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65640", "9", "2017-10-05 02:05:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65641", "8", "2017-10-05 02:05:45", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65642", "10", "2017-10-05 02:05:46", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65643", "15", "2017-10-05 02:05:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65644", "14", "2017-10-05 02:15:01", "129.205.210.90", "2");
INSERT INTO `wp_gf_form_view` VALUES("65645", "3", "2017-10-05 04:04:36", "66.249.79.135", "5");
INSERT INTO `wp_gf_form_view` VALUES("65646", "3", "2017-10-05 05:59:03", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65647", "6", "2017-10-05 05:59:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65648", "9", "2017-10-05 05:59:04", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65649", "8", "2017-10-05 05:59:04", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65650", "10", "2017-10-05 05:59:05", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65651", "15", "2017-10-05 05:59:07", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65652", "10", "2017-10-05 07:23:18", "51.255.66.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("65653", "3", "2017-10-05 07:45:29", "180.76.15.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("65654", "3", "2017-10-05 08:02:25", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("65655", "8", "2017-10-05 08:14:56", "139.162.246.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("65656", "3", "2017-10-05 09:16:29", "66.249.79.133", "32");
INSERT INTO `wp_gf_form_view` VALUES("65657", "6", "2017-10-05 09:56:19", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65658", "9", "2017-10-05 09:56:20", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65659", "8", "2017-10-05 09:56:21", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65660", "10", "2017-10-05 09:56:22", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65661", "15", "2017-10-05 09:56:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65662", "3", "2017-10-05 11:57:08", "180.76.15.30", "7");
INSERT INTO `wp_gf_form_view` VALUES("65663", "10", "2017-10-05 11:57:10", "180.76.15.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("65664", "14", "2017-10-05 13:41:11", "91.108.177.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("65665", "3", "2017-10-05 13:51:48", "35.160.137.253", "37");
INSERT INTO `wp_gf_form_view` VALUES("65666", "6", "2017-10-05 13:51:49", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65667", "9", "2017-10-05 13:51:50", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65668", "8", "2017-10-05 13:51:51", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65669", "10", "2017-10-05 13:51:52", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65670", "15", "2017-10-05 13:51:55", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65671", "3", "2017-10-05 14:32:43", "194.187.170.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("65672", "10", "2017-10-05 14:52:43", "194.187.170.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("65673", "10", "2017-10-05 15:03:56", "194.187.170.111", "2");
INSERT INTO `wp_gf_form_view` VALUES("65674", "3", "2017-10-05 15:09:26", "164.132.162.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("65675", "10", "2017-10-05 16:08:59", "194.187.170.111", "3");
INSERT INTO `wp_gf_form_view` VALUES("65676", "3", "2017-10-05 17:12:09", "139.162.246.62", "34");
INSERT INTO `wp_gf_form_view` VALUES("65677", "6", "2017-10-05 17:43:42", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65678", "9", "2017-10-05 17:43:43", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65679", "8", "2017-10-05 17:43:43", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65680", "10", "2017-10-05 17:43:44", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65681", "15", "2017-10-05 17:43:46", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65682", "3", "2017-10-05 18:49:11", "139.162.246.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("65683", "8", "2017-10-05 18:58:44", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("65684", "3", "2017-10-05 20:23:01", "139.162.246.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("65685", "3", "2017-10-05 21:36:08", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65686", "6", "2017-10-05 21:36:09", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65687", "9", "2017-10-05 21:36:10", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65688", "8", "2017-10-05 21:36:10", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65689", "10", "2017-10-05 21:36:11", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65690", "15", "2017-10-05 21:36:16", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65691", "3", "2017-10-05 22:10:49", "180.76.15.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("65692", "8", "2017-10-05 22:21:02", "24.108.184.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("65693", "3", "2017-10-05 23:17:29", "180.76.15.12", "7");
INSERT INTO `wp_gf_form_view` VALUES("65694", "8", "2017-10-05 23:23:12", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("65695", "14", "2017-10-05 23:24:50", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("65696", "3", "2017-10-06 00:23:33", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("65697", "3", "2017-10-06 01:33:55", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65698", "6", "2017-10-06 01:33:55", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65699", "9", "2017-10-06 01:33:56", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65700", "8", "2017-10-06 01:33:58", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65701", "10", "2017-10-06 01:34:00", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65702", "15", "2017-10-06 01:34:05", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65703", "3", "2017-10-06 02:16:04", "104.236.154.246", "12");
INSERT INTO `wp_gf_form_view` VALUES("65704", "8", "2017-10-06 02:16:54", "104.236.154.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("65705", "14", "2017-10-06 02:17:41", "104.236.154.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("65706", "10", "2017-10-06 03:13:22", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("65707", "3", "2017-10-06 03:14:26", "40.77.167.49", "2");
INSERT INTO `wp_gf_form_view` VALUES("65708", "3", "2017-10-06 05:26:00", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65709", "6", "2017-10-06 05:26:00", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65710", "9", "2017-10-06 05:26:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65711", "8", "2017-10-06 05:26:02", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65712", "10", "2017-10-06 05:26:02", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65713", "15", "2017-10-06 05:26:04", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65714", "14", "2017-10-06 06:18:25", "77.75.79.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("65715", "3", "2017-10-06 06:44:54", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("65716", "5", "2017-10-06 07:19:59", "157.55.39.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("65717", "15", "2017-10-06 07:39:35", "180.76.15.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("65718", "3", "2017-10-06 09:05:41", "164.132.161.5", "32");
INSERT INTO `wp_gf_form_view` VALUES("65719", "6", "2017-10-06 09:11:59", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65720", "9", "2017-10-06 09:12:00", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65721", "8", "2017-10-06 09:12:00", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65722", "10", "2017-10-06 09:12:01", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65723", "15", "2017-10-06 09:12:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65724", "10", "2017-10-06 10:14:58", "157.55.39.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("65725", "3", "2017-10-06 10:15:08", "207.46.13.145", "7");
INSERT INTO `wp_gf_form_view` VALUES("65726", "9", "2017-10-06 10:16:06", "207.46.13.145", "2");
INSERT INTO `wp_gf_form_view` VALUES("65727", "3", "2017-10-06 12:37:15", "139.162.246.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("65728", "10", "2017-10-06 12:50:24", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("65729", "3", "2017-10-06 13:07:55", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("65730", "6", "2017-10-06 13:07:55", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65731", "9", "2017-10-06 13:07:56", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65732", "8", "2017-10-06 13:07:57", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65733", "10", "2017-10-06 13:07:58", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65734", "15", "2017-10-06 13:08:00", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65735", "10", "2017-10-06 14:36:15", "51.255.65.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("65736", "3", "2017-10-06 14:58:25", "139.162.246.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("65737", "10", "2017-10-06 15:52:08", "66.249.92.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("65738", "3", "2017-10-06 16:09:15", "139.162.246.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("65739", "10", "2017-10-06 16:15:58", "217.182.132.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("65740", "3", "2017-10-06 17:01:27", "35.160.137.253", "33");
INSERT INTO `wp_gf_form_view` VALUES("65741", "6", "2017-10-06 17:01:27", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65742", "9", "2017-10-06 17:01:28", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65743", "8", "2017-10-06 17:01:28", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65744", "10", "2017-10-06 17:01:29", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65745", "15", "2017-10-06 17:01:31", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65746", "8", "2017-10-06 18:05:03", "24.108.29.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("65747", "14", "2017-10-06 18:08:41", "51.255.71.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("65748", "15", "2017-10-06 18:15:54", "51.255.65.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("65749", "3", "2017-10-06 18:28:05", "139.162.246.62", "2");
INSERT INTO `wp_gf_form_view` VALUES("65750", "8", "2017-10-06 19:31:08", "107.172.227.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("65751", "14", "2017-10-06 19:32:50", "107.172.227.150", "2");
INSERT INTO `wp_gf_form_view` VALUES("65752", "3", "2017-10-06 19:43:20", "24.108.202.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("65753", "3", "2017-10-06 21:29:01", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65754", "6", "2017-10-06 21:29:02", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65755", "9", "2017-10-06 21:29:04", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65756", "8", "2017-10-06 21:29:04", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65757", "10", "2017-10-06 21:29:05", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65758", "15", "2017-10-06 21:29:07", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65759", "14", "2017-10-06 21:35:26", "66.183.101.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("65760", "14", "2017-10-06 22:26:10", "187.190.221.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("65761", "3", "2017-10-06 22:54:53", "139.162.246.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("65762", "3", "2017-10-07 00:14:15", "184.72.208.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("65763", "3", "2017-10-07 01:28:40", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65764", "6", "2017-10-07 01:28:41", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65765", "9", "2017-10-07 01:28:42", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65766", "8", "2017-10-07 01:28:43", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65767", "10", "2017-10-07 01:28:45", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65768", "15", "2017-10-07 01:28:49", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65769", "5", "2017-10-07 01:33:42", "194.187.170.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("65770", "3", "2017-10-07 02:22:40", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("65771", "14", "2017-10-07 02:58:52", "107.172.225.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("65772", "3", "2017-10-07 04:14:26", "96.50.18.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("65773", "3", "2017-10-07 05:09:29", "180.76.15.20", "63");
INSERT INTO `wp_gf_form_view` VALUES("65774", "6", "2017-10-07 05:45:07", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65775", "9", "2017-10-07 05:45:12", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65776", "8", "2017-10-07 05:45:13", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("65777", "10", "2017-10-07 05:45:16", "35.160.137.253", "11");
INSERT INTO `wp_gf_form_view` VALUES("65778", "15", "2017-10-07 05:45:25", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65779", "3", "2017-10-07 06:59:10", "180.76.15.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("65780", "3", "2017-10-07 07:17:19", "164.132.161.79", "11");
INSERT INTO `wp_gf_form_view` VALUES("65781", "8", "2017-10-07 07:22:35", "142.4.215.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("65782", "14", "2017-10-07 07:23:00", "142.4.215.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("65783", "10", "2017-10-07 07:24:11", "142.4.215.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("65784", "3", "2017-10-07 08:05:53", "180.76.15.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("65785", "3", "2017-10-07 10:00:37", "35.160.137.253", "57");
INSERT INTO `wp_gf_form_view` VALUES("65786", "6", "2017-10-07 10:00:39", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65787", "9", "2017-10-07 10:00:40", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65788", "8", "2017-10-07 10:00:41", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("65789", "10", "2017-10-07 10:00:42", "35.160.137.253", "22");
INSERT INTO `wp_gf_form_view` VALUES("65790", "15", "2017-10-07 10:00:44", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65791", "11", "2017-10-07 10:14:08", "207.46.13.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("65792", "3", "2017-10-07 11:18:33", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("65793", "3", "2017-10-07 12:27:58", "69.30.221.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("65794", "15", "2017-10-07 12:42:28", "180.76.15.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("65795", "9", "2017-10-07 13:40:17", "207.46.13.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("65796", "3", "2017-10-07 13:59:21", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65797", "6", "2017-10-07 13:59:22", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65798", "8", "2017-10-07 13:59:24", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65799", "10", "2017-10-07 13:59:26", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65800", "15", "2017-10-07 13:59:30", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65801", "3", "2017-10-07 14:15:52", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65802", "8", "2017-10-07 17:40:50", "93.158.161.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("65803", "3", "2017-10-07 18:15:21", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65804", "6", "2017-10-07 18:15:22", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65805", "9", "2017-10-07 18:15:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65806", "8", "2017-10-07 18:15:23", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65807", "10", "2017-10-07 18:15:24", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65808", "15", "2017-10-07 18:15:26", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65809", "10", "2017-10-07 19:07:44", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("65810", "14", "2017-10-07 19:27:43", "104.223.31.46", "2");
INSERT INTO `wp_gf_form_view` VALUES("65811", "10", "2017-10-07 20:02:46", "51.255.71.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("65812", "3", "2017-10-07 20:03:03", "180.76.15.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("65813", "15", "2017-10-07 21:43:04", "180.76.15.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("65814", "3", "2017-10-07 22:23:39", "35.160.137.253", "41");
INSERT INTO `wp_gf_form_view` VALUES("65815", "6", "2017-10-07 22:23:39", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65816", "9", "2017-10-07 22:23:40", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65817", "8", "2017-10-07 22:23:41", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("65818", "10", "2017-10-07 22:23:41", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65819", "15", "2017-10-07 22:23:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65820", "3", "2017-10-07 23:00:06", "94.199.151.22", "27");
INSERT INTO `wp_gf_form_view` VALUES("65821", "14", "2017-10-07 23:01:18", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("65822", "10", "2017-10-07 23:03:18", "94.199.151.22", "5");
INSERT INTO `wp_gf_form_view` VALUES("65823", "8", "2017-10-07 23:15:15", "94.199.151.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("65824", "15", "2017-10-07 23:19:15", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("65825", "9", "2017-10-07 23:25:10", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("65826", "11", "2017-10-08 00:21:54", "77.75.76.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("65827", "3", "2017-10-08 00:39:16", "51.255.65.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("65828", "3", "2017-10-08 01:09:37", "24.68.130.225", "3");
INSERT INTO `wp_gf_form_view` VALUES("65829", "10", "2017-10-08 02:09:43", "180.76.15.5", "6");
INSERT INTO `wp_gf_form_view` VALUES("65830", "3", "2017-10-08 02:26:56", "35.160.137.253", "39");
INSERT INTO `wp_gf_form_view` VALUES("65831", "6", "2017-10-08 02:26:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65832", "9", "2017-10-08 02:26:58", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65833", "8", "2017-10-08 02:26:58", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65834", "15", "2017-10-08 02:27:01", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65835", "11", "2017-10-08 02:43:03", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("65836", "3", "2017-10-08 03:00:02", "5.9.98.130", "38");
INSERT INTO `wp_gf_form_view` VALUES("65837", "8", "2017-10-08 03:00:17", "5.9.98.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("65838", "14", "2017-10-08 03:02:11", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("65839", "10", "2017-10-08 03:02:48", "5.9.98.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("65840", "15", "2017-10-08 03:07:28", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("65841", "9", "2017-10-08 03:09:35", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("65842", "6", "2017-10-08 03:10:52", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("65843", "14", "2017-10-08 04:41:42", "131.153.28.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("65844", "10", "2017-10-08 05:48:57", "46.229.168.72", "7");
INSERT INTO `wp_gf_form_view` VALUES("65845", "3", "2017-10-08 05:49:18", "46.229.168.75", "12");
INSERT INTO `wp_gf_form_view` VALUES("65846", "8", "2017-10-08 05:50:29", "46.229.168.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("65847", "14", "2017-10-08 05:56:51", "46.229.168.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("65848", "3", "2017-10-08 06:01:47", "46.229.168.77", "41");
INSERT INTO `wp_gf_form_view` VALUES("65849", "6", "2017-10-08 06:03:25", "46.229.168.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("65850", "9", "2017-10-08 06:04:54", "46.229.168.78", "4");
INSERT INTO `wp_gf_form_view` VALUES("65851", "11", "2017-10-08 06:07:19", "46.229.168.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("65852", "8", "2017-10-08 06:33:49", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65853", "10", "2017-10-08 06:33:51", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65854", "15", "2017-10-08 06:33:55", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65855", "3", "2017-10-08 09:59:38", "180.76.15.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("65856", "3", "2017-10-08 10:38:34", "185.43.45.204", "32");
INSERT INTO `wp_gf_form_view` VALUES("65857", "6", "2017-10-08 10:41:14", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65858", "9", "2017-10-08 10:41:16", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65859", "8", "2017-10-08 10:41:17", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65860", "10", "2017-10-08 10:41:18", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("65861", "15", "2017-10-08 10:41:22", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65862", "10", "2017-10-08 12:41:00", "207.46.13.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("65863", "3", "2017-10-08 14:39:31", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65864", "6", "2017-10-08 14:39:32", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65865", "9", "2017-10-08 14:39:34", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65866", "8", "2017-10-08 14:39:35", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65867", "10", "2017-10-08 14:39:37", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65868", "15", "2017-10-08 14:39:40", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65869", "10", "2017-10-08 17:06:12", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("65870", "10", "2017-10-08 18:09:49", "184.66.129.248", "15");
INSERT INTO `wp_gf_form_view` VALUES("65871", "3", "2017-10-08 18:37:21", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("65872", "6", "2017-10-08 18:37:21", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65873", "9", "2017-10-08 18:37:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65874", "8", "2017-10-08 18:37:25", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65875", "15", "2017-10-08 18:37:31", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65876", "14", "2017-10-08 18:42:45", "197.32.62.46", "3");
INSERT INTO `wp_gf_form_view` VALUES("65877", "8", "2017-10-08 19:02:40", "167.114.172.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65878", "3", "2017-10-08 19:02:54", "167.114.172.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("65879", "3", "2017-10-08 20:52:37", "180.76.15.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("65880", "3", "2017-10-08 21:25:56", "180.76.15.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("65881", "3", "2017-10-08 22:07:12", "157.55.39.56", "63");
INSERT INTO `wp_gf_form_view` VALUES("65882", "6", "2017-10-08 22:45:03", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65883", "9", "2017-10-08 22:45:05", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65884", "8", "2017-10-08 22:45:05", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("65885", "10", "2017-10-08 22:45:06", "35.160.137.253", "10");
INSERT INTO `wp_gf_form_view` VALUES("65886", "15", "2017-10-08 22:45:11", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65887", "10", "2017-10-08 23:38:48", "194.187.170.125", "2");
INSERT INTO `wp_gf_form_view` VALUES("65888", "3", "2017-10-09 01:51:59", "52.210.53.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("65889", "10", "2017-10-09 02:00:11", "72.14.199.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("65890", "3", "2017-10-09 02:58:53", "207.46.13.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("65891", "15", "2017-10-09 02:59:17", "180.76.15.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("65892", "3", "2017-10-09 03:06:01", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65893", "6", "2017-10-09 03:06:02", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65894", "9", "2017-10-09 03:06:04", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65895", "8", "2017-10-09 03:06:05", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65896", "10", "2017-10-09 03:06:07", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65897", "15", "2017-10-09 03:06:09", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65898", "3", "2017-10-09 04:20:12", "52.210.53.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("65899", "3", "2017-10-09 05:50:03", "24.68.105.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("65900", "3", "2017-10-09 07:11:19", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65901", "6", "2017-10-09 07:11:19", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65902", "9", "2017-10-09 07:11:21", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65903", "8", "2017-10-09 07:11:22", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65904", "10", "2017-10-09 07:11:24", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65905", "15", "2017-10-09 07:11:29", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65906", "3", "2017-10-09 08:50:42", "180.76.15.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("65907", "3", "2017-10-09 09:23:59", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("65908", "3", "2017-10-09 11:15:46", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65909", "6", "2017-10-09 11:15:47", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65910", "9", "2017-10-09 11:15:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65911", "8", "2017-10-09 11:15:49", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65912", "10", "2017-10-09 11:15:50", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65913", "15", "2017-10-09 11:15:55", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65914", "10", "2017-10-09 12:00:21", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("65915", "3", "2017-10-09 13:45:46", "216.121.132.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("65916", "14", "2017-10-09 14:00:57", "91.108.177.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("65917", "10", "2017-10-09 14:14:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("65918", "9", "2017-10-09 15:19:24", "40.77.167.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("65919", "3", "2017-10-09 15:19:44", "40.77.167.115", "62");
INSERT INTO `wp_gf_form_view` VALUES("65920", "15", "2017-10-09 15:19:45", "207.46.13.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("65921", "10", "2017-10-09 15:20:39", "40.77.167.115", "25");
INSERT INTO `wp_gf_form_view` VALUES("65922", "6", "2017-10-09 15:22:16", "207.46.13.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("65923", "11", "2017-10-09 15:25:58", "40.77.167.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("65924", "8", "2017-10-09 15:31:30", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65925", "3", "2017-10-09 17:06:52", "96.54.244.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("65926", "10", "2017-10-09 17:42:59", "72.14.199.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("65927", "3", "2017-10-09 18:14:43", "96.50.126.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("65928", "10", "2017-10-09 19:35:36", "154.5.182.60", "6");
INSERT INTO `wp_gf_form_view` VALUES("65929", "3", "2017-10-09 19:49:34", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65930", "6", "2017-10-09 19:49:34", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65931", "9", "2017-10-09 19:49:37", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65932", "8", "2017-10-09 19:49:38", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65933", "15", "2017-10-09 19:49:45", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65934", "8", "2017-10-09 20:02:43", "96.54.159.213", "3");
INSERT INTO `wp_gf_form_view` VALUES("65935", "3", "2017-10-09 21:06:42", "180.76.15.18", "4");
INSERT INTO `wp_gf_form_view` VALUES("65936", "8", "2017-10-09 22:02:32", "40.77.167.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("65937", "3", "2017-10-09 23:19:57", "180.76.15.24", "38");
INSERT INTO `wp_gf_form_view` VALUES("65938", "8", "2017-10-09 23:26:06", "67.68.134.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("65939", "6", "2017-10-09 23:54:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65940", "9", "2017-10-09 23:54:25", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65941", "10", "2017-10-09 23:54:27", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65942", "15", "2017-10-09 23:54:29", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65943", "3", "2017-10-10 00:41:47", "40.77.167.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("65944", "14", "2017-10-10 02:03:05", "216.232.148.95", "2");
INSERT INTO `wp_gf_form_view` VALUES("65945", "3", "2017-10-10 02:14:38", "180.76.15.12", "7");
INSERT INTO `wp_gf_form_view` VALUES("65946", "8", "2017-10-10 02:32:13", "50.247.200.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("65947", "8", "2017-10-10 04:01:25", "70.67.110.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("65948", "3", "2017-10-10 04:20:56", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65949", "6", "2017-10-10 04:20:56", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65950", "9", "2017-10-10 04:20:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65951", "10", "2017-10-10 04:20:58", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("65952", "15", "2017-10-10 04:21:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65953", "10", "2017-10-10 06:31:07", "72.14.199.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("65954", "3", "2017-10-10 08:39:39", "68.180.230.223", "35");
INSERT INTO `wp_gf_form_view` VALUES("65955", "6", "2017-10-10 08:46:27", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65956", "9", "2017-10-10 08:46:28", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65957", "8", "2017-10-10 08:46:28", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65958", "10", "2017-10-10 08:46:29", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65959", "15", "2017-10-10 08:46:31", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65960", "3", "2017-10-10 09:01:48", "180.76.15.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("65961", "9", "2017-10-10 11:15:12", "180.76.15.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("65962", "8", "2017-10-10 11:30:38", "194.187.170.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("65963", "3", "2017-10-10 12:18:56", "40.77.167.100", "7");
INSERT INTO `wp_gf_form_view` VALUES("65964", "9", "2017-10-10 12:20:00", "207.46.13.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("65965", "10", "2017-10-10 12:21:37", "40.77.167.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("65966", "3", "2017-10-10 13:06:21", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65967", "6", "2017-10-10 13:06:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65968", "9", "2017-10-10 13:06:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65969", "8", "2017-10-10 13:06:25", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65970", "10", "2017-10-10 13:06:26", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65971", "15", "2017-10-10 13:06:29", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65972", "10", "2017-10-10 14:14:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("65973", "15", "2017-10-10 14:43:43", "173.239.219.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("65974", "3", "2017-10-10 17:02:25", "180.76.15.148", "32");
INSERT INTO `wp_gf_form_view` VALUES("65975", "6", "2017-10-10 17:22:38", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65976", "9", "2017-10-10 17:22:39", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65977", "8", "2017-10-10 17:22:40", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("65978", "10", "2017-10-10 17:22:40", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65979", "15", "2017-10-10 17:22:43", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65980", "3", "2017-10-10 18:04:31", "184.71.21.162", "6");
INSERT INTO `wp_gf_form_view` VALUES("65981", "8", "2017-10-10 18:05:01", "184.71.21.162", "3");
INSERT INTO `wp_gf_form_view` VALUES("65982", "14", "2017-10-10 18:53:28", "198.103.109.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("65983", "8", "2017-10-10 19:15:47", "216.232.155.179", "1");
INSERT INTO `wp_gf_form_view` VALUES("65984", "10", "2017-10-10 19:34:40", "72.14.199.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("65985", "8", "2017-10-10 20:24:28", "70.67.110.128", "2");
INSERT INTO `wp_gf_form_view` VALUES("65986", "3", "2017-10-10 21:29:20", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("65987", "6", "2017-10-10 21:29:20", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65988", "9", "2017-10-10 21:29:21", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65989", "8", "2017-10-10 21:29:22", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("65990", "10", "2017-10-10 21:29:23", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("65991", "15", "2017-10-10 21:29:25", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65992", "14", "2017-10-10 22:18:09", "107.150.74.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("65993", "8", "2017-10-10 23:35:29", "66.102.6.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("65994", "8", "2017-10-10 23:35:29", "66.102.6.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("65995", "3", "2017-10-10 23:45:47", "180.76.15.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("65996", "10", "2017-10-11 00:40:31", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("65997", "3", "2017-10-11 01:28:07", "66.249.79.149", "32");
INSERT INTO `wp_gf_form_view` VALUES("65998", "6", "2017-10-11 01:35:58", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("65999", "9", "2017-10-11 01:35:59", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66000", "8", "2017-10-11 01:36:00", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66001", "10", "2017-10-11 01:36:00", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66002", "15", "2017-10-11 01:36:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66003", "8", "2017-10-11 02:11:24", "64.180.23.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("66004", "3", "2017-10-11 02:27:20", "24.69.169.218", "3");
INSERT INTO `wp_gf_form_view` VALUES("66005", "10", "2017-10-11 04:57:07", "180.76.15.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("66006", "14", "2017-10-11 05:33:06", "107.150.70.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("66007", "3", "2017-10-11 05:49:14", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66008", "6", "2017-10-11 05:49:14", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66009", "9", "2017-10-11 05:49:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66010", "8", "2017-10-11 05:49:16", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66011", "10", "2017-10-11 05:49:16", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66012", "15", "2017-10-11 05:49:19", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66013", "10", "2017-10-11 06:25:48", "199.16.157.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("66014", "9", "2017-10-11 06:36:45", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("66015", "3", "2017-10-11 07:03:20", "5.188.211.13", "31");
INSERT INTO `wp_gf_form_view` VALUES("66016", "6", "2017-10-11 07:03:21", "5.188.211.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("66017", "9", "2017-10-11 07:03:22", "5.188.211.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("66018", "8", "2017-10-11 07:03:22", "5.188.211.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("66019", "10", "2017-10-11 07:03:23", "5.188.211.13", "5");
INSERT INTO `wp_gf_form_view` VALUES("66020", "15", "2017-10-11 07:03:25", "5.188.211.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("66021", "10", "2017-10-11 08:27:43", "194.187.170.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("66022", "3", "2017-10-11 08:51:56", "180.76.15.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("66023", "3", "2017-10-11 09:33:14", "194.187.170.121", "2");
INSERT INTO `wp_gf_form_view` VALUES("66024", "10", "2017-10-11 10:02:49", "194.187.170.121", "6");
INSERT INTO `wp_gf_form_view` VALUES("66025", "3", "2017-10-11 10:02:53", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66026", "6", "2017-10-11 10:02:54", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66027", "9", "2017-10-11 10:02:55", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66028", "8", "2017-10-11 10:02:55", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66029", "15", "2017-10-11 10:02:58", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66030", "3", "2017-10-11 11:05:17", "180.76.15.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("66031", "3", "2017-10-11 14:14:58", "35.160.137.253", "62");
INSERT INTO `wp_gf_form_view` VALUES("66032", "6", "2017-10-11 14:14:59", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66033", "9", "2017-10-11 14:15:00", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66034", "8", "2017-10-11 14:15:00", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("66035", "10", "2017-10-11 14:15:01", "35.160.137.253", "10");
INSERT INTO `wp_gf_form_view` VALUES("66036", "15", "2017-10-11 14:15:03", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66037", "3", "2017-10-11 15:03:47", "24.68.106.237", "8");
INSERT INTO `wp_gf_form_view` VALUES("66038", "8", "2017-10-11 15:23:20", "40.77.167.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("66039", "3", "2017-10-11 16:40:37", "24.68.106.237", "2");
INSERT INTO `wp_gf_form_view` VALUES("66040", "3", "2017-10-11 17:52:58", "24.68.248.211", "3");
INSERT INTO `wp_gf_form_view` VALUES("66041", "8", "2017-10-11 18:22:50", "104.254.247.188", "6");
INSERT INTO `wp_gf_form_view` VALUES("66042", "3", "2017-10-11 18:23:07", "104.254.247.188", "64");
INSERT INTO `wp_gf_form_view` VALUES("66043", "6", "2017-10-11 18:40:02", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66044", "9", "2017-10-11 18:40:03", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66045", "10", "2017-10-11 18:40:04", "35.160.137.253", "10");
INSERT INTO `wp_gf_form_view` VALUES("66046", "15", "2017-10-11 18:40:07", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66047", "8", "2017-10-11 19:32:16", "24.108.184.241", "2");
INSERT INTO `wp_gf_form_view` VALUES("66048", "3", "2017-10-11 20:30:34", "5.188.211.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("66049", "3", "2017-10-11 21:09:44", "180.76.15.11", "2");
INSERT INTO `wp_gf_form_view` VALUES("66050", "3", "2017-10-11 22:16:20", "180.76.15.147", "32");
INSERT INTO `wp_gf_form_view` VALUES("66051", "6", "2017-10-11 22:46:42", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66052", "9", "2017-10-11 22:46:43", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66053", "8", "2017-10-11 22:46:44", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66054", "10", "2017-10-11 22:46:45", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66055", "15", "2017-10-11 22:46:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66056", "10", "2017-10-11 23:33:19", "72.14.199.161", "2");
INSERT INTO `wp_gf_form_view` VALUES("66057", "3", "2017-10-11 23:35:17", "157.55.39.153", "5");
INSERT INTO `wp_gf_form_view` VALUES("66058", "8", "2017-10-11 23:40:14", "40.77.167.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("66059", "14", "2017-10-11 23:53:03", "24.69.164.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("66060", "10", "2017-10-12 00:29:43", "180.76.15.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("66061", "10", "2017-10-12 01:07:38", "194.187.170.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("66062", "6", "2017-10-12 02:09:44", "180.76.15.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("66063", "3", "2017-10-12 03:10:42", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66064", "6", "2017-10-12 03:10:43", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66065", "9", "2017-10-12 03:10:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66066", "8", "2017-10-12 03:10:44", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66067", "10", "2017-10-12 03:10:45", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66068", "15", "2017-10-12 03:10:47", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66069", "10", "2017-10-12 04:42:28", "199.59.150.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("66070", "8", "2017-10-12 05:32:50", "180.76.15.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("66071", "3", "2017-10-12 06:06:10", "180.76.15.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("66072", "3", "2017-10-12 07:18:40", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66073", "6", "2017-10-12 07:18:40", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66074", "9", "2017-10-12 07:18:41", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66075", "8", "2017-10-12 07:18:41", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66076", "10", "2017-10-12 07:18:42", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66077", "15", "2017-10-12 07:18:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66078", "3", "2017-10-12 08:38:14", "5.188.211.21", "32");
INSERT INTO `wp_gf_form_view` VALUES("66079", "6", "2017-10-12 08:38:15", "5.188.211.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("66080", "9", "2017-10-12 08:38:16", "5.188.211.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("66081", "8", "2017-10-12 08:38:17", "5.188.211.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("66082", "10", "2017-10-12 08:38:17", "5.188.211.21", "5");
INSERT INTO `wp_gf_form_view` VALUES("66083", "15", "2017-10-12 08:38:20", "5.188.211.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("66084", "14", "2017-10-12 09:06:10", "131.153.28.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("66085", "14", "2017-10-12 11:00:07", "201.37.77.230", "5");
INSERT INTO `wp_gf_form_view` VALUES("66086", "3", "2017-10-12 11:16:19", "68.180.230.223", "33");
INSERT INTO `wp_gf_form_view` VALUES("66087", "6", "2017-10-12 11:27:47", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66088", "9", "2017-10-12 11:27:49", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66089", "8", "2017-10-12 11:27:49", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66090", "10", "2017-10-12 11:27:50", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66091", "15", "2017-10-12 11:27:53", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66092", "3", "2017-10-12 13:20:45", "180.76.15.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("66093", "3", "2017-10-12 14:06:48", "66.249.79.61", "2");
INSERT INTO `wp_gf_form_view` VALUES("66094", "10", "2017-10-12 15:14:21", "207.46.13.18", "7");
INSERT INTO `wp_gf_form_view` VALUES("66095", "3", "2017-10-12 15:23:21", "180.76.15.12", "33");
INSERT INTO `wp_gf_form_view` VALUES("66096", "6", "2017-10-12 15:39:43", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66097", "9", "2017-10-12 15:39:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66098", "8", "2017-10-12 15:39:45", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66099", "15", "2017-10-12 15:39:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66100", "8", "2017-10-12 16:03:01", "184.66.137.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("66101", "14", "2017-10-12 16:14:19", "64.251.78.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("66102", "3", "2017-10-12 16:22:26", "46.4.58.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("66103", "3", "2017-10-12 17:09:46", "207.46.13.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("66104", "14", "2017-10-12 17:27:04", "212.237.56.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("66105", "8", "2017-10-12 17:56:59", "66.102.6.209", "2");
INSERT INTO `wp_gf_form_view` VALUES("66106", "8", "2017-10-12 19:03:03", "184.69.2.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("66107", "9", "2017-10-12 19:12:16", "217.182.91.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("66108", "3", "2017-10-12 19:48:53", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66109", "6", "2017-10-12 19:48:54", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66110", "10", "2017-10-12 19:48:56", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66111", "15", "2017-10-12 19:48:59", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66112", "8", "2017-10-12 20:15:18", "66.249.79.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("66113", "10", "2017-10-12 22:04:11", "157.55.39.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("66114", "10", "2017-10-12 23:02:45", "199.59.150.183", "11");
INSERT INTO `wp_gf_form_view` VALUES("66115", "3", "2017-10-12 23:55:01", "35.160.137.253", "62");
INSERT INTO `wp_gf_form_view` VALUES("66116", "6", "2017-10-12 23:55:02", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66117", "9", "2017-10-12 23:55:03", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66118", "8", "2017-10-12 23:55:03", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("66119", "15", "2017-10-12 23:55:07", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66120", "3", "2017-10-13 01:36:19", "180.76.15.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("66121", "8", "2017-10-13 02:09:38", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("66122", "3", "2017-10-13 02:31:24", "64.66.25.129", "4");
INSERT INTO `wp_gf_form_view` VALUES("66123", "10", "2017-10-13 02:35:58", "66.249.79.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("66124", "3", "2017-10-13 03:48:42", "180.76.15.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("66125", "8", "2017-10-13 04:31:35", "66.249.79.35", "3");
INSERT INTO `wp_gf_form_view` VALUES("66126", "3", "2017-10-13 04:37:55", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66127", "6", "2017-10-13 04:37:56", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66128", "9", "2017-10-13 04:37:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66129", "10", "2017-10-13 04:37:58", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66130", "15", "2017-10-13 04:38:00", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66131", "3", "2017-10-13 05:13:11", "24.68.32.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("66132", "10", "2017-10-13 05:53:31", "24.108.13.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("66133", "8", "2017-10-13 06:28:00", "184.69.126.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("66134", "3", "2017-10-13 06:35:30", "180.76.15.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("66135", "3", "2017-10-13 08:04:28", "66.249.79.87", "33");
INSERT INTO `wp_gf_form_view` VALUES("66136", "6", "2017-10-13 08:42:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66137", "9", "2017-10-13 08:42:02", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66138", "8", "2017-10-13 08:42:03", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66139", "10", "2017-10-13 08:42:04", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66140", "15", "2017-10-13 08:42:06", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66141", "14", "2017-10-13 11:39:47", "157.55.39.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("66142", "3", "2017-10-13 12:12:30", "178.255.41.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66143", "6", "2017-10-13 12:51:19", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66144", "9", "2017-10-13 12:51:20", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66145", "8", "2017-10-13 12:51:21", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66146", "10", "2017-10-13 12:51:21", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66147", "15", "2017-10-13 12:51:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66148", "8", "2017-10-13 13:57:50", "157.55.39.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("66149", "3", "2017-10-13 14:08:50", "180.76.15.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("66150", "10", "2017-10-13 14:28:50", "70.67.50.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("66151", "3", "2017-10-13 15:12:08", "144.76.6.230", "3");
INSERT INTO `wp_gf_form_view` VALUES("66152", "14", "2017-10-13 15:33:13", "23.245.152.154", "3");
INSERT INTO `wp_gf_form_view` VALUES("66153", "10", "2017-10-13 16:02:59", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("66154", "3", "2017-10-13 16:56:53", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66155", "6", "2017-10-13 16:56:53", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66156", "9", "2017-10-13 16:56:54", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66157", "8", "2017-10-13 16:56:55", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66158", "15", "2017-10-13 16:56:58", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66159", "3", "2017-10-13 17:30:17", "180.76.15.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("66160", "10", "2017-10-13 17:51:01", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66161", "10", "2017-10-13 18:01:23", "72.14.199.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("66162", "3", "2017-10-13 18:12:32", "184.66.146.174", "3");
INSERT INTO `wp_gf_form_view` VALUES("66163", "14", "2017-10-13 18:37:25", "96.54.246.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("66164", "8", "2017-10-13 18:46:58", "173.183.121.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("66165", "3", "2017-10-13 19:47:54", "178.63.1.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("66166", "8", "2017-10-13 19:49:21", "178.63.1.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("66167", "14", "2017-10-13 19:50:46", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("66168", "3", "2017-10-13 20:50:22", "157.55.39.153", "32");
INSERT INTO `wp_gf_form_view` VALUES("66169", "6", "2017-10-13 20:57:25", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66170", "9", "2017-10-13 20:57:27", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66171", "8", "2017-10-13 20:57:27", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66172", "10", "2017-10-13 20:57:28", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66173", "15", "2017-10-13 20:57:30", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66174", "8", "2017-10-13 21:40:16", "154.20.7.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("66175", "10", "2017-10-13 22:39:46", "180.76.15.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("66176", "8", "2017-10-13 23:18:34", "154.20.28.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("66177", "3", "2017-10-13 23:38:50", "24.68.252.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("66178", "8", "2017-10-14 00:03:13", "216.232.151.3", "3");
INSERT INTO `wp_gf_form_view` VALUES("66179", "8", "2017-10-14 01:07:34", "184.66.42.23", "4");
INSERT INTO `wp_gf_form_view` VALUES("66180", "3", "2017-10-14 01:14:14", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66181", "6", "2017-10-14 01:14:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66182", "9", "2017-10-14 01:14:17", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66183", "10", "2017-10-14 01:14:19", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66184", "15", "2017-10-14 01:14:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66185", "14", "2017-10-14 01:26:12", "96.54.246.107", "1");
INSERT INTO `wp_gf_form_view` VALUES("66186", "8", "2017-10-14 02:27:21", "40.77.167.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("66187", "3", "2017-10-14 03:39:46", "180.76.15.157", "5");
INSERT INTO `wp_gf_form_view` VALUES("66188", "8", "2017-10-14 03:57:42", "217.217.179.17", "2");
INSERT INTO `wp_gf_form_view` VALUES("66189", "3", "2017-10-14 04:01:17", "217.217.179.17", "11");
INSERT INTO `wp_gf_form_view` VALUES("66190", "12", "2017-10-14 04:39:51", "157.55.39.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("66191", "10", "2017-10-14 04:43:12", "157.55.39.73", "5");
INSERT INTO `wp_gf_form_view` VALUES("66192", "9", "2017-10-14 04:43:16", "157.55.39.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("66193", "3", "2017-10-14 05:30:34", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66194", "6", "2017-10-14 05:30:35", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66195", "9", "2017-10-14 05:30:36", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66196", "8", "2017-10-14 05:30:37", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66197", "10", "2017-10-14 05:30:37", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66198", "15", "2017-10-14 05:30:40", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66199", "8", "2017-10-14 06:21:21", "24.108.23.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("66200", "10", "2017-10-14 07:26:13", "77.88.5.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("66201", "3", "2017-10-14 07:31:44", "66.183.101.202", "6");
INSERT INTO `wp_gf_form_view` VALUES("66202", "15", "2017-10-14 07:56:33", "46.229.168.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("66203", "10", "2017-10-14 08:01:53", "46.229.168.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("66204", "3", "2017-10-14 08:06:28", "46.229.168.79", "4");
INSERT INTO `wp_gf_form_view` VALUES("66205", "6", "2017-10-14 08:14:44", "46.229.168.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("66206", "3", "2017-10-14 09:32:41", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66207", "6", "2017-10-14 09:32:41", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66208", "9", "2017-10-14 09:32:42", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66209", "8", "2017-10-14 09:32:43", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66210", "10", "2017-10-14 09:32:43", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66211", "15", "2017-10-14 09:32:46", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66212", "3", "2017-10-14 10:00:23", "77.88.5.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("66213", "11", "2017-10-14 10:14:06", "93.158.161.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("66214", "10", "2017-10-14 11:05:38", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("66215", "10", "2017-10-14 12:00:15", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66216", "3", "2017-10-14 12:29:54", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("66217", "3", "2017-10-14 13:39:53", "35.160.137.253", "62");
INSERT INTO `wp_gf_form_view` VALUES("66218", "6", "2017-10-14 13:39:53", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66219", "9", "2017-10-14 13:39:55", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66220", "8", "2017-10-14 13:39:55", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("66221", "10", "2017-10-14 13:39:56", "35.160.137.253", "11");
INSERT INTO `wp_gf_form_view` VALUES("66222", "15", "2017-10-14 13:39:58", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66223", "10", "2017-10-14 14:55:26", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66224", "10", "2017-10-14 15:32:34", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66225", "3", "2017-10-14 15:34:01", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("66226", "3", "2017-10-14 16:33:32", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("66227", "10", "2017-10-14 16:45:07", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66228", "3", "2017-10-14 17:44:21", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66229", "6", "2017-10-14 17:44:22", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66230", "9", "2017-10-14 17:44:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66231", "8", "2017-10-14 17:44:23", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66232", "10", "2017-10-14 17:44:24", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66233", "15", "2017-10-14 17:44:26", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66234", "3", "2017-10-14 18:05:29", "24.68.252.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("66235", "10", "2017-10-14 18:29:08", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66236", "10", "2017-10-14 19:43:03", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("66237", "3", "2017-10-14 21:35:52", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66238", "6", "2017-10-14 21:35:52", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66239", "9", "2017-10-14 21:35:53", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66240", "8", "2017-10-14 21:35:54", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66241", "10", "2017-10-14 21:35:54", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66242", "15", "2017-10-14 21:35:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66243", "10", "2017-10-14 22:29:36", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("66244", "3", "2017-10-15 01:43:47", "180.76.15.140", "32");
INSERT INTO `wp_gf_form_view` VALUES("66245", "6", "2017-10-15 01:58:59", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66246", "9", "2017-10-15 01:59:00", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66247", "8", "2017-10-15 01:59:01", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66248", "10", "2017-10-15 01:59:01", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66249", "15", "2017-10-15 01:59:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66250", "10", "2017-10-15 02:01:25", "24.108.13.92", "3");
INSERT INTO `wp_gf_form_view` VALUES("66251", "3", "2017-10-15 02:31:10", "146.185.223.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("66252", "8", "2017-10-15 03:18:03", "212.225.203.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("66253", "3", "2017-10-15 03:18:10", "212.225.203.134", "8");
INSERT INTO `wp_gf_form_view` VALUES("66254", "3", "2017-10-15 04:48:07", "151.80.31.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("66255", "3", "2017-10-15 05:41:18", "157.55.39.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("66256", "3", "2017-10-15 06:03:18", "35.160.137.253", "33");
INSERT INTO `wp_gf_form_view` VALUES("66257", "6", "2017-10-15 06:03:18", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66258", "9", "2017-10-15 06:03:19", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66259", "8", "2017-10-15 06:03:20", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66260", "10", "2017-10-15 06:03:21", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66261", "15", "2017-10-15 06:03:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66262", "10", "2017-10-15 08:33:41", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("66263", "3", "2017-10-15 10:09:53", "35.160.137.253", "62");
INSERT INTO `wp_gf_form_view` VALUES("66264", "6", "2017-10-15 10:09:53", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66265", "9", "2017-10-15 10:09:54", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66266", "8", "2017-10-15 10:09:55", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("66267", "10", "2017-10-15 10:09:56", "35.160.137.253", "11");
INSERT INTO `wp_gf_form_view` VALUES("66268", "15", "2017-10-15 10:10:00", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66269", "3", "2017-10-15 11:11:02", "207.46.13.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("66270", "10", "2017-10-15 12:00:24", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("66271", "3", "2017-10-15 12:50:37", "180.76.15.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("66272", "3", "2017-10-15 14:12:14", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66273", "6", "2017-10-15 14:12:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66274", "9", "2017-10-15 14:12:16", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66275", "8", "2017-10-15 14:12:17", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66276", "10", "2017-10-15 14:12:19", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66277", "15", "2017-10-15 14:12:22", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66278", "3", "2017-10-15 15:29:49", "5.188.211.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("66279", "10", "2017-10-15 15:37:07", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("66280", "3", "2017-10-15 16:10:31", "180.76.15.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("66281", "10", "2017-10-15 16:27:16", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66282", "3", "2017-10-15 18:13:44", "164.132.161.94", "32");
INSERT INTO `wp_gf_form_view` VALUES("66283", "6", "2017-10-15 18:15:20", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66284", "9", "2017-10-15 18:15:22", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66285", "8", "2017-10-15 18:15:22", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66286", "10", "2017-10-15 18:15:23", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66287", "15", "2017-10-15 18:15:28", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66288", "14", "2017-10-15 18:54:12", "70.67.53.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("66289", "3", "2017-10-15 19:07:25", "24.69.17.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("66290", "14", "2017-10-15 19:42:15", "148.64.56.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("66291", "10", "2017-10-15 22:04:06", "72.14.199.115", "6");
INSERT INTO `wp_gf_form_view` VALUES("66292", "3", "2017-10-15 22:04:44", "180.76.15.157", "32");
INSERT INTO `wp_gf_form_view` VALUES("66293", "6", "2017-10-15 22:18:11", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66294", "9", "2017-10-15 22:18:12", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66295", "8", "2017-10-15 22:18:12", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66296", "15", "2017-10-15 22:18:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66297", "3", "2017-10-15 23:05:28", "71.219.108.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("66298", "14", "2017-10-15 23:06:02", "71.219.108.183", "3");
INSERT INTO `wp_gf_form_view` VALUES("66299", "10", "2017-10-15 23:15:05", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("66300", "14", "2017-10-16 00:21:44", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("66301", "3", "2017-10-16 00:38:57", "169.60.128.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("66302", "10", "2017-10-16 01:50:23", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66303", "3", "2017-10-16 02:21:00", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66304", "6", "2017-10-16 02:21:00", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66305", "9", "2017-10-16 02:21:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66306", "8", "2017-10-16 02:21:02", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66307", "10", "2017-10-16 02:21:02", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66308", "15", "2017-10-16 02:21:05", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66309", "3", "2017-10-16 03:52:33", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("66310", "3", "2017-10-16 04:00:29", "169.48.66.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("66311", "3", "2017-10-16 06:30:14", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66312", "6", "2017-10-16 06:30:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66313", "9", "2017-10-16 06:30:16", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66314", "8", "2017-10-16 06:30:16", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66315", "10", "2017-10-16 06:30:17", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66316", "15", "2017-10-16 06:30:19", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66317", "3", "2017-10-16 07:42:28", "5.188.211.26", "18");
INSERT INTO `wp_gf_form_view` VALUES("66318", "8", "2017-10-16 07:42:30", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("66319", "10", "2017-10-16 07:42:31", "5.188.211.26", "5");
INSERT INTO `wp_gf_form_view` VALUES("66320", "15", "2017-10-16 07:42:33", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("66321", "3", "2017-10-16 09:22:19", "180.76.15.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("66322", "3", "2017-10-16 10:28:58", "180.76.15.139", "32");
INSERT INTO `wp_gf_form_view` VALUES("66323", "6", "2017-10-16 10:38:42", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66324", "9", "2017-10-16 10:38:43", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66325", "8", "2017-10-16 10:38:44", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66326", "10", "2017-10-16 10:38:44", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66327", "15", "2017-10-16 10:38:47", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66328", "14", "2017-10-16 11:46:40", "198.148.15.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("66329", "10", "2017-10-16 12:00:17", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("66330", "3", "2017-10-16 12:50:41", "217.182.132.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("66331", "3", "2017-10-16 13:06:21", "70.67.188.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("66332", "3", "2017-10-16 14:06:53", "180.76.15.149", "33");
INSERT INTO `wp_gf_form_view` VALUES("66333", "10", "2017-10-16 14:20:06", "66.249.79.21", "8");
INSERT INTO `wp_gf_form_view` VALUES("66334", "6", "2017-10-16 14:47:09", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66335", "9", "2017-10-16 14:47:10", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66336", "8", "2017-10-16 14:47:11", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66337", "15", "2017-10-16 14:47:14", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66338", "3", "2017-10-16 15:13:39", "180.76.15.25", "2");
INSERT INTO `wp_gf_form_view` VALUES("66339", "6", "2017-10-16 16:35:04", "66.249.79.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("66340", "10", "2017-10-16 16:51:47", "51.255.71.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("66341", "3", "2017-10-16 17:22:32", "154.20.28.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("66342", "15", "2017-10-16 17:44:43", "69.171.225.154", "3");
INSERT INTO `wp_gf_form_view` VALUES("66343", "8", "2017-10-16 18:07:42", "12.202.16.36", "3");
INSERT INTO `wp_gf_form_view` VALUES("66344", "3", "2017-10-16 18:07:54", "12.202.16.36", "7");
INSERT INTO `wp_gf_form_view` VALUES("66345", "3", "2017-10-16 19:06:21", "35.160.137.253", "39");
INSERT INTO `wp_gf_form_view` VALUES("66346", "6", "2017-10-16 19:06:21", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66347", "9", "2017-10-16 19:06:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66348", "8", "2017-10-16 19:06:23", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("66349", "10", "2017-10-16 19:06:24", "35.160.137.253", "9");
INSERT INTO `wp_gf_form_view` VALUES("66350", "15", "2017-10-16 19:06:26", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66351", "3", "2017-10-16 20:03:28", "180.76.15.16", "4");
INSERT INTO `wp_gf_form_view` VALUES("66352", "3", "2017-10-16 21:01:07", "164.132.162.155", "3");
INSERT INTO `wp_gf_form_view` VALUES("66353", "10", "2017-10-16 22:32:17", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("66354", "3", "2017-10-16 23:17:40", "35.160.137.253", "39");
INSERT INTO `wp_gf_form_view` VALUES("66355", "6", "2017-10-16 23:17:41", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66356", "9", "2017-10-16 23:17:42", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66357", "8", "2017-10-16 23:17:43", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66358", "10", "2017-10-16 23:17:43", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66359", "15", "2017-10-16 23:17:46", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66360", "10", "2017-10-17 01:47:20", "66.249.89.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("66361", "14", "2017-10-17 02:38:25", "103.204.110.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("66362", "10", "2017-10-17 03:26:38", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("66363", "3", "2017-10-17 03:39:14", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66364", "6", "2017-10-17 03:39:14", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66365", "9", "2017-10-17 03:39:16", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66366", "8", "2017-10-17 03:39:16", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66367", "15", "2017-10-17 03:39:19", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66368", "3", "2017-10-17 04:32:34", "164.132.161.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("66369", "3", "2017-10-17 05:03:52", "96.50.16.229", "4");
INSERT INTO `wp_gf_form_view` VALUES("66370", "14", "2017-10-17 05:05:15", "64.180.75.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("66371", "3", "2017-10-17 06:09:04", "46.4.32.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("66372", "8", "2017-10-17 06:09:15", "46.4.32.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("66373", "10", "2017-10-17 06:46:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66374", "10", "2017-10-17 07:07:33", "51.255.65.83", "7");
INSERT INTO `wp_gf_form_view` VALUES("66375", "3", "2017-10-17 07:47:04", "35.160.137.253", "36");
INSERT INTO `wp_gf_form_view` VALUES("66376", "6", "2017-10-17 07:47:05", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66377", "9", "2017-10-17 07:47:06", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66378", "8", "2017-10-17 07:47:07", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66379", "15", "2017-10-17 07:47:12", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66380", "10", "2017-10-17 08:31:29", "180.76.15.12", "2");
INSERT INTO `wp_gf_form_view` VALUES("66381", "8", "2017-10-17 09:04:44", "144.76.115.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("66382", "3", "2017-10-17 09:09:36", "5.188.211.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("66383", "14", "2017-10-17 10:24:36", "118.140.38.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("66384", "3", "2017-10-17 10:25:49", "118.140.38.6", "5");
INSERT INTO `wp_gf_form_view` VALUES("66385", "8", "2017-10-17 10:29:24", "118.140.38.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("66386", "3", "2017-10-17 11:26:32", "180.76.15.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("66387", "10", "2017-10-17 12:00:28", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("66388", "3", "2017-10-17 12:04:38", "68.180.230.223", "35");
INSERT INTO `wp_gf_form_view` VALUES("66389", "6", "2017-10-17 12:12:28", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66390", "9", "2017-10-17 12:12:29", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66391", "8", "2017-10-17 12:12:30", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66392", "15", "2017-10-17 12:12:34", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66393", "10", "2017-10-17 13:06:26", "180.76.15.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("66394", "3", "2017-10-17 13:39:45", "180.76.15.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("66395", "10", "2017-10-17 14:13:16", "180.76.15.31", "3");
INSERT INTO `wp_gf_form_view` VALUES("66396", "10", "2017-10-17 15:01:42", "66.249.89.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("66397", "3", "2017-10-17 15:17:37", "70.67.110.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("66398", "3", "2017-10-17 16:20:50", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66399", "6", "2017-10-17 16:20:51", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66400", "9", "2017-10-17 16:20:52", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66401", "8", "2017-10-17 16:20:53", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66402", "10", "2017-10-17 16:20:54", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66403", "15", "2017-10-17 16:20:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66404", "3", "2017-10-17 17:12:10", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("66405", "10", "2017-10-17 18:28:05", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66406", "3", "2017-10-17 19:09:39", "89.123.49.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("66407", "8", "2017-10-17 19:42:54", "180.76.15.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("66408", "3", "2017-10-17 20:16:07", "180.76.15.28", "32");
INSERT INTO `wp_gf_form_view` VALUES("66409", "6", "2017-10-17 20:31:26", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66410", "9", "2017-10-17 20:31:28", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66411", "8", "2017-10-17 20:31:28", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66412", "10", "2017-10-17 20:31:29", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66413", "15", "2017-10-17 20:31:31", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66414", "10", "2017-10-17 22:45:28", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66415", "3", "2017-10-18 00:49:29", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66416", "6", "2017-10-18 00:49:29", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66417", "9", "2017-10-18 00:49:30", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66418", "8", "2017-10-18 00:49:31", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66419", "10", "2017-10-18 00:49:31", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66420", "15", "2017-10-18 00:49:33", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66421", "10", "2017-10-18 01:16:04", "180.76.15.27", "3");
INSERT INTO `wp_gf_form_view` VALUES("66422", "3", "2017-10-18 02:22:43", "180.76.15.33", "4");
INSERT INTO `wp_gf_form_view` VALUES("66423", "10", "2017-10-18 03:19:43", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66424", "3", "2017-10-18 04:43:06", "24.108.181.21", "34");
INSERT INTO `wp_gf_form_view` VALUES("66425", "10", "2017-10-18 04:56:55", "77.88.5.64", "6");
INSERT INTO `wp_gf_form_view` VALUES("66426", "6", "2017-10-18 04:57:20", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66427", "9", "2017-10-18 04:57:21", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66428", "8", "2017-10-18 04:57:21", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66429", "15", "2017-10-18 04:57:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66430", "3", "2017-10-18 05:11:14", "64.180.75.215", "10");
INSERT INTO `wp_gf_form_view` VALUES("66431", "14", "2017-10-18 05:14:35", "64.180.75.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("66432", "10", "2017-10-18 05:20:32", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("66433", "10", "2017-10-18 07:08:16", "199.59.150.183", "2");
INSERT INTO `wp_gf_form_view` VALUES("66434", "3", "2017-10-18 07:43:28", "68.180.230.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("66435", "3", "2017-10-18 08:10:35", "184.66.8.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("66436", "3", "2017-10-18 09:13:49", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66437", "6", "2017-10-18 09:13:49", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66438", "9", "2017-10-18 09:13:50", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66439", "8", "2017-10-18 09:13:51", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66440", "10", "2017-10-18 09:13:51", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66441", "15", "2017-10-18 09:13:54", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66442", "3", "2017-10-18 10:04:24", "5.188.211.22", "31");
INSERT INTO `wp_gf_form_view` VALUES("66443", "6", "2017-10-18 10:04:24", "5.188.211.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("66444", "9", "2017-10-18 10:04:25", "5.188.211.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("66445", "8", "2017-10-18 10:04:26", "5.188.211.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("66446", "10", "2017-10-18 10:04:27", "5.188.211.22", "5");
INSERT INTO `wp_gf_form_view` VALUES("66447", "15", "2017-10-18 10:04:30", "5.188.211.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("66448", "10", "2017-10-18 13:19:52", "217.182.132.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("66449", "3", "2017-10-18 13:22:55", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66450", "6", "2017-10-18 13:22:56", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66451", "9", "2017-10-18 13:22:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66452", "8", "2017-10-18 13:22:57", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66453", "15", "2017-10-18 13:23:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66454", "3", "2017-10-18 14:26:01", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("66455", "3", "2017-10-18 15:23:49", "180.76.15.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("66456", "3", "2017-10-18 16:10:17", "184.71.24.158", "4");
INSERT INTO `wp_gf_form_view` VALUES("66457", "3", "2017-10-18 17:03:50", "180.76.15.140", "42");
INSERT INTO `wp_gf_form_view` VALUES("66458", "10", "2017-10-18 17:26:05", "51.255.71.114", "14");
INSERT INTO `wp_gf_form_view` VALUES("66459", "6", "2017-10-18 17:33:09", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66460", "9", "2017-10-18 17:33:11", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("66461", "8", "2017-10-18 17:33:11", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66462", "15", "2017-10-18 17:33:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66463", "3", "2017-10-18 18:16:29", "40.77.167.36", "6");
INSERT INTO `wp_gf_form_view` VALUES("66464", "10", "2017-10-18 18:18:39", "40.77.167.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("66465", "6", "2017-10-18 18:33:37", "40.77.167.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("66466", "8", "2017-10-18 19:55:00", "180.76.15.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("66467", "3", "2017-10-18 20:00:22", "209.52.88.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("66468", "3", "2017-10-18 22:14:43", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66469", "6", "2017-10-18 22:14:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66470", "9", "2017-10-18 22:14:45", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66471", "8", "2017-10-18 22:14:46", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66472", "10", "2017-10-18 22:14:46", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66473", "15", "2017-10-18 22:14:49", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66474", "3", "2017-10-19 00:16:05", "207.46.13.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("66475", "3", "2017-10-19 01:00:29", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("66476", "10", "2017-10-19 01:38:15", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66477", "3", "2017-10-19 02:21:29", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66478", "6", "2017-10-19 02:21:30", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66479", "9", "2017-10-19 02:21:33", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66480", "8", "2017-10-19 02:21:34", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66481", "10", "2017-10-19 02:21:35", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66482", "15", "2017-10-19 02:21:39", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66483", "10", "2017-10-19 04:37:46", "40.77.167.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("66484", "10", "2017-10-19 06:32:11", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("66485", "3", "2017-10-19 06:34:23", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66486", "6", "2017-10-19 06:34:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66487", "9", "2017-10-19 06:34:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66488", "8", "2017-10-19 06:34:25", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66489", "15", "2017-10-19 06:34:28", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66490", "3", "2017-10-19 08:00:08", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("66491", "10", "2017-10-19 09:13:33", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("66492", "3", "2017-10-19 09:28:09", "180.76.15.23", "3");
INSERT INTO `wp_gf_form_view` VALUES("66493", "3", "2017-10-19 10:46:01", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66494", "6", "2017-10-19 10:46:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66495", "9", "2017-10-19 10:46:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66496", "8", "2017-10-19 10:46:04", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66497", "10", "2017-10-19 10:46:05", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66498", "15", "2017-10-19 10:46:09", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66499", "3", "2017-10-19 11:08:03", "180.76.15.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("66500", "10", "2017-10-19 12:00:24", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66501", "3", "2017-10-19 12:02:28", "217.182.132.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("66502", "3", "2017-10-19 14:57:23", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66503", "6", "2017-10-19 14:57:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66504", "9", "2017-10-19 14:57:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66505", "8", "2017-10-19 14:57:25", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66506", "10", "2017-10-19 14:57:26", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66507", "15", "2017-10-19 14:57:28", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66508", "3", "2017-10-19 16:03:47", "207.194.133.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("66509", "3", "2017-10-19 17:01:24", "207.194.133.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("66510", "3", "2017-10-19 18:21:19", "180.76.15.27", "4");
INSERT INTO `wp_gf_form_view` VALUES("66511", "3", "2017-10-19 19:03:34", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66512", "6", "2017-10-19 19:03:35", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66513", "9", "2017-10-19 19:03:37", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66514", "8", "2017-10-19 19:03:39", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66515", "10", "2017-10-19 19:03:40", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66516", "15", "2017-10-19 19:03:45", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66517", "10", "2017-10-19 20:46:05", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66518", "3", "2017-10-19 21:33:11", "74.208.200.94", "6");
INSERT INTO `wp_gf_form_view` VALUES("66519", "3", "2017-10-19 22:13:36", "51.255.65.73", "5");
INSERT INTO `wp_gf_form_view` VALUES("66520", "3", "2017-10-19 23:04:11", "164.132.161.91", "43");
INSERT INTO `wp_gf_form_view` VALUES("66521", "6", "2017-10-19 23:18:26", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66522", "9", "2017-10-19 23:18:29", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66523", "8", "2017-10-19 23:18:30", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66524", "10", "2017-10-19 23:18:31", "35.160.137.253", "13");
INSERT INTO `wp_gf_form_view` VALUES("66525", "15", "2017-10-19 23:18:36", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66526", "3", "2017-10-20 00:01:27", "46.229.168.72", "6");
INSERT INTO `wp_gf_form_view` VALUES("66527", "14", "2017-10-20 01:01:32", "107.158.216.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("66528", "3", "2017-10-20 02:03:20", "71.43.105.234", "7");
INSERT INTO `wp_gf_form_view` VALUES("66529", "3", "2017-10-20 03:25:46", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66530", "6", "2017-10-20 03:25:47", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66531", "9", "2017-10-20 03:25:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66532", "8", "2017-10-20 03:25:48", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66533", "10", "2017-10-20 03:25:49", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66534", "15", "2017-10-20 03:25:51", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66535", "11", "2017-10-20 05:16:50", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66536", "14", "2017-10-20 06:09:41", "180.76.15.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("66537", "3", "2017-10-20 06:46:21", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("66538", "3", "2017-10-20 07:16:19", "180.76.15.33", "33");
INSERT INTO `wp_gf_form_view` VALUES("66539", "6", "2017-10-20 07:37:06", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66540", "9", "2017-10-20 07:37:07", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66541", "8", "2017-10-20 07:37:07", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66542", "10", "2017-10-20 07:37:08", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66543", "15", "2017-10-20 07:37:10", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66544", "3", "2017-10-20 08:22:59", "180.76.15.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("66545", "3", "2017-10-20 09:00:55", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("66546", "10", "2017-10-20 11:41:06", "51.255.65.7", "6");
INSERT INTO `wp_gf_form_view` VALUES("66547", "3", "2017-10-20 11:44:21", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66548", "6", "2017-10-20 11:44:21", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66549", "9", "2017-10-20 11:44:22", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66550", "8", "2017-10-20 11:44:23", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66551", "15", "2017-10-20 11:44:26", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66552", "10", "2017-10-20 12:27:44", "66.249.92.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("66553", "3", "2017-10-20 12:47:49", "104.254.247.188", "15");
INSERT INTO `wp_gf_form_view` VALUES("66554", "14", "2017-10-20 12:56:00", "104.254.247.188", "2");
INSERT INTO `wp_gf_form_view` VALUES("66555", "3", "2017-10-20 13:00:05", "104.254.247.188", "3");
INSERT INTO `wp_gf_form_view` VALUES("66556", "10", "2017-10-20 13:25:31", "199.16.157.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("66557", "3", "2017-10-20 14:24:01", "207.46.13.105", "2");
INSERT INTO `wp_gf_form_view` VALUES("66558", "10", "2017-10-20 14:28:57", "51.255.65.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("66559", "3", "2017-10-20 15:51:58", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66560", "6", "2017-10-20 15:51:58", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66561", "9", "2017-10-20 15:51:59", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66562", "8", "2017-10-20 15:52:00", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66563", "10", "2017-10-20 15:52:01", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66564", "15", "2017-10-20 15:52:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66565", "10", "2017-10-20 16:51:59", "70.67.196.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("66566", "3", "2017-10-20 16:52:22", "70.67.196.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("66567", "3", "2017-10-20 18:20:09", "51.255.65.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("66568", "14", "2017-10-20 18:53:40", "24.108.24.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("66569", "3", "2017-10-20 19:11:27", "51.255.65.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("66570", "10", "2017-10-20 20:09:15", "207.46.13.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("66571", "3", "2017-10-20 20:15:53", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66572", "6", "2017-10-20 20:15:53", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66573", "9", "2017-10-20 20:15:54", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66574", "8", "2017-10-20 20:15:54", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("66575", "15", "2017-10-20 20:15:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66576", "3", "2017-10-20 23:39:09", "207.46.13.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("66577", "3", "2017-10-21 00:13:44", "35.160.137.253", "37");
INSERT INTO `wp_gf_form_view` VALUES("66578", "6", "2017-10-21 00:13:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66579", "9", "2017-10-21 00:13:45", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66580", "8", "2017-10-21 00:13:46", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66581", "10", "2017-10-21 00:13:46", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66582", "15", "2017-10-21 00:13:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66583", "14", "2017-10-21 01:21:23", "144.217.116.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("66584", "10", "2017-10-21 01:28:34", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("66585", "10", "2017-10-21 02:35:01", "66.249.92.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("66586", "10", "2017-10-21 03:09:26", "207.46.13.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("66587", "10", "2017-10-21 04:22:50", "80.241.214.124", "6");
INSERT INTO `wp_gf_form_view` VALUES("66588", "15", "2017-10-21 04:22:57", "80.241.214.124", "2");
INSERT INTO `wp_gf_form_view` VALUES("66589", "3", "2017-10-21 04:31:29", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66590", "6", "2017-10-21 04:31:30", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66591", "9", "2017-10-21 04:31:31", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66592", "8", "2017-10-21 04:31:31", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66593", "3", "2017-10-21 06:38:49", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("66594", "3", "2017-10-21 08:40:46", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66595", "6", "2017-10-21 08:40:47", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66596", "9", "2017-10-21 08:40:49", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66597", "8", "2017-10-21 08:40:49", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66598", "10", "2017-10-21 08:40:50", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66599", "15", "2017-10-21 08:40:52", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66600", "10", "2017-10-21 09:04:29", "5.188.211.10", "5");
INSERT INTO `wp_gf_form_view` VALUES("66601", "3", "2017-10-21 09:05:44", "5.188.211.10", "6");
INSERT INTO `wp_gf_form_view` VALUES("66602", "8", "2017-10-21 10:12:24", "66.249.66.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("66603", "10", "2017-10-21 10:20:14", "137.74.207.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("66604", "10", "2017-10-21 12:18:26", "61.132.116.202", "9");
INSERT INTO `wp_gf_form_view` VALUES("66605", "3", "2017-10-21 12:30:28", "68.180.230.223", "32");
INSERT INTO `wp_gf_form_view` VALUES("66606", "6", "2017-10-21 12:59:24", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66607", "9", "2017-10-21 12:59:27", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66608", "8", "2017-10-21 12:59:28", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66609", "15", "2017-10-21 12:59:34", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66610", "3", "2017-10-21 13:00:45", "68.180.230.223", "11");
INSERT INTO `wp_gf_form_view` VALUES("66611", "3", "2017-10-21 14:15:08", "51.255.65.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("66612", "3", "2017-10-21 15:27:00", "68.180.230.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("66613", "12", "2017-10-21 16:22:24", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66614", "10", "2017-10-21 16:26:18", "51.255.65.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("66615", "3", "2017-10-21 16:26:40", "75.156.99.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("66616", "3", "2017-10-21 17:03:20", "45.55.242.204", "36");
INSERT INTO `wp_gf_form_view` VALUES("66617", "14", "2017-10-21 17:09:15", "179.208.201.94", "2");
INSERT INTO `wp_gf_form_view` VALUES("66618", "6", "2017-10-21 17:17:07", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66619", "9", "2017-10-21 17:17:10", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66620", "8", "2017-10-21 17:17:11", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66621", "10", "2017-10-21 17:17:13", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66622", "15", "2017-10-21 17:17:17", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66623", "10", "2017-10-21 18:37:28", "217.182.132.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("66624", "3", "2017-10-21 19:07:47", "5.188.211.22", "8");
INSERT INTO `wp_gf_form_view` VALUES("66625", "14", "2017-10-21 20:03:53", "180.76.15.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("66626", "3", "2017-10-21 20:39:32", "50.247.200.57", "6");
INSERT INTO `wp_gf_form_view` VALUES("66627", "10", "2017-10-21 20:56:58", "61.132.116.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("66628", "3", "2017-10-21 21:10:34", "180.76.15.18", "32");
INSERT INTO `wp_gf_form_view` VALUES("66629", "6", "2017-10-21 21:19:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66630", "9", "2017-10-21 21:19:04", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66631", "8", "2017-10-21 21:19:04", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66632", "10", "2017-10-21 21:19:05", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66633", "15", "2017-10-21 21:19:07", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66634", "3", "2017-10-21 22:17:11", "180.76.15.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("66635", "3", "2017-10-21 23:23:51", "180.76.15.146", "2");
INSERT INTO `wp_gf_form_view` VALUES("66636", "10", "2017-10-22 00:34:01", "217.182.132.80", "1");
INSERT INTO `wp_gf_form_view` VALUES("66637", "3", "2017-10-22 01:27:33", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66638", "6", "2017-10-22 01:27:34", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66639", "9", "2017-10-22 01:27:35", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66640", "8", "2017-10-22 01:27:36", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66641", "10", "2017-10-22 01:27:37", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66642", "15", "2017-10-22 01:27:39", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66643", "10", "2017-10-22 02:00:57", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66644", "6", "2017-10-22 02:10:31", "180.76.15.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("66645", "8", "2017-10-22 02:37:30", "51.255.65.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("66646", "3", "2017-10-22 03:01:21", "5.188.211.35", "63");
INSERT INTO `wp_gf_form_view` VALUES("66647", "6", "2017-10-22 03:01:21", "5.188.211.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("66648", "9", "2017-10-22 03:01:22", "5.188.211.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("66649", "8", "2017-10-22 03:01:23", "5.188.211.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("66650", "10", "2017-10-22 03:01:24", "5.188.211.35", "10");
INSERT INTO `wp_gf_form_view` VALUES("66651", "15", "2017-10-22 03:01:26", "5.188.211.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("66652", "3", "2017-10-22 04:23:51", "180.76.15.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("66653", "9", "2017-10-22 04:46:12", "137.74.207.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("66654", "11", "2017-10-22 04:49:34", "164.132.161.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("66655", "3", "2017-10-22 05:34:10", "40.77.167.59", "33");
INSERT INTO `wp_gf_form_view` VALUES("66656", "6", "2017-10-22 05:42:58", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66657", "9", "2017-10-22 05:42:59", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66658", "8", "2017-10-22 05:43:00", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66659", "10", "2017-10-22 05:43:01", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66660", "15", "2017-10-22 05:43:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66661", "3", "2017-10-22 07:38:19", "138.197.64.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("66662", "10", "2017-10-22 07:55:21", "51.255.71.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("66663", "14", "2017-10-22 08:50:34", "180.76.15.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("66664", "3", "2017-10-22 09:23:51", "180.76.15.141", "34");
INSERT INTO `wp_gf_form_view` VALUES("66665", "10", "2017-10-22 09:28:12", "216.244.66.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("66666", "6", "2017-10-22 09:57:18", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66667", "9", "2017-10-22 09:57:19", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66668", "8", "2017-10-22 09:57:20", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66669", "15", "2017-10-22 09:57:23", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66670", "3", "2017-10-22 10:39:31", "217.182.132.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("66671", "14", "2017-10-22 11:07:13", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("66672", "3", "2017-10-22 11:28:32", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("66673", "3", "2017-10-22 12:04:37", "66.249.66.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("66674", "3", "2017-10-22 13:05:00", "5.188.211.22", "4");
INSERT INTO `wp_gf_form_view` VALUES("66675", "3", "2017-10-22 14:02:30", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66676", "6", "2017-10-22 14:02:31", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66677", "9", "2017-10-22 14:02:32", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66678", "8", "2017-10-22 14:02:32", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66679", "10", "2017-10-22 14:02:33", "35.160.137.253", "7");
INSERT INTO `wp_gf_form_view` VALUES("66680", "15", "2017-10-22 14:02:35", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66681", "3", "2017-10-22 15:06:12", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66682", "3", "2017-10-22 16:03:58", "180.76.15.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("66683", "10", "2017-10-22 16:45:47", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66684", "3", "2017-10-22 17:04:13", "5.188.211.22", "3");
INSERT INTO `wp_gf_form_view` VALUES("66685", "3", "2017-10-22 18:12:12", "35.160.137.253", "38");
INSERT INTO `wp_gf_form_view` VALUES("66686", "6", "2017-10-22 18:12:12", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66687", "9", "2017-10-22 18:12:13", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66688", "8", "2017-10-22 18:12:13", "35.160.137.253", "3");
INSERT INTO `wp_gf_form_view` VALUES("66689", "10", "2017-10-22 18:12:14", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66690", "15", "2017-10-22 18:12:16", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66691", "14", "2017-10-22 18:54:33", "185.2.248.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("66692", "3", "2017-10-22 19:09:40", "68.180.230.223", "8");
INSERT INTO `wp_gf_form_view` VALUES("66693", "10", "2017-10-22 19:30:08", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66694", "3", "2017-10-22 20:30:35", "180.76.15.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("66695", "14", "2017-10-22 22:04:45", "98.158.90.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("66696", "3", "2017-10-22 22:09:53", "35.160.137.253", "62");
INSERT INTO `wp_gf_form_view` VALUES("66697", "6", "2017-10-22 22:09:53", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66698", "9", "2017-10-22 22:09:54", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66699", "8", "2017-10-22 22:09:55", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("66700", "10", "2017-10-22 22:09:56", "35.160.137.253", "10");
INSERT INTO `wp_gf_form_view` VALUES("66701", "15", "2017-10-22 22:09:58", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66702", "10", "2017-10-22 23:23:06", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66703", "3", "2017-10-22 23:40:21", "180.76.15.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("66704", "3", "2017-10-23 00:18:49", "164.132.161.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("66705", "10", "2017-10-23 00:51:44", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66706", "3", "2017-10-23 01:17:54", "158.69.251.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("66707", "10", "2017-10-23 01:38:03", "66.249.92.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("66708", "3", "2017-10-23 02:22:13", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66709", "6", "2017-10-23 02:22:14", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66710", "9", "2017-10-23 02:22:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66711", "8", "2017-10-23 02:22:15", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66712", "10", "2017-10-23 02:22:16", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66713", "15", "2017-10-23 02:22:18", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66714", "3", "2017-10-23 03:03:00", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66715", "14", "2017-10-23 03:51:18", "180.76.15.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("66716", "12", "2017-10-23 04:12:13", "66.249.66.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("66717", "10", "2017-10-23 05:11:37", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("66718", "3", "2017-10-23 05:35:24", "70.67.161.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("66719", "3", "2017-10-23 05:35:24", "70.67.161.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("66720", "3", "2017-10-23 06:40:43", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66721", "6", "2017-10-23 06:40:44", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66722", "9", "2017-10-23 06:40:45", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66723", "8", "2017-10-23 06:40:45", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66724", "10", "2017-10-23 06:40:46", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66725", "15", "2017-10-23 06:40:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66726", "10", "2017-10-23 08:38:04", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66727", "11", "2017-10-23 08:50:17", "77.75.78.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("66728", "6", "2017-10-23 09:04:12", "180.76.15.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("66729", "3", "2017-10-23 09:39:37", "75.75.235.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("66730", "3", "2017-10-23 10:10:54", "180.76.15.33", "32");
INSERT INTO `wp_gf_form_view` VALUES("66731", "6", "2017-10-23 10:47:08", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66732", "9", "2017-10-23 10:47:10", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66733", "8", "2017-10-23 10:47:10", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66734", "10", "2017-10-23 10:47:11", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66735", "15", "2017-10-23 10:47:13", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66736", "3", "2017-10-23 11:15:26", "204.79.180.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("66737", "3", "2017-10-23 12:03:33", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66738", "3", "2017-10-23 13:27:42", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66739", "3", "2017-10-23 14:08:13", "217.182.132.32", "3");
INSERT INTO `wp_gf_form_view` VALUES("66740", "5", "2017-10-23 14:12:56", "77.75.77.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("66741", "3", "2017-10-23 15:04:08", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66742", "6", "2017-10-23 15:04:09", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66743", "9", "2017-10-23 15:04:10", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66744", "8", "2017-10-23 15:04:11", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66745", "10", "2017-10-23 15:04:12", "35.160.137.253", "6");
INSERT INTO `wp_gf_form_view` VALUES("66746", "15", "2017-10-23 15:04:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66747", "3", "2017-10-23 16:19:24", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("66748", "3", "2017-10-23 17:33:26", "212.129.59.196", "7");
INSERT INTO `wp_gf_form_view` VALUES("66749", "10", "2017-10-23 17:42:37", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66750", "8", "2017-10-23 18:16:33", "66.102.6.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("66751", "3", "2017-10-23 18:42:10", "144.76.62.20", "7");
INSERT INTO `wp_gf_form_view` VALUES("66752", "10", "2017-10-23 18:42:12", "144.76.62.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("66753", "8", "2017-10-23 19:31:02", "180.76.15.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("66754", "3", "2017-10-23 19:32:49", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66755", "6", "2017-10-23 19:32:50", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66756", "9", "2017-10-23 19:32:51", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66757", "10", "2017-10-23 19:32:52", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66758", "15", "2017-10-23 19:32:54", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66759", "3", "2017-10-23 20:07:40", "180.76.15.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("66760", "3", "2017-10-23 21:03:09", "202.155.200.74", "6");
INSERT INTO `wp_gf_form_view` VALUES("66761", "8", "2017-10-23 21:53:25", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("66762", "14", "2017-10-23 22:16:31", "207.46.13.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("66763", "10", "2017-10-23 23:22:40", "207.46.13.181", "13");
INSERT INTO `wp_gf_form_view` VALUES("66764", "3", "2017-10-23 23:39:15", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66765", "6", "2017-10-23 23:39:15", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66766", "9", "2017-10-23 23:39:17", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66767", "8", "2017-10-23 23:39:18", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66768", "15", "2017-10-23 23:39:21", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66769", "14", "2017-10-24 00:13:38", "23.94.229.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("66770", "3", "2017-10-24 00:21:35", "180.76.15.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("66771", "10", "2017-10-24 00:54:58", "180.76.15.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("66772", "3", "2017-10-24 01:43:15", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66773", "3", "2017-10-24 02:01:39", "180.76.15.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("66774", "10", "2017-10-24 02:24:08", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66775", "3", "2017-10-24 03:09:00", "207.46.13.177", "32");
INSERT INTO `wp_gf_form_view` VALUES("66776", "14", "2017-10-24 03:38:26", "96.54.236.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("66777", "6", "2017-10-24 03:55:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66778", "9", "2017-10-24 03:55:49", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66779", "8", "2017-10-24 03:55:50", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66780", "10", "2017-10-24 03:55:50", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66781", "15", "2017-10-24 03:55:53", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66782", "3", "2017-10-24 04:26:43", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66783", "8", "2017-10-24 05:00:13", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("66784", "10", "2017-10-24 06:16:42", "66.249.92.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("66785", "14", "2017-10-24 06:36:40", "207.46.13.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("66786", "3", "2017-10-24 07:34:16", "24.68.176.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("66787", "3", "2017-10-24 08:15:44", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66788", "6", "2017-10-24 08:15:45", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66789", "9", "2017-10-24 08:15:46", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66790", "8", "2017-10-24 08:15:46", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66791", "10", "2017-10-24 08:15:47", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66792", "15", "2017-10-24 08:15:49", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66793", "10", "2017-10-24 09:42:50", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66794", "3", "2017-10-24 10:22:25", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("66795", "3", "2017-10-24 11:41:24", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("66796", "3", "2017-10-24 12:24:26", "109.102.111.66", "39");
INSERT INTO `wp_gf_form_view` VALUES("66797", "6", "2017-10-24 12:40:47", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66798", "9", "2017-10-24 12:40:48", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66799", "8", "2017-10-24 12:40:49", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66800", "10", "2017-10-24 12:40:49", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66801", "15", "2017-10-24 12:40:52", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66802", "3", "2017-10-24 13:03:23", "180.76.15.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("66803", "3", "2017-10-24 17:01:33", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66804", "6", "2017-10-24 17:01:34", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66805", "9", "2017-10-24 17:01:35", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66806", "8", "2017-10-24 17:01:36", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66807", "10", "2017-10-24 17:01:37", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66808", "15", "2017-10-24 17:01:41", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66809", "3", "2017-10-24 18:22:24", "66.249.66.71", "4");
INSERT INTO `wp_gf_form_view` VALUES("66810", "3", "2017-10-24 19:42:40", "23.16.66.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("66811", "14", "2017-10-24 19:46:44", "184.66.236.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("66812", "3", "2017-10-24 21:21:41", "54.165.59.7", "31");
INSERT INTO `wp_gf_form_view` VALUES("66813", "6", "2017-10-24 21:23:56", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66814", "9", "2017-10-24 21:23:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66815", "8", "2017-10-24 21:23:57", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66816", "10", "2017-10-24 21:23:58", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66817", "15", "2017-10-24 21:24:00", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66818", "8", "2017-10-24 22:23:34", "66.102.6.207", "1");
INSERT INTO `wp_gf_form_view` VALUES("66819", "3", "2017-10-24 23:15:42", "204.228.248.200", "31");
INSERT INTO `wp_gf_form_view` VALUES("66820", "10", "2017-10-24 23:29:55", "46.229.168.70", "12");
INSERT INTO `wp_gf_form_view` VALUES("66821", "14", "2017-10-24 23:30:09", "46.229.168.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("66822", "9", "2017-10-24 23:30:31", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("66823", "8", "2017-10-24 23:39:20", "46.229.168.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("66824", "11", "2017-10-24 23:43:54", "46.229.168.71", "3");
INSERT INTO `wp_gf_form_view` VALUES("66825", "6", "2017-10-24 23:45:23", "46.229.168.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("66826", "14", "2017-10-25 00:06:09", "117.3.69.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("66827", "3", "2017-10-25 00:08:43", "117.3.69.163", "7");
INSERT INTO `wp_gf_form_view` VALUES("66828", "3", "2017-10-25 01:51:59", "35.160.137.253", "30");
INSERT INTO `wp_gf_form_view` VALUES("66829", "6", "2017-10-25 01:52:00", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66830", "9", "2017-10-25 01:52:01", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66831", "8", "2017-10-25 01:52:01", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66832", "10", "2017-10-25 01:52:02", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66833", "15", "2017-10-25 01:52:04", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66834", "6", "2017-10-25 04:39:20", "180.76.15.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("66835", "3", "2017-10-25 05:12:37", "180.76.15.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("66836", "12", "2017-10-25 05:45:59", "180.76.15.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66837", "3", "2017-10-25 06:28:50", "35.160.137.253", "32");
INSERT INTO `wp_gf_form_view` VALUES("66838", "6", "2017-10-25 06:28:50", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66839", "9", "2017-10-25 06:28:51", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66840", "8", "2017-10-25 06:28:51", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66841", "10", "2017-10-25 06:28:52", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66842", "15", "2017-10-25 06:28:54", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66843", "3", "2017-10-25 07:25:59", "180.76.15.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("66844", "10", "2017-10-25 07:33:43", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("66845", "14", "2017-10-25 10:11:08", "195.154.252.120", "3");
INSERT INTO `wp_gf_form_view` VALUES("66846", "3", "2017-10-25 10:11:43", "107.172.44.254", "35");
INSERT INTO `wp_gf_form_view` VALUES("66847", "10", "2017-10-25 10:35:30", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("66848", "6", "2017-10-25 10:57:27", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66849", "9", "2017-10-25 10:57:28", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66850", "8", "2017-10-25 10:57:28", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66851", "15", "2017-10-25 10:57:31", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66852", "3", "2017-10-25 11:45:20", "164.132.161.27", "3");
INSERT INTO `wp_gf_form_view` VALUES("66853", "3", "2017-10-25 12:00:04", "184.66.49.63", "3");
INSERT INTO `wp_gf_form_view` VALUES("66854", "10", "2017-10-25 12:00:13", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66855", "3", "2017-10-25 13:11:25", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("66856", "10", "2017-10-25 14:06:07", "180.76.15.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("66857", "3", "2017-10-25 14:40:05", "35.184.189.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("66858", "14", "2017-10-25 14:52:23", "96.54.56.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("66859", "3", "2017-10-25 15:18:55", "35.160.137.253", "31");
INSERT INTO `wp_gf_form_view` VALUES("66860", "6", "2017-10-25 15:18:55", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66861", "9", "2017-10-25 15:18:57", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66862", "8", "2017-10-25 15:18:58", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66863", "10", "2017-10-25 15:18:59", "35.160.137.253", "5");
INSERT INTO `wp_gf_form_view` VALUES("66864", "15", "2017-10-25 15:19:03", "35.160.137.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("66865", "10", "2017-10-25 16:27:07", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66866", "3", "2017-10-25 16:33:37", "184.71.2.222", "3");
INSERT INTO `wp_gf_form_view` VALUES("66867", "6", "2017-10-25 16:52:40", "180.76.15.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("66868", "14", "2017-10-25 17:26:48", "24.114.22.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("66869", "3", "2017-10-25 17:59:23", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("66870", "3", "2017-10-25 18:09:22", "37.17.172.122", "12");
INSERT INTO `wp_gf_form_view` VALUES("66871", "8", "2017-10-25 18:18:15", "37.17.172.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("66872", "10", "2017-10-25 18:28:07", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66873", "14", "2017-10-25 18:28:36", "37.17.172.122", "3");
INSERT INTO `wp_gf_form_view` VALUES("66874", "3", "2017-10-25 19:06:01", "180.76.15.23", "62");
INSERT INTO `wp_gf_form_view` VALUES("66875", "6", "2017-10-25 19:45:02", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66876", "9", "2017-10-25 19:45:03", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66877", "8", "2017-10-25 19:45:04", "35.160.137.253", "4");
INSERT INTO `wp_gf_form_view` VALUES("66878", "10", "2017-10-25 19:45:05", "35.160.137.253", "10");
INSERT INTO `wp_gf_form_view` VALUES("66879", "15", "2017-10-25 19:45:08", "35.160.137.253", "2");
INSERT INTO `wp_gf_form_view` VALUES("66880", "3", "2017-10-25 20:12:38", "180.76.15.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("66881", "10", "2017-10-25 20:16:29", "72.14.199.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("66882", "14", "2017-10-25 20:36:01", "184.66.236.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("66883", "3", "2017-10-25 21:43:40", "74.208.41.83", "6");
INSERT INTO `wp_gf_form_view` VALUES("66884", "10", "2017-10-25 22:39:40", "207.46.13.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("66885", "3", "2017-10-25 22:55:54", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66886", "3", "2017-10-25 23:27:35", "52.42.57.189", "30");
INSERT INTO `wp_gf_form_view` VALUES("66887", "6", "2017-10-25 23:27:35", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66888", "9", "2017-10-25 23:27:36", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66889", "8", "2017-10-25 23:27:37", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("66890", "10", "2017-10-25 23:27:38", "52.42.57.189", "8");
INSERT INTO `wp_gf_form_view` VALUES("66891", "15", "2017-10-25 23:27:40", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66892", "14", "2017-10-25 23:41:42", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66893", "3", "2017-10-26 00:08:18", "178.63.1.153", "6");
INSERT INTO `wp_gf_form_view` VALUES("66894", "8", "2017-10-26 00:09:45", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("66895", "14", "2017-10-26 00:12:02", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("66896", "3", "2017-10-26 01:03:22", "142.0.201.156", "63");
INSERT INTO `wp_gf_form_view` VALUES("66897", "8", "2017-10-26 01:03:42", "142.0.201.156", "5");
INSERT INTO `wp_gf_form_view` VALUES("66898", "6", "2017-10-26 01:29:57", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("66899", "9", "2017-10-26 01:30:00", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("66900", "10", "2017-10-26 01:30:01", "52.42.57.189", "11");
INSERT INTO `wp_gf_form_view` VALUES("66901", "15", "2017-10-26 01:30:04", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("66902", "14", "2017-10-26 01:55:54", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66903", "15", "2017-10-26 02:51:00", "157.55.39.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("66904", "3", "2017-10-26 03:35:52", "142.0.201.156", "39");
INSERT INTO `wp_gf_form_view` VALUES("66905", "8", "2017-10-26 03:36:27", "142.0.201.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("66906", "6", "2017-10-26 03:36:40", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66907", "9", "2017-10-26 03:36:43", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66908", "10", "2017-10-26 03:36:48", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("66909", "15", "2017-10-26 03:36:55", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66910", "10", "2017-10-26 04:43:16", "51.255.65.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("66911", "3", "2017-10-26 05:12:32", "144.76.8.132", "31");
INSERT INTO `wp_gf_form_view` VALUES("66912", "6", "2017-10-26 05:12:56", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66913", "9", "2017-10-26 05:12:57", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66914", "8", "2017-10-26 05:12:57", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("66915", "10", "2017-10-26 05:12:58", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("66916", "15", "2017-10-26 05:13:00", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66917", "3", "2017-10-26 06:13:54", "142.0.201.156", "61");
INSERT INTO `wp_gf_form_view` VALUES("66918", "6", "2017-10-26 06:13:55", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("66919", "9", "2017-10-26 06:13:56", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("66920", "8", "2017-10-26 06:13:56", "142.0.201.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("66921", "10", "2017-10-26 06:13:57", "142.0.201.156", "11");
INSERT INTO `wp_gf_form_view` VALUES("66922", "15", "2017-10-26 06:13:59", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("66923", "3", "2017-10-26 07:32:55", "180.76.15.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("66924", "3", "2017-10-26 08:14:27", "52.42.57.189", "30");
INSERT INTO `wp_gf_form_view` VALUES("66925", "6", "2017-10-26 08:14:28", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66926", "9", "2017-10-26 08:14:29", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66927", "8", "2017-10-26 08:14:30", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("66928", "10", "2017-10-26 08:14:30", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("66929", "15", "2017-10-26 08:14:33", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66930", "14", "2017-10-26 09:09:57", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("66931", "3", "2017-10-26 09:27:03", "142.0.201.156", "51");
INSERT INTO `wp_gf_form_view` VALUES("66932", "8", "2017-10-26 09:27:04", "142.0.201.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("66933", "10", "2017-10-26 09:29:41", "142.0.201.156", "7");
INSERT INTO `wp_gf_form_view` VALUES("66934", "15", "2017-10-26 09:30:11", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("66935", "6", "2017-10-26 09:30:38", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("66936", "9", "2017-10-26 09:40:48", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66937", "14", "2017-10-26 10:35:48", "160.202.32.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("66938", "3", "2017-10-26 10:57:49", "155.133.82.166", "5");
INSERT INTO `wp_gf_form_view` VALUES("66939", "3", "2017-10-26 11:01:37", "155.133.82.166", "156");
INSERT INTO `wp_gf_form_view` VALUES("66940", "6", "2017-10-26 11:30:29", "52.42.57.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("66941", "9", "2017-10-26 11:30:30", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("66942", "8", "2017-10-26 11:30:31", "52.42.57.189", "8");
INSERT INTO `wp_gf_form_view` VALUES("66943", "10", "2017-10-26 11:30:31", "52.42.57.189", "37");
INSERT INTO `wp_gf_form_view` VALUES("66944", "15", "2017-10-26 11:30:34", "52.42.57.189", "8");
INSERT INTO `wp_gf_form_view` VALUES("66945", "10", "2017-10-26 12:00:23", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("66946", "3", "2017-10-26 12:49:40", "164.132.161.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("66947", "3", "2017-10-26 13:15:41", "52.42.57.189", "30");
INSERT INTO `wp_gf_form_view` VALUES("66948", "6", "2017-10-26 13:15:41", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("66949", "9", "2017-10-26 13:15:42", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("66950", "8", "2017-10-26 13:15:43", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("66951", "10", "2017-10-26 13:15:44", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("66952", "15", "2017-10-26 13:15:46", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66953", "5", "2017-10-26 13:38:18", "180.76.15.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("66954", "3", "2017-10-26 14:02:20", "142.0.201.156", "161");
INSERT INTO `wp_gf_form_view` VALUES("66955", "10", "2017-10-26 14:02:21", "142.0.201.156", "47");
INSERT INTO `wp_gf_form_view` VALUES("66956", "15", "2017-10-26 14:02:23", "142.0.201.156", "11");
INSERT INTO `wp_gf_form_view` VALUES("66957", "8", "2017-10-26 14:14:43", "142.0.201.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("66958", "6", "2017-10-26 14:27:45", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("66959", "9", "2017-10-26 14:27:45", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("66960", "6", "2017-10-26 15:39:16", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66961", "3", "2017-10-26 15:39:17", "142.0.201.156", "91");
INSERT INTO `wp_gf_form_view` VALUES("66962", "9", "2017-10-26 15:39:17", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66963", "8", "2017-10-26 15:39:18", "142.0.201.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("66964", "10", "2017-10-26 15:42:31", "142.0.201.156", "21");
INSERT INTO `wp_gf_form_view` VALUES("66965", "15", "2017-10-26 15:42:33", "142.0.201.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("66966", "3", "2017-10-26 16:06:23", "142.0.201.156", "46");
INSERT INTO `wp_gf_form_view` VALUES("66967", "8", "2017-10-26 16:06:23", "142.0.201.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("66968", "10", "2017-10-26 16:27:21", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("66969", "6", "2017-10-26 16:48:42", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66970", "9", "2017-10-26 16:48:43", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66971", "15", "2017-10-26 16:48:46", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66972", "8", "2017-10-26 17:07:40", "64.233.172.181", "8");
INSERT INTO `wp_gf_form_view` VALUES("66973", "3", "2017-10-26 17:29:37", "64.114.199.97", "98");
INSERT INTO `wp_gf_form_view` VALUES("66974", "6", "2017-10-26 17:31:21", "142.0.201.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("66975", "9", "2017-10-26 17:31:22", "142.0.201.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("66976", "10", "2017-10-26 17:31:24", "142.0.201.156", "34");
INSERT INTO `wp_gf_form_view` VALUES("66977", "15", "2017-10-26 17:31:29", "142.0.201.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("66978", "3", "2017-10-26 18:08:25", "142.0.201.156", "16");
INSERT INTO `wp_gf_form_view` VALUES("66979", "15", "2017-10-26 18:08:26", "142.0.201.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("66980", "10", "2017-10-26 18:28:04", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("66981", "8", "2017-10-26 18:30:29", "205.233.121.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("66982", "3", "2017-10-26 19:19:46", "52.42.57.189", "116");
INSERT INTO `wp_gf_form_view` VALUES("66983", "6", "2017-10-26 19:19:47", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("66984", "9", "2017-10-26 19:19:48", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("66985", "8", "2017-10-26 19:19:48", "52.42.57.189", "9");
INSERT INTO `wp_gf_form_view` VALUES("66986", "10", "2017-10-26 19:19:49", "52.42.57.189", "26");
INSERT INTO `wp_gf_form_view` VALUES("66987", "15", "2017-10-26 19:19:51", "52.42.57.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("66988", "3", "2017-10-26 20:01:46", "142.0.201.156", "67");
INSERT INTO `wp_gf_form_view` VALUES("66989", "8", "2017-10-26 20:01:47", "142.0.201.156", "8");
INSERT INTO `wp_gf_form_view` VALUES("66990", "10", "2017-10-26 20:02:35", "142.0.201.156", "15");
INSERT INTO `wp_gf_form_view` VALUES("66991", "15", "2017-10-26 20:07:11", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66992", "6", "2017-10-26 20:08:35", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66993", "9", "2017-10-26 20:08:36", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("66994", "3", "2017-10-26 21:41:14", "52.42.57.189", "31");
INSERT INTO `wp_gf_form_view` VALUES("66995", "6", "2017-10-26 21:41:15", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66996", "9", "2017-10-26 21:41:16", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("66997", "8", "2017-10-26 21:41:16", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("66998", "10", "2017-10-26 21:41:17", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("66999", "15", "2017-10-26 21:41:20", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67000", "3", "2017-10-26 22:52:50", "15.211.201.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("67001", "3", "2017-10-26 23:32:07", "52.42.57.189", "30");
INSERT INTO `wp_gf_form_view` VALUES("67002", "6", "2017-10-26 23:32:07", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67003", "9", "2017-10-26 23:32:09", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67004", "8", "2017-10-26 23:32:09", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67005", "10", "2017-10-26 23:32:10", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("67006", "15", "2017-10-26 23:32:12", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67007", "10", "2017-10-27 00:52:06", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("67008", "3", "2017-10-27 00:54:18", "74.208.200.94", "6");
INSERT INTO `wp_gf_form_view` VALUES("67009", "3", "2017-10-27 01:18:54", "52.42.57.189", "30");
INSERT INTO `wp_gf_form_view` VALUES("67010", "6", "2017-10-27 01:18:54", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67011", "9", "2017-10-27 01:18:55", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67012", "8", "2017-10-27 01:18:56", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67013", "10", "2017-10-27 01:18:57", "52.42.57.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("67014", "15", "2017-10-27 01:18:59", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67015", "3", "2017-10-27 02:00:36", "142.0.201.156", "158");
INSERT INTO `wp_gf_form_view` VALUES("67016", "8", "2017-10-27 02:00:36", "142.0.201.156", "11");
INSERT INTO `wp_gf_form_view` VALUES("67017", "10", "2017-10-27 02:00:37", "142.0.201.156", "49");
INSERT INTO `wp_gf_form_view` VALUES("67018", "15", "2017-10-27 02:00:44", "142.0.201.156", "7");
INSERT INTO `wp_gf_form_view` VALUES("67019", "6", "2017-10-27 02:26:04", "142.0.201.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("67020", "9", "2017-10-27 02:26:05", "142.0.201.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("67021", "3", "2017-10-27 03:12:17", "185.43.45.204", "6");
INSERT INTO `wp_gf_form_view` VALUES("67022", "10", "2017-10-27 03:32:31", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("67023", "3", "2017-10-27 04:27:56", "52.42.57.189", "30");
INSERT INTO `wp_gf_form_view` VALUES("67024", "6", "2017-10-27 04:27:56", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67025", "9", "2017-10-27 04:27:57", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67026", "8", "2017-10-27 04:27:58", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67027", "10", "2017-10-27 04:27:58", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("67028", "15", "2017-10-27 04:28:01", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67029", "14", "2017-10-27 05:01:06", "77.75.78.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("67030", "3", "2017-10-27 05:22:01", "142.0.201.156", "48");
INSERT INTO `wp_gf_form_view` VALUES("67031", "8", "2017-10-27 05:22:52", "142.0.201.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("67032", "15", "2017-10-27 05:33:41", "142.0.201.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("67033", "10", "2017-10-27 05:34:19", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67034", "3", "2017-10-27 06:07:36", "52.42.57.189", "125");
INSERT INTO `wp_gf_form_view` VALUES("67035", "6", "2017-10-27 06:07:37", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("67036", "9", "2017-10-27 06:07:41", "52.42.57.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("67037", "8", "2017-10-27 06:07:42", "52.42.57.189", "9");
INSERT INTO `wp_gf_form_view` VALUES("67038", "10", "2017-10-27 06:07:45", "52.42.57.189", "35");
INSERT INTO `wp_gf_form_view` VALUES("67039", "15", "2017-10-27 06:07:51", "52.42.57.189", "7");
INSERT INTO `wp_gf_form_view` VALUES("67040", "3", "2017-10-27 07:24:23", "24.68.145.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("67041", "3", "2017-10-27 08:06:28", "52.42.57.189", "42");
INSERT INTO `wp_gf_form_view` VALUES("67042", "6", "2017-10-27 08:06:29", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67043", "9", "2017-10-27 08:06:32", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67044", "8", "2017-10-27 08:06:34", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("67045", "10", "2017-10-27 08:06:36", "52.42.57.189", "7");
INSERT INTO `wp_gf_form_view` VALUES("67046", "15", "2017-10-27 08:06:43", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67047", "3", "2017-10-27 09:23:37", "142.0.201.156", "44");
INSERT INTO `wp_gf_form_view` VALUES("67048", "6", "2017-10-27 09:25:52", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("67049", "9", "2017-10-27 09:25:53", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("67050", "10", "2017-10-27 09:25:53", "142.0.201.156", "10");
INSERT INTO `wp_gf_form_view` VALUES("67051", "15", "2017-10-27 09:25:55", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("67052", "8", "2017-10-27 09:51:36", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67053", "14", "2017-10-27 10:03:56", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("67054", "10", "2017-10-27 10:39:32", "142.0.201.156", "5");
INSERT INTO `wp_gf_form_view` VALUES("67055", "3", "2017-10-27 10:39:45", "142.0.201.156", "13");
INSERT INTO `wp_gf_form_view` VALUES("67056", "6", "2017-10-27 10:39:45", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67057", "9", "2017-10-27 10:39:46", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67058", "8", "2017-10-27 10:39:46", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67059", "15", "2017-10-27 10:39:48", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67060", "6", "2017-10-27 11:08:34", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("67061", "3", "2017-10-27 11:08:35", "142.0.201.156", "67");
INSERT INTO `wp_gf_form_view` VALUES("67062", "9", "2017-10-27 11:08:35", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("67063", "10", "2017-10-27 11:08:35", "142.0.201.156", "25");
INSERT INTO `wp_gf_form_view` VALUES("67064", "8", "2017-10-27 11:19:08", "142.0.201.156", "4");
INSERT INTO `wp_gf_form_view` VALUES("67065", "15", "2017-10-27 11:19:10", "142.0.201.156", "2");
INSERT INTO `wp_gf_form_view` VALUES("67066", "14", "2017-10-27 11:25:06", "104.168.7.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("67067", "3", "2017-10-27 12:00:14", "142.0.201.156", "31");
INSERT INTO `wp_gf_form_view` VALUES("67068", "6", "2017-10-27 12:08:46", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67069", "9", "2017-10-27 12:08:47", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67070", "8", "2017-10-27 12:08:48", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67071", "10", "2017-10-27 12:08:48", "142.0.201.156", "5");
INSERT INTO `wp_gf_form_view` VALUES("67072", "15", "2017-10-27 12:08:52", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67073", "3", "2017-10-27 13:13:49", "142.0.201.156", "69");
INSERT INTO `wp_gf_form_view` VALUES("67074", "6", "2017-10-27 13:20:02", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("67075", "9", "2017-10-27 13:20:04", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("67076", "8", "2017-10-27 13:20:06", "52.42.57.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("67077", "10", "2017-10-27 13:20:07", "52.42.57.189", "15");
INSERT INTO `wp_gf_form_view` VALUES("67078", "15", "2017-10-27 13:20:13", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67079", "3", "2017-10-27 14:02:46", "142.0.201.156", "29");
INSERT INTO `wp_gf_form_view` VALUES("67080", "10", "2017-10-27 14:12:23", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("67081", "8", "2017-10-27 14:24:11", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67082", "15", "2017-10-27 14:24:16", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67083", "3", "2017-10-27 15:00:01", "142.0.201.156", "71");
INSERT INTO `wp_gf_form_view` VALUES("67084", "6", "2017-10-27 15:24:45", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67085", "9", "2017-10-27 15:24:48", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67086", "8", "2017-10-27 15:24:50", "52.42.57.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("67087", "10", "2017-10-27 15:24:51", "52.42.57.189", "10");
INSERT INTO `wp_gf_form_view` VALUES("67088", "15", "2017-10-27 15:24:56", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67089", "3", "2017-10-27 16:11:00", "142.0.201.156", "11");
INSERT INTO `wp_gf_form_view` VALUES("67090", "6", "2017-10-27 16:40:58", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67091", "9", "2017-10-27 16:40:59", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67092", "10", "2017-10-27 16:41:00", "142.0.201.156", "6");
INSERT INTO `wp_gf_form_view` VALUES("67093", "15", "2017-10-27 16:41:01", "142.0.201.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("67094", "3", "2017-10-27 17:10:51", "52.42.57.189", "41");
INSERT INTO `wp_gf_form_view` VALUES("67095", "6", "2017-10-27 17:10:51", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67096", "9", "2017-10-27 17:10:54", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67097", "8", "2017-10-27 17:10:55", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67098", "10", "2017-10-27 17:10:56", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("67099", "15", "2017-10-27 17:11:03", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67100", "3", "2017-10-27 18:10:48", "142.0.201.156", "70");
INSERT INTO `wp_gf_form_view` VALUES("67101", "8", "2017-10-27 18:19:21", "64.233.172.179", "5");
INSERT INTO `wp_gf_form_view` VALUES("67102", "6", "2017-10-27 18:50:12", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67103", "9", "2017-10-27 18:50:16", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67104", "10", "2017-10-27 18:50:19", "52.42.57.189", "10");
INSERT INTO `wp_gf_form_view` VALUES("67105", "15", "2017-10-27 18:50:25", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67106", "3", "2017-10-27 19:06:57", "24.68.121.190", "18");
INSERT INTO `wp_gf_form_view` VALUES("67107", "3", "2017-10-27 20:20:53", "142.0.201.156", "33");
INSERT INTO `wp_gf_form_view` VALUES("67108", "6", "2017-10-27 20:46:14", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67109", "9", "2017-10-27 20:46:17", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67110", "8", "2017-10-27 20:46:19", "52.42.57.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("67111", "10", "2017-10-27 20:46:21", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("67112", "15", "2017-10-27 20:46:25", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67113", "3", "2017-10-27 21:19:18", "142.0.201.156", "14");
INSERT INTO `wp_gf_form_view` VALUES("67114", "14", "2017-10-27 21:51:30", "96.50.19.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("67115", "14", "2017-10-27 22:46:14", "24.108.164.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("67116", "3", "2017-10-27 22:50:06", "52.42.57.189", "31");
INSERT INTO `wp_gf_form_view` VALUES("67117", "6", "2017-10-27 22:50:06", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67118", "9", "2017-10-27 22:50:11", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67119", "8", "2017-10-27 22:50:13", "52.42.57.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("67120", "10", "2017-10-27 22:50:16", "52.42.57.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("67121", "15", "2017-10-27 22:50:26", "52.42.57.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("67122", "3", "2017-10-27 23:04:22", "142.0.201.156", "12");
INSERT INTO `wp_gf_form_view` VALUES("67123", "10", "2017-10-27 23:16:59", "207.46.13.54", "3");
INSERT INTO `wp_gf_form_view` VALUES("67124", "3", "2017-10-28 00:08:05", "40.77.167.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("67125", "3", "2017-10-28 01:10:07", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("67126", "6", "2017-10-28 01:10:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67127", "9", "2017-10-28 01:10:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67128", "8", "2017-10-28 01:10:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67129", "10", "2017-10-28 01:10:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67130", "15", "2017-10-28 01:10:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67131", "12", "2017-10-28 02:46:59", "180.76.15.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("67132", "10", "2017-10-28 03:15:11", "203.93.105.34", "6");
INSERT INTO `wp_gf_form_view` VALUES("67133", "3", "2017-10-28 03:16:50", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67134", "6", "2017-10-28 03:16:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67135", "9", "2017-10-28 03:16:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67136", "8", "2017-10-28 03:16:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67137", "15", "2017-10-28 03:17:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67138", "14", "2017-10-28 03:55:30", "96.54.158.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("67139", "10", "2017-10-28 04:43:19", "106.91.56.130", "12");
INSERT INTO `wp_gf_form_view` VALUES("67140", "3", "2017-10-28 04:55:05", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("67141", "6", "2017-10-28 04:55:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67142", "9", "2017-10-28 04:55:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67143", "8", "2017-10-28 04:55:06", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67144", "15", "2017-10-28 04:55:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67145", "3", "2017-10-28 05:02:17", "180.76.15.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("67146", "3", "2017-10-28 06:46:40", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67147", "6", "2017-10-28 06:46:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67148", "9", "2017-10-28 06:46:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67149", "8", "2017-10-28 06:46:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67150", "10", "2017-10-28 06:46:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67151", "15", "2017-10-28 06:46:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67152", "8", "2017-10-28 08:12:25", "157.55.39.196", "3");
INSERT INTO `wp_gf_form_view` VALUES("67153", "3", "2017-10-28 08:46:44", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67154", "6", "2017-10-28 08:46:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67155", "9", "2017-10-28 08:46:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67156", "10", "2017-10-28 08:46:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67157", "15", "2017-10-28 08:46:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67158", "6", "2017-10-28 09:03:11", "180.76.15.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("67159", "3", "2017-10-28 10:33:17", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67160", "6", "2017-10-28 10:33:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67161", "9", "2017-10-28 10:33:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67162", "8", "2017-10-28 10:33:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67163", "10", "2017-10-28 10:33:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67164", "15", "2017-10-28 10:33:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67165", "3", "2017-10-28 11:32:36", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("67166", "3", "2017-10-28 12:27:22", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("67167", "6", "2017-10-28 12:27:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67168", "9", "2017-10-28 12:27:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67169", "8", "2017-10-28 12:27:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67170", "10", "2017-10-28 12:27:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67171", "15", "2017-10-28 12:27:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67172", "3", "2017-10-28 14:14:11", "66.249.79.133", "33");
INSERT INTO `wp_gf_form_view` VALUES("67173", "6", "2017-10-28 14:17:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67174", "9", "2017-10-28 14:17:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67175", "8", "2017-10-28 14:17:41", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("67176", "10", "2017-10-28 14:17:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67177", "15", "2017-10-28 14:17:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67178", "3", "2017-10-28 15:09:23", "180.76.15.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("67179", "10", "2017-10-28 15:28:59", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("67180", "3", "2017-10-28 16:19:38", "24.108.0.171", "33");
INSERT INTO `wp_gf_form_view` VALUES("67181", "6", "2017-10-28 16:32:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67182", "9", "2017-10-28 16:32:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67183", "8", "2017-10-28 16:32:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67184", "10", "2017-10-28 16:32:04", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67185", "15", "2017-10-28 16:32:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67186", "14", "2017-10-28 17:18:13", "117.4.136.11", "3");
INSERT INTO `wp_gf_form_view` VALUES("67187", "10", "2017-10-28 18:12:40", "180.76.15.135", "6");
INSERT INTO `wp_gf_form_view` VALUES("67188", "3", "2017-10-28 18:16:19", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67189", "6", "2017-10-28 18:16:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67190", "9", "2017-10-28 18:16:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67191", "8", "2017-10-28 18:16:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67192", "15", "2017-10-28 18:16:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67193", "3", "2017-10-28 20:00:02", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("67194", "6", "2017-10-28 20:00:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67195", "9", "2017-10-28 20:00:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67196", "8", "2017-10-28 20:00:05", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67197", "10", "2017-10-28 20:00:05", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67198", "15", "2017-10-28 20:00:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67199", "3", "2017-10-28 21:54:53", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("67200", "6", "2017-10-28 21:54:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67201", "9", "2017-10-28 21:54:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67202", "8", "2017-10-28 21:54:55", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67203", "10", "2017-10-28 21:54:55", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67204", "15", "2017-10-28 21:54:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67205", "10", "2017-10-28 23:37:38", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("67206", "3", "2017-10-28 23:41:56", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67207", "6", "2017-10-28 23:41:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67208", "9", "2017-10-28 23:41:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67209", "8", "2017-10-28 23:41:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67210", "15", "2017-10-28 23:42:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67211", "3", "2017-10-29 01:27:10", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67212", "6", "2017-10-29 01:27:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67213", "9", "2017-10-29 01:27:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67214", "8", "2017-10-29 01:27:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67215", "10", "2017-10-29 01:27:12", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67216", "15", "2017-10-29 01:27:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67217", "3", "2017-10-29 02:00:22", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("67218", "3", "2017-10-29 03:11:09", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67219", "6", "2017-10-29 03:11:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67220", "9", "2017-10-29 03:11:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67221", "8", "2017-10-29 03:11:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67222", "10", "2017-10-29 03:11:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67223", "15", "2017-10-29 03:11:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67224", "10", "2017-10-29 04:44:04", "199.59.150.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("67225", "3", "2017-10-29 04:46:58", "96.50.28.252", "33");
INSERT INTO `wp_gf_form_view` VALUES("67226", "6", "2017-10-29 04:56:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67227", "9", "2017-10-29 04:56:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67228", "8", "2017-10-29 04:56:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67229", "15", "2017-10-29 04:56:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67230", "10", "2017-10-29 05:34:27", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("67231", "3", "2017-10-29 05:38:36", "40.77.167.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("67232", "3", "2017-10-29 06:46:06", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("67233", "6", "2017-10-29 06:46:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67234", "9", "2017-10-29 06:46:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67235", "8", "2017-10-29 06:46:08", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67236", "10", "2017-10-29 06:46:09", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67237", "15", "2017-10-29 06:46:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67238", "3", "2017-10-29 07:38:34", "207.46.13.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("67239", "3", "2017-10-29 08:12:20", "180.76.15.159", "31");
INSERT INTO `wp_gf_form_view` VALUES("67240", "6", "2017-10-29 08:19:19", "157.55.39.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("67241", "9", "2017-10-29 08:41:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67242", "8", "2017-10-29 08:41:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67243", "10", "2017-10-29 08:41:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67244", "15", "2017-10-29 08:41:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67245", "3", "2017-10-29 09:49:49", "47.195.251.227", "1");
INSERT INTO `wp_gf_form_view` VALUES("67246", "3", "2017-10-29 10:07:18", "51.255.71.125", "32");
INSERT INTO `wp_gf_form_view` VALUES("67247", "6", "2017-10-29 10:36:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67248", "9", "2017-10-29 10:36:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67249", "8", "2017-10-29 10:36:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67250", "10", "2017-10-29 10:36:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67251", "15", "2017-10-29 10:36:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67252", "14", "2017-10-29 10:45:43", "125.141.200.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("67253", "3", "2017-10-29 11:43:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("67254", "3", "2017-10-29 12:26:16", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67255", "6", "2017-10-29 12:26:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67256", "9", "2017-10-29 12:26:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67257", "8", "2017-10-29 12:26:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67258", "10", "2017-10-29 12:26:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67259", "15", "2017-10-29 12:26:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67260", "10", "2017-10-29 13:07:01", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("67261", "3", "2017-10-29 13:15:10", "157.55.39.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("67262", "3", "2017-10-29 14:19:57", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("67263", "6", "2017-10-29 14:19:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67264", "9", "2017-10-29 14:19:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67265", "8", "2017-10-29 14:19:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67266", "10", "2017-10-29 14:20:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67267", "15", "2017-10-29 14:20:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67268", "3", "2017-10-29 16:06:57", "207.46.13.177", "31");
INSERT INTO `wp_gf_form_view` VALUES("67269", "6", "2017-10-29 16:13:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67270", "9", "2017-10-29 16:13:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67271", "8", "2017-10-29 16:13:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67272", "10", "2017-10-29 16:13:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67273", "15", "2017-10-29 16:13:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67274", "3", "2017-10-29 17:43:29", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67275", "6", "2017-10-29 17:43:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67276", "9", "2017-10-29 17:43:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67277", "8", "2017-10-29 17:43:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67278", "10", "2017-10-29 17:43:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67279", "15", "2017-10-29 17:43:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67280", "3", "2017-10-29 19:26:33", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("67281", "6", "2017-10-29 19:26:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67282", "9", "2017-10-29 19:26:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67283", "8", "2017-10-29 19:26:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67284", "10", "2017-10-29 19:26:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67285", "15", "2017-10-29 19:26:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67286", "10", "2017-10-29 20:36:31", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("67287", "3", "2017-10-29 21:11:16", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("67288", "6", "2017-10-29 21:11:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67289", "9", "2017-10-29 21:11:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67290", "8", "2017-10-29 21:11:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67291", "10", "2017-10-29 21:11:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67292", "15", "2017-10-29 21:11:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67293", "3", "2017-10-29 22:41:51", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67294", "6", "2017-10-29 22:41:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67295", "9", "2017-10-29 22:41:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67296", "8", "2017-10-29 22:41:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67297", "10", "2017-10-29 22:41:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67298", "15", "2017-10-29 22:41:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67299", "9", "2017-10-29 23:28:21", "207.46.13.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("67300", "3", "2017-10-30 00:24:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67301", "6", "2017-10-30 00:24:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67302", "9", "2017-10-30 00:24:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67303", "8", "2017-10-30 00:24:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67304", "10", "2017-10-30 00:24:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67305", "15", "2017-10-30 00:24:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67306", "3", "2017-10-30 02:09:58", "216.86.119.93", "33");
INSERT INTO `wp_gf_form_view` VALUES("67307", "14", "2017-10-30 02:14:51", "216.86.119.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("67308", "6", "2017-10-30 02:41:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67309", "9", "2017-10-30 02:41:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67310", "8", "2017-10-30 02:41:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67311", "10", "2017-10-30 02:41:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67312", "15", "2017-10-30 02:41:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67313", "3", "2017-10-30 04:06:18", "40.77.167.0", "31");
INSERT INTO `wp_gf_form_view` VALUES("67314", "6", "2017-10-30 04:34:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67315", "9", "2017-10-30 04:34:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67316", "8", "2017-10-30 04:34:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67317", "10", "2017-10-30 04:34:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67318", "15", "2017-10-30 04:34:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67319", "3", "2017-10-30 05:40:43", "184.66.40.177", "33");
INSERT INTO `wp_gf_form_view` VALUES("67320", "8", "2017-10-30 05:44:04", "46.229.168.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("67321", "10", "2017-10-30 05:45:49", "46.229.168.68", "7");
INSERT INTO `wp_gf_form_view` VALUES("67322", "15", "2017-10-30 05:46:41", "46.229.168.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("67323", "6", "2017-10-30 05:58:32", "46.229.168.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("67324", "3", "2017-10-30 06:29:58", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("67325", "6", "2017-10-30 06:29:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67326", "9", "2017-10-30 06:30:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67327", "8", "2017-10-30 06:30:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67328", "10", "2017-10-30 06:30:01", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67329", "15", "2017-10-30 06:30:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67330", "3", "2017-10-30 07:07:57", "164.132.161.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("67331", "5", "2017-10-30 07:28:33", "146.185.223.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("67332", "3", "2017-10-30 08:36:02", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67333", "6", "2017-10-30 08:36:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67334", "9", "2017-10-30 08:36:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67335", "8", "2017-10-30 08:36:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67336", "10", "2017-10-30 08:36:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67337", "15", "2017-10-30 08:36:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67338", "3", "2017-10-30 09:16:06", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("67339", "10", "2017-10-30 10:24:34", "72.14.199.75", "11");
INSERT INTO `wp_gf_form_view` VALUES("67340", "3", "2017-10-30 10:24:53", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("67341", "6", "2017-10-30 10:24:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67342", "9", "2017-10-30 10:24:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67343", "8", "2017-10-30 10:24:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67344", "15", "2017-10-30 10:24:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67345", "3", "2017-10-30 12:09:55", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("67346", "6", "2017-10-30 12:09:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67347", "9", "2017-10-30 12:09:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67348", "8", "2017-10-30 12:09:57", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67349", "10", "2017-10-30 12:09:58", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67350", "15", "2017-10-30 12:10:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67351", "3", "2017-10-30 13:52:11", "40.77.167.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("67352", "3", "2017-10-30 14:09:52", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("67353", "6", "2017-10-30 14:09:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67354", "9", "2017-10-30 14:09:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67355", "8", "2017-10-30 14:09:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67356", "10", "2017-10-30 14:09:55", "52.37.180.245", "12");
INSERT INTO `wp_gf_form_view` VALUES("67357", "15", "2017-10-30 14:09:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67358", "3", "2017-10-30 16:06:13", "74.208.41.83", "39");
INSERT INTO `wp_gf_form_view` VALUES("67359", "6", "2017-10-30 16:06:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67360", "9", "2017-10-30 16:06:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67361", "8", "2017-10-30 16:06:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67362", "10", "2017-10-30 16:06:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67363", "15", "2017-10-30 16:06:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67364", "15", "2017-10-30 17:52:44", "37.113.61.179", "2");
INSERT INTO `wp_gf_form_view` VALUES("67365", "6", "2017-10-30 18:11:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67366", "3", "2017-10-30 18:11:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67367", "9", "2017-10-30 18:11:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67368", "8", "2017-10-30 18:11:40", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("67369", "10", "2017-10-30 18:11:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67370", "15", "2017-10-30 18:11:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67371", "6", "2017-10-30 20:29:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67372", "3", "2017-10-30 20:29:57", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("67373", "9", "2017-10-30 20:29:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67374", "8", "2017-10-30 20:29:59", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67375", "10", "2017-10-30 20:29:59", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67376", "15", "2017-10-30 20:30:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67377", "6", "2017-10-30 22:42:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67378", "3", "2017-10-30 22:42:37", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67379", "9", "2017-10-30 22:42:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67380", "8", "2017-10-30 22:42:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67381", "10", "2017-10-30 22:42:40", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67382", "15", "2017-10-30 22:42:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67383", "6", "2017-10-31 00:32:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67384", "3", "2017-10-31 00:32:06", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67385", "9", "2017-10-31 00:32:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67386", "8", "2017-10-31 00:32:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67387", "10", "2017-10-31 00:32:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67388", "15", "2017-10-31 00:32:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67389", "3", "2017-10-31 01:03:13", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("67390", "10", "2017-10-31 01:27:03", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("67391", "6", "2017-10-31 02:38:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67392", "3", "2017-10-31 02:38:40", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67393", "9", "2017-10-31 02:38:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67394", "8", "2017-10-31 02:38:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67395", "10", "2017-10-31 02:38:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67396", "15", "2017-10-31 02:38:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67397", "14", "2017-10-31 03:20:16", "75.154.241.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("67398", "3", "2017-10-31 03:24:41", "185.158.116.174", "5");
INSERT INTO `wp_gf_form_view` VALUES("67399", "6", "2017-10-31 04:11:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67400", "3", "2017-10-31 04:11:48", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67401", "9", "2017-10-31 04:11:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67402", "8", "2017-10-31 04:11:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67403", "10", "2017-10-31 04:11:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67404", "15", "2017-10-31 04:11:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67405", "3", "2017-10-31 05:59:30", "217.61.20.200", "4");
INSERT INTO `wp_gf_form_view` VALUES("67406", "3", "2017-10-31 06:00:27", "217.61.20.200", "31");
INSERT INTO `wp_gf_form_view` VALUES("67407", "6", "2017-10-31 06:02:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67408", "9", "2017-10-31 06:02:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67409", "8", "2017-10-31 06:02:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67410", "10", "2017-10-31 06:02:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67411", "15", "2017-10-31 06:02:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67412", "6", "2017-10-31 07:58:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67413", "3", "2017-10-31 07:58:44", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67414", "9", "2017-10-31 07:58:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67415", "8", "2017-10-31 07:58:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67416", "10", "2017-10-31 07:58:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67417", "15", "2017-10-31 07:58:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67418", "6", "2017-10-31 09:32:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67419", "3", "2017-10-31 09:33:00", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67420", "9", "2017-10-31 09:33:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67421", "8", "2017-10-31 09:33:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67422", "10", "2017-10-31 09:33:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67423", "15", "2017-10-31 09:33:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67424", "3", "2017-10-31 10:09:30", "180.76.15.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("67425", "6", "2017-10-31 11:12:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67426", "3", "2017-10-31 11:12:20", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("67427", "9", "2017-10-31 11:12:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67428", "8", "2017-10-31 11:12:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67429", "10", "2017-10-31 11:12:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67430", "15", "2017-10-31 11:12:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67431", "3", "2017-10-31 12:46:43", "68.180.230.223", "2");
INSERT INTO `wp_gf_form_view` VALUES("67432", "6", "2017-10-31 13:12:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67433", "3", "2017-10-31 13:12:59", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67434", "9", "2017-10-31 13:13:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67435", "8", "2017-10-31 13:13:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67436", "10", "2017-10-31 13:13:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67437", "15", "2017-10-31 13:13:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67438", "3", "2017-10-31 14:49:01", "74.6.168.202", "30");
INSERT INTO `wp_gf_form_view` VALUES("67439", "6", "2017-10-31 14:52:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67440", "9", "2017-10-31 14:52:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67441", "8", "2017-10-31 14:52:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67442", "10", "2017-10-31 14:52:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67443", "15", "2017-10-31 14:52:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67444", "6", "2017-10-31 17:12:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67445", "3", "2017-10-31 17:12:47", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67446", "9", "2017-10-31 17:12:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67447", "8", "2017-10-31 17:12:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67448", "10", "2017-10-31 17:12:50", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67449", "15", "2017-10-31 17:12:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67450", "14", "2017-10-31 17:53:43", "196.247.17.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("67451", "3", "2017-10-31 18:01:02", "64.114.223.2", "8");
INSERT INTO `wp_gf_form_view` VALUES("67452", "10", "2017-10-31 18:49:53", "64.114.222.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("67453", "6", "2017-10-31 19:01:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67454", "3", "2017-10-31 19:01:01", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67455", "9", "2017-10-31 19:01:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67456", "8", "2017-10-31 19:01:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67457", "10", "2017-10-31 19:01:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67458", "15", "2017-10-31 19:01:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67459", "14", "2017-10-31 20:22:51", "24.108.174.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("67460", "3", "2017-10-31 20:42:49", "180.76.15.152", "2");
INSERT INTO `wp_gf_form_view` VALUES("67461", "10", "2017-10-31 21:02:14", "157.55.39.217", "9");
INSERT INTO `wp_gf_form_view` VALUES("67462", "3", "2017-10-31 21:02:21", "157.55.39.171", "36");
INSERT INTO `wp_gf_form_view` VALUES("67463", "9", "2017-10-31 21:02:41", "157.55.39.171", "4");
INSERT INTO `wp_gf_form_view` VALUES("67464", "6", "2017-10-31 21:12:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67465", "8", "2017-10-31 21:12:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67466", "15", "2017-10-31 21:12:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67467", "3", "2017-10-31 22:39:00", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("67468", "6", "2017-10-31 23:28:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67469", "3", "2017-10-31 23:28:03", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67470", "9", "2017-10-31 23:28:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67471", "8", "2017-10-31 23:28:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67472", "10", "2017-10-31 23:28:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67473", "15", "2017-10-31 23:28:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67474", "3", "2017-11-01 00:39:14", "204.79.180.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("67475", "9", "2017-11-01 00:42:09", "157.55.39.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("67476", "10", "2017-11-01 00:52:27", "60.247.101.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("67477", "3", "2017-11-01 01:05:05", "66.249.79.135", "60");
INSERT INTO `wp_gf_form_view` VALUES("67478", "6", "2017-11-01 01:34:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67479", "9", "2017-11-01 01:34:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67480", "8", "2017-11-01 01:34:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67481", "10", "2017-11-01 01:34:59", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67482", "15", "2017-11-01 01:35:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67483", "3", "2017-11-01 02:16:10", "180.76.15.30", "2");
INSERT INTO `wp_gf_form_view` VALUES("67484", "10", "2017-11-01 02:49:32", "180.76.15.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("67485", "6", "2017-11-01 04:08:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67486", "3", "2017-11-01 04:08:55", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("67487", "9", "2017-11-01 04:08:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67488", "8", "2017-11-01 04:08:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67489", "10", "2017-11-01 04:08:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67490", "15", "2017-11-01 04:08:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67491", "6", "2017-11-01 06:04:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67492", "3", "2017-11-01 06:04:42", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67493", "9", "2017-11-01 06:04:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67494", "8", "2017-11-01 06:04:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67495", "10", "2017-11-01 06:04:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67496", "15", "2017-11-01 06:04:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67497", "10", "2017-11-01 07:15:40", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("67498", "6", "2017-11-01 08:08:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67499", "3", "2017-11-01 08:08:29", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67500", "9", "2017-11-01 08:08:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67501", "8", "2017-11-01 08:08:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67502", "10", "2017-11-01 08:08:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67503", "15", "2017-11-01 08:08:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67504", "14", "2017-11-01 08:26:04", "103.197.171.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("67505", "3", "2017-11-01 10:07:12", "66.249.79.137", "30");
INSERT INTO `wp_gf_form_view` VALUES("67506", "6", "2017-11-01 10:13:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67507", "9", "2017-11-01 10:13:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67508", "8", "2017-11-01 10:13:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67509", "10", "2017-11-01 10:13:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67510", "15", "2017-11-01 10:13:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67511", "6", "2017-11-01 11:53:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67512", "3", "2017-11-01 11:53:06", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67513", "9", "2017-11-01 11:53:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67514", "8", "2017-11-01 11:53:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67515", "10", "2017-11-01 11:53:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67516", "15", "2017-11-01 11:53:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67517", "14", "2017-11-01 12:14:57", "180.76.15.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("67518", "3", "2017-11-01 12:53:52", "51.255.47.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("67519", "10", "2017-11-01 13:06:50", "60.247.101.190", "8");
INSERT INTO `wp_gf_form_view` VALUES("67520", "6", "2017-11-01 13:33:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67521", "3", "2017-11-01 13:33:16", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67522", "9", "2017-11-01 13:33:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67523", "8", "2017-11-01 13:33:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67524", "15", "2017-11-01 13:33:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67525", "5", "2017-11-01 13:46:46", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("67526", "6", "2017-11-01 15:24:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67527", "3", "2017-11-01 15:24:15", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67528", "9", "2017-11-01 15:24:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67529", "8", "2017-11-01 15:24:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67530", "10", "2017-11-01 15:24:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67531", "15", "2017-11-01 15:24:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67532", "12", "2017-11-01 15:55:32", "157.55.39.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("67533", "8", "2017-11-01 16:30:55", "64.233.172.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("67534", "6", "2017-11-01 17:08:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67535", "3", "2017-11-01 17:08:44", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67536", "9", "2017-11-01 17:08:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67537", "8", "2017-11-01 17:08:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67538", "10", "2017-11-01 17:08:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67539", "15", "2017-11-01 17:08:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67540", "14", "2017-11-01 17:11:55", "184.66.239.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("67541", "3", "2017-11-01 18:39:52", "172.245.90.69", "32");
INSERT INTO `wp_gf_form_view` VALUES("67542", "6", "2017-11-01 18:54:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67543", "9", "2017-11-01 18:54:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67544", "8", "2017-11-01 18:54:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67545", "10", "2017-11-01 18:54:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67546", "15", "2017-11-01 18:54:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67547", "6", "2017-11-01 21:19:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67548", "3", "2017-11-01 21:19:17", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67549", "9", "2017-11-01 21:19:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67550", "8", "2017-11-01 21:19:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67551", "10", "2017-11-01 21:19:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67552", "15", "2017-11-01 21:19:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67553", "3", "2017-11-01 22:03:16", "24.69.175.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("67554", "6", "2017-11-01 23:01:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67555", "3", "2017-11-01 23:01:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67556", "9", "2017-11-01 23:01:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67557", "8", "2017-11-01 23:01:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67558", "10", "2017-11-01 23:01:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67559", "15", "2017-11-01 23:01:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67560", "6", "2017-11-02 00:57:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67561", "3", "2017-11-02 00:57:17", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67562", "9", "2017-11-02 00:57:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67563", "8", "2017-11-02 00:57:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67564", "10", "2017-11-02 00:57:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67565", "15", "2017-11-02 00:57:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67566", "8", "2017-11-02 01:47:44", "180.76.15.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("67567", "10", "2017-11-02 01:54:15", "164.132.161.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("67568", "6", "2017-11-02 02:35:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67569", "3", "2017-11-02 02:35:18", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67570", "9", "2017-11-02 02:35:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67571", "8", "2017-11-02 02:35:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67572", "10", "2017-11-02 02:35:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67573", "15", "2017-11-02 02:35:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67574", "6", "2017-11-02 04:52:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67575", "3", "2017-11-02 04:52:23", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67576", "9", "2017-11-02 04:52:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67577", "8", "2017-11-02 04:52:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67578", "10", "2017-11-02 04:52:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67579", "15", "2017-11-02 04:52:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67580", "6", "2017-11-02 06:50:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67581", "3", "2017-11-02 06:50:58", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67582", "9", "2017-11-02 06:51:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67583", "8", "2017-11-02 06:51:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67584", "10", "2017-11-02 06:51:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67585", "15", "2017-11-02 06:51:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67586", "3", "2017-11-02 08:25:06", "217.182.132.171", "30");
INSERT INTO `wp_gf_form_view` VALUES("67587", "6", "2017-11-02 08:31:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67588", "9", "2017-11-02 08:31:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67589", "8", "2017-11-02 08:31:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67590", "10", "2017-11-02 08:31:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67591", "15", "2017-11-02 08:31:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67592", "6", "2017-11-02 10:14:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67593", "3", "2017-11-02 10:14:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67594", "9", "2017-11-02 10:14:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67595", "8", "2017-11-02 10:14:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67596", "10", "2017-11-02 10:14:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67597", "15", "2017-11-02 10:14:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67598", "10", "2017-11-02 11:05:01", "72.14.199.65", "6");
INSERT INTO `wp_gf_form_view` VALUES("67599", "3", "2017-11-02 11:25:53", "180.76.15.7", "30");
INSERT INTO `wp_gf_form_view` VALUES("67600", "6", "2017-11-02 11:53:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67601", "9", "2017-11-02 11:53:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67602", "8", "2017-11-02 11:53:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67603", "15", "2017-11-02 11:53:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67604", "3", "2017-11-02 12:39:01", "40.77.167.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("67605", "6", "2017-11-02 13:37:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67606", "3", "2017-11-02 13:37:48", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67607", "9", "2017-11-02 13:37:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67608", "8", "2017-11-02 13:37:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67609", "10", "2017-11-02 13:37:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67610", "15", "2017-11-02 13:37:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67611", "10", "2017-11-02 14:03:03", "60.247.101.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("67612", "8", "2017-11-02 14:24:34", "217.182.132.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("67613", "14", "2017-11-02 15:30:14", "69.58.178.56", "1");
INSERT INTO `wp_gf_form_view` VALUES("67614", "6", "2017-11-02 15:37:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67615", "3", "2017-11-02 15:37:45", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67616", "9", "2017-11-02 15:37:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67617", "8", "2017-11-02 15:37:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67618", "10", "2017-11-02 15:37:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67619", "15", "2017-11-02 15:37:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67620", "3", "2017-11-02 16:04:55", "217.182.132.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("67621", "14", "2017-11-02 16:37:57", "96.54.240.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("67622", "6", "2017-11-02 17:21:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67623", "3", "2017-11-02 17:21:22", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67624", "9", "2017-11-02 17:21:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67625", "8", "2017-11-02 17:21:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67626", "10", "2017-11-02 17:21:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67627", "15", "2017-11-02 17:21:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67628", "3", "2017-11-02 18:38:42", "144.76.5.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("67629", "6", "2017-11-02 19:14:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67630", "3", "2017-11-02 19:14:43", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67631", "9", "2017-11-02 19:14:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67632", "8", "2017-11-02 19:14:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67633", "10", "2017-11-02 19:14:46", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67634", "15", "2017-11-02 19:14:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67635", "8", "2017-11-02 20:22:52", "40.77.167.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("67636", "14", "2017-11-02 20:23:53", "75.157.26.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("67637", "3", "2017-11-02 20:46:06", "64.251.80.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("67638", "6", "2017-11-02 21:22:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67639", "3", "2017-11-02 21:22:41", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67640", "9", "2017-11-02 21:22:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67641", "8", "2017-11-02 21:22:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67642", "10", "2017-11-02 21:22:43", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67643", "15", "2017-11-02 21:22:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67644", "3", "2017-11-02 22:14:47", "109.169.29.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("67645", "6", "2017-11-02 23:08:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67646", "3", "2017-11-02 23:08:41", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("67647", "9", "2017-11-02 23:08:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67648", "8", "2017-11-02 23:08:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67649", "10", "2017-11-02 23:08:43", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67650", "15", "2017-11-02 23:08:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67651", "14", "2017-11-02 23:21:18", "137.74.247.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("67652", "3", "2017-11-03 00:56:37", "108.180.5.19", "30");
INSERT INTO `wp_gf_form_view` VALUES("67653", "6", "2017-11-03 00:56:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67654", "9", "2017-11-03 00:56:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67655", "8", "2017-11-03 00:56:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67656", "10", "2017-11-03 00:56:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67657", "15", "2017-11-03 00:56:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67658", "3", "2017-11-03 02:07:38", "157.55.39.146", "31");
INSERT INTO `wp_gf_form_view` VALUES("67659", "6", "2017-11-03 02:47:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67660", "9", "2017-11-03 02:47:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67661", "8", "2017-11-03 02:47:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67662", "10", "2017-11-03 02:47:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67663", "15", "2017-11-03 02:47:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67664", "6", "2017-11-03 04:46:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67665", "3", "2017-11-03 04:46:21", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67666", "9", "2017-11-03 04:46:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67667", "8", "2017-11-03 04:46:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67668", "10", "2017-11-03 04:46:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67669", "15", "2017-11-03 04:46:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67670", "10", "2017-11-03 05:33:16", "207.46.13.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("67671", "6", "2017-11-03 06:44:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67672", "3", "2017-11-03 06:44:12", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67673", "9", "2017-11-03 06:44:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67674", "8", "2017-11-03 06:44:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67675", "10", "2017-11-03 06:44:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67676", "15", "2017-11-03 06:44:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67677", "10", "2017-11-03 07:28:18", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("67678", "6", "2017-11-03 08:24:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67679", "3", "2017-11-03 08:24:56", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("67680", "9", "2017-11-03 08:24:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67681", "8", "2017-11-03 08:24:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67682", "10", "2017-11-03 08:24:58", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67683", "15", "2017-11-03 08:25:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67684", "10", "2017-11-03 09:36:37", "40.77.167.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("67685", "6", "2017-11-03 10:25:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67686", "3", "2017-11-03 10:25:36", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67687", "9", "2017-11-03 10:25:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67688", "8", "2017-11-03 10:25:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67689", "10", "2017-11-03 10:25:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67690", "15", "2017-11-03 10:25:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67691", "10", "2017-11-03 12:04:54", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("67692", "6", "2017-11-03 12:16:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67693", "3", "2017-11-03 12:16:17", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67694", "9", "2017-11-03 12:16:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67695", "8", "2017-11-03 12:16:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67696", "15", "2017-11-03 12:16:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67697", "3", "2017-11-03 14:03:06", "36.57.181.153", "59");
INSERT INTO `wp_gf_form_view` VALUES("67698", "6", "2017-11-03 14:13:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67699", "9", "2017-11-03 14:13:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67700", "8", "2017-11-03 14:13:49", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67701", "10", "2017-11-03 14:13:50", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("67702", "15", "2017-11-03 14:13:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67703", "3", "2017-11-03 15:02:39", "5.9.98.130", "34");
INSERT INTO `wp_gf_form_view` VALUES("67704", "14", "2017-11-03 15:05:51", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("67705", "8", "2017-11-03 15:06:11", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("67706", "10", "2017-11-03 15:09:41", "5.9.98.130", "5");
INSERT INTO `wp_gf_form_view` VALUES("67707", "15", "2017-11-03 15:13:29", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("67708", "9", "2017-11-03 15:15:55", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("67709", "6", "2017-11-03 15:17:26", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("67710", "6", "2017-11-03 16:18:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67711", "3", "2017-11-03 16:18:16", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("67712", "9", "2017-11-03 16:18:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67713", "8", "2017-11-03 16:18:19", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("67714", "10", "2017-11-03 16:18:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67715", "15", "2017-11-03 16:18:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67716", "14", "2017-11-03 16:19:51", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("67717", "3", "2017-11-03 17:04:18", "31.53.48.222", "4");
INSERT INTO `wp_gf_form_view` VALUES("67718", "8", "2017-11-03 17:19:45", "31.53.48.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("67719", "6", "2017-11-03 18:18:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67720", "3", "2017-11-03 18:18:51", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67721", "9", "2017-11-03 18:18:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67722", "8", "2017-11-03 18:18:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67723", "10", "2017-11-03 18:18:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67724", "15", "2017-11-03 18:18:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67725", "3", "2017-11-03 19:54:40", "157.55.39.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("67726", "6", "2017-11-03 20:49:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67727", "3", "2017-11-03 20:49:10", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67728", "9", "2017-11-03 20:49:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67729", "8", "2017-11-03 20:49:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67730", "10", "2017-11-03 20:49:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67731", "15", "2017-11-03 20:49:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67732", "14", "2017-11-03 21:04:52", "186.220.167.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("67733", "10", "2017-11-03 21:40:28", "157.55.39.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("67734", "6", "2017-11-03 22:34:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67735", "3", "2017-11-03 22:34:42", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("67736", "9", "2017-11-03 22:34:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67737", "8", "2017-11-03 22:34:45", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67738", "10", "2017-11-03 22:34:46", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67739", "15", "2017-11-03 22:34:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67740", "3", "2017-11-04 00:12:12", "109.169.29.30", "59");
INSERT INTO `wp_gf_form_view` VALUES("67741", "6", "2017-11-04 00:25:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67742", "9", "2017-11-04 00:25:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67743", "8", "2017-11-04 00:25:08", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67744", "10", "2017-11-04 00:25:09", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("67745", "15", "2017-11-04 00:25:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67746", "3", "2017-11-04 01:32:26", "46.229.168.71", "19");
INSERT INTO `wp_gf_form_view` VALUES("67747", "10", "2017-11-04 01:36:01", "46.229.168.71", "15");
INSERT INTO `wp_gf_form_view` VALUES("67748", "8", "2017-11-04 01:40:38", "66.102.6.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("67749", "14", "2017-11-04 01:46:47", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("67750", "6", "2017-11-04 02:21:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67751", "3", "2017-11-04 02:21:54", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67752", "9", "2017-11-04 02:21:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67753", "8", "2017-11-04 02:21:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67754", "10", "2017-11-04 02:21:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67755", "15", "2017-11-04 02:22:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67756", "10", "2017-11-04 04:07:46", "204.239.253.217", "8");
INSERT INTO `wp_gf_form_view` VALUES("67757", "6", "2017-11-04 04:14:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67758", "3", "2017-11-04 04:14:21", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67759", "9", "2017-11-04 04:14:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67760", "8", "2017-11-04 04:14:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67761", "15", "2017-11-04 04:14:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67762", "11", "2017-11-04 05:33:26", "77.75.76.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("67763", "6", "2017-11-04 05:58:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67764", "3", "2017-11-04 05:58:44", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67765", "9", "2017-11-04 05:58:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67766", "8", "2017-11-04 05:58:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67767", "10", "2017-11-04 05:58:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67768", "15", "2017-11-04 05:58:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67769", "3", "2017-11-04 06:48:49", "100.43.91.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("67770", "3", "2017-11-04 07:23:27", "216.244.66.231", "32");
INSERT INTO `wp_gf_form_view` VALUES("67771", "6", "2017-11-04 07:47:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67772", "9", "2017-11-04 07:47:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67773", "8", "2017-11-04 07:48:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67774", "10", "2017-11-04 07:48:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67775", "15", "2017-11-04 07:48:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67776", "10", "2017-11-04 08:43:07", "24.108.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("67777", "3", "2017-11-04 09:34:27", "69.30.221.250", "31");
INSERT INTO `wp_gf_form_view` VALUES("67778", "6", "2017-11-04 09:48:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67779", "9", "2017-11-04 09:48:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67780", "8", "2017-11-04 09:48:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67781", "10", "2017-11-04 09:48:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67782", "15", "2017-11-04 09:48:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67783", "6", "2017-11-04 11:58:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67784", "3", "2017-11-04 11:58:43", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67785", "9", "2017-11-04 11:58:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67786", "8", "2017-11-04 11:58:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67787", "10", "2017-11-04 11:58:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67788", "15", "2017-11-04 11:58:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67789", "10", "2017-11-04 12:00:17", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("67790", "3", "2017-11-04 12:53:29", "68.180.230.223", "1");
INSERT INTO `wp_gf_form_view` VALUES("67791", "6", "2017-11-04 13:56:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67792", "3", "2017-11-04 13:56:57", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67793", "9", "2017-11-04 13:56:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67794", "8", "2017-11-04 13:57:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67795", "10", "2017-11-04 13:57:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67796", "15", "2017-11-04 13:57:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67797", "10", "2017-11-04 14:39:13", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("67798", "3", "2017-11-04 15:09:05", "180.76.15.22", "2");
INSERT INTO `wp_gf_form_view` VALUES("67799", "14", "2017-11-04 15:42:20", "180.76.15.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("67800", "6", "2017-11-04 16:07:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67801", "3", "2017-11-04 16:07:28", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("67802", "9", "2017-11-04 16:07:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67803", "8", "2017-11-04 16:07:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67804", "10", "2017-11-04 16:07:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67805", "15", "2017-11-04 16:07:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67806", "10", "2017-11-04 17:02:11", "207.46.13.177", "6");
INSERT INTO `wp_gf_form_view` VALUES("67807", "3", "2017-11-04 17:22:25", "180.76.15.5", "31");
INSERT INTO `wp_gf_form_view` VALUES("67808", "6", "2017-11-04 17:47:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67809", "9", "2017-11-04 17:47:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67810", "8", "2017-11-04 17:47:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67811", "15", "2017-11-04 17:47:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67812", "3", "2017-11-04 18:57:31", "5.62.41.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("67813", "3", "2017-11-04 19:02:24", "180.76.15.18", "31");
INSERT INTO `wp_gf_form_view` VALUES("67814", "6", "2017-11-04 19:28:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67815", "9", "2017-11-04 19:28:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67816", "8", "2017-11-04 19:28:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67817", "10", "2017-11-04 19:28:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67818", "15", "2017-11-04 19:28:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67819", "10", "2017-11-04 20:04:18", "157.55.39.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("67820", "3", "2017-11-04 20:11:23", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("67821", "6", "2017-11-04 21:08:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67822", "3", "2017-11-04 21:08:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67823", "9", "2017-11-04 21:08:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67824", "8", "2017-11-04 21:08:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67825", "10", "2017-11-04 21:08:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67826", "15", "2017-11-04 21:08:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67827", "3", "2017-11-04 22:53:04", "104.196.154.58", "34");
INSERT INTO `wp_gf_form_view` VALUES("67828", "6", "2017-11-04 22:53:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67829", "9", "2017-11-04 22:53:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67830", "8", "2017-11-04 22:53:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67831", "10", "2017-11-04 22:53:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67832", "15", "2017-11-04 22:53:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67833", "3", "2017-11-04 23:51:55", "104.196.186.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("67834", "14", "2017-11-04 23:53:04", "104.196.186.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("67835", "8", "2017-11-04 23:57:27", "104.196.186.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("67836", "3", "2017-11-05 00:02:17", "180.76.15.138", "40");
INSERT INTO `wp_gf_form_view` VALUES("67837", "6", "2017-11-05 00:47:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67838", "9", "2017-11-05 00:47:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67839", "8", "2017-11-05 00:47:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67840", "10", "2017-11-05 00:47:58", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("67841", "15", "2017-11-05 00:48:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67842", "14", "2017-11-05 00:53:03", "104.196.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("67843", "3", "2017-11-05 02:08:38", "157.55.39.159", "30");
INSERT INTO `wp_gf_form_view` VALUES("67844", "6", "2017-11-05 02:33:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67845", "9", "2017-11-05 02:33:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67846", "8", "2017-11-05 02:33:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67847", "10", "2017-11-05 02:33:23", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67848", "15", "2017-11-05 02:33:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67849", "10", "2017-11-05 03:07:00", "51.255.65.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("67850", "3", "2017-11-05 03:08:50", "104.196.159.88", "23");
INSERT INTO `wp_gf_form_view` VALUES("67851", "8", "2017-11-05 03:09:14", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("67852", "9", "2017-11-05 03:10:16", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("67853", "6", "2017-11-05 03:11:50", "104.196.159.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("67854", "6", "2017-11-05 04:22:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67855", "3", "2017-11-05 04:22:36", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67856", "9", "2017-11-05 04:22:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67857", "8", "2017-11-05 04:22:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67858", "10", "2017-11-05 04:22:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67859", "15", "2017-11-05 04:22:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67860", "3", "2017-11-05 05:20:14", "216.244.66.247", "41");
INSERT INTO `wp_gf_form_view` VALUES("67861", "6", "2017-11-05 05:43:44", "104.196.142.132", "2");
INSERT INTO `wp_gf_form_view` VALUES("67862", "10", "2017-11-05 05:43:55", "104.196.142.132", "6");
INSERT INTO `wp_gf_form_view` VALUES("67863", "9", "2017-11-05 05:58:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67864", "8", "2017-11-05 05:58:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67865", "15", "2017-11-05 05:59:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67866", "10", "2017-11-05 06:05:22", "72.14.199.69", "9");
INSERT INTO `wp_gf_form_view` VALUES("67867", "8", "2017-11-05 06:12:15", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("67868", "10", "2017-11-05 07:00:34", "24.108.13.92", "14");
INSERT INTO `wp_gf_form_view` VALUES("67869", "3", "2017-11-05 07:03:34", "216.244.66.247", "38");
INSERT INTO `wp_gf_form_view` VALUES("67870", "6", "2017-11-05 07:39:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67871", "9", "2017-11-05 07:39:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67872", "8", "2017-11-05 07:39:25", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("67873", "15", "2017-11-05 07:39:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67874", "3", "2017-11-05 08:29:28", "180.76.15.20", "4");
INSERT INTO `wp_gf_form_view` VALUES("67875", "6", "2017-11-05 09:34:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67876", "3", "2017-11-05 09:34:14", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67877", "9", "2017-11-05 09:34:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67878", "8", "2017-11-05 09:34:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67879", "10", "2017-11-05 09:34:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67880", "15", "2017-11-05 09:34:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67881", "3", "2017-11-05 10:07:14", "5.188.211.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("67882", "6", "2017-11-05 11:25:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67883", "3", "2017-11-05 11:25:32", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67884", "9", "2017-11-05 11:25:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67885", "8", "2017-11-05 11:25:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67886", "10", "2017-11-05 11:25:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67887", "15", "2017-11-05 11:25:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67888", "3", "2017-11-05 12:10:49", "180.76.15.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("67889", "6", "2017-11-05 13:08:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67890", "3", "2017-11-05 13:08:37", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("67891", "9", "2017-11-05 13:08:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67892", "8", "2017-11-05 13:08:39", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("67893", "10", "2017-11-05 13:08:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67894", "15", "2017-11-05 13:08:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67895", "6", "2017-11-05 14:48:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67896", "3", "2017-11-05 14:48:59", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67897", "9", "2017-11-05 14:49:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67898", "8", "2017-11-05 14:49:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67899", "10", "2017-11-05 14:49:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67900", "15", "2017-11-05 14:49:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67901", "14", "2017-11-05 15:13:51", "207.46.13.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("67902", "6", "2017-11-05 16:34:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67903", "3", "2017-11-05 16:34:20", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67904", "9", "2017-11-05 16:34:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67905", "8", "2017-11-05 16:34:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67906", "10", "2017-11-05 16:34:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67907", "15", "2017-11-05 16:34:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67908", "3", "2017-11-05 17:26:34", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("67909", "8", "2017-11-05 17:26:57", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("67910", "10", "2017-11-05 18:11:42", "24.108.13.92", "7");
INSERT INTO `wp_gf_form_view` VALUES("67911", "6", "2017-11-05 18:28:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67912", "3", "2017-11-05 18:28:11", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67913", "9", "2017-11-05 18:28:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67914", "8", "2017-11-05 18:28:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67915", "15", "2017-11-05 18:28:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67916", "10", "2017-11-05 19:44:11", "24.108.13.92", "6");
INSERT INTO `wp_gf_form_view` VALUES("67917", "3", "2017-11-05 19:48:41", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("67918", "6", "2017-11-05 20:10:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67919", "3", "2017-11-05 20:10:23", "52.37.180.245", "43");
INSERT INTO `wp_gf_form_view` VALUES("67920", "9", "2017-11-05 20:10:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67921", "8", "2017-11-05 20:10:25", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("67922", "10", "2017-11-05 20:10:25", "52.37.180.245", "14");
INSERT INTO `wp_gf_form_view` VALUES("67923", "15", "2017-11-05 20:10:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67924", "11", "2017-11-05 20:47:07", "157.55.39.146", "1");
INSERT INTO `wp_gf_form_view` VALUES("67925", "14", "2017-11-05 20:58:13", "185.158.107.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("67926", "6", "2017-11-05 21:48:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67927", "3", "2017-11-05 21:48:19", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("67928", "9", "2017-11-05 21:48:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67929", "8", "2017-11-05 21:48:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67930", "10", "2017-11-05 21:48:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67931", "15", "2017-11-05 21:48:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67932", "6", "2017-11-05 23:34:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67933", "3", "2017-11-05 23:34:39", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67934", "9", "2017-11-05 23:34:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67935", "8", "2017-11-05 23:34:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67936", "10", "2017-11-05 23:34:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67937", "15", "2017-11-05 23:34:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67938", "3", "2017-11-06 00:23:33", "207.46.13.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("67939", "6", "2017-11-06 01:28:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67940", "3", "2017-11-06 01:28:36", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67941", "9", "2017-11-06 01:28:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67942", "8", "2017-11-06 01:28:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67943", "10", "2017-11-06 01:28:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67944", "15", "2017-11-06 01:28:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67945", "3", "2017-11-06 03:06:36", "216.244.66.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("67946", "6", "2017-11-06 03:07:01", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("67947", "9", "2017-11-06 03:14:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67948", "8", "2017-11-06 03:14:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67949", "10", "2017-11-06 03:14:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67950", "15", "2017-11-06 03:14:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67951", "15", "2017-11-06 04:48:14", "37.113.61.179", "3");
INSERT INTO `wp_gf_form_view` VALUES("67952", "6", "2017-11-06 04:48:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67953", "3", "2017-11-06 04:48:53", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67954", "9", "2017-11-06 04:48:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67955", "8", "2017-11-06 04:48:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67956", "10", "2017-11-06 04:48:55", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67957", "3", "2017-11-06 05:18:16", "100.43.91.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("67958", "6", "2017-11-06 06:34:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67959", "3", "2017-11-06 06:34:59", "52.37.180.245", "59");
INSERT INTO `wp_gf_form_view` VALUES("67960", "9", "2017-11-06 06:35:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67961", "8", "2017-11-06 06:35:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("67962", "10", "2017-11-06 06:35:01", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("67963", "15", "2017-11-06 06:35:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67964", "3", "2017-11-06 08:02:19", "184.66.40.177", "33");
INSERT INTO `wp_gf_form_view` VALUES("67965", "8", "2017-11-06 08:02:23", "184.66.40.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("67966", "6", "2017-11-06 08:34:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67967", "9", "2017-11-06 08:34:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67968", "10", "2017-11-06 08:34:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67969", "15", "2017-11-06 08:34:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67970", "10", "2017-11-06 09:30:28", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("67971", "3", "2017-11-06 09:31:01", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("67972", "6", "2017-11-06 10:16:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67973", "3", "2017-11-06 10:16:43", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67974", "9", "2017-11-06 10:16:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67975", "8", "2017-11-06 10:16:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67976", "10", "2017-11-06 10:16:45", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("67977", "15", "2017-11-06 10:16:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67978", "15", "2017-11-06 11:00:15", "164.132.161.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("67979", "3", "2017-11-06 11:18:58", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("67980", "3", "2017-11-06 12:07:02", "217.182.132.62", "31");
INSERT INTO `wp_gf_form_view` VALUES("67981", "6", "2017-11-06 12:13:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67982", "9", "2017-11-06 12:13:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67983", "8", "2017-11-06 12:13:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67984", "10", "2017-11-06 12:13:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67985", "15", "2017-11-06 12:13:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67986", "3", "2017-11-06 13:18:33", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("67987", "10", "2017-11-06 13:49:40", "40.77.167.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("67988", "6", "2017-11-06 14:03:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67989", "3", "2017-11-06 14:03:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("67990", "9", "2017-11-06 14:03:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67991", "8", "2017-11-06 14:03:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67992", "10", "2017-11-06 14:03:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67993", "15", "2017-11-06 14:03:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67994", "6", "2017-11-06 15:38:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67995", "3", "2017-11-06 15:38:34", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("67996", "9", "2017-11-06 15:38:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("67997", "8", "2017-11-06 15:38:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("67998", "10", "2017-11-06 15:38:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("67999", "15", "2017-11-06 15:38:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68000", "8", "2017-11-06 16:27:38", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68001", "3", "2017-11-06 16:28:25", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68002", "3", "2017-11-06 17:22:53", "207.194.133.9", "30");
INSERT INTO `wp_gf_form_view` VALUES("68003", "10", "2017-11-06 17:31:41", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("68004", "6", "2017-11-06 17:37:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68005", "9", "2017-11-06 17:37:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68006", "8", "2017-11-06 17:37:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68007", "15", "2017-11-06 17:37:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68008", "3", "2017-11-06 18:11:56", "96.54.224.73", "30");
INSERT INTO `wp_gf_form_view` VALUES("68009", "6", "2017-11-06 18:39:18", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68010", "9", "2017-11-06 18:39:21", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68011", "8", "2017-11-06 18:39:22", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68012", "10", "2017-11-06 18:39:23", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("68013", "15", "2017-11-06 18:39:25", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68014", "3", "2017-11-06 19:33:36", "217.182.132.63", "30");
INSERT INTO `wp_gf_form_view` VALUES("68015", "6", "2017-11-06 19:38:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68016", "9", "2017-11-06 19:38:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68017", "8", "2017-11-06 19:38:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68018", "10", "2017-11-06 19:38:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68019", "15", "2017-11-06 19:38:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68020", "10", "2017-11-06 20:00:05", "40.77.167.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("68021", "8", "2017-11-06 20:03:44", "66.102.6.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("68022", "3", "2017-11-06 20:19:20", "194.187.170.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("68023", "14", "2017-11-06 20:27:42", "134.87.139.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("68024", "10", "2017-11-06 21:16:02", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("68025", "6", "2017-11-06 21:34:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68026", "3", "2017-11-06 21:34:21", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68027", "9", "2017-11-06 21:34:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68028", "8", "2017-11-06 21:34:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68029", "15", "2017-11-06 21:34:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68030", "14", "2017-11-06 23:03:43", "216.232.132.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("68031", "3", "2017-11-06 23:21:57", "216.244.66.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("68032", "6", "2017-11-06 23:45:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68033", "9", "2017-11-06 23:45:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68034", "8", "2017-11-06 23:45:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68035", "10", "2017-11-06 23:46:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68036", "15", "2017-11-06 23:46:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68037", "3", "2017-11-07 00:27:08", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68038", "10", "2017-11-07 00:35:46", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68039", "3", "2017-11-07 01:31:59", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("68040", "14", "2017-11-07 01:59:42", "40.132.242.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("68041", "3", "2017-11-07 02:00:14", "217.182.132.82", "31");
INSERT INTO `wp_gf_form_view` VALUES("68042", "6", "2017-11-07 02:09:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68043", "9", "2017-11-07 02:09:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68044", "8", "2017-11-07 02:09:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68045", "10", "2017-11-07 02:09:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68046", "15", "2017-11-07 02:09:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68047", "6", "2017-11-07 03:59:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68048", "3", "2017-11-07 03:59:55", "52.37.180.245", "22");
INSERT INTO `wp_gf_form_view` VALUES("68049", "9", "2017-11-07 03:59:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68050", "8", "2017-11-07 03:59:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68051", "10", "2017-11-07 03:59:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68052", "15", "2017-11-07 04:00:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68053", "10", "2017-11-07 04:00:00", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("68054", "3", "2017-11-07 04:00:00", "52.37.180.245", "37");
INSERT INTO `wp_gf_form_view` VALUES("68055", "8", "2017-11-07 04:00:01", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("68056", "6", "2017-11-07 04:00:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68057", "9", "2017-11-07 04:00:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68058", "3", "2017-11-07 05:08:15", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("68059", "15", "2017-11-07 05:08:38", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68060", "14", "2017-11-07 06:06:49", "70.66.183.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("68061", "6", "2017-11-07 06:09:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68062", "3", "2017-11-07 06:09:08", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("68063", "9", "2017-11-07 06:09:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68064", "8", "2017-11-07 06:09:10", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68065", "10", "2017-11-07 06:09:11", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("68066", "15", "2017-11-07 06:09:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68067", "10", "2017-11-07 07:12:23", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68068", "3", "2017-11-07 07:49:55", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("68069", "9", "2017-11-07 07:59:52", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68070", "6", "2017-11-07 07:59:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68071", "9", "2017-11-07 08:00:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68072", "3", "2017-11-07 08:00:00", "52.37.180.245", "52");
INSERT INTO `wp_gf_form_view` VALUES("68073", "8", "2017-11-07 08:00:00", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68074", "10", "2017-11-07 08:00:01", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("68075", "15", "2017-11-07 08:00:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68076", "6", "2017-11-07 08:00:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68077", "3", "2017-11-07 09:39:20", "77.75.78.165", "59");
INSERT INTO `wp_gf_form_view` VALUES("68078", "6", "2017-11-07 09:39:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68079", "9", "2017-11-07 09:39:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68080", "8", "2017-11-07 09:39:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68081", "10", "2017-11-07 09:39:55", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("68082", "15", "2017-11-07 09:39:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68083", "3", "2017-11-07 10:07:10", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68084", "3", "2017-11-07 11:09:44", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("68085", "6", "2017-11-07 11:26:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68086", "9", "2017-11-07 11:26:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68087", "8", "2017-11-07 11:26:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68088", "10", "2017-11-07 11:26:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68089", "15", "2017-11-07 11:27:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68090", "14", "2017-11-07 11:41:58", "82.211.9.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("68091", "10", "2017-11-07 12:10:48", "66.249.69.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("68092", "3", "2017-11-07 12:56:18", "164.132.161.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("68093", "3", "2017-11-07 13:02:23", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("68094", "6", "2017-11-07 13:15:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68095", "9", "2017-11-07 13:15:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68096", "8", "2017-11-07 13:15:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68097", "10", "2017-11-07 13:15:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68098", "15", "2017-11-07 13:15:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68099", "3", "2017-11-07 14:04:54", "216.244.66.247", "9");
INSERT INTO `wp_gf_form_view` VALUES("68100", "6", "2017-11-07 15:05:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68101", "3", "2017-11-07 15:05:51", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("68102", "9", "2017-11-07 15:05:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68103", "8", "2017-11-07 15:05:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68104", "10", "2017-11-07 15:05:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68105", "15", "2017-11-07 15:05:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68106", "10", "2017-11-07 16:00:26", "216.244.66.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("68107", "3", "2017-11-07 16:00:50", "216.244.66.195", "63");
INSERT INTO `wp_gf_form_view` VALUES("68108", "6", "2017-11-07 16:46:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68109", "9", "2017-11-07 16:46:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68110", "8", "2017-11-07 16:46:04", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68111", "15", "2017-11-07 16:46:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68112", "10", "2017-11-07 17:14:53", "180.76.15.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("68113", "3", "2017-11-07 17:15:08", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68114", "6", "2017-11-07 18:31:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68115", "3", "2017-11-07 18:31:07", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68116", "9", "2017-11-07 18:31:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68117", "8", "2017-11-07 18:31:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68118", "10", "2017-11-07 18:31:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68119", "15", "2017-11-07 18:31:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68120", "10", "2017-11-07 19:52:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68121", "3", "2017-11-07 20:01:55", "5.9.144.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("68122", "6", "2017-11-07 20:32:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68123", "9", "2017-11-07 20:32:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68124", "8", "2017-11-07 20:32:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68125", "10", "2017-11-07 20:32:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68126", "15", "2017-11-07 20:32:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68127", "8", "2017-11-07 21:00:44", "66.102.6.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("68128", "3", "2017-11-07 21:01:20", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68129", "10", "2017-11-07 21:04:41", "51.255.65.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("68130", "14", "2017-11-07 21:27:17", "217.23.14.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("68131", "10", "2017-11-07 22:01:33", "216.244.66.247", "8");
INSERT INTO `wp_gf_form_view` VALUES("68132", "8", "2017-11-07 22:18:14", "24.69.176.158", "3");
INSERT INTO `wp_gf_form_view` VALUES("68133", "6", "2017-11-07 22:22:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68134", "3", "2017-11-07 22:22:10", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68135", "9", "2017-11-07 22:22:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68136", "15", "2017-11-07 22:22:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68137", "8", "2017-11-07 23:08:23", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68138", "6", "2017-11-08 00:16:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68139", "3", "2017-11-08 00:16:29", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68140", "9", "2017-11-08 00:16:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68141", "8", "2017-11-08 00:16:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68142", "10", "2017-11-08 00:16:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68143", "15", "2017-11-08 00:16:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68144", "3", "2017-11-08 01:03:56", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("68145", "10", "2017-11-08 01:04:33", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68146", "11", "2017-11-08 01:52:52", "194.187.170.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("68147", "3", "2017-11-08 02:00:10", "104.131.97.64", "63");
INSERT INTO `wp_gf_form_view` VALUES("68148", "14", "2017-11-08 02:04:02", "104.131.97.64", "1");
INSERT INTO `wp_gf_form_view` VALUES("68149", "6", "2017-11-08 02:04:39", "104.131.97.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("68150", "10", "2017-11-08 02:06:46", "104.131.97.64", "10");
INSERT INTO `wp_gf_form_view` VALUES("68151", "9", "2017-11-08 02:10:21", "104.131.97.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("68152", "8", "2017-11-08 02:12:21", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68153", "15", "2017-11-08 02:12:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68154", "3", "2017-11-08 03:21:29", "216.244.66.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("68155", "6", "2017-11-08 03:45:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68156", "9", "2017-11-08 03:45:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68157", "8", "2017-11-08 03:45:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68158", "10", "2017-11-08 03:45:28", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68159", "15", "2017-11-08 03:45:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68160", "14", "2017-11-08 03:45:47", "207.216.80.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("68161", "3", "2017-11-08 05:14:14", "5.62.41.67", "36");
INSERT INTO `wp_gf_form_view` VALUES("68162", "8", "2017-11-08 05:15:50", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("68163", "6", "2017-11-08 05:32:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68164", "9", "2017-11-08 05:32:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68165", "10", "2017-11-08 05:32:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68166", "15", "2017-11-08 05:32:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68167", "3", "2017-11-08 06:02:53", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68168", "12", "2017-11-08 06:59:59", "164.132.161.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("68169", "6", "2017-11-08 07:12:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68170", "3", "2017-11-08 07:12:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68171", "9", "2017-11-08 07:12:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68172", "8", "2017-11-08 07:12:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68173", "10", "2017-11-08 07:12:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68174", "15", "2017-11-08 07:12:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68175", "6", "2017-11-08 08:57:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68176", "3", "2017-11-08 08:57:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68177", "9", "2017-11-08 08:57:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68178", "8", "2017-11-08 08:57:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68179", "10", "2017-11-08 08:57:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68180", "15", "2017-11-08 08:57:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68181", "3", "2017-11-08 09:17:36", "216.244.66.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("68182", "10", "2017-11-08 09:18:00", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68183", "3", "2017-11-08 10:04:11", "194.187.170.137", "32");
INSERT INTO `wp_gf_form_view` VALUES("68184", "10", "2017-11-08 10:12:44", "194.187.170.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("68185", "6", "2017-11-08 10:43:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68186", "9", "2017-11-08 10:43:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68187", "8", "2017-11-08 10:43:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68188", "15", "2017-11-08 10:43:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68189", "3", "2017-11-08 11:02:32", "194.187.170.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("68190", "10", "2017-11-08 11:08:49", "194.187.170.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("68191", "6", "2017-11-08 11:32:08", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68192", "6", "2017-11-08 12:21:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68193", "3", "2017-11-08 12:21:43", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("68194", "9", "2017-11-08 12:21:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68195", "8", "2017-11-08 12:21:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68196", "10", "2017-11-08 12:21:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68197", "15", "2017-11-08 12:21:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68198", "6", "2017-11-08 14:10:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68199", "3", "2017-11-08 14:10:05", "52.37.180.245", "65");
INSERT INTO `wp_gf_form_view` VALUES("68200", "9", "2017-11-08 14:10:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68201", "8", "2017-11-08 14:10:07", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("68202", "10", "2017-11-08 14:10:08", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("68203", "15", "2017-11-08 14:10:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68204", "14", "2017-11-08 14:48:17", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("68205", "3", "2017-11-08 15:23:24", "77.75.78.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("68206", "6", "2017-11-08 16:02:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68207", "3", "2017-11-08 16:02:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68208", "9", "2017-11-08 16:02:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68209", "8", "2017-11-08 16:02:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68210", "10", "2017-11-08 16:02:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68211", "15", "2017-11-08 16:02:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68212", "3", "2017-11-08 17:12:38", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("68213", "6", "2017-11-08 17:51:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68214", "9", "2017-11-08 17:51:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68215", "8", "2017-11-08 17:51:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68216", "10", "2017-11-08 17:51:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68217", "15", "2017-11-08 17:52:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68218", "10", "2017-11-08 18:45:35", "72.14.199.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("68219", "8", "2017-11-08 19:31:52", "37.204.50.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("68220", "10", "2017-11-08 19:45:13", "194.187.170.147", "3");
INSERT INTO `wp_gf_form_view` VALUES("68221", "3", "2017-11-08 19:46:56", "144.76.62.20", "7");
INSERT INTO `wp_gf_form_view` VALUES("68222", "10", "2017-11-08 20:05:51", "194.187.170.147", "7");
INSERT INTO `wp_gf_form_view` VALUES("68223", "6", "2017-11-08 20:11:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68224", "3", "2017-11-08 20:11:02", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("68225", "9", "2017-11-08 20:11:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68226", "8", "2017-11-08 20:11:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68227", "15", "2017-11-08 20:11:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68228", "3", "2017-11-08 21:02:49", "216.244.66.247", "40");
INSERT INTO `wp_gf_form_view` VALUES("68229", "10", "2017-11-08 21:47:31", "144.76.62.20", "6");
INSERT INTO `wp_gf_form_view` VALUES("68230", "6", "2017-11-08 21:51:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68231", "9", "2017-11-08 21:51:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68232", "8", "2017-11-08 21:51:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68233", "15", "2017-11-08 21:51:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68234", "9", "2017-11-08 22:33:11", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68235", "14", "2017-11-08 22:45:11", "36.67.8.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("68236", "10", "2017-11-08 22:52:21", "217.182.132.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("68237", "3", "2017-11-08 23:11:14", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("68238", "8", "2017-11-08 23:16:54", "64.233.172.250", "4");
INSERT INTO `wp_gf_form_view` VALUES("68239", "6", "2017-11-08 23:40:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68240", "9", "2017-11-08 23:41:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68241", "10", "2017-11-08 23:41:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68242", "15", "2017-11-08 23:41:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68243", "14", "2017-11-09 00:39:46", "75.157.168.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("68244", "3", "2017-11-09 01:07:11", "104.223.94.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("68245", "10", "2017-11-09 01:52:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68246", "6", "2017-11-09 02:01:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68247", "3", "2017-11-09 02:01:44", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68248", "9", "2017-11-09 02:01:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68249", "8", "2017-11-09 02:01:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68250", "10", "2017-11-09 02:01:47", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("68251", "15", "2017-11-09 02:01:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68252", "6", "2017-11-09 03:42:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68253", "3", "2017-11-09 03:42:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68254", "9", "2017-11-09 03:42:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68255", "8", "2017-11-09 03:42:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68256", "10", "2017-11-09 03:42:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68257", "15", "2017-11-09 03:42:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68258", "10", "2017-11-09 04:56:55", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68259", "3", "2017-11-09 05:10:48", "216.244.66.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("68260", "6", "2017-11-09 05:26:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68261", "9", "2017-11-09 05:26:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68262", "8", "2017-11-09 05:26:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68263", "10", "2017-11-09 05:26:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68264", "15", "2017-11-09 05:26:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68265", "10", "2017-11-09 06:00:32", "199.59.150.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("68266", "3", "2017-11-09 06:22:06", "194.187.170.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("68267", "10", "2017-11-09 07:01:17", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("68268", "3", "2017-11-09 07:09:39", "46.229.168.75", "53");
INSERT INTO `wp_gf_form_view` VALUES("68269", "14", "2017-11-09 07:12:32", "46.229.168.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("68270", "9", "2017-11-09 07:13:24", "46.229.168.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("68271", "8", "2017-11-09 07:15:13", "46.229.168.79", "6");
INSERT INTO `wp_gf_form_view` VALUES("68272", "11", "2017-11-09 07:15:37", "46.229.168.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("68273", "6", "2017-11-09 07:16:46", "46.229.168.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("68274", "15", "2017-11-09 07:25:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68275", "10", "2017-11-09 08:04:06", "72.14.199.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("68276", "3", "2017-11-09 08:07:52", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68277", "6", "2017-11-09 09:30:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68278", "3", "2017-11-09 09:30:26", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68279", "9", "2017-11-09 09:30:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68280", "8", "2017-11-09 09:30:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68281", "10", "2017-11-09 09:30:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68282", "15", "2017-11-09 09:30:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68283", "8", "2017-11-09 10:06:47", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("68284", "3", "2017-11-09 10:09:57", "95.91.11.130", "7");
INSERT INTO `wp_gf_form_view` VALUES("68285", "10", "2017-11-09 10:59:50", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68286", "3", "2017-11-09 11:06:15", "216.244.66.247", "30");
INSERT INTO `wp_gf_form_view` VALUES("68287", "8", "2017-11-09 11:06:38", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("68288", "6", "2017-11-09 11:31:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68289", "9", "2017-11-09 11:31:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68290", "10", "2017-11-09 11:31:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68291", "15", "2017-11-09 11:32:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68292", "3", "2017-11-09 12:24:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68293", "3", "2017-11-09 13:18:37", "104.202.122.130", "64");
INSERT INTO `wp_gf_form_view` VALUES("68294", "6", "2017-11-09 13:18:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68295", "9", "2017-11-09 13:18:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68296", "8", "2017-11-09 13:18:49", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68297", "10", "2017-11-09 13:18:49", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("68298", "15", "2017-11-09 13:18:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68299", "6", "2017-11-09 14:59:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68300", "3", "2017-11-09 14:59:41", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68301", "9", "2017-11-09 14:59:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68302", "8", "2017-11-09 14:59:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68303", "10", "2017-11-09 14:59:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68304", "15", "2017-11-09 14:59:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68305", "3", "2017-11-09 15:27:26", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68306", "10", "2017-11-09 16:26:14", "40.77.167.10", "6");
INSERT INTO `wp_gf_form_view` VALUES("68307", "6", "2017-11-09 16:45:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68308", "3", "2017-11-09 16:45:39", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68309", "9", "2017-11-09 16:45:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68310", "8", "2017-11-09 16:45:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68311", "15", "2017-11-09 16:45:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68312", "3", "2017-11-09 17:48:24", "144.76.62.20", "15");
INSERT INTO `wp_gf_form_view` VALUES("68313", "10", "2017-11-09 17:48:26", "144.76.62.20", "1");
INSERT INTO `wp_gf_form_view` VALUES("68314", "6", "2017-11-09 18:20:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68315", "3", "2017-11-09 18:20:32", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("68316", "9", "2017-11-09 18:20:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68317", "8", "2017-11-09 18:20:34", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("68318", "10", "2017-11-09 18:20:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68319", "15", "2017-11-09 18:20:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68320", "3", "2017-11-09 19:14:15", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68321", "15", "2017-11-09 19:14:34", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68322", "10", "2017-11-09 19:33:15", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68323", "3", "2017-11-09 20:05:17", "64.251.80.162", "31");
INSERT INTO `wp_gf_form_view` VALUES("68324", "6", "2017-11-09 20:14:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68325", "9", "2017-11-09 20:14:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68326", "8", "2017-11-09 20:14:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68327", "10", "2017-11-09 20:14:31", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68328", "15", "2017-11-09 20:14:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68329", "3", "2017-11-09 21:08:39", "107.172.35.40", "11");
INSERT INTO `wp_gf_form_view` VALUES("68330", "6", "2017-11-09 22:01:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68331", "3", "2017-11-09 22:01:05", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68332", "9", "2017-11-09 22:01:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68333", "8", "2017-11-09 22:01:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68334", "10", "2017-11-09 22:01:10", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68335", "15", "2017-11-09 22:01:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68336", "14", "2017-11-09 23:12:09", "36.66.213.25", "5");
INSERT INTO `wp_gf_form_view` VALUES("68337", "3", "2017-11-09 23:12:22", "36.66.213.25", "42");
INSERT INTO `wp_gf_form_view` VALUES("68338", "10", "2017-11-09 23:54:21", "164.132.161.57", "6");
INSERT INTO `wp_gf_form_view` VALUES("68339", "6", "2017-11-09 23:55:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68340", "9", "2017-11-09 23:55:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68341", "8", "2017-11-09 23:55:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68342", "15", "2017-11-09 23:55:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68343", "9", "2017-11-10 00:16:57", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68344", "3", "2017-11-10 00:17:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68345", "14", "2017-11-10 01:02:46", "68.180.231.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("68346", "6", "2017-11-10 01:40:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68347", "3", "2017-11-10 01:40:00", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("68348", "9", "2017-11-10 01:40:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68349", "8", "2017-11-10 01:40:02", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68350", "10", "2017-11-10 01:40:02", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("68351", "15", "2017-11-10 01:40:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68352", "3", "2017-11-10 02:54:10", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68353", "6", "2017-11-10 03:30:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68354", "3", "2017-11-10 03:30:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68355", "9", "2017-11-10 03:30:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68356", "8", "2017-11-10 03:30:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68357", "10", "2017-11-10 03:30:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68358", "15", "2017-11-10 03:30:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68359", "3", "2017-11-10 04:02:57", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("68360", "6", "2017-11-10 05:15:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68361", "3", "2017-11-10 05:15:04", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("68362", "9", "2017-11-10 05:15:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68363", "8", "2017-11-10 05:15:06", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68364", "10", "2017-11-10 05:15:06", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("68365", "15", "2017-11-10 05:15:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68366", "3", "2017-11-10 06:17:57", "216.244.66.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("68367", "8", "2017-11-10 06:18:46", "184.66.40.177", "3");
INSERT INTO `wp_gf_form_view` VALUES("68368", "6", "2017-11-10 06:59:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68369", "9", "2017-11-10 06:59:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68370", "10", "2017-11-10 06:59:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68371", "15", "2017-11-10 06:59:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68372", "3", "2017-11-10 07:45:22", "51.255.65.38", "4");
INSERT INTO `wp_gf_form_view` VALUES("68373", "6", "2017-11-10 08:52:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68374", "3", "2017-11-10 08:52:42", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68375", "9", "2017-11-10 08:52:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68376", "8", "2017-11-10 08:52:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68377", "10", "2017-11-10 08:52:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68378", "15", "2017-11-10 08:52:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68379", "3", "2017-11-10 09:16:15", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("68380", "10", "2017-11-10 09:16:35", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68381", "10", "2017-11-10 10:02:12", "216.244.66.247", "14");
INSERT INTO `wp_gf_form_view` VALUES("68382", "6", "2017-11-10 10:08:36", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68383", "3", "2017-11-10 10:08:36", "216.244.66.247", "60");
INSERT INTO `wp_gf_form_view` VALUES("68384", "9", "2017-11-10 10:08:37", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68385", "8", "2017-11-10 10:08:38", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("68386", "15", "2017-11-10 10:08:41", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68387", "10", "2017-11-10 11:01:25", "194.187.170.128", "4");
INSERT INTO `wp_gf_form_view` VALUES("68388", "3", "2017-11-10 11:12:17", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("68389", "3", "2017-11-10 12:03:32", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("68390", "6", "2017-11-10 12:15:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68391", "9", "2017-11-10 12:15:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68392", "8", "2017-11-10 12:15:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68393", "10", "2017-11-10 12:15:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68394", "15", "2017-11-10 12:15:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68395", "10", "2017-11-10 13:00:37", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("68396", "3", "2017-11-10 13:12:36", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("68397", "6", "2017-11-10 14:11:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68398", "3", "2017-11-10 14:11:02", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68399", "9", "2017-11-10 14:11:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68400", "8", "2017-11-10 14:11:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68401", "10", "2017-11-10 14:11:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68402", "15", "2017-11-10 14:11:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68403", "10", "2017-11-10 15:16:35", "51.255.65.85", "9");
INSERT INTO `wp_gf_form_view` VALUES("68404", "6", "2017-11-10 15:55:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68405", "3", "2017-11-10 15:55:18", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68406", "9", "2017-11-10 15:55:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68407", "8", "2017-11-10 15:55:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68408", "15", "2017-11-10 15:55:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68409", "3", "2017-11-10 16:21:04", "194.187.170.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("68410", "10", "2017-11-10 16:56:27", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68411", "10", "2017-11-10 17:35:16", "207.46.13.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("68412", "6", "2017-11-10 17:55:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68413", "3", "2017-11-10 17:55:19", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68414", "9", "2017-11-10 17:55:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68415", "8", "2017-11-10 17:55:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68416", "15", "2017-11-10 17:55:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68417", "3", "2017-11-10 18:19:28", "91.121.116.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("68418", "5", "2017-11-10 18:51:37", "180.76.15.15", "1");
INSERT INTO `wp_gf_form_view` VALUES("68419", "14", "2017-11-10 19:55:13", "173.183.122.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("68420", "3", "2017-11-10 20:08:14", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("68421", "10", "2017-11-10 20:08:49", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("68422", "6", "2017-11-10 20:10:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68423", "9", "2017-11-10 20:10:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68424", "8", "2017-11-10 20:10:57", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("68425", "15", "2017-11-10 20:11:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68426", "3", "2017-11-10 21:34:43", "198.71.55.90", "7");
INSERT INTO `wp_gf_form_view` VALUES("68427", "6", "2017-11-10 22:08:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68428", "3", "2017-11-10 22:08:29", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68429", "9", "2017-11-10 22:08:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68430", "8", "2017-11-10 22:08:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68431", "10", "2017-11-10 22:08:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68432", "15", "2017-11-10 22:08:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68433", "3", "2017-11-10 23:31:50", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("68434", "10", "2017-11-11 00:07:48", "72.14.199.73", "7");
INSERT INTO `wp_gf_form_view` VALUES("68435", "6", "2017-11-11 00:08:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68436", "3", "2017-11-11 00:08:28", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68437", "9", "2017-11-11 00:08:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68438", "8", "2017-11-11 00:08:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68439", "15", "2017-11-11 00:08:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68440", "3", "2017-11-11 01:08:44", "51.255.65.96", "35");
INSERT INTO `wp_gf_form_view` VALUES("68441", "6", "2017-11-11 01:57:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68442", "9", "2017-11-11 01:57:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68443", "8", "2017-11-11 01:57:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68444", "10", "2017-11-11 01:57:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68445", "15", "2017-11-11 01:57:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68446", "3", "2017-11-11 02:02:22", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("68447", "8", "2017-11-11 02:36:34", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68448", "6", "2017-11-11 03:50:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68449", "3", "2017-11-11 03:50:35", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68450", "9", "2017-11-11 03:50:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68451", "8", "2017-11-11 03:50:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68452", "10", "2017-11-11 03:50:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68453", "15", "2017-11-11 03:50:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68454", "14", "2017-11-11 03:51:07", "51.255.65.60", "1");
INSERT INTO `wp_gf_form_view` VALUES("68455", "3", "2017-11-11 04:16:47", "194.187.170.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("68456", "3", "2017-11-11 05:04:39", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("68457", "6", "2017-11-11 05:52:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68458", "9", "2017-11-11 05:52:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68459", "8", "2017-11-11 05:52:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68460", "10", "2017-11-11 05:52:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68461", "15", "2017-11-11 05:53:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68462", "8", "2017-11-11 06:17:59", "194.187.170.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("68463", "3", "2017-11-11 06:25:09", "194.187.170.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("68464", "8", "2017-11-11 07:07:44", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("68465", "3", "2017-11-11 07:08:06", "216.244.66.247", "71");
INSERT INTO `wp_gf_form_view` VALUES("68466", "10", "2017-11-11 07:48:19", "216.244.66.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("68467", "6", "2017-11-11 07:54:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68468", "9", "2017-11-11 07:54:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68469", "15", "2017-11-11 07:55:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68470", "10", "2017-11-11 08:00:16", "51.255.65.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("68471", "3", "2017-11-11 08:26:29", "157.55.39.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("68472", "3", "2017-11-11 09:02:25", "216.244.66.247", "45");
INSERT INTO `wp_gf_form_view` VALUES("68473", "8", "2017-11-11 09:14:21", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("68474", "5", "2017-11-11 09:18:39", "137.74.207.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("68475", "6", "2017-11-11 09:49:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68476", "9", "2017-11-11 09:49:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68477", "10", "2017-11-11 09:49:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68478", "15", "2017-11-11 09:49:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68479", "6", "2017-11-11 11:35:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68480", "3", "2017-11-11 11:35:49", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68481", "9", "2017-11-11 11:35:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68482", "8", "2017-11-11 11:35:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68483", "10", "2017-11-11 11:35:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68484", "15", "2017-11-11 11:35:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68485", "6", "2017-11-11 12:27:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68486", "3", "2017-11-11 12:27:36", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68487", "10", "2017-11-11 12:39:11", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("68488", "10", "2017-11-11 13:00:14", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("68489", "6", "2017-11-11 13:27:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68490", "3", "2017-11-11 13:27:18", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68491", "9", "2017-11-11 13:27:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68492", "8", "2017-11-11 13:27:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68493", "15", "2017-11-11 13:27:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68494", "3", "2017-11-11 14:34:56", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("68495", "6", "2017-11-11 14:35:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68496", "3", "2017-11-11 15:42:19", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("68497", "6", "2017-11-11 15:43:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68498", "9", "2017-11-11 15:43:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68499", "8", "2017-11-11 15:43:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68500", "10", "2017-11-11 15:43:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68501", "15", "2017-11-11 15:43:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68502", "3", "2017-11-11 16:24:44", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68503", "6", "2017-11-11 16:35:46", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68504", "14", "2017-11-11 17:26:13", "107.174.143.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("68505", "6", "2017-11-11 17:34:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68506", "3", "2017-11-11 17:34:24", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68507", "9", "2017-11-11 17:34:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68508", "8", "2017-11-11 17:34:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68509", "10", "2017-11-11 17:34:26", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68510", "15", "2017-11-11 17:34:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68511", "3", "2017-11-11 18:22:17", "51.255.65.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("68512", "3", "2017-11-11 19:02:26", "216.244.66.195", "61");
INSERT INTO `wp_gf_form_view` VALUES("68513", "10", "2017-11-11 19:02:43", "216.244.66.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("68514", "8", "2017-11-11 19:09:33", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("68515", "6", "2017-11-11 19:29:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68516", "9", "2017-11-11 19:29:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68517", "15", "2017-11-11 19:30:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68518", "9", "2017-11-11 20:11:52", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68519", "14", "2017-11-11 20:42:43", "108.180.146.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("68520", "10", "2017-11-11 21:19:00", "207.46.13.14", "6");
INSERT INTO `wp_gf_form_view` VALUES("68521", "6", "2017-11-11 21:19:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68522", "3", "2017-11-11 21:19:45", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68523", "9", "2017-11-11 21:19:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68524", "8", "2017-11-11 21:19:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68525", "15", "2017-11-11 21:19:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68526", "3", "2017-11-11 22:12:21", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("68527", "6", "2017-11-11 23:15:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68528", "3", "2017-11-11 23:15:47", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68529", "9", "2017-11-11 23:15:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68530", "8", "2017-11-11 23:15:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68531", "10", "2017-11-11 23:15:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68532", "15", "2017-11-11 23:15:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68533", "3", "2017-11-12 00:02:51", "217.182.132.57", "6");
INSERT INTO `wp_gf_form_view` VALUES("68534", "14", "2017-11-12 01:01:25", "66.51.139.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("68535", "3", "2017-11-12 01:04:34", "216.244.66.195", "63");
INSERT INTO `wp_gf_form_view` VALUES("68536", "6", "2017-11-12 01:09:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68537", "9", "2017-11-12 01:09:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68538", "8", "2017-11-12 01:09:48", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68539", "10", "2017-11-12 01:09:49", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("68540", "15", "2017-11-12 01:09:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68541", "3", "2017-11-12 02:07:00", "207.46.13.33", "33");
INSERT INTO `wp_gf_form_view` VALUES("68542", "6", "2017-11-12 02:54:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68543", "9", "2017-11-12 02:54:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68544", "8", "2017-11-12 02:54:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68545", "10", "2017-11-12 02:54:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68546", "15", "2017-11-12 02:54:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68547", "3", "2017-11-12 03:36:47", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("68548", "8", "2017-11-12 04:03:56", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("68549", "3", "2017-11-12 04:04:12", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("68550", "6", "2017-11-12 04:51:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68551", "9", "2017-11-12 04:51:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68552", "10", "2017-11-12 04:51:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68553", "15", "2017-11-12 04:51:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68554", "3", "2017-11-12 05:22:11", "51.255.65.8", "8");
INSERT INTO `wp_gf_form_view` VALUES("68555", "6", "2017-11-12 06:50:52", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68556", "3", "2017-11-12 06:50:52", "216.244.66.247", "60");
INSERT INTO `wp_gf_form_view` VALUES("68557", "9", "2017-11-12 06:50:53", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68558", "8", "2017-11-12 06:50:53", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("68559", "10", "2017-11-12 06:50:54", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("68560", "15", "2017-11-12 06:50:56", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68561", "3", "2017-11-12 07:01:34", "207.46.13.33", "3");
INSERT INTO `wp_gf_form_view` VALUES("68562", "3", "2017-11-12 08:22:45", "142.4.218.201", "62");
INSERT INTO `wp_gf_form_view` VALUES("68563", "6", "2017-11-12 08:34:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68564", "9", "2017-11-12 08:34:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68565", "8", "2017-11-12 08:34:31", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68566", "10", "2017-11-12 08:34:32", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("68567", "15", "2017-11-12 08:34:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68568", "3", "2017-11-12 09:17:22", "173.212.246.139", "10");
INSERT INTO `wp_gf_form_view` VALUES("68569", "5", "2017-11-12 09:34:36", "40.77.167.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("68570", "10", "2017-11-12 09:52:25", "164.132.161.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("68571", "6", "2017-11-12 10:19:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68572", "3", "2017-11-12 10:19:04", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("68573", "9", "2017-11-12 10:19:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68574", "8", "2017-11-12 10:19:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68575", "10", "2017-11-12 10:19:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68576", "15", "2017-11-12 10:19:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68577", "6", "2017-11-12 11:54:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68578", "3", "2017-11-12 11:54:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68579", "9", "2017-11-12 11:54:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68580", "8", "2017-11-12 11:54:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68581", "10", "2017-11-12 11:54:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68582", "15", "2017-11-12 11:54:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68583", "3", "2017-11-12 12:08:00", "52.176.95.204", "4");
INSERT INTO `wp_gf_form_view` VALUES("68584", "10", "2017-11-12 13:00:30", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("68585", "6", "2017-11-12 13:34:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68586", "3", "2017-11-12 13:34:27", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68587", "9", "2017-11-12 13:34:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68588", "8", "2017-11-12 13:34:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68589", "15", "2017-11-12 13:34:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68590", "3", "2017-11-12 15:10:35", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("68591", "6", "2017-11-12 15:23:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68592", "9", "2017-11-12 15:24:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68593", "8", "2017-11-12 15:24:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68594", "10", "2017-11-12 15:24:01", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68595", "15", "2017-11-12 15:24:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68596", "9", "2017-11-12 16:19:17", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68597", "3", "2017-11-12 16:19:31", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("68598", "6", "2017-11-12 17:06:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68599", "3", "2017-11-12 17:06:09", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68600", "9", "2017-11-12 17:06:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68601", "8", "2017-11-12 17:06:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68602", "10", "2017-11-12 17:06:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68603", "15", "2017-11-12 17:06:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68604", "3", "2017-11-12 18:38:39", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("68605", "6", "2017-11-12 18:54:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68606", "9", "2017-11-12 18:54:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68607", "8", "2017-11-12 18:54:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68608", "10", "2017-11-12 18:54:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68609", "15", "2017-11-12 18:54:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68610", "10", "2017-11-12 20:32:01", "137.74.201.100", "11");
INSERT INTO `wp_gf_form_view` VALUES("68611", "6", "2017-11-12 20:45:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68612", "3", "2017-11-12 20:45:02", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("68613", "9", "2017-11-12 20:45:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68614", "8", "2017-11-12 20:45:03", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68615", "15", "2017-11-12 20:45:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68616", "3", "2017-11-12 22:12:19", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("68617", "6", "2017-11-12 22:31:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68618", "9", "2017-11-12 22:31:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68619", "8", "2017-11-12 22:31:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68620", "10", "2017-11-12 22:31:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68621", "15", "2017-11-12 22:31:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68622", "3", "2017-11-12 23:01:19", "213.239.205.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("68623", "6", "2017-11-13 00:18:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68624", "3", "2017-11-13 00:18:58", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68625", "9", "2017-11-13 00:18:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68626", "8", "2017-11-13 00:18:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68627", "10", "2017-11-13 00:19:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68628", "15", "2017-11-13 00:19:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68629", "3", "2017-11-13 01:39:17", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68630", "6", "2017-11-13 02:05:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68631", "3", "2017-11-13 02:05:20", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68632", "9", "2017-11-13 02:05:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68633", "8", "2017-11-13 02:05:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68634", "10", "2017-11-13 02:05:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68635", "15", "2017-11-13 02:05:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68636", "3", "2017-11-13 03:07:34", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("68637", "10", "2017-11-13 03:39:47", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("68638", "6", "2017-11-13 03:49:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68639", "9", "2017-11-13 03:49:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68640", "8", "2017-11-13 03:49:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68641", "15", "2017-11-13 03:49:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68642", "3", "2017-11-13 04:37:30", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68643", "15", "2017-11-13 04:37:52", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68644", "3", "2017-11-13 05:03:30", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("68645", "6", "2017-11-13 05:44:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68646", "9", "2017-11-13 05:44:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68647", "8", "2017-11-13 05:44:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68648", "10", "2017-11-13 05:44:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68649", "15", "2017-11-13 05:44:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68650", "14", "2017-11-13 06:03:46", "104.223.67.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("68651", "3", "2017-11-13 06:40:10", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68652", "15", "2017-11-13 06:43:53", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68653", "6", "2017-11-13 07:24:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68654", "3", "2017-11-13 07:24:45", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68655", "9", "2017-11-13 07:24:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68656", "8", "2017-11-13 07:24:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68657", "10", "2017-11-13 07:24:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68658", "15", "2017-11-13 07:24:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68659", "3", "2017-11-13 08:12:29", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("68660", "14", "2017-11-13 08:17:18", "108.175.52.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("68661", "9", "2017-11-13 09:11:01", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68662", "6", "2017-11-13 09:23:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68663", "3", "2017-11-13 09:23:03", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68664", "8", "2017-11-13 09:23:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68665", "10", "2017-11-13 09:23:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68666", "15", "2017-11-13 09:23:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68667", "6", "2017-11-13 11:13:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68668", "3", "2017-11-13 11:13:24", "52.37.180.245", "61");
INSERT INTO `wp_gf_form_view` VALUES("68669", "9", "2017-11-13 11:13:25", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("68670", "8", "2017-11-13 11:13:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68671", "10", "2017-11-13 11:13:26", "52.37.180.245", "12");
INSERT INTO `wp_gf_form_view` VALUES("68672", "15", "2017-11-13 11:13:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68673", "3", "2017-11-13 12:50:03", "207.46.13.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("68674", "6", "2017-11-13 13:02:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68675", "3", "2017-11-13 13:02:28", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("68676", "9", "2017-11-13 13:02:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68677", "8", "2017-11-13 13:02:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68678", "10", "2017-11-13 13:02:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68679", "15", "2017-11-13 13:02:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68680", "3", "2017-11-13 14:13:21", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("68681", "6", "2017-11-13 14:37:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68682", "9", "2017-11-13 14:37:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68683", "8", "2017-11-13 14:37:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68684", "10", "2017-11-13 14:37:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68685", "15", "2017-11-13 14:37:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68686", "9", "2017-11-13 15:50:18", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("68687", "3", "2017-11-13 15:59:29", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68688", "6", "2017-11-13 16:28:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68689", "3", "2017-11-13 16:28:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68690", "9", "2017-11-13 16:28:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68691", "8", "2017-11-13 16:28:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68692", "10", "2017-11-13 16:28:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68693", "15", "2017-11-13 16:28:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68694", "3", "2017-11-13 17:22:05", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("68695", "10", "2017-11-13 17:58:10", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68696", "3", "2017-11-13 18:14:06", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("68697", "6", "2017-11-13 18:18:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68698", "9", "2017-11-13 18:18:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68699", "8", "2017-11-13 18:18:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68700", "10", "2017-11-13 18:18:33", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68701", "15", "2017-11-13 18:18:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68702", "3", "2017-11-13 19:07:11", "180.76.15.30", "31");
INSERT INTO `wp_gf_form_view` VALUES("68703", "6", "2017-11-13 19:59:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68704", "9", "2017-11-13 19:59:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68705", "8", "2017-11-13 19:59:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68706", "10", "2017-11-13 19:59:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68707", "15", "2017-11-13 19:59:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68708", "10", "2017-11-13 20:18:16", "209.52.88.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("68709", "3", "2017-11-13 20:41:07", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("68710", "8", "2017-11-13 20:42:23", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68711", "3", "2017-11-13 21:09:51", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("68712", "10", "2017-11-13 21:10:32", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("68713", "6", "2017-11-13 21:43:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68714", "9", "2017-11-13 21:43:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68715", "8", "2017-11-13 21:43:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68716", "15", "2017-11-13 21:43:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68717", "3", "2017-11-13 22:02:43", "79.211.64.211", "5");
INSERT INTO `wp_gf_form_view` VALUES("68718", "8", "2017-11-13 22:48:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68719", "6", "2017-11-13 23:33:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68720", "3", "2017-11-13 23:33:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68721", "9", "2017-11-13 23:33:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68722", "8", "2017-11-13 23:33:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68723", "10", "2017-11-13 23:33:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68724", "15", "2017-11-13 23:33:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68725", "3", "2017-11-14 00:06:22", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68726", "6", "2017-11-14 01:14:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68727", "3", "2017-11-14 01:14:21", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68728", "9", "2017-11-14 01:14:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68729", "8", "2017-11-14 01:14:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68730", "10", "2017-11-14 01:14:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68731", "15", "2017-11-14 01:14:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68732", "14", "2017-11-14 02:09:52", "24.69.174.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("68733", "3", "2017-11-14 03:00:04", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("68734", "6", "2017-11-14 03:07:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68735", "9", "2017-11-14 03:07:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68736", "8", "2017-11-14 03:07:21", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("68737", "10", "2017-11-14 03:07:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68738", "15", "2017-11-14 03:07:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68739", "3", "2017-11-14 04:46:58", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("68740", "10", "2017-11-14 04:47:39", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("68741", "6", "2017-11-14 04:53:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68742", "9", "2017-11-14 04:53:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68743", "8", "2017-11-14 04:53:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68744", "15", "2017-11-14 04:53:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68745", "14", "2017-11-14 06:19:02", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("68746", "6", "2017-11-14 06:29:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68747", "3", "2017-11-14 06:29:13", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68748", "9", "2017-11-14 06:29:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68749", "8", "2017-11-14 06:29:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68750", "10", "2017-11-14 06:29:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68751", "15", "2017-11-14 06:29:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68752", "6", "2017-11-14 08:09:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68753", "3", "2017-11-14 08:09:09", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68754", "9", "2017-11-14 08:09:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68755", "8", "2017-11-14 08:09:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68756", "10", "2017-11-14 08:09:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68757", "15", "2017-11-14 08:09:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68758", "10", "2017-11-14 09:03:11", "72.14.199.73", "12");
INSERT INTO `wp_gf_form_view` VALUES("68759", "14", "2017-11-14 09:07:46", "154.16.45.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("68760", "3", "2017-11-14 09:18:15", "216.244.66.195", "68");
INSERT INTO `wp_gf_form_view` VALUES("68761", "8", "2017-11-14 09:41:08", "46.229.168.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("68762", "6", "2017-11-14 09:45:50", "46.229.168.65", "4");
INSERT INTO `wp_gf_form_view` VALUES("68763", "9", "2017-11-14 09:59:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68764", "15", "2017-11-14 09:59:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68765", "15", "2017-11-14 10:00:14", "46.229.168.69", "3");
INSERT INTO `wp_gf_form_view` VALUES("68766", "3", "2017-11-14 10:23:49", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("68767", "6", "2017-11-14 11:59:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68768", "3", "2017-11-14 11:59:08", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68769", "9", "2017-11-14 11:59:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68770", "8", "2017-11-14 11:59:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68771", "10", "2017-11-14 11:59:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68772", "15", "2017-11-14 11:59:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68773", "3", "2017-11-14 12:08:29", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("68774", "3", "2017-11-14 13:42:06", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("68775", "6", "2017-11-14 13:59:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68776", "9", "2017-11-14 13:59:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68777", "8", "2017-11-14 13:59:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68778", "10", "2017-11-14 13:59:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68779", "15", "2017-11-14 13:59:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68780", "3", "2017-11-14 14:06:26", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68781", "6", "2017-11-14 15:39:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68782", "3", "2017-11-14 15:39:10", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68783", "9", "2017-11-14 15:39:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68784", "8", "2017-11-14 15:39:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68785", "10", "2017-11-14 15:39:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68786", "15", "2017-11-14 15:39:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68787", "8", "2017-11-14 16:40:23", "108.172.248.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("68788", "14", "2017-11-14 16:41:43", "66.51.139.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("68789", "3", "2017-11-14 16:58:53", "216.244.66.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("68790", "14", "2017-11-14 17:04:10", "221.214.208.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("68791", "6", "2017-11-14 17:14:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68792", "3", "2017-11-14 17:14:42", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68793", "9", "2017-11-14 17:14:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68794", "8", "2017-11-14 17:14:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68795", "10", "2017-11-14 17:14:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68796", "15", "2017-11-14 17:14:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68797", "10", "2017-11-14 18:52:28", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68798", "3", "2017-11-14 18:53:10", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("68799", "6", "2017-11-14 19:10:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68800", "3", "2017-11-14 19:10:32", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("68801", "9", "2017-11-14 19:10:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68802", "8", "2017-11-14 19:10:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68803", "10", "2017-11-14 19:10:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68804", "15", "2017-11-14 19:10:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68805", "14", "2017-11-14 19:48:28", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("68806", "5", "2017-11-14 19:51:56", "100.43.91.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("68807", "14", "2017-11-14 20:29:32", "54.85.182.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("68808", "3", "2017-11-14 20:36:12", "184.66.133.192", "4");
INSERT INTO `wp_gf_form_view` VALUES("68809", "6", "2017-11-14 21:05:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68810", "3", "2017-11-14 21:05:49", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68811", "9", "2017-11-14 21:05:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68812", "8", "2017-11-14 21:05:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68813", "10", "2017-11-14 21:05:51", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68814", "15", "2017-11-14 21:05:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68815", "14", "2017-11-14 21:16:16", "96.54.241.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("68816", "3", "2017-11-14 22:02:59", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68817", "6", "2017-11-14 22:03:17", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68818", "14", "2017-11-14 22:08:25", "96.54.241.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("68819", "10", "2017-11-14 22:15:35", "72.14.199.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("68820", "6", "2017-11-14 23:02:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68821", "3", "2017-11-14 23:02:09", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68822", "9", "2017-11-14 23:02:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68823", "8", "2017-11-14 23:02:10", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("68824", "10", "2017-11-14 23:02:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68825", "15", "2017-11-14 23:02:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68826", "3", "2017-11-15 00:09:30", "66.249.79.133", "4");
INSERT INTO `wp_gf_form_view` VALUES("68827", "14", "2017-11-15 00:32:55", "24.69.169.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("68828", "8", "2017-11-15 00:42:30", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68829", "16", "2017-11-15 01:01:13", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("68830", "6", "2017-11-15 01:04:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68831", "3", "2017-11-15 01:04:54", "52.37.180.245", "61");
INSERT INTO `wp_gf_form_view` VALUES("68832", "9", "2017-11-15 01:04:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68833", "8", "2017-11-15 01:04:57", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("68834", "10", "2017-11-15 01:04:59", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("68835", "15", "2017-11-15 01:05:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68836", "14", "2017-11-15 01:48:32", "75.154.240.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("68837", "3", "2017-11-15 02:03:25", "157.55.39.30", "33");
INSERT INTO `wp_gf_form_view` VALUES("68838", "6", "2017-11-15 02:08:08", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68839", "9", "2017-11-15 02:08:09", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68840", "8", "2017-11-15 02:08:09", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68841", "10", "2017-11-15 02:08:10", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("68842", "15", "2017-11-15 02:08:12", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68843", "6", "2017-11-15 03:10:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68844", "3", "2017-11-15 03:10:54", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68845", "9", "2017-11-15 03:10:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68846", "8", "2017-11-15 03:10:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68847", "10", "2017-11-15 03:10:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68848", "15", "2017-11-15 03:10:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68849", "6", "2017-11-15 04:07:26", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68850", "3", "2017-11-15 04:07:26", "216.244.66.247", "60");
INSERT INTO `wp_gf_form_view` VALUES("68851", "9", "2017-11-15 04:07:27", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68852", "8", "2017-11-15 04:07:27", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("68853", "10", "2017-11-15 04:07:28", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("68854", "15", "2017-11-15 04:07:30", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68855", "3", "2017-11-15 05:04:49", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("68856", "6", "2017-11-15 06:08:05", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68857", "3", "2017-11-15 06:08:05", "216.244.66.247", "63");
INSERT INTO `wp_gf_form_view` VALUES("68858", "9", "2017-11-15 06:08:06", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68859", "8", "2017-11-15 06:08:07", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("68860", "10", "2017-11-15 06:08:07", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("68861", "15", "2017-11-15 06:08:09", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68862", "3", "2017-11-15 07:22:03", "217.182.132.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("68863", "10", "2017-11-15 07:58:08", "194.187.170.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("68864", "3", "2017-11-15 08:10:16", "216.244.66.195", "62");
INSERT INTO `wp_gf_form_view` VALUES("68865", "6", "2017-11-15 08:15:01", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68866", "9", "2017-11-15 08:15:02", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68867", "8", "2017-11-15 08:15:02", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("68868", "10", "2017-11-15 08:15:03", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("68869", "15", "2017-11-15 08:15:06", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68870", "6", "2017-11-15 10:16:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68871", "3", "2017-11-15 10:16:12", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68872", "9", "2017-11-15 10:16:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68873", "8", "2017-11-15 10:16:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68874", "10", "2017-11-15 10:16:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68875", "15", "2017-11-15 10:16:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68876", "6", "2017-11-15 12:15:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68877", "3", "2017-11-15 12:15:20", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("68878", "9", "2017-11-15 12:15:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68879", "8", "2017-11-15 12:15:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68880", "10", "2017-11-15 12:15:22", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68881", "15", "2017-11-15 12:15:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68882", "5", "2017-11-15 12:40:28", "5.9.63.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("68883", "6", "2017-11-15 14:15:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68884", "3", "2017-11-15 14:15:54", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("68885", "9", "2017-11-15 14:15:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68886", "8", "2017-11-15 14:15:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68887", "10", "2017-11-15 14:15:57", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68888", "15", "2017-11-15 14:15:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68889", "3", "2017-11-15 15:12:34", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("68890", "9", "2017-11-15 15:57:38", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68891", "6", "2017-11-15 15:59:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68892", "8", "2017-11-15 15:59:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68893", "10", "2017-11-15 15:59:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68894", "15", "2017-11-15 15:59:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68895", "10", "2017-11-15 16:31:50", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68896", "3", "2017-11-15 16:37:26", "194.187.170.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("68897", "3", "2017-11-15 17:00:36", "66.195.33.222", "11");
INSERT INTO `wp_gf_form_view` VALUES("68898", "10", "2017-11-15 17:23:58", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("68899", "8", "2017-11-15 17:46:51", "66.102.6.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("68900", "10", "2017-11-15 18:02:37", "194.187.170.141", "6");
INSERT INTO `wp_gf_form_view` VALUES("68901", "3", "2017-11-15 18:10:43", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("68902", "9", "2017-11-15 18:11:02", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68903", "6", "2017-11-15 18:25:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68904", "8", "2017-11-15 18:26:01", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("68905", "15", "2017-11-15 18:26:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68906", "14", "2017-11-15 19:19:08", "209.52.88.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("68907", "8", "2017-11-15 19:28:02", "66.249.79.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("68908", "10", "2017-11-15 19:32:45", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68909", "3", "2017-11-15 19:55:44", "144.76.62.20", "8");
INSERT INTO `wp_gf_form_view` VALUES("68910", "8", "2017-11-15 20:13:19", "66.249.79.35", "3");
INSERT INTO `wp_gf_form_view` VALUES("68911", "6", "2017-11-15 20:17:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68912", "3", "2017-11-15 20:17:50", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68913", "9", "2017-11-15 20:17:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68914", "10", "2017-11-15 20:17:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68915", "15", "2017-11-15 20:17:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68916", "3", "2017-11-15 21:33:19", "69.1.39.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("68917", "3", "2017-11-15 22:01:12", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("68918", "6", "2017-11-15 22:16:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68919", "9", "2017-11-15 22:16:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68920", "8", "2017-11-15 22:16:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68921", "10", "2017-11-15 22:16:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68922", "15", "2017-11-15 22:16:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68923", "10", "2017-11-15 23:31:34", "199.16.157.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("68924", "3", "2017-11-15 23:47:01", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68925", "6", "2017-11-16 00:45:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68926", "3", "2017-11-16 00:45:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68927", "9", "2017-11-16 00:45:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68928", "8", "2017-11-16 00:45:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68929", "10", "2017-11-16 00:45:40", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68930", "15", "2017-11-16 00:45:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68931", "8", "2017-11-16 01:27:12", "66.102.6.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("68932", "6", "2017-11-16 02:29:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68933", "3", "2017-11-16 02:29:39", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68934", "9", "2017-11-16 02:29:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68935", "8", "2017-11-16 02:29:41", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("68936", "10", "2017-11-16 02:29:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68937", "15", "2017-11-16 02:29:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68938", "14", "2017-11-16 03:08:40", "104.223.52.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("68939", "3", "2017-11-16 03:08:46", "104.223.52.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("68940", "15", "2017-11-16 03:47:37", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68941", "9", "2017-11-16 04:12:40", "207.46.13.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("68942", "3", "2017-11-16 04:12:50", "157.55.39.160", "56");
INSERT INTO `wp_gf_form_view` VALUES("68943", "10", "2017-11-16 04:15:22", "207.46.13.172", "16");
INSERT INTO `wp_gf_form_view` VALUES("68944", "6", "2017-11-16 04:38:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68945", "8", "2017-11-16 04:38:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68946", "15", "2017-11-16 04:38:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68947", "14", "2017-11-16 04:53:16", "24.244.32.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("68948", "6", "2017-11-16 06:47:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68949", "3", "2017-11-16 06:47:18", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68950", "9", "2017-11-16 06:47:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68951", "8", "2017-11-16 06:47:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68952", "10", "2017-11-16 06:47:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68953", "15", "2017-11-16 06:47:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68954", "14", "2017-11-16 07:01:40", "172.218.195.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("68955", "3", "2017-11-16 07:13:59", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("68956", "9", "2017-11-16 07:15:09", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68957", "3", "2017-11-16 08:02:07", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("68958", "6", "2017-11-16 08:56:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68959", "9", "2017-11-16 08:56:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68960", "8", "2017-11-16 08:56:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68961", "10", "2017-11-16 08:56:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68962", "15", "2017-11-16 08:56:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68963", "9", "2017-11-16 09:24:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("68964", "14", "2017-11-16 09:47:52", "207.46.13.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("68965", "6", "2017-11-16 10:52:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68966", "3", "2017-11-16 10:52:20", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68967", "9", "2017-11-16 10:52:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68968", "8", "2017-11-16 10:52:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68969", "10", "2017-11-16 10:52:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68970", "15", "2017-11-16 10:52:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68971", "3", "2017-11-16 11:08:27", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68972", "8", "2017-11-16 11:26:37", "180.76.15.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("68973", "6", "2017-11-16 12:35:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68974", "3", "2017-11-16 12:35:31", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68975", "9", "2017-11-16 12:35:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68976", "8", "2017-11-16 12:35:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68977", "10", "2017-11-16 12:35:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68978", "15", "2017-11-16 12:35:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68979", "3", "2017-11-16 13:16:48", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("68980", "10", "2017-11-16 13:35:23", "72.14.199.73", "7");
INSERT INTO `wp_gf_form_view` VALUES("68981", "8", "2017-11-16 13:40:51", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("68982", "6", "2017-11-16 13:45:58", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68983", "9", "2017-11-16 13:45:59", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68984", "15", "2017-11-16 13:46:02", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("68985", "6", "2017-11-16 14:17:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68986", "3", "2017-11-16 14:17:03", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("68987", "9", "2017-11-16 14:17:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68988", "8", "2017-11-16 14:17:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68989", "10", "2017-11-16 14:17:06", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("68990", "15", "2017-11-16 14:17:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68991", "3", "2017-11-16 15:24:20", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("68992", "3", "2017-11-16 16:18:39", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("68993", "6", "2017-11-16 16:19:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68994", "9", "2017-11-16 16:19:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68995", "8", "2017-11-16 16:19:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("68996", "10", "2017-11-16 16:19:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("68997", "15", "2017-11-16 16:19:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("68998", "3", "2017-11-16 17:02:55", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("68999", "10", "2017-11-16 17:18:36", "157.55.39.160", "2");
INSERT INTO `wp_gf_form_view` VALUES("69000", "14", "2017-11-16 17:21:57", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("69001", "6", "2017-11-16 18:04:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69002", "3", "2017-11-16 18:04:07", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69003", "9", "2017-11-16 18:04:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69004", "8", "2017-11-16 18:04:10", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("69005", "10", "2017-11-16 18:04:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69006", "15", "2017-11-16 18:04:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69007", "3", "2017-11-16 19:17:17", "216.244.66.247", "37");
INSERT INTO `wp_gf_form_view` VALUES("69008", "6", "2017-11-16 19:46:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69009", "9", "2017-11-16 19:46:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69010", "8", "2017-11-16 19:46:57", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("69011", "10", "2017-11-16 19:46:59", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69012", "15", "2017-11-16 19:47:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69013", "10", "2017-11-16 21:03:47", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("69014", "6", "2017-11-16 21:36:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69015", "3", "2017-11-16 21:36:29", "52.37.180.245", "39");
INSERT INTO `wp_gf_form_view` VALUES("69016", "9", "2017-11-16 21:36:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69017", "8", "2017-11-16 21:36:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69018", "15", "2017-11-16 21:36:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69019", "6", "2017-11-16 23:40:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69020", "3", "2017-11-16 23:40:18", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69021", "9", "2017-11-16 23:40:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69022", "8", "2017-11-16 23:40:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69023", "10", "2017-11-16 23:40:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69024", "15", "2017-11-16 23:40:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69025", "10", "2017-11-17 00:12:04", "157.55.39.206", "3");
INSERT INTO `wp_gf_form_view` VALUES("69026", "3", "2017-11-17 00:26:14", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("69027", "14", "2017-11-17 00:47:34", "206.87.162.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("69028", "3", "2017-11-17 01:00:15", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("69029", "6", "2017-11-17 01:36:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69030", "9", "2017-11-17 01:36:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69031", "8", "2017-11-17 01:36:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69032", "10", "2017-11-17 01:36:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69033", "15", "2017-11-17 01:36:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69034", "10", "2017-11-17 02:31:10", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69035", "3", "2017-11-17 02:31:44", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("69036", "6", "2017-11-17 03:34:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69037", "3", "2017-11-17 03:34:31", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69038", "9", "2017-11-17 03:34:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69039", "8", "2017-11-17 03:34:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69040", "10", "2017-11-17 03:34:34", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69041", "15", "2017-11-17 03:34:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69042", "10", "2017-11-17 04:02:28", "72.14.199.71", "8");
INSERT INTO `wp_gf_form_view` VALUES("69043", "3", "2017-11-17 04:19:16", "157.55.39.30", "25");
INSERT INTO `wp_gf_form_view` VALUES("69044", "9", "2017-11-17 04:19:21", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("69045", "6", "2017-11-17 04:19:49", "40.77.167.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("69046", "11", "2017-11-17 04:23:26", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("69047", "8", "2017-11-17 04:24:25", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("69048", "15", "2017-11-17 04:26:17", "40.77.167.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("69049", "6", "2017-11-17 05:31:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69050", "3", "2017-11-17 05:31:41", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69051", "9", "2017-11-17 05:31:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69052", "8", "2017-11-17 05:31:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69053", "10", "2017-11-17 05:31:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69054", "15", "2017-11-17 05:31:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69055", "3", "2017-11-17 06:36:04", "96.50.54.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("69056", "6", "2017-11-17 07:18:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69057", "3", "2017-11-17 07:18:34", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69058", "9", "2017-11-17 07:18:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69059", "8", "2017-11-17 07:18:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69060", "10", "2017-11-17 07:18:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69061", "15", "2017-11-17 07:18:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69062", "3", "2017-11-17 08:20:36", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("69063", "6", "2017-11-17 09:07:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69064", "3", "2017-11-17 09:07:11", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69065", "9", "2017-11-17 09:07:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69066", "8", "2017-11-17 09:07:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69067", "10", "2017-11-17 09:07:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69068", "15", "2017-11-17 09:07:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69069", "3", "2017-11-17 10:45:46", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("69070", "6", "2017-11-17 11:01:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69071", "3", "2017-11-17 11:01:23", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("69072", "9", "2017-11-17 11:01:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69073", "8", "2017-11-17 11:01:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69074", "10", "2017-11-17 11:01:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69075", "15", "2017-11-17 11:01:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69076", "6", "2017-11-17 12:44:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69077", "3", "2017-11-17 12:44:00", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69078", "9", "2017-11-17 12:44:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69079", "8", "2017-11-17 12:44:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69080", "10", "2017-11-17 12:44:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69081", "15", "2017-11-17 12:44:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69082", "3", "2017-11-17 13:52:36", "216.244.66.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("69083", "6", "2017-11-17 14:36:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69084", "3", "2017-11-17 14:36:55", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69085", "9", "2017-11-17 14:36:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69086", "8", "2017-11-17 14:36:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69087", "10", "2017-11-17 14:36:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69088", "15", "2017-11-17 14:37:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69089", "10", "2017-11-17 15:05:23", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("69090", "3", "2017-11-17 15:06:09", "216.244.66.195", "14");
INSERT INTO `wp_gf_form_view` VALUES("69091", "6", "2017-11-17 16:26:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69092", "3", "2017-11-17 16:26:39", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69093", "9", "2017-11-17 16:26:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69094", "8", "2017-11-17 16:26:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69095", "10", "2017-11-17 16:26:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69096", "15", "2017-11-17 16:26:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69097", "10", "2017-11-17 17:24:08", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("69098", "3", "2017-11-17 18:09:14", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("69099", "6", "2017-11-17 18:31:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69100", "9", "2017-11-17 18:31:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69101", "8", "2017-11-17 18:31:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69102", "10", "2017-11-17 18:31:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69103", "15", "2017-11-17 18:31:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69104", "3", "2017-11-17 19:02:08", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("69105", "6", "2017-11-17 19:02:32", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("69106", "3", "2017-11-17 20:16:16", "216.244.66.195", "63");
INSERT INTO `wp_gf_form_view` VALUES("69107", "6", "2017-11-17 20:20:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69108", "9", "2017-11-17 20:20:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69109", "8", "2017-11-17 20:20:03", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69110", "10", "2017-11-17 20:20:04", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69111", "15", "2017-11-17 20:20:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69112", "3", "2017-11-17 21:07:34", "194.187.170.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("69113", "8", "2017-11-17 22:06:30", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("69114", "3", "2017-11-17 22:07:13", "216.244.66.247", "63");
INSERT INTO `wp_gf_form_view` VALUES("69115", "6", "2017-11-17 22:10:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69116", "9", "2017-11-17 22:10:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69117", "10", "2017-11-17 22:10:06", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69118", "15", "2017-11-17 22:10:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69119", "3", "2017-11-17 23:17:45", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("69120", "14", "2017-11-17 23:39:46", "96.54.241.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("69121", "6", "2017-11-17 23:55:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69122", "9", "2017-11-17 23:55:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69123", "8", "2017-11-17 23:55:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69124", "10", "2017-11-17 23:55:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69125", "15", "2017-11-17 23:55:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69126", "8", "2017-11-18 00:09:27", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("69127", "14", "2017-11-18 00:19:11", "23.245.152.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("69128", "3", "2017-11-18 00:19:16", "23.245.152.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("69129", "3", "2017-11-18 01:24:14", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("69130", "9", "2017-11-18 01:24:17", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69131", "8", "2017-11-18 01:25:42", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69132", "6", "2017-11-18 02:06:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69133", "3", "2017-11-18 02:06:00", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69134", "9", "2017-11-18 02:06:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69135", "8", "2017-11-18 02:06:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69136", "10", "2017-11-18 02:06:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69137", "15", "2017-11-18 02:06:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69138", "3", "2017-11-18 03:01:31", "207.46.13.136", "33");
INSERT INTO `wp_gf_form_view` VALUES("69139", "6", "2017-11-18 03:51:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69140", "9", "2017-11-18 03:51:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69141", "8", "2017-11-18 03:51:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69142", "10", "2017-11-18 03:51:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69143", "15", "2017-11-18 03:51:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69144", "6", "2017-11-18 04:03:16", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69145", "3", "2017-11-18 04:03:16", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("69146", "9", "2017-11-18 04:03:17", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69147", "8", "2017-11-18 04:03:18", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("69148", "10", "2017-11-18 04:03:18", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("69149", "15", "2017-11-18 04:03:22", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69150", "10", "2017-11-18 05:24:32", "72.14.199.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("69151", "6", "2017-11-18 05:41:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69152", "3", "2017-11-18 05:41:15", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69153", "9", "2017-11-18 05:41:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69154", "8", "2017-11-18 05:41:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69155", "15", "2017-11-18 05:41:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69156", "3", "2017-11-18 06:18:40", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("69157", "3", "2017-11-18 07:34:30", "5.39.85.81", "67");
INSERT INTO `wp_gf_form_view` VALUES("69158", "6", "2017-11-18 07:34:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69159", "9", "2017-11-18 07:34:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69160", "8", "2017-11-18 07:34:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69161", "10", "2017-11-18 07:34:47", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69162", "15", "2017-11-18 07:34:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69163", "14", "2017-11-18 07:36:45", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("69164", "3", "2017-11-18 09:23:45", "157.55.39.160", "33");
INSERT INTO `wp_gf_form_view` VALUES("69165", "14", "2017-11-18 09:25:02", "104.223.31.75", "3");
INSERT INTO `wp_gf_form_view` VALUES("69166", "6", "2017-11-18 09:25:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69167", "9", "2017-11-18 09:25:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69168", "8", "2017-11-18 09:25:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69169", "10", "2017-11-18 09:25:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69170", "15", "2017-11-18 09:25:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69171", "10", "2017-11-18 10:23:25", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69172", "3", "2017-11-18 11:12:23", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("69173", "6", "2017-11-18 11:15:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69174", "9", "2017-11-18 11:15:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69175", "8", "2017-11-18 11:15:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69176", "10", "2017-11-18 11:15:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69177", "15", "2017-11-18 11:16:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69178", "10", "2017-11-18 12:42:33", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("69179", "6", "2017-11-18 12:55:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69180", "3", "2017-11-18 12:55:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69181", "9", "2017-11-18 12:55:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69182", "8", "2017-11-18 12:55:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69183", "15", "2017-11-18 12:55:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69184", "3", "2017-11-18 13:15:35", "77.75.76.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("69185", "3", "2017-11-18 14:29:27", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("69186", "10", "2017-11-18 14:39:15", "199.16.157.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("69187", "6", "2017-11-18 14:50:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69188", "9", "2017-11-18 14:50:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69189", "8", "2017-11-18 14:50:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69190", "15", "2017-11-18 14:50:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69191", "9", "2017-11-18 15:07:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("69192", "3", "2017-11-18 15:08:15", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("69193", "10", "2017-11-18 15:38:27", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("69194", "6", "2017-11-18 16:50:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69195", "3", "2017-11-18 16:50:37", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69196", "9", "2017-11-18 16:50:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69197", "8", "2017-11-18 16:50:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69198", "10", "2017-11-18 16:50:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69199", "15", "2017-11-18 16:50:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69200", "3", "2017-11-18 17:13:01", "158.222.15.3", "4");
INSERT INTO `wp_gf_form_view` VALUES("69201", "10", "2017-11-18 17:38:42", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("69202", "6", "2017-11-18 18:50:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69203", "3", "2017-11-18 18:50:56", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69204", "9", "2017-11-18 18:50:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69205", "8", "2017-11-18 18:50:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69206", "10", "2017-11-18 18:50:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69207", "15", "2017-11-18 18:51:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69208", "6", "2017-11-18 19:00:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69209", "3", "2017-11-18 19:00:20", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("69210", "9", "2017-11-18 19:00:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69211", "8", "2017-11-18 19:00:21", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69212", "10", "2017-11-18 19:00:22", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("69213", "15", "2017-11-18 19:00:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69214", "3", "2017-11-18 20:34:26", "216.244.66.195", "62");
INSERT INTO `wp_gf_form_view` VALUES("69215", "6", "2017-11-18 20:54:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69216", "9", "2017-11-18 20:54:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69217", "8", "2017-11-18 20:54:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69218", "10", "2017-11-18 20:54:55", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69219", "15", "2017-11-18 20:54:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69220", "3", "2017-11-18 21:11:46", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("69221", "3", "2017-11-18 22:45:15", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("69222", "6", "2017-11-18 22:51:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69223", "9", "2017-11-18 22:51:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69224", "8", "2017-11-18 22:51:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69225", "10", "2017-11-18 22:51:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69226", "15", "2017-11-18 22:51:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69227", "3", "2017-11-18 23:16:26", "46.165.228.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69228", "3", "2017-11-19 00:06:56", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("69229", "6", "2017-11-19 00:55:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69230", "9", "2017-11-19 00:55:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69231", "8", "2017-11-19 00:55:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69232", "10", "2017-11-19 00:55:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69233", "15", "2017-11-19 00:55:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69234", "3", "2017-11-19 02:45:59", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("69235", "6", "2017-11-19 02:49:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69236", "9", "2017-11-19 02:49:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69237", "8", "2017-11-19 02:49:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69238", "10", "2017-11-19 02:49:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69239", "15", "2017-11-19 02:49:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69240", "3", "2017-11-19 03:19:11", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69241", "15", "2017-11-19 04:40:24", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("69242", "3", "2017-11-19 04:40:39", "216.244.66.195", "61");
INSERT INTO `wp_gf_form_view` VALUES("69243", "6", "2017-11-19 04:44:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69244", "9", "2017-11-19 04:44:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69245", "8", "2017-11-19 04:44:51", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69246", "10", "2017-11-19 04:44:51", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69247", "3", "2017-11-19 06:14:10", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("69248", "6", "2017-11-19 06:41:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69249", "9", "2017-11-19 06:41:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69250", "8", "2017-11-19 06:41:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69251", "10", "2017-11-19 06:41:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69252", "15", "2017-11-19 06:41:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69253", "9", "2017-11-19 07:26:55", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("69254", "14", "2017-11-19 08:19:39", "195.154.21.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("69255", "6", "2017-11-19 08:25:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69256", "3", "2017-11-19 08:25:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69257", "9", "2017-11-19 08:25:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69258", "8", "2017-11-19 08:25:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69259", "10", "2017-11-19 08:25:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69260", "15", "2017-11-19 08:25:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69261", "6", "2017-11-19 10:23:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69262", "3", "2017-11-19 10:23:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69263", "9", "2017-11-19 10:23:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69264", "8", "2017-11-19 10:23:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69265", "10", "2017-11-19 10:23:50", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69266", "15", "2017-11-19 10:23:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69267", "6", "2017-11-19 12:29:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69268", "3", "2017-11-19 12:29:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69269", "9", "2017-11-19 12:29:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69270", "8", "2017-11-19 12:29:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69271", "10", "2017-11-19 12:29:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69272", "15", "2017-11-19 12:29:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69273", "10", "2017-11-19 13:00:32", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("69274", "6", "2017-11-19 14:36:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69275", "3", "2017-11-19 14:36:23", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69276", "9", "2017-11-19 14:36:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69277", "8", "2017-11-19 14:36:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69278", "10", "2017-11-19 14:36:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69279", "15", "2017-11-19 14:36:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69280", "14", "2017-11-19 16:24:06", "104.142.127.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("69281", "6", "2017-11-19 16:35:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69282", "3", "2017-11-19 16:35:29", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69283", "9", "2017-11-19 16:35:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69284", "8", "2017-11-19 16:35:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69285", "10", "2017-11-19 16:35:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69286", "15", "2017-11-19 16:35:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69287", "6", "2017-11-19 18:21:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69288", "3", "2017-11-19 18:21:56", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69289", "9", "2017-11-19 18:21:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69290", "8", "2017-11-19 18:21:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69291", "10", "2017-11-19 18:21:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69292", "15", "2017-11-19 18:22:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69293", "10", "2017-11-19 19:30:59", "180.76.15.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("69294", "8", "2017-11-19 20:06:24", "24.108.184.241", "3");
INSERT INTO `wp_gf_form_view` VALUES("69295", "6", "2017-11-19 20:29:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69296", "3", "2017-11-19 20:29:41", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69297", "9", "2017-11-19 20:29:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69298", "10", "2017-11-19 20:29:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69299", "15", "2017-11-19 20:29:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69300", "14", "2017-11-19 22:01:21", "24.108.26.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("69301", "6", "2017-11-19 22:24:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69302", "3", "2017-11-19 22:24:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69303", "9", "2017-11-19 22:24:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69304", "8", "2017-11-19 22:24:38", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("69305", "10", "2017-11-19 22:24:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69306", "15", "2017-11-19 22:24:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69307", "3", "2017-11-19 23:23:58", "24.108.26.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("69308", "6", "2017-11-20 00:06:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69309", "3", "2017-11-20 00:06:28", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69310", "9", "2017-11-20 00:06:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69311", "8", "2017-11-20 00:06:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69312", "10", "2017-11-20 00:06:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69313", "15", "2017-11-20 00:06:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69314", "3", "2017-11-20 01:36:14", "96.241.76.204", "33");
INSERT INTO `wp_gf_form_view` VALUES("69315", "6", "2017-11-20 01:57:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69316", "9", "2017-11-20 01:57:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69317", "8", "2017-11-20 01:57:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69318", "10", "2017-11-20 01:57:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69319", "15", "2017-11-20 01:57:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69320", "3", "2017-11-20 02:39:47", "191.101.116.172", "8");
INSERT INTO `wp_gf_form_view` VALUES("69321", "6", "2017-11-20 03:37:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69322", "3", "2017-11-20 03:37:05", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69323", "9", "2017-11-20 03:37:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69324", "8", "2017-11-20 03:37:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69325", "10", "2017-11-20 03:37:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69326", "15", "2017-11-20 03:37:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69327", "3", "2017-11-20 04:01:42", "66.249.79.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("69328", "3", "2017-11-20 05:02:30", "69.11.67.130", "32");
INSERT INTO `wp_gf_form_view` VALUES("69329", "8", "2017-11-20 05:03:47", "69.11.67.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("69330", "6", "2017-11-20 05:23:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69331", "9", "2017-11-20 05:23:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69332", "10", "2017-11-20 05:23:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69333", "15", "2017-11-20 05:23:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69334", "3", "2017-11-20 07:03:54", "180.76.15.140", "55");
INSERT INTO `wp_gf_form_view` VALUES("69335", "6", "2017-11-20 07:06:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69336", "9", "2017-11-20 07:06:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69337", "8", "2017-11-20 07:06:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69338", "10", "2017-11-20 07:06:10", "52.37.180.245", "19");
INSERT INTO `wp_gf_form_view` VALUES("69339", "15", "2017-11-20 07:06:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69340", "6", "2017-11-20 08:50:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69341", "3", "2017-11-20 08:50:18", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69342", "9", "2017-11-20 08:50:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69343", "8", "2017-11-20 08:50:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69344", "10", "2017-11-20 08:50:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69345", "15", "2017-11-20 08:50:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69346", "6", "2017-11-20 10:46:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69347", "3", "2017-11-20 10:46:05", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69348", "9", "2017-11-20 10:46:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69349", "8", "2017-11-20 10:46:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69350", "10", "2017-11-20 10:46:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69351", "15", "2017-11-20 10:46:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69352", "3", "2017-11-20 11:44:30", "180.76.15.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("69353", "10", "2017-11-20 11:57:43", "174.129.1.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("69354", "10", "2017-11-20 12:05:38", "72.14.199.71", "8");
INSERT INTO `wp_gf_form_view` VALUES("69355", "3", "2017-11-20 12:09:38", "144.76.4.148", "52");
INSERT INTO `wp_gf_form_view` VALUES("69356", "9", "2017-11-20 12:10:38", "144.76.4.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("69357", "8", "2017-11-20 12:11:41", "144.76.4.148", "4");
INSERT INTO `wp_gf_form_view` VALUES("69358", "11", "2017-11-20 12:13:50", "144.76.4.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("69359", "12", "2017-11-20 12:41:30", "144.76.4.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("69360", "6", "2017-11-20 12:51:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69361", "15", "2017-11-20 12:51:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69362", "14", "2017-11-20 14:52:44", "46.42.164.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("69363", "6", "2017-11-20 15:12:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69364", "3", "2017-11-20 15:12:10", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69365", "9", "2017-11-20 15:12:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69366", "8", "2017-11-20 15:12:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69367", "10", "2017-11-20 15:12:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69368", "15", "2017-11-20 15:12:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69369", "3", "2017-11-20 16:05:12", "180.76.15.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("69370", "6", "2017-11-20 17:07:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69371", "3", "2017-11-20 17:07:42", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("69372", "9", "2017-11-20 17:07:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69373", "8", "2017-11-20 17:07:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69374", "10", "2017-11-20 17:07:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69375", "15", "2017-11-20 17:07:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69376", "3", "2017-11-20 18:03:23", "164.132.162.157", "32");
INSERT INTO `wp_gf_form_view` VALUES("69377", "6", "2017-11-20 18:57:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69378", "9", "2017-11-20 18:57:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69379", "8", "2017-11-20 18:57:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69380", "10", "2017-11-20 18:57:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69381", "15", "2017-11-20 18:57:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69382", "3", "2017-11-20 19:21:55", "75.157.130.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("69383", "8", "2017-11-20 20:40:01", "66.102.6.152", "5");
INSERT INTO `wp_gf_form_view` VALUES("69384", "6", "2017-11-20 20:49:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69385", "3", "2017-11-20 20:49:55", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("69386", "9", "2017-11-20 20:49:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69387", "10", "2017-11-20 20:49:58", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69388", "15", "2017-11-20 20:50:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69389", "3", "2017-11-20 21:28:03", "24.108.20.122", "3");
INSERT INTO `wp_gf_form_view` VALUES("69390", "10", "2017-11-20 22:00:07", "100.43.91.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("69391", "6", "2017-11-20 22:52:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69392", "3", "2017-11-20 22:52:19", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69393", "9", "2017-11-20 22:52:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69394", "8", "2017-11-20 22:52:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69395", "15", "2017-11-20 22:52:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69396", "11", "2017-11-20 23:27:06", "157.55.39.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("69397", "3", "2017-11-21 00:08:27", "194.187.170.119", "35");
INSERT INTO `wp_gf_form_view` VALUES("69398", "14", "2017-11-21 00:11:27", "194.187.170.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("69399", "10", "2017-11-21 00:22:52", "194.187.170.119", "8");
INSERT INTO `wp_gf_form_view` VALUES("69400", "6", "2017-11-21 00:46:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69401", "9", "2017-11-21 00:46:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69402", "8", "2017-11-21 00:46:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69403", "15", "2017-11-21 00:46:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69404", "3", "2017-11-21 01:09:23", "194.187.170.119", "4");
INSERT INTO `wp_gf_form_view` VALUES("69405", "10", "2017-11-21 01:16:35", "194.187.170.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("69406", "3", "2017-11-21 02:00:20", "68.180.228.176", "31");
INSERT INTO `wp_gf_form_view` VALUES("69407", "10", "2017-11-21 02:06:39", "72.14.199.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("69408", "6", "2017-11-21 02:51:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69409", "9", "2017-11-21 02:51:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69410", "8", "2017-11-21 02:51:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69411", "15", "2017-11-21 02:51:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69412", "8", "2017-11-21 03:01:58", "157.55.39.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("69413", "3", "2017-11-21 03:46:10", "180.76.15.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("69414", "3", "2017-11-21 04:21:41", "51.255.65.59", "33");
INSERT INTO `wp_gf_form_view` VALUES("69415", "6", "2017-11-21 04:37:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69416", "9", "2017-11-21 04:37:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69417", "8", "2017-11-21 04:37:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69418", "10", "2017-11-21 04:37:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69419", "15", "2017-11-21 04:37:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69420", "3", "2017-11-21 06:13:54", "209.206.127.137", "31");
INSERT INTO `wp_gf_form_view` VALUES("69421", "6", "2017-11-21 06:36:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69422", "9", "2017-11-21 06:36:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69423", "8", "2017-11-21 06:36:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69424", "10", "2017-11-21 06:36:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69425", "15", "2017-11-21 06:36:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69426", "3", "2017-11-21 08:16:11", "157.55.39.36", "39");
INSERT INTO `wp_gf_form_view` VALUES("69427", "6", "2017-11-21 08:20:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69428", "9", "2017-11-21 08:20:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69429", "8", "2017-11-21 08:20:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69430", "10", "2017-11-21 08:20:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69431", "15", "2017-11-21 08:21:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69432", "10", "2017-11-21 09:04:11", "217.182.132.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("69433", "6", "2017-11-21 10:11:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69434", "3", "2017-11-21 10:11:52", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("69435", "9", "2017-11-21 10:11:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69436", "8", "2017-11-21 10:11:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69437", "10", "2017-11-21 10:11:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69438", "15", "2017-11-21 10:11:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69439", "3", "2017-11-21 11:11:16", "164.132.161.37", "31");
INSERT INTO `wp_gf_form_view` VALUES("69440", "6", "2017-11-21 11:57:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69441", "9", "2017-11-21 11:57:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69442", "8", "2017-11-21 11:57:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69443", "10", "2017-11-21 11:57:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69444", "15", "2017-11-21 11:57:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69445", "3", "2017-11-21 12:22:20", "92.156.242.49", "15");
INSERT INTO `wp_gf_form_view` VALUES("69446", "10", "2017-11-21 12:25:47", "92.156.242.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("69447", "6", "2017-11-21 13:36:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69448", "3", "2017-11-21 13:36:45", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69449", "9", "2017-11-21 13:36:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69450", "8", "2017-11-21 13:36:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69451", "10", "2017-11-21 13:36:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69452", "15", "2017-11-21 13:36:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69453", "6", "2017-11-21 15:26:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69454", "3", "2017-11-21 15:26:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69455", "9", "2017-11-21 15:26:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69456", "8", "2017-11-21 15:26:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69457", "10", "2017-11-21 15:26:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69458", "15", "2017-11-21 15:26:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69459", "14", "2017-11-21 15:29:34", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("69460", "6", "2017-11-21 17:01:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69461", "3", "2017-11-21 17:01:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69462", "9", "2017-11-21 17:01:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69463", "8", "2017-11-21 17:01:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69464", "10", "2017-11-21 17:01:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69465", "15", "2017-11-21 17:01:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69466", "6", "2017-11-21 18:34:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69467", "3", "2017-11-21 18:34:28", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69468", "9", "2017-11-21 18:34:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69469", "8", "2017-11-21 18:34:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69470", "10", "2017-11-21 18:34:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69471", "15", "2017-11-21 18:34:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69472", "3", "2017-11-21 19:08:35", "184.71.18.250", "4");
INSERT INTO `wp_gf_form_view` VALUES("69473", "14", "2017-11-21 19:46:23", "24.68.101.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("69474", "6", "2017-11-21 20:11:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69475", "3", "2017-11-21 20:11:46", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69476", "9", "2017-11-21 20:11:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69477", "8", "2017-11-21 20:11:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69478", "10", "2017-11-21 20:11:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69479", "15", "2017-11-21 20:11:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69480", "3", "2017-11-21 21:30:06", "178.63.1.153", "5");
INSERT INTO `wp_gf_form_view` VALUES("69481", "8", "2017-11-21 21:33:22", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("69482", "14", "2017-11-21 21:37:13", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("69483", "6", "2017-11-21 22:02:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69484", "3", "2017-11-21 22:02:21", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69485", "9", "2017-11-21 22:02:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69486", "8", "2017-11-21 22:02:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69487", "10", "2017-11-21 22:02:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69488", "15", "2017-11-21 22:02:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69489", "6", "2017-11-21 23:36:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69490", "3", "2017-11-21 23:36:54", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69491", "9", "2017-11-21 23:36:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69492", "8", "2017-11-21 23:36:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69493", "10", "2017-11-21 23:36:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69494", "15", "2017-11-21 23:37:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69495", "3", "2017-11-22 00:34:06", "180.76.15.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("69496", "6", "2017-11-22 01:22:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69497", "3", "2017-11-22 01:22:09", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69498", "9", "2017-11-22 01:22:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69499", "8", "2017-11-22 01:22:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69500", "10", "2017-11-22 01:22:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69501", "15", "2017-11-22 01:22:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69502", "3", "2017-11-22 02:25:49", "217.182.132.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("69503", "6", "2017-11-22 03:07:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69504", "3", "2017-11-22 03:07:15", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69505", "9", "2017-11-22 03:07:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69506", "8", "2017-11-22 03:07:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69507", "10", "2017-11-22 03:07:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69508", "15", "2017-11-22 03:07:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69509", "3", "2017-11-22 04:17:08", "24.68.32.106", "33");
INSERT INTO `wp_gf_form_view` VALUES("69510", "6", "2017-11-22 04:55:35", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69511", "9", "2017-11-22 04:55:36", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69512", "8", "2017-11-22 04:55:36", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("69513", "10", "2017-11-22 04:55:37", "216.244.66.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("69514", "15", "2017-11-22 04:55:39", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69515", "6", "2017-11-22 05:03:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69516", "3", "2017-11-22 05:03:34", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69517", "9", "2017-11-22 05:03:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69518", "8", "2017-11-22 05:03:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69519", "10", "2017-11-22 05:03:36", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69520", "15", "2017-11-22 05:03:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69521", "3", "2017-11-22 06:06:12", "50.65.184.219", "34");
INSERT INTO `wp_gf_form_view` VALUES("69522", "6", "2017-11-22 06:37:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69523", "9", "2017-11-22 06:37:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69524", "8", "2017-11-22 06:37:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69525", "10", "2017-11-22 06:37:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69526", "15", "2017-11-22 06:37:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69527", "6", "2017-11-22 08:17:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69528", "3", "2017-11-22 08:17:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69529", "9", "2017-11-22 08:17:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69530", "8", "2017-11-22 08:17:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69531", "10", "2017-11-22 08:17:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69532", "15", "2017-11-22 08:17:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69533", "6", "2017-11-22 09:58:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69534", "3", "2017-11-22 09:58:46", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69535", "9", "2017-11-22 09:58:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69536", "8", "2017-11-22 09:58:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69537", "10", "2017-11-22 09:58:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69538", "15", "2017-11-22 09:58:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69539", "10", "2017-11-22 10:25:40", "5.189.169.91", "2");
INSERT INTO `wp_gf_form_view` VALUES("69540", "3", "2017-11-22 10:44:58", "54.162.166.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("69541", "3", "2017-11-22 11:25:49", "180.76.15.10", "31");
INSERT INTO `wp_gf_form_view` VALUES("69542", "6", "2017-11-22 11:38:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69543", "9", "2017-11-22 11:38:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69544", "8", "2017-11-22 11:38:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69545", "10", "2017-11-22 11:38:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69546", "15", "2017-11-22 11:38:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69547", "3", "2017-11-22 12:01:57", "207.46.13.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("69548", "10", "2017-11-22 12:54:54", "79.143.186.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("69549", "6", "2017-11-22 13:31:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69550", "3", "2017-11-22 13:31:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69551", "9", "2017-11-22 13:31:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69552", "8", "2017-11-22 13:31:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69553", "10", "2017-11-22 13:31:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69554", "15", "2017-11-22 13:31:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69555", "10", "2017-11-22 14:12:37", "51.255.65.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("69556", "9", "2017-11-22 14:30:37", "164.132.161.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("69557", "3", "2017-11-22 15:08:24", "62.210.157.95", "32");
INSERT INTO `wp_gf_form_view` VALUES("69558", "6", "2017-11-22 15:17:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69559", "9", "2017-11-22 15:17:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69560", "8", "2017-11-22 15:17:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69561", "10", "2017-11-22 15:17:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69562", "15", "2017-11-22 15:17:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69563", "3", "2017-11-22 16:20:22", "62.210.101.101", "6");
INSERT INTO `wp_gf_form_view` VALUES("69564", "6", "2017-11-22 17:18:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69565", "3", "2017-11-22 17:18:03", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69566", "9", "2017-11-22 17:18:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69567", "8", "2017-11-22 17:18:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69568", "10", "2017-11-22 17:18:05", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69569", "15", "2017-11-22 17:18:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69570", "14", "2017-11-22 17:43:07", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69571", "8", "2017-11-22 18:54:48", "66.102.6.151", "1");
INSERT INTO `wp_gf_form_view` VALUES("69572", "6", "2017-11-22 19:07:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69573", "3", "2017-11-22 19:07:12", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("69574", "9", "2017-11-22 19:07:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69575", "8", "2017-11-22 19:07:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69576", "10", "2017-11-22 19:07:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69577", "15", "2017-11-22 19:07:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69578", "14", "2017-11-22 19:30:12", "195.154.21.212", "4");
INSERT INTO `wp_gf_form_view` VALUES("69579", "10", "2017-11-22 20:18:28", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("69580", "3", "2017-11-22 20:46:26", "144.76.62.20", "8");
INSERT INTO `wp_gf_form_view` VALUES("69581", "6", "2017-11-22 21:02:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69582", "3", "2017-11-22 21:02:16", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69583", "9", "2017-11-22 21:02:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69584", "8", "2017-11-22 21:02:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69585", "10", "2017-11-22 21:02:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69586", "15", "2017-11-22 21:02:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69587", "6", "2017-11-22 22:58:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69588", "3", "2017-11-22 22:58:00", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69589", "9", "2017-11-22 22:58:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69590", "8", "2017-11-22 22:58:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69591", "10", "2017-11-22 22:58:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69592", "15", "2017-11-22 22:58:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69593", "3", "2017-11-23 00:24:26", "157.55.39.197", "31");
INSERT INTO `wp_gf_form_view` VALUES("69594", "6", "2017-11-23 00:46:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69595", "9", "2017-11-23 00:46:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69596", "8", "2017-11-23 00:46:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69597", "10", "2017-11-23 00:46:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69598", "15", "2017-11-23 00:46:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69599", "3", "2017-11-23 01:00:15", "164.132.161.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("69600", "3", "2017-11-23 02:16:24", "180.76.15.14", "32");
INSERT INTO `wp_gf_form_view` VALUES("69601", "9", "2017-11-23 02:31:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69602", "8", "2017-11-23 02:31:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69603", "10", "2017-11-23 02:31:05", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69604", "15", "2017-11-23 02:31:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69605", "3", "2017-11-23 04:11:54", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69606", "9", "2017-11-23 04:11:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69607", "8", "2017-11-23 04:11:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69608", "10", "2017-11-23 04:11:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69609", "15", "2017-11-23 04:11:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69610", "10", "2017-11-23 05:39:08", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("69611", "3", "2017-11-23 05:49:20", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69612", "9", "2017-11-23 05:49:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69613", "8", "2017-11-23 05:49:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69614", "15", "2017-11-23 05:49:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69615", "3", "2017-11-23 07:21:24", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69616", "9", "2017-11-23 07:21:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69617", "8", "2017-11-23 07:21:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69618", "10", "2017-11-23 07:21:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69619", "15", "2017-11-23 07:21:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69620", "10", "2017-11-23 08:43:17", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("69621", "3", "2017-11-23 09:01:35", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("69622", "9", "2017-11-23 09:01:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69623", "8", "2017-11-23 09:01:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69624", "10", "2017-11-23 09:01:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69625", "15", "2017-11-23 09:01:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69626", "14", "2017-11-23 09:03:06", "134.255.243.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("69627", "6", "2017-11-23 09:54:07", "217.182.132.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("69628", "3", "2017-11-23 10:45:27", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69629", "9", "2017-11-23 10:45:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69630", "8", "2017-11-23 10:45:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69631", "10", "2017-11-23 10:45:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69632", "15", "2017-11-23 10:45:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69633", "3", "2017-11-23 11:38:21", "180.76.15.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("69634", "3", "2017-11-23 12:54:18", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69635", "9", "2017-11-23 12:54:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69636", "8", "2017-11-23 12:54:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69637", "10", "2017-11-23 12:54:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69638", "15", "2017-11-23 12:54:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69639", "6", "2017-11-23 13:00:23", "144.76.30.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("69640", "15", "2017-11-23 14:45:46", "40.77.167.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("69641", "3", "2017-11-23 15:05:46", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69642", "9", "2017-11-23 15:05:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69643", "8", "2017-11-23 15:05:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69644", "10", "2017-11-23 15:05:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69645", "15", "2017-11-23 15:05:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69646", "10", "2017-11-23 16:07:15", "51.255.71.121", "6");
INSERT INTO `wp_gf_form_view` VALUES("69647", "3", "2017-11-23 16:39:20", "80.241.214.123", "31");
INSERT INTO `wp_gf_form_view` VALUES("69648", "9", "2017-11-23 16:46:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69649", "8", "2017-11-23 16:46:27", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("69650", "15", "2017-11-23 16:46:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69651", "10", "2017-11-23 18:17:17", "157.55.39.122", "6");
INSERT INTO `wp_gf_form_view` VALUES("69652", "8", "2017-11-23 18:45:42", "66.102.6.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("69653", "3", "2017-11-23 18:50:45", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69654", "9", "2017-11-23 18:50:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69655", "15", "2017-11-23 18:50:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69656", "3", "2017-11-23 20:30:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69657", "9", "2017-11-23 20:30:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69658", "8", "2017-11-23 20:30:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69659", "10", "2017-11-23 20:30:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69660", "15", "2017-11-23 20:30:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69661", "3", "2017-11-23 21:14:10", "144.76.62.20", "8");
INSERT INTO `wp_gf_form_view` VALUES("69662", "11", "2017-11-23 21:57:39", "77.75.77.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("69663", "3", "2017-11-23 22:21:35", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69664", "9", "2017-11-23 22:21:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69665", "8", "2017-11-23 22:21:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69666", "10", "2017-11-23 22:21:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69667", "15", "2017-11-23 22:21:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69668", "14", "2017-11-23 22:59:35", "24.69.154.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("69669", "10", "2017-11-23 23:03:13", "66.249.92.30", "6");
INSERT INTO `wp_gf_form_view` VALUES("69670", "14", "2017-11-23 23:07:21", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("69671", "3", "2017-11-23 23:50:22", "66.249.66.29", "31");
INSERT INTO `wp_gf_form_view` VALUES("69672", "9", "2017-11-23 23:59:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69673", "8", "2017-11-23 23:59:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69674", "15", "2017-11-23 23:59:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69675", "3", "2017-11-24 00:10:31", "66.249.66.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("69676", "3", "2017-11-24 01:01:22", "217.182.132.148", "31");
INSERT INTO `wp_gf_form_view` VALUES("69677", "10", "2017-11-24 01:05:10", "217.182.132.178", "6");
INSERT INTO `wp_gf_form_view` VALUES("69678", "9", "2017-11-24 01:37:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69679", "8", "2017-11-24 01:37:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69680", "15", "2017-11-24 01:37:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69681", "3", "2017-11-24 02:02:21", "220.181.108.109", "33");
INSERT INTO `wp_gf_form_view` VALUES("69682", "9", "2017-11-24 02:21:28", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69683", "8", "2017-11-24 02:21:29", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("69684", "10", "2017-11-24 02:21:31", "216.244.66.231", "5");
INSERT INTO `wp_gf_form_view` VALUES("69685", "15", "2017-11-24 02:21:35", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69686", "3", "2017-11-24 03:14:58", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("69687", "9", "2017-11-24 03:15:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69688", "8", "2017-11-24 03:15:00", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69689", "10", "2017-11-24 03:15:01", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("69690", "15", "2017-11-24 03:15:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69691", "3", "2017-11-24 05:04:05", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69692", "9", "2017-11-24 05:04:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69693", "8", "2017-11-24 05:04:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69694", "10", "2017-11-24 05:04:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69695", "15", "2017-11-24 05:04:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69696", "3", "2017-11-24 06:41:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69697", "9", "2017-11-24 06:41:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69698", "8", "2017-11-24 06:41:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69699", "10", "2017-11-24 06:41:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69700", "15", "2017-11-24 06:41:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69701", "3", "2017-11-24 07:41:43", "157.55.39.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("69702", "3", "2017-11-24 08:16:24", "164.132.161.47", "35");
INSERT INTO `wp_gf_form_view` VALUES("69703", "9", "2017-11-24 08:26:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69704", "8", "2017-11-24 08:26:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69705", "10", "2017-11-24 08:26:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69706", "15", "2017-11-24 08:26:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69707", "3", "2017-11-24 10:11:43", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69708", "9", "2017-11-24 10:11:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69709", "8", "2017-11-24 10:11:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69710", "10", "2017-11-24 10:11:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69711", "15", "2017-11-24 10:11:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69712", "3", "2017-11-24 12:18:12", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69713", "9", "2017-11-24 12:18:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69714", "8", "2017-11-24 12:18:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69715", "10", "2017-11-24 12:18:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69716", "15", "2017-11-24 12:18:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69717", "10", "2017-11-24 13:08:25", "66.249.92.28", "9");
INSERT INTO `wp_gf_form_view` VALUES("69718", "15", "2017-11-24 13:13:58", "157.55.39.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("69719", "9", "2017-11-24 13:14:00", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("69720", "3", "2017-11-24 13:14:20", "157.55.39.210", "21");
INSERT INTO `wp_gf_form_view` VALUES("69721", "11", "2017-11-24 13:14:56", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("69722", "8", "2017-11-24 13:17:44", "157.55.39.215", "1");
INSERT INTO `wp_gf_form_view` VALUES("69723", "6", "2017-11-24 13:21:04", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("69724", "3", "2017-11-24 14:11:26", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69725", "9", "2017-11-24 14:11:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69726", "8", "2017-11-24 14:11:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69727", "10", "2017-11-24 14:11:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69728", "15", "2017-11-24 14:11:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69729", "3", "2017-11-24 15:22:34", "216.244.66.231", "31");
INSERT INTO `wp_gf_form_view` VALUES("69730", "10", "2017-11-24 15:36:30", "51.255.65.55", "6");
INSERT INTO `wp_gf_form_view` VALUES("69731", "9", "2017-11-24 15:51:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69732", "8", "2017-11-24 15:51:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69733", "15", "2017-11-24 15:51:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69734", "10", "2017-11-24 17:02:11", "51.255.65.56", "8");
INSERT INTO `wp_gf_form_view` VALUES("69735", "3", "2017-11-24 17:41:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69736", "9", "2017-11-24 17:41:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69737", "8", "2017-11-24 17:41:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69738", "15", "2017-11-24 17:41:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69739", "3", "2017-11-24 19:26:41", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69740", "9", "2017-11-24 19:26:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69741", "8", "2017-11-24 19:26:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69742", "10", "2017-11-24 19:26:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69743", "15", "2017-11-24 19:26:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69744", "3", "2017-11-24 21:17:08", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("69745", "9", "2017-11-24 21:17:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69746", "8", "2017-11-24 21:17:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69747", "10", "2017-11-24 21:17:10", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69748", "15", "2017-11-24 21:17:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69749", "3", "2017-11-24 23:01:21", "51.255.71.110", "32");
INSERT INTO `wp_gf_form_view` VALUES("69750", "10", "2017-11-24 23:02:10", "194.187.170.141", "7");
INSERT INTO `wp_gf_form_view` VALUES("69751", "9", "2017-11-24 23:18:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69752", "8", "2017-11-24 23:18:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69753", "15", "2017-11-24 23:18:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69754", "10", "2017-11-25 00:08:17", "194.187.170.141", "2");
INSERT INTO `wp_gf_form_view` VALUES("69755", "3", "2017-11-25 01:00:05", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("69756", "9", "2017-11-25 01:00:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69757", "8", "2017-11-25 01:00:06", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69758", "10", "2017-11-25 01:00:07", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69759", "15", "2017-11-25 01:00:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69760", "14", "2017-11-25 02:00:50", "24.108.29.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("69761", "10", "2017-11-25 02:16:11", "72.14.199.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("69762", "3", "2017-11-25 03:05:40", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69763", "9", "2017-11-25 03:05:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69764", "8", "2017-11-25 03:05:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69765", "10", "2017-11-25 03:05:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69766", "15", "2017-11-25 03:05:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69767", "3", "2017-11-25 04:04:18", "180.76.15.139", "31");
INSERT INTO `wp_gf_form_view` VALUES("69768", "10", "2017-11-25 04:05:48", "199.16.157.183", "6");
INSERT INTO `wp_gf_form_view` VALUES("69769", "9", "2017-11-25 04:44:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69770", "8", "2017-11-25 04:44:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69771", "15", "2017-11-25 04:44:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69772", "14", "2017-11-25 05:05:53", "46.229.168.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("69773", "3", "2017-11-25 05:07:25", "46.229.168.71", "43");
INSERT INTO `wp_gf_form_view` VALUES("69774", "9", "2017-11-25 05:08:09", "46.229.168.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("69775", "6", "2017-11-25 05:11:30", "46.229.168.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("69776", "10", "2017-11-25 05:15:42", "46.229.168.66", "7");
INSERT INTO `wp_gf_form_view` VALUES("69777", "8", "2017-11-25 05:18:33", "46.229.168.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("69778", "11", "2017-11-25 05:25:45", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("69779", "3", "2017-11-25 06:36:57", "180.76.15.29", "31");
INSERT INTO `wp_gf_form_view` VALUES("69780", "9", "2017-11-25 06:52:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69781", "8", "2017-11-25 06:52:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69782", "10", "2017-11-25 06:52:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69783", "15", "2017-11-25 06:52:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69784", "3", "2017-11-25 07:06:59", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("69785", "3", "2017-11-25 08:44:29", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69786", "9", "2017-11-25 08:44:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69787", "8", "2017-11-25 08:44:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69788", "10", "2017-11-25 08:44:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69789", "15", "2017-11-25 08:44:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69790", "3", "2017-11-25 09:23:25", "180.76.15.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("69791", "3", "2017-11-25 11:09:57", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("69792", "9", "2017-11-25 11:09:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69793", "8", "2017-11-25 11:09:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69794", "10", "2017-11-25 11:09:59", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69795", "15", "2017-11-25 11:10:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69796", "3", "2017-11-25 12:50:02", "69.30.210.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("69797", "3", "2017-11-25 13:24:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69798", "9", "2017-11-25 13:24:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69799", "8", "2017-11-25 13:24:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69800", "10", "2017-11-25 13:24:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69801", "15", "2017-11-25 13:24:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69802", "14", "2017-11-25 13:41:50", "95.28.184.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("69803", "3", "2017-11-25 15:10:02", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("69804", "9", "2017-11-25 15:10:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69805", "8", "2017-11-25 15:10:04", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69806", "10", "2017-11-25 15:10:04", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("69807", "15", "2017-11-25 15:10:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69808", "10", "2017-11-25 16:27:54", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("69809", "10", "2017-11-25 17:05:41", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("69810", "3", "2017-11-25 17:10:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69811", "9", "2017-11-25 17:10:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69812", "8", "2017-11-25 17:10:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69813", "15", "2017-11-25 17:10:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69814", "3", "2017-11-25 18:54:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69815", "9", "2017-11-25 18:54:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69816", "8", "2017-11-25 18:54:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69817", "10", "2017-11-25 18:54:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69818", "15", "2017-11-25 18:54:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69819", "3", "2017-11-25 20:17:52", "220.181.108.117", "31");
INSERT INTO `wp_gf_form_view` VALUES("69820", "10", "2017-11-25 20:33:31", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("69821", "9", "2017-11-25 20:54:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69822", "8", "2017-11-25 20:54:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69823", "15", "2017-11-25 20:54:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69824", "10", "2017-11-25 21:26:29", "51.255.71.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("69825", "3", "2017-11-25 22:40:59", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69826", "9", "2017-11-25 22:41:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69827", "8", "2017-11-25 22:41:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69828", "10", "2017-11-25 22:41:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69829", "15", "2017-11-25 22:41:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69830", "3", "2017-11-25 23:49:55", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("69831", "3", "2017-11-26 00:44:13", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69832", "9", "2017-11-26 00:44:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69833", "8", "2017-11-26 00:44:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69834", "10", "2017-11-26 00:44:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69835", "15", "2017-11-26 00:44:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69836", "3", "2017-11-26 01:23:12", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("69837", "3", "2017-11-26 02:59:08", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69838", "9", "2017-11-26 02:59:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69839", "8", "2017-11-26 02:59:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69840", "10", "2017-11-26 02:59:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69841", "15", "2017-11-26 02:59:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69842", "3", "2017-11-26 03:35:20", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("69843", "15", "2017-11-26 03:36:34", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69844", "3", "2017-11-26 04:10:29", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69845", "3", "2017-11-26 05:10:52", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69846", "9", "2017-11-26 05:10:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69847", "8", "2017-11-26 05:10:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69848", "10", "2017-11-26 05:10:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69849", "15", "2017-11-26 05:10:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69850", "3", "2017-11-26 06:08:58", "24.108.0.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("69851", "10", "2017-11-26 07:14:46", "72.14.199.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("69852", "3", "2017-11-26 07:37:19", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69853", "9", "2017-11-26 07:37:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69854", "8", "2017-11-26 07:37:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69855", "15", "2017-11-26 07:37:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69856", "9", "2017-11-26 08:29:03", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("69857", "3", "2017-11-26 08:34:49", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("69858", "14", "2017-11-26 09:17:39", "5.9.88.103", "2");
INSERT INTO `wp_gf_form_view` VALUES("69859", "3", "2017-11-26 09:28:57", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("69860", "9", "2017-11-26 09:28:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69861", "8", "2017-11-26 09:28:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69862", "10", "2017-11-26 09:29:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69863", "15", "2017-11-26 09:29:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69864", "3", "2017-11-26 10:07:45", "180.76.15.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("69865", "3", "2017-11-26 11:21:41", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69866", "9", "2017-11-26 11:21:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69867", "8", "2017-11-26 11:21:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69868", "10", "2017-11-26 11:21:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69869", "15", "2017-11-26 11:21:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69870", "3", "2017-11-26 13:10:31", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69871", "9", "2017-11-26 13:10:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69872", "8", "2017-11-26 13:10:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69873", "10", "2017-11-26 13:10:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69874", "15", "2017-11-26 13:10:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69875", "3", "2017-11-26 15:08:13", "66.249.79.135", "34");
INSERT INTO `wp_gf_form_view` VALUES("69876", "9", "2017-11-26 15:08:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69877", "8", "2017-11-26 15:08:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69878", "10", "2017-11-26 15:08:34", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69879", "15", "2017-11-26 15:08:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69880", "14", "2017-11-26 16:00:44", "138.197.13.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69881", "6", "2017-11-26 16:01:49", "138.197.13.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69882", "3", "2017-11-26 16:03:02", "138.197.13.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("69883", "10", "2017-11-26 16:04:04", "138.197.13.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("69884", "9", "2017-11-26 16:08:23", "138.197.13.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69885", "15", "2017-11-26 16:10:45", "138.197.13.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("69886", "8", "2017-11-26 16:37:02", "138.197.13.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("69887", "3", "2017-11-26 17:01:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69888", "9", "2017-11-26 17:01:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69889", "8", "2017-11-26 17:01:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69890", "10", "2017-11-26 17:01:52", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69891", "15", "2017-11-26 17:01:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69892", "3", "2017-11-26 18:41:13", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69893", "9", "2017-11-26 18:41:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69894", "8", "2017-11-26 18:41:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69895", "10", "2017-11-26 18:41:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69896", "15", "2017-11-26 18:41:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69897", "3", "2017-11-26 20:33:07", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69898", "9", "2017-11-26 20:33:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69899", "8", "2017-11-26 20:33:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69900", "10", "2017-11-26 20:33:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69901", "15", "2017-11-26 20:33:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69902", "10", "2017-11-26 21:45:10", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("69903", "3", "2017-11-26 21:50:28", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69904", "14", "2017-11-26 22:10:55", "184.66.50.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("69905", "10", "2017-11-26 22:16:12", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("69906", "3", "2017-11-26 22:30:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69907", "9", "2017-11-26 22:30:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69908", "8", "2017-11-26 22:30:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69909", "15", "2017-11-26 22:30:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69910", "3", "2017-11-27 00:07:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69911", "9", "2017-11-27 00:07:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69912", "8", "2017-11-27 00:07:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69913", "10", "2017-11-27 00:07:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69914", "15", "2017-11-27 00:07:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69915", "10", "2017-11-27 01:28:25", "40.77.167.65", "7");
INSERT INTO `wp_gf_form_view` VALUES("69916", "3", "2017-11-27 01:56:05", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69917", "9", "2017-11-27 01:56:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69918", "8", "2017-11-27 01:56:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69919", "15", "2017-11-27 01:56:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69920", "3", "2017-11-27 02:13:11", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("69921", "10", "2017-11-27 03:07:11", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69922", "3", "2017-11-27 03:15:33", "184.149.29.56", "3");
INSERT INTO `wp_gf_form_view` VALUES("69923", "3", "2017-11-27 04:30:32", "217.182.132.18", "61");
INSERT INTO `wp_gf_form_view` VALUES("69924", "9", "2017-11-27 04:30:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69925", "8", "2017-11-27 04:30:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("69926", "10", "2017-11-27 04:30:58", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("69927", "15", "2017-11-27 04:31:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69928", "3", "2017-11-27 05:32:06", "180.76.15.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("69929", "10", "2017-11-27 05:53:40", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("69930", "3", "2017-11-27 06:16:15", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69931", "9", "2017-11-27 06:16:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69932", "8", "2017-11-27 06:16:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69933", "10", "2017-11-27 06:16:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69934", "15", "2017-11-27 06:16:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69935", "3", "2017-11-27 07:30:40", "51.255.65.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("69936", "3", "2017-11-27 08:20:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69937", "9", "2017-11-27 08:20:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69938", "8", "2017-11-27 08:20:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69939", "10", "2017-11-27 08:20:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69940", "15", "2017-11-27 08:20:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69941", "10", "2017-11-27 09:12:55", "199.16.157.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("69942", "14", "2017-11-27 09:58:11", "40.77.167.33", "1");
INSERT INTO `wp_gf_form_view` VALUES("69943", "3", "2017-11-27 10:00:52", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69944", "9", "2017-11-27 10:00:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69945", "8", "2017-11-27 10:00:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69946", "10", "2017-11-27 10:00:54", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("69947", "15", "2017-11-27 10:00:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69948", "15", "2017-11-27 11:37:01", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("69949", "3", "2017-11-27 11:41:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69950", "9", "2017-11-27 11:41:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69951", "8", "2017-11-27 11:41:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69952", "10", "2017-11-27 11:41:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69953", "10", "2017-11-27 12:04:08", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69954", "3", "2017-11-27 13:16:03", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69955", "9", "2017-11-27 13:16:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69956", "8", "2017-11-27 13:16:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69957", "10", "2017-11-27 13:16:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69958", "15", "2017-11-27 13:16:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69959", "14", "2017-11-27 14:41:00", "128.68.18.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("69960", "3", "2017-11-27 15:01:13", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69961", "9", "2017-11-27 15:01:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69962", "8", "2017-11-27 15:01:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69963", "10", "2017-11-27 15:01:17", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69964", "15", "2017-11-27 15:01:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69965", "3", "2017-11-27 16:51:11", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69966", "9", "2017-11-27 16:51:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69967", "8", "2017-11-27 16:51:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69968", "10", "2017-11-27 16:51:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69969", "15", "2017-11-27 16:51:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69970", "14", "2017-11-27 17:28:42", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("69971", "3", "2017-11-27 18:35:56", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("69972", "9", "2017-11-27 18:35:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69973", "8", "2017-11-27 18:35:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69974", "10", "2017-11-27 18:35:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69975", "15", "2017-11-27 18:36:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69976", "10", "2017-11-27 19:36:12", "51.255.71.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("69977", "8", "2017-11-27 19:46:31", "137.74.207.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("69978", "3", "2017-11-27 19:54:57", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("69979", "3", "2017-11-27 20:07:40", "154.20.198.114", "31");
INSERT INTO `wp_gf_form_view` VALUES("69980", "8", "2017-11-27 20:32:29", "66.102.6.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("69981", "9", "2017-11-27 20:34:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69982", "10", "2017-11-27 20:34:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69983", "15", "2017-11-27 20:34:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69984", "3", "2017-11-27 22:18:35", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69985", "9", "2017-11-27 22:18:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69986", "8", "2017-11-27 22:18:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69987", "10", "2017-11-27 22:18:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("69988", "15", "2017-11-27 22:18:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69989", "3", "2017-11-28 00:08:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69990", "9", "2017-11-28 00:08:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69991", "8", "2017-11-28 00:08:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69992", "10", "2017-11-28 00:08:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("69993", "15", "2017-11-28 00:08:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69994", "10", "2017-11-28 01:30:48", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("69995", "3", "2017-11-28 01:57:26", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("69996", "9", "2017-11-28 01:57:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69997", "8", "2017-11-28 01:57:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("69998", "15", "2017-11-28 01:57:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("69999", "3", "2017-11-28 02:16:36", "192.151.152.98", "5");
INSERT INTO `wp_gf_form_view` VALUES("70000", "3", "2017-11-28 03:41:15", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70001", "9", "2017-11-28 03:41:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70002", "8", "2017-11-28 03:41:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70003", "10", "2017-11-28 03:41:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70004", "15", "2017-11-28 03:41:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70005", "8", "2017-11-28 05:13:35", "180.76.15.160", "5");
INSERT INTO `wp_gf_form_view` VALUES("70006", "3", "2017-11-28 05:27:47", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70007", "9", "2017-11-28 05:27:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70008", "10", "2017-11-28 05:27:50", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70009", "15", "2017-11-28 05:27:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70010", "3", "2017-11-28 06:29:35", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("70011", "3", "2017-11-28 07:33:54", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70012", "9", "2017-11-28 07:33:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70013", "8", "2017-11-28 07:33:56", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70014", "10", "2017-11-28 07:33:56", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70015", "15", "2017-11-28 07:33:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70016", "3", "2017-11-28 08:57:31", "51.255.65.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("70017", "3", "2017-11-28 09:05:05", "40.77.167.33", "31");
INSERT INTO `wp_gf_form_view` VALUES("70018", "9", "2017-11-28 09:15:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70019", "8", "2017-11-28 09:15:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70020", "10", "2017-11-28 09:15:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70021", "15", "2017-11-28 09:15:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70022", "3", "2017-11-28 10:58:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70023", "9", "2017-11-28 10:58:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70024", "8", "2017-11-28 10:58:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70025", "10", "2017-11-28 10:58:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70026", "15", "2017-11-28 10:58:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70027", "10", "2017-11-28 11:02:01", "72.14.199.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("70028", "3", "2017-11-28 12:48:53", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70029", "9", "2017-11-28 12:48:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70030", "8", "2017-11-28 12:48:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70031", "10", "2017-11-28 12:48:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70032", "15", "2017-11-28 12:48:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70033", "10", "2017-11-28 13:00:43", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("70034", "3", "2017-11-28 13:17:24", "180.76.15.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("70035", "3", "2017-11-28 14:32:39", "62.210.101.96", "32");
INSERT INTO `wp_gf_form_view` VALUES("70036", "9", "2017-11-28 14:39:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70037", "8", "2017-11-28 14:39:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70038", "10", "2017-11-28 14:39:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70039", "15", "2017-11-28 14:39:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70040", "3", "2017-11-28 15:12:57", "164.132.161.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("70041", "3", "2017-11-28 16:25:01", "52.37.180.245", "90");
INSERT INTO `wp_gf_form_view` VALUES("70042", "9", "2017-11-28 16:25:02", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70043", "8", "2017-11-28 16:25:03", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70044", "10", "2017-11-28 16:25:03", "52.37.180.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("70045", "15", "2017-11-28 16:25:06", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70046", "14", "2017-11-28 17:38:17", "24.68.44.253", "1");
INSERT INTO `wp_gf_form_view` VALUES("70047", "3", "2017-11-28 18:29:03", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70048", "9", "2017-11-28 18:29:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70049", "8", "2017-11-28 18:29:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70050", "10", "2017-11-28 18:29:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70051", "15", "2017-11-28 18:29:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70052", "3", "2017-11-28 20:07:45", "184.66.152.214", "31");
INSERT INTO `wp_gf_form_view` VALUES("70053", "9", "2017-11-28 20:37:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70054", "8", "2017-11-28 20:37:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70055", "10", "2017-11-28 20:37:49", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70056", "15", "2017-11-28 20:37:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70057", "14", "2017-11-28 20:39:45", "75.154.236.71", "2");
INSERT INTO `wp_gf_form_view` VALUES("70058", "3", "2017-11-28 22:03:33", "139.162.247.24", "37");
INSERT INTO `wp_gf_form_view` VALUES("70059", "9", "2017-11-28 22:13:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70060", "8", "2017-11-28 22:13:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70061", "10", "2017-11-28 22:13:53", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70062", "15", "2017-11-28 22:13:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70063", "3", "2017-11-28 23:00:02", "194.187.170.139", "34");
INSERT INTO `wp_gf_form_view` VALUES("70064", "10", "2017-11-28 23:08:50", "180.76.15.147", "6");
INSERT INTO `wp_gf_form_view` VALUES("70065", "9", "2017-11-28 23:53:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70066", "8", "2017-11-28 23:53:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70067", "15", "2017-11-28 23:53:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70068", "3", "2017-11-29 00:14:45", "184.69.126.246", "6");
INSERT INTO `wp_gf_form_view` VALUES("70069", "12", "2017-11-29 00:33:03", "194.187.170.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("70070", "10", "2017-11-29 01:01:28", "216.244.66.231", "7");
INSERT INTO `wp_gf_form_view` VALUES("70071", "3", "2017-11-29 01:47:26", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70072", "9", "2017-11-29 01:47:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70073", "8", "2017-11-29 01:47:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70074", "15", "2017-11-29 01:47:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70075", "10", "2017-11-29 02:06:36", "199.58.86.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("70076", "8", "2017-11-29 02:31:38", "139.162.247.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("70077", "3", "2017-11-29 03:17:25", "139.162.247.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("70078", "8", "2017-11-29 03:28:55", "70.67.176.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("70079", "14", "2017-11-29 03:35:02", "139.162.247.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("70080", "14", "2017-11-29 04:03:05", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("70081", "3", "2017-11-29 04:13:17", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70082", "9", "2017-11-29 04:13:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70083", "8", "2017-11-29 04:13:19", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70084", "10", "2017-11-29 04:13:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70085", "15", "2017-11-29 04:13:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70086", "3", "2017-11-29 05:02:56", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70087", "15", "2017-11-29 05:44:21", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("70088", "3", "2017-11-29 06:02:26", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70089", "9", "2017-11-29 06:02:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70090", "8", "2017-11-29 06:02:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70091", "10", "2017-11-29 06:02:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70092", "15", "2017-11-29 06:02:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70093", "3", "2017-11-29 07:16:05", "194.187.170.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("70094", "10", "2017-11-29 07:24:36", "194.187.170.138", "4");
INSERT INTO `wp_gf_form_view` VALUES("70095", "3", "2017-11-29 08:12:26", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("70096", "9", "2017-11-29 08:12:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70097", "8", "2017-11-29 08:12:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70098", "10", "2017-11-29 08:12:28", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("70099", "15", "2017-11-29 08:12:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70100", "10", "2017-11-29 09:30:21", "51.255.65.30", "6");
INSERT INTO `wp_gf_form_view` VALUES("70101", "3", "2017-11-29 09:57:52", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70102", "9", "2017-11-29 09:57:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70103", "8", "2017-11-29 09:57:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70104", "15", "2017-11-29 09:57:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70105", "3", "2017-11-29 10:56:46", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("70106", "10", "2017-11-29 11:37:07", "217.182.132.96", "6");
INSERT INTO `wp_gf_form_view` VALUES("70107", "3", "2017-11-29 11:46:58", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70108", "9", "2017-11-29 11:46:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70109", "8", "2017-11-29 11:46:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70110", "15", "2017-11-29 11:47:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70111", "3", "2017-11-29 13:20:42", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("70112", "9", "2017-11-29 13:20:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70113", "8", "2017-11-29 13:20:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70114", "10", "2017-11-29 13:20:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70115", "15", "2017-11-29 13:20:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70116", "3", "2017-11-29 14:49:19", "164.132.161.46", "31");
INSERT INTO `wp_gf_form_view` VALUES("70117", "10", "2017-11-29 14:51:49", "164.132.161.74", "6");
INSERT INTO `wp_gf_form_view` VALUES("70118", "9", "2017-11-29 14:56:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70119", "8", "2017-11-29 14:56:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70120", "15", "2017-11-29 14:56:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70121", "10", "2017-11-29 15:35:08", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("70122", "3", "2017-11-29 16:01:56", "40.77.167.2", "9");
INSERT INTO `wp_gf_form_view` VALUES("70123", "9", "2017-11-29 16:59:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70124", "3", "2017-11-29 17:00:00", "52.37.180.245", "53");
INSERT INTO `wp_gf_form_view` VALUES("70125", "8", "2017-11-29 17:00:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70126", "10", "2017-11-29 17:00:00", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("70127", "15", "2017-11-29 17:00:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70128", "9", "2017-11-29 17:00:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70129", "3", "2017-11-29 18:33:07", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70130", "9", "2017-11-29 18:33:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70131", "8", "2017-11-29 18:33:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70132", "10", "2017-11-29 18:33:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70133", "15", "2017-11-29 18:33:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70134", "3", "2017-11-29 20:18:10", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70135", "9", "2017-11-29 20:18:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70136", "8", "2017-11-29 20:18:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70137", "10", "2017-11-29 20:18:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70138", "15", "2017-11-29 20:18:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70139", "10", "2017-11-29 21:20:23", "180.76.15.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("70140", "3", "2017-11-29 22:02:03", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70141", "9", "2017-11-29 22:02:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70142", "8", "2017-11-29 22:02:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70143", "10", "2017-11-29 22:02:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70144", "15", "2017-11-29 22:02:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70145", "15", "2017-11-29 23:12:18", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70146", "10", "2017-11-29 23:12:41", "68.180.228.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("70147", "3", "2017-11-29 23:13:24", "68.180.228.176", "10");
INSERT INTO `wp_gf_form_view` VALUES("70148", "14", "2017-11-29 23:15:28", "5.3.144.236", "1");
INSERT INTO `wp_gf_form_view` VALUES("70149", "9", "2017-11-29 23:16:05", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70150", "8", "2017-11-29 23:21:24", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70151", "3", "2017-11-30 00:11:40", "68.180.228.176", "31");
INSERT INTO `wp_gf_form_view` VALUES("70152", "9", "2017-11-30 00:32:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70153", "8", "2017-11-30 00:32:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70154", "10", "2017-11-30 00:32:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70155", "15", "2017-11-30 00:32:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70156", "3", "2017-11-30 01:28:29", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70157", "3", "2017-11-30 02:37:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70158", "9", "2017-11-30 02:37:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70159", "8", "2017-11-30 02:37:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70160", "10", "2017-11-30 02:37:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70161", "15", "2017-11-30 02:37:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70162", "3", "2017-11-30 04:07:29", "68.180.228.176", "42");
INSERT INTO `wp_gf_form_view` VALUES("70163", "9", "2017-11-30 04:27:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70164", "8", "2017-11-30 04:27:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70165", "10", "2017-11-30 04:27:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70166", "15", "2017-11-30 04:27:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70167", "3", "2017-11-30 05:00:10", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70168", "3", "2017-11-30 06:14:42", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70169", "9", "2017-11-30 06:14:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70170", "8", "2017-11-30 06:14:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70171", "10", "2017-11-30 06:14:44", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70172", "15", "2017-11-30 06:14:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70173", "3", "2017-11-30 07:18:49", "68.180.228.176", "31");
INSERT INTO `wp_gf_form_view` VALUES("70174", "10", "2017-11-30 07:39:23", "46.229.168.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("70175", "15", "2017-11-30 07:42:13", "46.229.168.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("70176", "6", "2017-11-30 07:52:21", "46.229.168.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("70177", "8", "2017-11-30 07:58:13", "46.229.168.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("70178", "3", "2017-11-30 08:00:45", "46.229.168.79", "47");
INSERT INTO `wp_gf_form_view` VALUES("70179", "10", "2017-11-30 08:06:29", "46.229.168.73", "11");
INSERT INTO `wp_gf_form_view` VALUES("70180", "9", "2017-11-30 08:11:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70181", "8", "2017-11-30 08:11:53", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70182", "15", "2017-11-30 08:11:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70183", "3", "2017-11-30 09:56:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70184", "9", "2017-11-30 09:56:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70185", "8", "2017-11-30 09:56:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70186", "10", "2017-11-30 09:56:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70187", "15", "2017-11-30 09:56:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70188", "3", "2017-11-30 11:34:05", "68.180.228.176", "31");
INSERT INTO `wp_gf_form_view` VALUES("70189", "9", "2017-11-30 11:47:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70190", "8", "2017-11-30 11:47:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70191", "10", "2017-11-30 11:47:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70192", "15", "2017-11-30 11:48:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70193", "3", "2017-11-30 12:27:34", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70194", "3", "2017-11-30 13:24:30", "192.151.157.210", "31");
INSERT INTO `wp_gf_form_view` VALUES("70195", "9", "2017-11-30 13:33:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70196", "8", "2017-11-30 13:33:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70197", "10", "2017-11-30 13:33:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70198", "15", "2017-11-30 13:33:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70199", "3", "2017-11-30 14:02:51", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("70200", "3", "2017-11-30 15:22:57", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70201", "9", "2017-11-30 15:22:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70202", "8", "2017-11-30 15:22:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70203", "10", "2017-11-30 15:23:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70204", "15", "2017-11-30 15:23:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70205", "3", "2017-11-30 16:12:01", "40.77.167.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("70206", "5", "2017-11-30 17:21:16", "40.77.167.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("70207", "3", "2017-11-30 17:21:57", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70208", "9", "2017-11-30 17:21:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70209", "8", "2017-11-30 17:22:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70210", "10", "2017-11-30 17:22:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70211", "15", "2017-11-30 17:22:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70212", "3", "2017-11-30 18:02:45", "207.46.13.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("70213", "10", "2017-11-30 18:30:05", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("70214", "6", "2017-11-30 18:38:38", "180.76.15.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("70215", "14", "2017-11-30 18:58:06", "96.50.18.183", "1");
INSERT INTO `wp_gf_form_view` VALUES("70216", "3", "2017-11-30 19:12:01", "180.76.15.151", "33");
INSERT INTO `wp_gf_form_view` VALUES("70217", "14", "2017-11-30 19:12:39", "24.69.171.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("70218", "9", "2017-11-30 19:16:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70219", "8", "2017-11-30 19:16:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70220", "10", "2017-11-30 19:16:53", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70221", "15", "2017-11-30 19:16:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70222", "10", "2017-11-30 20:18:39", "180.76.15.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("70223", "3", "2017-11-30 20:57:19", "79.13.156.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("70224", "3", "2017-11-30 21:01:42", "79.13.156.92", "31");
INSERT INTO `wp_gf_form_view` VALUES("70225", "9", "2017-11-30 21:22:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70226", "8", "2017-11-30 21:22:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70227", "10", "2017-11-30 21:22:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70228", "15", "2017-11-30 21:22:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70229", "14", "2017-11-30 21:57:16", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("70230", "3", "2017-11-30 22:51:58", "66.249.79.137", "61");
INSERT INTO `wp_gf_form_view` VALUES("70231", "9", "2017-11-30 22:55:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70232", "8", "2017-11-30 22:55:09", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70233", "10", "2017-11-30 22:55:10", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70234", "15", "2017-11-30 22:55:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70235", "14", "2017-11-30 23:15:38", "24.69.172.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("70236", "3", "2017-11-30 23:19:26", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70237", "3", "2017-12-01 00:44:44", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70238", "9", "2017-12-01 00:44:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70239", "8", "2017-12-01 00:44:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70240", "10", "2017-12-01 00:44:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70241", "15", "2017-12-01 00:44:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70242", "3", "2017-12-01 01:28:42", "194.187.170.108", "2");
INSERT INTO `wp_gf_form_view` VALUES("70243", "3", "2017-12-01 02:04:47", "194.187.170.108", "32");
INSERT INTO `wp_gf_form_view` VALUES("70244", "15", "2017-12-01 02:10:33", "40.77.167.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("70245", "9", "2017-12-01 02:25:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70246", "8", "2017-12-01 02:25:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70247", "10", "2017-12-01 02:25:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70248", "3", "2017-12-01 03:06:26", "50.3.134.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("70249", "10", "2017-12-01 03:27:13", "194.187.170.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("70250", "10", "2017-12-01 04:06:23", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70251", "3", "2017-12-01 04:11:58", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70252", "9", "2017-12-01 04:11:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70253", "8", "2017-12-01 04:11:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70254", "15", "2017-12-01 04:12:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70255", "3", "2017-12-01 05:47:55", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70256", "9", "2017-12-01 05:47:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70257", "8", "2017-12-01 05:47:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70258", "10", "2017-12-01 05:47:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70259", "15", "2017-12-01 05:47:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70260", "3", "2017-12-01 07:14:18", "86.89.33.19", "33");
INSERT INTO `wp_gf_form_view` VALUES("70261", "9", "2017-12-01 07:43:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70262", "8", "2017-12-01 07:43:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70263", "10", "2017-12-01 07:43:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70264", "15", "2017-12-01 07:43:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70265", "10", "2017-12-01 08:44:54", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("70266", "3", "2017-12-01 09:46:07", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70267", "9", "2017-12-01 09:46:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70268", "8", "2017-12-01 09:46:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70269", "10", "2017-12-01 09:46:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70270", "15", "2017-12-01 09:46:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70271", "3", "2017-12-01 11:44:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70272", "9", "2017-12-01 11:44:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70273", "8", "2017-12-01 11:44:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70274", "10", "2017-12-01 11:44:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70275", "15", "2017-12-01 11:44:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70276", "10", "2017-12-01 12:33:58", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70277", "10", "2017-12-01 13:00:17", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70278", "3", "2017-12-01 13:49:40", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70279", "9", "2017-12-01 13:49:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70280", "8", "2017-12-01 13:49:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70281", "15", "2017-12-01 13:49:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70282", "3", "2017-12-01 14:31:49", "151.80.44.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("70283", "10", "2017-12-01 14:45:52", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70284", "14", "2017-12-01 14:48:13", "154.5.210.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("70285", "3", "2017-12-01 15:37:42", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70286", "9", "2017-12-01 15:37:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70287", "8", "2017-12-01 15:37:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70288", "10", "2017-12-01 15:37:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70289", "15", "2017-12-01 15:37:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70290", "10", "2017-12-01 17:24:21", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70291", "3", "2017-12-01 17:41:27", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70292", "9", "2017-12-01 17:41:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70293", "8", "2017-12-01 17:41:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70294", "15", "2017-12-01 17:41:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70295", "3", "2017-12-01 18:13:23", "24.68.32.106", "3");
INSERT INTO `wp_gf_form_view` VALUES("70296", "3", "2017-12-01 19:36:28", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70297", "9", "2017-12-01 19:36:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70298", "8", "2017-12-01 19:36:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70299", "10", "2017-12-01 19:36:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70300", "15", "2017-12-01 19:36:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70301", "10", "2017-12-01 20:22:06", "217.182.132.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("70302", "3", "2017-12-01 21:19:10", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70303", "9", "2017-12-01 21:19:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70304", "8", "2017-12-01 21:19:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70305", "10", "2017-12-01 21:19:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70306", "15", "2017-12-01 21:19:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70307", "3", "2017-12-01 22:31:00", "207.46.13.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("70308", "3", "2017-12-01 23:24:53", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70309", "9", "2017-12-01 23:24:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70310", "8", "2017-12-01 23:24:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70311", "10", "2017-12-01 23:24:55", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70312", "15", "2017-12-01 23:24:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70313", "3", "2017-12-02 01:27:59", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70314", "9", "2017-12-02 01:28:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70315", "8", "2017-12-02 01:28:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70316", "10", "2017-12-02 01:28:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70317", "15", "2017-12-02 01:28:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70318", "10", "2017-12-02 02:07:07", "184.66.129.248", "9");
INSERT INTO `wp_gf_form_view` VALUES("70319", "3", "2017-12-02 02:07:52", "207.46.13.9", "11");
INSERT INTO `wp_gf_form_view` VALUES("70320", "15", "2017-12-02 02:08:29", "207.46.13.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("70321", "8", "2017-12-02 02:10:01", "157.55.39.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("70322", "11", "2017-12-02 02:10:39", "157.55.39.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("70323", "3", "2017-12-02 03:17:10", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70324", "9", "2017-12-02 03:17:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70325", "8", "2017-12-02 03:17:12", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70326", "10", "2017-12-02 03:17:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70327", "15", "2017-12-02 03:17:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70328", "8", "2017-12-02 04:12:36", "157.55.39.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("70329", "3", "2017-12-02 04:26:15", "51.255.65.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("70330", "3", "2017-12-02 05:23:52", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70331", "9", "2017-12-02 05:23:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70332", "8", "2017-12-02 05:23:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70333", "10", "2017-12-02 05:23:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70334", "15", "2017-12-02 05:23:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70335", "3", "2017-12-02 06:20:51", "180.76.15.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("70336", "3", "2017-12-02 07:06:34", "192.95.29.116", "36");
INSERT INTO `wp_gf_form_view` VALUES("70337", "14", "2017-12-02 07:08:40", "192.95.29.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("70338", "8", "2017-12-02 07:08:56", "192.95.29.116", "3");
INSERT INTO `wp_gf_form_view` VALUES("70339", "9", "2017-12-02 07:28:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70340", "10", "2017-12-02 07:28:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70341", "15", "2017-12-02 07:28:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70342", "10", "2017-12-02 08:04:14", "164.132.161.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("70343", "8", "2017-12-02 08:07:51", "199.30.24.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("70344", "3", "2017-12-02 09:33:52", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70345", "9", "2017-12-02 09:33:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70346", "8", "2017-12-02 09:33:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70347", "10", "2017-12-02 09:33:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70348", "15", "2017-12-02 09:33:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70349", "3", "2017-12-02 11:06:34", "217.182.132.53", "31");
INSERT INTO `wp_gf_form_view` VALUES("70350", "9", "2017-12-02 11:18:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70351", "8", "2017-12-02 11:18:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70352", "10", "2017-12-02 11:18:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70353", "15", "2017-12-02 11:18:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70354", "10", "2017-12-02 12:01:05", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("70355", "8", "2017-12-02 12:20:53", "139.162.247.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("70356", "3", "2017-12-02 12:52:53", "173.234.153.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("70357", "10", "2017-12-02 13:00:16", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("70358", "6", "2017-12-02 13:27:03", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70359", "3", "2017-12-02 13:29:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70360", "9", "2017-12-02 13:29:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70361", "8", "2017-12-02 13:29:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70362", "15", "2017-12-02 13:29:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70363", "3", "2017-12-02 15:15:00", "180.76.15.33", "62");
INSERT INTO `wp_gf_form_view` VALUES("70364", "9", "2017-12-02 15:35:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70365", "8", "2017-12-02 15:35:02", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70366", "10", "2017-12-02 15:35:02", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70367", "15", "2017-12-02 15:35:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70368", "3", "2017-12-02 16:07:13", "217.182.132.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("70369", "10", "2017-12-02 16:39:57", "207.46.13.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("70370", "3", "2017-12-02 17:25:00", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70371", "9", "2017-12-02 17:25:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70372", "8", "2017-12-02 17:25:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70373", "10", "2017-12-02 17:25:02", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70374", "15", "2017-12-02 17:25:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70375", "3", "2017-12-02 19:19:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70376", "9", "2017-12-02 19:19:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70377", "8", "2017-12-02 19:19:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70378", "10", "2017-12-02 19:19:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70379", "15", "2017-12-02 19:19:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70380", "3", "2017-12-02 20:20:57", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70381", "10", "2017-12-02 21:00:00", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70382", "3", "2017-12-02 21:17:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70383", "9", "2017-12-02 21:17:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70384", "8", "2017-12-02 21:17:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70385", "15", "2017-12-02 21:17:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70386", "10", "2017-12-02 23:00:49", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("70387", "3", "2017-12-02 23:09:16", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70388", "9", "2017-12-02 23:09:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70389", "8", "2017-12-02 23:09:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70390", "15", "2017-12-02 23:09:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70391", "10", "2017-12-03 00:38:13", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("70392", "3", "2017-12-03 01:01:01", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70393", "9", "2017-12-03 01:01:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70394", "8", "2017-12-03 01:01:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70395", "10", "2017-12-03 01:01:03", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70396", "15", "2017-12-03 01:01:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70397", "3", "2017-12-03 02:44:00", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70398", "9", "2017-12-03 02:44:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70399", "8", "2017-12-03 02:44:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70400", "10", "2017-12-03 02:44:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70401", "15", "2017-12-03 02:44:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70402", "10", "2017-12-03 03:08:42", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70403", "3", "2017-12-03 03:33:57", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("70404", "3", "2017-12-03 04:23:53", "192.99.6.164", "33");
INSERT INTO `wp_gf_form_view` VALUES("70405", "9", "2017-12-03 04:36:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70406", "8", "2017-12-03 04:36:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70407", "10", "2017-12-03 04:36:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70408", "15", "2017-12-03 04:36:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70409", "10", "2017-12-03 05:09:31", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70410", "3", "2017-12-03 05:28:31", "180.76.15.16", "1");
INSERT INTO `wp_gf_form_view` VALUES("70411", "14", "2017-12-03 06:25:55", "213.154.3.102", "4");
INSERT INTO `wp_gf_form_view` VALUES("70412", "3", "2017-12-03 06:31:14", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("70413", "9", "2017-12-03 06:31:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70414", "8", "2017-12-03 06:31:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70415", "10", "2017-12-03 06:31:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70416", "15", "2017-12-03 06:31:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70417", "10", "2017-12-03 07:10:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70418", "3", "2017-12-03 07:41:54", "96.54.48.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("70419", "3", "2017-12-03 08:11:53", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70420", "9", "2017-12-03 08:11:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70421", "8", "2017-12-03 08:11:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70422", "10", "2017-12-03 08:11:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70423", "15", "2017-12-03 08:11:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70424", "10", "2017-12-03 09:11:13", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70425", "3", "2017-12-03 09:33:31", "207.46.13.44", "31");
INSERT INTO `wp_gf_form_view` VALUES("70426", "9", "2017-12-03 09:59:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70427", "8", "2017-12-03 09:59:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70428", "15", "2017-12-03 09:59:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70429", "3", "2017-12-03 10:24:59", "51.255.65.26", "2");
INSERT INTO `wp_gf_form_view` VALUES("70430", "10", "2017-12-03 11:12:02", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70431", "3", "2017-12-03 11:41:43", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70432", "9", "2017-12-03 11:41:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70433", "8", "2017-12-03 11:41:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70434", "15", "2017-12-03 11:41:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70435", "10", "2017-12-03 13:00:14", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("70436", "3", "2017-12-03 13:38:23", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70437", "9", "2017-12-03 13:38:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70438", "8", "2017-12-03 13:38:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70439", "15", "2017-12-03 13:38:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70440", "10", "2017-12-03 15:26:19", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70441", "3", "2017-12-03 15:27:22", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70442", "9", "2017-12-03 15:27:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70443", "8", "2017-12-03 15:27:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70444", "15", "2017-12-03 15:27:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70445", "5", "2017-12-03 16:08:49", "77.75.79.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("70446", "3", "2017-12-03 16:33:29", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("70447", "3", "2017-12-03 17:14:27", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70448", "9", "2017-12-03 17:14:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70449", "8", "2017-12-03 17:14:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70450", "10", "2017-12-03 17:14:29", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70451", "15", "2017-12-03 17:14:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70452", "11", "2017-12-03 18:03:17", "164.132.161.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("70453", "3", "2017-12-03 19:09:40", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70454", "9", "2017-12-03 19:09:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70455", "8", "2017-12-03 19:09:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70456", "10", "2017-12-03 19:09:42", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70457", "15", "2017-12-03 19:09:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70458", "3", "2017-12-03 20:44:23", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70459", "9", "2017-12-03 20:44:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70460", "8", "2017-12-03 20:44:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70461", "10", "2017-12-03 20:44:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70462", "15", "2017-12-03 20:44:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70463", "10", "2017-12-03 21:28:50", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70464", "3", "2017-12-03 22:31:50", "180.76.15.10", "31");
INSERT INTO `wp_gf_form_view` VALUES("70465", "9", "2017-12-03 22:35:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70466", "8", "2017-12-03 22:35:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70467", "10", "2017-12-03 22:35:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70468", "15", "2017-12-03 22:35:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70469", "10", "2017-12-03 23:29:40", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70470", "8", "2017-12-03 23:36:50", "64.233.172.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("70471", "3", "2017-12-04 00:25:41", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70472", "9", "2017-12-04 00:25:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70473", "8", "2017-12-04 00:25:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70474", "10", "2017-12-04 00:25:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70475", "15", "2017-12-04 00:25:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70476", "10", "2017-12-04 01:30:31", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70477", "14", "2017-12-04 01:51:46", "180.76.15.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("70478", "14", "2017-12-04 02:00:24", "172.218.222.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("70479", "3", "2017-12-04 02:05:16", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("70480", "9", "2017-12-04 02:05:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70481", "8", "2017-12-04 02:05:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70482", "10", "2017-12-04 02:05:18", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70483", "15", "2017-12-04 02:05:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70484", "11", "2017-12-04 02:25:06", "180.76.15.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("70485", "3", "2017-12-04 03:49:44", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70486", "9", "2017-12-04 03:49:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70487", "8", "2017-12-04 03:49:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70488", "10", "2017-12-04 03:49:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70489", "15", "2017-12-04 03:49:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70490", "10", "2017-12-04 04:26:00", "72.14.199.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("70491", "3", "2017-12-04 05:40:21", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70492", "9", "2017-12-04 05:40:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70493", "8", "2017-12-04 05:40:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70494", "10", "2017-12-04 05:40:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70495", "15", "2017-12-04 05:40:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70496", "10", "2017-12-04 06:10:48", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70497", "3", "2017-12-04 06:27:57", "64.180.87.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("70498", "3", "2017-12-04 07:30:19", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70499", "9", "2017-12-04 07:30:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70500", "8", "2017-12-04 07:30:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70501", "10", "2017-12-04 07:30:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70502", "15", "2017-12-04 07:30:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70503", "10", "2017-12-04 08:08:55", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70504", "3", "2017-12-04 09:02:29", "144.76.115.190", "31");
INSERT INTO `wp_gf_form_view` VALUES("70505", "9", "2017-12-04 09:41:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70506", "8", "2017-12-04 09:41:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70507", "10", "2017-12-04 09:41:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70508", "15", "2017-12-04 09:41:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70509", "10", "2017-12-04 10:51:05", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70510", "3", "2017-12-04 11:30:03", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70511", "9", "2017-12-04 11:30:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70512", "8", "2017-12-04 11:30:04", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70513", "10", "2017-12-04 11:30:05", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70514", "15", "2017-12-04 11:30:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70515", "10", "2017-12-04 13:00:22", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70516", "3", "2017-12-04 13:37:22", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70517", "9", "2017-12-04 13:37:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70518", "8", "2017-12-04 13:37:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70519", "15", "2017-12-04 13:37:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70520", "10", "2017-12-04 15:25:45", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70521", "3", "2017-12-04 15:37:27", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70522", "9", "2017-12-04 15:37:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70523", "8", "2017-12-04 15:37:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70524", "15", "2017-12-04 15:37:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70525", "3", "2017-12-04 16:54:26", "37.17.172.122", "11");
INSERT INTO `wp_gf_form_view` VALUES("70526", "3", "2017-12-04 17:00:58", "37.17.172.122", "34");
INSERT INTO `wp_gf_form_view` VALUES("70527", "8", "2017-12-04 17:05:54", "37.17.172.122", "3");
INSERT INTO `wp_gf_form_view` VALUES("70528", "14", "2017-12-04 17:23:25", "37.17.172.122", "3");
INSERT INTO `wp_gf_form_view` VALUES("70529", "9", "2017-12-04 17:37:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70530", "10", "2017-12-04 17:37:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70531", "15", "2017-12-04 17:37:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70532", "10", "2017-12-04 18:08:35", "72.14.199.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("70533", "10", "2017-12-04 19:27:26", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70534", "3", "2017-12-04 19:32:16", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70535", "9", "2017-12-04 19:32:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70536", "8", "2017-12-04 19:32:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70537", "15", "2017-12-04 19:32:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70538", "14", "2017-12-04 20:02:28", "172.218.222.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("70539", "10", "2017-12-04 20:08:19", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("70540", "3", "2017-12-04 20:40:11", "168.244.11.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("70541", "10", "2017-12-04 21:28:18", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70542", "3", "2017-12-04 21:41:41", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70543", "9", "2017-12-04 21:41:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70544", "8", "2017-12-04 21:41:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70545", "15", "2017-12-04 21:41:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70546", "14", "2017-12-04 23:02:29", "75.157.24.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("70547", "3", "2017-12-04 23:23:07", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70548", "9", "2017-12-04 23:23:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70549", "8", "2017-12-04 23:23:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70550", "10", "2017-12-04 23:23:10", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70551", "15", "2017-12-04 23:23:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70552", "3", "2017-12-05 01:05:30", "59.127.15.17", "33");
INSERT INTO `wp_gf_form_view` VALUES("70553", "10", "2017-12-05 01:09:48", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70554", "9", "2017-12-05 01:22:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70555", "8", "2017-12-05 01:22:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70556", "15", "2017-12-05 01:22:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70557", "3", "2017-12-05 02:03:20", "66.249.79.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("70558", "3", "2017-12-05 03:31:20", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70559", "9", "2017-12-05 03:31:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70560", "8", "2017-12-05 03:31:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70561", "10", "2017-12-05 03:31:22", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70562", "15", "2017-12-05 03:31:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70563", "3", "2017-12-05 04:57:32", "46.161.9.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("70564", "3", "2017-12-05 05:34:01", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70565", "9", "2017-12-05 05:34:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70566", "8", "2017-12-05 05:34:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70567", "10", "2017-12-05 05:34:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70568", "15", "2017-12-05 05:34:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70569", "10", "2017-12-05 07:00:51", "72.14.199.115", "6");
INSERT INTO `wp_gf_form_view` VALUES("70570", "3", "2017-12-05 07:01:19", "46.9.164.75", "32");
INSERT INTO `wp_gf_form_view` VALUES("70571", "9", "2017-12-05 07:18:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70572", "8", "2017-12-05 07:18:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70573", "15", "2017-12-05 07:18:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70574", "3", "2017-12-05 09:06:10", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70575", "9", "2017-12-05 09:06:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70576", "8", "2017-12-05 09:06:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70577", "10", "2017-12-05 09:06:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70578", "15", "2017-12-05 09:06:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70579", "3", "2017-12-05 10:46:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70580", "9", "2017-12-05 10:46:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70581", "8", "2017-12-05 10:46:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70582", "10", "2017-12-05 10:46:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70583", "15", "2017-12-05 10:46:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70584", "3", "2017-12-05 12:05:46", "68.180.228.176", "32");
INSERT INTO `wp_gf_form_view` VALUES("70585", "14", "2017-12-05 12:10:58", "195.154.253.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("70586", "9", "2017-12-05 12:46:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70587", "8", "2017-12-05 12:46:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70588", "10", "2017-12-05 12:46:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70589", "15", "2017-12-05 12:46:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70590", "10", "2017-12-05 13:00:21", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("70591", "3", "2017-12-05 13:20:59", "174.127.133.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("70592", "3", "2017-12-05 14:43:35", "52.37.180.245", "63");
INSERT INTO `wp_gf_form_view` VALUES("70593", "9", "2017-12-05 14:43:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70594", "8", "2017-12-05 14:43:36", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70595", "10", "2017-12-05 14:43:37", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70596", "15", "2017-12-05 14:43:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70597", "14", "2017-12-05 14:54:41", "108.180.240.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("70598", "10", "2017-12-05 15:26:23", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70599", "14", "2017-12-05 16:20:12", "180.76.15.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("70600", "3", "2017-12-05 16:51:16", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70601", "9", "2017-12-05 16:51:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70602", "8", "2017-12-05 16:51:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70603", "10", "2017-12-05 16:51:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70604", "15", "2017-12-05 16:51:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70605", "3", "2017-12-05 18:23:40", "5.9.106.230", "31");
INSERT INTO `wp_gf_form_view` VALUES("70606", "9", "2017-12-05 18:40:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70607", "8", "2017-12-05 18:40:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70608", "10", "2017-12-05 18:40:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70609", "15", "2017-12-05 18:40:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70610", "3", "2017-12-05 19:02:00", "46.229.168.68", "38");
INSERT INTO `wp_gf_form_view` VALUES("70611", "10", "2017-12-05 19:02:27", "46.229.168.80", "14");
INSERT INTO `wp_gf_form_view` VALUES("70612", "14", "2017-12-05 19:16:21", "46.229.168.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("70613", "10", "2017-12-05 20:08:03", "72.14.199.119", "11");
INSERT INTO `wp_gf_form_view` VALUES("70614", "3", "2017-12-05 20:24:47", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70615", "9", "2017-12-05 20:24:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70616", "8", "2017-12-05 20:24:49", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70617", "15", "2017-12-05 20:24:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70618", "3", "2017-12-05 22:31:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70619", "9", "2017-12-05 22:31:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70620", "8", "2017-12-05 22:31:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70621", "10", "2017-12-05 22:31:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70622", "15", "2017-12-05 22:31:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70623", "3", "2017-12-05 23:25:14", "157.55.39.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("70624", "10", "2017-12-05 23:28:17", "66.249.79.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("70625", "3", "2017-12-06 00:14:50", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("70626", "9", "2017-12-06 00:14:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70627", "8", "2017-12-06 00:14:52", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70628", "10", "2017-12-06 00:14:53", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70629", "15", "2017-12-06 00:14:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70630", "3", "2017-12-06 02:09:55", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70631", "9", "2017-12-06 02:09:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70632", "8", "2017-12-06 02:09:57", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70633", "10", "2017-12-06 02:09:58", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("70634", "15", "2017-12-06 02:10:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70635", "3", "2017-12-06 04:00:04", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70636", "9", "2017-12-06 04:00:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70637", "8", "2017-12-06 04:00:06", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70638", "10", "2017-12-06 04:00:06", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("70639", "15", "2017-12-06 04:00:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70640", "3", "2017-12-06 05:44:02", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70641", "9", "2017-12-06 05:44:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70642", "8", "2017-12-06 05:44:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70643", "10", "2017-12-06 05:44:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70644", "15", "2017-12-06 05:44:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70645", "10", "2017-12-06 06:48:36", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70646", "3", "2017-12-06 06:55:00", "54.74.221.255", "1");
INSERT INTO `wp_gf_form_view` VALUES("70647", "3", "2017-12-06 07:24:15", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70648", "9", "2017-12-06 07:24:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70649", "8", "2017-12-06 07:24:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70650", "10", "2017-12-06 07:24:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70651", "15", "2017-12-06 07:24:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70652", "10", "2017-12-06 08:49:29", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70653", "3", "2017-12-06 09:24:07", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70654", "9", "2017-12-06 09:24:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70655", "8", "2017-12-06 09:24:08", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70656", "10", "2017-12-06 09:24:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70657", "15", "2017-12-06 09:24:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70658", "3", "2017-12-06 10:44:30", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("70659", "10", "2017-12-06 10:54:23", "100.43.91.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("70660", "3", "2017-12-06 11:15:01", "52.37.180.245", "90");
INSERT INTO `wp_gf_form_view` VALUES("70661", "9", "2017-12-06 11:15:03", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70662", "8", "2017-12-06 11:15:03", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70663", "10", "2017-12-06 11:15:04", "52.37.180.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("70664", "15", "2017-12-06 11:15:07", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70665", "11", "2017-12-06 11:20:37", "100.43.91.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("70666", "3", "2017-12-06 12:59:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70667", "9", "2017-12-06 12:59:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70668", "8", "2017-12-06 12:59:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70669", "10", "2017-12-06 12:59:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70670", "15", "2017-12-06 12:59:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70671", "10", "2017-12-06 13:00:17", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70672", "3", "2017-12-06 13:32:48", "5.157.1.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("70673", "3", "2017-12-06 14:51:16", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70674", "9", "2017-12-06 14:51:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70675", "8", "2017-12-06 14:51:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70676", "10", "2017-12-06 14:51:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70677", "15", "2017-12-06 14:51:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70678", "10", "2017-12-06 15:26:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70679", "3", "2017-12-06 16:05:40", "180.76.15.147", "33");
INSERT INTO `wp_gf_form_view` VALUES("70680", "9", "2017-12-06 16:44:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70681", "8", "2017-12-06 16:44:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70682", "10", "2017-12-06 16:44:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70683", "15", "2017-12-06 16:44:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70684", "10", "2017-12-06 17:27:08", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70685", "3", "2017-12-06 17:46:37", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70686", "8", "2017-12-06 18:00:37", "64.233.172.250", "1");
INSERT INTO `wp_gf_form_view` VALUES("70687", "3", "2017-12-06 18:35:37", "159.203.160.202", "13");
INSERT INTO `wp_gf_form_view` VALUES("70688", "14", "2017-12-06 18:39:38", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("70689", "6", "2017-12-06 18:40:43", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("70690", "10", "2017-12-06 18:43:17", "159.203.160.202", "4");
INSERT INTO `wp_gf_form_view` VALUES("70691", "9", "2017-12-06 18:47:49", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("70692", "15", "2017-12-06 18:50:29", "159.203.160.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("70693", "3", "2017-12-06 19:01:53", "159.203.160.202", "49");
INSERT INTO `wp_gf_form_view` VALUES("70694", "10", "2017-12-06 19:05:08", "159.203.160.202", "7");
INSERT INTO `wp_gf_form_view` VALUES("70695", "9", "2017-12-06 19:11:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70696", "8", "2017-12-06 19:11:02", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70697", "15", "2017-12-06 19:11:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70698", "3", "2017-12-06 20:59:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70699", "9", "2017-12-06 20:59:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70700", "8", "2017-12-06 20:59:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70701", "10", "2017-12-06 20:59:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70702", "15", "2017-12-06 20:59:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70703", "10", "2017-12-06 21:28:48", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70704", "3", "2017-12-06 22:16:09", "24.69.158.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("70705", "8", "2017-12-06 22:49:23", "139.162.247.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("70706", "3", "2017-12-06 23:09:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70707", "9", "2017-12-06 23:09:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70708", "8", "2017-12-06 23:09:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70709", "10", "2017-12-06 23:09:16", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70710", "15", "2017-12-06 23:09:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70711", "10", "2017-12-07 00:53:55", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70712", "3", "2017-12-07 00:54:35", "217.182.132.172", "2");
INSERT INTO `wp_gf_form_view` VALUES("70713", "3", "2017-12-07 01:14:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70714", "9", "2017-12-07 01:14:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70715", "8", "2017-12-07 01:14:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70716", "10", "2017-12-07 01:14:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70717", "15", "2017-12-07 01:14:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70718", "5", "2017-12-07 01:23:46", "77.75.78.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("70719", "3", "2017-12-07 03:01:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70720", "9", "2017-12-07 03:01:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70721", "8", "2017-12-07 03:01:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70722", "10", "2017-12-07 03:01:34", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70723", "15", "2017-12-07 03:01:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70724", "3", "2017-12-07 04:49:41", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70725", "9", "2017-12-07 04:49:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70726", "8", "2017-12-07 04:49:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70727", "10", "2017-12-07 04:49:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70728", "15", "2017-12-07 04:49:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70729", "3", "2017-12-07 07:01:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70730", "9", "2017-12-07 07:01:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70731", "8", "2017-12-07 07:01:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70732", "10", "2017-12-07 07:01:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70733", "15", "2017-12-07 07:01:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70734", "3", "2017-12-07 09:08:39", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70735", "9", "2017-12-07 09:08:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70736", "8", "2017-12-07 09:08:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70737", "10", "2017-12-07 09:08:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70738", "15", "2017-12-07 09:08:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70739", "14", "2017-12-07 09:18:55", "23.245.152.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("70740", "10", "2017-12-07 10:28:45", "217.182.132.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("70741", "3", "2017-12-07 10:55:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70742", "9", "2017-12-07 10:55:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70743", "8", "2017-12-07 10:55:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70744", "15", "2017-12-07 10:55:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70745", "3", "2017-12-07 12:19:04", "180.76.15.152", "32");
INSERT INTO `wp_gf_form_view` VALUES("70746", "10", "2017-12-07 12:34:19", "72.14.199.117", "6");
INSERT INTO `wp_gf_form_view` VALUES("70747", "9", "2017-12-07 12:57:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70748", "8", "2017-12-07 12:57:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70749", "15", "2017-12-07 12:57:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70750", "10", "2017-12-07 13:00:15", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70751", "3", "2017-12-07 14:54:54", "178.63.1.153", "31");
INSERT INTO `wp_gf_form_view` VALUES("70752", "9", "2017-12-07 14:56:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70753", "8", "2017-12-07 14:56:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70754", "10", "2017-12-07 14:56:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70755", "15", "2017-12-07 14:56:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70756", "3", "2017-12-07 15:02:07", "178.63.1.153", "19");
INSERT INTO `wp_gf_form_view` VALUES("70757", "8", "2017-12-07 15:04:06", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("70758", "10", "2017-12-07 15:20:35", "178.63.1.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("70759", "3", "2017-12-07 16:42:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70760", "9", "2017-12-07 16:42:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70761", "8", "2017-12-07 16:42:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70762", "10", "2017-12-07 16:42:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70763", "15", "2017-12-07 16:42:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70764", "10", "2017-12-07 17:27:06", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70765", "3", "2017-12-07 18:30:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70766", "9", "2017-12-07 18:30:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70767", "8", "2017-12-07 18:30:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70768", "10", "2017-12-07 18:30:49", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70769", "15", "2017-12-07 18:30:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70770", "3", "2017-12-07 19:19:20", "91.121.211.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("70771", "8", "2017-12-07 20:00:13", "96.50.21.88", "3");
INSERT INTO `wp_gf_form_view` VALUES("70772", "3", "2017-12-07 20:16:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70773", "9", "2017-12-07 20:16:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70774", "10", "2017-12-07 20:16:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70775", "15", "2017-12-07 20:16:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70776", "3", "2017-12-07 22:13:32", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70777", "9", "2017-12-07 22:13:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70778", "8", "2017-12-07 22:13:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70779", "10", "2017-12-07 22:13:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70780", "15", "2017-12-07 22:13:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70781", "3", "2017-12-08 00:01:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70782", "9", "2017-12-08 00:01:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70783", "8", "2017-12-08 00:01:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70784", "10", "2017-12-08 00:01:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70785", "15", "2017-12-08 00:01:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70786", "3", "2017-12-08 01:57:39", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70787", "9", "2017-12-08 01:57:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70788", "8", "2017-12-08 01:57:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70789", "10", "2017-12-08 01:57:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70790", "15", "2017-12-08 01:57:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70791", "10", "2017-12-08 02:40:51", "72.14.199.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("70792", "3", "2017-12-08 03:51:11", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70793", "9", "2017-12-08 03:51:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70794", "8", "2017-12-08 03:51:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70795", "10", "2017-12-08 03:51:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70796", "15", "2017-12-08 03:51:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70797", "3", "2017-12-08 05:36:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70798", "9", "2017-12-08 05:36:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70799", "8", "2017-12-08 05:36:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70800", "10", "2017-12-08 05:36:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70801", "15", "2017-12-08 05:36:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70802", "3", "2017-12-08 06:43:21", "66.249.79.2", "1");
INSERT INTO `wp_gf_form_view` VALUES("70803", "3", "2017-12-08 07:23:26", "93.158.161.83", "31");
INSERT INTO `wp_gf_form_view` VALUES("70804", "9", "2017-12-08 07:31:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70805", "8", "2017-12-08 07:31:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70806", "10", "2017-12-08 07:31:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70807", "15", "2017-12-08 07:31:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70808", "3", "2017-12-08 09:37:40", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70809", "9", "2017-12-08 09:37:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70810", "8", "2017-12-08 09:37:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70811", "10", "2017-12-08 09:37:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70812", "15", "2017-12-08 09:37:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70813", "3", "2017-12-08 11:22:43", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70814", "9", "2017-12-08 11:22:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70815", "8", "2017-12-08 11:22:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70816", "10", "2017-12-08 11:22:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70817", "15", "2017-12-08 11:22:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70818", "3", "2017-12-08 13:06:23", "52.37.180.245", "39");
INSERT INTO `wp_gf_form_view` VALUES("70819", "9", "2017-12-08 13:06:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70820", "8", "2017-12-08 13:06:25", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("70821", "10", "2017-12-08 13:06:25", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70822", "15", "2017-12-08 13:06:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70823", "14", "2017-12-08 13:54:04", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("70824", "10", "2017-12-08 14:00:06", "5.9.98.130", "9");
INSERT INTO `wp_gf_form_view` VALUES("70825", "15", "2017-12-08 14:00:25", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("70826", "3", "2017-12-08 14:00:34", "5.9.98.130", "55");
INSERT INTO `wp_gf_form_view` VALUES("70827", "8", "2017-12-08 14:03:04", "5.9.98.130", "3");
INSERT INTO `wp_gf_form_view` VALUES("70828", "9", "2017-12-08 14:03:20", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("70829", "6", "2017-12-08 14:05:01", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("70830", "10", "2017-12-08 15:27:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70831", "3", "2017-12-08 16:30:12", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70832", "9", "2017-12-08 16:30:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70833", "8", "2017-12-08 16:30:20", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70834", "10", "2017-12-08 16:30:22", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70835", "15", "2017-12-08 16:30:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70836", "10", "2017-12-08 17:51:56", "72.14.199.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("70837", "3", "2017-12-08 18:24:42", "195.22.127.196", "4");
INSERT INTO `wp_gf_form_view` VALUES("70838", "10", "2017-12-08 18:24:42", "195.22.127.196", "5");
INSERT INTO `wp_gf_form_view` VALUES("70839", "3", "2017-12-08 19:01:23", "40.77.167.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("70840", "3", "2017-12-08 20:22:03", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70841", "9", "2017-12-08 20:22:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70842", "8", "2017-12-08 20:22:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70843", "10", "2017-12-08 20:22:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70844", "15", "2017-12-08 20:22:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70845", "3", "2017-12-08 22:27:57", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70846", "9", "2017-12-08 22:27:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70847", "8", "2017-12-08 22:28:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70848", "10", "2017-12-08 22:28:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70849", "15", "2017-12-08 22:28:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70850", "3", "2017-12-09 00:18:42", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70851", "9", "2017-12-09 00:18:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70852", "8", "2017-12-09 00:18:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70853", "10", "2017-12-09 00:18:48", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70854", "15", "2017-12-09 00:18:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70855", "3", "2017-12-09 01:43:35", "207.46.13.105", "47");
INSERT INTO `wp_gf_form_view` VALUES("70856", "6", "2017-12-09 01:43:44", "207.46.13.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("70857", "9", "2017-12-09 01:44:23", "207.46.13.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("70858", "10", "2017-12-09 01:44:26", "207.46.13.37", "6");
INSERT INTO `wp_gf_form_view` VALUES("70859", "8", "2017-12-09 01:52:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70860", "15", "2017-12-09 01:52:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70861", "10", "2017-12-09 03:38:41", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70862", "14", "2017-12-09 03:43:21", "157.55.39.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("70863", "3", "2017-12-09 03:46:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70864", "9", "2017-12-09 03:46:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70865", "8", "2017-12-09 03:46:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70866", "15", "2017-12-09 03:46:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70867", "3", "2017-12-09 05:40:59", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70868", "9", "2017-12-09 05:41:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70869", "8", "2017-12-09 05:41:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70870", "10", "2017-12-09 05:41:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70871", "15", "2017-12-09 05:41:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70872", "10", "2017-12-09 06:35:08", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("70873", "3", "2017-12-09 07:24:59", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70874", "9", "2017-12-09 07:25:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70875", "8", "2017-12-09 07:25:02", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70876", "10", "2017-12-09 07:25:03", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70877", "15", "2017-12-09 07:25:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70878", "3", "2017-12-09 09:15:01", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70879", "9", "2017-12-09 09:15:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70880", "8", "2017-12-09 09:15:03", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70881", "10", "2017-12-09 09:15:05", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70882", "15", "2017-12-09 09:15:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70883", "3", "2017-12-09 11:00:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70884", "9", "2017-12-09 11:00:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70885", "8", "2017-12-09 11:00:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70886", "10", "2017-12-09 11:00:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70887", "15", "2017-12-09 11:00:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70888", "3", "2017-12-09 12:44:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70889", "9", "2017-12-09 12:44:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70890", "8", "2017-12-09 12:44:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70891", "10", "2017-12-09 12:44:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70892", "15", "2017-12-09 12:44:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70893", "10", "2017-12-09 13:00:29", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70894", "3", "2017-12-09 14:23:59", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70895", "9", "2017-12-09 14:24:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70896", "8", "2017-12-09 14:24:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70897", "10", "2017-12-09 14:24:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70898", "15", "2017-12-09 14:24:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70899", "3", "2017-12-09 16:17:07", "109.169.29.30", "62");
INSERT INTO `wp_gf_form_view` VALUES("70900", "8", "2017-12-09 16:28:26", "178.140.235.235", "5");
INSERT INTO `wp_gf_form_view` VALUES("70901", "9", "2017-12-09 16:29:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70902", "10", "2017-12-09 16:29:51", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70903", "15", "2017-12-09 16:29:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70904", "10", "2017-12-09 17:06:41", "194.187.170.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("70905", "3", "2017-12-09 17:25:27", "194.187.170.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("70906", "3", "2017-12-09 18:01:18", "194.187.170.121", "34");
INSERT INTO `wp_gf_form_view` VALUES("70907", "10", "2017-12-09 18:08:05", "194.187.170.121", "9");
INSERT INTO `wp_gf_form_view` VALUES("70908", "9", "2017-12-09 18:24:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70909", "8", "2017-12-09 18:24:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70910", "15", "2017-12-09 18:24:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70911", "8", "2017-12-09 19:45:21", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70912", "3", "2017-12-09 20:16:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70913", "9", "2017-12-09 20:16:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70914", "8", "2017-12-09 20:16:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70915", "10", "2017-12-09 20:16:18", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70916", "15", "2017-12-09 20:16:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70917", "10", "2017-12-09 21:11:05", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70918", "3", "2017-12-09 22:34:47", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("70919", "9", "2017-12-09 22:34:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70920", "8", "2017-12-09 22:34:48", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("70921", "10", "2017-12-09 22:34:49", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("70922", "15", "2017-12-09 22:34:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70923", "14", "2017-12-09 23:33:13", "70.67.181.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("70924", "10", "2017-12-10 00:30:46", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70925", "3", "2017-12-10 00:59:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70926", "9", "2017-12-10 00:59:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70927", "8", "2017-12-10 00:59:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70928", "15", "2017-12-10 00:59:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70929", "10", "2017-12-10 01:05:40", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70930", "3", "2017-12-10 02:41:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70931", "9", "2017-12-10 02:41:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70932", "8", "2017-12-10 02:41:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70933", "10", "2017-12-10 02:41:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70934", "15", "2017-12-10 02:41:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70935", "3", "2017-12-10 03:53:41", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("70936", "10", "2017-12-10 04:02:07", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70937", "3", "2017-12-10 04:51:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70938", "9", "2017-12-10 04:51:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70939", "8", "2017-12-10 04:51:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70940", "15", "2017-12-10 04:51:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70941", "3", "2017-12-10 05:33:01", "194.187.170.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("70942", "3", "2017-12-10 06:00:16", "194.187.170.112", "36");
INSERT INTO `wp_gf_form_view` VALUES("70943", "9", "2017-12-10 06:34:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70944", "8", "2017-12-10 06:34:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70945", "10", "2017-12-10 06:34:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70946", "15", "2017-12-10 06:34:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70947", "10", "2017-12-10 07:05:25", "194.187.170.112", "3");
INSERT INTO `wp_gf_form_view` VALUES("70948", "8", "2017-12-10 07:45:19", "194.187.170.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("70949", "3", "2017-12-10 07:52:39", "194.187.170.112", "2");
INSERT INTO `wp_gf_form_view` VALUES("70950", "3", "2017-12-10 08:01:38", "194.187.170.112", "31");
INSERT INTO `wp_gf_form_view` VALUES("70951", "9", "2017-12-10 08:21:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70952", "8", "2017-12-10 08:21:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70953", "10", "2017-12-10 08:21:41", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("70954", "15", "2017-12-10 08:21:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70955", "10", "2017-12-10 09:49:42", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("70956", "10", "2017-12-10 10:04:35", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("70957", "3", "2017-12-10 10:11:17", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70958", "9", "2017-12-10 10:11:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70959", "8", "2017-12-10 10:11:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70960", "15", "2017-12-10 10:11:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70961", "3", "2017-12-10 12:11:20", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("70962", "9", "2017-12-10 12:11:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70963", "8", "2017-12-10 12:11:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70964", "10", "2017-12-10 12:11:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70965", "15", "2017-12-10 12:11:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70966", "10", "2017-12-10 13:00:26", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("70967", "3", "2017-12-10 13:08:22", "207.46.13.118", "36");
INSERT INTO `wp_gf_form_view` VALUES("70968", "9", "2017-12-10 13:54:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70969", "8", "2017-12-10 13:54:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70970", "15", "2017-12-10 13:54:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70971", "3", "2017-12-10 14:10:18", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("70972", "10", "2017-12-10 15:25:44", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("70973", "3", "2017-12-10 16:06:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70974", "9", "2017-12-10 16:06:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70975", "8", "2017-12-10 16:06:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70976", "10", "2017-12-10 16:06:37", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("70977", "15", "2017-12-10 16:06:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70978", "3", "2017-12-10 17:34:29", "40.77.167.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("70979", "3", "2017-12-10 18:01:16", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("70980", "9", "2017-12-10 18:01:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70981", "8", "2017-12-10 18:01:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70982", "10", "2017-12-10 18:01:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("70983", "15", "2017-12-10 18:01:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70984", "3", "2017-12-10 19:55:35", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("70985", "9", "2017-12-10 19:55:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70986", "8", "2017-12-10 19:55:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("70987", "10", "2017-12-10 19:55:39", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("70988", "15", "2017-12-10 19:55:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70989", "14", "2017-12-10 19:58:15", "46.229.168.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("70990", "3", "2017-12-10 20:00:12", "46.229.168.68", "35");
INSERT INTO `wp_gf_form_view` VALUES("70991", "9", "2017-12-10 20:00:29", "46.229.168.68", "3");
INSERT INTO `wp_gf_form_view` VALUES("70992", "8", "2017-12-10 20:01:21", "46.229.168.75", "5");
INSERT INTO `wp_gf_form_view` VALUES("70993", "10", "2017-12-10 20:02:41", "46.229.168.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("70994", "14", "2017-12-10 20:04:51", "46.229.168.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("70995", "11", "2017-12-10 20:11:37", "46.229.168.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("70996", "6", "2017-12-10 20:17:55", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("70997", "3", "2017-12-10 21:50:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("70998", "9", "2017-12-10 21:50:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("70999", "8", "2017-12-10 21:50:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71000", "10", "2017-12-10 21:50:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71001", "15", "2017-12-10 21:50:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71002", "10", "2017-12-10 23:07:47", "72.14.199.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("71003", "3", "2017-12-10 23:28:48", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("71004", "3", "2017-12-11 00:10:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71005", "9", "2017-12-11 00:10:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71006", "8", "2017-12-11 00:10:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71007", "10", "2017-12-11 00:10:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71008", "15", "2017-12-11 00:10:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71009", "3", "2017-12-11 02:05:21", "5.9.98.130", "31");
INSERT INTO `wp_gf_form_view` VALUES("71010", "9", "2017-12-11 02:15:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71011", "8", "2017-12-11 02:15:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71012", "10", "2017-12-11 02:15:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71013", "15", "2017-12-11 02:15:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71014", "10", "2017-12-11 03:57:28", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71015", "3", "2017-12-11 04:09:36", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71016", "9", "2017-12-11 04:09:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71017", "8", "2017-12-11 04:09:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71018", "10", "2017-12-11 04:09:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71019", "15", "2017-12-11 04:09:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71020", "14", "2017-12-11 04:40:36", "24.68.137.88", "2");
INSERT INTO `wp_gf_form_view` VALUES("71021", "8", "2017-12-11 05:27:09", "51.255.71.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("71022", "3", "2017-12-11 06:10:27", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71023", "9", "2017-12-11 06:10:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71024", "8", "2017-12-11 06:10:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71025", "10", "2017-12-11 06:10:29", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71026", "15", "2017-12-11 06:10:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71027", "3", "2017-12-11 08:11:40", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71028", "9", "2017-12-11 08:11:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71029", "8", "2017-12-11 08:11:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71030", "10", "2017-12-11 08:11:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71031", "15", "2017-12-11 08:11:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71032", "10", "2017-12-11 09:13:13", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71033", "8", "2017-12-11 09:15:29", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71034", "3", "2017-12-11 10:02:06", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71035", "9", "2017-12-11 10:02:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71036", "8", "2017-12-11 10:02:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71037", "10", "2017-12-11 10:02:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71038", "15", "2017-12-11 10:02:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71039", "3", "2017-12-11 11:45:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71040", "9", "2017-12-11 11:45:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71041", "8", "2017-12-11 11:45:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71042", "10", "2017-12-11 11:45:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71043", "15", "2017-12-11 11:45:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71044", "10", "2017-12-11 12:50:46", "72.14.199.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("71045", "10", "2017-12-11 13:00:21", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71046", "3", "2017-12-11 13:27:06", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71047", "9", "2017-12-11 13:27:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71048", "8", "2017-12-11 13:27:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71049", "15", "2017-12-11 13:27:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71050", "15", "2017-12-11 14:35:22", "157.55.39.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("71051", "3", "2017-12-11 15:21:35", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71052", "9", "2017-12-11 15:21:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71053", "8", "2017-12-11 15:21:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71054", "10", "2017-12-11 15:21:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71055", "15", "2017-12-11 15:21:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71056", "3", "2017-12-11 17:12:37", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71057", "9", "2017-12-11 17:12:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71058", "8", "2017-12-11 17:12:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71059", "10", "2017-12-11 17:12:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71060", "15", "2017-12-11 17:12:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71061", "3", "2017-12-11 19:11:42", "208.110.93.78", "32");
INSERT INTO `wp_gf_form_view` VALUES("71062", "9", "2017-12-11 19:21:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71063", "8", "2017-12-11 19:21:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71064", "10", "2017-12-11 19:21:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71065", "15", "2017-12-11 19:21:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71066", "3", "2017-12-11 20:23:14", "185.138.241.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("71067", "14", "2017-12-11 20:50:04", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("71068", "3", "2017-12-11 21:00:19", "185.138.241.45", "32");
INSERT INTO `wp_gf_form_view` VALUES("71069", "8", "2017-12-11 21:06:09", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("71070", "9", "2017-12-11 21:27:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71071", "10", "2017-12-11 21:27:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71072", "15", "2017-12-11 21:27:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71073", "14", "2017-12-11 21:39:09", "96.50.61.101", "2");
INSERT INTO `wp_gf_form_view` VALUES("71074", "3", "2017-12-11 23:23:27", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71075", "9", "2017-12-11 23:23:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71076", "8", "2017-12-11 23:23:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71077", "10", "2017-12-11 23:23:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71078", "15", "2017-12-11 23:23:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71079", "10", "2017-12-12 01:06:41", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("71080", "3", "2017-12-12 01:16:03", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71081", "9", "2017-12-12 01:16:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71082", "8", "2017-12-12 01:16:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71083", "15", "2017-12-12 01:16:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71084", "10", "2017-12-12 02:13:30", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71085", "3", "2017-12-12 02:47:47", "54.90.207.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("71086", "3", "2017-12-12 03:03:47", "34.229.146.143", "32");
INSERT INTO `wp_gf_form_view` VALUES("71087", "9", "2017-12-12 03:16:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71088", "8", "2017-12-12 03:16:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71089", "10", "2017-12-12 03:16:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71090", "15", "2017-12-12 03:16:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71091", "14", "2017-12-12 03:45:49", "195.154.180.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("71092", "10", "2017-12-12 04:14:15", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71093", "3", "2017-12-12 04:59:21", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71094", "9", "2017-12-12 04:59:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71095", "8", "2017-12-12 04:59:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71096", "15", "2017-12-12 04:59:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71097", "10", "2017-12-12 06:15:09", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71098", "3", "2017-12-12 06:47:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71099", "9", "2017-12-12 06:47:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71100", "8", "2017-12-12 06:47:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71101", "15", "2017-12-12 06:47:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71102", "10", "2017-12-12 07:23:14", "100.43.91.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("71103", "3", "2017-12-12 07:50:45", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("71104", "10", "2017-12-12 08:15:59", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71105", "3", "2017-12-12 08:38:09", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71106", "9", "2017-12-12 08:38:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71107", "8", "2017-12-12 08:38:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71108", "15", "2017-12-12 08:38:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71109", "3", "2017-12-12 09:15:43", "157.55.39.240", "19");
INSERT INTO `wp_gf_form_view` VALUES("71110", "10", "2017-12-12 09:17:45", "164.132.161.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("71111", "9", "2017-12-12 09:18:11", "40.77.167.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("71112", "11", "2017-12-12 09:55:02", "157.55.39.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("71113", "3", "2017-12-12 10:53:07", "34.229.146.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("71114", "3", "2017-12-12 11:05:15", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71115", "9", "2017-12-12 11:05:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71116", "8", "2017-12-12 11:05:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71117", "10", "2017-12-12 11:05:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71118", "15", "2017-12-12 11:05:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71119", "14", "2017-12-12 11:53:09", "199.195.253.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("71120", "3", "2017-12-12 12:48:52", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71121", "9", "2017-12-12 12:48:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71122", "8", "2017-12-12 12:48:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71123", "10", "2017-12-12 12:48:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71124", "15", "2017-12-12 12:48:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71125", "10", "2017-12-12 13:00:23", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71126", "3", "2017-12-12 14:11:15", "68.180.228.176", "32");
INSERT INTO `wp_gf_form_view` VALUES("71127", "9", "2017-12-12 14:40:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71128", "8", "2017-12-12 14:40:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71129", "10", "2017-12-12 14:40:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71130", "15", "2017-12-12 14:40:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71131", "10", "2017-12-12 15:26:23", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71132", "3", "2017-12-12 15:57:43", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("71133", "3", "2017-12-12 16:22:16", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71134", "9", "2017-12-12 16:22:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71135", "8", "2017-12-12 16:22:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71136", "10", "2017-12-12 16:22:19", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71137", "15", "2017-12-12 16:22:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71138", "10", "2017-12-12 17:27:14", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("71139", "3", "2017-12-12 18:35:50", "173.234.153.122", "31");
INSERT INTO `wp_gf_form_view` VALUES("71140", "9", "2017-12-12 18:47:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71141", "8", "2017-12-12 18:47:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71142", "10", "2017-12-12 18:47:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71143", "15", "2017-12-12 18:47:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71144", "10", "2017-12-12 19:28:01", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71145", "14", "2017-12-12 19:35:07", "75.157.24.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("71146", "3", "2017-12-12 20:44:12", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71147", "9", "2017-12-12 20:44:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71148", "8", "2017-12-12 20:44:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71149", "10", "2017-12-12 20:44:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71150", "15", "2017-12-12 20:44:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71151", "10", "2017-12-12 21:28:53", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71152", "3", "2017-12-12 22:44:44", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71153", "9", "2017-12-12 22:44:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71154", "8", "2017-12-12 22:44:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71155", "10", "2017-12-12 22:44:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71156", "15", "2017-12-12 22:44:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71157", "10", "2017-12-12 23:29:42", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("71158", "10", "2017-12-13 00:15:46", "199.16.157.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("71159", "3", "2017-12-13 00:48:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71160", "9", "2017-12-13 00:48:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71161", "8", "2017-12-13 00:48:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71162", "15", "2017-12-13 00:48:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71163", "10", "2017-12-13 01:12:26", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71164", "12", "2017-12-13 02:28:05", "51.255.65.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("71165", "9", "2017-12-13 02:49:04", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71166", "3", "2017-12-13 03:17:08", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71167", "9", "2017-12-13 03:17:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71168", "8", "2017-12-13 03:17:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71169", "10", "2017-12-13 03:17:10", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71170", "15", "2017-12-13 03:17:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71171", "3", "2017-12-13 05:13:29", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71172", "9", "2017-12-13 05:13:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71173", "8", "2017-12-13 05:13:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71174", "10", "2017-12-13 05:13:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71175", "15", "2017-12-13 05:13:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71176", "10", "2017-12-13 07:06:36", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71177", "3", "2017-12-13 07:13:31", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71178", "9", "2017-12-13 07:13:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71179", "8", "2017-12-13 07:13:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71180", "15", "2017-12-13 07:13:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71181", "3", "2017-12-13 08:01:24", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("71182", "10", "2017-12-13 09:07:25", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71183", "3", "2017-12-13 09:23:05", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71184", "9", "2017-12-13 09:23:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71185", "8", "2017-12-13 09:23:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71186", "15", "2017-12-13 09:23:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71187", "3", "2017-12-13 11:19:00", "66.249.79.135", "32");
INSERT INTO `wp_gf_form_view` VALUES("71188", "9", "2017-12-13 11:31:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71189", "8", "2017-12-13 11:31:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71190", "10", "2017-12-13 11:31:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71191", "15", "2017-12-13 11:31:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71192", "8", "2017-12-13 12:35:35", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71193", "3", "2017-12-13 12:55:09", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("71194", "3", "2017-12-13 13:16:52", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("71195", "9", "2017-12-13 13:16:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71196", "8", "2017-12-13 13:16:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71197", "10", "2017-12-13 13:16:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71198", "15", "2017-12-13 13:16:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71199", "3", "2017-12-13 14:45:27", "180.76.15.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("71200", "3", "2017-12-13 15:01:42", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71201", "9", "2017-12-13 15:01:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71202", "8", "2017-12-13 15:01:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71203", "10", "2017-12-13 15:01:45", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("71204", "15", "2017-12-13 15:01:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71205", "14", "2017-12-13 16:02:55", "69.58.178.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("71206", "3", "2017-12-13 16:48:43", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71207", "9", "2017-12-13 16:48:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71208", "8", "2017-12-13 16:48:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71209", "10", "2017-12-13 16:48:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71210", "15", "2017-12-13 16:48:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71211", "3", "2017-12-13 17:46:48", "68.180.228.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("71212", "10", "2017-12-13 18:20:46", "72.14.199.119", "7");
INSERT INTO `wp_gf_form_view` VALUES("71213", "3", "2017-12-13 18:29:50", "216.244.66.231", "31");
INSERT INTO `wp_gf_form_view` VALUES("71214", "9", "2017-12-13 18:37:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71215", "8", "2017-12-13 18:37:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71216", "15", "2017-12-13 18:37:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71217", "10", "2017-12-13 20:23:38", "100.43.90.200", "6");
INSERT INTO `wp_gf_form_view` VALUES("71218", "3", "2017-12-13 20:32:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71219", "9", "2017-12-13 20:32:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71220", "8", "2017-12-13 20:32:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71221", "15", "2017-12-13 20:32:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71222", "3", "2017-12-13 21:36:40", "5.9.156.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("71223", "3", "2017-12-13 22:22:20", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71224", "9", "2017-12-13 22:22:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71225", "8", "2017-12-13 22:22:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71226", "10", "2017-12-13 22:22:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71227", "15", "2017-12-13 22:22:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71228", "9", "2017-12-13 23:25:13", "217.182.132.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("71229", "3", "2017-12-14 00:12:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71230", "9", "2017-12-14 00:12:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71231", "8", "2017-12-14 00:12:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71232", "10", "2017-12-14 00:12:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71233", "15", "2017-12-14 00:12:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71234", "8", "2017-12-14 01:11:09", "176.77.2.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("71235", "3", "2017-12-14 02:02:41", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71236", "9", "2017-12-14 02:02:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71237", "8", "2017-12-14 02:02:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71238", "10", "2017-12-14 02:02:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71239", "15", "2017-12-14 02:02:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71240", "11", "2017-12-14 02:58:58", "66.249.79.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("71241", "3", "2017-12-14 03:46:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71242", "9", "2017-12-14 03:46:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71243", "8", "2017-12-14 03:46:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71244", "10", "2017-12-14 03:46:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71245", "15", "2017-12-14 03:46:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71246", "3", "2017-12-14 05:27:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71247", "9", "2017-12-14 05:27:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71248", "8", "2017-12-14 05:27:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71249", "10", "2017-12-14 05:27:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71250", "15", "2017-12-14 05:27:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71251", "3", "2017-12-14 06:12:58", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71252", "3", "2017-12-14 07:23:50", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71253", "9", "2017-12-14 07:23:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71254", "8", "2017-12-14 07:23:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71255", "10", "2017-12-14 07:23:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71256", "15", "2017-12-14 07:23:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71257", "8", "2017-12-14 08:01:16", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71258", "10", "2017-12-14 08:27:25", "72.14.199.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("71259", "3", "2017-12-14 08:36:15", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71260", "3", "2017-12-14 09:07:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71261", "9", "2017-12-14 09:07:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71262", "8", "2017-12-14 09:07:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71263", "10", "2017-12-14 09:07:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71264", "15", "2017-12-14 09:07:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71265", "8", "2017-12-14 10:27:02", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("71266", "3", "2017-12-14 10:52:39", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71267", "9", "2017-12-14 10:52:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71268", "10", "2017-12-14 10:52:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71269", "15", "2017-12-14 10:52:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71270", "3", "2017-12-14 11:02:34", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("71271", "10", "2017-12-14 12:20:16", "207.46.13.72", "6");
INSERT INTO `wp_gf_form_view` VALUES("71272", "3", "2017-12-14 12:47:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71273", "9", "2017-12-14 12:47:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71274", "8", "2017-12-14 12:47:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71275", "15", "2017-12-14 12:47:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71276", "10", "2017-12-14 13:00:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71277", "3", "2017-12-14 13:19:27", "164.132.161.54", "2");
INSERT INTO `wp_gf_form_view` VALUES("71278", "3", "2017-12-14 14:06:12", "216.244.66.231", "32");
INSERT INTO `wp_gf_form_view` VALUES("71279", "9", "2017-12-14 14:59:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71280", "8", "2017-12-14 14:59:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71281", "10", "2017-12-14 14:59:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71282", "15", "2017-12-14 14:59:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71283", "10", "2017-12-14 15:26:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71284", "3", "2017-12-14 16:05:13", "216.244.66.231", "31");
INSERT INTO `wp_gf_form_view` VALUES("71285", "9", "2017-12-14 16:53:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71286", "8", "2017-12-14 16:53:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71287", "10", "2017-12-14 16:53:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71288", "15", "2017-12-14 16:53:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71289", "3", "2017-12-14 18:42:44", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71290", "9", "2017-12-14 18:42:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71291", "8", "2017-12-14 18:42:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71292", "10", "2017-12-14 18:42:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71293", "15", "2017-12-14 18:42:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71294", "3", "2017-12-14 20:05:37", "178.203.120.211", "32");
INSERT INTO `wp_gf_form_view` VALUES("71295", "9", "2017-12-14 20:47:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71296", "8", "2017-12-14 20:47:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71297", "10", "2017-12-14 20:47:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71298", "15", "2017-12-14 20:47:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71299", "10", "2017-12-14 21:13:10", "157.55.39.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("71300", "14", "2017-12-14 22:51:22", "108.166.233.152", "3");
INSERT INTO `wp_gf_form_view` VALUES("71301", "3", "2017-12-14 22:52:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71302", "9", "2017-12-14 22:52:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71303", "8", "2017-12-14 22:52:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71304", "10", "2017-12-14 22:52:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71305", "15", "2017-12-14 22:52:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71306", "10", "2017-12-14 23:42:44", "72.14.199.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("71307", "3", "2017-12-14 23:52:04", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71308", "14", "2017-12-15 00:10:36", "24.108.203.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("71309", "3", "2017-12-15 00:41:56", "217.182.132.190", "31");
INSERT INTO `wp_gf_form_view` VALUES("71310", "9", "2017-12-15 00:44:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71311", "8", "2017-12-15 00:44:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71312", "10", "2017-12-15 00:44:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71313", "15", "2017-12-15 00:44:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71314", "3", "2017-12-15 01:17:33", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71315", "3", "2017-12-15 02:23:30", "164.132.161.41", "31");
INSERT INTO `wp_gf_form_view` VALUES("71316", "9", "2017-12-15 02:37:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71317", "8", "2017-12-15 02:37:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71318", "10", "2017-12-15 02:37:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71319", "15", "2017-12-15 02:37:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71320", "3", "2017-12-15 03:37:42", "66.249.79.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("71321", "3", "2017-12-15 04:14:01", "51.255.65.17", "34");
INSERT INTO `wp_gf_form_view` VALUES("71322", "9", "2017-12-15 04:43:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71323", "8", "2017-12-15 04:43:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71324", "10", "2017-12-15 04:43:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71325", "15", "2017-12-15 04:43:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71326", "11", "2017-12-15 04:51:50", "157.55.39.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("71327", "10", "2017-12-15 05:05:57", "157.55.39.188", "4");
INSERT INTO `wp_gf_form_view` VALUES("71328", "3", "2017-12-15 05:06:13", "157.55.39.188", "6");
INSERT INTO `wp_gf_form_view` VALUES("71329", "9", "2017-12-15 05:48:30", "157.55.39.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("71330", "10", "2017-12-15 06:41:48", "72.14.199.119", "6");
INSERT INTO `wp_gf_form_view` VALUES("71331", "3", "2017-12-15 06:42:16", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71332", "9", "2017-12-15 06:42:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71333", "8", "2017-12-15 06:42:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71334", "15", "2017-12-15 06:42:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71335", "10", "2017-12-15 07:14:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71336", "14", "2017-12-15 07:21:04", "182.253.209.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("71337", "3", "2017-12-15 08:15:53", "51.255.65.74", "31");
INSERT INTO `wp_gf_form_view` VALUES("71338", "9", "2017-12-15 08:29:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71339", "8", "2017-12-15 08:29:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71340", "10", "2017-12-15 08:29:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71341", "15", "2017-12-15 08:29:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71342", "14", "2017-12-15 09:49:34", "207.46.13.3", "1");
INSERT INTO `wp_gf_form_view` VALUES("71343", "3", "2017-12-15 09:53:41", "157.55.39.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("71344", "3", "2017-12-15 10:24:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71345", "9", "2017-12-15 10:24:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71346", "8", "2017-12-15 10:24:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71347", "10", "2017-12-15 10:24:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71348", "15", "2017-12-15 10:24:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71349", "3", "2017-12-15 12:15:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71350", "9", "2017-12-15 12:15:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71351", "8", "2017-12-15 12:15:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71352", "10", "2017-12-15 12:15:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71353", "15", "2017-12-15 12:15:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71354", "10", "2017-12-15 13:00:23", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("71355", "8", "2017-12-15 13:42:31", "184.145.143.233", "2");
INSERT INTO `wp_gf_form_view` VALUES("71356", "3", "2017-12-15 14:13:10", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("71357", "9", "2017-12-15 14:13:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71358", "8", "2017-12-15 14:13:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71359", "10", "2017-12-15 14:13:12", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71360", "15", "2017-12-15 14:13:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71361", "10", "2017-12-15 15:26:00", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71362", "3", "2017-12-15 16:03:55", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("71363", "9", "2017-12-15 16:03:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71364", "8", "2017-12-15 16:03:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71365", "10", "2017-12-15 16:03:58", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71366", "15", "2017-12-15 16:04:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71367", "3", "2017-12-15 17:58:07", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71368", "9", "2017-12-15 17:58:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71369", "8", "2017-12-15 17:58:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71370", "10", "2017-12-15 17:58:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71371", "15", "2017-12-15 17:58:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71372", "3", "2017-12-15 18:11:05", "40.77.167.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("71373", "10", "2017-12-15 19:31:56", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71374", "3", "2017-12-15 19:52:52", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71375", "9", "2017-12-15 19:52:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71376", "8", "2017-12-15 19:52:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71377", "15", "2017-12-15 19:52:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71378", "3", "2017-12-15 20:28:57", "95.91.13.61", "4");
INSERT INTO `wp_gf_form_view` VALUES("71379", "3", "2017-12-15 21:02:25", "70.67.201.51", "71");
INSERT INTO `wp_gf_form_view` VALUES("71380", "15", "2017-12-15 21:11:59", "46.229.168.73", "4");
INSERT INTO `wp_gf_form_view` VALUES("71381", "8", "2017-12-15 21:17:43", "46.229.168.80", "5");
INSERT INTO `wp_gf_form_view` VALUES("71382", "6", "2017-12-15 21:18:26", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("71383", "9", "2017-12-15 21:43:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71384", "10", "2017-12-15 21:43:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71385", "3", "2017-12-15 23:43:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71386", "9", "2017-12-15 23:43:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71387", "8", "2017-12-15 23:43:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71388", "10", "2017-12-15 23:43:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71389", "15", "2017-12-15 23:43:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71390", "3", "2017-12-16 01:34:27", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71391", "9", "2017-12-16 01:34:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71392", "8", "2017-12-16 01:34:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71393", "10", "2017-12-16 01:34:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71394", "15", "2017-12-16 01:34:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71395", "3", "2017-12-16 03:29:12", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71396", "9", "2017-12-16 03:29:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71397", "8", "2017-12-16 03:29:16", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("71398", "10", "2017-12-16 03:29:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71399", "15", "2017-12-16 03:29:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71400", "3", "2017-12-16 04:09:07", "13.58.153.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("71401", "3", "2017-12-16 05:10:54", "139.162.246.24", "31");
INSERT INTO `wp_gf_form_view` VALUES("71402", "9", "2017-12-16 05:12:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71403", "8", "2017-12-16 05:12:58", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("71404", "10", "2017-12-16 05:12:58", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71405", "15", "2017-12-16 05:13:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71406", "3", "2017-12-16 06:54:23", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71407", "9", "2017-12-16 06:54:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71408", "8", "2017-12-16 06:54:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71409", "10", "2017-12-16 06:54:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71410", "15", "2017-12-16 06:54:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71411", "15", "2017-12-16 07:00:38", "217.182.132.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("71412", "3", "2017-12-16 07:34:19", "180.76.15.9", "3");
INSERT INTO `wp_gf_form_view` VALUES("71413", "3", "2017-12-16 08:37:50", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71414", "9", "2017-12-16 08:37:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71415", "8", "2017-12-16 08:37:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71416", "10", "2017-12-16 08:37:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71417", "15", "2017-12-16 08:37:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71418", "3", "2017-12-16 09:44:53", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71419", "3", "2017-12-16 10:47:46", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71420", "9", "2017-12-16 10:47:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71421", "8", "2017-12-16 10:47:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71422", "10", "2017-12-16 10:47:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71423", "15", "2017-12-16 10:47:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71424", "3", "2017-12-16 11:35:31", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("71425", "10", "2017-12-16 11:38:29", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71426", "3", "2017-12-16 12:42:44", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71427", "9", "2017-12-16 12:42:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71428", "8", "2017-12-16 12:42:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71429", "10", "2017-12-16 12:42:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71430", "15", "2017-12-16 12:42:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71431", "10", "2017-12-16 13:00:25", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71432", "3", "2017-12-16 13:05:12", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("71433", "8", "2017-12-16 13:08:09", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71434", "3", "2017-12-16 14:29:40", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71435", "9", "2017-12-16 14:29:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71436", "8", "2017-12-16 14:29:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71437", "10", "2017-12-16 14:29:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71438", "15", "2017-12-16 14:29:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71439", "10", "2017-12-16 15:31:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71440", "3", "2017-12-16 15:36:37", "216.244.66.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("71441", "3", "2017-12-16 16:03:25", "216.244.66.231", "32");
INSERT INTO `wp_gf_form_view` VALUES("71442", "9", "2017-12-16 16:34:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71443", "8", "2017-12-16 16:34:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71444", "10", "2017-12-16 16:34:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71445", "15", "2017-12-16 16:34:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71446", "3", "2017-12-16 17:33:30", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71447", "3", "2017-12-16 18:02:31", "139.162.246.24", "51");
INSERT INTO `wp_gf_form_view` VALUES("71448", "10", "2017-12-16 18:27:05", "157.55.39.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("71449", "9", "2017-12-16 18:28:09", "157.55.39.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("71450", "8", "2017-12-16 18:29:32", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("71451", "15", "2017-12-16 18:29:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71452", "10", "2017-12-16 19:51:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71453", "3", "2017-12-16 20:19:59", "52.37.180.245", "61");
INSERT INTO `wp_gf_form_view` VALUES("71454", "9", "2017-12-16 20:20:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71455", "8", "2017-12-16 20:20:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("71456", "10", "2017-12-16 20:20:01", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("71457", "15", "2017-12-16 20:20:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71458", "3", "2017-12-16 21:06:55", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71459", "10", "2017-12-16 21:13:17", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("71460", "3", "2017-12-16 22:14:13", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71461", "9", "2017-12-16 22:14:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71462", "8", "2017-12-16 22:14:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71463", "10", "2017-12-16 22:14:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71464", "15", "2017-12-16 22:14:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71465", "3", "2017-12-16 23:06:03", "144.76.38.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("71466", "3", "2017-12-17 00:25:18", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("71467", "9", "2017-12-17 00:25:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71468", "8", "2017-12-17 00:25:20", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("71469", "10", "2017-12-17 00:25:21", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("71470", "15", "2017-12-17 00:25:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71471", "3", "2017-12-17 01:01:57", "178.63.1.153", "16");
INSERT INTO `wp_gf_form_view` VALUES("71472", "10", "2017-12-17 01:03:16", "178.63.1.153", "2");
INSERT INTO `wp_gf_form_view` VALUES("71473", "8", "2017-12-17 01:04:40", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("71474", "3", "2017-12-17 02:06:16", "157.55.39.86", "32");
INSERT INTO `wp_gf_form_view` VALUES("71475", "9", "2017-12-17 02:29:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71476", "8", "2017-12-17 02:29:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71477", "10", "2017-12-17 02:29:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71478", "15", "2017-12-17 02:29:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71479", "14", "2017-12-17 03:08:50", "24.69.8.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("71480", "3", "2017-12-17 04:04:22", "157.55.39.86", "31");
INSERT INTO `wp_gf_form_view` VALUES("71481", "9", "2017-12-17 04:09:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71482", "8", "2017-12-17 04:09:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71483", "10", "2017-12-17 04:09:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71484", "15", "2017-12-17 04:09:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71485", "10", "2017-12-17 05:36:13", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71486", "14", "2017-12-17 05:51:36", "165.231.133.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("71487", "3", "2017-12-17 05:58:25", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71488", "9", "2017-12-17 05:58:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71489", "8", "2017-12-17 05:58:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71490", "15", "2017-12-17 05:58:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71491", "3", "2017-12-17 06:48:20", "157.55.39.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("71492", "3", "2017-12-17 08:23:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71493", "9", "2017-12-17 08:23:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71494", "8", "2017-12-17 08:23:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71495", "10", "2017-12-17 08:23:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71496", "15", "2017-12-17 08:23:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71497", "11", "2017-12-17 08:50:16", "77.75.76.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("71498", "10", "2017-12-17 09:08:15", "199.16.157.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("71499", "3", "2017-12-17 10:20:48", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71500", "9", "2017-12-17 10:20:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71501", "8", "2017-12-17 10:20:49", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("71502", "10", "2017-12-17 10:20:50", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71503", "15", "2017-12-17 10:20:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71504", "3", "2017-12-17 11:07:44", "207.46.13.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("71505", "3", "2017-12-17 12:10:31", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71506", "9", "2017-12-17 12:10:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71507", "8", "2017-12-17 12:10:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71508", "10", "2017-12-17 12:10:33", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("71509", "15", "2017-12-17 12:10:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71510", "10", "2017-12-17 13:00:21", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71511", "3", "2017-12-17 13:31:40", "207.46.13.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("71512", "3", "2017-12-17 14:15:50", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71513", "9", "2017-12-17 14:15:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71514", "8", "2017-12-17 14:15:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71515", "10", "2017-12-17 14:15:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71516", "15", "2017-12-17 14:15:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71517", "10", "2017-12-17 15:26:26", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71518", "3", "2017-12-17 16:05:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71519", "9", "2017-12-17 16:05:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71520", "8", "2017-12-17 16:05:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71521", "10", "2017-12-17 16:05:32", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71522", "15", "2017-12-17 16:05:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71523", "10", "2017-12-17 17:52:55", "157.55.39.75", "6");
INSERT INTO `wp_gf_form_view` VALUES("71524", "3", "2017-12-17 17:54:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71525", "9", "2017-12-17 17:54:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71526", "8", "2017-12-17 17:54:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71527", "15", "2017-12-17 17:54:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71528", "3", "2017-12-17 18:05:25", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71529", "9", "2017-12-17 18:05:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71530", "8", "2017-12-17 18:05:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71531", "10", "2017-12-17 18:05:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71532", "15", "2017-12-17 18:05:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71533", "10", "2017-12-17 19:20:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71534", "3", "2017-12-17 20:16:01", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71535", "9", "2017-12-17 20:16:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71536", "8", "2017-12-17 20:16:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71537", "10", "2017-12-17 20:16:03", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71538", "15", "2017-12-17 20:16:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71539", "3", "2017-12-17 21:03:07", "66.249.79.137", "31");
INSERT INTO `wp_gf_form_view` VALUES("71540", "10", "2017-12-17 21:13:09", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("71541", "15", "2017-12-17 21:35:50", "66.249.79.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("71542", "9", "2017-12-17 21:59:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71543", "8", "2017-12-17 21:59:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71544", "3", "2017-12-17 22:09:16", "68.180.228.176", "6");
INSERT INTO `wp_gf_form_view` VALUES("71545", "10", "2017-12-17 22:18:34", "217.182.132.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("71546", "8", "2017-12-17 22:32:45", "70.66.152.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("71547", "10", "2017-12-17 23:08:21", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("71548", "3", "2017-12-17 23:11:00", "40.77.167.145", "32");
INSERT INTO `wp_gf_form_view` VALUES("71549", "9", "2017-12-17 23:51:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71550", "8", "2017-12-17 23:51:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71551", "15", "2017-12-17 23:51:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71552", "3", "2017-12-18 00:03:49", "164.132.162.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("71553", "10", "2017-12-18 00:28:37", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71554", "3", "2017-12-18 01:57:18", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71555", "9", "2017-12-18 01:57:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71556", "8", "2017-12-18 01:57:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71557", "10", "2017-12-18 01:57:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71558", "15", "2017-12-18 01:57:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71559", "14", "2017-12-18 03:02:00", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("71560", "10", "2017-12-18 03:45:23", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71561", "3", "2017-12-18 03:54:28", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71562", "9", "2017-12-18 03:54:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71563", "8", "2017-12-18 03:54:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71564", "15", "2017-12-18 03:54:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71565", "3", "2017-12-18 05:19:52", "88.198.67.69", "31");
INSERT INTO `wp_gf_form_view` VALUES("71566", "10", "2017-12-18 05:46:17", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71567", "9", "2017-12-18 05:46:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71568", "8", "2017-12-18 05:46:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71569", "15", "2017-12-18 05:46:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71570", "5", "2017-12-18 06:21:07", "51.255.65.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("71571", "3", "2017-12-18 07:40:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71572", "9", "2017-12-18 07:40:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71573", "8", "2017-12-18 07:40:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71574", "10", "2017-12-18 07:40:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71575", "15", "2017-12-18 07:40:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71576", "3", "2017-12-18 08:42:01", "40.77.167.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("71577", "3", "2017-12-18 09:21:42", "40.77.167.49", "31");
INSERT INTO `wp_gf_form_view` VALUES("71578", "9", "2017-12-18 09:34:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71579", "8", "2017-12-18 09:34:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71580", "10", "2017-12-18 09:34:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71581", "15", "2017-12-18 09:34:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71582", "10", "2017-12-18 10:59:49", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("71583", "3", "2017-12-18 11:29:35", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71584", "9", "2017-12-18 11:29:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71585", "8", "2017-12-18 11:29:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71586", "10", "2017-12-18 11:29:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71587", "15", "2017-12-18 11:29:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71588", "10", "2017-12-18 12:27:02", "51.255.65.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("71589", "10", "2017-12-18 13:00:20", "184.66.129.248", "11");
INSERT INTO `wp_gf_form_view` VALUES("71590", "3", "2017-12-18 13:14:53", "52.37.180.245", "61");
INSERT INTO `wp_gf_form_view` VALUES("71591", "9", "2017-12-18 13:14:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71592", "8", "2017-12-18 13:14:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("71593", "15", "2017-12-18 13:14:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71594", "10", "2017-12-18 14:04:47", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("71595", "3", "2017-12-18 15:05:49", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("71596", "9", "2017-12-18 15:05:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71597", "8", "2017-12-18 15:05:51", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("71598", "10", "2017-12-18 15:05:52", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("71599", "15", "2017-12-18 15:05:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71600", "11", "2017-12-18 15:33:10", "77.75.76.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("71601", "10", "2017-12-18 16:34:47", "199.16.157.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("71602", "3", "2017-12-18 16:51:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71603", "9", "2017-12-18 16:51:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71604", "8", "2017-12-18 16:51:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71605", "15", "2017-12-18 16:51:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71606", "10", "2017-12-18 17:27:15", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71607", "14", "2017-12-18 18:17:17", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("71608", "3", "2017-12-18 18:44:20", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71609", "9", "2017-12-18 18:44:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71610", "8", "2017-12-18 18:44:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71611", "10", "2017-12-18 18:44:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71612", "15", "2017-12-18 18:44:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71613", "10", "2017-12-18 19:28:06", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71614", "3", "2017-12-18 20:39:25", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("71615", "9", "2017-12-18 20:39:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71616", "8", "2017-12-18 20:39:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71617", "10", "2017-12-18 20:39:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71618", "15", "2017-12-18 20:39:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71619", "8", "2017-12-18 21:07:35", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("71620", "14", "2017-12-18 21:09:23", "50.92.226.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("71621", "3", "2017-12-18 21:14:20", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("71622", "10", "2017-12-18 21:28:52", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71623", "3", "2017-12-18 22:38:21", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71624", "9", "2017-12-18 22:38:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71625", "8", "2017-12-18 22:38:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71626", "10", "2017-12-18 22:38:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71627", "15", "2017-12-18 22:38:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71628", "10", "2017-12-18 23:29:46", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("71629", "3", "2017-12-19 00:15:33", "207.46.13.182", "31");
INSERT INTO `wp_gf_form_view` VALUES("71630", "9", "2017-12-19 00:32:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71631", "8", "2017-12-19 00:32:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71632", "10", "2017-12-19 00:32:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71633", "15", "2017-12-19 00:32:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71634", "3", "2017-12-19 02:16:54", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71635", "9", "2017-12-19 02:16:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71636", "8", "2017-12-19 02:16:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71637", "10", "2017-12-19 02:16:57", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71638", "15", "2017-12-19 02:17:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71639", "3", "2017-12-19 04:07:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71640", "9", "2017-12-19 04:07:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71641", "8", "2017-12-19 04:07:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71642", "10", "2017-12-19 04:07:17", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71643", "15", "2017-12-19 04:07:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71644", "3", "2017-12-19 05:16:30", "207.46.13.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("71645", "14", "2017-12-19 05:20:47", "139.130.67.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("71646", "10", "2017-12-19 05:47:45", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("71647", "3", "2017-12-19 06:05:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71648", "9", "2017-12-19 06:05:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71649", "8", "2017-12-19 06:05:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71650", "10", "2017-12-19 06:05:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71651", "15", "2017-12-19 06:05:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71652", "3", "2017-12-19 07:51:01", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71653", "9", "2017-12-19 07:51:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71654", "8", "2017-12-19 07:51:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71655", "10", "2017-12-19 07:51:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71656", "15", "2017-12-19 07:51:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71657", "10", "2017-12-19 08:02:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71658", "3", "2017-12-19 09:50:51", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71659", "9", "2017-12-19 09:50:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71660", "8", "2017-12-19 09:50:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71661", "10", "2017-12-19 09:50:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71662", "15", "2017-12-19 09:50:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71663", "3", "2017-12-19 11:36:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71664", "9", "2017-12-19 11:36:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71665", "8", "2017-12-19 11:36:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71666", "10", "2017-12-19 11:36:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71667", "15", "2017-12-19 11:36:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71668", "10", "2017-12-19 13:00:18", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71669", "3", "2017-12-19 13:16:20", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71670", "9", "2017-12-19 13:16:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71671", "8", "2017-12-19 13:16:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71672", "15", "2017-12-19 13:16:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71673", "3", "2017-12-19 15:04:09", "216.244.66.231", "47");
INSERT INTO `wp_gf_form_view` VALUES("71674", "9", "2017-12-19 15:07:20", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("71675", "8", "2017-12-19 15:07:21", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("71676", "10", "2017-12-19 15:07:21", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("71677", "15", "2017-12-19 15:07:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71678", "3", "2017-12-19 17:10:27", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71679", "9", "2017-12-19 17:10:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71680", "8", "2017-12-19 17:10:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71681", "10", "2017-12-19 17:10:30", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71682", "15", "2017-12-19 17:10:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71683", "3", "2017-12-19 18:21:57", "217.182.132.52", "31");
INSERT INTO `wp_gf_form_view` VALUES("71684", "8", "2017-12-19 18:48:57", "96.50.27.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("71685", "10", "2017-12-19 18:56:18", "72.14.199.65", "6");
INSERT INTO `wp_gf_form_view` VALUES("71686", "9", "2017-12-19 18:56:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71687", "15", "2017-12-19 18:56:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71688", "10", "2017-12-19 19:50:10", "207.46.13.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("71689", "3", "2017-12-19 19:58:32", "207.46.13.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("71690", "3", "2017-12-19 20:38:46", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71691", "9", "2017-12-19 20:38:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71692", "8", "2017-12-19 20:38:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71693", "10", "2017-12-19 20:38:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71694", "15", "2017-12-19 20:38:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71695", "3", "2017-12-19 21:42:26", "89.35.39.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("71696", "8", "2017-12-19 22:09:55", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("71697", "3", "2017-12-19 22:29:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71698", "9", "2017-12-19 22:29:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71699", "10", "2017-12-19 22:29:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71700", "15", "2017-12-19 22:29:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71701", "10", "2017-12-19 23:55:51", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71702", "3", "2017-12-20 00:09:17", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71703", "9", "2017-12-20 00:09:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71704", "8", "2017-12-20 00:09:18", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("71705", "10", "2017-12-20 00:09:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71706", "15", "2017-12-20 00:09:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71707", "10", "2017-12-20 01:53:38", "162.210.196.100", "6");
INSERT INTO `wp_gf_form_view` VALUES("71708", "3", "2017-12-20 01:54:40", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71709", "9", "2017-12-20 01:54:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71710", "8", "2017-12-20 01:54:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71711", "15", "2017-12-20 01:54:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71712", "3", "2017-12-20 03:03:47", "66.249.79.133", "61");
INSERT INTO `wp_gf_form_view` VALUES("71713", "9", "2017-12-20 03:35:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71714", "8", "2017-12-20 03:35:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71715", "10", "2017-12-20 03:35:08", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("71716", "15", "2017-12-20 03:35:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71717", "14", "2017-12-20 04:12:02", "96.50.18.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("71718", "8", "2017-12-20 04:35:41", "184.66.244.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("71719", "3", "2017-12-20 05:14:50", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("71720", "9", "2017-12-20 05:14:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71721", "8", "2017-12-20 05:14:52", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("71722", "10", "2017-12-20 05:14:52", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("71723", "15", "2017-12-20 05:14:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71724", "8", "2017-12-20 06:16:09", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("71725", "3", "2017-12-20 06:52:39", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71726", "9", "2017-12-20 06:52:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71727", "10", "2017-12-20 06:52:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71728", "15", "2017-12-20 06:52:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71729", "3", "2017-12-20 07:00:25", "164.132.161.18", "2");
INSERT INTO `wp_gf_form_view` VALUES("71730", "3", "2017-12-20 08:25:00", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("71731", "9", "2017-12-20 08:25:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71732", "8", "2017-12-20 08:25:02", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("71733", "10", "2017-12-20 08:25:02", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("71734", "15", "2017-12-20 08:25:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71735", "14", "2017-12-20 08:58:38", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("71736", "8", "2017-12-20 09:15:20", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("71737", "3", "2017-12-20 09:16:09", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("71738", "3", "2017-12-20 10:07:42", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71739", "9", "2017-12-20 10:07:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71740", "8", "2017-12-20 10:07:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71741", "10", "2017-12-20 10:07:44", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71742", "15", "2017-12-20 10:07:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71743", "9", "2017-12-20 11:26:07", "207.46.13.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("71744", "3", "2017-12-20 11:50:44", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71745", "8", "2017-12-20 11:50:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71746", "10", "2017-12-20 11:50:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71747", "15", "2017-12-20 11:50:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71748", "11", "2017-12-20 12:06:17", "77.75.76.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("71749", "8", "2017-12-20 13:23:37", "185.138.241.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("71750", "3", "2017-12-20 13:23:47", "185.138.241.45", "67");
INSERT INTO `wp_gf_form_view` VALUES("71751", "9", "2017-12-20 13:23:48", "185.138.241.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("71752", "10", "2017-12-20 13:23:49", "185.138.241.45", "10");
INSERT INTO `wp_gf_form_view` VALUES("71753", "15", "2017-12-20 13:23:51", "185.138.241.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("71754", "14", "2017-12-20 13:24:53", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("71755", "3", "2017-12-20 14:21:19", "207.46.13.182", "31");
INSERT INTO `wp_gf_form_view` VALUES("71756", "8", "2017-12-20 14:50:01", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("71757", "9", "2017-12-20 14:57:36", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("71758", "10", "2017-12-20 14:57:37", "185.138.241.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("71759", "15", "2017-12-20 14:57:39", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("71760", "3", "2017-12-20 15:01:42", "185.138.241.45", "63");
INSERT INTO `wp_gf_form_view` VALUES("71761", "9", "2017-12-20 15:05:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71762", "8", "2017-12-20 15:05:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71763", "10", "2017-12-20 15:05:47", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("71764", "15", "2017-12-20 15:05:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71765", "3", "2017-12-20 16:37:45", "139.162.246.24", "31");
INSERT INTO `wp_gf_form_view` VALUES("71766", "9", "2017-12-20 16:42:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71767", "8", "2017-12-20 16:42:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71768", "10", "2017-12-20 16:42:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71769", "15", "2017-12-20 16:42:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71770", "3", "2017-12-20 17:15:33", "46.229.168.69", "30");
INSERT INTO `wp_gf_form_view` VALUES("71771", "14", "2017-12-20 17:31:07", "46.229.168.76", "3");
INSERT INTO `wp_gf_form_view` VALUES("71772", "3", "2017-12-20 18:16:59", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71773", "9", "2017-12-20 18:17:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71774", "8", "2017-12-20 18:17:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71775", "10", "2017-12-20 18:17:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71776", "15", "2017-12-20 18:17:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71777", "3", "2017-12-20 19:01:08", "151.80.31.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("71778", "3", "2017-12-20 20:00:03", "52.37.180.245", "61");
INSERT INTO `wp_gf_form_view` VALUES("71779", "9", "2017-12-20 20:00:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71780", "8", "2017-12-20 20:00:06", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("71781", "10", "2017-12-20 20:00:06", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("71782", "15", "2017-12-20 20:00:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71783", "3", "2017-12-20 21:21:08", "151.80.31.151", "32");
INSERT INTO `wp_gf_form_view` VALUES("71784", "10", "2017-12-20 21:34:02", "72.14.199.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("71785", "9", "2017-12-20 21:41:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71786", "8", "2017-12-20 21:41:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71787", "15", "2017-12-20 21:41:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71788", "3", "2017-12-20 22:10:39", "66.249.79.135", "2");
INSERT INTO `wp_gf_form_view` VALUES("71789", "8", "2017-12-20 22:38:02", "96.50.5.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("71790", "3", "2017-12-20 23:19:28", "68.180.228.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("71791", "9", "2017-12-20 23:38:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71792", "8", "2017-12-20 23:38:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71793", "10", "2017-12-20 23:38:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71794", "15", "2017-12-20 23:38:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71795", "18", "2017-12-20 23:38:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71796", "14", "2017-12-20 23:44:45", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("71797", "10", "2017-12-21 00:12:38", "207.46.13.14", "2");
INSERT INTO `wp_gf_form_view` VALUES("71798", "3", "2017-12-21 01:25:34", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("71799", "9", "2017-12-21 01:25:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71800", "8", "2017-12-21 01:25:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71801", "10", "2017-12-21 01:25:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71802", "15", "2017-12-21 01:25:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71803", "18", "2017-12-21 01:25:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71804", "3", "2017-12-21 02:02:47", "185.138.241.45", "20");
INSERT INTO `wp_gf_form_view` VALUES("71805", "10", "2017-12-21 02:04:40", "185.138.241.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("71806", "8", "2017-12-21 02:18:33", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("71807", "18", "2017-12-21 02:20:21", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("71808", "3", "2017-12-21 03:00:33", "185.138.241.45", "47");
INSERT INTO `wp_gf_form_view` VALUES("71809", "9", "2017-12-21 03:10:39", "185.138.241.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("71810", "6", "2017-12-21 03:12:10", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("71811", "8", "2017-12-21 03:13:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71812", "10", "2017-12-21 03:13:10", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71813", "15", "2017-12-21 03:13:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71814", "18", "2017-12-21 03:13:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71815", "3", "2017-12-21 04:51:04", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71816", "9", "2017-12-21 04:51:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71817", "8", "2017-12-21 04:51:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71818", "10", "2017-12-21 04:51:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71819", "15", "2017-12-21 04:51:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71820", "18", "2017-12-21 04:51:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71821", "14", "2017-12-21 05:54:00", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("71822", "3", "2017-12-21 06:39:26", "216.244.66.231", "31");
INSERT INTO `wp_gf_form_view` VALUES("71823", "9", "2017-12-21 06:47:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71824", "8", "2017-12-21 06:47:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71825", "10", "2017-12-21 06:47:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71826", "15", "2017-12-21 06:47:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71827", "18", "2017-12-21 06:47:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71828", "3", "2017-12-21 07:56:53", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("71829", "3", "2017-12-21 08:37:04", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71830", "9", "2017-12-21 08:37:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71831", "8", "2017-12-21 08:37:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71832", "10", "2017-12-21 08:37:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71833", "15", "2017-12-21 08:37:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71834", "18", "2017-12-21 08:37:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71835", "3", "2017-12-21 10:17:30", "164.132.161.92", "37");
INSERT INTO `wp_gf_form_view` VALUES("71836", "18", "2017-12-21 10:25:05", "77.75.76.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("71837", "9", "2017-12-21 10:47:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71838", "8", "2017-12-21 10:47:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71839", "10", "2017-12-21 10:47:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71840", "15", "2017-12-21 10:47:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71841", "3", "2017-12-21 11:12:17", "157.55.39.84", "16");
INSERT INTO `wp_gf_form_view` VALUES("71842", "10", "2017-12-21 11:13:33", "207.46.13.14", "4");
INSERT INTO `wp_gf_form_view` VALUES("71843", "9", "2017-12-21 11:13:42", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("71844", "18", "2017-12-21 11:55:59", "180.76.15.152", "1");
INSERT INTO `wp_gf_form_view` VALUES("71845", "3", "2017-12-21 12:21:54", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71846", "9", "2017-12-21 12:21:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71847", "8", "2017-12-21 12:21:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71848", "10", "2017-12-21 12:21:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71849", "15", "2017-12-21 12:21:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71850", "18", "2017-12-21 12:22:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71851", "10", "2017-12-21 13:00:21", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("71852", "3", "2017-12-21 13:56:38", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71853", "9", "2017-12-21 13:56:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71854", "8", "2017-12-21 13:56:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71855", "15", "2017-12-21 13:56:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71856", "18", "2017-12-21 13:56:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71857", "10", "2017-12-21 15:26:25", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71858", "3", "2017-12-21 15:32:48", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71859", "9", "2017-12-21 15:32:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71860", "8", "2017-12-21 15:32:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71861", "15", "2017-12-21 15:32:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71862", "18", "2017-12-21 15:32:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71863", "18", "2017-12-21 16:07:55", "138.197.64.72", "1");
INSERT INTO `wp_gf_form_view` VALUES("71864", "3", "2017-12-21 17:17:47", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71865", "9", "2017-12-21 17:17:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71866", "8", "2017-12-21 17:17:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71867", "10", "2017-12-21 17:17:49", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71868", "15", "2017-12-21 17:17:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71869", "18", "2017-12-21 17:17:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71870", "10", "2017-12-21 18:49:20", "199.16.157.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("71871", "3", "2017-12-21 18:57:19", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71872", "9", "2017-12-21 18:57:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71873", "8", "2017-12-21 18:57:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71874", "15", "2017-12-21 18:57:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71875", "18", "2017-12-21 18:57:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71876", "3", "2017-12-21 19:03:51", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("71877", "3", "2017-12-21 20:14:53", "194.187.170.119", "31");
INSERT INTO `wp_gf_form_view` VALUES("71878", "10", "2017-12-21 20:28:07", "51.255.71.98", "6");
INSERT INTO `wp_gf_form_view` VALUES("71879", "9", "2017-12-21 20:38:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71880", "8", "2017-12-21 20:38:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71881", "15", "2017-12-21 20:38:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71882", "18", "2017-12-21 20:38:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71883", "3", "2017-12-21 21:27:49", "194.187.170.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("71884", "3", "2017-12-21 22:22:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71885", "9", "2017-12-21 22:22:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71886", "8", "2017-12-21 22:22:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71887", "10", "2017-12-21 22:22:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71888", "15", "2017-12-21 22:22:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71889", "18", "2017-12-21 22:22:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71890", "10", "2017-12-21 23:29:50", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71891", "3", "2017-12-22 00:02:57", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71892", "9", "2017-12-22 00:02:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71893", "8", "2017-12-22 00:02:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71894", "10", "2017-12-22 00:03:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71895", "15", "2017-12-22 00:03:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71896", "18", "2017-12-22 00:03:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71897", "18", "2017-12-22 01:14:18", "92.221.165.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("71898", "3", "2017-12-22 01:16:16", "92.221.165.181", "30");
INSERT INTO `wp_gf_form_view` VALUES("71899", "9", "2017-12-22 01:42:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71900", "8", "2017-12-22 01:42:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71901", "10", "2017-12-22 01:42:36", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71902", "15", "2017-12-22 01:42:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71903", "14", "2017-12-22 01:56:33", "77.75.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("71904", "3", "2017-12-22 03:22:13", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71905", "9", "2017-12-22 03:22:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71906", "8", "2017-12-22 03:22:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71907", "10", "2017-12-22 03:22:16", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71908", "15", "2017-12-22 03:22:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71909", "18", "2017-12-22 03:22:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71910", "10", "2017-12-22 04:34:45", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71911", "3", "2017-12-22 05:01:30", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71912", "9", "2017-12-22 05:01:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71913", "8", "2017-12-22 05:01:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71914", "10", "2017-12-22 05:01:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71915", "15", "2017-12-22 05:01:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71916", "18", "2017-12-22 05:01:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71917", "11", "2017-12-22 05:50:02", "77.75.79.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("71918", "3", "2017-12-22 06:41:18", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71919", "9", "2017-12-22 06:41:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71920", "8", "2017-12-22 06:41:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71921", "10", "2017-12-22 06:41:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71922", "15", "2017-12-22 06:41:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71923", "18", "2017-12-22 06:41:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71924", "10", "2017-12-22 07:41:50", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("71925", "3", "2017-12-22 08:10:05", "82.80.249.137", "233");
INSERT INTO `wp_gf_form_view` VALUES("71926", "18", "2017-12-22 08:10:36", "82.80.249.137", "61");
INSERT INTO `wp_gf_form_view` VALUES("71927", "14", "2017-12-22 08:11:30", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("71928", "8", "2017-12-22 08:12:18", "82.80.249.137", "18");
INSERT INTO `wp_gf_form_view` VALUES("71929", "9", "2017-12-22 08:19:32", "82.80.249.137", "8");
INSERT INTO `wp_gf_form_view` VALUES("71930", "10", "2017-12-22 08:19:37", "82.80.249.137", "26");
INSERT INTO `wp_gf_form_view` VALUES("71931", "15", "2017-12-22 08:19:47", "82.80.249.137", "5");
INSERT INTO `wp_gf_form_view` VALUES("71932", "6", "2017-12-22 08:25:37", "82.80.249.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("71933", "3", "2017-12-22 10:12:24", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71934", "9", "2017-12-22 10:12:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71935", "8", "2017-12-22 10:12:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71936", "10", "2017-12-22 10:12:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71937", "15", "2017-12-22 10:12:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71938", "18", "2017-12-22 10:12:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71939", "3", "2017-12-22 11:51:17", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71940", "9", "2017-12-22 11:51:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71941", "8", "2017-12-22 11:51:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71942", "10", "2017-12-22 11:51:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71943", "15", "2017-12-22 11:51:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71944", "18", "2017-12-22 11:51:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71945", "10", "2017-12-22 13:00:22", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("71946", "3", "2017-12-22 13:06:10", "194.187.170.118", "31");
INSERT INTO `wp_gf_form_view` VALUES("71947", "9", "2017-12-22 13:26:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71948", "8", "2017-12-22 13:26:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71949", "15", "2017-12-22 13:26:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71950", "18", "2017-12-22 13:26:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71951", "3", "2017-12-22 15:16:49", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("71952", "9", "2017-12-22 15:16:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71953", "8", "2017-12-22 15:16:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71954", "10", "2017-12-22 15:16:52", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71955", "15", "2017-12-22 15:16:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71956", "18", "2017-12-22 15:16:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71957", "14", "2017-12-22 15:47:47", "107.174.5.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("71958", "3", "2017-12-22 17:14:00", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71959", "9", "2017-12-22 17:14:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71960", "8", "2017-12-22 17:14:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71961", "10", "2017-12-22 17:14:02", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("71962", "15", "2017-12-22 17:14:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71963", "18", "2017-12-22 17:14:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71964", "3", "2017-12-22 18:56:00", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71965", "9", "2017-12-22 18:56:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71966", "8", "2017-12-22 18:56:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71967", "10", "2017-12-22 18:56:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71968", "15", "2017-12-22 18:56:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71969", "18", "2017-12-22 18:56:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71970", "10", "2017-12-22 19:14:04", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("71971", "18", "2017-12-22 19:49:49", "194.187.170.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("71972", "3", "2017-12-22 20:20:49", "207.46.13.182", "30");
INSERT INTO `wp_gf_form_view` VALUES("71973", "9", "2017-12-22 20:31:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71974", "8", "2017-12-22 20:31:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71975", "10", "2017-12-22 20:31:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71976", "15", "2017-12-22 20:31:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71977", "18", "2017-12-22 20:31:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71978", "10", "2017-12-22 21:28:11", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("71979", "3", "2017-12-22 21:35:41", "91.121.211.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("71980", "3", "2017-12-22 22:17:00", "157.55.39.84", "30");
INSERT INTO `wp_gf_form_view` VALUES("71981", "9", "2017-12-22 22:22:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71982", "8", "2017-12-22 22:22:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71983", "10", "2017-12-22 22:22:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71984", "15", "2017-12-22 22:22:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71985", "18", "2017-12-22 22:22:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71986", "3", "2017-12-23 00:07:50", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71987", "9", "2017-12-23 00:07:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71988", "8", "2017-12-23 00:07:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71989", "10", "2017-12-23 00:07:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71990", "15", "2017-12-23 00:07:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71991", "18", "2017-12-23 00:07:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71992", "3", "2017-12-23 01:43:13", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("71993", "9", "2017-12-23 01:43:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71994", "8", "2017-12-23 01:43:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("71995", "10", "2017-12-23 01:43:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("71996", "15", "2017-12-23 01:43:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71997", "18", "2017-12-23 01:43:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("71998", "3", "2017-12-23 03:20:47", "66.249.79.135", "30");
INSERT INTO `wp_gf_form_view` VALUES("71999", "9", "2017-12-23 03:22:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72000", "8", "2017-12-23 03:22:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72001", "10", "2017-12-23 03:22:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72002", "15", "2017-12-23 03:22:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72003", "18", "2017-12-23 03:23:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72004", "3", "2017-12-23 05:02:54", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72005", "9", "2017-12-23 05:02:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72006", "8", "2017-12-23 05:02:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72007", "10", "2017-12-23 05:02:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72008", "15", "2017-12-23 05:02:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72009", "18", "2017-12-23 05:03:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72010", "3", "2017-12-23 06:52:24", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72011", "9", "2017-12-23 06:52:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72012", "8", "2017-12-23 06:52:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72013", "10", "2017-12-23 06:52:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72014", "15", "2017-12-23 06:52:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72015", "18", "2017-12-23 06:52:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72016", "10", "2017-12-23 07:22:20", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("72017", "3", "2017-12-23 08:36:05", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72018", "9", "2017-12-23 08:36:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72019", "8", "2017-12-23 08:36:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72020", "10", "2017-12-23 08:36:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72021", "15", "2017-12-23 08:36:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72022", "18", "2017-12-23 08:36:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72023", "3", "2017-12-23 10:23:06", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72024", "9", "2017-12-23 10:23:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72025", "8", "2017-12-23 10:23:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72026", "10", "2017-12-23 10:23:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72027", "15", "2017-12-23 10:23:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72028", "18", "2017-12-23 10:23:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72029", "3", "2017-12-23 12:03:28", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72030", "9", "2017-12-23 12:03:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72031", "8", "2017-12-23 12:03:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72032", "10", "2017-12-23 12:03:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72033", "15", "2017-12-23 12:03:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72034", "18", "2017-12-23 12:03:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72035", "10", "2017-12-23 13:00:24", "184.66.129.248", "16");
INSERT INTO `wp_gf_form_view` VALUES("72036", "3", "2017-12-23 13:26:59", "207.46.13.182", "50");
INSERT INTO `wp_gf_form_view` VALUES("72037", "15", "2017-12-23 13:27:01", "40.77.167.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("72038", "6", "2017-12-23 13:31:35", "40.77.167.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("72039", "8", "2017-12-23 13:31:43", "207.46.13.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("72040", "9", "2017-12-23 13:31:57", "207.46.13.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("72041", "18", "2017-12-23 13:52:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72042", "10", "2017-12-23 15:26:23", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72043", "3", "2017-12-23 15:37:17", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72044", "9", "2017-12-23 15:37:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72045", "8", "2017-12-23 15:37:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72046", "15", "2017-12-23 15:37:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72047", "18", "2017-12-23 15:37:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72048", "3", "2017-12-23 17:13:41", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72049", "9", "2017-12-23 17:13:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72050", "8", "2017-12-23 17:13:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72051", "10", "2017-12-23 17:13:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72052", "15", "2017-12-23 17:13:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72053", "18", "2017-12-23 17:13:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72054", "10", "2017-12-23 18:03:16", "194.187.170.136", "8");
INSERT INTO `wp_gf_form_view` VALUES("72055", "3", "2017-12-23 18:54:42", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72056", "9", "2017-12-23 18:54:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72057", "8", "2017-12-23 18:54:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72058", "15", "2017-12-23 18:54:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72059", "18", "2017-12-23 18:54:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72060", "18", "2017-12-23 19:00:05", "194.187.170.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("72061", "10", "2017-12-23 19:07:30", "194.187.170.136", "4");
INSERT INTO `wp_gf_form_view` VALUES("72062", "3", "2017-12-23 19:12:50", "194.187.170.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("72063", "14", "2017-12-23 20:09:30", "158.222.11.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("72064", "3", "2017-12-23 20:33:19", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72065", "9", "2017-12-23 20:33:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72066", "8", "2017-12-23 20:33:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72067", "10", "2017-12-23 20:33:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72068", "15", "2017-12-23 20:33:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72069", "18", "2017-12-23 20:33:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72070", "3", "2017-12-23 22:19:28", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72071", "9", "2017-12-23 22:19:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72072", "8", "2017-12-23 22:19:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72073", "10", "2017-12-23 22:19:31", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72074", "15", "2017-12-23 22:19:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72075", "18", "2017-12-23 22:19:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72076", "10", "2017-12-23 23:01:45", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("72077", "3", "2017-12-23 23:05:42", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("72078", "3", "2017-12-24 00:10:30", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72079", "9", "2017-12-24 00:10:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72080", "8", "2017-12-24 00:10:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72081", "10", "2017-12-24 00:10:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72082", "15", "2017-12-24 00:10:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72083", "18", "2017-12-24 00:10:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72084", "6", "2017-12-24 00:15:52", "5.9.112.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("72085", "3", "2017-12-24 01:45:54", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72086", "9", "2017-12-24 01:45:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72087", "8", "2017-12-24 01:45:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72088", "10", "2017-12-24 01:45:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72089", "15", "2017-12-24 01:45:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72090", "18", "2017-12-24 01:46:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72091", "3", "2017-12-24 02:41:26", "80.241.214.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("72092", "14", "2017-12-24 03:10:20", "155.94.176.234", "3");
INSERT INTO `wp_gf_form_view` VALUES("72093", "3", "2017-12-24 03:25:25", "5.9.80.133", "30");
INSERT INTO `wp_gf_form_view` VALUES("72094", "9", "2017-12-24 03:25:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72095", "8", "2017-12-24 03:25:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72096", "10", "2017-12-24 03:25:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72097", "15", "2017-12-24 03:25:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72098", "18", "2017-12-24 03:25:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72099", "3", "2017-12-24 04:11:10", "207.46.13.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("72100", "3", "2017-12-24 05:06:13", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72101", "9", "2017-12-24 05:06:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72102", "8", "2017-12-24 05:06:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72103", "10", "2017-12-24 05:06:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72104", "15", "2017-12-24 05:06:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72105", "18", "2017-12-24 05:06:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72106", "3", "2017-12-24 06:48:00", "194.187.170.145", "31");
INSERT INTO `wp_gf_form_view` VALUES("72107", "9", "2017-12-24 06:50:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72108", "8", "2017-12-24 06:50:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72109", "10", "2017-12-24 06:50:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72110", "15", "2017-12-24 06:51:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72111", "18", "2017-12-24 06:51:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72112", "11", "2017-12-24 08:21:39", "194.187.170.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("72113", "3", "2017-12-24 08:38:23", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72114", "9", "2017-12-24 08:38:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72115", "8", "2017-12-24 08:38:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72116", "10", "2017-12-24 08:38:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72117", "15", "2017-12-24 08:38:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72118", "18", "2017-12-24 08:38:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72119", "3", "2017-12-24 09:23:14", "51.255.71.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("72120", "3", "2017-12-24 10:15:00", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("72121", "9", "2017-12-24 10:15:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72122", "8", "2017-12-24 10:15:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("72123", "10", "2017-12-24 10:15:02", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("72124", "15", "2017-12-24 10:15:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72125", "18", "2017-12-24 10:15:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72126", "3", "2017-12-24 11:55:20", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72127", "9", "2017-12-24 11:55:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72128", "8", "2017-12-24 11:55:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72129", "10", "2017-12-24 11:55:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72130", "15", "2017-12-24 11:55:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72131", "18", "2017-12-24 11:55:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72132", "3", "2017-12-24 12:04:54", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("72133", "10", "2017-12-24 12:28:59", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("72134", "10", "2017-12-24 13:00:19", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72135", "3", "2017-12-24 13:34:40", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72136", "9", "2017-12-24 13:34:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72137", "8", "2017-12-24 13:34:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72138", "15", "2017-12-24 13:34:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72139", "18", "2017-12-24 13:34:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72140", "14", "2017-12-24 13:37:42", "77.75.76.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("72141", "3", "2017-12-24 15:22:21", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72142", "9", "2017-12-24 15:22:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72143", "8", "2017-12-24 15:22:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72144", "10", "2017-12-24 15:22:23", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72145", "15", "2017-12-24 15:22:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72146", "18", "2017-12-24 15:22:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72147", "18", "2017-12-24 16:04:25", "194.187.170.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("72148", "10", "2017-12-24 16:12:11", "194.187.170.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("72149", "3", "2017-12-24 16:27:18", "96.54.225.178", "31");
INSERT INTO `wp_gf_form_view` VALUES("72150", "9", "2017-12-24 16:54:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72151", "8", "2017-12-24 16:54:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72152", "15", "2017-12-24 16:54:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72153", "3", "2017-12-24 17:01:20", "194.187.170.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("72154", "5", "2017-12-24 18:11:09", "194.187.170.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("72155", "3", "2017-12-24 18:40:53", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72156", "9", "2017-12-24 18:40:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72157", "8", "2017-12-24 18:40:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72158", "10", "2017-12-24 18:40:55", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("72159", "15", "2017-12-24 18:40:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72160", "18", "2017-12-24 18:40:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72161", "3", "2017-12-24 20:24:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72162", "9", "2017-12-24 20:24:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72163", "8", "2017-12-24 20:24:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72164", "10", "2017-12-24 20:24:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72165", "15", "2017-12-24 20:24:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72166", "18", "2017-12-24 20:24:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72167", "10", "2017-12-24 21:36:16", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72168", "3", "2017-12-24 21:58:39", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72169", "9", "2017-12-24 21:58:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72170", "8", "2017-12-24 21:58:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72171", "15", "2017-12-24 21:58:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72172", "18", "2017-12-24 21:58:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72173", "3", "2017-12-24 23:34:07", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72174", "9", "2017-12-24 23:34:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72175", "8", "2017-12-24 23:34:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72176", "10", "2017-12-24 23:34:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72177", "15", "2017-12-24 23:34:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72178", "18", "2017-12-24 23:34:13", "52.37.180.245", "9");
INSERT INTO `wp_gf_form_view` VALUES("72179", "18", "2017-12-25 00:00:01", "104.236.95.195", "66");
INSERT INTO `wp_gf_form_view` VALUES("72180", "14", "2017-12-25 00:00:20", "104.236.95.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("72181", "6", "2017-12-25 00:01:19", "104.236.95.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("72182", "3", "2017-12-25 00:03:05", "104.236.95.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("72183", "10", "2017-12-25 00:04:28", "104.236.95.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("72184", "9", "2017-12-25 00:09:03", "104.236.95.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("72185", "15", "2017-12-25 00:11:35", "104.236.95.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("72186", "8", "2017-12-25 00:41:17", "104.236.95.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("72187", "18", "2017-12-25 01:00:18", "104.236.95.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("72188", "3", "2017-12-25 01:14:28", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72189", "9", "2017-12-25 01:14:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72190", "8", "2017-12-25 01:14:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72191", "10", "2017-12-25 01:14:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72192", "15", "2017-12-25 01:14:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72193", "14", "2017-12-25 01:28:07", "185.124.84.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("72194", "10", "2017-12-25 02:11:22", "72.14.199.69", "5");
INSERT INTO `wp_gf_form_view` VALUES("72195", "3", "2017-12-25 02:28:13", "144.76.115.190", "11");
INSERT INTO `wp_gf_form_view` VALUES("72196", "3", "2017-12-25 03:14:17", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72197", "9", "2017-12-25 03:14:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72198", "8", "2017-12-25 03:14:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72199", "10", "2017-12-25 03:14:20", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72200", "15", "2017-12-25 03:14:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72201", "18", "2017-12-25 03:14:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72202", "3", "2017-12-25 04:59:24", "194.187.170.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("72203", "3", "2017-12-25 05:17:53", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72204", "9", "2017-12-25 05:17:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72205", "8", "2017-12-25 05:17:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72206", "10", "2017-12-25 05:17:55", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72207", "15", "2017-12-25 05:17:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72208", "18", "2017-12-25 05:17:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72209", "3", "2017-12-25 06:28:22", "194.187.170.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("72210", "3", "2017-12-25 07:11:30", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("72211", "9", "2017-12-25 07:11:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72212", "8", "2017-12-25 07:11:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72213", "10", "2017-12-25 07:11:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72214", "15", "2017-12-25 07:11:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72215", "18", "2017-12-25 07:11:36", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("72216", "3", "2017-12-25 08:57:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72217", "9", "2017-12-25 08:57:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72218", "8", "2017-12-25 08:57:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72219", "10", "2017-12-25 08:57:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72220", "15", "2017-12-25 08:57:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72221", "18", "2017-12-25 08:57:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72222", "3", "2017-12-25 10:35:44", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72223", "9", "2017-12-25 10:35:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72224", "8", "2017-12-25 10:35:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72225", "10", "2017-12-25 10:35:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72226", "15", "2017-12-25 10:35:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72227", "18", "2017-12-25 10:35:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72228", "10", "2017-12-25 11:57:51", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72229", "10", "2017-12-25 12:03:09", "46.229.168.79", "11");
INSERT INTO `wp_gf_form_view` VALUES("72230", "3", "2017-12-25 12:03:31", "46.229.168.79", "80");
INSERT INTO `wp_gf_form_view` VALUES("72231", "14", "2017-12-25 12:05:08", "46.229.168.69", "4");
INSERT INTO `wp_gf_form_view` VALUES("72232", "18", "2017-12-25 12:07:25", "46.229.168.68", "7");
INSERT INTO `wp_gf_form_view` VALUES("72233", "8", "2017-12-25 12:09:24", "46.229.168.65", "8");
INSERT INTO `wp_gf_form_view` VALUES("72234", "11", "2017-12-25 12:16:51", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("72235", "9", "2017-12-25 12:28:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72236", "15", "2017-12-25 12:28:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72237", "6", "2017-12-25 12:30:10", "46.229.168.73", "3");
INSERT INTO `wp_gf_form_view` VALUES("72238", "10", "2017-12-25 13:00:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72239", "18", "2017-12-25 13:25:34", "77.75.79.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("72240", "3", "2017-12-25 14:17:12", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72241", "9", "2017-12-25 14:17:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72242", "8", "2017-12-25 14:17:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72243", "10", "2017-12-25 14:17:14", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72244", "15", "2017-12-25 14:17:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72245", "18", "2017-12-25 14:17:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72246", "10", "2017-12-25 15:26:24", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("72247", "3", "2017-12-25 16:01:20", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72248", "9", "2017-12-25 16:01:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72249", "8", "2017-12-25 16:01:22", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("72250", "10", "2017-12-25 16:01:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72251", "15", "2017-12-25 16:01:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72252", "18", "2017-12-25 16:01:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72253", "3", "2017-12-25 17:46:54", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72254", "9", "2017-12-25 17:46:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72255", "8", "2017-12-25 17:46:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72256", "10", "2017-12-25 17:46:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72257", "15", "2017-12-25 17:46:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72258", "18", "2017-12-25 17:47:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72259", "3", "2017-12-25 19:48:35", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72260", "9", "2017-12-25 19:48:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72261", "8", "2017-12-25 19:48:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72262", "10", "2017-12-25 19:48:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72263", "15", "2017-12-25 19:48:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72264", "18", "2017-12-25 19:48:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72265", "10", "2017-12-25 20:45:35", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("72266", "3", "2017-12-25 21:34:14", "144.76.115.190", "30");
INSERT INTO `wp_gf_form_view` VALUES("72267", "9", "2017-12-25 21:37:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72268", "8", "2017-12-25 21:37:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72269", "10", "2017-12-25 21:37:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72270", "15", "2017-12-25 21:37:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72271", "18", "2017-12-25 21:37:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72272", "10", "2017-12-25 22:12:28", "54.36.148.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("72273", "3", "2017-12-25 23:16:45", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72274", "9", "2017-12-25 23:16:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72275", "8", "2017-12-25 23:16:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72276", "10", "2017-12-25 23:16:48", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72277", "15", "2017-12-25 23:16:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72278", "18", "2017-12-25 23:16:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("72279", "3", "2017-12-26 01:42:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72280", "9", "2017-12-26 01:42:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72281", "8", "2017-12-26 01:42:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72282", "10", "2017-12-26 01:42:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72283", "15", "2017-12-26 01:42:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72284", "18", "2017-12-26 01:42:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72285", "3", "2017-12-26 03:32:26", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72286", "9", "2017-12-26 03:32:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72287", "8", "2017-12-26 03:32:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72288", "10", "2017-12-26 03:32:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72289", "15", "2017-12-26 03:32:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72290", "18", "2017-12-26 03:32:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72291", "10", "2017-12-26 04:08:49", "194.187.170.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("72292", "3", "2017-12-26 05:11:51", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72293", "9", "2017-12-26 05:11:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72294", "8", "2017-12-26 05:11:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72295", "10", "2017-12-26 05:11:53", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72296", "15", "2017-12-26 05:11:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72297", "18", "2017-12-26 05:11:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72298", "10", "2017-12-26 06:22:23", "54.36.149.79", "6");
INSERT INTO `wp_gf_form_view` VALUES("72299", "18", "2017-12-26 06:29:43", "54.36.149.86", "2");
INSERT INTO `wp_gf_form_view` VALUES("72300", "3", "2017-12-26 06:51:54", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72301", "9", "2017-12-26 06:51:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72302", "8", "2017-12-26 06:51:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72303", "15", "2017-12-26 06:51:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72304", "10", "2017-12-26 07:05:23", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72305", "3", "2017-12-26 08:14:13", "68.180.228.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("72306", "18", "2017-12-26 08:15:43", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("72307", "9", "2017-12-26 08:41:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72308", "8", "2017-12-26 08:41:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72309", "10", "2017-12-26 08:41:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72310", "15", "2017-12-26 08:41:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72311", "3", "2017-12-26 10:16:57", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72312", "9", "2017-12-26 10:16:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72313", "8", "2017-12-26 10:16:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72314", "10", "2017-12-26 10:17:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72315", "15", "2017-12-26 10:17:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72316", "18", "2017-12-26 10:17:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72317", "14", "2017-12-26 10:36:53", "77.75.78.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("72318", "18", "2017-12-26 11:25:41", "40.77.167.82", "2");
INSERT INTO `wp_gf_form_view` VALUES("72319", "3", "2017-12-26 11:57:40", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72320", "9", "2017-12-26 11:57:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72321", "8", "2017-12-26 11:57:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72322", "10", "2017-12-26 11:57:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72323", "15", "2017-12-26 11:57:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72324", "10", "2017-12-26 13:00:23", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72325", "3", "2017-12-26 13:37:01", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72326", "9", "2017-12-26 13:37:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72327", "8", "2017-12-26 13:37:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72328", "15", "2017-12-26 13:37:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72329", "18", "2017-12-26 13:37:20", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("72330", "10", "2017-12-26 15:26:20", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72331", "3", "2017-12-26 15:27:07", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72332", "9", "2017-12-26 15:27:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72333", "8", "2017-12-26 15:27:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72334", "15", "2017-12-26 15:27:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72335", "18", "2017-12-26 15:27:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72336", "3", "2017-12-26 17:17:24", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72337", "9", "2017-12-26 17:17:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72338", "8", "2017-12-26 17:17:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72339", "10", "2017-12-26 17:17:27", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72340", "15", "2017-12-26 17:17:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72341", "18", "2017-12-26 17:17:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72342", "10", "2017-12-26 18:18:25", "66.249.91.205", "6");
INSERT INTO `wp_gf_form_view` VALUES("72343", "3", "2017-12-26 18:22:07", "68.180.228.176", "30");
INSERT INTO `wp_gf_form_view` VALUES("72344", "9", "2017-12-26 18:57:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72345", "8", "2017-12-26 18:57:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72346", "15", "2017-12-26 18:57:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72347", "18", "2017-12-26 18:57:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72348", "10", "2017-12-26 19:04:36", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72349", "3", "2017-12-26 20:33:24", "104.196.28.123", "31");
INSERT INTO `wp_gf_form_view` VALUES("72350", "18", "2017-12-26 20:35:03", "104.196.28.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("72351", "9", "2017-12-26 20:40:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72352", "8", "2017-12-26 20:40:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72353", "10", "2017-12-26 20:40:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72354", "15", "2017-12-26 20:40:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72355", "3", "2017-12-26 21:25:04", "104.196.183.13", "6");
INSERT INTO `wp_gf_form_view` VALUES("72356", "14", "2017-12-26 21:26:05", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("72357", "8", "2017-12-26 21:29:27", "104.196.183.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("72358", "10", "2017-12-26 22:16:41", "54.36.149.52", "7");
INSERT INTO `wp_gf_form_view` VALUES("72359", "3", "2017-12-26 22:28:48", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("72360", "9", "2017-12-26 22:28:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72361", "8", "2017-12-26 22:28:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72362", "15", "2017-12-26 22:28:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72363", "18", "2017-12-26 22:28:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72364", "14", "2017-12-26 22:57:54", "104.196.217.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("72365", "3", "2017-12-26 23:00:26", "104.196.217.246", "23");
INSERT INTO `wp_gf_form_view` VALUES("72366", "10", "2017-12-26 23:45:33", "157.55.39.216", "9");
INSERT INTO `wp_gf_form_view` VALUES("72367", "9", "2017-12-26 23:45:37", "157.55.39.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("72368", "11", "2017-12-26 23:45:49", "157.55.39.216", "1");
INSERT INTO `wp_gf_form_view` VALUES("72369", "8", "2017-12-26 23:47:59", "157.55.39.216", "2");
INSERT INTO `wp_gf_form_view` VALUES("72370", "3", "2017-12-27 00:03:38", "104.196.186.134", "50");
INSERT INTO `wp_gf_form_view` VALUES("72371", "8", "2017-12-27 00:03:57", "104.196.186.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("72372", "9", "2017-12-27 00:04:38", "104.196.186.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("72373", "6", "2017-12-27 00:05:45", "104.196.186.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("72374", "10", "2017-12-27 00:31:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72375", "15", "2017-12-27 00:31:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72376", "18", "2017-12-27 00:31:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72377", "3", "2017-12-27 02:16:28", "104.196.59.73", "42");
INSERT INTO `wp_gf_form_view` VALUES("72378", "10", "2017-12-27 02:19:21", "104.196.59.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("72379", "14", "2017-12-27 02:35:43", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("72380", "9", "2017-12-27 02:50:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72381", "8", "2017-12-27 02:50:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72382", "15", "2017-12-27 02:50:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72383", "18", "2017-12-27 02:50:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72384", "3", "2017-12-27 03:08:57", "180.76.15.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("72385", "8", "2017-12-27 04:14:40", "104.196.28.123", "5");
INSERT INTO `wp_gf_form_view` VALUES("72386", "3", "2017-12-27 04:14:55", "104.196.28.123", "65");
INSERT INTO `wp_gf_form_view` VALUES("72387", "18", "2017-12-27 04:48:28", "38.77.218.236", "3");
INSERT INTO `wp_gf_form_view` VALUES("72388", "9", "2017-12-27 04:50:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72389", "10", "2017-12-27 04:50:03", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("72390", "15", "2017-12-27 04:50:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72391", "3", "2017-12-27 05:48:53", "88.198.19.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("72392", "3", "2017-12-27 06:42:37", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72393", "9", "2017-12-27 06:42:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72394", "8", "2017-12-27 06:42:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72395", "10", "2017-12-27 06:42:39", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72396", "15", "2017-12-27 06:42:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72397", "18", "2017-12-27 06:42:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72398", "3", "2017-12-27 08:27:44", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72399", "9", "2017-12-27 08:27:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72400", "8", "2017-12-27 08:27:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72401", "10", "2017-12-27 08:27:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72402", "15", "2017-12-27 08:27:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72403", "18", "2017-12-27 08:27:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72404", "8", "2017-12-27 10:01:30", "40.77.167.32", "3");
INSERT INTO `wp_gf_form_view` VALUES("72405", "3", "2017-12-27 10:22:53", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72406", "9", "2017-12-27 10:22:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72407", "10", "2017-12-27 10:22:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72408", "15", "2017-12-27 10:22:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72409", "18", "2017-12-27 10:22:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72410", "18", "2017-12-27 11:44:47", "51.255.71.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("72411", "3", "2017-12-27 12:10:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72412", "9", "2017-12-27 12:10:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72413", "8", "2017-12-27 12:10:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72414", "10", "2017-12-27 12:10:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72415", "15", "2017-12-27 12:10:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72416", "18", "2017-12-27 12:10:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72417", "10", "2017-12-27 13:00:26", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72418", "3", "2017-12-27 13:22:44", "110.12.162.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("72419", "3", "2017-12-27 14:00:47", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72420", "9", "2017-12-27 14:00:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72421", "8", "2017-12-27 14:00:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72422", "10", "2017-12-27 14:00:49", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72423", "15", "2017-12-27 14:00:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72424", "18", "2017-12-27 14:00:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72425", "10", "2017-12-27 15:25:44", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72426", "3", "2017-12-27 15:45:18", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72427", "9", "2017-12-27 15:45:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72428", "8", "2017-12-27 15:45:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72429", "15", "2017-12-27 15:45:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72430", "18", "2017-12-27 15:45:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72431", "18", "2017-12-27 16:04:42", "5.188.211.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("72432", "3", "2017-12-27 17:11:17", "66.249.75.143", "31");
INSERT INTO `wp_gf_form_view` VALUES("72433", "10", "2017-12-27 17:26:32", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72434", "9", "2017-12-27 17:28:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72435", "8", "2017-12-27 17:28:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72436", "15", "2017-12-27 17:29:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72437", "18", "2017-12-27 17:29:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72438", "10", "2017-12-27 18:54:27", "157.55.39.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("72439", "3", "2017-12-27 19:12:27", "198.103.152.52", "30");
INSERT INTO `wp_gf_form_view` VALUES("72440", "9", "2017-12-27 19:27:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72441", "8", "2017-12-27 19:27:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72442", "10", "2017-12-27 19:27:26", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72443", "15", "2017-12-27 19:27:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72444", "18", "2017-12-27 19:27:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72445", "3", "2017-12-27 21:19:27", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72446", "9", "2017-12-27 21:19:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72447", "8", "2017-12-27 21:19:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72448", "10", "2017-12-27 21:19:30", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("72449", "15", "2017-12-27 21:19:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72450", "18", "2017-12-27 21:19:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72451", "14", "2017-12-27 21:31:03", "172.245.119.155", "1");
INSERT INTO `wp_gf_form_view` VALUES("72452", "3", "2017-12-27 23:04:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72453", "9", "2017-12-27 23:04:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72454", "8", "2017-12-27 23:04:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72455", "10", "2017-12-27 23:04:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72456", "15", "2017-12-27 23:04:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72457", "18", "2017-12-27 23:04:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72458", "3", "2017-12-28 00:34:35", "5.188.211.14", "37");
INSERT INTO `wp_gf_form_view` VALUES("72459", "8", "2017-12-28 00:34:36", "5.188.211.14", "3");
INSERT INTO `wp_gf_form_view` VALUES("72460", "9", "2017-12-28 00:59:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72461", "10", "2017-12-28 00:59:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72462", "15", "2017-12-28 00:59:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72463", "18", "2017-12-28 00:59:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72464", "10", "2017-12-28 01:13:33", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72465", "3", "2017-12-28 01:58:48", "174.138.63.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("72466", "3", "2017-12-28 02:05:06", "159.203.67.240", "31");
INSERT INTO `wp_gf_form_view` VALUES("72467", "9", "2017-12-28 02:47:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72468", "8", "2017-12-28 02:47:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72469", "10", "2017-12-28 02:47:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72470", "15", "2017-12-28 02:47:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72471", "18", "2017-12-28 02:47:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72472", "10", "2017-12-28 03:14:20", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72473", "3", "2017-12-28 04:14:46", "66.249.79.133", "31");
INSERT INTO `wp_gf_form_view` VALUES("72474", "9", "2017-12-28 04:34:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72475", "8", "2017-12-28 04:34:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72476", "10", "2017-12-28 04:34:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72477", "15", "2017-12-28 04:34:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72478", "18", "2017-12-28 04:34:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72479", "10", "2017-12-28 05:18:40", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72480", "3", "2017-12-28 05:39:38", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("72481", "14", "2017-12-28 06:13:28", "46.102.103.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("72482", "3", "2017-12-28 06:13:38", "46.102.103.163", "35");
INSERT INTO `wp_gf_form_view` VALUES("72483", "9", "2017-12-28 06:47:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72484", "8", "2017-12-28 06:47:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72485", "10", "2017-12-28 06:47:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72486", "15", "2017-12-28 06:47:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72487", "18", "2017-12-28 06:47:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72488", "14", "2017-12-28 07:09:34", "185.124.84.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("72489", "18", "2017-12-28 08:11:24", "77.75.78.172", "3");
INSERT INTO `wp_gf_form_view` VALUES("72490", "3", "2017-12-28 08:24:52", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("72491", "9", "2017-12-28 08:24:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72492", "8", "2017-12-28 08:24:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("72493", "10", "2017-12-28 08:24:54", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("72494", "15", "2017-12-28 08:24:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72495", "3", "2017-12-28 10:11:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72496", "9", "2017-12-28 10:11:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72497", "8", "2017-12-28 10:11:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72498", "10", "2017-12-28 10:11:36", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72499", "15", "2017-12-28 10:11:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72500", "18", "2017-12-28 10:11:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72501", "3", "2017-12-28 11:50:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72502", "9", "2017-12-28 11:50:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72503", "8", "2017-12-28 11:50:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72504", "10", "2017-12-28 11:50:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72505", "15", "2017-12-28 11:50:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72506", "18", "2017-12-28 11:50:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72507", "3", "2017-12-28 12:46:40", "54.36.148.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("72508", "10", "2017-12-28 13:00:24", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72509", "3", "2017-12-28 13:46:33", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72510", "9", "2017-12-28 13:46:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72511", "8", "2017-12-28 13:46:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72512", "15", "2017-12-28 13:46:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72513", "18", "2017-12-28 13:46:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72514", "14", "2017-12-28 14:05:00", "104.223.38.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("72515", "10", "2017-12-28 15:26:23", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72516", "3", "2017-12-28 15:31:28", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72517", "9", "2017-12-28 15:31:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72518", "8", "2017-12-28 15:31:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72519", "15", "2017-12-28 15:31:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72520", "18", "2017-12-28 15:31:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72521", "3", "2017-12-28 16:19:04", "54.36.148.93", "2");
INSERT INTO `wp_gf_form_view` VALUES("72522", "3", "2017-12-28 17:24:59", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("72523", "9", "2017-12-28 17:25:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72524", "8", "2017-12-28 17:25:02", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("72525", "10", "2017-12-28 17:25:04", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("72526", "15", "2017-12-28 17:25:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72527", "18", "2017-12-28 17:25:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72528", "3", "2017-12-28 18:01:27", "54.36.148.127", "2");
INSERT INTO `wp_gf_form_view` VALUES("72529", "3", "2017-12-28 19:10:55", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72530", "9", "2017-12-28 19:10:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72531", "8", "2017-12-28 19:10:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72532", "10", "2017-12-28 19:10:57", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("72533", "15", "2017-12-28 19:10:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72534", "18", "2017-12-28 19:11:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72535", "3", "2017-12-28 20:49:51", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("72536", "9", "2017-12-28 20:49:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72537", "8", "2017-12-28 20:49:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("72538", "10", "2017-12-28 20:49:53", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("72539", "15", "2017-12-28 20:49:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72540", "18", "2017-12-28 20:49:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72541", "9", "2017-12-28 21:55:42", "157.55.39.84", "3");
INSERT INTO `wp_gf_form_view` VALUES("72542", "3", "2017-12-28 21:55:48", "207.46.13.159", "7");
INSERT INTO `wp_gf_form_view` VALUES("72543", "10", "2017-12-28 21:55:52", "157.55.39.84", "4");
INSERT INTO `wp_gf_form_view` VALUES("72544", "11", "2017-12-28 21:56:37", "207.46.13.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("72545", "8", "2017-12-28 21:58:38", "207.46.13.159", "2");
INSERT INTO `wp_gf_form_view` VALUES("72546", "3", "2017-12-28 22:00:00", "207.46.13.159", "37");
INSERT INTO `wp_gf_form_view` VALUES("72547", "10", "2017-12-28 22:00:39", "207.46.13.159", "12");
INSERT INTO `wp_gf_form_view` VALUES("72548", "18", "2017-12-28 22:12:26", "194.187.170.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("72549", "9", "2017-12-28 22:26:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72550", "8", "2017-12-28 22:26:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72551", "15", "2017-12-28 22:26:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72552", "3", "2017-12-28 23:31:21", "54.36.149.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("72553", "3", "2017-12-29 00:06:09", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72554", "9", "2017-12-29 00:06:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72555", "8", "2017-12-29 00:06:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72556", "10", "2017-12-29 00:06:11", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("72557", "15", "2017-12-29 00:06:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72558", "18", "2017-12-29 00:06:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72559", "10", "2017-12-29 01:06:04", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72560", "18", "2017-12-29 01:38:44", "199.180.115.111", "3");
INSERT INTO `wp_gf_form_view` VALUES("72561", "3", "2017-12-29 01:39:06", "199.180.115.111", "33");
INSERT INTO `wp_gf_form_view` VALUES("72562", "9", "2017-12-29 01:46:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72563", "8", "2017-12-29 01:46:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72564", "15", "2017-12-29 01:46:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72565", "3", "2017-12-29 03:30:24", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72566", "9", "2017-12-29 03:30:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72567", "8", "2017-12-29 03:30:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72568", "10", "2017-12-29 03:30:27", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72569", "15", "2017-12-29 03:30:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72570", "18", "2017-12-29 03:30:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72571", "18", "2017-12-29 04:20:28", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("72572", "3", "2017-12-29 05:11:13", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72573", "9", "2017-12-29 05:11:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72574", "8", "2017-12-29 05:11:15", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("72575", "10", "2017-12-29 05:11:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72576", "15", "2017-12-29 05:11:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72577", "18", "2017-12-29 05:11:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72578", "3", "2017-12-29 06:56:03", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72579", "9", "2017-12-29 06:56:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72580", "8", "2017-12-29 06:56:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72581", "10", "2017-12-29 06:56:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72582", "15", "2017-12-29 06:56:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72583", "18", "2017-12-29 06:56:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72584", "10", "2017-12-29 08:07:12", "54.36.149.88", "6");
INSERT INTO `wp_gf_form_view` VALUES("72585", "3", "2017-12-29 08:50:48", "151.80.31.153", "30");
INSERT INTO `wp_gf_form_view` VALUES("72586", "9", "2017-12-29 08:51:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72587", "8", "2017-12-29 08:51:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72588", "15", "2017-12-29 08:51:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72589", "18", "2017-12-29 08:51:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72590", "3", "2017-12-29 10:17:26", "151.80.31.153", "59");
INSERT INTO `wp_gf_form_view` VALUES("72591", "9", "2017-12-29 10:35:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72592", "8", "2017-12-29 10:35:07", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("72593", "10", "2017-12-29 10:35:08", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("72594", "15", "2017-12-29 10:35:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72595", "18", "2017-12-29 10:35:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72596", "3", "2017-12-29 12:21:01", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72597", "9", "2017-12-29 12:21:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72598", "8", "2017-12-29 12:21:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72599", "10", "2017-12-29 12:21:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72600", "15", "2017-12-29 12:21:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72601", "18", "2017-12-29 12:21:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72602", "10", "2017-12-29 13:00:21", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72603", "8", "2017-12-29 13:50:48", "108.172.248.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("72604", "3", "2017-12-29 14:06:25", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72605", "9", "2017-12-29 14:06:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72606", "8", "2017-12-29 14:06:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72607", "10", "2017-12-29 14:06:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72608", "15", "2017-12-29 14:06:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72609", "18", "2017-12-29 14:06:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72610", "5", "2017-12-29 14:13:47", "77.75.76.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("72611", "10", "2017-12-29 15:26:24", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72612", "3", "2017-12-29 15:47:45", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72613", "9", "2017-12-29 15:47:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72614", "8", "2017-12-29 15:47:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72615", "15", "2017-12-29 15:47:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72616", "18", "2017-12-29 15:47:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72617", "3", "2017-12-29 16:21:20", "185.138.241.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("72618", "10", "2017-12-29 16:21:40", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("72619", "14", "2017-12-29 16:31:00", "194.187.170.123", "2");
INSERT INTO `wp_gf_form_view` VALUES("72620", "18", "2017-12-29 16:46:30", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("72621", "3", "2017-12-29 17:05:12", "185.138.241.45", "99");
INSERT INTO `wp_gf_form_view` VALUES("72622", "8", "2017-12-29 17:07:04", "185.138.241.45", "11");
INSERT INTO `wp_gf_form_view` VALUES("72623", "9", "2017-12-29 17:16:50", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("72624", "10", "2017-12-29 17:16:51", "185.138.241.45", "16");
INSERT INTO `wp_gf_form_view` VALUES("72625", "15", "2017-12-29 17:16:54", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("72626", "18", "2017-12-29 17:16:58", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("72627", "10", "2017-12-29 18:02:40", "54.36.149.15", "7");
INSERT INTO `wp_gf_form_view` VALUES("72628", "3", "2017-12-29 18:06:27", "185.138.241.45", "30");
INSERT INTO `wp_gf_form_view` VALUES("72629", "9", "2017-12-29 18:06:28", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("72630", "8", "2017-12-29 18:06:29", "185.138.241.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("72631", "15", "2017-12-29 18:06:33", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("72632", "18", "2017-12-29 18:06:36", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("72633", "10", "2017-12-29 19:08:54", "207.46.13.69", "7");
INSERT INTO `wp_gf_form_view` VALUES("72634", "3", "2017-12-29 19:29:36", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72635", "9", "2017-12-29 19:29:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72636", "8", "2017-12-29 19:29:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72637", "15", "2017-12-29 19:29:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72638", "18", "2017-12-29 19:29:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72639", "3", "2017-12-29 21:23:55", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72640", "9", "2017-12-29 21:23:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72641", "8", "2017-12-29 21:23:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72642", "10", "2017-12-29 21:23:57", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72643", "15", "2017-12-29 21:23:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72644", "18", "2017-12-29 21:24:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72645", "3", "2017-12-29 22:36:14", "207.46.13.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("72646", "3", "2017-12-29 22:36:14", "207.46.13.159", "1");
INSERT INTO `wp_gf_form_view` VALUES("72647", "10", "2017-12-29 22:36:53", "40.77.167.178", "3");
INSERT INTO `wp_gf_form_view` VALUES("72648", "3", "2017-12-29 23:01:20", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72649", "9", "2017-12-29 23:01:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72650", "8", "2017-12-29 23:01:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72651", "10", "2017-12-29 23:01:22", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("72652", "15", "2017-12-29 23:01:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72653", "18", "2017-12-29 23:01:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72654", "3", "2017-12-30 00:16:45", "54.36.148.150", "30");
INSERT INTO `wp_gf_form_view` VALUES("72655", "9", "2017-12-30 00:43:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72656", "8", "2017-12-30 00:43:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72657", "10", "2017-12-30 00:43:19", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72658", "15", "2017-12-30 00:43:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72659", "18", "2017-12-30 00:43:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72660", "10", "2017-12-30 01:58:48", "40.77.167.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("72661", "6", "2017-12-30 01:59:47", "54.36.149.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("72662", "3", "2017-12-30 02:18:29", "5.188.211.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("72663", "3", "2017-12-30 03:05:33", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72664", "9", "2017-12-30 03:05:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72665", "8", "2017-12-30 03:05:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72666", "10", "2017-12-30 03:05:36", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72667", "15", "2017-12-30 03:05:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72668", "18", "2017-12-30 03:05:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72669", "3", "2017-12-30 04:49:01", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72670", "9", "2017-12-30 04:49:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72671", "8", "2017-12-30 04:49:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72672", "10", "2017-12-30 04:49:03", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72673", "15", "2017-12-30 04:49:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72674", "18", "2017-12-30 04:49:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72675", "10", "2017-12-30 05:38:53", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("72676", "3", "2017-12-30 06:01:33", "207.46.13.66", "33");
INSERT INTO `wp_gf_form_view` VALUES("72677", "9", "2017-12-30 06:34:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72678", "8", "2017-12-30 06:34:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72679", "10", "2017-12-30 06:34:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72680", "15", "2017-12-30 06:34:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72681", "18", "2017-12-30 06:34:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72682", "18", "2017-12-30 07:51:18", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("72683", "3", "2017-12-30 08:25:59", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("72684", "9", "2017-12-30 08:26:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72685", "8", "2017-12-30 08:26:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72686", "10", "2017-12-30 08:26:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72687", "15", "2017-12-30 08:26:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72688", "18", "2017-12-30 08:26:06", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("72689", "10", "2017-12-30 09:39:06", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72690", "3", "2017-12-30 10:16:18", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72691", "9", "2017-12-30 10:16:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72692", "8", "2017-12-30 10:16:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72693", "10", "2017-12-30 10:16:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72694", "15", "2017-12-30 10:16:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72695", "18", "2017-12-30 10:16:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72696", "3", "2017-12-30 12:12:51", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72697", "9", "2017-12-30 12:12:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72698", "8", "2017-12-30 12:12:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72699", "10", "2017-12-30 12:12:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72700", "15", "2017-12-30 12:12:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72701", "18", "2017-12-30 12:12:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72702", "10", "2017-12-30 13:00:21", "184.66.129.248", "11");
INSERT INTO `wp_gf_form_view` VALUES("72703", "3", "2017-12-30 13:50:29", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("72704", "9", "2017-12-30 13:50:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72705", "8", "2017-12-30 13:50:31", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("72706", "15", "2017-12-30 13:50:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72707", "18", "2017-12-30 13:50:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72708", "10", "2017-12-30 15:26:26", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72709", "3", "2017-12-30 15:38:50", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72710", "9", "2017-12-30 15:38:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72711", "8", "2017-12-30 15:38:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72712", "15", "2017-12-30 15:38:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72713", "18", "2017-12-30 15:39:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72714", "3", "2017-12-30 16:52:12", "46.229.168.73", "19");
INSERT INTO `wp_gf_form_view` VALUES("72715", "3", "2017-12-30 17:00:01", "46.229.168.79", "63");
INSERT INTO `wp_gf_form_view` VALUES("72716", "18", "2017-12-30 17:00:45", "46.229.168.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("72717", "8", "2017-12-30 17:15:50", "46.229.168.72", "5");
INSERT INTO `wp_gf_form_view` VALUES("72718", "11", "2017-12-30 17:17:21", "46.229.168.74", "3");
INSERT INTO `wp_gf_form_view` VALUES("72719", "15", "2017-12-30 17:23:44", "46.229.168.76", "4");
INSERT INTO `wp_gf_form_view` VALUES("72720", "14", "2017-12-30 17:26:37", "72.143.224.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("72721", "10", "2017-12-30 17:27:11", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72722", "9", "2017-12-30 17:59:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72723", "3", "2017-12-30 18:04:03", "54.36.148.102", "2");
INSERT INTO `wp_gf_form_view` VALUES("72724", "8", "2017-12-30 18:30:14", "24.69.172.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("72725", "10", "2017-12-30 19:28:02", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("72726", "18", "2017-12-30 19:30:24", "104.193.9.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("72727", "3", "2017-12-30 19:30:33", "104.193.9.229", "2");
INSERT INTO `wp_gf_form_view` VALUES("72728", "3", "2017-12-30 20:17:09", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72729", "9", "2017-12-30 20:17:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72730", "8", "2017-12-30 20:17:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72731", "10", "2017-12-30 20:17:11", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72732", "15", "2017-12-30 20:17:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72733", "18", "2017-12-30 20:17:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72734", "10", "2017-12-30 21:41:33", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72735", "3", "2017-12-30 21:59:08", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72736", "9", "2017-12-30 21:59:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72737", "8", "2017-12-30 21:59:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72738", "15", "2017-12-30 21:59:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72739", "18", "2017-12-30 21:59:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72740", "3", "2017-12-30 22:35:22", "178.63.1.153", "25");
INSERT INTO `wp_gf_form_view` VALUES("72741", "8", "2017-12-30 22:37:29", "178.63.1.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("72742", "18", "2017-12-30 22:39:51", "178.63.1.153", "6");
INSERT INTO `wp_gf_form_view` VALUES("72743", "10", "2017-12-30 22:45:13", "178.63.1.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("72744", "14", "2017-12-30 22:47:53", "188.165.234.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("72745", "10", "2017-12-30 23:21:33", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("72746", "3", "2017-12-30 23:53:40", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72747", "9", "2017-12-30 23:53:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72748", "8", "2017-12-30 23:53:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72749", "15", "2017-12-30 23:53:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72750", "18", "2017-12-30 23:53:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72751", "3", "2017-12-31 00:34:13", "185.138.241.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("72752", "10", "2017-12-31 00:44:21", "54.36.148.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("72753", "14", "2017-12-31 00:58:27", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("72754", "3", "2017-12-31 01:08:18", "185.138.241.45", "38");
INSERT INTO `wp_gf_form_view` VALUES("72755", "8", "2017-12-31 01:09:57", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("72756", "9", "2017-12-31 01:33:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72757", "10", "2017-12-31 01:33:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72758", "15", "2017-12-31 01:34:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72759", "18", "2017-12-31 01:34:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72760", "3", "2017-12-31 03:29:10", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72761", "9", "2017-12-31 03:29:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72762", "8", "2017-12-31 03:29:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72763", "10", "2017-12-31 03:29:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72764", "15", "2017-12-31 03:29:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72765", "18", "2017-12-31 03:29:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72766", "14", "2017-12-31 04:04:41", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("72767", "10", "2017-12-31 04:58:09", "157.55.39.131", "2");
INSERT INTO `wp_gf_form_view` VALUES("72768", "3", "2017-12-31 04:58:33", "157.55.39.131", "3");
INSERT INTO `wp_gf_form_view` VALUES("72769", "9", "2017-12-31 04:59:19", "157.55.39.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("72770", "10", "2017-12-31 05:03:36", "207.46.13.50", "8");
INSERT INTO `wp_gf_form_view` VALUES("72771", "3", "2017-12-31 05:06:43", "207.46.13.50", "38");
INSERT INTO `wp_gf_form_view` VALUES("72772", "15", "2017-12-31 05:08:40", "207.46.13.50", "3");
INSERT INTO `wp_gf_form_view` VALUES("72773", "6", "2017-12-31 05:09:54", "207.46.13.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("72774", "9", "2017-12-31 05:20:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72775", "8", "2017-12-31 05:20:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72776", "18", "2017-12-31 05:20:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72777", "3", "2017-12-31 07:11:06", "144.76.115.190", "31");
INSERT INTO `wp_gf_form_view` VALUES("72778", "9", "2017-12-31 07:13:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72779", "8", "2017-12-31 07:13:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72780", "10", "2017-12-31 07:13:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72781", "15", "2017-12-31 07:13:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72782", "18", "2017-12-31 07:13:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72783", "3", "2017-12-31 09:03:50", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72784", "9", "2017-12-31 09:03:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72785", "8", "2017-12-31 09:03:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72786", "10", "2017-12-31 09:03:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72787", "15", "2017-12-31 09:03:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72788", "18", "2017-12-31 09:03:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72789", "10", "2017-12-31 10:24:46", "72.14.199.71", "7");
INSERT INTO `wp_gf_form_view` VALUES("72790", "3", "2017-12-31 10:53:08", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72791", "9", "2017-12-31 10:53:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72792", "8", "2017-12-31 10:53:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72793", "15", "2017-12-31 10:53:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72794", "18", "2017-12-31 10:53:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72795", "3", "2017-12-31 11:34:03", "151.80.44.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("72796", "3", "2017-12-31 12:48:04", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72797", "9", "2017-12-31 12:48:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72798", "8", "2017-12-31 12:48:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72799", "10", "2017-12-31 12:48:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72800", "15", "2017-12-31 12:48:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72801", "18", "2017-12-31 12:48:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72802", "10", "2017-12-31 13:00:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72803", "18", "2017-12-31 13:13:42", "77.75.78.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("72804", "3", "2017-12-31 14:38:28", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72805", "9", "2017-12-31 14:38:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72806", "8", "2017-12-31 14:38:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72807", "10", "2017-12-31 14:38:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72808", "15", "2017-12-31 14:38:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72809", "18", "2017-12-31 14:38:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72810", "5", "2017-12-31 15:03:04", "77.75.76.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("72811", "10", "2017-12-31 15:26:34", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72812", "3", "2017-12-31 16:29:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72813", "9", "2017-12-31 16:29:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72814", "8", "2017-12-31 16:29:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72815", "10", "2017-12-31 16:29:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72816", "15", "2017-12-31 16:29:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72817", "18", "2017-12-31 16:29:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72818", "10", "2017-12-31 17:27:24", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72819", "3", "2017-12-31 18:22:20", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72820", "9", "2017-12-31 18:22:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72821", "8", "2017-12-31 18:22:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72822", "10", "2017-12-31 18:22:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72823", "15", "2017-12-31 18:22:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72824", "18", "2017-12-31 18:22:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72825", "3", "2017-12-31 19:13:17", "54.36.148.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("72826", "18", "2017-12-31 19:52:55", "147.135.137.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("72827", "3", "2017-12-31 20:17:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72828", "9", "2017-12-31 20:17:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72829", "8", "2017-12-31 20:17:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72830", "10", "2017-12-31 20:17:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72831", "15", "2017-12-31 20:17:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72832", "18", "2017-12-31 20:17:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72833", "10", "2017-12-31 21:29:06", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("72834", "3", "2017-12-31 22:21:50", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72835", "9", "2017-12-31 22:21:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72836", "8", "2017-12-31 22:21:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72837", "10", "2017-12-31 22:21:52", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72838", "15", "2017-12-31 22:21:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72839", "18", "2017-12-31 22:21:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72840", "3", "2017-12-31 23:20:54", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("72841", "3", "2018-01-01 00:13:13", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72842", "9", "2018-01-01 00:13:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72843", "8", "2018-01-01 00:13:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72844", "10", "2018-01-01 00:13:16", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("72845", "15", "2018-01-01 00:13:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72846", "18", "2018-01-01 00:13:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72847", "3", "2018-01-01 02:07:54", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("72848", "9", "2018-01-01 02:07:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72849", "8", "2018-01-01 02:07:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72850", "10", "2018-01-01 02:07:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72851", "15", "2018-01-01 02:07:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72852", "18", "2018-01-01 02:08:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72853", "10", "2018-01-01 03:23:32", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72854", "3", "2018-01-01 03:52:46", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72855", "9", "2018-01-01 03:52:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72856", "8", "2018-01-01 03:52:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72857", "15", "2018-01-01 03:52:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72858", "18", "2018-01-01 03:52:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72859", "14", "2018-01-01 04:31:38", "181.215.147.81", "4");
INSERT INTO `wp_gf_form_view` VALUES("72860", "3", "2018-01-01 05:33:11", "54.36.148.85", "31");
INSERT INTO `wp_gf_form_view` VALUES("72861", "9", "2018-01-01 05:48:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72862", "8", "2018-01-01 05:48:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72863", "10", "2018-01-01 05:48:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72864", "15", "2018-01-01 05:48:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72865", "18", "2018-01-01 05:48:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72866", "10", "2018-01-01 06:45:19", "40.77.167.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("72867", "10", "2018-01-01 07:04:29", "207.46.13.160", "6");
INSERT INTO `wp_gf_form_view` VALUES("72868", "3", "2018-01-01 07:53:22", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72869", "9", "2018-01-01 07:53:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72870", "8", "2018-01-01 07:53:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72871", "15", "2018-01-01 07:53:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72872", "18", "2018-01-01 07:53:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72873", "10", "2018-01-01 08:57:43", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72874", "3", "2018-01-01 09:47:34", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72875", "9", "2018-01-01 09:47:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72876", "8", "2018-01-01 09:47:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72877", "10", "2018-01-01 09:47:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72878", "15", "2018-01-01 09:47:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72879", "18", "2018-01-01 09:47:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72880", "3", "2018-01-01 10:01:35", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("72881", "10", "2018-01-01 10:58:32", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72882", "3", "2018-01-01 11:39:35", "216.244.66.231", "30");
INSERT INTO `wp_gf_form_view` VALUES("72883", "9", "2018-01-01 11:50:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72884", "8", "2018-01-01 11:50:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72885", "10", "2018-01-01 11:50:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72886", "15", "2018-01-01 11:50:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72887", "18", "2018-01-01 11:50:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72888", "10", "2018-01-01 12:59:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72889", "10", "2018-01-01 13:01:15", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("72890", "3", "2018-01-01 13:45:43", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72891", "9", "2018-01-01 13:45:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72892", "8", "2018-01-01 13:45:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72893", "15", "2018-01-01 13:45:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72894", "18", "2018-01-01 13:45:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72895", "10", "2018-01-01 14:41:36", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("72896", "10", "2018-01-01 15:27:22", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72897", "3", "2018-01-01 15:48:45", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72898", "9", "2018-01-01 15:48:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72899", "8", "2018-01-01 15:48:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72900", "15", "2018-01-01 15:48:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72901", "18", "2018-01-01 15:48:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72902", "10", "2018-01-01 17:28:15", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72903", "3", "2018-01-01 17:32:17", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72904", "9", "2018-01-01 17:32:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72905", "8", "2018-01-01 17:32:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72906", "15", "2018-01-01 17:32:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72907", "18", "2018-01-01 17:32:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72908", "3", "2018-01-01 19:19:10", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72909", "9", "2018-01-01 19:19:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72910", "8", "2018-01-01 19:19:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72911", "10", "2018-01-01 19:19:12", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72912", "15", "2018-01-01 19:19:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72913", "18", "2018-01-01 19:19:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72914", "3", "2018-01-01 21:15:32", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72915", "9", "2018-01-01 21:15:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72916", "8", "2018-01-01 21:15:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72917", "10", "2018-01-01 21:15:34", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72918", "15", "2018-01-01 21:15:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72919", "18", "2018-01-01 21:15:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72920", "18", "2018-01-01 23:32:59", "68.180.228.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("72921", "3", "2018-01-01 23:42:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72922", "9", "2018-01-01 23:42:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72923", "8", "2018-01-01 23:42:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72924", "10", "2018-01-01 23:42:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72925", "15", "2018-01-01 23:42:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72926", "10", "2018-01-02 01:03:45", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72927", "3", "2018-01-02 01:32:44", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72928", "9", "2018-01-02 01:32:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72929", "8", "2018-01-02 01:32:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72930", "15", "2018-01-02 01:32:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72931", "18", "2018-01-02 01:32:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72932", "10", "2018-01-02 03:24:46", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("72933", "3", "2018-01-02 03:38:41", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72934", "9", "2018-01-02 03:38:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72935", "8", "2018-01-02 03:38:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72936", "15", "2018-01-02 03:38:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72937", "18", "2018-01-02 03:38:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72938", "10", "2018-01-02 04:17:01", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("72939", "3", "2018-01-02 05:41:54", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72940", "9", "2018-01-02 05:41:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72941", "8", "2018-01-02 05:41:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72942", "10", "2018-01-02 05:41:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72943", "15", "2018-01-02 05:41:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72944", "18", "2018-01-02 05:42:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72945", "3", "2018-01-02 07:11:45", "103.204.108.169", "34");
INSERT INTO `wp_gf_form_view` VALUES("72946", "10", "2018-01-02 07:27:02", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72947", "9", "2018-01-02 07:36:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72948", "8", "2018-01-02 07:36:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72949", "15", "2018-01-02 07:36:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72950", "18", "2018-01-02 07:36:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72951", "8", "2018-01-02 08:09:20", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("72952", "3", "2018-01-02 09:39:26", "178.151.245.174", "30");
INSERT INTO `wp_gf_form_view` VALUES("72953", "9", "2018-01-02 09:55:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72954", "8", "2018-01-02 09:55:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72955", "10", "2018-01-02 09:55:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72956", "15", "2018-01-02 09:55:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72957", "18", "2018-01-02 09:55:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72958", "3", "2018-01-02 11:56:22", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72959", "9", "2018-01-02 11:56:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72960", "8", "2018-01-02 11:56:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72961", "10", "2018-01-02 11:56:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72962", "15", "2018-01-02 11:56:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72963", "18", "2018-01-02 11:56:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72964", "3", "2018-01-02 12:03:27", "54.36.149.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("72965", "10", "2018-01-02 13:00:24", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72966", "3", "2018-01-02 13:41:07", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72967", "9", "2018-01-02 13:41:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72968", "8", "2018-01-02 13:41:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72969", "15", "2018-01-02 13:41:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72970", "18", "2018-01-02 13:41:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72971", "10", "2018-01-02 14:38:44", "207.46.13.174", "2");
INSERT INTO `wp_gf_form_view` VALUES("72972", "3", "2018-01-02 14:39:13", "207.46.13.157", "6");
INSERT INTO `wp_gf_form_view` VALUES("72973", "9", "2018-01-02 14:44:33", "207.46.13.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("72974", "10", "2018-01-02 15:25:41", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72975", "3", "2018-01-02 15:28:29", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72976", "9", "2018-01-02 15:28:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72977", "8", "2018-01-02 15:28:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72978", "15", "2018-01-02 15:28:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72979", "18", "2018-01-02 15:28:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72980", "3", "2018-01-02 17:26:07", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72981", "9", "2018-01-02 17:26:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72982", "8", "2018-01-02 17:26:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72983", "10", "2018-01-02 17:26:09", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("72984", "15", "2018-01-02 17:26:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72985", "18", "2018-01-02 17:26:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72986", "3", "2018-01-02 19:37:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("72987", "9", "2018-01-02 19:37:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72988", "8", "2018-01-02 19:37:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72989", "10", "2018-01-02 19:37:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("72990", "15", "2018-01-02 19:37:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72991", "18", "2018-01-02 19:37:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72992", "3", "2018-01-02 20:10:44", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("72993", "10", "2018-01-02 21:12:54", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("72994", "3", "2018-01-02 21:58:20", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("72995", "9", "2018-01-02 21:58:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72996", "8", "2018-01-02 21:58:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("72997", "15", "2018-01-02 21:58:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72998", "18", "2018-01-02 21:58:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("72999", "10", "2018-01-02 22:39:13", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73000", "18", "2018-01-02 23:05:38", "54.36.149.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("73001", "3", "2018-01-02 23:20:41", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("73002", "3", "2018-01-03 00:07:19", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73003", "9", "2018-01-03 00:07:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73004", "8", "2018-01-03 00:07:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73005", "10", "2018-01-03 00:07:21", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73006", "15", "2018-01-03 00:07:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73007", "18", "2018-01-03 00:07:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73008", "3", "2018-01-03 02:12:38", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73009", "9", "2018-01-03 02:12:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73010", "8", "2018-01-03 02:12:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73011", "10", "2018-01-03 02:12:39", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73012", "15", "2018-01-03 02:12:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73013", "18", "2018-01-03 02:12:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73014", "14", "2018-01-03 02:34:33", "24.69.154.212", "2");
INSERT INTO `wp_gf_form_view` VALUES("73015", "3", "2018-01-03 03:52:35", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73016", "9", "2018-01-03 03:52:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73017", "8", "2018-01-03 03:52:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73018", "10", "2018-01-03 03:52:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73019", "15", "2018-01-03 03:52:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73020", "18", "2018-01-03 03:52:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73021", "18", "2018-01-03 04:04:43", "149.91.123.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("73022", "3", "2018-01-03 04:04:53", "149.91.123.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("73023", "18", "2018-01-03 05:31:45", "24.108.16.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("73024", "3", "2018-01-03 05:32:08", "24.108.16.138", "30");
INSERT INTO `wp_gf_form_view` VALUES("73025", "9", "2018-01-03 05:37:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73026", "8", "2018-01-03 05:37:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73027", "10", "2018-01-03 05:37:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73028", "15", "2018-01-03 05:37:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73029", "10", "2018-01-03 06:25:51", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("73030", "3", "2018-01-03 06:39:13", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("73031", "3", "2018-01-03 07:32:17", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73032", "9", "2018-01-03 07:32:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73033", "8", "2018-01-03 07:32:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73034", "10", "2018-01-03 07:32:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73035", "15", "2018-01-03 07:32:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73036", "18", "2018-01-03 07:32:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73037", "3", "2018-01-03 09:24:23", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73038", "9", "2018-01-03 09:24:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73039", "8", "2018-01-03 09:24:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73040", "10", "2018-01-03 09:24:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73041", "15", "2018-01-03 09:24:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73042", "18", "2018-01-03 09:24:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73043", "3", "2018-01-03 11:08:20", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73044", "9", "2018-01-03 11:08:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73045", "8", "2018-01-03 11:08:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73046", "10", "2018-01-03 11:08:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73047", "15", "2018-01-03 11:08:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73048", "18", "2018-01-03 11:08:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73049", "10", "2018-01-03 13:00:22", "184.66.129.248", "16");
INSERT INTO `wp_gf_form_view` VALUES("73050", "3", "2018-01-03 13:04:53", "52.37.180.245", "71");
INSERT INTO `wp_gf_form_view` VALUES("73051", "9", "2018-01-03 13:04:54", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("73052", "8", "2018-01-03 13:04:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73053", "15", "2018-01-03 13:04:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73054", "18", "2018-01-03 13:04:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73055", "11", "2018-01-03 13:35:47", "157.55.39.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("73056", "6", "2018-01-03 13:36:20", "40.77.167.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("73057", "3", "2018-01-03 14:01:45", "54.36.148.82", "31");
INSERT INTO `wp_gf_form_view` VALUES("73058", "9", "2018-01-03 14:57:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73059", "8", "2018-01-03 14:57:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73060", "10", "2018-01-03 14:57:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73061", "15", "2018-01-03 14:57:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73062", "18", "2018-01-03 14:57:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73063", "10", "2018-01-03 15:25:42", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73064", "8", "2018-01-03 16:48:22", "54.36.148.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("73065", "3", "2018-01-03 17:08:39", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73066", "9", "2018-01-03 17:08:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73067", "8", "2018-01-03 17:08:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73068", "10", "2018-01-03 17:08:41", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73069", "15", "2018-01-03 17:08:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73070", "18", "2018-01-03 17:08:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73071", "10", "2018-01-03 18:28:58", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("73072", "3", "2018-01-03 18:58:06", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73073", "9", "2018-01-03 18:58:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73074", "8", "2018-01-03 18:58:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73075", "15", "2018-01-03 18:58:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73076", "18", "2018-01-03 18:58:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73077", "8", "2018-01-03 19:08:09", "184.66.49.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("73078", "10", "2018-01-03 19:08:51", "72.14.199.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("73079", "3", "2018-01-03 19:11:13", "184.66.49.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("73080", "18", "2018-01-03 19:12:11", "184.66.49.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("73081", "18", "2018-01-03 20:48:47", "69.77.162.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("73082", "3", "2018-01-03 20:57:49", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73083", "9", "2018-01-03 20:57:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73084", "8", "2018-01-03 20:57:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73085", "10", "2018-01-03 20:57:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73086", "15", "2018-01-03 20:57:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73087", "10", "2018-01-03 21:57:09", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73088", "3", "2018-01-03 23:08:11", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("73089", "9", "2018-01-03 23:08:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73090", "8", "2018-01-03 23:08:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73091", "10", "2018-01-03 23:08:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73092", "15", "2018-01-03 23:08:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73093", "18", "2018-01-03 23:08:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73094", "8", "2018-01-04 00:10:31", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("73095", "3", "2018-01-04 00:37:51", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("73096", "18", "2018-01-04 00:47:27", "154.5.209.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("73097", "3", "2018-01-04 01:06:41", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73098", "9", "2018-01-04 01:06:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73099", "8", "2018-01-04 01:06:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73100", "10", "2018-01-04 01:06:43", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73101", "15", "2018-01-04 01:06:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73102", "18", "2018-01-04 01:06:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73103", "3", "2018-01-04 02:41:18", "173.234.153.122", "30");
INSERT INTO `wp_gf_form_view` VALUES("73104", "9", "2018-01-04 02:48:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73105", "8", "2018-01-04 02:48:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73106", "10", "2018-01-04 02:48:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73107", "15", "2018-01-04 02:48:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73108", "18", "2018-01-04 02:48:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73109", "3", "2018-01-04 04:10:48", "216.244.66.231", "30");
INSERT INTO `wp_gf_form_view` VALUES("73110", "9", "2018-01-04 04:38:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73111", "8", "2018-01-04 04:38:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73112", "10", "2018-01-04 04:38:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73113", "15", "2018-01-04 04:38:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73114", "18", "2018-01-04 04:38:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73115", "18", "2018-01-04 06:25:35", "185.138.241.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("73116", "3", "2018-01-04 06:32:06", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73117", "9", "2018-01-04 06:32:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73118", "8", "2018-01-04 06:32:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73119", "10", "2018-01-04 06:32:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73120", "15", "2018-01-04 06:32:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73121", "3", "2018-01-04 08:22:39", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73122", "9", "2018-01-04 08:22:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73123", "8", "2018-01-04 08:22:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73124", "10", "2018-01-04 08:22:41", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73125", "15", "2018-01-04 08:22:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73126", "18", "2018-01-04 08:22:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73127", "3", "2018-01-04 09:14:56", "174.127.133.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("73128", "10", "2018-01-04 09:39:17", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73129", "3", "2018-01-04 10:15:38", "216.244.66.231", "30");
INSERT INTO `wp_gf_form_view` VALUES("73130", "9", "2018-01-04 10:18:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73131", "8", "2018-01-04 10:18:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73132", "10", "2018-01-04 10:18:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73133", "15", "2018-01-04 10:18:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73134", "18", "2018-01-04 10:18:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73135", "3", "2018-01-04 12:08:58", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73136", "9", "2018-01-04 12:08:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73137", "8", "2018-01-04 12:08:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73138", "10", "2018-01-04 12:09:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73139", "15", "2018-01-04 12:09:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73140", "18", "2018-01-04 12:09:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73141", "10", "2018-01-04 13:00:21", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("73142", "3", "2018-01-04 13:03:42", "5.9.80.133", "30");
INSERT INTO `wp_gf_form_view` VALUES("73143", "9", "2018-01-04 13:56:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73144", "8", "2018-01-04 13:56:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73145", "15", "2018-01-04 13:56:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73146", "18", "2018-01-04 13:56:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73147", "10", "2018-01-04 15:31:51", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("73148", "3", "2018-01-04 15:47:58", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73149", "9", "2018-01-04 15:47:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73150", "8", "2018-01-04 15:48:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73151", "15", "2018-01-04 15:48:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73152", "18", "2018-01-04 15:48:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73153", "10", "2018-01-04 16:08:16", "54.36.148.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("73154", "14", "2018-01-04 17:45:26", "69.77.162.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("73155", "3", "2018-01-04 17:48:52", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73156", "9", "2018-01-04 17:48:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73157", "8", "2018-01-04 17:48:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73158", "10", "2018-01-04 17:48:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73159", "15", "2018-01-04 17:48:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73160", "18", "2018-01-04 17:48:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73161", "14", "2018-01-04 18:01:14", "46.229.168.68", "4");
INSERT INTO `wp_gf_form_view` VALUES("73162", "3", "2018-01-04 18:02:02", "46.229.168.72", "34");
INSERT INTO `wp_gf_form_view` VALUES("73163", "11", "2018-01-04 18:03:05", "46.229.168.79", "3");
INSERT INTO `wp_gf_form_view` VALUES("73164", "18", "2018-01-04 18:06:12", "46.229.168.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("73165", "14", "2018-01-04 19:39:11", "24.69.11.33", "2");
INSERT INTO `wp_gf_form_view` VALUES("73166", "3", "2018-01-04 19:40:02", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73167", "9", "2018-01-04 19:40:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73168", "8", "2018-01-04 19:40:06", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73169", "10", "2018-01-04 19:40:07", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("73170", "15", "2018-01-04 19:40:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73171", "18", "2018-01-04 19:40:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73172", "3", "2018-01-04 20:13:59", "54.36.149.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("73173", "10", "2018-01-04 20:46:38", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("73174", "10", "2018-01-04 21:09:30", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("73175", "3", "2018-01-04 21:53:28", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73176", "9", "2018-01-04 21:53:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73177", "8", "2018-01-04 21:53:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73178", "15", "2018-01-04 21:53:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73179", "18", "2018-01-04 21:53:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73180", "3", "2018-01-04 22:31:49", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("73181", "3", "2018-01-04 23:18:00", "89.249.74.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("73182", "10", "2018-01-04 23:18:09", "72.14.199.69", "2");
INSERT INTO `wp_gf_form_view` VALUES("73183", "18", "2018-01-04 23:18:32", "89.249.74.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("73184", "3", "2018-01-05 00:11:30", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73185", "9", "2018-01-05 00:11:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73186", "8", "2018-01-05 00:11:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73187", "10", "2018-01-05 00:11:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73188", "15", "2018-01-05 00:11:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73189", "18", "2018-01-05 00:11:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73190", "3", "2018-01-05 02:19:12", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73191", "9", "2018-01-05 02:19:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73192", "8", "2018-01-05 02:19:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73193", "10", "2018-01-05 02:19:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73194", "15", "2018-01-05 02:19:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73195", "18", "2018-01-05 02:19:20", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("73196", "3", "2018-01-05 03:35:36", "24.86.145.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("73197", "10", "2018-01-05 03:54:49", "54.36.148.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("73198", "3", "2018-01-05 04:18:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73199", "9", "2018-01-05 04:18:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73200", "8", "2018-01-05 04:18:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73201", "10", "2018-01-05 04:18:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73202", "15", "2018-01-05 04:18:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73203", "18", "2018-01-05 04:18:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73204", "3", "2018-01-05 05:03:24", "45.55.228.55", "27");
INSERT INTO `wp_gf_form_view` VALUES("73205", "18", "2018-01-05 05:03:35", "45.55.228.55", "46");
INSERT INTO `wp_gf_form_view` VALUES("73206", "14", "2018-01-05 05:08:40", "45.55.228.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("73207", "6", "2018-01-05 05:09:18", "45.55.228.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("73208", "9", "2018-01-05 05:17:21", "45.55.228.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("73209", "10", "2018-01-05 05:28:56", "45.55.228.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("73210", "3", "2018-01-05 06:37:56", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73211", "9", "2018-01-05 06:37:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73212", "8", "2018-01-05 06:37:57", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("73213", "10", "2018-01-05 06:37:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73214", "15", "2018-01-05 06:38:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73215", "18", "2018-01-05 06:38:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73216", "10", "2018-01-05 08:31:07", "54.36.148.157", "6");
INSERT INTO `wp_gf_form_view` VALUES("73217", "3", "2018-01-05 08:39:00", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73218", "9", "2018-01-05 08:39:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73219", "8", "2018-01-05 08:39:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73220", "15", "2018-01-05 08:39:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73221", "18", "2018-01-05 08:39:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73222", "10", "2018-01-05 09:46:50", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73223", "3", "2018-01-05 10:23:48", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73224", "9", "2018-01-05 10:23:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73225", "8", "2018-01-05 10:23:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73226", "10", "2018-01-05 10:23:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73227", "15", "2018-01-05 10:23:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73228", "18", "2018-01-05 10:23:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73229", "3", "2018-01-05 12:05:04", "157.55.39.135", "30");
INSERT INTO `wp_gf_form_view` VALUES("73230", "10", "2018-01-05 12:09:40", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("73231", "9", "2018-01-05 12:19:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73232", "8", "2018-01-05 12:19:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73233", "15", "2018-01-05 12:19:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73234", "18", "2018-01-05 12:19:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73235", "10", "2018-01-05 13:00:24", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73236", "3", "2018-01-05 14:25:29", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73237", "9", "2018-01-05 14:25:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73238", "8", "2018-01-05 14:25:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73239", "10", "2018-01-05 14:25:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73240", "15", "2018-01-05 14:25:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73241", "18", "2018-01-05 14:25:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73242", "10", "2018-01-05 15:26:25", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73243", "14", "2018-01-05 15:34:41", "211.233.56.228", "1");
INSERT INTO `wp_gf_form_view` VALUES("73244", "3", "2018-01-05 16:15:19", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73245", "9", "2018-01-05 16:15:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73246", "8", "2018-01-05 16:15:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73247", "10", "2018-01-05 16:15:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73248", "15", "2018-01-05 16:15:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73249", "18", "2018-01-05 16:15:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73250", "3", "2018-01-05 17:08:59", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("73251", "10", "2018-01-05 17:27:14", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("73252", "18", "2018-01-05 18:07:48", "184.66.50.161", "3");
INSERT INTO `wp_gf_form_view` VALUES("73253", "3", "2018-01-05 18:18:26", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("73254", "9", "2018-01-05 18:18:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73255", "8", "2018-01-05 18:18:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73256", "10", "2018-01-05 18:18:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73257", "15", "2018-01-05 18:18:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73258", "14", "2018-01-05 18:20:41", "96.50.120.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("73259", "10", "2018-01-05 19:28:11", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73260", "3", "2018-01-05 20:25:42", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73261", "9", "2018-01-05 20:25:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73262", "8", "2018-01-05 20:25:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73263", "10", "2018-01-05 20:25:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73264", "15", "2018-01-05 20:25:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73265", "18", "2018-01-05 20:25:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73266", "10", "2018-01-05 21:28:54", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73267", "3", "2018-01-05 22:40:02", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73268", "9", "2018-01-05 22:40:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73269", "8", "2018-01-05 22:40:03", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73270", "10", "2018-01-05 22:40:04", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("73271", "15", "2018-01-05 22:40:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73272", "18", "2018-01-05 22:40:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73273", "3", "2018-01-05 23:43:31", "66.249.79.141", "1");
INSERT INTO `wp_gf_form_view` VALUES("73274", "3", "2018-01-06 00:47:38", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73275", "9", "2018-01-06 00:47:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73276", "8", "2018-01-06 00:47:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73277", "10", "2018-01-06 00:47:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73278", "15", "2018-01-06 00:47:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73279", "18", "2018-01-06 00:47:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73280", "18", "2018-01-06 01:32:21", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("73281", "10", "2018-01-06 02:02:21", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("73282", "3", "2018-01-06 02:48:10", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73283", "9", "2018-01-06 02:48:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73284", "8", "2018-01-06 02:48:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73285", "15", "2018-01-06 02:48:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73286", "18", "2018-01-06 02:48:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73287", "10", "2018-01-06 03:33:19", "72.14.199.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("73288", "18", "2018-01-06 04:06:02", "213.127.68.237", "3");
INSERT INTO `wp_gf_form_view` VALUES("73289", "3", "2018-01-06 04:06:10", "213.127.68.237", "31");
INSERT INTO `wp_gf_form_view` VALUES("73290", "9", "2018-01-06 04:57:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73291", "8", "2018-01-06 04:57:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73292", "10", "2018-01-06 04:57:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73293", "15", "2018-01-06 04:57:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73294", "10", "2018-01-06 06:25:23", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("73295", "3", "2018-01-06 06:42:54", "47.89.27.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("73296", "18", "2018-01-06 06:43:28", "47.89.27.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("73297", "3", "2018-01-06 07:03:41", "157.55.39.29", "40");
INSERT INTO `wp_gf_form_view` VALUES("73298", "9", "2018-01-06 07:08:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73299", "8", "2018-01-06 07:08:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73300", "10", "2018-01-06 07:08:11", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("73301", "15", "2018-01-06 07:08:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73302", "18", "2018-01-06 07:08:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73303", "10", "2018-01-06 08:04:44", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73304", "14", "2018-01-06 08:11:39", "157.55.39.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("73305", "3", "2018-01-06 09:14:26", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73306", "9", "2018-01-06 09:14:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73307", "8", "2018-01-06 09:14:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73308", "10", "2018-01-06 09:14:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73309", "15", "2018-01-06 09:14:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73310", "18", "2018-01-06 09:14:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73311", "3", "2018-01-06 11:13:08", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73312", "9", "2018-01-06 11:13:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73313", "8", "2018-01-06 11:13:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73314", "10", "2018-01-06 11:13:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73315", "15", "2018-01-06 11:13:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73316", "18", "2018-01-06 11:13:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73317", "3", "2018-01-06 12:54:46", "157.55.39.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("73318", "10", "2018-01-06 13:00:17", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("73319", "3", "2018-01-06 13:14:07", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73320", "9", "2018-01-06 13:14:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73321", "8", "2018-01-06 13:14:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73322", "15", "2018-01-06 13:14:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73323", "18", "2018-01-06 13:14:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73324", "18", "2018-01-06 14:31:41", "157.55.39.203", "1");
INSERT INTO `wp_gf_form_view` VALUES("73325", "10", "2018-01-06 14:40:12", "157.55.39.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("73326", "3", "2018-01-06 15:07:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73327", "9", "2018-01-06 15:07:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73328", "8", "2018-01-06 15:07:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73329", "10", "2018-01-06 15:07:18", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73330", "15", "2018-01-06 15:07:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73331", "18", "2018-01-06 15:07:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73332", "3", "2018-01-06 16:04:02", "5.9.98.130", "63");
INSERT INTO `wp_gf_form_view` VALUES("73333", "18", "2018-01-06 16:05:37", "5.9.98.130", "48");
INSERT INTO `wp_gf_form_view` VALUES("73334", "14", "2018-01-06 16:05:59", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("73335", "10", "2018-01-06 16:12:11", "5.9.98.130", "10");
INSERT INTO `wp_gf_form_view` VALUES("73336", "15", "2018-01-06 16:12:30", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("73337", "8", "2018-01-06 16:14:07", "5.9.98.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("73338", "9", "2018-01-06 16:14:26", "5.9.98.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("73339", "6", "2018-01-06 16:15:39", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("73340", "10", "2018-01-06 17:21:44", "72.14.199.81", "2");
INSERT INTO `wp_gf_form_view` VALUES("73341", "18", "2018-01-06 17:28:41", "5.9.98.130", "48");
INSERT INTO `wp_gf_form_view` VALUES("73342", "3", "2018-01-06 18:27:08", "109.169.29.30", "31");
INSERT INTO `wp_gf_form_view` VALUES("73343", "18", "2018-01-06 18:30:50", "109.169.29.30", "98");
INSERT INTO `wp_gf_form_view` VALUES("73344", "8", "2018-01-06 18:36:51", "68.180.228.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("73345", "9", "2018-01-06 18:58:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73346", "10", "2018-01-06 18:58:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73347", "15", "2018-01-06 18:58:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73348", "14", "2018-01-06 19:26:10", "157.55.39.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("73349", "10", "2018-01-06 19:28:01", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73350", "10", "2018-01-06 20:05:36", "54.36.148.27", "6");
INSERT INTO `wp_gf_form_view` VALUES("73351", "3", "2018-01-06 20:39:37", "5.188.211.15", "46");
INSERT INTO `wp_gf_form_view` VALUES("73352", "8", "2018-01-06 20:39:37", "5.188.211.15", "4");
INSERT INTO `wp_gf_form_view` VALUES("73353", "18", "2018-01-06 20:42:51", "5.188.211.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("73354", "9", "2018-01-06 20:59:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73355", "15", "2018-01-06 20:59:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73356", "18", "2018-01-06 21:03:56", "5.9.98.130", "192");
INSERT INTO `wp_gf_form_view` VALUES("73357", "10", "2018-01-06 21:28:52", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73358", "3", "2018-01-06 22:53:17", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73359", "9", "2018-01-06 22:53:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73360", "8", "2018-01-06 22:53:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73361", "10", "2018-01-06 22:53:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73362", "15", "2018-01-06 22:53:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73363", "18", "2018-01-06 22:53:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73364", "18", "2018-01-06 23:19:56", "154.20.28.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("73365", "10", "2018-01-06 23:29:39", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73366", "3", "2018-01-07 00:42:29", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73367", "9", "2018-01-07 00:42:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73368", "8", "2018-01-07 00:42:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73369", "10", "2018-01-07 00:42:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73370", "15", "2018-01-07 00:42:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73371", "18", "2018-01-07 00:42:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73372", "18", "2018-01-07 01:09:38", "154.20.28.203", "222");
INSERT INTO `wp_gf_form_view` VALUES("73373", "10", "2018-01-07 01:30:31", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("73374", "14", "2018-01-07 01:52:58", "157.55.39.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("73375", "18", "2018-01-07 02:00:02", "5.9.98.130", "166");
INSERT INTO `wp_gf_form_view` VALUES("73376", "3", "2018-01-07 02:43:42", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73377", "9", "2018-01-07 02:43:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73378", "8", "2018-01-07 02:43:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73379", "10", "2018-01-07 02:43:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73380", "15", "2018-01-07 02:43:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73381", "10", "2018-01-07 03:31:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73382", "3", "2018-01-07 03:32:14", "136.243.59.237", "1");
INSERT INTO `wp_gf_form_view` VALUES("73383", "3", "2018-01-07 04:22:27", "54.36.148.180", "2");
INSERT INTO `wp_gf_form_view` VALUES("73384", "3", "2018-01-07 05:08:31", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73385", "9", "2018-01-07 05:08:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73386", "8", "2018-01-07 05:08:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73387", "10", "2018-01-07 05:08:36", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73388", "15", "2018-01-07 05:08:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73389", "18", "2018-01-07 05:08:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73390", "3", "2018-01-07 07:05:02", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73391", "9", "2018-01-07 07:05:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73392", "8", "2018-01-07 07:05:05", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73393", "10", "2018-01-07 07:05:07", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("73394", "15", "2018-01-07 07:05:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73395", "18", "2018-01-07 07:05:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73396", "3", "2018-01-07 08:56:11", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73397", "9", "2018-01-07 08:56:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73398", "8", "2018-01-07 08:56:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73399", "10", "2018-01-07 08:56:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73400", "15", "2018-01-07 08:56:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73401", "18", "2018-01-07 08:56:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73402", "8", "2018-01-07 10:35:15", "207.46.13.78", "5");
INSERT INTO `wp_gf_form_view` VALUES("73403", "3", "2018-01-07 10:55:09", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73404", "9", "2018-01-07 10:55:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73405", "10", "2018-01-07 10:55:13", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("73406", "15", "2018-01-07 10:55:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73407", "18", "2018-01-07 10:55:21", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73408", "18", "2018-01-07 11:00:01", "5.9.98.130", "498");
INSERT INTO `wp_gf_form_view` VALUES("73409", "18", "2018-01-07 12:00:01", "5.9.98.130", "269");
INSERT INTO `wp_gf_form_view` VALUES("73410", "3", "2018-01-07 12:16:01", "88.198.54.49", "30");
INSERT INTO `wp_gf_form_view` VALUES("73411", "9", "2018-01-07 12:45:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73412", "8", "2018-01-07 12:45:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73413", "10", "2018-01-07 12:45:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73414", "15", "2018-01-07 12:45:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73415", "10", "2018-01-07 13:00:26", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73416", "18", "2018-01-07 13:08:48", "66.249.79.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("73417", "3", "2018-01-07 14:39:47", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73418", "9", "2018-01-07 14:39:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73419", "8", "2018-01-07 14:39:50", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73420", "10", "2018-01-07 14:39:52", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("73421", "15", "2018-01-07 14:39:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73422", "18", "2018-01-07 14:40:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73423", "10", "2018-01-07 15:32:00", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73424", "3", "2018-01-07 16:46:11", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73425", "9", "2018-01-07 16:46:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73426", "8", "2018-01-07 16:46:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73427", "10", "2018-01-07 16:46:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73428", "15", "2018-01-07 16:46:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73429", "18", "2018-01-07 16:46:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73430", "3", "2018-01-07 17:19:48", "54.36.148.97", "1");
INSERT INTO `wp_gf_form_view` VALUES("73431", "10", "2018-01-07 17:32:50", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73432", "10", "2018-01-07 18:03:34", "199.16.157.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("73433", "3", "2018-01-07 18:30:39", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73434", "9", "2018-01-07 18:30:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73435", "8", "2018-01-07 18:30:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73436", "15", "2018-01-07 18:30:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73437", "18", "2018-01-07 18:30:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73438", "14", "2018-01-07 19:09:09", "108.180.51.239", "1");
INSERT INTO `wp_gf_form_view` VALUES("73439", "10", "2018-01-07 19:19:55", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73440", "3", "2018-01-07 20:14:40", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73441", "9", "2018-01-07 20:14:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73442", "8", "2018-01-07 20:14:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73443", "10", "2018-01-07 20:14:42", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("73444", "15", "2018-01-07 20:14:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73445", "18", "2018-01-07 20:14:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73446", "14", "2018-01-07 21:47:48", "134.87.137.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("73447", "3", "2018-01-07 22:16:15", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("73448", "9", "2018-01-07 22:16:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73449", "8", "2018-01-07 22:16:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73450", "10", "2018-01-07 22:16:18", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73451", "15", "2018-01-07 22:16:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73452", "18", "2018-01-07 22:16:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73453", "18", "2018-01-07 23:08:05", "96.54.47.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("73454", "3", "2018-01-07 23:37:10", "180.76.15.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("73455", "3", "2018-01-08 00:26:44", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73456", "9", "2018-01-08 00:26:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73457", "8", "2018-01-08 00:26:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73458", "10", "2018-01-08 00:26:47", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73459", "15", "2018-01-08 00:26:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73460", "18", "2018-01-08 00:26:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73461", "10", "2018-01-08 01:33:46", "54.36.149.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("73462", "3", "2018-01-08 01:35:02", "54.36.148.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("73463", "3", "2018-01-08 02:31:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73464", "9", "2018-01-08 02:31:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73465", "8", "2018-01-08 02:31:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73466", "10", "2018-01-08 02:31:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73467", "15", "2018-01-08 02:31:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73468", "18", "2018-01-08 02:31:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73469", "10", "2018-01-08 03:16:47", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73470", "3", "2018-01-08 06:46:15", "54.36.148.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("73471", "10", "2018-01-08 08:44:16", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("73472", "3", "2018-01-08 08:45:36", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73473", "9", "2018-01-08 08:45:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73474", "8", "2018-01-08 08:45:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73475", "15", "2018-01-08 08:45:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73476", "18", "2018-01-08 08:45:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73477", "10", "2018-01-08 09:35:02", "66.249.91.4", "1");
INSERT INTO `wp_gf_form_view` VALUES("73478", "18", "2018-01-08 09:48:19", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("73479", "3", "2018-01-08 10:45:54", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73480", "9", "2018-01-08 10:45:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73481", "8", "2018-01-08 10:45:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73482", "10", "2018-01-08 10:45:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73483", "15", "2018-01-08 10:45:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73484", "18", "2018-01-08 10:46:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73485", "3", "2018-01-08 11:29:20", "157.55.39.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("73486", "3", "2018-01-08 12:14:29", "5.188.211.16", "33");
INSERT INTO `wp_gf_form_view` VALUES("73487", "9", "2018-01-08 12:42:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73488", "8", "2018-01-08 12:42:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73489", "10", "2018-01-08 12:42:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73490", "15", "2018-01-08 12:42:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73491", "18", "2018-01-08 12:42:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73492", "10", "2018-01-08 13:00:19", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73493", "3", "2018-01-08 14:42:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73494", "9", "2018-01-08 14:42:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73495", "8", "2018-01-08 14:42:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73496", "10", "2018-01-08 14:42:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73497", "15", "2018-01-08 14:42:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73498", "18", "2018-01-08 14:42:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73499", "18", "2018-01-08 15:13:09", "77.75.77.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("73500", "10", "2018-01-08 15:26:25", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73501", "3", "2018-01-08 16:05:29", "108.180.147.111", "32");
INSERT INTO `wp_gf_form_view` VALUES("73502", "9", "2018-01-08 16:52:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73503", "8", "2018-01-08 16:52:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73504", "10", "2018-01-08 16:52:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73505", "15", "2018-01-08 16:52:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73506", "18", "2018-01-08 16:52:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73507", "10", "2018-01-08 17:04:41", "207.46.13.206", "7");
INSERT INTO `wp_gf_form_view` VALUES("73508", "3", "2018-01-08 17:12:01", "157.55.39.5", "20");
INSERT INTO `wp_gf_form_view` VALUES("73509", "9", "2018-01-08 17:12:17", "207.46.13.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("73510", "8", "2018-01-08 17:13:18", "40.77.167.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("73511", "6", "2018-01-08 17:13:23", "157.55.39.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("73512", "11", "2018-01-08 17:16:07", "40.77.167.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("73513", "18", "2018-01-08 17:44:21", "23.16.121.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("73514", "18", "2018-01-08 18:38:29", "24.108.184.241", "2");
INSERT INTO `wp_gf_form_view` VALUES("73515", "3", "2018-01-08 18:57:22", "40.77.167.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("73516", "3", "2018-01-08 19:14:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73517", "9", "2018-01-08 19:14:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73518", "8", "2018-01-08 19:14:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73519", "10", "2018-01-08 19:14:18", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73520", "15", "2018-01-08 19:14:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73521", "18", "2018-01-08 19:14:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73522", "10", "2018-01-08 21:28:57", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73523", "3", "2018-01-08 22:19:19", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73524", "9", "2018-01-08 22:19:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73525", "8", "2018-01-08 22:19:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73526", "10", "2018-01-08 22:19:21", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73527", "15", "2018-01-08 22:19:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73528", "18", "2018-01-08 22:19:25", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("73529", "14", "2018-01-08 22:50:10", "207.81.10.162", "1");
INSERT INTO `wp_gf_form_view` VALUES("73530", "10", "2018-01-08 23:29:45", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73531", "18", "2018-01-08 23:39:14", "68.180.228.176", "3");
INSERT INTO `wp_gf_form_view` VALUES("73532", "3", "2018-01-09 00:46:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73533", "9", "2018-01-09 00:46:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73534", "8", "2018-01-09 00:46:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73535", "10", "2018-01-09 00:46:18", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73536", "15", "2018-01-09 00:46:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73537", "18", "2018-01-09 00:46:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73538", "10", "2018-01-09 01:30:35", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73539", "3", "2018-01-09 02:52:57", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73540", "9", "2018-01-09 02:52:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73541", "8", "2018-01-09 02:52:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73542", "10", "2018-01-09 02:52:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73543", "15", "2018-01-09 02:53:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73544", "18", "2018-01-09 02:53:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73545", "10", "2018-01-09 03:31:26", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73546", "3", "2018-01-09 03:41:19", "207.46.13.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("73547", "10", "2018-01-09 04:09:20", "207.46.13.183", "7");
INSERT INTO `wp_gf_form_view` VALUES("73548", "3", "2018-01-09 04:50:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73549", "9", "2018-01-09 04:50:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73550", "8", "2018-01-09 04:50:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73551", "15", "2018-01-09 04:50:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73552", "18", "2018-01-09 04:50:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73553", "10", "2018-01-09 05:32:14", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73554", "3", "2018-01-09 07:06:31", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73555", "9", "2018-01-09 07:06:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73556", "8", "2018-01-09 07:06:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73557", "10", "2018-01-09 07:06:33", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73558", "15", "2018-01-09 07:06:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73559", "18", "2018-01-09 07:06:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73560", "8", "2018-01-09 08:09:14", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("73561", "3", "2018-01-09 08:16:48", "180.76.15.15", "3");
INSERT INTO `wp_gf_form_view` VALUES("73562", "10", "2018-01-09 09:00:47", "194.187.170.117", "8");
INSERT INTO `wp_gf_form_view` VALUES("73563", "3", "2018-01-09 09:07:15", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73564", "9", "2018-01-09 09:07:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73565", "8", "2018-01-09 09:07:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73566", "15", "2018-01-09 09:07:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73567", "18", "2018-01-09 09:07:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73568", "10", "2018-01-09 10:06:01", "194.187.170.117", "4");
INSERT INTO `wp_gf_form_view` VALUES("73569", "3", "2018-01-09 10:11:11", "194.187.170.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("73570", "3", "2018-01-09 11:22:52", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73571", "9", "2018-01-09 11:22:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73572", "8", "2018-01-09 11:22:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73573", "10", "2018-01-09 11:22:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73574", "15", "2018-01-09 11:22:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73575", "18", "2018-01-09 11:22:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73576", "10", "2018-01-09 13:00:20", "184.66.129.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("73577", "15", "2018-01-09 13:16:13", "62.210.251.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("73578", "3", "2018-01-09 13:19:44", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73579", "9", "2018-01-09 13:19:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73580", "8", "2018-01-09 13:19:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73581", "18", "2018-01-09 13:19:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73582", "3", "2018-01-09 15:19:05", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73583", "9", "2018-01-09 15:19:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73584", "8", "2018-01-09 15:19:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73585", "10", "2018-01-09 15:19:07", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73586", "15", "2018-01-09 15:19:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73587", "18", "2018-01-09 15:19:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73588", "3", "2018-01-09 16:47:45", "5.9.156.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("73589", "18", "2018-01-09 16:52:42", "96.54.47.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("73590", "3", "2018-01-09 17:17:20", "46.229.168.79", "106");
INSERT INTO `wp_gf_form_view` VALUES("73591", "11", "2018-01-09 17:19:07", "46.229.168.68", "7");
INSERT INTO `wp_gf_form_view` VALUES("73592", "6", "2018-01-09 17:22:05", "46.229.168.67", "3");
INSERT INTO `wp_gf_form_view` VALUES("73593", "9", "2018-01-09 17:23:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73594", "8", "2018-01-09 17:23:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73595", "10", "2018-01-09 17:23:21", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("73596", "15", "2018-01-09 17:23:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73597", "18", "2018-01-09 17:23:26", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73598", "14", "2018-01-09 17:37:52", "46.229.168.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("73599", "10", "2018-01-09 18:00:46", "207.46.13.184", "1");
INSERT INTO `wp_gf_form_view` VALUES("73600", "18", "2018-01-09 18:14:38", "96.54.47.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("73601", "3", "2018-01-09 18:18:44", "96.54.232.157", "2");
INSERT INTO `wp_gf_form_view` VALUES("73602", "18", "2018-01-09 19:12:58", "96.54.47.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("73603", "3", "2018-01-09 19:15:08", "173.183.121.164", "1");
INSERT INTO `wp_gf_form_view` VALUES("73604", "14", "2018-01-09 19:44:14", "154.5.205.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("73605", "3", "2018-01-09 20:13:47", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("73606", "9", "2018-01-09 20:13:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73607", "8", "2018-01-09 20:13:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73608", "10", "2018-01-09 20:13:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73609", "15", "2018-01-09 20:13:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73610", "18", "2018-01-09 20:13:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73611", "18", "2018-01-09 21:36:49", "138.197.167.244", "3");
INSERT INTO `wp_gf_form_view` VALUES("73612", "14", "2018-01-09 21:42:30", "104.223.52.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("73613", "3", "2018-01-09 21:42:34", "104.223.52.151", "3");
INSERT INTO `wp_gf_form_view` VALUES("73614", "3", "2018-01-09 22:19:28", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73615", "9", "2018-01-09 22:19:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73616", "8", "2018-01-09 22:19:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73617", "10", "2018-01-09 22:19:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73618", "15", "2018-01-09 22:19:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73619", "18", "2018-01-09 22:19:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73620", "3", "2018-01-09 23:14:15", "64.114.207.91", "4");
INSERT INTO `wp_gf_form_view` VALUES("73621", "3", "2018-01-10 00:22:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73622", "9", "2018-01-10 00:22:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73623", "8", "2018-01-10 00:22:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73624", "10", "2018-01-10 00:22:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73625", "15", "2018-01-10 00:22:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73626", "18", "2018-01-10 00:22:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73627", "3", "2018-01-10 02:38:40", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73628", "9", "2018-01-10 02:38:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73629", "8", "2018-01-10 02:38:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73630", "10", "2018-01-10 02:38:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73631", "15", "2018-01-10 02:38:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73632", "18", "2018-01-10 02:38:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73633", "3", "2018-01-10 03:53:37", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("73634", "10", "2018-01-10 04:13:03", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("73635", "3", "2018-01-10 04:36:35", "180.76.15.6", "30");
INSERT INTO `wp_gf_form_view` VALUES("73636", "9", "2018-01-10 04:41:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73637", "8", "2018-01-10 04:41:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73638", "15", "2018-01-10 04:41:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73639", "18", "2018-01-10 04:41:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73640", "3", "2018-01-10 05:09:55", "180.76.15.27", "1");
INSERT INTO `wp_gf_form_view` VALUES("73641", "10", "2018-01-10 06:19:19", "194.187.170.147", "8");
INSERT INTO `wp_gf_form_view` VALUES("73642", "3", "2018-01-10 06:49:03", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73643", "9", "2018-01-10 06:49:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73644", "8", "2018-01-10 06:49:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73645", "15", "2018-01-10 06:49:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73646", "18", "2018-01-10 06:49:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73647", "3", "2018-01-10 07:02:11", "194.187.170.147", "2");
INSERT INTO `wp_gf_form_view` VALUES("73648", "3", "2018-01-10 08:54:50", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73649", "9", "2018-01-10 08:54:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73650", "8", "2018-01-10 08:54:51", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73651", "10", "2018-01-10 08:54:52", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("73652", "15", "2018-01-10 08:54:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73653", "18", "2018-01-10 08:54:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73654", "18", "2018-01-10 09:22:18", "70.36.107.190", "3");
INSERT INTO `wp_gf_form_view` VALUES("73655", "8", "2018-01-10 09:38:48", "65.132.59.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("73656", "18", "2018-01-10 10:16:35", "70.36.107.190", "2");
INSERT INTO `wp_gf_form_view` VALUES("73657", "3", "2018-01-10 10:46:39", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73658", "9", "2018-01-10 10:46:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73659", "8", "2018-01-10 10:46:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73660", "10", "2018-01-10 10:46:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73661", "15", "2018-01-10 10:46:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73662", "18", "2018-01-10 11:00:04", "70.36.107.50", "5");
INSERT INTO `wp_gf_form_view` VALUES("73663", "18", "2018-01-10 12:00:01", "70.36.107.190", "4");
INSERT INTO `wp_gf_form_view` VALUES("73664", "3", "2018-01-10 12:49:37", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73665", "9", "2018-01-10 12:49:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73666", "8", "2018-01-10 12:49:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73667", "10", "2018-01-10 12:49:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73668", "15", "2018-01-10 12:49:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73669", "10", "2018-01-10 13:00:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73670", "18", "2018-01-10 13:06:43", "70.36.107.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("73671", "3", "2018-01-10 13:19:00", "173.212.242.246", "2");
INSERT INTO `wp_gf_form_view` VALUES("73672", "10", "2018-01-10 14:38:04", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73673", "3", "2018-01-10 15:00:00", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73674", "9", "2018-01-10 15:00:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73675", "8", "2018-01-10 15:00:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73676", "10", "2018-01-10 15:00:02", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("73677", "15", "2018-01-10 15:00:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73678", "18", "2018-01-10 15:00:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73679", "3", "2018-01-10 16:51:10", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73680", "9", "2018-01-10 16:51:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73681", "8", "2018-01-10 16:51:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73682", "10", "2018-01-10 16:51:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73683", "15", "2018-01-10 16:51:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73684", "18", "2018-01-10 16:51:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73685", "10", "2018-01-10 17:01:53", "194.187.170.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("73686", "18", "2018-01-10 17:04:40", "142.36.92.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("73687", "3", "2018-01-10 17:45:19", "194.187.170.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("73688", "10", "2018-01-10 18:08:00", "184.66.129.248", "8");
INSERT INTO `wp_gf_form_view` VALUES("73689", "3", "2018-01-10 18:10:14", "54.36.149.32", "30");
INSERT INTO `wp_gf_form_view` VALUES("73690", "9", "2018-01-10 18:45:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73691", "8", "2018-01-10 18:45:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73692", "15", "2018-01-10 18:45:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73693", "18", "2018-01-10 18:45:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73694", "10", "2018-01-10 19:19:35", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("73695", "3", "2018-01-10 20:35:29", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73696", "9", "2018-01-10 20:35:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73697", "8", "2018-01-10 20:35:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73698", "10", "2018-01-10 20:35:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73699", "15", "2018-01-10 20:35:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73700", "18", "2018-01-10 20:35:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73701", "10", "2018-01-10 21:44:04", "157.55.39.126", "8");
INSERT INTO `wp_gf_form_view` VALUES("73702", "9", "2018-01-10 21:44:13", "157.55.39.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("73703", "3", "2018-01-10 21:44:26", "40.77.167.59", "12");
INSERT INTO `wp_gf_form_view` VALUES("73704", "3", "2018-01-10 22:02:02", "157.55.39.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("73705", "3", "2018-01-10 23:08:35", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73706", "9", "2018-01-10 23:08:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73707", "8", "2018-01-10 23:08:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73708", "10", "2018-01-10 23:08:37", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73709", "15", "2018-01-10 23:08:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73710", "18", "2018-01-10 23:08:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73711", "3", "2018-01-11 00:14:56", "34.234.83.0", "2");
INSERT INTO `wp_gf_form_view` VALUES("73712", "3", "2018-01-11 01:09:57", "52.37.180.245", "59");
INSERT INTO `wp_gf_form_view` VALUES("73713", "9", "2018-01-11 01:09:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73714", "8", "2018-01-11 01:09:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73715", "10", "2018-01-11 01:09:59", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("73716", "15", "2018-01-11 01:10:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73717", "18", "2018-01-11 01:10:04", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("73718", "10", "2018-01-11 02:11:16", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73719", "3", "2018-01-11 02:48:08", "75.157.25.101", "1");
INSERT INTO `wp_gf_form_view` VALUES("73720", "3", "2018-01-11 03:20:36", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73721", "9", "2018-01-11 03:20:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73722", "8", "2018-01-11 03:20:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73723", "10", "2018-01-11 03:20:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73724", "15", "2018-01-11 03:20:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73725", "18", "2018-01-11 03:20:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73726", "14", "2018-01-11 04:00:02", "184.66.247.1", "5");
INSERT INTO `wp_gf_form_view` VALUES("73727", "10", "2018-01-11 05:20:03", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("73728", "3", "2018-01-11 05:22:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73729", "9", "2018-01-11 05:22:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73730", "8", "2018-01-11 05:22:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73731", "15", "2018-01-11 05:22:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73732", "18", "2018-01-11 05:22:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73733", "3", "2018-01-11 06:01:56", "34.227.7.60", "3");
INSERT INTO `wp_gf_form_view` VALUES("73734", "10", "2018-01-11 07:20:50", "184.66.129.248", "11");
INSERT INTO `wp_gf_form_view` VALUES("73735", "3", "2018-01-11 07:29:53", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73736", "9", "2018-01-11 07:29:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73737", "8", "2018-01-11 07:29:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73738", "15", "2018-01-11 07:29:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73739", "18", "2018-01-11 07:29:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73740", "10", "2018-01-11 09:09:09", "66.249.92.73", "7");
INSERT INTO `wp_gf_form_view` VALUES("73741", "3", "2018-01-11 09:22:51", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73742", "9", "2018-01-11 09:22:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73743", "8", "2018-01-11 09:22:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73744", "15", "2018-01-11 09:22:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73745", "18", "2018-01-11 09:23:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73746", "3", "2018-01-11 11:17:58", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73747", "9", "2018-01-11 11:17:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73748", "8", "2018-01-11 11:18:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73749", "10", "2018-01-11 11:18:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73750", "15", "2018-01-11 11:18:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73751", "18", "2018-01-11 11:18:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73752", "3", "2018-01-11 13:18:01", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73753", "9", "2018-01-11 13:18:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73754", "8", "2018-01-11 13:18:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73755", "10", "2018-01-11 13:18:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73756", "15", "2018-01-11 13:18:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73757", "18", "2018-01-11 13:18:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73758", "3", "2018-01-11 15:14:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73759", "9", "2018-01-11 15:14:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73760", "8", "2018-01-11 15:14:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73761", "10", "2018-01-11 15:14:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73762", "15", "2018-01-11 15:14:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73763", "18", "2018-01-11 15:14:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73764", "14", "2018-01-11 16:47:06", "195.154.21.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("73765", "3", "2018-01-11 17:14:16", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73766", "9", "2018-01-11 17:14:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73767", "8", "2018-01-11 17:14:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73768", "10", "2018-01-11 17:14:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73769", "15", "2018-01-11 17:14:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73770", "18", "2018-01-11 17:14:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73771", "3", "2018-01-11 19:02:11", "184.66.42.23", "30");
INSERT INTO `wp_gf_form_view` VALUES("73772", "18", "2018-01-11 19:02:48", "184.66.42.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("73773", "9", "2018-01-11 19:14:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73774", "8", "2018-01-11 19:14:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73775", "10", "2018-01-11 19:14:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73776", "15", "2018-01-11 19:14:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73777", "18", "2018-01-11 20:13:12", "24.108.184.241", "1");
INSERT INTO `wp_gf_form_view` VALUES("73778", "3", "2018-01-11 20:26:22", "184.71.14.6", "1");
INSERT INTO `wp_gf_form_view` VALUES("73779", "3", "2018-01-11 21:47:15", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73780", "9", "2018-01-11 21:47:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73781", "8", "2018-01-11 21:47:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73782", "10", "2018-01-11 21:47:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73783", "15", "2018-01-11 21:47:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73784", "18", "2018-01-11 21:47:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73785", "3", "2018-01-11 23:23:55", "195.154.146.17", "30");
INSERT INTO `wp_gf_form_view` VALUES("73786", "9", "2018-01-11 23:33:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73787", "8", "2018-01-11 23:33:51", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73788", "10", "2018-01-11 23:33:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73789", "15", "2018-01-11 23:33:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73790", "18", "2018-01-11 23:33:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73791", "10", "2018-01-12 00:13:47", "72.14.199.119", "1");
INSERT INTO `wp_gf_form_view` VALUES("73792", "18", "2018-01-12 00:41:42", "75.157.169.59", "1");
INSERT INTO `wp_gf_form_view` VALUES("73793", "10", "2018-01-12 01:26:16", "184.66.129.248", "10");
INSERT INTO `wp_gf_form_view` VALUES("73794", "3", "2018-01-12 01:41:39", "207.46.13.143", "30");
INSERT INTO `wp_gf_form_view` VALUES("73795", "9", "2018-01-12 01:50:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73796", "8", "2018-01-12 01:50:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73797", "15", "2018-01-12 01:51:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73798", "18", "2018-01-12 01:51:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73799", "18", "2018-01-12 02:31:11", "70.67.110.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("73800", "3", "2018-01-12 03:48:36", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73801", "9", "2018-01-12 03:48:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73802", "8", "2018-01-12 03:48:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73803", "10", "2018-01-12 03:48:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73804", "15", "2018-01-12 03:48:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73805", "18", "2018-01-12 03:48:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73806", "3", "2018-01-12 05:47:13", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73807", "9", "2018-01-12 05:47:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73808", "8", "2018-01-12 05:47:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73809", "10", "2018-01-12 05:47:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73810", "15", "2018-01-12 05:47:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73811", "18", "2018-01-12 05:47:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73812", "18", "2018-01-12 06:16:19", "54.36.148.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("73813", "3", "2018-01-12 08:05:40", "52.37.180.245", "38");
INSERT INTO `wp_gf_form_view` VALUES("73814", "9", "2018-01-12 08:05:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73815", "8", "2018-01-12 08:05:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73816", "10", "2018-01-12 08:05:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73817", "15", "2018-01-12 08:05:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73818", "18", "2018-01-12 08:05:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73819", "14", "2018-01-12 09:05:27", "104.223.58.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("73820", "3", "2018-01-12 10:04:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73821", "9", "2018-01-12 10:04:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73822", "8", "2018-01-12 10:04:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73823", "10", "2018-01-12 10:04:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73824", "15", "2018-01-12 10:04:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73825", "18", "2018-01-12 10:04:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73826", "3", "2018-01-12 11:09:47", "54.165.59.7", "30");
INSERT INTO `wp_gf_form_view` VALUES("73827", "9", "2018-01-12 11:54:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73828", "8", "2018-01-12 11:54:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73829", "10", "2018-01-12 11:54:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73830", "15", "2018-01-12 11:54:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73831", "18", "2018-01-12 11:54:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73832", "10", "2018-01-12 12:23:09", "72.14.199.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("73833", "3", "2018-01-12 13:43:27", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73834", "9", "2018-01-12 13:43:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73835", "8", "2018-01-12 13:43:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73836", "10", "2018-01-12 13:43:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73837", "15", "2018-01-12 13:43:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73838", "18", "2018-01-12 13:43:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73839", "10", "2018-01-12 15:05:09", "184.66.129.248", "10");
INSERT INTO `wp_gf_form_view` VALUES("73840", "3", "2018-01-12 15:30:14", "70.79.70.221", "30");
INSERT INTO `wp_gf_form_view` VALUES("73841", "9", "2018-01-12 15:46:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73842", "8", "2018-01-12 15:46:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73843", "15", "2018-01-12 15:46:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73844", "18", "2018-01-12 15:46:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73845", "3", "2018-01-12 17:35:07", "207.6.155.37", "32");
INSERT INTO `wp_gf_form_view` VALUES("73846", "18", "2018-01-12 17:35:56", "207.6.155.37", "3");
INSERT INTO `wp_gf_form_view` VALUES("73847", "9", "2018-01-12 17:47:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73848", "8", "2018-01-12 17:47:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73849", "10", "2018-01-12 17:47:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73850", "15", "2018-01-12 17:47:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73851", "10", "2018-01-12 19:33:30", "54.36.148.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("73852", "14", "2018-01-12 19:35:21", "202.159.36.70", "3");
INSERT INTO `wp_gf_form_view` VALUES("73853", "18", "2018-01-12 19:50:54", "145.132.2.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("73854", "3", "2018-01-12 19:51:06", "145.132.2.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("73855", "3", "2018-01-12 20:08:25", "52.37.180.245", "44");
INSERT INTO `wp_gf_form_view` VALUES("73856", "9", "2018-01-12 20:08:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73857", "8", "2018-01-12 20:08:27", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("73858", "10", "2018-01-12 20:08:28", "52.37.180.245", "12");
INSERT INTO `wp_gf_form_view` VALUES("73859", "15", "2018-01-12 20:08:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73860", "18", "2018-01-12 20:08:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73861", "11", "2018-01-12 20:48:09", "157.55.39.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("73862", "6", "2018-01-12 20:48:14", "157.55.39.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("73863", "3", "2018-01-12 21:09:58", "142.31.172.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("73864", "18", "2018-01-12 21:18:22", "142.4.218.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("73865", "3", "2018-01-12 22:08:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73866", "9", "2018-01-12 22:08:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73867", "8", "2018-01-12 22:08:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73868", "10", "2018-01-12 22:08:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73869", "15", "2018-01-12 22:08:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73870", "18", "2018-01-12 22:08:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73871", "3", "2018-01-12 23:41:48", "54.36.148.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("73872", "3", "2018-01-13 00:01:58", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73873", "9", "2018-01-13 00:01:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73874", "8", "2018-01-13 00:01:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73875", "10", "2018-01-13 00:02:00", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73876", "15", "2018-01-13 00:02:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73877", "18", "2018-01-13 00:02:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73878", "10", "2018-01-13 01:19:33", "72.14.199.117", "6");
INSERT INTO `wp_gf_form_view` VALUES("73879", "3", "2018-01-13 01:51:45", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73880", "9", "2018-01-13 01:51:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73881", "8", "2018-01-13 01:51:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73882", "15", "2018-01-13 01:51:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73883", "18", "2018-01-13 01:51:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73884", "15", "2018-01-13 02:15:58", "100.43.91.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("73885", "10", "2018-01-13 02:16:04", "100.43.91.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("73886", "15", "2018-01-13 03:05:53", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("73887", "10", "2018-01-13 03:47:13", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("73888", "3", "2018-01-13 03:49:07", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("73889", "9", "2018-01-13 03:49:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73890", "8", "2018-01-13 03:49:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73891", "18", "2018-01-13 03:49:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73892", "10", "2018-01-13 04:08:22", "40.77.167.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("73893", "3", "2018-01-13 04:18:13", "216.244.66.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("73894", "3", "2018-01-13 05:47:24", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73895", "9", "2018-01-13 05:47:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73896", "8", "2018-01-13 05:47:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73897", "10", "2018-01-13 05:47:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73898", "15", "2018-01-13 05:47:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73899", "18", "2018-01-13 05:47:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73900", "3", "2018-01-13 06:13:42", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("73901", "10", "2018-01-13 07:28:46", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("73902", "3", "2018-01-13 07:51:50", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73903", "9", "2018-01-13 07:51:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73904", "8", "2018-01-13 07:51:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73905", "15", "2018-01-13 07:51:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73906", "18", "2018-01-13 07:52:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73907", "3", "2018-01-13 08:09:03", "54.36.149.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("73908", "15", "2018-01-13 09:13:48", "100.43.91.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("73909", "10", "2018-01-13 09:24:58", "100.43.91.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("73910", "6", "2018-01-13 09:28:22", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("73911", "3", "2018-01-13 09:29:17", "216.244.66.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("73912", "9", "2018-01-13 09:37:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73913", "8", "2018-01-13 09:37:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73914", "18", "2018-01-13 09:37:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73915", "14", "2018-01-13 09:47:05", "142.234.203.166", "3");
INSERT INTO `wp_gf_form_view` VALUES("73916", "3", "2018-01-13 10:06:32", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("73917", "18", "2018-01-13 10:31:10", "46.105.98.166", "5");
INSERT INTO `wp_gf_form_view` VALUES("73918", "14", "2018-01-13 10:31:33", "46.105.98.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("73919", "3", "2018-01-13 11:26:11", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73920", "9", "2018-01-13 11:26:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73921", "8", "2018-01-13 11:26:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73922", "10", "2018-01-13 11:26:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73923", "15", "2018-01-13 11:26:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73924", "18", "2018-01-13 11:26:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73925", "3", "2018-01-13 12:39:22", "54.36.148.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("73926", "18", "2018-01-13 12:52:32", "207.46.13.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("73927", "3", "2018-01-13 13:02:55", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("73928", "9", "2018-01-13 13:07:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73929", "8", "2018-01-13 13:07:26", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("73930", "10", "2018-01-13 13:07:27", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("73931", "15", "2018-01-13 13:07:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73932", "18", "2018-01-13 13:07:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73933", "3", "2018-01-13 14:51:43", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73934", "9", "2018-01-13 14:51:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73935", "8", "2018-01-13 14:51:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73936", "10", "2018-01-13 14:51:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73937", "15", "2018-01-13 14:51:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73938", "18", "2018-01-13 14:51:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73939", "3", "2018-01-13 15:38:29", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("73940", "3", "2018-01-13 16:21:06", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("73941", "18", "2018-01-13 16:21:33", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("73942", "9", "2018-01-13 16:37:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73943", "8", "2018-01-13 16:37:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73944", "10", "2018-01-13 16:37:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73945", "15", "2018-01-13 16:37:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73946", "3", "2018-01-13 17:14:43", "128.177.10.232", "2");
INSERT INTO `wp_gf_form_view` VALUES("73947", "18", "2018-01-13 17:14:48", "128.177.10.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("73948", "3", "2018-01-13 18:21:44", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73949", "9", "2018-01-13 18:21:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73950", "8", "2018-01-13 18:21:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73951", "10", "2018-01-13 18:21:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73952", "15", "2018-01-13 18:21:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73953", "18", "2018-01-13 18:21:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73954", "3", "2018-01-13 19:21:55", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("73955", "3", "2018-01-13 20:04:24", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("73956", "9", "2018-01-13 20:16:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73957", "8", "2018-01-13 20:16:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73958", "10", "2018-01-13 20:16:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73959", "15", "2018-01-13 20:16:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73960", "18", "2018-01-13 20:16:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73961", "18", "2018-01-13 21:14:59", "154.20.28.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("73962", "18", "2018-01-13 22:19:05", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("73963", "3", "2018-01-13 22:22:09", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73964", "9", "2018-01-13 22:22:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73965", "8", "2018-01-13 22:22:11", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("73966", "10", "2018-01-13 22:22:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73967", "15", "2018-01-13 22:22:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73968", "10", "2018-01-13 23:34:47", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73969", "3", "2018-01-14 00:02:38", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73970", "9", "2018-01-14 00:02:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73971", "8", "2018-01-14 00:02:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73972", "10", "2018-01-14 00:02:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("73973", "15", "2018-01-14 00:02:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73974", "18", "2018-01-14 00:02:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73975", "3", "2018-01-14 01:33:23", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("73976", "10", "2018-01-14 01:39:44", "72.14.199.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("73977", "9", "2018-01-14 01:46:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73978", "8", "2018-01-14 01:46:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73979", "15", "2018-01-14 01:46:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73980", "18", "2018-01-14 01:46:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73981", "10", "2018-01-14 02:41:48", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("73982", "3", "2018-01-14 03:35:00", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("73983", "9", "2018-01-14 03:35:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73984", "8", "2018-01-14 03:35:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("73985", "10", "2018-01-14 03:35:02", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("73986", "15", "2018-01-14 03:35:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73987", "18", "2018-01-14 03:35:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73988", "14", "2018-01-14 04:35:23", "190.242.119.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("73989", "10", "2018-01-14 05:15:14", "40.77.167.175", "6");
INSERT INTO `wp_gf_form_view` VALUES("73990", "3", "2018-01-14 05:31:24", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("73991", "9", "2018-01-14 05:31:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73992", "8", "2018-01-14 05:31:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73993", "15", "2018-01-14 05:31:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73994", "18", "2018-01-14 05:31:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("73995", "18", "2018-01-14 06:44:18", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("73996", "3", "2018-01-14 07:20:19", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("73997", "9", "2018-01-14 07:20:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73998", "8", "2018-01-14 07:20:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("73999", "10", "2018-01-14 07:20:22", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74000", "15", "2018-01-14 07:20:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74001", "18", "2018-01-14 07:20:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74002", "3", "2018-01-14 08:12:30", "151.80.31.152", "31");
INSERT INTO `wp_gf_form_view` VALUES("74003", "9", "2018-01-14 08:57:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74004", "8", "2018-01-14 08:57:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74005", "10", "2018-01-14 08:57:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74006", "15", "2018-01-14 08:57:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74007", "18", "2018-01-14 08:57:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74008", "18", "2018-01-14 09:57:42", "151.80.31.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("74009", "3", "2018-01-14 10:12:30", "151.80.31.152", "30");
INSERT INTO `wp_gf_form_view` VALUES("74010", "9", "2018-01-14 10:48:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74011", "8", "2018-01-14 10:49:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74012", "10", "2018-01-14 10:49:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74013", "15", "2018-01-14 10:49:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74014", "18", "2018-01-14 10:49:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74015", "3", "2018-01-14 11:31:50", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("74016", "3", "2018-01-14 12:24:51", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("74017", "9", "2018-01-14 12:24:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74018", "8", "2018-01-14 12:24:52", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74019", "10", "2018-01-14 12:24:53", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74020", "15", "2018-01-14 12:24:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74021", "18", "2018-01-14 12:24:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74022", "8", "2018-01-14 13:30:15", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74023", "3", "2018-01-14 13:33:08", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74024", "3", "2018-01-14 14:04:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74025", "9", "2018-01-14 14:04:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74026", "8", "2018-01-14 14:04:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74027", "10", "2018-01-14 14:04:36", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74028", "15", "2018-01-14 14:04:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74029", "18", "2018-01-14 14:04:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74030", "18", "2018-01-14 15:16:31", "54.165.59.7", "6");
INSERT INTO `wp_gf_form_view` VALUES("74031", "3", "2018-01-14 15:40:37", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74032", "9", "2018-01-14 15:40:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74033", "8", "2018-01-14 15:40:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74034", "10", "2018-01-14 15:40:39", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74035", "15", "2018-01-14 15:40:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74036", "14", "2018-01-14 16:06:16", "189.120.0.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("74037", "3", "2018-01-14 16:11:28", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74038", "3", "2018-01-14 17:26:26", "52.37.180.245", "64");
INSERT INTO `wp_gf_form_view` VALUES("74039", "9", "2018-01-14 17:26:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74040", "8", "2018-01-14 17:26:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74041", "10", "2018-01-14 17:26:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74042", "15", "2018-01-14 17:26:31", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74043", "18", "2018-01-14 17:26:33", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("74044", "11", "2018-01-14 17:57:29", "46.229.168.70", "2");
INSERT INTO `wp_gf_form_view` VALUES("74045", "3", "2018-01-14 18:00:07", "46.229.168.65", "10");
INSERT INTO `wp_gf_form_view` VALUES("74046", "3", "2018-01-14 19:15:42", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74047", "9", "2018-01-14 19:15:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74048", "8", "2018-01-14 19:15:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74049", "10", "2018-01-14 19:15:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74050", "15", "2018-01-14 19:15:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74051", "18", "2018-01-14 19:15:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74052", "14", "2018-01-14 19:58:29", "179.218.7.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("74053", "3", "2018-01-14 21:01:15", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("74054", "9", "2018-01-14 21:01:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74055", "8", "2018-01-14 21:01:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74056", "10", "2018-01-14 21:01:18", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74057", "15", "2018-01-14 21:01:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74058", "18", "2018-01-14 21:01:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74059", "3", "2018-01-14 22:46:31", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74060", "9", "2018-01-14 22:46:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74061", "8", "2018-01-14 22:46:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74062", "10", "2018-01-14 22:46:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74063", "15", "2018-01-14 22:46:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74064", "18", "2018-01-14 22:46:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74065", "3", "2018-01-14 23:04:37", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("74066", "10", "2018-01-14 23:59:20", "54.36.149.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("74067", "3", "2018-01-15 00:08:44", "24.68.121.173", "30");
INSERT INTO `wp_gf_form_view` VALUES("74068", "9", "2018-01-15 00:51:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74069", "8", "2018-01-15 00:51:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74070", "10", "2018-01-15 00:51:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74071", "15", "2018-01-15 00:51:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74072", "18", "2018-01-15 00:51:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74073", "3", "2018-01-15 01:20:02", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74074", "8", "2018-01-15 01:20:30", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74075", "3", "2018-01-15 02:41:45", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74076", "9", "2018-01-15 02:41:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74077", "8", "2018-01-15 02:41:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74078", "10", "2018-01-15 02:41:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74079", "15", "2018-01-15 02:41:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74080", "18", "2018-01-15 02:41:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74081", "5", "2018-01-15 03:58:13", "77.75.76.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("74082", "3", "2018-01-15 04:24:17", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74083", "9", "2018-01-15 04:24:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74084", "8", "2018-01-15 04:24:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74085", "10", "2018-01-15 04:24:20", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74086", "15", "2018-01-15 04:24:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74087", "18", "2018-01-15 04:24:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74088", "14", "2018-01-15 05:30:11", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("74089", "3", "2018-01-15 06:17:02", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74090", "9", "2018-01-15 06:17:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74091", "8", "2018-01-15 06:17:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74092", "10", "2018-01-15 06:17:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74093", "15", "2018-01-15 06:17:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74094", "18", "2018-01-15 06:17:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74095", "14", "2018-01-15 06:32:16", "184.66.139.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("74096", "3", "2018-01-15 07:59:58", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("74097", "9", "2018-01-15 07:59:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74098", "3", "2018-01-15 08:00:00", "52.37.180.245", "55");
INSERT INTO `wp_gf_form_view` VALUES("74099", "8", "2018-01-15 08:00:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74100", "10", "2018-01-15 08:00:01", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74101", "15", "2018-01-15 08:00:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74102", "18", "2018-01-15 08:00:07", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74103", "9", "2018-01-15 08:00:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74104", "14", "2018-01-15 09:35:16", "54.85.182.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("74105", "10", "2018-01-15 09:36:08", "66.249.79.137", "6");
INSERT INTO `wp_gf_form_view` VALUES("74106", "3", "2018-01-15 09:41:20", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74107", "9", "2018-01-15 09:41:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74108", "8", "2018-01-15 09:41:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74109", "15", "2018-01-15 09:41:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74110", "18", "2018-01-15 09:41:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74111", "3", "2018-01-15 10:14:22", "185.86.77.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("74112", "14", "2018-01-15 10:15:49", "185.86.77.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74113", "10", "2018-01-15 10:39:47", "207.46.13.128", "5");
INSERT INTO `wp_gf_form_view` VALUES("74114", "9", "2018-01-15 10:41:16", "207.46.13.128", "2");
INSERT INTO `wp_gf_form_view` VALUES("74115", "8", "2018-01-15 10:49:31", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74116", "10", "2018-01-15 11:25:58", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("74117", "3", "2018-01-15 11:26:30", "216.244.66.195", "30");
INSERT INTO `wp_gf_form_view` VALUES("74118", "14", "2018-01-15 11:26:32", "201.218.97.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("74119", "9", "2018-01-15 11:26:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74120", "8", "2018-01-15 11:26:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74121", "15", "2018-01-15 11:26:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74122", "18", "2018-01-15 11:26:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74123", "3", "2018-01-15 13:10:48", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("74124", "9", "2018-01-15 13:10:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74125", "8", "2018-01-15 13:10:50", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74126", "10", "2018-01-15 13:10:51", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74127", "15", "2018-01-15 13:10:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74128", "18", "2018-01-15 13:10:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74129", "3", "2018-01-15 14:22:48", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("74130", "18", "2018-01-15 14:35:16", "66.249.79.135", "4");
INSERT INTO `wp_gf_form_view` VALUES("74131", "9", "2018-01-15 14:56:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74132", "8", "2018-01-15 14:56:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74133", "10", "2018-01-15 14:56:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74134", "15", "2018-01-15 14:56:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74135", "3", "2018-01-15 15:53:35", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74136", "3", "2018-01-15 16:24:26", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("74137", "9", "2018-01-15 16:57:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74138", "8", "2018-01-15 16:57:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74139", "10", "2018-01-15 16:57:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74140", "15", "2018-01-15 16:57:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74141", "18", "2018-01-15 16:57:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74142", "18", "2018-01-15 17:47:07", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("74143", "18", "2018-01-15 18:01:30", "154.20.28.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("74144", "3", "2018-01-15 18:06:41", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74145", "3", "2018-01-15 19:01:25", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74146", "9", "2018-01-15 19:01:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74147", "8", "2018-01-15 19:01:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74148", "10", "2018-01-15 19:01:27", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74149", "15", "2018-01-15 19:01:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74150", "18", "2018-01-15 19:01:34", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74151", "10", "2018-01-15 20:07:29", "72.14.199.73", "6");
INSERT INTO `wp_gf_form_view` VALUES("74152", "18", "2018-01-15 20:10:34", "24.108.184.241", "2");
INSERT INTO `wp_gf_form_view` VALUES("74153", "3", "2018-01-15 20:46:11", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74154", "9", "2018-01-15 20:46:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74155", "8", "2018-01-15 20:46:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74156", "15", "2018-01-15 20:46:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74157", "18", "2018-01-15 21:19:53", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74158", "14", "2018-01-15 21:27:12", "154.20.28.177", "1");
INSERT INTO `wp_gf_form_view` VALUES("74159", "3", "2018-01-15 21:29:41", "184.69.27.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("74160", "10", "2018-01-15 21:45:19", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74161", "10", "2018-01-15 22:05:09", "216.244.66.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("74162", "3", "2018-01-15 22:05:55", "216.244.66.247", "61");
INSERT INTO `wp_gf_form_view` VALUES("74163", "9", "2018-01-15 22:06:18", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74164", "8", "2018-01-15 22:06:18", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("74165", "15", "2018-01-15 22:06:22", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74166", "18", "2018-01-15 22:06:24", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74167", "14", "2018-01-15 22:07:36", "104.144.242.142", "5");
INSERT INTO `wp_gf_form_view` VALUES("74168", "18", "2018-01-15 23:03:21", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74169", "3", "2018-01-15 23:07:17", "88.198.54.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("74170", "15", "2018-01-15 23:15:19", "207.46.13.105", "1");
INSERT INTO `wp_gf_form_view` VALUES("74171", "10", "2018-01-15 23:49:32", "207.46.13.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("74172", "18", "2018-01-16 00:02:46", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("74173", "3", "2018-01-16 00:14:58", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("74174", "9", "2018-01-16 00:14:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74175", "8", "2018-01-16 00:15:00", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74176", "10", "2018-01-16 00:15:00", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74177", "15", "2018-01-16 00:15:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74178", "3", "2018-01-16 01:26:32", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("74179", "18", "2018-01-16 01:33:25", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74180", "9", "2018-01-16 01:55:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74181", "8", "2018-01-16 01:55:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74182", "10", "2018-01-16 01:55:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74183", "15", "2018-01-16 01:56:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74184", "3", "2018-01-16 02:19:52", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74185", "14", "2018-01-16 02:39:48", "108.180.146.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("74186", "3", "2018-01-16 03:36:45", "216.244.66.247", "30");
INSERT INTO `wp_gf_form_view` VALUES("74187", "9", "2018-01-16 03:41:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74188", "8", "2018-01-16 03:41:28", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74189", "10", "2018-01-16 03:41:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74190", "15", "2018-01-16 03:41:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74191", "18", "2018-01-16 03:41:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74192", "18", "2018-01-16 04:10:01", "24.108.23.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("74193", "3", "2018-01-16 04:12:05", "75.154.241.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("74194", "10", "2018-01-16 04:22:45", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74195", "18", "2018-01-16 05:09:43", "77.75.76.160", "3");
INSERT INTO `wp_gf_form_view` VALUES("74196", "3", "2018-01-16 05:13:10", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("74197", "9", "2018-01-16 05:32:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74198", "8", "2018-01-16 05:32:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74199", "10", "2018-01-16 05:32:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74200", "15", "2018-01-16 05:32:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74201", "18", "2018-01-16 06:26:31", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("74202", "18", "2018-01-16 07:09:39", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74203", "14", "2018-01-16 07:14:01", "184.66.145.43", "2");
INSERT INTO `wp_gf_form_view` VALUES("74204", "3", "2018-01-16 07:14:29", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("74205", "9", "2018-01-16 07:27:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74206", "8", "2018-01-16 07:27:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74207", "10", "2018-01-16 07:27:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74208", "15", "2018-01-16 07:27:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74209", "3", "2018-01-16 08:37:10", "216.244.66.195", "8");
INSERT INTO `wp_gf_form_view` VALUES("74210", "10", "2018-01-16 08:38:04", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("74211", "14", "2018-01-16 09:09:12", "52.163.62.13", "3");
INSERT INTO `wp_gf_form_view` VALUES("74212", "3", "2018-01-16 09:15:16", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74213", "9", "2018-01-16 09:15:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74214", "8", "2018-01-16 09:15:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74215", "10", "2018-01-16 09:15:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74216", "15", "2018-01-16 09:15:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74217", "18", "2018-01-16 09:15:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74218", "3", "2018-01-16 10:49:30", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74219", "9", "2018-01-16 10:49:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74220", "8", "2018-01-16 10:49:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74221", "10", "2018-01-16 10:49:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74222", "15", "2018-01-16 10:49:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74223", "18", "2018-01-16 10:49:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74224", "18", "2018-01-16 11:04:40", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74225", "3", "2018-01-16 11:30:50", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74226", "6", "2018-01-16 11:31:39", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74227", "3", "2018-01-16 12:28:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74228", "9", "2018-01-16 12:28:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74229", "8", "2018-01-16 12:28:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74230", "10", "2018-01-16 12:28:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74231", "15", "2018-01-16 12:28:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74232", "18", "2018-01-16 12:28:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74233", "18", "2018-01-16 13:22:44", "54.163.39.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("74234", "3", "2018-01-16 13:29:12", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74235", "14", "2018-01-16 14:05:03", "92.222.1.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("74236", "3", "2018-01-16 14:05:41", "52.37.180.245", "29");
INSERT INTO `wp_gf_form_view` VALUES("74237", "9", "2018-01-16 14:05:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74238", "8", "2018-01-16 14:05:43", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74239", "10", "2018-01-16 14:05:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74240", "15", "2018-01-16 14:05:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74241", "18", "2018-01-16 14:05:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74242", "14", "2018-01-16 15:18:14", "89.204.135.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("74243", "18", "2018-01-16 15:23:57", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74244", "3", "2018-01-16 15:25:31", "89.204.135.50", "31");
INSERT INTO `wp_gf_form_view` VALUES("74245", "9", "2018-01-16 15:43:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74246", "8", "2018-01-16 15:43:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74247", "10", "2018-01-16 15:43:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74248", "15", "2018-01-16 15:43:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74249", "3", "2018-01-16 16:30:53", "207.46.13.98", "16");
INSERT INTO `wp_gf_form_view` VALUES("74250", "15", "2018-01-16 16:30:54", "40.77.167.76", "2");
INSERT INTO `wp_gf_form_view` VALUES("74251", "18", "2018-01-16 16:32:11", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74252", "9", "2018-01-16 16:33:01", "207.46.13.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("74253", "6", "2018-01-16 16:33:20", "40.77.167.76", "1");
INSERT INTO `wp_gf_form_view` VALUES("74254", "11", "2018-01-16 16:33:26", "207.46.13.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("74255", "10", "2018-01-16 16:33:51", "207.46.13.48", "5");
INSERT INTO `wp_gf_form_view` VALUES("74256", "8", "2018-01-16 16:35:50", "207.46.13.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("74257", "3", "2018-01-16 17:16:34", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("74258", "9", "2018-01-16 17:32:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74259", "8", "2018-01-16 17:32:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74260", "10", "2018-01-16 17:32:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74261", "15", "2018-01-16 17:32:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74262", "18", "2018-01-16 17:32:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74263", "18", "2018-01-16 18:00:08", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74264", "3", "2018-01-16 18:03:15", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74265", "14", "2018-01-16 18:16:00", "199.60.104.18", "1");
INSERT INTO `wp_gf_form_view` VALUES("74266", "3", "2018-01-16 19:15:42", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("74267", "9", "2018-01-16 19:15:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74268", "8", "2018-01-16 19:15:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74269", "10", "2018-01-16 19:15:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74270", "15", "2018-01-16 19:15:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74271", "18", "2018-01-16 19:15:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74272", "14", "2018-01-16 19:41:51", "96.54.237.166", "2");
INSERT INTO `wp_gf_form_view` VALUES("74273", "3", "2018-01-16 20:44:57", "88.99.2.203", "11");
INSERT INTO `wp_gf_form_view` VALUES("74274", "18", "2018-01-16 21:03:21", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("74275", "3", "2018-01-16 21:05:13", "68.180.228.176", "31");
INSERT INTO `wp_gf_form_view` VALUES("74276", "9", "2018-01-16 21:12:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74277", "8", "2018-01-16 21:12:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74278", "10", "2018-01-16 21:12:49", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74279", "15", "2018-01-16 21:12:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74280", "18", "2018-01-16 22:10:06", "96.54.232.157", "3");
INSERT INTO `wp_gf_form_view` VALUES("74281", "3", "2018-01-16 22:43:53", "184.69.99.230", "39");
INSERT INTO `wp_gf_form_view` VALUES("74282", "9", "2018-01-16 22:48:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74283", "8", "2018-01-16 22:48:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74284", "10", "2018-01-16 22:48:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74285", "15", "2018-01-16 22:48:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74286", "14", "2018-01-16 23:53:27", "154.5.182.82", "1");
INSERT INTO `wp_gf_form_view` VALUES("74287", "18", "2018-01-17 00:19:40", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("74288", "3", "2018-01-17 00:28:34", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74289", "9", "2018-01-17 00:28:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74290", "8", "2018-01-17 00:28:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74291", "10", "2018-01-17 00:28:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74292", "15", "2018-01-17 00:28:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74293", "18", "2018-01-17 01:03:26", "77.75.78.167", "3");
INSERT INTO `wp_gf_form_view` VALUES("74294", "14", "2018-01-17 01:07:00", "182.148.75.61", "5");
INSERT INTO `wp_gf_form_view` VALUES("74295", "3", "2018-01-17 01:07:05", "182.148.75.61", "6");
INSERT INTO `wp_gf_form_view` VALUES("74296", "10", "2018-01-17 01:16:13", "154.5.182.60", "4");
INSERT INTO `wp_gf_form_view` VALUES("74297", "3", "2018-01-17 02:24:51", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("74298", "9", "2018-01-17 02:24:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74299", "8", "2018-01-17 02:24:52", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74300", "10", "2018-01-17 02:24:53", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74301", "15", "2018-01-17 02:24:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74302", "18", "2018-01-17 02:24:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74303", "3", "2018-01-17 03:34:25", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74304", "18", "2018-01-17 03:40:35", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74305", "3", "2018-01-17 04:11:03", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74306", "9", "2018-01-17 04:11:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74307", "8", "2018-01-17 04:11:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74308", "10", "2018-01-17 04:11:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74309", "15", "2018-01-17 04:11:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74310", "18", "2018-01-17 04:11:10", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74311", "18", "2018-01-17 05:43:25", "54.36.149.0", "3");
INSERT INTO `wp_gf_form_view` VALUES("74312", "3", "2018-01-17 05:55:05", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("74313", "9", "2018-01-17 05:55:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74314", "8", "2018-01-17 05:55:07", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74315", "10", "2018-01-17 05:55:07", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74316", "15", "2018-01-17 05:55:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74317", "18", "2018-01-17 06:13:40", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74318", "10", "2018-01-17 06:24:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74319", "3", "2018-01-17 06:51:40", "54.36.148.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("74320", "3", "2018-01-17 07:47:43", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74321", "9", "2018-01-17 07:47:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74322", "8", "2018-01-17 07:47:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74323", "10", "2018-01-17 07:47:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74324", "15", "2018-01-17 07:47:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74325", "18", "2018-01-17 07:47:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74326", "3", "2018-01-17 08:52:30", "45.55.224.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("74327", "18", "2018-01-17 08:52:41", "45.55.224.200", "13");
INSERT INTO `wp_gf_form_view` VALUES("74328", "14", "2018-01-17 08:57:25", "45.55.224.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("74329", "6", "2018-01-17 08:58:31", "45.55.224.200", "1");
INSERT INTO `wp_gf_form_view` VALUES("74330", "18", "2018-01-17 09:01:30", "45.55.224.200", "63");
INSERT INTO `wp_gf_form_view` VALUES("74331", "10", "2018-01-17 09:01:58", "45.55.224.200", "10");
INSERT INTO `wp_gf_form_view` VALUES("74332", "3", "2018-01-17 09:02:57", "45.55.224.200", "61");
INSERT INTO `wp_gf_form_view` VALUES("74333", "9", "2018-01-17 09:06:45", "45.55.224.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("74334", "15", "2018-01-17 09:09:15", "45.55.224.200", "2");
INSERT INTO `wp_gf_form_view` VALUES("74335", "8", "2018-01-17 09:27:31", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74336", "18", "2018-01-17 10:00:18", "45.55.224.200", "38");
INSERT INTO `wp_gf_form_view` VALUES("74337", "10", "2018-01-17 10:49:02", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("74338", "3", "2018-01-17 10:53:11", "109.102.111.84", "6");
INSERT INTO `wp_gf_form_view` VALUES("74339", "18", "2018-01-17 11:00:17", "158.46.159.255", "7");
INSERT INTO `wp_gf_form_view` VALUES("74340", "3", "2018-01-17 11:03:06", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("74341", "9", "2018-01-17 11:17:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74342", "8", "2018-01-17 11:17:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74343", "10", "2018-01-17 11:17:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74344", "15", "2018-01-17 11:17:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74345", "3", "2018-01-17 12:57:11", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74346", "9", "2018-01-17 12:57:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74347", "8", "2018-01-17 12:57:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74348", "10", "2018-01-17 12:57:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74349", "15", "2018-01-17 12:57:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74350", "18", "2018-01-17 12:57:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74351", "10", "2018-01-17 13:31:20", "54.36.148.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("74352", "8", "2018-01-17 13:42:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74353", "3", "2018-01-17 14:42:42", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74354", "9", "2018-01-17 14:42:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74355", "8", "2018-01-17 14:42:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74356", "10", "2018-01-17 14:42:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74357", "15", "2018-01-17 14:42:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74358", "18", "2018-01-17 14:42:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74359", "18", "2018-01-17 15:28:54", "194.187.170.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("74360", "10", "2018-01-17 15:55:19", "194.187.170.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("74361", "10", "2018-01-17 16:09:46", "194.187.170.133", "8");
INSERT INTO `wp_gf_form_view` VALUES("74362", "3", "2018-01-17 16:27:56", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74363", "9", "2018-01-17 16:27:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74364", "8", "2018-01-17 16:27:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74365", "15", "2018-01-17 16:28:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74366", "18", "2018-01-17 16:28:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74367", "14", "2018-01-17 16:56:19", "154.16.206.13", "3");
INSERT INTO `wp_gf_form_view` VALUES("74368", "3", "2018-01-17 17:17:16", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74369", "18", "2018-01-17 17:22:17", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74370", "10", "2018-01-17 17:26:29", "194.187.170.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("74371", "3", "2018-01-17 18:23:24", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74372", "9", "2018-01-17 18:23:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74373", "8", "2018-01-17 18:23:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74374", "10", "2018-01-17 18:23:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74375", "15", "2018-01-17 18:23:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74376", "18", "2018-01-17 18:23:32", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74377", "3", "2018-01-17 19:33:01", "24.69.158.97", "5");
INSERT INTO `wp_gf_form_view` VALUES("74378", "18", "2018-01-17 19:38:41", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74379", "3", "2018-01-17 20:11:40", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74380", "9", "2018-01-17 20:11:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74381", "8", "2018-01-17 20:11:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74382", "10", "2018-01-17 20:11:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74383", "15", "2018-01-17 20:11:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74384", "18", "2018-01-17 20:11:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74385", "18", "2018-01-17 21:11:13", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74386", "15", "2018-01-17 21:44:48", "207.46.13.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("74387", "3", "2018-01-17 21:52:31", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("74388", "9", "2018-01-17 21:52:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74389", "8", "2018-01-17 21:52:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74390", "10", "2018-01-17 21:52:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74391", "18", "2018-01-17 22:41:08", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74392", "3", "2018-01-17 22:43:30", "88.99.2.203", "10");
INSERT INTO `wp_gf_form_view` VALUES("74393", "3", "2018-01-17 23:36:13", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74394", "9", "2018-01-17 23:36:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74395", "8", "2018-01-17 23:36:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74396", "10", "2018-01-17 23:36:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74397", "15", "2018-01-17 23:36:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74398", "18", "2018-01-17 23:36:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74399", "14", "2018-01-17 23:58:02", "70.67.230.197", "1");
INSERT INTO `wp_gf_form_view` VALUES("74400", "8", "2018-01-18 00:04:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74401", "3", "2018-01-18 00:04:32", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74402", "18", "2018-01-18 00:11:28", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74403", "3", "2018-01-18 01:21:31", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("74404", "9", "2018-01-18 01:21:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74405", "8", "2018-01-18 01:21:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74406", "10", "2018-01-18 01:21:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74407", "15", "2018-01-18 01:21:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74408", "18", "2018-01-18 01:21:38", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74409", "18", "2018-01-18 02:28:41", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74410", "3", "2018-01-18 02:56:40", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74411", "9", "2018-01-18 02:56:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74412", "8", "2018-01-18 02:56:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74413", "10", "2018-01-18 02:56:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74414", "15", "2018-01-18 02:56:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74415", "3", "2018-01-18 03:06:07", "209.52.88.38", "2");
INSERT INTO `wp_gf_form_view` VALUES("74416", "14", "2018-01-18 04:15:49", "212.237.56.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("74417", "3", "2018-01-18 04:41:20", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74418", "9", "2018-01-18 04:41:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74419", "8", "2018-01-18 04:41:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74420", "10", "2018-01-18 04:41:23", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74421", "15", "2018-01-18 04:41:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74422", "18", "2018-01-18 04:41:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74423", "3", "2018-01-18 05:37:55", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("74424", "8", "2018-01-18 05:38:19", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74425", "18", "2018-01-18 05:39:03", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74426", "14", "2018-01-18 05:52:48", "184.66.145.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("74427", "3", "2018-01-18 06:22:40", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("74428", "9", "2018-01-18 06:22:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74429", "8", "2018-01-18 06:22:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74430", "10", "2018-01-18 06:22:43", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74431", "15", "2018-01-18 06:22:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74432", "18", "2018-01-18 06:22:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74433", "8", "2018-01-18 07:13:09", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74434", "3", "2018-01-18 07:13:32", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74435", "14", "2018-01-18 07:26:40", "62.210.80.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("74436", "18", "2018-01-18 07:31:50", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74437", "3", "2018-01-18 08:06:21", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74438", "9", "2018-01-18 08:06:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74439", "8", "2018-01-18 08:06:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74440", "10", "2018-01-18 08:06:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74441", "15", "2018-01-18 08:06:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74442", "18", "2018-01-18 08:06:28", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74443", "3", "2018-01-18 09:09:14", "154.20.40.44", "9");
INSERT INTO `wp_gf_form_view` VALUES("74444", "18", "2018-01-18 09:17:09", "154.20.40.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("74445", "18", "2018-01-18 10:00:34", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("74446", "3", "2018-01-18 10:11:21", "52.37.180.245", "63");
INSERT INTO `wp_gf_form_view` VALUES("74447", "9", "2018-01-18 10:11:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74448", "8", "2018-01-18 10:11:23", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74449", "10", "2018-01-18 10:11:23", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74450", "15", "2018-01-18 10:11:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74451", "10", "2018-01-18 11:15:23", "72.14.199.119", "7");
INSERT INTO `wp_gf_form_view` VALUES("74452", "3", "2018-01-18 11:50:01", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("74453", "9", "2018-01-18 11:54:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74454", "8", "2018-01-18 11:54:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74455", "15", "2018-01-18 11:54:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74456", "18", "2018-01-18 11:54:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74457", "18", "2018-01-18 12:04:50", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("74458", "3", "2018-01-18 12:30:05", "194.187.170.101", "32");
INSERT INTO `wp_gf_form_view` VALUES("74459", "9", "2018-01-18 12:43:10", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74460", "8", "2018-01-18 12:43:11", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74461", "10", "2018-01-18 12:43:12", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("74462", "15", "2018-01-18 12:43:14", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74463", "3", "2018-01-18 13:03:04", "194.187.170.101", "32");
INSERT INTO `wp_gf_form_view` VALUES("74464", "10", "2018-01-18 13:07:14", "194.187.170.101", "7");
INSERT INTO `wp_gf_form_view` VALUES("74465", "9", "2018-01-18 13:42:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74466", "8", "2018-01-18 13:42:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74467", "15", "2018-01-18 13:42:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74468", "18", "2018-01-18 13:42:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74469", "18", "2018-01-18 14:07:32", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74470", "10", "2018-01-18 14:18:39", "194.187.170.101", "6");
INSERT INTO `wp_gf_form_view` VALUES("74471", "3", "2018-01-18 14:18:49", "194.187.170.101", "32");
INSERT INTO `wp_gf_form_view` VALUES("74472", "9", "2018-01-18 14:46:25", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74473", "8", "2018-01-18 14:46:26", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74474", "15", "2018-01-18 14:46:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74475", "10", "2018-01-18 15:01:00", "100.43.91.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("74476", "3", "2018-01-18 15:32:50", "52.37.180.245", "37");
INSERT INTO `wp_gf_form_view` VALUES("74477", "9", "2018-01-18 15:32:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74478", "8", "2018-01-18 15:32:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74479", "15", "2018-01-18 15:32:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74480", "18", "2018-01-18 15:32:58", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74481", "18", "2018-01-18 16:22:52", "154.20.28.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("74482", "18", "2018-01-18 17:02:41", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("74483", "3", "2018-01-18 17:22:57", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("74484", "9", "2018-01-18 17:22:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74485", "8", "2018-01-18 17:22:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74486", "10", "2018-01-18 17:22:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74487", "15", "2018-01-18 17:23:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74488", "3", "2018-01-18 18:20:15", "220.181.108.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("74489", "18", "2018-01-18 18:41:23", "24.68.205.68", "2");
INSERT INTO `wp_gf_form_view` VALUES("74490", "10", "2018-01-18 18:56:39", "54.36.148.178", "1");
INSERT INTO `wp_gf_form_view` VALUES("74491", "3", "2018-01-18 19:08:35", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74492", "9", "2018-01-18 19:08:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74493", "8", "2018-01-18 19:08:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74494", "10", "2018-01-18 19:08:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74495", "15", "2018-01-18 19:08:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74496", "18", "2018-01-18 19:08:42", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74497", "18", "2018-01-18 20:05:33", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74498", "3", "2018-01-18 20:06:27", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("74499", "9", "2018-01-18 20:53:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74500", "8", "2018-01-18 20:53:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74501", "10", "2018-01-18 20:53:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74502", "15", "2018-01-18 20:53:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74503", "18", "2018-01-18 21:42:21", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74504", "3", "2018-01-18 21:48:20", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("74505", "18", "2018-01-18 22:00:46", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("74506", "10", "2018-01-18 22:13:25", "199.16.157.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("74507", "3", "2018-01-18 22:36:11", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74508", "9", "2018-01-18 22:36:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74509", "8", "2018-01-18 22:36:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74510", "15", "2018-01-18 22:36:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74511", "3", "2018-01-18 23:17:52", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("74512", "14", "2018-01-18 23:29:42", "205.250.182.202", "2");
INSERT INTO `wp_gf_form_view` VALUES("74513", "18", "2018-01-19 00:01:11", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("74514", "3", "2018-01-19 00:12:13", "24.69.17.34", "33");
INSERT INTO `wp_gf_form_view` VALUES("74515", "10", "2018-01-19 00:21:52", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("74516", "9", "2018-01-19 00:25:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74517", "8", "2018-01-19 00:26:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74518", "15", "2018-01-19 00:26:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74519", "10", "2018-01-19 01:03:50", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74520", "3", "2018-01-19 01:04:21", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("74521", "8", "2018-01-19 01:34:34", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("74522", "18", "2018-01-19 01:34:35", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("74523", "3", "2018-01-19 02:01:31", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("74524", "9", "2018-01-19 02:17:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74525", "8", "2018-01-19 02:17:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74526", "10", "2018-01-19 02:17:55", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74527", "15", "2018-01-19 02:17:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74528", "18", "2018-01-19 02:18:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74529", "3", "2018-01-19 03:11:46", "88.99.2.203", "9");
INSERT INTO `wp_gf_form_view` VALUES("74530", "18", "2018-01-19 04:06:26", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74531", "3", "2018-01-19 04:08:45", "52.37.180.245", "44");
INSERT INTO `wp_gf_form_view` VALUES("74532", "9", "2018-01-19 04:08:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74533", "8", "2018-01-19 04:08:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74534", "10", "2018-01-19 04:08:47", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74535", "15", "2018-01-19 04:08:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74536", "14", "2018-01-19 04:19:49", "154.20.90.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("74537", "10", "2018-01-19 05:11:25", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("74538", "3", "2018-01-19 05:12:07", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("74539", "9", "2018-01-19 05:12:37", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74540", "8", "2018-01-19 05:12:38", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74541", "15", "2018-01-19 05:12:41", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74542", "18", "2018-01-19 05:12:43", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("74543", "3", "2018-01-19 06:03:05", "52.37.180.245", "42");
INSERT INTO `wp_gf_form_view` VALUES("74544", "9", "2018-01-19 06:03:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74545", "8", "2018-01-19 06:03:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74546", "10", "2018-01-19 06:03:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74547", "15", "2018-01-19 06:03:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74548", "18", "2018-01-19 06:03:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74549", "3", "2018-01-19 07:46:46", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74550", "9", "2018-01-19 07:46:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74551", "8", "2018-01-19 07:46:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74552", "10", "2018-01-19 07:46:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74553", "15", "2018-01-19 07:46:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74554", "18", "2018-01-19 07:46:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74555", "18", "2018-01-19 08:27:46", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74556", "3", "2018-01-19 08:28:50", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74557", "15", "2018-01-19 08:39:11", "54.36.148.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("74558", "3", "2018-01-19 09:31:19", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("74559", "9", "2018-01-19 09:31:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74560", "8", "2018-01-19 09:31:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74561", "10", "2018-01-19 09:31:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74562", "15", "2018-01-19 09:31:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74563", "18", "2018-01-19 09:31:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74564", "6", "2018-01-19 09:31:34", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74565", "18", "2018-01-19 10:03:26", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74566", "3", "2018-01-19 10:32:02", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74567", "3", "2018-01-19 11:05:13", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("74568", "9", "2018-01-19 11:08:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74569", "8", "2018-01-19 11:08:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74570", "10", "2018-01-19 11:08:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74571", "15", "2018-01-19 11:08:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74572", "18", "2018-01-19 11:08:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74573", "3", "2018-01-19 12:07:55", "216.244.66.231", "33");
INSERT INTO `wp_gf_form_view` VALUES("74574", "11", "2018-01-19 12:25:57", "77.75.76.172", "1");
INSERT INTO `wp_gf_form_view` VALUES("74575", "8", "2018-01-19 12:35:32", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("74576", "10", "2018-01-19 12:36:59", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("74577", "9", "2018-01-19 12:47:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74578", "15", "2018-01-19 12:47:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74579", "18", "2018-01-19 12:47:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74580", "14", "2018-01-19 13:14:33", "77.75.79.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("74581", "10", "2018-01-19 14:00:28", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("74582", "3", "2018-01-19 14:11:49", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("74583", "8", "2018-01-19 14:37:23", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("74584", "9", "2018-01-19 14:39:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74585", "15", "2018-01-19 14:39:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74586", "18", "2018-01-19 14:39:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74587", "10", "2018-01-19 15:29:15", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("74588", "3", "2018-01-19 15:58:57", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74589", "3", "2018-01-19 16:31:59", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("74590", "9", "2018-01-19 16:32:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74591", "8", "2018-01-19 16:32:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74592", "10", "2018-01-19 16:32:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74593", "15", "2018-01-19 16:32:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74594", "18", "2018-01-19 16:32:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74595", "14", "2018-01-19 17:05:45", "54.36.149.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("74596", "10", "2018-01-19 17:26:53", "54.36.149.8", "2");
INSERT INTO `wp_gf_form_view` VALUES("74597", "3", "2018-01-19 17:27:41", "80.241.214.124", "5");
INSERT INTO `wp_gf_form_view` VALUES("74598", "3", "2018-01-19 18:23:03", "52.37.180.245", "58");
INSERT INTO `wp_gf_form_view` VALUES("74599", "9", "2018-01-19 18:23:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74600", "8", "2018-01-19 18:23:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74601", "10", "2018-01-19 18:23:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74602", "15", "2018-01-19 18:23:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74603", "18", "2018-01-19 18:23:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74604", "11", "2018-01-19 18:58:12", "46.229.168.80", "3");
INSERT INTO `wp_gf_form_view` VALUES("74605", "3", "2018-01-19 19:00:57", "46.229.168.67", "19");
INSERT INTO `wp_gf_form_view` VALUES("74606", "18", "2018-01-19 19:17:34", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74607", "14", "2018-01-19 19:38:15", "94.199.151.22", "1");
INSERT INTO `wp_gf_form_view` VALUES("74608", "3", "2018-01-19 20:16:46", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74609", "9", "2018-01-19 20:17:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74610", "8", "2018-01-19 20:17:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74611", "10", "2018-01-19 20:17:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74612", "15", "2018-01-19 20:17:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74613", "18", "2018-01-19 20:17:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74614", "3", "2018-01-19 21:03:14", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("74615", "18", "2018-01-19 21:25:58", "66.183.230.246", "3");
INSERT INTO `wp_gf_form_view` VALUES("74616", "9", "2018-01-19 21:57:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74617", "8", "2018-01-19 21:57:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74618", "10", "2018-01-19 21:57:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74619", "15", "2018-01-19 21:58:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74620", "3", "2018-01-19 22:29:44", "204.12.226.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("74621", "18", "2018-01-19 22:48:13", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74622", "3", "2018-01-19 23:42:49", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74623", "9", "2018-01-19 23:42:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74624", "8", "2018-01-19 23:42:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74625", "10", "2018-01-19 23:42:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74626", "15", "2018-01-19 23:42:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74627", "18", "2018-01-19 23:42:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74628", "3", "2018-01-20 00:10:12", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74629", "9", "2018-01-20 00:12:52", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74630", "18", "2018-01-20 00:40:07", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74631", "3", "2018-01-20 01:22:43", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74632", "9", "2018-01-20 01:22:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74633", "8", "2018-01-20 01:22:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74634", "10", "2018-01-20 01:22:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74635", "15", "2018-01-20 01:22:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74636", "18", "2018-01-20 01:22:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74637", "3", "2018-01-20 02:08:51", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("74638", "9", "2018-01-20 02:10:21", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74639", "8", "2018-01-20 02:58:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74640", "10", "2018-01-20 02:58:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74641", "15", "2018-01-20 02:58:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74642", "18", "2018-01-20 02:58:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74643", "3", "2018-01-20 03:07:05", "209.52.88.203", "3");
INSERT INTO `wp_gf_form_view` VALUES("74644", "18", "2018-01-20 03:47:45", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74645", "3", "2018-01-20 04:24:37", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("74646", "9", "2018-01-20 04:51:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74647", "8", "2018-01-20 04:51:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74648", "10", "2018-01-20 04:51:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74649", "15", "2018-01-20 04:51:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74650", "18", "2018-01-20 04:51:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74651", "11", "2018-01-20 05:19:02", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("74652", "10", "2018-01-20 05:38:33", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74653", "3", "2018-01-20 05:43:07", "220.181.108.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("74654", "18", "2018-01-20 05:54:32", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74655", "3", "2018-01-20 06:09:40", "54.36.148.234", "34");
INSERT INTO `wp_gf_form_view` VALUES("74656", "10", "2018-01-20 06:34:03", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("74657", "9", "2018-01-20 06:38:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74658", "8", "2018-01-20 06:38:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74659", "15", "2018-01-20 06:38:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74660", "18", "2018-01-20 06:38:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74661", "3", "2018-01-20 07:06:59", "154.20.40.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("74662", "18", "2018-01-20 07:54:43", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74663", "3", "2018-01-20 08:24:57", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("74664", "8", "2018-01-20 08:34:20", "194.187.170.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("74665", "10", "2018-01-20 08:36:08", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("74666", "9", "2018-01-20 08:42:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74667", "15", "2018-01-20 08:42:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74668", "18", "2018-01-20 08:42:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74669", "3", "2018-01-20 10:12:16", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("74670", "9", "2018-01-20 10:40:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74671", "8", "2018-01-20 10:40:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74672", "10", "2018-01-20 10:40:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74673", "15", "2018-01-20 10:40:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74674", "18", "2018-01-20 10:40:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74675", "3", "2018-01-20 11:25:19", "40.77.167.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("74676", "3", "2018-01-20 12:02:45", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("74677", "9", "2018-01-20 12:42:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74678", "8", "2018-01-20 12:42:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74679", "10", "2018-01-20 12:42:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74680", "15", "2018-01-20 12:42:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74681", "18", "2018-01-20 12:42:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74682", "3", "2018-01-20 14:05:58", "216.244.66.247", "41");
INSERT INTO `wp_gf_form_view` VALUES("74683", "9", "2018-01-20 14:30:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74684", "8", "2018-01-20 14:30:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74685", "10", "2018-01-20 14:30:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74686", "15", "2018-01-20 14:30:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74687", "18", "2018-01-20 14:31:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74688", "3", "2018-01-20 15:03:26", "51.255.71.114", "2");
INSERT INTO `wp_gf_form_view` VALUES("74689", "10", "2018-01-20 15:26:11", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("74690", "3", "2018-01-20 16:08:41", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74691", "9", "2018-01-20 16:08:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74692", "8", "2018-01-20 16:08:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74693", "10", "2018-01-20 16:08:43", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74694", "15", "2018-01-20 16:08:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74695", "18", "2018-01-20 16:08:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74696", "18", "2018-01-20 17:25:09", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74697", "3", "2018-01-20 17:32:54", "24.68.250.82", "33");
INSERT INTO `wp_gf_form_view` VALUES("74698", "6", "2018-01-20 17:44:03", "159.203.67.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("74699", "9", "2018-01-20 17:46:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74700", "8", "2018-01-20 17:46:36", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74701", "10", "2018-01-20 17:46:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74702", "15", "2018-01-20 17:46:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74703", "18", "2018-01-20 18:10:51", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74704", "3", "2018-01-20 18:59:36", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74705", "3", "2018-01-20 19:00:06", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("74706", "18", "2018-01-20 19:07:45", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74707", "9", "2018-01-20 19:28:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74708", "8", "2018-01-20 19:28:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74709", "10", "2018-01-20 19:28:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74710", "15", "2018-01-20 19:28:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74711", "15", "2018-01-20 20:09:36", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74712", "3", "2018-01-20 20:09:50", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74713", "10", "2018-01-20 20:13:16", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("74714", "14", "2018-01-20 20:56:32", "23.254.12.126", "4");
INSERT INTO `wp_gf_form_view` VALUES("74715", "3", "2018-01-20 21:13:27", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("74716", "9", "2018-01-20 21:13:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74717", "8", "2018-01-20 21:13:28", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74718", "10", "2018-01-20 21:13:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74719", "15", "2018-01-20 21:13:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74720", "18", "2018-01-20 21:13:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74721", "10", "2018-01-20 22:26:33", "72.14.199.71", "11");
INSERT INTO `wp_gf_form_view` VALUES("74722", "18", "2018-01-20 22:35:32", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74723", "3", "2018-01-20 22:55:05", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("74724", "9", "2018-01-20 22:55:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74725", "8", "2018-01-20 22:55:07", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74726", "15", "2018-01-20 22:55:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74727", "10", "2018-01-20 23:01:22", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("74728", "9", "2018-01-20 23:27:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74729", "3", "2018-01-21 00:00:02", "191.101.66.237", "38");
INSERT INTO `wp_gf_form_view` VALUES("74730", "9", "2018-01-21 00:41:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74731", "8", "2018-01-21 00:41:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74732", "10", "2018-01-21 00:41:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74733", "15", "2018-01-21 00:41:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74734", "18", "2018-01-21 00:41:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74735", "3", "2018-01-21 01:01:21", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("74736", "18", "2018-01-21 01:16:45", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74737", "18", "2018-01-21 02:23:25", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74738", "3", "2018-01-21 02:31:45", "180.76.15.136", "32");
INSERT INTO `wp_gf_form_view` VALUES("74739", "9", "2018-01-21 02:39:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74740", "8", "2018-01-21 02:39:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74741", "10", "2018-01-21 02:39:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74742", "15", "2018-01-21 02:39:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74743", "3", "2018-01-21 04:16:55", "216.244.66.195", "40");
INSERT INTO `wp_gf_form_view` VALUES("74744", "8", "2018-01-21 04:17:10", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("74745", "18", "2018-01-21 04:17:36", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74746", "9", "2018-01-21 04:18:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74747", "10", "2018-01-21 04:18:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74748", "15", "2018-01-21 04:18:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74749", "18", "2018-01-21 05:02:02", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74750", "3", "2018-01-21 05:57:36", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74751", "9", "2018-01-21 05:57:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74752", "8", "2018-01-21 05:57:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74753", "10", "2018-01-21 05:57:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74754", "15", "2018-01-21 05:57:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74755", "3", "2018-01-21 06:09:03", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("74756", "8", "2018-01-21 06:29:17", "54.36.148.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("74757", "18", "2018-01-21 06:32:50", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74758", "12", "2018-01-21 06:38:14", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("74759", "9", "2018-01-21 06:48:25", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74760", "10", "2018-01-21 07:30:25", "194.187.170.106", "6");
INSERT INTO `wp_gf_form_view` VALUES("74761", "3", "2018-01-21 07:30:52", "194.187.170.106", "35");
INSERT INTO `wp_gf_form_view` VALUES("74762", "9", "2018-01-21 07:32:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74763", "8", "2018-01-21 07:32:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74764", "15", "2018-01-21 07:32:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74765", "18", "2018-01-21 07:32:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74766", "3", "2018-01-21 08:06:46", "194.187.170.106", "5");
INSERT INTO `wp_gf_form_view` VALUES("74767", "10", "2018-01-21 08:53:17", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74768", "3", "2018-01-21 09:17:02", "157.55.39.165", "52");
INSERT INTO `wp_gf_form_view` VALUES("74769", "8", "2018-01-21 09:17:25", "157.55.39.165", "4");
INSERT INTO `wp_gf_form_view` VALUES("74770", "10", "2018-01-21 09:18:08", "157.55.39.254", "15");
INSERT INTO `wp_gf_form_view` VALUES("74771", "9", "2018-01-21 09:18:32", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74772", "15", "2018-01-21 09:18:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74773", "18", "2018-01-21 09:18:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74774", "11", "2018-01-21 09:20:24", "157.55.39.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("74775", "12", "2018-01-21 09:43:18", "194.187.170.106", "1");
INSERT INTO `wp_gf_form_view` VALUES("74776", "18", "2018-01-21 10:46:16", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74777", "3", "2018-01-21 10:57:29", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74778", "10", "2018-01-21 10:58:01", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74779", "3", "2018-01-21 11:06:57", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74780", "9", "2018-01-21 11:06:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74781", "8", "2018-01-21 11:06:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74782", "10", "2018-01-21 11:06:59", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74783", "15", "2018-01-21 11:07:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74784", "18", "2018-01-21 11:07:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74785", "3", "2018-01-21 12:16:24", "220.181.108.175", "33");
INSERT INTO `wp_gf_form_view` VALUES("74786", "9", "2018-01-21 12:43:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74787", "8", "2018-01-21 12:43:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74788", "10", "2018-01-21 12:43:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74789", "15", "2018-01-21 12:43:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74790", "18", "2018-01-21 12:43:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74791", "3", "2018-01-21 14:29:20", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74792", "9", "2018-01-21 14:29:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74793", "8", "2018-01-21 14:29:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74794", "10", "2018-01-21 14:29:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74795", "15", "2018-01-21 14:29:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74796", "18", "2018-01-21 14:29:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74797", "18", "2018-01-21 16:10:52", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74798", "3", "2018-01-21 16:19:03", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("74799", "9", "2018-01-21 16:19:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74800", "8", "2018-01-21 16:19:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74801", "10", "2018-01-21 16:19:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74802", "15", "2018-01-21 16:19:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74803", "14", "2018-01-21 16:54:49", "104.227.190.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("74804", "3", "2018-01-21 18:08:37", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74805", "9", "2018-01-21 18:08:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74806", "8", "2018-01-21 18:08:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74807", "10", "2018-01-21 18:08:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74808", "15", "2018-01-21 18:08:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74809", "18", "2018-01-21 18:08:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74810", "3", "2018-01-21 19:47:15", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("74811", "9", "2018-01-21 19:48:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74812", "8", "2018-01-21 19:48:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74813", "10", "2018-01-21 19:48:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74814", "15", "2018-01-21 19:48:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74815", "18", "2018-01-21 19:48:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74816", "3", "2018-01-21 20:43:42", "88.198.55.175", "2");
INSERT INTO `wp_gf_form_view` VALUES("74817", "3", "2018-01-21 21:45:49", "216.244.66.231", "32");
INSERT INTO `wp_gf_form_view` VALUES("74818", "18", "2018-01-21 21:52:00", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74819", "9", "2018-01-21 21:53:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74820", "8", "2018-01-21 21:53:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74821", "10", "2018-01-21 21:53:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74822", "15", "2018-01-21 21:53:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74823", "3", "2018-01-21 22:18:11", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("74824", "3", "2018-01-21 23:03:19", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("74825", "9", "2018-01-21 23:39:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74826", "8", "2018-01-21 23:39:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74827", "10", "2018-01-21 23:39:11", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("74828", "15", "2018-01-21 23:39:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74829", "18", "2018-01-21 23:39:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74830", "18", "2018-01-22 00:11:51", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74831", "10", "2018-01-22 00:16:27", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("74832", "3", "2018-01-22 01:39:28", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("74833", "9", "2018-01-22 01:40:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74834", "8", "2018-01-22 01:40:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74835", "10", "2018-01-22 01:40:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74836", "15", "2018-01-22 01:40:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74837", "18", "2018-01-22 01:40:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74838", "10", "2018-01-22 02:29:32", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74839", "3", "2018-01-22 02:30:30", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("74840", "3", "2018-01-22 03:06:56", "51.255.71.117", "32");
INSERT INTO `wp_gf_form_view` VALUES("74841", "9", "2018-01-22 03:19:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74842", "8", "2018-01-22 03:19:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74843", "10", "2018-01-22 03:19:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74844", "15", "2018-01-22 03:19:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74845", "18", "2018-01-22 03:19:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74846", "18", "2018-01-22 04:56:20", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74847", "3", "2018-01-22 05:04:56", "216.244.66.195", "43");
INSERT INTO `wp_gf_form_view` VALUES("74848", "9", "2018-01-22 05:10:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74849", "8", "2018-01-22 05:10:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74850", "10", "2018-01-22 05:10:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74851", "15", "2018-01-22 05:10:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74852", "18", "2018-01-22 05:11:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74853", "18", "2018-01-22 06:47:41", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74854", "3", "2018-01-22 07:00:57", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74855", "9", "2018-01-22 07:00:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74856", "8", "2018-01-22 07:00:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74857", "10", "2018-01-22 07:00:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74858", "15", "2018-01-22 07:01:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74859", "18", "2018-01-22 07:01:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74860", "3", "2018-01-22 08:05:01", "216.244.66.195", "64");
INSERT INTO `wp_gf_form_view` VALUES("74861", "6", "2018-01-22 08:05:47", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74862", "9", "2018-01-22 08:49:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74863", "8", "2018-01-22 08:49:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74864", "10", "2018-01-22 08:49:54", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74865", "15", "2018-01-22 08:49:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74866", "18", "2018-01-22 08:49:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74867", "3", "2018-01-22 09:22:15", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("74868", "3", "2018-01-22 10:29:34", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("74869", "9", "2018-01-22 10:29:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74870", "8", "2018-01-22 10:29:36", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74871", "10", "2018-01-22 10:29:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74872", "15", "2018-01-22 10:29:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74873", "18", "2018-01-22 10:29:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74874", "3", "2018-01-22 11:00:03", "192.227.182.244", "2");
INSERT INTO `wp_gf_form_view` VALUES("74875", "10", "2018-01-22 12:04:33", "66.249.89.22", "7");
INSERT INTO `wp_gf_form_view` VALUES("74876", "18", "2018-01-22 12:05:41", "74.208.178.149", "2");
INSERT INTO `wp_gf_form_view` VALUES("74877", "3", "2018-01-22 12:05:53", "74.208.178.149", "36");
INSERT INTO `wp_gf_form_view` VALUES("74878", "9", "2018-01-22 12:15:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74879", "8", "2018-01-22 12:15:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74880", "15", "2018-01-22 12:15:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74881", "3", "2018-01-22 13:50:04", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("74882", "9", "2018-01-22 13:50:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74883", "8", "2018-01-22 13:50:05", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74884", "10", "2018-01-22 13:50:06", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74885", "15", "2018-01-22 13:50:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74886", "18", "2018-01-22 13:50:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74887", "3", "2018-01-22 14:24:22", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("74888", "18", "2018-01-22 14:37:36", "58.65.9.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("74889", "3", "2018-01-22 15:31:17", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74890", "9", "2018-01-22 15:31:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74891", "8", "2018-01-22 15:31:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74892", "10", "2018-01-22 15:31:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74893", "15", "2018-01-22 15:31:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74894", "18", "2018-01-22 15:31:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74895", "10", "2018-01-22 16:02:16", "54.36.148.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("74896", "3", "2018-01-22 16:03:51", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("74897", "18", "2018-01-22 16:41:22", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74898", "3", "2018-01-22 17:19:42", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74899", "9", "2018-01-22 17:19:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74900", "8", "2018-01-22 17:19:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74901", "10", "2018-01-22 17:19:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74902", "15", "2018-01-22 17:19:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74903", "18", "2018-01-22 17:19:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74904", "18", "2018-01-22 18:51:10", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74905", "3", "2018-01-22 19:07:07", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("74906", "9", "2018-01-22 19:07:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74907", "8", "2018-01-22 19:07:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74908", "10", "2018-01-22 19:07:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74909", "15", "2018-01-22 19:07:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74910", "18", "2018-01-22 19:07:14", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74911", "14", "2018-01-22 19:15:16", "184.66.132.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("74912", "3", "2018-01-22 20:03:56", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("74913", "10", "2018-01-22 20:46:24", "51.255.71.115", "6");
INSERT INTO `wp_gf_form_view` VALUES("74914", "9", "2018-01-22 20:46:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74915", "8", "2018-01-22 20:46:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74916", "15", "2018-01-22 20:46:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74917", "18", "2018-01-22 20:46:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74918", "18", "2018-01-22 21:30:31", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74919", "3", "2018-01-22 21:40:32", "207.46.13.49", "2");
INSERT INTO `wp_gf_form_view` VALUES("74920", "18", "2018-01-22 22:21:33", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("74921", "10", "2018-01-22 22:21:51", "216.244.66.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("74922", "3", "2018-01-22 22:22:33", "216.244.66.247", "63");
INSERT INTO `wp_gf_form_view` VALUES("74923", "9", "2018-01-22 22:22:54", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74924", "8", "2018-01-22 22:22:55", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("74925", "15", "2018-01-22 22:22:58", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("74926", "18", "2018-01-22 23:06:57", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74927", "10", "2018-01-22 23:17:05", "194.187.170.127", "3");
INSERT INTO `wp_gf_form_view` VALUES("74928", "12", "2018-01-22 23:51:16", "164.132.161.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("74929", "3", "2018-01-23 00:03:15", "108.180.147.111", "41");
INSERT INTO `wp_gf_form_view` VALUES("74930", "18", "2018-01-23 00:15:48", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("74931", "9", "2018-01-23 00:28:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74932", "8", "2018-01-23 00:28:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74933", "10", "2018-01-23 00:28:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74934", "15", "2018-01-23 00:29:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74935", "14", "2018-01-23 00:36:15", "184.66.132.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("74936", "18", "2018-01-23 01:02:36", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("74937", "3", "2018-01-23 01:46:56", "40.77.167.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("74938", "3", "2018-01-23 02:12:14", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("74939", "9", "2018-01-23 02:12:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74940", "8", "2018-01-23 02:12:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74941", "10", "2018-01-23 02:12:20", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("74942", "15", "2018-01-23 02:12:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74943", "18", "2018-01-23 02:12:31", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("74944", "3", "2018-01-23 03:46:01", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("74945", "9", "2018-01-23 03:46:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74946", "8", "2018-01-23 03:46:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74947", "10", "2018-01-23 03:46:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74948", "15", "2018-01-23 03:46:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74949", "18", "2018-01-23 03:46:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74950", "18", "2018-01-23 04:19:33", "159.203.169.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("74951", "3", "2018-01-23 04:56:52", "62.210.103.36", "1");
INSERT INTO `wp_gf_form_view` VALUES("74952", "10", "2018-01-23 05:07:39", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("74953", "3", "2018-01-23 05:37:16", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74954", "9", "2018-01-23 05:37:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74955", "8", "2018-01-23 05:37:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74956", "15", "2018-01-23 05:37:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74957", "18", "2018-01-23 05:37:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74958", "18", "2018-01-23 06:34:30", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74959", "10", "2018-01-23 07:18:28", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("74960", "3", "2018-01-23 07:20:08", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("74961", "18", "2018-01-23 07:30:43", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("74962", "9", "2018-01-23 07:30:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74963", "8", "2018-01-23 07:30:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74964", "15", "2018-01-23 07:30:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74965", "3", "2018-01-23 08:03:31", "68.180.228.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("74966", "10", "2018-01-23 08:26:16", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74967", "18", "2018-01-23 08:45:07", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74968", "3", "2018-01-23 09:25:35", "52.37.180.245", "46");
INSERT INTO `wp_gf_form_view` VALUES("74969", "9", "2018-01-23 09:25:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74970", "8", "2018-01-23 09:25:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74971", "10", "2018-01-23 09:25:38", "52.37.180.245", "13");
INSERT INTO `wp_gf_form_view` VALUES("74972", "15", "2018-01-23 09:25:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74973", "18", "2018-01-23 09:25:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74974", "3", "2018-01-23 10:23:28", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("74975", "10", "2018-01-23 10:23:43", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("74976", "18", "2018-01-23 10:49:04", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("74977", "3", "2018-01-23 11:14:51", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("74978", "9", "2018-01-23 11:14:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74979", "8", "2018-01-23 11:14:52", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("74980", "10", "2018-01-23 11:14:53", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("74981", "15", "2018-01-23 11:14:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74982", "18", "2018-01-23 11:14:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74983", "10", "2018-01-23 12:24:24", "137.74.207.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("74984", "14", "2018-01-23 12:25:42", "176.61.139.153", "3");
INSERT INTO `wp_gf_form_view` VALUES("74985", "3", "2018-01-23 12:56:56", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("74986", "10", "2018-01-23 13:00:38", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("74987", "3", "2018-01-23 13:40:22", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("74988", "9", "2018-01-23 13:40:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74989", "8", "2018-01-23 13:40:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74990", "15", "2018-01-23 13:40:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74991", "18", "2018-01-23 13:40:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74992", "10", "2018-01-23 14:34:08", "194.187.170.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("74993", "3", "2018-01-23 15:15:56", "144.76.8.231", "33");
INSERT INTO `wp_gf_form_view` VALUES("74994", "9", "2018-01-23 15:35:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74995", "8", "2018-01-23 15:35:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("74996", "10", "2018-01-23 15:35:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("74997", "15", "2018-01-23 15:35:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74998", "18", "2018-01-23 15:35:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("74999", "9", "2018-01-23 16:27:21", "138.197.72.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("75000", "3", "2018-01-23 16:34:58", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75001", "18", "2018-01-23 17:08:58", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75002", "3", "2018-01-23 17:16:46", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75003", "15", "2018-01-23 17:17:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75004", "3", "2018-01-23 18:23:56", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("75005", "9", "2018-01-23 18:23:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75006", "8", "2018-01-23 18:23:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75007", "10", "2018-01-23 18:23:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75008", "15", "2018-01-23 18:24:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75009", "18", "2018-01-23 18:24:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75010", "18", "2018-01-23 19:01:38", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75011", "14", "2018-01-23 19:45:53", "82.196.13.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("75012", "18", "2018-01-23 20:08:58", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75013", "3", "2018-01-23 20:12:00", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75014", "9", "2018-01-23 20:12:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75015", "8", "2018-01-23 20:12:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75016", "10", "2018-01-23 20:12:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75017", "15", "2018-01-23 20:12:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75018", "3", "2018-01-23 21:47:19", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75019", "9", "2018-01-23 21:47:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75020", "8", "2018-01-23 21:47:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75021", "10", "2018-01-23 21:47:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75022", "15", "2018-01-23 21:47:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75023", "18", "2018-01-23 21:47:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75024", "8", "2018-01-23 22:30:49", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75025", "3", "2018-01-23 22:31:45", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75026", "10", "2018-01-23 22:34:49", "70.66.148.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("75027", "18", "2018-01-23 22:59:04", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75028", "18", "2018-01-23 23:19:37", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75029", "3", "2018-01-23 23:29:20", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("75030", "9", "2018-01-23 23:29:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75031", "8", "2018-01-23 23:29:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75032", "10", "2018-01-23 23:29:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75033", "15", "2018-01-23 23:29:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75034", "18", "2018-01-24 00:20:29", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75035", "10", "2018-01-24 00:25:45", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75036", "8", "2018-01-24 00:34:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75037", "3", "2018-01-24 00:34:36", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75038", "3", "2018-01-24 01:13:36", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75039", "9", "2018-01-24 01:13:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75040", "8", "2018-01-24 01:13:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75041", "10", "2018-01-24 01:13:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75042", "15", "2018-01-24 01:13:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75043", "18", "2018-01-24 01:13:44", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75044", "18", "2018-01-24 02:13:50", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("75045", "3", "2018-01-24 02:33:46", "157.55.39.19", "32");
INSERT INTO `wp_gf_form_view` VALUES("75046", "9", "2018-01-24 02:57:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75047", "8", "2018-01-24 02:57:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75048", "10", "2018-01-24 02:57:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75049", "15", "2018-01-24 02:57:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75050", "18", "2018-01-24 03:06:06", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75051", "3", "2018-01-24 03:19:38", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75052", "10", "2018-01-24 03:46:32", "184.66.129.248", "4");
INSERT INTO `wp_gf_form_view` VALUES("75053", "3", "2018-01-24 04:06:26", "216.244.66.195", "39");
INSERT INTO `wp_gf_form_view` VALUES("75054", "18", "2018-01-24 04:43:00", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75055", "9", "2018-01-24 04:57:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75056", "8", "2018-01-24 04:57:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75057", "10", "2018-01-24 04:57:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75058", "15", "2018-01-24 04:57:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75059", "10", "2018-01-24 06:19:11", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("75060", "3", "2018-01-24 06:19:45", "216.244.66.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("75061", "9", "2018-01-24 06:38:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75062", "8", "2018-01-24 06:38:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75063", "15", "2018-01-24 06:38:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75064", "18", "2018-01-24 06:38:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75065", "3", "2018-01-24 07:26:15", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("75066", "8", "2018-01-24 07:26:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75067", "18", "2018-01-24 07:27:03", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75068", "3", "2018-01-24 08:21:02", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75069", "9", "2018-01-24 08:21:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75070", "8", "2018-01-24 08:21:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75071", "10", "2018-01-24 08:21:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75072", "15", "2018-01-24 08:21:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75073", "18", "2018-01-24 08:21:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75074", "14", "2018-01-24 08:25:17", "40.77.167.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("75075", "3", "2018-01-24 09:18:08", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("75076", "9", "2018-01-24 09:58:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75077", "8", "2018-01-24 09:58:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75078", "10", "2018-01-24 09:58:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75079", "15", "2018-01-24 09:58:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75080", "18", "2018-01-24 09:58:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75081", "14", "2018-01-24 10:04:26", "64.180.23.148", "2");
INSERT INTO `wp_gf_form_view` VALUES("75082", "3", "2018-01-24 11:39:56", "52.37.180.245", "64");
INSERT INTO `wp_gf_form_view` VALUES("75083", "9", "2018-01-24 11:39:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75084", "8", "2018-01-24 11:39:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75085", "10", "2018-01-24 11:39:59", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75086", "15", "2018-01-24 11:40:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75087", "18", "2018-01-24 11:40:05", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75088", "14", "2018-01-24 11:50:52", "195.12.135.154", "1");
INSERT INTO `wp_gf_form_view` VALUES("75089", "3", "2018-01-24 13:19:21", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75090", "9", "2018-01-24 13:19:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75091", "8", "2018-01-24 13:19:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75092", "10", "2018-01-24 13:19:24", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75093", "15", "2018-01-24 13:19:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75094", "18", "2018-01-24 13:19:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75095", "3", "2018-01-24 14:34:59", "70.67.44.227", "33");
INSERT INTO `wp_gf_form_view` VALUES("75096", "18", "2018-01-24 14:45:21", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75097", "9", "2018-01-24 14:58:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75098", "8", "2018-01-24 14:58:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75099", "10", "2018-01-24 14:58:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75100", "15", "2018-01-24 14:58:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75101", "14", "2018-01-24 15:06:24", "109.230.203.134", "3");
INSERT INTO `wp_gf_form_view` VALUES("75102", "10", "2018-01-24 16:34:20", "209.85.238.23", "6");
INSERT INTO `wp_gf_form_view` VALUES("75103", "3", "2018-01-24 16:45:54", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75104", "9", "2018-01-24 16:45:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75105", "8", "2018-01-24 16:45:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75106", "15", "2018-01-24 16:45:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75107", "18", "2018-01-24 16:46:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75108", "10", "2018-01-24 17:05:14", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75109", "3", "2018-01-24 18:26:27", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("75110", "9", "2018-01-24 18:26:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75111", "8", "2018-01-24 18:26:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75112", "10", "2018-01-24 18:26:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75113", "15", "2018-01-24 18:26:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75114", "18", "2018-01-24 18:26:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75115", "14", "2018-01-24 18:54:37", "185.182.48.14", "3");
INSERT INTO `wp_gf_form_view` VALUES("75116", "8", "2018-01-24 19:03:30", "46.242.115.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("75117", "3", "2018-01-24 19:35:57", "40.77.167.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("75118", "3", "2018-01-24 20:08:45", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75119", "9", "2018-01-24 20:08:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75120", "8", "2018-01-24 20:08:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75121", "10", "2018-01-24 20:08:48", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("75122", "15", "2018-01-24 20:08:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75123", "18", "2018-01-24 20:08:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75124", "3", "2018-01-24 21:07:44", "194.187.170.127", "89");
INSERT INTO `wp_gf_form_view` VALUES("75125", "14", "2018-01-24 21:18:11", "46.229.168.77", "6");
INSERT INTO `wp_gf_form_view` VALUES("75126", "11", "2018-01-24 21:24:56", "46.229.168.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("75127", "18", "2018-01-24 21:28:16", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75128", "10", "2018-01-24 21:29:01", "194.187.170.127", "6");
INSERT INTO `wp_gf_form_view` VALUES("75129", "6", "2018-01-24 21:33:37", "46.229.168.74", "2");
INSERT INTO `wp_gf_form_view` VALUES("75130", "9", "2018-01-24 21:49:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75131", "8", "2018-01-24 21:49:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75132", "15", "2018-01-24 21:49:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75133", "10", "2018-01-24 22:14:49", "194.187.170.127", "1");
INSERT INTO `wp_gf_form_view` VALUES("75134", "9", "2018-01-24 22:33:09", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75135", "3", "2018-01-24 22:33:41", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75136", "18", "2018-01-24 22:42:04", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75137", "3", "2018-01-24 23:00:50", "216.244.66.231", "44");
INSERT INTO `wp_gf_form_view` VALUES("75138", "9", "2018-01-24 23:33:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75139", "8", "2018-01-24 23:33:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75140", "10", "2018-01-24 23:33:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75141", "15", "2018-01-24 23:33:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75142", "18", "2018-01-24 23:33:53", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75143", "18", "2018-01-25 00:09:34", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75144", "3", "2018-01-25 00:26:27", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75145", "3", "2018-01-25 01:17:48", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("75146", "9", "2018-01-25 01:17:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75147", "8", "2018-01-25 01:17:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75148", "10", "2018-01-25 01:17:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75149", "15", "2018-01-25 01:17:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75150", "18", "2018-01-25 01:17:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75151", "3", "2018-01-25 02:24:33", "40.77.167.79", "18");
INSERT INTO `wp_gf_form_view` VALUES("75152", "10", "2018-01-25 02:24:53", "207.46.13.182", "8");
INSERT INTO `wp_gf_form_view` VALUES("75153", "9", "2018-01-25 02:26:34", "207.46.13.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("75154", "6", "2018-01-25 02:28:41", "40.77.167.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("75155", "8", "2018-01-25 02:29:03", "40.77.167.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("75156", "18", "2018-01-25 02:36:57", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75157", "14", "2018-01-25 03:07:31", "134.87.172.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("75158", "3", "2018-01-25 03:10:54", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("75159", "9", "2018-01-25 03:10:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75160", "8", "2018-01-25 03:10:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75161", "10", "2018-01-25 03:10:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75162", "15", "2018-01-25 03:10:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75163", "18", "2018-01-25 03:11:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75164", "14", "2018-01-25 04:11:32", "42.115.105.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("75165", "18", "2018-01-25 04:34:31", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("75166", "3", "2018-01-25 04:50:51", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75167", "9", "2018-01-25 04:50:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75168", "8", "2018-01-25 04:50:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75169", "10", "2018-01-25 04:50:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75170", "15", "2018-01-25 04:50:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75171", "3", "2018-01-25 05:11:43", "216.232.205.45", "11");
INSERT INTO `wp_gf_form_view` VALUES("75172", "18", "2018-01-25 05:49:34", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75173", "10", "2018-01-25 05:57:52", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75174", "3", "2018-01-25 06:03:32", "24.68.248.211", "33");
INSERT INTO `wp_gf_form_view` VALUES("75175", "9", "2018-01-25 06:37:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75176", "8", "2018-01-25 06:37:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75177", "10", "2018-01-25 06:37:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75178", "15", "2018-01-25 06:37:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75179", "18", "2018-01-25 06:38:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75180", "10", "2018-01-25 07:11:52", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("75181", "3", "2018-01-25 07:12:45", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("75182", "8", "2018-01-25 07:53:54", "194.187.170.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("75183", "18", "2018-01-25 08:17:34", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75184", "3", "2018-01-25 08:33:10", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75185", "9", "2018-01-25 08:33:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75186", "8", "2018-01-25 08:33:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75187", "10", "2018-01-25 08:33:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75188", "15", "2018-01-25 08:33:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75189", "6", "2018-01-25 08:47:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75190", "3", "2018-01-25 10:04:54", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("75191", "9", "2018-01-25 10:21:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75192", "8", "2018-01-25 10:21:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75193", "10", "2018-01-25 10:21:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75194", "15", "2018-01-25 10:21:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75195", "18", "2018-01-25 10:21:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75196", "8", "2018-01-25 11:52:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75197", "3", "2018-01-25 12:01:29", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75198", "9", "2018-01-25 12:01:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75199", "8", "2018-01-25 12:01:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75200", "10", "2018-01-25 12:01:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75201", "15", "2018-01-25 12:01:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75202", "18", "2018-01-25 12:01:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75203", "3", "2018-01-25 13:47:58", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75204", "9", "2018-01-25 13:47:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75205", "8", "2018-01-25 13:47:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75206", "10", "2018-01-25 13:48:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75207", "15", "2018-01-25 13:48:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75208", "18", "2018-01-25 13:48:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75209", "10", "2018-01-25 15:14:23", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("75210", "3", "2018-01-25 15:34:25", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("75211", "9", "2018-01-25 15:38:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75212", "8", "2018-01-25 15:38:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75213", "15", "2018-01-25 15:38:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75214", "18", "2018-01-25 15:38:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75215", "3", "2018-01-25 16:35:59", "133.130.110.198", "6");
INSERT INTO `wp_gf_form_view` VALUES("75216", "14", "2018-01-25 16:38:32", "133.130.110.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("75217", "10", "2018-01-25 16:42:15", "133.130.110.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("75218", "3", "2018-01-25 17:06:27", "216.244.66.231", "33");
INSERT INTO `wp_gf_form_view` VALUES("75219", "9", "2018-01-25 17:27:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75220", "8", "2018-01-25 17:27:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75221", "10", "2018-01-25 17:27:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75222", "15", "2018-01-25 17:27:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75223", "18", "2018-01-25 17:27:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75224", "18", "2018-01-25 18:09:58", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75225", "3", "2018-01-25 18:52:14", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75226", "18", "2018-01-25 19:19:16", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75227", "3", "2018-01-25 19:26:04", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("75228", "9", "2018-01-25 19:26:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75229", "8", "2018-01-25 19:26:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75230", "10", "2018-01-25 19:26:07", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75231", "15", "2018-01-25 19:26:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75232", "3", "2018-01-25 20:46:16", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("75233", "3", "2018-01-25 21:12:06", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("75234", "9", "2018-01-25 21:12:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75235", "8", "2018-01-25 21:12:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75236", "10", "2018-01-25 21:12:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75237", "15", "2018-01-25 21:12:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75238", "18", "2018-01-25 21:12:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75239", "10", "2018-01-25 22:31:43", "194.187.170.144", "7");
INSERT INTO `wp_gf_form_view` VALUES("75240", "3", "2018-01-25 22:37:37", "194.187.170.144", "36");
INSERT INTO `wp_gf_form_view` VALUES("75241", "18", "2018-01-25 22:38:40", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75242", "9", "2018-01-25 22:48:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75243", "8", "2018-01-25 22:48:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75244", "15", "2018-01-25 22:48:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75245", "10", "2018-01-25 23:00:48", "194.187.170.144", "5");
INSERT INTO `wp_gf_form_view` VALUES("75246", "18", "2018-01-25 23:48:12", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75247", "3", "2018-01-25 23:48:34", "194.187.170.144", "1");
INSERT INTO `wp_gf_form_view` VALUES("75248", "3", "2018-01-26 00:02:04", "194.187.170.144", "34");
INSERT INTO `wp_gf_form_view` VALUES("75249", "18", "2018-01-26 00:02:17", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75250", "9", "2018-01-26 00:33:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75251", "8", "2018-01-26 00:33:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75252", "10", "2018-01-26 00:33:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75253", "15", "2018-01-26 00:33:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75254", "10", "2018-01-26 01:58:57", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75255", "3", "2018-01-26 02:23:04", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75256", "9", "2018-01-26 02:23:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75257", "8", "2018-01-26 02:23:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75258", "10", "2018-01-26 02:23:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75259", "15", "2018-01-26 02:23:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75260", "18", "2018-01-26 02:23:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75261", "3", "2018-01-26 03:10:03", "207.46.13.136", "101");
INSERT INTO `wp_gf_form_view` VALUES("75262", "8", "2018-01-26 03:30:14", "185.138.241.45", "9");
INSERT INTO `wp_gf_form_view` VALUES("75263", "9", "2018-01-26 03:30:53", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("75264", "10", "2018-01-26 03:30:55", "185.138.241.45", "15");
INSERT INTO `wp_gf_form_view` VALUES("75265", "15", "2018-01-26 03:30:59", "185.138.241.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("75266", "18", "2018-01-26 03:31:02", "185.138.241.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("75267", "3", "2018-01-26 04:07:19", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75268", "9", "2018-01-26 04:07:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75269", "8", "2018-01-26 04:07:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75270", "10", "2018-01-26 04:07:21", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75271", "15", "2018-01-26 04:07:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75272", "18", "2018-01-26 04:07:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75273", "14", "2018-01-26 04:21:36", "192.154.231.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("75274", "3", "2018-01-26 05:47:24", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75275", "9", "2018-01-26 05:47:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75276", "8", "2018-01-26 05:47:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75277", "10", "2018-01-26 05:47:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75278", "15", "2018-01-26 05:47:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75279", "18", "2018-01-26 05:47:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75280", "18", "2018-01-26 06:12:15", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75281", "3", "2018-01-26 06:14:07", "70.66.132.162", "4");
INSERT INTO `wp_gf_form_view` VALUES("75282", "9", "2018-01-26 06:25:23", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75283", "10", "2018-01-26 07:10:13", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("75284", "18", "2018-01-26 07:11:44", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75285", "3", "2018-01-26 07:32:33", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75286", "9", "2018-01-26 07:32:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75287", "8", "2018-01-26 07:32:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75288", "15", "2018-01-26 07:32:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75289", "3", "2018-01-26 08:10:56", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75290", "10", "2018-01-26 08:32:28", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75291", "3", "2018-01-26 09:16:39", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75292", "9", "2018-01-26 09:16:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75293", "8", "2018-01-26 09:16:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75294", "10", "2018-01-26 09:16:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75295", "15", "2018-01-26 09:16:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75296", "18", "2018-01-26 09:16:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75297", "10", "2018-01-26 10:06:21", "216.244.66.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("75298", "3", "2018-01-26 10:20:25", "104.236.216.196", "65");
INSERT INTO `wp_gf_form_view` VALUES("75299", "18", "2018-01-26 10:21:58", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75300", "14", "2018-01-26 10:23:32", "104.236.216.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("75301", "6", "2018-01-26 10:24:27", "104.236.216.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("75302", "9", "2018-01-26 10:30:24", "104.236.216.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("75303", "15", "2018-01-26 10:32:51", "104.236.216.196", "2");
INSERT INTO `wp_gf_form_view` VALUES("75304", "8", "2018-01-26 10:56:42", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75305", "3", "2018-01-26 11:04:36", "104.236.216.196", "1");
INSERT INTO `wp_gf_form_view` VALUES("75306", "3", "2018-01-26 12:38:09", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75307", "9", "2018-01-26 12:38:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75308", "8", "2018-01-26 12:38:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75309", "10", "2018-01-26 12:38:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75310", "15", "2018-01-26 12:38:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75311", "18", "2018-01-26 12:38:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75312", "3", "2018-01-26 13:15:47", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("75313", "10", "2018-01-26 13:38:07", "199.16.157.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("75314", "10", "2018-01-26 14:12:53", "209.85.238.19", "6");
INSERT INTO `wp_gf_form_view` VALUES("75315", "3", "2018-01-26 14:27:47", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75316", "9", "2018-01-26 14:27:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75317", "8", "2018-01-26 14:27:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75318", "15", "2018-01-26 14:27:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75319", "18", "2018-01-26 14:27:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75320", "3", "2018-01-26 15:16:39", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("75321", "18", "2018-01-26 16:15:24", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75322", "3", "2018-01-26 16:28:10", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75323", "9", "2018-01-26 16:28:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75324", "8", "2018-01-26 16:28:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75325", "10", "2018-01-26 16:28:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75326", "15", "2018-01-26 16:28:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75327", "3", "2018-01-26 17:16:51", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75328", "3", "2018-01-26 18:18:24", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75329", "9", "2018-01-26 18:18:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75330", "8", "2018-01-26 18:18:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75331", "10", "2018-01-26 18:18:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75332", "15", "2018-01-26 18:18:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75333", "18", "2018-01-26 18:18:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75334", "3", "2018-01-26 20:01:03", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("75335", "9", "2018-01-26 20:01:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75336", "8", "2018-01-26 20:01:06", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75337", "10", "2018-01-26 20:01:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75338", "15", "2018-01-26 20:01:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75339", "18", "2018-01-26 20:01:11", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75340", "10", "2018-01-26 21:17:24", "64.114.222.228", "6");
INSERT INTO `wp_gf_form_view` VALUES("75341", "18", "2018-01-26 21:24:50", "70.66.152.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("75342", "3", "2018-01-26 21:37:52", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75343", "9", "2018-01-26 21:37:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75344", "8", "2018-01-26 21:37:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75345", "15", "2018-01-26 21:37:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75346", "8", "2018-01-26 22:17:24", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75347", "3", "2018-01-26 22:17:40", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("75348", "15", "2018-01-26 22:19:49", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75349", "18", "2018-01-26 22:30:37", "70.66.152.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("75350", "18", "2018-01-26 23:01:07", "194.187.170.130", "2");
INSERT INTO `wp_gf_form_view` VALUES("75351", "3", "2018-01-26 23:28:07", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75352", "9", "2018-01-26 23:28:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75353", "8", "2018-01-26 23:28:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75354", "10", "2018-01-26 23:28:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75355", "15", "2018-01-26 23:28:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75356", "18", "2018-01-27 00:48:34", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75357", "18", "2018-01-27 01:05:30", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75358", "3", "2018-01-27 01:14:49", "70.67.170.9", "65");
INSERT INTO `wp_gf_form_view` VALUES("75359", "9", "2018-01-27 01:15:40", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("75360", "8", "2018-01-27 01:15:40", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("75361", "10", "2018-01-27 01:15:41", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("75362", "15", "2018-01-27 01:15:43", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("75363", "3", "2018-01-27 02:57:25", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75364", "9", "2018-01-27 02:57:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75365", "8", "2018-01-27 02:57:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75366", "10", "2018-01-27 02:57:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75367", "15", "2018-01-27 02:57:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75368", "18", "2018-01-27 02:57:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75369", "3", "2018-01-27 03:02:00", "157.55.39.7", "12");
INSERT INTO `wp_gf_form_view` VALUES("75370", "18", "2018-01-27 03:14:40", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75371", "14", "2018-01-27 03:36:18", "65.18.199.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("75372", "10", "2018-01-27 03:44:14", "66.249.87.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("75373", "8", "2018-01-27 04:17:05", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("75374", "3", "2018-01-27 04:17:26", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("75375", "9", "2018-01-27 04:36:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75376", "10", "2018-01-27 04:36:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75377", "15", "2018-01-27 04:36:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75378", "18", "2018-01-27 04:36:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75379", "3", "2018-01-27 06:07:39", "188.165.196.25", "39");
INSERT INTO `wp_gf_form_view` VALUES("75380", "18", "2018-01-27 06:09:38", "188.165.196.25", "4");
INSERT INTO `wp_gf_form_view` VALUES("75381", "14", "2018-01-27 06:10:16", "188.165.196.25", "1");
INSERT INTO `wp_gf_form_view` VALUES("75382", "9", "2018-01-27 06:12:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75383", "8", "2018-01-27 06:12:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75384", "10", "2018-01-27 06:12:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75385", "15", "2018-01-27 06:12:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75386", "3", "2018-01-27 07:21:51", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("75387", "10", "2018-01-27 07:22:25", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("75388", "9", "2018-01-27 07:57:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75389", "8", "2018-01-27 07:57:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75390", "15", "2018-01-27 07:57:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75391", "18", "2018-01-27 07:57:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75392", "3", "2018-01-27 09:27:44", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("75393", "10", "2018-01-27 09:28:36", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("75394", "9", "2018-01-27 09:39:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75395", "8", "2018-01-27 09:39:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75396", "15", "2018-01-27 09:39:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75397", "18", "2018-01-27 09:39:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75398", "18", "2018-01-27 10:08:27", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("75399", "3", "2018-01-27 10:50:28", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("75400", "8", "2018-01-27 10:50:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75401", "10", "2018-01-27 10:56:43", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75402", "3", "2018-01-27 11:22:02", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75403", "9", "2018-01-27 11:22:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75404", "8", "2018-01-27 11:22:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75405", "10", "2018-01-27 11:22:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75406", "15", "2018-01-27 11:22:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75407", "18", "2018-01-27 11:22:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75408", "3", "2018-01-27 12:57:43", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75409", "9", "2018-01-27 12:57:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75410", "8", "2018-01-27 12:57:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75411", "10", "2018-01-27 12:57:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75412", "15", "2018-01-27 12:57:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75413", "18", "2018-01-27 12:57:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75414", "18", "2018-01-27 13:53:16", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75415", "3", "2018-01-27 14:04:48", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("75416", "14", "2018-01-27 14:22:05", "179.218.53.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("75417", "18", "2018-01-27 14:26:42", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75418", "9", "2018-01-27 14:47:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75419", "8", "2018-01-27 14:47:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75420", "10", "2018-01-27 14:47:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75421", "15", "2018-01-27 14:47:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75422", "3", "2018-01-27 15:37:23", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75423", "3", "2018-01-27 16:19:35", "139.162.246.24", "33");
INSERT INTO `wp_gf_form_view` VALUES("75424", "9", "2018-01-27 16:22:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75425", "8", "2018-01-27 16:22:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75426", "10", "2018-01-27 16:22:31", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75427", "15", "2018-01-27 16:22:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75428", "18", "2018-01-27 16:22:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75429", "10", "2018-01-27 17:13:47", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75430", "3", "2018-01-27 17:14:02", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75431", "18", "2018-01-27 17:19:08", "70.66.152.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("75432", "3", "2018-01-27 18:13:20", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75433", "9", "2018-01-27 18:13:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75434", "8", "2018-01-27 18:13:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75435", "10", "2018-01-27 18:13:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75436", "15", "2018-01-27 18:13:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75437", "18", "2018-01-27 18:13:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75438", "3", "2018-01-27 19:33:56", "139.162.246.24", "32");
INSERT INTO `wp_gf_form_view` VALUES("75439", "18", "2018-01-27 19:54:26", "70.66.152.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("75440", "9", "2018-01-27 19:57:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75441", "8", "2018-01-27 19:57:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75442", "10", "2018-01-27 19:57:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75443", "15", "2018-01-27 19:57:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75444", "18", "2018-01-27 20:01:37", "70.66.152.210", "1");
INSERT INTO `wp_gf_form_view` VALUES("75445", "14", "2018-01-27 21:39:11", "154.20.199.212", "1");
INSERT INTO `wp_gf_form_view` VALUES("75446", "3", "2018-01-27 21:44:39", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("75447", "9", "2018-01-27 21:52:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75448", "8", "2018-01-27 21:52:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75449", "10", "2018-01-27 21:52:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75450", "15", "2018-01-27 21:52:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75451", "18", "2018-01-27 21:52:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75452", "3", "2018-01-27 22:12:23", "157.55.39.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("75453", "18", "2018-01-27 22:33:51", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75454", "18", "2018-01-27 23:10:51", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75455", "3", "2018-01-27 23:33:05", "52.37.180.245", "38");
INSERT INTO `wp_gf_form_view` VALUES("75456", "9", "2018-01-27 23:33:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75457", "8", "2018-01-27 23:33:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75458", "10", "2018-01-27 23:33:07", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("75459", "15", "2018-01-27 23:33:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75460", "3", "2018-01-28 00:12:13", "84.38.129.20", "3");
INSERT INTO `wp_gf_form_view` VALUES("75461", "18", "2018-01-28 00:12:56", "220.181.108.93", "1");
INSERT INTO `wp_gf_form_view` VALUES("75462", "3", "2018-01-28 01:23:02", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("75463", "9", "2018-01-28 01:23:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75464", "8", "2018-01-28 01:23:04", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75465", "10", "2018-01-28 01:23:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75466", "15", "2018-01-28 01:23:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75467", "18", "2018-01-28 01:23:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75468", "3", "2018-01-28 02:59:20", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75469", "18", "2018-01-28 03:10:44", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75470", "3", "2018-01-28 03:13:24", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75471", "9", "2018-01-28 03:13:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75472", "8", "2018-01-28 03:13:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75473", "10", "2018-01-28 03:13:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75474", "15", "2018-01-28 03:13:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75475", "10", "2018-01-28 04:21:02", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75476", "3", "2018-01-28 04:35:48", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("75477", "3", "2018-01-28 05:03:09", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75478", "9", "2018-01-28 05:03:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75479", "8", "2018-01-28 05:03:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75480", "10", "2018-01-28 05:03:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75481", "15", "2018-01-28 05:03:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75482", "18", "2018-01-28 05:03:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75483", "10", "2018-01-28 06:05:54", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("75484", "3", "2018-01-28 06:06:30", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("75485", "18", "2018-01-28 06:13:46", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75486", "9", "2018-01-28 06:53:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75487", "8", "2018-01-28 06:53:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75488", "15", "2018-01-28 06:53:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75489", "18", "2018-01-28 07:04:40", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75490", "10", "2018-01-28 07:34:21", "66.249.87.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("75491", "3", "2018-01-28 07:37:00", "173.208.200.154", "15");
INSERT INTO `wp_gf_form_view` VALUES("75492", "3", "2018-01-28 08:32:40", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75493", "9", "2018-01-28 08:32:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75494", "8", "2018-01-28 08:32:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75495", "10", "2018-01-28 08:32:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75496", "15", "2018-01-28 08:32:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75497", "18", "2018-01-28 08:32:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75498", "3", "2018-01-28 09:15:57", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("75499", "10", "2018-01-28 09:17:00", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75500", "3", "2018-01-28 10:00:23", "66.249.69.53", "32");
INSERT INTO `wp_gf_form_view` VALUES("75501", "9", "2018-01-28 10:18:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75502", "8", "2018-01-28 10:18:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75503", "10", "2018-01-28 10:18:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75504", "15", "2018-01-28 10:18:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75505", "18", "2018-01-28 10:18:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75506", "11", "2018-01-28 10:56:25", "77.75.79.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("75507", "3", "2018-01-28 11:09:57", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("75508", "6", "2018-01-28 11:10:39", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75509", "9", "2018-01-28 11:59:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75510", "8", "2018-01-28 11:59:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75511", "10", "2018-01-28 11:59:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75512", "15", "2018-01-28 11:59:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75513", "18", "2018-01-28 11:59:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75514", "3", "2018-01-28 12:09:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75515", "3", "2018-01-28 13:12:52", "216.244.66.195", "63");
INSERT INTO `wp_gf_form_view` VALUES("75516", "6", "2018-01-28 13:13:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75517", "9", "2018-01-28 13:44:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75518", "8", "2018-01-28 13:44:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75519", "10", "2018-01-28 13:44:54", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75520", "15", "2018-01-28 13:44:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75521", "18", "2018-01-28 13:44:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75522", "14", "2018-01-28 13:47:47", "104.144.242.142", "4");
INSERT INTO `wp_gf_form_view` VALUES("75523", "3", "2018-01-28 14:13:24", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75524", "3", "2018-01-28 15:28:14", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75525", "9", "2018-01-28 15:28:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75526", "8", "2018-01-28 15:28:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75527", "10", "2018-01-28 15:28:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75528", "15", "2018-01-28 15:28:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75529", "18", "2018-01-28 15:28:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75530", "8", "2018-01-28 16:04:25", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75531", "18", "2018-01-28 16:11:50", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75532", "10", "2018-01-28 16:17:50", "157.55.39.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("75533", "3", "2018-01-28 17:08:49", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75534", "9", "2018-01-28 17:08:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75535", "8", "2018-01-28 17:08:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75536", "10", "2018-01-28 17:08:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75537", "15", "2018-01-28 17:08:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75538", "18", "2018-01-28 17:08:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75539", "14", "2018-01-28 17:16:25", "70.66.150.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("75540", "3", "2018-01-28 18:53:53", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75541", "9", "2018-01-28 18:53:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75542", "8", "2018-01-28 18:53:55", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75543", "10", "2018-01-28 18:53:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75544", "15", "2018-01-28 18:53:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75545", "18", "2018-01-28 18:54:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75546", "18", "2018-01-28 19:16:31", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75547", "3", "2018-01-28 19:22:36", "138.197.77.243", "4");
INSERT INTO `wp_gf_form_view` VALUES("75548", "3", "2018-01-28 20:38:55", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75549", "9", "2018-01-28 20:38:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75550", "8", "2018-01-28 20:38:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75551", "10", "2018-01-28 20:38:57", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75552", "15", "2018-01-28 20:38:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75553", "18", "2018-01-28 20:39:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75554", "3", "2018-01-28 21:03:06", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75555", "10", "2018-01-28 21:14:40", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75556", "18", "2018-01-28 22:14:16", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75557", "3", "2018-01-28 22:17:20", "213.133.111.165", "36");
INSERT INTO `wp_gf_form_view` VALUES("75558", "9", "2018-01-28 22:19:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75559", "8", "2018-01-28 22:19:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75560", "10", "2018-01-28 22:19:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75561", "15", "2018-01-28 22:19:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75562", "18", "2018-01-29 00:00:20", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75563", "3", "2018-01-29 00:10:39", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("75564", "9", "2018-01-29 00:10:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75565", "8", "2018-01-29 00:10:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75566", "10", "2018-01-29 00:10:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75567", "15", "2018-01-29 00:10:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75568", "14", "2018-01-29 00:48:09", "198.71.87.205", "5");
INSERT INTO `wp_gf_form_view` VALUES("75569", "18", "2018-01-29 01:08:37", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75570", "3", "2018-01-29 01:23:36", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("75571", "3", "2018-01-29 02:03:33", "52.37.180.245", "71");
INSERT INTO `wp_gf_form_view` VALUES("75572", "9", "2018-01-29 02:03:34", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75573", "8", "2018-01-29 02:03:34", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75574", "10", "2018-01-29 02:03:35", "52.37.180.245", "16");
INSERT INTO `wp_gf_form_view` VALUES("75575", "15", "2018-01-29 02:03:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75576", "18", "2018-01-29 02:03:39", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75577", "6", "2018-01-29 02:19:28", "157.55.39.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("75578", "11", "2018-01-29 02:19:45", "207.46.13.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("75579", "14", "2018-01-29 03:13:40", "107.158.199.105", "9");
INSERT INTO `wp_gf_form_view` VALUES("75580", "3", "2018-01-29 03:14:04", "107.158.199.105", "3");
INSERT INTO `wp_gf_form_view` VALUES("75581", "8", "2018-01-29 03:18:13", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("75582", "18", "2018-01-29 03:18:14", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("75583", "3", "2018-01-29 04:03:49", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("75584", "9", "2018-01-29 04:03:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75585", "8", "2018-01-29 04:03:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75586", "10", "2018-01-29 04:03:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75587", "15", "2018-01-29 04:03:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75588", "18", "2018-01-29 04:03:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75589", "14", "2018-01-29 04:48:45", "96.50.28.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("75590", "10", "2018-01-29 05:02:16", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("75591", "18", "2018-01-29 05:27:31", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75592", "3", "2018-01-29 05:27:53", "24.114.27.213", "32");
INSERT INTO `wp_gf_form_view` VALUES("75593", "9", "2018-01-29 05:44:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75594", "8", "2018-01-29 05:44:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75595", "15", "2018-01-29 05:44:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75596", "9", "2018-01-29 06:09:36", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75597", "3", "2018-01-29 06:09:50", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75598", "3", "2018-01-29 07:28:23", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75599", "9", "2018-01-29 07:28:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75600", "8", "2018-01-29 07:28:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75601", "10", "2018-01-29 07:28:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75602", "15", "2018-01-29 07:28:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75603", "18", "2018-01-29 07:28:30", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75604", "14", "2018-01-29 07:54:57", "23.94.5.68", "4");
INSERT INTO `wp_gf_form_view` VALUES("75605", "10", "2018-01-29 08:16:53", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75606", "18", "2018-01-29 08:16:57", "144.217.211.201", "1");
INSERT INTO `wp_gf_form_view` VALUES("75607", "3", "2018-01-29 08:17:04", "144.217.211.201", "4");
INSERT INTO `wp_gf_form_view` VALUES("75608", "3", "2018-01-29 09:09:56", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("75609", "9", "2018-01-29 09:09:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75610", "8", "2018-01-29 09:09:57", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75611", "10", "2018-01-29 09:09:58", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75612", "15", "2018-01-29 09:10:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75613", "18", "2018-01-29 09:10:02", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75614", "18", "2018-01-29 10:24:23", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75615", "3", "2018-01-29 10:48:52", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75616", "9", "2018-01-29 10:48:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75617", "8", "2018-01-29 10:48:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75618", "10", "2018-01-29 10:48:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75619", "15", "2018-01-29 10:48:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75620", "10", "2018-01-29 11:07:19", "66.249.87.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("75621", "3", "2018-01-29 11:21:47", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75622", "3", "2018-01-29 12:23:44", "144.76.38.40", "36");
INSERT INTO `wp_gf_form_view` VALUES("75623", "9", "2018-01-29 12:39:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75624", "8", "2018-01-29 12:39:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75625", "10", "2018-01-29 12:39:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75626", "15", "2018-01-29 12:39:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75627", "18", "2018-01-29 12:39:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75628", "10", "2018-01-29 13:51:54", "40.77.167.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("75629", "3", "2018-01-29 13:53:40", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75630", "3", "2018-01-29 14:18:29", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75631", "9", "2018-01-29 14:18:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75632", "8", "2018-01-29 14:18:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75633", "10", "2018-01-29 14:18:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75634", "15", "2018-01-29 14:18:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75635", "18", "2018-01-29 14:18:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75636", "3", "2018-01-29 15:55:54", "35.226.23.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("75637", "3", "2018-01-29 16:10:47", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75638", "9", "2018-01-29 16:10:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75639", "8", "2018-01-29 16:10:48", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75640", "10", "2018-01-29 16:10:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75641", "15", "2018-01-29 16:10:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75642", "18", "2018-01-29 16:10:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75643", "18", "2018-01-29 17:11:08", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("75644", "3", "2018-01-29 17:43:06", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("75645", "15", "2018-01-29 17:43:21", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75646", "9", "2018-01-29 17:49:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75647", "8", "2018-01-29 17:49:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75648", "10", "2018-01-29 17:49:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75649", "18", "2018-01-29 18:07:18", "184.66.233.226", "1");
INSERT INTO `wp_gf_form_view` VALUES("75650", "3", "2018-01-29 18:35:44", "46.229.168.76", "33");
INSERT INTO `wp_gf_form_view` VALUES("75651", "11", "2018-01-29 18:38:25", "46.229.168.77", "3");
INSERT INTO `wp_gf_form_view` VALUES("75652", "18", "2018-01-29 19:23:29", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75653", "3", "2018-01-29 19:24:37", "52.37.180.245", "63");
INSERT INTO `wp_gf_form_view` VALUES("75654", "9", "2018-01-29 19:24:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75655", "8", "2018-01-29 19:24:38", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75656", "10", "2018-01-29 19:24:39", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("75657", "15", "2018-01-29 19:24:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75658", "18", "2018-01-29 20:04:02", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75659", "3", "2018-01-29 20:42:15", "96.50.101.176", "6");
INSERT INTO `wp_gf_form_view` VALUES("75660", "9", "2018-01-29 20:45:21", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75661", "3", "2018-01-29 21:01:25", "96.50.101.176", "65");
INSERT INTO `wp_gf_form_view` VALUES("75662", "18", "2018-01-29 21:14:57", "184.66.27.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("75663", "9", "2018-01-29 21:15:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75664", "8", "2018-01-29 21:15:11", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75665", "10", "2018-01-29 21:15:11", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75666", "15", "2018-01-29 21:15:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75667", "3", "2018-01-29 22:06:39", "184.66.49.231", "35");
INSERT INTO `wp_gf_form_view` VALUES("75668", "18", "2018-01-29 22:33:57", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75669", "9", "2018-01-29 22:53:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75670", "8", "2018-01-29 22:53:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75671", "10", "2018-01-29 22:53:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75672", "15", "2018-01-29 22:53:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75673", "18", "2018-01-29 23:13:43", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75674", "10", "2018-01-29 23:24:27", "66.249.87.53", "1");
INSERT INTO `wp_gf_form_view` VALUES("75675", "3", "2018-01-29 23:40:22", "64.180.72.229", "1");
INSERT INTO `wp_gf_form_view` VALUES("75676", "3", "2018-01-30 00:44:16", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75677", "9", "2018-01-30 00:44:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75678", "8", "2018-01-30 00:44:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75679", "10", "2018-01-30 00:44:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75680", "15", "2018-01-30 00:44:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75681", "18", "2018-01-30 00:44:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75682", "8", "2018-01-30 01:17:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75683", "3", "2018-01-30 01:18:09", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75684", "14", "2018-01-30 01:38:44", "24.69.160.103", "1");
INSERT INTO `wp_gf_form_view` VALUES("75685", "10", "2018-01-30 02:19:13", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("75686", "3", "2018-01-30 02:19:37", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("75687", "9", "2018-01-30 02:43:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75688", "8", "2018-01-30 02:43:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75689", "15", "2018-01-30 02:43:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75690", "18", "2018-01-30 02:43:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75691", "10", "2018-01-30 03:11:46", "194.187.170.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("75692", "3", "2018-01-30 03:17:08", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("75693", "18", "2018-01-30 03:44:51", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75694", "3", "2018-01-30 04:28:58", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("75695", "9", "2018-01-30 04:28:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75696", "8", "2018-01-30 04:28:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75697", "10", "2018-01-30 04:29:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75698", "15", "2018-01-30 04:29:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75699", "18", "2018-01-30 04:29:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75700", "14", "2018-01-30 04:41:06", "177.33.166.237", "4");
INSERT INTO `wp_gf_form_view` VALUES("75701", "18", "2018-01-30 05:46:54", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75702", "3", "2018-01-30 06:12:28", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("75703", "9", "2018-01-30 06:12:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75704", "8", "2018-01-30 06:12:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75705", "10", "2018-01-30 06:12:30", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75706", "15", "2018-01-30 06:12:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75707", "18", "2018-01-30 06:12:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75708", "3", "2018-01-30 07:07:34", "34.207.57.50", "64");
INSERT INTO `wp_gf_form_view` VALUES("75709", "9", "2018-01-30 07:41:17", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("75710", "8", "2018-01-30 07:41:18", "139.162.246.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("75711", "10", "2018-01-30 07:41:19", "139.162.246.24", "10");
INSERT INTO `wp_gf_form_view` VALUES("75712", "15", "2018-01-30 07:41:21", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("75713", "18", "2018-01-30 07:41:23", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("75714", "3", "2018-01-30 08:11:02", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75715", "18", "2018-01-30 09:15:12", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75716", "3", "2018-01-30 09:23:25", "66.249.69.115", "38");
INSERT INTO `wp_gf_form_view` VALUES("75717", "9", "2018-01-30 09:33:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75718", "8", "2018-01-30 09:33:35", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75719", "10", "2018-01-30 09:33:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75720", "15", "2018-01-30 09:33:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75721", "3", "2018-01-30 10:18:21", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("75722", "9", "2018-01-30 10:42:48", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("75723", "8", "2018-01-30 10:42:48", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("75724", "10", "2018-01-30 10:42:49", "139.162.246.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("75725", "15", "2018-01-30 10:42:51", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("75726", "18", "2018-01-30 10:42:53", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("75727", "3", "2018-01-30 11:19:29", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75728", "9", "2018-01-30 11:19:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75729", "8", "2018-01-30 11:19:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75730", "10", "2018-01-30 11:19:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75731", "15", "2018-01-30 11:19:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75732", "18", "2018-01-30 11:19:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75733", "10", "2018-01-30 12:02:23", "66.249.87.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("75734", "10", "2018-01-30 13:00:37", "184.66.129.248", "12");
INSERT INTO `wp_gf_form_view` VALUES("75735", "3", "2018-01-30 13:11:17", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("75736", "9", "2018-01-30 13:11:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75737", "8", "2018-01-30 13:11:19", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75738", "15", "2018-01-30 13:11:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75739", "18", "2018-01-30 13:11:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75740", "10", "2018-01-30 15:03:30", "157.55.39.54", "7");
INSERT INTO `wp_gf_form_view` VALUES("75741", "3", "2018-01-30 15:12:45", "174.138.63.96", "33");
INSERT INTO `wp_gf_form_view` VALUES("75742", "9", "2018-01-30 15:24:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75743", "8", "2018-01-30 15:24:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75744", "15", "2018-01-30 15:24:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75745", "18", "2018-01-30 15:24:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75746", "3", "2018-01-30 16:06:31", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75747", "18", "2018-01-30 16:22:31", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("75748", "3", "2018-01-30 17:16:31", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75749", "9", "2018-01-30 17:16:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75750", "8", "2018-01-30 17:16:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75751", "10", "2018-01-30 17:16:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75752", "15", "2018-01-30 17:16:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75753", "18", "2018-01-30 17:16:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75754", "11", "2018-01-30 17:47:00", "194.187.170.124", "1");
INSERT INTO `wp_gf_form_view` VALUES("75755", "3", "2018-01-30 18:01:13", "23.95.43.21", "3");
INSERT INTO `wp_gf_form_view` VALUES("75756", "10", "2018-01-30 18:15:10", "64.114.222.228", "2");
INSERT INTO `wp_gf_form_view` VALUES("75757", "3", "2018-01-30 19:06:07", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("75758", "9", "2018-01-30 19:06:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75759", "8", "2018-01-30 19:06:08", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75760", "10", "2018-01-30 19:06:09", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75761", "15", "2018-01-30 19:06:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75762", "18", "2018-01-30 19:06:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75763", "14", "2018-01-30 19:49:46", "209.123.79.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("75764", "3", "2018-01-30 20:04:46", "209.123.79.176", "63");
INSERT INTO `wp_gf_form_view` VALUES("75765", "18", "2018-01-30 20:31:36", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("75766", "9", "2018-01-30 20:55:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75767", "8", "2018-01-30 20:55:07", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75768", "10", "2018-01-30 20:55:07", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75769", "15", "2018-01-30 20:55:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75770", "18", "2018-01-30 21:04:41", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75771", "3", "2018-01-30 21:22:29", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75772", "14", "2018-01-30 21:41:08", "184.69.181.174", "2");
INSERT INTO `wp_gf_form_view` VALUES("75773", "14", "2018-01-30 22:16:07", "172.245.112.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("75774", "3", "2018-01-30 22:16:15", "172.245.112.57", "32");
INSERT INTO `wp_gf_form_view` VALUES("75775", "9", "2018-01-30 22:37:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75776", "8", "2018-01-30 22:37:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75777", "10", "2018-01-30 22:37:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75778", "15", "2018-01-30 22:37:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75779", "18", "2018-01-30 22:37:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75780", "18", "2018-01-30 23:26:41", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75781", "3", "2018-01-31 00:07:28", "216.244.66.195", "64");
INSERT INTO `wp_gf_form_view` VALUES("75782", "18", "2018-01-31 00:08:40", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75783", "9", "2018-01-31 00:14:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75784", "8", "2018-01-31 00:14:56", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75785", "10", "2018-01-31 00:14:57", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75786", "15", "2018-01-31 00:14:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75787", "3", "2018-01-31 01:44:14", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("75788", "9", "2018-01-31 01:59:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75789", "8", "2018-01-31 01:59:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75790", "10", "2018-01-31 01:59:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75791", "15", "2018-01-31 01:59:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75792", "18", "2018-01-31 01:59:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75793", "18", "2018-01-31 02:01:32", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75794", "10", "2018-01-31 02:59:31", "66.249.87.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("75795", "18", "2018-01-31 03:03:24", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("75796", "3", "2018-01-31 03:35:12", "216.244.66.195", "41");
INSERT INTO `wp_gf_form_view` VALUES("75797", "9", "2018-01-31 03:39:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75798", "8", "2018-01-31 03:39:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75799", "10", "2018-01-31 03:39:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75800", "15", "2018-01-31 03:39:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75801", "10", "2018-01-31 04:15:25", "207.46.13.96", "6");
INSERT INTO `wp_gf_form_view` VALUES("75802", "3", "2018-01-31 04:15:31", "157.55.39.161", "6");
INSERT INTO `wp_gf_form_view` VALUES("75803", "18", "2018-01-31 05:19:10", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75804", "3", "2018-01-31 05:24:37", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75805", "9", "2018-01-31 05:24:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75806", "8", "2018-01-31 05:24:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75807", "10", "2018-01-31 05:24:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75808", "15", "2018-01-31 05:24:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75809", "3", "2018-01-31 06:02:56", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("75810", "18", "2018-01-31 06:14:56", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75811", "6", "2018-01-31 06:18:43", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75812", "3", "2018-01-31 07:06:24", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("75813", "9", "2018-01-31 07:06:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75814", "8", "2018-01-31 07:06:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75815", "10", "2018-01-31 07:06:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75816", "15", "2018-01-31 07:06:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75817", "18", "2018-01-31 07:06:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75818", "3", "2018-01-31 08:50:55", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75819", "9", "2018-01-31 08:50:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75820", "8", "2018-01-31 08:50:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75821", "10", "2018-01-31 08:50:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75822", "15", "2018-01-31 08:51:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75823", "18", "2018-01-31 08:51:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75824", "18", "2018-01-31 09:46:21", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75825", "8", "2018-01-31 09:48:59", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75826", "3", "2018-01-31 10:29:35", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75827", "9", "2018-01-31 10:29:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75828", "8", "2018-01-31 10:29:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75829", "10", "2018-01-31 10:29:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75830", "15", "2018-01-31 10:29:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75831", "18", "2018-01-31 10:29:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75832", "3", "2018-01-31 11:03:50", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75833", "3", "2018-01-31 12:15:33", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75834", "9", "2018-01-31 12:15:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75835", "8", "2018-01-31 12:15:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75836", "10", "2018-01-31 12:15:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75837", "15", "2018-01-31 12:15:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75838", "18", "2018-01-31 12:15:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75839", "3", "2018-01-31 13:37:46", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("75840", "5", "2018-01-31 13:56:05", "146.185.223.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("75841", "9", "2018-01-31 13:59:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75842", "8", "2018-01-31 13:59:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75843", "10", "2018-01-31 13:59:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75844", "15", "2018-01-31 13:59:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75845", "18", "2018-01-31 13:59:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75846", "18", "2018-01-31 14:16:14", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75847", "3", "2018-01-31 14:20:40", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75848", "3", "2018-01-31 15:04:08", "216.244.66.247", "64");
INSERT INTO `wp_gf_form_view` VALUES("75849", "8", "2018-01-31 15:04:34", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("75850", "9", "2018-01-31 15:39:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75851", "10", "2018-01-31 15:39:53", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75852", "15", "2018-01-31 15:39:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75853", "18", "2018-01-31 15:39:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75854", "18", "2018-01-31 16:45:13", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75855", "3", "2018-01-31 17:25:15", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75856", "9", "2018-01-31 17:25:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75857", "8", "2018-01-31 17:25:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75858", "10", "2018-01-31 17:25:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75859", "15", "2018-01-31 17:25:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75860", "18", "2018-01-31 17:25:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75861", "3", "2018-01-31 18:39:44", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("75862", "10", "2018-01-31 18:46:41", "66.249.87.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("75863", "3", "2018-01-31 19:05:56", "108.180.147.111", "35");
INSERT INTO `wp_gf_form_view` VALUES("75864", "9", "2018-01-31 19:06:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75865", "8", "2018-01-31 19:06:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75866", "10", "2018-01-31 19:06:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75867", "15", "2018-01-31 19:06:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75868", "18", "2018-01-31 19:06:52", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75869", "3", "2018-01-31 20:00:32", "164.132.161.27", "32");
INSERT INTO `wp_gf_form_view` VALUES("75870", "18", "2018-01-31 20:07:33", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75871", "9", "2018-01-31 20:56:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75872", "8", "2018-01-31 20:56:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75873", "10", "2018-01-31 20:56:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75874", "15", "2018-01-31 20:56:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75875", "3", "2018-01-31 21:11:49", "51.255.65.13", "2");
INSERT INTO `wp_gf_form_view` VALUES("75876", "10", "2018-01-31 22:36:12", "217.182.132.61", "7");
INSERT INTO `wp_gf_form_view` VALUES("75877", "3", "2018-01-31 22:46:25", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("75878", "9", "2018-01-31 22:46:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75879", "8", "2018-01-31 22:46:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75880", "15", "2018-01-31 22:46:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75881", "18", "2018-01-31 22:46:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75882", "3", "2018-01-31 23:01:49", "66.249.69.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("75883", "14", "2018-01-31 23:12:25", "142.36.194.64", "2");
INSERT INTO `wp_gf_form_view` VALUES("75884", "3", "2018-02-01 00:24:54", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("75885", "9", "2018-02-01 00:24:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75886", "8", "2018-02-01 00:24:55", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75887", "10", "2018-02-01 00:24:56", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75888", "15", "2018-02-01 00:24:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75889", "18", "2018-02-01 00:25:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75890", "14", "2018-02-01 00:33:17", "45.44.120.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("75891", "14", "2018-02-01 01:07:11", "96.54.61.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("75892", "18", "2018-02-01 01:20:17", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75893", "10", "2018-02-01 01:26:23", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75894", "9", "2018-02-01 01:55:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75895", "3", "2018-02-01 01:55:29", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75896", "18", "2018-02-01 02:09:42", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("75897", "3", "2018-02-01 02:14:28", "216.244.66.247", "42");
INSERT INTO `wp_gf_form_view` VALUES("75898", "9", "2018-02-01 02:22:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75899", "8", "2018-02-01 02:22:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75900", "10", "2018-02-01 02:22:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75901", "15", "2018-02-01 02:22:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75902", "10", "2018-02-01 03:26:33", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75903", "3", "2018-02-01 04:02:09", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("75904", "9", "2018-02-01 04:02:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75905", "8", "2018-02-01 04:02:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75906", "10", "2018-02-01 04:02:11", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75907", "15", "2018-02-01 04:02:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75908", "18", "2018-02-01 04:02:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75909", "18", "2018-02-01 05:36:55", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75910", "3", "2018-02-01 05:45:29", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("75911", "9", "2018-02-01 05:45:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75912", "8", "2018-02-01 05:45:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75913", "10", "2018-02-01 05:45:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75914", "15", "2018-02-01 05:45:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75915", "18", "2018-02-01 06:25:25", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("75916", "10", "2018-02-01 06:45:18", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("75917", "3", "2018-02-01 06:46:12", "75.156.34.148", "3");
INSERT INTO `wp_gf_form_view` VALUES("75918", "3", "2018-02-01 07:32:56", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75919", "9", "2018-02-01 07:32:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75920", "8", "2018-02-01 07:32:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75921", "10", "2018-02-01 07:32:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75922", "15", "2018-02-01 07:33:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75923", "18", "2018-02-01 07:33:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75924", "3", "2018-02-01 08:02:32", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("75925", "3", "2018-02-01 09:15:30", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("75926", "9", "2018-02-01 09:15:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75927", "8", "2018-02-01 09:15:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75928", "10", "2018-02-01 09:15:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75929", "15", "2018-02-01 09:15:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75930", "18", "2018-02-01 09:15:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75931", "3", "2018-02-01 10:08:05", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("75932", "8", "2018-02-01 10:12:37", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("75933", "18", "2018-02-01 10:38:13", "138.197.7.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("75934", "10", "2018-02-01 10:39:39", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("75935", "9", "2018-02-01 10:40:08", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75936", "15", "2018-02-01 10:40:11", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75937", "18", "2018-02-01 11:05:16", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75938", "3", "2018-02-01 11:13:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("75939", "9", "2018-02-01 11:13:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75940", "8", "2018-02-01 11:13:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75941", "10", "2018-02-01 11:13:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75942", "15", "2018-02-01 11:13:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75943", "18", "2018-02-01 13:00:59", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("75944", "3", "2018-02-01 13:02:15", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("75945", "9", "2018-02-01 13:02:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75946", "8", "2018-02-01 13:02:16", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75947", "10", "2018-02-01 13:02:17", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("75948", "15", "2018-02-01 13:02:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75949", "3", "2018-02-01 14:01:43", "34.207.57.50", "59");
INSERT INTO `wp_gf_form_view` VALUES("75950", "14", "2018-02-01 14:28:07", "104.131.186.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("75951", "6", "2018-02-01 14:29:03", "104.131.186.134", "1");
INSERT INTO `wp_gf_form_view` VALUES("75952", "10", "2018-02-01 14:31:24", "104.131.186.134", "10");
INSERT INTO `wp_gf_form_view` VALUES("75953", "9", "2018-02-01 14:35:51", "104.131.186.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("75954", "15", "2018-02-01 14:42:11", "104.131.186.134", "2");
INSERT INTO `wp_gf_form_view` VALUES("75955", "8", "2018-02-01 14:43:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75956", "18", "2018-02-01 14:43:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75957", "3", "2018-02-01 15:01:01", "104.131.186.134", "36");
INSERT INTO `wp_gf_form_view` VALUES("75958", "18", "2018-02-01 15:03:27", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("75959", "8", "2018-02-01 15:05:32", "104.131.186.134", "4");
INSERT INTO `wp_gf_form_view` VALUES("75960", "10", "2018-02-01 15:18:14", "217.182.132.21", "7");
INSERT INTO `wp_gf_form_view` VALUES("75961", "9", "2018-02-01 15:30:51", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75962", "15", "2018-02-01 15:30:57", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("75963", "3", "2018-02-01 16:20:49", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("75964", "15", "2018-02-01 16:21:04", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75965", "9", "2018-02-01 16:24:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75966", "8", "2018-02-01 16:24:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75967", "10", "2018-02-01 16:24:38", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("75968", "18", "2018-02-01 16:24:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75969", "18", "2018-02-01 17:11:25", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("75970", "3", "2018-02-01 18:05:30", "96.50.12.121", "35");
INSERT INTO `wp_gf_form_view` VALUES("75971", "9", "2018-02-01 18:15:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75972", "8", "2018-02-01 18:15:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75973", "10", "2018-02-01 18:15:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75974", "15", "2018-02-01 18:15:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75975", "18", "2018-02-01 18:16:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75976", "10", "2018-02-01 19:30:06", "217.182.132.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("75977", "18", "2018-02-01 19:40:24", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75978", "3", "2018-02-01 20:10:06", "52.37.180.245", "63");
INSERT INTO `wp_gf_form_view` VALUES("75979", "9", "2018-02-01 20:10:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75980", "8", "2018-02-01 20:10:07", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("75981", "10", "2018-02-01 20:10:08", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("75982", "15", "2018-02-01 20:10:10", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("75983", "18", "2018-02-01 20:10:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75984", "18", "2018-02-01 21:05:59", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("75985", "10", "2018-02-01 21:49:57", "66.249.87.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("75986", "3", "2018-02-01 22:01:10", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("75987", "9", "2018-02-01 22:01:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75988", "8", "2018-02-01 22:01:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75989", "10", "2018-02-01 22:01:12", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("75990", "15", "2018-02-01 22:01:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75991", "18", "2018-02-01 22:01:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("75992", "8", "2018-02-01 23:02:11", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("75993", "3", "2018-02-01 23:02:35", "216.244.66.195", "37");
INSERT INTO `wp_gf_form_view` VALUES("75994", "9", "2018-02-01 23:15:50", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("75995", "18", "2018-02-01 23:20:43", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("75996", "10", "2018-02-01 23:41:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("75997", "15", "2018-02-01 23:41:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("75998", "3", "2018-02-02 01:30:56", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("75999", "9", "2018-02-02 01:30:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76000", "8", "2018-02-02 01:30:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76001", "10", "2018-02-02 01:30:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76002", "15", "2018-02-02 01:31:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76003", "18", "2018-02-02 01:31:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76004", "18", "2018-02-02 02:02:20", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76005", "3", "2018-02-02 02:44:49", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("76006", "3", "2018-02-02 03:33:00", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76007", "9", "2018-02-02 03:33:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76008", "8", "2018-02-02 03:33:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76009", "10", "2018-02-02 03:33:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76010", "15", "2018-02-02 03:33:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76011", "18", "2018-02-02 03:33:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76012", "18", "2018-02-02 04:28:46", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76013", "3", "2018-02-02 05:17:17", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("76014", "8", "2018-02-02 05:17:53", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("76015", "18", "2018-02-02 05:18:17", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76016", "9", "2018-02-02 05:23:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76017", "10", "2018-02-02 05:23:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76018", "15", "2018-02-02 05:23:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76019", "3", "2018-02-02 06:15:20", "216.244.66.247", "15");
INSERT INTO `wp_gf_form_view` VALUES("76020", "8", "2018-02-02 06:16:52", "157.55.39.237", "2");
INSERT INTO `wp_gf_form_view` VALUES("76021", "10", "2018-02-02 06:19:12", "40.77.167.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("76022", "6", "2018-02-02 06:19:44", "40.77.167.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("76023", "3", "2018-02-02 07:04:52", "164.132.161.31", "31");
INSERT INTO `wp_gf_form_view` VALUES("76024", "9", "2018-02-02 07:05:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76025", "8", "2018-02-02 07:05:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76026", "10", "2018-02-02 07:05:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76027", "15", "2018-02-02 07:05:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76028", "18", "2018-02-02 07:05:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76029", "3", "2018-02-02 08:12:50", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("76030", "9", "2018-02-02 08:58:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76031", "8", "2018-02-02 08:58:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76032", "10", "2018-02-02 08:58:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76033", "15", "2018-02-02 08:58:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76034", "18", "2018-02-02 08:58:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76035", "10", "2018-02-02 09:28:49", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76036", "3", "2018-02-02 09:29:32", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76037", "18", "2018-02-02 09:49:03", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76038", "18", "2018-02-02 10:21:42", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76039", "3", "2018-02-02 10:40:00", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("76040", "9", "2018-02-02 10:40:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76041", "8", "2018-02-02 10:40:02", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76042", "10", "2018-02-02 10:40:02", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("76043", "15", "2018-02-02 10:40:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76044", "3", "2018-02-02 11:21:12", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("76045", "18", "2018-02-02 11:49:59", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76046", "3", "2018-02-02 12:16:56", "216.244.66.247", "63");
INSERT INTO `wp_gf_form_view` VALUES("76047", "9", "2018-02-02 12:35:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76048", "8", "2018-02-02 12:35:00", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76049", "10", "2018-02-02 12:35:01", "52.37.180.245", "12");
INSERT INTO `wp_gf_form_view` VALUES("76050", "15", "2018-02-02 12:35:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76051", "18", "2018-02-02 12:35:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76052", "3", "2018-02-02 14:20:44", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("76053", "9", "2018-02-02 14:20:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76054", "8", "2018-02-02 14:20:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76055", "10", "2018-02-02 14:20:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76056", "15", "2018-02-02 14:20:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76057", "18", "2018-02-02 14:20:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76058", "3", "2018-02-02 16:13:18", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76059", "9", "2018-02-02 16:13:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76060", "8", "2018-02-02 16:13:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76061", "10", "2018-02-02 16:13:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76062", "15", "2018-02-02 16:13:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76063", "18", "2018-02-02 16:13:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76064", "10", "2018-02-02 17:16:18", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("76065", "18", "2018-02-02 17:21:17", "184.66.27.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("76066", "9", "2018-02-02 17:30:49", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76067", "3", "2018-02-02 17:31:28", "216.244.66.247", "31");
INSERT INTO `wp_gf_form_view` VALUES("76068", "8", "2018-02-02 17:58:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76069", "15", "2018-02-02 17:58:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76070", "18", "2018-02-02 18:04:55", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76071", "3", "2018-02-02 18:37:26", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76072", "18", "2018-02-02 19:00:52", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76073", "5", "2018-02-02 19:31:06", "54.36.149.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("76074", "3", "2018-02-02 19:34:02", "54.36.149.84", "31");
INSERT INTO `wp_gf_form_view` VALUES("76075", "9", "2018-02-02 19:54:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76076", "8", "2018-02-02 19:54:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76077", "10", "2018-02-02 19:54:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76078", "15", "2018-02-02 19:54:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76079", "10", "2018-02-02 20:46:41", "199.59.150.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("76080", "18", "2018-02-02 21:23:33", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76081", "3", "2018-02-02 21:48:59", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("76082", "9", "2018-02-02 21:50:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76083", "8", "2018-02-02 21:50:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76084", "10", "2018-02-02 21:50:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76085", "15", "2018-02-02 21:50:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76086", "14", "2018-02-02 21:56:48", "187.36.145.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("76087", "3", "2018-02-02 22:05:58", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76088", "18", "2018-02-02 22:45:35", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76089", "18", "2018-02-02 23:12:30", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76090", "3", "2018-02-02 23:31:01", "180.76.15.21", "33");
INSERT INTO `wp_gf_form_view` VALUES("76091", "9", "2018-02-02 23:48:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76092", "8", "2018-02-02 23:48:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76093", "10", "2018-02-02 23:48:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76094", "15", "2018-02-02 23:48:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76095", "3", "2018-02-03 00:11:42", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("76096", "10", "2018-02-03 00:22:29", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76097", "18", "2018-02-03 00:47:52", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76098", "18", "2018-02-03 01:06:38", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76099", "10", "2018-02-03 01:17:29", "54.36.148.239", "6");
INSERT INTO `wp_gf_form_view` VALUES("76100", "3", "2018-02-03 01:26:03", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76101", "9", "2018-02-03 01:26:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76102", "8", "2018-02-03 01:26:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76103", "15", "2018-02-03 01:26:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76104", "10", "2018-02-03 02:04:39", "66.249.87.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("76105", "3", "2018-02-03 02:39:51", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76106", "3", "2018-02-03 03:17:07", "52.37.180.245", "41");
INSERT INTO `wp_gf_form_view` VALUES("76107", "9", "2018-02-03 03:17:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76108", "8", "2018-02-03 03:17:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76109", "10", "2018-02-03 03:17:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76110", "15", "2018-02-03 03:17:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76111", "18", "2018-02-03 03:17:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76112", "18", "2018-02-03 04:00:32", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76113", "10", "2018-02-03 04:14:00", "184.66.129.248", "9");
INSERT INTO `wp_gf_form_view` VALUES("76114", "3", "2018-02-03 04:14:57", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("76115", "9", "2018-02-03 04:57:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76116", "8", "2018-02-03 04:57:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76117", "15", "2018-02-03 04:57:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76118", "3", "2018-02-03 05:04:24", "66.249.69.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("76119", "5", "2018-02-03 06:09:02", "173.208.128.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("76120", "18", "2018-02-03 06:22:05", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76121", "6", "2018-02-03 06:32:29", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76122", "3", "2018-02-03 06:33:35", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("76123", "9", "2018-02-03 06:40:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76124", "8", "2018-02-03 06:40:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76125", "10", "2018-02-03 06:40:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76126", "15", "2018-02-03 06:40:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76127", "3", "2018-02-03 07:30:27", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76128", "3", "2018-02-03 08:23:59", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76129", "9", "2018-02-03 08:24:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76130", "8", "2018-02-03 08:24:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76131", "10", "2018-02-03 08:24:01", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76132", "15", "2018-02-03 08:24:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76133", "18", "2018-02-03 08:24:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76134", "8", "2018-02-03 09:11:37", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76135", "3", "2018-02-03 09:11:58", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76136", "8", "2018-02-03 10:05:36", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("76137", "3", "2018-02-03 10:08:25", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76138", "9", "2018-02-03 10:08:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76139", "10", "2018-02-03 10:08:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76140", "15", "2018-02-03 10:08:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76141", "18", "2018-02-03 10:08:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76142", "18", "2018-02-03 11:05:50", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76143", "3", "2018-02-03 11:51:35", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76144", "9", "2018-02-03 11:51:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76145", "8", "2018-02-03 11:51:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76146", "10", "2018-02-03 11:51:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76147", "15", "2018-02-03 11:51:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76148", "3", "2018-02-03 12:43:04", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76149", "3", "2018-02-03 13:05:11", "216.244.66.195", "61");
INSERT INTO `wp_gf_form_view` VALUES("76150", "9", "2018-02-03 13:31:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76151", "8", "2018-02-03 13:31:30", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76152", "10", "2018-02-03 13:31:30", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("76153", "15", "2018-02-03 13:31:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76154", "18", "2018-02-03 13:31:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76155", "3", "2018-02-03 15:20:26", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("76156", "9", "2018-02-03 15:25:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76157", "8", "2018-02-03 15:25:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76158", "10", "2018-02-03 15:25:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76159", "15", "2018-02-03 15:26:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76160", "18", "2018-02-03 15:26:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76161", "10", "2018-02-03 16:56:56", "164.132.161.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("76162", "10", "2018-02-03 17:00:12", "66.249.89.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("76163", "18", "2018-02-03 17:17:27", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("76164", "3", "2018-02-03 17:22:45", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76165", "9", "2018-02-03 17:22:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76166", "8", "2018-02-03 17:22:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76167", "15", "2018-02-03 17:22:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76168", "3", "2018-02-03 18:25:33", "46.229.168.71", "9");
INSERT INTO `wp_gf_form_view` VALUES("76169", "18", "2018-02-03 18:28:16", "46.229.168.74", "4");
INSERT INTO `wp_gf_form_view` VALUES("76170", "11", "2018-02-03 18:29:41", "46.229.168.65", "3");
INSERT INTO `wp_gf_form_view` VALUES("76171", "3", "2018-02-03 19:10:48", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("76172", "9", "2018-02-03 19:10:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76173", "8", "2018-02-03 19:10:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76174", "10", "2018-02-03 19:10:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76175", "15", "2018-02-03 19:10:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76176", "18", "2018-02-03 19:10:57", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76177", "3", "2018-02-03 20:08:52", "40.77.167.112", "32");
INSERT INTO `wp_gf_form_view` VALUES("76178", "18", "2018-02-03 20:32:53", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("76179", "9", "2018-02-03 20:50:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76180", "8", "2018-02-03 20:50:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76181", "10", "2018-02-03 20:50:44", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76182", "15", "2018-02-03 20:50:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76183", "3", "2018-02-03 21:04:41", "24.69.155.121", "3");
INSERT INTO `wp_gf_form_view` VALUES("76184", "18", "2018-02-03 21:41:50", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76185", "3", "2018-02-03 22:03:11", "164.132.161.86", "32");
INSERT INTO `wp_gf_form_view` VALUES("76186", "14", "2018-02-03 22:10:20", "24.69.168.10", "1");
INSERT INTO `wp_gf_form_view` VALUES("76187", "18", "2018-02-03 22:15:42", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76188", "10", "2018-02-03 22:33:37", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("76189", "9", "2018-02-03 22:48:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76190", "8", "2018-02-03 22:48:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76191", "15", "2018-02-03 22:48:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76192", "18", "2018-02-04 00:22:15", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76193", "3", "2018-02-04 00:36:14", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76194", "9", "2018-02-04 00:36:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76195", "8", "2018-02-04 00:36:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76196", "10", "2018-02-04 00:36:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76197", "15", "2018-02-04 00:36:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76198", "3", "2018-02-04 01:04:05", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("76199", "18", "2018-02-04 02:03:56", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76200", "10", "2018-02-04 02:25:12", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("76201", "3", "2018-02-04 02:26:10", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("76202", "9", "2018-02-04 02:26:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76203", "8", "2018-02-04 02:26:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76204", "15", "2018-02-04 02:26:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76205", "18", "2018-02-04 03:10:21", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76206", "3", "2018-02-04 03:25:34", "54.36.149.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("76207", "10", "2018-02-04 04:16:07", "216.244.66.247", "16");
INSERT INTO `wp_gf_form_view` VALUES("76208", "3", "2018-02-04 04:16:17", "52.37.180.245", "73");
INSERT INTO `wp_gf_form_view` VALUES("76209", "9", "2018-02-04 04:16:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76210", "8", "2018-02-04 04:16:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76211", "15", "2018-02-04 04:16:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76212", "18", "2018-02-04 04:16:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76213", "3", "2018-02-04 05:30:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76214", "18", "2018-02-04 05:35:44", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76215", "3", "2018-02-04 06:01:38", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76216", "9", "2018-02-04 06:01:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76217", "8", "2018-02-04 06:01:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76218", "10", "2018-02-04 06:01:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76219", "15", "2018-02-04 06:01:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76220", "18", "2018-02-04 06:01:44", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76221", "3", "2018-02-04 07:18:39", "216.244.66.247", "61");
INSERT INTO `wp_gf_form_view` VALUES("76222", "18", "2018-02-04 07:19:08", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("76223", "10", "2018-02-04 07:20:32", "66.249.89.147", "11");
INSERT INTO `wp_gf_form_view` VALUES("76224", "9", "2018-02-04 07:25:03", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76225", "8", "2018-02-04 07:25:03", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("76226", "15", "2018-02-04 07:25:08", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76227", "3", "2018-02-04 09:36:57", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76228", "9", "2018-02-04 09:36:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76229", "8", "2018-02-04 09:36:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76230", "10", "2018-02-04 09:36:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76231", "15", "2018-02-04 09:37:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76232", "18", "2018-02-04 09:37:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76233", "14", "2018-02-04 09:44:36", "77.75.78.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("76234", "10", "2018-02-04 10:15:52", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76235", "8", "2018-02-04 11:01:02", "66.249.64.85", "3");
INSERT INTO `wp_gf_form_view` VALUES("76236", "10", "2018-02-04 11:05:46", "66.249.64.83", "6");
INSERT INTO `wp_gf_form_view` VALUES("76237", "18", "2018-02-04 11:19:43", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76238", "3", "2018-02-04 11:24:39", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76239", "9", "2018-02-04 11:24:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76240", "15", "2018-02-04 11:24:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76241", "18", "2018-02-04 12:27:05", "138.197.111.12", "1");
INSERT INTO `wp_gf_form_view` VALUES("76242", "14", "2018-02-04 12:55:17", "92.114.61.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("76243", "3", "2018-02-04 13:12:36", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("76244", "9", "2018-02-04 13:12:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76245", "8", "2018-02-04 13:12:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76246", "10", "2018-02-04 13:12:38", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("76247", "15", "2018-02-04 13:12:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76248", "18", "2018-02-04 13:12:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76249", "18", "2018-02-04 14:44:13", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76250", "8", "2018-02-04 14:51:28", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("76251", "3", "2018-02-04 14:51:42", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("76252", "9", "2018-02-04 14:59:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76253", "10", "2018-02-04 14:59:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76254", "15", "2018-02-04 14:59:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76255", "18", "2018-02-04 15:37:52", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76256", "18", "2018-02-04 16:05:25", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("76257", "9", "2018-02-04 16:47:41", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76258", "3", "2018-02-04 16:48:52", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76259", "8", "2018-02-04 16:48:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76260", "10", "2018-02-04 16:48:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76261", "15", "2018-02-04 16:48:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76262", "3", "2018-02-04 17:42:40", "62.210.251.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76263", "3", "2018-02-04 18:04:34", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("76264", "9", "2018-02-04 18:32:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76265", "8", "2018-02-04 18:32:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76266", "10", "2018-02-04 18:32:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76267", "15", "2018-02-04 18:32:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76268", "18", "2018-02-04 18:32:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76269", "3", "2018-02-04 19:51:13", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76270", "3", "2018-02-04 20:01:36", "217.182.132.184", "41");
INSERT INTO `wp_gf_form_view` VALUES("76271", "10", "2018-02-04 20:12:52", "66.249.89.151", "6");
INSERT INTO `wp_gf_form_view` VALUES("76272", "9", "2018-02-04 20:30:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76273", "8", "2018-02-04 20:30:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76274", "15", "2018-02-04 20:31:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76275", "18", "2018-02-04 20:31:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76276", "3", "2018-02-04 21:00:25", "70.67.56.127", "5");
INSERT INTO `wp_gf_form_view` VALUES("76277", "8", "2018-02-04 21:01:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76278", "18", "2018-02-04 21:02:00", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76279", "14", "2018-02-04 21:25:29", "154.20.30.110", "1");
INSERT INTO `wp_gf_form_view` VALUES("76280", "3", "2018-02-04 22:21:34", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76281", "9", "2018-02-04 22:21:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76282", "8", "2018-02-04 22:21:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76283", "10", "2018-02-04 22:21:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76284", "15", "2018-02-04 22:21:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76285", "18", "2018-02-04 22:21:40", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("76286", "18", "2018-02-04 23:55:26", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76287", "3", "2018-02-05 00:04:17", "217.182.132.93", "31");
INSERT INTO `wp_gf_form_view` VALUES("76288", "18", "2018-02-05 00:07:30", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76289", "9", "2018-02-05 00:11:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76290", "8", "2018-02-05 00:11:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76291", "10", "2018-02-05 00:11:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76292", "15", "2018-02-05 00:11:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76293", "9", "2018-02-05 01:01:12", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76294", "3", "2018-02-05 01:32:41", "68.180.228.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("76295", "8", "2018-02-05 01:51:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76296", "10", "2018-02-05 01:51:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76297", "15", "2018-02-05 01:51:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76298", "18", "2018-02-05 01:51:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76299", "3", "2018-02-05 02:44:06", "54.36.148.85", "1");
INSERT INTO `wp_gf_form_view` VALUES("76300", "3", "2018-02-05 03:13:59", "194.187.170.139", "31");
INSERT INTO `wp_gf_form_view` VALUES("76301", "10", "2018-02-05 03:23:05", "194.187.170.139", "8");
INSERT INTO `wp_gf_form_view` VALUES("76302", "9", "2018-02-05 03:46:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76303", "8", "2018-02-05 03:46:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76304", "15", "2018-02-05 03:46:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76305", "18", "2018-02-05 03:46:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76306", "14", "2018-02-05 03:48:38", "207.6.121.96", "1");
INSERT INTO `wp_gf_form_view` VALUES("76307", "10", "2018-02-05 04:22:21", "194.187.170.139", "2");
INSERT INTO `wp_gf_form_view` VALUES("76308", "18", "2018-02-05 04:44:50", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76309", "3", "2018-02-05 04:45:54", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76310", "10", "2018-02-05 05:01:12", "194.187.170.139", "7");
INSERT INTO `wp_gf_form_view` VALUES("76311", "3", "2018-02-05 05:26:51", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76312", "9", "2018-02-05 05:26:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76313", "8", "2018-02-05 05:26:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76314", "15", "2018-02-05 05:26:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76315", "18", "2018-02-05 05:26:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76316", "18", "2018-02-05 06:41:40", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76317", "3", "2018-02-05 06:45:26", "51.255.71.100", "2");
INSERT INTO `wp_gf_form_view` VALUES("76318", "3", "2018-02-05 07:21:45", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76319", "9", "2018-02-05 07:21:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76320", "8", "2018-02-05 07:21:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76321", "10", "2018-02-05 07:21:47", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("76322", "15", "2018-02-05 07:21:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76323", "18", "2018-02-05 07:21:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76324", "10", "2018-02-05 08:28:36", "72.14.199.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("76325", "3", "2018-02-05 08:56:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76326", "9", "2018-02-05 08:56:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76327", "8", "2018-02-05 08:56:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76328", "15", "2018-02-05 08:56:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76329", "18", "2018-02-05 08:56:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76330", "18", "2018-02-05 09:02:18", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76331", "3", "2018-02-05 09:41:02", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76332", "14", "2018-02-05 10:47:03", "125.141.200.36", "5");
INSERT INTO `wp_gf_form_view` VALUES("76333", "3", "2018-02-05 10:47:13", "125.141.200.36", "32");
INSERT INTO `wp_gf_form_view` VALUES("76334", "9", "2018-02-05 10:49:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76335", "8", "2018-02-05 10:49:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76336", "10", "2018-02-05 10:49:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76337", "15", "2018-02-05 10:49:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76338", "18", "2018-02-05 10:49:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76339", "9", "2018-02-05 11:08:03", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76340", "3", "2018-02-05 11:08:19", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76341", "3", "2018-02-05 12:51:05", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76342", "9", "2018-02-05 12:51:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76343", "8", "2018-02-05 12:51:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76344", "10", "2018-02-05 12:51:07", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76345", "15", "2018-02-05 12:51:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76346", "18", "2018-02-05 12:51:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76347", "3", "2018-02-05 13:29:29", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76348", "3", "2018-02-05 14:38:23", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76349", "9", "2018-02-05 14:38:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76350", "8", "2018-02-05 14:38:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76351", "10", "2018-02-05 14:38:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76352", "15", "2018-02-05 14:38:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76353", "18", "2018-02-05 14:38:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76354", "3", "2018-02-05 16:07:00", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("76355", "9", "2018-02-05 16:46:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76356", "8", "2018-02-05 16:46:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76357", "10", "2018-02-05 16:46:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76358", "15", "2018-02-05 16:46:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76359", "18", "2018-02-05 16:46:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76360", "18", "2018-02-05 17:03:15", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76361", "3", "2018-02-05 17:04:21", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("76362", "3", "2018-02-05 18:37:53", "24.108.38.201", "31");
INSERT INTO `wp_gf_form_view` VALUES("76363", "9", "2018-02-05 18:45:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76364", "8", "2018-02-05 18:45:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76365", "10", "2018-02-05 18:45:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76366", "15", "2018-02-05 18:45:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76367", "18", "2018-02-05 18:45:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76368", "6", "2018-02-05 19:29:59", "51.255.71.118", "1");
INSERT INTO `wp_gf_form_view` VALUES("76369", "10", "2018-02-05 20:16:44", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("76370", "3", "2018-02-05 20:18:54", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("76371", "9", "2018-02-05 20:33:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76372", "8", "2018-02-05 20:33:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76373", "15", "2018-02-05 20:33:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76374", "18", "2018-02-05 20:33:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76375", "3", "2018-02-05 21:21:56", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76376", "3", "2018-02-05 22:26:29", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76377", "9", "2018-02-05 22:26:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76378", "8", "2018-02-05 22:26:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76379", "10", "2018-02-05 22:26:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76380", "15", "2018-02-05 22:26:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76381", "18", "2018-02-05 22:26:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76382", "14", "2018-02-05 23:11:30", "70.66.128.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("76383", "3", "2018-02-05 23:13:06", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76384", "18", "2018-02-06 00:02:23", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76385", "10", "2018-02-06 00:10:08", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("76386", "3", "2018-02-06 00:21:43", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76387", "9", "2018-02-06 00:21:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76388", "8", "2018-02-06 00:21:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76389", "15", "2018-02-06 00:21:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76390", "18", "2018-02-06 01:04:31", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76391", "8", "2018-02-06 01:29:19", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76392", "3", "2018-02-06 01:29:48", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("76393", "3", "2018-02-06 02:12:45", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76394", "9", "2018-02-06 02:12:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76395", "8", "2018-02-06 02:12:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76396", "10", "2018-02-06 02:12:47", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76397", "15", "2018-02-06 02:12:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76398", "18", "2018-02-06 02:12:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76399", "18", "2018-02-06 03:44:59", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76400", "3", "2018-02-06 04:11:33", "52.37.180.245", "52");
INSERT INTO `wp_gf_form_view` VALUES("76401", "9", "2018-02-06 04:11:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76402", "8", "2018-02-06 04:11:35", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76403", "10", "2018-02-06 04:11:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76404", "15", "2018-02-06 04:11:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76405", "18", "2018-02-06 04:11:40", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("76406", "3", "2018-02-06 05:45:48", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("76407", "14", "2018-02-06 05:56:17", "99.199.2.116", "1");
INSERT INTO `wp_gf_form_view` VALUES("76408", "9", "2018-02-06 05:57:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76409", "8", "2018-02-06 05:57:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76410", "10", "2018-02-06 05:57:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76411", "15", "2018-02-06 05:57:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76412", "18", "2018-02-06 05:57:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76413", "18", "2018-02-06 06:08:32", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76414", "18", "2018-02-06 07:01:26", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76415", "3", "2018-02-06 07:27:01", "40.77.167.22", "45");
INSERT INTO `wp_gf_form_view` VALUES("76416", "9", "2018-02-06 07:27:18", "40.77.167.88", "4");
INSERT INTO `wp_gf_form_view` VALUES("76417", "10", "2018-02-06 07:27:47", "40.77.167.20", "10");
INSERT INTO `wp_gf_form_view` VALUES("76418", "8", "2018-02-06 07:57:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76419", "15", "2018-02-06 07:57:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76420", "3", "2018-02-06 08:18:19", "216.244.66.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("76421", "3", "2018-02-06 09:05:21", "40.77.167.88", "31");
INSERT INTO `wp_gf_form_view` VALUES("76422", "9", "2018-02-06 09:52:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76423", "8", "2018-02-06 09:52:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76424", "10", "2018-02-06 09:52:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76425", "15", "2018-02-06 09:52:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76426", "18", "2018-02-06 09:52:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76427", "3", "2018-02-06 10:20:36", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("76428", "3", "2018-02-06 11:46:57", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76429", "9", "2018-02-06 11:46:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76430", "8", "2018-02-06 11:47:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76431", "10", "2018-02-06 11:47:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76432", "15", "2018-02-06 11:47:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76433", "18", "2018-02-06 11:47:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76434", "3", "2018-02-06 12:48:58", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("76435", "10", "2018-02-06 12:52:36", "54.36.148.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76436", "10", "2018-02-06 13:00:37", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("76437", "6", "2018-02-06 13:30:10", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76438", "3", "2018-02-06 13:30:45", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("76439", "9", "2018-02-06 13:46:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76440", "8", "2018-02-06 13:46:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76441", "15", "2018-02-06 13:46:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76442", "18", "2018-02-06 13:46:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76443", "10", "2018-02-06 14:13:13", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("76444", "6", "2018-02-06 15:30:34", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76445", "3", "2018-02-06 15:31:11", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("76446", "9", "2018-02-06 15:54:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76447", "8", "2018-02-06 15:54:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76448", "10", "2018-02-06 15:54:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76449", "15", "2018-02-06 15:54:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76450", "18", "2018-02-06 15:54:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76451", "3", "2018-02-06 16:03:04", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("76452", "18", "2018-02-06 16:27:51", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76453", "14", "2018-02-06 16:48:19", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("76454", "3", "2018-02-06 17:52:05", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76455", "9", "2018-02-06 17:52:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76456", "8", "2018-02-06 17:52:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76457", "10", "2018-02-06 17:52:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76458", "15", "2018-02-06 17:52:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76459", "18", "2018-02-06 17:52:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76460", "18", "2018-02-06 18:15:09", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76461", "3", "2018-02-06 18:40:50", "208.110.93.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("76462", "8", "2018-02-06 19:02:52", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("76463", "3", "2018-02-06 19:03:37", "216.244.66.247", "37");
INSERT INTO `wp_gf_form_view` VALUES("76464", "9", "2018-02-06 19:08:48", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76465", "10", "2018-02-06 19:40:06", "194.187.170.124", "6");
INSERT INTO `wp_gf_form_view` VALUES("76466", "15", "2018-02-06 19:43:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76467", "18", "2018-02-06 19:43:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76468", "10", "2018-02-06 20:00:20", "194.187.170.124", "3");
INSERT INTO `wp_gf_form_view` VALUES("76469", "3", "2018-02-06 20:09:24", "70.67.244.136", "2");
INSERT INTO `wp_gf_form_view` VALUES("76470", "18", "2018-02-06 21:06:05", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76471", "10", "2018-02-06 21:16:53", "194.187.170.124", "7");
INSERT INTO `wp_gf_form_view` VALUES("76472", "3", "2018-02-06 21:32:36", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("76473", "9", "2018-02-06 21:32:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76474", "8", "2018-02-06 21:32:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76475", "15", "2018-02-06 21:32:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76476", "10", "2018-02-06 22:15:54", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("76477", "3", "2018-02-06 22:16:38", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("76478", "9", "2018-02-06 22:17:18", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76479", "8", "2018-02-06 22:17:18", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76480", "15", "2018-02-06 22:17:22", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76481", "18", "2018-02-06 22:17:24", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76482", "3", "2018-02-06 23:09:54", "216.244.66.247", "62");
INSERT INTO `wp_gf_form_view` VALUES("76483", "9", "2018-02-06 23:09:55", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76484", "8", "2018-02-06 23:09:56", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("76485", "10", "2018-02-06 23:09:57", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("76486", "15", "2018-02-06 23:09:59", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76487", "18", "2018-02-06 23:10:02", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76488", "18", "2018-02-07 00:20:12", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76489", "3", "2018-02-07 00:26:49", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76490", "3", "2018-02-07 01:03:19", "216.244.66.195", "38");
INSERT INTO `wp_gf_form_view` VALUES("76491", "18", "2018-02-07 01:10:37", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("76492", "9", "2018-02-07 01:17:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76493", "8", "2018-02-07 01:17:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76494", "10", "2018-02-07 01:17:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76495", "15", "2018-02-07 01:17:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76496", "18", "2018-02-07 02:00:04", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76497", "3", "2018-02-07 02:37:35", "40.77.167.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("76498", "10", "2018-02-07 02:46:54", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("76499", "3", "2018-02-07 03:12:36", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76500", "9", "2018-02-07 03:12:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76501", "8", "2018-02-07 03:12:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76502", "10", "2018-02-07 03:12:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76503", "15", "2018-02-07 03:12:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76504", "18", "2018-02-07 03:12:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76505", "10", "2018-02-07 04:17:52", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("76506", "6", "2018-02-07 05:03:33", "144.76.71.83", "1");
INSERT INTO `wp_gf_form_view` VALUES("76507", "3", "2018-02-07 05:11:11", "139.162.246.24", "37");
INSERT INTO `wp_gf_form_view` VALUES("76508", "10", "2018-02-07 05:11:11", "139.162.246.24", "10");
INSERT INTO `wp_gf_form_view` VALUES("76509", "15", "2018-02-07 05:11:12", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("76510", "9", "2018-02-07 05:12:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76511", "8", "2018-02-07 05:12:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76512", "18", "2018-02-07 05:12:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76513", "3", "2018-02-07 06:15:19", "68.180.228.176", "8");
INSERT INTO `wp_gf_form_view` VALUES("76514", "18", "2018-02-07 06:51:49", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76515", "10", "2018-02-07 06:53:04", "139.162.246.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("76516", "15", "2018-02-07 06:53:05", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("76517", "10", "2018-02-07 07:00:06", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("76518", "3", "2018-02-07 07:10:35", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76519", "9", "2018-02-07 07:10:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76520", "8", "2018-02-07 07:10:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76521", "15", "2018-02-07 07:10:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76522", "18", "2018-02-07 07:10:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76523", "3", "2018-02-07 08:36:38", "139.162.246.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("76524", "10", "2018-02-07 08:36:39", "139.162.246.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("76525", "15", "2018-02-07 08:36:40", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("76526", "3", "2018-02-07 09:14:01", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76527", "9", "2018-02-07 09:14:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76528", "8", "2018-02-07 09:14:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76529", "10", "2018-02-07 09:14:03", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76530", "15", "2018-02-07 09:14:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76531", "18", "2018-02-07 09:14:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76532", "3", "2018-02-07 11:01:41", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("76533", "9", "2018-02-07 11:01:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76534", "8", "2018-02-07 11:01:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76535", "10", "2018-02-07 11:01:43", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76536", "15", "2018-02-07 11:01:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76537", "18", "2018-02-07 11:01:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76538", "3", "2018-02-07 12:02:02", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("76539", "9", "2018-02-07 12:43:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76540", "8", "2018-02-07 12:43:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76541", "10", "2018-02-07 12:43:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76542", "15", "2018-02-07 12:43:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76543", "18", "2018-02-07 12:43:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76544", "14", "2018-02-07 13:13:39", "82.211.57.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("76545", "3", "2018-02-07 13:42:29", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("76546", "3", "2018-02-07 14:33:50", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("76547", "9", "2018-02-07 14:33:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76548", "8", "2018-02-07 14:33:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76549", "10", "2018-02-07 14:33:52", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76550", "15", "2018-02-07 14:33:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76551", "18", "2018-02-07 14:33:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76552", "3", "2018-02-07 15:16:40", "66.249.79.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("76553", "10", "2018-02-07 15:44:59", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("76554", "18", "2018-02-07 16:31:13", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76555", "3", "2018-02-07 16:48:59", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("76556", "9", "2018-02-07 16:52:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76557", "8", "2018-02-07 16:52:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76558", "10", "2018-02-07 16:52:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76559", "15", "2018-02-07 16:52:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76560", "3", "2018-02-07 17:57:10", "88.99.19.242", "1");
INSERT INTO `wp_gf_form_view` VALUES("76561", "3", "2018-02-07 18:03:53", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("76562", "10", "2018-02-07 18:24:30", "54.36.149.80", "6");
INSERT INTO `wp_gf_form_view` VALUES("76563", "18", "2018-02-07 18:33:59", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76564", "9", "2018-02-07 18:37:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76565", "8", "2018-02-07 18:37:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76566", "15", "2018-02-07 18:37:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76567", "18", "2018-02-07 19:14:16", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76568", "10", "2018-02-07 19:17:55", "194.187.170.143", "3");
INSERT INTO `wp_gf_form_view` VALUES("76569", "3", "2018-02-07 19:32:10", "194.187.170.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("76570", "3", "2018-02-07 20:02:55", "194.187.170.143", "39");
INSERT INTO `wp_gf_form_view` VALUES("76571", "9", "2018-02-07 20:29:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76572", "8", "2018-02-07 20:29:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76573", "10", "2018-02-07 20:29:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76574", "15", "2018-02-07 20:29:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76575", "18", "2018-02-07 20:29:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76576", "14", "2018-02-07 20:43:32", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("76577", "18", "2018-02-07 21:10:48", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("76578", "3", "2018-02-07 21:26:07", "5.188.211.26", "4");
INSERT INTO `wp_gf_form_view` VALUES("76579", "8", "2018-02-07 21:59:32", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76580", "3", "2018-02-07 22:00:01", "216.244.66.195", "70");
INSERT INTO `wp_gf_form_view` VALUES("76581", "9", "2018-02-07 22:17:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76582", "8", "2018-02-07 22:17:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76583", "10", "2018-02-07 22:17:13", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("76584", "15", "2018-02-07 22:17:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76585", "18", "2018-02-07 22:17:18", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76586", "14", "2018-02-07 22:37:59", "45.55.240.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("76587", "6", "2018-02-07 22:40:00", "45.55.240.206", "1");
INSERT INTO `wp_gf_form_view` VALUES("76588", "10", "2018-02-07 23:00:01", "45.55.240.206", "3");
INSERT INTO `wp_gf_form_view` VALUES("76589", "3", "2018-02-07 23:00:05", "45.55.240.206", "56");
INSERT INTO `wp_gf_form_view` VALUES("76590", "8", "2018-02-07 23:21:04", "45.55.240.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("76591", "18", "2018-02-07 23:21:30", "45.55.240.206", "2");
INSERT INTO `wp_gf_form_view` VALUES("76592", "3", "2018-02-08 00:02:37", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76593", "9", "2018-02-08 00:02:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76594", "8", "2018-02-08 00:02:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76595", "10", "2018-02-08 00:02:41", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("76596", "15", "2018-02-08 00:02:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76597", "18", "2018-02-08 00:02:49", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("76598", "18", "2018-02-08 01:05:39", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76599", "3", "2018-02-08 01:19:59", "207.46.13.157", "31");
INSERT INTO `wp_gf_form_view` VALUES("76600", "9", "2018-02-08 01:53:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76601", "8", "2018-02-08 01:53:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76602", "10", "2018-02-08 01:53:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76603", "15", "2018-02-08 01:53:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76604", "18", "2018-02-08 02:13:40", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76605", "18", "2018-02-08 03:13:28", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76606", "3", "2018-02-08 03:15:30", "180.76.15.160", "32");
INSERT INTO `wp_gf_form_view` VALUES("76607", "9", "2018-02-08 03:38:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76608", "8", "2018-02-08 03:38:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76609", "10", "2018-02-08 03:38:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76610", "15", "2018-02-08 03:38:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76611", "3", "2018-02-08 05:28:46", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76612", "9", "2018-02-08 05:28:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76613", "8", "2018-02-08 05:28:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76614", "10", "2018-02-08 05:28:48", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76615", "15", "2018-02-08 05:28:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76616", "18", "2018-02-08 05:28:52", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("76617", "3", "2018-02-08 06:08:48", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76618", "15", "2018-02-08 06:09:02", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76619", "18", "2018-02-08 06:17:15", "194.187.170.139", "1");
INSERT INTO `wp_gf_form_view` VALUES("76620", "3", "2018-02-08 07:04:36", "68.180.228.176", "34");
INSERT INTO `wp_gf_form_view` VALUES("76621", "9", "2018-02-08 07:09:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76622", "8", "2018-02-08 07:09:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76623", "10", "2018-02-08 07:09:24", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76624", "15", "2018-02-08 07:09:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76625", "18", "2018-02-08 07:09:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76626", "3", "2018-02-08 08:51:57", "52.37.180.245", "38");
INSERT INTO `wp_gf_form_view` VALUES("76627", "9", "2018-02-08 08:51:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76628", "8", "2018-02-08 08:51:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76629", "10", "2018-02-08 08:51:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76630", "15", "2018-02-08 08:52:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76631", "18", "2018-02-08 08:52:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76632", "14", "2018-02-08 08:58:22", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("76633", "3", "2018-02-08 09:01:28", "5.9.98.130", "92");
INSERT INTO `wp_gf_form_view` VALUES("76634", "10", "2018-02-08 09:09:58", "5.9.98.130", "7");
INSERT INTO `wp_gf_form_view` VALUES("76635", "15", "2018-02-08 09:10:16", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("76636", "8", "2018-02-08 09:11:48", "5.9.98.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("76637", "9", "2018-02-08 09:12:04", "5.9.98.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("76638", "6", "2018-02-08 09:13:17", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("76639", "18", "2018-02-08 09:17:25", "89.221.215.5", "2");
INSERT INTO `wp_gf_form_view` VALUES("76640", "11", "2018-02-08 09:18:24", "89.221.215.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("76641", "12", "2018-02-08 09:26:50", "89.221.215.5", "1");
INSERT INTO `wp_gf_form_view` VALUES("76642", "3", "2018-02-08 10:33:24", "5.9.98.130", "79");
INSERT INTO `wp_gf_form_view` VALUES("76643", "9", "2018-02-08 10:49:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76644", "8", "2018-02-08 10:49:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76645", "10", "2018-02-08 10:49:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76646", "15", "2018-02-08 10:49:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76647", "18", "2018-02-08 10:49:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76648", "18", "2018-02-08 11:52:13", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76649", "3", "2018-02-08 11:52:36", "5.9.98.130", "43");
INSERT INTO `wp_gf_form_view` VALUES("76650", "3", "2018-02-08 12:00:05", "5.9.98.130", "102");
INSERT INTO `wp_gf_form_view` VALUES("76651", "10", "2018-02-08 12:32:47", "207.46.13.9", "18");
INSERT INTO `wp_gf_form_view` VALUES("76652", "11", "2018-02-08 12:33:13", "207.46.13.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("76653", "6", "2018-02-08 12:34:09", "207.46.13.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("76654", "15", "2018-02-08 12:34:20", "207.46.13.79", "2");
INSERT INTO `wp_gf_form_view` VALUES("76655", "8", "2018-02-08 12:34:49", "207.46.13.9", "4");
INSERT INTO `wp_gf_form_view` VALUES("76656", "9", "2018-02-08 12:52:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76657", "18", "2018-02-08 12:52:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76658", "18", "2018-02-08 13:41:01", "194.187.170.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("76659", "3", "2018-02-08 13:42:41", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76660", "3", "2018-02-08 14:41:08", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76661", "9", "2018-02-08 14:41:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76662", "8", "2018-02-08 14:41:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76663", "10", "2018-02-08 14:41:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76664", "15", "2018-02-08 14:41:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76665", "18", "2018-02-08 14:41:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76666", "14", "2018-02-08 15:07:22", "68.180.228.176", "2");
INSERT INTO `wp_gf_form_view` VALUES("76667", "3", "2018-02-08 15:12:43", "5.9.98.130", "195");
INSERT INTO `wp_gf_form_view` VALUES("76668", "3", "2018-02-08 16:24:08", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("76669", "9", "2018-02-08 16:24:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76670", "8", "2018-02-08 16:24:10", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("76671", "10", "2018-02-08 16:24:12", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("76672", "15", "2018-02-08 16:24:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76673", "18", "2018-02-08 16:24:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76674", "18", "2018-02-08 17:00:27", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76675", "3", "2018-02-08 17:03:28", "51.255.65.40", "2");
INSERT INTO `wp_gf_form_view` VALUES("76676", "3", "2018-02-08 18:17:46", "64.114.222.225", "33");
INSERT INTO `wp_gf_form_view` VALUES("76677", "10", "2018-02-08 18:22:33", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("76678", "9", "2018-02-08 18:24:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76679", "8", "2018-02-08 18:24:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76680", "15", "2018-02-08 18:24:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76681", "18", "2018-02-08 18:24:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76682", "3", "2018-02-08 19:18:07", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("76683", "3", "2018-02-08 20:01:06", "51.255.65.50", "32");
INSERT INTO `wp_gf_form_view` VALUES("76684", "9", "2018-02-08 20:18:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76685", "8", "2018-02-08 20:18:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76686", "10", "2018-02-08 20:18:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76687", "15", "2018-02-08 20:18:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76688", "18", "2018-02-08 20:18:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76689", "18", "2018-02-08 21:00:47", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76690", "3", "2018-02-08 21:03:34", "184.66.49.231", "12");
INSERT INTO `wp_gf_form_view` VALUES("76691", "14", "2018-02-08 21:04:35", "64.251.78.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("76692", "3", "2018-02-08 22:00:05", "5.9.98.130", "375");
INSERT INTO `wp_gf_form_view` VALUES("76693", "9", "2018-02-08 22:07:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76694", "8", "2018-02-08 22:07:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76695", "10", "2018-02-08 22:07:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76696", "15", "2018-02-08 22:07:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76697", "18", "2018-02-08 22:07:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76698", "3", "2018-02-08 23:00:00", "5.9.98.130", "34");
INSERT INTO `wp_gf_form_view` VALUES("76699", "18", "2018-02-08 23:42:00", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76700", "3", "2018-02-09 00:07:31", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76701", "9", "2018-02-09 00:07:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76702", "8", "2018-02-09 00:07:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76703", "10", "2018-02-09 00:07:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76704", "15", "2018-02-09 00:07:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76705", "18", "2018-02-09 00:07:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76706", "3", "2018-02-09 01:07:44", "5.188.211.14", "31");
INSERT INTO `wp_gf_form_view` VALUES("76707", "9", "2018-02-09 01:52:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76708", "8", "2018-02-09 01:52:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76709", "10", "2018-02-09 01:52:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76710", "15", "2018-02-09 01:52:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76711", "18", "2018-02-09 01:52:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76712", "3", "2018-02-09 02:10:04", "216.244.66.195", "13");
INSERT INTO `wp_gf_form_view` VALUES("76713", "18", "2018-02-09 03:04:35", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("76714", "3", "2018-02-09 03:31:20", "88.99.162.162", "31");
INSERT INTO `wp_gf_form_view` VALUES("76715", "9", "2018-02-09 03:47:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76716", "8", "2018-02-09 03:47:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76717", "10", "2018-02-09 03:47:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76718", "15", "2018-02-09 03:47:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76719", "3", "2018-02-09 04:12:35", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76720", "18", "2018-02-09 05:07:44", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76721", "10", "2018-02-09 05:15:19", "164.132.161.55", "6");
INSERT INTO `wp_gf_form_view` VALUES("76722", "3", "2018-02-09 05:37:21", "52.3.243.204", "36");
INSERT INTO `wp_gf_form_view` VALUES("76723", "9", "2018-02-09 05:37:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76724", "8", "2018-02-09 05:37:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76725", "15", "2018-02-09 05:37:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76726", "18", "2018-02-09 06:48:38", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76727", "10", "2018-02-09 07:18:57", "52.3.243.204", "6");
INSERT INTO `wp_gf_form_view` VALUES("76728", "3", "2018-02-09 07:36:41", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76729", "9", "2018-02-09 07:36:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76730", "8", "2018-02-09 07:36:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76731", "15", "2018-02-09 07:36:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76732", "18", "2018-02-09 07:36:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76733", "14", "2018-02-09 08:00:39", "179.43.132.229", "3");
INSERT INTO `wp_gf_form_view` VALUES("76734", "3", "2018-02-09 08:14:57", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("76735", "3", "2018-02-09 09:06:13", "46.229.168.74", "49");
INSERT INTO `wp_gf_form_view` VALUES("76736", "9", "2018-02-09 09:26:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76737", "8", "2018-02-09 09:26:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76738", "10", "2018-02-09 09:26:53", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("76739", "15", "2018-02-09 09:26:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76740", "18", "2018-02-09 09:26:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76741", "14", "2018-02-09 09:32:27", "104.227.168.41", "1");
INSERT INTO `wp_gf_form_view` VALUES("76742", "3", "2018-02-09 10:05:55", "68.180.228.176", "59");
INSERT INTO `wp_gf_form_view` VALUES("76743", "3", "2018-02-09 11:00:02", "5.9.98.130", "474");
INSERT INTO `wp_gf_form_view` VALUES("76744", "9", "2018-02-09 11:10:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76745", "8", "2018-02-09 11:10:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76746", "10", "2018-02-09 11:10:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76747", "15", "2018-02-09 11:10:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76748", "18", "2018-02-09 11:10:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76749", "14", "2018-02-09 11:32:26", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("76750", "3", "2018-02-09 12:00:05", "5.9.98.130", "282");
INSERT INTO `wp_gf_form_view` VALUES("76751", "10", "2018-02-09 12:18:32", "144.76.4.148", "1");
INSERT INTO `wp_gf_form_view` VALUES("76752", "3", "2018-02-09 13:09:54", "68.180.228.176", "33");
INSERT INTO `wp_gf_form_view` VALUES("76753", "9", "2018-02-09 13:12:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76754", "8", "2018-02-09 13:13:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76755", "10", "2018-02-09 13:13:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76756", "15", "2018-02-09 13:13:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76757", "18", "2018-02-09 13:13:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76758", "14", "2018-02-09 13:40:13", "189.102.8.180", "3");
INSERT INTO `wp_gf_form_view` VALUES("76759", "3", "2018-02-09 15:07:43", "52.37.180.245", "41");
INSERT INTO `wp_gf_form_view` VALUES("76760", "9", "2018-02-09 15:07:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76761", "8", "2018-02-09 15:07:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76762", "10", "2018-02-09 15:07:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76763", "15", "2018-02-09 15:07:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76764", "18", "2018-02-09 15:07:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76765", "12", "2018-02-09 15:52:06", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("76766", "18", "2018-02-09 16:13:19", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76767", "3", "2018-02-09 16:28:08", "66.249.79.133", "32");
INSERT INTO `wp_gf_form_view` VALUES("76768", "14", "2018-02-09 16:40:27", "173.44.167.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("76769", "9", "2018-02-09 16:51:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76770", "8", "2018-02-09 16:51:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76771", "10", "2018-02-09 16:51:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76772", "15", "2018-02-09 16:51:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76773", "3", "2018-02-09 17:00:08", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76774", "18", "2018-02-09 17:21:32", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76775", "3", "2018-02-09 18:36:04", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("76776", "6", "2018-02-09 18:36:42", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76777", "9", "2018-02-09 18:42:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76778", "8", "2018-02-09 18:42:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76779", "10", "2018-02-09 18:42:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76780", "15", "2018-02-09 18:43:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76781", "18", "2018-02-09 18:43:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76782", "18", "2018-02-09 19:24:03", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76783", "3", "2018-02-09 19:34:31", "70.67.110.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("76784", "3", "2018-02-09 20:14:33", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("76785", "14", "2018-02-09 20:14:41", "5.135.142.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("76786", "9", "2018-02-09 20:33:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76787", "8", "2018-02-09 20:33:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76788", "10", "2018-02-09 20:33:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76789", "15", "2018-02-09 20:33:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76790", "18", "2018-02-09 20:33:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76791", "3", "2018-02-09 21:14:50", "157.55.39.201", "2");
INSERT INTO `wp_gf_form_view` VALUES("76792", "10", "2018-02-09 21:20:48", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("76793", "8", "2018-02-09 21:44:22", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76794", "3", "2018-02-09 22:28:44", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76795", "9", "2018-02-09 22:28:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76796", "8", "2018-02-09 22:28:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76797", "10", "2018-02-09 22:28:48", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76798", "15", "2018-02-09 22:28:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76799", "18", "2018-02-09 22:28:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76800", "14", "2018-02-09 22:39:43", "199.180.115.179", "5");
INSERT INTO `wp_gf_form_view` VALUES("76801", "3", "2018-02-09 23:14:56", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("76802", "3", "2018-02-10 00:16:05", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("76803", "9", "2018-02-10 00:16:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76804", "8", "2018-02-10 00:16:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76805", "10", "2018-02-10 00:16:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76806", "15", "2018-02-10 00:16:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76807", "18", "2018-02-10 00:16:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76808", "10", "2018-02-10 01:59:34", "164.132.161.40", "1");
INSERT INTO `wp_gf_form_view` VALUES("76809", "3", "2018-02-10 02:07:41", "144.76.8.134", "33");
INSERT INTO `wp_gf_form_view` VALUES("76810", "9", "2018-02-10 02:12:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76811", "8", "2018-02-10 02:12:26", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("76812", "10", "2018-02-10 02:12:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76813", "15", "2018-02-10 02:12:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76814", "18", "2018-02-10 02:12:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76815", "3", "2018-02-10 03:09:52", "180.76.15.15", "33");
INSERT INTO `wp_gf_form_view` VALUES("76816", "14", "2018-02-10 03:29:15", "184.66.41.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("76817", "9", "2018-02-10 03:59:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76818", "8", "2018-02-10 03:59:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76819", "10", "2018-02-10 03:59:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76820", "15", "2018-02-10 03:59:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76821", "18", "2018-02-10 03:59:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76822", "18", "2018-02-10 04:19:12", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76823", "3", "2018-02-10 04:31:15", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76824", "3", "2018-02-10 05:16:23", "66.249.79.135", "31");
INSERT INTO `wp_gf_form_view` VALUES("76825", "10", "2018-02-10 05:28:14", "162.210.196.100", "6");
INSERT INTO `wp_gf_form_view` VALUES("76826", "18", "2018-02-10 05:49:02", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76827", "9", "2018-02-10 05:52:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76828", "8", "2018-02-10 05:52:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76829", "15", "2018-02-10 05:52:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76830", "18", "2018-02-10 06:40:34", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76831", "3", "2018-02-10 06:58:48", "37.187.56.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("76832", "3", "2018-02-10 07:01:52", "37.187.56.66", "69");
INSERT INTO `wp_gf_form_view` VALUES("76833", "14", "2018-02-10 07:02:53", "37.187.56.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("76834", "18", "2018-02-10 07:03:17", "37.187.56.66", "3");
INSERT INTO `wp_gf_form_view` VALUES("76835", "9", "2018-02-10 07:44:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76836", "8", "2018-02-10 07:44:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76837", "10", "2018-02-10 07:44:55", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("76838", "15", "2018-02-10 07:44:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76839", "10", "2018-02-10 08:05:09", "51.255.71.126", "3");
INSERT INTO `wp_gf_form_view` VALUES("76840", "3", "2018-02-10 08:38:50", "5.9.62.130", "4");
INSERT INTO `wp_gf_form_view` VALUES("76841", "8", "2018-02-10 08:44:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76842", "3", "2018-02-10 09:31:13", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76843", "9", "2018-02-10 09:31:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76844", "8", "2018-02-10 09:31:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76845", "10", "2018-02-10 09:31:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76846", "15", "2018-02-10 09:31:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76847", "18", "2018-02-10 09:31:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76848", "3", "2018-02-10 10:29:44", "5.9.98.130", "267");
INSERT INTO `wp_gf_form_view` VALUES("76849", "3", "2018-02-10 11:00:01", "5.9.98.130", "545");
INSERT INTO `wp_gf_form_view` VALUES("76850", "9", "2018-02-10 11:22:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76851", "8", "2018-02-10 11:22:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76852", "10", "2018-02-10 11:22:17", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("76853", "15", "2018-02-10 11:22:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76854", "18", "2018-02-10 11:22:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76855", "3", "2018-02-10 12:00:09", "5.9.98.130", "506");
INSERT INTO `wp_gf_form_view` VALUES("76856", "10", "2018-02-10 12:35:22", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76857", "3", "2018-02-10 13:00:08", "5.9.98.130", "285");
INSERT INTO `wp_gf_form_view` VALUES("76858", "9", "2018-02-10 13:12:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76859", "8", "2018-02-10 13:12:51", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("76860", "10", "2018-02-10 13:12:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76861", "15", "2018-02-10 13:13:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76862", "18", "2018-02-10 13:13:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76863", "18", "2018-02-10 14:25:19", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76864", "3", "2018-02-10 15:06:29", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("76865", "9", "2018-02-10 15:06:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76866", "8", "2018-02-10 15:06:32", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("76867", "10", "2018-02-10 15:06:33", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76868", "15", "2018-02-10 15:06:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76869", "18", "2018-02-10 15:06:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76870", "14", "2018-02-10 16:08:34", "189.122.80.72", "2");
INSERT INTO `wp_gf_form_view` VALUES("76871", "3", "2018-02-10 16:49:41", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("76872", "9", "2018-02-10 16:49:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76873", "8", "2018-02-10 16:49:44", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76874", "10", "2018-02-10 16:49:45", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("76875", "15", "2018-02-10 16:49:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76876", "18", "2018-02-10 16:49:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76877", "18", "2018-02-10 17:19:41", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76878", "3", "2018-02-10 18:03:56", "180.76.15.6", "32");
INSERT INTO `wp_gf_form_view` VALUES("76879", "9", "2018-02-10 18:39:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76880", "8", "2018-02-10 18:39:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76881", "10", "2018-02-10 18:39:17", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76882", "15", "2018-02-10 18:39:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76883", "18", "2018-02-10 18:39:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76884", "18", "2018-02-10 19:09:03", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76885", "3", "2018-02-10 19:36:06", "195.154.146.17", "3");
INSERT INTO `wp_gf_form_view` VALUES("76886", "3", "2018-02-10 20:00:54", "66.249.79.135", "31");
INSERT INTO `wp_gf_form_view` VALUES("76887", "9", "2018-02-10 20:27:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76888", "8", "2018-02-10 20:27:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76889", "10", "2018-02-10 20:27:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76890", "15", "2018-02-10 20:27:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76891", "18", "2018-02-10 20:27:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76892", "10", "2018-02-10 21:39:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76893", "3", "2018-02-10 21:40:45", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76894", "3", "2018-02-10 22:15:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76895", "9", "2018-02-10 22:15:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76896", "8", "2018-02-10 22:15:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76897", "10", "2018-02-10 22:15:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76898", "15", "2018-02-10 22:15:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76899", "18", "2018-02-10 22:15:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76900", "14", "2018-02-10 22:43:06", "182.253.66.42", "2");
INSERT INTO `wp_gf_form_view` VALUES("76901", "3", "2018-02-10 23:17:15", "66.249.79.133", "2");
INSERT INTO `wp_gf_form_view` VALUES("76902", "3", "2018-02-11 00:08:09", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("76903", "9", "2018-02-11 00:08:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76904", "8", "2018-02-11 00:08:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76905", "10", "2018-02-11 00:08:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76906", "15", "2018-02-11 00:08:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76907", "18", "2018-02-11 00:08:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76908", "14", "2018-02-11 00:12:18", "70.65.234.43", "1");
INSERT INTO `wp_gf_form_view` VALUES("76909", "3", "2018-02-11 01:17:55", "68.180.228.176", "4");
INSERT INTO `wp_gf_form_view` VALUES("76910", "18", "2018-02-11 02:05:13", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("76911", "3", "2018-02-11 02:29:57", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("76912", "9", "2018-02-11 02:29:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76913", "8", "2018-02-11 02:29:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76914", "10", "2018-02-11 02:29:59", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("76915", "15", "2018-02-11 02:30:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76916", "5", "2018-02-11 02:40:31", "146.185.223.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("76917", "18", "2018-02-11 03:22:51", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("76918", "3", "2018-02-11 03:45:47", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76919", "9", "2018-02-11 04:08:57", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76920", "3", "2018-02-11 04:15:24", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("76921", "8", "2018-02-11 04:15:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76922", "10", "2018-02-11 04:15:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76923", "15", "2018-02-11 04:15:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76924", "18", "2018-02-11 04:15:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76925", "3", "2018-02-11 05:49:00", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("76926", "9", "2018-02-11 05:58:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76927", "8", "2018-02-11 05:58:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76928", "10", "2018-02-11 05:58:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76929", "15", "2018-02-11 05:58:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76930", "18", "2018-02-11 05:58:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76931", "18", "2018-02-11 06:04:50", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76932", "9", "2018-02-11 06:11:00", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76933", "3", "2018-02-11 07:47:32", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("76934", "9", "2018-02-11 07:47:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76935", "8", "2018-02-11 07:47:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76936", "10", "2018-02-11 07:47:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76937", "15", "2018-02-11 07:47:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76938", "18", "2018-02-11 07:47:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76939", "18", "2018-02-11 08:12:53", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("76940", "14", "2018-02-11 08:47:03", "196.245.185.47", "1");
INSERT INTO `wp_gf_form_view` VALUES("76941", "3", "2018-02-11 09:28:42", "66.249.79.137", "35");
INSERT INTO `wp_gf_form_view` VALUES("76942", "9", "2018-02-11 09:41:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76943", "8", "2018-02-11 09:41:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76944", "10", "2018-02-11 09:41:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76945", "15", "2018-02-11 09:41:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76946", "18", "2018-02-11 09:41:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76947", "3", "2018-02-11 10:00:50", "69.30.226.234", "6");
INSERT INTO `wp_gf_form_view` VALUES("76948", "6", "2018-02-11 10:07:27", "69.30.226.234", "1");
INSERT INTO `wp_gf_form_view` VALUES("76949", "3", "2018-02-11 11:34:37", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76950", "9", "2018-02-11 11:34:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76951", "8", "2018-02-11 11:34:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76952", "10", "2018-02-11 11:34:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76953", "15", "2018-02-11 11:34:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76954", "18", "2018-02-11 11:34:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76955", "3", "2018-02-11 12:00:16", "66.249.79.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("76956", "3", "2018-02-11 13:20:35", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76957", "9", "2018-02-11 13:20:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76958", "8", "2018-02-11 13:20:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76959", "10", "2018-02-11 13:20:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76960", "15", "2018-02-11 13:20:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76961", "18", "2018-02-11 13:20:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76962", "14", "2018-02-11 14:36:37", "115.74.211.141", "3");
INSERT INTO `wp_gf_form_view` VALUES("76963", "3", "2018-02-11 15:15:30", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76964", "9", "2018-02-11 15:15:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76965", "8", "2018-02-11 15:15:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76966", "10", "2018-02-11 15:15:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76967", "15", "2018-02-11 15:15:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76968", "18", "2018-02-11 15:15:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76969", "14", "2018-02-11 15:57:07", "189.206.107.6", "2");
INSERT INTO `wp_gf_form_view` VALUES("76970", "10", "2018-02-11 16:16:45", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("76971", "3", "2018-02-11 16:17:14", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("76972", "18", "2018-02-11 16:44:58", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76973", "18", "2018-02-11 17:01:54", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("76974", "3", "2018-02-11 17:03:27", "66.249.79.137", "31");
INSERT INTO `wp_gf_form_view` VALUES("76975", "9", "2018-02-11 17:09:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76976", "8", "2018-02-11 17:09:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76977", "10", "2018-02-11 17:09:28", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("76978", "15", "2018-02-11 17:09:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76979", "14", "2018-02-11 17:42:31", "171.255.199.129", "1");
INSERT INTO `wp_gf_form_view` VALUES("76980", "10", "2018-02-11 18:17:15", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("76981", "3", "2018-02-11 18:18:05", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("76982", "9", "2018-02-11 18:51:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76983", "8", "2018-02-11 18:51:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76984", "15", "2018-02-11 18:51:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76985", "18", "2018-02-11 18:51:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76986", "10", "2018-02-11 19:52:10", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76987", "3", "2018-02-11 19:52:27", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("76988", "3", "2018-02-11 20:40:00", "52.37.180.245", "60");
INSERT INTO `wp_gf_form_view` VALUES("76989", "9", "2018-02-11 20:40:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76990", "8", "2018-02-11 20:40:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("76991", "10", "2018-02-11 20:40:02", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("76992", "15", "2018-02-11 20:40:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76993", "18", "2018-02-11 20:40:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76994", "3", "2018-02-11 21:33:38", "96.54.231.182", "4");
INSERT INTO `wp_gf_form_view` VALUES("76995", "3", "2018-02-11 22:32:32", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("76996", "9", "2018-02-11 22:32:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("76997", "8", "2018-02-11 22:32:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("76998", "10", "2018-02-11 22:32:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("76999", "15", "2018-02-11 22:32:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77000", "18", "2018-02-11 22:32:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77001", "10", "2018-02-11 23:05:08", "151.80.27.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("77002", "3", "2018-02-11 23:10:28", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77003", "3", "2018-02-12 00:20:29", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77004", "9", "2018-02-12 00:20:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77005", "8", "2018-02-12 00:20:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77006", "10", "2018-02-12 00:20:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77007", "15", "2018-02-12 00:20:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77008", "18", "2018-02-12 00:20:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77009", "3", "2018-02-12 01:56:45", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77010", "3", "2018-02-12 02:04:22", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77011", "9", "2018-02-12 02:04:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77012", "8", "2018-02-12 02:04:23", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77013", "10", "2018-02-12 02:04:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77014", "15", "2018-02-12 02:04:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77015", "18", "2018-02-12 02:04:28", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77016", "3", "2018-02-12 03:07:28", "5.188.211.21", "33");
INSERT INTO `wp_gf_form_view` VALUES("77017", "8", "2018-02-12 03:53:26", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("77018", "18", "2018-02-12 03:53:26", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("77019", "9", "2018-02-12 03:54:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77020", "10", "2018-02-12 03:54:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77021", "15", "2018-02-12 03:54:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77022", "18", "2018-02-12 04:32:37", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77023", "8", "2018-02-12 05:16:46", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("77024", "3", "2018-02-12 05:16:48", "139.162.246.24", "31");
INSERT INTO `wp_gf_form_view` VALUES("77025", "18", "2018-02-12 05:16:48", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("77026", "9", "2018-02-12 05:39:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77027", "10", "2018-02-12 05:39:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77028", "15", "2018-02-12 05:39:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77029", "10", "2018-02-12 06:53:55", "164.132.161.84", "1");
INSERT INTO `wp_gf_form_view` VALUES("77030", "3", "2018-02-12 06:56:37", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77031", "18", "2018-02-12 07:01:03", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77032", "3", "2018-02-12 07:28:03", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("77033", "9", "2018-02-12 07:28:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77034", "8", "2018-02-12 07:28:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77035", "10", "2018-02-12 07:28:05", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77036", "15", "2018-02-12 07:28:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77037", "3", "2018-02-12 08:59:17", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77038", "3", "2018-02-12 09:23:40", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("77039", "9", "2018-02-12 09:23:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77040", "8", "2018-02-12 09:23:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77041", "10", "2018-02-12 09:23:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77042", "15", "2018-02-12 09:23:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77043", "18", "2018-02-12 09:23:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77044", "3", "2018-02-12 10:38:51", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77045", "3", "2018-02-12 11:13:26", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77046", "9", "2018-02-12 11:13:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77047", "8", "2018-02-12 11:13:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77048", "10", "2018-02-12 11:13:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77049", "15", "2018-02-12 11:13:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77050", "18", "2018-02-12 11:13:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77051", "3", "2018-02-12 12:58:18", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("77052", "9", "2018-02-12 12:58:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77053", "8", "2018-02-12 12:58:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77054", "10", "2018-02-12 12:58:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77055", "15", "2018-02-12 12:58:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77056", "18", "2018-02-12 12:58:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77057", "3", "2018-02-12 13:43:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77058", "3", "2018-02-12 14:03:56", "157.55.39.56", "46");
INSERT INTO `wp_gf_form_view` VALUES("77059", "10", "2018-02-12 14:04:37", "157.55.39.114", "8");
INSERT INTO `wp_gf_form_view` VALUES("77060", "11", "2018-02-12 14:04:51", "157.55.39.114", "1");
INSERT INTO `wp_gf_form_view` VALUES("77061", "8", "2018-02-12 14:05:05", "157.55.39.56", "4");
INSERT INTO `wp_gf_form_view` VALUES("77062", "6", "2018-02-12 14:07:33", "157.55.39.173", "1");
INSERT INTO `wp_gf_form_view` VALUES("77063", "9", "2018-02-12 14:50:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77064", "15", "2018-02-12 14:50:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77065", "18", "2018-02-12 14:50:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77066", "9", "2018-02-12 15:25:26", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77067", "3", "2018-02-12 15:25:40", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77068", "3", "2018-02-12 16:30:17", "65.49.2.181", "74");
INSERT INTO `wp_gf_form_view` VALUES("77069", "9", "2018-02-12 16:49:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77070", "8", "2018-02-12 16:49:45", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77071", "10", "2018-02-12 16:49:46", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("77072", "15", "2018-02-12 16:49:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77073", "18", "2018-02-12 16:49:50", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77074", "9", "2018-02-12 17:28:57", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77075", "3", "2018-02-12 17:29:26", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77076", "3", "2018-02-12 18:20:05", "180.76.15.143", "31");
INSERT INTO `wp_gf_form_view` VALUES("77077", "9", "2018-02-12 18:35:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77078", "8", "2018-02-12 18:35:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77079", "10", "2018-02-12 18:36:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77080", "15", "2018-02-12 18:36:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77081", "18", "2018-02-12 18:36:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77082", "18", "2018-02-12 19:06:25", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77083", "6", "2018-02-12 20:07:21", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77084", "3", "2018-02-12 20:07:36", "216.244.66.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("77085", "9", "2018-02-12 20:26:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77086", "8", "2018-02-12 20:26:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77087", "10", "2018-02-12 20:26:06", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77088", "15", "2018-02-12 20:26:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77089", "18", "2018-02-12 20:26:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77090", "18", "2018-02-12 21:09:39", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77091", "3", "2018-02-12 21:32:47", "65.49.2.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("77092", "10", "2018-02-12 21:58:01", "72.14.199.188", "1");
INSERT INTO `wp_gf_form_view` VALUES("77093", "6", "2018-02-12 22:08:10", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77094", "3", "2018-02-12 22:08:28", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("77095", "9", "2018-02-12 22:27:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77096", "8", "2018-02-12 22:27:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77097", "10", "2018-02-12 22:27:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77098", "15", "2018-02-12 22:27:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77099", "18", "2018-02-12 22:27:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77100", "18", "2018-02-12 23:24:29", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77101", "3", "2018-02-12 23:30:49", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("77102", "8", "2018-02-12 23:46:12", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77103", "14", "2018-02-13 00:26:47", "180.76.15.28", "1");
INSERT INTO `wp_gf_form_view` VALUES("77104", "18", "2018-02-13 00:27:20", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77105", "3", "2018-02-13 00:28:47", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("77106", "9", "2018-02-13 00:28:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77107", "8", "2018-02-13 00:28:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77108", "10", "2018-02-13 00:28:49", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77109", "15", "2018-02-13 00:28:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77110", "14", "2018-02-13 01:00:05", "180.76.15.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("77111", "3", "2018-02-13 01:00:23", "54.36.148.80", "2");
INSERT INTO `wp_gf_form_view` VALUES("77112", "8", "2018-02-13 01:20:20", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77113", "10", "2018-02-13 01:28:36", "199.30.25.104", "2");
INSERT INTO `wp_gf_form_view` VALUES("77114", "18", "2018-02-13 01:32:07", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("77115", "14", "2018-02-13 02:14:22", "189.122.112.187", "3");
INSERT INTO `wp_gf_form_view` VALUES("77116", "3", "2018-02-13 02:17:59", "65.49.2.181", "93");
INSERT INTO `wp_gf_form_view` VALUES("77117", "18", "2018-02-13 02:22:46", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("77118", "9", "2018-02-13 02:27:45", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77119", "8", "2018-02-13 02:27:45", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77120", "10", "2018-02-13 02:27:46", "52.37.180.245", "17");
INSERT INTO `wp_gf_form_view` VALUES("77121", "15", "2018-02-13 02:27:48", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77122", "14", "2018-02-13 03:06:31", "64.187.227.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("77123", "3", "2018-02-13 04:03:51", "139.162.246.24", "32");
INSERT INTO `wp_gf_form_view` VALUES("77124", "9", "2018-02-13 04:15:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77125", "8", "2018-02-13 04:15:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77126", "10", "2018-02-13 04:15:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77127", "15", "2018-02-13 04:15:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77128", "18", "2018-02-13 04:15:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77129", "3", "2018-02-13 05:23:39", "54.36.148.124", "34");
INSERT INTO `wp_gf_form_view` VALUES("77130", "9", "2018-02-13 05:56:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77131", "8", "2018-02-13 05:56:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77132", "10", "2018-02-13 05:56:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77133", "15", "2018-02-13 05:56:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77134", "18", "2018-02-13 05:56:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77135", "3", "2018-02-13 06:03:01", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("77136", "18", "2018-02-13 06:05:10", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77137", "10", "2018-02-13 06:32:14", "54.36.148.108", "1");
INSERT INTO `wp_gf_form_view` VALUES("77138", "3", "2018-02-13 07:19:30", "139.162.246.24", "34");
INSERT INTO `wp_gf_form_view` VALUES("77139", "18", "2018-02-13 07:20:07", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77140", "9", "2018-02-13 07:50:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77141", "8", "2018-02-13 07:50:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77142", "10", "2018-02-13 07:51:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77143", "15", "2018-02-13 07:51:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77144", "3", "2018-02-13 09:14:11", "46.4.0.246", "34");
INSERT INTO `wp_gf_form_view` VALUES("77145", "10", "2018-02-13 09:34:23", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("77146", "9", "2018-02-13 09:41:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77147", "8", "2018-02-13 09:41:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77148", "15", "2018-02-13 09:41:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77149", "18", "2018-02-13 09:41:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77150", "3", "2018-02-13 11:23:06", "157.55.39.186", "32");
INSERT INTO `wp_gf_form_view` VALUES("77151", "9", "2018-02-13 11:32:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77152", "8", "2018-02-13 11:32:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77153", "10", "2018-02-13 11:32:05", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77154", "15", "2018-02-13 11:32:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77155", "18", "2018-02-13 11:32:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77156", "3", "2018-02-13 12:36:59", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77157", "8", "2018-02-13 12:37:15", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77158", "10", "2018-02-13 12:40:24", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77159", "3", "2018-02-13 13:12:12", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("77160", "9", "2018-02-13 13:12:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77161", "8", "2018-02-13 13:12:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77162", "10", "2018-02-13 13:12:14", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77163", "15", "2018-02-13 13:12:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77164", "18", "2018-02-13 13:12:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77165", "3", "2018-02-13 14:24:57", "216.244.66.247", "20");
INSERT INTO `wp_gf_form_view` VALUES("77166", "10", "2018-02-13 14:25:12", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77167", "8", "2018-02-13 14:28:42", "46.4.104.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("77168", "3", "2018-02-13 15:03:08", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("77169", "9", "2018-02-13 15:03:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77170", "8", "2018-02-13 15:03:09", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77171", "10", "2018-02-13 15:03:10", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77172", "15", "2018-02-13 15:03:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77173", "18", "2018-02-13 15:03:14", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77174", "14", "2018-02-13 15:50:03", "41.242.117.242", "4");
INSERT INTO `wp_gf_form_view` VALUES("77175", "10", "2018-02-13 16:00:15", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("77176", "18", "2018-02-13 16:14:23", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77177", "3", "2018-02-13 16:40:36", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("77178", "9", "2018-02-13 16:52:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77179", "8", "2018-02-13 16:52:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77180", "15", "2018-02-13 16:52:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77181", "3", "2018-02-13 17:48:32", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("77182", "18", "2018-02-13 18:05:08", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77183", "8", "2018-02-13 18:11:08", "184.66.243.35", "4");
INSERT INTO `wp_gf_form_view` VALUES("77184", "3", "2018-02-13 18:26:51", "64.114.222.230", "36");
INSERT INTO `wp_gf_form_view` VALUES("77185", "9", "2018-02-13 18:40:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77186", "10", "2018-02-13 18:40:57", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77187", "15", "2018-02-13 18:41:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77188", "14", "2018-02-13 19:57:18", "24.69.162.74", "1");
INSERT INTO `wp_gf_form_view` VALUES("77189", "3", "2018-02-13 20:07:07", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("77190", "9", "2018-02-13 20:27:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77191", "8", "2018-02-13 20:27:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77192", "10", "2018-02-13 20:27:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77193", "15", "2018-02-13 20:27:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77194", "18", "2018-02-13 20:27:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77195", "3", "2018-02-13 21:57:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77196", "3", "2018-02-13 22:27:36", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77197", "9", "2018-02-13 22:27:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77198", "8", "2018-02-13 22:27:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77199", "10", "2018-02-13 22:27:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77200", "15", "2018-02-13 22:27:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77201", "18", "2018-02-13 22:27:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77202", "18", "2018-02-13 23:18:45", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77203", "3", "2018-02-13 23:57:48", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77204", "18", "2018-02-14 00:03:22", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77205", "3", "2018-02-14 00:09:07", "24.108.164.242", "31");
INSERT INTO `wp_gf_form_view` VALUES("77206", "9", "2018-02-14 00:17:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77207", "8", "2018-02-14 00:17:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77208", "10", "2018-02-14 00:17:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77209", "15", "2018-02-14 00:17:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77210", "3", "2018-02-14 01:05:14", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("77211", "10", "2018-02-14 01:24:37", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77212", "18", "2018-02-14 01:56:57", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77213", "3", "2018-02-14 02:12:23", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77214", "9", "2018-02-14 02:12:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77215", "8", "2018-02-14 02:12:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77216", "10", "2018-02-14 02:12:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77217", "15", "2018-02-14 02:12:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77218", "18", "2018-02-14 02:12:30", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77219", "3", "2018-02-14 03:23:48", "65.49.2.181", "4");
INSERT INTO `wp_gf_form_view` VALUES("77220", "18", "2018-02-14 03:33:45", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77221", "3", "2018-02-14 04:02:37", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77222", "9", "2018-02-14 04:02:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77223", "8", "2018-02-14 04:02:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77224", "10", "2018-02-14 04:02:38", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77225", "15", "2018-02-14 04:02:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77226", "14", "2018-02-14 04:02:45", "212.12.31.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("77227", "18", "2018-02-14 04:02:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77228", "3", "2018-02-14 05:04:43", "5.188.211.35", "34");
INSERT INTO `wp_gf_form_view` VALUES("77229", "9", "2018-02-14 05:47:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77230", "8", "2018-02-14 05:47:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77231", "10", "2018-02-14 05:47:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77232", "15", "2018-02-14 05:47:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77233", "18", "2018-02-14 05:47:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77234", "3", "2018-02-14 06:46:50", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77235", "3", "2018-02-14 07:06:39", "54.36.148.133", "31");
INSERT INTO `wp_gf_form_view` VALUES("77236", "14", "2018-02-14 07:41:46", "79.144.119.61", "1");
INSERT INTO `wp_gf_form_view` VALUES("77237", "9", "2018-02-14 07:44:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77238", "8", "2018-02-14 07:44:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77239", "10", "2018-02-14 07:44:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77240", "15", "2018-02-14 07:44:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77241", "18", "2018-02-14 07:44:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77242", "3", "2018-02-14 08:01:44", "65.49.2.181", "45");
INSERT INTO `wp_gf_form_view` VALUES("77243", "9", "2018-02-14 08:01:51", "65.49.2.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("77244", "8", "2018-02-14 08:01:52", "65.49.2.181", "2");
INSERT INTO `wp_gf_form_view` VALUES("77245", "10", "2018-02-14 08:01:53", "65.49.2.181", "11");
INSERT INTO `wp_gf_form_view` VALUES("77246", "15", "2018-02-14 08:01:58", "65.49.2.181", "3");
INSERT INTO `wp_gf_form_view` VALUES("77247", "18", "2018-02-14 08:02:02", "65.49.2.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("77248", "3", "2018-02-14 09:50:19", "216.244.66.195", "31");
INSERT INTO `wp_gf_form_view` VALUES("77249", "9", "2018-02-14 09:57:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77250", "8", "2018-02-14 09:57:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77251", "10", "2018-02-14 09:57:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77252", "15", "2018-02-14 09:57:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77253", "18", "2018-02-14 09:57:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77254", "3", "2018-02-14 10:07:52", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("77255", "15", "2018-02-14 10:08:06", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77256", "3", "2018-02-14 11:10:41", "104.131.2.194", "116");
INSERT INTO `wp_gf_form_view` VALUES("77257", "14", "2018-02-14 11:14:04", "104.131.2.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("77258", "6", "2018-02-14 11:15:57", "104.131.2.194", "1");
INSERT INTO `wp_gf_form_view` VALUES("77259", "10", "2018-02-14 11:18:35", "104.131.2.194", "10");
INSERT INTO `wp_gf_form_view` VALUES("77260", "9", "2018-02-14 11:23:29", "104.131.2.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("77261", "15", "2018-02-14 11:26:08", "104.131.2.194", "2");
INSERT INTO `wp_gf_form_view` VALUES("77262", "8", "2018-02-14 11:45:40", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77263", "18", "2018-02-14 11:45:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77264", "3", "2018-02-14 12:00:03", "104.131.2.194", "20");
INSERT INTO `wp_gf_form_view` VALUES("77265", "8", "2018-02-14 12:48:52", "65.49.2.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("77266", "9", "2018-02-14 13:16:07", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77267", "3", "2018-02-14 13:27:00", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("77268", "8", "2018-02-14 13:27:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77269", "10", "2018-02-14 13:27:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77270", "15", "2018-02-14 13:27:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77271", "18", "2018-02-14 13:27:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77272", "3", "2018-02-14 14:32:43", "154.20.45.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("77273", "3", "2018-02-14 15:22:27", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77274", "9", "2018-02-14 15:22:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77275", "8", "2018-02-14 15:22:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77276", "10", "2018-02-14 15:22:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77277", "15", "2018-02-14 15:22:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77278", "18", "2018-02-14 15:22:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77279", "18", "2018-02-14 16:40:28", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77280", "9", "2018-02-14 16:58:49", "207.46.13.31", "1");
INSERT INTO `wp_gf_form_view` VALUES("77281", "3", "2018-02-14 16:58:54", "157.55.39.238", "6");
INSERT INTO `wp_gf_form_view` VALUES("77282", "10", "2018-02-14 16:59:00", "157.55.39.30", "3");
INSERT INTO `wp_gf_form_view` VALUES("77283", "3", "2018-02-14 17:00:01", "157.55.39.30", "37");
INSERT INTO `wp_gf_form_view` VALUES("77284", "10", "2018-02-14 17:00:06", "157.55.39.238", "12");
INSERT INTO `wp_gf_form_view` VALUES("77285", "15", "2018-02-14 17:00:18", "157.55.39.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("77286", "9", "2018-02-14 17:06:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77287", "8", "2018-02-14 17:06:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77288", "18", "2018-02-14 17:06:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77289", "3", "2018-02-14 18:00:37", "96.50.16.187", "36");
INSERT INTO `wp_gf_form_view` VALUES("77290", "10", "2018-02-14 18:14:06", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("77291", "9", "2018-02-14 18:58:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77292", "8", "2018-02-14 18:58:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77293", "15", "2018-02-14 18:58:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77294", "18", "2018-02-14 18:58:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77295", "18", "2018-02-14 19:28:36", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77296", "3", "2018-02-14 19:46:59", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77297", "10", "2018-02-14 20:03:29", "72.14.199.161", "16");
INSERT INTO `wp_gf_form_view` VALUES("77298", "3", "2018-02-14 20:12:28", "147.135.137.81", "95");
INSERT INTO `wp_gf_form_view` VALUES("77299", "9", "2018-02-14 20:27:39", "65.49.2.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("77300", "8", "2018-02-14 20:27:41", "65.49.2.185", "6");
INSERT INTO `wp_gf_form_view` VALUES("77301", "15", "2018-02-14 20:27:52", "65.49.2.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("77302", "18", "2018-02-14 20:27:56", "65.49.2.185", "3");
INSERT INTO `wp_gf_form_view` VALUES("77303", "18", "2018-02-14 21:10:46", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77304", "3", "2018-02-14 21:29:24", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77305", "18", "2018-02-14 22:11:35", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77306", "3", "2018-02-14 22:12:14", "54.36.148.215", "32");
INSERT INTO `wp_gf_form_view` VALUES("77307", "9", "2018-02-14 22:31:37", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77308", "8", "2018-02-14 22:38:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77309", "10", "2018-02-14 22:38:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77310", "15", "2018-02-14 22:38:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77311", "10", "2018-02-14 23:01:11", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77312", "3", "2018-02-14 23:01:29", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77313", "18", "2018-02-14 23:22:54", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77314", "3", "2018-02-15 00:12:57", "46.229.168.69", "44");
INSERT INTO `wp_gf_form_view` VALUES("77315", "8", "2018-02-15 00:14:33", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("77316", "18", "2018-02-15 00:14:42", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("77317", "9", "2018-02-15 00:32:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77318", "10", "2018-02-15 00:32:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77319", "15", "2018-02-15 00:32:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77320", "3", "2018-02-15 01:11:36", "65.49.2.185", "1");
INSERT INTO `wp_gf_form_view` VALUES("77321", "3", "2018-02-15 02:16:45", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("77322", "9", "2018-02-15 02:16:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77323", "8", "2018-02-15 02:16:45", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77324", "10", "2018-02-15 02:16:46", "52.37.180.245", "9");
INSERT INTO `wp_gf_form_view` VALUES("77325", "15", "2018-02-15 02:16:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77326", "18", "2018-02-15 02:16:50", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77327", "3", "2018-02-15 03:24:51", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77328", "3", "2018-02-15 04:01:57", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77329", "9", "2018-02-15 04:01:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77330", "8", "2018-02-15 04:01:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77331", "10", "2018-02-15 04:01:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77332", "15", "2018-02-15 04:02:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77333", "18", "2018-02-15 04:02:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77334", "3", "2018-02-15 05:22:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77335", "18", "2018-02-15 05:54:29", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77336", "3", "2018-02-15 06:18:21", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77337", "9", "2018-02-15 06:18:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77338", "8", "2018-02-15 06:18:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77339", "10", "2018-02-15 06:18:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77340", "15", "2018-02-15 06:18:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77341", "18", "2018-02-15 06:18:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77342", "3", "2018-02-15 07:04:19", "139.162.246.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("77343", "8", "2018-02-15 07:04:20", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("77344", "10", "2018-02-15 07:04:20", "139.162.246.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("77345", "15", "2018-02-15 07:04:21", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("77346", "18", "2018-02-15 07:04:21", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("77347", "3", "2018-02-15 08:04:43", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("77348", "9", "2018-02-15 08:04:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77349", "8", "2018-02-15 08:04:44", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77350", "10", "2018-02-15 08:04:44", "52.37.180.245", "9");
INSERT INTO `wp_gf_form_view` VALUES("77351", "15", "2018-02-15 08:04:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77352", "18", "2018-02-15 08:04:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77353", "3", "2018-02-15 09:48:50", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("77354", "9", "2018-02-15 09:48:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77355", "8", "2018-02-15 09:48:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77356", "10", "2018-02-15 09:48:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77357", "15", "2018-02-15 09:48:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77358", "18", "2018-02-15 09:48:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77359", "10", "2018-02-15 10:06:38", "72.14.199.191", "1");
INSERT INTO `wp_gf_form_view` VALUES("77360", "18", "2018-02-15 10:41:17", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77361", "14", "2018-02-15 11:07:53", "68.180.228.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("77362", "3", "2018-02-15 11:39:08", "52.37.180.245", "30");
INSERT INTO `wp_gf_form_view` VALUES("77363", "9", "2018-02-15 11:39:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77364", "8", "2018-02-15 11:39:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77365", "10", "2018-02-15 11:39:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77366", "15", "2018-02-15 11:39:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77367", "18", "2018-02-15 11:39:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77368", "3", "2018-02-15 12:00:19", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("77369", "18", "2018-02-15 12:07:09", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77370", "10", "2018-02-15 13:00:39", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("77371", "3", "2018-02-15 13:32:40", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77372", "9", "2018-02-15 13:32:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77373", "8", "2018-02-15 13:32:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77374", "15", "2018-02-15 13:32:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77375", "18", "2018-02-15 13:32:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77376", "3", "2018-02-15 14:23:10", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77377", "3", "2018-02-15 15:11:10", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("77378", "10", "2018-02-15 15:26:15", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("77379", "14", "2018-02-15 15:39:11", "94.242.246.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("77380", "9", "2018-02-15 15:47:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77381", "8", "2018-02-15 15:47:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77382", "15", "2018-02-15 15:47:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77383", "18", "2018-02-15 15:48:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77384", "3", "2018-02-15 16:03:01", "180.76.15.162", "2");
INSERT INTO `wp_gf_form_view` VALUES("77385", "18", "2018-02-15 16:40:03", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77386", "3", "2018-02-15 17:05:32", "5.188.211.26", "31");
INSERT INTO `wp_gf_form_view` VALUES("77387", "18", "2018-02-15 17:06:43", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("77388", "9", "2018-02-15 17:33:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77389", "8", "2018-02-15 17:33:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77390", "10", "2018-02-15 17:33:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77391", "15", "2018-02-15 17:33:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77392", "3", "2018-02-15 18:18:33", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("77393", "8", "2018-02-15 18:32:30", "180.76.15.149", "1");
INSERT INTO `wp_gf_form_view` VALUES("77394", "8", "2018-02-15 19:01:50", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("77395", "3", "2018-02-15 19:02:13", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("77396", "18", "2018-02-15 19:06:36", "184.66.27.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("77397", "9", "2018-02-15 19:33:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77398", "10", "2018-02-15 19:33:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77399", "15", "2018-02-15 19:33:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77400", "3", "2018-02-15 20:26:10", "184.69.102.142", "2");
INSERT INTO `wp_gf_form_view` VALUES("77401", "6", "2018-02-15 21:37:48", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77402", "3", "2018-02-15 21:38:04", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("77403", "9", "2018-02-15 21:39:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77404", "8", "2018-02-15 21:39:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77405", "10", "2018-02-15 21:39:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77406", "15", "2018-02-15 21:39:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77407", "18", "2018-02-15 21:39:19", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77408", "3", "2018-02-15 22:08:50", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("77409", "9", "2018-02-15 22:08:51", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77410", "8", "2018-02-15 22:08:51", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77411", "10", "2018-02-15 22:08:52", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("77412", "15", "2018-02-15 22:08:54", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77413", "18", "2018-02-15 22:08:56", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77414", "18", "2018-02-15 23:16:31", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("77415", "3", "2018-02-15 23:39:00", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77416", "9", "2018-02-15 23:39:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77417", "8", "2018-02-15 23:39:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77418", "10", "2018-02-15 23:39:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77419", "15", "2018-02-15 23:39:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77420", "18", "2018-02-16 00:41:24", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77421", "3", "2018-02-16 00:45:21", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77422", "8", "2018-02-16 00:46:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77423", "18", "2018-02-16 01:03:46", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77424", "3", "2018-02-16 01:38:25", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77425", "9", "2018-02-16 01:38:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77426", "8", "2018-02-16 01:38:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77427", "10", "2018-02-16 01:38:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77428", "15", "2018-02-16 01:38:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77429", "10", "2018-02-16 02:21:07", "54.36.148.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("77430", "18", "2018-02-16 02:35:18", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77431", "3", "2018-02-16 02:46:12", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("77432", "8", "2018-02-16 02:47:35", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77433", "18", "2018-02-16 03:22:47", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77434", "3", "2018-02-16 03:28:53", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("77435", "9", "2018-02-16 03:28:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77436", "8", "2018-02-16 03:28:55", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77437", "10", "2018-02-16 03:28:57", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("77438", "15", "2018-02-16 03:29:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77439", "3", "2018-02-16 04:23:27", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77440", "10", "2018-02-16 04:23:33", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77441", "6", "2018-02-16 04:34:28", "157.55.39.238", "1");
INSERT INTO `wp_gf_form_view` VALUES("77442", "8", "2018-02-16 04:51:03", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77443", "3", "2018-02-16 05:09:33", "207.6.127.222", "34");
INSERT INTO `wp_gf_form_view` VALUES("77444", "9", "2018-02-16 05:32:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77445", "8", "2018-02-16 05:32:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77446", "10", "2018-02-16 05:32:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77447", "15", "2018-02-16 05:32:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77448", "18", "2018-02-16 05:32:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77449", "18", "2018-02-16 06:58:09", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77450", "3", "2018-02-16 07:19:30", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77451", "9", "2018-02-16 07:19:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77452", "8", "2018-02-16 07:19:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77453", "10", "2018-02-16 07:19:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77454", "15", "2018-02-16 07:19:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77455", "18", "2018-02-16 07:19:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77456", "3", "2018-02-16 08:05:00", "220.181.108.106", "33");
INSERT INTO `wp_gf_form_view` VALUES("77457", "18", "2018-02-16 08:14:30", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77458", "10", "2018-02-16 08:58:15", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("77459", "9", "2018-02-16 08:58:54", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77460", "8", "2018-02-16 08:58:55", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77461", "15", "2018-02-16 08:58:57", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77462", "3", "2018-02-16 09:08:42", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77463", "9", "2018-02-16 09:08:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77464", "8", "2018-02-16 09:08:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77465", "10", "2018-02-16 09:08:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77466", "15", "2018-02-16 09:08:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77467", "18", "2018-02-16 09:08:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77468", "3", "2018-02-16 10:23:18", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("77469", "8", "2018-02-16 10:49:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77470", "3", "2018-02-16 11:00:00", "52.37.180.245", "78");
INSERT INTO `wp_gf_form_view` VALUES("77471", "9", "2018-02-16 11:00:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77472", "8", "2018-02-16 11:00:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77473", "10", "2018-02-16 11:00:01", "52.37.180.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("77474", "15", "2018-02-16 11:00:03", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77475", "18", "2018-02-16 11:00:05", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77476", "3", "2018-02-16 12:04:03", "216.244.66.247", "17");
INSERT INTO `wp_gf_form_view` VALUES("77477", "8", "2018-02-16 12:13:11", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("77478", "10", "2018-02-16 12:13:12", "139.162.246.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("77479", "15", "2018-02-16 12:13:14", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("77480", "18", "2018-02-16 12:13:15", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("77481", "3", "2018-02-16 13:05:48", "139.162.246.24", "46");
INSERT INTO `wp_gf_form_view` VALUES("77482", "8", "2018-02-16 13:05:48", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("77483", "10", "2018-02-16 13:05:49", "139.162.246.24", "11");
INSERT INTO `wp_gf_form_view` VALUES("77484", "15", "2018-02-16 13:05:51", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("77485", "18", "2018-02-16 13:05:52", "139.162.246.24", "2");
INSERT INTO `wp_gf_form_view` VALUES("77486", "9", "2018-02-16 13:09:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77487", "3", "2018-02-16 14:05:35", "173.212.213.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("77488", "3", "2018-02-16 15:09:21", "52.37.180.245", "37");
INSERT INTO `wp_gf_form_view` VALUES("77489", "9", "2018-02-16 15:09:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77490", "8", "2018-02-16 15:09:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77491", "10", "2018-02-16 15:09:23", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77492", "15", "2018-02-16 15:09:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77493", "18", "2018-02-16 15:09:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77494", "18", "2018-02-16 16:14:42", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("77495", "3", "2018-02-16 16:51:00", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("77496", "8", "2018-02-16 16:51:39", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("77497", "9", "2018-02-16 16:54:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77498", "10", "2018-02-16 16:54:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77499", "15", "2018-02-16 16:54:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77500", "18", "2018-02-16 17:02:18", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77501", "10", "2018-02-16 17:11:59", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77502", "14", "2018-02-16 18:12:52", "194.187.170.117", "1");
INSERT INTO `wp_gf_form_view` VALUES("77503", "3", "2018-02-16 18:14:41", "216.244.66.247", "65");
INSERT INTO `wp_gf_form_view` VALUES("77504", "10", "2018-02-16 18:14:58", "216.244.66.247", "11");
INSERT INTO `wp_gf_form_view` VALUES("77505", "9", "2018-02-16 18:49:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77506", "8", "2018-02-16 18:49:58", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77507", "15", "2018-02-16 18:50:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77508", "18", "2018-02-16 18:50:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77509", "3", "2018-02-16 19:54:11", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77510", "10", "2018-02-16 20:12:00", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("77511", "3", "2018-02-16 20:12:05", "54.36.149.4", "33");
INSERT INTO `wp_gf_form_view` VALUES("77512", "18", "2018-02-16 20:16:50", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77513", "9", "2018-02-16 20:48:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77514", "8", "2018-02-16 20:48:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77515", "15", "2018-02-16 20:48:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77516", "14", "2018-02-16 21:18:57", "64.180.23.187", "1");
INSERT INTO `wp_gf_form_view` VALUES("77517", "18", "2018-02-16 21:20:06", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77518", "3", "2018-02-16 22:13:16", "54.36.148.152", "36");
INSERT INTO `wp_gf_form_view` VALUES("77519", "9", "2018-02-16 22:58:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77520", "8", "2018-02-16 22:58:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77521", "10", "2018-02-16 22:58:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77522", "15", "2018-02-16 22:58:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77523", "18", "2018-02-16 22:58:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77524", "3", "2018-02-16 23:11:36", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("77525", "18", "2018-02-16 23:11:38", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77526", "10", "2018-02-16 23:12:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77527", "18", "2018-02-17 00:22:52", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77528", "10", "2018-02-17 00:23:08", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("77529", "3", "2018-02-17 00:31:33", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("77530", "9", "2018-02-17 00:48:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77531", "8", "2018-02-17 00:48:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77532", "15", "2018-02-17 00:48:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77533", "3", "2018-02-17 01:11:09", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77534", "10", "2018-02-17 01:11:25", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77535", "18", "2018-02-17 01:49:00", "167.114.65.240", "1");
INSERT INTO `wp_gf_form_view` VALUES("77536", "10", "2018-02-17 02:02:26", "66.249.90.190", "6");
INSERT INTO `wp_gf_form_view` VALUES("77537", "3", "2018-02-17 02:43:13", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77538", "9", "2018-02-17 02:43:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77539", "8", "2018-02-17 02:43:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77540", "15", "2018-02-17 02:43:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77541", "18", "2018-02-17 02:43:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77542", "3", "2018-02-17 03:33:12", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77543", "18", "2018-02-17 03:45:36", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77544", "3", "2018-02-17 04:53:35", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77545", "9", "2018-02-17 04:53:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77546", "8", "2018-02-17 04:53:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77547", "10", "2018-02-17 04:53:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77548", "15", "2018-02-17 04:53:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77549", "18", "2018-02-17 04:53:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77550", "3", "2018-02-17 05:11:37", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77551", "15", "2018-02-17 05:32:41", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77552", "18", "2018-02-17 05:37:29", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77553", "3", "2018-02-17 06:44:51", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("77554", "3", "2018-02-17 07:12:41", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("77555", "18", "2018-02-17 07:17:42", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77556", "9", "2018-02-17 07:23:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77557", "8", "2018-02-17 07:23:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77558", "10", "2018-02-17 07:23:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77559", "15", "2018-02-17 07:23:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77560", "9", "2018-02-17 08:37:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77561", "3", "2018-02-17 09:23:39", "52.37.180.245", "39");
INSERT INTO `wp_gf_form_view` VALUES("77562", "9", "2018-02-17 09:23:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77563", "8", "2018-02-17 09:23:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77564", "10", "2018-02-17 09:23:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77565", "15", "2018-02-17 09:23:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77566", "18", "2018-02-17 09:23:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77567", "3", "2018-02-17 10:13:04", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("77568", "3", "2018-02-17 11:13:23", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77569", "9", "2018-02-17 11:13:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77570", "8", "2018-02-17 11:13:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77571", "10", "2018-02-17 11:13:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77572", "15", "2018-02-17 11:13:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77573", "18", "2018-02-17 11:13:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77574", "18", "2018-02-17 12:19:43", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77575", "3", "2018-02-17 13:08:50", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("77576", "9", "2018-02-17 13:08:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77577", "8", "2018-02-17 13:08:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77578", "10", "2018-02-17 13:08:51", "52.37.180.245", "9");
INSERT INTO `wp_gf_form_view` VALUES("77579", "15", "2018-02-17 13:08:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77580", "18", "2018-02-17 13:08:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77581", "14", "2018-02-17 13:20:12", "165.231.234.45", "3");
INSERT INTO `wp_gf_form_view` VALUES("77582", "10", "2018-02-17 14:04:25", "194.187.170.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("77583", "6", "2018-02-17 14:18:57", "180.76.15.143", "1");
INSERT INTO `wp_gf_form_view` VALUES("77584", "3", "2018-02-17 14:41:27", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("77585", "8", "2018-02-17 14:41:43", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77586", "10", "2018-02-17 15:13:13", "194.187.170.126", "7");
INSERT INTO `wp_gf_form_view` VALUES("77587", "3", "2018-02-17 15:24:35", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77588", "9", "2018-02-17 15:24:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77589", "8", "2018-02-17 15:24:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77590", "15", "2018-02-17 15:24:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77591", "18", "2018-02-17 15:24:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77592", "10", "2018-02-17 16:07:15", "66.249.87.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("77593", "3", "2018-02-17 16:12:08", "66.249.69.51", "6");
INSERT INTO `wp_gf_form_view` VALUES("77594", "9", "2018-02-17 16:18:36", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77595", "8", "2018-02-17 16:46:10", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77596", "18", "2018-02-17 17:02:16", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77597", "3", "2018-02-17 17:11:50", "24.108.8.90", "32");
INSERT INTO `wp_gf_form_view` VALUES("77598", "9", "2018-02-17 17:23:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77599", "8", "2018-02-17 17:23:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77600", "10", "2018-02-17 17:23:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77601", "15", "2018-02-17 17:23:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77602", "10", "2018-02-17 18:03:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77603", "3", "2018-02-17 18:04:11", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("77604", "8", "2018-02-17 18:45:57", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77605", "3", "2018-02-17 19:18:33", "52.37.180.245", "38");
INSERT INTO `wp_gf_form_view` VALUES("77606", "9", "2018-02-17 19:18:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77607", "8", "2018-02-17 19:18:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77608", "10", "2018-02-17 19:18:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77609", "15", "2018-02-17 19:18:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77610", "18", "2018-02-17 19:18:38", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77611", "18", "2018-02-17 20:23:59", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77612", "3", "2018-02-17 20:38:56", "5.188.211.21", "6");
INSERT INTO `wp_gf_form_view` VALUES("77613", "3", "2018-02-17 21:14:31", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("77614", "9", "2018-02-17 21:14:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77615", "8", "2018-02-17 21:14:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77616", "10", "2018-02-17 21:14:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77617", "15", "2018-02-17 21:14:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77618", "18", "2018-02-17 21:14:37", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77619", "3", "2018-02-17 22:16:19", "5.188.211.10", "3");
INSERT INTO `wp_gf_form_view` VALUES("77620", "10", "2018-02-17 23:02:36", "194.187.170.108", "8");
INSERT INTO `wp_gf_form_view` VALUES("77621", "3", "2018-02-17 23:19:34", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("77622", "9", "2018-02-17 23:19:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77623", "8", "2018-02-17 23:19:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77624", "15", "2018-02-17 23:19:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77625", "18", "2018-02-17 23:19:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77626", "3", "2018-02-18 00:17:56", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77627", "18", "2018-02-18 00:33:14", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77628", "3", "2018-02-18 01:04:14", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("77629", "9", "2018-02-18 01:08:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77630", "8", "2018-02-18 01:08:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77631", "10", "2018-02-18 01:08:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77632", "15", "2018-02-18 01:08:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77633", "18", "2018-02-18 01:08:15", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77634", "3", "2018-02-18 02:08:22", "5.188.211.15", "2");
INSERT INTO `wp_gf_form_view` VALUES("77635", "14", "2018-02-18 02:46:43", "34.204.60.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("77636", "3", "2018-02-18 03:03:07", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("77637", "9", "2018-02-18 03:03:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77638", "8", "2018-02-18 03:03:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77639", "10", "2018-02-18 03:03:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77640", "15", "2018-02-18 03:03:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77641", "18", "2018-02-18 03:03:13", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77642", "14", "2018-02-18 03:53:40", "66.249.69.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("77643", "3", "2018-02-18 04:07:54", "34.204.60.128", "61");
INSERT INTO `wp_gf_form_view` VALUES("77644", "18", "2018-02-18 04:08:17", "34.204.60.128", "3");
INSERT INTO `wp_gf_form_view` VALUES("77645", "14", "2018-02-18 04:14:11", "179.61.160.169", "1");
INSERT INTO `wp_gf_form_view` VALUES("77646", "9", "2018-02-18 04:53:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77647", "8", "2018-02-18 04:53:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77648", "10", "2018-02-18 04:53:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77649", "15", "2018-02-18 04:53:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77650", "10", "2018-02-18 05:13:53", "66.249.87.23", "1");
INSERT INTO `wp_gf_form_view` VALUES("77651", "3", "2018-02-18 05:34:40", "54.187.117.110", "8");
INSERT INTO `wp_gf_form_view` VALUES("77652", "18", "2018-02-18 05:43:55", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77653", "5", "2018-02-18 06:25:58", "66.249.69.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("77654", "3", "2018-02-18 06:26:34", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("77655", "18", "2018-02-18 06:37:49", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77656", "9", "2018-02-18 06:42:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77657", "8", "2018-02-18 06:42:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77658", "10", "2018-02-18 06:42:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77659", "15", "2018-02-18 06:42:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77660", "3", "2018-02-18 07:28:46", "54.36.148.251", "2");
INSERT INTO `wp_gf_form_view` VALUES("77661", "10", "2018-02-18 08:05:35", "70.66.174.129", "7");
INSERT INTO `wp_gf_form_view` VALUES("77662", "9", "2018-02-18 08:05:54", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77663", "3", "2018-02-18 08:06:06", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("77664", "8", "2018-02-18 08:33:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77665", "15", "2018-02-18 08:33:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77666", "18", "2018-02-18 08:33:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77667", "3", "2018-02-18 09:27:12", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77668", "3", "2018-02-18 10:06:04", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("77669", "14", "2018-02-18 10:25:47", "157.55.39.186", "1");
INSERT INTO `wp_gf_form_view` VALUES("77670", "9", "2018-02-18 10:37:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77671", "8", "2018-02-18 10:37:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77672", "10", "2018-02-18 10:37:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77673", "15", "2018-02-18 10:38:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77674", "18", "2018-02-18 10:38:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77675", "3", "2018-02-18 11:19:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77676", "3", "2018-02-18 12:33:19", "52.37.180.245", "41");
INSERT INTO `wp_gf_form_view` VALUES("77677", "9", "2018-02-18 12:33:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77678", "8", "2018-02-18 12:33:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77679", "10", "2018-02-18 12:33:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77680", "15", "2018-02-18 12:33:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77681", "18", "2018-02-18 12:33:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77682", "3", "2018-02-18 13:04:00", "194.187.170.115", "5");
INSERT INTO `wp_gf_form_view` VALUES("77683", "8", "2018-02-18 13:07:07", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77684", "18", "2018-02-18 13:17:41", "194.187.170.115", "1");
INSERT INTO `wp_gf_form_view` VALUES("77685", "18", "2018-02-18 14:25:24", "194.187.170.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("77686", "3", "2018-02-18 14:28:09", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("77687", "9", "2018-02-18 14:28:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77688", "8", "2018-02-18 14:28:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77689", "10", "2018-02-18 14:28:11", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77690", "15", "2018-02-18 14:28:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77691", "14", "2018-02-18 15:03:38", "185.138.241.45", "1");
INSERT INTO `wp_gf_form_view` VALUES("77692", "8", "2018-02-18 15:08:11", "194.187.170.115", "2");
INSERT INTO `wp_gf_form_view` VALUES("77693", "3", "2018-02-18 15:12:14", "185.138.241.45", "11");
INSERT INTO `wp_gf_form_view` VALUES("77694", "18", "2018-02-18 15:45:13", "185.138.241.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("77695", "6", "2018-02-18 15:59:17", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77696", "18", "2018-02-18 16:00:59", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("77697", "3", "2018-02-18 16:12:53", "216.244.66.247", "65");
INSERT INTO `wp_gf_form_view` VALUES("77698", "9", "2018-02-18 16:12:54", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77699", "8", "2018-02-18 16:12:54", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("77700", "10", "2018-02-18 16:12:55", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("77701", "15", "2018-02-18 16:12:57", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77702", "10", "2018-02-18 17:11:45", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("77703", "3", "2018-02-18 18:12:50", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77704", "9", "2018-02-18 18:12:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77705", "8", "2018-02-18 18:12:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77706", "10", "2018-02-18 18:12:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77707", "15", "2018-02-18 18:12:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77708", "18", "2018-02-18 18:12:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77709", "10", "2018-02-18 19:01:32", "72.14.199.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("77710", "3", "2018-02-18 19:08:15", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77711", "8", "2018-02-18 19:09:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77712", "14", "2018-02-18 19:27:06", "184.66.232.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("77713", "3", "2018-02-18 20:12:40", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77714", "9", "2018-02-18 20:12:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77715", "8", "2018-02-18 20:12:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77716", "10", "2018-02-18 20:12:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77717", "15", "2018-02-18 20:12:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77718", "18", "2018-02-18 20:12:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77719", "3", "2018-02-18 21:04:52", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77720", "18", "2018-02-18 21:20:23", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77721", "3", "2018-02-18 22:09:23", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("77722", "9", "2018-02-18 22:09:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77723", "8", "2018-02-18 22:09:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77724", "10", "2018-02-18 22:09:26", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77725", "15", "2018-02-18 22:09:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77726", "18", "2018-02-18 22:09:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77727", "3", "2018-02-18 23:01:10", "54.36.148.115", "65");
INSERT INTO `wp_gf_form_view` VALUES("77728", "18", "2018-02-18 23:24:38", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77729", "8", "2018-02-18 23:57:09", "185.138.241.45", "5");
INSERT INTO `wp_gf_form_view` VALUES("77730", "9", "2018-02-18 23:57:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77731", "10", "2018-02-18 23:57:49", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("77732", "15", "2018-02-18 23:57:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77733", "8", "2018-02-19 00:00:05", "185.138.241.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("77734", "3", "2018-02-19 00:02:07", "157.55.39.188", "85");
INSERT INTO `wp_gf_form_view` VALUES("77735", "9", "2018-02-19 00:02:22", "157.55.39.186", "4");
INSERT INTO `wp_gf_form_view` VALUES("77736", "10", "2018-02-19 00:03:30", "157.55.39.254", "12");
INSERT INTO `wp_gf_form_view` VALUES("77737", "15", "2018-02-19 00:19:59", "185.138.241.45", "2");
INSERT INTO `wp_gf_form_view` VALUES("77738", "18", "2018-02-19 00:20:02", "185.138.241.45", "6");
INSERT INTO `wp_gf_form_view` VALUES("77739", "18", "2018-02-19 01:07:38", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77740", "3", "2018-02-19 01:54:13", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("77741", "9", "2018-02-19 01:54:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77742", "8", "2018-02-19 01:54:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77743", "10", "2018-02-19 01:54:15", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77744", "15", "2018-02-19 01:54:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77745", "3", "2018-02-19 03:06:48", "5.188.211.16", "66");
INSERT INTO `wp_gf_form_view` VALUES("77746", "10", "2018-02-19 03:22:43", "216.244.66.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("77747", "9", "2018-02-19 03:23:29", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77748", "8", "2018-02-19 03:23:30", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("77749", "15", "2018-02-19 03:23:32", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77750", "18", "2018-02-19 03:23:34", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77751", "3", "2018-02-19 04:04:24", "24.114.25.213", "4");
INSERT INTO `wp_gf_form_view` VALUES("77752", "18", "2018-02-19 04:26:23", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77753", "18", "2018-02-19 05:47:19", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77754", "3", "2018-02-19 05:47:32", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("77755", "9", "2018-02-19 05:47:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77756", "8", "2018-02-19 05:47:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77757", "10", "2018-02-19 05:47:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77758", "15", "2018-02-19 05:47:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77759", "10", "2018-02-19 06:06:40", "54.36.148.48", "1");
INSERT INTO `wp_gf_form_view` VALUES("77760", "3", "2018-02-19 06:13:01", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("77761", "8", "2018-02-19 06:43:42", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77762", "18", "2018-02-19 06:44:17", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77763", "10", "2018-02-19 07:37:49", "72.14.199.21", "7");
INSERT INTO `wp_gf_form_view` VALUES("77764", "3", "2018-02-19 07:54:37", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77765", "9", "2018-02-19 07:54:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77766", "8", "2018-02-19 07:54:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77767", "15", "2018-02-19 07:54:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77768", "18", "2018-02-19 07:54:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77769", "3", "2018-02-19 08:10:04", "220.181.108.118", "2");
INSERT INTO `wp_gf_form_view` VALUES("77770", "18", "2018-02-19 08:20:35", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77771", "14", "2018-02-19 08:22:15", "194.187.170.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("77772", "10", "2018-02-19 08:40:29", "54.36.149.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("77773", "8", "2018-02-19 08:40:49", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77774", "10", "2018-02-19 09:15:39", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("77775", "18", "2018-02-19 09:16:47", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77776", "3", "2018-02-19 09:36:51", "220.181.108.102", "32");
INSERT INTO `wp_gf_form_view` VALUES("77777", "9", "2018-02-19 09:42:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77778", "8", "2018-02-19 09:42:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77779", "15", "2018-02-19 09:42:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77780", "10", "2018-02-19 10:42:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77781", "3", "2018-02-19 10:42:19", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77782", "3", "2018-02-19 11:33:22", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("77783", "9", "2018-02-19 11:33:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77784", "8", "2018-02-19 11:33:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77785", "10", "2018-02-19 11:33:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77786", "15", "2018-02-19 11:33:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77787", "18", "2018-02-19 11:33:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77788", "14", "2018-02-19 11:49:37", "192.186.147.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("77789", "10", "2018-02-19 12:16:30", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77790", "3", "2018-02-19 12:16:57", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77791", "3", "2018-02-19 13:04:29", "66.249.79.119", "33");
INSERT INTO `wp_gf_form_view` VALUES("77792", "9", "2018-02-19 13:22:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77793", "8", "2018-02-19 13:22:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77794", "10", "2018-02-19 13:22:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77795", "15", "2018-02-19 13:23:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77796", "18", "2018-02-19 13:23:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77797", "18", "2018-02-19 14:23:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77798", "3", "2018-02-19 14:26:30", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77799", "10", "2018-02-19 14:29:32", "199.59.150.180", "1");
INSERT INTO `wp_gf_form_view` VALUES("77800", "8", "2018-02-19 15:02:35", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("77801", "3", "2018-02-19 15:02:48", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("77802", "9", "2018-02-19 15:09:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77803", "10", "2018-02-19 15:09:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77804", "15", "2018-02-19 15:09:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77805", "18", "2018-02-19 15:09:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77806", "18", "2018-02-19 16:34:12", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77807", "3", "2018-02-19 16:38:39", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77808", "10", "2018-02-19 16:47:30", "199.16.157.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("77809", "3", "2018-02-19 17:07:42", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77810", "9", "2018-02-19 17:07:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77811", "8", "2018-02-19 17:07:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77812", "10", "2018-02-19 17:07:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77813", "15", "2018-02-19 17:07:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77814", "18", "2018-02-19 17:07:49", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("77815", "14", "2018-02-19 17:39:01", "184.66.49.224", "1");
INSERT INTO `wp_gf_form_view` VALUES("77816", "3", "2018-02-19 18:27:12", "146.185.223.202", "1");
INSERT INTO `wp_gf_form_view` VALUES("77817", "18", "2018-02-19 18:27:31", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77818", "18", "2018-02-19 19:04:49", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77819", "14", "2018-02-19 19:05:58", "24.108.48.16", "5");
INSERT INTO `wp_gf_form_view` VALUES("77820", "3", "2018-02-19 19:13:55", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("77821", "9", "2018-02-19 19:13:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77822", "8", "2018-02-19 19:13:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77823", "10", "2018-02-19 19:13:57", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77824", "15", "2018-02-19 19:13:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77825", "3", "2018-02-19 20:00:18", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("77826", "15", "2018-02-19 20:00:46", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77827", "18", "2018-02-19 20:01:29", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77828", "14", "2018-02-19 20:54:10", "96.50.27.199", "1");
INSERT INTO `wp_gf_form_view` VALUES("77829", "3", "2018-02-19 21:12:57", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("77830", "9", "2018-02-19 21:12:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77831", "8", "2018-02-19 21:12:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77832", "10", "2018-02-19 21:13:00", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77833", "15", "2018-02-19 21:13:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77834", "18", "2018-02-19 21:13:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77835", "18", "2018-02-19 22:10:08", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77836", "3", "2018-02-19 22:48:28", "198.103.109.141", "32");
INSERT INTO `wp_gf_form_view` VALUES("77837", "9", "2018-02-19 22:58:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77838", "8", "2018-02-19 22:58:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77839", "10", "2018-02-19 22:58:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77840", "15", "2018-02-19 22:58:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77841", "3", "2018-02-20 00:02:15", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("77842", "9", "2018-02-20 00:59:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77843", "8", "2018-02-20 00:59:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77844", "10", "2018-02-20 00:59:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77845", "15", "2018-02-20 00:59:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77846", "18", "2018-02-20 00:59:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77847", "9", "2018-02-20 01:04:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77848", "3", "2018-02-20 01:25:50", "35.185.101.6", "6");
INSERT INTO `wp_gf_form_view` VALUES("77849", "18", "2018-02-20 01:29:07", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77850", "14", "2018-02-20 02:09:42", "23.250.70.239", "6");
INSERT INTO `wp_gf_form_view` VALUES("77851", "18", "2018-02-20 02:30:54", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("77852", "3", "2018-02-20 02:31:39", "104.196.59.73", "36");
INSERT INTO `wp_gf_form_view` VALUES("77853", "9", "2018-02-20 02:59:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77854", "8", "2018-02-20 02:59:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77855", "10", "2018-02-20 02:59:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77856", "15", "2018-02-20 02:59:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77857", "18", "2018-02-20 03:04:17", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77858", "3", "2018-02-20 03:06:42", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("77859", "3", "2018-02-20 04:06:28", "180.76.15.19", "48");
INSERT INTO `wp_gf_form_view` VALUES("77860", "18", "2018-02-20 04:16:29", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77861", "14", "2018-02-20 04:36:45", "104.196.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("77862", "9", "2018-02-20 04:54:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77863", "8", "2018-02-20 04:54:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77864", "10", "2018-02-20 04:54:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77865", "15", "2018-02-20 04:54:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77866", "3", "2018-02-20 05:45:34", "46.9.164.75", "1");
INSERT INTO `wp_gf_form_view` VALUES("77867", "3", "2018-02-20 06:25:19", "216.244.66.195", "50");
INSERT INTO `wp_gf_form_view` VALUES("77868", "8", "2018-02-20 06:49:12", "104.196.142.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("77869", "9", "2018-02-20 06:49:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77870", "10", "2018-02-20 06:49:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77871", "15", "2018-02-20 06:49:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77872", "18", "2018-02-20 06:49:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77873", "6", "2018-02-20 06:54:37", "104.196.142.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("77874", "3", "2018-02-20 07:00:09", "104.196.142.132", "4");
INSERT INTO `wp_gf_form_view` VALUES("77875", "18", "2018-02-20 08:15:12", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("77876", "3", "2018-02-20 08:38:51", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77877", "9", "2018-02-20 08:38:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77878", "8", "2018-02-20 08:38:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77879", "10", "2018-02-20 08:38:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77880", "15", "2018-02-20 08:38:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77881", "10", "2018-02-20 09:23:15", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("77882", "3", "2018-02-20 09:23:28", "216.244.66.195", "13");
INSERT INTO `wp_gf_form_view` VALUES("77883", "9", "2018-02-20 09:25:06", "104.196.142.132", "1");
INSERT INTO `wp_gf_form_view` VALUES("77884", "3", "2018-02-20 10:20:12", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("77885", "10", "2018-02-20 10:20:28", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("77886", "9", "2018-02-20 10:33:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77887", "8", "2018-02-20 10:33:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77888", "15", "2018-02-20 10:33:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77889", "18", "2018-02-20 10:33:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77890", "10", "2018-02-20 11:10:19", "72.14.199.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("77891", "3", "2018-02-20 11:26:37", "207.46.13.118", "9");
INSERT INTO `wp_gf_form_view` VALUES("77892", "8", "2018-02-20 11:36:29", "104.196.24.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("77893", "9", "2018-02-20 12:14:33", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("77894", "3", "2018-02-20 12:14:49", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("77895", "8", "2018-02-20 12:23:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77896", "10", "2018-02-20 12:23:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77897", "15", "2018-02-20 12:23:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77898", "18", "2018-02-20 12:23:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77899", "3", "2018-02-20 13:17:36", "5.9.106.230", "3");
INSERT INTO `wp_gf_form_view` VALUES("77900", "3", "2018-02-20 14:19:45", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("77901", "9", "2018-02-20 14:19:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77902", "8", "2018-02-20 14:19:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77903", "10", "2018-02-20 14:19:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77904", "15", "2018-02-20 14:19:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77905", "18", "2018-02-20 14:19:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77906", "3", "2018-02-20 15:37:21", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77907", "8", "2018-02-20 15:37:38", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77908", "10", "2018-02-20 15:45:47", "54.36.149.94", "1");
INSERT INTO `wp_gf_form_view` VALUES("77909", "18", "2018-02-20 15:57:32", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77910", "3", "2018-02-20 16:14:42", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("77911", "9", "2018-02-20 16:14:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77912", "8", "2018-02-20 16:14:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77913", "10", "2018-02-20 16:14:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77914", "15", "2018-02-20 16:14:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77915", "18", "2018-02-20 16:14:49", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77916", "3", "2018-02-20 17:58:24", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("77917", "3", "2018-02-20 18:18:11", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77918", "9", "2018-02-20 18:18:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77919", "8", "2018-02-20 18:18:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77920", "10", "2018-02-20 18:18:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77921", "15", "2018-02-20 18:18:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77922", "18", "2018-02-20 18:18:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77923", "8", "2018-02-20 19:13:16", "180.76.15.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("77924", "18", "2018-02-20 20:10:28", "70.67.115.58", "5");
INSERT INTO `wp_gf_form_view` VALUES("77925", "3", "2018-02-20 20:10:48", "70.67.115.58", "71");
INSERT INTO `wp_gf_form_view` VALUES("77926", "9", "2018-02-20 20:14:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77927", "8", "2018-02-20 20:14:55", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77928", "10", "2018-02-20 20:14:57", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("77929", "15", "2018-02-20 20:15:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77930", "10", "2018-02-20 21:17:42", "54.36.148.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("77931", "3", "2018-02-20 21:28:08", "165.227.220.31", "4");
INSERT INTO `wp_gf_form_view` VALUES("77932", "18", "2018-02-20 21:45:46", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77933", "3", "2018-02-20 22:13:37", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("77934", "9", "2018-02-20 22:13:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77935", "8", "2018-02-20 22:13:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77936", "10", "2018-02-20 22:13:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77937", "15", "2018-02-20 22:13:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77938", "18", "2018-02-20 22:13:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77939", "3", "2018-02-20 23:03:14", "104.236.245.170", "94");
INSERT INTO `wp_gf_form_view` VALUES("77940", "14", "2018-02-20 23:06:43", "104.236.245.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("77941", "6", "2018-02-20 23:08:28", "104.236.245.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("77942", "10", "2018-02-20 23:11:24", "104.236.245.170", "5");
INSERT INTO `wp_gf_form_view` VALUES("77943", "9", "2018-02-20 23:16:32", "104.236.245.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("77944", "15", "2018-02-20 23:22:46", "104.236.245.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("77945", "8", "2018-02-20 23:49:28", "104.236.245.170", "2");
INSERT INTO `wp_gf_form_view` VALUES("77946", "18", "2018-02-20 23:49:52", "104.236.245.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("77947", "3", "2018-02-21 00:00:31", "104.236.245.170", "77");
INSERT INTO `wp_gf_form_view` VALUES("77948", "18", "2018-02-21 00:03:36", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77949", "9", "2018-02-21 00:19:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77950", "8", "2018-02-21 00:19:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77951", "10", "2018-02-21 00:19:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77952", "15", "2018-02-21 00:19:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77953", "3", "2018-02-21 01:01:49", "216.244.66.195", "15");
INSERT INTO `wp_gf_form_view` VALUES("77954", "18", "2018-02-21 01:35:15", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77955", "9", "2018-02-21 01:42:25", "207.46.13.155", "2");
INSERT INTO `wp_gf_form_view` VALUES("77956", "3", "2018-02-21 02:03:19", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("77957", "18", "2018-02-21 02:15:21", "184.66.27.189", "10");
INSERT INTO `wp_gf_form_view` VALUES("77958", "9", "2018-02-21 02:18:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77959", "8", "2018-02-21 02:18:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77960", "10", "2018-02-21 02:18:44", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("77961", "15", "2018-02-21 02:18:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77962", "3", "2018-02-21 03:04:19", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("77963", "18", "2018-02-21 03:19:49", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77964", "18", "2018-02-21 04:05:07", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("77965", "3", "2018-02-21 04:14:35", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("77966", "9", "2018-02-21 04:18:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77967", "8", "2018-02-21 04:18:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77968", "10", "2018-02-21 04:18:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77969", "15", "2018-02-21 04:18:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77970", "9", "2018-02-21 06:04:29", "66.249.79.137", "2");
INSERT INTO `wp_gf_form_view` VALUES("77971", "3", "2018-02-21 06:13:56", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77972", "8", "2018-02-21 06:13:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77973", "10", "2018-02-21 06:13:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77974", "15", "2018-02-21 06:14:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77975", "18", "2018-02-21 06:14:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("77976", "3", "2018-02-21 07:48:26", "216.244.66.195", "9");
INSERT INTO `wp_gf_form_view` VALUES("77977", "3", "2018-02-21 08:00:58", "54.197.21.167", "40");
INSERT INTO `wp_gf_form_view` VALUES("77978", "9", "2018-02-21 08:14:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77979", "8", "2018-02-21 08:14:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77980", "10", "2018-02-21 08:14:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77981", "15", "2018-02-21 08:14:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77982", "18", "2018-02-21 08:14:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77983", "3", "2018-02-21 09:58:49", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77984", "9", "2018-02-21 09:58:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77985", "8", "2018-02-21 09:58:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77986", "10", "2018-02-21 09:58:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77987", "15", "2018-02-21 09:58:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77988", "18", "2018-02-21 09:58:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77989", "18", "2018-02-21 10:01:34", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("77990", "3", "2018-02-21 11:48:14", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77991", "9", "2018-02-21 11:48:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77992", "8", "2018-02-21 11:48:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77993", "10", "2018-02-21 11:48:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("77994", "15", "2018-02-21 11:48:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77995", "18", "2018-02-21 11:48:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77996", "3", "2018-02-21 13:33:34", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("77997", "9", "2018-02-21 13:33:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("77998", "8", "2018-02-21 13:33:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("77999", "10", "2018-02-21 13:33:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78000", "15", "2018-02-21 13:33:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78001", "18", "2018-02-21 13:33:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78002", "11", "2018-02-21 14:02:50", "54.36.148.79", "1");
INSERT INTO `wp_gf_form_view` VALUES("78003", "3", "2018-02-21 14:41:39", "207.102.214.114", "4");
INSERT INTO `wp_gf_form_view` VALUES("78004", "10", "2018-02-21 15:15:54", "54.197.21.167", "6");
INSERT INTO `wp_gf_form_view` VALUES("78005", "18", "2018-02-21 15:16:11", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78006", "3", "2018-02-21 15:31:31", "216.244.66.195", "37");
INSERT INTO `wp_gf_form_view` VALUES("78007", "8", "2018-02-21 15:32:42", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("78008", "9", "2018-02-21 15:41:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78009", "15", "2018-02-21 15:41:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78010", "3", "2018-02-21 16:55:00", "54.86.14.255", "3");
INSERT INTO `wp_gf_form_view` VALUES("78011", "3", "2018-02-21 17:00:05", "54.86.14.255", "36");
INSERT INTO `wp_gf_form_view` VALUES("78012", "18", "2018-02-21 17:05:04", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("78013", "8", "2018-02-21 17:22:45", "66.249.79.117", "3");
INSERT INTO `wp_gf_form_view` VALUES("78014", "9", "2018-02-21 17:34:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78015", "10", "2018-02-21 17:34:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78016", "15", "2018-02-21 17:34:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78017", "18", "2018-02-21 18:00:45", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78018", "3", "2018-02-21 18:02:41", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("78019", "14", "2018-02-21 18:14:31", "54.197.21.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("78020", "9", "2018-02-21 18:18:25", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78021", "8", "2018-02-21 18:18:25", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78022", "10", "2018-02-21 18:18:26", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("78023", "15", "2018-02-21 18:18:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78024", "3", "2018-02-21 19:30:50", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78025", "9", "2018-02-21 19:30:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78026", "8", "2018-02-21 19:30:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78027", "10", "2018-02-21 19:30:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78028", "15", "2018-02-21 19:30:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78029", "18", "2018-02-21 19:30:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78030", "3", "2018-02-21 20:21:57", "54.36.149.11", "4");
INSERT INTO `wp_gf_form_view` VALUES("78031", "18", "2018-02-21 20:49:19", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78032", "3", "2018-02-21 21:11:50", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("78033", "18", "2018-02-21 21:16:52", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78034", "9", "2018-02-21 21:33:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78035", "8", "2018-02-21 21:33:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78036", "10", "2018-02-21 21:33:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78037", "15", "2018-02-21 21:33:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78038", "14", "2018-02-21 22:13:14", "142.104.199.153", "1");
INSERT INTO `wp_gf_form_view` VALUES("78039", "18", "2018-02-21 23:01:08", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78040", "3", "2018-02-21 23:31:02", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78041", "9", "2018-02-21 23:31:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78042", "8", "2018-02-21 23:31:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78043", "10", "2018-02-21 23:31:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78044", "15", "2018-02-21 23:31:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78045", "14", "2018-02-21 23:58:47", "184.69.108.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("78046", "3", "2018-02-22 00:07:18", "54.36.148.237", "35");
INSERT INTO `wp_gf_form_view` VALUES("78047", "10", "2018-02-22 00:08:34", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("78048", "9", "2018-02-22 00:09:14", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78049", "8", "2018-02-22 00:09:15", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78050", "15", "2018-02-22 00:09:17", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78051", "18", "2018-02-22 00:09:19", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("78052", "14", "2018-02-22 00:18:36", "66.249.79.137", "1");
INSERT INTO `wp_gf_form_view` VALUES("78053", "3", "2018-02-22 01:12:53", "207.46.13.47", "34");
INSERT INTO `wp_gf_form_view` VALUES("78054", "9", "2018-02-22 01:26:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78055", "8", "2018-02-22 01:26:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78056", "10", "2018-02-22 01:26:05", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78057", "15", "2018-02-22 01:26:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78058", "18", "2018-02-22 01:26:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78059", "3", "2018-02-22 02:02:57", "54.37.85.55", "33");
INSERT INTO `wp_gf_form_view` VALUES("78060", "10", "2018-02-22 02:16:07", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("78061", "9", "2018-02-22 02:16:50", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78062", "8", "2018-02-22 02:16:51", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78063", "15", "2018-02-22 02:16:54", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78064", "18", "2018-02-22 02:16:55", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78065", "18", "2018-02-22 03:12:09", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78066", "3", "2018-02-22 03:14:46", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78067", "9", "2018-02-22 03:14:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78068", "8", "2018-02-22 03:14:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78069", "10", "2018-02-22 03:14:48", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78070", "15", "2018-02-22 03:14:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78071", "14", "2018-02-22 03:21:41", "24.68.109.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("78072", "3", "2018-02-22 04:29:33", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("78073", "3", "2018-02-22 05:04:12", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78074", "9", "2018-02-22 05:04:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78075", "8", "2018-02-22 05:04:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78076", "10", "2018-02-22 05:04:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78077", "15", "2018-02-22 05:04:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78078", "18", "2018-02-22 05:04:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78079", "10", "2018-02-22 06:44:17", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("78080", "3", "2018-02-22 06:44:34", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("78081", "9", "2018-02-22 06:50:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78082", "8", "2018-02-22 06:50:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78083", "15", "2018-02-22 06:50:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78084", "18", "2018-02-22 06:50:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78085", "8", "2018-02-22 07:31:04", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78086", "3", "2018-02-22 07:31:08", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("78087", "10", "2018-02-22 07:56:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78088", "3", "2018-02-22 08:16:58", "5.189.191.207", "32");
INSERT INTO `wp_gf_form_view` VALUES("78089", "18", "2018-02-22 08:45:13", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78090", "9", "2018-02-22 08:50:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78091", "8", "2018-02-22 08:50:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78092", "10", "2018-02-22 08:50:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78093", "15", "2018-02-22 08:50:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78094", "18", "2018-02-22 09:02:05", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78095", "10", "2018-02-22 09:12:41", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("78096", "3", "2018-02-22 10:05:01", "216.244.66.195", "39");
INSERT INTO `wp_gf_form_view` VALUES("78097", "18", "2018-02-22 10:32:52", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78098", "9", "2018-02-22 10:33:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78099", "8", "2018-02-22 10:34:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78100", "10", "2018-02-22 10:34:00", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78101", "15", "2018-02-22 10:34:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78102", "3", "2018-02-22 11:00:06", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78103", "11", "2018-02-22 11:00:18", "46.229.168.66", "2");
INSERT INTO `wp_gf_form_view` VALUES("78104", "14", "2018-02-22 11:43:43", "68.180.229.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("78105", "3", "2018-02-22 12:05:59", "157.55.39.125", "48");
INSERT INTO `wp_gf_form_view` VALUES("78106", "10", "2018-02-22 12:06:21", "207.46.13.129", "8");
INSERT INTO `wp_gf_form_view` VALUES("78107", "8", "2018-02-22 12:06:39", "207.46.13.129", "4");
INSERT INTO `wp_gf_form_view` VALUES("78108", "6", "2018-02-22 12:07:04", "157.55.39.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("78109", "9", "2018-02-22 12:49:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78110", "15", "2018-02-22 12:49:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78111", "18", "2018-02-22 12:49:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78112", "3", "2018-02-22 13:00:22", "54.85.74.248", "5");
INSERT INTO `wp_gf_form_view` VALUES("78113", "18", "2018-02-22 13:07:45", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78114", "8", "2018-02-22 13:55:15", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78115", "3", "2018-02-22 14:43:54", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78116", "9", "2018-02-22 14:43:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78117", "8", "2018-02-22 14:43:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78118", "10", "2018-02-22 14:43:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78119", "15", "2018-02-22 14:43:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78120", "18", "2018-02-22 14:43:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78121", "18", "2018-02-22 15:35:26", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78122", "18", "2018-02-22 16:16:38", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78123", "3", "2018-02-22 16:18:44", "66.249.79.137", "38");
INSERT INTO `wp_gf_form_view` VALUES("78124", "15", "2018-02-22 16:36:40", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78125", "9", "2018-02-22 16:43:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78126", "8", "2018-02-22 16:43:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78127", "10", "2018-02-22 16:43:44", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78128", "14", "2018-02-22 18:11:40", "209.52.88.26", "1");
INSERT INTO `wp_gf_form_view` VALUES("78129", "3", "2018-02-22 18:22:47", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("78130", "9", "2018-02-22 18:43:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78131", "8", "2018-02-22 18:43:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78132", "10", "2018-02-22 18:43:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78133", "15", "2018-02-22 18:43:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78134", "18", "2018-02-22 18:43:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78135", "3", "2018-02-22 19:00:22", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("78136", "9", "2018-02-22 19:35:52", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78137", "10", "2018-02-22 20:09:19", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("78138", "3", "2018-02-22 20:09:40", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("78139", "14", "2018-02-22 20:39:25", "196.196.50.208", "4");
INSERT INTO `wp_gf_form_view` VALUES("78140", "9", "2018-02-22 20:49:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78141", "8", "2018-02-22 20:49:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78142", "15", "2018-02-22 20:49:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78143", "18", "2018-02-22 20:49:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78144", "9", "2018-02-22 21:37:46", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78145", "3", "2018-02-22 21:55:35", "180.76.15.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("78146", "10", "2018-02-22 22:01:15", "54.85.74.248", "7");
INSERT INTO `wp_gf_form_view` VALUES("78147", "3", "2018-02-22 22:11:23", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("78148", "9", "2018-02-22 22:49:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78149", "8", "2018-02-22 22:49:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78150", "15", "2018-02-22 22:49:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78151", "18", "2018-02-22 22:49:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78152", "14", "2018-02-22 23:16:15", "45.199.192.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("78153", "3", "2018-02-22 23:25:16", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("78154", "3", "2018-02-23 00:08:34", "139.162.246.24", "34");
INSERT INTO `wp_gf_form_view` VALUES("78155", "9", "2018-02-23 00:43:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78156", "8", "2018-02-23 00:43:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78157", "10", "2018-02-23 00:43:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78158", "15", "2018-02-23 00:43:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78159", "18", "2018-02-23 00:43:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78160", "10", "2018-02-23 01:08:08", "72.14.199.73", "2");
INSERT INTO `wp_gf_form_view` VALUES("78161", "3", "2018-02-23 01:20:36", "35.168.2.89", "28");
INSERT INTO `wp_gf_form_view` VALUES("78162", "14", "2018-02-23 01:28:47", "35.168.2.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("78163", "18", "2018-02-23 01:39:14", "35.168.2.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("78164", "3", "2018-02-23 02:00:23", "35.168.2.89", "202");
INSERT INTO `wp_gf_form_view` VALUES("78165", "14", "2018-02-23 02:09:36", "35.168.2.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("78166", "10", "2018-02-23 02:11:27", "35.168.2.89", "28");
INSERT INTO `wp_gf_form_view` VALUES("78167", "18", "2018-02-23 02:17:15", "35.168.2.89", "11");
INSERT INTO `wp_gf_form_view` VALUES("78168", "9", "2018-02-23 02:28:40", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78169", "8", "2018-02-23 02:28:41", "52.37.180.245", "14");
INSERT INTO `wp_gf_form_view` VALUES("78170", "15", "2018-02-23 02:28:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78171", "3", "2018-02-23 03:00:27", "35.168.2.89", "44");
INSERT INTO `wp_gf_form_view` VALUES("78172", "10", "2018-02-23 03:14:51", "54.36.148.100", "14");
INSERT INTO `wp_gf_form_view` VALUES("78173", "18", "2018-02-23 03:16:10", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78174", "8", "2018-02-23 03:21:23", "35.168.2.89", "2");
INSERT INTO `wp_gf_form_view` VALUES("78175", "9", "2018-02-23 03:26:08", "35.168.2.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("78176", "6", "2018-02-23 03:33:43", "35.168.2.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("78177", "15", "2018-02-23 03:50:40", "35.168.2.89", "4");
INSERT INTO `wp_gf_form_view` VALUES("78178", "3", "2018-02-23 04:01:33", "35.168.2.89", "102");
INSERT INTO `wp_gf_form_view` VALUES("78179", "18", "2018-02-23 04:06:22", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78180", "10", "2018-02-23 04:18:48", "35.168.2.89", "9");
INSERT INTO `wp_gf_form_view` VALUES("78181", "9", "2018-02-23 04:23:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78182", "8", "2018-02-23 04:23:23", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("78183", "15", "2018-02-23 04:23:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78184", "3", "2018-02-23 05:04:28", "35.168.2.89", "3");
INSERT INTO `wp_gf_form_view` VALUES("78185", "6", "2018-02-23 05:14:07", "35.168.2.89", "1");
INSERT INTO `wp_gf_form_view` VALUES("78186", "3", "2018-02-23 06:14:56", "52.37.180.245", "63");
INSERT INTO `wp_gf_form_view` VALUES("78187", "9", "2018-02-23 06:14:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78188", "8", "2018-02-23 06:14:57", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78189", "10", "2018-02-23 06:14:58", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("78190", "15", "2018-02-23 06:15:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78191", "18", "2018-02-23 06:15:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78192", "3", "2018-02-23 07:32:00", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78193", "8", "2018-02-23 07:32:08", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78194", "10", "2018-02-23 07:50:11", "54.37.85.55", "1");
INSERT INTO `wp_gf_form_view` VALUES("78195", "3", "2018-02-23 08:08:40", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78196", "9", "2018-02-23 08:08:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78197", "8", "2018-02-23 08:08:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78198", "10", "2018-02-23 08:08:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78199", "15", "2018-02-23 08:08:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78200", "18", "2018-02-23 08:08:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78201", "9", "2018-02-23 09:52:27", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78202", "3", "2018-02-23 09:52:44", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("78203", "8", "2018-02-23 09:59:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78204", "10", "2018-02-23 09:59:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78205", "15", "2018-02-23 09:59:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78206", "18", "2018-02-23 09:59:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78207", "10", "2018-02-23 10:36:27", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78208", "3", "2018-02-23 10:37:41", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78209", "11", "2018-02-23 10:52:44", "77.75.77.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("78210", "18", "2018-02-23 11:36:45", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78211", "3", "2018-02-23 11:55:58", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78212", "9", "2018-02-23 11:55:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78213", "8", "2018-02-23 11:56:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78214", "10", "2018-02-23 11:56:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78215", "15", "2018-02-23 11:56:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78216", "3", "2018-02-23 12:57:43", "66.249.79.145", "1");
INSERT INTO `wp_gf_form_view` VALUES("78217", "10", "2018-02-23 13:00:13", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("78218", "3", "2018-02-23 13:04:35", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("78219", "18", "2018-02-23 13:48:57", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78220", "9", "2018-02-23 13:49:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78221", "8", "2018-02-23 13:49:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78222", "15", "2018-02-23 13:49:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78223", "3", "2018-02-23 14:10:34", "66.249.79.149", "3");
INSERT INTO `wp_gf_form_view` VALUES("78224", "10", "2018-02-23 14:21:10", "54.36.148.232", "1");
INSERT INTO `wp_gf_form_view` VALUES("78225", "3", "2018-02-23 15:06:12", "138.197.72.0", "32");
INSERT INTO `wp_gf_form_view` VALUES("78226", "9", "2018-02-23 15:39:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78227", "8", "2018-02-23 15:39:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78228", "10", "2018-02-23 15:39:27", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78229", "15", "2018-02-23 15:39:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78230", "18", "2018-02-23 15:39:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78231", "10", "2018-02-23 17:16:32", "54.36.149.100", "11");
INSERT INTO `wp_gf_form_view` VALUES("78232", "3", "2018-02-23 17:29:56", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("78233", "9", "2018-02-23 17:29:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78234", "8", "2018-02-23 17:29:57", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78235", "15", "2018-02-23 17:30:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78236", "18", "2018-02-23 17:30:02", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78237", "14", "2018-02-23 18:20:10", "207.164.79.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("78238", "18", "2018-02-23 18:20:16", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78239", "3", "2018-02-23 19:29:17", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78240", "9", "2018-02-23 19:29:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78241", "8", "2018-02-23 19:29:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78242", "10", "2018-02-23 19:29:19", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("78243", "15", "2018-02-23 19:29:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78244", "18", "2018-02-23 19:29:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78245", "3", "2018-02-23 20:00:09", "216.244.66.247", "21");
INSERT INTO `wp_gf_form_view` VALUES("78246", "18", "2018-02-23 20:00:56", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78247", "18", "2018-02-23 21:07:40", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78248", "3", "2018-02-23 21:40:59", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78249", "9", "2018-02-23 21:41:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78250", "8", "2018-02-23 21:41:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78251", "10", "2018-02-23 21:41:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78252", "15", "2018-02-23 21:41:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78253", "3", "2018-02-23 22:19:24", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("78254", "8", "2018-02-23 22:19:38", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78255", "14", "2018-02-23 22:20:36", "191.101.108.176", "1");
INSERT INTO `wp_gf_form_view` VALUES("78256", "3", "2018-02-23 23:24:53", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("78257", "9", "2018-02-23 23:24:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78258", "8", "2018-02-23 23:24:55", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78259", "10", "2018-02-23 23:24:56", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("78260", "15", "2018-02-23 23:24:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78261", "18", "2018-02-23 23:25:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78262", "18", "2018-02-24 00:25:59", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78263", "18", "2018-02-24 01:02:38", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78264", "3", "2018-02-24 01:26:00", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78265", "9", "2018-02-24 01:26:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78266", "8", "2018-02-24 01:26:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78267", "10", "2018-02-24 01:26:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78268", "15", "2018-02-24 01:26:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78269", "3", "2018-02-24 03:05:37", "216.244.66.195", "92");
INSERT INTO `wp_gf_form_view` VALUES("78270", "9", "2018-02-24 03:20:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78271", "8", "2018-02-24 03:20:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78272", "10", "2018-02-24 03:20:10", "52.37.180.245", "16");
INSERT INTO `wp_gf_form_view` VALUES("78273", "15", "2018-02-24 03:20:15", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78274", "18", "2018-02-24 03:20:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78275", "14", "2018-02-24 03:20:50", "5.39.85.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("78276", "3", "2018-02-24 04:26:33", "139.162.246.24", "15");
INSERT INTO `wp_gf_form_view` VALUES("78277", "8", "2018-02-24 04:26:33", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("78278", "10", "2018-02-24 04:26:34", "139.162.246.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("78279", "15", "2018-02-24 04:26:36", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("78280", "18", "2018-02-24 04:26:36", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("78281", "3", "2018-02-24 05:03:58", "139.162.246.24", "77");
INSERT INTO `wp_gf_form_view` VALUES("78282", "8", "2018-02-24 05:03:59", "139.162.246.24", "5");
INSERT INTO `wp_gf_form_view` VALUES("78283", "10", "2018-02-24 05:03:59", "139.162.246.24", "15");
INSERT INTO `wp_gf_form_view` VALUES("78284", "15", "2018-02-24 05:04:01", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("78285", "18", "2018-02-24 05:04:02", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("78286", "9", "2018-02-24 05:45:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78287", "14", "2018-02-24 05:58:37", "96.50.2.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("78288", "18", "2018-02-24 06:03:05", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78289", "3", "2018-02-24 06:22:34", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("78290", "10", "2018-02-24 06:24:08", "72.14.199.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("78291", "3", "2018-02-24 07:31:31", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78292", "9", "2018-02-24 07:31:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78293", "8", "2018-02-24 07:31:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78294", "10", "2018-02-24 07:31:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78295", "15", "2018-02-24 07:31:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78296", "18", "2018-02-24 07:31:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78297", "3", "2018-02-24 09:15:04", "52.37.180.245", "63");
INSERT INTO `wp_gf_form_view` VALUES("78298", "9", "2018-02-24 09:15:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78299", "8", "2018-02-24 09:15:05", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78300", "10", "2018-02-24 09:15:06", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("78301", "15", "2018-02-24 09:15:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78302", "18", "2018-02-24 09:15:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78303", "3", "2018-02-24 10:08:51", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("78304", "3", "2018-02-24 11:11:30", "52.37.180.245", "38");
INSERT INTO `wp_gf_form_view` VALUES("78305", "9", "2018-02-24 11:11:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78306", "8", "2018-02-24 11:11:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78307", "10", "2018-02-24 11:11:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78308", "15", "2018-02-24 11:11:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78309", "18", "2018-02-24 11:11:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78310", "3", "2018-02-24 12:00:57", "157.55.39.186", "41");
INSERT INTO `wp_gf_form_view` VALUES("78311", "10", "2018-02-24 12:01:21", "157.55.39.186", "8");
INSERT INTO `wp_gf_form_view` VALUES("78312", "8", "2018-02-24 12:01:47", "157.55.39.186", "4");
INSERT INTO `wp_gf_form_view` VALUES("78313", "6", "2018-02-24 12:02:15", "157.55.39.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("78314", "9", "2018-02-24 12:59:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78315", "15", "2018-02-24 12:59:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78316", "18", "2018-02-24 12:59:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78317", "3", "2018-02-24 13:19:38", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78318", "12", "2018-02-24 13:33:17", "54.36.148.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("78319", "3", "2018-02-24 14:23:19", "40.77.167.189", "32");
INSERT INTO `wp_gf_form_view` VALUES("78320", "9", "2018-02-24 14:54:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78321", "8", "2018-02-24 14:54:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78322", "10", "2018-02-24 14:54:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78323", "15", "2018-02-24 14:54:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78324", "18", "2018-02-24 14:54:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78325", "3", "2018-02-24 15:11:25", "139.162.246.24", "219");
INSERT INTO `wp_gf_form_view` VALUES("78326", "14", "2018-02-24 15:28:31", "100.35.47.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("78327", "10", "2018-02-24 15:30:39", "100.35.47.77", "37");
INSERT INTO `wp_gf_form_view` VALUES("78328", "15", "2018-02-24 15:30:45", "100.35.47.77", "8");
INSERT INTO `wp_gf_form_view` VALUES("78329", "6", "2018-02-24 15:31:44", "100.35.47.77", "1");
INSERT INTO `wp_gf_form_view` VALUES("78330", "18", "2018-02-24 15:37:27", "100.35.47.77", "7");
INSERT INTO `wp_gf_form_view` VALUES("78331", "8", "2018-02-24 15:41:19", "100.35.47.77", "15");
INSERT INTO `wp_gf_form_view` VALUES("78332", "9", "2018-02-24 15:42:51", "100.35.47.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("78333", "3", "2018-02-24 16:00:08", "100.35.47.77", "100");
INSERT INTO `wp_gf_form_view` VALUES("78334", "10", "2018-02-24 16:00:32", "100.35.47.77", "19");
INSERT INTO `wp_gf_form_view` VALUES("78335", "15", "2018-02-24 16:00:34", "100.35.47.77", "4");
INSERT INTO `wp_gf_form_view` VALUES("78336", "8", "2018-02-24 16:01:14", "100.35.47.77", "7");
INSERT INTO `wp_gf_form_view` VALUES("78337", "18", "2018-02-24 16:01:19", "100.35.47.77", "5");
INSERT INTO `wp_gf_form_view` VALUES("78338", "9", "2018-02-24 16:59:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78339", "3", "2018-02-24 17:00:21", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78340", "9", "2018-02-24 17:00:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78341", "8", "2018-02-24 17:00:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78342", "10", "2018-02-24 17:00:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78343", "15", "2018-02-24 17:00:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78344", "18", "2018-02-24 17:00:28", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78345", "10", "2018-02-24 18:33:49", "54.36.148.126", "6");
INSERT INTO `wp_gf_form_view` VALUES("78346", "3", "2018-02-24 18:51:16", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78347", "9", "2018-02-24 18:51:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78348", "8", "2018-02-24 18:51:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78349", "15", "2018-02-24 18:51:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78350", "18", "2018-02-24 18:51:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78351", "10", "2018-02-24 19:14:44", "54.36.148.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("78352", "18", "2018-02-24 19:19:35", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78353", "18", "2018-02-24 20:09:57", "54.36.148.133", "3");
INSERT INTO `wp_gf_form_view` VALUES("78354", "3", "2018-02-24 20:56:05", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78355", "9", "2018-02-24 20:56:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78356", "8", "2018-02-24 20:56:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78357", "10", "2018-02-24 20:56:07", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78358", "15", "2018-02-24 20:56:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78359", "3", "2018-02-24 21:46:55", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78360", "3", "2018-02-24 23:00:42", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("78361", "9", "2018-02-24 23:00:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78362", "8", "2018-02-24 23:00:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78363", "10", "2018-02-24 23:00:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78364", "15", "2018-02-24 23:00:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78365", "18", "2018-02-24 23:00:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78366", "3", "2018-02-25 00:09:23", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("78367", "18", "2018-02-25 00:40:29", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78368", "9", "2018-02-25 00:56:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78369", "8", "2018-02-25 00:56:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78370", "10", "2018-02-25 00:56:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78371", "15", "2018-02-25 00:56:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78372", "3", "2018-02-25 01:02:30", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78373", "18", "2018-02-25 01:46:05", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("78374", "3", "2018-02-25 02:27:42", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("78375", "9", "2018-02-25 02:46:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78376", "8", "2018-02-25 02:46:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78377", "10", "2018-02-25 02:46:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78378", "15", "2018-02-25 02:46:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78379", "18", "2018-02-25 02:46:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78380", "3", "2018-02-25 03:21:09", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78381", "18", "2018-02-25 03:30:31", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78382", "3", "2018-02-25 04:00:49", "139.162.246.24", "37");
INSERT INTO `wp_gf_form_view` VALUES("78383", "8", "2018-02-25 04:00:49", "139.162.246.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("78384", "9", "2018-02-25 04:40:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78385", "10", "2018-02-25 04:40:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78386", "15", "2018-02-25 04:40:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78387", "18", "2018-02-25 04:40:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78388", "3", "2018-02-25 05:16:00", "139.162.246.24", "7");
INSERT INTO `wp_gf_form_view` VALUES("78389", "8", "2018-02-25 05:16:00", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("78390", "10", "2018-02-25 05:38:00", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78391", "3", "2018-02-25 06:36:37", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78392", "9", "2018-02-25 06:36:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78393", "8", "2018-02-25 06:36:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78394", "10", "2018-02-25 06:36:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78395", "15", "2018-02-25 06:36:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78396", "18", "2018-02-25 06:36:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78397", "18", "2018-02-25 07:04:12", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78398", "3", "2018-02-25 07:04:36", "157.55.39.60", "2");
INSERT INTO `wp_gf_form_view` VALUES("78399", "18", "2018-02-25 08:14:02", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78400", "3", "2018-02-25 08:26:14", "180.76.15.12", "34");
INSERT INTO `wp_gf_form_view` VALUES("78401", "9", "2018-02-25 08:36:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78402", "8", "2018-02-25 08:36:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78403", "10", "2018-02-25 08:36:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78404", "15", "2018-02-25 08:36:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78405", "18", "2018-02-25 09:22:28", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78406", "3", "2018-02-25 09:47:22", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("78407", "3", "2018-02-25 10:31:55", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("78408", "9", "2018-02-25 10:31:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78409", "8", "2018-02-25 10:31:56", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78410", "10", "2018-02-25 10:31:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78411", "15", "2018-02-25 10:31:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78412", "18", "2018-02-25 10:32:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78413", "3", "2018-02-25 11:02:45", "46.4.104.39", "18");
INSERT INTO `wp_gf_form_view` VALUES("78414", "10", "2018-02-25 11:13:25", "46.4.104.39", "2");
INSERT INTO `wp_gf_form_view` VALUES("78415", "8", "2018-02-25 11:15:19", "46.4.104.39", "1");
INSERT INTO `wp_gf_form_view` VALUES("78416", "14", "2018-02-25 11:32:02", "198.12.68.52", "4");
INSERT INTO `wp_gf_form_view` VALUES("78417", "3", "2018-02-25 12:15:34", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("78418", "9", "2018-02-25 12:15:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78419", "8", "2018-02-25 12:15:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78420", "10", "2018-02-25 12:15:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78421", "15", "2018-02-25 12:15:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78422", "18", "2018-02-25 12:15:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78423", "10", "2018-02-25 13:54:32", "54.36.148.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("78424", "3", "2018-02-25 13:58:19", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("78425", "3", "2018-02-25 14:14:59", "52.37.180.245", "95");
INSERT INTO `wp_gf_form_view` VALUES("78426", "9", "2018-02-25 14:14:59", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78427", "8", "2018-02-25 14:15:00", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78428", "10", "2018-02-25 14:15:00", "52.37.180.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("78429", "15", "2018-02-25 14:15:02", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78430", "18", "2018-02-25 14:15:04", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78431", "8", "2018-02-25 15:27:51", "54.36.149.51", "1");
INSERT INTO `wp_gf_form_view` VALUES("78432", "18", "2018-02-25 15:58:04", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78433", "3", "2018-02-25 16:17:24", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78434", "9", "2018-02-25 16:17:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78435", "8", "2018-02-25 16:17:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78436", "10", "2018-02-25 16:17:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78437", "15", "2018-02-25 16:17:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78438", "18", "2018-02-25 16:17:29", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78439", "14", "2018-02-25 16:23:21", "70.67.107.142", "1");
INSERT INTO `wp_gf_form_view` VALUES("78440", "3", "2018-02-25 17:46:35", "173.208.206.50", "2");
INSERT INTO `wp_gf_form_view` VALUES("78441", "18", "2018-02-25 18:04:26", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78442", "3", "2018-02-25 18:15:57", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78443", "9", "2018-02-25 18:15:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78444", "8", "2018-02-25 18:15:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78445", "10", "2018-02-25 18:15:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78446", "15", "2018-02-25 18:16:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78447", "3", "2018-02-25 19:14:08", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("78448", "9", "2018-02-25 19:59:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78449", "8", "2018-02-25 19:59:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78450", "10", "2018-02-25 19:59:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78451", "15", "2018-02-25 19:59:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78452", "18", "2018-02-25 19:59:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78453", "3", "2018-02-25 20:14:05", "180.76.15.9", "13");
INSERT INTO `wp_gf_form_view` VALUES("78454", "18", "2018-02-25 20:31:22", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78455", "3", "2018-02-25 21:24:43", "207.46.13.110", "37");
INSERT INTO `wp_gf_form_view` VALUES("78456", "9", "2018-02-25 21:24:54", "157.55.39.164", "2");
INSERT INTO `wp_gf_form_view` VALUES("78457", "8", "2018-02-25 21:25:09", "207.46.13.110", "3");
INSERT INTO `wp_gf_form_view` VALUES("78458", "10", "2018-02-25 21:25:41", "157.55.39.164", "6");
INSERT INTO `wp_gf_form_view` VALUES("78459", "15", "2018-02-25 21:26:01", "207.46.13.110", "2");
INSERT INTO `wp_gf_form_view` VALUES("78460", "18", "2018-02-25 21:54:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78461", "8", "2018-02-25 22:03:27", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78462", "3", "2018-02-25 22:03:40", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78463", "18", "2018-02-25 22:06:11", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78464", "10", "2018-02-25 22:09:53", "66.249.92.30", "1");
INSERT INTO `wp_gf_form_view` VALUES("78465", "3", "2018-02-25 23:46:49", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78466", "9", "2018-02-25 23:46:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78467", "8", "2018-02-25 23:46:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78468", "10", "2018-02-25 23:46:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78469", "15", "2018-02-25 23:46:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78470", "18", "2018-02-25 23:46:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78471", "18", "2018-02-26 00:02:10", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78472", "3", "2018-02-26 00:56:32", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78473", "18", "2018-02-26 01:11:46", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78474", "3", "2018-02-26 01:49:24", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78475", "9", "2018-02-26 01:49:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78476", "8", "2018-02-26 01:49:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78477", "10", "2018-02-26 01:49:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78478", "15", "2018-02-26 01:49:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78479", "3", "2018-02-26 02:01:09", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("78480", "9", "2018-02-26 02:01:10", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78481", "8", "2018-02-26 02:01:10", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78482", "10", "2018-02-26 02:01:11", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("78483", "15", "2018-02-26 02:01:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78484", "18", "2018-02-26 02:01:15", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78485", "6", "2018-02-26 02:22:20", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78486", "3", "2018-02-26 03:43:55", "216.244.66.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("78487", "9", "2018-02-26 03:50:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78488", "8", "2018-02-26 03:50:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78489", "10", "2018-02-26 03:50:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78490", "15", "2018-02-26 03:50:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78491", "18", "2018-02-26 03:50:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78492", "3", "2018-02-26 04:05:06", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("78493", "9", "2018-02-26 04:05:07", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78494", "8", "2018-02-26 04:05:07", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78495", "10", "2018-02-26 04:05:08", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("78496", "15", "2018-02-26 04:05:10", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78497", "18", "2018-02-26 04:05:12", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78498", "10", "2018-02-26 05:00:45", "216.244.66.231", "6");
INSERT INTO `wp_gf_form_view` VALUES("78499", "18", "2018-02-26 05:06:25", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78500", "9", "2018-02-26 05:20:23", "157.55.39.239", "2");
INSERT INTO `wp_gf_form_view` VALUES("78501", "3", "2018-02-26 05:44:10", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78502", "8", "2018-02-26 05:44:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78503", "15", "2018-02-26 05:44:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78504", "3", "2018-02-26 06:12:27", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("78505", "9", "2018-02-26 06:12:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78506", "8", "2018-02-26 06:12:28", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78507", "10", "2018-02-26 06:12:29", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("78508", "15", "2018-02-26 06:12:31", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78509", "18", "2018-02-26 06:12:34", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78510", "11", "2018-02-26 06:21:15", "77.75.77.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("78511", "3", "2018-02-26 07:06:33", "54.36.148.163", "32");
INSERT INTO `wp_gf_form_view` VALUES("78512", "9", "2018-02-26 07:31:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78513", "8", "2018-02-26 07:31:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78514", "10", "2018-02-26 07:31:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78515", "15", "2018-02-26 07:31:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78516", "18", "2018-02-26 07:31:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78517", "18", "2018-02-26 08:20:07", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78518", "8", "2018-02-26 08:44:33", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78519", "3", "2018-02-26 08:45:03", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78520", "3", "2018-02-26 09:21:44", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78521", "9", "2018-02-26 09:21:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78522", "8", "2018-02-26 09:21:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78523", "10", "2018-02-26 09:21:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78524", "15", "2018-02-26 09:21:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78525", "18", "2018-02-26 09:21:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78526", "14", "2018-02-26 10:01:21", "54.36.148.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("78527", "10", "2018-02-26 11:09:06", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("78528", "3", "2018-02-26 11:30:53", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78529", "9", "2018-02-26 11:30:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78530", "8", "2018-02-26 11:30:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78531", "15", "2018-02-26 11:30:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78532", "18", "2018-02-26 11:30:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78533", "3", "2018-02-26 12:27:39", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78534", "9", "2018-02-26 13:00:05", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78535", "3", "2018-02-26 13:00:18", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("78536", "8", "2018-02-26 13:25:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78537", "10", "2018-02-26 13:25:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78538", "15", "2018-02-26 13:25:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78539", "18", "2018-02-26 13:25:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78540", "18", "2018-02-26 14:26:40", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78541", "3", "2018-02-26 14:42:30", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("78542", "3", "2018-02-26 15:30:18", "216.244.66.231", "32");
INSERT INTO `wp_gf_form_view` VALUES("78543", "9", "2018-02-26 15:31:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78544", "8", "2018-02-26 15:31:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78545", "10", "2018-02-26 15:31:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78546", "15", "2018-02-26 15:31:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78547", "18", "2018-02-26 15:31:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78548", "3", "2018-02-26 16:34:41", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("78549", "18", "2018-02-26 17:13:10", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78550", "3", "2018-02-26 17:21:49", "184.69.1.190", "33");
INSERT INTO `wp_gf_form_view` VALUES("78551", "9", "2018-02-26 17:26:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78552", "8", "2018-02-26 17:26:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78553", "10", "2018-02-26 17:26:22", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78554", "15", "2018-02-26 17:26:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78555", "14", "2018-02-26 17:40:11", "184.66.49.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("78556", "3", "2018-02-26 18:19:54", "184.66.247.127", "9");
INSERT INTO `wp_gf_form_view` VALUES("78557", "3", "2018-02-26 19:09:27", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("78558", "9", "2018-02-26 19:21:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78559", "8", "2018-02-26 19:21:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78560", "10", "2018-02-26 19:21:32", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("78561", "15", "2018-02-26 19:21:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78562", "18", "2018-02-26 19:21:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78563", "14", "2018-02-26 20:16:51", "108.180.146.44", "3");
INSERT INTO `wp_gf_form_view` VALUES("78564", "18", "2018-02-26 20:17:37", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("78565", "3", "2018-02-26 20:35:20", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("78566", "18", "2018-02-26 21:02:49", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78567", "3", "2018-02-26 21:07:52", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("78568", "9", "2018-02-26 21:07:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78569", "8", "2018-02-26 21:07:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78570", "10", "2018-02-26 21:07:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78571", "15", "2018-02-26 21:07:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78572", "3", "2018-02-26 22:02:34", "180.76.15.28", "2");
INSERT INTO `wp_gf_form_view` VALUES("78573", "18", "2018-02-26 22:42:57", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78574", "3", "2018-02-26 23:05:43", "52.37.180.245", "63");
INSERT INTO `wp_gf_form_view` VALUES("78575", "9", "2018-02-26 23:05:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78576", "8", "2018-02-26 23:05:45", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78577", "10", "2018-02-26 23:05:45", "52.37.180.245", "12");
INSERT INTO `wp_gf_form_view` VALUES("78578", "15", "2018-02-26 23:05:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78579", "18", "2018-02-26 23:05:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78580", "18", "2018-02-27 00:19:47", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78581", "3", "2018-02-27 01:10:01", "52.37.180.245", "65");
INSERT INTO `wp_gf_form_view` VALUES("78582", "9", "2018-02-27 01:10:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78583", "8", "2018-02-27 01:10:02", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78584", "10", "2018-02-27 01:10:03", "52.37.180.245", "12");
INSERT INTO `wp_gf_form_view` VALUES("78585", "15", "2018-02-27 01:10:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78586", "18", "2018-02-27 01:10:08", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78587", "3", "2018-02-27 02:13:12", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("78588", "18", "2018-02-27 02:37:45", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78589", "14", "2018-02-27 02:52:07", "207.46.13.35", "1");
INSERT INTO `wp_gf_form_view` VALUES("78590", "18", "2018-02-27 03:00:34", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78591", "3", "2018-02-27 03:05:33", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78592", "9", "2018-02-27 03:05:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78593", "8", "2018-02-27 03:05:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78594", "10", "2018-02-27 03:05:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78595", "15", "2018-02-27 03:05:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78596", "10", "2018-02-27 04:37:34", "216.244.66.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("78597", "3", "2018-02-27 04:49:59", "52.37.180.245", "62");
INSERT INTO `wp_gf_form_view` VALUES("78598", "9", "2018-02-27 04:49:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78599", "8", "2018-02-27 04:50:00", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78600", "15", "2018-02-27 04:50:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78601", "18", "2018-02-27 04:50:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78602", "10", "2018-02-27 05:11:46", "184.66.129.248", "5");
INSERT INTO `wp_gf_form_view` VALUES("78603", "3", "2018-02-27 06:03:14", "180.76.15.154", "33");
INSERT INTO `wp_gf_form_view` VALUES("78604", "18", "2018-02-27 06:30:57", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78605", "14", "2018-02-27 06:49:50", "205.250.183.217", "1");
INSERT INTO `wp_gf_form_view` VALUES("78606", "9", "2018-02-27 06:54:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78607", "8", "2018-02-27 06:54:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78608", "10", "2018-02-27 06:54:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78609", "15", "2018-02-27 06:54:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78610", "18", "2018-02-27 07:26:21", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78611", "10", "2018-02-27 07:45:13", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78612", "3", "2018-02-27 07:45:36", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78613", "3", "2018-02-27 08:45:57", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78614", "9", "2018-02-27 08:45:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78615", "8", "2018-02-27 08:45:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78616", "10", "2018-02-27 08:45:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78617", "15", "2018-02-27 08:46:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78618", "18", "2018-02-27 08:46:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78619", "18", "2018-02-27 09:36:41", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78620", "3", "2018-02-27 09:44:11", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78621", "3", "2018-02-27 10:14:27", "137.74.92.77", "34");
INSERT INTO `wp_gf_form_view` VALUES("78622", "9", "2018-02-27 10:39:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78623", "8", "2018-02-27 10:39:45", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78624", "10", "2018-02-27 10:39:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78625", "15", "2018-02-27 10:39:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78626", "18", "2018-02-27 10:39:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78627", "18", "2018-02-27 11:36:46", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78628", "3", "2018-02-27 11:40:39", "146.185.223.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("78629", "3", "2018-02-27 12:30:40", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78630", "9", "2018-02-27 12:30:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78631", "8", "2018-02-27 12:30:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78632", "10", "2018-02-27 12:30:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78633", "15", "2018-02-27 12:30:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78634", "18", "2018-02-27 12:30:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78635", "3", "2018-02-27 13:31:14", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("78636", "3", "2018-02-27 14:22:52", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78637", "9", "2018-02-27 14:22:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78638", "8", "2018-02-27 14:22:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78639", "10", "2018-02-27 14:22:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78640", "15", "2018-02-27 14:22:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78641", "18", "2018-02-27 14:22:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78642", "12", "2018-02-27 14:56:55", "157.55.39.78", "1");
INSERT INTO `wp_gf_form_view` VALUES("78643", "3", "2018-02-27 15:17:08", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("78644", "10", "2018-02-27 15:37:46", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("78645", "3", "2018-02-27 16:17:14", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("78646", "18", "2018-02-27 16:20:56", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("78647", "9", "2018-02-27 16:24:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78648", "8", "2018-02-27 16:24:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78649", "10", "2018-02-27 16:24:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78650", "15", "2018-02-27 16:24:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78651", "3", "2018-02-27 17:04:26", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("78652", "15", "2018-02-27 17:04:43", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78653", "8", "2018-02-27 17:24:32", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78654", "14", "2018-02-27 17:42:16", "184.66.49.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("78655", "18", "2018-02-27 18:10:26", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78656", "3", "2018-02-27 18:14:52", "52.37.180.245", "65");
INSERT INTO `wp_gf_form_view` VALUES("78657", "9", "2018-02-27 18:14:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78658", "8", "2018-02-27 18:14:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78659", "10", "2018-02-27 18:14:55", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("78660", "15", "2018-02-27 18:14:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78661", "14", "2018-02-27 19:12:14", "184.66.49.231", "3");
INSERT INTO `wp_gf_form_view` VALUES("78662", "3", "2018-02-27 19:24:35", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78663", "8", "2018-02-27 19:25:11", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78664", "18", "2018-02-27 20:06:47", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78665", "9", "2018-02-27 20:13:57", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78666", "3", "2018-02-27 20:16:01", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78667", "8", "2018-02-27 20:16:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78668", "10", "2018-02-27 20:16:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78669", "15", "2018-02-27 20:16:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78670", "18", "2018-02-27 21:04:03", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78671", "3", "2018-02-27 21:18:13", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("78672", "8", "2018-02-27 21:18:53", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78673", "12", "2018-02-27 21:45:20", "40.77.178.156", "1");
INSERT INTO `wp_gf_form_view` VALUES("78674", "3", "2018-02-27 22:00:52", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78675", "9", "2018-02-27 22:00:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78676", "8", "2018-02-27 22:00:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78677", "10", "2018-02-27 22:00:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78678", "15", "2018-02-27 22:00:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78679", "18", "2018-02-27 22:00:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78680", "14", "2018-02-27 22:25:29", "108.180.147.111", "1");
INSERT INTO `wp_gf_form_view` VALUES("78681", "18", "2018-02-27 23:46:11", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78682", "3", "2018-02-27 23:54:32", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78683", "9", "2018-02-27 23:54:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78684", "8", "2018-02-27 23:54:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78685", "10", "2018-02-27 23:54:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78686", "15", "2018-02-27 23:54:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78687", "10", "2018-02-28 01:40:42", "64.180.22.23", "3");
INSERT INTO `wp_gf_form_view` VALUES("78688", "3", "2018-02-28 02:06:59", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("78689", "9", "2018-02-28 02:06:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78690", "8", "2018-02-28 02:07:00", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78691", "10", "2018-02-28 02:07:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78692", "15", "2018-02-28 02:07:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78693", "18", "2018-02-28 02:07:05", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78694", "3", "2018-02-28 03:05:30", "216.244.66.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("78695", "10", "2018-02-28 03:33:13", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("78696", "9", "2018-02-28 03:56:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78697", "8", "2018-02-28 03:56:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78698", "15", "2018-02-28 03:56:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78699", "18", "2018-02-28 03:56:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78700", "18", "2018-02-28 04:34:07", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78701", "3", "2018-02-28 05:25:38", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("78702", "9", "2018-02-28 05:43:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78703", "8", "2018-02-28 05:43:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78704", "10", "2018-02-28 05:43:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78705", "15", "2018-02-28 05:44:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78706", "18", "2018-02-28 05:44:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78707", "10", "2018-02-28 06:03:24", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78708", "3", "2018-02-28 06:03:50", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78709", "18", "2018-02-28 07:37:13", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78710", "3", "2018-02-28 07:38:17", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78711", "9", "2018-02-28 07:38:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78712", "8", "2018-02-28 07:38:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78713", "10", "2018-02-28 07:38:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78714", "15", "2018-02-28 07:38:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78715", "3", "2018-02-28 08:11:24", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78716", "18", "2018-02-28 09:14:09", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78717", "3", "2018-02-28 09:20:00", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("78718", "9", "2018-02-28 09:27:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78719", "8", "2018-02-28 09:27:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78720", "10", "2018-02-28 09:27:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78721", "15", "2018-02-28 09:27:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78722", "3", "2018-02-28 10:11:28", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("78723", "10", "2018-02-28 10:14:00", "54.36.148.46", "1");
INSERT INTO `wp_gf_form_view` VALUES("78724", "3", "2018-02-28 11:17:20", "216.244.66.195", "63");
INSERT INTO `wp_gf_form_view` VALUES("78725", "9", "2018-02-28 11:40:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78726", "8", "2018-02-28 11:40:03", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78727", "10", "2018-02-28 11:40:04", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("78728", "15", "2018-02-28 11:40:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78729", "18", "2018-02-28 11:40:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78730", "3", "2018-02-28 12:10:13", "144.76.8.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("78731", "3", "2018-02-28 13:10:32", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("78732", "9", "2018-02-28 13:26:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78733", "8", "2018-02-28 13:26:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78734", "10", "2018-02-28 13:26:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78735", "15", "2018-02-28 13:26:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78736", "18", "2018-02-28 13:26:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78737", "3", "2018-02-28 14:18:38", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78738", "3", "2018-02-28 15:12:56", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78739", "9", "2018-02-28 15:12:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78740", "8", "2018-02-28 15:12:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78741", "10", "2018-02-28 15:12:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78742", "15", "2018-02-28 15:12:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78743", "18", "2018-02-28 15:13:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78744", "10", "2018-02-28 16:21:32", "66.249.90.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("78745", "3", "2018-02-28 16:22:27", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("78746", "3", "2018-02-28 17:06:42", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("78747", "9", "2018-02-28 17:06:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78748", "8", "2018-02-28 17:06:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78749", "10", "2018-02-28 17:06:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78750", "15", "2018-02-28 17:06:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78751", "18", "2018-02-28 17:06:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78752", "3", "2018-02-28 18:11:50", "70.66.152.210", "38");
INSERT INTO `wp_gf_form_view` VALUES("78753", "10", "2018-02-28 18:31:26", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("78754", "6", "2018-02-28 18:40:22", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("78755", "18", "2018-02-28 18:51:50", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78756", "9", "2018-02-28 18:52:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78757", "8", "2018-02-28 18:52:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78758", "15", "2018-02-28 18:52:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78759", "3", "2018-02-28 19:32:00", "88.99.2.203", "9");
INSERT INTO `wp_gf_form_view` VALUES("78760", "18", "2018-02-28 19:34:30", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78761", "8", "2018-02-28 20:01:00", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("78762", "3", "2018-02-28 20:05:00", "108.180.150.79", "36");
INSERT INTO `wp_gf_form_view` VALUES("78763", "18", "2018-02-28 20:05:11", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78764", "9", "2018-02-28 20:36:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78765", "10", "2018-02-28 20:36:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78766", "15", "2018-02-28 20:36:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78767", "18", "2018-02-28 21:16:57", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78768", "3", "2018-02-28 21:36:44", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("78769", "3", "2018-02-28 22:03:04", "96.54.241.191", "67");
INSERT INTO `wp_gf_form_view` VALUES("78770", "14", "2018-02-28 22:14:02", "104.223.52.151", "5");
INSERT INTO `wp_gf_form_view` VALUES("78771", "10", "2018-02-28 22:17:09", "216.244.66.231", "11");
INSERT INTO `wp_gf_form_view` VALUES("78772", "9", "2018-02-28 22:25:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78773", "8", "2018-02-28 22:25:49", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("78774", "15", "2018-02-28 22:25:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78775", "18", "2018-02-28 22:25:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78776", "3", "2018-02-28 23:09:25", "137.74.92.77", "12");
INSERT INTO `wp_gf_form_view` VALUES("78777", "18", "2018-02-28 23:27:07", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78778", "18", "2018-03-01 00:19:11", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78779", "3", "2018-03-01 00:24:48", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78780", "9", "2018-03-01 00:24:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78781", "8", "2018-03-01 00:24:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78782", "10", "2018-03-01 00:24:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78783", "15", "2018-03-01 00:24:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78784", "14", "2018-03-01 01:35:12", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("78785", "3", "2018-03-01 02:22:07", "52.37.180.245", "42");
INSERT INTO `wp_gf_form_view` VALUES("78786", "9", "2018-03-01 02:22:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78787", "8", "2018-03-01 02:22:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78788", "10", "2018-03-01 02:22:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78789", "15", "2018-03-01 02:22:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78790", "18", "2018-03-01 02:22:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78791", "10", "2018-03-01 03:21:39", "50.99.205.217", "2");
INSERT INTO `wp_gf_form_view` VALUES("78792", "18", "2018-03-01 03:40:05", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78793", "3", "2018-03-01 03:46:12", "144.76.19.144", "3");
INSERT INTO `wp_gf_form_view` VALUES("78794", "3", "2018-03-01 04:11:12", "70.66.53.14", "35");
INSERT INTO `wp_gf_form_view` VALUES("78795", "14", "2018-03-01 04:16:15", "70.66.53.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("78796", "9", "2018-03-01 04:18:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78797", "8", "2018-03-01 04:18:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78798", "10", "2018-03-01 04:18:21", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("78799", "15", "2018-03-01 04:18:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78800", "18", "2018-03-01 04:18:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78801", "18", "2018-03-01 05:01:20", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78802", "3", "2018-03-01 05:21:08", "216.244.66.231", "4");
INSERT INTO `wp_gf_form_view` VALUES("78803", "6", "2018-03-01 06:06:40", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78804", "3", "2018-03-01 06:06:56", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("78805", "18", "2018-03-01 06:11:37", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78806", "9", "2018-03-01 06:21:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78807", "8", "2018-03-01 06:21:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78808", "10", "2018-03-01 06:21:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78809", "15", "2018-03-01 06:21:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78810", "18", "2018-03-01 07:01:02", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78811", "3", "2018-03-01 08:25:51", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("78812", "9", "2018-03-01 08:25:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78813", "8", "2018-03-01 08:25:52", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78814", "10", "2018-03-01 08:25:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78815", "15", "2018-03-01 08:25:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78816", "18", "2018-03-01 08:25:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78817", "3", "2018-03-01 10:06:12", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("78818", "9", "2018-03-01 10:24:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78819", "8", "2018-03-01 10:24:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78820", "10", "2018-03-01 10:24:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78821", "15", "2018-03-01 10:24:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78822", "18", "2018-03-01 10:24:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78823", "3", "2018-03-01 11:14:08", "207.194.133.9", "37");
INSERT INTO `wp_gf_form_view` VALUES("78824", "18", "2018-03-01 11:18:31", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78825", "10", "2018-03-01 11:21:21", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("78826", "9", "2018-03-01 11:22:10", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78827", "8", "2018-03-01 11:22:10", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78828", "15", "2018-03-01 11:22:13", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78829", "3", "2018-03-01 12:47:39", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("78830", "9", "2018-03-01 12:47:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78831", "8", "2018-03-01 12:47:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78832", "10", "2018-03-01 12:47:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78833", "15", "2018-03-01 12:47:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78834", "18", "2018-03-01 12:47:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78835", "3", "2018-03-01 13:34:54", "91.121.116.72", "3");
INSERT INTO `wp_gf_form_view` VALUES("78836", "3", "2018-03-01 14:00:04", "216.244.66.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("78837", "9", "2018-03-01 14:36:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78838", "8", "2018-03-01 14:36:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78839", "10", "2018-03-01 14:36:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78840", "15", "2018-03-01 14:36:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78841", "18", "2018-03-01 14:36:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78842", "9", "2018-03-01 15:04:32", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78843", "3", "2018-03-01 15:04:46", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("78844", "18", "2018-03-01 16:02:07", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78845", "3", "2018-03-01 16:27:48", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("78846", "9", "2018-03-01 16:27:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78847", "8", "2018-03-01 16:27:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78848", "10", "2018-03-01 16:27:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78849", "15", "2018-03-01 16:27:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78850", "18", "2018-03-01 17:01:49", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78851", "3", "2018-03-01 17:03:50", "184.69.102.142", "3");
INSERT INTO `wp_gf_form_view` VALUES("78852", "10", "2018-03-01 17:16:22", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78853", "3", "2018-03-01 18:04:11", "24.108.21.208", "51");
INSERT INTO `wp_gf_form_view` VALUES("78854", "9", "2018-03-01 18:16:37", "157.55.39.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("78855", "8", "2018-03-01 18:17:57", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78856", "10", "2018-03-01 18:18:00", "52.37.180.245", "8");
INSERT INTO `wp_gf_form_view` VALUES("78857", "15", "2018-03-01 18:18:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78858", "18", "2018-03-01 18:18:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78859", "14", "2018-03-01 18:43:50", "70.66.167.205", "2");
INSERT INTO `wp_gf_form_view` VALUES("78860", "3", "2018-03-01 19:18:15", "157.55.39.41", "2");
INSERT INTO `wp_gf_form_view` VALUES("78861", "3", "2018-03-01 20:10:37", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("78862", "10", "2018-03-01 20:10:54", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("78863", "9", "2018-03-01 20:13:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78864", "8", "2018-03-01 20:13:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78865", "15", "2018-03-01 20:13:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78866", "18", "2018-03-01 20:13:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78867", "3", "2018-03-01 21:31:21", "123.125.71.96", "5");
INSERT INTO `wp_gf_form_view` VALUES("78868", "14", "2018-03-01 22:00:36", "70.66.167.205", "1");
INSERT INTO `wp_gf_form_view` VALUES("78869", "3", "2018-03-01 22:03:00", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78870", "9", "2018-03-01 22:03:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78871", "8", "2018-03-01 22:03:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78872", "10", "2018-03-01 22:03:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78873", "15", "2018-03-01 22:03:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78874", "18", "2018-03-01 22:03:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78875", "10", "2018-03-01 23:03:19", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78876", "3", "2018-03-02 00:09:20", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78877", "9", "2018-03-02 00:09:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78878", "8", "2018-03-02 00:09:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78879", "10", "2018-03-02 00:09:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78880", "15", "2018-03-02 00:09:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78881", "18", "2018-03-02 00:09:25", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78882", "18", "2018-03-02 01:18:51", "194.187.170.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("78883", "3", "2018-03-02 02:07:06", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("78884", "9", "2018-03-02 02:07:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78885", "8", "2018-03-02 02:07:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78886", "10", "2018-03-02 02:07:07", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78887", "15", "2018-03-02 02:07:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78888", "18", "2018-03-02 02:07:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78889", "3", "2018-03-02 03:23:48", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("78890", "14", "2018-03-02 03:25:44", "96.54.230.75", "2");
INSERT INTO `wp_gf_form_view` VALUES("78891", "18", "2018-03-02 03:34:42", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78892", "9", "2018-03-02 03:52:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78893", "8", "2018-03-02 03:52:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78894", "10", "2018-03-02 03:52:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78895", "15", "2018-03-02 03:52:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78896", "18", "2018-03-02 04:07:24", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78897", "14", "2018-03-02 04:49:31", "96.50.18.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("78898", "3", "2018-03-02 04:50:47", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78899", "3", "2018-03-02 05:32:49", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("78900", "9", "2018-03-02 05:46:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78901", "8", "2018-03-02 05:46:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78902", "10", "2018-03-02 05:46:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78903", "15", "2018-03-02 05:46:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78904", "18", "2018-03-02 05:46:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78905", "3", "2018-03-02 06:18:29", "75.156.35.44", "1");
INSERT INTO `wp_gf_form_view` VALUES("78906", "3", "2018-03-02 07:11:04", "66.249.69.55", "36");
INSERT INTO `wp_gf_form_view` VALUES("78907", "18", "2018-03-02 07:13:46", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78908", "9", "2018-03-02 07:51:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78909", "8", "2018-03-02 07:51:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78910", "10", "2018-03-02 07:51:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78911", "15", "2018-03-02 07:51:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78912", "10", "2018-03-02 08:33:06", "207.46.13.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("78913", "18", "2018-03-02 09:21:51", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78914", "3", "2018-03-02 09:36:22", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78915", "9", "2018-03-02 09:36:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78916", "8", "2018-03-02 09:36:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78917", "10", "2018-03-02 09:36:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78918", "15", "2018-03-02 09:36:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78919", "3", "2018-03-02 10:21:12", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78920", "8", "2018-03-02 10:21:29", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78921", "3", "2018-03-02 11:15:43", "220.181.108.93", "43");
INSERT INTO `wp_gf_form_view` VALUES("78922", "9", "2018-03-02 11:26:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78923", "8", "2018-03-02 11:26:39", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78924", "10", "2018-03-02 11:26:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78925", "15", "2018-03-02 11:26:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78926", "18", "2018-03-02 11:26:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78927", "3", "2018-03-02 12:01:20", "82.102.24.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("78928", "10", "2018-03-02 13:00:03", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("78929", "3", "2018-03-02 13:13:33", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("78930", "9", "2018-03-02 13:13:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78931", "8", "2018-03-02 13:13:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78932", "15", "2018-03-02 13:13:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78933", "18", "2018-03-02 13:13:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78934", "3", "2018-03-02 14:40:39", "46.229.168.74", "16");
INSERT INTO `wp_gf_form_view` VALUES("78935", "3", "2018-03-02 15:01:31", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78936", "9", "2018-03-02 15:01:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78937", "8", "2018-03-02 15:01:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78938", "10", "2018-03-02 15:01:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78939", "15", "2018-03-02 15:01:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78940", "18", "2018-03-02 15:01:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78941", "3", "2018-03-02 16:17:12", "216.244.66.247", "45");
INSERT INTO `wp_gf_form_view` VALUES("78942", "9", "2018-03-02 16:17:31", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("78943", "8", "2018-03-02 16:19:08", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("78944", "18", "2018-03-02 16:47:10", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("78945", "10", "2018-03-02 16:56:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78946", "15", "2018-03-02 16:56:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78947", "18", "2018-03-02 17:24:11", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78948", "3", "2018-03-02 17:44:09", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78949", "3", "2018-03-02 18:45:38", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78950", "9", "2018-03-02 18:45:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78951", "8", "2018-03-02 18:45:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78952", "10", "2018-03-02 18:45:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78953", "15", "2018-03-02 18:45:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78954", "18", "2018-03-02 18:45:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78955", "18", "2018-03-02 20:17:50", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78956", "3", "2018-03-02 20:41:50", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("78957", "9", "2018-03-02 20:41:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78958", "8", "2018-03-02 20:41:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78959", "10", "2018-03-02 20:41:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78960", "15", "2018-03-02 20:41:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78961", "3", "2018-03-02 21:37:01", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("78962", "3", "2018-03-02 22:42:34", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("78963", "9", "2018-03-02 22:42:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78964", "8", "2018-03-02 22:42:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78965", "10", "2018-03-02 22:42:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78966", "15", "2018-03-02 22:42:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78967", "18", "2018-03-02 22:42:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78968", "18", "2018-03-02 23:08:43", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78969", "3", "2018-03-02 23:25:50", "137.74.92.77", "2");
INSERT INTO `wp_gf_form_view` VALUES("78970", "10", "2018-03-02 23:39:05", "184.66.129.248", "3");
INSERT INTO `wp_gf_form_view` VALUES("78971", "18", "2018-03-03 00:24:23", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("78972", "3", "2018-03-03 00:30:43", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("78973", "9", "2018-03-03 00:30:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78974", "8", "2018-03-03 00:30:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78975", "10", "2018-03-03 00:30:46", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78976", "15", "2018-03-03 00:30:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78977", "14", "2018-03-03 00:33:57", "103.89.89.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("78978", "3", "2018-03-03 01:58:33", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("78979", "3", "2018-03-03 02:30:56", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78980", "9", "2018-03-03 02:30:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78981", "8", "2018-03-03 02:30:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("78982", "10", "2018-03-03 02:30:58", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("78983", "15", "2018-03-03 02:31:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78984", "18", "2018-03-03 02:31:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78985", "3", "2018-03-03 03:47:29", "66.249.79.117", "2");
INSERT INTO `wp_gf_form_view` VALUES("78986", "18", "2018-03-03 04:03:05", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78987", "3", "2018-03-03 04:16:07", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("78988", "9", "2018-03-03 04:16:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78989", "8", "2018-03-03 04:16:08", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("78990", "10", "2018-03-03 04:16:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("78991", "15", "2018-03-03 04:16:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78992", "14", "2018-03-03 04:37:44", "64.180.22.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("78993", "10", "2018-03-03 05:46:54", "199.16.157.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("78994", "18", "2018-03-03 05:54:26", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("78995", "3", "2018-03-03 05:55:52", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("78996", "18", "2018-03-03 06:04:29", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("78997", "3", "2018-03-03 06:06:18", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("78998", "9", "2018-03-03 06:06:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("78999", "8", "2018-03-03 06:06:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79000", "10", "2018-03-03 06:06:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79001", "15", "2018-03-03 06:06:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79002", "18", "2018-03-03 07:17:06", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79003", "3", "2018-03-03 07:36:30", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("79004", "9", "2018-03-03 07:36:31", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79005", "8", "2018-03-03 07:36:31", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79006", "10", "2018-03-03 07:36:32", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("79007", "15", "2018-03-03 07:36:34", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79008", "3", "2018-03-03 08:01:11", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79009", "9", "2018-03-03 08:01:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79010", "8", "2018-03-03 08:01:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79011", "10", "2018-03-03 08:01:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79012", "15", "2018-03-03 08:01:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79013", "18", "2018-03-03 08:01:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79014", "18", "2018-03-03 09:17:06", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79015", "3", "2018-03-03 09:22:47", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79016", "3", "2018-03-03 10:08:30", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79017", "9", "2018-03-03 10:08:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79018", "8", "2018-03-03 10:08:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79019", "10", "2018-03-03 10:08:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79020", "15", "2018-03-03 10:08:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79021", "18", "2018-03-03 10:08:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79022", "3", "2018-03-03 11:55:14", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("79023", "9", "2018-03-03 11:55:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79024", "8", "2018-03-03 11:55:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79025", "10", "2018-03-03 11:55:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79026", "15", "2018-03-03 11:55:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79027", "18", "2018-03-03 11:55:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79028", "3", "2018-03-03 12:33:22", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("79029", "10", "2018-03-03 13:13:14", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("79030", "3", "2018-03-03 13:13:39", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("79031", "9", "2018-03-03 13:50:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79032", "8", "2018-03-03 13:50:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79033", "15", "2018-03-03 13:50:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79034", "18", "2018-03-03 13:50:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79035", "10", "2018-03-03 14:43:56", "72.14.199.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("79036", "3", "2018-03-03 15:12:18", "66.249.79.115", "64");
INSERT INTO `wp_gf_form_view` VALUES("79037", "10", "2018-03-03 15:39:04", "216.244.66.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("79038", "9", "2018-03-03 15:40:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79039", "8", "2018-03-03 15:40:01", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79040", "15", "2018-03-03 15:40:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79041", "18", "2018-03-03 15:40:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79042", "3", "2018-03-03 16:22:38", "157.55.39.147", "1");
INSERT INTO `wp_gf_form_view` VALUES("79043", "18", "2018-03-03 16:23:55", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79044", "3", "2018-03-03 17:01:58", "216.244.66.231", "38");
INSERT INTO `wp_gf_form_view` VALUES("79045", "18", "2018-03-03 17:10:49", "184.66.27.189", "6");
INSERT INTO `wp_gf_form_view` VALUES("79046", "9", "2018-03-03 17:26:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79047", "8", "2018-03-03 17:26:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79048", "10", "2018-03-03 17:26:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79049", "15", "2018-03-03 17:26:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79050", "3", "2018-03-03 18:56:45", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79051", "3", "2018-03-03 19:05:54", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("79052", "9", "2018-03-03 19:20:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79053", "8", "2018-03-03 19:20:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79054", "10", "2018-03-03 19:20:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79055", "15", "2018-03-03 19:20:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79056", "18", "2018-03-03 19:20:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79057", "3", "2018-03-03 20:03:01", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("79058", "3", "2018-03-03 21:05:59", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("79059", "9", "2018-03-03 21:05:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79060", "8", "2018-03-03 21:06:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79061", "10", "2018-03-03 21:06:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79062", "15", "2018-03-03 21:06:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79063", "18", "2018-03-03 21:06:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79064", "3", "2018-03-03 22:12:59", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("79065", "18", "2018-03-03 22:15:41", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79066", "9", "2018-03-03 22:56:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79067", "8", "2018-03-03 22:56:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79068", "10", "2018-03-03 22:56:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79069", "15", "2018-03-03 22:56:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79070", "10", "2018-03-03 23:22:50", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("79071", "3", "2018-03-03 23:23:16", "216.244.66.247", "43");
INSERT INTO `wp_gf_form_view` VALUES("79072", "9", "2018-03-03 23:23:36", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79073", "8", "2018-03-03 23:23:37", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79074", "15", "2018-03-03 23:23:40", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79075", "18", "2018-03-03 23:23:42", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("79076", "14", "2018-03-03 23:53:02", "75.154.241.251", "1");
INSERT INTO `wp_gf_form_view` VALUES("79077", "18", "2018-03-04 00:47:01", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79078", "3", "2018-03-04 00:52:37", "216.244.66.247", "63");
INSERT INTO `wp_gf_form_view` VALUES("79079", "9", "2018-03-04 00:54:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79080", "8", "2018-03-04 00:54:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79081", "10", "2018-03-04 00:54:54", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("79082", "15", "2018-03-04 00:54:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79083", "3", "2018-03-04 01:23:33", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79084", "18", "2018-03-04 01:43:41", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79085", "10", "2018-03-04 01:53:04", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("79086", "18", "2018-03-04 02:12:36", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("79087", "3", "2018-03-04 02:14:59", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("79088", "6", "2018-03-04 02:57:54", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79089", "18", "2018-03-04 03:01:04", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79090", "3", "2018-03-04 03:20:29", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79091", "9", "2018-03-04 03:20:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79092", "8", "2018-03-04 03:20:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79093", "10", "2018-03-04 03:20:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79094", "15", "2018-03-04 03:20:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79095", "18", "2018-03-04 04:39:58", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79096", "14", "2018-03-04 04:50:42", "191.101.198.52", "1");
INSERT INTO `wp_gf_form_view` VALUES("79097", "3", "2018-03-04 04:53:10", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79098", "10", "2018-03-04 05:07:18", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("79099", "3", "2018-03-04 05:11:10", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79100", "9", "2018-03-04 05:11:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79101", "8", "2018-03-04 05:11:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79102", "15", "2018-03-04 05:11:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79103", "18", "2018-03-04 05:11:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79104", "8", "2018-03-04 06:12:35", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("79105", "3", "2018-03-04 06:13:47", "216.244.66.195", "32");
INSERT INTO `wp_gf_form_view` VALUES("79106", "5", "2018-03-04 06:50:22", "77.75.78.160", "1");
INSERT INTO `wp_gf_form_view` VALUES("79107", "9", "2018-03-04 06:55:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79108", "10", "2018-03-04 06:55:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79109", "15", "2018-03-04 06:55:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79110", "18", "2018-03-04 06:55:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79111", "10", "2018-03-04 07:09:34", "54.36.149.177", "2");
INSERT INTO `wp_gf_form_view` VALUES("79112", "3", "2018-03-04 07:25:19", "207.46.13.151", "2");
INSERT INTO `wp_gf_form_view` VALUES("79113", "18", "2018-03-04 07:26:11", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79114", "3", "2018-03-04 08:47:15", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("79115", "9", "2018-03-04 08:47:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79116", "8", "2018-03-04 08:47:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79117", "10", "2018-03-04 08:47:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79118", "15", "2018-03-04 08:47:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79119", "18", "2018-03-04 08:47:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79120", "3", "2018-03-04 09:31:18", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79121", "3", "2018-03-04 10:35:53", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("79122", "9", "2018-03-04 10:35:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79123", "8", "2018-03-04 10:35:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79124", "10", "2018-03-04 10:35:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79125", "15", "2018-03-04 10:36:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79126", "18", "2018-03-04 10:36:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79127", "9", "2018-03-04 11:22:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79128", "3", "2018-03-04 11:23:15", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("79129", "3", "2018-03-04 12:25:44", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("79130", "9", "2018-03-04 12:25:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79131", "8", "2018-03-04 12:25:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79132", "10", "2018-03-04 12:25:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79133", "15", "2018-03-04 12:25:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79134", "18", "2018-03-04 12:25:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79135", "14", "2018-03-04 12:33:44", "103.89.89.211", "1");
INSERT INTO `wp_gf_form_view` VALUES("79136", "3", "2018-03-04 13:48:06", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79137", "3", "2018-03-04 14:10:34", "52.37.180.245", "43");
INSERT INTO `wp_gf_form_view` VALUES("79138", "9", "2018-03-04 14:10:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79139", "8", "2018-03-04 14:10:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79140", "10", "2018-03-04 14:10:36", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79141", "15", "2018-03-04 14:10:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79142", "18", "2018-03-04 14:10:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79143", "14", "2018-03-04 14:58:15", "45.55.141.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("79144", "6", "2018-03-04 15:00:05", "45.55.141.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("79145", "3", "2018-03-04 15:00:56", "45.55.141.157", "177");
INSERT INTO `wp_gf_form_view` VALUES("79146", "10", "2018-03-04 15:02:59", "45.55.141.157", "15");
INSERT INTO `wp_gf_form_view` VALUES("79147", "9", "2018-03-04 15:07:50", "45.55.141.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("79148", "15", "2018-03-04 15:14:28", "45.55.141.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("79149", "8", "2018-03-04 15:40:34", "45.55.141.157", "7");
INSERT INTO `wp_gf_form_view` VALUES("79150", "14", "2018-03-04 15:40:59", "107.183.94.163", "1");
INSERT INTO `wp_gf_form_view` VALUES("79151", "18", "2018-03-04 15:41:04", "45.55.141.157", "4");
INSERT INTO `wp_gf_form_view` VALUES("79152", "3", "2018-03-04 16:00:10", "45.55.141.157", "81");
INSERT INTO `wp_gf_form_view` VALUES("79153", "18", "2018-03-04 16:25:22", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79154", "3", "2018-03-04 17:09:29", "180.76.15.13", "35");
INSERT INTO `wp_gf_form_view` VALUES("79155", "9", "2018-03-04 17:45:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79156", "8", "2018-03-04 17:45:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79157", "10", "2018-03-04 17:45:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79158", "15", "2018-03-04 17:45:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79159", "18", "2018-03-04 17:45:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79160", "14", "2018-03-04 18:25:01", "196.196.92.121", "1");
INSERT INTO `wp_gf_form_view` VALUES("79161", "3", "2018-03-04 19:01:48", "96.50.101.176", "36");
INSERT INTO `wp_gf_form_view` VALUES("79162", "9", "2018-03-04 19:41:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79163", "8", "2018-03-04 19:41:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79164", "10", "2018-03-04 19:41:08", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79165", "15", "2018-03-04 19:41:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79166", "18", "2018-03-04 19:41:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79167", "8", "2018-03-04 20:46:29", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79168", "3", "2018-03-04 20:46:48", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79169", "3", "2018-03-04 21:36:10", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("79170", "9", "2018-03-04 21:36:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79171", "8", "2018-03-04 21:36:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79172", "10", "2018-03-04 21:36:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79173", "15", "2018-03-04 21:36:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79174", "18", "2018-03-04 21:36:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79175", "18", "2018-03-04 22:08:50", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79176", "10", "2018-03-04 22:56:49", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79177", "3", "2018-03-04 23:21:12", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79178", "9", "2018-03-04 23:21:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79179", "8", "2018-03-04 23:21:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79180", "10", "2018-03-04 23:21:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79181", "15", "2018-03-04 23:21:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79182", "18", "2018-03-04 23:21:18", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79183", "10", "2018-03-05 00:11:29", "54.36.148.87", "1");
INSERT INTO `wp_gf_form_view` VALUES("79184", "3", "2018-03-05 01:15:44", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("79185", "9", "2018-03-05 01:15:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79186", "8", "2018-03-05 01:15:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79187", "10", "2018-03-05 01:15:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79188", "15", "2018-03-05 01:15:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79189", "18", "2018-03-05 01:15:50", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79190", "3", "2018-03-05 02:12:57", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("79191", "10", "2018-03-05 02:24:43", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79192", "3", "2018-03-05 03:01:28", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("79193", "9", "2018-03-05 03:01:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79194", "8", "2018-03-05 03:01:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79195", "10", "2018-03-05 03:01:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79196", "15", "2018-03-05 03:01:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79197", "18", "2018-03-05 03:01:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79198", "18", "2018-03-05 04:06:59", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79199", "3", "2018-03-05 04:47:45", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79200", "9", "2018-03-05 04:47:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79201", "8", "2018-03-05 04:47:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79202", "10", "2018-03-05 04:47:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79203", "15", "2018-03-05 04:47:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79204", "18", "2018-03-05 05:19:27", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79205", "3", "2018-03-05 06:01:11", "216.244.66.247", "32");
INSERT INTO `wp_gf_form_view` VALUES("79206", "9", "2018-03-05 06:01:25", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79207", "8", "2018-03-05 06:31:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79208", "10", "2018-03-05 06:31:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79209", "15", "2018-03-05 06:31:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79210", "18", "2018-03-05 06:31:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79211", "10", "2018-03-05 08:27:59", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("79212", "3", "2018-03-05 08:36:08", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("79213", "9", "2018-03-05 08:36:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79214", "8", "2018-03-05 08:36:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79215", "15", "2018-03-05 08:36:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79216", "18", "2018-03-05 08:36:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79217", "3", "2018-03-05 10:26:58", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79218", "9", "2018-03-05 10:26:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79219", "8", "2018-03-05 10:26:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79220", "10", "2018-03-05 10:27:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79221", "15", "2018-03-05 10:27:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79222", "18", "2018-03-05 10:27:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79223", "15", "2018-03-05 11:28:01", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79224", "3", "2018-03-05 11:28:32", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79225", "10", "2018-03-05 12:01:50", "66.249.79.133", "6");
INSERT INTO `wp_gf_form_view` VALUES("79226", "18", "2018-03-05 12:11:58", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79227", "3", "2018-03-05 12:36:10", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79228", "9", "2018-03-05 12:36:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79229", "8", "2018-03-05 12:36:12", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79230", "15", "2018-03-05 12:36:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79231", "8", "2018-03-05 13:54:20", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79232", "3", "2018-03-05 13:54:38", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79233", "18", "2018-03-05 14:07:52", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79234", "3", "2018-03-05 14:13:24", "207.46.13.61", "35");
INSERT INTO `wp_gf_form_view` VALUES("79235", "9", "2018-03-05 14:37:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79236", "8", "2018-03-05 14:37:49", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79237", "10", "2018-03-05 14:37:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79238", "15", "2018-03-05 14:37:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79239", "11", "2018-03-05 15:37:43", "194.187.170.126", "1");
INSERT INTO `wp_gf_form_view` VALUES("79240", "18", "2018-03-05 16:20:07", "184.66.27.189", "8");
INSERT INTO `wp_gf_form_view` VALUES("79241", "3", "2018-03-05 16:41:06", "216.244.66.247", "64");
INSERT INTO `wp_gf_form_view` VALUES("79242", "9", "2018-03-05 16:41:07", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79243", "8", "2018-03-05 16:41:08", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("79244", "10", "2018-03-05 16:41:10", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("79245", "15", "2018-03-05 16:41:12", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79246", "14", "2018-03-05 16:42:14", "192.186.147.220", "1");
INSERT INTO `wp_gf_form_view` VALUES("79247", "18", "2018-03-05 17:06:10", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79248", "3", "2018-03-05 17:39:57", "207.46.13.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("79249", "3", "2018-03-05 18:32:05", "52.37.180.245", "31");
INSERT INTO `wp_gf_form_view` VALUES("79250", "9", "2018-03-05 18:32:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79251", "8", "2018-03-05 18:32:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79252", "10", "2018-03-05 18:32:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79253", "15", "2018-03-05 18:32:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79254", "18", "2018-03-05 18:32:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79255", "10", "2018-03-05 20:00:01", "54.36.148.60", "6");
INSERT INTO `wp_gf_form_view` VALUES("79256", "3", "2018-03-05 20:21:09", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("79257", "9", "2018-03-05 20:21:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79258", "8", "2018-03-05 20:21:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79259", "15", "2018-03-05 20:21:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79260", "18", "2018-03-05 20:21:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79261", "14", "2018-03-05 21:01:37", "207.194.133.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("79262", "3", "2018-03-05 21:03:08", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("79263", "10", "2018-03-05 21:03:16", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79264", "3", "2018-03-05 22:11:16", "216.244.66.247", "38");
INSERT INTO `wp_gf_form_view` VALUES("79265", "10", "2018-03-05 22:11:31", "216.244.66.247", "6");
INSERT INTO `wp_gf_form_view` VALUES("79266", "9", "2018-03-05 22:11:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79267", "8", "2018-03-05 22:11:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79268", "15", "2018-03-05 22:11:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79269", "18", "2018-03-05 22:11:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79270", "3", "2018-03-05 23:21:28", "194.187.170.114", "3");
INSERT INTO `wp_gf_form_view` VALUES("79271", "14", "2018-03-05 23:24:03", "96.50.18.131", "1");
INSERT INTO `wp_gf_form_view` VALUES("79272", "10", "2018-03-06 00:06:33", "72.14.199.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("79273", "3", "2018-03-06 00:06:40", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("79274", "9", "2018-03-06 00:06:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79275", "8", "2018-03-06 00:06:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79276", "15", "2018-03-06 00:06:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79277", "18", "2018-03-06 00:06:45", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79278", "18", "2018-03-06 01:22:09", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79279", "10", "2018-03-06 01:41:44", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("79280", "3", "2018-03-06 01:42:02", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("79281", "9", "2018-03-06 01:57:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79282", "8", "2018-03-06 01:57:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79283", "15", "2018-03-06 01:57:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79284", "18", "2018-03-06 02:07:34", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79285", "3", "2018-03-06 02:12:22", "24.108.38.201", "5");
INSERT INTO `wp_gf_form_view` VALUES("79286", "8", "2018-03-06 02:31:13", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("79287", "3", "2018-03-06 03:20:58", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("79288", "9", "2018-03-06 03:47:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79289", "8", "2018-03-06 03:47:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79290", "10", "2018-03-06 03:47:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79291", "15", "2018-03-06 03:47:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79292", "18", "2018-03-06 03:47:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79293", "18", "2018-03-06 04:08:14", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79294", "3", "2018-03-06 04:17:00", "154.5.208.115", "7");
INSERT INTO `wp_gf_form_view` VALUES("79295", "3", "2018-03-06 05:32:40", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79296", "9", "2018-03-06 05:32:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79297", "8", "2018-03-06 05:32:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79298", "10", "2018-03-06 05:32:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79299", "15", "2018-03-06 05:32:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79300", "18", "2018-03-06 05:32:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79301", "18", "2018-03-06 06:24:23", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79302", "3", "2018-03-06 06:29:01", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79303", "3", "2018-03-06 07:17:29", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79304", "9", "2018-03-06 07:17:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79305", "8", "2018-03-06 07:17:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79306", "10", "2018-03-06 07:17:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79307", "15", "2018-03-06 07:17:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79308", "18", "2018-03-06 07:17:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79309", "3", "2018-03-06 08:06:04", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79310", "3", "2018-03-06 09:01:36", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79311", "9", "2018-03-06 09:01:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79312", "8", "2018-03-06 09:01:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79313", "10", "2018-03-06 09:01:38", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("79314", "15", "2018-03-06 09:01:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79315", "18", "2018-03-06 09:01:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79316", "3", "2018-03-06 10:27:22", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("79317", "14", "2018-03-06 10:31:03", "104.144.7.251", "4");
INSERT INTO `wp_gf_form_view` VALUES("79318", "9", "2018-03-06 10:51:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79319", "8", "2018-03-06 10:52:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79320", "10", "2018-03-06 10:52:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79321", "15", "2018-03-06 10:52:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79322", "18", "2018-03-06 10:52:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79323", "3", "2018-03-06 11:50:06", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79324", "8", "2018-03-06 12:30:02", "54.36.148.53", "3");
INSERT INTO `wp_gf_form_view` VALUES("79325", "3", "2018-03-06 12:41:40", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79326", "9", "2018-03-06 12:41:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79327", "10", "2018-03-06 12:41:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79328", "15", "2018-03-06 12:41:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79329", "18", "2018-03-06 12:41:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79330", "3", "2018-03-06 13:44:35", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79331", "3", "2018-03-06 14:09:46", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("79332", "9", "2018-03-06 14:31:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79333", "8", "2018-03-06 14:31:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79334", "10", "2018-03-06 14:31:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79335", "15", "2018-03-06 14:31:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79336", "18", "2018-03-06 14:31:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79337", "14", "2018-03-06 14:35:09", "104.144.179.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("79338", "5", "2018-03-06 14:38:51", "146.185.223.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("79339", "18", "2018-03-06 15:24:29", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79340", "3", "2018-03-06 15:56:31", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79341", "3", "2018-03-06 16:14:24", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("79342", "18", "2018-03-06 16:20:58", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("79343", "9", "2018-03-06 16:27:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79344", "8", "2018-03-06 16:27:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79345", "10", "2018-03-06 16:27:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79346", "15", "2018-03-06 16:27:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79347", "3", "2018-03-06 17:39:52", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79348", "3", "2018-03-06 18:17:06", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("79349", "9", "2018-03-06 18:17:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79350", "8", "2018-03-06 18:17:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79351", "10", "2018-03-06 18:17:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79352", "15", "2018-03-06 18:17:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79353", "18", "2018-03-06 18:17:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79354", "3", "2018-03-06 19:14:11", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79355", "5", "2018-03-06 19:53:22", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("79356", "3", "2018-03-06 20:02:10", "52.37.180.245", "44");
INSERT INTO `wp_gf_form_view` VALUES("79357", "9", "2018-03-06 20:02:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79358", "8", "2018-03-06 20:02:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79359", "10", "2018-03-06 20:02:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79360", "15", "2018-03-06 20:02:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79361", "18", "2018-03-06 20:02:21", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79362", "18", "2018-03-06 21:20:14", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("79363", "3", "2018-03-06 21:58:05", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79364", "9", "2018-03-06 21:58:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79365", "8", "2018-03-06 21:58:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79366", "10", "2018-03-06 21:58:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79367", "15", "2018-03-06 21:58:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79368", "3", "2018-03-06 22:34:49", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("79369", "9", "2018-03-06 22:40:01", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79370", "8", "2018-03-06 22:40:02", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79371", "10", "2018-03-06 22:40:03", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("79372", "15", "2018-03-06 22:40:08", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79373", "18", "2018-03-06 22:40:11", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79374", "18", "2018-03-06 23:20:33", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("79375", "3", "2018-03-06 23:32:32", "220.181.108.182", "34");
INSERT INTO `wp_gf_form_view` VALUES("79376", "9", "2018-03-06 23:56:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79377", "8", "2018-03-06 23:56:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79378", "10", "2018-03-06 23:56:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79379", "15", "2018-03-06 23:56:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79380", "6", "2018-03-06 23:58:01", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79381", "18", "2018-03-07 00:28:14", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79382", "3", "2018-03-07 00:37:49", "18.222.35.199", "2");
INSERT INTO `wp_gf_form_view` VALUES("79383", "14", "2018-03-07 01:00:02", "200.0.61.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("79384", "18", "2018-03-07 01:07:36", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79385", "3", "2018-03-07 01:16:27", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("79386", "6", "2018-03-07 01:54:50", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79387", "9", "2018-03-07 01:55:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79388", "8", "2018-03-07 01:55:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79389", "10", "2018-03-07 01:55:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79390", "15", "2018-03-07 01:55:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79391", "5", "2018-03-07 01:55:54", "77.75.79.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("79392", "3", "2018-03-07 02:21:32", "18.188.64.119", "2");
INSERT INTO `wp_gf_form_view` VALUES("79393", "18", "2018-03-07 03:13:01", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79394", "8", "2018-03-07 03:32:57", "139.162.246.24", "3");
INSERT INTO `wp_gf_form_view` VALUES("79395", "3", "2018-03-07 03:54:12", "96.50.18.131", "33");
INSERT INTO `wp_gf_form_view` VALUES("79396", "9", "2018-03-07 03:55:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79397", "10", "2018-03-07 03:55:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79398", "15", "2018-03-07 03:55:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79399", "3", "2018-03-07 04:23:12", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79400", "10", "2018-03-07 04:48:12", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79401", "8", "2018-03-07 04:50:12", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79402", "10", "2018-03-08 20:44:33", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79403", "3", "2018-03-08 20:44:48", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79404", "18", "2018-03-08 20:57:53", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79405", "3", "2018-03-08 21:03:51", "159.65.133.29", "34");
INSERT INTO `wp_gf_form_view` VALUES("79406", "14", "2018-03-08 21:04:49", "159.65.133.29", "2");
INSERT INTO `wp_gf_form_view` VALUES("79407", "18", "2018-03-08 21:17:17", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79408", "10", "2018-03-08 21:37:11", "199.59.150.181", "6");
INSERT INTO `wp_gf_form_view` VALUES("79409", "9", "2018-03-08 21:46:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79410", "8", "2018-03-08 21:46:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79411", "15", "2018-03-08 21:46:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79412", "3", "2018-03-08 22:02:23", "88.99.2.203", "13");
INSERT INTO `wp_gf_form_view` VALUES("79413", "14", "2018-03-08 22:50:37", "24.69.135.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("79414", "14", "2018-03-08 23:05:43", "24.108.25.92", "2");
INSERT INTO `wp_gf_form_view` VALUES("79415", "18", "2018-03-08 23:06:39", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79416", "10", "2018-03-08 23:19:33", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("79417", "3", "2018-03-08 23:19:51", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("79418", "9", "2018-03-08 23:31:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79419", "8", "2018-03-08 23:31:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79420", "15", "2018-03-08 23:31:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79421", "3", "2018-03-09 00:47:10", "54.36.148.120", "1");
INSERT INTO `wp_gf_form_view` VALUES("79422", "18", "2018-03-09 00:58:50", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79423", "3", "2018-03-09 01:22:52", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79424", "9", "2018-03-09 01:22:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79425", "8", "2018-03-09 01:22:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79426", "10", "2018-03-09 01:22:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79427", "15", "2018-03-09 01:22:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79428", "18", "2018-03-09 01:22:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79429", "3", "2018-03-09 02:37:24", "54.36.149.52", "2");
INSERT INTO `wp_gf_form_view` VALUES("79430", "18", "2018-03-09 03:13:36", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79431", "3", "2018-03-09 03:20:32", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("79432", "9", "2018-03-09 03:26:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79433", "8", "2018-03-09 03:26:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79434", "10", "2018-03-09 03:26:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79435", "15", "2018-03-09 03:26:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79436", "3", "2018-03-09 04:00:03", "66.249.79.137", "3");
INSERT INTO `wp_gf_form_view` VALUES("79437", "3", "2018-03-09 05:15:13", "66.249.79.133", "33");
INSERT INTO `wp_gf_form_view` VALUES("79438", "9", "2018-03-09 05:16:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79439", "8", "2018-03-09 05:16:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79440", "10", "2018-03-09 05:16:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79441", "15", "2018-03-09 05:16:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79442", "18", "2018-03-09 05:16:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79443", "3", "2018-03-09 06:06:17", "216.244.66.247", "5");
INSERT INTO `wp_gf_form_view` VALUES("79444", "10", "2018-03-09 06:45:38", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("79445", "3", "2018-03-09 07:03:35", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("79446", "18", "2018-03-09 07:10:18", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79447", "9", "2018-03-09 07:11:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79448", "8", "2018-03-09 07:11:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79449", "10", "2018-03-09 07:11:23", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79450", "15", "2018-03-09 07:11:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79451", "10", "2018-03-09 08:19:09", "54.36.149.37", "1");
INSERT INTO `wp_gf_form_view` VALUES("79452", "3", "2018-03-09 09:06:58", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79453", "9", "2018-03-09 09:06:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79454", "8", "2018-03-09 09:06:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79455", "10", "2018-03-09 09:07:00", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("79456", "15", "2018-03-09 09:07:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79457", "18", "2018-03-09 09:07:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79458", "3", "2018-03-09 10:56:33", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79459", "9", "2018-03-09 10:56:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79460", "8", "2018-03-09 10:56:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79461", "10", "2018-03-09 10:56:34", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79462", "15", "2018-03-09 10:56:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79463", "18", "2018-03-09 10:56:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79464", "3", "2018-03-09 11:18:29", "216.244.66.231", "2");
INSERT INTO `wp_gf_form_view` VALUES("79465", "18", "2018-03-09 11:26:08", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79466", "3", "2018-03-09 12:33:00", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("79467", "9", "2018-03-09 12:56:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79468", "8", "2018-03-09 12:56:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79469", "10", "2018-03-09 12:56:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79470", "15", "2018-03-09 12:56:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79471", "18", "2018-03-09 12:56:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79472", "3", "2018-03-09 14:19:14", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79473", "3", "2018-03-09 15:16:27", "52.37.180.245", "44");
INSERT INTO `wp_gf_form_view` VALUES("79474", "9", "2018-03-09 15:16:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79475", "8", "2018-03-09 15:16:28", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79476", "10", "2018-03-09 15:16:29", "52.37.180.245", "12");
INSERT INTO `wp_gf_form_view` VALUES("79477", "15", "2018-03-09 15:16:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79478", "18", "2018-03-09 15:16:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79479", "6", "2018-03-09 15:26:48", "207.46.13.92", "1");
INSERT INTO `wp_gf_form_view` VALUES("79480", "3", "2018-03-09 16:05:57", "151.80.41.169", "2");
INSERT INTO `wp_gf_form_view` VALUES("79481", "18", "2018-03-09 16:51:20", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79482", "3", "2018-03-09 17:11:33", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79483", "9", "2018-03-09 17:11:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79484", "8", "2018-03-09 17:11:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79485", "10", "2018-03-09 17:11:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79486", "15", "2018-03-09 17:11:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79487", "18", "2018-03-09 17:11:39", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79488", "14", "2018-03-09 17:39:49", "24.69.135.66", "1");
INSERT INTO `wp_gf_form_view` VALUES("79489", "3", "2018-03-09 18:01:23", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79490", "18", "2018-03-09 18:49:20", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79491", "18", "2018-03-09 19:11:33", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79492", "3", "2018-03-09 19:18:18", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79493", "9", "2018-03-09 19:18:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79494", "8", "2018-03-09 19:18:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79495", "10", "2018-03-09 19:18:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79496", "15", "2018-03-09 19:18:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79497", "14", "2018-03-09 19:57:33", "96.54.238.13", "1");
INSERT INTO `wp_gf_form_view` VALUES("79498", "18", "2018-03-09 20:21:20", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79499", "3", "2018-03-09 20:34:23", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("79500", "3", "2018-03-09 21:00:59", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("79501", "9", "2018-03-09 21:11:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79502", "8", "2018-03-09 21:11:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79503", "10", "2018-03-09 21:11:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79504", "15", "2018-03-09 21:11:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79505", "18", "2018-03-09 21:11:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79506", "14", "2018-03-09 21:51:17", "138.122.192.233", "1");
INSERT INTO `wp_gf_form_view` VALUES("79507", "10", "2018-03-09 22:38:41", "72.14.199.67", "1");
INSERT INTO `wp_gf_form_view` VALUES("79508", "3", "2018-03-09 22:47:27", "216.244.66.247", "11");
INSERT INTO `wp_gf_form_view` VALUES("79509", "14", "2018-03-09 22:50:05", "72.9.226.150", "1");
INSERT INTO `wp_gf_form_view` VALUES("79510", "3", "2018-03-09 23:07:13", "52.37.180.245", "37");
INSERT INTO `wp_gf_form_view` VALUES("79511", "9", "2018-03-09 23:07:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79512", "8", "2018-03-09 23:07:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79513", "10", "2018-03-09 23:07:15", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("79514", "15", "2018-03-09 23:07:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79515", "18", "2018-03-09 23:07:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79516", "6", "2018-03-09 23:41:41", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79517", "3", "2018-03-10 00:07:59", "216.244.66.247", "40");
INSERT INTO `wp_gf_form_view` VALUES("79518", "9", "2018-03-10 00:52:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79519", "8", "2018-03-10 00:52:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79520", "10", "2018-03-10 00:52:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79521", "15", "2018-03-10 00:52:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79522", "18", "2018-03-10 00:52:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79523", "3", "2018-03-10 01:00:44", "64.114.207.106", "8");
INSERT INTO `wp_gf_form_view` VALUES("79524", "8", "2018-03-10 01:06:08", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("79525", "3", "2018-03-10 02:08:39", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79526", "8", "2018-03-10 02:30:38", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79527", "3", "2018-03-10 03:06:34", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79528", "9", "2018-03-10 03:06:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79529", "8", "2018-03-10 03:06:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79530", "10", "2018-03-10 03:06:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79531", "15", "2018-03-10 03:06:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79532", "18", "2018-03-10 03:06:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79533", "3", "2018-03-10 04:10:32", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79534", "14", "2018-03-10 04:17:48", "200.0.61.49", "1");
INSERT INTO `wp_gf_form_view` VALUES("79535", "3", "2018-03-10 05:09:24", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79536", "9", "2018-03-10 05:09:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79537", "8", "2018-03-10 05:09:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79538", "10", "2018-03-10 05:09:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79539", "15", "2018-03-10 05:09:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79540", "18", "2018-03-10 05:09:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79541", "18", "2018-03-10 06:43:36", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79542", "3", "2018-03-10 06:48:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79543", "18", "2018-03-10 07:02:23", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("79544", "3", "2018-03-10 07:03:34", "216.244.66.247", "78");
INSERT INTO `wp_gf_form_view` VALUES("79545", "9", "2018-03-10 07:03:34", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79546", "8", "2018-03-10 07:03:35", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("79547", "10", "2018-03-10 07:03:35", "216.244.66.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("79548", "15", "2018-03-10 07:03:37", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79549", "14", "2018-03-10 07:53:17", "37.187.56.81", "1");
INSERT INTO `wp_gf_form_view` VALUES("79550", "3", "2018-03-10 09:02:34", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("79551", "9", "2018-03-10 09:07:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79552", "8", "2018-03-10 09:07:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79553", "10", "2018-03-10 09:07:54", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79554", "15", "2018-03-10 09:07:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79555", "18", "2018-03-10 09:08:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79556", "3", "2018-03-10 10:16:03", "216.244.66.247", "139");
INSERT INTO `wp_gf_form_view` VALUES("79557", "8", "2018-03-10 10:26:54", "185.138.241.45", "11");
INSERT INTO `wp_gf_form_view` VALUES("79558", "9", "2018-03-10 10:27:38", "185.138.241.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("79559", "10", "2018-03-10 10:27:39", "185.138.241.45", "20");
INSERT INTO `wp_gf_form_view` VALUES("79560", "15", "2018-03-10 10:27:41", "185.138.241.45", "4");
INSERT INTO `wp_gf_form_view` VALUES("79561", "18", "2018-03-10 10:27:43", "185.138.241.45", "7");
INSERT INTO `wp_gf_form_view` VALUES("79562", "3", "2018-03-10 11:09:39", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79563", "3", "2018-03-10 12:46:29", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79564", "9", "2018-03-10 12:46:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79565", "8", "2018-03-10 12:46:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79566", "10", "2018-03-10 12:46:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79567", "15", "2018-03-10 12:46:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79568", "18", "2018-03-10 12:46:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79569", "3", "2018-03-10 13:06:31", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79570", "10", "2018-03-10 13:19:46", "66.249.92.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("79571", "3", "2018-03-10 14:36:56", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79572", "9", "2018-03-10 14:36:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79573", "8", "2018-03-10 14:36:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79574", "10", "2018-03-10 14:36:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79575", "15", "2018-03-10 14:37:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79576", "18", "2018-03-10 14:37:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79577", "14", "2018-03-10 15:24:22", "54.36.148.158", "1");
INSERT INTO `wp_gf_form_view` VALUES("79578", "3", "2018-03-10 15:40:35", "54.36.148.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("79579", "10", "2018-03-10 15:40:59", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79580", "3", "2018-03-10 16:24:15", "220.181.108.180", "36");
INSERT INTO `wp_gf_form_view` VALUES("79581", "9", "2018-03-10 16:27:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79582", "8", "2018-03-10 16:27:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79583", "10", "2018-03-10 16:27:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79584", "15", "2018-03-10 16:27:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79585", "18", "2018-03-10 16:27:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79586", "18", "2018-03-10 17:16:12", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79587", "3", "2018-03-10 18:16:39", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("79588", "9", "2018-03-10 18:16:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79589", "8", "2018-03-10 18:16:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79590", "10", "2018-03-10 18:16:41", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79591", "15", "2018-03-10 18:16:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79592", "18", "2018-03-10 18:16:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79593", "18", "2018-03-10 19:33:12", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79594", "18", "2018-03-10 20:10:55", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("79595", "3", "2018-03-10 20:26:58", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("79596", "9", "2018-03-10 20:26:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79597", "8", "2018-03-10 20:26:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79598", "10", "2018-03-10 20:27:00", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79599", "15", "2018-03-10 20:27:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79600", "3", "2018-03-10 21:01:01", "72.143.225.150", "4");
INSERT INTO `wp_gf_form_view` VALUES("79601", "14", "2018-03-10 21:13:34", "24.108.14.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("79602", "18", "2018-03-10 21:37:08", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("79603", "3", "2018-03-10 22:16:52", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79604", "9", "2018-03-10 22:16:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79605", "8", "2018-03-10 22:16:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79606", "10", "2018-03-10 22:16:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79607", "15", "2018-03-10 22:16:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79608", "18", "2018-03-10 22:16:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79609", "3", "2018-03-11 00:05:11", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("79610", "9", "2018-03-11 00:06:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79611", "8", "2018-03-11 00:06:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79612", "10", "2018-03-11 00:06:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79613", "15", "2018-03-11 00:06:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79614", "18", "2018-03-11 00:06:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79615", "18", "2018-03-11 01:11:27", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79616", "10", "2018-03-11 01:52:57", "66.249.92.213", "1");
INSERT INTO `wp_gf_form_view` VALUES("79617", "3", "2018-03-11 02:02:30", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79618", "9", "2018-03-11 02:02:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79619", "8", "2018-03-11 02:02:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79620", "10", "2018-03-11 02:02:31", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79621", "15", "2018-03-11 02:02:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79622", "18", "2018-03-11 02:02:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79623", "3", "2018-03-11 03:07:02", "157.55.39.34", "33");
INSERT INTO `wp_gf_form_view` VALUES("79624", "18", "2018-03-11 03:45:49", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79625", "9", "2018-03-11 03:54:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79626", "8", "2018-03-11 03:54:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79627", "10", "2018-03-11 03:54:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79628", "15", "2018-03-11 03:54:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79629", "18", "2018-03-11 04:43:33", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79630", "8", "2018-03-11 05:26:53", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("79631", "3", "2018-03-11 05:27:09", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("79632", "9", "2018-03-11 05:47:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79633", "10", "2018-03-11 05:47:46", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79634", "15", "2018-03-11 05:47:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79635", "18", "2018-03-11 05:47:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79636", "3", "2018-03-11 06:02:33", "220.181.108.112", "1");
INSERT INTO `wp_gf_form_view` VALUES("79637", "18", "2018-03-11 06:21:56", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79638", "8", "2018-03-11 07:18:04", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("79639", "3", "2018-03-11 07:18:43", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("79640", "9", "2018-03-11 07:38:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79641", "10", "2018-03-11 07:38:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79642", "15", "2018-03-11 07:38:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79643", "18", "2018-03-11 07:38:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79644", "8", "2018-03-11 09:15:38", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("79645", "3", "2018-03-11 09:16:17", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("79646", "9", "2018-03-11 09:39:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79647", "10", "2018-03-11 09:39:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79648", "15", "2018-03-11 09:39:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79649", "18", "2018-03-11 09:39:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79650", "3", "2018-03-11 11:34:57", "52.37.180.245", "66");
INSERT INTO `wp_gf_form_view` VALUES("79651", "9", "2018-03-11 11:34:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79652", "8", "2018-03-11 11:34:59", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79653", "10", "2018-03-11 11:35:00", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("79654", "15", "2018-03-11 11:35:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79655", "18", "2018-03-11 11:35:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79656", "10", "2018-03-11 12:22:27", "54.36.149.54", "1");
INSERT INTO `wp_gf_form_view` VALUES("79657", "3", "2018-03-11 13:34:28", "52.37.180.245", "114");
INSERT INTO `wp_gf_form_view` VALUES("79658", "9", "2018-03-11 13:34:33", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79659", "8", "2018-03-11 13:34:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79660", "10", "2018-03-11 13:34:38", "52.37.180.245", "15");
INSERT INTO `wp_gf_form_view` VALUES("79661", "15", "2018-03-11 13:34:45", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79662", "18", "2018-03-11 13:34:46", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79663", "10", "2018-03-11 14:22:40", "66.249.89.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("79664", "18", "2018-03-11 14:26:13", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79665", "3", "2018-03-11 15:22:13", "77.75.77.54", "33");
INSERT INTO `wp_gf_form_view` VALUES("79666", "18", "2018-03-11 15:24:35", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79667", "9", "2018-03-11 15:27:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79668", "8", "2018-03-11 15:27:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79669", "10", "2018-03-11 15:27:58", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79670", "15", "2018-03-11 15:28:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79671", "9", "2018-03-11 16:40:12", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79672", "3", "2018-03-11 16:40:48", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79673", "3", "2018-03-11 17:13:39", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79674", "9", "2018-03-11 17:13:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79675", "8", "2018-03-11 17:13:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79676", "10", "2018-03-11 17:13:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79677", "15", "2018-03-11 17:13:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79678", "18", "2018-03-11 17:13:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79679", "10", "2018-03-11 18:52:25", "207.46.13.119", "13");
INSERT INTO `wp_gf_form_view` VALUES("79680", "3", "2018-03-11 18:52:27", "207.46.13.44", "47");
INSERT INTO `wp_gf_form_view` VALUES("79681", "8", "2018-03-11 18:52:37", "207.46.13.119", "4");
INSERT INTO `wp_gf_form_view` VALUES("79682", "6", "2018-03-11 18:56:20", "157.55.39.34", "1");
INSERT INTO `wp_gf_form_view` VALUES("79683", "9", "2018-03-11 18:58:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79684", "15", "2018-03-11 18:58:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79685", "18", "2018-03-11 18:58:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79686", "3", "2018-03-11 20:03:39", "207.81.253.38", "5");
INSERT INTO `wp_gf_form_view` VALUES("79687", "8", "2018-03-11 20:20:25", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79688", "18", "2018-03-11 20:20:56", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79689", "3", "2018-03-11 21:05:55", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79690", "9", "2018-03-11 21:05:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79691", "8", "2018-03-11 21:05:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79692", "10", "2018-03-11 21:05:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79693", "15", "2018-03-11 21:05:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79694", "18", "2018-03-11 21:06:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79695", "3", "2018-03-11 22:01:56", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("79696", "10", "2018-03-11 22:02:15", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("79697", "18", "2018-03-11 22:10:35", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79698", "9", "2018-03-11 22:57:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79699", "8", "2018-03-11 22:57:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79700", "15", "2018-03-11 22:57:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79701", "10", "2018-03-11 23:04:48", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79702", "3", "2018-03-11 23:05:07", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79703", "18", "2018-03-12 00:24:42", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79704", "3", "2018-03-12 00:36:18", "66.249.64.20", "41");
INSERT INTO `wp_gf_form_view` VALUES("79705", "9", "2018-03-12 00:53:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79706", "8", "2018-03-12 00:53:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79707", "10", "2018-03-12 00:53:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79708", "15", "2018-03-12 00:53:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79709", "3", "2018-03-12 01:11:34", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79710", "18", "2018-03-12 01:49:28", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79711", "3", "2018-03-12 02:24:53", "54.36.149.78", "33");
INSERT INTO `wp_gf_form_view` VALUES("79712", "9", "2018-03-12 02:48:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79713", "8", "2018-03-12 02:48:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79714", "10", "2018-03-12 02:48:01", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79715", "15", "2018-03-12 02:48:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79716", "18", "2018-03-12 02:48:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79717", "3", "2018-03-12 03:28:37", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79718", "18", "2018-03-12 03:50:27", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79719", "10", "2018-03-12 03:52:11", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("79720", "10", "2018-03-12 04:18:00", "207.46.13.175", "1");
INSERT INTO `wp_gf_form_view` VALUES("79721", "3", "2018-03-12 04:34:53", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79722", "3", "2018-03-12 05:03:20", "24.68.109.41", "34");
INSERT INTO `wp_gf_form_view` VALUES("79723", "9", "2018-03-12 05:13:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79724", "8", "2018-03-12 05:13:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79725", "10", "2018-03-12 05:13:43", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79726", "15", "2018-03-12 05:13:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79727", "18", "2018-03-12 05:13:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79728", "18", "2018-03-12 06:11:07", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79729", "3", "2018-03-12 06:12:38", "100.43.91.113", "3");
INSERT INTO `wp_gf_form_view` VALUES("79730", "3", "2018-03-12 07:09:53", "52.37.180.245", "65");
INSERT INTO `wp_gf_form_view` VALUES("79731", "9", "2018-03-12 07:09:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79732", "8", "2018-03-12 07:09:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79733", "10", "2018-03-12 07:09:55", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("79734", "15", "2018-03-12 07:09:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79735", "18", "2018-03-12 07:09:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79736", "3", "2018-03-12 09:01:12", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("79737", "9", "2018-03-12 09:01:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79738", "8", "2018-03-12 09:01:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79739", "10", "2018-03-12 09:02:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79740", "15", "2018-03-12 09:02:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79741", "18", "2018-03-12 09:02:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79742", "3", "2018-03-12 10:37:44", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("79743", "9", "2018-03-12 10:53:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79744", "8", "2018-03-12 10:53:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79745", "10", "2018-03-12 10:53:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79746", "15", "2018-03-12 10:53:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79747", "18", "2018-03-12 10:53:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79748", "3", "2018-03-12 11:14:36", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79749", "3", "2018-03-12 12:11:28", "66.249.79.135", "34");
INSERT INTO `wp_gf_form_view` VALUES("79750", "9", "2018-03-12 12:46:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79751", "8", "2018-03-12 12:46:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79752", "10", "2018-03-12 12:46:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79753", "15", "2018-03-12 12:46:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79754", "18", "2018-03-12 12:46:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79755", "3", "2018-03-12 13:45:58", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79756", "3", "2018-03-12 14:18:14", "216.244.66.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("79757", "9", "2018-03-12 14:34:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79758", "8", "2018-03-12 14:34:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79759", "10", "2018-03-12 14:34:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79760", "15", "2018-03-12 14:34:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79761", "18", "2018-03-12 14:34:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79762", "18", "2018-03-12 16:23:25", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("79763", "3", "2018-03-12 16:30:46", "52.37.180.245", "42");
INSERT INTO `wp_gf_form_view` VALUES("79764", "9", "2018-03-12 16:30:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79765", "8", "2018-03-12 16:30:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79766", "10", "2018-03-12 16:30:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79767", "15", "2018-03-12 16:30:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79768", "3", "2018-03-12 17:07:46", "70.67.254.99", "2");
INSERT INTO `wp_gf_form_view` VALUES("79769", "14", "2018-03-12 17:17:47", "193.200.76.203", "4");
INSERT INTO `wp_gf_form_view` VALUES("79770", "18", "2018-03-12 17:46:07", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79771", "10", "2018-03-12 17:53:19", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("79772", "10", "2018-03-12 18:08:46", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("79773", "3", "2018-03-12 18:09:14", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("79774", "9", "2018-03-12 18:38:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79775", "8", "2018-03-12 18:38:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79776", "15", "2018-03-12 18:38:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79777", "18", "2018-03-12 18:38:12", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79778", "3", "2018-03-12 19:01:56", "216.244.66.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("79779", "14", "2018-03-12 19:09:55", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("79780", "18", "2018-03-12 20:15:01", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79781", "3", "2018-03-12 20:54:16", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79782", "9", "2018-03-12 20:54:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79783", "8", "2018-03-12 20:54:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79784", "10", "2018-03-12 20:54:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79785", "15", "2018-03-12 20:54:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79786", "18", "2018-03-12 21:17:06", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79787", "3", "2018-03-12 21:35:20", "157.55.39.197", "3");
INSERT INTO `wp_gf_form_view` VALUES("79788", "3", "2018-03-12 22:24:35", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("79789", "6", "2018-03-12 22:24:55", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79790", "9", "2018-03-12 22:52:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79791", "8", "2018-03-12 22:52:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79792", "10", "2018-03-12 22:52:47", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79793", "15", "2018-03-12 22:52:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79794", "18", "2018-03-12 22:52:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79795", "3", "2018-03-12 23:18:04", "66.249.79.133", "1");
INSERT INTO `wp_gf_form_view` VALUES("79796", "18", "2018-03-12 23:26:01", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79797", "10", "2018-03-12 23:40:26", "24.108.14.81", "3");
INSERT INTO `wp_gf_form_view` VALUES("79798", "10", "2018-03-13 00:02:42", "194.187.170.116", "11");
INSERT INTO `wp_gf_form_view` VALUES("79799", "3", "2018-03-13 00:21:12", "46.4.91.109", "34");
INSERT INTO `wp_gf_form_view` VALUES("79800", "18", "2018-03-13 00:38:49", "194.187.170.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("79801", "9", "2018-03-13 00:39:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79802", "8", "2018-03-13 00:39:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79803", "15", "2018-03-13 00:39:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79804", "10", "2018-03-13 01:00:38", "209.52.88.191", "3");
INSERT INTO `wp_gf_form_view` VALUES("79805", "18", "2018-03-13 01:01:38", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79806", "3", "2018-03-13 01:23:14", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("79807", "8", "2018-03-13 01:31:00", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79808", "18", "2018-03-13 02:02:53", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79809", "3", "2018-03-13 02:27:49", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("79810", "9", "2018-03-13 02:46:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79811", "8", "2018-03-13 02:46:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79812", "10", "2018-03-13 02:46:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79813", "15", "2018-03-13 02:46:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79814", "14", "2018-03-13 02:56:35", "54.165.59.7", "1");
INSERT INTO `wp_gf_form_view` VALUES("79815", "3", "2018-03-13 03:17:59", "54.36.148.42", "4");
INSERT INTO `wp_gf_form_view` VALUES("79816", "18", "2018-03-13 03:39:02", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79817", "3", "2018-03-13 04:29:16", "180.76.15.151", "34");
INSERT INTO `wp_gf_form_view` VALUES("79818", "18", "2018-03-13 04:35:30", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79819", "6", "2018-03-13 04:36:52", "54.36.149.58", "1");
INSERT INTO `wp_gf_form_view` VALUES("79820", "9", "2018-03-13 04:38:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79821", "8", "2018-03-13 04:38:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79822", "10", "2018-03-13 04:38:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79823", "15", "2018-03-13 04:38:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79824", "3", "2018-03-13 05:02:41", "180.76.15.156", "3");
INSERT INTO `wp_gf_form_view` VALUES("79825", "3", "2018-03-13 06:25:47", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("79826", "9", "2018-03-13 06:29:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79827", "8", "2018-03-13 06:29:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79828", "10", "2018-03-13 06:29:45", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79829", "15", "2018-03-13 06:29:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79830", "18", "2018-03-13 06:29:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79831", "15", "2018-03-13 07:15:57", "180.76.15.9", "1");
INSERT INTO `wp_gf_form_view` VALUES("79832", "3", "2018-03-13 07:18:00", "220.181.108.100", "3");
INSERT INTO `wp_gf_form_view` VALUES("79833", "3", "2018-03-13 08:19:36", "52.37.180.245", "37");
INSERT INTO `wp_gf_form_view` VALUES("79834", "9", "2018-03-13 08:19:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79835", "8", "2018-03-13 08:19:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79836", "10", "2018-03-13 08:19:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79837", "15", "2018-03-13 08:19:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79838", "18", "2018-03-13 08:19:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79839", "18", "2018-03-13 09:03:05", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79840", "3", "2018-03-13 09:29:20", "180.76.15.31", "34");
INSERT INTO `wp_gf_form_view` VALUES("79841", "10", "2018-03-13 09:38:07", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("79842", "9", "2018-03-13 09:38:47", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79843", "8", "2018-03-13 09:38:47", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("79844", "15", "2018-03-13 09:38:50", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79845", "3", "2018-03-13 10:01:29", "216.244.66.195", "74");
INSERT INTO `wp_gf_form_view` VALUES("79846", "10", "2018-03-13 10:08:40", "54.36.149.49", "16");
INSERT INTO `wp_gf_form_view` VALUES("79847", "9", "2018-03-13 10:09:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79848", "8", "2018-03-13 10:09:03", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79849", "15", "2018-03-13 10:09:07", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79850", "18", "2018-03-13 10:09:09", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79851", "3", "2018-03-13 11:01:31", "185.138.241.45", "71");
INSERT INTO `wp_gf_form_view` VALUES("79852", "9", "2018-03-13 11:54:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79853", "8", "2018-03-13 11:54:57", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79854", "10", "2018-03-13 11:54:58", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("79855", "15", "2018-03-13 11:55:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79856", "18", "2018-03-13 11:55:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79857", "3", "2018-03-13 12:00:33", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("79858", "3", "2018-03-13 13:00:49", "216.244.66.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("79859", "9", "2018-03-13 13:46:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79860", "8", "2018-03-13 13:46:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79861", "10", "2018-03-13 13:46:03", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79862", "15", "2018-03-13 13:46:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79863", "18", "2018-03-13 13:46:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79864", "18", "2018-03-13 14:40:12", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79865", "18", "2018-03-13 15:03:35", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("79866", "3", "2018-03-13 15:21:44", "54.36.149.78", "33");
INSERT INTO `wp_gf_form_view` VALUES("79867", "9", "2018-03-13 15:44:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79868", "8", "2018-03-13 15:44:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79869", "10", "2018-03-13 15:44:33", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79870", "15", "2018-03-13 15:44:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79871", "3", "2018-03-13 16:20:19", "54.36.148.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("79872", "9", "2018-03-13 17:09:01", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("79873", "3", "2018-03-13 17:10:19", "216.244.66.195", "69");
INSERT INTO `wp_gf_form_view` VALUES("79874", "8", "2018-03-13 17:27:36", "64.180.23.149", "6");
INSERT INTO `wp_gf_form_view` VALUES("79875", "14", "2018-03-13 17:29:29", "64.251.78.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("79876", "10", "2018-03-13 17:30:06", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("79877", "15", "2018-03-13 17:30:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79878", "18", "2018-03-13 17:30:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79879", "10", "2018-03-13 18:09:34", "194.187.170.107", "3");
INSERT INTO `wp_gf_form_view` VALUES("79880", "3", "2018-03-13 18:20:25", "194.187.170.107", "12");
INSERT INTO `wp_gf_form_view` VALUES("79881", "3", "2018-03-13 19:12:06", "216.244.66.195", "39");
INSERT INTO `wp_gf_form_view` VALUES("79882", "14", "2018-03-13 19:18:00", "72.143.230.116", "2");
INSERT INTO `wp_gf_form_view` VALUES("79883", "8", "2018-03-13 19:18:13", "194.187.170.107", "3");
INSERT INTO `wp_gf_form_view` VALUES("79884", "9", "2018-03-13 19:29:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79885", "10", "2018-03-13 19:29:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79886", "15", "2018-03-13 19:29:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79887", "18", "2018-03-13 19:29:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79888", "3", "2018-03-13 20:01:36", "24.108.169.126", "2");
INSERT INTO `wp_gf_form_view` VALUES("79889", "3", "2018-03-13 21:00:45", "66.249.69.55", "33");
INSERT INTO `wp_gf_form_view` VALUES("79890", "9", "2018-03-13 21:36:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79891", "8", "2018-03-13 21:36:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79892", "10", "2018-03-13 21:36:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79893", "15", "2018-03-13 21:36:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79894", "18", "2018-03-13 21:36:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79895", "18", "2018-03-13 22:20:01", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79896", "3", "2018-03-13 22:40:50", "64.114.207.106", "2");
INSERT INTO `wp_gf_form_view` VALUES("79897", "18", "2018-03-13 23:03:52", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79898", "3", "2018-03-13 23:15:15", "70.67.61.20", "35");
INSERT INTO `wp_gf_form_view` VALUES("79899", "9", "2018-03-13 23:46:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79900", "8", "2018-03-13 23:46:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79901", "10", "2018-03-13 23:46:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79902", "15", "2018-03-13 23:46:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79903", "18", "2018-03-14 00:24:46", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79904", "18", "2018-03-14 01:07:12", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79905", "3", "2018-03-14 01:28:41", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("79906", "9", "2018-03-14 01:36:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79907", "8", "2018-03-14 01:36:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79908", "10", "2018-03-14 01:36:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79909", "15", "2018-03-14 01:36:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79910", "18", "2018-03-14 02:38:13", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79911", "3", "2018-03-14 03:33:30", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("79912", "9", "2018-03-14 03:33:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79913", "8", "2018-03-14 03:33:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79914", "10", "2018-03-14 03:33:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79915", "15", "2018-03-14 03:33:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79916", "18", "2018-03-14 03:33:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79917", "3", "2018-03-14 04:13:01", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("79918", "18", "2018-03-14 04:13:21", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79919", "15", "2018-03-14 04:52:29", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79920", "3", "2018-03-14 05:07:26", "54.36.149.91", "68");
INSERT INTO `wp_gf_form_view` VALUES("79921", "9", "2018-03-14 05:24:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79922", "8", "2018-03-14 05:24:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("79923", "10", "2018-03-14 05:24:53", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("79924", "15", "2018-03-14 05:24:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79925", "18", "2018-03-14 05:24:57", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79926", "8", "2018-03-14 07:11:07", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("79927", "3", "2018-03-14 07:11:41", "216.244.66.247", "44");
INSERT INTO `wp_gf_form_view` VALUES("79928", "9", "2018-03-14 07:14:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79929", "10", "2018-03-14 07:14:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79930", "15", "2018-03-14 07:14:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79931", "18", "2018-03-14 07:14:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79932", "3", "2018-03-14 08:01:05", "38.132.124.147", "5");
INSERT INTO `wp_gf_form_view` VALUES("79933", "18", "2018-03-14 08:11:56", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("79934", "14", "2018-03-14 08:26:11", "203.162.13.172", "6");
INSERT INTO `wp_gf_form_view` VALUES("79935", "3", "2018-03-14 09:05:40", "52.37.180.245", "41");
INSERT INTO `wp_gf_form_view` VALUES("79936", "9", "2018-03-14 09:05:41", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("79937", "8", "2018-03-14 09:05:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79938", "10", "2018-03-14 09:05:43", "52.37.180.245", "9");
INSERT INTO `wp_gf_form_view` VALUES("79939", "15", "2018-03-14 09:05:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79940", "18", "2018-03-14 09:05:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79941", "5", "2018-03-14 09:53:55", "157.55.39.88", "1");
INSERT INTO `wp_gf_form_view` VALUES("79942", "3", "2018-03-14 10:08:57", "180.76.15.6", "34");
INSERT INTO `wp_gf_form_view` VALUES("79943", "9", "2018-03-14 10:56:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79944", "8", "2018-03-14 10:56:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79945", "10", "2018-03-14 10:56:07", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79946", "15", "2018-03-14 10:56:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79947", "18", "2018-03-14 10:56:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79948", "10", "2018-03-14 11:02:48", "66.249.87.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("79949", "15", "2018-03-14 11:48:59", "180.76.15.14", "1");
INSERT INTO `wp_gf_form_view` VALUES("79950", "3", "2018-03-14 12:22:17", "180.76.15.31", "33");
INSERT INTO `wp_gf_form_view` VALUES("79951", "9", "2018-03-14 12:47:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79952", "8", "2018-03-14 12:47:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79953", "10", "2018-03-14 12:47:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79954", "15", "2018-03-14 12:48:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79955", "18", "2018-03-14 12:48:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79956", "10", "2018-03-14 14:08:58", "54.167.181.25", "6");
INSERT INTO `wp_gf_form_view` VALUES("79957", "3", "2018-03-14 14:43:55", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79958", "9", "2018-03-14 14:43:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79959", "8", "2018-03-14 14:43:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79960", "15", "2018-03-14 14:43:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79961", "18", "2018-03-14 14:44:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79962", "3", "2018-03-14 15:42:42", "194.187.170.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("79963", "18", "2018-03-14 16:04:57", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("79964", "14", "2018-03-14 16:27:33", "172.218.233.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("79965", "3", "2018-03-14 16:33:18", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79966", "9", "2018-03-14 16:33:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79967", "8", "2018-03-14 16:33:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79968", "10", "2018-03-14 16:33:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79969", "15", "2018-03-14 16:33:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79970", "3", "2018-03-14 17:49:41", "77.75.78.167", "1");
INSERT INTO `wp_gf_form_view` VALUES("79971", "11", "2018-03-14 18:02:27", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("79972", "14", "2018-03-14 18:08:45", "72.143.230.157", "1");
INSERT INTO `wp_gf_form_view` VALUES("79973", "3", "2018-03-14 18:20:43", "96.50.18.183", "36");
INSERT INTO `wp_gf_form_view` VALUES("79974", "9", "2018-03-14 18:25:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79975", "8", "2018-03-14 18:25:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79976", "10", "2018-03-14 18:25:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("79977", "15", "2018-03-14 18:25:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79978", "18", "2018-03-14 18:25:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79979", "8", "2018-03-14 19:02:12", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("79980", "3", "2018-03-14 19:02:29", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("79981", "9", "2018-03-14 19:03:07", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("79982", "18", "2018-03-14 19:04:31", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("79983", "14", "2018-03-14 20:15:12", "184.71.7.214", "1");
INSERT INTO `wp_gf_form_view` VALUES("79984", "3", "2018-03-14 20:17:49", "54.36.148.133", "43");
INSERT INTO `wp_gf_form_view` VALUES("79985", "18", "2018-03-14 20:17:51", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79986", "9", "2018-03-14 20:24:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79987", "8", "2018-03-14 20:24:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79988", "10", "2018-03-14 20:24:02", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79989", "15", "2018-03-14 20:24:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79990", "3", "2018-03-14 21:08:45", "180.76.15.34", "2");
INSERT INTO `wp_gf_form_view` VALUES("79991", "3", "2018-03-14 22:14:50", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("79992", "9", "2018-03-14 22:14:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79993", "8", "2018-03-14 22:14:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("79994", "10", "2018-03-14 22:14:52", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("79995", "15", "2018-03-14 22:14:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79996", "18", "2018-03-14 22:14:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("79997", "18", "2018-03-14 23:14:45", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("79998", "10", "2018-03-14 23:59:38", "72.14.199.69", "1");
INSERT INTO `wp_gf_form_view` VALUES("79999", "3", "2018-03-15 00:09:46", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80000", "9", "2018-03-15 00:09:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80001", "8", "2018-03-15 00:09:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80002", "10", "2018-03-15 00:09:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80003", "15", "2018-03-15 00:09:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80004", "18", "2018-03-15 00:09:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80005", "18", "2018-03-15 01:20:48", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80006", "10", "2018-03-15 01:30:51", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80007", "3", "2018-03-15 01:31:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80008", "3", "2018-03-15 02:01:49", "54.162.49.69", "33");
INSERT INTO `wp_gf_form_view` VALUES("80009", "9", "2018-03-15 02:28:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80010", "8", "2018-03-15 02:28:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80011", "10", "2018-03-15 02:28:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80012", "15", "2018-03-15 02:29:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80013", "18", "2018-03-15 02:29:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80014", "3", "2018-03-15 03:48:41", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80015", "3", "2018-03-15 04:19:53", "52.37.180.245", "64");
INSERT INTO `wp_gf_form_view` VALUES("80016", "9", "2018-03-15 04:19:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80017", "8", "2018-03-15 04:19:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80018", "10", "2018-03-15 04:19:54", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80019", "15", "2018-03-15 04:19:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80020", "18", "2018-03-15 04:19:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80021", "18", "2018-03-15 05:08:10", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("80022", "18", "2018-03-15 06:03:14", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80023", "3", "2018-03-15 06:04:41", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80024", "9", "2018-03-15 06:04:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80025", "8", "2018-03-15 06:04:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80026", "10", "2018-03-15 06:04:43", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80027", "15", "2018-03-15 06:04:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80028", "3", "2018-03-15 07:09:03", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("80029", "9", "2018-03-15 07:49:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80030", "8", "2018-03-15 07:49:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80031", "10", "2018-03-15 07:49:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80032", "15", "2018-03-15 07:49:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80033", "18", "2018-03-15 07:49:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80034", "3", "2018-03-15 09:33:48", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80035", "9", "2018-03-15 09:33:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80036", "8", "2018-03-15 09:33:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80037", "10", "2018-03-15 09:33:50", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80038", "15", "2018-03-15 09:33:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80039", "18", "2018-03-15 09:33:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80040", "3", "2018-03-15 10:16:52", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("80041", "5", "2018-03-15 10:21:28", "194.187.170.109", "1");
INSERT INTO `wp_gf_form_view` VALUES("80042", "3", "2018-03-15 11:01:16", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("80043", "9", "2018-03-15 11:25:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80044", "8", "2018-03-15 11:25:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80045", "10", "2018-03-15 11:25:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80046", "15", "2018-03-15 11:25:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80047", "18", "2018-03-15 11:25:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80048", "3", "2018-03-15 12:23:29", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("80049", "3", "2018-03-15 13:13:19", "5.9.98.130", "93");
INSERT INTO `wp_gf_form_view` VALUES("80050", "9", "2018-03-15 13:14:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80051", "8", "2018-03-15 13:14:17", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80052", "10", "2018-03-15 13:14:18", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("80053", "15", "2018-03-15 13:14:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80054", "18", "2018-03-15 13:14:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80055", "14", "2018-03-15 13:16:38", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("80056", "6", "2018-03-15 13:31:10", "5.9.98.130", "1");
INSERT INTO `wp_gf_form_view` VALUES("80057", "3", "2018-03-15 14:17:09", "5.9.98.130", "67");
INSERT INTO `wp_gf_form_view` VALUES("80058", "9", "2018-03-15 14:28:16", "216.244.66.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("80059", "10", "2018-03-15 14:34:40", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80060", "3", "2018-03-15 15:00:00", "5.9.98.130", "71");
INSERT INTO `wp_gf_form_view` VALUES("80061", "9", "2018-03-15 15:09:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80062", "8", "2018-03-15 15:09:49", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80063", "10", "2018-03-15 15:09:50", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80064", "15", "2018-03-15 15:09:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80065", "18", "2018-03-15 15:09:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80066", "3", "2018-03-15 16:01:32", "38.132.124.147", "136");
INSERT INTO `wp_gf_form_view` VALUES("80067", "18", "2018-03-15 16:09:10", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80068", "9", "2018-03-15 16:55:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80069", "8", "2018-03-15 16:55:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80070", "10", "2018-03-15 16:55:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80071", "15", "2018-03-15 16:55:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80072", "18", "2018-03-15 17:03:07", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80073", "3", "2018-03-15 17:36:57", "216.244.66.195", "10");
INSERT INTO `wp_gf_form_view` VALUES("80074", "18", "2018-03-15 18:18:22", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80075", "3", "2018-03-15 18:44:22", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80076", "9", "2018-03-15 18:44:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80077", "8", "2018-03-15 18:44:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80078", "10", "2018-03-15 18:44:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80079", "15", "2018-03-15 18:44:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80080", "18", "2018-03-15 19:10:29", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80081", "18", "2018-03-15 20:01:53", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80082", "3", "2018-03-15 20:05:13", "216.244.66.231", "221");
INSERT INTO `wp_gf_form_view` VALUES("80083", "9", "2018-03-15 20:44:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80084", "8", "2018-03-15 20:44:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80085", "10", "2018-03-15 20:44:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80086", "15", "2018-03-15 20:44:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80087", "3", "2018-03-15 21:00:04", "5.9.98.130", "6");
INSERT INTO `wp_gf_form_view` VALUES("80088", "14", "2018-03-15 21:50:21", "198.12.108.35", "2");
INSERT INTO `wp_gf_form_view` VALUES("80089", "18", "2018-03-15 21:51:58", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80090", "3", "2018-03-15 22:55:54", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80091", "9", "2018-03-15 22:55:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80092", "8", "2018-03-15 22:55:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80093", "10", "2018-03-15 22:55:56", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80094", "15", "2018-03-15 22:55:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80095", "18", "2018-03-15 22:56:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80096", "3", "2018-03-15 23:12:29", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80097", "18", "2018-03-16 00:12:23", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("80098", "3", "2018-03-16 00:23:32", "216.244.66.195", "67");
INSERT INTO `wp_gf_form_view` VALUES("80099", "9", "2018-03-16 00:44:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80100", "8", "2018-03-16 00:44:46", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80101", "10", "2018-03-16 00:44:47", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80102", "15", "2018-03-16 00:44:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80103", "3", "2018-03-16 01:49:11", "37.150.2.193", "1");
INSERT INTO `wp_gf_form_view` VALUES("80104", "10", "2018-03-16 01:53:31", "72.14.199.71", "1");
INSERT INTO `wp_gf_form_view` VALUES("80105", "3", "2018-03-16 02:18:44", "216.244.66.195", "65");
INSERT INTO `wp_gf_form_view` VALUES("80106", "9", "2018-03-16 02:40:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80107", "8", "2018-03-16 02:40:09", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80108", "10", "2018-03-16 02:40:10", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80109", "15", "2018-03-16 02:40:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80110", "18", "2018-03-16 02:40:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80111", "10", "2018-03-16 03:12:22", "199.16.157.182", "1");
INSERT INTO `wp_gf_form_view` VALUES("80112", "3", "2018-03-16 03:17:10", "216.244.66.247", "136");
INSERT INTO `wp_gf_form_view` VALUES("80113", "3", "2018-03-16 04:00:01", "5.9.98.130", "284");
INSERT INTO `wp_gf_form_view` VALUES("80114", "9", "2018-03-16 04:51:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80115", "8", "2018-03-16 04:51:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80116", "10", "2018-03-16 04:51:33", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80117", "15", "2018-03-16 04:51:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80118", "18", "2018-03-16 04:51:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80119", "18", "2018-03-16 05:25:10", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80120", "5", "2018-03-16 05:25:58", "54.36.149.102", "1");
INSERT INTO `wp_gf_form_view` VALUES("80121", "3", "2018-03-16 06:12:33", "180.76.15.19", "36");
INSERT INTO `wp_gf_form_view` VALUES("80122", "18", "2018-03-16 06:18:24", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("80123", "9", "2018-03-16 06:46:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80124", "8", "2018-03-16 06:46:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80125", "10", "2018-03-16 06:46:20", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80126", "15", "2018-03-16 06:46:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80127", "3", "2018-03-16 07:16:54", "54.36.148.217", "34");
INSERT INTO `wp_gf_form_view` VALUES("80128", "9", "2018-03-16 07:29:59", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80129", "8", "2018-03-16 07:30:00", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80130", "10", "2018-03-16 07:30:02", "216.244.66.247", "7");
INSERT INTO `wp_gf_form_view` VALUES("80131", "15", "2018-03-16 07:30:05", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80132", "18", "2018-03-16 07:30:07", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80133", "3", "2018-03-16 08:36:16", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80134", "9", "2018-03-16 08:36:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80135", "8", "2018-03-16 08:36:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80136", "10", "2018-03-16 08:36:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80137", "15", "2018-03-16 08:36:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80138", "18", "2018-03-16 08:36:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80139", "3", "2018-03-16 09:44:19", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80140", "3", "2018-03-16 10:20:20", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80141", "9", "2018-03-16 10:20:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80142", "8", "2018-03-16 10:20:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80143", "10", "2018-03-16 10:20:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80144", "15", "2018-03-16 10:20:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80145", "18", "2018-03-16 10:20:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80146", "3", "2018-03-16 12:05:26", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80147", "9", "2018-03-16 12:05:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80148", "8", "2018-03-16 12:05:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80149", "10", "2018-03-16 12:05:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80150", "15", "2018-03-16 12:05:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80151", "18", "2018-03-16 12:05:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80152", "10", "2018-03-16 13:04:46", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("80153", "3", "2018-03-16 13:05:38", "54.165.59.7", "35");
INSERT INTO `wp_gf_form_view` VALUES("80154", "9", "2018-03-16 13:55:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80155", "8", "2018-03-16 13:55:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80156", "15", "2018-03-16 13:55:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80157", "18", "2018-03-16 13:55:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80158", "10", "2018-03-16 14:15:02", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("80159", "9", "2018-03-16 14:31:13", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80160", "3", "2018-03-16 14:32:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80161", "3", "2018-03-16 15:23:55", "66.249.79.143", "35");
INSERT INTO `wp_gf_form_view` VALUES("80162", "18", "2018-03-16 15:27:17", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80163", "9", "2018-03-16 15:50:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80164", "8", "2018-03-16 15:50:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80165", "10", "2018-03-16 15:50:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80166", "15", "2018-03-16 15:50:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80167", "10", "2018-03-16 16:12:01", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80168", "3", "2018-03-16 16:12:31", "216.244.66.195", "76");
INSERT INTO `wp_gf_form_view` VALUES("80169", "3", "2018-03-16 17:00:04", "5.9.98.130", "577");
INSERT INTO `wp_gf_form_view` VALUES("80170", "9", "2018-03-16 17:36:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80171", "8", "2018-03-16 17:36:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80172", "10", "2018-03-16 17:36:05", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80173", "15", "2018-03-16 17:36:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80174", "18", "2018-03-16 17:36:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80175", "3", "2018-03-16 18:00:00", "5.9.98.130", "150");
INSERT INTO `wp_gf_form_view` VALUES("80176", "10", "2018-03-16 18:00:16", "209.52.88.86", "3");
INSERT INTO `wp_gf_form_view` VALUES("80177", "3", "2018-03-16 19:21:11", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("80178", "9", "2018-03-16 19:23:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80179", "8", "2018-03-16 19:23:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80180", "10", "2018-03-16 19:23:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80181", "15", "2018-03-16 19:24:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80182", "18", "2018-03-16 19:24:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80183", "3", "2018-03-16 20:04:23", "180.76.15.154", "3");
INSERT INTO `wp_gf_form_view` VALUES("80184", "3", "2018-03-16 21:10:44", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80185", "9", "2018-03-16 21:10:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80186", "8", "2018-03-16 21:10:47", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80187", "10", "2018-03-16 21:10:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80188", "15", "2018-03-16 21:10:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80189", "18", "2018-03-16 21:10:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80190", "3", "2018-03-16 22:22:18", "220.181.108.158", "34");
INSERT INTO `wp_gf_form_view` VALUES("80191", "10", "2018-03-16 22:50:07", "54.36.149.8", "6");
INSERT INTO `wp_gf_form_view` VALUES("80192", "9", "2018-03-16 22:58:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80193", "8", "2018-03-16 22:58:46", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80194", "15", "2018-03-16 22:58:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80195", "18", "2018-03-16 22:58:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80196", "3", "2018-03-16 23:04:20", "24.108.4.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("80197", "18", "2018-03-16 23:07:57", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80198", "3", "2018-03-17 00:40:36", "54.36.148.174", "65");
INSERT INTO `wp_gf_form_view` VALUES("80199", "9", "2018-03-17 00:49:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80200", "8", "2018-03-17 00:49:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80201", "10", "2018-03-17 00:49:54", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80202", "15", "2018-03-17 00:49:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80203", "18", "2018-03-17 00:50:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80204", "3", "2018-03-17 01:37:22", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80205", "11", "2018-03-17 01:37:43", "180.76.15.138", "1");
INSERT INTO `wp_gf_form_view` VALUES("80206", "3", "2018-03-17 02:03:11", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("80207", "15", "2018-03-17 02:04:12", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80208", "9", "2018-03-17 02:35:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80209", "8", "2018-03-17 02:35:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80210", "10", "2018-03-17 02:35:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80211", "18", "2018-03-17 02:35:51", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80212", "18", "2018-03-17 03:01:10", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80213", "10", "2018-03-17 03:06:27", "54.36.148.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("80214", "3", "2018-03-17 03:44:09", "54.36.149.59", "2");
INSERT INTO `wp_gf_form_view` VALUES("80215", "3", "2018-03-17 04:25:36", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("80216", "9", "2018-03-17 04:25:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80217", "8", "2018-03-17 04:25:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80218", "10", "2018-03-17 04:25:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80219", "15", "2018-03-17 04:25:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80220", "18", "2018-03-17 04:25:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80221", "18", "2018-03-17 05:01:35", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80222", "14", "2018-03-17 05:02:23", "23.250.23.104", "4");
INSERT INTO `wp_gf_form_view` VALUES("80223", "3", "2018-03-17 05:19:01", "40.77.167.167", "4");
INSERT INTO `wp_gf_form_view` VALUES("80224", "3", "2018-03-17 06:19:51", "52.37.180.245", "64");
INSERT INTO `wp_gf_form_view` VALUES("80225", "9", "2018-03-17 06:19:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80226", "8", "2018-03-17 06:19:54", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80227", "10", "2018-03-17 06:19:55", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80228", "15", "2018-03-17 06:19:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80229", "18", "2018-03-17 06:20:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80230", "10", "2018-03-17 07:33:57", "54.36.148.38", "1");
INSERT INTO `wp_gf_form_view` VALUES("80231", "8", "2018-03-17 07:43:56", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80232", "3", "2018-03-17 07:44:31", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80233", "3", "2018-03-17 08:05:48", "52.37.180.245", "41");
INSERT INTO `wp_gf_form_view` VALUES("80234", "9", "2018-03-17 08:05:50", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80235", "8", "2018-03-17 08:05:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80236", "10", "2018-03-17 08:05:52", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80237", "15", "2018-03-17 08:05:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80238", "18", "2018-03-17 08:05:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80239", "8", "2018-03-17 09:46:52", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80240", "3", "2018-03-17 09:47:32", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80241", "3", "2018-03-17 10:01:14", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80242", "9", "2018-03-17 10:01:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80243", "8", "2018-03-17 10:01:15", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("80244", "10", "2018-03-17 10:01:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80245", "15", "2018-03-17 10:01:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80246", "18", "2018-03-17 10:01:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80247", "3", "2018-03-17 12:00:58", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80248", "9", "2018-03-17 12:01:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80249", "8", "2018-03-17 12:01:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80250", "10", "2018-03-17 12:01:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80251", "15", "2018-03-17 12:01:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80252", "18", "2018-03-17 12:01:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80253", "10", "2018-03-17 13:06:07", "207.46.13.120", "11");
INSERT INTO `wp_gf_form_view` VALUES("80254", "3", "2018-03-17 13:10:21", "216.244.66.247", "308");
INSERT INTO `wp_gf_form_view` VALUES("80255", "9", "2018-03-17 13:10:22", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80256", "8", "2018-03-17 13:10:23", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("80257", "15", "2018-03-17 13:10:28", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80258", "18", "2018-03-17 13:10:31", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80259", "3", "2018-03-17 14:00:03", "5.9.98.130", "391");
INSERT INTO `wp_gf_form_view` VALUES("80260", "9", "2018-03-17 15:06:52", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80261", "3", "2018-03-17 15:07:07", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("80262", "18", "2018-03-17 15:33:40", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80263", "10", "2018-03-17 15:53:20", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("80264", "8", "2018-03-17 15:57:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80265", "15", "2018-03-17 15:57:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80266", "8", "2018-03-17 16:44:16", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80267", "3", "2018-03-17 16:44:29", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80268", "18", "2018-03-17 16:44:43", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80269", "10", "2018-03-17 16:59:47", "199.59.150.182", "2");
INSERT INTO `wp_gf_form_view` VALUES("80270", "3", "2018-03-17 17:36:33", "54.36.148.164", "33");
INSERT INTO `wp_gf_form_view` VALUES("80271", "9", "2018-03-17 17:42:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80272", "8", "2018-03-17 17:42:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80273", "10", "2018-03-17 17:42:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80274", "15", "2018-03-17 17:42:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80275", "18", "2018-03-17 17:42:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80276", "3", "2018-03-17 18:39:22", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("80277", "3", "2018-03-17 19:29:39", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80278", "9", "2018-03-17 19:29:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80279", "8", "2018-03-17 19:29:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80280", "10", "2018-03-17 19:29:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80281", "15", "2018-03-17 19:29:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80282", "18", "2018-03-17 19:29:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80283", "3", "2018-03-17 21:22:56", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("80284", "9", "2018-03-17 21:22:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80285", "8", "2018-03-17 21:22:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80286", "10", "2018-03-17 21:22:58", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80287", "15", "2018-03-17 21:23:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80288", "18", "2018-03-17 21:23:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80289", "18", "2018-03-17 22:12:45", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80290", "3", "2018-03-17 23:22:28", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80291", "9", "2018-03-17 23:22:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80292", "8", "2018-03-17 23:22:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80293", "10", "2018-03-17 23:22:30", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("80294", "15", "2018-03-17 23:22:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80295", "18", "2018-03-17 23:22:33", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("80296", "18", "2018-03-18 00:01:52", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80297", "3", "2018-03-18 00:09:17", "180.76.15.136", "6");
INSERT INTO `wp_gf_form_view` VALUES("80298", "10", "2018-03-18 00:30:26", "72.14.199.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("80299", "3", "2018-03-18 01:15:34", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80300", "9", "2018-03-18 01:15:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80301", "8", "2018-03-18 01:15:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80302", "10", "2018-03-18 01:15:36", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80303", "15", "2018-03-18 01:15:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80304", "18", "2018-03-18 01:15:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80305", "18", "2018-03-18 02:01:51", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80306", "18", "2018-03-18 03:00:54", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("80307", "3", "2018-03-18 03:09:13", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80308", "9", "2018-03-18 03:09:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80309", "8", "2018-03-18 03:09:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80310", "10", "2018-03-18 03:09:15", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80311", "15", "2018-03-18 03:09:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80312", "3", "2018-03-18 04:26:46", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80313", "3", "2018-03-18 05:04:07", "216.244.66.195", "36");
INSERT INTO `wp_gf_form_view` VALUES("80314", "9", "2018-03-18 05:08:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80315", "8", "2018-03-18 05:08:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80316", "10", "2018-03-18 05:08:31", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80317", "15", "2018-03-18 05:08:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80318", "18", "2018-03-18 05:08:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80319", "10", "2018-03-18 06:21:23", "54.36.148.41", "6");
INSERT INTO `wp_gf_form_view` VALUES("80320", "3", "2018-03-18 06:59:29", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80321", "9", "2018-03-18 06:59:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80322", "8", "2018-03-18 06:59:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80323", "15", "2018-03-18 06:59:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80324", "18", "2018-03-18 06:59:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80325", "18", "2018-03-18 07:05:05", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80326", "3", "2018-03-18 07:10:37", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("80327", "10", "2018-03-18 07:42:10", "54.36.149.91", "1");
INSERT INTO `wp_gf_form_view` VALUES("80328", "10", "2018-03-18 08:21:21", "199.16.157.182", "6");
INSERT INTO `wp_gf_form_view` VALUES("80329", "3", "2018-03-18 08:51:11", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80330", "9", "2018-03-18 08:51:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80331", "8", "2018-03-18 08:51:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80332", "15", "2018-03-18 08:51:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80333", "18", "2018-03-18 08:51:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80334", "3", "2018-03-18 10:33:57", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("80335", "9", "2018-03-18 10:35:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80336", "8", "2018-03-18 10:35:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80337", "10", "2018-03-18 10:35:51", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80338", "15", "2018-03-18 10:35:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80339", "18", "2018-03-18 10:35:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80340", "3", "2018-03-18 11:05:42", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80341", "3", "2018-03-18 12:30:29", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80342", "9", "2018-03-18 12:30:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80343", "8", "2018-03-18 12:30:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80344", "10", "2018-03-18 12:30:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80345", "15", "2018-03-18 12:30:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80346", "18", "2018-03-18 12:30:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80347", "3", "2018-03-18 13:09:20", "54.156.86.61", "16");
INSERT INTO `wp_gf_form_view` VALUES("80348", "10", "2018-03-18 14:19:02", "72.14.199.19", "11");
INSERT INTO `wp_gf_form_view` VALUES("80349", "3", "2018-03-18 14:19:55", "52.37.180.245", "65");
INSERT INTO `wp_gf_form_view` VALUES("80350", "9", "2018-03-18 14:19:56", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80351", "8", "2018-03-18 14:19:56", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80352", "15", "2018-03-18 14:19:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80353", "18", "2018-03-18 14:20:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80354", "3", "2018-03-18 15:05:42", "216.244.66.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("80355", "18", "2018-03-18 15:07:15", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80356", "14", "2018-03-18 16:05:24", "194.182.74.168", "1");
INSERT INTO `wp_gf_form_view` VALUES("80357", "3", "2018-03-18 16:05:27", "194.182.74.168", "34");
INSERT INTO `wp_gf_form_view` VALUES("80358", "9", "2018-03-18 16:29:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80359", "8", "2018-03-18 16:29:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80360", "10", "2018-03-18 16:29:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80361", "15", "2018-03-18 16:29:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80362", "18", "2018-03-18 16:29:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80363", "3", "2018-03-18 17:00:53", "50.65.90.85", "11");
INSERT INTO `wp_gf_form_view` VALUES("80364", "3", "2018-03-18 18:20:25", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80365", "9", "2018-03-18 18:20:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80366", "8", "2018-03-18 18:20:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80367", "10", "2018-03-18 18:20:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80368", "15", "2018-03-18 18:20:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80369", "18", "2018-03-18 18:20:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80370", "3", "2018-03-18 19:15:17", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("80371", "10", "2018-03-18 19:15:56", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80372", "3", "2018-03-18 20:32:36", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("80373", "6", "2018-03-18 20:55:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80374", "9", "2018-03-18 20:55:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80375", "8", "2018-03-18 20:55:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80376", "10", "2018-03-18 20:55:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80377", "15", "2018-03-18 20:55:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80378", "18", "2018-03-18 20:55:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80379", "3", "2018-03-18 21:17:28", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80380", "10", "2018-03-18 21:18:38", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80381", "14", "2018-03-18 21:45:55", "72.143.226.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("80382", "3", "2018-03-18 22:46:15", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80383", "9", "2018-03-18 22:46:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80384", "8", "2018-03-18 22:46:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80385", "10", "2018-03-18 22:46:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80386", "15", "2018-03-18 22:46:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80387", "18", "2018-03-18 22:46:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80388", "18", "2018-03-18 23:04:05", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80389", "3", "2018-03-18 23:30:01", "54.36.149.21", "2");
INSERT INTO `wp_gf_form_view` VALUES("80390", "8", "2018-03-18 23:54:11", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80391", "3", "2018-03-19 00:07:24", "184.66.33.103", "34");
INSERT INTO `wp_gf_form_view` VALUES("80392", "9", "2018-03-19 00:49:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80393", "8", "2018-03-19 00:49:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80394", "10", "2018-03-19 00:49:40", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80395", "15", "2018-03-19 00:49:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80396", "18", "2018-03-19 00:49:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80397", "3", "2018-03-19 01:41:05", "188.166.53.100", "1");
INSERT INTO `wp_gf_form_view` VALUES("80398", "3", "2018-03-19 02:32:28", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("80399", "9", "2018-03-19 02:40:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80400", "8", "2018-03-19 02:40:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80401", "10", "2018-03-19 02:40:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80402", "15", "2018-03-19 02:40:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80403", "18", "2018-03-19 02:40:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80404", "3", "2018-03-19 03:05:10", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80405", "18", "2018-03-19 04:03:06", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80406", "3", "2018-03-19 04:11:59", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("80407", "9", "2018-03-19 04:56:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80408", "8", "2018-03-19 04:56:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80409", "10", "2018-03-19 04:56:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80410", "15", "2018-03-19 04:56:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80411", "10", "2018-03-19 05:03:50", "66.249.90.191", "2");
INSERT INTO `wp_gf_form_view` VALUES("80412", "3", "2018-03-19 05:27:31", "204.79.180.7", "2");
INSERT INTO `wp_gf_form_view` VALUES("80413", "18", "2018-03-19 05:35:31", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80414", "3", "2018-03-19 06:11:08", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("80415", "9", "2018-03-19 06:47:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80416", "8", "2018-03-19 06:47:14", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80417", "10", "2018-03-19 06:47:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80418", "15", "2018-03-19 06:47:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80419", "18", "2018-03-19 06:47:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80420", "3", "2018-03-19 07:03:52", "5.9.98.130", "462");
INSERT INTO `wp_gf_form_view` VALUES("80421", "3", "2018-03-19 08:00:03", "5.9.98.130", "472");
INSERT INTO `wp_gf_form_view` VALUES("80422", "9", "2018-03-19 08:47:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80423", "8", "2018-03-19 08:47:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80424", "10", "2018-03-19 08:47:13", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80425", "15", "2018-03-19 08:47:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80426", "18", "2018-03-19 08:47:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80427", "3", "2018-03-19 09:13:06", "5.9.98.130", "130");
INSERT INTO `wp_gf_form_view` VALUES("80428", "10", "2018-03-19 10:35:27", "216.244.66.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("80429", "3", "2018-03-19 10:36:38", "52.37.180.245", "65");
INSERT INTO `wp_gf_form_view` VALUES("80430", "9", "2018-03-19 10:36:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80431", "8", "2018-03-19 10:36:41", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80432", "15", "2018-03-19 10:36:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80433", "18", "2018-03-19 10:36:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80434", "3", "2018-03-19 11:12:53", "198.251.72.110", "9");
INSERT INTO `wp_gf_form_view` VALUES("80435", "3", "2018-03-19 12:06:30", "157.55.39.173", "71");
INSERT INTO `wp_gf_form_view` VALUES("80436", "14", "2018-03-19 12:07:39", "185.93.3.123", "1");
INSERT INTO `wp_gf_form_view` VALUES("80437", "10", "2018-03-19 12:18:19", "216.244.66.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("80438", "9", "2018-03-19 12:21:08", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80439", "8", "2018-03-19 12:21:10", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("80440", "15", "2018-03-19 12:21:15", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80441", "18", "2018-03-19 12:21:20", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("80442", "3", "2018-03-19 13:49:21", "144.76.185.181", "1");
INSERT INTO `wp_gf_form_view` VALUES("80443", "18", "2018-03-19 14:09:43", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80444", "3", "2018-03-19 14:11:23", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80445", "9", "2018-03-19 14:11:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80446", "8", "2018-03-19 14:11:26", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80447", "10", "2018-03-19 14:11:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80448", "15", "2018-03-19 14:11:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80449", "18", "2018-03-19 15:21:52", "70.66.152.210", "2");
INSERT INTO `wp_gf_form_view` VALUES("80450", "3", "2018-03-19 15:53:35", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80451", "10", "2018-03-19 15:54:40", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80452", "3", "2018-03-19 16:11:28", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("80453", "9", "2018-03-19 16:16:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80454", "8", "2018-03-19 16:16:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80455", "10", "2018-03-19 16:16:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80456", "15", "2018-03-19 16:16:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80457", "18", "2018-03-19 16:16:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80458", "14", "2018-03-19 16:24:02", "209.52.88.221", "1");
INSERT INTO `wp_gf_form_view` VALUES("80459", "10", "2018-03-19 17:12:23", "66.249.90.161", "1");
INSERT INTO `wp_gf_form_view` VALUES("80460", "3", "2018-03-19 18:13:03", "52.37.180.245", "42");
INSERT INTO `wp_gf_form_view` VALUES("80461", "9", "2018-03-19 18:13:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80462", "8", "2018-03-19 18:13:10", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80463", "10", "2018-03-19 18:13:13", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80464", "15", "2018-03-19 18:13:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80465", "18", "2018-03-19 18:13:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80466", "3", "2018-03-19 19:12:08", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80467", "9", "2018-03-19 19:13:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80468", "3", "2018-03-19 20:11:50", "52.37.180.245", "43");
INSERT INTO `wp_gf_form_view` VALUES("80469", "9", "2018-03-19 20:11:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80470", "8", "2018-03-19 20:11:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80471", "10", "2018-03-19 20:11:52", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80472", "15", "2018-03-19 20:11:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80473", "18", "2018-03-19 20:11:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80474", "3", "2018-03-19 21:46:06", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80475", "10", "2018-03-19 21:57:05", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80476", "9", "2018-03-19 22:06:33", "54.36.148.48", "2");
INSERT INTO `wp_gf_form_view` VALUES("80477", "3", "2018-03-19 22:08:42", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80478", "8", "2018-03-19 22:08:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80479", "10", "2018-03-19 22:08:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80480", "15", "2018-03-19 22:08:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80481", "18", "2018-03-19 22:08:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80482", "18", "2018-03-19 23:45:10", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80483", "3", "2018-03-20 00:01:42", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("80484", "9", "2018-03-20 00:01:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80485", "8", "2018-03-20 00:01:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80486", "10", "2018-03-20 00:01:44", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80487", "15", "2018-03-20 00:01:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80488", "18", "2018-03-20 00:01:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80489", "18", "2018-03-20 01:39:54", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80490", "3", "2018-03-20 01:46:34", "24.108.4.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("80491", "3", "2018-03-20 02:02:27", "52.37.180.245", "37");
INSERT INTO `wp_gf_form_view` VALUES("80492", "9", "2018-03-20 02:02:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80493", "8", "2018-03-20 02:02:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80494", "10", "2018-03-20 02:02:28", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80495", "15", "2018-03-20 02:02:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80496", "18", "2018-03-20 02:02:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80497", "14", "2018-03-20 02:57:06", "96.50.28.252", "1");
INSERT INTO `wp_gf_form_view` VALUES("80498", "3", "2018-03-20 03:52:17", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80499", "9", "2018-03-20 03:52:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80500", "8", "2018-03-20 03:52:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80501", "10", "2018-03-20 03:52:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80502", "15", "2018-03-20 03:52:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80503", "18", "2018-03-20 03:52:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80504", "3", "2018-03-20 04:34:53", "107.190.27.32", "2");
INSERT INTO `wp_gf_form_view` VALUES("80505", "5", "2018-03-20 04:43:18", "100.43.91.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("80506", "18", "2018-03-20 04:52:23", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80507", "18", "2018-03-20 05:14:12", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80508", "10", "2018-03-20 05:16:55", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("80509", "3", "2018-03-20 05:38:26", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80510", "9", "2018-03-20 05:38:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80511", "8", "2018-03-20 05:38:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80512", "15", "2018-03-20 05:38:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80513", "18", "2018-03-20 06:09:11", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80514", "3", "2018-03-20 07:26:35", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80515", "9", "2018-03-20 07:26:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80516", "8", "2018-03-20 07:26:37", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80517", "10", "2018-03-20 07:26:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80518", "15", "2018-03-20 07:26:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80519", "18", "2018-03-20 07:26:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80520", "3", "2018-03-20 09:05:24", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("80521", "9", "2018-03-20 09:21:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80522", "8", "2018-03-20 09:21:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80523", "10", "2018-03-20 09:21:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80524", "15", "2018-03-20 09:21:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80525", "18", "2018-03-20 09:21:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80526", "3", "2018-03-20 11:05:32", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("80527", "9", "2018-03-20 11:22:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80528", "8", "2018-03-20 11:22:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80529", "10", "2018-03-20 11:22:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80530", "15", "2018-03-20 11:22:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80531", "18", "2018-03-20 11:22:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80532", "10", "2018-03-20 12:01:45", "54.36.148.90", "1");
INSERT INTO `wp_gf_form_view` VALUES("80533", "3", "2018-03-20 12:51:30", "178.137.95.244", "1");
INSERT INTO `wp_gf_form_view` VALUES("80534", "3", "2018-03-20 13:11:57", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80535", "9", "2018-03-20 13:11:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80536", "8", "2018-03-20 13:11:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80537", "10", "2018-03-20 13:11:59", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80538", "15", "2018-03-20 13:12:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80539", "18", "2018-03-20 13:12:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80540", "3", "2018-03-20 14:00:25", "216.232.148.41", "3");
INSERT INTO `wp_gf_form_view` VALUES("80541", "18", "2018-03-20 14:17:47", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("80542", "8", "2018-03-20 14:28:41", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80543", "3", "2018-03-20 15:17:22", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80544", "9", "2018-03-20 15:17:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80545", "8", "2018-03-20 15:17:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80546", "10", "2018-03-20 15:17:24", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80547", "15", "2018-03-20 15:17:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80548", "18", "2018-03-20 15:17:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80549", "3", "2018-03-20 16:16:01", "192.158.231.99", "8");
INSERT INTO `wp_gf_form_view` VALUES("80550", "3", "2018-03-20 17:17:05", "52.37.180.245", "64");
INSERT INTO `wp_gf_form_view` VALUES("80551", "9", "2018-03-20 17:17:06", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80552", "8", "2018-03-20 17:17:07", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80553", "10", "2018-03-20 17:17:07", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80554", "15", "2018-03-20 17:17:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80555", "18", "2018-03-20 17:17:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80556", "3", "2018-03-20 18:30:32", "24.69.149.40", "3");
INSERT INTO `wp_gf_form_view` VALUES("80557", "3", "2018-03-20 19:06:24", "24.69.155.121", "35");
INSERT INTO `wp_gf_form_view` VALUES("80558", "9", "2018-03-20 19:08:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80559", "8", "2018-03-20 19:08:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80560", "10", "2018-03-20 19:08:43", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80561", "15", "2018-03-20 19:08:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80562", "18", "2018-03-20 19:08:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80563", "3", "2018-03-20 21:04:52", "52.37.180.245", "65");
INSERT INTO `wp_gf_form_view` VALUES("80564", "9", "2018-03-20 21:04:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80565", "8", "2018-03-20 21:04:53", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80566", "10", "2018-03-20 21:04:53", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80567", "15", "2018-03-20 21:04:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80568", "18", "2018-03-20 21:04:57", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("80569", "18", "2018-03-20 22:35:41", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80570", "18", "2018-03-20 23:01:27", "184.66.27.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("80571", "3", "2018-03-20 23:18:01", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80572", "9", "2018-03-20 23:18:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80573", "8", "2018-03-20 23:18:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80574", "10", "2018-03-20 23:18:03", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80575", "15", "2018-03-20 23:18:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80576", "14", "2018-03-21 00:02:17", "69.58.178.57", "1");
INSERT INTO `wp_gf_form_view` VALUES("80577", "3", "2018-03-21 00:31:28", "157.55.39.73", "9");
INSERT INTO `wp_gf_form_view` VALUES("80578", "10", "2018-03-21 00:33:21", "157.55.39.234", "4");
INSERT INTO `wp_gf_form_view` VALUES("80579", "9", "2018-03-21 00:34:16", "157.55.39.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("80580", "8", "2018-03-21 00:34:40", "40.77.167.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("80581", "18", "2018-03-21 01:08:02", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80582", "3", "2018-03-21 01:13:38", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80583", "9", "2018-03-21 01:13:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80584", "8", "2018-03-21 01:13:39", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80585", "10", "2018-03-21 01:13:40", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80586", "15", "2018-03-21 01:13:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80587", "14", "2018-03-21 01:38:47", "24.65.142.192", "1");
INSERT INTO `wp_gf_form_view` VALUES("80588", "3", "2018-03-21 02:19:26", "144.140.233.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("80589", "18", "2018-03-21 02:53:55", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80590", "3", "2018-03-21 03:03:12", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80591", "9", "2018-03-21 03:03:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80592", "8", "2018-03-21 03:03:13", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80593", "10", "2018-03-21 03:03:14", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80594", "15", "2018-03-21 03:03:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80595", "18", "2018-03-21 03:03:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80596", "18", "2018-03-21 04:01:24", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80597", "9", "2018-03-21 04:05:24", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80598", "3", "2018-03-21 04:05:45", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("80599", "8", "2018-03-21 04:52:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80600", "10", "2018-03-21 04:52:39", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80601", "15", "2018-03-21 04:52:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80602", "3", "2018-03-21 05:11:12", "180.76.15.32", "1");
INSERT INTO `wp_gf_form_view` VALUES("80603", "18", "2018-03-21 05:32:30", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80604", "14", "2018-03-21 06:40:22", "70.67.56.246", "1");
INSERT INTO `wp_gf_form_view` VALUES("80605", "3", "2018-03-21 06:43:11", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80606", "9", "2018-03-21 06:43:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80607", "8", "2018-03-21 06:43:12", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80608", "10", "2018-03-21 06:43:12", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80609", "15", "2018-03-21 06:43:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80610", "18", "2018-03-21 06:43:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80611", "3", "2018-03-21 07:21:46", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80612", "3", "2018-03-21 08:04:09", "216.244.66.247", "37");
INSERT INTO `wp_gf_form_view` VALUES("80613", "9", "2018-03-21 08:36:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80614", "8", "2018-03-21 08:36:44", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80615", "10", "2018-03-21 08:36:45", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80616", "15", "2018-03-21 08:36:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80617", "18", "2018-03-21 08:36:49", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80618", "3", "2018-03-21 09:38:19", "40.77.167.171", "1");
INSERT INTO `wp_gf_form_view` VALUES("80619", "3", "2018-03-21 10:27:48", "157.55.39.218", "57");
INSERT INTO `wp_gf_form_view` VALUES("80620", "9", "2018-03-21 10:31:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80621", "8", "2018-03-21 10:31:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80622", "10", "2018-03-21 10:31:43", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("80623", "15", "2018-03-21 10:31:45", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80624", "18", "2018-03-21 10:31:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80625", "14", "2018-03-21 10:47:42", "159.65.253.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("80626", "6", "2018-03-21 10:53:04", "159.65.253.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("80627", "3", "2018-03-21 11:00:31", "159.65.253.98", "109");
INSERT INTO `wp_gf_form_view` VALUES("80628", "10", "2018-03-21 11:02:28", "159.65.253.98", "4");
INSERT INTO `wp_gf_form_view` VALUES("80629", "15", "2018-03-21 11:05:36", "159.65.253.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("80630", "8", "2018-03-21 11:30:10", "159.65.253.98", "2");
INSERT INTO `wp_gf_form_view` VALUES("80631", "18", "2018-03-21 11:30:30", "159.65.253.98", "1");
INSERT INTO `wp_gf_form_view` VALUES("80632", "3", "2018-03-21 12:00:57", "159.65.253.98", "53");
INSERT INTO `wp_gf_form_view` VALUES("80633", "9", "2018-03-21 12:31:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80634", "8", "2018-03-21 12:31:41", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80635", "10", "2018-03-21 12:31:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80636", "15", "2018-03-21 12:31:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80637", "18", "2018-03-21 12:31:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80638", "3", "2018-03-21 13:35:31", "192.3.191.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80639", "3", "2018-03-21 14:11:02", "216.244.66.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("80640", "18", "2018-03-21 14:22:10", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80641", "9", "2018-03-21 14:23:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80642", "8", "2018-03-21 14:23:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80643", "10", "2018-03-21 14:23:35", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80644", "15", "2018-03-21 14:23:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80645", "3", "2018-03-21 15:15:33", "216.244.66.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("80646", "3", "2018-03-21 16:09:03", "24.69.139.130", "38");
INSERT INTO `wp_gf_form_view` VALUES("80647", "9", "2018-03-21 16:23:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80648", "8", "2018-03-21 16:23:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80649", "10", "2018-03-21 16:23:35", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80650", "15", "2018-03-21 16:23:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80651", "18", "2018-03-21 16:23:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80652", "3", "2018-03-21 17:05:10", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("80653", "3", "2018-03-21 18:06:48", "154.20.34.204", "37");
INSERT INTO `wp_gf_form_view` VALUES("80654", "9", "2018-03-21 18:22:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80655", "8", "2018-03-21 18:22:27", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80656", "10", "2018-03-21 18:22:27", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80657", "15", "2018-03-21 18:22:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80658", "18", "2018-03-21 18:22:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80659", "3", "2018-03-21 19:02:35", "24.68.109.13", "6");
INSERT INTO `wp_gf_form_view` VALUES("80660", "3", "2018-03-21 20:22:27", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80661", "9", "2018-03-21 20:22:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80662", "8", "2018-03-21 20:22:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80663", "10", "2018-03-21 20:22:29", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80664", "15", "2018-03-21 20:22:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80665", "18", "2018-03-21 20:22:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80666", "3", "2018-03-21 21:37:53", "194.187.170.125", "1");
INSERT INTO `wp_gf_form_view` VALUES("80667", "3", "2018-03-21 22:12:23", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80668", "9", "2018-03-21 22:12:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80669", "8", "2018-03-21 22:12:24", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("80670", "10", "2018-03-21 22:12:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80671", "15", "2018-03-21 22:12:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80672", "18", "2018-03-21 22:12:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80673", "18", "2018-03-21 23:18:34", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80674", "3", "2018-03-21 23:23:09", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80675", "3", "2018-03-22 00:07:19", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80676", "9", "2018-03-22 00:07:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80677", "8", "2018-03-22 00:07:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80678", "10", "2018-03-22 00:07:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80679", "15", "2018-03-22 00:07:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80680", "18", "2018-03-22 00:07:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80681", "18", "2018-03-22 02:06:30", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("80682", "3", "2018-03-22 02:11:58", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("80683", "9", "2018-03-22 02:11:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80684", "8", "2018-03-22 02:11:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80685", "10", "2018-03-22 02:12:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80686", "15", "2018-03-22 02:12:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80687", "3", "2018-03-22 03:20:15", "24.69.8.243", "3");
INSERT INTO `wp_gf_form_view` VALUES("80688", "3", "2018-03-22 04:02:35", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80689", "9", "2018-03-22 04:02:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80690", "8", "2018-03-22 04:02:36", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80691", "10", "2018-03-22 04:02:37", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80692", "15", "2018-03-22 04:02:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80693", "18", "2018-03-22 04:02:41", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("80694", "18", "2018-03-22 05:00:06", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80695", "3", "2018-03-22 05:17:40", "24.108.29.221", "34");
INSERT INTO `wp_gf_form_view` VALUES("80696", "9", "2018-03-22 05:57:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80697", "8", "2018-03-22 05:57:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80698", "10", "2018-03-22 05:57:42", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80699", "15", "2018-03-22 05:57:44", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80700", "18", "2018-03-22 06:41:42", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80701", "10", "2018-03-22 07:36:12", "40.77.167.17", "1");
INSERT INTO `wp_gf_form_view` VALUES("80702", "14", "2018-03-22 07:40:23", "75.156.35.8", "1");
INSERT INTO `wp_gf_form_view` VALUES("80703", "3", "2018-03-22 07:44:38", "37.57.218.243", "1");
INSERT INTO `wp_gf_form_view` VALUES("80704", "3", "2018-03-22 08:12:59", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80705", "9", "2018-03-22 08:12:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80706", "8", "2018-03-22 08:13:00", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80707", "10", "2018-03-22 08:13:00", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80708", "15", "2018-03-22 08:13:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80709", "18", "2018-03-22 08:13:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80710", "3", "2018-03-22 09:30:19", "198.251.72.110", "8");
INSERT INTO `wp_gf_form_view` VALUES("80711", "10", "2018-03-22 09:38:41", "54.36.148.86", "1");
INSERT INTO `wp_gf_form_view` VALUES("80712", "3", "2018-03-22 10:12:07", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80713", "9", "2018-03-22 10:12:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80714", "8", "2018-03-22 10:12:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80715", "10", "2018-03-22 10:12:10", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80716", "15", "2018-03-22 10:12:12", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80717", "18", "2018-03-22 10:12:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80718", "3", "2018-03-22 11:33:02", "66.249.79.133", "33");
INSERT INTO `wp_gf_form_view` VALUES("80719", "10", "2018-03-22 11:52:29", "72.14.199.69", "6");
INSERT INTO `wp_gf_form_view` VALUES("80720", "9", "2018-03-22 11:58:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80721", "8", "2018-03-22 11:58:49", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80722", "15", "2018-03-22 11:58:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80723", "18", "2018-03-22 11:58:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80724", "14", "2018-03-22 13:02:28", "62.201.225.42", "1");
INSERT INTO `wp_gf_form_view` VALUES("80725", "3", "2018-03-22 13:59:30", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80726", "9", "2018-03-22 13:59:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80727", "8", "2018-03-22 13:59:31", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80728", "10", "2018-03-22 13:59:32", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80729", "15", "2018-03-22 13:59:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80730", "18", "2018-03-22 13:59:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80731", "18", "2018-03-22 14:30:16", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("80732", "14", "2018-03-22 14:39:52", "24.108.126.185", "2");
INSERT INTO `wp_gf_form_view` VALUES("80733", "3", "2018-03-22 14:45:55", "154.20.34.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("80734", "3", "2018-03-22 15:59:17", "176.115.96.204", "1");
INSERT INTO `wp_gf_form_view` VALUES("80735", "3", "2018-03-22 16:08:22", "52.37.180.245", "36");
INSERT INTO `wp_gf_form_view` VALUES("80736", "9", "2018-03-22 16:08:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80737", "8", "2018-03-22 16:08:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80738", "10", "2018-03-22 16:08:23", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("80739", "15", "2018-03-22 16:08:25", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80740", "18", "2018-03-22 16:08:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80741", "10", "2018-03-22 17:02:37", "194.187.170.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("80742", "3", "2018-03-22 17:04:52", "194.187.170.122", "7");
INSERT INTO `wp_gf_form_view` VALUES("80743", "10", "2018-03-22 18:05:02", "194.187.170.122", "6");
INSERT INTO `wp_gf_form_view` VALUES("80744", "3", "2018-03-22 18:11:51", "52.37.180.245", "46");
INSERT INTO `wp_gf_form_view` VALUES("80745", "9", "2018-03-22 18:11:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80746", "8", "2018-03-22 18:11:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80747", "15", "2018-03-22 18:11:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80748", "18", "2018-03-22 18:11:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80749", "3", "2018-03-22 19:04:30", "180.76.15.25", "4");
INSERT INTO `wp_gf_form_view` VALUES("80750", "18", "2018-03-22 19:09:30", "194.187.170.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("80751", "10", "2018-03-22 19:51:48", "194.187.170.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("80752", "3", "2018-03-22 20:04:00", "139.162.246.24", "45");
INSERT INTO `wp_gf_form_view` VALUES("80753", "9", "2018-03-22 20:04:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80754", "8", "2018-03-22 20:04:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80755", "10", "2018-03-22 20:04:22", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80756", "15", "2018-03-22 20:04:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80757", "18", "2018-03-22 20:04:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80758", "14", "2018-03-22 20:18:17", "23.94.108.101", "4");
INSERT INTO `wp_gf_form_view` VALUES("80759", "18", "2018-03-22 21:48:11", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80760", "3", "2018-03-22 21:50:13", "194.187.170.122", "66");
INSERT INTO `wp_gf_form_view` VALUES("80761", "9", "2018-03-22 21:53:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80762", "8", "2018-03-22 21:53:59", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80763", "10", "2018-03-22 21:54:00", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("80764", "15", "2018-03-22 21:54:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80765", "3", "2018-03-22 22:01:30", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80766", "10", "2018-03-22 22:01:46", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80767", "18", "2018-03-22 22:42:06", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80768", "3", "2018-03-22 23:17:11", "216.244.66.195", "46");
INSERT INTO `wp_gf_form_view` VALUES("80769", "10", "2018-03-22 23:20:50", "207.46.13.143", "13");
INSERT INTO `wp_gf_form_view` VALUES("80770", "9", "2018-03-22 23:21:27", "207.46.13.143", "2");
INSERT INTO `wp_gf_form_view` VALUES("80771", "8", "2018-03-22 23:23:58", "207.46.13.8", "3");
INSERT INTO `wp_gf_form_view` VALUES("80772", "18", "2018-03-22 23:48:19", "194.187.170.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("80773", "15", "2018-03-22 23:51:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80774", "3", "2018-03-23 00:03:42", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80775", "3", "2018-03-23 01:01:35", "216.244.66.247", "35");
INSERT INTO `wp_gf_form_view` VALUES("80776", "9", "2018-03-23 01:46:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80777", "8", "2018-03-23 01:46:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80778", "10", "2018-03-23 01:46:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80779", "15", "2018-03-23 01:46:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80780", "18", "2018-03-23 01:46:25", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80781", "18", "2018-03-23 02:38:04", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80782", "3", "2018-03-23 03:03:06", "194.187.170.122", "39");
INSERT INTO `wp_gf_form_view` VALUES("80783", "10", "2018-03-23 03:03:13", "194.187.170.122", "8");
INSERT INTO `wp_gf_form_view` VALUES("80784", "18", "2018-03-23 03:35:33", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80785", "9", "2018-03-23 03:39:01", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80786", "8", "2018-03-23 03:39:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80787", "15", "2018-03-23 03:39:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80788", "12", "2018-03-23 03:40:46", "194.187.170.122", "1");
INSERT INTO `wp_gf_form_view` VALUES("80789", "3", "2018-03-23 04:14:32", "24.68.101.198", "9");
INSERT INTO `wp_gf_form_view` VALUES("80790", "10", "2018-03-23 04:58:37", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80791", "3", "2018-03-23 05:00:55", "81.209.177.189", "386");
INSERT INTO `wp_gf_form_view` VALUES("80792", "18", "2018-03-23 05:01:02", "184.66.27.189", "19");
INSERT INTO `wp_gf_form_view` VALUES("80793", "14", "2018-03-23 05:01:55", "81.209.177.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("80794", "8", "2018-03-23 05:14:25", "81.209.177.189", "22");
INSERT INTO `wp_gf_form_view` VALUES("80795", "10", "2018-03-23 05:15:28", "81.209.177.189", "92");
INSERT INTO `wp_gf_form_view` VALUES("80796", "9", "2018-03-23 05:16:25", "81.209.177.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("80797", "15", "2018-03-23 05:16:28", "81.209.177.189", "17");
INSERT INTO `wp_gf_form_view` VALUES("80798", "8", "2018-03-23 06:00:08", "216.244.66.247", "13");
INSERT INTO `wp_gf_form_view` VALUES("80799", "3", "2018-03-23 06:00:13", "216.244.66.247", "84");
INSERT INTO `wp_gf_form_view` VALUES("80800", "10", "2018-03-23 06:04:09", "81.209.177.189", "5");
INSERT INTO `wp_gf_form_view` VALUES("80801", "15", "2018-03-23 06:09:30", "81.209.177.136", "4");
INSERT INTO `wp_gf_form_view` VALUES("80802", "9", "2018-03-23 06:09:53", "81.209.177.189", "7");
INSERT INTO `wp_gf_form_view` VALUES("80803", "6", "2018-03-23 06:33:06", "81.209.177.136", "1");
INSERT INTO `wp_gf_form_view` VALUES("80804", "3", "2018-03-23 07:12:27", "216.244.66.231", "33");
INSERT INTO `wp_gf_form_view` VALUES("80805", "9", "2018-03-23 07:33:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80806", "8", "2018-03-23 07:33:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80807", "10", "2018-03-23 07:33:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80808", "15", "2018-03-23 07:33:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80809", "18", "2018-03-23 07:33:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80810", "14", "2018-03-23 07:35:02", "207.46.13.95", "1");
INSERT INTO `wp_gf_form_view` VALUES("80811", "3", "2018-03-23 08:12:08", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80812", "10", "2018-03-23 08:12:20", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80813", "9", "2018-03-23 08:36:39", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80814", "3", "2018-03-23 09:06:26", "216.244.66.247", "64");
INSERT INTO `wp_gf_form_view` VALUES("80815", "9", "2018-03-23 09:06:26", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80816", "8", "2018-03-23 09:06:27", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("80817", "10", "2018-03-23 09:06:27", "216.244.66.247", "10");
INSERT INTO `wp_gf_form_view` VALUES("80818", "15", "2018-03-23 09:06:29", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80819", "18", "2018-03-23 09:06:32", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80820", "14", "2018-03-23 10:16:26", "203.162.13.172", "4");
INSERT INTO `wp_gf_form_view` VALUES("80821", "18", "2018-03-23 10:42:07", "52.91.123.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("80822", "8", "2018-03-23 10:56:40", "52.91.123.0", "1");
INSERT INTO `wp_gf_form_view` VALUES("80823", "3", "2018-03-23 11:10:04", "52.37.180.245", "64");
INSERT INTO `wp_gf_form_view` VALUES("80824", "9", "2018-03-23 11:10:04", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80825", "8", "2018-03-23 11:10:05", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80826", "10", "2018-03-23 11:10:06", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80827", "15", "2018-03-23 11:10:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80828", "18", "2018-03-23 11:10:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80829", "10", "2018-03-23 12:35:48", "54.36.149.32", "6");
INSERT INTO `wp_gf_form_view` VALUES("80830", "3", "2018-03-23 12:56:59", "24.68.101.198", "33");
INSERT INTO `wp_gf_form_view` VALUES("80831", "9", "2018-03-23 12:58:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80832", "8", "2018-03-23 12:58:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80833", "15", "2018-03-23 12:58:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80834", "18", "2018-03-23 12:59:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80835", "3", "2018-03-23 13:19:23", "24.68.101.198", "1");
INSERT INTO `wp_gf_form_view` VALUES("80836", "18", "2018-03-23 13:43:17", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80837", "18", "2018-03-23 14:12:20", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("80838", "3", "2018-03-23 14:48:52", "24.68.101.198", "35");
INSERT INTO `wp_gf_form_view` VALUES("80839", "9", "2018-03-23 14:54:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80840", "8", "2018-03-23 14:54:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80841", "10", "2018-03-23 14:54:21", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80842", "15", "2018-03-23 14:54:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80843", "3", "2018-03-23 15:13:31", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("80844", "10", "2018-03-23 15:14:05", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("80845", "14", "2018-03-23 15:38:40", "96.47.239.213", "5");
INSERT INTO `wp_gf_form_view` VALUES("80846", "3", "2018-03-23 16:15:33", "54.36.148.205", "35");
INSERT INTO `wp_gf_form_view` VALUES("80847", "8", "2018-03-23 16:46:50", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("80848", "9", "2018-03-23 16:47:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80849", "10", "2018-03-23 16:47:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80850", "15", "2018-03-23 16:47:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80851", "18", "2018-03-23 16:47:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80852", "3", "2018-03-23 17:59:46", "207.194.133.9", "2");
INSERT INTO `wp_gf_form_view` VALUES("80853", "3", "2018-03-23 18:00:08", "207.194.133.9", "36");
INSERT INTO `wp_gf_form_view` VALUES("80854", "10", "2018-03-23 18:06:17", "216.244.66.195", "7");
INSERT INTO `wp_gf_form_view` VALUES("80855", "9", "2018-03-23 18:47:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80856", "8", "2018-03-23 18:47:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80857", "15", "2018-03-23 18:47:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80858", "18", "2018-03-23 18:47:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80859", "3", "2018-03-23 19:05:52", "134.87.140.96", "4");
INSERT INTO `wp_gf_form_view` VALUES("80860", "10", "2018-03-23 19:25:37", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("80861", "18", "2018-03-23 20:03:09", "194.187.170.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("80862", "3", "2018-03-23 20:10:30", "216.244.66.195", "34");
INSERT INTO `wp_gf_form_view` VALUES("80863", "9", "2018-03-23 20:40:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80864", "8", "2018-03-23 20:40:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80865", "10", "2018-03-23 20:40:44", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("80866", "15", "2018-03-23 20:40:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80867", "3", "2018-03-23 21:02:29", "66.249.79.135", "3");
INSERT INTO `wp_gf_form_view` VALUES("80868", "18", "2018-03-23 22:09:07", "194.187.170.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("80869", "3", "2018-03-23 22:11:34", "194.187.170.113", "39");
INSERT INTO `wp_gf_form_view` VALUES("80870", "10", "2018-03-23 22:39:03", "51.255.66.104", "7");
INSERT INTO `wp_gf_form_view` VALUES("80871", "9", "2018-03-23 22:45:42", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80872", "8", "2018-03-23 22:45:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80873", "15", "2018-03-23 22:45:48", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80874", "10", "2018-03-23 23:03:18", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("80875", "3", "2018-03-23 23:06:44", "194.187.170.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("80876", "18", "2018-03-23 23:17:31", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80877", "8", "2018-03-23 23:18:34", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80878", "3", "2018-03-24 00:00:11", "194.187.170.113", "35");
INSERT INTO `wp_gf_form_view` VALUES("80879", "18", "2018-03-24 00:22:39", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("80880", "9", "2018-03-24 00:41:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80881", "8", "2018-03-24 00:41:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80882", "10", "2018-03-24 00:41:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80883", "15", "2018-03-24 00:41:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80884", "11", "2018-03-24 00:56:12", "77.75.78.170", "1");
INSERT INTO `wp_gf_form_view` VALUES("80885", "3", "2018-03-24 01:05:42", "207.46.13.95", "9");
INSERT INTO `wp_gf_form_view` VALUES("80886", "18", "2018-03-24 01:16:08", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80887", "8", "2018-03-24 01:17:06", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80888", "10", "2018-03-24 01:58:53", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("80889", "3", "2018-03-24 02:39:28", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80890", "9", "2018-03-24 02:39:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80891", "8", "2018-03-24 02:39:29", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80892", "10", "2018-03-24 02:39:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80893", "15", "2018-03-24 02:39:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80894", "18", "2018-03-24 02:39:34", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80895", "3", "2018-03-24 03:01:05", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("80896", "10", "2018-03-24 03:55:27", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("80897", "18", "2018-03-24 04:07:04", "194.187.170.113", "2");
INSERT INTO `wp_gf_form_view` VALUES("80898", "3", "2018-03-24 04:37:11", "66.249.79.119", "33");
INSERT INTO `wp_gf_form_view` VALUES("80899", "9", "2018-03-24 04:37:17", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80900", "8", "2018-03-24 04:37:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80901", "10", "2018-03-24 04:37:18", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80902", "15", "2018-03-24 04:37:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80903", "10", "2018-03-24 05:00:05", "194.187.170.113", "3");
INSERT INTO `wp_gf_form_view` VALUES("80904", "14", "2018-03-24 05:18:17", "140.82.34.168", "4");
INSERT INTO `wp_gf_form_view` VALUES("80905", "3", "2018-03-24 05:18:20", "140.82.34.168", "2");
INSERT INTO `wp_gf_form_view` VALUES("80906", "10", "2018-03-24 06:03:27", "194.187.170.113", "6");
INSERT INTO `wp_gf_form_view` VALUES("80907", "3", "2018-03-24 06:34:27", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80908", "9", "2018-03-24 06:34:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80909", "8", "2018-03-24 06:34:28", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80910", "15", "2018-03-24 06:34:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80911", "18", "2018-03-24 06:34:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80912", "3", "2018-03-24 07:43:22", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("80913", "10", "2018-03-24 07:43:41", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80914", "3", "2018-03-24 08:01:32", "46.105.98.166", "50");
INSERT INTO `wp_gf_form_view` VALUES("80915", "14", "2018-03-24 08:02:28", "46.105.98.166", "1");
INSERT INTO `wp_gf_form_view` VALUES("80916", "18", "2018-03-24 08:02:43", "46.105.98.166", "2");
INSERT INTO `wp_gf_form_view` VALUES("80917", "9", "2018-03-24 08:04:54", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("80918", "10", "2018-03-24 08:18:29", "194.187.170.113", "8");
INSERT INTO `wp_gf_form_view` VALUES("80919", "8", "2018-03-24 08:41:50", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80920", "15", "2018-03-24 08:41:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80921", "3", "2018-03-24 09:03:42", "216.244.66.247", "11");
INSERT INTO `wp_gf_form_view` VALUES("80922", "12", "2018-03-24 09:06:20", "194.187.170.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("80923", "18", "2018-03-24 09:12:42", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80924", "3", "2018-03-24 10:39:57", "52.37.180.245", "64");
INSERT INTO `wp_gf_form_view` VALUES("80925", "9", "2018-03-24 10:39:58", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80926", "8", "2018-03-24 10:39:59", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("80927", "10", "2018-03-24 10:39:59", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("80928", "15", "2018-03-24 10:40:01", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80929", "18", "2018-03-24 10:40:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80930", "3", "2018-03-24 11:08:37", "207.46.13.113", "1");
INSERT INTO `wp_gf_form_view` VALUES("80931", "3", "2018-03-24 12:32:24", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("80932", "9", "2018-03-24 12:35:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80933", "8", "2018-03-24 12:35:57", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80934", "10", "2018-03-24 12:35:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80935", "15", "2018-03-24 12:36:00", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80936", "18", "2018-03-24 12:36:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80937", "3", "2018-03-24 13:44:50", "54.36.148.190", "1");
INSERT INTO `wp_gf_form_view` VALUES("80938", "10", "2018-03-24 14:25:30", "184.66.129.248", "6");
INSERT INTO `wp_gf_form_view` VALUES("80939", "3", "2018-03-24 14:26:20", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80940", "9", "2018-03-24 14:26:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80941", "8", "2018-03-24 14:26:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80942", "15", "2018-03-24 14:26:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80943", "18", "2018-03-24 14:26:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80944", "18", "2018-03-24 15:05:33", "184.66.27.189", "9");
INSERT INTO `wp_gf_form_view` VALUES("80945", "3", "2018-03-24 15:40:57", "216.244.66.195", "11");
INSERT INTO `wp_gf_form_view` VALUES("80946", "3", "2018-03-24 16:26:23", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("80947", "9", "2018-03-24 16:26:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80948", "8", "2018-03-24 16:26:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80949", "10", "2018-03-24 16:26:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80950", "15", "2018-03-24 16:26:28", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80951", "18", "2018-03-24 16:26:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80952", "18", "2018-03-24 17:45:53", "54.208.248.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("80953", "8", "2018-03-24 17:56:21", "54.208.248.222", "1");
INSERT INTO `wp_gf_form_view` VALUES("80954", "3", "2018-03-24 17:59:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80955", "3", "2018-03-24 18:14:59", "216.244.66.247", "34");
INSERT INTO `wp_gf_form_view` VALUES("80956", "9", "2018-03-24 18:26:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80957", "8", "2018-03-24 18:26:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80958", "10", "2018-03-24 18:26:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80959", "15", "2018-03-24 18:26:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80960", "18", "2018-03-24 18:26:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80961", "3", "2018-03-24 19:00:13", "172.218.222.155", "4");
INSERT INTO `wp_gf_form_view` VALUES("80962", "6", "2018-03-24 19:12:37", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("80963", "3", "2018-03-24 20:28:16", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("80964", "9", "2018-03-24 20:28:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80965", "8", "2018-03-24 20:28:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80966", "10", "2018-03-24 20:28:19", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80967", "15", "2018-03-24 20:28:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80968", "18", "2018-03-24 20:28:24", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("80969", "3", "2018-03-24 21:17:12", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80970", "10", "2018-03-24 21:17:47", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("80971", "3", "2018-03-24 22:08:40", "46.229.168.67", "41");
INSERT INTO `wp_gf_form_view` VALUES("80972", "8", "2018-03-24 22:14:53", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("80973", "9", "2018-03-24 22:36:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80974", "10", "2018-03-24 22:36:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80975", "15", "2018-03-24 22:36:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80976", "18", "2018-03-24 22:36:30", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80977", "3", "2018-03-24 23:13:40", "180.76.15.16", "2");
INSERT INTO `wp_gf_form_view` VALUES("80978", "10", "2018-03-24 23:37:04", "72.14.199.21", "1");
INSERT INTO `wp_gf_form_view` VALUES("80979", "18", "2018-03-24 23:47:05", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("80980", "3", "2018-03-25 00:31:53", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("80981", "9", "2018-03-25 00:31:54", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80982", "8", "2018-03-25 00:31:54", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80983", "10", "2018-03-25 00:31:55", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80984", "15", "2018-03-25 00:31:57", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80985", "18", "2018-03-25 00:31:59", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80986", "3", "2018-03-25 01:22:44", "216.244.66.195", "14");
INSERT INTO `wp_gf_form_view` VALUES("80987", "10", "2018-03-25 01:55:42", "207.46.13.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("80988", "6", "2018-03-25 01:55:47", "207.46.13.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("80989", "8", "2018-03-25 01:56:34", "207.46.13.128", "2");
INSERT INTO `wp_gf_form_view` VALUES("80990", "15", "2018-03-25 01:57:15", "207.46.13.128", "1");
INSERT INTO `wp_gf_form_view` VALUES("80991", "9", "2018-03-25 01:59:12", "40.77.167.99", "1");
INSERT INTO `wp_gf_form_view` VALUES("80992", "3", "2018-03-25 02:04:57", "24.108.194.40", "34");
INSERT INTO `wp_gf_form_view` VALUES("80993", "18", "2018-03-25 02:09:25", "184.66.27.189", "8");
INSERT INTO `wp_gf_form_view` VALUES("80994", "9", "2018-03-25 02:40:47", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80995", "8", "2018-03-25 02:40:48", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("80996", "10", "2018-03-25 02:40:48", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("80997", "15", "2018-03-25 02:40:51", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("80998", "3", "2018-03-25 03:19:13", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("80999", "18", "2018-03-25 03:57:55", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("81000", "18", "2018-03-25 04:06:33", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("81001", "14", "2018-03-25 04:29:26", "196.247.229.225", "1");
INSERT INTO `wp_gf_form_view` VALUES("81002", "3", "2018-03-25 04:29:51", "52.37.180.245", "67");
INSERT INTO `wp_gf_form_view` VALUES("81003", "9", "2018-03-25 04:29:51", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81004", "8", "2018-03-25 04:29:52", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81005", "10", "2018-03-25 04:29:52", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("81006", "15", "2018-03-25 04:29:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81007", "18", "2018-03-25 05:27:25", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81008", "3", "2018-03-25 05:39:54", "103.207.39.170", "9");
INSERT INTO `wp_gf_form_view` VALUES("81009", "3", "2018-03-25 06:30:15", "139.162.246.24", "34");
INSERT INTO `wp_gf_form_view` VALUES("81010", "9", "2018-03-25 06:45:53", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81011", "8", "2018-03-25 06:45:53", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81012", "10", "2018-03-25 06:45:54", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81013", "15", "2018-03-25 06:45:56", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81014", "18", "2018-03-25 06:45:58", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81015", "3", "2018-03-25 07:07:29", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("81016", "3", "2018-03-25 08:06:22", "157.55.39.187", "33");
INSERT INTO `wp_gf_form_view` VALUES("81017", "9", "2018-03-25 08:50:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81018", "8", "2018-03-25 08:50:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81019", "10", "2018-03-25 08:50:57", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81020", "15", "2018-03-25 08:51:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81021", "18", "2018-03-25 08:51:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81022", "3", "2018-03-25 09:55:05", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("81023", "3", "2018-03-25 10:56:13", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("81024", "9", "2018-03-25 10:56:14", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81025", "8", "2018-03-25 10:56:15", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81026", "10", "2018-03-25 10:56:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81027", "15", "2018-03-25 10:56:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81028", "18", "2018-03-25 10:56:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81029", "18", "2018-03-25 11:10:24", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("81030", "3", "2018-03-25 11:25:10", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("81031", "10", "2018-03-25 11:44:28", "72.14.199.19", "1");
INSERT INTO `wp_gf_form_view` VALUES("81032", "3", "2018-03-25 12:07:45", "54.36.148.23", "2");
INSERT INTO `wp_gf_form_view` VALUES("81033", "3", "2018-03-25 13:05:30", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("81034", "9", "2018-03-25 13:05:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81035", "8", "2018-03-25 13:05:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81036", "10", "2018-03-25 13:05:33", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("81037", "15", "2018-03-25 13:05:36", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81038", "18", "2018-03-25 13:05:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81039", "3", "2018-03-25 14:00:17", "146.185.223.150", "4");
INSERT INTO `wp_gf_form_view` VALUES("81040", "10", "2018-03-25 14:26:10", "184.66.129.248", "1");
INSERT INTO `wp_gf_form_view` VALUES("81041", "3", "2018-03-25 15:06:28", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("81042", "9", "2018-03-25 15:06:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81043", "8", "2018-03-25 15:06:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81044", "10", "2018-03-25 15:06:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81045", "15", "2018-03-25 15:06:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81046", "18", "2018-03-25 15:06:36", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81047", "3", "2018-03-25 16:13:45", "54.36.149.53", "2");
INSERT INTO `wp_gf_form_view` VALUES("81048", "11", "2018-03-25 16:19:27", "157.55.39.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("81049", "10", "2018-03-25 16:22:47", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("81050", "3", "2018-03-25 17:01:02", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("81051", "9", "2018-03-25 17:01:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81052", "8", "2018-03-25 17:01:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81053", "10", "2018-03-25 17:01:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81054", "15", "2018-03-25 17:01:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81055", "18", "2018-03-25 17:01:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81056", "10", "2018-03-25 18:08:19", "216.244.66.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("81057", "3", "2018-03-25 18:08:53", "216.244.66.247", "69");
INSERT INTO `wp_gf_form_view` VALUES("81058", "9", "2018-03-25 18:09:11", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("81059", "8", "2018-03-25 18:09:11", "216.244.66.247", "4");
INSERT INTO `wp_gf_form_view` VALUES("81060", "15", "2018-03-25 18:09:15", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("81061", "18", "2018-03-25 18:09:17", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("81062", "14", "2018-03-25 18:11:48", "23.250.23.104", "5");
INSERT INTO `wp_gf_form_view` VALUES("81063", "3", "2018-03-25 19:03:39", "139.162.246.24", "4");
INSERT INTO `wp_gf_form_view` VALUES("81064", "3", "2018-03-25 20:45:40", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("81065", "9", "2018-03-25 20:52:16", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81066", "8", "2018-03-25 20:52:17", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81067", "10", "2018-03-25 20:52:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81068", "15", "2018-03-25 20:52:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81069", "18", "2018-03-25 20:52:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81070", "3", "2018-03-25 21:09:38", "184.151.231.163", "4");
INSERT INTO `wp_gf_form_view` VALUES("81071", "18", "2018-03-25 21:18:42", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81072", "8", "2018-03-25 21:44:15", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("81073", "10", "2018-03-25 22:36:53", "199.16.157.180", "6");
INSERT INTO `wp_gf_form_view` VALUES("81074", "3", "2018-03-25 22:39:47", "192.158.231.99", "40");
INSERT INTO `wp_gf_form_view` VALUES("81075", "9", "2018-03-25 22:47:18", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81076", "8", "2018-03-25 22:47:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81077", "15", "2018-03-25 22:47:22", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81078", "18", "2018-03-25 22:47:24", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81079", "18", "2018-03-25 23:13:33", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("81080", "3", "2018-03-25 23:27:25", "216.244.66.195", "4");
INSERT INTO `wp_gf_form_view` VALUES("81081", "14", "2018-03-26 00:00:08", "96.54.230.222", "3");
INSERT INTO `wp_gf_form_view` VALUES("81082", "10", "2018-03-26 00:17:05", "216.244.66.247", "12");
INSERT INTO `wp_gf_form_view` VALUES("81083", "3", "2018-03-26 00:24:53", "139.162.246.24", "65");
INSERT INTO `wp_gf_form_view` VALUES("81084", "9", "2018-03-26 00:37:18", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81085", "8", "2018-03-26 00:37:18", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81086", "15", "2018-03-26 00:37:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81087", "18", "2018-03-26 00:37:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81088", "3", "2018-03-26 01:49:48", "154.20.46.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("81089", "3", "2018-03-26 02:26:06", "216.244.66.195", "33");
INSERT INTO `wp_gf_form_view` VALUES("81090", "15", "2018-03-26 02:26:24", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("81091", "9", "2018-03-26 02:46:20", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81092", "8", "2018-03-26 02:46:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81093", "10", "2018-03-26 02:46:22", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81094", "18", "2018-03-26 02:46:31", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81095", "3", "2018-03-26 03:20:32", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("81096", "10", "2018-03-26 03:20:45", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("81097", "8", "2018-03-26 03:47:17", "95.216.0.58", "2");
INSERT INTO `wp_gf_form_view` VALUES("81098", "18", "2018-03-26 03:48:46", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81099", "3", "2018-03-26 04:08:02", "24.68.248.211", "66");
INSERT INTO `wp_gf_form_view` VALUES("81100", "10", "2018-03-26 04:25:56", "66.249.79.133", "11");
INSERT INTO `wp_gf_form_view` VALUES("81101", "9", "2018-03-26 04:44:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81102", "8", "2018-03-26 04:44:16", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81103", "15", "2018-03-26 04:44:19", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81104", "18", "2018-03-26 04:44:22", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81105", "18", "2018-03-26 05:36:30", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81106", "9", "2018-03-26 05:41:45", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("81107", "3", "2018-03-26 06:51:39", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("81108", "9", "2018-03-26 06:51:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81109", "8", "2018-03-26 06:51:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81110", "10", "2018-03-26 06:51:41", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("81111", "15", "2018-03-26 06:51:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81112", "18", "2018-03-26 06:51:46", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81113", "18", "2018-03-26 08:22:38", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81114", "3", "2018-03-26 08:42:22", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("81115", "9", "2018-03-26 08:42:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81116", "8", "2018-03-26 08:42:23", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81117", "10", "2018-03-26 08:42:24", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("81118", "15", "2018-03-26 08:42:26", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81119", "18", "2018-03-26 09:39:27", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("81120", "3", "2018-03-26 10:11:00", "216.244.66.247", "33");
INSERT INTO `wp_gf_form_view` VALUES("81121", "9", "2018-03-26 10:32:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81122", "8", "2018-03-26 10:32:30", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81123", "10", "2018-03-26 10:32:31", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81124", "15", "2018-03-26 10:32:32", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81125", "18", "2018-03-26 10:32:34", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81126", "3", "2018-03-26 11:17:41", "139.162.246.24", "1");
INSERT INTO `wp_gf_form_view` VALUES("81127", "3", "2018-03-26 12:07:32", "216.244.66.195", "67");
INSERT INTO `wp_gf_form_view` VALUES("81128", "8", "2018-03-26 12:11:49", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("81129", "9", "2018-03-26 12:25:02", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81130", "10", "2018-03-26 12:25:03", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("81131", "15", "2018-03-26 12:25:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81132", "18", "2018-03-26 12:25:08", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81133", "3", "2018-03-26 14:22:05", "52.37.180.245", "35");
INSERT INTO `wp_gf_form_view` VALUES("81134", "9", "2018-03-26 14:22:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81135", "8", "2018-03-26 14:22:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81136", "10", "2018-03-26 14:22:08", "52.37.180.245", "6");
INSERT INTO `wp_gf_form_view` VALUES("81137", "15", "2018-03-26 14:22:11", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81138", "18", "2018-03-26 14:22:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81139", "10", "2018-03-26 15:18:57", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("81140", "3", "2018-03-26 15:19:35", "216.244.66.195", "5");
INSERT INTO `wp_gf_form_view` VALUES("81141", "18", "2018-03-26 15:21:13", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("81142", "3", "2018-03-26 16:11:53", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("81143", "9", "2018-03-26 16:11:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81144", "8", "2018-03-26 16:11:55", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81145", "10", "2018-03-26 16:11:56", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("81146", "15", "2018-03-26 16:11:59", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81147", "18", "2018-03-26 16:12:02", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81148", "14", "2018-03-26 16:25:06", "172.218.233.62", "1");
INSERT INTO `wp_gf_form_view` VALUES("81149", "3", "2018-03-26 17:30:17", "216.244.66.195", "2");
INSERT INTO `wp_gf_form_view` VALUES("81150", "3", "2018-03-26 18:10:04", "52.37.180.245", "72");
INSERT INTO `wp_gf_form_view` VALUES("81151", "9", "2018-03-26 18:10:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81152", "8", "2018-03-26 18:10:06", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81153", "10", "2018-03-26 18:10:06", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("81154", "15", "2018-03-26 18:10:09", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81155", "18", "2018-03-26 18:10:12", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81156", "3", "2018-03-26 19:44:19", "66.249.79.135", "1");
INSERT INTO `wp_gf_form_view` VALUES("81157", "3", "2018-03-26 20:16:28", "52.37.180.245", "38");
INSERT INTO `wp_gf_form_view` VALUES("81158", "9", "2018-03-26 20:16:29", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81159", "8", "2018-03-26 20:16:29", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("81160", "10", "2018-03-26 20:16:30", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81161", "15", "2018-03-26 20:16:33", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81162", "18", "2018-03-26 20:16:35", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("81163", "18", "2018-03-26 21:10:28", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("81164", "3", "2018-03-26 21:51:28", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("81165", "3", "2018-03-26 22:20:15", "52.37.180.245", "34");
INSERT INTO `wp_gf_form_view` VALUES("81166", "9", "2018-03-26 22:20:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81167", "8", "2018-03-26 22:20:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81168", "10", "2018-03-26 22:20:17", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81169", "15", "2018-03-26 22:20:19", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81170", "18", "2018-03-26 22:20:21", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81171", "18", "2018-03-26 23:01:03", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("81172", "14", "2018-03-26 23:48:59", "216.232.153.68", "1");
INSERT INTO `wp_gf_form_view` VALUES("81173", "3", "2018-03-26 23:56:49", "216.244.66.247", "1");
INSERT INTO `wp_gf_form_view` VALUES("81174", "3", "2018-03-27 00:22:03", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("81175", "9", "2018-03-27 00:22:04", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81176", "8", "2018-03-27 00:22:05", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81177", "10", "2018-03-27 00:22:05", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81178", "15", "2018-03-27 00:22:07", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81179", "18", "2018-03-27 00:22:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81180", "3", "2018-03-27 01:35:55", "94.177.244.201", "8");
INSERT INTO `wp_gf_form_view` VALUES("81181", "10", "2018-03-27 02:14:40", "35.153.231.209", "6");
INSERT INTO `wp_gf_form_view` VALUES("81182", "3", "2018-03-27 02:24:37", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("81183", "9", "2018-03-27 02:24:38", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81184", "8", "2018-03-27 02:24:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81185", "15", "2018-03-27 02:24:41", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81186", "18", "2018-03-27 02:24:43", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81187", "3", "2018-03-27 03:03:05", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("81188", "10", "2018-03-27 03:03:24", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("81189", "18", "2018-03-27 03:25:34", "35.153.231.209", "1");
INSERT INTO `wp_gf_form_view` VALUES("81190", "3", "2018-03-27 04:19:04", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("81191", "9", "2018-03-27 04:19:05", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81192", "8", "2018-03-27 04:19:05", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("81193", "10", "2018-03-27 04:19:06", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81194", "15", "2018-03-27 04:19:08", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81195", "18", "2018-03-27 04:19:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81196", "14", "2018-03-27 04:35:11", "184.66.233.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("81197", "3", "2018-03-27 05:07:44", "216.244.66.195", "6");
INSERT INTO `wp_gf_form_view` VALUES("81198", "10", "2018-03-27 05:08:00", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("81199", "18", "2018-03-27 05:53:19", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("81200", "14", "2018-03-27 06:04:26", "184.66.233.165", "1");
INSERT INTO `wp_gf_form_view` VALUES("81201", "9", "2018-03-27 06:05:21", "216.244.66.247", "2");
INSERT INTO `wp_gf_form_view` VALUES("81202", "3", "2018-03-27 06:05:36", "216.244.66.247", "36");
INSERT INTO `wp_gf_form_view` VALUES("81203", "10", "2018-03-27 06:08:24", "72.14.199.71", "6");
INSERT INTO `wp_gf_form_view` VALUES("81204", "8", "2018-03-27 06:12:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81205", "15", "2018-03-27 06:12:13", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81206", "18", "2018-03-27 06:12:15", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81207", "14", "2018-03-27 07:27:56", "190.205.45.26", "3");
INSERT INTO `wp_gf_form_view` VALUES("81208", "18", "2018-03-27 07:28:48", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("81209", "14", "2018-03-27 08:02:54", "176.53.248.63", "1");
INSERT INTO `wp_gf_form_view` VALUES("81210", "3", "2018-03-27 08:03:48", "96.54.241.191", "34");
INSERT INTO `wp_gf_form_view` VALUES("81211", "9", "2018-03-27 08:07:03", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81212", "8", "2018-03-27 08:07:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81213", "10", "2018-03-27 08:07:04", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81214", "15", "2018-03-27 08:07:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81215", "18", "2018-03-27 08:07:09", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81216", "18", "2018-03-27 09:46:51", "184.66.27.189", "1");
INSERT INTO `wp_gf_form_view` VALUES("81217", "3", "2018-03-27 10:06:51", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("81218", "9", "2018-03-27 10:06:52", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81219", "8", "2018-03-27 10:06:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81220", "10", "2018-03-27 10:06:53", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81221", "15", "2018-03-27 10:06:55", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81222", "18", "2018-03-27 10:06:57", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("81223", "3", "2018-03-27 11:07:59", "216.244.66.195", "43");
INSERT INTO `wp_gf_form_view` VALUES("81224", "18", "2018-03-27 11:50:49", "194.187.170.140", "2");
INSERT INTO `wp_gf_form_view` VALUES("81225", "9", "2018-03-27 11:56:39", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81226", "8", "2018-03-27 11:56:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81227", "10", "2018-03-27 11:56:41", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81228", "15", "2018-03-27 11:56:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81229", "3", "2018-03-27 12:09:14", "146.185.223.150", "5");
INSERT INTO `wp_gf_form_view` VALUES("81230", "3", "2018-03-27 13:47:06", "216.244.66.195", "1");
INSERT INTO `wp_gf_form_view` VALUES("81231", "3", "2018-03-27 14:01:22", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("81232", "9", "2018-03-27 14:01:23", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81233", "8", "2018-03-27 14:01:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81234", "10", "2018-03-27 14:01:25", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81235", "15", "2018-03-27 14:01:27", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81236", "18", "2018-03-27 14:01:29", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("81237", "18", "2018-03-27 15:22:36", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81238", "3", "2018-03-27 15:57:10", "52.37.180.245", "65");
INSERT INTO `wp_gf_form_view` VALUES("81239", "9", "2018-03-27 15:57:11", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81240", "8", "2018-03-27 15:57:11", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81241", "10", "2018-03-27 15:57:12", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("81242", "15", "2018-03-27 15:57:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81243", "14", "2018-03-27 17:21:42", "184.66.49.231", "1");
INSERT INTO `wp_gf_form_view` VALUES("81244", "3", "2018-03-27 17:56:01", "52.37.180.245", "33");
INSERT INTO `wp_gf_form_view` VALUES("81245", "9", "2018-03-27 17:56:02", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81246", "8", "2018-03-27 17:56:03", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81247", "10", "2018-03-27 17:56:04", "52.37.180.245", "7");
INSERT INTO `wp_gf_form_view` VALUES("81248", "15", "2018-03-27 17:56:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81249", "18", "2018-03-27 17:56:08", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("81250", "18", "2018-03-27 18:48:06", "66.246.224.11", "1");
INSERT INTO `wp_gf_form_view` VALUES("81251", "3", "2018-03-27 19:00:46", "24.68.248.211", "50");
INSERT INTO `wp_gf_form_view` VALUES("81252", "14", "2018-03-27 19:08:04", "159.65.133.29", "1");
INSERT INTO `wp_gf_form_view` VALUES("81253", "18", "2018-03-27 19:51:05", "194.187.170.122", "2");
INSERT INTO `wp_gf_form_view` VALUES("81254", "9", "2018-03-27 19:56:06", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81255", "8", "2018-03-27 19:56:07", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81256", "10", "2018-03-27 19:56:08", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81257", "15", "2018-03-27 19:56:10", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81258", "18", "2018-03-27 20:03:31", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81259", "10", "2018-03-27 20:26:31", "72.14.199.73", "1");
INSERT INTO `wp_gf_form_view` VALUES("81260", "3", "2018-03-27 20:34:10", "24.68.248.211", "2");
INSERT INTO `wp_gf_form_view` VALUES("81261", "3", "2018-03-27 21:15:55", "216.244.66.195", "48");
INSERT INTO `wp_gf_form_view` VALUES("81262", "14", "2018-03-27 21:16:21", "104.223.70.228", "3");
INSERT INTO `wp_gf_form_view` VALUES("81263", "9", "2018-03-27 21:54:37", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81264", "8", "2018-03-27 21:54:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81265", "10", "2018-03-27 21:54:38", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81266", "15", "2018-03-27 21:54:40", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81267", "18", "2018-03-27 21:54:43", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81268", "18", "2018-03-27 22:14:49", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81269", "3", "2018-03-27 22:25:55", "184.69.96.50", "38");
INSERT INTO `wp_gf_form_view` VALUES("81270", "11", "2018-03-27 22:27:26", "184.69.96.50", "1");
INSERT INTO `wp_gf_form_view` VALUES("81271", "3", "2018-03-27 23:07:45", "66.246.224.11", "39");
INSERT INTO `wp_gf_form_view` VALUES("81272", "18", "2018-03-27 23:25:05", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("81273", "9", "2018-03-27 23:55:35", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("81274", "8", "2018-03-27 23:55:35", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81275", "10", "2018-03-27 23:55:36", "52.37.180.245", "10");
INSERT INTO `wp_gf_form_view` VALUES("81276", "15", "2018-03-27 23:55:38", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81277", "3", "2018-03-28 00:07:50", "66.246.224.11", "42");
INSERT INTO `wp_gf_form_view` VALUES("81278", "18", "2018-03-28 00:08:02", "184.66.27.189", "3");
INSERT INTO `wp_gf_form_view` VALUES("81279", "14", "2018-03-28 00:58:23", "45.57.163.166", "5");
INSERT INTO `wp_gf_form_view` VALUES("81280", "3", "2018-03-28 01:33:21", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("81281", "18", "2018-03-28 01:57:00", "184.66.27.189", "2");
INSERT INTO `wp_gf_form_view` VALUES("81282", "3", "2018-03-28 02:03:31", "52.37.180.245", "32");
INSERT INTO `wp_gf_form_view` VALUES("81283", "9", "2018-03-28 02:03:32", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81284", "8", "2018-03-28 02:03:33", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81285", "10", "2018-03-28 02:03:33", "52.37.180.245", "13");
INSERT INTO `wp_gf_form_view` VALUES("81286", "15", "2018-03-28 02:03:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81287", "18", "2018-03-28 02:03:37", "52.37.180.245", "3");
INSERT INTO `wp_gf_form_view` VALUES("81288", "3", "2018-03-28 03:42:33", "216.244.66.195", "66");
INSERT INTO `wp_gf_form_view` VALUES("81289", "9", "2018-03-28 03:59:21", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81290", "8", "2018-03-28 03:59:21", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81291", "10", "2018-03-28 03:59:22", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("81292", "15", "2018-03-28 03:59:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81293", "18", "2018-03-28 03:59:26", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81294", "3", "2018-03-28 04:48:34", "24.68.117.202", "34");
INSERT INTO `wp_gf_form_view` VALUES("81295", "18", "2018-03-28 04:54:36", "184.66.27.189", "4");
INSERT INTO `wp_gf_form_view` VALUES("81296", "3", "2018-03-28 05:12:10", "24.68.117.202", "47");
INSERT INTO `wp_gf_form_view` VALUES("81297", "10", "2018-03-28 05:16:53", "184.66.129.248", "18");
INSERT INTO `wp_gf_form_view` VALUES("81298", "9", "2018-03-28 05:37:37", "40.77.167.179", "4");
INSERT INTO `wp_gf_form_view` VALUES("81299", "8", "2018-03-28 05:40:43", "40.77.167.39", "5");
INSERT INTO `wp_gf_form_view` VALUES("81300", "15", "2018-03-28 05:53:40", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81301", "18", "2018-03-28 05:53:42", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81302", "14", "2018-03-28 06:54:28", "165.73.246.238", "2");
INSERT INTO `wp_gf_form_view` VALUES("81303", "10", "2018-03-28 07:14:17", "216.244.66.195", "12");
INSERT INTO `wp_gf_form_view` VALUES("81304", "3", "2018-03-28 07:53:20", "52.37.180.245", "66");
INSERT INTO `wp_gf_form_view` VALUES("81305", "9", "2018-03-28 07:53:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81306", "8", "2018-03-28 07:53:21", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81307", "15", "2018-03-28 07:53:24", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81308", "18", "2018-03-28 07:53:26", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81309", "3", "2018-03-28 09:53:33", "52.37.180.245", "68");
INSERT INTO `wp_gf_form_view` VALUES("81310", "9", "2018-03-28 09:53:35", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81311", "8", "2018-03-28 09:53:37", "52.37.180.245", "4");
INSERT INTO `wp_gf_form_view` VALUES("81312", "10", "2018-03-28 09:53:39", "52.37.180.245", "11");
INSERT INTO `wp_gf_form_view` VALUES("81313", "15", "2018-03-28 09:53:45", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81314", "18", "2018-03-28 09:53:52", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81315", "10", "2018-03-28 11:06:42", "72.14.199.19", "12");
INSERT INTO `wp_gf_form_view` VALUES("81316", "3", "2018-03-28 11:24:57", "194.187.170.138", "71");
INSERT INTO `wp_gf_form_view` VALUES("81317", "18", "2018-03-28 11:43:24", "194.187.170.138", "3");
INSERT INTO `wp_gf_form_view` VALUES("81318", "9", "2018-03-28 11:52:16", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81319", "8", "2018-03-28 11:52:16", "52.37.180.245", "5");
INSERT INTO `wp_gf_form_view` VALUES("81320", "15", "2018-03-28 11:52:20", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81321", "3", "2018-03-28 12:26:26", "216.244.66.247", "44");
INSERT INTO `wp_gf_form_view` VALUES("81322", "18", "2018-03-28 12:48:56", "194.187.170.138", "2");
INSERT INTO `wp_gf_form_view` VALUES("81323", "14", "2018-03-28 13:05:46", "196.247.235.232", "4");
INSERT INTO `wp_gf_form_view` VALUES("81324", "9", "2018-03-28 13:12:17", "216.244.66.195", "3");
INSERT INTO `wp_gf_form_view` VALUES("81325", "3", "2018-03-28 13:13:02", "216.244.66.195", "47");
INSERT INTO `wp_gf_form_view` VALUES("81326", "8", "2018-03-28 13:14:23", "139.162.246.24", "6");
INSERT INTO `wp_gf_form_view` VALUES("81327", "10", "2018-03-28 13:17:30", "194.187.170.138", "11");
INSERT INTO `wp_gf_form_view` VALUES("81328", "15", "2018-03-28 13:54:33", "52.37.180.245", "2");
INSERT INTO `wp_gf_form_view` VALUES("81329", "18", "2018-03-28 13:54:35", "52.37.180.245", "1");
INSERT INTO `wp_gf_form_view` VALUES("81330", "3", "2018-03-28 14:20:27", "5.9.61.111", "4");
INSERT INTO `wp_gf_form_view` VALUES("81331", "10", "2018-03-28 14:25:25", "184.66.129.248", "2");
INSERT INTO `wp_gf_form_view` VALUES("81332", "8", "2018-03-28 14:57:28", "216.244.66.247", "3");
INSERT INTO `wp_gf_form_view` VALUES("81333", "3", "2018-03-28 15:32:08", "216.244.66.195", "35");
INSERT INTO `wp_gf_form_view` VALUES("81334", "16", "2018-03-29 12:19:55", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81335", "9", "2018-03-29 14:40:18", "", "18");
INSERT INTO `wp_gf_form_view` VALUES("81336", "10", "2018-03-29 14:40:18", "", "106");
INSERT INTO `wp_gf_form_view` VALUES("81337", "15", "2018-03-29 14:40:19", "", "20");
INSERT INTO `wp_gf_form_view` VALUES("81338", "18", "2018-03-29 14:40:20", "", "34");
INSERT INTO `wp_gf_form_view` VALUES("81339", "8", "2018-03-29 15:03:21", "", "35");
INSERT INTO `wp_gf_form_view` VALUES("81340", "3", "2018-03-29 15:48:18", "", "627");
INSERT INTO `wp_gf_form_view` VALUES("81341", "14", "2018-03-29 18:50:10", "", "3");
INSERT INTO `wp_gf_form_view` VALUES("81342", "6", "2018-03-30 10:59:11", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81343", "9", "2018-03-30 15:18:10", "", "12");
INSERT INTO `wp_gf_form_view` VALUES("81344", "8", "2018-03-30 15:18:11", "", "26");
INSERT INTO `wp_gf_form_view` VALUES("81345", "10", "2018-03-30 15:18:11", "", "66");
INSERT INTO `wp_gf_form_view` VALUES("81346", "15", "2018-03-30 15:18:12", "", "14");
INSERT INTO `wp_gf_form_view` VALUES("81347", "18", "2018-03-30 15:18:13", "", "24");
INSERT INTO `wp_gf_form_view` VALUES("81348", "3", "2018-03-30 16:40:59", "", "878");
INSERT INTO `wp_gf_form_view` VALUES("81349", "14", "2018-03-30 21:31:18", "", "6");
INSERT INTO `wp_gf_form_view` VALUES("81350", "11", "2018-03-31 12:27:44", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81351", "18", "2018-03-31 15:29:26", "", "32");
INSERT INTO `wp_gf_form_view` VALUES("81352", "9", "2018-03-31 16:03:51", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81353", "8", "2018-03-31 16:03:52", "", "46");
INSERT INTO `wp_gf_form_view` VALUES("81354", "10", "2018-03-31 16:03:52", "", "118");
INSERT INTO `wp_gf_form_view` VALUES("81355", "15", "2018-03-31 16:03:54", "", "24");
INSERT INTO `wp_gf_form_view` VALUES("81356", "3", "2018-03-31 18:13:11", "", "884");
INSERT INTO `wp_gf_form_view` VALUES("81357", "14", "2018-04-01 00:33:33", "", "5");
INSERT INTO `wp_gf_form_view` VALUES("81358", "18", "2018-04-01 15:33:43", "", "42");
INSERT INTO `wp_gf_form_view` VALUES("81359", "11", "2018-04-01 15:38:49", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81360", "9", "2018-04-01 16:18:54", "", "27");
INSERT INTO `wp_gf_form_view` VALUES("81361", "8", "2018-04-01 16:18:54", "", "56");
INSERT INTO `wp_gf_form_view` VALUES("81362", "10", "2018-04-01 16:18:54", "", "139");
INSERT INTO `wp_gf_form_view` VALUES("81363", "15", "2018-04-01 16:18:55", "", "26");
INSERT INTO `wp_gf_form_view` VALUES("81364", "3", "2018-04-01 18:23:13", "", "860");
INSERT INTO `wp_gf_form_view` VALUES("81365", "6", "2018-04-02 08:42:42", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81366", "14", "2018-04-02 10:51:59", "", "5");
INSERT INTO `wp_gf_form_view` VALUES("81367", "18", "2018-04-02 15:43:20", "", "50");
INSERT INTO `wp_gf_form_view` VALUES("81368", "10", "2018-04-02 16:18:58", "", "133");
INSERT INTO `wp_gf_form_view` VALUES("81369", "9", "2018-04-02 17:23:54", "", "24");
INSERT INTO `wp_gf_form_view` VALUES("81370", "8", "2018-04-02 17:23:55", "", "58");
INSERT INTO `wp_gf_form_view` VALUES("81371", "15", "2018-04-02 17:23:56", "", "25");
INSERT INTO `wp_gf_form_view` VALUES("81372", "12", "2018-04-02 17:30:29", "", "3");
INSERT INTO `wp_gf_form_view` VALUES("81373", "3", "2018-04-02 18:59:13", "", "945");
INSERT INTO `wp_gf_form_view` VALUES("81374", "5", "2018-04-02 19:14:48", "", "2");
INSERT INTO `wp_gf_form_view` VALUES("81375", "18", "2018-04-03 16:14:42", "", "56");
INSERT INTO `wp_gf_form_view` VALUES("81376", "10", "2018-04-03 16:33:40", "", "153");
INSERT INTO `wp_gf_form_view` VALUES("81377", "9", "2018-04-03 18:06:30", "", "27");
INSERT INTO `wp_gf_form_view` VALUES("81378", "8", "2018-04-03 18:06:30", "", "66");
INSERT INTO `wp_gf_form_view` VALUES("81379", "15", "2018-04-03 18:06:31", "", "27");
INSERT INTO `wp_gf_form_view` VALUES("81380", "3", "2018-04-03 18:59:54", "", "1011");
INSERT INTO `wp_gf_form_view` VALUES("81381", "14", "2018-04-03 19:43:03", "", "9");
INSERT INTO `wp_gf_form_view` VALUES("81382", "11", "2018-04-04 15:33:34", "", "2");
INSERT INTO `wp_gf_form_view` VALUES("81383", "18", "2018-04-04 16:33:02", "", "42");
INSERT INTO `wp_gf_form_view` VALUES("81384", "10", "2018-04-04 16:54:35", "", "128");
INSERT INTO `wp_gf_form_view` VALUES("81385", "9", "2018-04-04 18:54:32", "", "24");
INSERT INTO `wp_gf_form_view` VALUES("81386", "8", "2018-04-04 18:54:33", "", "56");
INSERT INTO `wp_gf_form_view` VALUES("81387", "15", "2018-04-04 18:54:34", "", "25");
INSERT INTO `wp_gf_form_view` VALUES("81388", "3", "2018-04-04 19:02:41", "", "894");
INSERT INTO `wp_gf_form_view` VALUES("81389", "6", "2018-04-04 20:16:12", "", "2");
INSERT INTO `wp_gf_form_view` VALUES("81390", "12", "2018-04-04 21:00:40", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81391", "14", "2018-04-04 22:19:34", "", "4");
INSERT INTO `wp_gf_form_view` VALUES("81392", "5", "2018-04-04 22:51:38", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81393", "10", "2018-04-05 17:04:13", "", "26");
INSERT INTO `wp_gf_form_view` VALUES("81394", "18", "2018-04-05 17:04:15", "", "8");
INSERT INTO `wp_gf_form_view` VALUES("81395", "3", "2018-04-05 19:04:42", "", "70");
INSERT INTO `wp_gf_form_view` VALUES("81396", "9", "2018-04-05 19:24:35", "", "2");
INSERT INTO `wp_gf_form_view` VALUES("81397", "8", "2018-04-05 19:24:35", "", "4");
INSERT INTO `wp_gf_form_view` VALUES("81398", "15", "2018-04-05 19:24:36", "", "2");
INSERT INTO `wp_gf_form_view` VALUES("81399", "3", "2018-04-23 16:29:57", "", "841");
INSERT INTO `wp_gf_form_view` VALUES("81400", "9", "2018-04-23 16:29:57", "", "26");
INSERT INTO `wp_gf_form_view` VALUES("81401", "8", "2018-04-23 16:29:57", "", "52");
INSERT INTO `wp_gf_form_view` VALUES("81402", "10", "2018-04-23 16:29:58", "", "131");
INSERT INTO `wp_gf_form_view` VALUES("81403", "15", "2018-04-23 16:29:59", "", "26");
INSERT INTO `wp_gf_form_view` VALUES("81404", "18", "2018-04-23 16:30:00", "", "36");
INSERT INTO `wp_gf_form_view` VALUES("81405", "14", "2018-04-23 22:34:11", "", "10");
INSERT INTO `wp_gf_form_view` VALUES("81406", "3", "2018-04-24 16:50:57", "", "754");
INSERT INTO `wp_gf_form_view` VALUES("81407", "9", "2018-04-24 16:50:58", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81408", "8", "2018-04-24 16:50:58", "", "47");
INSERT INTO `wp_gf_form_view` VALUES("81409", "10", "2018-04-24 16:50:59", "", "119");
INSERT INTO `wp_gf_form_view` VALUES("81410", "15", "2018-04-24 16:50:59", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81411", "18", "2018-04-24 16:51:00", "", "41");
INSERT INTO `wp_gf_form_view` VALUES("81412", "14", "2018-04-25 03:15:35", "", "9");
INSERT INTO `wp_gf_form_view` VALUES("81413", "3", "2018-04-25 17:55:36", "", "747");
INSERT INTO `wp_gf_form_view` VALUES("81414", "18", "2018-04-25 18:14:20", "", "42");
INSERT INTO `wp_gf_form_view` VALUES("81415", "9", "2018-04-25 18:28:04", "", "24");
INSERT INTO `wp_gf_form_view` VALUES("81416", "8", "2018-04-25 18:28:05", "", "47");
INSERT INTO `wp_gf_form_view` VALUES("81417", "10", "2018-04-25 18:28:05", "", "120");
INSERT INTO `wp_gf_form_view` VALUES("81418", "15", "2018-04-25 18:28:05", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81419", "6", "2018-04-25 19:42:15", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81420", "14", "2018-04-26 11:55:24", "", "6");
INSERT INTO `wp_gf_form_view` VALUES("81421", "18", "2018-04-26 18:14:33", "", "37");
INSERT INTO `wp_gf_form_view` VALUES("81422", "3", "2018-04-26 18:44:35", "", "808");
INSERT INTO `wp_gf_form_view` VALUES("81423", "9", "2018-04-26 18:44:36", "", "24");
INSERT INTO `wp_gf_form_view` VALUES("81424", "8", "2018-04-26 18:44:36", "", "51");
INSERT INTO `wp_gf_form_view` VALUES("81425", "10", "2018-04-26 18:44:36", "", "128");
INSERT INTO `wp_gf_form_view` VALUES("81426", "15", "2018-04-26 18:44:37", "", "24");
INSERT INTO `wp_gf_form_view` VALUES("81427", "6", "2018-04-27 17:38:06", "", "2");
INSERT INTO `wp_gf_form_view` VALUES("81428", "18", "2018-04-27 18:32:04", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81429", "3", "2018-04-27 19:11:01", "", "969");
INSERT INTO `wp_gf_form_view` VALUES("81430", "14", "2018-04-27 19:19:34", "", "6");
INSERT INTO `wp_gf_form_view` VALUES("81431", "9", "2018-04-27 20:14:25", "", "31");
INSERT INTO `wp_gf_form_view` VALUES("81432", "8", "2018-04-27 20:14:25", "", "63");
INSERT INTO `wp_gf_form_view` VALUES("81433", "10", "2018-04-27 20:14:25", "", "161");
INSERT INTO `wp_gf_form_view` VALUES("81434", "15", "2018-04-27 20:14:26", "", "31");
INSERT INTO `wp_gf_form_view` VALUES("81435", "18", "2018-04-28 18:41:47", "", "48");
INSERT INTO `wp_gf_form_view` VALUES("81436", "3", "2018-04-28 19:29:11", "", "1142");
INSERT INTO `wp_gf_form_view` VALUES("81437", "9", "2018-04-28 20:37:45", "", "37");
INSERT INTO `wp_gf_form_view` VALUES("81438", "8", "2018-04-28 20:37:46", "", "74");
INSERT INTO `wp_gf_form_view` VALUES("81439", "10", "2018-04-28 20:37:46", "", "187");
INSERT INTO `wp_gf_form_view` VALUES("81440", "15", "2018-04-28 20:37:46", "", "37");
INSERT INTO `wp_gf_form_view` VALUES("81441", "14", "2018-04-29 01:08:05", "", "15");
INSERT INTO `wp_gf_form_view` VALUES("81442", "18", "2018-04-29 19:06:51", "", "58");
INSERT INTO `wp_gf_form_view` VALUES("81443", "3", "2018-04-29 19:31:24", "", "1422");
INSERT INTO `wp_gf_form_view` VALUES("81444", "9", "2018-04-29 21:32:58", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81445", "8", "2018-04-29 21:32:58", "", "88");
INSERT INTO `wp_gf_form_view` VALUES("81446", "10", "2018-04-29 21:32:58", "", "226");
INSERT INTO `wp_gf_form_view` VALUES("81447", "15", "2018-04-29 21:32:59", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81448", "6", "2018-04-30 07:20:13", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81449", "18", "2018-04-30 19:27:04", "", "57");
INSERT INTO `wp_gf_form_view` VALUES("81450", "14", "2018-04-30 19:37:40", "", "5");
INSERT INTO `wp_gf_form_view` VALUES("81451", "3", "2018-04-30 19:40:26", "", "1499");
INSERT INTO `wp_gf_form_view` VALUES("81452", "9", "2018-04-30 21:37:04", "", "45");
INSERT INTO `wp_gf_form_view` VALUES("81453", "8", "2018-04-30 21:37:04", "", "90");
INSERT INTO `wp_gf_form_view` VALUES("81454", "10", "2018-04-30 21:37:05", "", "227");
INSERT INTO `wp_gf_form_view` VALUES("81455", "15", "2018-04-30 21:37:05", "", "45");
INSERT INTO `wp_gf_form_view` VALUES("81456", "5", "2018-05-01 11:10:01", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81457", "18", "2018-05-01 19:30:49", "", "5");
INSERT INTO `wp_gf_form_view` VALUES("81458", "3", "2018-05-01 20:01:22", "", "67");
INSERT INTO `wp_gf_form_view` VALUES("81459", "3", "2018-05-24 22:24:38", "", "1167");
INSERT INTO `wp_gf_form_view` VALUES("81460", "9", "2018-05-24 22:42:34", "", "21");
INSERT INTO `wp_gf_form_view` VALUES("81461", "8", "2018-05-24 22:42:34", "", "42");
INSERT INTO `wp_gf_form_view` VALUES("81462", "10", "2018-05-24 22:42:34", "", "105");
INSERT INTO `wp_gf_form_view` VALUES("81463", "15", "2018-05-24 22:42:34", "", "21");
INSERT INTO `wp_gf_form_view` VALUES("81464", "18", "2018-05-24 22:42:34", "", "21");
INSERT INTO `wp_gf_form_view` VALUES("81465", "14", "2018-05-25 02:23:20", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81466", "3", "2018-05-25 22:37:41", "", "1050");
INSERT INTO `wp_gf_form_view` VALUES("81467", "9", "2018-05-25 23:42:38", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81468", "8", "2018-05-25 23:42:38", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81469", "10", "2018-05-25 23:42:38", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81470", "15", "2018-05-25 23:42:38", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81471", "18", "2018-05-25 23:42:38", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81472", "3", "2018-05-26 22:51:39", "", "1047");
INSERT INTO `wp_gf_form_view` VALUES("81473", "9", "2018-05-26 23:57:12", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81474", "8", "2018-05-26 23:57:12", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81475", "10", "2018-05-26 23:57:12", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81476", "15", "2018-05-26 23:57:12", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81477", "18", "2018-05-26 23:57:12", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81478", "3", "2018-05-27 23:09:29", "", "1052");
INSERT INTO `wp_gf_form_view` VALUES("81479", "9", "2018-05-28 00:17:53", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81480", "8", "2018-05-28 00:17:53", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81481", "10", "2018-05-28 00:17:53", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81482", "15", "2018-05-28 00:17:53", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81483", "18", "2018-05-28 00:17:53", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81484", "3", "2018-05-28 23:28:52", "", "1008");
INSERT INTO `wp_gf_form_view` VALUES("81485", "9", "2018-05-29 00:37:32", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81486", "8", "2018-05-29 00:37:32", "", "46");
INSERT INTO `wp_gf_form_view` VALUES("81487", "10", "2018-05-29 00:37:32", "", "115");
INSERT INTO `wp_gf_form_view` VALUES("81488", "15", "2018-05-29 00:37:32", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81489", "18", "2018-05-29 00:37:32", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81490", "3", "2018-05-29 23:39:27", "", "956");
INSERT INTO `wp_gf_form_view` VALUES("81491", "9", "2018-05-30 00:45:06", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81492", "8", "2018-05-30 00:45:06", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81493", "10", "2018-05-30 00:45:06", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81494", "15", "2018-05-30 00:45:06", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81495", "18", "2018-05-30 00:45:06", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81496", "3", "2018-05-30 23:40:50", "", "916");
INSERT INTO `wp_gf_form_view` VALUES("81497", "9", "2018-05-31 00:47:17", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81498", "8", "2018-05-31 00:47:17", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81499", "10", "2018-05-31 00:47:17", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81500", "15", "2018-05-31 00:47:17", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81501", "18", "2018-05-31 00:47:17", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81502", "3", "2018-05-31 23:43:14", "", "916");
INSERT INTO `wp_gf_form_view` VALUES("81503", "9", "2018-06-01 00:49:54", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81504", "8", "2018-06-01 00:49:54", "", "46");
INSERT INTO `wp_gf_form_view` VALUES("81505", "10", "2018-06-01 00:49:54", "", "115");
INSERT INTO `wp_gf_form_view` VALUES("81506", "15", "2018-06-01 00:49:54", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81507", "18", "2018-06-01 00:49:54", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81508", "3", "2018-06-01 23:51:11", "", "920");
INSERT INTO `wp_gf_form_view` VALUES("81509", "9", "2018-06-02 00:56:44", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81510", "8", "2018-06-02 00:56:44", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81511", "10", "2018-06-02 00:56:44", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81512", "15", "2018-06-02 00:56:44", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81513", "18", "2018-06-02 00:56:44", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81514", "3", "2018-06-02 23:58:13", "", "924");
INSERT INTO `wp_gf_form_view` VALUES("81515", "9", "2018-06-03 01:03:44", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81516", "8", "2018-06-03 01:03:44", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81517", "10", "2018-06-03 01:03:44", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81518", "15", "2018-06-03 01:03:44", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81519", "18", "2018-06-03 01:03:44", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81520", "3", "2018-06-04 00:10:50", "", "904");
INSERT INTO `wp_gf_form_view` VALUES("81521", "9", "2018-06-04 01:15:44", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81522", "8", "2018-06-04 01:15:44", "", "46");
INSERT INTO `wp_gf_form_view` VALUES("81523", "10", "2018-06-04 01:15:44", "", "115");
INSERT INTO `wp_gf_form_view` VALUES("81524", "15", "2018-06-04 01:15:44", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81525", "18", "2018-06-04 01:15:44", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81526", "3", "2018-06-05 00:56:07", "", "1056");
INSERT INTO `wp_gf_form_view` VALUES("81527", "9", "2018-06-05 02:11:45", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81528", "8", "2018-06-05 02:11:45", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81529", "10", "2018-06-05 02:11:45", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81530", "15", "2018-06-05 02:11:45", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81531", "18", "2018-06-05 02:11:45", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81532", "3", "2018-06-06 01:03:41", "", "1084");
INSERT INTO `wp_gf_form_view` VALUES("81533", "9", "2018-06-06 02:47:29", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81534", "8", "2018-06-06 02:47:29", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81535", "10", "2018-06-06 02:47:29", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81536", "15", "2018-06-06 02:47:29", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81537", "18", "2018-06-06 02:47:29", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81538", "3", "2018-06-07 01:05:03", "", "1202");
INSERT INTO `wp_gf_form_view` VALUES("81539", "9", "2018-06-07 03:06:21", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81540", "8", "2018-06-07 03:06:21", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81541", "10", "2018-06-07 03:06:21", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81542", "15", "2018-06-07 03:06:21", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81543", "18", "2018-06-07 03:06:21", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81544", "3", "2018-06-08 02:08:29", "", "1293");
INSERT INTO `wp_gf_form_view` VALUES("81545", "9", "2018-06-08 03:13:28", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81546", "8", "2018-06-08 03:13:28", "", "46");
INSERT INTO `wp_gf_form_view` VALUES("81547", "10", "2018-06-08 03:13:28", "", "115");
INSERT INTO `wp_gf_form_view` VALUES("81548", "15", "2018-06-08 03:13:28", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81549", "18", "2018-06-08 03:13:28", "", "23");
INSERT INTO `wp_gf_form_view` VALUES("81550", "3", "2018-06-09 02:28:06", "", "1126");
INSERT INTO `wp_gf_form_view` VALUES("81551", "9", "2018-06-09 04:17:47", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81552", "8", "2018-06-09 04:17:47", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81553", "10", "2018-06-09 04:17:47", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81554", "15", "2018-06-09 04:17:47", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81555", "18", "2018-06-09 04:17:47", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81556", "3", "2018-06-10 02:37:50", "", "1246");
INSERT INTO `wp_gf_form_view` VALUES("81557", "9", "2018-06-10 04:23:01", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81558", "8", "2018-06-10 04:23:01", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81559", "10", "2018-06-10 04:23:02", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81560", "15", "2018-06-10 04:23:02", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81561", "18", "2018-06-10 04:23:02", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81562", "3", "2018-06-11 02:48:44", "", "1266");
INSERT INTO `wp_gf_form_view` VALUES("81563", "9", "2018-06-11 04:39:00", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81564", "8", "2018-06-11 04:39:00", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81565", "10", "2018-06-11 04:39:00", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81566", "15", "2018-06-11 04:39:00", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81567", "18", "2018-06-11 04:39:00", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81568", "3", "2018-06-12 03:03:59", "", "514");
INSERT INTO `wp_gf_form_view` VALUES("81569", "9", "2018-06-12 04:47:42", "", "9");
INSERT INTO `wp_gf_form_view` VALUES("81570", "8", "2018-06-12 04:47:42", "", "18");
INSERT INTO `wp_gf_form_view` VALUES("81571", "10", "2018-06-12 04:47:42", "", "45");
INSERT INTO `wp_gf_form_view` VALUES("81572", "15", "2018-06-12 04:47:42", "", "9");
INSERT INTO `wp_gf_form_view` VALUES("81573", "18", "2018-06-12 04:47:42", "", "9");
INSERT INTO `wp_gf_form_view` VALUES("81574", "3", "2018-06-13 14:47:18", "", "734");
INSERT INTO `wp_gf_form_view` VALUES("81575", "9", "2018-06-13 14:47:18", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81576", "8", "2018-06-13 14:47:19", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81577", "10", "2018-06-13 14:47:19", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81578", "15", "2018-06-13 14:47:19", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81579", "18", "2018-06-13 14:47:20", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81580", "14", "2018-06-13 16:53:08", "", "1");
INSERT INTO `wp_gf_form_view` VALUES("81581", "3", "2018-06-14 14:54:08", "", "706");
INSERT INTO `wp_gf_form_view` VALUES("81582", "9", "2018-06-14 14:54:08", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81583", "8", "2018-06-14 14:54:08", "", "44");
INSERT INTO `wp_gf_form_view` VALUES("81584", "10", "2018-06-14 14:54:09", "", "110");
INSERT INTO `wp_gf_form_view` VALUES("81585", "15", "2018-06-14 14:54:09", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81586", "18", "2018-06-14 14:54:09", "", "22");
INSERT INTO `wp_gf_form_view` VALUES("81587", "3", "2018-06-15 15:14:37", "", "244");
INSERT INTO `wp_gf_form_view` VALUES("81588", "9", "2018-06-15 15:14:37", "", "7");
INSERT INTO `wp_gf_form_view` VALUES("81589", "8", "2018-06-15 15:14:37", "", "14");
INSERT INTO `wp_gf_form_view` VALUES("81590", "10", "2018-06-15 15:14:38", "", "35");
INSERT INTO `wp_gf_form_view` VALUES("81591", "15", "2018-06-15 15:14:38", "", "7");
INSERT INTO `wp_gf_form_view` VALUES("81592", "18", "2018-06-15 15:14:39", "", "7");
INSERT INTO `wp_gf_form_view` VALUES("81593", "3", "2018-06-19 20:47:06", "", "12");

/* INSERT TABLE DATA: wp_give_donormeta */
INSERT INTO `wp_give_donormeta` VALUES("1", "1", "_give_donor_first_name", "Cameron");
INSERT INTO `wp_give_donormeta` VALUES("2", "1", "_give_donor_last_name", "Bowler");

/* INSERT TABLE DATA: wp_give_donors */
INSERT INTO `wp_give_donors` VALUES("1", "10", "cameronbowler84@gmail.com", "Cameron Bowler", "1.000000", "2", "15914,16066", "", "2018-05-23 23:04:51", "", "", "0000-00-00 00:00:00");

/* INSERT TABLE DATA: wp_give_formmeta */
INSERT INTO `wp_give_formmeta` VALUES("1", "101", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_give_formmeta` VALUES("2", "101", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_give_formmeta` VALUES("3", "101", "_give_form_sales", "2");
INSERT INTO `wp_give_formmeta` VALUES("4", "101", "_give_form_earnings", "1");
INSERT INTO `wp_give_formmeta` VALUES("5", "101", "_give_form_status", "open");
INSERT INTO `wp_give_formmeta` VALUES("19792", "101", "_give_form_sales", "2");
INSERT INTO `wp_give_formmeta` VALUES("19793", "101", "_give_form_earnings", "1");
INSERT INTO `wp_give_formmeta` VALUES("19948", "101", "_give_logged_in_only", "enabled");
INSERT INTO `wp_give_formmeta` VALUES("19949", "101", "_give_customize_offline_donations", "disabled");
INSERT INTO `wp_give_formmeta` VALUES("19950", "101", "_give_set_price", "1.000000");
INSERT INTO `wp_give_formmeta` VALUES("19951", "101", "_give_custom_amount_minimum", "");
INSERT INTO `wp_give_formmeta` VALUES("19952", "101", "_give_offline-donation-instruction_notification", "global");
INSERT INTO `wp_give_formmeta` VALUES("19953", "101", "_give_offline-donation-instruction_email_message", "");
INSERT INTO `wp_give_formmeta` VALUES("19954", "101", "_give_offline-donation-instruction_email_subject", "");
INSERT INTO `wp_give_formmeta` VALUES("19955", "101", "_edit_lock", "1528988894:10");
INSERT INTO `wp_give_formmeta` VALUES("19956", "101", "_edit_last", "10");
INSERT INTO `wp_give_formmeta` VALUES("19957", "101", "_give_levels_minimum_amount", "10.000000");
INSERT INTO `wp_give_formmeta` VALUES("19958", "101", "_give_levels_maximum_amount", "100.000000");
INSERT INTO `wp_give_formmeta` VALUES("19959", "101", "_give_price_option", "multi");
INSERT INTO `wp_give_formmeta` VALUES("19960", "101", "_give_display_style", "buttons");
INSERT INTO `wp_give_formmeta` VALUES("19961", "101", "_give_custom_amount", "enabled");
INSERT INTO `wp_give_formmeta` VALUES("19962", "101", "_give_custom_amount_range_minimum", "1.000000");
INSERT INTO `wp_give_formmeta` VALUES("19963", "101", "_give_custom_amount_range_maximum", "999999.990000");
INSERT INTO `wp_give_formmeta` VALUES("19964", "101", "_give_custom_amount_text", "");
INSERT INTO `wp_give_formmeta` VALUES("19965", "101", "_give_donation_levels", "a:4:{i:0;a:4:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"0\";}s:12:\"_give_amount\";s:9:\"10.000000\";s:10:\"_give_text\";s:0:\"\";s:13:\"_give_default\";s:7:\"default\";}i:1;a:3:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"1\";}s:12:\"_give_amount\";s:9:\"20.000000\";s:10:\"_give_text\";s:0:\"\";}i:2;a:3:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"2\";}s:12:\"_give_amount\";s:9:\"50.000000\";s:10:\"_give_text\";s:0:\"\";}i:3;a:3:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"3\";}s:12:\"_give_amount\";s:10:\"100.000000\";s:10:\"_give_text\";s:0:\"\";}}");
INSERT INTO `wp_give_formmeta` VALUES("19966", "101", "_give_payment_display", "onpage");
INSERT INTO `wp_give_formmeta` VALUES("19967", "101", "_give_reveal_label", "");
INSERT INTO `wp_give_formmeta` VALUES("19968", "101", "_give_checkout_label", "");
INSERT INTO `wp_give_formmeta` VALUES("19969", "101", "_give_default_gateway", "global");
INSERT INTO `wp_give_formmeta` VALUES("19970", "101", "_give_company_field", "global");
INSERT INTO `wp_give_formmeta` VALUES("19971", "101", "_give_show_register_form", "none");
INSERT INTO `wp_give_formmeta` VALUES("19972", "101", "_give_form_floating_labels", "global");
INSERT INTO `wp_give_formmeta` VALUES("19973", "101", "_give_goal_option", "disabled");
INSERT INTO `wp_give_formmeta` VALUES("19974", "101", "_give_goal_format", "amount");
INSERT INTO `wp_give_formmeta` VALUES("19975", "101", "_give_set_goal", "1.000000");
INSERT INTO `wp_give_formmeta` VALUES("19976", "101", "_give_number_of_donation_goal", "1");
INSERT INTO `wp_give_formmeta` VALUES("19977", "101", "_give_number_of_donor_goal", "1");
INSERT INTO `wp_give_formmeta` VALUES("19978", "101", "_give_goal_color", "#2bc253");
INSERT INTO `wp_give_formmeta` VALUES("19979", "101", "_give_close_form_when_goal_achieved", "disabled");
INSERT INTO `wp_give_formmeta` VALUES("19980", "101", "_give_form_goal_achieved_message", "Thank you to all our donors, we have met our fundraising goal.");
INSERT INTO `wp_give_formmeta` VALUES("19981", "101", "_give_display_content", "disabled");
INSERT INTO `wp_give_formmeta` VALUES("19982", "101", "_give_content_placement", "give_pre_form");
INSERT INTO `wp_give_formmeta` VALUES("19983", "101", "_give_form_content", "");
INSERT INTO `wp_give_formmeta` VALUES("19984", "101", "_give_terms_option", "global");
INSERT INTO `wp_give_formmeta` VALUES("19985", "101", "_give_agree_label", "");
INSERT INTO `wp_give_formmeta` VALUES("19986", "101", "_give_agree_text", "Acceptance of any contribution, gift or grant is at the discretion of the South Island Centre. The South Island Centre will not accept any gift unless it can be used or expended consistently with the purpose and mission of the South Island Centre.\r\n\r\nNo irrevocable gift, whether outright or life-income in character, will be accepted if under any reasonable set of circumstances the gift would jeopardize the donorâ€™s financial security.\r\n\r\nThe South Island Centre will refrain from providing advice about the tax or other treatment of gifts and will encourage donors to seek guidance from their own professional advisers to assist them in the process of making their donation.\r\n\r\nThe South Island Centre will accept donations of cash or publicly traded securities. Gifts of in-kind services will be accepted at the discretion of the South Island Centre.\r\n\r\nCertain other gifts, real property, personal property, in-kind gifts, non-liquid securities, and contributions whose sources are not transparent or whose use is restricted in some manner, must be reviewed prior to acceptance due to the special obligations raised or liabilities they may pose for South Island Centre.\r\n\r\nThe South Island Centre will provide acknowledgments to donors meeting tax requirements for property received by the charity as a gift. However, except for gifts of cash and publicly traded securities, no value shall be ascribed to any receipt or other form of substantiation of a gift received by South Island Centre.\r\n\r\nThe South Island Centre will respect the intent of the donor relating to gifts for restricted purposes and those relating to the desire to remain anonymous. With respect to anonymous gifts, the South Island Centre will restrict information about the donor to only those staff members with a need to know.\r\n\r\nThe South Island Centre will not compensate, whether through commissions, finders\' fees, or other means, any third party for directing a gift or a donor to the South Island Centre.");
INSERT INTO `wp_give_formmeta` VALUES("19987", "101", "_give_email_options", "global");
INSERT INTO `wp_give_formmeta` VALUES("19988", "101", "_give_email_template", "default");
INSERT INTO `wp_give_formmeta` VALUES("19989", "101", "_give_email_logo", "");
INSERT INTO `wp_give_formmeta` VALUES("19990", "101", "_give_from_name", "South Island Centre");
INSERT INTO `wp_give_formmeta` VALUES("19991", "101", "_give_from_email", "info@localhost");
INSERT INTO `wp_give_formmeta` VALUES("19992", "101", "_give_new-donation_notification", "global");
INSERT INTO `wp_give_formmeta` VALUES("19993", "101", "_give_new-donation_email_subject", "New Donation - #{payment_id}");
INSERT INTO `wp_give_formmeta` VALUES("19994", "101", "_give_new-donation_email_header", "New Donation!");
INSERT INTO `wp_give_formmeta` VALUES("19995", "101", "_give_new-donation_email_message", "Hi there,\r\n\r\nThis email is to inform you that a new donation has been made on your website: <a href=\"http://localhost:8888/TestSICPage/wordpress\" target=\"_blank\" rel=\"noopener\">http://localhost:8888/TestSICPage/wordpress</a>.\r\n\r\n<strong>Donor:</strong> {name}\r\n<strong>Donation:</strong> {donation}\r\n<strong>Amount:</strong> {amount}\r\n<strong>Payment Method:</strong> {payment_method}\r\n\r\nThank you,\r\n\r\n{sitename}");
INSERT INTO `wp_give_formmeta` VALUES("19996", "101", "_give_new-donation_email_content_type", "text/html");
INSERT INTO `wp_give_formmeta` VALUES("19997", "101", "_give_new-donation_recipient", "a:1:{i:0;a:1:{s:5:\"email\";s:14:\"info@localhost\";}}");
INSERT INTO `wp_give_formmeta` VALUES("19998", "101", "_give_donation-receipt_notification", "global");
INSERT INTO `wp_give_formmeta` VALUES("19999", "101", "_give_donation-receipt_email_subject", "Donation Receipt");
INSERT INTO `wp_give_formmeta` VALUES("20000", "101", "_give_donation-receipt_email_header", "Donation Receipt");
INSERT INTO `wp_give_formmeta` VALUES("20001", "101", "_give_donation-receipt_email_message", "Dear {name},\r\n\r\nThank you for your donation. Your generosity is appreciated! Here are the details of your donation:\r\n\r\n<strong>Donor:</strong> {fullname}\r\n<strong>Donation:</strong> {donation}\r\n<strong>Donation Date:</strong> {date}\r\n<strong>Amount:</strong> {amount}\r\n<strong>Payment Method:</strong> {payment_method}\r\n<strong>Payment ID:</strong> {payment_id}\r\n<strong>Receipt ID:</strong> {receipt_id}\r\n\r\n{receipt_link}\r\n\r\nSincerely,\r\n{sitename}");
INSERT INTO `wp_give_formmeta` VALUES("20002", "101", "_give_donation-receipt_email_content_type", "text/html");
INSERT INTO `wp_give_formmeta` VALUES("20003", "101", "site-sidebar-layout", "default");
INSERT INTO `wp_give_formmeta` VALUES("20004", "101", "site-content-layout", "default");

/* INSERT TABLE DATA: wp_give_logmeta */
INSERT INTO `wp_give_logmeta` VALUES("1", "1", "_give_log_form_id", "101");
INSERT INTO `wp_give_logmeta` VALUES("2", "1", "_give_log_price_id", "0");
INSERT INTO `wp_give_logmeta` VALUES("3", "2", "_give_log_form_id", "101");
INSERT INTO `wp_give_logmeta` VALUES("4", "2", "_give_log_price_id", "0");

/* INSERT TABLE DATA: wp_give_logs */
INSERT INTO `wp_give_logs` VALUES("1", "", "", "15914", "sale", "2018-05-23 16:04:51", "2018-05-23 16:04:51");
INSERT INTO `wp_give_logs` VALUES("2", "", "", "16066", "sale", "2018-06-14 08:11:05", "2018-06-14 08:11:05");

/* INSERT TABLE DATA: wp_give_paymentmeta */
INSERT INTO `wp_give_paymentmeta` VALUES("1", "153", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_give_paymentmeta` VALUES("2", "153", "_wxr_import_user_slug", "harshadd");
INSERT INTO `wp_give_paymentmeta` VALUES("3", "15914", "_give_payment_currency", "CAD");
INSERT INTO `wp_give_paymentmeta` VALUES("4", "15914", "_give_donor_billing_first_name", "Cameron");
INSERT INTO `wp_give_paymentmeta` VALUES("5", "15914", "_give_donor_billing_last_name", "Bowler");
INSERT INTO `wp_give_paymentmeta` VALUES("6", "15914", "_give_payment_gateway", "manual");
INSERT INTO `wp_give_paymentmeta` VALUES("7", "15914", "_give_payment_form_title", "Make a gift today");
INSERT INTO `wp_give_paymentmeta` VALUES("8", "15914", "_give_payment_form_id", "101");
INSERT INTO `wp_give_paymentmeta` VALUES("9", "15914", "_give_payment_price_id", "");
INSERT INTO `wp_give_paymentmeta` VALUES("10", "15914", "_give_payment_donor_email", "cameronbowler84@gmail.com");
INSERT INTO `wp_give_paymentmeta` VALUES("11", "15914", "_give_payment_donor_ip", "::1");
INSERT INTO `wp_give_paymentmeta` VALUES("12", "15914", "_give_payment_purchase_key", "180f8abcdfc91b352c0615c4ce0e6635");
INSERT INTO `wp_give_paymentmeta` VALUES("13", "15914", "_give_payment_mode", "test");
INSERT INTO `wp_give_paymentmeta` VALUES("14", "15914", "_give_payment_donor_id", "1");
INSERT INTO `wp_give_paymentmeta` VALUES("15", "15914", "_give_payment_total", "0");
INSERT INTO `wp_give_paymentmeta` VALUES("16", "15914", "_give_current_url", "http://localhost:8888/TestSICPage/wordpress/donate-2/");
INSERT INTO `wp_give_paymentmeta` VALUES("17", "15914", "_give_current_page_id", "103");
INSERT INTO `wp_give_paymentmeta` VALUES("18", "15914", "_give_completed_date", "2018-05-23 16:04:51");
INSERT INTO `wp_give_paymentmeta` VALUES("19955", "153", "_give_payment_date", "2018-03-16 07:16:56");
INSERT INTO `wp_give_paymentmeta` VALUES("19956", "153", "_give_payment_donor_id", "");
INSERT INTO `wp_give_paymentmeta` VALUES("19957", "153", "_give_payment_donor_email", "");
INSERT INTO `wp_give_paymentmeta` VALUES("19958", "153", "_give_payment_donor_ip", "");
INSERT INTO `wp_give_paymentmeta` VALUES("19959", "15914", "_give_payment_date", "2018-05-23 16:04:51");
INSERT INTO `wp_give_paymentmeta` VALUES("19960", "15914", "_give_payment_donor_id", "");
INSERT INTO `wp_give_paymentmeta` VALUES("19961", "15914", "_give_payment_donor_email", "");
INSERT INTO `wp_give_paymentmeta` VALUES("19962", "15914", "_give_payment_donor_ip", "");
INSERT INTO `wp_give_paymentmeta` VALUES("19963", "16066", "_give_payment_total", "1.000000");
INSERT INTO `wp_give_paymentmeta` VALUES("19964", "16066", "_give_payment_currency", "CAD");
INSERT INTO `wp_give_paymentmeta` VALUES("19965", "16066", "_give_donor_billing_first_name", "Cameron");
INSERT INTO `wp_give_paymentmeta` VALUES("19966", "16066", "_give_donor_billing_last_name", "Bowler");
INSERT INTO `wp_give_paymentmeta` VALUES("19967", "16066", "_give_payment_gateway", "paypal");
INSERT INTO `wp_give_paymentmeta` VALUES("19968", "16066", "_give_payment_form_title", "Make a gift today");
INSERT INTO `wp_give_paymentmeta` VALUES("19969", "16066", "_give_payment_form_id", "101");
INSERT INTO `wp_give_paymentmeta` VALUES("19970", "16066", "_give_payment_price_id", "custom");
INSERT INTO `wp_give_paymentmeta` VALUES("19971", "16066", "_give_payment_donor_email", "cameronbowler84@gmail.com");
INSERT INTO `wp_give_paymentmeta` VALUES("19972", "16066", "_give_payment_donor_ip", "70.67.253.15");
INSERT INTO `wp_give_paymentmeta` VALUES("19973", "16066", "_give_payment_purchase_key", "5871ecf94c8cad9d4bdbaf3ba64159d7");
INSERT INTO `wp_give_paymentmeta` VALUES("19974", "16066", "_give_payment_mode", "live");
INSERT INTO `wp_give_paymentmeta` VALUES("19975", "16066", "_give_payment_donor_id", "1");
INSERT INTO `wp_give_paymentmeta` VALUES("19976", "16066", "_give_current_url", "http://localhost:8888/TestSICPage/wordpress/donate-2/");
INSERT INTO `wp_give_paymentmeta` VALUES("19977", "16066", "_give_current_page_id", "103");
INSERT INTO `wp_give_paymentmeta` VALUES("19978", "16066", "give_last_paypal_ipn_received", "1528963910");
INSERT INTO `wp_give_paymentmeta` VALUES("19979", "16066", "_give_payment_transaction_id", "9L129955194035046");
INSERT INTO `wp_give_paymentmeta` VALUES("19980", "16066", "_give_completed_date", "2018-06-14 08:11:50");

/* INSERT TABLE DATA: wp_nextend2_image_storage */
INSERT INTO `wp_nextend2_image_storage` VALUES("1", "a5ee5bcf1ebf5c6ce6f50dbdc8931486", "$upload$/2018/05/IMG_3436.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("2", "7148fa26ad6dd9ee953b6c3f5f30c99d", "https://smartslider3.com/sample/programmer.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("3", "6681af77aa8c9f342a3f8a98939dca43", "https://smartslider3.com/sample/free1.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");
INSERT INTO `wp_nextend2_image_storage` VALUES("4", "2ebcc61fcb32c829e4927fbfd782ff7a", "https://smartslider3.com/sample/photographer.jpg", "eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==");

/* INSERT TABLE DATA: wp_nextend2_section_storage */
INSERT INTO `wp_nextend2_section_storage` VALUES("10000", "system", "global", "n2_ss3_version", "3.2.14", "1", "1");
INSERT INTO `wp_nextend2_section_storage` VALUES("10001", "smartslider", "sliderChanged", "1", "0", "0", "1");

/* INSERT TABLE DATA: wp_nextend2_smartslider3_sliders */
INSERT INTO `wp_nextend2_smartslider3_sliders` VALUES("1", NULL, "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");
INSERT INTO `wp_nextend2_smartslider3_sliders` VALUES("2", NULL, "Landing Slider", "simple", "{\"width\":1200,\"height\":500,\"responsive-mode\":\"fullwidth\",\"widgetarrow\":\"imageEmpty\"}", "2018-05-22 14:36:27", "", "1");

/* INSERT TABLE DATA: wp_nextend2_smartslider3_sliders_xref */
INSERT INTO `wp_nextend2_smartslider3_sliders_xref` VALUES("0", "2", "0");

/* INSERT TABLE DATA: wp_nextend2_smartslider3_slides */
INSERT INTO `wp_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");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("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");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("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");
INSERT INTO `wp_nextend2_smartslider3_slides` VALUES("4", "IMG_3436", "2", "2018-05-22 17:53:58", "2028-05-23 17:53:58", "1", "0", "[]", "", "$upload$/2018/05/IMG_3436.jpg", "{\"backgroundImage\":\"$upload$\\/2018\\/05\\/IMG_3436.jpg\",\"version\":\"3.2.14\"}", "0", "0");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1", "siteurl", "http://localhost:8888/TestSICPage/wordpress", "yes");
INSERT INTO `wp_options` VALUES("2", "blogname", "South Island Centre", "yes");
INSERT INTO `wp_options` VALUES("3", "blogdescription", "Welcome to South Island Centre for Counselling and Training!", "yes");
INSERT INTO `wp_options` VALUES("4", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("5", "admin_email", "info@localhost", "yes");
INSERT INTO `wp_options` VALUES("6", "start_of_week", "0", "yes");
INSERT INTO `wp_options` VALUES("7", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("8", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("9", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("10", "comments_notify", "", "yes");
INSERT INTO `wp_options` VALUES("11", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("12", "rss_use_excerpt", "0", "yes");
INSERT INTO `wp_options` VALUES("13", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wp_options` VALUES("14", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wp_options` VALUES("15", "mailserver_pass", "password", "yes");
INSERT INTO `wp_options` VALUES("16", "mailserver_port", "110", "yes");
INSERT INTO `wp_options` VALUES("17", "default_category", "1", "yes");
INSERT INTO `wp_options` VALUES("18", "default_comment_status", "closed", "yes");
INSERT INTO `wp_options` VALUES("19", "default_ping_status", "closed", "yes");
INSERT INTO `wp_options` VALUES("20", "default_pingback_flag", "", "yes");
INSERT INTO `wp_options` VALUES("21", "posts_per_page", "10", "yes");
INSERT INTO `wp_options` VALUES("22", "date_format", "F j, Y", "yes");
INSERT INTO `wp_options` VALUES("23", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("24", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("28", "comment_moderation", "1", "yes");
INSERT INTO `wp_options` VALUES("29", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("30", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `wp_options` VALUES("32", "hack_file", "0", "yes");
INSERT INTO `wp_options` VALUES("33", "blog_charset", "UTF-8", "yes");
INSERT INTO `wp_options` VALUES("34", "moderation_keys", "", "no");
INSERT INTO `wp_options` VALUES("36", "home", "http://localhost:8888/TestSICPage/wordpress", "yes");
INSERT INTO `wp_options` VALUES("37", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("38", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("40", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("41", "gmt_offset", "", "yes");
INSERT INTO `wp_options` VALUES("42", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("43", "recently_edited", "a:5:{i:0;s:120:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/plugins/charitable/templates/campaign/donate-modal-window.php\";i:1;s:113:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/plugins/charitable/templates/content-donation-form.php\";i:2;s:92:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/plugins/charitable/charitable.php\";i:3;s:86:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/plugins/akismet/akismet.php\";i:4;s:90:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/themes/dt-the7/editor-style.css\";}", "no");
INSERT INTO `wp_options` VALUES("46", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("47", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("48", "comment_registration", "1", "yes");
INSERT INTO `wp_options` VALUES("49", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("50", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("51", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("52", "db_version", "38590", "yes");
INSERT INTO `wp_options` VALUES("53", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("54", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("55", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("56", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("57", "show_on_front", "page", "yes");
INSERT INTO `wp_options` VALUES("58", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("59", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("60", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("61", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("62", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("63", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("64", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("65", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("66", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("67", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("68", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("69", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("70", "image_default_link_type", "", "yes");
INSERT INTO `wp_options` VALUES("71", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("72", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("73", "close_comments_for_old_posts", "", "yes");
INSERT INTO `wp_options` VALUES("74", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("75", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("76", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("77", "page_comments", "", "yes");
INSERT INTO `wp_options` VALUES("78", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("79", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("80", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("81", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("82", "widget_categories", "a:2:{i:1;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");
INSERT INTO `wp_options` VALUES("83", "widget_text", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("84", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("85", "uninstall_plugins", "a:10:{s:36:\"contact-form-plugin/contact_form.php\";s:23:\"cntctfrm_delete_options\";s:19:\"captcha/captcha.php\";s:20:\"cptch_delete_options\";s:45:\"easy-paypal-donation/easy-paypal-donation.php\";a:2:{i:0;s:21:\"wpedon_wpeasydonation\";i:1;s:16:\"wpedon_uninstall\";}s:28:\"cms-tree-page-view/index.php\";s:17:\"cms_tpv_uninstall\";s:27:\"wp-optimize/wp-optimize.php\";s:21:\"wpo_uninstall_actions\";s:25:\"go_pricing/go_pricing.php\";a:2:{i:0;s:12:\"GW_GoPricing\";i:1;s:9:\"uninstall\";}s:27:\"LayerSlider/layerslider.php\";s:29:\"layerslider_uninstall_scripts\";s:39:\"simple-custom-css/simple-custom-css.php\";s:15:\"sccss_uninstall\";s:41:\"google-maps-widget/google-maps-widget.php\";a:2:{i:0;s:3:\"GMW\";i:1;s:9:\"uninstall\";}s:33:\"rotatingtweets/rotatingtweets.php\";s:24:\"rotatingtweets_uninstall\";}", "no");
INSERT INTO `wp_options` VALUES("86", "timezone_string", "America/Vancouver", "yes");
INSERT INTO `wp_options` VALUES("87", "page_for_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("88", "page_on_front", "4", "yes");
INSERT INTO `wp_options` VALUES("89", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("90", "link_manager_enabled", "0", "yes");
INSERT INTO `wp_options` VALUES("91", "initial_db_version", "26691", "yes");
INSERT INTO `wp_options` VALUES("92", "wp_user_roles", "a:14:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:226:{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:16:\"read_ai1ec_event\";b:1;s:16:\"edit_ai1ec_event\";b:1;s:17:\"edit_ai1ec_events\";b:1;s:24:\"edit_others_ai1ec_events\";b:1;s:25:\"edit_private_ai1ec_events\";b:1;s:27:\"edit_published_ai1ec_events\";b:1;s:18:\"delete_ai1ec_event\";b:1;s:19:\"delete_ai1ec_events\";b:1;s:26:\"delete_others_ai1ec_events\";b:1;s:29:\"delete_published_ai1ec_events\";b:1;s:27:\"delete_private_ai1ec_events\";b:1;s:20:\"publish_ai1ec_events\";b:1;s:25:\"read_private_ai1ec_events\";b:1;s:24:\"manage_events_categories\";b:1;s:18:\"manage_ai1ec_feeds\";b:1;s:19:\"switch_ai1ec_themes\";b:1;s:20:\"manage_ai1ec_options\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:17:\"view_give_reports\";b:1;s:24:\"view_give_sensitive_data\";b:1;s:19:\"export_give_reports\";b:1;s:20:\"manage_give_settings\";b:1;s:18:\"view_give_payments\";b:1;s:14:\"edit_give_form\";b:1;s:14:\"read_give_form\";b:1;s:16:\"delete_give_form\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"delete_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:22:\"manage_give_form_terms\";b:1;s:20:\"edit_give_form_terms\";b:1;s:22:\"delete_give_form_terms\";b:1;s:22:\"assign_give_form_terms\";b:1;s:20:\"view_give_form_stats\";b:1;s:17:\"import_give_forms\";b:1;s:17:\"edit_give_payment\";b:1;s:17:\"read_give_payment\";b:1;s:19:\"delete_give_payment\";b:1;s:18:\"edit_give_payments\";b:1;s:25:\"edit_others_give_payments\";b:1;s:21:\"publish_give_payments\";b:1;s:26:\"read_private_give_payments\";b:1;s:20:\"delete_give_payments\";b:1;s:28:\"delete_private_give_payments\";b:1;s:30:\"delete_published_give_payments\";b:1;s:27:\"delete_others_give_payments\";b:1;s:26:\"edit_private_give_payments\";b:1;s:28:\"edit_published_give_payments\";b:1;s:25:\"manage_give_payment_terms\";b:1;s:23:\"edit_give_payment_terms\";b:1;s:25:\"delete_give_payment_terms\";b:1;s:25:\"assign_give_payment_terms\";b:1;s:23:\"view_give_payment_stats\";b:1;s:20:\"import_give_payments\";b:1;s:30:\"view_charitable_sensitive_data\";b:1;s:25:\"export_charitable_reports\";b:1;s:26:\"manage_charitable_settings\";b:1;s:13:\"edit_campaign\";b:1;s:13:\"read_campaign\";b:1;s:15:\"delete_campaign\";b:1;s:14:\"edit_campaigns\";b:1;s:21:\"edit_others_campaigns\";b:1;s:17:\"publish_campaigns\";b:1;s:22:\"read_private_campaigns\";b:1;s:16:\"delete_campaigns\";b:1;s:24:\"delete_private_campaigns\";b:1;s:26:\"delete_published_campaigns\";b:1;s:23:\"delete_others_campaigns\";b:1;s:22:\"edit_private_campaigns\";b:1;s:24:\"edit_published_campaigns\";b:1;s:13:\"edit_donation\";b:1;s:13:\"read_donation\";b:1;s:15:\"delete_donation\";b:1;s:14:\"edit_donations\";b:1;s:21:\"edit_others_donations\";b:1;s:17:\"publish_donations\";b:1;s:22:\"read_private_donations\";b:1;s:16:\"delete_donations\";b:1;s:24:\"delete_private_donations\";b:1;s:26:\"delete_published_donations\";b:1;s:23:\"delete_others_donations\";b:1;s:22:\"edit_private_donations\";b:1;s:24:\"edit_published_donations\";b:1;s:21:\"manage_campaign_terms\";b:1;s:19:\"edit_campaign_terms\";b:1;s:21:\"delete_campaign_terms\";b:1;s:21:\"assign_campaign_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:9:\"access_cp\";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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:67:{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:16:\"read_ai1ec_event\";b:1;s:16:\"edit_ai1ec_event\";b:1;s:17:\"edit_ai1ec_events\";b:1;s:24:\"edit_others_ai1ec_events\";b:1;s:25:\"edit_private_ai1ec_events\";b:1;s:27:\"edit_published_ai1ec_events\";b:1;s:18:\"delete_ai1ec_event\";b:1;s:19:\"delete_ai1ec_events\";b:1;s:26:\"delete_others_ai1ec_events\";b:1;s:29:\"delete_published_ai1ec_events\";b:1;s:27:\"delete_private_ai1ec_events\";b:1;s:20:\"publish_ai1ec_events\";b:1;s:25:\"read_private_ai1ec_events\";b:1;s:24:\"manage_events_categories\";b:1;s:18:\"manage_ai1ec_feeds\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";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:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:30:{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:16:\"read_ai1ec_event\";b:1;s:16:\"edit_ai1ec_event\";b:1;s:17:\"edit_ai1ec_events\";b:1;s:24:\"edit_others_ai1ec_events\";b:1;s:25:\"edit_private_ai1ec_events\";b:1;s:27:\"edit_published_ai1ec_events\";b:1;s:18:\"delete_ai1ec_event\";b:1;s:19:\"delete_ai1ec_events\";b:1;s:26:\"delete_others_ai1ec_events\";b:1;s:29:\"delete_published_ai1ec_events\";b:1;s:27:\"delete_private_ai1ec_events\";b:1;s:20:\"publish_ai1ec_events\";b:1;s:25:\"read_private_ai1ec_events\";b:1;s:24:\"manage_events_categories\";b:1;s:18:\"manage_ai1ec_feeds\";b:1;s:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:7:{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:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";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:21:\"ai1ec_event_assistant\";a:2:{s:4:\"name\";s:17:\"Event Contributor\";s:12:\"capabilities\";a:7:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_ai1ec_events\";b:1;s:17:\"read_ai1ec_events\";b:1;s:19:\"delete_ai1ec_events\";b:1;s:27:\"edit_published_ai1ec_events\";b:1;s:29:\"delete_published_ai1ec_events\";b:1;}}s:12:\"give_manager\";a:2:{s:4:\"name\";s:12:\"Give Manager\";s:12:\"capabilities\";a:63:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";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:10:\"edit_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:13:\"publish_pages\";b:1;s:13:\"publish_posts\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:17:\"view_give_reports\";b:1;s:24:\"view_give_sensitive_data\";b:1;s:19:\"export_give_reports\";b:1;s:20:\"manage_give_settings\";b:1;s:14:\"edit_give_form\";b:1;s:14:\"read_give_form\";b:1;s:16:\"delete_give_form\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"delete_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:22:\"manage_give_form_terms\";b:1;s:20:\"edit_give_form_terms\";b:1;s:22:\"delete_give_form_terms\";b:1;s:22:\"assign_give_form_terms\";b:1;s:20:\"view_give_form_stats\";b:1;s:17:\"import_give_forms\";b:1;s:17:\"edit_give_payment\";b:1;s:17:\"read_give_payment\";b:1;s:19:\"delete_give_payment\";b:1;s:18:\"edit_give_payments\";b:1;s:25:\"edit_others_give_payments\";b:1;s:21:\"publish_give_payments\";b:1;s:26:\"read_private_give_payments\";b:1;s:20:\"delete_give_payments\";b:1;s:28:\"delete_private_give_payments\";b:1;s:30:\"delete_published_give_payments\";b:1;s:27:\"delete_others_give_payments\";b:1;s:26:\"edit_private_give_payments\";b:1;s:28:\"edit_published_give_payments\";b:1;s:25:\"manage_give_payment_terms\";b:1;s:23:\"edit_give_payment_terms\";b:1;s:25:\"delete_give_payment_terms\";b:1;s:25:\"assign_give_payment_terms\";b:1;s:23:\"view_give_payment_stats\";b:1;s:20:\"import_give_payments\";b:1;}}s:15:\"give_accountant\";a:2:{s:4:\"name\";s:15:\"Give Accountant\";s:12:\"capabilities\";a:9:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:15:\"edit_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"view_give_reports\";b:1;s:19:\"export_give_reports\";b:1;s:18:\"edit_give_payments\";b:1;s:18:\"view_give_payments\";b:1;}}s:11:\"give_worker\";a:2:{s:4:\"name\";s:11:\"Give Worker\";s:12:\"capabilities\";a:16:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:18:\"edit_give_payments\";b:1;s:17:\"delete_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;}}s:10:\"give_donor\";a:2:{s:4:\"name\";s:10:\"Give Donor\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:16:\"campaign_manager\";a:2:{s:4:\"name\";s:16:\"Campaign Manager\";s:12:\"capabilities\";a:60:{s:4:\"read\";b:1;s:12:\"delete_posts\";b:1;s:10:\"edit_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:12:\"upload_files\";b:1;s:20:\"edit_published_posts\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:12:\"delete_pages\";b:1;s:13:\"publish_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:17:\"edit_others_pages\";b:1;s:10:\"edit_pages\";b:1;s:17:\"edit_others_posts\";b:1;s:12:\"manage_links\";b:1;s:17:\"manage_categories\";b:1;s:17:\"moderate_comments\";b:1;s:6:\"import\";b:1;s:6:\"export\";b:1;s:15:\"unfiltered_html\";b:1;s:30:\"view_charitable_sensitive_data\";b:1;s:25:\"export_charitable_reports\";b:1;s:13:\"edit_campaign\";b:1;s:13:\"read_campaign\";b:1;s:15:\"delete_campaign\";b:1;s:14:\"edit_campaigns\";b:1;s:21:\"edit_others_campaigns\";b:1;s:17:\"publish_campaigns\";b:1;s:22:\"read_private_campaigns\";b:1;s:16:\"delete_campaigns\";b:1;s:24:\"delete_private_campaigns\";b:1;s:26:\"delete_published_campaigns\";b:1;s:23:\"delete_others_campaigns\";b:1;s:22:\"edit_private_campaigns\";b:1;s:24:\"edit_published_campaigns\";b:1;s:13:\"edit_donation\";b:1;s:13:\"read_donation\";b:1;s:15:\"delete_donation\";b:1;s:14:\"edit_donations\";b:1;s:21:\"edit_others_donations\";b:1;s:17:\"publish_donations\";b:1;s:22:\"read_private_donations\";b:1;s:16:\"delete_donations\";b:1;s:24:\"delete_private_donations\";b:1;s:26:\"delete_published_donations\";b:1;s:23:\"delete_others_donations\";b:1;s:22:\"edit_private_donations\";b:1;s:24:\"edit_published_donations\";b:1;s:21:\"manage_campaign_terms\";b:1;s:19:\"edit_campaign_terms\";b:1;s:21:\"delete_campaign_terms\";b:1;s:21:\"assign_campaign_terms\";b:1;}}s:5:\"donor\";a:2:{s:4:\"name\";s:5:\"Donor\";s:12:\"capabilities\";a:1:{s:4:\"read\";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_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}", "yes");
INSERT INTO `wp_options` VALUES("93", "widget_search", "a:3:{i:3;a:1:{s:5:\"title\";s:6:\"Search\";}i:4;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("94", "widget_recent-posts", "a:2:{i:1;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("95", "widget_recent-comments", "a:2:{i:1;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("96", "widget_archives", "a:2:{i:1;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("97", "widget_meta", "a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("98", "sidebars_widgets", "a:11:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"calendar-2\";i:1;s:10:\"nav_menu-4\";i:2;s:8:\"search-3\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-4\";i:1;s:14:\"recent-posts-1\";i:2;s:17:\"recent-comments-1\";i:3;s:10:\"archives-1\";i:4;s:12:\"categories-1\";i:5;s:6:\"meta-1\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:1:{i:0;s:14:\"wpcw_contact-2\";}s:24:\"advanced-footer-widget-2\";a:1:{i:0;s:9:\"do-etfw-2\";}s:24:\"advanced-footer-widget-3\";a:1:{i:0;s:8:\"fbw_id-2\";}s:24:\"advanced-footer-widget-4\";a:1:{i:0;s:21:\"ai1ec_agenda_widget-2\";}s:18:\"smartslider_area_1\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("99", "cron", "a:13:{i:1529442605;a:1:{s:29:\"wp_session_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1529443185;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:1529443741;a:1:{s:10:\"ai1ec_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1529450204;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:1529451296;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:1529478072;a:1:{s:33:\"charitable_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1529501145;a:1:{s:27:\"give_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1529508831;a:1:{s:17:\"gravityforms_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:1529512596;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:1529517692;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:1529523584;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1530023705;a:1:{s:28:\"give_weekly_scheduled_events\";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");
INSERT INTO `wp_options` VALUES("103", "_transient_random_seed", "e47bd5385964a993e4dd05b4cb07f5f7", "yes");
INSERT INTO `wp_options` VALUES("104", "auth_key", "C=U<vk.dn;C`AZh6V9lItUpX6MVcdq|jGwS50V0+Tvt8K5b(x2ysZb4.VCXgCRs`", "yes");
INSERT INTO `wp_options` VALUES("105", "auth_salt", "GbixZqWW$KCT+_*BEWckQ~PE+.!:^BV6Z1KYL:;/ho[xX`28R#y{,M]L@2=S>@z=", "yes");
INSERT INTO `wp_options` VALUES("106", "logged_in_key", ";Js*f&+ib=Q1P%=x!d=jI!qBj-CH5R_PzcQ9n&r^{=*q*=R[m=pPja+H6DEC*_QM", "yes");
INSERT INTO `wp_options` VALUES("107", "logged_in_salt", "JESPz/+_NGawQ rr1Xh$=P-Bnq&|D^p4%ct1fFB0.xk2)$](vm9fz9lWIBf-KPAa", "yes");
INSERT INTO `wp_options` VALUES("108", "nonce_key", "HIo*C^9=FZt#l7;lEh8mvXP>6:c-KDX]O4-HIP<$c@6tmlMY+;FQmP^fWx!&$r1L", "yes");
INSERT INTO `wp_options` VALUES("109", "nonce_salt", "0>nZVv9-##]7$gVW9T>5HVPYv0}9!&$.+fIF^qpDp250-%o&+isqLyCwQIJpC;vX", "yes");
INSERT INTO `wp_options` VALUES("164", "theme_mods_twentyfourteen", "a:2:{s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:9:\"secondary\";i:3;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522253081;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"nav_menu-4\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:8:\"search-3\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("165", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("171", "recently_activated", "a:1:{s:33:\"rotatingtweets/rotatingtweets.php\";i:1528901594;}", "yes");
INSERT INTO `wp_options` VALUES("180", "widget_calendar", "a:2:{i:2;a:1:{s:5:\"title\";s:19:\"Our Events Calendar\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("181", "widget_nav_menu", "a:2:{i:4;a:2:{s:5:\"title\";s:7:\"Find us\";s:8:\"nav_menu\";i:3;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("235", "_transient_twentyfourteen_category_count", "1", "yes");
INSERT INTO `wp_options` VALUES("258", "ftp_credentials", "a:3:{s:8:\"hostname\";s:9:\"localhost\";s:8:\"username\";s:6:\"zastre\";s:15:\"connection_type\";s:3:\"ftp\";}", "yes");
INSERT INTO `wp_options` VALUES("266", "current_theme", "Astra", "yes");
INSERT INTO `wp_options` VALUES("267", "theme_mods_responsive", "a:10:{i:0;b:0;s:16:\"background_color\";s:6:\"ffffff\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:3:{s:8:\"top-menu\";i:0;s:11:\"header-menu\";i:0;s:11:\"footer-menu\";i:0;}s:12:\"header_image\";s:86:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/cropped-header_bg2.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:567;s:3:\"url\";s:86:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/cropped-header_bg2.jpg\";s:13:\"thumbnail_url\";s:86:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/cropped-header_bg2.jpg\";s:6:\"height\";i:188;s:5:\"width\";i:937;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1404843422;s:4:\"data\";a:13:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"nav_menu-4\";}s:12:\"main-sidebar\";a:0:{}s:13:\"right-sidebar\";a:0:{}s:12:\"left-sidebar\";a:0:{}s:17:\"left-sidebar-half\";a:0:{}s:18:\"right-sidebar-half\";a:0:{}s:13:\"home-widget-1\";a:1:{i:0;s:6:\"text-2\";}s:13:\"home-widget-2\";a:1:{i:0;s:6:\"text-3\";}s:13:\"home-widget-3\";a:1:{i:0;s:6:\"text-4\";}s:14:\"gallery-widget\";a:0:{}s:15:\"colophon-widget\";a:0:{}s:10:\"top-widget\";a:1:{i:0;s:8:\"search-3\";}s:13:\"footer-widget\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("268", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("269", "responsive_theme_options", "a:37:{s:10:\"breadcrumb\";i:0;s:10:\"cta_button\";i:1;s:12:\"minified_css\";b:0;s:10:\"front_page\";i:1;s:13:\"home_headline\";s:84:\"<h3>Affordable Counselling at South Island Centre for Counselling and Training!</h3>\";s:16:\"home_subheadline\";s:123:\"We provide income-based counselling to get you on your feet again and offer courses and training for personal development. \";s:17:\"home_content_area\";s:1034:\"<p style=\"text-align: left;\"><span style=\"color: #000000; font-size: 16px;\"><span style=\"line-height: 1.5em;\">Whether you\'re struggling with your relationships or your self-confidence ... Â </span><span style=\"line-height: 1.5em;\">You don\'t have to go through it alone.Â </span></span></p>\r\n<p style=\"text-align: left;\"><span style=\"color: #000000; font-size: 16px;\"><span style=\"line-height: 1.5em;\">We are here to help!Â </span></span></p>\r\n<p style=\"text-align: left;\"><span style=\"color: #3366ff;\"><span style=\"font-size: 18px;\"><strong><span style=\"line-height: 1.5em;\">Call us today: (</span></strong></span><span style=\"font-size: 18px;\"><strong><span style=\"line-height: 1.5em;\">250) 472-2851.Â </span></strong></span></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 12px;\">Location and Mailing Address: </span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 12px;\">3821A Cedar Hill Cross Rd,Â </span><span style=\"font-size: 12px;\">Victoria, BC V8P 2M6</span></p>\r\n<p style=\"text-align: left;\"></p>\";s:8:\"cta_text\";N;s:7:\"cta_url\";N;s:16:\"featured_content\";s:1396:\"<img class=\"alignnone size-full wp-image-568\" alt=\"donate_here\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/donate_here.png\" width=\"255\" height=\"68\" />\r\n\r\n<span style=\"font-size: 10px;\"><span style=\"color: #000000;\">Please consider making a donation to ourÂ </span><span style=\"color: #000000;\"><span style=\"color: #339966;\"><strong>Samaritan\'s Fund</strong></span>,Â </span><span style=\"color: #000000;\">so thatÂ everyone, regardless of their financial situation, mayÂ have access to affordable counselling.Â </span></span>\r\n<p style=\"text-align: center;\"><strong>Current Course Offerings:Â </strong></p>\r\n<p style=\"text-align: left;\"><span style=\"color: #339966; font-size: 12px;\"><a title=\"Family Systems Theory Summer Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Family-Systems-Summer-Course-July-7-11-2014.pdf\"><span style=\"color: #339966;\">Family Systems Theory Summer Course</span></a> </span><span style=\"font-size: 12px; line-height: 1.5em;\">(July 7-11, 2014)</span></p>\r\n<p style=\"text-align: center;\"><strong>Up-coming Events:Â </strong></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 12px;\"><span style=\"color: #339966;\">Annual Fundraiser Dessert PartyÂ <span style=\"color: #000000;\">(Saturday, November 22, 2014)</span></span></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 12px;\">Â </span></p>\";s:24:\"google_site_verification\";s:0:\"\";s:22:\"bing_site_verification\";s:0:\"\";s:23:\"yahoo_site_verification\";s:0:\"\";s:23:\"site_statistics_tracker\";s:0:\"\";s:11:\"twitter_uid\";s:0:\"\";s:12:\"facebook_uid\";s:0:\"\";s:12:\"linkedin_uid\";s:0:\"\";s:11:\"youtube_uid\";s:0:\"\";s:11:\"stumble_uid\";s:0:\"\";s:7:\"rss_uid\";s:0:\"\";s:15:\"google_plus_uid\";s:0:\"\";s:13:\"instagram_uid\";s:0:\"\";s:13:\"pinterest_uid\";s:0:\"\";s:8:\"yelp_uid\";s:0:\"\";s:9:\"vimeo_uid\";s:0:\"\";s:14:\"foursquare_uid\";s:0:\"\";s:21:\"responsive_inline_css\";s:0:\"\";s:25:\"responsive_inline_js_head\";s:0:\"\";s:31:\"responsive_inline_css_js_footer\";s:0:\"\";s:26:\"static_page_layout_default\";s:15:\"full-width-page\";s:26:\"single_post_layout_default\";s:15:\"full-width-page\";s:31:\"blog_posts_index_layout_default\";s:15:\"full-width-page\";s:20:\"blog_post_title_text\";s:0:\"\";s:6:\"submit\";s:12:\"Save Options\";s:27:\"responsive_inline_js_footer\";s:0:\"\";s:14:\"googleplus_uid\";s:0:\"\";s:15:\"stumbleupon_uid\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("271", "widget_pages", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("293", "theme_mods_customizr", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:4:\"main\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1393200174;s:4:\"data\";a:9:{s:18:\"orphaned_widgets_1\";a:1:{i:0;s:6:\"text-2\";}s:18:\"orphaned_widgets_2\";a:1:{i:0;s:6:\"text-3\";}s:18:\"orphaned_widgets_3\";a:1:{i:0;s:6:\"text-4\";}s:19:\"wp_inactive_widgets\";a:0:{}s:5:\"right\";a:4:{i:0;s:8:\"search-2\";i:1;s:10:\"archives-2\";i:2;s:12:\"categories-2\";i:3;s:6:\"meta-2\";}s:4:\"left\";a:0:{}s:10:\"footer_one\";a:4:{i:0;s:8:\"search-3\";i:1;s:6:\"meta-3\";i:2;s:10:\"nav_menu-2\";i:3;s:10:\"nav_menu-3\";}s:10:\"footer_two\";a:0:{}s:12:\"footer_three\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("294", "menu_button", "", "yes");
INSERT INTO `wp_options` VALUES("295", "tc_theme_options", "a:46:{s:12:\"tc_menu_type\";s:5:\"hover\";s:7:\"tc_skin\";s:9:\"green.css\";s:13:\"tc_top_border\";i:1;s:14:\"tc_logo_upload\";s:0:\"\";s:14:\"tc_logo_resize\";i:1;s:13:\"tc_fav_upload\";s:0:\"\";s:15:\"tc_front_layout\";s:1:\"f\";s:15:\"tc_front_slider\";s:4:\"demo\";s:15:\"tc_slider_width\";i:1;s:15:\"tc_slider_delay\";i:5000;s:22:\"tc_show_featured_pages\";i:1;s:26:\"tc_show_featured_pages_img\";i:1;s:28:\"tc_featured_page_button_text\";s:12:\"Read more Â»\";s:20:\"tc_featured_page_one\";s:1:\"5\";s:20:\"tc_featured_page_two\";s:2:\"11\";s:22:\"tc_featured_page_three\";s:2:\"88\";s:20:\"tc_featured_text_one\";s:0:\"\";s:20:\"tc_featured_text_two\";s:0:\"\";s:22:\"tc_featured_text_three\";s:0:\"\";s:13:\"tc_breadcrumb\";i:1;s:24:\"tc_sidebar_global_layout\";s:1:\"l\";s:23:\"tc_sidebar_force_layout\";i:0;s:22:\"tc_sidebar_post_layout\";s:1:\"l\";s:19:\"tc_post_list_length\";s:7:\"excerpt\";s:22:\"tc_sidebar_page_layout\";s:1:\"l\";s:16:\"tc_page_comments\";i:0;s:19:\"tc_social_in_header\";i:1;s:25:\"tc_social_in_left-sidebar\";b:1;s:26:\"tc_social_in_right-sidebar\";i:0;s:19:\"tc_social_in_footer\";i:1;s:6:\"tc_rss\";s:34:\"http://localhost/~zastre/?feed=rss\";s:10:\"tc_twitter\";s:0:\"\";s:11:\"tc_facebook\";s:0:\"\";s:9:\"tc_google\";s:0:\"\";s:12:\"tc_instagram\";s:0:\"\";s:12:\"tc_wordpress\";s:0:\"\";s:10:\"tc_youtube\";s:0:\"\";s:12:\"tc_pinterest\";s:0:\"\";s:9:\"tc_github\";s:0:\"\";s:11:\"tc_dribbble\";s:0:\"\";s:11:\"tc_linkedin\";s:0:\"\";s:11:\"tc_fancybox\";i:1;s:21:\"tc_fancybox_autoscale\";i:1;s:17:\"tc_retina_support\";i:1;s:14:\"tc_link_scroll\";i:0;s:13:\"tc_custom_css\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("296", "hr_logo", "", "yes");
INSERT INTO `wp_options` VALUES("297", "homecontent_title", "", "yes");
INSERT INTO `wp_options` VALUES("298", "slider_check", "", "yes");
INSERT INTO `wp_options` VALUES("373", "addthis_settings", "a:25:{s:8:\"username\";s:0:\"\";s:7:\"profile\";s:0:\"\";s:8:\"password\";s:0:\"\";s:8:\"wpfooter\";b:1;s:5:\"above\";s:7:\"disable\";s:5:\"below\";s:13:\"small_toolbox\";s:18:\"addthis_show_stats\";b:0;s:28:\"addthis_asynchronous_loading\";b:0;s:19:\"addthis_append_data\";b:0;s:18:\"addthis_showonhome\";b:1;s:19:\"addthis_showonpages\";b:1;s:22:\"addthis_showonarchives\";b:0;s:18:\"addthis_showoncats\";b:0;s:22:\"addthis_showonexcerpts\";b:0;s:18:\"addthis_aftertitle\";b:0;s:22:\"addthis_beforecomments\";b:0;s:18:\"addthis_addressbar\";b:0;s:11:\"addthis_508\";b:0;s:21:\"addthis_copytracking2\";b:0;s:16:\"addthis_language\";s:0:\"\";s:9:\"atversion\";s:3:\"300\";s:23:\"atversion_update_status\";s:1:\"0\";s:28:\"credential_validation_status\";s:1:\"0\";s:17:\"above_chosen_list\";s:0:\"\";s:17:\"below_chosen_list\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("375", "cool_megamenu_options", "a:9:{s:11:\"bg_color_l1\";s:7:\"#dd3333\";s:13:\"text_color_l1\";s:7:\"#ffffff\";s:17:\"bg_color_hover_l1\";s:0:\"\";s:19:\"text_color_hover_l1\";s:0:\"\";s:8:\"bg_color\";s:7:\"#dd9933\";s:10:\"text_color\";s:0:\"\";s:16:\"text_color_hover\";s:0:\"\";s:10:\"custom_css\";s:187:\".main-navigation{}\r\n.nav-menu{}\r\n.nav-menu li {}\r\n.nav-menu li a\r\n.nav-menu ul{}\r\n.nav-menu ul li {}\r\n.nav-menu ul li a{}\r\n.nav-menu ul ul{}\r\n.nav-menu ul ul li {}\r\n.nav-menu ul ul li a{}\";s:12:\"example_text\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("376", "cms_tpv_show_annoying_little_box", "1", "yes");
INSERT INTO `wp_options` VALUES("377", "cms_tpv_options", "a:3:{s:9:\"dashboard\";a:1:{i:0;s:4:\"page\";}s:4:\"menu\";a:1:{i:0;s:4:\"page\";}s:13:\"postsoverview\";a:1:{i:0;s:4:\"page\";}}", "yes");
INSERT INTO `wp_options` VALUES("378", "cms_tpv_version", "1.5", "yes");
INSERT INTO `wp_options` VALUES("385", "ai1ec_settings", "a:55:{s:16:\"ai1ec_db_version\";a:4:{s:5:\"value\";b:0;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:10:\"feeds_page\";a:4:{s:5:\"value\";s:48:\"ai1ec_event_page_all-in-one-event-calendar-feeds\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:13:\"settings_page\";a:4:{s:5:\"value\";s:51:\"ai1ec_event_page_all-in-one-event-calendar-settings\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:19:\"less_variables_page\";a:4:{s:5:\"value\";s:51:\"ai1ec_event_page_all-in-one-event-calendar-edit-css\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:17:\"input_date_format\";a:5:{s:5:\"value\";s:3:\"def\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:6:\"select\";s:3:\"tab\";s:14:\"editing-events\";s:5:\"label\";s:26:\"Input dates in this format\";s:7:\"options\";a:4:{i:0;a:2:{s:4:\"text\";s:18:\"Default (d/m/yyyy)\";s:5:\"value\";s:3:\"def\";}i:1;a:2:{s:4:\"text\";s:13:\"US (m/d/yyyy)\";s:5:\"value\";s:2:\"us\";}i:2;a:2:{s:4:\"text\";s:19:\"ISO 8601 (yyyy-m-d)\";s:5:\"value\";s:3:\"iso\";}i:3;a:2:{s:4:\"text\";s:17:\"Dotted (m.d.yyyy)\";s:5:\"value\";s:3:\"dot\";}}}}s:15:\"plugins_options\";a:4:{s:5:\"value\";a:2:{s:23:\"Ai1ecIcsConnectorPlugin\";a:0:{}s:26:\"Ai1ecImportConnectorPlugin\";a:0:{}}s:4:\"type\";s:5:\"array\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:16:\"calendar_page_id\";a:5:{s:5:\"value\";i:15061;s:4:\"type\";s:5:\"mixed\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:22:\"calendar-page-selector\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:13:\"Calendar page\";}}s:14:\"week_start_day\";a:5:{s:5:\"value\";s:1:\"0\";s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:6:\"select\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:14:\"Week starts on\";s:7:\"options\";s:12:\"get_weekdays\";}}s:13:\"enabled_views\";a:5:{s:5:\"value\";a:4:{s:6:\"agenda\";a:5:{s:7:\"enabled\";b:1;s:7:\"default\";b:1;s:8:\"longname\";a:6:{i:0;s:6:\"Agenda\";i:1;s:6:\"Agenda\";s:8:\"singular\";s:6:\"Agenda\";s:6:\"plural\";s:6:\"Agenda\";s:7:\"context\";N;s:6:\"domain\";s:25:\"all-in-one-event-calendar\";}s:14:\"enabled_mobile\";b:1;s:14:\"default_mobile\";b:1;}s:6:\"oneday\";a:5:{s:7:\"enabled\";b:0;s:7:\"default\";b:0;s:8:\"longname\";a:6:{i:0;s:3:\"Day\";i:1;s:3:\"Day\";s:8:\"singular\";s:3:\"Day\";s:6:\"plural\";s:3:\"Day\";s:7:\"context\";N;s:6:\"domain\";s:25:\"all-in-one-event-calendar\";}s:14:\"enabled_mobile\";b:0;s:14:\"default_mobile\";b:0;}s:5:\"month\";a:5:{s:7:\"enabled\";b:0;s:7:\"default\";b:0;s:8:\"longname\";a:6:{i:0;s:5:\"Month\";i:1;s:5:\"Month\";s:8:\"singular\";s:5:\"Month\";s:6:\"plural\";s:5:\"Month\";s:7:\"context\";N;s:6:\"domain\";s:25:\"all-in-one-event-calendar\";}s:14:\"enabled_mobile\";b:0;s:14:\"default_mobile\";b:0;}s:4:\"week\";a:5:{s:7:\"enabled\";b:0;s:7:\"default\";b:0;s:8:\"longname\";a:6:{i:0;s:4:\"Week\";i:1;s:4:\"Week\";s:8:\"singular\";s:4:\"Week\";s:6:\"plural\";s:4:\"Week\";s:7:\"context\";N;s:6:\"domain\";s:25:\"all-in-one-event-calendar\";}s:14:\"enabled_mobile\";b:0;s:14:\"default_mobile\";b:0;}}s:4:\"type\";s:5:\"array\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:13:\"enabled-views\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:15:\"Available views\";}}s:15:\"timezone_string\";a:5:{s:5:\"value\";s:17:\"America/Vancouver\";s:4:\"type\";s:9:\"wp_option\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:6:\"select\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:8:\"Timezone\";s:7:\"options\";s:33:\"Ai1ec_Date_Timezone:get_timezones\";}}s:23:\"default_tags_categories\";a:5:{s:5:\"value\";a:2:{s:4:\"tags\";a:0:{}s:10:\"categories\";a:0:{}}s:4:\"type\";s:5:\"array\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:15:\"tags-categories\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:28:\"Preselected calendar filters\";s:4:\"help\";s:80:\"To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection.\";}}s:10:\"exact_date\";a:5:{s:5:\"value\";s:0:\"\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:38:\"Default calendar start date (optional)\";s:4:\"type\";s:4:\"date\";}}s:22:\"agenda_events_per_page\";a:5:{s:5:\"value\";i:1;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:7:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:25:\"Agenda pages show at most\";s:4:\"type\";s:6:\"append\";s:6:\"append\";s:6:\"events\";s:9:\"validator\";s:7:\"numeric\";}}s:19:\"week_view_starts_at\";a:5:{s:5:\"value\";i:8;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:7:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:23:\"Week/Day view starts at\";s:4:\"type\";s:6:\"append\";s:6:\"append\";s:3:\"hrs\";s:9:\"validator\";s:7:\"numeric\";}}s:17:\"week_view_ends_at\";a:5:{s:5:\"value\";i:24;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:7:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:21:\"Week/Day view ends at\";s:4:\"type\";s:6:\"append\";s:6:\"append\";s:3:\"hrs\";s:9:\"validator\";s:7:\"numeric\";}}s:15:\"month_word_wrap\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:52:\"<strong>Word-wrap event stubs</strong> in Month view\";s:4:\"help\";s:46:\"Only applies to events that span a single day.\";}}s:30:\"agenda_include_entire_last_day\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:318:\"In <span class=\"ai1ec-tooltip-toggle\"\n                        data-original-title=\"These include Agenda view,\n                        the Upcoming Events widget, and some extended views.\">\n                        Agenda-like views</span>, <strong>include all events\n                        from last day shown</strong>\";}}s:22:\"agenda_events_expanded\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:56:\"Keep all events <strong>expanded</strong> in Agenda view\";}}s:25:\"show_year_in_agenda_dates\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:50:\"<strong>Show year</strong> in calendar date labels\";}}s:22:\"show_location_in_title\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:64:\"<strong>Show location in event titles</strong> in calendar views\";}}s:19:\"exclude_from_search\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:51:\"<strong>Exclude</strong> events from search results\";}}s:29:\"turn_off_subscription_buttons\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:108:\"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views \";}}s:23:\"hide_maps_until_clicked\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:48:\" Hide <strong>Google Maps</strong> until clicked\";}}s:19:\"hide_featured_image\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:61:\" <strong>Hide featured image</strong> from event details page\";s:4:\"help\";s:77:\"Select this option if your theme already displays each post\'s featured image.\";}}s:9:\"embedding\";a:5:{s:5:\"value\";N;s:4:\"type\";s:4:\"html\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:3:{s:5:\"class\";s:4:\"html\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:14:\"embedded-views\";}}s:14:\"input_24h_time\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:3:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"editing-events\";s:5:\"label\";s:46:\" Use <strong>24h time</strong> in time pickers\";}}s:22:\"disable_autocompletion\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:3:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"editing-events\";s:5:\"label\";s:54:\"<strong>Disable address autocomplete</strong> function\";}}s:18:\"geo_region_biasing\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:3:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"editing-events\";s:5:\"label\";s:104:\"Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function \";}}s:24:\"show_create_event_button\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:10:\"extensions\";s:5:\"label\";s:92:\" Show the old <strong>Post Your Event</strong> button above the calendar to privileged users\";s:4:\"help\";s:145:\"Install the <a target=\"_blank\" href=\"https://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>.\";}}s:22:\"skip_in_the_loop_check\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:8:\"advanced\";s:5:\"label\";s:98:\"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output\";s:4:\"help\";s:225:\"Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise.\";}}s:24:\"disable_gzip_compression\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:8:\"advanced\";s:5:\"label\";s:42:\"Disable <strong>gzip</strong> compression.\";s:4:\"help\";s:262:\"Use this option if calendar is unresponsive. <a target=\"_blank\" href=\"https://time.ly/document/user-guide/troubleshooting/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)\";}}s:15:\"edit_robots_txt\";a:5:{s:5:\"value\";s:995:\"User-agent: *\nDisallow: /administrator/\nDisallow: /cache/\nDisallow: /components/\nDisallow: /images/\nDisallow: /includes/\nDisallow: /installation/\nDisallow: /language/\nDisallow: /libraries/\nDisallow: /media/\nDisallow: /modules/\nDisallow: /plugins/\nDisallow: /templates/\nDisallow: /tmp/\nDisallow: /xmlrpc/\nDisallow: /calendar/action~posterboard/\nDisallow: /calendar/action~agenda/\nDisallow: /calendar/action~oneday/\nDisallow: /calendar/action~month/\nDisallow: /calendar/action~week/\nDisallow: /calendar/action~stream/\nDisallow: /calendar-2/action~posterboard/\nDisallow: /calendar-2/action~agenda/\nDisallow: /calendar-2/action~oneday/\nDisallow: /calendar-2/action~month/\nDisallow: /calendar-2/action~week/\nDisallow: /calendar-2/action~stream/\nDisallow: /calendar-2/action~undefined/\nDisallow: /calendar-2/action~http:/\nDisallow: /calendar-2/action~default/\nDisallow: /calendar-2/action~poster/\nDisallow: /calendar-2/action~*/\nDisallow: /*controller=ai1ec_exporter_controller*\nDisallow: /*/action~*/\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:8:{s:5:\"class\";s:8:\"textarea\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:8:\"advanced\";s:5:\"label\";s:48:\"Current <strong>robots.txt</strong> on this site\";s:4:\"type\";s:6:\"normal\";s:4:\"rows\";i:6;s:8:\"readonly\";s:8:\"readonly\";s:4:\"help\";s:517:\"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n                        <code><a href=\"https://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n                        protocol, is a convention for cooperating web crawlers and other web robots\n                        about accessing all or part of a website that is otherwise publicly viewable.\n                        You can change it manually by editing <code>robots.txt</code> in your root WordPress directory.\";}}s:16:\"allow_statistics\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:8:\"advanced\";s:5:\"label\";s:184:\"<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"https://time.ly/event-search-calendar\" target=\"_blank\">Learn more &#187;</a>)\";}}s:14:\"legacy_options\";a:4:{s:5:\"value\";N;s:4:\"type\";s:14:\"legacy_options\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:13:\"ics_cron_freq\";a:4:{s:5:\"value\";s:6:\"hourly\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:10:\"twig_cache\";a:5:{s:5:\"value\";s:23:\"AI1EC_CACHE_UNAVAILABLE\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:5:\"cache\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:5:\"cache\";s:5:\"label\";s:41:\"Templates cache improves site performance\";}}s:27:\"disable_get_calendar_button\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:50:\"Hide <strong>Get a Timely Calendar</strong> button\";}}s:17:\"affix_filter_menu\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:80:\" <strong>Affix filter menu</strong> to top of window when it scrolls out of view\";s:4:\"help\";s:57:\"Only applies to first visible calendar found on the page.\";}}s:24:\"affix_vertical_offset_md\";a:5:{s:5:\"value\";i:0;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:7:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:39:\"Offset affixed filter bar vertically by\";s:4:\"type\";s:6:\"append\";s:6:\"append\";s:6:\"pixels\";s:9:\"validator\";s:7:\"numeric\";}}s:24:\"affix_vertical_offset_lg\";a:5:{s:5:\"value\";i:0;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:7:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:100:\"<i class=\"ai1ec-fa ai1ec-fa-lg ai1ec-fa-fw ai1ec-fa-desktop\"></i> Wide screens only (&#8805; 1200px)\";s:4:\"type\";s:6:\"append\";s:6:\"append\";s:6:\"pixels\";s:9:\"validator\";s:7:\"numeric\";}}s:24:\"affix_vertical_offset_sm\";a:5:{s:5:\"value\";i:0;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:7:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:87:\"<i class=\"ai1ec-fa ai1ec-fa-lg ai1ec-fa-fw ai1ec-fa-tablet\"></i> Tablets only (< 980px)\";s:4:\"type\";s:6:\"append\";s:6:\"append\";s:6:\"pixels\";s:9:\"validator\";s:7:\"numeric\";}}s:24:\"affix_vertical_offset_xs\";a:5:{s:5:\"value\";i:0;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:7:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:86:\"<i class=\"ai1ec-fa ai1ec-fa-lg ai1ec-fa-fw ai1ec-fa-mobile\"></i> Phones only (< 768px)\";s:4:\"type\";s:6:\"append\";s:6:\"append\";s:6:\"pixels\";s:9:\"validator\";s:7:\"numeric\";}}s:38:\"strict_compatibility_content_filtering\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:4:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:38:\"Strict compatibility content filtering\";}}s:28:\"ai1ec_use_frontend_rendering\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:8:\"advanced\";s:5:\"label\";s:23:\"Use frontend rendering.\";s:4:\"help\";s:85:\"Renders calendar views on the client rather than the server; can improve performance.\";}}s:18:\"render_css_as_link\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:8:\"advanced\";s:5:\"label\";s:94:\"<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable.\";s:4:\"help\";s:123:\"Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline.\";}}s:28:\"always_use_calendar_timezone\";a:5:{s:5:\"value\";b:0;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:53:\"Display events in <strong>calendar time zone</strong>\";s:4:\"help\";s:131:\"If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page.\";}}s:31:\"enabling_ticket_invitation_page\";a:4:{s:5:\"value\";b:0;s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:9:\"ai1ec_api\";a:4:{s:5:\"value\";b:0;s:4:\"type\";s:7:\"boolean\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:17:\"ticketing_message\";a:4:{s:5:\"value\";b:0;s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:15:\"ticketing_token\";a:4:{s:5:\"value\";s:0:\"\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:17:\"ticketing_enabled\";a:4:{s:5:\"value\";b:0;s:4:\"type\";s:7:\"boolean\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:21:\"ticketing_calendar_id\";a:4:{s:5:\"value\";N;s:4:\"type\";s:3:\"int\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";}s:19:\"google_maps_api_key\";a:5:{s:5:\"value\";s:0:\"\";s:4:\"type\";s:6:\"string\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:5:\"input\";s:3:\"tab\";s:14:\"viewing-events\";s:4:\"item\";s:14:\"viewing-events\";s:5:\"label\";s:349:\"<span class=\"ai1ec-tooltip-toggle\"\n                                    data-original-title=\"Google may request for an API key in order to show the map\">\n                                    Google Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)\";s:4:\"type\";s:6:\"normal\";}}s:16:\"cache_dynamic_js\";a:5:{s:5:\"value\";b:1;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:8:\"advanced\";s:4:\"item\";s:8:\"advanced\";s:5:\"label\";s:22:\"Use advanced JS cache.\";s:4:\"help\";s:59:\"Cache dynamically generated JS files. Improves performance.\";}}s:11:\"twitterinfo\";a:5:{s:5:\"value\";b:1;s:4:\"type\";s:4:\"bool\";s:6:\"legacy\";b:0;s:7:\"version\";s:6:\"2.5.31\";s:8:\"renderer\";a:5:{s:5:\"class\";s:8:\"checkbox\";s:3:\"tab\";s:10:\"extensions\";s:4:\"item\";s:10:\"twittertab\";s:5:\"label\";s:0:\"\";s:4:\"help\";s:485:\"<div class=\"ai1ec-twitterinfo-wrap\"><b>Twitter</b><br>This feature allows your events to be automatically tweeted before they happen. Great way to add regular content to your twitter roll and keep your audience informed of all your great events. This feature is not yet enabled in your product. Please purchase it as a standalone for a low annual subscription or inside the Core+ bundle. <a target=\"_blank\" href=\"https://time.ly/wordpress-calendar-plugin/addons/\">Click here.</a></div>\";}}}", "yes");
INSERT INTO `wp_options` VALUES("386", "ai1ec_db_version", "cf2c41756f6b73b28625683527832b881e91c0a1", "yes");
INSERT INTO `wp_options` VALUES("387", "ai1ec_cron_version", "105", "yes");
INSERT INTO `wp_options` VALUES("389", "ai1ec_themes_version", "8", "yes");
INSERT INTO `wp_options` VALUES("463", "font_select", "fa4", "yes");
INSERT INTO `wp_options` VALUES("742", "widget_ai1ec_agenda_widget", "a:2:{i:2;a:11:{s:5:\"title\";s:15:\"Upcoming Events\";s:15:\"events_per_page\";i:4;s:13:\"days_per_page\";i:10;s:16:\"events_seek_type\";s:6:\"events\";s:22:\"show_subscribe_buttons\";b:1;s:20:\"show_calendar_button\";b:1;s:21:\"hide_on_calendar_page\";b:1;s:12:\"limit_by_cat\";b:0;s:7:\"cat_ids\";a:0:{}s:12:\"limit_by_tag\";b:0;s:7:\"tag_ids\";a:0:{}}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("958", "widget_dc_jqverticalmegamenu_widget", "a:3:{i:6;a:8:{s:5:\"title\";s:12:\"Contact Info\";s:8:\"nav_menu\";i:20;s:8:\"rowItems\";s:1:\"3\";s:12:\"subMenuWidth\";s:0:\"\";s:4:\"skin\";s:5:\"Green\";s:5:\"speed\";s:4:\"slow\";s:6:\"effect\";s:5:\"slide\";s:9:\"direction\";s:5:\"right\";}i:7;a:8:{s:5:\"title\";s:9:\"Main Menu\";s:8:\"nav_menu\";i:3;s:8:\"rowItems\";s:1:\"5\";s:12:\"subMenuWidth\";s:0:\"\";s:4:\"skin\";s:10:\"Light_blue\";s:5:\"speed\";s:4:\"fast\";s:6:\"effect\";s:4:\"show\";s:9:\"direction\";s:5:\"right\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1172", "bstwbsftwppdtplgns_options", "a:1:{s:8:\"bws_menu\";a:1:{s:7:\"version\";a:1:{s:19:\"captcha/captcha.php\";s:3:\"1.2\";}}}", "yes");
INSERT INTO `wp_options` VALUES("1329", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:14:\"info@localhost\";s:7:\"version\";s:5:\"4.9.5\";s:9:\"timestamp\";i:1522798589;}", "no");
INSERT INTO `wp_options` VALUES("1378", "theme_mods_vantage", "a:9:{s:17:\"version_activated\";s:6:\"1.1.11\";s:27:\"_theme_settings_current_tab\";s:1:\"3\";s:16:\"background_color\";s:6:\"e8e8e8\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1399488091;s:4:\"data\";a:8:{s:18:\"orphaned_widgets_2\";a:1:{i:0;s:6:\"text-2\";}s:18:\"orphaned_widgets_3\";a:1:{i:0;s:6:\"text-3\";}s:18:\"orphaned_widgets_4\";a:1:{i:0;s:6:\"text-4\";}s:18:\"orphaned_widgets_5\";a:1:{i:0;s:8:\"search-3\";}s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"nav_menu-4\";}s:9:\"sidebar-1\";a:1:{i:0;s:30:\"dc_jqverticalmegamenu_widget-7\";}s:14:\"sidebar-footer\";a:2:{i:0;s:30:\"dc_jqverticalmegamenu_widget-6\";i:1;s:23:\"origin_call-to-action-2\";}s:14:\"sidebar-header\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("1382", "widget_origin_call-to-action", "a:2:{i:2;a:7:{s:5:\"title\";s:33:\"Donations to our Samaritan\'s Fund\";s:8:\"subtitle\";s:48:\"To support affordable counselling for everyone! \";s:11:\"button_text\";s:10:\"Thank You!\";s:10:\"button_url\";s:36:\"https://www.canadahelps.org/dn/12787\";s:17:\"button_new_window\";b:1;s:12:\"origin_style\";s:19:\"simple:light_dashed\";s:19:\"origin_style_button\";s:12:\"simple:green\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1383", "widget_origin_button", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1384", "widget_circleicon-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1385", "siteorigin_panels_home_page", "a:3:{s:7:\"widgets\";a:3:{i:0;a:3:{s:8:\"headline\";s:60:\"Welcome to South Island Centre for Counselling and Training!\";s:12:\"sub_headline\";s:88:\"Affordable income-based counselling to get you on your feet again! We are here to help. \";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"0\";s:5:\"class\";s:23:\"Vantage_Headline_Widget\";}}i:1;a:12:{s:5:\"title\";s:38:\"Upcoming Courses, Workshops and Events\";s:15:\"events_per_page\";i:10;s:12:\"limit_by_cat\";b:1;s:13:\"event_cat_ids\";a:1:{s:0:\"\";N;}s:12:\"limit_by_tag\";b:1;s:13:\"event_tag_ids\";a:1:{s:0:\"\";N;}s:13:\"limit_by_post\";b:1;s:14:\"event_post_ids\";a:1:{s:0:\"\";N;}s:20:\"show_calendar_button\";b:1;s:22:\"show_subscribe_buttons\";b:1;s:21:\"hide_on_calendar_page\";b:0;s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"1\";s:5:\"class\";s:19:\"Ai1ec_Agenda_Widget\";}}i:2;a:3:{s:9:\"slider_id\";s:3:\"817\";s:5:\"title\";s:0:\"\";s:4:\"info\";a:4:{s:4:\"grid\";s:1:\"0\";s:4:\"cell\";s:1:\"0\";s:2:\"id\";s:1:\"2\";s:5:\"class\";s:17:\"MetaSlider_Widget\";}}}s:5:\"grids\";a:1:{i:0;a:2:{s:5:\"cells\";s:1:\"1\";s:5:\"style\";a:7:{s:5:\"class\";s:0:\"\";s:10:\"top_border\";s:0:\"\";s:13:\"bottom_border\";s:0:\"\";s:10:\"background\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:23:\"background_image_repeat\";b:0;s:9:\"no_margin\";b:0;}}}s:10:\"grid_cells\";a:1:{i:0;a:2:{s:6:\"weight\";s:1:\"1\";s:4:\"grid\";s:1:\"0\";}}}", "yes");
INSERT INTO `wp_options` VALUES("1386", "siteorigin_panels_home_page_enabled", "1", "yes");
INSERT INTO `wp_options` VALUES("1393", "vantage_theme_settings", "a:22:{s:10:\"logo_image\";s:3:\"389\";s:16:\"logo_header_text\";s:0:\"\";s:17:\"layout_responsive\";b:1;s:12:\"layout_bound\";s:5:\"boxed\";s:15:\"layout_masthead\";s:0:\"\";s:11:\"layout_menu\";s:0:\"\";s:13:\"layout_footer\";s:0:\"\";s:11:\"home_slider\";s:0:\"\";s:19:\"home_slider_stretch\";b:1;s:26:\"navigation_use_sticky_menu\";b:1;s:22:\"navigation_menu_search\";b:1;s:32:\"navigation_display_scroll_to_top\";b:1;s:19:\"navigation_post_nav\";b:1;s:20:\"navigation_home_icon\";b:1;s:19:\"blog_archive_layout\";s:4:\"blog\";s:20:\"blog_archive_content\";s:4:\"full\";s:16:\"blog_post_author\";b:1;s:14:\"blog_post_date\";b:1;s:19:\"blog_featured_image\";b:1;s:24:\"blog_featured_image_type\";s:5:\"large\";s:22:\"general_site_info_text\";s:48:\"South Island Centre for Counselling and Training\";s:18:\"general_hover_edit\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("1397", "_site_transient_timeout_origin_wcss:calltoaction-simple-clean-14", "1397252007", "yes");
INSERT INTO `wp_options` VALUES("1398", "_site_transient_origin_wcss:calltoaction-simple-clean-147", ".origin-widget.origin-widget-call-to-action-simple-clean{zoom:1;padding:2em;position:relative;-webkit-border-radius:0px;-moz-border-radius:0px;border-radius:0px;background:#FCFCFC;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.1);box-shadow:0 1px 2px rgba(0,0,0,0.1);border:1px solid #D0D0D0}.origin-widget.origin-widget-call-to-action-simple-clean:before{content:\'\';display:block}.origin-widget.origin-widget-call-to-action-simple-clean:after{content:\'\';display:table;clear:both}.origin-widget.origin-widget-call-to-action-simple-clean .title{line-height:1.6em;margin:0;color:#333333;font-weight:auto}.origin-widget.origin-widget-call-to-action-simple-clean .subtitle{line-height:1.25em;margin:0;color:#555555;font-weight:auto}.origin-widget.origin-widget-call-to-action-simple-clean .origin-widget-button{position:absolute;display:block;top:50%;right:2em;margin-top:-22px}@media (max-width:680px){.origin-widget.origin-widget-call-to-action-simple-clean .origin-widget-button{position:static;margin-top:2em}.origin-widget.origin-widget-call-to-action-simple-clean .origin-widget-button a{display:block}}", "yes");
INSERT INTO `wp_options` VALUES("1426", "_site_transient_timeout_origin_wcss:calltoaction-simple-light_da", "1397580352", "yes");
INSERT INTO `wp_options` VALUES("1427", "_site_transient_origin_wcss:calltoaction-simple-light_dashed-147", ".origin-widget.origin-widget-call-to-action-simple-light_dashed{zoom:1;padding:2em;position:relative;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background:url(http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/siteorigin-panels/widgets/img/textures/light-dashed.png) repeat #F6F6F6;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.1);box-shadow:0 1px 2px rgba(0,0,0,0.1);border:1px solid #E0E0E0}.origin-widget.origin-widget-call-to-action-simple-light_dashed:before{content:\'\';display:block}.origin-widget.origin-widget-call-to-action-simple-light_dashed:after{content:\'\';display:table;clear:both}.origin-widget.origin-widget-call-to-action-simple-light_dashed .title{line-height:1.6em;margin:0;color:#333333;font-weight:auto}.origin-widget.origin-widget-call-to-action-simple-light_dashed .subtitle{line-height:1.25em;margin:0;color:#555555;font-weight:auto}.origin-widget.origin-widget-call-to-action-simple-light_dashed .origin-widget-button{position:absolute;display:block;top:50%;right:2em;margin-top:-22px}@media (max-width:680px){.origin-widget.origin-widget-call-to-action-simple-light_dashed .origin-widget-button{position:static;margin-top:2em}.origin-widget.origin-widget-call-to-action-simple-light_dashed .origin-widget-button a{display:block}}", "yes");
INSERT INTO `wp_options` VALUES("1436", "widget_siteorigin-panels-image", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1437", "widget_siteorigin-panels-gallery", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1438", "widget_metaslider_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1441", "metaslider_systemcheck", "a:2:{s:16:\"wordPressVersion\";b:0;s:12:\"imageLibrary\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("1442", "ml-slider_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1444", "siteorigin_panels_post_types", "a:1:{i:0;i:0;}", "yes");
INSERT INTO `wp_options` VALUES("1445", "siteorigin_panels_display", "a:8:{s:12:\"copy-content\";b:1;s:10:\"animations\";b:1;s:15:\"bundled-widgets\";b:1;s:10:\"responsive\";b:1;s:12:\"mobile-width\";i:780;s:12:\"margin-sides\";i:30;s:13:\"margin-bottom\";i:35;s:10:\"inline-css\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("1459", "db_upgraded", "", "yes");
INSERT INTO `wp_options` VALUES("1469", "_site_transient_timeout_origin_wcss:calltoaction-simple-dark_das", "1397597385", "yes");
INSERT INTO `wp_options` VALUES("1470", "_site_transient_origin_wcss:calltoaction-simple-dark_dashed-147", ".origin-widget.origin-widget-call-to-action-simple-dark_dashed{zoom:1;padding:2em;position:relative;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background:url(http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/siteorigin-panels/widgets/img/textures/dark-dashed.png) repeat #F6F6F6;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.1);box-shadow:0 1px 2px rgba(0,0,0,0.1);border:1px solid #E0E0E0}.origin-widget.origin-widget-call-to-action-simple-dark_dashed:before{content:\'\';display:block}.origin-widget.origin-widget-call-to-action-simple-dark_dashed:after{content:\'\';display:table;clear:both}.origin-widget.origin-widget-call-to-action-simple-dark_dashed .title{line-height:1.6em;margin:0;color:#FFFFFF;font-weight:auto}.origin-widget.origin-widget-call-to-action-simple-dark_dashed .subtitle{line-height:1.25em;margin:0;color:#CCCCCC;font-weight:auto}.origin-widget.origin-widget-call-to-action-simple-dark_dashed .origin-widget-button{position:absolute;display:block;top:50%;right:2em;margin-top:-22px}@media (max-width:680px){.origin-widget.origin-widget-call-to-action-simple-dark_dashed .origin-widget-button{position:static;margin-top:2em}.origin-widget.origin-widget-call-to-action-simple-dark_dashed .origin-widget-button a{display:block}}", "yes");
INSERT INTO `wp_options` VALUES("1502", "theme_mods_shell-lite", "a:10:{i:0;b:0;s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:0;}s:12:\"header_image\";s:94:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/cropped-cropped-header_bg2.jpg\";s:17:\"header_image_data\";a:5:{s:13:\"attachment_id\";i:824;s:3:\"url\";s:94:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/cropped-cropped-header_bg2.jpg\";s:13:\"thumbnail_url\";s:94:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/cropped-cropped-header_bg2.jpg\";s:5:\"width\";i:937;s:6:\"height\";i:188;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1397582074;s:4:\"data\";a:8:{s:18:\"orphaned_widgets_1\";a:2:{i:0;s:30:\"dc_jqverticalmegamenu_widget-7\";i:1;s:19:\"metaslider_widget-3\";}s:18:\"orphaned_widgets_2\";a:2:{i:0;s:30:\"dc_jqverticalmegamenu_widget-6\";i:1;s:23:\"origin_call-to-action-2\";}s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"nav_menu-4\";}s:22:\"primary-sidebar-widget\";a:0:{}s:27:\"primary-home-sidebar-widget\";a:1:{i:0;s:6:\"text-2\";}s:29:\"secondary-home-sidebar-widget\";a:1:{i:0;s:6:\"text-3\";}s:28:\"tertiary-home-sidebar-widget\";a:1:{i:0;s:6:\"text-4\";}s:22:\"gallery-sidebar-widget\";a:1:{i:0;s:8:\"search-3\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("1504", "shell_theme_options", "a:14:{s:13:\"home_headline\";s:32:\"Welcome to South Island Centre! \";s:17:\"home_content_area\";s:479:\"You don\'t have to go through your struggles alone - we are here to help you with: \r\n\r\ngrief, loss and life-transitions;\r\ntrauma or distress;\r\ndepression;\r\neldercare issues;\r\ncaregiver support and education;\r\nrelational conflict;\r\nself-esteem issues;\r\nemotional, sexual and physical abuse;\r\nissues related to faith and spirituality;\r\naddictions (substance abuse, gambling, pornography);\r\nunderstanding family systems;\r\nmarriage preparation;\r\nmarital conflict     \r\n....and more.\r\n\";s:16:\"home_subheadline\";s:67:\"Affordable income-based counselling to get you on your feet again! \";s:19:\"featured_image_link\";s:0:\"\";s:20:\"featured_button_link\";s:0:\"\";s:20:\"featured_button_text\";s:0:\"\";s:24:\"google_site_verification\";s:0:\"\";s:22:\"bing_site_verification\";s:0:\"\";s:23:\"yahoo_site_verification\";s:0:\"\";s:11:\"twitter_uid\";s:0:\"\";s:12:\"facebook_uid\";s:0:\"\";s:12:\"linkedin_uid\";s:0:\"\";s:11:\"youtube_uid\";s:0:\"\";s:8:\"rss_feed\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("1897", "theme_mods_dt-the7", "a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:7:{s:7:\"primary\";i:55;s:10:\"split_left\";i:0;s:11:\"split_right\";i:0;s:6:\"mobile\";i:0;s:3:\"top\";i:0;s:19:\"header_microwidget2\";i:0;s:6:\"bottom\";i:20;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1525209972;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:3:{i:0;i:9022;i:1;s:10:\"nav_menu-4\";i:2;s:8:\"search-3\";}s:9:\"sidebar_1\";a:0:{}s:9:\"sidebar_2\";a:0:{}}}s:18:\"custom_css_post_id\";i:-1;}", "yes");
INSERT INTO `wp_options` VALUES("1899", "optionsframework", "a:2:{s:2:\"id\";s:4:\"the7\";s:12:\"knownoptions\";a:1:{i:0;s:4:\"the7\";}}", "yes");
INSERT INTO `wp_options` VALUES("1900", "the7", "a:872:{s:25:\"advanced-speed_img_resize\";s:1:\"1\";s:21:\"blog-fancy_date-style\";s:8:\"vertical\";s:26:\"blog-thumbnail_proportions\";a:2:{s:5:\"width\";i:2;s:6:\"height\";i:1;}s:19:\"blog-thumbnail_size\";s:6:\"resize\";s:19:\"bottom_bar-bg_color\";s:7:\"#f7f7f8\";s:22:\"bottom_bar-bg_ie_color\";s:7:\"#ffffff\";s:19:\"bottom_bar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:21:\"bottom_bar-bg_opacity\";i:100;s:25:\"bottom_bar-collapse_after\";s:5:\"990px\";s:16:\"bottom_bar-color\";s:7:\"#8d9095\";s:21:\"bottom_bar-copyrights\";s:52:\"Copyright 2018 South Island Centre | (250) 472-2851 \";s:18:\"bottom_bar-credits\";b:0;s:25:\"bottom_bar-dividers_color\";s:7:\"#dadee1\";s:28:\"bottom_bar-dividers_ie_color\";s:7:\"#dadee1\";s:27:\"bottom_bar-dividers_opacity\";i:85;s:18:\"bottom_bar-enabled\";s:1:\"1\";s:17:\"bottom_bar-height\";s:4:\"60px\";s:17:\"bottom_bar-layout\";s:9:\"logo_left\";s:23:\"bottom_bar-logo-padding\";s:18:\"10px 15px 10px 0px\";s:18:\"bottom_bar-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:23:\"bottom_bar-logo_regular\";a:2:{i:0;s:40:\"/wp-content/uploads/2014/07/smallpng.png\";i:1;i:13069;}s:18:\"bottom_bar-padding\";s:9:\"10px 10px\";s:16:\"bottom_bar-style\";s:16:\"solid_background\";s:15:\"bottom_bar-text\";s:34:\"Copyright 2018 South Island Centre\";s:20:\"breadcrumbs_bg_color\";s:21:\"rgba(255,255,255,0.2)\";s:24:\"breadcrumbs_border_color\";s:20:\"rgba(130,36,227,0.2)\";s:25:\"breadcrumbs_border_radius\";s:3:\"2px\";s:24:\"breadcrumbs_border_width\";s:3:\"0px\";s:18:\"breadcrumbs_margin\";s:15:\"8px 0px 0px 0px\";s:19:\"breadcrumbs_padding\";s:15:\"0px 0px 0px 0px\";s:13:\"buttons-color\";s:7:\"#81d742\";s:22:\"buttons-color_gradient\";a:2:{i:0;s:7:\"#13aa4a\";i:1;s:7:\"#84df31\";}s:18:\"buttons-color_mode\";s:6:\"accent\";s:19:\"buttons-hover_color\";s:7:\"#81d742\";s:28:\"buttons-hover_color_gradient\";a:2:{i:0;s:7:\"#23aadd\";i:1;s:7:\"#37ce9d\";}s:24:\"buttons-hover_color_mode\";s:8:\"gradient\";s:23:\"buttons-l_border_radius\";i:1;s:21:\"buttons-l_font_family\";s:9:\"Arial:600\";s:19:\"buttons-l_font_size\";i:18;s:21:\"buttons-l_line_height\";i:39;s:17:\"buttons-l_padding\";s:19:\"16px 24px 16px 24px\";s:19:\"buttons-l_uppercase\";b:0;s:23:\"buttons-m_border_radius\";i:1;s:21:\"buttons-m_font_family\";s:9:\"Arial:600\";s:19:\"buttons-m_font_size\";i:14;s:21:\"buttons-m_line_height\";i:30;s:17:\"buttons-m_padding\";s:19:\"12px 18px 12px 18px\";s:19:\"buttons-m_uppercase\";b:0;s:23:\"buttons-s_border_radius\";i:1;s:21:\"buttons-s_font_family\";s:9:\"Arial:600\";s:19:\"buttons-s_font_size\";i:12;s:21:\"buttons-s_line_height\";i:25;s:17:\"buttons-s_padding\";s:17:\"8px 14px 7px 14px\";s:19:\"buttons-s_uppercase\";b:0;s:13:\"buttons-style\";s:4:\"flat\";s:18:\"buttons-text_color\";s:7:\"#ffffff\";s:23:\"buttons-text_color_mode\";s:5:\"color\";s:24:\"buttons-text_hover_color\";s:7:\"#ffffff\";s:29:\"buttons-text_hover_color_mode\";s:5:\"color\";s:20:\"contact_form_message\";s:1:\"1\";s:22:\"content-dividers_color\";s:7:\"#dadee1\";s:25:\"content-dividers_ie_color\";s:7:\"#dadee1\";s:24:\"content-dividers_opacity\";i:80;s:21:\"content-headers_color\";s:7:\"#373a41\";s:26:\"content-primary_text_color\";s:7:\"#3b3f42\";s:28:\"content-secondary_text_color\";s:7:\"#999999\";s:21:\"custom_error_messages\";s:48:\"The message has not been sent. Please try again.\";s:32:\"custom_error_messages_validation\";s:61:\"One or more fields have an error. Please check and try again.\";s:23:\"custom_success_messages\";s:27:\"Your message has been sent.\";s:14:\"dividers-color\";s:19:\"rgba(51,51,51,0.12)\";s:14:\"fonts-big_size\";i:15;s:26:\"fonts-big_size_line_height\";i:27;s:17:\"fonts-font_family\";s:5:\"Arial\";s:20:\"fonts-h1_font_family\";s:9:\"Arial:600\";s:18:\"fonts-h1_font_size\";i:44;s:20:\"fonts-h1_line_height\";i:54;s:18:\"fonts-h1_uppercase\";b:0;s:20:\"fonts-h2_font_family\";s:9:\"Arial:600\";s:18:\"fonts-h2_font_size\";i:34;s:20:\"fonts-h2_line_height\";i:44;s:18:\"fonts-h2_uppercase\";b:0;s:20:\"fonts-h3_font_family\";s:9:\"Arial:600\";s:18:\"fonts-h3_font_size\";i:24;s:20:\"fonts-h3_line_height\";i:34;s:18:\"fonts-h3_uppercase\";b:0;s:20:\"fonts-h4_font_family\";s:9:\"Arial:600\";s:18:\"fonts-h4_font_size\";i:20;s:20:\"fonts-h4_line_height\";i:30;s:18:\"fonts-h4_uppercase\";b:0;s:20:\"fonts-h5_font_family\";s:9:\"Arial:600\";s:18:\"fonts-h5_font_size\";i:16;s:20:\"fonts-h5_line_height\";i:26;s:18:\"fonts-h5_uppercase\";b:0;s:20:\"fonts-h6_font_family\";s:9:\"Arial:600\";s:18:\"fonts-h6_font_size\";i:14;s:20:\"fonts-h6_line_height\";i:24;s:18:\"fonts-h6_uppercase\";b:0;s:17:\"fonts-line_height\";i:22;s:17:\"fonts-normal_size\";i:14;s:29:\"fonts-normal_size_line_height\";i:25;s:16:\"fonts-small_size\";i:13;s:28:\"fonts-small_size_line_height\";i:23;s:24:\"footer-accent_text_color\";s:0:\"\";s:15:\"footer-bg_color\";s:7:\"#f7f7f8\";s:18:\"footer-bg_ie_color\";s:7:\"#1B1B1B\";s:15:\"footer-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:17:\"footer-bg_opacity\";i:100;s:21:\"footer-collapse_after\";s:5:\"778px\";s:17:\"footer-decoration\";s:4:\"none\";s:31:\"footer-decoration_outline_color\";s:21:\"rgba(129,215,66,0.96)\";s:21:\"footer-dividers_color\";s:7:\"#dadee1\";s:24:\"footer-dividers_ie_color\";s:7:\"#dadee1\";s:23:\"footer-dividers_opacity\";i:85;s:20:\"footer-headers_color\";s:7:\"#373a41\";s:13:\"footer-layout\";s:11:\"1/3+1/3+1/3\";s:14:\"footer-padding\";s:9:\"60px 25px\";s:23:\"footer-paddings-columns\";s:4:\"25px\";s:25:\"footer-primary_text_color\";s:7:\"#8d9095\";s:21:\"footer-slide-out-mode\";s:1:\"0\";s:12:\"footer-style\";s:16:\"solid_background\";s:23:\"general-accent_bg_color\";s:7:\"#2e964d\";s:32:\"general-accent_bg_color_gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:25:\"general-accent_color_mode\";s:5:\"color\";s:40:\"general-album_back_button_target_page_id\";i:16237;s:25:\"general-album_meta_author\";b:0;s:29:\"general-album_meta_categories\";s:1:\"1\";s:27:\"general-album_meta_comments\";b:0;s:23:\"general-album_meta_date\";s:1:\"1\";s:21:\"general-album_meta_on\";s:1:\"1\";s:25:\"general-beautiful_loading\";s:7:\"enabled\";s:16:\"general-bg_color\";s:7:\"#ffffff\";s:16:\"general-bg_fixed\";b:0;s:21:\"general-bg_fullscreen\";b:0;s:19:\"general-bg_ie_color\";s:7:\"#252525\";s:16:\"general-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:18:\"general-bg_opacity\";i:100;s:24:\"general-blog_meta_author\";b:0;s:28:\"general-blog_meta_categories\";s:1:\"1\";s:26:\"general-blog_meta_comments\";s:1:\"1\";s:22:\"general-blog_meta_date\";s:1:\"1\";s:20:\"general-blog_meta_on\";s:1:\"1\";s:28:\"general-blog_meta_postformat\";s:1:\"1\";s:22:\"general-blog_meta_tags\";s:1:\"1\";s:21:\"general-border_radius\";s:3:\"1px\";s:17:\"general-box_width\";s:6:\"1340px\";s:22:\"general-boxed_bg_color\";s:7:\"#ffffff\";s:22:\"general-boxed_bg_fixed\";b:0;s:27:\"general-boxed_bg_fullscreen\";s:1:\"1\";s:22:\"general-boxed_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:28:\"general-breadcrumbs_bg_color\";s:8:\"disabled\";s:25:\"general-breadcrumbs_color\";s:7:\"#999999\";s:31:\"general-breadcrumbs_font_family\";s:5:\"Arial\";s:29:\"general-breadcrumbs_font_size\";i:13;s:31:\"general-breadcrumbs_line_height\";i:23;s:29:\"general-breadcrumbs_uppercase\";b:0;s:30:\"general-content_boxes_bg_color\";s:19:\"rgba(247,247,247,1)\";s:32:\"general-content_boxes_decoration\";s:4:\"none\";s:46:\"general-content_boxes_decoration_outline_color\";s:13:\"rgba(0,0,0,0)\";s:21:\"general-content_width\";s:6:\"1300px\";s:18:\"general-custom_css\";s:0:\"\";s:21:\"general-custom_loader\";s:0:\"\";s:15:\"general-favicon\";s:0:\"\";s:18:\"general-favicon_hd\";s:0:\"\";s:26:\"general-filter-font-family\";s:9:\"Arial:600\";s:24:\"general-filter-font-size\";i:13;s:21:\"general-filter-margin\";s:15:\"0px 3px 0px 3px\";s:22:\"general-filter-padding\";s:17:\"8px 14px 7px 14px\";s:20:\"general-filter_style\";s:7:\"minimal\";s:39:\"general-filter_style-material-line_size\";i:2;s:42:\"general-filter_style-minimal-border_radius\";i:1;s:20:\"general-filter_ucase\";s:1:\"1\";s:29:\"general-floating_menu_logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:34:\"general-floating_menu_logo_regular\";a:2:{i:0;s:40:\"/wp-content/uploads/2014/07/smallpng.png\";i:1;i:13069;}s:31:\"general-floating_menu_show_logo\";s:1:\"1\";s:19:\"general-font_family\";s:9:\"Arial:600\";s:32:\"general-fullscreen_overlay_color\";s:7:\"#ffffff\";s:37:\"general-fullscreen_overlay_color_mode\";s:5:\"color\";s:35:\"general-fullscreen_overlay_gradient\";a:2:{i:0;s:7:\"#2edded\";i:1;s:7:\"#0084bb\";}s:34:\"general-fullscreen_overlay_opacity\";i:100;s:30:\"general-handheld_icon-old_ipad\";s:0:\"\";s:32:\"general-handheld_icon-old_iphone\";s:0:\"\";s:33:\"general-handheld_icon-retina_ipad\";s:0:\"\";s:35:\"general-handheld_icon-retina_iphone\";s:0:\"\";s:17:\"general-hd_images\";s:1:\"1\";s:27:\"general-images_lazy_loading\";s:1:\"1\";s:14:\"general-layout\";s:4:\"wide\";s:27:\"general-lightbox_arrow_size\";s:4:\"62px\";s:32:\"general-lightbox_overlay_opacity\";i:85;s:20:\"general-loader_style\";s:14:\"double_circles\";s:36:\"general-mobile_side_content_paddings\";i:20;s:25:\"general-navigation_margin\";i:50;s:26:\"general-next_prev_in_album\";s:1:\"1\";s:25:\"general-next_prev_in_blog\";s:1:\"1\";s:30:\"general-next_prev_in_portfolio\";s:1:\"1\";s:27:\"general-page_content_margin\";s:9:\"70px 70px\";s:29:\"general-portfolio_meta_author\";b:0;s:33:\"general-portfolio_meta_categories\";s:1:\"1\";s:31:\"general-portfolio_meta_comments\";s:1:\"1\";s:27:\"general-portfolio_meta_date\";s:1:\"1\";s:25:\"general-portfolio_meta_on\";s:1:\"1\";s:39:\"general-portfolio_thumbnail_proportions\";a:2:{s:5:\"width\";i:2;s:6:\"height\";i:1;}s:32:\"general-portfolio_thumbnail_size\";s:6:\"resize\";s:28:\"general-rel_posts_head_title\";s:13:\"Related Posts\";s:21:\"general-rel_posts_max\";i:6;s:28:\"general-rel_projects_details\";s:1:\"1\";s:28:\"general-rel_projects_excerpt\";s:1:\"0\";s:37:\"general-rel_projects_fullwidth_height\";i:210;s:36:\"general-rel_projects_fullwidth_width\";i:210;s:42:\"general-rel_projects_fullwidth_width_style\";s:5:\"fixed\";s:31:\"general-rel_projects_head_title\";s:16:\"Related projects\";s:27:\"general-rel_projects_height\";i:205;s:25:\"general-rel_projects_link\";s:1:\"1\";s:24:\"general-rel_projects_max\";i:16;s:25:\"general-rel_projects_meta\";s:1:\"1\";s:26:\"general-rel_projects_title\";s:1:\"1\";s:26:\"general-rel_projects_width\";i:205;s:32:\"general-rel_projects_width_style\";s:5:\"fixed\";s:18:\"general-responsive\";s:1:\"1\";s:31:\"general-responsive_title_height\";s:4:\"70px\";s:36:\"general-responsive_title_line_height\";i:34;s:29:\"general-responsive_title_size\";i:24;s:27:\"general-show_author_in_blog\";b:0;s:33:\"general-show_back_button_in_album\";s:1:\"1\";s:24:\"general-show_breadcrumbs\";s:1:\"0\";s:22:\"general-show_rel_posts\";s:1:\"1\";s:25:\"general-show_rel_projects\";s:1:\"1\";s:19:\"general-show_titles\";s:1:\"1\";s:29:\"general-side_content_paddings\";i:50;s:21:\"general-smooth_scroll\";s:3:\"off\";s:21:\"general-spinner_color\";s:18:\"rgba(51,51,51,0.3)\";s:31:\"general-switch_content_paddings\";i:778;s:27:\"general-thick_divider_style\";s:7:\"style-5\";s:26:\"general-thin_divider_style\";s:7:\"style-1\";s:19:\"general-title_align\";s:8:\"all_left\";s:22:\"general-title_bg_color\";s:19:\"rgba(247,247,247,1)\";s:27:\"general-title_bg_fullscreen\";b:0;s:25:\"general-title_bg_gradient\";a:2:{i:0;s:7:\"#4a66d6\";i:1;s:7:\"#12b4ea\";}s:22:\"general-title_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:21:\"general-title_bg_mode\";s:10:\"background\";s:24:\"general-title_bg_overlay\";b:0;s:25:\"general-title_bg_parallax\";s:1:\"0\";s:19:\"general-title_color\";s:7:\"#373a41\";s:24:\"general-title_decoration\";s:4:\"none\";s:35:\"general-title_decoration_line_color\";s:19:\"rgba(51,51,51,0.11)\";s:36:\"general-title_decoration_line_height\";s:3:\"5px\";s:35:\"general-title_decoration_line_style\";s:6:\"dashed\";s:38:\"general-title_decoration_outline_color\";s:18:\"rgba(30,115,190,0)\";s:39:\"general-title_decoration_outline_height\";s:3:\"1px\";s:38:\"general-title_decoration_outline_style\";s:5:\"solid\";s:26:\"general-title_dir_gradient\";i:0;s:27:\"general-title_enable_bg_img\";s:8:\"disabled\";s:20:\"general-title_height\";s:5:\"180px\";s:25:\"general-title_line_height\";i:40;s:27:\"general-title_overlay_color\";s:15:\"rgba(0,0,0,0.5)\";s:36:\"general-title_responsive_breadcrumbs\";s:1:\"1\";s:27:\"general-title_scroll_effect\";s:7:\"default\";s:18:\"general-title_size\";i:30;s:23:\"general-title_uppercase\";s:1:\"1\";s:36:\"general-titles-responsiveness-switch\";s:5:\"778px\";s:29:\"general-titles_responsiveness\";s:1:\"1\";s:21:\"general-tracking_code\";s:0:\"\";s:17:\"header-background\";s:6:\"normal\";s:15:\"header-bg-color\";s:7:\"#000000\";s:15:\"header-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"header-bg-is_fixed\";b:0;s:23:\"header-bg-is_fullscreen\";b:0;s:15:\"header-bg_color\";s:7:\"#ffffff\";s:16:\"header-bg_height\";i:106;s:15:\"header-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:23:\"header-classic-elements\";a:0:{}s:44:\"header-classic-elements-near_logo-font_color\";s:7:\"#333333\";s:45:\"header-classic-elements-near_logo-font_family\";s:6:\"Roboto\";s:43:\"header-classic-elements-near_logo-font_size\";i:13;s:46:\"header-classic-elements-near_logo_left-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-classic-elements-near_logo_right-padding\";s:15:\"0px 0px 0px 0px\";s:44:\"header-classic-elements-near_menu-font_color\";s:7:\"#333333\";s:45:\"header-classic-elements-near_menu-font_family\";s:10:\"Roboto:700\";s:43:\"header-classic-elements-near_menu-font_size\";i:13;s:47:\"header-classic-elements-near_menu_right-padding\";s:16:\"0px 0px 0px 30px\";s:21:\"header-classic-height\";s:5:\"160px\";s:26:\"header-classic-icons_style\";s:4:\"bold\";s:27:\"header-classic-is_fullwidth\";s:1:\"0\";s:28:\"header-classic-logo-position\";s:4:\"left\";s:28:\"header-classic-menu-bg-color\";s:13:\"rgba(0,0,0,1)\";s:28:\"header-classic-menu-bg-style\";s:8:\"disabled\";s:26:\"header-classic-menu-margin\";s:9:\"-25px 0px\";s:28:\"header-classic-menu-position\";s:4:\"left\";s:28:\"header-classic-show_elements\";s:1:\"0\";s:18:\"header-color_frame\";s:1:\"1\";s:18:\"header-contentarea\";s:254:\"<p><span class=\"paint-accent-color\">Mailing Address:</span>  <br>3821A Cedar Hill Cross Rd, <br>Victoria, B.C. V8P 2M6 \r\n</p>\r\n<span class=\"paint-accent-color\">Phone: </span> (250) 472-2851 <br> <span class=\"paint-accent-color\">Fax:</span> (250) 472-2815\";s:24:\"header-contentarea_color\";s:7:\"#373a41\";s:17:\"header-decoration\";s:6:\"shadow\";s:23:\"header-decoration-color\";s:19:\"rgba(51,51,51,0.11)\";s:39:\"header-elements-contact-address-caption\";s:0:\"\";s:51:\"header-elements-contact-address-first-header-switch\";s:12:\"top_bar_left\";s:36:\"header-elements-contact-address-icon\";s:1:\"1\";s:43:\"header-elements-contact-address-on-desktops\";s:4:\"show\";s:52:\"header-elements-contact-address-second-header-switch\";s:7:\"in_menu\";s:37:\"header-elements-contact-clock-caption\";s:0:\"\";s:49:\"header-elements-contact-clock-first-header-switch\";s:7:\"in_menu\";s:34:\"header-elements-contact-clock-icon\";s:1:\"1\";s:41:\"header-elements-contact-clock-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-clock-second-header-switch\";s:7:\"in_menu\";s:37:\"header-elements-contact-email-caption\";s:0:\"\";s:49:\"header-elements-contact-email-first-header-switch\";s:7:\"in_menu\";s:34:\"header-elements-contact-email-icon\";s:1:\"1\";s:41:\"header-elements-contact-email-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-email-second-header-switch\";s:7:\"in_menu\";s:37:\"header-elements-contact-phone-caption\";s:0:\"\";s:49:\"header-elements-contact-phone-first-header-switch\";s:7:\"in_menu\";s:34:\"header-elements-contact-phone-icon\";s:1:\"1\";s:41:\"header-elements-contact-phone-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-phone-second-header-switch\";s:7:\"in_menu\";s:37:\"header-elements-contact-skype-caption\";s:0:\"\";s:49:\"header-elements-contact-skype-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-skype-icon\";s:1:\"1\";s:41:\"header-elements-contact-skype-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-skype-second-header-switch\";s:7:\"in_menu\";s:29:\"header-elements-login-caption\";s:5:\"Login\";s:41:\"header-elements-login-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-login-icon\";s:1:\"1\";s:32:\"header-elements-login-logout_url\";s:0:\"\";s:33:\"header-elements-login-on-desktops\";s:4:\"show\";s:42:\"header-elements-login-second-header-switch\";s:7:\"in_menu\";s:25:\"header-elements-login-url\";s:0:\"\";s:36:\"header-elements-login-use_logout_url\";b:0;s:30:\"header-elements-logout-caption\";s:6:\"Logout\";s:40:\"header-elements-menu-first-header-switch\";s:9:\"near_logo\";s:32:\"header-elements-menu-on-desktops\";s:4:\"show\";s:41:\"header-elements-menu-second-header-switch\";s:7:\"in_menu\";s:26:\"header-elements-menu-style\";s:8:\"dropdown\";s:39:\"header-elements-menu-style-first-switch\";s:8:\"dropdown\";s:40:\"header-elements-menu-style-second-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-first-header-switch\";s:9:\"near_logo\";s:33:\"header-elements-menu2-on-desktops\";s:4:\"show\";s:42:\"header-elements-menu2-second-header-switch\";s:7:\"in_menu\";s:27:\"header-elements-menu2-style\";s:8:\"dropdown\";s:40:\"header-elements-menu2-style-first-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-style-second-switch\";s:8:\"dropdown\";s:36:\"header-elements-near_logo-font_color\";s:7:\"#333333\";s:37:\"header-elements-near_logo-font_family\";s:5:\"Arial\";s:35:\"header-elements-near_logo-font_size\";i:16;s:36:\"header-elements-near_menu-font_color\";s:7:\"#333333\";s:37:\"header-elements-near_menu-font_family\";s:5:\"Arial\";s:35:\"header-elements-near_menu-font_size\";i:14;s:30:\"header-elements-search-caption\";s:0:\"\";s:42:\"header-elements-search-first-header-switch\";s:9:\"near_logo\";s:27:\"header-elements-search-icon\";s:1:\"1\";s:34:\"header-elements-search-on-desktops\";s:4:\"show\";s:43:\"header-elements-search-second-header-switch\";s:7:\"in_menu\";s:25:\"header-elements-soc_icons\";a:1:{i:0;a:2:{s:4:\"icon\";s:8:\"facebook\";s:3:\"url\";s:0:\"\";}}s:28:\"header-elements-soc_icons-bg\";s:8:\"disabled\";s:34:\"header-elements-soc_icons-bg-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-bg-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:33:\"header-elements-soc_icons-bg-size\";s:4:\"26px\";s:32:\"header-elements-soc_icons-border\";s:6:\"accent\";s:38:\"header-elements-soc_icons-border-color\";s:19:\"rgba(255,255,255,1)\";s:31:\"header-elements-soc_icons-color\";s:0:\"\";s:45:\"header-elements-soc_icons-first-header-switch\";s:7:\"in_menu\";s:34:\"header-elements-soc_icons-hover-bg\";s:6:\"accent\";s:40:\"header-elements-soc_icons-hover-bg-color\";s:18:\"rgba(21,191,230,1)\";s:43:\"header-elements-soc_icons-hover-bg-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:38:\"header-elements-soc_icons-hover-border\";s:8:\"disabled\";s:44:\"header-elements-soc_icons-hover-border-color\";s:19:\"rgba(255,255,255,1)\";s:37:\"header-elements-soc_icons-hover-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-on-desktops\";s:4:\"show\";s:46:\"header-elements-soc_icons-second-header-switch\";s:7:\"in_menu\";s:30:\"header-elements-soc_icons-size\";s:4:\"16px\";s:39:\"header-elements-soc_icons_border_radius\";s:5:\"100px\";s:38:\"header-elements-soc_icons_border_width\";s:3:\"2px\";s:29:\"header-elements-soc_icons_gap\";i:4;s:20:\"header-elements-text\";s:0:\"\";s:22:\"header-elements-text-2\";s:0:\"\";s:42:\"header-elements-text-2-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-2-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-2-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-3\";s:0:\"\";s:42:\"header-elements-text-3-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-3-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-3-second-header-switch\";s:7:\"in_menu\";s:40:\"header-elements-text-first-header-switch\";s:9:\"near_logo\";s:32:\"header-elements-text-on-desktops\";s:4:\"show\";s:41:\"header-elements-text-second-header-switch\";s:7:\"in_menu\";s:43:\"header-elements-woocommerce_cart-counter-bg\";s:6:\"accent\";s:49:\"header-elements-woocommerce_cart-counter-bg-color\";s:7:\"#000000\";s:52:\"header-elements-woocommerce_cart-counter-bg-gradient\";a:2:{i:0;s:7:\"#37a0fe\";i:1;s:7:\"#6b5ffd\";}s:46:\"header-elements-woocommerce_cart-counter-color\";s:7:\"#ffffff\";s:46:\"header-elements-woocommerce_cart-counter-style\";s:5:\"round\";s:52:\"header-elements-woocommerce_cart-first-header-switch\";s:9:\"near_logo\";s:44:\"header-elements-woocommerce_cart-on-desktops\";s:4:\"show\";s:35:\"header-floating_navigation-bg-color\";s:7:\"#000000\";s:37:\"header-floating_navigation-decoration\";s:6:\"shadow\";s:43:\"header-floating_navigation-decoration-color\";s:19:\"rgba(51,51,51,0.11)\";s:33:\"header-floating_navigation-height\";s:4:\"60px\";s:37:\"header-floating_navigation-show_after\";s:5:\"150px\";s:32:\"header-floating_navigation-style\";s:6:\"sticky\";s:17:\"header-font_color\";s:7:\"#474950\";s:18:\"header-font_family\";s:9:\"Open Sans\";s:23:\"header-font_line_height\";i:34;s:16:\"header-font_size\";i:15;s:21:\"header-font_uppercase\";b:0;s:17:\"header-icons_size\";a:2:{s:5:\"width\";i:14;s:6:\"height\";i:14;}s:22:\"header-inline-elements\";a:0:{}s:43:\"header-inline-elements-near_menu-font_color\";s:7:\"#ffffff\";s:44:\"header-inline-elements-near_menu-font_family\";s:5:\"Arial\";s:42:\"header-inline-elements-near_menu-font_size\";i:13;s:46:\"header-inline-elements-near_menu_right-padding\";s:16:\"0px 0px 0px 30px\";s:20:\"header-inline-height\";s:5:\"100px\";s:25:\"header-inline-icons_style\";s:4:\"bold\";s:26:\"header-inline-is_fullwidth\";s:1:\"0\";s:27:\"header-inline-menu-position\";s:5:\"right\";s:27:\"header-inline-show_elements\";s:1:\"0\";s:13:\"header-layout\";s:6:\"inline\";s:19:\"header-logo-padding\";s:15:\"0px 5px 0px 0px\";s:14:\"header-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:19:\"header-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:34:\"header-menu-active_item-font-color\";s:7:\"#80c647\";s:40:\"header-menu-active_item-font-color-style\";s:6:\"accent\";s:37:\"header-menu-active_item-font-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:41:\"header-menu-decoration-other-active-color\";s:7:\"#ffffff\";s:47:\"header-menu-decoration-other-active-color-style\";s:6:\"accent\";s:44:\"header-menu-decoration-other-active-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:40:\"header-menu-decoration-other-active-line\";s:1:\"0\";s:46:\"header-menu-decoration-other-active-line-color\";s:7:\"#8224e3\";s:52:\"header-menu-decoration-other-active-line-color-style\";s:5:\"color\";s:49:\"header-menu-decoration-other-active-line-gradient\";a:2:{i:0;s:7:\"#dd3333\";i:1;s:7:\"#81d742\";}s:48:\"header-menu-decoration-other-active-line-opacity\";i:30;s:43:\"header-menu-decoration-other-active-opacity\";i:15;s:41:\"header-menu-decoration-other-active-style\";s:10:\"background\";s:42:\"header-menu-decoration-other-border-radius\";i:3;s:40:\"header-menu-decoration-other-click_decor\";s:1:\"1\";s:46:\"header-menu-decoration-other-click_decor-color\";s:7:\"#ffffff\";s:52:\"header-menu-decoration-other-click_decor-color-style\";s:6:\"accent\";s:49:\"header-menu-decoration-other-click_decor-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:48:\"header-menu-decoration-other-click_decor-opacity\";i:20;s:40:\"header-menu-decoration-other-hover-color\";s:7:\"#ffffff\";s:46:\"header-menu-decoration-other-hover-color-style\";s:6:\"accent\";s:43:\"header-menu-decoration-other-hover-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:39:\"header-menu-decoration-other-hover-line\";s:1:\"0\";s:45:\"header-menu-decoration-other-hover-line-color\";s:7:\"#dd3333\";s:51:\"header-menu-decoration-other-hover-line-color-style\";s:8:\"gradient\";s:48:\"header-menu-decoration-other-hover-line-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:47:\"header-menu-decoration-other-hover-line-opacity\";i:23;s:40:\"header-menu-decoration-other-hover-style\";s:10:\"background\";s:38:\"header-menu-decoration-other-line_size\";s:3:\"2px\";s:47:\"header-menu-decoration-other-links-is_justified\";s:1:\"1\";s:36:\"header-menu-decoration-other-opacity\";i:15;s:28:\"header-menu-decoration-style\";s:9:\"underline\";s:38:\"header-menu-decoration-underline-color\";s:7:\"#1e73be\";s:44:\"header-menu-decoration-underline-color-style\";s:6:\"accent\";s:42:\"header-menu-decoration-underline-direction\";s:7:\"upwards\";s:41:\"header-menu-decoration-underline-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:42:\"header-menu-decoration-underline-line_size\";s:3:\"2px\";s:26:\"header-menu-dividers-color\";s:19:\"rgba(17,17,17,0.14)\";s:27:\"header-menu-dividers-height\";s:4:\"24px\";s:33:\"header-menu-dividers-height-style\";s:6:\"custom\";s:29:\"header-menu-dividers-surround\";s:1:\"0\";s:22:\"header-menu-font-color\";s:7:\"#8ed637\";s:23:\"header-menu-font-family\";s:9:\"Arial:600\";s:31:\"header-menu-font-is_capitalized\";b:0;s:21:\"header-menu-font-size\";i:17;s:28:\"header-menu-hover-font-color\";s:7:\"#80c647\";s:34:\"header-menu-hover-font-color-style\";s:5:\"color\";s:31:\"header-menu-hover-font-gradient\";a:2:{i:0;s:7:\"#8224e3\";i:1;s:7:\"#751257\";}s:21:\"header-menu-icon-size\";i:14;s:23:\"header-menu-item-margin\";s:19:\"18px 14px 18px 14px\";s:24:\"header-menu-item-padding\";s:15:\"4px 4px 4px 4px\";s:47:\"header-menu-item-surround_margins-custom-margin\";s:4:\"30px\";s:39:\"header-menu-item-surround_margins-style\";s:8:\"disabled\";s:25:\"header-menu-show_dividers\";s:1:\"0\";s:31:\"header-menu-show_next_lvl_icons\";s:1:\"1\";s:37:\"header-menu-submenu-active-font-color\";s:7:\"#ffffff\";s:43:\"header-menu-submenu-active-font-color-style\";s:6:\"accent\";s:40:\"header-menu-submenu-active-font-gradient\";a:2:{i:0;s:7:\"#ffffff\";i:1;s:7:\"#000000\";}s:28:\"header-menu-submenu-bg-color\";s:21:\"rgba(255,255,255,0.3)\";s:28:\"header-menu-submenu-bg-hover\";s:10:\"background\";s:28:\"header-menu-submenu-bg-width\";i:280;s:30:\"header-menu-submenu-font-color\";s:7:\"#145b21\";s:31:\"header-menu-submenu-font-family\";s:5:\"Arial\";s:37:\"header-menu-submenu-font-is_uppercase\";b:0;s:29:\"header-menu-submenu-font-size\";i:13;s:36:\"header-menu-submenu-hover-font-color\";s:7:\"#895cb8\";s:42:\"header-menu-submenu-hover-font-color-style\";s:6:\"accent\";s:39:\"header-menu-submenu-hover-font-gradient\";a:2:{i:0;s:7:\"#81d742\";i:1;s:7:\"#eeee22\";}s:29:\"header-menu-submenu-icon-size\";i:14;s:31:\"header-menu-submenu-item-margin\";s:15:\"0px 0px 0px 0px\";s:32:\"header-menu-submenu-item-padding\";s:19:\"10px 10px 10px 10px\";s:39:\"header-menu-submenu-parent_is_clickable\";s:1:\"1\";s:39:\"header-menu-submenu-show_next_lvl_icons\";s:1:\"1\";s:40:\"header-menu-submenu-subtitle-font-family\";s:6:\"Roboto\";s:38:\"header-menu-submenu-subtitle-font-size\";i:10;s:32:\"header-menu-subtitle-font-family\";s:6:\"Roboto\";s:30:\"header-menu-subtitle-font-size\";i:16;s:20:\"header-menu_bg_color\";s:7:\"#6a6e71\";s:23:\"header-menu_bg_ie_color\";s:7:\"#dadee1\";s:22:\"header-menu_bg_opacity\";i:18;s:29:\"header-menu_close_icon-margin\";s:19:\"30px 30px 30px 30px\";s:33:\"header-menu_icon-bg-border-radius\";s:5:\"500px\";s:25:\"header-menu_icon-bg-color\";s:7:\"#000000\";s:24:\"header-menu_icon-bg-size\";s:4:\"54px\";s:22:\"header-menu_icon-color\";s:7:\"#ffffff\";s:25:\"header-menu_icon-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:6:\"search\";i:2;s:5:\"phone\";}}s:44:\"header-menu_icon-elements-below_menu-padding\";s:16:\"30px 0px 0px 0px\";s:46:\"header-menu_icon-elements-near_menu-font_color\";s:7:\"#333333\";s:47:\"header-menu_icon-elements-near_menu-font_family\";s:10:\"Roboto:700\";s:45:\"header-menu_icon-elements-near_menu-font_size\";i:14;s:31:\"header-menu_icon-hover-bg-color\";s:7:\"#000000\";s:28:\"header-menu_icon-hover-color\";s:7:\"#ffffff\";s:28:\"header-menu_icon-icons_style\";s:4:\"bold\";s:23:\"header-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:30:\"header-menu_icon-show_elements\";s:1:\"1\";s:21:\"header-menu_icon-size\";s:6:\"medium\";s:21:\"header-mixed-bg-color\";s:7:\"#000000\";s:23:\"header-mixed-decoration\";s:6:\"shadow\";s:29:\"header-mixed-decoration-color\";s:18:\"rgba(221,153,51,1)\";s:32:\"header-mobile-first_switch-after\";s:6:\"1070px\";s:33:\"header-mobile-first_switch-height\";s:4:\"60px\";s:33:\"header-mobile-first_switch-layout\";s:10:\"right_left\";s:31:\"header-mobile-first_switch-logo\";s:6:\"mobile\";s:33:\"header-mobile-floating_navigation\";s:6:\"sticky\";s:29:\"header-mobile-header-bg-color\";s:7:\"#000000\";s:24:\"header-mobile-menu-align\";s:5:\"right\";s:27:\"header-mobile-menu-bg-color\";s:19:\"rgba(255,255,255,1)\";s:27:\"header-mobile-menu-bg-width\";s:5:\"300px\";s:29:\"header-mobile-menu-font-color\";s:7:\"#333333\";s:30:\"header-mobile-menu-font-family\";s:9:\"Arial:600\";s:35:\"header-mobile-menu-font-hover-color\";s:7:\"#3c3e45\";s:41:\"header-mobile-menu-font-hover-color-style\";s:6:\"accent\";s:38:\"header-mobile-menu-font-hover-gradient\";a:2:{i:0;s:7:\"#b78ce2\";i:1;s:7:\"#1e73be\";}s:38:\"header-mobile-menu-font-is_capitalized\";b:0;s:28:\"header-mobile-menu-font-size\";i:16;s:40:\"header-mobile-menu_icon-bg-border-radius\";s:3:\"0px\";s:32:\"header-mobile-menu_icon-bg-color\";s:7:\"#000000\";s:33:\"header-mobile-menu_icon-bg-enable\";s:1:\"0\";s:31:\"header-mobile-menu_icon-bg-size\";s:4:\"28px\";s:29:\"header-mobile-menu_icon-color\";s:7:\"#ffffff\";s:28:\"header-mobile-menu_icon-size\";s:5:\"small\";s:37:\"header-mobile-microwidgets-font-color\";s:7:\"#ffffff\";s:38:\"header-mobile-microwidgets-font-family\";s:5:\"Arial\";s:36:\"header-mobile-microwidgets-font-size\";i:13;s:30:\"header-mobile-overlay-bg-color\";s:15:\"rgba(0,0,0,0.5)\";s:33:\"header-mobile-second_switch-after\";s:6:\"1024px\";s:34:\"header-mobile-second_switch-height\";s:4:\"60px\";s:34:\"header-mobile-second_switch-layout\";s:10:\"left_right\";s:32:\"header-mobile-second_switch-logo\";s:6:\"mobile\";s:33:\"header-mobile-submenu-font-family\";s:5:\"Arial\";s:41:\"header-mobile-submenu-font-is_capitalized\";b:0;s:31:\"header-mobile-submenu-font-size\";i:13;s:27:\"header-next_level_indicator\";s:1:\"1\";s:30:\"header-overlay-content-padding\";s:19:\"40px 40px 40px 40px\";s:31:\"header-overlay-content-position\";s:6:\"center\";s:28:\"header-overlay-content-width\";s:5:\"300px\";s:42:\"header-overlay-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:40:\"header-overlay-elements-top_line-padding\";s:15:\"0px 0px 0px 0px\";s:26:\"header-overlay-icons_style\";s:5:\"light\";s:21:\"header-overlay-layout\";s:9:\"menu_icon\";s:50:\"header-overlay-layout-menu_icon-show_floating_logo\";s:1:\"1\";s:37:\"header-overlay-layout-side_line-width\";i:60;s:37:\"header-overlay-layout-top_line-height\";i:130;s:43:\"header-overlay-layout-top_line-is_fullwidth\";s:1:\"0\";s:44:\"header-overlay-layout-top_line-logo-position\";s:4:\"left\";s:28:\"header-overlay-logo-position\";s:6:\"inside\";s:35:\"header-overlay-menu-items_alignment\";s:6:\"center\";s:30:\"header-overlay-menu-items_link\";s:9:\"textwidth\";s:27:\"header-overlay-menu-padding\";s:7:\"0px 0px\";s:28:\"header-overlay-menu-position\";s:5:\"v_top\";s:18:\"header-search_show\";s:1:\"1\";s:25:\"header-show_floating_menu\";s:1:\"1\";s:31:\"header-show_floating_navigation\";s:1:\"0\";s:27:\"header-side-content-padding\";s:19:\"40px 40px 40px 40px\";s:28:\"header-side-content-position\";s:4:\"left\";s:25:\"header-side-content-width\";s:5:\"220px\";s:20:\"header-side-elements\";a:0:{}s:39:\"header-side-elements-below_menu-padding\";s:16:\"40px 0px 0px 0px\";s:41:\"header-side-elements-near_menu-font_color\";s:7:\"#333333\";s:42:\"header-side-elements-near_menu-font_family\";s:6:\"Roboto\";s:40:\"header-side-elements-near_menu-font_size\";i:13;s:23:\"header-side-icons_style\";s:4:\"bold\";s:25:\"header-side-logo-position\";s:6:\"inside\";s:32:\"header-side-menu-items_alignment\";s:4:\"left\";s:27:\"header-side-menu-items_link\";s:9:\"textwidth\";s:24:\"header-side-menu-padding\";s:7:\"0px 0px\";s:25:\"header-side-menu-position\";s:5:\"v_top\";s:33:\"header-side-menu-submenu-position\";s:4:\"down\";s:20:\"header-side-position\";s:4:\"left\";s:25:\"header-side-show_elements\";s:1:\"0\";s:17:\"header-side-width\";s:5:\"300px\";s:25:\"header-side_line-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:6:\"search\";i:2;s:5:\"phone\";}}s:44:\"header-side_line-elements-below_menu-padding\";s:16:\"50px 0px 0px 0px\";s:46:\"header-side_line-elements-near_menu-font_color\";s:7:\"#333333\";s:47:\"header-side_line-elements-near_menu-font_family\";s:20:\"Roboto Condensed:700\";s:45:\"header-side_line-elements-near_menu-font_size\";i:15;s:28:\"header-side_line-icons_style\";s:4:\"bold\";s:30:\"header-side_line-show_elements\";s:1:\"1\";s:22:\"header-side_line-width\";s:4:\"60px\";s:32:\"header-slide_out-content-padding\";s:19:\"40px 40px 40px 40px\";s:33:\"header-slide_out-content-position\";s:4:\"left\";s:30:\"header-slide_out-content-width\";s:5:\"220px\";s:44:\"header-slide_out-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:42:\"header-slide_out-elements-top_line-padding\";s:15:\"0px 0px 0px 0px\";s:28:\"header-slide_out-icons_style\";s:5:\"light\";s:23:\"header-slide_out-layout\";s:9:\"menu_icon\";s:52:\"header-slide_out-layout-menu_icon-show_floating_logo\";s:1:\"1\";s:42:\"header-slide_out-layout-side_line-position\";s:5:\"above\";s:39:\"header-slide_out-layout-side_line-width\";i:60;s:39:\"header-slide_out-layout-top_line-height\";i:130;s:45:\"header-slide_out-layout-top_line-is_fullwidth\";s:1:\"0\";s:46:\"header-slide_out-layout-top_line-logo-position\";s:4:\"left\";s:30:\"header-slide_out-logo-position\";s:6:\"inside\";s:37:\"header-slide_out-menu-items_alignment\";s:4:\"left\";s:32:\"header-slide_out-menu-items_link\";s:9:\"textwidth\";s:29:\"header-slide_out-menu-padding\";s:7:\"0px 0px\";s:30:\"header-slide_out-menu-position\";s:5:\"v_top\";s:34:\"header-slide_out-overlay-animation\";s:5:\"slide\";s:33:\"header-slide_out-overlay-bg-color\";s:7:\"#111111\";s:39:\"header-slide_out-overlay-bg-color-style\";s:5:\"color\";s:36:\"header-slide_out-overlay-bg-gradient\";a:2:{i:0;s:7:\"#cdb7e2\";i:1;s:7:\"#821482\";}s:35:\"header-slide_out-overlay-bg-opacity\";i:40;s:29:\"header-slide_out-overlay-blur\";s:1:\"0\";s:33:\"header-slide_out-overlay-x_cursor\";s:1:\"0\";s:39:\"header-slide_out-overlay-x_cursor-color\";s:7:\"#000000\";s:25:\"header-slide_out-position\";s:5:\"right\";s:22:\"header-slide_out-width\";s:5:\"300px\";s:21:\"header-split-elements\";a:0:{}s:42:\"header-split-elements-near_menu-font_color\";s:7:\"#333333\";s:43:\"header-split-elements-near_menu-font_family\";s:10:\"Roboto:700\";s:41:\"header-split-elements-near_menu-font_size\";i:13;s:44:\"header-split-elements-near_menu_left-padding\";s:17:\"0px 20px 0px 20px\";s:45:\"header-split-elements-near_menu_right-padding\";s:17:\"0px 20px 0px 20px\";s:19:\"header-split-height\";s:5:\"100px\";s:24:\"header-split-icons_style\";s:4:\"bold\";s:25:\"header-split-is_fullwidth\";s:1:\"0\";s:26:\"header-split-menu-position\";s:6:\"inside\";s:26:\"header-split-show_elements\";s:1:\"0\";s:33:\"header-style-floating-choose_logo\";s:6:\"custom\";s:34:\"header-style-floating-logo-padding\";s:16:\"0px 18px 0px 0px\";s:29:\"header-style-floating-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:34:\"header-style-floating-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo-padding\";s:15:\"0px 0px 0px 0px\";s:26:\"header-style-mixed-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:32:\"header-style-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:27:\"header-style-mobile-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:32:\"header-style-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:36:\"header-style-transparent-choose_logo\";s:6:\"custom\";s:37:\"header-style-transparent-logo-padding\";s:15:\"0px 5px 0px 0px\";s:32:\"header-style-transparent-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:37:\"header-style-transparent-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:44:\"header-style-transparent-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:39:\"header-style-transparent-mobile-logo_hd\";a:2:{i:0;s:86:\"/inc/presets/images/full/skin11r.header-style-transparent-mobile-logo-hd.png?w=88&h=88\";i:1;i:0;}s:44:\"header-style-transparent-mobile-logo_regular\";a:2:{i:0;s:91:\"/inc/presets/images/full/skin11r.header-style-transparent-mobile-logo-regular.png?w=44&h=44\";i:1;i:0;}s:23:\"header-submenu_bg_color\";s:7:\"#ffffff\";s:26:\"header-submenu_bg_ie_color\";s:7:\"#ffffff\";s:25:\"header-submenu_bg_opacity\";i:97;s:20:\"header-submenu_color\";s:7:\"#373a41\";s:29:\"header-submenu_dividers_color\";s:7:\"#001525\";s:32:\"header-submenu_dividers_ie_color\";s:7:\"#dadee1\";s:31:\"header-submenu_dividers_opacity\";i:10;s:25:\"header-submenu_icons_size\";a:2:{s:5:\"width\";i:12;s:6:\"height\";i:12;}s:35:\"header-submenu_next_level_indicator\";s:1:\"1\";s:31:\"header-submenu_parent_clickable\";b:0;s:24:\"header-top_line-elements\";a:1:{s:14:\"top_line_right\";a:3:{i:0;s:6:\"search\";i:1;s:5:\"phone\";i:2;s:12:\"social_icons\";}}s:43:\"header-top_line-elements-below_menu-padding\";s:16:\"35px 0px 0px 0px\";s:47:\"header-top_line-elements-in_top_line-font_color\";s:7:\"#333333\";s:48:\"header-top_line-elements-in_top_line-font_family\";s:6:\"Roboto\";s:46:\"header-top_line-elements-in_top_line-font_size\";i:13;s:45:\"header-top_line-elements-near_menu-font_color\";s:7:\"#333333\";s:46:\"header-top_line-elements-near_menu-font_family\";s:6:\"Roboto\";s:44:\"header-top_line-elements-near_menu-font_size\";i:13;s:41:\"header-top_line-elements-top_line-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-top_line-elements-top_line_right-padding\";s:15:\"0px 0px 0px 0px\";s:27:\"header-top_line-icons_style\";s:4:\"bold\";s:29:\"header-top_line-show_elements\";s:1:\"1\";s:43:\"header-transparent-mobile-first_switch-logo\";s:6:\"mobile\";s:44:\"header-transparent-mobile-second_switch-logo\";s:6:\"mobile\";s:27:\"header-transparent_bg_color\";s:18:\"rgba(238,238,34,1)\";s:30:\"header-transparent_bg_ie_color\";s:7:\"#000000\";s:27:\"header-transparent_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:29:\"header-transparent_bg_opacity\";i:90;s:17:\"header_navigation\";s:9:\"slide_out\";s:12:\"hoover-color\";s:7:\"#000000\";s:14:\"hoover-opacity\";i:20;s:12:\"hoover-style\";s:4:\"blur\";s:34:\"image_hover-album_miniatures_style\";s:7:\"style_2\";s:17:\"image_hover-color\";s:7:\"#0ca2e0\";s:26:\"image_hover-color_gradient\";a:2:{i:0;s:7:\"#2edded\";i:1;s:7:\"#0084bb\";}s:22:\"image_hover-color_mode\";s:6:\"accent\";s:24:\"image_hover-default_icon\";s:4:\"none\";s:29:\"image_hover-onclick_animation\";b:0;s:19:\"image_hover-opacity\";i:20;s:31:\"image_hover-project_icons_style\";s:7:\"outline\";s:34:\"image_hover-project_rollover_color\";s:7:\"#000000\";s:43:\"image_hover-project_rollover_color_gradient\";a:2:{i:0;s:7:\"#2edded\";i:1;s:7:\"#0084bb\";}s:39:\"image_hover-project_rollover_color_mode\";s:6:\"accent\";s:36:\"image_hover-project_rollover_opacity\";i:85;s:17:\"image_hover-style\";s:4:\"none\";s:14:\"input_bg_color\";s:19:\"rgba(253,253,253,1)\";s:18:\"input_border_color\";s:19:\"rgba(51,51,51,0.12)\";s:19:\"input_border_radius\";i:1;s:18:\"input_border_width\";i:1;s:11:\"input_color\";s:7:\"#8b8d94\";s:12:\"input_height\";i:38;s:25:\"layout-menu_icon-position\";s:15:\"menu_icon_right\";s:35:\"layout-menu_icon-show_floating_logo\";s:1:\"1\";s:25:\"layout-side_line-position\";s:5:\"above\";s:27:\"layout-side_line-v_position\";s:4:\"left\";s:22:\"layout-top_line-height\";s:4:\"80px\";s:28:\"layout-top_line-is_fullwidth\";s:1:\"0\";s:25:\"layout-top_line-is_sticky\";s:1:\"1\";s:29:\"layout-top_line-logo-position\";s:6:\"center\";s:16:\"message_bg_color\";s:0:\"\";s:13:\"message_color\";s:7:\"#ffffff\";s:52:\"page_title-background-style-transparent-color_scheme\";s:5:\"light\";s:18:\"page_title-padding\";s:9:\"25px 20px\";s:26:\"post-show_fancy_categories\";s:1:\"1\";s:20:\"post-show_fancy_date\";s:1:\"1\";s:6:\"preset\";s:8:\"wizard01\";s:16:\"sidebar-bg_color\";s:19:\"rgba(247,247,247,1)\";s:19:\"sidebar-bg_ie_color\";s:7:\"#ffffff\";s:16:\"sidebar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"sidebar-bg_opacity\";i:100;s:18:\"sidebar-decoration\";s:4:\"none\";s:32:\"sidebar-decoration_outline_color\";s:16:\"rgba(0,0,0,0.06)\";s:27:\"sidebar-distance_to_content\";i:50;s:26:\"sidebar-divider-horizontal\";s:1:\"1\";s:24:\"sidebar-divider-vertical\";s:1:\"1\";s:22:\"sidebar-dividers_color\";s:7:\"#dadee1\";s:25:\"sidebar-dividers_ie_color\";s:7:\"#dadee1\";s:24:\"sidebar-dividers_opacity\";i:80;s:21:\"sidebar-headers_color\";s:7:\"#373a41\";s:26:\"sidebar-primary_text_color\";s:7:\"#3b3f42\";s:22:\"sidebar-responsiveness\";i:990;s:25:\"sidebar-vertical_distance\";s:2:\"88\";s:20:\"sidebar-visual_style\";s:13:\"with_dividers\";s:13:\"sidebar-width\";s:5:\"350px\";s:18:\"slideshow-bg_color\";s:7:\"#f7f7f8\";s:23:\"slideshow-bg_fullscreen\";b:0;s:21:\"slideshow-bg_ie_color\";s:7:\"#ffffff\";s:18:\"slideshow-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:20:\"slideshow-bg_opacity\";i:100;s:19:\"social_buttons-page\";a:0:{}s:20:\"social_buttons-photo\";a:0:{}s:29:\"social_buttons-portfolio_post\";a:0:{}s:19:\"social_buttons-post\";a:0:{}s:22:\"social_buttons-product\";a:6:{i:0;s:7:\"twitter\";i:1;s:7:\"google+\";i:2;s:9:\"pinterest\";i:3;s:8:\"linkedin\";i:4;s:8:\"whatsapp\";i:5;s:8:\"facebook\";}s:35:\"social_buttons-product-button_title\";s:18:\"Share this product\";s:25:\"social_buttons-visibility\";s:7:\"allways\";s:25:\"stripes-stripe_1_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_1_color\";s:7:\"#f8f8f9\";s:39:\"stripes-stripe_1_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_1_content_boxes_bg_opacity\";i:100;s:41:\"stripes-stripe_1_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_1_content_boxes_decoration_outline_color\";s:7:\"#dd3333\";s:57:\"stripes-stripe_1_content_boxes_decoration_outline_opacity\";i:100;s:26:\"stripes-stripe_1_div_color\";s:7:\"#dadee1\";s:29:\"stripes-stripe_1_div_ie_color\";s:7:\"#dadee1\";s:28:\"stripes-stripe_1_div_opacity\";i:85;s:30:\"stripes-stripe_1_headers_color\";s:7:\"#3b3f4a\";s:25:\"stripes-stripe_1_ie_color\";s:7:\"#f7f7f8\";s:24:\"stripes-stripe_1_opacity\";i:4;s:24:\"stripes-stripe_1_outline\";s:4:\"hide\";s:30:\"stripes-stripe_1_outline_color\";s:7:\"#44bb70\";s:32:\"stripes-stripe_1_outline_opacity\";i:100;s:27:\"stripes-stripe_1_text_color\";s:7:\"#787d85\";s:25:\"stripes-stripe_2_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_2_color\";s:7:\"#23262d\";s:39:\"stripes-stripe_2_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_2_content_boxes_bg_opacity\";i:10;s:41:\"stripes-stripe_2_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_2_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_2_content_boxes_decoration_outline_opacity\";i:15;s:26:\"stripes-stripe_2_div_color\";s:7:\"#dadee1\";s:29:\"stripes-stripe_2_div_ie_color\";s:7:\"#dadee1\";s:28:\"stripes-stripe_2_div_opacity\";i:86;s:30:\"stripes-stripe_2_headers_color\";s:7:\"#ffffff\";s:25:\"stripes-stripe_2_ie_color\";s:7:\"#f7f7f8\";s:24:\"stripes-stripe_2_opacity\";i:4;s:24:\"stripes-stripe_2_outline\";s:4:\"hide\";s:30:\"stripes-stripe_2_outline_color\";s:7:\"#ffffff\";s:32:\"stripes-stripe_2_outline_opacity\";i:15;s:27:\"stripes-stripe_2_text_color\";s:7:\"#8b9199\";s:25:\"stripes-stripe_3_bg_image\";a:4:{s:5:\"image\";s:61:\"/inc/presets/images/full/skin22.stripes-stripe-3-bg-image.jpg\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_3_color\";s:7:\"#000000\";s:39:\"stripes-stripe_3_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_3_content_boxes_bg_opacity\";i:10;s:41:\"stripes-stripe_3_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_3_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_3_content_boxes_decoration_outline_opacity\";i:19;s:26:\"stripes-stripe_3_div_color\";s:7:\"#292941\";s:29:\"stripes-stripe_3_div_ie_color\";s:7:\"#afc5d2\";s:28:\"stripes-stripe_3_div_opacity\";i:12;s:30:\"stripes-stripe_3_headers_color\";s:7:\"#ffffff\";s:25:\"stripes-stripe_3_ie_color\";s:7:\"#cacaca\";s:24:\"stripes-stripe_3_opacity\";i:100;s:24:\"stripes-stripe_3_outline\";s:4:\"hide\";s:30:\"stripes-stripe_3_outline_color\";s:7:\"#252728\";s:32:\"stripes-stripe_3_outline_opacity\";i:100;s:27:\"stripes-stripe_3_text_color\";s:7:\"#ffffff\";s:20:\"theme_update-api_key\";s:32:\"rqjwbf9qv41nli5ae2w2r796fbgdlqr1\";s:22:\"theme_update-user_name\";s:8:\"draviste\";s:14:\"top-bar-height\";s:4:\"36px\";s:28:\"top-bar-transparent_bg_color\";s:15:\"rgba(0,0,0,0.5)\";s:16:\"top_bar-bg-color\";s:7:\"#81d742\";s:16:\"top_bar-bg-image\";a:4:{s:5:\"image\";s:73:\"/wp-content/themes/dt-the7/images/backgrounds/patterns/full/grid-dark.png\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:16:\"top_bar-bg-style\";s:8:\"disabled\";s:16:\"top_bar-bg_color\";s:7:\"#ffffff\";s:19:\"top_bar-bg_ie_color\";s:7:\"#ffffff\";s:16:\"top_bar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"top_bar-bg_opacity\";i:100;s:23:\"top_bar-contact_address\";s:49:\"3821A Cedar Hill Cross Rd, Victoria, B.C. V8P 2M6\";s:21:\"top_bar-contact_clock\";s:38:\"Monday to Friday from 9:00 am -5:00 pm\";s:21:\"top_bar-contact_email\";s:14:\"info@localhost\";s:20:\"top_bar-contact_info\";s:111:\"<p><span class=\"paint-accent-color\">Mailing Address:</span>  3821A Cedar Hill Cross Rd, Victoria, B.C. V8P 2M6 \";s:21:\"top_bar-contact_phone\";s:30:\"250-472-2851 Fax: 250 472-2815\";s:20:\"top_bar-contact_show\";b:0;s:21:\"top_bar-contact_skype\";s:0:\"\";s:22:\"top_bar-dividers_color\";s:7:\"#dadee1\";s:25:\"top_bar-dividers_ie_color\";s:7:\"#dadee1\";s:24:\"top_bar-dividers_opacity\";i:80;s:18:\"top_bar-font-color\";s:7:\"#686868\";s:19:\"top_bar-font-family\";s:5:\"Arial\";s:27:\"top_bar-font-is_capitalized\";b:0;s:17:\"top_bar-font-size\";i:13;s:18:\"top_bar-line-color\";s:22:\"rgba(255,255,255,0.12)\";s:34:\"top_bar-line-in-transparent-header\";b:0;s:17:\"top_bar-line_size\";s:3:\"1px\";s:18:\"top_bar-line_style\";s:5:\"solid\";s:15:\"top_bar-padding\";s:11:\"5px 5px 0px\";s:12:\"top_bar-show\";s:1:\"1\";s:23:\"top_bar-soc_ico_behance\";s:0:\"\";s:25:\"top_bar-soc_ico_delicious\";s:0:\"\";s:22:\"top_bar-soc_ico_devian\";s:0:\"\";s:24:\"top_bar-soc_ico_dribbble\";s:0:\"\";s:24:\"top_bar-soc_ico_facebook\";s:0:\"\";s:22:\"top_bar-soc_ico_flickr\";s:0:\"\";s:22:\"top_bar-soc_ico_forrst\";s:0:\"\";s:26:\"top_bar-soc_ico_foursquare\";s:0:\"\";s:22:\"top_bar-soc_ico_github\";s:0:\"\";s:22:\"top_bar-soc_ico_google\";s:0:\"\";s:25:\"top_bar-soc_ico_instagram\";s:0:\"\";s:22:\"top_bar-soc_ico_lastfm\";s:0:\"\";s:24:\"top_bar-soc_ico_linkedin\";s:0:\"\";s:20:\"top_bar-soc_ico_mail\";s:0:\"\";s:25:\"top_bar-soc_ico_pinterest\";s:0:\"\";s:22:\"top_bar-soc_ico_px-500\";s:0:\"\";s:19:\"top_bar-soc_ico_rss\";s:0:\"\";s:21:\"top_bar-soc_ico_skype\";s:0:\"\";s:27:\"top_bar-soc_ico_stumbleupon\";s:0:\"\";s:27:\"top_bar-soc_ico_tripedvisor\";s:0:\"\";s:23:\"top_bar-soc_ico_tumbler\";s:0:\"\";s:23:\"top_bar-soc_ico_twitter\";s:34:\"https://twitter.com/south_island_c\";s:21:\"top_bar-soc_ico_vimeo\";s:0:\"\";s:18:\"top_bar-soc_ico_vk\";s:0:\"\";s:23:\"top_bar-soc_ico_website\";s:0:\"\";s:21:\"top_bar-soc_ico_weibo\";s:0:\"\";s:20:\"top_bar-soc_ico_xing\";s:0:\"\";s:24:\"top_bar-soc_ico_you-tube\";s:0:\"\";s:22:\"top_bar-soc_icon_color\";s:7:\"#0066bf\";s:22:\"top_bar-soc_icon_hover\";s:7:\"default\";s:28:\"top_bar-soc_icon_hover_color\";s:7:\"#2a83ed\";s:12:\"top_bar-text\";s:0:\"\";s:18:\"top_bar-text_color\";s:7:\"#8d9095\";s:11:\"widgetareas\";a:2:{i:1;a:2:{s:12:\"sidebar_name\";s:15:\"Default Sidebar\";s:12:\"sidebar_desc\";s:27:\"Sidebar primary widget area\";}i:2;a:2:{s:12:\"sidebar_name\";s:14:\"Default Footer\";s:12:\"sidebar_desc\";s:26:\"Footer primary widget area\";}}s:24:\"woocommerce-product_zoom\";s:1:\"1\";s:24:\"woocommerce_cart_padding\";s:8:\"60px 0px\";s:23:\"woocommerce_cart_switch\";i:990;s:29:\"woocommerce_product_img_width\";s:3:\"50%\";s:26:\"woocommerce_product_switch\";i:778;s:28:\"woocommerce_rel_products_max\";i:6;s:28:\"woocommerce_steps-bg_opacity\";i:100;s:26:\"woocommerce_steps_bg_color\";s:7:\"#ffffff\";s:23:\"woocommerce_steps_color\";s:7:\"#373a41\";}", "yes");
INSERT INTO `wp_options` VALUES("1935", "presscore_less_css_is_writable", "1", "yes");
INSERT INTO `wp_options` VALUES("1936", "wp_less_stylesheet_data_c4daf1e7e0f6e169688dcccc41d42e5f", "a:1:{s:10:\"target_uri\";s:97:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/wp-less/dt-the7/css/custom-8a94d04d3d.css\";}", "yes");
INSERT INTO `wp_options` VALUES("1937", "_transient_wp_less_compiled_c4daf1e7e0f6e169688dcccc41d42e5f", "a:4:{s:4:\"root\";s:89:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/themes/dt-the7/css/custom.less\";s:8:\"compiled\";N;s:5:\"files\";a:1:{s:80:\"/home/vhosts/southisl/public_html/site/wp-content/themes/dt-the7/css/custom.less\";i:1404320529;}s:7:\"updated\";i:1405974183;}", "yes");
INSERT INTO `wp_options` VALUES("1984", "dt_team_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1985", "dt_logos_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1986", "dt_benefits_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("2055", "wpb_js_composer_templates_slashes_updated", "yes", "yes");
INSERT INTO `wp_options` VALUES("2056", "wpb_js_templates", "a:1:{i:0;a:2:{s:4:\"name\";s:0:\"\";s:8:\"template\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("2193", "wpseo_titles", "a:177:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:6:\"noydir\";b:0;s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:0:\"\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:0:\"\";s:15:\"title-404-wpseo\";s:0:\"\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;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:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;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:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:17:\"title-ai1ec_event\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-ai1ec_event\";s:0:\"\";s:19:\"metakey-ai1ec_event\";s:0:\"\";s:19:\"noindex-ai1ec_event\";b:0;s:20:\"showdate-ai1ec_event\";b:0;s:23:\"hideeditbox-ai1ec_event\";b:0;s:27:\"title-ptarchive-ai1ec_event\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-ptarchive-ai1ec_event\";s:0:\"\";s:29:\"metakey-ptarchive-ai1ec_event\";s:0:\"\";s:29:\"bctitle-ptarchive-ai1ec_event\";s:0:\"\";s:29:\"noindex-ptarchive-ai1ec_event\";b:0;s:27:\"title-tax-events_categories\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-tax-events_categories\";s:0:\"\";s:29:\"metakey-tax-events_categories\";s:0:\"\";s:33:\"hideeditbox-tax-events_categories\";b:0;s:29:\"noindex-tax-events_categories\";b:0;s:21:\"title-tax-events_tags\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-events_tags\";s:0:\"\";s:23:\"metakey-tax-events_tags\";s:0:\"\";s:27:\"hideeditbox-tax-events_tags\";b:0;s:23:\"noindex-tax-events_tags\";b:0;s:18:\"title-dt_portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-dt_portfolio\";s:0:\"\";s:20:\"metakey-dt_portfolio\";s:0:\"\";s:20:\"noindex-dt_portfolio\";b:0;s:21:\"showdate-dt_portfolio\";b:0;s:24:\"hideeditbox-dt_portfolio\";b:0;s:21:\"title-dt_testimonials\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-dt_testimonials\";s:0:\"\";s:23:\"metakey-dt_testimonials\";s:0:\"\";s:23:\"noindex-dt_testimonials\";b:0;s:24:\"showdate-dt_testimonials\";b:0;s:27:\"hideeditbox-dt_testimonials\";b:0;s:13:\"title-dt_team\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-dt_team\";s:0:\"\";s:15:\"metakey-dt_team\";s:0:\"\";s:15:\"noindex-dt_team\";b:0;s:16:\"showdate-dt_team\";b:0;s:19:\"hideeditbox-dt_team\";b:0;s:14:\"title-dt_logos\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-dt_logos\";s:0:\"\";s:16:\"metakey-dt_logos\";s:0:\"\";s:16:\"noindex-dt_logos\";b:0;s:17:\"showdate-dt_logos\";b:0;s:20:\"hideeditbox-dt_logos\";b:0;s:17:\"title-dt_benefits\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-dt_benefits\";s:0:\"\";s:19:\"metakey-dt_benefits\";s:0:\"\";s:19:\"noindex-dt_benefits\";b:0;s:20:\"showdate-dt_benefits\";b:0;s:23:\"hideeditbox-dt_benefits\";b:0;s:16:\"title-dt_gallery\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-dt_gallery\";s:0:\"\";s:18:\"metakey-dt_gallery\";s:0:\"\";s:18:\"noindex-dt_gallery\";b:0;s:19:\"showdate-dt_gallery\";b:0;s:22:\"hideeditbox-dt_gallery\";b:0;s:18:\"title-dt_slideshow\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-dt_slideshow\";s:0:\"\";s:20:\"metakey-dt_slideshow\";s:0:\"\";s:20:\"noindex-dt_slideshow\";b:0;s:21:\"showdate-dt_slideshow\";b:0;s:24:\"hideeditbox-dt_slideshow\";b:0;s:28:\"title-ptarchive-dt_portfolio\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-ptarchive-dt_portfolio\";s:0:\"\";s:30:\"metakey-ptarchive-dt_portfolio\";s:0:\"\";s:30:\"bctitle-ptarchive-dt_portfolio\";s:0:\"\";s:30:\"noindex-ptarchive-dt_portfolio\";b:0;s:23:\"title-ptarchive-dt_team\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-dt_team\";s:0:\"\";s:25:\"metakey-ptarchive-dt_team\";s:0:\"\";s:25:\"bctitle-ptarchive-dt_team\";s:0:\"\";s:25:\"noindex-ptarchive-dt_team\";b:0;s:24:\"title-ptarchive-dt_logos\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-ptarchive-dt_logos\";s:0:\"\";s:26:\"metakey-ptarchive-dt_logos\";s:0:\"\";s:26:\"bctitle-ptarchive-dt_logos\";s:0:\"\";s:26:\"noindex-ptarchive-dt_logos\";b:0;s:27:\"title-ptarchive-dt_benefits\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-ptarchive-dt_benefits\";s:0:\"\";s:29:\"metakey-ptarchive-dt_benefits\";s:0:\"\";s:29:\"bctitle-ptarchive-dt_benefits\";s:0:\"\";s:29:\"noindex-ptarchive-dt_benefits\";b:0;s:26:\"title-ptarchive-dt_gallery\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-ptarchive-dt_gallery\";s:0:\"\";s:28:\"metakey-ptarchive-dt_gallery\";s:0:\"\";s:28:\"bctitle-ptarchive-dt_gallery\";s:0:\"\";s:28:\"noindex-ptarchive-dt_gallery\";b:0;s:28:\"title-ptarchive-dt_slideshow\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-ptarchive-dt_slideshow\";s:0:\"\";s:30:\"metakey-ptarchive-dt_slideshow\";s:0:\"\";s:30:\"bctitle-ptarchive-dt_slideshow\";s:0:\"\";s:30:\"noindex-ptarchive-dt_slideshow\";b:0;s:31:\"title-tax-dt_portfolio_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:34:\"metadesc-tax-dt_portfolio_category\";s:0:\"\";s:33:\"metakey-tax-dt_portfolio_category\";s:0:\"\";s:37:\"hideeditbox-tax-dt_portfolio_category\";b:0;s:33:\"noindex-tax-dt_portfolio_category\";b:0;s:34:\"title-tax-dt_testimonials_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:37:\"metadesc-tax-dt_testimonials_category\";s:0:\"\";s:36:\"metakey-tax-dt_testimonials_category\";s:0:\"\";s:40:\"hideeditbox-tax-dt_testimonials_category\";b:0;s:36:\"noindex-tax-dt_testimonials_category\";b:0;s:26:\"title-tax-dt_team_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-dt_team_category\";s:0:\"\";s:28:\"metakey-tax-dt_team_category\";s:0:\"\";s:32:\"hideeditbox-tax-dt_team_category\";b:0;s:28:\"noindex-tax-dt_team_category\";b:0;s:27:\"title-tax-dt_logos_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-tax-dt_logos_category\";s:0:\"\";s:29:\"metakey-tax-dt_logos_category\";s:0:\"\";s:33:\"hideeditbox-tax-dt_logos_category\";b:0;s:29:\"noindex-tax-dt_logos_category\";b:0;s:30:\"title-tax-dt_benefits_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:33:\"metadesc-tax-dt_benefits_category\";s:0:\"\";s:32:\"metakey-tax-dt_benefits_category\";s:0:\"\";s:36:\"hideeditbox-tax-dt_benefits_category\";b:0;s:32:\"noindex-tax-dt_benefits_category\";b:0;s:29:\"title-tax-dt_gallery_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:32:\"metadesc-tax-dt_gallery_category\";s:0:\"\";s:31:\"metakey-tax-dt_gallery_category\";s:0:\"\";s:35:\"hideeditbox-tax-dt_gallery_category\";b:0;s:31:\"noindex-tax-dt_gallery_category\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("2194", "wpseo", "a:20:{s:14:\"blocking_files\";a:0:{}s:26:\"ignore_blog_public_warning\";b:0;s:31:\"ignore_meta_description_warning\";b:0;s:20:\"ignore_page_comments\";b:0;s:16:\"ignore_permalink\";b:0;s:15:\"ms_defaults_set\";b:0;s:23:\"theme_description_found\";s:0:\"\";s:21:\"theme_has_description\";b:0;s:7:\"version\";s:5:\"2.3.2\";s:11:\"alexaverify\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("2202", "rg_form_version", "2.3.2", "yes");
INSERT INTO `wp_options` VALUES("2206", "rg_gforms_key", "78cff232022e80bf5188a736095746b7", "yes");
INSERT INTO `wp_options` VALUES("2207", "rg_gforms_disable_css", "", "yes");
INSERT INTO `wp_options` VALUES("2208", "rg_gforms_enable_html5", "", "yes");
INSERT INTO `wp_options` VALUES("2209", "gform_enable_noconflict", "", "yes");
INSERT INTO `wp_options` VALUES("2210", "rg_gforms_enable_akismet", "", "yes");
INSERT INTO `wp_options` VALUES("2211", "rg_gforms_captcha_public_key", "", "yes");
INSERT INTO `wp_options` VALUES("2212", "rg_gforms_captcha_private_key", "", "yes");
INSERT INTO `wp_options` VALUES("2213", "rg_gforms_currency", "CAD", "yes");
INSERT INTO `wp_options` VALUES("2214", "rg_gforms_message", "<!--GFM-->", "yes");
INSERT INTO `wp_options` VALUES("2395", "wpseo_taxonomy_meta", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("2418", "dt_portfolio_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("2582", "dt_testimonials_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("2604", "custom_login", "", "yes");
INSERT INTO `wp_options` VALUES("2700", "dt_gallery_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("3019", "ai1ec_category_meta_ported", "1", "no");
INSERT INTO `wp_options` VALUES("3020", "ai1ec_current_theme", "a:5:{s:10:\"theme_root\";s:98:\"/home/vhosts/southisl/public_html/wp-content/plugins/all-in-one-event-calendar/public/themes-ai1ec\";s:9:\"theme_dir\";s:105:\"/home/vhosts/southisl/public_html/wp-content/plugins/all-in-one-event-calendar/public/themes-ai1ec/vortex\";s:9:\"theme_url\";s:115:\"http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/all-in-one-event-calendar/public/themes-ai1ec/vortex\";s:10:\"stylesheet\";s:6:\"vortex\";s:6:\"legacy\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("3023", "ai1ec_scheduler_hooks", "a:3:{s:5:\"hooks\";a:2:{s:24:\"ai1ec_purge_events_cache\";a:5:{s:4:\"hook\";s:24:\"ai1ec_purge_events_cache\";s:9:\"timestamp\";i:1406564417;s:7:\"version\";s:1:\"0\";s:10:\"recurrence\";s:11:\"every_10800\";s:4:\"freq\";s:2:\"3h\";}s:10:\"ai1ec_cron\";a:5:{s:4:\"hook\";s:10:\"ai1ec_cron\";s:9:\"timestamp\";i:1527024541;s:7:\"version\";s:6:\"2.5.31\";s:10:\"recurrence\";s:6:\"hourly\";s:4:\"freq\";s:6:\"hourly\";}}s:5:\"freqs\";a:2:{i:10800;a:3:{s:4:\"hash\";s:11:\"every_10800\";s:4:\"name\";N;s:7:\"seconds\";i:10800;}i:3600;a:3:{s:4:\"hash\";s:10:\"every_3600\";s:4:\"name\";N;s:7:\"seconds\";i:3600;}}s:7:\"version\";s:6:\"2.5.31\";}", "yes");
INSERT INTO `wp_options` VALUES("3027", "ai1ec_admin", "a:4:{s:9:\"_messages\";a:0:{}s:3:\"all\";a:0:{}s:21:\"network_admin_notices\";a:0:{}s:13:\"admin_notices\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("3053", "wp_less_stylesheet_data_fecb7f3cf84056e2f2a7510d97aec28b", "a:1:{s:10:\"target_uri\";s:104:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/wp-less/dt-the7/css/custom-f4527d14b7.css\";}", "yes");
INSERT INTO `wp_options` VALUES("3054", "_transient_wp_less_compiled_fecb7f3cf84056e2f2a7510d97aec28b", "a:4:{s:4:\"root\";s:75:\"/home/vhosts/southisl/public_html/wp-content/themes/dt-the7/css/custom.less\";s:8:\"compiled\";N;s:5:\"files\";a:1:{s:75:\"/home/vhosts/southisl/public_html/wp-content/themes/dt-the7/css/custom.less\";i:1406567825;}s:7:\"updated\";i:1438018016;}", "yes");
INSERT INTO `wp_options` VALUES("3061", "widget_addthis-widget", "a:2:{i:2;a:2:{s:5:\"title\";s:23:\"Share This with Friends\";s:5:\"style\";s:11:\"fb_tw_p1_sc\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("3077", "ai1ec_ics_db_version", "236", "no");
INSERT INTO `wp_options` VALUES("10108", "custom_login_announcement_message", "Download the <a href=\"https://frosty.media/plugins/custom-login-bundle/\" target=\"_blank\">Custom Login Bundle</a> and save over $200!", "yes");
INSERT INTO `wp_options` VALUES("11648", "gf_dismissed_upgrades", "a:1:{i:0;s:7:\"1.9.1.2\";}", "yes");
INSERT INTO `wp_options` VALUES("12663", "custom_login_extensions_message", "<div class=\"eddri-addon\"> <div class=\"eddri-addon-container\"> <div class=\"eddri-img-wrap\"> <a href=\"https://frosty.media/plugins/custom-login-stealth-login/?utm_source=wordpressorg&utm_medium=custom-login&utm_campaign=eddri\" target=\"_blank\"><img class=\"eddri-thumbnail\" src=\"https://i.imgur.com/mhuymPG.jpg\"></a> <p>Protect your wp-login.php page from brute force attacks.</p> </div> <h3>Stealth Login</h3> <span class=\"eddri-status\">Not Installed</span> <a class=\"button\" data-edd-install=\"Custom Login Stealth Login\">Install</a> <a class=\"button show-if-not-purchased\" data-toggle=\"purchase-links-1\" style=\"display:none\">Purchase License</a> <div id=\"purchase-links-1\" style=\"display:none\"> <ul> <li><a href=\"http://frosty.media/checkout?edd_action=straight_to_gateway&download_id=7819&edd_options[price_id]=0\">Single site license ($25)</a></li> <li><a href=\"http://frosty.media/checkout?edd_action=straight_to_gateway&download_id=7819&edd_options[price_id]=1\">Up to 5 site licenses ($70)</a></li> <li><a href=\"http://frosty.media/checkout?edd_action=straight_to_gateway&download_id=7819&edd_options[price_id]=2\">Unlimited site licenses ($100)</a></li> </ul> </div> </div> </div><div class=\"eddri-addon\"> <div class=\"eddri-addon-container\"> <div class=\"eddri-img-wrap\"> <a href=\"https://frosty.media/plugins/custom-login-page-template/?utm_source=wordpressorg&utm_medium=custom-login&utm_campaign=eddri\" target=\"_blank\"><img class=\"eddri-thumbnail\" src=\"https://i.imgur.com/A0rzS9q.jpg\"></a> <p>Add a login form to any WordPress page.</p> </div> <h3>Page Template</h3> <span class=\"eddri-status\">Not Installed</span> <a class=\"button\" data-edd-install=\"Custom Login Page Template\">Install</a> <a class=\"button show-if-not-purchased\" data-toggle=\"purchase-links-2\" style=\"display:none\">Purchase License</a> <div id=\"purchase-links-2\" style=\"display:none\"> <ul> <li><a href=\"http://frosty.media/checkout?edd_action=straight_to_gateway&download_id=13528\">One price! ($35)</a></li> </ul> </div> </div> </div><div class=\"eddri-addon\"> <div class=\"eddri-addon-container\"> <div class=\"eddri-img-wrap\"> <a href=\"https://frosty.media/plugins/wordpress-login-redirects/?utm_source=wordpressorg&utm_medium=custom-login&utm_campaign=eddri\" target=\"_blank\"><img class=\"eddri-thumbnail\" src=\"https://i.imgur.com/aNGoyAa.jpg\"></a> <p>Manage redirects after logging in.</p> </div> <h3>Login Redirects</h3> <span class=\"eddri-status\">Not Installed</span> <a class=\"button\" data-edd-install=\"WordPress Login Redirects\">Install</a> <a class=\"button show-if-not-purchased\" data-toggle=\"purchase-links-3\" style=\"display:none\">Purchase License</a> <div id=\"purchase-links-3\" style=\"display:none\"> <ul> <li><a href=\"http://frosty.media/checkout?edd_action=straight_to_gateway&download_id=14333&edd_options[price_id]=0\">Single site license ($30)</a></li> <li><a href=\"http://frosty.media/checkout?edd_action=straight_to_gateway&download_id=14333&edd_options[price_id]=1\">Up to 5 site licenses ($70)</a></li> <li><a href=\"http://frosty.media/checkout?edd_action=straight_to_gateway&download_id=14333&edd_options[price_id]=2\">Unlimited site licenses ($150)</a></li> </ul> </div> </div> </div>", "yes");
INSERT INTO `wp_options` VALUES("14352", "ai1ec_force_flush_rewrite_rules", "", "yes");
INSERT INTO `wp_options` VALUES("14354", "ai1ec_clean_twig_cache", "", "yes");
INSERT INTO `wp_options` VALUES("14355", "wpseo_permalinks", "a:13:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:14:\"hide-feedlinks\";b:0;s:12:\"hide-rsdlink\";b:0;s:14:\"hide-shortlink\";b:0;s:16:\"hide-wlwmanifest\";b:0;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("14356", "wpseo_social", "a:21:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"8b15fbac35ab83c97bbc590648fbd825\";s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:10:\"googleplus\";b:0;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("14357", "wpseo_rss", "a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}", "yes");
INSERT INTO `wp_options` VALUES("14358", "wpseo_internallinks", "a:10:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;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:7:\"&raquo;\";s:23:\"post_types-post-maintax\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("14359", "wpseo_xml", "a:16:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:46:\"user_role-ai1ec_event_assistant-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("14360", "cms_tpv_show_promo", "1", "yes");
INSERT INTO `wp_options` VALUES("14361", "ai1ec_filename_css", "35d610c2_ai1ec_parsed_css.css", "yes");
INSERT INTO `wp_options` VALUES("14367", "ai1ec_less_variables", "a:43:{s:14:\"bodyBackground\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:7:\"general\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:15:\"Body background\";}s:9:\"textColor\";a:4:{s:5:\"value\";s:7:\"#333333\";s:3:\"tab\";s:7:\"general\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:10:\"Text color\";}s:10:\"textEmboss\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:7:\"general\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:11:\"Text emboss\";}s:9:\"linkColor\";a:4:{s:5:\"value\";s:7:\"#3d6b99\";s:3:\"tab\";s:7:\"general\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:4:\"Link\";}s:14:\"linkColorHover\";a:4:{s:5:\"value\";s:7:\"#335980\";s:3:\"tab\";s:7:\"general\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:12:\"Link (hover)\";}s:14:\"baseFontFamily\";a:4:{s:5:\"value\";s:46:\"\"Helvetica Neue\", Helvetica, Arial, sans-serif\";s:3:\"tab\";s:7:\"general\";s:4:\"type\";s:4:\"font\";s:11:\"description\";s:9:\"Base font\";}s:12:\"baseFontSize\";a:4:{s:5:\"value\";s:4:\"13px\";s:3:\"tab\";s:7:\"general\";s:4:\"type\";s:4:\"size\";s:11:\"description\";s:14:\"Base font size\";}s:15:\"tableBackground\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:5:\"table\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:16:\"Table background\";}s:20:\"tableLabelBackground\";a:4:{s:5:\"value\";s:7:\"#f5f5f5\";s:3:\"tab\";s:5:\"table\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:23:\"Table header background\";}s:14:\"tableLabelText\";a:4:{s:5:\"value\";s:7:\"#9e9e9e\";s:3:\"tab\";s:5:\"table\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:17:\"Table header text\";}s:20:\"btnPrimaryBackground\";a:4:{s:5:\"value\";s:7:\"#6dbb4f\";s:3:\"tab\";s:7:\"buttons\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:19:\"Primary brand color\";}s:13:\"btnBackground\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:7:\"buttons\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:17:\"Button background\";}s:9:\"btnBorder\";a:4:{s:5:\"value\";s:7:\"#cccccc\";s:3:\"tab\";s:7:\"buttons\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:13:\"Button border\";}s:12:\"btnTextColor\";a:4:{s:5:\"value\";s:7:\"#333333\";s:3:\"tab\";s:7:\"buttons\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:11:\"Button text\";}s:9:\"inputText\";a:4:{s:5:\"value\";s:4:\"#555\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:16:\"Input field text\";}s:15:\"inputBackground\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:22:\"Input field background\";}s:11:\"inputBorder\";a:4:{s:5:\"value\";s:7:\"#cccccc\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:18:\"Input field border\";}s:16:\"inputBorderFocus\";a:4:{s:5:\"value\";s:20:\"rgba(82,168,236,0.8)\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:26:\"Input field border (focus)\";}s:23:\"inputDisabledBackground\";a:4:{s:5:\"value\";s:7:\"#eeeeee\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:33:\"Input field background (disabled)\";}s:10:\"labelColor\";a:4:{s:5:\"value\";s:7:\"#aaaaaa\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:11:\"Field label\";}s:18:\"dropdownBackground\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:24:\"Dropdown list background\";}s:14:\"dropdownBorder\";a:4:{s:5:\"value\";s:16:\"rgba(0,0,0,0.15)\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:20:\"Dropdown list border\";}s:17:\"dropdownLinkColor\";a:4:{s:5:\"value\";s:7:\"#333333\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:14:\"List item text\";}s:22:\"dropdownLinkColorHover\";a:4:{s:5:\"value\";s:7:\"#262626\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:29:\"List item text (active/hover)\";}s:27:\"dropdownLinkBackgroundHover\";a:4:{s:5:\"value\";s:7:\"#f5f5f5\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:35:\"List item background (active/hover)\";}s:15:\"placeholderText\";a:4:{s:5:\"value\";s:7:\"#999999\";s:3:\"tab\";s:5:\"forms\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:28:\"Input field placeholder text\";}s:10:\"todayColor\";a:4:{s:5:\"value\";s:7:\"#ffffdd\";s:3:\"tab\";s:8:\"calendar\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:11:\"Today color\";}s:25:\"alldayBadgeGradientMiddle\";a:4:{s:5:\"value\";s:7:\"#3d6b99\";s:3:\"tab\";s:8:\"calendar\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:19:\"All-day badge color\";}s:16:\"eventImageShadow\";a:4:{s:5:\"value\";s:15:\"rgba(0,0,0,0.4)\";s:3:\"tab\";s:8:\"calendar\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:18:\"Event image shadow\";}s:17:\"eventDefaultColor\";a:4:{s:5:\"value\";s:7:\"#3d6b99\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:19:\"Event default color\";}s:22:\"eventDefaultColorHover\";a:4:{s:5:\"value\";s:7:\"#335980\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:27:\"Event default color (hover)\";}s:19:\"eventStubAllDayText\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:33:\"All-day/multi-day event stub text\";}s:25:\"eventStubAllDayTextShadow\";a:4:{s:5:\"value\";s:15:\"rgba(0,0,0,0.4)\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:40:\"All-day/multi-day event stub text shadow\";}s:11:\"eventBorder\";a:4:{s:5:\"value\";s:7:\"#cccccc\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:12:\"Event border\";}s:15:\"eventBackground\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:16:\"Event background\";}s:19:\"eventTimeBackground\";a:4:{s:5:\"value\";s:7:\"#eeeeee\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:21:\"Event time background\";}s:9:\"eventText\";a:4:{s:5:\"value\";s:7:\"#333333\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:10:\"Event text\";}s:23:\"monthViewDateBackground\";a:4:{s:5:\"value\";s:7:\"#eaf4ff\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:26:\"Month view date background\";}s:21:\"dayViewNowMarkerColor\";a:4:{s:5:\"value\";s:7:\"#f2c539\";s:3:\"tab\";s:5:\"month\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:24:\"Week/day view now marker\";}s:21:\"agendaDateTitleBorder\";a:4:{s:5:\"value\";s:7:\"#6689AC\";s:3:\"tab\";s:6:\"agenda\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:23:\"Date label accent color\";}s:25:\"agendaDateTitleBackground\";a:4:{s:5:\"value\";s:7:\"#ffffff\";s:3:\"tab\";s:6:\"agenda\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:21:\"Date label background\";}s:20:\"agendaDateBackground\";a:4:{s:5:\"value\";s:7:\"#f2f2f2\";s:3:\"tab\";s:6:\"agenda\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:15:\"Date background\";}s:21:\"agendaTodayBackground\";a:4:{s:5:\"value\";s:7:\"#f4f4bf\";s:3:\"tab\";s:6:\"agenda\";s:4:\"type\";s:5:\"color\";s:11:\"description\";s:16:\"Today background\";}}", "yes");
INSERT INTO `wp_options` VALUES("16087", "ai1ec_robots_txt", "a:2:{s:12:\"is_installed\";b:1;s:7:\"page_id\";i:15061;}", "no");
INSERT INTO `wp_options` VALUES("18178", "gravityformsaddon_gravityformswebapi_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("18402", "gform_email_count", "624", "yes");
INSERT INTO `wp_options` VALUES("18572", "gform_upload_page_slug", "aa4207d3c220ad1", "yes");
INSERT INTO `wp_options` VALUES("30902", "calendarjsupdated", "0", "no");
INSERT INTO `wp_options` VALUES("30903", "jswidgetupdated", "0", "no");
INSERT INTO `wp_options` VALUES("30905", "ai1ec_version", "2.5.31", "no");
INSERT INTO `wp_options` VALUES("30908", "ai1ec_api_settings", "a:5:{s:7:\"enabled\";b:0;s:7:\"message\";b:0;s:5:\"token\";s:0:\"\";s:11:\"calendar_id\";i:0;s:16:\"payment_settings\";a:5:{s:14:\"payment_method\";s:6:\"paypal\";s:12:\"paypal_email\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:8:\"currency\";s:3:\"USD\";}}", "yes");
INSERT INTO `wp_options` VALUES("30921", "_ai1ec_review", "a:1:{s:12:\"release_date\";s:10:\"1487702211\";}", "no");
INSERT INTO `wp_options` VALUES("37209", "ai1ec_iconv_notification", "1", "no");
INSERT INTO `wp_options` VALUES("37210", "ai1ec_mbstring_notification", "1", "no");
INSERT INTO `wp_options` VALUES("37422", "wp_less_stylesheet_data_0ee85e4b8820808e9a6d98dc614323c9", "a:1:{s:10:\"target_uri\";s:104:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/wp-less/dt-the7/css/custom-f4527d14b7.css\";}", "yes");
INSERT INTO `wp_options` VALUES("37423", "_transient_wp_less_compiled_0ee85e4b8820808e9a6d98dc614323c9", "a:4:{s:4:\"root\";s:89:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/themes/dt-the7/css/custom.less\";s:8:\"compiled\";N;s:5:\"files\";a:1:{s:68:\"/home/southisl/public_html/wp-content/themes/dt-the7/css/custom.less\";i:1406567825;}s:7:\"updated\";i:1521667259;}", "yes");
INSERT INTO `wp_options` VALUES("39065", "theme_mods_spacious", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522253753;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"nav_menu-4\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:8:\"search-3\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("39068", "spacious_admin_notice_welcome", "1", "yes");
INSERT INTO `wp_options` VALUES("40119", "tribe_events_calendar_options", "a:5:{s:14:\"schema-version\";s:3:\"3.9\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:1:{i:0;s:1:\"0\";}s:18:\"latest_ecp_version\";s:7:\"4.5.8.1\";s:39:\"last-update-message-the-events-calendar\";s:7:\"4.5.8.1\";}", "yes");
INSERT INTO `wp_options` VALUES("40120", "tribe_last_save_post", "1501035143", "yes");
INSERT INTO `wp_options` VALUES("52486", "ai1wm_updater", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("52612", "give_settings", "a:69:{i:0;b:0;s:12:\"base_country\";s:2:\"CA\";s:9:\"test_mode\";s:8:\"disabled\";s:8:\"currency\";s:3:\"CAD\";s:17:\"currency_position\";s:6:\"before\";s:16:\"session_lifetime\";s:6:\"604800\";s:12:\"email_access\";s:7:\"enabled\";s:19:\"thousands_separator\";s:1:\",\";s:17:\"decimal_separator\";s:1:\".\";s:15:\"number_decimals\";i:2;s:3:\"css\";s:7:\"enabled\";s:11:\"floatlabels\";s:8:\"disabled\";s:7:\"welcome\";s:7:\"enabled\";s:14:\"forms_singular\";s:7:\"enabled\";s:14:\"forms_archives\";s:7:\"enabled\";s:13:\"forms_excerpt\";s:7:\"enabled\";s:17:\"form_featured_img\";s:7:\"enabled\";s:12:\"form_sidebar\";s:8:\"disabled\";s:10:\"categories\";s:8:\"disabled\";s:4:\"tags\";s:8:\"disabled\";s:5:\"terms\";s:8:\"disabled\";s:13:\"admin_notices\";s:7:\"enabled\";s:5:\"cache\";s:7:\"enabled\";s:19:\"uninstall_on_delete\";s:8:\"disabled\";s:18:\"the_content_filter\";s:7:\"enabled\";s:14:\"scripts_footer\";s:8:\"disabled\";s:20:\"agree_to_terms_label\";s:15:\"Agree to Terms?\";s:14:\"agreement_text\";s:2055:\"<p>Acceptance of any contribution, gift or grant is at the discretion of the South Island Centre. The  South Island Centre will not accept any gift unless it can be used or expended consistently with the purpose and mission of the  South Island Centre.</p>\n				<p>No irrevocable gift, whether outright or life-income in character, will be accepted if under any reasonable set of circumstances the gift would jeopardize the donorâ€™s financial security.</p>\n				<p>The South Island Centre will refrain from providing advice about the tax or other treatment of gifts and will encourage donors to seek guidance from their own professional advisers to assist them in the process of making their donation.</p>\n				<p>The South Island Centre will accept donations of cash or publicly traded securities. Gifts of in-kind services will be accepted at the discretion of the South Island Centre.</p>\n				<p>Certain other gifts, real property, personal property, in-kind gifts, non-liquid securities, and contributions whose sources are not transparent or whose use is restricted in some manner, must be reviewed prior to acceptance due to the special obligations raised or liabilities they may pose for South Island Centre.</p>\n				<p>The South Island Centre will provide acknowledgments to donors meeting tax requirements for property received by the charity as a gift. However, except for gifts of cash and publicly traded securities, no value shall be ascribed to any receipt or other form of substantiation of a gift received by South Island Centre.</p>\n				<p>The South Island Centre will respect the intent of the donor relating to gifts for restricted purposes and those relating to the desire to remain anonymous. With respect to anonymous gifts, the South Island Centre will restrict information about the donor to only those staff members with a need to know.</p>\n				<p>The South Island Centre will not compensate, whether through commissions, finders\' fees, or other means, any third party for directing a gift or a donor to the South Island Centre.</p>\";s:19:\"paypal_verification\";s:7:\"enabled\";s:8:\"gateways\";a:1:{s:6:\"paypal\";s:1:\"1\";}s:15:\"default_gateway\";s:6:\"paypal\";s:31:\"global_offline_donation_content\";s:540:\"<p>In order to make an offline donation we ask that you please follow these instructions: </p><ol><li>Make a check payable to \"South Island Centre\"</li><li>On the memo line of the check, please indicate that the donation is for \"South Island Centre\"</li><li>Please mail your check to:</li></ol>&nbsp;&nbsp;&nbsp;&nbsp;<em>South Island Centre</em><br>&nbsp;&nbsp;&nbsp;&nbsp;<em>111 Not A Real St.</em><br>&nbsp;&nbsp;&nbsp;&nbsp;<em>Anytown, CA 12345 </em><br><p>All contributions will be gratefully acknowledged and are tax deductible.</p>\";s:43:\"give_offline_donation_enable_billing_fields\";s:8:\"disabled\";s:23:\"donor_default_user_role\";s:10:\"give_donor\";s:42:\"offline-donation-instruction_email_message\";s:540:\"<p>In order to make an offline donation we ask that you please follow these instructions: </p><ol><li>Make a check payable to \"South Island Centre\"</li><li>On the memo line of the check, please indicate that the donation is for \"South Island Centre\"</li><li>Please mail your check to:</li></ol>&nbsp;&nbsp;&nbsp;&nbsp;<em>South Island Centre</em><br>&nbsp;&nbsp;&nbsp;&nbsp;<em>111 Not A Real St.</em><br>&nbsp;&nbsp;&nbsp;&nbsp;<em>Anytown, CA 12345 </em><br><p>All contributions will be gratefully acknowledged and are tax deductible.</p>\";s:30:\"donation-receipt_email_message\";s:436:\"Dear {name},\n\nThank you for your donation. Your generosity is appreciated! Here are the details of your donation:\n\n<strong>Donor:</strong> {fullname}\n<strong>Donation:</strong> {donation}\n<strong>Donation Date:</strong> {date}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n<strong>Payment ID:</strong> {payment_id}\n<strong>Receipt ID:</strong> {receipt_id}\n\n{receipt_link}\n\n\n\nSincerely,\n{sitename}\n\";s:26:\"new-donation_email_message\";s:412:\"Hi there,\r\n\r\nThis email is to inform you that a new donation has been made on your website: <a href=\"http://localhost:8888/TestSICPage/wordpress\" target=\"_blank\" rel=\"noopener\">http://localhost:8888/TestSICPage/wordpress</a>.\r\n\r\n<strong>Donor:</strong> {name}\r\n<strong>Donation:</strong> {donation}\r\n<strong>Amount:</strong> {amount}\r\n<strong>Payment Method:</strong> {payment_method}\r\n\r\nThank you,\r\n\r\n{sitename}\";s:22:\"new-donation_recipient\";a:4:{i:0;s:14:\"info@localhost\";i:1;s:17:\"kathryn@localhost\";i:2;s:15:\"amber@localhost\";i:3;s:21:\"development@localhost\";}s:30:\"new-offline-donation_recipient\";a:1:{i:0;s:14:\"info@localhost\";}s:28:\"new-donor-register_recipient\";a:1:{i:0;s:14:\"info@localhost\";}s:25:\"new-donation_notification\";s:7:\"enabled\";s:12:\"success_page\";s:5:\"15488\";s:12:\"failure_page\";s:5:\"15489\";s:12:\"history_page\";s:5:\"15490\";s:26:\"sequential-ordering_number\";i:154;s:10:\"base_state\";s:2:\"BC\";s:33:\"new-offline-donation_notification\";s:8:\"disabled\";s:41:\"offline-donation-instruction_notification\";s:8:\"disabled\";s:19:\"featured_image_size\";s:5:\"large\";s:20:\"disable_form_sidebar\";s:2:\"on\";s:23:\"akismet_spam_protection\";s:8:\"disabled\";s:14:\"gateways_label\";a:3:{s:6:\"manual\";s:0:\"\";s:6:\"paypal\";s:0:\"\";s:7:\"offline\";s:0:\"\";}s:12:\"paypal_email\";s:15:\"admin@localhost\";s:17:\"paypal_page_style\";s:0:\"\";s:18:\"paypal_button_type\";s:8:\"donation\";s:31:\"paypal_standard_billing_details\";s:8:\"disabled\";s:13:\"company_field\";s:8:\"optional\";s:26:\"new-donation_email_subject\";s:28:\"New Donation - #{payment_id}\";s:25:\"new-donation_email_header\";s:13:\"New Donation!\";s:31:\"new-donation_email_content_type\";s:9:\"text/html\";s:31:\"new-donor-register_notification\";s:7:\"enabled\";s:32:\"new-donor-register_email_subject\";s:43:\"[South Island Centre] New User Registration\";s:31:\"new-donor-register_email_header\";s:21:\"New User Registration\";s:32:\"new-donor-register_email_message\";s:93:\"New user registration on your site {sitename}:\r\n\r\nUsername: {username}\r\n\r\nEmail: {user_email}\";s:37:\"new-donor-register_email_content_type\";s:9:\"text/html\";s:14:\"email_template\";s:7:\"default\";s:10:\"email_logo\";s:86:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/MainLogo-Lg.png\";s:9:\"from_name\";s:19:\"South Island Centre\";s:10:\"from_email\";s:14:\"info@localhost\";}", "yes");
INSERT INTO `wp_options` VALUES("52613", "wp_give_donors_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("52614", "wp_give_donormeta_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("52615", "give_version", "2.1.3", "yes");
INSERT INTO `wp_options` VALUES("52616", "give_completed_upgrades", "a:26:{i:0;b:0;i:1;s:30:\"upgrade_give_user_caps_cleanup\";i:2;s:32:\"upgrade_give_payment_customer_id\";i:3;s:27:\"upgrade_give_offline_status\";i:4;s:26:\"v18_upgrades_form_metadata\";i:5;s:30:\"v189_upgrades_levels_post_meta\";i:6;s:26:\"v1812_update_amount_values\";i:7;s:34:\"v1812_update_donor_purchase_values\";i:8;s:29:\"v1813_update_donor_user_roles\";i:9;s:43:\"v1817_update_donation_iranian_currency_code\";i:10;s:24:\"v1817_cleanup_user_roles\";i:11;s:39:\"v1818_assign_custom_amount_set_donation\";i:12;s:30:\"v1818_give_worker_role_cleanup\";i:13;s:26:\"v20_upgrades_form_metadata\";i:14;s:25:\"v20_upgrades_user_address\";i:15;s:29:\"v20_upgrades_payment_metadata\";i:16;s:17:\"v20_logs_upgrades\";i:17;s:23:\"v20_upgrades_donor_name\";i:18;s:32:\"v20_move_metadata_into_new_table\";i:19;s:23:\"v20_rename_donor_tables\";i:20;s:30:\"v201_upgrades_payment_metadata\";i:21;s:23:\"v201_add_missing_donors\";i:22;s:33:\"v201_move_metadata_into_new_table\";i:23;s:18:\"v201_logs_upgrades\";i:24;s:32:\"v210_verify_form_status_upgrades\";i:25;s:25:\"v213_delete_donation_meta\";}", "no");
INSERT INTO `wp_options` VALUES("52617", "give_default_api_version", "v1", "yes");
INSERT INTO `wp_options` VALUES("52619", "give_use_php_sessions", "1", "yes");
INSERT INTO `wp_options` VALUES("52624", "wp_give_paymentmeta_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("52625", "wp_give_logs_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("52626", "wp_give_logmeta_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("52627", "wp_give_formmeta_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("52912", "wp_charitable_campaign_donations_db_version", "1.5.4", "yes");
INSERT INTO `wp_options` VALUES("52913", "wp_charitable_donors_db_version", "1.5.4", "yes");
INSERT INTO `wp_options` VALUES("52914", "charitable_upgrade_log", "a:14:{s:7:\"install\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"message\";s:25:\"Charitable was installed.\";}s:21:\"update_upgrade_system\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:18:\"fix_donation_dates\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:12:\"trigger_cron\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:20:\"flush_permalinks_140\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:27:\"remove_campaign_manager_cap\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:32:\"fix_empty_campaign_end_date_meta\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:39:\"clear_campaign_amount_donated_transient\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:16:\"trim_upgrade_log\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:23:\"remove_duplicate_donors\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:20:\"flush_permalinks_150\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:17:\"release_notes_150\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:17:\"update_tables_154\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}s:19:\"fix_donor_role_caps\";a:3:{s:4:\"time\";i:1520319670;s:7:\"version\";s:6:\"1.5.11\";s:7:\"install\";b:1;}}", "yes");
INSERT INTO `wp_options` VALUES("52921", "_transient_charitable_notices", "a:5:{s:5:\"error\";a:0:{}s:7:\"warning\";a:0:{}s:7:\"success\";a:0:{}s:4:\"info\";a:0:{}s:7:\"version\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("52924", "charitable_settings", "a:20:{s:15:\"active_gateways\";a:1:{s:6:\"paypal\";s:25:\"Charitable_Gateway_Paypal\";}s:15:\"default_gateway\";s:6:\"paypal\";s:9:\"test_mode\";i:0;s:7:\"section\";s:7:\"general\";s:7:\"country\";s:2:\"CA\";s:8:\"currency\";s:3:\"CAD\";s:15:\"currency_format\";s:4:\"left\";s:17:\"decimal_separator\";s:1:\".\";s:19:\"thousands_separator\";s:1:\",\";s:13:\"decimal_count\";s:1:\"2\";s:21:\"donation_form_display\";s:5:\"modal\";s:10:\"login_page\";s:2:\"wp\";s:17:\"registration_page\";s:2:\"wp\";s:12:\"profile_page\";s:5:\"12818\";s:21:\"donation_receipt_page\";s:5:\"15440\";s:15:\"email_from_name\";s:19:\"South Island Centre\";s:16:\"email_from_email\";s:15:\"admin@localhost\";s:15:\"gateways_paypal\";a:4:{s:5:\"label\";s:6:\"PayPal\";s:12:\"paypal_email\";s:15:\"admin@localhost\";s:16:\"transaction_mode\";s:8:\"standard\";s:24:\"disable_ipn_verification\";i:0;}s:14:\"enabled_emails\";a:2:{s:16:\"donation_receipt\";s:33:\"Charitable_Email_Donation_Receipt\";s:12:\"new_donation\";s:29:\"Charitable_Email_New_Donation\";}s:19:\"emails_new_donation\";a:4:{s:7:\"subject\";s:32:\"You have received a new donation\";s:8:\"headline\";s:12:\"New Donation\";s:4:\"body\";s:140:\"<p>[charitable_email show=donor] has just made a donation!</p><p><strong>Summary</strong><br /> [charitable_email show=donation_summary]</p>\";s:9:\"recipient\";s:21:\"jaredjewitt@gmail.com\";}}", "yes");
INSERT INTO `wp_options` VALUES("52929", "_transient_charitable_custom_styles", "<style id=\"charitable-highlight-colour-styles\">.campaign-raised .amount, .campaign-figures .amount,.donors-count, .time-left,.charitable-form-field a:not(.button),.charitable-form-fields .charitable-fieldset a:not(.button),.charitable-notice,.charitable-notice .errors a {color:#f89d35;}.campaign-progress-bar .bar,.donate-button,.charitable-donation-form .donation-amount.selected,.charitable-donation-amount-form .donation-amount.selected {background-color:#f89d35;}.charitable-donation-form .donation-amount.selected,.charitable-donation-amount-form .donation-amount.selected,.charitable-notice, .charitable-drag-drop-images li:hover a.remove-image,.supports-drag-drop .charitable-drag-drop-dropzone.drag-over {border-color:#f89d35;}</style>", "yes");
INSERT INTO `wp_options` VALUES("52930", "_transient_charitable_user_dashboard_objects", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("53059", "campaign_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("53346", "wpedon_settingsoptions", "a:12:{s:8:\"currency\";i:3;s:8:\"language\";i:3;s:4:\"mode\";i:2;s:4:\"size\";i:2;s:5:\"opens\";i:2;s:11:\"no_shipping\";i:1;s:7:\"no_note\";i:1;s:11:\"liveaccount\";s:39:\"southislandcentredonationtest@gmail.com\";s:14:\"sandboxaccount\";s:39:\"southislandcentredonationtest@gmail.com\";s:7:\"image_1\";s:0:\"\";s:6:\"cancel\";s:0:\"\";s:6:\"return\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("53405", "dgx_donate_active_version", "4.0.20", "yes");
INSERT INTO `wp_options` VALUES("53406", "dgx_donate_start_in_sd4_mode", "true", "yes");
INSERT INTO `wp_options` VALUES("53407", "dgx_donate_email_name", "South Island Centre", "yes");
INSERT INTO `wp_options` VALUES("53408", "dgx_donate_email_reply", "info@localhost", "yes");
INSERT INTO `wp_options` VALUES("53409", "dgx_donate_email_subj", "Thank you for your donation", "yes");
INSERT INTO `wp_options` VALUES("53410", "dgx_donate_email_body", "Dear [firstname] [lastname],\n\nThank you for your generous donation of [amount]. Please note that no goods or services were received in exchange for this donation.", "yes");
INSERT INTO `wp_options` VALUES("53411", "dgx_donate_email_recur", "Thank you for electing to have your donation automatically repeated each month.", "yes");
INSERT INTO `wp_options` VALUES("53412", "dgx_donate_email_desig", "Your donation has been designated to the [fund] fund.", "yes");
INSERT INTO `wp_options` VALUES("53413", "dgx_donate_email_anon", "You have requested that your donation be kept anonymous.  Your name will not be revealed to the public.", "yes");
INSERT INTO `wp_options` VALUES("53414", "dgx_donate_email_list", "Thank you for joining our mailing list.  We will send you updates from time-to-time.  If at any time you would like to stop receiving emails, please send us an email to be removed from the mailing list.", "yes");
INSERT INTO `wp_options` VALUES("53415", "dgx_donate_email_trib", "You have asked to make this donation in honor of or memory of someone else.  Thank you!  We will notify the honoree within the next 5-10 business days.", "yes");
INSERT INTO `wp_options` VALUES("53416", "dgx_donate_email_empl", "You have specified that your employer matches some or all of your donation. ", "yes");
INSERT INTO `wp_options` VALUES("53417", "dgx_donate_email_close", "Thanks again for your support!", "yes");
INSERT INTO `wp_options` VALUES("53418", "dgx_donate_email_sig", "Director of Donor Relations", "yes");
INSERT INTO `wp_options` VALUES("53419", "dgx_donate_notify_emails", "info@localhost", "yes");
INSERT INTO `wp_options` VALUES("53420", "dgx_donate_payment_gateway", "DGXDONATEPAYPALSTD", "yes");
INSERT INTO `wp_options` VALUES("53421", "dgx_donate_paypal_server", "LIVE", "yes");
INSERT INTO `wp_options` VALUES("53422", "dgx_donate_paypal_email", "", "yes");
INSERT INTO `wp_options` VALUES("53423", "dgx_donate_thanks_text", "Thank you for donating!  A thank you email with the details of your donation will be sent to the email address you provided.", "yes");
INSERT INTO `wp_options` VALUES("53424", "dgx_donate_giving_level_1000", "yes", "yes");
INSERT INTO `wp_options` VALUES("53425", "dgx_donate_giving_level_500", "yes", "yes");
INSERT INTO `wp_options` VALUES("53426", "dgx_donate_giving_level_100", "yes", "yes");
INSERT INTO `wp_options` VALUES("53427", "dgx_donate_giving_level_50", "yes", "yes");
INSERT INTO `wp_options` VALUES("53428", "dgx_donate_currency", "USD", "yes");
INSERT INTO `wp_options` VALUES("53429", "dgx_donate_default_country", "US", "yes");
INSERT INTO `wp_options` VALUES("53430", "dgx_donate_default_state", "WA", "yes");
INSERT INTO `wp_options` VALUES("53431", "dgx_donate_default_province", "AB", "yes");
INSERT INTO `wp_options` VALUES("53432", "dgx_donate_show_employer_section", "false", "yes");
INSERT INTO `wp_options` VALUES("53433", "dgx_donate_show_donor_occupation_field", "false", "yes");
INSERT INTO `wp_options` VALUES("53434", "dgx_donate_show_donor_employer_field", "false", "yes");
INSERT INTO `wp_options` VALUES("53435", "dgx_donate_show_tribute_section", "true", "yes");
INSERT INTO `wp_options` VALUES("53436", "dgx_donate_scripts_in_footer", "false", "yes");
INSERT INTO `wp_options` VALUES("53437", "dgx_donate_log_obscure_name", "1", "yes");
INSERT INTO `wp_options` VALUES("53438", "dgx_donate_db_version", "1.0.1", "yes");
INSERT INTO `wp_options` VALUES("53439", "dgx_donate_4012_indexes_updated", "sd4012", "yes");
INSERT INTO `wp_options` VALUES("53440", "dgx_donate_4013_anon_updated", "sd4013", "yes");
INSERT INTO `wp_options` VALUES("53442", "dgx_donate_display_admin_donations_tab", "show", "yes");
INSERT INTO `wp_options` VALUES("53443", "dgx_donate_display_admin_donors_tab", "show", "yes");
INSERT INTO `wp_options` VALUES("53444", "dgx_donate_display_admin_funds_tab", "show", "yes");
INSERT INTO `wp_options` VALUES("56093", "_wp_session_expires_14f8ad47eab72ac13965abd0b03ae50a", "1521678425", "no");
INSERT INTO `wp_options` VALUES("56105", "_wp_session_expires_4740857ba1e986b384651bc7e56598a9", "1521683180", "no");
INSERT INTO `wp_options` VALUES("56120", "_wp_session_expires_6d666d5bd7a7c493cd1784895adf7887", "1521690929", "no");
INSERT INTO `wp_options` VALUES("56126", "_wp_session_expires_1f77738df12f58f88021501ce67fc25a", "1521693500", "no");
INSERT INTO `wp_options` VALUES("56144", "_wp_session_expires_3df22a998ebaa201bade5325210a4679", "1521700962", "no");
INSERT INTO `wp_options` VALUES("56183", "_wp_session_expires_447ff04e907e3d07523dea53c716a340", "1521727615", "no");
INSERT INTO `wp_options` VALUES("56193", "_wp_session_expires_20eb924ebab23aa69ea69e16a6a9eae2", "1521729483", "no");
INSERT INTO `wp_options` VALUES("56194", "_wp_session_expires_0a65fa038b62542573e731bc4c717ee3", "1521730451", "no");
INSERT INTO `wp_options` VALUES("56205", "_wp_session_expires_013a9e3b83d20c93f6be18eeef995f25", "1521734950", "no");
INSERT INTO `wp_options` VALUES("56221", "_wp_session_expires_63403c2b2a19ce2be8a450b850b8e7e7", "1521737383", "no");
INSERT INTO `wp_options` VALUES("56237", "_wp_session_expires_19f6d1611293dce52504917cc055b7ca", "1521742011", "no");
INSERT INTO `wp_options` VALUES("56264", "_wp_session_expires_7f57d0e6b8e1113721c8009e4e1d8cf1", "1521744122", "no");
INSERT INTO `wp_options` VALUES("56267", "_wp_session_expires_41dd4516dbe44e2e2d444ff1772bd1b9", "1521745200", "no");
INSERT INTO `wp_options` VALUES("56268", "_transient_charitable_donation_41dd4516dbe44e2e2d444ff1772bd1b9", "O:29:\"Charitable_Donation_Processor\":5:{s:11:\"\0*\0campaign\";O:19:\"Charitable_Campaign\":6:{s:25:\"\0Charitable_Campaign\0post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:15397;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2018-03-06 12:54:44\";s:13:\"post_date_gmt\";s:19:\"2018-03-06 20:54:44\";s:12:\"post_content\";s:860:\"<p style=\"color: #3b3f42; text-align: left;\">You can also support South Island Centre by making a donation using one of theÂ three options below.</p>\r\n<p style=\"color: #3b3f42;\">1) Send aÂ chequeÂ made payable toÂ South Island Centre for Counselling and TrainingÂ toÂ 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â South Island Centre only issues charitable tax receipts for donations $50 and above. Please include your return address so we can send you a charitable donation receipt.</p>\r\n<p style=\"color: #3b3f42;\">2) Make a donation viaÂ telephone with your credit cardÂ by calling the office directly 250-472-2851 and have your payment processedÂ over the phone.</p>\r\n<p style=\"color: #3b3f42;\">3) Drop by in person during reception hours of 9-2pm Mon -Thurs to make a donation in person.</p>\r\n<p style=\"color: #3b3f42;\">Thank you for your support!</p>\";s:10:\"post_title\";s:9:\"Donations\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"charitable-donation\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2018-03-14 13:19:19\";s:17:\"post_modified_gmt\";s:19:\"2018-03-14 20:19:19\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:64:\"http://www.southislandcentre.ca/?post_type=campaign&#038;p=15397\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:8:\"campaign\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:29:\"\0Charitable_Campaign\0end_time\";N;s:25:\"\0Charitable_Campaign\0goal\";N;s:30:\"\0Charitable_Campaign\0donations\";N;s:35:\"\0Charitable_Campaign\0donated_amount\";N;s:34:\"\0Charitable_Campaign\0donation_form\";O:24:\"Charitable_Donation_Form\":13:{s:11:\"\0*\0campaign\";r:2;s:7:\"\0*\0user\";N;s:14:\"\0*\0form_fields\";N;s:15:\"\0*\0nonce_action\";s:19:\"charitable_donation\";s:13:\"\0*\0nonce_name\";s:26:\"_charitable_donation_nonce\";s:14:\"\0*\0form_action\";s:13:\"make_donation\";s:27:\"\0*\0user_has_required_fields\";N;s:12:\"\0*\0validated\";b:1;s:8:\"\0*\0valid\";b:1;s:5:\"\0*\0id\";s:13:\"5ab2abafefa7c\";s:9:\"\0*\0errors\";a:0:{}s:12:\"\0*\0submitted\";a:20:{s:18:\"charitable_form_id\";s:13:\"5ab2ab969c054\";s:13:\"5ab2ab969c054\";s:0:\"\";s:26:\"_charitable_donation_nonce\";s:10:\"aaa6e20430\";s:16:\"_wp_http_referer\";s:31:\"/campaigns/charitable-donation/\";s:11:\"campaign_id\";s:5:\"15397\";s:11:\"description\";s:9:\"Donations\";s:7:\"gateway\";s:6:\"paypal\";s:22:\"custom_donation_amount\";s:5:\"10.00\";s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";s:6:\"action\";s:13:\"make_donation\";s:11:\"form_action\";s:13:\"make_donation\";}s:7:\"\0*\0view\";N;}}s:16:\"\0*\0donation_data\";a:5:{s:7:\"user_id\";i:0;s:7:\"gateway\";s:6:\"paypal\";s:9:\"campaigns\";a:1:{i:0;a:2:{s:11:\"campaign_id\";s:5:\"15397\";s:6:\"amount\";d:10;}}s:4:\"user\";a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}s:12:\"donation_key\";s:32:\"eab6e39a1898b42fb7ad20e89a9cde9e\";}s:26:\"\0*\0campaign_donations_data\";a:1:{i:0;a:3:{s:11:\"campaign_id\";s:5:\"15397\";s:6:\"amount\";d:10;s:13:\"campaign_name\";s:9:\"Donations\";}}s:11:\"\0*\0donor_id\";i:1;s:14:\"\0*\0donation_id\";i:15452;}", "yes");
INSERT INTO `wp_options` VALUES("56269", "_wp_session_41dd4516dbe44e2e2d444ff1772bd1b9", "a:2:{s:13:\"donation-keys\";s:50:\"a:1:{i:0;s:32:\"eab6e39a1898b42fb7ad20e89a9cde9e\";}\";s:9:\"donations\";s:38:\"a:1:{i:15397;a:1:{s:6:\"amount\";d:10;}}\";}", "no");
INSERT INTO `wp_options` VALUES("56276", "_wp_session_expires_4feffe1482af0ef43adac9262d52b3a5", "1521745397", "no");
INSERT INTO `wp_options` VALUES("56279", "_wp_session_expires_5ba77f321a1637fb3e54c0cc4f863e94", "1521746330", "no");
INSERT INTO `wp_options` VALUES("56282", "_transient_charitable_campaign_15397_donation_amount", "1.0000", "yes");
INSERT INTO `wp_options` VALUES("56287", "_wp_session_expires_6e8810f072fbaaf3a53a2d485f4421eb", "1521748353", "no");
INSERT INTO `wp_options` VALUES("56293", "_wp_session_expires_7b640b7fb9a3c032461a6f0fe3e65850", "1521749809", "no");
INSERT INTO `wp_options` VALUES("56362", "_wp_session_expires_3639fd875f818e35f08239b02a97e275", "1521753455", "no");
INSERT INTO `wp_options` VALUES("56373", "theme_mods_twentythirteen", "a:4:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522264211;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:10:\"nav_menu-4\";i:1;s:8:\"search-3\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}}}s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:55;}s:18:\"custom_css_post_id\";i:-1;}", "yes");
INSERT INTO `wp_options` VALUES("57193", "gf_is_upgrading", "0", "yes");
INSERT INTO `wp_options` VALUES("57194", "gf_previous_db_version", "2.3.1", "yes");
INSERT INTO `wp_options` VALUES("57196", "gform_version_info", "a:10:{s:12:\"is_valid_key\";b:1;s:6:\"reason\";s:0:\"\";s:7:\"version\";s:5:\"2.3.2\";s:3:\"url\";s:166:\"http://s3.amazonaws.com/gravityforms/releases/gravityforms_2.3.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=Lrh3ZLMsr4WPj0G%2BmAn8nXHvJ3A%3D\";s:15:\"expiration_time\";i:1559520000;s:9:\"offerings\";a:46:{s:12:\"gravityforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.3.2\";s:14:\"version_latest\";s:7:\"2.3.2.6\";s:3:\"url\";s:166:\"http://s3.amazonaws.com/gravityforms/releases/gravityforms_2.3.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=Lrh3ZLMsr4WPj0G%2BmAn8nXHvJ3A%3D\";s:10:\"url_latest\";s:170:\"http://s3.amazonaws.com/gravityforms/releases/gravityforms_2.3.2.6.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=xyOnxsk5P11ll2FsL%2BOLs%2BLovdU%3D\";}s:26:\"gravityformsactivecampaign\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.5\";s:3:\"url\";s:189:\"http://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_1.4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=4Ttj540pdLuGkJIZx6jvXYU5GQE%3D\";s:10:\"url_latest\";s:191:\"http://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_1.4.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=ise1I1JntYek9n0ZPptvWA8q9vc%3D\";}s:20:\"gravityformsagilecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";s:3:\"url\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=QGSQfOhCkCL%2FZwxm%2FAVajWkjVKI%3D\";s:10:\"url_latest\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=QGSQfOhCkCL%2FZwxm%2FAVajWkjVKI%3D\";}s:24:\"gravityformsauthorizenet\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.6\";s:14:\"version_latest\";s:3:\"2.6\";}s:18:\"gravityformsaweber\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.7.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=bALTSbZwnksIJkVuEnfl%2Fo4HA3o%3D\";s:10:\"url_latest\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.7.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=bALTSbZwnksIJkVuEnfl%2Fo4HA3o%3D\";}s:21:\"gravityformsbatchbook\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=%2FahPnLfaxZbDLsMZPZIXdLoABQY%3D\";s:10:\"url_latest\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=%2FahPnLfaxZbDLsMZPZIXdLoABQY%3D\";}s:18:\"gravityformsbreeze\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=YivQTOUdbM55AvYtwNs6tbCmOic%3D\";s:10:\"url_latest\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=YivQTOUdbM55AvYtwNs6tbCmOic%3D\";}s:27:\"gravityformscampaignmonitor\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.7\";s:14:\"version_latest\";s:3:\"3.7\";s:3:\"url\";s:191:\"http://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.7.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=wmkvIpClzcdZai4cFvHEcHNCn1M%3D\";s:10:\"url_latest\";s:191:\"http://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.7.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=wmkvIpClzcdZai4cFvHEcHNCn1M%3D\";}s:20:\"gravityformscampfire\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.1\";s:3:\"url\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=1%2FJqpXZ45Fur%2B7fj0gWP1orKPcs%3D\";s:10:\"url_latest\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.2.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=ovHUBihmASmtogGxMsqIJ13CL0Q%3D\";}s:22:\"gravityformscapsulecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:183:\"http://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=mTYXljzRZ3xZIW8UmHn%2BGTlIaoc%3D\";s:10:\"url_latest\";s:183:\"http://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=mTYXljzRZ3xZIW8UmHn%2BGTlIaoc%3D\";}s:26:\"gravityformschainedselects\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:5:\"1.0.9\";}s:23:\"gravityformscleverreach\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:3:\"1.4\";s:3:\"url\";s:185:\"http://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=pe0GmnMrw%2BFTa3xKuPKRKzRXPa8%3D\";s:10:\"url_latest\";s:185:\"http://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=pe0GmnMrw%2BFTa3xKuPKRKzRXPa8%3D\";}s:19:\"gravityformscoupons\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.6\";s:14:\"version_latest\";s:5:\"2.6.2\";}s:17:\"gravityformsdebug\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:9:\"1.0.beta8\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/debug/gravityformsdebug_1.0.beta8.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=5vIIdLBY1O704BZosLUlL9Af7mc%3D\";}s:19:\"gravityformsdropbox\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:5:\"2.1.1\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_2.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=dCdiKw5CNkgRrs7EawrQB6yI9QE%3D\";s:10:\"url_latest\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_2.1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=C9x8q8%2BxCip9kXITa3JSuy9XHKQ%3D\";}s:16:\"gravityformsemma\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.3\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=xBX%2F0Mks7Kzhp%2FBoql1OpMU%2Br7o%3D\";s:10:\"url_latest\";s:171:\"http://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.2.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=mS7SOdsfV0sXvfQfxYDNuEJiBnU%3D\";}s:22:\"gravityformsfreshbooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.5\";s:14:\"version_latest\";s:5:\"2.5.2\";s:3:\"url\";s:183:\"http://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=g0MDf7ot8BaAwJQl8s%2FIuclwyMY%3D\";s:10:\"url_latest\";s:185:\"http://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.5.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=6kB3jslziEi6NQm9Kg%2BDInHH8t8%3D\";}s:23:\"gravityformsgetresponse\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";s:3:\"url\";s:185:\"http://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=%2Bc6qAM09saamsSe95BxjlILuU1Q%3D\";s:10:\"url_latest\";s:185:\"http://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=%2Bc6qAM09saamsSe95BxjlILuU1Q%3D\";}s:21:\"gravityformsgutenberg\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-beta-4\";s:14:\"version_latest\";s:10:\"1.0-beta-4\";s:3:\"url\";s:188:\"http://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-beta-4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=LcrLdp0rb%2BRrzKM12X2dEINjSk8%3D\";s:10:\"url_latest\";s:188:\"http://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-beta-4.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=LcrLdp0rb%2BRrzKM12X2dEINjSk8%3D\";}s:21:\"gravityformshelpscout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:183:\"http://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_1.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=Enc7Y04%2Fh%2BFbd8flMGxyafXBaSs%3D\";s:10:\"url_latest\";s:183:\"http://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_1.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=Enc7Y04%2Fh%2BFbd8flMGxyafXBaSs%3D\";}s:20:\"gravityformshighrise\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.3\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=m2K%2FG2wVSyXXVMAfdsdA6DcbtJ8%3D\";s:10:\"url_latest\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.2.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=U9nc6hmXYaHEoAUJl33vdvzd63U%3D\";}s:19:\"gravityformshipchat\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";s:3:\"url\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/hipchat/gravityformshipchat_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=RW%2BBenWwDB8j5fKtb1hLR%2B%2Fhgwk%3D\";s:10:\"url_latest\";s:181:\"http://s3.amazonaws.com/gravityforms/addons/hipchat/gravityformshipchat_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=RW%2BBenWwDB8j5fKtb1hLR%2B%2Fhgwk%3D\";}s:20:\"gravityformsicontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=kcBCI0zhKywwoU%2FAbRd5yc43hH8%3D\";s:10:\"url_latest\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=kcBCI0zhKywwoU%2FAbRd5yc43hH8%3D\";}s:19:\"gravityformslogging\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=IhQF45gJCpTC9cHOUM5qx7xGsx4%3D\";s:10:\"url_latest\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=Srr6T3lCR9fIKeGsRU3LJGU%2BM68%3D\";}s:19:\"gravityformsmadmimi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=Iz8hks1iRyDwH43WipGyFj5ap0o%3D\";s:10:\"url_latest\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=Iz8hks1iRyDwH43WipGyFj5ap0o%3D\";}s:21:\"gravityformsmailchimp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.3\";s:14:\"version_latest\";s:3:\"4.3\";s:3:\"url\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_4.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=bSqQYTOdU5T3CQ9menmxILIFx6Q%3D\";s:10:\"url_latest\";s:179:\"http://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_4.3.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=bSqQYTOdU5T3CQ9menmxILIFx6Q%3D\";}s:26:\"gravityformspartialentries\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:18:\"gravityformspaypal\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:5:\"3.1.1\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=r8OXTNHMQkGKa1Lqbu50k22ihvs%3D\";s:10:\"url_latest\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=GbuevzPqlrRv48ngGmBsp%2Bxz6Wg%3D\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";N;}s:29:\"gravityformspaypalpaymentspro\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.3\";s:14:\"version_latest\";s:5:\"2.3.2\";}s:21:\"gravityformspaypalpro\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.1\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:3:\"1.1\";s:3:\"url\";s:171:\"http://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=SFxkZh5iXjNFc7fy%2FMR6SP8Wlgk%3D\";s:10:\"url_latest\";s:171:\"http://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.1.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=SFxkZh5iXjNFc7fy%2FMR6SP8Wlgk%3D\";}s:17:\"gravityformspolls\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:5:\"3.1.4\";}s:16:\"gravityformsquiz\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:5:\"3.1.7\";}s:19:\"gravityformsrestapi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:3:\"url\";s:182:\"http://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=jrJF7lkfISTCYlIBF9ADLtX3I5U%3D\";s:10:\"url_latest\";s:182:\"http://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=jrJF7lkfISTCYlIBF9ADLtX3I5U%3D\";}s:21:\"gravityformssignature\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"3.5.1\";s:14:\"version_latest\";s:5:\"3.5.2\";}s:17:\"gravityformsslack\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";s:3:\"url\";s:171:\"http://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_1.8.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=bMCphJFB10ypLExbN0YkagxyQ0M%3D\";s:10:\"url_latest\";s:171:\"http://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_1.8.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=bMCphJFB10ypLExbN0YkagxyQ0M%3D\";}s:18:\"gravityformsstripe\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.5\";s:14:\"version_latest\";s:5:\"2.5.2\";}s:18:\"gravityformssurvey\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.2\";s:14:\"version_latest\";s:5:\"3.2.2\";}s:18:\"gravityformstrello\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_1.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=uezlEmmLXQPpzFt522n3asQT1MY%3D\";s:10:\"url_latest\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_1.2.2.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=YbDFX0zQuo0bDK%2BzuV9f7eg3unw%3D\";}s:18:\"gravityformstwilio\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.5\";s:14:\"version_latest\";s:3:\"2.5\";s:3:\"url\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=7TId03ZFcXMLxn9kA7rUsp273gs%3D\";s:10:\"url_latest\";s:173:\"http://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=7TId03ZFcXMLxn9kA7rUsp273gs%3D\";}s:28:\"gravityformsuserregistration\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.9\";s:14:\"version_latest\";s:5:\"3.9.2\";}s:20:\"gravityformswebhooks\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.1.5\";}s:18:\"gravityformszapier\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.0\";s:14:\"version_latest\";s:3:\"3.0\";s:3:\"url\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_3.0.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=GZfVk9U7rtfTTnWlU%2BXzTIdIoHc%3D\";s:10:\"url_latest\";s:175:\"http://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_3.0.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=GZfVk9U7rtfTTnWlU%2BXzTIdIoHc%3D\";}s:19:\"gravityformszohocrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_1.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=EB%2BIwMsTLvLi4zR7YCWvZiThf8I%3D\";s:10:\"url_latest\";s:177:\"http://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_1.5.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=EB%2BIwMsTLvLi4zR7YCWvZiThf8I%3D\";}}s:9:\"is_active\";s:1:\"1\";s:14:\"version_latest\";s:7:\"2.3.2.6\";s:10:\"url_latest\";s:170:\"http://s3.amazonaws.com/gravityforms/releases/gravityforms_2.3.2.6.zip?AWSAccessKeyId=1603BBK66770VCSCJSG2&Expires=1529614068&Signature=xyOnxsk5P11ll2FsL%2BOLs%2BLovdU%3D\";s:9:\"timestamp\";i:1529441268;}", "yes");
INSERT INTO `wp_options` VALUES("57285", "the7_dev_tool_option", "a:8:{s:11:\"theme_title\";s:4:\"The7\";s:9:\"theme_url\";s:15:\"http://the7.io/\";s:12:\"theme_author\";s:11:\"Dream-Theme\";s:16:\"theme_author_uri\";s:23:\"http://dream-theme.com/\";s:17:\"theme_description\";s:384:\"Any design, any layout. No coding required. The7 is the most customisable WordPress theme on the market up to date. Add the power of Visual Composer, The7 Post Types, Ultimate Addons, Slider Revolution, and WooCommerce to the mix, and youâ€™ll get the ultimate web-site building toolkit! Theme is translation ready, compatible with WPML, SEO and mobile friendly (certified by Google).\";s:10:\"theme_tags\";s:186:\"multipurpose, responsive, retina ready, SEO ready, mobile friendly, iOS, material design, clean, minimal, business, corporate, portfolio, creative, photography, one page site, micro site\";s:10:\"theme_name\";s:4:\"The7\";s:10:\"screenshot\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("57289", "the7_dismissed_admin_notices", "a:2:{i:1;s:22:\"the7_auto_deactivation\";i:2;s:12:\"the7_updated\";}", "yes");
INSERT INTO `wp_options` VALUES("57290", "the7_force_regen_css", "", "yes");
INSERT INTO `wp_options` VALUES("57291", "the7_beautiful_loader_inline_css", "body #load {\n  display: block;\n  height: 100%;\n  overflow: hidden;\n  position: fixed;\n  width: 100%;\n  z-index: 9901;\n  opacity: 1;\n  visibility: visible;\n  -webkit-transition: all .35s ease-out;\n  transition: all .35s ease-out;\n}\n.load-wrap {\n  width: 100%;\n  height: 100%;\n  background-position: center center;\n  background-repeat: no-repeat;\n  text-align: center;\n}\n.load-wrap > svg {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%,-50%);\n  -webkit-transform: translate(-50%,-50%);\n  transform: translate(-50%,-50%);\n}\n#load {\n  background-color: #ffffff;\n}\n.uil-default rect:not(.bk) {\n  fill: rgba(51,51,51,0.3);\n}\n.uil-ring > path {\n  fill: rgba(51,51,51,0.3);\n}\n.ring-loader .circle {\n  fill: rgba(51,51,51,0.3);\n}\n.ring-loader .moving-circle {\n  fill: #333333;\n}\n.uil-hourglass .glass {\n  stroke: #333333;\n}\n.uil-hourglass .sand {\n  fill: rgba(51,51,51,0.3);\n}\n.spinner-loader .load-wrap {\n  background-image: url(\"data:image/svg+xml,%3Csvg width=\'75px\' height=\'75px\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 100 100\' preserveAspectRatio=\'xMidYMid\' class=\'uil-default\'%3E%3Crect x=\'0\' y=\'0\' width=\'100\' height=\'100\' fill=\'none\' class=\'bk\'%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(0 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(30 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.08333333333333333s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(60 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.16666666666666666s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(90 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.25s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(120 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.3333333333333333s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(150 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.4166666666666667s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(180 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.5s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(210 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.5833333333333334s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(240 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.6666666666666666s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(270 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.75s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(300 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.8333333333333334s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3Crect  x=\'46.5\' y=\'40\' width=\'7\' height=\'20\' rx=\'5\' ry=\'5\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\' transform=\'rotate(330 50 50) translate(0 -30)\'%3E  %3Canimate attributeName=\'opacity\' from=\'1\' to=\'0\' dur=\'1s\' begin=\'0.9166666666666666s\' repeatCount=\'indefinite\'/%3E%3C/rect%3E%3C/svg%3E\");\n}\n.ring-loader .load-wrap {\n  background-image: url(\"data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 32 32\' width=\'72\' height=\'72\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\'%3E   %3Cpath opacity=\'.25\' d=\'M16 0 A16 16 0 0 0 16 32 A16 16 0 0 0 16 0 M16 4 A12 12 0 0 1 16 28 A12 12 0 0 1 16 4\'/%3E   %3Cpath d=\'M16 0 A16 16 0 0 1 32 16 L28 16 A12 12 0 0 0 16 4z\'%3E     %3CanimateTransform attributeName=\'transform\' type=\'rotate\' from=\'0 16 16\' to=\'360 16 16\' dur=\'0.8s\' repeatCount=\'indefinite\' /%3E   %3C/path%3E %3C/svg%3E\");\n}\n.hourglass-loader .load-wrap {\n  background-image: url(\"data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 32 32\' width=\'72\' height=\'72\' fill=\'rgba%2851%2C51%2C51%2C0.3%29\'%3E   %3Cpath transform=\'translate(2)\' d=\'M0 12 V20 H4 V12z\'%3E      %3Canimate attributeName=\'d\' values=\'M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z\' dur=\'1.2s\' repeatCount=\'indefinite\' begin=\'0\' keytimes=\'0;.2;.5;1\' keySplines=\'0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8\' calcMode=\'spline\'  /%3E   %3C/path%3E   %3Cpath transform=\'translate(8)\' d=\'M0 12 V20 H4 V12z\'%3E     %3Canimate attributeName=\'d\' values=\'M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z\' dur=\'1.2s\' repeatCount=\'indefinite\' begin=\'0.2\' keytimes=\'0;.2;.5;1\' keySplines=\'0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8\' calcMode=\'spline\'  /%3E   %3C/path%3E   %3Cpath transform=\'translate(14)\' d=\'M0 12 V20 H4 V12z\'%3E     %3Canimate attributeName=\'d\' values=\'M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z\' dur=\'1.2s\' repeatCount=\'indefinite\' begin=\'0.4\' keytimes=\'0;.2;.5;1\' keySplines=\'0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8\' calcMode=\'spline\' /%3E   %3C/path%3E   %3Cpath transform=\'translate(20)\' d=\'M0 12 V20 H4 V12z\'%3E     %3Canimate attributeName=\'d\' values=\'M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z\' dur=\'1.2s\' repeatCount=\'indefinite\' begin=\'0.6\' keytimes=\'0;.2;.5;1\' keySplines=\'0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8\' calcMode=\'spline\' /%3E   %3C/path%3E   %3Cpath transform=\'translate(26)\' d=\'M0 12 V20 H4 V12z\'%3E     %3Canimate attributeName=\'d\' values=\'M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z\' dur=\'1.2s\' repeatCount=\'indefinite\' begin=\'0.8\' keytimes=\'0;.2;.5;1\' keySplines=\'0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8\' calcMode=\'spline\' /%3E   %3C/path%3E %3C/svg%3E\");\n}\n", "yes");
INSERT INTO `wp_options` VALUES("57292", "the7_style_version", "6.4.0", "yes");
INSERT INTO `wp_options` VALUES("57300", "the7_legacy_state", "0", "yes");
INSERT INTO `wp_options` VALUES("57303", "theme_mods_twentytwelve", "a:4:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522263624;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:10:\"nav_menu-4\";i:1;s:8:\"search-3\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}", "yes");
INSERT INTO `wp_options` VALUES("57306", "theme_mods_dt-the7-77", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522253030;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"nav_menu-4\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:8:\"search-3\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("57312", "wordfence_version", "7.1.1", "yes");
INSERT INTO `wp_options` VALUES("57313", "wordfenceActivated", "0", "yes");
INSERT INTO `wp_options` VALUES("57314", "wf_plugin_act_error", "", "yes");
INSERT INTO `wp_options` VALUES("57333", "rewrite_rules", "a:175:{s:57:\"(?:.+/)?calendar-2(\\/[a-z][a-z0-9\\-_~\\/]*~[a-z0-9\\-_~\\/])\";s:23:\"index.php?page_id=15061\";s:12:\"donations/?$\";s:30:\"index.php?post_type=give_forms\";s:42:\"donations/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=give_forms&feed=$matches[1]\";s:37:\"donations/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=give_forms&feed=$matches[1]\";s:29:\"donations/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=give_forms&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:8:\"event/?$\";s:31:\"index.php?post_type=ai1ec_event\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=ai1ec_event&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=ai1ec_event&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=ai1ec_event&paged=$matches[1]\";s:54:\"give_log_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?give_log_type=$matches[1]&feed=$matches[2]\";s:49:\"give_log_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?give_log_type=$matches[1]&feed=$matches[2]\";s:30:\"give_log_type/([^/]+)/embed/?$\";s:46:\"index.php?give_log_type=$matches[1]&embed=true\";s:42:\"give_log_type/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?give_log_type=$matches[1]&paged=$matches[2]\";s:24:\"give_log_type/([^/]+)/?$\";s:35:\"index.php?give_log_type=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:34:\"category/(.+?)/give-api(/(.*))?/?$\";s:56:\"index.php?category_name=$matches[1]&give-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:31:\"tag/([^/]+)/give-api(/(.*))?/?$\";s:46:\"index.php?tag=$matches[1]&give-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:37:\"donations/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"donations/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"donations/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"donations/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"donations/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"donations/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"donations/([^/]+)/embed/?$\";s:43:\"index.php?give_forms=$matches[1]&embed=true\";s:30:\"donations/([^/]+)/trackback/?$\";s:37:\"index.php?give_forms=$matches[1]&tb=1\";s:50:\"donations/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?give_forms=$matches[1]&feed=$matches[2]\";s:45:\"donations/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?give_forms=$matches[1]&feed=$matches[2]\";s:38:\"donations/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?give_forms=$matches[1]&paged=$matches[2]\";s:45:\"donations/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?give_forms=$matches[1]&cpage=$matches[2]\";s:37:\"donations/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?give_forms=$matches[1]&give-api=$matches[3]\";s:43:\"donations/[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:54:\"donations/[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:34:\"donations/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?give_forms=$matches[1]&page=$matches[2]\";s:26:\"donations/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"donations/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"donations/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"donations/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"donations/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"donations/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:58:\"events_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?events_categories=$matches[1]&feed=$matches[2]\";s:53:\"events_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?events_categories=$matches[1]&feed=$matches[2]\";s:34:\"events_categories/([^/]+)/embed/?$\";s:50:\"index.php?events_categories=$matches[1]&embed=true\";s:46:\"events_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?events_categories=$matches[1]&paged=$matches[2]\";s:28:\"events_categories/([^/]+)/?$\";s:39:\"index.php?events_categories=$matches[1]\";s:52:\"events_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?events_tags=$matches[1]&feed=$matches[2]\";s:47:\"events_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?events_tags=$matches[1]&feed=$matches[2]\";s:28:\"events_tags/([^/]+)/embed/?$\";s:44:\"index.php?events_tags=$matches[1]&embed=true\";s:40:\"events_tags/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?events_tags=$matches[1]&paged=$matches[2]\";s:22:\"events_tags/([^/]+)/?$\";s:33:\"index.php?events_tags=$matches[1]\";s:53:\"events_feeds/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?events_feeds=$matches[1]&feed=$matches[2]\";s:48:\"events_feeds/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?events_feeds=$matches[1]&feed=$matches[2]\";s:29:\"events_feeds/([^/]+)/embed/?$\";s:45:\"index.php?events_feeds=$matches[1]&embed=true\";s:41:\"events_feeds/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?events_feeds=$matches[1]&paged=$matches[2]\";s:23:\"events_feeds/([^/]+)/?$\";s:34:\"index.php?events_feeds=$matches[1]\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:44:\"index.php?ai1ec_event=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:38:\"index.php?ai1ec_event=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?ai1ec_event=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?ai1ec_event=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?ai1ec_event=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?ai1ec_event=$matches[1]&cpage=$matches[2]\";s:33:\"event/([^/]+)/give-api(/(.*))?/?$\";s:54:\"index.php?ai1ec_event=$matches[1]&give-api=$matches[3]\";s:39:\"event/[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:50:\"event/[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?ai1ec_event=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=4&cpage=$matches[1]\";s:19:\"give-api(/(.*))?/?$\";s:31:\"index.php?&give-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:28:\"comments/give-api(/(.*))?/?$\";s:31:\"index.php?&give-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:31:\"search/(.+)/give-api(/(.*))?/?$\";s:44:\"index.php?s=$matches[1]&give-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:34:\"author/([^/]+)/give-api(/(.*))?/?$\";s:54:\"index.php?author_name=$matches[1]&give-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:56:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/give-api(/(.*))?/?$\";s:84:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&give-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:43:\"([0-9]{4})/([0-9]{1,2})/give-api(/(.*))?/?$\";s:68:\"index.php?year=$matches[1]&monthnum=$matches[2]&give-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:30:\"([0-9]{4})/give-api(/(.*))?/?$\";s:47:\"index.php?year=$matches[1]&give-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:27:\"(.?.+?)/give-api(/(.*))?/?$\";s:51:\"index.php?pagename=$matches[1]&give-api=$matches[3]\";s:33:\".?.+?/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:44:\".?.+?/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:27:\"([^/]+)/give-api(/(.*))?/?$\";s:47:\"index.php?name=$matches[1]&give-api=$matches[3]\";s:33:\"[^/]+/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:44:\"[^/]+/attachment/([^/]+)/give-api(/(.*))?/?$\";s:53:\"index.php?attachment=$matches[1]&give-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}", "yes");
INSERT INTO `wp_options` VALUES("57336", "widget_media_audio", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57337", "widget_media_image", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57338", "widget_media_gallery", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57339", "widget_media_video", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57340", "widget_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57341", "widget_custom_html", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57342", "widget_gform_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57343", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `wp_options` VALUES("57344", "site_icon", "0", "yes");
INSERT INTO `wp_options` VALUES("57345", "medium_large_size_w", "768", "yes");
INSERT INTO `wp_options` VALUES("57346", "medium_large_size_h", "0", "yes");
INSERT INTO `wp_options` VALUES("57347", "WPLANG", "", "yes");
INSERT INTO `wp_options` VALUES("57364", "widget_presscore-contact-info-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57365", "widget_presscore-custom-menu-1", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57366", "widget_presscore-custom-menu-2", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57367", "widget_presscore-blog-posts", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57368", "widget_presscore-blog-categories", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57369", "widget_presscore-progress-bars-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57370", "widget_presscore-contact-form-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57371", "widget_presscore-accordion-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57374", "can_compress_scripts", "1", "no");
INSERT INTO `wp_options` VALUES("57377", "_split_terms", "a:7:{i:6;a:2:{s:8:\"post_tag\";i:80;s:17:\"events_categories\";i:81;}i:10;a:1:{s:11:\"events_tags\";i:82;}i:5;a:1:{s:17:\"events_categories\";i:83;}i:14;a:1:{s:11:\"events_tags\";i:84;}i:21;a:1:{s:11:\"events_tags\";i:85;}i:67;a:1:{s:11:\"events_tags\";i:86;}i:18;a:1:{s:11:\"events_tags\";i:87;}}", "yes");
INSERT INTO `wp_options` VALUES("57378", "wpcf7", "a:2:{s:7:\"version\";s:5:\"5.0.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";d:1522229877;s:7:\"version\";s:5:\"5.0.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}", "yes");
INSERT INTO `wp_options` VALUES("57386", "the7_plugins_last_check", "1522264496", "no");
INSERT INTO `wp_options` VALUES("57394", "woocommerce_store_address", "", "yes");
INSERT INTO `wp_options` VALUES("57395", "woocommerce_store_address_2", "", "yes");
INSERT INTO `wp_options` VALUES("57396", "woocommerce_store_city", "", "yes");
INSERT INTO `wp_options` VALUES("57397", "woocommerce_default_country", "GB", "yes");
INSERT INTO `wp_options` VALUES("57398", "woocommerce_store_postcode", "", "yes");
INSERT INTO `wp_options` VALUES("57399", "woocommerce_allowed_countries", "all", "yes");
INSERT INTO `wp_options` VALUES("57400", "woocommerce_all_except_countries", "", "yes");
INSERT INTO `wp_options` VALUES("57401", "woocommerce_specific_allowed_countries", "", "yes");
INSERT INTO `wp_options` VALUES("57402", "woocommerce_ship_to_countries", "", "yes");
INSERT INTO `wp_options` VALUES("57403", "woocommerce_specific_ship_to_countries", "", "yes");
INSERT INTO `wp_options` VALUES("57404", "woocommerce_default_customer_address", "geolocation", "yes");
INSERT INTO `wp_options` VALUES("57405", "woocommerce_calc_taxes", "no", "yes");
INSERT INTO `wp_options` VALUES("57406", "woocommerce_currency", "GBP", "yes");
INSERT INTO `wp_options` VALUES("57407", "woocommerce_currency_pos", "left", "yes");
INSERT INTO `wp_options` VALUES("57408", "woocommerce_price_thousand_sep", ",", "yes");
INSERT INTO `wp_options` VALUES("57409", "woocommerce_price_decimal_sep", ".", "yes");
INSERT INTO `wp_options` VALUES("57410", "woocommerce_price_num_decimals", "2", "yes");
INSERT INTO `wp_options` VALUES("57411", "woocommerce_shop_page_id", "", "yes");
INSERT INTO `wp_options` VALUES("57412", "woocommerce_cart_redirect_after_add", "no", "yes");
INSERT INTO `wp_options` VALUES("57413", "woocommerce_enable_ajax_add_to_cart", "yes", "yes");
INSERT INTO `wp_options` VALUES("57414", "woocommerce_weight_unit", "kg", "yes");
INSERT INTO `wp_options` VALUES("57415", "woocommerce_dimension_unit", "cm", "yes");
INSERT INTO `wp_options` VALUES("57416", "woocommerce_enable_reviews", "yes", "yes");
INSERT INTO `wp_options` VALUES("57417", "woocommerce_review_rating_verification_label", "yes", "no");
INSERT INTO `wp_options` VALUES("57418", "woocommerce_review_rating_verification_required", "no", "no");
INSERT INTO `wp_options` VALUES("57419", "woocommerce_enable_review_rating", "yes", "yes");
INSERT INTO `wp_options` VALUES("57420", "woocommerce_review_rating_required", "yes", "no");
INSERT INTO `wp_options` VALUES("57421", "woocommerce_manage_stock", "yes", "yes");
INSERT INTO `wp_options` VALUES("57422", "woocommerce_hold_stock_minutes", "60", "no");
INSERT INTO `wp_options` VALUES("57423", "woocommerce_notify_low_stock", "yes", "no");
INSERT INTO `wp_options` VALUES("57424", "woocommerce_notify_no_stock", "yes", "no");
INSERT INTO `wp_options` VALUES("57425", "woocommerce_stock_email_recipient", "info@localhost", "no");
INSERT INTO `wp_options` VALUES("57426", "woocommerce_notify_low_stock_amount", "2", "no");
INSERT INTO `wp_options` VALUES("57427", "woocommerce_notify_no_stock_amount", "0", "yes");
INSERT INTO `wp_options` VALUES("57428", "woocommerce_hide_out_of_stock_items", "no", "yes");
INSERT INTO `wp_options` VALUES("57429", "woocommerce_stock_format", "", "yes");
INSERT INTO `wp_options` VALUES("57430", "woocommerce_file_download_method", "force", "no");
INSERT INTO `wp_options` VALUES("57431", "woocommerce_downloads_require_login", "no", "no");
INSERT INTO `wp_options` VALUES("57432", "woocommerce_downloads_grant_access_after_payment", "yes", "no");
INSERT INTO `wp_options` VALUES("57433", "woocommerce_prices_include_tax", "no", "yes");
INSERT INTO `wp_options` VALUES("57434", "woocommerce_tax_based_on", "shipping", "yes");
INSERT INTO `wp_options` VALUES("57435", "woocommerce_shipping_tax_class", "inherit", "yes");
INSERT INTO `wp_options` VALUES("57436", "woocommerce_tax_round_at_subtotal", "no", "yes");
INSERT INTO `wp_options` VALUES("57437", "woocommerce_tax_classes", "Reduced rate\nZero rate", "yes");
INSERT INTO `wp_options` VALUES("57438", "woocommerce_tax_display_shop", "excl", "yes");
INSERT INTO `wp_options` VALUES("57439", "woocommerce_tax_display_cart", "excl", "no");
INSERT INTO `wp_options` VALUES("57440", "woocommerce_price_display_suffix", "", "yes");
INSERT INTO `wp_options` VALUES("57441", "woocommerce_tax_total_display", "itemized", "no");
INSERT INTO `wp_options` VALUES("57442", "woocommerce_enable_shipping_calc", "yes", "no");
INSERT INTO `wp_options` VALUES("57443", "woocommerce_shipping_cost_requires_address", "no", "no");
INSERT INTO `wp_options` VALUES("57444", "woocommerce_ship_to_destination", "billing", "no");
INSERT INTO `wp_options` VALUES("57445", "woocommerce_shipping_debug_mode", "no", "no");
INSERT INTO `wp_options` VALUES("57446", "woocommerce_enable_coupons", "yes", "yes");
INSERT INTO `wp_options` VALUES("57447", "woocommerce_calc_discounts_sequentially", "no", "no");
INSERT INTO `wp_options` VALUES("57448", "woocommerce_enable_guest_checkout", "yes", "no");
INSERT INTO `wp_options` VALUES("57449", "woocommerce_force_ssl_checkout", "no", "yes");
INSERT INTO `wp_options` VALUES("57450", "woocommerce_unforce_ssl_checkout", "no", "yes");
INSERT INTO `wp_options` VALUES("57451", "woocommerce_cart_page_id", "", "yes");
INSERT INTO `wp_options` VALUES("57452", "woocommerce_checkout_page_id", "", "yes");
INSERT INTO `wp_options` VALUES("57453", "woocommerce_terms_page_id", "", "no");
INSERT INTO `wp_options` VALUES("57454", "woocommerce_checkout_pay_endpoint", "order-pay", "yes");
INSERT INTO `wp_options` VALUES("57455", "woocommerce_checkout_order_received_endpoint", "order-received", "yes");
INSERT INTO `wp_options` VALUES("57456", "woocommerce_myaccount_add_payment_method_endpoint", "add-payment-method", "yes");
INSERT INTO `wp_options` VALUES("57457", "woocommerce_myaccount_delete_payment_method_endpoint", "delete-payment-method", "yes");
INSERT INTO `wp_options` VALUES("57458", "woocommerce_myaccount_set_default_payment_method_endpoint", "set-default-payment-method", "yes");
INSERT INTO `wp_options` VALUES("57459", "woocommerce_myaccount_page_id", "", "yes");
INSERT INTO `wp_options` VALUES("57460", "woocommerce_enable_signup_and_login_from_checkout", "yes", "no");
INSERT INTO `wp_options` VALUES("57461", "woocommerce_enable_myaccount_registration", "no", "no");
INSERT INTO `wp_options` VALUES("57462", "woocommerce_enable_checkout_login_reminder", "yes", "no");
INSERT INTO `wp_options` VALUES("57463", "woocommerce_registration_generate_username", "yes", "no");
INSERT INTO `wp_options` VALUES("57464", "woocommerce_registration_generate_password", "no", "no");
INSERT INTO `wp_options` VALUES("57465", "woocommerce_myaccount_orders_endpoint", "orders", "yes");
INSERT INTO `wp_options` VALUES("57466", "woocommerce_myaccount_view_order_endpoint", "view-order", "yes");
INSERT INTO `wp_options` VALUES("57467", "woocommerce_myaccount_downloads_endpoint", "downloads", "yes");
INSERT INTO `wp_options` VALUES("57468", "woocommerce_myaccount_edit_account_endpoint", "edit-account", "yes");
INSERT INTO `wp_options` VALUES("57469", "woocommerce_myaccount_edit_address_endpoint", "edit-address", "yes");
INSERT INTO `wp_options` VALUES("57470", "woocommerce_myaccount_payment_methods_endpoint", "payment-methods", "yes");
INSERT INTO `wp_options` VALUES("57471", "woocommerce_myaccount_lost_password_endpoint", "lost-password", "yes");
INSERT INTO `wp_options` VALUES("57472", "woocommerce_logout_endpoint", "customer-logout", "yes");
INSERT INTO `wp_options` VALUES("57473", "woocommerce_email_from_name", "South Island Centre", "no");
INSERT INTO `wp_options` VALUES("57474", "woocommerce_email_from_address", "info@localhost", "no");
INSERT INTO `wp_options` VALUES("57475", "woocommerce_email_header_image", "", "no");
INSERT INTO `wp_options` VALUES("57476", "woocommerce_email_footer_text", "{site_title}", "no");
INSERT INTO `wp_options` VALUES("57477", "woocommerce_email_base_color", "#96588a", "no");
INSERT INTO `wp_options` VALUES("57478", "woocommerce_email_background_color", "#f7f7f7", "no");
INSERT INTO `wp_options` VALUES("57479", "woocommerce_email_body_background_color", "#ffffff", "no");
INSERT INTO `wp_options` VALUES("57480", "woocommerce_email_text_color", "#3c3c3c", "no");
INSERT INTO `wp_options` VALUES("57481", "woocommerce_api_enabled", "yes", "yes");
INSERT INTO `wp_options` VALUES("57482", "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");
INSERT INTO `wp_options` VALUES("57483", "current_theme_supports_woocommerce", "yes", "yes");
INSERT INTO `wp_options` VALUES("57484", "woocommerce_queue_flush_rewrite_rules", "no", "yes");
INSERT INTO `wp_options` VALUES("57485", "_transient_wc_attribute_taxonomies", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57486", "product_cat_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57487", "default_product_cat", "101", "yes");
INSERT INTO `wp_options` VALUES("57490", "woocommerce_version", "3.3.4", "yes");
INSERT INTO `wp_options` VALUES("57491", "woocommerce_db_version", "3.3.4", "yes");
INSERT INTO `wp_options` VALUES("57493", "woocommerce_admin_notices", "a:1:{i:0;s:7:\"install\";}", "yes");
INSERT INTO `wp_options` VALUES("57498", "_transient_woocommerce_webhook_ids", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57499", "widget_tp_widget_recent_tweets", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57500", "widget_woocommerce_widget_cart", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57501", "widget_woocommerce_layered_nav_filters", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57502", "widget_woocommerce_layered_nav", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57503", "widget_woocommerce_price_filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57504", "widget_woocommerce_product_categories", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57505", "widget_woocommerce_product_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57506", "widget_woocommerce_product_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57507", "widget_woocommerce_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57508", "widget_woocommerce_recently_viewed_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57509", "widget_woocommerce_top_rated_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57510", "widget_woocommerce_recent_reviews", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57511", "widget_woocommerce_rating_filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57513", "_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");
INSERT INTO `wp_options` VALUES("57521", "woocommerce_meta_box_errors", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57524", "the7_registered", "yes", "no");
INSERT INTO `wp_options` VALUES("57526", "the7_purchase_code", "02d45dc7-6e9f-4035-a495-3efe61a72953", "no");
INSERT INTO `wp_options` VALUES("57529", "the7_plugins_list", "a:10:{i:0;a:3:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"required\";b:0;}i:1;a:8:{s:4:\"name\";s:13:\"The7 Elements\";s:4:\"slug\";s:12:\"dt-the7-core\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"1.7.2\";s:6:\"tested\";s:5:\"4.9.5\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:101:\"https://repo.the7.io/plugins/download.php?code=02d45dc7-6e9f-4035-a495-3efe61a72953&item=dt-the7-core\";}i:2;a:7:{s:4:\"name\";s:26:\"The7 WPBakery Page Builder\";s:4:\"slug\";s:11:\"js_composer\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"5.4.7\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:100:\"https://repo.the7.io/plugins/download.php?code=02d45dc7-6e9f-4035-a495-3efe61a72953&item=js_composer\";}i:3;a:7:{s:4:\"name\";s:22:\"The7 Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:8:\"required\";b:0;s:7:\"version\";s:7:\"5.4.7.3\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:98:\"https://repo.the7.io/plugins/download.php?code=02d45dc7-6e9f-4035-a495-3efe61a72953&item=revslider\";}i:4;a:7:{s:4:\"name\";s:53:\"The7 Go Pricing - WordPress Responsive Pricing Tables\";s:4:\"slug\";s:10:\"go_pricing\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"3.3.9\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:99:\"https://repo.the7.io/plugins/download.php?code=02d45dc7-6e9f-4035-a495-3efe61a72953&item=go_pricing\";}i:5;a:7:{s:4:\"name\";s:19:\"The7 LayerSlider WP\";s:4:\"slug\";s:11:\"LayerSlider\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"6.7.1\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:100:\"https://repo.the7.io/plugins/download.php?code=02d45dc7-6e9f-4035-a495-3efe61a72953&item=LayerSlider\";}i:6;a:7:{s:4:\"name\";s:40:\"The7 Ultimate Addons for Visual Composer\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:8:\"required\";b:0;s:7:\"version\";s:7:\"3.16.22\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:107:\"https://repo.the7.io/plugins/download.php?code=02d45dc7-6e9f-4035-a495-3efe61a72953&item=Ultimate_VC_Addons\";}i:7;a:7:{s:4:\"name\";s:16:\"The7 ConvertPlus\";s:4:\"slug\";s:11:\"convertplug\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"3.2.3\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:100:\"https://repo.the7.io/plugins/download.php?code=02d45dc7-6e9f-4035-a495-3efe61a72953&item=convertplug\";}i:8;a:3:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"required\";b:0;}i:9;a:3:{s:4:\"name\";s:20:\"Recent Tweets Widget\";s:4:\"slug\";s:20:\"recent-tweets-widget\";s:8:\"required\";b:0;}}", "no");
INSERT INTO `wp_options` VALUES("57537", "vc_version", "5.4.7", "yes");
INSERT INTO `wp_options` VALUES("57543", "wpb_js_the7_js_composer_purchase_code", "02d45dc7-6e9f-4035-a495-3efe61a72953", "no");
INSERT INTO `wp_options` VALUES("57549", "wpb_js_composer_license_activation_notified", "yes", "yes");
INSERT INTO `wp_options` VALUES("57568", "convert_plug_modules", "a:3:{i:0;s:11:\"Modal_Popup\";i:1;s:8:\"Info_Bar\";i:2;s:14:\"Slide_In_Popup\";}", "yes");
INSERT INTO `wp_options` VALUES("57569", "ultimate_google_fonts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57570", "ultimate_selected_google_fonts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57571", "convert_plug_redirect", "1", "yes");
INSERT INTO `wp_options` VALUES("57572", "bsf_force_check_extensions", "", "no");
INSERT INTO `wp_options` VALUES("57573", "cp_is_new_user", "1", "yes");
INSERT INTO `wp_options` VALUES("57574", "cp_previous_version", "3.2.0", "yes");
INSERT INTO `wp_options` VALUES("57575", "the7pt_flush_rewrite_rules", "", "yes");
INSERT INTO `wp_options` VALUES("57576", "ls-plugin-version", "6.7.1", "yes");
INSERT INTO `wp_options` VALUES("57577", "ls-db-version", "6.5.5", "yes");
INSERT INTO `wp_options` VALUES("57578", "ls-installed", "0", "yes");
INSERT INTO `wp_options` VALUES("57579", "ls-date-installed", "1522255818", "yes");
INSERT INTO `wp_options` VALUES("57583", "widget_layerslider_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57584", "widget_convertplug_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57585", "widget_presscore-portfolio", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57586", "widget_presscore-photos", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57587", "widget_presscore-team", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57588", "widget_presscore-testimonials-list", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57589", "widget_presscore-testimonials-slider", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57594", "the7_dynamic_css_cache", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57595", "the7_dynamic_css_version", "c7c5239310d7", "yes");
INSERT INTO `wp_options` VALUES("57596", "revslider_servers", "a:1:{i:0;s:16:\"themepunch.tools\";}", "yes");
INSERT INTO `wp_options` VALUES("57597", "revslider_server_refresh", "1522255879", "yes");
INSERT INTO `wp_options` VALUES("57598", "revslider-update-check-short", "1522255879", "yes");
INSERT INTO `wp_options` VALUES("57599", "revslider-templates-check", "1522255879", "yes");
INSERT INTO `wp_options` VALUES("57602", "rs-templates-new", "", "no");
INSERT INTO `wp_options` VALUES("57617", "rs-templates", "a:2:{s:6:\"slider\";a:206:{i:0;a:20:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:309:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:20:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:135:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:20:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:169:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:20:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:20:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:182:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:20:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:172:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:436:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:20:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:615:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:20:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:136:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\n<span class=\"ttm_space\"></span>\n\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:20:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:20:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:20:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:439:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:20:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:615:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:20:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:126:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:20:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:20:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:314:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:20:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:20:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:20:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:124:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:20:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:20:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:314:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:20:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:460:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:20:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:615:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:20:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:615:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:20:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:615:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:20:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:345:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:20:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\n<span class=\"ttm_space\"></span>\n\";s:11:\"setup_notes\";s:309:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:20:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:112:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:20:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:172:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:20:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:20:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:115:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:458:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\n<br/><br/>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:20:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:615:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:20:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:161:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:20:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:161:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:314:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:20:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:615:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:20:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:172:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:20:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:103:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:626:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\n<br/><br/>\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:20:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:507:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:20:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:396:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:20:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:396:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:20:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:517:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:20:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:20:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:231:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:396:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:20:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:322:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:20:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:20:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:326:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\n</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:20:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:105:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:440:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\n<br/><br/>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:20:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:20:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:443:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:20:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:173:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:443:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:20:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:458:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\n<br/><br/>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:20:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:301:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:396:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:20:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:302:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:689:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:20:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:305:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:691:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:20:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:292:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:529:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\n<br/><br/>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:20:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:20:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:298:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:20:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:507:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:20:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:458:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\n<br/><br/>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:20:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:190:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:20:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:262:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:396:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:20:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:20:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\n<span class=\"ttm_space\"></span>\n\";s:11:\"setup_notes\";s:307:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:20:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:238:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:20:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:440:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:20:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:124:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:20:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:571:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/revslider-doc/add-on-whiteboard/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:20:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:257:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:515:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:23:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:23:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:23:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:23:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:23:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:23:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:23:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:23:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:23:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:23:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:23:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:23:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:23:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:23:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:23:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:23:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:20:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:302:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:20:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:302:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:20:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:20:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:23:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:23:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:23:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:23:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:23:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:23:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:23:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:23:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:20:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:255:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:20:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:302:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:23:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:909:\"<span class=\"ttm_content\">\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:23:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:909:\"<span class=\"ttm_content\">\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:23:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:909:\"<span class=\"ttm_content\">\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:23:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:909:\"<span class=\"ttm_content\">\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:23:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:909:\"<span class=\"ttm_content\">\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:20:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:20:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:302:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:20:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:287:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:302:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:23:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:909:\"<span class=\"ttm_content\">\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:23:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:190:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:23:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:23:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:20:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:262:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:425:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/revslider-doc/add-on-typewriter/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:20:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:325:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:23:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:23:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:23:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:23:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:23:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:23:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:23:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:23:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:23:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:23:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:23:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:23:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:23:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:23:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:23:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:23:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:23:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:23:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:23:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:23:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:566:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:20:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:342:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:20:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:146:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:340:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:20:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:23:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:20:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:182:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:164:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:20:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:466:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\n<span class=\"ttm_space\"></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:20:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:20:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\n<span class=\"ttm_space\"></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:20:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:206:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:20:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:238:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:20:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:20:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:226:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:352:\"[{\"path\":\"revslider-404-addon\\/revslider-404-addon.php\",\"name\":\"404 Page Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:20:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:20:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/filmstrip-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\n There is lots of customization options like animation speed and direction.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:191:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:20:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:20:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:273:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:20:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:186:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:20:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:20:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:20:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:23:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:23:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:23:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:23:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:23:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:23:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:23:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:23:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:23:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:23:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:23:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:23:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:23:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:23:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:23:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:20:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:357:\"<span class=\"ttm_content\">How to install <a href=\"https://revolution.themepunch.com/direct-customer-benefits/#addoninstall\" target=\"_blank\">Add-Ons</a>.</span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:20:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:164:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:20:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:357:\"<span class=\"ttm_content\">How to install <a href=\"https://revolution.themepunch.com/direct-customer-benefits/#addoninstall\" target=\"_blank\">Add-Ons</a>.</span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:20:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:23:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:23:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:23:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:23:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:23:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:23:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:23:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:23:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:23:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:265:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:20:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:20:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:176:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:20:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:167:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:372:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:20:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:359:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:20:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:23:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:291:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:351:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:23:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:291:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:23:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:291:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:23:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:291:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:23:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:291:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:23:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:291:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:23:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:291:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:20:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:23:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:23:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:23:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:23:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:23:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:23:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:23:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:23:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:23:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:23:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:23:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:23:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:23:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:23:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:195:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:445:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:212:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}}}", "no");
INSERT INTO `wp_options` VALUES("57618", "revslider-library-check", "1522255983", "yes");
INSERT INTO `wp_options` VALUES("57619", "rs-library", "a:2:{s:7:\"objects\";a:169:{i:198;a:11:{s:2:\"id\";s:3:\"198\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;s:1:\"4\";i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";}i:197;a:11:{s:2:\"id\";s:3:\"197\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;s:2:\"24\";i:1;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:196;a:11:{s:2:\"id\";s:3:\"196\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;s:2:\"20\";i:1;s:2:\"22\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:195;a:11:{s:2:\"id\";s:3:\"195\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:194;a:11:{s:2:\"id\";s:3:\"194\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:193;a:11:{s:2:\"id\";s:3:\"193\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"23\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:192;a:11:{s:2:\"id\";s:3:\"192\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;s:2:\"22\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:191;a:11:{s:2:\"id\";s:3:\"191\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;i:21;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:190;a:11:{s:2:\"id\";s:3:\"190\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;i:21;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:189;a:11:{s:2:\"id\";s:3:\"189\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;s:2:\"20\";i:1;s:2:\"22\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:188;a:11:{s:2:\"id\";s:3:\"188\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;s:2:\"18\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:187;a:11:{s:2:\"id\";s:3:\"187\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;s:1:\"5\";i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:186;a:11:{s:2:\"id\";s:3:\"186\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;i:21;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:185;a:11:{s:2:\"id\";s:3:\"185\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;s:2:\"22\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:184;a:11:{s:2:\"id\";s:3:\"184\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;s:2:\"22\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:183;a:11:{s:2:\"id\";s:3:\"183\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;i:21;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:182;a:11:{s:2:\"id\";s:3:\"182\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;s:2:\"22\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:181;a:11:{s:2:\"id\";s:3:\"181\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;s:2:\"22\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:180;a:11:{s:2:\"id\";s:3:\"180\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;s:2:\"23\";i:1;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:179;a:11:{s:2:\"id\";s:3:\"179\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;s:2:\"20\";i:1;s:2:\"22\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:177;a:11:{s:2:\"id\";s:3:\"177\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;i:20;i:1;s:2:\"22\";i:2;s:2:\"19\";i:3;s:2:\"24\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:175;a:11:{s:2:\"id\";s:3:\"175\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;s:2:\"24\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:174;a:11:{s:2:\"id\";s:3:\"174\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;i:20;i:1;s:2:\"22\";i:2;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:173;a:11:{s:2:\"id\";s:3:\"173\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;s:2:\"22\";i:1;s:2:\"19\";i:2;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:172;a:11:{s:2:\"id\";s:3:\"172\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:171;a:11:{s:2:\"id\";s:3:\"171\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;s:1:\"4\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:170;a:11:{s:2:\"id\";s:3:\"170\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:169;a:11:{s:2:\"id\";s:3:\"169\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:168;a:11:{s:2:\"id\";s:3:\"168\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:167;a:11:{s:2:\"id\";s:3:\"167\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:166;a:11:{s:2:\"id\";s:3:\"166\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;s:2:\"18\";i:1;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:165;a:11:{s:2:\"id\";s:3:\"165\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:164;a:11:{s:2:\"id\";s:3:\"164\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole-punch\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:163;a:11:{s:2:\"id\";s:3:\"163\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;s:1:\"4\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:162;a:11:{s:2:\"id\";s:3:\"162\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:161;a:11:{s:2:\"id\";s:3:\"161\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;i:4;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:160;a:11:{s:2:\"id\";s:3:\"160\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:159;a:11:{s:2:\"id\";s:3:\"159\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;i:4;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:158;a:11:{s:2:\"id\";s:3:\"158\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;i:4;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:157;a:11:{s:2:\"id\";s:3:\"157\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:156;a:11:{s:2:\"id\";s:3:\"156\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;s:1:\"5\";i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:155;a:11:{s:2:\"id\";s:3:\"155\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;i:4;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:154;a:11:{s:2:\"id\";s:3:\"154\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:153;a:11:{s:2:\"id\";s:3:\"153\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:152;a:11:{s:2:\"id\";s:3:\"152\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:151;a:11:{s:2:\"id\";s:3:\"151\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;s:1:\"5\";i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:150;a:11:{s:2:\"id\";s:3:\"150\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:149;a:11:{s:2:\"id\";s:3:\"149\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;i:4;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:148;a:11:{s:2:\"id\";s:3:\"148\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;i:4;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:147;a:11:{s:2:\"id\";s:3:\"147\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:146;a:11:{s:2:\"id\";s:3:\"146\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;s:2:\"18\";i:1;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:145;a:11:{s:2:\"id\";s:3:\"145\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:144;a:11:{s:2:\"id\";s:3:\"144\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;s:2:\"18\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:143;a:11:{s:2:\"id\";s:3:\"143\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:142;a:11:{s:2:\"id\";s:3:\"142\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:141;a:11:{s:2:\"id\";s:3:\"141\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:140;a:11:{s:2:\"id\";s:3:\"140\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:139;a:11:{s:2:\"id\";s:3:\"139\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:138;a:11:{s:2:\"id\";s:3:\"138\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:137;a:11:{s:2:\"id\";s:3:\"137\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:136;a:11:{s:2:\"id\";s:3:\"136\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:135;a:11:{s:2:\"id\";s:3:\"135\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:134;a:11:{s:2:\"id\";s:3:\"134\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:133;a:11:{s:2:\"id\";s:3:\"133\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:132;a:11:{s:2:\"id\";s:3:\"132\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:131;a:11:{s:2:\"id\";s:3:\"131\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:130;a:11:{s:2:\"id\";s:3:\"130\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:129;a:11:{s:2:\"id\";s:3:\"129\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:128;a:11:{s:2:\"id\";s:3:\"128\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:127;a:11:{s:2:\"id\";s:3:\"127\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:126;a:11:{s:2:\"id\";s:3:\"126\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;i:5;i:1;s:1:\"3\";i:2;s:1:\"2\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:125;a:11:{s:2:\"id\";s:3:\"125\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;i:1;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:124;a:11:{s:2:\"id\";s:3:\"124\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;s:2:\"18\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:123;a:11:{s:2:\"id\";s:3:\"123\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;s:2:\"18\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:122;a:11:{s:2:\"id\";s:3:\"122\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;i:5;i:1;s:1:\"3\";i:2;s:1:\"2\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:121;a:11:{s:2:\"id\";s:3:\"121\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;s:2:\"18\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:120;a:11:{s:2:\"id\";s:3:\"120\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:119;a:11:{s:2:\"id\";s:3:\"119\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;s:2:\"18\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:118;a:11:{s:2:\"id\";s:3:\"118\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;s:2:\"18\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:117;a:11:{s:2:\"id\";s:3:\"117\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;s:2:\"18\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:116;a:11:{s:2:\"id\";s:3:\"116\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:115;a:11:{s:2:\"id\";s:3:\"115\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:114;a:11:{s:2:\"id\";s:3:\"114\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:113;a:11:{s:2:\"id\";s:3:\"113\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;s:2:\"23\";i:1;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:112;a:11:{s:2:\"id\";s:3:\"112\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:111;a:11:{s:2:\"id\";s:3:\"111\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;i:24;i:1;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:110;a:11:{s:2:\"id\";s:3:\"110\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;i:20;i:1;s:2:\"22\";i:2;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:109;a:11:{s:2:\"id\";s:3:\"109\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;s:2:\"22\";i:1;s:2:\"19\";i:2;s:2:\"23\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:108;a:11:{s:2:\"id\";s:3:\"108\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;i:22;i:1;s:2:\"19\";i:2;s:2:\"21\";i:3;s:2:\"23\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:107;a:11:{s:2:\"id\";s:3:\"107\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;i:24;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:106;a:11:{s:2:\"id\";s:3:\"106\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:105;a:11:{s:2:\"id\";s:3:\"105\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;i:20;i:1;s:2:\"22\";i:2;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:104;a:11:{s:2:\"id\";s:3:\"104\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;s:2:\"22\";i:1;s:2:\"19\";i:2;s:2:\"23\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:103;a:11:{s:2:\"id\";s:3:\"103\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:102;a:11:{s:2:\"id\";s:3:\"102\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:101;a:11:{s:2:\"id\";s:3:\"101\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;i:20;i:1;s:2:\"22\";i:2;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:100;a:11:{s:2:\"id\";s:3:\"100\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;s:2:\"22\";i:1;s:2:\"19\";i:2;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:99;a:11:{s:2:\"id\";s:2:\"99\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;i:20;i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:98;a:11:{s:2:\"id\";s:2:\"98\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;i:21;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:97;a:11:{s:2:\"id\";s:2:\"97\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;s:2:\"22\";i:1;s:2:\"21\";i:2;s:2:\"23\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:96;a:11:{s:2:\"id\";s:2:\"96\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:95;a:11:{s:2:\"id\";s:2:\"95\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:94;a:11:{s:2:\"id\";s:2:\"94\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:93;a:11:{s:2:\"id\";s:2:\"93\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:92;a:11:{s:2:\"id\";s:2:\"92\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;s:2:\"22\";i:1;s:2:\"21\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:91;a:11:{s:2:\"id\";s:2:\"91\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;i:22;i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:90;a:11:{s:2:\"id\";s:2:\"90\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;i:22;i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:89;a:11:{s:2:\"id\";s:2:\"89\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;i:22;i:1;s:2:\"19\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:88;a:11:{s:2:\"id\";s:2:\"88\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;s:2:\"18\";i:1;s:1:\"1\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:87;a:11:{s:2:\"id\";s:2:\"87\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:86;a:11:{s:2:\"id\";s:2:\"86\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:85;a:11:{s:2:\"id\";s:2:\"85\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;i:5;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:84;a:11:{s:2:\"id\";s:2:\"84\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:83;a:11:{s:2:\"id\";s:2:\"83\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;i:16;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:82;a:11:{s:2:\"id\";s:2:\"82\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:81;a:11:{s:2:\"id\";s:2:\"81\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:80;a:11:{s:2:\"id\";s:2:\"80\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;s:2:\"18\";i:1;s:1:\"1\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:79;a:11:{s:2:\"id\";s:2:\"79\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:78;a:11:{s:2:\"id\";s:2:\"78\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;s:2:\"18\";i:1;s:1:\"1\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:77;a:11:{s:2:\"id\";s:2:\"77\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:76;a:11:{s:2:\"id\";s:2:\"76\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;i:16;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:75;a:11:{s:2:\"id\";s:2:\"75\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:74;a:11:{s:2:\"id\";s:2:\"74\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:73;a:11:{s:2:\"id\";s:2:\"73\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;i:5;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:72;a:11:{s:2:\"id\";s:2:\"72\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:71;a:11:{s:2:\"id\";s:2:\"71\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:70;a:11:{s:2:\"id\";s:2:\"70\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:69;a:11:{s:2:\"id\";s:2:\"69\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:68;a:11:{s:2:\"id\";s:2:\"68\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:67;a:11:{s:2:\"id\";s:2:\"67\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:66;a:11:{s:2:\"id\";s:2:\"66\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:65;a:11:{s:2:\"id\";s:2:\"65\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:64;a:11:{s:2:\"id\";s:2:\"64\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:63;a:11:{s:2:\"id\";s:2:\"63\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:62;a:11:{s:2:\"id\";s:2:\"62\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:49;a:11:{s:2:\"id\";s:2:\"49\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;i:18;i:1;s:2:\"16\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:48;a:11:{s:2:\"id\";s:2:\"48\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;i:1;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:47;a:11:{s:2:\"id\";s:2:\"47\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:46;a:11:{s:2:\"id\";s:2:\"46\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;s:1:\"3\";i:1;s:1:\"1\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:45;a:11:{s:2:\"id\";s:2:\"45\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;i:1;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:44;a:11:{s:2:\"id\";s:2:\"44\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:43;a:11:{s:2:\"id\";s:2:\"43\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:42;a:11:{s:2:\"id\";s:2:\"42\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:41;a:11:{s:2:\"id\";s:2:\"41\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:40;a:11:{s:2:\"id\";s:2:\"40\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;i:1;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:39;a:11:{s:2:\"id\";s:2:\"39\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;i:5;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:38;a:11:{s:2:\"id\";s:2:\"38\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;i:18;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:37;a:11:{s:2:\"id\";s:2:\"37\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:36;a:11:{s:2:\"id\";s:2:\"36\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:35;a:11:{s:2:\"id\";s:2:\"35\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;i:1;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:34;a:11:{s:2:\"id\";s:2:\"34\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:33;a:11:{s:2:\"id\";s:2:\"33\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;i:1;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:32;a:11:{s:2:\"id\";s:2:\"32\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:31;a:11:{s:2:\"id\";s:2:\"31\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:30;a:11:{s:2:\"id\";s:2:\"30\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;i:1;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:29;a:11:{s:2:\"id\";s:2:\"29\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;i:1;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:28;a:11:{s:2:\"id\";s:2:\"28\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;i:5;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:27;a:11:{s:2:\"id\";s:2:\"27\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;i:5;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:26;a:11:{s:2:\"id\";s:2:\"26\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;i:5;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:25;a:11:{s:2:\"id\";s:2:\"25\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;i:5;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:24;a:11:{s:2:\"id\";s:2:\"24\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;i:5;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:23;a:11:{s:2:\"id\";s:2:\"23\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;i:5;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:22;a:11:{s:2:\"id\";s:2:\"22\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;i:5;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:21;a:11:{s:2:\"id\";s:2:\"21\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;i:5;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:20;a:11:{s:2:\"id\";s:2:\"20\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;i:5;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:11;a:11:{s:2:\"id\";s:2:\"11\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;i:4;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:10;a:11:{s:2:\"id\";s:2:\"10\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;i:3;}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:9;a:11:{s:2:\"id\";s:1:\"9\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:8;a:11:{s:2:\"id\";s:1:\"8\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;i:2;i:1;s:1:\"3\";}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}}s:4:\"tags\";N;}", "no");
INSERT INTO `wp_options` VALUES("57621", "rs_tables_created", "1", "yes");
INSERT INTO `wp_options` VALUES("57623", "revslider-global-settings", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57624", "layerslider_update_info", "O:8:\"stdClass\":4:{s:5:\"basic\";O:8:\"stdClass\":9:{s:4:\"slug\";s:11:\"LayerSlider\";s:6:\"plugin\";s:27:\"LayerSlider/layerslider.php\";s:7:\"version\";s:5:\"6.7.1\";s:5:\"icons\";a:3:{s:2:\"1x\";s:79:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-128x128.png\";s:2:\"2x\";s:79:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png\";s:7:\"default\";s:79:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png\";}s:7:\"banners\";a:3:{s:3:\"low\";s:84:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-772x250.png\";s:4:\"high\";s:85:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png\";s:7:\"default\";s:85:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png\";}s:3:\"url\";s:79:\"http://codecanyon.net/item/layerslider-wp-the-wordpress-parallax-slider/1362246\";s:7:\"package\";s:64:\"https://repo.the7.io/plugins/download.php?code=&item=LayerSlider\";s:6:\"tested\";s:5:\"4.9.2\";s:14:\"upgrade_notice\";s:42:\"This release includes important bug fixes.\";}s:4:\"full\";O:8:\"stdClass\":19:{s:4:\"name\";s:14:\"LayerSlider WP\";s:8:\"homepage\";s:72:\"http://kreaturamedia.com/layerslider-responsive-wordpress-slider-plugin/\";s:7:\"version\";s:5:\"6.7.1\";s:12:\"last_updated\";s:10:\"2018-01-24\";s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:5:\"4.9.2\";s:6:\"rating\";s:2:\"95\";s:11:\"num_ratings\";i:2806;s:14:\"upgrade_notice\";a:3:{s:6:\"stable\";s:42:\"This release includes important bug fixes.\";s:4:\"beta\";s:42:\"This release includes important bug fixes.\";s:4:\"edge\";s:42:\"This release includes important bug fixes.\";}s:6:\"author\";s:80:\"<a href=\"http://codecanyon.net/user/kreatura\" target=\"_blank\">Kreatura Media</a>\";s:3:\"url\";s:79:\"http://codecanyon.net/item/layerslider-wp-the-wordpress-parallax-slider/1362246\";s:8:\"external\";b:1;s:9:\"file_name\";s:10:\"plugin.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:79:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-128x128.png\";s:2:\"2x\";s:79:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png\";s:7:\"default\";s:79:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png\";}s:7:\"banners\";a:3:{s:3:\"low\";s:84:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-772x250.png\";s:4:\"high\";s:85:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png\";s:7:\"default\";s:85:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png\";}s:8:\"sections\";a:3:{s:9:\"changelog\";s:130:\"<p style=\"text-align: justify;\">\n	See the release log in the \'LayerSlider News\' section at the bottom of its main admin page.\n</p>\";s:12:\"installation\";s:456:\"<p style=\"text-align: justify;\">\n	Updating the plugin won\'t touch your sliders and settings and the new version always has backward compatibility,\n	so you don\'t have to worry about losing your work. Depending of the default settings, you may\n	have to adjust some options to get the new features. If you are experience unwanted behavior changes, it is always a\n	good idea to check your settings, there are probably new options to control these changes.\n</p>\";s:3:\"faq\";s:595:\"<p style=\"text-align: justify;\">\n	Before contacting us, please read our <a href=\"http://support.kreaturamedia.com/faq/4/layerslider-for-wordpress/\" target=\"_blank\">online FAQs</a>, or check the built-in documentation in the contextual Help menu on the top-right corner of the page. Please note, these Help menus are contextual, they will show you different content on different pages.\n</p>\n\n<p style=\"text-align: justify;\">\n	If you couldn\'t find an answer for your question, you can write us a comment at the Item\'s page on CodeCanyon, or send us an email from our CodeCanyon profile page.\n</p>\n\";}s:4:\"slug\";s:11:\"LayerSlider\";s:7:\"package\";s:64:\"https://repo.the7.io/plugins/download.php?code=&item=LayerSlider\";s:13:\"download_link\";s:64:\"https://repo.the7.io/plugins/download.php?code=&item=LayerSlider\";}s:15:\"_latest_version\";s:5:\"6.7.1\";s:7:\"checked\";i:1522264168;}", "yes");
INSERT INTO `wp_options` VALUES("57626", "revslider_update_version", "5.2.5.5", "yes");
INSERT INTO `wp_options` VALUES("57631", "widget_rev-slider-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("57636", "ultimate_row", "enable", "yes");
INSERT INTO `wp_options` VALUES("57637", "ultimate_animation", "disable", "yes");
INSERT INTO `wp_options` VALUES("57649", "revslider-valid", "false", "yes");
INSERT INTO `wp_options` VALUES("57650", "revslider-valid-notice", "false", "yes");
INSERT INTO `wp_options` VALUES("57651", "the7-revslider-code", "02d45dc7-6e9f-4035-a495-3efe61a72953", "yes");
INSERT INTO `wp_options` VALUES("57652", "layerslider-authorized-site", "", "yes");
INSERT INTO `wp_options` VALUES("57653", "layerslider-purchase-code", "", "yes");
INSERT INTO `wp_options` VALUES("57654", "layerslider-activated_by_the7", "", "yes");
INSERT INTO `wp_options` VALUES("57659", "go_pricing_table_settings", "a:2:{s:5:\"admin\";a:2:{s:4:\"ajax\";i:1;s:10:\"capability\";s:14:\"manage_options\";}s:8:\"currency\";a:1:{i:0;a:5:{s:8:\"currency\";s:3:\"USD\";s:8:\"position\";s:4:\"left\";s:12:\"thousand-sep\";s:1:\",\";s:11:\"decimal-sep\";s:1:\".\";s:10:\"decimal-no\";i:2;}}}", "yes");
INSERT INTO `wp_options` VALUES("57661", "bsf_local_transient", "1522230997", "yes");
INSERT INTO `wp_options` VALUES("57665", "brainstrom_products", "a:1:{s:7:\"plugins\";a:2:{i:14058953;a:7:{s:8:\"template\";s:27:\"convertplug/convertplug.php\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:8:\"14058953\";s:12:\"product_name\";s:17:\"The7 Convert Plus\";s:7:\"version\";s:5:\"3.2.0\";s:12:\"purchase_key\";s:0:\"\";s:6:\"status\";s:0:\"\";}i:6892199;a:7:{s:8:\"template\";s:43:\"Ultimate_VC_Addons-x/Ultimate_VC_Addons.php\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:7:\"6892199\";s:12:\"product_name\";s:40:\"The7 Ultimate Addons for Visual Composer\";s:7:\"version\";s:7:\"3.16.21\";s:12:\"purchase_key\";s:0:\"\";s:6:\"status\";s:0:\"\";}}}", "yes");
INSERT INTO `wp_options` VALUES("57667", "bsf_local_transient_bundled", "1522230998", "yes");
INSERT INTO `wp_options` VALUES("57670", "brainstrom_bundled_products", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("57672", "bsf_skip_braisntorm_menu", "", "no");
INSERT INTO `wp_options` VALUES("57673", "ultimate_updater", "enabled", "yes");
INSERT INTO `wp_options` VALUES("57674", "ultimate_constants", "a:3:{s:24:\"ULTIMATE_NO_UPDATE_CHECK\";b:0;s:28:\"ULTIMATE_NO_EDIT_PAGE_NOTICE\";b:0;s:30:\"ULTIMATE_NO_PLUGIN_PAGE_NOTICE\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("57675", "ultimate_modules", "a:41:{i:0;s:18:\"ultimate_animation\";i:1;s:16:\"ultimate_buttons\";i:2;s:18:\"ultimate_countdown\";i:3;s:17:\"ultimate_flip_box\";i:4;s:20:\"ultimate_google_maps\";i:5;s:22:\"ultimate_google_trends\";i:6;s:17:\"ultimate_headings\";i:7;s:22:\"ultimate_icon_timeline\";i:8;s:17:\"ultimate_info_box\";i:9;s:20:\"ultimate_info_circle\";i:10;s:18:\"ultimate_info_list\";i:11;s:20:\"ultimate_info_tables\";i:12;s:28:\"ultimate_interactive_banners\";i:13;s:29:\"ultimate_interactive_banner_2\";i:14;s:15:\"ultimate_modals\";i:15;s:17:\"ultimate_parallax\";i:16;s:23:\"ultimate_pricing_tables\";i:17;s:15:\"ultimate_spacer\";i:18;s:22:\"ultimate_stats_counter\";i:19;s:20:\"ultimate_swatch_book\";i:20;s:14:\"ultimate_icons\";i:21;s:18:\"ultimate_list_icon\";i:22;s:17:\"ultimate_carousel\";i:23;s:18:\"ultimate_fancytext\";i:24;s:22:\"ultimate_highlight_box\";i:25;s:20:\"ultimate_info_banner\";i:26;s:15:\"ultimate_ihover\";i:27;s:16:\"ultimate_hotspot\";i:28;s:21:\"ultimate_video_banner\";i:29;s:11:\"woocomposer\";i:30;s:20:\"ultimate_dual_button\";i:31;s:13:\"ultimate_link\";i:32;s:19:\"ultimate_fancy_text\";i:33;s:23:\"ultimate_hightlight_box\";i:34;s:20:\"ultimate_content_box\";i:35;s:24:\"ultimate_image_separator\";i:36;s:27:\"ultimate_expandable_section\";i:37;s:12:\"ultimate_tab\";i:38;s:23:\"ultimate_sticky_section\";i:39;s:13:\"ultimate_team\";i:40;s:21:\"ultimate_range_slider\";}", "yes");
INSERT INTO `wp_options` VALUES("57676", "ls-latest-version", "6.7.1", "yes");
INSERT INTO `wp_options` VALUES("57678", "cp_new_bg_type", "1", "yes");
INSERT INTO `wp_options` VALUES("57679", "smile_fonts", "a:1:{s:8:\"Defaults\";a:4:{s:7:\"include\";s:20:\"smile_fonts/Defaults\";s:6:\"folder\";s:20:\"smile_fonts/Defaults\";s:5:\"style\";s:21:\"Defaults/Defaults.css\";s:6:\"config\";s:11:\"charmap.php\";}}", "yes");
INSERT INTO `wp_options` VALUES("57688", "cp_show_rebrand_notice", "no", "yes");
INSERT INTO `wp_options` VALUES("57784", "revslider-update-check", "1522257147", "yes");
INSERT INTO `wp_options` VALUES("57785", "revslider_update_info", "O:8:\"stdClass\":0:{}", "yes");
INSERT INTO `wp_options` VALUES("57867", "theme_mods_dt-the7-x", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1522263760;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:10:\"nav_menu-4\";i:1;s:8:\"search-3\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("57957", "the7_options_saved", "1", "no");
INSERT INTO `wp_options` VALUES("58128", "fresh_site", "0", "yes");
INSERT INTO `wp_options` VALUES("76435", "ai1wm_secret_key", "efY9kMyhMCGp", "yes");
INSERT INTO `wp_options` VALUES("82498", "the7_db_version", "6.4.0", "yes");
INSERT INTO `wp_options` VALUES("85708", "ai1ec_render_css", "http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/all-in-one-event-calendar/cache/35d610c2_ai1ec_parsed_css.css", "yes");
INSERT INTO `wp_options` VALUES("85714", "gform_sticky_admin_messages", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("92340", "theme_mods_astra", "a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:20;}s:18:\"custom_css_post_id\";i:15492;s:11:\"custom_logo\";i:15668;}", "yes");
INSERT INTO `wp_options` VALUES("92341", "astra-settings", "a:84:{s:24:\"astra-addon-auto-version\";s:5:\"1.3.2\";s:18:\"theme-auto-version\";s:5:\"1.3.3\";s:22:\"ast-header-retina-logo\";s:86:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/MainLogo-Lg.png\";s:18:\"display-site-title\";b:0;s:19:\"site-content-layout\";s:12:\"page-builder\";s:26:\"single-page-content-layout\";s:7:\"default\";s:14:\"header-layouts\";s:20:\"header-main-layout-1\";s:21:\"header-main-sep-color\";s:7:\"#fde6f1\";s:17:\"footer-sml-layout\";s:19:\"footer-sml-layout-2\";s:27:\"footer-sml-section-1-credit\";s:66:\"Copyright Â© [current_year] [site_title] | Powered by [site_title]\";s:20:\"footer-sml-section-2\";s:6:\"custom\";s:27:\"footer-sml-section-2-credit\";s:19:\"Privacy &amp; Legal\";s:24:\"footer-sml-divider-color\";s:7:\"#fde6f1\";s:10:\"link-color\";s:7:\"#81d742\";s:10:\"text-color\";s:7:\"#000000\";s:28:\"site-layout-outside-bg-color\";s:7:\"#ffffff\";s:12:\"link-h-color\";s:7:\"#ff6a00\";s:16:\"body-font-family\";s:21:\"\'Poppins\', sans-serif\";s:16:\"body-font-weight\";s:3:\"400\";s:20:\"headings-font-family\";s:21:\"\'Poppins\', sans-serif\";s:20:\"headings-font-weight\";s:3:\"700\";s:23:\"headings-text-transform\";s:4:\"none\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";s:3:\"100\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"45\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";s:2:\"37\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";s:2:\"28\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h4\";a:6:{s:7:\"desktop\";s:2:\"21\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h5\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"font-family-primary-menu\";s:21:\"\'Poppins\', sans-serif\";s:24:\"font-weight-primary-menu\";s:3:\"700\";s:27:\"text-transform-primary-menu\";s:10:\"capitalize\";s:22:\"font-size-primary-menu\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:14:\"font-family-h1\";s:24:\"\'Amatic SC\', handwriting\";s:14:\"font-weight-h1\";s:3:\"700\";s:17:\"text-transform-h1\";s:9:\"uppercase\";s:14:\"font-family-h2\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h2\";s:3:\"700\";s:14:\"font-family-h3\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h3\";s:3:\"700\";s:14:\"font-family-h4\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h4\";s:3:\"700\";s:17:\"text-transform-h2\";s:9:\"uppercase\";s:14:\"font-family-h5\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h5\";s:3:\"700\";s:14:\"font-family-h6\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h6\";s:3:\"700\";s:17:\"text-transform-h6\";s:9:\"uppercase\";s:26:\"font-family-footer-content\";s:21:\"\'Poppins\', sans-serif\";s:26:\"font-weight-footer-content\";s:3:\"400\";s:29:\"text-transform-footer-content\";s:4:\"none\";s:24:\"font-size-footer-content\";a:6:{s:7:\"desktop\";s:2:\"15\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"footer-color\";s:7:\"#7a7a7a\";s:17:\"footer-link-color\";s:7:\"#7a7a7a\";s:19:\"footer-link-h-color\";s:7:\"#ee0979\";s:15:\"footer-bg-color\";s:7:\"#ffffff\";s:12:\"button-color\";s:7:\"#ffffff\";s:15:\"button-bg-color\";s:7:\"#61ce70\";s:13:\"button-radius\";i:50;s:16:\"button-v-padding\";i:14;s:16:\"button-h-padding\";i:60;s:23:\"above-header-merge-menu\";b:1;s:23:\"below-header-merge-menu\";b:1;s:22:\"header-main-rt-section\";s:9:\"text-html\";s:27:\"header-main-rt-section-html\";s:118:\"<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" style=\"margin-top: -50px\"><button>Donate</button></a>\n\n\";s:18:\"font-family-button\";s:21:\"\'Poppins\', sans-serif\";s:18:\"font-weight-button\";s:3:\"700\";s:21:\"text-transform-button\";s:9:\"uppercase\";s:16:\"font-size-button\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:11:\"theme-color\";s:7:\"#81d742\";s:19:\"site-sidebar-layout\";s:10:\"no-sidebar\";s:13:\"header-bg-obj\";a:1:{s:16:\"background-color\";s:0:\"\";}s:14:\"content-bg-obj\";a:1:{s:16:\"background-color\";s:7:\"#ffffff\";}s:17:\"footer-adv-bg-obj\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:5:\"cover\";s:21:\"background-attachment\";s:6:\"scroll\";}s:13:\"footer-bg-obj\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:26:\"site-layout-outside-bg-obj\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:32:\"ast-header-responsive-logo-width\";a:3:{s:7:\"desktop\";s:3:\"120\";s:6:\"tablet\";s:2:\"93\";s:6:\"mobile\";s:2:\"90\";}s:24:\"header-main-layout-width\";s:4:\"full\";s:18:\"site-content-width\";i:1295;s:22:\"header-main-menu-align\";s:6:\"inline\";s:27:\"header-display-outside-menu\";b:0;s:10:\"footer-adv\";s:8:\"layout-4\";s:19:\"disable-primary-nav\";b:0;s:15:\"header-main-sep\";i:0;s:17:\"button-bg-h-color\";s:7:\"#ff6a00\";}", "yes");
INSERT INTO `wp_options` VALUES("92370", "elementor_version", "2.0.12", "yes");
INSERT INTO `wp_options` VALUES("92371", "_elementor_installed_time", "1525210122", "yes");
INSERT INTO `wp_options` VALUES("92372", "elementor_remote_info_library", "a:2:{s:10:\"categories\";a:20:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:8:\"services\";i:14;s:11:\"single page\";i:15;s:11:\"single post\";i:16;s:5:\"stats\";i:17;s:9:\"subscribe\";i:18;s:4:\"team\";i:19;s:12:\"testimonials\";}s:9:\"templates\";a:423:{i:0;a:14:{s:2:\"id\";s:4:\"5525\";s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:4:\"5533\";s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:2;a:14:{s:2:\"id\";s:4:\"5575\";s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"5615\";s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"5624\";s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"5684\";s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"5693\";s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:4:\"5703\";s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:8;a:14:{s:2:\"id\";s:4:\"5711\";s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:4:\"5719\";s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;a:14:{s:2:\"id\";s:4:\"5729\";s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:4:\"5737\";s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{s:2:\"id\";s:4:\"5746\";s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;a:14:{s:2:\"id\";s:4:\"5755\";s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"5764\";s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"5773\";s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"5783\";s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"5792\";s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:4:\"5801\";s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{s:2:\"id\";s:4:\"5811\";s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;a:14:{s:2:\"id\";s:4:\"5820\";s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;a:14:{s:2:\"id\";s:4:\"5828\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;a:14:{s:2:\"id\";s:4:\"5836\";s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"5844\";s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"5852\";s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:4:\"5947\";s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{s:2:\"id\";s:4:\"5956\";s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:27;a:14:{s:2:\"id\";s:4:\"5963\";s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{s:2:\"id\";s:4:\"5974\";s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;a:14:{s:2:\"id\";s:4:\"5983\";s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:4:\"5991\";s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;a:14:{s:2:\"id\";s:4:\"5999\";s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{s:2:\"id\";s:4:\"6008\";s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;a:14:{s:2:\"id\";s:4:\"6027\";s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;a:14:{s:2:\"id\";s:4:\"6036\";s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:4:\"6044\";s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{s:2:\"id\";s:4:\"6053\";s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{s:2:\"id\";s:4:\"6063\";s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;a:14:{s:2:\"id\";s:4:\"6071\";s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;a:14:{s:2:\"id\";s:4:\"6079\";s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"6089\";s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"6097\";s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"6106\";s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:4:\"6114\";s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:44;a:14:{s:2:\"id\";s:4:\"6122\";s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:4:\"6135\";s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:46;a:14:{s:2:\"id\";s:4:\"6144\";s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:4:\"6152\";s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:4:\"6162\";s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;a:14:{s:2:\"id\";s:4:\"6170\";s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:4:\"6178\";s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:4:\"6186\";s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{s:2:\"id\";s:4:\"6196\";s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:4:\"6204\";s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:54;a:14:{s:2:\"id\";s:4:\"6212\";s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:4:\"6220\";s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:4:\"6230\";s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;a:14:{s:2:\"id\";s:4:\"6239\";s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:4:\"6249\";s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;a:14:{s:2:\"id\";s:4:\"6258\";s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"6266\";s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"6274\";s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:4:\"6017\";s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;a:14:{s:2:\"id\";s:4:\"4826\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;a:14:{s:2:\"id\";s:4:\"4835\";s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:4:\"4843\";s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:66;a:14:{s:2:\"id\";s:4:\"4854\";s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:4:\"4863\";s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{s:2:\"id\";s:4:\"4871\";s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;a:14:{s:2:\"id\";s:4:\"4880\";s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:4:\"4889\";s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:71;a:14:{s:2:\"id\";s:4:\"4897\";s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:4:\"4905\";s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;a:14:{s:2:\"id\";s:4:\"4913\";s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{s:2:\"id\";s:4:\"4921\";s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;a:14:{s:2:\"id\";s:4:\"4929\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;a:14:{s:2:\"id\";s:4:\"4939\";s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";s:4:\"4947\";s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{s:2:\"id\";s:4:\"4955\";s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{s:2:\"id\";s:4:\"4963\";s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;a:14:{s:2:\"id\";s:4:\"4971\";s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{s:2:\"id\";s:4:\"4979\";s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;a:14:{s:2:\"id\";s:4:\"4987\";s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"4995\";s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:84;a:14:{s:2:\"id\";s:4:\"5007\";s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:4:\"5019\";s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{s:2:\"id\";s:4:\"5027\";s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:4:\"5037\";s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:88;a:14:{s:2:\"id\";s:4:\"5057\";s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:4:\"5071\";s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;a:14:{s:2:\"id\";s:4:\"5082\";s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:4:\"5090\";s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:4:\"5098\";s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{s:2:\"id\";s:4:\"5107\";s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;a:14:{s:2:\"id\";s:4:\"5115\";s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"5125\";s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:4:\"5133\";s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;a:14:{s:2:\"id\";s:4:\"5141\";s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:4:\"5149\";s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;a:14:{s:2:\"id\";s:4:\"5542\";s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:4:\"5550\";s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;a:14:{s:2:\"id\";s:4:\"5558\";s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:4:\"5567\";s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;a:14:{s:2:\"id\";s:4:\"5583\";s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:4:\"5591\";s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;a:14:{s:2:\"id\";s:4:\"5599\";s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"5607\";s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"5634\";s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"5642\";s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"5650\";s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"5658\";s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"5667\";s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"5675\";s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"5860\";s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"5869\";s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"5877\";s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"5885\";s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"5893\";s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"5904\";s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:4:\"5912\";s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{s:2:\"id\";s:4:\"5921\";s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"5930\";s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"5939\";s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:4:\"7596\";s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:124;a:14:{s:2:\"id\";s:4:\"7615\";s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:4:\"7627\";s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{s:2:\"id\";s:4:\"7638\";s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:4:\"7663\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2.png\";s:12:\"tmpl_created\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"single\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;a:14:{s:2:\"id\";s:4:\"7650\";s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1.png\";s:12:\"tmpl_created\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"single\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:4:\"7686\";s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:130;a:14:{s:2:\"id\";s:4:\"4676\";s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:4:\"7997\";s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{s:2:\"id\";s:4:\"7982\";s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:4:\"7959\";s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:134;a:14:{s:2:\"id\";s:4:\"7950\";s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:4:\"7937\";s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{s:2:\"id\";s:4:\"7927\";s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:4:\"7917\";s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{s:2:\"id\";s:4:\"7904\";s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"7837\";s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"7852\";s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:4:\"7862\";s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"7871\";s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:4:\"7884\";s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"7892\";s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:4:\"4212\";s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"7825\";s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:4:\"4227\";s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"7812\";s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:4:\"4235\";s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"7724\";s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"4244\";s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"7734\";s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"4252\";s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"7771\";s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"4260\";s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"7787\";s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"4268\";s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"7801\";s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:4:\"4276\";s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{s:2:\"id\";s:4:\"7754\";s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:4:\"4284\";s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"7713\";s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:4:\"4293\";s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"7744\";s:5:\"title\";s:8:\"header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:4:\"4302\";s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"8489\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/05/single_post_2_full.jpg\";s:12:\"tmpl_created\";s:10:\"1526227514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/single-post-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:4:\"4313\";s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"8523\";s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";s:10:\"1526415291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:4:\"4324\";s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{s:2:\"id\";s:4:\"8524\";s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";s:10:\"1526415337\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"4332\";s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"8525\";s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";s:10:\"1526415374\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"4341\";s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"8513\";s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";s:10:\"1526415417\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:4:\"4349\";s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{s:2:\"id\";s:4:\"8512\";s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";s:10:\"1526415449\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:4:\"4357\";s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"8526\";s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";s:10:\"1526415474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:4:\"4368\";s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"8505\";s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";s:10:\"1526415501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:4:\"4376\";s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{s:2:\"id\";s:4:\"8511\";s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";s:10:\"1526415528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:4:\"4391\";s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"8514\";s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";s:10:\"1526415558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:4:\"4400\";s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"8676\";s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1527682423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:187;a:14:{s:2:\"id\";s:4:\"4411\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"8678\";s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1527682780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:4:\"4420\";s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"8679\";s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1527682847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:4:\"4428\";s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{s:2:\"id\";s:4:\"8680\";s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1527682896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"4436\";s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:4:\"8681\";s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1527682969\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"4444\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:4:\"8682\";s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1527683026\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"4452\";s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"8703\";s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1527683072\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:199;a:14:{s:2:\"id\";s:4:\"4460\";s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"8961\";s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1528639909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"4468\";s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:4:\"8969\";s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1528700014\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";s:4:\"4476\";s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:4:\"8973\";s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1528700205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";s:4:\"4484\";s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:4:\"8977\";s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1528700326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"4492\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:4:\"8981\";s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1528700484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"4500\";s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"8985\";s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1528700612\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:4:\"4509\";s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{s:2:\"id\";s:4:\"8989\";s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1528701063\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:213;a:14:{s:2:\"id\";s:4:\"4521\";s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:4:\"8996\";s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1528701290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"4529\";s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"9001\";s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1528701433\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"4537\";s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"4545\";s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"4553\";s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"4562\";s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"4572\";s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"4580\";s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"4589\";s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"4597\";s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"4605\";s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"4613\";s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"4690\";s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"4698\";s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"4706\";s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"4718\";s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"4727\";s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:4:\"4736\";s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{s:2:\"id\";s:4:\"4746\";s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"4759\";s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"4770\";s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:236;a:14:{s:2:\"id\";s:4:\"4781\";s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{s:2:\"id\";s:4:\"4793\";s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:4:\"4801\";s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:239;a:14:{s:2:\"id\";s:4:\"4809\";s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{s:2:\"id\";s:4:\"4818\";s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"5045\";s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"5157\";s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"5165\";s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"5173\";s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"5181\";s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"5189\";s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"5198\";s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"5206\";s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"5214\";s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"5222\";s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"5230\";s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"5238\";s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:4:\"5249\";s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"5257\";s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"5266\";s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"5275\";s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"5283\";s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"5290\";s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:4:\"5298\";s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"5306\";s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:4:\"5315\";s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"5324\";s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:4:\"5333\";s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"5341\";s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:4:\"5349\";s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"5357\";s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"5368\";s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"5381\";s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:4:\"5389\";s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"5397\";s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"5405\";s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"5413\";s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"5421\";s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"5429\";s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"5438\";s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"5447\";s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"5455\";s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{s:2:\"id\";s:4:\"5464\";s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{s:2:\"id\";s:4:\"5472\";s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:4:\"5480\";s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{s:2:\"id\";s:4:\"5488\";s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{s:2:\"id\";s:4:\"5496\";s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"5504\";s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"5515\";s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:1:\"2\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:1:\"5\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:1:\"8\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"10\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"11\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"12\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:2:\"13\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-â€“-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-â€“-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:307;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-â€“-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-â€“-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:327;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:329;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:331;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:344;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-â€“-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:351;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:353;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:357;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:360;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:368;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:381;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:383;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:13:\"Coming Soon 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:13:\"Coming Soon 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:393;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:396;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"113\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:399;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:400;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-â€“-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:402;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:404;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:405;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:406;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:407;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:408;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:412;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:414;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:416;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:417;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:419;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}", "no");
INSERT INTO `wp_options` VALUES("92373", "elementor_remote_info_feed_data", "a:3:{i:0;a:5:{s:5:\"title\";s:36:\"Introducing Single & Archive Builder\";s:7:\"excerpt\";s:234:\"Single & Archive builder lets you design blogs just like you always imagined. By visually designing your blog without code, you can complete projects lightning-fast, and get full control over your blog design right at your fingertips.\";s:7:\"created\";s:10:\"1527679763\";s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:117:\"https://elementor.com/single-archive-builder/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:46:\"Introducing Role Manager - Protect Your Design\";s:7:\"excerpt\";s:154:\"Role Manager is a new feature in Elementor Pro, allowing you to restrict access for certain user roles and never worry about a client ruining your design.\";s:7:\"created\";s:10:\"1525878898\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:107:\"https://elementor.com/role-manager/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:31:\"Header & Footer Builder Is Here\";s:7:\"excerpt\";s:223:\"Elementor now offers never-before-seen flexibility to visually design the header & footer areas, including Sticky Header, 25+ brand-new stunning header-footer blocks and full compatibility to virtually any WordPress theme. \";s:7:\"created\";s:10:\"1525078229\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:116:\"https://elementor.com/header-footer-builder/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}", "no");
INSERT INTO `wp_options` VALUES("92385", "widget_give_forms_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("92390", "give_install_pages_created", "1", "no");
INSERT INTO `wp_options` VALUES("92391", "give_site_address_before_migrate", "localhost/TestSICPage/wordpress", "yes");
INSERT INTO `wp_options` VALUES("92392", "_give_table_check", "1529423619", "yes");
INSERT INTO `wp_options` VALUES("92393", "astra_sites_import_data", "a:9:{s:2:\"id\";i:18342;s:23:\"astra-site-widgets-data\";O:8:\"stdClass\":1:{s:9:\"sidebar-1\";O:8:\"stdClass\":6:{s:8:\"search-2\";O:8:\"stdClass\":1:{s:5:\"title\";s:0:\"\";}s:14:\"recent-posts-2\";O:8:\"stdClass\":2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:17:\"recent-comments-2\";O:8:\"stdClass\":2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:10:\"archives-2\";O:8:\"stdClass\":3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"categories-2\";O:8:\"stdClass\":4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:6:\"meta-2\";O:8:\"stdClass\":1:{s:5:\"title\";s:0:\"\";}}}s:26:\"astra-site-customizer-data\";a:2:{s:14:\"astra-settings\";a:75:{s:24:\"astra-addon-auto-version\";s:5:\"1.3.2\";s:18:\"theme-auto-version\";s:5:\"1.3.1\";s:22:\"ast-header-retina-logo\";s:93:\"https://websitedemos.net/alex01/wp-content/uploads/sites/173/2018/02/logo-retina-free-img.png\";s:18:\"display-site-title\";b:0;s:19:\"site-content-layout\";s:12:\"page-builder\";s:26:\"single-page-content-layout\";s:7:\"default\";s:14:\"header-layouts\";s:20:\"header-main-layout-1\";s:21:\"header-main-sep-color\";s:7:\"#fde6f1\";s:17:\"footer-sml-layout\";s:19:\"footer-sml-layout-2\";s:27:\"footer-sml-section-1-credit\";s:66:\"Copyright Â© [current_year] [site_title] | Powered by [site_title]\";s:20:\"footer-sml-section-2\";s:6:\"custom\";s:27:\"footer-sml-section-2-credit\";s:19:\"Privacy &amp; Legal\";s:24:\"footer-sml-divider-color\";s:7:\"#fde6f1\";s:10:\"link-color\";s:7:\"#ee0979\";s:10:\"text-color\";s:7:\"#000000\";s:28:\"site-layout-outside-bg-color\";s:7:\"#ffffff\";s:12:\"link-h-color\";s:7:\"#ff6a00\";s:16:\"body-font-family\";s:21:\"\'Poppins\', sans-serif\";s:16:\"body-font-weight\";s:3:\"400\";s:20:\"headings-font-family\";s:21:\"\'Poppins\', sans-serif\";s:20:\"headings-font-weight\";s:3:\"700\";s:23:\"headings-text-transform\";s:4:\"none\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";s:3:\"100\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"45\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";s:2:\"37\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";s:2:\"28\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h4\";a:6:{s:7:\"desktop\";s:2:\"21\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h5\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"font-family-primary-menu\";s:21:\"\'Poppins\', sans-serif\";s:24:\"font-weight-primary-menu\";s:3:\"700\";s:27:\"text-transform-primary-menu\";s:10:\"capitalize\";s:22:\"font-size-primary-menu\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:14:\"font-family-h1\";s:24:\"\'Amatic SC\', handwriting\";s:14:\"font-weight-h1\";s:3:\"700\";s:17:\"text-transform-h1\";s:9:\"uppercase\";s:14:\"font-family-h2\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h2\";s:3:\"700\";s:14:\"font-family-h3\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h3\";s:3:\"700\";s:14:\"font-family-h4\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h4\";s:3:\"700\";s:17:\"text-transform-h2\";s:9:\"uppercase\";s:14:\"font-family-h5\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h5\";s:3:\"700\";s:14:\"font-family-h6\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-weight-h6\";s:3:\"700\";s:17:\"text-transform-h6\";s:9:\"uppercase\";s:26:\"font-family-footer-content\";s:21:\"\'Poppins\', sans-serif\";s:26:\"font-weight-footer-content\";s:3:\"400\";s:29:\"text-transform-footer-content\";s:4:\"none\";s:24:\"font-size-footer-content\";a:6:{s:7:\"desktop\";s:2:\"15\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"footer-color\";s:7:\"#7a7a7a\";s:17:\"footer-link-color\";s:7:\"#7a7a7a\";s:19:\"footer-link-h-color\";s:7:\"#ee0979\";s:15:\"footer-bg-color\";s:7:\"#ffffff\";s:12:\"button-color\";s:7:\"#ffffff\";s:15:\"button-bg-color\";s:7:\"#ee0979\";s:13:\"button-radius\";i:50;s:16:\"button-v-padding\";i:17;s:16:\"button-h-padding\";i:60;s:23:\"above-header-merge-menu\";b:1;s:23:\"below-header-merge-menu\";b:1;s:22:\"header-main-rt-section\";s:9:\"text-html\";s:27:\"header-main-rt-section-html\";s:21:\"<button>Give</button>\";s:18:\"font-family-button\";s:21:\"\'Poppins\', sans-serif\";s:18:\"font-weight-button\";s:3:\"700\";s:21:\"text-transform-button\";s:9:\"uppercase\";s:16:\"font-size-button\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:11:\"theme-color\";s:7:\"#ee0979\";s:19:\"site-sidebar-layout\";s:10:\"no-sidebar\";s:13:\"header-bg-obj\";a:1:{s:16:\"background-color\";s:0:\"\";}s:14:\"content-bg-obj\";a:1:{s:16:\"background-color\";s:7:\"#ffffff\";}s:17:\"footer-adv-bg-obj\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:5:\"cover\";s:21:\"background-attachment\";s:6:\"scroll\";}s:13:\"footer-bg-obj\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:26:\"site-layout-outside-bg-obj\";a:1:{s:16:\"background-color\";s:7:\"#ffffff\";}}s:10:\"custom-css\";s:0:\"\";}s:23:\"astra-site-options-data\";a:40:{s:30:\"woocommerce_product_attributes\";a:0:{}s:28:\"woocommerce_product_cat_list\";a:1:{s:0:\"\";a:4:{s:7:\"term_id\";N;s:4:\"name\";N;s:4:\"slug\";N;s:11:\"description\";N;}}s:23:\"woocommerce_product_cat\";a:2:{i:0;a:3:{s:4:\"slug\";N;s:12:\"thumbnail_id\";b:0;s:13:\"thumbnail_src\";s:0:\"\";}i:1;a:3:{s:4:\"slug\";N;s:12:\"thumbnail_id\";b:0;s:13:\"thumbnail_src\";s:0:\"\";}}s:11:\"custom_logo\";s:98:\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/logo-regular-free-img.png\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";s:12:\"primary-menu\";}s:13:\"show_on_front\";s:4:\"page\";s:13:\"page_on_front\";s:4:\"HOME\";s:14:\"page_for_posts\";s:0:\"\";s:25:\"_fl_builder_enabled_icons\";N;s:27:\"_fl_builder_enabled_modules\";N;s:22:\"_fl_builder_post_types\";N;s:25:\"_fl_builder_color_presets\";N;s:20:\"_fl_builder_services\";N;s:20:\"_fl_builder_settings\";N;s:23:\"_fl_builder_user_access\";N;s:29:\"_fl_builder_enabled_templates\";N;s:25:\"siteorigin_widgets_active\";N;s:25:\"elementor_container_width\";s:4:\"1200\";s:21:\"elementor_cpt_support\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:26:\"elementor_css_print_method\";s:8:\"external\";s:31:\"elementor_default_generic_fonts\";s:10:\"Sans-serif\";s:31:\"elementor_disable_color_schemes\";s:3:\"yes\";s:36:\"elementor_disable_typography_schemes\";s:3:\"yes\";s:28:\"elementor_editor_break_lines\";s:0:\"\";s:28:\"elementor_exclude_user_roles\";a:0:{}s:31:\"elementor_global_image_lightbox\";s:3:\"yes\";s:29:\"elementor_page_title_selector\";s:0:\"\";s:22:\"elementor_scheme_color\";a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}s:30:\"elementor_scheme_color-picker]\";a:8:{i:1;s:7:\"#ee0979\";i:2;s:7:\"#7a7a7a\";i:3;s:7:\"#ffffff\";i:4;s:7:\"#ffffff\";i:5;s:7:\"#ff6a00\";i:6;s:7:\"#ffffff\";i:7;s:7:\"#000000\";i:8;s:7:\"#ffffff\";}s:27:\"elementor_scheme_typography\";a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}s:31:\"elementor_space_between_widgets\";s:2:\"10\";s:37:\"elementor_stretched_section_container\";s:0:\"\";s:27:\"woocommerce_shop_page_title\";s:0:\"\";s:27:\"woocommerce_cart_page_title\";s:0:\"\";s:31:\"woocommerce_checkout_page_title\";s:0:\"\";s:32:\"woocommerce_myaccount_page_title\";s:0:\"\";s:35:\"woocommerce_edit_address_page_title\";s:0:\"\";s:33:\"woocommerce_view_order_page_title\";s:0:\"\";s:38:\"woocommerce_change_password_page_title\";s:0:\"\";s:29:\"woocommerce_logout_page_title\";s:0:\"\";}s:23:\"astra-post-data-mapping\";a:2:{s:19:\"astra-advanced-hook\";a:0:{}s:16:\"astra_adv_header\";a:0:{}}s:19:\"astra-site-wxr-path\";s:67:\"https://websitedemos.net/wp-content/uploads/astra-sites/173/wxr.xml\";s:24:\"astra-enabled-extensions\";a:16:{s:14:\"advanced-hooks\";s:0:\"\";s:8:\"blog-pro\";s:0:\"\";s:21:\"colors-and-background\";s:0:\"\";s:15:\"advanced-footer\";s:0:\"\";s:15:\"header-sections\";s:0:\"\";s:16:\"advanced-headers\";s:0:\"\";s:12:\"site-layouts\";s:0:\"\";s:13:\"sticky-header\";s:0:\"\";s:13:\"scroll-to-top\";s:0:\"\";s:18:\"transparent-header\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:11:\"woocommerce\";s:0:\"\";s:3:\"all\";s:3:\"all\";s:9:\"lifterlms\";s:0:\"\";s:7:\"spacing\";s:0:\"\";s:9:\"learndash\";b:0;}s:16:\"astra-custom-404\";s:0:\"\";s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:14:\"contact-form-7\";s:4:\"init\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:4:\"name\";s:14:\"Contact Form 7\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}}}", "yes");
INSERT INTO `wp_options` VALUES("92394", "_astra_ext_enabled_extensions", "a:16:{s:14:\"advanced-hooks\";s:0:\"\";s:8:\"blog-pro\";s:0:\"\";s:21:\"colors-and-background\";s:0:\"\";s:15:\"advanced-footer\";s:0:\"\";s:15:\"header-sections\";s:0:\"\";s:16:\"advanced-headers\";s:0:\"\";s:12:\"site-layouts\";s:0:\"\";s:13:\"sticky-header\";s:0:\"\";s:13:\"scroll-to-top\";s:0:\"\";s:18:\"transparent-header\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:11:\"woocommerce\";s:0:\"\";s:3:\"all\";s:3:\"all\";s:9:\"lifterlms\";s:0:\"\";s:7:\"spacing\";s:0:\"\";s:9:\"learndash\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("92395", "category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("92396", "events_categories_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("92398", "elementor_container_width", "1200", "yes");
INSERT INTO `wp_options` VALUES("92399", "elementor_cpt_support", "a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}", "yes");
INSERT INTO `wp_options` VALUES("92400", "elementor_css_print_method", "external", "yes");
INSERT INTO `wp_options` VALUES("92401", "elementor_default_generic_fonts", "Sans-serif", "yes");
INSERT INTO `wp_options` VALUES("92402", "elementor_disable_color_schemes", "yes", "yes");
INSERT INTO `wp_options` VALUES("92403", "elementor_disable_typography_schemes", "yes", "yes");
INSERT INTO `wp_options` VALUES("92404", "elementor_editor_break_lines", "", "yes");
INSERT INTO `wp_options` VALUES("92405", "elementor_exclude_user_roles", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("92406", "elementor_global_image_lightbox", "yes", "yes");
INSERT INTO `wp_options` VALUES("92407", "elementor_page_title_selector", "", "yes");
INSERT INTO `wp_options` VALUES("92408", "elementor_scheme_color", "a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}", "yes");
INSERT INTO `wp_options` VALUES("92409", "elementor_scheme_typography", "a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}", "yes");
INSERT INTO `wp_options` VALUES("92410", "elementor_space_between_widgets", "10", "yes");
INSERT INTO `wp_options` VALUES("92411", "elementor_stretched_section_container", "", "yes");
INSERT INTO `wp_options` VALUES("92421", "astra_sites_recent_import_log_file", "/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/uploads/astra-sites/import-01-May-2018-09-35-13.txt", "yes");
INSERT INTO `wp_options` VALUES("92526", "elementor_scheme_color-picker", "a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}", "yes");
INSERT INTO `wp_options` VALUES("92541", "elementor_debug_log", "a:10:{i:0;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029690\";s:7:\"message\";s:35:\"Cannot read property \\\'on\\\' of null\";s:3:\"url\";s:107:\"http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.12\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"82365\";s:12:\"customFields\";a:0:{}}i:1;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029696\";s:7:\"message\";s:43:\"Cannot read property \\\'style\\\' of undefined\";s:3:\"url\";s:79:\"http://localhost:8888/TestSICPage/wordpress/wp-admin/js/editor.min.js?ver=4.9.6\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:3:\"694\";s:12:\"customFields\";a:0:{}}i:2;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029696\";s:7:\"message\";s:35:\"Cannot read property \\\'on\\\' of null\";s:3:\"url\";s:107:\"http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.12\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"82365\";s:12:\"customFields\";a:0:{}}i:3;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029707\";s:7:\"message\";s:43:\"Cannot read property \\\'style\\\' of undefined\";s:3:\"url\";s:79:\"http://localhost:8888/TestSICPage/wordpress/wp-admin/js/editor.min.js?ver=4.9.6\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:3:\"694\";s:12:\"customFields\";a:0:{}}i:4;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029708\";s:7:\"message\";s:35:\"Cannot read property \\\'on\\\' of null\";s:3:\"url\";s:107:\"http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.12\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"82365\";s:12:\"customFields\";a:0:{}}i:5;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029708\";s:7:\"message\";s:43:\"Cannot read property \\\'style\\\' of undefined\";s:3:\"url\";s:79:\"http://localhost:8888/TestSICPage/wordpress/wp-admin/js/editor.min.js?ver=4.9.6\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:3:\"694\";s:12:\"customFields\";a:0:{}}i:6;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029709\";s:7:\"message\";s:35:\"Cannot read property \\\'on\\\' of null\";s:3:\"url\";s:107:\"http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.12\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"82365\";s:12:\"customFields\";a:0:{}}i:7;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029710\";s:7:\"message\";s:43:\"Cannot read property \\\'style\\\' of undefined\";s:3:\"url\";s:79:\"http://localhost:8888/TestSICPage/wordpress/wp-admin/js/editor.min.js?ver=4.9.6\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:3:\"694\";s:12:\"customFields\";a:0:{}}i:8;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527029711\";s:7:\"message\";s:35:\"Cannot read property \\\'on\\\' of null\";s:3:\"url\";s:107:\"http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.12\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"82365\";s:12:\"customFields\";a:0:{}}i:9;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1528992585\";s:7:\"message\";s:42:\"Cannot read property \\\'html\\\' of undefined\";s:3:\"url\";s:107:\"http://localhost:8888/TestSICPage/wordpress/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.0.12\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"79514\";s:12:\"customFields\";a:0:{}}}", "yes");
INSERT INTO `wp_options` VALUES("92654", "gf_upgrade_lock", "", "yes");
INSERT INTO `wp_options` VALUES("92672", "sccss_settings", "a:1:{s:13:\"sccss-content\";s:1564:\".menu-toggle, button, .ast-button, .button, input#submit, input[type=\"button\"], input[type=\"submit\"], input[type=\"reset\"] {\n    border-radius: 50px;\n    padding: 17px 60px;\n    color: #ffffff;\n    border-color: #81d742;\n    background-color: #81d742;\n  	margin-top: 30px;\n}\na{\n  color: blue;\n}\n\n#bitnami-banner {\n  display:none;\n}\n\n\n.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {\n    padding: 0px;\n}\n\n\n.post-edit-link{\ndisplay:none;\n}\n\n.elementor-869 .elementor-element.elementor-element-3ab3da45 {\n    color: #000000;\n    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;\n    color: #000000;\n    overflow-y: scroll!important;\n    height: 350px!important;\n}\n\n.elementor-4 .elementor-element.elementor-element-9d35b10 .elementor-widget-container {\n    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;\n    color: #000000;\n  overflow-y: scroll!important;\n    height: 350px!important;\n}\n\n.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle, .ast-header-break-point .main-header-bar .main-header-bar-navigation .page_item_has_children>.ast-menu-toggle {\n    display: inline-block;\n    position: absolute;\n    font-size: inherit;\n    top: -30px!important;\n    right: 20px;\n    cursor: pointer;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n    padding: 0 .907em;\n    font-weight: 400;\n    line-height: inherit;\n    -webkit-transition: all .2s;\n    transition: all .2s;\n}\n\";}", "yes");
INSERT INTO `wp_options` VALUES("93038", "elementor_allow_tracking", "no", "yes");
INSERT INTO `wp_options` VALUES("93535", "n2_ss3_version", "3.2.14", "yes");
INSERT INTO `wp_options` VALUES("93536", "widget_smartslider3", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93540", "_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-4.9.6.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-4.9.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.6\";s:7:\"version\";s:5:\"4.9.6\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1529441313;s:15:\"version_checked\";s:5:\"4.9.6\";s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("93544", "wp_give_sequential_ordering_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("93545", "elementor_upgrades", "a:1:{s:6:\"2.0.10\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("93548", "gf_db_version", "2.3.2", "yes");
INSERT INTO `wp_options` VALUES("93657", "give_version_upgraded_from", "2.1.2", "yes");
INSERT INTO `wp_options` VALUES("93729", "widget_fbw_id", "a:2:{i:2;a:12:{s:17:\"data_small_header\";s:0:\"\";s:26:\"data_adapt_container_width\";s:0:\"\";s:15:\"data_hide_cover\";s:0:\"\";s:18:\"data_show_facepile\";s:2:\"on\";s:15:\"data_show_posts\";s:2:\"on\";s:5:\"title\";s:19:\"Like Us On Facebook\";s:6:\"app_id\";s:15:\"503595753002055\";s:6:\"fb_url\";s:58:\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:10:\"custom_css\";s:0:\"\";s:10:\"select_lng\";s:5:\"en_US\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93737", "widget_wpp", "a:2:{i:2;a:19:{s:5:\"title\";s:0:\"\";s:5:\"limit\";s:1:\"1\";s:5:\"range\";s:5:\"daily\";s:13:\"time_quantity\";s:2:\"24\";s:9:\"time_unit\";s:4:\"hour\";s:8:\"order_by\";s:5:\"views\";s:9:\"post_type\";s:4:\"post\";s:9:\"freshness\";b:0;s:3:\"pid\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:3:\"cat\";s:0:\"\";s:7:\"term_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:13:\"shorten_title\";a:3:{s:5:\"words\";s:1:\"0\";s:6:\"active\";b:0;s:6:\"length\";s:2:\"25\";}s:12:\"post-excerpt\";a:4:{s:11:\"keep_format\";b:0;s:5:\"words\";s:1:\"0\";s:6:\"active\";b:0;s:6:\"length\";s:2:\"55\";}s:9:\"thumbnail\";a:5:{s:6:\"active\";b:0;s:5:\"width\";s:2:\"75\";s:6:\"height\";s:2:\"75\";s:5:\"build\";s:6:\"manual\";s:4:\"crop\";b:1;}s:6:\"rating\";b:0;s:9:\"stats_tag\";a:6:{s:13:\"comment_count\";b:0;s:5:\"views\";b:1;s:6:\"author\";b:0;s:4:\"date\";a:2:{s:6:\"active\";b:0;s:6:\"format\";s:6:\"F j, Y\";}s:8:\"taxonomy\";a:2:{s:6:\"active\";b:0;s:4:\"name\";s:8:\"category\";}s:8:\"category\";b:0;}s:6:\"markup\";a:6:{s:11:\"custom_html\";b:1;s:9:\"wpp-start\";s:37:\"&lt;ul class=&quot;wpp-list&quot;&gt;\";s:7:\"wpp-end\";s:11:\"&lt;/ul&gt;\";s:9:\"post-html\";s:107:\"&lt;li&gt;{thumb} {title} &lt;span class=&quot;wpp-meta post-stats&quot;&gt;{stats}&lt;/span&gt;&lt;/li&gt;\";s:11:\"title-start\";s:0:\"\";s:9:\"title-end\";s:0:\"\";}}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93794", "widget_wpcw_contact", "a:2:{i:2;a:7:{s:5:\"title\";s:10:\"Contact Us\";s:5:\"email\";a:2:{s:5:\"value\";s:14:\"info@localhost\";s:5:\"order\";i:1;}s:5:\"phone\";a:2:{s:5:\"value\";s:14:\"(250) 472-2851\";s:5:\"order\";i:2;}s:3:\"fax\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"order\";i:3;}s:7:\"address\";a:2:{s:5:\"value\";s:117:\"3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6\r\n\r\nReception Hrs: \r\nMon, Tues, Thurs : 9am - 2pm\r\nWedns : 9am - 4pm\";s:5:\"order\";i:4;}s:6:\"labels\";a:2:{s:5:\"value\";s:2:\"no\";s:5:\"order\";i:5;}s:3:\"map\";a:2:{s:5:\"value\";s:2:\"no\";s:5:\"order\";i:6;}}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93795", "widget_wpcw_social", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93854", "gmw_options", "a:18:{s:6:\"sc_map\";s:3:\"gmw\";s:7:\"api_key\";s:39:\"AIzaSyAez_ahn-6Z-TgA9F1WLNzXBk6fOj50r6o\";s:8:\"track_ga\";s:1:\"0\";s:14:\"include_jquery\";s:1:\"1\";s:17:\"include_gmaps_api\";s:1:\"1\";s:19:\"include_lightbox_js\";s:1:\"1\";s:20:\"include_lightbox_css\";s:1:\"1\";s:16:\"disable_tooltips\";s:1:\"0\";s:15:\"disable_sidebar\";s:1:\"0\";s:15:\"activation_code\";s:0:\"\";s:14:\"license_active\";s:0:\"\";s:15:\"license_expires\";s:0:\"\";s:12:\"license_type\";s:0:\"\";s:13:\"first_version\";s:4:\"3.85\";s:13:\"first_install\";d:1527068509;s:13:\"last_tracking\";b:0;s:17:\"first_install_gmt\";i:1527093709;s:23:\"dismiss_notice_upgrade2\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("93855", "_transient_timeout_gmw_pointers", "1532277708", "no");
INSERT INTO `wp_options` VALUES("93856", "_transient_gmw_pointers", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("93857", "widget_googlemapswidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93942", "widget_elementor-library", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93943", "elementor_pro_version", "2.0.7", "yes");
INSERT INTO `wp_options` VALUES("93944", "_elementor_pro_installed_time", "1527100086", "yes");
INSERT INTO `wp_options` VALUES("93951", "elementor_fonts_manager_font_types", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("93952", "elementor_fonts_manager_fonts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("93953", "_elementor_global_css", "a:3:{s:4:\"time\";i:1527100146;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}", "yes");
INSERT INTO `wp_options` VALUES("94097", "give_earnings_total", "2", "no");
INSERT INTO `wp_options` VALUES("94211", "elementor_pro_tracker_notice", "1", "yes");
INSERT INTO `wp_options` VALUES("94212", "elementor_tracker_notice", "1", "yes");
INSERT INTO `wp_options` VALUES("94273", "jetpack_active_modules", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("94724", "elementor_pro_theme_builder_conditions", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("96637", "wp_give_customers_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("96638", "wp_give_customermeta_db_version", "1.0", "yes");
INSERT INTO `wp_options` VALUES("96779", "secure_auth_key", "Dq>nV3+xaDVy/%&b$y3FD80&*a*Tk2)Y6xL/scK=GH!(IR}Vs@]iY{DEq#Z{~&,P", "no");
INSERT INTO `wp_options` VALUES("96780", "secure_auth_salt", "`q8h@4mOVRqV?.K}^``&yx1rp|c#9b2P%va*Jy_[zKA4$RQ`SWjbeBnmBx`HnufM", "no");
INSERT INTO `wp_options` VALUES("96859", "widget_rotatingtweets_widget", "a:2:{i:2;a:18:{s:5:\"title\";s:16:\"Our Twitter Feed\";s:14:\"tw_screen_name\";s:35:\"South Island Centre @South_Island_C\";s:11:\"tw_list_tag\";s:0:\"\";s:9:\"tw_search\";s:0:\"\";s:16:\"tw_rotation_type\";s:8:\"scrollUp\";s:14:\"tw_include_rts\";i:1;s:22:\"tw_links_in_new_window\";i:1;s:18:\"tw_exclude_replies\";i:0;s:16:\"tw_shorten_links\";i:0;s:14:\"tw_tweet_count\";i:5;s:14:\"tw_show_follow\";i:1;s:12:\"tw_show_type\";i:0;s:22:\"tw_hide_meta_timestamp\";b:0;s:24:\"tw_hide_meta_screen_name\";b:0;s:16:\"tw_hide_meta_via\";b:0;s:18:\"tw_official_format\";i:0;s:35:\"tw_show_meta_reply_retweet_favorite\";i:0;s:10:\"tw_timeout\";i:4000;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("96867", "_transient_timeout_rtc-South_Island_C00", "1529505975", "no");
INSERT INTO `wp_options` VALUES("96868", "_transient_rtc-South_Island_C00", "YToxOntzOjE2OiJTb3V0aF9Jc2xhbmRfQzAwIjthOjE6e3M6ODoiZGF0ZXRpbWUiO2k6MTUyODkwMTE3NTt9fQ==", "no");
INSERT INTO `wp_options` VALUES("96873", "_transient_timeout_rtc-South00", "1529506134", "no");
INSERT INTO `wp_options` VALUES("96874", "_transient_rtc-South00", "YToxOntzOjc6IlNvdXRoMDAiO2E6MTp7czo4OiJkYXRldGltZSI7aToxNTI4OTAxMzM0O319", "no");
INSERT INTO `wp_options` VALUES("96875", "_transient_timeout_rtc-Island00", "1529506135", "no");
INSERT INTO `wp_options` VALUES("96876", "_transient_rtc-Island00", "YToxOntzOjg6IklzbGFuZDAwIjthOjE6e3M6ODoiZGF0ZXRpbWUiO2k6MTUyODkwMTMzNTt9fQ==", "no");
INSERT INTO `wp_options` VALUES("96877", "_transient_timeout_rtc-Centre00", "1529506135", "no");
INSERT INTO `wp_options` VALUES("96878", "_transient_rtc-Centre00", "YToxOntzOjg6IkNlbnRyZTAwIjthOjE6e3M6ODoiZGF0ZXRpbWUiO2k6MTUyODkwMTMzNTt9fQ==", "no");
INSERT INTO `wp_options` VALUES("96883", "_transient_timeout_rtc-South_Island_C10", "1529506273", "no");
INSERT INTO `wp_options` VALUES("96884", "_transient_rtc-South_Island_C10", "YToxOntzOjE2OiJTb3V0aF9Jc2xhbmRfQzEwIjthOjE6e3M6ODoiZGF0ZXRpbWUiO2k6MTUyODkwMTQ3Mzt9fQ==", "no");
INSERT INTO `wp_options` VALUES("96889", "_transient_timeout_rtc-South10", "1529506273", "no");
INSERT INTO `wp_options` VALUES("96890", "_transient_rtc-South10", "YToxOntzOjc6IlNvdXRoMTAiO2E6MTp7czo4OiJkYXRldGltZSI7aToxNTI4OTAxNDczO319", "no");
INSERT INTO `wp_options` VALUES("96891", "_transient_timeout_rtc-Island10", "1529506273", "no");
INSERT INTO `wp_options` VALUES("96892", "_transient_rtc-Island10", "YToxOntzOjg6IklzbGFuZDEwIjthOjE6e3M6ODoiZGF0ZXRpbWUiO2k6MTUyODkwMTQ3Mzt9fQ==", "no");
INSERT INTO `wp_options` VALUES("96893", "_transient_timeout_rtc-Centre10", "1529506273", "no");
INSERT INTO `wp_options` VALUES("96894", "_transient_rtc-Centre10", "YToxOntzOjg6IkNlbnRyZTEwIjthOjE6e3M6ODoiZGF0ZXRpbWUiO2k6MTUyODkwMTQ3Mzt9fQ==", "no");
INSERT INTO `wp_options` VALUES("96898", "widget_do-etfw", "a:2:{i:2;a:11:{s:5:\"title\";s:20:\"Follow Us On Twitter\";s:21:\"twitter_timeline_type\";s:8:\"username\";s:23:\"twitter_widget_username\";s:14:\"South_Island_C\";s:17:\"twitter_widget_id\";s:0:\"\";s:20:\"twitter_widget_width\";i:220;s:21:\"twitter_widget_height\";i:200;s:26:\"twitter_widget_tweet_limit\";i:1;s:20:\"twitter_widget_theme\";s:5:\"light\";s:25:\"twitter_widget_link_color\";s:7:\"#3b94d9\";s:27:\"twitter_widget_border_color\";s:7:\"#f5f5f5\";s:21:\"twitter_widget_chrome\";a:0:{}}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("97083", "elementor_pro_license_key", "c7e5e72ea6d8d9dc27589b6ad6ecb50c", "yes");
INSERT INTO `wp_options` VALUES("97091", "give_cache__give_ajax_works", "a:2:{s:4:\"data\";s:1:\"1\";s:10:\"expiration\";i:1529527670;}", "no");
INSERT INTO `wp_options` VALUES("97135", "give_cache_give_add_ons_feed", "a:2:{s:4:\"data\";s:35393:\"\n<!DOCTYPE html>\n<html>\n<head lang=\"en\">\n	<meta charset=\"UTF-8\">\n	<meta name=\"robots\" content=\"noindex\">\n	<title>Give Add-ons</title>\n</head>\n<body>\n\n\n	<div class=\"post-354 download type-download status-publish has-post-thumbnail hentry download_category-must-have download_category-payment-gateways edd-download edd-download-cat-must-have edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/recurring-donations/\" title=\"Recurring Donations\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/03/addons-recurring-donations-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Recurring Donations\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/recurring-donations/\" title=\"Recurring Donations\" target=\"_blank\">Recurring Donations</a>\n			</h3>\n			<p>Create powerful subscription based donations with the Give Recurring Donation Add-on.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/recurring-donations/\" title=\"Recurring Donations\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-243 download type-download status-publish has-post-thumbnail hentry download_category-must-have download_category-tools edd-download edd-download-cat-must-have edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/form-field-manager/\" title=\"Form Field Manager\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/02/addons-form-field-manager-365x215.png\" width=\"280\" height=\"164\" alt=\"Form Field Manager\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/form-field-manager/\" title=\"Form Field Manager\" target=\"_blank\">Form Field Manager</a>\n			</h3>\n			<p>Customize donation form fields using an intuitive drag-and-drop custom field creation system.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/form-field-manager/\" title=\"Form Field Manager\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-114816 download type-download status-publish has-post-thumbnail hentry download_category-must-have download_category-tools edd-download edd-download-cat-must-have edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/fee-recovery/\" title=\"Fee Recovery\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2017/05/addon-fee-recovery-thumbnail-365x215.png\" width=\"280\" height=\"164\" alt=\"Fee Recovery\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/fee-recovery/\" title=\"Fee Recovery\" target=\"_blank\">Fee Recovery</a>\n			</h3>\n			<p>Ask your donors to give a little extra to help cover the fees.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/fee-recovery/\" title=\"Fee Recovery\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-141019 download type-download status-publish has-post-thumbnail hentry download_category-must-have download_category-tools edd-download edd-download-cat-must-have edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/tributes/\" title=\"Tributes\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/2017/08/give-tributes-v03-365x215.png\" width=\"280\" height=\"164\" alt=\"Tributes\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/tributes/\" title=\"Tributes\" target=\"_blank\">Tributes</a>\n			</h3>\n			<p>Allow donors to give to your Cause via customizable tributes like &#8220;In honor of&#8221;, &#8220;In memory of&#8221;, or anyÂ dedication your prefer. </p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/tributes/\" title=\"Tributes\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-196798 download type-download status-publish has-post-thumbnail hentry download_category-tools edd-download edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/currency-switcher/\" title=\"Currency Switcher\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2018/02/addon-currency-switcher-365x215.png\" width=\"280\" height=\"164\" alt=\"Currency Switcher\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/currency-switcher/\" title=\"Currency Switcher\" target=\"_blank\">Currency Switcher</a>\n			</h3>\n			<p>Currency Switcher allows your donors to choose which currency they&#8217;d like to donate with.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/currency-switcher/\" title=\"Currency Switcher\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-438 download type-download status-publish has-post-thumbnail hentry download_category-must-have download_category-tools edd-download edd-download-cat-must-have edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/pdf-receipts/\" title=\"PDF Receipts\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/03/addons-pdf-receipts-365x215.png\" width=\"280\" height=\"164\" alt=\"PDF Receipts\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/pdf-receipts/\" title=\"PDF Receipts\" target=\"_blank\">PDF Receipts</a>\n			</h3>\n			<p>Make it easy for your donors to print their tax deductible receipts by emailing receipts as a PDF.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/pdf-receipts/\" title=\"PDF Receipts\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-245 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/stripe-gateway/\" title=\"Stripe Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/02/addons-stripe-365x215.png\" width=\"280\" height=\"164\" alt=\"Stripe Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/stripe-gateway/\" title=\"Stripe Gateway\" target=\"_blank\">Stripe Gateway</a>\n			</h3>\n			<p>Stripe is one of the most popular Gateways for a good reason. Accept credit card donations via Stripe with this add-on.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/stripe-gateway/\" title=\"Stripe Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-244 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/authorize-net-gateway/\" title=\"Authorize.net Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/02/addons-authorizenet-365x215.png\" width=\"280\" height=\"164\" alt=\"Authorize.net Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/authorize-net-gateway/\" title=\"Authorize.net Gateway\" target=\"_blank\">Authorize.net Gateway</a>\n			</h3>\n			<p>Authorize.net is a well established payment gateway. This add-on allows you to accept credit card donations via Authorize.net.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/authorize-net-gateway/\" title=\"Authorize.net Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-1541 download type-download status-publish has-post-thumbnail hentry download_category-tools edd-download edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/gift-aid/\" title=\"Gift Aid\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2017/09/addon-gift-aid-365x215.png\" width=\"280\" height=\"164\" alt=\"Gift Aid\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/gift-aid/\" title=\"Gift Aid\" target=\"_blank\">Gift Aid</a>\n			</h3>\n			<p>Donors in the UK can &#8220;Gift Aid&#8221; their donations which adds an extra 25% for your charity.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/gift-aid/\" title=\"Gift Aid\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-3031 download type-download status-publish has-post-thumbnail hentry download_category-tools edd-download edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/google-analytics/\" title=\"Google Analytics Donation Tracking\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2017/03/addon-google-analytics-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Google Analytics Donation Tracking\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/google-analytics/\" title=\"Google Analytics Donation Tracking\" target=\"_blank\">Google Analytics Donation Tracking</a>\n			</h3>\n			<p>Track your donations made on your site through Google Analytics Enhanced Ecommerce.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/google-analytics/\" title=\"Google Analytics Donation Tracking\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-242 download type-download status-publish has-post-thumbnail hentry download_category-marketing edd-download edd-download-cat-marketing\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/mailchimp/\" title=\"MailChimp\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/02/addon-mailchimp-365x215.png\" width=\"280\" height=\"164\" alt=\"MailChimp\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/mailchimp/\" title=\"MailChimp\" target=\"_blank\">MailChimp</a>\n			</h3>\n			<p>Boost your cause marketing by allowing users to subscribe to your MailChimp lists and groups when donating.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/mailchimp/\" title=\"MailChimp\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-46747 download type-download status-publish has-post-thumbnail hentry download_category-tools edd-download edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/manual-donations/\" title=\"Manual Donations\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2016/07/manual-donations-featured-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Manual Donations\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/manual-donations/\" title=\"Manual Donations\" target=\"_blank\">Manual Donations</a>\n			</h3>\n			<p>Manually create donation payments within Give. Support Recurring Donations.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/manual-donations/\" title=\"Manual Donations\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-3116 download type-download status-publish has-post-thumbnail hentry download_category-tools edd-download edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/zapier/\" title=\"Zapier\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/07/addons-zapier-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Zapier\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/zapier/\" title=\"Zapier\" target=\"_blank\">Zapier</a>\n			</h3>\n			<p>Use Zapier to connect Give to 400+ web services like Salesforce, MailChimp, Slack, and more!</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/zapier/\" title=\"Zapier\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-1545 download type-download status-publish has-post-thumbnail hentry download_category-tools edd-download edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/per-form-emails/\" title=\"Per Form Emails\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2016/10/per-form-emails-green-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Per Form Emails\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/per-form-emails/\" title=\"Per Form Emails\" target=\"_blank\">Per Form Emails</a>\n			</h3>\n			<p>Provide unique content for the donation receipt and notification emails. You can also customize the logo, template, and more.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/per-form-emails/\" title=\"Per Form Emails\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-59024 download type-download status-publish has-post-thumbnail hentry download_category-tools edd-download edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/email-reports/\" title=\"Email Reports\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2016/10/email-reports-banner-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Email Reports\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/email-reports/\" title=\"Email Reports\" target=\"_blank\">Email Reports</a>\n			</h3>\n			<p>Receive comprehensive donation reports via email.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/email-reports/\" title=\"Email Reports\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-59603 download type-download status-publish has-post-thumbnail hentry download_category-tools edd-download edd-download-cat-tools\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/per-form-gateways/\" title=\"Per Form Gateways\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/2016/10/per-form-gateways-logo-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Per Form Gateways\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/per-form-gateways/\" title=\"Per Form Gateways\" target=\"_blank\">Per Form Gateways</a>\n			</h3>\n			<p>Choose on a per form basis which payment gateways you would like enabled for donors.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/per-form-gateways/\" title=\"Per Form Gateways\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-1485 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/2checkout-gateway/\" title=\"2Checkout Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/2015/12/2checkout-featured-365x215.png\" width=\"280\" height=\"164\" alt=\"2Checkout Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/2checkout-gateway/\" title=\"2Checkout Gateway\" target=\"_blank\">2Checkout Gateway</a>\n			</h3>\n			<p>2Checkout is an international credit card merchant. It supports over 87 different currencies, 197 countries, and more than 15 languages.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/2checkout-gateway/\" title=\"2Checkout Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-1536 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/iats-gateway/\" title=\"iATS Payment Solutions\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2016/10/iATS-addon-tile-opt-365x215.png\" width=\"280\" height=\"164\" alt=\"iATS Payment Solutions\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/iats-gateway/\" title=\"iATS Payment Solutions\" target=\"_blank\">iATS Payment Solutions</a>\n			</h3>\n			<p>iATS provides merchant account services exclusively for nonprofit organizations.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/iats-gateway/\" title=\"iATS Payment Solutions\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-246 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/paypal-pro-gateway/\" title=\"PayPal Pro Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/02/addons-paypal-365x215.png\" width=\"280\" height=\"164\" alt=\"PayPal Pro Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/paypal-pro-gateway/\" title=\"PayPal Pro Gateway\" target=\"_blank\">PayPal Pro Gateway</a>\n			</h3>\n			<p>Accept credit card donations directly through Give using PayPal Pro.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/paypal-pro-gateway/\" title=\"PayPal Pro Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-107608 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/paytm-gateway/\" title=\"Paytm Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2017/04/addon-paytm-365x215.png\" width=\"280\" height=\"164\" alt=\"Paytm Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/paytm-gateway/\" title=\"Paytm Gateway\" target=\"_blank\">Paytm Gateway</a>\n			</h3>\n			<p>Paytm makes it easy to acceptÂ donation payments on your website with one of India&#8217;s most popular gateways. Paytm is secure, easy to setup, and offers some of the lowest pricing in the &hellip;</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/paytm-gateway/\" title=\"Paytm Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-212536 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/payfast-gateway/\" title=\"PayFast\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2018/01/payfast-add-on-365x215.jpg\" width=\"280\" height=\"164\" alt=\"PayFast\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/payfast-gateway/\" title=\"PayFast\" target=\"_blank\">PayFast</a>\n			</h3>\n			<p>PayFast is one of the most popular in South Africa. Accept credit card donations via PayFast with this add-on.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/payfast-gateway/\" title=\"PayFast\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-236949 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/mollie-payment-gateway/\" title=\"Mollie Payment Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2018/02/addon-mollie-365x215.png\" width=\"280\" height=\"164\" alt=\"Mollie Payment Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/mollie-payment-gateway/\" title=\"Mollie Payment Gateway\" target=\"_blank\">Mollie Payment Gateway</a>\n			</h3>\n			<p>Mollie is a popular gateway that offers many ways to accept online donations. The gateway is built atop a modern platform and also supports recurring donations. With Mollie donors will enjoy a &hellip;</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/mollie-payment-gateway/\" title=\"Mollie Payment Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-144603 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/sofort/\" title=\"Sofort\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/2018/01/sofort-addon-365x215.png\" width=\"280\" height=\"164\" alt=\"Sofort\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/sofort/\" title=\"Sofort\" target=\"_blank\">Sofort</a>\n			</h3>\n			<p>Accept direct bank payments online via Sofort. Popular in Europe and Germany.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/sofort/\" title=\"Sofort\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-88556 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/payumoney-gateway/\" title=\"PayUmoney Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/2017/02/addon-payumoney-365x215.jpg\" width=\"280\" height=\"164\" alt=\"PayUmoney Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/payumoney-gateway/\" title=\"PayUmoney Gateway\" target=\"_blank\">PayUmoney Gateway</a>\n			</h3>\n			<p>Accept donation payments in India with the top-rated PayUmoney gateway. Quick and easy setup, fully supported and documented. </p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/payumoney-gateway/\" title=\"PayUmoney Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-339 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/paymill-gateway/\" title=\"Paymill Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/02/paymill-give-banner-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Paymill Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/paymill-gateway/\" title=\"Paymill Gateway\" target=\"_blank\">Paymill Gateway</a>\n			</h3>\n			<p>Accept credit card donations directly through Give using Paymill.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/paymill-gateway/\" title=\"Paymill Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-105271 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/gocardless-gateway/\" title=\"GoCardless Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2017/04/addon-gocardless-365x215.png\" width=\"280\" height=\"164\" alt=\"GoCardless Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/gocardless-gateway/\" title=\"GoCardless Gateway\" target=\"_blank\">GoCardless Gateway</a>\n			</h3>\n			<p>GoCardless is a popular gateway that offers a low cost Direct Debit solution for accepting online donations. The gateway is built atop a modern platform and also supports recurring donations. About the &hellip;</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/gocardless-gateway/\" title=\"GoCardless Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-107886 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/americloud-payments/\" title=\"AmeriCloud Payments\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2017/04/addon-tile-template-365x215.jpg\" width=\"280\" height=\"164\" alt=\"AmeriCloud Payments\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/americloud-payments/\" title=\"AmeriCloud Payments\" target=\"_blank\">AmeriCloud Payments</a>\n			</h3>\n			<p>This Give add-on allows you to accept credit cards directly on your site via AmeriCloud Payments. When donors give through the AmeriCloud Payments gateway, users enter their credit card details during the &hellip;</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/americloud-payments/\" title=\"AmeriCloud Payments\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-1830 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/dwolla-payment-gatway/\" title=\"Dwolla Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/05/dwolla-banner-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Dwolla Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/dwolla-payment-gatway/\" title=\"Dwolla Gateway\" target=\"_blank\">Dwolla Gateway</a>\n			</h3>\n			<p>Dwolla is a popular payment method to accept donations. All transactions under $10 are free. All others are $0.25 per with no percentages at all.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/dwolla-payment-gatway/\" title=\"Dwolla Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-1680 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/braintree-payment-gateway/\" title=\"Braintree Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2015/05/braintree-payment-gateway-banner-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Braintree Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/braintree-payment-gateway/\" title=\"Braintree Gateway\" target=\"_blank\">Braintree Gateway</a>\n			</h3>\n			<p>Collect donations directly on your website via BrainTree. Pay zero fees before reaching $50,000 in donations.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/braintree-payment-gateway/\" title=\"Braintree Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-60430 download type-download status-publish has-post-thumbnail hentry download_category-marketing edd-download edd-download-cat-marketing\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/aweber/\" title=\"AWeber\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2016/10/aweber-featured-image-365x215.jpg\" width=\"280\" height=\"164\" alt=\"AWeber\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/aweber/\" title=\"AWeber\" target=\"_blank\">AWeber</a>\n			</h3>\n			<p>Level up your email marketing lists by allowing donors to subscribe to your AWeber lists during the giving process.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/aweber/\" title=\"AWeber\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-64612 download type-download status-publish has-post-thumbnail hentry download_category-marketing edd-download edd-download-cat-marketing\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/convertkit/\" title=\"ConvertKit\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2016/11/convertkit-thumb-365x215.jpg\" width=\"280\" height=\"164\" alt=\"ConvertKit\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/convertkit/\" title=\"ConvertKit\" target=\"_blank\">ConvertKit</a>\n			</h3>\n			<p>Allow donors to subscribe to your ConvertKit forms and tags during the giving process to help further your email marketing.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/convertkit/\" title=\"ConvertKit\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-1832 download type-download status-publish has-post-thumbnail hentry download_category-marketing edd-download edd-download-cat-marketing\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/constant-contact/\" title=\"Constant Contact\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/2015/05/addons-constant-contact-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Constant Contact\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/constant-contact/\" title=\"Constant Contact\" target=\"_blank\">Constant Contact</a>\n			</h3>\n			<p>Integrate Constant Contact with your donation forms. Subscribe donors to email lists when they donate to your Cause.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/constant-contact/\" title=\"Constant Contact\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-91724 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/razorpay-gateway/\" title=\"Razorpay Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2017/03/addon-razorpay-365x215.jpg\" width=\"280\" height=\"164\" alt=\"Razorpay Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/razorpay-gateway/\" title=\"Razorpay Gateway\" target=\"_blank\">Razorpay Gateway</a>\n			</h3>\n			<p>Accept online donation payments with Razorpay.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/razorpay-gateway/\" title=\"Razorpay Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	\n	<div class=\"post-2060 download type-download status-publish has-post-thumbnail hentry download_category-payment-gateways edd-download edd-download-cat-payment-gateways\">\n\n		<div class=\"featured-img\">\n\n			\n				<a href=\"https://givewp.com/addons/ccavenue-gateway/\" title=\"CCAvenue Gateway\" target=\"_blank\"><img src=\"https://givewp.com/wp-content/uploads/edd/2017/03/addon-ccavenue-365x215.jpg\" width=\"280\" height=\"164\" alt=\"CCAvenue Gateway\"></a>\n\n			\n		</div>\n\n		<div class=\"addon-content\">\n			<h3 class=\"addon-heading\">\n				<a href=\"https://givewp.com/addons/ccavenue-gateway/\" title=\"CCAvenue Gateway\" target=\"_blank\">CCAvenue Gateway</a>\n			</h3>\n			<p>CCAvenue is a popular India gateway for accepting donations in in 27+ major foreign currencies.</p>\n		</div>\n\n		<div class=\"addon-footer-wrap give-clearfix\">\n			<a href=\"https://givewp.com/addons/ccavenue-gateway/\" title=\"CCAvenue Gateway\" class=\"button-secondary\" target=\"_blank\">Learn More				<span class=\"dashicons dashicons-external\"></span></a>\n		</div>\n\n	</div>\n	</body>\n</html>\n\";s:10:\"expiration\";i:1528991868;}", "no");
INSERT INTO `wp_options` VALUES("97163", "give_last_paypal_ipn_received", "a:3:{s:11:\"auth_status\";s:8:\"VERIFIED\";s:14:\"transaction_id\";s:17:\"9L129955194035046\";s:10:\"payment_id\";i:16066;}", "yes");
INSERT INTO `wp_options` VALUES("97165", "give_cache_give_stats_16fd833eb5e3640", "a:2:{s:4:\"data\";s:8:\"1.000000\";s:10:\"expiration\";i:1528992807;}", "no");
INSERT INTO `wp_options` VALUES("97166", "give_cache_give_stats_8fcc5329fe5adaf", "a:2:{s:4:\"data\";s:8:\"1.000000\";s:10:\"expiration\";i:1529105591;}", "no");
INSERT INTO `wp_options` VALUES("97167", "give_cache_give_stats_2bd574cfd256c27", "a:2:{s:4:\"data\";s:8:\"1.000000\";s:10:\"expiration\";i:1529444873;}", "no");
INSERT INTO `wp_options` VALUES("97168", "give_cache_give_stats_474baacb1a3f1b7", "a:2:{s:4:\"data\";d:0;s:10:\"expiration\";i:1529444873;}", "no");
INSERT INTO `wp_options` VALUES("97169", "give_cache_give_stats_377db529ff14f90", "a:2:{s:4:\"data\";s:8:\"1.000000\";s:10:\"expiration\";i:1529444873;}", "no");
INSERT INTO `wp_options` VALUES("97385", "_transient_is_multi_author", "0", "yes");
INSERT INTO `wp_options` VALUES("97500", "_site_transient_timeout_theme_roots", "1529442938", "no");
INSERT INTO `wp_options` VALUES("97501", "_site_transient_theme_roots", "a:6:{s:5:\"astra\";s:7:\"/themes\";s:7:\"dt-the7\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}", "no");
INSERT INTO `wp_options` VALUES("97502", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1529441315;s:7:\"checked\";a:6:{s:5:\"astra\";s:5:\"1.3.3\";s:7:\"dt-the7\";s:5:\"6.4.0\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.5\";s:13:\"twentysixteen\";s:3:\"1.4\";s:14:\"twentythirteen\";s:3:\"2.3\";}s:8:\"response\";a:5:{s:5:\"astra\";a:4:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:5:\"1.3.4\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/astra.1.3.4.zip\";}s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.0.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.1.6.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.5.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.2.4.zip\";}}s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("97534", "_site_transient_update_plugins", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1529441320;s:8:\"response\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"6.70\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.6.70.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=1268186\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=1268186\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=1876524\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=1876524\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";s:6:\"5.2.17\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/all-in-one-seo-pack\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:5:\"2.6.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.2.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-256x256.png?rev=979908\";s:2:\"1x\";s:71:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-128x128.png?rev=979908\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=1354894\";s:2:\"1x\";s:74:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=1354894\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"astra-sites/astra-sites.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/astra-sites\";s:4:\"slug\";s:11:\"astra-sites\";s:6:\"plugin\";s:27:\"astra-sites/astra-sites.php\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/astra-sites/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/astra-sites.1.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/astra-sites/assets/icon-256x256.jpg?rev=1712437\";s:2:\"1x\";s:64:\"https://ps.w.org/astra-sites/assets/icon-128x128.jpg?rev=1712437\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/astra-sites/assets/banner-1544x500.jpg?rev=1712437\";s:2:\"1x\";s:66:\"https://ps.w.org/astra-sites/assets/banner-772x250.jpg?rev=1712437\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"contact-widgets/contact-widgets.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/contact-widgets\";s:4:\"slug\";s:15:\"contact-widgets\";s:6:\"plugin\";s:35:\"contact-widgets/contact-widgets.php\";s:11:\"new_version\";s:5:\"1.5.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/contact-widgets/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/contact-widgets.1.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/contact-widgets/assets/icon-256x256.png?rev=1885181\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-widgets/assets/icon-128x128.png?rev=1885181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/contact-widgets/assets/banner-1544x500.png?rev=1885181\";s:2:\"1x\";s:70:\"https://ps.w.org/contact-widgets/assets/banner-772x250.png?rev=1885181\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"2.0.16\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.2.0.16.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:13:\"give/give.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:18:\"w.org/plugins/give\";s:4:\"slug\";s:4:\"give\";s:6:\"plugin\";s:13:\"give/give.php\";s:11:\"new_version\";s:5:\"2.1.5\";s:3:\"url\";s:35:\"https://wordpress.org/plugins/give/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/give.2.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:57:\"https://ps.w.org/give/assets/icon-256x256.jpg?rev=1130051\";s:2:\"1x\";s:57:\"https://ps.w.org/give/assets/icon-128x128.jpg?rev=1130051\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/give/assets/banner-1544x500.jpg?rev=1634841\";s:2:\"1x\";s:59:\"https://ps.w.org/give/assets/banner-772x250.jpg?rev=1634841\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:44:\"w.org/plugins/google-analytics-for-wordpress\";s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:6:\"plugin\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:11:\"new_version\";s:5:\"7.0.8\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/google-analytics-for-wordpress/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.7.0.8.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:83:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon-256x256.png?rev=1598927\";s:2:\"1x\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=1598927\";s:3:\"svg\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=1598927\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=1598927\";s:2:\"1x\";s:85:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=1598927\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:41:\"google-maps-widget/google-maps-widget.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/google-maps-widget\";s:4:\"slug\";s:18:\"google-maps-widget\";s:6:\"plugin\";s:41:\"google-maps-widget/google-maps-widget.php\";s:11:\"new_version\";s:4:\"3.90\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/google-maps-widget/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-maps-widget.3.90.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-maps-widget/assets/icon-256x256.png?rev=1625687\";s:2:\"1x\";s:71:\"https://ps.w.org/google-maps-widget/assets/icon-128x128.png?rev=1566956\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/google-maps-widget/assets/banner-1544x500.png?rev=1653423\";s:2:\"1x\";s:73:\"https://ps.w.org/google-maps-widget/assets/banner-772x250.png?rev=1653423\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:5:\"3.0.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/really-simple-ssl.3.0.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.jpg?rev=1881345\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"smart-slider-3/smart-slider-3.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/smart-slider-3\";s:4:\"slug\";s:14:\"smart-slider-3\";s:6:\"plugin\";s:33:\"smart-slider-3/smart-slider-3.php\";s:11:\"new_version\";s:5:\"3.3.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/smart-slider-3/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/smart-slider-3.3.3.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/smart-slider-3/assets/icon-256x256.png?rev=1284893\";s:2:\"1x\";s:67:\"https://ps.w.org/smart-slider-3/assets/icon-128x128.png?rev=1284893\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/smart-slider-3/assets/banner-1544x500.png?rev=1686842\";s:2:\"1x\";s:69:\"https://ps.w.org/smart-slider-3/assets/banner-772x250.png?rev=1686842\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:39:\"advanced-reset-wp/advanced-reset-wp.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/advanced-reset-wp\";s:4:\"slug\";s:17:\"advanced-reset-wp\";s:6:\"plugin\";s:39:\"advanced-reset-wp/advanced-reset-wp.php\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/advanced-reset-wp/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/advanced-reset-wp.1.2.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/advanced-reset-wp/assets/icon-128x128.png?rev=1441306\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:55:\"all-in-one-event-calendar/all-in-one-event-calendar.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:39:\"w.org/plugins/all-in-one-event-calendar\";s:4:\"slug\";s:25:\"all-in-one-event-calendar\";s:6:\"plugin\";s:55:\"all-in-one-event-calendar/all-in-one-event-calendar.php\";s:11:\"new_version\";s:6:\"2.5.31\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/all-in-one-event-calendar/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/all-in-one-event-calendar.2.5.31.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/all-in-one-event-calendar/assets/icon-256x256.png?rev=982156\";s:2:\"1x\";s:77:\"https://ps.w.org/all-in-one-event-calendar/assets/icon-128x128.png?rev=982156\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/all-in-one-event-calendar/assets/banner-772x250.png?rev=748390\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.0.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}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:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"1.2.40\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.1.2.40.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/duplicator/assets/icon-256x256.png?rev=1298463\";s:2:\"1x\";s:63:\"https://ps.w.org/duplicator/assets/icon-128x128.png?rev=1298463\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/duplicator/assets/banner-772x250.png?rev=1645055\";}s:11:\"banners_rtl\";a:0:{}}s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/easy-twitter-feed-widget\";s:4:\"slug\";s:24:\"easy-twitter-feed-widget\";s:6:\"plugin\";s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";s:11:\"new_version\";s:3:\"0.9\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/easy-twitter-feed-widget/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/easy-twitter-feed-widget.0.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/easy-twitter-feed-widget/assets/icon-256x256.png?rev=1025015\";s:2:\"1x\";s:77:\"https://ps.w.org/easy-twitter-feed-widget/assets/icon-128x128.png?rev=1025015\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/easy-twitter-feed-widget/assets/banner-1544x500.png?rev=1025015\";s:2:\"1x\";s:79:\"https://ps.w.org/easy-twitter-feed-widget/assets/banner-772x250.png?rev=1025015\";}s:11:\"banners_rtl\";a:0:{}}s:44:\"facebook-pagelike-widget/facebook_widget.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/facebook-pagelike-widget\";s:4:\"slug\";s:24:\"facebook-pagelike-widget\";s:6:\"plugin\";s:44:\"facebook-pagelike-widget/facebook_widget.php\";s:11:\"new_version\";s:5:\"4.2.2\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/facebook-pagelike-widget/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/facebook-pagelike-widget.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/facebook-pagelike-widget/assets/icon-128x128.png?rev=1134584\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/facebook-pagelike-widget/assets/banner-772x250.jpg?rev=1134635\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"really-simple-captcha/really-simple-captcha.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/really-simple-captcha\";s:4:\"slug\";s:21:\"really-simple-captcha\";s:6:\"plugin\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:11:\"new_version\";s:5:\"2.0.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/really-simple-captcha/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/really-simple-captcha.2.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/really-simple-captcha/assets/icon-256x256.png?rev=1047241\";s:2:\"1x\";s:74:\"https://ps.w.org/really-simple-captcha/assets/icon-128x128.png?rev=1047241\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/really-simple-captcha/assets/banner-1544x500.png?rev=880406\";s:2:\"1x\";s:75:\"https://ps.w.org/really-simple-captcha/assets/banner-772x250.png?rev=880406\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"simple-custom-css/simple-custom-css.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/simple-custom-css\";s:4:\"slug\";s:17:\"simple-custom-css\";s:6:\"plugin\";s:39:\"simple-custom-css/simple-custom-css.php\";s:11:\"new_version\";s:5:\"4.0.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/simple-custom-css/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/simple-custom-css.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/simple-custom-css/assets/icon-256x256.jpg?rev=1819543\";s:2:\"1x\";s:70:\"https://ps.w.org/simple-custom-css/assets/icon-128x128.jpg?rev=1819543\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/simple-custom-css/assets/banner-1544x500.jpg?rev=1819543\";s:2:\"1x\";s:72:\"https://ps.w.org/simple-custom-css/assets/banner-772x250.jpg?rev=1819543\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"1.2.5\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=1785565\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=1785565\";}s:11:\"banners_rtl\";a:0:{}}}}", "no");
INSERT INTO `wp_options` VALUES("97483", "give_cache_give_stats_9c35c663c7dfadf", "a:2:{s:4:\"data\";i:0;s:10:\"expiration\";i:1529105591;}", "no");
INSERT INTO `wp_options` VALUES("97523", "_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1529484477", "no");
INSERT INTO `wp_options` VALUES("97524", "_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1529441277", "no");
INSERT INTO `wp_options` VALUES("97525", "_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b", "1529484477", "no");
INSERT INTO `wp_options` VALUES("97526", "_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/06/the-month-in-wordpress-may-2018/\'>The Month in WordPress: May 2018</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://blog.akismet.com/2018/06/19/version-4-0-8-of-the-akismet-wordpress-plugin-is-now-available/\'>Akismet: Version 4.0.8 of the Akismet WordPress Plugin Is Now Available</a></li><li><a class=\'rsswidget\' href=\'https://markjaquith.wordpress.com/2018/06/19/making-scoutdocs-build-tools/\'>Mark Jaquith: Making ScoutDocs: Build Tools</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wp-rig-a-wordpress-starter-theme-and-build-process-in-one\'>WPTavern: WP Rig â€“ A WordPress Starter Theme and Build Process in One</a></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("97527", "_transient_timeout_plugin_slugs", "1529527721", "no");
INSERT INTO `wp_options` VALUES("97528", "_transient_plugin_slugs", "a:23:{i:0;s:39:\"advanced-reset-wp/advanced-reset-wp.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:55:\"all-in-one-event-calendar/all-in-one-event-calendar.php\";i:3;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:5;s:27:\"astra-sites/astra-sites.php\";i:6;s:36:\"contact-form-7/wp-contact-form-7.php\";i:7;s:35:\"contact-widgets/contact-widgets.php\";i:8;s:25:\"duplicator/duplicator.php\";i:9;s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";i:10;s:23:\"elementor/elementor.php\";i:11;s:31:\"elementor-pro/elementor-pro.php\";i:12;s:44:\"facebook-pagelike-widget/facebook_widget.php\";i:13;s:13:\"give/give.php\";i:14;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:15;s:41:\"google-maps-widget/google-maps-widget.php\";i:16;s:29:\"gravityforms/gravityforms.php\";i:17;s:9:\"hello.php\";i:18;s:47:\"really-simple-captcha/really-simple-captcha.php\";i:19;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:20;s:39:\"simple-custom-css/simple-custom-css.php\";i:21;s:33:\"smart-slider-3/smart-slider-3.php\";i:22;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}", "no");
INSERT INTO `wp_options` VALUES("97529", "_site_transient_timeout_ai1ec_update_plugins", "1529443095", "no");
INSERT INTO `wp_options` VALUES("97530", "_site_transient_ai1ec_update_plugins", "a:1:{s:55:\"all-in-one-event-calendar/all-in-one-event-calendar.php\";a:11:{s:6:\"plugin\";s:55:\"all-in-one-event-calendar/all-in-one-event-calendar.php\";s:11:\"new_version\";s:6:\"2.5.28\";s:7:\"version\";s:6:\"2.5.28\";s:4:\"name\";s:4:\"Core\";s:4:\"slug\";s:25:\"all-in-one-event-calendar\";s:3:\"url\";s:15:\"https://time.ly\";s:8:\"homepage\";s:15:\"https://time.ly\";s:7:\"package\";s:70:\"https://checkout.time.ly/packages/all-in-one-event-calendar_2.5.28.zip\";s:13:\"download_link\";s:70:\"https://checkout.time.ly/packages/all-in-one-event-calendar_2.5.28.zip\";s:8:\"sections\";a:2:{s:11:\"description\";s:390:\"The <a href=\"https://time.ly\" target=\"_blank\">All-in-One Event Calendar</a> from\r\n<a href=\"https://time.ly\" target=\"_blank\">Timely</a> is a beautiful way to list your events in\r\nWordPress and easily share them with the rest of the world. Our\r\ncalendar system combines clean visual design with a powerful set of\r\nfeatures to create the most advanced calendar system available for\r\nWordPress.\";s:9:\"changelog\";s:282:\"<strong>2.5.28</strong>\r\n<ul>\r\n	<li>Fixed: On the event preview page, the date shown was incorrect.</li>\r\n	<li>Fixed \"http_build_query(): Parameter 1 expected to be Array or Object\" warning.</li>\r\n	<li>Security fix: Added security check before cleaning TWIG cache files.</li>\r\n</ul>\";}s:6:\"author\";s:65:\"<a href=\"https://time.ly\" target=\"_blank\">Timely Network Inc.</a>\";}}", "no");
INSERT INTO `wp_options` VALUES("97531", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1529452096", "no");
INSERT INTO `wp_options` VALUES("97532", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4468;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:2834;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2563;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2437;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1875;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1660;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1651;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1457;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1397;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1391;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1389;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1319;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1284;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1218;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1111;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1064;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1026;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1024;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:901;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:881;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:829;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:804;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:803;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:718;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:692;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:692;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:686;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:675;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:663;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:660;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:651;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:640;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:640;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:640;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:611;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:609;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:606;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:601;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:595;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:589;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:567;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:550;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:542;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:538;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:526;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:522;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:510;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:510;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:503;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:502;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:494;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:486;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:483;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:481;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:473;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:473;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:458;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:456;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:446;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:437;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:433;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:431;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:421;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:417;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:415;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:413;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:408;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:405;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:398;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:388;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:386;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:369;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:363;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:362;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:359;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:358;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:354;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:348;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:347;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:347;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:344;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:342;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:341;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:335;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:332;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:332;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:326;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:319;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:308;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:305;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:305;}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";i:302;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:301;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:301;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:300;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:298;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:297;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:294;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:292;}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";i:286;}}", "no");
INSERT INTO `wp_options` VALUES("97504", "template", "astra", "yes");
INSERT INTO `wp_options` VALUES("97505", "stylesheet", "astra", "yes");
INSERT INTO `wp_options` VALUES("97507", "_site_transient_timeout_browser_92155205f3e35399c2dac7aa9b7cc3aa", "1530046069", "no");
INSERT INTO `wp_options` VALUES("97508", "_site_transient_browser_92155205f3e35399c2dac7aa9b7cc3aa", "a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"66.0.3359.181\";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");
INSERT INTO `wp_options` VALUES("97509", "_transient_timeout_elementor_remote_info_api_data_2.0.12", "1529484472", "no");
INSERT INTO `wp_options` VALUES("97510", "_transient_elementor_remote_info_api_data_2.0.12", "a:2:{s:9:\"timestamp\";i:1529441268;s:14:\"upgrade_notice\";a:2:{s:7:\"version\";s:5:\"1.5.0\";s:7:\"message\";s:0:\"\";}}", "no");
INSERT INTO `wp_options` VALUES("97511", "_transient_timeout_elementor_pro_license_data", "1529484473", "no");
INSERT INTO `wp_options` VALUES("97512", "_transient_elementor_pro_license_data", "a:12:{s:7:\"success\";b:1;s:7:\"license\";s:5:\"valid\";s:9:\"item_name\";s:13:\"Elementor Pro\";s:8:\"checksum\";s:32:\"84b46f1073baa7b7745ef7d1a2a23871\";s:7:\"expires\";s:19:\"2019-05-23 23:59:59\";s:10:\"payment_id\";s:6:\"584652\";s:13:\"customer_name\";s:14:\"Cameron Bowler\";s:14:\"customer_email\";s:25:\"cameronbowler84@gmail.com\";s:13:\"license_limit\";i:0;s:10:\"site_count\";i:1;s:16:\"activations_left\";s:9:\"unlimited\";s:8:\"price_id\";s:1:\"3\";}", "no");
INSERT INTO `wp_options` VALUES("97513", "give_cache_give_stats_300314f5ccd9c8c", "a:2:{s:4:\"data\";i:0;s:10:\"expiration\";i:1529444873;}", "no");
INSERT INTO `wp_options` VALUES("97514", "give_cache_give_stats_eac4d66f5d72c19", "a:2:{s:4:\"data\";i:0;s:10:\"expiration\";i:1529444873;}", "no");
INSERT INTO `wp_options` VALUES("97515", "_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e", "1529484475", "no");
INSERT INTO `wp_options` VALUES("97516", "_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e", "a:2:{s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:57:\"WordPress Toronto - North - Let\'s Fix Your WordPress Site\";s:3:\"url\";s:50:\"https://www.meetup.com/WPToronto/events/245342153/\";s:6:\"meetup\";s:27:\"The Toronto WordPress Group\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/WPToronto/\";s:4:\"date\";s:19:\"2018-06-18 15:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:22:\"ON M2N 5V7, ON, Canada\";s:7:\"country\";s:2:\"ca\";s:8:\"latitude\";d:43.76781100000000179761627805419266223907470703125;s:9:\"longitude\";d:-79.41284899999999424835550598800182342529296875;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:17:\"WordPress Meet Up\";s:3:\"url\";s:65:\"https://www.meetup.com/Niagara-WordPress-Meetup/events/251776994/\";s:6:\"meetup\";s:24:\"Niagara WordPress Meetup\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Niagara-WordPress-Meetup/\";s:4:\"date\";s:19:\"2018-06-20 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:26:\"St. Catharines, ON, Canada\";s:7:\"country\";s:2:\"ca\";s:8:\"latitude\";d:43.1585400000000021236701286397874355316162109375;s:9:\"longitude\";d:-79.2452239999999932251739664934575557708740234375;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:29:\"Peterborough Wordpress Meetup\";s:3:\"url\";s:63:\"https://www.meetup.com/peterborough-wordpress/events/249335469/\";s:6:\"meetup\";s:29:\"Peterborough WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/peterborough-wordpress/\";s:4:\"date\";s:19:\"2018-06-27 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Peterborough, ON, Canada\";s:7:\"country\";s:2:\"ca\";s:8:\"latitude\";d:44.307670999999999139618012122809886932373046875;s:9:\"longitude\";d:-78.320503000000002202796167694032192230224609375;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:39:\"Creating WordPress Landing Pages Live! \";s:3:\"url\";s:50:\"https://www.meetup.com/WPToronto/events/251761773/\";s:6:\"meetup\";s:27:\"The Toronto WordPress Group\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/WPToronto/\";s:4:\"date\";s:19:\"2018-07-11 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:21:\"Etobicoke, ON, Canada\";s:7:\"country\";s:2:\"ca\";s:8:\"latitude\";d:43.6435000000000030695446184836328029632568359375;s:9:\"longitude\";d:-79.5654200000000031423041946254670619964599609375;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:57:\"WordPress Toronto - North - Let\'s Fix Your WordPress Site\";s:3:\"url\";s:50:\"https://www.meetup.com/WPToronto/events/245342186/\";s:6:\"meetup\";s:27:\"The Toronto WordPress Group\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/WPToronto/\";s:4:\"date\";s:19:\"2018-07-16 17:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:22:\"North York, ON, Canada\";s:7:\"country\";s:2:\"ca\";s:8:\"latitude\";d:43.7677690000000012560121831484138965606689453125;s:9:\"longitude\";d:-79.4147339999999957171894493512809276580810546875;}}}}", "no");
INSERT INTO `wp_options` VALUES("97517", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1529484476", "no");
INSERT INTO `wp_options` VALUES("97518", "_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"\n	Sat, 16 Jun 2018 09:27:20 +0000	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.0-alpha-43320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"The Month in WordPress: May 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2018/06/the-month-in-wordpress-may-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Jun 2018 09:09:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6065\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"This month saw two significant milestones in the WordPress community â€” the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May. Local Communities Celebrate the 15th Anniversary of WordPress Last Sunday, May [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4537:\"<p>This month saw two significant milestones in the WordPress community â€” the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Local Communities Celebrate the 15th Anniversary of WordPress</h2>\n\n<p>Last Sunday, May 27, WordPress turned 15 years old. This is a noteworthy occasion for an open-source project like WordPress and one well worth celebrating. To mark the occasion, <a href=\"https://wp15.wordpress.net/\">WordPress communities across the world gathered</a> for parties and meetups in honor of the milestone.</p>\n\n<p>Altogether, there were 224 events globally, with <a href=\"https://wp15.wordpress.net/about/\">a few more of those still scheduled</a> to take place in some communities â€” attend one in your area if you can.</p>\n\n<p>If your city doesnâ€™t have a WordPress meetup group, this is a great opportunity to start one! Learn how with <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the Meetup Organizer Handbook</a>, and join the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Privacy Tools added to WordPress core</h2>\n\n<p>In light of recent changes to data privacy regulations in the EU, WordPress Core shipped important updates <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">in the v4.9.6 release</a>, giving site owners tools to help them comply with the new General Data Protection Regulation (GDPR). It is worth noting, however, that WordPress cannot ensure you are compliant â€” this is still a site ownerâ€™s responsibility.</p>\n\n<p>The new privacy tools include a number of features focused on providing privacy and personal data management to all site users â€” asking commenters for explicit consent to store their details in a cookie, providing site owners with an easy way to publish a Privacy Policy, and providing data export and erasure tools to all site users that can be extended by plugins to allow the handling of data that they introduce.</p>\n\n<p>To find out more about these features and the other updates, read the <a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">4.9.6 update guide</a>. You can also get involved in contributing to this part of WordPress Core by jumping into the #core-privacy channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and following<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n<h2>Updates to the WordPress.org Privacy Policy</h2>\n\n<p>In a similar vein, WordPress.org itself has received <a href=\"https://wordpress.org/about/privacy/\">an updated Privacy Policy</a> to make clear what is being tracked and how your data is handled. Along with that, a <a href=\"https://wordpress.org/about/privacy/cookies/\">Cookie Policy</a> has also been added to explain just what is collected and stored in your browser when using the site.</p>\n\n<p>These policies cover all sites on the WordPress.org network â€” including WordPress.org, WordPress.net, WordCamp.org, BuddyPress.org, bbPress.org, and other related domains and subdomains. Itâ€™s important to note that this does not mean that anything has changed in terms of data storage; rather that these documents clarify what data is stored and how it is handled.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n	<li>WordCamp US 2018 has <a href=\"https://2018.us.wordcamp.org/2018/05/29/speak-at-wordcamp-us/\">opened up speaker submissions</a> for the December event.</li>\n	<li><a href=\"https://2018.europe.wordcamp.org/2018/05/15/wceu-live-stream-tickets/\">Live stream tickets are now available for WordCamp Europe</a>, happening on June 14-16.</li>\n	<li>Gutenberg, the new editor for WordPress Core, is getting ever closer to the final stages with <a href=\"https://make.wordpress.org/core/2018/05/18/whats-new-in-gutenberg-18th-may/\">a major update</a> this month.</li>\n	<li>In preparation for Gutenberg, <a href=\"https://core.trac.wordpress.org/changeset/43309\">significant work has been done</a> to improve WordPress Coreâ€™s build process.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next â€œMonth in WordPressâ€ post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6065\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"WordPress.org Privacy Policy Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/05/wordpress-org-privacy-policy-updates/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 May 2018 08:06:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"privacy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6047\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"The WordPress.org privacy policy has been updated, hurray! While we weren&#8217;t able to remove all the long sentences, we hope you find the revisions make it easier to understand: how we collect and use data, how long the data we collect is retained, and how you can request a copy of the data you&#8217;ve shared [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:657:\"<p>The <a href=\"https://wordpress.org/about/privacy/\">WordPress.org privacy policy</a> has been updated, hurray! While we weren&#8217;t able to remove <strong>all</strong> the long sentences, we hope you find the revisions make it easier to understand:</p>\n<ul>\n<li>how we collect and use data,</li>\n<li>how long the data we collect is retained, and</li>\n<li>how you can request a copy of the data you&#8217;ve shared with us.</li>\n</ul>\n<p>There hasn&#8217;t been any change to the data that WordPress.org collects or how that data is used; the privacy policy just provides more detail now. Happy reading, and thanks for using WordPress!</p>\n<p>&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6047\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress 4.9.6 Privacy and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 May 2018 19:21:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5920\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"WordPress 4.9.6 is now available. This is a privacy and maintenance release. We encourage you to update your sites to take advantage of the new privacy features. Privacy The European Union&#8217;s General Data Protection Regulation (GDPR) takes effect on May 25. The GDPR requires companies and site owners to be transparent about how they collect, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Allen Snook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13399:\"<p>WordPress 4.9.6 is now available. This is a <strong>privacy and maintenance release</strong>. We encourage you to update your sites to take advantage of the new privacy features.</p>\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?w=632&#038;ssl=1\" alt=\"A decorative header featuring the text &quot;GDPR&quot; and a lock inside of a blue shield, on multicolor green background.\" class=\"wp-image-5988\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?resize=1024%2C512&amp;ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<h2 style=\"text-align:left\">Privacy</h2>\n\n<p>The European Union&#8217;s General Data Protection Regulation (<strong>GDPR</strong>) takes effect on May 25. The GDPR requires companies and site owners to be transparent about how they collect, use, and share personal data. It also gives individuals more access and choice when it comes to how their own personal data is collected, used, and shared.<br /></p>\n\n<p>Itâ€™s important to understand that while the GDPR is a European regulation, its requirements apply to all sites and online businesses that collect, store, and process personal data about EU residents no matter where the business is located.<br /></p>\n\n<p>You can learn more about the GDPR from the European Commission&#8217;s <a href=\"http://ec.europa.eu/justice/smedataprotect/index_en.htm\">Data Protection page</a>.<br /></p>\n\n<p>We&#8217;re committed to supporting site owners around the world in their work to comply with this important law. As part of that effort, weâ€™ve added a number of new privacy features in this release.</p>\n\n<h2 style=\"text-align:left\">Comments</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/05/comments-border.png?w=632&#038;ssl=1\" alt=\"A screenshot of a comment form, where the new &quot;Save my name, email, and website in this browser for the next time I comment&quot; checkbox is featured.\" class=\"wp-image-5986\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/05/comments-border.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=300%2C291&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=768%2C744&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=1024%2C992&amp;ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<p>Logged-out commenters will be given a choice on whether their name, email address, and website are saved in a cookie on their browser.</p>\n\n<h2 style=\"text-align:left\">Privacy Policy Page</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=632&#038;ssl=1\" alt=\"A screenshot of the new Privacy Settings page.\" class=\"wp-image-5995\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=1898&amp;ssl=1 1898w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=300%2C177&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=768%2C453&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?resize=1024%2C604&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<p>Site owners can now designate a privacy policy page. This page will be shown on your login and registration pages. You should manually add a link to your policy to every page on your website. If you have a footer menu, thatâ€™s a great place to include your privacy policy.<br /></p>\n\n<p>In addition, weâ€™ve created a guide that includes insights from WordPress and participating plugins on how they handle personal data. These insights can be copied and pasted into your site&#8217;s privacy policy to help you get started.<br /></p>\n\n<p>If you maintain a plugin that collects data, we recommend including that information in WordPressâ€™ privacy policy guide. <a href=\"https://developer.wordpress.org/plugins/privacy/\">Learn more in our Privacy section of the Plugin Handbook</a>.</p>\n\n<h2 style=\"text-align:left\">Data Handling</h2>\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=632&#038;ssl=1\" alt=\"A screenshot of the new Export Personal Data tools page. Several export requests are listed on the page, to demonstrate how the new feature will work.\" class=\"wp-image-5999\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=2372&amp;ssl=1 2372w, https://i2.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=300%2C221&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=768%2C565&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=1024%2C753&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n<div class=\"wp-block-columns has-2-columns\">\n		<h3 class=\"layout-column-1\">Data Export</h3>\n	\n		<p class=\"layout-column-1\">Site owners can export a ZIP file containing a user&#8217;s personal data, using data gathered by WordPress and participating plugins.</p>\n	\n		<h3 class=\"layout-column-2\">Data Erasure</h3>\n	\n		<p class=\"layout-column-2\">Site owners can erase a user&#8217;s personal data, including data collected by participating plugins.</p>\n	</div>\n\n<blockquote class=\"wp-block-quote\">\n	<p>Howdy,</p>\n	<p>A request has been made to perform the following action on your account:<br /> </p>\n	<p><strong>Export Personal Data</strong><br /> </p>\n	<p>To confirm this, please click on the following link:<br /><a href=\"#\">http://.wordpress.org/wp-login.php?action=confirmaction&#8230;</a><br /> </p>\n	<p>You can safely ignore and delete this email if you do not want to<br /> take this action.<br /> </p>\n	<p>This email has been sent to <a href=\"#\">you@example.com</a>.<br /> </p>\n	<p>Regards,<br /><em>Your friends at WordPress</em><br /><a href=\"http://wordpress.org\"><em> http://wordpress.org</em></a></p>\n</blockquote>\n\n<p>Site owners have a new email-based method that they can use to confirm personal data requests. This request confirmation tool works for both export and erasure requests, and for both registered users and commenters.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2 style=\"text-align:left\">Maintenance</h2>\n\n<p>95 updates were made in WordPress 4.9.6. In addition to the above, particularly of note were:<br /></p>\n\n<ul>\n	<li>&#8220;Mine&#8221; has been added as a filter in the media library.</li>\n	<li>When viewing a plugin in the admin, it will now tell you the minimum PHP version required.</li>\n	<li>We&#8217;ve added new PHP polyfills for forwards-compatibility and proper variable validation.</li>\n	<li>TinyMCE was updated to the latest version (4.7.11).<br /></li>\n</ul>\n\n<p><a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">This post has more information about all of the issues fixed in 4.9.6 if you&#8217;d like to learn more</a>.</p>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.6</a> or venture over to Dashboard â†’ Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates will start updating soon.<br /></p>\n\n<p class=\"has-background has-very-light-gray-background-color\">Please note that if youâ€™re currently on WordPress 4.9.3, you should manually update your site immediately.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<p>Thank you to everyone who contributed to WordPress 4.9.6:<br /><a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/allendav/\">allendav</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/burlingtonbytes/\">Burlington Bytes</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/claudiu/\">claudiu</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ericdaams/\">Eric Daams</a>, <a href=\"https://profiles.wordpress.org/fclaussen/\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jesperher/\">Jesper V Nielsen</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">JJJ</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/dejliglama/\">KÃ¥re Mulvad Steffensen</a>, <a href=\"https://profiles.wordpress.org/lakenh/\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/macbookandrew/\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbarthmaier/\">pbrocks</a>, <a href=\"https://profiles.wordpress.org/postphotos/\">postphotos</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/presstigers/\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/littlerchicken/\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/satollo/\">Stefano Lissa</a>, <a href=\"https://profiles.wordpress.org/stephdau/\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/teddytime/\">teddytime</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">thomasplevy</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/voneff/\">voneff</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, and <a href=\"https://profiles.wordpress.org/xkon/\">Xenos (xkon) Konstantinos</a>.<br /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5920\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: April 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2018/05/the-month-in-wordpress-april-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 May 2018 08:30:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5891\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"This past month saw a lot of preparation for upcoming events and releases across the WordPress project. Read on to find out more about these plans, and everything else that happened around the community in April. The WordPress 15th Anniversary is Coming On May 27 2018, WordPress will turn 15 years old â€” this is [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4981:\"<p>This past month saw a lot of preparation for upcoming events and releases across the WordPress project. Read on to find out more about these plans, and everything else that happened around the community in April.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>The WordPress 15th Anniversary is Coming</h2>\n\n<p>On May 27 2018, <a href=\"https://wordpress.org/news/2018/04/celebrate-the-wordpress-15th-anniversary-on-may-27/\">WordPress will turn 15 years old</a> â€” this is a huge milestone for the project, or, indeed, for any open-source platform. The Community Team has been hard at work helping communities around the world plan local anniversary parties.</p>\n\n<p>Check <a href=\"https://wp15.wordpress.net/\">the central anniversary website</a> to see if thereâ€™s already a party being planned near you. These parties are all organized by local communities â€” if thereâ€™s no local community in your area, you can <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/#starting-a-new-meetup-com-group\">start one today</a> and host a party yourself.</p>\n\n<h2>Work has Started on a Gutenberg Migration Guide</h2>\n\n<p>With Gutenberg, the upcoming WordPress content editor, in rapid development, a lot of people have been wondering how they will convert their existing plugins to work with the new features. To mitigate the issues here and help people overcome any migration hurdles, <a href=\"https://make.wordpress.org/core/2018/04/26/your-help-wanted-gutenberg-migration-guide/\">a Gutenberg Migration Guide is underway</a> to assist developers with making their code Gutenberg-compatible.</p>\n\n<p>If youâ€™d like to contribute to this guide, you can review <a href=\"https://github.com/danielbachhuber/gutenberg-migration-guide\">the existing documentation on GitHub</a> and <a href=\"https://github.com/danielbachhuber/gutenberg-migration-guide/issues\">open a new issue</a> if you find something to add.</p>\n\n<h2>Theme Review Team Launches Trusted Authors Program</h2>\n\n<p>Reviews of themes submitted to the Theme Directory can take quite a while to complete. In order to combat this issue and to make the theme submission process smoother for everyone, <a href=\"https://make.wordpress.org/themes/2018/04/30/trusted-authors-program/\">the Theme Review Team is introducing a Trusted Authors Program</a>.</p>\n\n<p>This program will allow frequent and reliable theme authors to apply for trusted status, allowing them to upload themes more frequently and to have their themes automatically approved. This will allow more high-quality themes to be added to the directory, as well as recognize the hard work that authors put in to build their themes.</p>\n\n<p>If you would like to get involved with reviewing themes, you can read <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">their getting started guide</a>, follow the <a href=\"https://make.wordpress.org/themes/\">team blog</a> and join the #themereview channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li><a href=\"https://wordpress.org/news/2018/04/wordpress-4-9-5-security-and-maintenance-release/\">WordPress 4.9.5 was released</a> early this month, fixing numerous bugs and potential security issues. The two leads for this release <a href=\"https://make.wordpress.org/core/2018/04/20/4-9-5-feedback-leading-a-wordpress-minor-release/\">published some interesting feedback</a> about the process.</li>\n    <li>In addition to the Trusted Authors Program mentioned above, the Theme Review Team is <a href=\"https://make.wordpress.org/themes/2018/04/09/changes-in-theme-review-process/\">making some changes to their review process</a> to minimize theme review delays.<br /></li>\n    <li>The Marketing Team produced <a href=\"https://make.wordpress.org/marketing/2018/04/24/contributor-day-onboarding-pdf/\">a handy Contributor Day onboarding PDF</a> for organizers to hand out to contributors attending WordCamps.</li>\n    <li>The Accessibility Team is actively looking for contributors for <a href=\"https://make.wordpress.org/accessibility/handbook/\">their handbook</a>.</li>\n    <li>A new type of WordCamp, <a href=\"https://make.wordpress.org/community/2018/04/03/want-to-help-organize-a-wordcamp-for-organizers/\">targeted at organizers</a>, is in the planning stages now.</li>\n    <li><a href=\"https://wordpress.org/about/\">The WordPress.org About pages</a> received a significant redesign to make them more clear and useful.</li>\n    <li>The Community Team <a href=\"https://make.wordpress.org/community/2018/04/27/wordcamp-incubator-program-2018-2019-roadmap/\">posted the roadmap</a> for this yearâ€™s WordCamp Incubator program.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next â€œMonth in WordPressâ€ post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5891\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Celebrate the WordPress 15th Anniversary on May 27\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wordpress.org/news/2018/04/celebrate-the-wordpress-15th-anniversary-on-may-27/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Apr 2018 21:07:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Store\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"wp15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5753\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"May 27, 2018 is the 15th anniversary of the first WordPress releaseÂ ï»¿â€” and we can&#8217;t wait to celebrate! Party time! Join WordPress fans all over the world in celebrating the 15th Anniversary of WordPress by throwing your own party! Here&#8217;s how you can join in the fun: Check the WordPress 15th Anniversary website to see [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3948:\"<p>May 27, 2018 is the <strong>15th anniversary</strong> of the <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">first WordPress release</a>Â <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">ï»¿</a>â€” and we can&#8217;t wait to celebrate!</p>\n\n<figure class=\"wp-block-image aligncenter\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/04/wp15_mark-1.png?resize=342%2C268&#038;ssl=1\" alt=\"\" class=\"wp-image-5841\" width=\"342\" height=\"268\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/04/wp15_mark-1.png?w=2188&amp;ssl=1 2188w, https://i1.wp.com/wordpress.org/news/files/2018/04/wp15_mark-1.png?resize=300%2C236&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/04/wp15_mark-1.png?resize=768%2C605&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/04/wp15_mark-1.png?resize=1024%2C806&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/04/wp15_mark-1.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/04/wp15_mark-1.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 342px) 100vw, 342px\" data-recalc-dims=\"1\" /></figure>\n\n<h2>Party time!</h2>\n\n<p>Join WordPress fans all over the world in celebrating the 15th Anniversary of WordPress by throwing your own party! Here&#8217;s how you can join in the fun:</p>\n\n<ol>\n    <li>Check the <a href=\"https://wp15.wordpress.net/about/\">WordPress 15th Anniversary website</a> to see if there&#8217;s a party already planned for your town. If there is, RSVP for the party and invite your friends!<br /></li>\n    <li>If there isn&#8217;t, then pick a place to go where a bunch of people can be merry â€” a park, a pub, a backyard; any family-friendly venue will do!</li>\n    <li>List your party with <a href=\"https://www.meetup.com/pro/wordpress/\">your local WordPress meetup group</a> (Don&#8217;t have a group? <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/#starting-a-new-meetup-com-group\">Start one!</a>)Â  and then spread the word to other local meetups, tech groups, press, etc and get people to say theyâ€™ll come to your party.</li>\n    <li><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/wordpress-15th-anniversary-celebrations/#request-wordpress-15th-anniversary-swag\">Request</a> some special 15th anniversary WordPress swag (no later than April 27, please, so we have time to ship it to you).<br /></li>\n    <li>Have party attendees post photos, videos, and the like with the #WP15 hashtag, and <a href=\"https://wp15.wordpress.net/live/\">check out the social media stream</a> to see how the rest of the world is sharing and celebrating.</li>\n</ol>\n\n<p>Don&#8217;t miss this chance to participate in a global celebration of WordPress!<br /></p>\n\n<h2>Special Swag</h2>\n\n<p>In honor of the 15th anniversary, weâ€™ve added some <a href=\"https://mercantile.wordpress.org/product-category/wordpress-15/\">special 15th anniversary items</a> in the swag store â€” you can use the offer code <strong>CELEBRATEWP15</strong> to take 15% off this (and any other WordPress swag you buy), all the way through the end of 2018!</p>\n\n<p>Keep checking the swag store, because we&#8217;ll be adding more swag over the next few weeks!</p>\n\n<h2>Share the fun</h2>\n\n<p>However you celebrate the WordPress 15th anniversary â€” with <a href=\"https://wp15.wordpress.net/about/\">a party</a>, with <a href=\"https://wp15.wordpress.net/swag/\">commemorative swag</a>, by <a href=\"https://wp15.wordpress.net/live/\">telling the world</a> what WordPress means to you â€” remember to use the #WP15 hashtag to share it! And don&#8217;t forget to <a href=\"https://wp15.wordpress.net/live/\">check the stream of WordPress 15th anniversary posts</a>.</p>\n\n<p>When <a href=\"https://venturebeat.com/2018/03/05/wordpress-now-powers-30-of-websites/\">30% of the internet</a> has a reason to celebrate, you know it&#8217;s going to be great! </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"GDPR Compliance Tools in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2018/04/gdpr-compliance-tools-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Apr 2018 20:11:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5728\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:188:\"GDPR compliance is an important consideration for all WordPress websites. The GDPR Compliance team is looking for help to test the privacy tools that are currently being developed in core.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3914:\"<p>GDPR compliance is an important consideration for all WordPress websites. The GDPR Compliance team is looking for help to test the privacy tools that are currently being developed in core. </p>\n\n<h2>What is GDPR?</h2>\n\n<p>GDPR stands for <a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\">General Data Protection Regulation</a> and is intended to strengthen and unify data protection for all individuals within the European Union. Its primary aim is to give control back to the EU residents over their personal data. <br /></p>\n\n<p>Why the urgency? Although the GDPR was introduced two years ago, it becomes Â enforceable starting May 25, 2018.</p>\n\n<h2>Make WordPress GDPR Compliance Team</h2>\n\n<p>Currently, the GDPR Compliance Team understands that helping WordPress-based sites become compliant is a large and ongoing task. The team is focusing on creating a comprehensive core policy, plugin guidelines, privacy tools and documentation. All of this requires your help.<br /></p>\n\n<p>The GDPR Compliance Team is focusing on four main areas:</p>\n\n<ul>\n    <li>Add functionality to assist site owners in creating comprehensive privacy policies for their websites.</li>\n    <li>Create guidelines for plugins to become GDPR ready.</li>\n    <li>Add administration tools to facilitate compliance and encourage user privacy in general.</li>\n    <li>Add documentation to educate site owners on privacy, the main GDPR compliance requirements, and on how to use the new privacy tools.</li>\n</ul>\n\n<h2>Donâ€™t we already have a privacy policy?</h2>\n\n<p>Yes and no. That said, The GDPR puts tighter guidelines and restrictions. Though we have many plugins that create privacy pages, we need means to generate a unified, comprehensive privacy policy. We will need tools for users to easily come into compliance.<br /></p>\n\n<p>Site owners will be able to create GDPR compliant privacy policy in three steps:</p>\n\n<ol>\n    <li>Adding a dedicated page for the policy.<br /></li>\n    <li>Adding privacy information from plugins.</li>\n    <li>Reviewing and publishing the policy.</li>\n</ol>\n\n<p>A new &#8220;postbox&#8221; will be added to the Edit Page screen when editing the policy. All plugins that collect or store user data will be able to add privacy information there. In addition it will alert the site owners when any privacy information changes after a plugin is activated, deactivated, or updated.<br /></p>\n\n<p>There is a new functionality to confirm user requests by email address. It is intended for site owners to be able to verify requests from users for displaying, downloading, or anonymizing of personal data.<br /></p>\n\n<p>A new &#8220;Privacy&#8221; page is added under the &#8220;Tools&#8221; menu. It will display new, confirmed requests from users, as well as already fulfilled requests. It will also contain the tools for exporting and anonymizing of personal data and for requesting email confirmation to avoid abuse attempts.<br /></p>\n\n<p>New section on privacy will be added to the <a href=\"https://developer.wordpress.org/plugins/\">Plugin Handbook</a>. It will contain some general information on user privacy, what a plugin should do to be compliant, and also tips and examples on how to use the new privacy related functionality in WordPress.<br /></p>\n\n<p>The new privacy tools are scheduled for release at the end of April or beginning of May 2018.</p>\n\n<h2>How can you get involved?</h2>\n\n<p>We would love to have your help. The first step is awareness and education. For more information about the upcoming privacy tools see ï»¿<a href=\"https://make.wordpress.org/core/2018/03/28/roadmap-tools-for-gdpr-compliance/\">the roadmap</a>.</p>\n\n<p>If you would like to get involved in building WordPress Core and testing the new privacy tools, please join the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress</a> Slack group.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5728\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.9.5 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2018/04/wordpress-4-9-5-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Apr 2018 19:56:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5645\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"WordPress 4.9.5 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9.4 and earlier are affected by three security issues. As part of the core team&#x27;s ongoing commitment to security hardening, the following fixes have been implemented [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6347:\"<p>WordPress 4.9.5 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n<p>WordPress versions 4.9.4 and earlier are affected by three security issues. As part of the core team&#x27;s ongoing commitment to security hardening, the following fixes have been implemented in 4.9.5:</p>\n\n<ol>\n    <li>Don&#x27;t treat <code>localhost</code> as same host by default.</li>\n    <li>Use safe redirects when redirecting the login page if SSL is forced.</li>\n    <li>Make sure the version string is correctly escaped for use in generator tags.</li>\n</ol>\n\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">ï»¿coordinated security disclosure</a>:Â <a href=\"https://profiles.wordpress.org/xknown\">xknown</a> of the WordPress Security Team,Â <a href=\"https://hackerone.com/nitstorm\">Nitin Venkatesh (nitstorm)</a>, and <a href=\"https://twitter.com/voldemortensen\">Garth Mortensen</a> of the WordPress Security Team.</p>\n\n<p>Twenty-five other bugs were fixed in WordPress 4.9.5. Particularly of note were:</p>\n\n<ul>\n    <li>The previous styles on caption shortcodes have been restored.</li>\n    <li>Cropping on touch screen devices is now supported.</li>\n    <li>A variety of strings such as error messages have been updated for better clarity.</li>\n    <li>The position of an attachmentÂ placeholder during uploads has been fixed.</li>\n    <li>Custom nonce functionality in the REST API JavaScript client has been made consistent throughout the code base.</li>\n    <li>Improved compatibility with PHP 7.2.</li>\n</ul>\n\n<p><a href=\"https://make.wordpress.org/core/2018/04/03/wordpress-4-9-5/\">This post has more information about all of the issues fixed in 4.9.5 if you&#x27;d like to learn more</a>.</p>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.5</a> or venture over to Dashboard â†’ Updates and click &quot;Update Now.&quot; Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.5:</p>\n\n<p><a href=\"https://profiles.wordpress.org/1265578519-1/\">1265578519</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alexgso/\">alexgso</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrei0x309/\">andrei0x309</a>, <a href=\"https://profiles.wordpress.org/antipole/\">antipole</a>, <a href=\"https://profiles.wordpress.org/aranwer104/\">Anwer AR</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/blair-jersyer/\">Blair jersyer</a>, <a href=\"https://profiles.wordpress.org/bandonrandon/\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/codegrau/\">codegrau</a>, <a href=\"https://profiles.wordpress.org/conner_bw/\">conner_bw</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/designsimply/\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/electricfeet/\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/ericmeyer/\">ericmeyer</a>, <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/junaidkbr/\">Junaid Ahmed</a>, <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/lakenh/\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mrmadhat/\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/nandorsky/\">nandorsky</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/qcmiao/\">qcmiao</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/ravanh/\">RavanH</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sebastienthivinfocom/\">Sebastien SERRE</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale/\">Thomas Vitale</a>, <a href=\"https://profiles.wordpress.org/kwonye/\">Will Kwon</a>, and <a href=\"https://profiles.wordpress.org/yahil/\">Yahil Madakiya</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: March 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2018/04/the-month-in-wordpress-march-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Apr 2018 08:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5632\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:317:\"With a significant new milestone and some great improvements to WordPress as a platform, this month has been an important one for the project. Read on to find out more about what happened during the month of March. WordPress Now Powers 30% of the Internet Over the last 15 years, the popularity and usage of [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4328:\"<p>With a significant new milestone and some great improvements to WordPress as a platform, this month has been an important one for the project. Read on to find out more about what happened during the month of March.\n\n</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress Now Powers 30% of the Internet</h2>\n\n<p>Over the last 15 years, the popularity and usage of WordPress has been steadily growing. That growth hit a significant milestone this month when <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">W3Techs reported that WordPress now powers over 30% of sites on the web.</a></p>\n\n<p>The percentage is determined based on W3Techsâ€™ review of the top 10 million sites on the web, and itâ€™s a strong indicator of the popularity and flexibility of WordPress as a platform.</p>\n\n<p>If you would like to have hand in helping to grow WordPress even further, <a href=\"https://make.wordpress.org/\">you can get involved today</a>.</p>\n\n<h2>WordPress Jargon Glossary Goes Live</h2>\n\n<p>The WordPress Marketing Team has been hard at work lately putting together <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">a comprehensive glossary of WordPress jargon</a> to help newcomers to the project become more easily acquainted with things.</p>\n\n<p>The glossary <a href=\"https://make.wordpress.org/marketing/2018/02/28/wordpress-jargon-glossary/\">is available here</a> along with a downloadable PDF to make it simpler to reference offline.</p>\n\n<p>Publishing this resource is part of an overall effort to make WordPress more easily accessible for people who are not so familiar with the project. If you would like to assist the Marketing Team with this, you can follow <a href=\"https://make.wordpress.org/marketing/\">the team blog</a> and join the #marketing channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n<h2>Focusing on Privacy in WordPress</h2>\n\n<p>Online privacy has been in the news this month for all the wrong reasons. It has reinforced the commitment of the GDPR Compliance Team to continue working on enhancements to WordPress core that allow site owners to improve privacy standards.</p>\n\n<p>The team&#x27;s work, and the wider privacy project, spans four areas: Adding tools which will allow site administrators to collect the information they need about their sites, examining the plugin guidelines with privacy in mind, enhancing privacy standards in WordPress core, and creating documentation focused on best practices in online privacy.</p>\n\n<p>To get involved with the project, you can <a href=\"https://make.wordpress.org/core/2018/03/28/roadmap-tools-for-gdpr-compliance/\">view the roadmap</a>, <a href=\"https://make.wordpress.org/core/tag/gdpr-compliance/\">follow the updates</a>, <a href=\"https://core.trac.wordpress.org/query?status=!closed&amp;keywords=~gdpr\">submit patches</a>, and join the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat\">Making WordPress Slack group</a>. Office hours are 15:00 UTC on Wednesdays.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li>The WordPress Foundation has published <a href=\"https://wordpressfoundation.org/2017-annual-report/\">their annual report for 2017</a> showing just how much the community has grown over the last year.</li>\n    <li>The dates for WordCamp US <a href=\"https://2018.us.wordcamp.org/2018/03/13/announcing-wordcamp-us-2018/\">have been announced</a> â€” this flagship WordCamp event will be held on 7-9 December this year in Nashville, Tennessee.</li>\n    <li>WordPress 4.9.5 is due for release on April 3 â€” <a href=\"https://make.wordpress.org/core/2018/03/21/wordpress-4-9-5-beta/\">find out more here</a>.</li>\n    <li>Version 2.5 of Gutenberg, the new editor for WordPress core, <a href=\"https://make.wordpress.org/core/2018/03/29/whats-new-in-gutenberg-29th-march/\">was released this month</a> with a host of great improvements.</li>\n    <li>WordSesh, a virtual WordPress conference, <a href=\"http://wordsesh.com/\">is returning in July this year</a>.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next â€œMonth in WordPressâ€ post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em><br /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5632\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: February 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/03/the-month-in-wordpress-february-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Mar 2018 08:41:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5613\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month. WordPress 4.9.3 &#38; 4.9.4 [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5936:\"<p>Judging by the flurry of activity across the WordPress project throughout February, it looks like everyone is really getting into the swing of things for 2018. There have been a lot of interesting new developments, so read on to see what the community has been up to for the past month.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>WordPress 4.9.3 &amp; 4.9.4</h2>\n\n<p>Early in the month, <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/\">version 4.9.3 of WordPress was released</a>, including a number of important bug fixes. Unfortunately it introduced a bug that prevented many sites from automatically updating to future releases. To remedy this issue, <a href=\"https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/\">version 4.9.4 was released</a> the following day requiring many people to manually update their sites.</p>\n\n<p>While this kind of issue is always regrettable, the good thing is that it was fixed quickly, and that not all sites had updated to 4.9.3 yet, which meant they bypassed the bug in that version.</p>\n\n<p>You can find out more technical information about this issue <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\">on the Core development blog</a>.</p>\n\n<h2>The WordCamp Incubator is Back</h2>\n\n<p>In 2016, the Global Community Team ran an experimental program to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event. This program was dubbed the WordCamp Incubator, and it was so successful in the three cities where it ran that <a href=\"https://wordpress.org/news/2018/02/wordcamp-incubator-2-0/\">the program is back for 2018</a>.</p>\n\n<p>Right now, the Community Team is looking for cities to be a part of this yearâ€™s incubator by <a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application\">taking applications</a>. Additionally, each incubator community will need an experienced WordCamp organizer to assist them as a co-lead organizer for their event â€” if that sounds interesting to you, then you can <a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-co-lead-application\">fill in the application form for co-leads</a>.</p>\n\n<p>You can find out further information about the WordCamp Incubator <a href=\"https://make.wordpress.org/community/2018/02/19/wordcamp-incubator-program-2018-announcement/\">on the Community Team blog</a>.</p>\n\n<h2>WordPress Meetup Roundtables scheduled for March</h2>\n\n<p>In order to assist local WordPress meetup organizers with running their meetup groups, some members of the Community Team have organized <a href=\"https://make.wordpress.org/community/2018/02/23/wordpress-meetup-roundtables-scheduled-for-march/\">weekly meetup roundtable discussions through the month of March</a>.</p>\n\n<p>These will be run as video chats at 16:00 UTC every Wednesday this month and will be a great place for meetup organizers to come together and help each other out with practical ideas and advice.</p>\n\n<p>If you are not already in the WordPress meetup program and would like to join, you can find out more information in <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the WordPress Meetup Organizer Handbook</a>.</p>\n\n<h2>GDPR Compliance in WordPress Core</h2>\n\n<p>The General Data Protection Regulation (GDPR) is an upcoming regulation that will affect all online services across Europe. In order to prepare for this, a working group has been formed to make sure that WordPress is compliant with the GDPR regulations.</p>\n\n<p>Aside from the fact that this will be a requirement for the project going forward, it will also have an important and significant impact on the privacy and security of WordPress as a whole. The working group has posted <a href=\"https://make.wordpress.org/core/2018/02/19/proposed-roadmap-tools-for-gdpr-compliance/\">their proposed roadmap</a> for this project and it looks very promising.</p>\n\n<p>To get involved in building WordPress Core, jump into the #gdpr-compliance channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n    <li>WPShout published <a href=\"https://wpshout.com/complete-guide-wordpress-security/\">a thorough guide to WordPress security</a>.</li>\n    <li>The Community Team has published interesting statistics from the WordCamp program in <a href=\"https://make.wordpress.org/community/2018/02/27/wordcamps-in-2016/\">2016</a> and <a href=\"https://make.wordpress.org/community/2018/02/28/wordcamps-in-2017/\">2017</a>.</li>\n    <li><a href=\"https://make.wordpress.org/community/2018/02/15/potential-addition-of-a-new-onboarding-team/\">An intriguing proposal has been made</a> for a new â€˜Onboardingâ€™ team to be started in the WordPress project.</li>\n    <li>The new editing experience for WordPress, named Gutenberg, continues to be actively developed with <a href=\"https://make.wordpress.org/core/2018/02/16/whats-new-in-gutenberg-16th-february/\">a feature-packed release</a> this past month.</li>\n    <li>The Advanced WordPress Facebook group <a href=\"https://www.youtube.com/watch?v=4vS_jR5-nIo\">held an interview with WordPress co-founder, Matt Mullenweg</a> about the Gutenberg project.</li>\n    <li><a href=\"https://make.wordpress.org/meta/2018/02/27/two-factor-authentication-on-wp-org/\">Two factor authentication is on its way to the WordPress.org network</a> â€” this will be a great improvement to the overall security of the project.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next â€œMonth in WordPressâ€ post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5613\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordCamp Incubator 2.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2018/02/wordcamp-incubator-2-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Feb 2018 22:53:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5577\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:343:\"WordCamps are informal, community-organized events that are put together by a team of local WordPress users who have a passion for growing their communities. They are born out of active WordPress meetup groups that meet regularly and are able to host an annual WordCamp event. This has worked very well in many communities, with over [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2450:\"<p><a href=\"https://central.wordcamp.org/\">WordCamps</a> are informal, community-organized events that are put together by a team of local WordPress users who have a passion for growing their communities. They are born out of active WordPress meetup groups that meet regularly and are able to host an annual WordCamp event. This has worked very well in many communities, with over 120 WordCamps being hosted around the world in 2017.<br /></p>\n\n<p>Sometimes though, passionate and enthusiastic community members canâ€™t pull together enough people in their community to make a WordCamp happen. To address this, we introduced <a href=\"https://wordpress.org/news/2016/02/experiment-wordcamp-incubator/\">the WordCamp Incubator program</a> in 2016.<br /></p>\n\n<p>The goal of the incubator program is <strong>to help spread WordPress to underserved areas by providing more significant organizing support for their first WordCamp event.</strong> In 2016, members of <a href=\"https://make.wordpress.org/community/\">the global community team</a> worked with volunteers in three cities â€” Denpasar, Harare and MedellÃ­n â€” giving direct, hands-on assistance in making local WordCamps possible. All three of these WordCamp incubators <a href=\"https://make.wordpress.org/community/2017/06/30/wordcamp-incubator-report/\">were a great success</a>, so we&#x27;re bringing the incubator program back for 2018.<br /></p>\n\n<p>Where should the next WordCamp incubators be? If you have always wanted a WordCamp in your city but havenâ€™t been able to get a community started, this is a great opportunity. We will be taking applications for the next few weeks, then will get in touch with everyone who applied to discuss the possibilities. We will announce the chosen cities by the end of March.<br /></p>\n\n<p><strong>To apply, </strong><a href=\"https://wordcampcentral.polldaddy.com/s/wordcamp-incubator-program-2018-city-application\"><strong>fill in the application</strong></a><strong> by March 15, 2018.</strong> You donâ€™t need to have any specific information handy, itâ€™s just a form to let us know youâ€™re interested. You can apply to nominate your city even if you donâ€™t want to be the main organizer, but for this to work well we will need local liaisons and volunteers, so please only nominate cities where you live or work so that we have at least one local connection to begin.<br /></p>\n\n<p>We&#x27;re looking forward to hearing from you!<br /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 19 Jun 2018 20:47:56 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"â›„\";s:13:\"last-modified\";s:29:\"Sat, 16 Jun 2018 09:27:20 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20130911110210\";}", "no");
INSERT INTO `wp_options` VALUES("97519", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1529484476", "no");
INSERT INTO `wp_options` VALUES("97520", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1529441276", "no");
INSERT INTO `wp_options` VALUES("97521", "_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "1529484477", "no");
INSERT INTO `wp_options` VALUES("97522", "_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.0.8 of the Akismet WordPress Plugin Is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2018/06/19/version-4-0-8-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:784:\"<p>Version 4.0.8 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>4.0.8 contains the following changes:</p>\n<ul>\n<li>Improved the grammar and consistency of the in-admin privacy related notes (notice and config).</li>\n<li>Revised in-admin explanation of the comment form privacy notice to make its usage clearer.</li>\n<li>Added <code>rel=â€nofollow noopenerâ€</code> to the comment form privacy notice to improve SEO and security.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Jun 2018 18:35:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Josh Smith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Mark Jaquith: Making ScoutDocs: Build Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5665\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://markjaquith.wordpress.com/2018/06/19/making-scoutdocs-build-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2928:\"<p>Continuing my series aboutÂ <a href=\"https://wordpress.org/plugins/scoutdocs/\">ScoutDocs</a>Â and the process of building it, this week I&#8217;m talking about <strong>Build Tools</strong>.</p>\n<p><img /><em>What is <a href=\"https://scoutdocs.com/\">ScoutDocs</a>? ScoutDocs is a WordPress plugin that adds simple file-sharing to your WordPress site.</em></p>\n<p>Coding in React involves JSX, a bizarre-but-wonderful XML syntax that you dump directly into the middle of your JavaScript code. It feels exquisitely wrong. Browsers agree, so your JSX-containing JS code will have to be transpiled to regular JavaScript. This can involve using a complex maze of tools. Babel, NPM, Webpack, Browserify, Gulp, Grunt, Uglify, Uglifyify (yes, you read that right), and more. You have decisions to make, and you will find fierce advocates for various solutions.</p>\n<p>For ScoutDocs, I decided to go with <a href=\"https://gruntjs.com/\">Grunt</a> for task running, because I was already comfortable with it, and I needed it for <a href=\"https://www.npmjs.com/package/grunt-wp-deployhttps://www.npmjs.com/package/grunt-wp-deploy\">grunt-wp-deploy</a>. <b>Use a task runner you are already comfortable with.</b> Even if it is just NPM scripts. Youâ€™re learning a lot of new things already. Itâ€™s okay to keep your task runner setup.</p>\n<p>Next, I had to choose a JS bundler which would let me write and use modular code that gets pulled together into a browser-executable bundle. After deliberating between <a href=\"https://webpack.js.org\">Webpack</a> and <a href=\"http://browserify.org/\">Browserify</a>, I chose Browserify. <b>Webpack is really complicated.</b> It is also very powerful. I recommend you avoid it until you need it. I havenâ€™t needed it yet, and found Browserify to be easier to configure and use, even though itâ€™s a bit on the slow side.</p>\n<p>As I was building ScoutDocs and tweaking my dev tools, tweaking my Grunt file, and writing code to search/replace strings etc, I began to feel like the time I was spending too much time on tooling. Was I becoming one of those people who spend all their time listening to productivity podcasts instead ofâ€¦ being productive? I can see how someone could get sucked into that trap, but putting a reasonable amount of time into configuring your development tools can pay dividends for you beyond simply the time saved. It can also prevent mistakes, keep you in coding mode more often, and increasing your confidence in your code builds. <b>Spend the time up front to make your tools work for you.</b></p>\n<p>Other posts in this series:</p>\n<ul>\n<li><a href=\"https://markjaquith.wordpress.com/2018/06/01/lessons-learned-making-scoutdocs-outsourcing/\">Outsourcing</a></li>\n<li><a href=\"https://markjaquith.wordpress.com/2018/06/11/making-scoutdocs-react\">React</a></li>\n<li>WordPress Rest API</li>\n<li>PHP 7</li>\n<li>Build tools</li>\n<li>Unit testing</li>\n</ul>\n<p>&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Jun 2018 17:59:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: WP Rig â€“ A WordPress Starter Theme and Build Process in One\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81618\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wp-rig-a-wordpress-starter-theme-and-build-process-in-one\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3750:\"<p><a href=\"http://mor10.com/\">Morten Rand-Hendricksen</a>, Senior Staff Instructor at <a href=\"https://www.linkedin.com/learning/\">LinkedIn Learning</a>, has released <a href=\"https://wprig.io/\">WP Rig</a>. WP Rig is a WordPress starter theme and build process combined into one. The starter theme provides a minimal set of templates with the ability to drag-and-drop files from the <a href=\"https://developer.wordpress.org/themes/basics/template-hierarchy/\">WordPress template hierarchy</a>.</p>\n\n<p>It contains a heavily optimized code and file structure, support for lazy-loading images, and documented helper functions. The build process requires no configuration and provides a modern foundation to develop on top of. </p>\n\n<p>Although WP Rig ships with a starter theme, the build process works with any theme you choose to use. WP Rig uses <a href=\"https://gulpjs.com/\">Gulp</a> to manage and optimize files, <a href=\"https://browsersync.io/\">BrowserSync</a> to immediately preview from inside the browser, and ES2015 to parse JavaScript. <a href=\"https://babeljs.io/\">Babel</a>, <a href=\"https://github.com/postcss/postcss\">PostCSS</a>, and <a href=\"http://cssnext.io/\">CSSNext</a> is used to parse CSS. The <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">WordPress Coding Standards</a> and <a href=\"https://eslint.org/\">ESLint</a> are used to check code quality. </p>\n\n<p><a href=\"https://code.visualstudio.com/\">VS Code</a> is tightly integrated with WP Rig but developers can use any code editor they choose. </p>\n\n<p>Rand-Hendriksen says the goal of the project is to provide a starting point where developers can write accessible and performant code from the start using best practices. <br /></p>\n\n<p>&#8220;WordPress and the web it lives on has evolved,&#8221; he said. &#8220;So have the tools we use to build experiences and interactions on and with the web. WordPress theme development is no longer &#8216;just&#8217; about writing PHP and CSS and JavaScript. </p>\n\n<p>&#8220;Itâ€™s also about accessibility and build processes and coding standards and performance best practices and and modern coding languages and browser support and a myriad of other topics.</p>\n\n<p>&#8220;WP Rig bridges this gap by building accessibility, performance, coding standards, and modern coding best practices in by default.&#8221;</p>\n\n<p>LinkedIn Learning donated Rand-Hendriksen&#8217;s time to WP Rig. In collaboration with <a href=\"https://xwp.co/\">XWP</a>, <a href=\"https://medinathoughts.com/2018/05/17/progressive-wordpress/\">Google</a>, and other members of the WordPress community, it was released as an open source project that is maintained by him and <a href=\"https://github.com/bamadesigner\">Rachel Cherry</a>. <br /></p>\n\n<p>&#8220;It is not owned or branded by any company, nor beholden to a company goal or ideology,&#8221; he said. &#8220;The purpose and goal of WP Rig is to provide the WordPress community with a theme development rig that puts accessibility, performance, and modern best practices in the front seat to the benefit of the end-user and the web as a whole.&#8221;</p>\n\n<p>You can download WP Rig for free <a href=\"https://wprig.io\">from the project&#8217;s site</a> or <a href=\"https://github.com/wprig/wprig/\">on GitHub</a>. To learn how to use it, LinkedIn Learning is offering a free course entitled &#8220;<a href=\"https://wprig.io/learn/\">Build WordPress Themes with WP Rig</a>.&#8221; The course covers a myriad of topics including, configuring the VS Code workpace settings, Templates, and AMP integration. </p>\n\n<p>For more information about WP Rig check out the <a href=\"https://wprig.io/introducing-wprig-wordpress/\">project&#8217;s official announcement</a>. <br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Jun 2018 01:19:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: WordCamp Europe 2018 Contributor Day Posts Record Turnout Amid Wi-Fi Outage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81514\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/wordcamp-europe-2018-contributor-day-posts-record-turnout-amid-wi-fi-outage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7440:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/06/wceu-2018-contributor-day.jpg?ssl=1\"><img /></a></p>\n<p>WordCamp Europe hosted a successful contributor day in Belgrade despite a wi-fi outage during the first half of the day. The event posted record numbers with 529 attendees registered to contribute across 24 teams.</p>\n<p>Contributors had the opportunity to make connections and conversations with team members and representatives from other teams while the wi-fi was down.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Had the chance to meet <a href=\"https://twitter.com/aaroncampbell?ref_src=twsrc%5Etfw\">@aaroncampbell</a> and discuss WordPress core security with him and a couple of attendees on <a href=\"https://twitter.com/hashtag/wceu?src=hash&ref_src=twsrc%5Etfw\">#wceu</a> contributor day. Thanks for the amazing chat folks!</p>\n<p>It is my first WordCamp Europe and it definitely won\'t be the last!</p>\n<p>&mdash; Bojidar Valchovski (@bdvalchovski) <a href=\"https://twitter.com/bdvalchovski/status/1007306648862494720?ref_src=twsrc%5Etfw\">June 14, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Had an awesome <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> contributor day today. Had some great conversations and made good progress on a few patches to improve the development experience despite the WiFi issues. Was also very proud to see SIX <a href=\"https://twitter.com/yoast?ref_src=twsrc%5Etfw\">@Yoast</a>\'ers lead different contributor teams! <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/family?src=hash&ref_src=twsrc%5Etfw\">#family</a></p>\n<p>&mdash; Omar Reiss (@OmarReiss) <a href=\"https://twitter.com/OmarReiss/status/1007291207171616768?ref_src=twsrc%5Etfw\">June 14, 2018</a></p></blockquote>\n<p></p>\n<p>Contributors submitted patches and made more progress online later in the day when the wi-fi resumed.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">So proud of the WordPress Coding Standards team at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> contributor day. Look at all the patches which are flooding in!!!!<a href=\"https://twitter.com/FlipKeijzer?ref_src=twsrc%5Etfw\">@flipkeijzer</a> <a href=\"https://twitter.com/GaryJ?ref_src=twsrc%5Etfw\">@GaryJ</a> <a href=\"https://twitter.com/fimdalinha?ref_src=twsrc%5Etfw\">@fimdalinha</a> <a href=\"https://twitter.com/Wonderm00n?ref_src=twsrc%5Etfw\">@Wonderm00n</a> <a href=\"https://twitter.com/Niq1982?ref_src=twsrc%5Etfw\">@niq1982</a> <a href=\"https://twitter.com/moorscode?ref_src=twsrc%5Etfw\">@moorscode</a> <a href=\"https://twitter.com/vladilie94?ref_src=twsrc%5Etfw\">@vladilie94</a> <a href=\"https://twitter.com/MCiufudean?ref_src=twsrc%5Etfw\">@MCiufudean</a> <a href=\"https://t.co/lchrR4ZmHX\">pic.twitter.com/lchrR4ZmHX</a></p>\n<p>&mdash; Juliette (@jrf_nl) <a href=\"https://twitter.com/jrf_nl/status/1007263406838173697?ref_src=twsrc%5Etfw\">June 14, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Look at all these lovely people contributing to <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> Contributor Day <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/2764.png\" alt=\"â¤\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/2.4/72x72/2764.png\" alt=\"â¤\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/2.4/72x72/2764.png\" alt=\"â¤\" class=\"wp-smiley\" /></p>\n<p>Thank you, you rock! <a href=\"https://t.co/LtRlyolYPL\">pic.twitter.com/LtRlyolYPL</a></p>\n<p>&mdash; Milana Cap (@DjevaLoperka) <a href=\"https://twitter.com/DjevaLoperka/status/1007164509197357056?ref_src=twsrc%5Etfw\">June 14, 2018</a></p></blockquote>\n<p></p>\n<p>Attendees worked on a variety of different projects from improving the project&#8217;s coding standards to documenting best practices for hosts working with WordPress.</p>\n<p><a href=\"https://twitter.com/EvangeliaPappas\" rel=\"noopener noreferrer\" target=\"_blank\">Evangelia Pappa</a> traveled from Greece to attend her first WordCamp Europe, joining the community team to get answers about helping her local deaf community.</p>\n<p>&#8220;In my country you have a lot of deaf people who want to attend WordCamp and also the meetups that we do for the Greek WP community,&#8221; Pappa said. &#8220;We have found a way to assist them while they are at WordCamps with sign language, but are still struggling with meetups, so I am trying to find answers here in order to help other members of the community.&#8221;</p>\n<p><a href=\"http://twitter.com/rociovaldi\" rel=\"noopener noreferrer\" target=\"_blank\">RocÃ­o Valdivia</a> traveled from Spain to attend her 6th WordCamp Europe and also joined the Community Team for contributor day, creating documentation and mentoring WordCamp organizers.</p>\n<p>&#8220;I&#8217;ve been having a meeting with the WordCamp Nordic organizing team,&#8221; Valdivia said. &#8220;We are talking about the next WordCamp Nordic, a large regional WordCamp, that will be held next year in Helsinki in March.&#8221;</p>\n<p>The Hosting team was also able to work, despite the wi-fi outage, bringing together representatives from different countries and hosting companies.</p>\n<p>&#8220;We&#8217;ve been going through and writing some best practices and documentation,&#8221; <a href=\"http://twitter.com/GetSource\" rel=\"noopener noreferrer\" target=\"_blank\">Michael Schroder</a> said. &#8220;We&#8217;ve been making some good progress on the performance area of the docs, so I feel pretty good about getting some of that committed today.&#8221;</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">The Contribution Area is being put to good use at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> . First time weâ€™re using a dedicated room to allow for a continuance of Contributor Day. <a href=\"https://t.co/lTgR8OdLBf\">pic.twitter.com/lTgR8OdLBf</a></p>\n<p>&mdash; Remkus de Vries (@DeFries) <a href=\"https://twitter.com/DeFries/status/1007628138522861568?ref_src=twsrc%5Etfw\">June 15, 2018</a></p></blockquote>\n<p></p>\n<p>For the first time, WordCamp Europe also set aside a spacious, designated room for attendees who wanted to continue collaborating on contributions during the main conference.</p>\n<p>Wifi outages are a common occurrence at WordCamp Contributor days. While many attendees I spoke with said they were frustrated and inconvenienced by the inability to be productive, others expressed happy sentiments about the opportunity to be together in one place.</p>\n<p>&#8220;The most important thing about contributor day is talking to people, getting to know each other, face timing in real life,&#8221; Polyglots team lead <a href=\"http://twitter.com/petyeah\" rel=\"noopener noreferrer\" target=\"_blank\">Petya Raykovska</a> said. &#8220;These are always very useful connections to have, learning everybody&#8217;s name, asking questions about their experience contributing, and them asking you questions about general experience with the team. It&#8217;s actually been great. I feel like it&#8217;s given people a chance to talk to each other. No time is lost in contributor day, really.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Jun 2018 11:23:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Post Status: Productizing your service business, with Brian Casel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=46103\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://poststatus.com/productizing-your-service-business-with-brian-casel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2663:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian is joined by guest-host <a href=\"https://twitter.com/casjam\">Brian Casel</a>. Brian runs <a href=\"https://audienceops.com/\">Audience Ops</a>, a productized service that offers all aspects of content creation for companies. Brian has been in the WordPress community for a long time, and for years has worked on creating processes around his business to enable him to get beyond a freelancer work life and into treating services like products.</p>\n<p>Before Audience Ops, he ran Restuarant Engine &#8212; a niche WordPress site provider, where he really honed many of the processes his company still uses today &#8212; which he sold for six figures.</p>\n<p>We dig in to why he decided to make a transformation with his businesses to be so process oriented, and how he turned that into the 30-person organization it is today, as well as the various courses and communities around Productize and Scale.</p>\n<p>By the way, if you like this interview, Brian has an active job posting on Post Status for a <a href=\"https://poststatus.com/job/audience-ops-united-states-1899-writer-for-blog-content-covering-wordpress-web-dev-business-topics/\">blog content writer for Audience Ops</a>.</p>\n<p>&nbsp;</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://audienceops.com/\">Audience Ops</a></li>\n<li><a href=\"https://productizeandscale.com/\">Productize and Scale</a> newsletter</li>\n<li><a href=\"http://productizepodcast.com/\">Productize Podcast</a></li>\n<li><a href=\"https://productizecourse.com/\">Productize Course</a></li>\n<li><a href=\"https://restaurantengine.com/\">Restaurant Engine</a></li>\n<li><a href=\"http://opscalendar.com/\">Ops Calendar</a></li>\n<li><a href=\"http://www.tropicalmba.com/dc/\">Tropical MBA DC</a></li>\n</ul>\n<h3>Sponsor: Yoast</h3>\n<p>Yoast SEO Premium gives you 24/7 support from a great support team and extra features such as a redirect manager, recommended internal links, tutorial videos and integration with Google Webmaster Tools! Check outÂ <a href=\"https://yoast.com/\">Yoast SEO Premium</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Jun 2018 18:11:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Gutenberg Team Panel Talks Release Timeline, Theme Building, and Customization at WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81546\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/gutenberg-team-panel-talks-release-timeline-theme-building-and-customization-at-wceu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5847:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/06/gutenberg-workshop.jpg?ssl=1\"><img /></a></p>\n<p>The Gutenberg team took questions from a full room users and developers this morning before diving into the specifics of the editor&#8217;s design, block creation, and how to further extend the new interface. The first question they addressed is the one everyone is asking: When will Gutenberg land in core?</p>\n<p>The team said the editor is pretty close to feature complete and should achieve that in the next few months when version 3.3 is released. At that point the focus will be on refining the current experience. They estimate this to happen in June or the first week of July but also hinted at more information coming in Matt Mullenweg&#8217;s keynote address this afternoon.</p>\n<p>Developers also asked about the criteria that will be used to decide that Gutenberg is ready for a WordPress release. The project has a <a href=\"https://github.com/WordPress/gutenberg/issues/4894\" rel=\"noopener noreferrer\" target=\"_blank\">scope and features MVP issue on GitHub</a> that provides an overview for the major functionality that will be introduced in the first version of the new editor. It shows which features have already been shipped and which ones are remaining.</p>\n<p>The team explained that many of the final features have come from developer and user feedback. Some features were not necessarily planned for V1, but it became more apparent that these were needed because they improved either the developer or user experience. For example, within the past four or five months the team found that the child blocks would be necessary to allow developers to be more expressive in extending the editor. A few of the remaining issues include inline images and post locking for concurrent users, but the team doesn&#8217;t anticipate any major new features on the horizon before V1 is released.</p>\n<p>Gutenberg engineers also assured workshop attendees that the project is being built with backwards compatibility in mind. One person asked what will happen when the 5.0 release lands. The team explained that the Gutenberg update will not change all the content on WordPress sites. When users open a post in the editor they will have the option to convert that content to block format so it will work with the new editor. If it doesn&#8217;t quite work, users be able to fall back to the classic editor.</p>\n<p>The team said they took great lengths not to alter how WordPress deals with data. Gutenberg does not change the content structure. One of the cornerstones for the project is providing an update that will not fragment the content structure. There will be a lot of resources available ahead of the release for helping everyone move forward together.</p>\n<p>Gutenberg engineers said they are working to be conscious not to delay the project, because the longer the delay, the more potential users WordPress is losing because the software is not easy enough for them to build and customize content and websites.</p>\n<h3>How Will Theme Building Change with Gutenberg?</h3>\n<p>Gutenberg designers and engineers also tackled questions about how the new editor will change the theme building experience. Design lead Tammie Lister emphasized the importance of theme developers first getting better at creating themes that do not try to do everything. The basic purpose of a theme is to style the frontend and provide an editor style. One potential way forward for theme developers is to provide additional features by releasing a suite of blocks via a plugin. Lister said she hopes that themes will become a lot lighter in the Gutenberg era and encouraged developers to utilize style guides.</p>\n<p>The team also said that existing themes will continue to function and redesigning a theming API, without the hassle of editing a bunch of PHP files, may be possible in the future. However, it&#8217;s too early to know what that will look like. For now, the rendering engine is not changing. Theme developers interested in Gutenberg compatibility should start looking towards deconstructing their themes into individual elements and learn how to express a theme as a list of blocks.</p>\n<h3>How Will Gutenberg Handle Customization?</h3>\n<p>Attendees asked several questions regarding the specific plan to implement customization, or live previewing, after Gutenberg is in core. The current phase 1 handles content editing and puts the infrastructure in place to support customization. There are some issues on GitHub for transforming widgets into blocks, which will be a step towards the site building experience. The team has already implemented direct manipulation on the WYSIWYG road but phase 2 will cover more aspects of customization.</p>\n<p>Gutenberg is not ready to replace the Customizer anytime soon, but the next phase will explore what a block-based experience of customization will look like. When asked if Gutenberg will &#8220;kill off some of the page builders,&#8221; the team said the goal is for page building type applications to be able to use Gutenberg as a springboard for different implementations that extend the editor in ways that benefit different types of users.</p>\n<p>An attendee asked how the team plans to enhance adoption once Gutenberg lands in core. The team said they are working on an experimental feature called &#8216;tips&#8217; that offers a story walkthrough of the publishing workflow. It includes helpful nudges to assist users in getting better at navigating the interface. The wider ecosystem has already responded with courses and tutorials to help developers get on board. The WordPress training team is also working on some training materials to use at WordCamps with tutorials for developers to learn how to convert existing plugins and themes to be Gutenberg-ready.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Jun 2018 11:18:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WPWeekly Episode 320 â€“ Building a Sustainable Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=81508&preview=true&preview_id=81508\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/wpweekly-episode-320-building-a-sustainable-web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1741:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by Jack Lenox, Software Engineer at Automattic, to discuss his new project, <a href=\"https://sustywp.com/\">SustyWP</a>. Lenox explains how he built the site so that it only has 7KB of data transfer, what sustainability on the web means to him, and the relationship between sustainability and optimization to create a better user experience. We end the show discussing the latest WordPress headlines and share information on how you can watch WordCamp EU for free.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://www.wordfence.com/blog/2018/06/babayaga-wordpress-malware/\">BabaYaga: The WordPress Malware That Eats Other Malware</a><br />\n<a href=\"https://blog.threatpress.com/vulnerable-wordpress-plugins-multidots/\">Ten WordPress Plugins By Multidots For WooCommerce Identified As Vulnerable And Dangerous</a><br />\n<a href=\"https://wptavern.com/plugin-detective-wins-wordcamp-orange-county-2018-plugin-a-palooza\">Plugin Detective Wins WordCamp Orange Countyâ€™s 2018 Plugin-a-Palooza</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, June 20th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>SubscribeÂ to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>SubscribeÂ to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>SubscribeÂ to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #320:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jun 2018 02:04:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: Watch WordCamp EU for Free via Livestream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81466\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/watch-wordcamp-eu-for-free-via-livestream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:889:\"<p><a href=\"https://2018.europe.wordcamp.org/\">WordCamp EU 2018</a> is scheduled to take place this weekend in Belgrade, Serbia. Although the event is sold out, you can watch the event for free via livestream. Simply visit the WCEU <a href=\"https://2018.europe.wordcamp.org/tickets/\">tickets page</a> and register a livestream ticket.</p>\n\n<p>Sessions begin on Friday, June 15th. To see a list of sessions and speakers, check out the <a href=\"https://2018.europe.wordcamp.org/schedule/\">event&#8217;s schedule</a>. Note that there is a six hour time difference between Eastern Daylight Time and Belgrade, Serbia. </p>\n\n<p>As we near the halfway point of 2018 and no imminent release of WordPress 5.0 on the horizon, it will be interesting to see what information is shared during <a href=\"https://2018.europe.wordcamp.org/session/matt-on-wordpress/\">Matt Mullenweg&#8217;s keynote.</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jun 2018 00:35:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"HeroPress: By Helping Others, I Save Myself\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://heropress.com/by-helping-others-i-save-myself/#utm_source=rss&utm_medium=rss&utm_campaign=by-helping-others-i-save-myself\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3397:\"<img width=\"960\" height=\"547\" src=\"https://s20094.pcdn.co/wp-content/uploads/2016/05/osmi-1024x583.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Banner for OSMI, Open Sourcing Mental Illness\" /><p>I think I met Ed Finkler at WordCamp Milwaukee in 2016. It was at the speaker dinner, and he sat across from me for a while. He seemed like a pretty normal WordPress developer and several weeks later I asked him to do a HeroPress essay. His answer surprised me. &#8220;Well sure, that sounds pretty cool, aside from the fact that I don&#8217;t really do WordPress anymore&#8221;.</p>\n<p>As it turns out, he had mostly retired from active WordPress development. His every day world was now filled with working in different frameworks and languages, amongst people who help WordPress in disdain. But Ed&#8217;s view fascinated me. For all that he was working with more modern frameworks, WordPress is what made him a great developer. The empathy and compassion for the user that WordPress holds so dearly carried over into the rest of his life.</p>\n<p>So what was he doing at WordCamp? Spreading the word about his cool new organization, which I will leave for you to read about.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/wordpress-taught-better-developer/\">How WordPress Taught Me To Be a Better Developer</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: By Helping Others, I Save Myself\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=By%20Helping%20Others%2C%20I%20Save%20Myself&via=heropress&url=https%3A%2F%2Fheropress.com%2Fby-helping-others-i-save-myself%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: By Helping Others, I Save Myself\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fby-helping-others-i-save-myself%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fby-helping-others-i-save-myself%2F&title=By+Helping+Others%2C+I+Save+Myself\" rel=\"nofollow\" target=\"_blank\" title=\"Share: By Helping Others, I Save Myself\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/by-helping-others-i-save-myself/&media=https://heropress.com/wp-content/uploads/2016/05/osmi-150x150.png&description=By Helping Others, I Save Myself\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: By Helping Others, I Save Myself\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/by-helping-others-i-save-myself/\" title=\"By Helping Others, I Save Myself\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/by-helping-others-i-save-myself/\">By Helping Others, I Save Myself</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Jun 2018 13:14:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Plugin Detective Wins WordCamp Orange Countyâ€™s 2018 Plugin-a-Palooza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/plugin-detective-wins-wordcamp-orange-county-2018-plugin-a-palooza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3482:\"<p><a href=\"https://2018.oc.wordcamp.org/\">WordCamp Orange County</a>, CA, took place this past weekend and the winners of the <a href=\"https://wptavern.com/wordcamp-orange-county-plugin-a-palooza-first-place-prize-is-3000\">Plugin-a-Palooza</a> have been crowned. <a href=\"https://profiles.wordpress.org/croixhaug\">Nathan Tyler</a> and <a href=\"https://profiles.wordpress.org/nataliemac\">Natalie MacLees</a> took the first place prize of $3,000 with their submission, <a href=\"https://wordpress.org/plugins/plugin-detective/\">Plugin Detective</a>.</p>\n\n<img />\n	Creating a new case in Plugin Detective\n\n\n<p>When it comes to troubleshooting WordPress, disabling and re-enabling plugins is one of the first steps in the process. This is time consuming and involves browsing to the plugin management page multiple times to turn a plugin on or off.</p>\n\n<p>Plugin Detective simplifies the process by quickly identifying the culprit. Once installed, a Troubleshooting quick link is added to the WordPress Toolbar. From here, users can open or continue a case. When a case is opened, a bot named Detective Otto asks users to navigate to the page where the problem is occurring.</p>\n\n<p>After the location is identified, users inform Detective Otto which plugins are required for the site to function properly. Interrogations is the act of of disabling and enabling plugins. Multiple interrogation attempts are made until the culprit is identified through the process of elimination. The following video does a great job of explaining and showing how it works. <br /></p>\n\n\n	<div class=\"embed-vimeo\"></div>\n\n\n<p>It can also be used to <a href=\"https://wordpress.org/plugins/plugin-detective/#i%20just%20see%20errors%20or%20a%20white%20screen.%20can%20i%20still%20use%20plugin%20detective%20to%20troubleshoot%20what%E2%80%99s%20gone%20wrong%3F\">identify and fix</a> White Screen of Death errors caused by plugins.<br /></p>\n\n<p>Plugin Detective is partly inspired by a software program from the 90s called <a href=\"https://en.wikipedia.org/wiki/Conflict_Catcher\">Conflict Catcher</a>.</p>\n\n<p>&#8220;I used &#8216;Conflict Catcher&#8217; to troubleshoot conflicts between system extensions on my Mac,&#8221; Tyler said. &#8220;I thought the concept was cool and would often run it for fun to try to figure out how it worked. Eventually, I learned that the computer science concept is a &#8216;binary search.&#8217;</p>\n\n<p>&#8220;Applying the concept to WordPress plugins seemed like a good approach to the plugin conflict problem we all experience.&#8221;</p>\n\n<p>Tyler developed the functionality and MacLees is credited with the plugin&#8217;s design, user experience, JavaScript, API calls, etc. The duo plan to establish relationships with plugin authors to help get them better bug reports. <br />><br /><br /><br /><br /><br />&#8220;Basically, if an author opts-in, we can help the end-user file a support ticket right there in Plugin Detective after we&#8217;ve identified the problem,&#8221; he said. &#8220;The support team gets a helpful bug report with notes from the customer, along with system information, other installed plugins, active theme, etc.&#8221;</p>\n\n<p>If you troubleshoot sites often or want an easier way to figure out which plugin is causing a conflict, consider adding Plugin Detective to your toolkit. Plugin Detective is free and <a href=\"https://wordpress.org/plugins/plugin-detective/\">available for download</a> from the WordPress plugin directory. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jun 2018 02:12:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Other Cultures\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2018/06/other-cultures/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:311:\"<blockquote class=\"wp-block-quote\">\n	<p>As the traveller who has once been from home is wiser than he who has never left his own doorstep, so a knowledge of one other culture should sharpen our ability to scrutinize more steadily, to appreciate more lovingly, our own.</p><cite>Margaret Mead</cite></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Jun 2018 23:35:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: WordCamp Europe Introduces Official Mobile App, New Tech for On-site Badge Printing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81001\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/wordcamp-europe-introduces-official-mobile-app-new-tech-for-on-site-badge-printing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4132:\"<img />\n\n<p>WordCamp Europe debuted its new <a href=\"https://app.wp-europe.org/\">official mobile app</a> today, providing attendees with a quick way to access the eventâ€™s schedule, maps, and announcements. Several unofficial apps have popped up over the years, but this is the first one produced and supported by WCEU organizers.</p>\n\n<p>The team opted for creating a PWA (Progressive Web App), which loads inside a mobile browser while offering an experience similar to native apps. Itâ€™s also far less complicated than supporting multiple platform-specific mobile apps. Users donâ€™t have to download anything, since it is loaded via the browser, and the site can be accessed offline in case of network failure. <br /></p>\n\n<img />\n\n<p>The app was built using React on the frontend and is hosted on a node server. It uses WordPress for content management on the backend, along with the <a href=\"https://wordpress.org/plugins/wp-pwa/\">WordPress PWA</a>Â plugin and <a href=\"https://wordpress.org/plugins/onesignal-free-web-push-notifications/\">OneSignal Push NotificationsÂ ï»¿</a>.</p>\n\n<p>â€œThis first iteration isnâ€™t scalable for the community, but we wanted to test the possibilities and have the opportunity to explore what it would take to eventually make this available for all WordCamps,â€ WCEU team leader Jenny Beaumont said. â€œItâ€™s a lofty goal, and weâ€™re not there yet, but weâ€™ve learned a lot along the way and looking forward to pursuing the ambition.â€</p>\n\n<p>Attendees can expect to find any last minute schedule changes in the app and may also opt to receive push notifications for important updates. The Favorites feature lets users to bookmark all the sessions they plan to attend and toggle them into view.</p>\n\n<img />\n\n<p>WCEUâ€™s official PWA is lightweight and re-usable &#8211; it can easily be updated to display content for future editions of the WordCamp.</p>\n\n<p>â€œWeâ€™ll only need to update our feeds, since WordCamps are issued a new website every year, but the basic functionality will be in place and can be developed on as browsers offer better support and new team members join the team with their great ideas,â€ Beaumont said. </p>\n\n<p>The current theme is open source and available on GitHub. It can be rebranded for future events to reflect the design for that year and city. Beaumont said the long term goal is to have a PWA generated directly from WordCamp sites. </p>\n\n<h3>New Tech for Badges Generates a Barcode for Sponsors to Scan</h3>\n\n<p>The technology for badge creation will be getting an overhaul as well this year. WCEU organizers are renting the materials from a <a href=\"https://www.azavista.com/\">Azavista</a>, a Dutch event management company that provides badges, badge printers and scanning devices (iPhones). The new tech will make it more efficient for volunteers to process more than 2,000 attendees at registration.</p>\n\n<p>The badge scanners also streamline attendee interaction with sponsors, replacing the signup sheets and tablets that sponsors usually have for collecting attendee information. </p>\n\n<p>â€œItâ€™s tied to attendeesâ€™ Attendee ID number, created when attendees register on our WordCamp site,â€ Beaumont said. â€œSay an attendee is visiting a sponsor booth and having a nice conversation, the sponsor can ask if theyâ€™d like to leave their name and email address to stay in touch. If the attendee agrees, then they show their badge to have it scanned by the sponsor using the closed-technology on devices provided by our vendor. &#8220;</p>\n\n<p>After the event, WCEU organizers will send the names and email addresses of attendees to the sponsors based on the signups from scanned badges.</p>\n\n<p>If attendee feedback is positive, Beaumont said organizers plan to implement the quick registration feature next year. This will allow attendees to receive a QR code via email and get it scanned in order to receive their badges. These tech improvements should relieve traffic bottlenecks at the registration desk and sponsor booths, freeing up more time for WCEU attendees to spend in sessions and networking activities.</p>\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Jun 2018 15:38:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Mark Jaquith: Making ScoutDocs: React\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://markjaquith.wordpress.com/2018/06/11/making-scoutdocs-react/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6209:\"<p>Continuing my series aboutÂ <a href=\"https://wordpress.org/plugins/scoutdocs/\">ScoutDocs</a>Â and the process of building it, this week I&#8217;m talking about <strong>React</strong>.</p>\n<p><img /><em>What is <a href=\"https://scoutdocs.com/\">ScoutDocs</a>? ScoutDocs is a WordPress plugin that adds simple file-sharing to your WordPress site.</em></p>\n<p>After the first iteration of ScoutDocs was built and none of the partners on the project were happy with its experience, it became clear that in order to deliver a clean, simple interface for file uploading and sharing we needed to leave the bounds of the WordPress admin. It didnâ€™t take me long to decide that <a href=\"https://reactjs.org/\">React</a> would be the tool I used to build the new interface.</p>\n<p>There is an incredible momentum behind React, and a rich ecosystem of libraries, tools, and educational resources. But beyond all that, React is just plain <em>fun</em>Â to code. Once you accept the central premise that a view layer and the controller that handles that view are inextricably linked, and once you get over the weirdness of quasi-HTML-in-JS that is JSX, coding in React is a joy.</p>\n<p><img /></p>\n<p>Make no mistake, learning React is not a weekend project. It will take a while before it feels like home. But once you get it, you feel very powerful.</p>\n<p>The first lesson I learned was <b>donâ€™t learn React by rewriting your app in React</b>. I tried this. I read some tutorials about React and it felt straightforward, and I was like â€œletâ€™s <i>do</i> this.â€</p>\n<p><img /></p>\n<p>This was a bad idea. I was overwhelmed. I had no idea where to start. Next, I tried following some of the interactive tutorials that required me to build a simple React app and then slowly add functionality to it, refactoring it multiple times, until I understood not just the code that I ended up with, but the <i>process</i> of creating it. This went much better.</p>\n<p><b>Start small, and build a bunch of â€œtoyâ€ apps before you use React for your own apps.</b> Once you are able to â€œthink in Reactâ€, youâ€™ll be nearly physically itchy to go re-code your app in React, and thatâ€™s how you know youâ€™re ready. If you jump the gun, you are going to get stuck a lot, and it will be frustrating.</p>\n<p>As you learn React and explore the React ecosystem, you will likely hear aboutÂ <a href=\"https://redux.js.org/\">Redux</a>, which is a system for storing application state, and is commonly used with React apps. It looked complicated, and even its creator wrote a post saying <a href=\"https://medium.com/@dan_abramov/you-might-not-need-redux-be46360cf367\">you might not need Redux</a>. So I skipped it. This was probably the right call when I was starting out. But as I fleshed out the ScoutDocs app and its complexity increased, I ran into a problem.</p>\n<p>See, React breaks your app up into these nested chunks of UI and functionality called components. Data flows down through your components. So if a user updates their name, that change will flow down from higher up components like a Page component down to a PageHeader, down to a NavBar, down to a UserStatus. Once this is all set up and you update data in a parent component, the changes automatically flow downstream, and the UserStatus component updates and re-renders. Itâ€™s great. Except that there are a bunch of intermediate components that accept and â€œforwardâ€ that user name data to their children, without actually caring about it themselves. When you inevitably refactor something and need to add new data that flows through these components, every single intermediate one needs to be updated to pass it on. It is tedious. You will hate it.</p>\n<p>Worse, because events in React flow upwards, if a user updates their name in the UserName component, that change needs to flow up to ProfileForm, up to Profile, up to Page, and then up to your main App component. When you refactor, you need to make sure this event forwarding chain stays connected. Yet more tedium that you will hate.</p>\n<p>Redux solves this by letting your React components, no matter how deeply they are nested, subscribe directly to the data they need.</p>\n<p>I really wish Dave Ceddia had written <a href=\"https://daveceddia.com/what-does-redux-do/\">this excellent post about Redux</a> two months earlier.</p>\n<blockquote><p>If you have a component structure like the one above â€“ where props are being forwarded down through many layers â€“ consider using Redux.</p></blockquote>\n<p>This is what I needed to hear, and knowing this would have saved me a lot of frustration and time that I now have to spend converting ScoutDocs to use Redux.</p>\n<p><b>Use Redux when your React data flow starts to get unwieldy.</b></p>\n<p>Another mistake I made early on was making the data my React components accepted too restrictive. For example, I wanted the ability to prefix a <code class=\"code-inline\">Row</code> component with a clickable icon. So I let the component accept an <code class=\"code-inline\">icon</code> and <code class=\"code-inline\">onClickIcon</code> property. I just passed a Font Awesome icon name in, and a function I wanted to run when clicked. It worked great.</p>\n<p><img /></p>\n<p>Then I needed to add a second icon in front, in some circumstances. Ugh. I certainly didnâ€™t want to do <code class=\"code-inline\">otherIcon</code> and <code class=\"code-inline\">onClickOtherIcon</code>. Instead, what I should have done was let the component accept <code class=\"code-inline\">beforeRow</code> which could be anythingâ€¦ like an array of <code class=\"code-inline\">&lt;Icon&gt;</code> components or a single one or even other components altogether.</p>\n<p><img /></p>\n<p>This can be used for many more situations than the one (&#8220;put an icon before the row&#8221;) that I&#8217;d originally envisioned.</p>\n<p><b>Your React components should be flexible, so they can be reusable.</b></p>\n<p>Other posts in this series:</p>\n<ul>\n<li><a href=\"https://markjaquith.wordpress.com/2018/06/01/lessons-learned-making-scoutdocs-outsourcing/\">Outsourcing</a></li>\n<li>React</li>\n<li>WordPress Rest API</li>\n<li>PHP 7</li>\n<li>Build tools</li>\n<li>Unit testing</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Jun 2018 14:36:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Customisation options for the Akismet front-end privacy notice\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1999\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2018/06/07/customisation-options-for-the-akismet-front-end-privacy-notice/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3606:\"<p>To help your site be transparent to your visitors about using <a href=\"https://akismet.com/\">Akismet</a> to process comments (think privacy and <a href=\"https://www.eugdpr.org/\">GDPR</a>), <a href=\"https://wordpress.org/plugins/akismet/\">our WordPress plugin</a> now gives you the option to display a notice under your site&#8217;s comment forms. Site owners can decide if they want to display it, or not, on a per-blog basis.</p>\n<p><img /></p>\n<p>But we&#8217;ve also given options to developers to extend the behaviour, and content, of said notice.</p>\n<h3>WordPress option</h3>\n<p>The display of the notice itself, as well as the in-admin notice to set it for one&#8217;s site, all revolves around a newÂ <code>akismet_comment_form_privacy_notice</code> option, which needs to be set to either <code>display</code> or <code>hide</code>.</p>\n<p>If the option is not yet set, the front-end notice will not be displayed, but the in-admin prompting site owners to set it will.</p>\n<p>Once setÂ to either <code>display</code> or <code>hide</code>, the front-end notice will match the choice, and the in-admin notice will disappear.</p>\n<h3>Filters</h3>\n<p>In <a href=\"https://plugins.trac.wordpress.org/browser/akismet/trunk/class.akismet.php?rev=1882139#L1408\"><code>class.akismet.php</code></a>, there is a new <a href=\"https://plugins.trac.wordpress.org/browser/akismet/trunk/class.akismet.php?rev=1882139#L1408\"><code>Akismet::display_comment_form_privacy_notice()</code></a> method, in which you can find the following filters to extend.</p>\n<ul>\n<li><a href=\"https://plugins.trac.wordpress.org/browser/akismet/trunk/class.akismet.php?rev=1882139#L1413\"><code>akismet_comment_form_privacy_notice</code></a>:<br />\nOverrides the returned value of theÂ <code>akismet_comment_form_privacy_notice</code> option. This value can beÂ <code>display</code>, or <code>hide</code>, and controls the display of the front-end privacy notice under comment forms.</li>\n<li><a href=\"https://plugins.trac.wordpress.org/browser/akismet/trunk/class.akismet.php?rev=1882139#L1417\"><code>akismet_comment_form_privacy_notice_markup</code></a>:<br />\nLets you customise the text and markup of the actual notice, which defaults to <code>\'&lt;p class=\"akismet_comment_form_privacy_notice\"&gt;\' . sprintf( __( \'This site uses Akismet to reduce spam. &lt;a href=\"%s\" target=\"_blank\"&gt;Learn how your comment data is processed&lt;/a&gt;.\', \'akismet\' ), \'https://akismet.com/privacy/\' ) . \'&lt;/p&gt;\'</code>. Note that if you choose to modify the markup, something needs to eventually point your users to <a href=\"https://akismet.com/privacy/\">https://akismet.com/privacy/</a>, which will always display, or redirect to, our most up-to-date privacy related documentation.</li>\n</ul>\n<h3>CSS</h3>\n<p>As seen above, the default front-end privacy notice is wrapped in a <code>&lt;p class=\"akismet_comment_form_privacy_notice\"&gt;&lt;/p&gt;</code> tag, which you can extend via stylesheets and Javascript.</p>\n<h3>WP Multisite or multiple WP installs</h3>\n<p>If you have a lot of sites/blogs, you might also now be wanting to set the privacy display in bulk.</p>\n<p>There are a few ways of doing that.</p>\n<p>You can create a quick plugin that checks if the <code>akismet_comment_form_privacy_notice</code> option is set, and if it is not, set it for the current blog: <code>update_option( \'akismet_comment_form_privacy_notice\', $state );</code> where <code>$state</code> is either <code>display</code> or <code>hide</code>.</p>\n<p>Or you could write a script that loops on your blog list, and set the same option, in one run.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Jun 2018 14:52:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Stephane Daury\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: WPWeekly Episode 319 â€“ The Gutenberg Plugin Turns 30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=81249&preview=true&preview_id=81249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/wpweekly-episode-319-the-gutenberg-plugin-turns-30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1977:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"http://pento.net/\">Gary Pendergast</a>,Â a WordPress core contributor, to discuss what&#8217;s new with Gutenberg. We find out what happened with WordPress 4.9.6, and discuss WordPress&#8217; future. We also discuss Microsoft&#8217;s acquisition of GitHub and when WordPress core development might transition to GitHub. Last but not least, we share the news of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://news.microsoft.com/2018/06/04/microsoft-to-acquire-github-for-7-5-billion/\">Microsoft Acquires GitHub for $7.5B In Stock</a><br />\n<a href=\"https://make.wordpress.org/core/2018/06/05/whats-new-in-gutenberg-5th-june/\">Gutenberg 3.0.0 Released, 30th Release</a><br />\n<a href=\"https://wptavern.com/simplepress-forum-plugin-is-up-for-adoption\">Simple:Press Forum Plugin Is Up for Adoption</a><br />\n<a href=\"https://wptavern.com/wordcamp-for-ios-renamed-to-wp-camps-more-events-added\">WordCamp for iOS Renamed to WP Camps, More Events Added</a><br />\n<a href=\"https://wptavern.com/sustainability-wordpress-sustywp\">Sustainability + WordPress = SustyWP</a><br />\n<a href=\"https://medium.com/@muglug/improving-wordpress-with-static-analysis-505cc5ba495d\">Improving WordPress with Static Analysis</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, June 13th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>SubscribeÂ to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>SubscribeÂ to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>SubscribeÂ to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #319:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Jun 2018 01:12:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: Simple:Press Forum Plugin Is Up for Adoption\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81186\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/simplepress-forum-plugin-is-up-for-adoption\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1355:\"<p><a href=\"https://simple-press.com/\">Simple:Press</a>, a forum plugin for WordPress that has been around for more than a dozen years, is available for adoption. Developers Andy Staines and Steve Klasen announced their plans to shutdown operations last August on their <a href=\"https://simple-press.com/support-forum/\">customer support forum</a> and have had little luck finding a suitable replacement.</p>\n\n<img />\n	Simple:Press Forum in Action\n\n\n<p>Staines and Klasen will retire on August 1st. Everything related to the site, including the domain, plugin code, customer information, income, etc. will transfer to the new owner with no strings attached.</p>\n\n<blockquote class=\"wp-block-quote\">\n	<p>The forum plugin has been a labor of love for a long time. We don&#8217;t really want to see the plugin die because we have decided to retire. It has provided us a good secondary income for many years and has good potential for anyone who wished to make a go at it.<br /></p><cite>Steve Klasen</cite></blockquote>\n\n<p>Simple:Press is not available on the WordPress.org plugin directory and generates revenue through memberships, themes, and plugins. Those interested in taking over the plugin or to find out more information can contact Klasen and Staines through the <a href=\"https://simple-press.com/contact/\">Simple:Press Forum contact form</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2018 19:45:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"BuddyPress: BuddyPress 3.1.0 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=274141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://buddypress.org/2018/06/buddypress-3-1-0-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:817:\"<p>BuddyPress 3.1.0 is now available. This is a maintenance release that fixes 23 bugs and is a recommended upgrade for all BuddyPress installations.</p>\n<p>For more information, see the <a href=\"https://buddypress.trac.wordpress.org/query?group=status&milestone=3.1.0\">3.1.0 milestone</a> on <a href=\"https://buddypress.trac.wordpress.org/\">BuddyPress Trac</a>.</p>\n<p>Update to BuddyPress 3.1.0 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the wordpress.org plugin repository</a>.</p>\n<p>Questions or comments? Check out the <a href=\"https://codex.buddypress.org/releases/version-3-1-0/\">3.1.0 changelog</a>, or stop by our <a href=\"https://buddypress.org/support/\">support forums</a> or <a href=\"https://buddypress.trac.wordpress.org/\">Trac</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2018 16:06:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordCamp for iOS Renamed to WP Camps, More Events Added\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81108\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/wordcamp-for-ios-renamed-to-wp-camps-more-events-added\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1268:\"<p>When Marcel Schmitz <a href=\"https://wptavern.com/marcel-schmitz-releases-unofficial-wordcamp-for-ios-app\">released his WordCamp for iOS app</a>, there was concern that it violated the <a href=\"https://wordpressfoundation.org/trademark-policy/\">WordCamp Trademark policy</a>. Schmitz has changed the name of the app to <a href=\"https://itunes.apple.com/gb/app/wordcamp/id1384323581?mt=8\">WP Camps,</a> describes it as a companion app for WordCamps,Â and has added a number of upcoming events.</p>\n\n<img />\n	WordCamp Kent, OH in WP Camps\n\n\n<p>In addition to these changes, Schmitz has also redesigned the app&#8217;s icon due to user feedback. <a href=\"https://schmitzoide.blog/wordcamp-ios-app-is-now-wp-camps-multiple-wordcamps-added/\">Version 1.1</a> sets the stage for search, chat, a who&#8217;s on stage feature, and more.</p>\n\n<p>If you&#8217;re organizing a WordCamp or WordPress event and want it added to the app, you can <a href=\"https://twitter.com/schmitzoide\">contact Schmitz on Twitter.</a> You can also click on the About section within the App to send him an email. </p>\n\n<p>WP Camps is an application for iOS devices and is <a href=\"https://itunes.apple.com/us/app/wp-camps/id1384323581?ls=1&mt=8\">available for free</a> on the Apple App Store.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2018 03:29:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"HeroPress: Work is not just about Money\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2560\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"https://heropress.com/essays/work-is-not-just-about-money/#utm_source=rss&utm_medium=rss&utm_campaign=work-is-not-just-about-money\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7746:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/06/060618-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It\'s about the satisfaction I feel when I see the impact I make on the community.\" /><p>Settle in, because you are about to read some worst and some even worst experiences that I have had in my life and yet how I am still pulling myself together.</p>\n<p>Before we get into it, I am going to tell you something about me. I am Libertarian, otaku. I LOVE to play with words. By profession I am an IT engineer but by passion I am a writer. I am writing about Microsoft &amp; other Technologies for various publications. I am also writing about Exciting Technology &amp; Mind-Boggling Science and am a co-founder of 2 sci-fi and technological news platform.</p>\n<p>I was so engaged in the world of Computer and Technology since the school time. I was excited about HTML, CSS, C and other basic computer programming concept since school. Recently, I completed my Bachelor of Engineering study (result is yet to be declared, but I think I will pass in all subject). And as of now, I donâ€™t have any plans for further studies. Phew.</p>\n<h3>Talking about WordPress</h3>\n<p>My cousin introduced me with WordPress in 2010 when I completed 10th standard (grade). OMG! Itâ€™s been 8 years! However, at that time he gave me only basic WordPress work i.e.data entry. But later in college I was getting engaged in various freelancing work (mostly WordPress related) and thatâ€™s where the real journey with WordPress began!</p>\n<p>As of now, I have designed &amp; developed tons of websites with WordPress and modified up to dozens of themes. I enjoy working in WordPress so much that sometimes, I forget to take dinner. I am so committed to my work, itâ€™s like passion to me.</p>\n<p>Fast forward to September 2016, I submitted my first WordPress theme â€œFrindleâ€ to WordPress theme directory. After waiting for nearly 5 months in theme review queue, in January 2017, the theme reviewer rejected my theme, because theme had â€œ5 or more issuesâ€ (31 I remembered correctly). And I was back to square one. But after this setback I pushed myself and resubmitted theme again in the very next month. This time everything worked out and the theme was approved in April 2017 and went live on 1st July 2017.</p>\n<p>A friend of mine from WordPress community set me up for an interview in her company. I got selected and they wanted me to join from very next day. I was so thrilled and excited but as I was still pursuing my engineering study. But, my college didnâ€™t signed the NDA (for attendance) so I had to give up the opportunity.</p>\n<p>Later on, I submitted 2 more themes to the official WordPress theme directory, Horkos &amp; Ogee. Both of them are live right now and Ogee is getting significant user base. Later on, I joined a small web development company as a remote WordPress developer. And worked on so many projects.<br />\nWhile I was working on various freelancing WordPress projects, I was also doing content writing passionately. Now I am writing for several publication and news websites. Mostly I write about mind-boggling science and futuristic technology. Some of my anonymously written articles are featured on popular newsletter such as Slashdot.</p>\n<h3>This went well:</h3>\n<p>While I was in the last year of study, my cousin set me up for an interview for internship/training program. Everything was going perfect. The interviewer was impressed from my resume, but all of sudden, he started asking questions about technology which I am not aware of. I straightly said, â€œWith all due respect sir, I donâ€™t know anything about it, but if itâ€™s worth I am ready to learn.â€ God knows what he heard but within 2 minutes he ended up saying â€œYou are just wasting your life. You can go now.â€ I was like, man, it took me 30 minutes to find your office, please hear me out.</p>\n<p>But everything changed after this interview. When I was driving home from this interview, I got a call from an old friend and he asked me to write sci-fi articles for his new website. Wait! On the same day I got an email from a popular news website asking me to come onboard as a senior editor. I was like this is the worst best day of my life.</p>\n<h3>So no WordPress?</h3>\n<p>Well, hereâ€™s something good. In addition to this, right now I am perusing internship for PHP/WordPress and front-end developer in an MNC company. I am learning so many things nowadays, collaborating with team, project management, communication with clients and more!</p>\n<h3>Life nowadays</h3>\n<p>Every day, I wake up with a new task and go to sleep with a new idea. What is most aspiring in this is the platform that we all associated with. Even though I practice polyphasic sleep, I still need 5 extra hours in a day.</p>\n<p>I donâ€™t work for money, I just do it because I am so passionate about it. I mean money is important but work is not just about it. Itâ€™s about the satisfaction I feel when I see the impact I make on the community.</p>\n<p>I am 22, but as of now, I donâ€™t have a 9 to 5 permanent â€œjobâ€ nor a shoulder to cry on (you know what I mean). But I work a LOT. I love my keyboard. Iâ€™m highly sensitive. I spend my days immersing myself in the personal growth world. Maybe in some ways, Iâ€™m (definitely) not normal â€“ some of the ways that I go against the grain of the society. And you know what? Itâ€™s okay.</p>\n<p>So yeah, Iâ€™m comfortably okay with the basic skills which I possess. I wonder when people will understand that itâ€™s okay to be â€œokayâ€. Everything that was still is. So, whether I like it or not, I pull myself together and I do it all again.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Work is not just about Money\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Work%20is%20not%20just%20about%20Money&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwork-is-not-just-about-money%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Work is not just about Money\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwork-is-not-just-about-money%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwork-is-not-just-about-money%2F&title=Work+is+not+just+about+Money\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Work is not just about Money\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/work-is-not-just-about-money/&media=https://heropress.com/wp-content/uploads/2018/06/060618-150x150.jpg&description=Work is not just about Money\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Work is not just about Money\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/work-is-not-just-about-money/\" title=\"Work is not just about Money\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/work-is-not-just-about-money/\">Work is not just about Money</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2018 02:30:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Zipal Patel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WPTavern: Sustainability + WordPress = SustyWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wptavern.com/sustainability-wordpress-sustywp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:959:\"<p>Jack Lenox, a Software Engineer at Automattic, has launched a new site called <a href=\"https://sustywp.com/\">SustyWP</a> that focuses on web sustainability using WordPress.<br /></p>\n\n<p>By removing the parts of <a href=\"https://github.com/automattic/_s\">Underscores</a> he didn&#8217;t need, using one inline SVG image, no sidebars, limited CSS, and no webfonts, Lenox was able to launch a WordPress site that only has 7 Kilobytes of data transfer. <br /></p>\n\n<p>As you might expect, the site crushes page speed and performance benchmarks. The site is also hosted in a data center that uses 100% renewable energy.Â  To learn how and why he built the site, check out his <a href=\"https://blog.jacklenox.com/2018/06/04/delivering-wordpress-in-7kb/\">detailed blog post</a>.</p>\n\n<p>While only transferring seven kilobytes of data is commendable, these days, websites are feature-rich. I wonder how practical his methods are for large and complex sites. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Jun 2018 20:41:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Mark Jaquith: Lessons Learned Making ScoutDocs: Outsourcing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5642\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://markjaquith.wordpress.com/2018/06/01/lessons-learned-making-scoutdocs-outsourcing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5156:\"<p>Now that <a href=\"https://wordpress.org/plugins/scoutdocs/\">ScoutDocs is in the WordPress plugin repository</a>, I&#8217;d like to share some lessons I learned making it. Every project teaches me something â€” this one taught me a lot.</p>\n<p><img /><em>What is <a href=\"https://scoutdocs.com/\">ScoutDocs</a>? ScoutDocs is a WordPress plugin that adds simple file-sharing to your WordPress site. You can upload files (which are stored securely in the cloud and served over HTTPS via a global CDN), and share them with individuals or groups of individuals. Email notifications are also handled by the ScoutDocs service, getting around the issue of reliable email delivery on a shared host. You can require that recipients accept or decline the files you&#8217;ve shared, e.g. so you can see which of your employees has seen the new employee handbook. Instead of files living as email attachments (if they even fit) or off on some third-party site, people can access them on your site.</em></p>\n<p>In this weekly series, I&#8217;m going to cover:</p>\n<ul>\n<li>Outsourcing</li>\n<li><a href=\"https://markjaquith.wordpress.com/2018/06/11/making-scoutdocs-react\">React</a></li>\n<li>WordPress Rest API</li>\n<li>PHP 7</li>\n<li>Build tools</li>\n<li>Unit testing</li>\n</ul>\n<p>First up, lessons learned about outsourcing.</p>\n<p>When we started making ScoutDocs, the question was raised as to whether it would be beneficial to outsource any of the coding. My time was valuable and limited, so I figured that if I had another developer code while I slept, I could spend an hour in the morning reviewing the code and giving them direction for the next workday. I had visions of quickly scanning code while my morning coffee brewed, twirling an invisible moustache, and muttering &#8220;good, good.&#8221;</p>\n<p>This is not what happened.</p>\n<p>The issue I quickly ran into was that for any nebulously defined problem, someone else&#8217;s solution was unlikely to match what I wanted. Their assumptions would not be the same as mine. As a result, the odds of me being happy with their solution were very low.</p>\n<p>I spent a lot of time rewriting code.</p>\n\n<a href=\"https://markjaquith.wordpress.com/2018/06/01/lessons-learned-making-scoutdocs-outsourcing/not-hiring/\"><img width=\"100\" height=\"56\" src=\"https://markjaquith.files.wordpress.com/2018/06/not-hiring.gif?w=100&h=56\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://markjaquith.wordpress.com/2018/06/01/lessons-learned-making-scoutdocs-outsourcing/spaces/\"><img width=\"100\" height=\"56\" src=\"https://markjaquith.files.wordpress.com/2018/06/spaces.gif?w=100&h=56\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n\n<p>And because I was spending all my time &#8220;fixing&#8221; the code I wasn&#8217;t really looking at the product as a whole.</p>\n<p>When the contractors were done, my ScoutDocs partners and I looked at it, and we realized that it&#8230; was bad. Forget code quality, which despite all my vain reshuffling was still lacking: what we had was just overall a terrible user experience. Rather horrifyingly, we admitted that what we needed to do to give it the user experience we wanted was nothing short of a total rewrite.</p>\n<p><img /></p>\n<p>I rolled up my sleeves, <a href=\"https://markjaquith.wordpress.com/2018/06/11/making-scoutdocs-react\">learned React</a>, and rewrote ScoutDocs until almost nothing of the original code and user experience remained.</p>\n<p>So was outsourcing a waste? Not completely. Some code was retained, mostly relating to the Amazon S3 interface. I was glad that someone else had experienced the singular joy of spending an eternity lost in a maze of Amazon Web Services documentation and confusing code samples. Additionally, if I had set out to build the initial version of the code, it would have taken a lot of my time (which I did not have much to spare), and might have meant that our horrifying realization would have been delayed for several months.</p>\n<p><strong>Knowing what doesn&#8217;t work is valuable</strong>, even if you have to throw it away. That&#8217;s mostly what we had gotten for our money: figuring out what didn&#8217;t work. If outsourcing can get you to these realizations sooner or for less money, it might be well worth it.</p>\n<p>As I rewrote the software, my partners asked me a few times if I regretted outsourcing. I didn&#8217;t, for the above reason, but also because outsourcing had solved some of the coding issues that would have been a slog for me. However, if I was doing it all over again, I would have done more work upfront to identify specific, well-defined tasks that I wanted to outsource.</p>\n<p><strong>Delegation makes sense when the task is well-defined.</strong> At the extreme, you could spend so much time redoing work and asking for revisions that you&#8217;d have been better off just doing it yourself. If you can specify exactly what constitutes success in a task, and the time it takes you to specify that is much less than the time it would take you to do the task, outsource it.</p>\n<p>Check back next week for my thoughts on rewriting ScoutDocs in React.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Jun 2018 14:11:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Dev Blog: The Month in WordPress: May 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6065\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2018/06/the-month-in-wordpress-may-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4536:\"<p>This month saw two significant milestones in the WordPress community â€” the 15th anniversary of the project, and GDPR-related privacy tools coming to WordPress Core. Read on to find out more about this and everything else that happened in the WordPress community in May.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Local Communities Celebrate the 15th Anniversary of WordPress</h2>\n\n<p>Last Sunday, May 27, WordPress turned 15 years old. This is a noteworthy occasion for an open-source project like WordPress and one well worth celebrating. To mark the occasion, <a href=\"https://wp15.wordpress.net/\">WordPress communities across the world gathered</a> for parties and meetups in honor of the milestone.</p>\n\n<p>Altogether, there were 224 events globally, with <a href=\"https://wp15.wordpress.net/about/\">a few more of those still scheduled</a> to take place in some communities â€” attend one in your area if you can.</p>\n\n<p>If your city doesnâ€™t have a WordPress meetup group, this is a great opportunity to start one! Learn how with <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the Meetup Organizer Handbook</a>, and join the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Privacy Tools added to WordPress core</h2>\n\n<p>In light of recent changes to data privacy regulations in the EU, WordPress Core shipped important updates <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">in the v4.9.6 release</a>, giving site owners tools to help them comply with the new General Data Protection Regulation (GDPR). It is worth noting, however, that WordPress cannot ensure you are compliant â€” this is still a site ownerâ€™s responsibility.</p>\n\n<p>The new privacy tools include a number of features focused on providing privacy and personal data management to all site users â€” asking commenters for explicit consent to store their details in a cookie, providing site owners with an easy way to publish a Privacy Policy, and providing data export and erasure tools to all site users that can be extended by plugins to allow the handling of data that they introduce.</p>\n\n<p>To find out more about these features and the other updates, read the <a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">4.9.6 update guide</a>. You can also get involved in contributing to this part of WordPress Core by jumping into the #core-privacy channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and following<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n<h2>Updates to the WordPress.org Privacy Policy</h2>\n\n<p>In a similar vein, WordPress.org itself has received <a href=\"https://wordpress.org/about/privacy/\">an updated Privacy Policy</a> to make clear what is being tracked and how your data is handled. Along with that, a <a href=\"https://wordpress.org/about/privacy/cookies/\">Cookie Policy</a> has also been added to explain just what is collected and stored in your browser when using the site.</p>\n\n<p>These policies cover all sites on the WordPress.org network â€” including WordPress.org, WordPress.net, WordCamp.org, BuddyPress.org, bbPress.org, and other related domains and subdomains. Itâ€™s important to note that this does not mean that anything has changed in terms of data storage; rather that these documents clarify what data is stored and how it is handled.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Further Reading:</h2>\n\n<ul>\n	<li>WordCamp US 2018 has <a href=\"https://2018.us.wordcamp.org/2018/05/29/speak-at-wordcamp-us/\">opened up speaker submissions</a> for the December event.</li>\n	<li><a href=\"https://2018.europe.wordcamp.org/2018/05/15/wceu-live-stream-tickets/\">Live stream tickets are now available for WordCamp Europe</a>, happening on June 14-16.</li>\n	<li>Gutenberg, the new editor for WordPress Core, is getting ever closer to the final stages with <a href=\"https://make.wordpress.org/core/2018/05/18/whats-new-in-gutenberg-18th-may/\">a major update</a> this month.</li>\n	<li>In preparation for Gutenberg, <a href=\"https://core.trac.wordpress.org/changeset/43309\">significant work has been done</a> to improve WordPress Coreâ€™s build process.</li>\n</ul>\n\n<p><em>If you have a story we should consider including in the next â€œMonth in WordPressâ€ post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Jun 2018 09:09:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: Community Spotlight: James Huff (MacManX)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=81014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/community-spotlight-james-huff-macmanx\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2473:\"<p>Providing support on the <a href=\"https://wordpress.org/support/\">WordPress.org forums</a> is one of the easiest ways to contribute to WordPress and those who do are some of the unsung heroes of the project. One of those heroes is James Huff known as <a href=\"https://wordpress.org/support/users/macmanx/\">MacManX</a> on the forums.</p>\n\n<p>Huff has been supporting users for 13 years and recently celebrated an awesome milestone reaching 50K replies. <br /></p>\n\n\n	<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Achievement Unlocked: Over 13 years of <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> support, and 50,000 replies: <a href=\"https://t.co/0un3ggrKGI\">https://t.co/0un3ggrKGI</a> <a href=\"https://t.co/aKiwOuesk8\">pic.twitter.com/aKiwOuesk8</a></p>&mdash; James Huff (@MacManX) <a href=\"https://twitter.com/MacManX/status/1001958883303280640?ref_src=twsrc%5Etfw\">May 30, 2018</a></blockquote>\n\n\n<p>In this spotlight, we learn what drives Huff to provide support, what he&#8217;s learned, and what users can do to improve the likelihood a support request will be resolved. </p>\n\n<p><em>What drives your desire to help people with WordPress on the support forums?</em></p>\n\n<p>I like helping people succeed with WordPress. It&#8217;s kind of a legacy for me, because you never know if solving one blocker will lead to a life-changing site or service. If anything, I hope I made a few days better for a few folks.</p>\n\n<p><em>Any trends or common issues youâ€™ve noticed in the past few months/years?</em></p>\n\n<p>Nothing out of the ordinary. Plugin and theme conflicts will always be the most common.</p>\n\n<p><em>What tips or suggestions do you have for users to increase the likelihood of solving their problem?</em></p>\n\n<p>Try the <a href=\"https://wordpress.org/plugins/health-check/\">Health Check</a> plugin first, its Troubleshooting Mode is great!</p>\n\n<p><em>What lessons have you learned by providing support in the forums?</em></p>\n\n<p>I learned about almost everything I have done to customize my sites first by helping someone else do it. Overall, I have learned quite a bit about WordPress just by helping other people. </p>\n\n<p>To learn more about James and how he got involved with supporting the WordPress community, watch <a href=\"https://wordpress.tv/2018/02/21/andrea-middleton-wordpress-is-a-banquet/\">this presentation</a> by Andrea Middleton from WordCamp Seattle 2017.</p>\n\n\n	\n\n\n<p><br /></p><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Jun 2018 02:38:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: WPWeekly Episode 318 â€“ Happy 15th Birthday WordPress 0.70\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=81007&preview=true&preview_id=81007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wpweekly-episode-318-happy-15th-birthday-wordpress-0-70\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1431:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I look back at 15 years of WordPress. We discuss the journey so far and where we think the project is going. Hint, it involves JavaScript. We also do a bit of self-reflection on how WordPress fits into our lives and where we see us fitting into its future. For giggles, we did some WordPress trivia as well.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://ma.tt/2018/05/wordpress-at-15/\">Mattâ€™s Birthday Post</a><br />\n<a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress Now Available</a><br />\n<a href=\"https://wordpress.org/news/category/releases/\">WordPress Release History</a><br />\n<a href=\"https://twitter.com/search?q=%23wp15&src=typd\">#wp15 on Twitter</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, June 6th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>SubscribeÂ to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>SubscribeÂ to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>SubscribeÂ to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #318:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Jun 2018 01:27:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"HeroPress: Freedom to Parent\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2556\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://heropress.com/freedom-to-parent/#utm_source=rss&utm_medium=rss&utm_campaign=freedom-to-parent\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3038:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2015/11/MyPride-HeroPress-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull quote: WordPress has given me much more than just a job. It has given me back my pride, my strength, a social life.\" /><p>In any post about how WordPress changes lives the word Freedom invariably comes up. Freedom to be yourself, to travel, to grow, learn, even age. This week&#8217;s replay is about the freedom to parent.</p>\n<p>Ines was a young single mother without advanced education during an economic downturn. Things seemed bleak.</p>\n<p>Through her own hard work and effort she learned the fundamentals of web development, but it was WordPress that allowed her to pursue that profession from her own home. She was able to be home with her baby and care for him the way she saw fit. He was able to grow getting to know his mother every day instead of a day care worker.</p>\n<p>WordPress can be an incredible source of freedom for single parents, allowing them to have a solid career while also being good parents.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/getting-a-life/\">Getting A Life</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Freedom to Parent\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Freedom%20to%20Parent&via=heropress&url=https%3A%2F%2Fheropress.com%2Ffreedom-to-parent%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Freedom to Parent\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Ffreedom-to-parent%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Ffreedom-to-parent%2F&title=Freedom+to+Parent\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Freedom to Parent\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/freedom-to-parent/&media=https://heropress.com/wp-content/uploads/2015/11/MyPride-HeroPress-150x150.jpg&description=Freedom to Parent\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Freedom to Parent\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/freedom-to-parent/\" title=\"Freedom to Parent\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/freedom-to-parent/\">Freedom to Parent</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 May 2018 14:00:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: One Way to Whitelist and Blacklist Blocks in Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80994\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/one-way-to-whitelist-and-blacklist-blocks-in-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1044:\"<p><a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a> ships with a number of blocks but what if your client or project doesn&#8217;t need most of them? The <a href=\"https://wordpress.org/gutenberg/handbook/extensibility/extending-blocks/\">Gutenberg Handbook explains</a> how to create a whitelist and a blacklist for blocks but in some circumstances, Gutenberg does not respect the allowed_block_types filter.</p>\n\n<p>Jason Bahl, a WordPress Engineer at Digital First Media, <a href=\"http://jasonbahl.com/2018/05/29/whitelisting-blacklisting-blocks/\">published a tutorial</a> that explains how to whitelist and blacklist blocks using a filterable, localized array.</p>\n\n<p>One thing to keep in mind is that Gutenberg development is in a high state of flux and Bahl warns that his technique is fragile and will likely cause things to break over time. He suggests keeping a close eye on <a href=\"https://github.com/WordPress/gutenberg\">Gutenberg development</a> to see how blacklisting/whitelisting evolves in the plugin. <br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 May 2018 01:07:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WordCamp US 2018 is Accepting Speaker Proposals Until July 1st\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/wordcamp-us-2018-is-accepting-speaker-proposals-until-july-1st\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:640:\"<p>WordCamp US has <a href=\"https://2018.us.wordcamp.org/2018/05/29/speak-at-wordcamp-us/\">announced</a> it is accepting speaker proposals until July 1st, 11:59p.m. CDT. The event takes place December 7-9, 2018, in Nashville, TN.</p>\n\n<p>Those interested in speaking can submit an application through the <a href=\"https://wcus-speakers.org/\">Call for Speakers</a> site. The site contains session ideas, a list of speaker benefits, and tips for submissions.</p>\n\n<p>To see a list of sessions and speakers from last year&#8217;s event, check out the <a href=\"https://2017.us.wordcamp.org/sessions/\">2017 WordCamp US website</a>. </p>\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 May 2018 23:36:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.0.7 of the Akismet WordPress Plugin Is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1997\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2018/05/28/version-4-0-7-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:957:\"<p>Version 4.0.7 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>4.0.7 contains the following changes:</p>\n<ul>\n<li>Based on user feedback, the link on &#8220;Learn how your comment data is processed.&#8221; in the optional privacy notice now has a <code>target</code> of <code>_blank</code> and opens in a new tab/window.</li>\n<li>Updated the in-admin privacy notice to use the term &#8220;comment&#8221; instead of &#8220;contact&#8221; in &#8220;Akismet can display a notice to your users under your comment forms.&#8221;</li>\n<li>Only show in-admin privacy notice if Akismet has an API Key configured</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 May 2018 16:34:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Josh Smith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.0.6 of the Akismet WordPress Plugin Is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1989\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2018/05/26/version-4-0-6-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1494:\"<p>Version 4.0.6 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. If you are paying attention to version numbers, you will notice that we went from 4.0.3 to 4.0.6 in one day. This is because we got <a href=\"https://wordpress.org/support/topic/help-fatal-error-after-update/\">user reports</a> of issues with older versions of PHP with our intermediary versions, which we jumped on fixing right away.</p>\n<p>4.0.6 contains the following changes:</p>\n<ul>\n<li>\n<p class=\"p1\"><span class=\"s1\">Added a hook to provide Akismet-specific </span><span class=\"s2\">privacy</span><span class=\"s1\"> information for a site&#8217;s </span><span class=\"s2\">privacy</span><span class=\"s1\"> policy.</span></p>\n</li>\n<li>\n<p class=\"p1\"><span class=\"s1\">Added tools to control the display of a </span><span class=\"s2\">privacy</span><span class=\"s1\"> related notice under comment forms.</span></p>\n</li>\n<li>\n<p class=\"p1\"><span class=\"s1\">Fixed HTML in activation failure message to close META and HEAD tag properly.</span></p>\n</li>\n<li>\n<p class=\"p1\"><span class=\"s1\">Fixed a bug that would sometimes prevent Akismet from being correctly auto-configured.</span></p>\n</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available inÂ <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 May 2018 17:32:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Stephane Daury\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Post Status: The History of the Web, and WordPressâ€™s 15th Birthday â€” Draft Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=45814\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://poststatus.com/the-history-of-the-web-and-wordpresss-15th-birthday-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2249:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian is joined by guest-host <a href=\"https://twitter.com/jay_hoffmann\">Jay Hoffmann</a>. Jay is the Lead Developer at <a href=\"https://reaktivstudios.com/\">Reaktiv Studios</a> and the creator and curator of <a href=\"https://thehistoryoftheweb.com/\">The History of the Web</a>. It is a good time to discuss the history of the web with Jay, as WordPress is ready to celebrate <a href=\"https://ma.tt/2018/05/wordpress-at-15/\">its 15th birthday</a>.</p>\n<p>Be sure to subscribe to Jay&#8217;s newsletter on the History of the Web website to receive new articles on such a fascinating project.</p>\n<p>Brian and Jay discuss his work at Reaktiv, his prior work at Sesame Street Workshop and Random House, and the project he&#8217;s worked on for two years now documenting the web&#8217;s timeline and history. It was a fun discussion on all fronts.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"https://thehistoryoftheweb.com/\">The History of the Web</a></li>\n<li><a href=\"https://thehistoryoftheweb.com/the-story-of-flash/\">The history of Flash</a></li>\n<li><a href=\"https://thehistoryoftheweb.com/the-story-of-wordpress/\">The story of WordPress</a></li>\n<li><a href=\"https://thehistoryoftheweb.com/web-fonts/\">The decade long path to web fonts</a></li>\n</ul>\n<h3>Sponsor: WooCommerce</h3>\n<p><a href=\"https://woocommerce.com/\">WooCommerce</a>Â makes the most customizable eCommerce software on the planet, and itâ€™s the most popular too. You can build just about anything with WooCommerce.Â <a href=\"https://woocommerce.com/\">Try it today</a>, and thanks to the team at WooCommerce being a Post Status partner</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 May 2018 21:42:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: The First Release of WordPress Turns 15 Years Old\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80964\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/the-first-release-of-wordpress-turns-15-years-old\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2945:\"<p>This Sunday, May 27th, marks the 15th anniversary of the <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">first release</a> of WordPress. Users are celebrating the occasion across the world with <a href=\"https://twitter.com/WPCapeTown/status/999696890349457408\">huge cakes</a>, <a href=\"https://twitter.com/outtheboxthemes/status/999995112879984640\">cupcakes</a>, <a href=\"https://twitter.com/kevinwhoffman/status/999444582445273088\">memorable photos</a>, <a href=\"https://twitter.com/CristianoZanca/status/999723447789015040\">parties</a>, and <a href=\"https://twitter.com/ChapitreOnze/status/999738180361441280\">meetups</a>.<br />.<br /></p>\n\n\n	<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Now thatâ€™s a cake! <a href=\"https://twitter.com/hashtag/wp15?src=hash&ref_src=twsrc%5Etfw\">#wp15</a> <a href=\"https://t.co/i8lAr4SLsO\">pic.twitter.com/i8lAr4SLsO</a></p>&mdash; WordPress Cape Town (@WPCapeTown) <a href=\"https://twitter.com/WPCapeTown/status/999696890349457408?ref_src=twsrc%5Etfw\">May 24, 2018</a></blockquote>\n\n\n<p>To see if there is an event near you, visit the official <a href=\"https://wp15.wordpress.net/\">WordPress 15th anniversary site</a> and type your city into the search box. You can also follow the festivities on Twitter by browsing the <a href=\"https://twitter.com/search?q=%23wp15&src=typd\">#WP15</a> hashtag.</p>\n\n<p>If you&#8217;re thinking about hosting a party and want to use the WordPress logo on a cake or other bakery items, you&#8217;re in luck. The WordPress Foundation has amended the <a href=\"https://wordpressfoundation.org/trademark-policy/\">WordPress Trademark Policy</a> to allow people to put the logo on baked goods.<br /></p>\n\n<blockquote class=\"wp-block-quote\">\n	<p>*** Attention: If youâ€™re interested in putting the WordPress logo on a cake, cookie, cupcake, babka, or other celebratory food in honor of the WordPress 15th Anniversaryâ€¦ yes, this is OK under the Trademark policy. ***</p><cite>WordPress Trademark Policy </cite></blockquote>\n\n<p>In 2015, <a href=\"https://wptavern.com/93digital-publishes-wordpress-time-machine\">we highlighted</a> <a href=\"https://93digital.co.uk/\">93Digital</a>&#8216;s WordPress Time Machine. The company has continued to <a href=\"https://93digital.co.uk/wphistory/\">update the timeline</a> with images of the WordPress 4.6, 4.7, 4.8, and 4.9 backends along with their default themes. The timeline is a quick way to see how WordPress has evolved over 15 years. <br /></p>\n\n<img />\n	93Digital WordPress Time Machine\n\n\n<p>Don&#8217;t forget that you can use the coupon code <strong>CELEBRATEWP15</strong> to take 15% off any swag you purchase on the <a href=\"https://mercantile.wordpress.org/product-category/wordpress-15/\">WordPress Swag store</a>. The coupon code is good through the end of the year. <br /></p>\n\n<p>Will you be celebrating WordPress&#8217; birthday this weekend? If so, how and where? Let us know!<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 May 2018 19:41:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Matt: WordPress at 15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2018/05/wordpress-at-15/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2065:\"<img />\n\n<p>This weekend, May 27, marks <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">the 15th anniversary of the first release of WordPress</a>. It is an understatement to say that I am immensely proud of what this global community has become, and what it has created. More than 30% of the top sites on the web are now powered by WordPress, I&#8217;m writing this in <a href=\"https://wordpress.org/plugins/gutenberg/\">our next-generation editor Gutenberg</a>, and every day I meet someone who is building something interesting on WordPress or pushing our shared project in bold new directions. If you can believe it, growth has actually been accelerating.</p>\n\n<p>There&#8217;s so much: A group of high school students bands together to <a href=\"https://marchforourlives.com/home/\">build a national movement on WordPress</a>; a president builds the foundation for <a href=\"https://www.obama.org/\">his own next chapter on WordPress</a>; the <a href=\"https://www.whitehouse.gov/\">current WhiteHouse.gov</a> switches over; or when someone like Hajj Flemings brings thousands of small businesses <a href=\"https://rebrand.city/\">onto the open web for the first time</a>, with WordPress.</p>\n\n<p>To celebrate #WP15, hundreds of local WordPress communities around the world will be throwing parties. <a href=\"https://wp15.wordpress.net/\">Go here to find a meetup in your area</a>. <br /></p>\n\n<p>I am thankful to <a href=\"https://mikelittle.org/\">Mike</a> for helping make WordPress a reality, many dedicated folks in the years since, and to all of you who are dreaming up the next 15 years. <img src=\"https://s.w.org/images/core/emoji/2.4/72x72/1f604.png\" alt=\"ðŸ˜„\" class=\"wp-smiley\" /></p>\n\n<p>Many in the open source world are like Moses in that they speak of the Promised Land but will never set foot there. If I spend the rest of my life working and we donâ€™t reach almost all websites being powered by open source and the web being substantially open, I will die content because I already see younger generations picking up the banner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 May 2018 19:30:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Dev Blog: WordPress.org Privacy Policy Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6047\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/05/wordpress-org-privacy-policy-updates/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:656:\"<p>The <a href=\"https://wordpress.org/about/privacy/\">WordPress.org privacy policy</a> has been updated, hurray! While we weren&#8217;t able to remove <strong>all</strong> the long sentences, we hope you find the revisions make it easier to understand:</p>\n<ul>\n<li>how we collect and use data,</li>\n<li>how long the data we collect is retained, and</li>\n<li>how you can request a copy of the data you&#8217;ve shared with us.</li>\n</ul>\n<p>There hasn&#8217;t been any change to the data that WordPress.org collects or how that data is used; the privacy policy just provides more detail now. Happy reading, and thanks for using WordPress!</p>\n<p>&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 May 2018 08:06:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: WPWeekly Episode 317 â€“ Minor Major Major Minor Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=80952&preview=true&preview_id=80952\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wpweekly-episode-317-minor-major-major-minor-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2307:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss Adobe&#8217;s acquisition of Magento, feedback regarding WordPress 4.9.6, when 4.9.7 might ship, an unofficial WordCamp app for iOS, and whether or not it&#8217;s time for WordPress auto updates to occur for every version. I describe what it&#8217;s like having poison ivy on my face and my continuing woes with lawn care equipment.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://techcrunch.com/2018/05/21/adobe-to-acquire-magento-for-1-6-b/\">Adobe to acquire Magento for $1.68B</a><br />\n<a href=\"https://core.trac.wordpress.org/ticket/44142\">WordPress 4.9.7 will include patch to fix an issue that caused fatal 500 errors</a><br />\n<a href=\"https://make.wordpress.org/community/2018/05/18/wordpress-logos-on-cakes/\">You can use the WordPress logo on bakery goods to celebrate WordPressâ€™ birthday</a><br />\n<a href=\"https://wptavern.com/marcel-schmitz-releases-unofficial-wordcamp-for-ios-app\">Marcel Schmitz Releases Unofficial WordCamp for iOS App</a><br />\n<a href=\"https://themeshaper.com/2018/05/22/music-a-gutenberg-powered-theme/\">Music: A Gutenberg-Powered Theme</a><br />\n<a href=\"https://deliciousbrains.com/gdpr-local-development/\">GDPR for WordPress Developers: Announcing the (Free) Anonymization AddonÂ Â Â  </a><br />\n<a href=\"https://buddypress.org/2018/05/buddypress-3-0-0-apollo/\">BuddyPress 3.0.0 â€œApolloâ€</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://www.kickstarter.com/projects/1920546253/panic-mode\">Panic Mode</a> the card game. A cooperative card game of office politics during Disaster Recovery for up to 8 players.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 30th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>SubscribeÂ to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>SubscribeÂ to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>SubscribeÂ to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #317:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 May 2018 19:44:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Why Sites Didnâ€™t Automatically Update to WordPress 4.9.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/why-sites-didnt-automatically-update-to-wordpress-4-9-6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2086:\"<p>WordPress 4.9.6 was <a href=\"https://wptavern.com/wordpress-4-9-6-released-with-user-data-export-and-removal-tools\">released last</a> week and was labeled a minor release. Minor releases trigger WordPress&#8217; automatic update system. Shortly after its release, some users <a href=\"https://wordpress.org/support/topic/4-9-6-not-updating-automatically/\">began questioning</a> why their sites were not automatically updating to 4.9.6. I wondered the same thing after logging into a site I maintain and discovering it had not updated.</p>\n\n<p>It turns out that the WordPress Development team disabled the auto update system after discovering that a few plugins were incorrectly loading the new privacy features and <a href=\"https://core.trac.wordpress.org/ticket/44142\">triggering fatal 500 errors</a> on the frontend of user&#8217;s sites.</p>\n\n<p>The issue stems from privacy code that includes a file that was not expected to be loaded without the rest of the WordPress admin. Mika Epstein, a volunteer member of the plugin review team, personally contacted the affected plugin developers last weekend to help rectify the issue.</p>\n\n<p>A recent scan of the WordPress plugin directory shows that there are no other plugins incorrectly loading the privacy code. However, automatic updates for WordPress 4.9.6 remain disabled until the release of WordPress 4.9.7.</p>\n\n<p>WordPress 4.9.7 will fix the issue described above and include a few other bug fixes. Since auto updates will be enabled for 4.9.7, sites running on 4.9.5 should auto update to 4.9.7 when it&#8217;s released. WordPress 4.9.7 is expected to be released sometime after the Memorial Day holiday (Monday, May 28th). <del>Until then, users will need to manually update to 4.9.6.</del></p>\n\n<h3><strong>*Updated 5/23/2018 9:28 PM EST*</strong></h3>\n\n<p>Earlier this evening, Gary Pendergast enabled auto updates for WordPress 4.9.6 and the team is monitoring for any new errors that are triggered. So far, 20K sites have updated without any notable problems. </p>\n\n<p><del></del></p>\n\n<p><br /></p><br /></p>\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 May 2018 00:32:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"HeroPress: Accessibility Where It Matters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2551\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://heropress.com/accessibility-where-it-matters/#utm_source=rss&utm_medium=rss&utm_campaign=accessibility-where-it-matters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3223:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2015/07/BeautyOfWordpress-HeroPress-corrected-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The beauty of WordPress and its community is that we can create opportunities for ourselves.\" /><p>One of the things that I&#8217;ve always loved about WordPress is how it provides things to people. It provides a living to those who have none, it provides community to those without one, and it can provide tools to those who need them.</p>\n<p>Amanda Rush is blind, and navigates a world that is often hostile to blind people. WordPress developers work very very hard to make the WordPress software usable by people with no sight.</p>\n<p>A wonderful by-product of that is that Amanda and people like her can build a career for themselves, without depending on a physically friendly workplace and a physically friendly transit.</p>\n<p>WordPress provides Freedom to those who deal with a world that&#8217;s built to be hostile toward them.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/finding-freedom-wordpress/\">Finding Freedom in WordPress</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Accessibility Where It Matters\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Accessibility%20Where%20It%20Matters&via=heropress&url=https%3A%2F%2Fheropress.com%2Faccessibility-where-it-matters%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Accessibility Where It Matters\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Faccessibility-where-it-matters%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Faccessibility-where-it-matters%2F&title=Accessibility+Where+It+Matters\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Accessibility Where It Matters\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/accessibility-where-it-matters/&media=https://heropress.com/wp-content/uploads/2015/07/BeautyOfWordpress-HeroPress-corrected-150x150.jpg&description=Accessibility Where It Matters\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Accessibility Where It Matters\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/accessibility-where-it-matters/\" title=\"Accessibility Where It Matters\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/accessibility-where-it-matters/\">Accessibility Where It Matters</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 May 2018 12:00:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Marcel Schmitz Releases Unofficial WordCamp for iOS App\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/marcel-schmitz-releases-unofficial-wordcamp-for-ios-app\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2623:\"<p>Marcel Schmitz, founder of <a href=\"https://hellodev.us/\">hellodev</a>, has <a href=\"https://schmitzoide.blog/wordcamp-app-an-ios-app-for-all-wordcampers-around-the-world/\">released</a> WordCamp for iOS for free on the <a href=\"https://itunes.apple.com/gb/app/wordcamp/id1384323581?mt=8\">App Store</a>. The app utilizes the WordPress REST API endpoints from <a href=\"https://central.wordcamp.org/\">WordCamp Central</a> and hellodev to display sessions, speakers, and news from an event&#8217;s official site.</p>\n\n<p>Schmitz used <a href=\"https://2018.porto.wordcamp.org/\">WordCamp Porto</a> to test features within the app. Sessions are displayed in a timeline and if you give the app permission to access your device&#8217;s calendar, you can add sessions to it and create reminders.</p>\n\n<img />\n	Session Timeline\n\n\n<p>When viewing a session in the app, the screen displays the time the session takes place, name of the speaker with a quick link to a bio, session description, and a section at the bottom to write notes.</p>\n\n<p>There&#8217;s also an option on the top-right corner to mark sessions as favorites. However, during testing, marking a session as a favorite would crash the app.</p>\n\n<img />\n	Take Notes While Watching a Session\n\n\n<p>The app displays all of the necessary information concerning the event without the need to browse to the actual site. Schmitz says he plans to add more information about the city, venue, and the ability to call an UBER in future updates.</p>\n\n<p>WordCamp is a <a href=\"https://wordpressfoundation.org/trademark-policy/\">trademark of the WordPress Foundation</a>. Although Schmitz clearly states that WordCamp for iOS is not the official app for all WordCamps, he does not mention receiving permission from the Foundation to use WordCamp in the name. Unless his app is adopted to be the official App for iOS devices, it&#8217;s likely he will need to change the name.</p>\n\n<p>Searching the App Store for WordCamp only produces two results. Schmitz&#8217;s app and a WordCamp EU Paris Guide. There&#8217;s an official WordCamp App for Android available on <a href=\"https://play.google.com/store/apps/details?id=org.wordcamp.android&hl=en_US\">Google Play</a> and <a href=\"https://github.com/wordpress-mobile/WordCamp-Android\">GitHub</a> but the project has seen little activity in the last three years.</p>\n\n<p>WordCamp for iOS fills a void and gives users convenient access to a lot of relevant WordCamp information. To check it out for yourself, you can download it for free from the <a href=\"https://itunes.apple.com/gb/app/wordcamp/id1384323581?mt=8\">App Store</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2018 20:54:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"BuddyPress: BuddyPress 3.0.0 â€œApolloâ€\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=273108\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://buddypress.org/2018/05/buddypress-3-0-0-apollo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3300:\"<p>BuddyPress 3.0.0 &#8220;Apollo&#8221; is now available for immediate download from the WordPress.org plugin repository, or right from your WordPress Dashboard. &#8220;Apollo&#8221; focuses on various improvement forÂ developers, site builders and site managers.</p>\n<h4>Say hello to â€œNouveauâ€!</h4>\n<p>A bold reimagining of our legacy templates, Nouveau is our celebration of <a href=\"https://buddypress.org/2018/03/10-years/\">10 years of BuddyPress</a>! Nouveau delivers modern markup with fresh JavaScript-powered templates, and full integration with WordPressâ€™ Customizer, allowing more out-of-the-box control of your BuddyPress content than ever before.</p>\n<p>Nouveau provides vertical and horizontal layout options for BuddyPress navigation, and for the component directories, you can choose between a grid layout, and a classic flat list.</p>\n<p>Nouveau is fully compatible with WordPress. Existing BuddyPress themes have been written for our legacy template pack, and until they are updated, resolve any compatibility issues by choosing the legacy template pack option in <strong>Settings &gt; BuddyPress</strong>.</p>\n<h4>Support for WP-CLI</h4>\n<p><a href=\"https://wp-cli.org/\">WP-CLI</a> is the command-line interface for WordPress. You can update plugins, configure multisite installs, and much more, without using a web browser. With this version of BuddyPress, you can now manage your BuddyPress content from WP-CLI.</p>\n<h4>Control site-wide notices from your dashboard</h4>\n<p>Site Notices are a feature within the Private Messaging component that allows community managers to share important messages with all members of their community. With Nouveau, the management interface for Site Notices has been removed from the front-end theme templates.</p>\n<p>Explore the new management interface at <strong>Users &gt; Site Notices</strong>.</p>\n<h4>New profile field type: telephone numbers</h4>\n<p>A new telephone number field type has been added to the Extended Profiles component, with support for all international number formats. With a modern web browser, your members can use this field type to touch-to-dial a number directly.</p>\n<h4>BuddyPress: leaner, faster, stronger</h4>\n<p>With every BuddyPress version, we strive to make performance improvements alongside new features and fixes; this version is no exception. Memory use has been optimised â€” within active components, we now only load each individual code file when itâ€™s needed, not before.</p>\n<p>Most notably, the <a href=\"https://bpdevel.wordpress.com/2017/12/07/legacy-forums-support-will-be/\">Legacy Forums component has been removed</a> after 9 years of service. If your site was using Legacy Forums, you need to <a href=\"https://codex.buddypress.org/getting-started/guides/migrating-from-old-forums-to-bbpress-2/\">migrate to the bbPress plugin</a>.</p>\n<h4>Make mine Apollo&#8217;s</h4>\n<p>In north-east London, Stoke Newington &#8212; or Stokey, as it&#8217;s affectionately known &#8212; is an area awash with newly-opening restaurants, amidst lapping waves of encroaching gentrification. Apollo&#8217;s is an authentically Neapolitan pizza place on the High Street, serving fantastically tasty yet uncomplicated pizzas. If you ever find yourself in north London, don&#8217;t miss Apollo&#8217;s!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 May 2018 00:23:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Paul Gibbs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WordPress 4.9.6 Released With User Data Export and Removal Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80898\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/wordpress-4-9-6-released-with-user-data-export-and-removal-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2428:\"<p><a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">WordPress 4.9.6</a> has been released and is considered a privacy and maintenance release. Traditionally, <a href=\"https://make.wordpress.org/core/handbook/about/release-cycle/version-numbering/\">minor versions</a> contain security and bug fixes. This release is different as it includes a number of privacy related features such as:</p>\n\n<ul>\n	<li>Privacy Policy page template/creation</li>\n	<li>User Data Request Handling</li>\n	<li>User Data Export and Removal tools</li>\n	<li>Cookie Opt-in for Comments</li>\n	<li>Other features related to <a href=\"https://www.eugdpr.org/\">GDPR Compliance</a></li>\n</ul>\n\n<p>Earlier this month, I <a href=\"https://wptavern.com/wordpress-4-9-6-beta-1-adds-tools-for-gdpr-compliance\">reviewed the privacy features</a> in 4.9.6 and since that post was published, the team has made a number of adjustments. For example, site admins will receive an email when a user confirms a personal data export or removal request and the text on the privacy policy template page has been simplified.Â <br /></p>\n\n<p>The privacy features in WordPress 4.9.6 are largely the result of a <a href=\"https://wptavern.com/new-team-forms-to-facilitate-gdpr-compliance-in-wordpress-core\">new team of volunteers</a> that was formed earlier this year. The team is already hard at work on improving these features for future versions of WordPress.</p>\n\n<p>In addition to privacy enhancements, more than 50 bugs have been fixed. &#8216;Mine&#8217; has been added as a filter in the WordPress Media Library and when viewing a plugin in the backend, it will display the minimum PHP version that&#8217;s required.</p>\n\n<p>The WordPress Development team has published an <a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">update guide</a> that provides links to technical information related to features in 4.9.6. In addition, there&#8217;s a <a href=\"https://make.wordpress.org/core/2018/05/17/changes-that-affect-theme-authors-in-wordpress-4-9-6/\">guide available for Theme Authors</a> as styling adjustments may be necessary.</p>\n\n<p>As this is a minor release, sites are in the process of updating automatically. If you encounter an issue with 4.9.6, please report it on the <a href=\"https://wordpress.org/support/forum/how-to-and-troubleshooting/\">Support Forums</a>. <br /></p>\n\n<p><br /></p><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 May 2018 22:46:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Dev Blog: WordPress 4.9.6 Privacy and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5920\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10732:\"<p>WordPress 4.9.6 is now available. This is a <strong>privacy and maintenance release</strong>. We encourage you to update your sites to take advantage of the new privacy features.</p>\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2018/05/GDPR-Banner.png?w=632&ssl=1\" alt=\"A decorative header featuring the text \" />\n\n<h2>Privacy</h2>\n\n<p>The European Union&#8217;s General Data Protection Regulation (<strong>GDPR</strong>) takes effect on May 25. The GDPR requires companies and site owners to be transparent about how they collect, use, and share personal data. It also gives individuals more access and choice when it comes to how their own personal data is collected, used, and shared.<br /></p>\n\n<p>Itâ€™s important to understand that while the GDPR is a European regulation, its requirements apply to all sites and online businesses that collect, store, and process personal data about EU residents no matter where the business is located.<br /></p>\n\n<p>You can learn more about the GDPR from the European Commission&#8217;s <a href=\"http://ec.europa.eu/justice/smedataprotect/index_en.htm\">Data Protection page</a>.<br /></p>\n\n<p>We&#8217;re committed to supporting site owners around the world in their work to comply with this important law. As part of that effort, weâ€™ve added a number of new privacy features in this release.</p>\n\n<h2>Comments</h2>\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2018/05/comments-border.png?w=632&ssl=1\" alt=\"A screenshot of a comment form, where the new \" name=\"name\" />\n\n<p>Logged-out commenters will be given a choice on whether their name, email address, and website are saved in a cookie on their browser.</p>\n\n<h2>Privacy Policy Page</h2>\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2018/05/privacy-policy-collapsed.png?w=632&ssl=1\" alt=\"A screenshot of the new Privacy Settings page.\" class=\"wp-image-5995\" />\n\n<p>Site owners can now designate a privacy policy page. This page will be shown on your login and registration pages. You should manually add a link to your policy to every page on your website. If you have a footer menu, thatâ€™s a great place to include your privacy policy.<br /></p>\n\n<p>In addition, weâ€™ve created a guide that includes insights from WordPress and participating plugins on how they handle personal data. These insights can be copied and pasted into your site&#8217;s privacy policy to help you get started.<br /></p>\n\n<p>If you maintain a plugin that collects data, we recommend including that information in WordPressâ€™ privacy policy guide. <a href=\"https://developer.wordpress.org/plugins/privacy/\">Learn more in our Privacy section of the Plugin Handbook</a>.</p>\n\n<h2>Data Handling</h2>\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=632&ssl=1\" alt=\"A screenshot of the new Export Personal Data tools page. Several export requests are listed on the page, to demonstrate how the new feature will work.\" class=\"wp-image-5999\" />\n\n<div class=\"wp-block-columns has-2-columns\">\n		<h3 class=\"layout-column-1\">Data Export</h3>\n	\n		<p class=\"layout-column-1\">Site owners can export a ZIP file containing a user&#8217;s personal data, using data gathered by WordPress and participating plugins.</p>\n	\n		<h3 class=\"layout-column-2\">Data Erasure</h3>\n	\n		<p class=\"layout-column-2\">Site owners can erase a user&#8217;s personal data, including data collected by participating plugins.</p>\n	</div>\n\n<blockquote class=\"wp-block-quote\">\n	<p>Howdy,</p>\n	<p>A request has been made to perform the following action on your account:<br /> </p>\n	<p><strong>Export Personal Data</strong><br /> </p>\n	<p>To confirm this, please click on the following link:<br /><a href=\"https://wordpress.org/news/feed/\">http://.wordpress.org/wp-login.php?action=confirmaction&#8230;</a><br /> </p>\n	<p>You can safely ignore and delete this email if you do not want to<br /> take this action.<br /> </p>\n	<p>This email has been sent to <a href=\"https://wordpress.org/news/feed/\">you@example.com</a>.<br /> </p>\n	<p>Regards,<br /><em>Your friends at WordPress</em><br /><a href=\"http://wordpress.org\"><em> http://wordpress.org</em></a></p>\n</blockquote>\n\n<p>Site owners have a new email-based method that they can use to confirm personal data requests. This request confirmation tool works for both export and erasure requests, and for both registered users and commenters.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Maintenance</h2>\n\n<p>95 updates were made in WordPress 4.9.6. In addition to the above, particularly of note were:<br /></p>\n\n<ul>\n	<li>&#8220;Mine&#8221; has been added as a filter in the media library.</li>\n	<li>When viewing a plugin in the admin, it will now tell you the minimum PHP version required.</li>\n	<li>We&#8217;ve added new PHP polyfills for forwards-compatibility and proper variable validation.</li>\n	<li>TinyMCE was updated to the latest version (4.7.11).<br /></li>\n</ul>\n\n<p><a href=\"https://make.wordpress.org/core/2018/05/17/4-9-6-update-guide/\">This post has more information about all of the issues fixed in 4.9.6 if you&#8217;d like to learn more</a>.</p>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.6</a> or venture over to Dashboard â†’ Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates will start updating soon.<br /></p>\n\n<p class=\"has-background has-very-light-gray-background-color\">Please note that if youâ€™re currently on WordPress 4.9.3, you should manually update your site immediately.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<p>Thank you to everyone who contributed to WordPress 4.9.6:<br /><a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan/\">abdullahramzan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/allendav/\">allendav</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/burlingtonbytes/\">Burlington Bytes</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/claudiu/\">claudiu</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ericdaams/\">Eric Daams</a>, <a href=\"https://profiles.wordpress.org/fclaussen/\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jesperher/\">Jesper V Nielsen</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">JJJ</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/dejliglama/\">KÃ¥re Mulvad Steffensen</a>, <a href=\"https://profiles.wordpress.org/lakenh/\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/macbookandrew/\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbarthmaier/\">pbrocks</a>, <a href=\"https://profiles.wordpress.org/postphotos/\">postphotos</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/presstigers/\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/littlerchicken/\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/satollo/\">Stefano Lissa</a>, <a href=\"https://profiles.wordpress.org/stephdau/\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/teddytime/\">teddytime</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">thomasplevy</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/voneff/\">voneff</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, and <a href=\"https://profiles.wordpress.org/xkon/\">Xenos (xkon) Konstantinos</a>.<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 May 2018 19:21:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Allen Snook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: WPWeekly Episode 316 â€“ Stone Cold WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=80887&preview=true&preview_id=80887\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/wpweekly-episode-316-stone-cold-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2175:\"<p>While editing this episode, I noticed that my voice routinely goes from quiet to loud. I&#8217;m not sure why this is and suspect it has something to do with Windows 10. I apologize for the audio quality and will try to have it fixed by next week&#8217;s show.</p>\n<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss the recent acquisition of the Google Analytics Dashboard for WordPress plugin, rebuilding the WordPress edit screen, and an in-depth conversation on the concerns expressed surrounding WordPress 4.9.6. We send a shout out to Alex Mills, get an update on John&#8217;s stolen goats, and rant about lawn care power equipment.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://exactmetrics.com/google-analytics-dashboard-wordpress-gadwp-now-exactmetrics/\">Google Analytics Dashboard for WordPress (GADWP) is Now ExactMetrics</a><br />\n<a href=\"https://www.satellitewp.com/en/warning-wordpress-4-9-6-really-is-a-major-update/\">Warning: WordPress 4.9.6 Really is a Major Update</a><br />\n<a href=\"https://humanmade.com/2018/05/11/rebuilding-wordpress-edit-screen/\">Rebuilding the WordPress Edit Screen</a><br />\n<a href=\"https://techcrunch.com/2018/05/10/mediums-latest-pivot-leaves-some-independent-media-in-the-lurch/\">Mediumâ€™s latest pivot leaves some independent media in the lurch</a><br />\n<a href=\"https://alex.blog/2018/05/15/vision-update-better-than-expected-but-serious-damage-was-done/\">Vision Update: Better Than Expected But Serious Damage Was Done</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 23rd 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>SubscribeÂ to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>SubscribeÂ to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>SubscribeÂ to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #316:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 May 2018 01:12:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"HeroPress: Succeeding in Egypt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2548\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://heropress.com/succeeding-in-egypt/#utm_source=rss&utm_medium=rss&utm_campaign=succeeding-in-egypt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2936:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2015/09/Fail-HeroPress-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull quote: If you didnâ€™t fail, you probably havenâ€™t *truly* succeeded yet.\" /><p>This week&#8217;s HeroPress rewind is by Shady Sharaf from Cairo, Egypt. Shady is really the kind of person I had in mind when I started HeroPress: talented and smart, but isolated. The WordPress community is relatively small in Cairo, given the number of people that live there. So he leans on the international community for the kinds of relationships others (who can just go to WordCamps whenever they want) might take for granted.</p>\n<p>Shady&#8217;s essay came to me during a time of unrest in Egypt, yet he still got up every morning, took care of his family, and got work done. He&#8217;s one of my heroes for a number of reasons, as well as a good friend.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/ambition-persistence-self-motivation/\">Ambition, Persistence, and Self-Motivation</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Succeeding in Egypt\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Succeeding%20in%20Egypt&via=heropress&url=https%3A%2F%2Fheropress.com%2Fsucceeding-in-egypt%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Succeeding in Egypt\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fsucceeding-in-egypt%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fsucceeding-in-egypt%2F&title=Succeeding+in+Egypt\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Succeeding in Egypt\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/succeeding-in-egypt/&media=https://heropress.com/wp-content/uploads/2015/09/Fail-HeroPress-150x150.jpg&description=Succeeding in Egypt\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Succeeding in Egypt\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/succeeding-in-egypt/\" title=\"Succeeding in Egypt\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/succeeding-in-egypt/\">Succeeding in Egypt</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 May 2018 11:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: To Free Up Resources, WordPress.org Plugin Review Team Begins Closing Unused Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80872\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/to-free-up-resources-wordpress-org-plugin-review-team-begins-closing-unused-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1561:\"<p>In an effort to free up resources on WordPress.org, the WordPress Plugin Review Team <a href=\"https://make.wordpress.org/plugins/2018/05/14/closing-unused-plugins/\">is closing</a> unused plugins. An unused plugin is one that has been approved for the directory but no code was uploaded by the developer in six months or more.<br /></p>\n\n<p>An unused plugin reserves a URL slug on WordPress.org and prevents others from using it. It also takes resources away from active plugins. In addition, if plugin authors are submitting multiple plugins without taking advantage of the resources WordPress.org offers, submissions from that author will be suspended.</p>\n\n<p>WordPress.org provides plugin authors free hosting as a convenience and is not a listing service. Mika Epstein, a member of the plugin review team, says that some people have taken advantage of the submission process to receive a code audit, &#8220;Weâ€™ve found out some people like to get a review as a â€˜freeâ€™ security review instead of hiring people for that work.&#8221;</p>\n\n<p>To find out what happens when a plugin is closed and how to close a plugin you maintain, check out <a href=\"https://developer.wordpress.org/plugins/wordpress-org/plugin-developer-faq/#closed-plugins\">this guide</a> in the Plugin Developer FAQ. Also, if you want to use a plugin name that&#8217;s currently held by a closed, unused plugin, you can <a href=\"https://developer.wordpress.org/plugins/wordpress-org/take-over-an-existing-plugin/\">request to take over the slug</a> by contacting the review team.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 May 2018 21:17:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WPTavern: WordPress 4.9.6 RC1 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80843\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wptavern.com/wordpress-4-9-6-rc1-released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1551:\"<p>WordPress 4.9.6 Release Candidate 1 <a href=\"https://make.wordpress.org/core/2018/05/10/wordpress-4-9-6-release-candidate/\">is available</a> for download and addresses some of the issues that have been reported in beta 1. Since the beta&#8217;s release, there have been 30 bugs fixed.</p>\n\n<p>Many of the fixes in this release are focused on the new privacy tools that help with GDPR compliance. The verbiage has been changed in multiple areas to make explanations and actions clearer. For example, the Privacy Policy introduction text has been <a href=\"https://core.trac.wordpress.org/ticket/43933\">shortened and more user friendly</a>.</p>\n\n<p>One notable bug fix is that site administrators now receive an email when a Personal Data Export/Removal request is confirmed. In a future version of WordPress, it&#8217;s possible that the <a href=\"https://core.trac.wordpress.org/ticket/44000\">notification bubbles</a> will be extended to display confirmed requests.</p>\n\n<p>A full list of changes in this release can be <a href=\"https://core.trac.wordpress.org/query?status=closed&type=defect+(bug)&milestone=4.9.6&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&desc=1&order=type\">found on Trac</a>. This minor release needs more testing than usual due to the privacy tools and enhancements introduced. Please test 4.9.6 on staging site or local server and if you encounter any issues, report them on the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta/Release Candidate section</a> of the forums.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 May 2018 01:37:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: WPWeekly Episode 315 â€“ WordPress 4.9.6, Gutenberg, and Stolen Goats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=80834&preview=true&preview_id=80834\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/wpweekly-episode-315-wordpress-4-9-6-gutenberg-and-stolen-goats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2075:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> starts the show by giving everyone a status update on bbPress 2.6. We review the new privacy features in WordPress 4.9.6 Beta 1 and provide feedback. We tell you what&#8217;s new in Gutenberg 2.8 and comment on WooCommerce&#8217;s new Products insertion block. Last but not least, John describes <a href=\"https://jjj.blog/2018/05/a-lady-stole-our-goats/\">watching security footage of a woman stealing metal goats</a> off his property at 4:30 AM.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-4-9-6-beta-1-adds-tools-for-gdpr-compliance\">WordPress 4.9.6 Beta 1 Adds Tools for GDPR Compliance</a><br />\n<a href=\"https://make.wordpress.org/core/2018/05/08/4-9-6-schedule-changes/\">4.9.6 Schedule Changes</a><br />\n<a href=\"https://make.wordpress.org/core/2018/05/04/whats-new-in-gutenberg-may-the-4th/\">Whatâ€™s new in Gutenberg? (May the 4th)</a><br />\n<a href=\"https://woocommerce.com/2018/05/making-it-easier-to-add-products-to-posts-and-pages-with-the-products-block-for-gutenberg/\">Making it easier to add products to posts and pages with the Products block for Gutenberg</a><br />\n<a href=\"https://woocommerce.wordpress.com/2018/05/09/woocommerce-3-4-rc1/\">WooCommerce 3.4 RC1</a><br />\n<a href=\"https://wptavern.com/recap-of-attending-the-first-wordcamp-retreat\">Recap of Attending the First WordCamp Retreat</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 16th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>SubscribeÂ to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>SubscribeÂ to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>SubscribeÂ to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #315:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 May 2018 22:21:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"HeroPress: Finding Family Wherever You Can\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2544\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://heropress.com/finding-family-wherever-you-can/#utm_source=rss&utm_medium=rss&utm_campaign=finding-family-wherever-you-can\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3162:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/05/050918-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Without the WordPress community, I don\'t know where I would be now.\" /><p>I don&#8217;t actually remember when I met Jeff Matson.Â  As I look back over the last 8 years I know there were times I didn&#8217;t know him, and then suddenly he was there, immediately a good friend. And then, for all that I thought I knew him, his HeroPress essay shed an entirely new light on who he is.</p>\n<p>I believe that what we know about people shapes how we view them. Now I know that Jeff plowed through some crazy, dangerous, harmful things in his young life and somehow still ended up a stable, intelligent, reliable adult. Many kids in that life don&#8217;t make it this far.</p>\n<p>I&#8217;m proud of what the WordPress community has contributed to his life, and I&#8217;m grateful to Jeff for what he&#8217;s has contributed to this community.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/out-of-the-darkness/\">Out Of The Darkness</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Finding Family Wherever You Can\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Finding%20Family%20Wherever%20You%20Can&via=heropress&url=https%3A%2F%2Fheropress.com%2Ffinding-family-wherever-you-can%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Finding Family Wherever You Can\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Ffinding-family-wherever-you-can%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Ffinding-family-wherever-you-can%2F&title=Finding+Family+Wherever+You+Can\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Finding Family Wherever You Can\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/finding-family-wherever-you-can/&media=https://heropress.com/wp-content/uploads/2018/05/050918-150x150.jpg&description=Finding Family Wherever You Can\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Finding Family Wherever You Can\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/finding-family-wherever-you-can/\" title=\"Finding Family Wherever You Can\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/finding-family-wherever-you-can/\">Finding Family Wherever You Can</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 May 2018 12:00:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: Recap of Attending the First WordCamp Retreat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80810\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/recap-of-attending-the-first-wordcamp-retreat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5176:\"<img />\n\n<p>The first <a href=\"https://2018-soltau.retreat.wordcamp.org/\">WordCamp Retreat</a> was held this past weekend in Soltau, Germany and by all accounts, it was a very successful event. The following is a guest post by <a href=\"https://remkus.devries.frl/\">Remkus de Vries</a> who recaps his experience attending the event.</p>\n\n<p><a href=\"https://twitter.com/DeFries\">Remkus</a> is from FryslÃ¢n, the Netherlands and is Manager Partnerships at <a href=\"https://yoast.com/\">Yoast</a>. Heâ€™s been active in the WordPress Community since 2006 and co-founded WordCamp Netherlands and WordCamp Europe.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<p>As some of you know, I&#8217;ve been active in the WordPress Community for over a decade and in that time, I&#8217;ve attended many WordPress related events. From Meetups to WordCamps. I get so excited about WordCamps, I&#8217;ve even <a href=\"https://netherlands.wordcamp.org\">co-founded</a>Â <a href=\"https://europe.wordcamp.org\">a few.</a></p>\n\n<p>However, in all those years, the format of a WordCamp has been relatively consistent. One or two days, multiple tracks and, in the last five years, a Contributor Day. Perhaps the biggest difference has been the city + location combination. WordCamp Europe started shaking this up with us opting for a rotating city and country principle (<a href=\"https://2018.europe.wordcamp.org\">you should totally come to this year&#8217;s edition btw</a>), but the main format has relatively remained the same.</p>\n\n<p>This past weekend, I attended a WordCamp with my colleagues from Yoast with quite a different format though. Yes, there were still presentations, different tracks, a Contributor Day, and an after party. So what was different about this one? The short answer: a lot.</p>\n\n<p><a href=\"https://2018-soltau.retreat.wordcamp.org/\">WordCamp Retreat in Soltau</a>, Germany was the first of its kind. One of the primary goals of WordCamps is to benefit the local community and <a href=\"https://twitter.com/search?q=WCRetreat&src=typd\">#WCRetreat</a> took a very different approach.<br /></p>\n\n<p>Here are a couple of things that set it apart from a typical WordCamp:</p>\n\n<ul>\n	<li>The location was exclusive for the WordCamp attendees.</li>\n	<li>Indoor and outdoor activities.</li>\n	<li>Work on your personal development/strengths.</li>\n	<li>Enjoy co-working under ideal conditions.</li>\n	<li>Alternate between valuable input and relaxation.</li>\n	<li>Benefit from previously unknown networking opportunities.</li>\n</ul>\n\n<h2><strong>Exclusive Location</strong></h2>\n\n<p>Most of this was made possible by the location. <a href=\"http://www.hotel-park-soltau.de/index.php\">Hotel Park Soltau</a> is located in the North of Germany surrounded by woods and heath. The hotel was reserved for WordCamp attendees only. Everyone stayed there, ate there, and networked there. It was an incredibly immersive experience on a different level than any of the other WordCamps I&#8217;ve attended.</p>\n\n<img />\n	WordCamp Retreat Venue\n\n\n<h2><strong>Immersive Activities</strong></h2>\n\n<p>In addition to the regular WordCamp presentations you might be familiar with, were non-tech related workshops and activities. From mindfulness, yoga, boot camps, to jam sessions and just playing sports outside (like football â€“ not egg hand â€“ and basketball). The goal being to interact with fellow attendees on a different level. And it worked. I saw much more networking and getting to know one another happening.</p>\n\n<h2><strong>A Schedule Built Around Social Interactionï»¿</strong></h2>\n\n<p>The day started with some of the above-mentioned activities, then breakfast for all, followed by the first regular sessions. There was plenty of time between the sessions as well as morning, lunch and afternoon breaks that allowed for a lot of hallway tracks. Before the end of the afternoon, we switched back to other activities again like playing sports or jam sessions.</p>\n\n<h2><strong>Contributor Day on Day 2 of 3</strong></h2>\n\n<p>One of the things I enjoyed a lot is the fact that the Contributor Day was organized the second day of the three. This meant that everyone attending was kinda &#8216;locked into&#8217; attending the Contributor Day. Â I&#8217;m not a big fan of forcing people to do anything, but this was a nice way of integrating the giving back part of a WordCamp.</p>\n\n<img />\n	WordCamp Retreat Contributor Day\n\n\n<h2>I Want to See More of These Types of WordCamps</h2>\n\n<p>Sunday afternoon, as the attendees were getting ready to head home, you could see how much everyone had enjoyed these three immersive days. The relaxed schedule, the different approach to what came when, Â the fact of us all sharing the same rooms for 72 hours, the activities before, between and after the presentations, they all made this concept an extremely pleasant and relaxed one.<br /></p>\n\n<p>This first edition had about 180 attendees and all of their feedback will determine the fine tuning of what this WordCamp can be, but I&#8217;m very enthusiastic about this first edition.<br /></p>\n\n<p>I hope to see this type of WordCamp happen a lot more. It adds value to the format as we know it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 May 2018 06:38:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Post Status: Making WordPress and WordSesh â€”  Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=45572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://poststatus.com/making-wordpress-and-wordsesh-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1915:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and co-host Brian Richards.</p>\n<p>In this episode, Brian and Brian discuss the upcoming WordSesh schedule and go spelunking through <a href=\"https://make.wordpress.org/\">make.wordpress.org</a> to surface some recent gems making their way to WordPress.org â€“ both the project and the website.</p>\n<p></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"http://wordsesh.com/\">WordSesh schedule and tickets</a></li>\n<li><a href=\"https://make.wordpress.org/core/2018/04/28/rest-api-meeting-summary-april-26/\">REST API search endpoint</a></li>\n<li><a href=\"https://make.wordpress.org/core/2018/04/26/your-help-wanted-gutenberg-migration-guide/\">Help for Gutenberg migration guide</a></li>\n<li><a href=\"https://make.wordpress.org/themes/2018/04/30/trusted-authors-program/\">Theme review with trusted authors</a></li>\n</ul>\n<h3>Sponsor: iThemes</h3>\n<p>This episode is sponsored byÂ <a href=\"https://ithemes.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">iThemes</a>. The team at iThemes offers WordPress plugins, themes and training to help take the guesswork out of building, maintaining and securing WordPress websites. For more information, check out theirÂ <a href=\"https://ithemes.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">website</a>Â and thank you to iThemes for being a Post Status partner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 May 2018 23:33:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress 4.9.6 Beta 1 Adds Tools for GDPR Compliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80787\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/wordpress-4-9-6-beta-1-adds-tools-for-gdpr-compliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4711:\"<p>WordPress <a href=\"https://make.wordpress.org/core/2018/05/03/wordpress-4-9-6-beta/\">4.9.6 Beta 1 is available</a> for testing. It&#8217;s the first step in bringing <a href=\"https://www.eugdpr.org/\">GDPR</a> (General Data Protection Regulation) tools to WordPress. In addition to 10 bugs being fixed, this release heavily focuses on privacy enhancements.</p>\n\n<p>One of the first changes is the addition of a Privacy tab on the successful update screen. The message informs users that their sites may send data to WordPress.org for plugin and theme updates with a link to the WordPress.org privacy policy.</p>\n\n<img />\n	WordPress 4.9.6 Privacy Information\n\n\n<h2>Privacy Policy Page Creation and Template<br /></h2>\n\n<p>WordPress 4.9.6 includes the ability to create a Privacy Policy page from the backend. Simply browse to <strong>Settings > Privacy</strong> and select an existing page or create a new one where the policy will be displayed.</p>\n\n<img />\n	Privacy Policy Page Settings\n\n\n<p>Privacy policy pages will likely become as ubiquitous as About Us pages thanks to the GDPR, but the information that&#8217;s displayed is unique to individual sites. WordPress helps out by providing a template with suggestions on what information to display.</p>\n\n<img />\n	Privacy Policy Template<br />\n\n\n<h2>Personal Data Export and Removal Tools</h2>\n\n<p>To comply with the GDPR, sites need to provide a way for users to obtain their personal data and request that it be removed. WordPress 4.9.6 does not give users a button to make these requests. Instead, a site&#8217;s privacy policy needs toÂ  include information on where to send such requests.</p>\n\n<p>Once a request for a data export or removal is received, site administrators or the Data Protection Officer can browse to <strong>Tools > Export Personal Data</strong> or <strong>Tools > Remove Personal Data</strong> and send that user a verification request.</p>\n\n<img />\n	Export Personal Data Verification UI\n\n\n<img />\n	Data Removal Request Verification UI\n\n\n<p>When an admin enters a username or email address into the send request field, they&#8217;ll receive an email with a confirmation link. Once clicked, the site will display an Action Confirmed notice and that the site administrator has been notified and will fulfill the request as soon as possible.</p>\n\n<p>Here&#8217;s what a confirmed notice looks like in the backend.</p>\n\n<img />\n	Confirmed Data Export Request\n\n\n<p>One thing I noticed is that after a user confirms the request, the site administrator has <a href=\"https://core.trac.wordpress.org/ticket/43967\">no way of knowing</a> that they confirmed unless they visit the Data Export or Removal page. <br /></p>\n\n<p>Perhaps a new notification bubble can be created, similar to pending comments and updates that takes admins to the appropriate place for confirmed requests.</p>\n\n<p>When WordPress finishes creating the zip file, a link is sent to the user. For security purposes, the file will automatically be deleted after 72 hours. </p>\n\n<img />\n	My Personal Data Export\n\n\n<p>To test this feature, I exported my personal data from WP Tavern. My data export arrived in a zip file as one Index.html file. This file contains my comments, user meta data, links to attachments, and more. The data provides me with an opportunity to see what data the site has and what would be deleted if I requested full data removal.</p>\n\n<h2>Commenter Cookie Notification and Opt-in<br /></h2>\n\n<p>Cookies save data so that visitors don&#8217;t have to fill in the Author, URL, and Email fields each time they want to leave a comment. In 4.9.6, visitors will be informed of this data storage and will need to check mark a box to opt-in.</p>\n\n<img />\n	Checkbox For Consenting to Data Storage\n\n\n<p>WordPress 4.9.6 isn&#8217;t your typical minor release. It introduces new UI, options, and a bunch of privacy related enhancements. The development team is aiming to officially release 4.9.6 before GDPR goes into effect later this month, but these features need battle tested now, especially on multi-site configurations.</p>\n\n<p>I encourage you to check out 4.9.6 on a staging site and go through the process of requesting, confirming, and obtaining user data. Now is a good time to experience what users will be going through. </p>\n\n<p>You can download <a href=\"https://make.wordpress.org/core/2018/05/03/wordpress-4-9-6-beta/\">WordPress 4.9.6 beta 1 here</a> or obtain it by using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a>. If you encounter any issues, please report them on the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the support forums. </p>\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 May 2018 22:18:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: Jetpack 6.1, Now With Even More Privacy Information\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=80769\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/jetpack-6-1-now-with-even-more-privacy-information\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2178:\"<p>Jetpack 6.1 <a href=\"https://jetpack.com/2018/05/01/jetpack-6-1-general-maintenance/\">is available</a> and is considered a general maintenance release. This version adds two improvements to the WordAds module. Users can now use the [wordads] shortcode to place an inline ad on any post or page. Support for the <a href=\"https://en.wikipedia.org/wiki/Ads.txt\">ads.txt</a> file has also been added.</p>\n\n<p>A <a href=\"https://github.com/Automattic/jetpack/pull/8075\">new filter</a> is available that honors the <a href=\"https://en.wikipedia.org/wiki/Do_Not_Track\">Do Not Track</a> feature. This filter only affects the Stats module and will not track visitors who have Do Not Track enabled. This filter <a href=\"https://github.com/Automattic/jetpack/issues/727#issuecomment-383119108\">may be exposed</a> as a setting in the UI in a future update.</p>\n\n<p>Sharing and Likes functionality has been removed from WooCommerce&#8217;s Cart, Checkout, and Account pages. Notices that appeared in log files related to language features on sites running PHP 7.2 have been fixed.</p>\n\n<p>Continuing the <a href=\"https://wptavern.com/jetpack-6-0-takes-steps-towards-gdpr-compliance\">progress made in Jetpack 6.0</a> towards GDPR compliance, 6.1 adds More Info buttons to every module that handles user data.</p>\n\n<p>The More Info buttons contain links to specific sections of support documents that describe whether or not the module is activated by default, what data is used for site owners and visitors, and what data is synchronized with WordPress.com.<br /></p>\n\n<img />\n	More Info Links in Jetpack\n\n\n<img />\n	Detailed Privacy Information for The WordPress.com Toolbar Module\n\n\n<p>In the example above, the Privacy Information link for the WordPress.com Toolbar module points to the <a href=\"https://jetpack.com/support/masterbar/#privacy\">following support document</a>. With all of this information now readily available, users can educate themselves on the privacy implications of each module and decide what&#8217;s best for their visitors.</p>\n\n<p>A <a href=\"https://wordpress.org/plugins/jetpack/#developers\">full changelog</a> of Jetpack 6.1 is available on WordPress.org.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 May 2018 00:23:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 19 Jun 2018 20:47:56 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 19 Jun 2018 20:30:28 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911110210\";}", "no");
INSERT INTO `wp_options` VALUES("97496", "active_plugins", "a:15:{i:0;s:29:\"gravityforms/gravityforms.php\";i:1;s:55:\"all-in-one-event-calendar/all-in-one-event-calendar.php\";i:2;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:3;s:27:\"astra-sites/astra-sites.php\";i:4;s:36:\"contact-form-7/wp-contact-form-7.php\";i:5;s:35:\"contact-widgets/contact-widgets.php\";i:6;s:25:\"duplicator/duplicator.php\";i:7;s:53:\"easy-twitter-feed-widget/easy-twitter-feed-widget.php\";i:8;s:31:\"elementor-pro/elementor-pro.php\";i:9;s:23:\"elementor/elementor.php\";i:10;s:44:\"facebook-pagelike-widget/facebook_widget.php\";i:11;s:13:\"give/give.php\";i:12;s:41:\"google-maps-widget/google-maps-widget.php\";i:13;s:39:\"simple-custom-css/simple-custom-css.php\";i:14;s:33:\"smart-slider-3/smart-slider-3.php\";}", "yes");
INSERT INTO `wp_options` VALUES("97498", "ai1wm_status", "a:3:{s:4:\"type\";s:4:\"done\";s:5:\"title\";s:41:\"Your data has been imported successfully!\";s:7:\"message\";s:541:\"You need to perform two more steps:<br /><strong>1. You must save your permalinks structure twice. <a class=\"ai1wm-no-underline\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-admin/options-permalink.php#submit\" target=\"_blank\">Permalinks Settings</a></strong> <small>(opens a new window)</small><br /><strong>2. <a class=\"ai1wm-no-underline\" href=\"https://wordpress.org/support/view/plugin-reviews/all-in-one-wp-migration?rate=5#postform\" target=\"_blank\">Optionally, review the plugin</a>.</strong> <small>(opens a new window)</small>\";}", "yes");
INSERT INTO `wp_options` VALUES("97535", "7238c9070c32ed98a38810e053129a9a", "a:2:{s:7:\"timeout\";i:1529459320;s:5:\"value\";a:12:{s:11:\"new_version\";s:6:\"2.0.11\";s:14:\"stable_version\";s:6:\"2.0.11\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:51:\"https://my.elementor.com/downloads/pro/?changelog=1\";s:12:\"last_updated\";s:19:\"2018-06-12 14:20:54\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:7:\"package\";s:216:\"http://my.elementor.com/edd-sl/package_download/MTUyOTUyNzcxODpjN2U1ZTcyZWE2ZDhkOWRjMjc1ODliNmFkNmVjYjUwYzoxOmVjNDE4N2IyOTk0MmUzNjQxYTJhN2YwZDkzYjVjZTI5Omh0dHBALy9sb2NhbGhvc3RAODg4OC9UZXN0U0lDUGFnZS93b3JkcHJlc3M6MA==\";s:13:\"download_link\";s:216:\"http://my.elementor.com/edd-sl/package_download/MTUyOTUyNzcxODpjN2U1ZTcyZWE2ZDhkOWRjMjc1ODliNmFkNmVjYjUwYzoxOmVjNDE4N2IyOTk0MmUzNjQxYTJhN2YwZDkzYjVjZTI5Omh0dHBALy9sb2NhbGhvc3RAODg4OC9UZXN0U0lDUGFnZS93b3JkcHJlc3M6MA==\";s:8:\"sections\";s:36402:\"a:2:{s:11:\"description\";s:161:\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\";s:9:\"changelog\";s:36180:\"<h4>2.0.11 - 2018-06-12</h4>\n<ul>\n<li>Fix: Theme Builder <code>author</code> archive condition (<a href=\"https://github.com/pojome/elementor/issues/4593\">#4593</a>)</li>\n<li>Fix: Respect password protected posts in Post Content widget</li>\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.</li>\n</ul>\n<h4>2.0.10 - 2018-06-05</h4>\n<ul>\n<li>Tweak: Added <code>elementor/theme/get_location_templates/template_id</code> filter hook for multi-language plugins</li>\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)</li>\n<li>Fix: Fields shortcode missing after removing a field in Form widget</li>\n<li>Deprecated: <code>get_theme_templates_by_location</code> is replaced by <code>get_location_templates</code></li>\n</ul>\n<h4>2.0.9 - 2018-05-28</h4>\n<ul>\n<li>Fix: Compatibility for PHP version 5.4</li>\n</ul>\n<h4>2.0.8 - 2018-05-28</h4>\n<ul>\n<li>Tweak: Added Active state for Nav Menu dropdown</li>\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget</li>\n<li>Tweak: Removed caption control in Site Logo widget</li>\n<li>Tweak: Added option to position currency symbol before/after In Price Table widget</li>\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\"https://github.com/pojome/elementor/issues/4479\">#4479</a>)</li>\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\"https://github.com/pojome/elementor/issues/4342\">#4342</a>)</li>\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\"https://github.com/pojome/elementor/issues/4527\">#4527</a>)</li>\n<li>Fix: Avoid rendering a template if it\'s not published</li>\n<li>Fix: 404 Page style not working</li>\n<li>Fix: Price Table button with hover animation not working in editor</li>\n<li>Fix: Styling conflict in Call to Action widget</li>\n<li>Fix: Global Widget tab translation</li>\n<li>Fix: Adding parent wrapper class to Site Title widget</li>\n</ul>\n<h4>2.0.7 - 2018-05-16</h4>\n<ul>\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;</li>\n<li>Fix: Open 404 template library for 404 page</li>\n<li>Tweak: Added CSS prefix for dev files</li>\n<li>Tweak: Removed product post type from display conditions</li>\n</ul>\n<h4>2.0.6 - 2018-05-15</h4>\n<ul>\n<li>Tweak: Set type on create new single template</li>\n<li>Tweak: Always show the conditions dialog in the Draft status</li>\n<li>Tweak: Added document type <code>widget</code></li>\n<li>Tweak: Added Post Custom Field tag to URL category</li>\n<li>Fix: When ACF Field Groups are Empty (<a href=\"https://github.com/pojome/elementor/issues/4428\">#4428</a>)</li>\n<li>Fix: Links inside carousel in edge cases</li>\n<li>Fix: Responsive issue in My Templates area</li>\n<li>Fix: Image alignment for post content with text alignment</li>\n<li>Fix: Post Content widget when preview post is missing</li>\n<li>Fix: Global Widget tab translation</li>\n<li>Fix: Style settings for Post / Archive Title widgets</li>\n</ul>\n<h4>2.0.5 - 2018-05-08</h4>\n<ul>\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\"https://github.com/pojome/elementor/issues/4203\">#4203</a>)</li>\n<li>Fix: Added support for new version of reCAPTCHA</li>\n<li>Fix: Added fallback for controls after <code>post_status</code></li>\n<li>Fix: Required field in forms widget</li>\n<li>Fix: Media Carousel in the Coverflow skin</li>\n<li>Fix: 404 Page show wrong template in edge cases</li>\n<li>Fix: Save the default menu in the Nav Menu widget</li>\n</ul>\n<h4>2.0.4 - 2018-05-02</h4>\n<ul>\n<li>Tweak: Added parent\'s class for extended widgets</li>\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions</li>\n<li>Tweak: Initialize global model when it\'s needed</li>\n<li>Tweak: Removed some duplicate strings</li>\n<li>Tweak: Query control now includes empty terms</li>\n<li>Tweak: Design polish for conditions dialog</li>\n<li>Tweak: Decreasing <code>minimumInputLength</code> to 1 of select2</li>\n<li>Fix: Editor not loading for single templates in edge cases</li>\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\"https://github.com/pojome/elementor/issues/4310\">#4310</a>)</li>\n<li>Fix: Slides per view not working for some effects</li>\n<li>Fix: New slides not showing in the editor</li>\n<li>Fix: Editor for section without a defined location, defaults to content area</li>\n</ul>\n<h4>2.0.3 - 2018-04-24</h4>\n<ul>\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\"https://github.com/pojome/elementor/issues/4214\">#4214</a>, <a href=\"https://github.com/pojome/elementor/issues/4216\">#4216</a>, <a href=\"https://github.com/pojome/elementor/issues/4225\">#4225</a>)</li>\n<li>Fix: Double render on frontend view in core locations</li>\n<li>Fix: Masonry not working in edge cases</li>\n<li>Fix: Added default setting for Author Info tag</li>\n</ul>\n<h4>2.0.2 - 2018-04-18</h4>\n<ul>\n<li>Fix: Regenerate conditions to include all templates</li>\n</ul>\n<h4>2.0.1 - 2018-04-17</h4>\n<ul>\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\"https://github.com/pojome/elementor/issues/4136\">#4136</a>)</li>\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\"https://github.com/pojome/elementor/issues/4127\">#4127</a>)</li>\n<li>Tweak: Added Divider control for Post Info widget</li>\n<li>Fix: Update admin links in Yoast Breadcrumbs widget</li>\n<li>Fix: Sticky element conflict with clearfix CSS</li>\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below</li>\n<li>Fix: Avoid running <code>wp_head</code> hooks twice</li>\n</ul>\n<h4>2.0.0 - 2018-04-16</h4>\n<ul>\n<li>New: Introducing Theme Builder - <a href=\"https://elementor.com/introducing-theme-builder/\">Release Post</a> (<a href=\"https://github.com/pojome/elementor/issues/417\">#417</a>)</li>\n<li>New: Introducing Locations API to inject custom location templates</li>\n<li>New: Introducing Display Conditions for all dynamic templates</li>\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design</li>\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\"https://github.com/pojome/elementor/issues/483\">#483</a>, <a href=\"https://github.com/pojome/elementor/issues/653\">#653</a>, <a href=\"https://github.com/pojome/elementor/issues/885\">#885</a>)</li>\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\"https://github.com/pojome/elementor/issues/543\">#543</a>)</li>\n<li>New: Introducing Developers area with guides and API documentation - <a href=\"https://elementor.com/introducing-elementor-developer-api/\">Release Post</a> (<a href=\"https://github.com/pojome/elementor/issues/451\">#451</a>)</li>\n<li>New: Introducing <a href=\"https://github.com/pojome/elementor-hello-theme\">Elementor Hello Theme</a> - A demonstration theme for developers</li>\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\"https://github.com/pojome/elementor/issues/2761\">#2761</a>, <a href=\"https://github.com/pojome/elementor/issues/2623\">#2623</a>, <a href=\"https://github.com/pojome/elementor/issues/2109\">#2109</a>, <a href=\"https://github.com/pojome/elementor/issues/2061\">#2061</a>, <a href=\"https://github.com/pojome/elementor/issues/2439\">#2439</a>)</li>\n<li>New: Design 404 page with Single template (<a href=\"https://github.com/pojome/elementor/issues/1558\">#1558</a>)</li>\n<li>New: Design Search Results with Archive template (<a href=\"https://github.com/pojome/elementor/issues/3196\">#3196</a>, <a href=\"https://github.com/pojome/elementor/issues/2590\">#2590</a>)</li>\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element</em> per device (<a href=\"https://github.com/pojome/elementor/issues/2412\">#2412</a>)</li>\n<li>New: Integration with Custom Fields (<a href=\"https://github.com/pojome/elementor/issues/2054\">#2054</a>)</li>\n<li>New: Partial support for Toolset integration (<a href=\"https://github.com/pojome/elementor/issues/2949\">#2949</a>)</li>\n<li>New: Partial support for Pods integration (<a href=\"https://github.com/pojome/elementor/issues/2169\">#2169</a>)</li>\n<li>New: Partial support for ACF integration (<a href=\"https://github.com/pojome/elementor/issues/2041\">#2041</a>, <a href=\"https://github.com/pojome/elementor/issues/2059\">#2059</a>)</li>\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\"https://github.com/pojome/elementor/issues/3531\">#3531</a>)</li>\n<li>Tweak: Allow brackets in Forms Tel field</li>\n<li>Tweak: Added currency format control for Price Table widget</li>\n<li>Tweak: Reduced API request for some servers</li>\n<li>Fix: Dropdown <code>border-radius</code> in Nav Menu widget</li>\n<li>Fix: Price List widget layout breaks in edge cases</li>\n<li>Note: This version requires Elementor v2.0.6</li>\n</ul>\n<h4>1.15.6 - 2018-03-28</h4>\n<ul>\n<li>Fix: Removed duplicate Custom CSS section (<a href=\"https://github.com/pojome/elementor/issues/3938\">#3938</a>)</li>\n<li>Fix: <code>box-shadow</code> issue with cards skin (<a href=\"https://github.com/pojome/elementor/issues/3940\">#3940</a>)</li>\n</ul>\n<h4>1.15.5 - 2018-03-27</h4>\n<ul>\n<li>Fix: Added global widget compatibility for Elementor v2.0</li>\n<li>Fix: Reduced API request for some servers</li>\n</ul>\n<h4>1.15.4 - 2018-03-26</h4>\n<ul>\n<li>Tweak: Allow brackets in phone field</li>\n<li>Tweak: Added compatibility with Yoast 7.0.+</li>\n<li>Tweak: Added compatibility for the future release of Elementor v2.0</li>\n<li>Fix: Support for multiple carousel setting in editor</li>\n<li>Fix: <code>on_export</code> issue in forms widget (<a href=\"https://github.com/pojome/elementor/issues/3890\">#3890</a>)</li>\n</ul>\n<h4>1.15.3 - 2018-03-07</h4>\n<ul>\n<li>Tweak: Added unique class to field group div (<a href=\"https://github.com/pojome/elementor/issues/3595\">#3595</a>)</li>\n<li>Fix: Screen Options missing when Pro is active (<a href=\"https://github.com/pojome/elementor/issues/3622\">#3622</a>)</li>\n<li>Fix: Allow label styling even when <code>show labels</code> is set hide (<a href=\"https://github.com/pojome/elementor/issues/3544\">#3544</a>)</li>\n<li>Fix: Typography control not working in edge cases</li>\n<li>Fix: Safari compatibility for Search widget</li>\n</ul>\n<h4>1.15.2 - 2018-02-27</h4>\n<ul>\n<li>Fix: Only add support mine-type if needed (<a href=\"https://github.com/pojome/elementor/issues/3543\">#3543</a>)</li>\n<li>Fix: Better support for Old Typekit kits</li>\n</ul>\n<h4>1.15.1 - 2018-02-21</h4>\n<ul>\n<li>Tweak: Custom font title placeholder is not <code>enter font family</code></li>\n<li>Tweak: Custom font title set as required</li>\n<li>Fix: Custom font, <code>font-face</code> enqueued only once if used in global (<a href=\"https://github.com/pojome/elementor/issues/3513\">#3513</a>)</li>\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.</li>\n</ul>\n<h4>1.15.0 - 2018-02-19</h4>\n<ul>\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\"https://github.com/pojome/elementor/issues/852\">#852</a>)</li>\n<li>New: Integration with Adobe TypeKit fonts (<a href=\"https://github.com/pojome/elementor/issues/631\">#631</a>)</li>\n<li>Tweak: Clear menu from Nav Menu widget on template export</li>\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle</code></li>\n</ul>\n<h4>1.14.2 - 2018-02-13</h4>\n<ul>\n<li>Fix: Global widget content that got affected by previous update</li>\n</ul>\n<h4>1.14.1 - 2018-02-13</h4>\n<ul>\n<li>Tweak: Added <code>none</code> option to content animation in CTA widget</li>\n<li>Tweak: Added <code>form_id</code> to ActiveCampaign integration (<a href=\"https://github.com/pojome/elementor/issues/3422\">#3422</a>)</li>\n<li>Fix: Page crashed when Global widget not found.</li>\n</ul>\n<h4>1.14.0 - 2018-02-12</h4>\n<ul>\n<li>New: Added Call to Action widget</li>\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded</li>\n<li>Tweak: Added compatibility for the future release of Elementor v2.0</li>\n<li>Fix: Allow zero (0) to be accepted as a field value</li>\n<li>Fix: Login form when custom login URL is set</li>\n<li>Fix: Added Day of cycle control to GetResponse integration</li>\n</ul>\n<h4>1.13.2 - 2018-01-23</h4>\n<ul>\n<li>Tweak: Added placeholder to Password field</li>\n<li>Tweak: Removed <code>subscriber_already_exists_message</code> control to prevent potential data leakage</li>\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet</li>\n<li>Fix: Changed <code>imagesLoaded()</code> to Vanilla JS to avoid compatibility issues with some themes</li>\n<li>Fix: Only validate Tel field if not empty</li>\n<li>Fix: Stop slider while editing</li>\n</ul>\n<h4>1.13.1 - 2018-01-16</h4>\n<ul>\n<li>Fix: Added compatibility with old PHP versions</li>\n</ul>\n<h4>1.13.0 - 2018-01-16</h4>\n<ul>\n<li>New: Added File Upload field for Forms widget (<a href=\"https://github.com/pojome/elementor/issues/1482\">#1482</a>, <a href=\"https://github.com/pojome/elementor/issues/2974\">#2974</a>)</li>\n<li>New: Added Acceptance field for Forms widget (<a href=\"https://github.com/pojome/elementor/issues/1693\">#1693</a>, <a href=\"https://github.com/pojome/elementor/issues/2974\">#2974</a>)</li>\n<li>New: Added Date field for Forms widget (<a href=\"https://github.com/pojome/elementor/issues/1868\">#1868</a>)</li>\n<li>New: Added Time field for Forms widget</li>\n<li>New: Added Password field for Forms widget (<a href=\"https://github.com/pojome/elementor/issues/2164\">#2164</a>)</li>\n<li>New: Added HTML field for Forms widget (<a href=\"https://github.com/pojome/elementor/issues/1500\">#1500</a>)</li>\n<li>Tweak: Added characters validation for Tel field</li>\n<li>Tweak: Added min &amp; max validation for Number field</li>\n<li>Tweak: Added multiple selection for Select field</li>\n<li>Tweak: Added donReach integration for Share Buttons widget</li>\n</ul>\n<h4>1.12.3 - 2018-01-09</h4>\n<ul>\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget</li>\n<li>Fix: Apply <code>url-encoding</code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text</li>\n<li>Fix: Removed My Account link from dashboard widget</li>\n</ul>\n<h4>1.12.2 - 2018-01-03</h4>\n<ul>\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\"https://github.com/pojome/elementor/issues/2964\">#2964</a>)</li>\n<li>Fix: Active license button style</li>\n</ul>\n<h4>1.12.1 - 2018-01-02</h4>\n<ul>\n<li>Tweak: Removed theme-element widgets from plain content</li>\n<li>Tweak: Set all theme-element widgets to extend same widget Base</li>\n<li>Tweak: Removed credit URL in forms meta data</li>\n<li>Tweak: Added compatibility for the future release of Elementor v1.9</li>\n<li>Fix: Validate Get response Error as real error</li>\n<li>Fix: Removed responsive height control from Facebook Page widget</li>\n</ul>\n<h4>1.12.0 - 2017-12-20</h4>\n<ul>\n<li>New: Added Drip integration to Forms</li>\n<li>New: Added ActiveCampaign integration to Forms</li>\n<li>New: Added ConverKit integration to Forms</li>\n<li>New: Added GetResponse integration to Forms</li>\n<li>New: Added form <code>id</code>, <code>name</code> attributes to handle integration with auto collectors like HubSpot</li>\n<li>New: Added Global API key for MailChimp to improve the workflow</li>\n<li>Tweak: Better error handling and message display for Forms</li>\n<li>Fix: PHP notice Undefined variable <code>$cc_header</code> (<a href=\"https://github.com/pojome/elementor/issues/2934\">#2934</a>)</li>\n</ul>\n<h4>1.11.0 - 2017-12-11</h4>\n<ul>\n<li>New: Added a native Comments widget (<a href=\"https://github.com/pojome/elementor/issues/543\">#543</a>)</li>\n<li>New: Added an Author Box widget</li>\n<li>New: Added a Post Navigation widget</li>\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\"https://github.com/pojome/elementor/issues/2749\">#2749</a>)</li>\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\"https://github.com/pojome/elementor/issues/2762\">#2762</a>)</li>\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric</li>\n<li>Fix: Edge cases when the nav menu is empty in a stretched section</li>\n<li>Fix: Added fallback when you remove the <code>space-between</code> on Swiper carousel</li>\n</ul>\n<h4>1.10.2 - 2017-12-03</h4>\n<ul>\n<li>Fix: Missing save widget icon (<a href=\"https://github.com/pojome/elementor/issues/2878\">#2878</a>)</li>\n<li>Fix: Global widgets not saving edits (<a href=\"https://github.com/pojome/elementor/issues/2874\">#2874</a>)</li>\n<li>Fix: Removed <code>white-space: nowrap;</code> property from vertical menu in Nav Menu widget (<a href=\"https://github.com/pojome/elementor/issues/2815\">#2815</a>)</li>\n</ul>\n<h4>1.10.1 - 2017-11-30</h4>\n<ul>\n<li>Tweak: Added default value for search form</li>\n<li>Tweak: Order template list A-Z in the library widget</li>\n<li>Tweak: get_users/authors query is now done using AJAX only, for better performance in Query Control (<a href=\"https://github.com/pojome/elementor/issues/2865\">#2865</a>)</li>\n<li>Fix: When adding <code>.00</code> it is not displayed on the front</li>\n<li>Fix: Make sure space between is numeric for carousel control</li>\n<li>Fix: Added space for radio &amp; checkbox fields in form widget</li>\n</ul>\n<h4>1.10.0 - 2017-11-15</h4>\n<ul>\n<li>New: Added native Search form widget (<a href=\"https://github.com/pojome/elementor/issues/2576\">#2576</a>)</li>\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets</li>\n<li>Tweak: Added Inline editing to Blockquote widget</li>\n<li>Fix: Animated Headline color bug (<a href=\"https://github.com/pojome/elementor/issues/2516\">#2516</a>)</li>\n<li>Fix: Animated Headline with Rotating skin</li>\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations</li>\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\"https://github.com/pojome/elementor/issues/2662\">#2662</a>)</li>\n<li>Fix: Custom CSS gone after reloading the editor</li>\n</ul>\n<h4>1.9.5 - 2017-10-27</h4>\n<ul>\n<li>Fix: Broken Global widget with JS (<a href=\"https://github.com/pojome/elementor/issues/2639\">#2639</a>)</li>\n</ul>\n<h4>1.9.4 - 2017-10-24</h4>\n<ul>\n<li>Tweak: Improved UI for notices and license page</li>\n<li>Fix: Update system conflict with other EDD plugins</li>\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\"https://github.com/pojome/elementor/issues/2577\">#2577</a>)</li>\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\"https://github.com/pojome/elementor/issues/2496\">#2496</a>)</li>\n<li>Fix: Increased submenu max-width (<a href=\"https://github.com/pojome/elementor/issues/2558\">#2558</a>)</li>\n<li>Fix: Save global templates without their defaults</li>\n<li>Fix: Horizontal scrolling issue with posts grid</li>\n</ul>\n<h4>1.9.3 - 2017-10-03</h4>\n<ul>\n<li>Fix: Condition slide style that got affected by previous update</li>\n</ul>\n<h4>1.9.2 - 2017-10-02</h4>\n<ul>\n<li>New: Added integration with MailPoet 3 for Forms actions</li>\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode</li>\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel</li>\n<li>Fix: Added condition for slides style section in skin bubble mode</li>\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel</li>\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows</li>\n</ul>\n<h4>1.9.1 - 2017-09-28</h4>\n<ul>\n<li>Fix: Slides per view for slideshow carousel</li>\n<li>Fix: Final polish for the new Testimonial Carousel widget</li>\n<li>Fix: Don\'t play video if slide type is not video</li>\n<li>Fix: Removed slides style section condition (<a href=\"https://github.com/pojome/elementor/issues/2497\">#2497</a>)</li>\n<li>Fix: Set cursor as pointer for slideshow thumbnails</li>\n</ul>\n<h4>1.9.0 - 2017-09-26</h4>\n<ul>\n<li>New: Added Media Carousel widget (<a href=\"https://github.com/pojome/elementor/issues/216\">#216</a>, <a href=\"https://github.com/pojome/elementor/issues/347\">#347</a>, <a href=\"https://github.com/pojome/elementor/issues/2209\">#2209</a>)</li>\n<li>New: Added Testimonial Carousel widget (<a href=\"https://github.com/pojome/elementor/issues/715\">#715</a>)</li>\n</ul>\n<h4>1.8.3 - 2017-09-24</h4>\n<ul>\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6</li>\n<li>Fix: Remove slashes from Form sent data</li>\n</ul>\n<h4>1.8.2 - 2017-09-19</h4>\n<ul>\n<li>Tweak: Added target URL for the tweet message in Blockquote widget</li>\n<li>Tweak: Render the slide height before the slider is finished loading</li>\n<li>Fix: Space between words for Animated Headline widget</li>\n<li>Fix: RTL compatibility for Animated Headline widget</li>\n<li>Fix: Italic font style for Animated Headline widget</li>\n<li>Fix: Excluded Menu widget from the WP Editor text rendering</li>\n</ul>\n<h4>1.8.1 - 2017-09-18</h4>\n<ul>\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\"https://github.com/pojome/elementor/issues/2391\">#2391</a>)</li>\n<li>Fix: Print the main menu only when is necessary in Menu widget</li>\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\"https://github.com/pojome/elementor/issues/2381\">#2381</a>)</li>\n</ul>\n<h4>1.8.0 - 2017-09-12</h4>\n<ul>\n<li>New: Added Nav Menu widget (<a href=\"https://github.com/pojome/elementor/issues/1406\">#1406</a>)</li>\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\"https://github.com/pojome/elementor/issues/2279\">#2279</a>)</li>\n<li>Fix: Style for Blockquote widget included</li>\n</ul>\n<h4>1.7.2 - 2017-09-07</h4>\n<ul>\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins</li>\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\"https://github.com/pojome/elementor/issues/2340\">#2340</a>)</li>\n</ul>\n<h4>1.7.1 - 2017-09-05</h4>\n<ul>\n<li>Fix: Facebook SDK version</li>\n</ul>\n<h4>1.7.0 - 2017-09-05</h4>\n<ul>\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow</li>\n<li>New: Added Facebook Embed widget for Post, Video and Comment</li>\n<li>New: Added Facebook Comments widget</li>\n<li>New: Added Facebook Page widget (Previously known as Like Box)</li>\n<li>New: Added Blockquote widget with Tweet button</li>\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets</li>\n<li>Fix: Animated headline rotating with long words</li>\n</ul>\n<h4>1.6.1 - 2017-08-28</h4>\n<ul>\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set</li>\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser</li>\n<li>Fix: Animated headline with more than 1-word per rotation</li>\n<li>Fix: Animated Headline in two lines</li>\n<li>Fix: Some errors in Global widget</li>\n</ul>\n<h4>1.6.0 - 2017-08-22</h4>\n<ul>\n<li>New: Added Animated Headline widget</li>\n<li>New: Added Hidden field for Forms widget (<a href=\"https://github.com/pojome/elementor/issues/2038\">#2038</a>)</li>\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher</li>\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts</li>\n</ul>\n<h4>1.5.9 - 2017-08-16</h4>\n<ul>\n<li>Tweak: Added compatibility for the future release of Elementor v1.7</li>\n<li>Fix: Portfolio compatibility for GeneratePress theme</li>\n<li>Fix: Portfolio filter compatibility for RTL</li>\n<li>Fix: Pagination apply for all posts widget in the page</li>\n<li>Fix: Global form widget with MailChimp integration not saving</li>\n</ul>\n<h4>1.5.8 - 2017-07-25</h4>\n<ul>\n<li>Tweak: Added compatibility for the future release of Elementor v1.6</li>\n<li>Fix: Improved backward compatibility for query control rename</li>\n</ul>\n<h4>1.5.7 - 2017-07-24</h4>\n<ul>\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file</li>\n<li>Tweak: Display the label in the reCAPTCHA field for better experience</li>\n<li>Tweak: Rename <code>panel-posts-control</code> to <code>query-control</code> and added fallback support</li>\n<li>Tweak: Added compatibility for the future release of Elementor with history feature</li>\n<li>Fix: reCAPTCHA preview on the editor</li>\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\"https://github.com/pojome/elementor/issues/2000\">#2000</a>)</li>\n<li>Fix: Added condition for icon size control in Share Buttons widget</li>\n</ul>\n<h4>1.5.6 - 2017-07-12</h4>\n<ul>\n<li>Fix: Query Control correction for taxonomies (<a href=\"https://github.com/pojome/elementor/issues/1963\">#1963</a>)</li>\n<li>Fix: Custom CSS override scheme color in the editor</li>\n<li>Fix: Added order by Menu Order for Query Control in WC widget</li>\n<li>Fix: Glitch with Flip Box background overlay</li>\n</ul>\n<h4>1.5.5 - 2017-07-03</h4>\n<ul>\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist</li>\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999</li>\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed</li>\n<li>Fix: Sorted items in filter bar by A-Z</li>\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\"https://github.com/pojome/elementor/issues/1927\">#1927</a>)</li>\n</ul>\n<h4>1.5.4 - 2017-06-22</h4>\n<ul>\n<li>Tweak: Improved compatibility for Elementor v1.5</li>\n<li>Fix: URL default for Add To Cart widget</li>\n<li>Fix: Allowed <code>date</code> and <code>birthday</code> fields as text for MailChimp integration</li>\n</ul>\n<h4>1.5.3 - 2017-06-19</h4>\n<ul>\n<li>Tweak: Make flip-box height responsive control</li>\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\"https://github.com/pojome/elementor/issues/1829\">#1829</a>)</li>\n<li>Fix: Global form widget with MailChimp integration not saving</li>\n</ul>\n<h4>1.5.2 - 2017-06-13</h4>\n<ul>\n<li>Fix: Custom CSS panel location compatibility for the old versions</li>\n</ul>\n<h4>1.5.1 - 2017-06-12</h4>\n<ul>\n<li>Fix: MailChimp update existing user registration</li>\n<li>Fix: Global widget with JS in the editor mode</li>\n<li>Fix: Label section condition in Login widget</li>\n<li>Fix: Changes to unlinked global widget do not appear in the editor</li>\n</ul>\n<h4>1.5.0 - 2017-05-23</h4>\n<ul>\n<li>New: Added Cards, a new skin for Posts widget</li>\n<li>New: Added Exclude option to post query control group</li>\n<li>Tweak: Added <code>post_class()</code> for each post in the loop</li>\n<li>Tweak: Added <code>.elementor-posts-masonry</code> class when Masonry layout is enabled</li>\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0</li>\n<li>Tweak: CSS <code>autoprefixer</code> now supports last 5 versions of browsers</li>\n<li>Tweak: Added <code>imageLoaded</code> library for Posts &amp; Portfolio widgets</li>\n</ul>\n<h4>1.4.4 - 2017-05-18</h4>\n<ul>\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\"https://github.com/pojome/elementor/issues/1683\">#1683</a>)</li>\n<li>Fix: Added <code>.elementor-form</code> class to Login form to fix style glitch</li>\n</ul>\n<h4>1.4.3 - 2017-05-14</h4>\n<ul>\n<li>Tweak: Added Redirect After Login option to Login widget</li>\n<li>Tweak: Stay in the current page after logout in Login widget</li>\n<li>Tweak: Preparation for Elementor settings tabs in future version</li>\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone</li>\n<li>Fix: Bug with <code>active</code> class in portfolio filter item</li>\n<li>Fix: Higher specific list-style-type <code>none</code> for filter items to override some theme style</li>\n</ul>\n<h4>1.4.2 - 2017-05-06</h4>\n<ul>\n<li>Fix: Temporary patch for form field shortcode in some servers</li>\n</ul>\n<h4>1.4.1 - 2017-05-03</h4>\n<ul>\n<li>Fix: Bug with custom success message in form widget</li>\n<li>Fix: Bug with meta data in email action</li>\n</ul>\n<h4>1.4.0 - 2017-05-03</h4>\n<ul>\n<li>New: Forms: integration with MailChimp</li>\n<li>New: Forms: integration with MailPoet</li>\n<li>New: Forms: Added Email 2 action for email confirmation</li>\n<li>New: Forms: Added shortcodes for fields</li>\n<li>New: Forms: Added custom ID for fields</li>\n<li>New: Forms: Added option to edit email HTML template (<a href=\"https://github.com/pojome/elementor/issues/1180\">#1180</a>)</li>\n<li>New: Added Login widget</li>\n<li>Tweak: Move <code>send_html</code> control to <code>email_content_type</code></li>\n<li>Fix: Email still sent even if validation failed in form widget</li>\n</ul>\n<h4>1.3.2 - 2017-05-01</h4>\n<ul>\n<li>New: Added action <code>elementor_pro/init</code> for better integration with Elementor Pro</li>\n<li>Fix: Posts without featured image in Posts widget (<a href=\"https://github.com/pojome/elementor/issues/1234\">#1234</a>, <a href=\"https://github.com/pojome/elementor/issues/1382\">#1382</a>)</li>\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method</li>\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser</li>\n<li>Fix: Border radius glitch on hover in Share Buttons</li>\n</ul>\n<h4>1.3.1 - 2017-04-25</h4>\n<ul>\n<li>Fix: Conflict update with revision history module</li>\n</ul>\n<h4>1.3.0 - 2017-04-25</h4>\n<ul>\n<li>New: Added Share Buttons widget (<a href=\"https://wordpress.org/support/topic/social-sharing-buttons-is-it-possible/\">Topic</a>)</li>\n<li>New: Added Custom CSS for Page Settings</li>\n<li>New: Added Masonry layout for Portfolio widget</li>\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\"https://github.com/pojome/elementor/issues/1181\">#1181</a>)</li>\n<li>New: Introduced <code>ElementorPro\\Modules\\Forms\\Classes\\Action_Base</code> class for better 3rd party integration for forms</li>\n<li>Tweak: Debugger module now also shows errors from Pro</li>\n<li>Tweak: Added options for Elementor Library</li>\n<li>Tweak: New base posts module for optimized performance</li>\n<li>Tweak: Adjusting Posts / Portfolio to the new structure</li>\n<li>Fix: Export for posts / portfolio</li>\n<li>Fix: Duplicate repeater field with switcher control (<a href=\"https://github.com/pojome/elementor/issues/1442\">#1442</a>)</li>\n<li>Fix: Post per Page in the query control</li>\n<li>Fix: Metadata does not come through on form emails (<a href=\"https://github.com/pojome/elementor/issues/1566\">#1566</a>)</li>\n</ul>\n<h4>1.2.6 - 2017-04-19</h4>\n<ul>\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets</li>\n</ul>\n<h4>1.2.5 - 2017-04-18</h4>\n<ul>\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)</li>\n</ul>\n<h4>1.2.4 - 2017-03-21</h4>\n<ul>\n<li>Tweak: Added Indian Rupee sign to Price Table widget</li>\n<li>Fix: Portfolio grid for IE11</li>\n<li>Fix: Link target blank in Price List widget</li>\n<li>Fix: Active item for filter bar in Portfolio widget</li>\n</ul>\n<h4>1.2.3 - 2017-03-06</h4>\n<ul>\n<li>Tweak: Fully compatible with Elementor v1.3.0</li>\n<li>Tweak: Added trigger for after form submission in Forms widget</li>\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms</li>\n<li>Fix: Portfolio filter syntax in Non-Latin languages</li>\n<li>Fix: Added <code>no-repeat</code> property for slide with <code>background-size:contain</code></li>\n<li>Fix: Condition control &amp; Import value in Posts widgets</li>\n<li>Fix: Offset and Pagination in WordPress (<a href=\"https://codex.wordpress.org/Making_Custom_Queries_using_Offset_and_Pagination\">More Info</a>)</li>\n<li>Fix: Submit handler bubbling for custom events in Forms widget</li>\n</ul>\n<h4>1.2.2 - 2017-02-23</h4>\n<ul>\n<li>Tweak: Change name from Side A/B to Front and Back in Flip Box widget</li>\n<li>Fix: Error when saving third party widgets in the global widget</li>\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)</li>\n<li>Fix: Hide the pagination when there are no links</li>\n</ul>\n<h4>1.2.1 - 2017-02-21</h4>\n<ul>\n<li>Fix: Firefox Flip Box 3D compatibility</li>\n</ul>\n<h4>1.2.0 - 2017-02-21</h4>\n<ul>\n<li>New: Added Flip Box widget</li>\n<li>New: Added Ken Burns effect for slides</li>\n<li>New: Added Masonry layout for Posts widget</li>\n<li>New: Added Pagination option for Posts widget</li>\n<li>Tweak: Added background size contain to slides</li>\n<li>Tweak: Improve Query control by preload items</li>\n<li>Fix: Text color for Checkbox and Radio fields</li>\n</ul>\n<h4>1.1.2 - 2017-02-05</h4>\n<ul>\n<li>Tweak: Added <code>aria-required</code> for better accessibility in forms widget</li>\n<li>Fix: Conflict Call to <code>undefined</code> method in Posts &amp; Portfolio widgets (<a href=\"https://github.com/pojome/elementor/issues/1271\">#1271</a>, <a href=\"https://github.com/pojome/elementor/issues/1266\">#1266</a>)</li>\n<li>Fix: Submit button HTML after error sending</li>\n<li>Fix: Success message for <code>skip_email</code> function</li>\n<li>Notice: Elementor 1.2.0 or later now required</li>\n</ul>\n<h4>1.1.1 - 2017-01-24</h4>\n<ul>\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG</code> is <code>true</code></li>\n<li>Fix: Undefined variable in WC widgets</li>\n<li>Fix: Removed duplicate strings</li>\n</ul>\n<h4>1.1.0 - 2017-01-24</h4>\n<ul>\n<li>New: Price Table widget (<a href=\"https://github.com/pojome/elementor/issues/102\">#102</a>)</li>\n<li>New: WooCommerce Add to Cart widget</li>\n<li>New: WooCommerce Categories widget</li>\n<li>New: WooCommerce Elements widget</li>\n<li>New: Honeypot field for Forms widgets</li>\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items</li>\n<li>Tweak: Added Required Mark for fields in Forms widget</li>\n<li>Fix: CSS selectors priority in Slides widget</li>\n<li>Fix: CSS bug in Price List widget</li>\n<li>Fix: Update all Post CSS files that includes specific Global Widget</li>\n</ul>\n<h4>1.0.9 - 2017-01-18</h4>\n<ul>\n<li>Fix: Auto complete bug in query controls</li>\n<li>Fix: Render template with escaping slashes</li>\n<li>Fix: Reply-to field in Forms widget</li>\n</ul>\n<h4>1.0.8 - 2017-01-11</h4>\n<ul>\n<li>Tweak: Code adjustments for Elementor API</li>\n<li>Fix: Removed go pro link from plugins page in admin</li>\n</ul>\n<h4>1.0.7 - 2017-01-05</h4>\n<ul>\n<li>Tweak: Added filter by featured / sale for WC Products widget</li>\n<li>Tweak: Added author control in Portfolio widget</li>\n<li>Tweak: Code adjustments for Elementor API</li>\n<li>Fix: Added support for empty image ratio</li>\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself</li>\n</ul>\n<h4>1.0.6 - 2017-01-01</h4>\n<ul>\n<li>Tweak: Added Auto-updates for local translation files</li>\n<li>Fix: Custom CSS for Global widgets</li>\n<li>Fix: Remove <code>nonce</code> field (Fix some cache plugins)</li>\n</ul>\n<h4>1.0.5 - 2016-12-27</h4>\n<ul>\n<li>Fix: Slide element bug fix - \'Link apply on\' logic</li>\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\"https://github.com/pojome/elementor/issues/1086\">#1086</a>)</li>\n</ul>\n<h4>1.0.4 - 2016-12-21</h4>\n<ul>\n<li>Tweak: Mobile Editing for fields in the form widget</li>\n<li>Tweak: Mobile Editing for posts</li>\n<li>Tweak: Allow send form as HTML</li>\n<li>Tweak: Improved auto upgrades for Multisite installation</li>\n<li>Tweak: Improve editor rendering experience for Portfolio widget</li>\n<li>Fix: Posts widget check if image exist</li>\n<li>Fix: Changed the clone method for global widget (<a href=\"https://github.com/pojome/elementor/issues/1042\">#1042</a>)</li>\n<li>Fix: Bug slides in RTL (removed direction control)</li>\n<li>Fix: Slides with no height jumps when changing slides</li>\n</ul>\n<h4>1.0.3 - 2016-12-13</h4>\n<ul>\n<li>Fix: Added escape placeholder for HTML Entities in form widget</li>\n<li>Fix: Countdown widget RTL bug</li>\n<li>Fix: Remove redundant #elementor selector for control style</li>\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget</li>\n</ul>\n<h4>1.0.2 - 2016-12-12</h4>\n<ul>\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form</li>\n</ul>\n<h4>1.0.1 - 2016-12-12</h4>\n<ul>\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active</li>\n</ul>\n<h4>1.0.0 - 2016-12-12</h4>\n<ul>\n<li>Initial release</li>\n</ul>\";}\";s:7:\"banners\";s:41:\"a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}\";s:5:\"icons\";a:1:{s:3:\"svg\";s:42:\"https://ps.w.org/elementor/assets/icon.svg\";}}}", "no");
INSERT INTO `wp_options` VALUES("97538", "duplicator_package_active", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-19 20:48:53\";s:7:\"Version\";s:6:\"1.2.40\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.35\";s:10:\"VersionPHP\";s:5:\"7.1.8\";s:9:\"VersionOS\";s:6:\"Darwin\";s:2:\"ID\";N;s:4:\"Name\";s:26:\"20180619_southislandcentre\";s:4:\"Hash\";s:32:\"0d3d40b6d3e45fb74755180619204853\";s:8:\"NameHash\";s:59:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:64:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-snapshots/tmp\";s:8:\"StoreURL\";s:57:\"http://localhost:8888/TestSICPage/wordpress/wp-snapshots/\";s:8:\"ScanFile\";s:69:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":19:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:47:\"/Applications/MAMP/htdocs/TestSICPage/wordpress\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-19 20:48:53\";s:7:\"Version\";s:6:\"1.2.40\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.35\";s:10:\"VersionPHP\";s:5:\"7.1.8\";s:9:\"VersionOS\";s:6:\"Darwin\";s:2:\"ID\";N;s:4:\"Name\";s:26:\"20180619_southislandcentre\";s:4:\"Hash\";s:32:\"0d3d40b6d3e45fb74755180619204853\";s:8:\"NameHash\";s:59:\"20180619_southislandcentre_0d3d40b6d3e45fb74755180619204853\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:64:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-snapshots/tmp\";s:8:\"StoreURL\";s:57:\"http://localhost:8888/TestSICPage/wordpress/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:10:\"\0*\0Package\";r:58;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:10:\"\0*\0Package\";r:58;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:56:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-admin\";i:1;s:66:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/uploads\";i:2;s:68:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/languages\";i:3;s:66:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/plugins\";i:4;s:65:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/themes\";i:5;s:59:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-includes\";}}s:9:\"Installer\";r:80;s:8:\"Database\";r:88;}", "yes");
INSERT INTO `wp_options` VALUES("97536", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"1.2.40\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:1;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("97537", "duplicator_version_plugin", "1.2.40", "yes");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("2", "5", "_edit_last", "3");
INSERT INTO `wp_postmeta` VALUES("3", "5", "_edit_lock", "1522267315:3");
INSERT INTO `wp_postmeta` VALUES("4", "5", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("5", "9", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("6", "9", "_edit_lock", "1427396910:1");
INSERT INTO `wp_postmeta` VALUES("7", "9", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("8", "11", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("9", "11", "_edit_lock", "1528994992:10");
INSERT INTO `wp_postmeta` VALUES("10", "11", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("68", "21", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("69", "21", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("70", "21", "_menu_item_object_id", "11");
INSERT INTO `wp_postmeta` VALUES("71", "21", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("72", "21", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("73", "21", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("74", "21", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("75", "21", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("77", "22", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("78", "22", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("79", "22", "_menu_item_object_id", "5");
INSERT INTO `wp_postmeta` VALUES("80", "22", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("81", "22", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("82", "22", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("83", "22", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("84", "22", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("86", "24", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("87", "24", "_edit_lock", "1526421123:10");
INSERT INTO `wp_postmeta` VALUES("88", "24", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("89", "26", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("90", "26", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("91", "26", "_menu_item_object_id", "24");
INSERT INTO `wp_postmeta` VALUES("92", "26", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("93", "26", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("94", "26", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("95", "26", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("96", "26", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("116", "29", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("117", "29", "_edit_lock", "1525823721:10");
INSERT INTO `wp_postmeta` VALUES("118", "29", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("128", "32", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("129", "32", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("130", "32", "_menu_item_object_id", "29");
INSERT INTO `wp_postmeta` VALUES("131", "32", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("132", "32", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("133", "32", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("134", "32", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("135", "32", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("155", "35", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("156", "35", "_edit_lock", "1528992829:10");
INSERT INTO `wp_postmeta` VALUES("157", "35", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("167", "41", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("168", "41", "_edit_lock", "1487791608:1");
INSERT INTO `wp_postmeta` VALUES("169", "41", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("179", "44", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("180", "44", "_edit_lock", "1501290703:6");
INSERT INTO `wp_postmeta` VALUES("181", "44", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("191", "47", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("192", "47", "_edit_lock", "1487791551:1");
INSERT INTO `wp_postmeta` VALUES("193", "47", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("239", "54", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("240", "54", "_edit_lock", "1528904010:10");
INSERT INTO `wp_postmeta` VALUES("241", "54", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("260", "60", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("261", "60", "_edit_lock", "1528898740:10");
INSERT INTO `wp_postmeta` VALUES("262", "60", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("281", "64", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("282", "64", "_edit_lock", "1528994760:10");
INSERT INTO `wp_postmeta` VALUES("283", "64", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("332", "74", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("333", "74", "_edit_lock", "1528903743:10");
INSERT INTO `wp_postmeta` VALUES("334", "74", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("428", "88", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("429", "88", "_edit_lock", "1487790320:1");
INSERT INTO `wp_postmeta` VALUES("430", "88", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("431", "91", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("432", "91", "_edit_lock", "1406828885:1");
INSERT INTO `wp_postmeta` VALUES("433", "91", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("568", "123", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("569", "123", "_edit_lock", "1406833021:1");
INSERT INTO `wp_postmeta` VALUES("570", "123", "_wp_page_template", "template-media-jgrid.php");
INSERT INTO `wp_postmeta` VALUES("764", "170", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("765", "170", "_edit_lock", "1526139170:10");
INSERT INTO `wp_postmeta` VALUES("766", "170", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("767", "172", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("768", "172", "_edit_lock", "1406321046:1");
INSERT INTO `wp_postmeta` VALUES("769", "172", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("770", "174", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("771", "174", "_edit_lock", "1521055827:1");
INSERT INTO `wp_postmeta` VALUES("772", "174", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("773", "176", "_edit_last", "4");
INSERT INTO `wp_postmeta` VALUES("774", "176", "_edit_lock", "1521057037:1");
INSERT INTO `wp_postmeta` VALUES("775", "176", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("812", "183", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("813", "183", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("814", "183", "_menu_item_object_id", "170");
INSERT INTO `wp_postmeta` VALUES("815", "183", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("816", "183", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("817", "183", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("818", "183", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("819", "183", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("848", "187", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("849", "187", "_edit_lock", "1501280912:6");
INSERT INTO `wp_postmeta` VALUES("850", "187", "_wp_page_template", "template-media-jgrid.php");
INSERT INTO `wp_postmeta` VALUES("851", "189", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("852", "189", "_edit_lock", "1487790255:1");
INSERT INTO `wp_postmeta` VALUES("853", "189", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("854", "191", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("855", "191", "_edit_lock", "1487790230:1");
INSERT INTO `wp_postmeta` VALUES("856", "191", "_wp_page_template", "template-media-jgrid.php");
INSERT INTO `wp_postmeta` VALUES("884", "199", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("885", "199", "_edit_lock", "1493059947:1");
INSERT INTO `wp_postmeta` VALUES("886", "199", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1023", "217", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("1024", "217", "_edit_lock", "1501292148:6");
INSERT INTO `wp_postmeta` VALUES("1025", "217", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1026", "217", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1036", "47", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1037", "41", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1038", "44", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1039", "60", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1043", "187", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1045", "64", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1046", "172", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1047", "176", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1049", "29", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1059", "54", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1060", "35", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1061", "189", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1062", "191", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1063", "123", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1196", "24", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1197", "88", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1198", "9", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1199", "199", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1202", "174", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1203", "274", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1204", "274", "_edit_lock", "1395321956:1");
INSERT INTO `wp_postmeta` VALUES("1207", "277", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1208", "277", "_edit_lock", "1395337161:1");
INSERT INTO `wp_postmeta` VALUES("1213", "284", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1214", "284", "_edit_lock", "1498455968:6");
INSERT INTO `wp_postmeta` VALUES("1215", "284", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1216", "284", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1281", "303", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("1282", "303", "_edit_lock", "1528904305:10");
INSERT INTO `wp_postmeta` VALUES("1283", "303", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1284", "303", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1307", "326", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("1308", "326", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1309", "326", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1310", "326", "_edit_lock", "1528814759:10");
INSERT INTO `wp_postmeta` VALUES("1324", "369", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1325", "369", "_edit_lock", "1396904819:1");
INSERT INTO `wp_postmeta` VALUES("1326", "371", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1327", "371", "_edit_lock", "1395337182:1");
INSERT INTO `wp_postmeta` VALUES("1332", "388", "_wp_attached_file", "2014/03/cropped-Logo-small-file.jpg");
INSERT INTO `wp_postmeta` VALUES("1333", "388", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("1334", "388", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:527;s:6:\"height\";i:281;s:4:\"file\";s:35:\"2014/03/cropped-Logo-small-file.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"cropped-Logo-small-file-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:\"cropped-Logo-small-file-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:34:\"cropped-Logo-small-file-100x53.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:34:\"cropped-Logo-small-file-150x79.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:79;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:35:\"cropped-Logo-small-file-200x106.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:35:\"cropped-Logo-small-file-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:35:\"cropped-Logo-small-file-450x239.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:239;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1335", "388", "_wp_attachment_is_custom_header", "responsive");
INSERT INTO `wp_postmeta` VALUES("1338", "11", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1340", "5", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1341", "404", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1342", "404", "_edit_lock", "1406831248:1");
INSERT INTO `wp_postmeta` VALUES("1343", "404", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1344", "404", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1345", "406", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1346", "406", "_edit_lock", "1487791658:1");
INSERT INTO `wp_postmeta` VALUES("1347", "406", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1348", "406", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1349", "408", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1350", "408", "_edit_lock", "1406831408:1");
INSERT INTO `wp_postmeta` VALUES("1351", "408", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1352", "408", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1357", "412", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1358", "412", "_edit_lock", "1487791707:1");
INSERT INTO `wp_postmeta` VALUES("1359", "412", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1360", "412", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1399", "170", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1403", "91", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1406", "558", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1407", "558", "_edit_lock", "1395408500:1");
INSERT INTO `wp_postmeta` VALUES("1417", "597", "_wp_attached_file", "2014/03/Ebb-and-Flow-March-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1418", "597", "_edit_lock", "1395359016:1");
INSERT INTO `wp_postmeta` VALUES("1419", "597", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1420", "604", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1421", "604", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1422", "604", "_menu_item_object_id", "5");
INSERT INTO `wp_postmeta` VALUES("1423", "604", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1424", "604", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1425", "604", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1426", "604", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1427", "604", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1429", "605", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1430", "605", "_menu_item_menu_item_parent", "604");
INSERT INTO `wp_postmeta` VALUES("1431", "605", "_menu_item_object_id", "35");
INSERT INTO `wp_postmeta` VALUES("1432", "605", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1433", "605", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1434", "605", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1435", "605", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1436", "605", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1438", "606", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1439", "606", "_menu_item_menu_item_parent", "604");
INSERT INTO `wp_postmeta` VALUES("1440", "606", "_menu_item_object_id", "54");
INSERT INTO `wp_postmeta` VALUES("1441", "606", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1442", "606", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1443", "606", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1444", "606", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1445", "606", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1447", "607", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1448", "607", "_menu_item_menu_item_parent", "604");
INSERT INTO `wp_postmeta` VALUES("1449", "607", "_menu_item_object_id", "60");
INSERT INTO `wp_postmeta` VALUES("1450", "607", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1451", "607", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1452", "607", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1453", "607", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1454", "607", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1456", "608", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1457", "608", "_menu_item_menu_item_parent", "604");
INSERT INTO `wp_postmeta` VALUES("1458", "608", "_menu_item_object_id", "64");
INSERT INTO `wp_postmeta` VALUES("1459", "608", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1460", "608", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1461", "608", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1462", "608", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1463", "608", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1483", "611", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1484", "611", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1485", "611", "_menu_item_object_id", "11");
INSERT INTO `wp_postmeta` VALUES("1486", "611", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1487", "611", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1488", "611", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1489", "611", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1490", "611", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1492", "612", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1493", "612", "_menu_item_menu_item_parent", "611");
INSERT INTO `wp_postmeta` VALUES("1494", "612", "_menu_item_object_id", "303");
INSERT INTO `wp_postmeta` VALUES("1495", "612", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1496", "612", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1497", "612", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1498", "612", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1499", "612", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1510", "614", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1511", "614", "_menu_item_menu_item_parent", "611");
INSERT INTO `wp_postmeta` VALUES("1512", "614", "_menu_item_object_id", "187");
INSERT INTO `wp_postmeta` VALUES("1513", "614", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1514", "614", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1515", "614", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1516", "614", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1517", "614", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1519", "615", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1520", "615", "_menu_item_menu_item_parent", "611");
INSERT INTO `wp_postmeta` VALUES("1521", "615", "_menu_item_object_id", "191");
INSERT INTO `wp_postmeta` VALUES("1522", "615", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1523", "615", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1524", "615", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1525", "615", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1526", "615", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1528", "616", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1529", "616", "_menu_item_menu_item_parent", "611");
INSERT INTO `wp_postmeta` VALUES("1530", "616", "_menu_item_object_id", "189");
INSERT INTO `wp_postmeta` VALUES("1531", "616", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1532", "616", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1533", "616", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1534", "616", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1535", "616", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1537", "617", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1538", "617", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1539", "617", "_menu_item_object_id", "88");
INSERT INTO `wp_postmeta` VALUES("1540", "617", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1541", "617", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1542", "617", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1543", "617", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1544", "617", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1546", "618", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1547", "618", "_menu_item_menu_item_parent", "617");
INSERT INTO `wp_postmeta` VALUES("1548", "618", "_menu_item_object_id", "9");
INSERT INTO `wp_postmeta` VALUES("1549", "618", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1550", "618", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1551", "618", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1552", "618", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1553", "618", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1555", "619", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1556", "619", "_menu_item_menu_item_parent", "617");
INSERT INTO `wp_postmeta` VALUES("1557", "619", "_menu_item_object_id", "123");
INSERT INTO `wp_postmeta` VALUES("1558", "619", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1559", "619", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1560", "619", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1561", "619", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1562", "619", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1564", "620", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1565", "620", "_menu_item_menu_item_parent", "617");
INSERT INTO `wp_postmeta` VALUES("1566", "620", "_menu_item_object_id", "91");
INSERT INTO `wp_postmeta` VALUES("1567", "620", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1568", "620", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1569", "620", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1570", "620", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1571", "620", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1582", "604", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1583", "604", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1584", "605", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1585", "605", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1586", "606", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1587", "606", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1588", "607", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1589", "607", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1590", "608", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1591", "608", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1596", "611", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1597", "611", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1598", "612", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1599", "612", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1602", "614", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1603", "614", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1604", "615", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1605", "615", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1606", "616", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1607", "616", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1608", "617", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1609", "617", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1610", "618", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1611", "618", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1612", "619", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1613", "619", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1614", "620", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1615", "620", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1620", "624", "_wp_attached_file", "2014/03/Twilight-Journeys-April-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1621", "624", "_edit_lock", "1395516323:1");
INSERT INTO `wp_postmeta` VALUES("1622", "624", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1623", "625", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1624", "625", "_edit_lock", "1521740491:1");
INSERT INTO `wp_postmeta` VALUES("1626", "625", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1627", "627", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1628", "627", "_edit_lock", "1395408388:1");
INSERT INTO `wp_postmeta` VALUES("1629", "629", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1630", "629", "_edit_lock", "1395408456:1");
INSERT INTO `wp_postmeta` VALUES("1631", "632", "_wp_attached_file", "2014/03/Marriage-Prep-poster-June-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1632", "632", "_edit_lock", "1395516921:1");
INSERT INTO `wp_postmeta` VALUES("1633", "632", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1638", "651", "_wp_attached_file", "2014/03/CareerChoice.pdf");
INSERT INTO `wp_postmeta` VALUES("1639", "651", "_edit_lock", "1395516178:1");
INSERT INTO `wp_postmeta` VALUES("1640", "652", "_wp_attached_file", "2014/03/CareerChoice-general-poster-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1641", "652", "_edit_lock", "1395516638:1");
INSERT INTO `wp_postmeta` VALUES("1642", "652", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1643", "654", "_wp_attached_file", "2014/03/Spiritual-Directors-poster-general-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1644", "654", "_edit_lock", "1395516165:1");
INSERT INTO `wp_postmeta` VALUES("1645", "654", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1646", "673", "_wp_attached_file", "2014/03/Family-Systems-Course-April-July-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1647", "673", "_edit_lock", "1395516863:1");
INSERT INTO `wp_postmeta` VALUES("1648", "673", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1658", "701", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1659", "701", "_edit_lock", "1395408628:1");
INSERT INTO `wp_postmeta` VALUES("1672", "727", "_wp_attached_file", "2014/03/Twilight-Journeys-general.pdf");
INSERT INTO `wp_postmeta` VALUES("1673", "727", "_edit_lock", "1406744021:1");
INSERT INTO `wp_postmeta` VALUES("1674", "727", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1675", "728", "_wp_attached_file", "2014/03/Brief-Solution-Focus-Theory-general-info-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("1676", "728", "_edit_lock", "1395673861:1");
INSERT INTO `wp_postmeta` VALUES("1677", "728", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1678", "729", "_wp_attached_file", "2014/03/Helping-People-Change-general-info-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("1679", "729", "_edit_lock", "1395676160:1");
INSERT INTO `wp_postmeta` VALUES("1680", "729", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1681", "730", "_wp_attached_file", "2014/03/Bowen-Family-Systems-Theory-general-info-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("1682", "730", "_edit_lock", "1440095928:1");
INSERT INTO `wp_postmeta` VALUES("1683", "730", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1684", "731", "_wp_attached_file", "2014/03/Ebb-and-Flow-general-info-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("1685", "731", "_edit_lock", "1397503361:1");
INSERT INTO `wp_postmeta` VALUES("1686", "731", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1687", "732", "_wp_attached_file", "2014/03/Pastoral-Counselling-Training-genero-info-poster-.pdf");
INSERT INTO `wp_postmeta` VALUES("1688", "732", "_edit_lock", "1395674766:1");
INSERT INTO `wp_postmeta` VALUES("1689", "732", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1690", "733", "_wp_attached_file", "2014/03/The-Enneagram-general-info-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("1691", "733", "_edit_lock", "1395674905:1");
INSERT INTO `wp_postmeta` VALUES("1692", "733", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1693", "734", "_wp_attached_file", "2014/03/Art-Therapy-general-info-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("1694", "734", "_edit_lock", "1395675448:1");
INSERT INTO `wp_postmeta` VALUES("1695", "734", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1696", "735", "_wp_attached_file", "2014/03/Mid-Life-Directions-general-info-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("1697", "735", "_edit_lock", "1395675714:1");
INSERT INTO `wp_postmeta` VALUES("1698", "735", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1699", "736", "_wp_attached_file", "2014/03/Helping-a-Loved-one-Change-general-info-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("1700", "736", "_edit_lock", "1395675820:1");
INSERT INTO `wp_postmeta` VALUES("1701", "736", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1702", "737", "_wp_attached_file", "2014/03/Helping-a-loved-one-with-addiction-September-2010.pdf");
INSERT INTO `wp_postmeta` VALUES("1703", "737", "_edit_lock", "1395676339:1");
INSERT INTO `wp_postmeta` VALUES("1704", "737", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1785", "74", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1786", "604", "_menu_item_nav_label", "1");
INSERT INTO `wp_postmeta` VALUES("1787", "605", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1788", "606", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1789", "607", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1790", "608", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1791", "611", "_menu_item_nav_label", "1");
INSERT INTO `wp_postmeta` VALUES("1792", "612", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1794", "614", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1795", "615", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1796", "616", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1797", "617", "_menu_item_nav_label", "1");
INSERT INTO `wp_postmeta` VALUES("1798", "618", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1799", "619", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1800", "620", "_menu_item_nav_label", "0");
INSERT INTO `wp_postmeta` VALUES("1802", "806", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1803", "806", "_edit_lock", "1396906506:1");
INSERT INTO `wp_postmeta` VALUES("1808", "388", "_edit_lock", "1407781507:1");
INSERT INTO `wp_postmeta` VALUES("1809", "817", "ml-slider_settings", "a:35:{s:4:\"type\";s:10:\"responsive\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"300\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:4:\"true\";s:5:\"links\";s:4:\"true\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:3:\"600\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:5:\"false\";s:12:\"smoothHeight\";s:5:\"false\";}");
INSERT INTO `wp_postmeta` VALUES("1810", "388", "ml-slider_type", "image");
INSERT INTO `wp_postmeta` VALUES("1811", "388", "_wp_attachment_backup_sizes", "a:2:{s:15:\"resized-700x300\";a:5:{s:4:\"path\";s:110:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/uploads/2014/03/cropped-Logo-small-file-700x300.jpg\";s:4:\"file\";s:35:\"cropped-Logo-small-file-700x300.jpg\";s:5:\"width\";i:527;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"resized-527x225\";a:5:{s:4:\"path\";s:110:\"/Applications/MAMP/htdocs/TestSICPage/wordpress/wp-content/uploads/2014/03/cropped-Logo-small-file-527x225.jpg\";s:4:\"file\";s:35:\"cropped-Logo-small-file-527x225.jpg\";s:5:\"width\";i:527;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}");
INSERT INTO `wp_postmeta` VALUES("1812", "388", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("1822", "5", "panels_data", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1823", "5", "vantage_metaslider_slider", "");
INSERT INTO `wp_postmeta` VALUES("1824", "5", "vantage_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1825", "11", "panels_data", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1826", "11", "vantage_metaslider_slider", "");
INSERT INTO `wp_postmeta` VALUES("1827", "11", "vantage_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1828", "35", "panels_data", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1829", "35", "vantage_metaslider_slider", "");
INSERT INTO `wp_postmeta` VALUES("1830", "35", "vantage_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1831", "183", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1832", "183", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1833", "22", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1834", "22", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1835", "21", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1836", "21", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1839", "26", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1840", "26", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1841", "32", "_menu_item_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("1842", "32", "_menu_item_megamenu", "0");
INSERT INTO `wp_postmeta` VALUES("1854", "406", "panels_data", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1855", "406", "vantage_metaslider_slider", "");
INSERT INTO `wp_postmeta` VALUES("1856", "406", "vantage_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1857", "60", "panels_data", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1858", "60", "vantage_metaslider_slider", "");
INSERT INTO `wp_postmeta` VALUES("1859", "60", "vantage_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1862", "832", "_wp_attached_file", "2014/05/Family-Systems-Summer-Course-July-7-11-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1863", "832", "_edit_lock", "1403105122:1");
INSERT INTO `wp_postmeta` VALUES("1864", "832", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1865", "833", "_edit_lock", "1403104746:1");
INSERT INTO `wp_postmeta` VALUES("1866", "833", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1871", "837", "_edit_lock", "1412623101:1");
INSERT INTO `wp_postmeta` VALUES("1872", "837", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1876", "841", "_wp_attached_file", "2014/06/Board-of-Directors-info-package-June-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1877", "841", "_edit_lock", "1427133637:1");
INSERT INTO `wp_postmeta` VALUES("1878", "841", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1879", "848", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("1880", "848", "_edit_lock", "1528904497:10");
INSERT INTO `wp_postmeta` VALUES("1881", "848", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1882", "848", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("1883", "857", "_wp_attached_file", "2014/06/General-Marriage-Prep-poster-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("1884", "857", "_edit_lock", "1403542296:1");
INSERT INTO `wp_postmeta` VALUES("1885", "857", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1896", "869", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("1897", "869", "_edit_lock", "1528903724:10");
INSERT INTO `wp_postmeta` VALUES("1898", "869", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1899", "869", "_responsive_layout", "default");
INSERT INTO `wp_postmeta` VALUES("2079", "11896", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("2080", "11896", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2081", "11896", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2082", "11896", "_dt_benefits_options_retina_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2083", "11896", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("2084", "11896", "_wp_old_slug", "woocommerce-support");
INSERT INTO `wp_postmeta` VALUES("2085", "11896", "_dt_benefits_options_icon_code", "<i class=\"fa fa-refresh\"></i>");
INSERT INTO `wp_postmeta` VALUES("2086", "11897", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("2087", "11897", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2088", "11897", "_dt_benefits_options_retina_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2089", "11897", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("2090", "11897", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2091", "11897", "_dt_benefits_options_icon_code", "<i class=\"fa fa-tablet\"></i>");
INSERT INTO `wp_postmeta` VALUES("2092", "11898", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("2093", "11898", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2094", "11898", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2095", "11898", "_dt_benefits_options_retina_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2096", "11898", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("2097", "11898", "_dt_benefits_options_icon_code", "<i class=\"fa fa-laptop\"></i>");
INSERT INTO `wp_postmeta` VALUES("2098", "11899", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2099", "11899", "_dt_benefits_options_retina_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2100", "11899", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("2101", "11899", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2102", "11899", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("2103", "11899", "_dt_benefits_options_icon_code", "<i class=\"fa fa-thumbs-o-up\"></i>");
INSERT INTO `wp_postmeta` VALUES("2252", "11900", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("2253", "11900", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2254", "11900", "_dt_benefits_options_retina_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2255", "11900", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("2256", "11900", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2257", "11900", "_dt_benefits_options_icon_code", "<i class=\"fa fa-comments-o\"></i>");
INSERT INTO `wp_postmeta` VALUES("2258", "12649", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("2259", "12649", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2260", "12649", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2261", "12649", "_dt_benefits_options_retina_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2262", "12649", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("2263", "12649", "_dt_benefits_options_icon_code", "<i class=\"fa fa-cogs\"></i>");
INSERT INTO `wp_postmeta` VALUES("2890", "12954", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("2891", "12954", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("2892", "12954", "_dt_testimonials_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("2893", "12954", "_dt_testimonials_options_target_width", "400");
INSERT INTO `wp_postmeta` VALUES("2894", "12954", "_dt_testimonials_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("2895", "12954", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2896", "12954", "_wp_page_template", "template-testimonials.php");
INSERT INTO `wp_postmeta` VALUES("2897", "12954", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("2898", "12954", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("2899", "12954", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("2900", "12954", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("2901", "12954", "_dt_header_title", "fancy");
INSERT INTO `wp_postmeta` VALUES("2902", "12954", "_dt_header_background", "overlap");
INSERT INTO `wp_postmeta` VALUES("2903", "12954", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("2904", "12954", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("2905", "12954", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("2906", "12954", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("2907", "12954", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("2908", "12954", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("2909", "12954", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("2910", "12954", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("2911", "12954", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("2912", "12954", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("2913", "12954", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("2914", "12954", "_dt_fancy_header_title_aligment", "center");
INSERT INTO `wp_postmeta` VALUES("2915", "12954", "_dt_fancy_header_title_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("2916", "12954", "_dt_fancy_header_subtitle_color", "#9ac9ed");
INSERT INTO `wp_postmeta` VALUES("2917", "12954", "_dt_fancy_header_bg_color", "#284269");
INSERT INTO `wp_postmeta` VALUES("2918", "12954", "_dt_fancy_header_bg_image", "a:1:{i:0;i:12935;}");
INSERT INTO `wp_postmeta` VALUES("2919", "12954", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("2920", "12954", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("2921", "12954", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("2922", "12954", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("2923", "12954", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("2924", "12954", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("2925", "12954", "_dt_testimonials_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("2926", "12954", "_dt_testimonials_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("2927", "12954", "_dt_testimonials_options_columns", "3");
INSERT INTO `wp_postmeta` VALUES("2928", "12954", "_dt_testimonials_options_ppp", "15");
INSERT INTO `wp_postmeta` VALUES("2929", "12954", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2930", "12954", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("2931", "12954", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("2932", "12954", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("2933", "12954", "_dt_fancy_header_title", "What Our Clients Say");
INSERT INTO `wp_postmeta` VALUES("2934", "12954", "_dt_fancy_header_subtitle", "We are trusted by thousands of people!");
INSERT INTO `wp_postmeta` VALUES("2935", "12954", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("2936", "144", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2937", "144", "_wp_page_template", "template-albums.php");
INSERT INTO `wp_postmeta` VALUES("2938", "144", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("2939", "144", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("2940", "144", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("2941", "144", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("2942", "144", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("2943", "144", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("2944", "144", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("2945", "144", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("2946", "144", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("2947", "144", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("2948", "144", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("2949", "144", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("2950", "144", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("2951", "144", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("2952", "144", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("2953", "144", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("2954", "144", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("2955", "144", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("2956", "144", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("2957", "144", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("2958", "144", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("2959", "144", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("2960", "144", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("2961", "144", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("2962", "144", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("2963", "144", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("2964", "144", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("2965", "144", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("2966", "144", "_dt_albums_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("2967", "144", "_dt_albums_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("2968", "144", "_dt_albums_options_columns", "3");
INSERT INTO `wp_postmeta` VALUES("2969", "144", "_dt_albums_options_description", "on_hoover_centered");
INSERT INTO `wp_postmeta` VALUES("2970", "144", "_dt_albums_options_posts_same_width", "1");
INSERT INTO `wp_postmeta` VALUES("2971", "144", "_dt_albums_options_image_layout", "resize");
INSERT INTO `wp_postmeta` VALUES("2972", "144", "_dt_albums_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("2973", "144", "_dt_albums_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("2974", "144", "_dt_albums_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("2975", "144", "_dt_albums_options_show_terms", "0");
INSERT INTO `wp_postmeta` VALUES("2976", "144", "_dt_albums_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("2977", "144", "_dt_albums_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("2978", "144", "_dt_albums_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("2979", "144", "_dt_albums_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("2980", "144", "_dt_albums_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("2981", "144", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2982", "144", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("2983", "144", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("2984", "144", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("2985", "144", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("2986", "144", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("2987", "144", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("2988", "144", "_dt_albums_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("2989", "144", "_dt_albums_options_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("2990", "144", "_dt_albums_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("2991", "144", "_dt_albums_options_jgrid_show_round_miniatures", "0");
INSERT INTO `wp_postmeta` VALUES("2992", "144", "_dt_albums_options_item_padding", "0");
INSERT INTO `wp_postmeta` VALUES("2993", "144", "_dt_albums_options_target_width", "300");
INSERT INTO `wp_postmeta` VALUES("2994", "144", "_dt_albums_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("2995", "144", "_dt_albums_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("2996", "155", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2997", "155", "_wp_page_template", "template-media.php");
INSERT INTO `wp_postmeta` VALUES("2998", "155", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("2999", "155", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3000", "155", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("3001", "155", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3002", "155", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3003", "155", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3004", "155", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3005", "155", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3006", "155", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3007", "155", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3008", "155", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3009", "155", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3010", "155", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3011", "155", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3012", "155", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3013", "155", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3014", "155", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3015", "155", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3016", "155", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3017", "155", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3018", "155", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3019", "155", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3020", "155", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3021", "155", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3022", "155", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3023", "155", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3024", "155", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("3025", "155", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("3026", "155", "_dt_albums_media_display", "a:3:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";s:9:\"posts_ids\";a:2:{i:154;s:3:\"154\";i:151;s:3:\"151\";}}");
INSERT INTO `wp_postmeta` VALUES("3027", "155", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("3028", "155", "_dt_media_options_columns", "4");
INSERT INTO `wp_postmeta` VALUES("3029", "155", "_dt_media_options_description", "disabled");
INSERT INTO `wp_postmeta` VALUES("3030", "155", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("3031", "155", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("3032", "155", "_dt_media_options_show_titles", "0");
INSERT INTO `wp_postmeta` VALUES("3033", "155", "_dt_media_options_show_exerpts", "0");
INSERT INTO `wp_postmeta` VALUES("3034", "155", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("3035", "155", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("3036", "155", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("3037", "155", "_dt_media_options_ppp", "40");
INSERT INTO `wp_postmeta` VALUES("3038", "155", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("3039", "155", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("3040", "155", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3041", "155", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3042", "155", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3043", "155", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3044", "155", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3045", "155", "_dt_media_options_full_width", "1");
INSERT INTO `wp_postmeta` VALUES("3046", "155", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("3047", "155", "_dt_media_options_item_padding", "0");
INSERT INTO `wp_postmeta` VALUES("3048", "155", "_dt_media_options_target_width", "250");
INSERT INTO `wp_postmeta` VALUES("3129", "201", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3130", "201", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3131", "201", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3132", "201", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3133", "201", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3134", "201", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3135", "201", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3136", "201", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3137", "201", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3138", "201", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3139", "201", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3140", "201", "_dt_header_title", "slideshow");
INSERT INTO `wp_postmeta` VALUES("3141", "201", "_dt_header_background", "overlap");
INSERT INTO `wp_postmeta` VALUES("3142", "201", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3143", "201", "_dt_slideshow_3d_layout", "prop-fullwidth");
INSERT INTO `wp_postmeta` VALUES("3144", "201", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:1:\"9\";s:6:\"height\";s:1:\"3\";}");
INSERT INTO `wp_postmeta` VALUES("3145", "201", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3146", "201", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:2:\"16\";s:6:\"height\";s:1:\"7\";}");
INSERT INTO `wp_postmeta` VALUES("3147", "201", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3148", "201", "_dt_slideshow_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("3149", "201", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3150", "201", "_dt_slideshow_slides_in_raw", "4");
INSERT INTO `wp_postmeta` VALUES("3151", "201", "_dt_slideshow_slides_in_column", "2");
INSERT INTO `wp_postmeta` VALUES("3152", "201", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3153", "201", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3154", "201", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3155", "201", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3156", "201", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3157", "201", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3158", "201", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3159", "201", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3160", "201", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3161", "201", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3162", "201", "_dt_slideshow_sliders", "162");
INSERT INTO `wp_postmeta` VALUES("3163", "201", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3164", "201", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("3278", "12957", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3279", "12957", "_dt_fancy_header_bg_image", "a:1:{i:0;i:12935;}");
INSERT INTO `wp_postmeta` VALUES("3280", "12957", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3281", "12957", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3282", "12957", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3283", "12957", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3284", "12957", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3285", "12957", "_dt_header_title", "fancy");
INSERT INTO `wp_postmeta` VALUES("3286", "12957", "_dt_header_background", "overlap");
INSERT INTO `wp_postmeta` VALUES("3287", "12957", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3288", "12957", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3289", "12957", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3290", "12957", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3291", "12957", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3292", "12957", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3293", "12957", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3294", "12957", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3295", "12957", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3296", "12957", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3297", "12957", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3298", "12957", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3299", "12957", "_dt_fancy_header_title", "CONTACT PAGE");
INSERT INTO `wp_postmeta` VALUES("3300", "12957", "_dt_fancy_header_subtitle_color", "#90d7ed");
INSERT INTO `wp_postmeta` VALUES("3301", "12957", "_dt_fancy_header_bg_color", "#0b518e");
INSERT INTO `wp_postmeta` VALUES("3302", "12957", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3303", "12957", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3304", "12957", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3305", "12957", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3306", "12957", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("3307", "12957", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("3308", "12957", "_dt_fancy_header_title_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3309", "12957", "_dt_fancy_header_subtitle", "Get in touch with us!");
INSERT INTO `wp_postmeta` VALUES("3310", "12957", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3311", "12957", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3312", "12957", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3313", "12957", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3314", "12957", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3315", "12958", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3316", "12958", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3317", "12958", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3318", "12958", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3319", "12958", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3320", "12958", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3321", "12958", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3322", "12958", "_dt_header_title", "slideshow");
INSERT INTO `wp_postmeta` VALUES("3323", "12958", "_dt_header_background", "overlap");
INSERT INTO `wp_postmeta` VALUES("3324", "12958", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3325", "12958", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3326", "12958", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3327", "12958", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3328", "12958", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"450\";}");
INSERT INTO `wp_postmeta` VALUES("3329", "12958", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3330", "12958", "_dt_slideshow_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("3331", "12958", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3332", "12958", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3333", "12958", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3334", "12958", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3335", "12958", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3336", "12958", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3337", "12958", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3338", "12958", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3339", "12958", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3340", "12958", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3341", "12958", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3342", "12958", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3343", "12958", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3344", "12958", "_dt_slideshow_sliders", "162");
INSERT INTO `wp_postmeta` VALUES("3345", "12958", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("3346", "12958", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3347", "12958", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3348", "12958", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3349", "12958", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3350", "12958", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3448", "12751", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3449", "12751", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3450", "12751", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3451", "12751", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3452", "12751", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3453", "12751", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3454", "12751", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3455", "12751", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3456", "12751", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3457", "12751", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3458", "12751", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3459", "12751", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3460", "12751", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3461", "12751", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3462", "12751", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3463", "12751", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3464", "12751", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3465", "12751", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3466", "12751", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3467", "12751", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3468", "12751", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3469", "12751", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3470", "12751", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3471", "12751", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3472", "12751", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3473", "12751", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3474", "12751", "_dt_slideshow_mode", "layer");
INSERT INTO `wp_postmeta` VALUES("3475", "12751", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3476", "12751", "_dt_header_title", "disabled");
INSERT INTO `wp_postmeta` VALUES("3477", "12751", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3478", "12751", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3479", "12751", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3480", "12751", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3481", "12751", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3482", "12751", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3483", "12751", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3484", "12751", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3485", "12753", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3486", "12753", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3487", "12753", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3488", "12753", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3489", "12753", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("3490", "12753", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3491", "12753", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3492", "12753", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3493", "12753", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3494", "12753", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3495", "12753", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3496", "12753", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3497", "12753", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3498", "12753", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3499", "12753", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3500", "12753", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3501", "12753", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3502", "12753", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3503", "12753", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3504", "12753", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3505", "12753", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3506", "12753", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3507", "12753", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3508", "12753", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3509", "12753", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3510", "12753", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3511", "12753", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3512", "12753", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3513", "12753", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3514", "12753", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3515", "12753", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3516", "12753", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3517", "12753", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3518", "12753", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3519", "12753", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3520", "12753", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3521", "12754", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3522", "12754", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3523", "12754", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3524", "12754", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3525", "12754", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3526", "12754", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3527", "12754", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3528", "12754", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3529", "12754", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3530", "12754", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3531", "12754", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3532", "12754", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3533", "12754", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3534", "12754", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3535", "12754", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3536", "12754", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3537", "12754", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3538", "12754", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3539", "12754", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3540", "12754", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3541", "12754", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3542", "12754", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3543", "12754", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3544", "12754", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3545", "12754", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3546", "12754", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3547", "12754", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3548", "12754", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3549", "12754", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3550", "12754", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3551", "12754", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3552", "12754", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3553", "12754", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3554", "12754", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3555", "12754", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3556", "12754", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3557", "12754", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3558", "12755", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3559", "12755", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3560", "12755", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("3561", "12755", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3562", "12755", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3563", "12755", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3564", "12755", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3565", "12755", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3566", "12755", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3567", "12755", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3568", "12755", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3569", "12755", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3570", "12755", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3571", "12755", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3572", "12755", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3573", "12755", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3574", "12755", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3575", "12755", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3576", "12755", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3577", "12755", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3578", "12755", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3579", "12755", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3580", "12755", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3581", "12755", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3582", "12755", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3583", "12755", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3584", "12755", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3585", "12755", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3586", "12755", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3587", "12755", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3588", "12755", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3589", "12755", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3590", "12755", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3591", "12755", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3592", "12755", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3593", "12756", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3594", "12756", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3595", "12756", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3596", "12756", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3597", "12756", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("3598", "12756", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3599", "12756", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("3600", "12756", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3601", "12756", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3602", "12756", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3603", "12756", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3604", "12756", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3605", "12756", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3606", "12756", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3607", "12756", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3608", "12756", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3609", "12756", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3610", "12756", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3611", "12756", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3612", "12756", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3613", "12756", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3614", "12756", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3615", "12756", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3616", "12756", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3617", "12756", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3618", "12756", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3619", "12756", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3620", "12756", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3621", "12756", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3622", "12756", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3623", "12756", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3624", "12756", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3625", "12756", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3626", "12756", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3627", "12756", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3628", "12756", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3629", "12757", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3630", "12757", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3631", "12757", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3632", "12757", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3633", "12757", "_dt_sidebar_position", "left");
INSERT INTO `wp_postmeta` VALUES("3634", "12757", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3635", "12757", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3636", "12757", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3637", "12757", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3638", "12757", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3639", "12757", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3640", "12757", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3641", "12757", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3642", "12757", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3643", "12757", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3644", "12757", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3645", "12757", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3646", "12757", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3647", "12757", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3648", "12757", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3649", "12757", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3650", "12757", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3651", "12757", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3652", "12757", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3653", "12757", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3654", "12757", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3655", "12757", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3656", "12757", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3657", "12757", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3658", "12757", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3659", "12757", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3660", "12757", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3661", "12757", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3662", "12757", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3663", "12757", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3664", "12757", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3665", "12757", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3666", "12758", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3667", "12758", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3668", "12758", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3669", "12758", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3670", "12758", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3671", "12758", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3672", "12758", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3673", "12758", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3674", "12758", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3675", "12758", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3676", "12758", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3677", "12758", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3678", "12758", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3679", "12758", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3680", "12758", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3681", "12758", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3682", "12758", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3683", "12758", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3684", "12758", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3685", "12758", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3686", "12758", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3687", "12758", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3688", "12758", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3689", "12758", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3690", "12758", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3691", "12758", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3692", "12758", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3693", "12758", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3694", "12758", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3695", "12758", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3696", "12758", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3697", "12758", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3698", "12758", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3699", "12758", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3700", "12758", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3701", "12759", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3702", "12759", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3703", "12759", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3704", "12759", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3705", "12759", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3706", "12759", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3707", "12759", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3708", "12759", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3709", "12759", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3710", "12759", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3711", "12759", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3712", "12759", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3713", "12759", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3714", "12759", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3715", "12759", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3716", "12759", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3717", "12759", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3718", "12759", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3719", "12759", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3720", "12759", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3721", "12759", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3722", "12759", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3723", "12759", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3724", "12759", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3725", "12759", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3726", "12759", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3727", "12759", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3728", "12759", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3729", "12759", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3730", "12759", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3731", "12759", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3732", "12759", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3733", "12759", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3734", "12759", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3735", "12759", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3736", "12760", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3737", "12760", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3738", "12760", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3739", "12760", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3740", "12760", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3741", "12760", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3742", "12760", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3743", "12760", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3744", "12760", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3745", "12760", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3746", "12760", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3747", "12760", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3748", "12760", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3749", "12760", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3750", "12760", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3751", "12760", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3752", "12760", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3753", "12760", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3754", "12760", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3755", "12760", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3756", "12760", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3757", "12760", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3758", "12760", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3759", "12760", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3760", "12760", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3761", "12760", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3762", "12760", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3763", "12760", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3764", "12760", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3765", "12760", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3766", "12760", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3767", "12760", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3768", "12760", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3769", "12760", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3770", "12760", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3771", "12760", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3772", "12761", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3773", "12761", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3774", "12761", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3775", "12761", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3776", "12761", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3777", "12761", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3778", "12761", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3779", "12761", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3780", "12761", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3781", "12761", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3782", "12761", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3783", "12761", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3784", "12761", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3785", "12761", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3786", "12761", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3787", "12761", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3788", "12761", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3789", "12761", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3790", "12761", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3791", "12761", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3792", "12761", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3793", "12761", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3794", "12761", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3795", "12761", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3796", "12761", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3797", "12761", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3798", "12761", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3799", "12761", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3800", "12761", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3801", "12761", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3802", "12761", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3803", "12761", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3804", "12761", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3805", "12761", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3806", "12761", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3807", "12762", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3808", "12762", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3809", "12762", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3810", "12762", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3811", "12762", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3812", "12762", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3813", "12762", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3814", "12762", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3815", "12762", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3816", "12762", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3817", "12762", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3818", "12762", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3819", "12762", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3820", "12762", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3821", "12762", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3822", "12762", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3823", "12762", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3824", "12762", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3825", "12762", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3826", "12762", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3827", "12762", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3828", "12762", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3829", "12762", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3830", "12762", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3831", "12762", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3832", "12762", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3833", "12762", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3834", "12762", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3835", "12762", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3836", "12762", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3837", "12762", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3838", "12762", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3839", "12762", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3840", "12762", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3841", "12762", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3842", "12763", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3843", "12763", "_wp_page_template", "template-testimonials.php");
INSERT INTO `wp_postmeta` VALUES("3844", "12763", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3845", "12763", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3846", "12763", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3847", "12763", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3848", "12763", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3849", "12763", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3850", "12763", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3851", "12763", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3852", "12763", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3853", "12763", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3854", "12763", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3855", "12763", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3856", "12763", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3857", "12763", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3858", "12763", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3859", "12763", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3860", "12763", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3861", "12763", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3862", "12763", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3863", "12763", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3864", "12763", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3865", "12763", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3866", "12763", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3867", "12763", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3868", "12763", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3869", "12763", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3870", "12763", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3871", "12763", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3872", "12763", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3873", "12763", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3874", "12763", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3875", "12763", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3876", "12763", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3877", "12763", "_dt_content_display", "on_all_pages");
INSERT INTO `wp_postmeta` VALUES("3878", "12763", "_dt_content_position", "after_items");
INSERT INTO `wp_postmeta` VALUES("3879", "12763", "_dt_testimonials_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("3880", "12763", "_dt_testimonials_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("3881", "12763", "_dt_testimonials_options_columns", "3");
INSERT INTO `wp_postmeta` VALUES("3882", "12763", "_dt_testimonials_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("3883", "12763", "_dt_testimonials_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("3884", "12763", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3885", "12763", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3886", "12763", "_dt_testimonials_options_target_width", "400");
INSERT INTO `wp_postmeta` VALUES("3887", "12769", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3888", "12769", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3889", "12769", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3890", "12769", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3891", "12769", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3892", "12769", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3893", "12769", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3894", "12769", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3895", "12769", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3896", "12769", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3897", "12769", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3898", "12769", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3899", "12769", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3900", "12769", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3901", "12769", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3902", "12769", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3903", "12769", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3904", "12769", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3905", "12769", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3906", "12769", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3907", "12769", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3908", "12769", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3909", "12769", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3910", "12769", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3911", "12769", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3912", "12769", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3913", "12769", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3914", "12769", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3915", "12769", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3916", "12769", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3917", "12769", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3918", "12769", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3919", "12769", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3920", "12769", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3921", "12769", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3922", "12769", "_oembed_d95feae3df569858df76b42a9cffa5d2", "<iframe src=\"//player.vimeo.com/video/22647358\" width=\"640\" height=\"360\" frameborder=\"0\" title=\"Precious\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>");
INSERT INTO `wp_postmeta` VALUES("3923", "12770", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3924", "12770", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3925", "12770", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("3926", "12770", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3927", "12770", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3928", "12770", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3929", "12770", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3930", "12770", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3931", "12770", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3932", "12770", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3933", "12770", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3934", "12770", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("3935", "12770", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3936", "12770", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3937", "12770", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3938", "12770", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3939", "12770", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3940", "12770", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3941", "12770", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3942", "12770", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3943", "12770", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3944", "12770", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3945", "12770", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3946", "12770", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3947", "12770", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3948", "12770", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("3949", "12770", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3950", "12770", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("3951", "12770", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3952", "12770", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("3953", "12770", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3954", "12770", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3955", "12770", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3956", "12770", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3957", "12770", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("3958", "12770", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("3959", "12770", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("3960", "12771", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3961", "12771", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("3962", "12771", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("3963", "12771", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("3964", "12771", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("3965", "12771", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("3966", "12771", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("3967", "12771", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("3968", "12771", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("3969", "12771", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("3970", "12771", "_dt_header_background", "transparent");
INSERT INTO `wp_postmeta` VALUES("3971", "12771", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("3972", "12771", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("3973", "12771", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3974", "12771", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("3975", "12771", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("3976", "12771", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("3977", "12771", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("3978", "12771", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("3979", "12771", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("3980", "12771", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("3981", "12771", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3982", "12771", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("3983", "12771", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("3984", "12771", "_dt_fancy_header_title_aligment", "center");
INSERT INTO `wp_postmeta` VALUES("3985", "12771", "_dt_fancy_header_title_color", "#212121");
INSERT INTO `wp_postmeta` VALUES("3986", "12771", "_dt_fancy_header_subtitle_color", "#333333");
INSERT INTO `wp_postmeta` VALUES("3987", "12771", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("3988", "12771", "_dt_fancy_header_bg_image", "a:1:{i:0;i:12739;}");
INSERT INTO `wp_postmeta` VALUES("3989", "12771", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3990", "12771", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("3991", "12771", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("3992", "12771", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("3993", "12771", "_dt_fancy_header_bg_fixed", "1");
INSERT INTO `wp_postmeta` VALUES("3994", "12771", "_dt_fancy_header_title", "Your fancy header");
INSERT INTO `wp_postmeta` VALUES("3995", "12771", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("3996", "12771", "_dt_fancy_header_parallax_speed", "0.3");
INSERT INTO `wp_postmeta` VALUES("3997", "12771", "_dt_fancy_header_height", "0");
INSERT INTO `wp_postmeta` VALUES("3998", "12772", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("3999", "12772", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("4000", "12772", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("4001", "12772", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("4002", "12772", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("4003", "12772", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("4004", "12772", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("4005", "12772", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("4006", "12772", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("4007", "12772", "_dt_header_title", "disabled");
INSERT INTO `wp_postmeta` VALUES("4008", "12772", "_dt_header_background", "transparent");
INSERT INTO `wp_postmeta` VALUES("4009", "12772", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("4010", "12772", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("4011", "12772", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("4012", "12772", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("4013", "12772", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("4014", "12772", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("4015", "12772", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("4016", "12772", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("4017", "12772", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("4018", "12772", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("4019", "12772", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4020", "12772", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4021", "12772", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("4022", "12772", "_dt_fancy_header_title_aligment", "center");
INSERT INTO `wp_postmeta` VALUES("4023", "12772", "_dt_fancy_header_title_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4024", "12772", "_dt_fancy_header_subtitle_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4025", "12772", "_dt_fancy_header_bg_color", "#06286d");
INSERT INTO `wp_postmeta` VALUES("4026", "12772", "_dt_fancy_header_bg_image", "a:1:{i:0;i:12785;}");
INSERT INTO `wp_postmeta` VALUES("4027", "12772", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("4028", "12772", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("4029", "12772", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("4030", "12772", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("4031", "12772", "_dt_fancy_header_bg_fixed", "1");
INSERT INTO `wp_postmeta` VALUES("4032", "12772", "_dt_fancy_header_parallax_speed", "0.3");
INSERT INTO `wp_postmeta` VALUES("4033", "12772", "_dt_fancy_header_height", "0");
INSERT INTO `wp_postmeta` VALUES("4034", "12772", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("4035", "12772", "_dt_fancy_header_title", "FANCY HEADER");
INSERT INTO `wp_postmeta` VALUES("4178", "12790", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("4179", "12790", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("4180", "12790", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("4181", "12790", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("4182", "12790", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("4183", "12790", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("4184", "12790", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("4185", "12790", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("4186", "12790", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("4187", "12790", "_dt_header_title", "slideshow");
INSERT INTO `wp_postmeta` VALUES("4188", "12790", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("4189", "12790", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("4190", "12790", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("4191", "12790", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("4192", "12790", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("4193", "12790", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"450\";}");
INSERT INTO `wp_postmeta` VALUES("4194", "12790", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("4195", "12790", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("4196", "12790", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("4197", "12790", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("4198", "12790", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("4199", "12790", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4200", "12790", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4201", "12790", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("4202", "12790", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("4203", "12790", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("4204", "12790", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("4205", "12790", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4206", "12790", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("4207", "12790", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("4208", "12790", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("4209", "12790", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("4210", "12790", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("4211", "12790", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("4212", "12790", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("4213", "12790", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("4214", "12790", "_dt_slideshow_sliders", "162");
INSERT INTO `wp_postmeta` VALUES("4215", "12790", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("4403", "12796", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("4404", "12796", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("4405", "12796", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("4406", "12796", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("4407", "12796", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("4408", "12796", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("4409", "12796", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("4410", "12796", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("4411", "12796", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("4412", "12796", "_dt_header_title", "slideshow");
INSERT INTO `wp_postmeta` VALUES("4413", "12796", "_dt_header_background", "transparent");
INSERT INTO `wp_postmeta` VALUES("4414", "12796", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("4415", "12796", "_dt_slideshow_sliders", "162");
INSERT INTO `wp_postmeta` VALUES("4416", "12796", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("4417", "12796", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("4418", "12796", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("4419", "12796", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"480\";}");
INSERT INTO `wp_postmeta` VALUES("4420", "12796", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("4421", "12796", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("4422", "12796", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("4423", "12796", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("4424", "12796", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("4425", "12796", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4426", "12796", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4427", "12796", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("4428", "12796", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("4429", "12796", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("4430", "12796", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("4431", "12796", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4432", "12796", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("4433", "12796", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("4434", "12796", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("4435", "12796", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("4436", "12796", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("4437", "12796", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("4438", "12796", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("4439", "12796", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("4440", "12796", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("4441", "12797", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("4442", "12797", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("4443", "12797", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("4444", "12797", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("4445", "12797", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("4446", "12797", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("4447", "12797", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("4448", "12797", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("4449", "12797", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("4450", "12797", "_dt_header_title", "slideshow");
INSERT INTO `wp_postmeta` VALUES("4451", "12797", "_dt_header_background", "overlap");
INSERT INTO `wp_postmeta` VALUES("4452", "12797", "_dt_slideshow_mode", "revolution");
INSERT INTO `wp_postmeta` VALUES("4453", "12797", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("4454", "12797", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("4455", "12797", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("4456", "12797", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("4457", "12797", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("4458", "12797", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("4459", "12797", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("4460", "12797", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("4461", "12797", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("4462", "12797", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4463", "12797", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4464", "12797", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("4465", "12797", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("4466", "12797", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("4467", "12797", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("4468", "12797", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4469", "12797", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("4470", "12797", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("4471", "12797", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("4472", "12797", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("4473", "12797", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("4474", "12797", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("4475", "12797", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("4476", "12797", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("4477", "12797", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("4478", "12799", "_edit_last", "9");
INSERT INTO `wp_postmeta` VALUES("4479", "12799", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("4480", "12799", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("4481", "12799", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("4482", "12799", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("4483", "12799", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("4484", "12799", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("4485", "12799", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("4486", "12799", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("4487", "12799", "_dt_header_title", "fancy");
INSERT INTO `wp_postmeta` VALUES("4488", "12799", "_dt_header_background", "transparent");
INSERT INTO `wp_postmeta` VALUES("4489", "12799", "_dt_slideshow_mode", "");
INSERT INTO `wp_postmeta` VALUES("4491", "12799", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("4492", "12799", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("4493", "12799", "_dt_slideshow_layout", "fixed");
INSERT INTO `wp_postmeta` VALUES("4494", "12799", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:3:\"700\";s:6:\"height\";s:6:\"268.56\";}");
INSERT INTO `wp_postmeta` VALUES("4495", "12799", "_dt_slideshow_scaling", "fit");
INSERT INTO `wp_postmeta` VALUES("4496", "12799", "_dt_slideshow_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("4497", "12799", "_dt_slideshow_autoslide_interval", "10000");
INSERT INTO `wp_postmeta` VALUES("4498", "12799", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("4499", "12799", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("4500", "12799", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4501", "12799", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("4502", "12799", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("4503", "12799", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("4504", "12799", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("4505", "12799", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("4506", "12799", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4507", "12799", "_dt_fancy_header_bg_image", "a:1:{i:0;i:14694;}");
INSERT INTO `wp_postmeta` VALUES("4508", "12799", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("4509", "12799", "_dt_fancy_header_bg_position_x", "right");
INSERT INTO `wp_postmeta` VALUES("4510", "12799", "_dt_fancy_header_bg_position_y", "bottom");
INSERT INTO `wp_postmeta` VALUES("4511", "12799", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("4512", "12799", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("4513", "12799", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("4514", "12799", "_dt_fancy_header_height", "400");
INSERT INTO `wp_postmeta` VALUES("4515", "12799", "_dt_slideshow_hide_captions", "1");
INSERT INTO `wp_postmeta` VALUES("5054", "12818", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("5055", "12818", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("5056", "12818", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("5057", "12818", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("5058", "12818", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("5059", "12818", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("5060", "12818", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("5061", "12818", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("5062", "12818", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("5063", "12818", "_dt_header_title", "disabled");
INSERT INTO `wp_postmeta` VALUES("5064", "12818", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("5065", "12818", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("5066", "12818", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("5067", "12818", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("5068", "12818", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("5069", "12818", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("5070", "12818", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("5071", "12818", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("5072", "12818", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("5073", "12818", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("5074", "12818", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("5075", "12818", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("5076", "12818", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("5077", "12818", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("5078", "12818", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("5079", "12818", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("5080", "12818", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("5081", "12818", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("5082", "12818", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("5083", "12818", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("5084", "12818", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("5085", "12818", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("5086", "12818", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("5087", "12818", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("5088", "12818", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("5089", "12818", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("5090", "12818", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("5091", "12820", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("5092", "12820", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("5093", "12820", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("5094", "12820", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("5095", "12820", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("5096", "12820", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("5097", "12820", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("5098", "12820", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("5099", "12820", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("5100", "12820", "_dt_header_title", "disabled");
INSERT INTO `wp_postmeta` VALUES("5101", "12820", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("5102", "12820", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("5103", "12820", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("5104", "12820", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("5105", "12820", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("5106", "12820", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("5107", "12820", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("5108", "12820", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("5109", "12820", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("5110", "12820", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("5111", "12820", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("5112", "12820", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("5113", "12820", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("5114", "12820", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("5115", "12820", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("5116", "12820", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("5117", "12820", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("5118", "12820", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("5119", "12820", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("5120", "12820", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("5121", "12820", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("5122", "12820", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("5123", "12820", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("5124", "12820", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("5125", "12820", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("5126", "12820", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("5127", "12820", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("5762", "12826", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("5763", "12826", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("5764", "12826", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("5765", "12826", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("5766", "12826", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("5767", "12826", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("5768", "12826", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("5769", "12826", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("5770", "12826", "_dt_footer_show", "0");
INSERT INTO `wp_postmeta` VALUES("5771", "12826", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("5772", "12826", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("5773", "12826", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("5774", "12826", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("5775", "12826", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("5776", "12826", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("5777", "12826", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("5778", "12826", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("5779", "12826", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("5780", "12826", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("5781", "12826", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("5782", "12826", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("5783", "12826", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("5784", "12826", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("5785", "12826", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("5786", "12826", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("5787", "12826", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("5788", "12826", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("5789", "12826", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("5790", "12826", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("5791", "12826", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("5792", "12826", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("5793", "12826", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("5794", "12826", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("5795", "12826", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("5796", "12826", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("5797", "12826", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("5798", "12826", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("6287", "12966", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("6288", "12966", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("6289", "12966", "_menu_item_object_id", "12957");
INSERT INTO `wp_postmeta` VALUES("6290", "12966", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("6291", "12966", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("6292", "12966", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6293", "12966", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("6294", "12966", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("6295", "12966", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("6296", "12966", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("6297", "12966", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("6298", "12966", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("6299", "12966", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("6300", "12966", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("6357", "12971", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("6358", "12971", "_menu_item_menu_item_parent", "12978");
INSERT INTO `wp_postmeta` VALUES("6359", "12971", "_menu_item_object_id", "12820");
INSERT INTO `wp_postmeta` VALUES("6360", "12971", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("6361", "12971", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("6362", "12971", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6363", "12971", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("6364", "12971", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("6365", "12971", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("6366", "12971", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("6367", "12971", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("6368", "12971", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("6369", "12971", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("6370", "12971", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("6371", "12972", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("6372", "12972", "_menu_item_menu_item_parent", "12978");
INSERT INTO `wp_postmeta` VALUES("6373", "12972", "_menu_item_object_id", "12818");
INSERT INTO `wp_postmeta` VALUES("6374", "12972", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("6375", "12972", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("6376", "12972", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6377", "12972", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("6378", "12972", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("6379", "12972", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("6380", "12972", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("6381", "12972", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("6382", "12972", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("6383", "12972", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("6384", "12972", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("6553", "12985", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("6554", "12985", "_menu_item_menu_item_parent", "12988");
INSERT INTO `wp_postmeta` VALUES("6555", "12985", "_menu_item_object_id", "12799");
INSERT INTO `wp_postmeta` VALUES("6556", "12985", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("6557", "12985", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("6558", "12985", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6559", "12985", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("6560", "12985", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("6561", "12985", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("6562", "12985", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("6563", "12985", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("6564", "12985", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("6565", "12985", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("6566", "12985", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("6567", "12986", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("6568", "12986", "_menu_item_menu_item_parent", "12988");
INSERT INTO `wp_postmeta` VALUES("6569", "12986", "_menu_item_object_id", "12797");
INSERT INTO `wp_postmeta` VALUES("6570", "12986", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("6571", "12986", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("6572", "12986", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6573", "12986", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("6574", "12986", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("6575", "12986", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("6576", "12986", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("6577", "12986", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("6578", "12986", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("6579", "12986", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("6580", "12986", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("6581", "12987", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("6582", "12987", "_menu_item_menu_item_parent", "12988");
INSERT INTO `wp_postmeta` VALUES("6583", "12987", "_menu_item_object_id", "12796");
INSERT INTO `wp_postmeta` VALUES("6584", "12987", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("6585", "12987", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("6586", "12987", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6587", "12987", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("6588", "12987", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("6589", "12987", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("6590", "12987", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("6591", "12987", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("6592", "12987", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("6593", "12987", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("6594", "12987", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("6595", "12988", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("6596", "12988", "_menu_item_menu_item_parent", "12963");
INSERT INTO `wp_postmeta` VALUES("6597", "12988", "_menu_item_object_id", "12790");
INSERT INTO `wp_postmeta` VALUES("6598", "12988", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("6599", "12988", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("6600", "12988", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6601", "12988", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("6602", "12988", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("6603", "12988", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("6604", "12988", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("6605", "12988", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("6606", "12988", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("6607", "12988", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("6608", "12988", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("6625", "12649", "_edit_lock", "1404835978:2");
INSERT INTO `wp_postmeta` VALUES("6941", "12797", "_edit_lock", "1498332555:6");
INSERT INTO `wp_postmeta` VALUES("6942", "12797", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6943", "12799", "_edit_lock", "1527453782:10");
INSERT INTO `wp_postmeta` VALUES("6944", "848", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("6945", "848", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("6946", "848", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("6947", "848", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("6948", "848", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("6949", "848", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("6950", "848", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("6951", "848", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("6952", "848", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("6953", "848", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("6954", "848", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("6955", "848", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("6956", "848", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("6957", "848", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"400\";}");
INSERT INTO `wp_postmeta` VALUES("6958", "848", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("6959", "848", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("6960", "848", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("6961", "848", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("6962", "848", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("6963", "848", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("6964", "848", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("6965", "848", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("6966", "848", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("6967", "848", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("6968", "848", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("6969", "848", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("6970", "848", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("6971", "848", "_dt_fancy_header_bg_image", "a:1:{i:0;i:13186;}");
INSERT INTO `wp_postmeta` VALUES("6972", "848", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("6973", "848", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("6974", "848", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("6975", "848", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("6976", "848", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("6977", "848", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("6978", "848", "_dt_fancy_header_height", "200");
INSERT INTO `wp_postmeta` VALUES("7084", "12799", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("7558", "5", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("7559", "5", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("7560", "5", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("7561", "5", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("7562", "5", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("7563", "5", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("7564", "5", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("7565", "5", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("7566", "5", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("7567", "5", "_dt_slideshow_mode", "");
INSERT INTO `wp_postmeta` VALUES("7568", "5", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("7569", "5", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("7570", "5", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("7571", "5", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("7572", "5", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("7573", "5", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("7574", "5", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("7575", "5", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("7576", "5", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("7577", "5", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("7578", "5", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("7579", "5", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("7580", "5", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("7581", "5", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("7582", "5", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("7583", "5", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("7584", "5", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("7585", "5", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("7586", "5", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("7587", "5", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("7588", "5", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("7589", "5", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("7590", "5", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("7591", "5", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("7592", "5", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("7635", "13061", "_edit_lock", "1404846579:1");
INSERT INTO `wp_postmeta` VALUES("7636", "13061", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7637", "13061", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("7638", "13061", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("7639", "13061", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("7640", "13061", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("7641", "13061", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("7642", "13061", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("7643", "13061", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("7644", "13061", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("7645", "13061", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("7646", "13061", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("7647", "13061", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("7648", "13061", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("7649", "13061", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("7650", "13061", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("7651", "13061", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("7652", "13061", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("7653", "13061", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("7654", "13061", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("7655", "13061", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("7656", "13061", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("7657", "13061", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("7658", "13061", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("7659", "13061", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("7660", "13061", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("7661", "13061", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("7662", "13061", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("7663", "13061", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("7664", "13061", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("7665", "13061", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("7666", "13061", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("7667", "13061", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("7668", "13061", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("7669", "13061", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("7670", "13061", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("7671", "13061", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("7672", "13061", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("7673", "13063", "_wp_attached_file", "2014/07/Enneagram-October-24-2014-workshop.pdf");
INSERT INTO `wp_postmeta` VALUES("7674", "13063", "_edit_lock", "1406552413:1");
INSERT INTO `wp_postmeta` VALUES("7675", "13063", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7676", "13063", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("7677", "13064", "_edit_lock", "1404848025:1");
INSERT INTO `wp_postmeta` VALUES("7678", "13064", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7679", "13068", "_wp_attached_file", "2014/07/smalllogo.jpg");
INSERT INTO `wp_postmeta` VALUES("7680", "13068", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:232;s:6:\"height\";i:115;s:4:\"file\";s:21:\"2014/07/smalllogo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"smalllogo-150x115.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:115;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("7681", "13069", "_wp_attached_file", "2014/07/smallpng.png");
INSERT INTO `wp_postmeta` VALUES("7682", "13069", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:89;s:4:\"file\";s:20:\"2014/07/smallpng.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"smallpng-150x89.png\";s:5:\"width\";i:150;s:6:\"height\";i:89;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("7683", "60", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("7684", "60", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("7685", "60", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("7686", "60", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("7687", "60", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("7688", "60", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("7689", "60", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("7690", "60", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("7691", "60", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("7692", "60", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("7693", "60", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("7694", "60", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("7695", "60", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("7696", "60", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("7697", "60", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("7698", "60", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("7699", "60", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("7700", "60", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("7701", "60", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("7702", "60", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("7703", "60", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("7704", "60", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("7705", "60", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("7706", "60", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("7707", "60", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("7708", "60", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("7709", "60", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("7710", "60", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("7711", "60", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("7712", "60", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("7713", "60", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("7714", "60", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("7715", "60", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("7716", "60", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("7717", "60", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("7720", "13071", "_edit_lock", "1407957799:1");
INSERT INTO `wp_postmeta` VALUES("7721", "13071", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7743", "13048", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7744", "13048", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7745", "13048", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7746", "13048", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7747", "13048", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7748", "13048", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7749", "13048", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7750", "13048", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7751", "13048", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7752", "13048", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7753", "13048", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7754", "13048", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7755", "12991", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7756", "12991", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7757", "12991", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7758", "12991", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7759", "12991", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7760", "12991", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("7761", "12991", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7762", "12991", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7763", "12991", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7764", "12991", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7765", "12991", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7766", "12991", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7788", "13002", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7789", "13002", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7790", "13002", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7791", "13002", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7792", "13002", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7793", "13002", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7794", "13002", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7795", "13002", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7796", "13002", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7797", "13002", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7798", "13002", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7799", "13002", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7800", "13017", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7801", "13017", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7802", "13017", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7803", "13017", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7804", "13017", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7805", "13017", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7806", "13017", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7807", "13017", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7808", "13016", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7809", "13016", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7810", "13016", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7811", "13016", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7812", "13016", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7813", "13016", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7814", "13016", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7815", "13016", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7816", "13016", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7817", "13016", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7818", "13016", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7819", "13016", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7820", "13004", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7821", "13004", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7822", "13004", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7823", "13004", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7824", "13004", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7825", "13004", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7826", "13004", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7827", "13004", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7828", "13004", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7829", "13004", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7830", "13004", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7831", "13004", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7832", "13003", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7833", "13003", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7834", "13003", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7835", "13003", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7836", "13003", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7837", "13003", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7838", "13003", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7839", "13003", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7840", "13003", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7841", "13003", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7842", "13003", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7843", "13003", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7844", "13014", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7845", "13014", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7846", "13014", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7847", "13014", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7848", "13014", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7849", "13014", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7850", "13014", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7851", "13014", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7852", "13014", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7853", "13014", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7854", "13014", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7855", "13014", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7856", "13015", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7857", "13015", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7858", "13015", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7859", "13015", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7860", "13015", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7861", "13015", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7862", "13015", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7863", "13015", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7864", "13015", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7865", "13015", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7866", "13015", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7867", "13015", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7868", "13013", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7869", "13013", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7870", "13013", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7871", "13013", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7872", "13013", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7873", "13013", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7874", "13013", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7875", "13013", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7876", "13013", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7877", "13013", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7878", "13013", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7879", "13013", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7880", "12999", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7881", "12999", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7882", "12999", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7883", "12999", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7884", "12999", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7885", "12999", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7886", "12999", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7887", "12999", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7888", "12999", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7889", "12999", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7890", "12999", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7891", "12999", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7892", "12998", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7893", "12998", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7894", "12998", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7895", "12998", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7896", "12998", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7897", "12998", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7898", "12998", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7899", "12998", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7900", "12998", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7901", "12998", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7902", "12998", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7903", "12998", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7904", "13000", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7905", "13000", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7906", "13000", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7907", "13000", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7908", "13000", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7909", "13000", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7910", "13000", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7911", "13000", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7912", "13000", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7913", "13000", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7914", "13000", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7915", "13000", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7916", "13022", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7917", "13022", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7918", "13022", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7919", "13022", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7920", "13022", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7921", "13022", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("7922", "13022", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7923", "13022", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7924", "13022", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7925", "13022", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7926", "13022", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7927", "13022", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7928", "13001", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7929", "13001", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7930", "13001", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7931", "13001", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7932", "13001", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7933", "13001", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7934", "13001", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7935", "13001", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7936", "13001", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7937", "13001", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7938", "13001", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7939", "13001", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7940", "13024", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7941", "13024", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7942", "13024", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7943", "13024", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7944", "13024", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7945", "13024", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7946", "13024", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7947", "13024", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7948", "13024", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7949", "13024", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7950", "13024", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7951", "13024", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7952", "13032", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7953", "13032", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7954", "13032", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7955", "13032", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7956", "13032", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7957", "13032", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7958", "13032", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7959", "13032", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7960", "13032", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7961", "13032", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7962", "13032", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7963", "13032", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7964", "13023", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7965", "13023", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7966", "13023", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7967", "13023", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7968", "13023", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7969", "13023", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7970", "13023", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7971", "13023", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7972", "13023", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7973", "13023", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7974", "13023", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7975", "13023", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7976", "13035", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7977", "13035", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7978", "13035", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7979", "13035", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7980", "13035", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7981", "13035", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("7982", "13035", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7983", "13035", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7984", "13035", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7985", "13035", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7986", "13035", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7987", "13035", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("7988", "13037", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("7989", "13037", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("7990", "13037", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("7991", "13037", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("7992", "13037", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("7993", "13037", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("7994", "13037", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("7995", "13037", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("7996", "13037", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("7997", "13037", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("7998", "13037", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("7999", "13037", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8000", "13038", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("8001", "13038", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("8002", "13038", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8003", "13038", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8004", "13038", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8005", "13038", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("8006", "13038", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("8007", "13038", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("8008", "13038", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("8009", "13038", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("8010", "13038", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("8011", "13038", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8012", "13039", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("8013", "13039", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("8014", "13039", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8015", "13039", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8016", "13039", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8017", "13039", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("8018", "13039", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("8019", "13039", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("8020", "13039", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("8021", "13039", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("8022", "13039", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("8023", "13039", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8024", "13040", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("8025", "13040", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("8026", "13040", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8027", "13040", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8028", "13040", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8029", "13040", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("8030", "13040", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("8031", "13040", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("8032", "13040", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("8033", "13040", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("8034", "13040", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("8035", "13040", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8036", "13043", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("8037", "13043", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("8038", "13043", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8039", "13043", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8040", "13043", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8041", "13043", "_menu_item_dt_mega_menu_enabled", "");
INSERT INTO `wp_postmeta` VALUES("8042", "13043", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("8043", "13043", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("8044", "13043", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("8045", "13043", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("8046", "13043", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("8047", "13043", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8048", "13044", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("8049", "13044", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("8050", "13044", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8051", "13044", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8052", "13044", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8053", "13044", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("8054", "13044", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("8055", "13044", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("8056", "13044", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("8057", "13044", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("8058", "13044", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("8059", "13044", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8060", "13046", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("8061", "13046", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("8062", "13046", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8063", "13046", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8064", "13046", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8065", "13046", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("8066", "13046", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("8067", "13046", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("8068", "13046", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("8069", "13046", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("8070", "13046", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("8071", "13046", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8072", "13045", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("8073", "13045", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("8074", "13045", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8075", "13045", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8076", "13045", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8077", "13045", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("8078", "13045", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("8079", "13045", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("8080", "13045", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("8081", "13045", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("8082", "13045", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("8083", "13045", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8084", "13050", "_menu_item_dt_mega_menu_icon", "none");
INSERT INTO `wp_postmeta` VALUES("8085", "13050", "_menu_item_dt_mega_menu_iconfont", "");
INSERT INTO `wp_postmeta` VALUES("8086", "13050", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8087", "13050", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8088", "13050", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8089", "13050", "_menu_item_dt_mega_menu_enabled", "1");
INSERT INTO `wp_postmeta` VALUES("8090", "13050", "_menu_item_dt_mega_menu_fullwidth", "");
INSERT INTO `wp_postmeta` VALUES("8091", "13050", "_menu_item_dt_mega_menu_columns", "3");
INSERT INTO `wp_postmeta` VALUES("8092", "13050", "_menu_item_dt_mega_menu_hide_title", "");
INSERT INTO `wp_postmeta` VALUES("8093", "13050", "_menu_item_dt_mega_menu_remove_link", "");
INSERT INTO `wp_postmeta` VALUES("8094", "13050", "_menu_item_dt_mega_menu_new_row", "");
INSERT INTO `wp_postmeta` VALUES("8095", "13050", "_menu_item_dt_mega_menu_new_column", "");
INSERT INTO `wp_postmeta` VALUES("8141", "13077", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8142", "13077", "_menu_item_menu_item_parent", "15469");
INSERT INTO `wp_postmeta` VALUES("8143", "13077", "_menu_item_object_id", "24");
INSERT INTO `wp_postmeta` VALUES("8144", "13077", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8145", "13077", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8146", "13077", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8147", "13077", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8148", "13077", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8186", "13080", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8187", "13080", "_menu_item_menu_item_parent", "15469");
INSERT INTO `wp_postmeta` VALUES("8188", "13080", "_menu_item_object_id", "74");
INSERT INTO `wp_postmeta` VALUES("8189", "13080", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8190", "13080", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8191", "13080", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8192", "13080", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8193", "13080", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8216", "13082", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8217", "13082", "_menu_item_menu_item_parent", "13105");
INSERT INTO `wp_postmeta` VALUES("8218", "13082", "_menu_item_object_id", "35");
INSERT INTO `wp_postmeta` VALUES("8219", "13082", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8220", "13082", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8221", "13082", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8222", "13082", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8223", "13082", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8231", "13083", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8232", "13083", "_menu_item_menu_item_parent", "13105");
INSERT INTO `wp_postmeta` VALUES("8233", "13083", "_menu_item_object_id", "54");
INSERT INTO `wp_postmeta` VALUES("8234", "13083", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8235", "13083", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8236", "13083", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8237", "13083", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8238", "13083", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8246", "13084", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8247", "13084", "_menu_item_menu_item_parent", "15469");
INSERT INTO `wp_postmeta` VALUES("8248", "13084", "_menu_item_object_id", "60");
INSERT INTO `wp_postmeta` VALUES("8249", "13084", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8250", "13084", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8251", "13084", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8252", "13084", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8253", "13084", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8515", "13077", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8516", "13077", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8517", "13077", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8533", "13080", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8534", "13080", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8535", "13080", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8545", "13082", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8546", "13082", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8547", "13082", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8551", "13083", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8552", "13083", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8553", "13083", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8557", "13084", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8558", "13084", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8559", "13084", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8657", "13101", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8658", "13101", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("8659", "13101", "_menu_item_object_id", "11");
INSERT INTO `wp_postmeta` VALUES("8660", "13101", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8661", "13101", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8662", "13101", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8663", "13101", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8664", "13101", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8717", "13105", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8718", "13105", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("8719", "13105", "_menu_item_object_id", "5");
INSERT INTO `wp_postmeta` VALUES("8720", "13105", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8721", "13105", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8722", "13105", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8723", "13105", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8724", "13105", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8734", "13105", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8735", "13105", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8736", "13105", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8740", "13101", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8741", "13101", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8742", "13101", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8762", "13106", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8763", "13106", "_menu_item_menu_item_parent", "13105");
INSERT INTO `wp_postmeta` VALUES("8764", "13106", "_menu_item_object_id", "64");
INSERT INTO `wp_postmeta` VALUES("8765", "13106", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8766", "13106", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8767", "13106", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8768", "13106", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8769", "13106", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8794", "13106", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8795", "13106", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8796", "13106", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8804", "13108", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8805", "13108", "_menu_item_menu_item_parent", "13101");
INSERT INTO `wp_postmeta` VALUES("8806", "13108", "_menu_item_object_id", "303");
INSERT INTO `wp_postmeta` VALUES("8807", "13108", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8808", "13108", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8809", "13108", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8810", "13108", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8811", "13108", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8821", "13108", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8822", "13108", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8823", "13108", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8870", "13112", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8871", "13112", "_menu_item_menu_item_parent", "13101");
INSERT INTO `wp_postmeta` VALUES("8872", "13112", "_menu_item_object_id", "11");
INSERT INTO `wp_postmeta` VALUES("8873", "13112", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8874", "13112", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8875", "13112", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8876", "13112", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8877", "13112", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8887", "13112", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8888", "13112", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8889", "13112", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8903", "13113", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("8904", "13113", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("8905", "13113", "_menu_item_object_id", "12799");
INSERT INTO `wp_postmeta` VALUES("8906", "13113", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("8907", "13113", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("8908", "13113", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8909", "13113", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("8910", "13113", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("8920", "13113", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("8921", "13113", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("8922", "13113", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("8924", "24", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("8925", "24", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("8926", "24", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8927", "24", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("8928", "24", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("8929", "24", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("8930", "24", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("8931", "24", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("8932", "24", "_dt_header_background", "transparent");
INSERT INTO `wp_postmeta` VALUES("8933", "24", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("8934", "24", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("8935", "24", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("8936", "24", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("8937", "24", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("8938", "24", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("8939", "24", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("8940", "24", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("8941", "24", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("8942", "24", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("8943", "24", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("8944", "24", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("8945", "24", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("8946", "24", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("8947", "24", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("8948", "24", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("8949", "24", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("8950", "24", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("8951", "24", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("8952", "24", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("8953", "24", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("8954", "24", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("8955", "24", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("8956", "24", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("8957", "24", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("8958", "24", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("8959", "284", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("8960", "284", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("8961", "284", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8962", "284", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("8963", "284", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("8964", "284", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("8965", "284", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("8966", "284", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("8967", "284", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("8968", "284", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("8969", "284", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("8970", "284", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("8971", "284", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("8972", "284", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("8973", "284", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("8974", "284", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("8975", "284", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("8976", "284", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("8977", "284", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("8978", "284", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("8979", "284", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("8980", "284", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("8981", "284", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("8982", "284", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("8983", "284", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("8984", "284", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("8985", "284", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("8986", "284", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("8987", "284", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("8988", "284", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("8989", "284", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("8990", "284", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("8991", "284", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("8992", "284", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("8993", "284", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9050", "11", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9051", "11", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9052", "11", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9053", "11", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("9054", "11", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9055", "11", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9056", "11", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9057", "11", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9058", "11", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9059", "11", "_dt_slideshow_mode", "");
INSERT INTO `wp_postmeta` VALUES("9060", "11", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9061", "11", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9062", "11", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9063", "11", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9064", "11", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9065", "11", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9066", "11", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9067", "11", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9068", "11", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9069", "11", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9070", "11", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9071", "11", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9072", "11", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9073", "11", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9074", "11", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9075", "11", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9076", "11", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9077", "11", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9078", "11", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9079", "11", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9080", "11", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9081", "11", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9082", "11", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9083", "11", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9084", "11", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9087", "326", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9088", "326", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9089", "326", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9090", "326", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("9091", "326", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9092", "326", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9093", "326", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9094", "326", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9095", "326", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9096", "326", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9097", "326", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9098", "326", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9099", "326", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9100", "326", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9101", "326", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9102", "326", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9103", "326", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9104", "326", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9105", "326", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9106", "326", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9107", "326", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9108", "326", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9109", "326", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9110", "326", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9111", "326", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9112", "326", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9113", "326", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9114", "326", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9115", "326", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9116", "326", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9117", "326", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9118", "326", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9119", "326", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9120", "326", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9121", "326", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9197", "88", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9198", "88", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9199", "88", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9200", "88", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("9201", "88", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9202", "88", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9203", "88", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9204", "88", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9205", "88", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9206", "88", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9207", "88", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9208", "88", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9209", "88", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9210", "88", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9211", "88", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9212", "88", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9213", "88", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9214", "88", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9215", "88", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9216", "88", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9217", "88", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9218", "88", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9219", "88", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9220", "88", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9221", "88", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9222", "88", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9223", "88", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9224", "88", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9225", "88", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9226", "88", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9227", "88", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9228", "88", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9229", "88", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9230", "88", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9231", "88", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9253", "13132", "_edit_lock", "1487790344:1");
INSERT INTO `wp_postmeta` VALUES("9254", "13132", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("9256", "13132", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("9257", "13132", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9258", "13132", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("9259", "13132", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9260", "13132", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("9261", "13132", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9262", "13132", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9263", "13132", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9264", "13132", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9265", "13132", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9266", "13132", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9267", "13132", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9268", "13132", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9269", "13132", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9270", "13132", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9271", "13132", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9272", "13132", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9273", "13132", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9274", "13132", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9275", "13132", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9276", "13132", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9277", "13132", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9278", "13132", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9279", "13132", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9280", "13132", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9281", "13132", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9282", "13132", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9283", "13132", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9284", "13132", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9285", "13132", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9286", "13132", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9287", "13132", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9288", "13132", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9289", "13132", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9290", "13132", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9291", "13132", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9315", "13068", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("9372", "13145", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("9373", "13145", "_menu_item_menu_item_parent", "15469");
INSERT INTO `wp_postmeta` VALUES("9374", "13145", "_menu_item_object_id", "848");
INSERT INTO `wp_postmeta` VALUES("9375", "13145", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("9376", "13145", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("9377", "13145", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9378", "13145", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("9379", "13145", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("9389", "13145", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("9390", "13145", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("9391", "13145", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("9409", "191", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9410", "191", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9411", "191", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9412", "191", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("9413", "191", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9414", "191", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9415", "191", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9416", "191", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9417", "191", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9418", "191", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9419", "191", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9420", "191", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9421", "191", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9422", "191", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9423", "191", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9424", "191", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9425", "191", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9426", "191", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9427", "191", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9428", "191", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9429", "191", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9430", "191", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9431", "191", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9432", "191", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9433", "191", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9434", "191", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9435", "191", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9436", "191", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9437", "191", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9438", "191", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9439", "191", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9440", "191", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9441", "191", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9442", "191", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9443", "191", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9444", "13153", "_wp_attached_file", "2014/07/Burnout-GENERAL-info-poster-2014.docx");
INSERT INTO `wp_postmeta` VALUES("9445", "13153", "_edit_lock", "1405355602:1");
INSERT INTO `wp_postmeta` VALUES("9446", "13153", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("9447", "13153", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("9448", "13155", "_wp_attached_file", "2014/07/Caregiver-Burnout-Poster-October-18-2014.doc");
INSERT INTO `wp_postmeta` VALUES("9449", "13155", "_edit_lock", "1405360010:1");
INSERT INTO `wp_postmeta` VALUES("9450", "13155", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("9451", "13155", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("9527", "74", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9528", "74", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9529", "74", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9530", "74", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("9531", "74", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9532", "74", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9533", "74", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9534", "74", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9535", "74", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9536", "74", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9537", "74", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9538", "74", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9539", "74", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9540", "74", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9541", "74", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9542", "74", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9543", "74", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9544", "74", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9545", "74", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9546", "74", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9547", "74", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9548", "74", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9549", "74", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9550", "74", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9551", "74", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9552", "74", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9553", "74", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9554", "74", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9555", "74", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9556", "74", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9557", "74", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9558", "74", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9559", "74", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9560", "74", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9561", "74", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9562", "13173", "_wp_attached_file", "2014/07/General-Marriage-Prep-poster-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("9563", "13173", "_edit_lock", "1405360315:1");
INSERT INTO `wp_postmeta` VALUES("9564", "13173", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("9565", "13173", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("9566", "187", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9567", "187", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9568", "187", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9569", "187", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("9570", "187", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9571", "187", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9572", "187", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9573", "187", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9574", "187", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9575", "187", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9576", "187", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9577", "187", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9578", "187", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9579", "187", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9580", "187", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9581", "187", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9582", "187", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9583", "187", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9584", "187", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9585", "187", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9586", "187", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9587", "187", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9588", "187", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9589", "187", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9590", "187", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9591", "187", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9592", "187", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9593", "187", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9594", "187", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9595", "187", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9596", "187", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9597", "187", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9598", "187", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9599", "187", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9600", "187", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9639", "35", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("9640", "35", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9641", "35", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9642", "35", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("9643", "35", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9644", "35", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9645", "35", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9646", "35", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9647", "35", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9648", "35", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9650", "35", "_dt_slideshow_3d_layout", "prop-fullwidth");
INSERT INTO `wp_postmeta` VALUES("9651", "35", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9652", "35", "_dt_slideshow_layout", "fixed");
INSERT INTO `wp_postmeta` VALUES("9653", "35", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9654", "35", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9655", "35", "_dt_slideshow_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("9656", "35", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9657", "35", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9658", "35", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9659", "35", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9660", "35", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9661", "35", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9662", "35", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9663", "35", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9664", "35", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9665", "35", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9666", "35", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9667", "35", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9668", "35", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9669", "35", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9670", "35", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9671", "35", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9672", "35", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9673", "35", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9674", "35", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9737", "848", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("9738", "848", "_dt_content_position", "after_items");
INSERT INTO `wp_postmeta` VALUES("9739", "848", "_dt_portfolio_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("9740", "848", "_dt_portfolio_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("9741", "848", "_dt_portfolio_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("9742", "848", "_dt_portfolio_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("9743", "848", "_dt_portfolio_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("9744", "848", "_dt_portfolio_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("9745", "848", "_dt_portfolio_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("9746", "848", "_dt_portfolio_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("9747", "848", "_dt_portfolio_options_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("9748", "848", "_dt_portfolio_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("9749", "848", "_dt_portfolio_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("9750", "848", "_dt_portfolio_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9751", "848", "_dt_portfolio_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9752", "848", "_dt_portfolio_options_jgrid_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("9753", "848", "_dt_portfolio_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("9754", "848", "_dt_portfolio_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("9755", "848", "_dt_portfolio_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9756", "848", "_dt_portfolio_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("9757", "848", "_dt_portfolio_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("9758", "848", "_dt_portfolio_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("9759", "848", "_dt_portfolio_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("9760", "848", "_dt_portfolio_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("9761", "848", "_dt_portfolio_options_show_titles", "0");
INSERT INTO `wp_postmeta` VALUES("9762", "848", "_dt_portfolio_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("9763", "848", "_dt_portfolio_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("9764", "848", "_dt_portfolio_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("9765", "848", "_dt_portfolio_options_show_links", "1");
INSERT INTO `wp_postmeta` VALUES("9766", "848", "_dt_portfolio_options_show_zoom", "1");
INSERT INTO `wp_postmeta` VALUES("9767", "848", "_dt_portfolio_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("9768", "848", "_dt_portfolio_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("9769", "848", "_dt_portfolio_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("9770", "848", "_dt_portfolio_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("9771", "848", "_dt_portfolio_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("9772", "172", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9773", "172", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9774", "172", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9775", "172", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("9776", "172", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9777", "172", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9778", "172", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9779", "172", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9780", "172", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9781", "172", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9782", "172", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9783", "172", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9784", "172", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9785", "172", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9786", "172", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9787", "172", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9788", "172", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9789", "172", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9790", "172", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9791", "172", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9792", "172", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9793", "172", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9794", "172", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9795", "172", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9796", "172", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9797", "172", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9798", "172", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9799", "172", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9800", "172", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9801", "172", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9802", "172", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9803", "172", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9804", "172", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9805", "172", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9806", "172", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9872", "848", "_dt_albums_media_display", "a:4:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:4:\"only\";s:9:\"posts_ids\";a:1:{i:13379;s:5:\"13379\";}s:9:\"terms_ids\";a:1:{i:58;s:2:\"58\";}}");
INSERT INTO `wp_postmeta` VALUES("9873", "848", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("9874", "848", "_dt_media_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("9875", "848", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("9876", "848", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("9877", "848", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("9878", "848", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("9879", "848", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("9880", "848", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("9881", "848", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9882", "848", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9883", "848", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("9884", "848", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("9885", "848", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9886", "848", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("9887", "848", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("9888", "848", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("9889", "848", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("9890", "848", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("9891", "848", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("9892", "848", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("9893", "848", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("9894", "848", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("9897", "848", "_dt_albums_display", "a:3:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:4:\"only\";s:9:\"posts_ids\";a:1:{i:13208;s:5:\"13208\";}}");
INSERT INTO `wp_postmeta` VALUES("9898", "848", "_dt_albums_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("9899", "848", "_dt_albums_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("9900", "848", "_dt_albums_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("9901", "848", "_dt_albums_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("9902", "848", "_dt_albums_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("9903", "848", "_dt_albums_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("9904", "848", "_dt_albums_options_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("9905", "848", "_dt_albums_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("9906", "848", "_dt_albums_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("9907", "848", "_dt_albums_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9908", "848", "_dt_albums_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("9909", "848", "_dt_albums_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("9910", "848", "_dt_albums_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9911", "848", "_dt_albums_options_jgrid_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("9912", "848", "_dt_albums_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("9913", "848", "_dt_albums_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("9914", "848", "_dt_albums_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("9915", "848", "_dt_albums_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("9916", "848", "_dt_albums_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("9917", "848", "_dt_albums_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("9918", "848", "_dt_albums_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("9919", "848", "_dt_albums_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("9920", "848", "_dt_albums_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("9921", "848", "_dt_albums_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("9922", "848", "_dt_albums_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("9923", "848", "_dt_albums_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("9924", "848", "_dt_albums_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("9925", "848", "_dt_albums_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("9931", "869", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("9932", "869", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9933", "869", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9934", "869", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("9935", "869", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("9936", "869", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("9937", "869", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("9938", "869", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("9939", "869", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("9940", "869", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("9941", "869", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("9942", "869", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9943", "869", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("9944", "869", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("9945", "869", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("9946", "869", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("9947", "869", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("9948", "869", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("9949", "869", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("9950", "869", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("9951", "869", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9952", "869", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("9953", "869", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("9954", "869", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("9955", "869", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9956", "869", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("9957", "869", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("9958", "869", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("9959", "869", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("9960", "869", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("9961", "869", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("9962", "869", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("9963", "869", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("9964", "869", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("9965", "869", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("9972", "13214", "_wp_attached_file", "2013/08/smalllogo.jpg");
INSERT INTO `wp_postmeta` VALUES("9973", "13214", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:232;s:6:\"height\";i:115;s:4:\"file\";s:21:\"2013/08/smalllogo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"smalllogo-150x115.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:115;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("10080", "217", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10081", "217", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10082", "217", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10083", "217", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("10084", "217", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10085", "217", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10086", "217", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10087", "217", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10088", "217", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10089", "217", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10090", "217", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10091", "217", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10092", "217", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10093", "217", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10094", "217", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10095", "217", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10096", "217", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10097", "217", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10098", "217", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10099", "217", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10100", "217", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10101", "217", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10102", "217", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10103", "217", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10104", "217", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10105", "217", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10106", "217", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10107", "217", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10108", "217", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10109", "217", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10110", "217", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10111", "217", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10112", "217", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10113", "217", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10114", "217", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10131", "91", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10132", "91", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10133", "91", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10134", "91", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("10135", "91", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10136", "91", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10137", "91", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10138", "91", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10139", "91", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10140", "91", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10141", "91", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10142", "91", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10143", "91", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10144", "91", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10145", "91", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10146", "91", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10147", "91", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10148", "91", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10149", "91", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10150", "91", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10151", "91", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10152", "91", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10153", "91", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10154", "91", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10155", "91", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10156", "91", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10157", "91", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10158", "91", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10159", "91", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10160", "91", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10161", "91", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10162", "91", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10163", "91", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10164", "91", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10165", "91", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10168", "13245", "_wp_attached_file", "2014/07/Spiritual-Directors-poster-general-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("10169", "13245", "_edit_lock", "1405533689:1");
INSERT INTO `wp_postmeta` VALUES("10170", "13245", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("10171", "13245", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("10252", "13261", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("10253", "13261", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10254", "13261", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("10255", "13261", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10256", "13261", "_edit_lock", "1498680852:4");
INSERT INTO `wp_postmeta` VALUES("10257", "13262", "_edit_lock", "1498680955:4");
INSERT INTO `wp_postmeta` VALUES("10258", "13262", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("10259", "13262", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10260", "13262", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("10261", "13262", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10274", "13273", "_edit_lock", "1443460598:1");
INSERT INTO `wp_postmeta` VALUES("10275", "13273", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("10276", "13273", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("10277", "13273", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("10278", "13273", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("10279", "13273", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10280", "13273", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("10281", "13273", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10282", "13273", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10283", "13273", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10284", "13273", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10285", "13273", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10286", "13273", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10287", "13273", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10288", "13273", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10289", "13273", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10290", "13273", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10291", "13273", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10292", "13273", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10293", "13273", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10294", "13273", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10295", "13273", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10296", "13273", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10297", "13273", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10298", "13273", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10299", "13273", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10300", "13273", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10301", "13273", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10302", "13273", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10303", "13273", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10304", "13273", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10305", "13273", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10306", "13273", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10307", "13273", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10308", "13273", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10309", "13273", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10310", "13273", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10311", "13273", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10362", "13262", "_dt_testimonial_options_link", "http://localhost:8888/TestSICPage/wordpress/dt_testimonials/courses/");
INSERT INTO `wp_postmeta` VALUES("10363", "13261", "_dt_testimonial_options_link", "http://localhost:8888/TestSICPage/wordpress/dt_testimonials/counselling/");
INSERT INTO `wp_postmeta` VALUES("10543", "13300", "_wp_attached_file", "2014/07/Logo-small-file.jpg");
INSERT INTO `wp_postmeta` VALUES("10544", "13300", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:576;s:6:\"height\";i:308;s:4:\"file\";s:27:\"2014/07/Logo-small-file.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Logo-small-file-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:\"Logo-small-file-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("10545", "13301", "_wp_attached_file", "2014/07/Logo-small-file1.jpg");
INSERT INTO `wp_postmeta` VALUES("10546", "13301", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:96;s:4:\"file\";s:28:\"2014/07/Logo-small-file1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Logo-small-file1-150x96.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:96;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("10562", "13309", "_wp_attached_file", "2013/11/vicfoundation.jpg");
INSERT INTO `wp_postmeta` VALUES("10563", "13309", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:640;s:6:\"height\";i:81;s:4:\"file\";s:25:\"2013/11/vicfoundation.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"vicfoundation-150x81.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"vicfoundation-300x37.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:37;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("10564", "13309", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("10565", "13309", "dt-img-link", "http://www.victoriafoundation.bc.ca/");
INSERT INTO `wp_postmeta` VALUES("10566", "13309", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("10567", "13311", "_wp_attached_file", "2013/11/UnitedWayFull375x165-e1485195775455.jpg");
INSERT INTO `wp_postmeta` VALUES("10568", "13311", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:100;s:6:\"height\";i:44;s:4:\"file\";s:47:\"2013/11/UnitedWayFull375x165-e1485195775455.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"UnitedWayFull375x165-150x67.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:67;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("10569", "13311", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("10570", "13311", "dt-img-link", "http://uwgv.ca/");
INSERT INTO `wp_postmeta` VALUES("10571", "13311", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("10572", "13313", "_wp_attached_file", "2013/11/vicfound.jpg");
INSERT INTO `wp_postmeta` VALUES("10573", "13313", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:152;s:6:\"height\";i:19;s:4:\"file\";s:20:\"2013/11/vicfound.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"vicfound-150x19.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:19;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("10574", "13313", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("10575", "13313", "dt-img-link", "http://uwgv.ca/");
INSERT INTO `wp_postmeta` VALUES("10576", "13313", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("10616", "123", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10617", "123", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10618", "123", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10619", "123", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("10620", "123", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10621", "123", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10622", "123", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10623", "123", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10624", "123", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10625", "123", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10626", "123", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10627", "123", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10628", "123", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10629", "123", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10630", "123", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10631", "123", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10632", "123", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10633", "123", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10634", "123", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10635", "123", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10636", "123", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10637", "123", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10638", "123", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10639", "123", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10640", "123", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10641", "123", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10642", "123", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10643", "123", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10644", "123", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10645", "123", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10646", "123", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10647", "123", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10648", "123", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10649", "123", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10650", "123", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10651", "123", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("10652", "123", "_dt_content_position", "after_items");
INSERT INTO `wp_postmeta` VALUES("10653", "123", "_dt_albums_display", "a:3:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:4:\"only\";s:9:\"posts_ids\";a:1:{i:13328;s:5:\"13328\";}}");
INSERT INTO `wp_postmeta` VALUES("10654", "123", "_dt_albums_options_layout", "grid");
INSERT INTO `wp_postmeta` VALUES("10655", "123", "_dt_albums_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("10656", "123", "_dt_albums_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("10657", "123", "_dt_albums_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("10658", "123", "_dt_albums_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("10659", "123", "_dt_albums_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("10660", "123", "_dt_albums_options_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("10661", "123", "_dt_albums_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("10662", "123", "_dt_albums_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("10663", "123", "_dt_albums_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10664", "123", "_dt_albums_options_posts_same_width", "1");
INSERT INTO `wp_postmeta` VALUES("10665", "123", "_dt_albums_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("10666", "123", "_dt_albums_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10667", "123", "_dt_albums_options_jgrid_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("10668", "123", "_dt_albums_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("10669", "123", "_dt_albums_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("10670", "123", "_dt_albums_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10671", "123", "_dt_albums_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("10672", "123", "_dt_albums_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("10673", "123", "_dt_albums_options_load_style", "ajax_more");
INSERT INTO `wp_postmeta` VALUES("10674", "123", "_dt_albums_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("10675", "123", "_dt_albums_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("10676", "123", "_dt_albums_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("10677", "123", "_dt_albums_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("10678", "123", "_dt_albums_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("10679", "123", "_dt_albums_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("10680", "123", "_dt_albums_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("10681", "123", "_dt_albums_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("10693", "29", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10694", "29", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10695", "29", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10696", "29", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("10697", "29", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10698", "29", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10699", "29", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10700", "29", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10701", "29", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10702", "29", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10703", "29", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10704", "29", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10705", "29", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10706", "29", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10707", "29", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10708", "29", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10709", "29", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10710", "29", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10711", "29", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10712", "29", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10713", "29", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10714", "29", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10715", "29", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10716", "29", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10717", "29", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10718", "29", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10719", "29", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10720", "29", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10721", "29", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10722", "29", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10723", "29", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10724", "29", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10725", "29", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10726", "29", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10727", "29", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10734", "123", "_dt_albums_media_display", "a:3:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:4:\"only\";s:9:\"posts_ids\";a:1:{i:13328;s:5:\"13328\";}}");
INSERT INTO `wp_postmeta` VALUES("10735", "123", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("10736", "123", "_dt_media_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("10737", "123", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("10738", "123", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("10739", "123", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("10740", "123", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("10741", "123", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("10742", "123", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("10743", "123", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10744", "123", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10745", "123", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("10746", "123", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("10747", "123", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10748", "123", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("10749", "123", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("10750", "123", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("10751", "123", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("10752", "123", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("10753", "123", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("10754", "123", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("10755", "123", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("10756", "123", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("10757", "54", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10758", "54", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10759", "54", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10760", "54", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("10761", "54", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10762", "54", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10763", "54", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10764", "54", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10765", "54", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10766", "54", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10767", "54", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10768", "54", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10769", "54", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10770", "54", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10771", "54", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10772", "54", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10773", "54", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10774", "54", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10775", "54", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10776", "54", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10777", "54", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10778", "54", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10779", "54", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10780", "54", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10781", "54", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10782", "54", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10783", "54", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10784", "54", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10785", "54", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10786", "54", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10787", "54", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10788", "54", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10789", "54", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10790", "54", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10791", "54", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10792", "64", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10793", "64", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10794", "64", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10795", "64", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("10796", "64", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10797", "64", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10798", "64", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10799", "64", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10800", "64", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10801", "64", "_dt_slideshow_mode", "");
INSERT INTO `wp_postmeta` VALUES("10802", "64", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10803", "64", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10804", "64", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10805", "64", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10806", "64", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10807", "64", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10808", "64", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10809", "64", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10810", "64", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10811", "64", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10812", "64", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10813", "64", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10814", "64", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10815", "64", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10816", "64", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10817", "64", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10818", "64", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10819", "64", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10820", "64", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10821", "64", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10822", "64", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10823", "64", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10824", "64", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10825", "64", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10826", "64", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10827", "41", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10828", "41", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10829", "41", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10830", "41", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("10831", "41", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10832", "41", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10833", "41", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10834", "41", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10835", "41", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10836", "41", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10837", "41", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10838", "41", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10839", "41", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10840", "41", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10841", "41", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10842", "41", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10843", "41", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10844", "41", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10845", "41", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10846", "41", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10847", "41", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10848", "41", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10849", "41", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10850", "41", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10851", "41", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10852", "41", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10853", "41", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10854", "41", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10855", "41", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10856", "41", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10857", "41", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10858", "41", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10859", "41", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10860", "41", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10861", "41", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10866", "303", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10867", "303", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10868", "303", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10869", "303", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("10870", "303", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10871", "303", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10872", "303", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10873", "303", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10874", "303", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10875", "303", "_dt_slideshow_mode", "");
INSERT INTO `wp_postmeta` VALUES("10876", "303", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10877", "303", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10878", "303", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10879", "303", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10880", "303", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10881", "303", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10882", "303", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10883", "303", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10884", "303", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10885", "303", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10886", "303", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10887", "303", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10888", "303", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10889", "303", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10890", "303", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10891", "303", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10892", "303", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10893", "303", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10894", "303", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10895", "303", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10896", "303", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10897", "303", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10898", "303", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10899", "303", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10900", "303", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10910", "11", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("10911", "11", "_dt_content_position", "after_items");
INSERT INTO `wp_postmeta` VALUES("10912", "11", "_dt_albums_media_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("10913", "11", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("10914", "11", "_dt_media_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("10915", "11", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("10916", "11", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("10917", "11", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("10918", "11", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("10919", "11", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("10920", "11", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("10921", "11", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10922", "11", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10923", "11", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("10924", "11", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("10925", "11", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("10926", "11", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("10927", "11", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("10928", "11", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("10929", "11", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("10930", "11", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("10931", "11", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("10932", "11", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("10933", "11", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("10934", "11", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("10935", "189", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10936", "189", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10937", "189", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10938", "189", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("10939", "189", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10940", "189", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10941", "189", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10942", "189", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10943", "189", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10944", "189", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10945", "189", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10946", "189", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10947", "189", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10948", "189", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10949", "189", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10950", "189", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10951", "189", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10952", "189", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10953", "189", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10954", "189", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10955", "189", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10956", "189", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10957", "189", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("10958", "189", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("10959", "189", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10960", "189", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("10961", "189", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("10962", "189", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("10963", "189", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("10964", "189", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("10965", "189", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("10966", "189", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("10967", "189", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("10968", "189", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("10969", "189", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("10978", "9", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10979", "9", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10980", "9", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10981", "9", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("10982", "9", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("10983", "9", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("10984", "9", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("10985", "9", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("10986", "9", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("10987", "9", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("10988", "9", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("10989", "9", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10990", "9", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("10991", "9", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("10992", "9", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("10993", "9", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("10994", "9", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("10995", "9", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("10996", "9", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("10997", "9", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("10998", "9", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("10999", "9", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11000", "9", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11001", "9", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11002", "9", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11003", "9", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11004", "9", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11005", "9", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11006", "9", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11007", "9", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11008", "9", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11009", "9", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11010", "9", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11011", "9", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11012", "9", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11016", "187", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("11017", "187", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("11018", "187", "_dt_albums_media_display", "a:3:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:4:\"only\";s:9:\"posts_ids\";a:1:{i:13361;s:5:\"13361\";}}");
INSERT INTO `wp_postmeta` VALUES("11019", "187", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("11020", "187", "_dt_media_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("11021", "187", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("11022", "187", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("11023", "187", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("11024", "187", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("11025", "187", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11026", "187", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11027", "187", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11028", "187", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11029", "187", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11030", "187", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11031", "187", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11032", "187", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("11033", "187", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("11034", "187", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("11035", "187", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("11036", "187", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("11037", "187", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("11038", "187", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("11039", "187", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("11040", "187", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("11047", "170", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11048", "170", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11049", "170", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11050", "170", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("11051", "170", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11052", "170", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11053", "170", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11054", "170", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11055", "170", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11056", "170", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11057", "170", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11058", "170", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11059", "170", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11060", "170", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11061", "170", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11062", "170", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11063", "170", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11064", "170", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11065", "170", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11066", "170", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11067", "170", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11068", "170", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11069", "170", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11070", "170", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11071", "170", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11072", "170", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11073", "170", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11074", "170", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11075", "170", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11076", "170", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11077", "170", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11078", "170", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11079", "170", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11080", "170", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11081", "170", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11087", "191", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("11088", "191", "_dt_content_position", "after_items");
INSERT INTO `wp_postmeta` VALUES("11089", "191", "_dt_albums_media_display", "a:3:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:4:\"only\";s:9:\"posts_ids\";a:1:{i:13370;s:5:\"13370\";}}");
INSERT INTO `wp_postmeta` VALUES("11090", "191", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("11091", "191", "_dt_media_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("11092", "191", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("11093", "191", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("11094", "191", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("11095", "191", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("11096", "191", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11097", "191", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11098", "191", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11099", "191", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11100", "191", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11101", "191", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11102", "191", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11103", "191", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("11104", "191", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("11105", "191", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("11106", "191", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("11107", "191", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("11108", "191", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("11109", "191", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("11110", "191", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("11111", "191", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("11114", "174", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11115", "174", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11116", "174", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11117", "174", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("11118", "174", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11119", "174", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11120", "174", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11121", "174", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11122", "174", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11123", "174", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11124", "174", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11125", "174", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11126", "174", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11127", "174", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11128", "174", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11129", "174", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11130", "174", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11131", "174", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11132", "174", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11133", "174", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11134", "174", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11135", "174", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11136", "174", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11137", "174", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11138", "174", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11139", "174", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11140", "174", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11141", "174", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11142", "174", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11143", "174", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11144", "174", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11145", "174", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11146", "174", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11147", "174", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11148", "174", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11158", "54", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("11159", "54", "_dt_content_position", "after_items");
INSERT INTO `wp_postmeta` VALUES("11160", "54", "_dt_albums_media_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("11161", "54", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("11162", "54", "_dt_media_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("11163", "54", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("11164", "54", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("11165", "54", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("11166", "54", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("11167", "54", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11168", "54", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11169", "54", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11170", "54", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11171", "54", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11172", "54", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11173", "54", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11174", "54", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("11175", "54", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("11176", "54", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("11177", "54", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("11178", "54", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("11179", "54", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("11180", "54", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("11181", "54", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("11182", "54", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("11183", "35", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("11184", "35", "_dt_content_position", "after_items");
INSERT INTO `wp_postmeta` VALUES("11185", "35", "_dt_albums_media_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("11186", "35", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("11187", "35", "_dt_media_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("11188", "35", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("11189", "35", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("11190", "35", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("11191", "35", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("11192", "35", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11193", "35", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11194", "35", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11195", "35", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11196", "35", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11197", "35", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11198", "35", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11199", "35", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("11200", "35", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("11201", "35", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("11202", "35", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("11203", "35", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("11204", "35", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("11205", "35", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("11206", "35", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("11207", "35", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("11223", "176", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11224", "176", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11225", "176", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11226", "176", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("11227", "176", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11228", "176", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11229", "176", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11230", "176", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11231", "176", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11232", "176", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11233", "176", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11234", "176", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11235", "176", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11236", "176", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11237", "176", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11238", "176", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11239", "176", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11240", "176", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11241", "176", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11242", "176", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11243", "176", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11244", "176", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11245", "176", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11246", "176", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11247", "176", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11248", "176", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11249", "176", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11250", "176", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11251", "176", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11252", "176", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11253", "176", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11254", "176", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11255", "176", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11256", "176", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11257", "176", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11258", "199", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11259", "199", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11260", "199", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11261", "199", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("11262", "199", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11263", "199", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11264", "199", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11265", "199", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11266", "199", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11267", "199", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11268", "199", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11269", "199", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11270", "199", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11271", "199", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11272", "199", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11273", "199", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11274", "199", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11275", "199", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11276", "199", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11277", "199", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11278", "199", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11279", "199", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11280", "199", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11281", "199", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11282", "199", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11283", "199", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11284", "199", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11285", "199", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11286", "199", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11287", "199", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11288", "199", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11289", "199", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11290", "199", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11291", "199", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11292", "199", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11338", "44", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11339", "44", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11340", "44", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11341", "44", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("11342", "44", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11343", "44", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11344", "44", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11345", "44", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11346", "44", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11347", "44", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11348", "44", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11349", "44", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11350", "44", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11351", "44", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11352", "44", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11353", "44", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11354", "44", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11355", "44", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11356", "44", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11357", "44", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11358", "44", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11359", "44", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11360", "44", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11361", "44", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11362", "44", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11363", "44", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11364", "44", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11365", "44", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11366", "44", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11367", "44", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11368", "44", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11369", "44", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11370", "44", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11371", "44", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11372", "44", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11373", "47", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11374", "47", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11375", "47", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11376", "47", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("11377", "47", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11378", "47", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11379", "47", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11380", "47", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11381", "47", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11382", "47", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11383", "47", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11384", "47", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11385", "47", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11386", "47", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11387", "47", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11388", "47", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11389", "47", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11390", "47", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11391", "47", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11392", "47", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11393", "47", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11394", "47", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11395", "47", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11396", "47", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11397", "47", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11398", "47", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11399", "47", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11400", "47", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11401", "47", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11402", "47", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11403", "47", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11404", "47", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11405", "47", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11406", "47", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11407", "47", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11408", "408", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11409", "408", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11410", "408", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11411", "408", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("11412", "408", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11413", "408", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11414", "408", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11415", "408", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11416", "408", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11417", "408", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11418", "408", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11419", "408", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11420", "408", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11421", "408", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11422", "408", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11423", "408", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11424", "408", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11425", "408", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11426", "408", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11427", "408", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11428", "408", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11429", "408", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11430", "408", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11431", "408", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11432", "408", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11433", "408", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11434", "408", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11435", "408", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11436", "408", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11437", "408", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11438", "408", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11439", "408", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11440", "408", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11441", "408", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11442", "408", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11446", "406", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11447", "406", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11448", "406", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11449", "406", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("11450", "406", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11451", "406", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11452", "406", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11453", "406", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11454", "406", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11455", "406", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11456", "406", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11457", "406", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11458", "406", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11459", "406", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11460", "406", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11461", "406", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11462", "406", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11463", "406", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11464", "406", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11465", "406", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11466", "406", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11467", "406", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11468", "406", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11469", "406", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11470", "406", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11471", "406", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11472", "406", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11473", "406", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11474", "406", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11475", "406", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11476", "406", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11477", "406", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11478", "406", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11479", "406", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11480", "406", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11481", "404", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11482", "404", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11483", "404", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11484", "404", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("11485", "404", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11486", "404", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11487", "404", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11488", "404", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11489", "404", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11490", "404", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11491", "404", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11492", "404", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11493", "404", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11494", "404", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11495", "404", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11496", "404", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11497", "404", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11498", "404", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11499", "404", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11500", "404", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11501", "404", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11502", "404", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11503", "404", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11504", "404", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11505", "404", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11506", "404", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11507", "404", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11508", "404", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11509", "404", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11510", "404", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11511", "404", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11512", "404", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11513", "404", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11514", "404", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11515", "404", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11516", "412", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11517", "412", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("11518", "412", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11519", "412", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("11520", "412", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11521", "412", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11522", "412", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11523", "412", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11524", "412", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11525", "412", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11526", "412", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11527", "412", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11528", "412", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11529", "412", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11530", "412", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11531", "412", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11532", "412", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11533", "412", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11534", "412", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11535", "412", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11536", "412", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11537", "412", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11538", "412", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11539", "412", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11540", "412", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11541", "412", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11542", "412", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11543", "412", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11544", "412", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11545", "412", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11546", "412", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11547", "412", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11548", "412", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11549", "412", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11550", "412", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11551", "13414", "_edit_lock", "1409608935:1");
INSERT INTO `wp_postmeta` VALUES("11552", "13414", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11553", "13414", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("11554", "13414", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11555", "13414", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("11556", "13414", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11557", "13414", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("11558", "13414", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11559", "13414", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11560", "13414", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11561", "13414", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11562", "13414", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11563", "13414", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11564", "13414", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11565", "13414", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11566", "13414", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11567", "13414", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11568", "13414", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11569", "13414", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11570", "13414", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11571", "13414", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11572", "13414", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11573", "13414", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11574", "13414", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11575", "13414", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11576", "13414", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11577", "13414", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11578", "13414", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11579", "13414", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11580", "13414", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11581", "13414", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11582", "13414", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11583", "13414", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11584", "13414", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11585", "13414", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11586", "13414", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11587", "13414", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11588", "13414", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11634", "13273", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11635", "35", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11647", "13273", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("11648", "13273", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("11649", "13273", "_dt_albums_media_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("11650", "13273", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("11651", "13273", "_dt_media_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("11652", "13273", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("11653", "13273", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("11654", "13273", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("11655", "13273", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("11656", "13273", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11657", "13273", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11658", "13273", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11659", "13273", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11660", "13273", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("11661", "13273", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("11662", "13273", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("11663", "13273", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("11664", "13273", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("11665", "13273", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("11666", "13273", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("11667", "13273", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("11668", "13273", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("11669", "13273", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("11670", "13273", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("11671", "13273", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("11672", "91", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11673", "44", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11686", "13132", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11687", "41", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11688", "47", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11689", "406", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11690", "404", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11691", "412", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11692", "88", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11693", "848", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11694", "172", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11695", "176", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11696", "13466", "_wp_attached_file", "2014/07/Burnout-General-Info-Poster-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("11697", "13466", "_edit_lock", "1406742923:1");
INSERT INTO `wp_postmeta` VALUES("11698", "13466", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11699", "13466", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11700", "191", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11701", "13468", "_wp_attached_file", "2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("11702", "13468", "_edit_lock", "1406552312:1");
INSERT INTO `wp_postmeta` VALUES("11703", "13468", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11704", "13468", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11705", "11", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11707", "24", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11709", "74", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11710", "64", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11711", "303", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11713", "123", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11714", "837", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11715", "13071", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11716", "54", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11779", "187", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11780", "13537", "_wp_attached_file", "2014/07/GL-general-poster-2012.pdf");
INSERT INTO `wp_postmeta` VALUES("11781", "13537", "_edit_lock", "1406660413:1");
INSERT INTO `wp_postmeta` VALUES("11782", "13537", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11783", "13537", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11808", "13548", "_edit_lock", "1406764860:1");
INSERT INTO `wp_postmeta` VALUES("11809", "13548", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11810", "13548", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("11811", "13548", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11812", "13548", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("11813", "13548", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11814", "13548", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11815", "13548", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("11816", "13548", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11817", "13548", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11818", "13548", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11819", "13548", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11820", "13548", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11821", "13548", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11822", "13548", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11823", "13548", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11824", "13548", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11825", "13548", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11826", "13548", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11827", "13548", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11828", "13548", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11829", "13548", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11830", "13548", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11831", "13548", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11832", "13548", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11833", "13548", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11834", "13548", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11835", "13548", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11836", "13548", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11837", "13548", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11838", "13548", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11839", "13548", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11840", "13548", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11841", "13548", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11842", "13548", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11843", "13548", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11844", "13548", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11845", "13548", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11846", "13548", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11847", "13550", "_edit_lock", "1527095128:10");
INSERT INTO `wp_postmeta` VALUES("11848", "13550", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("11849", "13550", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("11850", "13550", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11851", "13550", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("11852", "13550", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11853", "13550", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11854", "13550", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("11855", "13550", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11856", "13550", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11857", "13550", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11858", "13550", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11859", "13550", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11860", "13550", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11861", "13550", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11862", "13550", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11863", "13550", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11864", "13550", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11865", "13550", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11866", "13550", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11867", "13550", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11868", "13550", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11869", "13550", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11870", "13550", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11871", "13550", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11872", "13550", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11873", "13550", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11874", "13550", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11875", "13550", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11876", "13550", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11877", "13550", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11878", "13550", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11879", "13550", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11880", "13550", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11881", "13550", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11882", "13550", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11883", "13550", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11884", "13550", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11885", "13550", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11886", "13555", "_edit_lock", "1406740034:1");
INSERT INTO `wp_postmeta` VALUES("11887", "13555", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11888", "13555", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("11889", "13555", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("11890", "13555", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("11891", "13555", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11892", "13555", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11893", "13555", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("11894", "13555", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("11895", "13555", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("11896", "13555", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("11897", "13555", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("11898", "13555", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("11899", "13555", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("11900", "13555", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("11901", "13555", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11902", "13555", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("11903", "13555", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("11904", "13555", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("11905", "13555", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("11906", "13555", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("11907", "13555", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("11908", "13555", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("11909", "13555", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("11910", "13555", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11911", "13555", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("11912", "13555", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("11913", "13555", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("11914", "13555", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11915", "13555", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("11916", "13555", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("11917", "13555", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("11918", "13555", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("11919", "13555", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("11920", "13555", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("11921", "13555", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("11922", "13555", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("11923", "13555", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("11924", "13555", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("11925", "326", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("11926", "13567", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("11927", "13567", "_menu_item_menu_item_parent", "13101");
INSERT INTO `wp_postmeta` VALUES("11928", "13567", "_menu_item_object_id", "13550");
INSERT INTO `wp_postmeta` VALUES("11929", "13567", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("11930", "13567", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("11931", "13567", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11932", "13567", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("11933", "13567", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("11943", "13567", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("11944", "13567", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("11945", "13567", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("11968", "13577", "_wp_attached_file", "2014/02/Art-Therapy-Group-small.pdf");
INSERT INTO `wp_postmeta` VALUES("11969", "13577", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11970", "13578", "_wp_attached_file", "2014/07/GL-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("11971", "13578", "_edit_lock", "1406743869:1");
INSERT INTO `wp_postmeta` VALUES("11972", "13578", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11973", "13578", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11974", "13579", "_wp_attached_file", "2014/07/PCT-web-flyer.pdf");
INSERT INTO `wp_postmeta` VALUES("11975", "13579", "_edit_lock", "1440096185:1");
INSERT INTO `wp_postmeta` VALUES("11976", "13579", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11977", "13579", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11978", "13580", "_wp_attached_file", "2014/07/The-Enneagram-small.pdf");
INSERT INTO `wp_postmeta` VALUES("11979", "13580", "_edit_lock", "1406742428:1");
INSERT INTO `wp_postmeta` VALUES("11980", "13580", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11981", "13580", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11982", "13581", "_wp_attached_file", "2014/07/Mid-Life-Directions-web.pdf");
INSERT INTO `wp_postmeta` VALUES("11983", "13581", "_edit_lock", "1406742153:1");
INSERT INTO `wp_postmeta` VALUES("11984", "13581", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11985", "13581", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11986", "13585", "_wp_attached_file", "2014/07/CareerChoice-general-poster-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("11987", "13585", "_edit_lock", "1406741883:1");
INSERT INTO `wp_postmeta` VALUES("11988", "13585", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11989", "13585", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11990", "13577", "_edit_lock", "1406742020:1");
INSERT INTO `wp_postmeta` VALUES("11991", "13587", "_wp_attached_file", "2014/07/HPC-web-flyer.pdf");
INSERT INTO `wp_postmeta` VALUES("11992", "13587", "_edit_lock", "1406743940:1");
INSERT INTO `wp_postmeta` VALUES("11993", "13587", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11994", "13587", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11995", "13593", "_wp_attached_file", "2014/07/BSFT-flyer-2013.pdf");
INSERT INTO `wp_postmeta` VALUES("11996", "13593", "_edit_lock", "1406744349:1");
INSERT INTO `wp_postmeta` VALUES("11997", "13593", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11998", "13593", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("11999", "13594", "_wp_attached_file", "2014/07/Family-Systems-print-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("12000", "13594", "_edit_lock", "1440096020:1");
INSERT INTO `wp_postmeta` VALUES("12001", "13594", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12002", "13594", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12003", "189", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12005", "24", "_dt_content_display", "on_first_page");
INSERT INTO `wp_postmeta` VALUES("12006", "24", "_dt_content_position", "after_items");
INSERT INTO `wp_postmeta` VALUES("12007", "24", "_dt_albums_display", "a:3:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:4:\"only\";s:9:\"posts_ids\";a:1:{i:13192;s:5:\"13192\";}}");
INSERT INTO `wp_postmeta` VALUES("12008", "24", "_dt_albums_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("12009", "24", "_dt_albums_options_item_padding", "10");
INSERT INTO `wp_postmeta` VALUES("12010", "24", "_dt_albums_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("12011", "24", "_dt_albums_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("12012", "24", "_dt_albums_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("12013", "24", "_dt_albums_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("12014", "24", "_dt_albums_options_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("12015", "24", "_dt_albums_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("12016", "24", "_dt_albums_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("12017", "24", "_dt_albums_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("12018", "24", "_dt_albums_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("12019", "24", "_dt_albums_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("12020", "24", "_dt_albums_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("12021", "24", "_dt_albums_options_jgrid_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("12022", "24", "_dt_albums_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("12023", "24", "_dt_albums_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("12024", "24", "_dt_albums_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("12025", "24", "_dt_albums_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("12026", "24", "_dt_albums_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("12027", "24", "_dt_albums_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("12028", "24", "_dt_albums_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("12029", "24", "_dt_albums_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("12030", "24", "_dt_albums_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("12031", "24", "_dt_albums_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("12032", "24", "_dt_albums_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("12033", "24", "_dt_albums_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("12034", "24", "_dt_albums_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("12035", "24", "_dt_albums_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("12036", "5", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12037", "13633", "_edit_lock", "1406828776:1");
INSERT INTO `wp_postmeta` VALUES("12038", "13633", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12039", "13633", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("12040", "13633", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("12041", "13633", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("12042", "13633", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12043", "13633", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("12044", "13633", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("12045", "13633", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("12046", "13633", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("12047", "13633", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("12048", "13633", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("12049", "13633", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("12050", "13633", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("12051", "13633", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("12052", "13633", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12053", "13633", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("12054", "13633", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12055", "13633", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("12056", "13633", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("12057", "13633", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("12058", "13633", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("12059", "13633", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("12060", "13633", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("12061", "13633", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12062", "13633", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12063", "13633", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("12064", "13633", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("12065", "13633", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12066", "13633", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12067", "13633", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("12068", "13633", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("12069", "13633", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("12070", "13633", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("12071", "13633", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("12072", "13633", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("12073", "13633", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("12074", "13633", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("12075", "13633", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("12076", "217", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12077", "408", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12201", "60", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12202", "13414", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12206", "13739", "_edit_lock", "1410973348:1");
INSERT INTO `wp_postmeta` VALUES("12207", "13739", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12208", "13739", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12216", "13759", "_wp_attached_file", "2014/08/Pastoral-Counselling-Training-workshop-October-4-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("12217", "13759", "_edit_lock", "1408045980:1");
INSERT INTO `wp_postmeta` VALUES("12218", "13759", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12219", "13759", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12220", "13760", "_edit_lock", "1411669698:1");
INSERT INTO `wp_postmeta` VALUES("12221", "13760", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12222", "13760", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12223", "13766", "_wp_attached_file", "2014/08/Helping-People-Change-Oct-25-and-30-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("12224", "13766", "_edit_lock", "1410973427:1");
INSERT INTO `wp_postmeta` VALUES("12225", "13766", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12226", "13766", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12231", "13768", "_edit_lock", "1410196118:1");
INSERT INTO `wp_postmeta` VALUES("12232", "13768", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12233", "13768", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12234", "13776", "_wp_attached_file", "2014/09/Twilight-Journey-6-week-course-Oct-Nov-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("12235", "13776", "_edit_lock", "1410195115:1");
INSERT INTO `wp_postmeta` VALUES("12236", "13776", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12237", "13776", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12238", "13784", "_wp_attached_file", "2014/09/2014-Fundraising-poster-Nov-22-on-line-copy.docx");
INSERT INTO `wp_postmeta` VALUES("12239", "13784", "_edit_lock", "1410454691:1");
INSERT INTO `wp_postmeta` VALUES("12240", "13784", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12241", "13784", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12245", "13792", "_wp_attached_file", "2014/10/Caregiver-Burnout-Poster-November-29-2014.pdf");
INSERT INTO `wp_postmeta` VALUES("12246", "13792", "_edit_lock", "1414438655:1");
INSERT INTO `wp_postmeta` VALUES("12247", "13792", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12248", "13792", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12253", "13799", "_wp_attached_file", "2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12254", "13799", "_edit_lock", "1414439088:1");
INSERT INTO `wp_postmeta` VALUES("12255", "13799", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12256", "13799", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12257", "13801", "_edit_lock", "1414438075:1");
INSERT INTO `wp_postmeta` VALUES("12258", "13801", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12259", "13801", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12264", "13806", "_wp_attached_file", "2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12265", "13806", "_edit_lock", "1414439283:1");
INSERT INTO `wp_postmeta` VALUES("12268", "13813", "_edit_lock", "1417024778:1");
INSERT INTO `wp_postmeta` VALUES("12269", "13813", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12270", "13813", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12274", "13816", "_wp_attached_file", "2014/11/Caregiver-Burnout-Poster-January-31-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12275", "13816", "_edit_lock", "1417024751:1");
INSERT INTO `wp_postmeta` VALUES("12276", "13816", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12277", "13816", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12283", "13823", "_wp_attached_file", "2014/12/Mid-Life-Directions-intensive-Spring-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12284", "13823", "_edit_lock", "1417544689:1");
INSERT INTO `wp_postmeta` VALUES("12285", "13823", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12286", "13823", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12294", "13829", "_edit_lock", "1421438592:1");
INSERT INTO `wp_postmeta` VALUES("12295", "13829", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12296", "13829", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("12297", "13829", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("12298", "13829", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("12299", "13829", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12300", "13829", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("12301", "13829", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("12302", "13829", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("12303", "13829", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("12304", "13829", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("12305", "13829", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("12306", "13829", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("12307", "13829", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("12308", "13829", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("12309", "13829", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12310", "13829", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("12311", "13829", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12312", "13829", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("12313", "13829", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("12314", "13829", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("12315", "13829", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("12316", "13829", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("12317", "13829", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("12318", "13829", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12319", "13829", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12320", "13829", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("12321", "13829", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("12322", "13829", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12323", "13829", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12324", "13829", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("12325", "13829", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("12326", "13829", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("12327", "13829", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("12328", "13829", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("12329", "13829", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("12330", "13829", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("12331", "13829", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("12332", "13829", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("12354", "13837", "_wp_attached_file", "2014/12/Director-of-Development-FINAL.pdf");
INSERT INTO `wp_postmeta` VALUES("12355", "13837", "_edit_lock", "1418669505:1");
INSERT INTO `wp_postmeta` VALUES("12356", "13837", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12357", "13837", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12358", "13848", "_wp_attached_file", "2015/01/Ebb-and-Flow-Intensive-April-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12359", "13848", "_edit_lock", "1420658181:1");
INSERT INTO `wp_postmeta` VALUES("12362", "13848", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12364", "13853", "_wp_attached_file", "2015/01/Caregiver-Burnout-Poster-February-21-2015-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("12365", "13853", "_edit_lock", "1420736268:1");
INSERT INTO `wp_postmeta` VALUES("12366", "13853", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12367", "13853", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12397", "13867", "_edit_lock", "1422302560:1");
INSERT INTO `wp_postmeta` VALUES("12398", "13867", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12399", "13867", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("12400", "13867", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("12401", "13867", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("12402", "13867", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12403", "13867", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("12404", "13867", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("12405", "13867", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("12406", "13867", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("12407", "13867", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("12408", "13867", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("12409", "13867", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("12410", "13867", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("12411", "13867", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("12412", "13867", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12413", "13867", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("12414", "13867", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12415", "13867", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("12416", "13867", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("12417", "13867", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("12418", "13867", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("12419", "13867", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("12420", "13867", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("12421", "13867", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12422", "13867", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12423", "13867", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("12424", "13867", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("12425", "13867", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12426", "13867", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12427", "13867", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("12428", "13867", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("12429", "13867", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("12430", "13867", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("12431", "13867", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("12432", "13867", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("12433", "13867", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("12434", "13867", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("12435", "13867", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("12441", "13882", "_wp_attached_file", "2015/02/Self-Care-for-Women-May-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12442", "13882", "_edit_lock", "1424196433:1");
INSERT INTO `wp_postmeta` VALUES("12443", "13882", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12444", "13882", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12505", "13899", "_wp_attached_file", "2015/03/Marriage-Prep-Poster-June-6-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12506", "13899", "_edit_lock", "1426703613:1");
INSERT INTO `wp_postmeta` VALUES("12507", "13899", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12508", "13899", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12509", "13900", "_edit_lock", "1427222301:1");
INSERT INTO `wp_postmeta` VALUES("12510", "13900", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12511", "13900", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12533", "13916", "_wp_attached_file", "2015/03/Marriage-Prep-Poster-June-6-20151.pdf");
INSERT INTO `wp_postmeta` VALUES("12534", "13921", "_wp_attached_file", "2015/03/Family-Systems-Theory-General-Poster-5-day-summer-intensive-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12535", "13921", "_edit_lock", "1427223474:1");
INSERT INTO `wp_postmeta` VALUES("12536", "13921", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12537", "13921", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12538", "9", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12539", "199", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12540", "174", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12541", "13940", "_wp_attached_file", "2015/04/SICLogo-2015-revised.jpg");
INSERT INTO `wp_postmeta` VALUES("12542", "13940", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:301;s:4:\"file\";s:32:\"2015/04/SICLogo-2015-revised.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:19:\"Black+PMS375+PMS575\";}}");
INSERT INTO `wp_postmeta` VALUES("12543", "13940", "_edit_lock", "1428518628:2");
INSERT INTO `wp_postmeta` VALUES("12544", "13940", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("12545", "13940", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("12546", "13940", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("12547", "13940", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12548", "13940", "_wp_attachment_backup_sizes", "a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:450;s:6:\"height\";i:301;s:4:\"file\";s:24:\"SICLogo-2015-revised.jpg\";}s:18:\"full-1428518548739\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:201;s:4:\"file\";s:39:\"SICLogo-2015-revised-e1428518321187.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("12549", "13940", "_wp_attachment_image_alt", "Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!");
INSERT INTO `wp_postmeta` VALUES("12550", "13952", "_edit_lock", "1501288375:6");
INSERT INTO `wp_postmeta` VALUES("12551", "13952", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("12553", "13952", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("12554", "13952", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("12555", "13952", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("12556", "13952", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12557", "13952", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("12558", "13952", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("12559", "13952", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("12560", "13952", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("12561", "13952", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("12562", "13952", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("12563", "13952", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("12564", "13952", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("12565", "13952", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("12566", "13952", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12567", "13952", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("12568", "13952", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12569", "13952", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("12570", "13952", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("12571", "13952", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("12572", "13952", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("12573", "13952", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("12574", "13952", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("12575", "13952", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12576", "13952", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12577", "13952", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("12578", "13952", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("12579", "13952", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12580", "13952", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12581", "13952", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("12582", "13952", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("12583", "13952", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("12584", "13952", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("12585", "13952", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("12586", "13952", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("12587", "13952", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("12588", "13952", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("12589", "13952", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("12611", "13972", "_wp_attached_file", "2015/04/Caregiver-Burnout-Family-Poster-June-13-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12612", "13972", "_edit_lock", "1430334011:1");
INSERT INTO `wp_postmeta` VALUES("12613", "13972", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12614", "13972", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12615", "13973", "_edit_lock", "1430334305:1");
INSERT INTO `wp_postmeta` VALUES("12616", "13973", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12617", "13973", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("12618", "13973", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12619", "13978", "_wp_attached_file", "2015/05/Intensive-5-day-in-Summer-July-27-31-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12620", "13978", "_edit_lock", "1430932160:1");
INSERT INTO `wp_postmeta` VALUES("12621", "13978", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12622", "13978", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12623", "13979", "_edit_lock", "1430933031:1");
INSERT INTO `wp_postmeta` VALUES("12624", "13979", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12625", "13979", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("12626", "13979", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12627", "13983", "_wp_attached_file", "2015/05/Strengthening-Wellbeing-poster-May-June-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12630", "13983", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12641", "12763", "_edit_lock", "1432747350:1");
INSERT INTO `wp_postmeta` VALUES("12642", "13994", "_wp_attached_file", "2015/05/Self-Injury-poster-June-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12643", "13994", "_edit_lock", "1432834330:1");
INSERT INTO `wp_postmeta` VALUES("12644", "13994", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12645", "13994", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12646", "13995", "_edit_lock", "1432834822:1");
INSERT INTO `wp_postmeta` VALUES("12647", "13995", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12648", "13995", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("12649", "13995", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12650", "13996", "_wp_attached_file", "2015/05/Self-Injury-poster-June-20151.pdf");
INSERT INTO `wp_postmeta` VALUES("12651", "13996", "_edit_lock", "1432834758:1");
INSERT INTO `wp_postmeta` VALUES("12652", "13996", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12653", "13996", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12654", "14005", "_edit_lock", "1433780605:1");
INSERT INTO `wp_postmeta` VALUES("12655", "14005", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12656", "14005", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("12657", "14005", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("12658", "14005", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("12659", "14005", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12660", "14005", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("12661", "14005", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("12662", "14005", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("12663", "14005", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("12664", "14005", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("12665", "14005", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("12666", "14005", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("12667", "14005", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("12668", "14005", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("12669", "14005", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12670", "14005", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("12671", "14005", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12672", "14005", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("12673", "14005", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("12674", "14005", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("12675", "14005", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("12676", "14005", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("12677", "14005", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("12678", "14005", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12679", "14005", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12680", "14005", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("12681", "14005", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("12682", "14005", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12683", "14005", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12684", "14005", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("12685", "14005", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("12686", "14005", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("12687", "14005", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("12688", "14005", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("12689", "14005", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("12690", "14005", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("12691", "14005", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("12692", "14005", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("12721", "14024", "_wp_attached_file", "2015/06/CanadaHelps.org-logo.png");
INSERT INTO `wp_postmeta` VALUES("12722", "14024", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:299;s:6:\"height\";i:91;s:4:\"file\";s:32:\"2015/06/CanadaHelps.org-logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"CanadaHelps.org-logo-150x91.png\";s:5:\"width\";i:150;s:6:\"height\";i:91;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("12723", "14024", "_edit_lock", "1434588763:1");
INSERT INTO `wp_postmeta` VALUES("12724", "14024", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12725", "14024", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("12726", "14024", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("12727", "14024", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12750", "14053", "_wp_attached_file", "2015/07/PCCT-course-poster-November-2015.docx");
INSERT INTO `wp_postmeta` VALUES("12751", "14053", "_edit_lock", "1437587227:1");
INSERT INTO `wp_postmeta` VALUES("12752", "14053", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12753", "14053", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12759", "14059", "_wp_attached_file", "2015/07/header_bg.jpg");
INSERT INTO `wp_postmeta` VALUES("12760", "14059", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:937;s:6:\"height\";i:188;s:4:\"file\";s:21:\"2015/07/header_bg.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"header_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:20:\"header_bg-300x60.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:60;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("12770", "14086", "_edit_lock", "1440524954:1");
INSERT INTO `wp_postmeta` VALUES("12771", "14086", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12772", "14086", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("12773", "14086", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("12774", "14086", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("12775", "14086", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12776", "14086", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("12777", "14086", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("12778", "14086", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("12779", "14086", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("12780", "14086", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("12781", "14086", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("12782", "14086", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("12783", "14086", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("12784", "14086", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("12785", "14086", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12786", "14086", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("12787", "14086", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12788", "14086", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("12789", "14086", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("12790", "14086", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("12791", "14086", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("12792", "14086", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("12793", "14086", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("12794", "14086", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12795", "14086", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12796", "14086", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("12797", "14086", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("12798", "14086", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12799", "14086", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12800", "14086", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("12801", "14086", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("12802", "14086", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("12803", "14086", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("12804", "14086", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("12805", "14086", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("12806", "14086", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("12807", "14086", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("12808", "14086", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("12838", "14094", "_wp_attached_file", "2015/09/Professional-Caregivers-November-2015.docx");
INSERT INTO `wp_postmeta` VALUES("12839", "14094", "_edit_lock", "1441307733:1");
INSERT INTO `wp_postmeta` VALUES("12840", "14094", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12841", "14094", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12842", "14095", "_wp_attached_file", "2015/09/Intensive-Family-caregivers-Sept-2015.docx");
INSERT INTO `wp_postmeta` VALUES("12843", "14095", "_edit_lock", "1441309448:1");
INSERT INTO `wp_postmeta` VALUES("12844", "14095", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12845", "14095", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12854", "14098", "_wp_attached_file", "2015/09/Ebb-and-Flow-Intensive-Sept-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12855", "14098", "_edit_lock", "1441308415:1");
INSERT INTO `wp_postmeta` VALUES("12856", "14098", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12857", "14098", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12858", "14099", "_wp_attached_file", "2015/09/Strengthening-Well-Being-Sept-Oct-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12859", "14099", "_edit_lock", "1441308694:1");
INSERT INTO `wp_postmeta` VALUES("12860", "14099", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12861", "14099", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12862", "14100", "_wp_attached_file", "2015/09/Twilight-Journey-6-week-Oct-Dec-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12863", "14100", "_edit_lock", "1441309172:1");
INSERT INTO `wp_postmeta` VALUES("12864", "14100", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12865", "14100", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12866", "14102", "_wp_attached_file", "2015/09/Strengthening-Well-Being-Nov-Dec-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12867", "14102", "_edit_lock", "1441309596:1");
INSERT INTO `wp_postmeta` VALUES("12868", "14102", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12869", "14102", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12878", "14108", "_wp_attached_file", "2015/09/Professional-Caregivers-November-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12879", "14108", "_edit_lock", "1441729359:1");
INSERT INTO `wp_postmeta` VALUES("12880", "14108", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12881", "14108", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12882", "14111", "_wp_attached_file", "2015/09/Self-Injuring-Youth-Poster-October-31-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12883", "14111", "_edit_lock", "1441738419:1");
INSERT INTO `wp_postmeta` VALUES("12884", "14111", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12885", "14111", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12886", "14112", "_edit_lock", "1445965806:1");
INSERT INTO `wp_postmeta` VALUES("12887", "14112", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12888", "14112", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("12889", "14112", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12890", "14118", "_edit_lock", "1505253868:6");
INSERT INTO `wp_postmeta` VALUES("12891", "14118", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12892", "14118", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("12893", "14118", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12907", "14137", "_edit_lock", "1444331189:1");
INSERT INTO `wp_postmeta` VALUES("12908", "14137", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12909", "14137", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("12910", "14137", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("12911", "14137", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("12912", "14137", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12913", "14137", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("12914", "14137", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("12915", "14137", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("12916", "14137", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("12917", "14137", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("12918", "14137", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("12919", "14137", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("12920", "14137", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("12921", "14137", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("12922", "14137", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12923", "14137", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("12924", "14137", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("12925", "14137", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("12926", "14137", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("12927", "14137", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("12928", "14137", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("12929", "14137", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("12930", "14137", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("12931", "14137", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12932", "14137", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("12933", "14137", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("12934", "14137", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("12935", "14137", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12936", "14137", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("12937", "14137", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("12938", "14137", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("12939", "14137", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("12940", "14137", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("12941", "14137", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("12942", "14137", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("12943", "14137", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("12944", "14137", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("12945", "14137", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("12946", "14151", "_wp_attached_file", "2015/10/Self-Injuring-Youth-poster-Dec-2015.pdf");
INSERT INTO `wp_postmeta` VALUES("12947", "14151", "_edit_lock", "1445357697:1");
INSERT INTO `wp_postmeta` VALUES("12948", "14151", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12949", "14151", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12956", "14169", "_wp_attached_file", "2015/11/Marriage-Prep-Poster-Feb-13-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("12957", "14169", "_edit_lock", "1447709713:1");
INSERT INTO `wp_postmeta` VALUES("12958", "14169", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12959", "14169", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12960", "14170", "_edit_lock", "1447710266:1");
INSERT INTO `wp_postmeta` VALUES("12961", "14170", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12962", "14170", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("12963", "14170", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12964", "14173", "_wp_attached_file", "2015/11/PCCT-workshop-Feb-6-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("12965", "14173", "_edit_lock", "1447958872:1");
INSERT INTO `wp_postmeta` VALUES("12966", "14173", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12967", "14173", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12968", "14174", "_edit_lock", "1447959416:1");
INSERT INTO `wp_postmeta` VALUES("12969", "14174", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12970", "14174", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("12971", "14174", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12983", "14199", "_wp_attached_file", "2015/12/Mid-Life-Directions-intensive-Spring-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("12984", "14199", "_edit_lock", "1448998807:1");
INSERT INTO `wp_postmeta` VALUES("12985", "14199", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12986", "14199", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("12987", "14200", "_edit_lock", "1448999215:1");
INSERT INTO `wp_postmeta` VALUES("12988", "14200", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("12989", "14200", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("12990", "14200", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("12991", "14222", "_wp_attached_file", "2015/12/Victoria-Foundation-logo.png");
INSERT INTO `wp_postmeta` VALUES("12992", "14222", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:373;s:6:\"height\";i:69;s:4:\"file\";s:36:\"2015/12/Victoria-Foundation-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Victoria-Foundation-logo-150x69.png\";s:5:\"width\";i:150;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Victoria-Foundation-logo-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("12993", "14222", "_edit_lock", "1449594996:1");
INSERT INTO `wp_postmeta` VALUES("12994", "14224", "_wp_attached_file", "2015/12/Victoria-Foundation-logo-2.png");
INSERT INTO `wp_postmeta` VALUES("12995", "14224", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:70;s:6:\"height\";i:54;s:4:\"file\";s:38:\"2015/12/Victoria-Foundation-logo-2.png\";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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("12996", "14228", "_wp_attached_file", "2015/12/VICFO_LOGO_Vert_CMYK.jpg");
INSERT INTO `wp_postmeta` VALUES("12997", "14228", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:998;s:6:\"height\";i:793;s:4:\"file\";s:32:\"2015/12/VICFO_LOGO_Vert_CMYK.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"VICFO_LOGO_Vert_CMYK-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"VICFO_LOGO_Vert_CMYK-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("12998", "14228", "_edit_lock", "1449681344:1");
INSERT INTO `wp_postmeta` VALUES("12999", "14228", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13000", "14228", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13001", "14228", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13002", "14228", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13003", "14230", "_wp_attached_file", "2015/12/VICFO_LOGO_Vert_K1-e1449681815463.jpg");
INSERT INTO `wp_postmeta` VALUES("13004", "14230", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:318;s:4:\"file\";s:45:\"2015/12/VICFO_LOGO_Vert_K1-e1449681815463.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"VICFO_LOGO_Vert_K1-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:\"VICFO_LOGO_Vert_K1-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13005", "14230", "_edit_lock", "1449682293:1");
INSERT INTO `wp_postmeta` VALUES("13006", "14230", "_wp_attachment_backup_sizes", "a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:998;s:6:\"height\";i:793;s:4:\"file\";s:22:\"VICFO_LOGO_Vert_K1.jpg\";}s:18:\"full-1449681815463\";a:3:{s:5:\"width\";i:900;s:6:\"height\";i:715;s:4:\"file\";s:37:\"VICFO_LOGO_Vert_K1-e1449681802752.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13007", "14230", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13008", "14230", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13009", "14230", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13010", "14230", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13011", "14234", "_wp_attached_file", "2015/12/Ebb-and-Flow-6-week-Feb-March-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13012", "14235", "_edit_lock", "1452541216:1");
INSERT INTO `wp_postmeta` VALUES("13013", "14235", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13014", "14234", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13015", "14235", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13016", "14235", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13017", "14243", "_wp_attached_file", "2016/01/Ebb-and-Flow-6-week-Feb-March-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13018", "14243", "_edit_lock", "1452541155:1");
INSERT INTO `wp_postmeta` VALUES("13019", "14243", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13020", "14243", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13021", "14245", "_edit_lock", "1528904060:10");
INSERT INTO `wp_postmeta` VALUES("13022", "14245", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("13023", "14245", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13024", "14245", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13025", "14245", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13026", "14245", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13027", "14245", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13028", "14245", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13029", "14245", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13030", "14245", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13031", "14245", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13032", "14245", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13033", "14245", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13034", "14245", "_dt_slideshow_mode", "");
INSERT INTO `wp_postmeta` VALUES("13035", "14245", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13036", "14245", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13037", "14245", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13038", "14245", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13039", "14245", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13040", "14245", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13041", "14245", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13042", "14245", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13043", "14245", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13044", "14245", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13045", "14245", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13046", "14245", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13047", "14245", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13048", "14245", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13049", "14245", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13050", "14245", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13051", "14245", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13052", "14245", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13053", "14245", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13054", "14245", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13055", "14245", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13056", "14245", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13057", "14245", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13058", "14245", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13059", "14245", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13060", "14247", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("13061", "14247", "_menu_item_menu_item_parent", "13105");
INSERT INTO `wp_postmeta` VALUES("13062", "14247", "_menu_item_object_id", "14245");
INSERT INTO `wp_postmeta` VALUES("13063", "14247", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("13064", "14247", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("13065", "14247", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13066", "14247", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("13067", "14247", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("13077", "14247", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("13078", "14247", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("13079", "14247", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("13081", "14252", "_wp_attached_file", "2016/01/Director-of-Services-January-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13082", "14252", "_edit_lock", "1453314102:1");
INSERT INTO `wp_postmeta` VALUES("13083", "14252", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13084", "14252", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13085", "14267", "_wp_attached_file", "2016/02/Family-Systems-Intensive-July-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13086", "14267", "_edit_lock", "1455214283:1");
INSERT INTO `wp_postmeta` VALUES("13087", "14267", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13088", "14267", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13089", "14268", "_edit_lock", "1455568861:1");
INSERT INTO `wp_postmeta` VALUES("13090", "14268", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13091", "14268", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13092", "14268", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13093", "14270", "_edit_lock", "1459795523:1");
INSERT INTO `wp_postmeta` VALUES("13094", "14270", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13095", "14270", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13096", "14270", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13097", "14271", "_wp_attached_file", "2016/02/Twilight-Journey-6-week-course-April-May-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13098", "14271", "_edit_lock", "1455223553:1");
INSERT INTO `wp_postmeta` VALUES("13099", "14271", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13100", "14271", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13101", "14277", "_wp_attached_file", "2016/02/Marriage-Prep-Poster-June-4-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13102", "14277", "_edit_lock", "1455732458:1");
INSERT INTO `wp_postmeta` VALUES("13103", "14277", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13104", "14277", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13105", "14278", "_edit_lock", "1455733263:1");
INSERT INTO `wp_postmeta` VALUES("13106", "14278", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13107", "14278", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13108", "14278", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13109", "14285", "_wp_attached_file", "2016/02/Job-Description-Director-of-Services-March-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13110", "14285", "_edit_lock", "1456167688:1");
INSERT INTO `wp_postmeta` VALUES("13111", "14287", "_wp_attached_file", "2016/02/Job-Description-Director-of-Services-March-20161.pdf");
INSERT INTO `wp_postmeta` VALUES("13112", "14287", "_edit_lock", "1456172550:1");
INSERT INTO `wp_postmeta` VALUES("13113", "14287", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13114", "14287", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13115", "14297", "_edit_lock", "1459268756:1");
INSERT INTO `wp_postmeta` VALUES("13116", "14297", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13117", "14297", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13118", "14297", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13119", "14298", "_wp_attached_file", "2016/03/Youth-Support-Group-April-June-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13120", "14298", "_edit_lock", "1458761832:1");
INSERT INTO `wp_postmeta` VALUES("13121", "14298", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13122", "14298", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13123", "14306", "_wp_attached_file", "2016/03/Youth-Support-Group-April-June-20161.pdf");
INSERT INTO `wp_postmeta` VALUES("13124", "14306", "_edit_lock", "1458836648:1");
INSERT INTO `wp_postmeta` VALUES("13125", "14306", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13126", "14306", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13127", "14307", "_wp_attached_file", "2016/03/Youth-Support-Group-April-June-20162.pdf");
INSERT INTO `wp_postmeta` VALUES("13128", "14307", "_edit_lock", "1458837900:1");
INSERT INTO `wp_postmeta` VALUES("13129", "14307", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13130", "14307", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13131", "14311", "_edit_lock", "1460391376:1");
INSERT INTO `wp_postmeta` VALUES("13132", "14311", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13133", "14311", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13134", "14311", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13135", "14312", "_wp_attached_file", "2016/04/Self-Injuring-Youth-poster-May-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13136", "14312", "_edit_lock", "1460053081:1");
INSERT INTO `wp_postmeta` VALUES("13137", "14312", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13138", "14312", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13139", "14315", "_wp_attached_file", "2016/04/Self-Injuring-Youth-poster-May-20161.pdf");
INSERT INTO `wp_postmeta` VALUES("13140", "14315", "_edit_lock", "1460391333:1");
INSERT INTO `wp_postmeta` VALUES("13141", "14315", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13142", "14315", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13143", "14323", "_edit_lock", "1501279432:6");
INSERT INTO `wp_postmeta` VALUES("13144", "14323", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13145", "14323", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13146", "14323", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13147", "14323", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13148", "14323", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13149", "14323", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13150", "14323", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13151", "14323", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13152", "14323", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13153", "14323", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13154", "14323", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13155", "14323", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13156", "14323", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13157", "14323", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13158", "14323", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13159", "14323", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13160", "14323", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13161", "14323", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13162", "14323", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13163", "14323", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13164", "14323", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13165", "14323", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13166", "14323", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13167", "14323", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13168", "14323", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13169", "14323", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13170", "14323", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13171", "14323", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13172", "14323", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13173", "14323", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13174", "14323", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13175", "14323", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13176", "14323", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13177", "14323", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13178", "14323", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13179", "14323", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13180", "14323", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13181", "14323", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13203", "14327", "_edit_lock", "1461086571:1");
INSERT INTO `wp_postmeta` VALUES("13204", "14327", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13205", "14327", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13206", "14327", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13207", "14327", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13208", "14327", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13209", "14327", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13210", "14327", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("13211", "14327", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13212", "14327", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13213", "14327", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13214", "14327", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13215", "14327", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13216", "14327", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13217", "14327", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13218", "14327", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13219", "14327", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13220", "14327", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13221", "14327", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13222", "14327", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13223", "14327", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13224", "14327", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13225", "14327", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13226", "14327", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13227", "14327", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13228", "14327", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13229", "14327", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13230", "14327", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13231", "14327", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13232", "14327", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13233", "14327", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13234", "14327", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13235", "14327", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13236", "14327", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13237", "14327", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13238", "14327", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13239", "14327", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13240", "14327", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13241", "14327", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13242", "14333", "_edit_lock", "1464201236:1");
INSERT INTO `wp_postmeta` VALUES("13243", "14333", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13244", "14333", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13245", "14333", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13246", "14333", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13247", "14333", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13248", "14333", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13249", "14333", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("13250", "14333", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13251", "14333", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13252", "14333", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13253", "14333", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13254", "14333", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13255", "14333", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13256", "14333", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13257", "14333", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13258", "14333", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13259", "14333", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13260", "14333", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13261", "14333", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13262", "14333", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13263", "14333", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13264", "14333", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13265", "14333", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13266", "14333", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13267", "14333", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13268", "14333", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13269", "14333", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13270", "14333", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13271", "14333", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13272", "14333", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13273", "14333", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13274", "14333", "_dt_fancy_header_bg_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("13275", "14333", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13276", "14333", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13277", "14333", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13278", "14333", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13279", "14333", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13280", "14333", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13281", "14338", "_wp_attached_file", "2016/04/Spring-Newsletter-2016-Final.pdf");
INSERT INTO `wp_postmeta` VALUES("13282", "14338", "_edit_lock", "1461175171:1");
INSERT INTO `wp_postmeta` VALUES("13283", "14338", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13284", "14338", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13285", "14339", "_edit_lock", "1501021727:6");
INSERT INTO `wp_postmeta` VALUES("13286", "14339", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13287", "14339", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13288", "14339", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13289", "14339", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13290", "14339", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13291", "14339", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13292", "14339", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13293", "14339", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13294", "14339", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13295", "14339", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13296", "14339", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13297", "14339", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13298", "14339", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13299", "14339", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13300", "14339", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13301", "14339", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13302", "14339", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13303", "14339", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13304", "14339", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13305", "14339", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13306", "14339", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13307", "14339", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13308", "14339", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13309", "14339", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13310", "14339", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13311", "14339", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13312", "14339", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13313", "14339", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13314", "14339", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13315", "14339", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13316", "14339", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13317", "14339", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13318", "14339", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13319", "14339", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13320", "14339", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13321", "14339", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13322", "14339", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13323", "14339", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13324", "14341", "_wp_attached_file", "2016/04/Christmas-2015-Newsletter-FINAL.pdf");
INSERT INTO `wp_postmeta` VALUES("13325", "14341", "_edit_lock", "1461176036:1");
INSERT INTO `wp_postmeta` VALUES("13326", "14341", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13327", "14341", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13328", "14349", "_wp_attached_file", "2016/05/Child-Youth-History-form.pdf");
INSERT INTO `wp_postmeta` VALUES("13329", "14349", "_edit_lock", "1463081408:1");
INSERT INTO `wp_postmeta` VALUES("13330", "14349", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13331", "14352", "_edit_lock", "1463696420:1");
INSERT INTO `wp_postmeta` VALUES("13332", "14352", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13333", "14352", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13334", "14352", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13335", "14352", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13336", "14352", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13337", "14352", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13338", "14352", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("13339", "14352", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13340", "14352", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13341", "14352", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13342", "14352", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13343", "14352", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13344", "14352", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13345", "14352", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13346", "14352", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13347", "14352", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13348", "14352", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13349", "14352", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13350", "14352", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13351", "14352", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13352", "14352", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13353", "14352", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13354", "14352", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13355", "14352", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13356", "14352", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13357", "14352", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13358", "14352", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13359", "14352", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13360", "14352", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13361", "14352", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13362", "14352", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13363", "14352", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13364", "14352", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13365", "14352", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13366", "14352", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13367", "14352", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13368", "14352", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13369", "14352", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13370", "14366", "_wp_attached_file", "2016/06/PCCT-Oct-2016-Jan17-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("13371", "14366", "_edit_lock", "1466106158:1");
INSERT INTO `wp_postmeta` VALUES("13372", "14366", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13373", "14366", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13374", "14367", "_edit_lock", "1466106460:1");
INSERT INTO `wp_postmeta` VALUES("13375", "14367", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13376", "14368", "_wp_attached_file", "2016/06/PCCT-Oct-2016-Jan17-poster1.pdf");
INSERT INTO `wp_postmeta` VALUES("13377", "14368", "_edit_lock", "1466106365:1");
INSERT INTO `wp_postmeta` VALUES("13378", "14368", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13379", "14368", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13380", "14369", "_edit_lock", "1466106947:1");
INSERT INTO `wp_postmeta` VALUES("13381", "14369", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13382", "14369", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13383", "14369", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13384", "14376", "_edit_lock", "1468866536:1");
INSERT INTO `wp_postmeta` VALUES("13385", "14376", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13386", "14376", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13387", "14376", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13388", "14377", "_wp_attached_file", "2016/07/August-2016-General-Caregivers-Poster.pdf");
INSERT INTO `wp_postmeta` VALUES("13389", "14377", "_edit_lock", "1467744850:1");
INSERT INTO `wp_postmeta` VALUES("13390", "14377", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13391", "14377", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13392", "14378", "_wp_attached_file", "2016/07/Twilight-Journey-6-week-course-Nov-Dec-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13393", "14378", "_edit_lock", "1467744922:1");
INSERT INTO `wp_postmeta` VALUES("13394", "14378", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13395", "14378", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13396", "14382", "_edit_lock", "1467915754:1");
INSERT INTO `wp_postmeta` VALUES("13397", "14382", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13398", "14382", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13399", "14382", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13400", "14383", "_wp_attached_file", "2016/07/Ebb-and-Flow-6-week-Sep-Oct-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13401", "14383", "_edit_lock", "1467914200:1");
INSERT INTO `wp_postmeta` VALUES("13402", "14383", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13403", "14383", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13404", "14385", "_wp_attached_file", "2016/07/August-2016-General-Caregivers-Poster1.pdf");
INSERT INTO `wp_postmeta` VALUES("13405", "14385", "_edit_lock", "1467914546:1");
INSERT INTO `wp_postmeta` VALUES("13406", "14385", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13407", "14385", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13412", "14393", "_wp_attached_file", "2016/07/August-2016-General-Caregivers-Poster2.pdf");
INSERT INTO `wp_postmeta` VALUES("13413", "14393", "_edit_lock", "1468866450:1");
INSERT INTO `wp_postmeta` VALUES("13414", "14393", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13415", "14393", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13416", "14408", "_edit_lock", "1475692465:1");
INSERT INTO `wp_postmeta` VALUES("13417", "14408", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13418", "14408", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13419", "14408", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13420", "14431", "_edit_lock", "1487791633:1");
INSERT INTO `wp_postmeta` VALUES("13421", "14431", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13422", "14431", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13423", "14431", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13424", "14431", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13425", "14431", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13426", "14431", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13427", "14431", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13428", "14431", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13429", "14431", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13430", "14431", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13431", "14431", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13432", "14431", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13433", "14431", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13434", "14431", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13435", "14431", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13436", "14431", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13437", "14431", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13438", "14431", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13439", "14431", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13440", "14431", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13441", "14431", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13442", "14431", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13443", "14431", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13444", "14431", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13445", "14431", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13446", "14431", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13447", "14431", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13448", "14431", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13449", "14431", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13450", "14431", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13451", "14431", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13452", "14431", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13453", "14431", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13454", "14431", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13455", "14431", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13456", "14431", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13457", "14431", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13458", "14431", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13459", "869", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13499", "14457", "_edit_lock", "1525211779:10");
INSERT INTO `wp_postmeta` VALUES("13500", "14457", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13501", "14457", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13502", "14457", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13503", "14457", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13504", "14457", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13505", "14457", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13506", "14457", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13507", "14457", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13508", "14457", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13509", "14457", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13510", "14457", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13511", "14457", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13512", "14457", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13513", "14457", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13514", "14457", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13515", "14457", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13516", "14457", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13517", "14457", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13518", "14457", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13519", "14457", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13520", "14457", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13521", "14457", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13522", "14457", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13523", "14457", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13524", "14457", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13525", "14457", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13526", "14457", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13527", "14457", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13528", "14457", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13529", "14457", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13530", "14457", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13531", "14457", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13532", "14457", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13533", "14457", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13534", "14457", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13535", "14457", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13536", "14457", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13537", "14457", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13538", "14462", "_edit_lock", "1528905974:10");
INSERT INTO `wp_postmeta` VALUES("13539", "14462", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("13540", "14462", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13541", "14462", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13542", "14462", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13543", "14462", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13544", "14462", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13545", "14462", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13546", "14462", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13547", "14462", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13548", "14462", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13549", "14462", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13550", "14462", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13551", "14462", "_dt_slideshow_mode", "");
INSERT INTO `wp_postmeta` VALUES("13552", "14462", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13553", "14462", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13554", "14462", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13555", "14462", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13556", "14462", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13557", "14462", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13558", "14462", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13559", "14462", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13560", "14462", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13561", "14462", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13562", "14462", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13563", "14462", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13564", "14462", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13565", "14462", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13566", "14462", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13567", "14462", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13568", "14462", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13569", "14462", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13570", "14462", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13571", "14462", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13572", "14462", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13573", "14462", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13574", "14462", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13575", "14462", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13576", "14462", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13579", "14469", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("13580", "14469", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("13581", "14469", "_menu_item_object_id", "14462");
INSERT INTO `wp_postmeta` VALUES("13582", "14469", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("13583", "14469", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("13584", "14469", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13585", "14469", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("13586", "14469", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("13596", "14469", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("13597", "14469", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("13598", "14469", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("13600", "14472", "_wp_attached_file", "2016/08/PCCT-workshop-October-22-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13601", "14472", "_edit_lock", "1471458320:1");
INSERT INTO `wp_postmeta` VALUES("13602", "14472", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13603", "14472", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13604", "14473", "_edit_lock", "1501176875:6");
INSERT INTO `wp_postmeta` VALUES("13605", "14473", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13606", "13262", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13607", "14477", "_wp_attached_file", "2016/08/PCCT-workshop-October-22-20161.pdf");
INSERT INTO `wp_postmeta` VALUES("13608", "14477", "_edit_lock", "1472497800:1");
INSERT INTO `wp_postmeta` VALUES("13609", "14477", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13610", "14477", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13611", "14478", "_edit_lock", "1515452578:6");
INSERT INTO `wp_postmeta` VALUES("13612", "14478", "_edit_last", "9");
INSERT INTO `wp_postmeta` VALUES("13613", "14478", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13614", "14478", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13622", "14497", "_wp_attached_file", "2016/09/TC-logo-e1474306298943.png");
INSERT INTO `wp_postmeta` VALUES("13623", "14497", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:132;s:6:\"height\";i:45;s:4:\"file\";s:34:\"2016/09/TC-logo-e1474306298943.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"TC-logo-150x102.png\";s:5:\"width\";i:150;s:6:\"height\";i:102;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13624", "14497", "_edit_lock", "1474306208:1");
INSERT INTO `wp_postmeta` VALUES("13625", "14501", "_wp_attached_file", "2016/09/Seafirst-logo-e1474306268509.jpg");
INSERT INTO `wp_postmeta` VALUES("13626", "14501", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:132;s:6:\"height\";i:26;s:4:\"file\";s:40:\"2016/09/Seafirst-logo-e1474306268509.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Seafirst-logo-150x75.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Seafirst-logo-300x58.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:58;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13627", "14501", "_edit_lock", "1474306142:1");
INSERT INTO `wp_postmeta` VALUES("13628", "14501", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13629", "14501", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13630", "14501", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13631", "14501", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13632", "14501", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:386;s:6:\"height\";i:75;s:4:\"file\";s:17:\"Seafirst-logo.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13633", "14497", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:298;s:6:\"height\";i:102;s:4:\"file\";s:11:\"TC-logo.png\";}}");
INSERT INTO `wp_postmeta` VALUES("13634", "14497", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13635", "14497", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13636", "14497", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13637", "14497", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13638", "14502", "_wp_attached_file", "2016/09/TC_box_col-e1474306378730.jpg");
INSERT INTO `wp_postmeta` VALUES("13639", "14502", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:132;s:6:\"height\";i:45;s:4:\"file\";s:37:\"2016/09/TC_box_col-e1474306378730.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"TC_box_col-150x101.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:101;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13640", "14502", "_edit_lock", "1474306254:1");
INSERT INTO `wp_postmeta` VALUES("13641", "14502", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:297;s:6:\"height\";i:101;s:4:\"file\";s:14:\"TC_box_col.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13642", "14502", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13643", "14502", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13644", "14502", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13645", "14502", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13646", "14511", "_wp_attached_file", "2016/09/Hotel-Grand-Pacific-Logo-e1474308448849.jpg");
INSERT INTO `wp_postmeta` VALUES("13647", "14511", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:132;s:6:\"height\";i:62;s:4:\"file\";s:51:\"2016/09/Hotel-Grand-Pacific-Logo-e1474308448849.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Hotel-Grand-Pacific-Logo-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13648", "14511", "_edit_lock", "1474308381:1");
INSERT INTO `wp_postmeta` VALUES("13649", "14511", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:179;s:6:\"height\";i:84;s:4:\"file\";s:28:\"Hotel-Grand-Pacific-Logo.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13650", "14511", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13651", "14511", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13652", "14511", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13653", "14511", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13654", "14520", "_wp_attached_file", "2016/09/St-Philips-logo-e1474565231807.jpg");
INSERT INTO `wp_postmeta` VALUES("13655", "14520", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:132;s:6:\"height\";i:42;s:4:\"file\";s:42:\"2016/09/St-Philips-logo-e1474565231807.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"St-Philips-logo-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:\"St-Philips-logo-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13656", "14520", "_edit_lock", "1474565099:1");
INSERT INTO `wp_postmeta` VALUES("13657", "14520", "_wp_attachment_backup_sizes", "a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1004;s:6:\"height\";i:320;s:4:\"file\";s:19:\"St-Philips-logo.jpg\";}s:18:\"full-1474565231807\";a:3:{s:5:\"width\";i:132;s:6:\"height\";i:42;s:4:\"file\";s:34:\"St-Philips-logo-e1474565200585.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13658", "14520", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13659", "14520", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13660", "14520", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13661", "14520", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13662", "14524", "_wp_attached_file", "2016/09/Strengthening-Well-Being-Nov-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13665", "14524", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13668", "14531", "_wp_attached_file", "2016/09/Hotel-Grand-Pacific-official-logo-e1474913674128.jpg");
INSERT INTO `wp_postmeta` VALUES("13669", "14531", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:132;s:6:\"height\";i:65;s:4:\"file\";s:60:\"2016/09/Hotel-Grand-Pacific-official-logo-e1474913674128.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Hotel-Grand-Pacific-official-logo-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:45:\"Hotel-Grand-Pacific-official-logo-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Hotel-Grand-Pacific-official-logo-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13670", "14531", "_edit_lock", "1474913569:1");
INSERT INTO `wp_postmeta` VALUES("13671", "14531", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1201;s:6:\"height\";i:592;s:4:\"file\";s:37:\"Hotel-Grand-Pacific-official-logo.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13672", "14531", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13673", "14531", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13674", "14531", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13675", "14531", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13676", "14541", "_wp_attached_file", "2016/10/TC-Adv-1-Oct-1-2016-proof.pdf");
INSERT INTO `wp_postmeta` VALUES("13677", "14541", "_edit_lock", "1475519572:1");
INSERT INTO `wp_postmeta` VALUES("13678", "14541", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13679", "14541", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13680", "14547", "_wp_attached_file", "2016/10/Youth-Support-Group-Oct-Dec-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13681", "14547", "_edit_lock", "1475692425:1");
INSERT INTO `wp_postmeta` VALUES("13682", "14547", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13683", "14547", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13684", "14548", "_wp_attached_file", "2016/10/Fall-Newsletter-2016-FINAL.pdf");
INSERT INTO `wp_postmeta` VALUES("13685", "14548", "_edit_lock", "1475780028:1");
INSERT INTO `wp_postmeta` VALUES("13686", "14548", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13687", "14548", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13688", "14551", "_wp_attached_file", "2016/10/Monk-Office-logo-final-4-3-e1476722851503.png");
INSERT INTO `wp_postmeta` VALUES("13689", "14551", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:125;s:6:\"height\";i:19;s:4:\"file\";s:53:\"2016/10/Monk-Office-logo-final-4-3-e1476722851503.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Monk-Office-logo-final-4-3-150x138.png\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Monk-Office-logo-final-4-3-300x45.png\";s:5:\"width\";i:300;s:6:\"height\";i:45;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13690", "14551", "_edit_lock", "1476722982:1");
INSERT INTO `wp_postmeta` VALUES("13691", "14551", "_wp_attachment_backup_sizes", "a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:916;s:6:\"height\";i:138;s:4:\"file\";s:30:\"Monk-Office-logo-final-4-3.png\";}s:18:\"full-1476722851503\";a:3:{s:5:\"width\";i:125;s:6:\"height\";i:19;s:4:\"file\";s:45:\"Monk-Office-logo-final-4-3-e1476722844390.png\";}}");
INSERT INTO `wp_postmeta` VALUES("13692", "14551", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13693", "14551", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13694", "14551", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13695", "14551", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13696", "14566", "_wp_attached_file", "2016/11/Ebb-and-Flow-Feb-March-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13697", "14566", "_edit_lock", "1478551279:1");
INSERT INTO `wp_postmeta` VALUES("13698", "14566", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13699", "14566", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13708", "14579", "_wp_attached_file", "2016/11/TC-Adv-2-Nov-12-2016.pdf");
INSERT INTO `wp_postmeta` VALUES("13709", "14579", "_edit_lock", "1479842423:1");
INSERT INTO `wp_postmeta` VALUES("13710", "14582", "_wp_attached_file", "2016/11/TC-Adv-2-Nov-12-20161.pdf");
INSERT INTO `wp_postmeta` VALUES("13711", "14582", "_edit_lock", "1479842537:1");
INSERT INTO `wp_postmeta` VALUES("13720", "14590", "_wp_attached_file", "2016/12/CSS-logo-e1481049941965.jpg");
INSERT INTO `wp_postmeta` VALUES("13721", "14590", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:51;s:4:\"file\";s:35:\"2016/12/CSS-logo-e1481049941965.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"CSS-logo-150x74.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:74;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13722", "14590", "_edit_lock", "1488827387:1");
INSERT INTO `wp_postmeta` VALUES("13723", "14590", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:291;s:6:\"height\";i:74;s:4:\"file\";s:12:\"CSS-logo.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13724", "14590", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13725", "14590", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13726", "14590", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13727", "14590", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13728", "14592", "_wp_attached_file", "2016/12/Coast_Savings_Vert_300.pdf");
INSERT INTO `wp_postmeta` VALUES("13729", "14593", "_wp_attached_file", "2016/12/CSS-logo1-e1481051049766.jpg");
INSERT INTO `wp_postmeta` VALUES("13730", "14593", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:73;s:4:\"file\";s:36:\"2016/12/CSS-logo1-e1481051049766.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"CSS-logo1-150x135.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"CSS-logo1-300x109.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:109;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13731", "14593", "_edit_lock", "1481050933:1");
INSERT INTO `wp_postmeta` VALUES("13732", "14593", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:369;s:6:\"height\";i:135;s:4:\"file\";s:13:\"CSS-logo1.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13733", "14593", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13734", "14593", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13735", "14593", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13736", "14593", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13737", "14594", "_wp_attached_file", "2016/12/Poster-PCT-Dialogues-Jan-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13738", "14595", "_edit_lock", "1515437735:1");
INSERT INTO `wp_postmeta` VALUES("13739", "14595", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("13740", "14595", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13741", "14595", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13742", "14594", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13743", "14597", "_edit_lock", "1481137444:1");
INSERT INTO `wp_postmeta` VALUES("13744", "14597", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13745", "14597", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13746", "14597", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13747", "14598", "_wp_attached_file", "2016/12/Poster-MBTI-January-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13748", "14598", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13749", "14605", "_wp_attached_file", "2016/12/Christmas-Newsletter-2016-.pdf");
INSERT INTO `wp_postmeta` VALUES("13750", "14605", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13751", "14608", "_wp_attached_file", "2016/12/Bowen-12-week-Mar-May-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13752", "14608", "_edit_lock", "1481743329:1");
INSERT INTO `wp_postmeta` VALUES("13753", "14608", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13754", "14608", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13755", "14609", "_edit_lock", "1487789384:1");
INSERT INTO `wp_postmeta` VALUES("13756", "14609", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13757", "14609", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13758", "14609", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13759", "14612", "_wp_attached_file", "2016/12/Bowen-12-week-Mar-May-20171.pdf");
INSERT INTO `wp_postmeta` VALUES("13760", "14612", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13761", "14615", "_wp_attached_file", "2017/01/Poster-YgAdt-Support-Grp-FebApril-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13762", "14615", "_edit_lock", "1484081310:1");
INSERT INTO `wp_postmeta` VALUES("13763", "14615", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13764", "14615", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13769", "14620", "_wp_attached_file", "2017/01/Poster-YgAdt-Support-Grp-FebApril-20171.pdf");
INSERT INTO `wp_postmeta` VALUES("13770", "14620", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13771", "14620", "_edit_lock", "1484153526:1");
INSERT INTO `wp_postmeta` VALUES("13772", "14620", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13773", "13311", "_edit_lock", "1485195649:1");
INSERT INTO `wp_postmeta` VALUES("13774", "13311", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:152;s:6:\"height\";i:67;s:4:\"file\";s:24:\"UnitedWayFull375x165.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13775", "13311", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13776", "14628", "_wp_attached_file", "2017/01/Marriage-Prep-Feb-11-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13777", "14629", "_edit_lock", "1485197368:1");
INSERT INTO `wp_postmeta` VALUES("13778", "14629", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13779", "14629", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13780", "14629", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13781", "14630", "_wp_attached_file", "2017/01/Marriage-Prep-Feb-11-20171.pdf");
INSERT INTO `wp_postmeta` VALUES("13782", "14630", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13783", "14636", "_edit_lock", "1501291830:6");
INSERT INTO `wp_postmeta` VALUES("13784", "14636", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13785", "14636", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13786", "14636", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13787", "14636", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13788", "14636", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13789", "14636", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13790", "14636", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13791", "14636", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13792", "14636", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13793", "14636", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13794", "14636", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13795", "14636", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13796", "14636", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13797", "14636", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13798", "14636", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13799", "14636", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13800", "14636", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13801", "14636", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13802", "14636", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13803", "14636", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13804", "14636", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13805", "14636", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13806", "14636", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13807", "14636", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13808", "14636", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13809", "14636", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13810", "14636", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13811", "14636", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13812", "14636", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13813", "14636", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13814", "14636", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13815", "14636", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13816", "14636", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13817", "14636", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13818", "14636", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13819", "14636", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13820", "14636", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13821", "14636", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13822", "14649", "_wp_attached_file", "2017/01/Destress-Your-Life-Support-Group-FebApril-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13823", "14649", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13824", "14653", "_wp_attached_file", "2017/02/Poster-MBTI-March-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13825", "14654", "_edit_lock", "1486407521:1");
INSERT INTO `wp_postmeta` VALUES("13826", "14653", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13827", "14654", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13828", "14654", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13829", "14654", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13830", "14673", "_edit_lock", "1487702224:1");
INSERT INTO `wp_postmeta` VALUES("13831", "14673", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13832", "14673", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13833", "14673", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13834", "14674", "_wp_attached_file", "2017/02/Youth-Support-Group-April-June-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13835", "14675", "_wp_attached_file", "2017/02/Young-Adult-Group-April-June-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13838", "14674", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13839", "14676", "_edit_lock", "1487879100:1");
INSERT INTO `wp_postmeta` VALUES("13840", "14676", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13841", "14675", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13842", "14676", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13843", "14676", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13846", "14676", "_ai1ec_cost_type", "external");
INSERT INTO `wp_postmeta` VALUES("13847", "14673", "_ai1ec_cost_type", "external");
INSERT INTO `wp_postmeta` VALUES("13848", "14609", "_ai1ec_cost_type", "external");
INSERT INTO `wp_postmeta` VALUES("13849", "14694", "_wp_attached_file", "2017/03/Hand-with-tree-Photo.jpg");
INSERT INTO `wp_postmeta` VALUES("13850", "14694", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:808;s:6:\"height\";i:310;s:4:\"file\";s:32:\"2017/03/Hand-with-tree-Photo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Hand-with-tree-Photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Hand-with-tree-Photo-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13851", "14694", "_edit_lock", "1520963870:1");
INSERT INTO `wp_postmeta` VALUES("13852", "14694", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13853", "12818", "_edit_lock", "1501021735:6");
INSERT INTO `wp_postmeta` VALUES("13854", "12796", "_edit_lock", "1498111502:1");
INSERT INTO `wp_postmeta` VALUES("13857", "14705", "_edit_lock", "1520283171:1");
INSERT INTO `wp_postmeta` VALUES("13858", "14705", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13859", "14705", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13860", "14705", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("13861", "14705", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13862", "14706", "_wp_attached_file", "2017/03/Marriage-Prep-June-10-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13863", "14706", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13864", "14709", "_edit_lock", "1498113137:1");
INSERT INTO `wp_postmeta` VALUES("13865", "14709", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13866", "14709", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13867", "14709", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13868", "14709", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13869", "14709", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13870", "14709", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13871", "14709", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13872", "14709", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13873", "14709", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13874", "14709", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13875", "14709", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13876", "14709", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13877", "14709", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13878", "14709", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13879", "14709", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13880", "14709", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13881", "14709", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13882", "14709", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13883", "14709", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13884", "14709", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13885", "14709", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13886", "14709", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13887", "14709", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13888", "14709", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13889", "14709", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13890", "14709", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13891", "14709", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13892", "14709", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13893", "14709", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13894", "14709", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13895", "14709", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13896", "14709", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13897", "14709", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13898", "14709", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13899", "14709", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13900", "14709", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13901", "14709", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13902", "14709", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13904", "14722", "_wp_attached_file", "2017/05/Mental-Health-Week-logo.jpg");
INSERT INTO `wp_postmeta` VALUES("13905", "14722", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:517;s:6:\"height\";i:513;s:4:\"file\";s:35:\"2017/05/Mental-Health-Week-logo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Mental-Health-Week-logo-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:\"Mental-Health-Week-logo-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13906", "14746", "_edit_lock", "1493914660:1");
INSERT INTO `wp_postmeta` VALUES("13907", "14746", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13908", "14746", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13909", "14746", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("13910", "14746", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13911", "14747", "_edit_lock", "1493918864:1");
INSERT INTO `wp_postmeta` VALUES("13912", "14747", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13913", "14747", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13914", "14747", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("13915", "14747", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13916", "14747", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13917", "14747", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13918", "14747", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("13919", "14747", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("13920", "14747", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("13921", "14747", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("13922", "14747", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("13923", "14747", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("13924", "14747", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("13925", "14747", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("13926", "14747", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13927", "14747", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("13928", "14747", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("13929", "14747", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("13930", "14747", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("13931", "14747", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("13932", "14747", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("13933", "14747", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("13934", "14747", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("13935", "14747", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13936", "14747", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("13937", "14747", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("13938", "14747", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("13939", "14747", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13940", "14747", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("13941", "14747", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("13942", "14747", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("13943", "14747", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("13944", "14747", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("13945", "14747", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("13946", "14747", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("13947", "14747", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("13948", "14747", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("13949", "14747", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("13950", "14750", "_wp_attached_file", "2017/05/Poster-Teen-summer-support-grp-July-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13951", "14750", "_edit_lock", "1494960830:1");
INSERT INTO `wp_postmeta` VALUES("13952", "14750", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13953", "14750", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13954", "14751", "_wp_attached_file", "2017/05/Poster-Teen-summer-support-grp-July-20171.pdf");
INSERT INTO `wp_postmeta` VALUES("13955", "14751", "_edit_lock", "1494960945:1");
INSERT INTO `wp_postmeta` VALUES("13956", "14751", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13957", "14751", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13958", "14752", "_edit_lock", "1505324060:1");
INSERT INTO `wp_postmeta` VALUES("13959", "14752", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13960", "14752", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13961", "14752", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("13962", "14752", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13963", "14759", "_edit_lock", "1528994326:10");
INSERT INTO `wp_postmeta` VALUES("13964", "14759", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("13965", "14759", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("13966", "14759", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("13967", "14759", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("13968", "14760", "_wp_attached_file", "2017/06/Bowen-August-21-25-Intensive-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("13969", "14760", "_edit_lock", "1496348078:1");
INSERT INTO `wp_postmeta` VALUES("13970", "14760", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13971", "14760", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13972", "14768", "_wp_attached_file", "2017/06/Habourside-Rotary-logo-e1496950716677.jpg");
INSERT INTO `wp_postmeta` VALUES("13973", "14768", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:92;s:4:\"file\";s:49:\"2017/06/Habourside-Rotary-logo-e1496950716677.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Habourside-Rotary-logo-150x130.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Habourside-Rotary-logo-300x55.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:55;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13974", "14768", "_edit_lock", "1498110848:1");
INSERT INTO `wp_postmeta` VALUES("13975", "14768", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:708;s:6:\"height\";i:130;s:4:\"file\";s:26:\"Habourside-Rotary-logo.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("13976", "14768", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13977", "14768", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13978", "14768", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13979", "14768", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13980", "14772", "_wp_attached_file", "2017/06/harborside-2.jpg");
INSERT INTO `wp_postmeta` VALUES("13981", "14772", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:101;s:6:\"height\";i:96;s:4:\"file\";s:24:\"2017/06/harborside-2.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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("13982", "14772", "_edit_lock", "1498110844:1");
INSERT INTO `wp_postmeta` VALUES("13983", "14772", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13984", "14772", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("13985", "14772", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("13986", "14772", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("13988", "14478", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("13990", "12753", "_edit_lock", "1510303035:6");
INSERT INTO `wp_postmeta` VALUES("13991", "155", "_edit_lock", "1498112250:1");
INSERT INTO `wp_postmeta` VALUES("13993", "14722", "_edit_lock", "1498110864:1");
INSERT INTO `wp_postmeta` VALUES("13994", "12790", "_edit_lock", "1498111492:1");
INSERT INTO `wp_postmeta` VALUES("13995", "12820", "_edit_lock", "1498111779:1");
INSERT INTO `wp_postmeta` VALUES("13998", "12958", "_edit_lock", "1498334470:6");
INSERT INTO `wp_postmeta` VALUES("13999", "12751", "_edit_lock", "1498111943:1");
INSERT INTO `wp_postmeta` VALUES("14000", "12826", "_edit_lock", "1498113953:1");
INSERT INTO `wp_postmeta` VALUES("14003", "14785", "_edit_lock", "1519847517:1");
INSERT INTO `wp_postmeta` VALUES("14004", "14785", "_dt_slider_media_items", "a:1:{i:0;i:14694;}");
INSERT INTO `wp_postmeta` VALUES("14005", "14785", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("14006", "14785", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("14202", "29", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("14203", "12771", "_edit_lock", "1498334969:6");
INSERT INTO `wp_postmeta` VALUES("14204", "12771", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("14205", "12772", "_edit_lock", "1498495026:6");
INSERT INTO `wp_postmeta` VALUES("14265", "60", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("14266", "60", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("14267", "60", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14268", "60", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14269", "60", "_dt_blog_options_item_padding", "5");
INSERT INTO `wp_postmeta` VALUES("14270", "60", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14271", "60", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14272", "60", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("14273", "60", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14274", "60", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14275", "60", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14276", "60", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14277", "60", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14278", "60", "_dt_portfolio_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14279", "60", "_dt_portfolio_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("14280", "60", "_dt_portfolio_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14281", "60", "_dt_portfolio_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14282", "60", "_dt_portfolio_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("14283", "60", "_dt_portfolio_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14284", "60", "_dt_portfolio_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14285", "60", "_dt_portfolio_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("14286", "60", "_dt_portfolio_options_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("14287", "60", "_dt_portfolio_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14288", "60", "_dt_portfolio_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14289", "60", "_dt_portfolio_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14290", "60", "_dt_portfolio_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14291", "60", "_dt_portfolio_options_jgrid_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("14292", "60", "_dt_portfolio_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14293", "60", "_dt_portfolio_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14294", "60", "_dt_portfolio_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14295", "60", "_dt_portfolio_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("14296", "60", "_dt_portfolio_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("14297", "60", "_dt_portfolio_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14298", "60", "_dt_portfolio_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14299", "60", "_dt_portfolio_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("14300", "60", "_dt_portfolio_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("14301", "60", "_dt_portfolio_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("14302", "60", "_dt_portfolio_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("14303", "60", "_dt_portfolio_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("14304", "60", "_dt_portfolio_options_show_links", "1");
INSERT INTO `wp_postmeta` VALUES("14305", "60", "_dt_portfolio_options_show_zoom", "1");
INSERT INTO `wp_postmeta` VALUES("14306", "60", "_dt_portfolio_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("14307", "60", "_dt_portfolio_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("14308", "60", "_dt_portfolio_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14309", "60", "_dt_portfolio_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14310", "60", "_dt_portfolio_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14311", "60", "_dt_testimonials_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14312", "60", "_dt_testimonials_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14313", "60", "_dt_testimonials_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14314", "60", "_dt_testimonials_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14315", "60", "_dt_testimonials_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14316", "60", "_dt_team_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14317", "60", "_dt_team_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14318", "60", "_dt_team_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14319", "60", "_dt_team_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14320", "60", "_dt_team_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14321", "60", "_dt_albums_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14322", "60", "_dt_albums_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14323", "60", "_dt_albums_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14324", "60", "_dt_albums_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("14325", "60", "_dt_albums_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14326", "60", "_dt_albums_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14327", "60", "_dt_albums_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("14328", "60", "_dt_albums_options_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("14329", "60", "_dt_albums_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14330", "60", "_dt_albums_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14331", "60", "_dt_albums_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14332", "60", "_dt_albums_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("14333", "60", "_dt_albums_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("14334", "60", "_dt_albums_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14335", "60", "_dt_albums_options_jgrid_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("14336", "60", "_dt_albums_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14337", "60", "_dt_albums_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14338", "60", "_dt_albums_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14339", "60", "_dt_albums_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14340", "60", "_dt_albums_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14341", "60", "_dt_albums_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("14342", "60", "_dt_albums_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("14343", "60", "_dt_albums_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("14344", "60", "_dt_albums_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("14345", "60", "_dt_albums_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("14346", "60", "_dt_albums_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("14347", "60", "_dt_albums_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14348", "60", "_dt_albums_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14349", "60", "_dt_albums_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14350", "60", "_dt_albums_media_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14351", "60", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14352", "60", "_dt_media_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14353", "60", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("14354", "60", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14355", "60", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14356", "60", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("14357", "60", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14358", "60", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14359", "60", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14360", "60", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14361", "60", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14362", "60", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14363", "60", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14364", "60", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("14365", "60", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14366", "60", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14367", "60", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("14368", "60", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("14369", "60", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("14370", "60", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14371", "60", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14372", "60", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14373", "60", "_dt_microsite_page_loading", "1");
INSERT INTO `wp_postmeta` VALUES("14374", "60", "_dt_microsite_header_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14375", "60", "_dt_microsite_header_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14376", "60", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14377", "60", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14378", "60", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14379", "60", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14380", "60", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14381", "60", "_dt_microsite_primary_menu", "0");
INSERT INTO `wp_postmeta` VALUES("14477", "14478", "_wp_old_slug", "positive-psychology-group");
INSERT INTO `wp_postmeta` VALUES("14478", "14478", "_wp_old_slug", "pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson");
INSERT INTO `wp_postmeta` VALUES("14495", "11", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14496", "11", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14497", "11", "_dt_blog_options_item_padding", "5");
INSERT INTO `wp_postmeta` VALUES("14498", "11", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14499", "11", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14500", "11", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("14501", "11", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14502", "11", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14503", "11", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14504", "11", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14505", "11", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14506", "11", "_dt_portfolio_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14507", "11", "_dt_portfolio_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("14508", "11", "_dt_portfolio_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14509", "11", "_dt_portfolio_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14510", "11", "_dt_portfolio_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("14511", "11", "_dt_portfolio_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14512", "11", "_dt_portfolio_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14513", "11", "_dt_portfolio_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("14514", "11", "_dt_portfolio_options_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("14515", "11", "_dt_portfolio_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14516", "11", "_dt_portfolio_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14517", "11", "_dt_portfolio_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14518", "11", "_dt_portfolio_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14519", "11", "_dt_portfolio_options_jgrid_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("14520", "11", "_dt_portfolio_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14521", "11", "_dt_portfolio_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14522", "11", "_dt_portfolio_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14523", "11", "_dt_portfolio_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("14524", "11", "_dt_portfolio_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("14525", "11", "_dt_portfolio_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14526", "11", "_dt_portfolio_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14527", "11", "_dt_portfolio_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("14528", "11", "_dt_portfolio_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("14529", "11", "_dt_portfolio_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("14530", "11", "_dt_portfolio_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("14531", "11", "_dt_portfolio_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("14532", "11", "_dt_portfolio_options_show_links", "1");
INSERT INTO `wp_postmeta` VALUES("14533", "11", "_dt_portfolio_options_show_zoom", "1");
INSERT INTO `wp_postmeta` VALUES("14534", "11", "_dt_portfolio_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("14535", "11", "_dt_portfolio_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("14536", "11", "_dt_portfolio_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14537", "11", "_dt_portfolio_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14538", "11", "_dt_portfolio_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14539", "11", "_dt_testimonials_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14540", "11", "_dt_testimonials_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14541", "11", "_dt_testimonials_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14542", "11", "_dt_testimonials_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14543", "11", "_dt_testimonials_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14544", "11", "_dt_team_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14545", "11", "_dt_team_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14546", "11", "_dt_team_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14547", "11", "_dt_team_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14548", "11", "_dt_team_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14549", "11", "_dt_albums_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14550", "11", "_dt_albums_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14551", "11", "_dt_albums_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14552", "11", "_dt_albums_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("14553", "11", "_dt_albums_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14554", "11", "_dt_albums_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14555", "11", "_dt_albums_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("14556", "11", "_dt_albums_options_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("14557", "11", "_dt_albums_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14558", "11", "_dt_albums_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14559", "11", "_dt_albums_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14560", "11", "_dt_albums_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("14561", "11", "_dt_albums_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("14562", "11", "_dt_albums_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14563", "11", "_dt_albums_options_jgrid_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("14564", "11", "_dt_albums_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14565", "11", "_dt_albums_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14566", "11", "_dt_albums_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14567", "11", "_dt_albums_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14568", "11", "_dt_albums_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14569", "11", "_dt_albums_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("14570", "11", "_dt_albums_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("14571", "11", "_dt_albums_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("14572", "11", "_dt_albums_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("14573", "11", "_dt_albums_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("14574", "11", "_dt_albums_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("14575", "11", "_dt_albums_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14576", "11", "_dt_albums_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14577", "11", "_dt_albums_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14578", "11", "_dt_microsite_page_loading", "enabled");
INSERT INTO `wp_postmeta` VALUES("14579", "11", "_dt_microsite_header_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14580", "11", "_dt_microsite_header_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14581", "11", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14582", "11", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14583", "11", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14584", "11", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14585", "11", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14586", "11", "_dt_microsite_primary_menu", "");
INSERT INTO `wp_postmeta` VALUES("14587", "15069", "_EventOrigin", "events-calendar");
INSERT INTO `wp_postmeta` VALUES("14588", "15069", "_tribe_modified_fields", "a:18:{s:12:\"_EventOrigin\";d:1500997077;s:10:\"_edit_last\";d:1500997277;s:14:\"slide_template\";d:1500997277;s:10:\"post_title\";d:1500997278;s:11:\"post_status\";d:1500997278;s:17:\"_EventShowMapLink\";d:1500997278;s:13:\"_EventShowMap\";d:1500997278;s:15:\"_EventStartDate\";d:1500997278;s:13:\"_EventEndDate\";d:1500997278;s:18:\"_EventStartDateUTC\";d:1500997278;s:16:\"_EventEndDateUTC\";d:1500997278;s:14:\"_EventDuration\";d:1500997278;s:20:\"_EventCurrencySymbol\";d:1500997278;s:22:\"_EventCurrencyPosition\";d:1500997278;s:10:\"_EventCost\";d:1500997278;s:9:\"_EventURL\";d:1500997278;s:14:\"_EventTimezone\";d:1500997278;s:18:\"_EventTimezoneAbbr\";d:1500997278;}");
INSERT INTO `wp_postmeta` VALUES("14589", "15071", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("14591", "15073", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("14592", "15074", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("14601", "15069", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("14602", "15069", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("14603", "15075", "_EventShowMapLink", "");
INSERT INTO `wp_postmeta` VALUES("14604", "15075", "_EventShowMap", "");
INSERT INTO `wp_postmeta` VALUES("14605", "15075", "_EventStartDate", "2017-07-25 08:00:00");
INSERT INTO `wp_postmeta` VALUES("14606", "15075", "_EventEndDate", "2017-07-25 17:00:00");
INSERT INTO `wp_postmeta` VALUES("14607", "15075", "_EventStartDateUTC", "2017-07-25 15:00:00");
INSERT INTO `wp_postmeta` VALUES("14608", "15075", "_EventEndDateUTC", "2017-07-26 00:00:00");
INSERT INTO `wp_postmeta` VALUES("14609", "15075", "_EventDuration", "32400");
INSERT INTO `wp_postmeta` VALUES("14610", "15075", "_EventCurrencySymbol", "");
INSERT INTO `wp_postmeta` VALUES("14611", "15075", "_EventCurrencyPosition", "prefix");
INSERT INTO `wp_postmeta` VALUES("14612", "15075", "_EventCost", "");
INSERT INTO `wp_postmeta` VALUES("14613", "15075", "_EventURL", "");
INSERT INTO `wp_postmeta` VALUES("14614", "15075", "_EventTimezone", "America/Vancouver");
INSERT INTO `wp_postmeta` VALUES("14615", "15075", "_EventTimezoneAbbr", "PDT");
INSERT INTO `wp_postmeta` VALUES("14616", "15069", "_EventShowMapLink", "");
INSERT INTO `wp_postmeta` VALUES("14617", "15069", "_EventShowMap", "");
INSERT INTO `wp_postmeta` VALUES("14618", "15069", "_EventStartDate", "2017-07-25 08:00:00");
INSERT INTO `wp_postmeta` VALUES("14619", "15069", "_EventEndDate", "2017-07-25 17:00:00");
INSERT INTO `wp_postmeta` VALUES("14620", "15069", "_EventStartDateUTC", "2017-07-25 15:00:00");
INSERT INTO `wp_postmeta` VALUES("14621", "15069", "_EventEndDateUTC", "2017-07-26 00:00:00");
INSERT INTO `wp_postmeta` VALUES("14622", "15069", "_EventDuration", "32400");
INSERT INTO `wp_postmeta` VALUES("14623", "15069", "_EventCurrencySymbol", "");
INSERT INTO `wp_postmeta` VALUES("14624", "15069", "_EventCurrencyPosition", "prefix");
INSERT INTO `wp_postmeta` VALUES("14625", "15069", "_EventCost", "");
INSERT INTO `wp_postmeta` VALUES("14626", "15069", "_EventURL", "");
INSERT INTO `wp_postmeta` VALUES("14627", "15069", "_EventTimezone", "America/Vancouver");
INSERT INTO `wp_postmeta` VALUES("14628", "15069", "_EventTimezoneAbbr", "PDT");
INSERT INTO `wp_postmeta` VALUES("14629", "15069", "_edit_lock", "1501022484:6");
INSERT INTO `wp_postmeta` VALUES("14630", "15079", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("14631", "15078", "_edit_lock", "1507239734:1");
INSERT INTO `wp_postmeta` VALUES("14632", "15078", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("14633", "15078", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("14634", "15078", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("14635", "15078", "_dp_original", "14174");
INSERT INTO `wp_postmeta` VALUES("14636", "15078", "_ai1ec_cost_type", "external");
INSERT INTO `wp_postmeta` VALUES("14637", "15082", "_wp_attached_file", "2017/07/Poster-PCTT-Oct-14-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("14638", "15082", "_edit_lock", "1501181523:6");
INSERT INTO `wp_postmeta` VALUES("14639", "15082", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("14641", "15061", "_edit_lock", "1527108241:10");
INSERT INTO `wp_postmeta` VALUES("14642", "15061", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("14643", "15061", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("14644", "15061", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("14645", "15061", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("14646", "15061", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("14647", "15061", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("14648", "15061", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("14649", "15061", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("14650", "15061", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("14651", "15061", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14652", "15061", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("14653", "15061", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14654", "15061", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("14655", "15061", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("14656", "15061", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("14657", "15061", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("14658", "15061", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("14659", "15061", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("14660", "15061", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14661", "15061", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14662", "15061", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("14663", "15061", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("14664", "15061", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14665", "15061", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14666", "15061", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("14667", "15061", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14668", "15061", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("14669", "15061", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("14670", "15061", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("14671", "15061", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("14672", "15061", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("14673", "15061", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("14674", "15061", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("14675", "15087", "_edit_lock", "1501281081:6");
INSERT INTO `wp_postmeta` VALUES("14676", "15087", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("14677", "15087", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("14678", "15087", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("14679", "15087", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("14680", "15087", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("14681", "15087", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("14682", "15087", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("14683", "15087", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("14684", "15087", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("14685", "15087", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("14686", "15087", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("14687", "15087", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("14688", "15087", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("14689", "15087", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14690", "15087", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("14691", "15087", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14692", "15087", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("14693", "15087", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("14694", "15087", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("14695", "15087", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("14696", "15087", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("14697", "15087", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("14698", "15087", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14699", "15087", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14700", "15087", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("14701", "15087", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("14702", "15087", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14703", "15087", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14704", "15087", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("14705", "15087", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14706", "15087", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("14707", "15087", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("14708", "15087", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("14709", "15087", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("14710", "15087", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("14711", "15087", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("14712", "15087", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("14720", "44", "_subtitle", "CHPCA, BCHPCA");
INSERT INTO `wp_postmeta` VALUES("14721", "13952", "_subtitle", "MEd, RCC, Director of Services");
INSERT INTO `wp_postmeta` VALUES("14722", "13952", "wps_subtitle", "MEd, RCC, Director of Services");
INSERT INTO `wp_postmeta` VALUES("14723", "15101", "wps_subtitle", "MEd, RCC, Director of Services");
INSERT INTO `wp_postmeta` VALUES("14724", "15090", "wps_subtitle", "MEd, RCC, Director of Services");
INSERT INTO `wp_postmeta` VALUES("14785", "15097", "wps_subtitle", " <?php the_subtitle(Margaret Anderson CHPCA, BCHPCA); ?> ");
INSERT INTO `wp_postmeta` VALUES("14802", "15113", "_edit_lock", "1525824058:10");
INSERT INTO `wp_postmeta` VALUES("14803", "15113", "_edit_last", "3");
INSERT INTO `wp_postmeta` VALUES("14804", "15113", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("14805", "15113", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("14806", "15113", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("14807", "15113", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("14808", "15113", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("14809", "15113", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("14810", "15113", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("14811", "15113", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("14812", "15113", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("14813", "15113", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("14814", "15113", "_dt_slideshow_mode", "");
INSERT INTO `wp_postmeta` VALUES("14815", "15113", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("14816", "15113", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14817", "15113", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("14818", "15113", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14819", "15113", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("14820", "15113", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("14821", "15113", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("14822", "15113", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("14823", "15113", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("14824", "15113", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("14825", "15113", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14826", "15113", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14827", "15113", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("14828", "15113", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("14829", "15113", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14830", "15113", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14831", "15113", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("14832", "15113", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14833", "15113", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("14834", "15113", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("14835", "15113", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("14836", "15113", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("14837", "15113", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("14838", "15113", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("14839", "15113", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("14840", "15117", "_edit_lock", "1510303292:6");
INSERT INTO `wp_postmeta` VALUES("14841", "15117", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("14842", "15117", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("14843", "15117", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("14844", "15117", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("14845", "15117", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("14846", "15117", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("14847", "15117", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("14848", "15117", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("14849", "15117", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("14850", "15117", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("14851", "15117", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("14852", "15117", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("14853", "15117", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("14854", "15117", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14855", "15117", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("14856", "15117", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14857", "15117", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("14858", "15117", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("14859", "15117", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("14860", "15117", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("14861", "15117", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("14862", "15117", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("14863", "15117", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14864", "15117", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14865", "15117", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("14866", "15117", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("14867", "15117", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14868", "15117", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14869", "15117", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("14870", "15117", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14871", "15117", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("14872", "15117", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("14873", "15117", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("14874", "15117", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("14875", "15117", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("14876", "15117", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("14877", "15117", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("14881", "15121", "_edit_lock", "1515007619:9");
INSERT INTO `wp_postmeta` VALUES("14882", "15121", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("14883", "15121", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("14884", "15121", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("14885", "15121", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("14886", "15121", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("14887", "15121", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("14888", "15121", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("14889", "15121", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("14890", "15121", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("14891", "15121", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("14892", "15121", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("14893", "15121", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("14894", "15121", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("14895", "15121", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14896", "15121", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("14897", "15121", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("14898", "15121", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("14899", "15121", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("14900", "15121", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("14901", "15121", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("14902", "15121", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("14903", "15121", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("14904", "15121", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14905", "15121", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("14906", "15121", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("14907", "15121", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("14908", "15121", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14909", "15121", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("14910", "15121", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("14911", "15121", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("14912", "15121", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("14913", "15121", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("14914", "15121", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("14915", "15121", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("14916", "15121", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("14917", "15121", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("14918", "15121", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("14923", "14653", "_edit_lock", "1501700298:1");
INSERT INTO `wp_postmeta` VALUES("14924", "15131", "_edit_lock", "1502837789:6");
INSERT INTO `wp_postmeta` VALUES("14925", "15131", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("14928", "15133", "_edit_lock", "1505433594:6");
INSERT INTO `wp_postmeta` VALUES("14929", "15133", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("14930", "15133", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("14931", "15133", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("14932", "15136", "_wp_attached_file", "2017/08/2017-Living-With-Loss-Part-1-Poster-Draft.pdf");
INSERT INTO `wp_postmeta` VALUES("14933", "15147", "_edit_lock", "1518727986:1");
INSERT INTO `wp_postmeta` VALUES("14934", "15147", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("14936", "15147", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("14937", "15147", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("14939", "15168", "_edit_lock", "1503598946:1");
INSERT INTO `wp_postmeta` VALUES("14940", "15168", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("14941", "15169", "_wp_attached_file", "2017/08/Young-Adult-Group-Fall-2017.docx");
INSERT INTO `wp_postmeta` VALUES("14942", "15169", "_edit_lock", "1503598861:1");
INSERT INTO `wp_postmeta` VALUES("14943", "12799", "wps_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("14944", "15171", "wps_subtitle", "Courses on Offer");
INSERT INTO `wp_postmeta` VALUES("14945", "15172", "wps_subtitle", "Young Adult Support Group. Struggling with Anxiety due to work, school, relationships, life in general? This is the group for you. 8 Tuesday evenings beginning September 26. 6:30-8:30 p.m. Only $55. Register by Sept. 19.");
INSERT INTO `wp_postmeta` VALUES("14946", "15173", "wps_subtitle", "Young Adult Support Group. Struggling with Anxiety due to work, school, relationships, life in general? This is the group for you. 8 Tuesday evenings beginning September 26. 6:30-8:30 p.m. Only $55. Register by Sept. 19.");
INSERT INTO `wp_postmeta` VALUES("14947", "12799", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("14948", "12799", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("14949", "12799", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14950", "12799", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14951", "12799", "_dt_blog_options_item_padding", "5");
INSERT INTO `wp_postmeta` VALUES("14952", "12799", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14953", "12799", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14954", "12799", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("14955", "12799", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14956", "12799", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14957", "12799", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14958", "12799", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14959", "12799", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14960", "12799", "_dt_portfolio_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14961", "12799", "_dt_portfolio_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("14962", "12799", "_dt_portfolio_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14963", "12799", "_dt_portfolio_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14964", "12799", "_dt_portfolio_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("14965", "12799", "_dt_portfolio_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14966", "12799", "_dt_portfolio_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14967", "12799", "_dt_portfolio_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("14968", "12799", "_dt_portfolio_options_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("14969", "12799", "_dt_portfolio_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14970", "12799", "_dt_portfolio_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14971", "12799", "_dt_portfolio_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14972", "12799", "_dt_portfolio_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14973", "12799", "_dt_portfolio_options_jgrid_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("14974", "12799", "_dt_portfolio_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("14975", "12799", "_dt_portfolio_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("14976", "12799", "_dt_portfolio_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("14977", "12799", "_dt_portfolio_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("14978", "12799", "_dt_portfolio_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("14979", "12799", "_dt_portfolio_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("14980", "12799", "_dt_portfolio_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("14981", "12799", "_dt_portfolio_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("14982", "12799", "_dt_portfolio_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("14983", "12799", "_dt_portfolio_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("14984", "12799", "_dt_portfolio_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("14985", "12799", "_dt_portfolio_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("14986", "12799", "_dt_portfolio_options_show_links", "1");
INSERT INTO `wp_postmeta` VALUES("14987", "12799", "_dt_portfolio_options_show_zoom", "1");
INSERT INTO `wp_postmeta` VALUES("14988", "12799", "_dt_portfolio_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("14989", "12799", "_dt_portfolio_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("14990", "12799", "_dt_portfolio_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("14991", "12799", "_dt_portfolio_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("14992", "12799", "_dt_portfolio_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("14993", "12799", "_dt_testimonials_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14994", "12799", "_dt_testimonials_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("14995", "12799", "_dt_testimonials_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("14996", "12799", "_dt_testimonials_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("14997", "12799", "_dt_testimonials_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("14998", "12799", "_dt_team_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("14999", "12799", "_dt_team_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15000", "12799", "_dt_team_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15001", "12799", "_dt_team_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15002", "12799", "_dt_team_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15003", "12799", "_dt_albums_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15004", "12799", "_dt_albums_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15005", "12799", "_dt_albums_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15006", "12799", "_dt_albums_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("15007", "12799", "_dt_albums_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15008", "12799", "_dt_albums_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15009", "12799", "_dt_albums_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("15010", "12799", "_dt_albums_options_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("15011", "12799", "_dt_albums_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15012", "12799", "_dt_albums_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15013", "12799", "_dt_albums_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15014", "12799", "_dt_albums_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("15015", "12799", "_dt_albums_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("15016", "12799", "_dt_albums_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15017", "12799", "_dt_albums_options_jgrid_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("15018", "12799", "_dt_albums_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15019", "12799", "_dt_albums_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15020", "12799", "_dt_albums_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15021", "12799", "_dt_albums_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("15022", "12799", "_dt_albums_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("15023", "12799", "_dt_albums_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("15024", "12799", "_dt_albums_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("15025", "12799", "_dt_albums_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("15026", "12799", "_dt_albums_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("15027", "12799", "_dt_albums_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("15028", "12799", "_dt_albums_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("15029", "12799", "_dt_albums_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("15030", "12799", "_dt_albums_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("15031", "12799", "_dt_albums_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("15032", "12799", "_dt_albums_media_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15033", "12799", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15034", "12799", "_dt_media_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15035", "12799", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("15036", "12799", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15037", "12799", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15038", "12799", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("15039", "12799", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15040", "12799", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15041", "12799", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15042", "12799", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15043", "12799", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15044", "12799", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15045", "12799", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15046", "12799", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("15047", "12799", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("15048", "12799", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("15049", "12799", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("15050", "12799", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("15051", "12799", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("15052", "12799", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("15053", "12799", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("15054", "12799", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("15055", "12799", "_dt_microsite_page_loading", "enabled");
INSERT INTO `wp_postmeta` VALUES("15056", "12799", "_dt_microsite_header_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15057", "12799", "_dt_microsite_header_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15058", "12799", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15059", "12799", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15060", "12799", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15061", "12799", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15062", "12799", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15063", "12799", "_dt_microsite_primary_menu", "");
INSERT INTO `wp_postmeta` VALUES("15064", "15174", "_edit_lock", "1504241496:6");
INSERT INTO `wp_postmeta` VALUES("15065", "15174", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("15066", "15175", "_edit_lock", "1520283326:1");
INSERT INTO `wp_postmeta` VALUES("15067", "15175", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15068", "15175", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15069", "15175", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15070", "15176", "_wp_attached_file", "2017/08/Young-Adult-Group-Fall-2017.pdf");
INSERT INTO `wp_postmeta` VALUES("15071", "15180", "wps_subtitle", "Young Adult Support Group. Struggling with Anxiety due to work, school, relationships, life in general? This is the group for you. 8 Tuesday evenings beginning September 26. 6:30-8:30 p.m. Only $55. Register by Sept. 19.");
INSERT INTO `wp_postmeta` VALUES("15073", "15191", "_wp_attached_file", "2017/09/Gala-poster.pdf");
INSERT INTO `wp_postmeta` VALUES("15074", "15195", "_edit_lock", "1507053225:1");
INSERT INTO `wp_postmeta` VALUES("15075", "15195", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15076", "15191", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15077", "15195", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15078", "15195", "_ai1ec_cost_type", "external");
INSERT INTO `wp_postmeta` VALUES("15086", "15200", "_wp_attached_file", "2013/11/banner-background-1.jpg");
INSERT INTO `wp_postmeta` VALUES("15087", "15200", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:20;s:4:\"file\";s:31:\"2013/11/banner-background-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"banner-background-1-150x20.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"banner-background-1-300x12.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:12;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("15088", "15207", "_edit_lock", "1505323964:1");
INSERT INTO `wp_postmeta` VALUES("15089", "15207", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15091", "15209", "_edit_lock", "1505435061:6");
INSERT INTO `wp_postmeta` VALUES("15092", "15209", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("15093", "15209", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15094", "15209", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15095", "15211", "_wp_attached_file", "2017/09/Poster-Teen-summer-support-grp-fall-2017_rev1.pdf");
INSERT INTO `wp_postmeta` VALUES("15096", "15215", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15097", "15215", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15098", "15215", "_ai1ec_event_parent", "{\"created\":1505433591,\"instance\":\"886\"}");
INSERT INTO `wp_postmeta` VALUES("15099", "15215", "_edit_lock", "1505433485:6");
INSERT INTO `wp_postmeta` VALUES("15100", "15217", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15101", "15217", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15102", "15217", "_ai1ec_event_parent", "{\"created\":1505433648,\"instance\":\"902\"}");
INSERT INTO `wp_postmeta` VALUES("15103", "15217", "_edit_lock", "1505433769:6");
INSERT INTO `wp_postmeta` VALUES("15104", "15223", "_wp_attached_file", "2017/08/Poster-Teen-summer-support-grp-fall-2017.docx");
INSERT INTO `wp_postmeta` VALUES("15105", "15224", "_wp_attached_file", "2017/09/Young-Adult-Group-Fall-2017.docx");
INSERT INTO `wp_postmeta` VALUES("15106", "15224", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15107", "15228", "_wp_attached_file", "2017/09/Gala-poster-1.pdf");
INSERT INTO `wp_postmeta` VALUES("15109", "15245", "_edit_lock", "1510303104:6");
INSERT INTO `wp_postmeta` VALUES("15110", "15245", "_edit_last", "6");
INSERT INTO `wp_postmeta` VALUES("15111", "15245", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("15112", "15245", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("15113", "15245", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("15114", "15245", "wps_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("15115", "15246", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15116", "15245", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("15117", "15245", "_dt_sidebar_position", "right");
INSERT INTO `wp_postmeta` VALUES("15118", "15245", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("15119", "15245", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("15120", "15245", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("15121", "15245", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("15122", "15245", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("15123", "15245", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("15124", "15245", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("15125", "15245", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("15126", "15245", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("15127", "15245", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("15128", "15245", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("15129", "15245", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("15130", "15245", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("15131", "15245", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("15132", "15245", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("15133", "15245", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("15134", "15245", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("15135", "15245", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("15136", "15245", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("15137", "15245", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("15138", "15245", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("15139", "15245", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("15140", "15245", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("15141", "15245", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15142", "15245", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("15143", "15245", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("15144", "15245", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("15145", "15245", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("15146", "15245", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("15147", "15245", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("15148", "15245", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("15149", "15247", "_wp_attached_file", "2017/11/Tyrone.docx");
INSERT INTO `wp_postmeta` VALUES("15150", "15248", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15151", "15245", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("15152", "15245", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("15153", "15245", "_dt_testimonials_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15154", "15245", "_dt_testimonials_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15155", "15245", "_dt_testimonials_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15156", "15245", "_dt_testimonials_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15157", "15245", "_dt_testimonials_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15158", "15249", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15159", "15250", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15160", "15251", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15161", "15252", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15162", "15253", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15163", "15254", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15164", "15255", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15165", "15245", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15166", "15245", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15167", "15245", "_dt_blog_options_item_padding", "5");
INSERT INTO `wp_postmeta` VALUES("15168", "15245", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15169", "15245", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15170", "15245", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("15171", "15245", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("15172", "15245", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("15173", "15245", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("15174", "15245", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("15175", "15245", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("15176", "15245", "_dt_portfolio_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15177", "15245", "_dt_portfolio_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("15178", "15245", "_dt_portfolio_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15179", "15245", "_dt_portfolio_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15180", "15245", "_dt_portfolio_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("15181", "15245", "_dt_portfolio_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15182", "15245", "_dt_portfolio_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15183", "15245", "_dt_portfolio_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("15184", "15245", "_dt_portfolio_options_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("15185", "15245", "_dt_portfolio_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15186", "15245", "_dt_portfolio_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15187", "15245", "_dt_portfolio_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15188", "15245", "_dt_portfolio_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15189", "15245", "_dt_portfolio_options_jgrid_under_image_buttons", "under_image");
INSERT INTO `wp_postmeta` VALUES("15190", "15245", "_dt_portfolio_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15191", "15245", "_dt_portfolio_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15192", "15245", "_dt_portfolio_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15193", "15245", "_dt_portfolio_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("15194", "15245", "_dt_portfolio_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("15195", "15245", "_dt_portfolio_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("15196", "15245", "_dt_portfolio_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("15197", "15245", "_dt_portfolio_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("15198", "15245", "_dt_portfolio_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("15199", "15245", "_dt_portfolio_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("15200", "15245", "_dt_portfolio_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("15201", "15245", "_dt_portfolio_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("15202", "15245", "_dt_portfolio_options_show_links", "1");
INSERT INTO `wp_postmeta` VALUES("15203", "15245", "_dt_portfolio_options_show_zoom", "1");
INSERT INTO `wp_postmeta` VALUES("15204", "15245", "_dt_portfolio_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("15205", "15245", "_dt_portfolio_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("15206", "15245", "_dt_portfolio_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("15207", "15245", "_dt_portfolio_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("15208", "15245", "_dt_portfolio_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("15209", "15245", "_dt_team_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15210", "15245", "_dt_team_options_masonry_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15211", "15245", "_dt_team_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15212", "15245", "_dt_team_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15213", "15245", "_dt_team_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15214", "15245", "_dt_albums_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15215", "15245", "_dt_albums_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15216", "15245", "_dt_albums_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15217", "15245", "_dt_albums_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("15218", "15245", "_dt_albums_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15219", "15245", "_dt_albums_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15220", "15245", "_dt_albums_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("15221", "15245", "_dt_albums_options_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("15222", "15245", "_dt_albums_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15223", "15245", "_dt_albums_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15224", "15245", "_dt_albums_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15225", "15245", "_dt_albums_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("15226", "15245", "_dt_albums_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("15227", "15245", "_dt_albums_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15228", "15245", "_dt_albums_options_jgrid_show_round_miniatures", "1");
INSERT INTO `wp_postmeta` VALUES("15229", "15245", "_dt_albums_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15230", "15245", "_dt_albums_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15231", "15245", "_dt_albums_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15232", "15245", "_dt_albums_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("15233", "15245", "_dt_albums_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("15234", "15245", "_dt_albums_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("15235", "15245", "_dt_albums_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("15236", "15245", "_dt_albums_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("15237", "15245", "_dt_albums_options_show_terms", "1");
INSERT INTO `wp_postmeta` VALUES("15238", "15245", "_dt_albums_options_show_filter", "1");
INSERT INTO `wp_postmeta` VALUES("15239", "15245", "_dt_albums_options_show_ordering", "1");
INSERT INTO `wp_postmeta` VALUES("15240", "15245", "_dt_albums_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("15241", "15245", "_dt_albums_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("15242", "15245", "_dt_albums_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("15243", "15245", "_dt_albums_media_display", "a:2:{s:4:\"type\";s:6:\"albums\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15244", "15245", "_dt_media_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15245", "15245", "_dt_media_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15246", "15245", "_dt_media_options_target_height", "250");
INSERT INTO `wp_postmeta` VALUES("15247", "15245", "_dt_media_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15248", "15245", "_dt_media_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15249", "15245", "_dt_media_options_description", "under_image");
INSERT INTO `wp_postmeta` VALUES("15250", "15245", "_dt_media_options_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15251", "15245", "_dt_media_options_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15252", "15245", "_dt_media_options_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15253", "15245", "_dt_media_options_jgrid_description", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15254", "15245", "_dt_media_options_jgrid_hover_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("15255", "15245", "_dt_media_options_jgrid_hover_bg_color", "accent");
INSERT INTO `wp_postmeta` VALUES("15256", "15245", "_dt_media_options_jgrid_hover_content_visibility", "on_hoover");
INSERT INTO `wp_postmeta` VALUES("15257", "15245", "_dt_media_options_hide_last_row", "0");
INSERT INTO `wp_postmeta` VALUES("15258", "15245", "_dt_media_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("15259", "15245", "_dt_media_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("15260", "15245", "_dt_media_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("15261", "15245", "_dt_media_options_show_titles", "1");
INSERT INTO `wp_postmeta` VALUES("15262", "15245", "_dt_media_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("15263", "15245", "_dt_media_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("15264", "15245", "_dt_media_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("15265", "15245", "_dt_media_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("15266", "15245", "_dt_microsite_page_loading", "1");
INSERT INTO `wp_postmeta` VALUES("15267", "15245", "_dt_microsite_header_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15268", "15245", "_dt_microsite_header_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15269", "15245", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15270", "15245", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15271", "15245", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15272", "15245", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15273", "15245", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15274", "15245", "_dt_microsite_primary_menu", "0");
INSERT INTO `wp_postmeta` VALUES("15275", "15256", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15277", "15259", "wps_subtitle", "One clientâ€™s story about how SICCT helped him.");
INSERT INTO `wp_postmeta` VALUES("15279", "15269", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15280", "15268", "_edit_lock", "1516223670:1");
INSERT INTO `wp_postmeta` VALUES("15281", "15268", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15282", "15268", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15283", "15268", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15284", "15268", "_dp_original", "15133");
INSERT INTO `wp_postmeta` VALUES("15285", "15268", "_wp_old_slug", "living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2");
INSERT INTO `wp_postmeta` VALUES("15286", "15271", "_wp_attached_file", "2017/08/2017-Living-With-Loss-Part-2-Poster.1.pdf");
INSERT INTO `wp_postmeta` VALUES("15287", "15276", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("15288", "15276", "_menu_item_menu_item_parent", "13105");
INSERT INTO `wp_postmeta` VALUES("15289", "15276", "_menu_item_object_id", "15245");
INSERT INTO `wp_postmeta` VALUES("15290", "15276", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("15291", "15276", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("15292", "15276", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("15293", "15276", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("15294", "15276", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("15304", "15276", "_menu_item_dt_mega_menu_image", "");
INSERT INTO `wp_postmeta` VALUES("15305", "15276", "_menu_item_dt_mega_menu_image_width", "0");
INSERT INTO `wp_postmeta` VALUES("15306", "15276", "_menu_item_dt_mega_menu_image_height", "0");
INSERT INTO `wp_postmeta` VALUES("15308", "15071", "_edit_lock", "1510870038:9");
INSERT INTO `wp_postmeta` VALUES("15309", "15282", "_wp_attached_file", "2017/11/ThriveVictoria2-Feb-2018.1.pdf");
INSERT INTO `wp_postmeta` VALUES("15310", "15282", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15312", "15297", "_wp_attached_file", "2013/11/Manager-of-Development-and-Communications-posting.pdf");
INSERT INTO `wp_postmeta` VALUES("15313", "15302", "_wp_attached_file", "2016/12/Poster-PCT-Dialogues-Jan-2018.1.pdf");
INSERT INTO `wp_postmeta` VALUES("15314", "14595", "_ai1ec_cost_type", "external");
INSERT INTO `wp_postmeta` VALUES("15315", "14595", "_wp_old_slug", "pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017");
INSERT INTO `wp_postmeta` VALUES("15316", "15310", "_wp_attached_file", "2013/11/logo-city-of-victoria.gif");
INSERT INTO `wp_postmeta` VALUES("15317", "15310", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:93;s:4:\"file\";s:33:\"2013/11/logo-city-of-victoria.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"logo-city-of-victoria-150x93.gif\";s:5:\"width\";i:150;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/gif\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("15318", "15311", "_wp_attached_file", "2013/11/adore-logo.png");
INSERT INTO `wp_postmeta` VALUES("15319", "15311", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:392;s:6:\"height\";i:154;s:4:\"file\";s:22:\"2013/11/adore-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"adore-logo-150x150.png\";s:5:\"width\";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:\"adore-logo-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("15320", "15311", "_edit_lock", "1514404932:9");
INSERT INTO `wp_postmeta` VALUES("15321", "15311", "_edit_last", "9");
INSERT INTO `wp_postmeta` VALUES("15322", "15311", "dt-video-url", "");
INSERT INTO `wp_postmeta` VALUES("15323", "15311", "dt-img-link", "");
INSERT INTO `wp_postmeta` VALUES("15324", "15311", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15325", "15330", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15326", "15329", "_edit_lock", "1517343612:1");
INSERT INTO `wp_postmeta` VALUES("15327", "15329", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15328", "15329", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15329", "15329", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15330", "15329", "_dp_original", "15133");
INSERT INTO `wp_postmeta` VALUES("15331", "15329", "_wp_old_slug", "living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2");
INSERT INTO `wp_postmeta` VALUES("15332", "15333", "_wp_attached_file", "2017/08/2017-Living-With-Loss-Part-2-Poster.11.pdf");
INSERT INTO `wp_postmeta` VALUES("15333", "15334", "_wp_attached_file", "2017/08/2018-Living-With-Loss-Part-2-Poster.1.pdf");
INSERT INTO `wp_postmeta` VALUES("15334", "15268", "_wp_old_slug", "living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2");
INSERT INTO `wp_postmeta` VALUES("15335", "15337", "_wp_attached_file", "2017/08/2018-Living-With-Loss-Part-1-Poster.kr_.pdf");
INSERT INTO `wp_postmeta` VALUES("15336", "15329", "_wp_old_slug", "living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-3");
INSERT INTO `wp_postmeta` VALUES("15337", "15341", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15338", "15342", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15339", "15340", "_edit_lock", "1528994223:10");
INSERT INTO `wp_postmeta` VALUES("15340", "15340", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("15341", "15340", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15342", "15340", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15344", "15340", "_wp_old_slug", "living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2");
INSERT INTO `wp_postmeta` VALUES("15345", "15340", "_wp_old_slug", "living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-3");
INSERT INTO `wp_postmeta` VALUES("15346", "15340", "_dp_original", "15329");
INSERT INTO `wp_postmeta` VALUES("15347", "15340", "_wp_old_slug", "living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-april-12-may-17-2018-7pm-9pm");
INSERT INTO `wp_postmeta` VALUES("15349", "15329", "_wp_old_slug", "living-loss-part-1-introduction-grief-loss-thursdays-apr-12-may-17-2018-7pm-9pm-3");
INSERT INTO `wp_postmeta` VALUES("15351", "15329", "_wp_old_slug", "triple-p-positive-parenting-program-wednesdays-jan-31-mar-28-2018-7pm-9pm");
INSERT INTO `wp_postmeta` VALUES("15354", "15353", "_wp_attached_file", "2017/08/Triple-P-Parenting-Poster.pdf");
INSERT INTO `wp_postmeta` VALUES("15355", "15147", "_wp_old_slug", "me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-october-28-2017");
INSERT INTO `wp_postmeta` VALUES("15356", "15356", "_wp_attached_file", "2017/08/Poster-MBTI-May-2018.pdf");
INSERT INTO `wp_postmeta` VALUES("15357", "15359", "_wp_attached_file", "2017/03/Marriage-Prep-June-9-2018.pdf");
INSERT INTO `wp_postmeta` VALUES("15358", "15367", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15359", "15366", "_edit_lock", "1518728684:1");
INSERT INTO `wp_postmeta` VALUES("15360", "15366", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15361", "15366", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15362", "15366", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15363", "15366", "_wp_old_slug", "me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-october-28-2017");
INSERT INTO `wp_postmeta` VALUES("15364", "15366", "_dp_original", "15147");
INSERT INTO `wp_postmeta` VALUES("15365", "15368", "_wp_attached_file", "2017/08/Bowen-Short-Course-April-2018.pdf");
INSERT INTO `wp_postmeta` VALUES("15366", "15147", "_wp_old_slug", "me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-may-26-2018");
INSERT INTO `wp_postmeta` VALUES("15367", "14759", "_wp_old_slug", "family-systems-intensive-monday-friday-aug-21-25-2017");
INSERT INTO `wp_postmeta` VALUES("15369", "15375", "_wp_attached_file", "2017/06/Bowen-August-20-24-Intensive-2018.pdf");
INSERT INTO `wp_postmeta` VALUES("15370", "15386", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15371", "15387", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15372", "15388", "dt-img-hide-title", "0");
INSERT INTO `wp_postmeta` VALUES("15373", "15385", "_edit_lock", "1513809435:6");
INSERT INTO `wp_postmeta` VALUES("15374", "15385", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15375", "15385", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("15376", "15385", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("15377", "15385", "_dp_original", "15175");
INSERT INTO `wp_postmeta` VALUES("15378", "15385", "_wp_old_slug", "young-adults-support-group-for-anxiety-tuesdays-oct-10-dec-5-2017-630-830pm");
INSERT INTO `wp_postmeta` VALUES("15379", "15389", "_wp_attached_file", "2017/08/Stress-and-Anxiety-Support-Group-March-2018.pdf");
INSERT INTO `wp_postmeta` VALUES("15380", "15175", "_wp_old_slug", "15175");
INSERT INTO `wp_postmeta` VALUES("15422", "15397", "_edit_lock", "1521059139:1");
INSERT INTO `wp_postmeta` VALUES("15423", "15397", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15424", "15397", "_campaign_end_date", "0");
INSERT INTO `wp_postmeta` VALUES("15425", "15397", "_campaign_goal", "0");
INSERT INTO `wp_postmeta` VALUES("15426", "15397", "_campaign_suggested_donations", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15427", "15397", "_campaign_allow_custom_donations", "1");
INSERT INTO `wp_postmeta` VALUES("15428", "15397", "_campaign_description", "You can support our charity by making a charitable donation. Click the Donate button to start!");
INSERT INTO `wp_postmeta` VALUES("15429", "15398", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15430", "15398", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"tester\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15431", "15398", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15432", "15398", "donation_key", "11c9126ec2e278f87c6648c436db88c7");
INSERT INTO `wp_postmeta` VALUES("15433", "15398", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520371396;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15434", "15400", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15435", "15400", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15436", "15400", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15437", "15400", "donation_key", "4de1add1b9e1a2136ebc04d0f2a862d3");
INSERT INTO `wp_postmeta` VALUES("15438", "15400", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520372251;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15439", "15402", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15440", "15402", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15441", "15402", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15442", "15402", "donation_key", "37df4c9cb34d7adc0f1e0d288bfa4a92");
INSERT INTO `wp_postmeta` VALUES("15443", "15402", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520372557;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15444", "15403", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15445", "15403", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15446", "15403", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15447", "15403", "donation_key", "333317ee95d274184b2f01890db4a5b3");
INSERT INTO `wp_postmeta` VALUES("15448", "15403", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520372799;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15451", "15404", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15452", "15404", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15453", "15404", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15454", "15404", "donation_key", "bf956afcd9efcc06388497c6bc55ab7a");
INSERT INTO `wp_postmeta` VALUES("15455", "15404", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520375255;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15456", "15406", "wpedon_button_price", "");
INSERT INTO `wp_postmeta` VALUES("15457", "15406", "wpedon_button_id", "");
INSERT INTO `wp_postmeta` VALUES("15458", "15406", "wpedon_button_enable_name", "0");
INSERT INTO `wp_postmeta` VALUES("15459", "15406", "wpedon_button_enable_price", "0");
INSERT INTO `wp_postmeta` VALUES("15460", "15406", "wpedon_button_enable_currency", "0");
INSERT INTO `wp_postmeta` VALUES("15461", "15406", "wpedon_button_currency", "");
INSERT INTO `wp_postmeta` VALUES("15462", "15406", "wpedon_button_language", "");
INSERT INTO `wp_postmeta` VALUES("15463", "15406", "wpedon_button_buttonsize", "0");
INSERT INTO `wp_postmeta` VALUES("15464", "15406", "wpedon_button_account", "");
INSERT INTO `wp_postmeta` VALUES("15465", "15406", "wpedon_button_return", "");
INSERT INTO `wp_postmeta` VALUES("15466", "15406", "wpedon_button_scpriceprice", "");
INSERT INTO `wp_postmeta` VALUES("15467", "15406", "wpedon_button_scpriceaname", "");
INSERT INTO `wp_postmeta` VALUES("15468", "15406", "wpedon_button_scpricebname", "");
INSERT INTO `wp_postmeta` VALUES("15469", "15406", "wpedon_button_scpricecname", "");
INSERT INTO `wp_postmeta` VALUES("15470", "15406", "wpedon_button_scpricedname", "");
INSERT INTO `wp_postmeta` VALUES("15471", "15406", "wpedon_button_scpriceename", "");
INSERT INTO `wp_postmeta` VALUES("15472", "15406", "wpedon_button_scpricefname", "");
INSERT INTO `wp_postmeta` VALUES("15473", "15406", "wpedon_button_scpricegname", "");
INSERT INTO `wp_postmeta` VALUES("15474", "15406", "wpedon_button_scpricehname", "");
INSERT INTO `wp_postmeta` VALUES("15475", "15406", "wpedon_button_scpriceiname", "");
INSERT INTO `wp_postmeta` VALUES("15476", "15406", "wpedon_button_scpricejname", "");
INSERT INTO `wp_postmeta` VALUES("15477", "15406", "wpedon_button_scpricea", "");
INSERT INTO `wp_postmeta` VALUES("15478", "15406", "wpedon_button_scpriceb", "");
INSERT INTO `wp_postmeta` VALUES("15479", "15406", "wpedon_button_scpricec", "");
INSERT INTO `wp_postmeta` VALUES("15480", "15406", "wpedon_button_scpriced", "");
INSERT INTO `wp_postmeta` VALUES("15481", "15406", "wpedon_button_scpricee", "");
INSERT INTO `wp_postmeta` VALUES("15482", "15406", "wpedon_button_scpricef", "");
INSERT INTO `wp_postmeta` VALUES("15483", "15406", "wpedon_button_scpriceg", "");
INSERT INTO `wp_postmeta` VALUES("15484", "15406", "wpedon_button_scpriceh", "");
INSERT INTO `wp_postmeta` VALUES("15485", "15406", "wpedon_button_scpricei", "");
INSERT INTO `wp_postmeta` VALUES("15486", "15406", "wpedon_button_scpricej", "");
INSERT INTO `wp_postmeta` VALUES("15525", "15411", "donation_gateway", "offline");
INSERT INTO `wp_postmeta` VALUES("15526", "15411", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15527", "15411", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15528", "15411", "donation_key", "aea82574ffc48a3207f6c843cfb7d389");
INSERT INTO `wp_postmeta` VALUES("15529", "15411", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520566003;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15530", "15411", "_edit_lock", "1520567764:1");
INSERT INTO `wp_postmeta` VALUES("15531", "15412", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15532", "15412", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15533", "15412", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15534", "15412", "donation_key", "6664f658c768ba984e2e13014b0fee3c");
INSERT INTO `wp_postmeta` VALUES("15535", "15412", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520567866;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15536", "15414", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15537", "15414", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15538", "15414", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15539", "15414", "donation_key", "f61bbc31e2edb94297bc971885160ef6");
INSERT INTO `wp_postmeta` VALUES("15540", "15414", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520569348;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15541", "15415", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15542", "15415", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:16:\"British Columbia\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15543", "15415", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15544", "15415", "donation_key", "cb06623df07041f4cec8e11c6fe4d320");
INSERT INTO `wp_postmeta` VALUES("15545", "15415", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520574782;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15546", "15417", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15547", "15417", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15548", "15417", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15549", "15417", "donation_key", "c67beeb604bfcf360e9c9c7c1c13ef60");
INSERT INTO `wp_postmeta` VALUES("15550", "15417", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520630419;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15551", "15419", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15552", "15419", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15553", "15419", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15554", "15419", "donation_key", "82da759de72b604340375dec879e7b70");
INSERT INTO `wp_postmeta` VALUES("15555", "15419", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520630522;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15556", "15421", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15557", "15421", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15558", "15421", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15559", "15421", "donation_key", "a791e6775b92035f5fb25c92f07d64fc");
INSERT INTO `wp_postmeta` VALUES("15560", "15421", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520968600;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15561", "15422", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15562", "15422", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15563", "15422", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15564", "15422", "donation_key", "82eeec3bad72eda757d724c02bd74f7f");
INSERT INTO `wp_postmeta` VALUES("15565", "15422", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520969110;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15566", "15423", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15567", "15423", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15568", "15423", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15569", "15423", "donation_key", "d0856290a196b4922729f3a083060066");
INSERT INTO `wp_postmeta` VALUES("15570", "15423", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520970149;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15571", "15425", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15572", "15425", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15573", "15425", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15574", "15425", "donation_key", "2a5aef6b849c359372ccd7714d1fefc6");
INSERT INTO `wp_postmeta` VALUES("15575", "15425", "_donation_log", "a:2:{i:0;a:2:{s:4:\"time\";i:1520972242;s:7:\"message\";s:17:\"Donation created.\";}i:1;a:2:{s:4:\"time\";i:1520972784;s:7:\"message\";s:50:\"Donation status updated from Pending to Cancelled.\";}}");
INSERT INTO `wp_postmeta` VALUES("15576", "15426", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15577", "15426", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15578", "15426", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15579", "15426", "donation_key", "d37ea65008efd4807ef14fb1b372165a");
INSERT INTO `wp_postmeta` VALUES("15580", "15426", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520973050;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15581", "15427", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15582", "15427", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15583", "15427", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15584", "15427", "donation_key", "af2d3a31280ae131ef295bf3f652c648");
INSERT INTO `wp_postmeta` VALUES("15585", "15427", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1520974287;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15586", "15430", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15587", "15430", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15588", "15430", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15589", "15430", "donation_key", "eb9a2856397b585412951e0846c68cc2");
INSERT INTO `wp_postmeta` VALUES("15590", "15430", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1521050720;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15591", "15430", "_edit_lock", "1521050694:1");
INSERT INTO `wp_postmeta` VALUES("15592", "15432", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15593", "15432", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15594", "15432", "test_mode", "1");
INSERT INTO `wp_postmeta` VALUES("15595", "15432", "donation_key", "248ad2d9e016439338b1852b6e8acf64");
INSERT INTO `wp_postmeta` VALUES("15596", "15432", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1521051680;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15597", "15434", "_wp_attached_file", "2013/11/St-Luke-Cedar-Hill-Logo1.jpg");
INSERT INTO `wp_postmeta` VALUES("15598", "15434", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:390;s:6:\"height\";i:390;s:4:\"file\";s:36:\"2013/11/St-Luke-Cedar-Hill-Logo1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"St-Luke-Cedar-Hill-Logo1-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:\"St-Luke-Cedar-Hill-Logo1-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: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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("15599", "15438", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15600", "15438", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15601", "15438", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15602", "15438", "donation_key", "b00e2bfec18478116172ceb2ac966941");
INSERT INTO `wp_postmeta` VALUES("15603", "15438", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1521054225;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15604", "15439", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15605", "15439", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15606", "15439", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15607", "15439", "donation_key", "edcf9527d8c3f970fcefa6208358bb18");
INSERT INTO `wp_postmeta` VALUES("15608", "15439", "_donation_log", "a:3:{i:0;a:2:{s:4:\"time\";i:1521054674;s:7:\"message\";s:17:\"Donation created.\";}i:1;a:2:{s:4:\"time\";i:1521055003;s:7:\"message\";s:40:\"PayPal Transaction ID: 1E213986DM509782X\";}i:2;a:2:{s:4:\"time\";i:1521055010;s:7:\"message\";s:45:\"Donation status updated from Pending to Paid.\";}}");
INSERT INTO `wp_postmeta` VALUES("15609", "15439", "_gateway_transaction_id", "1E213986DM509782X");
INSERT INTO `wp_postmeta` VALUES("15610", "15439", "_email_donation_receipt_log", "a:1:{i:1521055008;b:1;}");
INSERT INTO `wp_postmeta` VALUES("15611", "15439", "_email_new_donation_log", "a:1:{i:1521055010;b:1;}");
INSERT INTO `wp_postmeta` VALUES("15612", "15440", "_edit_lock", "1521059120:1");
INSERT INTO `wp_postmeta` VALUES("15613", "15440", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15614", "15440", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("15615", "15440", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("15616", "15440", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("15617", "15440", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("15618", "15440", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("15619", "15440", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("15620", "15440", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("15621", "15440", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("15622", "15440", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("15623", "15440", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("15624", "15440", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("15625", "15440", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("15626", "15440", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("15627", "15440", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("15628", "15440", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("15629", "15440", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("15630", "15440", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("15631", "15440", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("15632", "15440", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("15633", "15440", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("15634", "15440", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("15635", "15440", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("15636", "15440", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("15637", "15440", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("15638", "15440", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("15639", "15440", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("15640", "15440", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("15641", "15440", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("15642", "15440", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15643", "15440", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("15644", "15440", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("15645", "15440", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("15646", "15440", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("15647", "15440", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("15648", "15440", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("15649", "15440", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("15690", "15448", "_edit_lock", "1521058458:1");
INSERT INTO `wp_postmeta` VALUES("15691", "15448", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("15692", "15448", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("15693", "15448", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("15694", "15448", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("15695", "15448", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("15696", "15448", "_dt_sidebar_position", "disabled");
INSERT INTO `wp_postmeta` VALUES("15697", "15448", "_dt_sidebar_widgetarea_id", "sidebar_1");
INSERT INTO `wp_postmeta` VALUES("15698", "15448", "_dt_footer_show", "1");
INSERT INTO `wp_postmeta` VALUES("15699", "15448", "_dt_footer_widgetarea_id", "sidebar_2");
INSERT INTO `wp_postmeta` VALUES("15700", "15448", "_dt_header_title", "enabled");
INSERT INTO `wp_postmeta` VALUES("15701", "15448", "_dt_header_background", "normal");
INSERT INTO `wp_postmeta` VALUES("15702", "15448", "_dt_slideshow_mode", "porthole");
INSERT INTO `wp_postmeta` VALUES("15703", "15448", "_dt_slideshow_3d_layout", "fullscreen-content");
INSERT INTO `wp_postmeta` VALUES("15704", "15448", "_dt_slideshow_3d_slider_proportions", "a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("15705", "15448", "_dt_slideshow_layout", "fullwidth");
INSERT INTO `wp_postmeta` VALUES("15706", "15448", "_dt_slideshow_slider_proportions", "a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}");
INSERT INTO `wp_postmeta` VALUES("15707", "15448", "_dt_slideshow_scaling", "fill");
INSERT INTO `wp_postmeta` VALUES("15708", "15448", "_dt_slideshow_autoplay", "paused");
INSERT INTO `wp_postmeta` VALUES("15709", "15448", "_dt_slideshow_autoslide_interval", "5000");
INSERT INTO `wp_postmeta` VALUES("15710", "15448", "_dt_slideshow_hide_captions", "0");
INSERT INTO `wp_postmeta` VALUES("15711", "15448", "_dt_slideshow_slides_in_raw", "5");
INSERT INTO `wp_postmeta` VALUES("15712", "15448", "_dt_slideshow_slides_in_column", "3");
INSERT INTO `wp_postmeta` VALUES("15713", "15448", "_dt_slideshow_revolution_slider", "none");
INSERT INTO `wp_postmeta` VALUES("15714", "15448", "_dt_slideshow_layer_slider", "none");
INSERT INTO `wp_postmeta` VALUES("15715", "15448", "_dt_slideshow_layer_show_bg_and_paddings", "0");
INSERT INTO `wp_postmeta` VALUES("15716", "15448", "_dt_fancy_header_title_aligment", "left");
INSERT INTO `wp_postmeta` VALUES("15717", "15448", "_dt_fancy_header_title_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("15718", "15448", "_dt_fancy_header_subtitle_color", "#000000");
INSERT INTO `wp_postmeta` VALUES("15719", "15448", "_dt_fancy_header_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("15720", "15448", "_dt_fancy_header_bg_image", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15721", "15448", "_dt_fancy_header_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("15722", "15448", "_dt_fancy_header_bg_position_x", "center");
INSERT INTO `wp_postmeta` VALUES("15723", "15448", "_dt_fancy_header_bg_position_y", "center");
INSERT INTO `wp_postmeta` VALUES("15724", "15448", "_dt_fancy_header_bg_fullscreen", "1");
INSERT INTO `wp_postmeta` VALUES("15725", "15448", "_dt_fancy_header_bg_fixed", "0");
INSERT INTO `wp_postmeta` VALUES("15726", "15448", "_dt_fancy_header_parallax_speed", "0");
INSERT INTO `wp_postmeta` VALUES("15727", "15448", "_dt_fancy_header_height", "100");
INSERT INTO `wp_postmeta` VALUES("15728", "15450", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15729", "15450", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15730", "15450", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15731", "15450", "donation_key", "276152b463694a93bfe7fcb6ba2217a2");
INSERT INTO `wp_postmeta` VALUES("15732", "15450", "_donation_log", "a:4:{i:0;a:2:{s:4:\"time\";i:1521058898;s:7:\"message\";s:17:\"Donation created.\";}i:1;a:2:{s:4:\"time\";i:1521058925;s:7:\"message\";s:50:\"Donation status updated from Pending to Cancelled.\";}i:2;a:2:{s:4:\"time\";i:1521058954;s:7:\"message\";s:18:\"Payment attempted.\";}i:3;a:2:{s:4:\"time\";i:1521058966;s:7:\"message\";s:50:\"Donation status updated from Pending to Cancelled.\";}}");
INSERT INTO `wp_postmeta` VALUES("15733", "15452", "donation_gateway", "paypal");
INSERT INTO `wp_postmeta` VALUES("15734", "15452", "donor", "a:10:{s:10:\"first_name\";s:5:\"Jared\";s:9:\"last_name\";s:6:\"Jewitt\";s:5:\"email\";s:21:\"jaredjewitt@gmail.com\";s:7:\"address\";s:17:\"1514 McRae Avenue\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:8:\"Victoria\";s:5:\"state\";s:2:\"BC\";s:8:\"postcode\";s:6:\"V8P1G5\";s:7:\"country\";s:2:\"CA\";s:5:\"phone\";s:10:\"3067140176\";}");
INSERT INTO `wp_postmeta` VALUES("15735", "15452", "test_mode", "0");
INSERT INTO `wp_postmeta` VALUES("15736", "15452", "donation_key", "eab6e39a1898b42fb7ad20e89a9cde9e");
INSERT INTO `wp_postmeta` VALUES("15737", "15452", "_donation_log", "a:1:{i:0;a:2:{s:4:\"time\";i:1521658800;s:7:\"message\";s:17:\"Donation created.\";}}");
INSERT INTO `wp_postmeta` VALUES("15738", "15457", "_wp_attached_file", "2013/11/March-27-Invitation.pdf");
INSERT INTO `wp_postmeta` VALUES("15739", "15461", "_form", "<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]");
INSERT INTO `wp_postmeta` VALUES("15740", "15461", "_mail", "a:8:{s:7:\"subject\";s:36:\"South Island Centre \"[your-subject]\"\";s:6:\"sender\";s:33:\"[your-name] <wordpress@localhost>\";s:4:\"body\";s:201:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on South Island Centre (http://localhost:8888/TestSICPage/wordpress)\";s:9:\"recipient\";s:14:\"info@localhost\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wp_postmeta` VALUES("15741", "15461", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:36:\"South Island Centre \"[your-subject]\"\";s:6:\"sender\";s:41:\"South Island Centre <wordpress@localhost>\";s:4:\"body\";s:143:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on South Island Centre (http://localhost:8888/TestSICPage/wordpress)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:24:\"Reply-To: info@localhost\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wp_postmeta` VALUES("15742", "15461", "_messages", "a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}");
INSERT INTO `wp_postmeta` VALUES("15743", "15461", "_additional_settings", NULL);
INSERT INTO `wp_postmeta` VALUES("15744", "15461", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("15745", "13113", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15747", "13077", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15748", "13145", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15749", "13084", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15750", "13080", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15751", "13105", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15752", "13082", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15753", "13083", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15754", "14247", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15755", "15276", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15756", "13106", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15757", "13101", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15758", "13112", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15759", "13108", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15760", "13567", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15761", "14469", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15762", "11", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15763", "11", "_dt_sidebar_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("15764", "11", "_dt_footer_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("15765", "11", "_dt_header_background_below_slideshow", "disabled");
INSERT INTO `wp_postmeta` VALUES("15766", "11", "_dt_header_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("15767", "11", "_dt_header_transparent_top_bar_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("15768", "11", "_dt_header_transparent_top_bar_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15769", "11", "_dt_header_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("15770", "11", "_dt_header_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15771", "11", "_dt_header_disabled_background", "normal");
INSERT INTO `wp_postmeta` VALUES("15772", "11", "_dt_header_disabled_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("15773", "11", "_dt_header_disabled_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15774", "11", "_dt_header_disabled_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("15775", "11", "_dt_page_overrides_top_margin", "");
INSERT INTO `wp_postmeta` VALUES("15776", "11", "_dt_page_overrides_bottom_margin", "");
INSERT INTO `wp_postmeta` VALUES("15777", "11", "_dt_slideshow_photo_scroller_layout", "fullscreen");
INSERT INTO `wp_postmeta` VALUES("15778", "11", "_dt_slideshow_photo_scroller_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("15779", "11", "_dt_slideshow_photo_scroller_overlay", "1");
INSERT INTO `wp_postmeta` VALUES("15780", "11", "_dt_slideshow_photo_scroller_top_padding", "");
INSERT INTO `wp_postmeta` VALUES("15781", "11", "_dt_slideshow_photo_scroller_bottom_padding", "");
INSERT INTO `wp_postmeta` VALUES("15782", "11", "_dt_slideshow_photo_scroller_side_paddings", "");
INSERT INTO `wp_postmeta` VALUES("15783", "11", "_dt_slideshow_photo_scroller_inactive_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15784", "11", "_dt_slideshow_photo_scroller_thumbnails_visibility", "show");
INSERT INTO `wp_postmeta` VALUES("15785", "11", "_dt_slideshow_photo_scroller_thumbnails_width", "");
INSERT INTO `wp_postmeta` VALUES("15786", "11", "_dt_slideshow_photo_scroller_thumbnails_height", "");
INSERT INTO `wp_postmeta` VALUES("15787", "11", "_dt_slideshow_photo_scroller_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("15788", "11", "_dt_slideshow_photo_scroller_autoplay_speed", "");
INSERT INTO `wp_postmeta` VALUES("15789", "11", "fake_id", "");
INSERT INTO `wp_postmeta` VALUES("15790", "11", "_dt_slideshow_photo_scroller_ls_max_width", "");
INSERT INTO `wp_postmeta` VALUES("15791", "11", "_dt_slideshow_photo_scroller_ls_min_width", "");
INSERT INTO `wp_postmeta` VALUES("15792", "11", "_dt_slideshow_photo_scroller_ls_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("15793", "11", "_dt_slideshow_photo_scroller_ls_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("15794", "11", "_dt_slideshow_photo_scroller_pt_max_width", "");
INSERT INTO `wp_postmeta` VALUES("15795", "11", "_dt_slideshow_photo_scroller_pt_min_width", "");
INSERT INTO `wp_postmeta` VALUES("15796", "11", "_dt_slideshow_photo_scroller_pt_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("15797", "11", "_dt_slideshow_photo_scroller_pt_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("15798", "11", "_dt_fancy_header_layout_heading", "");
INSERT INTO `wp_postmeta` VALUES("15799", "11", "_dt_fancy_header_padding-top", "");
INSERT INTO `wp_postmeta` VALUES("15800", "11", "_dt_fancy_header_padding-bottom", "");
INSERT INTO `wp_postmeta` VALUES("15801", "11", "_dt_fancy_header_breadcrumbs_heading", "");
INSERT INTO `wp_postmeta` VALUES("15802", "11", "_dt_fancy_header_breadcrumbs", "enabled");
INSERT INTO `wp_postmeta` VALUES("15803", "11", "_dt_fancy_header_breadcrumbs_text_color", "");
INSERT INTO `wp_postmeta` VALUES("15804", "11", "_dt_fancy_header_breadcrumbs_bg_color", "disabled");
INSERT INTO `wp_postmeta` VALUES("15805", "11", "_dt_fancy_header_title_heading", "");
INSERT INTO `wp_postmeta` VALUES("15806", "11", "_dt_fancy_header_title_mode", "custom");
INSERT INTO `wp_postmeta` VALUES("15807", "11", "_dt_fancy_header_title", "");
INSERT INTO `wp_postmeta` VALUES("15808", "11", "_dt_fancy_header_title_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("15809", "11", "_dt_fancy_header_title_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("15810", "11", "_dt_fancy_header_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("15811", "11", "_dt_fancy_header_title_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("15812", "11", "_dt_fancy_header_subtitle_heading", "");
INSERT INTO `wp_postmeta` VALUES("15813", "11", "_dt_fancy_header_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("15814", "11", "_dt_fancy_header_subtitle_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("15815", "11", "_dt_fancy_header_subtitle_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("15816", "11", "_dt_fancy_header_subtitle_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("15817", "11", "_dt_fancy_header_subtitle_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("15818", "11", "_dt_fancy_header_bg_heading", "");
INSERT INTO `wp_postmeta` VALUES("15819", "11", "_dt_fancy_header_bg_overlay", "0");
INSERT INTO `wp_postmeta` VALUES("15820", "11", "_dt_fancy_header_overlay_color", "");
INSERT INTO `wp_postmeta` VALUES("15821", "11", "_dt_fancy_header_bg_overlay_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15822", "11", "_dt_fancy_header_scroll_effect", "default");
INSERT INTO `wp_postmeta` VALUES("15823", "11", "_dt_fancy_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("15824", "11", "_dt_blog_options_columns_number", "");
INSERT INTO `wp_postmeta` VALUES("15825", "11", "_dt_blog_options_bg_under_masonry_posts", "disabled");
INSERT INTO `wp_postmeta` VALUES("15826", "11", "_dt_blog_options_post_content_alignment", "left");
INSERT INTO `wp_postmeta` VALUES("15827", "11", "_dt_blog_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("15828", "11", "_dt_blog_options_bg_under_list_posts", "1");
INSERT INTO `wp_postmeta` VALUES("15829", "11", "_dt_blog_options_enable_fancy_date", "0");
INSERT INTO `wp_postmeta` VALUES("15830", "11", "_dt_blog_options_thumb_width", "");
INSERT INTO `wp_postmeta` VALUES("15831", "11", "_dt_blog_options_ppp", "");
INSERT INTO `wp_postmeta` VALUES("15832", "11", "_dt_blog_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("15833", "11", "_dt_blog_options_load_effect", "fade_in");
INSERT INTO `wp_postmeta` VALUES("15834", "11", "_dt_blog_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("15835", "11", "_dt_blog_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("15836", "11", "_dt_blog_options_show_filter", "0");
INSERT INTO `wp_postmeta` VALUES("15837", "11", "_dt_blog_options_show_orderby", "0");
INSERT INTO `wp_postmeta` VALUES("15838", "11", "_dt_blog_options_show_order", "0");
INSERT INTO `wp_postmeta` VALUES("15839", "11", "_dt_blog_options_show_categories_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("15840", "11", "_dt_blog_options_show_date_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("15841", "11", "_dt_blog_options_show_author_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("15842", "11", "_dt_blog_options_show_comments_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("15843", "11", "_dt_microsite_page_layout", "wide");
INSERT INTO `wp_postmeta` VALUES("15844", "11", "_dt_microsite_split_left_menu", "");
INSERT INTO `wp_postmeta` VALUES("15845", "11", "_dt_microsite_split_right_menu", "");
INSERT INTO `wp_postmeta` VALUES("15846", "11", "_dt_microsite_mobile_menu", "");
INSERT INTO `wp_postmeta` VALUES("15847", "11", "_dt_microsite_logo_link", "");
INSERT INTO `wp_postmeta` VALUES("15848", "11", "main_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("15849", "11", "_dt_microsite_main_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15850", "11", "_dt_microsite_main_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15851", "11", "_dt_microsite_main_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15852", "11", "transparent_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("15853", "11", "_dt_microsite_transparent_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15854", "11", "_dt_microsite_transparent_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15855", "11", "_dt_microsite_transparent_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15856", "11", "_dt_microsite_mixed_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15857", "11", "_dt_microsite_mixed_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15858", "11", "_dt_microsite_mixed_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15859", "11", "floating_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("15860", "11", "_dt_microsite_floating_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15861", "11", "_dt_microsite_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15862", "11", "_dt_microsite_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15863", "11", "_dt_microsite_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15864", "11", "_dt_microsite_transparent_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15865", "11", "_dt_microsite_transparent_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15866", "11", "_dt_microsite_transparent_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15867", "11", "bottom_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("15868", "11", "_dt_microsite_bottom_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15869", "11", "favicon_heading", "");
INSERT INTO `wp_postmeta` VALUES("15870", "11", "_dt_microsite_favicon_type", "default");
INSERT INTO `wp_postmeta` VALUES("15871", "303", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15872", "303", "_dt_sidebar_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("15873", "303", "_dt_footer_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("15874", "303", "_dt_header_background_below_slideshow", "disabled");
INSERT INTO `wp_postmeta` VALUES("15875", "303", "_dt_header_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("15876", "303", "_dt_header_transparent_top_bar_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("15877", "303", "_dt_header_transparent_top_bar_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15878", "303", "_dt_header_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("15879", "303", "_dt_header_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15880", "303", "_dt_header_disabled_background", "normal");
INSERT INTO `wp_postmeta` VALUES("15881", "303", "_dt_header_disabled_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("15882", "303", "_dt_header_disabled_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15883", "303", "_dt_header_disabled_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("15884", "303", "_dt_page_overrides_top_margin", "");
INSERT INTO `wp_postmeta` VALUES("15885", "303", "_dt_page_overrides_bottom_margin", "");
INSERT INTO `wp_postmeta` VALUES("15886", "303", "_dt_slideshow_photo_scroller_layout", "fullscreen");
INSERT INTO `wp_postmeta` VALUES("15887", "303", "_dt_slideshow_photo_scroller_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("15888", "303", "_dt_slideshow_photo_scroller_overlay", "1");
INSERT INTO `wp_postmeta` VALUES("15889", "303", "_dt_slideshow_photo_scroller_top_padding", "");
INSERT INTO `wp_postmeta` VALUES("15890", "303", "_dt_slideshow_photo_scroller_bottom_padding", "");
INSERT INTO `wp_postmeta` VALUES("15891", "303", "_dt_slideshow_photo_scroller_side_paddings", "");
INSERT INTO `wp_postmeta` VALUES("15892", "303", "_dt_slideshow_photo_scroller_inactive_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15893", "303", "_dt_slideshow_photo_scroller_thumbnails_visibility", "show");
INSERT INTO `wp_postmeta` VALUES("15894", "303", "_dt_slideshow_photo_scroller_thumbnails_width", "");
INSERT INTO `wp_postmeta` VALUES("15895", "303", "_dt_slideshow_photo_scroller_thumbnails_height", "");
INSERT INTO `wp_postmeta` VALUES("15896", "303", "_dt_slideshow_photo_scroller_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("15897", "303", "_dt_slideshow_photo_scroller_autoplay_speed", "");
INSERT INTO `wp_postmeta` VALUES("15898", "303", "fake_id", "");
INSERT INTO `wp_postmeta` VALUES("15899", "303", "_dt_slideshow_photo_scroller_ls_max_width", "");
INSERT INTO `wp_postmeta` VALUES("15900", "303", "_dt_slideshow_photo_scroller_ls_min_width", "");
INSERT INTO `wp_postmeta` VALUES("15901", "303", "_dt_slideshow_photo_scroller_ls_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("15902", "303", "_dt_slideshow_photo_scroller_ls_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("15903", "303", "_dt_slideshow_photo_scroller_pt_max_width", "");
INSERT INTO `wp_postmeta` VALUES("15904", "303", "_dt_slideshow_photo_scroller_pt_min_width", "");
INSERT INTO `wp_postmeta` VALUES("15905", "303", "_dt_slideshow_photo_scroller_pt_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("15906", "303", "_dt_slideshow_photo_scroller_pt_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("15907", "303", "_dt_fancy_header_layout_heading", "");
INSERT INTO `wp_postmeta` VALUES("15908", "303", "_dt_fancy_header_padding-top", "");
INSERT INTO `wp_postmeta` VALUES("15909", "303", "_dt_fancy_header_padding-bottom", "");
INSERT INTO `wp_postmeta` VALUES("15910", "303", "_dt_fancy_header_breadcrumbs_heading", "");
INSERT INTO `wp_postmeta` VALUES("15911", "303", "_dt_fancy_header_breadcrumbs", "enabled");
INSERT INTO `wp_postmeta` VALUES("15912", "303", "_dt_fancy_header_breadcrumbs_text_color", "");
INSERT INTO `wp_postmeta` VALUES("15913", "303", "_dt_fancy_header_breadcrumbs_bg_color", "disabled");
INSERT INTO `wp_postmeta` VALUES("15914", "303", "_dt_fancy_header_title_heading", "");
INSERT INTO `wp_postmeta` VALUES("15915", "303", "_dt_fancy_header_title_mode", "custom");
INSERT INTO `wp_postmeta` VALUES("15916", "303", "_dt_fancy_header_title", "");
INSERT INTO `wp_postmeta` VALUES("15917", "303", "_dt_fancy_header_title_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("15918", "303", "_dt_fancy_header_title_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("15919", "303", "_dt_fancy_header_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("15920", "303", "_dt_fancy_header_title_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("15921", "303", "_dt_fancy_header_subtitle_heading", "");
INSERT INTO `wp_postmeta` VALUES("15922", "303", "_dt_fancy_header_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("15923", "303", "_dt_fancy_header_subtitle_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("15924", "303", "_dt_fancy_header_subtitle_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("15925", "303", "_dt_fancy_header_subtitle_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("15926", "303", "_dt_fancy_header_subtitle_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("15927", "303", "_dt_fancy_header_bg_heading", "");
INSERT INTO `wp_postmeta` VALUES("15928", "303", "_dt_fancy_header_bg_overlay", "0");
INSERT INTO `wp_postmeta` VALUES("15929", "303", "_dt_fancy_header_overlay_color", "");
INSERT INTO `wp_postmeta` VALUES("15930", "303", "_dt_fancy_header_bg_overlay_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("15931", "303", "_dt_fancy_header_scroll_effect", "default");
INSERT INTO `wp_postmeta` VALUES("15932", "303", "_dt_fancy_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("15933", "303", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("15934", "303", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("15935", "303", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("15936", "303", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("15937", "303", "_dt_blog_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("15938", "303", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("15939", "303", "_dt_blog_options_columns_number", "3");
INSERT INTO `wp_postmeta` VALUES("15940", "303", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("15941", "303", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("15942", "303", "_dt_blog_options_bg_under_masonry_posts", "disabled");
INSERT INTO `wp_postmeta` VALUES("15943", "303", "_dt_blog_options_post_content_alignment", "left");
INSERT INTO `wp_postmeta` VALUES("15944", "303", "_dt_blog_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("15945", "303", "_dt_blog_options_bg_under_list_posts", "1");
INSERT INTO `wp_postmeta` VALUES("15946", "303", "_dt_blog_options_enable_fancy_date", "1");
INSERT INTO `wp_postmeta` VALUES("15947", "303", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("15948", "303", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("15949", "303", "_dt_blog_options_thumb_width", "");
INSERT INTO `wp_postmeta` VALUES("15950", "303", "_dt_blog_options_ppp", "");
INSERT INTO `wp_postmeta` VALUES("15951", "303", "_dt_blog_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("15952", "303", "_dt_blog_options_load_effect", "fade_in");
INSERT INTO `wp_postmeta` VALUES("15953", "303", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("15954", "303", "_dt_blog_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("15955", "303", "_dt_blog_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("15956", "303", "_dt_blog_options_show_filter", "0");
INSERT INTO `wp_postmeta` VALUES("15957", "303", "_dt_blog_options_show_orderby", "0");
INSERT INTO `wp_postmeta` VALUES("15958", "303", "_dt_blog_options_show_order", "0");
INSERT INTO `wp_postmeta` VALUES("15959", "303", "_dt_blog_options_show_categories_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("15960", "303", "_dt_blog_options_show_date_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("15961", "303", "_dt_blog_options_show_author_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("15962", "303", "_dt_blog_options_show_comments_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("15963", "303", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("15964", "303", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("15965", "303", "_dt_microsite_page_layout", "wide");
INSERT INTO `wp_postmeta` VALUES("15966", "303", "_dt_microsite_page_loading", "enabled");
INSERT INTO `wp_postmeta` VALUES("15967", "303", "_dt_microsite_primary_menu", "");
INSERT INTO `wp_postmeta` VALUES("15968", "303", "_dt_microsite_split_left_menu", "");
INSERT INTO `wp_postmeta` VALUES("15969", "303", "_dt_microsite_split_right_menu", "");
INSERT INTO `wp_postmeta` VALUES("15970", "303", "_dt_microsite_mobile_menu", "");
INSERT INTO `wp_postmeta` VALUES("15971", "303", "_dt_microsite_logo_link", "");
INSERT INTO `wp_postmeta` VALUES("15972", "303", "main_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("15973", "303", "_dt_microsite_main_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15974", "303", "_dt_microsite_main_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15975", "303", "_dt_microsite_main_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15976", "303", "transparent_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("15977", "303", "_dt_microsite_transparent_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15978", "303", "_dt_microsite_transparent_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15979", "303", "_dt_microsite_transparent_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15980", "303", "_dt_microsite_mixed_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15981", "303", "_dt_microsite_mixed_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15982", "303", "_dt_microsite_mixed_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15983", "303", "floating_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("15984", "303", "_dt_microsite_floating_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15985", "303", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15986", "303", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15987", "303", "_dt_microsite_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15988", "303", "_dt_microsite_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15989", "303", "_dt_microsite_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15990", "303", "_dt_microsite_transparent_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15991", "303", "_dt_microsite_transparent_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15992", "303", "_dt_microsite_transparent_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15993", "303", "bottom_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("15994", "303", "_dt_microsite_bottom_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("15995", "303", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15996", "303", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("15997", "303", "favicon_heading", "");
INSERT INTO `wp_postmeta` VALUES("15998", "303", "_dt_microsite_favicon_type", "default");
INSERT INTO `wp_postmeta` VALUES("15999", "303", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16000", "14462", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16001", "14462", "_dt_sidebar_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16002", "14462", "_dt_footer_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16003", "14462", "_dt_header_background_below_slideshow", "disabled");
INSERT INTO `wp_postmeta` VALUES("16004", "14462", "_dt_header_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16005", "14462", "_dt_header_transparent_top_bar_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16006", "14462", "_dt_header_transparent_top_bar_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16007", "14462", "_dt_header_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16008", "14462", "_dt_header_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16009", "14462", "_dt_header_disabled_background", "normal");
INSERT INTO `wp_postmeta` VALUES("16010", "14462", "_dt_header_disabled_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16011", "14462", "_dt_header_disabled_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16012", "14462", "_dt_header_disabled_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16013", "14462", "_dt_page_overrides_top_margin", "");
INSERT INTO `wp_postmeta` VALUES("16014", "14462", "_dt_page_overrides_bottom_margin", "");
INSERT INTO `wp_postmeta` VALUES("16015", "14462", "_dt_slideshow_photo_scroller_layout", "fullscreen");
INSERT INTO `wp_postmeta` VALUES("16016", "14462", "_dt_slideshow_photo_scroller_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16017", "14462", "_dt_slideshow_photo_scroller_overlay", "1");
INSERT INTO `wp_postmeta` VALUES("16018", "14462", "_dt_slideshow_photo_scroller_top_padding", "");
INSERT INTO `wp_postmeta` VALUES("16019", "14462", "_dt_slideshow_photo_scroller_bottom_padding", "");
INSERT INTO `wp_postmeta` VALUES("16020", "14462", "_dt_slideshow_photo_scroller_side_paddings", "");
INSERT INTO `wp_postmeta` VALUES("16021", "14462", "_dt_slideshow_photo_scroller_inactive_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16022", "14462", "_dt_slideshow_photo_scroller_thumbnails_visibility", "show");
INSERT INTO `wp_postmeta` VALUES("16023", "14462", "_dt_slideshow_photo_scroller_thumbnails_width", "");
INSERT INTO `wp_postmeta` VALUES("16024", "14462", "_dt_slideshow_photo_scroller_thumbnails_height", "");
INSERT INTO `wp_postmeta` VALUES("16025", "14462", "_dt_slideshow_photo_scroller_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("16026", "14462", "_dt_slideshow_photo_scroller_autoplay_speed", "");
INSERT INTO `wp_postmeta` VALUES("16027", "14462", "fake_id", "");
INSERT INTO `wp_postmeta` VALUES("16028", "14462", "_dt_slideshow_photo_scroller_ls_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16029", "14462", "_dt_slideshow_photo_scroller_ls_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16030", "14462", "_dt_slideshow_photo_scroller_ls_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16031", "14462", "_dt_slideshow_photo_scroller_ls_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16032", "14462", "_dt_slideshow_photo_scroller_pt_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16033", "14462", "_dt_slideshow_photo_scroller_pt_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16034", "14462", "_dt_slideshow_photo_scroller_pt_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16035", "14462", "_dt_slideshow_photo_scroller_pt_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16036", "14462", "_dt_fancy_header_layout_heading", "");
INSERT INTO `wp_postmeta` VALUES("16037", "14462", "_dt_fancy_header_padding-top", "");
INSERT INTO `wp_postmeta` VALUES("16038", "14462", "_dt_fancy_header_padding-bottom", "");
INSERT INTO `wp_postmeta` VALUES("16039", "14462", "_dt_fancy_header_breadcrumbs_heading", "");
INSERT INTO `wp_postmeta` VALUES("16040", "14462", "_dt_fancy_header_breadcrumbs", "enabled");
INSERT INTO `wp_postmeta` VALUES("16041", "14462", "_dt_fancy_header_breadcrumbs_text_color", "");
INSERT INTO `wp_postmeta` VALUES("16042", "14462", "_dt_fancy_header_breadcrumbs_bg_color", "disabled");
INSERT INTO `wp_postmeta` VALUES("16043", "14462", "_dt_fancy_header_title_heading", "");
INSERT INTO `wp_postmeta` VALUES("16044", "14462", "_dt_fancy_header_title_mode", "custom");
INSERT INTO `wp_postmeta` VALUES("16045", "14462", "_dt_fancy_header_title", "");
INSERT INTO `wp_postmeta` VALUES("16046", "14462", "_dt_fancy_header_title_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16047", "14462", "_dt_fancy_header_title_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16048", "14462", "_dt_fancy_header_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16049", "14462", "_dt_fancy_header_title_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16050", "14462", "_dt_fancy_header_subtitle_heading", "");
INSERT INTO `wp_postmeta` VALUES("16051", "14462", "_dt_fancy_header_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("16052", "14462", "_dt_fancy_header_subtitle_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16053", "14462", "_dt_fancy_header_subtitle_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16054", "14462", "_dt_fancy_header_subtitle_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16055", "14462", "_dt_fancy_header_subtitle_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16056", "14462", "_dt_fancy_header_bg_heading", "");
INSERT INTO `wp_postmeta` VALUES("16057", "14462", "_dt_fancy_header_bg_overlay", "0");
INSERT INTO `wp_postmeta` VALUES("16058", "14462", "_dt_fancy_header_overlay_color", "");
INSERT INTO `wp_postmeta` VALUES("16059", "14462", "_dt_fancy_header_bg_overlay_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16060", "14462", "_dt_fancy_header_scroll_effect", "default");
INSERT INTO `wp_postmeta` VALUES("16061", "14462", "_dt_fancy_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("16062", "14462", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("16063", "14462", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("16064", "14462", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("16065", "14462", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("16066", "14462", "_dt_blog_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("16067", "14462", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("16068", "14462", "_dt_blog_options_columns_number", "3");
INSERT INTO `wp_postmeta` VALUES("16069", "14462", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("16070", "14462", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("16071", "14462", "_dt_blog_options_bg_under_masonry_posts", "disabled");
INSERT INTO `wp_postmeta` VALUES("16072", "14462", "_dt_blog_options_post_content_alignment", "left");
INSERT INTO `wp_postmeta` VALUES("16073", "14462", "_dt_blog_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("16074", "14462", "_dt_blog_options_bg_under_list_posts", "1");
INSERT INTO `wp_postmeta` VALUES("16075", "14462", "_dt_blog_options_enable_fancy_date", "1");
INSERT INTO `wp_postmeta` VALUES("16076", "14462", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("16077", "14462", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("16078", "14462", "_dt_blog_options_thumb_width", "");
INSERT INTO `wp_postmeta` VALUES("16079", "14462", "_dt_blog_options_ppp", "");
INSERT INTO `wp_postmeta` VALUES("16080", "14462", "_dt_blog_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("16081", "14462", "_dt_blog_options_load_effect", "fade_in");
INSERT INTO `wp_postmeta` VALUES("16082", "14462", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("16083", "14462", "_dt_blog_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("16084", "14462", "_dt_blog_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("16085", "14462", "_dt_blog_options_show_filter", "0");
INSERT INTO `wp_postmeta` VALUES("16086", "14462", "_dt_blog_options_show_orderby", "0");
INSERT INTO `wp_postmeta` VALUES("16087", "14462", "_dt_blog_options_show_order", "0");
INSERT INTO `wp_postmeta` VALUES("16088", "14462", "_dt_blog_options_show_categories_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16089", "14462", "_dt_blog_options_show_date_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16090", "14462", "_dt_blog_options_show_author_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16091", "14462", "_dt_blog_options_show_comments_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16092", "14462", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("16093", "14462", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("16094", "14462", "_dt_microsite_page_layout", "wide");
INSERT INTO `wp_postmeta` VALUES("16095", "14462", "_dt_microsite_page_loading", "enabled");
INSERT INTO `wp_postmeta` VALUES("16096", "14462", "_dt_microsite_primary_menu", "");
INSERT INTO `wp_postmeta` VALUES("16097", "14462", "_dt_microsite_split_left_menu", "");
INSERT INTO `wp_postmeta` VALUES("16098", "14462", "_dt_microsite_split_right_menu", "");
INSERT INTO `wp_postmeta` VALUES("16099", "14462", "_dt_microsite_mobile_menu", "");
INSERT INTO `wp_postmeta` VALUES("16100", "14462", "_dt_microsite_logo_link", "");
INSERT INTO `wp_postmeta` VALUES("16101", "14462", "main_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16102", "14462", "_dt_microsite_main_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16103", "14462", "_dt_microsite_main_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16104", "14462", "_dt_microsite_main_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16105", "14462", "transparent_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16106", "14462", "_dt_microsite_transparent_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16107", "14462", "_dt_microsite_transparent_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16108", "14462", "_dt_microsite_transparent_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16109", "14462", "_dt_microsite_mixed_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16110", "14462", "_dt_microsite_mixed_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16111", "14462", "_dt_microsite_mixed_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16112", "14462", "floating_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16113", "14462", "_dt_microsite_floating_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16114", "14462", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16115", "14462", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16116", "14462", "_dt_microsite_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16117", "14462", "_dt_microsite_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16118", "14462", "_dt_microsite_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16119", "14462", "_dt_microsite_transparent_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16120", "14462", "_dt_microsite_transparent_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16121", "14462", "_dt_microsite_transparent_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16122", "14462", "bottom_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16123", "14462", "_dt_microsite_bottom_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16124", "14462", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16125", "14462", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16126", "14462", "favicon_heading", "");
INSERT INTO `wp_postmeta` VALUES("16127", "14462", "_dt_microsite_favicon_type", "default");
INSERT INTO `wp_postmeta` VALUES("16128", "14462", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16129", "5", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16130", "5", "_dt_sidebar_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16131", "5", "_dt_footer_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16132", "5", "_dt_header_background_below_slideshow", "disabled");
INSERT INTO `wp_postmeta` VALUES("16133", "5", "_dt_header_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16134", "5", "_dt_header_transparent_top_bar_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16135", "5", "_dt_header_transparent_top_bar_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16136", "5", "_dt_header_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16137", "5", "_dt_header_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16138", "5", "_dt_header_disabled_background", "normal");
INSERT INTO `wp_postmeta` VALUES("16139", "5", "_dt_header_disabled_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16140", "5", "_dt_header_disabled_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16141", "5", "_dt_header_disabled_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16142", "5", "_dt_page_overrides_top_margin", "");
INSERT INTO `wp_postmeta` VALUES("16143", "5", "_dt_page_overrides_bottom_margin", "");
INSERT INTO `wp_postmeta` VALUES("16144", "5", "_dt_slideshow_photo_scroller_layout", "fullscreen");
INSERT INTO `wp_postmeta` VALUES("16145", "5", "_dt_slideshow_photo_scroller_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16146", "5", "_dt_slideshow_photo_scroller_overlay", "1");
INSERT INTO `wp_postmeta` VALUES("16147", "5", "_dt_slideshow_photo_scroller_top_padding", "");
INSERT INTO `wp_postmeta` VALUES("16148", "5", "_dt_slideshow_photo_scroller_bottom_padding", "");
INSERT INTO `wp_postmeta` VALUES("16149", "5", "_dt_slideshow_photo_scroller_side_paddings", "");
INSERT INTO `wp_postmeta` VALUES("16150", "5", "_dt_slideshow_photo_scroller_inactive_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16151", "5", "_dt_slideshow_photo_scroller_thumbnails_visibility", "show");
INSERT INTO `wp_postmeta` VALUES("16152", "5", "_dt_slideshow_photo_scroller_thumbnails_width", "");
INSERT INTO `wp_postmeta` VALUES("16153", "5", "_dt_slideshow_photo_scroller_thumbnails_height", "");
INSERT INTO `wp_postmeta` VALUES("16154", "5", "_dt_slideshow_photo_scroller_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("16155", "5", "_dt_slideshow_photo_scroller_autoplay_speed", "");
INSERT INTO `wp_postmeta` VALUES("16156", "5", "fake_id", "");
INSERT INTO `wp_postmeta` VALUES("16157", "5", "_dt_slideshow_photo_scroller_ls_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16158", "5", "_dt_slideshow_photo_scroller_ls_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16159", "5", "_dt_slideshow_photo_scroller_ls_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16160", "5", "_dt_slideshow_photo_scroller_ls_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16161", "5", "_dt_slideshow_photo_scroller_pt_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16162", "5", "_dt_slideshow_photo_scroller_pt_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16163", "5", "_dt_slideshow_photo_scroller_pt_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16164", "5", "_dt_slideshow_photo_scroller_pt_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16165", "5", "_dt_fancy_header_layout_heading", "");
INSERT INTO `wp_postmeta` VALUES("16166", "5", "_dt_fancy_header_padding-top", "");
INSERT INTO `wp_postmeta` VALUES("16167", "5", "_dt_fancy_header_padding-bottom", "");
INSERT INTO `wp_postmeta` VALUES("16168", "5", "_dt_fancy_header_breadcrumbs_heading", "");
INSERT INTO `wp_postmeta` VALUES("16169", "5", "_dt_fancy_header_breadcrumbs", "enabled");
INSERT INTO `wp_postmeta` VALUES("16170", "5", "_dt_fancy_header_breadcrumbs_text_color", "");
INSERT INTO `wp_postmeta` VALUES("16171", "5", "_dt_fancy_header_breadcrumbs_bg_color", "disabled");
INSERT INTO `wp_postmeta` VALUES("16172", "5", "_dt_fancy_header_title_heading", "");
INSERT INTO `wp_postmeta` VALUES("16173", "5", "_dt_fancy_header_title_mode", "custom");
INSERT INTO `wp_postmeta` VALUES("16174", "5", "_dt_fancy_header_title", "");
INSERT INTO `wp_postmeta` VALUES("16175", "5", "_dt_fancy_header_title_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16176", "5", "_dt_fancy_header_title_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16177", "5", "_dt_fancy_header_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16178", "5", "_dt_fancy_header_title_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16179", "5", "_dt_fancy_header_subtitle_heading", "");
INSERT INTO `wp_postmeta` VALUES("16180", "5", "_dt_fancy_header_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("16181", "5", "_dt_fancy_header_subtitle_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16182", "5", "_dt_fancy_header_subtitle_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16183", "5", "_dt_fancy_header_subtitle_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16184", "5", "_dt_fancy_header_subtitle_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16185", "5", "_dt_fancy_header_bg_heading", "");
INSERT INTO `wp_postmeta` VALUES("16186", "5", "_dt_fancy_header_bg_overlay", "0");
INSERT INTO `wp_postmeta` VALUES("16187", "5", "_dt_fancy_header_overlay_color", "");
INSERT INTO `wp_postmeta` VALUES("16188", "5", "_dt_fancy_header_bg_overlay_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16189", "5", "_dt_fancy_header_scroll_effect", "default");
INSERT INTO `wp_postmeta` VALUES("16190", "5", "_dt_fancy_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("16191", "5", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("16192", "5", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("16193", "5", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("16194", "5", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("16195", "5", "_dt_blog_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("16196", "5", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("16197", "5", "_dt_blog_options_columns_number", "3");
INSERT INTO `wp_postmeta` VALUES("16198", "5", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("16199", "5", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("16200", "5", "_dt_blog_options_bg_under_masonry_posts", "disabled");
INSERT INTO `wp_postmeta` VALUES("16201", "5", "_dt_blog_options_post_content_alignment", "left");
INSERT INTO `wp_postmeta` VALUES("16202", "5", "_dt_blog_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("16203", "5", "_dt_blog_options_bg_under_list_posts", "1");
INSERT INTO `wp_postmeta` VALUES("16204", "5", "_dt_blog_options_enable_fancy_date", "1");
INSERT INTO `wp_postmeta` VALUES("16205", "5", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("16206", "5", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("16207", "5", "_dt_blog_options_thumb_width", "");
INSERT INTO `wp_postmeta` VALUES("16208", "5", "_dt_blog_options_ppp", "");
INSERT INTO `wp_postmeta` VALUES("16209", "5", "_dt_blog_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("16210", "5", "_dt_blog_options_load_effect", "fade_in");
INSERT INTO `wp_postmeta` VALUES("16211", "5", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("16212", "5", "_dt_blog_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("16213", "5", "_dt_blog_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("16214", "5", "_dt_blog_options_show_filter", "0");
INSERT INTO `wp_postmeta` VALUES("16215", "5", "_dt_blog_options_show_orderby", "0");
INSERT INTO `wp_postmeta` VALUES("16216", "5", "_dt_blog_options_show_order", "0");
INSERT INTO `wp_postmeta` VALUES("16217", "5", "_dt_blog_options_show_categories_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16218", "5", "_dt_blog_options_show_date_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16219", "5", "_dt_blog_options_show_author_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16220", "5", "_dt_blog_options_show_comments_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16221", "5", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("16222", "5", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("16223", "5", "_dt_microsite_page_layout", "wide");
INSERT INTO `wp_postmeta` VALUES("16224", "5", "_dt_microsite_page_loading", "enabled");
INSERT INTO `wp_postmeta` VALUES("16225", "5", "_dt_microsite_primary_menu", "");
INSERT INTO `wp_postmeta` VALUES("16226", "5", "_dt_microsite_split_left_menu", "");
INSERT INTO `wp_postmeta` VALUES("16227", "5", "_dt_microsite_split_right_menu", "");
INSERT INTO `wp_postmeta` VALUES("16228", "5", "_dt_microsite_mobile_menu", "");
INSERT INTO `wp_postmeta` VALUES("16229", "5", "_dt_microsite_logo_link", "");
INSERT INTO `wp_postmeta` VALUES("16230", "5", "main_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16231", "5", "_dt_microsite_main_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16232", "5", "_dt_microsite_main_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16233", "5", "_dt_microsite_main_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16234", "5", "transparent_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16235", "5", "_dt_microsite_transparent_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16236", "5", "_dt_microsite_transparent_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16237", "5", "_dt_microsite_transparent_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16238", "5", "_dt_microsite_mixed_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16239", "5", "_dt_microsite_mixed_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16240", "5", "_dt_microsite_mixed_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16241", "5", "floating_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16242", "5", "_dt_microsite_floating_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16243", "5", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16244", "5", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16245", "5", "_dt_microsite_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16246", "5", "_dt_microsite_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16247", "5", "_dt_microsite_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16248", "5", "_dt_microsite_transparent_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16249", "5", "_dt_microsite_transparent_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16250", "5", "_dt_microsite_transparent_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16251", "5", "bottom_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16252", "5", "_dt_microsite_bottom_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16253", "5", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16254", "5", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16255", "5", "favicon_heading", "");
INSERT INTO `wp_postmeta` VALUES("16256", "5", "_dt_microsite_favicon_type", "default");
INSERT INTO `wp_postmeta` VALUES("16257", "5", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16258", "14245", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16259", "14245", "_dt_sidebar_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16260", "14245", "_dt_footer_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16261", "14245", "_dt_header_background_below_slideshow", "disabled");
INSERT INTO `wp_postmeta` VALUES("16262", "14245", "_dt_header_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16263", "14245", "_dt_header_transparent_top_bar_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16264", "14245", "_dt_header_transparent_top_bar_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16265", "14245", "_dt_header_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16266", "14245", "_dt_header_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16267", "14245", "_dt_header_disabled_background", "normal");
INSERT INTO `wp_postmeta` VALUES("16268", "14245", "_dt_header_disabled_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16269", "14245", "_dt_header_disabled_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16270", "14245", "_dt_header_disabled_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16271", "14245", "_dt_page_overrides_top_margin", "");
INSERT INTO `wp_postmeta` VALUES("16272", "14245", "_dt_page_overrides_bottom_margin", "");
INSERT INTO `wp_postmeta` VALUES("16273", "14245", "_dt_slideshow_photo_scroller_layout", "fullscreen");
INSERT INTO `wp_postmeta` VALUES("16274", "14245", "_dt_slideshow_photo_scroller_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16275", "14245", "_dt_slideshow_photo_scroller_overlay", "1");
INSERT INTO `wp_postmeta` VALUES("16276", "14245", "_dt_slideshow_photo_scroller_top_padding", "");
INSERT INTO `wp_postmeta` VALUES("16277", "14245", "_dt_slideshow_photo_scroller_bottom_padding", "");
INSERT INTO `wp_postmeta` VALUES("16278", "14245", "_dt_slideshow_photo_scroller_side_paddings", "");
INSERT INTO `wp_postmeta` VALUES("16279", "14245", "_dt_slideshow_photo_scroller_inactive_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16280", "14245", "_dt_slideshow_photo_scroller_thumbnails_visibility", "show");
INSERT INTO `wp_postmeta` VALUES("16281", "14245", "_dt_slideshow_photo_scroller_thumbnails_width", "");
INSERT INTO `wp_postmeta` VALUES("16282", "14245", "_dt_slideshow_photo_scroller_thumbnails_height", "");
INSERT INTO `wp_postmeta` VALUES("16283", "14245", "_dt_slideshow_photo_scroller_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("16284", "14245", "_dt_slideshow_photo_scroller_autoplay_speed", "");
INSERT INTO `wp_postmeta` VALUES("16285", "14245", "fake_id", "");
INSERT INTO `wp_postmeta` VALUES("16286", "14245", "_dt_slideshow_photo_scroller_ls_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16287", "14245", "_dt_slideshow_photo_scroller_ls_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16288", "14245", "_dt_slideshow_photo_scroller_ls_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16289", "14245", "_dt_slideshow_photo_scroller_ls_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16290", "14245", "_dt_slideshow_photo_scroller_pt_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16291", "14245", "_dt_slideshow_photo_scroller_pt_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16292", "14245", "_dt_slideshow_photo_scroller_pt_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16293", "14245", "_dt_slideshow_photo_scroller_pt_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16294", "14245", "_dt_fancy_header_layout_heading", "");
INSERT INTO `wp_postmeta` VALUES("16295", "14245", "_dt_fancy_header_padding-top", "");
INSERT INTO `wp_postmeta` VALUES("16296", "14245", "_dt_fancy_header_padding-bottom", "");
INSERT INTO `wp_postmeta` VALUES("16297", "14245", "_dt_fancy_header_breadcrumbs_heading", "");
INSERT INTO `wp_postmeta` VALUES("16298", "14245", "_dt_fancy_header_breadcrumbs", "enabled");
INSERT INTO `wp_postmeta` VALUES("16299", "14245", "_dt_fancy_header_breadcrumbs_text_color", "");
INSERT INTO `wp_postmeta` VALUES("16300", "14245", "_dt_fancy_header_breadcrumbs_bg_color", "disabled");
INSERT INTO `wp_postmeta` VALUES("16301", "14245", "_dt_fancy_header_title_heading", "");
INSERT INTO `wp_postmeta` VALUES("16302", "14245", "_dt_fancy_header_title_mode", "custom");
INSERT INTO `wp_postmeta` VALUES("16303", "14245", "_dt_fancy_header_title", "");
INSERT INTO `wp_postmeta` VALUES("16304", "14245", "_dt_fancy_header_title_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16305", "14245", "_dt_fancy_header_title_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16306", "14245", "_dt_fancy_header_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16307", "14245", "_dt_fancy_header_title_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16308", "14245", "_dt_fancy_header_subtitle_heading", "");
INSERT INTO `wp_postmeta` VALUES("16309", "14245", "_dt_fancy_header_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("16310", "14245", "_dt_fancy_header_subtitle_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16311", "14245", "_dt_fancy_header_subtitle_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16312", "14245", "_dt_fancy_header_subtitle_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16313", "14245", "_dt_fancy_header_subtitle_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16314", "14245", "_dt_fancy_header_bg_heading", "");
INSERT INTO `wp_postmeta` VALUES("16315", "14245", "_dt_fancy_header_bg_overlay", "0");
INSERT INTO `wp_postmeta` VALUES("16316", "14245", "_dt_fancy_header_overlay_color", "");
INSERT INTO `wp_postmeta` VALUES("16317", "14245", "_dt_fancy_header_bg_overlay_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16318", "14245", "_dt_fancy_header_scroll_effect", "default");
INSERT INTO `wp_postmeta` VALUES("16319", "14245", "_dt_fancy_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("16320", "14245", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("16321", "14245", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("16322", "14245", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("16323", "14245", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("16324", "14245", "_dt_blog_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("16325", "14245", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("16326", "14245", "_dt_blog_options_columns_number", "3");
INSERT INTO `wp_postmeta` VALUES("16327", "14245", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("16328", "14245", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("16329", "14245", "_dt_blog_options_bg_under_masonry_posts", "disabled");
INSERT INTO `wp_postmeta` VALUES("16330", "14245", "_dt_blog_options_post_content_alignment", "left");
INSERT INTO `wp_postmeta` VALUES("16331", "14245", "_dt_blog_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("16332", "14245", "_dt_blog_options_bg_under_list_posts", "1");
INSERT INTO `wp_postmeta` VALUES("16333", "14245", "_dt_blog_options_enable_fancy_date", "1");
INSERT INTO `wp_postmeta` VALUES("16334", "14245", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("16335", "14245", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("16336", "14245", "_dt_blog_options_thumb_width", "");
INSERT INTO `wp_postmeta` VALUES("16337", "14245", "_dt_blog_options_ppp", "");
INSERT INTO `wp_postmeta` VALUES("16338", "14245", "_dt_blog_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("16339", "14245", "_dt_blog_options_load_effect", "fade_in");
INSERT INTO `wp_postmeta` VALUES("16340", "14245", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("16341", "14245", "_dt_blog_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("16342", "14245", "_dt_blog_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("16343", "14245", "_dt_blog_options_show_filter", "0");
INSERT INTO `wp_postmeta` VALUES("16344", "14245", "_dt_blog_options_show_orderby", "0");
INSERT INTO `wp_postmeta` VALUES("16345", "14245", "_dt_blog_options_show_order", "0");
INSERT INTO `wp_postmeta` VALUES("16346", "14245", "_dt_blog_options_show_categories_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16347", "14245", "_dt_blog_options_show_date_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16348", "14245", "_dt_blog_options_show_author_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16349", "14245", "_dt_blog_options_show_comments_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16350", "14245", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("16351", "14245", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("16352", "14245", "_dt_microsite_page_layout", "wide");
INSERT INTO `wp_postmeta` VALUES("16353", "14245", "_dt_microsite_page_loading", "enabled");
INSERT INTO `wp_postmeta` VALUES("16354", "14245", "_dt_microsite_primary_menu", "");
INSERT INTO `wp_postmeta` VALUES("16355", "14245", "_dt_microsite_split_left_menu", "");
INSERT INTO `wp_postmeta` VALUES("16356", "14245", "_dt_microsite_split_right_menu", "");
INSERT INTO `wp_postmeta` VALUES("16357", "14245", "_dt_microsite_mobile_menu", "");
INSERT INTO `wp_postmeta` VALUES("16358", "14245", "_dt_microsite_logo_link", "");
INSERT INTO `wp_postmeta` VALUES("16359", "14245", "main_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16360", "14245", "_dt_microsite_main_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16361", "14245", "_dt_microsite_main_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16362", "14245", "_dt_microsite_main_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16363", "14245", "transparent_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16364", "14245", "_dt_microsite_transparent_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16365", "14245", "_dt_microsite_transparent_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16366", "14245", "_dt_microsite_transparent_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16367", "14245", "_dt_microsite_mixed_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16368", "14245", "_dt_microsite_mixed_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16369", "14245", "_dt_microsite_mixed_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16370", "14245", "floating_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16371", "14245", "_dt_microsite_floating_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16372", "14245", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16373", "14245", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16374", "14245", "_dt_microsite_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16375", "14245", "_dt_microsite_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16376", "14245", "_dt_microsite_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16377", "14245", "_dt_microsite_transparent_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16378", "14245", "_dt_microsite_transparent_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16379", "14245", "_dt_microsite_transparent_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16380", "14245", "bottom_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16381", "14245", "_dt_microsite_bottom_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16382", "14245", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16383", "14245", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16384", "14245", "favicon_heading", "");
INSERT INTO `wp_postmeta` VALUES("16385", "14245", "_dt_microsite_favicon_type", "default");
INSERT INTO `wp_postmeta` VALUES("16386", "14245", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16387", "64", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16388", "64", "_dt_sidebar_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16389", "64", "_dt_footer_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16390", "64", "_dt_header_background_below_slideshow", "disabled");
INSERT INTO `wp_postmeta` VALUES("16391", "64", "_dt_header_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16392", "64", "_dt_header_transparent_top_bar_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16393", "64", "_dt_header_transparent_top_bar_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16394", "64", "_dt_header_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16395", "64", "_dt_header_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16396", "64", "_dt_header_disabled_background", "normal");
INSERT INTO `wp_postmeta` VALUES("16397", "64", "_dt_header_disabled_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16398", "64", "_dt_header_disabled_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16399", "64", "_dt_header_disabled_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16400", "64", "_dt_page_overrides_top_margin", "");
INSERT INTO `wp_postmeta` VALUES("16401", "64", "_dt_page_overrides_bottom_margin", "");
INSERT INTO `wp_postmeta` VALUES("16402", "64", "_dt_slideshow_photo_scroller_layout", "fullscreen");
INSERT INTO `wp_postmeta` VALUES("16403", "64", "_dt_slideshow_photo_scroller_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16404", "64", "_dt_slideshow_photo_scroller_overlay", "1");
INSERT INTO `wp_postmeta` VALUES("16405", "64", "_dt_slideshow_photo_scroller_top_padding", "");
INSERT INTO `wp_postmeta` VALUES("16406", "64", "_dt_slideshow_photo_scroller_bottom_padding", "");
INSERT INTO `wp_postmeta` VALUES("16407", "64", "_dt_slideshow_photo_scroller_side_paddings", "");
INSERT INTO `wp_postmeta` VALUES("16408", "64", "_dt_slideshow_photo_scroller_inactive_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16409", "64", "_dt_slideshow_photo_scroller_thumbnails_visibility", "show");
INSERT INTO `wp_postmeta` VALUES("16410", "64", "_dt_slideshow_photo_scroller_thumbnails_width", "");
INSERT INTO `wp_postmeta` VALUES("16411", "64", "_dt_slideshow_photo_scroller_thumbnails_height", "");
INSERT INTO `wp_postmeta` VALUES("16412", "64", "_dt_slideshow_photo_scroller_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("16413", "64", "_dt_slideshow_photo_scroller_autoplay_speed", "");
INSERT INTO `wp_postmeta` VALUES("16414", "64", "fake_id", "");
INSERT INTO `wp_postmeta` VALUES("16415", "64", "_dt_slideshow_photo_scroller_ls_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16416", "64", "_dt_slideshow_photo_scroller_ls_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16417", "64", "_dt_slideshow_photo_scroller_ls_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16418", "64", "_dt_slideshow_photo_scroller_ls_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16419", "64", "_dt_slideshow_photo_scroller_pt_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16420", "64", "_dt_slideshow_photo_scroller_pt_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16421", "64", "_dt_slideshow_photo_scroller_pt_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16422", "64", "_dt_slideshow_photo_scroller_pt_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16423", "64", "_dt_fancy_header_layout_heading", "");
INSERT INTO `wp_postmeta` VALUES("16424", "64", "_dt_fancy_header_padding-top", "");
INSERT INTO `wp_postmeta` VALUES("16425", "64", "_dt_fancy_header_padding-bottom", "");
INSERT INTO `wp_postmeta` VALUES("16426", "64", "_dt_fancy_header_breadcrumbs_heading", "");
INSERT INTO `wp_postmeta` VALUES("16427", "64", "_dt_fancy_header_breadcrumbs", "enabled");
INSERT INTO `wp_postmeta` VALUES("16428", "64", "_dt_fancy_header_breadcrumbs_text_color", "");
INSERT INTO `wp_postmeta` VALUES("16429", "64", "_dt_fancy_header_breadcrumbs_bg_color", "disabled");
INSERT INTO `wp_postmeta` VALUES("16430", "64", "_dt_fancy_header_title_heading", "");
INSERT INTO `wp_postmeta` VALUES("16431", "64", "_dt_fancy_header_title_mode", "custom");
INSERT INTO `wp_postmeta` VALUES("16432", "64", "_dt_fancy_header_title", "");
INSERT INTO `wp_postmeta` VALUES("16433", "64", "_dt_fancy_header_title_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16434", "64", "_dt_fancy_header_title_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16435", "64", "_dt_fancy_header_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16436", "64", "_dt_fancy_header_title_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16437", "64", "_dt_fancy_header_subtitle_heading", "");
INSERT INTO `wp_postmeta` VALUES("16438", "64", "_dt_fancy_header_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("16439", "64", "_dt_fancy_header_subtitle_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16440", "64", "_dt_fancy_header_subtitle_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16441", "64", "_dt_fancy_header_subtitle_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16442", "64", "_dt_fancy_header_subtitle_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16443", "64", "_dt_fancy_header_bg_heading", "");
INSERT INTO `wp_postmeta` VALUES("16444", "64", "_dt_fancy_header_bg_overlay", "0");
INSERT INTO `wp_postmeta` VALUES("16445", "64", "_dt_fancy_header_overlay_color", "");
INSERT INTO `wp_postmeta` VALUES("16446", "64", "_dt_fancy_header_bg_overlay_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16447", "64", "_dt_fancy_header_scroll_effect", "default");
INSERT INTO `wp_postmeta` VALUES("16448", "64", "_dt_fancy_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("16449", "64", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("16450", "64", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("16451", "64", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("16452", "64", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("16453", "64", "_dt_blog_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("16454", "64", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("16455", "64", "_dt_blog_options_columns_number", "3");
INSERT INTO `wp_postmeta` VALUES("16456", "64", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("16457", "64", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("16458", "64", "_dt_blog_options_bg_under_masonry_posts", "disabled");
INSERT INTO `wp_postmeta` VALUES("16459", "64", "_dt_blog_options_post_content_alignment", "left");
INSERT INTO `wp_postmeta` VALUES("16460", "64", "_dt_blog_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("16461", "64", "_dt_blog_options_bg_under_list_posts", "1");
INSERT INTO `wp_postmeta` VALUES("16462", "64", "_dt_blog_options_enable_fancy_date", "1");
INSERT INTO `wp_postmeta` VALUES("16463", "64", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("16464", "64", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("16465", "64", "_dt_blog_options_thumb_width", "");
INSERT INTO `wp_postmeta` VALUES("16466", "64", "_dt_blog_options_ppp", "");
INSERT INTO `wp_postmeta` VALUES("16467", "64", "_dt_blog_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("16468", "64", "_dt_blog_options_load_effect", "fade_in");
INSERT INTO `wp_postmeta` VALUES("16469", "64", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("16470", "64", "_dt_blog_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("16471", "64", "_dt_blog_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("16472", "64", "_dt_blog_options_show_filter", "0");
INSERT INTO `wp_postmeta` VALUES("16473", "64", "_dt_blog_options_show_orderby", "0");
INSERT INTO `wp_postmeta` VALUES("16474", "64", "_dt_blog_options_show_order", "0");
INSERT INTO `wp_postmeta` VALUES("16475", "64", "_dt_blog_options_show_categories_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16476", "64", "_dt_blog_options_show_date_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16477", "64", "_dt_blog_options_show_author_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16478", "64", "_dt_blog_options_show_comments_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16479", "64", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("16480", "64", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("16481", "64", "_dt_microsite_page_layout", "wide");
INSERT INTO `wp_postmeta` VALUES("16482", "64", "_dt_microsite_page_loading", "enabled");
INSERT INTO `wp_postmeta` VALUES("16483", "64", "_dt_microsite_primary_menu", "");
INSERT INTO `wp_postmeta` VALUES("16484", "64", "_dt_microsite_split_left_menu", "");
INSERT INTO `wp_postmeta` VALUES("16485", "64", "_dt_microsite_split_right_menu", "");
INSERT INTO `wp_postmeta` VALUES("16486", "64", "_dt_microsite_mobile_menu", "");
INSERT INTO `wp_postmeta` VALUES("16487", "64", "_dt_microsite_logo_link", "");
INSERT INTO `wp_postmeta` VALUES("16488", "64", "main_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16489", "64", "_dt_microsite_main_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16490", "64", "_dt_microsite_main_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16491", "64", "_dt_microsite_main_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16492", "64", "transparent_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16493", "64", "_dt_microsite_transparent_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16494", "64", "_dt_microsite_transparent_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16495", "64", "_dt_microsite_transparent_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16496", "64", "_dt_microsite_mixed_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16497", "64", "_dt_microsite_mixed_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16498", "64", "_dt_microsite_mixed_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16499", "64", "floating_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16500", "64", "_dt_microsite_floating_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16501", "64", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16502", "64", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16503", "64", "_dt_microsite_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16504", "64", "_dt_microsite_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16505", "64", "_dt_microsite_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16506", "64", "_dt_microsite_transparent_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16507", "64", "_dt_microsite_transparent_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16508", "64", "_dt_microsite_transparent_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16509", "64", "bottom_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16510", "64", "_dt_microsite_bottom_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16511", "64", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16512", "64", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16513", "64", "favicon_heading", "");
INSERT INTO `wp_postmeta` VALUES("16514", "64", "_dt_microsite_favicon_type", "default");
INSERT INTO `wp_postmeta` VALUES("16515", "64", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16516", "15469", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16517", "15469", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("16518", "15469", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("16519", "15469", "_menu_item_object_id", "15113");
INSERT INTO `wp_postmeta` VALUES("16520", "15469", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("16521", "15469", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("16522", "15469", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16523", "15469", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("16524", "15469", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("16526", "15113", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16527", "15113", "_dt_sidebar_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16528", "15113", "_dt_footer_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16529", "15113", "_dt_header_background_below_slideshow", "disabled");
INSERT INTO `wp_postmeta` VALUES("16530", "15113", "_dt_header_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16531", "15113", "_dt_header_transparent_top_bar_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16532", "15113", "_dt_header_transparent_top_bar_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16533", "15113", "_dt_header_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16534", "15113", "_dt_header_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16535", "15113", "_dt_header_disabled_background", "normal");
INSERT INTO `wp_postmeta` VALUES("16536", "15113", "_dt_header_disabled_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16537", "15113", "_dt_header_disabled_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16538", "15113", "_dt_header_disabled_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16539", "15113", "_dt_page_overrides_top_margin", "");
INSERT INTO `wp_postmeta` VALUES("16540", "15113", "_dt_page_overrides_bottom_margin", "");
INSERT INTO `wp_postmeta` VALUES("16541", "15113", "_dt_slideshow_photo_scroller_layout", "fullscreen");
INSERT INTO `wp_postmeta` VALUES("16542", "15113", "_dt_slideshow_photo_scroller_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16543", "15113", "_dt_slideshow_photo_scroller_overlay", "1");
INSERT INTO `wp_postmeta` VALUES("16544", "15113", "_dt_slideshow_photo_scroller_top_padding", "");
INSERT INTO `wp_postmeta` VALUES("16545", "15113", "_dt_slideshow_photo_scroller_bottom_padding", "");
INSERT INTO `wp_postmeta` VALUES("16546", "15113", "_dt_slideshow_photo_scroller_side_paddings", "");
INSERT INTO `wp_postmeta` VALUES("16547", "15113", "_dt_slideshow_photo_scroller_inactive_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16548", "15113", "_dt_slideshow_photo_scroller_thumbnails_visibility", "show");
INSERT INTO `wp_postmeta` VALUES("16549", "15113", "_dt_slideshow_photo_scroller_thumbnails_width", "");
INSERT INTO `wp_postmeta` VALUES("16550", "15113", "_dt_slideshow_photo_scroller_thumbnails_height", "");
INSERT INTO `wp_postmeta` VALUES("16551", "15113", "_dt_slideshow_photo_scroller_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("16552", "15113", "_dt_slideshow_photo_scroller_autoplay_speed", "");
INSERT INTO `wp_postmeta` VALUES("16553", "15113", "fake_id", "");
INSERT INTO `wp_postmeta` VALUES("16554", "15113", "_dt_slideshow_photo_scroller_ls_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16555", "15113", "_dt_slideshow_photo_scroller_ls_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16556", "15113", "_dt_slideshow_photo_scroller_ls_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16557", "15113", "_dt_slideshow_photo_scroller_ls_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16558", "15113", "_dt_slideshow_photo_scroller_pt_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16559", "15113", "_dt_slideshow_photo_scroller_pt_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16560", "15113", "_dt_slideshow_photo_scroller_pt_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16561", "15113", "_dt_slideshow_photo_scroller_pt_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16562", "15113", "_dt_fancy_header_layout_heading", "");
INSERT INTO `wp_postmeta` VALUES("16563", "15113", "_dt_fancy_header_padding-top", "");
INSERT INTO `wp_postmeta` VALUES("16564", "15113", "_dt_fancy_header_padding-bottom", "");
INSERT INTO `wp_postmeta` VALUES("16565", "15113", "_dt_fancy_header_breadcrumbs_heading", "");
INSERT INTO `wp_postmeta` VALUES("16566", "15113", "_dt_fancy_header_breadcrumbs", "enabled");
INSERT INTO `wp_postmeta` VALUES("16567", "15113", "_dt_fancy_header_breadcrumbs_text_color", "");
INSERT INTO `wp_postmeta` VALUES("16568", "15113", "_dt_fancy_header_breadcrumbs_bg_color", "disabled");
INSERT INTO `wp_postmeta` VALUES("16569", "15113", "_dt_fancy_header_title_heading", "");
INSERT INTO `wp_postmeta` VALUES("16570", "15113", "_dt_fancy_header_title_mode", "custom");
INSERT INTO `wp_postmeta` VALUES("16571", "15113", "_dt_fancy_header_title", "");
INSERT INTO `wp_postmeta` VALUES("16572", "15113", "_dt_fancy_header_title_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16573", "15113", "_dt_fancy_header_title_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16574", "15113", "_dt_fancy_header_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16575", "15113", "_dt_fancy_header_title_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16576", "15113", "_dt_fancy_header_subtitle_heading", "");
INSERT INTO `wp_postmeta` VALUES("16577", "15113", "_dt_fancy_header_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("16578", "15113", "_dt_fancy_header_subtitle_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16579", "15113", "_dt_fancy_header_subtitle_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16580", "15113", "_dt_fancy_header_subtitle_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16581", "15113", "_dt_fancy_header_subtitle_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16582", "15113", "_dt_fancy_header_bg_heading", "");
INSERT INTO `wp_postmeta` VALUES("16583", "15113", "_dt_fancy_header_bg_overlay", "0");
INSERT INTO `wp_postmeta` VALUES("16584", "15113", "_dt_fancy_header_overlay_color", "");
INSERT INTO `wp_postmeta` VALUES("16585", "15113", "_dt_fancy_header_bg_overlay_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16586", "15113", "_dt_fancy_header_scroll_effect", "default");
INSERT INTO `wp_postmeta` VALUES("16587", "15113", "_dt_fancy_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("16588", "15113", "_dt_content_display", "no");
INSERT INTO `wp_postmeta` VALUES("16589", "15113", "_dt_content_position", "before_items");
INSERT INTO `wp_postmeta` VALUES("16590", "15113", "_dt_blog_display", "a:2:{s:4:\"type\";s:8:\"category\";s:6:\"select\";s:3:\"all\";}");
INSERT INTO `wp_postmeta` VALUES("16591", "15113", "_dt_blog_options_layout", "masonry");
INSERT INTO `wp_postmeta` VALUES("16592", "15113", "_dt_blog_options_item_padding", "20");
INSERT INTO `wp_postmeta` VALUES("16593", "15113", "_dt_blog_options_target_width", "370");
INSERT INTO `wp_postmeta` VALUES("16594", "15113", "_dt_blog_options_columns_number", "3");
INSERT INTO `wp_postmeta` VALUES("16595", "15113", "_dt_blog_options_full_width", "0");
INSERT INTO `wp_postmeta` VALUES("16596", "15113", "_dt_blog_options_posts_same_width", "0");
INSERT INTO `wp_postmeta` VALUES("16597", "15113", "_dt_blog_options_bg_under_masonry_posts", "disabled");
INSERT INTO `wp_postmeta` VALUES("16598", "15113", "_dt_blog_options_post_content_alignment", "left");
INSERT INTO `wp_postmeta` VALUES("16599", "15113", "_dt_blog_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("16600", "15113", "_dt_blog_options_bg_under_list_posts", "1");
INSERT INTO `wp_postmeta` VALUES("16601", "15113", "_dt_blog_options_enable_fancy_date", "1");
INSERT INTO `wp_postmeta` VALUES("16602", "15113", "_dt_blog_options_image_layout", "original");
INSERT INTO `wp_postmeta` VALUES("16603", "15113", "_dt_blog_options_thumb_proportions", "a:2:{s:5:\"width\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}");
INSERT INTO `wp_postmeta` VALUES("16604", "15113", "_dt_blog_options_thumb_width", "");
INSERT INTO `wp_postmeta` VALUES("16605", "15113", "_dt_blog_options_ppp", "");
INSERT INTO `wp_postmeta` VALUES("16606", "15113", "_dt_blog_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("16607", "15113", "_dt_blog_options_load_effect", "fade_in");
INSERT INTO `wp_postmeta` VALUES("16608", "15113", "_dt_blog_options_show_all_pages", "0");
INSERT INTO `wp_postmeta` VALUES("16609", "15113", "_dt_blog_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("16610", "15113", "_dt_blog_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("16611", "15113", "_dt_blog_options_show_filter", "0");
INSERT INTO `wp_postmeta` VALUES("16612", "15113", "_dt_blog_options_show_orderby", "0");
INSERT INTO `wp_postmeta` VALUES("16613", "15113", "_dt_blog_options_show_order", "0");
INSERT INTO `wp_postmeta` VALUES("16614", "15113", "_dt_blog_options_show_categories_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16615", "15113", "_dt_blog_options_show_date_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16616", "15113", "_dt_blog_options_show_author_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16617", "15113", "_dt_blog_options_show_comments_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16618", "15113", "_dt_blog_options_order", "DESC");
INSERT INTO `wp_postmeta` VALUES("16619", "15113", "_dt_blog_options_orderby", "date");
INSERT INTO `wp_postmeta` VALUES("16620", "15113", "_dt_microsite_page_layout", "wide");
INSERT INTO `wp_postmeta` VALUES("16621", "15113", "_dt_microsite_page_loading", "enabled");
INSERT INTO `wp_postmeta` VALUES("16622", "15113", "_dt_microsite_primary_menu", "");
INSERT INTO `wp_postmeta` VALUES("16623", "15113", "_dt_microsite_split_left_menu", "");
INSERT INTO `wp_postmeta` VALUES("16624", "15113", "_dt_microsite_split_right_menu", "");
INSERT INTO `wp_postmeta` VALUES("16625", "15113", "_dt_microsite_mobile_menu", "");
INSERT INTO `wp_postmeta` VALUES("16626", "15113", "_dt_microsite_logo_link", "");
INSERT INTO `wp_postmeta` VALUES("16627", "15113", "main_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16628", "15113", "_dt_microsite_main_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16629", "15113", "_dt_microsite_main_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16630", "15113", "_dt_microsite_main_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16631", "15113", "transparent_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16632", "15113", "_dt_microsite_transparent_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16633", "15113", "_dt_microsite_transparent_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16634", "15113", "_dt_microsite_transparent_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16635", "15113", "_dt_microsite_mixed_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16636", "15113", "_dt_microsite_mixed_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16637", "15113", "_dt_microsite_mixed_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16638", "15113", "floating_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16639", "15113", "_dt_microsite_floating_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16640", "15113", "_dt_microsite_floating_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16641", "15113", "_dt_microsite_floating_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16642", "15113", "_dt_microsite_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16643", "15113", "_dt_microsite_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16644", "15113", "_dt_microsite_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16645", "15113", "_dt_microsite_transparent_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16646", "15113", "_dt_microsite_transparent_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16647", "15113", "_dt_microsite_transparent_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16648", "15113", "bottom_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16649", "15113", "_dt_microsite_bottom_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16650", "15113", "_dt_microsite_bottom_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16651", "15113", "_dt_microsite_bottom_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16652", "15113", "favicon_heading", "");
INSERT INTO `wp_postmeta` VALUES("16653", "15113", "_dt_microsite_favicon_type", "default");
INSERT INTO `wp_postmeta` VALUES("16654", "15113", "_dt_microsite_favicon", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16655", "12799", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16656", "12799", "_dt_sidebar_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16657", "12799", "_dt_footer_hide_on_mobile", "0");
INSERT INTO `wp_postmeta` VALUES("16658", "12799", "_dt_header_background_below_slideshow", "disabled");
INSERT INTO `wp_postmeta` VALUES("16659", "12799", "_dt_header_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16660", "12799", "_dt_header_transparent_top_bar_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16661", "12799", "_dt_header_transparent_top_bar_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16662", "12799", "_dt_header_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16663", "12799", "_dt_header_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16664", "12799", "_dt_header_disabled_background", "normal");
INSERT INTO `wp_postmeta` VALUES("16665", "12799", "_dt_header_disabled_transparent_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16666", "12799", "_dt_header_disabled_transparent_bg_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16667", "12799", "_dt_header_disabled_transparent_bg_color_scheme", "light");
INSERT INTO `wp_postmeta` VALUES("16668", "12799", "_dt_page_overrides_top_margin", "");
INSERT INTO `wp_postmeta` VALUES("16669", "12799", "_dt_page_overrides_bottom_margin", "");
INSERT INTO `wp_postmeta` VALUES("16670", "12799", "_dt_slideshow_photo_scroller_layout", "fullscreen");
INSERT INTO `wp_postmeta` VALUES("16671", "12799", "_dt_slideshow_photo_scroller_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16672", "12799", "_dt_slideshow_photo_scroller_overlay", "1");
INSERT INTO `wp_postmeta` VALUES("16673", "12799", "_dt_slideshow_photo_scroller_top_padding", "");
INSERT INTO `wp_postmeta` VALUES("16674", "12799", "_dt_slideshow_photo_scroller_bottom_padding", "");
INSERT INTO `wp_postmeta` VALUES("16675", "12799", "_dt_slideshow_photo_scroller_side_paddings", "");
INSERT INTO `wp_postmeta` VALUES("16676", "12799", "_dt_slideshow_photo_scroller_inactive_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16677", "12799", "_dt_slideshow_photo_scroller_thumbnails_visibility", "show");
INSERT INTO `wp_postmeta` VALUES("16678", "12799", "_dt_slideshow_photo_scroller_thumbnails_width", "");
INSERT INTO `wp_postmeta` VALUES("16679", "12799", "_dt_slideshow_photo_scroller_thumbnails_height", "");
INSERT INTO `wp_postmeta` VALUES("16680", "12799", "_dt_slideshow_photo_scroller_autoplay", "play");
INSERT INTO `wp_postmeta` VALUES("16681", "12799", "_dt_slideshow_photo_scroller_autoplay_speed", "");
INSERT INTO `wp_postmeta` VALUES("16682", "12799", "fake_id", "");
INSERT INTO `wp_postmeta` VALUES("16683", "12799", "_dt_slideshow_photo_scroller_ls_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16684", "12799", "_dt_slideshow_photo_scroller_ls_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16685", "12799", "_dt_slideshow_photo_scroller_ls_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16686", "12799", "_dt_slideshow_photo_scroller_ls_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16687", "12799", "_dt_slideshow_photo_scroller_pt_max_width", "");
INSERT INTO `wp_postmeta` VALUES("16688", "12799", "_dt_slideshow_photo_scroller_pt_min_width", "");
INSERT INTO `wp_postmeta` VALUES("16689", "12799", "_dt_slideshow_photo_scroller_pt_fill_dt", "fit");
INSERT INTO `wp_postmeta` VALUES("16690", "12799", "_dt_slideshow_photo_scroller_pt_fill_mob", "fit");
INSERT INTO `wp_postmeta` VALUES("16691", "12799", "_dt_fancy_header_layout_heading", "");
INSERT INTO `wp_postmeta` VALUES("16692", "12799", "_dt_fancy_header_padding-top", "");
INSERT INTO `wp_postmeta` VALUES("16693", "12799", "_dt_fancy_header_padding-bottom", "");
INSERT INTO `wp_postmeta` VALUES("16694", "12799", "_dt_fancy_header_breadcrumbs_heading", "");
INSERT INTO `wp_postmeta` VALUES("16695", "12799", "_dt_fancy_header_breadcrumbs", "enabled");
INSERT INTO `wp_postmeta` VALUES("16696", "12799", "_dt_fancy_header_breadcrumbs_text_color", "");
INSERT INTO `wp_postmeta` VALUES("16697", "12799", "_dt_fancy_header_breadcrumbs_bg_color", "disabled");
INSERT INTO `wp_postmeta` VALUES("16698", "12799", "_dt_fancy_header_title_heading", "");
INSERT INTO `wp_postmeta` VALUES("16699", "12799", "_dt_fancy_header_title_mode", "custom");
INSERT INTO `wp_postmeta` VALUES("16700", "12799", "_dt_fancy_header_title", "");
INSERT INTO `wp_postmeta` VALUES("16701", "12799", "_dt_fancy_header_title_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16702", "12799", "_dt_fancy_header_title_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16703", "12799", "_dt_fancy_header_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16704", "12799", "_dt_fancy_header_title_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16705", "12799", "_dt_fancy_header_subtitle_heading", "");
INSERT INTO `wp_postmeta` VALUES("16706", "12799", "_dt_fancy_header_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("16707", "12799", "_dt_fancy_header_subtitle_font_size", "0");
INSERT INTO `wp_postmeta` VALUES("16708", "12799", "_dt_fancy_header_subtitle_line_height", "0");
INSERT INTO `wp_postmeta` VALUES("16709", "12799", "_dt_fancy_header_subtitle_uppercase", "0");
INSERT INTO `wp_postmeta` VALUES("16710", "12799", "_dt_fancy_header_subtitle_color_mode", "color");
INSERT INTO `wp_postmeta` VALUES("16711", "12799", "_dt_fancy_header_bg_heading", "");
INSERT INTO `wp_postmeta` VALUES("16712", "12799", "_dt_fancy_header_bg_overlay", "0");
INSERT INTO `wp_postmeta` VALUES("16713", "12799", "_dt_fancy_header_overlay_color", "");
INSERT INTO `wp_postmeta` VALUES("16714", "12799", "_dt_fancy_header_bg_overlay_opacity", "0");
INSERT INTO `wp_postmeta` VALUES("16715", "12799", "_dt_fancy_header_scroll_effect", "default");
INSERT INTO `wp_postmeta` VALUES("16716", "12799", "_dt_fancy_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("16717", "12799", "_dt_blog_options_columns_number", "");
INSERT INTO `wp_postmeta` VALUES("16718", "12799", "_dt_blog_options_bg_under_masonry_posts", "disabled");
INSERT INTO `wp_postmeta` VALUES("16719", "12799", "_dt_blog_options_post_content_alignment", "left");
INSERT INTO `wp_postmeta` VALUES("16720", "12799", "_dt_blog_options_list_layout", "list");
INSERT INTO `wp_postmeta` VALUES("16721", "12799", "_dt_blog_options_bg_under_list_posts", "1");
INSERT INTO `wp_postmeta` VALUES("16722", "12799", "_dt_blog_options_enable_fancy_date", "0");
INSERT INTO `wp_postmeta` VALUES("16723", "12799", "_dt_blog_options_thumb_width", "");
INSERT INTO `wp_postmeta` VALUES("16724", "12799", "_dt_blog_options_ppp", "");
INSERT INTO `wp_postmeta` VALUES("16725", "12799", "_dt_blog_options_load_style", "ajax_pagination");
INSERT INTO `wp_postmeta` VALUES("16726", "12799", "_dt_blog_options_load_effect", "fade_in");
INSERT INTO `wp_postmeta` VALUES("16727", "12799", "_dt_blog_options_show_exerpts", "1");
INSERT INTO `wp_postmeta` VALUES("16728", "12799", "_dt_blog_options_show_details", "1");
INSERT INTO `wp_postmeta` VALUES("16729", "12799", "_dt_blog_options_show_filter", "0");
INSERT INTO `wp_postmeta` VALUES("16730", "12799", "_dt_blog_options_show_orderby", "0");
INSERT INTO `wp_postmeta` VALUES("16731", "12799", "_dt_blog_options_show_order", "0");
INSERT INTO `wp_postmeta` VALUES("16732", "12799", "_dt_blog_options_show_categories_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16733", "12799", "_dt_blog_options_show_date_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16734", "12799", "_dt_blog_options_show_author_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16735", "12799", "_dt_blog_options_show_comments_in_post_meta", "1");
INSERT INTO `wp_postmeta` VALUES("16736", "12799", "_dt_microsite_page_layout", "wide");
INSERT INTO `wp_postmeta` VALUES("16737", "12799", "_dt_microsite_split_left_menu", "");
INSERT INTO `wp_postmeta` VALUES("16738", "12799", "_dt_microsite_split_right_menu", "");
INSERT INTO `wp_postmeta` VALUES("16739", "12799", "_dt_microsite_mobile_menu", "");
INSERT INTO `wp_postmeta` VALUES("16740", "12799", "_dt_microsite_logo_link", "");
INSERT INTO `wp_postmeta` VALUES("16741", "12799", "main_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16742", "12799", "_dt_microsite_main_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16743", "12799", "_dt_microsite_main_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16744", "12799", "_dt_microsite_main_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16745", "12799", "transparent_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16746", "12799", "_dt_microsite_transparent_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16747", "12799", "_dt_microsite_transparent_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16748", "12799", "_dt_microsite_transparent_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16749", "12799", "_dt_microsite_mixed_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16750", "12799", "_dt_microsite_mixed_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16751", "12799", "_dt_microsite_mixed_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16752", "12799", "floating_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16753", "12799", "_dt_microsite_floating_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16754", "12799", "_dt_microsite_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16755", "12799", "_dt_microsite_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16756", "12799", "_dt_microsite_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16757", "12799", "_dt_microsite_transparent_mobile_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16758", "12799", "_dt_microsite_transparent_mobile_logo_regular", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16759", "12799", "_dt_microsite_transparent_mobile_logo_hd", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("16760", "12799", "bottom_logo_heading", "");
INSERT INTO `wp_postmeta` VALUES("16761", "12799", "_dt_microsite_bottom_logo_type", "default");
INSERT INTO `wp_postmeta` VALUES("16762", "12799", "favicon_heading", "");
INSERT INTO `wp_postmeta` VALUES("16763", "12799", "_dt_microsite_favicon_type", "default");
INSERT INTO `wp_postmeta` VALUES("16768", "15485", "_wp_attached_file", "2017/08/2018-Living-With-Loss-Part-1-Poster_Oct-2018.pdf");
INSERT INTO `wp_postmeta` VALUES("16769", "15485", "_wp_attachment_metadata", "a:1:{s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"2018-Living-With-Loss-Part-1-Poster_Oct-2018-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"2018-Living-With-Loss-Part-1-Poster_Oct-2018-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"2018-Living-With-Loss-Part-1-Poster_Oct-2018-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:52:\"2018-Living-With-Loss-Part-1-Poster_Oct-2018-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}");
INSERT INTO `wp_postmeta` VALUES("16770", "15340", "_wp_old_slug", "living-loss-part-1-introduction-grief-loss-thursdays-apr-12-may-17-2018-7pm-9pm-3-2");
INSERT INTO `wp_postmeta` VALUES("16771", "15340", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16774", "12799", "_astra_content_layout_flag", "disabled");
INSERT INTO `wp_postmeta` VALUES("16775", "12799", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("16776", "12799", "ast-title-bar-display", "disabled");
INSERT INTO `wp_postmeta` VALUES("16777", "12799", "ast-featured-img", "disabled");
INSERT INTO `wp_postmeta` VALUES("16778", "12799", "site-content-layout", "plain-container");
INSERT INTO `wp_postmeta` VALUES("16779", "12799", "site-sidebar-layout", "no-sidebar");
INSERT INTO `wp_postmeta` VALUES("16780", "15488", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16781", "15489", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16782", "15490", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16785", "4", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16786", "4", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("16787", "4", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16788", "4", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16789", "4", "ast-featured-img", "disabled");
INSERT INTO `wp_postmeta` VALUES("16790", "4", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("16791", "4", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("16793", "4", "_astra_content_layout_flag", "disabled");
INSERT INTO `wp_postmeta` VALUES("16794", "4", "ast-title-bar-display", "disabled");
INSERT INTO `wp_postmeta` VALUES("16795", "4", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre for Counselling and Training is holding its Annual Fundraising Gala on October 27th, 2018.  Tickets go on sale this summer.\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":20},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":20},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":11},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter-1.html\",\"is_external\":\"on\",\"nofollow\":\"\"},\"title_spacing_a\":{\"unit\":\"px\",\"size\":7},\"button_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("16796", "4", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("16799", "15494", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16800", "15494", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("16801", "15494", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16802", "15494", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16803", "15494", "ast-featured-img", "disabled");
INSERT INTO `wp_postmeta` VALUES("16804", "15494", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("16805", "15494", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("16806", "15494", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("16807", "15494", "_astra_content_layout_flag", "disabled");
INSERT INTO `wp_postmeta` VALUES("16808", "15494", "ast-title-bar-display", "disabled");
INSERT INTO `wp_postmeta` VALUES("16809", "15494", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"structure\":\"20\"},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d5cc43e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8c15882\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ae98e21\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"705fd79\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":65}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income&nbsp;with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p>\\n<p>&nbsp;We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.w<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR HISTORY\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#333333\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#333333\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"structure\":\"20\"},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"45a01b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d8abae\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84baff1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4acba\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1ac95d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"650d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eaad479\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a4936ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("16810", "15494", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("16813", "15495", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16814", "15495", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("16815", "15495", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16816", "15495", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16817", "15495", "ast-featured-img", "disabled");
INSERT INTO `wp_postmeta` VALUES("16818", "15495", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("16819", "15495", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("16820", "15495", "_astra_content_layout_flag", "disabled");
INSERT INTO `wp_postmeta` VALUES("16821", "15495", "ast-title-bar-display", "disabled");
INSERT INTO `wp_postmeta` VALUES("16822", "15495", "_elementor_data", "a:3:{i:0;a:5:{s:2:\"id\";s:8:\"3601c896\";s:8:\"settings\";a:20:{s:3:\"gap\";s:4:\"wide\";s:16:\"content_position\";s:6:\"middle\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:2:\"id\";i:15526;s:3:\"url\";s:93:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BG-Img-07-free-img.jpg\";}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:6:\"scroll\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:8:\"gradient\";s:24:\"background_overlay_color\";s:7:\"#ee0979\";s:26:\"background_overlay_color_b\";s:7:\"#ff6a00\";s:33:\"background_overlay_gradient_angle\";a:2:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:45;}s:26:\"background_overlay_opacity\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.8000000000000000444089209850062616169452667236328125;}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"1ee9eb78\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:5:{i:0;a:6:{s:2:\"id\";s:8:\"6d5395f7\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"1866e25d\";s:8:\"settings\";a:8:{s:5:\"title\";s:28:\"Consectetur adipisicing elit\";s:11:\"header_size\";s:2:\"h4\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ffffff\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"4e785a4d\";s:8:\"settings\";a:12:{s:6:\"weight\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:5:\"color\";s:7:\"#ffffff\";s:5:\"width\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:5:\"align\";s:4:\"left\";s:3:\"gap\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:15:\"_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:8:\"3cd3ba7c\";s:8:\"settings\";a:10:{s:5:\"title\";s:59:\"WE SUPPORT CHILDREN AND YOUTH TO REACH THEIR FULL POTENTIAL\";s:11:\"header_size\";s:2:\"h1\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ffffff\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Amatic SC\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:4;a:6:{s:2:\"id\";s:8:\"10ebd0c7\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:7:\"section\";}i:1;a:5:{s:2:\"id\";s:8:\"644553e0\";s:8:\"settings\";a:15:{s:21:\"background_background\";s:7:\"classic\";s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:24:\"background_overlay_color\";s:7:\"#000000\";s:26:\"background_overlay_opacity\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.8000000000000000444089209850062616169452667236328125;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"6793be23\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:7:{i:0;a:6:{s:2:\"id\";s:8:\"64a76c49\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"439fd573\";s:8:\"settings\";a:7:{s:5:\"title\";s:10:\"WHAT WE DO\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"33b59830\";s:8:\"settings\";a:9:{s:6:\"weight\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:5:\"color\";s:7:\"#ff6a00\";s:5:\"width\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;}s:5:\"align\";s:6:\"center\";s:3:\"gap\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:6:\"2f33e1\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:4;a:5:{s:2:\"id\";s:8:\"727b166f\";s:8:\"settings\";a:11:{s:9:\"structure\";s:2:\"30\";s:3:\"gap\";s:8:\"extended\";s:16:\"content_position\";s:3:\"top\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:7:\"6237695\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"684a6ee9\";s:8:\"settings\";a:8:{s:5:\"title\";s:3:\"01.\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:7:\"ee0ec82\";s:8:\"settings\";a:9:{s:5:\"title\";s:18:\"â€” We Find & Fund\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"2c5dcc69\";s:8:\"settings\";a:7:{s:6:\"editor\";s:162:\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:8:\"6111157f\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"54565539\";s:8:\"settings\";a:8:{s:5:\"title\";s:3:\"02.\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"583f4b6f\";s:8:\"settings\";a:9:{s:5:\"title\";s:21:\"â€” We Build Networks\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"340a0b13\";s:8:\"settings\";a:7:{s:6:\"editor\";s:162:\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:2;a:5:{s:2:\"id\";s:8:\"226f6beb\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"6d13f122\";s:8:\"settings\";a:8:{s:5:\"title\";s:3:\"03.\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"12a8dd33\";s:8:\"settings\";a:9:{s:5:\"title\";s:17:\"â€” We Strengthen\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"32f9254\";s:8:\"settings\";a:7:{s:6:\"editor\";s:162:\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:5;a:5:{s:2:\"id\";s:8:\"2a0e9be8\";s:8:\"settings\";a:11:{s:9:\"structure\";s:2:\"30\";s:3:\"gap\";s:4:\"wide\";s:16:\"content_position\";s:3:\"top\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:8:\"7eb6279c\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"155fee10\";s:8:\"settings\";a:8:{s:5:\"title\";s:3:\"04.\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"293c1480\";s:8:\"settings\";a:9:{s:5:\"title\";s:14:\"â€” We Educate\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"2a3a0b66\";s:8:\"settings\";a:7:{s:6:\"editor\";s:162:\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:8:\"7bb01614\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"32c21c69\";s:8:\"settings\";a:8:{s:5:\"title\";s:3:\"05.\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"4c94caea\";s:8:\"settings\";a:9:{s:5:\"title\";s:19:\"â€” We Provide Care\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"8471632\";s:8:\"settings\";a:7:{s:6:\"editor\";s:162:\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:2;a:5:{s:2:\"id\";s:8:\"690649ec\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"45fcccdb\";s:8:\"settings\";a:8:{s:5:\"title\";s:3:\"06.\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"187812dd\";s:8:\"settings\";a:9:{s:5:\"title\";s:14:\"â€” We Consult\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"74df3f0e\";s:8:\"settings\";a:7:{s:6:\"editor\";s:162:\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:6;a:6:{s:2:\"id\";s:8:\"33b37b40\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:7:\"section\";}i:2;a:5:{s:2:\"id\";s:8:\"57b4c16c\";s:8:\"settings\";a:16:{s:21:\"background_background\";s:7:\"classic\";s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:24:\"background_overlay_color\";s:7:\"#000000\";s:26:\"background_overlay_opacity\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.8000000000000000444089209850062616169452667236328125;}s:16:\"background_color\";s:7:\"#f6f6f6\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"29419078\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:7:{i:0;a:6:{s:2:\"id\";s:8:\"5f5ebdf8\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:55;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"16041c6e\";s:8:\"settings\";a:7:{s:5:\"title\";s:17:\"WHAT WE CARE FOR!\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"5023b122\";s:8:\"settings\";a:9:{s:6:\"weight\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:5:\"color\";s:7:\"#ff6a00\";s:5:\"width\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;}s:5:\"align\";s:6:\"center\";s:3:\"gap\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:8:\"353bb6d3\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:4;a:5:{s:2:\"id\";s:8:\"5e673e16\";s:8:\"settings\";a:11:{s:9:\"structure\";s:2:\"30\";s:3:\"gap\";s:8:\"extended\";s:16:\"content_position\";s:3:\"top\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:8:\"51d84fa9\";s:8:\"settings\";a:18:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"26\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#ffffff\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"3d559649\";s:8:\"settings\";a:7:{s:5:\"image\";a:2:{s:2:\"id\";i:15527;s:3:\"url\";s:98:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/stories-img-03-free-img.jpg\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"1da43d9a\";s:8:\"settings\";a:11:{s:6:\"editor\";s:50:\"<h4>Bringing Dreams within Reach for Children</h4>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"d2c4c57\";s:8:\"settings\";a:10:{s:6:\"editor\";s:130:\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:8:\"156f5be4\";s:8:\"settings\";a:18:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"13\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"13\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#ffffff\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"5b1428ad\";s:8:\"settings\";a:7:{s:5:\"image\";a:2:{s:2:\"id\";i:15528;s:3:\"url\";s:98:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/stories-img-01-free-img.jpg\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"5d66fb27\";s:8:\"settings\";a:11:{s:6:\"editor\";s:56:\"<h4>The Keys to a New Future for Exploited Chlidren</h4>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"2961cfd7\";s:8:\"settings\";a:10:{s:6:\"editor\";s:130:\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:2;a:5:{s:2:\"id\";s:7:\"72c3e3c\";s:8:\"settings\";a:18:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"26\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#ffffff\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:7:\"194cd26\";s:8:\"settings\";a:7:{s:5:\"image\";a:2:{s:2:\"id\";i:15529;s:3:\"url\";s:98:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/stories-img-02-free-img.jpg\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"73361388\";s:8:\"settings\";a:11:{s:6:\"editor\";s:47:\"<h4>Boys Rise to Greatness in Burkina Faso</h4>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"1069eb97\";s:8:\"settings\";a:10:{s:6:\"editor\";s:130:\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:5;a:5:{s:2:\"id\";s:8:\"637c3b49\";s:8:\"settings\";a:13:{s:9:\"structure\";s:2:\"30\";s:3:\"gap\";s:8:\"extended\";s:16:\"content_position\";s:3:\"top\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"39\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:5:{s:2:\"id\";s:8:\"398f2105\";s:8:\"settings\";a:18:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"26\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#ffffff\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"6eaa7b27\";s:8:\"settings\";a:7:{s:5:\"image\";a:2:{s:2:\"id\";i:15530;s:3:\"url\";s:98:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/stories-img-04-free-img.jpg\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"2203dd02\";s:8:\"settings\";a:11:{s:6:\"editor\";s:43:\"<h4>Finding a New Lifeâ€”in a New Land</h4>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"e727532\";s:8:\"settings\";a:10:{s:6:\"editor\";s:130:\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:8:\"142b78b6\";s:8:\"settings\";a:18:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"13\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"13\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#ffffff\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"36ba0417\";s:8:\"settings\";a:7:{s:5:\"image\";a:2:{s:2:\"id\";i:15531;s:3:\"url\";s:101:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/stories-img-05-free-img-06.jpg\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"45038c80\";s:8:\"settings\";a:11:{s:6:\"editor\";s:42:\"<h4>The Children who Break New Ground</h4>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"67175e68\";s:8:\"settings\";a:10:{s:6:\"editor\";s:130:\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:2;a:5:{s:2:\"id\";s:7:\"3f6f4dc\";s:8:\"settings\";a:18:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"26\";s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#ffffff\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:7:\"3067b2c\";s:8:\"settings\";a:7:{s:5:\"image\";a:2:{s:2:\"id\";i:15532;s:3:\"url\";s:98:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/stories-img-05-free-img.jpg\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"6beb0474\";s:8:\"settings\";a:11:{s:6:\"editor\";s:37:\"<h4>Bringing Dreams within Reach</h4>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"5205ce70\";s:8:\"settings\";a:10:{s:6:\"editor\";s:130:\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"60\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:6;a:6:{s:2:\"id\";s:8:\"45e5703e\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:7:\"section\";}}");
INSERT INTO `wp_postmeta` VALUES("16823", "15495", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("16824", "15495", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("16827", "15496", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16828", "15496", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("16829", "15496", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16830", "15496", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16831", "15496", "ast-featured-img", "disabled");
INSERT INTO `wp_postmeta` VALUES("16832", "15496", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("16833", "15496", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("16834", "15496", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("16835", "15496", "_astra_content_layout_flag", "disabled");
INSERT INTO `wp_postmeta` VALUES("16836", "15496", "ast-title-bar-display", "disabled");
INSERT INTO `wp_postmeta` VALUES("16837", "15496", "_elementor_data", "a:2:{i:0;a:5:{s:2:\"id\";s:8:\"26aae152\";s:8:\"settings\";a:20:{s:3:\"gap\";s:4:\"wide\";s:16:\"content_position\";s:6:\"middle\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:2:\"id\";i:15520;s:3:\"url\";s:84:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BG-Img-08.jpg\";}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:6:\"scroll\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:8:\"gradient\";s:24:\"background_overlay_color\";s:7:\"#ee0979\";s:26:\"background_overlay_color_b\";s:7:\"#ff6a00\";s:33:\"background_overlay_gradient_angle\";a:2:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:45;}s:26:\"background_overlay_opacity\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.8000000000000000444089209850062616169452667236328125;}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"2cc5e69e\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:5:{i:0;a:6:{s:2:\"id\";s:8:\"7089fe04\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"38789347\";s:8:\"settings\";a:8:{s:5:\"title\";s:29:\"Icididunt ut labore et dolore\";s:11:\"header_size\";s:2:\"h4\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ffffff\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"177bf2e1\";s:8:\"settings\";a:12:{s:6:\"weight\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:5:\"color\";s:7:\"#ffffff\";s:5:\"width\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:5:\"align\";s:4:\"left\";s:3:\"gap\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:15:\"_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:8:\"3f7a09a6\";s:8:\"settings\";a:10:{s:5:\"title\";s:68:\"These are the heroes with the passion to transform their communities\";s:11:\"header_size\";s:2:\"h1\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ffffff\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Amatic SC\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:4;a:6:{s:2:\"id\";s:8:\"4ba636c7\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:7:\"section\";}i:1;a:5:{s:2:\"id\";s:8:\"2a8515a7\";s:8:\"settings\";a:15:{s:21:\"background_background\";s:7:\"classic\";s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:24:\"background_overlay_color\";s:7:\"#000000\";s:26:\"background_overlay_opacity\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.8000000000000000444089209850062616169452667236328125;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"380f101b\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:10:{i:0;a:6:{s:2:\"id\";s:7:\"7c1cdb1\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"2024119c\";s:8:\"settings\";a:7:{s:5:\"title\";s:12:\"OUR PARTNERS\";s:5:\"align\";s:6:\"center\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"4b593510\";s:8:\"settings\";a:9:{s:6:\"weight\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:5:\"color\";s:7:\"#ff6a00\";s:5:\"width\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;}s:5:\"align\";s:6:\"center\";s:3:\"gap\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:8:\"3a7f6f7a\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:4;a:5:{s:2:\"id\";s:8:\"6a356c71\";s:8:\"settings\";a:11:{s:9:\"structure\";s:2:\"20\";s:3:\"gap\";s:8:\"extended\";s:16:\"content_position\";s:3:\"top\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"29187e12\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:22.118999999999999772626324556767940521240234375;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:6:{s:2:\"id\";s:8:\"54c86b36\";s:8:\"settings\";a:12:{s:5:\"image\";a:2:{s:2:\"id\";i:15521;s:3:\"url\";s:96:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/partners-logo-01-dark.png\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:12:\"align_tablet\";s:4:\"left\";s:12:\"align_mobile\";s:6:\"center\";s:19:\"image_border_border\";s:5:\"solid\";s:18:\"image_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:18:\"image_border_color\";s:16:\"rgba(0,0,0,0.14)\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:7:\"2735067\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:77.881000000000000227373675443232059478759765625;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"78a86661\";s:8:\"settings\";a:8:{s:5:\"title\";s:25:\"Brazil  |  Rio de Janeiro\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"1ab7b6fc\";s:8:\"settings\";a:9:{s:5:\"title\";s:28:\"â€” Children Care Foundation\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"71ae87bd\";s:8:\"settings\";a:7:{s:6:\"editor\";s:208:\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:5;a:5:{s:2:\"id\";s:8:\"4954bb37\";s:8:\"settings\";a:11:{s:9:\"structure\";s:2:\"20\";s:3:\"gap\";s:8:\"extended\";s:16:\"content_position\";s:3:\"top\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"73436a34\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:22.118999999999999772626324556767940521240234375;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:6:{s:2:\"id\";s:8:\"6ad7f565\";s:8:\"settings\";a:12:{s:5:\"image\";a:2:{s:2:\"id\";i:15522;s:3:\"url\";s:96:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/partners-logo-02-dark.png\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:12:\"align_tablet\";s:4:\"left\";s:12:\"align_mobile\";s:6:\"center\";s:19:\"image_border_border\";s:5:\"solid\";s:18:\"image_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:18:\"image_border_color\";s:16:\"rgba(0,0,0,0.14)\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:8:\"7073fef4\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:77.881000000000000227373675443232059478759765625;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:7:\"e15a008\";s:8:\"settings\";a:8:{s:5:\"title\";s:24:\"Burkina Faso  |  Banfora\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"38e2bfa2\";s:8:\"settings\";a:9:{s:5:\"title\";s:28:\"â€” All Children  Foundation\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:6:\"846ab6\";s:8:\"settings\";a:7:{s:6:\"editor\";s:220:\"<p>Consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:6;a:5:{s:2:\"id\";s:8:\"50507db2\";s:8:\"settings\";a:11:{s:9:\"structure\";s:2:\"20\";s:3:\"gap\";s:8:\"extended\";s:16:\"content_position\";s:3:\"top\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"349b2526\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:22.118999999999999772626324556767940521240234375;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:6:{s:2:\"id\";s:8:\"45b85a4e\";s:8:\"settings\";a:12:{s:5:\"image\";a:2:{s:2:\"id\";i:15523;s:3:\"url\";s:96:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/partners-logo-03-dark.png\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:12:\"align_tablet\";s:4:\"left\";s:12:\"align_mobile\";s:6:\"center\";s:19:\"image_border_border\";s:5:\"solid\";s:18:\"image_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:18:\"image_border_color\";s:16:\"rgba(0,0,0,0.14)\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:7:\"92f3919\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:77.881000000000000227373675443232059478759765625;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:7:\"d10cc47\";s:8:\"settings\";a:8:{s:5:\"title\";s:16:\"Benin  | Cotonou\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"3df821d4\";s:8:\"settings\";a:9:{s:5:\"title\";s:31:\"â€” The Childrenâ€™s Foundation\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"4d100520\";s:8:\"settings\";a:7:{s:6:\"editor\";s:179:\"<p>Elit sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:7;a:5:{s:2:\"id\";s:8:\"6382a49b\";s:8:\"settings\";a:11:{s:9:\"structure\";s:2:\"20\";s:3:\"gap\";s:8:\"extended\";s:16:\"content_position\";s:3:\"top\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"1df5dc9a\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:22.118999999999999772626324556767940521240234375;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:6:{s:2:\"id\";s:7:\"221d13d\";s:8:\"settings\";a:12:{s:5:\"image\";a:2:{s:2:\"id\";i:15524;s:3:\"url\";s:96:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/partners-logo-04-dark.png\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:12:\"align_tablet\";s:4:\"left\";s:12:\"align_mobile\";s:6:\"center\";s:19:\"image_border_border\";s:5:\"solid\";s:18:\"image_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:18:\"image_border_color\";s:16:\"rgba(0,0,0,0.14)\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:8:\"156dc3cc\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:77.881000000000000227373675443232059478759765625;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"79513446\";s:8:\"settings\";a:8:{s:5:\"title\";s:21:\"Burundi  |  Bujumbura\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"7e9b369b\";s:8:\"settings\";a:9:{s:5:\"title\";s:29:\"â€” Where Children Come First\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:7:\"ae4082c\";s:8:\"settings\";a:7:{s:6:\"editor\";s:208:\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:8;a:5:{s:2:\"id\";s:8:\"76b4250e\";s:8:\"settings\";a:11:{s:9:\"structure\";s:2:\"20\";s:3:\"gap\";s:8:\"extended\";s:16:\"content_position\";s:3:\"top\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"17ade54b\";s:8:\"settings\";a:11:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:22.118999999999999772626324556767940521240234375;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:6:{s:2:\"id\";s:8:\"1108b51c\";s:8:\"settings\";a:12:{s:5:\"image\";a:2:{s:2:\"id\";i:15525;s:3:\"url\";s:96:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/partners-logo-05-dark.png\";}s:10:\"image_size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:12:\"align_tablet\";s:4:\"left\";s:12:\"align_mobile\";s:6:\"center\";s:19:\"image_border_border\";s:5:\"solid\";s:18:\"image_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:18:\"image_border_color\";s:16:\"rgba(0,0,0,0.14)\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:5:\"image\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:7:\"57b4667\";s:8:\"settings\";a:12:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:77.881000000000000227373675443232059478759765625;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"4b0890dd\";s:8:\"settings\";a:8:{s:5:\"title\";s:19:\"Cameroon  |  Douala\";s:11:\"header_size\";s:2:\"h5\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"5b2774c6\";s:8:\"settings\";a:9:{s:5:\"title\";s:34:\"â€” Nobodyâ€™s Children Foundation\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"56d9b9ec\";s:8:\"settings\";a:7:{s:6:\"editor\";s:220:\"<p>Consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure.</p>\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:9;a:6:{s:2:\"id\";s:8:\"6d6ede58\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:7:\"section\";}}");
INSERT INTO `wp_postmeta` VALUES("16838", "15496", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("16841", "15497", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16842", "15497", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("16843", "15497", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16844", "15497", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("16845", "15497", "ast-featured-img", "disabled");
INSERT INTO `wp_postmeta` VALUES("16846", "15497", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("16847", "15497", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("16848", "15497", "_astra_content_layout_flag", "disabled");
INSERT INTO `wp_postmeta` VALUES("16849", "15497", "ast-title-bar-display", "disabled");
INSERT INTO `wp_postmeta` VALUES("16850", "15497", "_elementor_data", "a:2:{i:0;a:5:{s:2:\"id\";s:8:\"4be8b7a4\";s:8:\"settings\";a:20:{s:3:\"gap\";s:4:\"wide\";s:16:\"content_position\";s:6:\"middle\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:2:\"id\";i:15519;s:3:\"url\";s:93:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BG-Img-09-free-img.jpg\";}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:6:\"scroll\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:8:\"gradient\";s:24:\"background_overlay_color\";s:7:\"#ee0979\";s:26:\"background_overlay_color_b\";s:7:\"#ff6a00\";s:33:\"background_overlay_gradient_angle\";a:2:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:45;}s:26:\"background_overlay_opacity\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.8000000000000000444089209850062616169452667236328125;}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"32253ca5\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:5:{i:0;a:6:{s:2:\"id\";s:7:\"d144207\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:7:\"7e31538\";s:8:\"settings\";a:8:{s:5:\"title\";s:14:\"Dolor sit amet\";s:11:\"header_size\";s:2:\"h4\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ffffff\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"1e8aa578\";s:8:\"settings\";a:12:{s:6:\"weight\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:5:\"color\";s:7:\"#ffffff\";s:5:\"width\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:5:\"align\";s:4:\"left\";s:3:\"gap\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:15:\"_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:8:\"55f902b8\";s:8:\"settings\";a:10:{s:5:\"title\";s:10:\"contact us\";s:11:\"header_size\";s:2:\"h1\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ffffff\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Amatic SC\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:4;a:6:{s:2:\"id\";s:8:\"3342fb5a\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:150;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:7:\"section\";}i:1;a:5:{s:2:\"id\";s:8:\"2ccff616\";s:8:\"settings\";a:11:{s:3:\"gap\";s:4:\"wide\";s:16:\"content_position\";s:3:\"top\";s:9:\"structure\";s:2:\"20\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"32304c5f\";s:8:\"settings\";a:10:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:11:{i:0;a:6:{s:2:\"id\";s:8:\"4dd15970\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:25;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"4e483060\";s:8:\"settings\";a:7:{s:5:\"title\";s:30:\"We would love to hear from you\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"3c820058\";s:8:\"settings\";a:7:{s:6:\"editor\";s:62:\"<p>Please write or call us with your questions or comments</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#7a7a7a\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:8:\"62f68f29\";s:8:\"settings\";a:6:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:4;a:6:{s:2:\"id\";s:8:\"6970785b\";s:8:\"settings\";a:8:{s:5:\"title\";s:7:\"Address\";s:11:\"header_size\";s:2:\"h6\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:5;a:6:{s:2:\"id\";s:8:\"50967684\";s:8:\"settings\";a:7:{s:6:\"editor\";s:48:\"<p>123 Fifth Avenue, New York, NY 10160, USA</p>\";s:5:\"align\";s:4:\"left\";s:10:\"text_color\";s:7:\"#000000\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:11:\"text-editor\";s:6:\"elType\";s:6:\"widget\";}i:6;a:6:{s:2:\"id\";s:8:\"1b7acd7a\";s:8:\"settings\";a:8:{s:5:\"title\";s:7:\"Contact\";s:11:\"header_size\";s:2:\"h6\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:7;a:6:{s:2:\"id\";s:7:\"d70681e\";s:8:\"settings\";a:5:{s:9:\"icon_list\";a:2:{i:0;a:4:{s:4:\"text\";s:16:\"+1 910-626-85255\";s:4:\"icon\";s:11:\"fa fa-phone\";s:3:\"_id\";s:7:\"81923e2\";s:4:\"link\";a:3:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";}}i:1;a:4:{s:4:\"text\";s:19:\"contact@charity.com\";s:4:\"icon\";s:14:\"fa fa-envelope\";s:3:\"_id\";s:7:\"e92629f\";s:4:\"link\";a:3:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:0:\"\";s:8:\"nofollow\";s:0:\"\";}}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:9:\"icon-list\";s:6:\"elType\";s:6:\"widget\";}i:8;a:6:{s:2:\"id\";s:8:\"4dedc4f7\";s:8:\"settings\";a:5:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:9;a:6:{s:2:\"id\";s:8:\"362c7352\";s:8:\"settings\";a:8:{s:5:\"title\";s:13:\"Keep in touch\";s:11:\"header_size\";s:2:\"h6\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ee0979\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:10;a:6:{s:2:\"id\";s:8:\"6520e5d5\";s:8:\"settings\";a:14:{s:16:\"social_icon_list\";a:3:{i:0;a:3:{s:6:\"social\";s:14:\"fa fa-facebook\";s:3:\"_id\";s:7:\"08c8c60\";s:4:\"link\";a:3:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:4:\"true\";s:8:\"nofollow\";s:0:\"\";}}i:1;a:3:{s:6:\"social\";s:13:\"fa fa-twitter\";s:3:\"_id\";s:7:\"9a69e1d\";s:4:\"link\";a:3:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:4:\"true\";s:8:\"nofollow\";s:0:\"\";}}i:2;a:3:{s:6:\"social\";s:17:\"fa fa-google-plus\";s:3:\"_id\";s:7:\"4986901\";s:4:\"link\";a:3:{s:3:\"url\";s:0:\"\";s:11:\"is_external\";s:4:\"true\";s:8:\"nofollow\";s:0:\"\";}}}s:5:\"shape\";s:6:\"circle\";s:5:\"align\";s:4:\"left\";s:10:\"icon_color\";s:6:\"custom\";s:18:\"icon_primary_color\";s:7:\"#7a7a7a\";s:20:\"icon_secondary_color\";s:7:\"#ffffff\";s:9:\"icon_size\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;}s:12:\"icon_padding\";a:2:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.59999999999999997779553950749686919152736663818359375;}s:12:\"icon_spacing\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:7;}s:19:\"hover_primary_color\";s:7:\"#ee0979\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:12:\"social-icons\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:8:\"127802f1\";s:8:\"settings\";a:10:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:5:{i:0;a:6:{s:2:\"id\";s:8:\"2a3b4546\";s:8:\"settings\";a:6:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:7:\"96a723e\";s:8:\"settings\";a:7:{s:5:\"title\";s:10:\"Contact us\";s:11:\"header_size\";s:2:\"h3\";s:5:\"align\";s:4:\"left\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"47aefc36\";s:8:\"settings\";a:5:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:8:\"61dd49a0\";s:8:\"settings\";a:5:{s:9:\"shortcode\";s:45:\"[contact-form-7 id=\"78\" title=\"Contact Form\"]\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:9:\"shortcode\";s:6:\"elType\";s:6:\"widget\";}i:4;a:6:{s:2:\"id\";s:8:\"111a0330\";s:8:\"settings\";a:6:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:7:\"section\";}}");
INSERT INTO `wp_postmeta` VALUES("16851", "15497", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("16852", "15497", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("16853", "15497", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_postmeta` VALUES("16854", "15498", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16855", "15498", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("16856", "15498", "_menu_item_object_id", "15497");
INSERT INTO `wp_postmeta` VALUES("16857", "15498", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("16858", "15498", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16859", "15498", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_postmeta` VALUES("16860", "15499", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16861", "15499", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("16862", "15499", "_menu_item_object_id", "15496");
INSERT INTO `wp_postmeta` VALUES("16863", "15499", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("16864", "15499", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16865", "15499", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_postmeta` VALUES("16866", "15500", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16867", "15500", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("16868", "15500", "_menu_item_object_id", "15495");
INSERT INTO `wp_postmeta` VALUES("16869", "15500", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("16870", "15500", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16871", "15500", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_postmeta` VALUES("16872", "15501", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16873", "15501", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("16874", "15501", "_menu_item_object_id", "15494");
INSERT INTO `wp_postmeta` VALUES("16875", "15501", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("16876", "15501", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16877", "15501", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_postmeta` VALUES("16878", "13", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("16879", "13", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("16880", "13", "_menu_item_object_id", "4");
INSERT INTO `wp_postmeta` VALUES("16881", "13", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("16882", "13", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16883", "13", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_postmeta` VALUES("17000", "78", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("17001", "78", "_form", "<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message x5] </label>\n\n[submit \"Send\"]");
INSERT INTO `wp_postmeta` VALUES("17002", "78", "_mail", "a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:27:\"Charity 01 \"[your-subject]\"\";s:6:\"sender\";s:40:\"[your-name] <wordpress@websitedemos.net>\";s:9:\"recipient\";s:26:\"wordpress@websitedemos.net\";s:4:\"body\";s:180:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Charity 01 (https://websitedemos.net/alex01)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("17003", "78", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:27:\"Charity 01 \"[your-subject]\"\";s:6:\"sender\";s:39:\"Charity 01 <wordpress@websitedemos.net>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:122:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Charity 01 (https://websitedemos.net/alex01)\";s:18:\"additional_headers\";s:30:\"Reply-To: costi.drob@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("17004", "78", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}");
INSERT INTO `wp_postmeta` VALUES("17005", "78", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("17006", "78", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_postmeta` VALUES("17019", "103", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("17020", "103", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17021", "103", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("17022", "103", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("17023", "103", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("17024", "103", "ast-featured-img", "disabled");
INSERT INTO `wp_postmeta` VALUES("17025", "103", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("17026", "103", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17027", "103", "_astra_content_layout_flag", "disabled");
INSERT INTO `wp_postmeta` VALUES("17028", "103", "ast-title-bar-display", "disabled");
INSERT INTO `wp_postmeta` VALUES("17029", "103", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68000000000000004884981308350688777863979339599609375},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":77}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0Samaritan\'s Fund<\\/strong>.\\u00a0If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0(for example: one-time, monthly, quarterly, annual etc):<\\/p><ul><li>Option 1\\u00a0: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><strong>Option 2\\u00a0<\\/strong>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><strong>Option 3<\\/strong>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0decreases the amount\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong>Option 4:<\\/strong>\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0decreases the amount\\u00a0we actually receive.<\\/li><\\/ul><p><strong>Why monthly or quarterly giving?<\\/strong><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><strong>The Fine Print<\\/strong><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/p><p>You may help us with an\\u00a0<strong>in-kind donation<\\/strong>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a>\\u00a0to\\u00a0email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17030", "103", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17031", "103", "_wxr_import_user_slug", "alex");
INSERT INTO `wp_postmeta` VALUES("17068", "126", "_wp_attached_file", "2018/03/cropped-favicon-free-img.png");
INSERT INTO `wp_postmeta` VALUES("17069", "126", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:36:\"2018/03/cropped-favicon-free-img.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-favicon-free-img-150x150.png\";s:5:\"width\";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:\"cropped-favicon-free-img-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17070", "126", "_wp_attachment_context", "site-icon");
INSERT INTO `wp_postmeta` VALUES("17071", "126", "_wxr_import_user_slug", "ramak");
INSERT INTO `wp_postmeta` VALUES("17072", "133", "_vc_post_settings", "a:1:{s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("17073", "133", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17074", "133", "_menu_item_object_id", "103");
INSERT INTO `wp_postmeta` VALUES("17075", "133", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17076", "133", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17077", "133", "_wxr_import_user_slug", "sujay");
INSERT INTO `wp_postmeta` VALUES("17078", "15513", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17079", "15513", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17080", "15513", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"build a world where all youth are safe, strong & valued\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"502fa4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17081", "15513", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17082", "15514", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17083", "15514", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17084", "15514", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-05.jpg\",\"id\":63},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2be30917\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eccfa74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"55b92c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR APPROACH\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"719a58bc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"4e641015\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f769df\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bcd1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16540b1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6460dfcc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"35a21443\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"42e60623\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17085", "15514", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17086", "15515", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17087", "15515", "_elementor_data", "[{\"id\":\"6c41702b\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-07-free-img.jpg\",\"id\":83},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"443b0413\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30c2a0a0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"61fc912d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consectetur adipisicing elit\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f64028\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"63016916\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE SUPPORT CHILDREN AND YOUTH TO REACH THEIR FULL POTENTIAL\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1beed9be\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"274901d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"2460dbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f50f4a4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"483ebc47\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3427ac2a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3d658bc4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"63283339\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"463bb072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41bdfad0\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1411ce7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dce17c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"428df733\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e894c\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29f55d74\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ef7dca7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6ce8114\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2a42b3ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74f0820d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14bed47a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f5b0b60\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"20db8b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"75a3693f\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"128f393e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73dec3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"633fca14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ecca071\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fa56778\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1956c44f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"17e0c1d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4764c9aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c91a825\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1651f951\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e8bd982\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16280bd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_color\":\"#f6f6f6\"},\"elements\":[{\"id\":\"71d672e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"581d39f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":55}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3904c8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE CARE FOR!\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a10433\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ea6a03\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5817f5b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"f337b0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b15dc65\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/stories-img-03-free-img.jpg\",\"id\":68},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7571f7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Bringing Dreams within Reach for Children<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be9bcb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d165f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"690d55b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/stories-img-01-free-img.jpg\",\"id\":66},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41a0651\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>The Keys to a New Future for Exploited Chlidren<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c72bc8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"110db54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"acd14d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/stories-img-02-free-img.jpg\",\"id\":67},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"285e9ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Boys Rise to Greatness in Burkina Faso<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d81414c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e4a75e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14347ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"580795e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/stories-img-04-free-img.jpg\",\"id\":69},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1887b12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Finding a New Life\\u2014in a New Land<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1359415\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d6a03a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cd18c40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/stories-img-05-free-img-06.jpg\",\"id\":70},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f7c2200\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>The Children who Break New Ground<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fc6daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f463b0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b33f153\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/stories-img-05-free-img.jpg\",\"id\":71},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e1211ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Bringing Dreams within Reach<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c82df9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0561772\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17088", "15515", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17089", "15515", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17090", "15516", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17091", "15516", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17092", "15516", "_elementor_data", "[{\"id\":\"62c6e8cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-08.jpg\",\"id\":84},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"1adcf773\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"683c5338\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3184caf8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Icididunt ut labore et dolore\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a645069\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"47757d77\",\"elType\":\"widget\",\"settings\":{\"title\":\"These are the heroes with the passion to transform their communities\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f8303ac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ff8c572\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"f461fff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7b2cc82e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"74b42a2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR PARTNERS\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"342b124c\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2087f8e2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"702faae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"72732f63\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.119,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a26455b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01-dark.png\",\"id\":73},\"image_size\":\"full\",\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile\":\"center\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.14)\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f5a20c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77.881,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c414330\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brazil  |  Rio de Janeiro\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51c38f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Children Care Foundation\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67d9aab7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a304d24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b2d22e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.119,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7f9b676\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02-dark.png\",\"id\":74},\"image_size\":\"full\",\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile\":\"center\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.14)\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1a499b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77.881,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ec10e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Burkina Faso  |  Banfora\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3445d29\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 All Children  Foundation\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a95c35f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49a187c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"93615f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.119,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"06ef147\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03-dark.png\",\"id\":75},\"image_size\":\"full\",\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile\":\"center\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.14)\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"883c6ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77.881,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b83241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benin  | Cotonou\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c5906a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 The Children\\u2019s Foundation\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"293793e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Elit sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"814c425\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"f8d3d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.119,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a50e11a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04-dark.png\",\"id\":76},\"image_size\":\"full\",\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile\":\"center\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.14)\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"091ce22\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77.881,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a84385\",\"elType\":\"widget\",\"settings\":{\"title\":\"Burundi  |  Bujumbura\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95e968d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Where Children Come First\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c3a97dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6570f50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":22.119,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9fac40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05-dark.png\",\"id\":77},\"image_size\":\"full\",\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile\":\"center\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.14)\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"528084a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":77.881,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e21ccd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cameroon  |  Douala\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4951ce7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Nobody\\u2019s Children Foundation\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd2ee38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73500158\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17093", "15516", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17099", "103", "_astra_sites_hotlink_imported", "1");
INSERT INTO `wp_postmeta` VALUES("17103", "15497", "_astra_sites_hotlink_imported", "1");
INSERT INTO `wp_postmeta` VALUES("17116", "15524", "_wp_attached_file", "2018/05/partners-logo-04-dark.png");
INSERT INTO `wp_postmeta` VALUES("17117", "15524", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:210;s:6:\"height\";i:140;s:4:\"file\";s:33:\"2018/05/partners-logo-04-dark.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"partners-logo-04-dark-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17118", "15524", "_elementor_source_image_hash", "d715cd3bfaf8a71d33c535f91d1a2eebf7496be5");
INSERT INTO `wp_postmeta` VALUES("17122", "15496", "_astra_sites_hotlink_imported", "1");
INSERT INTO `wp_postmeta` VALUES("17144", "15495", "_astra_sites_hotlink_imported", "1");
INSERT INTO `wp_postmeta` VALUES("17149", "4", "_edit_lock", "1528900529:10");
INSERT INTO `wp_postmeta` VALUES("17153", "15533", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17154", "15533", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17155", "15533", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"build a world where all youth are safe, strong & valued\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"502fa4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17156", "15533", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17158", "15534", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17159", "15534", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17160", "15534", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"build a world where all youth are safe, strong & valued\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"502fa4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17161", "15534", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17163", "15535", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17164", "15535", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17165", "15535", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre for Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"502fa4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17166", "15535", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17167", "15536", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17168", "15536", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17169", "15536", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br> Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"502fa4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17170", "15536", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17175", "4", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17176", "15538", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17177", "15538", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17178", "15538", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br> Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"502fa4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Professional, affordable, income-based counselling services for all individuals<\\/h3>\",\"align\":\"center\",\"text_color\":\"#23a455\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17179", "15538", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17180", "15538", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17181", "15539", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17182", "15539", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17183", "15539", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br> Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17184", "15539", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17185", "15539", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17187", "15540", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17188", "15540", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17189", "15540", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br> Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17190", "15540", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17191", "15540", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17199", "15542", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17200", "15542", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17201", "15542", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br> Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Jane\\u2019s been a migrant worker since she was just 12<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17202", "15542", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17203", "15542", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17209", "15544", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17210", "15544", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17211", "15544", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br> Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d30353c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><div id=\\\"\\\" class=\\\"elementor-element elementor-element-edit-mode elementor-element-d30353c elementor-widget ui-sortable-handle elementor-widget-text-editor elementor-widget-can-edit\\\" style=\\\"font-size: 15px; color: #000000; overflow-y: scroll !important; height: 350px !important;\\\" data-id=\\\"d30353c\\\" data-element_type=\\\"text-editor.default\\\" data-model-cid=\\\"c157\\\"><div class=\\\"elementor-widget-container\\\" style=\\\"font-size: 15px;\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" style=\\\"font-size: 15px;\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p style=\\\"font-size: 15px;\\\">That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/p><p style=\\\"font-size: 15px;\\\">My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/p><p style=\\\"font-size: 15px;\\\">I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/p><p style=\\\"font-size: 15px;\\\">We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<\\/p><p style=\\\"font-size: 15px;\\\">The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/p><p style=\\\"font-size: 15px;\\\">With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a style=\\\"font-size: 15px; color: #0c8c01;\\\" href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/p><p style=\\\"font-size: 15px;\\\">One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/p><p style=\\\"font-size: 15px;\\\">My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/p><p style=\\\"font-size: 15px;\\\">\\u00a0<\\/p><\\/div><\\/div><\\/div><div id=\\\"\\\" class=\\\"elementor-element elementor-element-edit-mode elementor-element-38fc46e elementor-widget ui-sortable-handle elementor-widget-spacer elementor-widget-can-edit\\\" style=\\\"font-size: 15px; outline: #71d7f7 solid 1px;\\\" data-id=\\\"38fc46e\\\" data-element_type=\\\"spacer.default\\\" data-model-cid=\\\"c160\\\"><div class=\\\"elementor-element-overlay\\\" style=\\\"font-size: 15px; font-style: normal; font-weight: 400; letter-spacing: normal; color: #000000;\\\"><ul class=\\\"elementor-editor-element-settings elementor-editor-widget-settings\\\" style=\\\"display: flex;\\\"><li class=\\\"elementor-editor-element-setting elementor-editor-element-trigger\\\" title=\\\"Edit Widget\\\"><span class=\\\"elementor-screen-only\\\" style=\\\"font-size: 11.25px;\\\">Edit Widget<\\/span><\\/li><li class=\\\"elementor-editor-element-setting elementor-editor-element-duplicate\\\" title=\\\"Duplicate Widget\\\"><span class=\\\"elementor-screen-only\\\" style=\\\"font-size: 0px;\\\">Duplicate Widget<\\/span><\\/li><li class=\\\"elementor-editor-element-setting elementor-editor-element-remove\\\" title=\\\"Remove Widget\\\"><span class=\\\"elementor-screen-only\\\" style=\\\"font-size: 0px;\\\">Remove Widget<\\/span><\\/li><li class=\\\"elementor-editor-element-setting elementor-editor-element-remove\\\" title=\\\"Remove Widget\\\"><div>\\u00a0<\\/div><\\/li><\\/ul><\\/div><div class=\\\"elementor-widget-container\\\" style=\\\"font-size: 15px; font-style: normal; font-weight: 400; color: #000000;\\\"><div class=\\\"elementor-spacer\\\" style=\\\"font-size: 15px;\\\">\\u00a0<\\/div><\\/div><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17212", "15544", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17213", "15544", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17214", "15545", "_wp_attached_file", "2018/05/MainLogo-Lg.png");
INSERT INTO `wp_postmeta` VALUES("17215", "15545", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:344;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2018/05/MainLogo-Lg.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MainLogo-Lg-150x150.png\";s:5:\"width\";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:\"MainLogo-Lg-300x174.png\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17216", "15546", "_wp_attached_file", "2018/05/MainLogo-Lg.jpg");
INSERT INTO `wp_postmeta` VALUES("17217", "15546", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:23:\"2018/05/MainLogo-Lg.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MainLogo-Lg-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:\"MainLogo-Lg-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17218", "15547", "_wp_attached_file", "2018/05/MainLogo-sm.png");
INSERT INTO `wp_postmeta` VALUES("17219", "15547", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:89;s:4:\"file\";s:23:\"2018/05/MainLogo-sm.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"MainLogo-sm-150x89.png\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17220", "15548", "_wp_attached_file", "2018/05/BC.jpg");
INSERT INTO `wp_postmeta` VALUES("17221", "15548", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:14:\"2018/05/BC.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"BC-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17222", "15549", "_wp_attached_file", "2018/05/BC.jpeg");
INSERT INTO `wp_postmeta` VALUES("17223", "15549", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:289;s:4:\"file\";s:15:\"2018/05/BC.jpeg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"BC-150x150.jpeg\";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:\"BC-300x116.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17224", "15550", "_wp_attached_file", "2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png");
INSERT INTO `wp_postmeta` VALUES("17225", "15550", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:43:\"2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Logo-Cath-Fnd-Vanc-Isld-300x300-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17226", "15551", "_wp_attached_file", "2018/05/Community-Gaming-BC-logo.png");
INSERT INTO `wp_postmeta` VALUES("17227", "15551", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:360;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2018/05/Community-Gaming-BC-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Community-Gaming-BC-logo-150x150.png\";s:5:\"width\";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:\"Community-Gaming-BC-logo-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17228", "15552", "_wp_attached_file", "2018/05/adore-logo.png");
INSERT INTO `wp_postmeta` VALUES("17229", "15552", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2018/05/adore-logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"adore-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17230", "15553", "_wp_attached_file", "2018/05/CoastCapital.jpg");
INSERT INTO `wp_postmeta` VALUES("17231", "15553", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2018/05/CoastCapital.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"CoastCapital-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17232", "15554", "_wp_attached_file", "2018/05/Rotary-International.jpg");
INSERT INTO `wp_postmeta` VALUES("17233", "15554", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2018/05/Rotary-International.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Rotary-International-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17234", "15555", "_wp_attached_file", "2018/05/UnitedWayFull375x165-300x300.jpg");
INSERT INTO `wp_postmeta` VALUES("17235", "15555", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:40:\"2018/05/UnitedWayFull375x165-300x300.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"UnitedWayFull375x165-300x300-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17236", "15556", "_wp_attached_file", "2018/05/Victoria300x300.jpg");
INSERT INTO `wp_postmeta` VALUES("17237", "15556", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2018/05/Victoria300x300.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Victoria300x300-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17238", "15557", "_wp_attached_file", "2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg");
INSERT INTO `wp_postmeta` VALUES("17239", "15557", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:44:\"2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"St-Luke-Cedar-Hill-Logo1-300x300-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:{}}}");
INSERT INTO `wp_postmeta` VALUES("17240", "15558", "_wp_attached_file", "2018/05/CSS-logo-e1481049941965.jpg");
INSERT INTO `wp_postmeta` VALUES("17241", "15558", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:51;s:4:\"file\";s:35:\"2018/05/CSS-logo-e1481049941965.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"CSS-logo-e1481049941965-150x51.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:51;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17249", "15560", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17250", "15560", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17251", "15560", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br> Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17252", "15560", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17253", "15560", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17259", "15563", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17260", "15563", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17261", "15563", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":118,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-06-free-img.jpg\"},{\"id\":119,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-07-free-img.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-08-free-img.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-01.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-02-free-img.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-03.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-05-free-img.jpg\"},{\"id\":27,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/gallery-img-04-free-img.jpg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17262", "15563", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17263", "15563", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17270", "15565", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17271", "15565", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17272", "15565", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for<br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17273", "15565", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17274", "15565", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17275", "15566", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17276", "15566", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17277", "15566", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre for Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17278", "15566", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17279", "15566", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17281", "15567", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17282", "15567", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17283", "15567", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-01.jpg\",\"id\":20},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17284", "15567", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17285", "15567", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17290", "15570", "_wp_attached_file", "2018/05/cropped-MainLogo-Lg.png");
INSERT INTO `wp_postmeta` VALUES("17291", "15570", "_wp_attachment_context", "custom-logo");
INSERT INTO `wp_postmeta` VALUES("17292", "15570", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:344;s:6:\"height\";i:155;s:4:\"file\";s:31:\"2018/05/cropped-MainLogo-Lg.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-MainLogo-Lg-150x150.png\";s:5:\"width\";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:\"cropped-MainLogo-Lg-300x135.png\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17295", "15572", "_wp_attached_file", "2018/05/cropped-MainLogo-Lg-1.png");
INSERT INTO `wp_postmeta` VALUES("17296", "15572", "_wp_attachment_context", "custom-logo");
INSERT INTO `wp_postmeta` VALUES("17297", "15572", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:344;s:6:\"height\";i:157;s:4:\"file\";s:33:\"2018/05/cropped-MainLogo-Lg-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-MainLogo-Lg-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:\"cropped-MainLogo-Lg-1-300x137.png\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"ast-logo-size\";a:4:{s:4:\"file\";s:32:\"cropped-MainLogo-Lg-1-209x95.png\";s:5:\"width\";i:209;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17305", "15575", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17306", "15575", "_menu_item_menu_item_parent", "15628");
INSERT INTO `wp_postmeta` VALUES("17307", "15575", "_menu_item_object_id", "24");
INSERT INTO `wp_postmeta` VALUES("17308", "15575", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17309", "15575", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17310", "15575", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17311", "15575", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17312", "15575", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17314", "15576", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17315", "15576", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("17316", "15576", "_menu_item_object_id", "848");
INSERT INTO `wp_postmeta` VALUES("17317", "15576", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17318", "15576", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17319", "15576", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17320", "15576", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17321", "15576", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17323", "15577", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17324", "15577", "_menu_item_menu_item_parent", "15628");
INSERT INTO `wp_postmeta` VALUES("17325", "15577", "_menu_item_object_id", "60");
INSERT INTO `wp_postmeta` VALUES("17326", "15577", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17327", "15577", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17328", "15577", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17329", "15577", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17330", "15577", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17332", "15578", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17333", "15578", "_menu_item_menu_item_parent", "15628");
INSERT INTO `wp_postmeta` VALUES("17334", "15578", "_menu_item_object_id", "74");
INSERT INTO `wp_postmeta` VALUES("17335", "15578", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17336", "15578", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17337", "15578", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17338", "15578", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17339", "15578", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17341", "15579", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17342", "15579", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("17343", "15579", "_menu_item_object_id", "4");
INSERT INTO `wp_postmeta` VALUES("17344", "15579", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17345", "15579", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17346", "15579", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17347", "15579", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17348", "15579", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17359", "15581", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17360", "15581", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("17361", "15581", "_menu_item_object_id", "35");
INSERT INTO `wp_postmeta` VALUES("17362", "15581", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17363", "15581", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17364", "15581", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17365", "15581", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17366", "15581", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17368", "15582", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17369", "15582", "_menu_item_menu_item_parent", "15581");
INSERT INTO `wp_postmeta` VALUES("17370", "15582", "_menu_item_object_id", "54");
INSERT INTO `wp_postmeta` VALUES("17371", "15582", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17372", "15582", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17373", "15582", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17374", "15582", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17375", "15582", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17377", "15583", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17378", "15583", "_menu_item_menu_item_parent", "15581");
INSERT INTO `wp_postmeta` VALUES("17379", "15583", "_menu_item_object_id", "14245");
INSERT INTO `wp_postmeta` VALUES("17380", "15583", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17381", "15583", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17382", "15583", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17383", "15583", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17384", "15583", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17395", "15585", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17396", "15585", "_menu_item_menu_item_parent", "15581");
INSERT INTO `wp_postmeta` VALUES("17397", "15585", "_menu_item_object_id", "64");
INSERT INTO `wp_postmeta` VALUES("17398", "15585", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17399", "15585", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17400", "15585", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17401", "15585", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17402", "15585", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17422", "15588", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17423", "15588", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("17424", "15588", "_menu_item_object_id", "11");
INSERT INTO `wp_postmeta` VALUES("17425", "15588", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17426", "15588", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17427", "15588", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17428", "15588", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17429", "15588", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17431", "15589", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17432", "15589", "_menu_item_menu_item_parent", "15588");
INSERT INTO `wp_postmeta` VALUES("17433", "15589", "_menu_item_object_id", "13550");
INSERT INTO `wp_postmeta` VALUES("17434", "15589", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17435", "15589", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17436", "15589", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17437", "15589", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17438", "15589", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17440", "15590", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17441", "15590", "_menu_item_menu_item_parent", "15588");
INSERT INTO `wp_postmeta` VALUES("17442", "15590", "_menu_item_object_id", "303");
INSERT INTO `wp_postmeta` VALUES("17443", "15590", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17444", "15590", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17445", "15590", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17446", "15590", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17447", "15590", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17449", "15591", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17450", "15591", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("17451", "15591", "_menu_item_object_id", "14462");
INSERT INTO `wp_postmeta` VALUES("17452", "15591", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17453", "15591", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17454", "15591", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17455", "15591", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17456", "15591", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17458", "15592", "_wp_attached_file", "2018/05/IMG_6263-e1525817272581.jpg");
INSERT INTO `wp_postmeta` VALUES("17459", "15592", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3024;s:6:\"height\";i:4032;s:4:\"file\";s:35:\"2018/05/IMG_6263-e1525817272581.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_6263-e1525817272581-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:\"IMG_6263-e1525817272581-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:36:\"IMG_6263-e1525817272581-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:36:\"IMG_6263-e1525817272581-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17460", "15593", "_wp_attached_file", "2018/05/IMG_9479.jpg");
INSERT INTO `wp_postmeta` VALUES("17461", "15593", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2018/05/IMG_9479.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_9479-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_9479-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_9479-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_9479-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525181515\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00017699115044248\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17462", "15594", "_wp_attached_file", "2018/05/IMG_0087.jpg");
INSERT INTO `wp_postmeta` VALUES("17463", "15594", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2018/05/IMG_0087.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0087-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0087-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_0087-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0087-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525181999\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00040700040700041\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17464", "15595", "_wp_attached_file", "2018/05/IMG_3436.jpg");
INSERT INTO `wp_postmeta` VALUES("17465", "15595", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2018/05/IMG_3436.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3436-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3436-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_3436-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3436-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525182504\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00037593984962406\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17466", "15596", "_wp_attached_file", "2018/05/IMG_1261.jpg");
INSERT INTO `wp_postmeta` VALUES("17467", "15596", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2018/05/IMG_1261.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1261-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1261-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_1261-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_1261-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525182204\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00039698292973402\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17468", "15597", "_wp_attached_file", "2018/05/IMG_0884.jpg");
INSERT INTO `wp_postmeta` VALUES("17469", "15597", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2018/05/IMG_0884.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0884-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0884-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_0884-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0884-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525183640\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00062617407639324\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17470", "15598", "_wp_attached_file", "2018/05/IMG_1498-e1525817249956.jpg");
INSERT INTO `wp_postmeta` VALUES("17471", "15598", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3024;s:6:\"height\";i:4032;s:4:\"file\";s:35:\"2018/05/IMG_1498-e1525817249956.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_1498-e1525817249956-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:\"IMG_1498-e1525817249956-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:36:\"IMG_1498-e1525817249956-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:36:\"IMG_1498-e1525817249956-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17472", "15599", "_wp_attached_file", "2018/05/IMG_4595-e1525817226901.jpg");
INSERT INTO `wp_postmeta` VALUES("17473", "15599", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3024;s:6:\"height\";i:4032;s:4:\"file\";s:35:\"2018/05/IMG_4595-e1525817226901.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IMG_4595-e1525817226901-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:\"IMG_4595-e1525817226901-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:36:\"IMG_4595-e1525817226901-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:36:\"IMG_4595-e1525817226901-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17474", "15600", "_wp_attached_file", "2018/05/IMG_6680.jpg");
INSERT INTO `wp_postmeta` VALUES("17475", "15600", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:20:\"2018/05/IMG_6680.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_6680-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_6680-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_6680-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_6680-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525183639\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00062617407639324\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17476", "15601", "_wp_attached_file", "2018/05/IMG_3359.jpg");
INSERT INTO `wp_postmeta` VALUES("17477", "15601", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:16382;s:6:\"height\";i:3628;s:4:\"file\";s:20:\"2018/05/IMG_3359.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3359-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:\"IMG_3359-300x66.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_3359-768x170.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3359-1024x227.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525182809\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:17:\"0.000282007896221\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17478", "15599", "_wp_attachment_backup_sizes", "a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:12:\"IMG_4595.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"IMG_4595-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"IMG_4595-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:20:\"IMG_4595-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:21:\"IMG_4595-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}");
INSERT INTO `wp_postmeta` VALUES("17479", "15598", "_wp_attachment_backup_sizes", "a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:12:\"IMG_1498.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"IMG_1498-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"IMG_1498-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:20:\"IMG_1498-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:21:\"IMG_1498-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}");
INSERT INTO `wp_postmeta` VALUES("17480", "15592", "_wp_attachment_backup_sizes", "a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4032;s:6:\"height\";i:3024;s:4:\"file\";s:12:\"IMG_6263.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"IMG_6263-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"IMG_6263-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:20:\"IMG_6263-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:21:\"IMG_6263-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}");
INSERT INTO `wp_postmeta` VALUES("17483", "15603", "_wp_attached_file", "2018/05/cropped-MainLogo-Lg-2.png");
INSERT INTO `wp_postmeta` VALUES("17484", "15603", "_wp_attachment_context", "custom-logo");
INSERT INTO `wp_postmeta` VALUES("17485", "15603", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:344;s:6:\"height\";i:144;s:4:\"file\";s:33:\"2018/05/cropped-MainLogo-Lg-2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-MainLogo-Lg-2-150x144.png\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-MainLogo-Lg-2-300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"ast-logo-size\";a:4:{s:4:\"file\";s:32:\"cropped-MainLogo-Lg-2-223x93.png\";s:5:\"width\";i:223;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17499", "15609", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17500", "15609", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17501", "15609", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17502", "15609", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17503", "15609", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17506", "15610", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17507", "15610", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17508", "15610", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17509", "15610", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17510", "15610", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17512", "15611", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17513", "15611", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17514", "15611", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17515", "15611", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17516", "15611", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17518", "15612", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17519", "15612", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17520", "15612", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-03-free-img.jpg\",\"id\":22},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-04-free-img.jpg\",\"id\":23},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17521", "15612", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17522", "15612", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17525", "15613", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17526", "15613", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17527", "15613", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#23a455\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"52a0575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae8ef2\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"2775c09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15231a3\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17528", "15613", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17529", "15613", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17532", "29", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17534", "24", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17536", "15113", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17537", "15113", "_elementor_data", "[{\"id\":\"3bdd7e0a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"auto\"},\"elements\":[{\"id\":\"6328236f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"141e87f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":138}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4a7ee21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\\u00a0<\\/h4><h4>Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.<\\/h4><h4>\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/h4><h4>Call the Centre directly for more information on these services.<\\/h4>\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"00558fe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":250}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17538", "15614", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17539", "15614", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17540", "15614", "_elementor_data", "[{\"id\":\"3bdd7e0a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599}},\"elements\":[{\"id\":\"6328236f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4a7ee21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17541", "15113", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17542", "15615", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17543", "15615", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17544", "15615", "_elementor_data", "[{\"id\":\"3bdd7e0a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599}},\"elements\":[{\"id\":\"6328236f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"141e87f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":138}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4a7ee21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17545", "15615", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17546", "15616", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17547", "15616", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17548", "15616", "_elementor_data", "[{\"id\":\"3bdd7e0a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"auto\"},\"elements\":[{\"id\":\"6328236f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"141e87f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":138}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4a7ee21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"00558fe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":250}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17549", "15616", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17550", "15617", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17551", "15617", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17552", "15617", "_elementor_data", "[{\"id\":\"3bdd7e0a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"auto\"},\"elements\":[{\"id\":\"6328236f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"141e87f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":138}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4a7ee21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"00558fe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":250}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17553", "15617", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17558", "15113", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17559", "15619", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17560", "15619", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17561", "15619", "_elementor_data", "[{\"id\":\"3bdd7e0a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"auto\"},\"elements\":[{\"id\":\"6328236f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"141e87f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":138}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4a7ee21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\\u00a0<\\/h4><h4>Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.<\\/h4><h4>\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/h4><h4>Call the Centre directly for more information on these services.<\\/h4>\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"00558fe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":250}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17562", "15619", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17563", "15619", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17565", "15494", "_edit_lock", "1528994044:10");
INSERT INTO `wp_postmeta` VALUES("17566", "15620", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17567", "15620", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17568", "15620", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-05.jpg\",\"id\":63},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2be30917\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eccfa74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"55b92c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR APPROACH\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"719a58bc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"4e641015\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f769df\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bcd1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16540b1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6460dfcc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"35a21443\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"42e60623\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17569", "15620", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17571", "15621", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17572", "15621", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17573", "15621", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/BG-Img-02-free-img.jpg\",\"id\":21},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2be30917\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eccfa74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"55b92c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR APPROACH\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"719a58bc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"4e641015\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f769df\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42bcd1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16540b1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6460dfcc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"35a21443\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":116,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-06.png\"},{\"id\":115,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-07.png\"},{\"id\":35,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-05.png\"},{\"id\":34,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-04.png\"},{\"id\":33,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-03.png\"},{\"id\":32,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-02.png\"},{\"id\":31,\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/partners-logo-01.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"42e60623\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17574", "15621", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17576", "15622", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17577", "15622", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17578", "15622", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2be30917\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eccfa74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"55b92c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17579", "15622", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17580", "15623", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17581", "15623", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17582", "15623", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2be30917\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.\\u00a0<\\/h4>\",\"align\":\"left\",\"text_color\":\"#23a455\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.\\u00a0<\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17583", "15623", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17584", "15624", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17585", "15624", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17586", "15624", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2be30917\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.&nbsp;<\\/h4>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.\\u00a0<\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17587", "15624", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17589", "15625", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17590", "15625", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17591", "15625", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. \\n\\n\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.\\u00a0<\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17592", "15625", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17594", "15626", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17595", "15626", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17596", "15626", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0\\u00a0<\\/span><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17597", "15626", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17598", "15627", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17599", "15627", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17600", "15627", "_elementor_data", "[{\"id\":\"1dc890d\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"e6d5ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7adb062\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9736b89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"336a0353\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f03a51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"across the globe, we are united in our dedication to children\\u2019s rights\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"867c460\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":56,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"3ed99d05\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-01.jpg\",\"id\":17},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dda7e65\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5366e2d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.666000000000000369482222595252096652984619140625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/websitedemos.net\\/alex01\\/wp-content\\/uploads\\/sites\\/173\\/2018\\/02\\/about-img-02.jpg\",\"id\":47},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":25,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"27201679\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":350}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.<\\/span><\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9327f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.\\u00a0<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17601", "15627", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17603", "15628", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("17604", "15628", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("17605", "15628", "_menu_item_object_id", "15494");
INSERT INTO `wp_postmeta` VALUES("17606", "15628", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("17607", "15628", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("17608", "15628", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("17609", "15628", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("17610", "15628", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("17612", "15629", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17613", "15629", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17614", "15629", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"990ae94\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":230},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"33b6602\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e52801\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17615", "15629", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17616", "15629", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17618", "15630", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17619", "15630", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17620", "15630", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"804387e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ee0979\",\"background_overlay_color\":\"#ee0979\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.95999999999999996447286321199499070644378662109375}},\"elements\":[{\"id\":\"99aeabf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e0cfd5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_scroll\":\"1\",\"navigation\":\"arrows\",\"arrows_size\":{\"unit\":\"px\",\"size\":50},\"arrows_color\":\"#ffffff\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":0},\"_background_background\":\"classic\",\"_background_color\":\"#ee0979\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f279b3d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"c1928fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c09cc9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8909a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6350fdc\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"483f010\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"91c8379\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"c8173f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"00162e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61c6fbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f8d12a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"88bd072\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d80c809\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f062824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"64fa70c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"855c31e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5a84bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"333933f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54468da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"b1115c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"547f040\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8216e5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ace9e2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"af2160d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ac2bc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e7a9de6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31b5f12\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"abde3c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4de35d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8456dfc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd7eaae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0765d5e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2347ef\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6b1b07\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11975b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"38fc46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"03fed35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3951bf0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"align\":\"left\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"0805f1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><span style=\\\"color: #ee0979;\\\">A Brighter Future \\u2014 for Cambodia\\u2019s Children<\\/span><\\/h3>\",\"align\":\"left\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"026089a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.<\\/h5>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"076d13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"left\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ee0979\",\"background_color\":\"rgba(255,106,0,0)\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"icon\":\"fa fa-plus\",\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"804e46e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":270},\"space_tablet\":{\"unit\":\"px\",\"size\":200},\"space_mobile\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17621", "15630", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17622", "15630", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17623", "15631", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17624", "15631", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17625", "15631", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/p><p>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/p><p>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/p><p>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/p><p>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<\\/p><p>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/p><p>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/p><p>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/p><p>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17626", "15631", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17627", "15631", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17628", "15632", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17629", "15632", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17630", "15632", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/p><p>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/p><p>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/p><p>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/p><p>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<\\/p><p>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/p><p>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/p><p>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/p><p>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17631", "15632", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17632", "15632", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17634", "15633", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17635", "15633", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17636", "15633", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5><br \\/>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5><br \\/>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5><br \\/>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5><br \\/>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5><br \\/>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5><br \\/>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5><br \\/>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17637", "15633", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17638", "15633", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17644", "103", "_edit_lock", "1528814940:10");
INSERT INTO `wp_postmeta` VALUES("17654", "15637", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17655", "15637", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17656", "15637", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us and change the course of a child\\u2019s life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17657", "15637", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17658", "15637", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17661", "15638", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17662", "15638", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17663", "15638", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br> <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17664", "15638", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17665", "15638", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17667", "15639", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17668", "15639", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17669", "15639", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17670", "15639", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17671", "15639", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17673", "15640", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17674", "15640", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17675", "15640", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"#Who We Are\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17676", "15640", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17677", "15640", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17679", "15641", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17680", "15641", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17681", "15641", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17682", "15641", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17683", "15641", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17685", "15642", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17686", "15642", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17687", "15642", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17688", "15642", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17689", "15642", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17692", "15643", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17693", "15643", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17694", "15643", "_elementor_data", "s:9431:\"a:1:{i:0;a:5:{s:2:\"id\";s:7:\"6bc338a\";s:8:\"settings\";a:19:{s:3:\"gap\";s:4:\"wide\";s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:2:\"id\";i:15518;s:3:\"url\";s:95:\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BG-Img-09-free-img-1.jpg\";}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";s:29:\"background_overlay_background\";s:8:\"gradient\";s:24:\"background_overlay_color\";s:7:\"#ee0979\";s:26:\"background_overlay_color_b\";s:7:\"#ff6a00\";s:26:\"background_overlay_opacity\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.8000000000000000444089209850062616169452667236328125;}s:33:\"background_overlay_gradient_angle\";a:2:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:45;}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"6b390685\";s:8:\"settings\";a:9:{s:12:\"_column_size\";i:100;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:3:{i:0;a:6:{s:2:\"id\";s:8:\"33fa0662\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:5:{s:2:\"id\";s:8:\"2e5f44f4\";s:8:\"settings\";a:9:{s:9:\"structure\";s:2:\"20\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"7f55e2cb\";s:8:\"settings\";a:10:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:4:{i:0;a:6:{s:2:\"id\";s:8:\"5bd0c136\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:75;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:110;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}i:1;a:6:{s:2:\"id\";s:8:\"7b75d50a\";s:8:\"settings\";a:8:{s:5:\"title\";s:26:\"Lorem ipsum dolor sit amet\";s:11:\"header_size\";s:2:\"h4\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ffffff\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}i:2;a:6:{s:2:\"id\";s:8:\"5bef8e88\";s:8:\"settings\";a:12:{s:6:\"weight\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5;}s:5:\"color\";s:7:\"#ffffff\";s:5:\"width\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:5:\"align\";s:4:\"left\";s:3:\"gap\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:15:\"_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"divider\";s:6:\"elType\";s:6:\"widget\";}i:3;a:6:{s:2:\"id\";s:8:\"2e0a0e86\";s:8:\"settings\";a:10:{s:5:\"title\";s:34:\"Help put a smile on a child\'s face\";s:11:\"header_size\";s:2:\"h1\";s:5:\"align\";s:4:\"left\";s:11:\"title_color\";s:7:\"#ffffff\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Amatic SC\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:7:\"heading\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}i:1;a:5:{s:2:\"id\";s:8:\"46b9b20f\";s:8:\"settings\";a:14:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";N;s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#ffffff\";s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:6:{s:2:\"id\";s:8:\"405f6801\";s:8:\"settings\";a:5:{s:9:\"shortcode\";s:20:\"[give_form id=\"101\"]\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:9:\"shortcode\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:1;s:6:\"elType\";s:7:\"section\";}i:2;a:6:{s:2:\"id\";s:8:\"5dceca29\";s:8:\"settings\";a:7:{s:5:\"space\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;}s:12:\"space_tablet\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:90;}s:12:\"space_mobile\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:7:\"isInner\";b:0;s:10:\"widgetType\";s:6:\"spacer\";s:6:\"elType\";s:6:\"widget\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:6:\"column\";}}s:7:\"isInner\";b:0;s:6:\"elType\";s:7:\"section\";}}\";");
INSERT INTO `wp_postmeta` VALUES("17695", "15643", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17697", "15644", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17698", "15644", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17699", "15644", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lorem ipsum dolor sit amet\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help put a smile on a child\'s face\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17700", "15644", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17702", "170", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17703", "15645", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17704", "15645", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17705", "15645", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17706", "15645", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17707", "15646", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17708", "15646", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17709", "15646", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17710", "15646", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17711", "15647", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17712", "15647", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17713", "15647", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 1 (preferred)<\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 2<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 3<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<span style=\\\"color: #000000;\\\"><a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/span>\\u00a0to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17714", "15647", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17715", "15648", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17716", "15648", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17717", "170", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17718", "15648", "_elementor_data", "[{\"id\":\"42201ebd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5feea9d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57e57d7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 1 (preferred)<\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 2<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 3<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #000000;\\\">Click here<\\/span><\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<span style=\\\"color: #000000;\\\"><a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #000000;\\\">click here<\\/span><\\/a><\\/span>\\u00a0to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17719", "15648", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17720", "15649", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17721", "15649", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17722", "15649", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":53}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17723", "15649", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17724", "15650", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17725", "15650", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17726", "15650", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":53}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 1 (preferred)<\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 2<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 3<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<span style=\\\"color: #000000;\\\"><a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/span>\\u00a0to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17727", "15650", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17728", "15651", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17729", "15651", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17730", "15651", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":53}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 2 (preferred)<\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 2<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 3<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<span style=\\\"color: #000000;\\\"><a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/span>\\u00a0to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17731", "15651", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17733", "15652", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17734", "15652", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17735", "15652", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":53}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><p>\\u00a0 \\u00a0 \\u00a0<\\/p><ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px; text-decoration-line: underline;\\\"><span style=\\\"font-size: 15px; color: #000000;\\\"><span style=\\\"font-size: 15px; font-weight: bold;\\\">Option 1\\u00a0<\\/span><\\/span><\\/span>: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 2 <\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 3<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 4<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<span style=\\\"color: #000000;\\\"><a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/span>\\u00a0to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17736", "15652", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17738", "15653", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17739", "15653", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17740", "15653", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":53}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><p>\\u00a0<\\/p><ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px; text-decoration-line: underline;\\\"><span style=\\\"font-size: 15px; color: #000000;\\\"><span style=\\\"font-size: 15px; font-weight: bold;\\\">Option 1\\u00a0<\\/span><\\/span><\\/span>: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 2 <\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 3<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 4<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17741", "15653", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17743", "15654", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17744", "15654", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17745", "15654", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":53}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><p>\\u00a0<\\/p><ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px; text-decoration-line: underline;\\\"><span style=\\\"font-size: 15px; color: #000000;\\\"><span style=\\\"font-size: 15px; font-weight: bold;\\\">Option 1\\u00a0<\\/span><\\/span><\\/span>: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 2 <\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 3<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 4<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: transparent; color: #000000;\\\"><span style=\\\"font-size: 15px; color: #000000;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a>\\u00a0to\\u00a0<\\/span><\\/span><span style=\\\"background-color: transparent; font-size: 15px;\\\">email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/span><\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17746", "15654", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17755", "15657", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17756", "15657", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17757", "15657", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17758", "15657", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17759", "15657", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17762", "15658", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17763", "15658", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17764", "15658", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":53}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><p>\\u00a0<\\/p><ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px; text-decoration-line: underline;\\\"><span style=\\\"font-size: 15px; color: #000000;\\\"><span style=\\\"font-size: 15px; font-weight: bold;\\\">Option 1\\u00a0<\\/span><\\/span><\\/span>: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 2 <\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 3<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 4<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: transparent;\\\"><span style=\\\"color: #000000; font-size: 15px;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a>\\u00a0<\\/span><span style=\\\"font-size: 15px;\\\">to<\\/span><\\/span><span style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: transparent; color: #000000;\\\"><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/span><span style=\\\"font-size: 15px; background-color: transparent;\\\">email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/span><\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17765", "15658", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17769", "15660", "_wp_attached_file", "2018/05/cropped-MainLogo-sm.png");
INSERT INTO `wp_postmeta` VALUES("17770", "15660", "_wp_attachment_context", "custom-logo");
INSERT INTO `wp_postmeta` VALUES("17771", "15660", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:180;s:6:\"height\";i:89;s:4:\"file\";s:31:\"2018/05/cropped-MainLogo-sm.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-MainLogo-sm-150x89.png\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17779", "15494", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17781", "15663", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17782", "15663", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17783", "15663", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"38855686\",\"elType\":\"widget\",\"settings\":{\"title\":\"We facilitate safe learning spaces\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"38456aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf97098\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d41a23\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Mission\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b0d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"376f4d78\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e33b69e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Vision\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6562128\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c05eb4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df3135f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 Our Story\",\"header_size\":\"h4\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c369e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #7a7a7a;\\\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.<\\/span><\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17784", "15663", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17785", "15663", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17787", "15664", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17788", "15664", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17789", "15664", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d0e69a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17790", "15664", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17791", "15664", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17792", "15665", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17793", "15665", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17794", "15665", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d0e69a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17795", "15665", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17796", "15665", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17798", "15666", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17799", "15666", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17801", "24", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4196bf1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77684be\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4a00aad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17802", "15667", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17803", "15667", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17805", "15667", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[<span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>[\\/vc_column_text][\\/vc_column][\\/vc_row]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17806", "24", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17808", "15668", "_wp_attached_file", "2018/05/cropped-MainLogo-Lg.jpg");
INSERT INTO `wp_postmeta` VALUES("17809", "15668", "_wp_attachment_context", "custom-logo");
INSERT INTO `wp_postmeta` VALUES("17810", "15668", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:31:\"2018/05/cropped-MainLogo-Lg.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-MainLogo-Lg-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:\"cropped-MainLogo-Lg-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"ast-logo-size\";a:4:{s:4:\"file\";s:30:\"cropped-MainLogo-Lg-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17813", "15670", "_wp_attached_file", "2018/05/cropped-MainLogo-Lg-3.png");
INSERT INTO `wp_postmeta` VALUES("17814", "15670", "_wp_attachment_context", "custom-logo");
INSERT INTO `wp_postmeta` VALUES("17815", "15670", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:344;s:6:\"height\";i:149;s:4:\"file\";s:33:\"2018/05/cropped-MainLogo-Lg-3.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-MainLogo-Lg-3-150x149.png\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-MainLogo-Lg-3-300x130.png\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("17817", "15672", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17818", "15672", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17819", "15672", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c7f23d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d0e69a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17820", "15672", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17821", "15672", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17823", "15673", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17824", "15673", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17825", "15673", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c7f23d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d0e69a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17826", "15673", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17827", "15673", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17828", "15674", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17829", "15674", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17830", "15674", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c7f23d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d0e69a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17831", "15674", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17832", "15674", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17833", "15675", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17834", "15675", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17835", "15675", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c7f23d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d0e69a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17836", "15675", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17837", "15675", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("17839", "15676", "_wp_attached_file", "2018/05/IMG_3375.jpg");
INSERT INTO `wp_postmeta` VALUES("17840", "15677", "_wp_attached_file", "2018/05/IMG_3375-1.jpg");
INSERT INTO `wp_postmeta` VALUES("17841", "15678", "_wp_attached_file", "2018/05/IMG_3375-2.jpg");
INSERT INTO `wp_postmeta` VALUES("17842", "15679", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17843", "15679", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17844", "15679", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17845", "15679", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17847", "15680", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17848", "15680", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17849", "15680", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17850", "15680", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17852", "15681", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17853", "15681", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17854", "15681", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17855", "15681", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17857", "24", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("17858", "24", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("17859", "15682", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17860", "15682", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17861", "15682", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17862", "15682", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17864", "15683", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17865", "15683", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17866", "15683", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17867", "15683", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17875", "24", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("17876", "15685", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17877", "15685", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17878", "15685", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a00aad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17879", "15685", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17882", "15686", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17883", "15686", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17884", "15686", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a00aad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17885", "15686", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17887", "848", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17888", "15687", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17889", "15687", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17890", "848", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82},\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong><span style=\\\"font-size: 18px;\\\">\\u00a0(250) 472-2851<\\/span><\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\"><a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">:\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 2:00pm Monday, Tuesday &amp; Thursday<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 4:00pm W<\\/span>ednesday<span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0<\\/p><p>Counselling is by appointment only\\u00a0\\u00a0<br \\/><strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong><\\/p><p>Weekend and Evening Times may be available upon request<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/>3821A Cedar Hill Cross Road<br \\/>Victoria, BC V8P 2M6<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14eb896\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24c85e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f782833\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2e352ab\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-facebook-square\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a60ac8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Us On Facebook\",\"header_size\":\"h6\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1546b15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ca14d6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-twitter-square\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/South_Island_C\",\"is_external\":\"\",\"nofollow\":\"\"},\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10655be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us On Twitter\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5bd43c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"610af85\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"77624f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check Out Our Blog\",\"header_size\":\"h6\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17891", "15688", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17892", "15688", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17893", "15688", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1498-e1525817249956.jpg\",\"id\":15598}},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"[vc_row][vc_column][vc_column_text]<strong>Phone:<\\/strong>\\u00a0(250) 472-2851\\r\\n\\r\\n<strong>Email:<\\/strong>\\u00a0info@localhost\\r\\n\\r\\n<strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays\\r\\n\\r\\n<strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.\\r\\n\\r\\n<strong>Our Mailing Address:<\\/strong>\\r\\n3821A Cedar Hill Cross Road\\r\\nVictoria, BC V8P 2M6[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\\"1\\/1\\\"][\\/vc_column][\\/vc_row]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17894", "848", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17895", "15689", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17896", "15689", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17897", "15689", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"[vc_row][vc_column][vc_column_text]<strong>Phone:<\\/strong>\\u00a0(250) 472-2851\\r\\n\\r\\n<strong>Email:<\\/strong>\\u00a0info@localhost\\r\\n\\r\\n<strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays\\r\\n\\r\\n<strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.\\r\\n\\r\\n<strong>Our Mailing Address:<\\/strong>\\r\\n3821A Cedar Hill Cross Road\\r\\nVictoria, BC V8P 2M6[\\/vc_column_text][\\/vc_column][\\/vc_row][vc_row][vc_column width=\\\"1\\/1\\\"][\\/vc_column][\\/vc_row]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17898", "15689", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17899", "15690", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17900", "15690", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17901", "15690", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17902", "15690", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17903", "15691", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17904", "15691", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17905", "15691", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17906", "15691", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17907", "15692", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17908", "15692", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17909", "15692", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17910", "15692", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17911", "15693", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17912", "15693", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17913", "15693", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17914", "15693", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17915", "15694", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17916", "15694", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17917", "15694", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37f2235\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17918", "15694", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17919", "15695", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17920", "15695", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17921", "15695", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17922", "15695", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17924", "15696", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17925", "15696", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17926", "15696", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17927", "15696", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17929", "848", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("17930", "848", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("17931", "848", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("17932", "15697", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17933", "15697", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17934", "15697", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a00aad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17935", "15697", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17938", "15698", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17939", "15698", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17940", "15698", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77684be\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4a00aad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17941", "15698", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17944", "15699", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17945", "15699", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17946", "15699", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17947", "15699", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17949", "15700", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17950", "15700", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17951", "15700", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check Out Our Facebook\",\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17952", "15700", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17953", "15701", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17954", "15701", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17955", "15701", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check Out Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17956", "15701", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17957", "15702", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17958", "15702", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17959", "15702", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check Out Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17960", "15702", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17962", "15703", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17963", "15703", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17964", "15703", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check Out Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17965", "15703", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17967", "15704", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17968", "15704", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17969", "15704", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check Out Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook\",\"icon_indent\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17970", "15704", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17971", "15705", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17972", "15705", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17973", "15705", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Check Out Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17974", "15705", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17975", "15706", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17976", "15706", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17977", "15706", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17978", "15706", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17979", "15707", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17980", "15707", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17981", "15707", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17982", "15707", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17983", "15708", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17984", "15708", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17985", "15708", "_elementor_data", "[{\"id\":\"6b91dcf8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"594781\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4196bf1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"317b26d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Where We Are\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77684be\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4a00aad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4f147f34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">We are physically located at 3821A Cedar Hill Cross Road<\\/span>.<\\/p><p>Bus Routes<br \\/> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.<\\/p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.<\\/p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.<\\/p><p>Our offices are located in the house\\u00a0at the back of<strong>\\u00a0<\\/strong>the parking lot of St Luke\\u2019s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).\\u00a0Parking is free.<\\/p><p><iframe style=\\\"border: 0;\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\\\" width=\\\"600\\\" height=\\\"450\\\" frameborder=\\\"0\\\" allowfullscreen=\\\"allowfullscreen\\\"><\\/iframe><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17986", "15708", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17990", "13550", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17991", "13550", "_elementor_data", "[{\"id\":\"260f1a13\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"703f09af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"403c963\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c2fe37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Register for Training\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c889c7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ffe8251\",\"elType\":\"widget\",\"settings\":{\"editor\":\"[gravityform id=\\\"3\\\" name=\\\"Register for Training\\\"]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17992", "15709", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17993", "15709", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17994", "15709", "_elementor_data", "[{\"id\":\"260f1a13\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900}},\"elements\":[{\"id\":\"703f09af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ffe8251\",\"elType\":\"widget\",\"settings\":{\"editor\":\"[gravityform id=\\\"3\\\" name=\\\"Register for Training\\\"]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("17995", "13550", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("17997", "15710", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("17998", "15710", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("17999", "15710", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18000", "15710", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18002", "15711", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18003", "15711", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18004", "15711", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:<\\/strong>\\u00a0info@localhost<\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a8a7a36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18005", "15711", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18006", "15712", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18007", "15712", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18008", "15712", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0&lt;a\\u00a0href=\\\"mailto:info@localhost\\\"&gt;<\\/strong>info@localhost<strong>&lt;\\/a&gt;\\u00a0<\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a8a7a36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18009", "15712", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18011", "15713", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18012", "15713", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18013", "15713", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0<a href=\\\"mailto:webmaster@example.com\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a8a7a36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18014", "15713", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18024", "15715", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18025", "15715", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18026", "15715", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18027", "15715", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18028", "15715", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18029", "15716", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18030", "15716", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18031", "15716", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18032", "15716", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18033", "15716", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18035", "15494", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("18036", "15717", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18037", "15717", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18038", "15717", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c7f23d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d0e69a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18039", "15717", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18040", "15717", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18042", "15718", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18043", "15718", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18044", "15718", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c7f23d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d0e69a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/div><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18045", "15718", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18046", "15718", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18048", "15719", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18049", "15719", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18050", "15719", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"background-color: transparent; font-size: 15px;\\\">We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/span><\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18051", "15719", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18052", "15719", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18054", "60", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18055", "15495", "_edit_lock", "1526423024:10");
INSERT INTO `wp_postmeta` VALUES("18056", "15720", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("18057", "15720", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18058", "15721", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18059", "15721", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18060", "15720", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18061", "15720", "_elementor_data", "[{\"id\":\"644553e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"6793be23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64a76c49\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"439fd573\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33b59830\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2f33e1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"727b166f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6237695\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"684a6ee9\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0ec82\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c5dcc69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6111157f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54565539\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583f4b6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"340a0b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"226f6beb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6d13f122\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12a8dd33\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32f9254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a0e9be8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"7eb6279c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"155fee10\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"293c1480\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a3a0b66\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7bb01614\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32c21c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c94caea\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8471632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"690649ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"45fcccdb\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"187812dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74df3f0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33b37b40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18062", "15722", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18063", "15722", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18064", "15722", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18065", "15722", "_elementor_data", "[{\"id\":\"644553e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"6793be23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64a76c49\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"439fd573\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33b59830\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2f33e1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"727b166f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6237695\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"684a6ee9\",\"elType\":\"widget\",\"settings\":{\"title\":\"01.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0ec82\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Find & Fund\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c5dcc69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6111157f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54565539\",\"elType\":\"widget\",\"settings\":{\"title\":\"02.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"583f4b6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Build Networks\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"340a0b13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"226f6beb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6d13f122\",\"elType\":\"widget\",\"settings\":{\"title\":\"03.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12a8dd33\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Strengthen\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32f9254\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a0e9be8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"7eb6279c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"155fee10\",\"elType\":\"widget\",\"settings\":{\"title\":\"04.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"293c1480\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Educate\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a3a0b66\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7bb01614\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32c21c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"05.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c94caea\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Provide Care\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8471632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"690649ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"45fcccdb\",\"elType\":\"widget\",\"settings\":{\"title\":\"06.\",\"header_size\":\"h5\",\"align\":\"left\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"187812dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u2014 We Consult\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ee0979\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74df3f0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33b37b40\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18066", "15720", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18071", "60", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18074", "60", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(255,255,255,0.91)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"#54595f\"},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Moira Madamombe <br><br>MACP\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds a Masters in counselling psychology from Yorkville University. Moira is a multicultural counselor who works with adults, adolescents, and youth with various issues including anxiety, depression, addictions, chronic pain, grief, and loss.\\u00a0\\u00a0She applies various treatment models such as acceptance commitment therapy for chronic pain, cognitive behavioural therapy (CBT), dialectical behaviour therapy (DBT), family systems theory and multicultural counselling.\\u00a0\\u00a0She has co-facilitated an anxiety group for youth and a mindfulness-based anxiety group for adolescents. Moira is a member of the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18075", "15724", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18076", "15724", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18077", "15724", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18078", "15724", "_elementor_data", "[{\"id\":\"56085589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1090648\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cdccaa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Amber Eves MEd, RCC<\\/strong>, Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p><p><strong>Margaret Anderson CHPCA, BCHPCA,\\u00a0<\\/strong>specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p><p><strong>Barbara Baillie MAPPC, BCATR<\\/strong>, holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p><p><strong>Bill Cole MA, RCC<\\/strong>, works with individuals, couples, and families around a variety of issues. An experienced facilitator, he also teaches family systems theory, marriage preparation, pastoral counselling and pastoral care team training.<\\/p><p><strong>Jennifer Cole MA, CCC<\\/strong>,received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counseling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p><p><strong>Audrey Gibson BSc, OT, MDiv, SW<\\/strong>, holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p><p><strong>Joy Gillett\\u00a0MPH, RCC<\\/strong>, is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p><p><strong>Rosemary Merritt \\u00a0MEd, MPE, RCC<\\/strong>, focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p><p><strong>Peter Simmons BA, MDiv,<\\/strong> received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p><p><strong>Laurie Truant, MA, RCC<\\/strong>, specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psychoeducational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18079", "60", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18080", "15725", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18081", "15725", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18082", "15725", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18083", "15725", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18084", "15725", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18085", "15726", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18086", "15726", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18087", "15726", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18088", "15726", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18089", "15726", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18090", "60", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18091", "60", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18092", "60", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18093", "15727", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18094", "15727", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18095", "15727", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18096", "15727", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(255,255,255,0.91)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18097", "15727", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18099", "15728", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18100", "15728", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18101", "15728", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18102", "15728", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(255,255,255,0.91)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#54595f\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":85}},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18103", "15728", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18106", "74", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18107", "74", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18108", "74", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18109", "74", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18110", "74", "_elementor_data", "[{\"id\":\"7147a918\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"3bd5a046\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bca883d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"90214ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Board Of Directors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"958a6f2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"71b73d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u00a0<\\/strong><\\/p><p><strong>Jim Gibson (Chair)<\\/strong><\\/p><p><strong style=\\\"font-size: 15px;\\\">Barbara Underhill (Vice-Chair, Treasurer) <\\/strong><span style=\\\"font-size: 15px;\\\">Barbara has supported the centre since 2007 in a variety of roles. She has an\\u00a0MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.<\\/span><\\/p><p><strong>Sally Tuckey (Secretary) <\\/strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. \\u00a0Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.\\u00a0Her interests are many \\u2013 but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.<\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Sybil Bagshaw <\\/strong><span class=\\\"m_1365218334819752912s1\\\">Sybil\\u00a0worked as an RN until her\\u00a0retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \\\"Mother\'s of Preschoolers\\\" at St Pauls Anglican Church in Fort Garry. \\u00a0Sybil\\u00a0was one of the founding members the Fort Garry Family Life program and was their treasurer for several\\u00a0years.<span class=\\\"m_1365218334819752912Apple-converted-space\\\">\\u00a0<\\/span>\\u00a0She also\\u00a0 was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for the\\u00a0community club and\\u00a0for the Kidney and Cancer foundations both in Winnipeg\\u00a0and in Victoria.\\u00a0<\\/span><\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Greg Beattie <\\/strong><span style=\\\"color: #333333;\\\">Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nation\\u2019s mental health services. He has 20 years\\u2019 experience as a clinical supervisor, 15 years\\u2019 experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. \\u00a0<\\/span><span style=\\\"color: #333333;\\\">Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.<\\/span><\\/p><p><strong>Helen Morrison <\\/strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.<\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18111", "15729", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18112", "15729", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18113", "15729", "_elementor_data", "[{\"id\":\"7147a918\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592}},\"elements\":[{\"id\":\"3bd5a046\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"90214ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Board Of Directors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71b73d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u00a0<\\/strong><\\/p><p><strong>Jim Gibson (Chair)<\\/strong><\\/p><p><strong style=\\\"font-size: 15px;\\\">Barbara Underhill (Vice-Chair, Treasurer) <\\/strong><span style=\\\"font-size: 15px;\\\">Barbara has supported the centre since 2007 in a variety of roles. She has an\\u00a0MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.<\\/span><\\/p><p><strong>Sally Tuckey (Secretary) <\\/strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. \\u00a0Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.\\u00a0Her interests are many \\u2013 but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.<\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Sybil Bagshaw <\\/strong><span class=\\\"m_1365218334819752912s1\\\">Sybil\\u00a0worked as an RN until her\\u00a0retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \\\"Mother\'s of Preschoolers\\\" at St Pauls Anglican Church in Fort Garry. \\u00a0Sybil\\u00a0was one of the founding members the Fort Garry Family Life program and was their treasurer for several\\u00a0years.<span class=\\\"m_1365218334819752912Apple-converted-space\\\">\\u00a0<\\/span>\\u00a0She also\\u00a0 was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for the\\u00a0community club and\\u00a0for the Kidney and Cancer foundations both in Winnipeg\\u00a0and in Victoria.\\u00a0<\\/span><\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Greg Beattie <\\/strong><span style=\\\"color: #333333;\\\">Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nation\\u2019s mental health services. He has 20 years\\u2019 experience as a clinical supervisor, 15 years\\u2019 experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. \\u00a0<\\/span><span style=\\\"color: #333333;\\\">Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.<\\/span><\\/p><p><strong>Helen Morrison <\\/strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18114", "74", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18115", "15730", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18116", "15730", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18117", "15730", "_elementor_data", "[{\"id\":\"7147a918\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\"},\"elements\":[{\"id\":\"3bd5a046\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bca883d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"90214ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Board Of Directors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"958a6f2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"71b73d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u00a0<\\/strong><\\/p><p><strong>Jim Gibson (Chair)<\\/strong><\\/p><p><strong style=\\\"font-size: 15px;\\\">Barbara Underhill (Vice-Chair, Treasurer) <\\/strong><span style=\\\"font-size: 15px;\\\">Barbara has supported the centre since 2007 in a variety of roles. She has an\\u00a0MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.<\\/span><\\/p><p><strong>Sally Tuckey (Secretary) <\\/strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. \\u00a0Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.\\u00a0Her interests are many \\u2013 but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.<\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Sybil Bagshaw <\\/strong><span class=\\\"m_1365218334819752912s1\\\">Sybil\\u00a0worked as an RN until her\\u00a0retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \\\"Mother\'s of Preschoolers\\\" at St Pauls Anglican Church in Fort Garry. \\u00a0Sybil\\u00a0was one of the founding members the Fort Garry Family Life program and was their treasurer for several\\u00a0years.<span class=\\\"m_1365218334819752912Apple-converted-space\\\">\\u00a0<\\/span>\\u00a0She also\\u00a0 was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for the\\u00a0community club and\\u00a0for the Kidney and Cancer foundations both in Winnipeg\\u00a0and in Victoria.\\u00a0<\\/span><\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Greg Beattie <\\/strong><span style=\\\"color: #333333;\\\">Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nation\\u2019s mental health services. He has 20 years\\u2019 experience as a clinical supervisor, 15 years\\u2019 experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. \\u00a0<\\/span><span style=\\\"color: #333333;\\\">Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.<\\/span><\\/p><p><strong>Helen Morrison <\\/strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18118", "15730", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18119", "4", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("18120", "15731", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18121", "15731", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18122", "15731", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18123", "15731", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18124", "15731", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18126", "15732", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("18127", "15732", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18128", "15733", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18129", "15733", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18130", "15732", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18131", "15732", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0<a href=\\\"mailto:webmaster@example.com\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a8a7a36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18132", "15734", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18133", "15734", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18134", "15734", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18135", "15734", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0<a href=\\\"mailto:webmaster@example.com\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a8a7a36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18136", "15732", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18137", "15735", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18138", "15735", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18139", "15735", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0<a href=\\\"mailto:webmaster@example.com\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18140", "15735", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18141", "15735", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18144", "15736", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18145", "15736", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18146", "15736", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0<a href=\\\"mailto:webmaster@example.com\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18147", "15736", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18148", "15736", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18151", "15737", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18152", "15737", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18153", "15737", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0<a href=\\\"mailto:webmaster@example.com\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18154", "15737", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18155", "15737", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18157", "15738", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18158", "15738", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18159", "15738", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0<a href=\\\"mailto:webmaster@example.com\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18160", "15738", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18161", "15738", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18164", "35", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18165", "35", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18166", "35", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18167", "15740", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18168", "15740", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18169", "15740", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Phone:<\\/strong>\\u00a0(250) 472-2851\\n\\n<strong>Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong>\\n\\n<strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays\\n\\n<strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.\\n\\n<strong>Our Mailing Address:<\\/strong>\\n3821A Cedar Hill Cross Road\\nVictoria, BC V8P 2M6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18170", "15740", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18171", "15740", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18180", "15742", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18181", "15742", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18182", "15742", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong>Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays<\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18183", "15742", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18184", "15742", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18191", "103", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18192", "15744", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18193", "15744", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18194", "15744", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68000000000000004884981308350688777863979339599609375},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":77}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0<span style=\\\"color: #000000;\\\">Samaritan\'s Fund<\\/span><\\/strong><span style=\\\"color: #000000;\\\">.<\\/span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0<\\/span>(for example: one-time, monthly, quarterly, annual etc):<\\/p><p>\\u00a0<\\/p><ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px; text-decoration-line: underline;\\\"><span style=\\\"font-size: 15px; color: #000000;\\\"><span style=\\\"font-size: 15px; font-weight: bold;\\\">Option 1\\u00a0<\\/span><\\/span><\\/span>: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000;\\\"><strong>Option 2 <\\/strong><\\/span><\\/span>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong>Option 3<\\/strong><\\/span>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount<\\/span>\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #000000; text-decoration: underline;\\\">O<\\/span><span style=\\\"color: #000000; text-decoration: underline;\\\">ption 4<\\/span><\\/span><\\/span>:<\\/strong><span style=\\\"color: #000000;\\\">\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/span>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0<span style=\\\"text-decoration: underline;\\\">decreases the amount\\u00a0<\\/span>we actually receive.<\\/li><\\/ul><p><span style=\\\"color: #000000;\\\"><strong>Why monthly or quarterly giving?<\\/strong><\\/span><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>The Fine Print<\\/strong><\\/span><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><span style=\\\"color: #000000;\\\"><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/span><\\/p><p>You may help us with an\\u00a0<span style=\\\"color: #000000;\\\"><strong>in-kind donation<\\/strong><\\/span>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><span style=\\\"color: transparent; display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<span style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: transparent;\\\"><span style=\\\"color: #000000; font-size: 15px;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a>\\u00a0<\\/span><span style=\\\"font-size: 15px;\\\">to<\\/span><\\/span><span style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: transparent; color: #000000;\\\"><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/span><span style=\\\"font-size: 15px; background-color: transparent;\\\">email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/span><\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18195", "15744", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18196", "15744", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18198", "15745", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18199", "15745", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18200", "15745", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Phone:<\\/strong>\\u00a0(250) 472-2851\\n\\n<strong>Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong>\\n\\n<strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays\\n\\n<strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.\\n\\n<strong>Our Mailing Address:<\\/strong>\\n3821A Cedar Hill Cross Road\\nVictoria, BC V8P 2M6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18201", "15745", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18202", "15745", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18205", "15746", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18206", "15746", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18207", "15746", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18208", "15746", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18209", "15746", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18212", "15747", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18213", "15747", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18214", "15747", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Phone:<\\/strong>\\u00a0(250) 472-2851\\n\\n<strong>Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong>\\n\\n<strong>Reception Hours<\\/strong>: 9:00am - 2:00 pm Mondays through Thursdays\\n\\n<strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.\\n\\n<strong>Our Mailing Address:<\\/strong>\\n3821A Cedar Hill Cross Road\\nVictoria, BC V8P 2M6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a8a7a36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18215", "15747", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18217", "15748", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18218", "15748", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18219", "15748", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u00a0<\\/strong><\\/p><p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 15px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 15px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a8a7a36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18220", "15748", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18222", "15749", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18223", "15749", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18224", "15749", "_elementor_data", "[{\"id\":\"39acf36a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"323dcb5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e013bbe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1683502\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e52a7f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"923d2d3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72c5c31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 15px;\\\">Phone:<\\/strong><span style=\\\"font-size: 15px;\\\">\\u00a0(250) 472-2851<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 15px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"675c1c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39179c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"#http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8c68565\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a8a7a36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18225", "15749", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18228", "15750", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18229", "15750", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18230", "15750", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18231", "15750", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(255,255,255,0.91)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#54595f\"},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18232", "15750", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18235", "35", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18236", "35", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"231d27e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Our experienced counsellors\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d89831e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea03440\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<\\/b><\\/p><p>Talk to your counsellor about your payment plans and options.<\\/p><p>To\\u00a0Make\\u00a0an Appointment<\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a style=\\\"color: blue;\\\" title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here <\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e21a84\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18237", "15751", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18238", "15751", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18239", "15751", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #0000ff;\\\"><span style=\\\"color: #000000;\\\">Our experienced counsellors<\\/span><\\/span>\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/p><p><span style=\\\"color: #000000;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul><p>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<br \\/> Talk to your counsellor about your payment plans and options.<\\/p><p><span style=\\\"color: #000000;\\\">To\\u00a0Make\\u00a0an Appointment<\\/span><\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18240", "35", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18241", "15752", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18242", "15752", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18243", "15752", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #0000ff;\\\"><span style=\\\"color: #000000;\\\">Our experienced counsellors<\\/span><\\/span>\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/p><p><span style=\\\"color: #000000;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul><p>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<br \\/> Talk to your counsellor about your payment plans and options.<\\/p><p><span style=\\\"color: #000000;\\\">To\\u00a0Make\\u00a0an Appointment<\\/span><\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18244", "15752", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18246", "15753", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18247", "15753", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18248", "15753", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #0000ff;\\\"><span style=\\\"color: #000000;\\\">Our experienced counsellors<\\/span><\\/span>\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/p><p><span style=\\\"color: #000000;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul><p>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<br \\/> Talk to your counsellor about your payment plans and options.<\\/p><p><span style=\\\"color: #000000;\\\">To\\u00a0Make\\u00a0an Appointment<\\/span><\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18249", "15753", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18252", "326", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18253", "326", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18254", "326", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18255", "326", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18256", "326", "_elementor_data", "[{\"id\":\"721b6a8f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1498-e1525817249956.jpg\",\"id\":15598},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7c8dbbb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"91ba1dd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e1e9dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Intake Survey\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea46c66\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"525856d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-size: 8pt;\\\"><em>The information you provide\\u00a0on this form\\u00a0is collected and used under the authority of the\\u00a0<strong>Freedom of Information and Protection Privacy Act<\\/strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.\\u00a0We do\\u00a0<strong>not share, trade, rent, or sell<\\/strong>\\u00a0your email and personal contact information with any outside source.<\\/em><\\/span>\\r\\n\\r\\n[gravityform id=\\\"14\\\" title=\\\"true\\\" description=\\\"true\\\"]\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18257", "15755", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18258", "15755", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18259", "15755", "_elementor_data", "[{\"id\":\"721b6a8f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1004},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"7c8dbbb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"525856d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-size: 8pt;\\\"><em>The information you provide\\u00a0on this form\\u00a0is collected and used under the authority of the\\u00a0<strong>Freedom of Information and Protection Privacy Act<\\/strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.\\u00a0We do\\u00a0<strong>not share, trade, rent, or sell<\\/strong>\\u00a0your email and personal contact information with any outside source.<\\/em><\\/span>\\r\\n\\r\\n[gravityform id=\\\"14\\\" title=\\\"true\\\" description=\\\"true\\\"]\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18260", "326", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18261", "15756", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18262", "15756", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18263", "15756", "_elementor_data", "[{\"id\":\"721b6a8f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1004},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"7c8dbbb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"91ba1dd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e1e9dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Intake Survey\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea46c66\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"525856d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-size: 8pt;\\\"><em>The information you provide\\u00a0on this form\\u00a0is collected and used under the authority of the\\u00a0<strong>Freedom of Information and Protection Privacy Act<\\/strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.\\u00a0We do\\u00a0<strong>not share, trade, rent, or sell<\\/strong>\\u00a0your email and personal contact information with any outside source.<\\/em><\\/span>\\r\\n\\r\\n[gravityform id=\\\"14\\\" title=\\\"true\\\" description=\\\"true\\\"]\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18264", "15756", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18271", "35", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18272", "15758", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18273", "15758", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18274", "15758", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"color: #0000ff;\\\"><span style=\\\"color: #000000;\\\">Our experienced counsellors<\\/span><\\/span>\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\\n\\n<span style=\\\"color: #000000;\\\">We can help with:<\\/span>\\n<ul>\\n \\t<li>depression, stress and anxiety<\\/li>\\n \\t<li>grief, loss, and life-transitions<\\/li>\\n \\t<li>senior care issues<\\/li>\\n \\t<li>end-of-life care<\\/li>\\n \\t<li>support and education<\\/li>\\n \\t<li>trauma and distress<\\/li>\\n \\t<li>relationship conflicts<\\/li>\\n \\t<li>self-esteem issues<\\/li>\\n \\t<li>emotional, sexual, and physical abuse<\\/li>\\n \\t<li>issues related to faith and spirituality<\\/li>\\n \\t<li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li>\\n<\\/ul>\\nAt South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.\\nTalk to your counsellor about your payment plans and options.\\n\\n<span style=\\\"color: #000000;\\\">To\\u00a0Make\\u00a0an Appointment<\\/span>\\n<ol>\\n \\t<li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li>\\n \\t<li><a title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"color:blue\\\">Click here<\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li>\\n<\\/ol>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18275", "15758", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18276", "15758", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18278", "64", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18279", "64", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us via\\u00a0<a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/p><p><strong style=\\\"font-size: 18px;\\\">Call<\\/strong><span style=\\\"font-size: 18px;\\\">\\u00a0the Centre\\u00a0at \\u00a0<\\/span><i style=\\\"font-weight: inherit;\\\"><\\/i><span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><strong style=\\\"font-size: 18px;\\\">250-472-2851 and press 0 to leave a voicemail<\\/strong><span style=\\\"font-size: 18px;\\\">.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><\\/p><p><strong>Counselling hours<\\/strong>\\u00a0are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/p><p><strong>Reception hours<\\/strong>\\u00a0are Monday, Tuesday &amp; Thursday, 9:00am-2:00pm.\\u00a0 Wednesday, 9:00am-4:00pm<\\/p><p>\\u00a0<\\/p><h4>Current Clients:<\\/h4><p>Please contact your counsellor directly by calling \\u00a0<i><\\/i>\\u00a0<strong>250-472-2851<\\/strong>\\u00a0<strong>and press 4 for the staff directory.\\u00a0<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18280", "15759", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18281", "15759", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18282", "15759", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><p><span style=\\\"color: #000000;\\\">Contact us via <strong>email<\\/strong>,\\u00a0<strong><a style=\\\"color: #000000;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span><\\/p><h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4><p><span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18283", "64", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18284", "15760", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18285", "15760", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18286", "15760", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><p><span style=\\\"color: #000000;\\\">Contact us via <strong>email<\\/strong>,\\u00a0<strong><a style=\\\"color: #000000;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span><\\/p><h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4><p><span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18287", "15760", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18288", "64", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18289", "64", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18290", "64", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18292", "14245", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18293", "14245", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Counselling Inquiry Form<\\/a>.<\\/b><\\/p><p><b>\\u00a0<\\/b><\\/p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b><\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18294", "15761", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18295", "15761", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18296", "15761", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">South Island Centre offers professional counselling services to children and youth between the ages of 6-18.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Our counsellors are highly trained and experienced working with children and youth in addition to supporting parents and families. We provide professional support for a variety of issues affecting children and youth such as anxiety, depression, bullying, separation\\/divorce, grief and loss, self-esteem issues, academic pressures, etc.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: #000000;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a> form.<\\/span><\\/p><p>\\u00a0<\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a><\\/span><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18297", "14245", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18298", "15762", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18299", "15762", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18300", "15762", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"color: #000000;\\\">South Island Centre offers professional counselling services to children and youth between the ages of 6-18.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\">Our counsellors are highly trained and experienced working with children and youth in addition to supporting parents and families. We provide professional support for a variety of issues affecting children and youth such as anxiety, depression, bullying, separation\\/divorce, grief and loss, self-esteem issues, academic pressures, etc.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\">For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: #000000;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a> form.<\\/span>\\n\\n&nbsp;\\n\\n<span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span>\\n\\n<span style=\\\"font-size: 15px;\\\">Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a><\\/span>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18301", "15762", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18303", "15763", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18304", "15763", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18305", "15763", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p><section class=\\\"elementor-element elementor-element-aae4aa6 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section-content-middle elementor-section elementor-inner-section\\\" data-id=\\\"aae4aa6\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-no\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-f1004f5 elementor-column elementor-col-100 elementor-inner-column\\\" data-id=\\\"f1004f5\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-19e914b elementor-widget elementor-widget-spacer\\\" data-id=\\\"19e914b\\\" data-element_type=\\\"spacer.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-spacer\\\"><div class=\\\"elementor-spacer-inner\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><div class=\\\"elementor-element elementor-element-cbdc6b3 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"cbdc6b3\\\" data-element_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><div>\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div><\\/div><\\/div><\\/div><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: #000000;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a> form.<\\/span><\\/p><p>\\u00a0<\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a><\\/span><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18306", "15763", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18308", "15764", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18309", "15764", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18310", "15764", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p><section class=\\\"elementor-element elementor-element-aae4aa6 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section-content-middle elementor-section elementor-inner-section\\\" data-id=\\\"aae4aa6\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-no\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-f1004f5 elementor-column elementor-col-100 elementor-inner-column\\\" data-id=\\\"f1004f5\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-19e914b elementor-widget elementor-widget-spacer\\\" data-id=\\\"19e914b\\\" data-element_type=\\\"spacer.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-spacer\\\"><div class=\\\"elementor-spacer-inner\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><div class=\\\"elementor-element elementor-element-cbdc6b3 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"cbdc6b3\\\" data-element_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><div>\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div><\\/div><\\/div><\\/div><p><span style=\\\"color: #000000;\\\">For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: #000000;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a> form.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.\\u00a0<\\/span><a style=\\\"font-size: 15px; background-color: #ffffff; color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18311", "15764", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18313", "15765", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18314", "15765", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18315", "15765", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span>\\n\\n<section class=\\\"elementor-element elementor-element-aae4aa6 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section-content-middle elementor-section elementor-inner-section\\\" data-id=\\\"aae4aa6\\\" data-element_type=\\\"section\\\">\\n<div class=\\\"elementor-container elementor-column-gap-no\\\">\\n<div class=\\\"elementor-row\\\">\\n<div class=\\\"elementor-element elementor-element-f1004f5 elementor-column elementor-col-100 elementor-inner-column\\\" data-id=\\\"f1004f5\\\" data-element_type=\\\"column\\\">\\n<div class=\\\"elementor-column-wrap elementor-element-populated\\\">\\n<div class=\\\"elementor-widget-wrap\\\">\\n<div class=\\\"elementor-element elementor-element-19e914b elementor-widget elementor-widget-spacer\\\" data-id=\\\"19e914b\\\" data-element_type=\\\"spacer.default\\\">\\n<div class=\\\"elementor-widget-container\\\">\\n<div class=\\\"elementor-spacer\\\">\\n<div class=\\\"elementor-spacer-inner\\\"><\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/section>\\n<div class=\\\"elementor-element elementor-element-cbdc6b3 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"cbdc6b3\\\" data-element_type=\\\"text-editor.default\\\">\\n<div class=\\\"elementor-widget-container\\\">\\n<div class=\\\"elementor-text-editor elementor-clearfix\\\">\\n<div>\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div>\\n<div><\\/div>\\n<div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<span style=\\\"color: #000000;\\\">For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: #000000;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a> form.<\\/span>\\n\\n<span style=\\\"font-size: 15px;\\\">Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.\\u00a0 \\u00a0<\\/span>\\n\\n<a style=\\\"font-size: 15px; color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18316", "15765", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18324", "14245", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18325", "15767", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18326", "15767", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18327", "15767", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p><section class=\\\"elementor-element elementor-element-aae4aa6 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section-content-middle elementor-section elementor-inner-section\\\" data-id=\\\"aae4aa6\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-no\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-f1004f5 elementor-column elementor-col-100 elementor-inner-column\\\" data-id=\\\"f1004f5\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-19e914b elementor-widget elementor-widget-spacer\\\" data-id=\\\"19e914b\\\" data-element_type=\\\"spacer.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-spacer\\\"><div class=\\\"elementor-spacer-inner\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><div class=\\\"elementor-element elementor-element-cbdc6b3 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"cbdc6b3\\\" data-element_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><div>\\u00a0<\\/div><\\/div><\\/div><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color:blue\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a>\\u00a0form.\\n\\nDo note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.\\n\\n<a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18328", "15767", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18329", "15767", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18330", "15768", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18331", "15768", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18332", "15768", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p><section class=\\\"elementor-element elementor-element-aae4aa6 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section-content-middle elementor-section elementor-inner-section\\\" data-id=\\\"aae4aa6\\\" data-element_type=\\\"section\\\"><div class=\\\"elementor-container elementor-column-gap-no\\\"><div class=\\\"elementor-row\\\"><div class=\\\"elementor-element elementor-element-f1004f5 elementor-column elementor-col-100 elementor-inner-column\\\" data-id=\\\"f1004f5\\\" data-element_type=\\\"column\\\"><div class=\\\"elementor-column-wrap elementor-element-populated\\\"><div class=\\\"elementor-widget-wrap\\\"><div class=\\\"elementor-element elementor-element-19e914b elementor-widget elementor-widget-spacer\\\" data-id=\\\"19e914b\\\" data-element_type=\\\"spacer.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-spacer\\\"><div class=\\\"elementor-spacer-inner\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><div class=\\\"elementor-element elementor-element-cbdc6b3 elementor-widget elementor-widget-text-editor\\\" data-id=\\\"cbdc6b3\\\" data-element_type=\\\"text-editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\"><div>\\u00a0<\\/div><\\/div><\\/div><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a>\\u00a0form.<\\/p><p>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/p><p><a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18333", "15768", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18334", "15768", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18335", "15769", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18336", "15769", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18337", "15769", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a>\\u00a0form.<\\/b><\\/p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b><\\/p><p><a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18338", "15769", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18339", "15769", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18341", "15770", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18342", "15770", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18343", "15770", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a>\\u00a0form.<\\/b><\\/p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child\\/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b><\\/p><p><a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18344", "15770", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18345", "15770", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18347", "14245", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18348", "14245", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18349", "14245", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18350", "15772", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18351", "15772", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18352", "15772", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><\\/h4>\\n<span style=\\\"color: #000000;\\\">Contact us via <strong>email<\\/strong>,\\u00a0<strong><a style=\\\"color: blue;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span>\\n\\n<strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span>\\n\\n<strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span>\\n<h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4>\\n<span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18353", "15772", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18356", "15773", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18357", "15773", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18358", "15773", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">counselling inquiry<\\/a>\\u00a0form.<\\/b>\\n\\n<b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a C<a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b>\\n\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18359", "15773", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18360", "15773", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18362", "15774", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18363", "15774", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18364", "15774", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_attachment\":\"scroll\"},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Counselling Inquiry Form<\\/a>.<\\/b>\\n\\n<b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b>\\n\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18365", "15774", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18366", "15774", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18368", "15775", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18369", "15775", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18370", "15775", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><p><span style=\\\"color: #000000;\\\">Contact us via <strong>email<\\/strong>,\\u00a0<strong><a style=\\\"color: blue;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4><p><span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18371", "15775", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18374", "54", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18375", "15776", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18376", "15776", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18377", "54", "_elementor_data", "[{\"id\":\"2b472f1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"1d0dab80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"860eee7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a6a0cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Income-Based Counselling Services\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d756323\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3d382ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>At South Island Centre we know how\\u00a0important it is for\\u00a0everyone\\u00a0to have access to professional, affordable mental health counselling services when needed.\\u00a0 As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.<\\/h5>\",\"typography_typography\":\"custom\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"759d2366\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>Costs of Counselling<\\/strong><\\/p><p>Counselling services at South Island Centre are calculated on an income-based fee of\\u00a00.1% of your gross income up to a maximum of $120.00 per session. Our\\u00a0minimum fee is $10.00 per session.<strong>\\u00a0<\\/strong>Talk to your counsellor about\\u00a0your payment options and fees.<\\/p><p>Please note cancellation fees\\u00a0are charged for missed appointments when less than 24 hours notice is given.<\\/p><p>Payment can be made with cash, debit or credit card.<\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28766ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2da0c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Insurance Coverage<\\/strong><\\/p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br \\/>It is your responsibility to submit receipts to your provider for reimbursement.<br \\/>If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br \\/>We not bill external parties for services rendered.<\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f3f0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18378", "15777", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18379", "15777", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18380", "15777", "_elementor_data", "[{\"id\":\"2b472f1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592}},\"elements\":[{\"id\":\"1d0dab80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"759d2366\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At South Island Centre we know how\\u00a0important it is for\\u00a0everyone\\u00a0to have access to professional, affordable mental health counselling services when needed.\\u00a0 As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.\\r\\n\\r\\n&nbsp;\\r\\n\\r\\n<strong>Costs of Counselling<\\/strong>\\r\\n\\r\\nCounselling services at South Island Centre are calculated on an income-based fee of\\u00a00.1% of your gross income up to a maximum of $120.00 per session. Our\\u00a0minimum fee is $10.00 per session.<strong>\\u00a0<\\/strong>Talk to your counsellor about\\u00a0your payment options and fees.\\r\\n\\r\\nPlease note cancellation fees\\u00a0are charged for missed appointments when less than 24 hours notice is given.\\r\\n\\r\\nPayment can be made with cash, debit or credit card.\\r\\n\\r\\n<strong>Insurance Coverage<\\/strong>\\r\\n\\r\\nIf you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.\\r\\nIt is your responsibility to submit receipts to your provider for reimbursement.\\r\\nIf you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.\\r\\nWe not bill external parties for services rendered.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18381", "54", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18382", "15778", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18383", "15778", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18384", "15778", "_elementor_data", "[{\"id\":\"2b472f1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592}},\"elements\":[{\"id\":\"1d0dab80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"860eee7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a6a0cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Income-Based Counselling Services\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d756323\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3d382ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>At South Island Centre we know how\\u00a0important it is for\\u00a0everyone\\u00a0to have access to professional, affordable mental health counselling services when needed.\\u00a0 As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.<\\/h5>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"759d2366\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>Costs of Counselling<\\/strong><\\/p><p>Counselling services at South Island Centre are calculated on an income-based fee of\\u00a00.1% of your gross income up to a maximum of $120.00 per session. Our\\u00a0minimum fee is $10.00 per session.<strong>\\u00a0<\\/strong>Talk to your counsellor about\\u00a0your payment options and fees.<\\/p><p>Please note cancellation fees\\u00a0are charged for missed appointments when less than 24 hours notice is given.<\\/p><p>Payment can be made with cash, debit or credit card.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28766ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2da0c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Insurance Coverage<\\/strong><\\/p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br \\/>It is your responsibility to submit receipts to your provider for reimbursement.<br \\/>If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br \\/>We not bill external parties for services rendered.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f3f0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18385", "15778", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18386", "15779", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18387", "15779", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18388", "15779", "_elementor_data", "[{\"id\":\"2b472f1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592}},\"elements\":[{\"id\":\"1d0dab80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"860eee7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a6a0cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Income-Based Counselling Services\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d756323\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3d382ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>At South Island Centre we know how\\u00a0important it is for\\u00a0everyone\\u00a0to have access to professional, affordable mental health counselling services when needed.\\u00a0 As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.<\\/h5>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"759d2366\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>Costs of Counselling<\\/strong><\\/p><p>Counselling services at South Island Centre are calculated on an income-based fee of\\u00a00.1% of your gross income up to a maximum of $120.00 per session. Our\\u00a0minimum fee is $10.00 per session.<strong>\\u00a0<\\/strong>Talk to your counsellor about\\u00a0your payment options and fees.<\\/p><p>Please note cancellation fees\\u00a0are charged for missed appointments when less than 24 hours notice is given.<\\/p><p>Payment can be made with cash, debit or credit card.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28766ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2da0c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Insurance Coverage<\\/strong><\\/p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br \\/>It is your responsibility to submit receipts to your provider for reimbursement.<br \\/>If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br \\/>We not bill external parties for services rendered.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f3f0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18389", "15779", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18390", "54", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18391", "54", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18392", "54", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18394", "15780", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18395", "15780", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18396", "15780", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18397", "15780", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(255,255,255,0.91)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9699999999999999733546474089962430298328399658203125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"#54595f\"},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18398", "15780", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18400", "15781", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18401", "15781", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18402", "15781", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18403", "15781", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(255,255,255,0.91)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"#54595f\"},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18404", "15781", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18411", "54", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18413", "15783", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18414", "15783", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18415", "15783", "_elementor_data", "[{\"id\":\"2b472f1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\"},\"elements\":[{\"id\":\"1d0dab80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"860eee7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a6a0cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Income-Based Counselling Services\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d756323\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3d382ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>At South Island Centre we know how\\u00a0important it is for\\u00a0everyone\\u00a0to have access to professional, affordable mental health counselling services when needed.\\u00a0 As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.<\\/h5>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"759d2366\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>Costs of Counselling<\\/strong><\\/p><p>Counselling services at South Island Centre are calculated on an income-based fee of\\u00a00.1% of your gross income up to a maximum of $120.00 per session. Our\\u00a0minimum fee is $10.00 per session.<strong>\\u00a0<\\/strong>Talk to your counsellor about\\u00a0your payment options and fees.<\\/p><p>Please note cancellation fees\\u00a0are charged for missed appointments when less than 24 hours notice is given.<\\/p><p>Payment can be made with cash, debit or credit card.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28766ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2da0c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Insurance Coverage<\\/strong><\\/p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br \\/>It is your responsibility to submit receipts to your provider for reimbursement.<br \\/>If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br \\/>We not bill external parties for services rendered.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f3f0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18416", "15783", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18417", "15783", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18420", "15784", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18421", "15784", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18422", "15784", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"color: #0000ff;\\\"><span style=\\\"color: #000000;\\\">Our experienced counsellors<\\/span><\\/span>\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\\n\\n<span style=\\\"color: #000000;\\\">We can help with:<\\/span>\\n<ul>\\n \\t<li>depression, stress and anxiety<\\/li>\\n \\t<li>grief, loss, and life-transitions<\\/li>\\n \\t<li>senior care issues<\\/li>\\n \\t<li>end-of-life care<\\/li>\\n \\t<li>support and education<\\/li>\\n \\t<li>trauma and distress<\\/li>\\n \\t<li>relationship conflicts<\\/li>\\n \\t<li>self-esteem issues<\\/li>\\n \\t<li>emotional, sexual, and physical abuse<\\/li>\\n \\t<li>issues related to faith and spirituality<\\/li>\\n \\t<li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li>\\n<\\/ul>\\nAt South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.\\nTalk to your counsellor about your payment plans and options.\\n\\n<span style=\\\"color: #000000;\\\">To\\u00a0Make\\u00a0an Appointment<\\/span>\\n<ol>\\n \\t<li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li>\\n \\t<li><a title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"color:blue\\\">Click here<\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li>\\n<\\/ol>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18423", "15784", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18424", "15784", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18427", "15785", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18428", "15785", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18429", "15785", "_elementor_data", "[{\"id\":\"2b472f1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"1d0dab80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"860eee7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a6a0cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Income-Based Counselling Services\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d756323\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3d382ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>At South Island Centre we know how\\u00a0important it is for\\u00a0everyone\\u00a0to have access to professional, affordable mental health counselling services when needed.\\u00a0 As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.<\\/h5>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"759d2366\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>Costs of Counselling<\\/strong><\\/p><p>Counselling services at South Island Centre are calculated on an income-based fee of\\u00a00.1% of your gross income up to a maximum of $120.00 per session. Our\\u00a0minimum fee is $10.00 per session.<strong>\\u00a0<\\/strong>Talk to your counsellor about\\u00a0your payment options and fees.<\\/p><p>Please note cancellation fees\\u00a0are charged for missed appointments when less than 24 hours notice is given.<\\/p><p>Payment can be made with cash, debit or credit card.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28766ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2da0c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Insurance Coverage<\\/strong><\\/p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br \\/>It is your responsibility to submit receipts to your provider for reimbursement.<br \\/>If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br \\/>We not bill external parties for services rendered.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f3f0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18430", "15785", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18431", "15785", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18434", "15786", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18435", "15786", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18436", "15786", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Counselling Inquiry Form<\\/a>.<\\/b>\\n\\n<b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b>\\n\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18437", "15786", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18438", "15786", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18441", "15787", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18442", "15787", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18443", "15787", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><p><span style=\\\"color: #000000;\\\">Contact us via <strong>email<\\/strong>,\\u00a0<strong><a style=\\\"color: blue;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4><p><span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18444", "15787", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18446", "15788", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18447", "15788", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18448", "15788", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><p><span style=\\\"color: #000000;\\\">Contact us via <strong>email<\\/strong>,\\u00a0<strong><a style=\\\"color: blue;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4><p><span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18449", "15788", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18451", "15789", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18452", "15789", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18453", "15789", "_elementor_data", "[{\"id\":\"721b6a8f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1004},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"7c8dbbb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"91ba1dd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e1e9dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Intake Survey\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea46c66\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"525856d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-size: 8pt;\\\"><em>The information you provide\\u00a0on this form\\u00a0is collected and used under the authority of the\\u00a0<strong>Freedom of Information and Protection Privacy Act<\\/strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.\\u00a0We do\\u00a0<strong>not share, trade, rent, or sell<\\/strong>\\u00a0your email and personal contact information with any outside source.<\\/em><\\/span>\\r\\n\\r\\n[gravityform id=\\\"14\\\" title=\\\"true\\\" description=\\\"true\\\"]\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18454", "15789", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18462", "15791", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18463", "15791", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18464", "15791", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"231d27e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Our experienced counsellors\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/h5>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea03440\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<\\/b><\\/p><p>Talk to your counsellor about your payment plans and options.<\\/p><p>To\\u00a0Make\\u00a0an Appointment<\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a style=\\\"color: blue;\\\" title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here <\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18465", "15791", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18466", "15791", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18468", "15792", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18469", "15792", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18470", "15792", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"231d27e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Our experienced counsellors\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/h5>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d89831e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea03440\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<\\/b><\\/p><p>Talk to your counsellor about your payment plans and options.<\\/p><p>To\\u00a0Make\\u00a0an Appointment<\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a style=\\\"color: blue;\\\" title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here <\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e21a84\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18471", "15792", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18472", "15792", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18474", "15793", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18475", "15793", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18476", "15793", "_elementor_data", "[{\"id\":\"7147a918\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"3bd5a046\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bca883d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"90214ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Board Of Directors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"958a6f2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"71b73d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u00a0<\\/strong><\\/p><p><strong>Jim Gibson (Chair)<\\/strong><\\/p><p><strong style=\\\"font-size: 15px;\\\">Barbara Underhill (Vice-Chair, Treasurer) <\\/strong><span style=\\\"font-size: 15px;\\\">Barbara has supported the centre since 2007 in a variety of roles. She has an\\u00a0MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.<\\/span><\\/p><p><strong>Sally Tuckey (Secretary) <\\/strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. \\u00a0Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.\\u00a0Her interests are many \\u2013 but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.<\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Sybil Bagshaw <\\/strong><span class=\\\"m_1365218334819752912s1\\\">Sybil\\u00a0worked as an RN until her\\u00a0retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \\\"Mother\'s of Preschoolers\\\" at St Pauls Anglican Church in Fort Garry. \\u00a0Sybil\\u00a0was one of the founding members the Fort Garry Family Life program and was their treasurer for several\\u00a0years.<span class=\\\"m_1365218334819752912Apple-converted-space\\\">\\u00a0<\\/span>\\u00a0She also\\u00a0 was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for the\\u00a0community club and\\u00a0for the Kidney and Cancer foundations both in Winnipeg\\u00a0and in Victoria.\\u00a0<\\/span><\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Greg Beattie <\\/strong><span style=\\\"color: #333333;\\\">Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nation\\u2019s mental health services. He has 20 years\\u2019 experience as a clinical supervisor, 15 years\\u2019 experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. \\u00a0<\\/span><span style=\\\"color: #333333;\\\">Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.<\\/span><\\/p><p><strong>Helen Morrison <\\/strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18477", "15793", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18482", "15794", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18483", "15794", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18484", "15794", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#6ec1e4\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#23a455\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18485", "15794", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18486", "15794", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18488", "15795", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18489", "15795", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18490", "15795", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":90},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":110},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18491", "15795", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18492", "15795", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18493", "15796", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18494", "15796", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18495", "15796", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18496", "15796", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18497", "15796", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18504", "15797", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18505", "15797", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18506", "15797", "_elementor_data", "[{\"id\":\"721b6a8f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1498-e1525817249956.jpg\",\"id\":15598},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7c8dbbb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"91ba1dd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7e1e9dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Intake Survey\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea46c66\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"525856d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-size: 8pt;\\\"><em>The information you provide\\u00a0on this form\\u00a0is collected and used under the authority of the\\u00a0<strong>Freedom of Information and Protection Privacy Act<\\/strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.\\u00a0We do\\u00a0<strong>not share, trade, rent, or sell<\\/strong>\\u00a0your email and personal contact information with any outside source.<\\/em><\\/span>\\r\\n\\r\\n[gravityform id=\\\"14\\\" title=\\\"true\\\" description=\\\"true\\\"]\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18507", "15797", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18509", "15798", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("18510", "15798", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18511", "15799", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18512", "15799", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18513", "15798", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18514", "15798", "_elementor_data", "[{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18515", "15800", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18516", "15800", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18517", "15800", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18518", "15800", "_elementor_data", "[{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18519", "15798", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18520", "15801", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("18521", "15801", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18522", "15802", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18523", "15802", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18524", "15801", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18525", "15801", "_elementor_data", "[{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18526", "15803", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18527", "15803", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18528", "15803", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18529", "15803", "_elementor_data", "[{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18530", "15801", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18531", "15804", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("18532", "15804", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18533", "15805", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18534", "15805", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18535", "15804", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18536", "15804", "_elementor_data", "[{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18537", "15806", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18538", "15806", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18539", "15806", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18540", "15806", "_elementor_data", "[{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18541", "15804", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18542", "15807", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("18543", "15807", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18544", "15808", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18545", "15808", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18546", "15807", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18547", "15807", "_elementor_data", "[{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18548", "15809", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18549", "15809", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18550", "15809", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18551", "15809", "_elementor_data", "[{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18552", "15807", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18553", "15810", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18554", "15810", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18555", "15810", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"682b4e7c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"59892083\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1e8b18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f9f140d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f6e8f3b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"69cbd489\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19b5a93b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4921c981\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"39cace8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62c969d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"557f6f93\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18556", "15810", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18557", "15810", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18561", "15811", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18562", "15811", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18563", "15811", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e8b8b94\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6d4d7580\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18564", "15811", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18566", "15812", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18567", "15812", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18568", "15812", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Because only together we can\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18569", "15812", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18570", "15812", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18573", "15813", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18574", "15813", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18575", "15813", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0bdf123\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18576", "15813", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18577", "15813", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18583", "15815", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18584", "15815", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18585", "15815", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Counselling Inquiry Form<\\/a>.<\\/b><\\/p><p><b>\\u00a0<\\/b><\\/p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18586", "15815", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18587", "15815", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18595", "64", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18597", "15817", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18598", "15817", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18599", "15817", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><p><span style=\\\"color: #000000;\\\">Contact us via <strong>email<\\/strong>\\u00a0or\\u00a0<strong><a style=\\\"color: blue;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4><p><span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18600", "15817", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18601", "15817", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18605", "11", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18606", "11", "_elementor_data", "[{\"id\":\"596c75c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"7e0606e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dd33487\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training And Upcoming Events\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fade79\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\",\"color_link\":\"#4054b2\",\"color_link_hover\":\"#6ec1e4\",\"structure\":\"20\"},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u>Positive Psychology Group<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\"><u>Young Adults Support group for Anxiety<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><u><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/u><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\"><u>Making It Work for Teens!<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"><u> Living with Loss Part 1, an Introduction to Grief and Loss <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"8ad28c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"463ce70\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0692912\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ai1ec_agenda_widget\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18607", "15818", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18608", "15818", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18609", "15818", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Positive Psychology Group<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\">Young Adults Support group for Anxiety<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\">Making It Work for Teens!<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"> Living with Loss Part 1, an Introduction to Grief and Loss <\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register<\\/strong>: <a style=\\\"color: #000000;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>. Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.[\\/vc_column_text][\\/vc_column][\\/vc_row]<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18610", "11", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18611", "15819", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18612", "15819", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18613", "15819", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5>\\n<span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Positive Psychology Group<\\/a><\\/strong><\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\">Young Adults Support group for Anxiety<\\/a><\\/strong><\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/strong><\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\">Making It Work for Teens!<\\/a><\\/strong><\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"> Living with Loss Part 1, an Introduction to Grief and Loss <\\/a><\\/strong><\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/a><\\/strong><\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\\nYour Personality Preference <\\/a><\\/strong><\\/span>\\n\\n<span style=\\\"color: #000000;\\\">For more information on <strong>how to register<\\/strong>: <a style=\\\"color: blue\\n;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>. Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18614", "15819", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18615", "15820", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18616", "15820", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18617", "15820", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Positive Psychology Group<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\">Young Adults Support group for Anxiety<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\">Making It Work for Teens!<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"> Living with Loss Part 1, an Introduction to Grief and Loss <\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register<\\/strong>: <a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>. Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18618", "15820", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18620", "303", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18622", "15821", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18623", "15821", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18624", "15821", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Positive Psychology Group<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\">Young Adults Support group for Anxiety<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\">Making It Work for Teens!<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"> Living with Loss Part 1, an Introduction to Grief and Loss <\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/a><\\/strong><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register<\\/strong>: <a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>. Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18625", "15821", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18627", "11", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18628", "11", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18629", "11", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18631", "14462", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18632", "14462", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"14bfe31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6e3fc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"08951c0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"structure\":\"20\",\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"61153b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"243e316\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3a95a1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"863d778\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"b0e8622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"02a64dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfd4e11\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0119e67\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a><\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18633", "15822", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18634", "15822", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18635", "15822", "_elementor_data", "[{\"id\":\"7dc26683\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"6cbb9b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"466acdc9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><span style=\\\"color: #000000;\\\">Addictions<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http:\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Anxiety<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https:\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a> (Children and Youth)<\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Depression<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Divorce and Separation<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/span>\\r\\n\\r\\n&nbsp;\\r\\n<h4><span style=\\\"color: #000000;\\\">Eating Disorders<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\'s Hospital Eating Disorders<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Senior Support<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\'s Advocate BC<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Grief and Loss<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Marriage and Family<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Parenting<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Abuse and Trauma<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\'s Trauma Centre<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Spiritual Guidance<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\">Suicide Prevention<\\/span><\\/h4>\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a><\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a><\\/span>\\r\\n\\r\\n&nbsp;\\r\\n<h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4>\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18636", "14462", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18638", "15823", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18639", "15823", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18640", "15823", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Addictions<\\/h4><p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p><h4>Anxiety<\\/h4><p><a title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<a title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)\\u00a0<a title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p><h4>Depression<\\/h4><p><a title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a>\\u00a0<a title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a>\\u00a0<a title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18641", "15823", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18643", "15824", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18644", "15824", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18645", "15824", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Addictions<\\/h4><p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p><h4>Anxiety<\\/h4><p><a title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<a title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p>\\u00a0<a title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p><h4>Depression<\\/h4><p><a title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p>\\u00a0<a title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a>\\u00a0<a title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18646", "15824", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18647", "15825", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18648", "15825", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18649", "15825", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375},\"structure\":\"20\"},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety\",\"tab_content\":\"I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"258347e\"}],\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Addictions<\\/h4><p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p><h4>Anxiety<\\/h4><p><a title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<a title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p>\\u00a0<a title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p><h4>Depression<\\/h4><p><a title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p>\\u00a0<a title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a>\\u00a0<a title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"21cb170\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7803d5a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety\",\"tab_content\":\"I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"258347e\"}]},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"eb75302\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Addictions<\\/h4><p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p><h4>Anxiety<\\/h4><p><a title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<a title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p>\\u00a0<a title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p><h4>Depression<\\/h4><p><a title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p>\\u00a0<a title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a>\\u00a0<a title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18650", "15825", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18651", "15826", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18652", "15826", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18653", "15826", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":1},\"space_between\":{\"unit\":\"px\",\"size\":50},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><h4>Depression<\\/h4><p><a title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p>\\u00a0<a title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18654", "15826", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18655", "15827", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18656", "15827", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18657", "15827", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":1},\"space_between\":{\"unit\":\"px\",\"size\":50},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><h4>\\u00a0<\\/h4><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18658", "15827", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18659", "15828", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18660", "15828", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18661", "15828", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"Toggle Content\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"Toggle Content\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"Toggle Content\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"819f088\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"ee34110\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":1},\"space_between\":{\"unit\":\"px\",\"size\":50},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><h4>\\u00a0<\\/h4><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18662", "15828", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18663", "15829", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18664", "15829", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18665", "15829", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"Toggle Content\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"Toggle Content\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"Toggle Content\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"Toggle Content\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"Toggle Content\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"Toggle Content\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"Toggle Content\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":1},\"space_between\":{\"unit\":\"px\",\"size\":50},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><h4>\\u00a0<\\/h4><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18666", "15829", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18667", "15830", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18668", "15830", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18669", "15830", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"Toggle Content\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"Toggle Content\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"Toggle Content\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"Toggle Content\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"Toggle Content\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"Toggle Content\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"Toggle Content\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"Toggle Content\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Toggle Title\",\"tab_content\":\"Toggle Content\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":1},\"space_between\":{\"unit\":\"px\",\"size\":50},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><h4>\\u00a0<\\/h4><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18670", "15830", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18671", "15831", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18672", "15831", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18673", "15831", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"Toggle Content\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"Toggle Content\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"Toggle Content\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"Toggle Content\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"Toggle Content\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"Toggle Content\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"Toggle Content\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"Toggle Content\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"Toggle Content\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":1},\"space_between\":{\"unit\":\"px\",\"size\":50},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><h4>\\u00a0<\\/h4><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18674", "15831", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18676", "15832", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("18677", "15832", "_wp_trash_meta_time", "1527029955");
INSERT INTO `wp_postmeta` VALUES("18678", "15833", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18679", "15833", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18680", "15833", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dac4efc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5415e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18681", "15833", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18682", "15833", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18690", "303", "_elementor_data", "[{\"id\":\"3fb17e97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"55f931ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1c4502\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3020cd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Registration & Payment Options\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9c077\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b637122\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Register\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c3a6ce\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42625267\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul>\\n \\t<li><span style=\\\"color: #000000;\\\"><a style=\\\"color: blue;\\\" title=\\\"Register for Training\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/register-course-training-program\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" >Click here<\\/a><span style=\\\"font-size: 14px;\\\">\\u00a0to fill out the registration form. Registrations will be confirmed via email.\\u00a0<\\/span><\\/span><\\/li>\\n \\t<li><span style=\\\"color: #000000;\\\">\\u00a0Call \\u00a0<strong>250-472-2851<\\/strong> and leave a voice mail with your contact information<\\/span><\\/li>\\n<\\/ul>\\n<span style=\\\"color: #000000;\\\">To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\">Registration is on a first-come, first-serve basis.<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60620cd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c8a9ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e1a72\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e6b3e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Cash<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Credit<\\/span><\\/li><\\/ul><div><b><span style=\\\"font-size: 15px; font-style: normal;\\\">If paying by credit card, please call the office at\\u00a0<\\/span><span style=\\\"font-size: 15px; font-style: normal;\\\">\\u00a0250-472-2851 for processing.<\\/span><\\/b><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc11d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2fa930\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refunds\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd9f373\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e3abdd3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">In the case of a cancellation, a full refund will be issued.<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Where cash payment has been made, refunds will be reimbursed by cheque.<\\/span><\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b16f00b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18691", "15836", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18692", "15836", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18694", "15836", "_elementor_data", "[{\"id\":\"3fb17e97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"55f931ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"42625267\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><span style=\\\"color: #000000;\\\"><strong>How to Register<\\/strong><\\/span><\\/h4>\\r\\n<ul>\\r\\n \\t<li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Register for Training\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/register-course-training-program\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><span style=\\\"font-size: 14px;\\\">\\u00a0to fill out the registration form. Registrations will be confirmed via email.\\u00a0<\\/span><\\/span><\\/li>\\r\\n \\t<li><span style=\\\"color: #000000;\\\">\\u00a0Call \\u00a0<strong>250-472-2851<\\/strong> and leave a voice mail with your contact information<\\/span><\\/li>\\r\\n<\\/ul>\\r\\n<span style=\\\"color: #000000;\\\">To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.<\\/span>\\r\\n\\r\\n<span style=\\\"color: #000000;\\\">Registration is on a first-come, first-serve basis.<\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\"><strong>Payment Options<\\/strong><\\/span><\\/h4>\\r\\n<ul>\\r\\n \\t<li><span style=\\\"color: #000000;\\\">Cash<\\/span><\\/li>\\r\\n \\t<li><span style=\\\"color: #000000;\\\">Credit<\\/span><\\/li>\\r\\n<\\/ul>\\r\\n<span style=\\\"color: #000000;\\\">If paying by credit card, please call the office at <i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0250-472-2851 for processing.<\\/span>\\r\\n<h4><span style=\\\"color: #000000;\\\"><strong>Refunds<\\/strong><\\/span><\\/h4>\\r\\n<ul>\\r\\n \\t<li><span style=\\\"color: #000000;\\\">In the case of a cancellation, a full refund will be issued.<\\/span><\\/li>\\r\\n \\t<li><span style=\\\"color: #000000;\\\">Where cash payment has been made, refunds will be reimbursed by cheque.<\\/span><\\/li>\\r\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18695", "303", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18696", "15837", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18697", "15837", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18698", "15837", "_elementor_data", "[{\"id\":\"3fb17e97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"55f931ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1c4502\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3020cd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Registration & Payment Options\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9c077\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b637122\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Register\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c3a6ce\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42625267\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Register for Training\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/register-course-training-program\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><span style=\\\"font-size: 14px;\\\">\\u00a0to fill out the registration form. Registrations will be confirmed via email.\\u00a0<\\/span><\\/span><\\/li><li><span style=\\\"color: #000000;\\\">\\u00a0Call \\u00a0<strong>250-472-2851<\\/strong> and leave a voice mail with your contact information<\\/span><\\/li><\\/ul><p><span style=\\\"color: #000000;\\\">To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Registration is on a first-come, first-serve basis.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60620cd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c8a9ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e1a72\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e6b3e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Cash<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Credit<\\/span><\\/li><\\/ul><div><b><span style=\\\"font-size: 15px; font-style: normal;\\\">If paying by credit card, please call the office at\\u00a0<\\/span><span style=\\\"font-size: 15px; font-style: normal;\\\">\\u00a0250-472-2851 for processing.<\\/span><\\/b><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc11d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2fa930\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refunds\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd9f373\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e3abdd3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">In the case of a cancellation, a full refund will be issued.<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Where cash payment has been made, refunds will be reimbursed by cheque.<\\/span><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b16f00b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18699", "15837", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18700", "15838", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18701", "15838", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18702", "15838", "_elementor_data", "[{\"id\":\"3fb17e97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"55f931ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1c4502\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3020cd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Registration & Payment Options\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9c077\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b637122\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Register\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c3a6ce\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42625267\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Register for Training\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/register-course-training-program\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><span style=\\\"font-size: 14px;\\\">\\u00a0to fill out the registration form. Registrations will be confirmed via email.\\u00a0<\\/span><\\/span><\\/li><li><span style=\\\"color: #000000;\\\">\\u00a0Call \\u00a0<strong>250-472-2851<\\/strong> and leave a voice mail with your contact information<\\/span><\\/li><\\/ul><p><span style=\\\"color: #000000;\\\">To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Registration is on a first-come, first-serve basis.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60620cd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c8a9ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e1a72\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e6b3e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Cash<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Credit<\\/span><\\/li><\\/ul><div><b><span style=\\\"font-size: 15px; font-style: normal;\\\">If paying by credit card, please call the office at\\u00a0<\\/span><span style=\\\"font-size: 15px; font-style: normal;\\\">\\u00a0250-472-2851 for processing.<\\/span><\\/b><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc11d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2fa930\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refunds\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd9f373\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e3abdd3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">In the case of a cancellation, a full refund will be issued.<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Where cash payment has been made, refunds will be reimbursed by cheque.<\\/span><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b16f00b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18703", "15838", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18704", "303", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18705", "303", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18706", "303", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18709", "15839", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18710", "15839", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18711", "15839", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p>Toggle Content<\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><h4>\\u00a0<\\/h4><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a>\\u00a0<a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18712", "15839", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18714", "15840", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18715", "15840", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18716", "15840", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: #ffffff;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"},{\"id\":\"8dd594e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><h4>\\u00a0<\\/h4><h4>Divorce and Separation<\\/h4><p><a title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p><a title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p><a title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p><a title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p>\\u00a0<a title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a>\\u00a0\\u00a0<\\/p><h4>Eating Disorders<\\/h4><p><a title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p><a title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p>\\u00a0<a title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p><a title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p>\\u00a0<a title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p><h4>Senior Support<\\/h4><p><a title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p>\\u00a0<a title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p>\\u00a0<a title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p><h4>Grief and Loss<\\/h4><p><a title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p><a title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p>\\u00a0<a title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p>\\u00a0<a title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p><h4>Marriage and Family<\\/h4><p><a title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p>\\u00a0<a title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p>\\u00a0<a title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p><a title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p><h4>Parenting<\\/h4><p><a title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p><p>\\u00a0<a title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p><p>\\u00a0<a title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<\\/p><p><a title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p><p>\\u00a0<a title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<\\/p><p><a title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><h4>Abuse and Trauma<\\/h4><p><a title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p><a title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p>\\u00a0<a title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p><a title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p><a title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p>\\u00a0<a title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p><h4>Spiritual Guidance<\\/h4><p><a title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p><p>\\u00a0<a title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p><h4>Suicide Prevention<\\/h4><p><a title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p><p>\\u00a0<a title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p><p>\\u00a0<a title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p><p>\\u00a0<a title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p><p>\\u00a0<a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p><p><a title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p><h4><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/h4><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div><div><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18717", "15840", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18718", "15841", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18719", "15841", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18720", "15841", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: #ffffff;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18721", "15841", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18722", "15842", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18723", "15842", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18724", "15842", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: #ffffff;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18725", "15842", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18726", "14462", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18727", "14462", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18728", "14462", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18730", "15843", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18731", "15843", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18732", "15843", "_elementor_data", "[{\"id\":\"260f1a13\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"703f09af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ffe8251\",\"elType\":\"widget\",\"settings\":{\"editor\":\"[gravityform id=\\\"3\\\" name=\\\"Register for Training\\\"]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18733", "15843", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18736", "15844", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18737", "15844", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18738", "15844", "_elementor_data", "[{\"id\":\"260f1a13\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"703f09af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"403c963\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c2fe37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Register for Training\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c889c7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ffe8251\",\"elType\":\"widget\",\"settings\":{\"editor\":\"[gravityform id=\\\"3\\\" name=\\\"Register for Training\\\"]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18739", "15844", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18741", "15845", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18742", "15845", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18743", "15845", "_elementor_data", "[{\"id\":\"260f1a13\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":900},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"703f09af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"403c963\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c2fe37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Register for Training\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c889c7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ffe8251\",\"elType\":\"widget\",\"settings\":{\"editor\":\"[gravityform id=\\\"3\\\" name=\\\"Register for Training\\\"]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18744", "15845", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18745", "13550", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("18746", "13550", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18747", "13550", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("18748", "15846", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18749", "15846", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18750", "15846", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Positive Psychology Group<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\">Young Adults Support group for Anxiety<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\">Making It Work for Teens!<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"> Living with Loss Part 1, an Introduction to Grief and Loss <\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register<\\/strong>: <a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>. Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18751", "15846", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18753", "15847", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18754", "15847", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18755", "15847", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Positive Psychology Group<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\">Young Adults Support group for Anxiety<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\">Making It Work for Teens!<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"> Living with Loss Part 1, an Introduction to Grief and Loss <\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18756", "15847", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18759", "15848", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18760", "15848", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18761", "15848", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Positive Psychology Group<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\">Young Adults Support group for Anxiety<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\">Making It Work for Teens!<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"> Living with Loss Part 1, an Introduction to Grief and Loss <\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18762", "15848", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18764", "15849", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18765", "15849", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18766", "15849", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br><br><br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_border_border\":\"solid\",\"_border_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dac4efc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5415e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18767", "15849", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18768", "15849", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18770", "15850", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18771", "15850", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18772", "15850", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br><br><br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_background\":\"classic\",\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dac4efc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5415e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18773", "15850", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18774", "15850", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18776", "15851", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18777", "15851", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18778", "15851", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_background\":\"classic\",\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"90\",\"bottom\":\"90\",\"left\":\"90\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dac4efc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5415e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18779", "15851", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18780", "15851", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18783", "15852", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18784", "15852", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18785", "15852", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_background\":\"classic\",\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"90\",\"bottom\":\"90\",\"left\":\"90\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dac4efc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5415e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18786", "15852", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18787", "15852", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18790", "15853", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18791", "15853", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18792", "15853", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_background\":\"classic\",\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"90\",\"bottom\":\"90\",\"left\":\"90\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dac4efc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5415e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18793", "15853", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18794", "15853", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18796", "15854", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18797", "15854", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18798", "15854", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dac4efc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5415e5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18799", "15854", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18800", "15854", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18812", "15857", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18813", "15857", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18814", "15857", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#ffffff\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"Slide 2 Heading\",\"description\":\"Click edit button to change this text. Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button_text\":\"Click Here\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Slide 3 Heading\",\"description\":\"Click edit button to change this text. Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button_text\":\"Click Here\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18815", "15857", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18816", "15857", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18817", "15857", "_elementor_css", "a:3:{s:4:\"time\";i:1527100146;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:1;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("18828", "15859", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18829", "15859", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18830", "15859", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":150},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18831", "15859", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18832", "15859", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18833", "15860", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("18834", "15860", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18835", "15861", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18836", "15861", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18837", "15860", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18838", "15860", "_elementor_data", "[{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18839", "15862", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18840", "15862", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18841", "15862", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18842", "15862", "_elementor_data", "[{\"id\":\"e0efb15\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79000000000000003552713678800500929355621337890625}},\"elements\":[{\"id\":\"ba125b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee42ebe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"96c594b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"93cd944\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"073b1e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"e39c955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f2e41b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324631f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5e4d9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"809c6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4aa8fbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5679d39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ae640\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ad0610\",\"elType\":\"widget\",\"settings\":{\"text\":\"read more\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db683b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18843", "15860", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18844", "15863", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("18845", "15863", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18846", "15864", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18847", "15864", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18848", "15863", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18849", "15863", "_elementor_data", "[{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18850", "15865", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("18851", "15865", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18852", "15865", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18853", "15865", "_elementor_data", "[{\"id\":\"fb6242f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"49fdad6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f69c344\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9545bc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bcf94a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"89526f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"45a6f16\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"1486068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4859acc\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"912e2c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e503b7e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9d35b10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4bb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18854", "15863", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18855", "15866", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18856", "15866", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18857", "15866", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18858", "15866", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18859", "15866", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18861", "15867", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18862", "15867", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18863", "15867", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"autoplay_speed\":3000,\"transition_speed\":1000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18864", "15867", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18865", "15867", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18866", "15867", "_elementor_css", "a:3:{s:4:\"time\";i:1527101679;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("18867", "15868", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18868", "15868", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18869", "15868", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"autoplay_speed\":3000,\"transition_speed\":1000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18870", "15868", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18871", "15868", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18872", "15869", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18873", "15869", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18874", "15869", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18875", "15869", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18876", "15869", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18877", "15870", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18878", "15870", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18879", "15870", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"autoplay_speed\":3000,\"content_animation\":\"fadeInDown\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18880", "15870", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18881", "15870", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18882", "15871", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18883", "15871", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18884", "15871", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18885", "15871", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18886", "15871", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18887", "15872", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18888", "15872", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18889", "15872", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"autoplay_speed\":3000,\"transition_speed\":1000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18890", "15872", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18891", "15872", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18893", "15873", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18894", "15873", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18895", "15873", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"autoplay_speed\":3000,\"transition_speed\":1000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18896", "15873", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18897", "15873", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18898", "15873", "_elementor_css", "a:3:{s:4:\"time\";i:1527101879;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("18899", "15874", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18900", "15874", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18901", "15874", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"Training Offered\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"Impact Stories\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18902", "15874", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18903", "15874", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18905", "15875", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18906", "15875", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18907", "15875", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18908", "15875", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18909", "15875", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18910", "15875", "_elementor_css", "a:3:{s:4:\"time\";i:1527101924;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("18911", "15876", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18912", "15876", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18913", "15876", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1}},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18914", "15876", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18915", "15876", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18917", "15877", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18918", "15877", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18919", "15877", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18920", "15877", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18921", "15877", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18922", "15877", "_elementor_css", "a:3:{s:4:\"time\";i:1527102022;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("18923", "15878", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18924", "15878", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18925", "15878", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":700},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18926", "15878", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18927", "15878", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18929", "15879", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18930", "15879", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18931", "15879", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":940},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18932", "15879", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18933", "15879", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18934", "15879", "_elementor_css", "a:3:{s:4:\"time\";i:1527102138;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("18935", "15880", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18936", "15880", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18937", "15880", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ffffff\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18938", "15880", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18939", "15880", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18942", "15881", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18943", "15881", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18944", "15881", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Recent News\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ffffff\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":25},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18945", "15881", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18946", "15881", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18947", "15881", "_elementor_css", "a:3:{s:4:\"time\";i:1527102249;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("18953", "15883", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18954", "15883", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18955", "15883", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#ffffff\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18956", "15883", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18957", "15883", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18958", "15884", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18959", "15884", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18960", "15884", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"view\":\"framed\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18961", "15884", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18962", "15884", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18968", "15886", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18969", "15886", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18970", "15886", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18971", "15886", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18972", "15886", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18973", "15887", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18974", "15887", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18975", "15887", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\",\"content_vertical_alignment\":\"bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18976", "15887", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18977", "15887", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18983", "15889", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18984", "15889", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18985", "15889", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":6000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18986", "15889", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18987", "15889", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("18989", "869", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18992", "15891", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18993", "15891", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18994", "869", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#333333\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#333333\",\"_background_background\":\"classic\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":62},\"autoplay_speed\":7000,\"space_between\":{\"unit\":\"px\",\"size\":0},\"slide_background_color\":\"rgba(255,255,255,0.57)\",\"image_size\":{\"unit\":\"px\",\"size\":0},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"arrows_size\":{\"unit\":\"px\",\"size\":36},\"arrows_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":0},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\",\"_background_hover_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18995", "15892", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18996", "15892", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("18997", "15892", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3099a9aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3d90da08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"585edf92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Read what a participant in the <strong>CareerChoice Program<\\/strong> had to say about the experience:\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\\n\\n&nbsp;\\n\\nRead what a few participants of the<strong> Family Systems Theory course<\\/strong> with facilitator<strong> Bill Cole<\\/strong> had to say about the experience:\\n\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\\n\\n&nbsp;\\n\\nRead what a few participants of the<strong> Pastoral Counselling Training<\\/strong> with trainer <strong>Bill Cole<\\/strong> had to say about the experience:\\n\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\\n\\n&nbsp;\\n\\n<em>More testimonials are listed on the Home Page. We choose not to disclose the names or initials of our course participants or clients for confidentiality and privacy reasons. All quoted testimonials are excerpted from past course evaluations or client surveys.<\\/em>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}]},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("18998", "869", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("18999", "15893", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19000", "15893", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19001", "15893", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":100},\"autoplay_speed\":7000,\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19002", "15893", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19003", "15894", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19004", "15894", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19005", "15894", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":62},\"autoplay_speed\":7000,\"space_between\":{\"unit\":\"px\",\"size\":0},\"slide_background_color\":\"rgba(255,255,255,0.57)\",\"image_size\":{\"unit\":\"px\",\"size\":0},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"arrows_size\":{\"unit\":\"px\",\"size\":36},\"arrows_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":0},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\",\"_background_hover_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19006", "15894", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19008", "15061", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19009", "15061", "_astra_content_layout_flag", "disabled");
INSERT INTO `wp_postmeta` VALUES("19010", "15061", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("19011", "15061", "ast-title-bar-display", "disabled");
INSERT INTO `wp_postmeta` VALUES("19012", "15061", "ast-featured-img", "disabled");
INSERT INTO `wp_postmeta` VALUES("19013", "15061", "site-content-layout", "page-builder");
INSERT INTO `wp_postmeta` VALUES("19014", "15061", "site-sidebar-layout", "no-sidebar");
INSERT INTO `wp_postmeta` VALUES("19015", "15895", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19016", "15895", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19017", "15895", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":62},\"autoplay_speed\":7000,\"space_between\":{\"unit\":\"px\",\"size\":0},\"slide_background_color\":\"rgba(255,255,255,0.57)\",\"image_size\":{\"unit\":\"px\",\"size\":0},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"arrows_size\":{\"unit\":\"px\",\"size\":36},\"arrows_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":0},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\",\"_background_hover_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19018", "15895", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19019", "15895", "_elementor_css", "a:3:{s:4:\"time\";i:1527107835;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19020", "869", "site-post-title", "disabled");
INSERT INTO `wp_postmeta` VALUES("19021", "869", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("19022", "869", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("19023", "15896", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("19024", "15896", "_menu_item_menu_item_parent", "15581");
INSERT INTO `wp_postmeta` VALUES("19025", "15896", "_menu_item_object_id", "869");
INSERT INTO `wp_postmeta` VALUES("19026", "15896", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("19027", "15896", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("19028", "15896", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("19029", "15896", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("19030", "15896", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("19033", "15897", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19034", "15897", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19035", "15897", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19036", "15897", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19037", "15897", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19038", "15897", "_elementor_css", "a:3:{s:4:\"time\";i:1527106480;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19039", "15898", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19040", "15898", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19041", "15898", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":2000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19042", "15898", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19043", "15898", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19046", "15899", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19047", "15899", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19048", "15899", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":2000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19049", "15899", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19050", "15899", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19051", "15899", "_elementor_css", "a:3:{s:4:\"time\";i:1527108832;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19052", "15900", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19053", "15900", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19054", "15900", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":2000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19055", "15900", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19056", "15900", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19057", "15901", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19058", "15901", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19059", "15901", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":2000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19060", "15901", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19061", "15901", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19062", "15902", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19063", "15902", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19064", "15902", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":2000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19065", "15902", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19066", "15902", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19068", "15903", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19069", "15903", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19070", "15903", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19071", "15903", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19072", "15903", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19073", "15903", "_elementor_css", "a:3:{s:4:\"time\";i:1527108982;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19075", "15904", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19076", "15904", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19077", "15904", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19078", "15904", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19079", "15904", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19080", "15904", "_elementor_css", "a:3:{s:4:\"time\";i:1527115534;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19083", "15905", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19084", "15905", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19085", "15905", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u>Positive Psychology Group<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\"><u>Young Adults Support group for Anxiety<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><u><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/u><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\"><u>Making It Work for Teens!<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"><u> Living with Loss Part 1, an Introduction to Grief and Loss <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19086", "15905", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19087", "15905", "_elementor_css", "a:3:{s:4:\"time\";i:1527101226;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19088", "15906", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19089", "15906", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19090", "15906", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u>Positive Psychology Group<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\"><u>Young Adults Support group for Anxiety<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><u><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/u><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\"><u>Making It Work for Teens!<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"><u> Living with Loss Part 1, an Introduction to Grief and Loss <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19091", "15906", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19092", "15907", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19093", "15907", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19094", "15907", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<\\/span><\\/span><br \\/><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">\\u00a0<\\/span><\\/span><\\/div><div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><span style=\\\"font-size: 15px; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: #000000; font-family: Arial, Helvetica, Arial, Verdana, sans-serif; font-variant-caps: normal; font-variant-ligatures: normal; -en-paragraph: true;\\\"><span style=\\\"color: #000000; font-family: Arial; font-size: 15px; font-variant-caps: normal; font-variant-ligatures: normal;\\\">We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/span><\\/span><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19095", "15907", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19096", "15907", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19097", "15907", "_elementor_css", "a:3:{s:4:\"time\";i:1527108863;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19098", "15908", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19099", "15908", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19100", "15908", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>South Island Centre for Counselling and Training Society was established in 1975.<\\/h5>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"line-height: 1.57143em; font-family: gotham, helvetica, arial, sans-serif; font-size: 14px; color: #383838; font-style: normal; font-weight: 400;\\\"><div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div><\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19101", "15908", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19102", "15908", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19103", "15909", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19104", "15909", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19105", "15909", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">We offer a sliding scale based on .1<\\/span><span style=\\\"font-family: Arial;\\\">% of annual income\\u00a0<\\/span><span style=\\\"font-family: Arial;\\\">with the maximum being $120\\/hour and the minimum being $10 per hour<\\/span><span style=\\\"font-family: Arial;\\\">. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/span><\\/p><p><span style=\\\"font-family: Arial;\\\">\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/span><\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19106", "15909", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19107", "15909", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19108", "15910", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19109", "15910", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19110", "15910", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#000000\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19111", "15910", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19112", "15910", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19113", "15911", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19114", "15911", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19115", "15911", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#000000\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19116", "15911", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19117", "15911", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19118", "15912", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19119", "15912", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19120", "15912", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR History\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#000000\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19121", "15912", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19122", "15912", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19124", "15913", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19125", "15913", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19126", "15913", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68000000000000004884981308350688777863979339599609375},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":77}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0Samaritan\'s Fund<\\/strong>.\\u00a0If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0(for example: one-time, monthly, quarterly, annual etc):<\\/p><ul><li>Option 1\\u00a0: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><strong>Option 2\\u00a0<\\/strong>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><strong>Option 3<\\/strong>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0decreases the amount\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong>Option 4:<\\/strong>\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0decreases the amount\\u00a0we actually receive.<\\/li><\\/ul><p><strong>Why monthly or quarterly giving?<\\/strong><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><strong>The Fine Print<\\/strong><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/p><p>You may help us with an\\u00a0<strong>in-kind donation<\\/strong>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a>\\u00a0to\\u00a0email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19127", "15913", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19128", "15913", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19129", "15913", "_elementor_css", "a:3:{s:4:\"time\";i:1527116590;s:5:\"fonts\";a:1:{i:0;s:9:\"Amatic SC\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19132", "15915", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19133", "15915", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19134", "15915", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR HISTORY\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#000000\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19135", "15915", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19136", "15915", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19137", "15915", "_elementor_css", "a:3:{s:4:\"time\";i:1527116782;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19140", "15916", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19141", "15916", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19142", "15916", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"231d27e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Our experienced counsellors\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d89831e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea03440\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<\\/b><\\/p><p>Talk to your counsellor about your payment plans and options.<\\/p><p>To\\u00a0Make\\u00a0an Appointment<\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a style=\\\"color: blue;\\\" title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here <\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e21a84\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19143", "15916", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19144", "15916", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19145", "15916", "_elementor_css", "a:3:{s:4:\"time\";i:1527100927;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19149", "15917", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19150", "15917", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19151", "15917", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>\\u00a0<\\/h4><p><span style=\\\"color: #000000;\\\">Contact us via <strong>email<\\/strong>\\u00a0or\\u00a0<strong><a style=\\\"color: blue;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><p><strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span><\\/p><h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4><p><span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19152", "15917", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19153", "15917", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19154", "15917", "_elementor_css", "a:3:{s:4:\"time\";i:1527171711;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19156", "15918", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19157", "15918", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19158", "15918", "_elementor_data", "[{\"id\":\"3fb17e97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375}},\"elements\":[{\"id\":\"55f931ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1c4502\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3020cd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Registration & Payment Options\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9c077\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b637122\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Register\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c3a6ce\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42625267\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Register for Training\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/register-course-training-program\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><span style=\\\"font-size: 14px;\\\">\\u00a0to fill out the registration form. Registrations will be confirmed via email.\\u00a0<\\/span><\\/span><\\/li><li><span style=\\\"color: #000000;\\\">\\u00a0Call \\u00a0<strong>250-472-2851<\\/strong> and leave a voice mail with your contact information<\\/span><\\/li><\\/ul><p><span style=\\\"color: #000000;\\\">To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Registration is on a first-come, first-serve basis.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60620cd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c8a9ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e1a72\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e6b3e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Cash<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Credit<\\/span><\\/li><\\/ul><div><b><span style=\\\"font-size: 15px; font-style: normal;\\\">If paying by credit card, please call the office at\\u00a0<\\/span><span style=\\\"font-size: 15px; font-style: normal;\\\">\\u00a0250-472-2851 for processing.<\\/span><\\/b><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc11d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2fa930\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refunds\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd9f373\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e3abdd3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">In the case of a cancellation, a full refund will be issued.<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Where cash payment has been made, refunds will be reimbursed by cheque.<\\/span><\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b16f00b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19159", "15918", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19160", "15918", "_elementor_css", "a:3:{s:4:\"time\";i:1527115885;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19166", "14462", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19169", "13550", "_elementor_css", "a:3:{s:4:\"time\";i:1527203024;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19172", "15920", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19173", "15920", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19174", "15920", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><\\/h4>\\n<span style=\\\"color: #000000;\\\">Contact us via <a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a style=\\\"color: blue;\\\" title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a <strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\">\\u00a0<\\/span>\\n\\n<span style=\\\"color: #000000;\\\"><strong>Call<\\/strong> the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\">\\u00a0<\\/span>\\n\\n<strong style=\\\"font-size: 15px;\\\">Counselling hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/span>\\n\\n<span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span>\\n\\n<strong style=\\\"font-size: 15px;\\\">Reception hours<\\/strong><span style=\\\"font-size: 15px;\\\"> are Monday-Thursday, 9:00am-2:00pm.<\\/span>\\n\\n<span style=\\\"font-size: 15px;\\\">\\u00a0<\\/span>\\n<h4><span style=\\\"text-decoration: underline; color: #000000;\\\">Current Clients:<\\/span><\\/h4>\\n<span style=\\\"color: #000000;\\\">Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><span style=\\\"display: none;\\\">icon-phone-square<\\/span><\\/i>\\u00a0<strong>250-472-2851<\\/strong> <strong>and press 4 for the staff directory. <\\/strong>\\u00a0<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19175", "15920", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19176", "15920", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19177", "15920", "_elementor_css", "a:3:{s:4:\"time\";i:1527204400;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19179", "15921", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19180", "15921", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19181", "15921", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us via\\u00a0<a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/p><p>\\u00a0<\\/p><p><strong>Call<\\/strong>\\u00a0the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/p><p>\\u00a0<\\/p><p><strong>Counselling hours<\\/strong>\\u00a0are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/p><p>\\u00a0<\\/p><p><strong>Reception hours<\\/strong>\\u00a0are Monday-Thursday, 9:00am-2:00pm.<\\/p><p>\\u00a0<\\/p><h4>Current Clients:<\\/h4><p>Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0<strong>250-472-2851<\\/strong>\\u00a0<strong>and press 4 for the staff directory.\\u00a0<\\/strong>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19182", "15921", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19183", "15921", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19184", "15921", "_elementor_css", "a:3:{s:4:\"time\";i:1527204599;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19186", "15922", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19187", "15922", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19188", "15922", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2014\\/07\\/tree-in-hand-banner-1024x397.jpg\",\"id\":13434},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19189", "15922", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19190", "15922", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19191", "15922", "_elementor_css", "a:3:{s:4:\"time\";i:1527115719;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19193", "15923", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19194", "15923", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19195", "15923", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":79},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19196", "15923", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19197", "15923", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19198", "15923", "_elementor_css", "a:3:{s:4:\"time\";i:1527214429;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19201", "24", "_elementor_css", "a:3:{s:4:\"time\";i:1527268466;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19202", "15924", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19203", "15924", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19204", "15924", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR HISTORY\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#000000\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19205", "15924", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19206", "15924", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19207", "15924", "_elementor_css", "a:3:{s:4:\"time\";i:1527171319;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19210", "15061", "_elementor_css", "a:4:{s:4:\"time\";i:1527324902;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";s:3:\"css\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("19212", "15925", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19213", "15925", "_wp_trash_meta_time", "1527529235");
INSERT INTO `wp_postmeta` VALUES("19214", "15926", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19215", "15926", "_wp_trash_meta_time", "1527529279");
INSERT INTO `wp_postmeta` VALUES("19216", "15927", "_edit_lock", "1527529310:10");
INSERT INTO `wp_postmeta` VALUES("19217", "15927", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19218", "15927", "_wp_trash_meta_time", "1527529357");
INSERT INTO `wp_postmeta` VALUES("19219", "15928", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19220", "15928", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19221", "15928", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc7544a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10},\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19222", "15928", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19223", "15928", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19224", "15928", "_elementor_css", "a:3:{s:4:\"time\";i:1527214467;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19226", "15929", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19227", "15929", "_wp_trash_meta_time", "1527529618");
INSERT INTO `wp_postmeta` VALUES("19228", "15930", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19229", "15930", "_wp_trash_meta_time", "1527529633");
INSERT INTO `wp_postmeta` VALUES("19230", "15931", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19231", "15931", "_wp_trash_meta_time", "1527529690");
INSERT INTO `wp_postmeta` VALUES("19232", "15932", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19233", "15932", "_wp_trash_meta_time", "1527529735");
INSERT INTO `wp_postmeta` VALUES("19234", "15933", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19235", "15933", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19236", "15933", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19237", "15933", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19238", "15933", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19239", "15933", "_elementor_css", "a:3:{s:4:\"time\";i:1527529410;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19241", "15934", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19242", "15934", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19243", "15934", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19244", "15934", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19245", "15934", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19246", "15934", "_elementor_css", "a:3:{s:4:\"time\";i:1527529770;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19248", "15935", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19249", "15935", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19250", "15935", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how SICCT helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19251", "15935", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19252", "15935", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19253", "15935", "_elementor_css", "a:3:{s:4:\"time\";i:1527529853;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19254", "15936", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19255", "15936", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19256", "15936", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how South Island Centre helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19257", "15936", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19258", "15936", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19260", "15937", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19261", "15937", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19262", "15937", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19263", "15937", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(255,255,255,0.91)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"#54595f\"},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rosemary Merritt  <br><br>MEd, MPE, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Focuses on\\u00a0working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career and\\u00a0family related issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19264", "15937", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19265", "15937", "_elementor_css", "a:3:{s:4:\"time\";i:1527171592;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19267", "15938", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19268", "15938", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19269", "15938", "_elementor_data", "[{\"id\":\"2b472f1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"1d0dab80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"860eee7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a6a0cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Income-Based Counselling Services\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d756323\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3d382ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>At South Island Centre we know how\\u00a0important it is for\\u00a0everyone\\u00a0to have access to professional, affordable mental health counselling services when needed.\\u00a0 As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.<\\/h5>\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"759d2366\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>Costs of Counselling<\\/strong><\\/p><p>Counselling services at South Island Centre are calculated on an income-based fee of\\u00a00.1% of your gross income up to a maximum of $120.00 per session. Our\\u00a0minimum fee is $10.00 per session.<strong>\\u00a0<\\/strong>Talk to your counsellor about\\u00a0your payment options and fees.<\\/p><p>Please note cancellation fees\\u00a0are charged for missed appointments when less than 24 hours notice is given.<\\/p><p>Payment can be made with cash, debit or credit card.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28766ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2da0c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Insurance Coverage<\\/strong><\\/p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br \\/>It is your responsibility to submit receipts to your provider for reimbursement.<br \\/>If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br \\/>We not bill external parties for services rendered.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f3f0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19270", "15938", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19271", "15938", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19272", "15938", "_elementor_css", "a:3:{s:4:\"time\";i:1527171685;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19274", "15939", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19275", "15939", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19276", "15939", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Counselling Inquiry Form<\\/a>.<\\/b><\\/p><p><b>\\u00a0<\\/b><\\/p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19277", "15939", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19278", "15939", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19279", "15939", "_elementor_css", "a:3:{s:4:\"time\";i:1527171695;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19281", "15940", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19282", "15940", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19283", "15940", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":10}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":62},\"autoplay_speed\":7000,\"space_between\":{\"unit\":\"px\",\"size\":0},\"slide_background_color\":\"rgba(255,255,255,0.57)\",\"image_size\":{\"unit\":\"px\",\"size\":0},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"arrows_size\":{\"unit\":\"px\",\"size\":36},\"arrows_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":0},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\",\"_background_hover_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19284", "15940", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19285", "15940", "_elementor_css", "a:3:{s:4:\"time\";i:1527107835;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19287", "15941", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19288", "15941", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19289", "15941", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e8b8b94\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6d4d7580\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19290", "15941", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19291", "15941", "_elementor_css", "a:3:{s:4:\"time\";i:1527103262;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19293", "15942", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19294", "15942", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19295", "15942", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u>Positive Psychology Group<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\"><u>Young Adults Support group for Anxiety<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><u><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/u><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\"><u>Making It Work for Teens!<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"><u> Living with Loss Part 1, an Introduction to Grief and Loss <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19296", "15942", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19297", "15942", "_elementor_css", "a:3:{s:4:\"time\";i:1527171789;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19299", "15943", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19300", "15943", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19301", "15943", "_elementor_data", "[{\"id\":\"3fb17e97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"55f931ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1c4502\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3020cd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Registration & Payment Options\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9c077\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b637122\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Register\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c3a6ce\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42625267\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul>\\n \\t<li><span style=\\\"color: #000000;\\\"><a style=\\\"color: blue;\\\" title=\\\"Register for Training\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/register-course-training-program\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" >Click here<\\/a><span style=\\\"font-size: 14px;\\\">\\u00a0to fill out the registration form. Registrations will be confirmed via email.\\u00a0<\\/span><\\/span><\\/li>\\n \\t<li><span style=\\\"color: #000000;\\\">\\u00a0Call \\u00a0<strong>250-472-2851<\\/strong> and leave a voice mail with your contact information<\\/span><\\/li>\\n<\\/ul>\\n<span style=\\\"color: #000000;\\\">To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\">Registration is on a first-come, first-serve basis.<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60620cd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c8a9ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e1a72\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e6b3e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Cash<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Credit<\\/span><\\/li><\\/ul><div><b><span style=\\\"font-size: 15px; font-style: normal;\\\">If paying by credit card, please call the office at\\u00a0<\\/span><span style=\\\"font-size: 15px; font-style: normal;\\\">\\u00a0250-472-2851 for processing.<\\/span><\\/b><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc11d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2fa930\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refunds\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd9f373\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e3abdd3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">In the case of a cancellation, a full refund will be issued.<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Where cash payment has been made, refunds will be reimbursed by cheque.<\\/span><\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b16f00b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19302", "15943", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19303", "15943", "_elementor_css", "a:3:{s:4:\"time\";i:1527203346;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19305", "15944", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19306", "15944", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19307", "15944", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400; background-color: #ffffff;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19308", "15944", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19309", "15944", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19310", "15944", "_elementor_css", "a:3:{s:4:\"time\";i:1527171948;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19312", "15945", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19313", "15945", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19314", "15945", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19315", "15945", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19316", "15945", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19317", "15945", "_elementor_css", "a:3:{s:4:\"time\";i:1527530739;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19318", "15946", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19319", "15946", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19320", "15946", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: #ff6a00;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a>\\u00a0\\u00a0<\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19321", "15946", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19322", "15946", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19323", "15947", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19324", "15947", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19325", "15947", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a><\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19326", "15947", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19327", "15947", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19328", "15948", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19329", "15948", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19330", "15948", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"05a6875\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8cec01f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a233604\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a><\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19331", "15948", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19332", "15948", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19334", "15949", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19335", "15949", "_wp_trash_meta_time", "1527630447");
INSERT INTO `wp_postmeta` VALUES("19336", "15950", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19337", "15950", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19338", "15950", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how South Island Centre helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#ff6a00\",\"button_hover_background_color\":\"#000000\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#ff6a00\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19339", "15950", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19340", "15950", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19341", "15950", "_elementor_css", "a:3:{s:4:\"time\";i:1527529985;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:2;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19342", "15951", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19343", "15951", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19344", "15951", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how South Island Centre helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19345", "15951", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19346", "15951", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19352", "15953", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19353", "15953", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19354", "15953", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how South Island Centre helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19355", "15953", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19356", "15953", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19364", "15955", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19365", "15955", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19366", "15955", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"Professional, affordable, income-based counselling services for all individuals\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how South Island Centre helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19367", "15955", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19368", "15955", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19370", "15956", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19371", "15956", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19372", "15956", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how South Island Centre helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19373", "15956", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19374", "15956", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19375", "15956", "_elementor_css", "a:3:{s:4:\"time\";i:1527631504;s:5:\"fonts\";a:3:{i:0;s:9:\"Amatic SC\";i:1;s:7:\"Georgia\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19377", "15957", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19378", "15957", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19379", "15957", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"A client\\u2019s story about how South Island Centre helped him\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19380", "15957", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19381", "15957", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19382", "15957", "_elementor_css", "a:3:{s:4:\"time\";i:1527633791;s:5:\"fonts\";a:3:{i:0;s:9:\"Amatic SC\";i:1;s:7:\"Georgia\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19383", "15958", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19384", "15958", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19385", "15958", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19386", "15958", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19387", "15958", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19388", "15959", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19389", "15959", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19390", "15959", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19391", "15959", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19392", "15959", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19394", "15960", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19395", "15960", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19396", "15960", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":77}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0Samaritan\'s Fund<\\/strong>.\\u00a0If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0(for example: one-time, monthly, quarterly, annual etc):<\\/p><ul><li>Option 1\\u00a0: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><strong>Option 2\\u00a0<\\/strong>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><strong>Option 3<\\/strong>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0decreases the amount\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong>Option 4:<\\/strong>\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0decreases the amount\\u00a0we actually receive.<\\/li><\\/ul><p><strong>Why monthly or quarterly giving?<\\/strong><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><strong>The Fine Print<\\/strong><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/p><p>You may help us with an\\u00a0<strong>in-kind donation<\\/strong>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a>\\u00a0to\\u00a0email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19397", "15960", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19398", "15960", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19399", "15960", "_elementor_css", "a:3:{s:4:\"time\";i:1527116655;s:5:\"fonts\";a:1:{i:0;s:9:\"Amatic SC\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19401", "15961", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19402", "15961", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19403", "15961", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"rgba(0,0,0,0)\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19404", "15961", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19405", "15961", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19406", "15961", "_elementor_css", "a:3:{s:4:\"time\";i:1527634063;s:5:\"fonts\";a:3:{i:0;s:9:\"Amatic SC\";i:1;s:7:\"Georgia\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19408", "15962", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19409", "15962", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19410", "15962", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19411", "15962", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19412", "15962", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19413", "15962", "_elementor_css", "a:3:{s:4:\"time\";i:1527782487;s:5:\"fonts\";a:3:{i:0;s:9:\"Amatic SC\";i:1;s:7:\"Georgia\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19415", "15963", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19416", "15963", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19417", "15963", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19418", "15963", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19419", "15963", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19420", "15963", "_elementor_css", "a:3:{s:4:\"time\";i:1527782540;s:5:\"fonts\";a:3:{i:0;s:9:\"Amatic SC\";i:1;s:7:\"Georgia\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19422", "15964", "_edit_lock", "1527784398:10");
INSERT INTO `wp_postmeta` VALUES("19423", "15964", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19424", "15964", "_wp_trash_meta_time", "1527784426");
INSERT INTO `wp_postmeta` VALUES("19431", "15966", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19432", "15966", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19433", "15966", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to <br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Catamaran\",\"_background_background\":\"classic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19434", "15966", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19435", "15966", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19437", "15967", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19438", "15967", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19439", "15967", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Catamaran\",\"_background_background\":\"classic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19440", "15967", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19441", "15967", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19442", "15967", "_elementor_css", "a:3:{s:4:\"time\";i:1527785124;s:5:\"fonts\";a:4:{i:0;s:9:\"Catamaran\";i:1;s:7:\"Georgia\";i:2;s:9:\"Amatic SC\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19444", "15968", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19445", "15968", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19446", "15968", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br><br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Catamaran\",\"_background_background\":\"classic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19447", "15968", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19448", "15968", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19449", "15968", "_elementor_css", "a:3:{s:4:\"time\";i:1527785155;s:5:\"fonts\";a:4:{i:0;s:9:\"Catamaran\";i:1;s:7:\"Georgia\";i:2;s:9:\"Amatic SC\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19450", "15969", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19451", "15969", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19452", "15969", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Catamaran\",\"_background_background\":\"classic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Georgia\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19453", "15969", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19454", "15969", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19456", "15970", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19457", "15970", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19458", "15970", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Catamaran\",\"_background_background\":\"classic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":70},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Catamaran\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19459", "15970", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19460", "15970", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19461", "15970", "_elementor_css", "a:3:{s:4:\"time\";i:1527785264;s:5:\"fonts\";a:4:{i:0;s:9:\"Catamaran\";i:1;s:7:\"Georgia\";i:2;s:9:\"Amatic SC\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19470", "15972", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19471", "15972", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19472", "15972", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":87},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Catamaran\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Catamaran\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19473", "15972", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19474", "15972", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19475", "15972", "_elementor_css", "a:3:{s:4:\"time\";i:1527785499;s:5:\"fonts\";a:3:{i:0;s:9:\"Catamaran\";i:2;s:9:\"Amatic SC\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19476", "15973", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19477", "15973", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19478", "15973", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Catamaran\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Catamaran\",\"typography_font_size\":{\"unit\":\"px\",\"size\":57}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19479", "15973", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19480", "15973", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19481", "15974", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19482", "15974", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19483", "15974", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#ff6a00\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":50},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19484", "15974", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19485", "15974", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19493", "15976", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19494", "15976", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19495", "15976", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"fa fa-newspaper-o:hover{\\n    cursor: pointer;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19496", "15976", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19497", "15976", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19498", "15977", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19499", "15977", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19500", "15977", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"fa fa-newspaper-o:hover{\\n    cursor: hover;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19501", "15977", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19502", "15977", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19503", "15978", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19504", "15978", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19505", "15978", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"fa fa-newspaper-o:hover{\\n    cursor: default;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19506", "15978", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19507", "15978", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19508", "15979", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19509", "15979", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19510", "15979", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"fa fa-newspaper-o:hover{\\n    cursor: default;\\n    color: blue;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19511", "15979", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19512", "15979", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19513", "15980", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19514", "15980", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19515", "15980", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"elementor-icon elementor-animation-pulse-grow:hover{\\n    cursor: default;\\n    color:blue;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19516", "15980", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19517", "15980", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19518", "15981", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19519", "15981", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19520", "15981", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"elementor-icon elementor-animation-pulse-grow:hover{\\n    cursor: pointer;\\n    color:blue;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19521", "15981", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19522", "15981", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19524", "15983", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19525", "15983", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19526", "15983", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"elementor-icon elementor-animation-pulse-grow:hover{\\n    cursor: pointer;\\n    color:blue;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19527", "15983", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19528", "15983", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19529", "15983", "_elementor_css", "a:3:{s:4:\"time\";i:1527786627;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19530", "15984", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19531", "15984", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19532", "15984", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":60}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"elementor-icon elementor-animation-pulse-grow:hover{\\n    cursor: pointer;\\n    color:blue;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19533", "15984", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19534", "15984", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19542", "15986", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19543", "15986", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19544", "15986", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":60}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ee16f10\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"\\nBigger\\nFaster\",\"words_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"1a5b8dd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"title_text\":\"Check Out Our NewsLetter\",\"description_text\":\"This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br>\",\"title_size\":\"h4\",\"primary_color\":\"#ff6a00\",\"hover_primary_color\":\"#61ce70\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":40},\"title_color\":\"#ffffff\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":23},\"_background_color_b\":\"#000000\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#ffffff\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":70},\"_background_color\":\"#000000\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\"},\"hover_animation\":\"pulse-grow\",\"custom_css\":\"elementor-icon elementor-animation-pulse-grow:hover{\\n    cursor: pointer;\\n    color:blue;\\n}\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19545", "15986", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19546", "15986", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19553", "15988", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19554", "15988", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19555", "15988", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":60}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text_a\":\"Mark Your Calendars\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"This is the heading\",\"description_text_b\":\"Click edit button to change this text. Lorem ipsum dolor sit amet consectetur adipiscing elit dolor\",\"button_text\":\"Click Here\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"title_color_a\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19556", "15988", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19557", "15988", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19558", "15988", "_elementor_css", "a:3:{s:4:\"time\";i:1527788256;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:3;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19559", "15989", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19560", "15989", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19561", "15989", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":60}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_color_b\":\"#ffffff\",\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19562", "15989", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19563", "15989", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19564", "15990", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19565", "15990", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19566", "15990", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":60}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_color_b\":\"#ffffff\",\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19567", "15990", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19568", "15990", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19569", "15991", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19570", "15991", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19571", "15991", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":60}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_color_b\":\"#ffffff\",\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19572", "15991", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19573", "15991", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19574", "15992", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19575", "15992", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19576", "15992", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":60}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19577", "15992", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19578", "15992", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19580", "15993", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19581", "15993", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19582", "15993", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":60}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19583", "15993", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19584", "15993", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19585", "15993", "_elementor_css", "a:3:{s:4:\"time\";i:1527789295;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19587", "15994", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19588", "15994", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19589", "15994", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19590", "15994", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19591", "15994", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19592", "15994", "_elementor_css", "a:3:{s:4:\"time\";i:1527789350;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19594", "15995", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19595", "15995", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19596", "15995", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19597", "15995", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19598", "15995", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19599", "15995", "_elementor_css", "a:3:{s:4:\"time\";i:1527789373;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19600", "15996", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19601", "15996", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19602", "15996", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19603", "15996", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19604", "15996", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19606", "15997", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19607", "15997", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19608", "15997", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19609", "15997", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19610", "15997", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19611", "15997", "_elementor_css", "a:3:{s:4:\"time\";i:1527789533;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19613", "15998", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19614", "15998", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19615", "15998", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":0},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19616", "15998", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19617", "15998", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19618", "15998", "_elementor_css", "a:3:{s:4:\"time\";i:1527789585;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19619", "15999", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19620", "15999", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19621", "15999", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#000000\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19622", "15999", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19623", "15999", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19625", "16000", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19626", "16000", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19627", "16000", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19628", "16000", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19629", "16000", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19630", "16000", "_elementor_css", "a:3:{s:4:\"time\";i:1527789783;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19632", "16001", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19633", "16001", "_wp_trash_meta_time", "1527789874");
INSERT INTO `wp_postmeta` VALUES("19634", "16002", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19635", "16002", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19636", "16002", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a8df95e\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"animation_type\":\"drop-in\",\"before_text\":\"This page is\",\"highlighted_text\":\"Amazing\",\"rotating_text\":\"Better\\nBigger\\nFaster\"},\"elements\":[],\"widgetType\":\"animated-headline\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19637", "16002", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19638", "16002", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19639", "16002", "_elementor_css", "a:3:{s:4:\"time\";i:1527789794;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19641", "16003", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19642", "16003", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19643", "16003", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19644", "16003", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19645", "16003", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19646", "16003", "_elementor_css", "a:3:{s:4:\"time\";i:1527790035;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19648", "16004", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19649", "16004", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19650", "16004", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19651", "16004", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19652", "16004", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19653", "16004", "_elementor_css", "a:3:{s:4:\"time\";i:1527790148;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19654", "16005", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19655", "16005", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19656", "16005", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":27},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":12}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19657", "16005", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19658", "16005", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19659", "16006", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19660", "16006", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19661", "16006", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":27},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19662", "16006", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19663", "16006", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19665", "16007", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19666", "16007", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19667", "16007", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":27},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"link\":{\"url\":\"file:\\/\\/\\/Users\\/HomeFolder\\/Library\\/Containers\\/com.apple.mail\\/Data\\/Library\\/Mail%20Downloads\\/63475DC3-913D-4444-9056-56CDDD1A05E3\\/Summer%20Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19668", "16007", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19669", "16007", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19670", "16007", "_elementor_css", "a:3:{s:4:\"time\";i:1527813478;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19672", "16008", "_edit_lock", "1528823247:10");
INSERT INTO `wp_postmeta` VALUES("19673", "16008", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("19674", "16009", "_wp_attached_file", "2018/06/Summer-Newsletter.html");
INSERT INTO `wp_postmeta` VALUES("19675", "16008", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19676", "16008", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("19677", "16008", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("19678", "16008", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19693", "4", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19694", "16017", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19695", "16017", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":27},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"link\":{\"url\":\"file:\\/\\/\\/Users\\/HomeFolder\\/Library\\/Containers\\/com.apple.mail\\/Data\\/Library\\/Mail%20Downloads\\/63475DC3-913D-4444-9056-56CDDD1A05E3\\/Summer%20Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19696", "16017", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19697", "16017", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19698", "16017", "_elementor_css", "a:3:{s:4:\"time\";i:1528219347;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19699", "16017", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19701", "16008", "_elementor_css", "a:4:{s:4:\"time\";i:1528219988;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";s:3:\"css\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("19702", "16018", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19703", "16018", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":27},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19704", "16018", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19705", "16018", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19706", "16018", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19707", "16018", "_elementor_css", "a:3:{s:4:\"time\";i:1528219931;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19709", "16019", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19710", "16019", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":27},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19711", "16019", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19712", "16019", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19713", "16019", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19714", "16019", "_elementor_css", "a:3:{s:4:\"time\";i:1528220051;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19716", "16020", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19717", "16020", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19718", "16020", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19719", "16020", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19720", "16020", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19721", "16020", "_elementor_css", "a:3:{s:4:\"time\";i:1528220532;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19722", "16021", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19723", "16021", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":11},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":16},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19724", "16021", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19725", "16021", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19726", "16021", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19728", "16022", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19729", "16022", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":11},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19730", "16022", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19731", "16022", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19732", "16022", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19733", "16022", "_elementor_css", "a:3:{s:4:\"time\";i:1528220632;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19735", "16023", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19736", "16023", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":75},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":11},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"},\"title_spacing_a\":{\"unit\":\"px\",\"size\":7}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19737", "16023", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19738", "16023", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19739", "16023", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19740", "16023", "_elementor_css", "a:3:{s:4:\"time\";i:1528220697;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19748", "16025", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19749", "16025", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Luke\\u2019s Hall.  The general public is welcome to attend.  \\nFor further information, please contact Kathryn at 250-472-2851\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":16},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":16},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":11},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"},\"title_spacing_a\":{\"unit\":\"px\",\"size\":7}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19750", "16025", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19751", "16025", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19752", "16025", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19754", "16026", "_edit_lock", "1528232984:10");
INSERT INTO `wp_postmeta` VALUES("19755", "16026", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19756", "16026", "_wp_trash_meta_time", "1528232985");
INSERT INTO `wp_postmeta` VALUES("19757", "16027", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19758", "16027", "_wp_trash_meta_time", "1528233193");
INSERT INTO `wp_postmeta` VALUES("19759", "326", "_elementor_css", "a:3:{s:4:\"time\";i:1528814903;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19760", "16029", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19761", "16029", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19762", "16029", "_elementor_data", "[{\"id\":\"6bc338a\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"id\":15592,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68000000000000004884981308350688777863979339599609375},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":77}},\"elements\":[{\"id\":\"6b390685\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33fa0662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e5f44f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7f55e2cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bd0c136\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":110}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7b75d50a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support Us\",\"align\":\"left\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bef8e88\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e0a0e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Help change the course of a life today\\n\",\"header_size\":\"h1\",\"align\":\"left\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"46b9b20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"405f6801\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[give_form id=\\\"101\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4c3ea7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c0a01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to\\u00a0<strong>everyone<\\/strong>, even those who cannot afford our services, we make use of our<strong>\\u00a0Samaritan\'s Fund<\\/strong>.\\u00a0If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.<\\/p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund<\\/strong>\\u00a0(for example: one-time, monthly, quarterly, annual etc):<\\/p><ul><li>Option 1\\u00a0: Use our online donation plugin on this page to make a donation directly to us through PayPal.<\\/li><\\/ul><ul><li><strong>Option 2\\u00a0<\\/strong>: please mail a\\u00a0<strong>cheque<\\/strong>\\u00a0(payable to\\u00a0<strong><em>South Island Centre for Counselling and Training)<\\/em><\\/strong>\\u00a0to\\u00a0<strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.\\u00a0<\\/strong>Please\\u00a0include your mailing\\/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.<\\/li><\\/ul><ul><li><strong>Option 3<\\/strong>\\u00a0:\\u00a0Charge a one-time donation to your\\u00a0<strong>credit card<\\/strong>\\u00a0by calling the office at\\u00a0\\u00a0\\u00a0\\u00a0<i><\\/i>\\u00a0<strong>250-472-2851, extension 101<\\/strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a\\u00a0<strong>regular monthly donation<\\/strong>, as well as your mailing\\/return address. We\\u00a0will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which\\u00a0decreases the amount\\u00a0we actually receive.<\\/li><\\/ul><ul><li><strong>Option 4:<\\/strong>\\u00a0<a title=\\\"Link to CanadaHelps.org\\\" href=\\\"https:\\/\\/www.canadahelps.org\\/dn\\/12787\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a>\\u00a0to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which\\u00a0decreases the amount\\u00a0we actually receive.<\\/li><\\/ul><p><strong>Why monthly or quarterly giving?<\\/strong><\\/p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.<\\/p><p><strong>The Fine Print<\\/strong><\\/p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.<\\/p><p><strong>In-Kind Donation \\/Volunteering\\u00a0<\\/strong><\\/p><p>You may help us with an\\u00a0<strong>in-kind donation<\\/strong>\\u00a0when you volunteer your time and\\/or talent<\\/p><ul><li>at South Island Centre\\u00a0<strong>events<\\/strong>,<\\/li><li>at the South Island Centre\\u00a0<strong>office<\\/strong>,<\\/li><li>as a South Island Centre\\u00a0<strong>board member<\\/strong>.<\\/li><\\/ul><p>Please contact us at \\u00a0\\u00a0<i><\\/i>\\u00a0\\u00a0<strong>250-472-2851, extension 101<\\/strong>\\u00a0(front desk) or\\u00a0<a title=\\\"Link to Donate your time admin@localhost\\\" href=\\\"mailto:admin@localhost\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a>\\u00a0to\\u00a0email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!<\\/p><p>Thank you for your generosity!<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dceca29\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19763", "16029", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19764", "16029", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19765", "16029", "_elementor_css", "a:3:{s:4:\"time\";i:1527780444;s:5:\"fonts\";a:1:{i:0;s:9:\"Amatic SC\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19766", "103", "_elementor_css", "a:3:{s:4:\"time\";i:1528815084;s:5:\"fonts\";a:1:{i:0;s:9:\"Amatic SC\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19767", "16030", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19768", "16030", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19769", "16030", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only.<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/> 3821A Cedar Hill Cross Road<br \\/> Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e8b8b94\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6d4d7580\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19770", "16030", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19771", "16030", "_elementor_css", "a:3:{s:4:\"time\";i:1527530380;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19772", "16031", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19773", "16031", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19774", "16031", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only<br \\/><strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong><\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/>3821A Cedar Hill Cross Road<br \\/>Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e8b8b94\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#23a455\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6d4d7580\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19775", "16031", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19776", "16031", "_elementor_css", "a:3:{s:4:\"time\";i:1527530380;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19778", "16032", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19779", "16032", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19780", "16032", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81999999999999995115018691649311222136020660400390625}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only<br \\/><strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong><\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/>3821A Cedar Hill Cross Road<br \\/>Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e8b8b94\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Blog\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-book\",\"background_color\":\"#61ce70\",\"button_background_hover_color\":\"#ff6a00\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6d4d7580\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Facebook\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/?ref=bookmarks#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"background_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-facebook-official\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"button_background_hover_color\":\"#ff6a00\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19781", "16032", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19782", "16032", "_elementor_css", "a:3:{s:4:\"time\";i:1528816713;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19784", "16033", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19785", "16033", "_wp_trash_meta_time", "1528823900");
INSERT INTO `wp_postmeta` VALUES("19786", "16034", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19787", "16034", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19788", "16034", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR HISTORY\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#7a7a7a\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#000000\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.600000000000000088817841970012523233890533447265625}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19789", "16034", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19790", "16034", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19791", "16034", "_elementor_css", "a:3:{s:4:\"time\";i:1527279370;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19792", "101", "_give_form_sales", "0");
INSERT INTO `wp_postmeta` VALUES("19793", "101", "_give_form_earnings", "0");
INSERT INTO `wp_postmeta` VALUES("19794", "15490", "_edit_lock", "1528824431:10");
INSERT INTO `wp_postmeta` VALUES("19796", "16035", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19797", "16035", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19798", "16035", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#000000\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":62},\"autoplay_speed\":7000,\"space_between\":{\"unit\":\"px\",\"size\":0},\"slide_background_color\":\"rgba(255,255,255,0.57)\",\"image_size\":{\"unit\":\"px\",\"size\":0},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"arrows_size\":{\"unit\":\"px\",\"size\":36},\"arrows_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":0},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\",\"_background_hover_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19799", "16035", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19800", "16035", "_elementor_css", "a:3:{s:4:\"time\";i:1527530330;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19802", "16036", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19803", "16036", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19804", "16036", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19805", "16036", "_elementor_data", "[{\"id\":\"6baf86ba\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(255,255,255,0.91)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color_b\":\"#54595f\"},\"elements\":[{\"id\":\"3f972ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"387ed3e5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a95d5a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Counsellors\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"709509d3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"443fd046\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1e4d643c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"67b0b0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"339885ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amber Eves <br><br>MEd, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b04ce11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director of Services, has\\u00a0extensive\\u00a0experience as an educator,\\u00a0 school,\\u00a0 and community mental health counsellor. Amber received her Masters\\u2019 in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assisting\\u00a0women heal from sexual abuse. She employs\\u00a0a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,\\u00a0and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c37d7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db390b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Margaret Anderson <br><br>CHPCA, BCHPCA\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2797a0be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in grief, loss and other life transition issues including senior\\u00a0care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'s\\u00a0counselling practice covers an array of issues dealing with\\u00a0relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experience\\u00a0with advanced care planning and family mediation\\u00a0on behalf of elderly clients including those living with chronic\\u00a0and terminal illness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c00cdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b7a788\",\"elType\":\"widget\",\"settings\":{\"title\":\"Barbara Baillie <br><br>MAPPC, BCATR\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3472674c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife\\/long life facilitator, she is also adept at helping clients with the transition points in\\u00a0the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ff50628\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"5e870f6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"28db20af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laurie Truant<br><br>MA, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40e2f02f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Specializes in working with individuals experiencing anxiety and depression. She\\u00a0provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program\\/sheltered workshops gives her unique insight into present day\\u00a0social issues.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2dd5f7e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5217a3b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennifer Cole <br><br>MA, CCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e9e8214\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottman\\u2019s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2df3cfcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7973ebd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Audrey Gibson <br><br>BSc, OT, MDiv, SW\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8a97c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds\\u00a0a BSc\\u00a0in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, Audrey\\u00a0has worked mainly with children living with\\u00a0physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"92db0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"2844d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2b82d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Joy Gillett <br><br>MPH, RCC\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec8d03a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assisting\\u00a0individuals toward mental, emotional, relational and spiritual wholeness.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da026bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d06bc9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Moira Madamombe <br><br>MACP\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38dfdc1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Holds a Masters in counselling psychology from Yorkville University. Moira is a multicultural counselor who works with adults, adolescents, and youth with various issues including anxiety, depression, addictions, chronic pain, grief, and loss.\\u00a0\\u00a0She applies various treatment models such as acceptance commitment therapy for chronic pain, cognitive behavioural therapy (CBT), dialectical behaviour therapy (DBT), family systems theory and multicultural counselling.\\u00a0\\u00a0She has co-facilitated an anxiety group for youth and a mindfulness-based anxiety group for adolescents. Moira is a member of the Canadian Counselling and Psychotherapy Association.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"55bfa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3df3328\",\"elType\":\"widget\",\"settings\":{\"title\":\"Peter Simmons <br><br>BA, MDiv\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#ff6a00\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5febe1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Received his BA\\u00a0in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awarded\\u00a0a Master of Divinity degree from the Toronto School of Theology.\\u00a0\\u00a0His education and pastoral care work have given him foresight into the intrinsic value of individuality.\\u00a0Peter provides counselling to individuals experiencing a variety of life challenges such as\\u00a0stress, anxiety, self-esteem, addiction, depression, and life transitions.<\\/p>\",\"text_color\":\"#000000\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ea84c1f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19806", "16036", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19807", "16036", "_elementor_css", "a:3:{s:4:\"time\";i:1527530173;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19808", "16037", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19809", "16037", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre for Counselling and Training is holding its Annual Fundraising Gala on October 27th, 2018.  Tickets go on sale this summer.\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":20},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":20},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":11},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"},\"title_spacing_a\":{\"unit\":\"px\",\"size\":7}},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19810", "16037", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19811", "16037", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19812", "16037", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19813", "16037", "_elementor_css", "a:3:{s:4:\"time\";i:1528223225;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19814", "16038", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19815", "16038", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre for Counselling and Training is holding its Annual Fundraising Gala on October 27th, 2018.  Tickets go on sale this summer.\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":20},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":20},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":11},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter.html\",\"is_external\":\"on\",\"nofollow\":\"\"},\"title_spacing_a\":{\"unit\":\"px\",\"size\":7},\"button_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19816", "16038", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19817", "16038", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19818", "16038", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19820", "16039", "_wp_attached_file", "2018/06/Summer-Newsletter-1.html");
INSERT INTO `wp_postmeta` VALUES("19822", "16041", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19823", "16041", "_elementor_data", "[{\"id\":\"8a0de87\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#0c8c01\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"2b507b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"749c1fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to<br>South Island Centre <br>for <br>Counselling and Training\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\",\"_background_background\":\"classic\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2},\"typography_font_size\":{\"unit\":\"px\",\"size\":80},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1.7},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce29301\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e0afc4\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"width\":{\"unit\":\"px\",\"size\":100},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#ffffff\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"05b0f7c\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":100},\"space_mobile\":{\"unit\":\"px\",\"size\":10},\"space\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"548c1de\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-newspaper-o\",\"icon_shape\":\"square\",\"title_text_a\":\"Mark Your Calendars !\",\"description_text_a\":\"The South Island Centre for Counselling and Training is holding its Annual Fundraising Gala on October 27th, 2018.  Tickets go on sale this summer.\",\"background_a_background\":\"classic\",\"background_a_color\":\"rgba(0,0,0,0.26)\",\"title_text_b\":\"Check out our Newsletter\",\"description_text_b\":\"Want to know more about our recent news, head on over to our most recent news letter !\",\"button_text\":\"Read More\",\"background_b_background\":\"classic\",\"background_b_color\":\"rgba(0,0,0,0.26)\",\"flip_effect\":\"push\",\"vertical_position_a\":\"top\",\"icon_spacing\":{\"unit\":\"px\",\"size\":0},\"title_color_a\":\"#ffffff\",\"title_typography_a_typography\":\"custom\",\"title_typography_a_font_family\":\"Amatic SC\",\"title_typography_a_font_size\":{\"unit\":\"px\",\"size\":46},\"title_spacing_b\":{\"unit\":\"px\",\"size\":0},\"title_color_b\":\"#ffffff\",\"title_typography_b_typography\":\"custom\",\"title_typography_b_font_family\":\"Amatic SC\",\"title_typography_b_font_size\":{\"unit\":\"px\",\"size\":51},\"button_size\":\"lg\",\"button_background_color\":\"#61ce70\",\"description_typography_a_typography\":\"custom\",\"description_typography_a_font_size\":{\"unit\":\"px\",\"size\":20},\"description_typography_b_typography\":\"custom\",\"description_typography_b_font_size\":{\"unit\":\"px\",\"size\":20},\"button_hover_background_color\":\"#ff6a00\",\"icon_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_a_font_size_tablet\":{\"unit\":\"px\",\"size\":29},\"title_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":24},\"description_typography_a_font_size_mobile\":{\"unit\":\"px\",\"size\":11},\"title_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":33},\"description_typography_b_font_size_mobile\":{\"unit\":\"px\",\"size\":12},\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/06\\/Summer-Newsletter-1.html\",\"is_external\":\"on\",\"nofollow\":\"\"},\"title_spacing_a\":{\"unit\":\"px\",\"size\":7},\"button_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"flip-box\"},{\"id\":\"3aa6e78\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d13fa7d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#23a455\"},\"elements\":[{\"id\":\"45e011a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f99aa4\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"WHO WE ARE\",\"description\":\"\\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\\n\",\"button_text\":\"Read More\",\"background_color\":\"#bbbbbb\",\"_id\":\"07f2e5d\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3436.jpg\",\"id\":15595},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.62)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/who-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"yes\",\"horizontal_position\":\"\",\"vertical_position\":\"middle\",\"text_align\":\"center\",\"content_color\":\"\"},{\"heading\":\"HOW WE CAN HELP\",\"description\":\"Our experienced counsellors provide professional, affordable mental health counselling services to all individuals.\",\"button_text\":\"Read More\",\"background_color\":\"#4054b2\",\"_id\":\"2c88811\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling-2\\/general-information\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"#ffffff\"},{\"heading\":\"TRAINING OFFERED\",\"description\":\"At South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"cf78722\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/training\\/courses\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"},{\"heading\":\"IMPACT STORIES\",\"description\":\"Read more about a client\\u2019s story on how South Island Centre helped him.\",\"button_text\":\"Read More\",\"background_color\":\"#1abc9c\",\"_id\":\"20a7f6e\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_1261.jpg\",\"id\":15596},\"background_size\":\"cover\",\"background_ken_burns\":\"yes\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/what-we-do\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"button\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\"}],\"slides_height\":{\"unit\":\"px\",\"size\":900},\"content_max_width\":{\"unit\":\"%\",\"size\":70},\"button_size\":\"lg\",\"button_color\":\"#000000\",\"button_border_width\":{\"unit\":\"px\",\"size\":1},\"button_border_radius\":{\"unit\":\"px\",\"size\":40},\"button_background_color\":\"#61ce70\",\"button_hover_background_color\":\"#ff6a00\",\"pause_on_hover\":\"\",\"transition_speed\":1000,\"autoplay_speed\":7000,\"button_hover_text_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"heading_typography_typography\":\"custom\",\"heading_typography_font_family\":\"Amatic SC\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":85},\"heading_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":29},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"#ffffff\",\"arrows_size\":{\"unit\":\"px\",\"size\":60},\"arrows_color\":\"#ffffff\",\"dots_size\":{\"unit\":\"px\",\"size\":15},\"dots_color\":\"#61ce70\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"936f37f\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#23a455\",\"background_overlay_color_b\":\"#ff6a00\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":45}},\"elements\":[{\"id\":\"aeb8a91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d57e63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0720bcd\",\"elType\":\"widget\",\"settings\":{\"title\":\"DONATE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f21afb8\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ffffff\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2223246\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_tablet\":{\"unit\":\"px\",\"size\":20},\"space_mobile\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a6e252\",\"elType\":\"widget\",\"settings\":{\"title\":\"support us <br>&amp; <br>change the course of a life today!\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Amatic SC\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65fc038\",\"elType\":\"widget\",\"settings\":{\"text\":\"donate\",\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"60\",\"bottom\":\"25\",\"left\":\"60\",\"isLinked\":false},\"icon\":\"fa fa-paypal\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":15},\"align_mobile\":\"center\",\"link\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/donate-2\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_background_hover_color\":\"#ff6a00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cdd5405\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":90},\"space_mobile\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9a8d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"rgba(0,0,0,0.81)\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0087.jpg\",\"id\":15594},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"c69aaa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ef0a67\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":65},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2689f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"PARTNERS\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae4c870\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e73258\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fd009d9\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":15557,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/St-Luke-Cedar-Hill-Logo1-300x300.jpg\"},{\"id\":15556,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Victoria300x300.jpg\"},{\"id\":15554,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Rotary-International.jpg\"},{\"id\":15555,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/UnitedWayFull375x165-300x300.jpg\"},{\"id\":15553,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/CoastCapital.jpg\"},{\"id\":15552,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/adore-logo.png\"},{\"id\":15548,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/BC.jpg\"},{\"id\":15550,\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/Logo-Cath-Fnd-Vanc-Isld-300x300.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"arrows\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"rgba(122,122,122,0.41)\",\"_background_color\":\"#000000\",\"slides_to_show_tablet\":\"3\",\"arrows_position\":\"outside\",\"slides_to_show_mobile\":\"2\",\"autoplay_speed\":2000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"ce19ac2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71b7642\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2dbe282\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19824", "16041", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19825", "16041", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19826", "16041", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19827", "16041", "_elementor_css", "a:3:{s:4:\"time\";i:1528898888;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19828", "4", "_elementor_css", "a:3:{s:4:\"time\";i:1528900534;s:5:\"fonts\";a:2:{i:0;s:9:\"Amatic SC\";i:5;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19829", "16042", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("19830", "16042", "_wp_trash_meta_time", "1528901861");
INSERT INTO `wp_postmeta` VALUES("19836", "848", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19837", "16044", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19838", "16044", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19839", "16044", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong>\\u00a0(250) 472-2851<\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">: 9:00am - 2:00 pm Mondays through Thursdays<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0Counselling is by appointment only<br \\/><strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong><\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/>3821A Cedar Hill Cross Road<br \\/>Victoria, BC V8P 2M6<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24c85e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f782833\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2e352ab\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-facebook-square\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a60ac8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Like Us On Facebook\",\"header_size\":\"h6\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1546b15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ca14d6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-twitter-square\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/South_Island_C\",\"is_external\":\"\",\"nofollow\":\"\"},\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10655be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us On Twitter\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5bd43c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"610af85\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"77624f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check Out Our Blog\",\"header_size\":\"h6\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19840", "16044", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19841", "16044", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19842", "16045", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19843", "16045", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19844", "16045", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24c85e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f782833\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2e352ab\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-facebook-square\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a60ac8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Us On Facebook\",\"header_size\":\"h6\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1546b15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ca14d6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-twitter-square\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/South_Island_C\",\"is_external\":\"\",\"nofollow\":\"\"},\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10655be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us On Twitter\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5bd43c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"610af85\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"77624f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check Out Our Blog\",\"header_size\":\"h6\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong><span style=\\\"font-size: 18px;\\\">\\u00a0(250) 472-2851<\\/span><\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\"><a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">:\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 2:00pm Monday, Tuesday &amp; Thursday<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 4:00pm W<\\/span>ednesday<span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0<\\/p><p>Counselling is by appointment only<br \\/><strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong><\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/>3821A Cedar Hill Cross Road<br \\/>Victoria, BC V8P 2M6<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19845", "16045", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19846", "16045", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19847", "16046", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19848", "16046", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19849", "16046", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong><span style=\\\"font-size: 18px;\\\">\\u00a0(250) 472-2851<\\/span><\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\"><a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">:\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 2:00pm Monday, Tuesday &amp; Thursday<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 4:00pm W<\\/span>ednesday<span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0<\\/p><p>Counselling is by appointment only<br \\/><strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong><\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/>3821A Cedar Hill Cross Road<br \\/>Victoria, BC V8P 2M6<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14eb896\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24c85e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f782833\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2e352ab\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-facebook-square\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a60ac8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Us On Facebook\",\"header_size\":\"h6\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1546b15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ca14d6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-twitter-square\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/South_Island_C\",\"is_external\":\"\",\"nofollow\":\"\"},\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10655be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us On Twitter\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5bd43c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"610af85\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"77624f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check Out Our Blog\",\"header_size\":\"h6\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19850", "16046", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19851", "16046", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19853", "16047", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19854", "16047", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19855", "16047", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82}},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong><span style=\\\"font-size: 18px;\\\">\\u00a0(250) 472-2851<\\/span><\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\"><a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">:\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 2:00pm Monday, Tuesday &amp; Thursday<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 4:00pm W<\\/span>ednesday<span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0<\\/p><p>Counselling is by appointment only\\u00a0\\u00a0<br \\/><strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong><\\/p><p>Weekend and Evening Times may be available upon request<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/>3821A Cedar Hill Cross Road<br \\/>Victoria, BC V8P 2M6<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14eb896\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24c85e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f782833\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2e352ab\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-facebook-square\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a60ac8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Us On Facebook\",\"header_size\":\"h6\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1546b15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ca14d6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-twitter-square\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/South_Island_C\",\"is_external\":\"\",\"nofollow\":\"\"},\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10655be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us On Twitter\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5bd43c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"610af85\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"77624f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check Out Our Blog\",\"header_size\":\"h6\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19856", "16047", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19857", "16047", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19858", "16047", "_elementor_css", "a:3:{s:4:\"time\";i:1528903315;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19859", "16048", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19860", "16048", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19861", "16048", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#141823\",\"_background_background\":\"classic\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":62},\"autoplay_speed\":7000,\"space_between\":{\"unit\":\"px\",\"size\":0},\"slide_background_color\":\"rgba(255,255,255,0.57)\",\"image_size\":{\"unit\":\"px\",\"size\":0},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"arrows_size\":{\"unit\":\"px\",\"size\":36},\"arrows_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":0},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\",\"_background_hover_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19862", "16048", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19863", "16048", "_elementor_css", "a:3:{s:4:\"time\";i:1528825674;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19864", "16049", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19865", "16049", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19866", "16049", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#ee0979\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#333333\",\"_background_background\":\"classic\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":62},\"autoplay_speed\":7000,\"space_between\":{\"unit\":\"px\",\"size\":0},\"slide_background_color\":\"rgba(255,255,255,0.57)\",\"image_size\":{\"unit\":\"px\",\"size\":0},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"arrows_size\":{\"unit\":\"px\",\"size\":36},\"arrows_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":0},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\",\"_background_hover_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19867", "16049", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19868", "16050", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19869", "16050", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19870", "16050", "_elementor_data", "[{\"id\":\"16ed0f4e\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#fbf7f9\",\"background_overlay_color_b\":\"rgba(251,247,249,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.79},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50}},\"elements\":[{\"id\":\"24e4369b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d9535d6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70d08910\",\"elType\":\"widget\",\"settings\":{\"title\":\"IMPACT STORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86125b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"631dcca8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20},\"space_tablet\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466c8dcc\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"6520dcf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e0bb53a\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-quote-right\",\"primary_color\":\"#ff6a00\",\"size\":{\"unit\":\"px\",\"size\":70},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c91a397\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"font-size: 1.86667rem; font-style: normal;\\\"><span style=\\\"font-size: 28px; font-weight: bold;\\\">One client\\u2019s story about how SICCT helped him<\\/span><\\/h3>\",\"align\":\"center\",\"text_color\":\"#333333\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"752aceb2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":19},\"space_tablet\":{\"unit\":\"px\",\"size\":50}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3ab3da45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>When your life feels as though it\\u2019s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe it\\u2019s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \\u2018Take the dog for a walk\\u2019 or \\u2018Go lose yourself in nature\\u2019 didn\\u2019t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didn\\u2019t want to feel scared or alone anymore. I didn\\u2019t want to feel anything. But then something happened. I saw a light.<\\/h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.<\\/h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didn\\u2019t feel comfortable talking to a man. It was then that she said, \\u2018well i guess you\\u2019re stuck me with me\\u2019, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didn\\u2019t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didn\\u2019t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.<\\/h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasn\\u2019t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I don\\u2019t blame myself for not letting the demons in.<\\/h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br \\/>The following months would be filled with reading and journal writing. \\u201cI am\\u201d and \\u201cI deserve\\u201d exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned \\u201cvoid\\u201d. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.<\\/h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\\\"https:\\/\\/www.southislandcentre.ca\\/counselling-2\\/client-testimonial\\/tyrone\\/\\\" rel=\\\"attachment wp-att-15247\\\">Tyrone<\\/a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me \\u2013 the child I had abandoned for a life of partying and a \\u201clive fast die young\\u201d mentality. I needed to give that inner child his freedom and allow him to \\u201cgrow up\\u201d into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind \\u2013 a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed \\u2013 what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.<\\/h5><h5>One day, months later, I woke up. I hadn\\u2019t had a panic attack in months. I felt amazingly good about myself and didn\\u2019t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but that\\u2019s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.<\\/h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience I\\u2019ve decided to go back to school and study to be a counsellor \\u2013 I\\u2019m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.<\\/h5>\",\"text_color\":\"#333333\",\"_background_background\":\"classic\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233d058d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7e14da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6ba1bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"911759b\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"content\":\"\\n\\n\\\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\\\"\",\"name\":\"A participant in the CareerChoice Program had this to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"61df1f7\"},{\"content\":\"\\n\\\"Fantastic and deeply thought-provoking! Thank you so much Bill!\\\"\\n\\n\\\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\\\"\",\"name\":\"What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"301f65b\"},{\"content\":\"\\n\\\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\\\"\\n\\n\\\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\\\"\",\"name\":\"What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\",\"title\":\"\",\"image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"87d1978\"}],\"layout\":\"image_above\",\"width\":{\"unit\":\"%\",\"size\":62},\"autoplay_speed\":7000,\"space_between\":{\"unit\":\"px\",\"size\":0},\"slide_background_color\":\"rgba(255,255,255,0.57)\",\"image_size\":{\"unit\":\"px\",\"size\":0},\"image_gap\":{\"unit\":\"px\",\"size\":0},\"arrows_size\":{\"unit\":\"px\",\"size\":36},\"arrows_color\":\"#000000\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":0},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":0},\"_background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"_background_size\":\"cover\",\"_background_hover_background\":\"classic\"},\"elements\":[],\"widgetType\":\"testimonial-carousel\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19871", "16050", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19872", "16051", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19873", "16051", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19874", "16051", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f426c80\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR HISTORY\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#333333\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#333333\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19875", "16051", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19876", "16051", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19877", "16051", "_elementor_css", "a:3:{s:4:\"time\";i:1528824912;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19878", "60", "_elementor_css", "a:3:{s:4:\"time\";i:1528903818;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19879", "16052", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19880", "16052", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19881", "16052", "_elementor_data", "[{\"id\":\"7147a918\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6263-e1525817272581.jpg\",\"id\":15592},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"3bd5a046\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bca883d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"90214ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Board Of Directors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"958a6f2\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"71b73d8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u00a0<\\/strong><\\/p><p><strong>Jim Gibson (Chair)<\\/strong><\\/p><p><strong style=\\\"font-size: 15px;\\\">Barbara Underhill (Vice-Chair, Treasurer) <\\/strong><span style=\\\"font-size: 15px;\\\">Barbara has supported the centre since 2007 in a variety of roles. She has an\\u00a0MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.<\\/span><\\/p><p><strong>Sally Tuckey (Secretary) <\\/strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. \\u00a0Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.\\u00a0Her interests are many \\u2013 but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.<\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Sybil Bagshaw <\\/strong><span class=\\\"m_1365218334819752912s1\\\">Sybil\\u00a0worked as an RN until her\\u00a0retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \\\"Mother\'s of Preschoolers\\\" at St Pauls Anglican Church in Fort Garry. \\u00a0Sybil\\u00a0was one of the founding members the Fort Garry Family Life program and was their treasurer for several\\u00a0years.<span class=\\\"m_1365218334819752912Apple-converted-space\\\">\\u00a0<\\/span>\\u00a0She also\\u00a0 was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for the\\u00a0community club and\\u00a0for the Kidney and Cancer foundations both in Winnipeg\\u00a0and in Victoria.\\u00a0<\\/span><\\/p><p class=\\\"m_1365218334819752912p3\\\" style=\\\"color: #222222;\\\"><strong>Greg Beattie <\\/strong><span style=\\\"color: #333333;\\\">Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nation\\u2019s mental health services. He has 20 years\\u2019 experience as a clinical supervisor, 15 years\\u2019 experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. \\u00a0<\\/span><span style=\\\"color: #333333;\\\">Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.<\\/span><\\/p><p><strong>Helen Morrison <\\/strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.<\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19882", "16052", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19883", "16052", "_elementor_css", "a:3:{s:4:\"time\";i:1527323202;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19884", "16053", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19885", "16053", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19886", "16053", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"231d27e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Our experienced counsellors\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d89831e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea03440\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<\\/b><\\/p><p>Talk to your counsellor about your payment plans and options.<\\/p><p>To\\u00a0Make\\u00a0an Appointment<\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a style=\\\"color: blue;\\\" title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here <\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e21a84\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19887", "16053", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19888", "16053", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19889", "16053", "_elementor_css", "a:3:{s:4:\"time\";i:1527201337;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19890", "16054", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19891", "16054", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19892", "16054", "_elementor_data", "[{\"id\":\"2b472f1a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"1d0dab80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"860eee7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a6a0cd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Income-Based Counselling Services\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d756323\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3d382ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>At South Island Centre we know how\\u00a0important it is for\\u00a0everyone\\u00a0to have access to professional, affordable mental health counselling services when needed.\\u00a0 As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.<\\/h5>\",\"typography_typography\":\"custom\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"759d2366\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><strong>Costs of Counselling<\\/strong><\\/p><p>Counselling services at South Island Centre are calculated on an income-based fee of\\u00a00.1% of your gross income up to a maximum of $120.00 per session. Our\\u00a0minimum fee is $10.00 per session.<strong>\\u00a0<\\/strong>Talk to your counsellor about\\u00a0your payment options and fees.<\\/p><p>Please note cancellation fees\\u00a0are charged for missed appointments when less than 24 hours notice is given.<\\/p><p>Payment can be made with cash, debit or credit card.<\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28766ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2da0c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Insurance Coverage<\\/strong><\\/p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br \\/>It is your responsibility to submit receipts to your provider for reimbursement.<br \\/>If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br \\/>We not bill external parties for services rendered.<\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d3f3f0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19893", "16054", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19894", "16054", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19895", "16054", "_elementor_css", "a:3:{s:4:\"time\";i:1527530267;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19896", "16055", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19897", "16055", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19898", "16055", "_elementor_data", "[{\"id\":\"5e39350f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"55637730\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"48663a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"be2b9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f847636\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"58398417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1.4rem; font-weight: bold;\\\">\\u00a0Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.<\\/span><\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7a43ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/div><div>\\u00a0<\\/div><div>We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/div>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13c5ab9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0cd26ca\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4c8ea80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>For more information and\\/or to book a private consult, please contact us directly at (250) 472-2851, or fill out a\\u00a0<a style=\\\"color: blue;\\\" title=\\\"Intake Survey\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Counselling Inquiry Form<\\/a>.<\\/b><\\/p><p><b>\\u00a0<\\/b><\\/p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\\\"color: blue;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2016\\/05\\/Child-Youth-History-form.pdf\\\">Child-Youth History form<\\/a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.<\\/b><\\/p>\",\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80576e9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19899", "16055", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19900", "16055", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19901", "16055", "_elementor_css", "a:3:{s:4:\"time\";i:1527530301;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19902", "16056", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19903", "16056", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19904", "16056", "_elementor_data", "[{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\",\"color_link\":\"#4054b2\",\"color_link_hover\":\"#6ec1e4\"},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"08a58f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Currently Offered\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0cada37\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u>Positive Psychology Group<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\"><u>Young Adults Support group for Anxiety<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><u><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/u><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\"><u>Making It Work for Teens!<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"><u> Living with Loss Part 1, an Introduction to Grief and Loss <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19905", "16056", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19906", "16056", "_elementor_css", "a:3:{s:4:\"time\";i:1527530584;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19907", "16057", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19908", "16057", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19909", "16057", "_elementor_data", "[{\"id\":\"3fb17e97\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"55f931ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1c4502\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3020cd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Registration & Payment Options\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c9c077\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b637122\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Register\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c3a6ce\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42625267\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul>\\n \\t<li><span style=\\\"color: #000000;\\\"><a style=\\\"color: blue;\\\" title=\\\"Register for Training\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/register-course-training-program\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" >Click here<\\/a><span style=\\\"font-size: 14px;\\\">\\u00a0to fill out the registration form. Registrations will be confirmed via email.\\u00a0<\\/span><\\/span><\\/li>\\n \\t<li><span style=\\\"color: #000000;\\\">\\u00a0Call \\u00a0<strong>250-472-2851<\\/strong> and leave a voice mail with your contact information<\\/span><\\/li>\\n<\\/ul>\\n<span style=\\\"color: #000000;\\\">To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.<\\/span>\\n\\n<span style=\\\"color: #000000;\\\">Registration is on a first-come, first-serve basis.<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60620cd\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1c8a9ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Payment Options\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e1a72\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e6b3e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Cash<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Credit<\\/span><\\/li><\\/ul><div><b><span style=\\\"font-size: 15px; font-style: normal;\\\">If paying by credit card, please call the office at\\u00a0<\\/span><span style=\\\"font-size: 15px; font-style: normal;\\\">\\u00a0250-472-2851 for processing.<\\/span><\\/b><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4cc11d7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d2fa930\",\"elType\":\"widget\",\"settings\":{\"title\":\"Refunds\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd9f373\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e3abdd3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">In the case of a cancellation, a full refund will be issued.<\\/span><\\/li><li style=\\\"font-size: 15px;\\\"><span style=\\\"font-size: 15px;\\\">Where cash payment has been made, refunds will be reimbursed by cheque.<\\/span><\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b16f00b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19910", "16057", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19911", "16057", "_elementor_css", "a:3:{s:4:\"time\";i:1527530682;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19912", "303", "_elementor_css", "a:3:{s:4:\"time\";i:1528904447;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19914", "16058", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19915", "16058", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19916", "16058", "_elementor_data", "[{\"id\":\"280b63db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_6680.jpg\",\"id\":15600},\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82},\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"4b0a0649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d9be4c3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c779d07\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Reach Us\\n\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16aa6819\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"%\",\"size\":5},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18c16415\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"640f3739\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Phone:<\\/strong><span style=\\\"font-size: 18px;\\\">\\u00a0(250) 472-2851<\\/span><\\/p><p><strong style=\\\"font-size: 18px;\\\">Email:\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\"><a href=\\\"mailto:info@localhost\\\">info@localhost<\\/a><strong>\\u00a0<\\/strong><\\/strong><\\/p><p><strong>\\u00a0<\\/strong><strong style=\\\"font-size: 18px;\\\">Reception Hours<\\/strong><span style=\\\"font-size: 18px;\\\">:\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 2:00pm Monday, Tuesday &amp; Thursday<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">9:00am - 4:00pm W<\\/span>ednesday<span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><\\/p><p><strong>Counselling:<\\/strong>\\u00a0<\\/p><p>Counselling is by appointment only\\u00a0\\u00a0<br \\/><strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong><\\/p><p>Weekend and Evening Times may be available upon request<\\/p><p><strong>Our Mailing Address:<\\/strong><br \\/>3821A Cedar Hill Cross Road<br \\/>Victoria, BC V8P 2M6<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14eb896\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"24c85e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f782833\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2e352ab\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-facebook-square\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/southislandcentre\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a60ac8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Us On Facebook\",\"header_size\":\"h6\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1546b15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ca14d6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-twitter-square\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/South_Island_C\",\"is_external\":\"\",\"nofollow\":\"\"},\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"10655be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us On Twitter\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5bd43c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"610af85\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"link\":{\"url\":\"http:\\/\\/southislandcentre.blogspot.ca\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"primary_color\":\"#4054b2\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"77624f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check Out Our Blog\",\"header_size\":\"h6\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6dbeded6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4e3a02a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19917", "16058", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19918", "16058", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19919", "16058", "_elementor_css", "a:3:{s:4:\"time\";i:1528904453;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19920", "848", "_elementor_css", "a:3:{s:4:\"time\";i:1528904503;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19921", "16059", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19922", "16059", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19923", "16059", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"structure\":\"20\",\"heading_color\":\"#333333\"},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"14bfe31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea6b2d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a><\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19924", "16059", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19925", "16059", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19926", "16059", "_elementor_css", "a:3:{s:4:\"time\";i:1527531048;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19927", "16060", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19928", "16060", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19929", "16060", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"structure\":\"20\",\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"14bfe31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea6b2d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a><\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19930", "16060", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19931", "16060", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19932", "16061", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19933", "16061", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19934", "16061", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"structure\":\"20\",\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"b4b1e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b6d7d9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"14bfe31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea6b2d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a><\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19935", "16061", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19936", "16061", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19938", "16062", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19939", "16062", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19940", "16062", "_elementor_data", "[{\"id\":\"b262cee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"14bfe31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6e3fc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mental Health Resources\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"08951c0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"structure\":\"20\",\"heading_color\":\"#333333\",\"color_text\":\"#333333\"},\"elements\":[{\"id\":\"61153b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"243e316\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3a95a1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"863d778\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Addictions\",\"tab_content\":\"<p><a title=\\\"VIHA resources\\\" href=\\\"http:\\/\\/www.viha.ca\\/mhas\\/resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.viha.ca\\/hmas\\/resources<\\/a><\\/p><p>\\u00a0<a href=\\\"http:\\/\\/www.swiftriver.com\\/anger-management-addiction\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.helpguide.org\\/articles\\/addictions\\/drug-abuse-and-addiction.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction<\\/a><\\/p><p>\\u00a0<a title=\\\"Victoria Drug Rehab for Outpatients\\\" href=\\\"http:\\/\\/www.drugrehab.ca\\/victoria-drug-rehab-outpatient.html\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Outpatient Drug Rehab\\u00a0<\\/a><\\/p><p>\\u00a0<a title=\\\"Bellwood Addiction Treatment Centre\\\" href=\\\"http:\\/\\/http\\/\\/www.bellwood.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.bellwood.ca<\\/a><\\/p><p>\\u00a0<a title=\\\"Drugrehab.com\\\" href=\\\"https:\\/\\/www.drugrehab.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Drugrehab.com<\\/a><\\/p><p>\\u00a0<a href=\\\"https:\\/\\/www.bestmattressreviews.com\\/addiction-and-sleep\\/\\\">Drug Addiction and Sleep<\\/a><\\/p>\",\"_id\":\"cc5e45f\"},{\"tab_title\":\"Anxiety \",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anxiety BC\\\" href=\\\"http:\\/\\/https\\/\\/www.anxietybc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.anxietybc.com<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Worry Wise Kids\\\" href=\\\"http:\\/\\/www.worrywisekids.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.worrywisekids.org<\\/a>\\u00a0(Children and Youth)<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Mental Health, Children and Youth\\\" href=\\\"http:\\/\\/keltymentalhealth.ca\\/mental-health\\/disorders\\/anxiety-children-and-youth\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">keltymentalhealth.ca<\\/a>\\u00a0(Children and Youth)<\\/p>\",\"_id\":\"258347e\"},{\"tab_title\":\"Eating Disorders\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Kelty Eating Disorders\\\" href=\\\"https:\\/\\/keltyeatingdisorders.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Kelty Eating Disorders<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"VIHA Eating Disorders\\\" href=\\\"http:\\/\\/www.viha.ca\\/health_info\\/eating_disorders.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Health Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Vancouver Looking Glass Foundation\\\" href=\\\"http:\\/\\/www.lookingglassbc.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Vancouver Looking Glass Foundation<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Children\'s Hospital Eating Disorders\\\" href=\\\"http:\\/\\/www.bcchildrens.ca\\/our-services\\/mental-health-services\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Children\\u2019s Hospital Eating Disorders<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help Eating disorders\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/eating-disorders\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help Eating Disorders<\\/a><\\/p>\",\"_id\":\"6f5e0e0\"},{\"tab_title\":\"Senior Support\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Seniors Advocate BC\\\" href=\\\"http:\\/\\/www.seniorsadvocatebc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Senior\\u2019s Advocate BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Caring for the Caregiver\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/family-social-supports\\/seniors\\/caring-for-seniors\\/caring-for-the-caregiver\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Caring for the Caregiver<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Silverthreads\\\" href=\\\"http:\\/\\/silverthreads.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Silverthreads<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria BC Services for Seniors\\\" href=\\\"http:\\/\\/www.greatervictoria.com\\/community-services\\/services-for-seniors\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Services for Seniors\\u00a0<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.shieldmysenior.com\\/elderly-mental-health\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Elderly Mental Health: How to Help Your Senior<\\/a><\\/p>\",\"_id\":\"c7fb7a4\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Abuse and Trauma\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Men\'s Trauma Centre\\\" href=\\\"http:\\/\\/www.menstrauma.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Men\\u2019s Trauma Centre<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Greater Victoria Youth Core Portal\\\" href=\\\"http:\\/\\/youthcore.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Greater Victoria Youth Core<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Hulitan Family and Community Service Society\\\" href=\\\"http:\\/\\/www.hulitan.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hulitan Family and Community Service Society<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Here to Help BC Fact Sheet PTSD\\\" href=\\\"http:\\/\\/www.heretohelp.bc.ca\\/factsheet\\/post-traumatic-stress-disorder\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Here to Help BC<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Resource Centre for Victims of Crime\\\" href=\\\"https:\\/\\/crcvc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Resource Centre for Victims of Crime<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"PTSD Association of Canada\\\" href=\\\"http:\\/\\/www.ptsdassociation.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">PTSD Association of Canada<\\/a><\\/p>\",\"_id\":\"a5f9b13\"},{\"tab_title\":\"Spiritual Guidance\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"What Christians want to know\\\" href=\\\"http:\\/\\/www.whatchristianswanttoknow.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">What Christians want to know<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"All about God\\\" href=\\\"http:\\/\\/www.allaboutgod.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">All about God<\\/a><\\/p>\",\"_id\":\"f1ce2fb\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false},{\"id\":\"b0e8622\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"02a64dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfd4e11\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0119e67\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Depression\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Heads Up Guys\\\" href=\\\"http:\\/\\/headsupguys.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">headsupguys.org<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.getselfhelp.co.uk\\/docs\\/healthy%20eating%20depression.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Health Eating and Depression: How Diet May Help Protect Your Mental Health<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Depression Hurts\\\" href=\\\"http:\\/\\/depressionhurts.ca\\/en\\/default.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">depressionhurts.ca<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Dealing with Depression (workbook for Teens)\\\" href=\\\"http:\\/\\/www.comh.ca\\/publications\\/resources\\/dwd\\/dwd_printversion.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Dealing with Depression<\\/a>\\u00a0(printable workbook for Teens)<\\/p>\",\"_id\":\"abded77\"},{\"tab_title\":\"Divorce and Separation\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Family Services of Greater Victoria\\\" href=\\\"http:\\/\\/www.fsgv.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Family Services of Greater Victoria<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Anti-Poverty Community\\\" href=\\\"http:\\/\\/www.povnet.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Anti-Poverty Community<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Emental Health\\\" href=\\\"http:\\/\\/www.ementalhealth.ca\\/british-columbia\\/separation-and-divorice\\/index.php?m=heading+ID=42\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">EMental Health<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"BC Family Justice\\\" href=\\\"http:\\/\\/www2.gov.bc.ca\\/gov\\/content\\/life-events\\/divorce\\/family-justice\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">BC Family Justice<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"1Up Single Parent Resources Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">1Up Single Parent Resources Victoria<\\/a><\\/p>\",\"_id\":\"e8ef6cf\"},{\"tab_title\":\"Grief and Loss\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Remembering for Good\\\" href=\\\"http:\\/\\/www.rememberingforgood.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Remembering for Good<\\/a>\\u00a0<\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Grief\\\" href=\\\"http:\\/\\/grief.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">www.grief.com<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" href=\\\"https:\\/\\/www.cancer.org\\/content\\/dam\\/CRC\\/PDF\\/Public\\/6036.00.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Coping With the Loss of a Loved One<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Seven Ponds\\\" href=\\\"http:\\/\\/www.sevenponds.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Seven Ponds (Embracing the End-of-Life Experience)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Victoria Pregnancy Centre\\\" href=\\\"http:\\/\\/www.victoriapregnancy.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Victoria Pregnancy Centre (A Place of Hope)<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Hospital and Palliative Care Association\\\" href=\\\"http:\\/\\/bchpca.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Hospice and Palliative Care Association<\\/a><\\/p>\",\"_id\":\"e5503ad\"},{\"tab_title\":\"Marriage and Family\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Agency for Marriage and Family Therapy\\\" href=\\\"http:\\/\\/camft.ca\\/relationship-resources\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Agency for Marriage and Family\\u00a0Therapy<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Resource Centre for Healthy Marriage and Families\\\" href=\\\"https:\\/\\/www.healthymarriageandfamilies.org\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Resource Centre for Healthy Marriage and Families<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"National Healthy Marriage Resource Centre\\\" href=\\\"http:\\/\\/www.healthymarriageinfo.org\\/index.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">National Healthy Marriage Resource Centre<\\/a><\\/p><p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Gottman Institute\\\" href=\\\"https:\\/\\/www.gottman.com\\/\\\">Gottman Institute<\\/a><\\/p>\",\"_id\":\"819f088\"},{\"tab_title\":\"Parenting\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Single Parent Resource Centre Victoria\\\" href=\\\"http:\\/\\/www.singleparentvictoria.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Single Parent Resource Centre Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"BC Parent Support\\\" href=\\\"http:\\/\\/www.parentsupportbc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Parent Support BC<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Boys and Girls Club Victoria\\\" href=\\\"http:\\/\\/www.bgcvic.org\\/youth-family-and-parenting-programs\\/parenting-programs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Boys and Girls Club Victoria<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Life Seminars\\\" href=\\\"http:\\/\\/lifeseminars.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Life Seminars<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Island Parent Magazine\\\" href=\\\"http:\\/\\/islandparent.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Island Parent Magazine<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Triple P Parenting\\\" href=\\\"http:\\/\\/www.triplep.net\\/glo-en\\/home\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Triple P Parenting\\u00a0<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\" href=\\\"http:\\/\\/www.rcpsych.ac.uk\\/healthadvice\\/partnersincarecampaign\\/checklistforparents.aspx\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">A Checklist for Parents with Children with Mental Health Problems<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><\\/p>\",\"_id\":\"ee34110\"},{\"tab_title\":\"Suicide Prevention\",\"tab_content\":\"<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Suicide Prevention\\\" href=\\\"http:\\/\\/suicideprevention.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Suicide Prevention<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px; color: blue;\\\" title=\\\"Need 2 Suicide Prevention and Education\\\" href=\\\"https:\\/\\/need2.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Need 2 (Suicide Prevention and Education)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Canadian Mental Health Institution\\\" href=\\\"http:\\/\\/www.cmha.ca\\/mental_health\\/preventing-suicide\\/#.V7SWl5grIdU\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Canadian Mental Health Association (Preventing Suicide)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Help Guide Article\\\" href=\\\"http:\\/\\/www.helpguide.org\\/articles\\/suicide-prevention\\/suicide-prevention-helping-someone-who-is-suicidal.htm\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Help Guide (Article: Helping Someone who is suicidal)<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\">\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Crisis Centre<\\/a><\\/p>\\n<p style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><a style=\\\"font-size: 15px;\\\" title=\\\"Crisis Centre\\\" href=\\\"https:\\/\\/crisiscentre.bc.ca\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u00a0<\\/a>\\u00a0<a style=\\\"font-size: 15px;\\\" title=\\\"Wake Forest University Online guide to suicide prevention\\\" href=\\\"http:\\/\\/counseling.online.wfu.edu\\/online-counseling-guide-on-suicide-prevention\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Online Guide to Suicide Prevention (Wake Forest University)<\\/a><\\/p>\",\"_id\":\"cd3d975\"}],\"icon_active\":\"fa fa-caret-down\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"space_between\":{\"unit\":\"px\",\"size\":25},\"box_shadow_box_shadow_type\":\"yes\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":28},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19941", "16062", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19942", "16062", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19943", "16062", "_elementor_css", "a:3:{s:4:\"time\";i:1528904980;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19944", "14462", "_elementor_css", "a:3:{s:4:\"time\";i:1528905488;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19946", "35", "_elementor_css", "a:3:{s:4:\"time\";i:1528918445;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("19948", "101", "_give_logged_in_only", "enabled");
INSERT INTO `wp_postmeta` VALUES("19949", "101", "_give_customize_offline_donations", "disabled");
INSERT INTO `wp_postmeta` VALUES("19950", "101", "_give_set_price", "");
INSERT INTO `wp_postmeta` VALUES("19951", "101", "_give_custom_amount_minimum", "");
INSERT INTO `wp_postmeta` VALUES("19952", "101", "_give_offline-donation-instruction_notification", "global");
INSERT INTO `wp_postmeta` VALUES("19953", "101", "_give_offline-donation-instruction_email_message", "");
INSERT INTO `wp_postmeta` VALUES("19954", "101", "_give_offline-donation-instruction_email_subject", "");
INSERT INTO `wp_postmeta` VALUES("19955", "153", "_give_payment_date", "2018-03-16 07:16:56");
INSERT INTO `wp_postmeta` VALUES("19956", "153", "_give_payment_donor_id", "");
INSERT INTO `wp_postmeta` VALUES("19957", "153", "_give_payment_donor_email", "");
INSERT INTO `wp_postmeta` VALUES("19958", "153", "_give_payment_donor_ip", "");
INSERT INTO `wp_postmeta` VALUES("19959", "15914", "_give_payment_date", "2018-05-23 16:04:51");
INSERT INTO `wp_postmeta` VALUES("19960", "15914", "_give_payment_donor_id", "");
INSERT INTO `wp_postmeta` VALUES("19961", "15914", "_give_payment_donor_email", "");
INSERT INTO `wp_postmeta` VALUES("19962", "15914", "_give_payment_donor_ip", "");
INSERT INTO `wp_postmeta` VALUES("19963", "101", "_give_form_status", "open");
INSERT INTO `wp_postmeta` VALUES("19964", "16067", "_edit_lock", "1528994286:10");
INSERT INTO `wp_postmeta` VALUES("19965", "16067", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("19966", "16067", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("19967", "16067", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("19968", "16067", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("19969", "16067", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("19970", "16068", "_edit_lock", "1528994122:10");
INSERT INTO `wp_postmeta` VALUES("19971", "16068", "_edit_last", "10");
INSERT INTO `wp_postmeta` VALUES("19972", "16068", "ai1ec_banner_image", "");
INSERT INTO `wp_postmeta` VALUES("19973", "16068", "_ai1ec_cost_type", "free");
INSERT INTO `wp_postmeta` VALUES("19974", "16068", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("19975", "16068", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("19981", "11", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19982", "16070", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19983", "16070", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19984", "16070", "_elementor_data", "[{\"id\":\"596c75c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\"},\"elements\":[{\"id\":\"7e0606e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dd33487\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training And Upcoming Events\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\",\"color_link\":\"#4054b2\",\"color_link_hover\":\"#6ec1e4\",\"structure\":\"20\"},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u>Positive Psychology Group<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\"><u>Young Adults Support group for Anxiety<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><u><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/u><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\"><u>Making It Work for Teens!<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"><u> Living with Loss Part 1, an Introduction to Grief and Loss <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"8ad28c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"463ce70\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0692912\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ai1ec_agenda_widget\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19985", "16070", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19986", "16070", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19987", "16071", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19988", "16071", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19989", "16071", "_elementor_data", "[{\"id\":\"596c75c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\"},\"elements\":[{\"id\":\"7e0606e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dd33487\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training And Upcoming Events\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\",\"color_link\":\"#4054b2\",\"color_link_hover\":\"#6ec1e4\",\"structure\":\"20\"},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u>Positive Psychology Group<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\"><u>Young Adults Support group for Anxiety<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><u><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/u><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\"><u>Making It Work for Teens!<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"><u> Living with Loss Part 1, an Introduction to Grief and Loss <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"8ad28c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"463ce70\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0692912\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ai1ec_agenda_widget\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19990", "16071", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19991", "16071", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19992", "16072", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19993", "16072", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("19994", "16072", "_elementor_data", "[{\"id\":\"4b5b88b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_color_b\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"6983a983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1a302f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"86edf56\",\"elType\":\"widget\",\"settings\":{\"title\":\"How We Can Help\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8faf6a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"231d27e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Our experienced counsellors\\u00a0provide\\u00a0professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d65b215\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px;\\\">We can help with:<\\/span><\\/p><ul><li>depression, stress and anxiety<\\/li><li>grief, loss, and life-transitions<\\/li><li>senior care issues<\\/li><li>end-of-life care<\\/li><li>support and education<\\/li><li>trauma and distress<\\/li><li>relationship conflicts<\\/li><li>self-esteem issues<\\/li><li>emotional, sexual, and physical abuse<\\/li><li>issues related to faith and spirituality<\\/li><li>marital and family conflict \\u00a0 \\u00a0<strong style=\\\"font-size: 14px; line-height: 1.5em;\\\">\\u00a0<\\/strong><\\/li><\\/ul>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d89831e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea03440\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>At South Island Centre, we believe that\\u00a0everyone\\u00a0should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<\\/b><\\/p><p>Talk to your counsellor about your payment plans and options.<\\/p><p>To\\u00a0Make\\u00a0an Appointment<\\/p><ol><li>Call our office at \\u00a0\\u00a0\\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0\\u00a0250-472-2851.<\\/li><li><a style=\\\"color: blue;\\\" title=\\\"General inquiry form\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Click here <\\/a>\\u00a0to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.<\\/li><\\/ol>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"text_color\":\"#333333\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e21a84\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("19995", "16072", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("19996", "16072", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("19997", "16072", "_elementor_css", "a:3:{s:4:\"time\";i:1528918445;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20004", "16074", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("20005", "16074", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20006", "16075", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("20007", "16075", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20008", "16074", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20009", "16074", "_elementor_data", "[{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20010", "16076", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("20011", "16076", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20012", "16076", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20013", "16076", "_elementor_data", "[{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20014", "16074", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20015", "16077", "_elementor_template_type", "section");
INSERT INTO `wp_postmeta` VALUES("20016", "16077", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20017", "16078", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("20018", "16078", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20019", "16077", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20020", "16077", "_elementor_data", "[{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20021", "16079", "_elementor_template_type", "page");
INSERT INTO `wp_postmeta` VALUES("20022", "16079", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20023", "16079", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20024", "16079", "_elementor_data", "[{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8}},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c7513e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income\\u00a0with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p><p>\\u00a0We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eca3651\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19e914b\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bb4f01b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bf9171e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e389bc1\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9508b24\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0277c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20025", "16077", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20026", "15798", "_elementor_css", "a:3:{s:4:\"time\";i:1528993280;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20027", "16080", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20028", "16080", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20029", "16080", "_elementor_data", "[{\"id\":\"7423f867\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_3359.jpg\",\"id\":15601},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"structure\":\"20\"},\"elements\":[{\"id\":\"558d36d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"517839b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"282cdd41\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHO WE ARE\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"feae39f\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"31e69650\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"27157593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"881462\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1347666\",\"elType\":\"widget\",\"settings\":{\"title\":\"We provide professional, affordable, income-based counselling services for all individuals\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0ce3a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\\u00a0<\\/p><p>We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\\u00a0<\\/p><p>Call the Centre directly for more information on these services.<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c79ee8d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d5cc43e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8c15882\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6c5f5f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHAT WE DO\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63ce2e0\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ae98e21\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"9962a25\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"705fd79\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":65}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1356723\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We offer a sliding scale based on .1% of annual income&nbsp;with the maximum being $120\\/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.<\\/p>\\n<p>&nbsp;We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.w<\\/p>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24fe7b19\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"341d442d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"gradient\",\"background_overlay_color_b\":\"#ffffff\"},\"elements\":[{\"id\":\"4e2ebfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1d99ce3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4009eac\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR HISTORY\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2efe5d8b\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40b38622\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40},\"space_tablet\":{\"unit\":\"px\",\"size\":15},\"space_mobile\":{\"unit\":\"px\",\"size\":5}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"387e33fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"top\"},\"elements\":[{\"id\":\"54c86f7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"52\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d607a3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30},\"space_mobile\":{\"unit\":\"px\",\"size\":1}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5a331367\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>South Island Centre for Counselling and Training Society was established in 1975.<\\/h4>\",\"text_color\":\"#333333\",\"align\":\"left\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e936bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.\\u00a0Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br \\/>\\u00a0Our commitment to providing counselling to every person \\u2013 regardless of their ability to pay \\u2013 is a lifeline to many low\\u2010income clients who cannot afford help.\\u00a0<\\/div><div>\\u00a0<\\/div><div>We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.<\\/div>\",\"text_color\":\"#333333\",\"align\":\"left\",\"align_mobile\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ad2079f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":35}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fbe936\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_4595-e1525817226901.jpg\",\"id\":15599},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8},\"structure\":\"20\"},\"elements\":[{\"id\":\"f268055\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"02fc2f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"aae4aa6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"f1004f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cc539d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Children and Youth Counselling\\n\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eebf8e3\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f41ab0f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0e55795\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cbdc6b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0<\\/span><\\/p><div><span style=\\\"font-family: Arial;\\\">\\u00a0Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation\\/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.<\\/span><\\/div><div>\\u00a0<\\/div><div><span style=\\\"font-family: Arial;\\\">We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<\\/span><\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78bfb6a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"45a01b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d8abae\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75},\"space_mobile\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84baff1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training Courses and Pastoral Care\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b4acba\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#ff6a00\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":10},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1ac95d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"650d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 15px; background-color: transparent;\\\">\\u00a0We\\u2019re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.\\u00a0<\\/span><\\/p><p><span style=\\\"font-size: 15px;\\\">Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.<\\/span><\\/p><div>\\u00a0<\\/div>\",\"text_color\":\"#ffffff\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eaad479\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a4936ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100},\"space_tablet\":{\"unit\":\"px\",\"size\":75}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20030", "16080", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20031", "16080", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("20032", "14759", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("20033", "14759", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("20034", "15340", "site-sidebar-layout", "default");
INSERT INTO `wp_postmeta` VALUES("20035", "15340", "site-content-layout", "default");
INSERT INTO `wp_postmeta` VALUES("20036", "16081", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20037", "16081", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20038", "16081", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us via\\u00a0<a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/p><p>\\u00a0<\\/p><p><strong>Call<\\/strong>\\u00a0the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/p><p>\\u00a0<\\/p><p><strong>Counselling hours<\\/strong>\\u00a0are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/p><p>\\u00a0<\\/p><p><strong>Reception hours<\\/strong>\\u00a0are Monday-Thursday, 9:00am-2:00pm.<\\/p><p>\\u00a0<\\/p><h4>Current Clients:<\\/h4><p>Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0<strong>250-472-2851<\\/strong>\\u00a0<strong>and press 4 for the staff directory.\\u00a0<\\/strong>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20039", "16081", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20040", "16081", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("20041", "16081", "_elementor_css", "a:3:{s:4:\"time\";i:1527204654;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20042", "16082", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20043", "16082", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20044", "16082", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Contact us via\\u00a0<a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.\\n\\n<strong>Call<\\/strong>\\u00a0the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.\\n\\n\\n<strong>Counselling hours<\\/strong>\\u00a0are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.\\n\\n\\n<strong>Reception hours<\\/strong>\\u00a0are Monday-Thursday, 9:00am-2:00pm.\\n\\n<h4>Current Clients:<\\/h4>\\nPlease contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0<strong>250-472-2851<\\/strong>\\u00a0<strong>and press 4 for the staff directory.\\u00a0<\\/strong>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20045", "16082", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20046", "16082", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("20048", "16083", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20049", "16083", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20050", "16083", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us via\\u00a0<a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/p><p>\\u00a0<\\/p><p><strong>Call<\\/strong>\\u00a0the Centre\\u00a0at \\u00a0<i class=\\\"fa fa-phone\\\"><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/p><p>\\u00a0<\\/p><p><strong>Counselling hours<\\/strong>\\u00a0are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/p><p>\\u00a0<\\/p><p><strong>Reception hours<\\/strong>\\u00a0are Monday-Thursday, 9:00am-2:00pm.<\\/p><p>\\u00a0<\\/p><h4>Current Clients:<\\/h4><p>Please contact your counsellor directly by calling \\u00a0<i class=\\\"fa fa-phone-square\\\"><\\/i>\\u00a0<strong>250-472-2851<\\/strong>\\u00a0<strong>and press 4 for the staff directory.\\u00a0<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20051", "16083", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20052", "16083", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("20053", "16083", "_elementor_css", "a:3:{s:4:\"time\";i:1528994538;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20055", "16084", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20056", "16084", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20057", "16084", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us via\\u00a0<a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/p><p>\\u00a0<\\/p><p><strong>Call<\\/strong>\\u00a0the Centre\\u00a0at \\u00a0<i><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/p><p>\\u00a0<\\/p><p><strong>Counselling hours<\\/strong>\\u00a0are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/p><p>\\u00a0<\\/p><p><strong>Reception hours<\\/strong>\\u00a0are Monday, Tuesday &amp; Thursday, 9:00am-2:00pm.\\u00a0 Wednesday, 9:00am-4:00pm<\\/p><p>\\u00a0<\\/p><h4>Current Clients:<\\/h4><p>Please contact your counsellor directly by calling \\u00a0<i><\\/i>\\u00a0<strong>250-472-2851<\\/strong>\\u00a0<strong>and press 4 for the staff directory.\\u00a0<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20058", "16084", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20059", "16084", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("20060", "16084", "_elementor_css", "a:3:{s:4:\"time\";i:1528994583;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20061", "16085", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20062", "16085", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20063", "16085", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Contact us via\\u00a0<a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.\\n&nbsp;\\n\\n<strong>Call<\\/strong>\\u00a0the Centre\\u00a0at \\u00a0<i><\\/i>\\u00a0<strong>250-472-2851 and press 0 to leave a voicemail<\\/strong>.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.\\n&nbsp;\\n\\n<strong>Counselling hours<\\/strong>\\u00a0are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.\\n&nbsp;\\n\\n<strong>Reception hours<\\/strong>\\u00a0are Monday, Tuesday &amp; Thursday, 9:00am-2:00pm.\\u00a0 Wednesday, 9:00am-4:00pm\\n\\n&nbsp;\\n<h4>Current Clients:<\\/h4>\\nPlease contact your counsellor directly by calling \\u00a0<i><\\/i>\\u00a0<strong>250-472-2851<\\/strong>\\u00a0<strong>and press 4 for the staff directory.\\u00a0<\\/strong>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20064", "16085", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20065", "16085", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("20067", "16086", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20068", "16086", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20069", "16086", "_elementor_data", "[{\"id\":\"40870f75\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_0884.jpg\",\"id\":15597},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7}},\"elements\":[{\"id\":\"45d8f5f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2a513a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"bfe0efa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make an Appointment\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f40d0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"259c08c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Contact us via\\u00a0<a href=\\\"mailto:info@localhost\\\">Email<\\/a>\\u00a0or\\u00a0<strong><a title=\\\"Contact Form: General Inquiry\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/contact-us\\/leave-a-comment-2\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">click here<\\/a><\\/strong>\\u00a0to fill out a\\u00a0<strong>Intake Survey form<\\/strong>. \\u00a0You will be contacted within 5 business days.<\\/p><p><strong style=\\\"font-size: 18px;\\\">Call<\\/strong><span style=\\\"font-size: 18px;\\\">\\u00a0the Centre\\u00a0at \\u00a0<\\/span><i style=\\\"font-weight: inherit;\\\"><\\/i><span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><strong style=\\\"font-size: 18px;\\\">250-472-2851 and press 0 to leave a voicemail<\\/strong><span style=\\\"font-size: 18px;\\\">.\\u00a0Please provide\\u00a0your name and a contact number where you can be reached.<\\/span><\\/p><p><span style=\\\"font-size: 18px;\\\">\\u00a0<\\/span><\\/p><p><strong>Counselling hours<\\/strong>\\u00a0are by appointment only.\\u00a0Consult your counsellor for details and availability about weekend and evening appointments.<\\/p><p><strong>Reception hours<\\/strong>\\u00a0are Monday, Tuesday &amp; Thursday, 9:00am-2:00pm.\\u00a0 Wednesday, 9:00am-4:00pm<\\/p><p>\\u00a0<\\/p><h4>Current Clients:<\\/h4><p>Please contact your counsellor directly by calling \\u00a0<i><\\/i>\\u00a0<strong>250-472-2851<\\/strong>\\u00a0<strong>and press 4 for the staff directory.\\u00a0<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e14d5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20070", "16086", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20071", "16086", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("20072", "16086", "_elementor_css", "a:3:{s:4:\"time\";i:1528994687;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20073", "64", "_elementor_css", "a:3:{s:4:\"time\";i:1528994762;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20075", "16087", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20076", "16087", "_elementor_edit_mode", "builder");
INSERT INTO `wp_postmeta` VALUES("20077", "16087", "_elementor_data", "[{\"id\":\"596c75c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6}},\"elements\":[{\"id\":\"7e0606e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dd33487\",\"elType\":\"widget\",\"settings\":{\"title\":\"Training And Upcoming Events\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fade79\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17ddb03b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/wp-content\\/uploads\\/2018\\/05\\/IMG_9479.jpg\",\"id\":15593},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#ffffff\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6},\"heading_color\":\"#333333\",\"color_text\":\"#333333\",\"color_link\":\"#4054b2\",\"color_link_hover\":\"#6ec1e4\",\"structure\":\"20\"},\"elements\":[{\"id\":\"23a6f7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1bf1cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"575807a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5><span style=\\\"color: #000000;\\\">At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:<\\/span><\\/h5><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14478\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u>Positive Psychology Group<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15175\\\"><u>Young Adults Support group for Anxiety<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><u><a style=\\\"color: #000000;\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=14595\\\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team<\\/a> <\\/u><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Making It Work for Teens! \\uff083 sessions, Saturdays, Oct.14 -Nov.4, 2017)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15209\\\"><u>Making It Work for Teens!<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15133;\\\"><u> Living with Loss Part 1, an Introduction to Grief and Loss <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8\\u2014Mar 15, 2018: 7pm\\u20149pm)\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/event\\/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2\\/\\\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)<\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" title=\\\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/?p=15147\\\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br \\/>Your Personality Preference <\\/u><\\/a><\\/span><\\/p><p><span style=\\\"color: #000000;\\\">For more information on <strong>how to register :\\u00a0<\\/strong><a style=\\\"color: blue;\\\" title=\\\"How to register &amp; Payment options\\\" href=\\\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/courses\\/courses-currently-offered\\/\\\">click here<\\/a>\\u00a0\\u00a0Or\\u00a0call us at\\u00a0\\u00a0<i class=\\\"fa fa-phone\\\"><span style=\\\"display: none;\\\">icon-phone<\\/span><\\/i>\\u00a0250-472-2851.<\\/span><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e785c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"8ad28c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"463ce70\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0692912\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ai1ec_agenda_widget\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `wp_postmeta` VALUES("20078", "16087", "_elementor_version", "0.4");
INSERT INTO `wp_postmeta` VALUES("20079", "16087", "_elementor_template_type", "post");
INSERT INTO `wp_postmeta` VALUES("20080", "16087", "_elementor_css", "a:3:{s:4:\"time\";i:1528994909;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20081", "11", "_elementor_css", "a:3:{s:4:\"time\";i:1528994996;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");
INSERT INTO `wp_postmeta` VALUES("20082", "15494", "_elementor_css", "a:3:{s:4:\"time\";i:1529441245;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("4", "10", "2018-02-23 12:13:14", "2018-02-23 12:13:14", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre for Counselling and Training is holding its Annual Fundraising Gala on October 27th, 2018.  Tickets go on sale this summer.							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter-1.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "publish", "closed", "closed", "", "home", "", "", "2018-06-13 07:35:24", "2018-06-13 14:35:24", "", "0", "https://websitedemos.net/alex01/?page_id=4", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("5", "3", "2014-02-22 23:55:07", "2014-02-22 23:55:07", "<h2><span style=\"color: #000000;\">Our counsellors can help!</span></h2>\r\n<span style=\"color: #000000;\">South Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:</span>\r\n<ul>\r\n 	<li><span style=\"color: #000000;\">grief, loss and life-transitions;</span></li>\r\n 	<li><span style=\"color: #000000;\">traumaÂ or distress;</span></li>\r\n 	<li><span style=\"color: #000000;\">depression;</span></li>\r\n 	<li><span style=\"color: #000000;\">eldercare issues;</span></li>\r\n 	<li><span style=\"color: #000000;\">caregiver support and education;</span></li>\r\n 	<li><span style=\"color: #000000;\">relational conflict;</span></li>\r\n 	<li><span style=\"color: #000000;\">self-esteem issues;</span></li>\r\n 	<li><span style=\"color: #000000;\">emotional, sexual and physical abuse;</span></li>\r\n 	<li><span style=\"color: #000000;\">issues related to faith and spirituality;</span></li>\r\n 	<li><span style=\"color: #000000;\">addictions (substance abuse, gambling, pornography);</span></li>\r\n 	<li><span style=\"color: #000000;\">understanding family systems;</span></li>\r\n 	<li><span style=\"color: #000000;\">marriage preparation;</span></li>\r\n 	<li><span style=\"color: #000000;\">marital conflict</span></li>\r\n</ul>\r\n<span style=\"line-height: 1.5; color: #000000;\">....and more.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\"><strong>Affordable Counselling Services</strong></span></h3>\r\n<span style=\"color: #000000;\">At South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a style=\"color: #000000;\" title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\" rel=\"noopener\">click here</a>Â to view our graduated fee scale whichÂ is based on your combined family income.</span>\r\n\r\n<span style=\"color: #000000;\">To <strong>book an initial appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a style=\"color: #000000;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a> to fill out a General Inquiry Contact Form.</span>\r\n<h3><span style=\"color: #000000;\">Â </span></h3>", "Counselling", "", "publish", "closed", "closed", "", "counselling", "", "", "2018-03-28 13:01:50", "2018-03-28 20:01:50", "", "0", "http://localhost/~zastre/?page_id=5", "80", "page", "", "0");
INSERT INTO `wp_posts` VALUES("6", "3", "2014-02-22 23:31:28", "2014-02-22 23:31:28", "<h1>Services Offered</h1>\r\nAffordable Counselling Services PDF Print E-mail\r\n\r\nAt South Island Centre we believe it is important that everyone have access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. Thatâ€™s why we sit down with you and work out a fee that fits your budget.\r\n\r\n&nbsp;\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at 250-472-2851 or email counselling@localhost. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h1>Counselling info PDF Print E-mail</h1>\r\nSouth Island Centre counsellors provide a safe, positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, <strong>you don\'t have to go through it alone!</strong>\r\n\r\n&nbsp;\r\n\r\nSouth Island Centre counsellors can help with\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflict</strong></li>\r\n</ul>\r\n....and more.\r\n\r\n&nbsp;\r\n\r\nAt South Island Centre we believe it is important that everyone has access to Counselling services, regardless of your financial situation. We offer affordable counselling services to fit within your budget.\r\n\r\nLearn more about our affordable counselling services.\r\n\r\n&nbsp;\r\n\r\nTo book an appointment call our office at 250-472-2851, extension 101 or email counselling@localhost.\r\n\r\n&nbsp;", "Counselling", "", "inherit", "open", "open", "", "5-revision-v1", "", "", "2014-02-22 23:31:28", "2014-02-22 23:31:28", "", "5", "http://localhost/~zastre/?p=6", "10", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("7", "3", "2014-02-22 23:43:32", "2014-02-22 23:43:32", "<h1>Services Offered</h1>\r\n<h2>Affordable Counselling Services PDF Print E-mail</h2>\r\nAt South Island Centre we believe it is important that everyone has access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need.\r\n\r\nWe offer <strong>affordable counselling services</strong> to fit within your budget.Â Thatâ€™s why we sit down with you and work out a fee that fits your budget.Â <span style=\"line-height: 1.5;\">Learn more about our affordable counselling services.</span>\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at 250-472-2851 or email counselling@localhost. Weâ€™re here to help!\r\n\r\nTo book an appointment call our office at 250-472-2851, extension 101 or email counselling@localhost.\r\n<h2>Counselling info PDF Print E-mail</h2>\r\nSouth Island Centre counsellors provide a safe, positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, <strong>you don\'t have to go through it alone!</strong>\r\n\r\nSouth Island Centre counsellors can help with\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<span style=\"line-height: 1.5;\">Â </span>", "Counselling", "", "inherit", "open", "open", "", "5-revision-v1", "", "", "2014-02-22 23:43:32", "2014-02-22 23:43:32", "", "5", "http://localhost/~zastre/?p=7", "10", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("8", "3", "2014-02-22 23:45:37", "2014-02-22 23:45:37", "<h1>Services Offered</h1>\r\n<h2>Affordable Counselling Services</h2>\r\nAt South Island Centre we believe it is important that everyone has access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need.\r\n\r\nWe offer <strong>affordable counselling services</strong> to fit within your budget.Â Thatâ€™s why we sit down with you and work out a fee that fits your budget.Â <span style=\"line-height: 1.5;\">Learn more about our affordable counselling services.</span>\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at 250-472-2851 or email counselling@localhost. Weâ€™re here to help!\r\n\r\nTo <strong>book an appointment</strong> call our office at 250-472-2851, extension 101 or email counselling@localhost.\r\n<h2>Counselling</h2>\r\nSouth Island Centre counsellors provide a safe, positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, <strong>you don\'t have to go through it alone!</strong>\r\n\r\nSouth Island Centre counsellors can help with\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<span style=\"line-height: 1.5;\">Â </span>", "Counselling", "", "inherit", "open", "open", "", "5-revision-v1", "", "", "2014-02-22 23:45:37", "2014-02-22 23:45:37", "", "5", "http://localhost/~zastre/?p=8", "10", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("9", "3", "2014-02-22 23:55:24", "2014-02-22 23:55:24", "<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Services and Our Christian Roots</span></span></h3>\r\nSouth Island Centre for Counselling and Training has been offering <strong>Pastoral Care &amp; Counselling Services</strong> in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre <strong>supports clergy and persons of faith</strong> as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h2></h2>\r\n<h3><span style=\"text-decoration: underline;\">Professional<span style=\"color: #000000; text-decoration: underline;\"> Consultations for Clergy</span></span></h3>\r\n<strong>Pastoral care</strong> is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a <strong>consultation service to pastors and other professionals</strong> through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\"><span style=\"color: #333333; font-size: 14px; line-height: 1.5em;\"><strong>Please contact ourÂ Director of Services, Bill Cole,Â by e-mail by clickingÂ </strong><a title=\"Contact Form: General Submission\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/contact-form-general-submission/\" target=\"_blank\">here</a>Â or call him at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â (250) 472-2851, extension 102.\r\n</span></span></h3>", "Counselling Services for Clergy", "", "publish", "closed", "closed", "", "pastoral-services", "", "", "2015-03-26 12:10:44", "2015-03-26 19:10:44", "", "88", "http://localhost/~zastre/?page_id=9", "6", "page", "", "0");
INSERT INTO `wp_posts` VALUES("10", "3", "2014-02-22 23:47:46", "2014-02-22 23:47:46", "<h2>Pastoral Services and Our Christian Roots</h2>\r\nSouth Island Centre for Counselling &amp; Training has been offering Pastoral Care &amp; Counselling Services in Victoria &amp; the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2>Professional Consultations for Clergy</h2>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h2>Spiritual Directors</h2>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in YOUR life.\r\n<h2>CareerChoice Program</h2>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much......\r\n<h2>South Island Centre Will Travel</h2>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come on location with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff.", "Pastoral Services", "", "inherit", "open", "open", "", "9-revision-v1", "", "", "2014-02-22 23:47:46", "2014-02-22 23:47:46", "", "9", "http://localhost/~zastre/?p=10", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("11", "3", "2014-02-22 23:55:16", "2014-02-22 23:55:16", "<h2>Training And Upcoming Events</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\"><u>Positive Psychology Group</u></a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\"><u>Young Adults Support group for Anxiety</u></a></p><p><u><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </u></p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\"><u>Making It Work for Teens!</u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"><u> Living with Loss Part 1, an Introduction to Grief and Loss </u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</u></a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </u></a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training", "", "publish", "closed", "closed", "", "courses", "", "", "2018-06-14 09:49:46", "2018-06-14 16:49:46", "", "15121", "http://localhost/~zastre/?page_id=11", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12", "3", "2014-02-22 23:52:48", "2014-02-22 23:52:48", "<h1>South Island Centre Courses</h1>\r\n<h2>Courses Offered</h2>\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Please select the relevant category below to view our catalogue of courses. Please visit us often to see courses currently being offered.\r\n\r\nTraining for Professional and Volunteer Support Workers/Caregivers\r\n\r\nCourses for those in Ministry\r\n\r\nPersonal development Courses\r\n\r\nPlease call (250-472-2851) or email us at courses@localhost if you\'d like to receive our regularly updated brochure of available courses and workshops. Please include your name, organization and contact information.\r\n<h1>2014 Course Offerings</h1>\r\nWe are pleased to offer these upcoming courses:\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li>Family Systems Theory (Please Contact Us If Interested)</li>\r\n	<li>Pastoral Counselling Training (Please Contact Us If Interested)</li>\r\n	<li>Marriage Preparation</li>\r\n</ul>\r\nStay tuned for more courses coming soon.\r\n\r\n&nbsp;", "Courses", "", "inherit", "open", "open", "", "11-revision-v1", "", "", "2014-02-22 23:52:48", "2014-02-22 23:52:48", "", "11", "http://localhost/~zastre/?p=12", "38", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13", "10", "2018-02-23 12:17:34", "2018-02-23 12:17:34", " ", "", "", "publish", "closed", "closed", "", "13", "", "", "2018-02-23 12:17:34", "2018-02-23 12:17:34", "", "0", "https://websitedemos.net/alex01/?p=13", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("21", "3", "2014-02-23 00:03:23", "2014-02-23 00:03:23", " ", "", "", "publish", "open", "closed", "", "21", "", "", "2014-04-14 14:37:45", "2014-04-14 21:37:45", "", "0", "http://localhost/~zastre/?p=21", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("22", "3", "2014-02-23 00:03:23", "2014-02-23 00:03:23", " ", "", "", "publish", "open", "closed", "", "22", "", "", "2014-04-14 14:37:45", "2014-04-14 21:37:45", "", "0", "http://localhost/~zastre/?p=22", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("24", "3", "2014-02-23 00:06:29", "2014-02-23 00:06:29", "<h2>Where We Are\n</h2>		\n		<p>We are physically located at 3821A Cedar Hill Cross Road.</p><p>Bus Routes<br /> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.</p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.</p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.</p><p>Our offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.</p><p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p><p>Â </p><p>Â </p>", "Where We Are", "", "publish", "closed", "closed", "", "find-us", "", "", "2018-05-15 14:54:21", "2018-05-15 21:54:21", "", "15113", "http://localhost/~zastre/?page_id=24", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("25", "3", "2014-02-23 00:06:29", "2014-02-23 00:06:29", "South Island Centre is located in the house (behind the big Sequoia tree) overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\nBUS ROUTES from downtown: No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross and Shelbourne â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).", "Find Us", "", "inherit", "open", "open", "", "24-revision-v1", "", "", "2014-02-23 00:06:29", "2014-02-23 00:06:29", "", "24", "http://localhost/~zastre/?p=25", "13", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("26", "3", "2014-02-23 00:06:48", "2014-02-23 00:06:48", " ", "", "", "publish", "open", "closed", "", "26", "", "", "2014-04-14 14:37:45", "2014-04-14 21:37:45", "", "29", "http://localhost/~zastre/?p=26", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("29", "3", "2014-02-23 00:25:07", "2014-02-23 00:25:07", "<h3><span style=\"color: #000000;\">Our mailing address:</span></h3>\r\n<i class=\"fa fa-envelope\"><span style=\"color: transparent; display: none;\">icon-envelope</span></i>Â 3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><span style=\"color: #000000;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><span style=\"color: #000000;\"><strong>Office hours</strong>:</span></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Counselling hours:</span></span> weekdays during office hours, and some evenings and weekends (please inquire).\r\n<h3></h3>\r\n<h3><span style=\"color: #000000;\"><strong>E-mails:</strong></span></h3>\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:<span style=\"color: #000000;\">Â </span></strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n<h3></h3>", "Contact Us  ", "", "pending", "closed", "closed", "", "contact-us", "", "", "2017-06-24 12:52:30", "2017-06-24 19:52:30", "", "0", "http://localhost/~zastre/?page_id=29", "71", "page", "", "0");
INSERT INTO `wp_posts` VALUES("30", "3", "2014-02-23 00:25:07", "2014-02-23 00:25:07", "<h2>Our Mailing Address:</h2>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h2>Telephone/Fax info</h2>\r\nTelephone: (250) 472-2851, extension 101 to reach the front desk.\r\n\r\nFax: (250) 472-2815\r\n<h2>Website address</h2>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h2>Office hours:</h2>\r\nOur office hours are from <strong>9:00-5:00pm from Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statuary holidays.\r\n\r\nIf our office co-ordinator is on the phone helping another client when you call, the answering machine will come on: please leave a message the stating your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course etc).\r\n<h4>Where on this big parking lot are we?</h4>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li>No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li>Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy <strong>5-7 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2>Click here for detailed directions to us.</h2>", "Contact us", "", "inherit", "open", "open", "", "29-revision-v1", "", "", "2014-02-23 00:25:07", "2014-02-23 00:25:07", "", "29", "http://localhost/~zastre/?p=30", "75", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("32", "3", "2014-02-23 00:25:36", "2014-02-23 00:25:36", " ", "", "", "publish", "open", "closed", "", "32", "", "", "2014-04-14 14:37:45", "2014-04-14 21:37:45", "", "0", "http://localhost/~zastre/?p=32", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("35", "3", "2014-02-23 02:52:41", "2014-02-23 02:52:41", "<h2>How We Can Help</h2>\r\n<h5>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</h5>\r\nWe can help with:\r\n<ul>\r\n 	<li>depression, stress and anxiety</li>\r\n 	<li>grief, loss, and life-transitions</li>\r\n 	<li>senior care issues</li>\r\n 	<li>end-of-life care</li>\r\n 	<li>support and education</li>\r\n 	<li>trauma and distress</li>\r\n 	<li>relationship conflicts</li>\r\n 	<li>self-esteem issues</li>\r\n 	<li>emotional, sexual, and physical abuse</li>\r\n 	<li>issues related to faith and spirituality</li>\r\n 	<li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n<b>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.</b>\r\n\r\nTalk to your counsellor about your payment plans and options.\r\n\r\nToÂ MakeÂ an Appointment\r\n<ol>\r\n 	<li>Call our office at Â Â Â Â Â 250-472-2851.</li>\r\n 	<li><a style=\"color: blue;\" title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here </a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li>\r\n</ol>", "Counselling", "", "publish", "closed", "closed", "", "general-information", "", "", "2018-06-14 09:16:02", "2018-06-14 16:16:02", "", "15117", "http://localhost/~zastre/?page_id=35", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("39", "3", "2014-02-23 02:52:41", "2014-02-23 02:52:41", "South Island Centre is a non-profit counselling and training agency funded solely through donations, fees, and grants. We have been serving Victoria communities since 1975. Â South Island Centre services include:\r\n<ul>\r\n	<li>Individual, couple and family counselling</li>\r\n	<li>Workshops, courses and training programs</li>\r\n	<li>Consultation for mental health professionals and clergy</li>\r\n	<li>Career change and development programs</li>\r\n</ul>\r\n<h2>Our Mission Statement</h2>\r\nWe provide professional services to individuals, families and organizations, facilitating personal, relational and spiritual wholeness.\r\n\r\n&nbsp;", "General Information", "", "inherit", "open", "open", "", "35-revision-v1", "", "", "2014-02-23 02:52:41", "2014-02-23 02:52:41", "", "35", "http://localhost/~zastre/?p=39", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("41", "3", "2014-02-23 02:54:36", "2014-02-23 02:54:36", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignright wp-image-694 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" alt=\"bill_cole_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;", "Bill Cole (M.A., RCC)", "", "publish", "closed", "closed", "", "bill-cole", "", "", "2017-07-28 18:27:57", "2017-07-29 01:27:57", "", "217", "http://localhost/~zastre/?page_id=41", "7", "page", "", "0");
INSERT INTO `wp_posts` VALUES("42", "3", "2014-02-23 02:54:36", "2014-02-23 02:54:36", "Director of Services\r\n\r\nFamily Systems specialty", "Bill Cole", "", "inherit", "open", "open", "", "41-revision-v1", "", "", "2014-02-23 02:54:36", "2014-02-23 02:54:36", "", "41", "http://localhost/~zastre/?p=42", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("44", "3", "2014-02-23 02:55:53", "2014-02-23 02:55:53", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\"><img class=\"alignleft wp-image-695 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\" alt=\"margaret_anderson_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n<strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaretâ€™sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret Anderson", "", "publish", "closed", "closed", "", "margaret-mckinnon-anderson", "", "", "2017-07-28 18:27:37", "2017-07-29 01:27:37", "", "217", "http://localhost/~zastre/?page_id=44", "5", "page", "", "0");
INSERT INTO `wp_posts` VALUES("45", "3", "2014-02-23 02:55:53", "2014-02-23 02:55:53", "Grief &amp; Loss Specialty", "Margaret (McKinnon) Anderson", "", "inherit", "open", "open", "", "44-revision-v1", "", "", "2014-02-23 02:55:53", "2014-02-23 02:55:53", "", "44", "http://localhost/~zastre/?p=45", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("47", "3", "2014-02-23 02:57:00", "2014-02-23 02:57:00", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\"><img class=\"alignleft wp-image-693 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\" alt=\"barb_baillie_150w\" width=\"150\" height=\"226\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span>Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie (B.Ed, MTS, MAPPC, BCATR)", "", "publish", "closed", "closed", "", "barbara-baillie", "", "", "2017-07-28 18:27:53", "2017-07-29 01:27:53", "", "217", "http://localhost/~zastre/?page_id=47", "6", "page", "", "0");
INSERT INTO `wp_posts` VALUES("48", "3", "2014-02-23 02:57:00", "2014-02-23 02:57:00", "Spiritual Direction Specialty", "Barbara Baillie", "", "inherit", "open", "open", "", "47-revision-v1", "", "", "2014-02-23 02:57:00", "2014-02-23 02:57:00", "", "47", "http://localhost/~zastre/?p=48", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("54", "3", "2014-02-23 03:05:01", "2014-02-23 03:05:01", "<h2>Income-Based Counselling Services</h2>		\n		<h5>At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.</h5><p>Â </p><p><strong>Costs of Counselling</strong></p><p>Counselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.</p><p>Please note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.</p><p>Payment can be made with cash, debit or credit card.</p>		\n		<p><strong>Insurance Coverage</strong></p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br />It is your responsibility to submit receipts to your provider for reimbursement.<br />If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br />We not bill external parties for services rendered.</p>", "Income-Based Counselling Services", "", "publish", "closed", "closed", "", "affordable-counselling", "", "", "2018-06-13 08:33:26", "2018-06-13 15:33:26", "", "15117", "http://localhost/~zastre/?page_id=54", "4", "page", "", "0");
INSERT INTO `wp_posts` VALUES("55", "3", "2014-02-23 03:05:01", "2014-02-23 03:05:01", "<h1>Affordable Counselling Services</h1>\r\nAt South Island Centre we believe it is important that everyone have access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. Thatâ€™s why we sit down with you and work out a fee that fits your budget.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at 250-472-2851 or <a href=\"mailto:phoo@null.com\">email</a> counselling@localhost. Weâ€™re here to help!", "Affordable Counselling", "", "inherit", "open", "open", "", "54-revision-v1", "", "", "2014-02-23 03:05:01", "2014-02-23 03:05:01", "", "54", "http://localhost/~zastre/?p=55", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("58", "3", "2014-02-23 03:08:10", "2014-02-23 03:08:10", "<h1>Affordable Counselling Services</h1>\r\nAt South Island Centre we believe it is important that everyone have access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. Thatâ€™s why we sit down with you and work out a fee that fits your budget.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at 250-472-2851 or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!", "Affordable Counselling", "", "inherit", "open", "open", "", "54-revision-v1", "", "", "2014-02-23 03:08:10", "2014-02-23 03:08:10", "", "54", "http://localhost/~zastre/?p=58", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("60", "3", "2014-02-23 03:09:59", "2014-02-23 03:09:59", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Moira Madamombe <br><br>MACP</h3>		\n		<p>Holds a Masters in counselling psychology from Yorkville University. Moira is a multicultural counselor who works with adults, adolescents, and youth with various issues including anxiety, depression, addictions, chronic pain, grief, and loss.Â Â She applies various treatment models such as acceptance commitment therapy for chronic pain, cognitive behavioural therapy (CBT), dialectical behaviour therapy (DBT), family systems theory and multicultural counselling.Â Â She has co-facilitated an anxiety group for youth and a mindfulness-based anxiety group for adolescents. Moira is a member of the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "publish", "closed", "closed", "", "counsellors", "", "", "2018-06-13 07:05:02", "2018-06-13 14:05:02", "", "15113", "http://localhost/~zastre/?page_id=60", "5", "page", "", "0");
INSERT INTO `wp_posts` VALUES("61", "3", "2014-02-23 03:09:59", "2014-02-23 03:09:59", "TBA", "Counsellors", "", "inherit", "open", "open", "", "60-revision-v1", "", "", "2014-02-23 03:09:59", "2014-02-23 03:09:59", "", "60", "http://localhost/~zastre/?p=61", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("64", "3", "2014-02-23 03:19:26", "2014-02-23 03:19:26", "<h2>Make an Appointment</h2>		\n		<p>Contact us viaÂ <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p><strong style=\"font-size: 18px;\">Call</strong>Â the CentreÂ at Â Â <strong style=\"font-size: 18px;\">250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong>Counselling hours</strong>Â are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p><strong>Reception hours</strong>Â are Monday, Tuesday &amp; Thursday, 9:00am-2:00pm.Â  Wednesday, 9:00am-4:00pm</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i></i>Â <strong>250-472-2851</strong>Â <strong>and press 4 for the staff directory.Â </strong></p>", "Make an Appointment", "", "publish", "closed", "closed", "", "for-prospective-clients", "", "", "2018-06-14 09:45:52", "2018-06-14 16:45:52", "", "15117", "http://localhost/~zastre/?page_id=64", "8", "page", "", "0");
INSERT INTO `wp_posts` VALUES("65", "3", "2014-02-23 03:19:26", "2014-02-23 03:19:26", "If you think you might benefit from speaking to one of our counsellors and to book an appointment, you may\r\n<ul>\r\n	<li>call our office at 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.</li>\r\n</ul>\r\nIf you call the office and the answering machine comes on, please leave a message stating your name, a contact phone number, and the reason you are calling (for example: to set up an appointment, to find out more about our services etc).\r\n\r\n&nbsp;\r\n\r\n<span style=\"line-height: 1.5;\">Weâ€™re here to help!</span>", "For Prospective Clients", "", "inherit", "open", "open", "", "64-revision-v1", "", "", "2014-02-23 03:19:26", "2014-02-23 03:19:26", "", "64", "http://localhost/~zastre/?p=65", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("69", "3", "2014-02-23 03:21:50", "2014-02-23 03:21:50", "TBA", "Meet our Counsellors", "", "inherit", "open", "open", "", "60-revision-v1", "", "", "2014-02-23 03:21:50", "2014-02-23 03:21:50", "", "60", "http://localhost/~zastre/?p=69", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("74", "3", "2014-02-22 19:29:54", "2014-02-23 03:29:54", "<h2>Board Of Directors</h2>		\n		<p><strong>Â </strong></p><p><strong>Jim Gibson (Chair)</strong></p><p><strong style=\"font-size: 15px;\">Barbara Underhill (Vice-Chair, Treasurer) </strong>Barbara has supported the centre since 2007 in a variety of roles. She has anÂ MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.</p><p><strong>Sally Tuckey (Secretary) </strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. Â Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.Â Her interests are many â€“ but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.</p><p style=\"color: #222222;\"><strong>Sybil Bagshaw </strong>SybilÂ worked as an RN until herÂ retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \"Mother\'s of Preschoolers\" at St Pauls Anglican Church in Fort Garry. Â SybilÂ was one of the founding members the Fort Garry Family Life program and was their treasurer for severalÂ years.Â Â She alsoÂ  was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for theÂ community club andÂ for the Kidney and Cancer foundations both in WinnipegÂ and in Victoria.Â </p><p style=\"color: #222222;\"><strong>Greg Beattie </strong>Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nationâ€™s mental health services. He has 20 yearsâ€™ experience as a clinical supervisor, 15 yearsâ€™ experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. Â Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.</p><p><strong>Helen Morrison </strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.</p>", "Board of Directors", "", "publish", "closed", "closed", "", "board", "", "", "2018-06-13 08:31:15", "2018-06-13 15:31:15", "", "15113", "http://localhost/~zastre/?page_id=74", "6", "page", "", "0");
INSERT INTO `wp_posts` VALUES("75", "3", "2014-02-22 19:29:54", "2014-02-23 03:29:54", "TBA", "Board ", "", "inherit", "open", "open", "", "74-revision-v1", "", "", "2014-02-22 19:29:54", "2014-02-23 03:29:54", "", "74", "http://localhost/~zastre/?p=75", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("78", "10", "2018-02-26 09:49:27", "2018-02-26 09:49:27", "<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text your-subject] </label>\r\n\r\n<label> Your Message\r\n    [textarea your-message x5] </label>\r\n\r\n[submit \"Send\"]\n1\nCharity 01 \"[your-subject]\"\n[your-name] <wordpress@websitedemos.net>\nwordpress@websitedemos.net\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Charity 01 (https://websitedemos.net/alex01)\nReply-To: [your-email]\n\n\n\n\nCharity 01 \"[your-subject]\"\nCharity 01 <wordpress@websitedemos.net>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Charity 01 (https://websitedemos.net/alex01)\nReply-To: costi.drob@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.", "Contact Form", "", "publish", "closed", "closed", "", "contact-form", "", "", "2018-02-26 09:49:27", "2018-02-26 09:49:27", "", "0", "https://websitedemos.net/alex01/?post_type=wpcf7_contact_form&amp;p=78", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("88", "3", "2014-02-22 19:38:36", "2014-02-23 03:38:36", "Listed below are additional services we offer at South Island Centre:\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h4>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Professional Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h4>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual director is<span style=\"color: #000000;\"><strong>Â Barbara Baillie.</strong></span>\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h4>\r\nThe CareerChoice program of South Island Centre has been offered in the past to provide an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nThis course could be again in the future if there is enough interest.\r\n\r\n&nbsp;\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "publish", "closed", "closed", "", "other-services", "", "", "2017-02-22 11:07:38", "2017-02-22 19:07:38", "", "0", "http://localhost/~zastre/?page_id=88", "100", "page", "", "0");
INSERT INTO `wp_posts` VALUES("89", "3", "2014-02-22 19:38:36", "2014-02-23 03:38:36", "", "Other Services", "", "inherit", "open", "open", "", "88-revision-v1", "", "", "2014-02-22 19:38:36", "2014-02-23 03:38:36", "", "88", "http://localhost/~zastre/?p=89", "18", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("91", "3", "2014-02-22 19:40:27", "2014-02-23 03:40:27", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:</p>\r\n<p style=\"text-align: left;\"><strong><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\">Barbara Baillie</span></a>Â </strong>andÂ <span style=\"color: #000000;\"><strong><a title=\"Spiritual Director Pamela Welle\" href=\"http://localhost:8888/TestSICPage/wordpress/other-services/spiritual-direction/pamela-welle/\" target=\"_blank\"><span style=\"color: #000000;\">Pamela Welle</span></a></strong>Â (please click on the name of the spiritual directorÂ for more information).Â <strong>Â </strong></span></p>\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form. Please indicate in your message that you would like the office co-ordinator toÂ put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, follow this link: Â <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "publish", "closed", "closed", "", "spiritual-direction", "", "", "2014-07-31 10:50:22", "2014-07-31 17:50:22", "", "88", "http://localhost/~zastre/?page_id=91", "25", "page", "", "0");
INSERT INTO `wp_posts` VALUES("92", "3", "2014-02-22 19:40:27", "2014-02-23 03:40:27", "Spiritual Director at South Island Centre: Barbara Baillie\r\n\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in YOUR life.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "open", "open", "", "91-revision-v1", "", "", "2014-02-22 19:40:27", "2014-02-23 03:40:27", "", "91", "http://localhost/~zastre/?p=92", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("101", "10", "2018-02-27 12:55:11", "2018-02-27 12:55:11", "", "Make a gift today", "", "publish", "closed", "closed", "", "donation-form", "", "", "2018-06-14 08:09:08", "2018-06-14 15:09:08", "", "0", "https://websitedemos.net/alex01/?post_type=give_forms&#038;p=101", "0", "give_forms", "", "0");
INSERT INTO `wp_posts` VALUES("103", "10", "2018-02-27 12:32:34", "2018-02-27 12:32:34", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>.Â If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><ul><li>Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2Â </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i></i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â toÂ email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "publish", "closed", "closed", "", "donate-2", "", "", "2018-06-12 07:51:04", "2018-06-12 14:51:04", "", "0", "https://websitedemos.net/alex01/?page_id=103", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("123", "3", "2014-02-22 20:10:14", "2014-02-23 04:10:14", "&nbsp;\r\n\r\nThe <span style=\"color: #000000;\"><strong>CareerChoice program</strong></span> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\n&nbsp;\r\n\r\nRead what a participant had to say about the experience: \"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\n<strong>Interested in starting your CareerChoice program?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <span style=\"color: #000000;\"><a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at info@localhost to get you going.", "CareerChoice Program", "", "publish", "closed", "closed", "", "career-change-program", "", "", "2014-07-24 10:56:59", "2014-07-24 17:56:59", "", "88", "http://localhost/~zastre/?page_id=123", "25", "page", "", "0");
INSERT INTO `wp_posts` VALUES("124", "3", "2014-02-22 20:10:14", "2014-02-23 04:10:14", "", "Career change program", "", "inherit", "open", "open", "", "123-revision-v1", "", "", "2014-02-22 20:10:14", "2014-02-23 04:10:14", "", "123", "http://localhost/~zastre/?p=124", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("126", "10", "2018-03-08 05:45:09", "2018-03-08 05:45:09", "https://websitedemos.net/alex01/wp-content/uploads/sites/173/2018/02/cropped-favicon-free-img.png", "cropped-favicon-free-img.png", "", "inherit", "open", "closed", "", "cropped-favicon-free-img-png", "", "", "2018-03-08 05:45:09", "2018-03-08 05:45:09", "", "0", "https://websitedemos.net/alex01/wp-content/uploads/sites/173/2018/02/cropped-favicon-free-img.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("131", "3", "2014-02-22 20:15:44", "2014-02-23 04:15:44", "The CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much......", "Career Change Program", "", "inherit", "open", "open", "", "123-revision-v1", "", "", "2014-02-22 20:15:44", "2014-02-23 04:15:44", "", "123", "http://localhost/~zastre/?p=131", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("133", "10", "2018-03-08 15:06:39", "2018-03-08 15:06:39", " ", "", "", "publish", "closed", "closed", "", "133", "", "", "2018-03-08 15:06:39", "2018-03-08 15:06:39", "", "0", "https://websitedemos.net/charity-02/?p=133", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("144", "2", "2013-08-08 12:36:03", "2013-08-08 12:36:03", "", "Photo albums", "", "publish", "open", "open", "", "photo-albums", "", "", "2013-08-08 12:36:03", "2013-08-08 12:36:03", "", "0", "http://presscore.dream-demo.com/dummy/?page_id=144", "129", "page", "", "0");
INSERT INTO `wp_posts` VALUES("147", "3", "2014-02-22 20:26:55", "2014-02-23 04:26:55", "South Island Centre is located at:\r\n\r\n3821 A Cedar Hill Cross Road (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.\r\n\r\nThe parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\nBUS ROUTES from downtown: No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross and Shelbourne â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).", "Find Us", "", "inherit", "open", "open", "", "24-revision-v1", "", "", "2014-02-22 20:26:55", "2014-02-23 04:26:55", "", "24", "http://localhost/~zastre/?p=147", "13", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("153", "10", "2018-03-16 07:16:56", "2018-03-16 07:16:56", "", "Harshad Dhale", "", "abandoned", "closed", "closed", "", "harshad-dhale", "", "", "2018-03-16 07:16:56", "2018-03-16 07:16:56", "", "0", "https://websitedemos.net/charity-02/?post_type=give_payment&amp;p=153", "0", "give_payment", "", "1");
INSERT INTO `wp_posts` VALUES("155", "2", "2013-08-08 12:52:35", "2013-08-08 12:52:35", "", "Photos", "", "publish", "closed", "closed", "", "photos", "", "", "2013-08-08 12:52:35", "2013-08-08 12:52:35", "", "0", "http://presscore.dream-demo.com/dummy/?page_id=155", "139", "page", "", "0");
INSERT INTO `wp_posts` VALUES("167", "3", "2014-02-22 20:41:43", "2014-02-23 04:41:43", "<h2>Our Mailing Address:</h2>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h2>Telephone/Fax info</h2>\r\nTelephone: (250) 472-2851, extension 101 to reach the front desk.\r\n\r\nFax: (250) 472-2815\r\n<h2>Website address</h2>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h2>Office hours:</h2>\r\nOur office hours are from <strong>9:00-5:00pm from Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statuary holidays.\r\n\r\nIf our office co-ordinator is on the phone helping another client when you call, the answering machine will come on: please leave a message the stating your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course etc).\r\n<h4>Where on this big parking lot are we?</h4>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li>No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li>Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy <strong>5-7 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2></h2>", "Contact us", "", "inherit", "open", "open", "", "29-revision-v1", "", "", "2014-02-22 20:41:43", "2014-02-23 04:41:43", "", "29", "http://localhost/~zastre/?p=167", "75", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("168", "3", "2014-07-22 11:13:48", "2014-07-22 18:13:48", "<h3><span style=\"color: #000000;\">Our mailing address:</span></h3>\n<i class=\"fa fa-envelope\"><span style=\"color: transparent; display: none;\">icon-envelope</span></i>Â 3821A Cedar Hill Cross Road\n\nVictoria, BC\n\nV8P 2M6\n<h3></h3>\n<h3><span style=\"color: #000000;\">Telephone/Fax info:</span></h3>\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\n\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\n<h3></h3>\n<h3><span style=\"color: #000000;\"><strong>Office hours</strong>:</span></h3>\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\n\nSouth Island Centre is <strong>closed</strong> on all statutory holidays.\n\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\n\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Counselling hours:</span></span> weekdays during office hours, and some evenings and weekends (please inquire).\n<h3></h3>\n<h3><span style=\"color: #000000;\"><strong>E-mails:</strong></span></h3>\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\n\n<strong>Director of Services, Bill Cole:<span style=\"color: #000000;\">Â </span></strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\n\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\n\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\n<h3></h3>", "Contact Us", "", "inherit", "open", "open", "", "29-autosave-v1", "", "", "2014-07-22 11:13:48", "2014-07-22 18:13:48", "", "29", "http://localhost/~zastre/?p=168", "75", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("169", "3", "2014-02-22 20:44:12", "2014-02-23 04:44:12", "<h2>Our mailing address:</h2>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h2>Telephone/Fax info:</h2>\r\nTelephone: (250) 472-2851, extension 101 to reach the front desk.\r\n\r\nFax: (250) 472-2815\r\n<h2>Website address:</h2>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h2>Office hours:</h2>\r\nOur office hours are from <strong>9:00-5:00pm from Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statuary holidays.\r\n\r\nIf our office co-ordinator is on the phone helping another client when you call, please leave a voice mail: tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h4>Where on this big parking lot are we?</h4>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li>No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li>Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy <strong>5-7 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2></h2>", "Contact us", "", "inherit", "open", "open", "", "29-revision-v1", "", "", "2014-02-22 20:44:12", "2014-02-23 04:44:12", "", "29", "http://localhost/~zastre/?p=169", "75", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("170", "3", "2014-02-22 20:47:40", "2014-02-23 04:47:40", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â <span style=\"color: rgb(0, 0, 0);\">Samaritan\'s Fund</span></strong><span style=\"color: rgb(0, 0, 0);\">.</span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong>Â </span>(for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Option 1 (preferred)</strong></span></span>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: rgb(0, 0, 0);\"><strong>Option 2</strong></span>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\"><span style=\"text-decoration: underline;\"><span style=\"color: rgb(0, 0, 0); text-decoration: underline;\">O</span><span style=\"color: rgb(0, 0, 0); text-decoration: underline;\">ption 3</span></span></span>:</strong><span style=\"color: rgb(0, 0, 0);\">Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">Click here</span></a></span>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amountÂ </span>we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>In-Kind Donation /VolunteeringÂ </strong></span>\r\n\r\nYou may help us with anÂ <span style=\"color: #000000;\"><strong>in-kind donation</strong></span>Â when you volunteer your time and/or talent\r\n<ul>\r\n	<li>at South Island CentreÂ <strong>events</strong>,</li>\r\n	<li>at the South Island CentreÂ <strong>office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\r\n</ul>\r\nPlease contact us at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <span style=\"color: #000000;\"><a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!", "Support Us", "", "publish", "closed", "closed", "", "donate", "", "", "2014-07-22 11:36:26", "2014-07-22 18:36:26", "", "0", "http://localhost/~zastre/?page_id=170", "102", "page", "", "0");
INSERT INTO `wp_posts` VALUES("171", "3", "2014-02-22 20:47:40", "2014-02-23 04:47:40", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate using the link below.\r\n\r\n<a title=\"Link to Canadahelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to set up a donation with CanadaHelps.org.\r\n\r\nThank you for your support.\r\n\r\nQuestions? Call us! (250) 472-2851 or <a title=\"Email to donate info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a> to email info@localhost\r\n\r\n&nbsp;", "Donate", "", "inherit", "open", "open", "", "170-revision-v1", "", "", "2014-02-22 20:47:40", "2014-02-23 04:47:40", "", "170", "http://localhost/~zastre/?p=171", "12", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("172", "3", "2014-02-22 20:53:23", "2014-02-23 04:53:23", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our <strong>Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\nThere are <strong>3 options to make a donation to our Samaritan\'s Fund</strong> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 1 (preferred)</strong></span>: please mail a cheque (payable to South Island Centre for Counselling and Training) to <em>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</em>. Please include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 2:</strong> </span>Charge a one-time donation to your credit card by calling the office at 250-472-2851, extension 101, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, as well as your mailing/return address. We will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which decreases the amount we actually receive.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 3:</strong></span> <span style=\"color: #000000;\"><a title=\"Donation to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which decreases the amount we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Why monthly or quarterly giving?</strong>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<strong>The Fine Print</strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. You have the right at any time to request that your personal information cease to be used by unsubscribing from our email list, using the Opt-in/Opt-out contact form (go to <em>Contact Us</em> and scroll down). We will not share, sell, trade, or rent your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "First Time Donors", "", "publish", "closed", "closed", "", "first-time-donors", "", "", "2014-07-25 13:44:05", "2014-07-25 20:44:05", "", "170", "http://localhost/~zastre/?page_id=172", "5", "page", "", "0");
INSERT INTO `wp_posts` VALUES("173", "3", "2014-02-22 20:53:23", "2014-02-23 04:53:23", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate using the link below.\r\n\r\nYou may donate in various ways:\r\n<ul>\r\n	<li>send a cheque made out toÂ <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</li>\r\n	<li>charge a donation to your credit card by calling the office at 250-472-2851, extension 101 and the office co-ordinator will process the charge over the phone</li>\r\n	<li><a title=\"Link to Canadahelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org.</li>\r\n	<li>volunteer your time at South Island Centre events or in the office</li>\r\n	<li>volunteer your time as a board member</li>\r\n</ul>\r\n&nbsp;", "First time donors", "", "inherit", "open", "open", "", "172-revision-v1", "", "", "2014-02-22 20:53:23", "2014-02-23 04:53:23", "", "172", "http://localhost/~zastre/?p=173", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("174", "3", "2014-02-22 20:55:20", "2014-02-23 04:55:20", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work.\r\n\r\nYou may help us with anÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\"><strong>in-kind donation</strong></span>Â </span>when you volunteer your time and/or talent\r\n<ul>\r\n	<li>at South Island Centre <strong>events</strong>,</li>\r\n	<li>at the South Island Centre <strong>office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\r\n</ul>\r\nPlease contact us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Volunteer Opportunities", "", "publish", "closed", "closed", "", "volunteer-your-time", "", "", "2015-03-26 12:36:21", "2015-03-26 19:36:21", "", "170", "http://localhost/~zastre/?page_id=174", "14", "page", "", "0");
INSERT INTO `wp_posts` VALUES("175", "3", "2014-02-22 20:55:20", "2014-02-23 04:55:20", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work.\r\n\r\nYou may help us when you\r\n<ul>\r\n	<li>volunteer your time at South Island Centre events or in the office</li>\r\n	<li>volunteer your time as a board member</li>\r\n</ul>\r\n&nbsp;", "Volunteer your time", "", "inherit", "open", "open", "", "174-revision-v1", "", "", "2014-02-22 20:55:20", "2014-02-23 04:55:20", "", "174", "http://localhost/~zastre/?p=175", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("176", "3", "2014-02-22 20:58:43", "2014-02-23 04:58:43", "You can support our charity by making a charitable donation. If this is your first time making a donation to South Island Centre you have three options available.\r\n\r\n1) Send aÂ chequeÂ made payable toÂ South Island Centre for Counselling and TrainingÂ toÂ 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â South Island Centre only issues charitable tax receipts for donations $50 and above. Please include your return address so we can send you a charitable donation receipt.\r\n\r\n2) Make a donation viaÂ telephone with your credit cardÂ by calling the office directly 250-472-2851 and have your payment processedÂ over the phone.\r\n\r\n3) Drop by in person during reception hours of 9-2pm Mon -Thurs to make a donation in person.\r\n\r\nThank you for your support!", "Donations", "", "publish", "closed", "closed", "", "monthly-donations", "", "", "2017-06-27 16:00:25", "2017-06-27 23:00:25", "", "170", "http://localhost/~zastre/?page_id=176", "10", "page", "", "0");
INSERT INTO `wp_posts` VALUES("177", "3", "2014-02-22 20:58:43", "2014-02-23 04:58:43", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate using the options below.\r\n\r\nYou may donate in various ways:\r\n<ul>\r\n	<li>send a monthly cheque made out to <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</li>\r\n	<li>charge a monthly donation to your credit card by calling the office at 250-472-2851, extension 101; the office co-ordinator will process the charge over the phone</li>\r\n	<li><a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a monthly donation with CanadaHelps.org.</li>\r\n</ul>\r\n&nbsp;", "Monthly donations", "", "inherit", "open", "open", "", "176-revision-v1", "", "", "2014-02-22 20:58:43", "2014-02-23 04:58:43", "", "176", "http://localhost/~zastre/?p=177", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("178", "3", "2014-02-22 20:59:01", "2014-02-23 04:59:01", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate using the options below.\r\n\r\nYou may donate in various ways:\r\n<ul>\r\n	<li>send a monthly cheque made out to <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</li>\r\n	<li>charge a monthly donation to your credit card by calling the office at 250-472-2851, extension 101; the office co-ordinator will process the charge over the phone</li>\r\n	<li><a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a monthly donation with CanadaHelps.org.</li>\r\n</ul>\r\n&nbsp;", "Monthly donations to our Samaritan Fund", "", "inherit", "open", "open", "", "176-revision-v1", "", "", "2014-02-22 20:59:01", "2014-02-23 04:59:01", "", "176", "http://localhost/~zastre/?p=178", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("183", "3", "2014-02-22 21:02:20", "2014-02-23 05:02:20", " ", "", "", "publish", "open", "closed", "", "183", "", "", "2014-04-14 14:37:45", "2014-04-14 21:37:45", "", "0", "http://localhost/~zastre/?p=183", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("187", "3", "2014-02-22 21:10:16", "2014-02-23 05:10:16", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul style=\"color: #3b3f42;\">\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></span></li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly <span style=\"color: #000000;\">(<a style=\"color: #576b23;\" title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></li>\r\n	<li>Caregiver Burnout: The Need for Self-Care <span style=\"color: #000000;\">(<a style=\"color: #576b23;\" title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">i<span style=\"color: #000000;\">nformation poster here</span></span></a>)</span></li>\r\n	<li><span style=\"color: #000000;\">Bowen Family Systems Training (<a style=\"color: #576b23;\" title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</span></li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>", "Courses for Personal Development - General Info", "", "publish", "closed", "closed", "", "personal-development-courses", "", "", "2017-07-28 19:17:44", "2017-07-29 02:17:44", "", "15087", "http://localhost/~zastre/?page_id=187", "2", "page", "", "0");
INSERT INTO `wp_posts` VALUES("188", "3", "2014-02-22 21:10:16", "2014-02-23 05:10:16", "We are pleased to offer the following personal development courses:\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (information poster here)</li>\r\n	<li>Art Therapy Group (information poster here)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (information poster here)</li>\r\n	<li>Helping a loved one with a problem like addiction (information poster here)</li>\r\n	<li>CareerChoice (information poster here)</li>\r\n</ul>\r\nFor more information or to register for one of the above courses, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office at 250-472-2851.\r\n\r\n&nbsp;", "Personal Development Courses", "", "inherit", "open", "open", "", "187-revision-v1", "", "", "2014-02-22 21:10:16", "2014-02-23 05:10:16", "", "187", "http://localhost/~zastre/?p=188", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("189", "3", "2014-02-22 21:12:51", "2014-02-23 05:12:51", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Pastoral Care and Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>The Ebb and Flow: Life, Grief and Transition (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFor more information on these courses or to indicate interest, please <a title=\"Contact Form: Register for a Course\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>,Â or call our office atÂ <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - General Info", "", "publish", "closed", "closed", "", "courses-for-those-in-ministry", "", "", "2017-07-28 19:17:55", "2017-07-29 02:17:55", "", "0", "http://localhost/~zastre/?page_id=189", "34", "page", "", "0");
INSERT INTO `wp_posts` VALUES("190", "3", "2014-02-22 21:12:51", "2014-02-23 05:12:51", "We are pleased to offer the following courses for those working in Ministry fields:\r\n<ul>\r\n	<li>Twilight Journeys (information poster here)</li>\r\n	<li>Pastoral Care and Counselor Training (information poster here)</li>\r\n	<li>Brief Solution Focused Therapy (information poster here)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (information poster here)</li>\r\n	<li>Helping People Change (information poster here)</li>\r\n	<li>Bowen Family Systems Training (information poster here)</li>\r\n</ul>\r\nFor more information on these courses please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for those in Ministry", "", "inherit", "open", "open", "", "189-revision-v1", "", "", "2014-02-22 21:12:51", "2014-02-23 05:12:51", "", "189", "http://localhost/~zastre/?p=190", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("191", "3", "2014-02-22 21:14:05", "2014-02-23 05:14:05", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find information onÂ <em>specific dates and times of up-coming courses</em><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â in the <strong><em>Upcoming Events</em></strong> sidebar on your right. Â </span></span>\r\n\r\nBelow are general information posters on courses and training programs.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">i<span style=\"color: #000000;\"><span style=\"color: #000000;\">nformation poster here</span></span></a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register for a current course, pleaseÂ <a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill in the form or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - General Info", "", "publish", "closed", "closed", "", "training-for-professional-and-volunteer-support-workerscaregivers", "", "", "2017-07-28 19:17:48", "2017-07-29 02:17:48", "", "15087", "http://localhost/~zastre/?page_id=191", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("192", "3", "2014-02-22 21:14:05", "2014-02-23 05:14:05", "", "Training for professional and volunteer support workers/caregivers", "", "inherit", "open", "open", "", "191-revision-v1", "", "", "2014-02-22 21:14:05", "2014-02-23 05:14:05", "", "191", "http://localhost/~zastre/?p=192", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("193", "3", "2014-02-22 21:14:48", "2014-02-23 05:14:48", "We are pleased to offer the following courses for those working in Ministry fields:\r\n<ul>\r\n	<li>Twilight Journeys (information poster here)</li>\r\n	<li>Pastoral Care and Counselor Training (information poster here)</li>\r\n	<li>Brief Solution Focused Therapy (information poster here)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (information poster here)</li>\r\n	<li>Helping People Change (information poster here)</li>\r\n	<li>Bowen Family Systems Training (information poster here)</li>\r\n</ul>\r\nFor more information on these courses pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost or call our office at 250-472-2851, extension 101.", "Training for professional and volunteer support workers/caregivers", "", "inherit", "open", "open", "", "191-revision-v1", "", "", "2014-02-22 21:14:48", "2014-02-23 05:14:48", "", "191", "http://localhost/~zastre/?p=193", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("199", "3", "2014-02-22 21:26:53", "2014-02-23 05:26:53", "<h3><strong><span style=\"color: #000000;\">Generous Individuals like yourself</span></strong></h3>\r\nProvince of BC\r\n\r\nUnited Way of Greater Victoria\r\n\r\nCoast Capital Savings\r\n\r\nSt Luke Cedar Hill Anglican Church\r\n\r\n&nbsp;", "Thank You to Our Supporters", "", "publish", "closed", "closed", "", "sponsors", "", "", "2017-02-22 11:35:43", "2017-02-22 19:35:43", "", "170", "http://localhost/~zastre/?page_id=199", "59", "page", "", "0");
INSERT INTO `wp_posts` VALUES("200", "3", "2014-02-22 21:26:53", "2014-02-23 05:26:53", "TBA", "Sponsors", "", "inherit", "open", "open", "", "199-revision-v1", "", "", "2014-02-22 21:26:53", "2014-02-23 05:26:53", "", "199", "http://localhost/~zastre/?p=200", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("201", "2", "2013-08-08 14:18:15", "2013-08-08 14:18:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][dt_benefits_vc columns=\"4\" style=\"1\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"4\" orderby=\"date\" order=\"desc\" animation=\"scale\" category=\"no-captions,captions1\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]Turpis venenatis at laoreet. Etiam lorem nulla fuviverra minim sed metus egestas sapien conseto actetuer, ac etiam amet bibendum lorem ipsum dolor amet cras posuere pede placerat, velit neque felisios. Dolor ut mollis elit et vestibulum mattis integer aenean nulla, in vitae id augue vitae amet minim.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"45\" padding_bottom=\"30\" margin_top=\"25\" margin_bottom=\"45\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Core Features of The7</h2>\n<h4 style=\"text-align: center;\">Super Powerful &amp; Easy to Use Theme</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_gap height=\"5\"][vc_single_image image=\"12674\" css_animation=\"left-to-right\" img_link_target=\"_self\" img_size=\"580x307\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.[dt_gap height=\"20\" /]\n\n[dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]Exclusive slideshows[/dt_list_item][dt_list_item image=\"\"]Multiple header layouts[/dt_list_item][dt_list_item image=\"\"]Premium-class support for free[/dt_list_item][dt_list_item image=\"\"]100% Mobile tested[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]6 ready-made skins[/dt_list_item][dt_list_item image=\"\"]Compatible with popular plugins[/dt_list_item][dt_list_item image=\"\"]16 custom widgets[/dt_list_item][dt_list_item image=\"\"]40+ visual shortcodes[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][dt_gap height=\"15\"][dt_button target_blank=\"false\" size=\"small\" animation=\"scale\" link=\"http://the7.dream-demo.com/features/full-features-list/\"]View All Features[/dt_button][dt_gap height=\"20\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Clients &amp; Testimonials</h2>\n<h4 style=\"text-align: center;\">More then 20 000 of happy customers</h4>\n[/vc_column_text][dt_gap height=\"45\"][/vc_column][/vc_row][vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/2\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/2\"][dt_logos columns=\"3\" dividers=\"true\" number=\"6\" orderby=\"date\" order=\"asc\" animation=\"scale\"][dt_gap height=\"45\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"45\" padding_bottom=\"30\" margin_top=\"10\" margin_bottom=\"0\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Featured Portfolio Projects</h2>\n<h4 style=\"text-align: center;\">Best &amp; Most Popular of Our Works</h4>\n[/vc_column_text][dt_gap height=\"33\"][vc_column_text]\n<p style=\"text-align: center;\">Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas lorem.\nNulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames turpis egestas![/vc_column_text][dt_gap height=\"40\"][dt_portfolio_slider height=\"320\" width=\"320\" meta_info=\"false\" margin_top=\"0\" margin_bottom=\"-29\" number=\"10\" orderby=\"date\" order=\"desc\" category=\"03-portfolio,07-portfolio,05-portfolio,projects-1,projects-2,projects-3,projects-4\" appearance=\"from_bottom\" under_image_buttons=\"under_image\" hover_animation=\"direction_aware\" hover_bg_color=\"dark\" hover_content_visibility=\"on_hover\"][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"45\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text]</p>\n\n<h2 style=\"text-align: center;\">Our Skills &amp; Services</h2>\n<h4 style=\"text-align: center;\">Who We Are &amp; What We Do</h4>\n[/vc_column_text][dt_gap height=\"42\"][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\n<h4>What we are good at</h4>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit amet urabitur quis lacus at neque interdum tempor.[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_progress_bars show_percentage=\"true\"][dt_progress_bar title=\"Web design\" color=\"\" percentage=\"90\" /][dt_progress_bar title=\"Photography\" color=\"\" percentage=\"75\" /][dt_progress_bar title=\"Marketing &amp; PR\" color=\"\" percentage=\"60\" /][dt_progress_bar title=\"Consulting\" color=\"\" percentage=\"45\" /][/dt_progress_bars][/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/2\"][dt_gap height=\"2\"][vc_tabs style=\"tab-style-one\" interval=\"0\"][vc_tab title=\"Web design\" tab_id=\"1378818650212-2-240ee-02b5\"][vc_column_text][dt_fancy_image style=\"1\" lightbox=\"0\" align=\"left\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"188\" image_alt=\"The7 - Premium WordPress Theme\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\"][/dt_fancy_image]Lorem ipsum dolor sit amet, consectetur adipiscing elit. CurabiturÂ [dt_tooltip title=\"neque interdum\"]Maecenas enim velit. Maecenas eu metus vel leo placerat cursus.[/dt_tooltip] tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit. Maecenas eu metus vel leo placerat cursus. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla lorem ipsum porta lorem ipsum.Â Glavrida dolor ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][vc_tab title=\"Programming\" tab_id=\"1378818268-1-5540ee-02b5\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Fusce nec ipsum ac mauris imperdiet luctus sed vitae ligula.[dt_gap height=\"20\" /]\n\n[dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]Exclusive slideshows[/dt_list_item][dt_list_item image=\"\"]Multiple header layouts[/dt_list_item][dt_list_item image=\"\"]Premium-class support for free[/dt_list_item][dt_list_item image=\"\"]100% Mobile tested[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]6 ready-made skins[/dt_list_item][dt_list_item image=\"\"]Compatible with popular plugins[/dt_list_item][dt_list_item image=\"\"]25 custom widgets[/dt_list_item][dt_list_item image=\"\"]40+ visual shortcodes[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][/vc_tab][vc_tab title=\"Photography\" tab_id=\"1378818268-2-3540ee-02b5\"][vc_column_text][dt_gap height=\"5\" /]\n\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12884,12882,12880,12879,12885,12898,12896\"]\n\n[dt_gap height=\"15\" /]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][vc_tab title=\"SEO\" tab_id=\"1378819835493-4-540ee-02b5\"][vc_column_text][dt_fancy_image style=\"1\" lightbox=\"0\" align=\"left\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"188\" image_alt=\"The7 - Premium WordPress Theme\" image=\"http://the7.dream-demo.com/dummy/wp-content/uploads/2013/08/dt-015.jpg\"][/dt_fancy_image]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur dolor amet glavrida tellus, quis lorem ipsum tooltip luctus ligula.\n\nCurabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus. Nullam rutrum velit eget quam [dt_highlight color=\"blue\"]pretium amet vehicula[/dt_highlight] adipiscing elit. Maecenas enim velit. Maecenas eu metus vel leo placerat cursus. Curabitur quis rhoncus tellus, quisÂ [dt_highlight color=\"berry\"]lorem ipsum dolor[/dt_highlight] luctus ligula. Curabitur laoreet fringilla lorem ipsum porta. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][/vc_tabs][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h4>Get in touch!</h4>\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,message\" message_height=\"5\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"small\"][/vc_column][/vc_row]", "Porthole slider", "", "publish", "closed", "closed", "", "porthole", "", "", "2013-08-08 14:18:15", "2013-08-08 14:18:15", "", "12958", "http://presscore.dream-demo.com/dummy/?page_id=201", "18", "page", "", "0");
INSERT INTO `wp_posts` VALUES("217", "3", "2014-02-23 15:31:52", "2014-02-23 23:31:52", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/?p=13952\"> Amber Eves</a> (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=44\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span></span></a>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie (Volunteer Counsellor)</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Peter Simmons (Volunteer Counsellor)\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/peter-simmons-ba-mdiv/\" target=\"_blank\"><span style=\"color: #000000;\">Peter Simmons</span></a></span>Â (Volunteer Counsellor)</strong>: Anxiety, Stress, Self-Esteem, Depression, Vocational Life Transitions\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "publish", "closed", "closed", "", "counsellors-2", "", "", "2017-07-28 19:11:37", "2017-07-29 02:11:37", "", "15117", "http://localhost/~zastre/?page_id=217", "9", "page", "", "0");
INSERT INTO `wp_posts` VALUES("218", "3", "2014-02-23 15:31:52", "2014-02-23 23:31:52", "", "Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-02-23 15:31:52", "2014-02-23 23:31:52", "", "217", "http://localhost/~zastre/?p=218", "41", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("221", "3", "2014-02-23 15:37:12", "2014-02-23 23:37:12", "<h2>Bill Cole</h2>\r\n&nbsp;\r\n<h2>Barbara Baillie</h2>\r\n&nbsp;\r\n<h2>Margaret McKinnon Anderson</h2>", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-02-23 15:37:12", "2014-02-23 23:37:12", "", "60", "http://localhost/~zastre/?p=221", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("224", "3", "2014-02-23 16:18:10", "2014-02-24 00:18:10", "We are pleased to offer the following personal development courses:\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (information poster here)</li>\r\n	<li>Art Therapy Group (information poster here)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (information poster here)</li>\r\n	<li>Helping a loved one with a problem like addiction (information poster here)</li>\r\n	<li>CareerChoice (information poster here)</li>\r\n</ul>\r\nFor more information or to register for one of the above courses, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office at 250-472-2851.\r\n\r\n&nbsp;", "Courses for personal development", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-02-23 16:18:10", "2014-02-24 00:18:10", "", "187", "http://localhost/~zastre/?p=224", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("226", "3", "2014-02-23 16:20:27", "2014-02-24 00:20:27", "If you think you might benefit from speaking to one of our counsellors and to book an appointment, you may\r\n<ul>\r\n	<li>call our office at 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.</li>\r\n</ul>\r\nIf you call the office and the answering machine comes on, please leave a message stating your name, a contact phone number, and the reason you are calling (for example: to set up an appointment, to find out more about our services etc).\r\n\r\n<span style=\"line-height: 1.5;\">Weâ€™re here to help!</span>", "Information for prospective clients", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-02-23 16:20:27", "2014-02-24 00:20:27", "", "64", "http://localhost/~zastre/?p=226", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("227", "3", "2014-02-23 16:20:59", "2014-02-24 00:20:59", "If you think you might benefit from speaking to one of our counsellors and to book an appointment, you may\r\n<ul>\r\n	<li>call our office at 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.</li>\r\n</ul>\r\nIf you call the office and the answering machine comes on, please leave a message stating your name, a contact phone number, and the reason you are calling (for example: to set up an appointment, to find out more about our services etc).\r\n\r\n<span style=\"line-height: 1.5;\">Weâ€™re here to help!</span>", "Information for Prospective Clients", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-02-23 16:20:59", "2014-02-24 00:20:59", "", "64", "http://localhost/~zastre/?p=227", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("228", "3", "2014-02-23 16:21:44", "2014-02-24 00:21:44", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate using the link below.\r\n\r\nYou may donate in various ways:\r\n<ul>\r\n	<li>send a cheque made out toÂ <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</li>\r\n	<li>charge a donation to your credit card by calling the office at 250-472-2851, extension 101 and the office co-ordinator will process the charge over the phone</li>\r\n	<li><a title=\"Link to Canadahelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org.</li>\r\n	<li>volunteer your time at South Island Centre events or in the office</li>\r\n	<li>volunteer your time as a board member</li>\r\n</ul>\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-02-23 16:21:44", "2014-02-24 00:21:44", "", "172", "http://localhost/~zastre/?p=228", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("229", "3", "2014-02-23 16:22:31", "2014-02-24 00:22:31", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate using the options below.\r\n\r\nYou may donate in various ways:\r\n<ul>\r\n	<li>send a monthly cheque made out to <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.</li>\r\n	<li>charge a monthly donation to your credit card by calling the office at 250-472-2851, extension 101; the office co-ordinator will process the charge over the phone.</li>\r\n	<li><a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a monthly donation with CanadaHelps.org.</li>\r\n</ul>\r\n&nbsp;", "Monthly Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-02-23 16:22:31", "2014-02-24 00:22:31", "", "176", "http://localhost/~zastre/?p=229", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("236", "3", "2014-02-23 21:02:49", "2014-02-24 05:02:49", "<h2>Our mailing address:</h2>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h2>Telephone/Fax info:</h2>\r\nTelephone: (250) 472-2851, extension 101 to reach the front desk.\r\n\r\nFax: (250) 472-2815\r\n\r\nContact us:\r\n\r\nbestwebsoft_contact_form]\r\n<h2>Website address:</h2>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h2>Office hours:</h2>\r\nOur office hours are from <strong>9:00-5:00pm from Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statuary holidays.\r\n\r\nIf our office co-ordinator is on the phone helping another client when you call, please leave a voice mail: tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h4>Where on this big parking lot are we?</h4>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li>No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li>Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy <strong>5-7 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2></h2>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-02-23 21:02:49", "2014-02-24 05:02:49", "", "29", "http://localhost/~zastre/?p=236", "75", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("237", "3", "2014-02-23 21:04:37", "2014-02-24 05:04:37", "<h2>Our mailing address:</h2>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h2>Telephone/Fax info:</h2>\r\nTelephone: (250) 472-2851, extension 101 to reach the front desk.\r\n\r\nFax: (250) 472-2815\r\n<h4><span style=\"font-size: 1.5em; line-height: 1.5em;\">Website address:</span></h4>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h2>Office hours:</h2>\r\nOur office hours are from <strong>9:00-5:00pm from Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statuary holidays.\r\n\r\nIf our office co-ordinator is on the phone helping another client when you call, please leave a voice mail: tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h4>Where on this big parking lot are we?</h4>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li>No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li>Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy <strong>5-7 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2></h2>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-02-23 21:04:37", "2014-02-24 05:04:37", "", "29", "http://localhost/~zastre/?p=237", "75", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("238", "3", "2014-02-23 21:07:05", "2014-02-24 05:07:05", "<h2>Our mailing address:</h2>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h2>Telephone/Fax info:</h2>\r\nTelephone: (250) 472-2851, extension 101 to reach the front desk.\r\n\r\nFax: (250) 472-2815\r\n<h4><span style=\"font-size: 1.5em; line-height: 1.5em;\">Website address:</span></h4>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h2>Office hours:</h2>\r\nOur office hours are from <strong>9:00-5:00pm from Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statuary holidays.\r\n\r\nIf our office co-ordinator is on the phone helping another client when you call, please leave a voice mail: tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h4>Where on this big parking lot are we?</h4>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li>No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li>Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy <strong>5-7 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2>[bestwebsoft_contact_form]</h2>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-02-23 21:07:05", "2014-02-24 05:07:05", "", "29", "http://localhost/~zastre/?p=238", "75", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("247", "3", "2014-02-23 21:33:44", "2014-02-24 05:33:44", "At South Island Centre we believe it is important that everyone has access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at 250-472-2851 or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!", "Affordable Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-02-23 21:33:44", "2014-02-24 05:33:44", "", "54", "http://localhost/~zastre/?p=247", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("249", "3", "2014-02-23 21:37:40", "2014-02-24 05:37:40", "If you think you might benefit from speaking to one of our counsellors and to book an appointment, you may\r\n<ul>\r\n	<li>call our office at 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.</li>\r\n</ul>\r\nOur office hours are Monday-Friday from 9:00am-5:00pm. We are closed on statuary holidays.\r\n\r\nShould our office co-ordinator not be available at the time of your call, please leave a message on our voice mail, stating your name, a contact phone number, and the reason you called (for example: to set up an appointment, to find out more about our services etc).\r\n\r\n<span style=\"line-height: 1.5;\">Weâ€™re here to help!</span>", "Information for Prospective Clients", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-02-23 21:37:40", "2014-02-24 05:37:40", "", "64", "http://localhost/~zastre/?p=249", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("251", "3", "2014-02-23 21:44:35", "2014-02-24 05:44:35", "South Island Centre is a non-profit counselling and training agency funded solely through donations, fees, and grants. We have been serving Victoria communities since 1975. Â South Island Centre services include:\r\n<ul>\r\n	<li>Individual, couple and family counselling</li>\r\n	<li>Workshops, courses and training programs</li>\r\n	<li>Consultation for mental health professionals and clergy</li>\r\n	<li>Career change and development programs</li>\r\n</ul>\r\nSouth Island Centre counsellors provide a safe, positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, you don\'t have to go through it alone!\r\n<h4>Our Mission Statement</h4>\r\nWe provide professional services to individuals, families and organizations, facilitating personal, relational and spiritual wholeness.\r\n<h4>South Island Centre counsellors can help with:</h4>\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nWe\'re here to help!\r\n\r\nPlease contact us by calling 250-472-2851, extension 101 or <a title=\"Email link to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h2></h2>", "General Information", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-02-23 21:44:35", "2014-02-24 05:44:35", "", "35", "http://localhost/~zastre/?p=251", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("252", "3", "2014-02-23 21:49:05", "2014-02-24 05:49:05", "If you think you might benefit from speaking to one of our counsellors and would like to go ahead and book an appointment, you may\r\n<ul>\r\n	<li>call our office at 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.</li>\r\n</ul>\r\nOur office hours are Monday-Friday from 9:00am-5:00pm. We are closed on statuary holidays.\r\n\r\nShould our office co-ordinator be unavailable at the time of your call, please leave a message on our voice mail, stating your name, a contact phone number, and the reason you called (for example: to set up an appointment, to find out more about our services, to register for a course etc).\r\n\r\n<span style=\"line-height: 1.5;\">Weâ€™re here to help!</span>", "Information for Prospective Clients - Appointments", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-02-23 21:49:05", "2014-02-24 05:49:05", "", "64", "http://localhost/~zastre/?p=252", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("253", "3", "2014-02-23 21:49:43", "2014-02-24 05:49:43", "We are pleased to offer the following personal development courses:\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (information poster here)</li>\r\n	<li>Art Therapy Group (information poster here)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (information poster here)</li>\r\n	<li>Helping a loved one with a problem like addiction (information poster here)</li>\r\n	<li>CareerChoice (information poster here)</li>\r\n</ul>\r\nFor more information or to register for one of the above courses, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office at 250-472-2851.\r\n\r\n&nbsp;", "Courses for Personal Development", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-02-23 21:49:43", "2014-02-24 05:49:43", "", "187", "http://localhost/~zastre/?p=253", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("254", "3", "2014-07-30 11:14:54", "2014-07-30 18:14:54", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\n\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\n\n&nbsp;\n<ul>\n	<li>Twilight Journeys (<a title=\"Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\n	<li>Pastoral Care and Counsellor Training (<a title=\"Pastoral Care and Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\n	<li>Brief Solution Focused Therapy <span style=\"text-decoration: underline;\">(<span style=\"color: #000000;\">information poster here</span></span>)</li>\n	<li>The Ebb and Flow: Life, Grief and Transition (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Helping People Chagne (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\n</ul>\n&nbsp;\n\n&nbsp;\n\nFor more information on these courses or to indicate interest or register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to <strong>email</strong> us at courses@localhost or call our office atÂ <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-autosave-v1", "", "", "2014-07-30 11:14:54", "2014-07-30 18:14:54", "", "189", "http://localhost/~zastre/?p=254", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("255", "3", "2014-02-23 21:53:17", "2014-02-24 05:53:17", "We are pleased to offer the following courses for those working in Ministry fields:\r\n<ul>\r\n	<li>Twilight Journeys (information poster here)</li>\r\n	<li>Pastoral Care and Counselor Training (information poster here)</li>\r\n	<li>Brief Solution Focused Therapy (information poster here)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (information poster here)</li>\r\n	<li>Helping People Change (information poster here)</li>\r\n	<li>Bowen Family Systems Training (information poster here)</li>\r\n</ul>\r\nFor more information on these courses or to register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\nPlease include the <span style=\"text-decoration: underline;\">course</span> you are registering for or inquiring about in the<span style=\"text-decoration: underline;\"> subject line</span>, and a contact name and phone number we can reach you at in the main body of the text. Thank you!\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-02-23 21:53:17", "2014-02-24 05:53:17", "", "189", "http://localhost/~zastre/?p=255", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("256", "3", "2014-02-23 21:54:33", "2014-02-24 05:54:33", "We are pleased to offer the following personal development courses:\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (information poster here)</li>\r\n	<li>Art Therapy Group (information poster here)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (information poster here)</li>\r\n	<li>Helping a loved one with a problem like addiction (information poster here)</li>\r\n	<li>CareerChoice (information poster here)</li>\r\n</ul>\r\nFor more information on these courses or to register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\nPlease include theÂ <span style=\"text-decoration: underline;\">course</span>Â you are registering for or inquiring about in theÂ <span style=\"text-decoration: underline;\">subject line</span>, and a contact name and phone number we can reach you at in the main body of the text. Thank you!\r\n\r\n&nbsp;", "Courses for Personal Development", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-02-23 21:54:33", "2014-02-24 05:54:33", "", "187", "http://localhost/~zastre/?p=256", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("259", "3", "2014-02-23 21:58:55", "2014-02-24 05:58:55", "We are pleased to offer the following courses for those working in Ministry fields (listed according to date):\r\n<ul>\r\n	<li>Twilight Journeys (information poster here)</li>\r\n	<li>Pastoral Care and Counselor Training (information poster here)</li>\r\n	<li>Brief Solution Focused Therapy (information poster here)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (information poster here)</li>\r\n	<li>Helping People Change (information poster here)</li>\r\n	<li>Bowen Family Systems Training (information poster here)</li>\r\n</ul>\r\nFor more information on these courses or to register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\nPlease include theÂ <span style=\"text-decoration: underline;\">course</span>Â you are registering for or inquiring about in theÂ <span style=\"text-decoration: underline;\">subject line</span>, and a contact name and phone number we can reach you at in the main body of the text. Thank you!", "Training for Professional and Volunteer Support Workers/Caregivers", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-02-23 21:58:55", "2014-02-24 05:58:55", "", "191", "http://localhost/~zastre/?p=259", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("260", "3", "2014-07-25 13:43:03", "2014-07-25 20:43:03", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our <strong>Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\n\n&nbsp;\n\nThere are <strong>3 options to make a donation to our Samaritan\'s Fund</strong> (for example: one-time, monthly, quarterly, annual etc):\n<ul>\n	<li><span style=\"text-decoration: underline;\"><strong>Option 1 (preferred)</strong></span>: please mail a cheque (payable to South Island Centre for Counselling and Training) to <em>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</em>. Please include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\n	<li><span style=\"text-decoration: underline;\"><strong>Option 2:</strong> </span>Charge a one-time donation to your credit card by calling the office at 250-472-2851, extension 101, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, as well as your mailing/return address. We will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which decreases the amount we actually receive.</li>\n	<li><span style=\"text-decoration: underline;\"><strong>Option 3:</strong></span> <span style=\"color: #000000;\"><a title=\"Donation to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which decreases the amount we actually receive.</li>\n</ul>\n&nbsp;\n\n<strong>Why monthly or quarterly giving?</strong>\n\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\n\n&nbsp;\n\n<strong>The Fine Print</strong>\n\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. You have the right at any time to request that your personal information cease to be used by unsubscribing to using the Opt-in/Opt-out contact form (go to Contact Us and scroll down). We will not share, sell, trade, rent or your contact information with any outside source.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-autosave-v1", "", "", "2014-07-25 13:43:03", "2014-07-25 20:43:03", "", "172", "http://localhost/~zastre/?p=260", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("261", "3", "2014-02-23 22:06:28", "2014-02-24 06:06:28", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\nMake a one-time (or a annual, bi-annual, quarterly or monthly) donation to our Samaritan Fund. You may:\r\n<ul>\r\n	<li>Mail a cheque made out toÂ <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.</li>\r\n	<li>Charge a donation to your credit card by calling the office at 250-472-2851, extension 101 and the office co-ordinator will process the charge over the phone.</li>\r\n	<li><a title=\"Link to Canadahelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org.</li>\r\n</ul>\r\nSouth Island Centre appreciates when you\r\n<ul>\r\n	<li>Volunteer your time at South Island Centre events or in the office.</li>\r\n	<li>Volunteer your time as a board member.</li>\r\n</ul>\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-02-23 22:06:28", "2014-02-24 06:06:28", "", "172", "http://localhost/~zastre/?p=261", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("262", "3", "2017-06-22 13:32:09", "2017-06-22 20:32:09", "South Island Centre relies on donationsÂ to support our charity. If this is your first time making a donation to South Island Centre we have two options available.\n<ul>\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1</strong>:</span>Â mail aÂ chequeÂ payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your return address so that we can send you a charitable donation receipt.</li>\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span><span style=\"color: #000000;\">Make a donation viaÂ </span><strong>credit card</strong>Â by calling the office at Â <strong>250-472-2851, extension 101Â </strong>to have your payment processedÂ over the phone.</li>\n</ul>\n&nbsp;\n\nPlease note All personal contact information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about up-coming events and schedules, courses and services, as well as fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"color: #3366ff;\">Â </span>", "Donations to South Island Centre", "", "inherit", "closed", "closed", "", "176-autosave-v1", "", "", "2017-06-22 13:32:09", "2017-06-22 20:32:09", "", "176", "http://localhost/~zastre/?p=262", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("263", "3", "2014-02-23 22:13:32", "2014-02-24 06:13:32", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate using the options below.\r\n\r\nYou may make regular donations and\r\n<ul>\r\n	<li>Send monthly post-dated cheques made out to <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.</li>\r\n	<li>Charge a monthly or bi-monthly donation to your credit card by calling the office at 250-472-2851, extension 101; the office co-ordinator will set up a payment schedule that fits your generosity: you may choose which day(s) of the month and the amount your visa card will be charged.</li>\r\n	<li><a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a monthly donation with CanadaHelps.org.</li>\r\n</ul>\r\n&nbsp;", "Regular Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-02-23 22:13:32", "2014-02-24 06:13:32", "", "176", "http://localhost/~zastre/?p=263", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("264", "3", "2014-02-24 07:13:30", "2014-02-24 15:13:30", "The CareerChoice program at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much......", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-revision-v1", "", "", "2014-02-24 07:13:30", "2014-02-24 15:13:30", "", "123", "http://localhost/~zastre/?p=264", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("266", "3", "2014-02-24 19:12:58", "2014-02-25 03:12:58", "South Island Centre is located at:\r\n\r\n3821 A Cedar Hill Cross Road (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.\r\n\r\nThe parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\nBUS ROUTES from downtown: No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross and Shelbourne â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).", "Find Us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-02-24 19:12:58", "2014-02-25 03:12:58", "", "24", "http://localhost/~zastre/?p=266", "13", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("267", "3", "2014-02-24 19:15:51", "2014-02-25 03:15:51", "", "Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-02-24 19:15:51", "2014-02-25 03:15:51", "", "88", "http://localhost/~zastre/?p=267", "18", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("268", "3", "2014-02-24 19:20:35", "2014-02-25 03:20:35", "TBA", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-02-24 19:20:35", "2014-02-25 03:20:35", "", "199", "http://localhost/~zastre/?p=268", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("271", "3", "2014-03-16 15:31:33", "2014-03-16 22:31:33", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work.\n\nYou may help us with anÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong>Â </span>when you volunteer your time and talent\n<ul>\n	<li>at South Island Centre <strong>events</strong>,</li>\n	<li>at the South Island Centre <strong>office</strong>,</li>\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\n</ul>\nPlease contact us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\n\nThank you for your generosity!\n\n&nbsp;", "Volunteer opportunities", "", "inherit", "closed", "closed", "", "174-autosave-v1", "", "", "2014-03-16 15:31:33", "2014-03-16 22:31:33", "", "174", "http://localhost/~zastre/?p=271", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("272", "3", "2014-02-24 19:25:41", "2014-02-25 03:25:41", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work.\r\n\r\nYou may help us when you\r\n<ul>\r\n	<li>volunteer your time at South Island Centre events or in the office, or</li>\r\n	<li>volunteer your time as a board member.</li>\r\n</ul>\r\nPlease contact us at 250-472-2851, extension 101 (front desk) or <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">click here</a> email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause! Thank you.\r\n\r\n&nbsp;", "Volunteer Your Time", "", "inherit", "closed", "closed", "", "174-revision-v1", "", "", "2014-02-24 19:25:41", "2014-02-25 03:25:41", "", "174", "http://localhost/~zastre/?p=272", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("274", "3", "2014-02-24 19:51:40", "2014-02-25 03:51:40", "<ul>\r\n	<li>What is the role of Pastoral Care in the church?</li>\r\n	<li>Learn about Palliative Care and End-of-life issues.</li>\r\n	<li>How are we doing \"caring well\" for our elderly?</li>\r\n	<li>Understand Caring Well and Dying Well</li>\r\n	<li>The Speak- Up Campaign</li>\r\n</ul>\r\nSuggested donation: $10.00\r\n\r\n<strong style=\"font-size: 14px; line-height: 1.5em;\">Workshop Facilitator: Margaret Anderson, Grief &amp; Loss counsellor, end-of-lifeÂ </strong><span style=\"font-size: 14px; line-height: 1.5em;\">(specialist and member of the Canadian Hospice and Palliative Care Association)</span>", "Caring Well for our Aging Population (facilitator: Margaret Anderson)", "", "publish", "closed", "closed", "", "pastoral-care-team-dialogue-caring-well-for-our-aging-population", "", "", "2014-03-20 06:27:44", "2014-03-20 13:27:44", "", "0", "http://localhost/~zastre/?post_type=ai1ec_event&#038;p=274&#038;instance_id=", "25", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("277", "3", "2014-02-24 19:59:13", "2014-02-25 03:59:13", "[gview file=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\"]\r\n\r\nThis workshop on grief, loss and life transitions is for caregivers,Â clergy and anyone who is walking alongside people who areÂ grieving or struggling with a significant life transition. AcquireÂ helpful resources and coping strategies.\r\n\r\n<strong>Workshop Facilitator: Margaret Anderson</strong> (Counsellor and Educator in Grief, Loss and End of Life Care,Â Member of the Canadian Hospice and Palliative Care Association)", "The Ebb and Flow of Life (facilitator: Margaret Anderson), Day 1", "", "publish", "closed", "closed", "", "the-ebb-and-flow-of-life-facilitator-margaret-anderson", "", "", "2014-03-20 10:41:07", "2014-03-20 17:41:07", "", "0", "http://localhost/~zastre/?post_type=ai1ec_event&#038;p=277&#038;instance_id=", "25", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("281", "3", "2014-02-24 21:34:01", "2014-02-25 05:34:01", "<strong>Margaret Anderson</strong> is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\n\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\n\n&nbsp;\n\n&nbsp;", "Margaret (McKinnon) Anderson", "", "inherit", "closed", "closed", "", "44-autosave-v1", "", "", "2014-02-24 21:34:01", "2014-02-25 05:34:01", "", "44", "http://localhost/~zastre/?p=281", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("282", "3", "2014-02-24 21:35:16", "2014-02-25 05:35:16", "<strong>Margaret Anderson</strong> is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret (McKinnon) Anderson", "", "inherit", "closed", "closed", "", "44-revision-v1", "", "", "2014-02-24 21:35:16", "2014-02-25 05:35:16", "", "44", "http://localhost/~zastre/?p=282", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("284", "3", "2014-02-25 05:41:36", "2014-02-25 13:41:36", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne St, away from UVic). <strong>Parking is free.</strong>\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"South Island Centre location (MapQuest)\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill/Cedar Hill Cross</strong>Â <strong>Roads</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location: Find us", "", "publish", "closed", "closed", "", "location-find-us", "", "", "2014-07-09 10:04:05", "2014-07-09 17:04:05", "", "0", "http://localhost/~zastre/?page_id=284", "57", "page", "", "0");
INSERT INTO `wp_posts` VALUES("285", "3", "2014-02-25 05:41:36", "2014-02-25 13:41:36", "", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-02-25 05:41:36", "2014-02-25 13:41:36", "", "284", "http://localhost/~zastre/?p=285", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("286", "3", "2014-03-21 06:44:14", "2014-03-21 13:44:14", "Our street address is:\n\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\n\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\n\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"Location of South Island Centre (MapQuest)\" href=\"http://www.mapquest.ca/#f0d976c5e6cc2869af231c87\" target=\"_blank\">Click here</a> to see our location on MapQuest.\n\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\n<ul>\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill and Cedar Hill Cross</strong>Â <strong>Rds</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne Ave</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne Ave</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\n</ul>\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\n\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\n\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\n\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-autosave-v1", "", "", "2014-03-21 06:44:14", "2014-03-21 13:44:14", "", "284", "http://localhost/~zastre/?p=286", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("287", "3", "2014-02-25 05:52:48", "2014-02-25 13:52:48", "Our street address is:\r\n\r\n<strong>3821 A Cedar Hill Cross Rd</strong>\r\n\r\nSouth Island Centre is located in the house (behind the big Sequoia tree) overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n\r\n<strong>BUS ROUTES from downtown</strong>:\r\n<ul>\r\n	<li><strong>No. 24</strong> Cedar Hill/Admirals: stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><strong>No. 27</strong> Gordon Head/Beacon Hill stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n	<li><strong>No. 28</strong> MajesticÂ stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n</ul>\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-02-25 05:52:48", "2014-02-25 13:52:48", "", "284", "http://localhost/~zastre/?p=287", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("298", "3", "2016-08-08 14:33:39", "2016-08-08 21:33:39", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\n\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\n<ul style=\"color: #3b3f42;\">\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></span></li>\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly <span style=\"color: #0000ff;\">(<span style=\"color: #000000;\"><a style=\"color: #576b23;\" title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span></span>)</li>\n	<li>Caregiver Burnout: The Need for Self-Care (<span style=\"color: #0000ff;\"><a style=\"color: #576b23;\" title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\"><span style=\"color: #0000ff;\">i<span style=\"color: #000000;\">nformation poster here</span></span></a></span>)</li>\n	<li>Bowen Family Systems Training (<span style=\"color: #0000ff;\"><a style=\"color: #576b23;\" title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">information poster here</span></span></a></span>)</li>\n</ul>\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-autosave-v1", "", "", "2016-08-08 14:33:39", "2016-08-08 21:33:39", "", "187", "http://localhost/~zastre/?p=298", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("299", "3", "2014-02-25 06:25:11", "2014-02-25 14:25:11", "Below are general information posters of all <strong>personal development courses</strong> we are pleased to offer.\r\n\r\nYou will find the information on <em>specific dates and times of courses</em>Â in theÂ <strong>Courses </strong>drop-down menu under <strong>Up-coming Courses</strong>; justÂ click on the appropriate course.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Link to CareerChoice info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-02-25 06:25:11", "2014-02-25 14:25:11", "", "187", "http://localhost/~zastre/?p=299", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("300", "3", "2014-02-25 06:26:13", "2014-02-25 14:26:13", "We are pleased to offer the following courses for those working in Ministry fields (listed according to date):\r\n<ul>\r\n	<li>Twilight Journeys (information poster here)</li>\r\n	<li>Pastoral Care and Counselor Training (information poster here)</li>\r\n	<li>Brief Solution Focused Therapy (information poster here)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (information poster here)</li>\r\n	<li>Helping People Change (information poster here)</li>\r\n	<li>Bowen Family Systems Training (information poster here)</li>\r\n</ul>\r\nFor more information on these courses or to register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-02-25 06:26:13", "2014-02-25 14:26:13", "", "191", "http://localhost/~zastre/?p=300", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("301", "3", "2014-07-30 16:52:52", "2014-07-30 23:52:52", "&nbsp;\n\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\n\n&nbsp;\n\nYou will find the information onÂ <em>specific dates and times of up-coming courses</em><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â in the <strong><em>Upcoming Events</em></strong> sidebar on your right. Â </span></span>\n\nBelow are general information posters on courses and training programs.\n<ul>\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">i<span style=\"color: #000000;\"><span style=\"color: #000000;\">nformation poster here</span></span></a>)</li>\n	<li>Brief Solution Focused Therapy (<a title=\"Brief Solution Focused Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span></a>)</li>\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\n</ul>\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register for a current course, pleaseÂ <a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill in the form or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\n&nbsp;\n\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - General Info", "", "inherit", "closed", "closed", "", "191-autosave-v1", "", "", "2014-07-30 16:52:52", "2014-07-30 23:52:52", "", "191", "http://localhost/~zastre/?p=301", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("302", "3", "2014-02-25 06:33:08", "2014-02-25 14:33:08", "Below are general information posters of allÂ <strong>professional and volunteer support worker/caregiver courses</strong>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <em>specific dates and times of courses</em>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Up-coming Courses</strong>; justÂ click on the appropriate course.Â Each currently offered course can also be found in the Course and Events Calendar.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-02-25 06:33:08", "2014-02-25 14:33:08", "", "191", "http://localhost/~zastre/?p=302", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("303", "3", "2014-02-25 06:44:16", "2014-02-25 14:44:16", "<h2>Registration & Payment Options</h2>		\n			<h3>How to Register</h3>		\n		<ul>\n 	<li><a style=\"color: blue;\" title=\"Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\" rel=\"noopener\" >Click here</a>Â to fill out the registration form. Registrations will be confirmed via email.Â </li>\n 	<li>Â Call Â <strong>250-472-2851</strong> and leave a voice mail with your contact information</li>\n</ul>\nTo complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.\nRegistration is on a first-come, first-serve basis.		\n			<h3>Payment Options</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Cash</li><li style=\"font-size: 15px;\">Credit</li></ul><b>If paying by credit card, please call the office atÂ Â 250-472-2851 for processing.</b>		\n			<h3>Refunds</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">In the case of a cancellation, a full refund will be issued.</li><li style=\"font-size: 15px;\">Where cash payment has been made, refunds will be reimbursed by cheque.</li></ul>", "Registration & Payment Options", "", "publish", "closed", "closed", "", "courses-currently-offered", "", "", "2018-06-13 08:40:37", "2018-06-13 15:40:37", "", "15121", "http://localhost/~zastre/?page_id=303", "2", "page", "", "0");
INSERT INTO `wp_posts` VALUES("304", "3", "2014-02-25 06:44:16", "2014-02-25 14:44:16", "We are pleased to offer the courses below. All up-coming courses are also listed in the Course and Events Calendar in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nTo register for a course, <a title=\"Email to register for a course at courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost. Please include the course title in the subject line, and your name and a contact number we can reach in the main body of the text.", "Courses currently offered", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-02-25 06:44:16", "2014-02-25 14:44:16", "", "303", "http://localhost/~zastre/?p=304", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("308", "3", "2014-02-25 06:55:37", "2014-02-25 14:55:37", "We are pleased to offer the following courses for those working in Ministry fields (general information posters):\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Pastoral Care and Counselor Training (<a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-02-25 06:55:37", "2014-02-25 14:55:37", "", "189", "http://localhost/~zastre/?p=308", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("309", "3", "2014-02-25 06:57:26", "2014-02-25 14:57:26", "Below are general information posters of allÂ <strong>courses</strong>Â <strong>for those in MinistryÂ </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <em>specific dates and times of up-coming courses</em>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered</strong>; justÂ click on the appropriate course.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Pastoral Care and Counselor Training (<a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-02-25 06:57:26", "2014-02-25 14:57:26", "", "189", "http://localhost/~zastre/?p=309", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("310", "3", "2014-02-25 06:59:05", "2014-02-25 14:59:05", "Below are general information posters of allÂ <strong>professional and volunteer support worker/caregiver courses</strong>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <em>specific dates and times of up-coming courses</em>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered</strong>; justÂ click on the appropriate course; each up-coming course can also be found in the Course and Events Calendar.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-02-25 06:59:05", "2014-02-25 14:59:05", "", "191", "http://localhost/~zastre/?p=310", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("311", "3", "2014-02-25 07:00:10", "2014-02-25 15:00:10", "Below are general information posters of allÂ <strong>personal development courses</strong>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <em>specific dates and times of up-coming courses</em>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered</strong>; justÂ click on the appropriate course; each up-coming course can also be found in the Course and Events Calendar.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Link to CareerChoice info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-02-25 07:00:10", "2014-02-25 15:00:10", "", "187", "http://localhost/~zastre/?p=311", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("312", "3", "2014-02-25 07:01:07", "2014-02-25 15:01:07", "Below are general information posters of all<strong>Â courses</strong>Â <strong>for those in MinistryÂ </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <em>specific dates and times of up-coming courses</em>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered</strong>; justÂ click on the appropriate course; each up-coming course can also be found in the Course and Events Calendar.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Pastoral Care and Counselor Training (<a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office at 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-02-25 07:01:07", "2014-02-25 15:01:07", "", "189", "http://localhost/~zastre/?p=312", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("313", "3", "2014-02-25 07:02:12", "2014-02-25 15:02:12", "We are pleased to offer the courses below. All up-coming courses are also listed in the Course and Events Calendar in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nTo register for a course, <a title=\"Email to register for a course at courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost. Please include the <span style=\"text-decoration: underline;\">course title</span> in the subject line, and your name and a contact number we can reach in the main body of the text.", "Courses currently offered", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-02-25 07:02:12", "2014-02-25 15:02:12", "", "303", "http://localhost/~zastre/?p=313", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("315", "3", "2014-02-25 15:11:56", "2014-02-25 23:11:56", "At South Island Centre we believe it is important that everyone has access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at 250-472-2851, extension 101 (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!", "Affordable Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-02-25 15:11:56", "2014-02-25 23:11:56", "", "54", "http://localhost/~zastre/?p=315", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("326", "3", "2014-02-26 06:20:08", "2014-02-26 14:20:08", "<h2>Intake Survey</h2>		\n		<em>The information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.Â We doÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any outside source.</em>\n[gravityform id=\"14\" title=\"true\" description=\"true\"]\n&nbsp;", "Contact Us", "", "publish", "closed", "closed", "", "leave-a-comment-2", "", "", "2018-06-12 07:48:17", "2018-06-12 14:48:17", "", "0", "http://localhost/~zastre/?page_id=326", "107", "page", "", "0");
INSERT INTO `wp_posts` VALUES("327", "3", "2014-02-26 06:20:08", "2014-02-26 14:20:08", "[contact-form-7 id=\"1234\" title=\"Contact form 1\"]", "Leave a comment", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2014-02-26 06:20:08", "2014-02-26 14:20:08", "", "326", "http://localhost/~zastre/?p=327", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("328", "3", "2014-02-26 06:27:28", "2014-02-26 14:27:28", "South Island Centre is located at:\r\n\r\n3821 A Cedar Hill Cross Road (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.\r\n\r\nThe parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\nBUS ROUTES from downtown: No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! Transit buses 27 and 28 stop at the intersection of Cedar Hill Cross and Shelbourne â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).", "Location: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-02-26 06:27:28", "2014-02-26 14:27:28", "", "24", "http://localhost/~zastre/?p=328", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("330", "3", "2014-02-26 14:26:42", "2014-02-26 22:26:42", "<h2>New Clients:</h2>\r\nIf you are new to our practice and would like to enquire about an initial appointment, pleaseÂ call our office co-ordinator at <strong>250-472-2851 and press 101</strong>. Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please state your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message in the confidential voicemail box.\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n\r\nOur office hours are Monday-Friday from 9:00am-5:00pm. We are closed on statuary holidays.\r\n<h2><span style=\"line-height: 1.5;\">Existing Clients:Â </span></h2>\r\nPlease contact your counsellor directly by calling <strong>250-472-2851 and pressing 8 for the staff directory</strong> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk</strong> and the office administrator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Manage Appointments", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-02-26 14:26:42", "2014-02-26 22:26:42", "", "64", "http://localhost/~zastre/?p=330", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("331", "3", "2014-02-26 14:36:51", "2014-02-26 22:36:51", "At South Island Centre we believe it is important that everyone has access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at 250-472-2851, extension 101 (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3>Graduated Fee Scale</h3>\r\nSouth Island Centre sets its fees on a graduated scale between $50 and $110 per 60-minute session (includes GST) depending on the level of your household income. A reduced rate of is offered for self-paying students, single parents in need, and individuals on income assistance. Please let us know if this applies to you.\r\n\r\n<span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%): see examples below</span>\r\n\r\nunder $50,000: we will discuss with you what you can afford\r\n\r\n$50,000 - $59,999: Â $50\r\n\r\n$60,000 - $69,999: Â $60\r\n\r\n$70,000 - $79,999: Â $70 etc.\r\n\r\nup to $110 per session for combined income up to $110,000 and above.\r\n\r\nSouth Island Centre hosts a Volunteer counsellors to complete who offer their services at a reduced rate.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help subsidize the cost of counselling. Please inquire if this applies to you.\r\n<h3>Insurance Coverage</h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island. Most insurance coverage will require that you, the client, pay up-front and will reimburse you upon receiving a copy your receipts. While South Island is able to bill some insurance companies on your behalf, it is your responsibility to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of these services.", "Affordable Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-02-26 14:36:51", "2014-02-26 22:36:51", "", "54", "http://localhost/~zastre/?p=331", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("332", "3", "2014-02-27 06:53:05", "2014-02-27 14:53:05", "South Island Centre is located at:\r\n\r\n3821 A Cedar Hill Cross Road (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li>No. 24 stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!</li>\r\n	<li>No. 27 and 28 stop at the intersection of Cedar Hill Cross and Shelbourne â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<strong>From Sidney:</strong>\r\n\r\nTravel south on the Pat Bay Hwy (17) to the Quadra Street exit. Take the Quadra exit, loop around and onto the Quadra Street overpass. Turn left onto McKenzie Avenue and go past Blenkinsop Rd all the way to Cedar Hill Rd. Turn right at the Fairways grocery store, the go past Cedar Hill Middle School. Turn right at Cedar Hill Cross Rd, and then an immediate RIGHT onto the St Luke\'s Anglican Church parking lot. We are the house behind the big Sequoia tree. Parking is free.\r\n\r\n<strong>From Langford/Colwood:</strong>\r\n\r\nTravel toward Victoria on Hwy 1. Turn left onto McKenzie to the Pat Bay Hwy (17). Travel north on Pat Bay Hwy (17) to McKenzie exit on your right. Take McKenzie exit and turn right onto McKenzie exit. Drive all the way toÂ Cedar Hill Rd. and turn right at that intersection (Fairways grocery store), go past Cedar Hill Middle School on your right. Turn right at Cedar Hill Cross Rd, and then an immediate RIGHT onto the St Luke\'s Anglican Church parking lot. We are the house behind the big Sequoia tree. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-02-27 06:53:05", "2014-02-27 14:53:05", "", "24", "http://localhost/~zastre/?p=332", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("333", "3", "2014-02-27 06:55:59", "2014-02-27 14:55:59", "South Island Centre is located at:\r\n\r\n3821 A Cedar Hill Cross Road (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 28. Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n</ul>\r\n<strong>From Sidney:</strong>\r\n\r\nTravel south on the Pat Bay Hwy (17) to the Quadra Street exit. Take the Quadra exit, loop around and onto the Quadra Street overpass. Turn left onto McKenzie Avenue and go past the Blenkinsop Rd light all the way to Cedar Hill Rd. Turn right at the Fairways grocery store, then go past Cedar Hill Middle School. Turn right at Cedar Hill Cross Rd, and then an immediate <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot. We are the house behind the big Sequoia tree. Parking is free.\r\n\r\n<strong>From Langford/Colwood:</strong>\r\n\r\nTravel East toward Victoria on Hwy 1. Turn left onto McKenzie to the Pat Bay Hwy (17). Travel north on Pat Bay Hwy (17) to McKenzie exit on your right. Take McKenzie exit and turn right onto McKenzie exit, drive all the way toÂ Cedar Hill Rd. and turn right at that intersection (Fairways grocery store), go past Cedar Hill Middle School on your right. Turn right at Cedar Hill Cross Rd, and then an immediate <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot. We are the house behind the big Sequoia tree. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-02-27 06:55:59", "2014-02-27 14:55:59", "", "24", "http://localhost/~zastre/?p=333", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("334", "3", "2014-02-27 07:00:19", "2014-02-27 15:00:19", "<h2>New Clients:</h2>\r\nIf you are new to our practice and would like to enquire about an initial appointment, pleaseÂ call our office co-ordinator at <strong>250-472-2851 and press 101</strong>. Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on the confidential voicemail box.\r\n\r\nOur general office hours are Monday-Friday from 9:00am-5:00pm. We are closed on statuary holidays.\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n\r\n<span style=\"line-height: 1.5; font-size: 1.5em;\">Existing Clients:Â </span>\r\n\r\nPlease contact your counsellor directly by calling <strong>250-472-2851 and pressing 8 for the staff directory</strong> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk</strong> and the office administrator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Manage Appointments", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-02-27 07:00:19", "2014-02-27 15:00:19", "", "64", "http://localhost/~zastre/?p=334", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("336", "3", "2014-02-27 07:03:45", "2014-02-27 15:03:45", "We are pleased to offer the courses below. All up-coming courses are also listed in the Course and Events Calendar in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nTo register for a course, <a title=\"Email to register for a course at courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost. Please include the <span style=\"text-decoration: underline;\">course title</span> in the subject line, and your name and a contact number we can reach in the main body of the text. For more information, please click here to go to the Â <em>Register for a course</em> page.Â <em>\r\n</em>", "Courses currently offered", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-02-27 07:03:45", "2014-02-27 15:03:45", "", "303", "http://localhost/~zastre/?p=336", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("337", "3", "2014-02-27 07:05:14", "2014-02-27 15:05:14", "We are pleased to offer the courses below. All up-coming courses are also listed in the Course and Events Calendar in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nTo register for a course, <a title=\"Email to register for a course at courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost. Please include the <span style=\"text-decoration: underline;\">course title</span> in the subject line, and your name and a contact number we can reach in the main body of the text. For more information, please <a title=\"Register for a course page link\" href=\"http://http://localhost/~zastre/wp-admin/post.php?post=97&amp;action=edit\" target=\"_blank\">click here</a> to go to the Â <em>Register for a course</em> page.Â <em>\r\n</em>", "Courses currently offered", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-02-27 07:05:14", "2014-02-27 15:05:14", "", "303", "http://localhost/~zastre/?p=337", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("338", "3", "2014-02-27 07:06:04", "2014-02-27 15:06:04", "We are pleased to offer the courses below. All up-coming courses are also listed in the Course and Events Calendar in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nTo register for a course, <a title=\"Email to register for a course at courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost. Please include the <span style=\"text-decoration: underline;\">course title</span> in the subject line, and your name and a contact number we can reach in the main body of the text. For more information, please go to the <em>Register for a course</em> page in the courses drop-down menu.Â <em>\r\n</em>", "Courses currently offered", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-02-27 07:06:04", "2014-02-27 15:06:04", "", "303", "http://localhost/~zastre/?p=338", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("339", "3", "2014-02-27 07:10:21", "2014-02-27 15:10:21", "We are pleased to offer the courses below. All up-coming courses are also listed in the Course and Events Calendar in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>call the office at 250-472-2851, extension 101 and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<strong>Payment Information and Options</strong>\r\n\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following payment options:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-02-27 07:10:21", "2014-02-27 15:10:21", "", "303", "http://localhost/~zastre/?p=339", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("343", "3", "2014-02-27 08:10:49", "2014-02-27 16:10:49", "Our street address is:\r\n\r\n<strong>3821 A Cedar Hill Cross Rd</strong>\r\n\r\nSouth Island Centre is located in the <strong>house</strong> (behind the big Sequoia tree) overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free. <a title=\"Mapquest location of South Island Centre\" href=\"http://www.mapquest.ca/#c2a2c06390c7420b3b89a053\" target=\"_blank\">Click here</a> to see it on a map.\r\n\r\n<strong>BUS ROUTES from downtown</strong>:\r\n<ul>\r\n	<li><strong>No. 24</strong> Cedar Hill/Admirals: stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><strong>No. 27</strong> Gordon Head/Beacon Hill stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n	<li><strong>No. 28</strong> MajesticÂ stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n</ul>\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-02-27 08:10:49", "2014-02-27 16:10:49", "", "284", "http://localhost/~zastre/?p=343", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("344", "3", "2014-02-27 08:12:41", "2014-02-27 16:12:41", "Our street address is:\r\n\r\n<strong>3821 A Cedar Hill Cross Rd</strong>\r\n\r\nSouth Island Centre is located in the <strong>house</strong> (behind the big Sequoia tree) overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free. <a title=\"Mapquest location of South Island Centre\" href=\"http://www.mapquest.ca/#c2a2c06390c7420b3b89a053\" target=\"_blank\">Click here</a> to see it on a map.\r\n\r\n<strong>BUS ROUTES from downtown</strong>:\r\n<ul>\r\n	<li><strong>No. 24</strong> Cedar Hill/Admirals: stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><strong>No. 27</strong> Gordon Head/Beacon Hill stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n	<li><strong>No. 28</strong> MajesticÂ stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n</ul>\r\n<strong>Travel directions from Sidney:</strong>\r\n\r\nTravel south on the Pat Bay Hwy (17) to the Quadra Street exit. Take the Quadra exit, loop around and onto the Quadra Street overpass. Turn left onto McKenzie Avenue and go past the Blenkinsop Rd light all the way to Cedar Hill Rd. Turn right at the Fairways grocery store, then go past Cedar Hill Middle School. Turn right at Cedar Hill Cross Rd, and then an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree. Parking is free.\r\n\r\n<strong>Travel directions from Langford/Colwood:</strong>\r\n\r\nTravel East toward Victoria on Hwy 1. Turn left onto McKenzie to the Pat Bay Hwy (17). Travel north on Pat Bay Hwy (17) to McKenzie exit on your right. Take McKenzie exit and turn right onto McKenzie exit, drive all the way toÂ Cedar Hill Rd. and turn right at that intersection (Fairways grocery store), go past Cedar Hill Middle School on your right. Turn right at Cedar Hill Cross Rd, and then an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-02-27 08:12:41", "2014-02-27 16:12:41", "", "284", "http://localhost/~zastre/?p=344", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("345", "3", "2014-02-27 08:14:42", "2014-02-27 16:14:42", "<h2>New Clients:</h2>\r\nIf you are new to our practice and would like to enquire about an initial appointment, pleaseÂ call our office co-ordinator at <strong>250-472-2851 and press 101</strong>. Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on the confidential voicemail box.\r\n\r\nOur general office hours are Monday-Friday from 9:00am-5:00pm. We are closed on statuary holidays.\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h2><span style=\"line-height: 1.5; font-size: 1.5em;\">Existing Clients:Â </span></h2>\r\nPlease contact your counsellor directly by calling <strong>250-472-2851 and pressing 8 for the staff directory</strong> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk</strong> and the office administrator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Appointments", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-02-27 08:14:42", "2014-02-27 16:14:42", "", "64", "http://localhost/~zastre/?p=345", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("346", "3", "2014-02-27 08:16:53", "2014-02-27 16:16:53", "<h2>New Clients:</h2>\r\nIf you are new to our practice and would like to enquire about an initial appointment, pleaseÂ call our office co-ordinator at <strong>250-472-2851 and press 101</strong>. Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on the confidential voicemail box.\r\n\r\nOur general office hours are Monday-Friday from 9:00am-5:00pm. We are closed on statuary holidays.\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h2>Existing Clients:</h2>\r\nPlease contact your counsellor directly by calling <strong>250-472-2851 and pressing 8 for the staff directory</strong> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk</strong> and the office administrator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Appointments", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-02-27 08:16:53", "2014-02-27 16:16:53", "", "64", "http://localhost/~zastre/?p=346", "9", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("353", "3", "2014-03-17 12:35:48", "2014-03-17 19:35:48", "&nbsp;\n\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\n\nDirector of Services of <strong>Bill Cole</strong> has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues. When not supervising staff\n\nFamily Systems specialty", "Bill Cole", "", "inherit", "closed", "closed", "", "41-autosave-v1", "", "", "2014-03-17 12:35:48", "2014-03-17 19:35:48", "", "41", "http://localhost/~zastre/?p=353", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("354", "3", "2014-02-28 07:00:54", "2014-02-28 15:00:54", "&nbsp;\r\n\r\n&nbsp;\r\n\r\nDirector of Services\r\n\r\nFamily Systems specialty", "Bill Cole", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-02-28 07:00:54", "2014-02-28 15:00:54", "", "41", "http://localhost/~zastre/?p=354", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("355", "3", "2014-02-28 07:09:11", "2014-02-28 15:09:11", "We are pleased to offer the courses below. All up-coming courses are also listed in the Course and Events Calendar in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<strong>Payment Information and Options</strong>\r\n\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following payment options:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-02-28 07:09:11", "2014-02-28 15:09:11", "", "303", "http://localhost/~zastre/?p=355", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("362", "3", "2014-03-05 17:14:41", "2014-03-06 01:14:41", "South Island Centre is a non-profit counselling and training agency funded solely through donations, fees, and grants. We have been serving Victoria communities since 1975. Â South Island Centre services include:\r\n<ul>\r\n	<li>Individual, couple and family counselling</li>\r\n	<li>Workshops, courses and training programs</li>\r\n	<li>Consultation for mental health professionals and clergy</li>\r\n	<li>Career change and development programs</li>\r\n</ul>\r\nSouth Island Centre counsellors provide a safe, positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, you don\'t have to go through it alone!\r\n\r\n<strong>Our Mission Statement:</strong>Â We provide professional services to individuals, families and organizations, facilitating personal, relational and spiritual wholeness.\r\n<h4>South Island Centre counsellors can help with:</h4>\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nWe\'re here to help!\r\n\r\nPlease contact us by calling Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101 or <a title=\"Email link to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us atÂ counselling@localhost.\r\n<h2></h2>", "General Information", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-05 17:14:41", "2014-03-06 01:14:41", "", "35", "http://localhost/~zastre/?p=362", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("366", "3", "2014-03-05 17:30:42", "2014-03-06 01:30:42", "Our street address is:\r\n\r\n<strong>3821 A Cedar Hill Cross Rd</strong>\r\n\r\nSouth Island Centre is located in the <strong>house</strong> (behind the big Sequoia tree) overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free. <a title=\"Mapquest location of South Island Centre\" href=\"http://www.mapquest.ca/#c2a2c06390c7420b3b89a053\" target=\"_blank\">Click here</a> to see it on a map.\r\n\r\n<strong>BUS ROUTES from downtown</strong>:\r\n<ul>\r\n	<li><strong>No. 24</strong> Cedar Hill/Admirals: stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><strong>No. 27</strong> Gordon Head/Beacon Hill stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n	<li><strong>No. 28</strong> MajesticÂ stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n</ul>\r\n<strong>Travel directions from Sidney:</strong>\r\n\r\nTravel <strong>south</strong> on the Pat Bay Hwy (17), take the <strong>McKenzie Avenue</strong> exit. Turn <strong>right</strong> at Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree. Parking is free.\r\n\r\n<strong>Travel directions from Langford/Colwood:</strong>\r\n\r\nTravel East toward Victoria on Hwy 1. Turn left onto McKenzie Ave, turn <strong>right</strong> atÂ Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and then an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-05 17:30:42", "2014-03-06 01:30:42", "", "284", "http://localhost/~zastre/?p=366", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("367", "3", "2014-03-05 17:33:17", "2014-03-06 01:33:17", "Our street address is:\r\n\r\n<strong>3821 A Cedar Hill Cross Rd</strong>\r\n\r\nSouth Island Centre is located in the <strong>house</strong> (behind the big Sequoia tree) overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<strong>MAP</strong>:Â <a title=\"Mapquest location of South Island Centre\" href=\"http://www.mapquest.ca/#c2a2c06390c7420b3b89a053\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<strong>BUS ROUTES from downtown</strong>:\r\n<ul>\r\n	<li><strong>No. 24</strong> Cedar Hill/Admirals: stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><strong>No. 27</strong> Gordon Head/Beacon Hill stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n	<li><strong>No. 28</strong> MajesticÂ stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your projected arrival time will be halfway between the Shelbourne/Hillside and Shelbourne/McKenzie stops.</li>\r\n</ul>\r\n<strong>Travel directions from Sidney:</strong>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the Pat Bay Hwy (17), then take the <strong>McKenzie Avenue</strong> exit, turning <strong>left</strong> onto McKenzie Ave at the light. Turn <strong>right</strong> at Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree. Parking is free.\r\n\r\n<strong>Travel directions from Langford/Colwood:</strong>\r\n\r\nTravel <strong>East</strong> toward Victoria on Hwy 1. Turn left onto McKenzie Ave, turn <strong>right</strong> atÂ Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and then an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-05 17:33:17", "2014-03-06 01:33:17", "", "284", "http://localhost/~zastre/?p=367", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("368", "3", "2014-03-05 17:35:14", "2014-03-06 01:35:14", "We are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong> in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<strong>Payment Information and Options</strong>\r\n\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following payment options:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-05 17:35:14", "2014-03-06 01:35:14", "", "303", "http://localhost/~zastre/?p=368", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("369", "3", "2014-03-05 17:41:57", "2014-03-06 01:41:57", "[gview file=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\"]\r\n\r\nThis workshop is for caregivers, clergy and others who work with and/or supportÂ the very elderly. Learn about the unique losses and challenges of advanced oldÂ age as well as advocacy, authorship and a palliative approach to care. AcquireÂ tools which enhance end of life communication and which improve both qualityÂ of life and quality of care.\r\n\r\n<strong>Workshop facilitator: Margaret Anderson</strong> (Counsellor and Educator in Grief, Loss and End of Life Care,Â Member of the Canadian Hospice and Palliative Care Association)", "The Twilight Journey (workshop facilitator: Margaret Anderson)", "", "publish", "closed", "closed", "", "the-twilight-journey-understanding-grief-loss-and-the-very-elderly", "", "", "2014-04-07 14:08:49", "2014-04-07 21:08:49", "", "0", "http://localhost/~zastre/?post_type=ai1ec_event&#038;p=369&#038;instance_id=", "2", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("370", "3", "2014-03-05 17:51:01", "2014-03-06 01:51:01", "This workshop on grief, loss and life transitions is for caregivers,Â clergy and anyone who is walking alongside people who areÂ grieving or struggling with a significant life transition. AcquireÂ helpful resources and coping strategies.\n\n<strong>Workshop Facilitator: Margaret Anderson</strong> (Counsellor and Educator in Grief, Loss and End of Life Care,Â Member of the Canadian Hospice and Palliative Care Association)", "The Ebb and Flow of Life (facilitator: Margaret Anderson), Day 1", "", "inherit", "closed", "closed", "", "277-autosave-v1", "", "", "2014-03-05 17:51:01", "2014-03-06 01:51:01", "", "277", "http://localhost/~zastre/?p=370", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("371", "3", "2014-03-05 17:49:35", "2014-03-06 01:49:35", "This workshop on grief, loss and life transitions is for caregivers,Â clergy and anyone who is walking alongside people who areÂ grieving or struggling with a significant life transition. AcquireÂ helpful resources and coping strategies.\r\n\r\n<strong>Workshop Facilitator: Margaret Anderson</strong>Â (Counsellor and Educator in Grief, Loss and End of Life Care,Â Member of the Canadian Hospice and Palliative Care Association)", "The Ebb and Flow of Life (facilitator: Margaret Anderson), Day 2", "", "publish", "closed", "closed", "", "the-ebb-and-flow-of-life-facilitator-margaret-anderson-day-2", "", "", "2014-03-20 10:41:31", "2014-03-20 17:41:31", "", "0", "http://localhost/~zastre/?post_type=ai1ec_event&#038;p=371&#038;instance_id=", "2", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("372", "3", "2014-03-05 17:53:23", "2014-03-06 01:53:23", "We are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong> in the Main Menu (top ribbon).\r\n<ul>\r\n	<li>March 27-28, 2014: <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>April 12, 2014:Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li>Family Systems Theory: please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li>Pastoral Counselling Training:Â please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<strong>Payment Information and Options</strong>\r\n\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following payment options:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-05 17:53:23", "2014-03-06 01:53:23", "", "303", "http://localhost/~zastre/?p=372", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("374", "3", "2014-03-05 17:59:08", "2014-03-06 01:59:08", "Below are general information posters of allÂ <strong>personal development courses</strong>Â we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"text-decoration: underline;\"><em>specific dates and times of up-coming courses</em></span>Â in the top ribbon inÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered and how to register</strong>. Each up-coming course is also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Link to CareerChoice info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,\r\n\r\nor call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-05 17:59:08", "2014-03-06 01:59:08", "", "187", "http://localhost/~zastre/?p=374", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("375", "3", "2014-03-06 06:20:59", "2014-03-06 14:20:59", "<strong>Our Mission Statement:</strong>Â We provide professional services to individuals, families and organizations, facilitating personal, relational and spiritual wholeness.\r\n<h4>South Island Centre counsellors can help with:</h4>\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nSouth Island Centre counsellors provide a safe, positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, you don\'t have to go through it alone!Â We\'re here to help!\r\n\r\nPlease contact us by calling Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101 or <a title=\"Email link to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us atÂ counselling@localhost.\r\n\r\nSouth Island Centre is a non-profit counselling and training agency funded solely through donations, fees, and grants. We have been serving Victoria communities since 1975. Â South Island Centre services include:\r\n<ul>\r\n	<li>Individual, couple and family counselling</li>\r\n	<li>Workshops, courses and training programs</li>\r\n	<li>Consultation for mental health professionals and clergy</li>\r\n	<li>Career change and development programs</li>\r\n</ul>\r\n&nbsp;", "General Information", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-06 06:20:59", "2014-03-06 14:20:59", "", "35", "http://localhost/~zastre/?p=375", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("376", "3", "2014-03-06 06:25:29", "2014-03-06 14:25:29", "At South Island Centre we believe it is important that everyone has access to Counselling services. <strong>Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need.</strong> Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3>Graduated Fee Scale</h3>\r\nSouth Island Centre sets its fees on a <strong>graduated scale between $50 and $110 per 60-minute session</strong> (includes GST) depending on the level of your household income. We do not turn away any clients. A <strong>reduced rate</strong> is offered for self-paying students, single parents in need, and individuals on income assistance. <em>Please let us know if this applies to you.</em>\r\n\r\n<span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%): see examples below</span>\r\n\r\nunder $50,000: we will discuss with you what you can afford\r\n\r\n$50,000 - $59,999: Â $50\r\n\r\n$60,000 - $69,999: Â $60\r\n\r\n$70,000 - $79,999: Â $70 etc.\r\n\r\nup to $110 per session for combined income up to $110,000 and above.\r\n\r\nSouth Island Centre hosts Volunteer counsellors who offer their services at a reduced rate.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help subsidize the cost of counselling. <em>Please inquire if this applies to you.</em>\r\n<h3>Insurance Coverage</h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island. Most insurance coverage will require that you, the client, pay up-front and will reimburse you upon receiving a copy your receipts. While South Island is able to bill some insurance companies on your behalf, it is your responsibility to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of these services.", "Affordable Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-06 06:25:29", "2014-03-06 14:25:29", "", "54", "http://localhost/~zastre/?p=376", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("380", "3", "2014-03-06 06:40:15", "2014-03-06 14:40:15", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\nMake a one-time (or a annual, bi-annual, quarterly or monthly) donation to our Samaritan Fund. You may:\r\n<ul>\r\n	<li>mail a cheque made out toÂ <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6, which includes your mailing address. We will send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li>charge a donation to your credit card by calling the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, and the office co-ordinator will process the charge over the phone. Please let us know your mailing address and weÂ will send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li><a title=\"Link to CanadaHelps organization to make a donation\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"text-decoration: underline;\">c</span>lick here</a>Â to make a donation with CanadaHelps.org.</li>\r\n</ul>\r\nSouth Island Centre appreciates your <strong>in-kind donation</strong> when you\r\n<ul>\r\n	<li>volunteer your time at South Island Centre events or at the office.</li>\r\n	<li>volunteer your time as a board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â 250-472-2851, extension 101, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-06 06:40:15", "2014-03-06 14:40:15", "", "172", "http://localhost/~zastre/?p=380", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("381", "3", "2014-03-06 06:41:51", "2014-03-06 14:41:51", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\nMake a one-time (or an annual, bi-annual, quarterly or monthly) donation to our Samaritan Fund. You may:\r\n<ul>\r\n	<li>mail a cheque made out toÂ <em>South Island Centre for Counselling and Training</em> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6, which must include your mailing address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li>charge a donation to your credit card by calling the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, and the office co-ordinator will process the charge over the phone. Please let us know your mailing address, and weÂ will send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li><a title=\"Link to CanadaHelps organization to make a donation\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"text-decoration: underline;\">c</span>lick here</a>Â to make a donation with CanadaHelps.org.</li>\r\n</ul>\r\nSouth Island Centre appreciates your <strong>in-kind donation</strong> when you\r\n<ul>\r\n	<li>volunteer your time at South Island Centre events or at the office.</li>\r\n	<li>volunteer your time as a board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â 250-472-2851, extension 101, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-06 06:41:51", "2014-03-06 14:41:51", "", "172", "http://localhost/~zastre/?p=381", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("382", "3", "2014-03-06 06:53:41", "2014-03-06 14:53:41", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\nYou may make a one-time or regular donations and\r\n<ul>\r\n	<li>send a one-time or monthly post-dated cheque(s) made out to <strong><em>South Island Centre for Counselling and Training</em></strong> to 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6. The cheque(s) must include your mailing address, so that we may mail you a charitable donation receipt(s) for income-tax purposes.</li>\r\n	<li>charge a one-time, monthly or bi-monthly donation(s) to your credit card by calling the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>; the office co-ordinator will set up a payment schedule that fits your generosity: you may choose which day(s) of the month and the amount your credit card will be charged. Please let us know your mailing address, so we may mail you anÂ annual charitable donation receipt for the full amount of your donation for income-tax purposes.</li>\r\n	<li><a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a monthly donation with CanadaHelps.org.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-06 06:53:41", "2014-03-06 14:53:41", "", "176", "http://localhost/~zastre/?p=382", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("383", "3", "2014-03-06 06:55:18", "2014-03-06 14:55:18", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work.\r\n\r\nYou may help us when you\r\n<ul>\r\n	<li>volunteer your time at South Island Centre events or at the office, or</li>\r\n	<li>volunteer your time as a board member.</li>\r\n</ul>\r\nPlease contact us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Volunteer Your Time", "", "inherit", "closed", "closed", "", "174-revision-v1", "", "", "2014-03-06 06:55:18", "2014-03-06 14:55:18", "", "174", "http://localhost/~zastre/?p=383", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("385", "3", "2014-03-06 17:43:05", "2014-03-07 01:43:05", "&nbsp;\r\n\r\n<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"alignnone size-medium wp-image-384\" alt=\"Bill Cole picture\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a>\r\n\r\nDirector of Services\r\n\r\nFamily Systems specialty", "Bill Cole", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-03-06 17:43:05", "2014-03-07 01:43:05", "", "41", "http://localhost/~zastre/?p=385", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("387", "3", "2014-03-07 06:55:58", "2014-03-07 14:55:58", "<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2>Barbara Baillie</h2>\r\n&nbsp;\r\n<h2>Margaret McKinnon Anderson</h2>", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-07 06:55:58", "2014-03-07 14:55:58", "", "60", "http://localhost/~zastre/?p=387", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("388", "3", "2014-03-07 06:58:27", "2014-03-07 14:58:27", "http://localhost/~zastre/wp-content/uploads/2014/03/cropped-Logo-small-file.jpg", "cropped-Logo-small-file.jpg", "", "inherit", "closed", "closed", "", "cropped-logo-small-file-jpg", "", "", "2014-03-07 06:58:27", "2014-03-07 14:58:27", "", "64", "http://localhost/~zastre/wp-content/uploads/2014/03/cropped-Logo-small-file.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("390", "3", "2014-03-09 20:34:15", "2014-03-10 03:34:15", "Barb Baillie\r\n\r\nB.Ed., M.T.S., M.A.P.P.C,\r\n\r\nBarb Baillie brings a varied experience to her counselling practice. She began as a teacher in elementary school, stayed at home raising her four children for a number of years, then attended theological college, graduating with a Masters in Theological Studies. At the same time she attended a two year program to train as a spiritual director. She worked for 5 years as a spiritual director on the program staff of the retreat house in Saskatoon. Moving to Victoria in 1996, she worked as part of the program staff at Queenswood Retreat centre, doing spiritual direction, leading workshops &amp; directing retreats. Then it was back to school, participating in a Masters of Arts program in Pastoral Psycholgy &amp; counselling at St, Stephen\'s College in Edmonton. She graduated with that degree &amp; a specialization in art therapy.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/ long life facilitator so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience &amp; counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nShorter Bio:\r\n\r\nBarb background is in education &amp; spirituality. With a Masters in Theological Studies &amp; training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses &amp; in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb atended St. Stephen\'s College &amp; graduated with a M.A. In Pastoral Psychology &amp; counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/ long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation &amp; divorce traumas, helping with boundaries, empowerment &amp; moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-03-09 20:34:15", "2014-03-10 03:34:15", "", "47", "http://localhost/~zastre/?p=390", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("391", "3", "2014-03-09 20:35:06", "2014-03-10 03:35:06", "<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2>Barbara Baillie</h2>\r\nBarb background is in education &amp; spirituality. With a Masters in Theological Studies &amp; training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses &amp; in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/ long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation &amp; divorce traumas, helping with boundaries, empowerment &amp; moving toward a positive self concept.\r\n<h2>Margaret McKinnon Anderson</h2>", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-09 20:35:06", "2014-03-10 03:35:06", "", "60", "http://localhost/~zastre/?p=391", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("393", "3", "2014-03-11 08:57:25", "2014-03-11 15:57:25", "<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2>Barbara Baillie</h2>\r\n<strong>Barbara Baillie\'s</strong>Â background is in education &amp; spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2></h2>\r\n<h2>Margaret McKinnon Anderson</h2>\r\n<strong>Margaret Anderson</strong>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-11 08:57:25", "2014-03-11 15:57:25", "", "60", "http://localhost/~zastre/?p=393", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("394", "3", "2014-03-11 08:59:00", "2014-03-11 15:59:00", "<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>Margaret McKinnon Anderson</h2>\r\n<strong>Margaret Anderson</strong>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2>Barbara Baillie</h2>\r\n<strong>Barbara Baillie\'s</strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-11 08:59:00", "2014-03-11 15:59:00", "", "60", "http://localhost/~zastre/?p=394", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("396", "3", "2014-03-11 09:03:55", "2014-03-11 16:03:55", "<h1>South Island Centre Courses</h1>\r\n<h2>Courses Offered</h2>\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Please visit us often to see courses currently being offered.\r\n\r\nPlease call Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851 or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> email us at courses@localhost if you\'d like to receive our regularly updated brochure of available courses and workshops. Please include your name, organization and contact information.\r\n<h1>2014 Course Offerings</h1>\r\nWe are pleased to offer these upcoming courses:\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li>Family Systems Theory (Please Contact Us If Interested)</li>\r\n	<li>Pastoral Counselling Training (Please Contact Us If Interested)</li>\r\n	<li>Marriage Preparation</li>\r\n</ul>\r\nStay tuned for more courses coming soon.\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-11 09:03:55", "2014-03-11 16:03:55", "", "11", "http://localhost/~zastre/?p=396", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("397", "3", "2014-03-11 09:10:21", "2014-03-11 16:10:21", "<h1>South Island Centre Courses</h1>\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Please visit us often to see which courses are currently being offered. For general information on our courses, please go to the drop-down menu on the top ribbon and click on the category you are interested in.\r\n\r\nPlease call Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851 or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost if you would like to have information on available courses and workshops emailed to you, or to indicate interest in up-coming training seminars. Please include your name, organization and contact information.\r\n<h1>2014 Course Offerings</h1>\r\nWe are pleased to offer these upcoming courses:\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li>Family Systems Theory (Please contact us if interested)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n	<li>Marriage Preparation (Please contact us if interested)</li>\r\n</ul>\r\nStay tuned for more courses coming soon.\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-11 09:10:21", "2014-03-11 16:10:21", "", "11", "http://localhost/~zastre/?p=397", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("400", "3", "2014-06-20 06:48:55", "2014-06-20 13:48:55", "<h3><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></h3>\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\n<ul>\n	<li>grief, loss and life-transitions;</li>\n	<li>traumaÂ or distress;</li>\n	<li>depression;</li>\n	<li>eldercare issues;</li>\n	<li>caregiver support and education;</li>\n	<li>relational conflict;</li>\n	<li>self-esteem issues;</li>\n	<li>emotional, sexual and physical abuse;</li>\n	<li>issues related to faith and spirituality;</li>\n	<li>addictions (substance abuse, gambling, pornography);</li>\n	<li>understanding family systems;</li>\n	<li>marriage preparation;</li>\n	<li>marital conflict</li>\n</ul>\n<span style=\"line-height: 1.5;\">....and more.</span>\n<h3><strong><span style=\"color: #0000ff;\">Affordable Counselling Services</span></strong></h3>\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\n\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\">click here</a>Â to accesOur fee system is based on your combined family income.\n\nTo <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost.\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-autosave-v1", "", "", "2014-06-20 06:48:55", "2014-06-20 13:48:55", "", "5", "http://localhost/~zastre/?p=400", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("401", "3", "2014-03-11 09:16:40", "2014-03-11 16:16:40", "<h1>Services Offered</h1>\r\n<h2>Affordable Counselling Services</h2>\r\nAt South Island Centre we believe it is important that everyone has access to Counselling services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need.\r\n\r\nWe offer <strong>affordable counselling services</strong> to fit within your budget.Â Thatâ€™s why we sit down with you and work out a fee that fits your budget.Â <span style=\"line-height: 1.5;\">Learn more about our affordable counselling services. Please go to the top ribbon, and hover over <b>Affordable Counselling</b> to learn more about our income-based sliding scale.</span>\r\n\r\nTo <strong>book an appointment</strong> call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost. We are here to help!\r\n<h2>Counselling</h2>\r\nSouth Island Centre counsellors provide a safe, positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, <strong>you don\'t have to go through it alone!</strong>\r\n\r\nSouth Island Centre counsellors can help with\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<span style=\"line-height: 1.5;\">Â </span>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-03-11 09:16:40", "2014-03-11 16:16:40", "", "5", "http://localhost/~zastre/?p=401", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("402", "3", "2014-03-11 09:20:55", "2014-03-11 16:20:55", "<h1>Affordable Counselling Services</h1>\r\nAt South Island Centre we believe it is important that <strong>everyone has access</strong> to Counselling Services. Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need.\r\n\r\nWe don\'t turn anyone away - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To l<span style=\"line-height: 1.5;\">earn more about our affordable counselling services, go to the top ribbon, and hover over <b>Affordable Counselling Services</b>Â to view our fee system that is based on your family income.</span>\r\n\r\nTo <strong>book an appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost. We are here to help!\r\n<h2>Counselling</h2>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, <strong>you don\'t have to go through it alone!</strong>\r\n\r\nSouth Island Centre counsellors can help with\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<span style=\"line-height: 1.5;\">Â </span>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-03-11 09:20:55", "2014-03-11 16:20:55", "", "5", "http://localhost/~zastre/?p=402", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("403", "3", "2014-03-11 14:51:15", "2014-03-11 21:51:15", "<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>Margaret McKinnon Anderson</h2>\r\n<strong>Margaret Anderson</strong>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2>Barbara Baillie</h2>\r\n<strong>Barbara Baillie\'s</strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2>Fiona Pasay</h2>\r\n<h2>Carla George</h2>\r\n<h2>Rosemary Merritt</h2>\r\n<h2>Carla George</h2>\r\n<h2>Laurie Truant</h2>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-11 14:51:15", "2014-03-11 21:51:15", "", "60", "http://localhost/~zastre/?p=403", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("404", "3", "2014-03-11 14:51:41", "2014-03-11 21:51:41", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-006.jpg\"><img class=\"alignright wp-image-12875 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-006-300x128.jpg\" alt=\"Welcome To South Island Centre\" width=\"300\" height=\"128\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong>, MA,</span>Â is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, focusing particularly around parenting plans and concerns with their children.", "Fiona Pasay", "", "publish", "closed", "closed", "", "fiona-pasay", "", "", "2014-07-23 15:12:23", "2014-07-23 22:12:23", "", "217", "http://localhost/~zastre/?page_id=404", "39", "page", "", "0");
INSERT INTO `wp_posts` VALUES("405", "3", "2014-03-11 14:51:41", "2014-03-11 21:51:41", "", "Fiona Pasay", "", "inherit", "closed", "closed", "", "404-revision-v1", "", "", "2014-03-11 14:51:41", "2014-03-11 21:51:41", "", "404", "http://localhost/~zastre/?p=405", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("406", "3", "2014-03-11 14:52:09", "2014-03-11 21:52:09", "&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Cantle MerrittÂ </strong></span>\r\n\r\nSpecialty:\r\n<ul>\r\n	<li>Self-Esteem</li>\r\n	<li>Empowerment</li>\r\n	<li>Anxiety</li>\r\n	<li>Holistic well-being</li>\r\n	<li>Depression</li>\r\n	<li>Self in Society</li>\r\n	<li>Self &amp; Environment</li>\r\n	<li>Managing Change</li>\r\n	<li>Academic, Sport, &amp; Job Performance</li>\r\n	<li>Restorative Justice</li>\r\n	<li>Family Issues</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Â </strong></span>", "Rosemary Cantle Merritt (M.P.E; M.Ed; RCC)", "", "publish", "closed", "closed", "", "rosemary-merritt", "", "", "2017-07-28 18:30:11", "2017-07-29 01:30:11", "", "217", "http://localhost/~zastre/?page_id=406", "12", "page", "", "0");
INSERT INTO `wp_posts` VALUES("407", "3", "2014-03-11 14:52:09", "2014-03-11 21:52:09", "", "Rosemary Merritt", "", "inherit", "closed", "closed", "", "406-revision-v1", "", "", "2014-03-11 14:52:09", "2014-03-11 21:52:09", "", "406", "http://localhost/~zastre/?p=407", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("408", "3", "2014-03-11 14:52:32", "2014-03-11 21:52:32", "&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-026.jpg\"><img class=\"alignleft wp-image-12899 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-026-300x300.jpg\" alt=\"Optional image title\" width=\"300\" height=\"300\" /></a></strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Carla Haveman</strong></span> enjoys working with young women around depression, low self-esteem and family dynamics. She forms really good connections through her compassion and empathy. As a mother of 3 almost grown boys, she has experienced it all!", "Carla Haveman", "", "publish", "closed", "closed", "", "carla-haverman", "", "", "2014-07-31 11:28:04", "2014-07-31 18:28:04", "", "217", "http://localhost/~zastre/?page_id=408", "34", "page", "", "0");
INSERT INTO `wp_posts` VALUES("409", "3", "2014-03-11 14:52:32", "2014-03-11 21:52:32", "", "Carla Haverman", "", "inherit", "closed", "closed", "", "408-revision-v1", "", "", "2014-03-11 14:52:32", "2014-03-11 21:52:32", "", "408", "http://localhost/~zastre/?p=409", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("412", "3", "2014-03-11 14:53:12", "2014-03-11 21:53:12", "<strong><span style=\"color: #0000ff;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\"><img class=\"alignleft wp-image-834 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\" alt=\"Laurie Truant\" width=\"191\" height=\"240\" /></a></span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\r\n\r\nLaurie has 19+ years of experience providing individual and group therapy as well as psycho-educational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Laurie Truant (M.A., RCC)", "", "publish", "closed", "closed", "", "laurie-truant", "", "", "2017-07-28 18:30:35", "2017-07-29 01:30:35", "", "217", "http://localhost/~zastre/?page_id=412", "32", "page", "", "0");
INSERT INTO `wp_posts` VALUES("413", "3", "2014-03-11 14:53:12", "2014-03-11 21:53:12", "", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2014-03-11 14:53:12", "2014-03-11 21:53:12", "", "412", "http://localhost/~zastre/?p=413", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("414", "3", "2017-01-24 12:25:52", "2017-01-24 20:25:52", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\n\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\n\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\n\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\n\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie (Volunteer Counsellor)</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\n\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\n\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\n\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\n\n<strong>Peter Simmons</strong>: Anxiety, Stress, Self-Esteem, Depression, Vocational Life Transitions\n\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "inherit", "closed", "closed", "", "217-autosave-v1", "", "", "2017-01-24 12:25:52", "2017-01-24 20:25:52", "", "217", "http://localhost/~zastre/?p=414", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("415", "3", "2014-03-11 14:57:52", "2014-03-11 21:57:52", "For more information, please go to the drop-down menu and click on the counsellor\'s name.\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life specialist\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Eneagram\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems\r\n\r\n<strong>Carla Haverman</strong>:\r\n\r\n<strong>Rosemary Merritt</strong>:\r\n\r\n<strong>Fiona Pasay</strong>:\r\n\r\n<strong>Pamela Welle</strong>:\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-03-11 14:57:52", "2014-03-11 21:57:52", "", "217", "http://localhost/~zastre/?p=415", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("416", "3", "2014-03-11 15:01:13", "2014-03-11 22:01:13", "For more information, please hover over <strong>About us</strong> in the top ribbon, which will show you <strong>Meet our Counsellors</strong>Â catory<strong>Â </strong>inÂ the drop-down menu, and then click on the counsellor\'s name in the menu on the right.\r\n\r\nBelow is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life specialist\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Eneagram\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems\r\n\r\n<strong>Carla Haverman</strong>:\r\n\r\n<strong>Rosemary Merritt</strong>:\r\n\r\n<strong>Fiona Pasay</strong>:\r\n\r\n<strong>Laurie Truant</strong>:\r\n\r\n<strong>Pamela Welle</strong>:\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-03-11 15:01:13", "2014-03-11 22:01:13", "", "217", "http://localhost/~zastre/?p=416", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("418", "3", "2014-03-12 06:10:29", "2014-03-12 13:10:29", "[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\n\n<strong>Barbara Baillie</strong>,B.Ed., M.T.S., M.A.P.P.C, brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\n\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\n\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-autosave-v1", "", "", "2014-03-12 06:10:29", "2014-03-12 13:10:29", "", "47", "http://localhost/~zastre/?p=418", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("419", "3", "2014-03-11 15:06:07", "2014-03-11 22:06:07", "[caption id=\"attachment_417\" align=\"alignnone\" width=\"264\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Barb-Baillie.jpg\"><img class=\"size-medium wp-image-417\" alt=\"Counsellor at South Island Centre\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Barb-Baillie-264x300.jpg\" width=\"264\" height=\"300\" /></a> Barbara Baillie[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Barbara Baillie</strong>,B.Ed., M.T.S., M.A.P.P.C, brings a varied experience to her counselling practice. She began as a teacher in elementary school, stayed at home raising her four children for a number of years, then attended theological college, graduating with a Masters in Theological Studies. At the same time she attended a two year program to train as a spiritual director. She worked for 5 years as a spiritual director on the program staff of the retreat house in Saskatoon. Moving to Victoria in 1996, she worked as part of the program staff at Queenswood Retreat centre, doing spiritual direction, leading workshops &amp; directing retreats. Then it was back to school, participating in a Masters of Arts program in Pastoral Psycholgy and counselling at St, Stephen\'s College in Edmonton. She graduated with that degree and a specialization in art therapy.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nShorter Bio:\r\n\r\nBarb background is in education &amp; spirituality. With a Masters in Theological Studies &amp; training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses &amp; in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb atended St. Stephen\'s College &amp; graduated with a M.A. In Pastoral Psychology &amp; counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/ long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation &amp; divorce traumas, helping with boundaries, empowerment &amp; moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-03-11 15:06:07", "2014-03-11 22:06:07", "", "47", "http://localhost/~zastre/?p=419", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("420", "3", "2014-03-11 15:10:58", "2014-03-11 22:10:58", "For more in-depth information, please go to theÂ <strong>About Us</strong>Â section on the main ribbon/top of the page where each counsellor has a detailed biography included on the own page.\r\n<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>Margaret McKinnon Anderson</h2>\r\n<strong>Margaret Anderson</strong>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2>Barbara Baillie</h2>\r\n<strong>Barbara Baillie\'s</strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2>Fiona Pasay</h2>\r\n<h2>Carla Haverman</h2>\r\n<h2>Rosemary Merritt</h2>\r\n<h2>Carla George</h2>\r\n<h2>Laurie Truant</h2>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-11 15:10:58", "2014-03-11 22:10:58", "", "60", "http://localhost/~zastre/?p=420", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("423", "3", "2014-03-12 06:10:55", "2014-03-12 13:10:55", "[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<strong>Barbara Baillie</strong>,B.Ed., M.T.S., M.A.P.P.C, brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-03-12 06:10:55", "2014-03-12 13:10:55", "", "47", "http://localhost/~zastre/?p=423", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("424", "3", "2014-03-12 06:11:33", "2014-03-12 13:11:33", "For more in-depth information, please go to theÂ <strong>About Us</strong>Â section on the main ribbon/top of the page where each counsellor has a detailed biography included on the own page.\r\n<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>Margaret McKinnon Anderson</h2>\r\n<strong>Margaret Anderson</strong>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2>Barbara Baillie</h2>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<strong>Barbara Baillie\'s</strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2>Fiona Pasay</h2>\r\n<h2>Carla Haverman</h2>\r\n<h2>Rosemary Merritt</h2>\r\n<h2>Carla George</h2>\r\n<h2>Laurie Truant</h2>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-12 06:11:33", "2014-03-12 13:11:33", "", "60", "http://localhost/~zastre/?p=424", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("426", "3", "2014-03-12 06:21:18", "2014-03-12 13:21:18", "For more in-depth information, please go to theÂ <strong>About Us</strong>Â section on the main ribbon/top of the page where each counsellor has a detailed biography included on the own page.\r\n<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>Margaret McKinnon Anderson</h2>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<strong>Margaret Anderson</strong>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2>Barbara Baillie</h2>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<strong>Barbara Baillie\'s</strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2>Fiona Pasay</h2>\r\n<h2>Carla Haverman</h2>\r\n<h2>Rosemary Merritt</h2>\r\n<h2>Carla George</h2>\r\n<h2>Laurie Truant</h2>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-12 06:21:18", "2014-03-12 13:21:18", "", "60", "http://localhost/~zastre/?p=426", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("430", "3", "2017-02-22 11:35:02", "2017-02-22 19:35:02", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo-e1481049941965.jpg\"><img class=\"size-full wp-image-14590 alignright\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo-e1481049941965.jpg\" alt=\"CSS logo\" width=\"200\" height=\"51\" /></a>\n\n[caption id=\"attachment_433\" align=\"alignleft\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"wp-image-433 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to Our Supporters", "", "inherit", "closed", "closed", "", "199-autosave-v1", "", "", "2017-02-22 11:35:02", "2017-02-22 19:35:02", "", "199", "http://localhost/~zastre/?p=430", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("431", "3", "2014-03-12 06:35:46", "2014-03-12 13:35:46", "[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church\r\n<div class=\"mceTemp\"><dl class=\"wp-caption alignnone\" id=\"attachment_429\" style=\"width: 310px;\"><dt class=\"wp-caption-dt\"><a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process.jpg\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a></dt><dd class=\"wp-caption-dd\">Victoria Foundation\r\n<div class=\"mceTemp\"><dl class=\"wp-caption alignnone\" id=\"attachment_427\" style=\"width: 310px;\"><dt class=\"wp-caption-dt\"><a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a></dt><dd class=\"wp-caption-dd\">Full Farm House[/caption]\r\n\r\n</dd></dl></div>\r\n&nbsp;\r\n\r\n</dd></dl></div>\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-12 06:35:46", "2014-03-12 13:35:46", "", "199", "http://localhost/~zastre/?p=431", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("432", "3", "2014-03-12 06:39:38", "2014-03-12 13:39:38", "", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-12 06:39:38", "2014-03-12 13:39:38", "", "199", "http://localhost/~zastre/?p=432", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("434", "3", "2014-03-12 06:41:25", "2014-03-12 13:41:25", "[caption id=\"attachment_428\" align=\"alignleft\" width=\"71\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_429\" align=\"aligncenter\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process.jpg\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignright\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignleft\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/UnitedWayFull375x165.gif\"><img class=\"size-medium wp-image-433\" alt=\"United Way\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" width=\"300\" height=\"132\" /></a> United Way[/caption]", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-12 06:41:25", "2014-03-12 13:41:25", "", "199", "http://localhost/~zastre/?p=434", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("436", "3", "2014-03-12 06:47:32", "2014-03-12 13:47:32", "[caption id=\"attachment_428\" align=\"alignleft\" width=\"71\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_429\" align=\"aligncenter\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process.jpg\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_427\" align=\"alignright\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"aligncenter\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/UnitedWayFull375x165.gif\"><img class=\"size-medium wp-image-433\" alt=\"United Way\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" width=\"300\" height=\"132\" /></a> United Way[/caption]\r\n\r\n<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Catholic-Foundation.jpg\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-12 06:47:32", "2014-03-12 13:47:32", "", "199", "http://localhost/~zastre/?p=436", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("437", "3", "2014-03-12 06:50:01", "2014-03-12 13:50:01", "[caption id=\"attachment_428\" align=\"alignleft\" width=\"71\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Catholic-Foundation.jpg\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/UnitedWayFull375x165.gif\"><img class=\"size-medium wp-image-433\" alt=\"United Way\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" width=\"300\" height=\"132\" /></a> United Way[/caption]\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process.jpg\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-12 06:50:01", "2014-03-12 13:50:01", "", "199", "http://localhost/~zastre/?p=437", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("438", "3", "2014-03-12 06:51:04", "2014-03-12 13:51:04", "", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-12 06:51:04", "2014-03-12 13:51:04", "", "199", "http://localhost/~zastre/?p=438", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("439", "3", "2014-03-12 06:51:58", "2014-03-12 13:51:58", "<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Catholic-Foundation.jpg\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/UnitedWayFull375x165.gif\"><img class=\"size-medium wp-image-433\" alt=\"United Way\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" width=\"300\" height=\"132\" /></a> United Way[/caption]\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process.jpg\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost/~zastre/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-12 06:51:58", "2014-03-12 13:51:58", "", "199", "http://localhost/~zastre/?p=439", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("445", "3", "2014-03-12 07:10:42", "2014-03-12 14:10:42", "South Island Centre is located at:\r\n\r\n<strong>3821 A Cedar Hill Cross Road</strong> (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<strong>BUS ROUTES</strong> from downtown:\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<strong>From Sidney:</strong>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn left onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n<strong>From Langford/Colwood:</strong>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-03-12 07:10:42", "2014-03-12 14:10:42", "", "24", "http://localhost/~zastre/?p=445", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("447", "3", "2014-03-12 07:18:57", "2014-03-12 14:18:57", "Our street address is:\r\n\r\n<strong>3821 A Cedar Hill Cross Rd</strong>\r\n\r\nSouth Island Centre is located in the <strong>house</strong> (behind the big Sequoia tree) overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<strong>MAP</strong>:Â <a title=\"Mapquest location of South Island Centre\" href=\"http://www.mapquest.ca/#c2a2c06390c7420b3b89a053\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<strong>BUS ROUTES from downtown</strong>:\r\n<ul>\r\n	<li><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong>: stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong>:Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s an easy 5-7 minute walk up the hill (way from UVic).</li>\r\n	<li><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>: stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s an easy 5-7 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<strong>Travel directions from Sidney:</strong>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <strong>left</strong> onto McKenzie Ave at the light. Turn <strong>right</strong> at Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<strong>Travel directions from Langford/Colwood:</strong>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn left onto McKenzie Ave, turn <strong>right</strong> atÂ Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and then an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-12 07:18:57", "2014-03-12 14:18:57", "", "284", "http://localhost/~zastre/?p=447", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("448", "3", "2014-03-12 17:04:30", "2014-03-13 00:04:30", "[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<strong>Barbara Baillie</strong>,B.Ed., M.T.S., M.A.P.P.C,Â BCATR,Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-03-12 17:04:30", "2014-03-13 00:04:30", "", "47", "http://localhost/~zastre/?p=448", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("449", "3", "2014-03-12 17:05:52", "2014-03-13 00:05:52", "For more in-depth information, please go to theÂ <strong>About Us</strong>Â section on the main ribbon/top of the page where each counsellor has a detailed biography included on their own page.\r\n<h2>Bill Cole</h2>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>Margaret McKinnon Anderson</h2>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<strong>Margaret Anderson</strong>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2>Barbara Baillie</h2>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost/~zastre/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<strong>Barbara Baillie\'s</strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2></h2>\r\n<h2>Carla Haveman</h2>\r\n<h2>Rosemary Merritt</h2>\r\n<h2>Fiona Pasay</h2>\r\n<h2>Laurie Truant</h2>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-12 17:05:52", "2014-03-13 00:05:52", "", "60", "http://localhost/~zastre/?p=449", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("450", "3", "2014-03-12 17:06:06", "2014-03-13 00:06:06", "", "Carla Haveman", "", "inherit", "closed", "closed", "", "408-revision-v1", "", "", "2014-03-12 17:06:06", "2014-03-13 00:06:06", "", "408", "http://localhost/~zastre/?p=450", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("454", "3", "2014-03-14 16:29:37", "2014-03-14 23:29:37", "Our street address is:\r\n\r\n<strong>3821 A Cedar Hill Cross Rd</strong>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<strong>MAP</strong>:Â <a title=\"Mapquest location of South Island Centre\" href=\"http://www.mapquest.ca/#c2a2c06390c7420b3b89a053\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<strong>BUS ROUTES from downtown</strong>:\r\n<ul>\r\n	<li><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong>: stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong>:Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\r\n	<li><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>: stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<strong>Travel directions from Sidney:</strong>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <strong>left</strong> onto McKenzie Ave at the light. Turn <strong>right</strong> at Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<strong>Travel directions from Langford/Colwood:</strong>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn left onto McKenzie Ave, turn <strong>right</strong> atÂ Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and then an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-14 16:29:37", "2014-03-14 23:29:37", "", "284", "http://localhost:8888/TestSICPage/wordpress/?p=454", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("460", "3", "2014-03-14 16:47:02", "2014-03-14 23:47:02", "[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<strong>Margaret Anderson</strong> is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret (McKinnon) Anderson", "", "inherit", "closed", "closed", "", "44-revision-v1", "", "", "2014-03-14 16:47:02", "2014-03-14 23:47:02", "", "44", "http://localhost:8888/TestSICPage/wordpress/?p=460", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("461", "3", "2014-03-14 16:49:15", "2014-03-14 23:49:15", "Below are general information posters of allÂ <strong>personal development courses</strong>Â we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"text-decoration: underline;\"><em>specific dates and times of up-coming courses</em></span>Â in the top ribbon in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered and how to register</strong>. Each up-coming course is also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Link to CareerChoice info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-14 16:49:15", "2014-03-14 23:49:15", "", "187", "http://localhost:8888/TestSICPage/wordpress/?p=461", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("462", "3", "2014-03-14 16:51:27", "2014-03-14 23:51:27", "Below are general information posters of allÂ <strong>professional and volunteer support worker/caregiver courses</strong>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"text-decoration: underline;\"><em>specific dates and times of up-coming courses</em></span>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered and how to register. </strong>Each up-coming course can also be found in the Course and Events Calendar.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101.\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-03-14 16:51:27", "2014-03-14 23:51:27", "", "191", "http://localhost:8888/TestSICPage/wordpress/?p=462", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("463", "3", "2014-03-14 16:54:36", "2014-03-14 23:54:36", "Below are general information posters of all<strong>Â courses</strong>Â <strong>for those in MinistryÂ </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"text-decoration: underline;\"><em>specific dates and times of up-coming courses</em></span>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered and how to register.Â </strong>Each currently offered course can also be found in the Course and Events Calendar.\r\n<ul>\r\n	<li>Twilight Journeys (generalÂ <a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (generalÂ <a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (generalÂ <a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (generalÂ <a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (generalÂ <a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (generalÂ <a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office atÂ <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-03-14 16:54:36", "2014-03-14 23:54:36", "", "189", "http://localhost:8888/TestSICPage/wordpress/?p=463", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("464", "3", "2014-03-14 16:56:20", "2014-03-14 23:56:20", "Below are general information posters of all<strong>Â courses</strong>Â <strong>for those in MinistryÂ </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"text-decoration: underline;\"><em>specific dates and times of up-coming courses</em></span>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered and how to register.Â </strong>Each currently offered course can also be found in the Course and Events Calendar.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to email us at courses@localhost or call our office atÂ <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-03-14 16:56:20", "2014-03-14 23:56:20", "", "189", "http://localhost:8888/TestSICPage/wordpress/?p=464", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("465", "3", "2014-03-15 09:21:33", "2014-03-15 16:21:33", "At South Island Centre we believe it is important that <strong>everyone</strong> has access to Counselling services. <strong>Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need.</strong> Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3>Graduated Fee Scale</h3>\r\nSouth Island Centre sets its fees on a <strong>graduated scale between $50 and $110 per 60-minute session</strong> (includes GST) depending on the level of your household income. We do not turn away any clients. <em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%): see examples below</span>\r\n\r\nunder $50,000: we will discuss with you what you can afford\r\n\r\n$50,000 - $59,999: Â $50\r\n\r\n$60,000 - $69,999: Â $60\r\n\r\n$70,000 - $79,999: Â $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help subsidize the cost of counselling. <em>Please inquire if this applies to you.</em>\r\n<h3>Insurance Coverage</h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island. Most insurance coverage will require that you, the client, pay up-front and will reimburse you upon receiving a copy your receipts. While South Island is able to bill some insurance companies on your behalf, it is your responsibility to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of these services.", "Affordable Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-15 09:21:33", "2014-03-15 16:21:33", "", "54", "http://localhost:8888/TestSICPage/wordpress/?p=465", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("466", "3", "2014-03-15 18:24:13", "2014-03-16 01:24:13", "&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services\r\n\r\nFamily Systems specialty", "Bill Cole", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-03-15 18:24:13", "2014-03-16 01:24:13", "", "41", "http://localhost:8888/TestSICPage/wordpress/?p=466", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("467", "3", "2014-03-15 18:36:18", "2014-03-16 01:36:18", "[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<strong>Barbara Baillie</strong>,B.Ed., M.T.S., M.A.P.P.C,Â BCATR,Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-03-15 18:36:18", "2014-03-16 01:36:18", "", "47", "http://localhost:8888/TestSICPage/wordpress/?p=467", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("468", "3", "2014-03-15 18:57:17", "2014-03-16 01:57:17", "For more in-depth information, please go to theÂ <strong>About Us</strong>Â section on the main ribbon/top of the page where each counsellor has a detailed biography included on their own page.\r\n<h2>Bill Cole</h2>\r\n<dl class=\"wp-caption alignnone\" id=\"attachment_384\" style=\"width: 210px;\"><dt class=\"wp-caption-dt\"></dt><dd class=\"wp-caption-dd\">Bill Cole (Director of Services)</dd></dl>&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>Margaret McKinnon Anderson</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<strong>Margaret Anderson</strong>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2>Barbara Baillie</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<strong>Barbara Baillie\'s</strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2></h2>\r\n<h2>Carla Haveman</h2>\r\n<h2>Rosemary Merritt</h2>\r\n<h2>Fiona Pasay</h2>\r\n<h2>Laurie Truant</h2>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-15 18:57:17", "2014-03-16 01:57:17", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=468", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("469", "3", "2014-03-15 19:00:24", "2014-03-16 02:00:24", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation.jpg\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process.jpg\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:00:24", "2014-03-16 02:00:24", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=469", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("470", "3", "2014-03-15 19:01:58", "2014-03-16 02:01:58", "<a href=\"http://www.cbc.ca/\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process.jpg\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:01:58", "2014-03-16 02:01:58", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=470", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("471", "3", "2014-03-15 19:02:24", "2014-03-16 02:02:24", "<img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" />\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process.jpg\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:02:24", "2014-03-16 02:02:24", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=471", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("472", "3", "2014-03-15 19:08:54", "2014-03-16 02:08:54", "<img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" />\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"www.cbc.ca/news\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:08:54", "2014-03-16 02:08:54", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=472", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("473", "3", "2014-03-15 19:09:56", "2014-03-16 02:09:56", "<img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" />\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.cbc.ca/news\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:09:56", "2014-03-16 02:09:56", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=473", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("474", "3", "2014-03-15 19:10:42", "2014-03-16 02:10:42", "<img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" />\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm.jpg\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:10:42", "2014-03-16 02:10:42", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=474", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("475", "3", "2014-03-15 19:16:07", "2014-03-16 02:16:07", "<a title=\"Catholic Foundation of Vancouver Island\" href=\"http:http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:16:07", "2014-03-16 02:16:07", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=475", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("476", "3", "2014-03-15 19:17:52", "2014-03-16 02:17:52", "<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n&nbsp;", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:17:52", "2014-03-16 02:17:52", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=476", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("477", "3", "2014-03-15 19:19:51", "2014-03-16 02:19:51", "<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" alt=\"United Way\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-15 19:19:51", "2014-03-16 02:19:51", "", "199", "http://localhost:8888/TestSICPage/wordpress/?p=477", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("478", "3", "2014-03-15 19:24:18", "2014-03-16 02:24:18", "Please hover over the drop-down menu and click on the item you are interested in to find out more about the services we offer at South Island Centre.", "Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-15 19:24:18", "2014-03-16 02:24:18", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=478", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("480", "3", "2014-03-16 08:14:40", "2014-03-16 15:14:40", "<h2>New Clients:</h2>\r\nIf you are new to our practice and would like to enquire about an initial appointment, pleaseÂ call our office co-ordinator at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851 and press 101</strong>. Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on the confidential voicemail box.\r\n\r\nOur general office hours are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statuary holidays.\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h2>Existing Clients:</h2>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851 and pressing 8 for the staff directory</strong> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk</strong> and the office administrator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-03-16 08:14:40", "2014-03-16 15:14:40", "", "64", "http://localhost:8888/TestSICPage/wordpress/?p=480", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("481", "3", "2014-03-16 12:56:02", "2014-03-16 19:56:02", "[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span> is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret (McKinnon) Anderson", "", "inherit", "closed", "closed", "", "44-revision-v1", "", "", "2014-03-16 12:56:02", "2014-03-16 19:56:02", "", "44", "http://localhost:8888/TestSICPage/wordpress/?p=481", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("482", "3", "2014-03-16 12:56:45", "2014-03-16 19:56:45", "[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie</strong></span>,B.Ed., M.T.S., M.A.P.P.C,Â BCATR,Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-03-16 12:56:45", "2014-03-16 19:56:45", "", "47", "http://localhost:8888/TestSICPage/wordpress/?p=482", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("483", "3", "2014-03-16 12:58:07", "2014-03-16 19:58:07", "<span style=\"color: #0000ff;\"><strong>Our Mission Statement:</strong></span>Â We provide professional services to individuals, families and organizations, facilitating personal, relational and spiritual wholeness.\r\n<h4><span style=\"color: #0000ff;\">South Island Centre counsellors can help with:</span></h4>\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nSouth Island Centre counsellors provide a safe, positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, you don\'t have to go through it alone!Â We\'re here to help!\r\n\r\n<span style=\"color: #0000ff;\">Please contact us by calling Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101</span> or <a title=\"Email link to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us atÂ counselling@localhost.\r\n<p style=\"text-align: left;\">South Island Centre is a non-profit counselling and training agency funded solely through donations, fees, and grants. We have been serving Victoria communities since 1975. Â <span style=\"color: #0000ff;\">South Island Centre services include:</span></p>\r\n\r\n<ul>\r\n	<li>Individual, couple and family counselling</li>\r\n	<li>Workshops, courses and training programs</li>\r\n	<li>Consultation for mental health professionals and clergy</li>\r\n	<li>Career change and development programs</li>\r\n</ul>\r\n&nbsp;", "General Information", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-16 12:58:07", "2014-03-16 19:58:07", "", "35", "http://localhost:8888/TestSICPage/wordpress/?p=483", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("484", "3", "2014-03-16 12:59:49", "2014-03-16 19:59:49", "At South Island Centre we believe it is important that <span style=\"color: #0000ff;\"><strong>everyone</strong></span> has access to Counselling services. <span style=\"color: #0000ff;\"><strong>Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need.</strong></span> Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">Graduated Fee Scale</span></h3>\r\nSouth Island Centre sets its fees on a <span style=\"color: #0000ff;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. We do not turn away any clients. <em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline; color: #008080;\">Annual Combined Gross Household Income Fee (0.1%): see examples below</span>\r\n\r\nunder $50,000: we will discuss with you what you can afford\r\n\r\n$50,000 - $59,999: Â $50\r\n\r\n$60,000 - $69,999: Â $60\r\n\r\n$70,000 - $79,999: Â $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help subsidize the cost of counselling. <em>Please inquire if this applies to you.</em>\r\n<h3><span style=\"color: #0000ff;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island. Most insurance coverage will require that you, the client, pay up-front and will reimburse you upon receiving a copy your receipts. While South Island is able to bill some insurance companies on your behalf, it is your responsibility to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of these services.", "Affordable Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-16 12:59:49", "2014-03-16 19:59:49", "", "54", "http://localhost:8888/TestSICPage/wordpress/?p=484", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("485", "3", "2014-03-16 13:02:37", "2014-03-16 20:02:37", "For more in-depth information, please go to theÂ <strong>About Us</strong>Â section on the main ribbon/top of the page where each counsellor has a detailed biography included on their own page.\r\n<h2><span style=\"color: #0000ff;\">Bill Cole</span></h2>\r\n<dl class=\"wp-caption alignnone\" id=\"attachment_384\" style=\"width: 210px;\"><dt class=\"wp-caption-dt\"></dt><dd class=\"wp-caption-dd\">Bill Cole (Director of Services)</dd></dl>&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #0000ff;\">Margaret McKinnon Anderson</span></h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2><span style=\"color: #0000ff;\">Barbara Baillie</span></h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2></h2>\r\n<h2>Carla Haveman</h2>\r\n<h2>Rosemary Merritt</h2>\r\n<h2>Fiona Pasay</h2>\r\n<h2>Laurie Truant</h2>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-16 13:02:37", "2014-03-16 20:02:37", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=485", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("486", "3", "2014-03-16 13:04:08", "2014-03-16 20:04:08", "<h2><span style=\"color: #0000ff;\">New Clients:</span></h2>\r\nIf you are new to our practice and would like to enquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\">call our office co-ordinator at Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i>Â <strong>250-472-2851 and press 101</strong>.</span> Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on the confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statuary holidays.\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h2><span style=\"color: #0000ff;\">Existing Clients:</span></h2>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <span style=\"color: #0000ff;\"><strong>250-472-2851 and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk</strong> and the office administrator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-03-16 13:04:08", "2014-03-16 20:04:08", "", "64", "http://localhost:8888/TestSICPage/wordpress/?p=486", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("489", "3", "2014-03-16 13:09:55", "2014-03-16 20:09:55", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">Family Systems Theory:</span> please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-16 13:09:55", "2014-03-16 20:09:55", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=489", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("490", "3", "2014-03-16 13:11:06", "2014-03-16 20:11:06", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Ebb%20and%20Flow%20March%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">Family Systems Theory:</span> please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-16 13:11:06", "2014-03-16 20:11:06", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=490", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("491", "3", "2014-03-16 13:12:24", "2014-03-16 20:12:24", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Ebb%20and%20Flow%20March%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">Family Systems Theory:</span> please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-16 13:12:24", "2014-03-16 20:12:24", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=491", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("492", "3", "2014-03-16 13:13:13", "2014-03-16 20:13:13", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Ebb%20and%20Flow%20March%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">Family Systems Theory:</span> please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-16 13:13:13", "2014-03-16 20:13:13", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=492", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("493", "3", "2014-03-16 13:17:20", "2014-03-16 20:17:20", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â in the top ribbon in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered and how to register</strong>. Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Link to CareerChoice info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/CareerChoice.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-16 13:17:20", "2014-03-16 20:17:20", "", "187", "http://localhost:8888/TestSICPage/wordpress/?p=493", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("494", "3", "2014-03-16 13:20:38", "2014-03-16 20:20:38", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered and how to register. </strong>Each up-coming course can also be found in the Course and Event Calendar.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-03-16 13:20:38", "2014-03-16 20:20:38", "", "191", "http://localhost:8888/TestSICPage/wordpress/?p=494", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("495", "3", "2014-03-16 13:21:57", "2014-03-16 20:21:57", "Below are general information posters of all<strong>Â <span style=\"color: #0000ff;\">courses</span></strong><span style=\"color: #0000ff;\">Â </span><strong><span style=\"color: #0000ff;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â in theÂ <strong>CoursesÂ </strong>drop-down menu underÂ <strong>Courses currently offered and how to register.Â </strong>Each currently offered course can also be found in the Course and Event Calendar.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to <strong>email</strong> us at courses@localhost or call our office atÂ <span style=\"color: #0000ff;\"><i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-03-16 13:21:57", "2014-03-16 20:21:57", "", "189", "http://localhost:8888/TestSICPage/wordpress/?p=495", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("499", "3", "2014-03-16 13:32:58", "2014-03-16 20:32:58", "South Island Centre is located at:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Road</strong></span> (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<span style=\"color: #0000ff;\"><strong>BUS ROUTES</strong> from downtown:</span>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s an easy 5-7 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Sidney:</strong></span>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn left onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Langford/Colwood:</strong></span>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-03-16 13:32:58", "2014-03-16 20:32:58", "", "24", "http://localhost:8888/TestSICPage/wordpress/?p=499", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("501", "3", "2014-03-16 13:37:06", "2014-03-16 20:37:06", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\nTelephone: (250) 472-2851, extension 101 to reach the front desk.\r\n\r\nFax: (250) 472-2815\r\n<h5><span style=\"font-size: 1.5em; line-height: 1.5em; color: #0000ff;\">Website address:</span></h5>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h3><span style=\"color: #0000ff;\">Office hours:</span></h3>\r\nOur office hours are from <strong>9:00-5:00pm from Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statuary holidays.\r\n\r\nIf our office co-ordinator is on the phone helping another client when you call, please leave a voice mail: tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h3><span style=\"color: #0000ff;\">Where on this big parking lot are we?</span></h3>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n\r\n<span style=\"color: #0000ff;\"><strong>BUS ROUTES</strong> from downtown:</span>\r\n<ul>\r\n	<li><strong>Transit Bus No. 24</strong> stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li><strong>Transit buses 27 and 28</strong> stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s aÂ <strong>5-10 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2></h2>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-16 13:37:06", "2014-03-16 20:37:06", "", "29", "http://localhost:8888/TestSICPage/wordpress/?p=501", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("502", "3", "2014-03-16 13:40:04", "2014-03-16 20:40:04", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h5><span style=\"font-size: 1.5em; line-height: 1.5em; color: #0000ff;\">Website address:</span></h5>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h3><span style=\"color: #0000ff;\">Office hours:</span></h3>\r\nOur office hours are from <strong>9:00-5:00pm on Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statuary holidays.\r\n\r\nThe office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm. If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h3><span style=\"color: #0000ff;\">Where on this big parking lot are we?</span></h3>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n<h3><span style=\"color: #0000ff;\"><strong>BUS ROUTES</strong> from downtown:</span></h3>\r\n<ul>\r\n	<li><strong>Transit Bus No. 24</strong> stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li><strong>Transit buses 27 and 28</strong> stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s aÂ <strong>5-10 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2></h2>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-16 13:40:04", "2014-03-16 20:40:04", "", "29", "http://localhost:8888/TestSICPage/wordpress/?p=502", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("503", "3", "2014-03-16 13:41:39", "2014-03-16 20:41:39", "Our street address is:\r\n\r\n<strong>3821 A Cedar Hill Cross Rd</strong>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>MAP</strong></span>:Â <a title=\"Mapquest location of South Island Centre\" href=\"http://www.mapquest.ca/#c2a2c06390c7420b3b89a053\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong>: stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong>:Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\r\n	<li><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>: stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <strong>left</strong> onto McKenzie Ave at the light. Turn <strong>right</strong> at Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn left onto McKenzie Ave, turn <strong>right</strong> atÂ Cedar Hill Rd, <strong>right</strong> again at Cedar Hill Cross Rd, and then an immediateÂ <strong>RIGHT</strong>Â onto the St Luke\'s Anglican Church parking lot. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-16 13:41:39", "2014-03-16 20:41:39", "", "284", "http://localhost:8888/TestSICPage/wordpress/?p=503", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("504", "3", "2014-03-16 13:46:54", "2014-03-16 20:46:54", "At South Island Centre we believe it is important that <span style=\"color: #0000ff;\"><strong>everyone</strong></span> has access to Counselling services.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need.</strong></span> Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">Graduated Fee Scale</span></h3>\r\nSouth Island Centre sets its fees on a <span style=\"color: #0000ff;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. We do not turn away any clients. <em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline; color: #008080;\">Annual Combined Gross Household Income Fee (0.1%): see examples belobloew</span>Â $50,000: we will discuss with you what you can afford\r\n\r\nbelow $50,000 - $59,999: Â $50\r\n\r\n$60,000 - $69,999: Â $60\r\n\r\n$70,000 - $79,999: Â $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\nWe acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard, American Express)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <em>subsidize the cost of counselling</em>. <strong>Please inquire if this applies to you.Â </strong>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island. Most insurance coverage will require that you, the client, pay up-front and will reimburse you upon receiving a copy your receipts. While South Island is able to bill some insurance companies on your behalf, it is your responsibility to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of these services.", "Affordable Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-16 13:46:54", "2014-03-16 20:46:54", "", "54", "http://localhost:8888/TestSICPage/wordpress/?p=504", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("505", "3", "2014-07-22 11:35:54", "2014-07-22 18:35:54", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â <span style=\"color: rgb(0, 0, 0);\">Samaritan\'s Fund</span></strong><span style=\"color: rgb(0, 0, 0);\">.</span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\n\n&nbsp;\n\n<span style=\"color: rgb(0, 0, 0);\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong>Â </span>(for example: one-time, monthly, quarterly, annual etc):\n<ul>\n	<li><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Option 1 (preferred)</strong></span></span>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\n</ul>\n<ul>\n	<li><span style=\"text-decoration: underline; color: rgb(0, 0, 0);\"><strong>Option 2</strong></span>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\n</ul>\n<ul>\n	<li><strong><span style=\"color: #0000ff;\"><span style=\"text-decoration: underline;\"><span style=\"color: rgb(0, 0, 0); text-decoration: underline;\">O</span><span style=\"color: rgb(0, 0, 0); text-decoration: underline;\">ption 3</span></span></span>:</strong><span style=\"color: rgb(0, 0, 0);\">Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">Click here</span></a></span>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amountÂ </span>we actually receive.</li>\n</ul>\n&nbsp;\n\n<span style=\"color: rgb(0, 0, 0);\"><strong>Why monthly or quarterly giving?</strong></span>\n\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\n\n<span style=\"color: #0000ff;\"><strong>The Fine Print</strong></span>\n\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\n\n<strong><span style=\"color: #0000ff;\">In-Kind Donation /VolunteeringÂ </span></strong>\n\nYou may help us with anÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span>Â when you volunteer your time and/or talent\n<ul>\n	<li>at South Island CentreÂ <strong>events</strong>,</li>\n	<li>at the South Island CentreÂ <strong>office</strong>,</li>\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\n</ul>\nPlease contact us at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\n\nThank you for your generosity!", "Support Us", "", "inherit", "closed", "closed", "", "170-autosave-v1", "", "", "2014-07-22 11:35:54", "2014-07-22 18:35:54", "", "170", "http://localhost:8888/TestSICPage/wordpress/?p=505", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("506", "3", "2014-03-16 15:00:23", "2014-03-16 22:00:23", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our Samaritan\'s fund. If you would like to help us and our Samaritan\'s fund, <span style=\"color: #0000ff;\">please donate using the link below</span>.\r\n\r\n<a title=\"Link to Canadahelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to set up a donation with CanadaHelps.org.\r\n\r\nWe also accept donations to our Samaritan\'s Fund in<strong> cash, by cheque and by credit card</strong> (one-time, annual, monthly). You may mail your cash or cheque donations to <strong>South Island Centre,</strong>Â <b>3821A Cedar Cross Rd, Victoria, BC, V8P 2M6</b>, or contact the office co-ordinator atÂ <strong>250-472-2851, extension 101Â </strong>who will process the credit card charge.\r\n\r\nThank you for your support.\r\n\r\n<span style=\"color: #0000ff;\">Questions?</span> Call us atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>(250) 472-2851</strong> or <a title=\"Email to donate info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a> to email info@localhost.\r\n\r\n&nbsp;", "Support us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-03-16 15:00:23", "2014-03-16 22:00:23", "", "170", "http://localhost:8888/TestSICPage/wordpress/?p=506", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("507", "3", "2014-03-16 15:13:31", "2014-03-16 22:13:31", "<h3><span style=\"color: #0000ff;\">Samaritan\'s Fund</span></h3>\r\nSouth Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #0000ff;\">Samaritan\'s fund</span>.\r\n\r\nYou may help us in various ways:\r\n<ul>\r\n	<li>Donate <strong>cash, by cheque or credit card</strong> (one-time, annual, monthly). Please drop off your cash or cheque donations at or mail them to <strong>South Island Centre,</strong>Â <b>3821A Cedar Cross Rd, Victoria, BC, V8P 2M6</b>, or contact the office co-ordinator atÂ <strong>250-472-2851, extension 101Â </strong>who will process the credit card charge and can help set up regular monthly donations by credit card.</li>\r\n	<li>CanadaHelps.org donation on-line: Â <a title=\"Link to Canadahelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to donate by credit card.</li>\r\n</ul>\r\nThank you for your support.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Volunteer at South Island Centre</span></h3>\r\nPlease consider volunteering your time at the office or at South Island Centre events. Please contact the office co-ordinator atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to find out opportunities to volunteer with us. Thank you!\r\n\r\n&nbsp;", "Support us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-03-16 15:13:31", "2014-03-16 22:13:31", "", "170", "http://localhost:8888/TestSICPage/wordpress/?p=507", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("508", "3", "2014-03-16 15:17:24", "2014-03-16 22:17:24", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our <span style=\"color: #0000ff;\">Samaritan\'s fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<strong>Make a one-time (or an annual, bi-annual, quarterly or monthly) donation to our Samaritan Fund. You may:</strong>\r\n<ul>\r\n	<li>mail <strong>cash or a cheque</strong> made out toÂ <strong><em>South Island Centre for Counselling and Training</em></strong> to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6,</strong> which must include your mailing address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li>charge a donation to your <strong>credit card</strong> by calling the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know your mailing address, and weÂ will send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li><a title=\"Link to CanadaHelps organization to make a donation\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"text-decoration: underline;\">c</span>lick here</a>Â to make a donation with CanadaHelps.org.</li>\r\n</ul>\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you\r\n<ul>\r\n	<li>volunteer your time at South Island Centre events or at the office.</li>\r\n	<li>volunteer your time as a board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-16 15:17:24", "2014-03-16 22:17:24", "", "172", "http://localhost:8888/TestSICPage/wordpress/?p=508", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("509", "3", "2014-03-16 15:25:06", "2014-03-16 22:25:06", "<h3><span style=\"color: #0000ff;\">Samaritan\'s Fund</span></h3>\r\nSouth Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #0000ff;\">Samaritan\'s fund</span>.\r\n\r\nTo make a one-time, annual, bi-annual, quarterly or monthly <strong>donation</strong> to our <span style=\"color: #0000ff;\">Samaritan Fund</span>Â you may:\r\n<ul>\r\n	<li>MailÂ <strong>cash or a cheque</strong>Â made out toÂ <strong><em>South Island Centre for Counselling and Training</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li>Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know your mailing address, and weÂ will send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li>To make an on-line donation with CanadaHelps.org with your credit card:Â <a title=\"Link to CanadaHelps organization to make a donation\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">click here</a>.</li>\r\n</ul>\r\n&nbsp;\r\n\r\nSouth Island Centre appreciates yourÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span>Â when you\r\n<ul>\r\n	<li>volunteer your time at South Island Centre events or at the office.</li>\r\n	<li>volunteer your time as a board member.</li>\r\n</ul>\r\nPlease contact the office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "Support us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-03-16 15:25:06", "2014-03-16 22:25:06", "", "170", "http://localhost:8888/TestSICPage/wordpress/?p=509", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("510", "3", "2014-03-16 15:32:02", "2014-03-16 22:32:02", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work.\r\n\r\nYou may help us with anÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong>Â </span>when you volunteer your time and talent at\r\n<ul>\r\n	<li>South Island Centre <strong>events</strong>,</li>\r\n	<li>the South Island Centre <strong>office</strong>,</li>\r\n	<li>a South Island CentreÂ <strong>board member</strong>.</li>\r\n</ul>\r\nPlease contact us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Volunteer opportunities", "", "inherit", "closed", "closed", "", "174-revision-v1", "", "", "2014-03-16 15:32:02", "2014-03-16 22:32:02", "", "174", "http://localhost:8888/TestSICPage/wordpress/?p=510", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("511", "3", "2015-03-26 12:10:34", "2015-03-26 19:10:34", "<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Services and Our Christian Roots</span></span></h3>\nSouth Island Centre for Counselling and Training has been offering <strong>Pastoral Care &amp; Counselling Services</strong> in Victoria and the South Island since 1975.\n\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre <strong>supports clergy and persons of faith</strong> as they work towards cultivating loving and unifying relationships.\n\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\n<h2></h2>\n<h3><span style=\"text-decoration: underline;\">Professional<span style=\"color: #000000; text-decoration: underline;\"> Consultations for Clergy</span></span></h3>\n<strong>Pastoral care</strong> is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\n\nSouth Island Centre is a <strong>consultation service to pastors and other professionals</strong> through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\n<h3><span style=\"color: #0000ff;\"><span style=\"color: #333333; font-size: 14px; line-height: 1.5em;\"><strong>Please contact ourÂ Director of Services, Bill Cole,Â by e-mail by clickingÂ </strong><a title=\"Contact Form: General Submission\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/contact-form-general-submission/\" target=\"_blank\">here</a>Â or call him at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â (250) 472-2851, extension 102.\n</span></span></h3>", "Counselling Services for Clergy", "", "inherit", "closed", "closed", "", "9-autosave-v1", "", "", "2015-03-26 12:10:34", "2015-03-26 19:10:34", "", "9", "http://localhost:8888/TestSICPage/wordpress/?p=511", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("512", "3", "2014-03-16 15:39:35", "2014-03-16 22:39:35", "<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h2><span style=\"color: #0000ff;\">Spiritual Directors</span></h2>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.\r\n<h2><span style=\"color: #0000ff;\">CareerChoice Program</span></h2>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much......\"\r\n<h2><span style=\"color: #0000ff;\">South Island Centre Will Travel</span></h2>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come on location with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff.", "Pastoral Services", "", "inherit", "closed", "closed", "", "9-revision-v1", "", "", "2014-03-16 15:39:35", "2014-03-16 22:39:35", "", "9", "http://localhost:8888/TestSICPage/wordpress/?p=512", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("513", "3", "2016-08-11 12:34:11", "2016-08-11 19:34:11", "Listed below are additional services we offer at South Island Centre:\n\n&nbsp;\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h4>\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\n\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\n\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\n<h4></h4>\n<h4><span style=\"text-decoration: underline;\">Professional Counselling Consultations for Clergy</span></h4>\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\n\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\n<h3></h3>\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h4>\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors is<span style=\"color: #000000;\"><strong>Â Barbara Baillie.</strong></span>\n<h3></h3>\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h4>\nThe CareerChoice program of South Island Centre has been offered in the past to provide an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\n\nThis cour\n\n&nbsp;\n\nRead what a participant had to say about the experience:\n\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-autosave-v1", "", "", "2016-08-11 12:34:11", "2016-08-11 19:34:11", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=513", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("514", "3", "2014-03-16 15:43:52", "2014-03-16 22:43:52", "Please hover over the <strong>drop-down menu</strong> and click on the item you are interested in to find out more about the services we offer at South Island Centre. You may also continue reading below.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h2><span style=\"color: #0000ff;\">Spiritual Directors</span></h2>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life.\r\n<h2><span style=\"color: #0000ff;\">CareerChoice Program</span></h2>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h2><span style=\"color: #0000ff;\">South Island Centre Will Travel</span></h2>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come on location with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff.", "Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-16 15:43:52", "2014-03-16 22:43:52", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=514", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("517", "3", "2014-03-16 15:49:55", "2014-03-16 22:49:55", "The <strong><span style=\"color: #0000ff;\">CareerChoice program</span></strong> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\n\nRead what a participant had to say about the experience:\n\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\n\nQuestions? all the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to e-mail us at info@localhost.", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-autosave-v1", "", "", "2014-03-16 15:49:55", "2014-03-16 22:49:55", "", "123", "http://localhost:8888/TestSICPage/wordpress/?p=517", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("518", "3", "2014-03-16 15:50:53", "2014-03-16 22:50:53", "The <strong><span style=\"color: #0000ff;\">CareerChoice program</span></strong> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n<strong>Interested in starting your CareerChoice program?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to e-mail us at info@localhost to get you started.", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-revision-v1", "", "", "2014-03-16 15:50:53", "2014-03-16 22:50:53", "", "123", "http://localhost:8888/TestSICPage/wordpress/?p=518", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("519", "3", "2014-07-31 10:49:51", "2014-07-31 17:49:51", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:<span style=\"color: #000000;\">Â </span><strong><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\">Barbara Baillie</span></a>Â </strong>andÂ <span style=\"color: #000000;\"><strong><a title=\"Spiritual Director Pamela Welle\" href=\"http://localhost:8888/TestSICPage/wordpress/other-services/spiritual-direction/pamela-welle/\" target=\"_blank\"><span style=\"color: #000000;\">Pamela Welle</span></a></strong>Â (please click on the name of the counsell<strong>Â </strong></span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form. Please indicate in your message that you would like the office co-ordinator toÂ put you in touch with the Spiritual Director of your choice.\n\n&nbsp;\n\nFor more information on our Spiritual Direction program, follow this link: Â <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-autosave-v1", "", "", "2014-07-31 10:49:51", "2014-07-31 17:49:51", "", "91", "http://localhost:8888/TestSICPage/wordpress/?p=519", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("520", "3", "2014-03-16 15:56:14", "2014-03-16 22:56:14", "<h3><span style=\"color: #0000ff;\"><strong>Spiritual Directors at South Island Centre: Barbara Baillie and Pamela WelleÂ </strong></span></h3>\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in YOUR life.</span>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">For more information on <strong>Barbara Baillie</strong>Â orÂ <strong>Pamela Welle</strong>, please go to theÂ <strong>About us</strong>Â section and click on the individual counsellor\'s page.Â </span></span>\r\n\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-03-16 15:56:14", "2014-03-16 22:56:14", "", "91", "http://localhost:8888/TestSICPage/wordpress/?p=520", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("521", "3", "2014-03-16 15:56:45", "2014-03-16 22:56:45", "<h3 style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>Spiritual Directors at South Island Centre: Barbara Baillie and Pamela WelleÂ </strong></span></h3>\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in YOUR life.</span>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">For more information on <strong>Barbara Baillie</strong>Â orÂ <strong>Pamela Welle</strong>, please go to theÂ <strong>About us</strong>Â section and click on the individual counsellor\'s page.Â </span></span>\r\n\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-03-16 15:56:45", "2014-03-16 22:56:45", "", "91", "http://localhost:8888/TestSICPage/wordpress/?p=521", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("522", "3", "2014-03-16 15:57:15", "2014-03-16 22:57:15", "<h3 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Spiritual Directors at South Island Centre: </strong></span></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Barbara Baillie and Pamela WelleÂ </strong></span></h3>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in YOUR life.</span></p>\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">For more information on <strong>Barbara Baillie</strong>Â orÂ <strong>Pamela Welle</strong>, please go to theÂ <strong>About us</strong>Â section and click on the individual counsellor\'s page.Â </span></span>\r\n\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-03-16 15:57:15", "2014-03-16 22:57:15", "", "91", "http://localhost:8888/TestSICPage/wordpress/?p=522", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("525", "3", "2014-03-16 20:25:38", "2014-03-17 03:25:38", "<span style=\"color: #0000ff;\">South Island Centre counsellors </span>provide professional services to individuals, couples, families, and organizations. We can help you with:\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur experienced counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â We\'re here to help!\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How we can help you", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-16 20:25:38", "2014-03-17 03:25:38", "", "35", "http://localhost:8888/TestSICPage/wordpress/?p=525", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("526", "3", "2014-03-16 20:26:52", "2014-03-17 03:26:52", "Please hover over the <strong>drop-down menu</strong> and click on the item you are interested in to find out more about other services we offer at South Island Centre. You may also continue reading below.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h2><span style=\"color: #0000ff;\">Spiritual Directors</span></h2>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life.\r\n<h2><span style=\"color: #0000ff;\">CareerChoice Program</span></h2>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h2><span style=\"color: #0000ff;\">South Island Centre Will Travel</span></h2>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come on location with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff.", "Other Services we provide", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-16 20:26:52", "2014-03-17 03:26:52", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=526", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("527", "3", "2014-03-16 20:29:19", "2014-03-17 03:29:19", "<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering <strong>Pastoral Care &amp; Counselling Services</strong> in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre <strong>supports clergy and persons of faith</strong> as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2></h2>\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\n<strong>Pastoral care</strong> is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a <strong>consultation service to pastors and other professionals</strong> through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h2><span style=\"color: #0000ff;\"><span style=\"color: #333333; font-size: 14px; line-height: 1.5em;\">Â </span></span></h2>", "Counselling Services for Clergy", "", "inherit", "closed", "closed", "", "9-revision-v1", "", "", "2014-03-16 20:29:19", "2014-03-17 03:29:19", "", "9", "http://localhost:8888/TestSICPage/wordpress/?p=527", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("528", "3", "2014-03-16 20:30:31", "2014-03-17 03:30:31", "<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering <strong>Pastoral Care &amp; Counselling Services</strong> in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre <strong>supports clergy and persons of faith</strong> as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2></h2>\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\n<strong>Pastoral care</strong> is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a <strong>consultation service to pastors and other professionals</strong> through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\"><span style=\"color: #333333; font-size: 14px; line-height: 1.5em;\"><strong>Please contact ourÂ Director of Services, Bill Cole,Â by e-mail by clickingÂ </strong><a title=\"email to Director of Services\" href=\"mailto:bill@localhost\" target=\"_blank\">here</a>.</span></span></h3>", "Counselling Services for Clergy", "", "inherit", "closed", "closed", "", "9-revision-v1", "", "", "2014-03-16 20:30:31", "2014-03-17 03:30:31", "", "9", "http://localhost:8888/TestSICPage/wordpress/?p=528", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("533", "3", "2014-03-16 21:15:14", "2014-03-17 04:15:14", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"Mapquest location of South Island Centre\" href=\"http://www.mapquest.ca/#c2a2c06390c7420b3b89a053\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill and Cedar Hill Cross</strong>Â <strong>Rds</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne Ave</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne Ave</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-16 21:15:14", "2014-03-17 04:15:14", "", "284", "http://localhost:8888/TestSICPage/wordpress/?p=533", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("535", "3", "2014-03-16 21:41:12", "2014-03-17 04:41:12", "<span style=\"color: #0000ff;\">South Island Centre counsellors </span>provide professional services to individuals, couples, families, and organizations. <strong>We can help you with</strong>:\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-16 21:41:12", "2014-03-17 04:41:12", "", "35", "http://localhost:8888/TestSICPage/wordpress/?p=535", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("536", "3", "2014-03-16 21:41:45", "2014-03-17 04:41:45", "<span style=\"color: #0000ff;\">South Island Centre counsellors </span>provide professional services to individuals, couples, families, and organizations.\r\n\r\n<strong>We can help you with</strong>:\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-16 21:41:45", "2014-03-17 04:41:45", "", "35", "http://localhost:8888/TestSICPage/wordpress/?p=536", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("539", "3", "2014-03-16 21:49:02", "2014-03-17 04:49:02", "For more in-depth biographical information, please hover over the <strong>MeetÂ Us</strong>Â section on the main ribbon/top of the page, then <strong>click</strong> on the name of the individual counsellor.\r\n<h2><span style=\"color: #0000ff;\">Bill Cole</span></h2>\r\n<dl class=\"wp-caption alignnone\" id=\"attachment_384\" style=\"width: 210px;\"><dt class=\"wp-caption-dt\"></dt><dd class=\"wp-caption-dd\">Bill Cole (Director of Services)</dd></dl>&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #0000ff;\">Margaret McKinnon Anderson</span></h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h2><span style=\"color: #0000ff;\">Barbara Baillie</span></h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2></h2>\r\n<h2>Carla Haveman</h2>\r\n<h2>Rosemary Merritt</h2>\r\n<h2>Fiona Pasay</h2>\r\n<h2>Laurie Truant</h2>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-16 21:49:02", "2014-03-17 04:49:02", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=539", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("540", "3", "2014-03-16 21:50:09", "2014-03-17 04:50:09", "<span style=\"color: #0000ff;\">South Island Centre counsellors </span>provide professional services to individuals, couples, families, and organizations.\r\n\r\n<strong>We can help you with</strong>:\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-16 21:50:09", "2014-03-17 04:50:09", "", "35", "http://localhost:8888/TestSICPage/wordpress/?p=540", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("541", "3", "2014-03-16 21:50:42", "2014-03-17 04:50:42", "<span style=\"color: #0000ff;\">South Island Centre counsellors </span>provide professional services to individuals, couples, families, and organizations.\r\n\r\n<strong>We can help you with</strong>:\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-16 21:50:42", "2014-03-17 04:50:42", "", "35", "http://localhost:8888/TestSICPage/wordpress/?p=541", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("543", "3", "2014-03-17 06:42:43", "2014-03-17 13:42:43", "Please hover over the <strong>drop-down menu</strong> and click on the item you are interested in to find out more about <strong>other services</strong> we offer at South Island Centre. You may also continue reading below.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h2><span style=\"color: #0000ff;\">Spiritual Directors</span></h2>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life.\r\n<h2><span style=\"color: #0000ff;\">CareerChoice Program</span></h2>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h2><span style=\"color: #0000ff;\">Travel Option</span></h2>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come on location with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-17 06:42:43", "2014-03-17 13:42:43", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=543", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("544", "3", "2014-03-17 06:45:35", "2014-03-17 13:45:35", "Please hover over the <strong>drop-down menu</strong> and click on the item you are interested in to find out more about <strong>other services</strong> we offer at South Island Centre. You may also continue reading below.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h2><span style=\"color: #0000ff;\">Spiritual Directors</span></h2>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are Barbara Baillie and Pamela Welle. For more in-depth information, please go to theÂ <strong>About Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual\'s biographical page.\r\n<h2><span style=\"color: #0000ff;\">CareerChoice Program</span></h2>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h2><span style=\"color: #0000ff;\">Travel Option</span></h2>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come on location with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, Bill Cole to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-17 06:45:35", "2014-03-17 13:45:35", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=544", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("545", "3", "2014-03-17 06:47:41", "2014-03-17 13:47:41", "Please hover over the <strong>drop-down menu</strong> and click on the item you are interested in to find out more about <strong>other services</strong> we offer at South Island Centre. You may also continue reading below.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h2><span style=\"color: #0000ff;\">Professional Counselling Consultations for Clergy</span></h2>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h2><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h2>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are Barbara Baillie and Pamela Welle. For more in-depth information, please go to theÂ <strong>About Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual\'s biographical page.\r\n<h2><span style=\"color: #0000ff;\">CareerChoice Program</span></h2>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h2><span style=\"color: #0000ff;\">Travel Option</span></h2>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come on location with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, Bill Cole to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-17 06:47:41", "2014-03-17 13:47:41", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=545", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("546", "3", "2014-03-17 06:49:56", "2014-03-17 13:49:56", "The <strong><span style=\"color: #0000ff;\">CareerChoice program</span></strong> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n<strong>Interested in starting your CareerChoice program?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to e-mail us at info@localhost to get you going.", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-revision-v1", "", "", "2014-03-17 06:49:56", "2014-03-17 13:49:56", "", "123", "http://localhost:8888/TestSICPage/wordpress/?p=546", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("547", "3", "2014-03-17 06:52:55", "2014-03-17 13:52:55", "For more in-depth biographical information, please hover over the <strong>MeetÂ Us</strong>Â section, then <strong>click</strong> on the name of the individual counsellor.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole</span></h3>\r\n<dl class=\"wp-caption alignnone\" id=\"attachment_384\" style=\"width: 210px;\"><dt class=\"wp-caption-dt\"></dt><dd class=\"wp-caption-dd\">Bill Cole (Director of Services)</dd></dl>&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h3><span style=\"color: #0000ff;\">Margaret McKinnon Anderson</span></h3>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2></h2>\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt</span></h3>\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle</span></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-17 06:52:55", "2014-03-17 13:52:55", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=547", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("548", "3", "2014-03-17 06:54:51", "2014-03-17 13:54:51", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section, then <strong>click</strong> on the name of the individual counsellor to access their biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole</span></h3>\r\n<dl class=\"wp-caption alignnone\" id=\"attachment_384\" style=\"width: 210px;\"><dt class=\"wp-caption-dt\"></dt><dd class=\"wp-caption-dd\">Bill Cole (Director of Services)</dd></dl>&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h3><span style=\"color: #0000ff;\">Margaret McKinnon Anderson</span></h3>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2></h2>\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt</span></h3>\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle</span></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-17 06:54:51", "2014-03-17 13:54:51", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=548", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("549", "3", "2014-03-17 07:00:35", "2014-03-17 14:00:35", "At South Island Centre we believe it is important that <span style=\"color: #0000ff;\"><strong>everyone</strong></span> has access to Counselling services.\r\n\r\n<span style=\"color: #3366ff;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">Graduated Fee Scale</span></h3>\r\nSouth Island Centre sets its fees on a <span style=\"color: #3366ff;\">graduated scale between $50 and $110 per 60-minute session</span> (includes GST) depending on the level of your household income. We do not turn away any clients. <em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline; color: #3366ff;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span>\r\n\r\nbelow $50,000: we will discuss with you what you can afford\r\n\r\n$50,000 - $59,999: Â $50\r\n\r\n$60,000 - $69,999: Â $60\r\n\r\n$70,000 - $79,999: Â $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\">Payment options</span></span>: we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard, American Express)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><em>subsidize the cost of counselling</em>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island. Most insurance coverage will require that you, the client, pay up-front and will reimburse you upon receiving a copy your receipts. While South Island is able to bill some insurance companies on your behalf, it is your responsibility to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of these services.", "Affordable Counselling Services ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-17 07:00:35", "2014-03-17 14:00:35", "", "54", "http://localhost:8888/TestSICPage/wordpress/?p=549", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("550", "3", "2014-03-17 07:04:15", "2014-03-17 14:04:15", "At South Island Centre we believe it is important that <span style=\"color: #0000ff;\"><strong>everyone</strong></span> has access to Counselling services.\r\n\r\n<span style=\"color: #3366ff;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">Graduated Fee Scale</span></h3>\r\nSouth Island Centre sets its fees on a <span style=\"color: #3366ff;\">graduated scale between $50 and $110 per 60-minute session</span> (includes GST) depending on the level of your household income. We do not turn away any clients. <em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline; color: #3366ff;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span>\r\n\r\nbelow $50,000: we will discuss with you what you can afford\r\n\r\n$50,000 - $59,999: Â $50\r\n\r\n$60,000 - $69,999: Â $60\r\n\r\n$70,000 - $79,999: Â $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\">Payment options</span></span>: we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard, American Express)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><em>subsidize the cost of counselling</em>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of Counselling services received at South Island Centre.", "Affordable Counselling Services ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-17 07:04:15", "2014-03-17 14:04:15", "", "54", "http://localhost:8888/TestSICPage/wordpress/?p=550", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("551", "3", "2014-03-17 07:06:32", "2014-03-17 14:06:32", "<h3><span style=\"color: #0000ff;\">New Clients:</span></h3>\r\nIf you are new to our practice and would like to enquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\">call our office co-ordinator at Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i>Â <strong>250-472-2851 and press 101</strong>.</span> Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statuary holidays.\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h3><span style=\"color: #0000ff;\">Existing Clients:</span></h3>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <span style=\"color: #0000ff;\"><strong>250-472-2851</strong> and pressing 8 for the staff directory</span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-03-17 07:06:32", "2014-03-17 14:06:32", "", "64", "http://localhost:8888/TestSICPage/wordpress/?p=551", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("553", "3", "2014-03-17 07:14:06", "2014-03-17 14:14:06", "South Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our <span style=\"color: #0000ff;\">Samaritan\'s fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #3366ff;\">Make a donation to our Samaritan Fund (options: one-time, monthly, annual etc).</span> You may:\r\n<ul>\r\n	<li>Mail <strong>cash or a cheque</strong>Â payable toÂ <strong><em>South Island Centre for Counselling and Training</em></strong> to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6. </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li>Charge a donation to your <strong>credit card</strong> by calling the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know your mailing/return address, and weÂ will send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li><a title=\"Link to CanadaHelps organization to make a donation\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"text-decoration: underline;\">c</span>lick here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process.</li>\r\n</ul>\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-17 07:14:06", "2014-03-17 14:14:06", "", "172", "http://localhost:8888/TestSICPage/wordpress/?p=553", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("554", "3", "2014-03-17 07:15:54", "2014-03-17 14:15:54", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our <span style=\"color: #3366ff;\">Samaritan\'s fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\nYou may\r\n<ul>\r\n	<li></li>\r\n	<li><a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a monthly donation with CanadaHelps.org.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-17 07:15:54", "2014-03-17 14:15:54", "", "176", "http://localhost:8888/TestSICPage/wordpress/?p=554", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("555", "3", "2014-03-17 07:23:12", "2014-03-17 14:23:12", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #3366ff;\">Samaritan\'s Fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #3366ff;\">To make a donation to our Samaritan\'s Fund (options: one-time, monthly, annual etc), <span style=\"color: #000000;\">y</span></span>ou may:\r\n<ul>\r\n	<li>MailÂ <strong>cash </strong>or a<strong> cheque</strong>Â payable toÂ <strong><em>South Island Centre for Counselling and Training</em></strong>Â to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n	<li>Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donations, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation.</li>\r\n	<li><a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-17 07:23:12", "2014-03-17 14:23:12", "", "176", "http://localhost:8888/TestSICPage/wordpress/?p=555", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("556", "3", "2014-03-17 07:25:01", "2014-03-17 14:25:01", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work.\r\n\r\nYou may help us with anÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong>Â </span>when you volunteer your time and/or talent\r\n<ul>\r\n	<li>at South Island Centre <strong>events</strong>,</li>\r\n	<li>at the South Island Centre <strong>office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\r\n</ul>\r\nPlease contact us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Volunteer Opportunities", "", "inherit", "closed", "closed", "", "174-revision-v1", "", "", "2014-03-17 07:25:01", "2014-03-17 14:25:01", "", "174", "http://localhost:8888/TestSICPage/wordpress/?p=556", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("557", "3", "2014-03-17 12:15:14", "2014-03-17 19:15:14", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Ebb%20and%20Flow%20March%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">Family Systems Theory:</span> please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an email to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or email:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li>cash</li>\r\n	<li>cheque: please make out your cheque toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li>Credit Card: please call the office at 250-472-2851, extension 101 and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses currently offered and how to register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-17 12:15:14", "2014-03-17 19:15:14", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=557", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("558", "3", "2014-03-17 12:21:07", "2014-03-17 19:21:07", "[gview file=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\"]\r\n\r\nRelationships are complicated . . .Â and even when youâ€™re hopelessly in love, there are things you may not be watching for or aware of that will impact the way you relate to one another - for better or worse - once youâ€™re married.\r\n\r\nâ€¢ Learn about communication patterns in your family and how theyâ€™ll affect you in your marriage.\r\n\r\nâ€¢ Discover how to develop and maintain intimacy in your relationship.\r\n\r\nâ€¢ Learn how to better manage conflict.\r\n\r\nâ€¢ Increase the level of understanding you have for your partner and build the marriage you both want.\r\n\r\n&nbsp;\r\n\r\n<strong>Option 1</strong>: $150.00 for one- day workshop\r\n\r\n<strong>Option 2</strong>: $225.00 per couple for one day workshop + 2 one-hour follow up sessions\r\n\r\n<strong>Option 3</strong>: $175.00 for 3 one-hour sessions of Individual Couple Counselling\r\n\r\n&nbsp;", "Marriage Preparation Workshop/Sessions", "", "publish", "closed", "closed", "", "marriage-preparation-workshop", "", "", "2014-03-21 06:30:05", "2014-03-21 13:30:05", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=558&#038;instance_id=", "2", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("559", "3", "2014-03-17 12:34:20", "2014-03-17 19:34:20", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section, then <strong>click</strong> on the name of the individual counsellor to access their biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole</span></h3>\r\n<dl class=\"wp-caption alignnone\" id=\"attachment_384\" style=\"width: 210px;\"><dt class=\"wp-caption-dt\"></dt><dd class=\"wp-caption-dd\">Bill Cole (Director of Services)</dd></dl>&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services Bill Cole has been with South Island Centre for 27 years. He counsels individuals, couples, and families around a variety of issues. When not supervising staff, he teaches family systems theory, pastoral counselling, marriage preparation and pastoral care team training.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h2></h2>\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h2></h2>\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Christian Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona is also offers family counselling, especially families facing divorce or separation particularly around parenting plans and concerns with their children.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong> just completed her Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamella are spearheading South Island Centre\'s Spiritual Direction program, and she considers it a real honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-17 12:34:20", "2014-03-17 19:34:20", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=559", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("560", "3", "2014-03-17 12:36:33", "2014-03-17 19:36:33", "&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services of <strong>Bill Cole</strong> has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues. When not supervising staff, he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grand-children.\r\n\r\n&nbsp;", "Bill Cole", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-03-17 12:36:33", "2014-03-17 19:36:33", "", "41", "http://localhost:8888/TestSICPage/wordpress/?p=560", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("561", "3", "2014-07-31 11:27:58", "2014-07-31 18:27:58", "&nbsp;\n\n<span style=\"color: #000000;\"><strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-026.jpg\"><img class=\"alignleft wp-image-12899 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-026-300x300.jpg\" alt=\"Optional image title\" width=\"300\" height=\"300\" /></a>Carla Haveman</strong></span> enjoys working with young women around depression, low self-esteem and family dynamics. She forms really good connections through her compassion and empathy. As a mother of 3 almost grown boys, she has experienced it all!", "Carla Haveman", "", "inherit", "closed", "closed", "", "408-autosave-v1", "", "", "2014-07-31 11:27:58", "2014-07-31 18:27:58", "", "408", "http://localhost:8888/TestSICPage/wordpress/?p=561", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("562", "3", "2014-03-17 12:38:07", "2014-03-17 19:38:07", "<span style=\"color: #0000ff;\"><strong>Carla Haveman</strong></span> enjoys working with young women around depression, low self-esteem and family dynamics. She forms really good connections through her compassion and empathy. As a mother of 3 almost grown boys, she has experienced it all!", "Carla Haveman", "", "inherit", "closed", "closed", "", "408-revision-v1", "", "", "2014-03-17 12:38:07", "2014-03-17 19:38:07", "", "408", "http://localhost:8888/TestSICPage/wordpress/?p=562", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("563", "3", "2014-03-17 12:39:05", "2014-03-17 19:39:05", "<span style=\"color: #0000ff;\"><strong>Rosemary Merritt</strong></span>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.", "Rosemary Merritt", "", "inherit", "closed", "closed", "", "406-revision-v1", "", "", "2014-03-17 12:39:05", "2014-03-17 19:39:05", "", "406", "http://localhost:8888/TestSICPage/wordpress/?p=563", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("564", "3", "2014-03-17 12:39:49", "2014-03-17 19:39:49", "<span style=\"color: #0000ff;\"><strong>Fiona Pasay</strong></span>Â is currently working on her Registered Christian Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona is also offers family counselling, especially families facing divorce or separation particularly around parenting plans and concerns with their children.", "Fiona Pasay", "", "inherit", "closed", "closed", "", "404-revision-v1", "", "", "2014-03-17 12:39:49", "2014-03-17 19:39:49", "", "404", "http://localhost:8888/TestSICPage/wordpress/?p=564", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("565", "3", "2014-03-17 12:40:08", "2014-03-17 19:40:08", "TBA", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2014-03-17 12:40:08", "2014-03-17 19:40:08", "", "412", "http://localhost:8888/TestSICPage/wordpress/?p=565", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("566", "3", "2014-03-17 12:44:29", "2014-03-17 19:44:29", "<span style=\"color: #0000ff;\">CounsellorsÂ at South Island Centre <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations.\r\n\r\n<strong>We can help you with</strong>:\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-17 12:44:29", "2014-03-17 19:44:29", "", "35", "http://localhost:8888/TestSICPage/wordpress/?p=566", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("569", "3", "2014-03-17 19:22:48", "2014-03-18 02:22:48", "<h3><span style=\"color: #0000ff;\">Affordable Counselling Services</span></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\nWe don\'t turn anyone away - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To l<span style=\"line-height: 1.5;\">earn more about our affordable counselling services, go to the top ribbon, and hover over <span style=\"color: #3366ff;\"><b>Affordable Counselling Services</b></span>Â to view our <span style=\"text-decoration: underline;\">fee system</span> that is based on your combined family income.</span>\r\n\r\nTo <strong>book an appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost. We are here to help!\r\n<h3><span style=\"color: #0000ff;\">Counselling</span></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, <strong>you don\'t have to go through it alone!</strong>\r\n<h3><span style=\"color: #0000ff;\"><strong>Our counsellors can help you with:Â </strong></span></h3>\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<span style=\"line-height: 1.5;\">Â </span>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-03-17 19:22:48", "2014-03-18 02:22:48", "", "5", "http://localhost:8888/TestSICPage/wordpress/?p=569", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("570", "3", "2014-03-17 19:25:02", "2014-03-18 02:25:02", "<h3><span style=\"color: #0000ff;\">Affordable Counselling Services</span></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\nWe don\'t turn anyone away - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To l<span style=\"line-height: 1.5;\">earn more about our affordable counselling services, go to the top ribbon, click hereÂ to view our <span style=\"text-decoration: underline;\">fee system</span> that is based on your combined family income.</span>\r\n\r\nTo <strong>book an appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost. We are here to help!\r\n<h3></h3>\r\n<h3 style=\"font-size: 1.17em; color: #333333; font-family: Georgia, \'Times New Roman\', \'Bitstream Charter\', Times, serif; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;\"><span style=\"color: #0000ff;\"><strong>Our counsellors can help!</strong></span></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence, <strong>you don\'t have to go through it alone!Â </strong>We can help you with:\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<span style=\"line-height: 1.5;\">Â </span>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-03-17 19:25:02", "2014-03-18 02:25:02", "", "5", "http://localhost:8888/TestSICPage/wordpress/?p=570", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("571", "3", "2014-03-17 19:32:18", "2014-03-18 02:32:18", "<h3><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We can help you with:\r\n<ul>\r\n	<li><strong>trauma</strong>Â or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<strong><span style=\"color: #0000ff;\">Affordable Counselling Services</span></strong>\r\n\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\nWe don\'t turn anyone away - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, go to the top ribbon, hover overÂ <strong>Counselling</strong>, and then click onÂ <strong>Affordable Counselling Services</strong> in the drop down menu. Our fee system is based on your combined family income.\r\n\r\nTo <strong>book an appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-03-17 19:32:18", "2014-03-18 02:32:18", "", "5", "http://localhost:8888/TestSICPage/wordpress/?p=571", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("572", "3", "2014-03-17 19:33:04", "2014-03-18 02:33:04", "<h3><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li><strong>trauma</strong>Â or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<strong><span style=\"color: #0000ff;\">Affordable Counselling Services</span></strong>\r\n\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\nWe don\'t turn anyone away - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, go to the top ribbon, hover overÂ <strong>Counselling</strong>, and then click onÂ <strong>Affordable Counselling Services</strong> in the drop down menu. Our fee system is based on your combined family income.\r\n\r\nTo <strong>book an appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-03-17 19:33:04", "2014-03-18 02:33:04", "", "5", "http://localhost:8888/TestSICPage/wordpress/?p=572", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("573", "3", "2014-03-17 19:41:13", "2014-03-18 02:41:13", "<h3><span style=\"color: #0000ff;\">South Island Centre Courses</span></h3>\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101 or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n<h3><span style=\"color: #0000ff;\">2014 Course Offerings</span></h3>\r\nWe are pleased to offer these courses in 2014:\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 2015)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li>Marriage Preparation (Saturday, June 7, 2014)</li>\r\n	<li>Family Systems Theory (Please contact us if interested)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\nTo find out more about each of the above courses, please go to the <strong>Courses</strong> drop-down menu, and then click onÂ <strong>Courses currently offered and How to Register.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-17 19:41:13", "2014-03-18 02:41:13", "", "11", "http://localhost:8888/TestSICPage/wordpress/?p=573", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("574", "3", "2014-03-17 19:45:01", "2014-03-18 02:45:01", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Ebb%20and%20Flow%20March%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">Family Systems Theory:</span> please contact us to indicate interest in this course. <a title=\"Link to general Family systems poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/FamilySystemsWeb.pdf\" target=\"_blank\">Click here</a> for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-17 19:45:01", "2014-03-18 02:45:01", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=574", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("575", "3", "2014-03-17 19:48:38", "2014-03-18 02:48:38", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon,Â and click on the specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in. To learn more about </span><strong style=\"line-height: 1.5em;\">other services</strong><span style=\"line-height: 1.5em;\"> we offer at South Island Centre you may also continue reading below.</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h3><span style=\"color: #0000ff;\">Professional Counselling Consultations for Clergy</span></h3>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are Barbara Baillie and Pamela Welle. For more in-depth information, please go to theÂ <strong>About Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual\'s biographical page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3><span style=\"color: #0000ff;\">Travel Option</span></h3>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come on location with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, Bill Cole, to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-17 19:48:38", "2014-03-18 02:48:38", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=575", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("576", "3", "2014-03-17 20:03:00", "2014-03-18 03:03:00", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon,Â and click on the specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in. To learn more about </span><strong style=\"line-height: 1.5em;\">other services</strong><span style=\"line-height: 1.5em;\"> we offer at South Island Centre you may also continue reading below.</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\nAs part of our ministry, we also provide regular opportunities for Clergy and Christian Counsellors to come together to network, pray and participate in case conferencing around the situations we may encounter as we offer pastoral care &amp; counselling to those who seek our help.\r\n<h3><span style=\"color: #0000ff;\">Professional Counselling Consultations for Clergy</span></h3>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are Barbara Baillie and Pamela Welle. For more in-depth information, please go to theÂ <strong>About Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3><span style=\"color: #0000ff;\">Travel Option</span></h3>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come <strong>on location</strong> with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, Bill Cole, to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-17 20:03:00", "2014-03-18 03:03:00", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=576", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("578", "3", "2014-03-17 20:23:41", "2014-03-18 03:23:41", "South Island Centre is located at:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Road</strong></span> (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus Routes</strong> from downtown:</span>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd and Shelbourne Ave.Â <a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Sidney:</strong></span>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Langford/Colwood:</strong></span>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-03-17 20:23:41", "2014-03-18 03:23:41", "", "24", "http://localhost:8888/TestSICPage/wordpress/?p=578", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("579", "3", "2014-03-17 20:25:21", "2014-03-18 03:25:21", "&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services of <strong>Bill Cole</strong> has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues. When not supervising staff, he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Director of Services", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-03-17 20:25:21", "2014-03-18 03:25:21", "", "41", "http://localhost:8888/TestSICPage/wordpress/?p=579", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("580", "3", "2014-03-17 20:26:59", "2014-03-18 03:26:59", "<span style=\"color: #0000ff;\"><strong>Fiona Pasay</strong></span>Â is currently working on her Registered Christian Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, focusing particularly around parenting plans and concerns with their children.", "Fiona Pasay", "", "inherit", "closed", "closed", "", "404-revision-v1", "", "", "2014-03-17 20:26:59", "2014-03-18 03:26:59", "", "404", "http://localhost:8888/TestSICPage/wordpress/?p=580", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("581", "3", "2014-03-17 20:29:05", "2014-03-18 03:29:05", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations.\r\n\r\n<span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-17 20:29:05", "2014-03-18 03:29:05", "", "35", "http://localhost:8888/TestSICPage/wordpress/?p=581", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("582", "3", "2014-03-17 20:30:58", "2014-03-18 03:30:58", "<span style=\"color: #0000ff;\"><strong>Fiona Pasay</strong></span>Â is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, focusing particularly around parenting plans and concerns with their children.", "Fiona Pasay", "", "inherit", "closed", "closed", "", "404-revision-v1", "", "", "2014-03-17 20:30:58", "2014-03-18 03:30:58", "", "404", "http://localhost:8888/TestSICPage/wordpress/?p=582", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("583", "3", "2014-03-17 20:34:09", "2014-03-18 03:34:09", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section, then <strong>click</strong> on the name of the individual counsellor to access their biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services <span style=\"color: #0000ff;\"><strong>Bill Cole</strong></span> has been with South Island Centre for 27 years. He counsels individuals, couples, and families around a variety of issues. When not supervising staff, he teaches family systems theory, pastoral counselling, marriage preparation and pastoral care team training.\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\nTBA\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong> just completed her Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamella are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-17 20:34:09", "2014-03-18 03:34:09", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=583", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("584", "3", "2014-03-17 20:36:34", "2014-03-18 03:36:34", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole - Director of Services</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services <span style=\"color: #0000ff;\"><strong>Bill Cole</strong></span> has been with South Island Centre for 27 years. He counsels individuals, couples, and families around a variety of issues. When not supervising staff, he teaches family systems theory, pastoral counselling, marriage preparation and pastoral care team training.\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\nTBA\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong> just completed her Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamella are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-17 20:36:34", "2014-03-18 03:36:34", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=584", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("585", "3", "2014-03-19 12:06:13", "2014-03-19 19:06:13", "At South Island Centre we believe it is important that <span style=\"color: #0000ff;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n<span style=\"color: #3366ff;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">Graduated Fee Scale</span></h3>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #3366ff;\">graduated scale between $50 and $110 per 60-minute session</span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline; color: #3366ff;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span>\r\n\r\n$1000 - $5o,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000-$70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\">Payment options</span></span>: we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><em>subsidize the cost of counselling</em>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Affordable Counselling Services ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-19 12:06:13", "2014-03-19 19:06:13", "", "54", "http://localhost:8888/TestSICPage/wordpress/?p=585", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("586", "3", "2014-03-19 12:09:03", "2014-03-19 19:09:03", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services <span style=\"color: #0000ff;\"><strong>Bill Cole</strong></span> has been with South Island Centre for 27 years. He counsels individuals, couples, and families around a variety of issues. When not supervising staff, he teaches family systems theory, pastoral counselling, marriage preparation and pastoral care team training.\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\nTBA\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong> just completed her Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamella are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-19 12:09:03", "2014-03-19 19:09:03", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=586", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("587", "3", "2014-03-19 12:15:50", "2014-03-19 19:15:50", "[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie</strong></span>, B.Ed., M.T.S., M.A.P.P.C,Â BCATR,Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-03-19 12:15:50", "2014-03-19 19:15:50", "", "47", "http://localhost:8888/TestSICPage/wordpress/?p=587", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("588", "3", "2014-03-19 12:18:15", "2014-03-19 19:18:15", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services <span style=\"color: #0000ff;\"><strong>Bill Cole</strong></span> has been with South Island Centre for 27 years. He counsels individuals, couples, and families around a variety of issues. When not supervising staff, he teaches family systems theory, pastoral counselling, marriage preparation and pastoral care team training.\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (member CHPCA, BCHPCA)</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\nLaurie Truant is a volunteer counsellor with South Island Centre.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MA)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>Â just completed her Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamella are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-19 12:18:15", "2014-03-19 19:18:15", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=588", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("590", "3", "2014-03-19 12:20:44", "2014-03-19 19:20:44", "&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services of <strong>Bill Cole</strong> has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Director of Services", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-03-19 12:20:44", "2014-03-19 19:20:44", "", "41", "http://localhost:8888/TestSICPage/wordpress/?p=590", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("591", "3", "2014-03-19 12:20:57", "2014-03-19 19:20:57", "&nbsp;\r\n\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services of <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Director of Services", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-03-19 12:20:57", "2014-03-19 19:20:57", "", "41", "http://localhost:8888/TestSICPage/wordpress/?p=591", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("592", "3", "2014-03-19 12:24:30", "2014-03-19 19:24:30", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (member CHPCA, BCHPCA)</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\nLaurie Truant is a volunteer counsellor with South Island Centre.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MA)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>Â just completed her Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamella are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-19 12:24:30", "2014-03-19 19:24:30", "", "60", "http://localhost:8888/TestSICPage/wordpress/?p=592", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("593", "3", "2014-03-19 12:28:57", "2014-03-19 19:28:57", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Ebb%20and%20Flow%20March%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li>Enneagram - A Journey of Self</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course.Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-19 12:28:57", "2014-03-19 19:28:57", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=593", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("594", "3", "2014-03-19 12:36:17", "2014-03-19 19:36:17", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): <a title=\"Link to Ebb and Flow of Life March 2014 poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Ebb%20and%20Flow%20March%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-19 12:36:17", "2014-03-19 19:36:17", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=594", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("597", "3", "2014-03-19 20:05:15", "2014-03-20 03:05:15", "The Ebb and Flow of Life - An Introduction to Grief and Loss, March 27-28, 2014", "Ebb and Flow March 2014", "The Ebb and Flow of Life - March 2014", "inherit", "closed", "closed", "", "ebb-and-flow-march-2014", "", "", "2014-03-19 20:05:15", "2014-03-20 03:05:15", "", "303", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("598", "3", "2014-03-19 20:07:51", "2014-03-20 03:07:51", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life</strong> (Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-19 20:07:51", "2014-03-20 03:07:51", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=598", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("599", "3", "2014-03-19 20:17:52", "2014-03-20 03:17:52", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-19 20:17:52", "2014-03-20 03:17:52", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=599", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("600", "3", "2014-03-19 20:23:18", "2014-03-20 03:23:18", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): <a title=\"Ebb &amp; Flow of Life (March 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=597 \" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-19 20:23:18", "2014-03-20 03:23:18", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=600", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("601", "3", "2014-03-19 20:25:15", "2014-03-20 03:25:15", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): <a title=\"Ebb &amp; Flow of Life (March 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-19 20:25:15", "2014-03-20 03:25:15", "", "303", "http://localhost:8888/TestSICPage/wordpress/?p=601", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("603", "3", "2014-03-20 05:34:52", "2014-03-20 12:34:52", "<h3><span style=\"color: #0000ff;\">South Island Centre Courses</span></h3>\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101 or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n<h3><span style=\"color: #0000ff;\">2014 Course Offerings</span></h3>\r\nWe are pleased to offer these courses in 2014:\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li>Family Systems Theory (Thursdays, starting 24 April, 2014 for 12 weeks)</li>\r\n	<li>Marriage Preparation (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\nTo find out more about each of the above courses, please go to the <strong>Courses</strong> drop-down menu, and then click onÂ <strong>Courses currently offered and How to Register.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 05:34:52", "2014-03-20 12:34:52", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("604", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "604", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=604", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("605", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "605", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "5", "http://localhost:8888/TestSICPage/wordpress/?p=605", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("606", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "606", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "5", "http://localhost:8888/TestSICPage/wordpress/?p=606", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("607", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "607", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "5", "http://localhost:8888/TestSICPage/wordpress/?p=607", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("608", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "608", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "5", "http://localhost:8888/TestSICPage/wordpress/?p=608", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("611", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "611", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=611", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("612", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "612", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/?p=612", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("614", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "614", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/?p=614", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("615", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "615", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/?p=615", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("616", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "616", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/?p=616", "13", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("617", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "617", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=617", "14", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("618", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "618", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=618", "16", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("619", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "619", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=619", "17", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("620", "3", "2014-03-20 05:42:57", "2014-03-20 12:42:57", " ", "", "", "publish", "closed", "closed", "", "620", "", "", "2014-04-14 11:01:56", "2014-04-14 18:01:56", "", "88", "http://localhost:8888/TestSICPage/wordpress/?p=620", "18", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("622", "3", "2014-03-20 05:44:50", "2014-03-20 12:44:50", "At South Island Centre we believe it is important that <span style=\"color: #0000ff;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n<span style=\"color: #3366ff;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">Graduated Fee Scale</span></h3>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #3366ff;\">graduated scale between $50 and $110 per 60-minute session</span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline; color: #3366ff;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000-$70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\">Payment options</span></span>: we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><em>subsidize the cost of counselling</em>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Affordable Counselling Services ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-20 05:44:50", "2014-03-20 12:44:50", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("624", "3", "2014-03-20 05:54:12", "2014-03-20 12:54:12", "This workshop is for caregivers, clergy and others who work with and/or support the very elderly. Learn about the unique losses and challenges of advanced old age as well as advocacy, authorship and a palliative approach to care. Acquire tools which enhance end of life communication and which improve both quality of life and quality of care.\r\n\r\n<strong>Facilitator: Margaret Anderson</strong> (member of the Canadian Hospice and Palliative Care Association)\r\n<strong>Date</strong>: Saturday, April 12, 2014\r\n<strong>Cost</strong>: $125\r\n<strong>Time</strong>: 9:00am-4:00pm\r\n", "The Twilight Journey (April 12, 2014)", "The Twilight Journey: Understanding Grief, Loss and the Very Elderly", "inherit", "closed", "closed", "", "twilight-journeys-april-2014", "", "", "2014-03-20 05:54:12", "2014-03-20 12:54:12", "", "625", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("625", "3", "2014-03-20 06:01:06", "2014-03-20 13:01:06", "This workshop is for caregivers, clergy and others who work with and/or support the very elderly. Learn about the unique losses and challenges of advanced old age as well as advocacy, authorship and a palliative approach to care. Acquire tools which enhance end of life communication and which improve both quality of life and quality of care.\r\n\r\n<strong>Date</strong>: Saturday, April 12, 2014\r\n\r\n<strong>Time</strong>: 9:00am-4:00pm\r\n\r\n<strong>Cost</strong>: $125 (bring your own lunch)\r\n\r\n<strong>Facilitator</strong>: Margaret Anderson (counsellor of Grief, Loss and End-of-Life Care; Member of the Canadian Hospice and Palliative Care Association)", "Course offering: The Twilight Journey - Understanding Grief, Loss and the Very Elderly", "", "publish", "closed", "closed", "", "course-offering-the-twilight-journey-understanding-grief-loss-and-the-very-elderly", "", "", "2014-03-20 08:13:47", "2014-03-20 15:13:47", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=625", "2", "post", "", "0");
INSERT INTO `wp_posts` VALUES("626", "3", "2014-03-20 06:01:06", "2014-03-20 13:01:06", "This workshop is for caregivers, clergy and others who work with and/or support the very elderly. Learn about the unique losses and challenges of advanced old age as well as advocacy, authorship and a palliative approach to care. Acquire tools which enhance end of life communication and which improve both quality of life and quality of care.\r\n\r\n<strong>Date</strong>: Saturday, April 12, 2014\r\n\r\n<strong>Time</strong>: 9:00am-4:00pm\r\n\r\n<strong>Cost</strong>: $125 (bring your own lunch)\r\n\r\n<strong>Facilitator</strong>: Margaret Anderson (counsellor of Grief, Loss and End-of-Life Care; Member of the Canadian Hospice and Palliative Care Association)", "Course offering: The Twilight Journey - Understanding Grief, Loss and the Very Elderly", "", "inherit", "closed", "closed", "", "625-revision-v1", "", "", "2014-03-20 06:01:06", "2014-03-20 13:01:06", "", "625", "http://localhost:8888/TestSICPage/wordpress/625-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("627", "3", "2014-03-20 06:20:57", "2014-03-20 13:20:57", "The Mid-Life Directions workshop will help you to...\r\n\r\nâ€¢ look at mid-life as crisis, transition and spiritual resurrection\r\n\r\nâ€¢ ask the ultimate question - what is the purpose of my life?\r\n\r\nâ€¢unleash the dynamism of the second half of life\r\n\r\nâ€¢ learn how to relax and contemplate\r\n\r\nâ€¢ reï¬‚ect on your deepest beliefs as they illuminate your life.\r\n\r\n<strong>Facilitator: Barbara BaillieÂ </strong>(Certified Mid-Life Directions Consultant)", "Mid-Life Directions (Session 1)", "", "publish", "closed", "closed", "", "mid-life-directions", "", "", "2014-03-21 06:28:14", "2014-03-21 13:28:14", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=627&#038;instance_id=", "2", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("628", "3", "2014-03-20 06:22:00", "2014-03-20 13:22:00", "The Mid-Life Directons workshop will help you to...\n\nâ€¢ look at mid-life as crisis, transi3on and spiritual resurrec3on\n\nâ€¢ ask the ul3mate ques3on - what is the purpose of my life?\n\nâ€¢unleash the dynamism of the second half of life\n\nâ€¢ learn how to relax and contemplate\n\nâ€¢ reï¬‚ect on your deepest beliefs as they illuminate your life\n\n<strong>Facilitator: Barbara BaillieÂ </strong>(Certified Mid-Life Directions Consultant)", "Mid-Life Directions", "", "inherit", "closed", "closed", "", "627-autosave-v1", "", "", "2014-03-20 06:22:00", "2014-03-20 13:22:00", "", "627", "http://localhost:8888/TestSICPage/wordpress/627-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("629", "3", "2014-03-20 06:25:23", "2014-03-20 13:25:23", "The Mid-Life Directions workshop will help you to...\r\n\r\nâ€¢ look at mid-life as crisis, transition and spiritual resurrection\r\n\r\nâ€¢ ask the ultimate question - what is the purpose of my life?\r\n\r\nâ€¢unleash the dynamism of the second half of life\r\n\r\nâ€¢ learn how to relax and contemplate\r\n\r\nâ€¢ reï¬‚ect on your deepest beliefs as they illuminate your life.\r\n\r\n<strong>Facilitator: Barbara BaillieÂ </strong>(Certified Mid-Life Directions Consultant)", "Mid-Life Directions (Session 2)", "", "publish", "closed", "closed", "", "mid-life-directions-session-2", "", "", "2014-03-21 06:29:21", "2014-03-21 13:29:21", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=629&#038;instance_id=", "2", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("631", "3", "2014-03-20 06:44:40", "2014-03-20 13:44:40", "[gview file=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\"]\n\nThis workshop is for caregivers, clergy and others who work with and/or supportÂ the very elderly. Learn about the unique losses and challenges of advanced oldÂ age as well as advocacy, authorship and a palliative approach to care. AcquireÂ tools which enhance end of life communication and which improve both qualityÂ of life and quality of care.\n\n<strong>Workshop facilitator: Margaret Anderson</strong> (Counsellor and Educator in Grief, Loss and End of Life Care,Â Member of the Canadian Hospice and Palliative Care Association)", "The Twilight Journey (workshop facilitator: Margaret Anderson)", "", "inherit", "closed", "closed", "", "369-autosave-v1", "", "", "2014-03-20 06:44:40", "2014-03-20 13:44:40", "", "369", "http://localhost:8888/TestSICPage/wordpress/369-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("632", "3", "2014-03-20 06:55:48", "2014-03-20 13:55:48", "<strong>Relationships are complicated</strong> . . .\r\nand even when youâ€™re hopelessly in love, there are things you may not be watching for or aware of that will impact the way you relate to one another - for better or worse - once youâ€™re married.\r\nâ€¢ Learn about communication patterns in your family and how theyâ€™ll affect you in your marriage.\r\nâ€¢ Discover how to develop and maintain intimacy in your relationship.\r\nâ€¢ Learn how to better manage conflict.\r\nâ€¢ Increase the level of understanding you have for your partner and build the marriage you both want.\r\n\r\n<strong>Facilitator: Bill Cole</strong> (Family Systems Specialist)\r\n\r\n<strong>Date:</strong> Saturday, June 7, 2014 \r\n<strong>Time:</strong> 9:00am-5:00pm \r\n\r\n<strong>Option 1</strong>: $150 for one-day workshop\r\n<strong>Option 2</strong>: $225.00 per couple for one-day workshop + 2 one-hour follow up sessions\r\n<strong>Option 3</strong>: $175.00 for 3 one-hour sessions of Individual Couple Counselling", "Marriage Preparation (Saturday, June 7, 2014)", "Marriage Preparation Workshop June 7, 2014", "inherit", "closed", "closed", "", "marriage-prep-poster-june-2014", "", "", "2014-03-20 06:55:48", "2014-03-20 13:55:48", "", "558", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("634", "3", "2014-03-20 07:08:44", "2014-03-20 14:08:44", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:08:44", "2014-03-20 14:08:44", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("635", "3", "2014-03-20 07:09:34", "2014-03-20 14:09:34", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): <a title=\"The Ebb and Flow of Life\" href=\"http://http://localhost:8888/TestSICPage/wordpress/?attachment_id=632\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"Link to April 2014 Twilight Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys%20April%202014.pdf\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:09:34", "2014-03-20 14:09:34", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("636", "3", "2014-03-20 07:10:01", "2014-03-20 14:10:01", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): <a title=\"The Ebb and Flow of Life\" href=\"http://http://localhost:8888/TestSICPage/wordpress/?attachment_id=632\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:10:01", "2014-03-20 14:10:01", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("637", "3", "2014-03-20 07:11:33", "2014-03-20 14:11:33", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): <a title=\"The Ebb and Flow of Life\" href=\"http://http://localhost:8888/TestSICPage/wordpress/?attachment_id=632\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): <a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=632\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:11:33", "2014-03-20 14:11:33", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("638", "3", "2014-03-20 07:12:24", "2014-03-20 14:12:24", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): <a title=\"The Ebb and Flow of Life\" href=\"http://http://localhost:8888/TestSICPage/wordpress/?attachment_id=632\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:12:24", "2014-03-20 14:12:24", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("639", "3", "2014-03-20 07:12:47", "2014-03-20 14:12:47", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:12:47", "2014-03-20 14:12:47", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("640", "3", "2014-03-20 07:13:49", "2014-03-20 14:13:49", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): <a title=\"Ebb and Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=632\" target=\"_blank\">click here</a> for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:13:49", "2014-03-20 14:13:49", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("641", "3", "2014-03-20 07:14:15", "2014-03-20 14:14:15", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. All up-coming courses are also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson): click here for specific information</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole): click here for specific information</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole).Â </span></span>Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie). Click here for more information.</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).Â <a title=\"Link to general Pastoral Counselling Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">Click here</a>Â for more information.</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:</span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:14:15", "2014-03-20 14:14:15", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("642", "3", "2014-03-20 07:16:51", "2014-03-20 14:16:51", "<h3><span style=\"color: #0000ff;\">Courses currently offered:</span></h3>\r\nWe are pleased to offer the courses below. Please go to theÂ <strong>Course and Events Calendar to access specific information.</strong>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\">March 27-28, 2014:</span> <strong>The Ebb and Flow of Life </strong>(Facilitator: Margaret Anderson)</li>\r\n	<li><span style=\"color: #0000ff;\">April 12, 2014:</span>Â <strong>The Twilight Journey</strong>Â (Facilitator: Margaret Anderson)</li>\r\n	<li><span style=\"color: #0000ff;\">June 7, 2014:</span><span style=\"color: #000000;\">Â <b>Marriage PreparationÂ </b>(Facilitator: Bill Cole)</span></li>\r\n	<li><span style=\"color: #0000ff;\">April 24, 2014 (12 weeks): <span style=\"color: #000000;\"><strong>Family Systems Theory</strong> (Facilitator: Bill Cole)</span></span></li>\r\n	<li><span style=\"color: #0000ff;\">The Enneagram: <span style=\"color: #000000;\">please contact us to indicate interest in this course</span>Â </span>(Facilitator: Barbara Baillie)</li>\r\n	<li><span style=\"color: #0000ff;\">Pastoral Counselling Training:Â </span>please contact us to indicate interest in this course (Facilitator: Bill Cole).</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:Â </span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "Courses Currently Offered & How to Register", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 07:16:51", "2014-03-20 14:16:51", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("643", "3", "2014-03-20 07:18:57", "2014-03-20 14:18:57", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Link to CareerChoice info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/CareerChoice.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-20 07:18:57", "2014-03-20 14:18:57", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("644", "3", "2014-03-20 07:20:24", "2014-03-20 14:20:24", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-03-20 07:20:24", "2014-03-20 14:20:24", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("645", "3", "2014-03-20 07:21:15", "2014-03-20 14:21:15", "Below are general information posters of all<strong>Â <span style=\"color: #0000ff;\">courses</span></strong><span style=\"color: #0000ff;\">Â </span><strong><span style=\"color: #0000ff;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on the Home Page<strong></strong><strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to <strong>email</strong> us at courses@localhost or call our office atÂ <span style=\"color: #0000ff;\"><i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-03-20 07:21:15", "2014-03-20 14:21:15", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("646", "3", "2014-03-20 08:05:04", "2014-03-20 15:05:04", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Events Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:Â </span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 08:05:04", "2014-03-20 15:05:04", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("647", "3", "2014-03-20 08:06:39", "2014-03-20 15:06:39", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Event Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:Â </span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-20 08:06:39", "2014-03-20 15:06:39", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("648", "3", "2014-03-20 09:52:41", "2014-03-20 16:52:41", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>. You will need Adobe Reader to download the information posters below.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Link to CareerChoice info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/CareerChoice.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (information poster here)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-20 09:52:41", "2014-03-20 16:52:41", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("649", "3", "2014-03-20 09:54:03", "2014-03-20 16:54:03", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>. You will need Adobe Reader to download the information posters below.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Link to CareerChoice info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/CareerChoice.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-20 09:54:03", "2014-03-20 16:54:03", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("650", "3", "2014-03-20 09:59:15", "2014-03-20 16:59:15", "<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering <strong>Pastoral Care &amp; Counselling Services</strong> in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre <strong>supports clergy and persons of faith</strong> as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h2></h2>\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\n<strong>Pastoral care</strong> is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a <strong>consultation service to pastors and other professionals</strong> through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\"><span style=\"color: #333333; font-size: 14px; line-height: 1.5em;\"><strong>Please contact ourÂ Director of Services, Bill Cole,Â by e-mail by clickingÂ </strong><a title=\"email to Director of Services\" href=\"mailto:bill@localhost\" target=\"_blank\">here</a>Â or call him at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â (250) 472-2851, extension 102.\r\n</span></span></h3>", "Counselling Services for Clergy", "", "inherit", "closed", "closed", "", "9-revision-v1", "", "", "2014-03-20 09:59:15", "2014-03-20 16:59:15", "", "9", "http://localhost:8888/TestSICPage/wordpress/9-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("651", "3", "2014-03-20 10:01:15", "2014-03-20 17:01:15", "", "CareerChoice", "", "inherit", "closed", "closed", "", "careerchoice", "", "", "2014-03-20 10:01:15", "2014-03-20 17:01:15", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("652", "3", "2014-03-20 10:08:22", "2014-03-20 17:08:22", "South Island Centre offers an educational and counselling opportunity to people who want to review their career choice, giftedness, strengths and fit in the work they do. This program is designed to help people become more effective in planning their successive career stages, and is suitable at any stage of vocational development.\n\nYou will be able to assess your personal abilities, identify personality characteristics, explore career options, and determine growth goals. \n\n<strong>Facilitator</strong>: Bill Cole (Family Systems Specialist) \n<strong>Option 1</strong>: 2-Day Individual Option (Cost: $1350)\n<strong>Option 2</strong>: 3-Day Couple Option (Cost $1900)", "CareerChoice - general poster 2014", "CareerChoice - general information poster 2014", "inherit", "closed", "closed", "", "careerchoice-general-poster-2014", "", "", "2014-03-20 10:08:22", "2014-03-20 17:08:22", "", "123", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("653", "3", "2014-03-20 10:14:32", "2014-03-20 17:14:32", "[gview file=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\"]The <strong><span style=\"color: #0000ff;\">CareerChoice program</span></strong> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n<strong>Interested in starting your CareerChoice program?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to e-mail us at info@localhost to get you going.", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-revision-v1", "", "", "2014-03-20 10:14:32", "2014-03-20 17:14:32", "", "123", "http://localhost:8888/TestSICPage/wordpress/123-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("654", "3", "2014-03-20 10:16:59", "2014-03-20 17:16:59", "Within each of us dwells the desire to be accepted for who we are and to find meaning beyond the effort of our day-to-day lives. We long to discover our <strong>true selves</strong>, to grow closer to God and to one another. \r\n\r\nA spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life. \r\n\r\n<strong>Spiritual Directors at South Island Centre:</strong>\r\n<strong>Barbara Baillie</strong>\r\n<strong>Pamela Welle</strong>", "Spiritual Directors poster general 2014", "Spiritual Directors poster - general nfo", "inherit", "closed", "closed", "", "spiritual-directors-poster-general-2014", "", "", "2014-03-20 10:16:59", "2014-03-20 17:16:59", "", "91", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Spiritual-Directors-poster-general-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("655", "3", "2014-03-20 10:21:57", "2014-03-20 17:21:57", "<h3 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>[gview file=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Spiritual-Directors-poster-general-2014.pdf\"]Spiritual Directors at South Island Centre:</strong></span></h3>\r\n<h3 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Barbara Baillie and Pamela WelleÂ </strong></span></h3>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">For more information on <strong>Barbara Baillie</strong>Â orÂ <strong>Pamela Welle</strong>, please go to theÂ <strong>About us</strong>Â section and click on the individual counsellor\'s page.Â </span></span>\r\n\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-03-20 10:21:57", "2014-03-20 17:21:57", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("656", "3", "2014-03-20 10:22:43", "2014-03-20 17:22:43", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (member CHPCA, BCHPCA)</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\nLaurie Truant is a volunteer counsellor with South Island Centre.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MASF)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>Â just completed her Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamella are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-20 10:22:43", "2014-03-20 17:22:43", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("657", "3", "2014-03-20 10:23:25", "2014-03-20 17:23:25", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (member CHPCA, BCHPCA)</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\nLaurie Truant is a volunteer counsellor with South Island Centre.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MASF)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>Â has a Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamella are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-20 10:23:25", "2014-03-20 17:23:25", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("658", "3", "2014-03-20 10:33:33", "2014-03-20 17:33:33", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #3366ff;\">Samaritan\'s Fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #3366ff;\">There are 3 options to make a donation to our Samaritan\'s Fund (options: one-time, monthly, annual etc):</span>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 1 (preferred)</span></strong>: MailÂ <strong>cash </strong>or a<strong> cheque</strong>Â payable toÂ <strong><em>South Island Centre for Counselling and Training</em></strong>Â to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong> :</span> Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <i class=\"fa fa-phone\"></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donations, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely charge a percentage of the donation for their own services which <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 3:</strong></span>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps charges a percentage of the donation for their own services which <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-20 10:33:33", "2014-03-20 17:33:33", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("659", "3", "2014-03-20 10:35:18", "2014-03-20 17:35:18", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #3366ff;\">Samaritan\'s Fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #3366ff;\">There are 3 options to make a donation to our Samaritan\'s Fund (options: one-time, monthly, annual etc):</span>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 1 (preferred)</span></strong>: MailÂ <strong>cash </strong>or a<strong> cheque</strong>Â payable toÂ <strong><em>South Island Centre for Counselling and Training</em></strong>Â to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong> :</span> Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <i class=\"fa fa-phone\"></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donations, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deducts a percentage of the donation for their services which <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 3:</strong></span>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-20 10:35:18", "2014-03-20 17:35:18", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("662", "3", "2014-03-20 10:50:56", "2014-03-20 17:50:56", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014:\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li>Family Systems Theory (Thursdays, starting 24 April, 2014 for 12 weeks)</li>\r\n	<li>Marriage Preparation (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Current courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 10:50:56", "2014-03-20 17:50:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("663", "3", "2014-03-20 10:55:37", "2014-03-20 17:55:37", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon,Â and click on the specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in, to get more in-depth information on the services we provide. </span>\r\n\r\n<span style=\"line-height: 1.5em;\">Below are short summaries of theÂ </span><strong style=\"line-height: 1.5em;\">other services</strong><span style=\"line-height: 1.5em;\"> we offer at South Island Centre:</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h4><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Professional Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<strong><span style=\"color: #888888;\"> Barbara Baillie</span></strong> and <strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>. For more in-depth information, please go to theÂ <strong>Meet Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3><span style=\"color: #0000ff;\">Travel Option</span></h3>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come <strong>on location</strong> with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, Bill Cole, to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-20 10:55:37", "2014-03-20 17:55:37", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("664", "3", "2014-03-20 10:56:39", "2014-03-20 17:56:39", "<h3><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li><strong>trauma</strong>Â or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li>grief and loss;</li>\r\n	<li><strong>addictions (substance abuse, gambling, pornography)</strong>;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li><strong>marital conflictÂ </strong></li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<strong><span style=\"color: #0000ff;\">Affordable Counselling Services</span></strong>\r\n\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, go to the top ribbon, hover overÂ <strong>Counselling</strong>, and then click onÂ <strong>Affordable Counselling Services</strong> in the drop down menu. Our fee system is based on your combined family income.\r\n\r\nTo <strong>book an appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-03-20 10:56:39", "2014-03-20 17:56:39", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("665", "3", "2014-03-20 11:52:49", "2014-03-20 18:52:49", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #3366ff;\">Samaritan\'s Fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #3366ff;\">There are 3 options to make a donation to our Samaritan\'s Fund (options: one-time, monthly, annual etc):</span>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 1 (preferred)</span></strong>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong> :</span> Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <i class=\"fa fa-phone\"></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donations, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deducts a percentage of the donation for their services which <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 3:</strong></span>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-20 11:52:49", "2014-03-20 18:52:49", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("666", "3", "2014-03-20 11:54:38", "2014-03-20 18:54:38", "&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" alt=\"United Way\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-20 11:54:38", "2014-03-20 18:54:38", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("667", "3", "2014-03-20 11:57:06", "2014-03-20 18:57:06", "<h3><strong><span style=\"color: #0000ff;\">Island Savings Credit Union</span></strong></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">BC Government Â </span></strong></h3>\r\n<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" alt=\"United Way\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-20 11:57:06", "2014-03-20 18:57:06", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("668", "3", "2014-03-20 12:00:17", "2014-03-20 19:00:17", "<h3><span style=\"color: #0000ff;\">Generous Individuals like yourself</span></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">Island Savings Credit Union</span></strong></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">BC Government Â </span></strong></h3>\r\n<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" alt=\"Catholic Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" alt=\"Victoria Foundation\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" alt=\"Full Farm House\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" alt=\"St Luke Cedar Hill Anglican Church\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" alt=\"United Way\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-03-20 12:00:17", "2014-03-20 19:00:17", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("670", "3", "2014-03-20 12:36:41", "2014-03-20 19:36:41", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\">There are 3 options to make a donation to our Samaritan\'s Fund</span> (options: one-time, monthly, annual etc):\r\n\r\n&nbsp;\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donations, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-20 12:36:41", "2014-03-20 19:36:41", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("671", "3", "2014-03-20 12:37:42", "2014-03-20 19:37:42", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\">There are 3 options to make a donation to our Samaritan\'s Fund</span> (options: one-time, monthly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donations, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-20 12:37:42", "2014-03-20 19:37:42", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("672", "3", "2014-03-20 12:38:45", "2014-03-20 19:38:45", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #3366ff;\">Samaritan\'s Fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #3366ff;\">There are 3 options to make a donation to our Samaritan\'s Fund (options: one-time, monthly, annual etc):</span>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 1 (preferred)</span></strong>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong> :</span> Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <i class=\"fa fa-phone\"></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donations, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services which <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 3:</strong></span>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-20 12:38:45", "2014-03-20 19:38:45", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("673", "3", "2014-03-20 12:44:35", "2014-03-20 19:44:35", "This course is designed for those who wish to <strong>explore family systems for professional as well as personal purposes</strong>. This course will give you a better understanding of relationship patterns, what can go wrong, and how you can contribute to greater health at home, at work, in your company or organization, and in the lives of others. \r\n\r\n<strong>Start Date:</strong> 24 April, 2014 (until July 17, excluding June 19)\r\n<strong>Time</strong>: 1:00-4:00pm\r\n<strong>Cost</strong>: $550 per person\r\n\r\nFacilitator: Bill Cole, MA, RCC (Family systems specialist)", "Family Systems Theory Course April-July 2014", "Family Systems Theory Course April-June 2014", "inherit", "closed", "closed", "", "family-systems-course-april-july-2014", "", "", "2014-03-20 12:44:35", "2014-03-20 19:44:35", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("674", "3", "2014-03-20 16:39:15", "2014-03-20 23:39:15", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. In order to access the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li>Family Systems Theory (Thursdays, starting 24 April, 2014 for 12 weeks)</li>\r\n	<li>Marriage Preparation (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Current courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:39:15", "2014-03-20 23:39:15", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("675", "3", "2014-03-20 16:40:36", "2014-03-20 23:40:36", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. In order to access the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li>Family Systems Theory (Thursdays, starting 24 April, 2014 for 12 weeks)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a> (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Current courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:40:36", "2014-03-20 23:40:36", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("676", "3", "2014-03-20 16:41:26", "2014-03-20 23:41:26", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. In order to access the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (Thursdays, starting 24 April, 2014 for 12 weeks)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a> (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Current courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:41:26", "2014-03-20 23:41:26", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("677", "3", "2014-03-20 16:42:07", "2014-03-20 23:42:07", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. In order to access the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li>The Twilight Journey (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a> (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Current courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:42:07", "2014-03-20 23:42:07", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("678", "3", "2014-03-20 16:43:03", "2014-03-20 23:43:03", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. In order to access the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a> (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Current courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:43:03", "2014-03-20 23:43:03", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("679", "3", "2014-03-20 16:43:26", "2014-03-20 23:43:26", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. In order to access the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>The Ebb and Flow of Life (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a> (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Current courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:43:26", "2014-03-20 23:43:26", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("680", "3", "2014-03-20 16:44:23", "2014-03-20 23:44:23", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\nPlease call Â us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851, extension 101, or <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our e-mail list to receive information on available courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. In order to access the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a> (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Current courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:44:23", "2014-03-20 23:44:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("681", "3", "2014-03-20 16:46:28", "2014-03-20 23:46:28", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. To download the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a> (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details of each course. For a specific course, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list to receive information on up-coming courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:46:28", "2014-03-20 23:46:28", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("682", "3", "2014-03-20 16:48:25", "2014-03-20 23:48:25", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. To download the pdfs, you must have Adobe Reader.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a>Â Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Currently offered courses</strong> are all listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list to receive information on up-coming courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 16:48:25", "2014-03-20 23:48:25", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("683", "3", "2014-03-20 16:51:00", "2014-03-20 23:51:00", "<h3 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>[gview file=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Spiritual-Directors-poster-general-2014.pdf\"]Spiritual Directors at South Island Centre:</strong></span></h3>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Barbara Baillie and Pamela WelleÂ </strong></span></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">For more information on <strong>Barbara Baillie</strong>Â orÂ <strong>Pamela Welle</strong>, please go to the <strong>Meet</strong><strong>Â Us</strong>Â section and click on the individual counsellor\'s page.Â </span></span>\r\n\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-03-20 16:51:00", "2014-03-20 23:51:00", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("684", "3", "2014-03-20 16:51:55", "2014-03-20 23:51:55", "<h3 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>[gview file=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Spiritual-Directors-poster-general-2014.pdf\"]</strong></span></h3>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Spiritual Directors at South Island Centre:</strong></span></h4>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Barbara Baillie and Pamela WelleÂ </strong></span></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">For more information on <strong>Barbara Baillie</strong>Â orÂ <strong>Pamela Welle</strong>, please go to the <strong>Meet</strong><strong>Â Us</strong>Â section and click on the individual counsellor\'s page.Â </span></span>\r\n\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-03-20 16:51:55", "2014-03-20 23:51:55", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("685", "3", "2014-03-20 16:53:13", "2014-03-20 23:53:13", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (member CHPCA, BCHPCA)</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Carla Haveman</span></strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Rosemary Merritt</span></strong>, RCC, enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Fiona Pasay</span></strong> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\nLaurie Truant is a volunteer counsellor with South Island Centre.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MASF)</span></h3>\r\n<strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>Â has a Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamela are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-20 16:53:13", "2014-03-20 23:53:13", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("686", "3", "2014-03-20 16:55:55", "2014-03-20 23:55:55", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\n[caption id=\"attachment_384\" align=\"alignnone\" width=\"200\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture.jpg\"><img class=\"size-medium wp-image-384\" alt=\"Bill Cole (Director of Services) \" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Bill-Cole-picture-200x300.jpg\" width=\"200\" height=\"300\" /></a> Bill Cole (Director of Services)[/caption]\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></h3>\r\n[caption id=\"attachment_425\" align=\"alignnone\" width=\"100\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\"><img class=\"size-full wp-image-425\" alt=\"Counsellor Margaret (McKinnon) Anderson\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Margaret_Anderson.jpg\" width=\"100\" height=\"143\" /></a> Margaret (McKinnon) Anderson[/caption]\r\n\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n[caption id=\"attachment_422\" align=\"alignnone\" width=\"211\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\"><img class=\"size-full wp-image-422\" alt=\"Counsellor Barbara Baillie\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/barb_baillie.jpg\" width=\"211\" height=\"251\" /></a> Barbara Baillie[/caption]\r\n\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MASF)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>Â has a Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamela are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-20 16:55:55", "2014-03-20 23:55:55", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("687", "3", "2014-03-20 21:27:44", "2014-03-21 04:27:44", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h5><span style=\"font-size: 1.5em; line-height: 1.5em; color: #0000ff;\">Website address:</span></h5>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h3><span style=\"color: #0000ff;\">Office hours:</span></h3>\r\nOur office hours are from <strong>9:00-5:00pm on Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\nThe office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm. If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h3><span style=\"color: #0000ff;\">Where on this big parking lot are we?</span></h3>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic).\r\n<h3><span style=\"color: #0000ff;\"><strong>Bus routesÂ </strong>from downtown:</span></h3>\r\n<ul>\r\n	<li><strong>Transit Bus No. 24</strong> stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li><strong>Transit buses 27 and 28</strong> stop at the intersection of Cedar Hill Cross Rd and Shelbourne Ave â€“ itâ€™s aÂ <strong>5-10 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2></h2>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-20 21:27:44", "2014-03-21 04:27:44", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("688", "3", "2014-03-20 21:30:42", "2014-03-21 04:30:42", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h5><span style=\"font-size: 1.5em; line-height: 1.5em; color: #0000ff;\">Website address:</span></h5>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h3><span style=\"color: #0000ff;\">Office hours:</span></h3>\r\nOur office hours are from <strong>9:00-5:00pm on Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n\r\n<span style=\"color: #0000ff;\"><strong>Counselling hours</strong>:</span> weekdays during office hours, and some evenings and weekends (please inquire).\r\n<h3><span style=\"color: #0000ff;\">Where on this big parking lot are we?</span></h3>\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the<strong> parking lot of St Lukeâ€™s Anglican Church</strong>. The parking lot is located at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Rd, away from UVic).\r\n<h3><span style=\"color: #0000ff;\"><strong>Bus routesÂ </strong>from downtown:</span></h3>\r\n<ul>\r\n	<li><strong>Transit Bus No. 24</strong> stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross/The Cedars Retirement Home) â€“ we are kitty corner/across the street!</li>\r\n	<li><strong>Transit buses 27 and 28</strong> stop at the intersection of Cedar Hill Cross Rd and Shelbourne Rd â€“ itâ€™s aÂ <strong>5-10 minute walk</strong> up the hill (walk away from UVic). Walk up Cedar Hill Cross Rd until you come to Cedar Hill Rd, where you can see the big parking lot and the big Sequoia tree.</li>\r\n</ul>\r\n<h2></h2>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-20 21:30:42", "2014-03-21 04:30:42", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("689", "3", "2014-03-20 21:39:23", "2014-03-21 04:39:23", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a>Â Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Currently offered courses</strong> are all listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list to receive information on up-coming courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 21:39:23", "2014-03-21 04:39:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("690", "3", "2014-03-20 21:40:07", "2014-03-21 04:40:07", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a>Â Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li>Pastoral Counselling Training (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Currently offered courses</strong> are all listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list to receive information on up-coming courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-20 21:40:07", "2014-03-21 04:40:07", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("691", "3", "2014-03-20 21:41:08", "2014-03-21 04:41:08", "South Island Centre is located at:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Road</strong></span> (Saanich).\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus Routes</strong> from downtown:</span>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Sidney:</strong></span>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Langford/Colwood:</strong></span>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-03-20 21:41:08", "2014-03-21 04:41:08", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("692", "3", "2014-03-21 06:10:17", "2014-03-21 13:10:17", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a>Â Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\">Pastoral Counselling Training</a> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Currently offered courses</strong> are all listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ SEARCH box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list to receive information on up-coming courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-21 06:10:17", "2014-03-21 13:10:17", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("696", "3", "2014-03-21 06:13:50", "2014-03-21 13:13:50", "&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignnone size-full wp-image-694\" alt=\"bill_cole_150w\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" width=\"150\" height=\"225\" /></a>\r\n\r\nDirector of Services of <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Director of Services", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-03-21 06:13:50", "2014-03-21 13:13:50", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("697", "3", "2014-03-21 06:14:58", "2014-03-21 13:14:58", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignnone size-full wp-image-694\" alt=\"bill_cole_150w\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" width=\"150\" height=\"225\" /></a>\r\n\r\nDirector of Services of <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Director of Services", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-03-21 06:14:58", "2014-03-21 13:14:58", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("698", "3", "2014-03-21 06:15:54", "2014-03-21 13:15:54", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\"><img class=\"alignnone size-full wp-image-695\" alt=\"margaret_anderson_150w\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\" width=\"150\" height=\"225\" /></a>\r\n\r\n<span style=\"color: #0000ff;\"><strong>Margaret Anderson</strong></span> is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret (McKinnon) Anderson", "", "inherit", "closed", "closed", "", "44-revision-v1", "", "", "2014-03-21 06:15:54", "2014-03-21 13:15:54", "", "44", "http://localhost:8888/TestSICPage/wordpress/44-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("699", "3", "2014-03-21 06:16:43", "2014-03-21 13:16:43", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\"><img class=\"alignnone size-full wp-image-693\" alt=\"barb_baillie_150w\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\" width=\"150\" height=\"226\" /></a>\r\n\r\n<span style=\"color: #0000ff;\"><strong>Barbara Baillie</strong></span>, B.Ed., M.T.S., M.A.P.P.C,Â BCATR,Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-03-21 06:16:43", "2014-03-21 13:16:43", "", "47", "http://localhost:8888/TestSICPage/wordpress/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("700", "3", "2014-03-21 06:19:24", "2014-03-21 13:19:24", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant</span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MASF)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>Â has a Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamela are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-03-21 06:19:24", "2014-03-21 13:19:24", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("701", "3", "2014-03-21 06:32:12", "2014-03-21 13:32:12", "Relationships are complicated . . .Â and even when youâ€™re hopelessly in love, there are things you may not be watching for or aware of that will impact the way you relate to one another - for better or worse - once youâ€™re married.\r\n\r\nâ€¢ Learn about communication patterns in your family and how theyâ€™ll affect you in your marriage.\r\n\r\nâ€¢ Discover how to develop and maintain intimacy in your relationship.\r\n\r\nâ€¢ Learn how to better manage conflict.\r\n\r\nâ€¢ Increase the level of understanding you have for your partner and build the marriage you both want.\r\n\r\n&nbsp;\r\n\r\n<strong>Option 1</strong>: $150.00 for one- day workshop\r\n\r\n<strong>Option 2</strong>: $225.00 per couple for one day workshop + 2 one-hour follow up sessions\r\n\r\n<strong>Option 3</strong>: $175.00 for 3 one-hour sessions of Individual Couple Counselling\r\n\r\n&nbsp;", "Marriage Preparation Workshop/Sessions", "", "publish", "closed", "closed", "", "marriage-preparation-workshopsessions", "", "", "2014-03-21 06:32:12", "2014-03-21 13:32:12", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=701&#038;instance_id=", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("702", "3", "2014-03-21 06:35:41", "2014-03-21 13:35:41", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations.\r\n\r\n<span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li><strong>grief and loss</strong>;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li><strong>marriage preparation</strong>;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-03-21 06:35:41", "2014-03-21 13:35:41", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("703", "3", "2014-03-21 06:37:28", "2014-03-21 13:37:28", "At South Island Centre we believe it is important that <span style=\"color: #0000ff;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n<span style=\"color: #3366ff;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">Graduated Fee Scale</span></h3>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #3366ff;\">graduated scale between $50 and $110 per 60-minute session</span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline; color: #3366ff;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\">Payment options</span></span>: we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><em>subsidize the cost of counselling</em>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Affordable Counselling Services ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-03-21 06:37:28", "2014-03-21 13:37:28", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("704", "3", "2014-03-21 06:39:03", "2014-03-21 13:39:03", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\">There are 3 options to make a donation to our Samaritan\'s Fund</span> (options: one-time, monthly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-21 06:39:03", "2014-03-21 13:39:03", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("705", "3", "2014-03-21 06:39:53", "2014-03-21 13:39:53", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #3366ff;\">Samaritan\'s Fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #3366ff;\">There are 3 options to make a donation to our Samaritan\'s Fund (options: one-time, monthly, annual etc):</span>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 1 (preferred)</span></strong>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong> :</span> Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <i class=\"fa fa-phone\"></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services which <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 3:</strong></span>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-21 06:39:53", "2014-03-21 13:39:53", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("706", "3", "2014-03-21 06:40:32", "2014-03-21 13:40:32", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #3366ff;\">Samaritan\'s Fund</span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #3366ff;\">There are 3 options to make a donation to our Samaritan\'s Fund (donate one-time, monthly, annually etc):</span>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 1 (preferred)</span></strong>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â to <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong> :</span> Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <i class=\"fa fa-phone\"></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services which <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 3:</strong></span>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span> we actually receive.</li>\r\n</ul>\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-03-21 06:40:32", "2014-03-21 13:40:32", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("707", "3", "2014-03-21 06:41:00", "2014-03-21 13:41:00", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\">There are 3 options to make a donation to our Samaritan\'s Fund</span> (for example: one-time, monthly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, Â as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-21 06:41:00", "2014-03-21 13:41:00", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("708", "3", "2014-03-21 06:44:18", "2014-03-21 13:44:18", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"Location of South Island Centre (MapQuest)\" href=\"http://www.mapquest.ca/#f0d976c5e6cc2869af231c87\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill and Cedar Hill Cross</strong>Â <strong>Rds</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne Ave</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne Ave</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-21 06:44:18", "2014-03-21 13:44:18", "", "284", "http://localhost:8888/TestSICPage/wordpress/284-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("709", "3", "2014-03-21 06:46:02", "2014-03-21 13:46:02", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"South Island Centre location (MapQuest)\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill and Cedar Hill Cross</strong>Â <strong>Rds</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne Ave</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne Ave</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-21 06:46:02", "2014-03-21 13:46:02", "", "284", "http://localhost:8888/TestSICPage/wordpress/284-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("710", "3", "2014-03-21 06:47:58", "2014-03-21 13:47:58", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"South Island Centre location (MapQuest)\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill and Cedar Hill Cross</strong>Â <strong>Rds</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd and Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-21 06:47:58", "2014-03-21 13:47:58", "", "284", "http://localhost:8888/TestSICPage/wordpress/284-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("713", "3", "2014-03-21 06:50:13", "2014-03-21 13:50:13", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne Ave, away from UVic). Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"South Island Centre location (MapQuest)\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill/Cedar Hill Cross</strong>Â <strong>Roads</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-21 06:50:13", "2014-03-21 13:50:13", "", "284", "http://localhost:8888/TestSICPage/wordpress/284-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("716", "3", "2014-03-21 06:59:31", "2014-03-21 13:59:31", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne St, away from UVic). <strong>Parking is free.</strong>\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"South Island Centre location (MapQuest)\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill/Cedar Hill Cross</strong>Â <strong>Roads</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (way from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-03-21 06:59:31", "2014-03-21 13:59:31", "", "284", "http://localhost:8888/TestSICPage/wordpress/284-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("718", "3", "2014-03-22 12:04:00", "2014-03-22 19:04:00", "<h3><span style=\"color: #0000ff;\">New Clients:</span></h3>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\">call our office co-ordinator at Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i>Â <strong>250-472-2851 and press 101</strong>.</span> Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h3><span style=\"color: #0000ff;\">Existing Clients:</span></h3>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <span style=\"color: #0000ff;\"><strong>250-472-2851</strong> and pressing 8 for the staff directory</span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-03-22 12:04:00", "2014-03-22 19:04:00", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("719", "3", "2014-03-22 12:19:04", "2014-03-22 19:19:04", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>. You will need Adobe Reader to download the information posters below.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (information poster here)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-22 12:19:04", "2014-03-22 19:19:04", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("720", "3", "2014-03-22 12:20:09", "2014-03-22 19:20:09", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>. You will need Adobe Reader to download the information posters below.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"CareerChoice Program - general info\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-22 12:20:09", "2014-03-22 19:20:09", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("721", "3", "2014-03-22 12:21:06", "2014-03-22 19:21:06", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>. You will need Adobe Reader to download the information posters below.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (information poster here)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-22 12:21:06", "2014-03-22 19:21:06", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("722", "3", "2014-03-22 12:22:06", "2014-03-22 19:22:06", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>. You will need Adobe Reader to download the information posters below.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-22 12:22:06", "2014-03-22 19:22:06", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("723", "3", "2014-03-22 12:50:56", "2014-03-22 19:50:56", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) - postponed (tba).</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014)</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a>Â Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\">Pastoral Counselling Training</a> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Currently offered courses</strong> are all listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list to receive information on up-coming courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-22 12:50:56", "2014-03-22 19:50:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("724", "3", "2014-03-22 12:53:21", "2014-03-22 19:53:21", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon,Â and click on the specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in, to get more information on the services we provide, or continue reading below.</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h4><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Professional Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #0000ff;\"><strong> Barbara Baillie</strong></span> and <strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>. For more in-depth information, please go to theÂ <strong>Meet Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3><span style=\"color: #0000ff;\">Travel Option</span></h3>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come <strong>on location</strong> with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, <strong>Bill Cole</strong>, to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-03-22 12:53:21", "2014-03-22 19:53:21", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("725", "3", "2014-03-23 07:33:45", "2014-03-23 14:33:45", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #0000ff;\">250-472-2851, extension 101.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-03-23 07:33:45", "2014-03-23 14:33:45", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("726", "3", "2014-03-23 07:36:45", "2014-03-23 14:36:45", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\">There are 3 options to make a donation to our Samaritan\'s Fund</span> (for example: one-time, monthly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-03-23 07:36:45", "2014-03-23 14:36:45", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("727", "3", "2014-03-24 08:03:13", "2014-03-24 15:03:13", "This is a 6 week course for professional caregivers, clergy and others who work with and/or \r\ncompanion the very elderly as they approach end-of-life whether they are in their homes, in \r\nnursing homes, in hospital or in residential care facilities. This course advocates maintaining a \r\npersonâ€™s dignity and quality of life through the process of illness and death. It also offers \r\npractical ways to help and support family members. Some topics covered include: complicated \r\nloss, disenfranchisement, relocation, depression and much more.\r\n\r\n<strong>Course facilitator: Margaret Anderson</strong> (Member, CHPCA)", "Twilight Journeys - general info poster", "Twilight Journeys - Grief, Loss and the Very Elderly", "inherit", "closed", "closed", "", "twilight-journeys-general", "", "", "2014-03-24 08:03:13", "2014-03-24 15:03:13", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("728", "3", "2014-03-24 08:06:33", "2014-03-24 15:06:33", "This well-received workshop is an action-oriented approach that will provide 								\r\ntherapists with the tools to expedite an individual\'s change. Participants will\r\nlearn to help people tap into their unrealized resourses and generate \r\nworkable solutions for their problems. 	\r\n\r\n*Brief	Solution Focused Therapy seminar is worth 6 CUE\'s credit.\r\n\r\n<strong>Facilitator</strong>: <strong>Joan Duncan</strong> (MSW, RSW)	\r\n", "Brief Solution Focus Theory - general info poster", "Brief Solution Focus Theory", "inherit", "closed", "closed", "", "brief-solution-focus-theory-general-info-poster", "", "", "2014-03-24 08:06:33", "2014-03-24 15:06:33", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Brief-Solution-Focus-Theory-general-info-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("729", "3", "2014-03-24 08:12:11", "2014-03-24 15:12:11", "If youâ€™re working with someone who has a serious problem, like an addiction . . .\r\nyou may be interested in learning more about the Transtheoretical Model of Change. This course trains \r\nprofessionals and volunteers who are helping others make changes in their lives. Using the techniques of \r\nStages of Change and Motivational Interviewing students cover 3 levels: 1. the change process, 2. the art \r\nof responding to resistance, 3. strengthening commitment to change. This creates an approach to helping \r\nthat health care professionals, professional counselors, clergy and employees in family serving agencies \r\nalike can use effectively.\r\n\r\n<strong>Course	Levels:</strong>	 \r\n<strong>Level 1</strong> - The Change Process\r\n<strong>Level 2</strong> - The Art of Dealing with Resistance\r\n<strong>Level 3 </strong>- Strengthening Commitment to Change", "Helping People Change - general poster", "Helping People change ", "inherit", "closed", "closed", "", "helping-people-change-general-info-poster", "", "", "2014-03-24 08:12:11", "2014-03-24 15:12:11", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Helping-People-Change-general-info-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("730", "3", "2014-03-24 08:15:18", "2014-03-24 15:15:18", "This course is designed for those who wish to explore family systems for professional as well \r\nas personal purposes. This course will give you a better understanding of relationship \r\npatterns, what can go wrong and how you can contribute to greater health at home, at work \r\nin your company or organization, and in the lives of others. \r\n\r\nCourse elements include learning family systems concepts, personal family of origin work, case \r\npresentations, practice counselling and philosophical reï¬‚ection.\r\n\r\nâ€¢ Program runs 12 weeks", "Bowen Family Systems Training - general info poster", "Bowen Family Systems Training", "inherit", "closed", "closed", "", "bowen-family-systems-theory-general-info-poster", "", "", "2014-03-24 08:15:18", "2014-03-24 15:15:18", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Bowen-Family-Systems-Theory-general-info-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("731", "3", "2014-03-24 08:18:44", "2014-03-24 15:18:44", "This six week course is for support workers, clergy, community professionals, and other who wish to \r\nlearn more about the grief process and how to be supportive to those on the journey. Topics we will cover:\r\n\r\nâ€¢	Understanding the grief process	\r\nâ€¢	Gender issues and grief				\r\nâ€¢	Useful models of grief	\r\nâ€¢	What works and what doesn\'t		\r\nâ€¢	When things get complicated\r\n\r\n<strong>Workshop Facilitator: Margaret Anderson</strong> (CHPCA Member)", "Ebb and Flow - general info poster", "The Ebb and Flow of Life: Training in Grief, Loss and Life Transitions", "inherit", "closed", "closed", "", "ebb-and-flow-general-info-poster", "", "", "2014-03-24 08:18:44", "2014-03-24 15:18:44", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-general-info-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("732", "3", "2014-03-24 08:24:26", "2014-03-24 15:24:26", "South Island Centre offers an educational opportunity to people in church and other occupations who want to \r\nexplore learn more about pastoral counselling. This program is designed to help people understand the counselling \r\nprocess, what pastoral counselling is, personal awareness and the helping process, and how family of origin impacts \r\nbehaviour and relationships. \r\n\r\nWhat you will learn:\r\nâ€¢ the biblical model of pastoral counselling\r\nâ€¢ personal awareness and the helping process\r\nâ€¢ what makes a pastoral counsellor\r\nâ€¢ interviewing\r\nâ€¢ using the genogram\r\nâ€¢ family of origin\r\nâ€¢ Myers Briggs and me", "Pastoral Care and Counselling Training - genero info poster", "Pastoral Care and Counselling Training", "inherit", "closed", "closed", "", "pastoral-counselling-training-genero-info-poster", "", "", "2014-03-24 08:24:26", "2014-03-24 15:24:26", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Pastoral-Counselling-Training-genero-info-poster-.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("733", "3", "2014-03-24 08:27:52", "2014-03-24 15:27:52", "Differences among people can be fascinating but they also can be frustrating. \r\nThis workshop will help participants to understand themselves better, and \r\nsee the different ways people experience life. When this happens, everything \r\nchanges. Relationships improve, conflicts are better managed, and people can \r\nreally enjoy one another.\r\n\r\nJoin us for this inspiring time of self discovery and learn how to accept and embrace \r\nthe way others see and experience the world.", "The Enneagram - general info poster", "The Enneagram ", "inherit", "closed", "closed", "", "the-enneagram-general-info-poster", "", "", "2014-03-24 08:27:52", "2014-03-24 15:27:52", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/The-Enneagram-general-info-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("734", "3", "2014-03-24 08:29:17", "2014-03-24 15:29:17", "<strong>ART THERAPY GROUP for Women in Transition</strong>\r\n\r\nWhere do I go from here? Have you experienced loss or change due to illness, death, divorce, loss or \r\nchange of job, change in family situation or other transition? Transitions can leave us feeling suddenly\r\nunmoored, adrift. Art therapy can allow us to work with change and transition in a new way using the \r\noften untapped resources of the right brain. <em>No artistic talent or experience required!</em> Just bring a \r\nwillingness to share your story and join in the process in an accepting group atmosphere! You will learn\r\nto value your own strengths, find new strengths and resources, and see your journey through new eyes.\r\n\r\n		\r\n", "Art Therapy - general info poster", "Art Therapy for Women in Transition", "inherit", "closed", "closed", "", "art-therapy-general-info-poster", "", "", "2014-03-24 08:29:17", "2014-03-24 15:29:17", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Art-Therapy-general-info-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("735", "3", "2014-03-24 08:38:22", "2014-03-24 15:38:22", "The Mid-Life directions workshop will help you to \r\n	\r\nâ€¢ look at mid-life as crisis, transition and spiritual resurrection \r\nâ€¢ ask the ultimate question: <strong>What is the purpose of my life? </strong>	\r\nâ€¢ unleash the dynamism of the second half of life 	\r\nâ€¢ learn how to relax and contemplate \r\nâ€¢ reflect on your deepest beliefs as they illuminate your life 	", "Mid Life Directions - general info poster", "Mid-Life Directions - Personal & Spiritual Growth Workshop", "inherit", "closed", "closed", "", "mid-life-directions-general-info-poster", "", "", "2014-03-24 08:38:22", "2014-03-24 15:38:22", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Mid-Life-Directions-general-info-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("736", "3", "2014-03-24 08:43:21", "2014-03-24 15:43:21", "", "Helping a Loved one Change - general info poster", "Helping a Loved one Change - general info poster", "inherit", "closed", "closed", "", "helping-a-loved-one-change-general-info-poster", "", "", "2014-03-24 08:43:21", "2014-03-24 15:43:21", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Helping-a-Loved-one-Change-general-info-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("737", "3", "2014-03-24 08:50:31", "2014-03-24 15:50:31", "Have you ever wondered how to help someone you love who has a serious problem like an addiction?\r\nWorkshop facilitator, Dr. Martin Spray, is a registered psychologist currently in private practice. \r\nHe has been working in the ï¬eld of addictions as a counsellor and trainer for thirty years. \r\nMartin combines a wealth of knowledge, hands on experience with a warm and engaging speaking style. \r\nThis workshop will introduce participants to the Transtheoretical Model of Change and Motivational \r\nInterviewing. \r\n\r\nThis course provides answers and tools for family and friends who want to help!", "Helping a loved one with addiction - September 2010", "Helping a loved one with a problem like addiction - September 2010", "inherit", "closed", "closed", "", "helping-a-loved-one-with-addiction-september-2010", "", "", "2014-03-24 08:50:31", "2014-03-24 15:50:31", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Helping-a-loved-one-with-addiction-September-2010.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("738", "3", "2014-03-24 08:54:54", "2014-03-24 15:54:54", "<strong><span style=\"color: #0000ff;\">Laurie Truant</span></strong> is a volunteer counsellor with South Island Centre.", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2014-03-24 08:54:54", "2014-03-24 15:54:54", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("740", "3", "2014-03-24 12:49:15", "2014-03-24 19:49:15", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Event Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:Â </span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <strong><span style=\"color: #0000ff;\">MUST</span></strong> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\nWe accept the following <span style=\"color: #0000ff;\">payment options</span>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-03-24 12:49:15", "2014-03-24 19:49:15", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("741", "3", "2014-03-24 13:06:28", "2014-03-24 20:06:28", "South Island Centre is located at:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Road</strong></span> (Saanich).Â <strong>Parking is free.</strong>\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus Routes</strong> from downtown:</span>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Sidney:</strong></span>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Langford/Colwood:</strong></span>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-03-24 13:06:28", "2014-03-24 20:06:28", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("744", "3", "2014-03-24 13:08:29", "2014-03-24 20:08:29", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h5><span style=\"font-size: 1.5em; line-height: 1.5em; color: #0000ff;\">Website address:</span></h5>\r\nhttp://localhost:8888/TestSICPage/wordpress\r\n<h3><span style=\"color: #0000ff;\">Office hours:</span></h3>\r\nOur office hours are from <strong>9:00-5:00pm on Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n\r\n<span style=\"color: #0000ff;\"><strong>Counselling hours</strong>:</span> weekdays during office hours, and some evenings and weekends (please inquire).\r\n<h3></h3>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-24 13:08:29", "2014-03-24 20:08:29", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("745", "3", "2014-03-24 13:11:04", "2014-03-24 20:11:04", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n\r\nOur office hours are from <strong>9:00-5:00pm on Mondays to Fridays</strong>. South Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n\r\n<span style=\"color: #0000ff;\"><strong>Counselling hours</strong>:</span> weekdays during office hours, and some evenings and weekends (please inquire).\r\n\r\n<strong>You may contact us directly by e-mail:</strong>\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n<h3></h3>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-24 13:11:04", "2014-03-24 20:11:04", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("746", "3", "2014-03-24 13:13:36", "2014-03-24 20:13:36", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n<i class=\"fa fa-envelope\"><span style=\"color: transparent; display: none;\">icon-envelope</span></i>Â 3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">Office hours</span></strong>:Â <strong>9:00 am -5:00pm on Mondays to Fridays</strong>.</h3>\r\nSouth Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5><span style=\"color: #0000ff;\"><strong>Counselling hours</strong>:</span> weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3><span style=\"color: #0000ff;\"><strong>E-mails:</strong></span></h3>\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n<h3></h3>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-24 13:13:36", "2014-03-24 20:13:36", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("747", "3", "2014-03-24 13:14:52", "2014-03-24 20:14:52", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n<i class=\"fa fa-envelope\"><span style=\"color: transparent; display: none;\">icon-envelope</span></i>Â 3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">Office hours</span></strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5><span style=\"color: #0000ff;\"><strong>Counselling hours</strong>:</span> weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3><span style=\"color: #0000ff;\"><strong>E-mails:</strong></span></h3>\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n<h3></h3>", "Contact us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-24 13:14:52", "2014-03-24 20:14:52", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("749", "3", "2014-03-24 13:21:14", "2014-03-24 20:21:14", "<h3><span style=\"color: #0000ff;\">New Clients:</span></h3>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\">call our office co-ordinator at Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i>Â <strong>250-472-2851 and press 101</strong>.</span> Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm. Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only, please inquire).\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h3><span style=\"color: #0000ff;\">Existing Clients:</span></h3>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <span style=\"color: #0000ff;\"><strong>250-472-2851</strong> and pressing 8 for the staff directory</span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-03-24 13:21:14", "2014-03-24 20:21:14", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("751", "3", "2014-03-24 16:12:34", "2014-03-24 23:12:34", "[contact-form-7 id=\"1234\" title=\"Contact form 1\"]\r\n\r\n&nbsp;", "Leave a comment", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2014-03-24 16:12:34", "2014-03-24 23:12:34", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("770", "3", "2014-03-24 19:38:12", "2014-03-25 02:38:12", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n<i class=\"fa fa-envelope\"><span style=\"color: transparent; display: none;\">icon-envelope</span></i>Â 3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">Office hours</span></strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5><span style=\"color: #0000ff;\"><strong>Counselling hours</strong>:</span> weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3><span style=\"color: #0000ff;\"><strong>E-mails:</strong></span></h3>\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n<h3></h3>", "Contact Us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-03-24 19:38:12", "2014-03-25 02:38:12", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("771", "3", "2014-03-24 19:39:04", "2014-03-25 02:39:04", "<h3><span style=\"color: #0000ff;\">Samaritan\'s Fund</span></h3>\r\nSouth Island Centre for Counselling and Training relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #0000ff;\">Samaritan\'s fund</span>.\r\n\r\nTo make a one-time, annual, bi-annual, quarterly or monthly <strong>donation</strong> to our <span style=\"color: #0000ff;\">Samaritan Fund</span>Â you may:\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\nSouth Island Centre appreciates yourÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span>Â when you\r\n<ul>\r\n	<li>volunteer your time at South Island Centre events or at the office.</li>\r\n	<li>volunteer your time as a board member.</li>\r\n</ul>\r\nPlease contact the office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "Support Us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-03-24 19:39:04", "2014-03-25 02:39:04", "", "170", "http://localhost:8888/TestSICPage/wordpress/170-revision-v1/", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("772", "3", "2014-03-24 19:41:38", "2014-03-25 02:41:38", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\nThere are 3 options to make a donation to our <span style=\"color: #0000ff;\">Samaritan\'s FundÂ </span>(for example: one-time, monthly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong></span>Â :Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\nSouth Island Centre appreciates yourÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span>Â when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "Support Us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-03-24 19:41:38", "2014-03-25 02:41:38", "", "170", "http://localhost:8888/TestSICPage/wordpress/170-revision-v1/", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("774", "3", "2014-03-25 06:55:30", "2014-03-25 13:55:30", "<strong>Daphne TaylorÂ </strong>\r\n\r\nI am a senior who has twice benefitted from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>", "Board ", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-03-25 06:55:30", "2014-03-25 13:55:30", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("777", "3", "2014-03-25 07:01:09", "2014-03-25 14:01:09", "<h3><span style=\"color: #0000ff;\">New Clients:</span></h3>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\">call our office co-ordinator at Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i>Â <strong>250-472-2851 and press 101</strong>.</span> <em>Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm.</em> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h3><span style=\"color: #0000ff;\">Current Clients:</span></h3>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <span style=\"color: #0000ff;\"><strong>250-472-2851</strong> and pressing 8 for the staff directory</span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-03-25 07:01:09", "2014-03-25 14:01:09", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("778", "3", "2014-03-25 07:08:56", "2014-03-25 14:08:56", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) *postponed</li>\r\n	<li>Marriage Preparation (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014) *postponed to the fall</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a>Â Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\">Pastoral Counselling Training</a> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>Currently offered courses</strong> are all listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list to receive information on up-coming courses and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-03-25 07:08:56", "2014-03-25 14:08:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("780", "3", "2014-04-02 07:10:46", "2014-04-02 14:10:46", "<strong><span style=\"color: #0000ff;\">Laurie Truant</span></strong>Â specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\n\nLaurie has 19 years of experience providing individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\n\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\n\nLaurie is married and has 2 adult step-children and 3 grandchildren. She enjoys hiking and boating with her husband as well as playing the piano and cooking,\n\n&nbsp;\n\n&nbsp;", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-autosave-v1", "", "", "2014-04-02 07:10:46", "2014-04-02 14:10:46", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("781", "3", "2014-04-02 07:10:56", "2014-04-02 14:10:56", "<strong><span style=\"color: #0000ff;\">Laurie Truant</span></strong>Â specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\r\n\r\nLaurie has 19 years of experience providing individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\r\n\r\nLaurie is married and has 2 adult step-children and 3 grandchildren. She enjoys hiking and boating with her husband as well as playing the piano and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2014-04-02 07:10:56", "2014-04-02 14:10:56", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("782", "3", "2014-04-02 07:11:36", "2014-04-02 14:11:36", "<strong><span style=\"color: #0000ff;\">Laurie Truant</span></strong>Â (M.A., RCC) specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\r\n\r\nLaurie has 19 years of experience providing individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\r\n\r\nLaurie is married and has 2 adult step-children and 3 grandchildren. She enjoys hiking and boating with her husband as well as playing the piano and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2014-04-02 07:11:36", "2014-04-02 14:11:36", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("783", "3", "2014-04-02 07:12:55", "2014-04-02 14:12:55", "For more information, please hover over <strong>About us</strong> in the top ribbon, which will show you <strong>Meet our Counsellors</strong>Â catory<strong>Â </strong>inÂ the drop-down menu, and then click on the counsellor\'s name in the menu on the right.\r\n\r\nBelow is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life specialist\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Enneagram\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems\r\n\r\n<strong>Carla Haverman</strong>:\r\n\r\n<strong>Rosemary Merritt</strong>:\r\n\r\n<strong>Fiona Pasay</strong>:\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n<strong>Pamela Welle</strong>: Spiritual Direction\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-04-02 07:12:55", "2014-04-02 14:12:55", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("784", "3", "2014-04-02 07:13:29", "2014-04-02 14:13:29", "<h3><span style=\"color: #0000ff;\">Our mailing address:</span></h3>\r\n<i class=\"fa fa-envelope\"><span style=\"color: transparent; display: none;\">icon-envelope</span></i>Â 3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><span style=\"color: #0000ff;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">Office hours</span></strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5><span style=\"color: #0000ff;\">Counselling hours:</span> weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3><span style=\"color: #0000ff;\"><strong>E-mails:</strong></span></h3>\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n<h3></h3>", "Contact Us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-04-02 07:13:29", "2014-04-02 14:13:29", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "3", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("786", "3", "2014-04-02 07:14:22", "2014-04-02 14:14:22", "South Island Centre is located at:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Road</strong></span> (Saanich).Â <strong>Parking is free.</strong>\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Sidney:</strong></span>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Langford/Colwood:</strong></span>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-04-02 07:14:22", "2014-04-02 14:14:22", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("788", "3", "2014-04-02 07:17:24", "2014-04-02 14:17:24", "At South Island Centre we believe it is important that <span style=\"color: #0000ff;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">Graduated Fee Scale</span></h3>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #0000ff;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n<strong><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\">Payment options</span></span></strong>: we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><strong><span style=\"color: #0000ff;\"><em>subsidize the cost of counselling</em></span></strong>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #0000ff;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Affordable Counselling Services ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-04-02 07:17:24", "2014-04-02 14:17:24", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("789", "3", "2014-04-02 07:20:45", "2014-04-02 14:20:45", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues, and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay</span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is a volunteer counsellor with South Island Centre and is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant (RCC, MA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MASF)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>Â is a volunteer counsellor with South Island Centre and has a Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamela are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-04-02 07:20:45", "2014-04-02 14:20:45", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("790", "3", "2014-04-02 07:21:57", "2014-04-02 14:21:57", "<h3><span style=\"color: #0000ff;\">New Clients:</span></h3>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our office co-ordinator at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i>Â <strong>250-472-2851 and press 101</strong>.</span> <strong>Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nYou may also contact us by email:Â <a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to email us at counselling@localhost.\r\n<h3><span style=\"color: #0000ff;\">Current Clients:</span></h3>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <span style=\"color: #0000ff;\"><strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-04-02 07:21:57", "2014-04-02 14:21:57", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("791", "3", "2014-04-02 07:23:00", "2014-04-02 14:23:00", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Event Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:Â </span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\">payment options</span></strong>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-04-02 07:23:00", "2014-04-02 14:23:00", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("792", "3", "2014-04-02 07:23:25", "2014-04-02 14:23:25", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <strong><span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span></strong>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Link to Marriage Preparation poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Marriage%20Prep%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong><span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-04-02 07:23:25", "2014-04-02 14:23:25", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("793", "3", "2014-04-02 07:23:49", "2014-04-02 14:23:49", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em>specific dates and times of up-coming courses</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-04-02 07:23:49", "2014-04-02 14:23:49", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("794", "3", "2014-04-02 07:24:10", "2014-04-02 14:24:10", "Below are general information posters of all<strong>Â <span style=\"color: #0000ff;\">courses</span></strong><span style=\"color: #0000ff;\">Â </span><strong><span style=\"color: #0000ff;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <strong><span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span></strong>Â on the Home Page<strong></strong><strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to <strong>email</strong> us at courses@localhost or call our office atÂ <span style=\"color: #0000ff;\"><i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-04-02 07:24:10", "2014-04-02 14:24:10", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("795", "3", "2014-04-02 07:25:06", "2014-04-02 14:25:06", "<h2><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h2>\r\nSouth Island Centre for Counselling and Training has been offering <strong>Pastoral Care &amp; Counselling Services</strong> in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre <strong>supports clergy and persons of faith</strong> as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h2></h2>\r\n<h2><span style=\"color: #0000ff;\">Professional Consultations for Clergy</span></h2>\r\n<strong>Pastoral care</strong> is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a <strong>consultation service to pastors and other professionals</strong> through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\"><span style=\"color: #333333; font-size: 14px; line-height: 1.5em;\"><strong>Please contact ourÂ Director of Services, Bill Cole,Â by e-mail by clickingÂ </strong>hereÂ or call him at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â (250) 472-2851, extension 102.\r\n</span></span></h3>", "Counselling Services for Clergy", "", "inherit", "closed", "closed", "", "9-revision-v1", "", "", "2014-04-02 07:25:06", "2014-04-02 14:25:06", "", "9", "http://localhost:8888/TestSICPage/wordpress/9-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("796", "3", "2014-04-02 07:26:41", "2014-04-02 14:26:41", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\nThere are 3 options to make a donation to our <span style=\"color: #0000ff;\"><strong>Samaritan\'s Fund</strong>Â </span>(for example: one-time, monthly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong></span>Â :Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\nSouth Island Centre appreciates yourÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span>Â when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "Support Us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-04-02 07:26:41", "2014-04-02 14:26:41", "", "170", "http://localhost:8888/TestSICPage/wordpress/170-revision-v1/", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("797", "3", "2014-04-07 13:35:40", "2014-04-07 20:35:40", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong></span> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n<strong><span style=\"color: #0000ff;\">The Fine Print</span></strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used.\r\n\r\n<span style=\"color: #0000ff;\"><strong>In-Kind Donation</strong></span>\r\n\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-04-07 13:35:40", "2014-04-07 20:35:40", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("798", "3", "2014-04-07 13:48:35", "2014-04-07 20:48:35", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong></span> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n<strong><span style=\"color: #0000ff;\">The Fine Print</span></strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n<span style=\"color: #0000ff;\"><strong>In-Kind Donation</strong></span>\r\n\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-04-07 13:48:35", "2014-04-07 20:48:35", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("799", "3", "2014-04-07 13:50:49", "2014-04-07 20:50:49", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong></span> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n<strong><span style=\"color: #0000ff;\">The Fine Print</span></strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n<span style=\"color: #0000ff;\"><strong>In-Kind Donation</strong></span>\r\n\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-04-07 13:50:49", "2014-04-07 20:50:49", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("800", "3", "2014-04-07 13:53:17", "2014-04-07 20:53:17", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <strong><span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong>Â </span>(for example: one-time, monthly, quarterly, annual etc):\r\n\r\n&nbsp;\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n	<li><strong>Option 2</strong>:Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n	<li><strong>Option 3:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\n&nbsp;\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>The Fine Print</strong></span>\r\n\r\n&nbsp;\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-04-07 13:53:17", "2014-04-07 20:53:17", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("801", "3", "2014-04-07 13:54:23", "2014-04-07 20:54:23", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong></span>Â (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong></span>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n<strong>Why monthly or quarterly giving?</strong>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n<span style=\"color: #0000ff;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;", "Support Us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-04-07 13:54:23", "2014-04-07 20:54:23", "", "170", "http://localhost:8888/TestSICPage/wordpress/170-revision-v1/", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("802", "3", "2014-04-07 13:57:19", "2014-04-07 20:57:19", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n<span style=\"color: #0000ff;\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong></span>Â (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong></strong><strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong></span>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amountÂ </span>we actually receive.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n<span style=\"color: #0000ff;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n<strong><span style=\"color: #0000ff;\">In-Kind Donation /VolunteeringÂ </span></strong>\r\n\r\nYou may help us with anÂ <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span>Â when you volunteer your time and/or talent\r\n<ul>\r\n	<li>at South Island CentreÂ <strong>events</strong>,</li>\r\n	<li>at the South Island CentreÂ <strong>office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\r\n</ul>\r\nPlease contact us at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!", "Support Us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-04-07 13:57:19", "2014-04-07 20:57:19", "", "170", "http://localhost:8888/TestSICPage/wordpress/170-revision-v1/", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("803", "3", "2014-04-07 14:13:15", "2014-04-07 21:13:15", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations.\r\n\r\n<span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li><strong>trauma</strong> or distress;</li>\r\n	<li><strong>depression</strong>;</li>\r\n	<li>relational conflict;</li>\r\n	<li><strong>self-esteem issues</strong>;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li><strong>issues related to faith and spirituality</strong>;</li>\r\n	<li><strong>grief and loss</strong>;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li><strong>marriage preparation</strong>;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Affordable Counselling Services</strong></span>\r\n\r\n&nbsp;\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n&nbsp;\r\n\r\n<strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, go to the top ribbon, hover overÂ <strong>Counselling</strong>, and then click onÂ <strong>Affordable Counselling Services</strong>Â in the drop-down menu. Our fee system is based on your combined family income.\r\n\r\n&nbsp;\r\n\r\nToÂ <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span>Â call our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a>Â to e-mail us at counselling@localhost. More information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-04-07 14:13:15", "2014-04-07 21:13:15", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("804", "3", "2014-04-07 14:15:50", "2014-04-07 21:15:50", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) *postponed</li>\r\n	<li>Marriage Preparation Workshop (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li><a title=\"The Ebb and Flow of Life \" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Ebb-and-Flow-March-2014.pdf\" target=\"_blank\">The Ebb and Flow of Life</a> (March 27-28, 2014) *postponed to the fall</li>\r\n	<li><a title=\"The Twilight Journey: Understanding Grief, Loss and the Very Elderly\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-April-2014.pdf\" target=\"_blank\">The Twilight Journey</a> (April 12, 2014) - *postponed (date TBA)</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a>Â Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\">Pastoral Counselling Training</a> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. We will not share your contact information with any outside sources.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-04-07 14:15:50", "2014-04-07 21:15:50", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("805", "3", "2014-04-07 14:19:33", "2014-04-07 21:19:33", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon, to click on a specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in to get more information on the services we provide; or continue reading below.</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n\r\n<strong><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Professional Counselling Consultations for Clergy</span></strong>\r\n\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #0000ff;\"><strong> Barbara Baillie</strong></span> and <strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>. For more in-depth information, please go to theÂ <strong>Meet Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3><span style=\"color: #0000ff;\">Travel Option</span></h3>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come <strong>on location</strong> with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, <strong>Bill Cole</strong>, to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-04-07 14:19:33", "2014-04-07 21:19:33", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("806", "3", "2014-04-07 14:25:15", "2014-04-07 21:25:15", "Agenda:\r\n\r\n1. Presentation of Reports and Election of Board Members.\r\n\r\n2. South Island Centre Presentations (concurrently) by Counsellors Margaret Anderson and Fiona Pasay.\r\n\r\n3. Fellowship time\r\n\r\nPlease contact admin@localhost to let us know you\'re planning to come and which of the 2 presentations you would like to attend.", "Annual General Meeting", "", "publish", "closed", "closed", "", "annual-general-meeting", "", "", "2014-04-07 14:36:55", "2014-04-07 21:36:55", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=806&#038;instance_id=", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("809", "3", "2014-04-08 09:52:40", "2014-04-08 16:52:40", "For more information, please hover over <strong>About us</strong> in the top ribbon, which will show you <strong>Meet our Counsellors</strong>Â catory<strong>Â </strong>inÂ the drop-down menu, and then click on the counsellor\'s name in the menu on the right.\r\n\r\nBelow is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life specialist\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Enneagram\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems\r\n\r\n<strong>Carla Haverman</strong>:\r\n\r\n<strong>Rosemary Merritt</strong>:\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n<strong>Pamela Welle</strong>: Spiritual Direction\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-04-08 09:52:40", "2014-04-08 16:52:40", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("814", "3", "2014-04-09 12:47:25", "2014-04-09 19:47:25", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon, to click on a specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in to get more information on the services we provide; or continue reading below.</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h3><strong><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Professional Counselling Consultations for Clergy</span></strong></h3>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #0000ff;\"><strong> Barbara Baillie</strong></span> and <strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>. For more in-depth information, please go to theÂ <strong>Meet Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3><span style=\"color: #0000ff;\">Travel Option</span></h3>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come <strong>on location</strong> with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, <strong>Bill Cole</strong>, to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-04-09 12:47:25", "2014-04-09 19:47:25", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("815", "3", "2014-04-09 12:48:35", "2014-04-09 19:48:35", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon, to click on a specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in to get more information on the services we provide; or continue reading below.</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h4><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Profession</span><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">al</span><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\"> Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #0000ff;\"><strong> Barbara Baillie</strong></span> and <strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>. For more in-depth information, please go to theÂ <strong>Meet Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3><span style=\"color: #0000ff;\">Travel Option</span></h3>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come <strong>on location</strong> with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, <strong>Bill Cole</strong>, to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-04-09 12:48:35", "2014-04-09 19:48:35", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("816", "3", "2014-04-09 13:03:18", "2014-04-09 20:03:18", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon, to click on a specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in to get more information on the services we provide; or continue reading below.</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Profession</span><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">al</span><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\"> Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #0000ff;\"><strong> Barbara Baillie</strong></span> and <strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>. For more in-depth information, please go to theÂ <strong>Meet Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3><span style=\"color: #0000ff;\">Travel Option</span></h3>\r\nWe will provide some of our key services in your congregational, institutional or agency setting. South Island Centre will come <strong>on location</strong> with one of its staff persons in order to team up with your staff to develop your ministry. In this way, you may add to your staff a part-time pastor offering consultation, continuing education and counselling. Fees for on location services are based on a suggested per diem commensurate with salary levels of your staff. Please <a title=\"email to Bill Cole\" href=\"mailto:bill@localhost\" target=\"_blank\">click here</a> to contact Director of Services, <strong>Bill Cole</strong>, to discuss travel option details.", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-04-09 13:03:18", "2014-04-09 20:03:18", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "2", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("817", "3", "2014-04-14 11:07:44", "2014-04-14 18:07:44", "", "New Slider", "", "publish", "closed", "closed", "", "new-slider", "", "", "2014-04-15 06:46:58", "2014-04-15 13:46:58", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ml-slider&#038;p=817", "0", "ml-slider", "", "0");
INSERT INTO `wp_posts` VALUES("818", "3", "2014-04-14 12:11:00", "2014-04-14 19:11:00", "<h3><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n<strong><span style=\"color: #0000ff;\">Affordable Counselling Services</span></strong>\r\n\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, go to the top ribbon, hover overÂ <strong>Counselling</strong>, and then click onÂ <strong>Affordable Counselling Services</strong> in the drop down menu. Our fee system is based on your combined family income.\r\n\r\nTo <strong>book an appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-04-14 12:11:00", "2014-04-14 19:11:00", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("819", "3", "2014-04-14 12:17:22", "2014-04-14 19:17:22", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) *postponed</li>\r\n	<li>Marriage Preparation Workshop (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>The Ebb and Flow of Life:Â Understanding Grief, Loss and Life Transitions (March 2014)Â Â *new date TBA</li>\r\n	<li>The Twilight Journey:Â Understanding Grief and Loss as End of Life Approaches (April 2014)Â *new date TBA</li>\r\n	<li><a title=\"Family Systems Theory Course\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Family-Systems-Course-April-July-2014.pdf\" target=\"_blank\">Family Systems Theory</a> (12 Thursdays, 24 April-17 July, 2014, excluding 19 June)</li>\r\n	<li><a title=\"Marriage Preparation Workshop/Sessions\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Marriage-Prep-poster-June-2014.pdf\" target=\"_blank\">Marriage Preparation</a>Â Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li>Selfcare for Caregivers *TBA (fall 2014)</li>\r\n	<li><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\">Pastoral Counselling Training</a> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. We will not share your contact information with any outside sources.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-04-14 12:17:22", "2014-04-14 19:17:22", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("820", "3", "2014-04-14 14:25:58", "2014-04-14 21:25:58", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations.\r\n\r\n<span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>grief and loss;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Affordable Counselling Services</strong></span>\r\n\r\n&nbsp;\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n&nbsp;\r\n\r\n<strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, go to the top ribbon, hover overÂ <strong>Counselling</strong>, and then click onÂ <strong>Affordable Counselling Services</strong>Â in the drop-down menu. Our fee system is based on your combined family income.\r\n\r\n&nbsp;\r\n\r\nToÂ <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span>Â call our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a>Â to e-mail us at counselling@localhost. More information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-04-14 14:25:58", "2014-04-14 21:25:58", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("821", "3", "2014-04-14 14:28:13", "2014-04-14 21:28:13", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations.\r\n\r\n<span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Affordable Counselling Services</strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, go to the top ribbon, hover overÂ <strong>Counselling</strong>, and then click onÂ <strong>Affordable Counselling Services</strong>Â in the drop-down menu. Our fee system is based on your combined family income.\r\n\r\nToÂ <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span>Â call our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a>Â to e-mail us at counselling@localhost. More information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-04-14 14:28:13", "2014-04-14 21:28:13", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("822", "3", "2014-04-15 06:48:33", "2014-04-15 13:48:33", "<h3><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n<h3><strong><span style=\"color: #0000ff;\">Affordable Counselling Services</span></strong></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, go to the top ribbon, hover overÂ <strong>Counselling</strong>, and then click onÂ <strong>Affordable Counselling Services</strong> in the drop down menu. Our fee system is based on your combined family income.\r\n\r\nTo <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-04-15 06:48:33", "2014-04-15 13:48:33", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("826", "3", "2014-07-23 15:10:12", "2014-07-23 22:10:12", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/RCM-picture.jpg\"><img class=\"alignright wp-image-829 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/RCM-picture-300x225.jpg\" alt=\"RCM picture\" width=\"300\" height=\"225\" /></a>\n\n<span style=\"color: #000000;\"><strong>Rosemary Cantle Merritt,Â </strong></span>M.P.E./Ottawa; M.Ed./Ottawa, Registered Clinical Counsellor (British Columbia Association of Clinical Counsellors)\n\nSpecialty:\n<ul>\n	<li>Self-Esteem</li>\n	<li>Empowerment</li>\n	<li>Anxiety</li>\n	<li>Holistic well-being</li>\n	<li>Depression</li>\n	<li>Self in Society</li>\n	<li>Self &amp; Environment</li>\n	<li>Managing Change</li>\n	<li>Academic, Sport, &amp; Job Performance</li>\n	<li>Restorative Justice</li>\n	<li>Family Issues</li>\n</ul>\n&nbsp;\n\n<span style=\"color: #0000ff;\"><strong>Â </strong></span>", "Rosemary Cantle Merritt", "", "inherit", "closed", "closed", "", "406-autosave-v1", "", "", "2014-07-23 15:10:12", "2014-07-23 22:10:12", "", "406", "http://localhost:8888/TestSICPage/wordpress/406-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("827", "3", "2014-04-29 11:14:09", "2014-04-29 18:14:09", "&nbsp;\r\n\r\n<strong><span style=\"color: #0000ff;\">Rosemary Cantle Merritt</span></strong> (M.P.E./Ottawa; M.Ed./Ottawa), Registered Clinical Counsellor (British Columbia Association of Clinical Counsellors)\r\n\r\n&nbsp;\r\n\r\nSpecialty:\r\n<ul>\r\n	<li>Self-Esteem</li>\r\n	<li>Empowerment</li>\r\n	<li>Anxiety</li>\r\n	<li>Holistic well-being</li>\r\n	<li>Depression</li>\r\n	<li>Self in Society</li>\r\n	<li>Self &amp; Environment</li>\r\n	<li>Managing Change</li>\r\n	<li>Academic, Sport, &amp; Job Performance</li>\r\n	<li>Restorative Justice</li>\r\n	<li>Family Issues</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Â </strong></span>", "Rosemary Cantle Merritt", "", "inherit", "closed", "closed", "", "406-revision-v1", "", "", "2014-04-29 11:14:09", "2014-04-29 18:14:09", "", "406", "http://localhost:8888/TestSICPage/wordpress/406-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("828", "3", "2014-04-29 11:17:38", "2014-04-29 18:17:38", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC, MPE)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay (MA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is a volunteer counsellor with South Island Centre and is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant (RCC, MA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3><span style=\"color: #0000ff;\">Pamela Welle (MASF)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>Â is a volunteer counsellor with South Island Centre and has a Master\'s degree in Spiritual Formation with specific training in spiritual direction. Barbara Baillie and Pamela are spearheading South Island Centre\'s Spiritual Direction program, and Pamela considers it a true honour to walk with others as they seek more freedom, joy and love in their relationship with God.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-04-29 11:17:38", "2014-04-29 18:17:38", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("830", "3", "2014-04-29 11:46:04", "2014-04-29 18:46:04", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/RCM-picture.jpg\"><img class=\"alignnone size-medium wp-image-829\" alt=\"RCM picture\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/RCM-picture-300x225.jpg\" width=\"300\" height=\"225\" /></a>\r\n\r\n<strong><span style=\"color: #0000ff;\">Rosemary Cantle Merritt</span></strong> (M.P.E./Ottawa; M.Ed./Ottawa), Registered Clinical Counsellor (British Columbia Association of Clinical Counsellors)\r\n\r\n&nbsp;\r\n\r\nSpecialty:\r\n<ul>\r\n	<li>Self-Esteem</li>\r\n	<li>Empowerment</li>\r\n	<li>Anxiety</li>\r\n	<li>Holistic well-being</li>\r\n	<li>Depression</li>\r\n	<li>Self in Society</li>\r\n	<li>Self &amp; Environment</li>\r\n	<li>Managing Change</li>\r\n	<li>Academic, Sport, &amp; Job Performance</li>\r\n	<li>Restorative Justice</li>\r\n	<li>Family Issues</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Â </strong></span>", "Rosemary Cantle Merritt", "", "inherit", "closed", "closed", "", "406-revision-v1", "", "", "2014-04-29 11:46:04", "2014-04-29 18:46:04", "", "406", "http://localhost:8888/TestSICPage/wordpress/406-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("832", "3", "2014-05-07 12:32:56", "2014-05-07 19:32:56", "This course is designed for those who wish to explore family systems for professional as well as personal purposes. This course will give you a better understanding of relationship patterns, what can go wrong and how you can contribute to greater health at home, at work, in your company or organization, and in the lives of others. ", "Family Systems Summer Course July 7-11, 2014", "At Home - at work - in your Company/Organization", "inherit", "closed", "closed", "", "family-systems-summer-course-july-7-11-2014", "", "", "2014-05-07 12:32:56", "2014-05-07 19:32:56", "", "833", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Family-Systems-Summer-Course-July-7-11-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("833", "3", "2014-05-07 12:40:13", "2014-05-07 19:40:13", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Family-Systems-Summer-Course-July-7-11-2014.pdf\">Family Systems Summer Course July 7-11, 2014</a>", "Family Systems Theory Summer Course (facilitator: Bill Cole)", "", "publish", "closed", "closed", "", "family-systems-theory-summer-course", "", "", "2014-06-18 08:20:58", "2014-06-18 15:20:58", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=833&#038;instance_id=", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("835", "3", "2014-05-08 14:08:02", "2014-05-08 21:08:02", "<strong><span style=\"color: #0000ff;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\"><img class=\"alignnone size-full wp-image-834\" alt=\"Laurie Truant\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\" width=\"191\" height=\"240\" /></a></span></strong>\r\n\r\n<strong><span style=\"color: #0000ff;\">Laurie Truant</span></strong>Â (M.A., RCC) specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\r\n\r\nLaurie has 19 years of experience providing individual and group therapy as well as psycho-educational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\r\n\r\nLaurie is married and has 2 adult step-children and 3 grandchildren. She enjoys hiking and boating with her husband as well as playing the piano and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2014-05-08 14:08:02", "2014-05-08 21:08:02", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("837", "3", "2014-06-17 10:37:43", "2014-06-17 17:37:43", "Join us at our Annual Fundraising event on <strong><span style=\"color: #000000;\">Saturday, November 22, 2014 from 6:30pm-9:00pm</span></strong><span style=\"color: #000000;\">Â which features Ms Louise Rose in concert, a silent auction and a dessert reception.Â </span><span style=\"color: #000000;\">Â </span>\r\n\r\nFollow this link to view the poster for this event:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/09/2014-Fundraising-poster-Nov-22-on-line-copy.docx\">Fundraising Concert with Ms. Louise Rose, Saturday, November 22, 2014</a>\r\n\r\n<strong>About Louise</strong>: A native of Norristown, Pennsylvania, Louise\'s capabilities and interests haven\'t always been restricted to making music. She has, among other things, been a police officer, a Baptist missionary and a sociology teacher. However, underscoring it all has been music. For Louise, music isÂ <em>the perfect metaphor for life. As such it permeates all that I do</em>. Her music touches lives in a positive way. You will drawn in by this powerful voice and the stories behind it. This event promises to be an evening to remember.\r\n\r\n[gravityform id=\"6\" name=\"2014 Fundraising Event, Nov 22, 2014\"]", "2014 Fundraising Concert, Silent Auction and Dessert Reception featuring LOUISE ROSE", "", "publish", "closed", "closed", "", "2014-fundraising-dessert-party", "", "", "2014-09-11 10:02:16", "2014-09-11 17:02:16", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=837&#038;instance_id=", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("838", "3", "2014-06-17 10:40:31", "2014-06-17 17:40:31", "<strong>Daphne Taylor (interim chair)Â </strong>\r\n\r\nI am a senior who has twice benefitted from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Meredith Brown (secretary)Â </strong>\r\n\r\n<strong>Sandra Scarth</strong>\r\n\r\n<strong>Sally Tuckey</strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-06-17 10:40:31", "2014-06-17 17:40:31", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("839", "3", "2014-06-18 08:25:06", "2014-06-18 15:25:06", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below for courses currently offered to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) *postponed</li>\r\n	<li>Marriage Preparation Workshop (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>The Ebb and Flow of Life:Â Understanding Grief, Loss and Life Transitions (March 2014)Â Â *new date TBA</li>\r\n	<li>The Twilight Journey:Â Understanding Grief and Loss as End of Life Approaches (April 2014)Â *new date TBA</li>\r\n	<li>Marriage PreparationÂ Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li>Family Systems Summer Intensive (July 7-11, 2014)</li>\r\n	<li>Selfcare for Caregivers *TBA (fall 2014)</li>\r\n	<li><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\">Pastoral Counselling Training</a> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. We will not share your contact information with any outside sources.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-06-18 08:25:06", "2014-06-18 15:25:06", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("840", "3", "2014-06-18 08:26:40", "2014-06-18 15:26:40", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014. Click on the links below for courses currently offered to download the pdf.\r\n<ul>\r\n	<li>Six Encounters With God (Wednesdays, February 5 to March 12, 2014) *postponed</li>\r\n	<li>Marriage Preparation Workshop (Saturday, February 15, 2014)</li>\r\n	<li>Caring Well For Our Aging Population (February 26, 2014)</li>\r\n	<li>The Ebb and Flow of Life:Â Understanding Grief, Loss and Life Transitions (March 2014)Â Â *new date TBA</li>\r\n	<li>The Twilight Journey:Â Understanding Grief and Loss as End of Life Approaches (April 2014)Â *new date TBA</li>\r\n	<li>Marriage PreparationÂ Workshop/Sessions (Saturday, June 7, 2014)</li>\r\n	<li><a title=\"Family Systems Theory Summer Intensive (7-11 July, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Family-Systems-Summer-Course-July-7-11-2014.pdf\" target=\"_blank\">Family Systems Theory Summer Intensive</a> Â (July 7-11, 2014)</li>\r\n	<li>Selfcare for Caregivers *TBA (fall 2014)</li>\r\n	<li><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\">Pastoral Counselling Training</a> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. We will not share your contact information with any outside sources.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-06-18 08:26:40", "2014-06-18 15:26:40", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("841", "3", "2014-06-19 10:30:53", "2014-06-19 17:30:53", "", "Board of Directors Package - General Information", "", "inherit", "closed", "closed", "", "board-of-directors-info-package-june-2014", "", "", "2014-06-19 10:30:53", "2014-06-19 17:30:53", "", "74", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("842", "3", "2014-06-19 10:39:06", "2014-06-19 17:39:06", "<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf\">Board of Directors Package - General Information</a></strong>\r\n\r\n<strong>Daphne Taylor (interim chair)Â </strong>\r\n\r\nI am a senior who has twice benefitted from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Meredith Brown (secretary)Â </strong>\r\n\r\n<strong>Sandra Scarth</strong>\r\n\r\n<strong>Sally Tuckey</strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-06-19 10:39:06", "2014-06-19 17:39:06", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("843", "3", "2014-06-19 10:40:02", "2014-06-19 17:40:02", "<strong>Click here Â to view theÂ <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf\">Board of Directors Package - General Information</a>.</strong>\r\n\r\n<strong>Daphne Taylor (interim chair)Â </strong>\r\n\r\nI am a senior who has twice benefitted from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Meredith Brown (secretary)Â </strong>\r\n\r\n<strong>Sandra Scarth</strong>\r\n\r\n<strong>Sally Tuckey</strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-06-19 10:40:02", "2014-06-19 17:40:02", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("844", "3", "2014-06-20 06:49:21", "2014-06-20 13:49:21", "<h3><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n<h3><strong><span style=\"color: #0000ff;\">Affordable Counselling Services</span></strong></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\">click here</a>Â to view our graduated fee scale whichÂ is based on your combined family income.\r\n\r\nTo <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a> to e-mail us at counselling@localhost.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-06-20 06:49:21", "2014-06-20 13:49:21", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("845", "3", "2014-06-20 06:51:20", "2014-06-20 13:51:20", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <strong><span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span></strong>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (information poster here)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong><span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-06-20 06:51:20", "2014-06-20 13:51:20", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("846", "3", "2014-06-20 06:57:12", "2014-06-20 13:57:12", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations.\r\n\r\n<span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Affordable Counselling Services</strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, click here to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\nToÂ <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span>Â call our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a>Â to e-mail us at counselling@localhost. More information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-06-20 06:57:12", "2014-06-20 13:57:12", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("847", "3", "2014-06-20 06:59:40", "2014-06-20 13:59:40", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations.\r\n\r\n<span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Affordable Counselling Services</strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\">click here</a> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\nToÂ <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span>Â call our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a>Â to e-mail us at counselling@localhost. More information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-06-20 06:59:40", "2014-06-20 13:59:40", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("848", "3", "2014-06-20 07:00:42", "2014-06-20 14:00:42", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â </strong><strong style=\"font-size: 18px;\"><a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>:Â </p><p>9:00am - 2:00pm Monday, Tuesday &amp; Thursday</p><p>9:00am - 4:00pm WednesdayÂ </p><p><strong>Counselling:</strong>Â </p><p>Counselling is by appointment onlyÂ Â <br /><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong></p><p>Weekend and Evening Times may be available upon request</p><p><strong>Our Mailing Address:</strong><br />3821A Cedar Hill Cross Road<br />Victoria, BC V8P 2M6</p><p>Â </p>		\n			<a href=\"https://www.facebook.com/southislandcentre/\">\n			</a>\n			<h6>Find Us On Facebook</h6>		\n			<a href=\"https://twitter.com/South_Island_C\">\n			</a>\n			<h6>Follow Us On Twitter</h6>		\n			<a href=\"http://southislandcentre.blogspot.ca/\">\n			</a>\n			<h6>Check Out Our Blog</h6>", "Contact Us", "", "publish", "closed", "closed", "", "general-contact-information", "", "", "2018-06-13 08:41:32", "2018-06-13 15:41:32", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?page_id=848", "4", "page", "", "0");
INSERT INTO `wp_posts` VALUES("849", "3", "2014-06-20 07:00:42", "2014-06-20 14:00:42", "", "General contact information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-06-20 07:00:42", "2014-06-20 14:00:42", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("850", "3", "2014-06-20 07:01:08", "2014-06-20 14:01:08", "<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n&nbsp;", "General contact information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-06-20 07:01:08", "2014-06-20 14:01:08", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("851", "3", "2014-06-20 07:03:46", "2014-06-20 14:03:46", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne St, away from UVic). <strong>Parking is free.</strong>\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"South Island Centre location (MapQuest)\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill/Cedar Hill Cross</strong>Â <strong>Roads</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location - Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-06-20 07:03:46", "2014-06-20 14:03:46", "", "284", "http://localhost:8888/TestSICPage/wordpress/284-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("852", "3", "2014-06-20 07:04:34", "2014-06-20 14:04:34", "<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-06-20 07:04:34", "2014-06-20 14:04:34", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("855", "3", "2014-06-20 07:07:35", "2014-06-20 14:07:35", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Event Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n<h3><span style=\"color: #0000ff;\">How to register for a course:Â </span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3><span style=\"color: #0000ff;\"><strong>Payment Information and Options</strong></span></h3>\r\n<strong></strong>At the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\">payment options</span></strong>:\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-06-20 07:07:35", "2014-06-20 14:07:35", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("857", "3", "2014-06-23 09:48:39", "2014-06-23 16:48:39", "", "Marriage Preparation - general information", "", "inherit", "closed", "closed", "", "general-marriage-prep-poster-2014", "", "", "2014-06-23 09:48:39", "2014-06-23 16:48:39", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/General-Marriage-Prep-poster-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("858", "3", "2014-06-23 09:52:11", "2014-06-23 16:52:11", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <strong><span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span></strong>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Marriage Preparation - General Information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong><span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-06-23 09:52:11", "2014-06-23 16:52:11", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("869", "3", "2014-06-25 09:39:04", "2014-06-25 16:39:04", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n					<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>				\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n					<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>				\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n					<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "publish", "closed", "closed", "", "testimonials", "", "", "2018-06-13 08:28:41", "2018-06-13 15:28:41", "", "15495", "http://localhost:8888/TestSICPage/wordpress/?page_id=869", "17", "page", "", "0");
INSERT INTO `wp_posts` VALUES("870", "3", "2014-06-25 09:39:04", "2014-06-25 16:39:04", "", "Testimonials ", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2014-06-25 09:39:04", "2014-06-25 16:39:04", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("871", "3", "2014-06-25 09:40:21", "2014-06-25 16:40:21", "Read what a participant in the CareerChoice Program had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;", "Testimonials ", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2014-06-25 09:40:21", "2014-06-25 16:40:21", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("11896", "2", "2013-09-04 16:56:39", "2013-09-04 16:56:39", "Lorem aute irure dolor adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna lorem nulla.\n\n[dt_button size=\"link\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button]", "Regular updates", "", "publish", "closed", "closed", "", "quick", "", "", "2013-09-04 16:56:39", "2013-09-04 16:56:39", "", "0", "http://the7.dream-demo.com/?post_type=dt_benefits&amp;p=11896", "0", "dt_benefits", "", "0");
INSERT INTO `wp_posts` VALUES("11897", "2", "2013-09-04 16:57:49", "2013-09-04 16:57:49", "Integer vitae ante vitae mauris. Lorem ipsum massa sed turpis aliquam eleifend id pulvinar metus sed turpis.\n\n[dt_button size=\"link\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button]", "Fully Responsive", "", "publish", "closed", "closed", "", "fully-responsive", "", "", "2013-09-04 16:57:49", "2013-09-04 16:57:49", "", "0", "http://the7.dream-demo.com/?post_type=dt_benefits&amp;p=11897", "0", "dt_benefits", "", "0");
INSERT INTO `wp_posts` VALUES("11898", "2", "2013-09-04 16:58:28", "2013-09-04 16:58:28", "Gaute irure dolor adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna lorem nulla amet.\n\n[dt_button size=\"link\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button]", "Customizible Design", "", "publish", "closed", "closed", "", "customizible-design", "", "", "2013-09-04 16:58:28", "2013-09-04 16:58:28", "", "0", "http://the7.dream-demo.com/?post_type=dt_benefits&amp;p=11898", "0", "dt_benefits", "", "0");
INSERT INTO `wp_posts` VALUES("11899", "2", "2013-09-04 17:00:01", "2013-09-04 17:00:01", "Amet null vitae ante vitae mauris. Lorem ipsum massa sed turpis aliquam eleifend id pulvinar metus sed lorem.\n\n[dt_button size=\"link\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button]", "SEO-Optimised", "", "publish", "closed", "closed", "", "seo-optimised", "", "", "2013-09-04 17:00:01", "2013-09-04 17:00:01", "", "0", "http://the7.dream-demo.com/?post_type=dt_benefits&amp;p=11899", "0", "dt_benefits", "", "0");
INSERT INTO `wp_posts` VALUES("11900", "2", "2013-09-04 17:01:02", "2013-09-04 17:01:02", "Glavrida amos aute irure dolor adipisicing elit, sed do eiusmod tempor ut labore et dolore magna lorem nulla.\n\n[dt_button size=\"link\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button]", "Friendly Support", "", "publish", "closed", "closed", "", "friendly-support", "", "", "2013-09-04 17:01:02", "2013-09-04 17:01:02", "", "0", "http://the7.dream-demo.com/?post_type=dt_benefits&amp;p=11900", "0", "dt_benefits", "", "0");
INSERT INTO `wp_posts` VALUES("12649", "2", "2013-09-11 08:23:03", "2013-09-11 08:23:03", "Sitios amet null vitae ante vitae mauris. Lorem ipsum massa sed turpis aliquam eleifend id fomir metus sed.\n\n[dt_button size=\"link\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button]", "Visual Layout Builder", "", "publish", "closed", "closed", "", "easy-to-use-visual-layout-builder", "", "", "2013-09-11 08:23:03", "2013-09-11 08:23:03", "", "0", "http://the7.dream-demo.com/?post_type=dt_benefits&amp;p=12649", "0", "dt_benefits", "", "0");
INSERT INTO `wp_posts` VALUES("12751", "2", "2013-10-16 15:56:36", "2013-10-16 15:56:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][dt_benefits_vc columns=\"4\" style=\"1\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"4\" orderby=\"date\" order=\"desc\" animation=\"scale\" category=\"no-captions,captions1\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]Turpis venenatis at laoreet. Etiam lorem nulla fuviverra minim sed metus egestas sapien conseto actetuer, ac etiam amet bibendum lorem ipsum dolor amet cras posuere pede placerat, velit neque felisios. Dolor ut mollis elit et vestibulum mattis integer aenean nulla, in vitae id augue vitae amet minim.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"45\" padding_bottom=\"30\" margin_top=\"25\" margin_bottom=\"45\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Core Features of The7</h2>\n<h4 style=\"text-align: center;\">Super Powerful &amp; Easy to Use Theme</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_gap height=\"5\"][vc_single_image image=\"12674\" css_animation=\"left-to-right\" img_link_target=\"_self\" img_size=\"580x307\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.[dt_gap height=\"20\" /]\n\n[dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]Exclusive slideshows[/dt_list_item][dt_list_item image=\"\"]Multiple header layouts[/dt_list_item][dt_list_item image=\"\"]Premium-class support for free[/dt_list_item][dt_list_item image=\"\"]100% Mobile tested[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]6 ready-made skins[/dt_list_item][dt_list_item image=\"\"]Compatible with popular plugins[/dt_list_item][dt_list_item image=\"\"]16 custom widgets[/dt_list_item][dt_list_item image=\"\"]40+ visual shortcodes[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][dt_gap height=\"15\"][dt_button target_blank=\"false\" size=\"small\" animation=\"scale\" link=\"http://the7.dream-demo.com/features/full-features-list/\"]View All Features[/dt_button][dt_gap height=\"20\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Clients &amp; Testimonials</h2>\n<h4 style=\"text-align: center;\">More then 20 000 of happy customers</h4>\n[/vc_column_text][dt_gap height=\"45\"][/vc_column][/vc_row][vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/2\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/2\"][dt_logos columns=\"3\" dividers=\"true\" number=\"6\" orderby=\"date\" order=\"asc\" animation=\"scale\"][dt_gap height=\"45\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"45\" padding_bottom=\"30\" margin_top=\"10\" margin_bottom=\"0\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Featured Portfolio Projects</h2>\n<h4 style=\"text-align: center;\">Best &amp; Most Popular of Our Works</h4>\n[/vc_column_text][dt_gap height=\"33\"][vc_column_text]\n<p style=\"text-align: center;\">Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas lorem.\nNulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames turpis egestas![/vc_column_text][dt_gap height=\"40\"][dt_portfolio_slider height=\"320\" width=\"320\" meta_info=\"false\" margin_top=\"0\" margin_bottom=\"-29\" number=\"10\" orderby=\"date\" order=\"desc\" category=\"03-portfolio,07-portfolio,05-portfolio,projects-1,projects-2,projects-3,projects-4\" appearance=\"from_bottom\" under_image_buttons=\"under_image\" hover_animation=\"direction_aware\" hover_bg_color=\"dark\" hover_content_visibility=\"on_hover\"][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"45\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text]</p>\n\n<h2 style=\"text-align: center;\">Our Skills &amp; Services</h2>\n<h4 style=\"text-align: center;\">Who We Are &amp; What We Do</h4>\n[/vc_column_text][dt_gap height=\"42\"][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\n<h4>What we are good at</h4>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit amet urabitur quis lacus at neque interdum tempor.[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_progress_bars show_percentage=\"true\"][dt_progress_bar title=\"Web design\" color=\"\" percentage=\"90\" /][dt_progress_bar title=\"Photography\" color=\"\" percentage=\"75\" /][dt_progress_bar title=\"Marketing &amp; PR\" color=\"\" percentage=\"60\" /][dt_progress_bar title=\"Consulting\" color=\"\" percentage=\"45\" /][/dt_progress_bars][/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/2\"][dt_gap height=\"2\"][vc_tabs style=\"tab-style-one\" interval=\"0\"][vc_tab title=\"Web design\" tab_id=\"1378818650212-2-240ee-02b5\"][vc_column_text][dt_fancy_image style=\"1\" lightbox=\"0\" align=\"left\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"188\" image_alt=\"The7 - Premium WordPress Theme\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\"][/dt_fancy_image]Lorem ipsum dolor sit amet, consectetur adipiscing elit. CurabiturÂ [dt_tooltip title=\"neque interdum\"]Maecenas enim velit. Maecenas eu metus vel leo placerat cursus.[/dt_tooltip] tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit. Maecenas eu metus vel leo placerat cursus. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla lorem ipsum porta lorem ipsum.Â Glavrida dolor ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][vc_tab title=\"Programming\" tab_id=\"1378818268-1-5540ee-02b5\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Fusce nec ipsum ac mauris imperdiet luctus sed vitae ligula.[dt_gap height=\"20\" /]\n\n[dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]Exclusive slideshows[/dt_list_item][dt_list_item image=\"\"]Multiple header layouts[/dt_list_item][dt_list_item image=\"\"]Premium-class support for free[/dt_list_item][dt_list_item image=\"\"]100% Mobile tested[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]6 ready-made skins[/dt_list_item][dt_list_item image=\"\"]Compatible with popular plugins[/dt_list_item][dt_list_item image=\"\"]25 custom widgets[/dt_list_item][dt_list_item image=\"\"]40+ visual shortcodes[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][/vc_tab][vc_tab title=\"Photography\" tab_id=\"1378818268-2-3540ee-02b5\"][vc_column_text][dt_gap height=\"5\" /]\n\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12884,12882,12880,12879,12885,12898,12896\"]\n\n[dt_gap height=\"15\" /]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][vc_tab title=\"SEO\" tab_id=\"1378819835493-4-540ee-02b5\"][vc_column_text][dt_fancy_image style=\"1\" lightbox=\"0\" align=\"left\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"188\" image_alt=\"The7 - Premium WordPress Theme\" image=\"http://the7.dream-demo.com/dummy/wp-content/uploads/2013/08/dt-015.jpg\"][/dt_fancy_image]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur dolor amet glavrida tellus, quis lorem ipsum tooltip luctus ligula.\n\nCurabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus. Nullam rutrum velit eget quam [dt_highlight color=\"blue\"]pretium amet vehicula[/dt_highlight] adipiscing elit. Maecenas enim velit. Maecenas eu metus vel leo placerat cursus. Curabitur quis rhoncus tellus, quisÂ [dt_highlight color=\"berry\"]lorem ipsum dolor[/dt_highlight] luctus ligula. Curabitur laoreet fringilla lorem ipsum porta. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][/vc_tabs][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h4>Get in touch!</h4>\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,message\" message_height=\"5\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"small\"][/vc_column][/vc_row]", "Layer Slider", "", "publish", "closed", "closed", "", "layer-fullwidth", "", "", "2013-10-16 15:56:36", "2013-10-16 15:56:36", "", "12958", "http://the7.dream-demo.com/dummy/?page_id=12751", "912", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12753", "2", "2013-10-21 09:23:06", "2013-10-21 09:23:06", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac eros enim. Mauris eu purus id risus faucibus scelerisque. Sed aliquam dolor metus, vitae porta diam laoreet eget. Aenean condimentum placerat eros, vestibulum dignissim nibh varius vitae. Donec sit amet eros euismod metus porttitor sagittis et porttitor tortor. Phasellus malesuada tincidunt felis quis facilisis. Cras eu leo pharetra nisi accumsan consectetur et eu leo. Curabitur viverra leo ultricies magna varius congue.\n\nCurabitur eleifend, dolor sed ultricies porta, elit nulla blandit enim, eu placerat odio est et leo. Donec nisi augue, eleifend vel velit quis, molestie tincidunt turpis. Sed eleifend nibh magna, vitae sodales lectus pulvinar ac. Sed sem mi, adipiscing gravida aliquet interdum, viverra nec diam. Mauris vel justo id nisi bibendum mollis dapibus nec diam. Sed laoreet aliquet erat, eget rhoncus lectus. Mauris suscipit convallis orci, non egestas nulla vehicula a. Etiam eget laoreet sem. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Morbi euismod arcu in tellus bibendum volutpat. Quisque mauris nisl, luctus quis convallis ac, viverra a ipsum. Curabitur justo velit, tristique vel interdum at, pulvinar ac arcu. Cras tincidunt ut nisl vitae condimentum. Nam lacus tellus, dapibus non congue a, ultrices eget mauris. Pellentesque tempus nunc metus, ac ullamcorper augue eleifend quis.\n\nMaecenas posuere elementum dolor, eget condimentum tortor ornare et. Etiam iaculis tempor neque, et imperdiet est mollis id. Mauris sollicitudin et erat et bibendum. Suspendisse mollis, urna vel condimentum feugiat, turpis diam molestie quam, lacinia interdum magna nibh et erat. Nam interdum metus id odio sodales aliquam. Praesent lobortis, magna vitae placerat lacinia, massa urna vehicula quam, vitae venenatis lectus velit id odio. Quisque vel augue in enim accumsan suscipit quis in eros. Fusce laoreet laoreet faucibus. Sed vitae eros non risus hendrerit posuere. Cras bibendum velit quis lorem ultricies, quis porta ligula dignissim. Suspendisse potenti. Pellentesque hendrerit accumsan tortor, et congue dui imperdiet at. Donec consectetur hendrerit fringilla. Cras nibh justo, scelerisque vitae dui ut, faucibus venenatis erat. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\n\nSuspendisse ultricies, enim id euismod placerat, nulla arcu egestas neque, vel iaculis tortor dolor in mi. Fusce luctus neque et facilisis tincidunt. Integer semper non eros a imperdiet. Nunc vel venenatis orci, a consequat quam. Aenean eu risus nec metus feugiat laoreet vitae vitae diam. Etiam et eros lacinia, adipiscing diam in, venenatis dui. Aenean ante sem, sagittis vel scelerisque in, porta vel augue. Suspendisse potenti. Nunc aliquam turpis faucibus leo pellentesque, in laoreet mi euismod. Suspendisse consequat aliquam ante, in cursus ante laoreet quis. Proin mattis turpis sit amet posuere ornare. Nullam sapien mi, scelerisque eu elit ac, mattis iaculis sem.\n\nIn hac habitasse platea dictumst. Nam tristique augue ut nulla interdum, vitae pulvinar lorem convallis. Nulla id metus risus. Praesent neque diam, consectetur tristique malesuada sit amet, congue nec risus. Suspendisse potenti. Integer faucibus imperdiet ipsum. Aenean placerat diam mauris, vel viverra nulla hendrerit eget. Sed sit amet nisi quis metus iaculis condimentum quis pretium tortor. Vestibulum tristique vehicula enim, quis commodo mi.", "Pages", "", "publish", "closed", "closed", "", "pages", "", "", "2013-10-21 09:23:06", "2013-10-21 09:23:06", "", "0", "http://the7.dream-demo.com/dummy/?page_id=12753", "109", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12754", "2", "2013-10-21 09:49:52", "2013-10-21 09:49:52", "[vc_row][vc_column width=\"1/2\"][vc_column_text]\n<h3>We are usually asked about:</h3>\n[/vc_column_text][dt_gap height=\"25\"][vc_accordion active_tab=\"false\" collapsible=\"yes\"][vc_accordion_tab title=\"How to update the theme?\"][vc_column_text]All our theme updates are available in your ThemeForest.com profile for free: simply redownload it in â€œDownloadsâ€ tab.\n\nAt the first step we advise you to rename your current theme folder to something like: â€¦/wp-content/themes/dt-THEME_NAME-old/. It will help you to save custom changes of the template.\n\nAt the next stage you need to install the theme in the usual way.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to make the theme load faster?\"][vc_column_text]\n<ol>\n	<li>Select â€œStatic CSSâ€ option in Theme Options &gt;&gt; Misc (for Nimble, PressMate and PurePress themes).</li>\n	<li>InstallÂ <a href=\"http://dream-dev.net/support/knowledgebase/what-cache-plugin-to-use/\" target=\"_blank\">cache plugin</a>.</li>\n	<li>If possible, decrease size of your images.</li>\n	<li>Deactivate needless plugins.</li>\n	<li>Decrease number of items (portfolios, albums, catalogs, photos) per page.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What cache plugin do you suggest to use?\"][vc_column_text]We would like to advise you to installÂ <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a>Â plugin.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How many pages with slideshow am I able to create?\"][vc_column_text]You are able to create as many slideshows as you want! Slideshow can be enabled for any page template or post.\n\nRemember you can choose which one of them will be set as the Homepage one by following: Dashboard &gt;&gt; Settings &gt;&gt; Reading &gt;&gt; Front page displays &gt;&gt; A static page (select below) &gt;&gt; Front page[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Blog page ignores custom page title and settings\"][vc_column_text]Simply do not select this page in Settings &gt;&gt; Reading as a post page. Regular page with â€œBlogâ€ template displays a title from the Title field.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where i can find benefits icons?\"][vc_column_text]There are separate folder in your theme download package with all png icons used on our demo. You can also find plenty of other free icons here:Â <a title=\"www.iconmonstr.com\" href=\"http://iconmonstr.com/\" target=\"_blank\">www.iconmonstr.com</a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to enable MonsterID?\"][vc_column_text]\n<ol>\n	<li>open â€œfunctions PHPâ€</li>\n	<li>navigate to line 765</li>\n	<li>change the â€œdt_validate_gravatar( $comment-&gt;comment_author_email )â€ to â€œ1 || dt_validate_gravatar( $comment-&gt;comment_author_email )â€</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where can I find full demo content?\"][vc_column_text]This is dummy for all demo: https://www.dropbox.com/s/zgg0dbec15n88ep/the7.wordpress.2013-09-19.xml\n\nNote 2 things:\n<ol>\n	<li>Itâ€™s huge, so we cannot guarantee youâ€™ll be able to install it.</li>\n	<li>Images on demo are copyrighted and you cannot use them without purchasing proper licenses.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What about themes autoupdate?\"][vc_column_text]At this moment themes from ThemeForest cannot update automatically like themes from WordPress library. (Well there is an API and even a ready-made plugin for thatâ€¦ but itâ€™s still very raw and buggy.) But we are working hard to implement autoupdate feature in one of the nearest updates.\n\nSo in order to update theme, you need to:\n<ol>\n	<li>backup your current theme folder;</li>\n	<li>rename/delete older version of theme;</li>\n	<li>install newest version of theme.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to disable breadcrumbs\"][vc_column_text]If you want to hide breadcrumbs, please:\n<ul>\n	<li>make sure you have the most recent theme version:Â <a href=\"http://support.dream-theme.com/knowledgebase/update-theme/\" target=\"_blank\" rel=\"nofollow\">http://support.dream-theme.com/knowledgebase/update-theme/</a>;</li>\n	<li>follow Theme Options &gt;&gt; General &gt;&gt; Title &gt;&gt; Breadcrumbs.</li>\n</ul>\n[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"40\"][vc_column_text]\n<h3>Didn\'t find the answer?</h3>\n[/vc_column_text][dt_gap height=\"25\"][vc_column_text]Morbi ut mauris non ligula euismod dignissim ac ut orci. Nulla sodales tempus turpis, non interdum orci gravida eget. Nam suscipit et neque at pulvinar.[/vc_column_text][dt_gap height=\"15\"][dt_contact_form fields=\"name,email,message\" message_height=\"5\" required=\"name,email,message\" button_title=\"Send question\" button_size=\"medium\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"5\" inner_padding=\"4\" min_height=\"220\" animation=\"fade\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-017.jpg\" link=\"http://support.dream-theme.com\"]<h5 style=\"text-align: center;\">SUPPORT PORTAL</h5>\n<p style=\"text-align: center;\">trouble shooter &amp; support tickets</p>[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"5\" inner_padding=\"4\" min_height=\"220\" animation=\"fade\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-022.jpg\" link=\"http://guide.dream-theme.com/gen2/\"]<h5 style=\"text-align: center;\">ONLINE MANUAL</h5>\n<p style=\"text-align: center;\">up to date, helpful &amp; easy to use</p>[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"5\" inner_padding=\"4\" min_height=\"220\" animation=\"fade\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-023.jpg\" link=\"http://www.screenr.com/user/dreamtheme\"]<h5 style=\"text-align: center;\">SCREENCASTS</h5>\n<p style=\"text-align: center;\">short educational videos</p>[/dt_banner][/vc_column_inner][/vc_row_inner][dt_gap height=\"15\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo.\n\nSed lectus augue, pretium vitae lectus vitae, posuere fringilla ligula. Morbi ut mauris non ligula euismod dignissim ac ut orci. Nulla sodales tempus turpis, non interdum orci gravida eget. Nam suscipit et neque at pulvinar. Phasellus et viverra dolor. Integer eleifend vehicula quam nec pulvinar. Sed sed eros lobortis, ultrices enim id, semper justo.[/vc_column_text][dt_gap height=\"25\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"5\" inner_padding=\"4\" min_height=\"100\" animation=\"fade\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-006.jpg\" link=\"http://the7.dream-demo.com/features-2/what-buyers-say-about-the7/\"][dt_gap height=\"5\" /]\n<h5 style=\"text-align: center;\">READ BUYER REVIEWS</h5>\n<p style=\"text-align: center;\">don\'t forget to write about your own experience too</p>[/dt_banner][dt_gap height=\"15\"][vc_column_text]Phasellus nec neque id odio dignissim fringilla quis nec magna. Aliquam lobortis velit molestie, tincidunt mi quis, condimentum nulla. Sed a cursus arcu, in malesuada purus. Suspendisse tincidunt sem non mauris ornare, id faucibus magna ullamcorper.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros.\n\nSed lectus augue, pretium vitae lectus vitae, posuere fringilla ligula. Morbi ut mauris non ligula euismod dignissim ac ut orci. Nulla sodales tempus turpis, non interdum orci gravida eget. Nam suscipit et neque at pulvinar. Phasellus et viverra dolor. Integer eleifend vehicula quam nec pulvinar.[/vc_column_text][/vc_column][/vc_row]", "F.A.Q. #1", "", "publish", "closed", "closed", "", "f-a-q", "", "", "2013-10-21 09:49:52", "2013-10-21 09:49:52", "", "12753", "http://the7.dream-demo.com/dummy/?page_id=12754", "122", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12755", "2", "2013-10-21 09:53:40", "2013-10-21 09:53:40", "Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo. Phasellus nec neque id odio dignissim fringilla quis nec magna. Aliquam lobortis velit molestie, tincidunt mi quis, condimentum nulla. Sed a cursus arcu, in malesuada purus. Suspendisse tincidunt sem non mauris ornare, id faucibus magna ullamcorper.\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo.\n\nSed lectus augue, pretium vitae lectus vitae, posuere fringilla ligula. Morbi ut mauris non ligula euismod dignissim ac ut orci. Nulla sodales tempus turpis, non interdum orci gravida eget. Nam suscipit et neque at pulvinar. Phasellus et viverra dolor. Integer eleifend vehicula quam nec pulvinar. Sed sed eros lobortis, ultrices enim id, semper justo.\n\nVestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo.", "Page layouts", "", "publish", "closed", "closed", "", "page-layouts", "", "", "2013-10-21 09:53:40", "2013-10-21 09:53:40", "", "12753", "http://the7.dream-demo.com/dummy/?page_id=12755", "712", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12756", "2", "2013-10-21 09:54:52", "2013-10-21 09:54:52", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"4\" min_height=\"150\" animation=\"fade\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d16.jpg\" link=\"http://support.dream-theme.com\"]\n<h5 style=\"text-align: center;\">SUPPORT PORTAL</h5>\n<p style=\"text-align: center;\">trouble shooter &amp; support tickets</p>\n[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"4\" min_height=\"150\" animation=\"fade\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d18.jpg\" link=\"http://guide.dream-theme.com/gen2/\"]\n<h5 style=\"text-align: center;\">ONLINE MANUAL</h5>\n<p style=\"text-align: center;\">helpful &amp; easy to use</p>\n[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"4\" min_height=\"150\" animation=\"fade\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d17.jpg\" link=\"http://www.screenr.com/user/dreamtheme\"]\n<h5 style=\"text-align: center;\">SCREENCASTS</h5>\n<p style=\"text-align: center;\">short educational videos</p>\n[/dt_banner][/vc_column_inner][/vc_row_inner][dt_gap height=\"15\"][vc_column_text]Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo.Â Phasellus nec neque id odio dignissim fringilla quis nec magna. Aliquam lobortis velit molestie, tincidunt mi quis, condimentum nulla. Sed a cursus arcu, in malesuada purus. Suspendisse tincidunt sem non mauris ornare, id faucibus magna ullamcorper.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo.\n\nSed lectus augue, pretium vitae lectus vitae, posuere fringilla ligula. Morbi ut mauris non ligula euismod dignissim ac ut orci. Nulla sodales tempus turpis, non interdum orci gravida eget. Nam suscipit et neque at pulvinar. Phasellus et viverra dolor. Integer eleifend vehicula quam nec pulvinar. Sed sed eros lobortis, ultrices enim id, semper justo.\n\nVestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo.[/vc_column_text][dt_gap height=\"25\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"4\" min_height=\"100\" animation=\"fade\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d23.jpg\" link=\"http://the7.dream-demo.com/features-2/what-buyers-say-about-the7/\"][dt_gap height=\"5\" /]\n<h5 style=\"text-align: center;\">READ BUYER REVIEWS</h5>\n<p style=\"text-align: center;\">don\'t forget to write about your own experience too</p>\n[/dt_banner][dt_gap height=\"15\"][vc_column_text]Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo.Â Phasellus nec neque id odio dignissim fringilla quis nec magna. Aliquam lobortis velit molestie, tincidunt mi quis, condimentum nulla. Sed a cursus arcu, in malesuada purus. Suspendisse tincidunt sem non mauris ornare, id faucibus magna ullamcorper.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum egestas orci vel felis volutpat rutrum placerat a lectus. Sed gravida accumsan nulla vitae mattis. In ac nibh eget massa auctor congue eget a eros. Donec tempus hendrerit molestie. Cras urna felis, lacinia vitae porttitor convallis, vehicula in odio. Donec eget diam purus. Sed id auctor metus. Phasellus in pulvinar leo.\n\nSed lectus augue, pretium vitae lectus vitae, posuere fringilla ligula. Morbi ut mauris non ligula euismod dignissim ac ut orci. Nulla sodales tempus turpis, non interdum orci gravida eget. Nam suscipit et neque at pulvinar. Phasellus et viverra dolor. Integer eleifend vehicula quam nec pulvinar. Sed sed eros lobortis, ultrices enim id, semper justo.\n\nSed lectus augue, pretium vitae lectus vitae, posuere fringilla ligula. Morbi ut mauris non ligula euismod dignissim ac ut orci. Nulla sodales tempus turpis, non interdum orci gravida eget. Nam suscipit et neque at pulvinar. Phasellus et viverra dolor. Integer eleifend vehicula quam nec pulvinar.[/vc_column_text][/vc_column][/vc_row]", "Right sidebar", "", "publish", "closed", "closed", "", "right-sidebar", "", "", "2013-10-21 09:54:52", "2013-10-21 09:54:52", "", "12755", "http://the7.dream-demo.com/dummy/?page_id=12756", "18", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12757", "2", "2013-10-21 09:56:49", "2013-10-21 09:56:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"2\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"200\" animation=\"top\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq3.jpg\"]\n<h3 style=\"text-align: center;\">Unlimited Widget Areas via Theme Options</h3>\n<p style=\"text-align: center;\">Use them for any page &amp; any sidebar</p>\n\n[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"200\" animation=\"top\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq4.jpg\"]\n<h3 style=\"text-align: center;\">Use Bulk Actions to Change Sidebars Quickly</h3>\n<p style=\"text-align: center;\">Change sidebars on multiple pages at a time</p>\n\n[/dt_banner][/vc_column_inner][/vc_row_inner][dt_gap height=\"20\"][vc_column_text]Suspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo.Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo.\n\nDuis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.Â [dt_quote type=\"pullquote\" layout=\"left\" font_size=\"normal\" animation=\"top\" size=\"3\"]Cras aliquamvelit eget metus faucibus dolor mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed.[/dt_quote]Suspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam.Â Suspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo.Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo.Â [dt_quote type=\"pullquote\" layout=\"right\" font_size=\"normal\" animation=\"top\" size=\"3\"]Cras aliquamvelit eget metus faucibus dolor mattis. Nunc convallis glavris sem felis, sit amet interdum diam auctor sed.[/dt_quote]Dvelit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.Â Nunc convallis sem felis, sit amet interdum diam auctor sed. Suspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non.Â Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero quis quam vitae, congue iaculis leo.[/vc_column_text][dt_gap height=\"40\"][dt_logos columns=\"4\" dividers=\"true\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\"][dt_gap height=\"40\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla sodales quis tortor eget accumsan.\n\nSuspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo. Quisque at erat vulputate, dignissim lacus at, posuere massa. Vivamus consectetur, nibh et suscipit laoreet, diam velit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.\n\nPraesent vel fringilla arcu. Praesent metus lacus, fringilla in pharetra vitae, sagittis eget metus. Cras at auctor est. Pellentesque non pellentesque sapien, ac rhoncus mauris. Proin bibendum nunc est, id blandit enim venenatis non. Mauris commodo sodales odio id elementum. Nam malesuada cursus purus, id aliquet lectus luctus eu. Quisque lobortis convallis dui sit amet laoreet.\n\nVestibulum posuere elementum purus, in ullamcorper massa posuere id. Nam tristique ornare enim, sed lobortis erat consectetur sed. Fusce risus magna, dignissim gravida suscipit eu, cursus a risus. Aliquam egestas metus a tortor gravida, non congue tortor tempus. Aliquam ullamcorper, lacus ut vulputate facilisis, magna nibh pellentesque sem, vitae accumsan ligula lacus semper dui. Cras sit amet interdum erat, sed tincidunt orci.\n\nAdipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo. Quisque at erat vulputate, dignissim lacus at, posuere massa. Vivamus consectetur, nibh et suscipit laoreet, diam velit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.\n\nPraesent vel fringilla arcu. Praesent metus lacus, fringilla in pharetra vitae, sagittis eget metus. Cras at auctor est. Pellentesque non pellentesque sapien, ac rhoncus mauris. Proin bibendum nunc est, id blandit enim venenatis non. Mauris commodo sodales odio id elementum. Nam malesuada cursus purus, id aliquet lectus luctus eu. Quisque lobortis convallis dui sit amet laoreet.[/vc_column_text][/vc_column][/vc_row]", "Left sidebar", "", "publish", "closed", "closed", "", "left-sidebar", "", "", "2013-10-21 09:56:49", "2013-10-21 09:56:49", "", "12755", "http://the7.dream-demo.com/dummy/?page_id=12757", "30", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12758", "2", "2013-10-21 09:59:43", "2013-10-21 09:59:43", "[vc_row][vc_column width=\"1/4\"][vc_widget_sidebar show_bg=\"true\" sidebar_id=\"sidebar_20\"][/vc_column][vc_column width=\"1/2\"][dt_gap height=\"8\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"150\" animation=\"none\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq4.jpg\"]\n<h3 style=\"text-align: center;\">Widgetised Sidebars via Visual Composer</h3>\n<h4 style=\"text-align: center;\">Any number of sidebars. Any sidebar width. Any layout.</h4>\n[/dt_banner][dt_gap height=\"15\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla sodales quis tortor eget accumsan. Integer accumsan, ante sed tempus malesuada, quam lorem dignissim magna, sit amet ultrices nisi elit nec lorem. Sed bibendum est a lacus ornare, in interdum quam lacinia. Ut vulputate arcu mauris, ut convallis ipsum viverra sed.\n\nDuis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.\n\nSuspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo. Quisque at erat vulputate, dignissim lacus at, posuere massa. Vivamus consectetur, nibh et suscipit laoreet, diam velit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.[/vc_column_text][dt_gap height=\"30\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"150\" animation=\"none\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq5.jpg\"]\n<h3 style=\"text-align: center;\">Unlimited Widget Areas via Theme Options</h3>\n<h4 style=\"text-align: center;\">Use them where you want: any page &amp; any sidebar</h4>\n[/dt_banner][dt_gap height=\"15\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla sodales quis tortor eget accumsan. Integer accumsan, ante sed tempus malesuada, quam lorem dignissim magna, sit amet ultrices nisi elit nec lorem. Sed bibendum est a lacus ornare, in interdum quam lacinia. Ut vulputate arcu mauris, ut convallis ipsum viverra sed.\n\nSuspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo. Quisque at erat vulputate, dignissim lacus at, posuere massa. Vivamus consectetur, nibh et suscipit laoreet, diam velit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.\n\nPraesent vel fringilla arcu. Praesent metus lacus, fringilla in pharetra vitae, sagittis eget metus. Cras at auctor est. Pellentesque non pellentesque sapien, ac rhoncus mauris. Proin bibendum nunc est, id blandit enim venenatis non. Mauris commodo sodales odio id elementum. Nam malesuada cursus purus, id aliquet lectus luctus eu. Quisque lobortis convallis dui sit amet laoreet.\n\nVestibulum posuere elementum purus, in ullamcorper massa posuere id. Nam tristique ornare enim, sed lobortis erat consectetur sed. Fusce risus magna, dignissim gravida suscipit eu, cursus a risus. Aliquam egestas metus a tortor gravida, non congue tortor tempus. Aliquam ullamcorper, lacus ut vulputate facilisis, magna nibh pellentesque sem, vitae accumsan ligula lacus semper dui. Cras sit amet interdum erat, sed tincidunt orci. Integer tempor ante at rhoncus fringilla. Morbi nec pretium lacus.\n\nUt sit amet molestie libero, quis euismod metus. Praesent nec nunc bibendum, consectetur sem ut, semper magna. Etiam ut massa lacus. Aliquam cursus magna mollis pellentesque facilisis. Nunc ligula neque, imperdiet a molestie consequat, lacinia et quam. Praesent vel facilisis urna, ac laoreet nulla. Suspendisse eu nunc enim. Ut fringilla risus sit amet lacus scelerisque cursus.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_widget_sidebar show_bg=\"true\" sidebar_id=\"sidebar_19\"][/vc_column][/vc_row]", "Two sidebars", "", "publish", "closed", "closed", "", "two-sidebars", "", "", "2013-10-21 09:59:43", "2013-10-21 09:59:43", "", "12755", "http://the7.dream-demo.com/dummy/?page_id=12758", "41", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12759", "2", "2013-10-21 10:01:52", "2013-10-21 10:01:52", "[vc_row][vc_column width=\"1/2\"][dt_gap height=\"8\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"150\" animation=\"none\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq4.jpg\"]\n<h3 style=\"text-align: center;\">Widgetised Sidebars via Visual Composer</h3>\n<h4 style=\"text-align: center;\">Any number of sidebars. Any sidebar width. Any layout.</h4>\n[/dt_banner][dt_gap height=\"15\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla sodales quis tortor eget accumsan. Integer accumsan, ante sed tempus malesuada, quam lorem dignissim magna, sit amet ultrices nisi elit nec lorem. Sed bibendum est a lacus ornare, in interdum quam lacinia. Ut vulputate arcu mauris, ut convallis ipsum viverra sed.\n\nDuis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.\n\nSuspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo.\n\nUt vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla sodales quis tortor eget accumsan. Integer accumsan, ante sed tempus malesuada, quam lorem dignissim magna, sit amet ultrices nisi elit nec lorem. Sed bibendum est a lacus ornare, in interdum quam lacinia. Ut vulputate arcu mauris, ut convallis ipsum viverra sed.\n\nQuisque at erat vulputate, dignissim lacus at, posuere massa. Vivamus consectetur, nibh et suscipit laoreet, diam velit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.[/vc_column_text][dt_gap height=\"30\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"150\" animation=\"none\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq5.jpg\"]\n<h3 style=\"text-align: center;\">Unlimited Widget Areas via Theme Options</h3>\n<h4 style=\"text-align: center;\">Use them where you want: any page &amp; any sidebar</h4>\n[/dt_banner][dt_gap height=\"15\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla sodales quis tortor eget accumsan.\n\nSuspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo. Quisque at erat vulputate, dignissim lacus at, posuere massa. Vivamus consectetur, nibh et suscipit laoreet, diam velit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.\n\nPraesent vel fringilla arcu. Praesent metus lacus, fringilla in pharetra vitae, sagittis eget metus. Cras at auctor est. Pellentesque non pellentesque sapien, ac rhoncus mauris. Proin bibendum nunc est, id blandit enim venenatis non. Mauris commodo sodales odio id elementum. Nam malesuada cursus purus, id aliquet lectus luctus eu. Quisque lobortis convallis dui sit amet laoreet.\n\nVestibulum posuere elementum purus, in ullamcorper massa posuere id. Nam tristique ornare enim, sed lobortis erat consectetur sed. Fusce risus magna, dignissim gravida suscipit eu, cursus a risus. Aliquam egestas metus a tortor gravida, non congue tortor tempus. Aliquam ullamcorper, lacus ut vulputate facilisis, magna nibh pellentesque sem, vitae accumsan ligula lacus semper dui. Cras sit amet interdum erat, sed tincidunt orci. Integer tempor ante at rhoncus fringilla. Morbi nec pretium lacus.\n\nUt sit amet molestie libero, quis euismod metus. Praesent nec nunc bibendum, consectetur sem ut, semper magna. Etiam ut massa lacus. Aliquam cursus magna mollis pellentesque facilisis. Nunc ligula neque, imperdiet a molestie consequat, lacinia et quam. Praesent vel facilisis urna, ac laoreet nulla. Suspendisse eu nunc enim. Ut fringilla risus sit amet lacus scelerisque cursus.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_widget_sidebar show_bg=\"true\" sidebar_id=\"sidebar_21\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_widget_sidebar show_bg=\"true\" sidebar_id=\"sidebar_22\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Two same-side sidebars", "", "publish", "closed", "closed", "", "two-same-side-sidebars", "", "", "2013-10-21 10:01:52", "2013-10-21 10:01:52", "", "12755", "http://the7.dream-demo.com/dummy/?page_id=12759", "51", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12760", "2", "2013-10-21 10:05:30", "2013-10-21 10:05:30", "[vc_row][vc_column width=\"2/3\"][dt_gap height=\"7\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"200\" animation=\"bottom\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq4.jpg\"]\n<h3 style=\"text-align: center;\">Widgetised Sidebars via Visual Composer</h3>\n<p style=\"text-align: center;\">Any number of sidebars &amp; any sidebar width</p>\n\n[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"200\" animation=\"bottom\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq3.jpg\"]\n<h3 style=\"text-align: center;\">Unlimited Widget Areas via Theme Options</h3>\n<p style=\"text-align: center;\">Use them for any page &amp; any sidebar</p>\n\n[/dt_banner][/vc_column_inner][/vc_row_inner][dt_gap height=\"20\"][vc_column_text]Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.Â [dt_quote type=\"pullquote\" layout=\"left\" font_size=\"normal\" animation=\"scale\" size=\"3\"]Cras aliquamvelit eget metus faucibus dolor mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed.[/dt_quote]Suspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam.Â Suspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo.Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo.Â [dt_quote type=\"pullquote\" layout=\"right\" font_size=\"normal\" animation=\"scale\" size=\"3\"]Cras aliquamvelit eget metus faucibus dolor mattis. Nunc convallis glavris sem felis, sit amet interdum diam auctor sed.[/dt_quote]Dvelit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.Â Nunc convallis sem felis, sit amet interdum diam auctor sed. Suspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non.Â Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero quis quam vitae, congue iaculis leo.[/vc_column_text][dt_gap height=\"40\"][dt_logos columns=\"4\" dividers=\"true\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"scale\"][dt_gap height=\"40\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eu nisl non massa sollicitudin imperdiet sagittis eu lorem. Ut vulputate mollis nisl, vel volutpat est imperdiet non. Donec ullamcorper, nibh et euismod scelerisque, est quam imperdiet elit, sit amet cursus diam magna in ligula. Duis tempus turpis enim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla sodales quis tortor eget accumsan.\n\nSuspendisse adipiscing vitae dolor non malesuada. In non nibh erat. Curabitur in elit eros. Nunc cursus rhoncus quam. Sed commodo ipsum sit amet arcu suscipit ornare. Donec sed mauris nec nisi facilisis porttitor non a lectus. Donec libero eros, sollicitudin quis quam vitae, congue iaculis leo. Quisque at erat vulputate, dignissim lacus at, posuere massa. Vivamus consectetur, nibh et suscipit laoreet, diam velit auctor quam, ut pretium orci orci vitae augue. Cras aliquam velit eget metus faucibus mattis. Nunc convallis sem felis, sit amet interdum diam auctor sed. Interdum et malesuada fames ac ante ipsum primis in faucibus.\n\nPraesent vel fringilla arcu. Praesent metus lacus, fringilla in pharetra vitae, sagittis eget metus. Cras at auctor est. Pellentesque non pellentesque sapien, ac rhoncus mauris. Proin bibendum nunc est, id blandit enim venenatis non. Mauris commodo sodales odio id elementum. Nam malesuada cursus purus, id aliquet lectus luctus eu. Quisque lobortis convallis dui sit amet laoreet.\n\nVestibulum posuere elementum purus, in ullamcorper massa posuere id. Nam tristique ornare enim, sed lobortis erat consectetur sed. Fusce risus magna, dignissim gravida suscipit eu, cursus a risus. Aliquam egestas metus a tortor gravida, non congue tortor tempus. Aliquam ullamcorper, lacus ut vulputate facilisis, magna nibh pellentesque sem, vitae accumsan ligula lacus semper dui. Cras sit amet interdum erat, sed tincidunt orci.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_widget_sidebar show_bg=\"true\" sidebar_id=\"sidebar_23\"][/vc_column][/vc_row]", "Wide sidebar", "", "publish", "closed", "closed", "", "wide-sidebar", "", "", "2013-10-21 10:05:30", "2013-10-21 10:05:30", "", "12755", "http://the7.dream-demo.com/dummy/?page_id=12760", "71", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12761", "2", "2013-10-21 10:07:17", "2013-10-21 10:07:17", "[vc_row][vc_column width=\"1/1\"][vc_column_text]Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec faucibus ligula id dictum bibendum. Phasellus nec nibh iaculis, convallis libero non, aliquet risus. Aenean hendrerit euismod eros, ac semper tellus dictum feugiat. Aenean eleifend vitae mi non sodales. Suspendisse lacus dolor, auctor id pretium eu, euismod ut ligula.\n\nVivamus pulvinar faucibus tempus. Ut varius dictum libero, faucibus blandit nisi rutrum in. Morbi nibh metus, auctor in dolor interdum, iaculis tempor mauris. Vestibulum ac diam ut ipsum cursus dignissim. Aliquam eu magna turpis. Etiam et turpis felis. Duis viverra hendrerit adipiscing. Cras molestie mauris diam, pulvinar euismod dolor suscipit sed. Ut hendrerit justo odio, eu scelerisque tellus aliquet a. Pellentesque suscipit, enim at consequat interdum, ante ipsum tempus orci, sed aliquet felis ipsum in turpis.\n\nUt in felis sollicitudin, malesuada neque ut, sodales magna. Praesent viverra justo metus, vitae scelerisque est interdum vitae. Nunc iaculis in mauris id convallis. Praesent accumsan enim ac dui mattis, id mattis velit elementum. Nulla interdum hendrerit lectus bibendum gravida. Etiam quis risus a risus sodales vestibulum. Integer imperdiet mauris ut laoreet pellentesque. Cras id tortor mi. Sed varius, justo sit amet elementum suscipit, nibh nisl consectetur risus, ultrices sagittis quam tortor vel ante. Nulla tempor fringilla libero ut dapibus. Suspendisse potenti. Etiam non mauris ut metus molestie posuere. Donec malesuada semper tortor sed dignissim.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/4\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d15.jpg\" image_alt=\"teaser\" lightbox=\"true\" style=\"1\" content_size=\"normal\" text_align=\"left\" background=\"no\" animation=\"none\"]\n<h4 style=\"text-align: center;\">Premium quality</h4>\n<p style=\"text-align: center;\">Pellentesque suscipit, enim at consequat interdum, ante ipsum tempus orci, sed aliquet felis ipsum in turpis.</p>\n<p style=\"text-align: center;\">[dt_button size=\"link\" animation=\"top\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]View details![/dt_button]</p>\n[/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d16.jpg\" image_alt=\"teaser\" lightbox=\"true\" style=\"1\" content_size=\"normal\" text_align=\"left\" background=\"no\" animation=\"none\"]\n<h4 style=\"text-align: center;\">Free lifetime support</h4>\n<p style=\"text-align: center;\">Dolor amet suscipit, enim at consequat interdum, ante ipsum tempus orci, sed aliquet felis ipsum in turpis.</p>\n<p style=\"text-align: center;\">[dt_button size=\"link\" animation=\"top\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]View details![/dt_button]</p>\n[/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d21.jpg\" image_alt=\"teaser\" lightbox=\"true\" style=\"1\" content_size=\"normal\" text_align=\"left\" background=\"no\" animation=\"none\"]\n<h4 style=\"text-align: center;\">Regular updates</h4>\n<p style=\"text-align: center;\">Pellentesque suscipit, enim at consequat interdum, ante ipsum tempus orci, sed aliquet felis ipsum in turpis.</p>\n<p style=\"text-align: center;\">[dt_button size=\"link\" animation=\"top\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]View details![/dt_button]</p>\n[/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d17.jpg\" image_alt=\"teaser\" lightbox=\"true\" style=\"1\" content_size=\"normal\" text_align=\"left\" background=\"no\" animation=\"none\"]\n<h4 style=\"text-align: center;\">Trendy design &amp; layout</h4>\n<p style=\"text-align: center;\">Glavios suscipit, enim at consequat interdum, ante ipsum tempus orci, sed aliquet felis ipsum in turpis.</p>\n<p style=\"text-align: center;\">[dt_button size=\"link\" animation=\"top\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]View details![/dt_button]</p>\n[/dt_teaser][/vc_column_inner][/vc_row_inner][dt_gap height=\"15\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec ligula id enim suscipit posuere. Nullam ac suscipit lacus. Morbi vel scelerisque nisl, non volutpat lorem. Duis sit amet nisi sed ipsum auctor convallis eget sit amet sem. Ut bibendum risus eget justo dapibus, vel commodo tortor adipiscing. Suspendisse at arcu ut felis suscipit iaculis in eleifend justo. Morbi tincidunt aliquet sapien. Morbi blandit nisi nec sodales volutpat. Mauris sapien nibh, sodales at dictum vitae, aliquam eu diam. Donec porttitor leo id erat condimentum suscipit. Sed posuere ullamcorper convallis. Vestibulum sit amet lorem fermentum, tempor nunc at, hendrerit leo. Nam volutpat tellus nec congue porta.\n<div id=\"lipsum\">\n\nCum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla urna justo, dignissim a accumsan sed, gravida ut ipsum. Donec convallis gravida massa eu mattis. Nulla pharetra mi at nisi pharetra pharetra. Proin blandit dapibus elit vel dignissim. Phasellus vitae nisi eu mauris vehicula lobortis. Proin in purus nisi. Proin malesuada lacus eget mauris malesuada, non rutrum sapien sagittis. Aliquam scelerisque elit id dui elementum, sed convallis nunc mattis. Etiam interdum lectus a mollis aliquet. Aliquam et magna sem.\n\n</div>\n[/vc_column_text][dt_gap height=\"30\"][dt_call_to_action content_size=\"normal\" text_align=\"left\" background=\"fancy\" line=\"true\" style=\"1\" animation=\"fade\"]\n<h3>The7 WordPress Theme - all you need to create an awesome website!</h3>\n<h4>Regular updates, intuitive admin panel, powerful design customization tools and much more.</h4>\n[dt_button size=\"big\" animation=\"right\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]BUY THIS THEME NOW![/dt_button][/dt_call_to_action][dt_gap height=\"5\"][/vc_column][/vc_row]", "No sidebar (fullwidth)", "", "publish", "closed", "closed", "", "no-sidebar-fullwidth", "", "", "2013-10-21 10:07:17", "2013-10-21 10:07:17", "", "12755", "http://the7.dream-demo.com/dummy/?page_id=12761", "92", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12762", "2", "2013-10-21 10:08:44", "2013-10-21 10:08:44", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d15.jpg\" image_alt=\"teaser\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"left\" background=\"fancy\" animation=\"none\"]\n<h4 style=\"text-align: center;\">Premium quality</h4>\n<p style=\"text-align: center;\">Pellentesque suscipit, enim at consequat inter in turpis.</p>\n<p style=\"text-align: center;\">[dt_button size=\"link\" animation=\"top\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]View details![/dt_button]</p>\n[/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d16.jpg\" image_alt=\"teaser\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"left\" background=\"fancy\" animation=\"none\"]\n<h4 style=\"text-align: center;\">Free lifetime support</h4>\n<p style=\"text-align: center;\">Dolor amet suscipit, enim at cad aliquet felis ipsum in turpis.</p>\n<p style=\"text-align: center;\">[dt_button size=\"link\" animation=\"top\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]View details![/dt_button]</p>\n[/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d21.jpg\" image_alt=\"teaser\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"left\" background=\"fancy\" animation=\"none\"]\n<h4 style=\"text-align: center;\">Regular updates</h4>\n<p style=\"text-align: center;\">Pellentte ipsum tempus orci, sed aliquet felis ipsum in turpis.</p>\n<p style=\"text-align: center;\">[dt_button size=\"link\" animation=\"top\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]View details![/dt_button]</p>\n[/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/3d17.jpg\" image_alt=\"teaser\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"left\" background=\"fancy\" animation=\"none\"]\n<h4 style=\"text-align: center;\">Trendy design &amp; layout</h4>\n<p style=\"text-align: center;\">Glavios suscipit, enim at consequat inteam in turpis.</p>\n<p style=\"text-align: center;\">[dt_button size=\"link\" animation=\"top\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]View details![/dt_button]</p>\n[/dt_teaser][/vc_column_inner][/vc_row_inner][dt_gap height=\"15\"][vc_column_text]Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec faucibus ligula id dictum bibendum. Phasellus nec nibh iaculis, convallis libero non, aliquet risus. Aenean hendrerit euismod eros, ac semper tellus dictum feugiat. Aenean eleifend vitae mi non sodales. Suspendisse lacus dolor, auctor id pretium eu, euismod ut ligula.\n\nVivamus pulvinar faucibus tempus. Ut varius dictum libero, faucibus blandit nisi rutrum in. Morbi nibh metus, auctor in dolor interdum, iaculis tempor mauris. Vestibulum ac diam ut ipsum cursus dignissim. Aliquam eu magna turpis. Etiam et turpis felis. Duis viverra hendrerit adipiscing. Cras molestie mauris diam, pulvinar euismod dolor suscipit sed. Ut hendrerit justo odio, eu scelerisque tellus aliquet a. Pellentesque suscipit, enim at consequat interdum, ante ipsum tempus orci, sed aliquet felis ipsum in turpis.\n\nUt in felis sollicitudin, malesuada neque ut, sodales magna. Praesent viverra justo metus, vitae scelerisque est interdum vitae. Nunc iaculis in mauris id convallis. Praesent accumsan enim ac dui mattis, id mattis velit elementum. Nulla interdum hendrerit lectus bibendum gravida. Etiam quis risus a risus sodales vestibulum. Integer imperdiet mauris ut laoreet pellentesque. Cras id tortor mi. Sed varius, justo sit amet elementum suscipit, nibh nisl consectetur risus, ultrices sagittis quam tortor vel ante. Nulla tempor fringilla libero ut dapibus. Suspendisse potenti. Etiam non mauris ut metus molestie posuere. Donec malesuada semper tortor sed dignissim.[/vc_column_text][dt_gap height=\"30\"][dt_call_to_action content_size=\"normal\" text_align=\"left\" background=\"fancy\" line=\"true\" style=\"1\" animation=\"fade\"]\n<h3>The7 WordPress Theme - all you need to create an awesome website!</h3>\n<h4>Regular updates, intuitive admin panel, powerful design customization tools and much more.</h4>\n[dt_button size=\"big\" animation=\"right\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]BUY THIS THEME NOW![/dt_button][/dt_call_to_action][dt_gap height=\"30\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec ligula id enim suscipit posuere. Nullam ac suscipit lacus. Morbi vel scelerisque nisl, non volutpat lorem. Duis sit amet nisi sed ipsum auctor convallis eget sit amet sem. Ut bibendum risus eget justo dapibus, vel commodo tortor adipiscing. Suspendisse at arcu ut felis suscipit iaculis in eleifend justo. Morbi tincidunt aliquet sapien. Morbi blandit nisi nec sodales volutpat. Mauris sapien nibh, sodales at dictum vitae, aliquam eu diam. Donec porttitor leo id erat condimentum suscipit. Sed posuere ullamcorper convallis. Vestibulum sit amet lorem fermentum, tempor nunc at, hendrerit leo. Nam volutpat tellus nec congue porta.\n<div id=\"lipsum\">\n\nCum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla urna justo, dignissim a accumsan sed, gravida ut ipsum. Donec convallis gravida massa eu mattis. Nulla pharetra mi at nisi pharetra pharetra. Proin blandit dapibus elit vel dignissim. Phasellus vitae nisi eu mauris vehicula lobortis. Proin in purus nisi. Proin malesuada lacus eget mauris malesuada, non rutrum sapien sagittis. Aliquam scelerisque elit id dui elementum, sed convallis nunc mattis. Etiam interdum lectus a mollis aliquet. Aliquam et magna sem.\n\n</div>\n[/vc_column_text][/vc_column][/vc_row]", "Page title disabled", "", "publish", "closed", "closed", "", "page-title-disabled", "", "", "2013-10-21 10:08:44", "2013-10-21 10:08:44", "", "12755", "http://the7.dream-demo.com/dummy/?page_id=12762", "102", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12763", "2", "2013-10-21 10:15:47", "2013-10-21 10:15:47", "[vc_row type=\"4\" bg_color=\"#31302e\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/10/testimonials-image.jpg\" bg_position=\"center\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"50\" padding_bottom=\"40\" margin_top=\"40\" margin_bottom=\"-41\" enable_parallax=\"false\" parallax_speed=\"0.2\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/2\"][vc_column_text]\n<h2>LEAVE YOUR TESTIMONIAL</h2>\n[/vc_column_text][dt_gap height=\"5\"][vc_column_text]\n<h3>Let\'s improve and evolve The7 together!</h3>\n[/vc_column_text][dt_gap height=\"25\"][vc_column_text]Ð¡onstructive feedback and positive ratings are things that helping us to improve and evolve this theme.Â If you like theme, please take couple of minutes to <a href=\"http://fc07.deviantart.net/fs71/i/2012/038/8/5/how_to_rate_a_file_template_by_cooledition-d4oxno5.jpg\" target=\"_blank\">rate it</a>. Also donâ€™t forget to write a short review on whatâ€™s good and whatâ€™s missing. Most new features and improvements are coming from your comments![/vc_column_text][dt_gap height=\"20\"][dt_contact_form fields=\"name,email,message\" message_height=\"6\" required=\"name,email,message\" button_title=\"Submit review\" button_size=\"medium\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]", "Testimonials with parallax", "", "publish", "closed", "closed", "", "testimonials-with-parallax", "", "", "2013-10-21 10:15:47", "2013-10-21 10:15:47", "", "12753", "http://the7.dream-demo.com/dummy/?page_id=12763", "7", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12769", "2", "2013-10-30 09:19:34", "2013-10-30 09:19:34", "[vc_row][vc_column width=\"2/3\"][vc_column_text]\n<h3>We are usually asked about:</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"false\" collapsible=\"yes\"][vc_accordion_tab title=\"How to update the theme?\"][vc_column_text]All our theme updates are available in your ThemeForest.com profile for free: simply redownload it in â€œDownloadsâ€ tab.\n\nAt the first step we advise you to rename your current theme folder to something like: â€¦/wp-content/themes/dt-THEME_NAME-old/. It will help you to save custom changes of the template.\n\nAt the next stage you need to install the theme in the usual way.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to make the theme load faster?\"][vc_column_text]\n<ol>\n	<li>Select â€œStatic CSSâ€ option in Theme Options &gt;&gt; Misc (for Nimble, PressMate and PurePress themes).</li>\n	<li>InstallÂ <a href=\"http://dream-dev.net/support/knowledgebase/what-cache-plugin-to-use/\" target=\"_blank\">cache plugin</a>.</li>\n	<li>If possible, decrease size of your images.</li>\n	<li>Deactivate needless plugins.</li>\n	<li>Decrease number of items (portfolios, albums, catalogs, photos) per page.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What cache plugin do you suggest to use?\"][vc_column_text]We would like to advise you to installÂ <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a>Â plugin.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How many pages with slideshow am I able to create?\"][vc_column_text]You are able to create as many slideshows as you want! Slideshow can be enabled for any page template or post.\n\nRemember you can choose which one of them will be set as the Homepage one by following: Dashboard &gt;&gt; Settings &gt;&gt; Reading &gt;&gt; Front page displays &gt;&gt; A static page (select below) &gt;&gt; Front page[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Blog page ignores custom page title and settings\"][vc_column_text]Simply do not select this page in Settings &gt;&gt; Reading as a post page. Regular page with â€œBlogâ€ template displays a title from the Title field.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where i can find benefits icons?\"][vc_column_text]There are separate folder in your theme download package with all png icons used on our demo. You can also find plenty of other free icons here:Â <a title=\"www.iconmonstr.com\" href=\"http://iconmonstr.com/\" target=\"_blank\">www.iconmonstr.com</a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to enable MonsterID?\"][vc_column_text]\n<ol>\n	<li>open â€œfunctions PHPâ€</li>\n	<li>navigate to line 765</li>\n	<li>change the â€œdt_validate_gravatar( $comment-&gt;comment_author_email )â€ to â€œ1 || dt_validate_gravatar( $comment-&gt;comment_author_email )â€</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where can I find full demo content?\"][vc_column_text]This is dummy for all demo: https://www.dropbox.com/s/zgg0dbec15n88ep/the7.wordpress.2013-09-19.xml\n\nNote 2 things:\n<ol>\n	<li>Itâ€™s huge, so we cannot guarantee youâ€™ll be able to install it.</li>\n	<li>Images on demo are copyrighted and you cannot use them without purchasing proper licenses.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What about themes autoupdate?\"][vc_column_text]At this moment themes from ThemeForest cannot update automatically like themes from WordPress library. (Well there is an API and even a ready-made plugin for thatâ€¦ but itâ€™s still very raw and buggy.) But we are working hard to implement autoupdate feature in one of the nearest updates.\n\nSo in order to update theme, you need to:\n<ol>\n	<li>backup your current theme folder;</li>\n	<li>rename/delete older version of theme;</li>\n	<li>install newest version of theme.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to disable breadcrumbs\"][vc_column_text]If you want to hide breadcrumbs, please:\n<ul>\n	<li>make sure you have the most recent theme version:Â <a href=\"http://support.dream-theme.com/knowledgebase/update-theme/\" target=\"_blank\" rel=\"nofollow\">http://support.dream-theme.com/knowledgebase/update-theme/</a>;</li>\n	<li>follow Theme Options &gt;&gt; General &gt;&gt; Title &gt;&gt; Breadcrumbs.</li>\n</ul>\n[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"40\"][vc_column_text]\n<h3>Didn\'t find the answer?</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Duis vestibulum quis quam vel accumsan. Nunc a vulputate lectus. Vestibulum eleifend nisl sed massa sagittis vestibulum. Vestibulum pretium blandit tellus, sodales volutpat sapien varius vel. Phasellus tristique cursus erat, a placerat tellus laoreet eget. Fusce vitae dui sit amet lacus rutrum convallis. Vivamus sit amet lectus venenatis est rhoncus interdum a vitae velit.Â Morbi ut mauris non ligula euismod dignissim ac ut orci. Nulla sodales tempus turpis, non interdum orci gravida eget. Nam suscipit et neque at pulvinar.[/vc_column_text][dt_gap height=\"15\"][dt_contact_form fields=\"name,email,message\" message_height=\"5\" required=\"name,email,message\" button_title=\"Send question\" button_size=\"medium\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\n<h3>Testimonials:</h3>\n[/vc_column_text][dt_gap height=\"20\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\"][dt_gap height=\"10\"][vc_column_text]\n<h3>Educational video:</h3>\n[/vc_column_text][dt_gap height=\"20\"][dt_fancy_image type=\"video\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/06/por05.jpg\" style=\"3\" width=\"890\" padding=\"10\" align=\"left\" animation=\"none\" media=\"http://vimeo.com/22647358\"][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"20\"][vc_column_text]\n<h3>Our skills:</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_progress_bar values=\"90|Development,80|Design,70|Marketing,60|Consulting,50|Photography\" bgcolor=\"bar_blue\" options=\"striped,animated\" units=\"%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "F.A.Q. #2", "", "publish", "closed", "closed", "", "f-a-q-2", "", "", "2013-10-30 09:19:34", "2013-10-30 09:19:34", "", "12753", "http://the7.dream-demo.com/dummy/?page_id=12769", "123", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12770", "2", "2013-10-30 09:21:40", "2013-10-30 09:21:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"5\"][vc_tabs style=\"tab-style-two\" interval=\"0\"][vc_tab title=\"Pre-sale questions\" tab_id=\"1382603893562-2-10\"][vc_accordion active_tab=\"false\" collapsible=\"yes\"][vc_accordion_tab title=\"How many pages with slideshow am I able to create?\"][vc_column_text]You are able to create as many slideshows as you want! Slideshow can be enabled for any page template or post.\n\nRemember you can choose which one of them will be set as the Homepage one by following: Dashboard &gt;&gt; Settings &gt;&gt; Reading &gt;&gt; Front page displays &gt;&gt; A static page (select below) &gt;&gt; Front page[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to disable breadcrumbs\"][vc_column_text]If you want to hide breadcrumbs, please:\n<ul>\n	<li>make sure you have the most recent theme version:Â <a href=\"http://support.dream-theme.com/knowledgebase/update-theme/\" target=\"_blank\" rel=\"nofollow\">http://support.dream-theme.com/knowledgebase/update-theme/</a>;</li>\n	<li>follow Theme Options &gt;&gt; General &gt;&gt; Title &gt;&gt; Breadcrumbs.</li>\n</ul>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where can I find full demo content?\"][vc_column_text]This is dummy for all demo: https://www.dropbox.com/s/zgg0dbec15n88ep/the7.wordpress.2013-09-19.xml\n\nNote 2 things:\n<ol>\n	<li>Itâ€™s huge, so we cannot guarantee youâ€™ll be able to install it.</li>\n	<li>Images on demo are copyrighted and you cannot use them without purchasing proper licenses.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to update the theme?\"][vc_column_text]All our theme updates are available in your ThemeForest.com profile for free: simply redownload it in â€œDownloadsâ€ tab.\n\nAt the first step we advise you to rename your current theme folder to something like: â€¦/wp-content/themes/dt-THEME_NAME-old/. It will help you to save custom changes of the template.\n\nAt the next stage you need to install the theme in the usual way.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to make the theme load faster?\"][vc_column_text]\n<ol>\n	<li>Select â€œStatic CSSâ€ option in Theme Options &gt;&gt; Misc (for Nimble, PressMate and PurePress themes).</li>\n	<li>InstallÂ <a href=\"http://dream-dev.net/support/knowledgebase/what-cache-plugin-to-use/\" target=\"_blank\">cache plugin</a>.</li>\n	<li>If possible, decrease size of your images.</li>\n	<li>Deactivate needless plugins.</li>\n	<li>Decrease number of items (portfolios, albums, catalogs, photos) per page.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What cache plugin do you suggest to use?\"][vc_column_text]We would like to advise you to installÂ <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a>Â plugin.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Blog page ignores custom page title and settings\"][vc_column_text]Simply do not select this page in Settings &gt;&gt; Reading as a post page. Regular page with â€œBlogâ€ template displays a title from the Title field.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where i can find benefits icons?\"][vc_column_text]There are separate folder in your theme download package with all png icons used on our demo. You can also find plenty of other free icons here:Â <a title=\"www.iconmonstr.com\" href=\"http://iconmonstr.com/\" target=\"_blank\">www.iconmonstr.com</a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to enable MonsterID?\"][vc_column_text]\n<ol>\n	<li>open â€œfunctions PHPâ€</li>\n	<li>navigate to line 765</li>\n	<li>change the â€œdt_validate_gravatar( $comment-&gt;comment_author_email )â€ to â€œ1 || dt_validate_gravatar( $comment-&gt;comment_author_email )â€</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What about themes autoupdate?\"][vc_column_text]At this moment themes from ThemeForest cannot update automatically like themes from WordPress library. (Well there is an API and even a ready-made plugin for thatâ€¦ but itâ€™s still very raw and buggy.) But we are working hard to implement autoupdate feature in one of the nearest updates.\n\nSo in order to update theme, you need to:\n<ol>\n	<li>backup your current theme folder;</li>\n	<li>rename/delete older version of theme;</li>\n	<li>install newest version of theme.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_tab][vc_tab title=\"Installation\" tab_id=\"1382603896618-3-6\"][vc_accordion active_tab=\"false\" collapsible=\"yes\"][vc_accordion_tab title=\"How to update the theme?\"][vc_column_text]All our theme updates are available in your ThemeForest.com profile for free: simply redownload it in â€œDownloadsâ€ tab.\n\nAt the first step we advise you to rename your current theme folder to something like: â€¦/wp-content/themes/dt-THEME_NAME-old/. It will help you to save custom changes of the template.\n\nAt the next stage you need to install the theme in the usual way.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to make the theme load faster?\"][vc_column_text]\n<ol>\n	<li>Select â€œStatic CSSâ€ option in Theme Options &gt;&gt; Misc (for Nimble, PressMate and PurePress themes).</li>\n	<li>InstallÂ <a href=\"http://dream-dev.net/support/knowledgebase/what-cache-plugin-to-use/\" target=\"_blank\">cache plugin</a>.</li>\n	<li>If possible, decrease size of your images.</li>\n	<li>Deactivate needless plugins.</li>\n	<li>Decrease number of items (portfolios, albums, catalogs, photos) per page.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What cache plugin do you suggest to use?\"][vc_column_text]We would like to advise you to installÂ <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a>Â plugin.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How many pages with slideshow am I able to create?\"][vc_column_text]You are able to create as many slideshows as you want! Slideshow can be enabled for any page template or post.\n\nRemember you can choose which one of them will be set as the Homepage one by following: Dashboard &gt;&gt; Settings &gt;&gt; Reading &gt;&gt; Front page displays &gt;&gt; A static page (select below) &gt;&gt; Front page[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where i can find benefits icons?\"][vc_column_text]There are separate folder in your theme download package with all png icons used on our demo. You can also find plenty of other free icons here:Â <a title=\"www.iconmonstr.com\" href=\"http://iconmonstr.com/\" target=\"_blank\">www.iconmonstr.com</a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to enable MonsterID?\"][vc_column_text]\n<ol>\n	<li>open â€œfunctions PHPâ€</li>\n	<li>navigate to line 765</li>\n	<li>change the â€œdt_validate_gravatar( $comment-&gt;comment_author_email )â€ to â€œ1 || dt_validate_gravatar( $comment-&gt;comment_author_email )â€</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What about themes autoupdate?\"][vc_column_text]At this moment themes from ThemeForest cannot update automatically like themes from WordPress library. (Well there is an API and even a ready-made plugin for thatâ€¦ but itâ€™s still very raw and buggy.) But we are working hard to implement autoupdate feature in one of the nearest updates.\n\nSo in order to update theme, you need to:\n<ol>\n	<li>backup your current theme folder;</li>\n	<li>rename/delete older version of theme;</li>\n	<li>install newest version of theme.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to disable breadcrumbs\"][vc_column_text]If you want to hide breadcrumbs, please:\n<ul>\n	<li>make sure you have the most recent theme version:Â <a href=\"http://support.dream-theme.com/knowledgebase/update-theme/\" target=\"_blank\" rel=\"nofollow\">http://support.dream-theme.com/knowledgebase/update-theme/</a>;</li>\n	<li>follow Theme Options &gt;&gt; General &gt;&gt; Title &gt;&gt; Breadcrumbs.</li>\n</ul>\n[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_tab][vc_tab title=\"Support\" tab_id=\"1382603902292-4-3\"][vc_accordion active_tab=\"false\" collapsible=\"yes\"][vc_accordion_tab title=\"How many pages with slideshow am I able to create?\"][vc_column_text]You are able to create as many slideshows as you want! Slideshow can be enabled for any page template or post.\n\nRemember you can choose which one of them will be set as the Homepage one by following: Dashboard &gt;&gt; Settings &gt;&gt; Reading &gt;&gt; Front page displays &gt;&gt; A static page (select below) &gt;&gt; Front page[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Blog page ignores custom page title and settings\"][vc_column_text]Simply do not select this page in Settings &gt;&gt; Reading as a post page. Regular page with â€œBlogâ€ template displays a title from the Title field.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What about themes autoupdate?\"][vc_column_text]At this moment themes from ThemeForest cannot update automatically like themes from WordPress library. (Well there is an API and even a ready-made plugin for thatâ€¦ but itâ€™s still very raw and buggy.) But we are working hard to implement autoupdate feature in one of the nearest updates.\n\nSo in order to update theme, you need to:\n<ol>\n	<li>backup your current theme folder;</li>\n	<li>rename/delete older version of theme;</li>\n	<li>install newest version of theme.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where can I find full demo content?\"][vc_column_text]This is dummy for all demo: https://www.dropbox.com/s/zgg0dbec15n88ep/the7.wordpress.2013-09-19.xml\n\nNote 2 things:\n<ol>\n	<li>Itâ€™s huge, so we cannot guarantee youâ€™ll be able to install it.</li>\n	<li>Images on demo are copyrighted and you cannot use them without purchasing proper licenses.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to update the theme?\"][vc_column_text]All our theme updates are available in your ThemeForest.com profile for free: simply redownload it in â€œDownloadsâ€ tab.\n\nAt the first step we advise you to rename your current theme folder to something like: â€¦/wp-content/themes/dt-THEME_NAME-old/. It will help you to save custom changes of the template.\n\nAt the next stage you need to install the theme in the usual way.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to make the theme load faster?\"][vc_column_text]\n<ol>\n	<li>Select â€œStatic CSSâ€ option in Theme Options &gt;&gt; Misc (for Nimble, PressMate and PurePress themes).</li>\n	<li>InstallÂ <a href=\"http://dream-dev.net/support/knowledgebase/what-cache-plugin-to-use/\" target=\"_blank\">cache plugin</a>.</li>\n	<li>If possible, decrease size of your images.</li>\n	<li>Deactivate needless plugins.</li>\n	<li>Decrease number of items (portfolios, albums, catalogs, photos) per page.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What cache plugin do you suggest to use?\"][vc_column_text]We would like to advise you to installÂ <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a>Â plugin.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where i can find benefits icons?\"][vc_column_text]There are separate folder in your theme download package with all png icons used on our demo. You can also find plenty of other free icons here:Â <a title=\"www.iconmonstr.com\" href=\"http://iconmonstr.com/\" target=\"_blank\">www.iconmonstr.com</a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to enable MonsterID?\"][vc_column_text]\n<ol>\n	<li>open â€œfunctions PHPâ€</li>\n	<li>navigate to line 765</li>\n	<li>change the â€œdt_validate_gravatar( $comment-&gt;comment_author_email )â€ to â€œ1 || dt_validate_gravatar( $comment-&gt;comment_author_email )â€</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to disable breadcrumbs\"][vc_column_text]If you want to hide breadcrumbs, please:\n<ul>\n	<li>make sure you have the most recent theme version:Â <a href=\"http://support.dream-theme.com/knowledgebase/update-theme/\" target=\"_blank\" rel=\"nofollow\">http://support.dream-theme.com/knowledgebase/update-theme/</a>;</li>\n	<li>follow Theme Options &gt;&gt; General &gt;&gt; Title &gt;&gt; Breadcrumbs.</li>\n</ul>\n[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_tab][vc_tab title=\"Customization\" tab_id=\"1382603981646-4-6\"][vc_accordion active_tab=\"false\" collapsible=\"yes\"][vc_accordion_tab title=\"How to update the theme?\"][vc_column_text]All our theme updates are available in your ThemeForest.com profile for free: simply redownload it in â€œDownloadsâ€ tab.\n\nAt the first step we advise you to rename your current theme folder to something like: â€¦/wp-content/themes/dt-THEME_NAME-old/. It will help you to save custom changes of the template.\n\nAt the next stage you need to install the theme in the usual way.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to make the theme load faster?\"][vc_column_text]\n<ol>\n	<li>Select â€œStatic CSSâ€ option in Theme Options &gt;&gt; Misc (for Nimble, PressMate and PurePress themes).</li>\n	<li>InstallÂ <a href=\"http://dream-dev.net/support/knowledgebase/what-cache-plugin-to-use/\" target=\"_blank\">cache plugin</a>.</li>\n	<li>If possible, decrease size of your images.</li>\n	<li>Deactivate needless plugins.</li>\n	<li>Decrease number of items (portfolios, albums, catalogs, photos) per page.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What cache plugin do you suggest to use?\"][vc_column_text]We would like to advise you to installÂ <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a>Â plugin.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How many pages with slideshow am I able to create?\"][vc_column_text]You are able to create as many slideshows as you want! Slideshow can be enabled for any page template or post.\n\nRemember you can choose which one of them will be set as the Homepage one by following: Dashboard &gt;&gt; Settings &gt;&gt; Reading &gt;&gt; Front page displays &gt;&gt; A static page (select below) &gt;&gt; Front page[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Blog page ignores custom page title and settings\"][vc_column_text]Simply do not select this page in Settings &gt;&gt; Reading as a post page. Regular page with â€œBlogâ€ template displays a title from the Title field.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where i can find benefits icons?\"][vc_column_text]There are separate folder in your theme download package with all png icons used on our demo. You can also find plenty of other free icons here:Â <a title=\"www.iconmonstr.com\" href=\"http://iconmonstr.com/\" target=\"_blank\">www.iconmonstr.com</a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where can I find full demo content?\"][vc_column_text]This is dummy for all demo: https://www.dropbox.com/s/zgg0dbec15n88ep/the7.wordpress.2013-09-19.xml\n\nNote 2 things:\n<ol>\n	<li>Itâ€™s huge, so we cannot guarantee youâ€™ll be able to install it.</li>\n	<li>Images on demo are copyrighted and you cannot use them without purchasing proper licenses.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to disable breadcrumbs\"][vc_column_text]If you want to hide breadcrumbs, please:\n<ul>\n	<li>make sure you have the most recent theme version:Â <a href=\"http://support.dream-theme.com/knowledgebase/update-theme/\" target=\"_blank\" rel=\"nofollow\">http://support.dream-theme.com/knowledgebase/update-theme/</a>;</li>\n	<li>follow Theme Options &gt;&gt; General &gt;&gt; Title &gt;&gt; Breadcrumbs.</li>\n</ul>\n[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_tab][vc_tab title=\"Misc\" tab_id=\"1382603745-1-29\"][vc_accordion active_tab=\"false\" collapsible=\"yes\"][vc_accordion_tab title=\"How to update the theme?\"][vc_column_text]All our theme updates are available in your ThemeForest.com profile for free: simply redownload it in â€œDownloadsâ€ tab.\n\nAt the first step we advise you to rename your current theme folder to something like: â€¦/wp-content/themes/dt-THEME_NAME-old/. It will help you to save custom changes of the template.\n\nAt the next stage you need to install the theme in the usual way.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to make the theme load faster?\"][vc_column_text]\n<ol>\n	<li>Select â€œStatic CSSâ€ option in Theme Options &gt;&gt; Misc (for Nimble, PressMate and PurePress themes).</li>\n	<li>InstallÂ <a href=\"http://dream-dev.net/support/knowledgebase/what-cache-plugin-to-use/\" target=\"_blank\">cache plugin</a>.</li>\n	<li>If possible, decrease size of your images.</li>\n	<li>Deactivate needless plugins.</li>\n	<li>Decrease number of items (portfolios, albums, catalogs, photos) per page.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What cache plugin do you suggest to use?\"][vc_column_text]We would like to advise you to installÂ <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a>Â plugin.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How many pages with slideshow am I able to create?\"][vc_column_text]You are able to create as many slideshows as you want! Slideshow can be enabled for any page template or post.\n\nRemember you can choose which one of them will be set as the Homepage one by following: Dashboard &gt;&gt; Settings &gt;&gt; Reading &gt;&gt; Front page displays &gt;&gt; A static page (select below) &gt;&gt; Front page[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Blog page ignores custom page title and settings\"][vc_column_text]Simply do not select this page in Settings &gt;&gt; Reading as a post page. Regular page with â€œBlogâ€ template displays a title from the Title field.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where i can find benefits icons?\"][vc_column_text]There are separate folder in your theme download package with all png icons used on our demo. You can also find plenty of other free icons here:Â <a title=\"www.iconmonstr.com\" href=\"http://iconmonstr.com/\" target=\"_blank\">www.iconmonstr.com</a>[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to enable MonsterID?\"][vc_column_text]\n<ol>\n	<li>open â€œfunctions PHPâ€</li>\n	<li>navigate to line 765</li>\n	<li>change the â€œdt_validate_gravatar( $comment-&gt;comment_author_email )â€ to â€œ1 || dt_validate_gravatar( $comment-&gt;comment_author_email )â€</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Where can I find full demo content?\"][vc_column_text]This is dummy for all demo: https://www.dropbox.com/s/zgg0dbec15n88ep/the7.wordpress.2013-09-19.xml\n\nNote 2 things:\n<ol>\n	<li>Itâ€™s huge, so we cannot guarantee youâ€™ll be able to install it.</li>\n	<li>Images on demo are copyrighted and you cannot use them without purchasing proper licenses.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"What about themes autoupdate?\"][vc_column_text]At this moment themes from ThemeForest cannot update automatically like themes from WordPress library. (Well there is an API and even a ready-made plugin for thatâ€¦ but itâ€™s still very raw and buggy.) But we are working hard to implement autoupdate feature in one of the nearest updates.\n\nSo in order to update theme, you need to:\n<ol>\n	<li>backup your current theme folder;</li>\n	<li>rename/delete older version of theme;</li>\n	<li>install newest version of theme.</li>\n</ol>\n[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"How to disable breadcrumbs\"][vc_column_text]If you want to hide breadcrumbs, please:\n<ul>\n	<li>make sure you have the most recent theme version:Â <a href=\"http://support.dream-theme.com/knowledgebase/update-theme/\" target=\"_blank\" rel=\"nofollow\">http://support.dream-theme.com/knowledgebase/update-theme/</a>;</li>\n	<li>follow Theme Options &gt;&gt; General &gt;&gt; Title &gt;&gt; Breadcrumbs.</li>\n</ul>\n[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_tab][vc_tab title=\"Submit question\" tab_id=\"1382604100452-5-8\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.Â Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames turpis egestas![/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"7\" required=\"name,email,message\" button_title=\"Send question\" button_size=\"medium\"][dt_gap height=\"10\"][/vc_tab][/vc_tabs][dt_gap height=\"5\"][vc_row_inner][vc_column_inner width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"0\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"270\" animation=\"fade\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-008.jpg\" link=\"http://support.dream-theme.com\"]\n<h5 style=\"text-align: center;\">SUPPORT PORTAL</h5>\n<p style=\"text-align: center;\">trouble shooter &amp; support tickets</p>\n[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"0\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"270\" animation=\"fade\" bg_image=\"http://the7.dream-demo.com/dummy/wp-content/uploads/2013/08/dt-009.jpg\" link=\"http://www.screenr.com/user/dreamtheme\"]\n<h5 style=\"text-align: center;\">VIDEOS</h5>\n<p style=\"text-align: center;\">short educational videos</p>\n[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"0\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"270\" animation=\"fade\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-010.jpg\" link=\"http://guide.dream-theme.com/gen2/\"]\n<h5 style=\"text-align: center;\">ONLINE MANUAL</h5>\n<p style=\"text-align: center;\">up to date, helpful &amp; easy to use</p>\n[/dt_banner][/vc_column_inner][vc_column_inner width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"0\" outer_padding=\"10\" inner_padding=\"0\" min_height=\"270\" animation=\"fade\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" link=\"http://the7.dream-demo.com/pages/contact/contact-with-fancy-header/\"]\n<h5 style=\"text-align: center;\">CONTACT</h5>\n<p style=\"text-align: center;\">get in touch with us</p>\n[/dt_banner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "F.A.Q. #3", "", "publish", "closed", "closed", "", "f-a-q-3", "", "", "2013-10-30 09:21:40", "2013-10-30 09:21:40", "", "12753", "http://the7.dream-demo.com/dummy/?page_id=12770", "124", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12771", "2", "2013-10-30 09:23:07", "2013-10-30 09:23:07", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n<h2>Who we are &amp; what we do</h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"2/3\"][vc_column_text]Introduction of South Island Centre[/vc_column_text][dt_gap height=\"20\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"165\" animation=\"left\" bg_image=\"http://the7.dream-demo.com/dummy/wp-content/uploads/2013/08/dt-009.jpg\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\"]\r\n<h3 style=\"text-align: center;\">Featured Projects</h3>\r\n<h4 style=\"text-align: center;\">View our portfolio</h4>\r\n[/dt_banner][/vc_column_inner][/vc_row_inner][dt_gap height=\"20\"][dt_divider style=\"thin\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>OUR MISSION</h4>\r\n[/vc_column_text][dt_gap height=\"25\"][vc_column_text][dt_quote type=\"blockquote\" font_size=\"big\" animation=\"none\" background=\"fancy\"]<em>South Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\nWhether youâ€™re struggling with your relationships or your self-confidence â€¦ You donâ€™t have to go through it alone.</em>[/dt_quote][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>CORE GOALS</h4>\r\n[/vc_column_text][dt_gap height=\"18\"][vc_column_text][dt_list style=\"1\" dividers=\"false\"]\r\n\r\n[dt_list_item image=\"\"]Curabitur pellentesque neque eget diam.[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Quisque ut nulla at nunc vehicula lacinia.[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Proin adipiscing porta tellus, ut feugiat nibh adipiscing.[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Lorem urabitur pellentesque neque eget diam.[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Glavida ut nulla at nunc vehicula lacinia.[/dt_list_item]\r\n\r\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>CONTACT INFO</h4>\r\n[/vc_column_text][dt_gap height=\"18\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"40\" margin_bottom=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][dt_gap height=\"10\"][vc_column_text]\r\n<h2>Specialisation and services</h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Phasellus et nisl tellus. Etiam facilisis eu nisi scelerisque faucibus. Proin semper suscipit magna, nec imperdiet lacus semper vitae. Sed hendrerit enim non justo posuere placerat. Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibh tortor.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4>YEARS OF EXPERIENCE</h4>\r\n[/vc_column_text][dt_gap height=\"18\"][vc_progress_bar values=\"100|Web development - 7 years,80|Marketing &amp; PR - 5 years,60|Photography - 3 years,30|Consulting - 1 year\" bgcolor=\"bar_blue\" options=\"striped,animated\"][dt_gap height=\"20\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text][dt_benefits style=\"2\" animation=\"top\" columns=\"2\" dividers=\"true\" image_background=\"true\"]\r\n\r\n[dt_benefit title=\"Web design\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con01.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con001.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis faucibus purus unde om iste natus sit piciatis unde lorem ipsusit dolor comnis.\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"Programming\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con02.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con002.png\" header_size=\"h4\" content_size=\"normal\"]Suspen faucibus purus disse pharetra cursus pulva purus ac metus iaculis aliquam.\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"Marketing\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con03.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con003.png\" header_size=\"h4\" content_size=\"normal\"]Cras porttitor faucibus purus odio non nunc laoreet ullamcorper pellent Â dignissim.\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"SMM &amp; SEO\" image_link=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con04.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con004.png\" header_size=\"h4\" content_size=\"normal\"]Praesent quis orci nec libero purus pulvinar lorem ellen tesque habitant morbi tristique\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"Consulting\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con05.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con005.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis unde om iste faucibus purus faucibus purus undeÂ natus sit dolor comnis istoni lorem.\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"Photography\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/con06.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/con006.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis faucibus purus unde om iste natus sit piciatis unde lorem ipsusit dolor comnis.\r\n[/dt_benefit]\r\n\r\n[/dt_benefits][/vc_column_text][dt_gap height=\"40\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][vc_column_text]\r\n<h2>Testimonials &amp; clients</h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"2/3\"][vc_column_text]Curabitur pellentesque neque eget diam posuere porta. Quisque ut nulla at nunc vehicula lacinia. Proin adipiscing porta tellus, ut feugiat nibh adipiscing metus sit amet. In eu justo a felis faucibus ornare vel id metus. Sed hendrerit enim non justo posuere placerat. Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibhbus pellentesque facilisis.[/vc_column_text][dt_gap height=\"30\"][dt_logos columns=\"4\" dividers=\"true\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\" category=\"color-logos\"][dt_gap height=\"40\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\"][dt_gap height=\"10\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button size=\"small\" animation=\"none\" color=\"\" link=\"http://the7.dream-demo.com/features-2/what-buyers-say-about-the7/\" target_blank=\"true\"]All testimonials[/dt_button][dt_button size=\"small\" animation=\"none\" color=\"\" link=\"http://the7.dream-demo.com/pages/contact/contact-with-fancy-header/\" target_blank=\"true\"]Write a review[/dt_button]</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "About us", "", "pending", "closed", "closed", "", "about-us-business", "", "", "2017-06-24 13:10:03", "2017-06-24 20:10:03", "", "12753", "http://the7.dream-demo.com/dummy/?page_id=12771", "125", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12772", "2", "2013-10-30 09:27:55", "2013-10-30 09:27:55", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\n<h3>AWESOME DIGITAL AGENCY</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Curabitur pellentesque neque eget diam posuere porta. Quisque ut nulla at nunc vehicula lacinia. Proin adipiscing porta tellus, ut feugiat nibh.Â Lorem ipsum nulla amos eget purus vel mauris tincidunt tincidunt nibh tortor. Nunc faucibus pellentesque facilisis. Interdum et malesuada fames ac ante ipsum primis in faucibus.\n\nNunc faucibus pellentesque facilisis. Sed hendrerit enim non justo posuere placerat. Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibh tortor. Nunc faucibus pellentesque facilisis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed non felis elit. Sed sodales in purus non porttitor.Â Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibh tortor. Nunc faucibus pellentesque facilisis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Sed non felis elit.[/vc_column_text][dt_gap height=\"30\"][vc_column_text][gallery mode=\"metro\" columns=\"5\" ids=\"12885,12886,12883,12882,12880,12877,12878\"][/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\n<h3>OUR AMBITIOUS GOALS</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_list style=\"2\" dividers=\"true\"]\n\n[dt_list_item image=\"\"]Curabitur porta tellus, ut feugiat nibhÂ pellentesque nulla dolor neque eget diam.[/dt_list_item]\n\n[dt_list_item image=\"\"]Quisque porta tellus, ut feugiat nibhut nulla at nunc vehicula lacinia.[/dt_list_item]\n\n[dt_list_item image=\"\"]Proin adipiscing porta tellus, ut feugiat nibh adipiscing porta tellus, ut feugiat nibh.[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem porta tellus, ut feugiat nibhÂ urabitur pellentesque neque eget diam.[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor duisque ut nulla at nunc vehicula lorem porta tellus, ut feugiat nibhÂ lacinia.[/dt_list_item]\n\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][vc_column_text]\n<h3>YEARS OF EXPERIENCE</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Nunc faucibus pellentesque facilisis. Sed hendrerit enim non justo posuere placerat. Lorem ipsum nulla amos eget purus vel mauris tincidunt tincidunt nibh tortor nunc faucibus. Interdum et malesuada fames ac ante ipsum primis in faucibus.[/vc_column_text][dt_gap height=\"25\"][vc_progress_bar values=\"100|Web development - 7 years,80|Marketing &amp; PR - 5 years,60|Photography - 3 years,30|Consulting - 1 year\" bgcolor=\"bar_blue\" options=\"striped\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"45\" padding_bottom=\"30\" margin_top=\"30\" margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/2\"][vc_column_text]\n<h3>FOUNDERS</h3>\n[/vc_column_text][dt_gap height=\"25\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\n<h3><img class=\"alignleft size-full wp-image-15931\" alt=\"founder01\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/05/person-03.jpg\" width=\"180\" height=\"180\" />James Brown</h3>\n<em>programmer, coder</em>\n\nNunc faucibus facilisisÂ pellen tesque facilisis. Sed hendrerit enim non justo posuere placerat. Phasellus eget purus vel mauris tincidunt tincidunt.\n[dt_social_icons animation=\"none\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"mail\" link=\"irina@forge.com.ua\" /][dt_social_icon target_blank=\"true\" icon=\"dribble.com\" link=\"\" /][/dt_social_icons][/vc_column_text][/vc_column_inner][/vc_row_inner][dt_gap height=\"35\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\n<h3><img class=\"alignleft size-full wp-image-15931\" alt=\"founder02\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/05/person-02.jpg\" width=\"180\" height=\"180\" />Diana Firebird</h3>\n<em>web designer, photographer</em>\n\nPhasellus eget purus vel mauris tincidunt tincidunt. Sed et nibh tortor. Nunc faucibus pellentesque facilisis. Interdum et malesuada fames!\n[dt_social_icons animation=\"none\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"mail\" link=\"irina@forge.com.ua\" /][/dt_social_icons][/vc_column_text][/vc_column_inner][/vc_row_inner][dt_gap height=\"35\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\n<h3>CORE TEAM</h3>\n[/vc_column_text][dt_gap height=\"25\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<h5><img class=\"alignleft size-full wp-image-15939\" alt=\"core01\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/05/person-01.jpg\" width=\"65\" width=\"65\" />James Brown</h5>\n<em>programmer</em>\n[dt_social_icons animation=\"none\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"flickr\" link=\"\"/][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"\"/][/dt_social_icons][/vc_column_text][dt_gap height=\"35\"][vc_column_text]\n<h5><img class=\"alignleft size-full wp-image-15939\" alt=\"core03\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/05/person-03.jpg\" width=\"65\" width=\"65\" />Tiffany Black</h5>\n<em>photographer</em>\n[dt_social_icons animation=\"none\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"\"/][dt_social_icon target_blank=\"true\" icon=\"flickr\" link=\"\"/][dt_social_icon target_blank=\"true\" icon=\"website\" link=\"\"/][/dt_social_icons][/vc_column_text][dt_gap height=\"35\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]\n<h5><img class=\"alignleft size-full wp-image-15939\" alt=\"core04\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/05/person-02.jpg\" width=\"65\" width=\"65\" />Anna Green</h5>\n<em>tester</em>\n[dt_social_icons animation=\"none\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"\"/][dt_social_icon target_blank=\"true\" icon=\"flickr\" link=\"\"/][dt_social_icon target_blank=\"true\" icon=\"mail\" link=\"irina@forge.com.ua\"/][/dt_social_icons][/vc_column_text][dt_gap height=\"35\"][vc_column_text]\n<h5><img class=\"alignleft size-full wp-image-15939\" alt=\"core02\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/05/person-04.jpg\" width=\"65\" width=\"65\" />Richard Anderson</h5>\n<em>manager</em>\n[dt_social_icons animation=\"none\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"\"/][dt_social_icon target_blank=\"true\" icon=\"mail\" link=\"irina@forge.com.ua\"/][/dt_social_icons][/vc_column_text][dt_gap height=\"35\"][/vc_column_inner][/vc_row_inner][dt_gap height=\"15\"][vc_column_text]\n<h3>WE ARE HIRING</h3>\n[/vc_column_text][dt_gap height=\"25\"][vc_accordion][vc_accordion_tab title=\"HTML Coder\"][vc_column_text]Nunc faucibus facilisisÂ pellen tesque facilisis. Sed hendrerit enim non justo posuere placerat dolorÂ et nibh tortor. Nunc faucibus pellentesque facilisis. Interdum et malesuada amet fames ac ante ipsum primis in faucibus. Sed non felis elit. Sed sodales in purus non malesuada fames ac ante ipsum primis in dolor. Sed non felis elit porttitor![/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"PHP Programmer\"][vc_column_text]Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibh tortor. Nunc faucibus pellentesque facilisis. Interdum et malesuada fames ac ante ipsum primis in faucibus.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SMM Specialist\"][vc_column_text]Sed et nibh tortor.Â Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibh tortor. Nunc faucibus pellentesque facilisis. Interdum et malesuada fames ac ante ipsum primis in faucibus sodales in purus non malesuada fames.[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_portfolio_slider appearance=\"text_on_image\" height=\"260\" meta_info=\"false\" margin_top=\"-1\" margin_bottom=\"-41\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"projects-2,projects-3,projects-4,projects-1\" under_image_buttons=\"under_image\" hover_animation=\"fade\" hover_bg_color=\"accent\" hover_content_visibility=\"on_hover\"][/vc_column][/vc_row]", "About us (agency)", "", "publish", "closed", "closed", "", "about-us-agency", "", "", "2013-10-30 09:27:55", "2013-10-30 09:27:55", "", "12753", "http://the7.dream-demo.com/dummy/?page_id=12772", "126", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12790", "2", "2013-11-22 14:42:50", "2013-11-22 14:42:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\n<h3>Welcome to our website!</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<img class=\"alignleft size-full wp-image-9806\" alt=\"promo-img-big\" src=\"http://the7.dream-demo.com/wp-content/uploads/2013/05/promo-img-big.jpg\" width=\"110\" />Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h3>Contact info</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\n<h6>Address:</h6>\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\n[dt_divider style=\"thin\" /]\n<h6>Phone number:</h6>\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\n[dt_divider style=\"thin\" /]\n<h6>We are open:</h6>\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\n[dt_divider style=\"thin\" /]\n<h6>Social links:</h6>\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h3>Our services</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna lorem.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellen tesque.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sit velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"20\" margin_bottom=\"48\"][vc_column width=\"1/4\"][vc_column_text]\n<h3>Our partners</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Sed interdum, lacus et vulputate pellen tesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend dictum urna.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/shortcodes/clients-logos/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Become a partner[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_logos columns=\"5\" dividers=\"true\" number=\"10\" orderby=\"date\" order=\"desc\" animation=\"fade\"][dt_gap height=\"50\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\n<h3>Products and services</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\n<h4>Consulting</h4>\nPellen tesque velit nulla commodo sem at egestas unitas potenti ornare felis porttitor ametÂ sit.\n\n[dt_gap height=\"5\"]\n\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\n<h4>Web design</h4>\nLorem nulla ipsum dolor for amet comma unitas potenti ornare felis porttitor ametÂ sit amante.\n\n[dt_gap height=\"5\"]\n\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\n<h4>Programming</h4>\nLacus et vulputate pellen tesque velit nulla commodo sem at egestas lorem ipsum dolor amet.\n\n[dt_gap height=\"5\"]\n\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\n<h3>Core features</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\n[dt_gap height=\"5\" /]\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "Business", "", "publish", "closed", "closed", "", "business", "", "", "2013-11-22 14:42:50", "2013-11-22 14:42:50", "", "0", "http://the7.dream-demo.com/dummy/?page_id=12790", "47", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12796", "2", "2013-11-22 14:50:08", "2013-11-22 14:50:08", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\n<h3>Hello and welcome to our website!</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_fancy_image style=\"1\" align=\"left\" padding=\"0\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"85\" animation=\"none\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/promo-img.jpg\"][/dt_fancy_image]Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum.Â Nulla facilisi congue eu urna to lorem gravida quisÂ ornare vel, mattis sed eros. Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem!Â Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis.\n\nNulla facilisi congue eu ornare vel, mattis sed eros.Â Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien urna to lorem gravida quisÂ ornare vel ipsum dolor sit amet communitasÂ erdum![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h3>Our specialisation</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi. Sed at mattis ipsum.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus![/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sitÂ interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h3>We are good at</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_progress_bars show_percentage=\"true\"][dt_progress_bar title=\"Web design\" color=\"\" percentage=\"95\" /][dt_progress_bar title=\"Programming\" color=\"\" percentage=\"80\" /][dt_progress_bar title=\"Marketing\" color=\"\" percentage=\"65\" /][dt_progress_bar title=\"WordPress\" color=\"\" percentage=\"50\" /][dt_progress_bar title=\"Communication\" color=\"\" percentage=\"35\" /][/dt_progress_bars][/vc_column_text][dt_gap height=\"20\"][/vc_column][/vc_row][vc_row type=\"3\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"30\" margin_top=\"30\" margin_bottom=\"50\"][vc_column width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"8\" min_height=\"220\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" link=\"http://the7.dream-demo.com/features-2/\"]\n<h3 style=\"text-align: center;\">MOBILE FRIENDLY</h3>\n<h5 style=\"text-align: center;\">Suspen dolor glavrida amet loremis porttitor cursus pulvina.</h5>\n[/dt_banner][/vc_column][vc_column width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"8\" min_height=\"220\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" link=\"http://the7.dream-demo.com/features-2/\"]\n<h3 style=\"text-align: center;\">TRENDY DESIGN</h3>\n<h5 style=\"text-align: center;\">Lorem ipsum glavrida amet loremis amet sitos cursus dolor.</h5>\n[/dt_banner][/vc_column][vc_column width=\"1/3\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"8\" min_height=\"220\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" link=\"http://the7.dream-demo.com/features-2/\"]\n<h3 style=\"text-align: center;\">EASY TO WORK WITH</h3>\n<h5 style=\"text-align: center;\">Galation ipsum glavrida amet glavis amet sitos lorem ipsum.</h5>\n[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][dt_benefits_vc columns=\"3\" style=\"2\" dividers=\"true\" image_background=\"true\" target_blank=\"true\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"scale\" category=\"captions1\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h3>Testimonials</h3>\n[/vc_column_text][dt_gap height=\"20\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"20\"][/vc_column][/vc_row][vc_row type=\"3\" bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"40\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\n[dt_gap height=\"5\" /]\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"true\"]VIEW DETAILS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"10\"][vc_column_text]\n<h3>Pricing plans</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_list style=\"2\" dividers=\"true\"]\n\n[dt_list_item image=\"\"]Lorem temporur adipiscing;[/dt_list_item]\n\n[dt_list_item image=\"\"]Phaseu tempor sit lorem;[/dt_list_item]\n\n[dt_list_item image=\"\"]Wael venenatis et eu mauris;[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor conse.[/dt_list_item]\n\n[/dt_list]\n\nSed interdum, lacus et vulputate pellen tesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"3/4\"][vc_column_text][go_pricing id=\"demo-blue_11_clone\"][/vc_column_text][/vc_column][/vc_row][vc_row type=\"3\" bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"50\" padding_bottom=\"30\" margin_top=\"0\" margin_bottom=\"-41\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"3/4\"][dt_gap height=\"5\"][dt_blog_posts type=\"grid\" columns=\"3\" same_width=\"true\" number=\"3\" orderby=\"date\" order=\"desc\" category=\"career-blog,entertainment-blog,blog-category-02,blog-category-03\" padding=\"20\" column_width=\"300\" proportion=\"11:8\"][dt_gap height=\"10\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h3>Popular posts</h3>\n[/vc_column_text][dt_gap height=\"20\"][dt_blog_posts_small columns=\"1\" featured_images=\"true\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"wordpress-blog,programming-blog,fashion-blog,blog-category-01,blog-category-02\"][dt_gap height=\"10\"][/vc_column][/vc_row]", "01 - Business", "", "publish", "closed", "closed", "", "01-business", "", "", "2013-11-22 14:50:08", "2013-11-22 14:50:08", "", "12790", "http://the7.dream-demo.com/dummy/?page_id=12796", "18", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12797", "2", "2013-11-22 14:51:54", "2013-11-22 14:51:54", "[vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"30\" margin_top=\"-36\" margin_bottom=\"50\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">PREMIUM QUALITY</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">ULTRA POWERFUL</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-010.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">FREE REGULAR UPDATES</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">TRANSLATION READY</h3>\r\n[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Welcome to South Island Centre</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_fancy_image style=\"1\" align=\"left\" padding=\"0\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"85\" animation=\"none\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/promo-img.jpg\"][/dt_fancy_image]Sed interdum, lacus et vulpu fatate pellen tesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit dictum. Nulla facilisi congue eu urna to lorem gravida quisÂ ornare vel, mattis sed eros.Â Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien!\r\n\r\nLorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2014 Course Offerings</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web Development\"][vc_column_text]Nullam imperdiet mattis rutrum velit nulla eget dictum urna to lorem gravida quis. Nulla mattis nulaÂ facilisi. Mauris et dictum ante. Praesent mattis ipsum rutrum nula velit eget quam! Mauris et dictum ante. Praesent elit dui, congue eu ornare vel, mattis sed eros. Sed at mattis ipsum rutrum velit eget quam sed mattis ipsum.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Business Consulting\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus![/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sitÂ interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum!Â Lorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet.[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"20\" padding_bottom=\"20\" margin_top=\"15\" margin_bottom=\"50\"][vc_column width=\"1/1\"][dt_call_to_action content_size=\"normal\" text_align=\"left\" background=\"no\" line=\"false\" style=\"1\" animation=\"top\"]\r\n<h3>Introducing <span class=\"paint-accent-color\">The7</span> - ultra powerful multipurpose premium WordPress theme!</h3>\r\n<h5>Everything you need to build an excellent website. Quickly. Without touching a line of code.</h5>\r\n[dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]Give it a try today![/dt_button][/dt_call_to_action][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"40\" margin_bottom=\"40\"][vc_column width=\"1/1\"][dt_benefits_vc columns=\"3\" style=\"3\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\" category=\"captions1\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"60\" margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"2/3\"][vc_column_text]\r\n<h3>Our services &amp; skills</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_tour style=\"tab-style-three\" interval=\"0\"][vc_tab title=\"Web Design &amp; Programming\" tab_id=\"1378898037-1-563a37-0e93\"][vc_column_text]Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla. Nullam velit nulla laoreet consectetur lorem ut [dt_tooltip title=\"lorem ipsum dolor\"]Lorem rhoncus nisi rutrum velit nulla commodo sem, at egestas nulla metus vel sapien.[/dt_tooltip] glavrida unicos amosac. Nullam rutrum velit eget quam pretium vehicula.Â Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\r\n\r\nNullam porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim laoreet consectetur lorem, ut rhoncus nisi rutrum ac. Nullam rutrum velit eget quam pretium vehicula porttitor odio non nunc laoreet.\r\n\r\n[dt_gap height=\"10\"]\r\n<h5>Lorem ipsum dolor list:</h5>\r\n[dt_gap height=\"10\"]\r\n\r\n[dt_list style=\"2\" dividers=\"false\"]\r\n\r\n[dt_list_item image=\"\"]Lorem euismod eu ipsum dolor sit consectetur adipiscing elit;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Phasellus lacinia rhoncus iaculis eu tempor sit amet lorem;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Wael nisl ideu tempor sit libero ornare venenatis et eu mauris;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Lorem euismod eu tempor sit amet ipsum dolor adipiscing;[/dt_list_item]\r\n\r\n[/dt_list][/vc_column_text][/vc_tab][vc_tab title=\"Creative Photography\" tab_id=\"1378898887808-3-83a37-0e93\"][vc_column_text]\r\n\r\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12885,12884,12883,12882,12880,12878,12879\"]\r\n\r\n[dt_gap height=\"15\" /]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum. Dolor ut mollis elit et vestibulum mattis integer aenean nulla, in vitae id augue vitae amet minim.\r\n\r\nCurabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Business Education\" tab_id=\"1378898730907-2-13a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum consectetur adipiscing elitÂ tempor.\r\n\r\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\r\n\r\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Consulting &amp; Training\" tab_id=\"1378898037-2-23a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra viverra mauris vel mi blandit mattis mauris vel mi blandit mattis. Aenean a quis rhoncus tellus, quis luctus ligula tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien. Maecenas enim velit, euismod eu tempor.[/vc_column_text][/vc_tab][vc_tab title=\"Marketing, SEO, PR\" tab_id=\"1378899301675-4-43a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta.\r\n\r\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\r\n\r\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][/vc_tour][dt_gap height=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Send us a message!</h3>\r\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,telephone,company,message\" message_height=\"6\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"medium\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_small_photos height=\"100\" margin_top=\"20\" margin_bottom=\"-20\" number=\"20\" orderby=\"recent\" category=\"template,albums-category-01,albums-category-02,albums-category-03\" lightbox=\"true\"][/vc_column][/vc_row]", "homepage lower banner", "", "publish", "closed", "closed", "", "02-business", "", "", "2017-06-21 23:08:18", "2017-06-22 06:08:18", "", "12790", "http://the7.dream-demo.com/dummy/?page_id=12797", "30", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12799", "2", "2013-11-22 14:58:29", "2013-11-22 14:58:29", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]Â </span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, October 11 - November 15, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (2018, dates to be determined.Â  Wait list being taken)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Fall 2018. Dates to be determined)</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>\r\n\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "publish", "closed", "closed", "", "03-business", "", "", "2018-05-01 15:19:41", "2018-05-01 22:19:41", "", "0", "http://the7.dream-demo.com/dummy/?page_id=12799", "7", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12818", "2", "2013-11-22 17:47:30", "2013-11-22 17:47:30", "[vc_row type=\"4\" bg_color=\"#020202\" bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"-36\" margin_bottom=\"0\" parallax_speed=\"0.3\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/09/demo04.jpg\" enable_parallax=\"false\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/2\" animation=\"bottom-to-top\"][dt_gap height=\"25\"][vc_column_text]\n<h2>Introducing The7 WP theme!</h2>\n[/vc_column_text][dt_gap height=\"30\"][dt_benefits_vc columns=\"2\" style=\"2\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"4\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"captions1\"][dt_gap height=\"35\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row type=\"4\" bg_color=\"#e0dedf\" bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"-1\" margin_bottom=\"0\" parallax_speed=\"0.3\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/09/demo02.jpg\" enable_parallax=\"false\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" animation=\"bottom-to-top\"][dt_gap height=\"20\"][vc_column_text]\n<h2><span style=\"color: #2d3134;\">Core features of The7</span></h2>\n[/vc_column_text][dt_gap height=\"25\"][vc_column_text]<span style=\"color: #2d3134;\">Nunc molestie dolor nec magna fermen atum in amet pharetra orci mollis tempor from diam elit. Praesent magna fortis metus, conse quat conse actetur viverra nec, convallis et lacus. </span>\n\n<span style=\"color: #2d3134;\">Aenean tempor tincidunt odio auis volutpat sollicit ludin ante acotios hendre doloris estibulum in tempus lorem.Â Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus.</span>[/vc_column_text][dt_gap height=\"25\"][vc_column_text][dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"false\"][dt_list_item image=\"\"]<span style=\"color: #2d3134;\">Exclusive slideshows</span>[/dt_list_item][dt_list_item image=\"\"]<span style=\"color: #2d3134;\">Multiple header layouts</span>[/dt_list_item][dt_list_item image=\"\"]<span style=\"color: #2d3134;\">Premium-class support for free</span>[/dt_list_item][dt_list_item image=\"\"]<span style=\"color: #2d3134;\">100% Mobile tested</span>[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"false\"][dt_list_item image=\"\"]<span style=\"color: #2d3134;\">6 ready-made skins</span>[/dt_list_item][dt_list_item image=\"\"]<span style=\"color: #2d3134;\">Compatible with popular plugins</span>[/dt_list_item][dt_list_item image=\"\"]<span style=\"color: #2d3134;\">16 custom widgets</span>[/dt_list_item][dt_list_item image=\"\"]<span style=\"color: #2d3134;\">40+ visual shortcodes</span>[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"4\" bg_color=\"#030308\" bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"-1\" margin_bottom=\"-40\" parallax_speed=\"0.3\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/09/demo03.jpg\" enable_parallax=\"false\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/2\" animation=\"bottom-to-top\"][dt_gap height=\"20\"][vc_column_text]\n<h2>What our clients say</h2>\n[/vc_column_text][dt_gap height=\"25\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.Â Nunc molestie dolor nec magna fermen atum in amet pharetra orci mollis tempor from diam elit. Praesent magna fortis metus, conse quat conse actetur viverra nec, convallis et lacus.[/vc_column_text][dt_gap height=\"28\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"7\" orderby=\"date\" order=\"desc\" category=\"widgets-small,testimonials-category-01,testimonials-category-02\"][dt_gap height=\"45\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row type=\"4\" bg_color=\"#dadfe2\" bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"0\" margin_bottom=\"-41\" parallax_speed=\"0.3\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/09/demo01.jpg\" enable_parallax=\"false\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" animation=\"bottom-to-top\"][dt_gap height=\"20\"][vc_column_text]\n<h2><span style=\"color: #2d3134;\">Featured Projects</span></h2>\n[/vc_column_text][dt_gap height=\"25\"][vc_column_text]<span style=\"color: #2d3134;\">Aenean tempor tincidunt odio auis volutpat sollicit dolor nec magna fermen atum in amet pharetraÂ ludin ante acotios hendre doloris estibulum in tempus lorem.Â Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus.</span>[/vc_column_text][dt_gap height=\"30\"][dt_portfolio type=\"grid\" columns=\"2\" same_width=\"true\" descriptions=\"on_hover\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"makeup-folio,projects-category-1,projects-category-2,projects-category-3,projects-1,projects-3\" meta_info=\"false\" proportion=\"8:5\" padding=\"20\" target_height=\"250\" column_width=\"300\" under_image_buttons=\"under_image\" hover_animation=\"fade\" hover_bg_color=\"dark\" hover_content_visibility=\"on_hover\" show_link=\"false\" show_excerpt=\"false\"][dt_gap height=\"25\"][/vc_column][/vc_row]", "01 - Parallax", "", "publish", "closed", "closed", "", "01-parallax", "", "", "2013-11-22 17:47:30", "2013-11-22 17:47:30", "", "0", "http://the7.dream-demo.com/dummy/?page_id=12818", "47", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12820", "2", "2013-11-22 17:54:59", "2013-11-22 17:54:59", "[vc_row type=\"5\" bg_position=\"top\" bg_repeat=\"repeat-y\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"45\" padding_bottom=\"30\" margin_top=\"-36\" margin_bottom=\"0\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/rainbow.jpg\" enable_parallax=\"false\" parallax_speed=\"-0.3\" bg_color=\"#def7fb\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Core Features of The7</h2>\n<h4 style=\"text-align: center;\"><span class=\"paint-accent-color\">Super Powerful &amp; Easy to Use Theme</span></h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_gap height=\"5\"][vc_single_image css_animation=\"left-to-right\" img_link_target=\"_self\" img_size=\"580x307\" image=\"12674\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\n\n[dt_gap height=\"10\" /]\n\n[dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]Exclusive slideshows[/dt_list_item][dt_list_item image=\"\"]Multiple header layouts[/dt_list_item][dt_list_item image=\"\"]Premium-class support for free[/dt_list_item][dt_list_item image=\"\"]100% Mobile tested[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]6 ready-made skins[/dt_list_item][dt_list_item image=\"\"]Compatible with popular plugins[/dt_list_item][dt_list_item image=\"\"]16 custom widgets[/dt_list_item][dt_list_item image=\"\"]40+ visual shortcodes[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][dt_gap height=\"15\"][dt_button target_blank=\"false\" size=\"small\" animation=\"scale\" link=\"http://the7.dream-demo.com/features-2/\"]View All Features[/dt_button][dt_gap height=\"20\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"0\" margin_top=\"-1\" margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][dt_gap height=\"45\"][vc_column_text]\n<h2 style=\"text-align: center;\">Clients &amp; Testimonials</h2>\n<h4 style=\"text-align: center;\"><span class=\"paint-accent-color\">More then 20 000 of happy customers</span></h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-02,testimonials-category-01\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_logos columns=\"3\" dividers=\"true\" number=\"6\" orderby=\"date\" order=\"asc\" animation=\"scale\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"5\" bg_position=\"top\" bg_repeat=\"repeat-y\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"45\" padding_bottom=\"20\" margin_top=\"10\" margin_bottom=\"0\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/rainbow2.jpg\" enable_parallax=\"false\" parallax_speed=\"-0.3\" bg_color=\"#def7fb\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Featured Portfolio Projects</h2>\n<h4 style=\"text-align: center;\"><span class=\"paint-accent-color\">Best &amp; Most Popular of Our Works</span></h4>\n[/vc_column_text][dt_gap height=\"33\"][vc_column_text]\n<p style=\"text-align: center;\">Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas lorem.\nNulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames turpis egestas![/vc_column_text][dt_gap height=\"40\"][dt_portfolio_slider height=\"200\" margin_top=\"0\" margin_bottom=\"0\" number=\"12\" orderby=\"date\" order=\"desc\" appearance=\"default\" under_image_buttons=\"under_image\" hover_animation=\"fade\" hover_bg_color=\"accent\" hover_content_visibility=\"on_hover\" width=\"280\" meta_info=\"false\" show_details=\"false\" show_link=\"false\" show_zoom=\"false\" category=\"05-portfolio,03-portfolio,07-portfolio,projects-2,projects-3,projects-4\"][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"60\" margin_top=\"-1\" margin_bottom=\"0\" parallax_speed=\"0.1\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/1\"][dt_gap height=\"45\"][vc_column_text]\n<h2 style=\"text-align: center;\">Our Skills &amp; Services</h2>\n<h4 style=\"text-align: center;\"><span class=\"paint-accent-color\">Who We Are &amp; What We Do</span></h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_tabs style=\"tab-style-one\" interval=\"0\"][vc_tab title=\"Web design\" tab_id=\"1378818650212-2-2a17d-7dcb\"][vc_column_text][dt_fancy_image style=\"1\" lightbox=\"0\" align=\"left\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"188\" image_alt=\"The7 - Premium WordPress Theme\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-007.jpg\"][/dt_fancy_image]Lorem ipsum dolor sit amet, consectetur adipiscing elit. CurabiturÂ [dt_tooltip title=\"neque interdum\"]Maecenas enim velit. Maecenas eu metus vel leo placerat cursus.[/dt_tooltip] tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit. Maecenas eu metus vel leo placerat cursus. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla lorem ipsum porta lorem ipsum.Â Glavrida dolor ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus consectetur adipiscing elit metus vel leo placerat cursus lorem.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][vc_tab title=\"Programming\" tab_id=\"1378818268-1-55a17d-7dcb\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Fusce nec ipsum ac mauris imperdiet luctus sed vitae ligula.[dt_gap height=\"20\" /]\n\n[dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]Exclusive slideshows[/dt_list_item][dt_list_item image=\"\"]Multiple header layouts[/dt_list_item][dt_list_item image=\"\"]Premium-class support for free[/dt_list_item][dt_list_item image=\"\"]100% Mobile tested[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]6 ready-made skins[/dt_list_item][dt_list_item image=\"\"]Compatible with popular plugins[/dt_list_item][dt_list_item image=\"\"]25 custom widgets[/dt_list_item][dt_list_item image=\"\"]40+ visual shortcodes[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][/vc_tab][vc_tab title=\"Photography\" tab_id=\"1378818268-2-35a17d-7dcb\"][vc_column_text][dt_gap height=\"5\" /]\n\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12885,12876,12877,12878,12879,12880,12882\"]\n\n[dt_gap height=\"15\" /]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][vc_tab title=\"SEO\" tab_id=\"1378819835493-4-5a17d-7dcb\"][vc_column_text][dt_fancy_image style=\"1\" lightbox=\"0\" align=\"left\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"188\" image_alt=\"The7 - Premium WordPress Theme\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-007.jpg\"][/dt_fancy_image]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur dolor amet glavrida tellus, quis lorem ipsum tooltip luctus ligula.\n\nCurabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus. Nullam rutrum velit eget quam [dt_highlight color=\"blue\"]pretium amet vehicula[/dt_highlight] adipiscing elit. Maecenas enim velit. Maecenas eu metus vel leo placerat cursus. Curabitur quis rhoncus tellus, quisÂ [dt_highlight color=\"berry\"]lorem ipsum dolor[/dt_highlight] luctus ligula. Curabitur laoreet fringilla lorem ipsum porta. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][/vc_tabs][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_benefits_vc columns=\"2\" style=\"2\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"4\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"captions1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "02 - Parallax", "", "publish", "closed", "closed", "", "02-parallax", "", "", "2013-11-22 17:54:59", "2013-11-22 17:54:59", "", "0", "http://the7.dream-demo.com/dummy/?page_id=12820", "58", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12826", "2", "2013-11-22 18:33:33", "2013-11-22 18:33:33", "[vc_row][vc_column width=\"1/1\"][vc_column_text]Create awesome trendy layouts with fullwidth stripes! Use existing page examples from our dummy content, or design your own unique pages. Stripes are extremely easy to use - they are fully integrated into Visual Composer, so you don\'t need to mess up with complicated [text shortcodes]. Stripes are responsive and work perfectly in all modern browsers; support fixed fullwidth images, patterns, parallax effects and even videos![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\n<h3>Features and settings</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_list style=\"1\" dividers=\"false\"]\n\n[dt_list_item image=\"\"]2 default stripes with predefined text &amp; lines colors (for light and dark backgrounds) - #4, #5[/dt_list_item]\n\n[dt_list_item image=\"\"]3 stripe slots in Theme OptionsÂ with fully customizable headers, text &amp; lines colors - #1, #2, #3[/dt_list_item]\n\n[dt_list_item image=\"\"]background color setting[/dt_list_item]\n\n[dt_list_item image=\"\"]background image setting[/dt_list_item]\n\n[dt_list_item image=\"\"]image repeat &amp; positioning; fullscreen image[/dt_list_item]\n\n[dt_list_item image=\"\"]parallax with speed and direction settings[/dt_list_item]\n\n[dt_list_item image=\"\"]supports fullscreen self-hosted videos[/dt_list_item]\n\n[dt_list_item image=\"\"]top and bottom margins &amp; paddings (you can use them to stick stripes to header and footer or instead of gaps)[/dt_list_item]\n\n[/dt_list][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_gap height=\"35\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\n<h3>Setting up stripe in Visual Composer</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_row_inner][vc_column_inner width=\"1/1\"][dt_fancy_image type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/stripes-composer.jpg\" image_alt=\"Stripe options pop-up window\" lightbox=\"true\" style=\"3\" width=\"890\" padding=\"10\" align=\"left\" animation=\"none\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_column_text]\n<h3>Editing stripe style in Theme Options</h3>\n[/vc_column_text][dt_gap height=\"20\"][dt_fancy_image type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/stripes-design.jpg\" image_alt=\"Headers, text &amp; default background settings\" lightbox=\"true\" style=\"3\" width=\"890\" padding=\"10\" align=\"left\" animation=\"none\"][/vc_column][/vc_row][vc_row type=\"3\" bg_position=\"top\" bg_repeat=\"repeat-y\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"20\" parallax_speed=\"0.1\" margin_top=\"50\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Stripe Style #3 with Fixed Background</h2>\n[/vc_column_text][dt_gap height=\"5\"][vc_column_text]\n<h4 style=\"text-align: center;\">Text &amp; lines colors are customisable via Theme Options</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text][dt_list style=\"1\" dividers=\"true\"]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[dt_list_item image=\"\"]Â Maecenas id lacus tempor amet[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Aenean suscipit vulputate lorem[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor. Nam at ligula sagittis, vulputate tortor vitae, lobortis tellus. Aenean suscipit vulputate lorem a bibendum. Proin volutpat sit amet sapien id venenatis. Maecenas id lacus tempor, sollicitudin odio vitae, sagittis eros. Mauris suscipit lorem quis dictum faucibus.\n\nPhasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor.[/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/12/dt-082.jpg\" image_alt=\"banner-image\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"none\" target=\"blank\"]\n<h4>Lorem ipsum dolor</h4>\nAmet onse lorem ipsum adipiscing elit congue volutpat.[/dt_teaser][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" parallax_speed=\"0.1\" margin_top=\"-1\" margin_bottom=\"0\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Stripe Style #1</h2>\n[/vc_column_text][dt_gap height=\"5\"][vc_column_text]\n<h4 style=\"text-align: center;\">Text &amp; lines colors are customisable via Theme Options</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor. Nam at ligula sagittis, vulputate tortor vitae, lobortis tellus. Aenean suscipit vulputate lorem a bibendum. Proin volutpat sit amet sapien id venenatis. Maecenas id lacus tempor, sollicitudin odio vitae!\n\nPhasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor.[/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/12/dt-083.jpg\" image_alt=\"banner-image\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"none\" target=\"blank\"]\n<h4>Lorem ipsum dolor</h4>\nAmet onse lorem ipsum adipiscing elit congue volutpat.[/dt_teaser][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_blog_posts_small columns=\"1\" featured_images=\"true\" number=\"3\" orderby=\"date\" order=\"desc\" category=\"programming-blog,sport-blog,photography-blog\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"4\" bg_position=\"center\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"20\" parallax_speed=\"0.2\" margin_top=\"-1\" margin_bottom=\"0\" bg_color=\"#19140f\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/qq1.jpg\" enable_parallax=\"false\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Stripe Style #4 with Parallax Background</h2>\n[/vc_column_text][dt_gap height=\"5\"][vc_column_text]\n<h4 style=\"text-align: center;\">Predefined light text &amp; lines color</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/12/dt-085.jpg\" image_alt=\"banner-image\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"none\" target=\"blank\"]\n<h4>Lorem ipsum dolor</h4>\nAmet onse lorem ipsum adipiscing elit congue volutpat.[/dt_teaser][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text][dt_list style=\"2\" dividers=\"true\"]\n\n[dt_list_item image=\"\"]Â Maecenas id lacus tempor amet[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Aenean suscipit vulputate lorem[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor. Nam at ligula sagittis, vulputate tortor vitae, lobortis tellus. Aenean suscipit vulputate lorem a bibendum. Proin volutpat sit amet sapien id venenatis. Maecenas id lacus tempor.\n\nPhasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor.[/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" parallax_speed=\"0.1\" margin_top=\"-1\" margin_bottom=\"0\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Stripe Style #2</h2>\n[/vc_column_text][dt_gap height=\"5\"][vc_column_text]\n<h4 style=\"text-align: center;\">Text &amp; lines colors are customisable via Theme Options</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text][dt_list style=\"2\" dividers=\"true\"]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[dt_list_item image=\"\"]Â Maecenas id lacus tempor amet[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Aenean suscipit vulputate lorem[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor. Nam at ligula sagittis, vulputate tortor vitae, lobortis tellus. Aenean suscipit vulputate lorem a bibendum. Proin volutpat sit amet sapien id venenatis. Maecenas id lacus tempor, sollicitudin odio vitae, sagittis eros. Mauris suscipit lorem quis dictum faucibus.\n\nPhasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor.[/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"home-small\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"5\" bg_position=\"top\" bg_repeat=\"repeat-y\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"20\" parallax_speed=\"-0.3\" margin_top=\"-1\" margin_bottom=\"0\" bg_color=\"#e7f6ff\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/12/rainbow.jpg\" enable_parallax=\"false\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Stripe Style #5 with Parallax Background</h2>\n[/vc_column_text][dt_gap height=\"5\"][vc_column_text]\n<h4 style=\"text-align: center;\">Predefined dark text &amp; lines color</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor. Nam at ligula sagittis, vulputate tortor vitae, lobortis tellus. Aenean suscipit vulputate lorem a bibendum. Proin volutpat sit amet sapien id venenatis. Maecenas id lacus tempor, sollicitudin odio vitae, sagittis eros. Mauris suscipit lorem quis dictum faucibus.\n\nPhasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor.[/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text][dt_list style=\"1\" dividers=\"true\"]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[dt_list_item image=\"\"]Â Maecenas id lacus tempor amet[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Aenean suscipit vulputate lorem[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/12/dt-087.jpg\" image_alt=\"banner-image\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"none\" target=\"blank\"]\n<h4>Lorem ipsum dolor</h4>\nAmet onse lorem ipsum adipiscing elit congue volutpat.[/dt_teaser][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"4\" bg_position=\"top\" bg_repeat=\"repeat-y\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"40\" padding_bottom=\"20\" parallax_speed=\"0.2\" margin_top=\"-1\" margin_bottom=\"-41\" bg_color=\"#2a0030\" bg_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/10/dark-rainbow.jpg\" bg_video_src_mp4=\"http://the7.dream-demo.com/wp-content/uploads/video-stripe/video2.mp4\" bg_video_src_webm=\"http://the7.dream-demo.com/wp-content/uploads/video-stripe/video2.webm\" padding_left=\"40\" padding_right=\"40\" bg_video_src_ogv=\"http://the7.dream-demo.com/wp-content/uploads/video-stripe/video2.ogv\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Stripe Style #4 with Video</h2>\n[/vc_column_text][dt_gap height=\"5\"][vc_column_text]\n<h4 style=\"text-align: center;\">Predefined light text &amp; lines color</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/12/dt-086.jpg\" image_alt=\"banner-image\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"none\" target=\"blank\"]\n<h4>Lorem ipsum dolor</h4>\nAmet onse lorem ipsum adipiscing elit congue volutpat.[/dt_teaser][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text][dt_list style=\"2\" dividers=\"true\"]\n\n[dt_list_item image=\"\"]Â Maecenas id lacus tempor amet[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Aenean suscipit vulputate lorem[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem ipsum dolor[/dt_list_item]\n\n[dt_list_item image=\"\"]Dolor amet glavrida amos[/dt_list_item]\n\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor. Nam at ligula sagittis, vulputate tortor vitae, lobortis tellus. Aenean suscipit vulputate lorem a bibendum. Proin volutpat sit amet sapien id venenatis. Maecenas id lacus tempor.\n\nPhasellus congue volutpat neque, semper hendrerit est sollicitudin imperdiet. Aenean id mauris quis massa tristique porttitor.[/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Stripes", "", "publish", "closed", "closed", "", "stripes", "", "", "2013-11-22 18:33:33", "2013-11-22 18:33:33", "", "12753", "http://the7.dream-demo.com/dummy/?page_id=12826", "912", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12954", "2", "2013-08-08 12:22:01", "2013-08-08 12:22:01", "", "Testimonials with fancy header", "", "publish", "closed", "closed", "", "testimonials", "", "", "2013-08-08 12:22:01", "2013-08-08 12:22:01", "", "12753", "http://presscore.dream-demo.com/dummy/?page_id=132", "82", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12957", "2", "2013-08-08 15:48:16", "2013-08-08 15:48:16", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\n<h3>Letâ€™s get in touch!</h3>\n[/vc_column_text][dt_gap height=\"10\"][vc_column_text]<img class=\"alignleft size-full wp-image-9806\" alt=\"promo-img-big\" src=\"http://the7.dream-demo.com/wp-content/uploads/2013/05/promo-img-big.jpg\" width=\"110\" height=\"150\" />\n\nLorem ipsum dolor sit amet, consec tetur a tempus mauris loremÂ adip iscing elit. Donec iaculis justo at sapien laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Â Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo.\n\nOfipsum dolor sit amet, consectetur adipiscing elit amet curabitur quis rhoncus tellus, quis luctus ligula. Curabitur loterios ipsum amet tempus laoreet.[/vc_column_text][dt_gap height=\"25\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\n<h3>Contact information</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\n<h6>Address:</h6>\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\n[dt_divider style=\"thin\" /]\n<h6>Phone number:</h6>\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\n[dt_divider style=\"thin\" /]\n<h6>E-mail:</h6>\n<p style=\"margin-top: -10px;\">info@your-site.com, sales@your-site.com</p>\n[dt_divider style=\"thin\" /]\n<h6>We are open:</h6>\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\n[dt_divider style=\"thin\" /]\n<h6>Social links:</h6>\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"left\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"forrst\" link=\"http://forrst.com/posts\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\n[/vc_column_text][dt_gap height=\"25\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\n<h3>Send us a message</h3>\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,telephone,message\" message_height=\"5\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"medium\"][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_map height=\"380\" margin_top=\"20\" margin_bottom=\"-46\" fullwidth=\"true\" src=\"https://maps.google.com/?ll=34.014674,-118.475518&amp;spn=0.031375,0.062227&amp;t=m&amp;z=15\"][/vc_column][/vc_row]", "Contact", "", "publish", "closed", "closed", "", "contact", "", "", "2013-08-08 15:48:16", "2013-08-08 15:48:16", "", "12753", "http://presscore.dream-demo.com/dummy/?page_id=292", "312", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12958", "2", "2013-08-19 08:18:37", "2013-08-19 08:18:37", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][dt_benefits_vc columns=\"4\" style=\"1\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"4\" orderby=\"date\" order=\"desc\" animation=\"scale\" category=\"no-captions,captions1\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]Turpis venenatis at laoreet. Etiam lorem nulla fuviverra minim sed metus egestas sapien conseto actetuer, ac etiam amet bibendum lorem ipsum dolor amet cras posuere pede placerat, velit neque felisios. Dolor ut mollis elit et vestibulum mattis integer aenean nulla, in vitae id augue vitae amet minim.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"45\" padding_bottom=\"30\" margin_top=\"25\" margin_bottom=\"45\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Core Features of The7</h2>\n<h4 style=\"text-align: center;\">Super Powerful &amp; Easy to Use Theme</h4>\n[/vc_column_text][dt_gap height=\"40\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_gap height=\"5\"][vc_single_image image=\"12674\" css_animation=\"left-to-right\" img_link_target=\"_self\" img_size=\"580x307\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.[dt_gap height=\"20\" /]\n\n[dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]Exclusive slideshows[/dt_list_item][dt_list_item image=\"\"]Multiple header layouts[/dt_list_item][dt_list_item image=\"\"]Premium-class support for free[/dt_list_item][dt_list_item image=\"\"]100% Mobile tested[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]6 ready-made skins[/dt_list_item][dt_list_item image=\"\"]Compatible with popular plugins[/dt_list_item][dt_list_item image=\"\"]16 custom widgets[/dt_list_item][dt_list_item image=\"\"]40+ visual shortcodes[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][dt_gap height=\"15\"][dt_button target_blank=\"false\" size=\"small\" animation=\"scale\" link=\"http://the7.dream-demo.com/features/full-features-list/\"]View All Features[/dt_button][dt_gap height=\"20\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Clients &amp; Testimonials</h2>\n<h4 style=\"text-align: center;\">More then 20 000 of happy customers</h4>\n[/vc_column_text][dt_gap height=\"45\"][/vc_column][/vc_row][vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/2\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/2\"][dt_logos columns=\"3\" dividers=\"true\" number=\"6\" orderby=\"date\" order=\"asc\" animation=\"scale\"][dt_gap height=\"45\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"45\" padding_bottom=\"30\" margin_top=\"10\" margin_bottom=\"0\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\" padding_left=\"40\" padding_right=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 style=\"text-align: center;\">Featured Portfolio Projects</h2>\n<h4 style=\"text-align: center;\">Best &amp; Most Popular of Our Works</h4>\n[/vc_column_text][dt_gap height=\"33\"][vc_column_text]\n<p style=\"text-align: center;\">Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas lorem.\nNulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames turpis egestas![/vc_column_text][dt_gap height=\"40\"][dt_portfolio_slider height=\"320\" width=\"320\" meta_info=\"false\" margin_top=\"0\" margin_bottom=\"-29\" number=\"10\" orderby=\"date\" order=\"desc\" category=\"03-portfolio,07-portfolio,05-portfolio,projects-1,projects-2,projects-3,projects-4\" appearance=\"from_bottom\" under_image_buttons=\"under_image\" hover_animation=\"direction_aware\" hover_bg_color=\"dark\" hover_content_visibility=\"on_hover\"][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"45\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text]</p>\n\n<h2 style=\"text-align: center;\">Our Skills &amp; Services</h2>\n<h4 style=\"text-align: center;\">Who We Are &amp; What We Do</h4>\n[/vc_column_text][dt_gap height=\"42\"][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\n<h4>What we are good at</h4>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit amet urabitur quis lacus at neque interdum tempor.[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_progress_bars show_percentage=\"true\"][dt_progress_bar title=\"Web design\" color=\"\" percentage=\"90\" /][dt_progress_bar title=\"Photography\" color=\"\" percentage=\"75\" /][dt_progress_bar title=\"Marketing &amp; PR\" color=\"\" percentage=\"60\" /][dt_progress_bar title=\"Consulting\" color=\"\" percentage=\"45\" /][/dt_progress_bars][/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/2\"][dt_gap height=\"2\"][vc_tabs style=\"tab-style-one\" interval=\"0\"][vc_tab title=\"Web design\" tab_id=\"1378818650212-2-240ee-02b5\"][vc_column_text][dt_fancy_image style=\"1\" lightbox=\"0\" align=\"left\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"188\" image_alt=\"The7 - Premium WordPress Theme\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\"][/dt_fancy_image]Lorem ipsum dolor sit amet, consectetur adipiscing elit. CurabiturÂ [dt_tooltip title=\"neque interdum\"]Maecenas enim velit. Maecenas eu metus vel leo placerat cursus.[/dt_tooltip] tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit. Maecenas eu metus vel leo placerat cursus. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla lorem ipsum porta lorem ipsum.Â Glavrida dolor ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][vc_tab title=\"Programming\" tab_id=\"1378818268-1-5540ee-02b5\"][vc_column_text]Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Nulla facilisi. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Fusce nec ipsum ac mauris imperdiet luctus sed vitae ligula.[dt_gap height=\"20\" /]\n\n[dt_box]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]Exclusive slideshows[/dt_list_item][dt_list_item image=\"\"]Multiple header layouts[/dt_list_item][dt_list_item image=\"\"]Premium-class support for free[/dt_list_item][dt_list_item image=\"\"]100% Mobile tested[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[dt_cell width=\"1/2\"]\n\n[dt_list style=\"1\" dividers=\"true\"][dt_list_item image=\"\"]6 ready-made skins[/dt_list_item][dt_list_item image=\"\"]Compatible with popular plugins[/dt_list_item][dt_list_item image=\"\"]25 custom widgets[/dt_list_item][dt_list_item image=\"\"]40+ visual shortcodes[/dt_list_item][/dt_list]\n\n[/dt_cell]\n\n[/dt_box][/vc_column_text][/vc_tab][vc_tab title=\"Photography\" tab_id=\"1378818268-2-3540ee-02b5\"][vc_column_text][dt_gap height=\"5\" /]\n\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12884,12882,12880,12879,12885,12898,12896\"]\n\n[dt_gap height=\"15\" /]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][vc_tab title=\"SEO\" tab_id=\"1378819835493-4-540ee-02b5\"][vc_column_text][dt_fancy_image style=\"1\" lightbox=\"0\" align=\"left\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"188\" image_alt=\"The7 - Premium WordPress Theme\" image=\"http://the7.dream-demo.com/dummy/wp-content/uploads/2013/08/dt-015.jpg\"][/dt_fancy_image]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur dolor amet glavrida tellus, quis lorem ipsum tooltip luctus ligula.\n\nCurabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit metus vel leo placerat cursus. Nullam rutrum velit eget quam [dt_highlight color=\"blue\"]pretium amet vehicula[/dt_highlight] adipiscing elit. Maecenas enim velit. Maecenas eu metus vel leo placerat cursus. Curabitur quis rhoncus tellus, quisÂ [dt_highlight color=\"berry\"]lorem ipsum dolor[/dt_highlight] luctus ligula. Curabitur laoreet fringilla lorem ipsum porta. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit.[/vc_column_text][dt_gap height=\"10\"][/vc_tab][/vc_tabs][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\n<h4>Get in touch!</h4>\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,message\" message_height=\"5\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"small\"][/vc_column][/vc_row]", "Sliders", "", "publish", "closed", "closed", "", "sliders", "", "", "2013-08-19 08:18:37", "2013-08-19 08:18:37", "", "0", "http://presscore.dream-demo.com/dummy/?page_id=369", "53", "page", "", "0");
INSERT INTO `wp_posts` VALUES("12966", "2", "2014-07-04 09:14:32", "2014-07-04 16:14:32", " ", "", "", "publish", "closed", "closed", "", "12966", "", "", "2014-07-04 09:14:32", "2014-07-04 16:14:32", "", "0", "http://localhost:8888/TestSICPage/wordpress/12966/", "29", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("12971", "2", "2014-07-04 09:14:33", "2014-07-04 16:14:33", " ", "", "", "publish", "closed", "closed", "", "12971", "", "", "2014-07-04 09:14:33", "2014-07-04 16:14:33", "", "12794", "http://localhost:8888/TestSICPage/wordpress/12971/", "16", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("12972", "2", "2014-07-04 09:14:33", "2014-07-04 16:14:33", " ", "", "", "publish", "closed", "closed", "", "12972", "", "", "2014-07-04 09:14:33", "2014-07-04 16:14:33", "", "12794", "http://localhost:8888/TestSICPage/wordpress/12972/", "15", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("12985", "2", "2014-07-04 09:14:33", "2014-07-04 16:14:33", " ", "", "", "publish", "closed", "closed", "", "12985", "", "", "2014-07-04 09:14:33", "2014-07-04 16:14:33", "", "12790", "http://localhost:8888/TestSICPage/wordpress/12985/", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("12986", "2", "2014-07-04 09:14:33", "2014-07-04 16:14:33", " ", "", "", "publish", "closed", "closed", "", "12986", "", "", "2014-07-04 09:14:33", "2014-07-04 16:14:33", "", "12790", "http://localhost:8888/TestSICPage/wordpress/12986/", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("12987", "2", "2014-07-04 09:14:33", "2014-07-04 16:14:33", " ", "", "", "publish", "closed", "closed", "", "12987", "", "", "2014-07-04 09:14:33", "2014-07-04 16:14:33", "", "12790", "http://localhost:8888/TestSICPage/wordpress/12987/", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("12988", "2", "2014-07-04 09:14:33", "2014-07-04 16:14:33", " ", "", "", "publish", "closed", "closed", "", "12988", "", "", "2014-07-04 09:14:33", "2014-07-04 16:14:33", "", "164", "http://localhost:8888/TestSICPage/wordpress/12988/", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13006", "2", "2014-07-08 09:38:56", "2014-07-08 16:38:56", "[vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"30\" margin_top=\"-36\" margin_bottom=\"50\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">PREMIUM QUALITY</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">ULTRA POWERFUL</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-010.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">FREE REGULAR UPDATES</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">TRANSLATION READY</h3>\r\n[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Welcome to South Island Centre</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_fancy_image style=\"1\" align=\"left\" padding=\"0\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"85\" animation=\"none\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/promo-img.jpg\"][/dt_fancy_image]Sed interdum, lacus et vulpu fatate pellen tesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit dictum. Nulla facilisi congue eu urna to lorem gravida quisÂ ornare vel, mattis sed eros.Â Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien!\r\n\r\nLorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Our specialisation</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web Development\"][vc_column_text]Nullam imperdiet mattis rutrum velit nulla eget dictum urna to lorem gravida quis. Nulla mattis nulaÂ facilisi. Mauris et dictum ante. Praesent mattis ipsum rutrum nula velit eget quam! Mauris et dictum ante. Praesent elit dui, congue eu ornare vel, mattis sed eros. Sed at mattis ipsum rutrum velit eget quam sed mattis ipsum.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Business Consulting\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus![/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sitÂ interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum!Â Lorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet.[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"20\" padding_bottom=\"20\" margin_top=\"15\" margin_bottom=\"50\"][vc_column width=\"1/1\"][dt_call_to_action content_size=\"normal\" text_align=\"left\" background=\"no\" line=\"false\" style=\"1\" animation=\"top\"]\r\n<h3>Introducing <span class=\"paint-accent-color\">The7</span> - ultra powerful multipurpose premium WordPress theme!</h3>\r\n<h5>Everything you need to build an excellent website. Quickly. Without touching a line of code.</h5>\r\n[dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]Give it a try today![/dt_button][/dt_call_to_action][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"40\" margin_bottom=\"40\"][vc_column width=\"1/1\"][dt_benefits_vc columns=\"3\" style=\"3\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\" category=\"captions1\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"60\" margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"2/3\"][vc_column_text]\r\n<h3>Our services &amp; skills</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_tour style=\"tab-style-three\" interval=\"0\"][vc_tab title=\"Web Design &amp; Programming\" tab_id=\"1378898037-1-563a37-0e93\"][vc_column_text]Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla. Nullam velit nulla laoreet consectetur lorem ut [dt_tooltip title=\"lorem ipsum dolor\"]Lorem rhoncus nisi rutrum velit nulla commodo sem, at egestas nulla metus vel sapien.[/dt_tooltip] glavrida unicos amosac. Nullam rutrum velit eget quam pretium vehicula.Â Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\r\n\r\nNullam porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim laoreet consectetur lorem, ut rhoncus nisi rutrum ac. Nullam rutrum velit eget quam pretium vehicula porttitor odio non nunc laoreet.\r\n\r\n[dt_gap height=\"10\"]\r\n<h5>Lorem ipsum dolor list:</h5>\r\n[dt_gap height=\"10\"]\r\n\r\n[dt_list style=\"2\" dividers=\"false\"]\r\n\r\n[dt_list_item image=\"\"]Lorem euismod eu ipsum dolor sit consectetur adipiscing elit;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Phasellus lacinia rhoncus iaculis eu tempor sit amet lorem;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Wael nisl ideu tempor sit libero ornare venenatis et eu mauris;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Lorem euismod eu tempor sit amet ipsum dolor adipiscing;[/dt_list_item]\r\n\r\n[/dt_list][/vc_column_text][/vc_tab][vc_tab title=\"Creative Photography\" tab_id=\"1378898887808-3-83a37-0e93\"][vc_column_text]\r\n\r\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12885,12884,12883,12882,12880,12878,12879\"]\r\n\r\n[dt_gap height=\"15\" /]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum. Dolor ut mollis elit et vestibulum mattis integer aenean nulla, in vitae id augue vitae amet minim.\r\n\r\nCurabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Business Education\" tab_id=\"1378898730907-2-13a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum consectetur adipiscing elitÂ tempor.\r\n\r\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\r\n\r\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Consulting &amp; Training\" tab_id=\"1378898037-2-23a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra viverra mauris vel mi blandit mattis mauris vel mi blandit mattis. Aenean a quis rhoncus tellus, quis luctus ligula tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien. Maecenas enim velit, euismod eu tempor.[/vc_column_text][/vc_tab][vc_tab title=\"Marketing, SEO, PR\" tab_id=\"1378899301675-4-43a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta.\r\n\r\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\r\n\r\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][/vc_tour][dt_gap height=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Send us a message!</h3>\r\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,telephone,company,message\" message_height=\"6\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"medium\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_small_photos height=\"100\" margin_top=\"20\" margin_bottom=\"-20\" number=\"20\" orderby=\"recent\" category=\"template,albums-category-01,albums-category-02,albums-category-03\" lightbox=\"true\"][/vc_column][/vc_row]", "02 - Business", "", "inherit", "closed", "closed", "", "12797-revision-v1", "", "", "2014-07-08 09:38:56", "2014-07-08 16:38:56", "", "12797", "http://localhost:8888/TestSICPage/wordpress/12797-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13007", "2", "2014-07-08 09:39:34", "2014-07-08 16:39:34", "[vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"30\" margin_top=\"-36\" margin_bottom=\"50\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">PREMIUM QUALITY</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">ULTRA POWERFUL</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-010.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">FREE REGULAR UPDATES</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">TRANSLATION READY</h3>\r\n[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Welcome to South Island Centre</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_fancy_image style=\"1\" align=\"left\" padding=\"0\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"85\" animation=\"none\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/promo-img.jpg\"][/dt_fancy_image]Sed interdum, lacus et vulpu fatate pellen tesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit dictum. Nulla facilisi congue eu urna to lorem gravida quisÂ ornare vel, mattis sed eros.Â Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien!\r\n\r\nLorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2014 Course Offerings</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web Development\"][vc_column_text]Nullam imperdiet mattis rutrum velit nulla eget dictum urna to lorem gravida quis. Nulla mattis nulaÂ facilisi. Mauris et dictum ante. Praesent mattis ipsum rutrum nula velit eget quam! Mauris et dictum ante. Praesent elit dui, congue eu ornare vel, mattis sed eros. Sed at mattis ipsum rutrum velit eget quam sed mattis ipsum.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Business Consulting\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus![/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sitÂ interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum!Â Lorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet.[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"20\" padding_bottom=\"20\" margin_top=\"15\" margin_bottom=\"50\"][vc_column width=\"1/1\"][dt_call_to_action content_size=\"normal\" text_align=\"left\" background=\"no\" line=\"false\" style=\"1\" animation=\"top\"]\r\n<h3>Introducing <span class=\"paint-accent-color\">The7</span> - ultra powerful multipurpose premium WordPress theme!</h3>\r\n<h5>Everything you need to build an excellent website. Quickly. Without touching a line of code.</h5>\r\n[dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]Give it a try today![/dt_button][/dt_call_to_action][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"40\" margin_bottom=\"40\"][vc_column width=\"1/1\"][dt_benefits_vc columns=\"3\" style=\"3\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\" category=\"captions1\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"60\" margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"2/3\"][vc_column_text]\r\n<h3>Our services &amp; skills</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_tour style=\"tab-style-three\" interval=\"0\"][vc_tab title=\"Web Design &amp; Programming\" tab_id=\"1378898037-1-563a37-0e93\"][vc_column_text]Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla. Nullam velit nulla laoreet consectetur lorem ut [dt_tooltip title=\"lorem ipsum dolor\"]Lorem rhoncus nisi rutrum velit nulla commodo sem, at egestas nulla metus vel sapien.[/dt_tooltip] glavrida unicos amosac. Nullam rutrum velit eget quam pretium vehicula.Â Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\r\n\r\nNullam porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim laoreet consectetur lorem, ut rhoncus nisi rutrum ac. Nullam rutrum velit eget quam pretium vehicula porttitor odio non nunc laoreet.\r\n\r\n[dt_gap height=\"10\"]\r\n<h5>Lorem ipsum dolor list:</h5>\r\n[dt_gap height=\"10\"]\r\n\r\n[dt_list style=\"2\" dividers=\"false\"]\r\n\r\n[dt_list_item image=\"\"]Lorem euismod eu ipsum dolor sit consectetur adipiscing elit;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Phasellus lacinia rhoncus iaculis eu tempor sit amet lorem;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Wael nisl ideu tempor sit libero ornare venenatis et eu mauris;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Lorem euismod eu tempor sit amet ipsum dolor adipiscing;[/dt_list_item]\r\n\r\n[/dt_list][/vc_column_text][/vc_tab][vc_tab title=\"Creative Photography\" tab_id=\"1378898887808-3-83a37-0e93\"][vc_column_text]\r\n\r\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12885,12884,12883,12882,12880,12878,12879\"]\r\n\r\n[dt_gap height=\"15\" /]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum. Dolor ut mollis elit et vestibulum mattis integer aenean nulla, in vitae id augue vitae amet minim.\r\n\r\nCurabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Business Education\" tab_id=\"1378898730907-2-13a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum consectetur adipiscing elitÂ tempor.\r\n\r\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\r\n\r\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Consulting &amp; Training\" tab_id=\"1378898037-2-23a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra viverra mauris vel mi blandit mattis mauris vel mi blandit mattis. Aenean a quis rhoncus tellus, quis luctus ligula tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien. Maecenas enim velit, euismod eu tempor.[/vc_column_text][/vc_tab][vc_tab title=\"Marketing, SEO, PR\" tab_id=\"1378899301675-4-43a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta.\r\n\r\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\r\n\r\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][/vc_tour][dt_gap height=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Send us a message!</h3>\r\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,telephone,company,message\" message_height=\"6\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"medium\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_small_photos height=\"100\" margin_top=\"20\" margin_bottom=\"-20\" number=\"20\" orderby=\"recent\" category=\"template,albums-category-01,albums-category-02,albums-category-03\" lightbox=\"true\"][/vc_column][/vc_row]", "02 - Business", "", "inherit", "closed", "closed", "", "12797-revision-v1", "", "", "2014-07-08 09:39:34", "2014-07-08 16:39:34", "", "12797", "http://localhost:8888/TestSICPage/wordpress/12797-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13010", "3", "2014-07-08 10:02:55", "2014-07-08 17:02:55", "<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-08 10:02:55", "2014-07-08 17:02:55", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13018", "3", "2014-07-08 10:35:10", "2014-07-08 17:35:10", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to our website!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<img class=\"alignleft size-full wp-image-9806\" src=\"http://the7.dream-demo.com/wp-content/uploads/2013/05/promo-img-big.jpg\" alt=\"promo-img-big\" width=\"110\" />Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Our services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna lorem.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellen tesque.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sit velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"20\" margin_bottom=\"48\"][vc_column width=\"1/4\"][dt_gap height=\"20\"][vc_column_text]Sed interdum, lacus et vulputate pellen tesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend dictum urna.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/shortcodes/clients-logos/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Become a partner[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_gap height=\"50\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Products and services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Consulting</h4>\r\nPellen tesque velit nulla commodo sem at egestas unitas potenti ornare felis porttitor ametÂ sit.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Web design</h4>\r\nLorem nulla ipsum dolor for amet comma unitas potenti ornare felis porttitor ametÂ sit amante.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Programming</h4>\r\nLacus et vulputate pellen tesque velit nulla commodo sem at egestas lorem ipsum dolor amet.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:35:10", "2014-07-08 17:35:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13019", "3", "2014-07-08 10:35:42", "2014-07-08 17:35:42", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to our website!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<img class=\"alignleft size-full wp-image-9806\" src=\"http://the7.dream-demo.com/wp-content/uploads/2013/05/promo-img-big.jpg\" alt=\"promo-img-big\" width=\"110\" />Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Our services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna lorem.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellen tesque.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sit velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"20\" margin_bottom=\"48\"][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/shortcodes/clients-logos/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Become a partner[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_gap height=\"50\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Products and services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Consulting</h4>\r\nPellen tesque velit nulla commodo sem at egestas unitas potenti ornare felis porttitor ametÂ sit.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Web design</h4>\r\nLorem nulla ipsum dolor for amet comma unitas potenti ornare felis porttitor ametÂ sit amante.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Programming</h4>\r\nLacus et vulputate pellen tesque velit nulla commodo sem at egestas lorem ipsum dolor amet.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:35:42", "2014-07-08 17:35:42", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13020", "3", "2014-07-08 10:36:30", "2014-07-08 17:36:30", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to our website!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<img class=\"alignleft size-full wp-image-9806\" src=\"http://the7.dream-demo.com/wp-content/uploads/2013/05/promo-img-big.jpg\" alt=\"promo-img-big\" width=\"110\" />Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Our services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna lorem.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellen tesque.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sit velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"20\" margin_bottom=\"48\"][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Products and services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Consulting</h4>\r\nPellen tesque velit nulla commodo sem at egestas unitas potenti ornare felis porttitor ametÂ sit.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Web design</h4>\r\nLorem nulla ipsum dolor for amet comma unitas potenti ornare felis porttitor ametÂ sit amante.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Programming</h4>\r\nLacus et vulputate pellen tesque velit nulla commodo sem at egestas lorem ipsum dolor amet.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:36:30", "2014-07-08 17:36:30", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13021", "3", "2014-07-08 10:37:09", "2014-07-08 17:37:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to our website!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<img class=\"alignleft size-full wp-image-9806\" src=\"http://the7.dream-demo.com/wp-content/uploads/2013/05/promo-img-big.jpg\" alt=\"promo-img-big\" width=\"110\" />Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Our services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna lorem.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellen tesque.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sit velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Products and services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Consulting</h4>\r\nPellen tesque velit nulla commodo sem at egestas unitas potenti ornare felis porttitor ametÂ sit.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Web design</h4>\r\nLorem nulla ipsum dolor for amet comma unitas potenti ornare felis porttitor ametÂ sit amante.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Programming</h4>\r\nLacus et vulputate pellen tesque velit nulla commodo sem at egestas lorem ipsum dolor amet.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:37:09", "2014-07-08 17:37:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13026", "3", "2014-07-08 10:39:59", "2014-07-08 17:39:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to our website!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<img class=\"alignleft size-full wp-image-9806\" src=\"http://the7.dream-demo.com/wp-content/uploads/2013/05/promo-img-big.jpg\" alt=\"promo-img-big\" width=\"110\" />Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Our services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna lorem.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellen tesque.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sit velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation.\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Programming</h4>\r\nLacus et vulputate pellen tesque velit nulla commodo sem at egestas lorem ipsum dolor amet.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:39:59", "2014-07-08 17:39:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13031", "3", "2014-07-08 10:42:47", "2014-07-08 17:42:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to our website!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<img class=\"alignleft size-full wp-image-9806\" src=\"http://the7.dream-demo.com/wp-content/uploads/2013/05/promo-img-big.jpg\" alt=\"promo-img-big\" width=\"110\" />Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Our services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna lorem.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellen tesque.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sit velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation.\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs.\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:42:47", "2014-07-08 17:42:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13036", "3", "2014-07-08 10:46:17", "2014-07-08 17:46:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training!\r\n\r\nWe provide income-based counselling to get you on your feet again and offer courses and training for personal development.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe are here to help!\r\n\r\nCall us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Our services</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web development\"][vc_column_text]Nullam velit nulla commodo sem, at egestas nulla metus vel imperdiet aptent taciti sociosqu ad litora torquent per conubia nostra mattis nulla eleifend magna, eget dictum urna lorem.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Photography\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellen tesque.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sit velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum![/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation.\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs.\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:46:17", "2014-07-08 17:46:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13042", "3", "2014-07-08 10:50:00", "2014-07-08 17:50:00", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training!\r\n\r\nWe provide income-based counselling to get you on your feet again and offer courses and training for personal development.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe are here to help!\r\n\r\nCall us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014) &gt;I am text block. Click edit button to change this text.[/vc_column_text][vc_single_image image=\"13041\" img_link_target=\"_self\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation.\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development.\r\n\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs.\r\n[dt_gap height=\"5\"]\r\n\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:50:00", "2014-07-08 17:50:00", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13047", "3", "2014-07-08 10:51:34", "2014-07-08 17:51:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014) &gt;I am text block. Click edit button to change this text.[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:51:34", "2014-07-08 17:51:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13049", "3", "2014-07-08 10:52:57", "2014-07-08 17:52:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014) &gt;I am text block. Click edit button to change this text.[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 10:52:57", "2014-07-08 17:52:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13051", "3", "2014-07-08 11:11:36", "2014-07-08 18:11:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014) &gt;I am text block. Click edit button to change this text.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Everyday 11 AM - 20 PM</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 11:11:36", "2014-07-08 18:11:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13053", "3", "2014-07-08 11:29:57", "2014-07-08 18:29:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014) &gt;I am text block. Click edit button to change this text.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number:\r\n\r\n&gt;p style=\"margin-top: -10px;\"&gt;(250) 472-2815\r\n\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 4:00pm</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 11:29:57", "2014-07-08 18:29:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13054", "3", "2014-07-08 11:32:06", "2014-07-08 18:32:06", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014) &gt;I am text block. Click edit button to change this text.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number:\r\n(250) 472-2815\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 4:00pm</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 11:32:06", "2014-07-08 18:32:06", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13055", "3", "2014-07-08 11:33:27", "2014-07-08 18:33:27", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014) &gt;I am text block. Click edit button to change this text.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd\r\nVictoria, BC\r\nV8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number:\r\n(250) 472-2815\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 4:00pm</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 11:33:27", "2014-07-08 18:33:27", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13056", "3", "2014-07-08 11:34:51", "2014-07-08 18:34:51", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014) &gt;I am text block. Click edit button to change this text.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd\r\nVictoria, BC\r\nV8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number:\r\n(250) 472-2815\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm.\r\nWe are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 11:34:51", "2014-07-08 18:34:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13059", "3", "2014-07-08 11:57:57", "2014-07-08 18:57:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nFamily Systems Theory Summer Course (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\nAnnual Fundraiser Dessert Party (Saturday, November 22, 2014): 6:30pm-9:00pm.\r\nLocation: tba\r\nGuest Performer: Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd\r\nVictoria, BC\r\nV8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number:\r\n(250) 472-2815\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm.\r\nWe are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 11:57:57", "2014-07-08 18:57:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13060", "3", "2014-07-08 11:59:35", "2014-07-08 18:59:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>Family Systems Theory Summer Course</strong> (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd\r\nVictoria, BC\r\nV8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number:\r\n(250) 472-2815\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm.\r\nWe are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2 style=\"text-align: center;\">Lorem ipsum dolor <span class=\"paint-accent-color\">WORDPRESS THEME</span> et glavrida ipsum.</h2>\r\n[dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">Voluptatema sed terre estere doloremqt Â quis. Nulla facilisi congue euve.</h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 11:59:35", "2014-07-08 18:59:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13061", "3", "2014-07-08 12:10:08", "2014-07-08 19:10:08", "Differences among people can be fascinating but they can also be frustrating. This workshop will help participants to understand themselves better, and see the different ways people experience life. When this happens, everything changes. Relationships improve, conflicts are better managed, and people can really enjoy one another.\r\n\r\nJoinÂ <strong>Barbara Baillie (facilitator)</strong>, for this inspiring time of self discovery and learn how to accept and embrace the ways others see and experience the world.\r\n\r\n&nbsp;\r\n\r\nDate: Friday, October 24, 2014\r\n\r\nTime: 9:00am-4:00pm\r\n\r\nCost: $85", "The Enneagram: A Courney of Self-Discovery", "", "publish", "closed", "closed", "", "the-enneagram-a-courney-of-self-discovery", "", "", "2017-07-28 18:18:18", "2017-07-29 01:18:18", "", "15087", "http://localhost:8888/TestSICPage/wordpress/?page_id=13061", "6", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13062", "3", "2014-07-08 12:10:08", "2014-07-08 19:10:08", "Differences among people can be fascinating but they can also be frustrating. This workshop will help participants to understand themselves better, and see the different ways people experience life. When this happens, everything changes. Relationships improve, conflicts are better managed, and people can really enjoy one another.\r\n\r\nJoinÂ <strong>Barbara Baillie (facilitator)</strong>, for this inspiring time of self discovery and learn how to accept and embrace the ways others see and experience the world.\r\n\r\n&nbsp;\r\n\r\nDate: Friday, October 24, 2014\r\n\r\nTime: 9:00am-4:00pm\r\n\r\nCost: $85", "The Enneagram: A Courney of Self-Discovery", "", "inherit", "closed", "closed", "", "13061-revision-v1", "", "", "2014-07-08 12:10:08", "2014-07-08 19:10:08", "", "13061", "http://localhost:8888/TestSICPage/wordpress/13061-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13063", "3", "2014-07-08 12:12:44", "2014-07-08 19:12:44", "", "The Enneagram: A Journey of Self Discovery - October 24, 2014 workshop", "The Enneagram: A Journey of Self Discovery workshop (October 24, 2014) ", "inherit", "closed", "closed", "", "enneagram-october-24-2014-workshop", "", "", "2014-07-08 12:12:44", "2014-07-08 19:12:44", "", "13071", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13064", "3", "2014-07-08 12:33:45", "0000-00-00 00:00:00", "", "The Enneagram - A Journey of Self Disco", "", "draft", "closed", "closed", "", "", "", "", "2014-07-08 12:33:45", "2014-07-08 19:33:45", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13064&#038;instance_id=", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13065", "3", "2014-07-08 13:08:15", "2014-07-08 20:08:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>Family Systems Theory Summer Course</strong> (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd\r\nVictoria, BC\r\nV8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number:\r\n(250) 472-2815\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm.\r\nWe are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h3><span style=\"color: #0000ff;\">Generous Individuals like yourself</span></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">Island Savings Credit Union</span></strong></h3>\r\n<h3><strong><span style=\"color: #0000ff;\">BC Government </span></strong></h3>\r\n<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" alt=\"Catholic Foundation\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" alt=\"Victoria Foundation\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" alt=\"Full Farm House\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]\r\n\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 13:08:15", "2014-07-08 20:08:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13066", "3", "2014-07-08 13:11:14", "2014-07-08 20:11:14", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>Family Systems Theory Summer Course</strong> (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd\r\nVictoria, BC\r\nV8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number:\r\n(250) 472-2815\r\n[dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm.\r\nWe are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n<center>Thank You To Our Sponsors&lt;h/3&gt;\r\n&lt;<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" alt=\"Catholic Foundation\" width=\"300\" height=\"37\" /></a></center>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" alt=\"Victoria Foundation\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" alt=\"Full Farm House\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]\r\n\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 13:11:14", "2014-07-08 20:11:14", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13067", "3", "2014-07-08 13:13:04", "2014-07-08 20:13:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Counselling Centre!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>Family Systems Theory Summer Course</strong> (July 7-11, 2014)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n<center></center>\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-08 13:13:04", "2014-07-08 20:13:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13068", "3", "2014-07-08 13:15:21", "2014-07-08 20:15:21", "", "smalllogo", "", "inherit", "closed", "closed", "", "smalllogo", "", "", "2014-07-08 13:15:21", "2014-07-08 20:15:21", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/smalllogo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13069", "3", "2014-07-08 13:19:34", "2014-07-08 20:19:34", "", "smallpng", "", "inherit", "closed", "closed", "", "smallpng", "", "", "2014-07-08 13:19:34", "2014-07-08 20:19:34", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/smallpng.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("13070", "3", "2014-07-09 09:21:43", "2014-07-09 16:21:43", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"color: #0000ff;\">Bill Cole (RCC, MA) - Â Director of Services</span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"color: #0000ff;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"color: #0000ff;\">Carla Haveman</span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"color: #0000ff;\">Rosemary Merritt (RCC, MPE)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"color: #0000ff;\">Fiona Pasay (MA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is a volunteer counsellor with South Island Centre and is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"color: #0000ff;\">Laurie Truant (RCC, MA)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-07-09 09:21:43", "2014-07-09 16:21:43", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13071", "3", "2014-07-09 09:25:09", "2014-07-09 16:25:09", "Differences among people can be fascinating, but they also can be frustrating.Â This workshop will help participants understand themselves better, and\r\nsee the different ways people experience life. When this happens, everythingÂ changes. Relationships improve, conflicts are better managed, and people canÂ really enjoy one another.Â Join us for this inspiring time of self-discovery, and learn how to accept and embraceÂ the way others see and experience the world.\r\n\r\nFor more information, please follow this link to the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\">The Enneagram: A Journey of Self Discovery - October 24, 2014 workshop</a>\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "The Enneagram - A Journey of Self Discovery", "", "publish", "closed", "closed", "", "the-enneagram-a-journey-of-self-discovery", "", "", "2014-08-13 12:23:18", "2014-08-13 19:23:18", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13071&#038;instance_id=", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13077", "3", "2014-07-09 09:52:22", "2014-07-09 16:52:22", "", "Directions", "", "publish", "closed", "closed", "", "13077", "", "", "2018-03-28 13:11:29", "2018-03-28 20:11:29", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?p=13077", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13080", "3", "2014-07-09 09:52:22", "2014-07-09 16:52:22", "", "Board of Directors", "", "publish", "closed", "closed", "", "13080", "", "", "2018-03-28 13:11:29", "2018-03-28 20:11:29", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?p=13080", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13082", "3", "2014-07-09 09:52:22", "2014-07-09 16:52:22", "", "How We Can Help", "", "publish", "closed", "closed", "", "13082", "", "", "2018-03-28 13:11:29", "2018-03-28 20:11:29", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=13082", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13083", "3", "2014-07-09 09:52:22", "2014-07-09 16:52:22", " ", "", "", "publish", "closed", "closed", "", "13083", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=13083", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13084", "3", "2014-07-09 09:52:22", "2014-07-09 16:52:22", " ", "", "", "publish", "closed", "closed", "", "13084", "", "", "2018-03-28 13:11:29", "2018-03-28 20:11:29", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?p=13084", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13101", "3", "2014-07-09 09:54:51", "2014-07-09 16:54:51", "", "Training", "", "publish", "closed", "closed", "", "13101", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "15121", "http://localhost:8888/TestSICPage/wordpress/?p=13101", "13", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13105", "3", "2014-07-09 09:54:50", "2014-07-09 16:54:50", " ", "", "", "publish", "closed", "closed", "", "13105", "", "", "2018-03-28 13:11:29", "2018-03-28 20:11:29", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=13105", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13106", "3", "2014-07-09 09:57:19", "2014-07-09 16:57:19", " ", "", "", "publish", "closed", "closed", "", "13106", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=13106", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13108", "3", "2014-07-09 09:58:15", "2014-07-09 16:58:15", "", "How to Register", "", "publish", "closed", "closed", "", "13108", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "15121", "http://localhost:8888/TestSICPage/wordpress/?p=13108", "15", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13112", "3", "2014-07-09 10:01:26", "2014-07-09 17:01:26", "", "Training", "", "publish", "closed", "closed", "", "13112", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "15121", "http://localhost:8888/TestSICPage/wordpress/?p=13112", "14", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13113", "3", "2014-07-09 10:03:04", "2014-07-09 17:03:04", "", "Home", "Welcome", "publish", "closed", "closed", "", "home", "", "", "2018-03-28 13:11:29", "2018-03-28 20:11:29", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=13113", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13114", "3", "2014-07-09 10:04:05", "2014-07-09 17:04:05", "Our street address is:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Rd</strong></span>\r\n\r\nSouth Island Centre is located in the <strong>house</strong>Â behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church. The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne St, away from UVic). <strong>Parking is free.</strong>\r\n\r\n<span style=\"color: #0000ff;\"><strong>Map</strong></span>:Â <a title=\"South Island Centre location (MapQuest)\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">Click here</a> to see our location on MapQuest.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus routes from downtown</strong>:</span>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 24</strong> <strong>Cedar Hill/Admirals</strong></span>: stops at the intersection of <strong>Cedar Hill/Cedar Hill Cross</strong>Â <strong>Roads</strong> (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street! <a title=\"Link to BC transit Bus 24, Cedar Hill/Admirals\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?line=24\" target=\"_blank\">Click here</a> for the schedule.</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 27</strong> <strong>Gordon Head/Beacon Hill</strong></span>:Â stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 27, Gordon Head/Beacon Hill park\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><span style=\"color: #0000ff;\"><strong>No. 28</strong> <strong>Majestic/Beacon Hill</strong>:</span> stops at the intersection of <strong>Cedar Hill Cross Rd/Shelbourne St</strong>.Â <a title=\"Link to BC transit bus No. 28 Majestic\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a> for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. It\'s a 5-10 min walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Sidney:</strong></span>\r\n\r\nTravel <strong>S</strong><strong>outh</strong> on the <strong>Pat Bay Highway (17)</strong>, then take the <strong>McKenzie Avenue</strong> exit, turning <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong> at the light. Turn <em><strong>right</strong></em> at <strong>Cedar Hill Rd</strong>, <em><strong>right</strong></em> again at <strong>Cedar Hill Cross Rd</strong>, and an immediate <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n<span style=\"color: #0000ff;\"><strong>Travel directions from Langford/Colwood:</strong></span>\r\n\r\nTravel <strong>East</strong> toward Victoria on <strong>Hwy 1</strong>. Turn <em><strong>left</strong></em> onto <strong>McKenzie Ave</strong>, turn <em><strong>right</strong></em> atÂ <strong>Cedar Hill Rd</strong>, <em><strong>right</strong> </em>again at <strong>Cedar Hill Cross Rd</strong>, and then an immediateÂ <em><strong>right</strong></em>Â onto the <em>St Luke\'s Anglican Church parking lot</em>. We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Location: Find us", "", "inherit", "closed", "closed", "", "284-revision-v1", "", "", "2014-07-09 10:04:05", "2014-07-09 17:04:05", "", "284", "http://localhost:8888/TestSICPage/wordpress/284-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13117", "3", "2014-07-09 10:09:17", "2014-07-09 17:09:17", "<strong><span style=\"color: #0000ff;\">South Island Centre Courses</span></strong>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<strong style=\"line-height: 1.5em;\"><span style=\"color: #0000ff;\">2014 Course Offerings</span></strong>\r\n\r\nWe are pleased to offer these courses in 2014.\r\n<ul>\r\n	<li><a title=\"Family Systems Theory Summer Intensive (7-11 July, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Family-Systems-Summer-Course-July-7-11-2014.pdf\" target=\"_blank\">Family Systems Theory Summer Intensive</a> Â (July 7-11, 2014)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (October 24, 2014)</li>\r\n	<li>Selfcare for Caregivers *TBA (fall 2014)</li>\r\n	<li><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\">Pastoral Counselling Training</a> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. We will not share your contact information with any outside sources.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-09 10:09:17", "2014-07-09 17:09:17", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13118", "3", "2014-07-09 10:14:30", "2014-07-09 17:14:30", "<span style=\"color: rgb(51, 153, 102);\"><strong>South Island Centre Courses</strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<span style=\"color: rgb(51, 153, 102);\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: rgb(51, 153, 102);\"><a title=\"Family Systems Theory Summer Intensive (7-11 July, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Family-Systems-Summer-Course-July-7-11-2014.pdf\" target=\"_blank\"><span style=\"color: rgb(51, 153, 102);\">Family Systems Theory Summer Intensive</span></a></span> Â (July 7-11, 2014)</li>\r\n	<li><span style=\"color: rgb(51, 153, 102);\"><a title=\"The Enneagram: A Journey of Self Discovery (24 October, 2014)\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: rgb(51, 153, 102);\">The Enneagram: A Journey of Self Discovery</span></a></span> (October 24, 2014)</li>\r\n	<li>Selfcare for Caregivers *TBA (fall 2014)</li>\r\n	<li><span style=\"color: rgb(51, 153, 102);\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: rgb(51, 153, 102);\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. Â We will not share your contact information with any outside sources as we use a blind copy distribution.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-09 10:14:30", "2014-07-09 17:14:30", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13119", "3", "2014-07-09 10:15:23", "2014-07-09 17:15:23", "<span style=\"color: #339966;\"><strong>South Island Centre Courses</strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<span style=\"color: #339966;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: #339966;\"><a title=\"Family Systems Theory Summer Intensive (7-11 July, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Family-Systems-Summer-Course-July-7-11-2014.pdf\" target=\"_blank\"><span style=\"color: #339966;\">Family Systems Theory Summer Intensive</span></a></span> Â (July 7-11, 2014)</li>\r\n	<li><span style=\"color: #339966;\"><a title=\"The Enneagram: A Journey of Self Discovery (24 October, 2014)\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #339966;\">The Enneagram: A Journey of Self Discovery</span></a></span> (October 24, 2014)</li>\r\n	<li>Selfcare for Caregivers *TBA (fall 2014)</li>\r\n	<li><span style=\"color: #339966;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #339966;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. Â We will not share your contact information with any outside sources as we use a blind copy distribution.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-09 10:15:23", "2014-07-09 17:15:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13120", "3", "2014-07-09 10:20:15", "2014-07-09 17:20:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Centre for Counselling and Training!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-09 10:20:15", "2014-07-09 17:20:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13121", "3", "2014-07-09 10:21:40", "2014-07-09 17:21:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Centre for Counselling and Training!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Affordable Counselling at South Island Centre for Counselling and Training! We provide income-based counselling to get you on your feet again and offer courses and training for personal development. Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We are here to help! Call us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-09 10:21:40", "2014-07-09 17:21:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13123", "3", "2014-07-09 10:27:57", "2014-07-09 17:27:57", "[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "Leave a comment", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2014-07-09 10:27:57", "2014-07-09 17:27:57", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13132", "3", "2014-07-09 12:14:04", "2014-07-09 19:14:04", "[caption id=\"attachment_13146\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"wp-image-13146 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_13148\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"wp-image-13148 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "publish", "closed", "closed", "", "south-island-centre-training-facilitators", "", "", "2017-02-22 11:08:03", "2017-02-22 19:08:03", "", "88", "http://localhost:8888/TestSICPage/wordpress/?page_id=13132", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13133", "3", "2014-07-09 12:14:04", "2014-07-09 19:14:04", "Bill Cole\r\n\r\n[caption id=\"attachment_13130\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Bill-Cole-Training-Facilitator.jpg\"><img class=\"size-medium wp-image-13130\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Bill-Cole-Training-Facilitator-300x224.jpg\" alt=\"Trainer Bill Cole\" width=\"300\" height=\"224\" /></a> Trainer Bill Cole[/caption]\r\n\r\nMargaret Anderson\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Margaret-Anderson-Training-Faciliator1.jpg\"><img class=\"alignnone size-medium wp-image-13129\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Margaret-Anderson-Training-Faciliator1-300x224.jpg\" alt=\"Margaret Anderson (Training Faciliator)\" width=\"300\" height=\"224\" /></a>", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-09 12:14:04", "2014-07-09 19:14:04", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13134", "3", "2014-07-23 15:06:01", "2014-07-23 22:06:01", "<strong>Bill Cole</strong>\n\n[caption id=\"attachment_13146\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"wp-image-13146 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\n\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Margaret Anderson</strong>\n\n[caption id=\"attachment_13148\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"wp-image-13148 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\n\n&nbsp;\n\n<strong>Margaret Anderson</strong> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-autosave-v1", "", "", "2014-07-23 15:06:01", "2014-07-23 22:06:01", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13135", "3", "2014-07-09 12:16:30", "2014-07-09 19:16:30", "Bill Cole\r\n\r\n[caption id=\"attachment_13130\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Bill-Cole-Training-Facilitator.jpg\"><img class=\"size-medium wp-image-13130\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Bill-Cole-Training-Facilitator-300x224.jpg\" alt=\"Trainer Bill Cole\" width=\"300\" height=\"224\" /></a> Trainer Bill Cole[/caption]\r\n\r\nMargaret Anderson\r\n\r\n[caption id=\"attachment_13128\" align=\"alignnone\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Margaret-Anderson-Training-Faciliator.jpg\"><img class=\"size-medium wp-image-13128\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Margaret-Anderson-Training-Faciliator-300x224.jpg\" alt=\"Trainer Margaret Anderson \" width=\"300\" height=\"224\" /></a> Trainer Margaret Anderson[/caption]\r\n\r\n&nbsp;", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-09 12:16:30", "2014-07-09 19:16:30", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13137", "3", "2014-07-10 11:35:00", "2014-07-10 18:35:00", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Welcome to South Island Centre for Counselling and Training!</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]At South Island Centre for Counselling and Training we provide affordable income-based counselling to get you on your feet again and offer courses and training for personal development.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe are here to help!\r\nCall us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-10 11:35:00", "2014-07-10 18:35:00", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13138", "3", "2014-07-10 11:45:46", "2014-07-10 18:45:46", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]We provide affordable income-based counselling to get you on your feet again\r\nfor individuals, couples, families and organizations, facilitating personal,\r\nrelational, and spiritual wholeness.\r\n\r\nOur counsellors provide a safe and positive environment for you\r\nto grow through the challenges of life. We can help you with:\r\n\r\ntrauma and distress; depression and anxiety; grief and loss;\r\nrelational conflict; self-esteem issues; emotional, sexual, and physical abuse;\r\nissues related to faith and spirituality; addictions (substance abuse, gambling,\r\npornography); understanding family systems; marriage preparation; marriage conflict etc.\r\n\r\nWe also offer courses and training for personal development such as grief and loss,\r\nmarriage preparation, family systems, mid-life directions, Spiritual Direction\r\nas well as pastoral and career choice counselling as well as and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nYou don\'t have to go through it alone.\r\n\r\nWe are here to help!\r\n\r\nCall us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum urna to lorem gravida quis. Nulla facilisi congue eu ornare vel, mattis sed eros, velit nulla commodo sem, at egestas nulla metus vel sapien!Â Ipsum dolor sit amet communitasÂ erdum.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-10 11:45:46", "2014-07-10 18:45:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13139", "3", "2014-07-10 11:50:40", "2014-07-10 18:50:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]We provide affordable income-based counselling to get you on your feet again\r\nfor individuals, couples, families and organizations, facilitating personal,\r\nrelational, and spiritual wholeness. Our counsellors provide a safe and positive\r\nenvironment for you to grow through the challenges of life.\r\n\r\nWe also offer courses and training for personal development such as grief and loss,\r\nmarriage preparation, family systems, mid-life directions, and spiritual direction,\r\nas well as pastoral and career choice counselling and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nYou don\'t have to go through it alone.\r\n\r\nWe are here to help!\r\n\r\nCall us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nOur counsellors provide a safe and positive environment\r\nfor you to grow through the challenges of life.\r\nWe can help you with:\r\ntrauma and distress; depression and anxiety; grief and loss;\r\nrelational conflict; self-esteem issues; emotional, sexual, and physical abuse;\r\nissues related to faith and spirituality; addictions (substance abuse, gambling,\r\npornography); understanding family systems; marriage preparation; marriage conflict etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss,\r\nmarriage preparation, family systems, mid-life directions, Spiritual Direction\r\n\r\nO<strong>THER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-10 11:50:40", "2014-07-10 18:50:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13140", "3", "2014-07-10 11:52:56", "2014-07-10 18:52:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]We provide affordable income-based counselling for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe also offer courses and training seminars for personal development such as grief and loss, marriage preparation, family systems, mid-life directions, and spiritual direction, as well as pastoral and career choice counselling and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nYou don\'t have to go through it alone.\r\n\r\nWe are here to help!\r\n\r\nCall us today: (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nOur counsellors provide a safe and positive environment for you to grow through the challenges of life. We can help you with: trauma and distress; depression and anxiety; grief and loss;\r\nrelational conflict; self-esteem issues; emotional, sexual, and physical abuse; issues related to faith and spirituality; addictions (substance abuse, gambling, pornography); understanding family systems; marriage preparation; marriage conflict etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, family systems, mid-life directions, Spiritual Direction\r\n\r\nO<strong>THER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-10 11:52:56", "2014-07-10 18:52:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13141", "3", "2014-07-10 12:03:10", "2014-07-10 19:03:10", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]You don\'t have to go through it alone. We are here to help!\r\n\r\nWe offer affordable income-based counselling for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer courses and training seminars for personal development such as grief and loss, marriage preparation, family systems, mid-life and/or spiritual direction, as well as pastoral and career choice counselling and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nCall us today at (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Courses and Information</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nOur counsellors can help you with with a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, family systems, mid-life directions, Spiritual Direction\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-10 12:03:10", "2014-07-10 19:03:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13142", "3", "2014-07-10 12:04:24", "2014-07-10 19:04:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]You don\'t have to go through it alone. We are here to help!\r\n\r\nWe offer affordable income-based counselling for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer courses and training seminars for personal development such as grief and loss, marriage preparation, family systems, mid-life and/or spiritual direction, as well as pastoral and career choice counselling and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nCall us today at (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nOur counsellors can help you with with a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, family systems, mid-life directions, Spiritual Direction\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-10 12:04:24", "2014-07-10 19:04:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13143", "3", "2014-07-10 12:19:39", "2014-07-10 19:19:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]You don\'t have to go through it alone. We are here to help!\r\n\r\nWe offer affordable income-based counselling for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer courses and training seminars for personal development such as grief and loss, marriage preparation, family systems, mid-life and/or spiritual direction, as well as pastoral and career choice counselling and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nCall us today at (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-10 12:19:39", "2014-07-10 19:19:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13145", "3", "2014-07-10 12:27:26", "2014-07-10 19:27:26", " ", "", "", "publish", "closed", "closed", "", "13145", "", "", "2018-03-28 13:11:29", "2018-03-28 20:11:29", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?p=13145", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13149", "3", "2014-07-11 11:38:44", "2014-07-11 18:38:44", "Bill Cole\r\n\r\n[caption id=\"attachment_13146\" align=\"alignnone\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"size-medium wp-image-13146\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\nMargaret Anderson\r\n\r\n[caption id=\"attachment_13148\" align=\"alignnone\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"size-medium wp-image-13148\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-11 11:38:44", "2014-07-11 18:38:44", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13150", "3", "2014-07-11 11:46:09", "2014-07-11 18:46:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]You don\'t have to go through it alone. We are here to help!\r\n\r\nWe offer affordable income-based counselling for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer courses and training seminars for personal development such as grief and loss, marriage preparation, family systems, mid-life and/or spiritual direction, as well as pastoral and career choice counselling and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nCall us today at (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-11 11:46:09", "2014-07-11 18:46:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13152", "3", "2014-07-14 09:32:34", "2014-07-14 16:32:34", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em>specific dates and times of up-coming courses</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster her</a>e)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-14 09:32:34", "2014-07-14 16:32:34", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13153", "3", "2014-07-14 09:34:57", "2014-07-14 16:34:57", "", "Caregiver Burnout: The Need for Self-Care (general information poster)", "", "inherit", "closed", "closed", "", "burnout-general-info-poster-2014", "", "", "2014-07-14 09:34:57", "2014-07-14 16:34:57", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-GENERAL-info-poster-2014.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("13154", "3", "2014-07-14 09:36:32", "2014-07-14 16:36:32", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em>specific dates and times of up-coming courses</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout: The Need for Self-Care (general information poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-GENERAL-info-poster-2014.docx\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\">information poster her</a>e)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-14 09:36:32", "2014-07-14 16:36:32", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13155", "3", "2014-07-14 09:36:57", "2014-07-14 16:36:57", "", "Caregiver Burnout Poster October 18, 2014", "", "inherit", "closed", "closed", "", "caregiver-burnout-poster-october-18-2014", "", "", "2014-07-14 09:36:57", "2014-07-14 16:36:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc", "0", "attachment", "application/msword", "0");
INSERT INTO `wp_posts` VALUES("13156", "3", "2014-07-14 09:45:01", "2014-07-14 16:45:01", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]You don\'t have to go through it alone. We are here to help!\r\n\r\nWe offer affordable income-based counselling for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer courses and training seminars for personal development such as grief and loss, marriage preparation, family systems, mid-life and/or spiritual direction, as well as pastoral and career choice counselling and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nCall us today at (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>Caregiver Burnout: The Need for Self-Care\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-14 09:45:01", "2014-07-14 16:45:01", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13157", "3", "2014-07-14 09:48:27", "2014-07-14 16:48:27", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]You don\'t have to go through it alone. We are here to help!\r\n\r\nWe offer affordable income-based counselling for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer courses and training seminars for personal development such as grief and loss, marriage preparation, family systems, mid-life and/or spiritual direction, as well as pastoral and career choice counselling and pastoral care team training.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ...\r\n\r\nCall us today at (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-14 09:48:27", "2014-07-14 16:48:27", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13160", "3", "2014-07-14 09:53:41", "2014-07-14 16:53:41", "Bill Cole\r\n\r\n[caption id=\"attachment_13146\" align=\"alignnone\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"size-medium wp-image-13146\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\nMargaret Anderson\r\n\r\n[caption id=\"attachment_13148\" align=\"alignnone\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"size-medium wp-image-13148\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Margaret Anderson</strong> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-14 09:53:41", "2014-07-14 16:53:41", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13163", "3", "2014-07-14 10:27:24", "2014-07-14 17:27:24", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Picture-of-South-Island-Centre-at-3821A-Cedar-Hill-Cross-Rd.jpg\"><img class=\"alignnone size-medium wp-image-13161\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Picture-of-South-Island-Centre-at-3821A-Cedar-Hill-Cross-Rd-300x225.jpg\" alt=\"Picture of South Island Centre at 3821A Cedar Hill Cross Rd\" width=\"300\" height=\"225\" /></a>\r\n\r\nSouth Island Centre is located at:\r\n\r\n<span style=\"color: #0000ff;\"><strong>3821 A Cedar Hill Cross Road</strong></span> (Saanich).Â <strong>Parking is free.</strong>\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n<span style=\"color: #0000ff;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\">Click here</a>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Sidney:</strong></span>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n<span style=\"color: #0000ff;\"><strong>From Langford/Colwood:</strong></span>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-14 10:27:24", "2014-07-14 17:27:24", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13164", "3", "2014-07-14 10:33:21", "2014-07-14 17:33:21", "<h3><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Picture-of-South-Island-Centre-at-3821A-Cedar-Hill-Cross-Rd.jpg\"><img class=\"alignnone size-medium wp-image-13161\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Picture-of-South-Island-Centre-at-3821A-Cedar-Hill-Cross-Rd-300x225.jpg\" alt=\"Picture of South Island Centre at 3821A Cedar Hill Cross Rd\" width=\"300\" height=\"225\" /></a></h3>\r\n<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-14 10:33:21", "2014-07-14 17:33:21", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13169", "3", "2014-07-14 10:45:24", "2014-07-14 17:45:24", "<span style=\"color: #339966;\"><strong>South Island Centre Courses</strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<span style=\"color: #339966;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: #339966;\"><a title=\"The Enneagram: A Journey of Self Discovery (24 October, 2014)\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #339966;\">Selfcare for CaregiversÂ (October 18, 2014)</span></a></span></li>\r\n	<li><span style=\"color: #339966;\"><a title=\"The Enneagram: A Journey of Self Discovery (24 October, 2014)\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #339966;\">The Enneagram: A Journey of Self Discovery</span></a></span> (October 24, 2014)</li>\r\n	<li><span style=\"color: #339966;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #339966;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. Â We will not share your contact information with any outside sources as we use a blind copy distribution.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-14 10:45:24", "2014-07-14 17:45:24", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13170", "3", "2014-07-14 10:47:14", "2014-07-14 17:47:14", "<span style=\"color: #339966;\"><strong>South Island Centre Courses</strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<span style=\"color: #339966;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: #339966;\"><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #339966;\">Selfcare for CaregiversÂ (October 18, 2014)</span></a></span></li>\r\n	<li><span style=\"color: #339966;\"><span style=\"color: #339966;\">The Enneagram: A Journey of Self Discovery</span></span> (October 24, 2014)</li>\r\n	<li><span style=\"color: #339966;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #339966;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. Â We will not share your contact information with any outside sources as we use a blind copy distribution.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-14 10:47:14", "2014-07-14 17:47:14", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13171", "3", "2014-07-14 10:48:36", "2014-07-14 17:48:36", "<span style=\"color: #339966;\"><strong>South Island Centre Courses</strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<span style=\"color: #339966;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: #339966;\"><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #339966;\">Selfcare for CaregiversÂ (October 18, 2014)</span></a></span></li>\r\n	<li><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #339966;\"><span style=\"color: #339966;\">The Enneagram: A Journey of Self Discovery</span></span></a> (October 24, 2014)</li>\r\n	<li><span style=\"color: #339966;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #339966;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. Â We will not share your contact information with any outside sources as we use a blind copy distribution.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-14 10:48:36", "2014-07-14 17:48:36", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13172", "3", "2014-07-14 10:50:41", "2014-07-14 17:50:41", "<span style=\"color: #339966;\"><strong>South Island Centre Courses</strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<span style=\"color: #339966;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: #008000;\"><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #008000;\">S</span></a><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #008000;\">e</span></a><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #008000;\">lfcare for Caregivers</span></a></span><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(October 18, 2014)</span></span></span></li>\r\n	<li><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #339966;\"><span style=\"color: #339966;\">The Enneagram: A Journey of Self Discovery</span></span></a> (October 24, 2014)</li>\r\n	<li><span style=\"color: #339966;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #339966;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are listed on our <strong>Home Page</strong>. Please click on the <b>Course and Events Calendar</b>Â for complete details for each course. When looking for a specific category, you may also use theÂ <strong>Search here</strong> box at the top right corner above the calendar.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. Â We will not share your contact information with any outside sources as we use a blind copy distribution.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-14 10:50:41", "2014-07-14 17:50:41", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13173", "3", "2014-07-14 10:53:37", "2014-07-14 17:53:37", "", "Marriage Preparation - general information", "", "inherit", "closed", "closed", "", "general-marriage-prep-poster-2014-2", "", "", "2014-07-14 10:53:37", "2014-07-14 17:53:37", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13174", "3", "2014-07-14 10:55:37", "2014-07-14 17:55:37", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <strong><span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span></strong>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong><span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-14 10:55:37", "2014-07-14 17:55:37", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13175", "3", "2014-07-14 10:57:25", "2014-07-14 17:57:25", "Below are general information posters of allÂ <span style=\"color: #0000ff;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <strong><span style=\"color: #0000ff;\"><em>specific dates and times of up-coming courses</em></span></strong>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong><span style=\"color: #0000ff;\">250-472-2851, extension 101.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-14 10:57:25", "2014-07-14 17:57:25", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13176", "3", "2014-07-14 14:17:15", "2014-07-14 21:17:15", "<strong>Bill Cole</strong>\r\n\r\n[caption id=\"attachment_13146\" align=\"alignnone\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"size-medium wp-image-13146\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n\r\n<strong>Margaret Anderson</strong>\r\n\r\n[caption id=\"attachment_13148\" align=\"alignnone\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"size-medium wp-image-13148\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Margaret Anderson</strong> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-14 14:17:15", "2014-07-14 21:17:15", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13177", "3", "2014-07-14 14:39:48", "2014-07-14 21:39:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong>, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral, spiritual direction, and career choice counselling as well as and pastoral care team training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-14 14:39:48", "2014-07-14 21:39:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13179", "3", "2014-07-14 14:56:59", "2014-07-14 21:56:59", "<strong>Click here Â to view theÂ <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf\">Board of Directors Package - General Information</a>.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Daphne Taylor (interim chair)Â </strong>\r\n\r\nI am a senior who has twice benefitted from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Meredith Brown (secretary)Â </strong>\r\n\r\n<strong>Sandra Scarth (member-at-large)</strong>\r\n\r\n<strong>Sally Tuckey (member-at-large)</strong>\r\n\r\n<strong>Barbara Underhill (member-at-large)</strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-07-14 14:56:59", "2014-07-14 21:56:59", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13189", "3", "2014-07-15 09:13:59", "2014-07-15 16:13:59", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations. <span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more. Our <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong> Â  <span style=\"color: #0000ff;\"><strong>Affordable Counselling Services</strong></span> At South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\">click here</a> to view our sliding fee scale which isÂ based on your combined family income. ToÂ <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span>Â call our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a>Â to e-mail us at counselling@localhost. More information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-15 09:13:59", "2014-07-15 16:13:59", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13196", "3", "2014-07-15 09:18:42", "2014-07-15 16:18:42", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong> <span style=\"color: #0000ff;\">Samaritan\'s Fund</span></strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>How to make a donation to our Samaritan\'s Fund</strong></span> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #0000ff;\">The Fine Print</span></strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>In-Kind Donation (Volunteer with us)</strong></span>\r\n\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-07-15 09:18:42", "2014-07-15 16:18:42", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13209", "3", "2014-07-15 09:38:42", "2014-07-15 16:38:42", "<h3></h3>\r\n[gallery columns=\"4\" ids=\"13202,13201,13200,13199\"]\r\n<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-15 09:38:42", "2014-07-15 16:38:42", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13210", "3", "2014-07-15 09:39:33", "2014-07-15 16:39:33", "Read what a participant in the CareerChoice Program had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the <strong>Mid-Life Directions</strong> with facilitator <strong>Barbara Baillie</strong> had to say about the experience:\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a newÂ <strong>meat</strong> to reflect and chew on!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Lay Pastoral Care Team Dialogue</strong> with trainer <strong>Margaret Anderson</strong> had to say:\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\r\n\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"", "Testimonials ", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2014-07-15 09:39:33", "2014-07-15 16:39:33", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13211", "3", "2014-07-15 09:41:00", "2014-07-15 16:41:00", "<h3></h3>\r\n<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-15 09:41:00", "2014-07-15 16:41:00", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13214", "3", "2014-07-15 09:53:18", "2014-07-15 16:53:18", "", "smalllogo", "", "inherit", "closed", "closed", "", "smalllogo-2", "", "", "2014-07-15 09:53:18", "2014-07-15 16:53:18", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13224", "3", "2014-07-15 10:19:47", "2014-07-15 17:19:47", "For more information, please hover over <strong>About us</strong> in the top ribbon, which will show you <strong>Meet our Counsellors</strong>Â catory<strong>Â </strong>inÂ the drop-down menu, and then click on the counsellor\'s name in the menu on the right.\r\n\r\nBelow is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems, Couple and family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-15 10:19:47", "2014-07-15 17:19:47", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13225", "3", "2014-07-15 10:20:44", "2014-07-15 17:20:44", "For more information, please hover over <strong>About us</strong> in the top ribbon, which will show you <strong>Meet our Counsellors</strong>Â catory<strong>Â </strong>inÂ the drop-down menu, and then click on the counsellor\'s name in the menu on the right.\r\n\r\n&nbsp;\r\n\r\nBelow is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems, Couple and family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-15 10:20:44", "2014-07-15 17:20:44", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13226", "3", "2014-07-15 10:21:07", "2014-07-15 17:21:07", "For more information, please hover over <strong>About us</strong> in the top ribbon, which will show you <strong>Meet our Counsellors</strong>Â category<strong>Â </strong>inÂ the drop-down menu, and then click on the individual counsellor\'s name in the menu on the right.\r\n\r\n&nbsp;\r\n\r\nBelow is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems, Couple and family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-15 10:21:07", "2014-07-15 17:21:07", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13227", "3", "2014-07-15 10:25:27", "2014-07-15 17:25:27", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues. <span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Affordable Counselling Services</strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\">click here</a> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\nToÂ <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-15 10:25:27", "2014-07-15 17:25:27", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13228", "3", "2014-07-15 10:31:50", "2014-07-15 17:31:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-013.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 10:31:50", "2014-07-15 17:31:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13229", "3", "2014-07-15 10:41:12", "2014-07-15 17:41:12", "<span style=\"color: #339966;\"><strong>South Island Centre Courses</strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n<span style=\"color: #339966;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: #008000;\"><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #008000;\">S</span></a><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #008000;\">e</span></a><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #008000;\">lfcare for Caregivers</span></a></span><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(October 18, 2014)</span></span></span></li>\r\n	<li><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #339966;\"><span style=\"color: #339966;\">The Enneagram: A Journey of Self Discovery</span></span></a> (October 24, 2014)</li>\r\n	<li><span style=\"color: #339966;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #339966;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-15 10:41:12", "2014-07-15 17:41:12", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13230", "3", "2014-07-15 10:45:13", "2014-07-15 17:45:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 10:45:13", "2014-07-15 17:45:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13231", "3", "2014-07-15 10:48:18", "2014-07-15 17:48:18", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 10:48:18", "2014-07-15 17:48:18", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13232", "3", "2014-07-15 10:49:32", "2014-07-15 17:49:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/ target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 10:49:32", "2014-07-15 17:49:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13234", "3", "2014-07-15 10:52:59", "2014-07-15 17:52:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 10:52:59", "2014-07-15 17:52:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13235", "3", "2014-07-15 10:55:35", "2014-07-15 17:55:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_team type=\"masonry\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 10:55:35", "2014-07-15 17:55:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13236", "3", "2014-07-15 10:56:26", "2014-07-15 17:56:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Vased interdum vulputate pellen tesque, velit nulla commodo sem lacus et vulputate pellen tesque velit nulla lorem nulla sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet commun vitas imperdiet eleifend magna vulputate pellen tesque velit nulla.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 10:56:26", "2014-07-15 17:56:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13238", "3", "2014-07-15 11:03:57", "2014-07-15 18:03:57", "Read what a participant in the <strong>CareerChoice Program</strong> had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the <strong>Mid-Life Directions</strong> with facilitator <strong>Barbara Baillie</strong> had to say about the experience:\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a newÂ <strong>meat</strong> to reflect and chew on!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Lay Pastoral Care Team Dialogue</strong> with trainer <strong>Margaret Anderson</strong> had to say:\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\r\n\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"", "Testimonials ", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2014-07-15 11:03:57", "2014-07-15 18:03:57", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13240", "3", "2014-07-15 11:06:37", "2014-07-15 18:06:37", "Read what a participant in the <strong>CareerChoice Program</strong> had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\nRead what a few participants of the <strong>Mid-Life Directions</strong> with facilitator <strong>Barbara Baillie</strong> had to say about the experience:\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a newÂ <strong>meat</strong> to reflect and chew on!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Lay Pastoral Care Team Dialogue</strong> with trainer <strong>Margaret Anderson</strong> had to say:\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:\r\n\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"", "Testimonials ", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2014-07-15 11:06:37", "2014-07-15 18:06:37", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13241", "3", "2014-07-15 11:16:41", "2014-07-15 18:16:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Core features</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]All of the quotes below have been transcribed from counselling survey and course evaluation forms submitted to us by clients and participants in the last few years.\r\n\r\n<strong>About our Counselling:</strong>\r\n\"I am extremely fortunate to have this opportunity to grow tremendeously with the miraculous support of my counsellor at South Island Centre. My counsellor is truly a blessing that I greatly value and appreciate!\"\r\n\r\n\"I am very happy with the counselling services which have helped me to let go and move on to new adventures.\"\r\n\r\n\"This has been life changing. Thank you!\"\r\n\r\n<strong>About our Courses: </strong>\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a new meat to reflect and chew on!\"\r\n\r\n<strong>About our Training Programs:</strong>\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n\"It\'s been a great week. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 11:16:41", "2014-07-15 18:16:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13242", "3", "2014-07-15 11:25:19", "2014-07-15 18:25:19", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]<strong>Testimonials from Clients and Course and Training Program Participants</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]All of the quotes below have been transcribed from counselling survey and course evaluation forms submitted to us by clients and participants in the last few years.\r\n\r\n<strong>About our Counselling:</strong>\r\n\"I am extremely fortunate to have this opportunity to grow tremendeously with the miraculous support of my counsellor at South Island Centre. My counsellor is truly a blessing that I greatly value and appreciate!\"\r\n\r\n\"I am very happy with the counselling services which have helped me to let go and move on to new adventures.\"\r\n\r\n\"This has been life changing. Thank you!\"\r\n\r\n<strong>About our Courses: </strong>\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a new meat to reflect and chew on!\"\r\n\r\n<strong>About our Training Programs:</strong>\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n\"It\'s been a great week. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-15 11:25:19", "2014-07-15 18:25:19", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13243", "3", "2014-07-16 10:57:51", "2014-07-16 17:57:51", "<h3 style=\"text-align: left;\"></h3>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Spiritual Directors at South Island Centre:</strong></span></h4>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Barbara Baillie and Pamela WelleÂ </strong></span></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">For more information on <strong>Barbara Baillie</strong>Â orÂ <strong>Pamela Welle</strong>, please go to the <strong>Meet</strong><strong>Â Us</strong>Â section and click on the individual counsellor\'s page.Â </span></span>\r\n\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-16 10:57:51", "2014-07-16 17:57:51", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13245", "3", "2014-07-16 11:01:24", "2014-07-16 18:01:24", "Spiritual Directors at South Island Centre:\n\nBarbara Baillie (MTS, MAPPC)\nPamela Welle (MASF)", "Spiritual Directors poster general 2014", "Within each of us dwells the desire to be accepted for who we are and to find meaning beyond the effort of our day-to-day lives. We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in YOUR life. ", "inherit", "closed", "closed", "", "spiritual-directors-poster-general-2014-2", "", "", "2014-07-16 11:01:24", "2014-07-16 18:01:24", "", "91", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13246", "3", "2014-07-16 11:04:51", "2014-07-16 18:04:51", "<h3 style=\"text-align: left;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\">Spiritual Directors poster general 2014</a></h3>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Spiritual Directors at South Island Centre:</strong></span></h4>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #0000ff;\"><strong>Barbara Baillie and Pamela WelleÂ </strong></span></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-16 11:04:51", "2014-07-16 18:04:51", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13252", "3", "2014-07-17 10:06:14", "2014-07-17 17:06:14", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][dt_gap height=\"20\"][vc_column_text]All of the quotes below have been transcribed from counselling survey and course evaluation forms submitted to us by clients and participants in the last few years.\r\n\r\n<strong>About our Counselling:</strong>\r\n\"I am extremely fortunate to have this opportunity to grow tremendeously with the miraculous support of my counsellor at South Island Centre. My counsellor is truly a blessing that I greatly value and appreciate!\"\r\n\r\n\"I am very happy with the counselling services which have helped me to let go and move on to new adventures.\"\r\n\r\n\"This has been life changing. Thank you!\"\r\n\r\n<strong>About our Courses: </strong>\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a new meat to reflect and chew on!\"\r\n\r\n<strong>About our Training Programs:</strong>\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n\"It\'s been a great week. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-17 10:06:14", "2014-07-17 17:06:14", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13254", "3", "2014-07-17 10:07:05", "2014-07-17 17:07:05", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01,testimonials-category-02\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-17 10:07:05", "2014-07-17 17:07:05", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13255", "3", "2014-07-17 10:08:23", "2014-07-17 17:08:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_testimonials type=\"list\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01,testimonials-category-02\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-17 10:08:23", "2014-07-17 17:08:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13257", "3", "2014-07-17 12:18:52", "2014-07-17 19:18:52", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre\r\nfor Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ...\r\nYou don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\n<strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a>\r\n(Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date:</strong> Saturday, November 22, 2014\r\n<strong>Time:</strong> 6:30pm-9:00pm.\r\n<strong>Location:</strong> tba\r\n<strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong>\r\nWe offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong>\r\nWe offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong>\r\nWe offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_testimonials type=\"masonry\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01,testimonials-category-02\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n\r\n&nbsp;\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-17 12:18:52", "2014-07-17 19:18:52", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13258", "3", "2014-07-17 12:19:30", "2014-07-17 19:19:30", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01,testimonials-category-02\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-17 12:19:30", "2014-07-17 19:19:30", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13260", "3", "2014-07-17 12:22:25", "2014-07-17 19:22:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01,testimonials-category-02\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-17 12:22:25", "2014-07-17 19:22:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13261", "3", "2014-07-17 12:22:57", "2014-07-17 19:22:57", "Thank you for everything you did. Discussing the issues and events that happened in the following few months made me realize that I needed to make a fresh start. My life is very happy now. Thanks again. --- I now have more coping skills for dealing with stressful situations and family members. So thankful for this service in a time of desperate need. Counsellors have been attentive and helpful. ---- I want to say how thankful I am to South Island Centre for not discriminating against clients who are not able to pay full costs for counselling services! In these times of increasing stresses and strains on everyone, I am grateful for people and organizations who continue to care and make efforts to help those who are less fortunate. --- I know I will not be able to find the words to adequately describe how grateful and thankful I am for your counselling services (some of which were provided at no cost due to my financial position). I am now hopeful, for the first time in 10 pain-filled years, that I can begin to create a healthy relationship with others.", "About Our Counselling Services", "", "publish", "closed", "closed", "", "counselling", "", "", "2014-07-23 10:11:01", "2014-07-23 17:11:01", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=dt_testimonials&#038;p=13261", "0", "dt_testimonials", "", "0");
INSERT INTO `wp_posts` VALUES("13262", "3", "2014-07-17 12:27:37", "2014-07-17 19:27:37", "Comments about our Ebb and Flow Course:\r\n<ul>\r\n	<li>I really appreciated the videos, particularly \"Griefwalker\" and I found the organization of the material and presentation style very engaging, comprehensive and extremely useful! I will benefit from this throughout life!</li>\r\n	<li>Great course, great group! Dynamic - easy to follow and understand. Loved how you kept on time and kept the group focused on the topic! ---</li>\r\n	<li>It was wonderful! Thank you! --- Arrived expecting confirmation of a journey past, but left with a newÂ <strong>meat</strong>Â to reflect and chew on! ---</li>\r\n	<li>Great workshop! I enjoyed the dialogue! --- Â Good info especially around hospice services. Good to hear what other groups are doing! ---</li>\r\n	<li>Very good workshop! Knowledge that we need to talk about (death)! --- Â Excellent! Great info and use of time. Clear and concise info!</li>\r\n</ul>", "About Our Courses ", "", "publish", "closed", "closed", "", "courses", "", "", "2016-08-17 12:05:01", "2016-08-17 19:05:01", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=dt_testimonials&#038;p=13262", "0", "dt_testimonials", "", "0");
INSERT INTO `wp_posts` VALUES("13264", "3", "2014-07-23 10:10:59", "2014-07-23 17:10:59", "Thank you for everything you did. Discussing the issues and events that happened in the following few months made me realize that I needed to make a fresh start. My life is very happy now. Thanks again. --- I now have more coping skills for dealing with stressful situations and family members. So thankful for this service in a time of desperate need. Counsellors have been attentive and helpful. ---- I want to say how thankful I am to South Island Centre for not discriminating against clients who are not able to pay full costs for counselling services! In these times of increasing stresses and strains on everyone, I am grateful for people and organizations who continue to care and make efforts to help those who are less fortunate. --- I know I will not be able to find the words to adequately describe how grateful and thankful I am for your counselling services (some of which were provided at no cost due to my financial position). I am now hopeful, for the first time in 10 pain-filled years, that I can begin to create a healthy relationship with others.", "About Our Counselling Services", "", "inherit", "closed", "closed", "", "13261-autosave-v1", "", "", "2014-07-23 10:10:59", "2014-07-23 17:10:59", "", "13261", "http://localhost:8888/TestSICPage/wordpress/13261-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13269", "3", "2014-07-21 09:13:59", "2014-07-21 16:13:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/pages/pricing-tables-go-pricing/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Pricing plans[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01,testimonials-category-02\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-21 09:13:59", "2014-07-21 16:13:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13270", "3", "2014-07-21 09:15:40", "2014-07-21 16:15:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01,testimonials-category-02\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-21 09:15:40", "2014-07-21 16:15:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13271", "3", "2014-07-21 09:16:48", "2014-07-21 16:16:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-02,testimonials-category-01\" autoslide=\"1000\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-21 09:16:48", "2014-07-21 16:16:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13273", "3", "2014-07-21 09:44:16", "2014-07-21 16:44:16", "[vc_row][vc_column][vc_column_text]\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts.jpg\"><img class=\"alignleft wp-image-13223 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts-300x277.jpg\" alt=\"How to Care for Introverts\" width=\"300\" height=\"277\" /></a>\r\n\r\n&nbsp;\r\n\r\nThese are the values South Island Centre adheres to:\r\n\r\n&nbsp;\r\n\r\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients and accountability within our organization.\r\n\r\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\r\n\r\n<strong>Growth</strong> - we facilitate growth in all areas of a personâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts.jpg\"><img class=\"alignright wp-image-13222 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts-300x300.jpg\" alt=\"How to care for Extroverts\" width=\"300\" height=\"300\" /></a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity, and healing through counselling, mentorship, and coaching.\r\n\r\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other and our clients.\r\n\r\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "South Island Centre Values", "", "publish", "closed", "closed", "", "south-island-values", "", "", "2014-08-13 09:48:17", "2014-08-13 16:48:17", "", "5", "http://localhost:8888/TestSICPage/wordpress/?page_id=13273", "77", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13274", "3", "2014-07-21 09:44:16", "2014-07-21 16:44:16", "South Island Centre\'s values:\r\n\r\n<strong>Ethical practices</strong>\r\n<ul>\r\n	<li>confidential services</li>\r\n	<li>a commitment to values</li>\r\n	<li>accountability</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Inclusivity</strong>\r\n<ul>\r\n	<li>acceptance of everyone, regardless of their faith choices</li>\r\n	<li>non-judgmental</li>\r\n	<li>open and honest</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Growth</strong>\r\n<ul>\r\n	<li>personal (moving toward wholeness)</li>\r\n	<li>professional</li>\r\n	<li>organizational (effectiveness, efficiency, programming, team)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Effective Leadership</strong>\r\n<ul>\r\n	<li>excellence in all we do</li>\r\n	<li>collaboration</li>\r\n	<li>discernment</li>\r\n	<li>encouraging empowerment, creativity and healing</li>\r\n	<li>mentorship</li>\r\n	<li>coaching</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Integrity</strong>\r\n<ul>\r\n	<li>trust</li>\r\n	<li>respect</li>\r\n	<li>authenticity</li>\r\n	<li>honesty</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Service</strong>\r\n<ul>\r\n	<li>professional competence</li>\r\n	<li>compassion</li>\r\n	<li>support</li>\r\n	<li>outreach</li>\r\n	<li>affordable</li>\r\n</ul>", "South Island Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-07-21 09:44:16", "2014-07-21 16:44:16", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13276", "3", "2014-07-21 09:46:06", "2014-07-21 16:46:06", "South Island Centre\'s values:\r\n\r\n<strong>Ethical practices</strong>\r\n<ul>\r\n	<li>confidential services</li>\r\n	<li>a commitment to values</li>\r\n	<li>accountability</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Inclusivity</strong>\r\n<ul>\r\n	<li>acceptance of everyone, regardless of their faith choices</li>\r\n	<li>non-judgmental</li>\r\n	<li>open and honest</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Growth</strong>\r\n<ul>\r\n	<li>personal (moving toward wholeness)</li>\r\n	<li>professional</li>\r\n	<li>organizational (effectiveness, efficiency, programming, team)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Effective Leadership</strong>\r\n<ul>\r\n	<li>excellence in all we do</li>\r\n	<li>collaboration</li>\r\n	<li>discernment</li>\r\n	<li>encouraging empowerment, creativity and healing</li>\r\n	<li>mentorship</li>\r\n	<li>coaching</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Integrity</strong>\r\n<ul>\r\n	<li>trust</li>\r\n	<li>respect</li>\r\n	<li>authenticity</li>\r\n	<li>honesty</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Service</strong>\r\n<ul>\r\n	<li>professional competence</li>\r\n	<li>compassion</li>\r\n	<li>support</li>\r\n	<li>outreach</li>\r\n	<li>affordable</li>\r\n</ul>", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-07-21 09:46:06", "2014-07-21 16:46:06", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13281", "3", "2014-07-21 10:38:12", "2014-07-21 17:38:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-02,testimonials-category-01\" autoslide=\"5000\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-21 10:38:12", "2014-07-21 17:38:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13282", "3", "2014-07-21 10:41:13", "2014-07-21 17:41:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"60\" margin_top=\"40\" margin_bottom=\"40\" full_width_padding_left=\"40\" full_width_padding_right=\"40\" full_width_margin_top=\"0\" full_width_margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"4\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-02,testimonials-category-01\" autoslide=\"5000\"][dt_gap height=\"20\"][dt_gap height=\"10\"][dt_button link=\"http://the7.dream-demo.com/features/full-features-list/\" target_blank=\"false\" size=\"link\" animation=\"fade\"]Other features[/dt_button][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/2\"][dt_benefits_vc columns=\"2\" style=\"3\" dividers=\"true\" image_background=\"false\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"6\" orderby=\"date\" order=\"desc\" animation=\"none\" category=\"iconfont,captions1\"][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-21 10:41:13", "2014-07-21 17:41:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13283", "3", "2014-07-21 10:53:35", "2014-07-21 17:53:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"http://the7.dream-demo.com/features/what-buyers-say-about-the7/\" target_blank=\"true\"]READ REVIEWS[/dt_button][dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]DOWNLOAD[/dt_button]</p>\r\n[/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-21 10:53:35", "2014-07-21 17:53:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13300", "3", "2014-07-21 13:05:01", "2014-07-21 20:05:01", "", "Logo small file", "", "inherit", "closed", "closed", "", "logo-small-file", "", "", "2014-07-21 13:05:01", "2014-07-21 20:05:01", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Logo-small-file.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13301", "3", "2014-07-21 13:06:28", "2014-07-21 20:06:28", "", "Logo-small-file", "", "inherit", "closed", "closed", "", "logo-small-file-2", "", "", "2014-07-21 13:06:28", "2014-07-21 20:06:28", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Logo-small-file1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13305", "3", "2014-07-22 09:19:50", "2014-07-22 16:19:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row]</p>", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:19:50", "2014-07-22 16:19:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13307", "3", "2014-07-22 09:21:29", "2014-07-22 16:21:29", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"13306\" img_link_target=\"_self\" img_link=\"https://www.canadahelps.org/dn/12787\"][/vc_column][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:21:29", "2014-07-22 16:21:29", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13309", "3", "2014-07-22 09:23:06", "2014-07-22 16:23:06", "", "vicfoundation", "", "inherit", "closed", "closed", "", "vicfoundation", "", "", "2014-07-22 09:23:06", "2014-07-22 16:23:06", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/vicfoundation.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13310", "3", "2014-07-22 09:23:28", "2014-07-22 16:23:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"13306\" img_link_target=\"_self\" img_link=\"https://www.canadahelps.org/dn/12787\"][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"13309\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\"][/vc_column][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:23:28", "2014-07-22 16:23:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13311", "3", "2014-07-22 09:26:23", "2014-07-22 16:26:23", "", "UnitedWayFull375x165", "", "inherit", "closed", "closed", "", "unitedwayfull375x165-2", "", "", "2014-07-22 09:26:23", "2014-07-22 16:26:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/UnitedWayFull375x165.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13312", "3", "2014-07-22 09:26:52", "2014-07-22 16:26:52", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"United Way\" img_link=\"http://uwgv.ca/\"][vc_column_text]</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13309\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\"][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:26:52", "2014-07-22 16:26:52", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13313", "3", "2014-07-22 09:28:16", "2014-07-22 16:28:16", "", "vicfound", "", "inherit", "closed", "closed", "", "vicfound", "", "", "2014-07-22 09:28:16", "2014-07-22 16:28:16", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/vicfound.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13314", "3", "2014-07-22 09:28:34", "2014-07-22 16:28:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"United Way\" img_link=\"http://uwgv.ca/\"][vc_column_text]</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"Victoria Foundation\"][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:28:34", "2014-07-22 16:28:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13316", "3", "2014-07-22 09:30:36", "2014-07-22 16:30:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training.\r\n[dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"United Way\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"Victoria Foundation\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"St. Luke\'s Anglican Church\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:30:36", "2014-07-22 16:30:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13317", "3", "2014-07-22 09:31:33", "2014-07-22 16:31:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training. [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"Victoria Foundation\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"St. Luke\'s Anglican Church\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:31:33", "2014-07-22 16:31:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13319", "3", "2014-07-22 09:34:28", "2014-07-22 16:34:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training. [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:34:28", "2014-07-22 16:34:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13320", "3", "2014-07-22 09:54:13", "2014-07-22 16:54:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. <strong>Give us a call today at (250) 472-2851. We are here to help!</strong>[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training. [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 09:54:13", "2014-07-22 16:54:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13322", "3", "2014-07-22 10:10:27", "2014-07-22 17:10:27", "<h3></h3>\r\n<h3></h3>\r\n<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-22 10:10:27", "2014-07-22 17:10:27", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13323", "3", "2014-07-22 10:10:43", "2014-07-22 17:10:43", "<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>General inquiry or up-coming event:Â </strong><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">Click here</a>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\">Click here</a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\">Click here</a>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">Click here</a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-22 10:10:43", "2014-07-22 17:10:43", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13324", "3", "2014-07-22 10:16:04", "2014-07-22 17:16:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong> We offer pastoral counselling for clergy, spiritual direction, and career choice counselling, as well as pastoral care team and career choice training. [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 10:16:04", "2014-07-22 17:16:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13325", "3", "2014-07-22 10:24:39", "2014-07-22 17:24:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training. [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-22 10:24:39", "2014-07-22 17:24:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13326", "3", "2014-07-22 10:39:41", "2014-07-22 17:39:41", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon, to click on a specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in to get more information on the services we provide; or continue reading below.</span>\r\n<h3><span style=\"color: #0000ff;\">Pastoral Services and Our Christian Roots</span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Profession</span><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">al</span><span style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\"> Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\">Spiritual Direction Program</span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #0000ff;\"><strong> Barbara Baillie</strong></span> and <strong><span style=\"color: #0000ff;\">Pamela Welle</span></strong>. For more in-depth information, please go to theÂ <strong>Meet Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3><span style=\"color: #0000ff;\">CareerChoice Program</span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-07-22 10:39:41", "2014-07-22 17:39:41", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13327", "3", "2014-07-22 11:02:38", "2014-07-22 18:02:38", "The <strong><span style=\"color: #0000ff;\">CareerChoice program</span></strong> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n<strong>Interested in starting your CareerChoice program?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to e-mail us at info@localhost to get you going.", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-revision-v1", "", "", "2014-07-22 11:02:38", "2014-07-22 18:02:38", "", "123", "http://localhost:8888/TestSICPage/wordpress/123-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13332", "3", "2014-07-22 11:12:30", "2014-07-22 18:12:30", "The <strong><span style=\"color: #0000ff;\">CareerChoice program</span></strong> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service. Read what a participant had to say about the experience: \"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\" <strong>Interested in starting your CareerChoice program?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to e-mail us at info@localhost to get you going.", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-revision-v1", "", "", "2014-07-22 11:12:30", "2014-07-22 18:12:30", "", "123", "http://localhost:8888/TestSICPage/wordpress/123-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13333", "3", "2014-07-22 11:13:56", "2014-07-22 18:13:56", "<h3><span style=\"color: #000000;\">Our mailing address:</span></h3>\r\n<i class=\"fa fa-envelope\"><span style=\"color: transparent; display: none;\">icon-envelope</span></i>Â 3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><span style=\"color: #000000;\">Telephone/Fax info:</span></h3>\r\n<strong>Telephone:</strong> (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong> (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><span style=\"color: #000000;\"><strong>Office hours</strong>:</span></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre is <strong>closed</strong> on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em> If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Counselling hours:</span></span> weekdays during office hours, and some evenings and weekends (please inquire).\r\n<h3></h3>\r\n<h3><span style=\"color: #000000;\"><strong>E-mails:</strong></span></h3>\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:<span style=\"color: #000000;\">Â </span></strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n<h3></h3>", "Contact Us", "", "inherit", "closed", "closed", "", "29-revision-v1", "", "", "2014-07-22 11:13:56", "2014-07-22 18:13:56", "", "29", "http://localhost:8888/TestSICPage/wordpress/29-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13336", "3", "2014-07-22 11:16:19", "2014-07-22 18:16:19", "&nbsp;\r\n\r\nSouth Island Centre is located at:\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong>3821A Cedar Hill Cross Road</strong></span> (Saanich).Â <strong>Parking is free.</strong>\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: rgb(0, 0, 0);\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: rgb(0, 0, 0);\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-22 11:16:19", "2014-07-22 18:16:19", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13342", "3", "2014-07-22 11:18:38", "2014-07-22 18:18:38", "<strong>Click here Â to view the<span style=\"color: rgb(0, 0, 0);\">Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf\"><span style=\"color: rgb(0, 0, 0);\">Board of Directors Package - General Information</span></a>.</span></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Daphne Taylor (interim chair)Â </strong>\r\n\r\nI am a senior who has twice benefitted from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Sandra Scarth (member-at-large)</strong>\r\n\r\n<strong>Sally Tuckey (member-at-large)</strong>\r\n\r\n<strong>Barbara Underhill (member-at-large)</strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-07-22 11:18:38", "2014-07-22 18:18:38", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13343", "3", "2014-07-22 11:19:47", "2014-07-22 18:19:47", "<h3><span style=\"color: #000000;\"><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></span></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\"><strong>Affordable Counselling Services</strong></span></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to view our graduated fee scale whichÂ is based on your combined family income.\r\n\r\nTo <span style=\"color: #000000;\"><strong>book an appointment:</strong></span> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to e-mail us at counselling@localhost.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-07-22 11:19:47", "2014-07-22 18:19:47", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13344", "3", "2014-07-22 11:20:59", "2014-07-22 18:20:59", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n<h3><span style=\"color: #0000ff;\">G<span style=\"color: #000000;\">raduated Fee Scale</span></span></h3>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\">Insurance Coverage</span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Affordable Counselling Services ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-07-22 11:20:59", "2014-07-22 18:20:59", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13345", "3", "2014-07-22 11:22:06", "2014-07-22 18:22:06", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Bill Cole (RCC, MA) - Â Director of Services</span></span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Carla Haveman</span></span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Fiona Pasay (MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is a volunteer counsellor with South Island Centre and is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-07-22 11:22:06", "2014-07-22 18:22:06", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13346", "3", "2014-07-22 11:22:31", "2014-07-22 18:22:31", "For more in-depth information, please hover over the <strong>MeetÂ Us</strong>Â section in the top ribbon, which will in turn prompt a drop-down menu. Hover over <strong>Meet our Counsellors</strong>,Â then <strong>click</strong> on the name of the <span style=\"text-decoration: underline;\">individual counsellor</span> to access his or her biographical page.\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Bill Cole (RCC, MA) - Â Director of Services</span></span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Carla Haveman</span></span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Fiona Pasay (MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is a volunteer counsellor with South Island Centre and is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-07-22 11:22:31", "2014-07-22 18:22:31", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13347", "3", "2014-07-22 11:22:59", "2014-07-22 18:22:59", "<h3 style=\"text-align: left;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\">Spiritual Directors poster general 2014</a></h3>\r\n<h4>Spiritual Directors at South Island Centre:</h4>\r\n<h4>Barbara Baillie and Pamela Welle</h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-22 11:22:59", "2014-07-22 18:22:59", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13348", "3", "2014-07-22 11:23:35", "2014-07-22 18:23:35", "<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h3>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our office co-ordinator at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nYou may also contact us by email:Â <span style=\"color: #000000;\"><a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to email us at counselling@localhost.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h3>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-07-22 11:23:35", "2014-07-22 18:23:35", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13349", "3", "2014-07-22 11:23:54", "2014-07-22 18:23:54", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignnone size-full wp-image-694\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" alt=\"bill_cole_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\nDirector of Services of <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Director of Services", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-07-22 11:23:54", "2014-07-22 18:23:54", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13351", "3", "2014-07-22 11:24:26", "2014-07-22 18:24:26", "<h3 style=\"text-align: left;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\">Spiritual Directors poster general 2014</a></h3>\n<h4>Spiritual Directors at South Island Centre:</h4>\n<h4>Barbara Baillie and Pamela Welle</h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\n\n&nbsp;\n\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-autosave-v1", "", "", "2014-07-22 11:24:26", "2014-07-22 18:24:26", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13352", "3", "2014-07-22 11:24:35", "2014-07-22 18:24:35", "<h3 style=\"text-align: left;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\">Spiritual Directors poster general 2014</a></h3>\r\n<h4>Spiritual Directors at South Island Centre:</h4>\r\n<h4>Barbara Baillie and Pamela Welle</h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\">click here</a>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-22 11:24:35", "2014-07-22 18:24:35", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13354", "3", "2014-07-22 11:25:16", "2014-07-22 18:25:16", "<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #000000;\">S</span></a><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #000000;\">e</span></a><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #000000;\">lfcare for Caregivers</span></a></span><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #000000;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #339966;\">The Enneagram: A Journey of Self Discovery</span></span></a></span> (October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-22 11:25:16", "2014-07-22 18:25:16", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13355", "3", "2014-07-22 11:26:27", "2014-07-22 18:26:27", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Event Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: rgb(0, 0, 0); text-decoration: underline;\">How to register for a course:Â </span></span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: rgb(0, 0, 0);\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Payment Information and Options</strong></span></span></h3>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-22 11:26:27", "2014-07-22 18:26:27", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13359", "3", "2014-07-22 11:27:51", "2014-07-22 18:27:51", "Below are general information posters of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n\r\nYou will find information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on our Home Page.Â Each up-coming course is also listed in the <strong>Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<span style=\"color: #000000;\"><a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Art Therapy Group (<span style=\"color: #000000;\"><a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<span style=\"color: #000000;\"><a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<span style=\"color: #000000;\"><a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>CareerChoice (<span style=\"color: #000000;\"><a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-22 11:27:51", "2014-07-22 18:27:51", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13360", "3", "2014-07-22 11:29:08", "2014-07-22 18:29:08", "Below are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<span style=\"color: #000000;\"><a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<span style=\"color: #000000;\"><a title=\"Caregiver Burnout: The Need for Self-Care (general information poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-GENERAL-info-poster-2014.docx\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster her</span></a>e</span>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">i<span style=\"color: #000000;\">nformation poster here</span></a>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-22 11:29:08", "2014-07-22 18:29:08", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13362", "3", "2014-07-22 11:30:27", "2014-07-22 18:30:27", "Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li>Twilight Journeys (<span style=\"color: #000000;\"><a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<span style=\"color: #000000;\"><a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<span style=\"color: #000000;\"><a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to <strong>email</strong> us at courses@localhost or call our office atÂ <span style=\"color: #000000;\"><i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-22 11:30:27", "2014-07-22 18:30:27", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13363", "3", "2014-07-22 11:30:39", "2014-07-22 18:30:39", "Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li>Twilight Journeys (<span style=\"color: #000000;\"><a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<span style=\"color: #000000;\"><a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<span style=\"color: #000000;\"><a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to <strong>email</strong> us at courses@localhost or call our office atÂ <span style=\"color: #000000;\"><i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-22 11:30:39", "2014-07-22 18:30:39", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13364", "3", "2014-07-22 11:31:49", "2014-07-22 18:31:49", "Please hover over <strong>OtherÂ </strong><strong>Services</strong> in the top ribbon, to click on a specific item inÂ <span style=\"line-height: 1.5em;\">the</span><span style=\"line-height: 1.5em;\">Â </span><strong style=\"line-height: 1.5em;\">drop-down menuÂ </strong><span style=\"line-height: 1.5em;\">y</span><span style=\"line-height: 1.5em;\">ou are interested in to get more information on the services we provide; or continue reading below.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Services and Our Christian Roots</span></span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-size: 1.17em; line-height: 1.5em;\">Profession</span><span style=\"font-size: 1.17em; line-height: 1.5em;\">al</span><span style=\"font-size: 1.17em; line-height: 1.5em;\"> Counselling Consultations for Clergy</span></span></span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #000000;\"><strong> Barbara Baillie</strong></span> and <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>. For more in-depth information, please go to theÂ <strong>Meet Us</strong> section, and then hover overÂ <strong>Meet our Counsellors</strong>, to access the individual counsellor\'s biographical info page.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-07-22 11:31:49", "2014-07-22 18:31:49", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13368", "3", "2014-07-22 11:33:16", "2014-07-22 18:33:16", "<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Services and Our Christian Roots</span></span></h3>\r\nSouth Island Centre for Counselling and Training has been offering <strong>Pastoral Care &amp; Counselling Services</strong> in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre <strong>supports clergy and persons of faith</strong> as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h2></h2>\r\n<h3><span style=\"text-decoration: underline;\"><span>Professional<span style=\"color: #000000; text-decoration: underline;\"> Consultations for Clergy</span></span></span></h3>\r\n<strong>Pastoral care</strong> is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a <strong>consultation service to pastors and other professionals</strong> through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\"><span style=\"color: #333333; font-size: 14px; line-height: 1.5em;\"><strong>Please contact ourÂ Director of Services, Bill Cole,Â by e-mail by clickingÂ </strong>hereÂ or call him at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â (250) 472-2851, extension 102.\r\n</span></span></h3>", "Counselling Services for Clergy", "", "inherit", "closed", "closed", "", "9-revision-v1", "", "", "2014-07-22 11:33:16", "2014-07-22 18:33:16", "", "9", "http://localhost:8888/TestSICPage/wordpress/9-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13369", "3", "2014-07-22 11:34:03", "2014-07-22 18:34:03", "The <span style=\"color: #000000;\"><strong>CareerChoice program</strong></span> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\n&nbsp;\r\n\r\nRead what a participant had to say about the experience: \"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\n<strong>Interested in starting your CareerChoice program?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <span style=\"color: #000000;\"><a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at info@localhost to get you going.", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-revision-v1", "", "", "2014-07-22 11:34:03", "2014-07-22 18:34:03", "", "123", "http://localhost:8888/TestSICPage/wordpress/123-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13371", "3", "2014-07-22 11:34:39", "2014-07-22 18:34:39", "<h3 style=\"text-align: left;\"><span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span></h3>\r\n<h4>Spiritual Directors at South Island Centre:</h4>\r\n<h4>Barbara Baillie and Pamela Welle</h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <span style=\"color: #000000;\"><a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-22 11:34:39", "2014-07-22 18:34:39", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13374", "3", "2014-07-22 11:36:26", "2014-07-22 18:36:26", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â <span style=\"color: rgb(0, 0, 0);\">Samaritan\'s Fund</span></strong><span style=\"color: rgb(0, 0, 0);\">.</span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong>Â </span>(for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Option 1 (preferred)</strong></span></span>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: rgb(0, 0, 0);\"><strong>Option 2</strong></span>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\"><span style=\"text-decoration: underline;\"><span style=\"color: rgb(0, 0, 0); text-decoration: underline;\">O</span><span style=\"color: rgb(0, 0, 0); text-decoration: underline;\">ption 3</span></span></span>:</strong><span style=\"color: rgb(0, 0, 0);\">Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">Click here</span></a></span>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amountÂ </span>we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>In-Kind Donation /VolunteeringÂ </strong></span>\r\n\r\nYou may help us with anÂ <span style=\"color: #000000;\"><strong>in-kind donation</strong></span>Â when you volunteer your time and/or talent\r\n<ul>\r\n	<li>at South Island CentreÂ <strong>events</strong>,</li>\r\n	<li>at the South Island CentreÂ <strong>office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\r\n</ul>\r\nPlease contact us at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <span style=\"color: #000000;\"><a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!", "Support Us", "", "inherit", "closed", "closed", "", "170-revision-v1", "", "", "2014-07-22 11:36:26", "2014-07-22 18:36:26", "", "170", "http://localhost:8888/TestSICPage/wordpress/170-revision-v1/", "1", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13376", "3", "2014-07-22 11:36:57", "2014-07-22 18:36:57", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our<span style=\"color: #000000;\"><strong> Samaritan\'s Fund</strong>.</span> If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>How to make a donation to our Samaritan\'s Fund</strong></span> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 1 (preferred)</strong></span>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n</ul>\r\n<ul>\r\n	<li><span style=\"color: #0000ff;\"><strong>Option 2</strong>Â :</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n<ul>\r\n	<li><strong><span style=\"color: #0000ff;\">Option 3</span>:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ <span style=\"text-decoration: underline;\">decreases the amount</span>Â we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #0000ff;\">The Fine Print</span></strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>In-Kind Donation (Volunteer with us)</strong></span>\r\n\r\nSouth Island Centre appreciates your <span style=\"color: #0000ff;\"><strong>in-kind donation</strong></span> when you volunteer your time at\r\n<ul>\r\n	<li>South Island Centre events,</li>\r\n	<li>South Island Centre office,</li>\r\n	<li>as a South Island Centre board member.</li>\r\n</ul>\r\nPlease contact the office at Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851, extension 101</strong>, if you would like to volunteer with us.\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-07-22 11:36:57", "2014-07-22 18:36:57", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13377", "3", "2014-07-22 11:38:20", "2014-07-22 18:38:20", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n<ul>\r\n	<li>Twilight Journeys (<span style=\"color: #000000;\"><a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<span style=\"color: #000000;\"><a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<span style=\"color: #000000;\"><a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to <strong>email</strong> us at courses@localhost or call our office atÂ <span style=\"color: #000000;\"><i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-22 11:38:20", "2014-07-22 18:38:20", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13378", "3", "2014-07-22 11:38:45", "2014-07-22 18:38:45", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<span style=\"color: #000000;\"><a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<span style=\"color: #000000;\"><a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<span style=\"color: #000000;\"><a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li></li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to <strong>email</strong> us at courses@localhost or call our office atÂ <span style=\"color: #000000;\"><i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-22 11:38:45", "2014-07-22 18:38:45", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13380", "3", "2014-07-22 11:40:05", "2014-07-22 18:40:05", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our <strong>Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\nThere are <strong>3 options to make a donation to our Samaritan\'s Fund</strong> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 1 (preferred)</strong></span>: please mail a cheque (payable to South Island Centre for Counselling and Training) to <em>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</em>. Please include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 2 :</strong> </span>Charge a one-time donation to your credit card by calling the office at 250-472-2851, extension 101, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, as well as your mailing/return address. We will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which decreases the amount we actually receive.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 3:</strong></span> Click here to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which decreases the amount we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Why monthly or quarterly giving?</strong>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<strong>The Fine Print</strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-07-22 11:40:05", "2014-07-22 18:40:05", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13381", "3", "2014-07-22 11:40:33", "2014-07-22 18:40:33", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work.\r\n\r\nYou may help us with anÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\"><strong>in-kind donation</strong></span>Â </span>when you volunteer your time and/or talent\r\n<ul>\r\n	<li>at South Island Centre <strong>events</strong>,</li>\r\n	<li>at the South Island Centre <strong>office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\r\n</ul>\r\nPlease contact us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Volunteer Opportunities", "", "inherit", "closed", "closed", "", "174-revision-v1", "", "", "2014-07-22 11:40:33", "2014-07-22 18:40:33", "", "174", "http://localhost:8888/TestSICPage/wordpress/174-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13385", "3", "2014-07-22 11:41:26", "2014-07-22 18:41:26", "Read what a participant in the <strong>CareerChoice Program</strong> had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\nRead what a few participants of the <strong>Mid-Life Directions</strong> with facilitator <strong>Barbara Baillie</strong> had to say about the experience:\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a newÂ <strong>meat</strong> to reflect and chew on!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Lay Pastoral Care Team Dialogue</strong> with trainer <strong>Margaret Anderson</strong> had to say:\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Pastoral Counselling Training</strong> with trainer <strong>Bill Cole</strong> had to say about the experience:\r\n\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"", "Testimonials ", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2014-07-22 11:41:26", "2014-07-22 18:41:26", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13386", "3", "2014-07-22 11:52:16", "2014-07-22 18:52:16", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues. <span style=\"color: #0000ff;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Affordable Counselling Services</strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\">click here</a> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\nToÂ <span style=\"color: #0000ff;\"><strong>book an appointment:</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\">click here</a>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-22 11:52:16", "2014-07-22 18:52:16", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13387", "3", "2014-07-22 12:00:36", "2014-07-22 19:00:36", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues. <span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\nToÂ <span style=\"color: #000000;\"><strong>book an appointment:</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-22 12:00:36", "2014-07-22 19:00:36", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13388", "3", "2014-07-22 12:01:41", "2014-07-22 19:01:41", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">Graduated Fee Scale</span></span></span></h3>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h3>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Affordable Counselling Services ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-07-22 12:01:41", "2014-07-22 19:01:41", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13389", "3", "2014-07-22 12:03:45", "2014-07-22 19:03:45", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<span style=\"color: #000000;\"><a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<span style=\"color: #000000;\"><a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<span style=\"color: #000000;\"><a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest or register, please <span><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span>click here</span></a></span> to <strong>email</strong> us at courses@localhost or call our office atÂ <span><i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-22 12:03:45", "2014-07-22 19:03:45", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13390", "3", "2014-07-22 12:08:41", "2014-07-22 19:08:41", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<span style=\"color: #000000;\"><a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<span style=\"color: #000000;\"><a title=\"Caregiver Burnout: The Need for Self-Care (general information poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-GENERAL-info-poster-2014.docx\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster her</span></a>e</span>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">i<span style=\"color: #000000;\">nformation poster here</span></a>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-22 12:08:41", "2014-07-22 19:08:41", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13391", "3", "2014-07-22 12:11:13", "2014-07-22 19:11:13", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #000000;\"><strong>Samaritan\'s Fund</strong></span>. If you would like to help us and our Samaritan\'s fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><span style=\"color: #000000;\"><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong></span>Â </span>(for example: one-time, monthly, quarterly, annual etc):\r\n\r\n&nbsp;\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><strong>Option 1 (preferred)</strong>:</span></span> please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 2</strong>:</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><strong>Option 3:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\n&nbsp;\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\n&nbsp;\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-07-22 12:11:13", "2014-07-22 19:11:13", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13392", "3", "2014-07-22 12:12:06", "2014-07-22 19:12:06", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<h3><span style=\"color: #000000;\"><strong>Island Savings Credit Union</strong></span></h3>\r\n<h3><span style=\"color: #000000;\"><strong>BC Government Â </strong></span></h3>\r\n<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" alt=\"Catholic Foundation\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" alt=\"Victoria Foundation\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" alt=\"Full Farm House\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-07-22 12:12:06", "2014-07-22 19:12:06", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13393", "3", "2014-07-22 12:12:20", "2014-07-22 19:12:20", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<h3><span style=\"color: #000000;\"><strong>Island Savings Credit Union</strong></span></h3>\r\n<h3><span style=\"color: #000000;\"><strong>BC Government Â </strong></span></h3>\r\n<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" alt=\"Catholic Foundation\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_429\" align=\"alignnone\" width=\"300\"]<a href=\"http://www.victoriafoundation.bc.ca/\"><img class=\"size-medium wp-image-429\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Vic-Fndn-H1-Process-300x37.jpg\" alt=\"Victoria Foundation\" width=\"300\" height=\"37\" /></a> Victoria Foundation[/caption]\r\n\r\n[caption id=\"attachment_427\" align=\"alignnone\" width=\"300\"]<a title=\"Full Farm House\" href=\"http://www.fullhousefarm.com/\" target=\"_blank\"><img class=\"size-medium wp-image-427\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Full-House-Farm-300x73.jpg\" alt=\"Full Farm House\" width=\"300\" height=\"73\" /></a> Full Farm House[/caption]\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to Our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2014-07-22 12:12:20", "2014-07-22 19:12:20", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13394", "3", "2014-07-22 12:14:34", "2014-07-22 19:14:34", "<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h5>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h5>\r\n<h3>E-mails:</h3>\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-22 12:14:34", "2014-07-22 19:14:34", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13395", "3", "2014-07-22 12:19:58", "2014-07-22 19:19:58", "<h3>Our mailing address:</h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3>Telephone/Fax info:</h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours</strong>:</h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h3>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h3>\r\n<h3>E-mails:</h3>\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-22 12:19:58", "2014-07-22 19:19:58", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13396", "3", "2014-07-25 13:30:01", "2014-07-25 20:30:01", "&nbsp;\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts.jpg\"><img class=\"alignleft wp-image-13223 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts-300x277.jpg\" alt=\"How to Care for Introverts\" width=\"300\" height=\"277\" /></a>\n\n&nbsp;\n\n&nbsp;\n\nThese are the values South Island Centre adheres to:\n\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients and accountability within our organization.\n\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\n\n<strong>Growth</strong> - we facilitate growth in all areas of a personâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts.jpg\"><img class=\"alignright wp-image-13222 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts-300x300.jpg\" alt=\"How to care for Extroverts\" width=\"300\" height=\"300\" /></a></strong>\n\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity, and healing through counselling, mentorship, and coaching.\n\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other and our clients.\n\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-autosave-v1", "", "", "2014-07-25 13:30:01", "2014-07-25 20:30:01", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13397", "3", "2014-07-22 15:45:37", "2014-07-22 22:45:37", "These are South Island Centre for Counselling and Training\'s values:\r\n\r\n&nbsp;\r\n\r\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients, and maintaining accountability within our organization.\r\n\r\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\r\n\r\n<strong>Growth</strong> - we facilitate growth in all areas of a personalâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\r\n\r\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity and healing through counselling, mentorship, and coaching.\r\n\r\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other, and with our clients.\r\n\r\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-07-22 15:45:37", "2014-07-22 22:45:37", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13398", "3", "2014-07-22 15:50:01", "2014-07-22 22:50:01", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Event Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">How to register for a course:Â </span></span></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Payment Information and Options</strong></span></span></h3>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-22 15:50:01", "2014-07-22 22:50:01", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13399", "3", "2014-07-22 15:51:01", "2014-07-22 22:51:01", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Event Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n\r\n&nbsp;\r\n<h3><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">How to register for a course:Â </span></span></strong></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Payment Information and Options</strong></span></span></h3>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-22 15:51:01", "2014-07-22 22:51:01", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13400", "3", "2014-07-22 15:51:47", "2014-07-22 22:51:47", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All currently offered courses are listed on our <strong>Home Page</strong> with links attached. Please go to the <strong>Course and Event Calendar</strong>Â for more information on all courses offered this year.Â </span>\r\n</span>\r\n\r\n&nbsp;\r\n<h3><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">How to register for a course:Â </span></span></strong></h3>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Payment information and options:</strong></span></span></h3>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-22 15:51:47", "2014-07-22 22:51:47", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13401", "3", "2014-07-22 15:52:59", "2014-07-22 22:52:59", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<span style=\"color: #000000;\"><a title=\"Link to general Twilights Journey poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<span style=\"color: #000000;\"><a title=\"Link to general pastoral care and counselling training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PastoralCounsellingTrainingWeb.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<span style=\"color: #000000;\"><a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><a title=\"Link to general Bowen Family Systems Training poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFor more information on these courses or to indicate interest or register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to <strong>email</strong> us at courses@localhost or call our office atÂ <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-22 15:52:59", "2014-07-22 22:52:59", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13402", "3", "2014-07-22 16:04:01", "2014-07-22 23:04:01", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:Â <strong>Barbara BaillieÂ </strong>andÂ <strong>Pamela Welle</strong></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <span style=\"color: #000000;\"><a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, click onÂ <span style=\"color: rgb(0, 0, 0);\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: rgb(0, 0, 0);\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-22 16:04:01", "2014-07-22 23:04:01", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13403", "3", "2014-07-22 16:04:49", "2014-07-22 23:04:49", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:Â <strong>Barbara BaillieÂ </strong>andÂ <strong>Pamela Welle</strong></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <span style=\"color: #000000;\"><a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, clickÂ <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-22 16:04:49", "2014-07-22 23:04:49", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13404", "3", "2014-07-22 16:11:05", "2014-07-22 23:11:05", "Read what a participant in the <strong>CareerChoice Program</strong> had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the <strong>Mid-Life Directions</strong> with facilitator <strong>Barbara Baillie</strong> had to say about the experience:\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a newÂ <strong>meat</strong> to reflect and chew on!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Lay Pastoral Care Team Dialogue</strong> with trainer <strong>Margaret Anderson</strong> had to say:\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Pastoral Counselling Training</strong> with trainer <strong>Bill Cole</strong> had to say about the experience:\r\n\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"\r\n\r\n&nbsp;\r\n\r\nMore testimonials are listed on the Home Page. We choose not to disclose the names or initials of our course participants or clients for confidentiality and privacy reasons. All quoted testimonials are copied from course evaluations or client surveys.", "Testimonials ", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2014-07-22 16:11:05", "2014-07-22 23:11:05", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13405", "3", "2014-07-22 16:13:46", "2014-07-22 23:13:46", "Read what a participant in the <strong>CareerChoice Program</strong> had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the <strong>Mid-Life Directions</strong>Â <strong>course</strong> with facilitator <strong>Barbara Baillie</strong> had to say about the experience:\r\n\r\n\"It was wonderful! Thank you!\"\r\n\r\n\"Barbara was a great teacher with a great sense of humour!\"\r\n\r\n\"Arrived expecting confirmation of a journey past, but left with a newÂ <strong>meat</strong> to reflect and chew on!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Lay Pastoral Care Team Dialogue</strong>Â <b>Training Program</b>Â with trainer <strong>Margaret Anderson</strong> had to say:\r\n\r\n\"Excellent opening conversation! Informative and helpful!\"\r\n\r\n\"Great workshop! I enjoyed the dialogue!\"\r\n\r\n\"Good info especially around hospice services. Good to hear what other groups are doing!\"\r\n\r\n\"Very good workshop! Knowledge that we need to talk about (death)!\"\r\n\r\n\"Excellent! Great info and use of time. Clear and concise info!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Pastoral Counselling Training</strong> with trainer <strong>Bill Cole</strong> had to say about the experience:\r\n\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"\r\n\r\n&nbsp;\r\n\r\n<em>More testimonials are listed on the Home Page. We choose not to disclose the names or initials of our course participants or clients for confidentiality and privacy reasons. All quoted testimonials are excerpted from past course evaluations or client surveys.</em>", "Testimonials (Courses and Training Programs)", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2014-07-22 16:13:46", "2014-07-22 23:13:46", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13407", "3", "2014-07-23 09:25:24", "2014-07-23 16:25:24", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\"><img class=\"alignnone size-full wp-image-695\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\" alt=\"margaret_anderson_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span> is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret (McKinnon) Anderson", "", "inherit", "closed", "closed", "", "44-revision-v1", "", "", "2014-07-23 09:25:24", "2014-07-23 16:25:24", "", "44", "http://localhost:8888/TestSICPage/wordpress/44-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13408", "3", "2014-07-23 09:25:55", "2014-07-23 16:25:55", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\"><img class=\"alignnone size-full wp-image-693\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\" alt=\"barb_baillie_150w\" width=\"150\" height=\"226\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span>, B.Ed., M.T.S., M.A.P.P.C,Â BCATR,Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-07-23 09:25:55", "2014-07-23 16:25:55", "", "47", "http://localhost:8888/TestSICPage/wordpress/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13409", "3", "2014-07-23 09:26:15", "2014-07-23 16:26:15", "<span style=\"color: #000000;\"><strong>Carla Haveman</strong></span> enjoys working with young women around depression, low self-esteem and family dynamics. She forms really good connections through her compassion and empathy. As a mother of 3 almost grown boys, she has experienced it all!", "Carla Haveman", "", "inherit", "closed", "closed", "", "408-revision-v1", "", "", "2014-07-23 09:26:15", "2014-07-23 16:26:15", "", "408", "http://localhost:8888/TestSICPage/wordpress/408-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13411", "3", "2014-07-23 09:26:40", "2014-07-23 16:26:40", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/RCM-picture.jpg\"><img class=\"alignnone size-medium wp-image-829\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/RCM-picture-300x225.jpg\" alt=\"RCM picture\" width=\"300\" height=\"225\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Cantle Merritt</strong></span> (M.P.E./Ottawa; M.Ed./Ottawa), Registered Clinical Counsellor (British Columbia Association of Clinical Counsellors)\r\n\r\n&nbsp;\r\n\r\nSpecialty:\r\n<ul>\r\n	<li>Self-Esteem</li>\r\n	<li>Empowerment</li>\r\n	<li>Anxiety</li>\r\n	<li>Holistic well-being</li>\r\n	<li>Depression</li>\r\n	<li>Self in Society</li>\r\n	<li>Self &amp; Environment</li>\r\n	<li>Managing Change</li>\r\n	<li>Academic, Sport, &amp; Job Performance</li>\r\n	<li>Restorative Justice</li>\r\n	<li>Family Issues</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Â </strong></span>", "Rosemary Cantle Merritt", "", "inherit", "closed", "closed", "", "406-revision-v1", "", "", "2014-07-23 09:26:40", "2014-07-23 16:26:40", "", "406", "http://localhost:8888/TestSICPage/wordpress/406-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13412", "3", "2014-07-23 09:27:24", "2014-07-23 16:27:24", "<span style=\"color: #000000;\"><strong>Fiona Pasay</strong>, MA,</span>Â is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, focusing particularly around parenting plans and concerns with their children.", "Fiona Pasay", "", "inherit", "closed", "closed", "", "404-revision-v1", "", "", "2014-07-23 09:27:24", "2014-07-23 16:27:24", "", "404", "http://localhost:8888/TestSICPage/wordpress/404-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13413", "3", "2014-07-23 09:28:01", "2014-07-23 16:28:01", "<strong><span style=\"color: #0000ff;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\"><img class=\"alignnone size-full wp-image-834\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\" alt=\"Laurie Truant\" width=\"191\" height=\"240\" /></a></span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Laurie Truant,</strong></span>Â M.A., RCC, specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\r\n\r\nLaurie has 19 years of experience providing individual and group therapy as well as psycho-educational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\r\n\r\nLaurie is married and has 2 adult step-children and 3 grandchildren. She enjoys hiking and boating with her husband as well as playing the piano and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2014-07-23 09:28:01", "2014-07-23 16:28:01", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13414", "3", "2014-07-23 09:28:26", "2014-07-23 16:28:26", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-001.jpg\"><img class=\"alignright wp-image-12870 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-001-300x128.jpg\" alt=\"Lorem ipsum image title\" width=\"300\" height=\"128\" /></a>\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong>Grace Kim</strong></span>, M.Div., MCS, Family System Theory\r\n\r\nGrace has been anÂ ordained minister for over 20 years ministering to youth, adults, and families.Â She provides pastoral counselling, spiritual formation, pre-marital counselling, as well as individual, marriage and family counselling.\r\n\r\nGrace is married and enjoys hiking, gardening and photography. She is also fluent in Korean and Mandarin.", "Grace Kim", "", "publish", "closed", "closed", "", "grace-kim", "", "", "2014-09-01 15:04:27", "2014-09-01 22:04:27", "", "217", "http://localhost:8888/TestSICPage/wordpress/?page_id=13414", "35", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13415", "3", "2014-07-23 09:28:26", "2014-07-23 16:28:26", "", "Grace Kim", "", "inherit", "closed", "closed", "", "13414-revision-v1", "", "", "2014-07-23 09:28:26", "2014-07-23 16:28:26", "", "13414", "http://localhost:8888/TestSICPage/wordpress/13414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13416", "3", "2014-07-23 09:28:34", "2014-07-23 16:28:34", "TBA", "Grace Kim", "", "inherit", "closed", "closed", "", "13414-revision-v1", "", "", "2014-07-23 09:28:34", "2014-07-23 16:28:34", "", "13414", "http://localhost:8888/TestSICPage/wordpress/13414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13418", "3", "2014-07-23 09:45:44", "2014-07-23 16:45:44", "For more information, please hover over <strong>About us</strong> in the top ribbon, which will show you <strong>Meet our Counsellors</strong>Â category<strong>Â </strong>inÂ the drop-down menu, and then click on the individual counsellor\'s name in the menu on the right.\r\n\r\n&nbsp;\r\n\r\nBelow is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems, Couple and family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-23 09:45:44", "2014-07-23 16:45:44", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13419", "3", "2014-07-23 09:46:33", "2014-07-23 16:46:33", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems, Couple and family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-23 09:46:33", "2014-07-23 16:46:33", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13420", "3", "2014-07-23 09:46:55", "2014-07-23 16:46:55", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<strong>Bill Cole</strong>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-23 09:46:55", "2014-07-23 16:46:55", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13421", "3", "2014-07-23 09:48:10", "2014-07-23 16:48:10", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #000000;\">S</span></a><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #000000;\">e</span></a><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\"><span style=\"color: #000000;\">lfcare for Caregivers</span></a></span><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #000000;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #339966;\">The Enneagram: A Journey of Self Discovery</span></span></a></span> (October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-23 09:48:10", "2014-07-23 16:48:10", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13422", "3", "2016-08-17 12:02:30", "2016-08-17 19:02:30", "<ul>\n	<li>I really appreciated the videos, particularly \"Griefwalker\" and I found the organization of the material and presentation style very engaging, comprehensive and extremely useful! I will benefit from this throughout life! ---</li>\n	<li>Great course, great group! Dynamic - easy to follow and understand. Loved how you kept on time and kept the group focused on the topic! ---</li>\n	<li>It was wonderful! Thank you! --- Arrived expecting confirmation of a journey past, but left with a newÂ <strong>meat</strong>Â to reflect and chew on! ---</li>\n	<li>Great workshop! I enjoyed the dialogue! --- Â Good info especially around hospice services. Good to hear what other groups are doing! ---</li>\n	<li>Very good workshop! Knowledge that we need to talk about (death)! --- Â Excellent! Great info and use of time. Clear and concise info!</li>\n</ul>", "About Our Courses ", "", "inherit", "closed", "closed", "", "13262-autosave-v1", "", "", "2016-08-17 12:02:30", "2016-08-17 19:02:30", "", "13262", "http://localhost:8888/TestSICPage/wordpress/13262-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13424", "3", "2014-07-23 10:26:32", "2014-07-23 17:26:32", "These are South Island Centre for Counselling and Training\'s values:\r\n\r\n&nbsp;\r\n\r\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients and accountability within our organization.\r\n\r\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\r\n\r\n<strong>Growth</strong> - we facilitate growth in all areas of a personâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\r\n\r\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity, and healing through counselling, mentorship, and coaching.\r\n\r\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other and our clients.\r\n\r\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-07-23 10:26:32", "2014-07-23 17:26:32", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13425", "3", "2014-07-23 11:42:47", "2014-07-23 18:42:47", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts.jpg\"><img class=\"alignnone size-medium wp-image-13223\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts-300x277.jpg\" alt=\"How to Care for Introverts\" width=\"300\" height=\"277\" /></a><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts.jpg\"><img class=\"alignnone size-medium wp-image-13222\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts-300x300.jpg\" alt=\"How to care for Extroverts\" width=\"300\" height=\"300\" /></a>\r\n\r\nThese are the values South Island Centre adheres to:\r\n\r\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients and accountability within our organization.\r\n\r\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\r\n\r\n<strong>Growth</strong> - we facilitate growth in all areas of a personâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\r\n\r\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity, and healing through counselling, mentorship, and coaching.\r\n\r\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other and our clients.\r\n\r\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-07-23 11:42:47", "2014-07-23 18:42:47", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13427", "3", "2014-07-23 11:49:15", "2014-07-23 18:49:15", "&nbsp;\r\n\r\nThese are the values South Island Centre adheres to:\r\n\r\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients and accountability within our organization.\r\n\r\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\r\n\r\n<strong>Growth</strong> - we facilitate growth in all areas of a personâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\r\n\r\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity, and healing through counselling, mentorship, and coaching.\r\n\r\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other and our clients.\r\n\r\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-07-23 11:49:15", "2014-07-23 18:49:15", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13431", "3", "2014-07-23 11:59:52", "2014-07-23 18:59:52", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues. <span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\nToÂ <span style=\"color: #000000;\"><strong>book an appointment:</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-23 11:59:52", "2014-07-23 18:59:52", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13437", "3", "2014-07-23 12:26:55", "2014-07-23 19:26:55", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training. [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:26:55", "2014-07-23 19:26:55", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13438", "3", "2014-07-23 12:28:28", "2014-07-23 19:28:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training. [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"true\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:28:28", "2014-07-23 19:28:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13439", "3", "2014-07-23 12:29:43", "2014-07-23 19:29:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training. [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"true\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:29:43", "2014-07-23 19:29:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13440", "3", "2014-07-23 12:33:21", "2014-07-23 19:33:21", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:33:21", "2014-07-23 19:33:21", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13441", "3", "2014-07-23 12:38:28", "2014-07-23 19:38:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. Give us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button animation=\"scale\" size=\"big\" color=\"\" link=\"https://www.canadahelps.org/dn/12787\" target_blank=\"true\"]Donate Here[/dt_button][/vc_column_text][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:38:28", "2014-07-23 19:38:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13442", "3", "2014-07-23 12:46:35", "2014-07-23 19:46:35", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\"><img class=\"alignleft wp-image-695 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\" alt=\"margaret_anderson_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span> is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret (McKinnon) Anderson", "", "inherit", "closed", "closed", "", "44-revision-v1", "", "", "2014-07-23 12:46:35", "2014-07-23 19:46:35", "", "44", "http://localhost:8888/TestSICPage/wordpress/44-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13443", "3", "2014-07-23 12:48:23", "2014-07-23 19:48:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. Give us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:48:23", "2014-07-23 19:48:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13444", "3", "2014-07-23 12:49:28", "2014-07-23 19:49:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. Give us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:49:28", "2014-07-23 19:49:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13446", "3", "2014-07-23 12:53:02", "2014-07-23 19:53:02", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. Give us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13445\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:53:02", "2014-07-23 19:53:02", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13449", "3", "2014-07-23 12:56:13", "2014-07-23 19:56:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. Give us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"Full House Farm\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:56:13", "2014-07-23 19:56:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13450", "3", "2014-07-23 12:56:54", "2014-07-23 19:56:54", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone. We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life. We offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change. We offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy. Give us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc. <strong>COURSES: </strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction. <strong>OTHER SERVICES: </strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 12:56:54", "2014-07-23 19:56:54", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13451", "3", "2014-07-23 14:15:11", "2014-07-23 21:15:11", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\nCOURSES: We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\nOTHER SERVICES: We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 14:15:11", "2014-07-23 21:15:11", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13452", "3", "2014-07-23 14:23:26", "2014-07-23 21:23:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong> <strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 14:23:26", "2014-07-23 21:23:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13453", "3", "2014-07-23 14:53:31", "2014-07-23 21:53:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.doc\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-23 14:53:31", "2014-07-23 21:53:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13454", "3", "2014-07-23 15:06:17", "2014-07-23 22:06:17", "<strong>Bill Cole</strong>\r\n\r\n[caption id=\"attachment_13146\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"wp-image-13146 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_13148\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"wp-image-13148 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Margaret Anderson</strong> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-23 15:06:17", "2014-07-23 22:06:17", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13455", "3", "2014-07-23 15:07:24", "2014-07-23 22:07:24", "<strong>Bill Cole</strong>\r\n\r\n[caption id=\"attachment_13146\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"wp-image-13146 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_13148\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"wp-image-13148 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Margaret Anderson</strong> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-23 15:07:24", "2014-07-23 22:07:24", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13456", "3", "2014-07-23 15:08:24", "2014-07-23 22:08:24", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignleft wp-image-694 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" alt=\"bill_cole_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\nDirector of Services of <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Director of Services", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-07-23 15:08:24", "2014-07-23 22:08:24", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13457", "3", "2014-07-23 15:08:58", "2014-07-23 22:08:58", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\"><img class=\"alignleft wp-image-693 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\" alt=\"barb_baillie_150w\" width=\"150\" height=\"226\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span>, B.Ed., M.T.S., M.A.P.P.C,Â BCATR,Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2014-07-23 15:08:58", "2014-07-23 22:08:58", "", "47", "http://localhost:8888/TestSICPage/wordpress/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13458", "3", "2014-07-23 15:10:15", "2014-07-23 22:10:15", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/RCM-picture.jpg\"><img class=\"alignright wp-image-829 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/RCM-picture-300x225.jpg\" alt=\"RCM picture\" width=\"300\" height=\"225\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Cantle Merritt,Â </strong></span>M.P.E./Ottawa; M.Ed./Ottawa, Registered Clinical Counsellor (British Columbia Association of Clinical Counsellors)\r\n\r\nSpecialty:\r\n<ul>\r\n	<li>Self-Esteem</li>\r\n	<li>Empowerment</li>\r\n	<li>Anxiety</li>\r\n	<li>Holistic well-being</li>\r\n	<li>Depression</li>\r\n	<li>Self in Society</li>\r\n	<li>Self &amp; Environment</li>\r\n	<li>Managing Change</li>\r\n	<li>Academic, Sport, &amp; Job Performance</li>\r\n	<li>Restorative Justice</li>\r\n	<li>Family Issues</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Â </strong></span>", "Rosemary Cantle Merritt", "", "inherit", "closed", "closed", "", "406-revision-v1", "", "", "2014-07-23 15:10:15", "2014-07-23 22:10:15", "", "406", "http://localhost:8888/TestSICPage/wordpress/406-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13459", "3", "2014-07-23 15:12:20", "2014-07-23 22:12:20", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-006.jpg\"><img class=\"alignright wp-image-12875 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-006-300x128.jpg\" alt=\"Welcome To South Island Centre\" width=\"300\" height=\"128\" /></a>\n\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong>, MA,</span>Â is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, focusing particularly around parenting plans and concerns with their children.", "Fiona Pasay", "", "inherit", "closed", "closed", "", "404-autosave-v1", "", "", "2014-07-23 15:12:20", "2014-07-23 22:12:20", "", "404", "http://localhost:8888/TestSICPage/wordpress/404-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13460", "3", "2014-07-23 15:12:23", "2014-07-23 22:12:23", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-006.jpg\"><img class=\"alignright wp-image-12875 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-006-300x128.jpg\" alt=\"Welcome To South Island Centre\" width=\"300\" height=\"128\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong>, MA,</span>Â is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counsellor in the school system. She is also spearheading South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, focusing particularly around parenting plans and concerns with their children.", "Fiona Pasay", "", "inherit", "closed", "closed", "", "404-revision-v1", "", "", "2014-07-23 15:12:23", "2014-07-23 22:12:23", "", "404", "http://localhost:8888/TestSICPage/wordpress/404-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13461", "3", "2014-07-23 15:12:56", "2014-07-23 22:12:56", "<strong><span style=\"color: #0000ff;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\"><img class=\"alignleft wp-image-834 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\" alt=\"Laurie Truant\" width=\"191\" height=\"240\" /></a></span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Laurie Truant,</strong></span>Â M.A., RCC, specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\r\n\r\nLaurie has 19 years of experience providing individual and group therapy as well as psycho-educational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\r\n\r\nLaurie is married and has 2 adult step-children and 3 grandchildren. She enjoys hiking and boating with her husband as well as playing the piano and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2014-07-23 15:12:56", "2014-07-23 22:12:56", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13462", "3", "2014-07-23 15:16:19", "2014-07-23 22:16:19", "Listed below are additional services we offer at South Island Centre:\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h3>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-size: 1.17em; line-height: 1.5em;\">Profession</span><span style=\"font-size: 1.17em; line-height: 1.5em;\">al</span><span style=\"font-size: 1.17em; line-height: 1.5em;\"> Counselling Consultations for Clergy</span></span></span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h3>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #000000;\"><strong> Barbara Baillie</strong></span> and <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h3>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-07-23 15:16:19", "2014-07-23 22:16:19", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13463", "3", "2014-07-23 15:20:43", "2014-07-23 22:20:43", "<h3><strong>Our mailing address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-mails:</strong></h3>\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-23 15:20:43", "2014-07-23 22:20:43", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13464", "3", "2014-07-23 15:22:18", "2014-07-23 22:22:18", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out our up-coming events, want to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-23 15:22:18", "2014-07-23 22:22:18", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13465", "3", "2014-07-23 18:16:24", "2014-07-24 01:16:24", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our <strong>Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\nThere are <strong>3 options to make a donation to our Samaritan\'s Fund</strong> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 1 (preferred)</strong></span>: please mail a cheque (payable to South Island Centre for Counselling and Training) to <em>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</em>. Please include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 2 :</strong> </span>Charge a one-time donation to your credit card by calling the office at 250-472-2851, extension 101, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, as well as your mailing/return address. We will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which decreases the amount we actually receive.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 3:</strong></span> <span style=\"color: #000000;\"><a title=\"Donation to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which decreases the amount we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Why monthly or quarterly giving?</strong>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<strong>The Fine Print</strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-07-23 18:16:24", "2014-07-24 01:16:24", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13466", "3", "2014-07-24 08:56:06", "2014-07-24 15:56:06", "", "Burnout General Info Poster 2014", "", "inherit", "closed", "closed", "", "burnout-general-info-poster-2014-2", "", "", "2014-07-24 08:56:06", "2014-07-24 15:56:06", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13467", "3", "2014-07-24 08:57:27", "2014-07-24 15:57:27", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<span style=\"color: #000000;\"><a title=\"Link to Twilight Journey info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Twilight%20Journeys2small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Burnout General Info Poster 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</a></li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster her</span></a>e</span>)</li>\r\n	<li>Helping People Change (<a title=\"Link to Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\">i<span style=\"color: #000000;\">nformation poster here</span></a>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><a title=\"Link to Bowen Family Systems info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Bowen%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-24 08:57:27", "2014-07-24 15:57:27", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13468", "3", "2014-07-24 08:57:43", "2014-07-24 15:57:43", "", "Caregiver Burnout Poster October 18, 2014", "", "inherit", "closed", "closed", "", "caregiver-burnout-poster-october-18-2014-2", "", "", "2014-07-24 08:57:43", "2014-07-24 15:57:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13469", "3", "2014-07-24 08:59:42", "2014-07-24 15:59:42", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nPlease click on the link below to open a new window with additionalÂ information.\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-24 08:59:42", "2014-07-24 15:59:42", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13470", "3", "2014-07-24 09:17:23", "2014-07-24 16:17:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"> Caregiver Burnout</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self Discovery\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-24 09:17:23", "2014-07-24 16:17:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13471", "3", "2014-07-24 09:22:32", "2014-07-24 16:22:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>Caregiver Burnout (October 18, 2014)</strong>\r\n\r\n<strong>The Enneagram: A Journey of Self-Discovery (October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-24 09:22:32", "2014-07-24 16:22:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13472", "3", "2014-07-24 09:27:50", "2014-07-24 16:27:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>Caregiver Burnout (October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a></strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-24 09:27:50", "2014-07-24 16:27:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13473", "3", "2014-07-24 09:28:59", "2014-07-24 16:28:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\">Caregiver Burnout (October 18, 2014)</a></strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a></strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-24 09:28:59", "2014-07-24 16:28:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13474", "3", "2014-07-24 09:31:48", "2014-07-24 16:31:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\">Caregiver Burnout (October 18, 2014)</a></strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discover (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery (October 24, 2014)</a></strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>Date:</strong> Saturday, November 22, 2014 <strong>Time:</strong> 6:30pm-9:00pm. <strong>Location:</strong> tba <strong>Guest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-24 09:31:48", "2014-07-24 16:31:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13475", "3", "2014-07-24 10:00:50", "2014-07-24 17:00:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\">Caregiver Burnout (October 18, 2014)</a></strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discover (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery (October 24, 2014)</a></strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-24 10:00:50", "2014-07-24 17:00:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13476", "3", "2014-07-24 10:03:47", "2014-07-24 17:03:47", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues. <span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <strong>We\'re here to help!</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<strong>To</strong>Â <span style=\"color: #000000;\"><strong>book an appointment:</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Book an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-24 10:03:47", "2014-07-24 17:03:47", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13477", "3", "2014-07-24 10:05:43", "2014-07-24 17:05:43", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<strong>To</strong>Â <strong>B</strong><span style=\"color: #000000;\"><strong>ook an Appointment:</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Make</strong><strong>Â an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-24 10:05:43", "2014-07-24 17:05:43", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13478", "3", "2014-07-24 10:07:12", "2014-07-24 17:07:12", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment:</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Make</strong><strong>Â an appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-24 10:07:12", "2014-07-24 17:07:12", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13479", "3", "2014-07-24 10:07:25", "2014-07-24 17:07:25", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment:</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Make</strong><strong>Â an Appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-24 10:07:25", "2014-07-24 17:07:25", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13480", "3", "2014-07-24 10:07:35", "2014-07-24 17:07:35", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Make</strong><strong>Â an Appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-24 10:07:35", "2014-07-24 17:07:35", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13481", "3", "2014-07-24 10:07:54", "2014-07-24 17:07:54", "<strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues.</strong>\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Make</strong><strong>Â an Appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-24 10:07:54", "2014-07-24 17:07:54", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13482", "3", "2014-07-24 10:08:28", "2014-07-24 17:08:28", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span> <span style=\"color: #000000;\">provide</span>Â </span>professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <span style=\"color: #000000;\"><a title=\"email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at counselling@localhost.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Make</strong><strong>Â an Appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-07-24 10:08:28", "2014-07-24 17:08:28", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13483", "3", "2014-07-24 10:12:38", "2014-07-24 17:12:38", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 10:00am-1:00pm.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-24 10:12:38", "2014-07-24 17:12:38", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13485", "3", "2014-07-24 10:15:02", "2014-07-24 17:15:02", "&nbsp;\r\n\r\nSouth Island Centre is located at:\r\n\r\n<span style=\"color: #000000;\"><strong>3821A Cedar Hill Cross Road</strong></span> (Saanich).Â <strong>Parking is free.</strong>\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-24 10:15:02", "2014-07-24 17:15:02", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13487", "3", "2014-07-24 10:19:06", "2014-07-24 17:19:06", "<strong><a title=\"Board of Directors - general info 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf\" target=\"_blank\">Click here</a> Â </strong>to view the<span style=\"color: #000000;\">Â <span style=\"color: #000000;\">Board of Directors Package (general info).</span></span>\r\n\r\n&nbsp;\r\n\r\nBoard Members 2014-2015:\r\n\r\n<strong>Daphne Taylor (interim chair)Â </strong>\r\n\r\nI am a senior who has twice benefitted from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Meredith Brown (secretary)</strong>\r\n\r\n<strong>Sandra Scarth (member-at-large)</strong>\r\n\r\n<strong>Sally Tuckey (member-at-large)</strong>\r\n\r\n<strong>Barbara Underhill (member-at-large)</strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-07-24 10:19:06", "2014-07-24 17:19:06", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13488", "3", "2014-07-24 10:19:22", "2014-07-24 17:19:22", "<strong><a title=\"Board of Directors - general info 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf\" target=\"_blank\">Click here</a> Â </strong>to view the<span style=\"color: #000000;\">Â <span style=\"color: #000000;\">Board of Directors Package (general info).</span></span>\r\n\r\n&nbsp;\r\n\r\nBoard Members 2014-2015:\r\n\r\n<strong>Daphne Taylor (interim chair)Â </strong>\r\n\r\nI am a senior who has twice benefited from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Meredith Brown (secretary)</strong>\r\n\r\n<strong>Sandra Scarth (member-at-large)</strong>\r\n\r\n<strong>Sally Tuckey (member-at-large)</strong>\r\n\r\n<strong>Barbara Underhill (member-at-large)</strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-07-24 10:19:22", "2014-07-24 17:19:22", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13489", "3", "2014-07-24 10:26:04", "2014-07-24 17:26:04", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our office co-ordinator at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nYou may also contact us by email:Â <span style=\"color: #000000;\"><a title=\"Email counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to email us at counselling@localhost.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-07-24 10:26:04", "2014-07-24 17:26:04", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13490", "3", "2014-07-24 10:28:01", "2014-07-24 17:28:01", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignleft wp-image-694 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" alt=\"bill_cole_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\nDirector of Services of <span style=\"color: #000000;\"><strong>Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Director of Services", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2014-07-24 10:28:01", "2014-07-24 17:28:01", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13491", "3", "2014-07-24 10:37:50", "2014-07-24 17:37:50", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General information: </span></span>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/workshop tuition payment deadline for each course (one week prior to the start date of the course).</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">How to Register for a Course:Â </span></span></strong></h4>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Payment Information:</strong></span></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span>\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-24 10:37:50", "2014-07-24 17:37:50", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13492", "3", "2014-07-24 10:38:25", "2014-07-24 17:38:25", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General information: </span></span>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/workshop tuition payment deadline for each course (one week prior to the start date of the course).</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">How to Register for a Course:Â </span></span></strong></h4>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Payment Information:</strong></span></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span>\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-24 10:38:25", "2014-07-24 17:38:25", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13493", "3", "2014-07-24 10:48:23", "2014-07-24 17:48:23", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/workshop tuition payment deadline for each course (one week prior to the start date of the course).</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course:</span></span></strong></h4>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Payment Information:</strong></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span>\r\n\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-24 10:48:23", "2014-07-24 17:48:23", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13494", "3", "2014-07-24 10:49:50", "2014-07-24 17:49:50", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/workshop tuition payment deadline for each course (one week prior to the start date of the course).</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course:</span></span></strong></h4>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n<h3><strong>Payment Information:</strong></h3>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-24 10:49:50", "2014-07-24 17:49:50", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13495", "3", "2014-07-24 10:52:38", "2014-07-24 17:52:38", "Listed below are additional services we offer at South Island Centre:\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h4>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-size: 1.17em; line-height: 1.5em;\">Profession</span><span style=\"font-size: 1.17em; line-height: 1.5em;\">al</span><span style=\"font-size: 1.17em; line-height: 1.5em;\"> Counselling Consultations for Clergy</span></span></span></strong></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h4>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #000000;\"><strong> Barbara Baillie</strong></span> and <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h4>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-07-24 10:52:38", "2014-07-24 17:52:38", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13496", "3", "2014-07-24 10:53:53", "2014-07-24 17:53:53", "Listed below are additional services we offer at South Island Centre:\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h4>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\"><span style=\"font-size: 1.17em; line-height: 1.5em;\">Profession</span><span style=\"font-size: 1.17em; line-height: 1.5em;\">al</span><span style=\"font-size: 1.17em; line-height: 1.5em;\"> Counselling Consultations for Clergy</span></span></span></strong></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h4>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #000000;\"><strong> Barbara Baillie</strong></span> and <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h4>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-07-24 10:53:53", "2014-07-24 17:53:53", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13497", "3", "2014-07-24 10:54:44", "2014-07-24 17:54:44", "Listed below are additional services we offer at South Island Centre:\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h4>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Professional Counselling Consultations for Clergy</strong></span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h4>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #000000;\"><strong> Barbara Baillie</strong></span> and <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h4>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-07-24 10:54:44", "2014-07-24 17:54:44", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13498", "3", "2014-07-24 10:55:40", "2014-07-24 17:55:40", "<strong>Bill Cole</strong>\r\n\r\n[caption id=\"attachment_13146\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"wp-image-13146 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\nDirector of Services of<span style=\"color: #000000;\">Â <strong>Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_13148\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"wp-image-13148 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-24 10:55:40", "2014-07-24 17:55:40", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13499", "3", "2014-07-24 10:56:06", "2014-07-24 17:56:06", "[caption id=\"attachment_13146\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"wp-image-13146 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\nDirector of Services of<span style=\"color: #000000;\">Â <strong>Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_13148\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"wp-image-13148 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2014-07-24 10:56:06", "2014-07-24 17:56:06", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13500", "3", "2014-07-24 10:56:59", "2014-07-24 17:56:59", "&nbsp;\r\n\r\nThe <span style=\"color: #000000;\"><strong>CareerChoice program</strong></span> at South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\n&nbsp;\r\n\r\nRead what a participant had to say about the experience: \"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\n<strong>Interested in starting your CareerChoice program?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and or <span style=\"color: #000000;\"><a title=\"email link to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at info@localhost to get you going.", "CareerChoice Program", "", "inherit", "closed", "closed", "", "123-revision-v1", "", "", "2014-07-24 10:56:59", "2014-07-24 17:56:59", "", "123", "http://localhost:8888/TestSICPage/wordpress/123-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13501", "3", "2014-07-24 10:57:53", "2014-07-24 17:57:53", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:<span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">Barbara Baillie</span>Â </strong>andÂ <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <span style=\"color: #000000;\"><a title=\"email to info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at info@localhost. The office co-ordinator will put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, clickÂ <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-24 10:57:53", "2014-07-24 17:57:53", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13502", "3", "2014-07-24 11:02:28", "2014-07-24 18:02:28", "<strong><a title=\"Board of Directors - general info 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf\" target=\"_blank\">Click here</a> Â </strong>to view the<span style=\"color: #000000;\">Â <span style=\"color: #000000;\">Board of Directors Package (general info).</span></span>\r\n\r\n&nbsp;\r\n\r\nBoard Members 2014-2015:\r\n\r\n<strong>Daphne Taylor (chair)Â </strong>\r\n\r\nI am a senior who has twice benefited from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Meredith Brown (secretary)</strong>\r\n\r\n<strong>Sandra Scarth (member-at-large)</strong>\r\n\r\n<strong>Sally Tuckey (member-at-large)</strong>\r\n\r\n<strong>Barbara Underhill (member-at-large)</strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-07-24 11:02:28", "2014-07-24 18:02:28", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13503", "3", "2014-07-24 11:05:44", "2014-07-24 18:05:44", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/workshop tuition payment deadline for each course (one week prior to the start date of the course).</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course:</span></span></strong></h4>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to send an e-mail to courses@localhost at your convenience.</li>\r\n</ol>\r\nPlease include in your phone message or e-mail:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Payment Information:</strong></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-24 11:05:44", "2014-07-24 18:05:44", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13504", "3", "2014-07-25 13:30:31", "2014-07-25 20:30:31", "&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts.jpg\"><img class=\"alignleft wp-image-13223 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts-300x277.jpg\" alt=\"How to Care for Introverts\" width=\"300\" height=\"277\" /></a>\r\n\r\n&nbsp;\r\n\r\nThese are the values South Island Centre adheres to:\r\n\r\n&nbsp;\r\n\r\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients and accountability within our organization.\r\n\r\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\r\n\r\n<strong>Growth</strong> - we facilitate growth in all areas of a personâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts.jpg\"><img class=\"alignright wp-image-13222 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts-300x300.jpg\" alt=\"How to care for Extroverts\" width=\"300\" height=\"300\" /></a></strong>\r\n\r\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity, and healing through counselling, mentorship, and coaching.\r\n\r\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other and our clients.\r\n\r\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-07-25 13:30:31", "2014-07-25 20:30:31", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13505", "3", "2014-07-25 13:33:47", "2014-07-25 20:33:47", "&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts.jpg\"><img class=\"alignleft wp-image-13223 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts-300x277.jpg\" alt=\"How to Care for Introverts\" width=\"300\" height=\"277\" /></a>\r\n\r\n&nbsp;\r\n\r\nThese are the values South Island Centre adheres to:\r\n\r\n&nbsp;\r\n\r\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients and accountability within our organization.\r\n\r\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\r\n\r\n<strong>Growth</strong> - we facilitate growth in all areas of a personâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts.jpg\"><img class=\"alignright wp-image-13222 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts-300x300.jpg\" alt=\"How to care for Extroverts\" width=\"300\" height=\"300\" /></a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity, and healing through counselling, mentorship, and coaching.\r\n\r\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other and our clients.\r\n\r\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-07-25 13:33:47", "2014-07-25 20:33:47", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13506", "3", "2014-07-25 13:44:05", "2014-07-25 20:44:05", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to everyone, even those who cannot afford our services, we make use of our <strong>Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.\r\n\r\n&nbsp;\r\n\r\nThere are <strong>3 options to make a donation to our Samaritan\'s Fund</strong> (for example: one-time, monthly, quarterly, annual etc):\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 1 (preferred)</strong></span>: please mail a cheque (payable to South Island Centre for Counselling and Training) to <em>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6</em>. Please include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 2:</strong> </span>Charge a one-time donation to your credit card by calling the office at 250-472-2851, extension 101, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up a regular monthly donation, as well as your mailing/return address. We will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, which decreases the amount we actually receive.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 3:</strong></span> <span style=\"color: #000000;\"><a title=\"Donation to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span> to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, which decreases the amount we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Why monthly or quarterly giving?</strong>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<strong>The Fine Print</strong>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. You have the right at any time to request that your personal information cease to be used by unsubscribing from our email list, using the Opt-in/Opt-out contact form (go to <em>Contact Us</em> and scroll down). We will not share, sell, trade, or rent your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "First Time Donors", "", "inherit", "closed", "closed", "", "172-revision-v1", "", "", "2014-07-25 13:44:05", "2014-07-25 20:44:05", "", "172", "http://localhost:8888/TestSICPage/wordpress/172-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13507", "3", "2014-09-11 09:59:23", "2014-09-11 16:59:23", "Join us at our Annual Fundraising event on <strong><span style=\"color: #000000;\">Saturday, November 22, 2014 from 6:30pm-9:00pm</span></strong><span style=\"color: #000000;\">Â which features Ms Louise Rose in concert, a silent auction and a dessert reception.Â </span><span style=\"color: #000000;\">Â </span>\n\nAbout Louise: A native of Norristown, Pennsylvania, Louise\'s capabilities and interests haven\'t always been restricted to making music. She has, among other things, been a police officer, a Baptist missionary and a sociology teacher. However, underscoring it all has been music. For Louise, music isÂ <em>the perfect metaphor for life. As such it permeates all that I do</em>. Her music touches lives in a positive way. You will drawn in by this powerful voice and the stories behind it. This event promises to be an evening to remember.\n\n[gravityform id=\"6\" name=\"2014 Fundraising Event, Nov 22, 2014\"]", "2014 Fundraising Concert, Silent Auction and Dessert Reception featuring LOUISE ROSE", "", "inherit", "closed", "closed", "", "837-autosave-v1", "", "", "2014-09-11 09:59:23", "2014-09-11 16:59:23", "", "837", "http://localhost:8888/TestSICPage/wordpress/837-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13508", "3", "2014-07-27 08:33:09", "2014-07-27 15:33:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout (October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\">Caregiver Burnout (October 18, 2014)</a></strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-27 08:33:09", "2014-07-27 15:33:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13509", "3", "2014-07-28 06:03:57", "2014-07-28 13:03:57", "Differences among people can be fascinating, but they also can be frustrating.Â This workshop will help participants understand themselves better, and\nsee the different ways people experience life. When this happens, everythingÂ changes. Relationships improve, conflicts are better managed, and people canÂ really enjoy one another.Â Join us for this inspiring time of self discovery and learn how to accept and embraceÂ the way others see and experience the world\n\nFor more information, please follow this link to the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\">The Enneagram: A Journey of Self Discovery - October 24, 2014 workshop</a>", "The Enneagram - A Journey of Self Discovery", "", "inherit", "closed", "closed", "", "13071-autosave-v1", "", "", "2014-07-28 06:03:57", "2014-07-28 13:03:57", "", "13071", "http://localhost:8888/TestSICPage/wordpress/13071-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13510", "3", "2014-07-27 08:43:05", "2014-07-27 15:43:05", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Caregiver Burnout, October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-admin/post.php?post=13158&amp;action=edit&amp;message=1\" target=\"_blank\">The Caregiver Burnout</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-27 08:43:05", "2014-07-27 15:43:05", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13511", "3", "2014-07-27 08:44:19", "2014-07-27 15:44:19", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>The Caregiver Burnout (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-27 08:44:19", "2014-07-27 15:44:19", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13512", "3", "2014-07-27 08:46:59", "2014-07-27 15:46:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care, October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=160\" target=\"_blank\">The Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-27 08:46:59", "2014-07-27 15:46:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13513", "3", "2014-07-28 05:57:16", "2014-07-28 12:57:16", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness. Our counsellors provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers. Topics include grief and loss, end-of-life, caregiver burn-out, marriage preparation, family systems, mid-life journey, self-discovery (Enneagram), and helping people change.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-28 05:57:16", "2014-07-28 12:57:16", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13514", "3", "2014-07-28 06:10:24", "2014-07-28 13:10:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, anxiety, grief &amp; loss, self-esteem, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, marriage preparation, eldercare issues, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-28 06:10:24", "2014-07-28 13:10:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13515", "3", "2014-07-28 06:14:47", "2014-07-28 13:14:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-28 06:14:47", "2014-07-28 13:14:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13516", "3", "2014-07-28 09:18:19", "2014-07-28 16:18:19", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">Graduated Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Affordable Counselling Services - Graduated Fee Scale", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-07-28 09:18:19", "2014-07-28 16:18:19", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13517", "3", "2014-07-28 09:19:45", "2014-07-28 16:19:45", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Email to receive Info info@localhost\" href=\"mailto:info@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-28 09:19:45", "2014-07-28 16:19:45", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13519", "3", "2014-07-28 09:27:10", "2014-07-28 16:27:10", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nFor more information on current course offerings, click on the specific course listed in the sidebar at the right of this page .Â Â <i class=\"fa fa-chevron-right\"><span style=\"color: transparent; display: none;\">icon-chevron-right</span></i>\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-28 09:27:10", "2014-07-28 16:27:10", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13520", "3", "2014-07-28 09:27:59", "2014-07-28 16:27:59", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nFor more information on current course offerings, click on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming Events</em></strong> .Â Â <i class=\"fa fa-chevron-right\"><span style=\"color: transparent; display: none;\">icon-chevron-right</span></i>\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-28 09:27:59", "2014-07-28 16:27:59", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13521", "3", "2014-07-28 09:28:53", "2014-07-28 16:28:53", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming Events</em></strong>for more informationÂ .Â Â <i class=\"fa fa-chevron-right\"><span style=\"color: transparent; display: none;\">icon-chevron-right</span></i>\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-28 09:28:53", "2014-07-28 16:28:53", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13522", "3", "2014-07-28 09:30:04", "2014-07-28 16:30:04", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more informationÂ .Â Â <i class=\"fa fa-chevron-right\"><span style=\"color: transparent; display: none;\">icon-chevron-right</span></i>\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-28 09:30:04", "2014-07-28 16:30:04", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13523", "3", "2014-07-28 09:36:56", "2014-07-28 16:36:56", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.Â Â <i class=\"fa fa-chevron-right\"><span style=\"color: transparent; display: none;\">icon-chevron-right</span></i>\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\n<strong>All currently offered courses</strong> are also listed on our <strong>Home Page</strong>.\r\n\r\nPlease click on the <b>Course and Events Calendar</b>Â for additional informationÂ for each course.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-28 09:36:56", "2014-07-28 16:36:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13527", "3", "2014-07-29 10:55:53", "2014-07-29 17:55:53", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #000000;\"><strong>Samaritan\'s Fund</strong></span>. Â If this is your first time making a donation to our Samaritan Fund or whether you already give regularly to this important cause, we have three easy donation options available.\r\n\r\n<span style=\"color: rgb(0, 0, 0);\">Donations can be madeÂ </span>one-time, monthly, quarterly, annually etc.:\r\n<ul>\r\n	<li><span style=\"text-decoration: underline;\"><span><strong>Option 1 (preferred)</strong>:</span></span> please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n	<li><span style=\"text-decoration: underline;\"><span><strong>Option 2</strong></span>:</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n	<li><span><strong>Option 3:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span>Click here</span></a></span>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-07-29 10:55:53", "2014-07-29 17:55:53", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13528", "3", "2014-07-29 10:57:26", "2014-07-29 17:57:26", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #000000;\"><strong>Samaritan\'s Fund</strong></span>. Â If this is your first time making a donation to our Samaritan Fund or whether you already give regularly to this important cause, we have three easy donation options available.\r\n\r\nDonations can be made<span style=\"color: #000000;\">Â </span>one-time, monthly, quarterly, annually etc.:\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1 (preferred)</strong>:</span> please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n	<li><span style=\"color: #000000;\"><strong>Option 3:</strong></span>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-07-29 10:57:26", "2014-07-29 17:57:26", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13529", "3", "2014-07-29 10:57:58", "2014-07-29 17:57:58", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #000000;\"><strong>Samaritan\'s Fund</strong></span>. Â If this is your first time making a donation to our Samaritan Fund or whether you already give regularly to this important cause, we have three easy donation options available.\r\n\r\nDonations can be made<span style=\"color: #000000;\">Â </span>one-time, monthly, quarterly, annually etc.:\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1 (preferred)</strong>:</span> please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n	<li><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Option 3:</strong></span></span>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2014-07-29 10:57:58", "2014-07-29 17:57:58", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13530", "3", "2014-07-29 11:17:46", "2014-07-29 18:17:46", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.Â Â <i class=\"fa fa-chevron-right\"><span style=\"color: transparent; display: none;\">icon-chevron-right</span></i>\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\" target=\"_blank\">click here</a>.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-29 11:17:46", "2014-07-29 18:17:46", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13536", "3", "2014-07-29 11:57:27", "2014-07-29 18:57:27", "You will find more information onÂ <span style=\"color: #000000;\"><strong><em>up-coming personal development courses</em></strong></span>Â by clicking on the <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span> to your right.Â Â <i class=\"fa fa-angle-right\"></i>\r\n\r\nBelow are <span style=\"color: rgb(0, 0, 0);\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<span style=\"color: #000000;\"><a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Art Therapy Group (<span style=\"color: #000000;\"><a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<span style=\"color: #000000;\"><a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<span style=\"color: #000000;\"><a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>CareerChoice (<span style=\"color: #000000;\"><a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-29 11:57:27", "2014-07-29 18:57:27", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13537", "3", "2014-07-29 12:01:41", "2014-07-29 19:01:41", "", "Grief and Loss - general training program information poster", "", "inherit", "closed", "closed", "", "gl-general-poster-2012", "", "", "2014-07-29 12:01:41", "2014-07-29 19:01:41", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-general-poster-2012.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13539", "3", "2014-07-29 12:47:46", "2014-07-29 19:47:46", "You will find more information onÂ <span style=\"color: #000000;\"><strong><em>up-coming personal development courses</em></strong></span>Â by clicking on the <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span> to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><a title=\"Link to Grief, Loss and Life Transition info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<span style=\"color: #000000;\"><a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Art Therapy Group (<span style=\"color: #000000;\"><a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<span style=\"color: #000000;\"><a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<span style=\"color: #000000;\"><a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>CareerChoice (<span style=\"color: #000000;\"><a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-29 12:47:46", "2014-07-29 19:47:46", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13541", "2", "2014-07-29 22:05:16", "2014-07-30 05:05:16", "&nbsp;\r\n\r\nSouth Island Centre is located at:\r\n\r\n<span style=\"color: #000000;\"><strong>3821A Cedar Hill Cross Road</strong></span> (Saanich).Â <strong>Parking is free.</strong>\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps: \r\n<BR><a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n<BR><a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.</span>\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-29 22:05:16", "2014-07-30 05:05:16", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13542", "2", "2014-07-30 00:08:00", "2014-07-30 07:08:00", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.Â Â <i class=\"fa fa-chevron-right\"><span style=\"color: transparent; display: none;\">icon-chevron-right</span></i>\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Pastoral Counselling Training\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/PCT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></a></span> (Please contact us if interested)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\" >click here</a>.\r\n\r\nPlease call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong>, orÂ <span style=\"color: #000000;\"><a title=\"email courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to e-mail us at courses@localhost, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time by using the<em> Leave a comment form</em> in the Contact Us drop-down menu, or by sending an email to courses@localhost and insert <em>Unsubscribe</em> in the subject line.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-30 00:08:00", "2014-07-30 07:08:00", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13543", "2", "2014-07-30 00:12:10", "2014-07-30 07:12:10", "Listed below are additional services we offer at South Island Centre:\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h4>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Professional Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h4>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors are<span style=\"color: #000000;\"><strong> Barbara Baillie</strong></span> and <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h4>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2014-07-30 00:12:10", "2014-07-30 07:12:10", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13544", "3", "2014-07-30 09:23:20", "2014-07-30 16:23:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">\r\n\r\n[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]\r\n\r\n</div>", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-30 09:23:20", "2014-07-30 16:23:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13545", "3", "2014-07-30 09:24:14", "2014-07-30 16:24:14", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-30 09:24:14", "2014-07-30 16:24:14", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13546", "3", "2014-07-30 09:25:26", "2014-07-30 16:25:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-30 09:25:26", "2014-07-30 16:25:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13547", "3", "2014-07-30 09:26:08", "2014-07-30 16:26:08", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong> <strong>\r\nDate:</strong> Saturday, November 22, 2014 <strong>\r\nTime:</strong> 6:30pm-9:00pm. <strong>\r\nLocation:</strong> tba <strong>\r\nGuest Performer:</strong> Ms Louise Rose[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-07-30 09:26:08", "2014-07-30 16:26:08", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13548", "3", "2014-07-30 09:49:49", "2014-07-30 16:49:49", "[gravityform id=\"4\" name=\"Contact Form: Counselling\"]", "Contact Form: Counselling", "", "publish", "closed", "closed", "", "counselling", "", "", "2014-07-30 09:57:56", "2014-07-30 16:57:56", "", "5", "http://localhost:8888/TestSICPage/wordpress/?page_id=13548", "56", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13549", "3", "2014-07-30 09:49:49", "2014-07-30 16:49:49", "[gravityform id=\"4\" name=\"Counselling\"]", "Counselling", "", "inherit", "closed", "closed", "", "13548-revision-v1", "", "", "2014-07-30 09:49:49", "2014-07-30 16:49:49", "", "13548", "http://localhost:8888/TestSICPage/wordpress/13548-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13550", "3", "2014-07-30 09:50:36", "2014-07-30 16:50:36", "<h2>Register for Training</h2>\r\n[gravityform id=\"3\" name=\"Register for Training\"]", "Register for Training", "", "publish", "closed", "closed", "", "register-course-training-program", "", "", "2018-05-23 10:07:44", "2018-05-23 17:07:44", "", "15121", "http://localhost:8888/TestSICPage/wordpress/?page_id=13550", "1", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13551", "3", "2014-07-30 09:50:36", "2014-07-30 16:50:36", "[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Register for a Course or a Training Program", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2014-07-30 09:50:36", "2014-07-30 16:50:36", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13552", "3", "2014-07-30 09:51:30", "2014-07-30 16:51:30", "[gravityform id=\"4\" name=\"Counselling\"]", "Contact Form: Counselling", "", "inherit", "closed", "closed", "", "13548-revision-v1", "", "", "2014-07-30 09:51:30", "2014-07-30 16:51:30", "", "13548", "http://localhost:8888/TestSICPage/wordpress/13548-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13553", "3", "2014-07-30 09:52:53", "2014-07-30 16:52:53", "[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Contact Form: Register for a Course or a Training Program", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2014-07-30 09:52:53", "2014-07-30 16:52:53", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13554", "3", "2014-07-30 09:57:47", "2014-07-30 16:57:47", "[gravityform id=\"4\" name=\"Contact Form: Counselling\"]", "Contact Form: Counselling", "", "inherit", "closed", "closed", "", "13548-revision-v1", "", "", "2014-07-30 09:57:47", "2014-07-30 16:57:47", "", "13548", "http://localhost:8888/TestSICPage/wordpress/13548-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13555", "3", "2014-07-30 09:59:07", "2014-07-30 16:59:07", "[gravityform id=\"5\" name=\"Contact Form: General Submission\"]", "Contact Form: General Submission", "", "publish", "closed", "closed", "", "contact-form-general-submission", "", "", "2014-07-30 10:00:52", "2014-07-30 17:00:52", "", "29", "http://localhost:8888/TestSICPage/wordpress/?page_id=13555", "81", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13556", "3", "2014-07-30 09:59:07", "2014-07-30 16:59:07", "", "Contact Form: General Submission", "", "inherit", "closed", "closed", "", "13555-revision-v1", "", "", "2014-07-30 09:59:07", "2014-07-30 16:59:07", "", "13555", "http://localhost:8888/TestSICPage/wordpress/13555-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13557", "3", "2014-07-30 10:00:20", "2014-07-30 17:00:20", "[gravityform id=\"5\" name=\"Contact Form: General Submission\"]", "Contact Form: General Submission", "", "inherit", "closed", "closed", "", "13555-revision-v1", "", "", "2014-07-30 10:00:20", "2014-07-30 17:00:20", "", "13555", "http://localhost:8888/TestSICPage/wordpress/13555-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13558", "3", "2014-07-30 10:03:11", "2014-07-30 17:03:11", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event:Â </strong><span style=\"color: #000000;\"><a title=\"Contact Form: General Submission\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/contact-form-gâ€¦ral-submission/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to receive information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:03:11", "2014-07-30 17:03:11", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13559", "3", "2014-07-30 10:05:17", "2014-07-30 17:05:17", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Please use the \"Leave a Comment\" linkÂ to requestÂ information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:05:17", "2014-07-30 17:05:17", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13560", "3", "2014-07-30 10:06:18", "2014-07-30 17:06:18", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Please use the \"Leave a Comment\" <a title=\"Leave a Comment\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">link</a>Â to requestÂ information about an up-coming event or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:06:18", "2014-07-30 17:06:18", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13561", "3", "2014-07-30 10:08:22", "2014-07-30 17:08:22", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Click thisÂ <a title=\"Leave a Comment\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">link</a>Â to leave a general submission on our \"Leave A Comment\" page, or to requestÂ information about an up-coming event, or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><a title=\"Email to office administrator admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><a title=\"Email Bill Cole bill@localhost\" href=\"mailto:bill@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><a title=\"Email to register for a course courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:08:22", "2014-07-30 17:08:22", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13562", "3", "2014-07-30 10:09:03", "2014-07-30 17:09:03", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Click thisÂ <a title=\"Leave a Comment\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">link</a>Â to leave a general submission on our \"Leave A Comment\" page, or to requestÂ information about an up-coming event, or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:09:03", "2014-07-30 17:09:03", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13563", "3", "2014-07-30 10:10:16", "2014-07-30 17:10:16", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Click thisÂ <a title=\"Leave a Comment\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">link</a>Â to leave a general submission on our \"Leave A Comment\" page, or to requestÂ information about an up-coming event, or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Contact Form: Front Desk\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/contact-form-gâ€¦ral-submission/%20\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:10:16", "2014-07-30 17:10:16", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13564", "3", "2014-07-30 10:11:54", "2014-07-30 17:11:54", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Click thisÂ <a title=\"Leave a Comment\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">link</a>Â to leave a general submission on our \"Leave A Comment\" page, or to requestÂ information about an up-coming event, or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <span style=\"text-decoration: underline;\">Click here</span>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:11:54", "2014-07-30 17:11:54", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13565", "3", "2014-07-30 10:12:30", "2014-07-30 17:12:30", "[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "Leave A Comment", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2014-07-30 10:12:30", "2014-07-30 17:12:30", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13566", "3", "2014-07-30 10:13:23", "2014-07-30 17:13:23", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Click thisÂ <a title=\"Leave a Comment\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">link</a>Â to leave a general submission on our \"Leave A Comment\" page, or to requestÂ information about an up-coming event, or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong><a title=\"Contact Form: Front Desk\" href=\"%20http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Â <span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:13:23", "2014-07-30 17:13:23", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13567", "3", "2014-07-30 10:14:52", "2014-07-30 17:14:52", "", "Register Online", "", "publish", "closed", "closed", "", "13567", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "15121", "http://localhost:8888/TestSICPage/wordpress/?p=13567", "16", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("13569", "3", "2014-07-30 10:23:05", "2014-07-30 17:23:05", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/workshop tuition payment deadline for each course (one week prior to the start date of the course).</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course:</span></span></strong></h4>\r\nWhen you are ready to register for a course, you may:\r\n<ol>\r\n	<li>Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â callÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail, or</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Contact Form: Register for Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to fill out the Contact Form.</li>\r\n</ol>\r\nPlease include in your phone message:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card)</li>\r\n</ul>\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Payment Information:</strong></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week</strong>Â before the start date of the course.</li>\r\n</ul>\r\nTo complete the registration process, we <span style=\"color: #000000;\"><strong>MUST</strong></span> receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week prior</strong></span> to the start date of the course or workshop.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\nWe accept the following <strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">payment options</span></span></strong><span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-07-30 10:23:05", "2014-07-30 17:23:05", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13570", "3", "2014-07-30 10:25:54", "2014-07-30 17:25:54", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Click thisÂ <a title=\"Leave a Comment\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">link</a>Â to leave a general submission on our \"Leave A Comment\" page, or to requestÂ information about an up-coming event, or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong><a title=\"Contact Form: Front Desk\" href=\"%20http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Â <span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Director of Services, Bill Cole:Â </strong><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span>Â to contact our Director of Services.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:25:54", "2014-07-30 17:25:54", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13571", "3", "2014-07-30 10:26:08", "2014-07-30 17:26:08", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong>Click thisÂ <a title=\"Leave a Comment\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">link</a>Â to leave a general submission on our \"Leave A Comment\" page, or to requestÂ information about an up-coming event, or for a general inquiry.\r\n\r\n<strong>Office co-ordinator:Â </strong><a title=\"Contact Form: Front Desk\" href=\"%20http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Â <span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:26:08", "2014-07-30 17:26:08", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13574", "3", "2014-07-30 10:29:55", "2014-07-30 17:29:55", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Submission\" href=\"%20http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Contact Form: General Submission\" href=\"%20http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 10:29:55", "2014-07-30 17:29:55", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13575", "3", "2014-07-30 10:31:22", "2014-07-30 17:31:22", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">Graduated Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Graduated Fee Scale - Affordable Counselling! ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-07-30 10:31:22", "2014-07-30 17:31:22", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13576", "3", "2014-07-30 10:31:51", "2014-07-30 17:31:51", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">Graduated Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Graduated Fee Scale = Affordable Counselling! ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-07-30 10:31:51", "2014-07-30 17:31:51", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13577", "3", "2014-07-30 10:32:41", "2014-07-30 17:32:41", "", "Art Therapy - general info poster", "", "inherit", "closed", "closed", "", "art-therapy-group-small", "", "", "2014-07-30 10:32:41", "2014-07-30 17:32:41", "", "54", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Art-Therapy-Group-small.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13578", "3", "2014-07-30 10:33:47", "2014-07-30 17:33:47", "", "The Ebb and Flow of Life: Training in Grief, Loss, and Life-Transitions", "", "inherit", "closed", "closed", "", "gl-poster", "", "", "2014-07-30 10:33:47", "2014-07-30 17:33:47", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13579", "3", "2014-07-30 10:34:48", "2014-07-30 17:34:48", "", "Pastoral Counselling Training - General Info Poster", "", "inherit", "closed", "closed", "", "pct-web-flyer", "", "", "2014-07-30 10:34:48", "2014-07-30 17:34:48", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13580", "3", "2014-07-30 10:35:20", "2014-07-30 17:35:20", "", "The Enneagram: A Journey of Self-Discovery (General Info Poster) ", "", "inherit", "closed", "closed", "", "the-enneagram-small", "", "", "2014-07-30 10:35:20", "2014-07-30 17:35:20", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/The-Enneagram-small.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13581", "3", "2014-07-30 10:35:58", "2014-07-30 17:35:58", "", "Mid Life Directions (General Info Poster)", "", "inherit", "closed", "closed", "", "mid-life-directions-web", "", "", "2014-07-30 10:35:58", "2014-07-30 17:35:58", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Mid-Life-Directions-web.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13582", "3", "2014-07-30 10:37:23", "2014-07-30 17:37:23", "You will find more information onÂ <span style=\"color: #000000;\"><strong><em>up-coming personal development courses</em></strong></span>Â by clicking on the <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span> to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<span style=\"color: #000000;\"><a title=\"Link to Enneagram info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/The%20Enneagram%20small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Art Therapy Group (<span style=\"color: #000000;\"><a title=\"Link to Art Therapy info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Art%20Therapy%20Group%20small.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<span style=\"color: #000000;\"><a title=\"Link to Midlife Directions info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/Mid%20Life%20Directions%20web.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<span style=\"color: #000000;\"><a title=\"Link to Helping a loved one info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%202010%201%20day.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>CareerChoice (<span style=\"color: #000000;\"><a title=\"Career Choice - general info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/CareerChoice-general-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Helping People Change\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-30 10:37:23", "2014-07-30 17:37:23", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13583", "3", "2014-07-30 10:39:05", "2014-07-30 17:39:05", "You will find more information onÂ <span style=\"color: #000000;\"><strong><em>up-coming personal development courses</em></strong></span>Â by clicking on the <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span> to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Art Therapy Group (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>CareerChoice (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - general info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-30 10:39:05", "2014-07-30 17:39:05", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13584", "3", "2014-07-30 10:39:26", "2014-07-30 17:39:26", "You will find more information onÂ <span style=\"color: #000000;\"><strong><em>up-coming personal development courses</em></strong></span>Â by clicking on the <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span> to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Art Therapy Group (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>CareerChoice (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-30 10:39:26", "2014-07-30 17:39:26", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13585", "3", "2014-07-30 10:39:58", "2014-07-30 17:39:58", "", "CareerChoice (General Info Poster)", "", "inherit", "closed", "closed", "", "careerchoice-general-poster-2014-2", "", "", "2014-07-30 10:39:58", "2014-07-30 17:39:58", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/CareerChoice-general-poster-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13586", "3", "2014-07-30 10:41:01", "2014-07-30 17:41:01", "You will find more information onÂ <span style=\"color: #000000;\"><strong><em>up-coming personal development courses</em></strong></span>Â by clicking on the <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span> to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Art Therapy Group (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Helping a loved one with a problem like addiction (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice (General Info)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/CareerChoice-general-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-30 10:41:01", "2014-07-30 17:41:01", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13587", "3", "2014-07-30 10:44:31", "2014-07-30 17:44:31", "", "Helping People Change (General Info Poster)", "", "inherit", "closed", "closed", "", "hpc-web-flyer", "", "", "2014-07-30 10:44:31", "2014-07-30 17:44:31", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13588", "3", "2014-07-30 10:45:42", "2014-07-30 17:45:42", "You will find more information onÂ <span style=\"color: #000000;\"><strong><em>up-coming personal development courses</em></strong></span>Â by clicking on the <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span> to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<a title=\"The Enneagram (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/The-Enneagram-small.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Art Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Art-Therapy-Group-small.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Mid-Life Directions (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Mid-Life-Directions-web.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice (General Info)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/CareerChoice-general-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a>Â to email us at courses@localhost,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-30 10:45:42", "2014-07-30 17:45:42", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13589", "3", "2014-07-30 10:51:14", "2014-07-30 17:51:14", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">i</span></span></a>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span>)</li>\r\n	<li>Helping People Change ()</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-30 10:51:14", "2014-07-30 17:51:14", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13590", "3", "2014-07-30 10:57:02", "2014-07-30 17:57:02", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (information poster here)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-30 10:57:02", "2014-07-30 17:57:02", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13591", "3", "2014-07-30 10:57:40", "2014-07-30 17:57:40", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-30 10:57:40", "2014-07-30 17:57:40", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13592", "3", "2014-07-30 10:58:47", "2014-07-30 17:58:47", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-30 10:58:47", "2014-07-30 17:58:47", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13593", "3", "2014-07-30 11:00:05", "2014-07-30 18:00:05", "", "Brief Solution Focused Therapy (General Info Poster) ", "", "inherit", "closed", "closed", "", "bsft-flyer-2013", "", "", "2014-07-30 11:00:05", "2014-07-30 18:00:05", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13594", "3", "2014-07-30 11:06:38", "2014-07-30 18:06:38", "", "Bowen Family Systems (General Info Poster)", "", "inherit", "closed", "closed", "", "family-systems-print-2014", "", "", "2014-07-30 11:06:38", "2014-07-30 18:06:38", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13595", "3", "2014-07-30 11:08:56", "2014-07-30 18:08:56", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">i<span style=\"color: #000000;\"><span style=\"color: #000000;\">nformation poster here</span></span></a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Brief Solution Focused Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span></a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <span style=\"color: #000000;\"><a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - general info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-30 11:08:56", "2014-07-30 18:08:56", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13596", "3", "2014-07-30 11:11:03", "2014-07-30 18:11:03", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span>)</li>\r\n	<li>Brief Solution Focused Therapy (<span style=\"color: #000000;\"><a title=\"Link to Brief Solution Focused info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/BSFT%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Grief, Loss and Life Transitions (Ebb and Flow) (<span style=\"color: #000000;\"><a title=\"Link to general Grief, Loss and Life Transition poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/G&amp;L%20poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Link to general Helping People Change info poster\" href=\"http://localhost:8888/TestSICPage/wordpress/images/stories/food/HPC%20web%20flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFor more information on these courses or to indicate interest or register, please <a title=\"Link to courses@localhost\" href=\"mailto:courses@localhost\" target=\"_blank\">click here</a> to <strong>email</strong> us at courses@localhost or call our office atÂ <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-30 11:11:03", "2014-07-30 18:11:03", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13597", "3", "2014-07-30 11:15:58", "2014-07-30 18:15:58", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Pastoral Care and Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Brief Solution Focused Therapy <span style=\"text-decoration: underline;\">(<a title=\"Brief Solution Focused Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow: Life, Grief and Transition (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Helping People Chagne (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFor more information on these courses or to indicate interest or register, please click here,Â or call our office atÂ <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-30 11:15:58", "2014-07-30 18:15:58", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13598", "3", "2014-07-30 11:16:56", "2014-07-30 18:16:56", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Pastoral Care and Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Brief Solution Focused Therapy <span style=\"text-decoration: underline;\">(<a title=\"Brief Solution Focused Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow: Life, Grief and Transition (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Helping People Chagne (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFor more information on these courses or to indicate interest, please <a title=\"Contact Form: Register for a Course\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>,Â or call our office atÂ <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - general info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-30 11:16:56", "2014-07-30 18:16:56", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13599", "3", "2014-07-30 11:17:12", "2014-07-30 18:17:12", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Pastoral Care and Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Brief Solution Focused Therapy <span style=\"text-decoration: underline;\">(<a title=\"Brief Solution Focused Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow: Life, Grief and Transition (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Helping People Change (<span style=\"color: #000000;\"><a title=\"Helping People Chagne (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFor more information on these courses or to indicate interest, please <a title=\"Contact Form: Register for a Course\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>,Â or call our office atÂ <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - General Info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2014-07-30 11:17:12", "2014-07-30 18:17:12", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13600", "3", "2014-07-30 11:18:26", "2014-07-30 18:18:26", "You will find more information onÂ <span style=\"color: #000000;\"><strong><em>up-coming personal development courses</em></strong></span>Â by clicking on the <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span> to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<a title=\"The Enneagram (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/The-Enneagram-small.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Art Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Art-Therapy-Group-small.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Mid-Life Directions (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Mid-Life-Directions-web.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice (General Info)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/CareerChoice-general-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-30 11:18:26", "2014-07-30 18:18:26", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13601", "3", "2014-07-30 11:19:18", "2014-07-30 18:19:18", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <span style=\"color: #0000ff;\"><strong><em><span style=\"color: #000000;\">specific dates and times of up-coming course</span>s</em></strong><span style=\"color: #000000;\"> on our Home Page.Â </span></span>Each up-coming course is also listed in the<strong> Course and Event Calendar</strong>.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">i<span style=\"color: #000000;\"><span style=\"color: #000000;\">nformation poster here</span></span></a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Brief Solution Focused Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span></a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register, pleaseÂ <a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to email us at courses@localhost, or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - General Info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-30 11:19:18", "2014-07-30 18:19:18", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13602", "3", "2014-07-30 11:27:19", "2014-07-30 18:27:19", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></span> (<a title=\"Pastoral Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>.\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">lick here</a></span></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-07-30 11:27:19", "2014-07-30 18:27:19", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13606", "3", "2014-07-30 11:43:16", "2014-07-30 18:43:16", "&nbsp;\r\n\r\nSouth Island Centre is located at:\r\n\r\n<span style=\"color: #000000;\"><strong>3821A Cedar Hill Cross Road</strong></span> (Saanich).Â <strong>Parking is free.</strong>\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.</span>\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-30 11:43:16", "2014-07-30 18:43:16", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13607", "3", "2014-07-30 11:45:05", "2014-07-30 18:45:05", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/SIC-house-front-view.jpg\"><img class=\"alignnone size-medium wp-image-13293\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/SIC-house-front-view-300x199.jpg\" alt=\"South Island Centre for Counselling and Training\" width=\"300\" height=\"199\" /></a>\r\n\r\nSouth Island Centre is located at:\r\n\r\n<span style=\"color: #000000;\"><strong>3821A Cedar Hill Cross Road</strong></span> (Saanich).Â <strong>Parking is free.</strong>\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:</span>\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-30 11:45:05", "2014-07-30 18:45:05", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13608", "3", "2014-07-30 11:46:34", "2014-07-30 18:46:34", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/SIC-house-front-view.jpg\"><img class=\"alignnone size-medium wp-image-13293\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/SIC-house-front-view-300x199.jpg\" alt=\"South Island Centre for Counselling and Training\" width=\"300\" height=\"199\" /></a>\r\n\r\nSouth Island Centre is located at:\r\n\r\n<span style=\"color: #000000;\"><strong>3821A Cedar Hill Cross Road</strong></span> (Saanich). For available maps, please scroll to the bottom of this page.\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).Â <strong>Parking is free.</strong>\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:</span>\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-30 11:46:34", "2014-07-30 18:46:34", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13609", "3", "2014-07-30 11:48:24", "2014-07-30 18:48:24", "[caption id=\"attachment_13293\" align=\"aligncenter\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/SIC-house-front-view.jpg\"><img class=\"wp-image-13293 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/SIC-house-front-view-300x199.jpg\" alt=\"South Island Centre for Counselling and Training\" width=\"300\" height=\"199\" /></a> South Island Centre for Counselling and Training: 3821 A Cedar Hill Cross Rd, Victoria, BC; V8P 2M6[/caption]\r\n\r\nSouth Island Centre is located at:\r\n\r\n<span style=\"color: #000000;\"><strong>3821A Cedar Hill Cross Road</strong></span> (Saanich). For available maps, please scroll to the bottom of this page.\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).Â <strong>Parking is free.</strong>\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:</span>\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-30 11:48:24", "2014-07-30 18:48:24", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13610", "3", "2014-07-30 11:49:33", "2014-07-30 18:49:33", "[caption id=\"attachment_13293\" align=\"aligncenter\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/SIC-house-front-view.jpg\"><img class=\"wp-image-13293 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/SIC-house-front-view-300x199.jpg\" alt=\"South Island Centre for Counselling and Training\" width=\"300\" height=\"199\" /></a> South Island Centre for Counselling and Training: 3821 A Cedar Hill Cross Rd, Victoria, BC; V8P 2M6[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">We are located at <strong>3821A Cedar Hill Cross Road</strong></span> (Saanich). For available maps (Google, Mapquest), please scroll to the bottom of this page.\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).Â <strong>Parking is free.</strong>\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:</span>\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2014-07-30 11:49:33", "2014-07-30 18:49:33", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13611", "3", "2014-07-30 11:50:48", "2014-07-30 18:50:48", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">Graduated Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Graduated Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-07-30 11:50:48", "2014-07-30 18:50:48", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13612", "3", "2014-07-30 13:03:15", "2014-07-30 20:03:15", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Contact Form: General Submission\" href=\"%20http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 13:03:15", "2014-07-30 20:03:15", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13613", "3", "2014-07-30 13:04:08", "2014-07-30 20:04:08", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 13:04:08", "2014-07-30 20:04:08", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13614", "3", "2014-07-30 13:05:04", "2014-07-30 20:05:04", "<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-07-30 13:05:04", "2014-07-30 20:05:04", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13615", "3", "2014-07-30 16:51:34", "2014-07-30 23:51:34", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find the information onÂ <em>specific dates and times of up-coming courses</em><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â in the <strong><em>Upcoming Events</em></strong> sidebar on the right. Â </span></span>\r\n\r\nEach up-coming course is also listed in the<strong> Course and Event Calendar</strong>. Below are general information posters on courses and training programs.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">i<span style=\"color: #000000;\"><span style=\"color: #000000;\">nformation poster here</span></span></a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Brief Solution Focused Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span></a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register for a current course, pleaseÂ <a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill in the form or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - General Info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-30 16:51:34", "2014-07-30 23:51:34", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13616", "3", "2014-07-30 16:53:04", "2014-07-30 23:53:04", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find information onÂ <em>specific dates and times of up-coming courses</em><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â in the <strong><em>Upcoming Events</em></strong> sidebar on your right. Â </span></span>\r\n\r\nBelow are general information posters on courses and training programs.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">i<span style=\"color: #000000;\"><span style=\"color: #000000;\">nformation poster here</span></span></a>)</li>\r\n	<li>Brief Solution Focused Therapy (<a title=\"Brief Solution Focused Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/BSFT-flyer-2013.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster her</span>e</span></a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\">information poster here</a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register for a current course, pleaseÂ <a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill in the form or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - General Info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2014-07-30 16:53:04", "2014-07-30 23:53:04", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13617", "3", "2014-07-30 16:55:48", "2014-07-30 23:55:48", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>The Enneagram: A Journey of Self Discovery (<a title=\"The Enneagram (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/The-Enneagram-small.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Art Therapy Group (<a title=\"Art Therapy (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Art-Therapy-Group-small.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Mid-Life Directions - personal and spiritual growth for men and women 35 - 85+ (<a title=\"Mid-Life Directions (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Mid-Life-Directions-web.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>CareerChoice (<a title=\"Career Choice (General Info)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/CareerChoice-general-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Helping People Change (<a title=\"Helping People Change (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/HPC-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span style=\"color: #000000;\"><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2014-07-30 16:55:48", "2014-07-30 23:55:48", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13620", "3", "2014-07-30 17:02:42", "2014-07-31 00:02:42", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our office co-ordinator at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nYou may also contact us by email:Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â and fill out a General Inquiry contact form.Â </span></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-07-30 17:02:42", "2014-07-31 00:02:42", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13621", "3", "2014-07-30 17:04:20", "2014-07-31 00:04:20", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our office co-ordinator at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nYou may also contact us by email:Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â and fill out a General Inquiry contact form. Or fill out a Counselling Inquiry form <a title=\"Contact form: Counselling Appointment\" href=\"%20http://localhost:8888/TestSICPage/wordpress/counselling/counselling/\" target=\"_blank\">here.</a>Â </span></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-07-30 17:04:20", "2014-07-31 00:04:20", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13622", "3", "2014-07-30 17:05:14", "2014-07-31 00:05:14", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our office co-ordinator at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our office co-ordinator answers the phone directly on Monday-Thursdays from 10am-1pm.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nYou may also contact us by email:Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â and fill out a General Inquiry contact form. Â </span></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-07-30 17:05:14", "2014-07-31 00:05:14", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13623", "3", "2014-07-30 17:06:07", "2014-07-31 00:06:07", "[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "Contact Form: General Inquiry", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2014-07-30 17:06:07", "2014-07-31 00:06:07", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13624", "3", "2014-07-30 17:11:39", "2014-07-31 00:11:39", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our office co-ordinator at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our office co-ordinator answers the phone directly on Monday-Thursdays from 9am-noon.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nFor initial appointments, you mayÂ <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â and fill out a General Inquiry contact form. Â We will try to contact by phone you within 4-5 business days.</span></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-07-30 17:11:39", "2014-07-31 00:11:39", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13625", "3", "2014-07-30 17:26:16", "2014-07-31 00:26:16", "<h3><span style=\"color: #000000;\"><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></span></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\"><strong>Affordable Counselling Services</strong></span></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to view our graduated fee scale whichÂ is based on your combined family income.\r\n\r\nTo <span style=\"color: #000000;\"><strong>book an initial appointment:</strong></span> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or click here to fill out a General Inquiry Contact Form.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-07-30 17:26:16", "2014-07-31 00:26:16", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13626", "3", "2014-07-30 17:27:26", "2014-07-31 00:27:26", "<h3><span style=\"color: #000000;\"><strong style=\"color: #0000ff; font-size: 1.17em; line-height: 1.5em;\">Our counsellors can help!</strong></span></h3>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\"><strong>Affordable Counselling Services</strong></span></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to view our graduated fee scale whichÂ is based on your combined family income.\r\n\r\nTo <span style=\"color: #000000;\"><strong>book an initial appointment:</strong></span> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a> to fill out a General Inquiry Contact Form.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-07-30 17:27:26", "2014-07-31 00:27:26", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13627", "3", "2014-07-30 17:28:42", "2014-07-31 00:28:42", "<h2><span style=\"color: #000000;\">Our counsellors can help!</span></h2>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\"><strong>Affordable Counselling Services</strong></span></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to view our graduated fee scale whichÂ is based on your combined family income.\r\n\r\nTo <span style=\"color: #000000;\"><strong>book an initial appointment:</strong></span> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a> to fill out a General Inquiry Contact Form.\r\n<h3></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2014-07-30 17:28:42", "2014-07-31 00:28:42", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13628", "3", "2014-07-31 10:27:27", "2014-07-31 17:27:27", "<strong><a title=\"Board of Directors - general info 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/06/Board-of-Directors-info-package-June-2014.pdf\" target=\"_blank\">Click here</a> Â </strong>to view the<span style=\"color: #000000;\">Â <span style=\"color: #000000;\">Board of Directors Package (general info).</span></span>\r\n\r\n&nbsp;\r\n\r\nBoard Members 2014-2015:\r\n\r\n<strong>Daphne Taylor (chair)Â </strong>\r\n\r\nI am a senior who has twice benefited from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Sandra ScarthÂ </strong>\r\n\r\n<strong>Sally TuckeyÂ </strong>\r\n\r\n<strong>Barbara UnderhillÂ </strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2014-07-31 10:27:27", "2014-07-31 17:27:27", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13629", "3", "2014-07-31 10:42:32", "2014-07-31 17:42:32", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:<span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">Barbara Baillie</span>Â </strong>andÂ <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span>Â to fill out a general inquiry form. Please indicate in your message that you would like the office co-ordinator toÂ put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, clickÂ <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-31 10:42:32", "2014-07-31 17:42:32", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13630", "3", "2014-07-31 10:43:39", "2014-07-31 17:43:39", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:<span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">Barbara Baillie</span>Â </strong>andÂ <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form. Please indicate in your message that you would like the office co-ordinator toÂ put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, clickÂ <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-31 10:43:39", "2014-07-31 17:43:39", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13631", "3", "2014-07-31 10:44:36", "2014-07-31 17:44:36", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:<span style=\"color: #000000;\">Â </span><strong><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\">Barbara Baillie</span></a>Â </strong>andÂ <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form. Please indicate in your message that you would like the office co-ordinator toÂ put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, clickÂ <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-31 10:44:36", "2014-07-31 17:44:36", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13632", "3", "2014-07-31 10:45:08", "2014-07-31 17:45:08", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:<span style=\"color: #000000;\">Â </span><strong><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\">Barbara Baillie</span></a>Â </strong>andÂ <span style=\"color: #000000;\"><strong>Pamela Welle</strong></span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form. Please indicate in your message that you would like the office co-ordinator toÂ put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, follow this link: Â <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-31 10:45:08", "2014-07-31 17:45:08", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13633", "3", "2014-07-31 10:48:31", "2014-07-31 17:48:31", "&nbsp;\r\n\r\n[caption id=\"attachment_811\" align=\"alignleft\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/PW-picture.jpg\"><img class=\"wp-image-811 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/PW-picture-300x300.jpg\" alt=\"Pamela Welle \" width=\"300\" height=\"300\" /></a> Pamela Welle[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>Â (MASF) has a Master\'s degree in Spiritual Foundation with specific training in spiritual direction. She considers it a real honor to walk with others as they seek more freedom, joy, and love in their relationship with God. Pamela is currently doing a pastoral internship at Lambrick Park Church in Victoria, B.C.", "Pamela Welle", "", "publish", "closed", "closed", "", "pamela-welle", "", "", "2014-07-31 10:48:31", "2014-07-31 17:48:31", "", "91", "http://localhost:8888/TestSICPage/wordpress/?page_id=13633", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13634", "3", "2014-07-31 10:48:31", "2014-07-31 17:48:31", "&nbsp;\r\n\r\n[caption id=\"attachment_811\" align=\"alignleft\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/PW-picture.jpg\"><img class=\"wp-image-811 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/04/PW-picture-300x300.jpg\" alt=\"Pamela Welle \" width=\"300\" height=\"300\" /></a> Pamela Welle[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Pamela Welle</strong></span>Â (MASF) has a Master\'s degree in Spiritual Foundation with specific training in spiritual direction. She considers it a real honor to walk with others as they seek more freedom, joy, and love in their relationship with God. Pamela is currently doing a pastoral internship at Lambrick Park Church in Victoria, B.C.", "Pamela Welle", "", "inherit", "closed", "closed", "", "13633-revision-v1", "", "", "2014-07-31 10:48:31", "2014-07-31 17:48:31", "", "13633", "http://localhost:8888/TestSICPage/wordpress/13633-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13635", "3", "2014-07-31 10:50:22", "2014-07-31 17:50:22", "<p style=\"text-align: left;\">South Island Centre Spiritual Directors:</p>\r\n<p style=\"text-align: left;\"><strong><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\">Barbara Baillie</span></a>Â </strong>andÂ <span style=\"color: #000000;\"><strong><a title=\"Spiritual Director Pamela Welle\" href=\"http://localhost:8888/TestSICPage/wordpress/other-services/spiritual-direction/pamela-welle/\" target=\"_blank\"><span style=\"color: #000000;\">Pamela Welle</span></a></strong>Â (please click on the name of the spiritual directorÂ for more information).Â <strong>Â </strong></span></p>\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\"><img class=\"alignleft wp-image-13350 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" /></span></p>\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px; line-height: 1.5em;\">We long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God in <strong>YOUR</strong> life.</span></p>\r\n<strong>Questions?</strong> Call the office atÂ Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong>,Â or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form. Please indicate in your message that you would like the office co-ordinator toÂ put you in touch with the Spiritual Director of your choice.\r\n\r\n&nbsp;\r\n\r\nFor more information on our Spiritual Direction program, follow this link: Â <span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Spiritual-Directors-poster-general-2014.pdf\"><span style=\"color: #000000;\">Spiritual Directors poster general 2014</span></a></span>.", "Spiritual Direction", "", "inherit", "closed", "closed", "", "91-revision-v1", "", "", "2014-07-31 10:50:22", "2014-07-31 17:50:22", "", "91", "http://localhost:8888/TestSICPage/wordpress/91-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13636", "3", "2014-07-31 11:02:24", "2014-07-31 18:02:24", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<strong>Margaret (McKinnon) Anderson</strong>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong>Bill Cole</strong></a>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-31 11:02:24", "2014-07-31 18:02:24", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13637", "3", "2014-07-31 11:25:05", "2014-07-31 18:25:05", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><strong>Margaret (McKinnon) Anderson</strong></a>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<strong>Barbara Baillie</strong>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong>Bill Cole</strong></a>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-31 11:25:05", "2014-07-31 18:25:05", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13638", "3", "2014-07-31 11:26:38", "2014-07-31 18:26:38", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><strong>Margaret (McKinnon) Anderson</strong></a>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><strong>Barbara Baillie</strong></a>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong>Bill Cole</strong></a>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<strong>Carla Haverman</strong>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-31 11:26:38", "2014-07-31 18:26:38", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13639", "3", "2014-07-31 11:28:04", "2014-07-31 18:28:04", "&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-026.jpg\"><img class=\"alignleft wp-image-12899 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-026-300x300.jpg\" alt=\"Optional image title\" width=\"300\" height=\"300\" /></a></strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Carla Haveman</strong></span> enjoys working with young women around depression, low self-esteem and family dynamics. She forms really good connections through her compassion and empathy. As a mother of 3 almost grown boys, she has experienced it all!", "Carla Haveman", "", "inherit", "closed", "closed", "", "408-revision-v1", "", "", "2014-07-31 11:28:04", "2014-07-31 18:28:04", "", "408", "http://localhost:8888/TestSICPage/wordpress/408-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13640", "3", "2014-07-31 11:28:41", "2014-07-31 18:28:41", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><strong>Margaret (McKinnon) Anderson</strong></a>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><strong>Barbara Baillie</strong></a>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong>Bill Cole</strong></a>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><strong>Carla Haverman</strong></a>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<strong>Rosemary Merritt</strong>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-31 11:28:41", "2014-07-31 18:28:41", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13641", "3", "2014-07-31 11:29:29", "2014-07-31 18:29:29", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><strong>Margaret (McKinnon) Anderson</strong></a>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><strong>Barbara Baillie</strong></a>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong>Bill Cole</strong></a>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><strong>Carla Haverman</strong></a>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><strong>Rosemary Merritt</strong></a>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong>Fiona Pasay</strong>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-31 11:29:29", "2014-07-31 18:29:29", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13642", "3", "2014-07-31 11:30:21", "2014-07-31 18:30:21", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><strong>Margaret (McKinnon) Anderson</strong></a>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><strong>Barbara Baillie</strong></a>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong>Bill Cole</strong></a>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><strong>Carla Haverman</strong></a>\r\n\r\n<strong>Grace Kim</strong>\r\n\r\n<a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><strong>Rosemary Merritt</strong></a>:Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<a title=\"Volunteer Counsellor Fiona Pasay\" href=\"%20http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/fiona-pasay/\" target=\"_blank\"><strong>Fiona Pasay</strong></a>: Children and Youth\r\n\r\n<strong>Laurie Truant</strong>: Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-31 11:30:21", "2014-07-31 18:30:21", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13643", "3", "2014-07-31 11:31:53", "2014-07-31 18:31:53", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Carla Haverman</strong></span></a></span>\r\n\r\n<strong>Grace Kim:Â </strong>TBA\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Fiona Pasay\" href=\"%20http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/fiona-pasay/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span></a></span>: Children and Youth\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-31 11:31:53", "2014-07-31 18:31:53", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13644", "3", "2014-07-31 11:33:27", "2014-07-31 18:33:27", "Below is a list of our counsellors (in alphabetical order) and their specialty:\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><strong><a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><span style=\"color: #000000;\">Carla Haverman</span></a>:</strong><span style=\"color: #000000;\"><strong>Â </strong>depression, low self-esteem, family dynamics</span></span>\r\n\r\n<strong>Grace Kim:Â </strong>TBA\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Fiona Pasay\" href=\"%20http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/fiona-pasay/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span></a></span>: Children and Youth\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-07-31 11:33:27", "2014-07-31 18:33:27", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13661", "3", "2014-08-05 12:19:29", "2014-08-05 19:19:29", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">Graduated Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>graduated scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-08-05 12:19:29", "2014-08-05 19:19:29", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13662", "3", "2014-08-05 12:20:10", "2014-08-05 19:20:10", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Email to counselling@localhost\" href=\"mailto:counselling@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> toÂ emailÂ us at counselling@localhost. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-08-05 12:20:10", "2014-08-05 19:20:10", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13714", "3", "2014-08-06 09:34:27", "2014-08-06 16:34:27", "[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Register for a Course or a Training Program", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2014-08-06 09:34:27", "2014-08-06 16:34:27", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13715", "3", "2014-08-06 09:36:36", "2014-08-06 16:36:36", "[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "General Inquiry - Leave a Comment", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2014-08-06 09:36:36", "2014-08-06 16:36:36", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13716", "3", "2014-08-06 09:45:50", "2014-08-06 16:45:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: tba </strong>\r\n<strong>Guest Performer: Ms Louise Rose</strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-06 09:45:50", "2014-08-06 16:45:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13717", "3", "2014-08-06 09:47:23", "2014-08-06 16:47:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: tba </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-06 09:47:23", "2014-08-06 16:47:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13719", "3", "2014-08-07 14:28:15", "2014-08-07 21:28:15", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General Registration Information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/training program fee payment deadline for each course (one week/5 business days prior to the start date of the course or program).</li>\r\n	<li>We require a minimum number of registrants to run our courses and training programs. To avoid the heartbreak of a cancelled course or program, register early and invite your friends to join too!</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course or Training program:</span></span></strong></h4>\r\n<ol>\r\n	<li><span style=\"color: #000000;\"><span>Â Click here</span></span><span style=\"font-size: 14px;\">Â to fill out the Contact Form. The office co-ordinator will confirm the registration application by email.Â </span></li>\r\n	<li>Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â CallÂ the office co-ordinator atÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail.</li>\r\n</ol>\r\nPlease include in your phone message:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card).</li>\r\n</ul>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Payment Information:</strong></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course or training program fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week (or 5 business days)</strong>Â before the start date of the course or program.</li>\r\n</ul>\r\nTo complete the registration process and confirm a space in the course/training program, we <span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000;\">must</span></strong></span>Â receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week (5 business days) prior</strong></span> to the start date of the course or training program.\r\n\r\nRegistration is on a first come, first serve basis. If a course/training program does not have the minimum number of participants registered 5 business prior to the start date, the program may be cancelled. If this is the case, we will contact you by email or phone at least 3 business prior to the start date of the course/training program.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\nWe accept<span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card (Visa, Mastercard, Amex)</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span>\r\n<ul>\r\n	<li>In the case of a course/training program cancellations due to lack of registrants, a full refund will be issued.</li>\r\n	<li>In all cases where cash transactions occurred, refunds will be paid by cheque and may require a delay of up to 10 business days for processing.</li>\r\n	<li>If fees were paid by using a credit card, refunds will go back to the same card that was used to pay the course/training program fee.</li>\r\n</ul>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-08-07 14:28:15", "2014-08-07 21:28:15", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13720", "3", "2014-08-07 14:29:10", "2014-08-07 21:29:10", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General Registration Information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/training program fee payment deadline for each course (one week/5 business days prior to the start date of the course or program).</li>\r\n	<li>We require a minimum number of registrants to run our courses and training programs. To avoid the heartbreak of a cancelled course or program, register early and invite your friends to join too!</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course or Training program:</span></span></strong></h4>\r\n<ol>\r\n	<li><span style=\"color: #000000;\">Â <a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a></span><span style=\"font-size: 14px;\">Â to fill out the Contact Form. The office co-ordinator will confirm the registration application by email.Â </span></li>\r\n	<li>Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â CallÂ the office co-ordinator atÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail.</li>\r\n</ol>\r\nPlease include in your phone message:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card).</li>\r\n</ul>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Payment Information:</strong></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course or training program fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week (or 5 business days)</strong>Â before the start date of the course or program.</li>\r\n</ul>\r\nTo complete the registration process and confirm a space in the course/training program, we <span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000;\">must</span></strong></span>Â receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week (5 business days) prior</strong></span> to the start date of the course or training program.\r\n\r\nRegistration is on a first come, first serve basis. If a course/training program does not have the minimum number of participants registered 5 business prior to the start date, the program may be cancelled. If this is the case, we will contact you by email or phone at least 3 business prior to the start date of the course/training program.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\nWe accept<span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card (Visa, Mastercard, Amex)</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span>\r\n<ul>\r\n	<li>In the case of a course/training program cancellations due to lack of registrants, a full refund will be issued.</li>\r\n	<li>In all cases where cash transactions occurred, refunds will be paid by cheque and may require a delay of up to 10 business days for processing.</li>\r\n	<li>If fees were paid by using a credit card, refunds will go back to the same card that was used to pay the course/training program fee.</li>\r\n</ul>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2014-08-07 14:29:10", "2014-08-07 21:29:10", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13721", "3", "2014-08-07 14:39:31", "2014-08-07 21:39:31", "Bill Cole (RCC, MA) - Â Director of Services\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Carla Haveman</span></span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Fiona Pasay (MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is a volunteer counsellor with South Island Centre and is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-08-07 14:39:31", "2014-08-07 21:39:31", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13722", "3", "2014-08-07 14:40:07", "2014-08-07 21:40:07", "<a title=\"Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\">Bill Cole (RCC, MA) - Â Director of Services</a>\r\n\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Carla Haveman</span></span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Fiona Pasay (MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is a volunteer counsellor with South Island Centre and is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-08-07 14:40:07", "2014-08-07 21:40:07", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13723", "3", "2014-08-07 14:40:31", "2014-08-07 21:40:31", "<h3><span style=\"color: #000000;\"><a title=\"Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\">Bill Cole (RCC, MA) - Â Director of Services</span></a></span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Carla Haveman</span></span></h3>\r\n<strong>Carla Haveman</strong> enjoys working with young women and children around depression, low self-esteem and family dynamics. She also forms really good connections through her compassion and empathy and is the mother of 3 almost grown boys, so has experienced it all!\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Fiona Pasay (MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span> is a volunteer counsellor with South Island Centre and is currently working on her Registered Clinical Counsellor status, and has been a Youth and Family Counselor in the school system. She is also spearheading Â South Island Centre\'s new initiative for counselling children and youth, but also works with adults as well. Fiona also offers family counselling, especially for families facing divorce or separation, and in particular around parenting plans and concerns with their children.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2014-08-07 14:40:31", "2014-08-07 21:40:31", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13724", "3", "2014-08-07 14:42:50", "2014-08-07 21:42:50", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-08-07 14:42:50", "2014-08-07 21:42:50", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13725", "3", "2014-08-07 14:43:30", "2014-08-07 21:43:30", "At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-08-07 14:43:30", "2014-08-07 21:43:30", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13726", "3", "2014-08-07 14:46:18", "2014-08-07 21:46:18", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span></span>Â qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form.\r\n\r\nMore information for new and existing clients is included in theÂ <strong>Make</strong><strong>Â an Appointment</strong> category in the <strong>Counselling</strong> drop-down menu in the top ribbon. Â  Â  <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-08-07 14:46:18", "2014-08-07 21:46:18", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13727", "3", "2014-08-07 14:46:55", "2014-08-07 21:46:55", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span></span>Â qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form.\r\n\r\nMore information for new and existing clients is included here.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-08-07 14:46:55", "2014-08-07 21:46:55", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13728", "3", "2014-08-07 14:48:17", "2014-08-07 21:48:17", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">CounsellorsÂ at South Island Centre</span></span>Â qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n\r\nCall our office at Â Â Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i>Â Â 250-472-2851, extension 101 orÂ <a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill out a general inquiry form.\r\n\r\nMore information for new and existing clients <span style=\"color: #000000;\"><a title=\"Make an Appointment\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/for-prospective-clients/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-08-07 14:48:17", "2014-08-07 21:48:17", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13729", "3", "2014-08-07 14:51:02", "2014-08-07 21:51:02", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nOur <strong>experienced counsellors</strong> provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span><span>click here</span></span></a>Â to fill out a general inquiry form. Please allow 2-3 business days for a counsellor to get in touch with you.</li>\r\n</ol>\r\nFor more information to make an appointment for new and existing clients:Â <span style=\"color: #000000;\"><a title=\"Make an Appointment\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/for-prospective-clients/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-08-07 14:51:02", "2014-08-07 21:51:02", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13730", "3", "2014-08-07 14:53:24", "2014-08-07 21:53:24", "<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: rgb(0, 0, 0);\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a general inquiry form. Please allow 2-3 business days for a counsellor to get in touch with you.</li>\r\n</ol>\r\nFor more information to make an appointment for new and existing clients:Â <span style=\"color: #000000;\"><a title=\"Make an Appointment\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/for-prospective-clients/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-08-07 14:53:24", "2014-08-07 21:53:24", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13731", "3", "2014-08-07 14:54:48", "2014-08-07 21:54:48", "Below is a list of our counsellors (in alphabetical order) and their specialty. For more information on each counsellor, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><strong><a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><span style=\"color: #000000;\">Carla Haverman</span></a>:</strong><span style=\"color: #000000;\"><strong>Â </strong>depression, low self-esteem, family dynamics</span></span>\r\n\r\n<strong>Grace Kim:Â </strong>TBA\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Fiona Pasay\" href=\"%20http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/fiona-pasay/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span></a></span>: Children and Youth\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-08-07 14:54:48", "2014-08-07 21:54:48", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13732", "3", "2014-08-07 14:56:24", "2014-08-07 21:56:24", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialty. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><strong><a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><span style=\"color: #000000;\">Carla Haverman</span></a>:</strong><span style=\"color: #000000;\"><strong>Â </strong>Depression, Low self-esteem, Family Dynamics</span></span>\r\n\r\n<strong>Grace Kim:Â </strong>TBA\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Fiona Pasay\" href=\"%20http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/fiona-pasay/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span></a></span>: Children and Youth\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-08-07 14:56:24", "2014-08-07 21:56:24", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13733", "3", "2014-08-07 14:56:55", "2014-08-07 21:56:55", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><strong><a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><span style=\"color: #000000;\">Carla Haverman</span></a>:</strong><span style=\"color: #000000;\"><strong>Â </strong>Depression, Low Self-Esteem, Family Dynamics</span></span>\r\n\r\n<strong>Grace Kim:Â </strong>TBA\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Fiona Pasay\" href=\"%20http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/fiona-pasay/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span></a></span>: Children and Youth\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-08-07 14:56:55", "2014-08-07 21:56:55", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13734", "3", "2014-08-07 14:58:41", "2014-08-07 21:58:41", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our office co-ordinator at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our office co-ordinator answers the phone directly on Monday-Thursdays from 9am-noon.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nFor initial appointments, you mayÂ <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â and fill out a General Inquiry contact form. Â We will try to contact by phone you within 2-3 business days.</span></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the office co-ordinator will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2014-08-07 14:58:41", "2014-08-07 21:58:41", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13735", "3", "2014-08-11 09:24:22", "2014-08-11 16:24:22", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-001.jpg\"><img class=\"alignright wp-image-12870 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-001-300x128.jpg\" alt=\"Lorem ipsum image title\" width=\"300\" height=\"128\" /></a>\n\n<span style=\"color: rgb(0, 0, 0);\"><strong>Grace Kim</strong></span>, M.Div., MCS, Family System Theory\n\nGrace has been anÂ ordained minister for over 20 years ministering to youth, adults and Â families.Â She provides pastoral counseling, spiritual formation, pre-marital counseling, as well as individual, marriage and family counselling.\n\nGrace is married and enjoys hiking, gardening and photography. She is also fluent in Korean and Mandarin.", "Grace Kim", "", "inherit", "closed", "closed", "", "13414-autosave-v1", "", "", "2014-08-11 09:24:22", "2014-08-11 16:24:22", "", "13414", "http://localhost:8888/TestSICPage/wordpress/13414-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13736", "3", "2014-08-11 09:24:37", "2014-08-11 16:24:37", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-001.jpg\"><img class=\"alignright wp-image-12870 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-001-300x128.jpg\" alt=\"Lorem ipsum image title\" width=\"300\" height=\"128\" /></a>\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong>Grace Kim</strong></span>, M.Div., MCS, Family System Theory\r\n\r\nGrace has been anÂ ordained minister for over 20 years ministering to youth, adults, and Â families.Â She provides pastoral counseling, spiritual formation, pre-marital counseling, as well as individual, marriage and family counselling.\r\n\r\nGrace is married and enjoys hiking, gardening and photography. She is also fluent in Korean and Mandarin.", "Grace Kim", "", "inherit", "closed", "closed", "", "13414-revision-v1", "", "", "2014-08-11 09:24:37", "2014-08-11 16:24:37", "", "13414", "http://localhost:8888/TestSICPage/wordpress/13414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13737", "3", "2014-08-11 09:26:57", "2014-08-11 16:26:57", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Director of Services, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><strong><a title=\"Volunteer Counsellor Carla Haverman\" href=\"ttp://www.southislandcentre.ca/counselling/counsellors-2/carla-haverman/\" target=\"_blank\"><span style=\"color: #000000;\">Carla Haverman</span></a>:</strong><span style=\"color: #000000;\"><strong>Â </strong>Depression, Low Self-Esteem, Family Dynamics</span></span>\r\n\r\n<strong><span style=\"color: rgb(0, 0, 0);\"><a title=\"Counsellor Grace Kim\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/grace-kim/\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">Grace Kim</span></a></span>:Â </strong>Family Systems Theory, Individual, Family and Couple Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Fiona Pasay\" href=\"%20http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/fiona-pasay/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Fiona Pasay</strong></span></a></span>: Children and Youth\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2014-08-11 09:26:57", "2014-08-11 16:26:57", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13739", "3", "2014-08-12 11:03:26", "2014-08-12 18:03:26", "Click on the link to open the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/08/Helping-People-Change-Oct-25-and-30-2014.pdf\">Helping People Change Workshops, October 25 and October 30, 2014</a>\r\n\r\nIn these crazy and challenging times it can be difficult for youth workers to help young people make healthy and healing decisions for themselves. This course uses the <strong>Transtheoretical Model of Change (TMOC or The Stages of Change)</strong> and <strong>Motivational Interviewing (MI)</strong> and assists youth workers in understanding and facilitating positive and healthy growth in the lives of youth.\r\n\r\n<strong>Facilitator:</strong> Dr Martin Spray\r\nDr Martin Spray is a registered psychologist in private practice. He has been working in the field of addictions as a counsellor and trainer for 30 years. Martin combines a wealth of knowledge, hands-on experience with a warm and engaging speaking style. This workshop introduces participants to the Transtheoretical Model of Change and Motivational Interviewing.\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Helping People Change (Youth Leader Workshop), October 30, 2014", "", "publish", "closed", "closed", "", "helping-people-change-youth-leader-workshop-october-30-2014", "", "", "2014-08-25 09:57:32", "2014-08-25 16:57:32", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13739", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13740", "3", "2014-08-12 11:25:47", "2014-08-12 18:25:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: tba </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-12 11:25:47", "2014-08-12 18:25:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13741", "3", "2014-08-12 11:29:14", "2014-08-12 18:29:14", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 214)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-peopleâ€¦ctober-30-2014/\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 30, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: tba </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-12 11:29:14", "2014-08-12 18:29:14", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13742", "3", "2014-08-12 11:30:08", "2014-08-12 18:30:08", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: tba </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-12 11:30:08", "2014-08-12 18:30:08", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13743", "3", "2014-08-12 11:32:53", "2014-08-12 18:32:53", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></span> <span style=\"color: #000000;\">(<a title=\"Pastoral Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-08-12 11:32:53", "2014-08-12 18:32:53", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13744", "3", "2014-08-12 11:34:34", "2014-08-12 18:34:34", "&nbsp;\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></span> <span style=\"color: #000000;\">(<a title=\"Pastoral Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.\r\n\r\n&nbsp;", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-08-12 11:34:34", "2014-08-12 18:34:34", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13745", "3", "2014-08-12 11:45:25", "2014-08-12 18:45:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: tba </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-12 11:45:25", "2014-08-12 18:45:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13746", "3", "2014-08-12 11:47:28", "2014-08-12 18:47:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: tba </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-12 11:47:28", "2014-08-12 18:47:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13747", "3", "2014-08-12 11:54:32", "2014-08-12 18:54:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-12 11:54:32", "2014-08-12 18:54:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13748", "3", "2014-08-13 09:36:24", "2014-08-13 16:36:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-13 09:36:24", "2014-08-13 16:36:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13750", "3", "2014-08-13 09:39:26", "2014-08-13 16:39:26", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: rgb(0, 0, 0);\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a general inquiry form. Please allow 2-3 business days for a counsellor to get in touch with you.</li>\r\n</ol>\r\nFor more information to make an appointment for new and existing clients:Â <span style=\"color: #000000;\"><a title=\"Make an Appointment\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/for-prospective-clients/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-08-13 09:39:26", "2014-08-13 16:39:26", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13751", "3", "2014-08-13 09:40:24", "2014-08-13 16:40:24", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: #000000;\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a general inquiry form. Please allow 2-3 business days for a counsellor to get in touch with you.</li>\r\n</ol>\r\nFor more information to make an appointment for new and existing clients:Â <span style=\"color: #000000;\"><a title=\"Make an Appointment\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/for-prospective-clients/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2014-08-13 09:40:24", "2014-08-13 16:40:24", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13752", "3", "2014-08-13 09:41:45", "2014-08-13 16:41:45", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The office co-ordinator answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Office co-ordinator:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2014-08-13 09:41:45", "2014-08-13 16:41:45", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13753", "3", "2014-08-13 09:42:51", "2014-08-13 16:42:51", "[vc_row][vc_column][vc_column_text]\r\n\r\n<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\">Pastoral Counselling Training</span></span> <span style=\"color: #000000;\">(<a title=\"Pastoral Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-08-13 09:42:51", "2014-08-13 16:42:51", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13754", "3", "2014-08-13 09:47:04", "2014-08-13 16:47:04", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $110 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2014-08-13 09:47:04", "2014-08-13 16:47:04", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13755", "3", "2014-08-13 09:48:17", "2014-08-13 16:48:17", "[vc_row][vc_column][vc_column_text]\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts.jpg\"><img class=\"alignleft wp-image-13223 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-introverts-300x277.jpg\" alt=\"How to Care for Introverts\" width=\"300\" height=\"277\" /></a>\r\n\r\n&nbsp;\r\n\r\nThese are the values South Island Centre adheres to:\r\n\r\n&nbsp;\r\n\r\n<strong>Ethical practices</strong> - we work out of a commitment to our values, providing ethical counselling services, maintaining strict confidentiality to our clients and accountability within our organization.\r\n\r\n<strong>Inclusivity</strong> - we welcome and fully accept people of all faiths, or those with no faith background, to receive non-judgmental counselling that is open and transparent, with sensitivity to everyoneâ€™s individual spiritual journey.\r\n\r\n<strong>Growth</strong> - we facilitate growth in all areas of a personâ€™s life - from personal wholeness, to professional success, to organizational effectiveness.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts.jpg\"><img class=\"alignright wp-image-13222 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/How-to-care-for-Extroverts-300x300.jpg\" alt=\"How to care for Extroverts\" width=\"300\" height=\"300\" /></a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Effective Leadership</strong> - we demonstrate excellence in all we do, using a collaborative approach with discernment and sensitivity; we encourage empowerment, creativity, and healing through counselling, mentorship, and coaching.\r\n\r\n<strong>Integrity</strong> - we conduct ourselves authentically, working with honesty, trust, and respect with each other and our clients.\r\n\r\n<strong>Service</strong> - we are here to serve as we competently deliver affordable and professional counselling services with compassion, support, and an outstretched arm to our community.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "South Island Centre Values", "", "inherit", "closed", "closed", "", "13273-revision-v1", "", "", "2014-08-13 09:48:17", "2014-08-13 16:48:17", "", "13273", "http://localhost:8888/TestSICPage/wordpress/13273-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13759", "3", "2014-08-14 12:55:01", "2014-08-14 19:55:01", "", "Pastoral Counselling Training Workshop October 4, 2014", "", "inherit", "closed", "closed", "", "pastoral-counselling-training-workshop-october-4-2014", "", "", "2014-08-14 12:55:01", "2014-08-14 19:55:01", "", "13760", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/08/Pastoral-Counselling-Training-workshop-October-4-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13760", "3", "2014-08-14 12:59:22", "2014-08-14 19:59:22", "<strong>Trainers: Bill Cole and Margaret Anderson</strong>\r\n\r\nThis 1-day course is designed to help you understand what it means to be a pastoral care worker in a congregational setting. Participants work together to discover what pastoral care is and how it can be used effectively in their faith communities.\r\n\r\nThis course includes: 1. A basic introduction to Pastoral Care; 2. Caring for those experiencing grief and loss; 3. Advanced training for those already experienced in pastoral care.\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/08/Pastoral-Counselling-Training-workshop-October-4-2014.pdf\">Pastoral Counselling Training Workshop October 4, 2014</a>\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Pastoral Care Team Training, Saturday, October 4, 2014", "", "publish", "closed", "closed", "", "pastoral-care-team-training-saturday-october-4-2014", "", "", "2014-09-25 11:30:33", "2014-09-25 18:30:33", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13760", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13761", "3", "2014-08-14 13:03:35", "2014-08-14 20:03:35", "<strong>Trainers: Bill Cole and Margaret Anderson</strong>\n\nThis 1-day course is designed to help you understand what it means to be a pastoral care worker in a congregational setting. Participants work together to discover what pastoral care is and how it can be used effectively in their faith communities.\n\nThis course includes: 1. A basic introduction to Pastoral Care; 2. Caring for those experiencing grief and loss; 3. Advanced training for those already experienced in pastoral care.\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/08/Pastoral-Counselling-Training-workshop-October-4-2014.pdf\">Pastoral Counselling Training Workshop October 4, 2014</a>\n\n&nbsp;\n\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Pastoral Care Team Training, Saturday, October 4, 2014", "", "inherit", "closed", "closed", "", "13760-autosave-v1", "", "", "2014-08-14 13:03:35", "2014-08-14 20:03:35", "", "13760", "http://localhost:8888/TestSICPage/wordpress/13760-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13762", "3", "2014-08-14 13:08:05", "2014-08-14 20:08:05", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 4, 2014)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>Annual Fundraiser Dessert Party </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-14 13:08:05", "2014-08-14 20:08:05", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13763", "3", "2014-08-14 14:08:22", "2014-08-14 21:08:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 4, 2014)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">South Island Centre Fundraising Concert, Silent Auction and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">advanced order by November 14, 2014</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-14 14:08:22", "2014-08-14 21:08:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13764", "3", "2014-08-14 14:13:14", "2014-08-14 21:13:14", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 4, 2014)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-14 14:13:14", "2014-08-14 21:13:14", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13766", "3", "2014-08-25 09:54:57", "2014-08-25 16:54:57", "", "Helping People Change Workshops, October 25 and October 30, 2014", "", "inherit", "closed", "closed", "", "helping-people-change-oct-25-and-30-2014", "", "", "2014-08-25 09:54:57", "2014-08-25 16:54:57", "", "13739", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/08/Helping-People-Change-Oct-25-and-30-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13768", "3", "2014-08-28 12:48:33", "2014-08-28 19:48:33", "For more information, here is the Poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/09/Twilight-Journey-6-week-course-Oct-Nov-2014.pdf\">The Twilight Journey: Understand Grief, Loss and the Elderly (6 Wednesdays, Oct. 15-Nov.19, 2014)</a>\r\n\r\n&nbsp;\r\n\r\n<strong>Course Facilitator: Margaret AndersonÂ </strong>(Member of the Canadian Hospice and Palliative Care Association)\r\n\r\nThis 6-week course is for professional caregivers, clergy and others who work with and/or support people as they transition towards end of life. Learn about the unique losses and challenges of chronic illness and advanced old age as well as the value of advocacy, authorship Â and a palliative approach to care. Acquire tools which enhance end of life and quality of care. Learn practical ways to help and support family members as well as yourself.\r\n\r\n&nbsp;", "The Twilight Journey: Understanding Grief, Loss and the Elderly (6 Wednesdays; October 15-November 19, 2014), Course facilitator: Margaret Anderson", "", "publish", "closed", "closed", "", "twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson", "", "", "2014-09-08 10:10:32", "2014-09-08 17:10:32", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13768", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13769", "3", "2014-08-28 12:54:34", "2014-08-28 19:54:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 4, 2014, 9am-4pm)</strong>\r\n\r\n<strong><a title=\"The Twilight Journey: Understanding Grief, Loss and the Elderly (Oct 8-Nov. 12, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understanding Grief, Loss and the Elderly</a> (6 Wednesday evenings, October 8-November 12, 2014; 7:00-9:00pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014; 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-08-28 12:54:34", "2014-08-28 19:54:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13770", "3", "2014-09-01 15:04:27", "2014-09-01 22:04:27", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-001.jpg\"><img class=\"alignright wp-image-12870 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-001-300x128.jpg\" alt=\"Lorem ipsum image title\" width=\"300\" height=\"128\" /></a>\r\n\r\n<span style=\"color: rgb(0, 0, 0);\"><strong>Grace Kim</strong></span>, M.Div., MCS, Family System Theory\r\n\r\nGrace has been anÂ ordained minister for over 20 years ministering to youth, adults, and families.Â She provides pastoral counselling, spiritual formation, pre-marital counselling, as well as individual, marriage and family counselling.\r\n\r\nGrace is married and enjoys hiking, gardening and photography. She is also fluent in Korean and Mandarin.", "Grace Kim", "", "inherit", "closed", "closed", "", "13414-revision-v1", "", "", "2014-09-01 15:04:27", "2014-09-01 22:04:27", "", "13414", "http://localhost:8888/TestSICPage/wordpress/13414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13772", "3", "2014-09-02 14:15:46", "2014-09-02 21:15:46", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Counselling Training</a> (Saturday, October 4, 2014) </span></span> <span style=\"color: #000000;\">(<a title=\"Pastoral Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-09-02 14:15:46", "2014-09-02 21:15:46", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13773", "3", "2014-09-02 14:17:39", "2014-09-02 21:17:39", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Counselling Training</a> (Saturday, October 4, 2014) </span></span></li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-09-02 14:17:39", "2014-09-02 21:17:39", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13774", "3", "2014-09-02 14:19:27", "2014-09-02 21:19:27", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Counselling Training</a> (Saturday, October 4, 2014) </span></span></li>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-09-02 14:19:27", "2014-09-02 21:19:27", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13775", "3", "2014-09-02 14:24:35", "2014-09-02 21:24:35", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Counselling Training</a> (Saturday, October 4, 2014) </span></span></li>\r\n	<li><a title=\"The Twilight Journey (Oct 8-Nov 12, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understanding Grief, Loss and the Elderly</a> (6 Wednesdays: October 8 - November 12, 2014)</li>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-09-02 14:24:35", "2014-09-02 21:24:35", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13776", "3", "2014-09-08 09:53:37", "2014-09-08 16:53:37", "", "The Twilight Journey: Understand Grief, Loss and the Elderly (6 Wednesdays, Oct. 15-Nov.19, 2014)", "", "inherit", "closed", "closed", "", "twilight-journey-6-week-course-oct-nov-2014", "", "", "2014-09-08 09:53:37", "2014-09-08 16:53:37", "", "13768", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/09/Twilight-Journey-6-week-course-Oct-Nov-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13777", "3", "2014-09-08 10:00:25", "2014-09-08 17:00:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 4, 2014, 9am-4pm)</strong>\r\n\r\n<strong><a title=\"The Twilight Journey: Understanding Grief, Loss and the Elderly (Oct 15-Nov. 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-15-november-19-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understanding Grief, Loss and the Elderly</a> (6 Wednesday evenings, October 15-November 19, 2014; 7:00-9:00pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014; 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-09-08 10:00:25", "2014-09-08 17:00:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13778", "3", "2014-09-08 10:01:16", "2014-09-08 17:01:16", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Counselling Training</a> (Saturday, October 4, 2014) </span></span></li>\r\n	<li>The Twilight Journey: Understanding Grief, Loss and the Elderly (6 Wednesdays: October 15 - November 19, 2014)</li>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-09-08 10:01:16", "2014-09-08 17:01:16", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13779", "3", "2014-09-08 10:04:23", "2014-09-08 17:04:23", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Counselling Training</a> (Saturday, October 4, 2014) </span></span></li>\r\n	<li><a title=\"The Twilight Journey (Oct 15-Nov 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journâ€¦garet-anderson/\" target=\"_blank\">The Twilight Journey: Understanding Grief, Loss and the Elderly</a>(6 Wednesdays: October 15 - November 19, 2014)</li>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-09-08 10:04:23", "2014-09-08 17:04:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13780", "3", "2014-09-08 10:05:40", "2014-09-08 17:05:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 4, 2014, 9am-4pm)</strong>\r\n\r\n<strong><a title=\"The Twilight Journey (Oct 15 - Nov 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journâ€¦garet-anderson/\" target=\"_blank\">The Twilight Journey: Understanding Grief, Loss and the Elderly</a> (6 Wednesday evenings, October 15-November 19, 2014; 7:00-9:00pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014; 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-09-08 10:05:40", "2014-09-08 17:05:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13781", "3", "2014-09-08 10:08:40", "2014-09-08 17:08:40", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Counselling Training</a> (Saturday, October 4, 2014) </span></span></li>\r\n	<li><a title=\"The Twilight Journey (Oct 15 - Nov 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a> (6 Wednesdays: October 15 - November 19, 2014)</li>\r\n	<li><a title=\"Burnout Caregiver Poster October 18, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Caregiver-Burnout-Poster-October-18-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">S</span><span style=\"color: #000000;\">e</span><span style=\"color: #000000;\">lfcare for Caregivers</span></span></a><span style=\"color: #339966;\"><span style=\"color: #339966;\">Â <span style=\"color: #000000;\">(Saturday, October 18, 2014)</span></span></span></li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Saturday, October 25, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-09-08 10:08:40", "2014-09-08 17:08:40", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13782", "3", "2014-09-08 10:10:04", "2014-09-08 17:10:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Care Team Training, October 4, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 4, 2014, 9am-4pm)</strong>\r\n\r\n<strong><a title=\"The Twilight Journey (Oct 15 - Nov 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understanding Grief, Loss and the Elderly</a> (6 Wednesday evenings, October 15-November 19, 2014; 7:00-9:00pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014; 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-09-08 10:10:04", "2014-09-08 17:10:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13784", "3", "2014-09-11 09:53:45", "2014-09-11 16:53:45", "", "Fundraising Concert with Ms. Louise Rose, Saturday, November 22, 2014", "", "inherit", "closed", "closed", "", "2014-fundraising-poster-nov-22-on-line-copy", "", "", "2014-09-11 09:53:45", "2014-09-11 16:53:45", "", "837", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/09/2014-Fundraising-poster-Nov-22-on-line-copy.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("13788", "3", "2014-10-06 12:16:50", "2014-10-06 19:16:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (Oct 15 - Nov 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understanding Grief, Loss and the Elderly</a> (6 Wednesday evenings, October 15-November 19, 2014; 7:00-9:00pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: The Need for Self-Care (Saturday, October 18, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-october-18-2014/?instance_id=\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, October 18, 2014; 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-06 12:16:50", "2014-10-06 19:16:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13790", "3", "2014-10-14 11:20:08", "2014-10-14 18:20:08", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-14 11:20:08", "2014-10-14 18:20:08", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13792", "3", "2014-10-14 12:20:28", "2014-10-14 19:20:28", "", "Caregiver Burnout: The Need for Self-Care; Saturday, November 29, 2014 (facilitator: Margaret Anderson) ", "", "inherit", "closed", "closed", "", "caregiver-burnout-poster-november-29-2014", "", "", "2014-10-14 12:20:28", "2014-10-14 19:20:28", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Caregiver-Burnout-Poster-November-29-2014.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13793", "3", "2014-10-14 12:25:46", "2014-10-14 19:25:46", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout Poster, Saturday, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, November 29, 2014, 9:00am-4:00pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-14 12:25:46", "2014-10-14 19:25:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13794", "3", "2014-10-15 09:44:39", "2014-10-15 16:44:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]<strong>Current Course Offerings:</strong>\r\n\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout Poster, Saturday, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, November 29, 2014, 9:00am-4:00pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-15 09:44:39", "2014-10-15 16:44:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13795", "3", "2014-10-15 09:46:03", "2014-10-15 16:46:03", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Enneagram: A Journey of Self-Discovery, October 24, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149\" target=\"_blank\">The Enneagram: A Journey of Self-Discovery</a> (Friday, October 24, 2014; 9:30am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 25, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-25-2014/?instance_id=188\" target=\"_blank\">Helping People Change (Youth Leader Workshop)</a> (Saturday, October 25, 2014; 9am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout Poster, Saturday, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, November 29, 2014, 9:00am-4:00pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-15 09:46:03", "2014-10-15 16:46:03", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13797", "3", "2014-10-24 09:56:52", "2014-10-24 16:56:52", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout Poster, Saturday, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, November 29, 2014, 9:00am-4:00pm)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-24 09:56:52", "2014-10-24 16:56:52", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13798", "3", "2014-10-24 10:07:01", "2014-10-24 17:07:01", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"The Twilight Journey (Oct 15 - Nov 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a> (6 Wednesdays: October 15 - November 19, 2014)</li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-10-24 10:07:01", "2014-10-24 17:07:01", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13799", "3", "2014-10-27 12:07:58", "2014-10-27 19:07:58", "Date: Saturday, February 7, 2015\nRegistration and payment due deadline: Friday, January 31, 2015\nOption 1: $150 for 1-day workshop (9am-5pm)\nOption 2: $225 per couple for 1-day workshop and 2 one-hour follow-up sessions\nOption 3: $175 for 3-hour private marriage preparation course", "Marriage Preparation Course, Saturday, February 7, 2015", "", "inherit", "closed", "closed", "", "marriage-prep-poster-feb-7-2015", "", "", "2014-10-27 12:07:58", "2014-10-27 19:07:58", "", "13801", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13800", "3", "2014-10-27 12:13:19", "2014-10-27 19:13:19", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout Poster, Saturday, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, November 29, 2014, 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course February 7, 2015\" href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various options)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-27 12:13:19", "2014-10-27 19:13:19", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13801", "3", "2014-10-27 12:21:09", "2014-10-27 19:21:09", "To view the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\">Marriage Preparation Course, Saturday, February 7, 2015</a>\r\n\r\n<strong>Facilitator</strong>: Bill Cole\r\n\r\n<strong>Option 1: $150</strong> for 1-day workshop (9am-5pm)\r\n\r\n<strong>Option 2: $225</strong> for 1-day workshop and two 1-hr follow up sessions\r\n\r\n<strong>Option 3: $175</strong> for 3-hr private marriage preparation course\r\n\r\nPreparing for Marriage: it\'s one of the most important Â decisions you\'ll make in your life ... why not prepare for it the same way you would for other major life changes?\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Marriage Preparation Course (Saturday, February 7, 2015)", "", "publish", "closed", "closed", "", "marriage-preparation-course-saturday-february-7-2015", "", "", "2014-10-27 12:25:14", "2014-10-27 19:25:14", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13801", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13802", "3", "2014-10-27 12:31:57", "2014-10-27 19:31:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout Poster, Saturday, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, November 29, 2014, 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-27 12:31:57", "2014-10-27 19:31:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13803", "3", "2014-10-27 12:36:09", "2014-10-27 19:36:09", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">2014 Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"The Twilight Journey (Oct 15 - Nov 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a> (6 Wednesdays: October 15 - November 19, 2014)</li>\r\n	<li><span style=\"color: #003300;\"><a title=\"The Enneagram: A Journey of Self Discovery (October 24, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Enneagram-October-24-2014-workshop.pdf\" target=\"_blank\"><span style=\"color: #003300;\">The Enneagram: A Journey of Self Discovery</span></a> </span>(Friday, October 24, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n	<li>Caregive Burn-out: The Need for Self-Care (Saturday, November 29, 2014)</li>\r\n	<li>Marriage Preparation Course (Saturday, February 7, 2015)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-10-27 12:36:09", "2014-10-27 19:36:09", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13804", "3", "2014-10-27 12:39:16", "2014-10-27 19:39:16", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"The Twilight Journey (Oct 15 - Nov 19, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/twilight-journey-understanding-grief-loss-elderly-6-wednesdays-october-8-november-12-2014-course-facilitator-margaret-anderson/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a> (6 Wednesdays: October 15 - November 19, 2014)</li>\r\n	<li><span style=\"color: #000000;\"><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\"><span style=\"color: #000000;\">Helping People Change (Youth Leader Workshop)</span></a></span> (Thursday, October 30, 2014)</li>\r\n	<li><a title=\"Caregiver Burnout, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Caregiver-Burnout-Poster-November-29-2014.pdf\" target=\"_blank\">Caregiver Burn-out: The Need for Self-Care</a> (Saturday, November 29, 2014)</li>\r\n	<li><a title=\"Marriage Preparation Course, Feburary 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-10-27 12:39:16", "2014-10-27 19:39:16", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13806", "3", "2014-10-27 12:47:42", "2014-10-27 19:47:42", "", "Family Systems Theory General poster Winter 2015", "", "inherit", "closed", "closed", "", "family-systems-theory-general-poster-winter-2015", "", "", "2014-10-27 12:47:42", "2014-10-27 19:47:42", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13807", "3", "2014-10-27 12:48:35", "2014-10-27 19:48:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Helping People Change (October 30, 2014)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189\" target=\"_blank\">Helping People (Youth Leader Workshop</a> (Thursday, October 30, 2014; 9:00am-4:30pm)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout Poster, Saturday, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, November 29, 2014, 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-10-27 12:48:35", "2014-10-27 19:48:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13809", "3", "2014-11-21 19:50:36", "2014-11-22 03:50:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout Poster, Saturday, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Saturday, November 29, 2014, 9:00am-4:00pm)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-11-21 19:50:36", "2014-11-22 03:50:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13810", "3", "2014-11-21 19:52:05", "2014-11-22 03:52:05", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access the poster (PDF).\r\n<ul>\r\n	<li><a title=\"Caregiver Burnout, November 29, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Caregiver-Burnout-Poster-November-29-2014.pdf\" target=\"_blank\">Caregiver Burn-out: The Need for Self-Care</a> (Saturday, November 29, 2014)</li>\r\n	<li><a title=\"Marriage Preparation Course, Feburary 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015)</li>\r\n</ul>\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-11-21 19:52:05", "2014-11-22 03:52:05", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13811", "3", "2014-11-26 09:30:14", "2014-11-26 17:30:14", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nThe Caregiver Burnout course scheduled for November 29 has been cancelled. More information about the up-coming courses will be available soon.\r\nSaturday, January 31, 2015: Caregiver Burnout for Professional Caregivers (1-day intensive)\r\nSaturday, February 21, 2015: Caregiver Burnout for Family Caregivers (1-day intensive)\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-11-26 09:30:14", "2014-11-26 17:30:14", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13812", "3", "2014-11-26 09:32:33", "2014-11-26 17:32:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nThe Caregiver Burnout course scheduled for November 29 has been cancelled. More information about the up-coming Self-Care courses will be available soon.\r\nSaturday, January 31, 2015: Caregiver Burnout: Self-Care for Professional Caregivers (1-day intensive)\r\nSaturday, February 21, 2015: Caregiver Burnout: Self-Care for Family Caregivers (1-day intensive)\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong><a title=\"2014 Annual Fundraising Event, November 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">2014 Fundraising Concert, Silent Auction, and Dessert Reception</a> </strong>\r\n<strong>Date: Saturday, November 22, 2014 </strong>\r\n<strong>Time: 6:30pm (Doors open)-9:00pm</strong>\r\n<strong>Location: Emmanuel Baptist Church, 2121 Cedar Hill Cross Rd </strong>\r\n<strong>Order Tickets: $25 (<a title=\"Ticket Order Fundraising Event,  Nov. 22, 2014\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201\" target=\"_blank\">Click here for Advanced Ticket Order; Order Deadline: November 14, 2014)</a>; $30 (at the door - very limited availability)<strong>\r\n<strong>Guest Performer: <a title=\"Ms Louise Rose\'s website\" href=\"http://www.lrose.com/\" target=\"_blank\">Ms Louise Rose</a></strong>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]</strong></strong>\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-11-26 09:32:33", "2014-11-26 17:32:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13813", "3", "2014-11-26 09:35:40", "2014-11-26 17:35:40", "<strong>Faciliator: Margaret Anderson</strong>\r\n\r\nTo view the poster: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/11/Caregiver-Burnout-Poster-January-31-2015.pdf\">Caregiver Burnout Poster January 31, 2015 (Professional Caregivers)</a>\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Caregiver Burnout: The Need for Self-Care (Professional Caregivers), Saturday, January 31, 2015", "", "publish", "closed", "closed", "", "caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015", "", "", "2014-11-26 10:00:30", "2014-11-26 18:00:30", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13813", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13815", "3", "2014-11-26 09:55:31", "2014-11-26 17:55:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n<h4>Up-coming Events:</h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-11-26 09:55:31", "2014-11-26 17:55:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13816", "3", "2014-11-26 09:57:57", "2014-11-26 17:57:57", "", "Caregiver Burnout Poster January 31, 2015 (Professional Caregivers)", "", "inherit", "closed", "closed", "", "caregiver-burnout-poster-january-31-2015", "", "", "2014-11-26 09:57:57", "2014-11-26 17:57:57", "", "13813", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/11/Caregiver-Burnout-Poster-January-31-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13817", "3", "2014-11-26 10:09:08", "2014-11-26 18:09:08", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n<ul>\r\n	<li><a title=\"Marriage Preparation Course, Feburary 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015)</li>\r\n</ul>\r\n<a title=\"Caregiver Burnout Jan 31, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a> (Saturday, January 31, 2015)\r\n\r\n<a title=\"Caregiver Burnout Feb 21, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2014-11-26 10:09:08", "2014-11-26 18:09:08", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13822", "3", "2014-12-01 11:36:25", "2014-12-01 19:36:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n<h4>Up-coming Events:</h4>\r\nTBA[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-12-01 11:36:25", "2014-12-01 19:36:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13823", "3", "2014-12-02 10:26:59", "2014-12-02 18:26:59", "", "Mid Life Directions intensive Spring 2015", "", "inherit", "closed", "closed", "", "mid-life-directions-intensive-spring-2015", "", "", "2014-12-02 10:26:59", "2014-12-02 18:26:59", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/12/Mid-Life-Directions-intensive-Spring-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13829", "3", "2014-12-11 11:52:43", "2014-12-11 19:52:43", "<strong>This job posting is now closed. We thank everyone who submitted an application. Only candidates selected for an interview will be contacted.Â </strong>\r\n\r\n&nbsp;\r\n\r\nSouth Island Centre for Counselling and Training is seekingÂ a <strong>part-time Director of Development</strong>.\r\n\r\nIf interested, please submit a <strong>resume and cover letter</strong> to <a href=\"mailto:admin@localhost\">admin@localhost</a> and insert<strong> Director of Development application</strong> in the subject line. Applications will be considered until <strong>Thursday, January 15, 2015.</strong>\r\n\r\nA job description follows below. To print a PDF click the following link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/12/Director-of-Development-FINAL.pdf\">Job Description: Director of Development </a>.\r\n\r\n&nbsp;\r\n\r\n<strong>Director of Development</strong>\r\n\r\n<strong>Job Description </strong>\r\n\r\n<strong>Â </strong>\r\n\r\n<strong>A. Relationships: </strong>\r\n\r\nThe Director Development is responsible to and will be supervised by the Board. The Director of Development is required to report to the Board on a monthly basis and attend Board and staff meetings as deemed necessary by the Board, meet weekly with the Operations Manager, and bi-weekly with the Counselling Supervisor and monthly with all staff. Â Â Although the Director of Development, the Operations and the Counselling Supervisor will work collaboratively, the Director of Development will be the strategic guide in a non-hierarchical organization.\r\n\r\n<strong>B. Responsibilities: </strong>\r\n<ol>\r\n	<li>Oversee finances in co-operation with Board Treasurer and contract accounting personnel.</li>\r\n	<li>Assist in preparation of annual and monthly operational budgets.</li>\r\n	<li>Manage and track budgets for courses and consulting initiatives in co-operation with Director of Services.</li>\r\n</ol>\r\n<strong>The Director of Developmentâ€™s primary focus will be PR and fund raising.</strong>\r\n<ol start=\"4\">\r\n	<li>Identify possible funding sources and prepare Board approved grant applications and any follow-up reports as required by funders.</li>\r\n	<li>Develop and execute fundraising initiatives.</li>\r\n	<li>Develop and distribute advertising materials.</li>\r\n	<li>Identify and pursue PR and community awareness initiatives in order to build South Islandâ€™s Centreâ€™s profile and positive image in our service areas.</li>\r\n	<li>Actively grow donor/mailing listings.</li>\r\n	<li>Work towards building participation rates in all areas of South Island Centre activities (ie counselling, consulting, courses/training).</li>\r\n	<li>Work towards building our profile in the non-profit sector by nurturing cooperative relationships through participating in networking opportunities and initiating joint ventures as approved by the board.</li>\r\n	<li>Recruit volunteers as required.</li>\r\n</ol>\r\n<strong>C. Skills (Have a proven track record)</strong>\r\n<ul>\r\n	<li>Full facility with Microsoft Office Suite applications including Power Point, Outlook and Excel.</li>\r\n	<li>Demonstrated successful grant writing andÂ  fundraising Â abilities</li>\r\n	<li>Exceptional interpersonal skill including the ability to articulate the faith base of SIC</li>\r\n	<li>SuperiorÂ  communication skills, written and verbal, including public speaking abilities</li>\r\n	<li>design related skills</li>\r\n	<li>able to work independently and in team environment</li>\r\n	<li>Strong leadership skills in building a cooperative, collegial work environment.</li>\r\n	<li>Experience using social media platforms</li>\r\n	<li>Experience in budget management.</li>\r\n</ul>\r\n<strong>D. Personal Attributes</strong>\r\n<ul>\r\n	<li>Committed Christian actively involved in a faith community.</li>\r\n	<li>Have a passion for fundraising/development work</li>\r\n	<li>Able to follow through on decision making, work to time lines and good project management skills.</li>\r\n	<li>Able to connect with business people</li>\r\n</ul>\r\n<strong>Â </strong>\r\n\r\n<strong>Salary</strong>\r\n\r\n$30/hour to a maximum of 20 hours/week.\r\n\r\n<strong>Â </strong>\r\n\r\n&nbsp;", "Career Opportunity: Director of Development Job Description ", "", "publish", "closed", "closed", "", "director-development-job-description-december-2014", "", "", "2015-01-16 12:05:20", "2015-01-16 20:05:20", "", "29", "http://localhost:8888/TestSICPage/wordpress/?page_id=13829", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13830", "3", "2014-12-11 11:52:43", "2014-12-11 19:52:43", "South Island Centre for Counselling and Training is looking to hire a <strong>part-time Director of Development</strong>.\r\n\r\nIf interested, please submit a <strong>resume and cover letter</strong> to <a href=\"mailto:admin@localhost\">admin@localhost</a> and insert<strong> Director of Development application</strong> in the subject line. Applications will be considered until <strong>Thursday, January 15, 2015.</strong>\r\n\r\nA job description follows below.\r\n\r\n&nbsp;\r\n\r\n<strong>Director of Development</strong>\r\n\r\n<strong>Job Description </strong>\r\n\r\n<strong>Â </strong>\r\n\r\n<strong>A. Relationships: </strong>\r\n\r\nThe Director Development is responsible to and will be supervised by the Board. The Director of Development is required to report to the Board on a monthly basis and attend Board and staff meetings as deemed necessary by the Board, meet weekly with the Operations Manager, and bi-weekly with the Counselling Supervisor and monthly with all staff. Â Â Although the Director of Development, the Operations and the Counselling Supervisor will work collaboratively, the Director of Development will be the strategic guide in a non-hierarchical organization.\r\n\r\n<strong>B. Responsibilities: </strong>\r\n<ol>\r\n	<li>Oversee finances in co-operation with Board Treasurer and contract accounting personnel.</li>\r\n	<li>Assist in preparation of annual and monthly operational budgets.</li>\r\n	<li>Manage and track budgets for courses and consulting initiatives in co-operation with Director of Services.</li>\r\n</ol>\r\n<strong>The Director of Developmentâ€™s primary focus will be PR and fund raising.</strong>\r\n<ol start=\"4\">\r\n	<li>Identify possible funding sources and prepare Board approved grant applications and any follow-up reports as required by funders.</li>\r\n	<li>Develop and execute fundraising initiatives.</li>\r\n	<li>Develop and distribute advertising materials.</li>\r\n	<li>Identify and pursue PR and community awareness initiatives in order to build South Islandâ€™s Centreâ€™s profile and positive image in our service areas.</li>\r\n	<li>Actively grow donor/mailing listings.</li>\r\n	<li>Work towards building participation rates in all areas of South Island Centre activities (ie counselling, consulting, courses/training).</li>\r\n	<li>Work towards building our profile in the non-profit sector by nurturing cooperative relationships through participating in networking opportunities and initiating joint ventures as approved by the board.</li>\r\n	<li>Recruit volunteers as required.</li>\r\n</ol>\r\n<strong>C. Skills (Have a proven track record)</strong>\r\n<ul>\r\n	<li>Full facility with Microsoft Office Suite applications including Power Point, Outlook and Excel.</li>\r\n	<li>Demonstrated successful grant writing andÂ  fundraising Â abilities</li>\r\n	<li>Exceptional interpersonal skill including the ability to articulate the faith base of SIC</li>\r\n	<li>SuperiorÂ  communication skills, written and verbal, including public speaking abilities</li>\r\n	<li>design related skills</li>\r\n	<li>able to work independently and in team environment</li>\r\n	<li>Strong leadership skills in building a cooperative, collegial work environment.</li>\r\n	<li>Experience using social media platforms</li>\r\n	<li>Experience in budget management.</li>\r\n</ul>\r\n<strong>D. Personal Attributes</strong>\r\n<ul>\r\n	<li>Committed Christian actively involved in a faith community.</li>\r\n	<li>Have a passion for fundraising/development work</li>\r\n	<li>Able to follow through on decision making, work to time lines and good project management skills.</li>\r\n	<li>Able to connect with business people</li>\r\n</ul>\r\n<strong>Â </strong>\r\n\r\n<strong>Salary</strong>\r\n\r\n$30/hour to a maximum of 20 hours/week.\r\n\r\n<strong>Â </strong>\r\n\r\n&nbsp;", "Director of Development Job Description (December 2014)", "", "inherit", "closed", "closed", "", "13829-revision-v1", "", "", "2014-12-11 11:52:43", "2014-12-11 19:52:43", "", "13829", "http://localhost:8888/TestSICPage/wordpress/13829-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13834", "3", "2014-12-11 12:01:17", "2014-12-11 20:01:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n<h4>Career Opportunity:</h4>\r\nSouth Island Centre is looking to hire a Director of Development. <a title=\"Job Description Director of Development \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/director-development-job-description-december-2014/\" target=\"_blank\">Click here for the job description and more information about the application process</a>. Applications will be considered until January 15, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-12-11 12:01:17", "2014-12-11 20:01:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13835", "3", "2014-12-11 12:03:48", "2014-12-11 20:03:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n<h4>Career Opportunity:</h4>\r\nSouth Island Centre is seeking a part-time Director of Development. <a title=\"Job Description Director of Development \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/director-development-job-description-december-2014/\" target=\"_blank\">Click here for the job description and more information about the application process</a>. Applications will be considered until January 15, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-12-11 12:03:48", "2014-12-11 20:03:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13836", "3", "2014-12-11 12:04:39", "2014-12-11 20:04:39", "South Island Centre for Counselling and Training is seekingÂ a <strong>part-time Director of Development</strong>.\r\n\r\nIf interested, please submit a <strong>resume and cover letter</strong> to <a href=\"mailto:admin@localhost\">admin@localhost</a> and insert<strong> Director of Development application</strong> in the subject line. Applications will be considered until <strong>Thursday, January 15, 2015.</strong>\r\n\r\nA job description follows below.\r\n\r\n&nbsp;\r\n\r\n<strong>Director of Development</strong>\r\n\r\n<strong>Job Description </strong>\r\n\r\n<strong>Â </strong>\r\n\r\n<strong>A. Relationships: </strong>\r\n\r\nThe Director Development is responsible to and will be supervised by the Board. The Director of Development is required to report to the Board on a monthly basis and attend Board and staff meetings as deemed necessary by the Board, meet weekly with the Operations Manager, and bi-weekly with the Counselling Supervisor and monthly with all staff. Â Â Although the Director of Development, the Operations and the Counselling Supervisor will work collaboratively, the Director of Development will be the strategic guide in a non-hierarchical organization.\r\n\r\n<strong>B. Responsibilities: </strong>\r\n<ol>\r\n	<li>Oversee finances in co-operation with Board Treasurer and contract accounting personnel.</li>\r\n	<li>Assist in preparation of annual and monthly operational budgets.</li>\r\n	<li>Manage and track budgets for courses and consulting initiatives in co-operation with Director of Services.</li>\r\n</ol>\r\n<strong>The Director of Developmentâ€™s primary focus will be PR and fund raising.</strong>\r\n<ol start=\"4\">\r\n	<li>Identify possible funding sources and prepare Board approved grant applications and any follow-up reports as required by funders.</li>\r\n	<li>Develop and execute fundraising initiatives.</li>\r\n	<li>Develop and distribute advertising materials.</li>\r\n	<li>Identify and pursue PR and community awareness initiatives in order to build South Islandâ€™s Centreâ€™s profile and positive image in our service areas.</li>\r\n	<li>Actively grow donor/mailing listings.</li>\r\n	<li>Work towards building participation rates in all areas of South Island Centre activities (ie counselling, consulting, courses/training).</li>\r\n	<li>Work towards building our profile in the non-profit sector by nurturing cooperative relationships through participating in networking opportunities and initiating joint ventures as approved by the board.</li>\r\n	<li>Recruit volunteers as required.</li>\r\n</ol>\r\n<strong>C. Skills (Have a proven track record)</strong>\r\n<ul>\r\n	<li>Full facility with Microsoft Office Suite applications including Power Point, Outlook and Excel.</li>\r\n	<li>Demonstrated successful grant writing andÂ  fundraising Â abilities</li>\r\n	<li>Exceptional interpersonal skill including the ability to articulate the faith base of SIC</li>\r\n	<li>SuperiorÂ  communication skills, written and verbal, including public speaking abilities</li>\r\n	<li>design related skills</li>\r\n	<li>able to work independently and in team environment</li>\r\n	<li>Strong leadership skills in building a cooperative, collegial work environment.</li>\r\n	<li>Experience using social media platforms</li>\r\n	<li>Experience in budget management.</li>\r\n</ul>\r\n<strong>D. Personal Attributes</strong>\r\n<ul>\r\n	<li>Committed Christian actively involved in a faith community.</li>\r\n	<li>Have a passion for fundraising/development work</li>\r\n	<li>Able to follow through on decision making, work to time lines and good project management skills.</li>\r\n	<li>Able to connect with business people</li>\r\n</ul>\r\n<strong>Â </strong>\r\n\r\n<strong>Salary</strong>\r\n\r\n$30/hour to a maximum of 20 hours/week.\r\n\r\n<strong>Â </strong>\r\n\r\n&nbsp;", "Director of Development Job Description (December 2014)", "", "inherit", "closed", "closed", "", "13829-revision-v1", "", "", "2014-12-11 12:04:39", "2014-12-11 20:04:39", "", "13829", "http://localhost:8888/TestSICPage/wordpress/13829-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13837", "3", "2014-12-15 10:53:47", "2014-12-15 18:53:47", "", "Job Description: Director of Development ", "", "inherit", "closed", "closed", "", "director-of-development-final", "", "", "2014-12-15 10:53:47", "2014-12-15 18:53:47", "", "13829", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/12/Director-of-Development-FINAL.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13838", "3", "2015-01-16 12:05:04", "2015-01-16 20:05:04", "<strong>This job posting is now closed. We thank everyone who submitted an application. Only candidates selected for an interview will be contacted.Â </strong>\n\n&nbsp;\n\nSouth Island Centre for Counselling and Training is seekingÂ a <strong>part-time Director of Development</strong>.\n\nIf interested, please submit a <strong>resume and cover letter</strong> to <a href=\"mailto:admin@localhost\">admin@localhost</a> and insert<strong> Director of Development application</strong> in the subject line. Applications will be considered until <strong>Thursday, January 15, 2015.</strong>\n\nA job description follows below. To print a PDF click the following link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/12/Director-of-Development-FINAL.pdf\">Job Description: Director of Development </a>.\n\n&nbsp;\n\n<strong>Director of Development</strong>\n\n<strong>Job Description </strong>\n\n<strong>Â </strong>\n\n<strong>A. Relationships: </strong>\n\nThe Director Development is responsible to and will be supervised by the Board. The Director of Development is required to report to the Board on a monthly basis and attend Board and staff meetings as deemed necessary by the Board, meet weekly with the Operations Manager, and bi-weekly with the Counselling Supervisor and monthly with all staff. Â Â Although the Director of Development, the Operations and the Counselling Supervisor will work collaboratively, the Director of Development will be the strategic guide in a non-hierarchical organization.\n\n<strong>B. Responsibilities: </strong>\n<ol>\n	<li>Oversee finances in co-operation with Board Treasurer and contract accounting personnel.</li>\n	<li>Assist in preparation of annual and monthly operational budgets.</li>\n	<li>Manage and track budgets for courses and consulting initiatives in co-operation with Director of Services.</li>\n</ol>\n<strong>The Director of Developmentâ€™s primary focus will be PR and fund raising.</strong>\n<ol start=\"4\">\n	<li>Identify possible funding sources and prepare Board approved grant applications and any follow-up reports as required by funders.</li>\n	<li>Develop and execute fundraising initiatives.</li>\n	<li>Develop and distribute advertising materials.</li>\n	<li>Identify and pursue PR and community awareness initiatives in order to build South Islandâ€™s Centreâ€™s profile and positive image in our service areas.</li>\n	<li>Actively grow donor/mailing listings.</li>\n	<li>Work towards building participation rates in all areas of South Island Centre activities (ie counselling, consulting, courses/training).</li>\n	<li>Work towards building our profile in the non-profit sector by nurturing cooperative relationships through participating in networking opportunities and initiating joint ventures as approved by the board.</li>\n	<li>Recruit volunteers as required.</li>\n</ol>\n<strong>C. Skills (Have a proven track record)</strong>\n<ul>\n	<li>Full facility with Microsoft Office Suite applications including Power Point, Outlook and Excel.</li>\n	<li>Demonstrated successful grant writing andÂ  fundraising Â abilities</li>\n	<li>Exceptional interpersonal skill including the ability to articulate the faith base of SIC</li>\n	<li>SuperiorÂ  communication skills, written and verbal, including public speaking abilities</li>\n	<li>design related skills</li>\n	<li>able to work independently and in team environment</li>\n	<li>Strong leadership skills in building a cooperative, collegial work environment.</li>\n	<li>Experience using social media platforms</li>\n	<li>Experience in budget management.</li>\n</ul>\n<strong>D. Personal Attributes</strong>\n<ul>\n	<li>Committed Christian actively involved in a faith community.</li>\n	<li>Have a passion for fundraising/development work</li>\n	<li>Able to follow through on decision making, work to time lines and good project management skills.</li>\n	<li>Able to connect with business people</li>\n</ul>\n<strong>Â </strong>\n\n<strong>Salary</strong>\n\n$30/hour to a maximum of 20 hours/week.\n\n<strong>Â </strong>\n\n&nbsp;", "Career Opportunity: Director of Development Job Description ", "", "inherit", "closed", "closed", "", "13829-autosave-v1", "", "", "2015-01-16 12:05:04", "2015-01-16 20:05:04", "", "13829", "http://localhost:8888/TestSICPage/wordpress/13829-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13839", "3", "2014-12-15 10:55:56", "2014-12-15 18:55:56", "South Island Centre for Counselling and Training is seekingÂ a <strong>part-time Director of Development</strong>.\r\n\r\nIf interested, please submit a <strong>resume and cover letter</strong> to <a href=\"mailto:admin@localhost\">admin@localhost</a> and insert<strong> Director of Development application</strong> in the subject line. Applications will be considered until <strong>Thursday, January 15, 2015.</strong>\r\n\r\nA job description follows below. To print a PDF click the following link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/12/Director-of-Development-FINAL.pdf\">Job Description: Director of Development </a>.\r\n\r\n&nbsp;\r\n\r\n<strong>Director of Development</strong>\r\n\r\n<strong>Job Description </strong>\r\n\r\n<strong>Â </strong>\r\n\r\n<strong>A. Relationships: </strong>\r\n\r\nThe Director Development is responsible to and will be supervised by the Board. The Director of Development is required to report to the Board on a monthly basis and attend Board and staff meetings as deemed necessary by the Board, meet weekly with the Operations Manager, and bi-weekly with the Counselling Supervisor and monthly with all staff. Â Â Although the Director of Development, the Operations and the Counselling Supervisor will work collaboratively, the Director of Development will be the strategic guide in a non-hierarchical organization.\r\n\r\n<strong>B. Responsibilities: </strong>\r\n<ol>\r\n	<li>Oversee finances in co-operation with Board Treasurer and contract accounting personnel.</li>\r\n	<li>Assist in preparation of annual and monthly operational budgets.</li>\r\n	<li>Manage and track budgets for courses and consulting initiatives in co-operation with Director of Services.</li>\r\n</ol>\r\n<strong>The Director of Developmentâ€™s primary focus will be PR and fund raising.</strong>\r\n<ol start=\"4\">\r\n	<li>Identify possible funding sources and prepare Board approved grant applications and any follow-up reports as required by funders.</li>\r\n	<li>Develop and execute fundraising initiatives.</li>\r\n	<li>Develop and distribute advertising materials.</li>\r\n	<li>Identify and pursue PR and community awareness initiatives in order to build South Islandâ€™s Centreâ€™s profile and positive image in our service areas.</li>\r\n	<li>Actively grow donor/mailing listings.</li>\r\n	<li>Work towards building participation rates in all areas of South Island Centre activities (ie counselling, consulting, courses/training).</li>\r\n	<li>Work towards building our profile in the non-profit sector by nurturing cooperative relationships through participating in networking opportunities and initiating joint ventures as approved by the board.</li>\r\n	<li>Recruit volunteers as required.</li>\r\n</ol>\r\n<strong>C. Skills (Have a proven track record)</strong>\r\n<ul>\r\n	<li>Full facility with Microsoft Office Suite applications including Power Point, Outlook and Excel.</li>\r\n	<li>Demonstrated successful grant writing andÂ  fundraising Â abilities</li>\r\n	<li>Exceptional interpersonal skill including the ability to articulate the faith base of SIC</li>\r\n	<li>SuperiorÂ  communication skills, written and verbal, including public speaking abilities</li>\r\n	<li>design related skills</li>\r\n	<li>able to work independently and in team environment</li>\r\n	<li>Strong leadership skills in building a cooperative, collegial work environment.</li>\r\n	<li>Experience using social media platforms</li>\r\n	<li>Experience in budget management.</li>\r\n</ul>\r\n<strong>D. Personal Attributes</strong>\r\n<ul>\r\n	<li>Committed Christian actively involved in a faith community.</li>\r\n	<li>Have a passion for fundraising/development work</li>\r\n	<li>Able to follow through on decision making, work to time lines and good project management skills.</li>\r\n	<li>Able to connect with business people</li>\r\n</ul>\r\n<strong>Â </strong>\r\n\r\n<strong>Salary</strong>\r\n\r\n$30/hour to a maximum of 20 hours/week.\r\n\r\n<strong>Â </strong>\r\n\r\n&nbsp;", "Director of Development Job Description (December 2014)", "", "inherit", "closed", "closed", "", "13829-revision-v1", "", "", "2014-12-15 10:55:56", "2014-12-15 18:55:56", "", "13829", "http://localhost:8888/TestSICPage/wordpress/13829-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13840", "3", "2014-12-15 11:38:14", "2014-12-15 19:38:14", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n<h4>Career Opportunity:</h4>\r\nSouth Island Centre is seeking a part-time Director of Development. <a title=\"Job Description Director of Development \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/director-development-job-description-december-2014/\" target=\"_blank\">Click here for the job description and more information about the application process</a>. Applications will be considered until January 15, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-12-15 11:38:14", "2014-12-15 19:38:14", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13841", "3", "2014-12-15 11:39:28", "2014-12-15 19:39:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n<h4>Career Opportunity:</h4>\r\nSouth Island Centre is seeking a part-time Director of Development. <a title=\"Job Description Director of Development \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/director-development-job-description-december-2014/\" target=\"_blank\">Click here for the job description and more information about the application process</a>. Applications will be considered until January 15, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2014-12-15 11:39:28", "2014-12-15 19:39:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13843", "3", "2015-01-05 16:10:03", "2015-01-06 00:10:03", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office/Reception Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The Operations Manager answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Operations Manager:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-01-05 16:10:03", "2015-01-06 00:10:03", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13845", "3", "2015-01-05 16:13:50", "2015-01-06 00:13:50", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our Operations Manager at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our Operations ManagerÂ answers the phone directly on Monday-Thursdays from 9am-noon.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nFor initial appointments, you mayÂ <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â and fill out a General Inquiry contact form. Â We will try to contact by phone you within 2-3 business days.</span></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the Operations Manager will <strong>forward your call</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2015-01-05 16:13:50", "2015-01-06 00:13:50", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13846", "3", "2015-01-05 16:15:06", "2015-01-06 00:15:06", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Marriage Preparation Course, Feburary 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\" target=\"_blank\">Marriage Preparation Course</a>\r\n<ul>(Saturday, February 7, 2015)</ul>\r\n<a title=\"Caregiver Burnout Jan 31, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a> (Saturday, January 31, 2015)\r\n\r\n<a title=\"Caregiver Burnout Feb 21, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-01-05 16:15:06", "2015-01-06 00:15:06", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13847", "3", "2015-01-05 16:26:10", "2015-01-06 00:26:10", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Caregiver Burnout Jan 31, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a> (Saturday, January 31, 2015)\r\n\r\n<a title=\"Marriage Preparation Course, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\n<a title=\"Mid-Life Directions Intensive Feb/March 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday February 28 and March 14, 2015)\r\n\r\n<a title=\"Family Systems Winter 2015 interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems - 12 Weeks Course (Winter 2015) (indicate interest)</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-01-05 16:26:10", "2015-01-06 00:26:10", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13848", "3", "2015-01-07 11:18:25", "2015-01-07 19:18:25", "", "Ebb and Flow Intensive April 2015", "", "inherit", "closed", "closed", "", "ebb-and-flow-intensive-april-2015", "", "", "2015-01-07 11:18:25", "2015-01-07 19:18:25", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/Ebb-and-Flow-Intensive-April-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13851", "3", "2015-01-07 11:29:36", "2015-01-07 19:29:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n<h4>Career Opportunity:</h4>\r\nSouth Island Centre is seeking a part-time Director of Development. <a title=\"Job Description Director of Development \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/director-development-job-description-december-2014/\" target=\"_blank\">Click here for the job description and more information about the application process</a>. Applications will be considered until January 15, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-01-07 11:29:36", "2015-01-07 19:29:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13852", "3", "2015-01-07 11:32:18", "2015-01-07 19:32:18", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Caregiver Burnout Jan 31, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a> (Saturday, January 31, 2015)\r\n\r\n<a title=\"Marriage Preparation Course, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\n<a title=\"Mid-Life Directions Intensive Feb/March 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday February 28 and March 14, 2015)\r\n\r\n<a title=\"Family Systems Winter 2015 interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems - 12 Weeks Course (Winter 2015) (indicate interest)</a>\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-01-07 11:32:18", "2015-01-07 19:32:18", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13853", "3", "2015-01-08 08:59:50", "2015-01-08 16:59:50", "", "Caregiver Burnout (Family Caregiver) Poster February 21, 2015 poster", "", "inherit", "closed", "closed", "", "caregiver-burnout-poster-february-21-2015-poster", "", "", "2015-01-08 08:59:50", "2015-01-08 16:59:50", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/Caregiver-Burnout-Poster-February-21-2015-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13854", "3", "2015-01-08 10:10:44", "2015-01-08 18:10:44", "South Island Centre for Counselling and Training is seekingÂ a <strong>part-time Director of Development</strong>.\r\n\r\nIf interested, please submit a <strong>resume and cover letter</strong> to <a href=\"mailto:admin@localhost\">admin@localhost</a> and insert<strong> Director of Development application</strong> in the subject line. Applications will be considered until <strong>Thursday, January 15, 2015.</strong>\r\n\r\nA job description follows below. To print a PDF click the following link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/12/Director-of-Development-FINAL.pdf\">Job Description: Director of Development </a>.\r\n\r\n&nbsp;\r\n\r\n<strong>Director of Development</strong>\r\n\r\n<strong>Job Description </strong>\r\n\r\n<strong>Â </strong>\r\n\r\n<strong>A. Relationships: </strong>\r\n\r\nThe Director Development is responsible to and will be supervised by the Board. The Director of Development is required to report to the Board on a monthly basis and attend Board and staff meetings as deemed necessary by the Board, meet weekly with the Operations Manager, and bi-weekly with the Counselling Supervisor and monthly with all staff. Â Â Although the Director of Development, the Operations and the Counselling Supervisor will work collaboratively, the Director of Development will be the strategic guide in a non-hierarchical organization.\r\n\r\n<strong>B. Responsibilities: </strong>\r\n<ol>\r\n	<li>Oversee finances in co-operation with Board Treasurer and contract accounting personnel.</li>\r\n	<li>Assist in preparation of annual and monthly operational budgets.</li>\r\n	<li>Manage and track budgets for courses and consulting initiatives in co-operation with Director of Services.</li>\r\n</ol>\r\n<strong>The Director of Developmentâ€™s primary focus will be PR and fund raising.</strong>\r\n<ol start=\"4\">\r\n	<li>Identify possible funding sources and prepare Board approved grant applications and any follow-up reports as required by funders.</li>\r\n	<li>Develop and execute fundraising initiatives.</li>\r\n	<li>Develop and distribute advertising materials.</li>\r\n	<li>Identify and pursue PR and community awareness initiatives in order to build South Islandâ€™s Centreâ€™s profile and positive image in our service areas.</li>\r\n	<li>Actively grow donor/mailing listings.</li>\r\n	<li>Work towards building participation rates in all areas of South Island Centre activities (ie counselling, consulting, courses/training).</li>\r\n	<li>Work towards building our profile in the non-profit sector by nurturing cooperative relationships through participating in networking opportunities and initiating joint ventures as approved by the board.</li>\r\n	<li>Recruit volunteers as required.</li>\r\n</ol>\r\n<strong>C. Skills (Have a proven track record)</strong>\r\n<ul>\r\n	<li>Full facility with Microsoft Office Suite applications including Power Point, Outlook and Excel.</li>\r\n	<li>Demonstrated successful grant writing andÂ  fundraising Â abilities</li>\r\n	<li>Exceptional interpersonal skill including the ability to articulate the faith base of SIC</li>\r\n	<li>SuperiorÂ  communication skills, written and verbal, including public speaking abilities</li>\r\n	<li>design related skills</li>\r\n	<li>able to work independently and in team environment</li>\r\n	<li>Strong leadership skills in building a cooperative, collegial work environment.</li>\r\n	<li>Experience using social media platforms</li>\r\n	<li>Experience in budget management.</li>\r\n</ul>\r\n<strong>D. Personal Attributes</strong>\r\n<ul>\r\n	<li>Committed Christian actively involved in a faith community.</li>\r\n	<li>Have a passion for fundraising/development work</li>\r\n	<li>Able to follow through on decision making, work to time lines and good project management skills.</li>\r\n	<li>Able to connect with business people</li>\r\n</ul>\r\n<strong>Â </strong>\r\n\r\n<strong>Salary</strong>\r\n\r\n$30/hour to a maximum of 20 hours/week.\r\n\r\n<strong>Â </strong>\r\n\r\n&nbsp;", "Career Opportunity: Director of Development Job Description ", "", "inherit", "closed", "closed", "", "13829-revision-v1", "", "", "2015-01-08 10:10:44", "2015-01-08 18:10:44", "", "13829", "http://localhost:8888/TestSICPage/wordpress/13829-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13863", "3", "2015-01-16 12:02:36", "2015-01-16 20:02:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n<h4>Career Opportunity:</h4>\r\nWe thank everyone who applied for the position of Director of Development (closing date was January 15, 2015). Only applicants selected for an interview will be contacted.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-01-16 12:02:36", "2015-01-16 20:02:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13864", "3", "2015-01-16 12:05:20", "2015-01-16 20:05:20", "<strong>This job posting is now closed. We thank everyone who submitted an application. Only candidates selected for an interview will be contacted.Â </strong>\r\n\r\n&nbsp;\r\n\r\nSouth Island Centre for Counselling and Training is seekingÂ a <strong>part-time Director of Development</strong>.\r\n\r\nIf interested, please submit a <strong>resume and cover letter</strong> to <a href=\"mailto:admin@localhost\">admin@localhost</a> and insert<strong> Director of Development application</strong> in the subject line. Applications will be considered until <strong>Thursday, January 15, 2015.</strong>\r\n\r\nA job description follows below. To print a PDF click the following link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/12/Director-of-Development-FINAL.pdf\">Job Description: Director of Development </a>.\r\n\r\n&nbsp;\r\n\r\n<strong>Director of Development</strong>\r\n\r\n<strong>Job Description </strong>\r\n\r\n<strong>Â </strong>\r\n\r\n<strong>A. Relationships: </strong>\r\n\r\nThe Director Development is responsible to and will be supervised by the Board. The Director of Development is required to report to the Board on a monthly basis and attend Board and staff meetings as deemed necessary by the Board, meet weekly with the Operations Manager, and bi-weekly with the Counselling Supervisor and monthly with all staff. Â Â Although the Director of Development, the Operations and the Counselling Supervisor will work collaboratively, the Director of Development will be the strategic guide in a non-hierarchical organization.\r\n\r\n<strong>B. Responsibilities: </strong>\r\n<ol>\r\n	<li>Oversee finances in co-operation with Board Treasurer and contract accounting personnel.</li>\r\n	<li>Assist in preparation of annual and monthly operational budgets.</li>\r\n	<li>Manage and track budgets for courses and consulting initiatives in co-operation with Director of Services.</li>\r\n</ol>\r\n<strong>The Director of Developmentâ€™s primary focus will be PR and fund raising.</strong>\r\n<ol start=\"4\">\r\n	<li>Identify possible funding sources and prepare Board approved grant applications and any follow-up reports as required by funders.</li>\r\n	<li>Develop and execute fundraising initiatives.</li>\r\n	<li>Develop and distribute advertising materials.</li>\r\n	<li>Identify and pursue PR and community awareness initiatives in order to build South Islandâ€™s Centreâ€™s profile and positive image in our service areas.</li>\r\n	<li>Actively grow donor/mailing listings.</li>\r\n	<li>Work towards building participation rates in all areas of South Island Centre activities (ie counselling, consulting, courses/training).</li>\r\n	<li>Work towards building our profile in the non-profit sector by nurturing cooperative relationships through participating in networking opportunities and initiating joint ventures as approved by the board.</li>\r\n	<li>Recruit volunteers as required.</li>\r\n</ol>\r\n<strong>C. Skills (Have a proven track record)</strong>\r\n<ul>\r\n	<li>Full facility with Microsoft Office Suite applications including Power Point, Outlook and Excel.</li>\r\n	<li>Demonstrated successful grant writing andÂ  fundraising Â abilities</li>\r\n	<li>Exceptional interpersonal skill including the ability to articulate the faith base of SIC</li>\r\n	<li>SuperiorÂ  communication skills, written and verbal, including public speaking abilities</li>\r\n	<li>design related skills</li>\r\n	<li>able to work independently and in team environment</li>\r\n	<li>Strong leadership skills in building a cooperative, collegial work environment.</li>\r\n	<li>Experience using social media platforms</li>\r\n	<li>Experience in budget management.</li>\r\n</ul>\r\n<strong>D. Personal Attributes</strong>\r\n<ul>\r\n	<li>Committed Christian actively involved in a faith community.</li>\r\n	<li>Have a passion for fundraising/development work</li>\r\n	<li>Able to follow through on decision making, work to time lines and good project management skills.</li>\r\n	<li>Able to connect with business people</li>\r\n</ul>\r\n<strong>Â </strong>\r\n\r\n<strong>Salary</strong>\r\n\r\n$30/hour to a maximum of 20 hours/week.\r\n\r\n<strong>Â </strong>\r\n\r\n&nbsp;", "Career Opportunity: Director of Development Job Description ", "", "inherit", "closed", "closed", "", "13829-revision-v1", "", "", "2015-01-16 12:05:20", "2015-01-16 20:05:20", "", "13829", "http://localhost:8888/TestSICPage/wordpress/13829-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13866", "3", "2015-01-26 10:22:31", "2015-01-26 18:22:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Cargiver Burnout (Professional Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers</a>) (Saturday, January 31, 2015)</strong>\r\n\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-01-26 10:22:31", "2015-01-26 18:22:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13867", "3", "2015-01-26 11:56:12", "2015-01-26 19:56:12", "[caption id=\"attachment_13857\" align=\"alignleft\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-4-with-BC.jpg\"><img class=\"wp-image-13857 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-4-with-BC-300x224.jpg\" alt=\"Pastoral Care Team Training October 2014 (Bill Cole, Trainer)\" width=\"300\" height=\"224\" /></a> Pastoral Care Team Training October 2014 (Bill Cole, Trainer)[/caption]\r\n\r\n[caption id=\"attachment_13856\" align=\"alignright\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-3-with-MA.jpg\"><img class=\"wp-image-13856 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-3-with-MA-300x224.jpg\" alt=\"Pastoral Care Team Training October 2014 (Margaret Anderson, trainer)\" width=\"300\" height=\"224\" /></a> Pastoral Care Team Training October 2014 (Margaret Anderson, trainer)[/caption]\r\n\r\nPastoral Care Team Training workshop, October 2014\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nHelping People Change, October 2014\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Past Workshops ", "", "publish", "closed", "closed", "", "past-workshops-3", "", "", "2017-07-28 19:18:00", "2017-07-29 02:18:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=13867", "32", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13868", "3", "2015-01-26 11:56:12", "2015-01-26 19:56:12", "", "Past Workshops ", "", "inherit", "closed", "closed", "", "13867-revision-v1", "", "", "2015-01-26 11:56:12", "2015-01-26 19:56:12", "", "13867", "http://localhost:8888/TestSICPage/wordpress/13867-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13869", "3", "2015-01-26 12:03:53", "2015-01-26 20:03:53", "[caption id=\"attachment_13857\" align=\"alignleft\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-4-with-BC.jpg\"><img class=\"wp-image-13857 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-4-with-BC-300x224.jpg\" alt=\"Pastoral Care Team Training October 2014 (Bill Cole, Trainer)\" width=\"300\" height=\"224\" /></a> Pastoral Care Team Training October 2014 (Bill Cole, Trainer)[/caption]\n\n[caption id=\"attachment_13856\" align=\"alignright\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-3-with-MA.jpg\"><img class=\"wp-image-13856 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-3-with-MA-300x224.jpg\" alt=\"Pastoral Care Team Training October 2014 (Margaret Anderson, trainer)\" width=\"300\" height=\"224\" /></a> Pastoral Care Team Training October 2014 (Margaret Anderson, trainer)[/caption]\n\nPastoral Care Team Training workshop, October 2014\n\n&nbsp;\n\n&nbsp;", "Past Workshops ", "", "inherit", "closed", "closed", "", "13867-autosave-v1", "", "", "2015-01-26 12:03:53", "2015-01-26 20:03:53", "", "13867", "http://localhost:8888/TestSICPage/wordpress/13867-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13870", "3", "2015-01-26 12:02:50", "2015-01-26 20:02:50", "Pastoral Care Team Training workshop, October 2014\r\n\r\n&nbsp;", "Past Workshops ", "", "inherit", "closed", "closed", "", "13867-revision-v1", "", "", "2015-01-26 12:02:50", "2015-01-26 20:02:50", "", "13867", "http://localhost:8888/TestSICPage/wordpress/13867-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13871", "3", "2015-01-26 12:04:21", "2015-01-26 20:04:21", "[caption id=\"attachment_13857\" align=\"alignleft\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-4-with-BC.jpg\"><img class=\"wp-image-13857 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-4-with-BC-300x224.jpg\" alt=\"Pastoral Care Team Training October 2014 (Bill Cole, Trainer)\" width=\"300\" height=\"224\" /></a> Pastoral Care Team Training October 2014 (Bill Cole, Trainer)[/caption]\r\n\r\n[caption id=\"attachment_13856\" align=\"alignright\" width=\"300\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-3-with-MA.jpg\"><img class=\"wp-image-13856 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/01/PCCT-3-with-MA-300x224.jpg\" alt=\"Pastoral Care Team Training October 2014 (Margaret Anderson, trainer)\" width=\"300\" height=\"224\" /></a> Pastoral Care Team Training October 2014 (Margaret Anderson, trainer)[/caption]\r\n\r\nPastoral Care Team Training workshop, October 2014\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nHelping People Change, October 2014\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Past Workshops ", "", "inherit", "closed", "closed", "", "13867-revision-v1", "", "", "2015-01-26 12:04:21", "2015-01-26 20:04:21", "", "13867", "http://localhost:8888/TestSICPage/wordpress/13867-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13872", "3", "2015-01-31 15:49:41", "2015-01-31 23:49:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Marriage Preparation Course, Saturday, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-course-saturday-february-7-2015/\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015; various workshop options available)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-01-31 15:49:41", "2015-01-31 23:49:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13873", "3", "2015-01-31 15:50:28", "2015-01-31 23:50:28", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Marriage Preparation Course, February 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Marriage-Prep-Poster-Feb-7-2015.pdf\" target=\"_blank\">Marriage Preparation Course</a> (Saturday, February 7, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\n<a title=\"Mid-Life Directions Intensive Feb/March 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday February 28 and March 14, 2015)\r\n\r\n<a title=\"Family Systems Winter 2015 interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems - 12 Weeks Course (Winter 2015) (indicate interest)</a>\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-01-31 15:50:28", "2015-01-31 23:50:28", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13877", "3", "2015-02-05 11:14:54", "2015-02-05 19:14:54", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Self-Care for Women, April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-Care for Women</a> (Saturday, April 25, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-02-05 11:14:54", "2015-02-05 19:14:54", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13878", "3", "2015-02-05 11:16:36", "2015-02-05 19:16:36", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\n<a title=\"Mid-Life Directions Intensive Feb/March 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday February 28 and March 14, 2015)\r\n\r\n<a title=\"Family Systems Winter 2015 interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems - 12 Weeks Course (Winter 2015) (indicate interest)</a>\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\n<a title=\"Self-Care for Women, April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, April 25, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-02-05 11:16:36", "2015-02-05 19:16:36", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13879", "3", "2015-02-10 09:15:37", "2015-02-10 17:15:37", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Self-Care for Women, April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-Care for Women</a> (Saturday, April 25, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-02-10 09:15:37", "2015-02-10 17:15:37", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13880", "3", "2015-02-10 09:18:26", "2015-02-10 17:18:26", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\nPOSTPONED to Spring 2015 - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\n<a title=\"Mid-Life Directions Intensive Feb/March 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday February 28 and March 14, 2015)\r\n\r\n<a title=\"Family Systems Winter 2015 interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems - 12 Weeks Course (Winter 2015) (indicate interest)</a>\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\n<a title=\"Self-Care for Women, April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, April 25, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-02-10 09:18:26", "2015-02-10 17:18:26", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13882", "3", "2015-02-17 10:09:17", "2015-02-17 18:09:17", "", "Self-Care for Women, May 2, 2015", "", "inherit", "closed", "closed", "", "self-care-for-women-may-2015", "", "", "2015-02-17 10:09:17", "2015-02-17 18:09:17", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/02/Self-Care-for-Women-May-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13883", "3", "2015-02-17 10:13:47", "2015-02-17 18:13:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong><a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-02-17 10:13:47", "2015-02-17 18:13:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13884", "3", "2015-02-17 10:15:27", "2015-02-17 18:15:27", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\nPOSTPONED to Spring 2015 - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\n<a title=\"Mid-Life Directions Intensive Feb/March 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday February 28 and March 14, 2015)\r\n\r\n<a title=\"Family Systems Winter 2015 interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems - 12 Weeks Course (Winter 2015) (indicate interest)</a>\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\n<a title=\"Selfcare for Women, May 2, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, May 2, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-02-17 10:15:27", "2015-02-17 18:15:27", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13885", "3", "2015-02-18 10:41:56", "2015-02-18 18:41:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13448\" img_link_target=\"_self\" img_link=\"http://www.fullhousefarm.com/\" title=\"\r\n<h4>Full House Farm</h4>\r\n\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-02-18 10:41:56", "2015-02-18 18:41:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13886", "3", "2015-02-18 10:43:23", "2015-02-18 18:43:23", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<strong>POSTPONED to Spring 2015</strong> - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a> (Saturday, February 21, 2015)\r\n\r\n<strong>CANCELED:</strong> <a title=\"Mid-Life Directions Intensive Feb/March 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday February 28 and March 14, 2015)\r\n\r\n<a title=\"Family Systems Winter 2015 interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems - 12 Weeks Course (Winter 2015) (indicate interest)</a>\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\n<a title=\"Selfcare for Women, May 2, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, May 2, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-02-18 10:43:23", "2015-02-18 18:43:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13887", "3", "2015-02-18 11:53:49", "2015-02-18 19:53:49", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office/Reception Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The Operations Manager answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Operations Manager:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\nTo contact the Director of Development, click here\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-02-18 11:53:49", "2015-02-18 19:53:49", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13888", "3", "2015-02-18 12:04:43", "2015-02-18 20:04:43", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office/Reception Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The Operations Manager answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Operations Manager:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\nTo contact the Director of Development, click here\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-02-18 12:04:43", "2015-02-18 20:04:43", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13897", "3", "2015-02-18 12:22:47", "2015-02-18 20:22:47", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Reception Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\n<strong>Operation Managers\' Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The Operations Manager, Susanne Reul-Zastre, answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling hours:Â weekdays during office hours, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Director of Development Caroline Donelle</strong>: <a title=\"Contact Form for Director of Development\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/\" target=\"_blank\">Click here</a>.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-02-18 12:22:47", "2015-02-18 20:22:47", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13899", "3", "2015-03-18 11:35:32", "2015-03-18 18:35:32", "", "Marriage Preparation workshop June 6, 2015", "", "inherit", "closed", "closed", "", "marriage-prep-poster-june-6-2015", "", "", "2015-03-18 11:35:32", "2015-03-18 18:35:32", "", "13900", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Marriage-Prep-Poster-June-6-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13900", "3", "2015-03-18 11:39:14", "2015-03-18 18:39:14", "To view the poster, click on the link to the right:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Marriage-Prep-Poster-June-6-2015.pdf\">Marriage Preparation workshop June 6, 2015</a>\r\n\r\n<strong>Payment options</strong>: cheque or credit card (payment is due upon registration).\r\n\r\n<strong>Registration deadline:</strong> Thursday, May 28, 2015\r\n\r\nPreparing for Marriage is one of the most important decisions you\'ll make in life... Why not prepare for it the same way you would for other major life changes?\r\n\r\nRelationships are complicated and even when you\'re hopelessly in love, there are things you may not be watching or aware of that will impact the way you relate to one another - for better or for worse - once you\'re married.\r\n\r\nLearn about communication patterns in your family and how they\'ll affect you in your marriage. Discover how to develop and maintain intimacy in your relationship. Learn how to better manage conflict. Increase the level of understanding you have for your partner and build the marriage you both want.\r\n\r\n<strong>All are welcome!Â </strong>\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Marriage Preparation Workshop Saturday, June 6, 2015", "", "publish", "closed", "closed", "", "marriage-preparation-workshop-saturday-june-6-2015", "", "", "2015-03-18 11:51:12", "2015-03-18 18:51:12", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13900", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13901", "3", "2015-03-18 11:50:40", "2015-03-18 18:50:40", "To view the poster, click the link to the right:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Marriage-Prep-Poster-June-6-2015.pdf\">Marriage Preparation workshop June 6, 2015</a>\n\nPayment options: cheque or credit card (payment is due upon registration).\n\nRegistration deadline: Thursday, May 28, 2015\n\n&nbsp;\n\nPreparing for Marriage is one of the most important decisions you\'ll make in life... Why not prepare for it the same way you would for other major life changes?\n\nRelationships are complicated and even when you\'re hopelessly in love, there are things you may not be watching or aware of that will impact the way you relate to one another - for better or for worse - once you\'re married.\n\nLearn about communication patterns in your family and how they\'ll affect you in your marriage. Discover how to develop and maintain intimacy in your relationship. Learn how to better manage conflict. Increase the level of understanding you have for your partner and build the marriage you both want.\n\n<strong>All are welcome!Â </strong>\n\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Marriage Preparation Workshop Saturday, June 6, 2015", "", "inherit", "closed", "closed", "", "13900-autosave-v1", "", "", "2015-03-18 11:50:40", "2015-03-18 18:50:40", "", "13900", "http://localhost:8888/TestSICPage/wordpress/13900-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13902", "3", "2015-03-18 11:57:44", "2015-03-18 18:57:44", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<strong>POSTPONED to Spring 2015</strong> - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>\r\n\r\n<a title=\"Family Systems Winter 2015 interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems - 12 Weeks Course (Winter 2015) (indicate interest)</a>\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\n<a title=\"Selfcare for Women, May 2, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, May 2, 2015)\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-03-18 11:57:44", "2015-03-18 18:57:44", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13903", "3", "2015-03-23 09:34:40", "2015-03-23 16:34:40", "Board Members 2014-2015:\r\n\r\n<strong>Daphne Taylor (chair)Â </strong>\r\n\r\nI am a senior who has twice benefited from counselling at South Island Centre and was asked to join the Board in 2010. Â My main focus has always been on fundraising. Â  In my working life I was an executive secretary and have been using my organizational skills on behalf of South Island Centre.\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Sandra ScarthÂ </strong>\r\n\r\n<strong>Sally TuckeyÂ </strong>\r\n\r\n<strong>Barbara UnderhillÂ </strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2015-03-23 09:34:40", "2015-03-23 16:34:40", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13905", "3", "2015-03-23 12:49:24", "2015-03-23 19:49:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_column_text]We acknowledge a grant from BC Community Gaming.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"13318\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation Of Vancouver Island</h4>\r\n\" img_link=\"http://catholicfoundationofvancouverisland.com/\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13313\" img_link_target=\"_self\" img_link=\"http://www.victoriafoundation.bc.ca/\" title=\"\r\n<h4>Victoria Foundation</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-23 12:49:24", "2015-03-23 19:49:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13907", "3", "2015-03-23 12:55:35", "2015-03-23 19:55:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13906\" img_link_target=\"_self\" title=\"\r\n<h4>\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]</h4>", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-23 12:55:35", "2015-03-23 19:55:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13909", "3", "2015-03-23 12:58:45", "2015-03-23 19:58:45", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13908\" img_link_target=\"_self\" title=\"\r\n<h4>\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-23 12:58:45", "2015-03-23 19:58:45", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13910", "3", "2015-03-23 13:00:31", "2015-03-23 20:00:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13908\" img_link_target=\"_self\" title=\"\r\n<h4>BC Community Gaming Funds\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-23 13:00:31", "2015-03-23 20:00:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13911", "3", "2015-03-23 13:01:57", "2015-03-23 20:01:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>BC Community Gaming Funds\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-23 13:01:57", "2015-03-23 20:01:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13913", "3", "2015-03-23 13:04:32", "2015-03-23 20:04:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>BC Community Gaming Funds\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-23 13:04:32", "2015-03-23 20:04:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13914", "3", "2015-03-24 09:17:30", "2015-03-24 16:17:30", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of BC</h4>\r\n\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-24 09:17:30", "2015-03-24 16:17:30", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13915", "3", "2015-03-24 11:34:44", "2015-03-24 18:34:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong> <a title=\"Family Systems Theory, Winter 2015 General Interest\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/10/Family-Systems-Theory-General-poster-Winter-2015.pdf\" target=\"_blank\">Family Systems Theory</a> (Winter 2015 - dates tbc; 12 week-course; 3-hour morning or afternoon)</strong>\r\n\r\n<strong>CANCELLED: <a title=\"Mid-Life Intensive Spring 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/mid-life-directions-intensive-saturday-february-28-march-14-2015-facilitator-barb-baillie/\" target=\"_blank\">Mid-Life Directions (2 Saturday Intensive)</a> (Saturday, February 28 and Saturday, March 14, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-24 11:34:44", "2015-03-24 18:34:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13916", "3", "2015-03-24 11:38:18", "2015-03-24 18:38:18", "", "Marriage Prep Poster June 6, 2015", "", "inherit", "closed", "closed", "", "marriage-prep-poster-june-6-2015-2", "", "", "2015-03-24 11:38:18", "2015-03-24 18:38:18", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Marriage-Prep-Poster-June-6-20151.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13918", "3", "2015-03-24 11:42:27", "2015-03-24 18:42:27", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\nPOSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong>\r\n\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015) </strong>\r\n\r\n<strong> Family Systems 5-day Intensive Summer 2015 (to indicate interest, please contact us).</strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-24 11:42:27", "2015-03-24 18:42:27", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13919", "3", "2015-03-24 11:46:31", "2015-03-24 18:46:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> Family Systems 5-day Intensive - Summer 2015 (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-24 11:46:31", "2015-03-24 18:46:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13920", "3", "2015-03-24 11:50:54", "2015-03-24 18:50:54", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\n<a title=\"Selfcare for Women, May 2, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, May 2, 2015)\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<strong>Family Systems 5-day Intensive - Summer 2015</strong>: to indicate interest, please contact us.\r\n\r\n<strong>POSTPONED to Spring 2015</strong> - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-03-24 11:50:54", "2015-03-24 18:50:54", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13921", "3", "2015-03-24 11:55:11", "2015-03-24 18:55:11", "", "Family Systems Theory General Poster 5-day Summer Intensive 2015", "", "inherit", "closed", "closed", "", "family-systems-theory-general-poster-5-day-summer-intensive-2015", "", "", "2015-03-24 11:55:11", "2015-03-24 18:55:11", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Family-Systems-Theory-General-Poster-5-day-summer-intensive-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13922", "3", "2015-03-24 11:57:02", "2015-03-24 18:57:02", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day intensive summer 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-admin/post.php?post=13921&amp;action=edit&amp;message=1\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-24 11:57:02", "2015-03-24 18:57:02", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13923", "3", "2015-03-24 11:59:59", "2015-03-24 18:59:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> Family Systems 5-day Intensive - Summer 2015 (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-24 11:59:59", "2015-03-24 18:59:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13924", "3", "2015-03-24 12:01:20", "2015-03-24 19:01:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-24 12:01:20", "2015-03-24 19:01:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13925", "3", "2015-03-24 12:03:14", "2015-03-24 19:03:14", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\n<a title=\"Selfcare for Women, May 2, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, May 2, 2015)\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<a title=\"General Poster 5-day intensive summer 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a>: to indicate interest, please contact us.\r\n\r\n<strong>POSTPONED to Spring 2015</strong> - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-03-24 12:03:14", "2015-03-24 19:03:14", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13927", "3", "2015-03-26 12:08:49", "2015-03-26 19:08:49", "Board Members 2014-2015:\r\n\r\n<strong>Daphne Taylor (chair)Â </strong>\r\n\r\n<strong>Jim Gibson (treasurer)</strong>\r\n\r\n<strong>Sandra ScarthÂ </strong>\r\n\r\n<strong>Sally TuckeyÂ </strong>\r\n\r\n<strong>Barbara UnderhillÂ </strong>\r\n\r\n<strong>Ex-officio: Bill Cole (Director of Services)Â </strong>", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2015-03-26 12:08:49", "2015-03-26 19:08:49", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13928", "3", "2015-03-26 12:10:44", "2015-03-26 19:10:44", "<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Services and Our Christian Roots</span></span></h3>\r\nSouth Island Centre for Counselling and Training has been offering <strong>Pastoral Care &amp; Counselling Services</strong> in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre <strong>supports clergy and persons of faith</strong> as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or christian context to their counselling sessions.\r\n<h2></h2>\r\n<h3><span style=\"text-decoration: underline;\">Professional<span style=\"color: #000000; text-decoration: underline;\"> Consultations for Clergy</span></span></h3>\r\n<strong>Pastoral care</strong> is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a <strong>consultation service to pastors and other professionals</strong> through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3><span style=\"color: #0000ff;\"><span style=\"color: #333333; font-size: 14px; line-height: 1.5em;\"><strong>Please contact ourÂ Director of Services, Bill Cole,Â by e-mail by clickingÂ </strong><a title=\"Contact Form: General Submission\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/contact-form-general-submission/\" target=\"_blank\">here</a>Â or call him at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â (250) 472-2851, extension 102.\r\n</span></span></h3>", "Counselling Services for Clergy", "", "inherit", "closed", "closed", "", "9-revision-v1", "", "", "2015-03-26 12:10:44", "2015-03-26 19:10:44", "", "9", "http://localhost:8888/TestSICPage/wordpress/9-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13931", "3", "2015-03-26 12:24:41", "2015-03-26 19:24:41", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call our Operations Manager at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 101</strong></span>.</span> <strong>Our Operations ManagerÂ answers the phone directly on Monday-Thursdays from 9am-noon.</strong> Please let us know your name, a contact phone number, and the reason you called.Â If reception is unavailable at the time of your call, please leave a message on our confidential voicemail box.\r\n\r\nOur <strong>general office hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\nOurÂ <strong>counselling hours</strong> are Monday-Friday from 9:00am-5:00pm, on evenings and during weekends (by appointment only; please inquire).\r\n\r\nFor initial appointments, you mayÂ <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â and fill out a General Inquiry contact form. Â We will try to contact by phone you within 2-3 business days.</span></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 8 for the staff directory</strong></span> at any time during the call, and then the number of the counsellor\'s confidential voice mailbox. You may also <strong>press extension 101 for the front desk,</strong> and the Operations Manager will <strong>forward your call directly between 9:00am-1:00 pm Mondays through Thursdays</strong>.\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2015-03-26 12:24:41", "2015-03-26 19:24:41", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13932", "3", "2015-03-26 12:27:25", "2015-03-26 19:27:25", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #000000;\"><strong>Samaritan\'s Fund</strong></span>. Â If this is your first time making a donation to our Samaritan Fund or whether you already give regularly to this important cause, we have three easy donation options available.\r\n\r\nDonations can be made<span style=\"color: #000000;\">Â </span>one-time, monthly, quarterly, annually etc.:\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1 (preferred)</strong>:</span> please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2015-03-26 12:27:25", "2015-03-26 19:27:25", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13933", "3", "2015-03-26 12:34:16", "2015-03-26 19:34:16", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<h3></h3>\r\n<h3>The Province of BC</h3>\r\n&nbsp;\r\n\r\n<a title=\"Catholic Foundation of Vancouver Island\" href=\"http://catholicfoundationofvancouverisland.com/\" target=\"_blank\"><img class=\"alignnone size-medium wp-image-435\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/Catholic-Foundation-300x37.jpg\" alt=\"Catholic Foundation\" width=\"300\" height=\"37\" /></a>\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to Our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2015-03-26 12:34:16", "2015-03-26 19:34:16", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13934", "3", "2015-03-26 12:36:21", "2015-03-26 19:36:21", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work.\r\n\r\nYou may help us with anÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\"><strong>in-kind donation</strong></span>Â </span>when you volunteer your time and/or talent\r\n<ul>\r\n	<li>at South Island Centre <strong>events</strong>,</li>\r\n	<li>at the South Island Centre <strong>office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong>board member</strong>.</li>\r\n</ul>\r\nPlease contact us at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <span style=\"color: #000000;\"><a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us, if you are able to donate your time and talent to a worthwhile cause!\r\n\r\nThank you for your generosity!\r\n\r\n&nbsp;", "Volunteer Opportunities", "", "inherit", "closed", "closed", "", "174-revision-v1", "", "", "2015-03-26 12:36:21", "2015-03-26 19:36:21", "", "174", "http://localhost:8888/TestSICPage/wordpress/174-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13935", "3", "2015-03-30 12:49:32", "2015-03-30 19:49:32", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\nAmber Eves\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Supervising Counsellor, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2015-03-30 12:49:32", "2015-03-30 19:49:32", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13936", "3", "2015-03-31 10:23:29", "2015-03-31 17:23:29", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way</h4>\r\n\" img_link=\"http://uwgv.ca/\" alignment=\"center\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funding Program</h4>\r\n\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-31 10:23:29", "2015-03-31 17:23:29", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13937", "3", "2015-03-31 10:24:35", "2015-03-31 17:24:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funding Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-31 10:24:35", "2015-03-31 17:24:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13938", "3", "2015-03-31 10:25:23", "2015-03-31 17:25:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-03-31 10:25:23", "2015-03-31 17:25:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13939", "3", "2015-03-31 10:26:15", "2015-03-31 17:26:15", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<h3></h3>\r\n<h3>The Province of BC</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_428\" align=\"alignnone\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"size-full wp-image-428\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignnone\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"size-medium wp-image-433\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to Our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2015-03-31 10:26:15", "2015-03-31 17:26:15", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13940", "3", "2015-04-01 11:06:02", "2015-04-01 18:06:02", "Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!", "New Logo 40 Years 1975-2015!", "Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!", "inherit", "closed", "closed", "", "blackpms375pms575", "", "", "2015-04-01 11:06:02", "2015-04-01 18:06:02", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/04/SICLogo-2015-revised.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("13941", "3", "2015-04-01 11:10:46", "2015-04-01 18:10:46", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_single_image image=\"13940\" img_link_target=\"_self\" title=\"\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!</h4>\r\n\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-01 11:10:46", "2015-04-01 18:10:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13942", "3", "2015-04-01 11:13:56", "2015-04-01 18:13:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training!</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13940\" img_link_target=\"_self\" title=\"\r\n<h4>Celebrating 40 Years Serving the Greater Victoria Community (1975-2015!)</h4>\r\n\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_single_image image=\"13940\" img_link_target=\"_self\" title=\"\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!</h4>\r\n\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-01 11:13:56", "2015-04-01 18:13:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13943", "3", "2015-04-01 11:20:24", "2015-04-01 18:20:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>1975-2015: 40 years of Serving the Greater Victoria Community!</h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_single_image image=\"13940\" img_link_target=\"_self\" title=\"\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!</h4>\r\n\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-01 11:20:24", "2015-04-01 18:20:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13944", "3", "2015-04-01 11:20:42", "2015-04-01 18:20:42", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>1975-2015: 40 years of Serving the Greater Victoria Community!</h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_single_image image=\"13940\" img_link_target=\"_self\" title=\"\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!</h4>\r\n\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-01 11:20:42", "2015-04-01 18:20:42", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13947", "3", "2015-04-07 10:01:39", "2015-04-07 17:01:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>1975-2015: 40 years of Serving the Greater Victoria Community!</h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_single_image image=\"13940\" img_link_target=\"_self\" title=\"\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!</h4>\r\n\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-07 10:01:39", "2015-04-07 17:01:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13949", "2", "2015-04-08 11:50:17", "2015-04-08 18:50:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-autosave-v1", "", "", "2015-04-08 11:50:17", "2015-04-08 18:50:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13950", "2", "2015-04-08 11:48:01", "2015-04-08 18:48:01", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_single_image image=\"13940\" img_link_target=\"_self\" title=\"\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community (1975-2015)!</h4>\r\n\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-08 11:48:01", "2015-04-08 18:48:01", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13951", "2", "2015-04-08 12:04:28", "2015-04-08 19:04:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13041\" img_link_target=\"_self\" img_size=\"255x68\" img_link=\"https://www.canadahelps.org/dn/12787\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-08 12:04:28", "2015-04-08 19:04:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13952", "3", "2015-04-13 09:42:16", "2015-04-13 16:42:16", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\"><img class=\"alignleft wp-image-14184 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\" alt=\"Picture Amber Eves Nov 2015\" width=\"155\" height=\"157\" /></a>\r\n\r\n<strong>Amber Eves MEd, RCC</strong>, <strong>Director of Services</strong>, hasÂ extensiveÂ experience as an educator and school and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.", "Amber Eves", "", "publish", "closed", "closed", "", "amber-eves", "", "", "2017-07-28 17:23:46", "2017-07-29 00:23:46", "", "217", "http://localhost:8888/TestSICPage/wordpress/?page_id=13952", "4", "page", "", "0");
INSERT INTO `wp_posts` VALUES("13953", "3", "2015-04-13 09:42:16", "2015-04-13 16:42:16", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/tree-with-rainbow.png\"><img class=\"alignnone size-medium wp-image-13180\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/tree-with-rainbow-300x197.png\" alt=\"tree with rainbow\" width=\"300\" height=\"197\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor.\r\n\r\nShe began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland.\r\n\r\nMost recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider.\r\n\r\nShe received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse.\r\n\r\nShe is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2015-04-13 09:42:16", "2015-04-13 16:42:16", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13955", "3", "2015-04-13 09:49:03", "2015-04-13 16:49:03", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Selfcare for Women, May 2, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, May 2, 2015)\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<a title=\"General Poster 5-day intensive summer 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a>: to indicate interest, please contact us.\r\n\r\n<strong>POSTPONED to Spring 2015</strong> - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-04-13 09:49:03", "2015-04-13 16:49:03", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13956", "3", "2015-04-13 09:51:37", "2015-04-13 16:51:37", "<h3><span style=\"color: #000000;\"><a title=\"Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\">Bill Cole (RCC, MA) - Â Director of Services</span></a></span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\nMargaret is married with 2 adult children, 4 adult stepchildren and 8 grandchildren.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MTS, MAPPC, BCATR)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h3>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2015-04-13 09:51:37", "2015-04-13 16:51:37", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13958", "3", "2015-04-16 10:34:33", "2015-04-16 17:34:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-16 10:34:33", "2015-04-16 17:34:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13959", "3", "2015-04-16 10:35:27", "2015-04-16 17:35:27", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>We are open:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-16 10:35:27", "2015-04-16 17:35:27", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13960", "3", "2015-04-20 10:41:21", "2015-04-20 17:41:21", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Office Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm (Closed Fridays).\r\nCounselling Hours (Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available by request): by appointment only.\r\nWe are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-20 10:41:21", "2015-04-20 17:41:21", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13961", "3", "2015-04-20 15:49:49", "2015-04-20 22:49:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on Fridays.</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<strong>By appointment only.</strong> Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available by request.\r\nWe are closed on statutory holidays.\r\n\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-20 15:49:49", "2015-04-20 22:49:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13962", "3", "2015-04-20 15:54:15", "2015-04-20 22:54:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on Fridays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available by request. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-20 15:54:15", "2015-04-20 22:54:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13963", "3", "2015-04-20 15:56:45", "2015-04-20 22:56:45", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, facilitating personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available by request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-20 15:56:45", "2015-04-20 22:56:45", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13965", "3", "2015-04-21 08:27:00", "2015-04-21 15:27:00", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Office/Reception Hours:</strong></h3>\r\n<strong>9:00 am - 1:00 pm on Mondays to Thursday</strong>.\r\n\r\n<strong>Operation Managers\' Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\n<strong><em>The Operations Manager, Susanne Reul-Zastre, answers the phone directly on Monday-Thursday from 9:00Â am-Noon.</em></strong>Â If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h4>Counselling Hours:Â <strong>by appointment only;</strong> Monday-Friday, 9:00am-5:00pm, and some evenings and weekends (please inquire).</h4>\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Director of Development Caroline Donelle</strong>: <a title=\"Contact Form for Director of Development\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/\" target=\"_blank\">Click here</a>.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-04-21 08:27:00", "2015-04-21 15:27:00", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13966", "3", "2015-04-22 19:39:12", "2015-04-23 02:39:12", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<strong><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\">Amber Eve</a>s:Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Supervising Counsellor, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2015-04-22 19:39:12", "2015-04-23 02:39:12", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13967", "3", "2015-04-22 19:43:13", "2015-04-23 02:43:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n\r\n<strong> POSTPONED to latter part of August <a title=\"Ebb and Flow, April 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)</strong>\r\n\r\n<strong> POSTPONED to Spring 2015 - more information soon! <strong><a title=\"Caregiver Burnout (Family Caregivers)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>(Saturday, February 21, 2015)</strong></strong>\r\n<h4>Up-coming Event:</h4>\r\nOur Annual General Meeting will take place on <strong>Wednesday, May 6, 2015 at 7:00pm</strong> at the Lounge in the St Luke Cedar Hill Anglican Church Hall (corner of Synod Rd/Cedar Hill Cross Rd). Parking is free.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-22 19:43:13", "2015-04-23 02:43:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13969", "3", "2015-04-27 12:30:32", "2015-04-27 19:30:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>POSTPONED <a title=\"Selfcare for Women, May 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Selfcare for Women</a> (Saturday, May 2, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong> 2015 Annual General Meeting</strong>: our AGM takes place on <strong>Wednesday, May 6 at 7:00pm</strong> at the St Luke\'s Lounge. Guest speaker: Caroline Donelle, Director of Development at SICCT. A time of fellowship will follow the meeting. Free parking.\r\n\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-27 12:30:32", "2015-04-27 19:30:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13970", "3", "2015-04-27 12:31:54", "2015-04-27 19:31:54", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<a title=\"General Poster 5-day intensive summer 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a>: to indicate interest, please contact us.\r\n\r\n<strong>POSTPONED to Spring 2015</strong> - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>\r\n\r\nPOSTPONED <a title=\"Selfcare for Women, May 2, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, May 2, 2015)\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-04-27 12:31:54", "2015-04-27 19:31:54", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13972", "3", "2015-04-29 12:02:09", "2015-04-29 19:02:09", "", "Caregiver Burnout (Family) Poster June 13, 2015", "", "inherit", "closed", "closed", "", "caregiver-burnout-family-poster-june-13-2015", "", "", "2015-04-29 12:02:09", "2015-04-29 19:02:09", "", "13973", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/04/Caregiver-Burnout-Family-Poster-June-13-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13973", "3", "2015-04-29 12:07:25", "2015-04-29 19:07:25", "To view the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/04/Caregiver-Burnout-Family-Poster-June-13-2015.pdf\">Caregiver Burnout (Family) Poster June 13, 2015</a>\r\n\r\nFacilitator: Margaret Anderson (Member of Canadian Hospice and Palliative Care Association)\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Caregiver Burnout: Caring for the Family Caregiver, Saturday, June 13, 2015", "", "publish", "closed", "closed", "", "caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015", "", "", "2015-04-29 12:07:25", "2015-04-29 19:07:25", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13973", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13974", "3", "2015-04-29 12:10:57", "2015-04-29 19:10:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015). </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong> 2015 Annual General Meeting</strong>: our AGM takes place on <strong>Wednesday, May 6 at 7:00pm</strong> at the St Luke\'s Lounge. Guest speaker: Caroline Donelle, Director of Development at SICCT. A time of fellowship will follow the meeting. Free parking.\r\n\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-04-29 12:10:57", "2015-04-29 19:10:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13975", "3", "2015-04-29 12:12:54", "2015-04-29 19:12:54", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<a title=\"Caregiver Burnout: Family Caregiver, June 13, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015)\r\n\r\n<a title=\"General Poster 5-day intensive summer 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a>: to indicate interest, please contact us.\r\n\r\n<strong>POSTPONED to Spring 2015</strong> - <a title=\"Caregiver Burnout (Family Caregiver)\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-family-caregivers-saturday-february-14-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Family Caregivers)</a>\r\n\r\nPOSTPONED <a title=\"Selfcare for Women, May 2, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/\" target=\"_blank\">Boundaries, Balance and Burnout: Self-care for Women</a> (Saturday, May 2, 2015)\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (2-day Intensive: Thursday, April 16 and Friday, April 17, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-04-29 12:12:54", "2015-04-29 19:12:54", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13976", "3", "2015-05-04 11:54:25", "2015-05-04 18:54:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong> <a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015). </strong>\r\n\r\n<strong> <a title=\"General Poster 5-day summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13921\" target=\"_blank\">Family Systems 5-day Intensive - Summer 2015</a> (dates and time tba; to indicate interest, please contact us).</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong> 2015 Annual General Meeting</strong>: our AGM takes place on <strong>Wednesday, May 6 at 7:00pm</strong> at the St Luke\'s Lounge. Guest speaker: Caroline Donelle, Director of Development at SICCT. A time of fellowship will follow the meeting. Free parking.\r\n\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-04 11:54:25", "2015-05-04 18:54:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13978", "3", "2015-05-06 10:10:54", "2015-05-06 17:10:54", "", "Family Systems Intensive July 27-31, 2015", "", "inherit", "closed", "closed", "", "intensive-5-day-in-summer-july-27-31-2015", "", "", "2015-05-06 10:10:54", "2015-05-06 17:10:54", "", "13979", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/05/Intensive-5-day-in-Summer-July-27-31-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13979", "3", "2015-05-06 10:16:47", "2015-05-06 17:16:47", "To view the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/05/Intensive-5-day-in-Summer-July-27-31-2015.pdf\">Family Systems Intensive July 27-31, 2015</a>\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Family Systems Theory Intensive July 27-31, 2015 (Bill Cole, facilitator)", "", "publish", "closed", "closed", "", "family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator", "", "", "2015-05-06 10:16:47", "2015-05-06 17:16:47", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13979", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13980", "3", "2015-05-06 10:25:51", "2015-05-06 17:25:51", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong> 2015 Annual General Meeting</strong>: our AGM takes place on <strong>Wednesday, May 6 at 7:00pm</strong> at the St Luke\'s Lounge. Guest speaker: Caroline Donelle, Director of Development at SICCT. A time of fellowship will follow the meeting. Free parking.\r\n\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-06 10:25:51", "2015-05-06 17:25:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13981", "3", "2015-05-06 10:28:13", "2015-05-06 17:28:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).\r\n\r\n<a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015)\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong> 2015 Annual General Meeting</strong>: our AGM takes place on <strong>Wednesday, May 6 at 7:00pm</strong> at the St Luke\'s Lounge. Guest speaker: Caroline Donelle, Director of Development at SICCT. A time of fellowship will follow the meeting. Free parking.\r\n\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-06 10:28:13", "2015-05-06 17:28:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13982", "3", "2015-05-06 10:30:56", "2015-05-06 17:30:56", "[vc_row][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<a title=\"Caregiver Burnout: Family Caregiver, June 13, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015)\r\n\r\n<a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive</a> (Monday-Friday, July 27-31, 2015)\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-05-06 10:30:56", "2015-05-06 17:30:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13983", "3", "2015-05-06 12:49:27", "2015-05-06 19:49:27", "", "Strengthening Wellbeing poster May-June 2015", "", "inherit", "closed", "closed", "", "strengthening-wellbeing-poster-may-june-2015", "", "", "2015-05-06 12:49:27", "2015-05-06 19:49:27", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/05/Strengthening-Wellbeing-poster-May-June-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13985", "3", "2015-05-06 12:55:37", "2015-05-06 19:55:37", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Strengthening Well being May-June 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-mondays-may-25-june-1-8-2015-facilitator-rosemary-merritt/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Mondays, May 25, June 1 and 8, 2015) </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).\r\n\r\n<a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015)\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong> 2015 Annual General Meeting</strong>: our AGM takes place on <strong>Wednesday, May 6 at 7:00pm</strong> at the St Luke\'s Lounge. Guest speaker: Caroline Donelle, Director of Development at SICCT. A time of fellowship will follow the meeting. Free parking.\r\n\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-06 12:55:37", "2015-05-06 19:55:37", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13986", "3", "2015-05-06 12:58:40", "2015-05-06 19:58:40", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Strengthening Wellbeing (May-June 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-mondays-may-25-june-1-8-2015-facilitator-rosemary-merritt/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Mondays, May 25, June 1 &amp; 8, 2015)\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<a title=\"Caregiver Burnout: Family Caregiver, June 13, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015)\r\n\r\n<a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive</a> (Monday-Friday, July 27-31, 2015)\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-05-06 12:58:40", "2015-05-06 19:58:40", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13987", "3", "2015-05-08 21:42:28", "2015-05-09 04:42:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"300x201\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Strengthening Well being May-June 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-mondays-may-25-june-1-8-2015-facilitator-rosemary-merritt/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Mondays, May 25, June 1 and 8, 2015). </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-08 21:42:28", "2015-05-09 04:42:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13988", "3", "2015-05-11 11:27:32", "2015-05-11 18:27:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\" img_size=\"200x166\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Strengthening Well being May-June 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-mondays-may-25-june-1-8-2015-facilitator-rosemary-merritt/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Mondays, May 25, June 1 and 8, 2015). </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-11 11:27:32", "2015-05-11 18:27:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13989", "3", "2015-05-11 11:28:43", "2015-05-11 18:28:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Strengthening Well being May-June 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-mondays-may-25-june-1-8-2015-facilitator-rosemary-merritt/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Mondays, May 25, June 1 and 8, 2015). </strong>\r\n\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-11 11:28:43", "2015-05-11 18:28:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13992", "3", "2015-05-25 15:45:44", "2015-05-25 22:45:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-25 15:45:44", "2015-05-25 22:45:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13993", "3", "2015-05-25 15:46:59", "2015-05-25 22:46:59", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<a title=\"Caregiver Burnout: Family Caregiver, June 13, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015)\r\n\r\n<a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive</a> (Monday-Friday, July 27-31, 2015)\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-05-25 15:46:59", "2015-05-25 22:46:59", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13994", "3", "2015-05-28 10:34:05", "2015-05-28 17:34:05", "", "Self-Injuring Youth: Understanding and Responding poster June 2015", "", "inherit", "closed", "closed", "", "self-injury-poster-june-2015", "", "", "2015-05-28 10:34:05", "2015-05-28 17:34:05", "", "13995", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/05/Self-Injury-poster-June-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13995", "3", "2015-05-28 10:40:59", "2015-05-28 17:40:59", "Poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/05/Self-Injury-poster-June-20151.pdf\">Self-injuring Youth poster June 2015</a>\r\n\r\nA workshop organized for parents, educators, community service providers and caregivers\r\n\r\nFacilitator: Dave Prette (RCC)\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Self-Injuring Youth: Understanding and Responding (Saturday, June 20, 2015)", "", "publish", "closed", "closed", "", "self-injuring-youth-understanding-and-responding-saturday-june-20-2015", "", "", "2015-05-28 10:42:36", "2015-05-28 17:42:36", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=13995", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("13996", "3", "2015-05-28 10:41:19", "2015-05-28 17:41:19", "", "Self-injuring Youth poster June 2015", "", "inherit", "closed", "closed", "", "self-injury-poster-june-2015-2", "", "", "2015-05-28 10:41:19", "2015-05-28 17:41:19", "", "13995", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/05/Self-Injury-poster-June-20151.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("13997", "3", "2015-05-28 10:48:12", "2015-05-28 17:48:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Marriage Preparation workshop\" href=\"http://http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available. </strong>\r\n\r\n<strong><a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).</strong>\r\n\r\n<strong><a title=\"Self-Injuring Youth (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-05-28 10:48:12", "2015-05-28 17:48:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13998", "3", "2015-05-28 10:51:11", "2015-05-28 17:51:11", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop, June 6, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/marriage-preparation-workshop-saturday-june-6-2015/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, June 6, 2015). Various options available.\r\n\r\n<a title=\"Caregiver Burnout: Family Caregiver, June 13, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015)\r\n\r\n<a title=\"Self-injuring Youth (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)\r\n\r\n<a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive</a> (Monday-Friday, July 27-31, 2015)\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-05-28 10:51:11", "2015-05-28 17:51:11", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("13999", "3", "2015-06-01 13:01:56", "2015-06-01 20:01:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Caregiver Burnout: Family Caregivers\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015).</strong>\r\n\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-01 13:01:56", "2015-06-01 20:01:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14000", "3", "2015-06-01 13:02:49", "2015-06-01 20:02:49", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Caregiver Burnout: Family Caregiver, June 13, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, June 13, 2015)\r\n\r\n<a title=\"Self-injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)\r\n\r\n<a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive</a> (Monday-Friday, July 27-31, 2015)\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-06-01 13:02:49", "2015-06-01 20:02:49", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14002", "3", "2015-06-03 12:57:30", "2015-06-03 19:57:30", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $110 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2015-06-03 12:57:30", "2015-06-03 19:57:30", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14003", "3", "2015-06-03 12:58:12", "2015-06-03 19:58:12", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $120 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Annual Combined Gross Household Income Fee (0.1%) - see examples below:</span></strong></span>\r\n\r\n$1000 - $50,000: we will discuss with you what you can afford\r\n\r\n$51,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2015-06-03 12:58:12", "2015-06-03 19:58:12", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14005", "3", "2015-06-04 10:00:16", "2015-06-04 17:00:16", "[caption id=\"attachment_14007\" align=\"alignright\" width=\"240\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson.jpg\"><img class=\"wp-image-14007 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson-240x300.jpg\" alt=\"Daryl Thomson (BA, MA, RCC)\" width=\"240\" height=\"300\" /></a> Daryl Thomson (BA, MA, RCC)[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Daryl Thomson</strong> received his Masters of Counselling from <em>Providence Theological Seminary</em> after completing an eight-month internship with <em>Camosun College</em>â€™s student counselling department.Â  Daryl works from an integrated theoretical approach meaning that he draws from a variety of clinically proven treatment approaches in order to best meet the specific needs of his clients.\r\n\r\nDaryl enjoys supporting clients who are experiencing a variety of situational or chronic challenges including:\r\nâ€¢ Depression\r\nâ€¢ Anxiety\r\nâ€¢ Relationship challenges including self esteem, interpersonal dynamics, family of origin, or personal boundary issues\r\nâ€¢ Grief and loss\r\n\r\nDaryl is also able to support clients through various life transitions including â€“ but not limited to - career exploration, mid-life transitions, and retirement.\r\n\r\nDaryl received his Registered Clinical Counsellor (RCC) designation through the British Columbia Association of Clinical Counsellors in May, 2015.Â  Prior to entering the counselling profession, Daryl enjoyed a highly successful career working in human resources-related roles within various public sector organizations.\r\n\r\nHe is currently accepting new clients.", "Daryl Thomson", "", "publish", "closed", "closed", "", "daryl-thomson", "", "", "2015-06-08 09:25:40", "2015-06-08 16:25:40", "", "217", "http://localhost:8888/TestSICPage/wordpress/?page_id=14005", "42", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14006", "3", "2015-06-04 10:00:16", "2015-06-04 17:00:16", "Daryl Thomson received his Masters of Counselling from Providence Theological Seminary after completing an eight-month internship with Camosun Collegeâ€™s student counselling department.Â  Daryl works from an integrated theoretical approach meaning that he draws from a variety of clinically proven treatment approaches in order to best meet the specific needs of his clients.\r\nDaryl enjoys supporting clients who are experiencing a variety of situational or chronic challenges including:\r\nâ€¢ Depression\r\nâ€¢ Anxiety\r\nâ€¢ Relationship challenges including self esteem, interpersonal dynamics, family of origin, or personal boundary issues\r\nâ€¢ Grief and loss\r\nâ€¢ Sexual compulsions and addictions; and\r\nâ€¢ Marital or couple relationship issues.\r\n\r\nDaryl is also able to support clients through various life transitions including â€“ but not limited to - career exploration, mid-life transitions, and retirement.Â  He has a growing interest in working with individuals who self-identifying as <a href=\"http://hsperson.com/test/highly-sensitive-test/\">Highly Sensitive.</a>\r\n\r\nDaryl received his Registered Clinical Counsellor (RCC) designation through the British Columbia Association of Clinical Counsellors in May, 2015.Â  Prior to entering the counselling profession, Daryl enjoyed a highly successful career working in human resources-related roles within various public sector organizations.\r\n\r\nHe is currently accepting new clients.", "Daryl Thomson", "", "inherit", "closed", "closed", "", "14005-revision-v1", "", "", "2015-06-04 10:00:16", "2015-06-04 17:00:16", "", "14005", "http://localhost:8888/TestSICPage/wordpress/14005-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14008", "3", "2015-06-04 10:02:21", "2015-06-04 17:02:21", "[caption id=\"attachment_14007\" align=\"alignright\" width=\"240\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson.jpg\"><img class=\"wp-image-14007 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson-240x300.jpg\" alt=\"Daryl Thomson (BA, MA, RCC)\" width=\"240\" height=\"300\" /></a> Daryl Thomson (BA, MA, RCC)[/caption]\n\n&nbsp;\n\nDaryl Thomson received his Masters of Counselling from Providence Theological Seminary after completing an eight-month internship with Camosun Collegeâ€™s student counselling department.Â  Daryl works from an integrated theoretical approach meaning that he draws from a variety of clinically proven treatment approaches in order to best meet the specific needs of his clients.\nDaryl enjoys supporting clients who are experiencing a variety of situational or chronic challenges including:\nâ€¢ Depression\nâ€¢ Anxiety\nâ€¢ Relationship challenges including self esteem, interpersonal dynamics, family of origin, or personal boundary issues\nâ€¢ Grief and loss\nâ€¢ Sexual compulsions and addictions; and\nâ€¢ Marital or couple relationship issues.\n\nDaryl is also able to support clients through various life transitions including â€“ but not limited to - career exploration, mid-life transitions, and retirement.Â  He has a growing interest in working with individuals who self-identifying as <a href=\"http://hsperson.com/test/highly-sensitive-test/\">Highly Sensitive.</a>\n\nDaryl received his Registered Clinical Counsellor (RCC) designation through the British Columbia Association of Clinical Counsellors in May, 2015.Â  Prior to entering the counselling profession, Daryl enjoyed a highly successful career working in human resources-related roles within various public sector organizations.\n\nHe is currently accepting new clients.", "Daryl Thomson", "", "inherit", "closed", "closed", "", "14005-autosave-v1", "", "", "2015-06-04 10:02:21", "2015-06-04 17:02:21", "", "14005", "http://localhost:8888/TestSICPage/wordpress/14005-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14009", "3", "2015-06-04 10:03:32", "2015-06-04 17:03:32", "[caption id=\"attachment_14007\" align=\"alignright\" width=\"240\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson.jpg\"><img class=\"wp-image-14007 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson-240x300.jpg\" alt=\"Daryl Thomson (BA, MA, RCC)\" width=\"240\" height=\"300\" /></a> Daryl Thomson (BA, MA, RCC)[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Daryl Thomson</strong> received his Masters of Counselling from <em>Providence Theological Seminary</em> after completing an eight-month internship with <em>Camosun College</em>â€™s student counselling department.Â  Daryl works from an integrated theoretical approach meaning that he draws from a variety of clinically proven treatment approaches in order to best meet the specific needs of his clients.\r\n\r\nDaryl enjoys supporting clients who are experiencing a variety of situational or chronic challenges including:\r\nâ€¢ Depression\r\nâ€¢ Anxiety\r\nâ€¢ Relationship challenges including self esteem, interpersonal dynamics, family of origin, or personal boundary issues\r\nâ€¢ Grief and loss\r\nâ€¢ Sexual compulsions and addictions; and\r\nâ€¢ Marital or couple relationship issues.\r\n\r\nDaryl is also able to support clients through various life transitions including â€“ but not limited to - career exploration, mid-life transitions, and retirement.Â  He has a growing interest in working with individuals who self-identifying as <a title=\"Highly Sensitive Test\" href=\"http://hsperson.com/test/highly-sensitive-test/\" target=\"_blank\">Highly Sensitive.</a>\r\n\r\nDaryl received his Registered Clinical Counsellor (RCC) designation through the British Columbia Association of Clinical Counsellors in May, 2015.Â  Prior to entering the counselling profession, Daryl enjoyed a highly successful career working in human resources-related roles within various public sector organizations.\r\n\r\nHe is currently accepting new clients.", "Daryl Thomson", "", "inherit", "closed", "closed", "", "14005-revision-v1", "", "", "2015-06-04 10:03:32", "2015-06-04 17:03:32", "", "14005", "http://localhost:8888/TestSICPage/wordpress/14005-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14011", "3", "2015-06-04 10:06:45", "2015-06-04 17:06:45", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<strong><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\">Amber Eve</a>s:Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Supervising Counsellor, Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\nDaryl Thomson:Â Depression,Â Anxiety,Â Relationship challenges including self esteem, interpersonal dynamics, family of origin, or personal boundary issues,Â Grief and loss,Â Sexual compulsions and addictions; andÂ Marital or couple relationship issues.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2015-06-04 10:06:45", "2015-06-04 17:06:45", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14012", "3", "2015-06-04 10:08:57", "2015-06-04 17:08:57", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Supervising Counsellor, Family Systems, Couple and Family Counselling\r\n\r\n<strong><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\">Amber Eve</a>s:Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n<strong><a title=\"Daryl Thomson, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/daryl-thomson/\" target=\"_blank\">Daryl Thomson:</a></strong>Â Depression,Â Anxiety,Â Relationship challenges including self esteem, interpersonal dynamics, family of origin or personal boundary issues,Â Grief and loss,Â Sexual compulsions and addictions; andÂ Marital or couple relationship issues.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2015-06-04 10:08:57", "2015-06-04 17:08:57", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14013", "3", "2015-06-04 10:09:23", "2015-06-04 17:09:23", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Bill Cole</strong></span></a></span>: Supervising Counsellor, Family Systems, Couple and Family Counselling\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s:</span>Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n<span style=\"color: #000000;\"><strong><a title=\"Daryl Thomson, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/daryl-thomson/\" target=\"_blank\"><span style=\"color: #000000;\">Daryl Thomson:</span></a></strong></span>Â Depression,Â Anxiety,Â Relationship challenges including self esteem, interpersonal dynamics, family of origin or personal boundary issues,Â Grief and loss,Â Sexual compulsions and addictions; andÂ Marital or couple relationship issues.\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2015-06-04 10:09:23", "2015-06-04 17:09:23", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14014", "3", "2015-06-04 10:15:08", "2015-06-04 17:15:08", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignright wp-image-694 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" alt=\"bill_cole_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Counselling SupervisorÂ Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training. He\'s married with 2 adult children, and 2 grandchildren.\r\n\r\n&nbsp;", "Bill Cole - Counselling Supervisor", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2015-06-04 10:15:08", "2015-06-04 17:15:08", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14015", "3", "2015-06-04 12:32:34", "2015-06-04 19:32:34", "[caption id=\"attachment_14007\" align=\"alignright\" width=\"240\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson.jpg\"><img class=\"wp-image-14007 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson-240x300.jpg\" alt=\"Daryl Thomson (BA, MA, RCC)\" width=\"240\" height=\"300\" /></a> Daryl Thomson (BA, MA, RCC)[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Daryl Thomson</strong> received his Masters of Counselling from <em>Providence Theological Seminary</em> after completing an eight-month internship with <em>Camosun College</em>â€™s student counselling department.Â  Daryl works from an integrated theoretical approach meaning that he draws from a variety of clinically proven treatment approaches in order to best meet the specific needs of his clients.\r\n\r\nDaryl enjoys supporting clients who are experiencing a variety of situational or chronic challenges including:\r\nâ€¢ Depression\r\nâ€¢ Anxiety\r\nâ€¢ Relationship challenges including self esteem, interpersonal dynamics, family of origin, or personal boundary issues\r\nâ€¢ Grief and loss\r\n\r\nDaryl is also able to support clients through various life transitions including â€“ but not limited to - career exploration, mid-life transitions, and retirement.Â  He has a growing interest in working with individuals who self-identifying as <a title=\"Highly Sensitive Test\" href=\"http://hsperson.com/test/highly-sensitive-test/\" target=\"_blank\">Highly Sensitive.</a>\r\n\r\nDaryl received his Registered Clinical Counsellor (RCC) designation through the British Columbia Association of Clinical Counsellors in May, 2015.Â  Prior to entering the counselling profession, Daryl enjoyed a highly successful career working in human resources-related roles within various public sector organizations.\r\n\r\nHe is currently accepting new clients.", "Daryl Thomson", "", "inherit", "closed", "closed", "", "14005-revision-v1", "", "", "2015-06-04 12:32:34", "2015-06-04 19:32:34", "", "14005", "http://localhost:8888/TestSICPage/wordpress/14005-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14016", "3", "2015-06-04 12:34:32", "2015-06-04 19:34:32", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span><strong><span><a style=\"color: #ffffff;\" title=\"Director of Services and Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: rgb(0, 0, 0);\">Bill Cole</span></a>Â </span></strong></span><span style=\"color: #000000;\"><span style=\"color: #000000;\"><strong>(</strong></span></span><strong>Supervising Counsellor):</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s:</span>Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n<span style=\"color: #000000;\"><strong><a title=\"Daryl Thomson, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/daryl-thomson/\" target=\"_blank\"><span style=\"color: #000000;\">Daryl Thomson:</span></a></strong></span>Â Depression,Â Anxiety,Â Relationship challenges including self esteem, interpersonal dynamics, family of origin or personal boundary issues,Â Grief and loss.\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2015-06-04 12:34:32", "2015-06-04 19:34:32", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14017", "3", "2015-06-04 12:35:33", "2015-06-04 19:35:33", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span>Â </strong><strong>(</strong></a><strong><a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\">Supervising Counsellor)</a>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s:</span>Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n<span style=\"color: #000000;\"><strong><a title=\"Daryl Thomson, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/daryl-thomson/\" target=\"_blank\"><span style=\"color: #000000;\">Daryl Thomson:</span></a></strong></span>Â Depression,Â Anxiety,Â Relationship challenges including self esteem, interpersonal dynamics, family of origin or personal boundary issues,Â Grief and loss.\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2015-06-04 12:35:33", "2015-06-04 19:35:33", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14018", "3", "2015-06-08 08:16:47", "2015-06-08 15:16:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-08 08:16:47", "2015-06-08 15:16:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14019", "3", "2015-06-08 09:25:40", "2015-06-08 16:25:40", "[caption id=\"attachment_14007\" align=\"alignright\" width=\"240\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson.jpg\"><img class=\"wp-image-14007 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/Daryl-Thomson-240x300.jpg\" alt=\"Daryl Thomson (BA, MA, RCC)\" width=\"240\" height=\"300\" /></a> Daryl Thomson (BA, MA, RCC)[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Daryl Thomson</strong> received his Masters of Counselling from <em>Providence Theological Seminary</em> after completing an eight-month internship with <em>Camosun College</em>â€™s student counselling department.Â  Daryl works from an integrated theoretical approach meaning that he draws from a variety of clinically proven treatment approaches in order to best meet the specific needs of his clients.\r\n\r\nDaryl enjoys supporting clients who are experiencing a variety of situational or chronic challenges including:\r\nâ€¢ Depression\r\nâ€¢ Anxiety\r\nâ€¢ Relationship challenges including self esteem, interpersonal dynamics, family of origin, or personal boundary issues\r\nâ€¢ Grief and loss\r\n\r\nDaryl is also able to support clients through various life transitions including â€“ but not limited to - career exploration, mid-life transitions, and retirement.\r\n\r\nDaryl received his Registered Clinical Counsellor (RCC) designation through the British Columbia Association of Clinical Counsellors in May, 2015.Â  Prior to entering the counselling profession, Daryl enjoyed a highly successful career working in human resources-related roles within various public sector organizations.\r\n\r\nHe is currently accepting new clients.", "Daryl Thomson", "", "inherit", "closed", "closed", "", "14005-revision-v1", "", "", "2015-06-08 09:25:40", "2015-06-08 16:25:40", "", "14005", "http://localhost:8888/TestSICPage/wordpress/14005-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14021", "3", "2015-06-15 11:08:32", "2015-06-15 18:08:32", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #000000;\"><strong>Samaritan\'s Fund</strong></span>. Â If this is your first time making a donation to our Samaritan Fund or whether you already give regularly to this important cause, we have three easy donation options available.\r\n\r\nDonations can be made<span style=\"color: #000000;\">Â </span>one-time, monthly, quarterly, annually etc.:\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1 (preferred)</strong>:</span> please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 3</strong></span>: Charge a one-time or set up a monthly donation using your yourÂ <strong>credit card</strong>Â by making a donation on-line with CanadaHelps.org (<a title=\"Canada Helps donation link\" href=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target=\"_blank\">click here</a>).Â Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nPersonal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2015-06-15 11:08:32", "2015-06-15 18:08:32", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14022", "3", "2015-06-16 12:25:21", "2015-06-16 19:25:21", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"false\" size=\"small\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Donate [/dt_button][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-16 12:25:21", "2015-06-16 19:25:21", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14023", "3", "2015-06-16 12:26:46", "2015-06-16 19:26:46", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_facebook type=\"standard\"][vc_column_text][/vc_column_text][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"false\" size=\"small\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Donate [/dt_button][dt_gap height=\"20\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-16 12:26:46", "2015-06-16 19:26:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14024", "3", "2015-06-17 17:52:24", "2015-06-18 00:52:24", "", "CanadaHelps.org Logo", "", "inherit", "closed", "closed", "", "canadahelps-org-logo", "", "", "2015-06-17 17:52:24", "2015-06-18 00:52:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/06/CanadaHelps.org-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14025", "3", "2015-06-17 17:56:33", "2015-06-18 00:56:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"false\" size=\"small\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Donate Now[/dt_button][dt_gap height=\"20\"][vc_facebook type=\"standard\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-17 17:56:33", "2015-06-18 00:56:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14026", "3", "2015-06-17 18:00:26", "2015-06-18 01:00:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_single_image image=\"14024\" img_link_target=\"_self\" title=\"CanadaHelps.org\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"false\" size=\"small\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Donate Now[/dt_button][vc_facebook type=\"standard\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-17 18:00:26", "2015-06-18 01:00:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14027", "3", "2015-06-17 18:03:01", "2015-06-18 01:03:01", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"false\" size=\"small\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Donate Now[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"standard\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-17 18:03:01", "2015-06-18 01:03:01", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14028", "3", "2015-06-17 18:05:35", "2015-06-18 01:05:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"false\" size=\"small\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Giving Made Simple - Make a Donation (CanadaHelps.org)[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"standard\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-17 18:05:35", "2015-06-18 01:05:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14029", "3", "2015-06-17 18:07:02", "2015-06-18 01:07:02", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"standard\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-17 18:07:02", "2015-06-18 01:07:02", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14030", "3", "2015-06-17 18:17:25", "2015-06-18 01:17:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-Injuring Youth: Understanding and Responding (June 20, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/\" target=\"_blank\">Self-injuring Youth: Understanding and Responding</a> (Saturday, June 20, 2015)</strong>\r\n\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-17 18:17:25", "2015-06-18 01:17:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14032", "3", "2015-06-23 09:31:59", "2015-06-23 16:31:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-06-23 09:31:59", "2015-06-23 16:31:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14033", "3", "2015-06-23 09:32:53", "2015-06-23 16:32:53", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive</a> (Monday-Friday, July 27-31, 2015)\r\n\r\n<strong>POSTPONED to the latter part of August 2015</strong> <a title=\"Ebb and Flow Intensive April 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-06-23 09:32:53", "2015-06-23 16:32:53", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14037", "3", "2015-07-07 09:22:58", "2015-07-07 16:22:58", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14036\" img_link_target=\"_self\" title=\"Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-07 09:22:58", "2015-07-07 16:22:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14038", "3", "2015-07-07 09:24:47", "2015-07-07 16:24:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14036\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-07 09:24:47", "2015-07-07 16:24:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14040", "3", "2015-07-07 09:27:12", "2015-07-07 16:27:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Front Desk/Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am - 1:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only. Monday-Friday, 9:00am - 5:00pm, evening and weekend appointments available upon request.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-07 09:27:12", "2015-07-07 16:27:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14042", "3", "2015-07-21 10:24:47", "2015-07-21 17:24:47", "<span style=\"text-decoration: underline;\">Board Members 2015-2016:</span>\r\n\r\nSandra Scarth, OC (Chair)\r\n\r\nJim Gibson (Treasurer)\r\n\r\nSally Tuckey (Secretary)\r\n\r\nBarbara Underhill\r\n\r\nBill Cole (ex officio)\r\n\r\nCaroline Donelle (ex officio)\r\n\r\nSusanne Reul-Zastre (ex officio)", "Board of Directors 2014-2015", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2015-07-21 10:24:47", "2015-07-21 17:24:47", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14043", "3", "2015-07-21 10:25:01", "2015-07-21 17:25:01", "<span style=\"text-decoration: underline;\">Board Members 2015-2016:</span>\r\n\r\nSandra Scarth, OC (Chair)\r\n\r\nJim Gibson (Treasurer)\r\n\r\nSally Tuckey (Secretary)\r\n\r\nBarbara Underhill\r\n\r\nBill Cole (ex officio)\r\n\r\nCaroline Donelle (ex officio)\r\n\r\nSusanne Reul-Zastre (ex officio)", "Board of Directors 2015-2016", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2015-07-21 10:25:01", "2015-07-21 17:25:01", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14045", "3", "2015-07-21 10:38:56", "2015-07-21 17:38:56", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call the CentreÂ at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span>.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail.\r\n\r\n<strong>BusinessÂ hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n<strong>Counselling hours</strong> are by appointment only. Consult your counsellor for details and availability.\r\n\r\nFor initial appointments,Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a General Inquiry contact form. Â We will contact you by phone within 2-3 business days.</span></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory.Â </strong></span>You may also <strong>press extension 0Â for reception.</strong>\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2015-07-21 10:38:56", "2015-07-21 17:38:56", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14046", "3", "2015-07-21 10:40:55", "2015-07-21 17:40:55", "&nbsp;\r\n\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor.\r\n\r\nShe began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland.\r\n\r\nMost recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider.\r\n\r\nShe received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse.\r\n\r\nShe is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2015-07-21 10:40:55", "2015-07-21 17:40:55", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14047", "3", "2015-07-21 10:41:51", "2015-07-21 17:41:51", "&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Cantle Merritt (</strong></span>M.P.E; M.Ed;Â RCC)\r\n\r\nSpecialty:\r\n<ul>\r\n	<li>Self-Esteem</li>\r\n	<li>Empowerment</li>\r\n	<li>Anxiety</li>\r\n	<li>Holistic well-being</li>\r\n	<li>Depression</li>\r\n	<li>Self in Society</li>\r\n	<li>Self &amp; Environment</li>\r\n	<li>Managing Change</li>\r\n	<li>Academic, Sport, &amp; Job Performance</li>\r\n	<li>Restorative Justice</li>\r\n	<li>Family Issues</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Â </strong></span>", "Rosemary Cantle Merritt", "", "inherit", "closed", "closed", "", "406-revision-v1", "", "", "2015-07-21 10:41:51", "2015-07-21 17:41:51", "", "406", "http://localhost:8888/TestSICPage/wordpress/406-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14048", "3", "2015-07-21 11:05:31", "2015-07-21 18:05:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-21 11:05:31", "2015-07-21 18:05:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14049", "3", "2015-07-21 11:10:35", "2015-07-21 18:10:35", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<h3></h3>\r\n[caption id=\"attachment_428\" align=\"alignleft\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"wp-image-428 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_13908\" align=\"alignleft\" width=\"191\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\"><img class=\"wp-image-13908 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\" alt=\"Community Gaming Funds\" width=\"191\" height=\"69\" /></a> Province of BC[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignleft\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"wp-image-433 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]\r\n\r\n[caption id=\"attachment_14039\" align=\"alignleft\" width=\"132\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/07/Logo-Cath-Fnd-Vanc-Isld2.png\"><img class=\"wp-image-14039 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/07/Logo-Cath-Fnd-Vanc-Isld2.png\" alt=\"Catholic Foundation of Vancouver Island\" width=\"132\" height=\"145\" /></a> Catholic Foundation of Vancouver Island[/caption]", "Thank You to Our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2015-07-21 11:10:35", "2015-07-21 18:10:35", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14050", "3", "2015-07-21 11:11:02", "2015-07-21 18:11:02", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_428\" align=\"alignleft\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"wp-image-428 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_13908\" align=\"alignleft\" width=\"191\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\"><img class=\"wp-image-13908 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\" alt=\"Community Gaming Funds\" width=\"191\" height=\"69\" /></a> Province of BC[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignleft\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"wp-image-433 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]\r\n\r\n[caption id=\"attachment_14039\" align=\"alignleft\" width=\"132\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/07/Logo-Cath-Fnd-Vanc-Isld2.png\"><img class=\"wp-image-14039 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/07/Logo-Cath-Fnd-Vanc-Isld2.png\" alt=\"Catholic Foundation of Vancouver Island\" width=\"132\" height=\"145\" /></a> Catholic Foundation of Vancouver Island[/caption]", "Thank You to Our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2015-07-21 11:11:02", "2015-07-21 18:11:02", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14051", "3", "2015-07-21 11:16:43", "2015-07-21 18:16:43", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> (front desk) or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $120 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Family Income and Cost per Session:Â </strong></span>\r\n\r\nLess than $50,000: we will discuss with you what you can afford\r\n\r\n$50,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2015-07-21 11:16:43", "2015-07-21 18:16:43", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14052", "3", "2015-07-21 11:18:11", "2015-07-21 18:18:11", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, press 0</strong>Â  for front desk or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $120 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Family Income and Cost per Session:Â </strong></span>\r\n\r\nLess than $50,000: we will discuss with you what you can afford\r\n\r\n$50,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $110,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2015-07-21 11:18:11", "2015-07-21 18:18:11", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14053", "3", "2015-07-22 10:48:33", "2015-07-22 17:48:33", "", "PCTT Saturday November 7, 2015 poster", "", "inherit", "closed", "closed", "", "pcct-course-poster-november-2015", "", "", "2015-07-22 10:48:33", "2015-07-22 17:48:33", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/07/PCCT-course-poster-November-2015.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("14055", "3", "2015-07-22 12:55:57", "2015-07-22 19:55:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-22 12:55:57", "2015-07-22 19:55:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14059", "3", "2015-07-28 09:16:02", "2015-07-28 16:16:02", "", "header_bg", "", "inherit", "closed", "closed", "", "header_bg-5", "", "", "2015-07-28 09:16:02", "2015-07-28 16:16:02", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/07/header_bg.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14061", "3", "2015-07-29 11:23:22", "2015-07-29 18:23:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Thank You To Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-29 11:23:22", "2015-07-29 18:23:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14062", "3", "2015-07-29 11:40:35", "2015-07-29 18:40:35", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â <strong>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\n\r\nClick on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information.\r\n\r\nClick on the link for each course to access registration information.\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span>\r\n\r\nYou may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\n\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system.\r\n\r\nYou may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-07-29 11:40:35", "2015-07-29 18:40:35", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14063", "3", "2015-07-29 11:45:58", "2015-07-29 18:45:58", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span> At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges. Â  Â  <span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span> Click on the specific course listed in the sidebar at the right of this page under<strong><em> Upcoming EventsÂ </em></strong>for more information. Click on the link for each course to access registration information. <a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015) For more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong> <span style=\"color: #000000;\">C<a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">lick here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars. Â  <strong>Anti-spam legislation (July 1, 2014)</strong> Since we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-07-29 11:45:58", "2015-07-29 18:45:58", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14064", "3", "2015-07-29 11:50:15", "2015-07-29 18:50:15", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span> Click on the specific course listed in the sidebar at the right of this page under\r\n\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-07-29 11:50:15", "2015-07-29 18:50:15", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14065", "3", "2015-07-29 11:51:34", "2015-07-29 18:51:34", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-07-29 11:51:34", "2015-07-29 18:51:34", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14066", "3", "2015-07-29 11:54:12", "2015-07-29 18:54:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-29 11:54:12", "2015-07-29 18:54:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14067", "3", "2015-07-29 11:55:40", "2015-07-29 18:55:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_single_image image=\"13940\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4>Celebrating 40 Years serving the Greater Victoria Community</h4>\r\n1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-29 11:55:40", "2015-07-29 18:55:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14068", "3", "2015-07-29 12:01:29", "2015-07-29 19:01:29", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-29 12:01:29", "2015-07-29 19:01:29", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14069", "3", "2015-07-29 12:02:25", "2015-07-29 19:02:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Summer intensive 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-intensive-july-27-31-2015-bill-cole-facilitator/\" target=\"_blank\">Family Systems Theory - 5 Day Summer Intensive </a> (Monday-Friday, July 27-31, 2015).</strong>\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong>\r\n</strong>\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-29 12:02:25", "2015-07-29 19:02:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14070", "3", "2015-07-29 12:02:59", "2015-07-29 19:02:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-07-29 12:02:59", "2015-07-29 19:02:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14071", "3", "2015-07-29 12:16:06", "2015-07-29 19:16:06", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Reception Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\nIf the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called (for example: to set up an appointment for a counselling appointment, register for a course, find out about our up-coming events, to make a donation etc).\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nBy appointment only. Monday-Friday: 9:00am-5:00pm. Some evening and weekend appointments available - please inquire.\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-07-29 12:16:06", "2015-07-29 19:16:06", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14072", "3", "2015-08-04 12:35:54", "2015-08-04 19:35:54", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, press 0</strong>Â  for front desk or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $120 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Family Income and Cost per Session:Â </strong></span>\r\n\r\nLess than $50,000: we will discuss with you what you can afford.\r\n\r\n$50,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $120,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2015-08-04 12:35:54", "2015-08-04 19:35:54", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14073", "3", "2015-08-04 12:38:53", "2015-08-04 19:38:53", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-08-04 12:38:53", "2015-08-04 19:38:53", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14076", "3", "2015-08-19 11:55:31", "2015-08-19 18:55:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept 28, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-08-19 11:55:31", "2015-08-19 18:55:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14078", "3", "2015-08-19 12:01:17", "2015-08-19 19:01:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept 28, 2015)\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, October 3, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-08-19 12:01:17", "2015-08-19 19:01:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14079", "3", "2015-08-19 12:05:33", "2015-08-19 19:05:33", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<strong>Caregiver Burnout: Caring for the Family Caregiver</strong> (Saturday, October 3, 2015)\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-08-19 12:05:33", "2015-08-19 19:05:33", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14080", "3", "2015-08-19 12:07:35", "2015-08-19 19:07:35", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"Family Caregiver Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, October 3, 2015)\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-08-19 12:07:35", "2015-08-19 19:07:35", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14081", "3", "2015-08-19 12:09:20", "2015-08-19 19:09:20", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"Ebb and Flow Intensive Sept 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: Grief, Loss and Life Transitions</a> (Intensive: Monday, September 21 and 28, 2015)\r\n\r\n<a title=\"Family Caregiver Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, October 3, 2015)\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-08-19 12:09:20", "2015-08-19 19:09:20", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14082", "3", "2015-08-20 11:39:49", "2015-08-20 18:39:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept 28, 2015)\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, October 3, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong>Family Systems Theory course</strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong>Pastoral Counselling Training course</strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-08-20 11:39:49", "2015-08-20 18:39:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14083", "3", "2015-08-20 11:44:51", "2015-08-20 18:44:51", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept 28, 2015)\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, October 3, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory course</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong>Pastoral Counselling Training course</strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-08-20 11:44:51", "2015-08-20 18:44:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14084", "3", "2015-08-20 11:46:28", "2015-08-20 18:46:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept 28, 2015)\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, October 3, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory course</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training course</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-08-20 11:46:28", "2015-08-20 18:46:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14085", "3", "2015-08-20 11:49:36", "2015-08-20 18:49:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept 28, 2015)\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, October 3, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-08-20 11:49:36", "2015-08-20 18:49:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14086", "3", "2015-08-25 10:51:26", "2015-08-25 17:51:26", "<strong>Caroline Donelle</strong> is our Director of Development. Please contact her at <strong>(250) 472-2851, extension 107.Â </strong>", "Director of Development", "", "publish", "closed", "closed", "", "director-of-development", "", "", "2015-08-25 10:51:26", "2015-08-25 17:51:26", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=14086", "35", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14087", "3", "2015-08-25 10:51:26", "2015-08-25 17:51:26", "<strong>Caroline Donelle</strong> is our Director of Development. Please contact her at <strong>(250) 472-2851, extension 107.Â </strong>", "Director of Development", "", "inherit", "closed", "closed", "", "14086-revision-v1", "", "", "2015-08-25 10:51:26", "2015-08-25 17:51:26", "", "14086", "http://localhost:8888/TestSICPage/wordpress/14086-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14090", "3", "2015-08-26 11:50:47", "2015-08-26 18:50:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015) This course is geared towards young women ages 18-35 years old.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom. More information to come soon.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-08-26 11:50:47", "2015-08-26 18:50:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14093", "3", "2015-09-01 15:47:43", "2015-09-01 22:47:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015) This course is geared towards young women ages 18-35 years old.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person and go on sale via Eventbrite on Tuesday, Sept 9, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-01 15:47:43", "2015-09-01 22:47:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14094", "3", "2015-09-03 12:16:45", "2015-09-03 19:16:45", "", "Professional Caregiver November 2015", "", "inherit", "closed", "closed", "", "professional-caregivers-november-2015", "", "", "2015-09-03 12:16:45", "2015-09-03 19:16:45", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/09/Professional-Caregivers-November-2015.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("14095", "3", "2015-09-03 12:18:24", "2015-09-03 19:18:24", "", "Family Caregivers October 2015", "", "inherit", "closed", "closed", "", "intensive-family-caregivers-sept-2015", "", "", "2015-09-03 12:18:24", "2015-09-03 19:18:24", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/09/Intensive-Family-caregivers-Sept-2015.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("14098", "3", "2015-09-03 12:26:31", "2015-09-03 19:26:31", "", "Ebb and Flow Intensive Sept 2015", "", "inherit", "closed", "closed", "", "ebb-and-flow-intensive-sept-2015", "", "", "2015-09-03 12:26:31", "2015-09-03 19:26:31", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/09/Ebb-and-Flow-Intensive-Sept-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14099", "3", "2015-09-03 12:33:40", "2015-09-03 19:33:40", "", "Strengthening Well-Being Sept-Oct 2015", "", "inherit", "closed", "closed", "", "strengthening-well-being-sept-oct-2015", "", "", "2015-09-03 12:33:40", "2015-09-03 19:33:40", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/09/Strengthening-Well-Being-Sept-Oct-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14100", "3", "2015-09-03 12:40:48", "2015-09-03 19:40:48", "", "Twilight Journey 6 week Oct-Dec 2015", "", "inherit", "closed", "closed", "", "twilight-journey-6-week-oct-dec-2015", "", "", "2015-09-03 12:40:48", "2015-09-03 19:40:48", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/09/Twilight-Journey-6-week-Oct-Dec-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14102", "3", "2015-09-03 12:48:48", "2015-09-03 19:48:48", "", "Strengthening Well-Being Nov-Dec 2015", "", "inherit", "closed", "closed", "", "strengthening-well-being-nov-dec-2015", "", "", "2015-09-03 12:48:48", "2015-09-03 19:48:48", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/09/Strengthening-Well-Being-Nov-Dec-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14104", "3", "2015-09-03 13:00:43", "2015-09-03 20:00:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015) This course is geared towards young women ages 18-35 years old.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person and go on sale via Eventbrite on Tuesday, Sept 9, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-03 13:00:43", "2015-09-03 20:00:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14105", "3", "2015-09-03 13:05:06", "2015-09-03 20:05:06", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015) This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015).This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person and go on sale via Eventbrite on Tuesday, Sept 8, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-03 13:05:06", "2015-09-03 20:05:06", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14108", "3", "2015-09-08 09:24:00", "2015-09-08 16:24:00", "", "Professional Caregiver Workshop November 2015", "", "inherit", "closed", "closed", "", "professional-caregivers-november-2015-2", "", "", "2015-09-08 09:24:00", "2015-09-08 16:24:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/09/Professional-Caregivers-November-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14109", "3", "2015-09-08 09:27:20", "2015-09-08 16:27:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015) This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015).This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person and go on sale via Eventbrite on Tuesday, Sept 8, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-08 09:27:20", "2015-09-08 16:27:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14111", "3", "2015-09-08 11:55:52", "2015-09-08 18:55:52", "", "Self Injuring Youth Poster October 31, 2015", "", "inherit", "closed", "closed", "", "self-injuring-youth-poster-october-31-2015", "", "", "2015-09-08 11:55:52", "2015-09-08 18:55:52", "", "14112", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/09/Self-Injuring-Youth-Poster-October-31-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14112", "3", "2015-09-08 12:01:57", "2015-09-08 19:01:57", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/10/Self-Injuring-Youth-poster-Dec-2015.pdf\">Self Injuring Youth poster December 5, 2015</a>\r\n\r\n<strong>Facilitator Dave Prette</strong> (RCC) hosts this workshop for parents, educators, community service providers and caregivers on <strong>Saturday, December 5, 10am-noon at the Lounge at St Luke\'s Parish Hall building</strong> (the white building at Cedar Hill Cross Rd at Synod Rd). Enter through the front glass doors, turn right and go to the end of the hallway to the Lounge.\r\n\r\n&nbsp;\r\n\r\nThis two-hour workshop will focus on trends and concerns that affect those attempting to support self-injuring youth.\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Self-Injurying Youth: Understanding and Responding (facilitator: Dave Prette, RCC); Saturday, December 5, 2015", "", "publish", "closed", "closed", "", "self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015", "", "", "2015-10-27 10:12:23", "2015-10-27 17:12:23", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14112", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14113", "3", "2015-09-08 12:05:27", "2015-09-08 19:05:27", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person and go on sale via Eventbrite on Tuesday, Sept 8, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-08 12:05:27", "2015-09-08 19:05:27", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14115", "3", "2015-09-08 20:27:52", "2015-09-09 03:27:52", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person and go on sale via Eventbrite on Tuesday, Sept 8, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-08 20:27:52", "2015-09-09 03:27:52", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14116", "3", "2015-09-08 20:28:18", "2015-09-09 03:28:18", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person and go on sale via Eventbrite on Thursday, Sept 10, 2015.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-08 20:28:18", "2015-09-09 03:28:18", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14117", "3", "2015-09-10 11:19:31", "2015-09-10 18:19:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-10 11:19:31", "2015-09-10 18:19:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14118", "3", "2015-09-10 11:24:24", "2015-09-10 18:24:24", "South Island Centre for Counselling and Training turnsÂ <strong>40</strong>Â this year, and to celebrate we\'re hosting a very special anniversary Fundraising Gala at theÂ <strong>Hotel Grand Pacific in the Vancouver Island Ballroom onÂ Saturday October 17, 2015 from 6-10pm.Â </strong>\r\n\r\nPlease join us for an entertaining eveningÂ <strong>MC\'d by Jack Knox</strong>Â with special musical guestsÂ <strong>Ian McDougall and friends (</strong>click <a title=\"Ian McDougall Oct 17, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14130\" target=\"_blank\">here</a>Â for a picture).\r\n\r\n<strong>Tickets are $75.00 </strong>per person and include a buffet supper, live music (jazz from the 30\'s and 40\'s), dancing, a silent auction, door prizes and more.<strong>Â Â </strong>Complimentary underground parking at the Hotel Grand Pacific is also included, and cash bars will be offered.\r\n\r\nSpecial room rates are alsoÂ available forÂ Oct. 17Â on a first-come, first serve basis.Â (<em>Rooms are limited, so book fast if you want to reserve one [please quoteÂ </em><strong>OCT15SOUT</strong>]). Please fill out the form below toÂ let us know that you\'ve boughtÂ tickets;Â click <a title=\"Gala fundraiser eventbrite Oct 2015\" href=\"http://http://www.eventbrite.ca/e/south-island-centre-for-counsellings-40th-anniversary-fundraising-gala-tickets-18418594512\" target=\"_blank\">Eventbrite</a>Â to purchase tickets directly.\r\n\r\n&nbsp;\r\n\r\n<strong>[gravityform id=\"9\" title=\"true\" description=\"true\"]</strong>", "40th Anniversary Gala event (Saturday, October 17)", "", "publish", "closed", "closed", "", "40th-anniversary-gala-event-saturday-october-17", "", "", "2015-09-22 11:22:50", "2015-09-22 18:22:50", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14118", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14119", "3", "2015-09-22 11:20:54", "2015-09-22 18:20:54", "South Island Centre for Counselling and Training turnsÂ <strong>40</strong>Â this year, and to celebrate we\'re hosting a very special anniversary Fundraising Gala at theÂ <strong>Hotel Grand Pacific in the Vancouver Island Ballroom onÂ Saturday October 17, 2015 from 6-10pm.Â </strong>\n\nPlease join us for an entertaining eveningÂ <strong>MC\'d by Jack Knox</strong>Â with special musical guestsÂ <strong>Ian McDougall and friends (</strong>click here for a picture).\n\n<strong>Tickets are $75.00 </strong>per person and include a buffet supper, live music (jazz from the 30\'s and 40\'s), dancing, a silent auction, door prizes and more.<strong>Â Â </strong>Complimentary underground parking at the Hotel Grand Pacific is also included, and cash bars will be offered. Â Special room rates are alsoÂ available forÂ Oct. 17Â on a first-come, first serve basis.Â (<em>Rooms are limited, so book fast if you want to reserve one [please quoteÂ </em><strong>OCT15SOUT</strong>]).\n\nPlease fill out the form below toÂ let us know that you\'ve boughtÂ tickets;Â click <a title=\"Gala fundraiser eventbrite Oct 2015\" href=\"http://http://www.eventbrite.ca/e/south-island-centre-for-counsellings-40th-anniversary-fundraising-gala-tickets-18418594512\" target=\"_blank\">Eventbrite</a>Â to purchase tickets directly.\n\n<strong>[gravityform id=\"9\" title=\"true\" description=\"true\"]</strong>", "40th Anniversary Gala event (Saturday, October 17)", "", "inherit", "closed", "closed", "", "14118-autosave-v1", "", "", "2015-09-22 11:20:54", "2015-09-22 18:20:54", "", "14118", "http://localhost:8888/TestSICPage/wordpress/14118-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14120", "3", "2015-09-10 12:10:55", "2015-09-10 19:10:55", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Bellevue St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. Tickets are $75 per person. Reserve your tickets <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-10 12:10:55", "2015-09-10 19:10:55", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14121", "3", "2015-09-14 08:31:44", "2015-09-14 15:31:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Reserve your tickets <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-14 08:31:44", "2015-09-14 15:31:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14122", "3", "2015-09-14 11:10:23", "2015-09-14 18:10:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-14 11:10:23", "2015-09-14 18:10:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14123", "3", "2015-09-14 11:11:31", "2015-09-14 18:11:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-Coming 40th Anniversary Gala Event\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event.</h4>\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-14 11:11:31", "2015-09-14 18:11:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14124", "3", "2015-09-14 11:12:12", "2015-09-14 18:12:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-Coming 40th Anniversary Gala Event:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-14 11:12:12", "2015-09-14 18:12:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14125", "3", "2015-09-14 11:13:31", "2015-09-14 18:13:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4><strong>Up-Coming 40th Anniversary Gala Event</strong>:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Ebb and Flow Sept 2015 Intensive\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief, Loss and Life Transitions</a></strong> (Intensive: Monday, Sept. 21 and Sept. 28, 2015)\r\n\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-14 11:13:31", "2015-09-14 18:13:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14126", "3", "2015-09-14 12:56:59", "2015-09-14 19:56:59", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"Ebb and Flow Intensive Sept 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-and-life-transitions-intensive-monday-sept-21-and-28-2015/\" target=\"_blank\">The Ebb and Flow of Life: Grief, Loss and Life Transitions</a> (Intensive: Monday, September 21 and 28, 2015)\r\n\r\n<a title=\"Strengthening Well being, Sept-Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\">Strengthening Well-being: A Time for Renewal</a> (Sept. 25, Oct. 2&amp;9, 2015)\r\n\r\n<a title=\"Family Caregiver Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, October 3, 2015)\r\n\r\n<a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Elderly</a> (6 Wednesdays, Oct. 28-Dec. 2, 2015)\r\n\r\n<a title=\"Self-Injuring Youth (Oct. 31, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (Oct. 31, 2015)\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\n<a title=\"Strengthening Well-Being (Nov- Dec, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Nov. 19, 26, Dec. 3, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Professional Caregivers) Nov 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Professional Caregivers) (Nov. 28, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-09-14 12:56:59", "2015-09-14 19:56:59", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14128", "3", "2015-09-16 11:35:12", "2015-09-16 18:35:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4><strong>Up-Coming 40th Anniversary Gala Event</strong>:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event.\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Strengthening Well-Being: \" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal</strong></a> (Friday, Sept. 25, Oct. 2 and 9, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-16 11:35:12", "2015-09-16 18:35:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14129", "3", "2015-09-16 11:36:50", "2015-09-16 18:36:50", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"Strengthening Well being, Sept-Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-september-25-october-2-and-october-9-2015/\" target=\"_blank\">Strengthening Well-being: A Time for Renewal</a> (Sept. 25, Oct. 2&amp;9, 2015)\r\n\r\n<a title=\"Family Caregiver Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> (Saturday, October 3, 2015)\r\n\r\n<a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Elderly</a> (6 Wednesdays, Oct. 28-Dec. 2, 2015)\r\n\r\n<a title=\"Self-Injuring Youth (Oct. 31, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (Oct. 31, 2015)\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\n<a title=\"Strengthening Well-Being (Nov- Dec, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Nov. 19, 26, Dec. 3, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Professional Caregivers) Nov 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Professional Caregivers) (Nov. 28, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-09-16 11:36:50", "2015-09-16 18:36:50", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14131", "3", "2015-09-22 11:24:43", "2015-09-22 18:24:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4><strong>Up-Coming 40th Anniversary Gala Event</strong>:</h4>\r\n<strong>2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-22 11:24:43", "2015-09-22 18:24:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14132", "3", "2015-09-22 11:56:07", "2015-09-22 18:56:07", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4><strong>Up-Coming 40th Anniversary Gala Event</strong>:</h4>\r\n<strong>\r\n2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Caregiver - Burnout, Oct 3, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/\" target=\"_blank\">Caregiver Burnout: Caring for the Family Caregiver</a> </strong>(Saturday, Oct. 3, 2015)\r\n\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-22 11:56:07", "2015-09-22 18:56:07", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14134", "3", "2015-09-28 10:22:16", "2015-09-28 17:22:16", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4><strong>Up-Coming 40th Anniversary Gala Event</strong>:</h4>\r\n<strong>\r\n2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-28 10:22:16", "2015-09-28 17:22:16", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14135", "3", "2015-09-28 10:22:58", "2015-09-28 17:22:58", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Elderly</a> (6 Wednesdays, Oct. 28-Dec. 2, 2015)\r\n\r\n<a title=\"Self-Injuring Youth (Oct. 31, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (Oct. 31, 2015)\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\n<a title=\"Strengthening Well-Being (Nov- Dec, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Nov. 19, 26, Dec. 3, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Professional Caregivers) Nov 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Professional Caregivers) (Nov. 28, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-09-28 10:22:58", "2015-09-28 17:22:58", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14136", "3", "2015-09-28 10:24:46", "2015-09-28 17:24:46", "<span style=\"text-decoration: underline;\">Board Members 2015-2016:</span>\r\n\r\nSandra Scarth, OC (Chair)\r\n\r\nJim Gibson (Treasurer)\r\n\r\nSally Tuckey (Secretary)\r\n\r\nBarbara Underhill (Member-at-Large)\r\n\r\nFather Dean Henderson (Member-at-Large)\r\n\r\nBill Cole (ex officio)\r\n\r\nCaroline Donelle (ex officio)\r\n\r\nSusanne Reul-Zastre (ex officio)", "Board of Directors 2015-2016", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2015-09-28 10:24:46", "2015-09-28 17:24:46", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14137", "3", "2015-09-28 11:45:40", "2015-09-28 18:45:40", "<em>Many thanks to our 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\r\n\r\n&nbsp;\r\n\r\n<strong>Entertainment:</strong>\r\n\r\nChemainus Theatre Musical tickets\r\n\r\nIMAX Theatre Family Admission/Movie pass\r\n\r\nIan McDougall CDs\r\n\r\n&nbsp;\r\n\r\n<strong>Active Lifestyle:</strong>\r\n\r\nPacifica Paddle sports 2/1 paddle boat rental\r\n\r\nSaanich Recreation drop-in passes\r\n\r\nCrystal Pool drop-in passes\r\n\r\nMount Doug Golf Course 2x pass\r\n\r\n&nbsp;\r\n\r\n<strong>Tourism:Â </strong>\r\n\r\nPrince Of Whales Boat Tour for 2\r\n\r\n&nbsp;\r\n\r\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\r\n\r\nSigi Heckel Massage - Reflexology Session\r\n\r\nYew Tree Yoga Pass\r\n\r\nHeavenly Health Services - Reflexology Session\r\n\r\nGift Certificates towards Eyeware or Sunglasses\r\n\r\nEstevan Pharmacy Blood Pressure Monitor with batteries\r\n\r\nWater Lily Skin Care and Esthetics Pedicure Treatment\r\n\r\nDr. Frank Lobianco Podiatry - Complimentary Visit and Treatment\r\n\r\nChristine Terry - Reflexology Session\r\n\r\nVictoria Exercise Rehabilitation Centre - Massage\r\n\r\nVictoria Exercise Rehabilitation Centre - Initial Consultation and 12 Rehabilitation Exercise Sessions\r\n\r\nMomma-to-be Hand and Foot Massage and hand-knit sweater for newborn\r\n\r\n&nbsp;\r\n\r\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\r\n\r\nCanadian Tire\r\n\r\nRed Blue Furnace/Heat Pump Maintenance package\r\n\r\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\r\n\r\nSearles Automotive Centre Seasonal Service Special\r\n\r\n&nbsp;\r\n\r\n<strong>Food and Wine (Gift Certificates, vouchers and original items)</strong>\r\n\r\nCountry Grocer\r\n\r\nPeppers Foods\r\n\r\nCobs Bread\r\n\r\nHillside Coffee and Tea\r\n\r\nCakes Etc\r\n\r\nCostco Truffles\r\n\r\nJazzaniah Cafe\r\n\r\nTaste Glutenfree Coffee House\r\n\r\nVillage Winery\r\n\r\n&nbsp;\r\n\r\n<strong>Restaurants (Gift Certificates):</strong>\r\n\r\nOriginal Joe\'s\r\n\r\nJJ Morgans\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by individual sponsors:Â </strong>\r\n\r\nWine and CD basket\r\n\r\nWine and Honey Candles basket\r\n\r\nRelaxation basket\r\n\r\nPreserves Basket\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by corporate sponsors:</strong>\r\n\r\nPlanet Organic\r\n\r\nHeart Pharmacy\r\n\r\nFor Good Measure\r\n\r\nJennings Florist\r\n\r\nPharmasave\r\n\r\n&nbsp;\r\n\r\n<strong>Hair Styling (Gift Certificate):</strong>\r\n\r\nStyles by Susan\r\n\r\nPartings Hair Styles and Cut\r\n\r\n&nbsp;\r\n\r\n<strong>Painting:</strong>\r\n\r\nOriginal Print by Morgan Warren\r\n\r\n&nbsp;\r\n\r\n<strong>AnimalsÂ (Gift Certificate):</strong>\r\n\r\nCadboro Bay Clinic exam for cat or dog\r\n\r\nKristen Giglio - Equine &amp; Canine Therapy\r\n\r\n&nbsp;\r\n\r\n<strong>Miscellaneous:</strong>\r\n\r\nCoast Capital picnic tote\r\n\r\nCoast Capital jacket\r\n\r\nMarion White - Clothing Alteration (Gift Certificate)\r\n\r\nChristian Bookstore and Music (Gift Certificate)\r\n\r\nBoutique de Laine Beginner\'s Knitting Set\r\n\r\nDig This - Bird House\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "40th Anniversary Silent Auction and Door Prize Sponsors 2015", "", "publish", "closed", "closed", "", "silent-auction-supports-2015", "", "", "2015-10-08 12:08:47", "2015-10-08 19:08:47", "", "199", "http://localhost:8888/TestSICPage/wordpress/?page_id=14137", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14138", "3", "2015-09-28 11:45:40", "2015-09-28 18:45:40", "<em>Many thanks to our 2015 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\r\n\r\n&nbsp;\r\n\r\n<strong>Entertainment:</strong>\r\n\r\nChemainus Theatre Musical tickets\r\n\r\nIMAX Theatre Family Admission/Movie pass\r\n\r\nIan McDougall CDs\r\n\r\n&nbsp;\r\n\r\n<strong>Active Lifestyle:</strong>\r\n\r\nPacifica Paddle sports 2/1 paddle boat rental\r\n\r\nSaanich Recreation drop-in passes\r\n\r\nCrystal Pool drop-in passes\r\n\r\nMount Doug Golf Course 2x pass\r\n\r\n&nbsp;\r\n\r\n<strong>Tourism:Â </strong>\r\n\r\nPrince Of Whales boat tour for 2\r\n\r\n&nbsp;\r\n\r\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\r\n\r\nSigi Heckel Massage/Reflexology Session\r\n\r\nYew Tree Yoga Pass, Heavenly Health ServicesÂ Reflexology Session\r\n\r\nGift Certificates towards Eyeware or Sunglasses\r\n\r\nBlood Pressure Monitor with batteries\r\n\r\nWater Lilly Skin Care and Esthetics Treatment\r\n\r\n&nbsp;\r\n\r\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\r\n\r\nCanadian Tire\r\n\r\nFurnace/Heat Pump Maintenance package\r\n\r\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\r\n\r\nSearles Automotive Centre\r\n\r\n&nbsp;\r\n\r\n<strong>Food (Gift Certificates and original items)</strong>\r\n\r\nCountry Grocer\r\n\r\nPeppers Foods\r\n\r\nCobs Bread\r\n\r\nCostco Truffles\r\n\r\n&nbsp;\r\n\r\n<strong>Restaurants (Gift Certificates):</strong>\r\n\r\nOriginal Joe\'s, JJ Morgans\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by individual sponsors:Â </strong>\r\n\r\nWine and CD basket\r\n\r\nWine and Honey basket\r\n\r\nCandles Relaxation basket\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by corporate sponsors:</strong>\r\n\r\nPlanet Organic\r\n\r\nHeart Pharmacy\r\n\r\n&nbsp;\r\n\r\n<strong>Hair Styling (Gift Certificate):</strong>\r\n\r\nStyles by Susan\r\n\r\nPartings Hair Styles and Cut\r\n\r\n&nbsp;\r\n\r\n<strong>Painting:</strong>\r\n\r\nOriginal Print by Morgan Warren\r\n\r\n&nbsp;\r\n\r\n<strong>Pets (Gift Certificate):</strong>\r\n\r\nCadboro Bay Clinic exam for cat or dog\r\n\r\n&nbsp;\r\n\r\n<strong>Miscellaneous:</strong>\r\n\r\nCoast Capital picnic tote\r\n\r\nCoast Capital jacket\r\n\r\nMarion White - clothing alteration (Gift Certificate)\r\n\r\nChristian Bookstore and Music (Gift Certificate)\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Silent Auction Supports 2015", "", "inherit", "closed", "closed", "", "14137-revision-v1", "", "", "2015-09-28 11:45:40", "2015-09-28 18:45:40", "", "14137", "http://localhost:8888/TestSICPage/wordpress/14137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14139", "3", "2015-09-28 11:47:48", "2015-09-28 18:47:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4><strong>Up-Coming 40th Anniversary Gala Event</strong>:</h4>\r\n<strong>\r\n2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event. For a list of Silent Auction and Door Prize sponsors, click <a title=\"2015 Silent Auction Sponsors\" href=\"http://localhost:8888/TestSICPage/wordpress/donate/sponsors/silent-auction-supports-2015/\" target=\"_blank\"><strong>here</strong></a>.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-28 11:47:48", "2015-09-28 18:47:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14140", "3", "2015-09-28 11:48:39", "2015-09-28 18:48:39", "<em>Many thanks to our 2015 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\r\n\r\n&nbsp;\r\n\r\n<strong>Entertainment:</strong>\r\n\r\nChemainus Theatre Musical tickets\r\n\r\nIMAX Theatre Family Admission/Movie pass\r\n\r\nIan McDougall CDs\r\n\r\n&nbsp;\r\n\r\n<strong>Active Lifestyle:</strong>\r\n\r\nPacifica Paddle sports 2/1 paddle boat rental\r\n\r\nSaanich Recreation drop-in passes\r\n\r\nCrystal Pool drop-in passes\r\n\r\nMount Doug Golf Course 2x pass\r\n\r\n&nbsp;\r\n\r\n<strong>Tourism:Â </strong>\r\n\r\nPrince Of Whales boat tour for 2\r\n\r\n&nbsp;\r\n\r\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\r\n\r\nSigi Heckel Massage/Reflexology Session\r\n\r\nYew Tree Yoga Pass, Heavenly Health ServicesÂ Reflexology Session\r\n\r\nGift Certificates towards Eyeware or Sunglasses\r\n\r\nBlood Pressure Monitor with batteries\r\n\r\nWater Lilly Skin Care and Esthetics Treatment\r\n\r\n&nbsp;\r\n\r\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\r\n\r\nCanadian Tire\r\n\r\nFurnace/Heat Pump Maintenance package\r\n\r\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\r\n\r\nSearles Automotive Centre\r\n\r\n&nbsp;\r\n\r\n<strong>Food (Gift Certificates and original items)</strong>\r\n\r\nCountry Grocer\r\n\r\nPeppers Foods\r\n\r\nCobs Bread\r\n\r\nCostco Truffles\r\n\r\n&nbsp;\r\n\r\n<strong>Restaurants (Gift Certificates):</strong>\r\n\r\nOriginal Joe\'s, JJ Morgans\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by individual sponsors:Â </strong>\r\n\r\nWine and CD basket\r\n\r\nWine and Honey basket\r\n\r\nCandles Relaxation basket\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by corporate sponsors:</strong>\r\n\r\nPlanet Organic\r\n\r\nHeart Pharmacy\r\n\r\n&nbsp;\r\n\r\n<strong>Hair Styling (Gift Certificate):</strong>\r\n\r\nStyles by Susan\r\n\r\nPartings Hair Styles and Cut\r\n\r\n&nbsp;\r\n\r\n<strong>Painting:</strong>\r\n\r\nOriginal Print by Morgan Warren\r\n\r\n&nbsp;\r\n\r\n<strong>Pets (Gift Certificate):</strong>\r\n\r\nCadboro Bay Clinic exam for cat or dog\r\n\r\n&nbsp;\r\n\r\n<strong>Miscellaneous:</strong>\r\n\r\nCoast Capital picnic tote\r\n\r\nCoast Capital jacket\r\n\r\nMarion White - clothing alteration (Gift Certificate)\r\n\r\nChristian Bookstore and Music (Gift Certificate)\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "40th Anniversary Silent Auction and Door Prize Sponsors 2015", "", "inherit", "closed", "closed", "", "14137-revision-v1", "", "", "2015-09-28 11:48:39", "2015-09-28 18:48:39", "", "14137", "http://localhost:8888/TestSICPage/wordpress/14137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14141", "3", "2015-09-28 11:48:53", "2015-09-28 18:48:53", "<em>Many thanks to our 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\r\n\r\n&nbsp;\r\n\r\n<strong>Entertainment:</strong>\r\n\r\nChemainus Theatre Musical tickets\r\n\r\nIMAX Theatre Family Admission/Movie pass\r\n\r\nIan McDougall CDs\r\n\r\n&nbsp;\r\n\r\n<strong>Active Lifestyle:</strong>\r\n\r\nPacifica Paddle sports 2/1 paddle boat rental\r\n\r\nSaanich Recreation drop-in passes\r\n\r\nCrystal Pool drop-in passes\r\n\r\nMount Doug Golf Course 2x pass\r\n\r\n&nbsp;\r\n\r\n<strong>Tourism:Â </strong>\r\n\r\nPrince Of Whales boat tour for 2\r\n\r\n&nbsp;\r\n\r\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\r\n\r\nSigi Heckel Massage/Reflexology Session\r\n\r\nYew Tree Yoga Pass, Heavenly Health ServicesÂ Reflexology Session\r\n\r\nGift Certificates towards Eyeware or Sunglasses\r\n\r\nBlood Pressure Monitor with batteries\r\n\r\nWater Lilly Skin Care and Esthetics Treatment\r\n\r\n&nbsp;\r\n\r\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\r\n\r\nCanadian Tire\r\n\r\nFurnace/Heat Pump Maintenance package\r\n\r\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\r\n\r\nSearles Automotive Centre\r\n\r\n&nbsp;\r\n\r\n<strong>Food (Gift Certificates and original items)</strong>\r\n\r\nCountry Grocer\r\n\r\nPeppers Foods\r\n\r\nCobs Bread\r\n\r\nCostco Truffles\r\n\r\n&nbsp;\r\n\r\n<strong>Restaurants (Gift Certificates):</strong>\r\n\r\nOriginal Joe\'s, JJ Morgans\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by individual sponsors:Â </strong>\r\n\r\nWine and CD basket\r\n\r\nWine and Honey basket\r\n\r\nCandles Relaxation basket\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by corporate sponsors:</strong>\r\n\r\nPlanet Organic\r\n\r\nHeart Pharmacy\r\n\r\n&nbsp;\r\n\r\n<strong>Hair Styling (Gift Certificate):</strong>\r\n\r\nStyles by Susan\r\n\r\nPartings Hair Styles and Cut\r\n\r\n&nbsp;\r\n\r\n<strong>Painting:</strong>\r\n\r\nOriginal Print by Morgan Warren\r\n\r\n&nbsp;\r\n\r\n<strong>Pets (Gift Certificate):</strong>\r\n\r\nCadboro Bay Clinic exam for cat or dog\r\n\r\n&nbsp;\r\n\r\n<strong>Miscellaneous:</strong>\r\n\r\nCoast Capital picnic tote\r\n\r\nCoast Capital jacket\r\n\r\nMarion White - clothing alteration (Gift Certificate)\r\n\r\nChristian Bookstore and Music (Gift Certificate)\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "40th Anniversary Silent Auction and Door Prize Sponsors 2015", "", "inherit", "closed", "closed", "", "14137-revision-v1", "", "", "2015-09-28 11:48:53", "2015-09-28 18:48:53", "", "14137", "http://localhost:8888/TestSICPage/wordpress/14137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14142", "3", "2015-10-08 12:08:21", "2015-10-08 19:08:21", "<em>Many thanks to our 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\n\n&nbsp;\n\n<strong>Entertainment:</strong>\n\nChemainus Theatre Musical tickets\n\nIMAX Theatre Family Admission/Movie pass\n\nIan McDougall CDs\n\n&nbsp;\n\n<strong>Active Lifestyle:</strong>\n\nPacifica Paddle sports 2/1 paddle boat rental\n\nSaanich Recreation drop-in passes\n\nCrystal Pool drop-in passes\n\nMount Doug Golf Course 2x pass\n\n&nbsp;\n\n<strong>Tourism:Â </strong>\n\nPrince Of Whales Boat Tour for 2\n\n&nbsp;\n\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\n\nSigi Heckel Massage - Reflexology Session\n\nYew Tree Yoga Pass\n\nHeavenly Health Services - Reflexology Session\n\nGift Certificates towards Eyeware or Sunglasses\n\nEstevan Pharmacy Blood Pressure Monitor with batteries\n\nWater Lily Skin Care and Esthetics Pedicure Treatment\n\nDr. Frank Lobianco Podiatry - Complimentary Visit and Treatment\n\nChristine Terry - Reflexology Session\n\nVictoria Exercise Rehabilitation Centre - Massage\n\nVictoria Exercise Rehabilitation Centre - Initial Consultation and 12 Rehabilitation Exercise Sessions\n\nMomma-to-be Hand and Foot Massage and hand-knit sweater for newborn\n\n&nbsp;\n\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\n\nCanadian Tire\n\nRed Blue Furnace/Heat Pump Maintenance package\n\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\n\nSearles Automotive Centre Seasonal Service Special\n\n&nbsp;\n\n<strong>Food and Wine (Gift Certificates, vouchers and original items)</strong>\n\nCountry Grocer\n\nPeppers Foods\n\nCobs Bread\n\nHillside Coffee and Tea\n\nCakes Etc\n\nCostco Truffles\n\nJazzaniah Cafe\n\nTaste Glutenfree Coffee House\n\nVillage Winery\n\n&nbsp;\n\n<strong>Restaurants (Gift Certificates):</strong>\n\nOriginal Joe\'s\n\nJJ Morgans\n\n&nbsp;\n\n<strong>Gift Baskets by individual sponsors:Â </strong>\n\nWine and CD basket\n\nWine and Honey Candles basket\n\nRelaxation basket\n\nPreserves Basket\n\n&nbsp;\n\n<strong>Gift Baskets by corporate sponsors:</strong>\n\nPlanet Organic\n\nHeart Pharmacy\n\nFor Good Measure\n\nJennings Florist\n\nPharmasave\n\n&nbsp;\n\n<strong>Hair Styling (Gift Certificate):</strong>\n\nStyles by Susan\n\nPartings Hair Styles and Cut\n\n&nbsp;\n\n<strong>Painting:</strong>\n\nOriginal Print by Morgan Warren\n\n&nbsp;\n\n<strong>AnimalsÂ (Gift Certificate):</strong>\n\nCadboro Bay Clinic exam for cat or dog\n\nKristen Giglio - Equine &amp; Canine Therapy\n\n&nbsp;\n\n<strong>Miscellaneous:</strong>\n\nCoast Capital picnic tote\n\nCoast Capital jacket\n\nMarion White - Clothing Alteration (Gift Certificate)\n\nChristian Bookstore and Music (Gift Certificate)\n\nBoutique de Laine Beginner\'s Knitting Set\n\nDig This - Bird House\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;", "40th Anniversary Silent Auction and Door Prize Sponsors 2015", "", "inherit", "closed", "closed", "", "14137-autosave-v1", "", "", "2015-10-08 12:08:21", "2015-10-08 19:08:21", "", "14137", "http://localhost:8888/TestSICPage/wordpress/14137-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14143", "3", "2015-09-28 11:51:01", "2015-09-28 18:51:01", "<em>Many thanks to our 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\r\n\r\n&nbsp;\r\n\r\n<strong>Entertainment:</strong>\r\n\r\nChemainus Theatre Musical tickets\r\n\r\nIMAX Theatre Family Admission/Movie pass\r\n\r\nIan McDougall CDs\r\n\r\n&nbsp;\r\n\r\n<strong>Active Lifestyle:</strong>\r\n\r\nPacifica Paddle sports 2/1 paddle boat rental\r\n\r\nSaanich Recreation drop-in passes\r\n\r\nCrystal Pool drop-in passes\r\n\r\nMount Doug Golf Course 2x pass\r\n\r\n&nbsp;\r\n\r\n<strong>Tourism:Â </strong>\r\n\r\nPrince Of Whales boat tour for 2\r\n\r\n&nbsp;\r\n\r\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\r\n\r\nSigi Heckel Massage/Reflexology Session\r\n\r\nYew Tree Yoga Pass, Heavenly Health ServicesÂ Reflexology Session\r\n\r\nGift Certificates towards Eyeware or Sunglasses\r\n\r\nBlood Pressure Monitor with batteries\r\n\r\nWater Lilly Skin Care and Esthetics Treatment\r\n\r\n&nbsp;\r\n\r\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\r\n\r\nCanadian Tire\r\n\r\nFurnace/Heat Pump Maintenance package\r\n\r\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\r\n\r\nSearles Automotive Centre\r\n\r\n&nbsp;\r\n\r\n<strong>Food (Gift Certificates and original items)</strong>\r\n\r\nCountry Grocer\r\n\r\nPeppers Foods\r\n\r\nCobs Bread\r\n\r\nCostco Truffles\r\n\r\n&nbsp;\r\n\r\n<strong>Restaurants (Gift Certificates):</strong>\r\n\r\nOriginal Joe\'s\r\n\r\nJJ Morgans\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by individual sponsors:Â </strong>\r\n\r\nWine and CD basket\r\n\r\nWine and Honey Candles basket\r\n\r\nRelaxation basket\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by corporate sponsors:</strong>\r\n\r\nPlanet Organic\r\n\r\nHeart Pharmacy\r\n\r\nFor Good Measure\r\n\r\n&nbsp;\r\n\r\n<strong>Hair Styling (Gift Certificate):</strong>\r\n\r\nStyles by Susan\r\n\r\nPartings Hair Styles and Cut\r\n\r\n&nbsp;\r\n\r\n<strong>Painting:</strong>\r\n\r\nOriginal Print by Morgan Warren\r\n\r\n&nbsp;\r\n\r\n<strong>Pets (Gift Certificate):</strong>\r\n\r\nCadboro Bay Clinic exam for cat or dog\r\n\r\n&nbsp;\r\n\r\n<strong>Miscellaneous:</strong>\r\n\r\nCoast Capital picnic tote\r\n\r\nCoast Capital jacket\r\n\r\nMarion White - clothing alteration (Gift Certificate)\r\n\r\nChristian Bookstore and Music (Gift Certificate)\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "40th Anniversary Silent Auction and Door Prize Sponsors 2015", "", "inherit", "closed", "closed", "", "14137-revision-v1", "", "", "2015-09-28 11:51:01", "2015-09-28 18:51:01", "", "14137", "http://localhost:8888/TestSICPage/wordpress/14137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14144", "3", "2015-09-28 11:51:45", "2015-09-28 18:51:45", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4><strong>Up-Coming 40th Anniversary Gala Event</strong>:</h4>\r\n<strong>\r\n2015 Annual Fundraising Event</strong> to celebrate 40 years of South Island Centre: <strong>Saturday, October 17, 6-10pm at the Grand Pacific Hotel</strong>/Vancouver Ballroom (463 Belleville St). The evening is MC\'d by <strong>Jack Knox</strong> of the Times Colonist with entertainment by <strong>Ian McDougall and friends</strong> and will feature a Silent Auction and door prizes. <strong>Tickets are $75 per person</strong>. Purchase your tickets via Eventbrite <a title=\"40th anniversary Gala fundraiser 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/40th-anniversary-gala-event-saturday-october-17/\" target=\"_blank\"><strong>here</strong></a>. Please pick them up at the door at 6pm at the night of the event. For a list of <strong>Silent Auction and Door Prize sponsors</strong>, click <a title=\"2015 Silent Auction Sponsors\" href=\"http://localhost:8888/TestSICPage/wordpress/donate/sponsors/silent-auction-supports-2015/\" target=\"_blank\"><strong>here</strong></a>.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey Oct-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/14103/\" target=\"_blank\">The Twilight Journey: Understand Grief, Loss and the Elderly</a></strong>, (6 Wednesdays, October 26-December 2, 2015)\r\n\r\n<strong><a title=\"Self Injuring Youth Oct 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injurying Youth: Understanding and Responding</a> </strong> (Saturday, October 31, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-09-28 11:51:45", "2015-09-28 18:51:45", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14145", "3", "2015-09-29 11:57:13", "2015-09-29 18:57:13", "<em>Many thanks to our 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\r\n\r\n&nbsp;\r\n\r\n<strong>Entertainment:</strong>\r\n\r\nChemainus Theatre Musical tickets\r\n\r\nIMAX Theatre Family Admission/Movie pass\r\n\r\nIan McDougall CDs\r\n\r\n&nbsp;\r\n\r\n<strong>Active Lifestyle:</strong>\r\n\r\nPacifica Paddle sports 2/1 paddle boat rental\r\n\r\nSaanich Recreation drop-in passes\r\n\r\nCrystal Pool drop-in passes\r\n\r\nMount Doug Golf Course 2x pass\r\n\r\n&nbsp;\r\n\r\n<strong>Tourism:Â </strong>\r\n\r\nPrince Of Whales boat tour for 2\r\n\r\n&nbsp;\r\n\r\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\r\n\r\nSigi Heckel Massage/Reflexology Session\r\n\r\nYew Tree Yoga Pass, Heavenly Health ServicesÂ Reflexology Session\r\n\r\nGift Certificates towards Eyeware or Sunglasses\r\n\r\nBlood Pressure Monitor with batteries\r\n\r\nWater Lilly Skin Care and Esthetics Treatment\r\n\r\nDr. Frank Lobianco Podiatry Complimentary Visit and Treatment\r\n\r\n&nbsp;\r\n\r\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\r\n\r\nCanadian Tire\r\n\r\nFurnace/Heat Pump Maintenance package\r\n\r\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\r\n\r\nSearles Automotive Centre\r\n\r\n&nbsp;\r\n\r\n<strong>Food (Gift Certificates and original items)</strong>\r\n\r\nCountry Grocer\r\n\r\nPeppers Foods\r\n\r\nCobs Bread\r\n\r\nHillside Coffee and Tea\r\n\r\nCakes Etc\r\n\r\nCostco Truffles\r\n\r\n&nbsp;\r\n\r\n<strong>Restaurants (Gift Certificates):</strong>\r\n\r\nOriginal Joe\'s\r\n\r\nJJ Morgans\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by individual sponsors:Â </strong>\r\n\r\nWine and CD basket\r\n\r\nWine and Honey Candles basket\r\n\r\nRelaxation basket\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by corporate sponsors:</strong>\r\n\r\nPlanet Organic\r\n\r\nHeart Pharmacy\r\n\r\nFor Good Measure\r\n\r\n&nbsp;\r\n\r\n<strong>Hair Styling (Gift Certificate):</strong>\r\n\r\nStyles by Susan\r\n\r\nPartings Hair Styles and Cut\r\n\r\n&nbsp;\r\n\r\n<strong>Painting:</strong>\r\n\r\nOriginal Print by Morgan Warren\r\n\r\n&nbsp;\r\n\r\n<strong>Pets (Gift Certificate):</strong>\r\n\r\nCadboro Bay Clinic exam for cat or dog\r\n\r\n&nbsp;\r\n\r\n<strong>Miscellaneous:</strong>\r\n\r\nCoast Capital picnic tote\r\n\r\nCoast Capital jacket\r\n\r\nMarion White - clothing alteration (Gift Certificate)\r\n\r\nChristian Bookstore and Music (Gift Certificate)\r\n\r\nHand-knit\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "40th Anniversary Silent Auction and Door Prize Sponsors 2015", "", "inherit", "closed", "closed", "", "14137-revision-v1", "", "", "2015-09-29 11:57:13", "2015-09-29 18:57:13", "", "14137", "http://localhost:8888/TestSICPage/wordpress/14137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14147", "3", "2015-10-06 11:42:59", "2015-10-06 18:42:59", "<em>Many thanks to our 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\r\n\r\n&nbsp;\r\n\r\n<strong>Entertainment:</strong>\r\n\r\nChemainus Theatre Musical tickets\r\n\r\nIMAX Theatre Family Admission/Movie pass\r\n\r\nIan McDougall CDs\r\n\r\n&nbsp;\r\n\r\n<strong>Active Lifestyle:</strong>\r\n\r\nPacifica Paddle sports 2/1 paddle boat rental\r\n\r\nSaanich Recreation drop-in passes\r\n\r\nCrystal Pool drop-in passes\r\n\r\nMount Doug Golf Course 2x pass\r\n\r\n&nbsp;\r\n\r\n<strong>Tourism:Â </strong>\r\n\r\nPrince Of Whales Boat Tour for 2\r\n\r\n&nbsp;\r\n\r\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\r\n\r\nSigi Heckel Massage - Reflexology Session\r\n\r\nYew Tree Yoga Pass\r\n\r\nHeavenly Health Services - Reflexology Session\r\n\r\nGift Certificates towards Eyeware or Sunglasses\r\n\r\nBlood Pressure Monitor with batteries\r\n\r\nWater Lily Skin Care and Esthetics Treatment\r\n\r\nDr. Frank Lobianco Podiatry - Complimentary Visit and Treatment\r\n\r\nChristine Terry - Reflexology Session\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\r\n\r\nCanadian Tire\r\n\r\nFurnace/Heat Pump Maintenance package\r\n\r\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\r\n\r\nSearles Automotive Centre Seasonal Service Special\r\n\r\n&nbsp;\r\n\r\n<strong>Food and Wine (Gift Certificates, vouchers and original items)</strong>\r\n\r\nCountry Grocer\r\n\r\nPeppers Foods\r\n\r\nCobs Bread\r\n\r\nHillside Coffee and Tea\r\n\r\nCakes Etc\r\n\r\nCostco Truffles\r\n\r\nJazzaniah Cafe\r\n\r\nTaste Glutenfree Coffee House\r\n\r\nVillage Winery\r\n\r\n&nbsp;\r\n\r\n<strong>Restaurants (Gift Certificates):</strong>\r\n\r\nOriginal Joe\'s\r\n\r\nJJ Morgans\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by individual sponsors:Â </strong>\r\n\r\nWine and CD basket\r\n\r\nWine and Honey Candles basket\r\n\r\nRelaxation basket\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by corporate sponsors:</strong>\r\n\r\nPlanet Organic\r\n\r\nHeart Pharmacy\r\n\r\nFor Good Measure\r\n\r\nJennings Florist\r\n\r\n&nbsp;\r\n\r\n<strong>Hair Styling (Gift Certificate):</strong>\r\n\r\nStyles by Susan\r\n\r\nPartings Hair Styles and Cut\r\n\r\n&nbsp;\r\n\r\n<strong>Painting:</strong>\r\n\r\nOriginal Print by Morgan Warren\r\n\r\n&nbsp;\r\n\r\n<strong>AnimalsÂ (Gift Certificate):</strong>\r\n\r\nCadboro Bay Clinic exam for cat or dog\r\n\r\nKristen Giglio -Equine &amp; Canine Therapy\r\n\r\n&nbsp;\r\n\r\n<strong>Miscellaneous:</strong>\r\n\r\nCoast Capital picnic tote\r\n\r\nCoast Capital jacket\r\n\r\nMarion White - Clothing Alteration (Gift Certificate)\r\n\r\nChristian Bookstore and Music (Gift Certificate)\r\n\r\nBoutique de Laine Beginner\'s Knitting Set\r\n\r\nDig This - Bird House\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "40th Anniversary Silent Auction and Door Prize Sponsors 2015", "", "inherit", "closed", "closed", "", "14137-revision-v1", "", "", "2015-10-06 11:42:59", "2015-10-06 18:42:59", "", "14137", "http://localhost:8888/TestSICPage/wordpress/14137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14148", "3", "2015-10-08 12:08:47", "2015-10-08 19:08:47", "<em>Many thanks to our 40th Anniversary Silent Auction and Door Prize sponsors for their generous contributions:Â </em>\r\n\r\n&nbsp;\r\n\r\n<strong>Entertainment:</strong>\r\n\r\nChemainus Theatre Musical tickets\r\n\r\nIMAX Theatre Family Admission/Movie pass\r\n\r\nIan McDougall CDs\r\n\r\n&nbsp;\r\n\r\n<strong>Active Lifestyle:</strong>\r\n\r\nPacifica Paddle sports 2/1 paddle boat rental\r\n\r\nSaanich Recreation drop-in passes\r\n\r\nCrystal Pool drop-in passes\r\n\r\nMount Doug Golf Course 2x pass\r\n\r\n&nbsp;\r\n\r\n<strong>Tourism:Â </strong>\r\n\r\nPrince Of Whales Boat Tour for 2\r\n\r\n&nbsp;\r\n\r\n<strong>Health and Wellness (Gift Certificates and original items):Â </strong>\r\n\r\nSigi Heckel Massage - Reflexology Session\r\n\r\nYew Tree Yoga Pass\r\n\r\nHeavenly Health Services - Reflexology Session\r\n\r\nGift Certificates towards Eyeware or Sunglasses\r\n\r\nEstevan Pharmacy Blood Pressure Monitor with batteries\r\n\r\nWater Lily Skin Care and Esthetics Pedicure Treatment\r\n\r\nDr. Frank Lobianco Podiatry - Complimentary Visit and Treatment\r\n\r\nChristine Terry - Reflexology Session\r\n\r\nVictoria Exercise Rehabilitation Centre - Massage\r\n\r\nVictoria Exercise Rehabilitation Centre - Initial Consultation and 12 Rehabilitation Exercise Sessions\r\n\r\nMomma-to-be Hand and Foot Massage and hand-knit sweater for newborn\r\n\r\n&nbsp;\r\n\r\n<strong>Household and Automotive (Gift Certificates and original items):</strong>\r\n\r\nCanadian Tire\r\n\r\nRed Blue Furnace/Heat Pump Maintenance package\r\n\r\nBungalow Gifts and Kitchenware (Linens, Kitchenware etc)\r\n\r\nSearles Automotive Centre Seasonal Service Special\r\n\r\n&nbsp;\r\n\r\n<strong>Food and Wine (Gift Certificates, vouchers and original items)</strong>\r\n\r\nCountry Grocer\r\n\r\nPeppers Foods\r\n\r\nCobs Bread\r\n\r\nHillside Coffee and Tea\r\n\r\nCakes Etc\r\n\r\nCostco Truffles\r\n\r\nJazzaniah Cafe\r\n\r\nTaste Glutenfree Coffee House\r\n\r\nVillage Winery\r\n\r\n&nbsp;\r\n\r\n<strong>Restaurants (Gift Certificates):</strong>\r\n\r\nOriginal Joe\'s\r\n\r\nJJ Morgans\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by individual sponsors:Â </strong>\r\n\r\nWine and CD basket\r\n\r\nWine and Honey Candles basket\r\n\r\nRelaxation basket\r\n\r\nPreserves Basket\r\n\r\n&nbsp;\r\n\r\n<strong>Gift Baskets by corporate sponsors:</strong>\r\n\r\nPlanet Organic\r\n\r\nHeart Pharmacy\r\n\r\nFor Good Measure\r\n\r\nJennings Florist\r\n\r\nPharmasave\r\n\r\n&nbsp;\r\n\r\n<strong>Hair Styling (Gift Certificate):</strong>\r\n\r\nStyles by Susan\r\n\r\nPartings Hair Styles and Cut\r\n\r\n&nbsp;\r\n\r\n<strong>Painting:</strong>\r\n\r\nOriginal Print by Morgan Warren\r\n\r\n&nbsp;\r\n\r\n<strong>AnimalsÂ (Gift Certificate):</strong>\r\n\r\nCadboro Bay Clinic exam for cat or dog\r\n\r\nKristen Giglio - Equine &amp; Canine Therapy\r\n\r\n&nbsp;\r\n\r\n<strong>Miscellaneous:</strong>\r\n\r\nCoast Capital picnic tote\r\n\r\nCoast Capital jacket\r\n\r\nMarion White - Clothing Alteration (Gift Certificate)\r\n\r\nChristian Bookstore and Music (Gift Certificate)\r\n\r\nBoutique de Laine Beginner\'s Knitting Set\r\n\r\nDig This - Bird House\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "40th Anniversary Silent Auction and Door Prize Sponsors 2015", "", "inherit", "closed", "closed", "", "14137-revision-v1", "", "", "2015-10-08 12:08:47", "2015-10-08 19:08:47", "", "14137", "http://localhost:8888/TestSICPage/wordpress/14137-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14150", "3", "2015-10-20 09:07:25", "2015-10-20 16:07:25", "<strong>Facilitator Dave Prette</strong> (RCC) hosts this workshop for parents, educators, community service providers and caregivers on <strong>Saturday, December 5, 10am-noon at the Lounge at St Luke\'s Parish Hall building</strong> (the white building at Cedar Hill Cross Rd at Synod Rd). Enter through the front glass doors, turn right and go to the end of the hallway to the Lounge.\n\n&nbsp;\n\nThis two-hour workshop will focus on trends and concerns that affect those attempting to support self-injuring youth.\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Self-Injurying Youth: Understanding and Responding (facilitator: Dave Prette, RCC); Saturday, October 31, 2015", "", "inherit", "closed", "closed", "", "14112-autosave-v1", "", "", "2015-10-20 09:07:25", "2015-10-20 16:07:25", "", "14112", "http://localhost:8888/TestSICPage/wordpress/14112-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14151", "3", "2015-10-20 09:16:50", "2015-10-20 16:16:50", "", "Self Injuring Youth poster December 5, 2015", "", "inherit", "closed", "closed", "", "self-injuring-youth-poster-dec-2015", "", "", "2015-10-20 09:16:50", "2015-10-20 16:16:50", "", "14112", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/10/Self-Injuring-Youth-poster-Dec-2015.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14152", "3", "2015-10-20 09:22:37", "2015-10-20 16:22:37", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong>DATE CHANGED to December 5: <a title=\"Self-Injuring Youth: Understand and Responding Dec 2015\" href=\"http:http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a></strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-10-20 09:22:37", "2015-10-20 16:22:37", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14153", "3", "2015-10-20 09:25:21", "2015-10-20 16:25:21", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\nDATE CHANGED to December 5: <a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (December 5, 2015)\r\n\r\n<a title=\"Pastoral Care Team Training November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training workshop for Lay and Clergy</a> (Saturday, November 7, 2015)\r\n\r\n<a title=\"Strengthening Well-Being (Nov- Dec, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Nov. 19, 26, Dec. 3, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Professional Caregivers) Nov 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Professional Caregivers) (Nov. 28, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-10-20 09:25:21", "2015-10-20 16:25:21", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14154", "3", "2015-10-27 10:16:56", "2015-10-27 17:16:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT workshop, Saturday, November 7, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/\" target=\"_blank\">Pastoral Care Team Training Workshop for Lay and Clergy</a> </strong>(Saturday, November 7, 2015 at Church of the Advent, Colwood)\r\n\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-10-27 10:16:56", "2015-10-27 17:16:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14156", "3", "2015-11-04 12:51:24", "2015-11-04 20:51:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong> <a title=\"Strengthening Well Being Nov-Dec 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a></strong> (3 Thursdays, November 19 &amp;26, December 3, 2015). This course is geared towards women ages 18-35 years.\r\n\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-04 12:51:24", "2015-11-04 20:51:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14157", "3", "2015-11-04 12:53:10", "2015-11-04 20:53:10", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (December 5, 2015)\r\n\r\n<a title=\"Strengthening Well-Being (Nov- Dec, 2015)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-thursday-november-19-and-26-december-3-2015/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal</a> (Nov. 19, 26, Dec. 3, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Professional Caregivers) Nov 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Professional Caregivers) (Nov. 28, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-11-04 12:53:10", "2015-11-04 20:53:10", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14159", "3", "2015-11-09 11:45:51", "2015-11-09 19:45:51", "<span>The personal information you provideÂ when you leave us a commentÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act (PIPPA)</strong>. The information is only used for the purpose of informing you of our services and benefits and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â <span>We willÂ <strong>not share, trade, rent, or sell</strong>Â your email and contact information with anyone else and</span><span>Â alwaysÂ </span><span>keep your e-mail addressÂ <strong>private</strong>Â by using aÂ <strong>blind copy</strong>Â distribution system.</span></span>\r\n\r\n[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "General Inquiry - Leave a Comment", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2015-11-09 11:45:51", "2015-11-09 19:45:51", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14160", "3", "2015-11-09 11:47:32", "2015-11-09 19:47:32", "The personal information you provideÂ when you leave us a commentÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act (PIPPA)</strong>. The information is only used for the purpose of informing you of our services and benefits and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â We willÂ <strong>not share, trade, rent, or sell</strong>Â your email and contact information with anyone else except if you give us permission.\r\n\r\n[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "General Inquiry - Leave a Comment", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2015-11-09 11:47:32", "2015-11-09 19:47:32", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14161", "3", "2015-11-10 11:04:06", "2015-11-10 19:04:06", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issues\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span>Â </strong><strong>(</strong></a><strong><a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\">Supervising Counsellor)</a>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s:</span>Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2015-11-10 11:04:06", "2015-11-10 19:04:06", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14162", "3", "2015-11-10 11:05:49", "2015-11-10 19:05:49", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General Registration Information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/training program fee payment deadline for each course (one week/5 business days prior to the start date of the course or program).</li>\r\n	<li>We require a minimum number of registrants to run our courses and training programs. To avoid the heartbreak of a cancelled course or program, register early and invite your friends to join too!</li>\r\n	<li><span style=\"color: #3b3f42;\">The personal information you provide during the registration process is collected and used under the authority of theÂ </span><strong style=\"color: #3b3f42;\">Freedom of Information and Protection Privacy Act (PIPPA)</strong><span style=\"color: #3b3f42;\">. The information is used only for the purpose of administering courses or trainingÂ programs, informing you of our services and benefits, and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â </span></li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course or Training program:</span></span></strong></h4>\r\n<ol>\r\n	<li><span style=\"color: #000000;\">Â <a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a></span><span style=\"font-size: 14px;\">Â to fill out the Contact Form. The office co-ordinator will confirm the registration application by email.Â </span></li>\r\n	<li>Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â CallÂ the office co-ordinator atÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail.</li>\r\n</ol>\r\nPlease include in your phone message:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card).</li>\r\n</ul>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Payment Information:</strong></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course or training program fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week (or 5 business days)</strong>Â before the start date of the course or program.</li>\r\n</ul>\r\nTo complete the registration process and confirm a space in the course/training program, we <span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000;\">must</span></strong></span>Â receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week (5 business days) prior</strong></span> to the start date of the course or training program.\r\n\r\nRegistration is on a first come, first serve basis. If a course/training program does not have the minimum number of participants registered 5 business prior to the start date, the program may be cancelled. If this is the case, we will contact you by email or phone at least 3 business prior to the start date of the course/training program.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\nWe accept<span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card (Visa, Mastercard, Amex)</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office co-ordinator will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the office co-ordinator will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span>\r\n<ul>\r\n	<li>In the case of a course/training program cancellations due to lack of registrants, a full refund will be issued.</li>\r\n	<li>In all cases where cash transactions occurred, refunds will be paid by cheque and may require a delay of up to 10 business days for processing.</li>\r\n	<li>If fees were paid by using a credit card, refunds will go back to the same card that was used to pay the course/training program fee.</li>\r\n</ul>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2015-11-10 11:05:49", "2015-11-10 19:05:49", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14164", "3", "2015-11-10 11:20:04", "2015-11-10 19:20:04", "The personal information you provideÂ when you leave us a commentÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. The information is only used for the purpose of informing you of our services and benefits and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â We willÂ <strong>not share, trade, rent, or sell</strong>Â your email and contact information with any other outside source.\r\n\r\n[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "General Inquiry - Leave a Comment", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2015-11-10 11:20:04", "2015-11-10 19:20:04", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14167", "3", "2015-11-16 10:11:34", "2015-11-16 18:11:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-16 10:11:34", "2015-11-16 18:11:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14168", "3", "2015-11-16 10:12:15", "2015-11-16 18:12:15", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (December 5, 2015)\r\n\r\n<a title=\"Caregiver Burnout (Professional Caregivers) Nov 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Professional Caregivers) (Nov. 28, 2015)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-11-16 10:12:15", "2015-11-16 18:12:15", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14169", "3", "2015-11-16 13:37:13", "2015-11-16 21:37:13", "", "Marriage Preparation Poster Feb 13, 2016", "", "inherit", "closed", "closed", "", "marriage-prep-poster-feb-13-2016", "", "", "2015-11-16 13:37:13", "2015-11-16 21:37:13", "", "14170", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Marriage-Prep-Poster-Feb-13-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14170", "3", "2015-11-16 13:45:53", "2015-11-16 21:45:53", "For more information click on the poster :Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Marriage-Prep-Poster-Feb-13-2016.pdf\">Marriage Preparation Poster Feb 13, 2</a>\r\n\r\nWe are delighted to offer the following Marriage Preparation options:\r\n\r\n1. $150 per couple for a one-day workshop (9am-5pm)\r\n\r\n2. $175 per couple for three 1-hr individual counselling sessions\r\n\r\n3. $225 per couple for a one-day workshop and two 1-hr follow-up sessions.\r\n\r\nIf payment is made by credit card, surcharges apply.\r\n\r\n&nbsp;\r\n\r\n<strong>Facilitators: Bill Cole and Glenda Pryce</strong>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Marriage Preparation Workshop, Saturday, February 13, 2016 ", "", "publish", "closed", "closed", "", "marriage-preparation-workshop-saturday-february-13-2016", "", "", "2015-11-16 13:46:46", "2015-11-16 21:46:46", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14170", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14171", "3", "2015-11-16 13:49:50", "2015-11-16 21:49:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 16, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-16 13:49:50", "2015-11-16 21:49:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14172", "3", "2015-11-18 11:25:30", "2015-11-18 19:25:30", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-18 11:25:30", "2015-11-18 19:25:30", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14173", "3", "2015-11-19 10:49:55", "2015-11-19 18:49:55", "", "PCTT workshop Feb 6, 2016", "", "inherit", "closed", "closed", "", "pcct-workshop-feb-6-2016", "", "", "2015-11-19 10:49:55", "2015-11-19 18:49:55", "", "14174", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/PCCT-workshop-Feb-6-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14174", "3", "2015-11-19 10:53:57", "2015-11-19 18:53:57", "Facilitators: Bill Cole and Margaret Anderson\r\n\r\nFor more information:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/PCCT-workshop-Feb-6-2016.pdf\">PCTT workshop Feb 6, 2016</a>\r\n\r\n[gravityform id=\"8\" title=\"true\" description=\"true\"]\r\n\r\n&nbsp;", "Pastoral Care Team Training Workshop, Saturday, February 6, 2016 (Facilitators: Bill Cole and Margaret Anderson)", "", "publish", "closed", "closed", "", "pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson", "", "", "2015-11-19 10:59:12", "2015-11-19 18:59:12", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14174", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14175", "3", "2015-11-19 11:03:18", "2015-11-19 19:03:18", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"&lt;strong&gt;Caregiver Burnout (Professional Caregivers) November 2015&lt;/strong&gt;\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care (Professional Caregivers)</a></strong> (Saturday, November 28, 2015)\r\n\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-19 11:03:18", "2015-11-19 19:03:18", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14176", "3", "2015-11-19 11:07:29", "2015-11-19 19:07:29", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]<span style=\"color: #339966;\"><strong><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">South Island Centre Courses</span></span></strong></span>\r\n\r\nAt South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\">Current Course Offerings</strong></span>\r\nClick on the specific course listed in the sidebar at the right of this page under\r\nUpcoming EventsÂ for more information. Click on the link for each course to access registration information.\r\n\r\n<a title=\"Caregiver Burnout (Professional Caregivers) Nov 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/\" target=\"_blank\">Caregiver Burnout: The Need for Self-Care</a> (Nov. 28, 2015)\r\n\r\n<a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (December 5, 2015)\r\n\r\n<a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a> (February 6, 2016)\r\n\r\n<a title=\"Marriage Preparation course Feb 13, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\">Marriage Preparation Workshop</a> (February 13, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-11-19 11:07:29", "2015-11-19 19:07:29", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14179", "3", "2015-11-26 10:18:38", "2015-11-26 18:18:38", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignright wp-image-694 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" alt=\"bill_cole_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Counselling SupervisorÂ Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;", "Bill Cole - Counselling Supervisor", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2015-11-26 10:18:38", "2015-11-26 18:18:38", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14180", "3", "2015-11-26 10:19:08", "2015-11-26 18:19:08", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\"><img class=\"alignleft wp-image-695 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\" alt=\"margaret_anderson_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span> is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice at South Island Centre, while centering mainly around grief and loss, covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret (McKinnon) Anderson", "", "inherit", "closed", "closed", "", "44-revision-v1", "", "", "2015-11-26 10:19:08", "2015-11-26 18:19:08", "", "44", "http://localhost:8888/TestSICPage/wordpress/44-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14181", "3", "2015-11-26 10:20:44", "2015-11-26 18:20:44", "<strong><span style=\"color: #0000ff;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\"><img class=\"alignleft wp-image-834 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\" alt=\"Laurie Truant\" width=\"191\" height=\"240\" /></a></span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Laurie Truant,</strong></span>Â M.A., RCC, specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\r\n\r\nLaurie has 19 years of experience providing individual and group therapy as well as psycho-educational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Laurie Truant", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2015-11-26 10:20:44", "2015-11-26 18:20:44", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14182", "3", "2015-11-26 10:21:39", "2015-11-26 18:21:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES:</strong> We offer courses and training for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-26 10:21:39", "2015-11-26 18:21:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14183", "3", "2015-11-26 10:30:41", "2015-11-26 18:30:41", "&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor.\r\n\r\nShe began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland.\r\n\r\nMost recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider.\r\n\r\nShe received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse.\r\n\r\nShe is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2015-11-26 10:30:41", "2015-11-26 18:30:41", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14185", "3", "2015-11-26 10:32:22", "2015-11-26 18:32:22", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\"><img class=\"alignright wp-image-14184 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\" alt=\"Picture Amber Eves Nov 2015\" width=\"155\" height=\"157\" /></a>\r\n\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor.\r\n\r\nShe began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland.\r\n\r\nMost recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider.\r\n\r\nShe received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse.\r\n\r\nShe is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2015-11-26 10:32:22", "2015-11-26 18:32:22", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14186", "3", "2015-11-26 10:32:49", "2015-11-26 18:32:49", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\"><img class=\"alignleft wp-image-14184 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\" alt=\"Picture Amber Eves Nov 2015\" width=\"155\" height=\"157\" /></a>\r\n\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor.\r\n\r\nShe began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland.\r\n\r\nMost recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider.\r\n\r\nShe received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse.\r\n\r\nShe is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2015-11-26 10:32:49", "2015-11-26 18:32:49", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14187", "3", "2015-11-26 10:50:55", "2015-11-26 18:50:55", "The personal information you provideÂ when you leave us a commentÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. The information is only used for the purpose of informing you of our services and benefits and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â We willÂ <strong>not share, trade, rent, or sell</strong>Â your email and contact information with any other outside source.\r\n\r\n[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2015-11-26 10:50:55", "2015-11-26 18:50:55", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14188", "3", "2015-11-26 11:07:54", "2015-11-26 19:07:54", "The personal information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. ItÂ is only used for the purpose of informing you of our services and benefits and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â We willÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any other outside source.\r\n\r\n[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2015-11-26 11:07:54", "2015-11-26 19:07:54", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14189", "3", "2015-11-26 11:08:11", "2015-11-26 19:08:11", "<span style=\"font-size: 10pt;\">The personal information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. ItÂ is only used for the purpose of informing you of our services and benefits and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â We willÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any other outside source.</span>\r\n\r\n[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2015-11-26 11:08:11", "2015-11-26 19:08:11", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14190", "3", "2015-11-26 11:09:01", "2015-11-26 19:09:01", "<span style=\"font-size: 8pt;\"><em>The personal information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. ItÂ is only used for the purpose of informing you of our services and benefits and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â We willÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any other outside source.</em></span>\r\n\r\n[gravityform id=\"1\" name=\"Leave A Comment\"]\r\n\r\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2015-11-26 11:09:01", "2015-11-26 19:09:01", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14191", "3", "2015-11-26 11:13:48", "2015-11-26 19:13:48", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (December 5, 2015)\r\n\r\n<a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a> (February 6, 2016)\r\n\r\n<a title=\"Marriage Preparation course Feb 13, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\">Marriage Preparation Workshop</a> (February 13, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently o ffered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-11-26 11:13:48", "2015-11-26 19:13:48", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14192", "3", "2015-11-26 11:14:08", "2015-11-26 19:14:08", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (December 5, 2015)\r\n\r\n<a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a> (February 6, 2016)\r\n\r\n<a title=\"Marriage Preparation course Feb 13, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\">Marriage Preparation Workshop</a> (February 13, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension</strong> 101 to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-11-26 11:14:08", "2015-11-26 19:14:08", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14193", "3", "2015-11-26 11:16:31", "2015-11-26 19:16:31", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> (December 5, 2015)\r\n\r\n<a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a> (February 6, 2016)\r\n\r\n<a title=\"Marriage Preparation course Feb 13, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\">Marriage Preparation Workshop</a> (February 13, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2015-11-26 11:16:31", "2015-11-26 19:16:31", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14194", "3", "2015-11-26 11:31:56", "2015-11-26 19:31:56", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services, we make use of our <span style=\"color: #000000;\"><strong>Samaritan\'s Fund</strong></span>. Â If this is your first time making a donation to our Samaritan Fund or whether you already give regularly to this important cause, we have three easy donation options available.\r\n\r\nDonations can be made<span style=\"color: #000000;\">Â </span>one-time, monthly, quarterly, annually etc.:\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1 (preferred)</strong>:</span> please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 3</strong></span>: Charge a one-time or set up a monthly donation using your yourÂ <strong>credit card</strong>Â by making a donation on-line with CanadaHelps.org (<a title=\"Canada Helps donation link\" href=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target=\"_blank\">click here</a>).Â Please note that credit card companies routinely deduct a significant percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nAll personal contact information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about up-coming events and schedules, courses and services, as well as fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to our Samaritan Fund", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2015-11-26 11:31:56", "2015-11-26 19:31:56", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14195", "3", "2015-11-26 11:36:22", "2015-11-26 19:36:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses and training programs for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-26 11:36:22", "2015-11-26 19:36:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14196", "3", "2015-11-26 11:37:36", "2015-11-26 19:37:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and training seminars for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses and training programs for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-26 11:37:36", "2015-11-26 19:37:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14197", "3", "2015-11-26 11:39:10", "2015-11-26 19:39:10", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses and training programs for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling, as well as pastoral care team training.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-26 11:39:10", "2015-11-26 19:39:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14198", "3", "2015-11-26 11:41:09", "2015-11-26 19:41:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Self-injuring Youth, December 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/\" target=\"_blank\">Self-Injuring Youth: Understanding and Responding</a> </strong> (Saturday, December 5, 2015 at the Lounge at St Luke\'s Parish Hall)\r\n\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-11-26 11:41:09", "2015-11-26 19:41:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14199", "3", "2015-12-01 11:41:36", "2015-12-01 19:41:36", "", "Mid Life Directions Intensive Spring 2016", "", "inherit", "closed", "closed", "", "mid-life-directions-intensive-spring-2016", "", "", "2015-12-01 11:41:36", "2015-12-01 19:41:36", "", "14200", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/12/Mid-Life-Directions-intensive-Spring-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14200", "3", "2015-12-01 11:48:25", "2015-12-01 19:48:25", "Poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/12/Mid-Life-Directions-intensive-Spring-2016.pdf\">Mid Life Directions Intensive Spring 2016</a>\r\n\r\nFacilitator: Barbara Baillie (M.Th, MAPPC) is a certified Mid-Life Directions Consultant. An experienced retreat leader and facilitator, Barb is a dynamic teacher and spiritual director.\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Midlife Directions Intensive (Saturday, February 27 & March 5, 2016); Facilitator: Barbara Baillie", "", "publish", "closed", "closed", "", "midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie", "", "", "2015-12-01 11:49:13", "2015-12-01 19:49:13", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14200", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14201", "3", "2015-12-01 11:52:08", "2015-12-01 19:52:08", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-01 11:52:08", "2015-12-01 19:52:08", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14203", "3", "2015-12-07 09:39:46", "2015-12-07 17:39:46", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Reception Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\nIf the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry or up-coming event: </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information about an up-coming event.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-12-07 09:39:46", "2015-12-07 17:39:46", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14205", "3", "2015-12-07 09:48:28", "2015-12-07 17:48:28", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Reception Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Mondays to Fridays</strong>.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\nIf the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong> Director of Development: Caroline Donelle. </strong>Please contact her at 250-472-2851, ext. 107.\r\n\r\n<strong> Counselling Supervisor: Bill Cole.</strong> Please contact him at 250-472-2851, ext. 102.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-12-07 09:48:28", "2015-12-07 17:48:28", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14206", "3", "2015-12-07 10:11:39", "2015-12-07 18:11:39", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3></h3>\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3></h3>\r\n<h3><strong>Reception Hours:</strong></h3>\r\n<strong>9:00 am - 5:00 pm on Monday to Friday</strong>.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n\r\nIf the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong> Director of Development: Caroline Donelle. </strong>Please contact her at 250-472-2851, ext. 107.\r\n\r\n<strong> Counselling Supervisor: Bill Cole.</strong> Please contact him at 250-472-2851, ext. 102.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-12-07 10:11:39", "2015-12-07 18:11:39", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14207", "3", "2015-12-07 10:27:04", "2015-12-07 18:27:04", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Telephone:</strong>Â (250) 472-2851, extension 101 to reach the front desk. If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3><strong> Centre hours:</strong></h3>\r\n<strong>Business Hours:</strong> The Centre is open from 9:00 am - 5:00 pm on Monday to Friday.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong> Director of Development: Caroline Donelle. </strong>Please contact her at 250-472-2851, ext. 107.\r\n\r\n<strong> Counselling Supervisor: Bill Cole.</strong> Please contact him at 250-472-2851, ext. 102.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course (please include a contact phone number and the title of the course you would like to register for in the main body of the text).[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-12-07 10:27:04", "2015-12-07 18:27:04", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14208", "3", "2015-12-07 10:47:21", "2015-12-07 18:47:21", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Front Desk:</strong>Â (250) 472-2851, extension 101. If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n\r\n<strong>Director of Development: Caroline Donelle.</strong> Please contact her at (250) 472-2851, extension 107.\r\n<strong>Counselling Supervisor: Bill Cole.</strong> Please contact him at (250) 472-2851, extension 102.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3><strong> Centre hours:</strong></h3>\r\n<strong>Business Hours:</strong> The Centre is open from 9:00 am - 5:00 pm on Monday to Friday.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-12-07 10:47:21", "2015-12-07 18:47:21", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14209", "3", "2015-12-07 10:48:44", "2015-12-07 18:48:44", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: #000000;\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, extension 101 or</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a general inquiry form. Please allow 2-3 business days for a counsellor to get in touch with you.</li>\r\n</ol>\r\nFor more information to make an appointment for new and existing clients:Â <span style=\"color: #000000;\"><a title=\"Make an Appointment\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/for-prospective-clients/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2015-12-07 10:48:44", "2015-12-07 18:48:44", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14210", "3", "2015-12-07 10:50:04", "2015-12-07 18:50:04", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Front Desk:</strong>Â (250) 472-2851, and press \"0\". If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n\r\n<strong>Director of Development: Caroline Donelle.</strong> Please contact her at (250) 472-2851, extension 107.\r\n<strong>Counselling Supervisor: Bill Cole.</strong> Please contact him at (250) 472-2851, extension 102.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3><strong> Centre hours:</strong></h3>\r\n<strong>Business Hours:</strong> The Centre is open from 9:00 am - 5:00 pm on Monday to Friday.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2015-12-07 10:50:04", "2015-12-07 18:50:04", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14211", "3", "2015-12-07 10:52:45", "2015-12-07 18:52:45", "<h3><span style=\"color: #000000;\"><a title=\"Counsellor Bill Cole\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><span style=\"color: #000000;\">Bill Cole (RCC, MA) - Â Director of Services</span></a></span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h3><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h3>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2015-12-07 10:52:45", "2015-12-07 18:52:45", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14212", "3", "2015-12-07 10:54:37", "2015-12-07 18:54:37", "<h3><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h3>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h3><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h3>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h3>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></h3>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h3>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2015-12-07 10:54:37", "2015-12-07 18:54:37", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14213", "3", "2015-12-07 10:57:32", "2015-12-07 18:57:32", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">&lt;p&gt;Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.&lt;/p&gt;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">&lt;p&gt;Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.&lt;/p&gt;\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2015-12-07 10:57:32", "2015-12-07 18:57:32", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14214", "3", "2015-12-07 10:58:06", "2015-12-07 18:58:06", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2015-12-07 10:58:06", "2015-12-07 18:58:06", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14215", "3", "2015-12-07 10:59:22", "2015-12-07 18:59:22", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2015-12-07 10:59:22", "2015-12-07 18:59:22", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14216", "3", "2015-12-07 10:59:58", "2015-12-07 18:59:58", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt (RCC, MPE)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> (</span>RCC) enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (RCC, MA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2015-12-07 10:59:58", "2015-12-07 18:59:58", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14217", "3", "2015-12-07 11:01:00", "2015-12-07 19:01:00", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span> is a volunteer counsellor with South Island Centre andÂ specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2015-12-07 11:01:00", "2015-12-07 19:01:00", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14218", "3", "2015-12-07 11:09:50", "2015-12-07 19:09:50", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial counselling appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call the CentreÂ at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span>.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail. We will try to contact you within 2-3 business days for an in-take phone call after which the first appointment with a counsellor will be arranged.\r\n\r\nIf you want to contact us by email:Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a General Inquiry contact form. Â We will try to contact you within 2-3 business days forÂ an in-take phone call after whichÂ the first appointment with a counsellor will be arranged.</span></span>\r\n\r\n&nbsp;\r\n\r\n<strong>CentreÂ hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n<strong>Counselling hours</strong> are by appointment only. Consult your counsellor for details and availability.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory.Â </strong></span>You may also <strong>press extension 0Â for reception.</strong>\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2015-12-07 11:09:50", "2015-12-07 19:09:50", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14219", "3", "2015-12-07 11:15:43", "2015-12-07 19:15:43", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: #000000;\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, and press \"0\".</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to fill out a general inquiry form. Please allow 2-3 business days for a counsellor to get in touch with you.</li>\r\n</ol>\r\nFor more information to make an appointment for new and existing clients:Â <span style=\"color: #000000;\"><a title=\"Make an Appointment\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/for-prospective-clients/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2015-12-07 11:15:43", "2015-12-07 19:15:43", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14220", "3", "2015-12-07 11:17:35", "2015-12-07 19:17:35", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial counselling appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call the CentreÂ at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span>.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail. Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.\r\n\r\nIf you want to contact us by email,Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a General Inquiry contact form. Â Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.</span></span>\r\n\r\n&nbsp;\r\n\r\n<strong>CentreÂ hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n<strong>Counselling hours</strong> are by appointment only. Consult your counsellor for details and availability.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory.Â </strong></span>You may also <strong>press extension 0Â for reception.</strong>\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2015-12-07 11:17:35", "2015-12-07 19:17:35", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14221", "3", "2015-12-07 11:21:35", "2015-12-07 19:21:35", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial counselling appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call the CentreÂ at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span>.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail. Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.\r\n\r\nIf you want to contact us by email,Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a General Inquiry contact form. Â Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.</span></span>\r\n\r\n&nbsp;\r\n\r\n<strong>CentreÂ hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n<strong>Counselling hours</strong> are by appointment only. Consult your counsellor for details and availability.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory to listen to the counsellor\'s individual extension. </strong>Press the counsellor\'s 3-digit number extension to reach your counsellor\'s confidential voicemail.Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2015-12-07 11:21:35", "2015-12-07 19:21:35", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14222", "3", "2015-12-08 09:18:51", "2015-12-08 17:18:51", "", "Victoria Foundation logo", "", "inherit", "closed", "closed", "", "victoria-foundation-logo", "", "", "2015-12-08 09:18:51", "2015-12-08 17:18:51", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/12/Victoria-Foundation-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14223", "3", "2015-12-08 09:20:48", "2015-12-08 17:20:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14222\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>We acknowledge the financial support of the Victoria Foundation.\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-08 09:20:48", "2015-12-08 17:20:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14224", "3", "2015-12-08 09:22:22", "2015-12-08 17:22:22", "", "Victoria Foundation logo 2", "", "inherit", "closed", "closed", "", "victoria-foundation-logo-2", "", "", "2015-12-08 09:22:22", "2015-12-08 17:22:22", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/12/Victoria-Foundation-logo-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14225", "3", "2015-12-08 09:22:42", "2015-12-08 17:22:42", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14224\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>We acknowledge the financial support of the Victoria Foundation.\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-08 09:22:42", "2015-12-08 17:22:42", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14226", "3", "2015-12-08 09:23:34", "2015-12-08 17:23:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Sponsors</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke\'s Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_single_image image=\"14224\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Victoria Foundation.\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>We acknowledge the financial support of the Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>We acknowledge to be a United Way Greater Victoria Funded Program</h4>\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-08 09:23:34", "2015-12-08 17:23:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14227", "3", "2015-12-09 09:17:04", "2015-12-09 17:17:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Victoria Foundation.\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\nUnited Way Greater Victoria\r\n\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-09 09:17:04", "2015-12-09 17:17:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14228", "3", "2015-12-09 09:17:40", "2015-12-09 17:17:40", "", "Victoria Foundation vertical logo", "", "inherit", "closed", "closed", "", "vicfo_logo_vert_cmyk", "", "", "2015-12-09 09:17:40", "2015-12-09 17:17:40", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/12/VICFO_LOGO_Vert_CMYK.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14229", "3", "2015-12-09 09:18:44", "2015-12-09 17:18:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Victoria Foundation.\" image=\"14228\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\nUnited Way Greater Victoria\r\n\r\n\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-09 09:18:44", "2015-12-09 17:18:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14230", "3", "2015-12-09 09:22:25", "2015-12-09 17:22:25", "", "VICFO_LOGO_Vert_K[1]", "", "inherit", "closed", "closed", "", "vicfo_logo_vert_k1", "", "", "2015-12-09 09:22:25", "2015-12-09 17:22:25", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/12/VICFO_LOGO_Vert_K1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14231", "3", "2015-12-09 09:23:58", "2015-12-09 17:23:58", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>We acknowledge the financial support of the Victoria Foundation.\" image=\"14230\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\nUnited Way Greater Victoria\r\n\r\n\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-09 09:23:58", "2015-12-09 17:23:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14232", "3", "2015-12-09 09:28:36", "2015-12-09 17:28:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way Greater Victoria\r\n\r\n\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-09 09:28:36", "2015-12-09 17:28:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14233", "3", "2015-12-09 09:30:00", "2015-12-09 17:30:00", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-09 09:30:00", "2015-12-09 17:30:00", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14234", "3", "2015-12-09 10:37:28", "2015-12-09 18:37:28", "", "Ebb and Flow 6 week Feb-March 2016", "", "inherit", "closed", "closed", "", "ebb-and-flow-6-week-feb-march-2016", "", "", "2015-12-09 10:37:28", "2015-12-09 18:37:28", "", "14235", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/12/Ebb-and-Flow-6-week-Feb-March-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14235", "3", "2015-12-09 11:05:58", "2015-12-09 19:05:58", "To view the course poster, click on the link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Ebb-and-Flow-6-week-Feb-March-2016.pdf\">Ebb and Flow 6 week Feb-March 2016</a>\r\n\r\n<strong>Facilitator: Margaret Anderson</strong> (Counsellor/Educator in Grief, Loss and End of Life Care; Member of the Canadian Hospice and Palliative Care Association)\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "The Ebb and Flow of Life: An Introduction to Grief Loss (6 weeks", "", "publish", "closed", "closed", "", "the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks", "", "", "2016-01-11 11:42:29", "2016-01-11 19:42:29", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14235", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14236", "3", "2015-12-09 11:14:25", "2015-12-09 19:14:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-09 11:14:25", "2015-12-09 19:14:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14237", "3", "2015-12-14 10:59:57", "2015-12-14 18:59:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\nHoliday Hours: We are closed from <strong>Tuesday, December 22, 2015-Sunday, January 3, 2016.</strong> We re-open on Monday, January 4, 2016.\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-14 10:59:57", "2015-12-14 18:59:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14238", "3", "2015-12-14 11:01:28", "2015-12-14 19:01:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n<strong>Holiday Hours:</strong> We are closed from <strong>Tuesday, December 22, 2015-Sunday, January 3, 2016. We re-open on Monday, January 4, 2016.\r\n[dt_divider style=\"thin\" /]</strong>\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2015-12-14 11:01:28", "2015-12-14 19:01:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14239", "3", "2015-12-14 11:04:28", "2015-12-14 19:04:28", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\n<em>We are not accepting any new clients or referrals from <strong>Tuesday, December 22, 2015-January 3, 2016</strong> as our Centre is closed for the holidays. Any correspondence or phone calls received during that time will be addressed when we re-open in January.Â </em>\r\n\r\n&nbsp;\r\n\r\nIf you are new to our practice and would like to inquire about an initial counselling appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call the CentreÂ at</span> Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span>.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail. Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.\r\n\r\nIf you want to contact us by email,Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a General Inquiry contact form. Â Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.</span></span>\r\n\r\n&nbsp;\r\n\r\n<strong>CentreÂ hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n<strong>Counselling hours</strong> are by appointment only. Consult your counsellor for details and availability.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory to listen to the counsellor\'s individual extension. </strong>Press the counsellor\'s 3-digit number extension to reach your counsellor\'s confidential voicemail.Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2015-12-14 11:04:28", "2015-12-14 19:04:28", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14241", "3", "2016-01-04 15:33:17", "2016-01-04 23:33:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n<strong>Holiday Hours:</strong>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-01-04 15:33:17", "2016-01-04 23:33:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14242", "3", "2016-01-04 15:34:13", "2016-01-04 23:34:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-01-04 15:34:13", "2016-01-04 23:34:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14243", "3", "2016-01-11 11:41:18", "2016-01-11 19:41:18", "", "Ebb and Flow 6 week Feb-March 2016", "", "inherit", "closed", "closed", "", "ebb-and-flow-6-week-feb-march-2016-2", "", "", "2016-01-11 11:41:18", "2016-01-11 19:41:18", "", "14235", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Ebb-and-Flow-6-week-Feb-March-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14245", "3", "2016-01-18 11:56:02", "2016-01-18 19:56:02", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<p><b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Counselling Inquiry Form</a>.</b></p><p><b>Â </b></p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b></p>", "Children and Youth Counselling", "", "publish", "closed", "closed", "", "children-and-youth-counselling", "", "", "2018-06-13 08:34:20", "2018-06-13 15:34:20", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?page_id=14245", "5", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14246", "3", "2016-01-18 11:56:02", "2016-01-18 19:56:02", "<em>South Island Centre for Counselling and Training</em> is pleased to announce the launch of our new program \"Providing Affordable Counselling to Children and Youth (6-18yrs); Bridging the Gap\" funded by The Victoria Foundation.\r\n\r\nOur specialized registered clinical counsellors are trained and experienced in working with children through family therapy, educational programs and personal parenting and offer professional support with a variety of issues: anxiety, depression, coping with bullying, separation/divorce, grief and loss, self-image challenges, surviving academic pressures among others.\r\n\r\nUsing play, art media, storytelling and role play, children and youth are encouraged to explore individual, school or family challenges which are affecting their mental health and well-being.\r\n\r\n&nbsp;\r\n\r\nCounselling is provided on a sliding scale fee. For more information, and/or to book a consult, please contact us at (250) 472-2851, ext 101 orÂ fill out a general inquiry formÂ at your convenience.\r\n\r\n&nbsp;\r\n\r\nWe are here to help!\r\n\r\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2016-01-18 11:56:02", "2016-01-18 19:56:02", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14247", "3", "2016-01-18 11:58:27", "2016-01-18 19:58:27", " ", "", "", "publish", "closed", "closed", "", "14247", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=14247", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("14248", "3", "2016-01-18 11:59:48", "2016-01-18 19:59:48", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, children and youth (ages 6-18), families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: #000000;\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, and press \"0\".</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to fill out a general inquiry form. Please allow 2-3 business days for a counsellor to get in touch with you.</li>\r\n</ol>\r\nFor more information to make an appointment for new and existing clients:Â <span style=\"color: #000000;\"><a title=\"Make an Appointment\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/for-prospective-clients/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>.Â Â <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â </span></span>[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2016-01-18 11:59:48", "2016-01-18 19:59:48", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14249", "3", "2016-01-18 12:02:04", "2016-01-18 20:02:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We provide counselling for individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-01-18 12:02:04", "2016-01-18 20:02:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14250", "3", "2016-01-18 12:04:11", "2016-01-18 20:04:11", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-01-18 12:04:11", "2016-01-18 20:04:11", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14251", "3", "2016-01-18 12:14:18", "2016-01-18 20:14:18", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Ebb and Flow Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\">The Ebb and Flow: An Introduction to Grief and Loss</a> (6 Wednesdays, February 3 - March 9, 2016)\r\n\r\n<a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a> (Saturday, February 6, 2016)\r\n\r\n<a title=\"Marriage Preparation course Feb 13, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, February 13, 2016)\r\n\r\n<a title=\"Midlife Intensive Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Mid-Life Directions 2-Saturday Intensive</a> (2 Saturdays, February 27 and March 7, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-01-18 12:14:18", "2016-01-18 20:14:18", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14252", "3", "2016-01-20 09:54:54", "2016-01-20 17:54:54", "", "Director of Services  Job Description January 2016", "", "inherit", "closed", "closed", "", "director-of-services-january-2016", "", "", "2016-01-20 09:54:54", "2016-01-20 17:54:54", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14253", "3", "2016-01-20 10:02:20", "2016-01-20 18:02:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\nDirector of Services (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-01-20 10:02:20", "2016-01-20 18:02:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14254", "3", "2016-01-20 10:07:37", "2016-01-20 18:07:37", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Wednesdays, 3 February to 9 March, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-01-20 10:07:37", "2016-01-20 18:07:37", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14255", "3", "2016-01-20 22:10:40", "2016-01-21 06:10:40", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-01-20 22:10:40", "2016-01-21 06:10:40", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14256", "3", "2016-01-20 22:11:43", "2016-01-21 06:11:43", "<em>South Island Centre for Counselling and Training</em> is pleased to announce the launch of our new program \"Providing Affordable Counselling to Children and Youth (6-18yrs); Bridging the Gap\" funded by The Victoria Foundation.\r\n\r\nOur specialized registered clinical counsellors are trained and experienced in working with children through family therapy, educational programs and personal parenting and offer professional support with a variety of issues: anxiety, depression, coping with bullying, separation/divorce, grief and loss, self-image challenges, surviving academic pressures among others.\r\n\r\nUsing talk therapy, play, art media, storytelling and role play, children and youth are encouraged to explore individual, school or family challenges which are affecting their mental health and well-being.\r\n\r\nCounselling is provided on a sliding scale fee. For more information, and/or to book a consult, please contact us at (250) 472-2851, ext 101 orÂ fill out a general inquiry formÂ at your convenience.\r\n\r\nWe are here to help!\r\n\r\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2016-01-20 22:11:43", "2016-01-21 06:11:43", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14258", "3", "2016-01-27 09:02:37", "2016-01-27 17:02:37", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc (OT); MDiv (SW))</strong></span>\r\n\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-01-27 09:02:37", "2016-01-27 17:02:37", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14259", "3", "2016-01-27 09:04:05", "2016-01-27 17:04:05", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span>Audrey Gibson (BSc - OT; MDiv - SW)</span></span></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-01-27 09:04:05", "2016-01-27 17:04:05", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14260", "3", "2016-01-28 10:34:45", "2016-01-28 18:34:45", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a></strong> (Church of the Advent, 510 Mout View Ave; February 6, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-01-28 10:34:45", "2016-01-28 18:34:45", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14261", "3", "2016-01-28 10:35:23", "2016-01-28 18:35:23", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"PCTT Feb 6, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training workshop</a> (Saturday, February 6, 2016)\r\n\r\n<a title=\"Marriage Preparation course Feb 13, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, February 13, 2016)\r\n\r\n<a title=\"Midlife Intensive Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Mid-Life Directions 2-Saturday Intensive</a> (2 Saturdays, February 27 and March 7, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-01-28 10:35:23", "2016-01-28 18:35:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14262", "3", "2016-02-02 09:53:24", "2016-02-02 17:53:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Marriage Preparation workshop, February 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\"> Marriage Preparation Workshop</a> </strong>(Saturday, February 13, 2016)\r\n\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-02 09:53:24", "2016-02-02 17:53:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14263", "3", "2016-02-02 09:54:20", "2016-02-02 17:54:20", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Marriage Preparation course Feb 13, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, February 13, 2016)\r\n\r\n<a title=\"Midlife Intensive Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Mid-Life Directions 2-Saturday Intensive</a> (2 Saturdays, February 27 and March 7, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-02-02 09:54:20", "2016-02-02 17:54:20", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14265", "3", "2016-02-09 10:00:44", "2016-02-09 18:00:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13594\" target=\"_blank\">Family Systems Theory (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-09 10:00:44", "2016-02-09 18:00:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14266", "3", "2016-02-09 10:01:35", "2016-02-09 18:01:35", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Midlife Intensive Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Mid-Life Directions 2-Saturday Intensive</a> (2 Saturdays, February 27 and March 7, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-02-09 10:01:35", "2016-02-09 18:01:35", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14267", "3", "2016-02-11 10:13:21", "2016-02-11 18:13:21", "", "Family Systems Intensive July 2016", "", "inherit", "closed", "closed", "", "family-systems-intensive-july-2016", "", "", "2016-02-11 10:13:21", "2016-02-11 18:13:21", "", "14268", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Family-Systems-Intensive-July-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14268", "3", "2016-02-11 10:19:12", "2016-02-11 18:19:12", "To view the poster, click on the link on the right:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Family-Systems-Intensive-July-2016.pdf\">Family Systems Intensive July 2016</a>\r\n\r\nFacilitator: Bill Cole (MA, RCC)\r\n\r\nThis course is designed for those who wish to explore family systems for professional as well as personal purposes. This course will give you a better understanding of relationship patterns, what can go wrong, and how you can contribute to greater health at home, at work, in your company or organization, and in the lives of others.\r\n\r\nLearn about family systems concepts, personal family of origin work, case presentations, practice counselling and philosophical reflection.\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Family Systems Intensive (Monday-Friday, July 4-8, 2016)", "", "publish", "closed", "closed", "", "family-systems-intensive-monday-friday-july-4-8-2016", "", "", "2016-02-15 12:43:18", "2016-02-15 20:43:18", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14268", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14269", "3", "2016-02-11 11:52:39", "2016-02-11 19:52:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"Family Systems Summer 2016 Intensive\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Summer 2016 Intensive</a> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)</strong>\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-11 11:52:39", "2016-02-11 19:52:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14270", "3", "2016-02-11 12:44:51", "2016-02-11 20:44:51", "To view the course poster, click on the link on the right:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Twilight-Journey-6-week-course-April-May-2016.pdf\">Twilight Journey 6 week course April-May 2016</a>\r\n\r\n<strong>Facilitator: Margaret Anderson</strong>\r\n\r\nThis 6-week course is for professional caregivers, clergy and others who work with and/or support people as they transition towards end of life. Learn about the unique losses and challenges of chronic illness and advanced old age as well as the value of advocacy, authorship and a palliative approach to care. Acquire tools which enhance end of life communication and improve both quality of life and quality of care. Learn practical ways to help and support family members as well as yourself.\r\n\r\nCOURSE IS FULL. WAITLIST STARTED. Please use the form below to indicate interest. Thank you.\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "The Twilight Journey: Grief, Loss and the Very Elderly (6 Thursdays, April 14-May 19, 2016)", "", "publish", "closed", "closed", "", "the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016", "", "", "2016-04-04 11:47:37", "2016-04-04 18:47:37", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14270", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14271", "3", "2016-02-11 12:47:52", "2016-02-11 20:47:52", "", "Twilight Journey 6 week course April-May 2016", "", "inherit", "closed", "closed", "", "twilight-journey-6-week-course-april-may-2016", "", "", "2016-02-11 12:47:52", "2016-02-11 20:47:52", "", "14270", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Twilight-Journey-6-week-course-April-May-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14272", "3", "2016-02-11 12:49:24", "2016-02-11 20:49:24", "<strong>Facilitator: Margaret Anderson</strong>\n\nThis 6-week course is for professional caregivers, clergy and others who work with and/or support people as they transition towards end of life. Learn about the unique losses and challenges of chronic illness and advanced old age as well as the value of advocacy, authorship and a palliative approach to care. Acquire tools which enhance end of life communication and improve both quality of life and quality of care. Learn practical ways to help and support family members as well as yourself. \n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "The Twilight Journey: Grief, Loss and the Very Elderly (6 Thursdays, April 14-May 19, 2016)", "", "inherit", "closed", "closed", "", "14270-autosave-v1", "", "", "2016-02-11 12:49:24", "2016-02-11 20:49:24", "", "14270", "http://localhost:8888/TestSICPage/wordpress/14270-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14273", "3", "2016-02-11 12:52:25", "2016-02-11 20:52:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Family Systems Summer 2016 Intensive\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Summer 2016 Intensive</a> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)</strong>\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-11 12:52:25", "2016-02-11 20:52:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14274", "3", "2016-02-11 12:54:33", "2016-02-11 20:54:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Family Systems Summer 2016 Intensive\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-11 12:54:33", "2016-02-11 20:54:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14275", "3", "2016-02-15 12:44:49", "2016-02-15 20:44:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-15 12:44:49", "2016-02-15 20:44:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14277", "3", "2016-02-17 10:08:20", "2016-02-17 18:08:20", "", "Marriage Preparation Workshop June 4, 2016", "", "inherit", "closed", "closed", "", "marriage-prep-poster-june-4-2016", "", "", "2016-02-17 10:08:20", "2016-02-17 18:08:20", "", "14278", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Marriage-Prep-Poster-June-4-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14278", "3", "2016-02-17 10:23:18", "2016-02-17 18:23:18", "Poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Marriage-Prep-Poster-June-4-2016.pdf\">Marriage Preparation Workshop June 4, 2016</a>\r\n\r\nALL COUPLES ARE WELCOME!\r\n\r\n<strong>Facilitators: Bill Cole and Glenda Pryce</strong>\r\n\r\nFull-day workshop on June 4, 2016: $150 per couple.\r\n\r\nAdditionalÂ marriage preparation options:\r\n\r\n1. Three 1-hr individual couple\'s counselling session ($175 per couple)\r\n\r\n2. 1-day workshop and two 1-hr follow-up sessions ($225 per couple)\r\n\r\n&nbsp;\r\n\r\n<strong>Workshop topicsÂ include:</strong>\r\n\r\nFamily Diagram, Family of Origin, relationship patterns, self-differentiation, responsibility, managing conflict, intimacy, sexuality and languages of love.\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Marriage Preparation Workshop, Saturday, June 4, 2016 (Facilitators: Bill Cole and Glenda Pryce)", "", "publish", "closed", "closed", "", "marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce", "", "", "2016-02-17 10:23:18", "2016-02-17 18:23:18", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14278", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14279", "3", "2016-02-17 10:26:32", "2016-02-17 18:26:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Thursday, February 18, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Midlife Directions Intensive (Feb 27 &amp; March 5, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Midlife Directions Intensive</a></strong> (Saturday, February 27 and March 5, 2016)\r\n\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-17 10:26:32", "2016-02-17 18:26:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14280", "3", "2016-02-17 11:19:42", "2016-02-17 19:19:42", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Midlife Intensive Feb-March 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/\" target=\"_blank\">Mid-Life Directions 2-Saturday Intensive</a> (2 Saturdays, February 27 and March 7, 2016)\r\n\r\n<strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong> (6 Thursdays, April 14-May 19, 2016)\r\n\r\n<strong>Couple\'s Marriage Preparation Workshop</strong> (Saturday, June 4, 2016)\r\n\r\n<strong>Family Systems Theory</strong> (Monday-Friday, 4-8 July, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-02-17 11:19:42", "2016-02-17 19:19:42", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14281", "3", "2016-02-17 11:22:30", "2016-02-17 19:22:30", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14-May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer Intensive</a></strong> (Monday-Friday, 4-8 July, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-02-17 11:22:30", "2016-02-17 19:22:30", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14282", "3", "2016-02-18 09:13:08", "2016-02-18 17:13:08", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14-May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\">Couple\'s Marriage Preparation Course</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer Intensive</a></strong> (Monday-Friday, 4-8 July, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-02-18 09:13:08", "2016-02-18 17:13:08", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14283", "3", "2016-02-22 10:56:51", "2016-02-22 18:56:51", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Director of Services Job Description Jan 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/01/Director-of-Services-January-2016.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Tuesday, March 15, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-22 10:56:51", "2016-02-22 18:56:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14284", "3", "2016-02-22 11:03:20", "2016-02-22 19:03:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\nDirector of Services (application deadline: Tuesday, March 15, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-22 11:03:20", "2016-02-22 19:03:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14285", "3", "2016-02-22 11:03:42", "2016-02-22 19:03:42", "", "Job Description Director of Services March 2016", "", "inherit", "closed", "closed", "", "job-description-director-of-services-march-2016", "", "", "2016-02-22 11:03:42", "2016-02-22 19:03:42", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Job-Description-Director-of-Services-March-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14286", "3", "2016-02-22 11:05:20", "2016-02-22 19:05:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Job Description Director of Services March 15, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=14285\" target=\"_blank\">Director of Services</a> (application deadline: Tuesday, March 15, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-22 11:05:20", "2016-02-22 19:05:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14287", "3", "2016-02-22 12:23:09", "2016-02-22 20:23:09", "", "Job Description Director of Services March 2016", "", "inherit", "closed", "closed", "", "job-description-director-of-services-march-2016-2", "", "", "2016-02-22 12:23:09", "2016-02-22 20:23:09", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Job-Description-Director-of-Services-March-20161.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14288", "3", "2016-02-22 12:24:25", "2016-02-22 20:24:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\nDirector of Services (application deadline: Tuesday, March 15, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-22 12:24:25", "2016-02-22 20:24:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14289", "3", "2016-02-22 12:25:50", "2016-02-22 20:25:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Career Opportunity</h4>\r\n<a title=\"Job Description Director of Services March 15, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/02/Job-Description-Director-of-Services-March-20161.pdf\" target=\"_blank\">Director of Services</a> (application deadline: Tuesday, March 15, 2016). If interested, please submit a resume and cover letter to admin@localhost and insert \"Director of Services application\" in the subject line.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-02-22 12:25:50", "2016-02-22 20:25:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14292", "3", "2016-03-09 09:31:41", "2016-03-09 17:31:41", "<span style=\"text-decoration: underline;\">Board Members 2015-2016:</span>\r\n\r\nSandra Scarth, OC (Chair)\r\n\r\nJim Gibson (Treasurer)\r\n\r\nSally Tuckey (Secretary)\r\n\r\nFather Dean Henderson (Member-at-Large)\r\n\r\nGreg Beattie (Member-at-Large)\r\n\r\nBarbara Underhill (Member-at-Large)\r\n\r\nBill Cole (ex officio)\r\n\r\nCaroline Donelle (ex officio)\r\n\r\nSusanne Reul-Zastre (ex officio)", "Board of Directors 2015-2016", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2016-03-09 09:31:41", "2016-03-09 17:31:41", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14294", "3", "2016-03-16 09:20:53", "2016-03-16 16:20:53", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-03-16 09:20:53", "2016-03-16 16:20:53", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14295", "3", "2016-03-16 09:23:02", "2016-03-16 16:23:02", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Susan Cachay (B.Ed., Practicum Counsellor)Â </strong></span></h4>\r\nSusan Cachay is completing her counselling practicum at South Island Centre. Â She is currently finishing her Masterâ€™s Degree in Counselling at the Victoria campus of the City University of Seattle. Â Susan holds an undergraduate degree in secondary education from the University of Victoria and is also a registered nutritionist. Â  Susan likes to offer a combined approach with her background in nutrition and counselling when working with clients in the areas of anxiety, depression, and disordered eating. Â Susan also utilizes techniques from mindfulness based therapy, response-based, narrative, and solution based therapy.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Amber Eves (MA, RCC)</span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-03-16 09:23:02", "2016-03-16 16:23:02", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14296", "3", "2016-03-16 09:24:47", "2016-03-16 16:24:47", "<h4><span style=\"text-decoration: underline;\"><strong><span style=\"text-decoration: underline;\">Bill Cole (MA, RCC) - Counselling Supervisor</span></strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MA, RCC)</strong></span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-03-16 09:24:47", "2016-03-16 16:24:47", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14297", "3", "2016-03-22 12:05:57", "2016-03-22 19:05:57", "<strong>Facilitators: Amber Eve (M.Ed, RCC) and Liz Beattie (BA)</strong>\r\n\r\nThe capacity for this support group is 8 participants,Â so hurry if you want to ensure a spot!\r\n\r\nFor more information, click on the poster/link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/03/Youth-Support-Group-April-June-20162.pdf\">Teen Anxiety Support Group April-June 2016</a>\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"10\" title=\"true\" description=\"true\"]", "Teen Support Group for Anxiety (8 Saturdays, April 16-June 11, 2016)", "", "publish", "closed", "closed", "", "teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016", "", "", "2016-03-29 09:28:13", "2016-03-29 16:28:13", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14297", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14298", "3", "2016-03-23 12:39:12", "2016-03-23 19:39:12", "", "Teen Anxiety Support Group April-June 2016", "", "inherit", "closed", "closed", "", "youth-support-group-april-june-2016", "", "", "2016-03-23 12:39:12", "2016-03-23 19:39:12", "", "14297", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/03/Youth-Support-Group-April-June-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14299", "3", "2016-03-29 09:28:12", "2016-03-29 16:28:12", "<strong>Facilitators: Amber Eve (M.Ed, RCC) and Liz Beattie (BA)</strong>\n\nThe capacity for this support group is 8 participants,Â so hurry if you want to ensure a spot!\n\nFor more information, click on the poster/link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/03/Youth-Support-Group-April-June-20162.pdf\">Teen Anxiety Support Group April-June 2016</a>\n\n&nbsp;\n\n[gravityform id=\"10\" title=\"true\" description=\"true\"]", "Teen Support Group for Anxiety (8 Saturdays, April 16-June 11, 2016)", "", "inherit", "closed", "closed", "", "14297-autosave-v1", "", "", "2016-03-29 09:28:12", "2016-03-29 16:28:12", "", "14297", "http://localhost:8888/TestSICPage/wordpress/14297-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14300", "3", "2016-03-23 12:44:07", "2016-03-23 19:44:07", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (8 Saturdays, April 16-June 11, 2016 except May 21)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-03-23 12:44:07", "2016-03-23 19:44:07", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14301", "3", "2016-03-23 12:49:26", "2016-03-23 19:49:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (8 Saturdays, April 16-June 11, 2016 except May 21)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:\r\nWednesday, May 11: Annual General Meeting at 7:00pm at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).</h4>\r\nSave the date: Saturday, June 11, 2016, 1:00-4:00pm: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-03-23 12:49:26", "2016-03-23 19:49:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14302", "3", "2016-03-23 12:52:11", "2016-03-23 19:52:11", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (8 Saturdays, April 16-June 11, 2016 except May 21)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-03-23 12:52:11", "2016-03-23 19:52:11", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14303", "3", "2016-03-23 12:54:09", "2016-03-23 19:54:09", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14-May 19, 2016)\r\n\r\n<strong>Teen Anxiety Support Group</strong> (8 Saturdays, April 16-June 11, 2016 except May 21)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\">Couple\'s Marriage Preparation Course</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer Intensive</a></strong> (Monday-Friday, 4-8 July, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-03-23 12:54:09", "2016-03-23 19:54:09", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14304", "3", "2016-03-23 12:55:13", "2016-03-23 19:55:13", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14-May 19, 2016)\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, April 16-June 11, 2016 except May 21)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\">Couple\'s Marriage Preparation Course</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer Intensive</a></strong> (Monday-Friday, 4-8 July, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-03-23 12:55:13", "2016-03-23 19:55:13", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14306", "3", "2016-03-24 09:26:03", "2016-03-24 16:26:03", "", "Teen Anxiety Support Group April-June 2016", "", "inherit", "closed", "closed", "", "youth-support-group-april-june-2016-2", "", "", "2016-03-24 09:26:03", "2016-03-24 16:26:03", "", "14297", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/03/Youth-Support-Group-April-June-20161.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14307", "3", "2016-03-24 09:47:06", "2016-03-24 16:47:06", "", "Teen Anxiety Support Group April-June 2016", "", "inherit", "closed", "closed", "", "youth-support-group-april-june-2016-3", "", "", "2016-03-24 09:47:06", "2016-03-24 16:47:06", "", "14297", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/03/Youth-Support-Group-April-June-20162.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14308", "3", "2016-03-29 09:29:51", "2016-03-29 16:29:51", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016)\r\n\r\n<a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (8 Saturdays, April 16-June 11, 2016 except May 21). Capacity for this group is 8 participants - please register early to reserve your spot.\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-03-29 09:29:51", "2016-03-29 16:29:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14310", "3", "2016-04-04 11:46:38", "2016-04-04 18:46:38", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"The Twilight Journey (6 Thursdays, April 14-May 19, 2016)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/\" target=\"_blank\">The Twilight Journey: Grief, Loss and the Very Elderly</a></strong> (6 Thursdays, April 14 - May 19, 2016). Course is full - waitlist started. Please contact us to indicate interest.\r\n\r\n<a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (8 Saturdays, April 16-June 11, 2016 except May 21). Capacity for this group is 8 participants - please register early to reserve your spot.\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-04 11:46:38", "2016-04-04 18:46:38", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14311", "3", "2016-04-07 11:19:33", "2016-04-07 18:19:33", "For more information click on the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Self-Injuring-Youth-poster-May-20161.pdf\">Self Injuring Youth poster May 2016</a>\r\n\r\n<strong>Facilitator:</strong> Dave Prette, RCC\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Self-Injuring Youth: Understanding and Responding (Saturday, May 28, 2016; Facilitator: Dave Prette, RCC)", "", "publish", "closed", "closed", "", "self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc", "", "", "2016-04-11 09:18:28", "2016-04-11 16:18:28", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14311", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14312", "3", "2016-04-07 11:20:02", "2016-04-07 18:20:02", "", "Self Injuring Youth poster May 2016", "", "inherit", "closed", "closed", "", "self-injuring-youth-poster-may-2016", "", "", "2016-04-07 11:20:02", "2016-04-07 18:20:02", "", "14311", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Self-Injuring-Youth-poster-May-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14313", "3", "2016-04-07 11:27:59", "2016-04-07 18:27:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (8 Saturdays, April 16-June 11, 2016 except May 21). Capacity for this group is 8 participants - please register early to reserve your spot.\r\n\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief and loss, life transitions, eldercare issues, marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-07 11:27:59", "2016-04-07 18:27:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14314", "3", "2016-04-07 16:32:17", "2016-04-07 23:32:17", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, April 16-June 11, 2016 except May 21)\r\n\r\n<a title=\"Self-Injuring Youth, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong> </a> (Saturday, May 28, 2016)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\">Couple\'s Marriage Preparation Course</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer Intensive</a></strong> (Monday-Friday, 4-8 July, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-04-07 16:32:17", "2016-04-07 23:32:17", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14315", "3", "2016-04-11 09:17:43", "2016-04-11 16:17:43", "", "Self Injuring Youth poster May 2016", "", "inherit", "closed", "closed", "", "self-injuring-youth-poster-may-2016-2", "", "", "2016-04-11 09:17:43", "2016-04-11 16:17:43", "", "14311", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Self-Injuring-Youth-poster-May-20161.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14316", "3", "2016-04-11 12:57:13", "2016-04-11 19:57:13", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial counselling appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call the CentreÂ at</span> Â <i class=\"fa fa-phone\"></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span>.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail. Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.\r\n\r\nIf you want to contact us by email,Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a General Inquiry contact form. Â Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.</span></span>\r\n\r\n&nbsp;\r\n\r\n<strong>CentreÂ hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n<strong>Counselling hours</strong> are by appointment only. Consult your counsellor for details and availability.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory to listen to the counsellor\'s individual extension. </strong>Press the counsellor\'s 3-digit number extension to reach your counsellor\'s confidential voicemail.Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2016-04-11 12:57:13", "2016-04-11 19:57:13", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14318", "3", "2016-04-13 10:18:44", "2016-04-13 17:18:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Teen Anxiety Support Group, April-June 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (8 Saturdays, April 16-June 11, 2016 except May 21). Capacity for this group is 8 participants - please register early to reserve your spot.\r\n\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-13 10:18:44", "2016-04-13 17:18:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14319", "3", "2016-04-13 10:41:15", "2016-04-13 17:41:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses</h4>\r\nPlease contact us to express interest in the workshop/courses below:\r\nThe Twilight Journey- Grief, Loss and the Very Elderly (6 weekday evenings)\r\nThe Ebb and Flow of Life - An Introduction to Grief and Loss (6 weekday evenings)\r\nCaregiver Support for Professionals or Family (1-day intensive)\r\nPastoral Care Team Training (1-day intensive)\r\nMidlife Directions (2-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-13 10:41:15", "2016-04-13 17:41:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14320", "3", "2016-04-13 10:44:10", "2016-04-13 17:44:10", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong>The Twilight Journey- Grief, Loss and the Very Elderly</strong> (6 weekday evenings)\r\n<strong>The Ebb and Flow of Life - An Introduction to Grief and Loss</strong> (6 weekday evenings)\r\n<strong>Caregiver Support for Professionals or Famil</strong>y (1-day intensive)\r\n<strong>Pastoral Care Team Training</strong> (1-day intensive)\r\n<strong>Midlife Directions</strong> (2-day intensive)\r\n<strong>The Enneagram</strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-13 10:44:10", "2016-04-13 17:44:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14321", "3", "2016-04-13 10:45:15", "2016-04-13 17:45:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong>The Twilight Journey- Grief, Loss and the Very Elderly</strong> (6 weekday evenings)\r\n<strong>The Ebb and Flow of Life - An Introduction to Grief and Loss</strong> (6 weekday evenings)\r\n<strong>Caregiver Support for Professionals or Famil</strong>y (1-day intensive)\r\n<strong>Pastoral Care Team Training</strong> (1-day intensive)\r\n<strong>Midlife Directions</strong> (2-day intensive)\r\n<strong>The Enneagram</strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-13 10:45:15", "2016-04-13 17:45:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14322", "3", "2016-04-13 12:46:34", "2016-04-13 19:46:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong>Teen Anxiety Support Group</strong> (8 Saturday afternoons)\r\n<strong>The Twilight Journey- Grief, Loss and the Very Elderly</strong> (6 weekday evenings)\r\n<strong>The Ebb and Flow of Life - An Introduction to Grief and Loss</strong> (6 weekday evenings)\r\n<strong>Caregiver Support for Professionals or Famil</strong>y (1-day intensive)\r\n<strong>Pastoral Care Team Training</strong> (1-day intensive)\r\n<strong>Midlife Directions</strong> (2-day intensive)\r\n<strong>The Enneagram</strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-13 12:46:34", "2016-04-13 19:46:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14323", "3", "2016-04-14 11:57:38", "2016-04-14 18:57:38", "[gravityform id=\"11\" title=\"true\" description=\"true\"]", "Annual Membership Application", "", "publish", "closed", "closed", "", "annual-membership-application", "", "", "2017-02-22 10:59:06", "2017-02-22 18:59:06", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=14323", "35", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14324", "3", "2016-04-14 11:57:38", "2016-04-14 18:57:38", "[gravityform id=\"11\" title=\"true\" description=\"true\"]", "Annual Membership Application", "", "inherit", "closed", "closed", "", "14323-revision-v1", "", "", "2016-04-14 11:57:38", "2016-04-14 18:57:38", "", "14323", "http://localhost:8888/TestSICPage/wordpress/14323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14326", "3", "2016-04-18 10:31:21", "2016-04-18 17:31:21", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong>Pastoral Care Team Training</strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong>Teen Anxiety Support Group</strong> (8 Saturday afternoons)\r\n<strong>The Twilight Journey- Grief, Loss and the Very Elderly</strong> (6 weekday evenings)\r\n<strong>The Ebb and Flow of Life - An Introduction to Grief and Loss</strong> (6 weekday evenings)\r\n<strong>Caregiver Support for Professionals or Family</strong>y (1-day intensive)\r\n<strong>Midlife Directions</strong> (2-day intensive)\r\n<strong>The Enneagram</strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-18 10:31:21", "2016-04-18 17:31:21", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14327", "3", "2016-04-19 10:20:25", "2016-04-19 17:20:25", "[gravityform id=\"10\" title=\"true\" description=\"true\"]", "Teen Anxiety Support Group - Register Interest ", "", "publish", "closed", "closed", "", "teen-anxiety-support-group-register-interest", "", "", "2017-07-28 18:18:03", "2017-07-29 01:18:03", "", "15087", "http://localhost:8888/TestSICPage/wordpress/?page_id=14327", "4", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14328", "3", "2016-04-19 10:20:25", "2016-04-19 17:20:25", "[gravityform id=\"10\" title=\"true\" description=\"true\"]", "Teen Anxiety Support Group - Register Interest ", "", "inherit", "closed", "closed", "", "14327-revision-v1", "", "", "2016-04-19 10:20:25", "2016-04-19 17:20:25", "", "14327", "http://localhost:8888/TestSICPage/wordpress/14327-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14329", "3", "2016-04-19 10:21:10", "2016-04-19 17:21:10", "", "Teen Anxiety Support Group - Register Interest ", "", "inherit", "closed", "closed", "", "14327-revision-v1", "", "", "2016-04-19 10:21:10", "2016-04-19 17:21:10", "", "14327", "http://localhost:8888/TestSICPage/wordpress/14327-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14330", "3", "2016-04-19 10:24:59", "2016-04-19 17:24:59", "[gravityform id=\"10\" title=\"true\" description=\"true\"]", "Teen Anxiety Support Group - Register Interest ", "", "inherit", "closed", "closed", "", "14327-revision-v1", "", "", "2016-04-19 10:24:59", "2016-04-19 17:24:59", "", "14327", "http://localhost:8888/TestSICPage/wordpress/14327-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14331", "3", "2016-04-19 10:26:34", "2016-04-19 17:26:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong>Pastoral Care Team Training</strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"General interest - Youth Support Group\" href=\"http://localhost:8888/TestSICPage/wordpress/teen-anxiety-support-group-register-interest/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong>The Twilight Journey- Grief, Loss and the Very Elderly</strong> (6 weekday evenings)\r\n<strong>The Ebb and Flow of Life - An Introduction to Grief and Loss</strong> (6 weekday evenings)\r\n<strong>Caregiver Support for Professionals or Family</strong>y (1-day intensive)\r\n<strong>Midlife Directions</strong> (2-day intensive)\r\n<strong>The Enneagram</strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-19 10:26:34", "2016-04-19 17:26:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14333", "3", "2016-04-19 10:27:45", "2016-04-19 17:27:45", "[gravityform id=\"12\" title=\"true\" description=\"true\"]", "Indicate Interest for a Workshop/Course/Training Program", "", "publish", "closed", "closed", "", "indicate-interest-for-a-workshopcoursetraining-program", "", "", "2016-04-19 10:34:23", "2016-04-19 17:34:23", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=14333", "35", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14334", "3", "2016-04-19 10:27:45", "2016-04-19 17:27:45", "[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Indicate Interest for a Workshop/Course/Training Program", "", "inherit", "closed", "closed", "", "14333-revision-v1", "", "", "2016-04-19 10:27:45", "2016-04-19 17:27:45", "", "14333", "http://localhost:8888/TestSICPage/wordpress/14333-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14335", "3", "2016-04-19 10:28:36", "2016-04-19 17:28:36", "", "Indicate Interest for a Workshop/Course/Training Program", "", "inherit", "closed", "closed", "", "14333-revision-v1", "", "", "2016-04-19 10:28:36", "2016-04-19 17:28:36", "", "14333", "http://localhost:8888/TestSICPage/wordpress/14333-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14336", "3", "2016-04-19 10:34:23", "2016-04-19 17:34:23", "[gravityform id=\"12\" title=\"true\" description=\"true\"]", "Indicate Interest for a Workshop/Course/Training Program", "", "inherit", "closed", "closed", "", "14333-revision-v1", "", "", "2016-04-19 10:34:23", "2016-04-19 17:34:23", "", "14333", "http://localhost:8888/TestSICPage/wordpress/14333-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14337", "3", "2016-04-19 10:48:34", "2016-04-19 17:48:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"General interest - Youth Support Group\" href=\"http://localhost:8888/TestSICPage/wordpress/teen-anxiety-support-group-register-interest/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-19 10:48:34", "2016-04-19 17:48:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14338", "3", "2016-04-20 11:00:59", "2016-04-20 18:00:59", "", "2016 Spring Newsletter ", "", "inherit", "closed", "closed", "", "spring-newsletter-2016-final", "", "", "2016-04-20 11:00:59", "2016-04-20 18:00:59", "", "14339", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Spring-Newsletter-2016-Final.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14339", "3", "2016-04-20 11:05:35", "2016-04-20 18:05:35", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Christmas-Newsletter-2016-.pdf\">Christmas Newsletter 2016</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/10/Fall-Newsletter-2016-FINAL.pdf\">Fall Newsletter 2016 </a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Spring-Newsletter-2016-Final.pdf\">2016 Spring Newsletter</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Christmas-2015-Newsletter-FINAL.pdf\">2015 Christmas Newsletter </a>", "Our Newsletter", "", "publish", "closed", "closed", "", "newsletters", "", "", "2017-02-22 11:24:08", "2017-02-22 19:24:08", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=14339", "35", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14340", "3", "2016-04-20 11:05:35", "2016-04-20 18:05:35", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Spring-Newsletter-2016-Final.pdf\">2016 Spring Newsletter </a>", "Newsletters ", "", "inherit", "closed", "closed", "", "14339-revision-v1", "", "", "2016-04-20 11:05:35", "2016-04-20 18:05:35", "", "14339", "http://localhost:8888/TestSICPage/wordpress/14339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14341", "3", "2016-04-20 11:07:13", "2016-04-20 18:07:13", "", "2015 Christmas Newsletter ", "", "inherit", "closed", "closed", "", "christmas-2015-newsletter-final", "", "", "2016-04-20 11:07:13", "2016-04-20 18:07:13", "", "14339", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Christmas-2015-Newsletter-FINAL.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14342", "3", "2016-04-20 11:10:36", "2016-04-20 18:10:36", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Spring-Newsletter-2016-Final.pdf\">2016 Spring Newsletter</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Christmas-2015-Newsletter-FINAL.pdf\">2015 Christmas Newsletter </a>", "Our Newsletter", "", "inherit", "closed", "closed", "", "14339-revision-v1", "", "", "2016-04-20 11:10:36", "2016-04-20 18:10:36", "", "14339", "http://localhost:8888/TestSICPage/wordpress/14339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14343", "3", "2016-04-20 11:12:48", "2016-04-20 18:12:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"General interest - Youth Support Group\" href=\"http://localhost:8888/TestSICPage/wordpress/teen-anxiety-support-group-register-interest/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-20 11:12:48", "2016-04-20 18:12:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14345", "3", "2016-04-27 11:56:22", "2016-04-27 18:56:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"General interest - Youth Support Group\" href=\"http://localhost:8888/TestSICPage/wordpress/teen-anxiety-support-group-register-interest/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Wednesday, May 11: Annual General Meeting at 7:00pm</strong> at the Lounge at St Luke\'s Hall. 3821 Cedar Hill Cross Rd (the white building next to South Island Centre).\r\n\r\n<strong>Save the date: Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. More details to come![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-04-27 11:56:22", "2016-04-27 18:56:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14348", "3", "2016-05-12 06:11:31", "2016-05-12 13:11:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge)\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"General interest - Youth Support Group\" href=\"http://localhost:8888/TestSICPage/wordpress/teen-anxiety-support-group-register-interest/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. Location: St Luke\'s Parish Hall (Cedar Hill Cross Rd/Synod Rd). Art Sale and Strawberry Tea. Admission: $10. Free parking. Wheel-chair accessible.\r\n\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme. More details to come soon![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-05-12 06:11:31", "2016-05-12 13:11:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14349", "3", "2016-05-12 12:32:15", "2016-05-12 19:32:15", "", "Child-Youth History form", "", "inherit", "closed", "closed", "", "child-youth-history-form", "", "", "2016-05-12 12:32:15", "2016-05-12 19:32:15", "", "14245", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14351", "3", "2016-05-12 12:35:01", "2016-05-12 19:35:01", "<em>South Island Centre for Counselling and Training</em> is pleased to announce the launch of our new program \"Providing Affordable Counselling to Children and Youth (6-18yrs); Bridging the Gap\" funded by <em>The Victoria Foundation</em>.\r\n\r\nOur specialized registered clinical counsellors are trained and experienced in working with children through family therapy, educational programs and personal parenting and offer professional support with a variety of issues: anxiety, depression, coping with bullying, separation/divorce, grief and loss, self-image challenges, surviving academic pressures among others.\r\n\r\nUsing talk therapy, play, art media, storytelling and role play, children and youth are encouraged to explore individual, school or family challenges which are affecting their mental health and well-being.\r\n\r\nCounselling is provided on a sliding scale fee. For more information, and/or to book a consult, please contact us at (250) 472-2851, ext 101 orÂ fill out a general inquiry formÂ at your convenience.\r\n\r\nWe are here to help!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo print the Child and Youth History form, please click on the link below:\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2016-05-12 12:35:01", "2016-05-12 19:35:01", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14352", "3", "2016-05-19 15:21:35", "2016-05-19 22:21:35", "[gravityform id=\"12\" title=\"true\" description=\"true\"]", "Self-Injuring Youth Workshop - Indicate Interest", "", "publish", "closed", "closed", "", "self-injuring-youth", "", "", "2017-07-28 18:17:57", "2017-07-29 01:17:57", "", "15087", "http://localhost:8888/TestSICPage/wordpress/?page_id=14352", "7", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14353", "3", "2016-05-19 15:21:35", "2016-05-19 22:21:35", "[gravityform id=\"12\" title=\"true\" description=\"true\"]", "Self-Injuring Youth ", "", "inherit", "closed", "closed", "", "14352-revision-v1", "", "", "2016-05-19 15:21:35", "2016-05-19 22:21:35", "", "14352", "http://localhost:8888/TestSICPage/wordpress/14352-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14354", "3", "2016-05-19 15:22:39", "2016-05-19 22:22:39", "[gravityform id=\"12\" title=\"true\" description=\"true\"]", "Self-Injuring Youth Workshop - Indicate Interest", "", "inherit", "closed", "closed", "", "14352-revision-v1", "", "", "2016-05-19 15:22:39", "2016-05-19 22:22:39", "", "14352", "http://localhost:8888/TestSICPage/wordpress/14352-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14355", "3", "2016-05-19 15:25:46", "2016-05-19 22:25:46", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Self-Injuring Youth workshop, May 28, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/\" target=\"_blank\"><strong>Self-Injuring Youth: Understanding and Responding</strong></a> (Saturday, May 28, 2016 at St Luke\'s Church Hall Lounge). This workshop is full and registrations are closed. Waitlist is being taken.\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"General interest - Youth Support Group\" href=\"http://localhost:8888/TestSICPage/wordpress/teen-anxiety-support-group-register-interest/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. Location: St Luke\'s Parish Hall (Cedar Hill Cross Rd/Synod Rd). Art Sale and Strawberry Tea. Admission: $10. Free parking. Wheel-chair accessible.\r\n\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme. More details to come soon![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-05-19 15:25:46", "2016-05-19 22:25:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14357", "3", "2016-05-20 09:32:19", "2016-05-20 16:32:19", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"General interest - Youth Support Group\" href=\"http://localhost:8888/TestSICPage/wordpress/teen-anxiety-support-group-register-interest/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. Location: St Luke\'s Parish Hall (Cedar Hill Cross Rd/Synod Rd). Art Sale and Strawberry Tea. Admission: $10. Free parking. Wheel-chair accessible.\r\n\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme. More details to come soon![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2015: 40 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-05-20 09:32:19", "2016-05-20 16:32:19", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14358", "3", "2016-05-20 09:33:08", "2016-05-20 16:33:08", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\">Couple\'s Marriage Preparation Course</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer Intensive</a></strong> (Monday-Friday, 4-8 July, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-05-20 09:33:08", "2016-05-20 16:33:08", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14359", "3", "2016-05-25 11:34:51", "2016-05-25 18:34:51", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong>Teen Anxiety Support Group</strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. Location: St Luke\'s Parish Hall (Cedar Hill Cross Rd/Synod Rd). Art Sale and Strawberry Tea. Admission: $10. Free parking. Wheel-chair accessible.\r\n\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme. More details to come soon![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-05-25 11:34:51", "2016-05-25 18:34:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14360", "3", "2016-05-25 11:38:00", "2016-05-25 18:38:00", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Saturday, June 11, 2016, 1:00-4:00pm</strong>: Spring Fundraising Event. Location: St Luke\'s Parish Hall (Cedar Hill Cross Rd/Synod Rd). Art Sale and Strawberry Tea. Admission: $10. Free parking. Wheel-chair accessible.\r\n\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme. More details to come soon![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-05-25 11:38:00", "2016-05-25 18:38:00", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14361", "3", "2016-05-26 10:23:13", "2016-05-26 17:23:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Marriage Preparation workshop June 4, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Couple\'s Marriage Preparation Workshop</a></strong> (Saturday, June 4, 2016)\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Waitlisted Courses:</h4>\r\nPlease contact us to express interest in the workshops/courses below:\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>POSTPONED - NEW DATE TO BE ANNOUNCED SOON. <del datetime=\"2016-05-26T17:21:58+00:00\">Saturday, June 11, 2016, 1:00-4:00pm</del></strong>: Spring Fundraising Event. Location: St Luke\'s Parish Hall (Cedar Hill Cross Rd/Synod Rd). Art Sale and Strawberry Tea. Admission: $10. Free parking. Wheel-chair accessible.\r\n\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme. More details to come soon![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-05-26 10:23:13", "2016-05-26 17:23:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14363", "3", "2016-06-06 12:50:04", "2016-06-06 19:50:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>POSTPONED - NEW DATE TO BE ANNOUNCED SOON. <del datetime=\"2016-05-26T17:21:58+00:00\">Saturday, June 11, 2016, 1:00-4:00pm</del></strong>: Spring Fundraising Event. Location: St Luke\'s Parish Hall (Cedar Hill Cross Rd/Synod Rd). Art Sale and Strawberry Tea. Admission: $10. Free parking. Wheel-chair accessible.\r\n\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme. More details to come soon![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-06-06 12:50:04", "2016-06-06 19:50:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14364", "3", "2016-06-13 11:24:26", "2016-06-13 18:24:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counselling Training - general poster\" href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=13579\" target=\"_blank\">Pastoral Counselling Training (interest)</a></strong>: please contact us to express interest in taking this course. Date: tba for fall/winter (12 weekday mornings or afternoons; or a 5-day intensive); cost: $550.\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-06-13 11:24:26", "2016-06-13 18:24:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14366", "3", "2016-06-16 12:44:47", "2016-06-16 19:44:47", "", "PCCT Oct 2016-Jan17 poster", "", "inherit", "closed", "closed", "", "pcct-oct-2016-jan17-poster", "", "", "2016-06-16 12:44:47", "2016-06-16 19:44:47", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/06/PCCT-Oct-2016-Jan17-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14367", "3", "2016-06-16 12:45:34", "0000-00-00 00:00:00", "", "Pastoral Counselling Training (12 Thursday afternoons, Oct. 6, 2016-Jan. 15, 2017)", "", "draft", "closed", "closed", "", "", "", "", "2016-06-16 12:45:34", "2016-06-16 19:45:34", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14367", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14368", "3", "2016-06-16 12:48:14", "2016-06-16 19:48:14", "", "PCCT Oct 2016-Jan17 poster", "", "inherit", "closed", "closed", "", "pcct-oct-2016-jan17-poster-2", "", "", "2016-06-16 12:48:14", "2016-06-16 19:48:14", "", "14369", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/06/PCCT-Oct-2016-Jan17-poster1.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14369", "3", "2016-06-16 12:54:56", "2016-06-16 19:54:56", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/06/PCCT-Oct-2016-Jan17-poster1.pdf\">PCCT Oct 2016-Jan17 poster</a>\r\n\r\nFacilitator: Bill Cole (M.A., RCC)\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Pastoral Counselling Training (12 Thursdays, Oct 6, 2016 - Jan. 12, 2017)", "", "publish", "closed", "closed", "", "pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017", "", "", "2016-06-16 12:58:06", "2016-06-16 19:58:06", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14369", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14370", "3", "2016-06-16 13:00:37", "2016-06-16 20:00:37", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<a title=\"&lt;strong&gt;&lt;strong&gt;Pastoral Counseling Training&lt;/strong&gt;&lt;/strong&gt; (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a> (12 Thursdays, 6 Oct, 2016 - 12, January 2017; no class 22 and 29 December)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-06-16 13:00:37", "2016-06-16 20:00:37", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14371", "3", "2016-06-16 13:02:08", "2016-06-16 20:02:08", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer 2016 Intensive</a></strong> (5-day intensive: Monday, July 4 - Friday, July 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-06-16 13:02:08", "2016-06-16 20:02:08", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14372", "3", "2016-06-16 13:04:06", "2016-06-16 20:04:06", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Family Systems Intensive July 4-8, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/\" target=\"_blank\">Family Systems Theory Summer Intensive</a></strong> (Monday-Friday, 4-8 July, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016 - 12, January 2017; no class on December 22 and 29, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-06-16 13:04:06", "2016-06-16 20:04:06", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14374", "3", "2016-07-05 11:49:06", "2016-07-05 18:49:06", "<h4><span style=\"text-decoration: underline;\"><span><strong>Amber Eves (MA, RCC) - Director of Services</strong></span></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h4><span style=\"text-decoration: underline;\"><span><strong>Bill Cole (MA, RCC)</strong></span></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MA, RCC)</strong></span></h4>\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-07-05 11:49:06", "2016-07-05 18:49:06", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14375", "3", "2016-07-05 11:49:47", "2016-07-05 18:49:47", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MA, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-07-05 11:49:47", "2016-07-05 18:49:47", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14376", "3", "2016-07-05 11:55:06", "2016-07-05 18:55:06", "Facilitator: Margaret Anderson\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/07/August-2016-General-Caregivers-Poster2.pdf\">August 2016 General Caregivers Poster</a>\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Caring for the Caregiver (Saturday, August 20, 2016); Facilitator: Margaret Anderson", "", "publish", "closed", "closed", "", "caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson", "", "", "2016-07-18 11:31:10", "2016-07-18 18:31:10", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14376", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14377", "3", "2016-07-05 11:56:24", "2016-07-05 18:56:24", "", "August 2016 General Caregivers Poster", "", "inherit", "closed", "closed", "", "august-2016-general-caregivers-poster", "", "", "2016-07-05 11:56:24", "2016-07-05 18:56:24", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/07/August-2016-General-Caregivers-Poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14378", "3", "2016-07-05 11:57:04", "2016-07-05 18:57:04", "", "Twilight Journey 6 week course Nov-Dec 2016", "", "inherit", "closed", "closed", "", "twilight-journey-6-week-course-nov-dec-2016", "", "", "2016-07-05 11:57:04", "2016-07-05 18:57:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/07/Twilight-Journey-6-week-course-Nov-Dec-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14379", "3", "2016-07-05 12:12:21", "2016-07-05 19:12:21", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-07-05 12:12:21", "2016-07-05 19:12:21", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14380", "3", "2016-07-07 10:53:59", "2016-07-07 17:53:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-07-07 10:53:59", "2016-07-07 17:53:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14382", "3", "2016-07-07 10:58:09", "2016-07-07 17:58:09", "Facilitator: Margaret Anderson\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/07/Ebb-and-Flow-6-week-Sep-Oct-2016.pdf\">Ebb and Flow 6-week Sep-Oct 2016</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "The Ebb and Flow of Life: An Introduction to Grief and Loss (6 Thursdays, September 15-October 20, 2016); Facilitator: Margaret Anderson", "", "publish", "closed", "closed", "", "the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson", "", "", "2016-07-07 10:59:33", "2016-07-07 17:59:33", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14382", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14383", "3", "2016-07-07 10:58:46", "2016-07-07 17:58:46", "", "Ebb and Flow 6-week Sep-Oct 2016", "", "inherit", "closed", "closed", "", "ebb-and-flow-6-week-sep-oct-2016", "", "", "2016-07-07 10:58:46", "2016-07-07 17:58:46", "", "14382", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/07/Ebb-and-Flow-6-week-Sep-Oct-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14384", "3", "2016-07-07 11:01:39", "2016-07-07 18:01:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-07-07 11:01:39", "2016-07-07 18:01:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14385", "3", "2016-07-07 11:04:34", "2016-07-07 18:04:34", "", "August 2016 General Caregivers Poster", "", "inherit", "closed", "closed", "", "august-2016-general-caregivers-poster-2", "", "", "2016-07-07 11:04:34", "2016-07-07 18:04:34", "", "14376", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/07/August-2016-General-Caregivers-Poster1.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14386", "3", "2016-07-07 11:07:28", "2016-07-07 18:07:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> Saturday, August 20, 2016\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-07-07 11:07:28", "2016-07-07 18:07:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14388", "3", "2016-07-07 11:14:49", "2016-07-07 18:14:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> Saturday, August 20, 2016\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3- December 8, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-07-07 11:14:49", "2016-07-07 18:14:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14389", "3", "2016-07-07 11:23:31", "2016-07-07 18:23:31", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\">Caring for the Caregiver</a></strong> (Saturday, August 20, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Fall 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, September 15 - October 20, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016 - 12, January 2017; no class on December 22 and 29, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-07-07 11:23:31", "2016-07-07 18:23:31", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14390", "3", "2016-07-07 11:26:04", "2016-07-07 18:26:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> Saturday, August 20, 2016\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, 15 September -20 October, 2016)\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3- December 8, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-07-07 11:26:04", "2016-07-07 18:26:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14391", "3", "2016-07-07 11:26:44", "2016-07-07 18:26:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> Saturday, August 20, 2016\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3- December 8, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-07-07 11:26:44", "2016-07-07 18:26:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14393", "3", "2016-07-18 11:29:42", "2016-07-18 18:29:42", "", "August 2016 General Caregivers Poster", "", "inherit", "closed", "closed", "", "august-2016-general-caregivers-poster-3", "", "", "2016-07-18 11:29:42", "2016-07-18 18:29:42", "", "14376", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/07/August-2016-General-Caregivers-Poster2.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14395", "3", "2016-07-25 12:45:32", "2016-07-25 19:45:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> (Saturday, August 20, 2016)\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3- December 8, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n<strong><a title=\"Interest: Twilight Journey\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Twilight Journey- Grief, Loss and the Very Elderly</a></strong> (6 weekday evenings)\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong> (1-day intensive)</a>\r\n<strong><a title=\"Interest: Ebb &amp; Flow\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Ebb and Flow of Life - An Introduction to Grief and Loss</a></strong> (6 weekday evenings)\r\n<strong><a title=\"Interest: Caregiver\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Caregiver Support for Professionals or Family</a></strong>y (1-day intensive)\r\n<strong><a title=\"Interest: Midlife Directions\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Midlife Directions</a></strong> (2-day intensive)\r\n<strong><a title=\"nterest: The Enneagram\" href=\"http://http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">The Enneagram</a></strong> (1-day intensive)\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow![/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-07-25 12:45:32", "2016-07-25 19:45:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14396", "3", "2016-07-25 12:46:35", "2016-07-25 19:46:35", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-07-25 12:46:35", "2016-07-25 19:46:35", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14397", "3", "2016-07-25 12:47:11", "2016-07-25 19:47:11", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-07-25 12:47:11", "2016-07-25 19:47:11", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14398", "3", "2016-07-25 12:48:22", "2016-07-25 19:48:22", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\nDirector of Services ofÂ <strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></strong></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-07-25 12:48:22", "2016-07-25 19:48:22", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14399", "3", "2016-07-25 12:49:54", "2016-07-25 19:49:54", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Front Desk:</strong>Â (250) 472-2851, and press \"0\". If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n\r\n<strong>Director of Development: Caroline Donelle.</strong> Please contact her at (250) 472-2851, extension 107.\r\n<strong>Director of Services: Amber Eves.</strong> Please contact him at (250) 472-2851, extension 103.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3><strong> Centre hours:</strong></h3>\r\n<strong>Business Hours:</strong> The Centre is open from 9:00 am - 5:00 pm on Monday to Friday.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2016-07-25 12:49:54", "2016-07-25 19:49:54", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14400", "3", "2016-07-25 12:50:58", "2016-07-25 19:50:58", "<span style=\"text-decoration: underline;\">Board Members 2015-2016:</span>\r\n\r\nSandra Scarth, OC (Chair)\r\n\r\nJim Gibson (Treasurer)\r\n\r\nSally Tuckey (Secretary)\r\n\r\nFather Dean Henderson (Member-at-Large)\r\n\r\nGreg Beattie (Member-at-Large)\r\n\r\nBarbara Underhill (Member-at-Large)\r\n\r\nAmber EvesÂ (ex officio)\r\n\r\nCaroline Donelle (ex officio)\r\n\r\nSusanne Reul-Zastre (ex officio)", "Board of Directors 2015-2016", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2016-07-25 12:50:58", "2016-07-25 19:50:58", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14401", "3", "2016-07-25 12:51:21", "2016-07-25 19:51:21", "<span style=\"text-decoration: underline;\">Board Members 2016-2017:</span>\r\n\r\nSandra Scarth, OC (Chair)\r\n\r\nJim Gibson (Treasurer)\r\n\r\nSally Tuckey (Secretary)\r\n\r\nFather Dean Henderson (Member-at-Large)\r\n\r\nGreg Beattie (Member-at-Large)\r\n\r\nBarbara Underhill (Member-at-Large)\r\n\r\nAmber EvesÂ (ex officio)\r\n\r\nCaroline Donelle (ex officio)\r\n\r\nSusanne Reul-Zastre (ex officio)", "Board of Directors 2016-2017", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2016-07-25 12:51:21", "2016-07-25 19:51:21", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14402", "3", "2016-07-25 12:52:16", "2016-07-25 19:52:16", "[caption id=\"attachment_13146\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole.jpg\"><img class=\"wp-image-13146 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Bill-Cole-224x300.jpg\" alt=\"Bill Cole (Trainer)\" width=\"224\" height=\"300\" /></a> Bill Cole (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 27 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_13148\" align=\"alignleft\" width=\"224\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson.jpg\"><img class=\"wp-image-13148 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/AGM-May-2014-Margaret-Anderson-224x300.jpg\" alt=\"Margaret Anderson (Trainer)\" width=\"224\" height=\"300\" /></a> Margaret Anderson (Trainer)[/caption]\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span> (a member of the Canadian Hospice and Palliative Care Association) offers training in the experience of grief, loss and other major life transitions. She equips people with a broad understanding of the uniquely different effects of grief on children, adults, the very elderly as well as those who are living with a chronic debilitating or terminal illness. This training is offered to professional caregivers, clergy, social workers, teachers and any others who work with people in a caregiving role including family members. Margaret also offers training in the management of the complex stresses of caregiving and how to avoid compassion fatigue or caregiver burnout. In her end-of-life training she offers awareness of how to prepare for an imminent death, how to care well and support those with Alzheimer\'s disease or other dementias and their family members. Participants will be given specific tools, resources and helpful protocols all of which are consistent with current Hospice and Palliative Care Standards.", "South Island Centre Training Facilitators", "", "inherit", "closed", "closed", "", "13132-revision-v1", "", "", "2016-07-25 12:52:16", "2016-07-25 19:52:16", "", "13132", "http://localhost:8888/TestSICPage/wordpress/13132-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14403", "3", "2016-07-26 11:56:11", "2016-07-26 18:56:11", "Listed below are additional services we offer at South Island Centre:\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h4>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Professional Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h4>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual directors is<span style=\"color: #000000;\"><strong>Â Barbara Baillie.</strong></span>\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h4>\r\nThe CareerChoice program of South Island Centre offers an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2016-07-26 11:56:11", "2016-07-26 18:56:11", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14404", "3", "2016-07-26 11:56:58", "2016-07-26 18:56:58", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28 years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Audrey Gibson (BSc - OT; MDiv - SW)</span></strong></h4>\r\n<strong>AudreyGibson</strong> received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-07-26 11:56:58", "2016-07-26 18:56:58", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14406", "3", "2016-08-02 11:54:36", "2016-08-02 18:54:36", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Front Desk:</strong>Â (250) 472-2851, and press \"0\". If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n\r\n<strong>Director of Development: Caroline Donelle.</strong> Please contact her at (250) 472-2851, extension 107.\r\n<strong>Director of Services: Amber Eves.</strong> Please contact her at (250) 472-2851, extension 103.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3><strong> Centre hours:</strong></h3>\r\n<strong>Business Hours:</strong> The Centre is open from 9:00 am - 5:00 pm on Monday to Friday.\r\n\r\n<strong>Operation Manager\'s Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2016-08-02 11:54:36", "2016-08-02 18:54:36", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14407", "3", "2016-08-02 12:04:03", "2016-08-02 19:04:03", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> (Saturday, August 20, 2016)\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3- December 8, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong></a> (Morning)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-02 12:04:03", "2016-08-02 19:04:03", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14408", "3", "2016-08-02 12:25:54", "2016-08-02 19:25:54", "Poster with more information:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/10/Youth-Support-Group-Oct-Dec-2016.pdf\">Teen Anxiety Support Group Oct-Dec 2016</a>\r\n\r\nFacilitator: Amber Eves, M.Ed, RCC\r\n\r\n[gravityform id=\"10\" title=\"true\" description=\"true\"]", "Teen Anxiety Support Group (8 Saturdays, Oct 22-Dec 10, 2016) Facilitator: Amber Eves", "", "publish", "closed", "closed", "", "teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves", "", "", "2016-10-05 11:36:37", "2016-10-05 18:36:37", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14408", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14409", "3", "2016-08-02 12:38:44", "2016-08-02 19:38:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> (Saturday, 20 August, 2016)\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\"><strong>Teen Support Group</strong></a> (8 Saturdays, 22 October - 10 December, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong></a> (Morning)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-02 12:38:44", "2016-08-02 19:38:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14410", "3", "2016-08-02 12:41:42", "2016-08-02 19:41:42", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>career choice counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> (Saturday, 20 August, 2016)\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016)\r\n<h4>Please indicated interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)\r\n\r\n<strong><a title=\"Self-Injuring Youth \" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons)\r\n\r\n<a title=\"Self-Injuring Youth indicate Interest\" href=\"http://http://localhost:8888/TestSICPage/wordpress/self-injuring-youth/\" target=\"_blank\"><strong>Self-Injuring Youth</strong></a> (Morning)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-02 12:41:42", "2016-08-02 19:41:42", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14411", "3", "2016-08-08 12:11:17", "2016-08-08 19:11:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> (Saturday, 20 August, 2016)\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016)\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling, spiritual direction, and career choice counselling.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as CareerChoice and Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-08 12:11:17", "2016-08-08 19:11:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14412", "3", "2016-08-08 12:13:47", "2016-08-08 19:13:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> (Saturday, 20 August, 2016)\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016)\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-08 12:13:47", "2016-08-08 19:13:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14413", "3", "2016-08-08 12:18:02", "2016-08-08 19:18:02", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s Director of Services):</span>Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\nAudrey Gibson: Life coaching, Anxiety, Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-08 12:18:02", "2016-08-08 19:18:02", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14414", "3", "2016-08-08 12:18:15", "2016-08-08 19:18:15", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Children Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\nAudrey Gibson: Life coaching, Anxiety, Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-08 12:18:15", "2016-08-08 19:18:15", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14415", "3", "2016-08-08 12:19:04", "2016-08-08 19:19:04", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety and Depression\r\n\r\nAudrey Gibson: Life coaching, Anxiety, Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-08 12:19:04", "2016-08-08 19:19:04", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14416", "3", "2016-08-08 12:21:17", "2016-08-08 19:21:17", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignright wp-image-694 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" alt=\"bill_cole_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 27+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;", "Bill Cole (M.A., RCC)", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2016-08-08 12:21:17", "2016-08-08 19:21:17", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14417", "3", "2016-08-08 12:22:15", "2016-08-08 19:22:15", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\"><img class=\"alignleft wp-image-14184 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\" alt=\"Picture Amber Eves Nov 2015\" width=\"155\" height=\"157\" /></a>\r\n\r\n<strong>Amber Eves</strong> brings 34 years of experience as an educator, school counsellor and community mental health counsellor.\r\n\r\nShe began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland.\r\n\r\nMost recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider.\r\n\r\nShe received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse.\r\n\r\nShe is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.", "Amber Eves, Director of Services (M.Ed., RCC)", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2016-08-08 12:22:15", "2016-08-08 19:22:15", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14418", "3", "2016-08-08 12:23:24", "2016-08-08 19:23:24", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\"><img class=\"alignleft wp-image-693 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/barb_baillie_150w.jpg\" alt=\"barb_baillie_150w\" width=\"150\" height=\"226\" /></a>\r\n\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span>Â brings a varied experience to her counselling practice. She began as a teacher in elementary school, then stayed at home for a number of years raising her four children, then returned to school and graduated from theological college with a Master\'s degree in Theological Studies, and at the same time trained for two years as a spiritual director. She worked for 5 years as a spiritual director on the programme staff of the retreat house in Saskatoon, and after moving to Victoria in 1996, on the programme staff at <em>Queenswood Retreat Centre</em>, doing spiritual direction, leading workshops and directing retreats. Then it was back to school, graduating with a Master\'s of Arts programme in Pastoral Psychology and Counselling with a specialization in art therapy at St. Stephen\'s College in Edmonton.\r\n\r\nBarb is deeply rooted in Ignatian spirituality together with Jungian psychology. She is a trained midlife/long-life facilitator, so is very skilled in working with clients who are in transition in the second half of life. Enneagram is also a passion, another tool for self discovery. Barb is a registered art therapist as well. Clients seeking to build self-esteem, to have stronger boundaries, to deepen their spirituality, to become all that they can be would benefit from Barb\'s experience and counselling.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 14px; line-height: 1.5em;\">Â </span>\r\n\r\n&nbsp;", "Barbara Baillie (B.Ed, MTS, MAPPC, BCATR)", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2016-08-08 12:23:24", "2016-08-08 19:23:24", "", "47", "http://localhost:8888/TestSICPage/wordpress/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14419", "3", "2016-08-08 12:24:24", "2016-08-08 19:24:24", "&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Cantle MerrittÂ </strong></span>\r\n\r\nSpecialty:\r\n<ul>\r\n	<li>Self-Esteem</li>\r\n	<li>Empowerment</li>\r\n	<li>Anxiety</li>\r\n	<li>Holistic well-being</li>\r\n	<li>Depression</li>\r\n	<li>Self in Society</li>\r\n	<li>Self &amp; Environment</li>\r\n	<li>Managing Change</li>\r\n	<li>Academic, Sport, &amp; Job Performance</li>\r\n	<li>Restorative Justice</li>\r\n	<li>Family Issues</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong>Â </strong></span>", "Rosemary Cantle Merritt (M.P.E; M.Ed; RCC)", "", "inherit", "closed", "closed", "", "406-revision-v1", "", "", "2016-08-08 12:24:24", "2016-08-08 19:24:24", "", "406", "http://localhost:8888/TestSICPage/wordpress/406-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14420", "3", "2016-08-08 12:25:18", "2016-08-08 19:25:18", "<strong><span style=\"color: #0000ff;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\"><img class=\"alignleft wp-image-834 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/05/Laurie-Truant.jpg\" alt=\"Laurie Truant\" width=\"191\" height=\"240\" /></a></span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. She gained further training in this area through completing a Graduate Certificate in Child and Youth Mental Health (Thompson Rivers University). Laurie also enjoys working with those transitioning to retirement and aging/seniorâ€™s issues.\r\n\r\nLaurie has 19+ years of experience providing individual and group therapy as well as psycho-educational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. She has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\nLaurieâ€™s approach to counselling integrates psychodynamic therapies, cognitive behavioural therapy, and a strength based approach.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Laurie Truant (M.A., RCC)", "", "inherit", "closed", "closed", "", "412-revision-v1", "", "", "2016-08-08 12:25:18", "2016-08-08 19:25:18", "", "412", "http://localhost:8888/TestSICPage/wordpress/412-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14421", "3", "2016-08-08 12:27:19", "2016-08-08 19:27:19", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiet, Depression, Attachment theory, Couple\'s counselling\r\n\r\n<strong>Audrey Gibson:</strong> Life coaching, Anxiety, Depression\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-08 12:27:19", "2016-08-08 19:27:19", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14422", "3", "2016-08-08 12:29:22", "2016-08-08 19:29:22", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling <span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Audrey Gibson (Volunteer Counsellor):</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-08 12:29:22", "2016-08-08 19:29:22", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14423", "3", "2016-08-08 12:29:41", "2016-08-08 19:29:41", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Audrey Gibson (Volunteer Counsellor):</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-08 12:29:41", "2016-08-08 19:29:41", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14424", "3", "2016-08-08 12:31:31", "2016-08-08 19:31:31", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, press 0</strong>Â  for front desk or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $120 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Family Income and Cost per Session:Â </strong></span>\r\n\r\nLess than $50,000: we will discuss with you what you can afford.\r\n\r\n$50,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $120,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque, debit and credit card (Visa, Mastercard)</strong>.\r\n\r\nFor those with further financial need, South Island Centre is is able to use donations from its Samaritan Fund to help <span style=\"color: #3366ff;\"><span style=\"color: #000000;\"><strong><em>subsidize the cost of counselling</em></strong></span>.</span> Please inquire if this applies to you.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Insurance Coverage</span></span></h4>\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2016-08-08 12:31:31", "2016-08-08 19:31:31", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14425", "3", "2016-08-08 12:32:05", "2016-08-08 19:32:05", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, press 0</strong>Â  for front desk or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $120 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Family Income and Cost per Session:Â </strong></span>\r\n\r\nLess than $50,000: we will discuss with you what you can afford.\r\n\r\n$50,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $120,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque, debit and credit card (Visa, Mastercard)</strong>.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Insurance Coverage</strong></span>\r\n\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2016-08-08 12:32:05", "2016-08-08 19:32:05", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14426", "3", "2016-08-08 12:34:59", "2016-08-08 19:34:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> (Saturday, 20 August, 2016)\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016)\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-08 12:34:59", "2016-08-08 19:34:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14427", "3", "2016-08-08 12:35:40", "2016-08-08 19:35:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>Caring for the Caregiver</strong></a> (Saturday, 20 August, 2016)\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016)\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-08 12:35:40", "2016-08-08 19:35:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14428", "3", "2016-08-08 12:38:32", "2016-08-08 19:38:32", "[vc_row][vc_column][vc_column_text]\r\n<h3><strong>Our Mailing Address:</strong></h3>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h3><strong>Telephone/Fax Info:</strong></h3>\r\n<strong>Front Desk:</strong>Â (250) 472-2851, and press \"0\". If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n\r\n<strong>Director of Development: Caroline Donelle.</strong> Please contact her at (250) 472-2851, extension 107.\r\n<strong>Director of Services: Amber Eves.</strong> Please contact her at (250) 472-2851, extension 103.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h3><strong> Centre hours:</strong></h3>\r\n<strong>Business Hours:</strong> The Centre is open from 9:00 am - 5:00 pm on Monday to Friday.\r\n\r\n<strong>Reception Desk Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n<h3><strong>Counselling Hours:</strong></h3>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h3><strong>E-Mails:</strong></h3>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager Susanne Reul-Zastre:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2016-08-08 12:38:32", "2016-08-08 19:38:32", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14429", "3", "2016-08-08 12:41:42", "2016-08-08 19:41:42", "<em>South Island Centre for Counselling and Training</em> is pleased to announce the launch of our new program \"Providing Affordable Counselling to Children and Youth (6-18yrs); Bridging the Gap\" funded by <em>The Victoria Foundation</em>.\r\n\r\nOur specialized registered clinical counsellors are trained and experienced in working with children through family therapy, educational programs and personal parenting and offer professional support with a variety of issues: anxiety, depression, coping with bullying, separation/divorce, grief and loss, self-image challenges, surviving academic pressures among others.\r\n\r\nUsing talk therapy, play, art media, storytelling and role play, children and youth are encouraged to explore individual, school or family challenges which are affecting their mental health and well-being.\r\n\r\nCounselling is provided on a sliding scale fee. For more information, and/or to book a consult, please contact us at (250) 472-2851, ext 101 orÂ fill out a general inquiry formÂ at your convenience.\r\n\r\nWe are here to help!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nOnce you have made an appointment with your child\'s counsellor, you will need to fill out our Child/Youth History form. Click on the link below to print the form and bring the completed form to your child\'s first appointment.\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2016-08-08 12:41:42", "2016-08-08 19:41:42", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14430", "3", "2016-08-08 12:43:34", "2016-08-08 19:43:34", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial counselling appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call the CentreÂ at</span> Â <i class=\"fa fa-phone\"></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span>.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail. Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.\r\n\r\nIf you want to contact us by email,Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a General Inquiry contact form. Â Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.</span></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Business hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n<strong>Counselling hours</strong> are the same as business hours and are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory to listen to the counsellor\'s individual extension. </strong>Press the counsellor\'s 3-digit number extension to reach your counsellor\'s confidential voicemail.Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2016-08-08 12:43:34", "2016-08-08 19:43:34", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14431", "3", "2016-08-08 12:45:21", "2016-08-08 19:45:21", "<h4 style=\"color: #373a41;\"><strong>Audrey Gibson (BSc â€“ OT; MDiv â€“ SW)</strong></h4>\r\n<p style=\"color: #3b3f42;\"><strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.</p>", "Audrey Gibson (B.Sc.-OT, MDiv-SW)", "", "publish", "closed", "closed", "", "audrey-gibson-b-sc-ot-mdiv-sw", "", "", "2017-02-22 11:29:30", "2017-02-22 19:29:30", "", "217", "http://localhost:8888/TestSICPage/wordpress/?page_id=14431", "10", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14432", "3", "2016-08-08 12:45:21", "2016-08-08 19:45:21", "<h4 style=\"color: #373a41;\"><strong>Audrey Gibson (BSc â€“ OT; MDiv â€“ SW)</strong></h4>\r\n<p style=\"color: #3b3f42;\"><strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.</p>", "Audrey Gibson (B.Sc.-OT, MDiv-SW)", "", "inherit", "closed", "closed", "", "14431-revision-v1", "", "", "2016-08-08 12:45:21", "2016-08-08 19:45:21", "", "14431", "http://localhost:8888/TestSICPage/wordpress/14431-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14433", "3", "2016-08-08 12:46:49", "2016-08-08 19:46:49", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-08 12:46:49", "2016-08-08 19:46:49", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14434", "3", "2016-08-08 12:50:21", "2016-08-08 19:50:21", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\">Caring for the Caregiver</a></strong> (Saturday, August 20, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Fall 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, September 15 - October 20, 2016)\r\n\r\n<a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\"><strong>Teen <strong>Anxiety Support Group</strong></strong></a> (8 Saturdays, Octboer 22-December 10, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016 - 12, January 2017; no class on December 22 and 29, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-08-08 12:50:21", "2016-08-08 19:50:21", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14435", "3", "2016-08-08 12:51:12", "2016-08-08 19:51:12", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Caregiver General August 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/\" target=\"_blank\">Caring for the Caregiver</a></strong> (Saturday, August 20, 2016)\r\n\r\n<a title=\"The Ebb and Flow of Life Fall 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, September 15 - October 20, 2016)\r\n\r\n<a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\"><strong>Teen <strong>Anxiety Support Group</strong></strong></a> (8 Saturdays, October 22-December 10, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016 - 12, January 2017; no class on December 22 and 29, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-08-08 12:51:12", "2016-08-08 19:51:12", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14436", "3", "2016-08-08 12:55:26", "2016-08-08 19:55:26", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <span><strong>250-472-2851, extension 101.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2016-08-08 12:55:26", "2016-08-08 19:55:26", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14437", "3", "2016-08-08 12:55:47", "2016-08-08 19:55:47", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul>\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2016-08-08 12:55:47", "2016-08-08 19:55:47", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14438", "3", "2016-08-08 12:56:55", "2016-08-08 19:56:55", "&nbsp;\r\n\r\nBelow are general information posters of allÂ <span style=\"color: #000000;\"><strong>professional and volunteer support worker/caregiver courses</strong></span>Â we are pleased to offer.\r\n\r\n&nbsp;\r\n\r\nYou will find information onÂ <em>specific dates and times of up-coming courses</em><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Â in the <strong><em>Upcoming Events</em></strong> sidebar on your right. Â </span></span>\r\n\r\nBelow are general information posters on courses and training programs.\r\n<ul>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss and Life TransitionsÂ (<a title=\"The Ebb and Flow of Life (General Information Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">i<span style=\"color: #000000;\"><span style=\"color: #000000;\">nformation poster here</span></span></a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">For more information on these courses or to indicate interest or register for a current course, pleaseÂ <a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a>Â to fill in the form or call our office at Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Â <strong><span style=\"color: #0000ff;\">2<span style=\"color: #000000;\">50-472-2851, extension 101.</span></span></strong></p>\r\n&nbsp;\r\n\r\n&nbsp;", "Professional and Volunteer Support Workers/Caregivers - General Info", "", "inherit", "closed", "closed", "", "191-revision-v1", "", "", "2016-08-08 12:56:55", "2016-08-08 19:56:55", "", "191", "http://localhost:8888/TestSICPage/wordpress/191-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14439", "3", "2016-08-08 12:57:34", "2016-08-08 19:57:34", "<img class=\"alignleft size-medium wp-image-13350\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/man-in-field-worship-300x300.jpg\" alt=\"man in field worship\" width=\"300\" height=\"300\" />Below are general information posters of all<strong>Â <span style=\"color: #000000;\">courses</span></strong><span style=\"color: #000000;\">Â </span><strong><span style=\"color: #000000;\">for those in Ministry</span>Â </strong>we are pleased to offer.\r\n\r\nYou will find the information onÂ <span style=\"color: #000000;\"><strong><em>specific dates and times of up-coming courses</em></strong></span>Â on the Home Page<strong>.Â </strong>Each currently offered course is also listed in the <strong>Course and Events Calendar</strong>.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Twilight Journeys (<a title=\"Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Pastoral Care and Counsellor Training (<a title=\"Pastoral Care and Counselling Training (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/PCT-web-flyer.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>The Ebb and Flow: Life, Grief and Transition (<a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n	<li>Bowen Family Systems Training (<a title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFor more information on these courses or to indicate interest, please <a title=\"Contact Form: Register for a Course\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>,Â or call our office atÂ <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Courses for Those in Ministry - General Info", "", "inherit", "closed", "closed", "", "189-revision-v1", "", "", "2016-08-08 12:57:34", "2016-08-08 19:57:34", "", "189", "http://localhost:8888/TestSICPage/wordpress/189-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14440", "3", "2016-08-08 14:30:19", "2016-08-08 21:30:19", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul style=\"color: #3b3f42;\">\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\">information poster here</a>)</span></span></li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly (<a style=\"color: #576b23;\" title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<a style=\"color: #576b23;\" title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\">i<span style=\"color: #000000;\">nformation poster here</span></a>)</li>\r\n	<li>Bowen Family Systems Training (<a style=\"color: #576b23;\" title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</li>\r\n</ul>\r\n<p style=\"color: #3b3f42;\"></p>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2016-08-08 14:30:19", "2016-08-08 21:30:19", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14441", "3", "2016-08-08 14:32:26", "2016-08-08 21:32:26", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul style=\"color: #3b3f42;\">\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"color: #0000ff;\"><a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #0000ff;\">information poster here</span></a></span>)</span></span></li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly <span style=\"color: #0000ff;\">(<a style=\"color: #576b23;\" title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #0000ff;\">information poster here</span></a></span>)</li>\r\n	<li>Caregiver Burnout: The Need for Self-Care (<span style=\"color: #0000ff;\"><a style=\"color: #576b23;\" title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\"><span style=\"color: #0000ff;\">i<span style=\"color: #000000;\">nformation poster here</span></span></a>)</span></li>\r\n	<li>Bowen Family Systems Training (<span style=\"color: #0000ff;\"><a style=\"color: #576b23;\" title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #0000ff;\">information poster here</span></a></span>)</li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2016-08-08 14:32:26", "2016-08-08 21:32:26", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14442", "3", "2016-08-08 14:33:53", "2016-08-08 21:33:53", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of allÂ <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul style=\"color: #3b3f42;\">\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></span></li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly <span style=\"color: #000000;\">(<a style=\"color: #576b23;\" title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></li>\r\n	<li>Caregiver Burnout: The Need for Self-Care <span style=\"color: #000000;\">(<a style=\"color: #576b23;\" title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">i<span style=\"color: #000000;\">nformation poster here</span></span></a>)</span></li>\r\n	<li><span style=\"color: #000000;\">Bowen Family Systems Training (<a style=\"color: #576b23;\" title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</span></li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2016-08-08 14:33:53", "2016-08-08 21:33:53", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14444", "3", "2016-08-11 12:16:50", "2016-08-11 19:16:50", "South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work, in order to fulfill our mission of providing our services to <strong>everyone</strong>, even those who cannot afford our services.Â If this is your first time making a donation to South Island Centre, or whether you already give regularly, we have three easy donation options available.\r\n\r\nDonations can be made<span style=\"color: #000000;\">Â </span>one-time, monthly, quarterly, annually etc.:\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1 (preferred)</strong>:</span> please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks.</li>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span>Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â <strong>250-472-2851, extension 101</strong>, and the Operations ManagerÂ will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n	<li><span style=\"text-decoration: underline;\"><strong>Option 3</strong></span>: Charge a one-time or set up a monthly donation using your yourÂ <strong>credit card</strong>Â by making a donation on-line with CanadaHelps.org (<a title=\"Canada Helps donation link\" href=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target=\"_blank\">click here</a>).Â Please note that Canada HelpsÂ routinely deducts a significant percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Why monthly or quarterly giving?</strong></span>\r\n\r\nMonthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>The Fine Print</strong></span>\r\n\r\nAll personal contact information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about up-coming events and schedules, courses and services, as well as fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to South Island Centre", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2016-08-11 12:16:50", "2016-08-11 19:16:50", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14445", "3", "2016-08-11 12:34:51", "2016-08-11 19:34:51", "Listed below are additional services we offer at South Island Centre:\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Pastoral Care Services and Our Christian Roots</span></span></h4>\r\nSouth Island Centre for Counselling and Training has been offering Pastoral Care &amp; Counselling Services in Victoria and the South Island since 1975.\r\n\r\nOften crisis, abuse, death, hopelessness and other traumas devastate personal relationships and distort the meaning of life. Through consultation, continuing pastoral counselling and education, South Island Centre supports clergy and persons of faith as they work towards cultivating loving and unifying relationships.\r\n\r\nWe see our role in pastoral care as a supportive one based on the awareness that all healing and wholeness ultimately comes from the love that God provides. We do not force our beliefs on others but rather provide a supportive, trained ear for those who desire a spiritual and/or Christian context to their counselling sessions.\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Professional Counselling Consultations for Clergy</span></h4>\r\nPastoral care is a complex, challenging and innovative call. As many turn to their pastors for counsel, the issue before pastors is not whether to do pastoral counselling but rather what kind of pastoral counselling to effect.\r\n\r\nSouth Island Centre is a consultation service to pastors and other professionals through theologically trained staff whose education and experience in pastoral psychology and mental health studies equip them for consulting work.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Spiritual Direction Program</span></span></h4>\r\nWe long to discover our true selves, to grow closer to God and to one another. A spiritual director can mentor and accompany you on this inward journey and together with you, co-discern the movements of God inÂ <strong>YOUR</strong>Â life. Our spiritual director is<span style=\"color: #000000;\"><strong>Â Barbara Baillie.</strong></span>\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">CareerChoice Program</span></span></h4>\r\nThe CareerChoice program of South Island Centre has been offered in the past to provide an ecumenical opportunity to clergy and lay people who want to review their career choices and development, their gifts and call, their strengthened \'fit\' in ministry. South Island Centre is one of the few agencies in Canada offering this service, and major denominations such as the United, Baptist and Anglican Churches refer their ministry staff to us for this service.\r\n\r\nThis course could be again in the future if there is enough interest.\r\n\r\n&nbsp;\r\n\r\nRead what a participant had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realize how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<h3></h3>", "Other Services", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2016-08-11 12:34:51", "2016-08-11 19:34:51", "", "88", "http://localhost:8888/TestSICPage/wordpress/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14446", "3", "2016-08-11 12:37:58", "2016-08-11 19:37:58", "Read what a participant in the <strong>CareerChoice Program</strong> had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Pastoral Counselling Training</strong> with trainer <strong>Bill Cole</strong> had to say about the experience:\r\n\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"\r\n\r\n&nbsp;\r\n\r\n<em>More testimonials are listed on the Home Page. We choose not to disclose the names or initials of our course participants or clients for confidentiality and privacy reasons. All quoted testimonials are excerpted from past course evaluations or client surveys.</em>", "Testimonials (Courses and Training Programs)", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2016-08-11 12:37:58", "2016-08-11 19:37:58", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14449", "3", "2016-08-15 11:32:49", "2016-08-15 18:32:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September -20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-, 12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016)\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-15 11:32:49", "2016-08-15 18:32:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14450", "3", "2016-08-15 11:33:39", "2016-08-15 18:33:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016)\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016)\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-15 11:33:39", "2016-08-15 18:33:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14451", "3", "2016-08-16 12:13:20", "2016-08-16 19:13:20", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Barbara Baillie (MTS, MAPPC, BCATR)</strong></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n<strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n<span style=\"text-decoration: underline;\"><strong>Â Volunteer Counsellors:Â </strong></span>\r\n<h4><span style=\"text-decoration: underline;\"><strong><span>Audrey Gibson (BSc - OT; MDiv - SW)</span></strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Liz Beattie (BA, MCP)</strong></span>\r\n\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\"", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-08-16 12:13:20", "2016-08-16 19:13:20", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14452", "3", "2016-08-16 12:15:09", "2016-08-16 19:15:09", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong><span>Audrey Gibson (BSc - OT; MDiv - SW)</span></strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n<strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><span><strong>Volunteer Counsellors:Â </strong></span></span></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span><strong>LIz Beatte (BA, MCP)</strong></span></span></h4>\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\"", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-08-16 12:15:09", "2016-08-16 19:15:09", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14453", "3", "2016-08-16 12:17:19", "2016-08-16 19:17:19", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span><strong>Barbara BaillieÂ (MAPPC, BCATR)</strong></span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Barbara Baillie\'s</strong></span>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n\r\n<strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:Â </strong></span></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>LIz Beatte (BA, MCP)</strong></span></h4>\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\"", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-08-16 12:17:19", "2016-08-16 19:17:19", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14454", "3", "2016-08-16 12:20:53", "2016-08-16 19:20:53", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span><span style=\"color: rgb(0, 0, 0); text-decoration: underline;\">Barbara Baillie (MAPPC, BCATR)</span></span></span></h4>\r\n<strong><span style=\"color: #000000;\">Barbara Baillie\'s</span></strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n\r\n<strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>LIz Beatte (BA, MCP)</strong></span></h4>\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\"", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-08-16 12:20:53", "2016-08-16 19:20:53", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14455", "3", "2016-08-16 12:21:49", "2016-08-16 19:21:49", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MAPPC, BCATR)</span></span></h4>\r\n<strong><span style=\"color: #000000;\">Barbara Baillie\'s</span></strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>LIz Beatte (BA, MCP)</strong></span></h4>\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\"", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-08-16 12:21:49", "2016-08-16 19:21:49", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14456", "3", "2016-08-16 12:24:06", "2016-08-16 19:24:06", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Liz Beattie</strong></span>: Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-16 12:24:06", "2016-08-16 19:24:06", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14457", "3", "2016-08-16 12:24:56", "2016-08-16 19:24:56", "Liz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.", "Liz Beattie", "", "publish", "closed", "closed", "", "liz-beattie", "", "", "2017-02-22 11:28:34", "2017-02-22 19:28:34", "", "60", "http://localhost:8888/TestSICPage/wordpress/?page_id=14457", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14458", "3", "2016-08-16 12:24:56", "2016-08-16 19:24:56", "Liz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.", "Liz Beattie", "", "inherit", "closed", "closed", "", "14457-revision-v1", "", "", "2016-08-16 12:24:56", "2016-08-16 19:24:56", "", "14457", "http://localhost:8888/TestSICPage/wordpress/14457-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14459", "3", "2016-08-16 12:25:55", "2016-08-16 19:25:55", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<span style=\"color: #000000;\"><a title=\"Liz Beattie, counsellor\" href=\"http://http://localhost:8888/TestSICPage/wordpress/?p=14457\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie</strong></span>:</span></a> </span>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-16 12:25:55", "2016-08-16 19:25:55", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14460", "3", "2016-08-16 12:26:52", "2016-08-16 19:26:52", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-16 12:26:52", "2016-08-16 19:26:52", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14461", "3", "2016-08-16 12:27:09", "2016-08-16 19:27:09", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-08-16 12:27:09", "2016-08-16 19:27:09", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14462", "3", "2016-08-16 12:52:21", "2016-08-16 19:52:21", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: blue;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: blue;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></p>", "Mental Health Resources", "", "publish", "closed", "closed", "", "resources-2", "", "", "2018-06-13 08:52:47", "2018-06-13 15:52:47", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=14462", "35", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14463", "3", "2016-08-16 12:52:21", "2016-08-16 19:52:21", "Addictions\r\n\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-08-16 12:52:21", "2016-08-16 19:52:21", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14465", "3", "2016-08-16 13:01:05", "2016-08-16 20:01:05", "<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-08-16 13:01:05", "2016-08-16 20:01:05", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14466", "3", "2016-08-17 09:14:56", "2016-08-17 16:14:56", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-08-17 09:14:56", "2016-08-17 16:14:56", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14467", "3", "2016-08-17 09:17:41", "2016-08-17 16:17:41", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-08-17 09:17:41", "2016-08-17 16:17:41", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14468", "3", "2016-08-17 10:05:26", "2016-08-17 17:05:26", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n\r\n&nbsp;\r\n<h4>Marriage and Relationships</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute \" href=\"https://www.gottman.com/\" target=\"_blank\">Gottman Institute</a>\r\n<h4></h4>\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n&nbsp;\r\n<h4>Trauma and Abuse</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n\r\n&nbsp;\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n\r\n&nbsp;\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n&nbsp;\r\n<h4>Support for the Elderly</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-08-17 10:05:26", "2016-08-17 17:05:26", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14469", "3", "2016-08-17 10:06:00", "2016-08-17 17:06:00", " ", "", "", "publish", "closed", "closed", "", "14469", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=14469", "17", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("14470", "3", "2016-08-17 10:07:44", "2016-08-17 17:07:44", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n\r\n&nbsp;\r\n<h4>Marriage and Relationships</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute \" href=\"https://www.gottman.com/\" target=\"_blank\">Gottman Institute</a>\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n&nbsp;\r\n<h4>Trauma and Abuse</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n\r\n&nbsp;\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n\r\n&nbsp;\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n&nbsp;\r\n<h4>Support for the Elderly</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-08-17 10:07:44", "2016-08-17 17:07:44", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14471", "3", "2016-08-17 10:59:25", "2016-08-17 17:59:25", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n<h4>Elder Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n\r\n&nbsp;\r\n<h4>Marriage and Relationships</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute \" href=\"https://www.gottman.com/\" target=\"_blank\">Gottman Institute</a>\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n&nbsp;\r\n<h4>Trauma and Abuse</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n\r\n&nbsp;\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n\r\n&nbsp;\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-08-17 10:59:25", "2016-08-17 17:59:25", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14472", "3", "2016-08-17 11:27:19", "2016-08-17 18:27:19", "", "Pastoral Care Team Training Workshop October 22, 2016", "", "inherit", "closed", "closed", "", "pcct-workshop-october-22-2016", "", "", "2016-08-17 11:27:19", "2016-08-17 18:27:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/08/PCCT-workshop-October-22-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14473", "3", "2016-08-17 11:28:07", "0000-00-00 00:00:00", "", "Pastoral Care Team Training Workshop (Saturday, October 22); Facilitators: Bill Cole and Margaret Anderson", "", "draft", "closed", "closed", "", "", "", "", "2016-08-17 11:28:07", "2016-08-17 18:28:07", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14473", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14475", "3", "2016-08-24 09:22:35", "2016-08-24 16:22:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-24 09:22:35", "2016-08-24 16:22:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14476", "3", "2016-08-24 11:53:11", "2016-08-24 18:53:11", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MAPPC, BCATR)</span></span></h4>\r\n<strong><span style=\"color: #000000;\">Barbara Baillie\'s</span></strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MEd, MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>LIz Beatte (BA, MCP)</strong></span></h4>\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\"", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-08-24 11:53:11", "2016-08-24 18:53:11", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14477", "3", "2016-08-29 12:12:01", "2016-08-29 19:12:01", "", "Pastoral Care Team Training workshop October 22, 2016", "", "inherit", "closed", "closed", "", "pcct-workshop-october-22-2016-2", "", "", "2016-08-29 12:12:01", "2016-08-29 19:12:01", "", "14478", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/08/PCCT-workshop-October-22-20161.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14478", "8", "2017-06-20 01:42:31", "2017-06-20 08:42:31", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/11/ThriveVictoria2-Feb-2018.1.pdf\">ThriveVictoria2 Feb 2018.1</a>", "Positive Psychology Group  (Tuesdays, Feb. 6, 13, 20 and 27, 2018:  6pm-8:00pm); Facilitator: Dr. Vibeke Vaerum, PhD", "", "publish", "closed", "closed", "", "positive-psychology-group-thurs-sept-21-28-oct-5-12-2017-6pm-745pm-facilitator-dr-vibeke-vaerum-phd", "", "", "2017-11-23 12:30:00", "2017-11-23 20:30:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14478", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14479", "3", "2017-06-20 13:42:42", "2017-06-20 20:42:42", "Poster with more information:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/poster-pctt-oct-14-2017/\" rel=\"attachment wp-att-14776\">Poster PCTT Oct 14, 2017</a>\r\n\r\nThe workshop fee includes lunch, coffee/tea, beverages, snacks, course materials.\r\n\r\n[gravityform id=\"8\" title=\"true\" description=\"true\"]", "Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson", "", "inherit", "closed", "closed", "", "14478-autosave-v1", "", "", "2017-06-20 13:42:42", "2017-06-20 20:42:42", "", "14478", "http://localhost:8888/TestSICPage/wordpress/14478-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14480", "3", "2016-08-29 12:32:38", "2016-08-29 19:32:38", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-29 12:32:38", "2016-08-29 19:32:38", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14481", "3", "2016-08-29 12:34:35", "2016-08-29 19:34:35", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"The Ebb and Flow of Life Fall 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, September 15 - October 20, 2016)\r\n\r\n<a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\"><strong>Teen <strong>Anxiety Support Group</strong></strong></a> (8 Saturdays, October 22-December 10, 2016)\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 22, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016 - 12, January 2017; no class on December 22 and 29, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-08-29 12:34:35", "2016-08-29 19:34:35", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14482", "3", "2016-08-31 10:12:30", "2016-08-31 17:12:30", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 years!</strong>\r\n<strong>Date: Saturday, November 5, 2016 from 6:30-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on mental health in children and youth this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: Ian McDougall and Friends\r\nThree course supper and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-31 10:12:30", "2016-08-31 17:12:30", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14483", "3", "2016-08-31 10:17:25", "2016-08-31 17:17:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on mental health in children and youth this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-08-31 10:17:25", "2016-08-31 17:17:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14485", "3", "2016-09-06 11:51:33", "2016-09-06 18:51:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on mental health in children and youth this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851. We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-06 11:51:33", "2016-09-06 18:51:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14486", "3", "2016-09-07 09:10:04", "2016-09-07 16:10:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on mental health in children and youth this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-07 09:10:04", "2016-09-07 16:10:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14487", "3", "2016-09-07 09:17:33", "2016-09-07 16:17:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-07 09:17:33", "2016-09-07 16:17:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14488", "3", "2016-09-13 11:17:50", "2016-09-13 18:17:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Save the date: Saturday, November 5, 2016.</strong> Fall Gala Fundraising Event to raise funds for our Children and Youth Mental Health Programme to be held at the Hotel Grand Pacific (evening). Details to follow!\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<a title=\"Ebb and Flow of Life, Sept-Oct 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, 15 September-20 October, 2016). Registration and payment must be received by <strong>Thursday, September 8</strong>.\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n<h4>Please indicate interest for the following courses:</h4>\r\n<strong><a title=\"Interest: Pastoral Care Team\" href=\"http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/\" target=\"_blank\">Pastoral Care Team Training</a></strong> (Saturday, October 22 at St Peter\'s, Quamicham)[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-13 11:17:50", "2016-09-13 18:17:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14489", "3", "2016-09-13 11:18:34", "2016-09-13 18:18:34", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\"><strong>Teen <strong>Anxiety Support Group</strong></strong></a> (8 Saturdays, October 22-December 10, 2016)\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\">Pastoral Care Team Training</a> (Saturday, October 22, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016 - 12, January 2017; no class on December 22 and 29, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-09-13 11:18:34", "2016-09-13 18:18:34", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14490", "3", "2016-09-13 13:06:55", "2016-09-13 20:06:55", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\nRescheduled for Fall 2016: Caring for the Caregiver\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-13 13:06:55", "2016-09-13 20:06:55", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14491", "3", "2016-09-13 13:08:22", "2016-09-13 20:08:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-13 13:08:22", "2016-09-13 20:08:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14492", "3", "2016-09-13 15:09:52", "2016-09-13 22:09:52", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MAPPC, BCATR)</span></span></h4>\r\n<strong><span style=\"color: #000000;\">Barbara Baillie\'s</span></strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MEd, MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>LIz Beattie (BA, MCP)</strong></span></h4>\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\"", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-09-13 15:09:52", "2016-09-13 22:09:52", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14495", "3", "2016-09-14 10:52:54", "2016-09-14 17:52:54", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][vc_single_image image=\"14494\" img_link_target=\"_self\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-14 10:52:54", "2016-09-14 17:52:54", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14496", "3", "2016-09-14 10:55:12", "2016-09-14 17:55:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-14 10:55:12", "2016-09-14 17:55:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14497", "3", "2016-09-14 10:55:49", "2016-09-14 17:55:49", "", "TC logo", "", "inherit", "closed", "closed", "", "tc-logo", "", "", "2016-09-14 10:55:49", "2016-09-14 17:55:49", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/09/TC-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14498", "3", "2016-09-14 11:34:55", "2016-09-14 18:34:55", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][dt_logos columns=\"2\" dividers=\"true\" number=\"12\" orderby=\"date\" order=\"desc\" animation=\"none\"][vc_single_image img_link_target=\"_self\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-14 11:34:55", "2016-09-14 18:34:55", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14499", "3", "2016-09-19 10:27:27", "2016-09-19 17:27:27", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][vc_single_image img_link_target=\"_self\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 10:27:27", "2016-09-19 17:27:27", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14500", "3", "2016-09-19 10:28:57", "2016-09-19 17:28:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 10:28:57", "2016-09-19 17:28:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14501", "3", "2016-09-19 10:29:17", "2016-09-19 17:29:17", "", "Seafirst-logo", "", "inherit", "closed", "closed", "", "seafirst-logo", "", "", "2016-09-19 10:29:17", "2016-09-19 17:29:17", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/09/Seafirst-logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14502", "3", "2016-09-19 10:32:46", "2016-09-19 17:32:46", "", "TC_box_col", "", "inherit", "closed", "closed", "", "tc_box_col", "", "", "2016-09-19 10:32:46", "2016-09-19 17:32:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/09/TC_box_col.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14503", "3", "2016-09-19 10:34:42", "2016-09-19 17:34:42", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\nTimes Colonist\"][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 10:34:42", "2016-09-19 17:34:42", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14504", "3", "2016-09-19 10:38:27", "2016-09-19 17:38:27", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Up-coming Events:</h4>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\nTimes Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 10:38:27", "2016-09-19 17:38:27", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14505", "3", "2016-09-19 10:41:03", "2016-09-19 17:41:03", "<p>[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong></p>\r\n<p>South Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.</p>\r\n<p>Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.</p>\r\n<p>We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.</p>\r\n<p>We offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.</p>\r\n<p>We offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.</p>\r\n<p>Give us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]</p>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4>Up-coming Events:</h4>\r\n<p><strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.<br />\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong><br />\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.<br />\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.<br />\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends<br />\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.<br />\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.</p>\r\n<h4>Current Course Offerings:</h4>\r\n<p><strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.</p>\r\n<p><strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.</p>\r\n<p><a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.</p>\r\n<p><a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h3>Contact info</h3>\r\n<p>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</p>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n<p>[dt_divider style=\"thin\" /]</p>\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n<p>Fax number: (250) 472-2815 [dt_divider style=\"thin\" /]</p>\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n<p>[dt_divider style=\"thin\" /]</p>\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n<p>[dt_divider style=\"thin\" /]</p>\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n<p>[dt_divider style=\"thin\" /]</p>\r\n<div style=\"margin-top: -5px;\"></div>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]</p>\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n<p>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.</p>\r\n<p><strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.</p>\r\n<p><strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]</p>\r\n<h4>Counselling</h4>\r\n<p>Our goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]</p>\r\n<h4>Courses</h4>\r\n<p>South Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]</p>\r\n<h4>Other Services</h4>\r\n<p>We provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]</p>\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>The Province of British Columbia</h4>\r\n<p>\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"</p>\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n<p>\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\n<p>Times Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]</p>\r\n", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 10:41:03", "2016-09-19 17:41:03", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14506", "3", "2016-09-19 10:49:04", "2016-09-19 17:49:04", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\nTimes Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 10:49:04", "2016-09-19 17:49:04", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14507", "3", "2016-09-19 10:58:43", "2016-09-19 17:58:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nThank you to our sponsors:[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\nTimes Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 10:58:43", "2016-09-19 17:58:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14508", "3", "2016-09-19 11:01:36", "2016-09-19 18:01:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"13940\" img_link_target=\"_self\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nThank you to our sponsors:[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\nTimes Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:01:36", "2016-09-19 18:01:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14509", "3", "2016-09-19 11:02:09", "2016-09-19 18:02:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nThank you to our sponsors:[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\nTimes Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:02:09", "2016-09-19 18:02:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14510", "3", "2016-09-19 11:02:22", "2016-09-19 18:02:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nThank you to our sponsors:[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\nTimes Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:02:22", "2016-09-19 18:02:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14511", "3", "2016-09-19 11:07:12", "2016-09-19 18:07:12", "", "Hotel Grand Pacific Logo", "", "inherit", "closed", "closed", "", "hotel-grand-pacific-logo", "", "", "2016-09-19 11:07:12", "2016-09-19 18:07:12", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/09/Hotel-Grand-Pacific-Logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14512", "3", "2016-09-19 11:08:16", "2016-09-19 18:08:16", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nThank you to our sponsors:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\"][vc_single_image image=\"14501\" img_link_target=\"_self\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"</h4>\r\nTimes Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:08:16", "2016-09-19 18:08:16", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14513", "3", "2016-09-19 11:10:43", "2016-09-19 18:10:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nThank you to our sponsors:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" title=\"\r\n\r\nTimes Colonist\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:10:43", "2016-09-19 18:10:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14514", "3", "2016-09-19 11:11:44", "2016-09-19 18:11:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nThank you to our sponsors:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:11:44", "2016-09-19 18:11:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14515", "3", "2016-09-19 11:13:35", "2016-09-19 18:13:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nThank you to our sponsors:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:13:35", "2016-09-19 18:13:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14516", "3", "2016-09-19 11:15:20", "2016-09-19 18:15:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: Saturday, November 5, 2016 from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nKeynote Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nOur Sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:15:20", "2016-09-19 18:15:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14517", "3", "2016-09-19 11:17:47", "2016-09-19 18:17:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Events:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nOur Sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:17:47", "2016-09-19 18:17:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14518", "3", "2016-09-19 11:19:01", "2016-09-19 18:19:01", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Event:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nOur Sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-19 11:19:01", "2016-09-19 18:19:01", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14520", "3", "2016-09-22 10:26:20", "2016-09-22 17:26:20", "", "St Philips logo", "", "inherit", "closed", "closed", "", "st-philips-logo", "", "", "2016-09-22 10:26:20", "2016-09-22 17:26:20", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/09/St-Philips-logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14521", "3", "2016-09-22 10:28:51", "2016-09-22 17:28:51", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Event:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. Reserve yours now by calling 250-472-2851.\r\n\r\nOur Sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-22 10:28:51", "2016-09-22 17:28:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14522", "3", "2016-09-26 09:31:24", "2016-09-26 16:31:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Event:</h3>\r\n<strong>Celebrating 41 Years!</strong> We\'re thrilled that <strong>sponsorship advertising support</strong> for our annual fundraising Gala is provided by the <strong>Times Colonist</strong>.\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. You can buy tickets directly via Canada Helps (use link below) or call us at (250) 472-2851.[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-26 09:31:24", "2016-09-26 16:31:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14523", "3", "2016-09-26 09:34:15", "2016-09-26 16:34:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-26 09:34:15", "2016-09-26 16:34:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14524", "3", "2016-09-26 09:46:53", "2016-09-26 16:46:53", "", "Strengthening Well-Being Nov 2016", "", "inherit", "closed", "closed", "", "strengthening-well-being-nov-2016", "", "", "2016-09-26 09:46:53", "2016-09-26 16:46:53", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/09/Strengthening-Well-Being-Nov-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14526", "3", "2016-09-26 09:57:13", "2016-09-26 16:57:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-26 09:57:13", "2016-09-26 16:57:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14527", "3", "2016-09-26 09:57:45", "2016-09-26 16:57:45", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"blue\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-26 09:57:45", "2016-09-26 16:57:45", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14528", "3", "2016-09-26 09:59:55", "2016-09-26 16:59:55", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14511\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-26 09:59:55", "2016-09-26 16:59:55", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14529", "3", "2016-09-26 10:03:29", "2016-09-26 17:03:29", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\"><strong>Teen <strong>Anxiety Support Group</strong></strong></a> (8 Saturdays, October 22-December 10, 2016)\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016 - 12, January 2017; no class on December 22 and 29, 2016)\r\n\r\n<strong><a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal for Young Adult Women</a></strong> (3 Tuesdays, November 8, 15, and 22, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-09-26 10:03:29", "2016-09-26 17:03:29", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14530", "3", "2016-09-26 11:13:56", "2016-09-26 18:13:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-26 11:13:56", "2016-09-26 18:13:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14531", "3", "2016-09-26 11:14:14", "2016-09-26 18:14:14", "", "Hotel Grand Pacific official logo", "", "inherit", "closed", "closed", "", "hotel-grand-pacific-official-logo", "", "", "2016-09-26 11:14:14", "2016-09-26 18:14:14", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/09/Hotel-Grand-Pacific-official-logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14532", "3", "2016-09-26 11:15:52", "2016-09-26 18:15:52", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-26 11:15:52", "2016-09-26 18:15:52", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14533", "3", "2016-09-26 11:17:15", "2016-09-26 18:17:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Special room rates for attendees.\r\nAdvance Tickets are $75 each. You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-26 11:17:15", "2016-09-26 18:17:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14534", "3", "2016-09-27 12:32:26", "2016-09-27 19:32:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Business Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday- Friday, 9:00am - 5:00pm. We are closed on statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-27 12:32:26", "2016-09-27 19:32:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14535", "3", "2016-09-28 12:15:26", "2016-09-28 19:15:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-28 12:15:26", "2016-09-28 19:15:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14536", "3", "2016-09-28 12:16:57", "2016-09-28 19:16:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\nFax number: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-28 12:16:57", "2016-09-28 19:16:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14537", "3", "2016-09-28 12:24:23", "2016-09-28 19:24:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-28 12:24:23", "2016-09-28 19:24:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14538", "3", "2016-09-28 12:25:54", "2016-09-28 19:25:54", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n: (250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-28 12:25:54", "2016-09-28 19:25:54", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14539", "3", "2016-09-28 12:26:59", "2016-09-28 19:26:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-09-28 12:26:59", "2016-09-28 19:26:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14541", "3", "2016-10-03 11:32:04", "2016-10-03 18:32:04", "", "Times Colonist Adv Oct 1, 2016", "", "inherit", "closed", "closed", "", "tc-adv-1-oct-1-2016-proof", "", "", "2016-10-03 11:32:04", "2016-10-03 18:32:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/10/TC-Adv-1-Oct-1-2016-proof.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14542", "3", "2016-10-03 11:34:45", "2016-10-03 18:34:45", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\"]Times Colonist Advertisment[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-10-03 11:34:45", "2016-10-03 18:34:45", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14543", "3", "2016-10-03 11:35:45", "2016-10-03 18:35:45", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisment[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Pastoral Counseling Training (Oct 2016-January 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/\" target=\"_blank\">Pastoral Counselling Training</a></strong> (12 Thursdays, 6 October, 2016-12 January, 2017; no class December 22 and 29, 2016). Registration and payment must be received by <strong>Thursday, September 29</strong>.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-10-03 11:35:45", "2016-10-03 18:35:45", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14544", "3", "2016-10-03 11:36:17", "2016-10-03 18:36:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisment[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-10-03 11:36:17", "2016-10-03 18:36:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14545", "3", "2016-10-03 11:37:28", "2016-10-03 18:37:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<strong><a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturdays, 22 October - 10 December, 2016). Registration and payment must be received by <strong>Friday, October 14</strong>.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-10-03 11:37:28", "2016-10-03 18:37:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14546", "3", "2016-10-03 11:39:18", "2016-10-03 18:39:18", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Teen Anxiety Support Group, Oct-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/\" target=\"_blank\"><strong>Teen <strong>Anxiety Support Group</strong></strong></a> (8 Saturdays, October 22-December 10, 2016)\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal for Young Adult Women</a></strong> (3 Tuesdays, November 8, 15, and 22, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-10-03 11:39:18", "2016-10-03 18:39:18", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14547", "3", "2016-10-05 11:35:44", "2016-10-05 18:35:44", "", "Teen Anxiety Support Group Oct-Dec 2016", "", "inherit", "closed", "closed", "", "youth-support-group-oct-dec-2016", "", "", "2016-10-05 11:35:44", "2016-10-05 18:35:44", "", "14408", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/10/Youth-Support-Group-Oct-Dec-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14548", "3", "2016-10-06 11:53:50", "2016-10-06 18:53:50", "", "Fall Newsletter 2016 ", "", "inherit", "closed", "closed", "", "fall-newsletter-2016-final", "", "", "2016-10-06 11:53:50", "2016-10-06 18:53:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/10/Fall-Newsletter-2016-FINAL.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14549", "3", "2016-10-06 11:58:00", "2016-10-06 18:58:00", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/10/Fall-Newsletter-2016-FINAL.pdf\">Fall Newsletter 2016 </a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Spring-Newsletter-2016-Final.pdf\">2016 Spring Newsletter</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Christmas-2015-Newsletter-FINAL.pdf\">2015 Christmas Newsletter </a>", "Our Newsletter", "", "inherit", "closed", "closed", "", "14339-revision-v1", "", "", "2016-10-06 11:58:00", "2016-10-06 18:58:00", "", "14339", "http://localhost:8888/TestSICPage/wordpress/14339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14551", "3", "2016-10-17 09:47:07", "2016-10-17 16:47:07", "", "Monk Office logo final (4) (3)", "", "inherit", "closed", "closed", "", "monk-office-logo-final-4-3", "", "", "2016-10-17 09:47:07", "2016-10-17 16:47:07", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/10/Monk-Office-logo-final-4-3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14552", "3", "2016-10-17 09:51:19", "2016-10-17 16:51:19", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016 at St Peter\'s Church, Duncan, BC). Registration and payment must be received by <strong>Monday, October 17, 2016</strong>.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-10-17 09:51:19", "2016-10-17 16:51:19", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14553", "3", "2016-10-17 09:52:27", "2016-10-17 16:52:27", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Pastoral Care Team Training, Oct 22, 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/\" target=\"_blank\"><strong>Pastoral Care Team Training</strong></a> (Saturday, October 22, 2016)\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal for Young Adult Women</a></strong> (3 Tuesdays, November 8, 15, and 22, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-10-17 09:52:27", "2016-10-17 16:52:27", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14555", "3", "2016-10-26 09:26:44", "2016-10-26 16:26:44", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n<a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\">Drugrehab.com</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n<h4>Elder Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n\r\n&nbsp;\r\n<h4>Marriage and Relationships</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute \" href=\"https://www.gottman.com/\" target=\"_blank\">Gottman Institute</a>\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n&nbsp;\r\n<h4>Trauma and Abuse</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n\r\n&nbsp;\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n\r\n&nbsp;\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-10-26 09:26:44", "2016-10-26 16:26:44", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14556", "3", "2016-10-26 09:27:16", "2016-10-26 16:27:16", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, 3 November - 8 December, 2016). Registration and payment must be received by <strong>Thursday, October 27</strong>.\r\n\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-10-26 09:27:16", "2016-10-26 16:27:16", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14557", "3", "2016-10-26 09:27:47", "2016-10-26 16:27:47", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal for Young Adult Women</a></strong> (3 Tuesdays, November 8, 15, and 22, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-10-26 09:27:47", "2016-10-26 16:27:47", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14558", "3", "2016-10-31 09:30:58", "2016-10-31 16:30:58", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each.</strong> You can buy tickets directly via Canada Helps (use link below the list of sponsors) or call us at (250) 472-2851.\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\"><strong>Strengthening Well-Being: A Time for Renewal for Youth Adult Women</strong></a> (3 Tuesdays, 8,15 and 22 November, 2016), Registraion and payment must be received by <strong>Tuesday, November 1.</strong>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-10-31 09:30:58", "2016-10-31 16:30:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14559", "3", "2016-10-31 09:31:47", "2016-10-31 16:31:47", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\nPostponed until Spring 2017 <a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\n<strong><a title=\"Strengthening well-being, November 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/\" target=\"_blank\">Strengthening Well-Being: A Time for Renewal for Young Adult Women</a></strong> (3 Tuesdays, November 8, 15, and 22, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-10-31 09:31:47", "2016-10-31 16:31:47", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14561", "3", "2016-11-03 12:24:36", "2016-11-03 19:24:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each. There are a limited number of tickets available at the door. We look forward to seeing you on Saturday!\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/events/annual-fundraising-gala/\" target_blank=\"true\" size=\"big\" color=\"berry\" animation=\"none\" icon_align=\"left\"]Buy Tickets here[/dt_button][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n</strong>\r\n<h4>Current Course Offerings:</h4>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-11-03 12:24:36", "2016-11-03 19:24:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14562", "3", "2016-11-03 12:26:55", "2016-11-03 19:26:55", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Up-coming Gala Fundraising Event:</h3>\r\n<strong>Celebrating 41 Years!</strong>\r\n<strong>Date: <em>Saturday, November 5, 2016</em> from 6:00-10pm.</strong>\r\nOur upcoming annual fundraiser focuses on <strong>mental health in children and youth</strong> this year at the Hotel Grand Pacific in the Vancouver Island Ballroom.\r\nGuest Speaker: <strong>Dr. Allison Rees</strong> of Victoria\'s <em>Life Seminars</em>.\r\nMusical Guests: <strong>Ian McDougall</strong> and Friends\r\nBuffet dinner and complimentary underground parking. Hotel Grand Pacific offers special room rates ($131) for attendees: please quote code \"NOV16S0UTH_001\".\r\n<strong>Tickets are $75 each. There are a limited number of tickets available at the door. We look forward to seeing you on Saturday!\r\nOur sponsors are:[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n</strong>\r\n<h4>Current Course Offerings:</h4>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-11-03 12:26:55", "2016-11-03 19:26:55", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14563", "3", "2016-11-03 12:28:05", "2016-11-03 19:28:05", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\nPostponed until Spring 2017 <a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-11-03 12:28:05", "2016-11-03 19:28:05", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14564", "3", "2016-11-07 12:39:05", "2016-11-07 20:39:05", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter to all.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-11-07 12:39:05", "2016-11-07 20:39:05", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14565", "3", "2016-11-07 12:39:42", "2016-11-07 20:39:42", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-11-07 12:39:42", "2016-11-07 20:39:42", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14566", "3", "2016-11-07 12:43:15", "2016-11-07 20:43:15", "", "Ebb and Flow February 2 - March 19, 2017", "", "inherit", "closed", "closed", "", "ebb-and-flow-feb-march-2017", "", "", "2016-11-07 12:43:15", "2016-11-07 20:43:15", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/11/Ebb-and-Flow-Feb-March-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14568", "3", "2016-11-07 12:53:06", "2016-11-07 20:53:06", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment due in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-11-07 12:53:06", "2016-11-07 20:53:06", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14569", "3", "2016-11-07 12:54:57", "2016-11-07 20:54:57", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and L</strong>oss</a> (6 Thursdays, February 2-March 9, 2017)\r\n\r\nPostponed until Spring 2017 <a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-11-07 12:54:57", "2016-11-07 20:54:57", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14570", "3", "2016-11-07 12:55:39", "2016-11-07 20:55:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14541\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment due in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-11-07 12:55:39", "2016-11-07 20:55:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14572", "3", "2016-11-15 10:15:29", "2016-11-15 18:15:29", "<span style=\"font-size: 8pt;\"><em>The personal information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. ItÂ is only used for the purpose of informing you of our services and benefits and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â We willÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any other outside source.</em></span>\r\n\r\n[gravityform id=\"14\" title=\"true\" description=\"true\"]\r\n\r\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2016-11-15 10:15:29", "2016-11-15 18:15:29", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14573", "3", "2016-11-15 10:17:16", "2016-11-15 18:17:16", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New Clients:</span></span></h4>\r\nIf you are new to our practice and would like to inquire about an initial counselling appointment, pleaseÂ <span style=\"color: #0000ff;\"><span style=\"color: #000000;\">call the CentreÂ at</span> Â <i class=\"fa fa-phone\"></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span>.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail. Please allow 2-3 business days for a counsellor to contact you for an in-take phone call.\r\n\r\nIf you want to contact us by email,Â <span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a Intake Survey form. Â Please allow 2-3 business days for a counsellor to contact you for a free consultation to match you with the appropriate counsellor.</span></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Business hours</strong> are Monday-Friday from 9:00am-5:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n<strong>Counselling hours</strong> are the same as business hours and are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory to listen to the counsellor\'s individual extension. </strong>Press the counsellor\'s 3-digit number extension to reach your counsellor\'s confidential voicemail.Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2016-11-15 10:17:16", "2016-11-15 18:17:16", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14574", "3", "2016-11-15 10:22:32", "2016-11-15 18:22:32", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New clients wishing to inquire about an initial counselling appointment:</span></span></h4>\r\nTo contact us by email,Â <span style=\"color: #000000;\"><span><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a>Â to fill out a Intake Survey form. Â Please allow 2-3 business days for a counsellor to contact you for a free consultation to match you with the appropriate counsellor.</span></span>\r\n\r\n<span><span>You may alsoÂ </span><span style=\"color: #000000;\">call the CentreÂ at</span><span style=\"color: #0000ff;\"> Â </span><i class=\"fa fa-phone\" style=\"color: rgb(0, 0, 255);\"></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span><span style=\"color: #0000ff;\">.</span></span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail. Please allow 2-3 business days for a counsellorÂ <span style=\"color: #000000;\">to contact you for a free consultation to match you with the appropriate counsellor.</span>\r\n\r\n<strong>Counselling hours</strong> are generally Monday-Friday from 9:00am-5:00pm and are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\r\n\r\n<strong>Reception hours</strong> are Monday-Thursday, 9:00am-1:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory to listen to the counsellor\'s individual extension. </strong>Press the counsellor\'s 3-digit number extension to reach your counsellor\'s confidential voicemail.Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2016-11-15 10:22:32", "2016-11-15 18:22:32", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14575", "3", "2016-11-15 10:31:35", "2016-11-15 18:31:35", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, children and youth (ages 6-18), families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: #000000;\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, and press \"0\".</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to fill out a Intake Survey. Please allow 2-3 business days for a counsellor to contact you for a free consultation to match you with the appropriate counsellor.<strong>Counselling hours</strong> are generally Monday-Friday from 9:00am-5:00pm and are by appointment only. Consult your counsellor for details and availability about weekend and evening appointments.\r\n\r\n<strong>Reception hours</strong> are Monday-Thursday, 9:00am-1:00pm. We are closed on statutory holidays.</li>\r\n</ol>\r\n[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2016-11-15 10:31:35", "2016-11-15 18:31:35", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14576", "3", "2016-11-16 06:42:29", "2016-11-16 14:42:29", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New clients wishing to inquire about an initial counselling appointment:</span></span></h4>\r\nTo contact us by <strong>email</strong>,Â <span style=\"color: #000000;\"><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â We will contact you withinÂ 2-3 business days for a free consultation to match you with the appropriate counsellor.</span>\r\n\r\nYou may alsoÂ <span style=\"color: #000000;\"><strong>call</strong> the CentreÂ at</span><span style=\"color: #0000ff;\"> Â </span><i class=\"fa fa-phone\" style=\"color: #0000ff;\"></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span><span style=\"color: #0000ff;\">.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail.Â <span style=\"color: #000000;\">We will contact youÂ </span><span style=\"color: #000000;\">within</span><span style=\"color: #000000;\">Â 2-3 business days for a free consultation to match you with the appropriate counsellor.</span>\r\n\r\n<strong>Counselling hours</strong> are generally Monday-Friday from 9:00am-5:00pm and are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\r\n\r\n<strong>Reception hours</strong> are Monday-Thursday, 9:00am-1:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory to listen to the counsellor\'s individual extension. </strong>Press the counsellor\'s 3-digit number extension to reach your counsellor\'s confidential voicemail.Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2016-11-16 06:42:29", "2016-11-16 14:42:29", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14577", "3", "2016-11-16 06:46:20", "2016-11-16 14:46:20", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, children and youth (ages 6-18), families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: #000000;\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our sliding fee scale which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, and press \"0\".</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to fill out an <strong>Intake Survey</strong>. We will contact you within 2-3 business days for a free consultation to match you with the appropriate counsellor.<strong>Counselling hours</strong> are generally Monday-Friday from 9:00am-5:00pm and are by appointment only. Consult your counsellor for details and availability about weekend and evening appointments.\r\n\r\n<strong>Reception hours</strong> are Monday-Thursday, 9:00am-1:00pm. We are closed on statutory holidays.</li>\r\n</ol>\r\n[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2016-11-16 06:46:20", "2016-11-16 14:46:20", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14578", "3", "2016-11-16 06:48:30", "2016-11-16 14:48:30", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, children and youth (ages 6-18), families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: #000000;\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our <strong>sliding fee scale</strong> which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, and press \"0\".</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to fill out an <strong>Intake Survey</strong>. We will contact you within 2-3 business days for a free consultation to match you with the appropriate counsellor.<strong>Counselling hours</strong> are generally Monday-Friday from 9:00am-5:00pm and are by appointment only. Consult your counsellor for details and availability about weekend and evening appointments.\r\n<strong>Reception hours</strong> are Monday-Thursday, 9:00am-1:00pm. We are closed on statutory holidays.</li>\r\n</ol>\r\n[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2016-11-16 06:48:30", "2016-11-16 14:48:30", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14579", "3", "2016-11-16 11:06:22", "2016-11-16 19:06:22", "", "TC Adv 2 Nov 12, 2016", "", "inherit", "closed", "closed", "", "tc-adv-2-nov-12-2016", "", "", "2016-11-16 11:06:22", "2016-11-16 19:06:22", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/11/TC-Adv-2-Nov-12-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14580", "3", "2016-11-16 11:19:58", "2016-11-16 19:19:58", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment due in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way Greater Victoria\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-11-16 11:19:58", "2016-11-16 19:19:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14581", "3", "2016-11-22 11:11:43", "2016-11-22 19:11:43", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, press 0</strong>Â  for front desk or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $120 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Family Income and Cost per Session:Â </strong></span>\r\n\r\nLess than $50,000: we will discuss with you what you can afford. There is a $10 minimum fee.\r\n\r\n$50,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $120,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque, debit and credit card (Visa, Mastercard)</strong>.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Insurance Coverage</strong></span>\r\n\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). While South Island Centre is able to bill some insurance companies on your behalf, it is <span style=\"text-decoration: underline;\">your responsibility</span> to ensure your own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2016-11-22 11:11:43", "2016-11-22 19:11:43", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14582", "3", "2016-11-22 11:24:07", "2016-11-22 19:24:07", "", "TC Adv 2 Nov 12, 2016", "", "inherit", "closed", "closed", "", "tc-adv-2-nov-12-2016-2", "", "", "2016-11-22 11:24:07", "2016-11-22 19:24:07", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/11/TC-Adv-2-Nov-12-20161.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14584", "3", "2016-11-30 16:12:18", "2016-12-01 00:12:18", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MAPPC, BCATR)</span></span></h4>\r\n<strong><span style=\"color: #000000;\">Barbara Baillie\'s</span></strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MEd, MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>LIz Beattie (BA, MCP, RCC)</strong></span></h4>\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2016-11-30 16:12:18", "2016-12-01 00:12:18", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14585", "3", "2016-11-30 16:16:37", "2016-12-01 00:16:37", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie (Volunteer Counsellor)</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2016-11-30 16:16:37", "2016-12-01 00:16:37", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14586", "3", "2016-12-05 11:00:58", "2016-12-05 19:00:58", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n<a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\">Drugrehab.com</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n<a href=\"http://https://www.meetup.com/Single-Again-Social-empowerment-after-break-up-divorce/\" title=\"Single again club for Women Victoria BC\" target=\"_blank\">Single again Club for Women</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n<h4>Elder Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n\r\n&nbsp;\r\n<h4>Marriage and Relationships</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute \" href=\"https://www.gottman.com/\" target=\"_blank\">Gottman Institute</a>\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n&nbsp;\r\n<h4>Trauma and Abuse</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n\r\n&nbsp;\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n\r\n&nbsp;\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-12-05 11:00:58", "2016-12-05 19:00:58", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14587", "3", "2016-12-05 11:01:46", "2016-12-05 19:01:46", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Addictions</h4>\r\n<a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\">www.viha.ca/hmas/resources</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n<a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\">Drugrehab.com</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n<a title=\"Single again club for Women Victoria BC\" href=\"http://https://www.meetup.com/Single-Again-Social-empowerment-after-break-up-divorce/\" target=\"_blank\">Single Again Club for Women, Victoria, BC</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n<h4>Elder Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n\r\n&nbsp;\r\n<h4>Marriage and Relationships</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute \" href=\"https://www.gottman.com/\" target=\"_blank\">Gottman Institute</a>\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n&nbsp;\r\n<h4>Trauma and Abuse</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n\r\n&nbsp;\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n\r\n&nbsp;\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2016-12-05 11:01:46", "2016-12-05 19:01:46", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14589", "3", "2016-12-06 10:33:03", "2016-12-06 18:33:03", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment due in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][vc_single_image image=\"14588\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-12-06 10:33:03", "2016-12-06 18:33:03", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14590", "3", "2016-12-06 10:43:57", "2016-12-06 18:43:57", "", "CSS logo", "", "inherit", "closed", "closed", "", "css-logo", "", "", "2016-12-06 10:43:57", "2016-12-06 18:43:57", "", "199", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14591", "3", "2016-12-06 10:44:41", "2016-12-06 18:44:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment due in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-12-06 10:44:41", "2016-12-06 18:44:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14592", "3", "2016-12-06 10:56:44", "2016-12-06 18:56:44", "", "Coast_Savings_Vert_300", "", "inherit", "closed", "closed", "", "coast_savings_vert_300", "", "", "2016-12-06 10:56:44", "2016-12-06 18:56:44", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Coast_Savings_Vert_300.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14593", "3", "2016-12-06 11:02:54", "2016-12-06 19:02:54", "", "CSS logo", "", "inherit", "closed", "closed", "", "css-logo-2", "", "", "2016-12-06 11:02:54", "2016-12-06 19:02:54", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14594", "3", "2016-12-07 10:40:27", "2016-12-07 18:40:27", "", "Poster PCT Dialogues Jan 2017", "", "inherit", "closed", "closed", "", "poster-pct-dialogues-jan-2017", "", "", "2016-12-07 10:40:27", "2016-12-07 18:40:27", "", "14595", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Poster-PCT-Dialogues-Jan-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14595", "8", "2016-12-07 10:46:49", "2016-12-07 18:46:49", "To view the poster, click on the link to the right: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Poster-PCT-Dialogues-Jan-2018.1.pdf\">PCTT: The Nuts andPoster PCT Dialogues Jan 2018.1 Bolts of forming, Maintaining and Nurturing Your Team</a>\r\n\r\n<strong>Facilitators: Bill Cole and Margaret Anderson</strong>\r\n\r\n[gravityform id=\"18\" title=\"true\" description=\"false\"]", "Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team (January 18, 2018)", "", "publish", "closed", "closed", "", "pastoral-care-team-training-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-18-2018", "", "", "2017-12-20 15:58:14", "2017-12-20 23:58:14", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14595", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14596", "3", "2016-12-07 10:55:45", "2016-12-07 18:55:45", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-12-07 10:55:45", "2016-12-07 18:55:45", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14597", "3", "2016-12-07 11:02:25", "2016-12-07 19:02:25", "For more information about this workshop, click on the link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Poster-MBTI-January-2017.pdf\">Poster MBTI January 2017</a>\r\n\r\n<strong>Workshop Facilitators: Bill Cole and Glenda Pryce</strong>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, January 28, 2017) ", "", "publish", "closed", "closed", "", "me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017", "", "", "2016-12-07 11:06:21", "2016-12-07 19:06:21", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14597", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14598", "3", "2016-12-07 11:04:47", "2016-12-07 19:04:47", "", "Poster MBTI January 2017", "", "inherit", "closed", "closed", "", "poster-mbti-january-2017", "", "", "2016-12-07 11:04:47", "2016-12-07 19:04:47", "", "14597", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Poster-MBTI-January-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14599", "3", "2016-12-07 11:06:03", "2016-12-07 19:06:03", "For more information about this workshop, click on the link:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Poster-MBTI-January-2017.pdf\">Poster MBTI January 2017</a>\n\n<strong>Workshop Facilitators: Bill Cole and Glenda Pryce</strong>\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, January 28, 2017) ", "", "inherit", "closed", "closed", "", "14597-autosave-v1", "", "", "2016-12-07 11:06:03", "2016-12-07 19:06:03", "", "14597", "http://localhost:8888/TestSICPage/wordpress/14597-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14600", "3", "2016-12-07 11:09:17", "2016-12-07 19:09:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-12-07 11:09:17", "2016-12-07 19:09:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14601", "3", "2016-12-07 11:12:12", "2016-12-07 19:12:12", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator</strong></a> (Saturday, January 28, 2017).\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and L</strong>oss</a> (6 Thursdays, February 2-March 9, 2017)\r\n\r\nPostponed until Spring 2017 <a title=\"Twilight Journey Nov-Dec 2016\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-november-3-december-8-2016-facilitator-margaret-anderson/\" target=\"_blank\"><strong>The Twilight Journey: Grief, Loss and the Very Elderly</strong></a> (6 Thursdays, November 3 - December 8, 2016)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-12-07 11:12:12", "2016-12-07 19:12:12", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14602", "3", "2016-12-07 11:15:44", "2016-12-07 19:15:44", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator</strong></a> (Saturday, January 28, 2017).\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017)\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, February 2-March 9, 2017)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-12-07 11:15:44", "2016-12-07 19:15:44", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14603", "3", "2016-12-07 11:43:22", "2016-12-07 19:43:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am.</strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-12-07 11:43:22", "2016-12-07 19:43:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14605", "3", "2016-12-08 11:05:44", "2016-12-08 19:05:44", "", "Christmas Newsletter 2016", "", "inherit", "closed", "closed", "", "christmas-newsletter-2016", "", "", "2016-12-08 11:05:44", "2016-12-08 19:05:44", "", "14339", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Christmas-Newsletter-2016-.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14606", "3", "2016-12-08 11:09:16", "2016-12-08 19:09:16", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Christmas-Newsletter-2016-.pdf\">Christmas Newsletter 2016</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/10/Fall-Newsletter-2016-FINAL.pdf\">Fall Newsletter 2016 </a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Spring-Newsletter-2016-Final.pdf\">2016 Spring Newsletter</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/04/Christmas-2015-Newsletter-FINAL.pdf\">2015 Christmas Newsletter </a>", "Our Newsletter", "", "inherit", "closed", "closed", "", "14339-revision-v1", "", "", "2016-12-08 11:09:16", "2016-12-08 19:09:16", "", "14339", "http://localhost:8888/TestSICPage/wordpress/14339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14607", "3", "2016-12-13 11:38:25", "2016-12-13 19:38:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am. </strong> In case of a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24 hours a day.\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-12-13 11:38:25", "2016-12-13 19:38:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14608", "3", "2016-12-14 11:24:09", "2016-12-14 19:24:09", "", "Bowen 12 week Mar-May 2017", "", "inherit", "closed", "closed", "", "bowen-12-week-mar-may-2017", "", "", "2016-12-14 11:24:09", "2016-12-14 19:24:09", "", "14609", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Bowen-12-week-Mar-May-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14609", "3", "2016-12-14 11:28:32", "2016-12-14 19:28:32", "For more information, please click on the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Bowen-12-week-Mar-May-20171.pdf\">Bowen 12 week Mar-May 2017</a>\r\n\r\n<strong>Facilitator: Bill ColeÂ </strong>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Family Systems Theory (12 Thursday afternoons, March 9- May 25, 2017)", "", "publish", "closed", "closed", "", "family-systems-theory-12-thursday-afternoons-march-2-may-25-2017", "", "", "2017-02-22 10:51:57", "2017-02-22 18:51:57", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14609", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14610", "3", "2016-12-14 11:45:50", "2016-12-14 19:45:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am. </strong> In case of a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24 hours a day.\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2016-12-14 11:45:50", "2016-12-14 19:45:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14611", "3", "2016-12-14 11:48:34", "2016-12-14 19:48:34", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator</strong></a> (Saturday, January 28, 2017).\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017)\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, February 2-March 9, 2017).\r\n\r\n<strong><a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory</a></strong> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2016-12-14 11:48:34", "2016-12-14 19:48:34", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14612", "3", "2016-12-15 09:24:55", "2016-12-15 17:24:55", "", "Bowen 12 week Mar-May 2017", "", "inherit", "closed", "closed", "", "bowen-12-week-mar-may-2017-2", "", "", "2016-12-15 09:24:55", "2016-12-15 17:24:55", "", "14609", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Bowen-12-week-Mar-May-20171.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14615", "3", "2017-01-10 12:50:29", "2017-01-10 20:50:29", "", "Poster Young Adult Anxiety Group Feb-April 2017", "", "inherit", "closed", "closed", "", "poster-ygadt-support-grp-febapril-2017", "", "", "2017-01-10 12:50:29", "2017-01-10 20:50:29", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/01/Poster-YgAdt-Support-Grp-FebApril-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14617", "3", "2017-01-10 13:04:05", "2017-01-10 21:04:05", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am. </strong> In case of a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24 hours a day.\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>What A Night!</h3>\r\nThanks to all who attended our fabulous fundraiser gala event on Saturday, November 5. What a great time we had! Thanks to our various generous sponsors, our inspiring speaker, Dr. Allison Rees, and Ian McDougall, Neil Swainson and Oliver Gannon who provided the impeccable entertainment, and the Hotel Grand Pacific for a spectacular meal. Kudoos to all! We will provide more details in the December 2016 newsletter. Thanks to all for supporting us - we appreciate it so much.[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"14502\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14039\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14520\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" image=\"14531\"][dt_gap height=\"30\"][vc_single_image image=\"14501\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14551\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Financial Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Victoria Foundation\" image=\"14224\"][vc_column_text][/vc_column_text][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14039\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\"][vc_column_text][/vc_column_text][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-10 13:04:05", "2017-01-10 21:04:05", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14618", "3", "2017-01-10 13:06:25", "2017-01-10 21:06:25", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator</strong></a> (Saturday, January 28, 2017).\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017)\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, February 2-March 9, 2017).\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Grou</strong>p</a> (8 Saturdays, February 18-April 8, 2017).\r\n\r\n<strong><a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory</a></strong> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-01-10 13:06:25", "2017-01-10 21:06:25", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14620", "3", "2017-01-11 08:52:49", "2017-01-11 16:52:49", "", "Poster Young Adult Anxiety Support Group Feb-April 2017", "", "inherit", "closed", "closed", "", "poster-ygadt-support-grp-febapril-2017-2", "", "", "2017-01-11 08:52:49", "2017-01-11 16:52:49", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/01/Poster-YgAdt-Support-Grp-FebApril-20171.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14622", "3", "2017-01-23 10:20:09", "2017-01-23 18:20:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am. </strong> In case of a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24 hours a day.\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" title=\"Province of BC\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" title=\"St Luke\'s Anglican Church\"][dt_gap height=\"30\"][vc_single_image image=\"433\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" title=\"United Way of Greater Victoria\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" title=\"Coast Capital Savings\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_button target_blank=\"true\" size=\"big\" color=\"yellow\" animation=\"none\" icon_align=\"left\" link=\"http://localhost:8888/TestSICPage/wordpress/?p=14579\"]Times Colonist Advertisement[/dt_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-23 10:20:09", "2017-01-23 18:20:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14623", "3", "2017-01-23 10:21:17", "2017-01-23 18:21:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am. </strong> In case of a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24 hours a day.\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" title=\"h\"][dt_gap height=\"30\"][vc_single_image image=\"433\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-23 10:21:17", "2017-01-23 18:21:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14624", "3", "2017-01-23 10:23:49", "2017-01-23 18:23:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am. </strong> In case of a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24 hours a day.\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\" title=\"h\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-23 10:23:49", "2017-01-23 18:23:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14625", "3", "2017-01-23 10:25:07", "2017-01-23 18:25:07", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am. </strong> In case of a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24 hours a day.\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-23 10:25:07", "2017-01-23 18:25:07", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14626", "3", "2017-01-23 10:26:21", "2017-01-23 18:26:21", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3>Contact info</h3>\r\n[/vc_column_text][vc_column_text]<strong>Holiday Hours at South Island Centre: </strong>\r\n\r\nLeading up to Christmas holidays, our Centre will maintain its regular counselling hours by appointment only (9:00am-5:00pm) until Friday, December 23. <strong>We will remain closed from December 24, 2016-January 2, 2017. Our Centre re-opens on Tuesday, January 3, 2017 at 9:00am. </strong> In case of a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24 hours a day.\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nOur Sponsors are:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-23 10:26:21", "2017-01-23 18:26:21", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14627", "3", "2017-01-23 10:28:10", "2017-01-23 18:28:10", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nOur Sponsors are:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-23 10:28:10", "2017-01-23 18:28:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14628", "3", "2017-01-23 10:37:19", "2017-01-23 18:37:19", "", "Marriage Prep Feb 11, 2017", "", "inherit", "closed", "closed", "", "marriage-prep-feb-11-2017", "", "", "2017-01-23 10:37:19", "2017-01-23 18:37:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/01/Marriage-Prep-Feb-11-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14629", "3", "2017-01-23 10:42:11", "2017-01-23 18:42:11", "Facilitators: Bill Cole and Glenda Pryce\r\n\r\nFor more information, click on the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/01/Marriage-Prep-Feb-11-20171.pdf\">Marriage Prep Feb 11, 2017</a>\r\n\r\n&nbsp;\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Marriage Preparation Workshop, Saturday, February 11, 2017; Facilitators: Bill Cole and Glenda Pryce", "", "publish", "closed", "closed", "", "marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce", "", "", "2017-01-23 10:51:46", "2017-01-23 18:51:46", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14629", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14630", "3", "2017-01-23 10:43:24", "2017-01-23 18:43:24", "", "Marriage Prep Feb 11, 2017", "", "inherit", "closed", "closed", "", "marriage-prep-feb-11-2017-2", "", "", "2017-01-23 10:43:24", "2017-01-23 18:43:24", "", "14629", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/01/Marriage-Prep-Feb-11-20171.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14631", "3", "2017-01-23 10:55:40", "2017-01-23 18:55:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nOur Sponsors are:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, January 23, 2017). Please submit your registration and payment in full by Monday, January 23, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-23 10:55:40", "2017-01-23 18:55:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14632", "3", "2017-01-23 10:58:30", "2017-01-23 18:58:30", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"MBTI workshop January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-2017/\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator</strong></a> (Saturday, January 28, 2017).\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017)\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, February 2-March 9, 2017).\r\n\r\n<a title=\"Marriage Preparation workshop\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Worksho</strong>p</a> (Saturday, 11 February, 2017).\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Grou</strong>p</a> (8 Saturdays, February 18-April 8, 2017).\r\n\r\n<strong><a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory</a></strong> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-01-23 10:58:30", "2017-01-23 18:58:30", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14633", "3", "2017-01-24 12:17:40", "2017-01-24 20:17:40", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MAPPC, BCATR)</span></span></h4>\r\n<strong><span style=\"color: #000000;\">Barbara Baillie\'s</span></strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MEd, MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Liz Beattie (BA, MCP, RCC)</strong></span></h4>\r\nLiz received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Peter Simmons (BA, MDiv)</span></h4>\r\n<b><span style=\"color: #00000a;\">Peter Simmons</span></b><span style=\"color: #00000a;\"> received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology, University of Toronto.Â Â His theological education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>\r\n\r\n<span style=\"color: #00000a;\">Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.Â  He strives to work in a culturally sensitive manner and incorporates core belief and cognitive behavioural therapy to promote personal wellness. Â </span>", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-01-24 12:17:40", "2017-01-24 20:17:40", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14634", "3", "2017-01-24 12:18:34", "2017-01-24 20:18:34", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MAPPC, BCATR)</span></span></h4>\r\n<strong><span style=\"color: #000000;\">Barbara Baillie\'s</span></strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MEd, MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Liz Beattie (BA, MCP, RCC)</strong></span></h4>\r\n<strong>Liz Beattie</strong> received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Peter Simmons (BA, MDiv)</span></strong></h4>\r\n<b><span style=\"color: #00000a;\">Peter Simmons</span></b><span style=\"color: #00000a;\"> received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology, University of Toronto.Â Â His theological education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>\r\n\r\n<span style=\"color: #00000a;\">Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.Â  He strives to work in a culturally sensitive manner and incorporates core belief and cognitive behavioural therapy to promote personal wellness. Â </span>", "Meet our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-01-24 12:18:34", "2017-01-24 20:18:34", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14636", "3", "2017-01-24 12:23:14", "2017-01-24 20:23:14", "<strong><span style=\"color: #00000a;\">Peter Simmons</span></strong><span style=\"color: #00000a;\">Â received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology, University of Toronto.Â Â His theological education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>\r\n\r\n<span style=\"color: #00000a;\">Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.Â  He strives to work in a culturally sensitive manner and incorporates core belief and cognitive behavioural therapy to promote personal wellness. Â </span>", "Peter Simmons (BA, MDiv)", "", "publish", "closed", "closed", "", "peter-simmons-ba-mdiv", "", "", "2017-02-22 11:30:23", "2017-02-22 19:30:23", "", "217", "http://localhost:8888/TestSICPage/wordpress/?page_id=14636", "14", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14637", "3", "2017-01-24 12:23:14", "2017-01-24 20:23:14", "<strong><span style=\"color: #00000a;\">Peter Simmons</span></strong><span style=\"color: #00000a;\">Â received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology, University of Toronto.Â Â His theological education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>\r\n\r\n<span style=\"color: #00000a;\">Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.Â  He strives to work in a culturally sensitive manner and incorporates core belief and cognitive behavioural therapy to promote personal wellness. Â </span>", "Peter Simmons (BA, MDiv)", "", "inherit", "closed", "closed", "", "14636-revision-v1", "", "", "2017-01-24 12:23:14", "2017-01-24 20:23:14", "", "14636", "http://localhost:8888/TestSICPage/wordpress/14636-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14638", "3", "2017-01-24 12:26:29", "2017-01-24 20:26:29", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Amber Eves Counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/amber-eves/\" target=\"_blank\"><span style=\"color: #000000;\">Amber Eve</span></a>s (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie (Volunteer Counsellor)</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Peter Simmons (Volunteer Counsellor)\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/peter-simmons-ba-mdiv/\" target=\"_blank\"><span style=\"color: #000000;\">Peter Simmons</span></a></span>Â (Volunteer Counsellor)</strong>: Anxiety, Stress, Self-Esteem, Depression, Vocational Life Transitions\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2017-01-24 12:26:29", "2017-01-24 20:26:29", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14639", "3", "2017-01-25 09:49:40", "2017-01-25 17:49:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nOur Sponsors are:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Tuesday, January 24, 2017.\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\">The Ebb and Flow of Life: An Introduction to Grief and Loss</a> (6 Thursdays, February 2 - March 9, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-25 09:49:40", "2017-01-25 17:49:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14640", "3", "2017-01-25 09:51:09", "2017-01-25 17:51:09", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017)\r\n\r\n<a title=\"The Ebb and Flow of Life, Feb-March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/\" target=\"_blank\"><strong>The Ebb and Flow of Life: An Introduction to Grief and Loss</strong></a> (6 Thursdays, February 2-March 9, 2017).\r\n\r\n<a title=\"Marriage Preparation workshop\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Worksho</strong>p</a> (Saturday, 11 February, 2017).\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Grou</strong>p</a> (8 Saturdays, February 18-April 8, 2017).\r\n\r\n<strong><a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory</a></strong> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-01-25 09:51:09", "2017-01-25 17:51:09", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14641", "3", "2017-01-26 11:24:22", "2017-01-26 19:24:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nOur Sponsors are:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-26 11:24:22", "2017-01-26 19:24:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14642", "3", "2017-01-26 11:25:13", "2017-01-26 19:25:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings:</h4>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\">Young Adult Anxiety Group</a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\">Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\">Marriage Preparation Workshop</a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nOur Sponsors are:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-26 11:25:13", "2017-01-26 19:25:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14643", "3", "2017-01-26 11:28:20", "2017-01-26 19:28:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings</h4>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Workshop</strong></a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nOur Sponsors are:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-26 11:28:20", "2017-01-26 19:28:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14644", "3", "2017-01-26 11:28:43", "2017-01-26 19:28:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings</h4>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Workshop</strong></a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"30\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nWe are funded in part by:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-26 11:28:43", "2017-01-26 19:28:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14645", "3", "2017-01-26 11:29:39", "2017-01-26 19:29:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Course Offerings</h4>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Workshop</strong></a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nWe are funded in part by:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-26 11:29:39", "2017-01-26 19:29:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14646", "3", "2017-01-26 11:30:10", "2017-01-26 19:30:10", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Workshop</strong></a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n\r\nWe are funded in part by:\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-26 11:30:10", "2017-01-26 19:30:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14647", "3", "2017-01-26 11:31:21", "2017-01-26 19:31:21", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Workshop</strong></a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-26 11:31:21", "2017-01-26 19:31:21", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14648", "3", "2017-01-26 11:32:01", "2017-01-26 19:32:01", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 9, 2017.\r\n\r\n<a title=\"PCT Dialogues 8 January 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-dialogues-8-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-31-2017/\" target=\"_blank\"><strong>Pastoral Care Team Dialogues #8: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</strong></a> (Tuesday, January 31, 2017). Please submit your registration and payment in full by Thursday, January 26, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Workshop</strong></a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>We are funded in part by:</strong>\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-26 11:32:01", "2017-01-26 19:32:01", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14649", "3", "2017-01-30 12:01:56", "2017-01-30 20:01:56", "", "Destress Your Life Support Group FebApril 2017", "", "inherit", "closed", "closed", "", "destress-your-life-support-group-febapril-2017", "", "", "2017-01-30 12:01:56", "2017-01-30 20:01:56", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/01/Destress-Your-Life-Support-Group-FebApril-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14650", "3", "2017-01-30 12:04:34", "2017-01-30 20:04:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Marriage Preparation workshop Feb 11, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Workshop</strong></a> (Saturday, February 11, 2017). Please submit your registration and payment in full by Friday, February 3, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9 -May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017).[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>We are funded in part by:</strong>\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-01-30 12:04:34", "2017-01-30 20:04:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14651", "3", "2017-01-30 12:05:46", "2017-01-30 20:05:46", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-11-2017-facilitators-bill-cole-and-glenda-pryce/\" target=\"_blank\"><strong>Marriage Preparation Worksho</strong>p</a> (Saturday, 11 February, 2017).\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Grou</strong>p</a> (8 Saturdays, February 18-April 8, 2017).\r\n\r\n<strong><a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory</a></strong> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-01-30 12:05:46", "2017-01-30 20:05:46", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14653", "3", "2017-02-06 10:41:58", "2017-02-06 18:41:58", "", "Poster MBTI March 2017", "", "inherit", "closed", "closed", "", "poster-mbti-march-2017", "", "", "2017-02-06 10:41:58", "2017-02-06 18:41:58", "", "14654", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/02/Poster-MBTI-March-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14654", "3", "2017-02-06 10:45:55", "2017-02-06 18:45:55", "For more information, click on the link to the right:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/02/Poster-MBTI-March-2017.pdf\">Poster MBTI March 2017</a>\r\n\r\n<strong>Course Facilitators: Bill Cole and Glenda Pryce</strong>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (Saturday, March 18, 2017)", "", "publish", "closed", "closed", "", "me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-saturday-march-18-2017", "", "", "2017-02-06 10:50:45", "2017-02-06 18:50:45", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14654", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14655", "3", "2017-02-06 10:57:08", "2017-02-06 18:57:08", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statuory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>We are funded in part by:</strong>\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-06 10:57:08", "2017-02-06 18:57:08", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14656", "3", "2017-02-06 10:59:37", "2017-02-06 18:59:37", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Grou</strong>p</a> (8 Saturdays, February 18-April 8, 2017).\r\n\r\n<strong><a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory</a></strong> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\n<strong><a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</a> </strong> (Saturday, March 18, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-02-06 10:59:37", "2017-02-06 18:59:37", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14658", "3", "2017-02-14 08:28:10", "2017-02-14 16:28:10", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>We are funded in part by:</strong>\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13315\" alignment=\"center\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" img_link=\"http://www.stlukesvictoria.ca/\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-14 08:28:10", "2017-02-14 16:28:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14659", "3", "2017-02-16 11:24:09", "2017-02-16 19:24:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>We are funded in part by:</strong>\r\n\r\nProvince of BC\r\nSt Luke\'s Anglican Church\r\nUnited Way of Greater Victoria\r\nCoast Capital Savings[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:24:09", "2017-02-16 19:24:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14660", "3", "2017-02-16 11:25:05", "2017-02-16 19:25:05", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_single_image image=\"13912\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"428\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"13311\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][vc_single_image image=\"14590\" img_link_target=\"_self\" img_size=\"132x145\" img_link_large=\"yes\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:25:05", "2017-02-16 19:25:05", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14661", "3", "2017-02-16 11:29:23", "2017-02-16 19:29:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:29:23", "2017-02-16 19:29:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14662", "3", "2017-02-16 11:32:34", "2017-02-16 19:32:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n\r\nUnited Way\r\n<h4>\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:32:34", "2017-02-16 19:32:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14663", "3", "2017-02-16 11:33:35", "2017-02-16 19:33:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"United Way\r\n\r\n\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:33:35", "2017-02-16 19:33:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14664", "3", "2017-02-16 11:34:40", "2017-02-16 19:34:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:34:40", "2017-02-16 19:34:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14665", "3", "2017-02-16 11:35:35", "2017-02-16 19:35:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\" United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:35:35", "2017-02-16 19:35:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14666", "3", "2017-02-16 11:36:46", "2017-02-16 19:36:46", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:36:46", "2017-02-16 19:36:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14667", "3", "2017-02-16 11:38:30", "2017-02-16 19:38:30", "<span style=\"text-decoration: underline;\">Board Members 2016-2017:</span>\r\n\r\nJim Gibson (Interim Chair)\r\n\r\nSally Tuckey (Secretary)\r\n\r\nBarbara Underhill (Treasurer)\r\n\r\nSybil Bagshaw (Member-at-Large)\r\n\r\nFather Dean Henderson (Member-at-Large)\r\n\r\nGreg Beattie (Member-at-Large)\r\n\r\n&nbsp;\r\n\r\nAmber Eves, Director of Service (ex officio)\r\n\r\nCaroline Donelle, Director of Development (ex officio)\r\n\r\nSusanne Reul-Zastre, Operations Manager (ex officio)", "Board of Directors 2016-2017", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2017-02-16 11:38:30", "2017-02-16 19:38:30", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14668", "3", "2017-02-16 11:40:28", "2017-02-16 19:40:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h2>Annual Gala 2017</h2>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h2>Annual General Meeting 2017</h2>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:40:28", "2017-02-16 19:40:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14669", "3", "2017-02-16 11:41:28", "2017-02-16 19:41:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Annual Gala 2017</h3>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h3>Annual General Meeting 2017</h3>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:41:28", "2017-02-16 19:41:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14670", "3", "2017-02-16 11:43:38", "2017-02-16 19:43:38", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Young Adult Anxiety Group, Feb-April 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-anxiety-group-8-saturdays-february-18-april-8-2017-course-facilitators-jamie-mccrum-and-moira-madamombe/\" target=\"_blank\"><strong>Young Adult Anxiety Group</strong></a> (8 Saturdays, February 18-April 8, 2017). Please submit your registration and payment in full by Thursday, February 16, 2017 at noon.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-16 11:43:38", "2017-02-16 19:43:38", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14671", "3", "2017-02-20 09:18:52", "2017-02-20 17:18:52", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-20 09:18:52", "2017-02-20 17:18:52", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14672", "3", "2017-02-20 09:20:40", "2017-02-20 17:20:40", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory</a></strong> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\n<strong><a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</a> </strong> (Saturday, March 18, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-02-20 09:20:40", "2017-02-20 17:20:40", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14673", "3", "2017-02-21 10:39:23", "2017-02-21 18:39:23", "Facilitator: Liz Beattie (MCP, RCC)\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/02/Youth-Support-Group-April-June-2017.pdf\">Youth Support Group April-June 2017</a>\r\n\r\n[gravityform id=\"10\" title=\"true\" description=\"true\"]", "Teen Support Group (Saturday, April 22-June 17, 2017; except May 20)", "", "publish", "closed", "closed", "", "teen-support-group-saturday-april-22-june-17-2017-except-may-20", "", "", "2017-02-21 10:39:23", "2017-02-21 18:39:23", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14673", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14674", "3", "2017-02-20 12:57:37", "2017-02-20 20:57:37", "", "Youth Support Group April-June 2017", "", "inherit", "closed", "closed", "", "youth-support-group-april-june-2017", "", "", "2017-02-20 12:57:37", "2017-02-20 20:57:37", "", "14673", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/02/Youth-Support-Group-April-June-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14675", "3", "2017-02-20 12:58:02", "2017-02-20 20:58:02", "", "Young Adult Group April-June 2017", "", "inherit", "closed", "closed", "", "young-adult-group-april-june-2017", "", "", "2017-02-20 12:58:02", "2017-02-20 20:58:02", "", "14676", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/02/Young-Adult-Group-April-June-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14676", "3", "2017-02-21 10:38:28", "2017-02-21 18:38:28", "Facilitators: Jamie McCrumb (MA, RCC); Moire Madamombe (Master\'s Candidate)\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/02/Young-Adult-Group-April-June-2017.pdf\">Young Adult Group April-June 2017</a>\r\n\r\n[gravityform id=\"15\" title=\"true\" description=\"true\"]", "Young Adult Support Group (Tuesday, April 18-June 6, 2017)", "", "publish", "closed", "closed", "", "young-adult-support-group-tuesday-april-18-june-6-2017", "", "", "2017-02-23 11:47:04", "2017-02-23 19:47:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14676", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14677", "3", "2017-02-21 10:43:38", "2017-02-21 18:43:38", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong>Teen Anxiety Support Group</strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-21 10:43:38", "2017-02-21 18:43:38", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14678", "3", "2017-02-21 10:44:20", "2017-02-21 18:44:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-21 10:44:20", "2017-02-21 18:44:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14679", "3", "2017-02-21 10:44:58", "2017-02-21 18:44:58", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (8 Saturday afternoons, April 22-June 17, 2017, except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-21 10:44:58", "2017-02-21 18:44:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14680", "3", "2017-02-21 10:46:46", "2017-02-21 18:46:46", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\">Young Adult Support Group</a></strong> (8 Tuesday evenings, April 18-June 6, 2017). Please submit your registration and payment in full by Tuesday, April 11, 2017.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-02-21 10:46:46", "2017-02-21 18:46:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14681", "3", "2017-02-21 11:16:33", "2017-02-21 19:16:33", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\">Family Systems Theory</a></strong> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\n<strong><a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</a> </strong> (Saturday, March 18, 2017).\r\n\r\n<a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\"><strong>Young Adult Support Group</strong></a> (Tuesdays, April 18-June 6, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-02-21 11:16:33", "2017-02-21 19:16:33", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14682", "3", "2017-02-21 11:19:23", "2017-02-21 19:19:23", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong></a> (12 Thursday afternoons, March 9-May 25, 2017).\r\n\r\n<strong><a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</a> </strong> (Saturday, March 18, 2017).\r\n\r\n<a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\"><strong>Young Adult Support Group</strong></a> (Tuesdays, April 18-June 6, 2017).\r\n\r\n<a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (Saturday, April 22-June 17, except May 20, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-02-21 11:19:23", "2017-02-21 19:19:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14684", "3", "2017-02-22 10:57:48", "2017-02-22 18:57:48", "<span style=\"color: #000000;\">We are located at <strong>3821A Cedar Hill Cross Road</strong></span> (Saanich). For available maps (Google, Mapquest), please scroll to the bottom of this page.\r\n\r\nOur offices are located in the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (up from the McDonaldâ€™s at Shelbourne, away from UVic).Â <strong>Parking is free.</strong>\r\n\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>Bus Routes</strong> <strong>from downtown</strong>:</span></em>\r\n<ul>\r\n	<li><strong>No. 24 Cedar Hill/Admirals:</strong>Â stops at the intersection of Cedar Hill/Cedar Hill Cross (by Lutheran Church of the Cross) â€“ we are kitty corner/across the street!Â <a title=\"Link to BC transit Bus No. 24\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=24&amp;\" target=\"_blank\">Click here</a>Â for the schedule.</li>\r\n	<li><strong>No. 27 Gordon Head/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to BC transit bus No. 27\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=27&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 27. Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n	<li><strong>No. 28 Majestic/Beacon Hill</strong>Â stops at the intersection of Cedar Hill Cross Rd/Shelbourne Rd.Â <span style=\"color: #000000;\"><a title=\"Link to No. 28 BC transit bus\" href=\"http://www.bctransit.com/regions/vic/schedules/schedule.cfm?rmnu=dvSchedule&amp;line=28&amp;\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â for the schedule for No. 28.Â Your estimated arrival time will be halfway between the Hillside and McKenzie stops. Itâ€™s a 5-10 minute walk up the hill (walk away from UVic).</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Sidney:</strong></span></em>\r\n<ul>\r\n	<li>Travel south on the Pat Bay Hwy (17) and take the <strong>McKenzie</strong> exit, turn <strong>left</strong> onto McKenzie Ave.</li>\r\n	<li>Turn <strong>right</strong> onto <strong>Cedar Hill Rd</strong>,</li>\r\n	<li>turn <strong>right</strong>Â ontoÂ <strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<em><span style=\"color: #000000;\"><strong>From Langford/Colwood:</strong></span></em>\r\n<ul>\r\n	<li>Travel East toward Victoria on Hwy 1.</li>\r\n	<li>Turn <strong>left onto McKenzie Ave, </strong></li>\r\n	<li>turn <strong>right</strong> onÂ toÂ <strong>Cedar Hill Rd</strong>,</li>\r\n	<li><strong>turn right</strong>Â on to<strong>Â Cedar Hill Cross Rd</strong>,</li>\r\n	<li>and immediatelyÂ <strong>RIGHT</strong> onto the St Luke\'s Anglican Church parking lot.</li>\r\n	<li>We are the <strong>house</strong> behind the big Sequoia tree overlooking the parking lot. Parking is free.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:</span>\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-02-22 10:57:48", "2017-02-22 18:57:48", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14685", "3", "2017-02-22 11:04:24", "2017-02-22 19:04:24", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General Registration Information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/training program fee payment deadline for each course (one week/5 business days prior to the start date of the course or program).</li>\r\n	<li>We require a minimum number of registrants to run our courses and training programs. To avoid the heartbreak of a cancelled course or program, register early and invite your friends to join too!</li>\r\n	<li><span style=\"color: #3b3f42;\">The personal information you provide during the registration process is collected and used under the authority of theÂ </span><strong style=\"color: #3b3f42;\">Freedom of Information and Protection Privacy Act (PIPPA)</strong><span style=\"color: #3b3f42;\">. The information is used only for the purpose of administering courses or trainingÂ programs, informing you of our services and benefits, and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â </span></li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course or Training program:</span></span></strong></h4>\r\n<ol>\r\n	<li><span style=\"color: #000000;\">Â <a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a></span><span style=\"font-size: 14px;\">Â to fill out the Contact Form. The office co-ordinator will confirm the registration application by email.Â </span></li>\r\n	<li>Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â CallÂ the office co-ordinator atÂ <strong>250-472-2851, extension 101</strong> and leave a voice mail.</li>\r\n</ol>\r\nPlease include in your phone message:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card).</li>\r\n</ul>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Payment Information:</strong></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course or training program fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week (or 5 business days)</strong>Â before the start date of the course or program.</li>\r\n</ul>\r\nTo complete the registration process and confirm a space in the course/training program, we <span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000;\">must</span></strong></span>Â receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week (5 business days) prior</strong></span> to the start date of the course or training program.\r\n\r\nRegistration is on a first come, first serve basis. If a course/training program does not have the minimum number of participants registered 5 business prior to the start date, the program may be cancelled. If this is the case, we will contact you by email or phone at least 3 business prior to the start date of the course/training program.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\nWe accept<span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card (Visa, Mastercard)</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office Operations ManagerÂ will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and the Operations ManagerÂ will contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span>\r\n<ul>\r\n	<li>In the case of a course/training program cancellations due to lack of registrants, a full refund will be issued.</li>\r\n	<li>In all cases where cash transactions occurred, refunds will be paid by cheque and may require a delay of up to 10 business days for processing.</li>\r\n	<li>If fees were paid by using a credit card, refunds will go back to the same card that was used to pay the course/training program fee.</li>\r\n</ul>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2017-02-22 11:04:24", "2017-02-22 19:04:24", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14686", "3", "2017-02-22 11:05:41", "2017-02-22 19:05:41", "More information onÂ currently offered courses in are in theÂ <span style=\"color: #000000;\"><strong><em>Upcoming Events Calendar</em></strong></span>Â  sidebar to your right.\r\n\r\nBelow are <span style=\"color: #000000;\"><strong>general information posters</strong></span> of <span style=\"color: #000000;\"><strong>personal development courses</strong>Â </span>we are pleased to offer.\r\n<ul style=\"color: #3b3f42;\">\r\n	<li>Preparing for Marriage (<span style=\"color: #000000;\"><a title=\"Marriage Preparation - general information\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/General-Marriage-Prep-poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a></span>)</li>\r\n	<li>The Ebb and Flow of Life: Understanding Grief, Loss, and Life TransitionsÂ (<span style=\"color: #000000;\"><span style=\"color: #000000;\"><a title=\"The Ebb and Flow of Life (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/GL-poster.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></span></li>\r\n	<li>Twilight Journeys: Understand Grief, Loss and the Very Elderly <span style=\"color: #000000;\">(<a style=\"color: #576b23;\" title=\"The Twilight Journeys (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/Twilight-Journeys-general.pdf\" target=\"_blank\"><span style=\"color: #000000;\">information poster here</span></a>)</span></li>\r\n	<li>Caregiver Burnout: The Need for Self-Care <span style=\"color: #000000;\">(<a style=\"color: #576b23;\" title=\"Caregiver Burnout (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Burnout-General-Info-Poster-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\">i<span style=\"color: #000000;\">nformation poster here</span></span></a>)</span></li>\r\n	<li><span style=\"color: #000000;\">Bowen Family Systems Training (<a style=\"color: #576b23;\" title=\"Bowen Family Systems (General Info Poster)\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/07/Family-Systems-print-2014.pdf\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">information poster here</span></span></a>)</span></li>\r\n</ul>\r\nFor more information on these courses or to indicate interest in one or more of the courses listed above, pleaseÂ <a title=\"Contact Form: Register for a course or training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">click here</a>Â to fill out a contact form,Â or call our officeÂ at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101.</strong>", "Courses for Personal Development - General Info", "", "inherit", "closed", "closed", "", "187-revision-v1", "", "", "2017-02-22 11:05:41", "2017-02-22 19:05:41", "", "187", "http://localhost:8888/TestSICPage/wordpress/187-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14687", "3", "2017-02-22 11:22:18", "2017-02-22 19:22:18", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<h3></h3>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo-e1481049941965.jpg\"><img class=\"size-full wp-image-14590 alignright\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo-e1481049941965.jpg\" alt=\"CSS logo\" width=\"200\" height=\"51\" /></a>\r\n\r\n[caption id=\"attachment_428\" align=\"alignleft\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"wp-image-428 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_13908\" align=\"alignleft\" width=\"191\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\"><img class=\"wp-image-13908 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\" alt=\"Community Gaming Funds\" width=\"191\" height=\"69\" /></a> Province of BC[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignleft\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"wp-image-433 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to Our Sponsors", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2017-02-22 11:22:18", "2017-02-22 19:22:18", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14688", "3", "2017-02-22 11:29:06", "2017-02-22 19:29:06", "<a style=\"line-height: 1.5em;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\"><img class=\"alignright wp-image-694 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/bill_cole_150w.jpg\" alt=\"bill_cole_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Bill Cole</strong></span>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n&nbsp;", "Bill Cole (M.A., RCC)", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2017-02-22 11:29:06", "2017-02-22 19:29:06", "", "41", "http://localhost:8888/TestSICPage/wordpress/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14689", "3", "2017-02-22 11:31:46", "2017-02-22 19:31:46", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">All counsellorsÂ at South Island Centre</span></span>Â are qualified to provideÂ professional services to individuals, couples, children and youth (ages 6-18), families, and organizations around a variety of issues.\r\n\r\n<span style=\"color: #000000;\"><strong>We can help you with</strong>:</span>\r\n<ul>\r\n	<li>grief, loss, and life-transitions;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>end-of-life care;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>trauma or distress;</li>\r\n	<li>depression;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual, and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n....and more.\r\n\r\nFor a list of our qualified and experienced counsellors, <span style=\"color: #000000;\"><a title=\"Meet our Counsellors\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>. TheyÂ provide a safe and positive environment for you to grow through the challenges of life.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence, you don\'t have to go through it alone!Â <span style=\"color: #000000;\"><strong>We\'re here to help!</strong></span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><span style=\"color: #000000;\">Affordable Counselling Services</span></strong></span>\r\n\r\nAt South Island Centre we believe it is important thatÂ <strong>everyoneÂ </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need. <strong>We do not turn people away for lack of funding</strong>Â - that\'s why we offerÂ <strong>affordable counselling services</strong>Â to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - sliding fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span> to view our <strong>sliding fee scale</strong> which isÂ based on your combined family income.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>ToÂ MakeÂ an Appointment</strong></span>\r\n<ol>\r\n	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851, and press \"0\" to reach the front desk.</li>\r\n	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to fill out an <strong>Intake Survey</strong>. We will contact you within 2-3 business days for a free consultation to match you with the appropriate counsellor.<strong>Counselling hours</strong> are generally Monday-Friday from 9:00am-5:00pm and are by appointment only. Consult your counsellor for details and availability about weekend and evening appointments.\r\n<strong>Reception hours</strong> are Monday-Thursday, 9:00am-1:00pm. We are closed on statutory holidays.</li>\r\n</ol>\r\n[/vc_column_text][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How We Can Help You", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2017-02-22 11:31:46", "2017-02-22 19:31:46", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14690", "3", "2017-02-22 11:32:36", "2017-02-22 19:32:36", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<h3></h3>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo-e1481049941965.jpg\"><img class=\"size-full wp-image-14590 alignright\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo-e1481049941965.jpg\" alt=\"CSS logo\" width=\"200\" height=\"51\" /></a>\r\n\r\n[caption id=\"attachment_428\" align=\"alignleft\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"wp-image-428 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_13908\" align=\"alignleft\" width=\"191\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\"><img class=\"wp-image-13908 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\" alt=\"Community Gaming Funds\" width=\"191\" height=\"69\" /></a> Province of BC[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignleft\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"wp-image-433 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to Our Supporters", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2017-02-22 11:32:36", "2017-02-22 19:32:36", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14691", "3", "2017-02-22 11:33:20", "2017-02-22 19:33:20", "<h3><span style=\"color: #000000;\">Generous Individuals like yourself</span></h3>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo-e1481049941965.jpg\"><img class=\"size-full wp-image-14590 alignright\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/CSS-logo-e1481049941965.jpg\" alt=\"CSS logo\" width=\"200\" height=\"51\" /></a>\r\n\r\n[caption id=\"attachment_428\" align=\"alignleft\" width=\"71\"]<a title=\"St Luke Cedar Hill Anglican Church, Victoria, BC\" href=\"http://stlukesvictoria.ca\" target=\"_blank\"><img class=\"wp-image-428 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/St-Lukes-logo.jpg\" alt=\"St Luke Cedar Hill Anglican Church\" width=\"71\" height=\"67\" /></a> St Luke Cedar Hill Anglican Church[/caption]\r\n\r\n[caption id=\"attachment_13908\" align=\"alignleft\" width=\"191\"]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\"><img class=\"wp-image-13908 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/03/Capture1.png\" alt=\"Community Gaming Funds\" width=\"191\" height=\"69\" /></a> Province of BC[/caption]\r\n\r\n[caption id=\"attachment_433\" align=\"alignleft\" width=\"300\"]<a title=\"United Way Greater Victoria Funded Program\" href=\"http://uwgv.ca/\" target=\"_blank\"><img class=\"wp-image-433 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/02/UnitedWayFull375x165-300x132.gif\" alt=\"United Way\" width=\"300\" height=\"132\" /></a> United Way Greater Victoria Funded Program[/caption]", "Thank You to Our Supporters", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2017-02-22 11:33:20", "2017-02-22 19:33:20", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14692", "3", "2017-02-22 11:35:43", "2017-02-22 19:35:43", "<h3><strong><span style=\"color: #000000;\">Generous Individuals like yourself</span></strong></h3>\r\nProvince of BC\r\n\r\nUnited Way of Greater Victoria\r\n\r\nCoast Capital Savings\r\n\r\nSt Luke Cedar Hill Anglican Church\r\n\r\n&nbsp;", "Thank You to Our Supporters", "", "inherit", "closed", "closed", "", "199-revision-v1", "", "", "2017-02-22 11:35:43", "2017-02-22 19:35:43", "", "199", "http://localhost:8888/TestSICPage/wordpress/199-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14694", "3", "2017-03-06 10:25:56", "2017-03-06 18:25:56", "", "Hand with tree Photo", "", "inherit", "closed", "closed", "", "hand-with-tree-photo", "", "", "2017-03-06 10:25:56", "2017-03-06 18:25:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/03/Hand-with-tree-Photo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14695", "3", "2017-03-06 11:10:41", "2017-03-06 19:10:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\">Young Adult Support Group</a></strong> (8 Tuesday evenings, April 18-June 6, 2017). Please submit your registration and payment in full by Tuesday, April 11, 2017.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Family Systems/Bowen March-May 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-theory-12-thursday-afternoons-march-2-may-25-2017/\" target=\"_blank\"><strong>Family Systems Theory</strong> </a> (12 Thursday afternoons, March 9-May 25, 2017). Please submit your registration and payment in full by Thursday, March 2, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-03-06 11:10:41", "2017-03-06 19:10:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14696", "3", "2017-03-06 11:58:33", "2017-03-06 19:58:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\">Young Adult Support Group</a></strong> (8 Tuesday evenings, April 18-June 6, 2017). Please submit your registration and payment in full by Tuesday, April 11, 2017.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][vc_facebook type=\"button_count\"][vc_column_text]</h6>\r\n<h4><a title=\"Newsletter page\" href=\"http://localhost:8888/TestSICPage/wordpress/newsletters/\" target=\"_blank\">Click here to read our Newsletter</a></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_button link=\"https://www.canadahelps.org/en/charities/south-island-centre-for-counselling-training/\" target_blank=\"true\" size=\"big\" color=\"dark_green\" animation=\"none\" icon_align=\"left\"]Make a Donation[/dt_button][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-03-06 11:58:33", "2017-03-06 19:58:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14697", "3", "2017-03-06 11:59:06", "2017-03-06 19:59:06", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</a> </strong> (Saturday, March 18, 2017).\r\n\r\n<a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\"><strong>Young Adult Support Group</strong></a> (Tuesdays, April 18-June 6, 2017).\r\n\r\n<a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (Saturday, April 22-June 17, except May 20, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-03-06 11:59:06", "2017-03-06 19:59:06", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14698", "3", "2017-03-09 10:41:06", "2017-03-09 18:41:06", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.Â Â <strong>We do not turn people away for lack of funds.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\">Our goal is to ensure that regardless of your financial situation, you can still get the help and support you need. </span></strong>Thatâ€™s why we sit down with you and work out a fee that fits your budget. The fee is based on a percentage of your gross annual income.\r\n\r\nIf you think you might benefit from speaking to one of our counsellors, please call our office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, press 0</strong>Â  for front desk or <a title=\"General Inquiry Form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">click here</span></span></a> to fill out a general inquiry contact form. Weâ€™re here to help!\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000; text-decoration: underline;\">SlidingÂ Fee Scale</span></span></span></h4>\r\nSouth Island Centre normally sets its fees on a <span style=\"color: #000000;\"><strong>sliding</strong><strong>Â scale between $50 and $120 per 60-minute session</strong></span> (includes GST) depending on the level of your household income. <em>\r\n</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Family Income and Cost per Session:Â </strong></span>\r\n\r\nLess than $50,000: we will discuss with you what you can afford. There is a $10 minimum fee.\r\n\r\n$50,000 - $55,000: Â $55\r\n\r\n$56,000 - $60,000: Â $60\r\n\r\n$61,000 - $65,000: Â $65\r\n\r\n$66,000 - $70,000: $70 etc.\r\n\r\nUp to $120 per session for a combined gross household income of up to $120,000 and above.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> we acceptÂ <strong>cash, cheque, debit and credit card (Visa, Mastercard)</strong>.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Insurance Coverage</strong></span>\r\n\r\nMany people are able to utilize their insurance coverage to pay for a portion or all of the mental health services they receive at South Island Centre. Most insurance coverage will require that you, the client, pay up-front, and then reimburse you upon receiving a copy of your receipt(s). It is the <span style=\"text-decoration: underline;\">client\'sÂ responsibility</span> to ensure his/her own coverage by contacting your insurance plan administrator to receive authorization for payment of services to South Island Centre. Be sure to inquire whether your plan covers Registered Clinical Counsellors. If an insurance company refuses payment for any reason, you are responsible for the payment of counselling services received at South Island Centre.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2017-03-09 10:41:06", "2017-03-09 18:41:06", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14699", "3", "2017-03-12 15:00:39", "2017-03-12 22:00:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\">Young Adult Support Group</a></strong> (8 Tuesday evenings, April 18-June 6, 2017). Please submit your registration and payment in full by Tuesday, April 11, 2017.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"MBTI workshop March 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14654\" target=\"_blank\"><strong>Me and My Personality: An Introduction to the Myers-Briggs Type Indicator and Your Personality Preference</strong></a> (Saturday, March 18, 2017). Please submit your registration and payment in full by Monday, March 13, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-03-12 15:00:39", "2017-03-12 22:00:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14702", "3", "2017-03-16 13:25:34", "2017-03-16 20:25:34", "South Island Centre assumes no responsibility for the accuracy, reliability or currency of the information contained in the links below and are not endorsing everything therein - theses are simply recommendations.\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Addictions</h4>\r\n<span style=\"color: #333399;\"><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\"><span style=\"color: #333399;\">www.viha.ca/hmas/resources</span></a></span>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n<a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\">Drugrehab.com</a>\r\n\r\n&nbsp;\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n\r\n&nbsp;\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n\r\n&nbsp;\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n<a title=\"Single again club for Women Victoria BC\" href=\"http://https://www.meetup.com/Single-Again-Social-empowerment-after-break-up-divorce/\" target=\"_blank\">Single Again Club for Women, Victoria, BC</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n\r\n&nbsp;\r\n<h4>Elder Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n\r\n&nbsp;\r\n<h4>Marriage and Relationships</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute \" href=\"https://www.gottman.com/\" target=\"_blank\">Gottman Institute</a>\r\n<h4></h4>\r\n&nbsp;\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n&nbsp;\r\n<h4>Trauma and Abuse</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n\r\n&nbsp;\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n\r\n&nbsp;\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n<span style=\"color: #000080;\"><a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\"><span style=\"color: #000080;\">Online Guide to Suicide Prevention (Wake Forest University)</span></a></span>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2017-03-16 13:25:34", "2017-03-16 20:25:34", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14705", "3", "2017-03-28 11:30:51", "2017-03-28 18:30:51", "For more information, click on the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-9-2018/marriage-prep-june-9-2018/\" rel=\"attachment wp-att-15359\">Marriage Prep June 9 2018</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Marriage Preparation Workshop (Saturday, June 9, 2018)", "", "publish", "closed", "closed", "", "marriage-preparation-workshop-june-9-2018", "", "", "2018-02-06 12:17:04", "2018-02-06 20:17:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14705", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14706", "3", "2017-03-28 11:29:05", "2017-03-28 18:29:05", "", "Marriage Preparation Workshop June 10, 2017", "", "inherit", "closed", "closed", "", "marriage-prep-june-10-2017", "", "", "2017-03-28 11:29:05", "2017-03-28 18:29:05", "", "14705", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/03/Marriage-Prep-June-10-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14707", "3", "2017-03-28 11:35:22", "2017-03-28 18:35:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\">Young Adult Support Group</a></strong> (8 Tuesday evenings, April 18-June 6, 2017). Please submit your registration and payment in full by Tuesday, April 11, 2017.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nSave the date! Our 2017 Annual General Meeting will be held on Wednesday, May 10 at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-03-28 11:35:22", "2017-03-28 18:35:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14708", "3", "2017-03-28 11:38:30", "2017-03-28 18:38:30", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\"><strong>Young Adult Support Group</strong></a> (Tuesdays, April 18-June 6, 2017).\r\n\r\n<a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\"><strong>Teen Anxiety Support Group</strong></a> (Saturday, April 22-June 17, except May 20, 2017).\r\n\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-03-28 11:38:30", "2017-03-28 18:38:30", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14709", "3", "2017-03-30 11:24:33", "2017-03-30 18:24:33", "[gravityform id=\"16\" title=\"true\" description=\"true\"]", "Client-Counsellor Feedback Form ", "", "publish", "closed", "closed", "", "client-counsellor-feedback-form", "", "", "2017-03-30 11:25:10", "2017-03-30 18:25:10", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=14709", "35", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14710", "3", "2017-03-30 11:24:33", "2017-03-30 18:24:33", "[gravityform id=\"16\" title=\"true\" description=\"true\"]", "Client-Counsellor Feedback Form ", "", "inherit", "closed", "closed", "", "14709-revision-v1", "", "", "2017-03-30 11:24:33", "2017-03-30 18:24:33", "", "14709", "http://localhost:8888/TestSICPage/wordpress/14709-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14712", "3", "2017-04-11 14:56:47", "2017-04-11 21:56:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\">Young Adult Support Group</a></strong> (8 Tuesday evenings, April 18-June 6, 2017). Please submit your registration and payment in full by Tuesday, April 11, 2017.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on Saturday, October 21, 2017 at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-04-11 14:56:47", "2017-04-11 21:56:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14713", "3", "2017-04-12 09:34:17", "2017-04-12 16:34:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Young Adult Support Group, April-June 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/\" target=\"_blank\">Young Adult Support Group</a></strong> (8 Tuesday evenings, April 18-June 6, 2017). Please submit your registration and payment in full by Tuesday, April 11, 2017.\r\n\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-04-12 09:34:17", "2017-04-12 16:34:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14714", "3", "2017-04-13 10:56:28", "2017-04-13 17:56:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<strong><a title=\"Teen Anxiety Support Group (April-June 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/\" target=\"_blank\">Teen Anxiety Support Group</a></strong> (8 Saturday afternoons, April 22-June 17, 2017; except May 20). Please submit your registration and payment in full by Thursday, April 13, 2017.\r\n\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-04-13 10:56:28", "2017-04-13 17:56:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14715", "3", "2017-04-13 10:57:10", "2017-04-13 17:57:10", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-04-13 10:57:10", "2017-04-13 17:57:10", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14717", "3", "2017-04-18 14:13:13", "2017-04-18 21:13:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.\r\n\r\nWe offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</h6>\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-04-18 14:13:13", "2017-04-18 21:13:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14718", "3", "2017-04-24 11:49:31", "2017-04-24 18:49:31", "<em>South Island Centre for Counselling and Training</em>Â also provides counselling to children and youth between the ages of 6-18.\r\n\r\nOur Â registered clinical counsellors are specially trained and experienced in working with children through family therapy, educational programs and personal parenting and offer professional support with a variety of issues: anxiety, depression, coping with bullying, separation/divorce, grief and loss, self-image challenges, surviving academic pressures among others.\r\n\r\nUsing talk therapy, play, art media, storytelling and role play, children and youth are encouraged to explore individual, school or family challenges which are affecting their mental health and well-being.\r\n\r\nFor more information, and/or to book a consult, please contact us at (250) 472-2851, ext 101, or fill out counselling inquiry form.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nOnce you have made an appointment with your child\'s counsellor, you will need to fill out our Child/Youth History form. Click on the link below to print the form and bring the completed form to your child\'s first appointment.\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2017-04-24 11:49:31", "2017-04-24 18:49:31", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14719", "3", "2017-04-24 11:50:26", "2017-04-24 18:50:26", "<em>South Island Centre for Counselling and Training</em>Â also provides counselling to children and youth between the ages of 6-18.\r\n\r\nOur Â registered clinical counsellors are specially trained and experienced in working with children through family therapy, educational programs and personal parenting and offer professional support with a variety of issues: anxiety, depression, coping with bullying, separation/divorce, grief and loss, self-image challenges, surviving academic pressures among others.\r\n\r\nUsing talk therapy, play, art media, storytelling and role play, children and youth are encouraged to explore individual, school or family challenges which are affecting their mental health and well-being.\r\n\r\nFor more information, and/or to book a consult, please contact us at (250) 472-2851, ext 101, or fill out <a title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">counselling inquiry</a> form.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nOnce you have made an appointment with your child\'s counsellor, you will need to fill out our Child/Youth History form. Click on the link below to print the form and bring the completed form to your child\'s first appointment.\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2017-04-24 11:50:26", "2017-04-24 18:50:26", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14720", "3", "2017-04-24 11:50:47", "2017-04-24 18:50:47", "<em>South Island Centre for Counselling and Training</em>Â also provides counselling to children and youth between the ages of 6-18.\r\n\r\nOur Â registered clinical counsellors are specially trained and experienced in working with children through family therapy, educational programs and personal parenting and offer professional support with a variety of issues: anxiety, depression, coping with bullying, separation/divorce, grief and loss, self-image challenges, surviving academic pressures among others.\r\n\r\nUsing talk therapy, play, art media, storytelling and role play, children and youth are encouraged to explore individual, school or family challenges which are affecting their mental health and well-being.\r\n\r\nFor more information, and/or to book a consult, please contact us at (250) 472-2851, ext 101, or fill out aÂ <a title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">counselling inquiry</a> form.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nOnce you have made an appointment with your child\'s counsellor, you will need to fill out our Child/Youth History form. Click on the link below to print the form and bring the completed form to your child\'s first appointment.\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2017-04-24 11:50:47", "2017-04-24 18:50:47", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14722", "3", "2017-05-01 13:22:14", "2017-05-01 20:22:14", "", "Mental Health Week logo", "", "inherit", "closed", "closed", "", "mental-health-week-logo", "", "", "2017-05-01 13:22:14", "2017-05-01 20:22:14", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/05/Mental-Health-Week-logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14723", "3", "2017-05-02 10:45:18", "2017-05-02 17:45:18", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Costs of Counselling Services</strong></span>\r\n\r\nCounselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of gross annual Â income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 an hour.<strong>Â </strong>Speak to your counsellor aboutÂ your fees.\r\n\r\n<strong><em>Please note: the cancellation fee</em></strong><strong>Â <em>for missed appointments is Â 50% of the established fee when less than 24 hoursâ€™ notice is given.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> <strong>cash, cheque, debit and credit card (Visa, Mastercard)</strong>.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Insurance Coverage</strong></span>\r\n\r\nIf you have extended health coverage which provides for your mental health counselling you will not qualify for our subsidized rates until the coverage amount is depleted. It is your responsibility to submit receipts to your provider for reimbursement. Please inform your counsellor if you have extended health benefits.\r\n\r\nIf you are waiting for an outside agency to reimburse you because of a claim youâ€™ve made (i.e. Work BC or ICBC), you are responsible for your payments before the settlement is reached and that amount would be subject to the same rate as above. South Island Centre does not bill any outside parties for services rendered.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Sliding Fee Scale ", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2017-05-02 10:45:18", "2017-05-02 17:45:18", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14724", "3", "2017-05-02 10:45:49", "2017-05-02 17:45:49", "[vc_row][vc_column][vc_column_text]At South Island Centre we believe it is important that <span style=\"color: #000000;\"><strong>everyone</strong></span> has access to Counselling services.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Costs of Counselling Services</strong></span>\r\n\r\nCounselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of gross annual Â income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 an hour.<strong>Â </strong>Speak to your counsellor aboutÂ your fees.\r\n\r\n<strong><em>Please note: the cancellation fee</em></strong><strong>Â <em>for missed appointments is Â 50% of the established fee when less than 24 hoursâ€™ notice is given.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> <strong>cash, cheque, debit and credit card (Visa, Mastercard)</strong>.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Insurance Coverage</strong></span>\r\n\r\nIf you have extended health coverage which provides for your mental health counselling you will not qualify for our subsidized rates until the coverage amount is depleted. It is your responsibility to submit receipts to your provider for reimbursement. Please inform your counsellor if you have extended health benefits.\r\n\r\nIf you are waiting for an outside agency to reimburse you because of a claim youâ€™ve made (i.e. Work BC or ICBC), you are responsible for your payments before the settlement is reached and that amount would be subject to the same rate as above. South Island Centre does not bill any outside parties for services rendered.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Income-based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2017-05-02 10:45:49", "2017-05-02 17:45:49", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14725", "3", "2017-05-02 10:46:52", "2017-05-02 17:46:52", "[vc_row][vc_column][vc_column_text]At South Island Centre we know howÂ important it is forÂ <span style=\"color: #000000;\">everyone</span>Â to have access to professional, affordable counselling services.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Costs of Counselling Services</strong></span>\r\n\r\nCounselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of gross annual Â income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 an hour.<strong>Â </strong>Speak to your counsellor aboutÂ your fees.\r\n\r\n<strong><em>Please note: the cancellation fee</em></strong><strong>Â <em>for missed appointments is Â 50% of the established fee when less than 24 hoursâ€™ notice is given.</em></strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">Payment options</span></span></strong>:</span> <strong>cash, cheque, debit and credit card (Visa, Mastercard)</strong>.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Insurance Coverage</strong></span>\r\n\r\nIf you have extended health coverage which provides for your mental health counselling you will not qualify for our subsidized rates until the coverage amount is depleted. It is your responsibility to submit receipts to your provider for reimbursement. Please inform your counsellor if you have extended health benefits.\r\n\r\nIf you are waiting for an outside agency to reimburse you because of a claim youâ€™ve made (i.e. Work BC or ICBC), you are responsible for your payments before the settlement is reached and that amount would be subject to the same rate as above. South Island Centre does not bill any outside parties for services rendered.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2017-05-02 10:46:52", "2017-05-02 17:46:52", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14726", "3", "2017-05-02 10:47:51", "2017-05-02 17:47:51", "[vc_row][vc_column][vc_column_text]At South Island Centre we know howÂ important it is forÂ <span style=\"color: #000000;\">everyone</span>Â to have access to professional, affordable counselling services.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Costs of Counselling Services</strong></span>\r\n\r\nCounselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of gross annual Â income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 an hour.<strong>Â </strong>Speak to your counsellor aboutÂ your fees.\r\n\r\n<strong><em>Please note: the cancellation fee</em></strong><strong>Â <em>for missed appointments is 50% of the established fee when less than 24 hoursâ€™ notice is given.</em></strong>\r\n\r\n<span style=\"color: #000000;\">Payment options:</span> cash, cheque, debit and credit card (Visa, Mastercard).\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Insurance Coverage</strong></span>\r\n\r\nIf you have extended health coverage which provides for your mental health counselling you will not qualify for our subsidized rates until the coverage amount is depleted. It is your responsibility to submit receipts to your provider for reimbursement. Please inform your counsellor if you have extended health benefits.\r\n\r\nIf you are waiting for an outside agency to reimburse you because of a claim youâ€™ve made (i.e. Work BC or ICBC), you are responsible for your payments before the settlement is reached and that amount would be subject to the same rate as above. South Island Centre does not bill any outside parties for services rendered.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2017-05-02 10:47:51", "2017-05-02 17:47:51", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14727", "3", "2017-05-02 10:49:16", "2017-05-02 17:49:16", "[vc_row][vc_column][vc_column_text]At South Island Centre we know howÂ important it is forÂ <span style=\"color: #000000;\">everyone</span>Â to have access to professional, affordable counselling services.\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Costs of Counselling Services</strong></span>\r\n\r\nCounselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of gross annual Â income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Speak to your counsellor aboutÂ your fees.\r\n\r\n<strong><em>Please note: the cancellation fee</em></strong><strong>Â <em>for missed appointments is 50% of the established fee when less than 24 hoursâ€™ notice is given.</em></strong>\r\n\r\n<span style=\"color: #000000;\">Payment options:</span> cash, cheque, debit and credit card (Visa, Mastercard).\r\n\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Insurance Coverage</strong></span>\r\n\r\nIf you have extended health coverage which provides for your mental health counselling you will not qualify for our subsidized rates until the coverage amount is depleted. It is your responsibility to submit receipts to your provider for reimbursement. Please inform your counsellor if you have extended health benefits.\r\n\r\nIf you are waiting for an outside agency to reimburse you because of a claim youâ€™ve made (i.e. Work BC or ICBC), you are responsible for your payments before the settlement is reached and that amount would be subject to the same rate as above. South Island Centre does not bill any outside parties for services rendered.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2017-05-02 10:49:16", "2017-05-02 17:49:16", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14728", "3", "2017-05-02 10:56:39", "2017-05-02 17:56:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]</h6>\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 10:56:39", "2017-05-02 17:56:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14729", "3", "2017-05-02 10:57:40", "2017-05-02 17:57:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h6>1975-2016: 41 years of Serving the Greater Victoria Community![/vc_column_text][vc_single_image image=\"13940\" img_link_target=\"_self\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]</h6>\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 10:57:40", "2017-05-02 17:57:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14730", "3", "2017-05-02 10:58:36", "2017-05-02 17:58:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]We offer <strong>affordable income-based counselling</strong> for individuals, couples, families and organizations, in support of personal, relational, and spiritual wholeness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe offer <strong>courses</strong> for personal development and <strong>training seminars</strong> for caregivers and volunteer/professional support workers.\r\n\r\nWe offer <strong>pastoral counselling</strong> for clergy, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> for lay persons and clergy.\r\n\r\nGive us a call today at (250) 472-2851. We are here to help![/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>Contact Information: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">By appointment only, Monday-Friday, 9:00am-5:00pm. Arrangements can be made for evenings and/or weekend appointments with individual counsellors. We are closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm. The office is closed on statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 10:58:36", "2017-05-02 17:58:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14731", "3", "2017-05-02 11:05:50", "2017-05-02 18:05:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>COUNSELLING:</strong> We offer counselling around a variety of issues such as trauma, depression, grief &amp; loss, elder support, end-of-life care, self-esteem, anxiety, abuse, marital conflict, addictions etc.\r\n\r\n<strong>COURSES AND TRAINING PROGRAMS:</strong> We offer courses for personal development such as grief, loss and life transitions; caring for the elderly and end-of-life issues; marriage preparation, family systems, mid-life direction, and spiritual direction, as well as pastoral care team training. We also offer courses in care-giver awareness and support and a teen anxiety support group.\r\n\r\n<strong>OTHER SERVICES:</strong> We offer pastoral counselling and spiritual direction.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>How to reach us: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.\r\n[dt_divider style=\"thin\" /]</p>\r\n\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:05:50", "2017-05-02 18:05:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14732", "3", "2017-05-02 11:11:05", "2017-05-02 18:11:05", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses, Training Programs and Other Services:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>How to reach us: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.\r\n[dt_divider style=\"thin\" /]</p>\r\n\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:11:05", "2017-05-02 18:11:05", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14733", "3", "2017-05-02 11:11:54", "2017-05-02 18:11:54", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>How to reach us: </strong>\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815 [dt_divider style=\"thin\" /]\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n[dt_divider style=\"thin\" /]\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.\r\n[dt_divider style=\"thin\" /]</p>\r\n\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details!\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:11:54", "2017-05-02 18:11:54", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14734", "3", "2017-05-02 11:16:39", "2017-05-02 18:16:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>How to reach us: </strong>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:16:39", "2017-05-02 18:16:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14735", "3", "2017-05-02 11:17:32", "2017-05-02 18:17:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>How to reach us: </strong>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n(250) 472-2815\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n\r\n<div style=\"margin-top: -5px;\"></div>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:17:32", "2017-05-02 18:17:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14736", "3", "2017-05-02 11:20:00", "2017-05-02 18:20:00", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>How to reach us: </strong>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2815</p>\r\n\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:20:00", "2017-05-02 18:20:00", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14737", "3", "2017-05-02 11:21:59", "2017-05-02 18:21:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>How to reach us: </strong>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2815</p>\r\n\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:21:59", "2017-05-02 18:21:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14738", "3", "2017-05-02 11:23:18", "2017-05-02 18:23:18", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]<strong>How to reach us: </strong>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2815</p>\r\n\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:23:18", "2017-05-02 18:23:18", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14739", "3", "2017-05-02 11:24:29", "2017-05-02 18:24:29", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n&nbsp;\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2815</p>\r\n\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:24:29", "2017-05-02 18:24:29", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14740", "3", "2017-05-02 11:25:35", "2017-05-02 18:25:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3>Current Course Offerings</h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2815</p>\r\n\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:25:35", "2017-05-02 18:25:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14741", "3", "2017-05-02 11:27:09", "2017-05-02 18:27:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6>Fax number</h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2815</p>\r\n\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6>Counselling Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6>Office Reception Hours:</h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:27:09", "2017-05-02 18:27:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14742", "3", "2017-05-02 11:33:01", "2017-05-02 18:33:01", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2815</p>\r\n\r\n<h6>Email:</h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:33:01", "2017-05-02 18:33:01", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14743", "3", "2017-05-02 11:34:08", "2017-05-02 18:34:08", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M</strong>6</p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:34:08", "2017-05-02 18:34:08", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14744", "3", "2017-05-02 11:34:59", "2017-05-02 18:34:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual General Meeting 2017</h4>\r\nOur 2017 Annual General Meeting will be held on <strong>Wednesday, May 10</strong> at 7:00pm at the Lounge in the St Luke\'s Anglican Church Community Hall.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-02 11:34:59", "2017-05-02 18:34:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14745", "3", "2017-05-02 11:37:21", "2017-05-02 18:37:21", "[vc_row][vc_column][vc_column_text]\r\n<h4><strong>Our Mailing Address:</strong></h4>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h4><strong>Telephone/Fax Info:</strong></h4>\r\n<strong>Front Desk:</strong>Â (250) 472-2851, and press \"0\". If the front desk is unavailable when you call, please leave a message on our confidential voice mailbox, and tell us your name, a phone number that you can be reached at, and the reason you called.\r\n\r\n<strong>Director of Development: Caroline Donelle.</strong> Please contact her at (250) 472-2851, extension 107.\r\n<strong>Director of Services: Amber Eves.</strong> Please contact her at (250) 472-2851, extension 103.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815 (on 24 hrs/7 days a week)\r\n<h4><strong> Centre hours:</strong></h4>\r\n<strong>Business Hours:</strong> The Centre is open from 9:00 am - 5:00 pm on Monday to Friday.\r\n\r\n<strong>Reception Desk Hours</strong>: 9:00am - 1:00 pm on Mondays to Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n<h4><strong>Counselling Hours:</strong></h4>\r\nAre usually scheduled during regular business hours and on some evenings and weekends (please inquire with your counsellor for bookings).\r\n<h4><strong>E-Mails:</strong></h4>\r\n<strong>General inquiry </strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">Click here</a>Â to leave a general inquiryÂ or to requestÂ information.\r\n\r\n<strong>Operations Manager:Â </strong>Â <a title=\"Contact: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\"><span style=\"text-decoration: underline;\">Click here</span></a>Â to contact the front desk.\r\n\r\n<strong>Course registration:Â </strong><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for a course.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "General Contact Information", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-05-02 11:37:21", "2017-05-02 18:37:21", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14746", "3", "2017-05-03 12:33:50", "2017-05-03 19:33:50", "[gravityform id=\"10\" title=\"true\" description=\"true\"]", "Making it work! Support Group July 2017", "", "publish", "closed", "closed", "", "making-it-work-support-group-july-2017", "", "", "2017-05-03 12:33:50", "2017-05-03 19:33:50", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14746", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14747", "3", "2017-05-04 10:30:03", "2017-05-04 17:30:03", "[gravityform id=\"16\" title=\"true\" description=\"true\"]", "Client Counsellor Feedback Form", "", "publish", "closed", "closed", "", "client-counsellor-feedback-form", "", "", "2017-05-04 10:30:03", "2017-05-04 17:30:03", "", "5", "http://localhost:8888/TestSICPage/wordpress/?page_id=14747", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14748", "3", "2017-05-04 10:30:03", "2017-05-04 17:30:03", "[gravityform id=\"16\" title=\"true\" description=\"true\"]", "Client Counsellor Feedback Form", "", "inherit", "closed", "closed", "", "14747-revision-v1", "", "", "2017-05-04 10:30:03", "2017-05-04 17:30:03", "", "14747", "http://localhost:8888/TestSICPage/wordpress/14747-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14750", "3", "2017-05-16 11:47:02", "2017-05-16 18:47:02", "", "Making it work for Teens! (2-week workshop, July 3-6 and 10-13, 2017) ", "", "inherit", "closed", "closed", "", "poster-teen-summer-support-grp-july-2017", "", "", "2017-05-16 11:47:02", "2017-05-16 18:47:02", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/05/Poster-Teen-summer-support-grp-July-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14751", "3", "2017-05-16 11:56:25", "2017-05-16 18:56:25", "", "Making it work for Teens! (2-week workshop, July 3-6 and July, 10-13, 2017)", "", "inherit", "closed", "closed", "", "poster-teen-summer-support-grp-july-2017-2", "", "", "2017-05-16 11:56:25", "2017-05-16 18:56:25", "", "14752", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/05/Poster-Teen-summer-support-grp-July-20171.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14752", "3", "2017-05-16 12:04:40", "2017-05-16 19:04:40", "Facilitator: Amy McKendrick (MC, Reg. Pyschologist in Alberta, and Candidate for registration with the College of Psychologists of British Columbia)\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/05/Poster-Teen-summer-support-grp-July-20171.pdf\">Making it work for Teens! (2-week workshop, July 3-6 and July, 10-13, 2017)</a>\r\n\r\n[gravityform id=\"10\" title=\"true\" description=\"true\"]\r\n\r\n&nbsp;", "Making it work for Teens! 2-week workshop, July 3-6 and 10-13, 2017", "", "publish", "closed", "closed", "", "making-it-work-2-week-workshop-july-3-6-and-10-13-2017", "", "", "2017-05-16 12:19:00", "2017-05-16 19:19:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14752", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14753", "3", "2017-05-16 12:12:20", "2017-05-16 19:12:20", "Facilitator: Amy McKendrick (MC, Reg. Pyschologist in Alberta, and Candidate for registration with the College of Psychologists of British Columbia)\n\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/05/Poster-Teen-summer-support-grp-July-20171.pdf\">Making it work for Teens! (2-week workshop, July 3-6 and July, 10-13, 2017)</a>\n\n[gravityform id=\"10\" title=\"true\" description=\"true\"]\n\n&nbsp;", "Making it work! 2-week workshop, July 3-6 and 10-13, 2017", "", "inherit", "closed", "closed", "", "14752-autosave-v1", "", "", "2017-05-16 12:12:20", "2017-05-16 19:12:20", "", "14752", "http://localhost:8888/TestSICPage/wordpress/14752-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14754", "3", "2017-05-16 12:23:18", "2017-05-16 19:23:18", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-05-16 12:23:18", "2017-05-16 19:23:18", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14755", "3", "2017-05-16 12:25:29", "2017-05-16 19:25:29", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017).\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017)\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call Â us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-05-16 12:25:29", "2017-05-16 19:25:29", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14757", "3", "2017-05-30 11:57:22", "2017-05-30 18:57:22", "<span style=\"text-decoration: underline;\">Board Members 2017-2018:</span>\r\n\r\nJim Gibson (Chair)\r\n\r\nBarbara Underhill (Treasurer, Vice-Chair)\r\n\r\nSally Tuckey (Secretary)\r\n\r\nSybil Bagshaw (Member-at-Large)\r\n\r\nFather Dean Henderson (Member-at-Large)\r\n\r\nGreg Beattie (Member-at-Large)\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Board of Directors 2017-2018", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2017-05-30 11:57:22", "2017-05-30 18:57:22", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14758", "3", "2017-05-30 12:01:02", "2017-05-30 19:01:02", "<h4><strong><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">General Registration Information: </span></span></strong></h4>\r\n<ul>\r\n	<li>All currently offered courses are listed on our <strong>Home Page</strong> with links attached, which will open a PDF in a separate window.</li>\r\n	<li>Individual course entries in theÂ <strong>Course and Event Calendar</strong>Â list the course/training program fee payment deadline for each course (one week/5 business days prior to the start date of the course or program).</li>\r\n	<li>We require a minimum number of registrants to run our courses and training programs. To avoid the heartbreak of a cancelled course or program, register early and invite your friends to join too!</li>\r\n	<li><span style=\"color: #3b3f42;\">The personal information you provide during the registration process is collected and used under the authority of theÂ </span><strong style=\"color: #3b3f42;\">Freedom of Information and Protection Privacy Act (PIPPA)</strong><span style=\"color: #3b3f42;\">. The information is used only for the purpose of administering courses or trainingÂ programs, informing you of our services and benefits, and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101.Â </span></li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register for a Course or Training program:</span></span></strong></h4>\r\n<ol>\r\n	<li><span style=\"color: #000000;\">Â <a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a></span><span style=\"font-size: 14px;\">Â to fill out the Contact Form. Registration application will be confirmed by email.Â </span></li>\r\n	<li>Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Call Â <strong>250-472-2851, extension 101</strong> and leave a voice mail.</li>\r\n</ol>\r\nPlease include in your phone message:\r\n<ul>\r\n	<li>the title of the course you would like to register for</li>\r\n	<li>a contact phone number</li>\r\n	<li>a contact address (so we can issue a course fee receipt)</li>\r\n	<li>how you would like to pay for the course (we accept cash, cheque, and credit card).</li>\r\n</ul>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Payment Information:</strong></span></h4>\r\nAt the time of registration you may:\r\n<ul>\r\n	<li>pay for the course or training program fee in full or</li>\r\n	<li>make a deposit of 50% Â and pay for the remainderÂ <strong>one week (or 5 business days)</strong>Â before the start date of the course or program.</li>\r\n</ul>\r\nTo complete the registration process and confirm a space in the course/training program, we <span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000;\">must</span></strong></span>Â receive your payment inÂ <strong>full</strong>Â no later than <span style=\"text-decoration: underline;\"><strong>one week (5 business days) prior</strong></span> to the start date of the course or training program.\r\n\r\nRegistration is on a first come, first serve basis. If a course/training program does not have the minimum number of participants registered 5 business prior to the start date, the program may be cancelled. If this is the case, we will contact you by email or phone at least 3 business prior to the start date of the course/training program.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\nWe accept<span style=\"color: #000000;\">:</span>\r\n<ul>\r\n	<li><strong>Cash</strong></li>\r\n	<li><strong>Cheque</strong>: please make your cheque payable toÂ <em>South Island Centre for Counselling and Training.</em></li>\r\n	<li><strong>Credit Card (Visa, Mastercard)</strong>: please call the office at Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> and the office we will charge your credit card over the phone. If the reception is not available at the time of your call, please leave your contact information and we willÂ contact you directly to process the charges.</li>\r\n</ul>\r\n<em>\r\n</em>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span>\r\n<ul>\r\n	<li>In the case of a course/training program cancellations due to lack of registrants, a full refund will be issued.</li>\r\n	<li>In all cases where cash transactions occurred, refunds will be paid by cheque and may require a delay of up to 10 business days for processing.</li>\r\n	<li>If fees were paid by using a credit card, refunds will go back to the same card that was used to pay the course/training program fee.</li>\r\n</ul>", "How to Register & Fee Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2017-05-30 12:01:02", "2017-05-30 19:01:02", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14759", "8", "2017-06-01 13:10:02", "2017-06-01 20:10:02", "Course Facilitators: Bill Cole, MA, RCC and Sandi Smoker, MA Candidate\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-20-24-2018/bowen-august-20-24-intensive-2018/\" rel=\"attachment wp-att-15375\">Bowen August 20-24 Intensive 2018</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Family Systems Intensive (Monday-Friday, Aug. 20-24, 2018)", "", "publish", "closed", "closed", "", "family-systems-intensive-monday-friday-aug-20-24-2018", "", "", "2018-06-14 09:38:43", "2018-06-14 16:38:43", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=14759", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("14760", "3", "2017-06-01 13:16:33", "2017-06-01 20:16:33", "", "Family Systems August 21-25, 2017 Intensive", "", "inherit", "closed", "closed", "", "bowen-august-21-25-intensive-2017", "", "", "2017-06-01 13:16:33", "2017-06-01 20:16:33", "", "14759", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/06/Bowen-August-21-25-Intensive-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("14761", "3", "2017-06-01 13:20:36", "2017-06-01 20:20:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017). Please submit your registration and payment in full by Friday, June 2, 2017.\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-01 13:20:36", "2017-06-01 20:20:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14762", "3", "2017-06-01 13:22:37", "2017-06-01 20:22:37", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<a title=\"Marriage Preparation workshop June 10, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-10-2017/\" target=\"_blank\"><strong>Marriage Preparation workshop</strong></a> (Saturday, June 10, 2017).\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017).\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-01 13:22:37", "2017-06-01 20:22:37", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14763", "3", "2017-06-05 08:25:48", "2017-06-05 15:25:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-05 08:25:48", "2017-06-05 15:25:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14764", "3", "2017-06-05 08:26:23", "2017-06-05 15:26:23", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017).\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-05 08:26:23", "2017-06-05 15:26:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14765", "3", "2017-06-06 11:13:31", "2017-06-06 18:13:31", "<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">New clients wishing to inquire about an initial counselling appointment:</span></span></h4>\r\nTo contact us by <strong>email</strong>,Â <span style=\"color: #000000;\"><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â We will contact you at our earliest convenienceÂ for a free consultation to match you with the appropriate counsellor.</span>\r\n\r\nYou may alsoÂ <span style=\"color: #000000;\"><strong>call</strong> the CentreÂ at</span><span style=\"color: #0000ff;\"> Â </span><i class=\"fa fa-phone\" style=\"color: #0000ff;\"></i><span style=\"color: #000000;\">Â <strong>250-472-2851 and press 0 for reception</strong></span><span style=\"color: #0000ff;\">.</span>Â Please provideÂ your name, a contact phone number, and the reason you called. Messages are left on our confidential voicemail.Â <span style=\"color: #000000;\">We will contact youÂ </span><span style=\"color: #000000;\">within</span><span style=\"color: #000000;\">Â 2-3 business days for a free consultation to match you with the appropriate counsellor.</span>\r\n\r\n<strong>Counselling hours</strong> are generally Monday-Friday from 9:00am-5:00pm and are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\r\n\r\n<strong>Reception hours</strong> are Monday-Thursday, 9:00am-1:00pm. We are <strong>closed</strong> on statutory holidays.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Current Clients:</span></span></h4>\r\nPlease contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"color: transparent; display: none;\">icon-phone-square</span></i><span style=\"color: #000000;\">Â <strong>250-472-2851</strong> <strong>and pressing 4 for the staff directory to listen to the counsellor\'s individual extension. </strong>Press the counsellor\'s 3-digit number extension to reach your counsellor\'s confidential voicemail.Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2017-06-06 11:13:31", "2017-06-06 18:13:31", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14767", "3", "2017-06-08 12:36:48", "2017-06-08 19:36:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Harbourside Rotary Foundation (Victoria)\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-08 12:36:48", "2017-06-08 19:36:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14768", "3", "2017-06-08 12:37:45", "2017-06-08 19:37:45", "", "Habourside Rotary logo", "", "inherit", "closed", "closed", "", "habourside-rotary-logo", "", "", "2017-06-08 12:37:45", "2017-06-08 19:37:45", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/06/Habourside-Rotary-logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14769", "3", "2017-06-08 12:39:39", "2017-06-08 19:39:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14768\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-08 12:39:39", "2017-06-08 19:39:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14770", "3", "2017-06-08 12:39:46", "2017-06-08 19:39:46", "<p>[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong></p>\r\n<p>South Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.</p>\r\n<p>Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]</p>\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.</p>\r\n<p><strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.</p>\r\n<p>We also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.</p>\r\n<p>For clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.</p>\r\n<p>For additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]</p>\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<p><strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.</p>\r\n<p><strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4>Annual Gala 2017</h4>\r\n<p>Save the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]</p>\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]</p>\r\n<h4>Counselling</h4>\r\n<p>Our goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]</p>\r\n<h4>Courses</h4>\r\n<p>South Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]</p>\r\n<h4>Other Services</h4>\r\n<p>We provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]</p>\r\n<h2><strong>Our Supporters</strong></h2>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>The Province of British Columbia</h4>\r\n<p>\" image=\"13912\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14768\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]</p>\r\n", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-08 12:39:46", "2017-06-08 19:39:46", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14771", "3", "2017-06-08 12:40:34", "2017-06-08 19:40:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-08 12:40:34", "2017-06-08 19:40:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14772", "3", "2017-06-08 12:42:24", "2017-06-08 19:42:24", "", "The Harbourside Rotary Foundation", "", "inherit", "closed", "closed", "", "harborside-2", "", "", "2017-06-08 12:42:24", "2017-06-08 19:42:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/06/harborside-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14773", "3", "2017-06-08 12:43:23", "2017-06-08 19:43:23", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-08 12:43:23", "2017-06-08 19:43:23", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14774", "3", "2017-06-08 12:43:31", "2017-06-08 19:43:31", "<p>[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong></p>\r\n<p>South Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.</p>\r\n<p>Whether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]</p>\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.</p>\r\n<p><strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.</p>\r\n<p>We also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.</p>\r\n<p>For clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.</p>\r\n<p>For additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]</p>\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<p><strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.</p>\r\n<p><strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4>Annual Gala 2017</h4>\r\n<p>Save the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]</p>\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]</p>\r\n<h4>Counselling</h4>\r\n<p>Our goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]</p>\r\n<h4>Courses</h4>\r\n<p>South Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]</p>\r\n<h4>Other Services</h4>\r\n<p>We provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]</p>\r\n<h2><strong>Our Supporters</strong></h2>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>The Province of British Columbia</h4>\r\n<p>\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]</p>\r\n", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-08 12:43:31", "2017-06-08 19:43:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14778", "3", "2017-06-21 23:06:24", "2017-06-22 06:06:24", "[vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"30\" margin_top=\"-36\" margin_bottom=\"50\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\n<h3 style=\"text-align: center;\">PREMIUM QUALITY</h3>\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\n<h3 style=\"text-align: center;\">ULTRA POWERFUL</h3>\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-010.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\n<h3 style=\"text-align: center;\">FREE REGULAR UPDATES</h3>\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\n<h3 style=\"text-align: center;\">TRANSLATION READY</h3>\n[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\n<h3>Welcome to South Island Centre</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_fancy_image style=\"1\" align=\"left\" padding=\"0\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"85\" animation=\"none\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/promo-img.jpg\"][/dt_fancy_image]Sed interdum, lacus et vulpu fatate pellen tesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit dictum. Nulla facilisi congue eu urna to lorem gravida quisÂ ornare vel, mattis sed eros.Â Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien!\n\nLorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\n<h3>2014 Course Offerings</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web Development\"][vc_column_text]Nullam imperdiet mattis rutrum velit nulla eget dictum urna to lorem gravida quis. Nulla mattis nulaÂ facilisi. Mauris et dictum ante. Praesent mattis ipsum rutrum nula velit eget quam! Mauris et dictum ante. Praesent elit dui, congue eu ornare vel, mattis sed eros. Sed at mattis ipsum rutrum velit eget quam sed mattis ipsum.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Business Consulting\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus![/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sitÂ interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum!Â Lorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet.[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\n<h3>Testimonials</h3>\n[/vc_column_text][dt_gap height=\"20\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"20\" padding_bottom=\"20\" margin_top=\"15\" margin_bottom=\"50\"][vc_column width=\"1/1\"][dt_call_to_action content_size=\"normal\" text_align=\"left\" background=\"no\" line=\"false\" style=\"1\" animation=\"top\"]\n<h3>Introducing <span class=\"paint-accent-color\">The7</span> - ultra powerful multipurpose premium WordPress theme!</h3>\n<h5>Everything you need to build an excellent website. Quickly. Without touching a line of code.</h5>\n[dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]Give it a try today![/dt_button][/dt_call_to_action][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"40\" margin_bottom=\"40\"][vc_column width=\"1/1\"][dt_benefits_vc columns=\"3\" style=\"3\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\" category=\"captions1\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"60\" margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"2/3\"][vc_column_text]\n<h3>Our services &amp; skills</h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_tour style=\"tab-style-three\" interval=\"0\"][vc_tab title=\"Web Design &amp; Programming\" tab_id=\"1378898037-1-563a37-0e93\"][vc_column_text]Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla. Nullam velit nulla laoreet consectetur lorem ut [dt_tooltip title=\"lorem ipsum dolor\"]Lorem rhoncus nisi rutrum velit nulla commodo sem, at egestas nulla metus vel sapien.[/dt_tooltip] glavrida unicos amosac. Nullam rutrum velit eget quam pretium vehicula.Â Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\n\nNullam porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim laoreet consectetur lorem, ut rhoncus nisi rutrum ac. Nullam rutrum velit eget quam pretium vehicula porttitor odio non nunc laoreet.\n\n[dt_gap height=\"10\"]\n<h5>Lorem ipsum dolor list:</h5>\n[dt_gap height=\"10\"]\n\n[dt_list style=\"2\" dividers=\"false\"]\n\n[dt_list_item image=\"\"]Lorem euismod eu ipsum dolor sit consectetur adipiscing elit;[/dt_list_item]\n\n[dt_list_item image=\"\"]Phasellus lacinia rhoncus iaculis eu tempor sit amet lorem;[/dt_list_item]\n\n[dt_list_item image=\"\"]Wael nisl ideu tempor sit libero ornare venenatis et eu mauris;[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem euismod eu tempor sit amet ipsum dolor adipiscing;[/dt_list_item]\n\n[/dt_list][/vc_column_text][/vc_tab][vc_tab title=\"Creative Photography\" tab_id=\"1378898887808-3-83a37-0e93\"][vc_column_text]\n\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12885,12884,12883,12882,12880,12878,12879\"]\n\n[dt_gap height=\"15\" /]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum. Dolor ut mollis elit et vestibulum mattis integer aenean nulla, in vitae id augue vitae amet minim.\n\nCurabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Business Education\" tab_id=\"1378898730907-2-13a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum consectetur adipiscing elitÂ tempor.\n\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\n\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Consulting &amp; Training\" tab_id=\"1378898037-2-23a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra viverra mauris vel mi blandit mattis mauris vel mi blandit mattis. Aenean a quis rhoncus tellus, quis luctus ligula tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien. Maecenas enim velit, euismod eu tempor.[/vc_column_text][/vc_tab][vc_tab title=\"Marketing, SEO, PR\" tab_id=\"1378899301675-4-43a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta.\n\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\n\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][/vc_tour][dt_gap height=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\n<h3>Send us a message!</h3>\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,telephone,company,message\" message_height=\"6\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"medium\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_small_photos height=\"100\" margin_top=\"20\" margin_bottom=\"-20\" number=\"20\" orderby=\"recent\" category=\"template,albums-category-01,albums-category-02,albums-category-03\" lightbox=\"true\"][/vc_column][/vc_row]", "homepage lower banner", "", "inherit", "closed", "closed", "", "12797-autosave-v1", "", "", "2017-06-21 23:06:24", "2017-06-22 06:06:24", "", "12797", "http://localhost:8888/TestSICPage/wordpress/12797-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14779", "3", "2017-06-21 23:08:18", "2017-06-22 06:08:18", "[vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"30\" margin_top=\"-36\" margin_bottom=\"50\" parallax_speed=\"0.1\"][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">PREMIUM QUALITY</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-014.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">ULTRA POWERFUL</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-010.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">FREE REGULAR UPDATES</h3>\r\n[/dt_banner][/vc_column][vc_column width=\"1/4\"][dt_banner target_blank=\"true\" bg_color=\"#0d1117\" bg_opacity=\"40\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"130\" animation=\"top\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" link=\"http://the7.dream-demo.com/features-2/\"][dt_gap height=\"5\" /]\r\n<h3 style=\"text-align: center;\">TRANSLATION READY</h3>\r\n[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Welcome to South Island Centre</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text][dt_fancy_image style=\"1\" align=\"left\" padding=\"0\" margin_top=\"5\" margin_bottom=\"10\" margin_right=\"20\" width=\"85\" animation=\"none\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/promo-img.jpg\"][/dt_fancy_image]Sed interdum, lacus et vulpu fatate pellen tesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit dictum. Nulla facilisi congue eu urna to lorem gravida quisÂ ornare vel, mattis sed eros.Â Unterdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien!\r\n\r\nLorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien.[/vc_column_text][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>2014 Course Offerings</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_accordion active_tab=\"1\"][vc_accordion_tab title=\"Web Development\"][vc_column_text]Nullam imperdiet mattis rutrum velit nulla eget dictum urna to lorem gravida quis. Nulla mattis nulaÂ facilisi. Mauris et dictum ante. Praesent mattis ipsum rutrum nula velit eget quam! Mauris et dictum ante. Praesent elit dui, congue eu ornare vel, mattis sed eros. Sed at mattis ipsum rutrum velit eget quam sed mattis ipsum.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Business Consulting\"][vc_column_text]Quisque gravida turpis sit amet nulla posuere lacinia. Cras sed est sit amet ipsum luctus dignissim. Cras nec dolor purus nunc, tempor vel ultrices eu, vehicula quis eros. Sed interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus![/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"SEO &amp; Marketing\"][vc_column_text]Sed Â ipsum dolor sitÂ interdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet communitas imperdiet eleifend magna, eget dictum!Â Lorem ipsum dolor sit amet communitasÂ erdum, lacus et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien! Lorem ipsum dolor sit amet.[/vc_column_text][/vc_accordion_tab][/vc_accordion][dt_gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Testimonials</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"6\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\" padding=\"20\" column_width=\"370\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"20\" padding_bottom=\"20\" margin_top=\"15\" margin_bottom=\"50\"][vc_column width=\"1/1\"][dt_call_to_action content_size=\"normal\" text_align=\"left\" background=\"no\" line=\"false\" style=\"1\" animation=\"top\"]\r\n<h3>Introducing <span class=\"paint-accent-color\">The7</span> - ultra powerful multipurpose premium WordPress theme!</h3>\r\n<h5>Everything you need to build an excellent website. Quickly. Without touching a line of code.</h5>\r\n[dt_button size=\"big\" animation=\"scale\" color=\"\" link=\"http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\" target_blank=\"true\"]Give it a try today![/dt_button][/dt_call_to_action][/vc_column][/vc_row][vc_row bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" margin_top=\"40\" margin_bottom=\"40\"][vc_column width=\"1/1\"][dt_benefits_vc columns=\"3\" style=\"3\" dividers=\"true\" image_background=\"true\" target_blank=\"false\" header_size=\"h1\" content_size=\"normal\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\" category=\"captions1\"][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"50\" padding_bottom=\"10\" margin_top=\"60\" margin_bottom=\"0\" parallax_speed=\"0.1\"][vc_column width=\"2/3\"][vc_column_text]\r\n<h3>Our services &amp; skills</h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_tour style=\"tab-style-three\" interval=\"0\"][vc_tab title=\"Web Design &amp; Programming\" tab_id=\"1378898037-1-563a37-0e93\"][vc_column_text]Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla. Nullam velit nulla laoreet consectetur lorem ut [dt_tooltip title=\"lorem ipsum dolor\"]Lorem rhoncus nisi rutrum velit nulla commodo sem, at egestas nulla metus vel sapien.[/dt_tooltip] glavrida unicos amosac. Nullam rutrum velit eget quam pretium vehicula.Â Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\r\n\r\nNullam porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim laoreet consectetur lorem, ut rhoncus nisi rutrum ac. Nullam rutrum velit eget quam pretium vehicula porttitor odio non nunc laoreet.\r\n\r\n[dt_gap height=\"10\"]\r\n<h5>Lorem ipsum dolor list:</h5>\r\n[dt_gap height=\"10\"]\r\n\r\n[dt_list style=\"2\" dividers=\"false\"]\r\n\r\n[dt_list_item image=\"\"]Lorem euismod eu ipsum dolor sit consectetur adipiscing elit;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Phasellus lacinia rhoncus iaculis eu tempor sit amet lorem;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Wael nisl ideu tempor sit libero ornare venenatis et eu mauris;[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Lorem euismod eu tempor sit amet ipsum dolor adipiscing;[/dt_list_item]\r\n\r\n[/dt_list][/vc_column_text][/vc_tab][vc_tab title=\"Creative Photography\" tab_id=\"1378898887808-3-83a37-0e93\"][vc_column_text]\r\n\r\n[gallery columns=\"5\" mode=\"gallery\" ids=\"12885,12884,12883,12882,12880,12878,12879\"]\r\n\r\n[dt_gap height=\"15\" /]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis lorem ipsum tooltip luctus ligula. Curabitur laoreet fringilla portabibendum. Dolor ut mollis elit et vestibulum mattis integer aenean nulla, in vitae id augue vitae amet minim.\r\n\r\nCurabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Business Education\" tab_id=\"1378898730907-2-13a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum consectetur adipiscing elitÂ tempor.\r\n\r\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\r\n\r\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][vc_tab title=\"Consulting &amp; Training\" tab_id=\"1378898037-2-23a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra viverra mauris vel mi blandit mattis mauris vel mi blandit mattis. Aenean a quis rhoncus tellus, quis luctus ligula tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor. Nullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula. Curabitur laoreet fringilla porta. Proin dictum lacus at neque interdum tempor.Lorem ipsum dolor sit amet, consectetur adipiscing elit et vulputate pellentesque, velit nulla commodo sem, at egestas nulla metus vel sapien. Maecenas enim velit, euismod eu tempor.[/vc_column_text][/vc_tab][vc_tab title=\"Marketing, SEO, PR\" tab_id=\"1378899301675-4-43a37-0e93\"][vc_column_text]Aenean a tempus mauris. Quisque gravida turpis sit amet nulla posuere lacinia porttitor odio non nunc laoreet ullamcorper pellent desque condimentum dignissim. Nullam rutrum velit eget quam pretium vehicula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet fringilla porta.\r\n\r\nCurabitur laoreet ipsum dolor sit amet dolor sito fralio iaculis justo quis rhoncus tellus, quis luctus ligula. Donec iaculis justo at sapien ultricies laoreet. Lorem quis rhoncus tellus, quis luctus ligula ipsum dolor sit amet, consectetur adipiscing elit. Curabitur quis rhoncus tellus, quis luctus ligula.\r\n\r\nDonec iaculis justo at sapien ultricies laoreet. In viverra mauris vel mi blandit mattis. Aenean a tempus mauris. Curabitur laoreet ipsum dolor sit amet, consectetur adipiscing elit ullam rutrum velit eget quam pretium vehicula. Maecenas enim velit, euismod eu tempor sit amet, dictum at est. In placerat fringilla bibendum.[/vc_column_text][/vc_tab][/vc_tour][dt_gap height=\"40\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>Send us a message!</h3>\r\n[/vc_column_text][dt_gap height=\"10\"][dt_contact_form fields=\"name,email,telephone,company,message\" message_height=\"6\" required=\"name,email,message\" button_title=\"Send message\" button_size=\"medium\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_small_photos height=\"100\" margin_top=\"20\" margin_bottom=\"-20\" number=\"20\" orderby=\"recent\" category=\"template,albums-category-01,albums-category-02,albums-category-03\" lightbox=\"true\"][/vc_column][/vc_row]", "homepage lower banner", "", "inherit", "closed", "closed", "", "12797-revision-v1", "", "", "2017-06-21 23:08:18", "2017-06-22 06:08:18", "", "12797", "http://localhost:8888/TestSICPage/wordpress/12797-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14782", "3", "2017-06-21 23:41:42", "2017-06-22 06:41:42", "[vc_row][vc_column width=\"1/1\"][vc_single_image image=\"14694\" alignment=\"center\" img_link_target=\"_self\" title=\"banner\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-21 23:41:42", "2017-06-22 06:41:42", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14783", "3", "2017-06-21 23:42:47", "2017-06-22 06:42:47", "[vc_row][vc_column width=\"1/1\"][vc_single_image image=\"14694\" alignment=\"center\" img_link_target=\"_self\" img_size=\"full\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-21 23:42:47", "2017-06-22 06:42:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14785", "3", "2017-06-22 00:04:50", "2017-06-22 07:04:50", "", "hands and tree", "", "publish", "closed", "closed", "", "hands-and-tree", "", "", "2017-06-22 00:05:02", "2017-06-22 07:05:02", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=dt_slideshow&#038;p=14785", "0", "dt_slideshow", "", "0");
INSERT INTO `wp_posts` VALUES("14786", "3", "2017-06-22 00:05:41", "2017-06-22 07:05:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "03 - Business", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-22 00:05:41", "2017-06-22 07:05:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14787", "3", "2017-06-22 00:06:11", "2017-06-22 07:06:11", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "homepage", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-22 00:06:11", "2017-06-22 07:06:11", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14792", "3", "2017-06-22 01:10:28", "2017-06-22 08:10:28", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we are focused on bringing you courses and training workshops to help you through the many challenges of life, and to equip you to guide others through their challenges.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017).\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a general Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> list/database, thus giving us explicit consent to receive information on up-coming courses, events and workshops, or to indicate interest in up-coming training seminars.\r\n\r\n<strong>Anti-spam legislation (July 1, 2014)</strong>\r\nSince we are a registered charity, this new law does not affect us directly, but we promise that we will not share, trade, sell, rent, or distribute your contact information with any outside source as we always use a blind copy distribution system. You may unsubscribe at any time: <a title=\"Contact Form: Opt-in/Opt-out Email Notification \" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/\" target=\"_blank\">Click here</a> to fill out our Opt-in/Opt-out Email Notification Form. Please put \"Unsubscribe\" in the Message box to let us know that you would like to have your name removed from our email list.[/vc_column_text][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-22 01:10:28", "2017-06-22 08:10:28", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14804", "3", "2017-06-22 13:32:28", "2017-06-22 20:32:28", "South Island Centre relies on donationsÂ to support our charity. If this is your first time making a donation to South Island Centre we have two options available.\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1</strong>:</span>Â mail aÂ chequeÂ payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your return address so that we can send you a charitable donation receipt.</li>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span><span style=\"color: #000000;\">Make a donation viaÂ </span><strong>credit card</strong>Â by calling the office at Â <strong>250-472-2851, extension 101Â </strong>to have your payment processedÂ over the phone.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations to South Island Centre", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2017-06-22 13:32:28", "2017-06-22 20:32:28", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14805", "3", "2017-06-22 13:32:38", "2017-06-22 20:32:38", "South Island Centre relies on donationsÂ to support our charity. If this is your first time making a donation to South Island Centre we have two options available.\r\n<ul>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 1</strong>:</span>Â mail aÂ chequeÂ payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your return address so that we can send you a charitable donation receipt.</li>\r\n	<li><span style=\"text-decoration: underline; color: #000000;\"><strong>Option 2</strong>:</span><span style=\"color: #000000;\">Make a donation viaÂ </span><strong>credit card</strong>Â by calling the office at Â <strong>250-472-2851, extension 101Â </strong>to have your payment processedÂ over the phone.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #3366ff;\">Â </span>", "Donations", "", "inherit", "closed", "closed", "", "176-revision-v1", "", "", "2017-06-22 13:32:38", "2017-06-22 20:32:38", "", "176", "http://localhost:8888/TestSICPage/wordpress/176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14806", "3", "2017-06-22 13:41:01", "2017-06-22 20:41:01", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we also provide professional training.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017).\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> mailing list.[/vc_column_text][/vc_column][/vc_row]", "Courses and Training Programs currently offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-22 13:41:01", "2017-06-22 20:41:01", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14807", "3", "2017-06-22 13:41:45", "2017-06-22 20:41:45", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we also provide professional training.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Course and Training Program Offerings</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017).\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available fee payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Fee payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for or indicate interest for a course.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a Course Registration Contact form, if you would like to have your name added to our <strong>e-mail</strong> mailing list.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-22 13:41:45", "2017-06-22 20:41:45", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14808", "3", "2017-06-22 13:44:30", "2017-06-22 20:44:30", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we also provide professional training.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Training Offered</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017).\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> You may alsoÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for training.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a Course Registration Contact form.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-22 13:44:30", "2017-06-22 20:44:30", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14809", "3", "2017-06-22 13:45:31", "2017-06-22 20:45:31", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we also provide professional training.\r\n\r\n<span style=\"color: #000000;\"><strong style=\"line-height: 1.5em;\"><em>Current Training Offered</em></strong></span>\r\nClick on the specific course or training program listed in the sidebar at the right of this page under Upcoming EventsÂ for more information. Click on the link for each course or training program to access registration information.\r\n\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017).\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register and available payment options</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â <strong>250-472-2851, extension 101</strong> to register for training.Â <strong>Â </strong>\r\n\r\n<span style=\"color: #000000;\"><a title=\"Contact Form: Register for a Course or Training Program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to fill out a Course Registration Contact form.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-22 13:45:31", "2017-06-22 20:45:31", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14810", "3", "2017-06-22 13:54:08", "2017-06-22 20:54:08", "<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register:</span></span></strong></h4>\r\n<ol>\r\n	<li><span style=\"color: #000000;\">Â <a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a></span><span style=\"font-size: 14px;\">Â to fill out the Contact Form. Registrations will be confirmed by email.Â </span></li>\r\n	<li>Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Call Â <strong>250-472-2851, extension 101</strong> and leave a voice mail with your contact information.</li>\r\n</ol>\r\nTo complete the registration and confirm your seatin the training program, your payment must be received no later than (5 business days) prior to the start date.\r\n\r\nRegistration is on a first-come, first-serve basis.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\n<ul>\r\n	<li>Cash or</li>\r\n	<li>Credit</li>\r\n</ul>\r\nPlease call the office at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong> and your credit card will be processed over the phone.\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span>\r\n<ul>\r\n	<li>In the case of a training program cancellation, a full refund will be issued.</li>\r\n	<li>Where cash payment has been made, refunds will be paid by cheque.</li>\r\n</ul>", "How to Register & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2017-06-22 13:54:08", "2017-06-22 20:54:08", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14811", "3", "2017-06-22 13:55:11", "2017-06-22 20:55:11", "<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register:</span></span></strong></h4>\r\n<ol>\r\n	<li><span style=\"color: #000000;\">Â <a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a></span><span style=\"font-size: 14px;\">Â to fill out the Contact Form. Registrations will be confirmed by email.Â </span></li>\r\n	<li>Â Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â Call Â <strong>250-472-2851, extension 101</strong> and leave a voice mail with your contact information.</li>\r\n</ol>\r\nTo complete the registration and confirm your seatin the training program, your payment must be received no later than (5 business days) prior to the start date.\r\n\r\nRegistration is on a first-come, first-serve basis.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\n<ul>\r\n	<li>Cash or</li>\r\n	<li>Credit</li>\r\n</ul>\r\nPlease call the office at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong> and your credit card will be processed over the phone.\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span></h4>\r\n<ul>\r\n	<li>In the case of a training program cancellation, a full refund will be issued.</li>\r\n	<li>Where cash payment has been made, refunds will be paid by cheque.</li>\r\n</ul>", "How to Register & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2017-06-22 13:55:11", "2017-06-22 20:55:11", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14812", "3", "2017-06-22 13:55:46", "2017-06-22 20:55:46", "<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register:</span></span></strong></h4>\r\n<ul>\r\n	<li><a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a><span style=\"font-size: 14px;\">Â to fill out the Contact Form. Registrations will be confirmed by email.Â </span></li>\r\n	<li>Â Call Â <strong>250-472-2851, extension 101</strong> and leave a voice mail with your contact information.</li>\r\n</ul>\r\nTo complete the registration and confirm your seatin the training program, your payment must be received no later than (5 business days) prior to the start date.\r\n\r\nRegistration is on a first-come, first-serve basis.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\n<ul>\r\n	<li>Cash or</li>\r\n	<li>Credit</li>\r\n</ul>\r\nPlease call the office at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong> and your credit card will be processed over the phone.\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span></h4>\r\n<ul>\r\n	<li>In the case of a training program cancellation, a full refund will be issued.</li>\r\n	<li>Where cash payment has been made, refunds will be paid by cheque.</li>\r\n</ul>", "How to Register & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2017-06-22 13:55:46", "2017-06-22 20:55:46", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14813", "3", "2017-06-22 13:56:17", "2017-06-22 20:56:17", "<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register:</span></span></strong></h4>\r\n<ul>\r\n	<li><a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a><span style=\"font-size: 14px;\">Â to fill out the registration form. Registrations will be confirmed via email.Â </span></li>\r\n	<li>Â Call Â <strong>250-472-2851, extension 101</strong> and leave a voice mail with your contact information.</li>\r\n</ul>\r\nTo complete the registration and confirm your seatin the training program, your payment must be received no later than (5 business days) prior to the start date.\r\n\r\nRegistration is on a first-come, first-serve basis.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\n<ul>\r\n	<li>Cash or</li>\r\n	<li>Credit</li>\r\n</ul>\r\nPlease call the office at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong> and your credit card will be processed over the phone.\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span></h4>\r\n<ul>\r\n	<li>In the case of a training program cancellation, a full refund will be issued.</li>\r\n	<li>Where cash payment has been made, refunds will be paid by cheque.</li>\r\n</ul>", "How to Register & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2017-06-22 13:56:17", "2017-06-22 20:56:17", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14814", "3", "2017-06-22 13:56:38", "2017-06-22 20:56:38", "<h4><strong><span style=\"text-decoration: underline;\"><span style=\"text-decoration: underline;\">How to Register:</span></span></strong></h4>\r\n<ul>\r\n	<li><a title=\"Register for a Course or Training program\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\">Click here</a><span style=\"font-size: 14px;\">Â to fill out the registration form. Registrations will be confirmed via email.Â </span></li>\r\n	<li>Â Call Â <strong>250-472-2851, extension 101</strong> and leave a voice mail with your contact information.</li>\r\n</ul>\r\nTo complete the registration and confirm your seatin the training program, your payment must be received no later than (5 business days) prior to the start date.\r\n\r\nRegistration is on a first-come, first-serve basis.\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"text-decoration: underline;\">Payment Options:</span></strong></span></h4>\r\n<ul>\r\n	<li>Cash or</li>\r\n	<li>Credit</li>\r\n</ul>\r\nPlease call the office at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851, extension 101</strong> and your credit card will be processed over the phone.\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\"><strong>Refunds:</strong></span></span></h4>\r\n<ul>\r\n	<li>In the case of a training program cancellation, a full refund will be issued.</li>\r\n	<li>Where cash payment has been made, refunds will be paid by cheque.</li>\r\n</ul>", "Registration & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2017-06-22 13:56:38", "2017-06-22 20:56:38", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14815", "3", "2017-06-22 13:57:34", "2017-06-22 20:57:34", "[gravityform id=\"3\" name=\"Register for a Course or Training program\"]", "Register for Training ", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2017-06-22 13:57:34", "2017-06-22 20:57:34", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14816", "3", "2017-06-22 13:57:53", "2017-06-22 20:57:53", "[gravityform id=\"3\" name=\"Register for Training\"]", "Register for Training ", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2017-06-22 13:57:53", "2017-06-22 20:57:53", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14817", "3", "2017-06-22 14:02:02", "2017-06-22 21:02:02", "<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:</span>\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Directions: Find us", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-22 14:02:02", "2017-06-22 21:02:02", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14818", "3", "2017-06-22 14:02:17", "2017-06-22 21:02:17", "<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:</span>\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Where we are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-22 14:02:17", "2017-06-22 21:02:17", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14819", "3", "2017-06-22 14:02:27", "2017-06-22 21:02:27", "<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Available Maps:</span>\r\n\r\n<a title=\"Map of South Island Centre\" href=\"http://www.mapquest.ca/?version=1.0&amp;hk=1-bS84z17i\" target=\"_blank\">MapQuest</a>.\r\n\r\n<a title=\"Map of South Island Centre\" href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\">Google</a>.\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-22 14:02:27", "2017-06-22 21:02:27", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14820", "3", "2017-06-22 14:02:39", "2017-06-22 21:02:39", "<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.google.ca/maps/place/3821+Cedar+Hill+Cross+Rd,+Victoria,+BC+V8P+2M4/@48.4632923,-123.3383155,17z/data=!4m2!3m1!1s0x548f73e5fbe236a9:0xc71ad390a3ef7b88\" target=\"_blank\"><img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" /></a>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-22 14:02:39", "2017-06-22 21:02:39", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14821", "3", "2017-06-22 14:08:43", "2017-06-22 21:08:43", "[vc_row][vc_column][vc_column_text]\r\n<h4><strong>Our Mailing Address:</strong></h4>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6\r\n<h4><strong>Telephone/Fax Info:</strong></h4>\r\n<strong>Front Desk:</strong>Â (250) 472-2851, and press \"0\". If your call goes to Voicemail, please leave a message on our confidential mailbox, and leave your contact information.\r\n\r\n<strong>Director of Development: Caroline Donelle.</strong> Please contact her at (250) 472-2851, extension 107.\r\n<strong>Director of Services: Amber Eves.</strong> Please contact her at (250) 472-2851, extension 103.\r\n\r\n<strong>Fax:</strong>Â (250) 472-2815\r\n<h4><strong> Centre hours:</strong></h4>\r\n<strong>Business Hours:</strong> The Centre is open daily fromn Monday to Friday.\r\n\r\n<strong>Reception Desk Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays.\r\n\r\nSouth Island Centre isÂ <strong>closed</strong>Â on all statutory holidays.\r\n<h4><strong>Counselling Hours:</strong></h4>\r\nAre scheduled as needed. Appointments are available during the day, evenings and weekends.\r\n<h4><strong>E-Mails:</strong></h4>\r\n<strong>Training registration:Â </strong><a title=\"Contact Form: Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>Â to register for training.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:08:43", "2017-06-22 21:08:43", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14822", "3", "2017-06-22 14:14:02", "2017-06-22 21:14:02", "[vc_row][vc_column][vc_column_text]\r\n<h4><strong>Telephone:</strong></h4>\r\n<strong>Reception:</strong>Â (250) 472-2851.\r\n<h4><strong>Email:</strong></h4>\r\nadmin@localhost\r\n<h4><strong> Centre hours:</strong></h4>\r\nOpen daily Monday through Friday.\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays.\r\n<h4><strong>Counselling Hours:</strong></h4>\r\nAppointments are available during the day, evenings and weekends.\r\n<h4><strong>E-Mails:</strong></h4>\r\n<strong>Training:Â </strong><a title=\"Contact Form: Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>\r\n<h4><strong>Our Mailing Address:</strong></h4>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:14:02", "2017-06-22 21:14:02", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14823", "3", "2017-06-22 14:15:10", "2017-06-22 21:15:10", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851.\r\n<h4><strong>Email:</strong></h4>\r\nadmin@localhost\r\n\r\nOpen daily Monday through Friday.\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays.\r\n<h4><strong>Counselling Hours:</strong></h4>\r\nAppointments are available during the day, evenings and weekends.\r\n<h4><strong>E-Mails:</strong></h4>\r\n<strong>Training:Â </strong><a title=\"Contact Form: Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>\r\n<h4><strong>Our Mailing Address:</strong></h4>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:15:10", "2017-06-22 21:15:10", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14824", "3", "2017-06-22 14:17:12", "2017-06-22 21:17:12", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851.\r\n<h4><strong>Email:</strong></h4>\r\nadmin@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays.\r\n<h4><strong>Counselling Hours:</strong></h4>\r\nAppointments are available during the day, evenings and weekends.\r\n<strong>Training:Â </strong><a title=\"Contact Form: Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>\r\n<h4><strong>Our Mailing Address:</strong></h4>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:17:12", "2017-06-22 21:17:12", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14825", "3", "2017-06-22 14:18:01", "2017-06-22 21:18:01", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\r\n<strong>Email:</strong>Â admin@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays.\r\n<h4><strong>Counselling Hours:</strong></h4>\r\nAppointments are available during the day, evenings and weekends.\r\n<strong>Training:Â </strong><a title=\"Contact Form: Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\">Click here</span></span></a>\r\n<h4><strong>Our Mailing Address:</strong></h4>\r\n3821A Cedar Hill Cross Road\r\n\r\nVictoria, BC\r\n\r\nV8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:18:01", "2017-06-22 21:18:01", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14826", "3", "2017-06-22 14:19:32", "2017-06-22 21:19:32", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\r\n\r\n<strong>Email:</strong>Â admin@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\r\n<h4><strong>Counselling Hours:</strong></h4>\r\nAppointments are available during the day, evenings and weekends\r\n<h4><strong>Our Mailing Address:</strong></h4>\r\n3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:19:32", "2017-06-22 21:19:32", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14827", "3", "2017-06-22 14:21:17", "2017-06-22 21:21:17", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\r\n\r\n<strong>Email:</strong>Â admin@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\r\n\r\n<strong>Counselling Hours:</strong>Â Appointments are available during the day, evenings and weekends\r\n<h4><strong>Our Mailing Address:</strong></h4>\r\n3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:21:17", "2017-06-22 21:21:17", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14828", "3", "2017-06-22 14:22:15", "2017-06-22 21:22:15", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\r\n\r\n<strong>Email:</strong>Â admin@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\r\n\r\n<strong>Counselling Hours:</strong>Â Appointments are available during the day, evenings and weekends\r\n\r\n<strong>Our Mailing Address:</strong>\r\n3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_facebook type=\"standard\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:22:15", "2017-06-22 21:22:15", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14829", "3", "2017-06-22 14:22:59", "2017-06-22 21:22:59", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\r\n\r\n<strong>Email:</strong>Â admin@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\r\n\r\n<strong>Counselling Hours:</strong>Â Appointments are available during the day, evenings and weekends\r\n\r\n<strong>Our Mailing Address:</strong>\r\n3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_tweetmeme type=\"horizontal\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:22:59", "2017-06-22 21:22:59", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14830", "3", "2017-06-22 14:23:38", "2017-06-22 21:23:38", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\r\n\r\n<strong>Email:</strong>Â admin@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\r\n\r\n<strong>Counselling Hours:</strong>Â Appointments are available during the day, evenings and weekends\r\n\r\n<strong>Our Mailing Address:</strong>\r\n3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2017-06-22 14:23:38", "2017-06-22 21:23:38", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14831", "3", "2017-06-22 14:28:20", "2017-06-22 21:28:20", "<h4><span style=\"text-decoration: underline;\"><strong>Amber Eves (MEd, RCC) - Director of Services</strong></span></h4>\r\n<strong>Director of Services Amber Eves</strong>Â brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret (McKinnon) Anderson (Member CHPCA, BCHPCA)</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span>Â is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Barbara Baillie (MAPPC, BCATR)</span></span></h4>\r\n<strong><span style=\"color: #000000;\">Barbara Baillie\'s</span></strong>Â background is in education and spirituality. With a Master\'s degree in Theological Studies and Training in spiritual direction, Barb has worked since 1991 as a spiritual director in retreat houses and in private practice. Her passion is Ignatian spirituality. Finding a need for more counselling skills, Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to work with the enneagram helping clients to a deeper self-knowledge &amp; acceptance. She is a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Bill Cole (MA, RCC)</strong></span></h4>\r\n<strong>Bill Cole</strong>Â (MA, RCC) has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Rosemary Merritt Â (MEd, MPE, RCC)</span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Rosemary Merritt</strong> </span>enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Liz Beattie (BA, MCP, RCC)</strong></span></h4>\r\n<strong>Liz Beattie</strong> received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Peter Simmons (BA, MDiv)</span></strong></h4>\r\n<b><span style=\"color: #00000a;\">Peter Simmons</span></b><span style=\"color: #00000a;\"> received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology, University of Toronto.Â Â His theological education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>\r\n\r\n<span style=\"color: #00000a;\">Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.Â  He strives to work in a culturally sensitive manner and incorporates core belief and cognitive behavioural therapy to promote personal wellness. Â </span>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-06-22 14:28:20", "2017-06-22 21:28:20", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14832", "3", "2017-06-22 14:33:24", "2017-06-22 21:33:24", "<strong>Amber Eves MEd, RCC</strong>Â , our Director of Services, brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\">Margaret Anderson CHPCA, BCHPCA</span></span></h4>\r\n<span style=\"color: #000000;\"><strong>Margaret </strong></span>is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n<h4></h4>\r\nBarbara Baillie MAPPC, BCATR,holdsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb has worked as a spiritual director in retreats and in private practice since 1991. Her passion is Ignatian spirituality. Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to helpÂ direct clients to a deeper self-knowledge &amp; acceptance. As a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n<strong>Bill Cole MA, RCC</strong>, has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n<h4>Rosemary Merritt Â (MEd, MPE, RCC), enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.</h4>\r\n<h3></h3>\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline; color: #000000;\"><span style=\"text-decoration: underline;\">Laurie Truant (MA, RCC)</span></span></strong></h4>\r\n<span style=\"color: #000000;\"><strong>Laurie Truant</strong></span>Â specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><span style=\"text-decoration: underline;\"><strong>Volunteer Counsellors:</strong></span></h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\"><strong>Audrey Gibson (BSc - OT; MDiv - SW)</strong></span></h4>\r\n<strong>AudreyGibson</strong>Â received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\"><strong>Liz Beattie (BA, MCP, RCC)</strong></span></h4>\r\n<strong>Liz Beattie</strong> received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"text-decoration: underline;\">Peter Simmons (BA, MDiv)</span></strong></h4>\r\n<b><span style=\"color: #00000a;\">Peter Simmons</span></b><span style=\"color: #00000a;\"> received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology, University of Toronto.Â Â His theological education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>\r\n\r\n<span style=\"color: #00000a;\">Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.Â  He strives to work in a culturally sensitive manner and incorporates core belief and cognitive behavioural therapy to promote personal wellness. Â </span>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-06-22 14:33:24", "2017-06-22 21:33:24", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14833", "3", "2017-06-22 14:37:07", "2017-06-22 21:37:07", "<strong>Amber Eves MEd, RCC</strong>Â , our Director of Services, brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n<strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\n<strong>Barbara Baillie MAPPC, BCATR</strong>,holdsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb has worked as a spiritual director in retreats and in private practice since 1991. Her passion is Ignatian spirituality. Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to helpÂ direct clients to a deeper self-knowledge &amp; acceptance. As a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n<strong>Bill Cole MA, RCC</strong>, has been with South Island Centre for 28+ years. He works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n<strong>Rosemary Merritt Â MEd, MPE, RCC</strong>, enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n\r\n<strong>Laurie Truant, MA, RCC</strong>, specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\n<strong>Audrey Gibson BSc - OT; MDiv - SW</strong>, received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n<strong>Liz Beattie BA, MCP, RCC</strong>, received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\r\n\r\n<span style=\"color: #00000a;\"><strong>Peter Simmons BA, MDiv,</strong> received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology, University of Toronto.Â Â His theological education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>\r\n\r\n<span style=\"color: #00000a;\">Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.Â  He strives to work in a culturally sensitive manner and incorporates core belief and cognitive behavioural therapy to promote personal wellness. Â </span>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-06-22 14:37:07", "2017-06-22 21:37:07", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14834", "3", "2017-06-22 14:37:56", "2017-06-22 21:37:56", "<strong>Amber Eves MEd, RCC</strong>Â , our Director of Services, brings 34 years of experience as an educator, school counsellor and community mental health counsellor. She began as an elementary teacher with a focus on helping those with developmental disabilities and then taught students in all grade levels. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She received certification in level 1 marriage counselling from the Gottman Institute in Seattle, has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n<strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>is a member of both the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She has been a contract counsellor at South Island Centre for over 16 years specializing in the area of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice (while centering mainly around grief and loss) covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is also an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\n<strong>Barbara Baillie MAPPC, BCATR</strong>,holdsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb has worked as a spiritual director in retreats and in private practice since 1991. Her passion is Ignatian spirituality. Barb attended St. Stephen\'s College and graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to helpÂ direct clients to a deeper self-knowledge &amp; acceptance. As a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n<strong>Bill Cole MA, RCC</strong>, works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n<strong>Rosemary Merritt Â MEd, MPE, RCC</strong>, enjoys working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, Self in Society, Self &amp; Environment, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels men and women in the Restorative Justice Programme.\r\n\r\n<strong>Laurie Truant, MA, RCC</strong>, specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\n<strong>Audrey Gibson BSc - OT; MDiv - SW</strong>, received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She supported them to actively participate in life at home, at school and in the community. She also developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria. She is delighted now to bring this richly varied experience and education to the South Island Centre as a volunteer counsellor. She feels privileged to come alongside people, to hear their stories and engage them in discovering the resources they have to make the changes they want for their lives.\r\n\r\n<strong>Liz Beattie BA, MCP, RCC</strong>, received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\r\n\r\n<span style=\"color: #00000a;\"><strong>Peter Simmons BA, MDiv,</strong> received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-06-22 14:37:56", "2017-06-22 21:37:56", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14835", "3", "2017-06-22 14:43:04", "2017-06-22 21:43:04", "<strong>Amber Eves MEd, RCC</strong>Â , our Director of Services, hasÂ extensiveÂ experience as an educator, school counsellor and community mental health counsellor. Amber got her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling â€“ which she pursued for 7 years, serving students in K-12 in a variety of school districts on Vancouver Island and the lower mainland. Most recently she lived and worked in Nebraska in the US where she became licensed as a mental health practitioner. In addition to her work as aÂ  teacher and counsellor, Amber has been the director of a non-profit organization, a gambling prevention specialist, a quality assurance coordinator, and a home health care provider. She has worked with children and families who have experienced trauma or abuse, is trained in career development concepts and helps women heal from past sexual abuse. She is passionate about helping others navigate their way through lifeâ€™s transitions using a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â  and internal family systems therapy.\r\n\r\n<strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>is a member of the Canadian Hospice and Palliative Care Association (CHPCA) as well as its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA). She specializes in the areas of grief, loss and other life transition issues as well as elder care and end-of-life preparedness. Her counselling practice covers a broad array of issues including relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety etc. Margaret is an experienced educator and facilitator on bereavement, spiritual care, end-of-life care, and elder-care issues. She assists with advanced care planning, mediates with families on behalf of elderly clients, those with long term or terminal illness and mentors them through all end-of-life preparedness issues.\r\n\r\n<strong>Barbara Baillie MAPPC, BCATR</strong>,holdsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Her passion is Ignatian spirituality. Barb graduated with a M.A. In Pastoral Psychology &amp; Counselling with an art therapy specialization. She loves to helpÂ direct clients to a deeper self-knowledge &amp; acceptance. As a trained midlife/long life facilitator so is adept at helping clients with the transition points of the second half of life. She has helped many women through separation and divorce traumas, helping with boundaries, empowerment and moving toward a positive self concept.\r\n\r\n<strong>Bill Cole MA, RCC</strong>, works with individuals, couples, and families around a variety of issues and supervises our counselling staff. As a trainer he teaches family systems theory, pastoral counselling, marriage preparation, and pastoral care team training.\r\n\r\n<strong>Rosemary Merritt Â MEd, MPE, RCC</strong>, focuses onÂ working with young men and women around self-esteem issues,Â empowerment, anxiety, holistic well-being, depression, managing change; academic, sport, &amp; job performance, family issuesÂ and also counsels individualsÂ in the Restorative Justice Programme.\r\n\r\n<strong>Laurie Truant, MA, RCC</strong>, specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie has worked in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshop.\r\n\r\n<strong>Audrey Gibson BSc, OT, MDiv, SW</strong>, received her Bachelor of Science in Occupational Therapy from the University of Alberta in Edmonton and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Louisville, Kentucky. During her career in BC, Alberta, Saskatchewan and Indiana she worked mainly with children with physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.\r\n\r\n<strong>Liz Beattie BA, MCP, RCC</strong>, received her Bachelor of Arts in Psychology from the University of Victoria and a Master of Counselling Psychology at Adler University in Vancouver. Liz practices from a Rogerian/Person-centred approach, integrating Cognitive-Behavioural Therapy (CBT) and Mindfulness techniques. Liz is passionate about working alongside teens and adults in the areas of depression, anxiety, stress, sleep issues, self-esteem, life transitions, trauma-related issues, parenting, relationship issues, and diversity issues.\r\n\r\n<span style=\"color: #00000a;\"><strong>Peter Simmons BA, MDiv,</strong> received his Bachelor of Arts degree in Philosophy and Religious Studies from St. Michael\'s College, University of Toronto and was also granted a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him a deep and abiding respect for the intrinsic value of each person he encounters.Â </span>Peter provides person-centred counselling to individuals who are experiencing a variety of life challenges, which include issues related to stress, anxiety, self-esteem, addiction, depression, and vocational life transitions.", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-06-22 14:43:04", "2017-06-22 21:43:04", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14841", "6", "2017-06-24 12:38:49", "2017-06-24 19:38:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-24 12:38:49", "2017-06-24 19:38:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14847", "6", "2017-06-24 12:57:12", "2017-06-24 19:57:12", "<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-24 12:57:12", "2017-06-24 19:57:12", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14848", "6", "2017-06-24 13:09:36", "2017-06-24 20:09:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\n<h2>Who we are &amp; what we do</h2>\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"2/3\"][vc_column_text]Introduction of South Island Centre[/vc_column_text][dt_gap height=\"20\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"165\" animation=\"left\" bg_image=\"http://the7.dream-demo.com/dummy/wp-content/uploads/2013/08/dt-009.jpg\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\"]\n<h3 style=\"text-align: center;\">Featured Projects</h3>\n<h4 style=\"text-align: center;\">View our portfolio</h4>\n[/dt_banner][/vc_column_inner][/vc_row_inner][dt_gap height=\"20\"][dt_divider style=\"thin\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h4>OUR MISSION</h4>\n[/vc_column_text][dt_gap height=\"25\"][vc_column_text][dt_quote type=\"blockquote\" font_size=\"big\" animation=\"none\" background=\"fancy\"]<em>South Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\nWhether youâ€™re struggling with your relationships or your self-confidence â€¦ You donâ€™t have to go through it alone.</em>[/dt_quote][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h4>CORE GOALS</h4>\n[/vc_column_text][dt_gap height=\"18\"][vc_column_text][dt_list style=\"1\" dividers=\"false\"]\n\n[dt_list_item image=\"\"]Curabitur pellentesque neque eget diam.[/dt_list_item]\n\n[dt_list_item image=\"\"]Quisque ut nulla at nunc vehicula lacinia.[/dt_list_item]\n\n[dt_list_item image=\"\"]Proin adipiscing porta tellus, ut feugiat nibh adipiscing.[/dt_list_item]\n\n[dt_list_item image=\"\"]Lorem urabitur pellentesque neque eget diam.[/dt_list_item]\n\n[dt_list_item image=\"\"]Glavida ut nulla at nunc vehicula lacinia.[/dt_list_item]\n\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\n<h4>CONTACT INFO</h4>\n[/vc_column_text][dt_gap height=\"18\"][vc_column_text]\n<h6>Address:</h6>\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\n\n<h6>Phone number:</h6>\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\n\n<h6>Social links:</h6>\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"40\" margin_bottom=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][dt_gap height=\"10\"][vc_column_text]\n<h2>Specialisation and services</h2>\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Phasellus et nisl tellus. Etiam facilisis eu nisi scelerisque faucibus. Proin semper suscipit magna, nec imperdiet lacus semper vitae. Sed hendrerit enim non justo posuere placerat. Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibh tortor.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\n<h4>YEARS OF EXPERIENCE</h4>\n[/vc_column_text][dt_gap height=\"18\"][vc_progress_bar values=\"100|Web development - 7 years,80|Marketing &amp; PR - 5 years,60|Photography - 3 years,30|Consulting - 1 year\" bgcolor=\"bar_blue\" options=\"striped,animated\"][dt_gap height=\"20\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text][dt_benefits style=\"2\" animation=\"top\" columns=\"2\" dividers=\"true\" image_background=\"true\"]\n\n[dt_benefit title=\"Web design\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con01.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con001.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis faucibus purus unde om iste natus sit piciatis unde lorem ipsusit dolor comnis.\n[/dt_benefit]\n\n[dt_benefit title=\"Programming\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con02.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con002.png\" header_size=\"h4\" content_size=\"normal\"]Suspen faucibus purus disse pharetra cursus pulva purus ac metus iaculis aliquam.\n[/dt_benefit]\n\n[dt_benefit title=\"Marketing\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con03.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con003.png\" header_size=\"h4\" content_size=\"normal\"]Cras porttitor faucibus purus odio non nunc laoreet ullamcorper pellent Â dignissim.\n[/dt_benefit]\n\n[dt_benefit title=\"SMM &amp; SEO\" image_link=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con04.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con004.png\" header_size=\"h4\" content_size=\"normal\"]Praesent quis orci nec libero purus pulvinar lorem ellen tesque habitant morbi tristique\n[/dt_benefit]\n\n[dt_benefit title=\"Consulting\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con05.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con005.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis unde om iste faucibus purus faucibus purus undeÂ natus sit dolor comnis istoni lorem.\n[/dt_benefit]\n\n[dt_benefit title=\"Photography\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/con06.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/con006.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis faucibus purus unde om iste natus sit piciatis unde lorem ipsusit dolor comnis.\n[/dt_benefit]\n\n[/dt_benefits][/vc_column_text][dt_gap height=\"40\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][vc_column_text]\n<h2>Testimonials &amp; clients</h2>\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"2/3\"][vc_column_text]Curabitur pellentesque neque eget diam posuere porta. Quisque ut nulla at nunc vehicula lacinia. Proin adipiscing porta tellus, ut feugiat nibh adipiscing metus sit amet. In eu justo a felis faucibus ornare vel id metus. Sed hendrerit enim non justo posuere placerat. Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibhbus pellentesque facilisis.[/vc_column_text][dt_gap height=\"30\"][dt_logos columns=\"4\" dividers=\"true\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\" category=\"color-logos\"][dt_gap height=\"40\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\"][dt_gap height=\"10\"][vc_column_text]\n<p style=\"text-align: center;\">[dt_button size=\"small\" animation=\"none\" color=\"\" link=\"http://the7.dream-demo.com/features-2/what-buyers-say-about-the7/\" target_blank=\"true\"]All testimonials[/dt_button][dt_button size=\"small\" animation=\"none\" color=\"\" link=\"http://the7.dream-demo.com/pages/contact/contact-with-fancy-header/\" target_blank=\"true\"]Write a review[/dt_button]</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "About us", "", "inherit", "closed", "closed", "", "12771-autosave-v1", "", "", "2017-06-24 13:09:36", "2017-06-24 20:09:36", "", "12771", "http://localhost:8888/TestSICPage/wordpress/12771-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14849", "6", "2017-06-24 13:10:03", "2017-06-24 20:10:03", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n<h2>Who we are &amp; what we do</h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"2/3\"][vc_column_text]Introduction of South Island Centre[/vc_column_text][dt_gap height=\"20\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"0\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"1\" outer_padding=\"10\" inner_padding=\"9\" min_height=\"165\" animation=\"left\" bg_image=\"http://the7.dream-demo.com/dummy/wp-content/uploads/2013/08/dt-009.jpg\" link=\"http://themeforest.net/user/Dream-Theme/portfolio\"]\r\n<h3 style=\"text-align: center;\">Featured Projects</h3>\r\n<h4 style=\"text-align: center;\">View our portfolio</h4>\r\n[/dt_banner][/vc_column_inner][/vc_row_inner][dt_gap height=\"20\"][dt_divider style=\"thin\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>OUR MISSION</h4>\r\n[/vc_column_text][dt_gap height=\"25\"][vc_column_text][dt_quote type=\"blockquote\" font_size=\"big\" animation=\"none\" background=\"fancy\"]<em>South Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\nWhether youâ€™re struggling with your relationships or your self-confidence â€¦ You donâ€™t have to go through it alone.</em>[/dt_quote][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>CORE GOALS</h4>\r\n[/vc_column_text][dt_gap height=\"18\"][vc_column_text][dt_list style=\"1\" dividers=\"false\"]\r\n\r\n[dt_list_item image=\"\"]Curabitur pellentesque neque eget diam.[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Quisque ut nulla at nunc vehicula lacinia.[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Proin adipiscing porta tellus, ut feugiat nibh adipiscing.[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Lorem urabitur pellentesque neque eget diam.[/dt_list_item]\r\n\r\n[dt_list_item image=\"\"]Glavida ut nulla at nunc vehicula lacinia.[/dt_list_item]\r\n\r\n[/dt_list][/vc_column_text][dt_gap height=\"30\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]\r\n<h4>CONTACT INFO</h4>\r\n[/vc_column_text][dt_gap height=\"18\"][vc_column_text]\r\n<h6>Address:</h6>\r\n<p style=\"margin-top: -10px;\">102580 Santa Monica BLVD Los Angeles</p>\r\n\r\n<h6>Phone number:</h6>\r\n<p style=\"margin-top: -10px;\">+3 045 224 33 12, +3 045 224 55 15</p>\r\n\r\n<h6>Social links:</h6>\r\n<div style=\"margin-top: -5px;\">[dt_social_icons animation=\"fade\"][dt_social_icon target_blank=\"true\" icon=\"facebook\" link=\"https://www.facebook.com/WordPress.Premium.Theme\" /][dt_social_icon target_blank=\"true\" icon=\"twitter\" link=\"https://twitter.com/premium_theme\" /][dt_social_icon target_blank=\"true\" icon=\"google\" link=\"https://plus.google.com/â€Ž\" /][dt_social_icon target_blank=\"true\" icon=\"dribbble\" link=\"http://dribbble.com/dream-theme\" /][dt_social_icon target_blank=\"true\" icon=\"pinterest\" link=\"http://pinterest.com/dreamtheme/\" /][dt_social_icon target_blank=\"true\" icon=\"instagram\" link=\"http://instagram.com/dream_theme_photo\" /][/dt_social_icons]</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"2\" bg_position=\"top\" bg_repeat=\"repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"20\" margin_top=\"40\" margin_bottom=\"40\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][dt_gap height=\"10\"][vc_column_text]\r\n<h2>Specialisation and services</h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]Phasellus et nisl tellus. Etiam facilisis eu nisi scelerisque faucibus. Proin semper suscipit magna, nec imperdiet lacus semper vitae. Sed hendrerit enim non justo posuere placerat. Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibh tortor.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4>YEARS OF EXPERIENCE</h4>\r\n[/vc_column_text][dt_gap height=\"18\"][vc_progress_bar values=\"100|Web development - 7 years,80|Marketing &amp; PR - 5 years,60|Photography - 3 years,30|Consulting - 1 year\" bgcolor=\"bar_blue\" options=\"striped,animated\"][dt_gap height=\"20\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text][dt_benefits style=\"2\" animation=\"top\" columns=\"2\" dividers=\"true\" image_background=\"true\"]\r\n\r\n[dt_benefit title=\"Web design\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con01.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con001.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis faucibus purus unde om iste natus sit piciatis unde lorem ipsusit dolor comnis.\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"Programming\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con02.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con002.png\" header_size=\"h4\" content_size=\"normal\"]Suspen faucibus purus disse pharetra cursus pulva purus ac metus iaculis aliquam.\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"Marketing\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con03.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con003.png\" header_size=\"h4\" content_size=\"normal\"]Cras porttitor faucibus purus odio non nunc laoreet ullamcorper pellent Â dignissim.\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"SMM &amp; SEO\" image_link=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con04.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con004.png\" header_size=\"h4\" content_size=\"normal\"]Praesent quis orci nec libero purus pulvinar lorem ellen tesque habitant morbi tristique\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"Consulting\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con05.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/07/con005.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis unde om iste faucibus purus faucibus purus undeÂ natus sit dolor comnis istoni lorem.\r\n[/dt_benefit]\r\n\r\n[dt_benefit title=\"Photography\" image_link=\"http://themeforest.net/user/Dream-Theme\" image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/con06.png\" hd_image=\"http://the7.dream-demo.com/wp-content/uploads/2013/08/con006.png\" header_size=\"h4\" content_size=\"normal\"]Perspiciatis faucibus purus unde om iste natus sit piciatis unde lorem ipsusit dolor comnis.\r\n[/dt_benefit]\r\n\r\n[/dt_benefits][/vc_column_text][dt_gap height=\"40\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][dt_gap height=\"10\"][vc_column_text]\r\n<h2>Testimonials &amp; clients</h2>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"2/3\"][vc_column_text]Curabitur pellentesque neque eget diam posuere porta. Quisque ut nulla at nunc vehicula lacinia. Proin adipiscing porta tellus, ut feugiat nibh adipiscing metus sit amet. In eu justo a felis faucibus ornare vel id metus. Sed hendrerit enim non justo posuere placerat. Phasellus eget purus vel mauris tincidunt tincidunt. Sed et nibhbus pellentesque facilisis.[/vc_column_text][dt_gap height=\"30\"][dt_logos columns=\"4\" dividers=\"true\" number=\"8\" orderby=\"date\" order=\"desc\" animation=\"top\" category=\"color-logos\"][dt_gap height=\"40\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_testimonials type=\"slider\" columns=\"2\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"home-small,testimonials-category-01,testimonials-category-02\"][dt_gap height=\"10\"][vc_column_text]\r\n<p style=\"text-align: center;\">[dt_button size=\"small\" animation=\"none\" color=\"\" link=\"http://the7.dream-demo.com/features-2/what-buyers-say-about-the7/\" target_blank=\"true\"]All testimonials[/dt_button][dt_button size=\"small\" animation=\"none\" color=\"\" link=\"http://the7.dream-demo.com/pages/contact/contact-with-fancy-header/\" target_blank=\"true\"]Write a review[/dt_button]</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "About us", "", "inherit", "closed", "closed", "", "12771-revision-v1", "", "", "2017-06-24 13:10:03", "2017-06-24 20:10:03", "", "12771", "http://localhost:8888/TestSICPage/wordpress/12771-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14851", "6", "2017-06-25 21:44:35", "2017-06-26 04:44:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop</a></strong> (Saturday, October 14, 2017). Please submit your registration by Wednesday, August 16, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-25 21:44:35", "2017-06-26 04:44:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14852", "6", "2017-06-25 22:03:15", "2017-06-26 05:03:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training! </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission Statement:</strong>\r\n\r\nSouth Island Centre for Counselling and Training provides professional and affordable services to individuals, families, and organizations in support of personal, relational and spiritual wholeness.\r\n\r\nWhether you\'re struggling with your relationships or your self-confidence ... You don\'t have to go through it alone.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_column_text]\r\n<h3><strong>Counselling, Courses and Training:</strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Counselling:</strong> We offer counselling around a variety of issues such as anxiety, depression, trauma, grief &amp; loss, elder support, end-of-life care, self-esteem, abuse, marital conflict, etc.\r\n\r\n<strong>Courses and Training:</strong> We also offer courses for personal and professional development in topics such as grief, loss, life transitions, caring for the elderly, end-of-life issues, marriage preparation, family systems, support groups for youth and young adults, and spiritual direction in addition to pastoral care team training.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]We offer <strong>professional, affordable, income-based counselling services</strong> for individuals, couples, children, youth, and families in support of personal, relational, and spiritual wellness, provided by registered clinical counsellors, volunteer counsellors and counselling interns.\r\n\r\nWe also offer <strong>courses</strong> for personal development and <strong>training </strong> for caregivers, laypeople and other professional support workers.\r\n\r\nFor clergy and laypeople, <strong>pastoral counselling</strong>, <strong>spiritual direction</strong>, and <strong>pastoral care team training</strong> is available.\r\n\r\nFor additional information, call (250) 472-2851.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h3><strong>Current Course Offerings</strong></h3>\r\n<strong><a title=\"Making it work for Teens! 2-week workshop July 3-6 and 10-13, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/\" target=\"_blank\">Making it work for Teens!</a></strong> (Monday-Thursday, July 3-6 and 10-13, 2017). Please submit your registration by Thursday, June 22, 2017.\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017). Please submit your registration by Wednesday, August 16, 2017.\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop</a></strong> (Saturday, October 14, 2017). Please submit your registration by Tuesday, October 10, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Annual Gala 2017</h4>\r\nSave the date! Our 2017 fundraising gala will be held on <strong>Saturday, October 21, 2017</strong> at the Inn at Laurel Point. Stay tuned for details![/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>How to reach us:</h4>\r\n<h6><strong>Address</strong>:</h6>\r\n<p style=\"margin-top: -10px;\"><strong>3821A Cedar Hill Cross Rd Victoria, BC V8P 2M6</strong></p>\r\n\r\n<h6><strong>Phone number:</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2851</strong></p>\r\n\r\n<h6><strong>Fax number</strong></h6>\r\n<p style=\"margin-top: -10px;\"><strong>(250) 472-2815</strong></p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Counselling Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only. Talk to your counsellor for suitable times. Arrangements can be made for evenings and/or weekend appointments as needed. We are closed on all statutory holidays.</p>\r\n\r\n<h6><strong>Office Reception Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Monday-Thursday, 9:00am-1:00pm.</p>\r\n[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-011.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Counselling</h4>\r\nOur goal is for you to receive the help and support you need, regardless of your financial situation. We offer counselling to individuals, children and youth (ages 6-18), couples and families. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/counselling/general-information/\" target_blank=\"false\"]View details [/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/dt-016.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"blank\"]\r\n<h4>Courses</h4>\r\nSouth Island Centre offers courses and training programs for personal and professional development. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/courses/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_teaser type=\"image\" image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/08/smalllogo.jpg\" lightbox=\"true\" style=\"2\" content_size=\"normal\" text_align=\"center\" background=\"fancy\" animation=\"top\" target=\"self\" misc_link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\"]\r\n<h4>Other Services</h4>\r\nWe provide pastoral counselling services for clergy, as well as Spiritual Direction programs. [dt_gap height=\"5\"] [dt_button size=\"small\" color=\"\" link=\"http://localhost:8888/TestSICPage/wordpress/other-services/\" target_blank=\"false\"]View details[/dt_button][/dt_teaser][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text]Testimonials[/vc_column_text][dt_testimonials type=\"slider\" padding=\"20\" column_width=\"370\" number=\"12\" orderby=\"date\" order=\"desc\" category=\"testimonials-category-01\" autoslide=\"10000\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation (Victoria)\" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>United Way\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-06-25 22:03:15", "2017-06-26 05:03:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14853", "6", "2017-06-25 22:22:33", "2017-06-26 05:22:33", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-759 size-medium\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/South-Island-Centre-Location--300x154.png\" alt=\"South Island Centre - Location\" width=\"300\" height=\"154\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gmaps type=\"m\" zoom=\"14\" link=\"https://www.google.ca/maps/place/South+Island+Centre+For+Counselling+%26+Training+Society/@48.4630006,-123.3394528,17z/data=!3m1!4b1!4m5!3m4!1s0x548f73e5fbe236a9:0x4b98360044e6d944!8m2!3d48.4630006!4d-123.3372641\" size=\"200\"][/vc_column][/vc_row]", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-25 22:22:33", "2017-06-26 05:22:33", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14854", "6", "2017-06-25 22:29:41", "2017-06-26 05:29:41", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][vc_gmaps type=\"m\" zoom=\"14\" style=\"``border:0``\" src=\"``https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2673.313430532818!2d-123.33946657702916!3d48.46300875834477!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498454624051``\" width=\"``600``\" height=\"``450``\" frameborder=\"``0``\" title=\"Map\" link=\"<iframe style=\"``border: 0``;\" src=\"``https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2673.313430532818!2d-123.33946657702916!3d48.46300875834477!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498454920087``\" width=\"``400``\" height=\"``300``\" frameborder=\"``0``\" allowfullscreen=\"allowfullscreen\"></iframe>\" bubble=\"1\"][/vc_column][/vc_row]", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-25 22:29:41", "2017-06-26 05:29:41", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14855", "6", "2017-06-25 22:32:16", "2017-06-26 05:32:16", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gmaps type=\"m\" zoom=\"14\" link=\"<iframe style=\"``border: 0``;\" src=\"``https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451``\" width=\"``600``\" height=\"``450``\" frameborder=\"``0``\" allowfullscreen=\"allowfullscreen\"></iframe>\"][/vc_column][/vc_row]", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-25 22:32:16", "2017-06-26 05:32:16", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14856", "6", "2017-06-25 22:40:46", "2017-06-26 05:40:46", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Anglican Church.The parking lot is at the corners of Cedar Hill Rd, Cedar Hill Cross Rd and Synod Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2017-06-25 22:40:46", "2017-06-26 05:40:46", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14947", "6", "2017-06-27 17:10:35", "2017-06-28 00:10:35", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we also offer specialized, professional training. What\'s on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop October 14, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop</a></strong> (Saturday, October 14, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-27 17:10:35", "2017-06-28 00:10:35", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14948", "6", "2017-06-27 17:16:06", "2017-06-28 00:16:06", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we also offer specialized, professional training. What\'s on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop October 14, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop</a></strong> (Saturday, October 14, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-27 17:16:06", "2017-06-28 00:16:06", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14949", "6", "2017-06-27 17:17:46", "2017-06-28 00:17:46", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we also offer specialized, professional training. What\'s on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-06-27 17:17:46", "2017-06-28 00:17:46", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15044", "6", "2017-07-23 14:00:56", "2017-07-23 21:00:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-mon-fri-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 8th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h5>The Harbourside Rotary Foundation \" image=\"14772\"][vc_column_text] [/vc_column_text][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h5>\r\n<h4>United Way of Greater Victoria\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\" image=\"14970\"][vc_column_text][/vc_column_text][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>City of Victoria\" image=\"15002\"][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St. Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-07-23 14:00:56", "2017-07-23 21:00:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15045", "6", "2017-07-23 14:19:15", "2017-07-23 21:19:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-mon-fri-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 8th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h5>The Harbourside Rotary Foundation \" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h5>\r\n<h4>United Way of Greater Victoria\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>City of Victoria\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St. Luke Cedar Hill Anglican Church\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-07-23 14:19:15", "2017-07-23 21:19:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15046", "6", "2017-07-23 14:21:29", "2017-07-23 21:21:29", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-mon-fri-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 8th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"10\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h5>The Harbourside Rotary Foundation \" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</h5>\r\n<h4>United Way of Greater Victoria\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>The Catholic Foundation of Vancouver Island\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>Coast Capital Savings\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"</h4>\r\n<h4>City of Victoria\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</h4>\r\n<h4>St. Luke Cedar Hill Anglican Church\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-07-23 14:21:29", "2017-07-23 21:21:29", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15047", "6", "2017-07-23 14:27:01", "2017-07-23 21:27:01", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-mon-fri-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 8th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-07-23 14:27:01", "2017-07-23 21:27:01", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15049", "6", "2017-07-23 19:23:50", "2017-07-24 02:23:50", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Marriage Preparation for all ages, Saturday, February 10, 2018; Facilitators: Bill Cole and Glenda Pryce \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Marriage Preparation Workshop </a></strong>(Saturday, February 10, 2018).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-07-23 19:23:50", "2017-07-24 02:23:50", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15061", "6", "2017-07-25 12:30:15", "2017-07-25 19:30:15", "", "Calendar", "", "publish", "closed", "closed", "", "calendar-2", "", "", "2017-07-25 12:30:15", "2017-07-25 19:30:15", "", "0", "http://localhost:8888/TestSICPage/wordpress/calendar-2/", "35", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15068", "6", "2017-07-25 15:36:10", "2017-07-25 22:36:10", "<p>[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:</p>\r\n<p><strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).</p>\r\n<p><strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).</p>\r\n<p><strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).</p>\r\n<p><strong><a title=\"Marriage Preparation for all ages, Saturday, February 10, 2018; Facilitators: Bill Cole and Glenda Pryce \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Marriage Preparation Workshop </a></strong>(Saturday, February 10, 2018).</p>\r\n<p>For more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]</p>\r\n", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-07-25 15:36:10", "2017-07-25 22:36:10", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15069", "6", "2017-07-25 15:41:17", "0000-00-00 00:00:00", "", "Positive Psychology Group", "", "draft", "closed", "closed", "", "", "", "", "2017-07-25 15:41:17", "2017-07-25 22:41:17", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=tribe_events&#038;p=15069", "0", "tribe_events", "", "0");
INSERT INTO `wp_posts` VALUES("15071", "6", "2017-07-25 10:25:31", "2017-07-25 17:25:31", "", "ThriveVictoria Positive Psychology 4 Sessions", "", "inherit", "closed", "closed", "", "thrivevictoria-positive-psychology-4-sessions-2", "", "", "2017-07-25 10:25:31", "2017-07-25 17:25:31", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/06/ThriveVictoria-Positive-Psychology-4-Sessions.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15073", "6", "2017-06-20 13:40:33", "2017-06-20 20:40:33", "", "Poster PCTT Oct 14, 2017", "", "inherit", "closed", "closed", "", "poster-pctt-oct-14-2017-2", "", "", "2017-06-20 13:40:33", "2017-06-20 20:40:33", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/08/Poster-PCTT-Oct-14-2017.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("15074", "6", "2016-08-29 12:12:01", "2016-08-29 19:12:01", "", "Pastoral Care Team Training workshop October 22, 2016", "", "inherit", "closed", "closed", "", "pcct-workshop-october-22-2016-2-2", "", "", "2016-08-29 12:12:01", "2016-08-29 19:12:01", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/08/PCCT-workshop-October-22-20161.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15075", "6", "2017-07-25 15:41:17", "2017-07-25 22:41:17", "", "Positive Psychology Group", "", "inherit", "closed", "closed", "", "15069-revision-v1", "", "", "2017-07-25 15:41:17", "2017-07-25 22:41:17", "", "15069", "http://localhost:8888/TestSICPage/wordpress/15069-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15077", "6", "2017-07-27 10:31:22", "2017-07-27 17:31:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-07-27 10:31:22", "2017-07-27 17:31:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15078", "8", "2015-11-19 10:53:57", "2015-11-19 18:53:57", "Facilitators: Bill Cole and Margaret Anderson\r\n\r\nFor more information: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/07/Poster-PCTT-Oct-14-2017.pdf\">Poster PCTT Oct 14, 2017</a>\r\n\r\n[gravityform id=\"8\" title=\"true\" description=\"true\"]\r\n\r\n&nbsp;", "Pastoral Care Team Training Workshop, Saturday, October 14, 2017 (Facilitators: Bill Cole and Margaret Anderson)", "", "publish", "closed", "closed", "", "pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson", "", "", "2017-10-05 14:41:43", "2017-10-05 21:41:43", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15078", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15079", "6", "2015-11-19 10:49:55", "2015-11-19 18:49:55", "", "PCTT workshop Feb 6, 2016", "", "inherit", "closed", "closed", "", "pcct-workshop-feb-6-2016-2", "", "", "2015-11-19 10:49:55", "2015-11-19 18:49:55", "", "15078", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/PCCT-workshop-Feb-6-2016.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15081", "6", "2017-07-27 11:10:06", "2017-07-27 18:10:06", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-07-27 11:10:06", "2017-07-27 18:10:06", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15082", "6", "2017-07-27 11:41:09", "2017-07-27 18:41:09", "", "Poster PCTT Oct 14, 2017", "", "inherit", "closed", "closed", "", "poster-pctt-oct-14-2017-3", "", "", "2017-07-27 11:41:09", "2017-07-27 18:41:09", "", "15078", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/07/Poster-PCTT-Oct-14-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15083", "6", "2017-07-27 12:46:04", "2017-07-27 19:46:04", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Marriage Preparation for all ages, Saturday, February 10, 2018; Facilitators: Bill Cole and Glenda Pryce \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Marriage Preparation Workshop </a></strong>(Saturday, February 10, 2018).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-07-27 12:46:04", "2017-07-27 19:46:04", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15085", "6", "2017-07-28 14:57:30", "2017-07-28 21:57:30", "[gravityform id=\"11\" title=\"true\" description=\"true\"]", "Annual Membership Application", "", "inherit", "closed", "closed", "", "14323-autosave-v1", "", "", "2017-07-28 14:57:30", "2017-07-28 21:57:30", "", "14323", "http://localhost:8888/TestSICPage/wordpress/14323-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15087", "6", "2017-07-28 15:31:10", "2017-07-28 22:31:10", "", "Past posts (only for background operation)", "", "private", "closed", "closed", "", "past-posts-only-for-background-operation", "", "", "2017-07-28 15:31:10", "2017-07-28 22:31:10", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=15087", "31", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15088", "6", "2017-07-28 15:31:10", "2017-07-28 22:31:10", "", "Past posts (only for background operation)", "", "inherit", "closed", "closed", "", "15087-revision-v1", "", "", "2017-07-28 15:31:10", "2017-07-28 22:31:10", "", "15087", "http://localhost:8888/TestSICPage/wordpress/15087-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15090", "6", "2017-07-28 17:24:17", "2017-07-29 00:24:17", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\"><img class=\"alignleft wp-image-14184 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\" alt=\"Picture Amber Eves Nov 2015\" width=\"155\" height=\"157\" /></a>\r\n\r\n<strong>Amber Eves MEd, RCC</strong>, <strong>Director of Services</strong>, hasÂ extensiveÂ experience as an educator and school and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-autosave-v1", "", "", "2017-07-28 17:24:17", "2017-07-29 00:24:17", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15091", "6", "2017-07-28 16:07:57", "2017-07-28 23:07:57", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\"><img class=\"alignleft wp-image-14184 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\" alt=\"Picture Amber Eves Nov 2015\" width=\"155\" height=\"157\" /></a>\r\n\r\n<strong>Amber Eves MEd, RCC</strong>, <strong>Director of Services</strong>, hasÂ extensiveÂ experience as an educator and school and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.\r\n\r\n&nbsp;", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2017-07-28 16:07:57", "2017-07-28 23:07:57", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15094", "6", "2017-07-28 16:17:20", "2017-07-28 23:17:20", "[vc_row][vc_column][vc_column_text]<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\"><img class=\"alignleft wp-image-14184 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\" alt=\"Picture Amber Eves Nov 2015\" width=\"155\" height=\"157\" /></a>\r\n\r\n<strong>Amber Eves MEd, RCC</strong>, <strong>Director of Services</strong>, hasÂ extensiveÂ experience as an educator and school and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2017-07-28 16:17:20", "2017-07-28 23:17:20", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15096", "6", "2017-07-28 16:26:44", "2017-07-28 23:26:44", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"></span><span style=\"color: #000000;\"> (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie (Volunteer Counsellor)</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Peter Simmons (Volunteer Counsellor)\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/peter-simmons-ba-mdiv/\" target=\"_blank\"><span style=\"color: #000000;\">Peter Simmons</span></a></span>Â (Volunteer Counsellor)</strong>: Anxiety, Stress, Self-Esteem, Depression, Vocational Life Transitions\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2017-07-28 16:26:44", "2017-07-28 23:26:44", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15097", "6", "2017-07-28 18:11:43", "2017-07-29 01:11:43", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\"><img class=\"alignleft wp-image-695 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\" alt=\"margaret_anderson_150w\" width=\"150\" height=\"225\" /></a>\n\n<strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaretâ€™sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;", "Margaret Anderson", "", "inherit", "closed", "closed", "", "44-autosave-v1", "", "", "2017-07-28 18:11:43", "2017-07-29 01:11:43", "", "44", "http://localhost:8888/TestSICPage/wordpress/44-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15098", "6", "2017-07-28 16:29:13", "2017-07-28 23:29:13", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/?p=13952\"> Amber Eves</a> (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Margaret McKinnon Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/margaret-mckinnon-anderson/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Margaret (McKinnon) Anderson</strong></span></a></span>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie (Volunteer Counsellor)</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Peter Simmons (Volunteer Counsellor)\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/peter-simmons-ba-mdiv/\" target=\"_blank\"><span style=\"color: #000000;\">Peter Simmons</span></a></span>Â (Volunteer Counsellor)</strong>: Anxiety, Stress, Self-Esteem, Depression, Vocational Life Transitions\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2017-07-28 16:29:13", "2017-07-28 23:29:13", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15099", "6", "2017-07-28 16:29:40", "2017-07-28 23:29:40", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\"><img class=\"alignleft wp-image-695 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2014/03/margaret_anderson_150w.jpg\" alt=\"margaret_anderson_150w\" width=\"150\" height=\"225\" /></a>\r\n\r\n<strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaretâ€™sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Margaret Anderson", "", "inherit", "closed", "closed", "", "44-revision-v1", "", "", "2017-07-28 16:29:40", "2017-07-28 23:29:40", "", "44", "http://localhost:8888/TestSICPage/wordpress/44-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15101", "6", "2017-07-28 17:23:46", "2017-07-29 00:23:46", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\"><img class=\"alignleft wp-image-14184 size-full\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2015/11/Picture-Amber-Eves-Nov-2015.png\" alt=\"Picture Amber Eves Nov 2015\" width=\"155\" height=\"157\" /></a>\r\n\r\n<strong>Amber Eves MEd, RCC</strong>, <strong>Director of Services</strong>, hasÂ extensiveÂ experience as an educator and school and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.", "Amber Eves", "", "inherit", "closed", "closed", "", "13952-revision-v1", "", "", "2017-07-28 17:23:46", "2017-07-29 00:23:46", "", "13952", "http://localhost:8888/TestSICPage/wordpress/13952-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15108", "6", "2017-07-28 18:12:34", "2017-07-29 01:12:34", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\n\n<strong><span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/?p=13952\"> Amber Eves</a> (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=44\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span></span></a>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\n\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\n\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie (Volunteer Counsellor)</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\n\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\n\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\n\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\n\n<strong><span style=\"color: #000000;\"><a title=\"Peter Simmons (Volunteer Counsellor)\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/peter-simmons-ba-mdiv/\" target=\"_blank\"><span style=\"color: #000000;\">Peter Simmons</span></a></span>Â (Volunteer Counsellor)</strong>: Anxiety, Stress, Self-Esteem, Depression, Vocational Life Transitions\n\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "inherit", "closed", "closed", "", "217-autosave-v1", "", "", "2017-07-28 18:12:34", "2017-07-29 01:12:34", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15109", "6", "2017-07-28 17:59:32", "2017-07-29 00:59:32", "Below is a list of our qualified and experienced counsellors (in alphabetical order) and their specialties. To access the individual counsellor\'s page, click on the counsellor\'s name.\r\n\r\n<strong><span style=\"color: #000000;\"><a href=\"http://localhost:8888/TestSICPage/wordpress/?p=13952\"> Amber Eves</a> (Director of Services):</span>Â </strong>Trauma, Abuse, Anxiety, Marital Counselling, Children and Youth Counselling\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=44\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><strong>Margaret Anderson</strong></span></span></a>: Grief\'s &amp; Loss, End-of-Life Care, Eldercare issue\r\n\r\n<span style=\"color: #000000;\"><a title=\"Counsellor Barbara Baillie\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/barbara-baillie/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Barbara Baillie</strong></span></a></span>: Spiritual Direction, Mid-Life Transition, Enneagram, Art Therapy\r\n\r\n<a title=\"Liz Beattie, counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors/liz-beattie/\" target=\"_blank\"><span style=\"color: #000000;\"><span style=\"color: #000000;\"><span style=\"text-decoration: underline;\"><strong>Liz Beattie (Volunteer Counsellor)</strong></span>:</span> </span></a>Depression, Anxiety, Stress, Sleep issues, Self-esteem, Life transitions\r\n\r\n<a title=\"Bill Cole, RCC\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/bill-cole/\" target=\"_blank\"><strong><span style=\"color: #000000;\">Bill Cole</span></strong></a><strong>:</strong>Â Family Systems, Couple and Family Counselling\r\n\r\n<span style=\"text-decoration: underline; color: #000000;\"><strong><a title=\"Audrey Gibson, volunteer counsellor\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/audrey-gibson-b-sc-ot-mdiv-sw/\" target=\"_blank\"><span style=\"color: #000000; text-decoration: underline;\">Audrey Gibson (Volunteer Counsellor)</span></a>:</strong></span>Â Life coaching, Anxiety, Depression\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Rosemary Merritt\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/rosemary-merritt/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Rosemary Merritt</strong></span></a>:</span>Â Self-Esteem, Anxiety, Restorative Justice\r\n\r\n<strong><span style=\"color: #000000;\"><a title=\"Peter Simmons (Volunteer Counsellor)\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/peter-simmons-ba-mdiv/\" target=\"_blank\"><span style=\"color: #000000;\">Peter Simmons</span></a></span>Â (Volunteer Counsellor)</strong>: Anxiety, Stress, Self-Esteem, Depression, Vocational Life Transitions\r\n\r\n<span style=\"color: #000000;\"><a title=\"Volunteer Counsellor Laurie Truant\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/counsellors-2/laurie-truant/\" target=\"_blank\"><span style=\"color: #000000;\"><strong>Laurie Truant</strong></span></a>:</span> Anxiety, Depression, Attachment theory, Couple\'s counselling", "Meet our Counsellors (alphabetical listing)", "", "inherit", "closed", "closed", "", "217-revision-v1", "", "", "2017-07-28 17:59:32", "2017-07-29 00:59:32", "", "217", "http://localhost:8888/TestSICPage/wordpress/217-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15113", "6", "2017-07-28 18:39:16", "2017-07-29 01:39:16", "<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.Â </h4><h4>Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.</h4><h4>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </h4><h4>Call the Centre directly for more information on these services.</h4>", "About Us", "", "publish", "closed", "closed", "", "about-us-2", "", "", "2018-05-08 17:03:17", "2018-05-09 00:03:17", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=15113", "8", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15114", "6", "2017-07-28 18:39:16", "2017-07-29 01:39:16", "", "About Us", "", "inherit", "closed", "closed", "", "15113-revision-v1", "", "", "2017-07-28 18:39:16", "2017-07-29 01:39:16", "", "15113", "http://localhost:8888/TestSICPage/wordpress/15113-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15116", "6", "2017-07-28 18:48:51", "2017-07-29 01:48:51", "<strong>Jim Gibson (Chair)</strong>\r\n\r\n<strong>Barbara Underhill (Vice-Chair, Treasurer) </strong>Barbara has supported the centre since 2007 in a variety of roles. She has anÂ MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.\r\n\r\n<strong>Sally Tuckey (Secretary) </strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. Â Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.Â Her interests are many â€“ but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.\r\n<p class=\"m_1365218334819752912p3\" style=\"color: #222222;\"><strong>Sybil Bagshaw </strong><span class=\"m_1365218334819752912s1\">SybilÂ worked as an RN until herÂ retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \"Mother\'s of Preschoolers\" at St Pauls Anglican Church in Fort Garry. Â SybilÂ was one of the founding members the Fort Garry Family Life program and was their treasurer for severalÂ years.<span class=\"m_1365218334819752912Apple-converted-space\">Â </span>Â She alsoÂ  was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for theÂ community club andÂ for the Kidney and Cancer foundations both in WinnipegÂ and in Victoria.Â </span></p>\r\n<p class=\"m_1365218334819752912p3\" style=\"color: #222222;\"><strong>Greg Beattie </strong><span style=\"color: #333333;\">Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nationâ€™s mental health services. He has 20 yearsâ€™ experience as a clinical supervisor, 15 yearsâ€™ experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. Â </span><span style=\"color: #333333;\">Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.</span></p>\r\n<strong>Helen Morrison </strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.", "Board of Directors ", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2017-07-28 18:48:51", "2017-07-29 01:48:51", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15117", "6", "2017-07-28 18:50:31", "2017-07-29 01:50:31", "", "Counselling", "", "publish", "closed", "closed", "", "counselling-2", "", "", "2017-07-28 18:53:15", "2017-07-29 01:53:15", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=15117", "9", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15118", "6", "2017-07-28 18:50:31", "2017-07-29 01:50:31", "", "Counselling", "", "inherit", "closed", "closed", "", "15117-revision-v1", "", "", "2017-07-28 18:50:31", "2017-07-29 01:50:31", "", "15117", "http://localhost:8888/TestSICPage/wordpress/15117-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15119", "6", "2017-07-28 18:55:19", "2017-07-29 01:55:19", "<h2><span style=\"color: #000000;\">Our counsellors can help!</span></h2>\r\nSouth Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:\r\n<ul>\r\n	<li>grief, loss and life-transitions;</li>\r\n	<li>traumaÂ or distress;</li>\r\n	<li>depression;</li>\r\n	<li>eldercare issues;</li>\r\n	<li>caregiver support and education;</li>\r\n	<li>relational conflict;</li>\r\n	<li>self-esteem issues;</li>\r\n	<li>emotional, sexual and physical abuse;</li>\r\n	<li>issues related to faith and spirituality;</li>\r\n	<li>addictions (substance abuse, gambling, pornography);</li>\r\n	<li>understanding family systems;</li>\r\n	<li>marriage preparation;</li>\r\n	<li>marital conflict</li>\r\n</ul>\r\n<span style=\"line-height: 1.5;\">....and more.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\"><strong>Affordable Counselling Services</strong></span></h3>\r\nAt South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.\r\n\r\n<strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <span style=\"color: #000000;\"><a title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to view our graduated fee scale whichÂ is based on your combined family income.\r\n\r\nTo <span style=\"color: #000000;\"><strong>book an initial appointment:</strong></span> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\">click here</a> to fill out a General Inquiry Contact Form.\r\n<h3></h3>", "Counselling (old)", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2017-07-28 18:55:19", "2017-07-29 01:55:19", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15121", "6", "2017-07-28 19:00:21", "2017-07-29 02:00:21", "", "Training", "", "publish", "closed", "closed", "", "training", "", "", "2017-07-28 19:11:42", "2017-07-29 02:11:42", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=15121", "10", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15122", "6", "2017-07-28 19:00:21", "2017-07-29 02:00:21", "", "Training", "", "inherit", "closed", "closed", "", "15121-revision-v1", "", "", "2017-07-28 19:00:21", "2017-07-29 02:00:21", "", "15121", "http://localhost:8888/TestSICPage/wordpress/15121-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15125", "3", "2017-08-01 11:12:34", "2017-08-01 18:12:34", "<h4>Addictions</h4>\r\n<span style=\"color: #333399;\"><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\"><span style=\"color: #333399;\">www.viha.ca/hmas/resources</span></a></span>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n<a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\">Drugrehab.com</a>\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n<a title=\"Single again club for Women Victoria BC\" href=\"http://https://www.meetup.com/Single-Again-Social-empowerment-after-break-up-divorce/\" target=\"_blank\">Single Again Club for Women, Victoria, BC</a>\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n<h4>Senior Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\">Victoria Pregnancy Centre (A Place of Hope)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n<h4>Marriage and Family</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a>\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n<h4>Abuse and Trauma</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n<span style=\"color: #000080;\"><a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\"><span style=\"color: #000080;\">Online Guide to Suicide Prevention (Wake Forest University)</span></a></span>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2017-08-01 11:12:34", "2017-08-01 18:12:34", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15129", "6", "2017-08-15 15:39:44", "2017-08-15 22:39:44", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 15:39:44", "2017-08-15 22:39:44", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15131", "6", "2017-08-15 15:55:19", "0000-00-00 00:00:00", "", "Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) ", "", "draft", "closed", "closed", "", "", "", "", "2017-08-15 15:55:19", "2017-08-15 22:55:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15131", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15133", "8", "2017-08-15 16:08:29", "2017-08-15 23:08:29", "<strong>Â <strong>Course Facilitator: Margaret Anderson</strong> </strong>\r\n\r\nPoster: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-1-Poster-Draft.pdf\">2017 Living With Loss Part 1 Poster Draft</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19â€”Nov. 23, 2017: 7pmâ€”9pm)", "", "publish", "closed", "closed", "", "living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm", "", "", "2017-09-14 16:26:40", "2017-09-14 23:26:40", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15133", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15136", "6", "2017-08-15 16:10:49", "2017-08-15 23:10:49", "", "2017 Living With Loss Part 1 Poster Draft", "", "inherit", "closed", "closed", "", "2017-living-with-loss-part-1-poster-draft", "", "", "2017-08-15 16:10:49", "2017-08-15 23:10:49", "", "15133", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-1-Poster-Draft.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15139", "6", "2017-08-15 16:28:46", "2017-08-15 23:28:46", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"&quot;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>( Oct. 19- Nov. 23, 2017).\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 16:28:46", "2017-08-15 23:28:46", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15140", "6", "2017-08-15 16:30:56", "2017-08-15 23:30:56", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"&quot;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 16:30:56", "2017-08-15 23:30:56", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15141", "6", "2017-08-15 16:32:40", "2017-08-15 23:32:40", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 16:32:40", "2017-08-15 23:32:40", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15142", "6", "2017-08-15 16:48:38", "2017-08-15 23:48:38", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"&quot;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 16:48:38", "2017-08-15 23:48:38", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15143", "6", "2017-08-15 16:51:12", "2017-08-15 23:51:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 16:51:12", "2017-08-15 23:51:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15144", "6", "2017-08-15 16:52:28", "2017-08-15 23:52:28", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4>Current Training On Offer</h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 16:52:28", "2017-08-15 23:52:28", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15145", "6", "2017-08-15 16:55:57", "2017-08-15 23:55:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.\r\n\r\n<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>Current Training On Offer</strong>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][dt_gap height=\"20\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 16:55:57", "2017-08-15 23:55:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15146", "6", "2017-08-15 17:07:24", "2017-08-16 00:07:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Contact Us:</h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>Current Training On Offer</strong>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4>Annual Fundraising Gala 2017</h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 17:07:24", "2017-08-16 00:07:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15147", "8", "2017-08-15 17:31:27", "2017-08-16 00:31:27", "Poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-may-26-2018/bowen-short-course-april-2018/\" rel=\"attachment wp-att-15368\">Bowen Short Course April 2018</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Me And My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics (Friday Night April 27 & Saturday, April 28, 2018)", "", "publish", "closed", "closed", "", "me-and-my-family-an-introduction-an-introduction-to-bowen-family-systems-thinking-and-family-dynamics-friday-night-april-27-saturday-april-28-2018", "", "", "2018-02-15 12:41:20", "2018-02-15 20:41:20", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15147", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15148", "6", "2017-08-15 17:19:55", "2017-08-16 00:19:55", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>Current Training On Offer</strong>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 17:19:55", "2017-08-16 00:19:55", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15149", "6", "2017-08-15 17:21:44", "2017-08-16 00:21:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"50\"][vc_column_text]<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>Current Training On Offer</strong>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][dt_gap height=\"40\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 17:21:44", "2017-08-16 00:21:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15150", "6", "2017-08-15 17:23:26", "2017-08-16 00:23:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]<strong>Our History</strong>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"70\"][vc_column_text]<strong>Our Mission</strong>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>What We Do</strong>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]<strong>Current Training On Offer</strong>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][dt_gap height=\"40\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 17:23:26", "2017-08-16 00:23:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15152", "6", "2017-08-15 17:36:25", "2017-08-16 00:36:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.[/vc_column_text][dt_gap height=\"40\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 17:36:25", "2017-08-16 00:36:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15153", "6", "2017-08-15 17:39:59", "2017-08-16 00:39:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<strong><a title=\" ME AND MY PERSONALITY: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"&quot;\"> An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 17:39:59", "2017-08-16 00:39:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15155", "6", "2017-08-15 17:47:57", "2017-08-16 00:47:57", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" ME AND MY PERSONALITY (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \"> An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a>[/vc_column_text][vc_column_text]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" ME AND MY PERSONALITY: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \"> An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 17:47:57", "2017-08-16 00:47:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15156", "6", "2017-08-15 17:50:58", "2017-08-16 00:50:58", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" ME AND MY PERSONALITY (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \"> An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 17:50:58", "2017-08-16 00:50:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15157", "6", "2017-08-15 17:51:25", "2017-08-16 00:51:25", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\n<a title=\" ME AND MY PERSONALITY: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"&quot;\"> An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a>(Saturday, October 28, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 17:51:25", "2017-08-16 00:51:25", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15158", "6", "2017-08-15 17:54:05", "2017-08-16 00:54:05", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\n<strong><a title=\" ME AND MY PERSONALITY: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \"> An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>(Saturday, October 28, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 17:54:05", "2017-08-16 00:54:05", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15159", "6", "2017-08-15 17:59:25", "2017-08-16 00:59:25", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\n<strong><a title=\" ME AND MY PERSONALITY: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"> An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>(Saturday, October 28, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 17:59:25", "2017-08-16 00:59:25", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15160", "6", "2017-08-15 18:01:35", "2017-08-16 01:01:35", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\n<strong><a title=\"ME AND MY PERSONALITY: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">ME AND MY PERSONALITY: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>(Saturday, October 28, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 18:01:35", "2017-08-16 01:01:35", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15161", "6", "2017-08-15 18:04:37", "2017-08-16 01:04:37", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" ME AND MY PERSONALITY: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">ME AND MY PERSONALITY </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 18:04:37", "2017-08-16 01:04:37", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15162", "6", "2017-08-15 18:37:25", "2017-08-16 01:37:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-15 18:37:25", "2017-08-16 01:37:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15163", "6", "2017-08-15 18:40:19", "2017-08-16 01:40:19", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-21-25-2017/\" target=\"_blank\">Family Systems Intensive</a></strong> (Monday-Friday, August 21-25, 2017).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>(Saturday, October 28, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-15 18:40:19", "2017-08-16 01:40:19", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15167", "3", "2017-08-24 11:13:32", "2017-08-24 18:13:32", "<a href=\"http://localhost:8888/TestSICPage/wordpress/calendar-2/young-adult-group-fall-2017/\" rel=\"attachment wp-att-15166\">Young Adult Group Fall 2017</a>", "Calendar", "", "inherit", "closed", "closed", "", "15061-autosave-v1", "", "", "2017-08-24 11:13:32", "2017-08-24 18:13:32", "", "15061", "http://localhost:8888/TestSICPage/wordpress/15061-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15168", "3", "2017-08-24 11:16:00", "0000-00-00 00:00:00", "", "Support Group for Young Adults with Anxiety", "", "draft", "closed", "closed", "", "", "", "", "2017-08-24 11:16:00", "2017-08-24 18:16:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15168", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15169", "3", "2017-08-24 11:22:56", "2017-08-24 18:22:56", "", "Young Adult Group Fall 2017", "", "inherit", "closed", "closed", "", "young-adult-group-fall-2017-2", "", "", "2017-08-24 11:22:56", "2017-08-24 18:22:56", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Young-Adult-Group-Fall-2017.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("15171", "3", "2017-08-24 11:38:24", "2017-08-24 18:38:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-24 11:38:24", "2017-08-24 18:38:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15172", "3", "2017-08-24 11:42:36", "2017-08-24 18:42:36", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.\r\n\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-24 11:42:36", "2017-08-24 18:42:36", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15173", "3", "2017-08-24 11:42:56", "2017-08-24 18:42:56", "<p>[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n<p>[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</p>\r\n<h4><strong>Our History</strong></h4>\r\n<p>South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.</p>\r\n<p>We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</p>\r\n<h4><strong>Our Mission</strong></h4>\r\n<p>South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</p>\r\n<h4><strong>What We Do</strong></h4>\r\n<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.</p>\r\n<p>Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.</p>\r\n<p>We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.</p>\r\n<p>For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</p>\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]</p>\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<p><a title=\"Family Systems Intensive Aug 21-25, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\" target=\"_blank\">Family Systems Intensive</a> (Monday-Friday, August 21-25, 2017). Please submit your registration no later than Wed, August 16th.</p>\r\n<p><a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.</p>\r\n<p><a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.</p>\r\n<p><a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.</p>\r\n<p><a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]</p>\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\n<p>Save the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]</p>\r\n<h2><strong>Our Supporters</strong></h2>\r\n<p>[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>The Province of British Columbia</h4>\r\n<p>\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n<p>\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</p>\r\n<h4>United Way of Greater Victoria</h4>\r\n<p>\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n<p>\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</p>\r\n<h4>Coast Capital Savings</h4>\r\n<p>\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"</p>\r\n<h4>City of Victoria</h4>\r\n<p>\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"</p>\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n<p>\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]</p>\r\n", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-24 11:42:56", "2017-08-24 18:42:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15174", "6", "2017-08-31 20:51:12", "0000-00-00 00:00:00", "", "Are You Struggling with Stress or Anxiety? Join our Support Group for Young Adults (19-24)", "", "draft", "closed", "closed", "", "", "", "", "2017-08-31 20:51:12", "2017-09-01 03:51:12", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15174", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15175", "8", "2017-08-31 21:52:50", "2017-09-01 04:52:50", "See course details on poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/15175/stress-and-anxiety-support-group-march-2018/\" rel=\"attachment wp-att-15389\">Stress and Anxiety Support Group March 2018</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Support Group for Stress and Anxiety (Thursdays, March 29 - April 19, 2018: 6:30-8:00pm)", "", "publish", "closed", "closed", "", "support-group-for-stress-and-anxiety-thursdays-march-29-april-19-2018", "", "", "2018-03-05 12:54:23", "2018-03-05 20:54:23", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15175", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15176", "6", "2017-08-31 23:16:12", "2017-09-01 06:16:12", "", "Young Adult Group Fall 2017", "", "inherit", "closed", "closed", "", "young-adult-group-fall-2017", "", "", "2017-08-31 23:16:12", "2017-09-01 06:16:12", "", "15175", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Young-Adult-Group-Fall-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15177", "6", "2017-08-31 23:36:34", "2017-09-01 06:36:34", "See course details on poster: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Young-Adult-Group-Fall-2017.pdf\">Young Adult Group Fall 2017</a>", "Are You Struggling with Stress or Anxiety? Join our Support Group for Young Adults (19-24) (", "", "inherit", "closed", "closed", "", "15175-autosave-v1", "", "", "2017-08-31 23:36:34", "2017-09-01 06:36:34", "", "15175", "http://localhost:8888/TestSICPage/wordpress/15175-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15179", "6", "2017-08-31 23:46:45", "2017-09-01 06:46:45", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Are You Struggling with Stress or Anxiety? Join our Support Group for Young Adults (19-24) Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Are You Struggling with Stress or Anxiety?</a></strong> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm).\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>(Saturday, October 28, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-08-31 23:46:45", "2017-09-01 06:46:45", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15180", "6", "2017-08-31 23:50:20", "2017-09-01 06:50:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<strong><a title=\"Are You Struggling with Stress or Anxiety? Join our Support Group for Young Adults (19-24) Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Are You Struggling with Stress or Anxiety?</a></strong> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-08-31 23:50:20", "2017-09-01 06:50:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15181", "6", "2017-09-01 12:23:41", "2017-09-01 19:23:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 10th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-01 12:23:41", "2017-09-01 19:23:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15182", "6", "2017-09-01 12:31:41", "2017-09-01 19:31:41", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>(Saturday, October 28, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-09-01 12:31:41", "2017-09-01 19:31:41", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15186", "6", "2017-09-06 12:17:29", "2017-09-06 19:17:29", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-06 12:17:29", "2017-09-06 19:17:29", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15187", "6", "2017-09-06 12:27:02", "2017-09-06 19:27:02", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\"]Gala[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-06 12:27:02", "2017-09-06 19:27:02", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15188", "6", "2017-09-06 12:29:48", "2017-09-06 19:29:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Watch this space for details.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-06 12:29:48", "2017-09-06 19:29:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15190", "3", "2017-09-12 13:38:20", "2017-09-12 20:38:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Click here for further details. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-12 13:38:20", "2017-09-12 20:38:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15191", "3", "2017-09-12 13:41:20", "2017-09-12 20:41:20", "", "Gala poster", "", "inherit", "closed", "closed", "", "gala-poster", "", "", "2017-09-12 13:41:20", "2017-09-12 20:41:20", "", "15195", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Gala-poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15193", "6", "2017-09-12 14:54:09", "2017-09-12 21:54:09", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\"]42nd Anniversary Fundraising Gala[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Click here for further details. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-12 14:54:09", "2017-09-12 21:54:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15194", "6", "2017-09-12 15:01:14", "2017-09-12 22:01:14", "South Island Centre for Counselling and Training turns <strong>42</strong> this year, and to celebrate we\'re hosting a very special anniversary Fundraising Gala at theÂ <strong>Hotel Grand Pacific in the Vancouver Island Ballroom onÂ Saturday October 17, 2015 from 6-10pm.Â </strong>\n\nPlease join us for an entertaining eveningÂ <strong>MC\'d by Jack Knox</strong>Â with special musical guestsÂ <strong>Ian McDougall and friends (</strong>click <a title=\"Ian McDougall Oct 17, 2015\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14130\" target=\"_blank\">here</a>Â for a picture).\n\n<strong>Tickets are $75.00 </strong>per person and include a buffet supper, live music (jazz from the 30\'s and 40\'s), dancing, a silent auction, door prizes and more.<strong>Â Â </strong>Complimentary underground parking at the Hotel Grand Pacific is also included, and cash bars will be offered.\n\nSpecial room rates are alsoÂ available forÂ Oct. 17Â on a first-come, first serve basis.Â (<em>Rooms are limited, so book fast if you want to reserve one [please quoteÂ </em><strong>OCT15SOUT</strong>]). Please fill out the form below toÂ let us know that you\'ve boughtÂ tickets;Â click <a title=\"Gala fundraiser eventbrite Oct 2015\" href=\"http://http://www.eventbrite.ca/e/south-island-centre-for-counsellings-40th-anniversary-fundraising-gala-tickets-18418594512\" target=\"_blank\">Eventbrite</a>Â to purchase tickets directly.\n\n&nbsp;\n\n<strong>[gravityform id=\"9\" title=\"true\" description=\"true\"]</strong>", "40th Anniversary Gala event (Saturday, October 17)", "", "inherit", "closed", "closed", "", "14118-autosave-v1", "", "", "2017-09-12 15:01:14", "2017-09-12 22:01:14", "", "14118", "http://localhost:8888/TestSICPage/wordpress/14118-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15195", "8", "2017-09-12 15:57:10", "2017-09-12 22:57:10", "For more information:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/gala-poster-1/\" rel=\"attachment wp-att-15228\">Gala poster 1</a>", "42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)", "", "publish", "closed", "closed", "", "42nd-anniversary-fundraising-gala-saturday-oct-21-2017", "", "", "2017-10-03 10:53:31", "2017-10-03 17:53:31", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15195", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15196", "6", "2017-09-12 16:02:53", "2017-09-12 23:02:53", "For more information: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Gala-poster.pdf\">Gala poster</a>", "42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)", "", "inherit", "closed", "closed", "", "15195-autosave-v1", "", "", "2017-09-12 16:02:53", "2017-09-12 23:02:53", "", "15195", "http://localhost:8888/TestSICPage/wordpress/15195-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15198", "6", "2017-09-12 16:43:11", "2017-09-12 23:43:11", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/?p=15197\"]42nd Anniversary Fundraising Gala! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Click here for further details. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-12 16:43:11", "2017-09-12 23:43:11", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15200", "6", "2017-09-12 16:51:43", "2017-09-12 23:51:43", "", "banner background-1", "", "inherit", "closed", "closed", "", "banner-background-1", "", "", "2017-09-12 16:51:43", "2017-09-12 23:51:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15201", "6", "2017-09-12 16:52:02", "2017-09-12 23:52:02", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#000000\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"normal\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]42nd Anniversary Fundraising Gala! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Click here for further details. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-12 16:52:02", "2017-09-12 23:52:02", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15202", "6", "2017-09-12 17:00:20", "2017-09-13 00:00:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#ffffff\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]42nd Anniversary Fundraising Gala! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Click here for further details. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-12 17:00:20", "2017-09-13 00:00:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15203", "6", "2017-09-12 17:01:33", "2017-09-13 00:01:33", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]42nd Anniversary Fundraising Gala! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Click here for further details. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-12 17:01:33", "2017-09-13 00:01:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15205", "3", "2017-09-13 10:18:32", "2017-09-13 17:18:32", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Click here for further details. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-13 10:18:32", "2017-09-13 17:18:32", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15206", "3", "2017-09-13 10:19:47", "2017-09-13 17:19:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tues, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thurs, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-13 10:19:47", "2017-09-13 17:19:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15207", "3", "2017-09-13 10:23:45", "0000-00-00 00:00:00", "", "Making It Work for Teens!", "", "draft", "closed", "closed", "", "", "", "", "2017-09-13 10:23:45", "2017-09-13 17:23:45", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15207", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15209", "6", "2017-09-14 00:03:17", "2017-09-14 07:03:17", "Poster:<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Poster-Teen-summer-support-grp-fall-2017_rev1.pdf\">Teen summer support group 2017</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Making It Work for Teens! ï¼ˆSaturdays, Oct.21-Nov.4, 2017)", "", "publish", "closed", "closed", "", "making-it-work-for-teens-%ef%bc%883-sessions-saturdays-oct-14-nov-4-2017", "", "", "2017-09-14 17:26:28", "2017-09-15 00:26:28", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=15209", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15210", "6", "2017-09-14 17:05:57", "2017-09-15 00:05:57", "Poster:<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Poster-Teen-summer-support-grp-fall-2017_rev1.pdf\">Teen summer support group 2017</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Making It Work for Teens! ï¼ˆSaturdays, Oct.21-Nov.4, 2017)", "", "inherit", "closed", "closed", "", "15209-autosave-v1", "", "", "2017-09-14 17:05:57", "2017-09-15 00:05:57", "", "15209", "http://localhost:8888/TestSICPage/wordpress/15209-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15211", "6", "2017-09-14 00:06:17", "2017-09-14 07:06:17", "", "Poster Teen summer support grp fall 2017_rev1", "", "inherit", "closed", "closed", "", "poster-teen-summer-support-grp-fall-2017_rev1", "", "", "2017-09-14 00:06:17", "2017-09-14 07:06:17", "", "15209", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Poster-Teen-summer-support-grp-fall-2017_rev1.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15214", "6", "2017-09-14 16:44:45", "2017-09-14 23:44:45", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Here\'s whats on offer now:\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong> (Thursdays, Sept 21, 28; Oct 5, 12 2017).\r\n\r\n<strong><a title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm).\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>(Saturday, October 14, 2017).\r\n\r\n<strong><a title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>(Thursdays Oct. 19- Nov. 23, 2017).\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>(Saturday, October 28, 2017).\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-09-14 16:44:45", "2017-09-14 23:44:45", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15215", "8", "2017-09-14 16:59:56", "2017-09-14 23:59:56", "<strong>Â <strong>Course Facilitator: Margaret Anderson</strong> </strong>\r\n\r\nPoster: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-1-Poster-Draft.pdf\">2017 Living With Loss Part 1 Poster Draft</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19â€”Nov. 23, 2017: 7pmâ€”9pm)", "", "publish", "closed", "closed", "", "living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-oct-19-nov-23-2017-7pm-9pm", "", "", "2017-09-14 16:59:56", "2017-09-14 23:59:56", "", "15133", "http://localhost:8888/TestSICPage/wordpress/event/living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-oct-19-nov-23-2017-7pm-9pm/", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15216", "6", "2017-09-14 17:00:30", "2017-09-15 00:00:30", "<strong>Â <strong>Course Facilitator: Margaret Anderson</strong> </strong>\r\n\r\nPoster: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-1-Poster-Draft.pdf\">2017 Living With Loss Part 1 Poster Draft</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19â€”Nov. 23, 2017: 7pmâ€”9pm)", "", "inherit", "closed", "closed", "", "15215-autosave-v1", "", "", "2017-09-14 17:00:30", "2017-09-15 00:00:30", "", "15215", "http://localhost:8888/TestSICPage/wordpress/15215-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15217", "6", "2017-09-14 17:00:56", "2017-09-15 00:00:56", "Poster:<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Poster-Teen-summer-support-grp-fall-2017_rev1.pdf\">Teen summer support group 2017</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Making It Work for Teens! ï¼ˆSaturdays, Oct.14 -Nov.4, 2017)", "", "publish", "closed", "closed", "", "making-it-work-for-teens-%ef%bc%88saturdays-oct-14-nov-4-2017", "", "", "2017-09-14 17:00:56", "2017-09-15 00:00:56", "", "15209", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-for-teens-%ef%bc%88saturdays-oct-14-nov-4-2017/", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15218", "6", "2018-01-08 15:13:26", "2018-01-08 23:13:26", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-autosave-v1", "", "", "2018-01-08 15:13:26", "2018-01-08 23:13:26", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15219", "6", "2017-09-14 17:32:11", "2017-09-15 00:32:11", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays Sep.26-Nov.21, 2017: 6:30-8:30pm). Please submit your registration no later than Tuesday, September 19th, 2017,\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).Please submit your registration no later than Saturday,October 14th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tuesday, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thursday, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-14 17:32:11", "2017-09-15 00:32:11", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15221", "3", "2018-03-05 12:48:42", "2018-03-05 20:48:42", "See course details on poster:\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Support Group for Stress and Anxiety (Thursdays, March 29 - April 19, 2018: 6:30-8:00pm)", "", "inherit", "closed", "closed", "", "15175-autosave-v1", "", "", "2018-03-05 12:48:42", "2018-03-05 20:48:42", "", "15175", "http://localhost:8888/TestSICPage/wordpress/15175-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15222", "3", "2017-09-26 10:43:11", "2017-09-26 17:43:11", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm). Please submit your registration no later than Wednesday, October 4th, 2017,\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).Please submit your registration no later than Saturday,October 14th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tuesday, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thursday, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Tickets are $95 and can be purchased by calling our office at 250-472-3851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-09-26 10:43:11", "2017-09-26 17:43:11", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15223", "3", "2017-09-26 10:49:47", "2017-09-26 17:49:47", "", "Poster Teen summer support grp fall 2017", "", "inherit", "closed", "closed", "", "poster-teen-summer-support-grp-fall-2017", "", "", "2017-09-26 10:49:47", "2017-09-26 17:49:47", "", "15175", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Poster-Teen-summer-support-grp-fall-2017.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("15224", "3", "2017-09-26 10:59:37", "2017-09-26 17:59:37", "", "Young Adult Group Fall 2017", "", "inherit", "closed", "closed", "", "young-adult-group-fall-2017-3", "", "", "2017-09-26 10:59:37", "2017-09-26 17:59:37", "", "15175", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Young-Adult-Group-Fall-2017.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("15226", "3", "2017-10-03 10:37:20", "2017-10-03 17:37:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Positive Psychology Group (Thursdays, September 21, 28; October 5, 12, 2017); Facilitators: Dr. Vibeke Vaerum, PhD\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group </a>(Thursdays, September 21, 28; October 5, 12, 2017). Please submit your registration no later than Friday, September 15th, 2017.\r\n\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm). Please submit your registration no later than Wednesday, October 4th, 2017,\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).Please submit your registration no later than Saturday,October 14th, 2017.\r\n\r\n<a title=\"Pastoral Care Team Training Workshop (Saturday, October 14, 2017); Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a>(Saturday, October 14, 2017). Please submit your registration no later than Tuesday, October 10, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thursday, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Tickets are $95 and can be purchased by calling our office at 250-472-2851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-10-03 10:37:20", "2017-10-03 17:37:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15227", "3", "2017-10-03 10:52:22", "2017-10-03 17:52:22", "For more information: <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Gala-poster.pdf\">Gala poster</a>\n\n&nbsp;", "42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)", "", "inherit", "closed", "closed", "", "15195-autosave-v1", "", "", "2017-10-03 10:52:22", "2017-10-03 17:52:22", "", "15195", "http://localhost:8888/TestSICPage/wordpress/15195-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15228", "3", "2017-10-03 10:53:02", "2017-10-03 17:53:02", "", "Gala poster 1", "", "inherit", "closed", "closed", "", "gala-poster-1", "", "", "2017-10-03 10:53:02", "2017-10-03 17:53:02", "", "15195", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Gala-poster-1.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15231", "3", "2017-10-10 17:47:21", "2017-10-11 00:47:21", "<strong>Amber Eves MEd, RCC</strong>, Director of Services, hasÂ extensiveÂ experience as an educator and school and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.\r\n\r\n<strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.\r\n\r\n<strong>Barbara Baillie MAPPC, BCATR</strong>, holdsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.\r\n\r\n<strong>Bill Cole MA, RCC</strong>, works with individuals, couples, and families around a variety of issues. An experienced facilitator, he also teaches family systems theory, marriage preparation, pastoral counselling and pastoral care team training.\r\n\r\n<strong>Jennifer Cole MA, CCC</strong>,received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counseling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.\r\n\r\n<strong>Audrey Gibson BSc, OT, MDiv, SW</strong>, holdsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.\r\n\r\n<strong>Joy GillettÂ MPH, RCC</strong>, is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.\r\n\r\n<strong>Rosemary Merritt Â MEd, MPE, RCC</strong>, focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.\r\n\r\n<strong>Peter Simmons BA, MDiv,</strong> received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.\r\n\r\n<strong>Laurie Truant, MA, RCC</strong>, specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.\r\n\r\n&nbsp;", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-10-10 17:47:21", "2017-10-11 00:47:21", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15232", "3", "2017-10-10 17:48:37", "2017-10-11 00:48:37", "<strong>Amber Eves MEd, RCC</strong>, Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.\r\n\r\n<strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.\r\n\r\n<strong>Barbara Baillie MAPPC, BCATR</strong>, holdsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.\r\n\r\n<strong>Bill Cole MA, RCC</strong>, works with individuals, couples, and families around a variety of issues. An experienced facilitator, he also teaches family systems theory, marriage preparation, pastoral counselling and pastoral care team training.\r\n\r\n<strong>Jennifer Cole MA, CCC</strong>,received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counseling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.\r\n\r\n<strong>Audrey Gibson BSc, OT, MDiv, SW</strong>, holdsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.\r\n\r\n<strong>Joy GillettÂ MPH, RCC</strong>, is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.\r\n\r\n<strong>Rosemary Merritt Â MEd, MPE, RCC</strong>, focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.\r\n\r\n<strong>Peter Simmons BA, MDiv,</strong> received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.\r\n\r\n<strong>Laurie Truant, MA, RCC</strong>, specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.\r\n\r\n&nbsp;", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2017-10-10 17:48:37", "2017-10-11 00:48:37", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15233", "3", "2017-10-16 13:23:35", "2017-10-16 20:23:35", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm). Please submit your registration no later than Wednesday, October 4th, 2017,\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).Please submit your registration no later than Saturday,October 14th, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thursday, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Tickets are $95 and can be purchased by calling our office at 250-472-2851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-10-16 13:23:35", "2017-10-16 20:23:35", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15234", "3", "2017-10-16 13:31:34", "2017-10-16 20:31:34", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Manager of Development &amp; Communications</strong>\r\n\r\nThe South Island Centre has an opening for a Manager of Development &amp; Communications. This individual will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and public relations. Closing date for applications is November 6, 2017. Click here for further information.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm). Please submit your registration no later than Wednesday, October 4th, 2017,\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).Please submit your registration no later than Saturday,October 14th, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thursday, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Tickets are $95 and can be purchased by calling our office at 250-472-2851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-10-16 13:31:34", "2017-10-16 20:31:34", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15236", "3", "2017-10-16 13:39:53", "2017-10-16 20:39:53", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Manager of Development &amp; Communications</strong></h4>\r\nThe South Island Centre has an opening for a Manager of Development and Communications. This individual will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and public relations. Closing date for applications is November 6, 2017. Click here <a href=\"http://localhost:8888/TestSICPage/wordpress/03-business/manager-of-development-and-communications/\" rel=\"attachment wp-att-15235\">Manager of Development and Communications</a> for further information.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm). Please submit your registration no later than Wednesday, October 4th, 2017,\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).Please submit your registration no later than Saturday,October 14th, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thursday, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Tickets are $95 and can be purchased by calling our office at 250-472-2851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-10-16 13:39:53", "2017-10-16 20:39:53", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15237", "3", "2017-10-16 14:04:16", "2017-10-16 21:04:16", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We hope to see you at our 42nd Anniversary Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe! Please <a title=\"42nd Anniversary Fundraising Gala (Saturday, Oct.21, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/42nd-anniversary-fundraising-gala-saturday-oct-21-2017/\">click here</a> for more information.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Job Posting: Manager of Development &amp; Communications</strong></h4>\r\nThe South Island Centre has an opening for a Manager of Development and Communications. This individual will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and public relations. Closing date for applications is November 6, 2017. Click here <a href=\"http://localhost:8888/TestSICPage/wordpress/03-business/manager-of-development-and-communications/\" rel=\"attachment wp-att-15235\">Manager of Development and Communications</a> for further information.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm). Please submit your registration no later than Wednesday, October 4th, 2017,\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).Please submit your registration no later than Saturday,October 14th, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thursday, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Annual Fundraising Gala 2017</strong></h4>\r\nSave the date! Our annual fundraising Gala will be held on Saturday, October 21, 2017 at the Delta Victoria Ocean Pointe Resort and Spa. Tickets are $95 and can be purchased by calling our office at 250-472-2851 ext. 101.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-10-16 14:04:16", "2017-10-16 21:04:16", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15239", "3", "2017-10-23 09:44:25", "2017-10-23 16:44:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Job Posting: Manager of Development &amp; Communications</strong></h4>\r\nThe South Island Centre has an opening for a Manager of Development and Communications. This individual will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and public relations. Closing date for applications is November 6, 2017. Click here <a href=\"http://localhost:8888/TestSICPage/wordpress/03-business/manager-of-development-and-communications/\" rel=\"attachment wp-att-15235\">Manager of Development and Communications</a> for further information.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm). Please submit your registration no later than Wednesday, October 4th, 2017,\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).Please submit your registration no later than Saturday,October 14th, 2017.\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).Please submit your registration no later than Thursday, Oct. 12, 2017.\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).Please submit your registration no later than Wednesday, Oct. 18, 2017.[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-10-23 09:44:25", "2017-10-23 16:44:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15240", "3", "2017-10-23 10:02:13", "2017-10-23 17:02:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Job Posting: Manager of Development &amp; Communications</strong></h4>\r\nThe South Island Centre has an opening for a Manager of Development and Communications. This individual will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and public relations. Closing date for applications is November 6, 2017. Click here <a href=\"http://localhost:8888/TestSICPage/wordpress/03-business/manager-of-development-and-communications/\" rel=\"attachment wp-att-15235\">Manager of Development and Communications</a> for further information.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm).\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-10-23 10:02:13", "2017-10-23 17:02:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15242", "3", "2017-11-08 11:21:59", "2017-11-08 19:21:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm).\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-11-08 11:21:59", "2017-11-08 19:21:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15243", "3", "2017-11-08 11:25:53", "2017-11-08 19:25:53", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need. Click here to listen to the night\'s keynote speaker Dr. Timothy Stockwell.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm).\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-11-08 11:25:53", "2017-11-08 19:25:53", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15244", "3", "2017-11-08 11:33:59", "2017-11-08 19:33:59", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training On Offer</strong></h4>\r\n<a title=\"Young Adults Support group for Anxiety\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a> (Tuesdays, Oct. 10 - Dec. 5, 2017: 6:30-8:30pm).\r\n\r\n<strong><a title=\"Making It Work for Teens!\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong> (Saturdays, Oct.14 -Nov.4, 2017: 1:30â€“ 4:30pm).\r\n\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).\r\n\r\n<a title=\" Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, October 28, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147 \">Me And My Personality </a>(Saturday, October 28, 2017).[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-11-08 11:33:59", "2017-11-08 19:33:59", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15245", "8", "2017-11-08 13:22:55", "2017-11-08 21:22:55", "<strong>One client\'s story about how SICCT helped him</strong>\r\n\r\nWhen your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.\r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.\r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.\r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind - a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.\r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.", "Client Testimonial", "", "publish", "closed", "closed", "", "client-testimonial", "", "", "2017-11-10 00:42:54", "2017-11-10 08:42:54", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?page_id=15245", "6", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15246", "3", "2017-11-08 12:59:46", "2017-11-08 20:59:46", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the \r\ndarkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She \r\nencouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like \r\nmillions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the \r\nphone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some \r\nreason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked \r\nmyself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on \r\nforgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that \r\nwould cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but the biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 12:59:46", "2017-11-08 20:59:46", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15247", "3", "2017-11-08 13:05:41", "2017-11-08 21:05:41", "", "Tyrone", "", "inherit", "closed", "closed", "", "tyrone", "", "", "2017-11-08 13:05:41", "2017-11-08 21:05:41", "", "15245", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/11/Tyrone.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("15248", "3", "2017-11-08 13:06:40", "2017-11-08 21:06:40", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the \r\ndarkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She \r\nencouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like \r\nmillions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the \r\nphone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some \r\nreason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked \r\nmyself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on \r\nforgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that \r\nwould cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=15247\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:06:40", "2017-11-08 21:06:40", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15249", "3", "2017-11-08 13:11:10", "2017-11-08 21:11:10", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She \r\nencouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like \r\nmillions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked \r\nmyself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on \r\nforgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that \r\nwould cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=15247\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:11:10", "2017-11-08 21:11:10", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15250", "3", "2017-11-08 13:12:50", "2017-11-08 21:12:50", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like \r\nmillions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked \r\nmyself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on \r\nforgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that \r\nwould cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=15247\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:12:50", "2017-11-08 21:12:50", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15251", "3", "2017-11-08 13:13:48", "2017-11-08 21:13:48", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked \r\nmyself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on \r\nforgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that \r\nwould cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=15247\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:13:48", "2017-11-08 21:13:48", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15252", "3", "2017-11-08 13:16:16", "2017-11-08 21:16:16", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on \r\nforgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that \r\nwould cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=15247\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:16:16", "2017-11-08 21:16:16", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15253", "3", "2017-11-08 13:19:36", "2017-11-08 21:19:36", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that \r\nwould cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=15247\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:19:36", "2017-11-08 21:19:36", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15254", "3", "2017-11-08 13:20:39", "2017-11-08 21:20:39", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that\r\nwould cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=15247\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:20:39", "2017-11-08 21:20:39", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15255", "3", "2017-11-08 13:21:36", "2017-11-08 21:21:36", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/?attachment_id=15247\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:21:36", "2017-11-08 21:21:36", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15256", "3", "2017-11-08 13:22:56", "2017-11-08 21:22:56", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light. \r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better. \r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been  given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in. \r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be.  My counsellor guided me through a visioning exercise to create a safe space in my mind  -  a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself. \r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself. \r\n", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-08 13:22:56", "2017-11-08 21:22:56", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15259", "9", "2017-11-09 09:38:22", "2017-11-09 17:38:22", "When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.\r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.\r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.\r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind - a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.\r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-09 09:38:22", "2017-11-09 17:38:22", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15261", "9", "2017-11-09 09:40:36", "2017-11-09 17:40:36", "<strong>One client\'s story about how SICCT helped him</strong>\r\n\r\nWhen your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. \'Take the dog for a walk\' or \'Go lose yourself in nature\' didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.\r\n\r\nThat light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.\r\n\r\nMy schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, \'well i guess you\'re stuck me with me\', in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.\r\n\r\nI had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.\r\n\r\nWe had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\n\r\nThe following months would be filled with reading and journal writing. \"I am\" and \"I deserve\" exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned \"void\". We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.\r\n\r\nWith much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a \"live fast die young\" mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind - a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.\r\n\r\nOne day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.\r\n\r\nMy experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.", "Client Testimonial", "", "inherit", "closed", "closed", "", "15245-revision-v1", "", "", "2017-11-09 09:40:36", "2017-11-09 17:40:36", "", "15245", "http://localhost:8888/TestSICPage/wordpress/15245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15264", "9", "2017-11-09 12:34:57", "2017-11-09 20:34:57", "<h4>Addictions</h4>\r\n<span style=\"color: #333399;\"><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\"><span style=\"color: #333399;\">www.viha.ca/hmas/resources</span></a></span>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n<a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\">Drugrehab.com</a>\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n<h4>Senior Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\">Victoria Pregnancy Centre (A Place of Hope)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n<h4>Marriage and Family</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a>\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n<a href=\"http://http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\">A Checklist for Parents with Children with Mental Health Problems</a>\r\n<h4>Abuse and Trauma</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n<span style=\"color: #000080;\"><a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\"><span style=\"color: #000080;\">Online Guide to Suicide Prevention (Wake Forest University)</span></a></span>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2017-11-09 12:34:57", "2017-11-09 20:34:57", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15265", "9", "2017-11-09 12:51:21", "2017-11-09 20:51:21", "<h4>Addictions</h4>\r\n<span style=\"color: #333399;\"><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\"><span style=\"color: #333399;\">www.viha.ca/hmas/resources</span></a></span>\r\n\r\n<a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a>\r\n\r\n<a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n<a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\">Drugrehab.com</a>\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n<h4>Senior Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n<a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\">Elderly Mental Health: How to Help Your Senior</a>\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\">Coping With the Loss of a Loved One</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\">Victoria Pregnancy Centre (A Place of Hope)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n<h4>Marriage and Family</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a>\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n<a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\">A Checklist for Parents with Children with Mental Health Problems</a>\r\n<h4>Abuse and Trauma</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n<span style=\"color: #000080;\"><a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\"><span style=\"color: #000080;\">Online Guide to Suicide Prevention (Wake Forest University)</span></a></span>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2017-11-09 12:51:21", "2017-11-09 20:51:21", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15267", "9", "2017-11-09 13:01:15", "2017-11-09 21:01:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n&lt;\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-11-09 13:01:15", "2017-11-09 21:01:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15268", "9", "2017-08-15 16:08:29", "2017-08-15 23:08:29", "<strong>Â <strong>Course Facilitator: Margaret Anderson</strong> </strong>\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/2018-living-with-loss-part-2-poster-1/\" rel=\"attachment wp-att-15334\">2018 Living With Loss Part 2 Poster.1</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Living with Loss Part 2   The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)", "", "publish", "closed", "closed", "", "living-loss-part-1-introduction-grief-loss-thursdays-feb-8-mar-15-2018-7pm-9pm", "", "", "2018-01-17 13:13:49", "2018-01-17 21:13:49", "", "0", "http://localhost:8888/TestSICPage/wordpress/event/living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15269", "9", "2017-08-15 16:10:49", "2017-08-15 23:10:49", "", "2017 Living With Loss Part 1 Poster Draft", "", "inherit", "closed", "closed", "", "2017-living-with-loss-part-1-poster-draft-2", "", "", "2017-08-15 16:10:49", "2017-08-15 23:10:49", "", "15268", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-1-Poster-Draft.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15270", "9", "2017-11-09 13:20:44", "2017-11-09 21:20:44", "<strong>Â <strong>Course Facilitator: Margaret Anderson</strong> </strong>\n\nPoster:\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Living with Loss Part 2   The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)", "", "inherit", "closed", "closed", "", "15268-autosave-v1", "", "", "2017-11-09 13:20:44", "2017-11-09 21:20:44", "", "15268", "http://localhost:8888/TestSICPage/wordpress/15268-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15271", "9", "2017-11-09 13:26:02", "2017-11-09 21:26:02", "", "2017 Living With Loss Part 2 Poster.1", "", "inherit", "closed", "closed", "", "2017-living-with-loss-part-2-poster-1", "", "", "2017-11-09 13:26:02", "2017-11-09 21:26:02", "", "15268", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-2-Poster.1.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15272", "9", "2017-11-09 13:43:38", "2017-11-09 21:43:38", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n&lt;\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a>[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-11-09 13:43:38", "2017-11-09 21:43:38", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15273", "9", "2017-11-09 13:57:53", "2017-11-09 21:57:53", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).[/vc_column_text][vc_column_text]<strong>Upcoming Courses</strong>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-11-09 13:57:53", "2017-11-09 21:57:53", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15274", "9", "2017-11-09 14:02:52", "2017-11-09 22:02:52", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-11-09 14:02:52", "2017-11-09 22:02:52", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15276", "6", "2017-11-10 00:44:19", "2017-11-10 08:44:19", " ", "", "", "publish", "closed", "closed", "", "15276", "", "", "2018-03-28 13:11:30", "2018-03-28 20:11:30", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=15276", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15278", "9", "2017-11-15 09:54:04", "2017-11-15 17:54:04", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong>\r\n\r\n<strong><a title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong>\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>.\r\n\r\n<strong><a title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-11-15 09:54:04", "2017-11-15 17:54:04", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15279", "9", "2017-11-15 09:59:52", "2017-11-15 17:59:52", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:\r\n\r\n<strong><a title=\"Positive Psychology Group for Happiness and Meaning Sept 21-28, Oct 5, 12, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group</a></strong>\r\n\r\n<strong><a title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong>\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>.\r\n\r\n<strong><a title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 2   The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong>\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-11-15 09:59:52", "2017-11-15 17:59:52", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15280", "9", "2017-11-16 12:44:34", "2017-11-16 20:44:34", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/06/ThriveVictoria-Positive-Psychology-4-Sessions.pdf\">ThriveVictoria Positive Psychology 4 Sessions</a>\n\n&nbsp;", "Positive Psychology Group  (Tuesdays, Feb. 6, 13, 20 and 27, 2018:  6pm-8:00pm); Facilitator: Dr. Vibeke Vaerum, PhD", "", "inherit", "closed", "closed", "", "14478-autosave-v1", "", "", "2017-11-16 12:44:34", "2017-11-16 20:44:34", "", "14478", "http://localhost:8888/TestSICPage/wordpress/14478-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15282", "9", "2017-11-22 10:56:30", "2017-11-22 18:56:30", "", "ThriveVictoria2 Feb 2018.1", "", "inherit", "closed", "closed", "", "thrivevictoria2-feb-2018-1", "", "", "2017-11-22 10:56:30", "2017-11-22 18:56:30", "", "14478", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/11/ThriveVictoria2-Feb-2018.1.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15284", "9", "2017-11-22 11:06:15", "2017-11-22 19:06:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Our thanks and gratitude to all those who joined us for our annual Fundraising Gala on Saturday, October 21st at the Delta Ocean Pointe. Your support helps to ensure we can continue to provide professional, affordable mental health counselling services to those in need.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-11-22 11:06:15", "2017-11-22 19:06:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15285", "9", "2017-11-22 11:18:20", "2017-11-22 19:18:20", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:\r\n\r\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group</a></strong>\r\n\r\n<strong><a title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong>\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>.\r\n\r\n<strong><a title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 2   The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong>\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2017-11-22 11:18:20", "2017-11-22 19:18:20", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15295", "3", "2017-12-14 16:19:54", "2017-12-15 00:19:54", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]A very merry Christmas from all of us at South Island Centre. We will be closing at 4 p.m. on December 22nd and will re-open at 9 a.m. on December 27th. Individual counsellors may decide to make appointments during the time that we are formally closed, so please check with your particular counsellor. We will also be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2, 2018. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a title=\" Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133 \"> Living with Loss Part 1, an Introduction to Grief and Loss </a>(Thursdays, Oct. 19- Nov. 23, 2017).[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-14 16:19:54", "2017-12-15 00:19:54", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15297", "9", "2017-12-19 13:11:21", "2017-12-19 21:11:21", "", "Manager of Development and Communications\' posting", "", "inherit", "closed", "closed", "", "manager-of-development-and-communications-posting", "", "", "2017-12-19 13:11:21", "2017-12-19 21:11:21", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15298", "9", "2017-12-19 13:15:24", "2017-12-19 21:15:24", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]A very merry Christmas from all of us at South Island Centre. We will be closing at 4 p.m. on December 22nd and will re-open at 9 a.m. on December 27th. Individual counsellors may decide to make appointments during the time that we are formally closed, so please check with your particular counsellor. We will also be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2, 2018. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>Position Available</strong>\r\n\r\nThe South Island Centre has a posting for a <a href=\"http://http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-19 13:15:24", "2017-12-19 21:15:24", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15299", "9", "2017-12-19 13:20:16", "2017-12-19 21:20:16", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]A very merry Christmas from all of us at South Island Centre. We will be closing at 4 p.m. on December 22nd and will re-open at 9 a.m. on December 27th. Individual counsellors may decide to make appointments during the time that we are formally closed, so please check with your particular counsellor. We will also be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2, 2018. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-19 13:20:16", "2017-12-19 21:20:16", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15300", "9", "2017-12-19 13:23:43", "2017-12-19 21:23:43", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]A very merry Christmas from all of us at South Island Centre. We will be closing at 4 p.m. on December 22nd and will re-open at 9 a.m. on December 27th. Individual counsellors may decide to make appointments during the time that we are formally closed, so please check with your particular counsellor. We will also be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2, 2018. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-19 13:23:43", "2017-12-19 21:23:43", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15301", "9", "2017-12-19 13:45:49", "2017-12-19 21:45:49", "To view the poster, click on the link to the right: PCTT: The Nuts andPoster PCT Dialogues Jan 2018.1 Bolts of forming, Maintaining and Nurturing Your Team\n\n<strong>Facilitators: Bill Cole and Margaret Anderson</strong>\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team (January 18, 2018)", "", "inherit", "closed", "closed", "", "14595-autosave-v1", "", "", "2017-12-19 13:45:49", "2017-12-19 21:45:49", "", "14595", "http://localhost:8888/TestSICPage/wordpress/14595-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15302", "9", "2017-12-19 13:44:40", "2017-12-19 21:44:40", "", "Poster PCT Dialogues Jan 2018.1", "", "inherit", "closed", "closed", "", "poster-pct-dialogues-jan-2018-1", "", "", "2017-12-19 13:44:40", "2017-12-19 21:44:40", "", "14595", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/12/Poster-PCT-Dialogues-Jan-2018.1.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15303", "9", "2017-12-19 13:58:30", "2017-12-19 21:58:30", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]A very merry Christmas from all of us at South Island Centre. We will be closing at 4 p.m. on December 22nd and will re-open at 9 a.m. on December 27th. Individual counsellors may decide to make appointments during the time that we are formally closed, so please check with your particular counsellor. We will also be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2, 2018. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\nPastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-19 13:58:30", "2017-12-19 21:58:30", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15304", "9", "2017-12-19 14:04:22", "2017-12-19 22:04:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]A very merry Christmas from all of us at South Island Centre. We will be closing at 4 p.m. on December 22nd and will re-open at 9 a.m. on December 27th. Individual counsellors may decide to make appointments during the time that we are formally closed, so please check with your particular counsellor. We will also be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2, 2018. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-19 14:04:22", "2017-12-19 22:04:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15305", "9", "2017-12-19 14:06:17", "2017-12-19 22:06:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]A very merry Christmas from all of us at South Island Centre. We will be closing at 4 p.m. on December 22nd and will re-open at 9 a.m. on December 27th. Individual counsellors may decide to make appointments during the time that we are formally closed, so please check with your particular counsellor. We will also be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2, 2018. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-19 14:06:17", "2017-12-19 22:06:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15306", "9", "2017-12-20 11:25:13", "2017-12-20 19:25:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]A very merry Christmas from all of us at South Island Centre. We will be closing at 4 p.m. on December 22nd and will re-open at 9 a.m. on December 27th. Individual counsellors may decide to make appointments during the time that we are formally closed, so please check with your particular counsellor. We will also be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2, 2018. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-20 11:25:13", "2017-12-20 19:25:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15310", "9", "2017-12-27 12:00:54", "2017-12-27 20:00:54", "", "logo-city-of-victoria", "", "inherit", "closed", "closed", "", "logo-city-of-victoria", "", "", "2017-12-27 12:00:54", "2017-12-27 20:00:54", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/logo-city-of-victoria.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wp_posts` VALUES("15311", "9", "2017-12-27 12:03:09", "2017-12-27 20:03:09", "", "adore-logo", "", "inherit", "closed", "closed", "", "adore-logo", "", "", "2017-12-27 12:03:09", "2017-12-27 20:03:09", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/adore-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15312", "9", "2017-12-27 12:12:02", "2017-12-27 20:12:02", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! We are open December 26 - 30. Please check with your individual counsellor to see if they will be working through this time. We will be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14970\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15002\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text][/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-27 12:12:02", "2017-12-27 20:12:02", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15313", "9", "2017-12-27 12:18:03", "2017-12-27 20:18:03", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! We are open December 26 - 30. Please check with your individual counsellor to see if they will be working through this time. We will be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"13315\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text][/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-27 12:18:03", "2017-12-27 20:18:03", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15314", "9", "2017-12-27 12:20:49", "2017-12-27 20:20:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! We are open December 26 - 30. Please check with your individual counsellor to see if they will be working through this time. We will be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text][/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-27 12:20:49", "2017-12-27 20:20:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15315", "9", "2017-12-27 12:34:15", "2017-12-27 20:34:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! We are open December 26 - 30. Please check with your individual counsellor to see if they will be working through this time. We will be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text][/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-27 12:34:15", "2017-12-27 20:34:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15317", "9", "2017-12-27 12:37:12", "2017-12-27 20:37:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! We are open December 26 - 30. Please check with your individual counsellor to see if they will be working through this time. We will be closed on New Years\' Day, January 1, 2018 but will be open for business on January 2. Happy Holidays and all the best for 2018.[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text][/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2017-12-27 12:37:12", "2017-12-27 20:37:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15318", "9", "2018-01-02 13:28:31", "2018-01-02 21:28:31", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text][/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-02 13:28:31", "2018-01-02 21:28:31", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15319", "9", "2018-01-03 11:31:24", "2018-01-03 19:31:24", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:\r\n\r\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group</a></strong>\r\n\r\n<strong><a title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong>\r\n\r\n<strong><a title=\"Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team, Saturday, Oct 14, 2017; Facilitators: Bill Cole and Margaret Anderson\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15078\">Pastoral Care Team Training Workshop </a></strong>.\r\n\r\n<strong><a title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 2   The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong>\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-01-03 11:31:24", "2018-01-03 19:31:24", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15320", "9", "2018-01-03 11:50:54", "2018-01-03 19:50:54", "[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:\r\n\r\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\">Positive Psychology Group</a></strong>\r\n\r\n<strong><a title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong>\r\n\r\n<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </strong>\r\n\r\n<strong><a title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>\r\n\r\n<strong><a title=\"Living with Loss Part 2   The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong>\r\n\r\n<strong><a title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>\r\n\r\nFor more information on <span style=\"color: #000000;\"><strong>how to register</strong></span>: <span style=\"color: #000000;\"><a title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\"><span style=\"color: #000000;\">click here</span></a>.</span> OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"color: transparent; display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-01-03 11:50:54", "2018-01-03 19:50:54", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15323", "6", "2018-01-08 15:07:50", "2018-01-08 23:07:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no current training opportunities. Please see below for upcoming courses in 2018.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-08 15:07:50", "2018-01-08 23:07:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15325", "3", "2018-01-16 10:58:52", "2018-01-16 18:58:52", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-16 10:58:52", "2018-01-16 18:58:52", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15326", "3", "2018-01-16 11:00:12", "2018-01-16 19:00:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-16 11:00:12", "2018-01-16 19:00:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15327", "3", "2018-01-16 11:02:10", "2018-01-16 19:02:10", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (April 2018; dates to be determined)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-16 11:02:10", "2018-01-16 19:02:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15328", "3", "2018-01-16 11:04:17", "2018-01-16 19:04:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (Thursdays, April 12 - May 17)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-16 11:04:17", "2018-01-16 19:04:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15329", "3", "2017-08-15 16:08:29", "2017-08-15 23:08:29", "<strong>Â </strong>Poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/triple-p-positive-parenting-program-wednesdays-jmar-28-may-16-2018-7pm-9pm/triple-p-parenting-poster/\" rel=\"attachment wp-att-15353\">Triple P Parenting Poster</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Triple P Positive Parenting Program (Wednesdays March 28 - May 16, 2018: 6:30pmâ€”8:30pm)", "", "publish", "closed", "closed", "", "triple-p-positive-parenting-program-wednesdays-jmar-28-may-16-2018-7pm-9pm", "", "", "2018-01-30 12:12:04", "2018-01-30 20:12:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/event/living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15330", "3", "2017-08-15 16:10:49", "2017-08-15 23:10:49", "", "2017 Living With Loss Part 1 Poster Draft", "", "inherit", "closed", "closed", "", "2017-living-with-loss-part-1-poster-draft-3", "", "", "2017-08-15 16:10:49", "2017-08-15 23:10:49", "", "15329", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-1-Poster-Draft.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15331", "3", "2018-01-30 12:05:22", "2018-01-30 20:05:22", "<strong>Â </strong>Poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/triple-p-positive-parenting-program-wednesdays-jmar-28-may-16-2018-7pm-9pm/triple-p-parenting-poster/\" rel=\"attachment wp-att-15353\">Triple P Parenting Poster</a>\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Triple P Positive Parenting Program (Wednesdays March 28 - May 16, 2018: 6:30pmâ€”8:30pm)", "", "inherit", "closed", "closed", "", "15329-autosave-v1", "", "", "2018-01-30 12:05:22", "2018-01-30 20:05:22", "", "15329", "http://localhost:8888/TestSICPage/wordpress/15329-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15332", "3", "2018-01-17 13:11:39", "2018-01-17 21:11:39", "<strong>Â <strong>Course Facilitator: Margaret Anderson</strong> </strong>\n\nPoster:\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Living with Loss Part 2   The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)", "", "inherit", "closed", "closed", "", "15268-autosave-v1", "", "", "2018-01-17 13:11:39", "2018-01-17 21:11:39", "", "15268", "http://localhost:8888/TestSICPage/wordpress/15268-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15333", "3", "2018-01-17 13:12:10", "2018-01-17 21:12:10", "", "2017 Living With Loss Part 2 Poster.1", "", "inherit", "closed", "closed", "", "2017-living-with-loss-part-2-poster-1-2", "", "", "2018-01-17 13:12:10", "2018-01-17 21:12:10", "", "15268", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-2-Poster.11.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15334", "3", "2018-01-17 13:13:23", "2018-01-17 21:13:23", "", "2018 Living With Loss Part 2 Poster.1", "", "inherit", "closed", "closed", "", "2018-living-with-loss-part-2-poster-1", "", "", "2018-01-17 13:13:23", "2018-01-17 21:13:23", "", "15268", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2018-Living-With-Loss-Part-2-Poster.1.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15335", "3", "2018-01-17 13:16:47", "2018-01-17 21:16:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District.\r\n\r\nWe are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations.\r\n\r\nThis position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.\r\n\r\nSome of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWe\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre.\r\n\r\nFor clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-17 13:16:47", "2018-01-17 21:16:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15336", "3", "2018-01-17 13:40:51", "2018-01-17 21:40:51", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\nLiving With Loss Part 1 - An Introduction to Grief and Loss (Thursdays, April 12 - May 17)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-17 13:40:51", "2018-01-17 21:40:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15337", "3", "2018-01-17 13:48:41", "2018-01-17 21:48:41", "", "2018 Living With Loss Part 1 Poster.kr", "", "inherit", "closed", "closed", "", "2018-living-with-loss-part-1-poster-kr", "", "", "2018-01-17 13:48:41", "2018-01-17 21:48:41", "", "15329", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2018-Living-With-Loss-Part-1-Poster.kr_.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15338", "3", "2018-01-17 13:51:44", "2018-01-17 21:51:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-17 13:51:44", "2018-01-17 21:51:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15339", "3", "2018-01-17 13:53:48", "2018-01-17 21:53:48", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-17 13:53:48", "2018-01-17 21:53:48", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15340", "3", "2017-08-15 16:08:29", "2017-08-15 23:08:29", "<strong>Â <strong>Course Facilitator: Margaret Anderson</strong> </strong>\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2018-Living-With-Loss-Part-1-Poster_Oct-2018.pdf\">2018 Living With Loss Part 1 Poster_Oct 2018</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 11 - Nov. 15, 2018: 7pmâ€”9pm)", "", "publish", "closed", "closed", "", "living-loss-part-1-introduction-grief-loss-thursdays-oct-11-nov-15-2018-7pm-9pm", "", "", "2018-06-14 09:39:16", "2018-06-14 16:39:16", "", "0", "http://localhost:8888/TestSICPage/wordpress/event/living-with-loss-part-1-an-introduction-to-grief-and-loss-thursdays-april-12-may-17-2018-7pm-9pm/", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15341", "3", "2018-01-17 13:48:41", "2018-01-17 21:48:41", "", "2018 Living With Loss Part 1 Poster.kr", "", "inherit", "closed", "closed", "", "2018-living-with-loss-part-1-poster-kr-2", "", "", "2018-01-17 13:48:41", "2018-01-17 21:48:41", "", "15340", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2018-Living-With-Loss-Part-1-Poster.kr_.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15342", "3", "2017-08-15 16:10:49", "2017-08-15 23:10:49", "", "2017 Living With Loss Part 1 Poster Draft", "", "inherit", "closed", "closed", "", "2017-living-with-loss-part-1-poster-draft-3-2", "", "", "2017-08-15 16:10:49", "2017-08-15 23:10:49", "", "15340", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2017-Living-With-Loss-Part-1-Poster-Draft.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15344", "3", "2018-01-17 14:03:41", "2018-01-17 22:03:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]Happy New Year! The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\nTriple P Positive Parenting Program (Wednesdays, January 31 - March 28)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-17 14:03:41", "2018-01-17 22:03:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15345", "3", "2018-01-17 14:04:53", "2018-01-17 22:04:53", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\nTriple P Positive Parenting Program (Wednesdays, January 31 - March 28)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-17 14:04:53", "2018-01-17 22:04:53", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15346", "3", "2018-01-17 14:12:47", "2018-01-17 22:12:47", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, January 31 - March 28)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-17 14:12:47", "2018-01-17 22:12:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15347", "3", "2018-01-18 12:12:00", "2018-01-18 20:12:00", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> (Thursday, January 18, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, January 31 - March 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-18 12:12:00", "2018-01-18 20:12:00", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15348", "3", "2018-01-23 11:01:48", "2018-01-23 19:01:48", "<h4>Addictions</h4>\r\n<span style=\"color: #333399;\"><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\"><span style=\"color: #333399;\">www.viha.ca/hmas/resources</span></a></span>\r\n\r\n<a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a>\r\n\r\n<a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a>\r\n\r\n<a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\">Victoria Outpatient Drug RehabÂ </a>\r\n\r\n<a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\">www.bellwood.ca</a>\r\n\r\n<a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\">Drugrehab.com</a>\r\n\r\n<a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a>\r\n<h4>Anxiety</h4>\r\n<a title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\">www.anxietybc.com</a>\r\n\r\n<a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\">www.worrywisekids.org</a>Â (Children and Youth)\r\n\r\n<a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\">keltymentalhealth.ca</a> (Children and Youth)\r\n<h4>Depression</h4>\r\n<a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\">headsupguys.org</a>\r\n\r\n<a href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a>\r\n\r\n<a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\">depressionhurts.ca</a>\r\n\r\n<a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\">Dealing with Depression</a>Â (printable workbook for Teens)\r\n<h4>Divorce and Separation</h4>\r\n<a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\">Family Services of Greater Victoria</a>\r\n\r\n<a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\">Anti-Poverty Community</a>\r\n\r\n<a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\">EMental Health</a>\r\n\r\n<a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\">BC Family Justice</a>\r\n\r\n<a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">1Up Single Parent Resources Victoria</a>\r\n\r\n&nbsp;\r\n<h4>Eating Disorders</h4>\r\n<a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\">Kelty Eating Disorders</a>\r\n\r\n<a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\">Island Health Eating Disorders</a>\r\n\r\n<a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\">Vancouver Looking Glass Foundation</a>\r\n\r\n<a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\">BC Children\'s Hospital Eating Disorders</a>\r\n\r\n<a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\">Here to Help Eating Disorders</a>\r\n<h4>Senior Support</h4>\r\n<a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\">Senior\'s Advocate BC</a>\r\n\r\n<a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\">Caring for the Caregiver</a>\r\n\r\n<a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\">Silverthreads</a>\r\n\r\n<a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\">BC Services for SeniorsÂ </a>\r\n\r\n<a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\">Elderly Mental Health: How to Help Your Senior</a>\r\n<h4>Grief and Loss</h4>\r\n<a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\">Remembering for Good</a>\r\n\r\n<a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\">www.grief.com</a>\r\n\r\n<a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\">Coping With the Loss of a Loved One</a>\r\n\r\n<a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\">Seven Ponds (Embracing the End-of-Life Experience)</a>\r\n\r\n<a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\">Victoria Pregnancy Centre (A Place of Hope)</a>\r\n\r\n<a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\">Hospice and Palliative Care Association</a>\r\n<h4>Marriage and Family</h4>\r\n<a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\r\n\r\n<a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\">National Resource Centre for Healthy Marriage and Families</a>\r\n\r\n<a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\">National Healthy Marriage Resource Centre</a>\r\n\r\n<a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a>\r\n<h4>Parenting</h4>\r\n<a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\">Single Parent Resource Centre Victoria</a>\r\n\r\n<a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\">Parent Support BC</a>\r\n\r\n<a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\">Boys and Girls Club Victoria</a>\r\n\r\n<a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\">Life Seminars</a>\r\n\r\n<a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\">Island Parent Magazine</a>\r\n\r\n<a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\">Triple P ParentingÂ </a>\r\n\r\n<a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\">A Checklist for Parents with Children with Mental Health Problems</a>\r\n<h4>Abuse and Trauma</h4>\r\n<a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\">Men\'s Trauma Centre</a>\r\n\r\n<a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\">Greater Victoria Youth Core</a>\r\n\r\n<a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\">Hulitan Family and Community Service Society</a>\r\n\r\n<a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\">Here to Help BC</a>\r\n\r\n<a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\">Canadian Resource Centre for Victims of Crime</a>\r\n\r\n<a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\">PTSD Association of Canada</a>\r\n<h4>Spiritual Guidance</h4>\r\n<a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\">What Christians want to know</a>\r\n\r\n<a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\">All about God</a>\r\n<h4>Suicide Prevention</h4>\r\n<a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\">Suicide Prevention</a>\r\n\r\n<a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\">Need 2 (Suicide Prevention and Education)</a>\r\n\r\n<a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\">Canadian Mental Health Association (Preventing Suicide)</a>\r\n\r\n<a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\">Help Guide (Article: Helping Someone who is suicidal)</a>\r\n\r\n<a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\">Crisis CentreÂ </a>\r\n\r\n<span style=\"color: #000080;\"><a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\"><span style=\"color: #000080;\">Online Guide to Suicide Prevention (Wake Forest University)</span></a></span>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-01-23 11:01:48", "2018-01-23 19:01:48", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15350", "3", "2018-01-29 13:30:41", "2018-01-29 21:30:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\nThere are no courses currently running. Please see below for our upcoming courses and workshops.[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-01-29 13:30:41", "2018-01-29 21:30:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15353", "3", "2018-01-30 12:04:13", "2018-01-30 20:04:13", "", "Triple P Parenting Poster", "", "inherit", "closed", "closed", "", "triple-p-parenting-poster", "", "", "2018-01-30 12:04:13", "2018-01-30 20:04:13", "", "15329", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Triple-P-Parenting-Poster.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15355", "3", "2018-02-15 12:40:52", "2018-02-15 20:40:52", "Poster:\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Me And My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics (Friday Night April 27 & Saturday, April 28, 2018)", "", "inherit", "closed", "closed", "", "15147-autosave-v1", "", "", "2018-02-15 12:40:52", "2018-02-15 20:40:52", "", "15147", "http://localhost:8888/TestSICPage/wordpress/15147-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15356", "3", "2018-02-06 11:18:50", "2018-02-06 19:18:50", "", "Poster MBTI May 2018", "", "inherit", "closed", "closed", "", "poster-mbti-may-2018", "", "", "2018-02-06 11:18:50", "2018-02-06 19:18:50", "", "15147", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Poster-MBTI-May-2018.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15357", "3", "2018-02-06 11:25:58", "2018-02-06 19:25:58", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\nMe and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, May 26, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-06 11:25:58", "2018-02-06 19:25:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15358", "3", "2018-02-06 11:30:30", "2018-02-06 19:30:30", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-06 11:30:30", "2018-02-06 19:30:30", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15359", "3", "2018-02-06 11:55:19", "2018-02-06 19:55:19", "", "Marriage Prep June 9 2018", "", "inherit", "closed", "closed", "", "marriage-prep-june-9-2018", "", "", "2018-02-06 11:55:19", "2018-02-06 19:55:19", "", "14705", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/03/Marriage-Prep-June-9-2018.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15360", "3", "2018-02-06 11:55:30", "2018-02-06 19:55:30", "For more information, click on the poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-june-9-2018/marriage-prep-june-9-2018/\" rel=\"attachment wp-att-15359\">Marriage Prep June 9 2018</a>\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Marriage Preparation Workshop (Saturday, June 9, 2018)", "", "inherit", "closed", "closed", "", "14705-autosave-v1", "", "", "2018-02-06 11:55:30", "2018-02-06 19:55:30", "", "14705", "http://localhost:8888/TestSICPage/wordpress/14705-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15361", "3", "2018-02-06 11:59:13", "2018-02-06 19:59:13", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\nPreparing for Marriage Workshop (Saturday, June 9, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-06 11:59:13", "2018-02-06 19:59:13", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15362", "3", "2018-02-06 12:04:12", "2018-02-06 20:04:12", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-06 12:04:12", "2018-02-06 20:04:12", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15363", "3", "2018-02-06 12:09:40", "2018-02-06 20:09:40", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\nMarriage Preparation Workshop (Saturday, June 9, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-06 12:09:40", "2018-02-06 20:09:40", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15364", "3", "2018-02-06 12:11:58", "2018-02-06 20:11:58", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-06 12:11:58", "2018-02-06 20:11:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15366", "3", "2017-08-15 17:31:27", "2017-08-16 00:31:27", "<strong>Workshop Facilitators: Bill Cole and Glenda Pryce</strong>\r\n\r\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-may-26-2018/poster-mbti-may-2018/\" rel=\"attachment wp-att-15356\">Poster MBTI May 2018</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference (Saturday, May 26, 2018)", "", "publish", "closed", "closed", "", "me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-may-26-2018-2", "", "", "2018-02-15 12:15:10", "2018-02-15 20:15:10", "", "0", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-may-26-2018-2/", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15367", "3", "2018-02-06 11:18:50", "2018-02-06 19:18:50", "", "Poster MBTI May 2018", "", "inherit", "closed", "closed", "", "poster-mbti-may-2018-2", "", "", "2018-02-06 11:18:50", "2018-02-06 19:18:50", "", "15366", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Poster-MBTI-May-2018.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15368", "3", "2018-02-15 12:40:51", "2018-02-15 20:40:51", "", "Bowen Short Course April 2018", "", "inherit", "closed", "closed", "", "bowen-short-course-april-2018", "", "", "2018-02-15 12:40:51", "2018-02-15 20:40:51", "", "15147", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Bowen-Short-Course-April-2018.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15369", "3", "2018-02-15 12:44:53", "2018-02-15 20:44:53", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\nMe and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-15 12:44:53", "2018-02-15 20:44:53", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15370", "3", "2018-02-15 12:49:25", "2018-02-15 20:49:25", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\nMe and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-15 12:49:25", "2018-02-15 20:49:25", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15371", "3", "2018-02-15 13:01:39", "2018-02-15 21:01:39", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-15 13:01:39", "2018-02-15 21:01:39", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15372", "3", "2018-02-15 13:08:53", "2018-02-15 21:08:53", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-15 13:08:53", "2018-02-15 21:08:53", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15373", "3", "2018-02-20 11:56:39", "2018-02-20 19:56:39", "<strong><a href=\"http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-aug-20-24-2018/bowen-august-20-24-intensive-2018/\" rel=\"attachment wp-att-15375\">Bowen August 20-24 Intensive 2018</a>Course Facilitators: Bill Cole, MA, RCC and Sandi Smoker, MA Candidate</strong>\n\nPoster:\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Family Systems Intensive (Monday-Friday, Aug. 20-24, 2018)", "", "inherit", "closed", "closed", "", "14759-autosave-v1", "", "", "2018-02-20 11:56:39", "2018-02-20 19:56:39", "", "14759", "http://localhost:8888/TestSICPage/wordpress/14759-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15375", "3", "2018-02-20 11:56:21", "2018-02-20 19:56:21", "", "Bowen August 20-24 Intensive 2018", "", "inherit", "closed", "closed", "", "bowen-august-20-24-intensive-2018", "", "", "2018-02-20 11:56:21", "2018-02-20 19:56:21", "", "14759", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/06/Bowen-August-20-24-Intensive-2018.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15376", "3", "2018-02-20 12:02:15", "2018-02-20 20:02:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\nFamily Systems Theory - 5-Day Intensive (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-20 12:02:15", "2018-02-20 20:02:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15377", "3", "2018-02-20 12:02:42", "2018-02-20 20:02:42", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018) <a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018) <a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018) <a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018) <a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018) <a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018) Family Systems Theory - 5-Day Intensive (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-20 12:02:42", "2018-02-20 20:02:42", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15378", "3", "2018-02-20 12:04:44", "2018-02-20 20:04:44", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\nFamily Systems Theory - 5-Day Intensive (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-20 12:04:44", "2018-02-20 20:04:44", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15379", "3", "2018-02-20 12:09:56", "2018-02-20 20:09:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. Also, check our Home page for upcoming courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-20 12:09:56", "2018-02-20 20:09:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15380", "3", "2018-02-21 11:44:17", "2018-02-21 19:44:17", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre is seeking a Manager of Development and Communications. Please see below for further information and position details. While on our Home page, take a look at our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Available</strong></h4>\r\nThe South Island Centre has a posting for a <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/Manager-of-Development-and-Communications-posting.pdf\">Manager of Development and Communications</a>. This position is the â€œfaceâ€ of the Centre and will be responsible for attaining financial support through grants and other means, reporting to our Board and other stakeholders, keeping donors and the community apprised of our goals and events, helping to develop strategic plans, and maintaining public relations. This position will remain open until filled. Please note that only those short-listed for an interview will be contacted.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-21 11:44:17", "2018-02-21 19:44:17", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15381", "3", "2018-02-22 11:25:15", "2018-02-22 19:25:15", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\">Positive Psychology Group for Happiness and Meaning</a> (Tuesdays, February 6 - 27, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-22 11:25:15", "2018-02-22 19:25:15", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15383", "3", "2018-02-28 13:10:41", "2018-02-28 21:10:41", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-02-28 13:10:41", "2018-02-28 21:10:41", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15384", "3", "2018-03-05 12:40:49", "2018-03-05 20:40:49", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\nStress and Anxiety Support Group (Thursdays, March 29 - April 19, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-05 12:40:49", "2018-03-05 20:40:49", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15385", "3", "2017-08-31 21:52:50", "2017-09-01 04:52:50", "See course details on poster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/event/15175/young-adult-group-fall-2017-3/\" rel=\"attachment wp-att-15224\">Young Adult Group Fall 2017</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Young Adults Support group for Anxiety (Tuesdays Oct. 10 - Dec. 5, 2017: 6:30-8:30pm)", "", "publish", "closed", "closed", "", "15175-2", "", "", "2018-03-05 12:42:27", "2018-03-05 20:42:27", "", "0", "http://localhost:8888/TestSICPage/wordpress/event/young-adults-support-group-for-anxiety-tuesdays-oct-10-dec-5-2017-630-830pm/", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("15386", "3", "2017-09-26 10:59:37", "2017-09-26 17:59:37", "", "Young Adult Group Fall 2017", "", "inherit", "closed", "closed", "", "young-adult-group-fall-2017-3-2", "", "", "2017-09-26 10:59:37", "2017-09-26 17:59:37", "", "15385", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/09/Young-Adult-Group-Fall-2017.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("15387", "3", "2017-09-26 10:49:47", "2017-09-26 17:49:47", "", "Poster Teen summer support grp fall 2017", "", "inherit", "closed", "closed", "", "poster-teen-summer-support-grp-fall-2017-2", "", "", "2017-09-26 10:49:47", "2017-09-26 17:49:47", "", "15385", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Poster-Teen-summer-support-grp-fall-2017.docx", "0", "attachment", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "0");
INSERT INTO `wp_posts` VALUES("15388", "3", "2017-08-31 23:16:12", "2017-09-01 06:16:12", "", "Young Adult Group Fall 2017", "", "inherit", "closed", "closed", "", "young-adult-group-fall-2017-4", "", "", "2017-08-31 23:16:12", "2017-09-01 06:16:12", "", "15385", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Young-Adult-Group-Fall-2017.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15389", "3", "2018-03-05 12:49:53", "2018-03-05 20:49:53", "", "Stress and Anxiety Support Group March 2018", "", "inherit", "closed", "closed", "", "stress-and-anxiety-support-group-march-2018", "", "", "2018-03-05 12:49:53", "2018-03-05 20:49:53", "", "15175", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/Stress-and-Anxiety-Support-Group-March-2018.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15390", "3", "2018-03-05 13:04:07", "2018-03-05 21:04:07", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-05 13:04:07", "2018-03-05 21:04:07", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15397", "3", "2018-03-06 12:54:44", "2018-03-06 20:54:44", "<p style=\"color: #3b3f42; text-align: left;\">You can also support South Island Centre by making a donation using one of theÂ three options below.</p>\r\n<p style=\"color: #3b3f42;\">1) Send aÂ chequeÂ made payable toÂ South Island Centre for Counselling and TrainingÂ toÂ 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â South Island Centre only issues charitable tax receipts for donations $50 and above. Please include your return address so we can send you a charitable donation receipt.</p>\r\n<p style=\"color: #3b3f42;\">2) Make a donation viaÂ telephone with your credit cardÂ by calling the office directly 250-472-2851 and have your payment processedÂ over the phone.</p>\r\n<p style=\"color: #3b3f42;\">3) Drop by in person during reception hours of 9-2pm Mon -Thurs to make a donation in person.</p>\r\n<p style=\"color: #3b3f42;\">Thank you for your support!</p>", "Donations", "", "publish", "closed", "closed", "", "charitable-donation", "", "", "2018-03-14 13:19:19", "2018-03-14 20:19:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=campaign&#038;p=15397", "0", "campaign", "", "0");
INSERT INTO `wp_posts` VALUES("15398", "3", "2018-03-06 13:23:16", "2018-03-06 21:23:16", "", "Jared tester &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-tester-donations", "", "", "2018-03-06 13:23:16", "2018-03-06 21:23:16", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15398", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15400", "3", "2018-03-06 13:37:31", "2018-03-06 21:37:31", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations", "", "", "2018-03-06 13:37:31", "2018-03-06 21:37:31", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15400", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15402", "3", "2018-03-06 13:42:37", "2018-03-06 21:42:37", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-2", "", "", "2018-03-06 13:42:37", "2018-03-06 21:42:37", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15402", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15403", "3", "2018-03-06 13:46:39", "2018-03-06 21:46:39", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-3", "", "", "2018-03-06 13:46:39", "2018-03-06 21:46:39", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15403", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15404", "3", "2018-03-06 14:27:35", "2018-03-06 22:27:35", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-4", "", "", "2018-03-06 14:27:35", "2018-03-06 22:27:35", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15404", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15406", "3", "2018-03-06 15:06:34", "2018-03-06 23:06:34", "", "Test", "", "publish", "closed", "closed", "", "test", "", "", "2018-03-06 15:06:34", "2018-03-06 23:06:34", "", "0", "http://localhost:8888/TestSICPage/wordpress/test/", "0", "wpplugin_don_button", "", "0");
INSERT INTO `wp_posts` VALUES("15411", "3", "2018-03-08 19:26:43", "2018-03-09 03:26:43", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-5", "", "", "2018-03-08 19:26:43", "2018-03-09 03:26:43", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15411", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15412", "3", "2018-03-08 19:57:46", "2018-03-09 03:57:46", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-6", "", "", "2018-03-08 19:57:46", "2018-03-09 03:57:46", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15412", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15414", "3", "2018-03-08 20:22:28", "2018-03-09 04:22:28", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-7", "", "", "2018-03-08 20:22:28", "2018-03-09 04:22:28", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15414", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15415", "3", "2018-03-08 21:53:02", "2018-03-09 05:53:02", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-8", "", "", "2018-03-08 21:53:02", "2018-03-09 05:53:02", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15415", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15417", "3", "2018-03-09 13:20:19", "2018-03-09 21:20:19", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-9", "", "", "2018-03-09 13:20:19", "2018-03-09 21:20:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15417", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15419", "3", "2018-03-09 13:22:01", "2018-03-09 21:22:01", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-10", "", "", "2018-03-09 13:22:01", "2018-03-09 21:22:01", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15419", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15421", "3", "2018-03-13 12:16:40", "2018-03-13 19:16:40", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-11", "", "", "2018-03-13 12:16:40", "2018-03-13 19:16:40", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15421", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15422", "3", "2018-03-13 12:25:10", "2018-03-13 19:25:10", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-12", "", "", "2018-03-13 12:25:10", "2018-03-13 19:25:10", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15422", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15423", "3", "2018-03-13 12:42:29", "2018-03-13 19:42:29", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-13", "", "", "2018-03-13 12:42:29", "2018-03-13 19:42:29", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15423", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15425", "3", "2018-03-13 13:17:22", "2018-03-13 20:17:22", "", "Jared Jewitt &ndash; Donations", "", "charitable-cancelled", "closed", "closed", "", "jared-jewitt-donations-14", "", "", "2018-03-13 13:26:24", "2018-03-13 20:26:24", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&#038;p=15425", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15426", "3", "2018-03-13 13:30:50", "2018-03-13 20:30:50", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-15", "", "", "2018-03-13 13:30:50", "2018-03-13 20:30:50", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15426", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15427", "3", "2018-03-13 13:51:26", "2018-03-13 20:51:26", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-16", "", "", "2018-03-13 13:51:26", "2018-03-13 20:51:26", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15427", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15430", "3", "2018-03-14 11:05:20", "2018-03-14 18:05:20", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-17", "", "", "2018-03-14 11:05:20", "2018-03-14 18:05:20", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15430", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15432", "3", "2018-03-14 11:21:20", "2018-03-14 18:21:20", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-18", "", "", "2018-03-14 11:21:20", "2018-03-14 18:21:20", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15432", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15434", "3", "2018-03-14 11:36:47", "2018-03-14 18:36:47", "", "St Luke Cedar Hill Logo", "", "inherit", "closed", "closed", "", "st-luke-cedar-hill-logo-2", "", "", "2018-03-14 11:36:47", "2018-03-14 18:36:47", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/St-Luke-Cedar-Hill-Logo1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15435", "3", "2018-03-14 11:37:07", "2018-03-14 18:37:07", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" img_link_target=\"_self\" title=\"St. Luke Cedar Hill Anglican Church\"][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-14 11:37:07", "2018-03-14 18:37:07", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15436", "3", "2018-03-14 11:39:56", "2018-03-14 18:39:56", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n<h4>\"][/vc_column][/vc_row]</h4>", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-14 11:39:56", "2018-03-14 18:39:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15438", "3", "2018-03-14 12:03:45", "2018-03-14 19:03:45", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-19", "", "", "2018-03-14 12:03:45", "2018-03-14 19:03:45", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15438", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15439", "3", "2018-03-14 12:11:14", "2018-03-14 19:11:14", "", "Jared Jewitt &ndash; Donations", "", "charitable-completed", "closed", "closed", "", "jared-jewitt-donations-20", "", "", "2018-03-14 12:16:43", "2018-03-14 19:16:43", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&#038;p=15439", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15440", "3", "2018-03-14 12:28:53", "2018-03-14 19:28:53", "[donation_receipt]", "Receipt", "", "publish", "closed", "closed", "", "receipt", "", "", "2018-03-14 12:33:26", "2018-03-14 19:33:26", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=15440", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15441", "3", "2018-03-14 12:28:53", "2018-03-14 19:28:53", "[donation_receipt]", "Receipt", "", "inherit", "closed", "closed", "", "15440-revision-v1", "", "", "2018-03-14 12:28:53", "2018-03-14 19:28:53", "", "15440", "http://localhost:8888/TestSICPage/wordpress/15440-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15448", "3", "2018-03-14 13:11:11", "2018-03-14 20:11:11", "<p style=\"color: #3b3f42;\">South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong style=\"font-weight: bold;\">everyone</strong>, even those who cannot afford our services, we make use of our<strong style=\"font-weight: bold;\">Â <span style=\"color: #000000;\">Samaritanâ€™s Fund</span></strong><span style=\"color: #000000;\">.</span>Â If you would like to help us and our Samaritanâ€™s Fund, please donate generously using the options below.</p>\r\n<p style=\"color: #3b3f42;\"><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">There are 4 options to make a donation to our Samaritanâ€™s Fund</strong>Â </span>(for example: online, one-time, monthly, quarterly, annual etc):</p>\r\n\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><strong>Option 1 (preferred)</strong></span>: Complete an online donation using the following link: <a href=\"http://localhost:8888/TestSICPage/wordpress/campaigns/charitable-donation/\">http://localhost:8888/TestSICPage/wordpress/campaigns/charitable-donation/</a></li>\r\n</ul>\r\n<ul style=\"color: #3b3f42;\">\r\n	<li><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">Option 2</strong></span>: please mail aÂ <strong style=\"font-weight: bold;\">cheque</strong>Â (payable toÂ <strong style=\"font-weight: bold;\"><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong style=\"font-weight: bold;\">3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n</ul>\r\n<ul style=\"color: #3b3f42;\">\r\n	<li><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">Option 3</strong></span>Â :Â Charge a one-time donation to yourÂ <strong style=\"font-weight: bold;\">credit card</strong>Â by calling the office atÂ Â Â Â <i class=\"fa fa-phone-square\" style=\"font-weight: normal;\"></i>Â <strong style=\"font-weight: bold;\">250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong style=\"font-weight: bold;\">regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n<ul style=\"color: #3b3f42;\">\r\n	<li><strong style=\"font-weight: bold;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">O</span><span style=\"color: #000000;\">ption 4</span></span>:</strong><span style=\"color: #000000;\">Â <a style=\"color: #576b23;\" title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n<p style=\"color: #3b3f42;\"><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">Why monthly or quarterly giving?</strong></span></p>\r\n<p style=\"color: #3b3f42;\">Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p>\r\n<p style=\"color: #3b3f42;\"><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">The Fine Print</strong></span></p>\r\n<p style=\"color: #3b3f42;\">Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p>\r\n<p style=\"color: #3b3f42;\"><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">In-Kind Donation /VolunteeringÂ </strong></span></p>\r\n<p style=\"color: #3b3f42;\">You may help us with anÂ <span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">in-kind donation</strong></span>Â when you volunteer your time and/or talent</p>\r\n\r\n<ul style=\"color: #3b3f42;\">\r\n	<li>at South Island CentreÂ <strong style=\"font-weight: bold;\">events</strong>,</li>\r\n	<li>at the South Island CentreÂ <strong style=\"font-weight: bold;\">office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong style=\"font-weight: bold;\">board member</strong>.</li>\r\n</ul>\r\n<p style=\"color: #3b3f42;\">Please contact us at Â Â <i class=\"fa fa-phone\" style=\"font-weight: normal;\"></i>Â Â <strong style=\"font-weight: bold;\">250-472-2851, extension 101</strong>Â (front desk) orÂ <span style=\"color: #000000;\"><a style=\"color: #576b23;\" title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p>\r\n<p style=\"color: #3b3f42;\">Thank you for your generosity!</p>", "Support Us", "", "publish", "closed", "closed", "", "campaigns", "", "", "2018-03-14 13:14:55", "2018-03-14 20:14:55", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=15448", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15449", "3", "2018-03-14 13:11:11", "2018-03-14 20:11:11", "<p style=\"color: #3b3f42;\">South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong style=\"font-weight: bold;\">everyone</strong>, even those who cannot afford our services, we make use of our<strong style=\"font-weight: bold;\">Â <span style=\"color: #000000;\">Samaritanâ€™s Fund</span></strong><span style=\"color: #000000;\">.</span>Â If you would like to help us and our Samaritanâ€™s Fund, please donate generously using the options below.</p>\r\n<p style=\"color: #3b3f42;\"><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">There are 4 options to make a donation to our Samaritanâ€™s Fund</strong>Â </span>(for example: online, one-time, monthly, quarterly, annual etc):</p>\r\n\r\n<ul>\r\n	<li><span style=\"color: #000000;\"><strong>Option 1 (preferred)</strong></span>: Complete an online donation using the following link: <a href=\"http://localhost:8888/TestSICPage/wordpress/campaigns/charitable-donation/\">http://localhost:8888/TestSICPage/wordpress/campaigns/charitable-donation/</a></li>\r\n</ul>\r\n<ul style=\"color: #3b3f42;\">\r\n	<li><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">Option 2</strong></span>: please mail aÂ <strong style=\"font-weight: bold;\">cheque</strong>Â (payable toÂ <strong style=\"font-weight: bold;\"><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong style=\"font-weight: bold;\">3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li>\r\n</ul>\r\n<ul style=\"color: #3b3f42;\">\r\n	<li><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">Option 3</strong></span>Â :Â Charge a one-time donation to yourÂ <strong style=\"font-weight: bold;\">credit card</strong>Â by calling the office atÂ Â Â Â <i class=\"fa fa-phone-square\" style=\"font-weight: normal;\"></i>Â <strong style=\"font-weight: bold;\">250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong style=\"font-weight: bold;\">regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n<ul style=\"color: #3b3f42;\">\r\n	<li><strong style=\"font-weight: bold;\"><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">O</span><span style=\"color: #000000;\">ption 4</span></span>:</strong><span style=\"color: #000000;\">Â <a style=\"color: #576b23;\" title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\"><span style=\"color: #000000;\">Click here</span></a></span>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li>\r\n</ul>\r\n<p style=\"color: #3b3f42;\"><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">Why monthly or quarterly giving?</strong></span></p>\r\n<p style=\"color: #3b3f42;\">Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p>\r\n<p style=\"color: #3b3f42;\"><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">The Fine Print</strong></span></p>\r\n<p style=\"color: #3b3f42;\">Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p>\r\n<p style=\"color: #3b3f42;\"><span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">In-Kind Donation /VolunteeringÂ </strong></span></p>\r\n<p style=\"color: #3b3f42;\">You may help us with anÂ <span style=\"color: #000000;\"><strong style=\"font-weight: bold;\">in-kind donation</strong></span>Â when you volunteer your time and/or talent</p>\r\n\r\n<ul style=\"color: #3b3f42;\">\r\n	<li>at South Island CentreÂ <strong style=\"font-weight: bold;\">events</strong>,</li>\r\n	<li>at the South Island CentreÂ <strong style=\"font-weight: bold;\">office</strong>,</li>\r\n	<li>as a South Island CentreÂ <strong style=\"font-weight: bold;\">board member</strong>.</li>\r\n</ul>\r\n<p style=\"color: #3b3f42;\">Please contact us at Â Â <i class=\"fa fa-phone\" style=\"font-weight: normal;\"></i>Â Â <strong style=\"font-weight: bold;\">250-472-2851, extension 101</strong>Â (front desk) orÂ <span style=\"color: #000000;\"><a style=\"color: #576b23;\" title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\"><span style=\"color: #000000;\">click here</span></a></span>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p>\r\n<p style=\"color: #3b3f42;\">Thank you for your generosity!</p>", "Support Us", "", "inherit", "closed", "closed", "", "15448-revision-v1", "", "", "2018-03-14 13:11:11", "2018-03-14 20:11:11", "", "15448", "http://localhost:8888/TestSICPage/wordpress/15448-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15450", "3", "2018-03-14 13:22:33", "2018-03-14 20:22:33", "", "Jared Jewitt &ndash; Donations", "", "charitable-cancelled", "closed", "closed", "", "jared-jewitt-donations-21", "", "", "2018-03-14 13:22:46", "2018-03-14 20:22:46", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&#038;p=15450", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15451", "3", "2018-03-19 09:38:50", "2018-03-19 16:38:50", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n<h4>\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-19 09:38:50", "2018-03-19 16:38:50", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15452", "0", "2018-03-21 12:00:00", "2018-03-21 19:00:00", "", "Jared Jewitt &ndash; Donations", "", "charitable-pending", "closed", "closed", "", "jared-jewitt-donations-22", "", "", "2018-03-21 12:00:00", "2018-03-21 19:00:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=donation&p=15452", "0", "donation", "", "0");
INSERT INTO `wp_posts` VALUES("15454", "3", "2018-03-22 10:48:54", "2018-03-22 17:48:54", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\n<h4><strong>Our History</strong></h4>\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\n<h4><strong>Our Mission</strong></h4>\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\n<h4><strong>Position Filled</strong></h4>\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\n<h4><strong>What We Do</strong></h4>\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\n<h4><strong>Contact Us:</strong></h4>\n<h6><strong>Phone:</strong></h6>\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\n\n<h6><strong>Email:</strong></h6>\n<p style=\"margin-top: -10px;\">info@localhost</p>\n\n<h6><strong>Business Hours:</strong></h6>\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\n<h4><strong>Current Training Opportunities</strong></h4>\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\n<h4><strong>Upcoming Courses</strong></h4>\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\n\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\n<h2><strong>Our Supporters</strong></h2>\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\n<h4>The Province of British Columbia</h4>\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\n<h4>The Harbourside Rotary Foundation</h4>\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\n<h4>United Way of Greater Victoria</h4>\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\n<h4>The Catholic Foundation of Vancouver Island</h4>\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\n<h4>Coast Capital Savings</h4>\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\n<h4>City of Victoria</h4>\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\n<h4>Adore Aquariums</h4>\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" img_link_target=\"_self\" title=\"\n<h4>St. Luke Cedar Hill Anglican Church</h4>\n<h4>\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-autosave-v1", "", "", "2018-03-22 10:48:54", "2018-03-22 17:48:54", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15455", "3", "2018-03-22 10:49:20", "2018-03-22 17:49:20", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]The South Island Centre offers training for professionals and the general public. Scroll down to check out our upcoming spring and summer courses and workshops![/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n<h4>\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-22 10:49:20", "2018-03-22 17:49:20", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15457", "9", "2018-03-22 12:13:57", "2018-03-22 19:13:57", "", "March 27 Invitation", "", "inherit", "closed", "closed", "", "march-27-invitation", "", "", "2018-03-22 12:13:57", "2018-03-22 19:13:57", "", "12799", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/March-27-Invitation.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15458", "9", "2018-03-22 12:15:22", "2018-03-22 19:15:22", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We are being considered for a Radical Renovation by HeroWork! Please join us on Tuesday, March 27 at 7:00pm in St. Luke\'s Church hall, 3821 Cedar Hill Cross Road to learn more about this exciting opportunity. Additional information is available <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/March-27-Invitation.pdf\" target=\"_blank\">here</a>. Please RSVP to Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4><strong>Position Filled</strong></h4>\r\nThank you to all those who applied to the posting for a Manager of Development and Communications. The position has now been filled.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n<h4>\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-22 12:15:22", "2018-03-22 19:15:22", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15459", "9", "2018-03-22 12:17:14", "2018-03-22 19:17:14", "[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We are being considered for a Radical Renovation by HeroWork! Please join us on Tuesday, March 27 at 7:00pm in St. Luke\'s Church hall, 3821 Cedar Hill Cross Road to learn more about this exciting opportunity. Additional information is available <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/March-27-Invitation.pdf\" target=\"_blank\">here</a>. Please RSVP to Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3><strong>Welcome to South Island Centre for Counselling and Training </strong></h3>\r\n[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Our History</strong></h4>\r\nSouth Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]\r\n<h4><strong>Our Mission</strong></h4>\r\nSouth Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>What We Do</strong></h4>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]\r\n<h4><strong>Contact Us:</strong></h4>\r\n<h6><strong>Phone:</strong></h6>\r\n<p style=\"margin-top: -10px;\">(250) 472-2851</p>\r\n\r\n<h6><strong>Email:</strong></h6>\r\n<p style=\"margin-top: -10px;\">info@localhost</p>\r\n\r\n<h6><strong>Business Hours:</strong></h6>\r\n<p style=\"margin-top: -10px;\">Counselling is by appointment only.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]\r\n<h4><strong>Current Training Opportunities</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><strong>Upcoming Courses</strong></h4>\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)\r\n\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><strong>Our Supporters</strong></h2>\r\n[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Province of British Columbia</h4>\r\n\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Harbourside Rotary Foundation</h4>\r\n\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"\r\n<h4>United Way of Greater Victoria</h4>\r\n\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>The Catholic Foundation of Vancouver Island</h4>\r\n\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"\r\n<h4>Coast Capital Savings</h4>\r\n\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>City of Victoria</h4>\r\n\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"\r\n<h4>Adore Aquariums</h4>\r\n\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" img_link_target=\"_self\" title=\"\r\n<h4>St. Luke Cedar Hill Anglican Church</h4>\r\n<h4>\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</h4>\r\n[/vc_column_text][/vc_column][/vc_row]", "Home ", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-22 12:17:14", "2018-03-22 19:17:14", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15461", "3", "2018-03-28 09:37:57", "2018-03-28 16:37:57", "<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]\nSouth Island Centre \"[your-subject]\"\n[your-name] <wordpress@localhost>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on South Island Centre (http://localhost:8888/TestSICPage/wordpress)\ninfo@localhost\nReply-To: [your-email]\n\n0\n0\n\nSouth Island Centre \"[your-subject]\"\nSouth Island Centre <wordpress@localhost>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on South Island Centre (http://localhost:8888/TestSICPage/wordpress)\n[your-email]\nReply-To: info@localhost\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.", "Contact form 1", "", "publish", "closed", "closed", "", "contact-form-1", "", "", "2018-03-28 09:37:57", "2018-03-28 16:37:57", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=wpcf7_contact_form&p=15461", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("15462", "3", "2018-03-28 12:51:13", "2018-03-28 19:51:13", "<span style=\"color: #000000;\">[vc_row margin_top=\"0\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" bg_position=\"top\" bg_repeat=\"no-repeat\" bg_cover=\"false\" bg_attachment=\"false\" padding_top=\"40\" padding_bottom=\"40\" parallax_speed=\"0.1\"][vc_column][vc_column_text]At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</span>\r\n\r\n<span style=\"color: #000000;\"><strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\">Positive Psychology Group</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong></span>\r\n\r\n<span style=\"color: #000000;\">For more information on <strong>how to register</strong>: <a style=\"color: #000000;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>. OrÂ call us atÂ Â <i class=\"fa fa-phone\"><span style=\"display: none;\">icon-phone</span></i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]</span>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-03-28 12:51:13", "2018-03-28 19:51:13", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15463", "3", "2018-03-28 12:52:21", "2018-03-28 19:52:21", "<h4><span style=\"color: #000000;\"><strong>How to Register</strong></span></h4>\r\n<ul>\r\n 	<li><span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\" rel=\"noopener\">Click here</a><span style=\"font-size: 14px;\">Â to fill out the registration form. Registrations will be confirmed via email.Â </span></span></li>\r\n 	<li><span style=\"color: #000000;\">Â Call Â <strong>250-472-2851</strong> and leave a voice mail with your contact information</span></li>\r\n</ul>\r\n<span style=\"color: #000000;\">To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.</span>\r\n\r\n<span style=\"color: #000000;\">Registration is on a first-come, first-serve basis.</span>\r\n<h4><span style=\"color: #000000;\"><strong>Payment Options</strong></span></h4>\r\n<ul>\r\n 	<li><span style=\"color: #000000;\">Cash</span></li>\r\n 	<li><span style=\"color: #000000;\">Credit</span></li>\r\n</ul>\r\n<span style=\"color: #000000;\">If paying by credit card, please call the office at <i class=\"fa fa-phone\"></i>Â 250-472-2851 for processing.</span>\r\n<h4><span style=\"color: #000000;\"><strong>Refunds</strong></span></h4>\r\n<ul>\r\n 	<li><span style=\"color: #000000;\">In the case of a cancellation, a full refund will be issued.</span></li>\r\n 	<li><span style=\"color: #000000;\">Where cash payment has been made, refunds will be reimbursed by cheque.</span></li>\r\n</ul>", "Registration & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2018-03-28 12:52:21", "2018-03-28 19:52:21", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15464", "3", "2018-03-28 12:53:43", "2018-03-28 19:53:43", "<h4><span style=\"color: #000000;\">Addictions</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></span>\r\n<h4><span style=\"color: #000000;\">Anxiety</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a> (Children and Youth)</span>\r\n<h4><span style=\"color: #000000;\">Depression</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</span>\r\n<h4><span style=\"color: #000000;\">Divorce and Separation</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #000000;\">Eating Disorders</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Children\'s Hospital Eating Disorders</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></span>\r\n<h4><span style=\"color: #000000;\">Senior Support</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Senior\'s Advocate BC</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></span>\r\n<h4><span style=\"color: #000000;\">Grief and Loss</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></span>\r\n<h4><span style=\"color: #000000;\">Marriage and Family</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></span>\r\n<h4><span style=\"color: #000000;\">Parenting</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></span>\r\n<h4><span style=\"color: #000000;\">Abuse and Trauma</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Men\'s Trauma Centre</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></span>\r\n<h4><span style=\"color: #000000;\">Spiritual Guidance</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></span>\r\n<h4><span style=\"color: #000000;\">Suicide Prevention</span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a></span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #000000;\">Â </span></h4>\r\n&nbsp;", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-03-28 12:53:43", "2018-03-28 19:53:43", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15465", "3", "2018-03-28 12:55:22", "2018-03-28 19:55:22", "<h2><span style=\"color: #000000;\">Our counsellors can help!</span></h2>\r\n<span style=\"color: #000000;\">South Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:</span>\r\n<ul>\r\n 	<li><span style=\"color: #000000;\">grief, loss and life-transitions;</span></li>\r\n 	<li><span style=\"color: #000000;\">traumaÂ or distress;</span></li>\r\n 	<li><span style=\"color: #000000;\">depression;</span></li>\r\n 	<li><span style=\"color: #000000;\">eldercare issues;</span></li>\r\n 	<li><span style=\"color: #000000;\">caregiver support and education;</span></li>\r\n 	<li><span style=\"color: #000000;\">relational conflict;</span></li>\r\n 	<li><span style=\"color: #000000;\">self-esteem issues;</span></li>\r\n 	<li><span style=\"color: #000000;\">emotional, sexual and physical abuse;</span></li>\r\n 	<li><span style=\"color: #000000;\">issues related to faith and spirituality;</span></li>\r\n 	<li><span style=\"color: #000000;\">addictions (substance abuse, gambling, pornography);</span></li>\r\n 	<li><span style=\"color: #000000;\">understanding family systems;</span></li>\r\n 	<li><span style=\"color: #000000;\">marriage preparation;</span></li>\r\n 	<li><span style=\"color: #000000;\">marital conflict</span></li>\r\n</ul>\r\n<span style=\"line-height: 1.5; color: #000000;\">....and more.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\"><strong>Affordable Counselling Services</strong></span></h3>\r\n<span style=\"color: #000000;\">At South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a style=\"color: #000000;\" title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\" rel=\"noopener\">click here</a>Â to view our graduated fee scale whichÂ is based on your combined family income.</span>\r\n\r\n<span style=\"color: #000000;\">To <strong>book an initial appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a style=\"color: #000000;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a> to fill out a General Inquiry Contact Form.</span>\r\n<h3><span style=\"color: #000000;\">Â </span></h3>", "Counselling (old)", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2018-03-28 12:55:22", "2018-03-28 19:55:22", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15466", "3", "2018-03-28 13:01:50", "2018-03-28 20:01:50", "<h2><span style=\"color: #000000;\">Our counsellors can help!</span></h2>\r\n<span style=\"color: #000000;\">South Island Centre counsellors provide a safe and positive environment for you to grow through the challenges of life. Whether you\'re struggling with your relationships, or your self-confidence,Â <strong>you don\'t have to go through it alone!Â </strong>We are here to help you with:</span>\r\n<ul>\r\n 	<li><span style=\"color: #000000;\">grief, loss and life-transitions;</span></li>\r\n 	<li><span style=\"color: #000000;\">traumaÂ or distress;</span></li>\r\n 	<li><span style=\"color: #000000;\">depression;</span></li>\r\n 	<li><span style=\"color: #000000;\">eldercare issues;</span></li>\r\n 	<li><span style=\"color: #000000;\">caregiver support and education;</span></li>\r\n 	<li><span style=\"color: #000000;\">relational conflict;</span></li>\r\n 	<li><span style=\"color: #000000;\">self-esteem issues;</span></li>\r\n 	<li><span style=\"color: #000000;\">emotional, sexual and physical abuse;</span></li>\r\n 	<li><span style=\"color: #000000;\">issues related to faith and spirituality;</span></li>\r\n 	<li><span style=\"color: #000000;\">addictions (substance abuse, gambling, pornography);</span></li>\r\n 	<li><span style=\"color: #000000;\">understanding family systems;</span></li>\r\n 	<li><span style=\"color: #000000;\">marriage preparation;</span></li>\r\n 	<li><span style=\"color: #000000;\">marital conflict</span></li>\r\n</ul>\r\n<span style=\"line-height: 1.5; color: #000000;\">....and more.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #000000;\"><strong>Affordable Counselling Services</strong></span></h3>\r\n<span style=\"color: #000000;\">At South Island Centre we believe it is important that <strong>everyone </strong>has access to Counselling Services. Our goal is to ensure that, regardless of your financial situation, you can still get the help and support you need.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>We do not turn people away for lack of funding</strong> - that\'s why we offer <strong>affordable counselling services</strong> to fit within your budget.Â We will sit down with you and work out a fee that fits your budget. To learn more about our affordable counselling services, <a style=\"color: #000000;\" title=\"Affordable counselling - graduated fee scale\" href=\"http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/\" target=\"_blank\" rel=\"noopener\">click here</a>Â to view our graduated fee scale whichÂ is based on your combined family income.</span>\r\n\r\n<span style=\"color: #000000;\">To <strong>book an initial appointment:</strong> call our office at Â Â <i class=\"fa fa-phone\"></i>Â 250-472-2851, extension 101 or <a style=\"color: #000000;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a> to fill out a General Inquiry Contact Form.</span>\r\n<h3><span style=\"color: #000000;\">Â </span></h3>", "Counselling", "", "inherit", "closed", "closed", "", "5-revision-v1", "", "", "2018-03-28 13:01:50", "2018-03-28 20:01:50", "", "5", "http://localhost:8888/TestSICPage/wordpress/5-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15467", "3", "2018-03-28 13:07:23", "2018-03-28 20:07:23", "<span style=\"color: #000000;\">South Island Centre offers professional counselling services to children and youth between the ages of 6-18.</span>\r\n\r\n<span style=\"color: #000000;\">Our counsellors are highly trained and experienced working with children and youth in addition to supporting parents and families. We provide professional support for a variety of issues affecting children and youth such as anxiety, depression, bullying, separation/divorce, grief and loss, self-esteem issues, academic pressures, etc.</span>\r\n\r\n<span style=\"color: #000000;\">For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: #000000;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a> form.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\">Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-03-28 13:07:23", "2018-03-28 20:07:23", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15468", "3", "2018-03-28 13:08:33", "2018-03-28 20:08:33", "<h4></h4>\r\n<span style=\"color: #000000;\">Contact us via <strong>email</strong>,Â <strong><a style=\"color: #000000;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Call</strong> the CentreÂ at Â <i class=\"fa fa-phone\"></i>Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</span>\r\n\r\n<span style=\"color: #000000;\"><strong>Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline; color: #000000;\"><span>Current Clients:</span></span></h4>\r\n<span style=\"color: #000000;\">Please contact your counsellor directly by calling Â <i class=\"fa fa-phone-square\"><span style=\"display: none;\">icon-phone-square</span></i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-03-28 13:08:33", "2018-03-28 20:08:33", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15469", "3", "2018-03-28 13:11:29", "2018-03-28 20:11:29", " ", "", "", "publish", "closed", "closed", "", "15469", "", "", "2018-03-28 13:11:29", "2018-03-28 20:11:29", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=15469", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15470", "3", "2018-03-28 13:13:50", "2018-03-28 20:13:50", "We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.", "About Us", "", "inherit", "closed", "closed", "", "15113-revision-v1", "", "", "2018-03-28 13:13:50", "2018-03-28 20:13:50", "", "15113", "http://localhost:8888/TestSICPage/wordpress/15113-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15471", "3", "2018-03-28 13:30:10", "2018-03-28 20:30:10", "<span style=\"color: #000000;\">[vc_row][vc_column width=\"1/1\"][dt_gap height=\"15\"][dt_banner target_blank=\"false\" bg_color=\"#ffffff\" bg_opacity=\"50\" text_color=\"#002566\" text_size=\"big\" border_width=\"3\" outer_padding=\"10\" inner_padding=\"10\" min_height=\"150\" animation=\"none\" bg_image=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/banner-background-1.jpg\"]We are being considered for a Radical Renovation by HeroWork! Please join us on Tuesday, March 27 at 7:00pm in St. Luke\'s Church hall, 3821 Cedar Hill Cross Road to learn more about this exciting opportunity. Additional information is available <a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2013/11/March-27-Invitation.pdf\" target=\"_blank\" rel=\"noopener\">here</a>. Please RSVP to Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column width=\"1/1\"][vc_column_text css_animation=\"bottom-to-top\"]</span>\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"</span>\r\n<h4><span style=\"color: #000000;\">The Province of British Columbia</span></h4>\r\n<span style=\"color: #000000;\">\" image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image img_link_target=\"_self\" title=\"</span>\r\n<h4><span style=\"color: #000000;\">The Harbourside Rotary Foundation</span></h4>\r\n<span style=\"color: #000000;\">\" image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" img_link_target=\"_self\" title=\"</span>\r\n<h4><span style=\"color: #000000;\">United Way of Greater Victoria</span></h4>\r\n<span style=\"color: #000000;\">\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image img_link_target=\"_self\" title=\"</span>\r\n<h4><span style=\"color: #000000;\">The Catholic Foundation of Vancouver Island</span></h4>\r\n<span style=\"color: #000000;\">\" image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_link_target=\"_self\" title=\"</span>\r\n<h4><span style=\"color: #000000;\">Coast Capital Savings</span></h4>\r\n<span style=\"color: #000000;\">\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image img_link_target=\"_self\" title=\"</span>\r\n<h4><span style=\"color: #000000;\">City of Victoria</span></h4>\r\n<span style=\"color: #000000;\">\" image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image img_link_target=\"_self\" title=\"</span>\r\n<h4><span style=\"color: #000000;\">Adore Aquariums</span></h4>\r\n<span style=\"color: #000000;\">\" image=\"15311\" alignment=\"center\" img_size=\"medium\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" img_link_target=\"_self\" title=\"</span>\r\n<h4><span style=\"color: #000000;\">St. Luke Cedar Hill Anglican Church</span></h4>\r\n<h4><span style=\"color: #000000;\">\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span></h4>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row]</span>", "Home", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-03-28 13:30:10", "2018-03-28 20:30:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15476", "9", "2018-04-24 12:51:51", "2018-04-24 19:51:51", "<p>[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span></p>\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\n<p><span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span></p>\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\n<p><span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span></p>\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\n<p><span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span></p>\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\n<p><span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span></p>\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\n<p><span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]Â </span></p>\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span></p>\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]<br />\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\n<p>&nbsp;</p>\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span></p>\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span></p>\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)</span></p>\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, October 11 - November 15, 2018)</span></p>\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (2018, dates to be determined.Â  Wait list being taken)</span></p>\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Fall 2018. Dates to be determined)</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]</p>\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\n<p><span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span></p>\n<p><span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]</p>\n", "Home", "", "inherit", "closed", "closed", "", "12799-autosave-v1", "", "", "2018-04-24 12:51:51", "2018-04-24 19:51:51", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15477", "9", "2018-04-24 12:22:56", "2018-04-24 19:22:56", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)[/vc_column_text][dt_gap height=\"30\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]</span>\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>\r\n\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-04-24 12:22:56", "2018-04-24 19:22:56", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15478", "9", "2018-04-24 12:31:07", "2018-04-24 19:31:07", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]Â </span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)</span>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]</span>\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>\r\n\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-04-24 12:31:07", "2018-04-24 19:31:07", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15479", "9", "2018-04-24 12:31:58", "2018-04-24 19:31:58", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]Â </span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)</span>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>\r\n\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-04-24 12:31:58", "2018-04-24 19:31:58", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15480", "9", "2018-04-24 12:35:07", "2018-04-24 19:35:07", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]Â </span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>\r\n\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-04-24 12:35:07", "2018-04-24 19:35:07", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15481", "9", "2018-04-24 12:36:10", "2018-04-24 19:36:10", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]Â </span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Friday night, April 27 and Saturday, April 28, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>\r\n\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-04-24 12:36:10", "2018-04-24 19:36:10", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15482", "9", "2018-04-24 12:39:33", "2018-04-24 19:39:33", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]Â </span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, April 12 - May 17, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (Thursdays, February 8 - March 15, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Fall 2018. Dates to be determined)</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>\r\n\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-04-24 12:39:33", "2018-04-24 19:39:33", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15483", "9", "2018-04-24 12:42:19", "2018-04-24 19:42:19", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_gap height=\"15\"][dt_banner bg_color=\"#ffffff\" text_color=\"#002566\" bg_opacity=\"50\"]Mark your calendars!Â  The South Island Centre is holding its <strong>Annual General Meeting</strong> on Wednesday, May 30th at 7pm in the lounge at St. Luke\'s Hall.Â  The general public is welcome to attend.Â  For further information, please contact Kathryn at 250-472-2851[/dt_banner][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</span>\r\n<h3><span style=\"color: #000000;\"><strong>Welcome to South Island Centre for Counselling and Training </strong></span></h3>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our History</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training Society was established as a registered charity on June 6, 1975. For 42 years, we have been providing professional, affordable, reliable and accessible mental health counselling and training services to those in need in the Capital Region District. We are funded in part by the Province of BC, the City of Victoria, the United Way of Greater Victoria, Coast Capital, the Catholic Foundation of Vancouver Island, the Harbourside Rotary Club and donors.[/vc_column_text][dt_gap height=\"80\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Our Mission</strong></span></h4>\r\n<span style=\"color: #000000;\">South Island Centre for Counselling and Training provides professional, affordable mental health counselling services to all individuals, children, youth and families in support of personal, relational and spiritual wholeness.[/vc_column_text][dt_gap height=\"30\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>What We Do</strong></span></h4>\r\n<span style=\"color: #000000;\">We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. We\'re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.[/vc_column_text][dt_gap height=\"20\"][vc_column_text]</span>\r\n<h4><span style=\"color: #000000;\"><strong>Contact Us:</strong></span></h4>\r\n<h6><span style=\"color: #000000;\"><strong>Phone:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">(250) 472-2851</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Email:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">info@localhost</span></p>\r\n\r\n<h6><span style=\"color: #000000;\"><strong>Business Hours:</strong></span></h6>\r\n<p style=\"margin-top: -10px;\"><span style=\"color: #000000;\">Counselling is by appointment only.</span></p>\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][vc_column width=\"1/3\"][dt_gap height=\"20\"][vc_column_text el_class=\"Support Group for Young Adults with Anxiety (Ages 19-24) Stressed and anxious about school, work, family, life in general? 8 Tuesday evenings, Sept 26-november 21 (no group Oct 31). Only $55. Please submit your registration no later than September 19. \"]Â </span>\r\n<h4><span style=\"color: #000000;\"><strong>Current Training Opportunities</strong></span></h4>\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15329\">Triple P Positive Parenting Program</a> (Wednesdays, March 28 - May 16, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Stress and Anxiety Support Group</a> (Thursdays, March 29 - April 19, 2018)</span>[/vc_column_text][dt_gap height=\"30\"][vc_column_text]\r\n<h4><span style=\"color: #000000;\"><strong>Upcoming Courses</strong></span></h4>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15366\">Me and My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference</a> (Saturday, May 26, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14705\">Marriage Preparation Workshop</a> (Saturday, June 9, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14759\">Family Systems Theory - 5-Day Intensive</a> (August 20 - 24, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15340\">Living With Loss Part 1 - An Introduction to Grief and Loss</a> (Thursdays, October 11 - November 15, 2018)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15268\">Living With Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life</a> (2018, dates to be determined.Â  Wait list being taken)</span>\r\n\r\n<span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me and My Family: An Introduction to Bowen Family Systems Thinking and Family Dynamics</a> (Fall 2018. Dates to be determined)</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_gap height=\"20\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_position=\"bottom\" bg_repeat=\"no-repeat\" bg_cover=\"true\" bg_attachment=\"true\" padding_top=\"34\" padding_bottom=\"40\" margin_top=\"15\" margin_bottom=\"0\" padding_left=\"40\" padding_right=\"40\" parallax_speed=\"0.1\" type=\"1\"][vc_column][vc_column_text css_animation=\"bottom-to-top\"]\r\n<h2><span style=\"color: #000000;\"><strong>Our Supporters</strong></span></h2>\r\n<span style=\"color: #000000;\">[/vc_column_text][dt_gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"13912\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"5\"][vc_single_image image=\"14772\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\" el_class=\"British Columbia Community Gaming \"][vc_single_image image=\"13311\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"14035\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"14590\" img_size=\"full\" alignment=\"center\"][dt_gap height=\"30\"][vc_single_image image=\"15310\" img_size=\"395*175\" alignment=\"center\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"15311\" img_size=\"medium\" alignment=\"center\"][dt_gap height=\"15\"][vc_single_image image=\"15434\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>\r\n\r\n<span style=\"color: #000000;\">[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</span>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "12799-revision-v1", "", "", "2018-04-24 12:42:19", "2018-04-24 19:42:19", "", "12799", "http://localhost:8888/TestSICPage/wordpress/12799-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15484", "9", "2018-04-24 12:45:54", "2018-04-24 19:45:54", "<strong>Â <strong>Course Facilitator: Margaret Anderson</strong> </strong>\n\nPoster:Â <a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2018-Living-With-Loss-Part-1-Poster_Oct-2018.pdf\">2018 Living With Loss Part 1 Poster_Oct 2018</a>\n\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays April 12 - May 17, 2018: 7pmâ€”9pm)", "", "inherit", "closed", "closed", "", "15340-autosave-v1", "", "", "2018-04-24 12:45:54", "2018-04-24 19:45:54", "", "15340", "http://localhost:8888/TestSICPage/wordpress/15340-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15485", "9", "2018-04-24 12:45:28", "2018-04-24 19:45:28", "", "2018 Living With Loss Part 1 Poster_Oct 2018", "", "inherit", "closed", "closed", "", "2018-living-with-loss-part-1-poster_oct-2018", "", "", "2018-04-24 12:45:28", "2018-04-24 19:45:28", "", "15340", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2017/08/2018-Living-With-Loss-Part-1-Poster_Oct-2018.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("15488", "1", "2018-05-01 14:33:51", "2018-05-01 21:33:51", "[give_receipt]", "Donation Confirmation", "", "publish", "closed", "closed", "", "donation-confirmation", "", "", "2018-05-01 14:33:51", "2018-05-01 21:33:51", "", "0", "http://localhost:8888/TestSICPage/wordpress/donation-confirmation/", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15489", "1", "2018-05-01 14:33:51", "2018-05-01 21:33:51", "We&#039;re sorry, your donation failed to process. Please try again or contact site support.", "Donation Failed", "", "publish", "closed", "closed", "", "donation-failed", "", "", "2018-05-01 14:33:51", "2018-05-01 21:33:51", "", "0", "http://localhost:8888/TestSICPage/wordpress/donation-failed/", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15490", "1", "2018-05-01 14:33:51", "2018-05-01 21:33:51", "[donation_history]", "Donation History", "", "publish", "closed", "closed", "", "donation-history", "", "", "2018-05-01 14:33:51", "2018-05-01 21:33:51", "", "0", "http://localhost:8888/TestSICPage/wordpress/donation-history/", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15492", "10", "2018-05-01 14:33:52", "2018-05-01 21:33:52", "", "astra", "", "publish", "closed", "closed", "", "astra", "", "", "2018-05-01 14:33:52", "2018-05-01 21:33:52", "", "0", "http://localhost:8888/TestSICPage/wordpress/astra/", "0", "custom_css", "", "0");
INSERT INTO `wp_posts` VALUES("15493", "10", "2018-05-01 14:33:52", "2018-05-01 21:33:52", "", "astra", "", "inherit", "closed", "closed", "", "15492-revision-v1", "", "", "2018-05-01 14:33:52", "2018-05-01 21:33:52", "", "15492", "http://localhost:8888/TestSICPage/wordpress/15492-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15494", "10", "2018-02-23 12:13:45", "2018-02-23 12:13:45", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual income&nbsp;with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p>\n<p>&nbsp;We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.w</p>		\n			<h2>OUR HISTORY</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "publish", "closed", "closed", "", "who-we-are", "", "", "2018-06-14 09:33:34", "2018-06-14 16:33:34", "", "0", "https://websitedemos.net/alex01/?page_id=5", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15495", "10", "2018-02-23 12:14:19", "2018-02-23 12:14:19", "<h4>Consectetur adipisicing elit</h4>		\n			<h1>WE SUPPORT CHILDREN AND YOUTH TO REACH THEIR FULL POTENTIAL</h1>		\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h2>WHAT WE CARE FOR!</h2>		\n		<img width=\"370\" height=\"250\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-03-free-img.jpg\" alt=\"Stories Image\" srcset=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-03-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-03-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>Bringing Dreams within Reach for Children</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-01-free-img.jpg\" alt=\"Stories Image\" srcset=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-01-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-01-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>The Keys to a New Future for Exploited Chlidren</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-02-free-img.jpg\" alt=\"Stories Image\" srcset=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-02-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-02-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>Boys Rise to Greatness in Burkina Faso</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-04-free-img.jpg\" alt=\"Stories Image\" srcset=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-04-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-04-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>Finding a New Lifeâ€”in a New Land</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-05-free-img-06.jpg\" alt=\"Stories Image\" srcset=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-05-free-img-06.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-05-free-img-06-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>The Children who Break New Ground</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-05-free-img.jpg\" alt=\"Stories Image\" srcset=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/stories-img-05-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-05-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>Bringing Dreams within Reach</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>", "WHAT WE DO", "", "publish", "closed", "closed", "", "what-we-do", "", "", "2018-05-01 14:34:07", "2018-05-01 21:34:07", "", "0", "https://websitedemos.net/alex01/?page_id=6", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15496", "10", "2018-02-23 12:15:24", "2018-02-23 12:15:24", "<h4>Icididunt ut labore et dolore</h4>		\r\n			<h1>These are the heroes with the passion to transform their communities</h1>		\r\n			<h2>OUR PARTNERS</h2>		\r\n		<img width=\"210\" height=\"140\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01-dark.png\" alt=\"Logo\" />		\r\n			<h5>Brazil  |  Rio de Janeiro</h5>		\r\n			<h3>â€” Children Care Foundation</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip.</p>		\r\n		<img width=\"210\" height=\"140\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-02-dark.png\" alt=\"Logo\" />		\r\n			<h5>Burkina Faso  |  Banfora</h5>		\r\n			<h3>â€” All Children  Foundation</h3>		\r\n		<p>Consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure.</p>		\r\n		<img width=\"210\" height=\"140\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03-dark.png\" alt=\"Logo\" />		\r\n			<h5>Benin  | Cotonou</h5>		\r\n			<h3>â€” The Childrenâ€™s Foundation</h3>		\r\n		<p>Elit sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\r\n		<img width=\"210\" height=\"140\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04-dark.png\" alt=\"Logo\" />		\r\n			<h5>Burundi  |  Bujumbura</h5>		\r\n			<h3>â€” Where Children Come First</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip.</p>		\r\n		<img width=\"210\" height=\"140\" src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-05-dark.png\" alt=\"Logo\" />		\r\n			<h5>Cameroon  |  Douala</h5>		\r\n			<h3>â€” Nobodyâ€™s Children Foundation</h3>		\r\n		<p>Consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure.</p>", "OUR PARTNERS", "", "publish", "closed", "closed", "", "our-partners", "", "", "2018-05-01 14:34:07", "2018-05-01 21:34:07", "", "0", "https://websitedemos.net/alex01/?page_id=7", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15497", "10", "2018-02-23 12:15:55", "2018-02-23 12:15:55", "<h4>Dolor sit amet</h4>		\r\n			<h1>contact us</h1>		\r\n			<h3>We would love to hear from you</h3>		\r\n		<p>Please write or call us with your questions or comments</p>		\r\n			<h6>Address</h6>		\r\n		<p>123 Fifth Avenue, New York, NY 10160, USA</p>		\r\n			<h6>Contact</h6>		\r\n					<ul>\r\n							<li >\r\n										+1 910-626-85255\r\n									</li>\r\n								<li >\r\n										contact@charity.com\r\n									</li>\r\n						</ul>\r\n			<h6>Keep in touch</h6>		\r\n							<a href=\"\" target=\"_blank\">\r\n					Facebook\r\n				</a>\r\n							<a href=\"\" target=\"_blank\">\r\n					Twitter\r\n				</a>\r\n							<a href=\"\" target=\"_blank\">\r\n					Google-plus\r\n				</a>\r\n			<h3>Contact us</h3>		\r\n		[contact-form-7 id=\"78\" title=\"Contact Form\"]", "CONTACT US", "", "publish", "closed", "closed", "", "contact-us-2", "", "", "2018-02-23 12:15:55", "2018-02-23 12:15:55", "", "0", "https://websitedemos.net/alex01/?page_id=8", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15498", "10", "2018-02-23 12:17:35", "2018-02-23 12:17:35", " ", "", "", "publish", "closed", "closed", "", "9", "", "", "2018-02-23 12:17:35", "2018-02-23 12:17:35", "", "0", "https://websitedemos.net/alex01/?p=9", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15499", "10", "2018-02-23 12:17:35", "2018-02-23 12:17:35", " ", "", "", "publish", "closed", "closed", "", "10", "", "", "2018-02-23 12:17:35", "2018-02-23 12:17:35", "", "0", "https://websitedemos.net/alex01/?p=10", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15500", "10", "2018-02-23 12:17:35", "2018-02-23 12:17:35", " ", "", "", "publish", "closed", "closed", "", "11", "", "", "2018-02-23 12:17:35", "2018-02-23 12:17:35", "", "0", "https://websitedemos.net/alex01/?p=11", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15501", "10", "2018-02-23 12:17:35", "2018-02-23 12:17:35", " ", "", "", "publish", "closed", "closed", "", "12", "", "", "2018-02-23 12:17:35", "2018-02-23 12:17:35", "", "0", "https://websitedemos.net/alex01/?p=12", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15513", "10", "2018-02-23 12:13:14", "2018-02-23 12:13:14", "<h4>Because only together we can</h4>		\r\n			<h1>build a world where all youth are safe, strong & valued</h1>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n			<h2>WHO WE ARE</h2>		\r\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n				<figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/gallery-img-01.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/gallery-img-02-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/gallery-img-03.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\r\n			<h2>WHAT WE DO</h2>		\r\n			<h5>01.</h5>		\r\n			<h3>â€” We Find & Fund</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>02.</h5>		\r\n			<h3>â€” We Build Networks</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>03.</h5>		\r\n			<h3>â€” We Strengthen</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>04.</h5>		\r\n			<h3>â€” We Educate</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>05.</h5>		\r\n			<h3>â€” We Provide Care</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>06.</h5>		\r\n			<h3>â€” We Consult</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n			<h2>IMPACT STORIES</h2>		\r\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n			<h2>PARTNERS</h2>		\r\n				<figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-05.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-02.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\r\n			<h2>DONATE</h2>		\r\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\r\n			<a href=\"#\">\r\n						donate\r\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-02-23 12:13:14", "2018-02-23 12:13:14", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15514", "10", "2018-02-23 12:13:45", "2018-02-23 12:13:45", "<h4>Lorem ipsum dolor sit amet</h4>		\r\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\r\n			<h2>WHO WE ARE</h2>		\r\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n			<h2>OUR APPROACH</h2>		\r\n			<h3>We facilitate safe learning spaces</h3>		\r\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\r\n			<h5>01.</h5>		\r\n			<h4>â€” Our Mission</h4>		\r\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\r\n			<h5>02.</h5>		\r\n			<h4>â€” Our Vision</h4>		\r\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\r\n			<h5>03.</h5>		\r\n			<h4>â€” Our Story</h4>		\r\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\r\n			<h2>PARTNERS</h2>		\r\n				<figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-05.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-02.png\" alt=\"Logo\" /></figure><figure><img src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-02-23 12:13:45", "2018-02-23 12:13:45", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15515", "10", "2018-02-23 12:14:19", "2018-02-23 12:14:19", "<h4>Consectetur adipisicing elit</h4>		\n			<h1>WE SUPPORT CHILDREN AND YOUTH TO REACH THEIR FULL POTENTIAL</h1>		\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h2>WHAT WE CARE FOR!</h2>		\n		<img width=\"370\" height=\"250\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-03-free-img.jpg\" alt=\"Stories Image\" srcset=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-03-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-03-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>Bringing Dreams within Reach for Children</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-01-free-img.jpg\" alt=\"Stories Image\" srcset=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-01-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-01-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>The Keys to a New Future for Exploited Chlidren</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-02-free-img.jpg\" alt=\"Stories Image\" srcset=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-02-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-02-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>Boys Rise to Greatness in Burkina Faso</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-04-free-img.jpg\" alt=\"Stories Image\" srcset=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-04-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-04-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>Finding a New Lifeâ€”in a New Land</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-05-free-img-06.jpg\" alt=\"Stories Image\" srcset=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-05-free-img-06.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-05-free-img-06-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>The Children who Break New Ground</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>		\n		<img width=\"370\" height=\"250\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-05-free-img.jpg\" alt=\"Stories Image\" srcset=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-05-free-img.jpg 370w, https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/stories-img-05-free-img-300x203.jpg 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />		\n		<h4>Bringing Dreams within Reach</h4><p>Lorem ipsum dolor sit, consectetur adipisicing elit, sed do eiusmod ut et dolore magna aliqua ut enim ad minim veniam quis.</p>", "WHAT WE DO", "", "inherit", "closed", "closed", "", "15495-revision-v1", "", "", "2018-02-23 12:14:19", "2018-02-23 12:14:19", "", "15495", "http://localhost:8888/TestSICPage/wordpress/15495-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15516", "10", "2018-02-23 12:15:24", "2018-02-23 12:15:24", "<h4>Icididunt ut labore et dolore</h4>		\r\n			<h1>These are the heroes with the passion to transform their communities</h1>		\r\n			<h2>OUR PARTNERS</h2>		\r\n		<img width=\"210\" height=\"140\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-01-dark.png\" alt=\"Logo\" />		\r\n			<h5>Brazil  |  Rio de Janeiro</h5>		\r\n			<h3>â€” Children Care Foundation</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip.</p>		\r\n		<img width=\"210\" height=\"140\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-02-dark.png\" alt=\"Logo\" />		\r\n			<h5>Burkina Faso  |  Banfora</h5>		\r\n			<h3>â€” All Children  Foundation</h3>		\r\n		<p>Consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure.</p>		\r\n		<img width=\"210\" height=\"140\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-03-dark.png\" alt=\"Logo\" />		\r\n			<h5>Benin  | Cotonou</h5>		\r\n			<h3>â€” The Childrenâ€™s Foundation</h3>		\r\n		<p>Elit sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\r\n		<img width=\"210\" height=\"140\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-04-dark.png\" alt=\"Logo\" />		\r\n			<h5>Burundi  |  Bujumbura</h5>		\r\n			<h3>â€” Where Children Come First</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip.</p>		\r\n		<img width=\"210\" height=\"140\" src=\"https://websitedemos.net/charity-02/wp-content/uploads/sites/173/2018/02/partners-logo-05-dark.png\" alt=\"Logo\" />		\r\n			<h5>Cameroon  |  Douala</h5>		\r\n			<h3>â€” Nobodyâ€™s Children Foundation</h3>		\r\n		<p>Consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud. Exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat duis aute irure.</p>", "OUR PARTNERS", "", "inherit", "closed", "closed", "", "15496-revision-v1", "", "", "2018-02-23 12:15:24", "2018-02-23 12:15:24", "", "15496", "http://localhost:8888/TestSICPage/wordpress/15496-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15524", "0", "2018-05-01 14:34:15", "2018-05-01 21:34:15", "", "partners-logo-04-dark.png", "", "inherit", "closed", "closed", "", "partners-logo-04-dark-png", "", "", "2018-05-01 14:34:15", "2018-05-01 21:34:15", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/partners-logo-04-dark.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15533", "10", "2018-05-01 15:32:16", "2018-05-01 22:32:16", "<h4>Because only together we can</h4>		\r\n			<h1>build a world where all youth are safe, strong & valued</h1>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n			<h2>WHO WE ARE</h2>		\r\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-01.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-02-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-03.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\r\n			<h2>WHAT WE DO</h2>		\r\n			<h5>01.</h5>		\r\n			<h3>â€” We Find & Fund</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>02.</h5>		\r\n			<h3>â€” We Build Networks</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>03.</h5>		\r\n			<h3>â€” We Strengthen</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>04.</h5>		\r\n			<h3>â€” We Educate</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>05.</h5>		\r\n			<h3>â€” We Provide Care</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<h5>06.</h5>		\r\n			<h3>â€” We Consult</h3>		\r\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n			<h2>IMPACT STORIES</h2>		\r\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n			<h2>PARTNERS</h2>		\r\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-05.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-02.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\r\n			<h2>DONATE</h2>		\r\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\r\n			<a href=\"#\">\r\n						donate\r\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 15:32:16", "2018-05-01 22:32:16", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15534", "10", "2018-05-01 15:32:16", "2018-05-01 22:32:16", "<h4>Because only together we can</h4>		\n			<h1>build a world where all youth are safe, strong & valued</h1>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 15:32:16", "2018-05-01 22:32:16", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15535", "10", "2018-05-01 15:49:11", "2018-05-01 22:49:11", "<h1>Welcome to <br>South Island Centre for Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 15:49:11", "2018-05-01 22:49:11", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15536", "10", "2018-05-01 15:49:54", "2018-05-01 22:49:54", "<h1>Welcome to <br>South Island Centre <br>for<br> Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 15:49:54", "2018-05-01 22:49:54", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15538", "10", "2018-05-01 16:21:21", "2018-05-01 23:21:21", "<h1>Welcome to <br>South Island Centre <br>for<br> Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n		<h3>Professional, affordable, income-based counselling services for all individuals</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 16:21:21", "2018-05-01 23:21:21", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15539", "10", "2018-05-01 16:22:23", "2018-05-01 23:22:23", "<h1>Welcome to <br>South Island Centre <br>for<br> Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 16:22:23", "2018-05-01 23:22:23", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15540", "10", "2018-05-01 16:23:51", "2018-05-01 23:23:51", "<h1>Welcome to <br>South Island Centre <br>for<br> Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 16:23:51", "2018-05-01 23:23:51", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15542", "10", "2018-05-01 16:24:04", "2018-05-01 23:24:04", "<h1>Welcome to <br>South Island Centre <br>for<br> Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3>Janeâ€™s been a migrant worker since she was just 12</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 16:24:04", "2018-05-01 23:24:04", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15544", "10", "2018-05-01 16:39:27", "2018-05-01 23:39:27", "<h1>Welcome to <br>South Island Centre <br>for<br> Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><p style=\"font-size: 15px;\">That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</p><p style=\"font-size: 15px;\">My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</p><p style=\"font-size: 15px;\">I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</p><p style=\"font-size: 15px;\">We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.</p><p style=\"font-size: 15px;\">The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</p><p style=\"font-size: 15px;\">With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a style=\"font-size: 15px; color: #0c8c01;\" href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</p><p style=\"font-size: 15px;\">One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</p><p style=\"font-size: 15px;\">My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</p><p style=\"font-size: 15px;\">Â </p><ul style=\"display: flex;\"><li title=\"Edit Widget\">Edit Widget</li><li title=\"Duplicate Widget\">Duplicate Widget</li><li title=\"Remove Widget\">Remove Widget</li><li title=\"Remove Widget\">Â </li></ul>Â 		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 16:39:27", "2018-05-01 23:39:27", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15545", "10", "2018-05-01 16:39:55", "2018-05-01 23:39:55", "", "MainLogo-Lg", "", "inherit", "closed", "closed", "", "mainlogo-lg", "", "", "2018-05-01 16:39:55", "2018-05-01 23:39:55", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/MainLogo-Lg.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15546", "10", "2018-05-01 16:39:56", "2018-05-01 23:39:56", "", "MainLogo-Lg", "", "inherit", "closed", "closed", "", "mainlogo-lg-2", "", "", "2018-05-01 16:39:56", "2018-05-01 23:39:56", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/MainLogo-Lg.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15547", "10", "2018-05-01 16:39:57", "2018-05-01 23:39:57", "", "MainLogo-sm", "", "inherit", "closed", "closed", "", "mainlogo-sm", "", "", "2018-05-01 16:39:57", "2018-05-01 23:39:57", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/MainLogo-sm.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15548", "10", "2018-05-01 16:39:57", "2018-05-01 23:39:57", "", "BC", "", "inherit", "closed", "closed", "", "bc", "", "", "2018-05-01 16:39:57", "2018-05-01 23:39:57", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15549", "10", "2018-05-01 16:39:58", "2018-05-01 23:39:58", "", "BC", "", "inherit", "closed", "closed", "", "bc-2", "", "", "2018-05-01 16:39:58", "2018-05-01 23:39:58", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpeg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15550", "10", "2018-05-01 16:39:59", "2018-05-01 23:39:59", "", "Logo-Cath-Fnd-Vanc-Isld-300x300", "", "inherit", "closed", "closed", "", "logo-cath-fnd-vanc-isld-300x300", "", "", "2018-05-01 16:39:59", "2018-05-01 23:39:59", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15551", "10", "2018-05-01 16:40:00", "2018-05-01 23:40:00", "", "Community-Gaming-BC-logo", "", "inherit", "closed", "closed", "", "community-gaming-bc-logo-2", "", "", "2018-05-01 16:40:00", "2018-05-01 23:40:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Community-Gaming-BC-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15552", "10", "2018-05-01 16:40:00", "2018-05-01 23:40:00", "", "adore-logo", "", "inherit", "closed", "closed", "", "adore-logo-2", "", "", "2018-05-01 16:40:00", "2018-05-01 23:40:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15553", "10", "2018-05-01 16:40:01", "2018-05-01 23:40:01", "", "CoastCapital", "", "inherit", "closed", "closed", "", "coastcapital", "", "", "2018-05-01 16:40:01", "2018-05-01 23:40:01", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15554", "10", "2018-05-01 16:40:02", "2018-05-01 23:40:02", "", "Rotary International", "", "inherit", "closed", "closed", "", "rotary-international", "", "", "2018-05-01 16:40:02", "2018-05-01 23:40:02", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15555", "10", "2018-05-01 16:40:02", "2018-05-01 23:40:02", "", "UnitedWayFull375x165-300x300", "", "inherit", "closed", "closed", "", "unitedwayfull375x165-300x300", "", "", "2018-05-01 16:40:02", "2018-05-01 23:40:02", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15556", "10", "2018-05-01 16:40:03", "2018-05-01 23:40:03", "", "Victoria300x300", "", "inherit", "closed", "closed", "", "victoria300x300", "", "", "2018-05-01 16:40:03", "2018-05-01 23:40:03", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15557", "10", "2018-05-01 16:40:04", "2018-05-01 23:40:04", "", "St-Luke-Cedar-Hill-Logo1-300x300", "", "inherit", "closed", "closed", "", "st-luke-cedar-hill-logo1-300x300", "", "", "2018-05-01 16:40:04", "2018-05-01 23:40:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15558", "10", "2018-05-01 16:40:05", "2018-05-01 23:40:05", "", "CSS-logo-e1481049941965", "", "inherit", "closed", "closed", "", "css-logo-e1481049941965", "", "", "2018-05-01 16:40:05", "2018-05-01 23:40:05", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CSS-logo-e1481049941965.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15560", "10", "2018-05-01 16:47:44", "2018-05-01 23:47:44", "<h1>Welcome to <br>South Island Centre <br>for<br> Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-01 16:47:44", "2018-05-01 23:47:44", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15563", "10", "2018-05-08 14:11:12", "2018-05-08 21:11:12", "<h1>Welcome to <br>South Island Centre <br>for<br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-06-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-07-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-08-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"\" alt=\"Where We Are\" /></figure><figure><img src=\"\" alt=\"Find Us\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-05-free-img.jpg\" alt=\"Gallery Image\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/gallery-img-04-free-img.jpg\" alt=\"Gallery Image\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 14:11:12", "2018-05-08 21:11:12", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15565", "10", "2018-05-08 14:21:41", "2018-05-08 21:21:41", "<h1>Welcome to <br>South Island Centre <br>for<br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 14:21:41", "2018-05-08 21:21:41", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15566", "10", "2018-05-08 14:22:05", "2018-05-08 21:22:05", "<h1>Welcome to <br>South Island Centre for Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 14:22:05", "2018-05-08 21:22:05", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15567", "10", "2018-05-08 14:23:04", "2018-05-08 21:23:04", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 14:23:04", "2018-05-08 21:23:04", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15570", "10", "2018-05-08 14:24:54", "2018-05-08 21:24:54", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg.png", "cropped-MainLogo-Lg.png", "", "inherit", "closed", "closed", "", "cropped-mainlogo-lg-png", "", "", "2018-05-08 14:24:54", "2018-05-08 21:24:54", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15572", "10", "2018-05-08 14:27:19", "2018-05-08 21:27:19", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg-1.png", "cropped-MainLogo-Lg-1.png", "", "inherit", "closed", "closed", "", "cropped-mainlogo-lg-1-png", "", "", "2018-05-08 14:27:19", "2018-05-08 21:27:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15575", "10", "2018-05-08 14:31:39", "2018-05-08 21:31:39", " ", "", "", "publish", "closed", "closed", "", "15575", "", "", "2018-06-14 08:40:23", "2018-06-14 15:40:23", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?p=15575", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15576", "10", "2018-05-08 14:31:39", "2018-05-08 21:31:39", " ", "", "", "publish", "closed", "closed", "", "15576", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?p=15576", "15", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15577", "10", "2018-05-08 14:31:39", "2018-05-08 21:31:39", " ", "", "", "publish", "closed", "closed", "", "15577", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?p=15577", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15578", "10", "2018-05-08 14:31:39", "2018-05-08 21:31:39", " ", "", "", "publish", "closed", "closed", "", "board-of-directors", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15113", "http://localhost:8888/TestSICPage/wordpress/?p=15578", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15579", "10", "2018-05-08 14:34:37", "2018-05-08 21:34:37", " ", "", "", "publish", "closed", "closed", "", "15579", "", "", "2018-06-14 08:40:23", "2018-06-14 15:40:23", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=15579", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15581", "10", "2018-05-08 14:34:37", "2018-05-08 21:34:37", " ", "", "", "publish", "closed", "closed", "", "how-we-can-help", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=15581", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15582", "10", "2018-05-08 14:34:37", "2018-05-08 21:34:37", " ", "", "", "publish", "closed", "closed", "", "15582", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=15582", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15583", "10", "2018-05-08 14:34:37", "2018-05-08 21:34:37", " ", "", "", "publish", "closed", "closed", "", "15583", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=15583", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15585", "10", "2018-05-08 14:34:37", "2018-05-08 21:34:37", " ", "", "", "publish", "closed", "closed", "", "15585", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15117", "http://localhost:8888/TestSICPage/wordpress/?p=15585", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15588", "10", "2018-05-08 14:36:47", "2018-05-08 21:36:47", " ", "", "", "publish", "closed", "closed", "", "15588", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15121", "http://localhost:8888/TestSICPage/wordpress/?p=15588", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15589", "10", "2018-05-08 14:36:47", "2018-05-08 21:36:47", " ", "", "", "publish", "closed", "closed", "", "register-for-training", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15121", "http://localhost:8888/TestSICPage/wordpress/?p=15589", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15590", "10", "2018-05-08 14:36:47", "2018-05-08 21:36:47", " ", "", "", "publish", "closed", "closed", "", "15590", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15121", "http://localhost:8888/TestSICPage/wordpress/?p=15590", "13", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15591", "10", "2018-05-08 14:36:47", "2018-05-08 21:36:47", " ", "", "", "publish", "closed", "closed", "", "15591", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=15591", "14", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15592", "10", "2018-05-08 15:06:13", "2018-05-08 22:06:13", "", "IMG_6263", "", "inherit", "closed", "closed", "", "img_6263", "", "", "2018-05-08 15:06:13", "2018-05-08 22:06:13", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_6263.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15593", "10", "2018-05-08 15:06:16", "2018-05-08 22:06:16", "", "IMG_9479", "", "inherit", "closed", "closed", "", "img_9479", "", "", "2018-05-08 15:06:16", "2018-05-08 22:06:16", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_9479.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15594", "10", "2018-05-08 15:06:19", "2018-05-08 22:06:19", "", "IMG_0087", "", "inherit", "closed", "closed", "", "img_0087", "", "", "2018-05-08 15:06:19", "2018-05-08 22:06:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_0087.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15595", "10", "2018-05-08 15:06:22", "2018-05-08 22:06:22", "", "IMG_3436", "", "inherit", "closed", "closed", "", "img_3436", "", "", "2018-05-08 15:06:22", "2018-05-08 22:06:22", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_3436.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15596", "10", "2018-05-08 15:06:25", "2018-05-08 22:06:25", "", "IMG_1261", "", "inherit", "closed", "closed", "", "img_1261", "", "", "2018-05-08 15:06:25", "2018-05-08 22:06:25", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_1261.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15597", "10", "2018-05-08 15:06:28", "2018-05-08 22:06:28", "", "IMG_0884", "", "inherit", "closed", "closed", "", "img_0884", "", "", "2018-05-08 15:06:28", "2018-05-08 22:06:28", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_0884.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15598", "10", "2018-05-08 15:06:30", "2018-05-08 22:06:30", "", "IMG_1498", "", "inherit", "closed", "closed", "", "img_1498", "", "", "2018-05-08 15:06:30", "2018-05-08 22:06:30", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_1498.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15599", "10", "2018-05-08 15:06:33", "2018-05-08 22:06:33", "", "IMG_4595", "", "inherit", "closed", "closed", "", "img_4595", "", "", "2018-05-08 15:06:33", "2018-05-08 22:06:33", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_4595.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15600", "10", "2018-05-08 15:06:36", "2018-05-08 22:06:36", "", "IMG_6680", "", "inherit", "closed", "closed", "", "img_6680", "", "", "2018-05-08 15:06:36", "2018-05-08 22:06:36", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_6680.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15601", "10", "2018-05-08 15:06:39", "2018-05-08 22:06:39", "", "IMG_3359", "", "inherit", "closed", "closed", "", "img_3359", "", "", "2018-05-08 15:06:39", "2018-05-08 22:06:39", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_3359.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15603", "10", "2018-05-08 15:13:41", "2018-05-08 22:13:41", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg-2.png", "cropped-MainLogo-Lg-2.png", "", "inherit", "closed", "closed", "", "cropped-mainlogo-lg-2-png", "", "", "2018-05-08 15:13:41", "2018-05-08 22:13:41", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15609", "10", "2018-05-08 16:34:33", "2018-05-08 23:34:33", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 16:34:33", "2018-05-08 23:34:33", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15610", "10", "2018-05-08 16:36:08", "2018-05-08 23:36:08", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 16:36:08", "2018-05-08 23:36:08", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15611", "10", "2018-05-08 16:36:26", "2018-05-08 23:36:26", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 16:36:26", "2018-05-08 23:36:26", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15612", "10", "2018-05-08 16:37:59", "2018-05-08 23:37:59", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 16:37:59", "2018-05-08 23:37:59", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15613", "10", "2018-05-08 16:40:48", "2018-05-08 23:40:48", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-08 16:40:48", "2018-05-08 23:40:48", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15614", "10", "2018-05-08 16:59:38", "2018-05-08 23:59:38", "We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.", "About Us", "", "inherit", "closed", "closed", "", "15113-revision-v1", "", "", "2018-05-08 16:59:38", "2018-05-08 23:59:38", "", "15113", "http://localhost:8888/TestSICPage/wordpress/15113-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15615", "10", "2018-05-08 16:59:57", "2018-05-08 23:59:57", "We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.", "About Us", "", "inherit", "closed", "closed", "", "15113-revision-v1", "", "", "2018-05-08 16:59:57", "2018-05-08 23:59:57", "", "15113", "http://localhost:8888/TestSICPage/wordpress/15113-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15616", "10", "2018-05-08 17:00:29", "2018-05-09 00:00:29", "We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.", "About Us", "", "inherit", "closed", "closed", "", "15113-revision-v1", "", "", "2018-05-08 17:00:29", "2018-05-09 00:00:29", "", "15113", "http://localhost:8888/TestSICPage/wordpress/15113-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15617", "10", "2018-05-08 17:00:58", "2018-05-09 00:00:58", "We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances. Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.", "About Us", "", "inherit", "closed", "closed", "", "15113-revision-v1", "", "", "2018-05-08 17:00:58", "2018-05-09 00:00:58", "", "15113", "http://localhost:8888/TestSICPage/wordpress/15113-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15619", "10", "2018-05-08 17:03:17", "2018-05-09 00:03:17", "<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public.Â </h4><h4>Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.</h4><h4>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </h4><h4>Call the Centre directly for more information on these services.</h4>", "About Us", "", "inherit", "closed", "closed", "", "15113-revision-v1", "", "", "2018-05-08 17:03:17", "2018-05-09 00:03:17", "", "15113", "http://localhost:8888/TestSICPage/wordpress/15113-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15620", "10", "2018-05-08 17:05:11", "2018-05-09 00:05:11", "<h4>Lorem ipsum dolor sit amet</h4>		\r\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\r\n			<h2>WHO WE ARE</h2>		\r\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\r\n			<a href=\"#\">\r\n						read more\r\n					</a>\r\n			<h2>OUR APPROACH</h2>		\r\n			<h3>We facilitate safe learning spaces</h3>		\r\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\r\n			<h5>01.</h5>		\r\n			<h4>â€” Our Mission</h4>		\r\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\r\n			<h5>02.</h5>		\r\n			<h4>â€” Our Vision</h4>		\r\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\r\n			<h5>03.</h5>		\r\n			<h4>â€” Our Story</h4>		\r\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\r\n			<h2>PARTNERS</h2>		\r\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-05.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-02.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-08 17:05:11", "2018-05-09 00:05:11", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15621", "10", "2018-05-08 17:05:11", "2018-05-09 00:05:11", "<h4>Lorem ipsum dolor sit amet</h4>		\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\n			<h2>WHO WE ARE</h2>		\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>OUR APPROACH</h2>		\n			<h3>We facilitate safe learning spaces</h3>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\n			<h5>01.</h5>		\n			<h4>â€” Our Mission</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>02.</h5>		\n			<h4>â€” Our Vision</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>03.</h5>		\n			<h4>â€” Our Story</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-06.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-07.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"How We Can Help\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-04.png\" alt=\"Logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-03.png\" alt=\"Logo\" /></figure><figure><img src=\"\" alt=\"\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/02/partners-logo-01.png\" alt=\"Logo\" /></figure>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-08 17:05:11", "2018-05-09 00:05:11", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15622", "10", "2018-05-08 17:07:01", "2018-05-09 00:07:01", "<h4>Lorem ipsum dolor sit amet</h4>		\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\n			<h2>WHO WE ARE</h2>		\n		<h3>Partnering to build a world where all children are lorem ipsum dolor sit amet, consectetur.</h3><p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>OUR History</h2>		\n			<h3>We facilitate safe learning spaces</h3>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\n			<h5>01.</h5>		\n			<h4>â€” Our Mission</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>02.</h5>		\n			<h4>â€” Our Vision</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>03.</h5>		\n			<h4>â€” Our Story</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-08 17:07:01", "2018-05-09 00:07:01", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15623", "10", "2018-05-08 17:08:56", "2018-05-09 00:08:56", "<h4>Lorem ipsum dolor sit amet</h4>		\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\n			<h2>WHO WE ARE</h2>		\n		<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.Â </h4><p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n			<h3>We facilitate safe learning spaces</h3>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\n			<h5>01.</h5>		\n			<h4>â€” Our Mission</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>02.</h5>		\n			<h4>â€” Our Vision</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>03.</h5>		\n			<h4>â€” Our Story</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-08 17:08:56", "2018-05-09 00:08:56", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15624", "10", "2018-05-08 17:09:38", "2018-05-09 00:09:38", "<h4>Lorem ipsum dolor sit amet</h4>		\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\n			<h2>WHO WE ARE</h2>		\n		<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.&nbsp;</h4><p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n			<h3>We facilitate safe learning spaces</h3>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\n			<h5>01.</h5>		\n			<h4>â€” Our Mission</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>02.</h5>		\n			<h4>â€” Our Vision</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>03.</h5>		\n			<h4>â€” Our Story</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-08 17:09:38", "2018-05-09 00:09:38", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15625", "10", "2018-05-08 17:10:30", "2018-05-09 00:10:30", "<h4>Lorem ipsum dolor sit amet</h4>		\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\n			<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. \n</h4>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors.Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n			<h3>We facilitate safe learning spaces</h3>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\n			<h5>01.</h5>		\n			<h4>â€” Our Mission</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>02.</h5>		\n			<h4>â€” Our Vision</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>03.</h5>		\n			<h4>â€” Our Story</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-08 17:10:30", "2018-05-09 00:10:30", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15626", "10", "2018-05-08 17:11:49", "2018-05-09 00:11:49", "<h4>Lorem ipsum dolor sit amet</h4>		\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\n			<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â  Â  Â  Â  Â  Â Â We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n			<h3>We facilitate safe learning spaces</h3>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\n			<h5>01.</h5>		\n			<h4>â€” Our Mission</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>02.</h5>		\n			<h4>â€” Our Vision</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>03.</h5>		\n			<h4>â€” Our Story</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-08 17:11:49", "2018-05-09 00:11:49", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15627", "10", "2018-05-08 17:12:09", "2018-05-09 00:12:09", "<h4>Lorem ipsum dolor sit amet</h4>		\n			<h1>across the globe, we are united in our dedication to childrenâ€™s rights</h1>		\n			<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n			<h3>We facilitate safe learning spaces</h3>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur excepteur sint occaecat cupidatat non proident sunt in culpa qui.Â Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore. Duis aute irure dolor. In reprehenderit in voluptate velit esse cillum dolore.</p><p>Officia deserunt mollit anim id est laborum sed ut perspiciatis unde omnis iste natus error sit voluptatem, totam rem aperiam eaque ipsa quae ab illo inventore veritatis.Â </p>		\n			<h5>01.</h5>		\n			<h4>â€” Our Mission</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>02.</h5>		\n			<h4>â€” Our Vision</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>03.</h5>		\n			<h4>â€” Our Story</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-08 17:12:09", "2018-05-09 00:12:09", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15628", "10", "2018-05-08 17:13:32", "2018-05-09 00:13:32", " ", "", "", "publish", "closed", "closed", "", "15628", "", "", "2018-06-14 08:40:23", "2018-06-14 15:40:23", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=15628", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15629", "10", "2018-05-12 07:44:44", "2018-05-12 14:44:44", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 07:44:44", "2018-05-12 14:44:44", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15630", "10", "2018-05-12 07:45:22", "2018-05-12 14:45:22", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>WHAT WE DO</h2>		\n			<h5>01.</h5>		\n			<h3>â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>02.</h5>		\n			<h3>â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>03.</h5>		\n			<h3>â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>04.</h5>		\n			<h3>â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>05.</h5>		\n			<h3>â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<h5>06.</h5>		\n			<h3>â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n		<h3>A Brighter Future â€” for Cambodiaâ€™s Children</h3><h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco nisi reprehenderit in voluptate.</h5>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 07:45:22", "2018-05-12 14:45:22", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15631", "10", "2018-05-12 07:49:34", "2018-05-12 14:49:34", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<p>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</p><p>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</p><p>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</p><p>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</p><p>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.</p><p>The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</p><p>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</p><p>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</p><p>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</p>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 07:49:34", "2018-05-12 14:49:34", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15632", "10", "2018-05-12 07:49:55", "2018-05-12 14:49:55", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<p>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fueling my anxiety and my anxiety, and panic attacks were fueling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</p><p>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</p><p>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</p><p>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</p><p>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.</p><p>The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aformentioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</p><p>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</p><p>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</p><p>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</p>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 07:49:55", "2018-05-12 14:49:55", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15633", "10", "2018-05-12 07:56:01", "2018-05-12 14:56:01", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5><br />That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5><br />My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5><br />I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5><br />We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5><br />With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5><br />One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5><br />My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 07:56:01", "2018-05-12 14:56:01", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15637", "10", "2018-05-12 08:12:33", "2018-05-12 15:12:33", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us and change the course of a childâ€™s life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 08:12:33", "2018-05-12 15:12:33", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15638", "10", "2018-05-12 08:14:08", "2018-05-12 15:14:08", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br> <br>change the course of a life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 08:14:08", "2018-05-12 15:14:08", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15639", "10", "2018-05-12 08:14:34", "2018-05-12 15:14:34", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 08:14:34", "2018-05-12 15:14:34", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15640", "10", "2018-05-12 08:16:49", "2018-05-12 15:16:49", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"#Who We Are\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 08:16:49", "2018-05-12 15:16:49", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15641", "10", "2018-05-12 08:17:06", "2018-05-12 15:17:06", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"#\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 08:17:06", "2018-05-12 15:17:06", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15642", "10", "2018-05-12 08:18:59", "2018-05-12 15:18:59", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 08:18:59", "2018-05-12 15:18:59", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15643", "10", "2018-05-12 08:20:35", "2018-05-12 15:20:35", "<h4>Lorem ipsum dolor sit amet</h4>		\r\n			<h1>Help put a smile on a child\'s face</h1>		\r\n		[give_form id=\"101\"]", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:20:35", "2018-05-12 15:20:35", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15644", "10", "2018-05-12 08:20:35", "2018-05-12 15:20:35", "<h4>Lorem ipsum dolor sit amet</h4>		\n			<h1>Help put a smile on a child\'s face</h1>		\n		[give_form id=\"101\"]", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:20:35", "2018-05-12 15:20:35", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15645", "10", "2018-05-12 08:22:19", "2018-05-12 15:22:19", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:22:19", "2018-05-12 15:22:19", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15646", "10", "2018-05-12 08:22:39", "2018-05-12 15:22:39", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:22:39", "2018-05-12 15:22:39", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15647", "10", "2018-05-12 08:23:11", "2018-05-12 15:23:11", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><ul><li><strong>Option 1 (preferred)</strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 2</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 3:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:23:11", "2018-05-12 15:23:11", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15648", "10", "2018-05-12 08:24:04", "2018-05-12 15:24:04", "<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><ul><li><strong>Option 1 (preferred)</strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 2</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 3:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "Support Us", "", "inherit", "closed", "closed", "", "170-autosave-v1", "", "", "2018-05-12 08:24:04", "2018-05-12 15:24:04", "", "170", "http://localhost:8888/TestSICPage/wordpress/170-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15649", "10", "2018-05-12 08:24:19", "2018-05-12 15:24:19", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:24:19", "2018-05-12 15:24:19", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15650", "10", "2018-05-12 08:24:38", "2018-05-12 15:24:38", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 3 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><ul><li><strong>Option 1 (preferred)</strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 2</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 3:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:24:38", "2018-05-12 15:24:38", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15651", "10", "2018-05-12 08:25:12", "2018-05-12 15:25:12", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><ul><li><strong>Option 2 (preferred)</strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 2</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 3:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:25:12", "2018-05-12 15:25:12", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15652", "10", "2018-05-12 08:29:04", "2018-05-12 15:29:04", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><p>Â  Â  Â </p><ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2 </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â to email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:29:04", "2018-05-12 15:29:04", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15653", "10", "2018-05-12 08:29:49", "2018-05-12 15:29:49", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><p>Â </p><ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2 </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) or email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:29:49", "2018-05-12 15:29:49", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15654", "10", "2018-05-12 08:31:31", "2018-05-12 15:31:31", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><p>Â </p><ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2 </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a style=\"font-size: 15px;\" title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â toÂ email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-12 08:31:31", "2018-05-12 15:31:31", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15657", "10", "2018-05-12 08:36:18", "2018-05-12 15:36:18", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-12 08:36:18", "2018-05-12 15:36:18", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15658", "10", "2018-05-15 09:19:43", "2018-05-15 16:19:43", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><p>Â </p><ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2 </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a style=\"font-size: 15px;\" title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â toÂ email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-15 09:19:43", "2018-05-15 16:19:43", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15660", "10", "2018-05-15 09:23:07", "2018-05-15 16:23:07", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-sm.png", "cropped-MainLogo-sm.png", "", "inherit", "closed", "closed", "", "cropped-mainlogo-sm-png", "", "", "2018-05-15 09:23:07", "2018-05-15 16:23:07", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-sm.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15663", "10", "2018-05-15 11:06:52", "2018-05-15 18:06:52", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n			<h3>We facilitate safe learning spaces</h3>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h5>01.</h5>		\n			<h4>â€” Our Mission</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>02.</h5>		\n			<h4>â€” Our Vision</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>		\n			<h5>03.</h5>		\n			<h4>â€” Our Story</h4>		\n		<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud exercitation ullamco.</h5>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 11:06:52", "2018-05-15 18:06:52", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15664", "10", "2018-05-15 11:11:01", "2018-05-15 18:11:01", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 11:11:01", "2018-05-15 18:11:01", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15665", "10", "2018-05-15 11:12:04", "2018-05-15 18:12:04", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 11:12:04", "2018-05-15 18:12:04", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15666", "10", "2018-05-15 11:13:40", "2018-05-15 18:13:40", "[vc_row][vc_column][vc_column_text]<span style=\"color: #000000;\">We are physically located at 3821A Cedar Hill Cross Road</span>.\r\n\r\nBus Routes \r\n#27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.\r\n\r\n#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.\r\n\r\n#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 11:13:40", "2018-05-15 18:13:40", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15667", "10", "2018-05-15 11:13:40", "2018-05-15 18:13:40", "<p>[We are physically located at 3821A Cedar Hill Cross Road.</p><p>Bus Routes<br /> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.</p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.</p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.</p><p>Our offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.</p><p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p><p>Â </p><p>Â </p><p>Â </p><p>Â </p><p>[/vc_column_text][/vc_column][/vc_row]</p>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 11:13:40", "2018-05-15 18:13:40", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15668", "10", "2018-05-15 11:15:27", "2018-05-15 18:15:27", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg.jpg", "cropped-MainLogo-Lg.jpg", "", "inherit", "closed", "closed", "", "cropped-mainlogo-lg-jpg", "", "", "2018-05-15 11:15:27", "2018-05-15 18:15:27", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15670", "10", "2018-05-15 11:16:49", "2018-05-15 18:16:49", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg-3.png", "cropped-MainLogo-Lg-3.png", "", "inherit", "closed", "closed", "", "cropped-mainlogo-lg-3-png", "", "", "2018-05-15 11:16:49", "2018-05-15 18:16:49", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/cropped-MainLogo-Lg-3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15672", "10", "2018-05-15 14:00:53", "2018-05-15 21:00:53", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 14:00:53", "2018-05-15 21:00:53", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15673", "10", "2018-05-15 14:01:04", "2018-05-15 21:01:04", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 14:01:04", "2018-05-15 21:01:04", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15674", "10", "2018-05-15 14:01:11", "2018-05-15 21:01:11", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 14:01:11", "2018-05-15 21:01:11", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15675", "10", "2018-05-15 14:02:03", "2018-05-15 21:02:03", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n			<h4>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.</h4>		\n		<p>Â </p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â ", "WHO WE ARE", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 14:02:03", "2018-05-15 21:02:03", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15676", "10", "2018-05-15 14:08:04", "2018-05-15 21:08:04", "", "IMG_3375", "", "inherit", "closed", "closed", "", "img_3375", "", "", "2018-05-15 14:08:04", "2018-05-15 21:08:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_3375.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15677", "10", "2018-05-15 14:08:24", "2018-05-15 21:08:24", "", "IMG_3375", "", "inherit", "closed", "closed", "", "img_3375-2", "", "", "2018-05-15 14:08:24", "2018-05-15 21:08:24", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_3375-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15678", "10", "2018-05-15 14:08:40", "2018-05-15 21:08:40", "", "IMG_3375", "", "inherit", "closed", "closed", "", "img_3375-3", "", "", "2018-05-15 14:08:40", "2018-05-15 21:08:40", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/IMG_3375-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15679", "10", "2018-05-15 14:12:41", "2018-05-15 21:12:41", "<p>We are physically located at 3821A Cedar Hill Cross Road.</p><p>Bus Routes<br /> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.</p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.</p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.</p><p>Our offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.</p><p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p><p>Â </p><p>Â </p>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:12:41", "2018-05-15 21:12:41", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15680", "10", "2018-05-15 14:13:19", "2018-05-15 21:13:19", "<h2>Where We Are\n</h2>		\n		<p>We are physically located at 3821A Cedar Hill Cross Road.</p><p>Bus Routes<br /> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.</p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.</p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.</p><p>Our offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.</p><p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p><p>Â </p><p>Â </p>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:13:19", "2018-05-15 21:13:19", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15681", "10", "2018-05-15 14:14:18", "2018-05-15 21:14:18", "<h2>Where We Are</h2>\r\nWe are physically located at 3821A Cedar Hill Cross Road.\r\n\r\nBus Routes\r\n#27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.\r\n\r\n#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.\r\n\r\n#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>", "", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:14:18", "2018-05-15 21:14:18", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15682", "10", "2018-05-15 14:14:42", "2018-05-15 21:14:42", "<h2>Where We Are</h2>\r\nWe are physically located at 3821A Cedar Hill Cross Road.\r\n\r\nBus Routes\r\n#27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.\r\n\r\n#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.\r\n\r\n#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>", "Where we are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:14:42", "2018-05-15 21:14:42", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15683", "10", "2018-05-15 14:14:52", "2018-05-15 21:14:52", "<h2>Where We Are</h2>\r\nWe are physically located at 3821A Cedar Hill Cross Road.\r\n\r\nBus Routes\r\n#27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.\r\n\r\n#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.\r\n\r\n#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>", "WHERE WE ARE", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:14:52", "2018-05-15 21:14:52", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15685", "10", "2018-05-15 14:16:57", "2018-05-15 21:16:57", "<h2>Where We Are\n</h2>		\n		<p>We are physically located at 3821A Cedar Hill Cross Road.</p><p>Bus Routes<br /> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.</p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.</p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.</p><p>Our offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.</p><p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p><p>Â </p><p>Â </p>", "WHERE WE ARE", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:16:57", "2018-05-15 21:16:57", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15686", "10", "2018-05-15 14:18:50", "2018-05-15 21:18:50", "<h2>Where We Are</h2>\r\nWe are physically located at 3821A Cedar Hill Cross Road.\r\n\r\nBus Routes\r\n#27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.\r\n\r\n#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.\r\n\r\n#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.\r\n\r\nOur offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:18:50", "2018-05-15 21:18:50", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15687", "10", "2018-05-15 14:20:09", "2018-05-15 21:20:09", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\r\n\r\n<strong>Email:</strong>Â info@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\r\n\r\n<strong>Counselling:</strong>Â Counselling is by appointment only.\r\n\r\n<strong>Our Mailing Address:</strong>\r\n3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:20:09", "2018-05-15 21:20:09", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15688", "10", "2018-05-15 14:20:09", "2018-05-15 21:20:09", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\n<strong>Email:</strong>Â info@localhost\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\n<strong>Counselling:</strong>Â Counselling is by appointment only.\n<strong>Our Mailing Address:</strong>\n3821A Cedar Hill Cross Road\nVictoria, BC V8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:20:09", "2018-05-15 21:20:09", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15689", "10", "2018-05-15 14:20:57", "2018-05-15 21:20:57", "[vc_row][vc_column][vc_column_text]<strong>Phone:</strong>Â (250) 472-2851\n<strong>Email:</strong>Â info@localhost\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\n<strong>Counselling:</strong>Â Counselling is by appointment only.\n<strong>Our Mailing Address:</strong>\n3821A Cedar Hill Cross Road\nVictoria, BC V8P 2M6[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:20:57", "2018-05-15 21:20:57", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15690", "10", "2018-05-15 14:21:18", "2018-05-15 21:21:18", "<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:21:18", "2018-05-15 21:21:18", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15691", "10", "2018-05-15 14:21:34", "2018-05-15 21:21:34", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:21:34", "2018-05-15 21:21:34", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15692", "10", "2018-05-15 14:21:40", "2018-05-15 21:21:40", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:21:40", "2018-05-15 21:21:40", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15693", "10", "2018-05-15 14:21:46", "2018-05-15 21:21:46", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:21:46", "2018-05-15 21:21:46", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15694", "10", "2018-05-15 14:22:30", "2018-05-15 21:22:30", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:22:30", "2018-05-15 21:22:30", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15695", "10", "2018-05-15 14:24:23", "2018-05-15 21:24:23", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:24:23", "2018-05-15 21:24:23", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15696", "10", "2018-05-15 14:26:36", "2018-05-15 21:26:36", "<h2>How To Reach Us</h2>\r\n<strong>Phone:</strong>Â (250) 472-2851\r\n\r\n<strong>Email:</strong>Â info@localhost\r\n\r\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\r\n\r\n<strong>Counselling:</strong>Â Counselling is by appointment only.\r\n\r\n<strong>Our Mailing Address:</strong>\r\n3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:26:36", "2018-05-15 21:26:36", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15697", "10", "2018-05-15 14:27:20", "2018-05-15 21:27:20", "<h2>Where We Are\n</h2>		\n		<p>We are physically located at 3821A Cedar Hill Cross Road.</p><p>Bus Routes<br /> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.</p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.</p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.</p><p>Our offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.</p><p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p><p>Â </p><p>Â </p>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:27:20", "2018-05-15 21:27:20", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15698", "10", "2018-05-15 14:36:27", "2018-05-15 21:36:27", "<h2>Where We Are\n</h2>		\n		<p>We are physically located at 3821A Cedar Hill Cross Road.</p><p>Bus Routes<br /> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.</p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.</p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.</p><p>Our offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.</p><p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p><p>Â </p><p>Â </p>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:36:27", "2018-05-15 21:36:27", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15699", "10", "2018-05-15 14:38:59", "2018-05-15 21:38:59", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:38:59", "2018-05-15 21:38:59", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15700", "10", "2018-05-15 14:41:08", "2018-05-15 21:41:08", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#\" role=\"button\">\n						Check Out Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:41:08", "2018-05-15 21:41:08", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15701", "10", "2018-05-15 14:42:26", "2018-05-15 21:42:26", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" role=\"button\">\n						Check Out Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:42:26", "2018-05-15 21:42:26", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15702", "10", "2018-05-15 14:42:30", "2018-05-15 21:42:30", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Check Out Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:42:30", "2018-05-15 21:42:30", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15703", "10", "2018-05-15 14:43:04", "2018-05-15 21:43:04", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Check Out Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:43:04", "2018-05-15 21:43:04", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15704", "10", "2018-05-15 14:43:32", "2018-05-15 21:43:32", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Check Out Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:43:32", "2018-05-15 21:43:32", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15705", "10", "2018-05-15 14:44:23", "2018-05-15 21:44:23", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Check Out Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:44:23", "2018-05-15 21:44:23", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15706", "10", "2018-05-15 14:47:55", "2018-05-15 21:47:55", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:47:55", "2018-05-15 21:47:55", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15707", "10", "2018-05-15 14:52:05", "2018-05-15 21:52:05", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:52:05", "2018-05-15 21:52:05", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15708", "10", "2018-05-15 14:54:21", "2018-05-15 21:54:21", "<h2>Where We Are\n</h2>		\n		<p>We are physically located at 3821A Cedar Hill Cross Road.</p><p>Bus Routes<br /> #27 and 28 come from downtown along Shelbourne to Cedar Hill Cross Road. It\'s a 5 minute walk up the hill.</p><p>#24 travels along Cedar Hill Road and stops right at the corner of Cedar Hill and Cedar Hill Cross Roads.</p><p>#14 (UVic) travels along Richmond Avenue and stops at Richmond and Cedar Hill Cross Road. It\'s a 10 minute walk from there.</p><p>Our offices are located in the houseÂ at the back of<strong>Â </strong>the parking lot of St Lukeâ€™s Church.The parking lot is on the corner of Cedar Hill Rd and Cedar Hill Cross Rd (just up from Shelbourne).Â Parking is free.</p><p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2645.6627198144065!2d-123.33945278474195!3d48.463000579250746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x548f73e5fbe236a9%3A0x4b98360044e6d944!2sSouth+Island+Centre+For+Counselling+%26+Training+Society!5e0!3m2!1szh-CN!2sca!4v1498455087451\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p><p>Â </p><p>Â </p>", "Where We Are", "", "inherit", "closed", "closed", "", "24-revision-v1", "", "", "2018-05-15 14:54:21", "2018-05-15 21:54:21", "", "24", "http://localhost:8888/TestSICPage/wordpress/24-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15709", "10", "2018-05-15 14:57:31", "2018-05-15 21:57:31", "[gravityform id=\"3\" name=\"Register for Training\"]", "Register for Training", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2018-05-15 14:57:31", "2018-05-15 21:57:31", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15710", "10", "2018-05-15 14:58:22", "2018-05-15 21:58:22", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:58:22", "2018-05-15 21:58:22", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15711", "10", "2018-05-15 14:58:43", "2018-05-15 21:58:43", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:</strong>Â info@localhost</p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 14:58:43", "2018-05-15 21:58:43", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15712", "10", "2018-05-15 15:01:24", "2018-05-15 22:01:24", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â &lt;aÂ href=\"mailto:info@localhost\"&gt;</strong>info@localhost<strong>&lt;/a&gt;Â </strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 15:01:24", "2018-05-15 22:01:24", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15713", "10", "2018-05-15 15:04:09", "2018-05-15 22:04:09", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â <a href=\"mailto:webmaster@example.com\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-15 15:04:09", "2018-05-15 22:04:09", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15715", "10", "2018-05-15 15:15:06", "2018-05-15 22:15:06", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 15:15:06", "2018-05-15 22:15:06", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15716", "10", "2018-05-15 15:16:08", "2018-05-15 22:16:08", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "HOME", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 15:16:08", "2018-05-15 22:16:08", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15717", "10", "2018-05-15 15:18:42", "2018-05-15 22:18:42", "<h2>WHO WE ARE</h2>\r\n<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>\r\nWe also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWeâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.\r\n\r\nCall the Centre directly for more information on these services.\r\n<h2>OUR History</h2>\r\n<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>\r\nSince then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.\r\nOur commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.\r\n<h2>WHAT WE DO</h2>\r\n<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>\r\nWe offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.\r\n\r\nWe also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.\r\n<h3>Children and Youth Counselling</h3>\r\n<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>\r\nUsing talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.\r\n<h3>Training Courses and Pastoral Care</h3>\r\n<h4>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.</h4>\r\nFour to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 15:18:42", "2018-05-15 22:18:42", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15718", "10", "2018-05-15 15:21:27", "2018-05-15 22:21:27", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n			<h4>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.</h4>		\n		<p>Â </p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 15:21:27", "2018-05-15 22:21:27", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15719", "10", "2018-05-15 15:22:35", "2018-05-15 22:22:35", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-15 15:22:35", "2018-05-15 22:22:35", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15720", "10", "2018-05-15 15:25:25", "2018-05-15 22:25:25", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHAT WE DO</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">01.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">02.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">03.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">04.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">05.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">06.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Councillors", "", "publish", "closed", "closed", "", "councillors", "", "", "2018-05-15 15:25:25", "2018-05-15 22:25:25", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=councillors", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("15721", "10", "2018-05-15 15:25:25", "2018-05-15 22:25:25", "", "Councillors", "", "inherit", "closed", "closed", "", "15720-revision-v1", "", "", "2018-05-15 15:25:25", "2018-05-15 22:25:25", "", "15720", "http://localhost:8888/TestSICPage/wordpress/15720-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15722", "10", "2018-05-15 15:25:25", "2018-05-15 22:25:25", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHAT WE DO</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">01.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Find & Fund</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">02.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Build Networks</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">03.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Strengthen</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">04.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Educate</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">05.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Provide Care</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h5 data-elementor-setting-key=\"title\">06.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">â€” We Consult</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua ut enim ad minim veniam, quis nostrud.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Councillors", "", "inherit", "closed", "closed", "", "15720-revision-v1", "", "", "2018-05-15 15:25:25", "2018-05-15 22:25:25", "", "15720", "http://localhost:8888/TestSICPage/wordpress/15720-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15724", "10", "2018-05-15 16:10:50", "2018-05-15 23:10:50", "<p><strong>Amber Eves MEd, RCC</strong>, Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p><p><strong>Margaret Anderson CHPCA, BCHPCA,Â </strong>specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p><p><strong>Barbara Baillie MAPPC, BCATR</strong>, holdsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p><p><strong>Bill Cole MA, RCC</strong>, works with individuals, couples, and families around a variety of issues. An experienced facilitator, he also teaches family systems theory, marriage preparation, pastoral counselling and pastoral care team training.</p><p><strong>Jennifer Cole MA, CCC</strong>,received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counseling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p><p><strong>Audrey Gibson BSc, OT, MDiv, SW</strong>, holdsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p><p><strong>Joy GillettÂ MPH, RCC</strong>, is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p><p><strong>Rosemary Merritt Â MEd, MPE, RCC</strong>, focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p><p><strong>Peter Simmons BA, MDiv,</strong> received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p><p><strong>Laurie Truant, MA, RCC</strong>, specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psychoeducational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Rosemary Merritt  <br><br>MEd, MPE, RCC</h3>		\n		<p>Â Focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-15 16:10:50", "2018-05-15 23:10:50", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15725", "10", "2018-05-15 16:11:04", "2018-05-15 23:11:04", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Rosemary Merritt  <br><br>MEd, MPE, RCC</h3>		\n		<p>Â Focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-15 16:11:04", "2018-05-15 23:11:04", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15726", "10", "2018-05-15 16:11:16", "2018-05-15 23:11:16", "<h2>Our Counsellors</h2>\r\n<h3>Amber Eves\r\n\r\nMEd, RCC</h3>\r\nDirector of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.\r\n<h3>Margaret Anderson\r\n\r\nCHPCA, BCHPCA</h3>\r\nSpecializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.\r\n<h3>Barbara Baillie\r\n\r\nMAPPC, BCATR</h3>\r\nHoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.\r\n<h3>Laurie Truant\r\n\r\nMA, RCC</h3>\r\nSpecializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.\r\n<h3>Jennifer Cole\r\n\r\nMA, CCC</h3>\r\nReceived her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.\r\n<h3>Audrey Gibson\r\n\r\nBSc, OT, MDiv, SW</h3>\r\nHoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.\r\n<h3>Joy Gillett\r\n\r\nMPH, RCC</h3>\r\nIs a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.\r\n<h3>Rosemary Merritt\r\n\r\nMEd, MPE, RCC</h3>\r\nFocuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.\r\n<h3>Peter Simmons\r\n\r\nBA, MDiv</h3>\r\nReceived his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-15 16:11:16", "2018-05-15 23:11:16", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15727", "10", "2018-05-15 16:14:01", "2018-05-15 23:14:01", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Rosemary Merritt  <br><br>MEd, MPE, RCC</h3>		\n		<p>Â Focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-15 16:14:01", "2018-05-15 23:14:01", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15728", "10", "2018-05-15 16:16:17", "2018-05-15 23:16:17", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Rosemary Merritt  <br><br>MEd, MPE, RCC</h3>		\n		<p>Â Focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-15 16:16:17", "2018-05-15 23:16:17", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15729", "10", "2018-05-15 16:19:04", "2018-05-15 23:19:04", "<h2>Board Of Directors</h2>		\n		<p><strong>Â </strong></p><p><strong>Jim Gibson (Chair)</strong></p><p><strong style=\"font-size: 15px;\">Barbara Underhill (Vice-Chair, Treasurer) </strong>Barbara has supported the centre since 2007 in a variety of roles. She has anÂ MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.</p><p><strong>Sally Tuckey (Secretary) </strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. Â Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.Â Her interests are many â€“ but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.</p><p style=\"color: #222222;\"><strong>Sybil Bagshaw </strong>SybilÂ worked as an RN until herÂ retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \"Mother\'s of Preschoolers\" at St Pauls Anglican Church in Fort Garry. Â SybilÂ was one of the founding members the Fort Garry Family Life program and was their treasurer for severalÂ years.Â Â She alsoÂ  was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for theÂ community club andÂ for the Kidney and Cancer foundations both in WinnipegÂ and in Victoria.Â </p><p style=\"color: #222222;\"><strong>Greg Beattie </strong>Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nationâ€™s mental health services. He has 20 yearsâ€™ experience as a clinical supervisor, 15 yearsâ€™ experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. Â Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.</p><p><strong>Helen Morrison </strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.</p>", "Board of Directors", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2018-05-15 16:19:04", "2018-05-15 23:19:04", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15730", "10", "2018-05-15 16:19:59", "2018-05-15 23:19:59", "<h2>Board Of Directors</h2>		\n		<p><strong>Â </strong></p><p><strong>Jim Gibson (Chair)</strong></p><p><strong style=\"font-size: 15px;\">Barbara Underhill (Vice-Chair, Treasurer) </strong>Barbara has supported the centre since 2007 in a variety of roles. She has anÂ MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.</p><p><strong>Sally Tuckey (Secretary) </strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. Â Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.Â Her interests are many â€“ but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.</p><p style=\"color: #222222;\"><strong>Sybil Bagshaw </strong>SybilÂ worked as an RN until herÂ retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \"Mother\'s of Preschoolers\" at St Pauls Anglican Church in Fort Garry. Â SybilÂ was one of the founding members the Fort Garry Family Life program and was their treasurer for severalÂ years.Â Â She alsoÂ  was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for theÂ community club andÂ for the Kidney and Cancer foundations both in WinnipegÂ and in Victoria.Â </p><p style=\"color: #222222;\"><strong>Greg Beattie </strong>Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nationâ€™s mental health services. He has 20 yearsâ€™ experience as a clinical supervisor, 15 yearsâ€™ experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. Â Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.</p><p><strong>Helen Morrison </strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.</p>", "Board of Directors", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2018-05-15 16:19:59", "2018-05-15 23:19:59", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15731", "10", "2018-05-15 16:20:43", "2018-05-15 23:20:43", "<h1>Welcome to\r\nSouth Island Centre\r\nfor\r\nCounselling and Training</h1>\r\n<h4>Because only together we can</h4>\r\n<h2>WHO WE ARE</h2>\r\n<h2>Professional, affordable, income-based counselling services for all individuals</h2>\r\nWe provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.\r\n\r\nWeâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.\r\n\r\n<a role=\"button\" href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">\r\nread more\r\n</a>\r\n<h2>IMPACT STORIES</h2>\r\n<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>\r\n<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5>\r\n<h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5>\r\n<h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5>\r\n<h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5>\r\n<h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\nThe following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5>\r\n<h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5>\r\n<h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5>\r\n<h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>\r\n<h2>PARTNERS</h2>\r\n<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure>\r\n<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure>\r\n<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure>\r\n<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure>\r\n<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure>\r\n<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure>\r\n<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure>\r\n<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>\r\n<h2>DONATE</h2>\r\n<h1>support us\r\n&amp;\r\nchange the course of a life today!</h1>\r\n<a role=\"button\" href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\">\r\ndonate\r\n</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 16:20:43", "2018-05-15 23:20:43", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15732", "10", "2018-05-15 16:21:27", "2018-05-15 23:21:27", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">How To Reach Us\n</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â <a href=\"mailto:webmaster@example.com\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "How To Reach Us", "", "publish", "closed", "closed", "", "how-to-reach-us", "", "", "2018-05-15 16:21:27", "2018-05-15 23:21:27", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=how-to-reach-us", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("15733", "10", "2018-05-15 16:21:27", "2018-05-15 23:21:27", "", "How To Reach Us", "", "inherit", "closed", "closed", "", "15732-revision-v1", "", "", "2018-05-15 16:21:27", "2018-05-15 23:21:27", "", "15732", "http://localhost:8888/TestSICPage/wordpress/15732-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15734", "10", "2018-05-15 16:21:27", "2018-05-15 23:21:27", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">How To Reach Us\n</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â <a href=\"mailto:webmaster@example.com\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "How To Reach Us", "", "inherit", "closed", "closed", "", "15732-revision-v1", "", "", "2018-05-15 16:21:27", "2018-05-15 23:21:27", "", "15732", "http://localhost:8888/TestSICPage/wordpress/15732-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15735", "10", "2018-05-15 16:22:30", "2018-05-15 23:22:30", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â <a href=\"mailto:webmaster@example.com\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 16:22:30", "2018-05-15 23:22:30", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15736", "10", "2018-05-15 16:23:36", "2018-05-15 23:23:36", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â <a href=\"mailto:webmaster@example.com\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 16:23:36", "2018-05-15 23:23:36", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15737", "10", "2018-05-15 16:24:41", "2018-05-15 23:24:41", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â <a href=\"mailto:webmaster@example.com\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 16:24:41", "2018-05-15 23:24:41", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15738", "10", "2018-05-15 16:26:01", "2018-05-15 23:26:01", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â <a href=\"mailto:webmaster@example.com\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 16:26:01", "2018-05-15 23:26:01", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15739", "10", "2018-05-15 16:28:08", "2018-05-15 23:28:08", "[vc_row][vc_column][vc_column_text]<span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Our experienced counsellors</span></span>Â provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\r\n\r\n<span style=\"color: #000000;\">We can help with:</span>\r\n<ul>\r\n 	<li>depression, stress and anxiety</li>\r\n 	<li>grief, loss, and life-transitions</li>\r\n 	<li>senior care issues</li>\r\n 	<li>end-of-life care</li>\r\n 	<li>support and education</li>\r\n 	<li>trauma and distress</li>\r\n 	<li>relationship conflicts</li>\r\n 	<li>self-esteem issues</li>\r\n 	<li>emotional, sexual, and physical abuse</li>\r\n 	<li>issues related to faith and spirituality</li>\r\n 	<li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\nAt South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.\r\nTalk to your counsellor about your payment plans and options.\r\n\r\n<span style=\"color: #000000;\">ToÂ MakeÂ an Appointment</span>\r\n<ol>\r\n 	<li>Call our office at Â Â Â <i class=\"fa fa-phone-square\"></i>Â Â 250-472-2851.</li>\r\n 	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li>\r\n</ol>\r\n[/vc_column_text][/vc_column][/vc_row]", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-15 16:28:08", "2018-05-15 23:28:08", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15740", "10", "2018-05-15 16:30:33", "2018-05-15 23:30:33", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<strong>Phone:</strong>Â (250) 472-2851\n<strong>Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong>\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\n<strong>Counselling:</strong>Â Counselling is by appointment only.\n<strong>Our Mailing Address:</strong>\n3821A Cedar Hill Cross Road\nVictoria, BC V8P 2M6		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 16:30:33", "2018-05-15 23:30:33", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15742", "10", "2018-05-15 16:35:01", "2018-05-15 23:35:01", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong>Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-15 16:35:01", "2018-05-15 23:35:01", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15744", "10", "2018-05-15 19:31:54", "2018-05-16 02:31:54", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>. If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><p>Â </p><ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2 </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i>icon-phone-square</i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i>icon-phone</i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a style=\"font-size: 15px;\" title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â toÂ email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-15 19:31:54", "2018-05-16 02:31:54", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15745", "10", "2018-05-16 07:07:57", "2018-05-16 14:07:57", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<strong>Phone:</strong>Â (250) 472-2851\n<strong>Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong>\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\n<strong>Counselling:</strong>Â Counselling is by appointment only.\n<strong>Our Mailing Address:</strong>\n3821A Cedar Hill Cross Road\nVictoria, BC V8P 2M6		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-16 07:07:57", "2018-05-16 14:07:57", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15746", "10", "2018-05-16 07:09:57", "2018-05-16 14:09:57", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-16 07:09:57", "2018-05-16 14:09:57", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15747", "10", "2018-05-16 07:15:09", "2018-05-16 14:15:09", "<h2>How To Reach Us\n</h2>		\n		<strong>Phone:</strong>Â (250) 472-2851\n<strong>Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong>\n<strong>Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\n<strong>Counselling:</strong>Â Counselling is by appointment only.\n<strong>Our Mailing Address:</strong>\n3821A Cedar Hill Cross Road\nVictoria, BC V8P 2M6		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-16 07:15:09", "2018-05-16 14:15:09", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15748", "10", "2018-05-16 07:15:44", "2018-05-16 14:15:44", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Â </strong></p><p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 15px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong style=\"font-size: 15px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p><p>Â </p>		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-16 07:15:44", "2018-05-16 14:15:44", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15749", "10", "2018-05-16 07:16:21", "2018-05-16 14:16:21", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Â </strong><strong style=\"font-size: 15px;\">Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 15px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong style=\"font-size: 15px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p><p>Â </p>		\n			<a href=\"#http://southislandcentre.blogspot.ca/\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-16 07:16:21", "2018-05-16 14:16:21", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15750", "10", "2018-05-16 07:17:44", "2018-05-16 14:17:44", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Rosemary Merritt  <br><br>MEd, MPE, RCC</h3>		\n		<p>Â Focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-16 07:17:44", "2018-05-16 14:17:44", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15751", "10", "2018-05-16 07:20:31", "2018-05-16 14:20:31", "<h2>How We Can Help</h2>		\n		<p>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</p><p>We can help with:</p><ul><li>depression, stress and anxiety</li><li>grief, loss, and life-transitions</li><li>senior care issues</li><li>end-of-life care</li><li>support and education</li><li>trauma and distress</li><li>relationship conflicts</li><li>self-esteem issues</li><li>emotional, sexual, and physical abuse</li><li>issues related to faith and spirituality</li><li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li></ul><p>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<br /> Talk to your counsellor about your payment plans and options.</p><p>ToÂ MakeÂ an Appointment</p><ol><li>Call our office at Â Â Â Â Â 250-472-2851.</li><li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li></ol><p>Â </p>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-16 07:20:31", "2018-05-16 14:20:31", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15752", "10", "2018-05-16 07:23:13", "2018-05-16 14:23:13", "<h2>How We Can Help</h2>		\n		<p>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</p><p>We can help with:</p><ul><li>depression, stress and anxiety</li><li>grief, loss, and life-transitions</li><li>senior care issues</li><li>end-of-life care</li><li>support and education</li><li>trauma and distress</li><li>relationship conflicts</li><li>self-esteem issues</li><li>emotional, sexual, and physical abuse</li><li>issues related to faith and spirituality</li><li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li></ul><p>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<br /> Talk to your counsellor about your payment plans and options.</p><p>ToÂ MakeÂ an Appointment</p><ol><li>Call our office at Â Â Â Â Â 250-472-2851.</li><li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li></ol><p>Â </p>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-16 07:23:13", "2018-05-16 14:23:13", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15753", "10", "2018-05-16 07:24:12", "2018-05-16 14:24:12", "<h2>How We Can Help</h2>		\n		<p>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</p><p>We can help with:</p><ul><li>depression, stress and anxiety</li><li>grief, loss, and life-transitions</li><li>senior care issues</li><li>end-of-life care</li><li>support and education</li><li>trauma and distress</li><li>relationship conflicts</li><li>self-esteem issues</li><li>emotional, sexual, and physical abuse</li><li>issues related to faith and spirituality</li><li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li></ul><p>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.<br /> Talk to your counsellor about your payment plans and options.</p><p>ToÂ MakeÂ an Appointment</p><ol><li>Call our office at Â Â Â Â Â 250-472-2851.</li><li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li></ol><p>Â </p>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-16 07:24:12", "2018-05-16 14:24:12", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15754", "10", "2018-05-16 07:24:49", "2018-05-16 14:24:49", "<span style=\"font-size: 8pt;\"><em>The information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.Â We doÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any outside source.</em></span>\r\n\r\n[gravityform id=\"14\" title=\"true\" description=\"true\"]\r\n\r\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2018-05-16 07:24:49", "2018-05-16 14:24:49", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15755", "10", "2018-05-16 07:27:18", "2018-05-16 14:27:18", "<em>The information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.Â We doÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any outside source.</em>\n[gravityform id=\"14\" title=\"true\" description=\"true\"]\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2018-05-16 07:27:18", "2018-05-16 14:27:18", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15756", "10", "2018-05-16 07:28:46", "2018-05-16 14:28:46", "<h2>Intake Survey</h2>		\n		<em>The information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.Â We doÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any outside source.</em>\n[gravityform id=\"14\" title=\"true\" description=\"true\"]\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2018-05-16 07:28:46", "2018-05-16 14:28:46", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15758", "10", "2018-05-16 07:34:30", "2018-05-16 14:34:30", "<h2>How We Can Help</h2>		\n		Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\nWe can help with:\n<ul>\n 	<li>depression, stress and anxiety</li>\n 	<li>grief, loss, and life-transitions</li>\n 	<li>senior care issues</li>\n 	<li>end-of-life care</li>\n 	<li>support and education</li>\n 	<li>trauma and distress</li>\n 	<li>relationship conflicts</li>\n 	<li>self-esteem issues</li>\n 	<li>emotional, sexual, and physical abuse</li>\n 	<li>issues related to faith and spirituality</li>\n 	<li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\n</ul>\nAt South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.\nTalk to your counsellor about your payment plans and options.\nToÂ MakeÂ an Appointment\n<ol>\n 	<li>Call our office at Â Â Â Â Â 250-472-2851.</li>\n 	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\" style=\"color:blue\">Click here</a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li>\n</ol>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-16 07:34:30", "2018-05-16 14:34:30", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15759", "10", "2018-05-22 12:59:42", "2018-05-22 19:59:42", "<h2>Make an Appointment</h2>		\n		<h4>Â </h4><p>Contact us via <strong>email</strong>,Â <strong><a style=\"color: #000000;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p><strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p><strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p><strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.</p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â </p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-22 12:59:42", "2018-05-22 19:59:42", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15760", "10", "2018-05-22 13:00:00", "2018-05-22 20:00:00", "<h2>Make an Appointment</h2>\r\n<h4></h4>\r\nContact us via <strong>email</strong>,Â <strong><a style=\"color: #000000;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.\r\n\r\n<strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.\r\n\r\n<strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\r\n\r\n<strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.\r\n<h4>Current Clients:</h4>\r\nPlease contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-22 13:00:00", "2018-05-22 20:00:00", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15761", "10", "2018-05-22 13:03:16", "2018-05-22 20:03:16", "<h2>Children and Youth Counselling</h2>		\n		<p>South Island Centre offers professional counselling services to children and youth between the ages of 6-18.</p><p>Our counsellors are highly trained and experienced working with children and youth in addition to supporting parents and families. We provide professional support for a variety of issues affecting children and youth such as anxiety, depression, bullying, separation/divorce, grief and loss, self-esteem issues, academic pressures, etc.</p><p>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: #000000;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a> form.</p><p>Â </p><p>Â </p><p>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.</p><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a></p><p>Â </p><p>Â </p><p>Â </p>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:03:16", "2018-05-22 20:03:16", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15762", "10", "2018-05-22 13:04:09", "2018-05-22 20:04:09", "<h2>Children and Youth Counselling</h2>		\n		South Island Centre offers professional counselling services to children and youth between the ages of 6-18.\nOur counsellors are highly trained and experienced working with children and youth in addition to supporting parents and families. We provide professional support for a variety of issues affecting children and youth such as anxiety, depression, bullying, separation/divorce, grief and loss, self-esteem issues, academic pressures, etc.\nFor more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: #000000;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a> form.\n&nbsp;\nÂ \nDo note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.\n<a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>\n&nbsp;\n&nbsp;\n&nbsp;", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:04:09", "2018-05-22 20:04:09", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15763", "10", "2018-05-22 13:05:30", "2018-05-22 20:05:30", "<h2>Children and Youth Counselling</h2>		\n		<p>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p><section data-id=\"aae4aa6\" data-element_type=\"section\">Â </section>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<p>Â </p><p>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: #000000;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a> form.</p><p>Â </p><p>Â </p><p>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.</p><p><a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a></p><p>Â </p><p>Â </p>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:05:30", "2018-05-22 20:05:30", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15764", "10", "2018-05-22 13:06:24", "2018-05-22 20:06:24", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p><section data-id=\"aae4aa6\" data-element_type=\"section\">Â </section>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.<p>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: #000000;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a> form.</p><p>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.Â <a style=\"font-size: 15px; background-color: #ffffff; color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a></p><p>Â </p>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:06:24", "2018-05-22 20:06:24", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15765", "10", "2018-05-22 13:08:01", "2018-05-22 20:08:01", "<h2>Children and Youth Counselling</h2>		\n		Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\n<section data-id=\"aae4aa6\" data-element_type=\"section\">\n</section>\nÂ Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.\nWe estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.\nFor more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: #000000;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a> form.\nDo note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.Â  Â \n<a style=\"font-size: 15px; color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:08:01", "2018-05-22 20:08:01", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15767", "10", "2018-05-22 13:13:26", "2018-05-22 20:13:26", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p><section data-id=\"aae4aa6\" data-element_type=\"section\">Â </section>Â <p>Â </p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color:blue\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a>Â form.\nDo note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.\n<a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:13:26", "2018-05-22 20:13:26", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15768", "10", "2018-05-22 13:14:23", "2018-05-22 20:14:23", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p><section data-id=\"aae4aa6\" data-element_type=\"section\">Â </section>Â <p>Â </p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<p>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a>Â form.</p><p>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.</p><p><a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a></p>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:14:23", "2018-05-22 20:14:23", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15769", "10", "2018-05-22 13:16:36", "2018-05-22 20:16:36", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<p><b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a>Â form.</b></p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b></p><p><a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a></p>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:16:36", "2018-05-22 20:16:36", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15770", "10", "2018-05-22 13:17:05", "2018-05-22 20:17:05", "<h2>Children and Youth Counselling</h2>\r\nOur therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.\r\n\r\nUsing talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.\r\n\r\n<b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a>Â form.</b>\r\n\r\n<b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a Child/Youth History form. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b>\r\n\r\n<a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:17:05", "2018-05-22 20:17:05", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15772", "10", "2018-05-22 13:19:13", "2018-05-22 20:19:13", "<h2>Make an Appointment</h2>		\n		<h4></h4>\nContact us via <strong>email</strong>,Â <strong><a style=\"color: blue;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.\n<strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.\n<strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\n<strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.\n<h4>Current Clients:</h4>\nPlease contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â ", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-22 13:19:13", "2018-05-22 20:19:13", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15773", "10", "2018-05-22 13:20:26", "2018-05-22 20:20:26", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">counselling inquiry</a>Â form.</b>\n<b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a C<a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:20:26", "2018-05-22 20:20:26", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15774", "10", "2018-05-22 13:21:10", "2018-05-22 20:21:10", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Counselling Inquiry Form</a>.</b>\n<b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:21:10", "2018-05-22 20:21:10", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15775", "10", "2018-05-22 13:21:55", "2018-05-22 20:21:55", "<h2>Make an Appointment</h2>		\n		<h4>Â </h4><p>Contact us via <strong>email</strong>,Â <strong><a style=\"color: blue;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â </p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-22 13:21:55", "2018-05-22 20:21:55", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15776", "10", "2018-05-22 13:22:39", "2018-05-22 20:22:39", "At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.\r\n\r\n&nbsp;\r\n\r\n<strong>Costs of Counselling</strong>\r\n\r\nCounselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.\r\n\r\nPlease note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.\r\n\r\nPayment can be made with cash, debit or credit card.\r\n\r\n<strong>Insurance Coverage</strong>\r\n\r\nIf you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.\r\nIt is your responsibility to submit receipts to your provider for reimbursement.\r\nIf you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.\r\nWe not bill external parties for services rendered.", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2018-05-22 13:22:39", "2018-05-22 20:22:39", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15777", "10", "2018-05-22 13:22:39", "2018-05-22 20:22:39", "At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.\n&nbsp;\n<strong>Costs of Counselling</strong>\nCounselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.\nPlease note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.\nPayment can be made with cash, debit or credit card.\n<strong>Insurance Coverage</strong>\nIf you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.\nIt is your responsibility to submit receipts to your provider for reimbursement.\nIf you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.\nWe not bill external parties for services rendered.", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2018-05-22 13:22:39", "2018-05-22 20:22:39", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15778", "10", "2018-05-22 13:26:07", "2018-05-22 20:26:07", "<h2>Income-Based Counselling Services</h2>		\n		<h5>At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.</h5><p>Â </p><p><strong>Costs of Counselling</strong></p><p>Counselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.</p><p>Please note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.</p><p>Payment can be made with cash, debit or credit card.</p>		\n		<p><strong>Insurance Coverage</strong></p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br />It is your responsibility to submit receipts to your provider for reimbursement.<br />If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br />We not bill external parties for services rendered.</p>", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2018-05-22 13:26:07", "2018-05-22 20:26:07", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15779", "10", "2018-05-22 13:26:25", "2018-05-22 20:26:25", "<h2>Income-Based Counselling Services</h2>\r\n<h5>At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.</h5>\r\n<strong>Costs of Counselling</strong>\r\n\r\nCounselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.\r\n\r\nPlease note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.\r\n\r\nPayment can be made with cash, debit or credit card.\r\n\r\n<strong>Insurance Coverage</strong>\r\n\r\nIf you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.\r\nIt is your responsibility to submit receipts to your provider for reimbursement.\r\nIf you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.\r\nWe not bill external parties for services rendered.", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2018-05-22 13:26:25", "2018-05-22 20:26:25", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15780", "10", "2018-05-22 13:27:17", "2018-05-22 20:27:17", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Rosemary Merritt  <br><br>MEd, MPE, RCC</h3>		\n		<p>Â Focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-22 13:27:17", "2018-05-22 20:27:17", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15781", "10", "2018-05-22 13:27:29", "2018-05-22 20:27:29", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Rosemary Merritt  <br><br>MEd, MPE, RCC</h3>		\n		<p>Â Focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-22 13:27:29", "2018-05-22 20:27:29", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15783", "10", "2018-05-22 13:33:04", "2018-05-22 20:33:04", "<h2>Income-Based Counselling Services</h2>		\n		<h5>At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.</h5><p>Â </p><p><strong>Costs of Counselling</strong></p><p>Counselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.</p><p>Please note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.</p><p>Payment can be made with cash, debit or credit card.</p>		\n		<p><strong>Insurance Coverage</strong></p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br />It is your responsibility to submit receipts to your provider for reimbursement.<br />If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br />We not bill external parties for services rendered.</p>", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2018-05-22 13:33:04", "2018-05-22 20:33:04", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15784", "10", "2018-05-22 13:33:46", "2018-05-22 20:33:46", "<h2>How We Can Help</h2>		\n		Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.\nWe can help with:\n<ul>\n 	<li>depression, stress and anxiety</li>\n 	<li>grief, loss, and life-transitions</li>\n 	<li>senior care issues</li>\n 	<li>end-of-life care</li>\n 	<li>support and education</li>\n 	<li>trauma and distress</li>\n 	<li>relationship conflicts</li>\n 	<li>self-esteem issues</li>\n 	<li>emotional, sexual, and physical abuse</li>\n 	<li>issues related to faith and spirituality</li>\n 	<li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\n</ul>\nAt South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.\nTalk to your counsellor about your payment plans and options.\nToÂ MakeÂ an Appointment\n<ol>\n 	<li>Call our office at Â Â Â Â Â 250-472-2851.</li>\n 	<li><a title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\" style=\"color:blue\">Click here</a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li>\n</ol>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-22 13:33:46", "2018-05-22 20:33:46", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15785", "10", "2018-05-22 13:34:17", "2018-05-22 20:34:17", "<h2>Income-Based Counselling Services</h2>		\n		<h5>At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.</h5><p>Â </p><p><strong>Costs of Counselling</strong></p><p>Counselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.</p><p>Please note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.</p><p>Payment can be made with cash, debit or credit card.</p>		\n		<p><strong>Insurance Coverage</strong></p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br />It is your responsibility to submit receipts to your provider for reimbursement.<br />If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br />We not bill external parties for services rendered.</p>", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2018-05-22 13:34:17", "2018-05-22 20:34:17", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15786", "10", "2018-05-22 13:36:37", "2018-05-22 20:36:37", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Counselling Inquiry Form</a>.</b>\n<b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 13:36:37", "2018-05-22 20:36:37", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15787", "10", "2018-05-22 13:37:40", "2018-05-22 20:37:40", "<h2>Make an Appointment</h2>		\n		<h4>Â </h4><p>Contact us via <strong>email</strong>,Â <strong><a style=\"color: blue;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â </p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-22 13:37:40", "2018-05-22 20:37:40", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15788", "10", "2018-05-22 13:37:48", "2018-05-22 20:37:48", "<h2>Make an Appointment</h2>		\n		<h4>Â </h4><p>Contact us via <strong>email</strong>,Â <strong><a style=\"color: blue;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â </p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-22 13:37:48", "2018-05-22 20:37:48", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15789", "10", "2018-05-22 13:38:37", "2018-05-22 20:38:37", "<h2>Intake Survey</h2>		\n		<em>The information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.Â We doÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any outside source.</em>\n[gravityform id=\"14\" title=\"true\" description=\"true\"]\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2018-05-22 13:38:37", "2018-05-22 20:38:37", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15791", "10", "2018-05-22 13:41:50", "2018-05-22 20:41:50", "<h2>How We Can Help</h2>		\n		<h5>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</h5><p>We can help with:</p><ul><li>depression, stress and anxiety</li><li>grief, loss, and life-transitions</li><li>senior care issues</li><li>end-of-life care</li><li>support and education</li><li>trauma and distress</li><li>relationship conflicts</li><li>self-esteem issues</li><li>emotional, sexual, and physical abuse</li><li>issues related to faith and spirituality</li><li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li></ul><p><b>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.</b></p><p>Talk to your counsellor about your payment plans and options.</p><p>ToÂ MakeÂ an Appointment</p><ol><li>Call our office at Â Â Â Â Â 250-472-2851.</li><li><a style=\"color: blue;\" title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here </a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li></ol>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-22 13:41:50", "2018-05-22 20:41:50", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15792", "10", "2018-05-22 13:45:42", "2018-05-22 20:45:42", "<h2>How We Can Help</h2>		\n		<h5>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</h5><p>We can help with:</p><ul><li>depression, stress and anxiety</li><li>grief, loss, and life-transitions</li><li>senior care issues</li><li>end-of-life care</li><li>support and education</li><li>trauma and distress</li><li>relationship conflicts</li><li>self-esteem issues</li><li>emotional, sexual, and physical abuse</li><li>issues related to faith and spirituality</li><li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li></ul>		\n		<p><b>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.</b></p><p>Talk to your counsellor about your payment plans and options.</p><p>ToÂ MakeÂ an Appointment</p><ol><li>Call our office at Â Â Â Â Â 250-472-2851.</li><li><a style=\"color: blue;\" title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here </a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li></ol>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-22 13:45:42", "2018-05-22 20:45:42", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15793", "10", "2018-05-22 13:54:15", "2018-05-22 20:54:15", "<h2>Board Of Directors</h2>		\n		<p><strong>Â </strong></p><p><strong>Jim Gibson (Chair)</strong></p><p><strong style=\"font-size: 15px;\">Barbara Underhill (Vice-Chair, Treasurer) </strong>Barbara has supported the centre since 2007 in a variety of roles. She has anÂ MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.</p><p><strong>Sally Tuckey (Secretary) </strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. Â Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.Â Her interests are many â€“ but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.</p><p style=\"color: #222222;\"><strong>Sybil Bagshaw </strong>SybilÂ worked as an RN until herÂ retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \"Mother\'s of Preschoolers\" at St Pauls Anglican Church in Fort Garry. Â SybilÂ was one of the founding members the Fort Garry Family Life program and was their treasurer for severalÂ years.Â Â She alsoÂ  was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for theÂ community club andÂ for the Kidney and Cancer foundations both in WinnipegÂ and in Victoria.Â </p><p style=\"color: #222222;\"><strong>Greg Beattie </strong>Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nationâ€™s mental health services. He has 20 yearsâ€™ experience as a clinical supervisor, 15 yearsâ€™ experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. Â Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.</p><p><strong>Helen Morrison </strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.</p>", "Board of Directors", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2018-05-22 13:54:15", "2018-05-22 20:54:15", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15794", "10", "2018-05-22 14:24:32", "2018-05-22 21:24:32", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-22 14:24:32", "2018-05-22 21:24:32", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15795", "10", "2018-05-22 14:26:48", "2018-05-22 21:26:48", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-22 14:26:48", "2018-05-22 21:26:48", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15796", "10", "2018-05-22 14:27:18", "2018-05-22 21:27:18", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-22 14:27:18", "2018-05-22 21:27:18", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15797", "10", "2018-05-22 14:32:17", "2018-05-22 21:32:17", "<h2>Intake Survey</h2>		\n		<em>The information you provideÂ on this formÂ is collected and used under the authority of theÂ <strong>Freedom of Information and Protection Privacy Act</strong>. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851.Â We doÂ <strong>not share, trade, rent, or sell</strong>Â your email and personal contact information with any outside source.</em>\n[gravityform id=\"14\" title=\"true\" description=\"true\"]\n&nbsp;", "Contact Us", "", "inherit", "closed", "closed", "", "326-revision-v1", "", "", "2018-05-22 14:32:17", "2018-05-22 21:32:17", "", "326", "http://localhost:8888/TestSICPage/wordpress/326-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15798", "10", "2018-05-22 14:34:39", "2018-05-22 21:34:39", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHO WE ARE</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">Professional, affordable, income-based counselling services for all individuals\n</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Who We Are", "", "publish", "closed", "closed", "", "who-we-are", "", "", "2018-05-22 14:34:39", "2018-05-22 21:34:39", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=who-we-are", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("15799", "10", "2018-05-22 14:34:39", "2018-05-22 21:34:39", "", "Who We Are", "", "inherit", "closed", "closed", "", "15798-revision-v1", "", "", "2018-05-22 14:34:39", "2018-05-22 21:34:39", "", "15798", "http://localhost:8888/TestSICPage/wordpress/15798-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15800", "10", "2018-05-22 14:34:39", "2018-05-22 21:34:39", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHO WE ARE</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">Professional, affordable, income-based counselling services for all individuals\n</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Who We Are", "", "inherit", "closed", "closed", "", "15798-revision-v1", "", "", "2018-05-22 14:34:39", "2018-05-22 21:34:39", "", "15798", "http://localhost:8888/TestSICPage/wordpress/15798-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15801", "10", "2018-05-22 14:34:51", "2018-05-22 21:34:51", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">IMPACT STORIES</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Impact Story", "", "publish", "closed", "closed", "", "impact-story", "", "", "2018-05-22 14:34:51", "2018-05-22 21:34:51", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=impact-story", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("15802", "10", "2018-05-22 14:34:51", "2018-05-22 21:34:51", "", "Impact Story", "", "inherit", "closed", "closed", "", "15801-revision-v1", "", "", "2018-05-22 14:34:51", "2018-05-22 21:34:51", "", "15801", "http://localhost:8888/TestSICPage/wordpress/15801-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15803", "10", "2018-05-22 14:34:51", "2018-05-22 21:34:51", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">IMPACT STORIES</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Impact Story", "", "inherit", "closed", "closed", "", "15801-revision-v1", "", "", "2018-05-22 14:34:51", "2018-05-22 21:34:51", "", "15801", "http://localhost:8888/TestSICPage/wordpress/15801-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15804", "10", "2018-05-22 14:35:11", "2018-05-22 21:35:11", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">DONATE</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h1 data-elementor-setting-key=\"title\">support us <br>&amp; <br>change the course of a life today!</h1>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Donate FrontEnd", "", "publish", "closed", "closed", "", "donate-frontend", "", "", "2018-05-22 14:35:11", "2018-05-22 21:35:11", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=donate-frontend", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("15805", "10", "2018-05-22 14:35:11", "2018-05-22 21:35:11", "", "Donate FrontEnd", "", "inherit", "closed", "closed", "", "15804-revision-v1", "", "", "2018-05-22 14:35:11", "2018-05-22 21:35:11", "", "15804", "http://localhost:8888/TestSICPage/wordpress/15804-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15806", "10", "2018-05-22 14:35:11", "2018-05-22 21:35:11", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">DONATE</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h1 data-elementor-setting-key=\"title\">support us <br>&amp; <br>change the course of a life today!</h1>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Donate FrontEnd", "", "inherit", "closed", "closed", "", "15804-revision-v1", "", "", "2018-05-22 14:35:11", "2018-05-22 21:35:11", "", "15804", "http://localhost:8888/TestSICPage/wordpress/15804-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15807", "10", "2018-05-22 14:35:22", "2018-05-22 21:35:22", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">How To Reach Us\n</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "How To Reach Us", "", "publish", "closed", "closed", "", "how-to-reach-us-2", "", "", "2018-05-22 14:35:23", "2018-05-22 21:35:23", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=how-to-reach-us-2", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("15808", "10", "2018-05-22 14:35:22", "2018-05-22 21:35:22", "", "How To Reach Us", "", "inherit", "closed", "closed", "", "15807-revision-v1", "", "", "2018-05-22 14:35:22", "2018-05-22 21:35:22", "", "15807", "http://localhost:8888/TestSICPage/wordpress/15807-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15809", "10", "2018-05-22 14:35:23", "2018-05-22 21:35:23", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">How To Reach Us\n</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "How To Reach Us", "", "inherit", "closed", "closed", "", "15807-revision-v1", "", "", "2018-05-22 14:35:23", "2018-05-22 21:35:23", "", "15807", "http://localhost:8888/TestSICPage/wordpress/15807-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15810", "10", "2018-05-22 14:40:36", "2018-05-22 21:40:36", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-22 14:40:36", "2018-05-22 21:40:36", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15811", "10", "2018-05-22 14:52:48", "2018-05-22 21:52:48", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-22 14:52:48", "2018-05-22 21:52:48", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15812", "10", "2018-05-22 14:53:55", "2018-05-22 21:53:55", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h4>Because only together we can</h4>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-22 14:53:55", "2018-05-22 21:53:55", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15813", "10", "2018-05-22 14:54:32", "2018-05-22 21:54:32", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-22 14:54:32", "2018-05-22 21:54:32", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15815", "10", "2018-05-22 15:04:49", "2018-05-22 22:04:49", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<p><b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Counselling Inquiry Form</a>.</b></p><p><b>Â </b></p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b></p>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-22 15:04:49", "2018-05-22 22:04:49", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15817", "10", "2018-05-22 15:07:11", "2018-05-22 22:07:11", "<h2>Make an Appointment</h2>		\n		<h4>Â </h4><p>Contact us via <strong>email</strong>Â orÂ <strong><a style=\"color: blue;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â </p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-22 15:07:11", "2018-05-22 22:07:11", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15818", "10", "2018-05-22 15:09:36", "2018-05-22 22:09:36", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\">Positive Psychology Group</a></strong></p><p><strong><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong></p><p><strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </strong></p><p><strong><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong></p><p><strong><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong></p><p><strong><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong></p><p><strong><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </a></strong></p><p>For more information on <strong>how to register</strong>: <a style=\"color: #000000;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>. OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.[/vc_column_text][/vc_column][/vc_row]</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-22 15:09:36", "2018-05-22 22:09:36", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15819", "10", "2018-05-22 15:10:35", "2018-05-22 22:10:35", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5>\n<strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\">Positive Psychology Group</a></strong>\n<strong><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong>\n<strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </strong>\n<strong><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong>\n<strong><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>\n<strong><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong>\n<strong><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\nYour Personality Preference </a></strong>\nFor more information on <strong>how to register</strong>: <a style=\"color: blue\n;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>. OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-22 15:10:35", "2018-05-22 22:10:35", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15820", "10", "2018-05-22 15:10:52", "2018-05-22 22:10:52", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\">Positive Psychology Group</a></strong></p><p><strong><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong></p><p><strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </strong></p><p><strong><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong></p><p><strong><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong></p><p><strong><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong></p><p><strong><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </a></strong></p><p>For more information on <strong>how to register</strong>: <a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>. OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-22 15:10:52", "2018-05-22 22:10:52", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15821", "10", "2018-05-22 15:36:02", "2018-05-22 22:36:02", "<h2>Training Currently Offered</h2>\r\n<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5>\r\n<strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\">Positive Psychology Group</a></strong>\r\n\r\n<strong><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></strong>\r\n\r\n<strong><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </strong>\r\n\r\n<strong><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></strong>\r\n\r\n<strong><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></strong>\r\n\r\n<strong><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></strong>\r\n\r\n<strong><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </a></strong>\r\n\r\nFor more information on <strong>how to register</strong>: <a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>. OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-22 15:36:02", "2018-05-22 22:36:02", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15822", "10", "2018-05-22 15:37:34", "2018-05-22 22:37:34", "<h4>Addictions</h4>\n<a style=\"color: #000000;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a>\n<a style=\"color: #000000;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a>\n<a style=\"color: #000000;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a>\n<a style=\"color: #000000;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a>\n<a style=\"color: #000000;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http://www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a>\n<a style=\"color: #000000;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a>\n<a style=\"color: #000000;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a>\n<h4>Anxiety</h4>\n<a style=\"color: #000000;\" title=\"Anxiety BC\" href=\"http://https://www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>\n<a style=\"color: #000000;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)\n<a style=\"color: #000000;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a> (Children and Youth)\n<h4>Depression</h4>\n<a style=\"color: #000000;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a>\n<a style=\"color: #000000;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a>\n<a style=\"color: #000000;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a>\n<a style=\"color: #000000;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)\n<h4>Divorce and Separation</h4>\n<a style=\"color: #000000;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>\n<a style=\"color: #000000;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>\n<a style=\"color: #000000;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>\n<a style=\"color: #000000;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>\n<a style=\"color: #000000;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>\n&nbsp;\n<h4>Eating Disorders</h4>\n<a style=\"color: #000000;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>\n<a style=\"color: #000000;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>\n<a style=\"color: #000000;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>\n<a style=\"color: #000000;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Children\'s Hospital Eating Disorders</a>\n<a style=\"color: #000000;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a>\n<h4>Senior Support</h4>\n<a style=\"color: #000000;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Senior\'s Advocate BC</a>\n<a style=\"color: #000000;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>\n<a style=\"color: #000000;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>\n<a style=\"color: #000000;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>\n<a style=\"color: #000000;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a>\n<h4>Grief and Loss</h4>\n<a style=\"color: #000000;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>\n<a style=\"color: #000000;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>\n<a style=\"color: #000000;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>\n<a style=\"color: #000000;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>\n<a style=\"color: #000000;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>\n<a style=\"color: #000000;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a>\n<h4>Marriage and Family</h4>\n<a style=\"color: #000000;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>\n<a style=\"color: #000000;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>\n<a style=\"color: #000000;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a>\n<a style=\"color: #000000;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a>\n<h4>Parenting</h4>\n<a style=\"color: #000000;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>\n<a style=\"color: #000000;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>\n<a style=\"color: #000000;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>\n<a style=\"color: #000000;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>\n<a style=\"color: #000000;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>\n<a style=\"color: #000000;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>\n<a style=\"color: #000000;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a>\n<h4>Abuse and Trauma</h4>\n<a style=\"color: #000000;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Men\'s Trauma Centre</a>\n<a style=\"color: #000000;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>\n<a style=\"color: #000000;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>\n<a style=\"color: #000000;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>\n<a style=\"color: #000000;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>\n<a style=\"color: #000000;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a>\n<h4>Spiritual Guidance</h4>\n<a style=\"color: #000000;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>\n<a style=\"color: #000000;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a>\n<h4>Suicide Prevention</h4>\n<a style=\"color: #000000;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>\n<a style=\"color: #000000;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>\n<a style=\"color: #000000;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>\n<a style=\"color: #000000;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>\n<a style=\"color: #000000;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>\n<a style=\"color: #000000;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>\n&nbsp;\n<h4>Â </h4>\n&nbsp;", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:37:34", "2018-05-22 22:37:34", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15823", "10", "2018-05-22 15:40:42", "2018-05-22 22:40:42", "<h4>Addictions</h4><p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p><h4>Anxiety</h4><p><a title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â <a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)Â <a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p><h4>Depression</h4><p><a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a>Â <a href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a>Â <a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a>Â <a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:40:42", "2018-05-22 22:40:42", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15824", "10", "2018-05-22 15:41:31", "2018-05-22 22:41:31", "<h4>Addictions</h4><p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p><h4>Anxiety</h4><p><a title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â <a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p>Â <a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p><h4>Depression</h4><p><a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p>Â <a href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p>Â <a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a>Â <a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:41:31", "2018-05-22 22:41:31", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15825", "10", "2018-05-22 15:46:51", "2018-05-22 22:46:51", "Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety					\n					I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n		<h4>Addictions</h4><p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p><h4>Anxiety</h4><p><a title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â <a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p>Â <a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p><h4>Depression</h4><p><a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p>Â <a href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p>Â <a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a>Â <a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â 		\n												Addictions					\n					I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												Anxiety					\n					I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n		<h4>Addictions</h4><p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p><h4>Anxiety</h4><p><a title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â <a title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p>Â <a title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p><h4>Depression</h4><p><a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p>Â <a href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p>Â <a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a>Â <a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:46:51", "2018-05-22 22:46:51", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15826", "10", "2018-05-22 15:51:57", "2018-05-22 22:51:57", "<h2>Add Your Heading Text Here</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n		<h4>Â </h4><h4>Depression</h4><p><a title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p>Â <a href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p>Â <a title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p>Â <a title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:51:57", "2018-05-22 22:51:57", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15827", "10", "2018-05-22 15:52:32", "2018-05-22 22:52:32", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n		<h4>Â </h4><h4>Â </h4><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:52:32", "2018-05-22 22:52:32", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15828", "10", "2018-05-22 15:55:26", "2018-05-22 22:55:26", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					Toggle Content\n												Eating Disorders					\n					Toggle Content\n												Senior Support					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n		<h4>Â </h4><h4>Â </h4><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:55:26", "2018-05-22 22:55:26", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15829", "10", "2018-05-22 15:56:38", "2018-05-22 22:56:38", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					Toggle Content\n												Eating Disorders					\n					Toggle Content\n												Senior Support					\n					Toggle Content\n												Grief and Loss					\n					Toggle Content\n												Marriage and Family					\n					Toggle Content\n												Parenting					\n					Toggle Content\n												Abuse and Trauma					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n		<h4>Â </h4><h4>Â </h4><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:56:38", "2018-05-22 22:56:38", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15830", "10", "2018-05-22 15:56:56", "2018-05-22 22:56:56", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					Toggle Content\n												Eating Disorders					\n					Toggle Content\n												Senior Support					\n					Toggle Content\n												Grief and Loss					\n					Toggle Content\n												Marriage and Family					\n					Toggle Content\n												Parenting					\n					Toggle Content\n												Abuse and Trauma					\n					Toggle Content\n												Spiritual Guidance					\n					Toggle Content\n												Toggle Title					\n					Toggle Content\n		<h4>Â </h4><h4>Â </h4><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:56:56", "2018-05-22 22:56:56", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15831", "10", "2018-05-22 15:57:12", "2018-05-22 22:57:12", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					Toggle Content\n												Eating Disorders					\n					Toggle Content\n												Senior Support					\n					Toggle Content\n												Grief and Loss					\n					Toggle Content\n												Marriage and Family					\n					Toggle Content\n												Parenting					\n					Toggle Content\n												Abuse and Trauma					\n					Toggle Content\n												Spiritual Guidance					\n					Toggle Content\n												Suicide Prevention					\n					Toggle Content\n		<h4>Â </h4><h4>Â </h4><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-22 15:57:12", "2018-05-22 22:57:12", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15832", "10", "2018-05-22 15:59:15", "2018-05-22 22:59:15", "{\n    \"astra-settings[site-layout-outside-bg-obj]\": {\n        \"value\": {\n            \"background-color\": \"#ffffff\",\n            \"background-image\": \"\",\n            \"background-repeat\": \"repeat\",\n            \"background-position\": \"center center\",\n            \"background-size\": \"auto\",\n            \"background-attachment\": \"scroll\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-22 22:59:15\"\n    },\n    \"astra-settings[footer-adv]\": {\n        \"value\": \"layout-4\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-22 22:59:15\"\n    },\n    \"astra-settings[footer-bg-obj]\": {\n        \"value\": {\n            \"background-color\": \"#ffffff\",\n            \"background-image\": \"\",\n            \"background-repeat\": \"repeat\",\n            \"background-position\": \"center center\",\n            \"background-size\": \"auto\",\n            \"background-attachment\": \"scroll\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-22 22:59:15\"\n    },\n    \"astra-settings[footer-adv-bg-obj]\": {\n        \"value\": {\n            \"background-color\": \"\",\n            \"background-image\": \"\",\n            \"background-repeat\": \"no-repeat\",\n            \"background-position\": \"center center\",\n            \"background-size\": \"cover\",\n            \"background-attachment\": \"scroll\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-22 22:59:15\"\n    }\n}", "", "", "trash", "closed", "closed", "", "60b6c21d-3fcf-4689-9b26-296181a36745", "", "", "2018-05-22 15:59:15", "2018-05-22 22:59:15", "", "0", "http://localhost:8888/TestSICPage/wordpress/60b6c21d-3fcf-4689-9b26-296181a36745/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15833", "10", "2018-05-22 16:00:39", "2018-05-22 23:00:39", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-22 16:00:39", "2018-05-22 23:00:39", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15836", "10", "2018-05-23 09:48:42", "2018-05-23 16:48:42", "<h4><strong>How to Register</strong></h4>\n<ul>\n 	<li><a style=\"color: #000000;\" title=\"Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to fill out the registration form. Registrations will be confirmed via email.Â </li>\n 	<li>Â Call Â <strong>250-472-2851</strong> and leave a voice mail with your contact information</li>\n</ul>\nTo complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.\nRegistration is on a first-come, first-serve basis.\n<h4><strong>Payment Options</strong></h4>\n<ul>\n 	<li>Cash</li>\n 	<li>Credit</li>\n</ul>\nIf paying by credit card, please call the office at Â 250-472-2851 for processing.\n<h4><strong>Refunds</strong></h4>\n<ul>\n 	<li>In the case of a cancellation, a full refund will be issued.</li>\n 	<li>Where cash payment has been made, refunds will be reimbursed by cheque.</li>\n</ul>", "Registration & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2018-05-23 09:48:42", "2018-05-23 16:48:42", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15837", "10", "2018-05-23 09:54:09", "2018-05-23 16:54:09", "<h2>Registration & Payment Options</h2>		\n			<h3>How to Register</h3>		\n		<ul><li><a style=\"color: #000000;\" title=\"Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to fill out the registration form. Registrations will be confirmed via email.Â </li><li>Â Call Â <strong>250-472-2851</strong> and leave a voice mail with your contact information</li></ul><p>To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.</p><p>Registration is on a first-come, first-serve basis.</p>		\n			<h3>Payment Options</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Cash</li><li style=\"font-size: 15px;\">Credit</li></ul><b>If paying by credit card, please call the office atÂ Â 250-472-2851 for processing.</b>		\n			<h3>Refunds</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">In the case of a cancellation, a full refund will be issued.</li><li style=\"font-size: 15px;\">Where cash payment has been made, refunds will be reimbursed by cheque.</li></ul>", "Registration & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2018-05-23 09:54:09", "2018-05-23 16:54:09", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15838", "10", "2018-05-23 09:54:20", "2018-05-23 16:54:20", "<h2>Registration &amp; Payment Options</h2>\r\n<h3>How to Register</h3>\r\n<ul>\r\n 	<li><a style=\"color: #000000;\" title=\"Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to fill out the registration form. Registrations will be confirmed via email.</li>\r\n 	<li>Â Call Â <strong>250-472-2851</strong> and leave a voice mail with your contact information</li>\r\n</ul>\r\nTo complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.\r\n\r\nRegistration is on a first-come, first-serve basis.\r\n<h3>Payment Options</h3>\r\n<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\">\r\n 	<li style=\"font-size: 15px;\">Cash</li>\r\n 	<li style=\"font-size: 15px;\">Credit</li>\r\n</ul>\r\n<b>If paying by credit card, please call the office atÂ Â 250-472-2851 for processing.</b>\r\n<h3>Refunds</h3>\r\n<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\">\r\n 	<li style=\"font-size: 15px;\">In the case of a cancellation, a full refund will be issued.</li>\r\n 	<li style=\"font-size: 15px;\">Where cash payment has been made, refunds will be reimbursed by cheque.</li>\r\n</ul>", "Registration & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2018-05-23 09:54:20", "2018-05-23 16:54:20", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15839", "10", "2018-05-23 09:55:55", "2018-05-23 16:55:55", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p>Toggle Content</p>\n												Eating Disorders					\n					<p>Toggle Content</p>\n												Senior Support					\n					<p>Toggle Content</p>\n												Grief and Loss					\n					<p>Toggle Content</p>\n												Marriage and Family					\n					<p>Toggle Content</p>\n												Parenting					\n					<p>Toggle Content</p>\n												Abuse and Trauma					\n					<p>Toggle Content</p>\n												Spiritual Guidance					\n					<p>Toggle Content</p>\n												Suicide Prevention					\n					<p>Toggle Content</p>\n		<h4>Â </h4><h4>Â </h4><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â <a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â <a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â <a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â <a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â <a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â <a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â <a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â <a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â <a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â <a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a>Â <a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis CentreÂ </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-23 09:55:55", "2018-05-23 16:55:55", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15840", "10", "2018-05-23 10:02:46", "2018-05-23 17:02:46", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400; background-color: #ffffff;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â </p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: #ff6a00;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: #ff6a00;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p>\n		<h4>Â </h4><h4>Â </h4><h4>Divorce and Separation</h4><p><a title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p><a title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p><a title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p><a title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p>Â <a title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a>Â Â </p><h4>Eating Disorders</h4><p><a title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p><a title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p>Â <a title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p><a title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p>Â <a title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p><h4>Senior Support</h4><p><a title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p>Â <a title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p>Â <a title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p>Â <a title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p>Â <a href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p><h4>Grief and Loss</h4><p><a title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p><a title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p>Â <a href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p>Â <a title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p>Â <a title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p>Â <a title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p><h4>Marriage and Family</h4><p><a title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p>Â <a title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p>Â <a title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p><a title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p><h4>Parenting</h4><p><a title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p><p>Â <a title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p><p>Â <a title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â </p><p><a title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p><p>Â <a title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â </p><p><a title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p><p>Â <a href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><h4>Abuse and Trauma</h4><p><a title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p><a title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p>Â <a title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p><a title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p><a title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p>Â <a title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p><h4>Spiritual Guidance</h4><p><a title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p><p>Â <a title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p><h4>Suicide Prevention</h4><p><a title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p><p>Â <a title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p><p>Â <a title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p><p>Â <a title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p><p>Â <a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p><p><a title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p><h4>Â </h4>Â Â Â Â ", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-23 10:02:46", "2018-05-23 17:02:46", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15841", "10", "2018-05-23 10:03:12", "2018-05-23 17:03:12", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400; background-color: #ffffff;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â </p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: #ff6a00;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: #ff6a00;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-23 10:03:12", "2018-05-23 17:03:12", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15842", "10", "2018-05-23 10:03:19", "2018-05-23 17:03:19", "<h2>Mental Health Resources</h2>\r\nAddictions\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\r\nAnxiety\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\r\nDepression\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\r\nDivorce and Separation\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\r\nEating Disorders\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\r\nSenior Support\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\r\nGrief and Loss\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\r\nMarriage and Family\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\r\nParenting\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400; background-color: #ffffff;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\r\nAbuse and Trauma\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\r\nSpiritual Guidance\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: #ff6a00;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\r\nSuicide Prevention\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: #ff6a00;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p>\r\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-23 10:03:19", "2018-05-23 17:03:19", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15843", "10", "2018-05-23 10:04:46", "2018-05-23 17:04:46", "[gravityform id=\"3\" name=\"Register for Training\"]", "Register for Training", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2018-05-23 10:04:46", "2018-05-23 17:04:46", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15844", "10", "2018-05-23 10:06:18", "2018-05-23 17:06:18", "<h2>Register for Training</h2>		\n		[gravityform id=\"3\" name=\"Register for Training\"]", "Register for Training", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2018-05-23 10:06:18", "2018-05-23 17:06:18", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15845", "10", "2018-05-23 10:07:44", "2018-05-23 17:07:44", "<h2>Register for Training</h2>\r\n[gravityform id=\"3\" name=\"Register for Training\"]", "Register for Training", "", "inherit", "closed", "closed", "", "13550-revision-v1", "", "", "2018-05-23 10:07:44", "2018-05-23 17:07:44", "", "13550", "http://localhost:8888/TestSICPage/wordpress/13550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15846", "10", "2018-05-23 10:10:12", "2018-05-23 17:10:12", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\">Positive Psychology Group</a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></p><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </a></p><p>For more information on <strong>how to register</strong>: <a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>. OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-23 10:10:12", "2018-05-23 17:10:12", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15847", "10", "2018-05-23 10:11:04", "2018-05-23 17:11:04", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\">Positive Psychology Group</a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></p><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-23 10:11:04", "2018-05-23 17:11:04", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15848", "10", "2018-05-23 10:12:42", "2018-05-23 17:12:42", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\">Positive Psychology Group</a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\">Young Adults Support group for Anxiety</a></p><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\">Making It Work for Teens!</a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"> Living with Loss Part 1, an Introduction to Grief and Loss </a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\">Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\">Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-23 10:12:42", "2018-05-23 17:12:42", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15849", "10", "2018-05-23 10:22:16", "2018-05-23 17:22:16", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br><br><br></p>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 10:22:16", "2018-05-23 17:22:16", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15850", "10", "2018-05-23 10:25:08", "2018-05-23 17:25:08", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br><br><br></p>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 10:25:08", "2018-05-23 17:25:08", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15851", "10", "2018-05-23 10:26:37", "2018-05-23 17:26:37", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter</p>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 10:26:37", "2018-05-23 17:26:37", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15852", "10", "2018-05-23 10:32:59", "2018-05-23 17:32:59", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 10:32:59", "2018-05-23 17:32:59", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15853", "10", "2018-05-23 10:34:34", "2018-05-23 17:34:34", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 10:34:34", "2018-05-23 17:34:34", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15854", "10", "2018-05-23 10:37:02", "2018-05-23 17:37:02", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 10:37:02", "2018-05-23 17:37:02", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15857", "10", "2018-05-23 11:38:42", "2018-05-23 18:38:42", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreSlide 2 HeadingClick edit button to change this text. Lorem ipsum dolor sit amet consectetur adipiscing elit dolorClick HereSlide 3 HeadingClick edit button to change this text. Lorem ipsum dolor sit amet consectetur adipiscing elit dolorClick Here", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:38:42", "2018-05-23 18:38:42", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15859", "10", "2018-05-23 11:51:31", "2018-05-23 18:51:31", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n			<h2>WHO WE ARE</h2>		\n			<h2>Professional, affordable, income-based counselling services for all individuals\n</h2>		\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:51:31", "2018-05-23 18:51:31", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15860", "10", "2018-05-23 11:52:05", "2018-05-23 18:52:05", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHO WE ARE</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">Professional, affordable, income-based counselling services for all individuals\n</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Who We Are", "", "publish", "closed", "closed", "", "who-we-are-2", "", "", "2018-05-23 11:52:05", "2018-05-23 18:52:05", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=who-we-are-2", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("15861", "10", "2018-05-23 11:52:05", "2018-05-23 18:52:05", "", "Who We Are", "", "inherit", "closed", "closed", "", "15860-revision-v1", "", "", "2018-05-23 11:52:05", "2018-05-23 18:52:05", "", "15860", "http://localhost:8888/TestSICPage/wordpress/15860-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15862", "10", "2018-05-23 11:52:05", "2018-05-23 18:52:05", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHO WE ARE</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">Professional, affordable, income-based counselling services for all individuals\n</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>We provide professional, affordable, income-based counselling services for all individuals, children, youth, couples and families in need from experienced, clinical counsellors. We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available. Call the Centre directly for more information on these services.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\" role=\"button\">\n						read more\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Who We Are", "", "inherit", "closed", "closed", "", "15860-revision-v1", "", "", "2018-05-23 11:52:05", "2018-05-23 18:52:05", "", "15860", "http://localhost:8888/TestSICPage/wordpress/15860-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15863", "10", "2018-05-23 11:52:19", "2018-05-23 18:52:19", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">IMPACT STORIES</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Impact Stories", "", "publish", "closed", "closed", "", "impact-stories", "", "", "2018-05-23 11:52:19", "2018-05-23 18:52:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=impact-stories", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("15864", "10", "2018-05-23 11:52:19", "2018-05-23 18:52:19", "", "Impact Stories", "", "inherit", "closed", "closed", "", "15863-revision-v1", "", "", "2018-05-23 11:52:19", "2018-05-23 18:52:19", "", "15863", "http://localhost:8888/TestSICPage/wordpress/15863-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15865", "10", "2018-05-23 11:52:19", "2018-05-23 18:52:19", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">IMPACT STORIES</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "Impact Stories", "", "inherit", "closed", "closed", "", "15863-revision-v1", "", "", "2018-05-23 11:52:19", "2018-05-23 18:52:19", "", "15863", "http://localhost:8888/TestSICPage/wordpress/15863-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15866", "10", "2018-05-23 11:54:28", "2018-05-23 18:54:28", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:54:28", "2018-05-23 18:54:28", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15867", "10", "2018-05-23 11:56:12", "2018-05-23 18:56:12", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:56:12", "2018-05-23 18:56:12", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15868", "10", "2018-05-23 11:56:46", "2018-05-23 18:56:46", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:56:46", "2018-05-23 18:56:46", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15869", "10", "2018-05-23 11:57:05", "2018-05-23 18:57:05", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:57:05", "2018-05-23 18:57:05", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15870", "10", "2018-05-23 11:57:16", "2018-05-23 18:57:16", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:57:16", "2018-05-23 18:57:16", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15871", "10", "2018-05-23 11:57:28", "2018-05-23 18:57:28", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:57:28", "2018-05-23 18:57:28", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15872", "10", "2018-05-23 11:57:54", "2018-05-23 18:57:54", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:57:54", "2018-05-23 18:57:54", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15873", "10", "2018-05-23 11:58:31", "2018-05-23 18:58:31", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:58:31", "2018-05-23 18:58:31", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15874", "10", "2018-05-23 11:58:39", "2018-05-23 18:58:39", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTraining OfferedAt South Island Centre, we routinely offer specialized, professional training.Read MoreImpact StoriesA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 11:58:39", "2018-05-23 18:58:39", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15875", "10", "2018-05-23 12:00:02", "2018-05-23 19:00:02", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 12:00:02", "2018-05-23 19:00:02", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15876", "10", "2018-05-23 12:00:16", "2018-05-23 19:00:16", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 12:00:16", "2018-05-23 19:00:16", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15877", "10", "2018-05-23 12:01:50", "2018-05-23 19:01:50", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 12:01:50", "2018-05-23 19:01:50", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15878", "10", "2018-05-23 12:02:09", "2018-05-23 19:02:09", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 12:02:09", "2018-05-23 19:02:09", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15879", "10", "2018-05-23 12:03:30", "2018-05-23 19:03:30", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 12:03:30", "2018-05-23 19:03:30", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15880", "10", "2018-05-23 12:03:55", "2018-05-23 19:03:55", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 12:03:55", "2018-05-23 19:03:55", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15881", "10", "2018-05-23 13:03:41", "2018-05-23 20:03:41", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Recent News\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:03:41", "2018-05-23 20:03:41", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15883", "10", "2018-05-23 13:07:27", "2018-05-23 20:07:27", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:07:27", "2018-05-23 20:07:27", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15884", "10", "2018-05-23 13:08:08", "2018-05-23 20:08:08", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:08:08", "2018-05-23 20:08:08", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15886", "10", "2018-05-23 13:11:58", "2018-05-23 20:11:58", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:11:58", "2018-05-23 20:11:58", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15887", "10", "2018-05-23 13:13:00", "2018-05-23 20:13:00", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:13:00", "2018-05-23 20:13:00", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15889", "10", "2018-05-23 13:14:27", "2018-05-23 20:14:27", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:14:27", "2018-05-23 20:14:27", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15891", "10", "2018-05-23 13:24:43", "2018-05-23 20:24:43", "Read what a participant in the <strong>CareerChoice Program</strong> had to say about the experience:\r\n\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\r\n\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n\r\n&nbsp;\r\n\r\nRead what a few participants of the<strong> Pastoral Counselling Training</strong> with trainer <strong>Bill Cole</strong> had to say about the experience:\r\n\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"\r\n\r\n&nbsp;\r\n\r\n<em>More testimonials are listed on the Home Page. We choose not to disclose the names or initials of our course participants or clients for confidentiality and privacy reasons. All quoted testimonials are excerpted from past course evaluations or client surveys.</em>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-05-23 13:24:43", "2018-05-23 20:24:43", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15892", "10", "2018-05-23 13:24:43", "2018-05-23 20:24:43", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n		Read what a participant in the <strong>CareerChoice Program</strong> had to say about the experience:\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\n&nbsp;\nRead what a few participants of the<strong> Family Systems Theory course</strong> with facilitator<strong> Bill Cole</strong> had to say about the experience:\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\n&nbsp;\nRead what a few participants of the<strong> Pastoral Counselling Training</strong> with trainer <strong>Bill Cole</strong> had to say about the experience:\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"\n&nbsp;\n<em>More testimonials are listed on the Home Page. We choose not to disclose the names or initials of our course participants or clients for confidentiality and privacy reasons. All quoted testimonials are excerpted from past course evaluations or client surveys.</em>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n								<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>			\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n								<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>			\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n								<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-05-23 13:24:43", "2018-05-23 20:24:43", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15893", "10", "2018-05-23 13:32:11", "2018-05-23 20:32:11", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n					<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>				\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n					<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>				\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n					<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-05-23 13:32:11", "2018-05-23 20:32:11", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15894", "10", "2018-05-23 13:36:06", "2018-05-23 20:36:06", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n					<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>				\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n					<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>				\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n					<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-05-23 13:36:06", "2018-05-23 20:36:06", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15895", "10", "2018-05-23 13:47:55", "2018-05-23 20:47:55", "<h2>IMPACT STORIES</h2>\r\n<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>\r\n<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5>\r\n<h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5>\r\n<h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5>\r\n<h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5>\r\n<h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.\r\nThe following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5>\r\n<h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5>\r\n<h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5>\r\n<h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>\r\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"\r\n<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>\r\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\r\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"\r\n<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>\r\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\r\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"\r\n<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-05-23 13:47:55", "2018-05-23 20:47:55", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15896", "10", "2018-05-23 13:51:29", "2018-05-23 20:51:29", " ", "", "", "publish", "closed", "closed", "", "15896", "", "", "2018-06-14 08:40:24", "2018-06-14 15:40:24", "", "15495", "http://localhost:8888/TestSICPage/wordpress/?p=15896", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15897", "10", "2018-05-23 13:53:12", "2018-05-23 20:53:12", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:53:12", "2018-05-23 20:53:12", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15898", "10", "2018-05-23 13:53:23", "2018-05-23 20:53:23", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead MoreHOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:53:23", "2018-05-23 20:53:23", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15899", "10", "2018-05-23 13:54:40", "2018-05-23 20:54:40", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read MoreTRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:54:40", "2018-05-23 20:54:40", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15900", "10", "2018-05-23 13:55:13", "2018-05-23 20:55:13", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read MoreIMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:55:13", "2018-05-23 20:55:13", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15901", "10", "2018-05-23 13:55:43", "2018-05-23 20:55:43", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read More</a>IMPACT STORIESA clientâ€™s story about how SICCT helped himRead More			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:55:43", "2018-05-23 20:55:43", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15902", "10", "2018-05-23 13:56:13", "2018-05-23 20:56:13", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">IMPACT STORIESA clientâ€™s story about how SICCT helped himRead More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:56:13", "2018-05-23 20:56:13", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15903", "10", "2018-05-23 13:58:37", "2018-05-23 20:58:37", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">WHO WE AREProfessional, affordable, income-based counselling services for all individuals\nRead More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.Read More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.Read More</a><a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">IMPACT STORIESA clientâ€™s story about how SICCT helped himRead More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 13:58:37", "2018-05-23 20:58:37", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15904", "10", "2018-05-23 15:46:50", "2018-05-23 22:46:50", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how SICCT helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-23 15:46:50", "2018-05-23 22:46:50", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15905", "10", "2018-05-23 15:53:39", "2018-05-23 22:53:39", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\"><u>Positive Psychology Group</u></a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\"><u>Young Adults Support group for Anxiety</u></a></p><p><u><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </u></p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\"><u>Making It Work for Teens!</u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"><u> Living with Loss Part 1, an Introduction to Grief and Loss </u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</u></a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </u></a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-23 15:53:39", "2018-05-23 22:53:39", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15906", "10", "2018-05-23 15:54:23", "2018-05-23 22:54:23", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\"><u>Positive Psychology Group</u></a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\"><u>Young Adults Support group for Anxiety</u></a></p><p><u><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </u></p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\"><u>Making It Work for Teens!</u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"><u> Living with Loss Part 1, an Introduction to Grief and Loss </u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</u></a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </u></a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-23 15:54:23", "2018-05-23 22:54:23", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15907", "10", "2018-05-23 15:57:44", "2018-05-23 22:57:44", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-23 15:57:44", "2018-05-23 22:57:44", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15908", "10", "2018-05-23 15:58:49", "2018-05-23 22:58:49", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h5>South Island Centre for Counselling and Training Society was established in 1975.</h5>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-23 15:58:49", "2018-05-23 22:58:49", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15909", "10", "2018-05-23 15:59:24", "2018-05-23 22:59:24", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>Â </p><p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-23 15:59:24", "2018-05-23 22:59:24", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15910", "10", "2018-05-23 16:01:00", "2018-05-23 23:01:00", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-23 16:01:00", "2018-05-23 23:01:00", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15911", "10", "2018-05-23 16:01:34", "2018-05-23 23:01:34", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-23 16:01:34", "2018-05-23 23:01:34", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15912", "10", "2018-05-23 16:01:51", "2018-05-23 23:01:51", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR History</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-23 16:01:51", "2018-05-23 23:01:51", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15913", "10", "2018-05-23 16:04:09", "2018-05-23 23:04:09", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>.Â If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><ul><li>Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2Â </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i></i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â toÂ email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-23 16:04:09", "2018-05-23 23:04:09", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15914", "10", "2018-05-23 16:04:51", "2018-05-23 23:04:51", "", "Cameron Bowler", "", "publish", "closed", "closed", "", "cameron-bowler", "", "", "2018-05-23 16:04:51", "2018-05-23 23:04:51", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=give_payment&#038;p=15914", "0", "give_payment", "", "1");
INSERT INTO `wp_posts` VALUES("15915", "10", "2018-05-23 16:07:35", "2018-05-23 23:07:35", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR HISTORY</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-23 16:07:35", "2018-05-23 23:07:35", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15916", "10", "2018-05-24 07:21:15", "2018-05-24 14:21:15", "<h2>How We Can Help</h2>		\n		<h5>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</h5><p>We can help with:</p><ul><li>depression, stress and anxiety</li><li>grief, loss, and life-transitions</li><li>senior care issues</li><li>end-of-life care</li><li>support and education</li><li>trauma and distress</li><li>relationship conflicts</li><li>self-esteem issues</li><li>emotional, sexual, and physical abuse</li><li>issues related to faith and spirituality</li><li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li></ul>		\n		<p><b>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.</b></p><p>Talk to your counsellor about your payment plans and options.</p><p>ToÂ MakeÂ an Appointment</p><ol><li>Call our office at Â Â Â Â Â 250-472-2851.</li><li><a style=\"color: blue;\" title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here </a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li></ol>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-05-24 07:21:15", "2018-05-24 14:21:15", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15917", "10", "2018-05-24 07:22:10", "2018-05-24 14:22:10", "<h2>Make an Appointment</h2>		\n		<h4>Â </h4><p>Contact us via <strong>email</strong>Â orÂ <strong><a style=\"color: blue;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â </p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-24 07:22:10", "2018-05-24 14:22:10", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15918", "10", "2018-05-24 07:23:51", "2018-05-24 14:23:51", "<h2>Registration & Payment Options</h2>		\n			<h3>How to Register</h3>		\n		<ul><li><a style=\"color: #000000;\" title=\"Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to fill out the registration form. Registrations will be confirmed via email.Â </li><li>Â Call Â <strong>250-472-2851</strong> and leave a voice mail with your contact information</li></ul><p>To complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.</p><p>Registration is on a first-come, first-serve basis.</p>		\n			<h3>Payment Options</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Cash</li><li style=\"font-size: 15px;\">Credit</li></ul><b>If paying by credit card, please call the office atÂ Â 250-472-2851 for processing.</b>		\n			<h3>Refunds</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">In the case of a cancellation, a full refund will be issued.</li><li style=\"font-size: 15px;\">Where cash payment has been made, refunds will be reimbursed by cheque.</li></ul>", "Registration & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2018-05-24 07:23:51", "2018-05-24 14:23:51", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15920", "10", "2018-05-24 16:29:52", "2018-05-24 23:29:52", "<h2>Make an Appointment</h2>		\n		<h4></h4>\nContact us via <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a style=\"color: blue;\" title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out a <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.\nÂ \n<strong>Call</strong> the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.\nÂ \n<strong style=\"font-size: 15px;\">Counselling hours</strong> are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\nÂ \n<strong style=\"font-size: 15px;\">Reception hours</strong> are Monday-Thursday, 9:00am-2:00pm.\nÂ \n<h4>Current Clients:</h4>\nPlease contact your counsellor directly by calling Â <i>icon-phone-square</i>Â <strong>250-472-2851</strong> <strong>and press 4 for the staff directory. </strong>Â ", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-24 16:29:52", "2018-05-24 23:29:52", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15921", "10", "2018-05-24 16:30:46", "2018-05-24 23:30:46", "<h2>Make an Appointment</h2>		\n		<p>Contact us viaÂ <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong>Â the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong>Counselling hours</strong>Â are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong>Reception hours</strong>Â are Monday-Thursday, 9:00am-2:00pm.</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â Â <strong>250-472-2851</strong>Â <strong>and press 4 for the staff directory.Â </strong>Â </p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-05-24 16:30:46", "2018-05-24 23:30:46", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15922", "10", "2018-05-24 19:13:45", "2018-05-25 02:13:45", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how SICCT helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-24 19:13:45", "2018-05-25 02:13:45", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15923", "10", "2018-05-24 19:14:18", "2018-05-25 02:14:18", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how SICCT helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-24 19:14:18", "2018-05-25 02:14:18", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15924", "10", "2018-05-25 13:15:25", "2018-05-25 20:15:25", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR HISTORY</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-05-25 13:15:25", "2018-05-25 20:15:25", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15925", "10", "2018-05-28 10:40:35", "2018-05-28 17:40:35", "{\n    \"astra-settings[disable-primary-nav]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-28 17:40:35\"\n    },\n    \"astra-settings[header-main-rt-section-html]\": {\n        \"value\": \"<button id = \\\"donatebutton\\\"><a href=\\\"http://localhost:8888/TestSICPage/wordpress/donate-2\\\">Donate</a></button>\\n\\n\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-28 17:40:35\"\n    }\n}", "", "", "trash", "closed", "closed", "", "a1b81be0-502d-4a82-a791-78de8ec4183e", "", "", "2018-05-28 10:40:35", "2018-05-28 17:40:35", "", "0", "http://localhost:8888/TestSICPage/wordpress/a1b81be0-502d-4a82-a791-78de8ec4183e/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15926", "10", "2018-05-28 10:41:19", "2018-05-28 17:41:19", "{\n    \"astra-settings[header-main-layout-width]\": {\n        \"value\": \"full\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-28 17:41:19\"\n    }\n}", "", "", "trash", "closed", "closed", "", "f416c1f4-52e0-4921-ad63-6a25077f5cba", "", "", "2018-05-28 10:41:19", "2018-05-28 17:41:19", "", "0", "http://localhost:8888/TestSICPage/wordpress/f416c1f4-52e0-4921-ad63-6a25077f5cba/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15927", "10", "2018-05-28 10:42:37", "2018-05-28 17:42:37", "{\n    \"astra-settings[ast-header-responsive-logo-width]\": {\n        \"value\": {\n            \"desktop\": \"104\",\n            \"tablet\": \"93\",\n            \"mobile\": \"90\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-28 17:42:37\"\n    }\n}", "", "", "trash", "closed", "closed", "", "4f5e4632-f01b-46fc-8a59-adbe26062273", "", "", "2018-05-28 10:42:37", "2018-05-28 17:42:37", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=15927", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15928", "10", "2018-05-28 10:43:29", "2018-05-28 17:43:29", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how SICCT helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-28 10:43:29", "2018-05-28 17:43:29", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15929", "10", "2018-05-28 10:46:58", "2018-05-28 17:46:58", "{\n    \"astra-settings[ast-header-retina-logo]\": {\n        \"value\": \"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/MainLogo-Lg.png\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-28 17:46:58\"\n    }\n}", "", "", "trash", "closed", "closed", "", "0f271fd6-a87a-4f86-84ab-d9cd6b10e760", "", "", "2018-05-28 10:46:58", "2018-05-28 17:46:58", "", "0", "http://localhost:8888/TestSICPage/wordpress/0f271fd6-a87a-4f86-84ab-d9cd6b10e760/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15930", "10", "2018-05-28 10:47:13", "2018-05-28 17:47:13", "{\n    \"astra-settings[ast-header-responsive-logo-width]\": {\n        \"value\": {\n            \"desktop\": \"130\",\n            \"tablet\": \"93\",\n            \"mobile\": \"90\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-28 17:47:13\"\n    }\n}", "", "", "trash", "closed", "closed", "", "f0e0d92b-9267-45e0-ab3a-0e9c12cf2147", "", "", "2018-05-28 10:47:13", "2018-05-28 17:47:13", "", "0", "http://localhost:8888/TestSICPage/wordpress/f0e0d92b-9267-45e0-ab3a-0e9c12cf2147/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15931", "10", "2018-05-28 10:48:10", "2018-05-28 17:48:10", "{\n    \"astra-settings[ast-header-responsive-logo-width]\": {\n        \"value\": {\n            \"desktop\": \"100\",\n            \"tablet\": \"93\",\n            \"mobile\": \"90\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-28 17:48:10\"\n    }\n}", "", "", "trash", "closed", "closed", "", "61667777-2046-4f92-9e85-d7d8134e6288", "", "", "2018-05-28 10:48:10", "2018-05-28 17:48:10", "", "0", "http://localhost:8888/TestSICPage/wordpress/61667777-2046-4f92-9e85-d7d8134e6288/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15932", "10", "2018-05-28 10:48:55", "2018-05-28 17:48:55", "{\n    \"astra-settings[ast-header-responsive-logo-width]\": {\n        \"value\": {\n            \"desktop\": \"100\",\n            \"tablet\": \"93\",\n            \"mobile\": \"90\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-28 17:48:55\"\n    }\n}", "", "", "trash", "closed", "closed", "", "418bc6e9-c6b6-4e7b-ba21-87ffe30e4d12", "", "", "2018-05-28 10:48:55", "2018-05-28 17:48:55", "", "0", "http://localhost:8888/TestSICPage/wordpress/418bc6e9-c6b6-4e7b-ba21-87ffe30e4d12/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15933", "10", "2018-05-28 10:49:27", "2018-05-28 17:49:27", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how SICCT helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-28 10:49:27", "2018-05-28 17:49:27", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15934", "10", "2018-05-28 10:50:25", "2018-05-28 17:50:25", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how SICCT helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-28 10:50:25", "2018-05-28 17:50:25", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15935", "10", "2018-05-28 10:52:03", "2018-05-28 17:52:03", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how SICCT helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-28 10:52:03", "2018-05-28 17:52:03", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15936", "10", "2018-05-28 10:53:04", "2018-05-28 17:53:04", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how South Island Centre helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-28 10:53:04", "2018-05-28 17:53:04", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15937", "10", "2018-05-28 10:56:08", "2018-05-28 17:56:08", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Rosemary Merritt  <br><br>MEd, MPE, RCC</h3>		\n		<p>Â Focuses onÂ working with young men and women around self-esteem issues, self empowerment, depression, anxiety, holistic well-being, change, academic issues, sport, career andÂ family related issues.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-05-28 10:56:08", "2018-05-28 17:56:08", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15938", "10", "2018-05-28 10:57:43", "2018-05-28 17:57:43", "<h2>Income-Based Counselling Services</h2>		\n		<h5>At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.</h5><p>Â </p><p><strong>Costs of Counselling</strong></p><p>Counselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.</p><p>Please note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.</p><p>Payment can be made with cash, debit or credit card.</p>		\n		<p><strong>Insurance Coverage</strong></p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br />It is your responsibility to submit receipts to your provider for reimbursement.<br />If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br />We not bill external parties for services rendered.</p>", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2018-05-28 10:57:43", "2018-05-28 17:57:43", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15939", "10", "2018-05-28 10:58:14", "2018-05-28 17:58:14", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<p><b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Counselling Inquiry Form</a>.</b></p><p><b>Â </b></p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b></p>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-05-28 10:58:14", "2018-05-28 17:58:14", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15940", "10", "2018-05-28 10:58:47", "2018-05-28 17:58:47", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n					<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>				\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n					<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>				\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n					<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-05-28 10:58:47", "2018-05-28 17:58:47", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15941", "10", "2018-05-28 10:59:36", "2018-05-28 17:59:36", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only.</p><p><strong>Our Mailing Address:</strong><br /> 3821A Cedar Hill Cross Road<br /> Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "How To Reach Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-05-28 10:59:36", "2018-05-28 17:59:36", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15942", "10", "2018-05-28 11:00:29", "2018-05-28 18:00:29", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\"><u>Positive Psychology Group</u></a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\"><u>Young Adults Support group for Anxiety</u></a></p><p><u><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </u></p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\"><u>Making It Work for Teens!</u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"><u> Living with Loss Part 1, an Introduction to Grief and Loss </u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</u></a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </u></a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-05-28 11:00:29", "2018-05-28 18:00:29", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15943", "10", "2018-05-28 11:04:25", "2018-05-28 18:04:25", "<h2>Registration & Payment Options</h2>		\n			<h3>How to Register</h3>		\n		<ul>\n 	<li><a style=\"color: blue;\" title=\"Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\" rel=\"noopener\" >Click here</a>Â to fill out the registration form. Registrations will be confirmed via email.Â </li>\n 	<li>Â Call Â <strong>250-472-2851</strong> and leave a voice mail with your contact information</li>\n</ul>\nTo complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.\nRegistration is on a first-come, first-serve basis.		\n			<h3>Payment Options</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Cash</li><li style=\"font-size: 15px;\">Credit</li></ul><b>If paying by credit card, please call the office atÂ Â 250-472-2851 for processing.</b>		\n			<h3>Refunds</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">In the case of a cancellation, a full refund will be issued.</li><li style=\"font-size: 15px;\">Where cash payment has been made, refunds will be reimbursed by cheque.</li></ul>", "Registration & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2018-05-28 11:04:25", "2018-05-28 18:04:25", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15944", "10", "2018-05-28 11:05:32", "2018-05-28 18:05:32", "<h2>Mental Health Resources</h2>		\n												Addictions					\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400; background-color: #ffffff;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â </p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: #ff6a00;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: #ff6a00;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-28 11:05:32", "2018-05-28 18:05:32", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15945", "10", "2018-05-28 11:07:38", "2018-05-28 18:07:38", "<h2>Mental Health Resources</h2>		\n												Addictions					\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: #ff6a00;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: #ff6a00;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-28 11:07:38", "2018-05-28 18:07:38", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15946", "10", "2018-05-28 11:08:02", "2018-05-28 18:08:02", "<h2>Mental Health Resources</h2>		\n												Addictions					\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: blue;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: #ff6a00;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a>Â Â </p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-28 11:08:02", "2018-05-28 18:08:02", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15947", "10", "2018-05-28 11:08:22", "2018-05-28 18:08:22", "<h2>Mental Health Resources</h2>		\n												Addictions					\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: blue;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: blue;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-28 11:08:22", "2018-05-28 18:08:22", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15948", "10", "2018-05-28 11:10:38", "2018-05-28 18:10:38", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: blue;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: blue;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-05-28 11:10:38", "2018-05-28 18:10:38", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15949", "10", "2018-05-29 14:47:27", "2018-05-29 21:47:27", "{\n    \"astra-settings[header-main-rt-section-html]\": {\n        \"value\": \"<a href=\\\"http://localhost:8888/TestSICPage/wordpress/donate-2\\\"><button>Donate</button></a>\\n\\n\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-29 21:47:27\"\n    }\n}", "", "", "trash", "closed", "closed", "", "b700c082-950d-440d-80f6-76df1ecb91d3", "", "", "2018-05-29 14:47:27", "2018-05-29 21:47:27", "", "0", "http://localhost:8888/TestSICPage/wordpress/b700c082-950d-440d-80f6-76df1ecb91d3/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15950", "10", "2018-05-29 14:50:13", "2018-05-29 21:50:13", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how South Island Centre helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-29 14:50:13", "2018-05-29 21:50:13", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15951", "10", "2018-05-29 14:52:33", "2018-05-29 21:52:33", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how South Island Centre helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-29 14:52:33", "2018-05-29 21:52:33", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15953", "10", "2018-05-29 14:55:48", "2018-05-29 21:55:48", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how South Island Centre helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-29 14:55:48", "2018-05-29 21:55:48", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15955", "10", "2018-05-29 15:05:00", "2018-05-29 22:05:00", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE AREProfessional, affordable, income-based counselling services for all individuals\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how South Island Centre helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-29 15:05:00", "2018-05-29 22:05:00", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15956", "10", "2018-05-29 15:39:36", "2018-05-29 22:39:36", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how South Island Centre helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-29 15:39:36", "2018-05-29 22:39:36", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15957", "10", "2018-05-29 15:46:34", "2018-05-29 22:46:34", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESA clientâ€™s story about how South Island Centre helped him<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-29 15:46:34", "2018-05-29 22:46:34", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15958", "10", "2018-05-29 15:47:10", "2018-05-29 22:47:10", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-29 15:47:10", "2018-05-29 22:47:10", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15959", "10", "2018-05-29 15:47:32", "2018-05-29 22:47:32", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-29 15:47:32", "2018-05-29 22:47:32", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15960", "10", "2018-05-31 08:25:50", "2018-05-31 15:25:50", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>.Â If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><ul><li>Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2Â </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i></i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â toÂ email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-05-31 08:25:50", "2018-05-31 15:25:50", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15961", "10", "2018-05-31 09:00:52", "2018-05-31 16:00:52", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:00:52", "2018-05-31 16:00:52", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15962", "10", "2018-05-31 09:02:13", "2018-05-31 16:02:13", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:02:13", "2018-05-31 16:02:13", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15963", "10", "2018-05-31 09:19:53", "2018-05-31 16:19:53", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:19:53", "2018-05-31 16:19:53", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15964", "10", "2018-05-31 09:33:46", "2018-05-31 16:33:46", "{\n    \"astra-settings[header-main-sep]\": {\n        \"value\": \"0\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-31 16:30:12\"\n    },\n    \"astra-settings[header-main-menu-align]\": {\n        \"value\": \"inline\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-31 16:31:13\"\n    },\n    \"astra-settings[button-v-padding]\": {\n        \"value\": \"14\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-31 16:30:12\"\n    },\n    \"astra-settings[header-display-outside-menu]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-31 16:31:13\"\n    },\n    \"astra-settings[header-main-rt-section-html]\": {\n        \"value\": \"<a href=\\\"http://localhost:8888/TestSICPage/wordpress/donate-2\\\" style=\\\"margin-top: -50px\\\"><button>Donate</button></a>\\n\\n\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-31 16:33:46\"\n    }\n}", "", "", "trash", "closed", "closed", "", "0f1fc029-12d5-40b4-a2e3-fcc6693d7560", "", "", "2018-05-31 09:33:46", "2018-05-31 16:33:46", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=15964", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("15966", "10", "2018-05-31 09:45:20", "2018-05-31 16:45:20", "<h1>Welcome to <br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:45:20", "2018-05-31 16:45:20", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15967", "10", "2018-05-31 09:45:50", "2018-05-31 16:45:50", "<h1><br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:45:50", "2018-05-31 16:45:50", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15968", "10", "2018-05-31 09:47:05", "2018-05-31 16:47:05", "<h1>Welcome to<br><br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:47:05", "2018-05-31 16:47:05", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15969", "10", "2018-05-31 09:47:39", "2018-05-31 16:47:39", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:47:39", "2018-05-31 16:47:39", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15970", "10", "2018-05-31 09:48:15", "2018-05-31 16:48:15", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:48:15", "2018-05-31 16:48:15", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15972", "10", "2018-05-31 09:52:16", "2018-05-31 16:52:16", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:52:16", "2018-05-31 16:52:16", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15973", "10", "2018-05-31 09:52:54", "2018-05-31 16:52:54", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:52:54", "2018-05-31 16:52:54", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15974", "10", "2018-05-31 09:53:47", "2018-05-31 16:53:47", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 09:53:47", "2018-05-31 16:53:47", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15976", "10", "2018-05-31 10:06:20", "2018-05-31 17:06:20", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:06:20", "2018-05-31 17:06:20", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15977", "10", "2018-05-31 10:06:35", "2018-05-31 17:06:35", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:06:35", "2018-05-31 17:06:35", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15978", "10", "2018-05-31 10:06:49", "2018-05-31 17:06:49", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:06:49", "2018-05-31 17:06:49", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15979", "10", "2018-05-31 10:07:11", "2018-05-31 17:07:11", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:07:11", "2018-05-31 17:07:11", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15980", "10", "2018-05-31 10:08:04", "2018-05-31 17:08:04", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:08:04", "2018-05-31 17:08:04", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15981", "10", "2018-05-31 10:08:14", "2018-05-31 17:08:14", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:08:14", "2018-05-31 17:08:14", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15983", "10", "2018-05-31 10:28:11", "2018-05-31 17:28:11", "<h1>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h1>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:28:11", "2018-05-31 17:28:11", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15984", "10", "2018-05-31 10:29:19", "2018-05-31 17:29:19", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:29:19", "2018-05-31 17:29:19", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15986", "10", "2018-05-31 10:35:16", "2018-05-31 17:35:16", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n					<h3>\n					</h3>\n				<h4>\n					Check Out Our NewsLetter\n				</h4>\n				<p>This will be a spot for your most recent news and the icon will provide a link to your newsLetter<br></p>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:35:16", "2018-05-31 17:35:16", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15988", "10", "2018-05-31 10:48:34", "2018-05-31 17:48:34", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								This is the heading							</h3>\n								Click edit button to change this text. Lorem ipsum dolor sit amet consectetur adipiscing elit dolor							\n													<a href=\"#\">\n								Click Here							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:48:34", "2018-05-31 17:48:34", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15989", "10", "2018-05-31 10:52:48", "2018-05-31 17:52:48", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:52:48", "2018-05-31 17:52:48", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15990", "10", "2018-05-31 10:53:11", "2018-05-31 17:53:11", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:53:11", "2018-05-31 17:53:11", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15991", "10", "2018-05-31 10:54:10", "2018-05-31 17:54:10", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:54:10", "2018-05-31 17:54:10", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15992", "10", "2018-05-31 10:54:51", "2018-05-31 17:54:51", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:54:51", "2018-05-31 17:54:51", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15993", "10", "2018-05-31 10:55:45", "2018-05-31 17:55:45", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:55:45", "2018-05-31 17:55:45", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15994", "10", "2018-05-31 10:56:09", "2018-05-31 17:56:09", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:56:09", "2018-05-31 17:56:09", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15995", "10", "2018-05-31 10:58:34", "2018-05-31 17:58:34", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:58:34", "2018-05-31 17:58:34", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15996", "10", "2018-05-31 10:58:45", "2018-05-31 17:58:45", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:58:45", "2018-05-31 17:58:45", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15997", "10", "2018-05-31 10:59:39", "2018-05-31 17:59:39", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 10:59:39", "2018-05-31 17:59:39", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15998", "10", "2018-05-31 11:01:47", "2018-05-31 18:01:47", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 11:01:47", "2018-05-31 18:01:47", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15999", "10", "2018-05-31 11:02:23", "2018-05-31 18:02:23", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 11:02:23", "2018-05-31 18:02:23", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16000", "10", "2018-05-31 11:03:08", "2018-05-31 18:03:08", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 11:03:08", "2018-05-31 18:03:08", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16001", "10", "2018-05-31 11:04:34", "2018-05-31 18:04:34", "{\n    \"astra-settings[button-bg-color]\": {\n        \"value\": \"#61ce70\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-31 18:04:34\"\n    },\n    \"astra-settings[button-bg-h-color]\": {\n        \"value\": \"#ff6a00\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-05-31 18:04:34\"\n    }\n}", "", "", "trash", "closed", "closed", "", "8e3a4acc-5c3f-4770-8e1f-eb6859c687e6", "", "", "2018-05-31 11:04:34", "2018-05-31 18:04:34", "", "0", "http://localhost:8888/TestSICPage/wordpress/8e3a4acc-5c3f-4770-8e1f-eb6859c687e6/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("16002", "10", "2018-05-31 11:07:10", "2018-05-31 18:07:10", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>			\n					<h3>\n							This page is\n					</h3>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 11:07:10", "2018-05-31 18:07:10", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16003", "10", "2018-05-31 11:08:26", "2018-05-31 18:08:26", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 11:08:26", "2018-05-31 18:08:26", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16004", "10", "2018-05-31 17:34:49", "2018-06-01 00:34:49", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 17:34:49", "2018-06-01 00:34:49", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16005", "10", "2018-05-31 17:35:51", "2018-06-01 00:35:51", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 17:35:51", "2018-06-01 00:35:51", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16006", "10", "2018-05-31 17:36:35", "2018-06-01 00:36:35", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"#\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-05-31 17:36:35", "2018-06-01 00:36:35", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16007", "10", "2018-06-05 10:22:20", "2018-06-05 17:22:20", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"file:///Users/HomeFolder/Library/Containers/com.apple.mail/Data/Library/Mail%20Downloads/63475DC3-913D-4444-9056-56CDDD1A05E3/Summer%20Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:22:20", "2018-06-05 17:22:20", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16008", "10", "2018-06-05 10:24:35", "2018-06-05 17:24:35", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\">Summer Newsletter</a>", "NewsLetter", "", "publish", "closed", "closed", "", "newsletter", "", "", "2018-06-05 10:24:35", "2018-06-05 17:24:35", "", "0", "http://localhost:8888/TestSICPage/wordpress/?page_id=16008", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("16009", "10", "2018-06-05 10:24:21", "2018-06-05 17:24:21", "", "Summer Newsletter", "", "inherit", "closed", "closed", "", "summer-newsletter", "", "", "2018-06-05 10:24:21", "2018-06-05 17:24:21", "", "16008", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html", "0", "attachment", "text/html", "0");
INSERT INTO `wp_posts` VALUES("16010", "10", "2018-06-05 10:24:35", "2018-06-05 17:24:35", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\">Summer Newsletter</a>", "NewsLetter", "", "inherit", "closed", "closed", "", "16008-revision-v1", "", "", "2018-06-05 10:24:35", "2018-06-05 17:24:35", "", "16008", "http://localhost:8888/TestSICPage/wordpress/16008-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16016", "10", "2018-06-05 10:31:06", "2018-06-05 17:31:06", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\r\n													<h3>\r\n								Mark Your Calendars !							</h3>\r\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \r\nFor further information, please contact Kathryn at 250-472-2851							\r\n													<h3>\r\n								Check out our Newsletter							</h3>\r\n								Want to know more about our recent news, head on over to our most recent news letter !							\r\n\r\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\r\n								Read More							</a>\r\n				WHO WE ARE\r\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\r\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\r\n			<h2>DONATE</h2>		\r\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\r\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\r\n						donate\r\n					</a>\r\n			<h2>PARTNERS</h2>		\r\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:31:06", "2018-06-05 17:31:06", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16017", "10", "2018-06-05 10:32:05", "2018-06-05 17:32:05", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"file:///Users/HomeFolder/Library/Containers/com.apple.mail/Data/Library/Mail%20Downloads/63475DC3-913D-4444-9056-56CDDD1A05E3/Summer%20Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:32:05", "2018-06-05 17:32:05", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16018", "10", "2018-06-05 10:34:05", "2018-06-05 17:34:05", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:34:05", "2018-06-05 17:34:05", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16019", "10", "2018-06-05 10:42:10", "2018-06-05 17:42:10", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:42:10", "2018-06-05 17:42:10", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16020", "10", "2018-06-05 10:43:11", "2018-06-05 17:43:11", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:43:11", "2018-06-05 17:43:11", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16021", "10", "2018-06-05 10:43:51", "2018-06-05 17:43:51", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:43:51", "2018-06-05 17:43:51", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16022", "10", "2018-06-05 10:44:55", "2018-06-05 17:44:55", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:44:55", "2018-06-05 17:44:55", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16023", "10", "2018-06-05 10:45:26", "2018-06-05 17:45:26", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 10:45:26", "2018-06-05 17:45:26", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16025", "10", "2018-06-05 11:27:00", "2018-06-05 18:27:00", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre is holding its Annual General Meeting on Wednesday, May 30th at 7pm in the lounge at St. Lukeâ€™s Hall.  The general public is welcome to attend.  \nFor further information, please contact Kathryn at 250-472-2851							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-05 11:27:00", "2018-06-05 18:27:00", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16026", "10", "2018-06-05 14:09:45", "2018-06-05 21:09:45", "{\n    \"sccss_settings[sccss-content]\": {\n        \"value\": \".menu-toggle, button, .ast-button, .button, input#submit, input[type=\\\"button\\\"], input[type=\\\"submit\\\"], input[type=\\\"reset\\\"] {\\n    border-radius: 50px;\\n    padding: 17px 60px;\\n    color: #ffffff;\\n    border-color: #81d742;\\n    background-color: #81d742;\\n  \\tmargin-top: 30px;\\n}\\na{\\n  color: blue;\\n}\\n\\n#bitnami-banner {\\n  display:none;\\n}\\n\\n.main-header-bar{\\n  background: linear-gradient(white, lightgrey);\\n}\\n\\n.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {\\n    padding: 0px;\\n}\\n\\n\\n.post-edit-link{\\ndisplay:none;\\n}\\n\\n.elementor-869 .elementor-element.elementor-element-3ab3da45 {\\n    color: #000000;\\n    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;\\n    color: #000000;\\n    overflow-y: scroll!important;\\n    height: 350px!important;\\n}\\n\\n.elementor-4 .elementor-element.elementor-element-9d35b10 .elementor-widget-container {\\n    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;\\n    color: #000000;\\n  overflow-y: scroll!important;\\n    height: 350px!important;\\n}\\n\\n.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle, .ast-header-break-point .main-header-bar .main-header-bar-navigation .page_item_has_children>.ast-menu-toggle {\\n    display: inline-block;\\n    position: absolute;\\n    font-size: inherit;\\n    top: -30px!important;\\n    right: 20px;\\n    cursor: pointer;\\n    -webkit-font-smoothing: antialiased;\\n    -moz-osx-font-smoothing: grayscale;\\n    padding: 0 .907em;\\n    font-weight: 400;\\n    line-height: inherit;\\n    -webkit-transition: all .2s;\\n    transition: all .2s;\\n}\\n\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-06-05 21:09:44\"\n    }\n}", "", "", "trash", "closed", "closed", "", "4dfe14cf-00a3-4718-ba2b-63c2b0e2f3d1", "", "", "2018-06-05 14:09:45", "2018-06-05 21:09:45", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=16026", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("16027", "10", "2018-06-05 14:13:13", "2018-06-05 21:13:13", "{\n    \"sccss_settings[sccss-content]\": {\n        \"value\": \".menu-toggle, button, .ast-button, .button, input#submit, input[type=\\\"button\\\"], input[type=\\\"submit\\\"], input[type=\\\"reset\\\"] {\\n    border-radius: 50px;\\n    padding: 17px 60px;\\n    color: #ffffff;\\n    border-color: #81d742;\\n    background-color: #81d742;\\n  \\tmargin-top: 30px;\\n}\\na{\\n  color: blue;\\n}\\n\\n#bitnami-banner {\\n  display:none;\\n}\\n\\n\\n.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {\\n    padding: 0px;\\n}\\n\\n\\n.post-edit-link{\\ndisplay:none;\\n}\\n\\n.elementor-869 .elementor-element.elementor-element-3ab3da45 {\\n    color: #000000;\\n    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;\\n    color: #000000;\\n    overflow-y: scroll!important;\\n    height: 350px!important;\\n}\\n\\n.elementor-4 .elementor-element.elementor-element-9d35b10 .elementor-widget-container {\\n    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;\\n    color: #000000;\\n  overflow-y: scroll!important;\\n    height: 350px!important;\\n}\\n\\n.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle, .ast-header-break-point .main-header-bar .main-header-bar-navigation .page_item_has_children>.ast-menu-toggle {\\n    display: inline-block;\\n    position: absolute;\\n    font-size: inherit;\\n    top: -30px!important;\\n    right: 20px;\\n    cursor: pointer;\\n    -webkit-font-smoothing: antialiased;\\n    -moz-osx-font-smoothing: grayscale;\\n    padding: 0 .907em;\\n    font-weight: 400;\\n    line-height: inherit;\\n    -webkit-transition: all .2s;\\n    transition: all .2s;\\n}\\n\",\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-06-05 21:13:13\"\n    }\n}", "", "", "trash", "closed", "closed", "", "90876277-a592-46cb-a2e4-dd964bd156d9", "", "", "2018-06-05 14:13:13", "2018-06-05 21:13:13", "", "0", "http://localhost:8888/TestSICPage/wordpress/90876277-a592-46cb-a2e4-dd964bd156d9/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("16028", "10", "2018-06-12 06:56:55", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "closed", "closed", "", "", "", "", "2018-06-12 06:56:55", "0000-00-00 00:00:00", "", "0", "http://localhost:8888/TestSICPage/wordpress/?p=16028", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("16029", "10", "2018-06-12 07:51:04", "2018-06-12 14:51:04", "<h2>Support Us</h2>		\n			<h1>Help change the course of a life today\n</h1>		\n		[give_form id=\"101\"]		\n		<p>South Island Centre relies on the generosity of individuals and organizations like yourselves to fund our work. In order to fulfill our mission of providing our services toÂ <strong>everyone</strong>, even those who cannot afford our services, we make use of our<strong>Â Samaritan\'s Fund</strong>.Â If you would like to help us and our Samaritan\'s Fund, please donate generously using the options below.</p><p><strong>There are 4 options to make a donation to our Samaritan\'s Fund</strong>Â (for example: one-time, monthly, quarterly, annual etc):</p><ul><li>Option 1Â : Use our online donation plugin on this page to make a donation directly to us through PayPal.</li></ul><ul><li><strong>Option 2Â </strong>: please mail aÂ <strong>cheque</strong>Â (payable toÂ <strong><em>South Island Centre for Counselling and Training)</em></strong>Â toÂ <strong>3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6.Â </strong>PleaseÂ include your mailing/return address, so that we may send you a charitable donation receipt for the full amount of your donation within 4 weeks after receipt.</li></ul><ul><li><strong>Option 3</strong>Â :Â Charge a one-time donation to yourÂ <strong>credit card</strong>Â by calling the office atÂ Â Â Â <i></i>Â <strong>250-472-2851, extension 101</strong>, and the office co-ordinator will process the charge over the phone. Please let us know if you would like to set up aÂ <strong>regular monthly donation</strong>, as well as your mailing/return address. WeÂ will send you an annual charitable donation receipt for the full amount of your donation at tax year-end. Please note that credit card companies routinely deduct a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><ul><li><strong>Option 4:</strong>Â <a title=\"Link to CanadaHelps.org\" href=\"https://www.canadahelps.org/dn/12787\" target=\"_blank\" rel=\"noopener\">Click here</a>Â to make a donation with CanadaHelps.org. You will need a credit card to complete this on-line donation process. Please note that CandaHelps deducts a percentage of the donation for their services, whichÂ decreases the amountÂ we actually receive.</li></ul><p><strong>Why monthly or quarterly giving?</strong></p><p>Monthly or quarterly giving enables you to budget your charitable giving more easily by spreading your donation over the year. You are in complete control of your giving. You may alter or cancel your monthly gift at any time. Monthly giving provides a reliable source of income, helping South Island Centre to plan ahead and maximize your investment. And it saves on administration costs, putting more of your dollars to work in support of South Island Centre. Eligible monthly and quarterly donations will receive one consolidated tax receipt at tax year-end.</p><p><strong>The Fine Print</strong></p><p>Personal information you provide will be updated on our database and used to provide you with a receipt for your gift, to communicate with you about events and schedules, courses and services, and fundraising appeals. At any time you have the right to request that your personal information cease to be used. We will not share your contact information with any outside source.</p><p><strong>In-Kind Donation /VolunteeringÂ </strong></p><p>You may help us with anÂ <strong>in-kind donation</strong>Â when you volunteer your time and/or talent</p><ul><li>at South Island CentreÂ <strong>events</strong>,</li><li>at the South Island CentreÂ <strong>office</strong>,</li><li>as a South Island CentreÂ <strong>board member</strong>.</li></ul><p>Please contact us at Â Â <i></i>Â Â <strong>250-472-2851, extension 101</strong>Â (front desk) orÂ <a title=\"Link to Donate your time admin@localhost\" href=\"mailto:admin@localhost\" target=\"_blank\" rel=\"noopener\">click here</a>Â toÂ email us at admin@localhost, if you are able to donate your time and talent to a worthwhile cause!</p><p>Thank you for your generosity!</p>", "DONATE", "", "inherit", "closed", "closed", "", "103-revision-v1", "", "", "2018-06-12 07:51:04", "2018-06-12 14:51:04", "", "103", "http://localhost:8888/TestSICPage/wordpress/103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16030", "10", "2018-06-12 08:07:43", "2018-06-12 15:07:43", "<h2>How To Reach Us</h2>\r\n<strong>Phone:</strong>Â (250) 472-2851\r\n\r\n<strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong>\r\n\r\n<strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays\r\n\r\n<strong>Counselling:</strong>Â Counselling is by appointment only.\r\n\r\n<strong>Our Mailing Address:</strong>\r\n3821A Cedar Hill Cross Road\r\nVictoria, BC V8P 2M6\r\n\r\n<a role=\"button\" href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" rel=\"noopener\">\r\nOur Blog\r\n</a>\r\n<a role=\"button\" href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" rel=\"noopener\">\r\nOur Facebook\r\n</a>", "Contact Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-06-12 08:07:43", "2018-06-12 15:07:43", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16031", "10", "2018-06-12 08:17:06", "2018-06-12 15:17:06", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only<br /><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong></p><p><strong>Our Mailing Address:</strong><br />3821A Cedar Hill Cross Road<br />Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "Contact Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-06-12 08:17:06", "2018-06-12 15:17:06", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16032", "10", "2018-06-12 08:18:56", "2018-06-12 15:18:56", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only<br /><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong></p><p><strong>Our Mailing Address:</strong><br />3821A Cedar Hill Cross Road<br />Victoria, BC V8P 2M6</p>		\n			<a href=\"http://southislandcentre.blogspot.ca/\" target=\"_blank\" role=\"button\">\n						Our Blog\n					</a>\n			<a href=\"https://www.facebook.com/southislandcentre/?ref=bookmarks#\" target=\"_blank\" role=\"button\">\n						Our Facebook\n					</a>", "Contact Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-06-12 08:18:56", "2018-06-12 15:18:56", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16033", "10", "2018-06-12 10:18:20", "2018-06-12 17:18:20", "{\n    \"astra-settings[ast-header-responsive-logo-width]\": {\n        \"value\": {\n            \"desktop\": \"120\",\n            \"tablet\": \"93\",\n            \"mobile\": \"90\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-06-12 17:18:20\"\n    }\n}", "", "", "trash", "closed", "closed", "", "9e3e0767-34af-4378-9159-a8fb7435c51c", "", "", "2018-06-12 10:18:20", "2018-06-12 17:18:20", "", "0", "http://localhost:8888/TestSICPage/wordpress/9e3e0767-34af-4378-9159-a8fb7435c51c/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("16034", "10", "2018-06-12 10:21:44", "2018-06-12 17:21:44", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR HISTORY</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-06-12 10:21:44", "2018-06-12 17:21:44", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16035", "10", "2018-06-12 10:47:48", "2018-06-12 17:47:48", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n					<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>				\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n					<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>				\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n					<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-06-12 10:47:48", "2018-06-12 17:47:48", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16036", "10", "2018-06-13 07:05:02", "2018-06-13 14:05:02", "<h2>Our Counsellors</h2>		\n			<h3>Amber Eves <br><br>MEd, RCC</h3>		\n		<p>Director of Services, hasÂ extensiveÂ experience as an educator,Â  school,Â  and community mental health counsellor. Amber received her Mastersâ€™ in Counselling Psychology in 1994 to specialize in school counselling which she pursued in school districts on Vancouver Island and the lower mainland. She also worked in the US as a licensed mental health practitioner. Amber has worked with children and families who have experienced trauma and abuse and is trained in assistingÂ women heal from sexual abuse. She employsÂ a variety of therapeutic approaches including cognitive behavioral therapy, dialectical behavioral therapy,Â and internal family systems therapy to support her clients.Amber is also trained in couples\' counselling and has completed levels 1 and 2 of the Gottman marriage training program.</p>		\n			<h3>Margaret Anderson <br><br>CHPCA, BCHPCA</h3>		\n		<p>Specializes in grief, loss and other life transition issues including seniorÂ care and end-of-life preparedness. A member of the Canadian Hospice and Palliative Care Association (CHPCA) and its BC affiliate the British Columbia Hospice and Palliative Care Association (BCHPCA), Margaret\'sÂ counselling practice covers an array of issues dealing withÂ relationships, domestic violence, sexual abuse, self-esteem, spiritual issues, depression and anxiety. Margaret is an experienced educator and facilitator on bereavement, end-of-life care, elder-care issues and spiritual care. She has vast experienceÂ with advanced care planning and family mediationÂ on behalf of elderly clients including those living with chronicÂ and terminal illness.</p>		\n			<h3>Barbara Baillie <br><br>MAPPC, BCATR</h3>		\n		<p>HoldsÂ a Master\'s degree in Theological Studies and Training in spiritual direction. Barb graduated with a M.A. In Pastoral Psychology and Counselling with an art therapy specialization. She helps clients towards a deeper self-knowledge and acceptance. As a trained midlife/long life facilitator, she is also adept at helping clients with the transition points inÂ the second half of life. She\'s supported many women through separation and divorce moving them toward positive self.</p>		\n			<h3>Laurie Truant<br><br>MA, RCC</h3>		\n		<p>Specializes in working with individuals experiencing anxiety and depression. SheÂ provides individual and group therapy as well as psycho-educational support groups for children, adolescents and adults with a broad range of mental health issues including depression, anxiety, eating disorders, alcohol and drug addiction, separation and divorce, and developmental disabilities. Laurie\'s background in social service agencies, community mental health, outpatient services, residential addiction treatment centre, and day program/sheltered workshops gives her unique insight into present dayÂ social issues.</p>		\n			<h3>Jennifer Cole <br><br>MA, CCC</h3>		\n		<p>Received her undergraduate degree in Applied Human Sciences from Concordia University in Montreal and holds a Master of Arts degree in Counselling from Gordon-Conwell in Massachusetts. Jennifer counsels clients for issues such as anxiety, depression, grief, addiction, developmental trauma and domestic violence. With couples and families, she works from an attachment based paradigm. Jennifer enjoys working in inter-cultural and cross-cultural settings and draws on a variety of therapeutic modalities including Attachment, Acceptance and Commitment Therapy (ACT), Dialectal Behavioural Therapy (DBT), Narrative Therapy and Expressive Play Therapy, and on Gottmanâ€™s research when working with couples. Jennifer is certified with the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Audrey Gibson <br><br>BSc, OT, MDiv, SW</h3>		\n		<p>HoldsÂ a BScÂ in Occupational Therapy from the University of Alberta and a Master of Divinity with a major in Social Work from the Southern Baptist Theological Seminary in Kentucky. During her extensive career, AudreyÂ has worked mainly with children living withÂ physical limitations and their families. She developed coaching and mentoring skills as a clinical leader and program coordinator with Island Health in Victoria.</p>		\n			<h3>Joy Gillett <br><br>MPH, RCC</h3>		\n		<p>Is a Registered Clinical Counsellor with the BC Association of Clinical Counsellors. Joy studied science at UBC, public health at UCLA, theology at Regent College and clinical counselling at Colorado Christian University. Joy brings a diverse work background in medical technology, education and training and management. Using a variety of approaches in response to the needs of clients, Joy focuses on assistingÂ individuals toward mental, emotional, relational and spiritual wholeness.</p>		\n			<h3>Moira Madamombe <br><br>MACP</h3>		\n		<p>Holds a Masters in counselling psychology from Yorkville University. Moira is a multicultural counselor who works with adults, adolescents, and youth with various issues including anxiety, depression, addictions, chronic pain, grief, and loss.Â Â She applies various treatment models such as acceptance commitment therapy for chronic pain, cognitive behavioural therapy (CBT), dialectical behaviour therapy (DBT), family systems theory and multicultural counselling.Â Â She has co-facilitated an anxiety group for youth and a mindfulness-based anxiety group for adolescents. Moira is a member of the Canadian Counselling and Psychotherapy Association.</p>		\n			<h3>Peter Simmons <br><br>BA, MDiv</h3>		\n		<p>Received his BAÂ in Philosophy and Religious Studies from St. Michael\'s College at the University of Toronto and was also awardedÂ a Master of Divinity degree from the Toronto School of Theology.Â Â His education and pastoral care work have given him foresight into the intrinsic value of individuality.Â Peter provides counselling to individuals experiencing a variety of life challenges such asÂ stress, anxiety, self-esteem, addiction, depression, and life transitions.</p>", "Our Counsellors", "", "inherit", "closed", "closed", "", "60-revision-v1", "", "", "2018-06-13 07:05:02", "2018-06-13 14:05:02", "", "60", "http://localhost:8888/TestSICPage/wordpress/60-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16037", "10", "2018-06-13 07:07:24", "2018-06-13 14:07:24", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre for Counselling and Training is holding its Annual Fundraising Gala on October 27th, 2018.  Tickets go on sale this summer.							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-13 07:07:24", "2018-06-13 14:07:24", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16038", "10", "2018-06-13 07:07:57", "2018-06-13 14:07:57", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre for Counselling and Training is holding its Annual Fundraising Gala on October 27th, 2018.  Tickets go on sale this summer.							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-13 07:07:57", "2018-06-13 14:07:57", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16039", "10", "2018-06-13 07:28:38", "2018-06-13 14:28:38", "", "Summer Newsletter", "", "inherit", "closed", "closed", "", "summer-newsletter-2", "", "", "2018-06-13 07:28:38", "2018-06-13 14:28:38", "", "0", "http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter-1.html", "0", "attachment", "text/html", "0");
INSERT INTO `wp_posts` VALUES("16041", "10", "2018-06-13 07:35:24", "2018-06-13 14:35:24", "<h2>Welcome to<br>South Island Centre <br>for <br>Counselling and Training</h2>		\n													<h3>\n								Mark Your Calendars !							</h3>\n								The South Island Centre for Counselling and Training is holding its Annual Fundraising Gala on October 27th, 2018.  Tickets go on sale this summer.							\n													<h3>\n								Check out our Newsletter							</h3>\n								Want to know more about our recent news, head on over to our most recent news letter !							\n													<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/06/Summer-Newsletter-1.html\" target=\"_blank\">\n								Read More							</a>\n				WHO WE ARE\nWe are a charitable organization dedicated to providing affordable professional counselling to all.\n<a href=\"http://localhost:8888/TestSICPage/wordpress/who-we-are/\">Read More</a>HOW WE CAN HELPOur experienced counsellors provide professional, affordable mental health counselling services to all individuals.<a href=\"http://localhost:8888/TestSICPage/wordpress/counselling-2/general-information/\">Read More</a>TRAINING OFFEREDAt South Island Centre, we routinely offer specialized, professional training. Read  More to see a listing of courses we offer.<a href=\"http://localhost:8888/TestSICPage/wordpress/training/courses/\">Read More</a>IMPACT STORIESRead more about a clientâ€™s story on how South Island Centre helped him.<a href=\"http://localhost:8888/TestSICPage/wordpress/what-we-do/testimonials/\">Read More</a>			\n			<h2>DONATE</h2>		\n			<h1>support us <br>&amp; <br>change the course of a life today!</h1>		\n			<a href=\"http://localhost:8888/TestSICPage/wordpress/donate-2\" role=\"button\">\n						donate\n					</a>\n			<h2>PARTNERS</h2>		\n				<figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/St-Luke-Cedar-Hill-Logo1-300x300.jpg\" alt=\"St-Luke-Cedar-Hill-Logo1-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Victoria300x300.jpg\" alt=\"Victoria300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Rotary-International.jpg\" alt=\"Rotary International\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/UnitedWayFull375x165-300x300.jpg\" alt=\"UnitedWayFull375x165-300x300\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/CoastCapital.jpg\" alt=\"CoastCapital\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/adore-logo.png\" alt=\"adore-logo\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/BC.jpg\" alt=\"BC\" /></figure><figure><img src=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2018/05/Logo-Cath-Fnd-Vanc-Isld-300x300.png\" alt=\"Logo-Cath-Fnd-Vanc-Isld-300x300\" /></figure>", "Home", "", "inherit", "closed", "closed", "", "4-revision-v1", "", "", "2018-06-13 07:35:24", "2018-06-13 14:35:24", "", "4", "http://localhost:8888/TestSICPage/wordpress/4-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16042", "10", "2018-06-13 07:57:41", "2018-06-13 14:57:41", "{\n    \"widget_do-etfw[2]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToxMTp7czo1OiJ0aXRsZSI7czoyMDoiRm9sbG93IFVzIE9uIFR3aXR0ZXIiO3M6MjE6InR3aXR0ZXJfdGltZWxpbmVfdHlwZSI7czo4OiJ1c2VybmFtZSI7czoyMzoidHdpdHRlcl93aWRnZXRfdXNlcm5hbWUiO3M6MTQ6IlNvdXRoX0lzbGFuZF9DIjtzOjE3OiJ0d2l0dGVyX3dpZGdldF9pZCI7czowOiIiO3M6MjA6InR3aXR0ZXJfd2lkZ2V0X3dpZHRoIjtpOjIyMDtzOjIxOiJ0d2l0dGVyX3dpZGdldF9oZWlnaHQiO2k6MjAwO3M6MjY6InR3aXR0ZXJfd2lkZ2V0X3R3ZWV0X2xpbWl0IjtpOjE7czoyMDoidHdpdHRlcl93aWRnZXRfdGhlbWUiO3M6NToibGlnaHQiO3M6MjU6InR3aXR0ZXJfd2lkZ2V0X2xpbmtfY29sb3IiO3M6NzoiIzNiOTRkOSI7czoyNzoidHdpdHRlcl93aWRnZXRfYm9yZGVyX2NvbG9yIjtzOjc6IiNmNWY1ZjUiO3M6MjE6InR3aXR0ZXJfd2lkZ2V0X2Nocm9tZSI7YTowOnt9fQ==\",\n            \"title\": \"Follow Us On Twitter\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"3c2f4710621359ceca198f98588eccbc\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 10,\n        \"date_modified_gmt\": \"2018-06-13 14:57:41\"\n    }\n}", "", "", "trash", "closed", "closed", "", "9a9808c5-e829-48f0-9e6c-3de7aa8afdea", "", "", "2018-06-13 07:57:41", "2018-06-13 14:57:41", "", "0", "http://localhost:8888/TestSICPage/wordpress/9a9808c5-e829-48f0-9e6c-3de7aa8afdea/", "0", "customize_changeset", "", "0");
INSERT INTO `wp_posts` VALUES("16044", "10", "2018-06-13 08:15:56", "2018-06-13 15:15:56", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â <a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>: 9:00am - 2:00 pm Mondays through Thursdays</p><p><strong>Counselling:</strong>Â Counselling is by appointment only<br /><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong></p><p><strong>Our Mailing Address:</strong><br />3821A Cedar Hill Cross Road<br />Victoria, BC V8P 2M6</p>		\n			<a href=\"https://www.facebook.com/southislandcentre/\">\n			</a>\n			<h6>Like Us On Facebook</h6>		\n			<a href=\"https://twitter.com/South_Island_C\">\n			</a>\n			<h6>Follow Us On Twitter</h6>		\n			<a href=\"http://southislandcentre.blogspot.ca/\">\n			</a>\n			<h6>Check Out Our Blog</h6>", "Contact Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-06-13 08:15:56", "2018-06-13 15:15:56", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16045", "10", "2018-06-13 08:20:08", "2018-06-13 15:20:08", "<h2>How To Reach Us\n</h2>		\n			<a href=\"https://www.facebook.com/southislandcentre/\">\n			</a>\n			<h6>Find Us On Facebook</h6>		\n			<a href=\"https://twitter.com/South_Island_C\">\n			</a>\n			<h6>Follow Us On Twitter</h6>		\n			<a href=\"http://southislandcentre.blogspot.ca/\">\n			</a>\n			<h6>Check Out Our Blog</h6>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â </strong><strong style=\"font-size: 18px;\"><a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>:Â </p><p>9:00am - 2:00pm Monday, Tuesday &amp; Thursday</p><p>9:00am - 4:00pm WednesdayÂ </p><p><strong>Counselling:</strong>Â </p><p>Counselling is by appointment only<br /><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong></p><p><strong>Our Mailing Address:</strong><br />3821A Cedar Hill Cross Road<br />Victoria, BC V8P 2M6</p><p>Â </p>", "Contact Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-06-13 08:20:08", "2018-06-13 15:20:08", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16046", "10", "2018-06-13 08:21:14", "2018-06-13 15:21:14", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â </strong><strong style=\"font-size: 18px;\"><a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>:Â </p><p>9:00am - 2:00pm Monday, Tuesday &amp; Thursday</p><p>9:00am - 4:00pm WednesdayÂ </p><p><strong>Counselling:</strong>Â </p><p>Counselling is by appointment only<br /><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong></p><p><strong>Our Mailing Address:</strong><br />3821A Cedar Hill Cross Road<br />Victoria, BC V8P 2M6</p><p>Â </p>		\n			<a href=\"https://www.facebook.com/southislandcentre/\">\n			</a>\n			<h6>Find Us On Facebook</h6>		\n			<a href=\"https://twitter.com/South_Island_C\">\n			</a>\n			<h6>Follow Us On Twitter</h6>		\n			<a href=\"http://southislandcentre.blogspot.ca/\">\n			</a>\n			<h6>Check Out Our Blog</h6>", "Contact Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-06-13 08:21:14", "2018-06-13 15:21:14", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16047", "10", "2018-06-13 08:23:50", "2018-06-13 15:23:50", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â </strong><strong style=\"font-size: 18px;\"><a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>:Â </p><p>9:00am - 2:00pm Monday, Tuesday &amp; Thursday</p><p>9:00am - 4:00pm WednesdayÂ </p><p><strong>Counselling:</strong>Â </p><p>Counselling is by appointment onlyÂ Â <br /><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong></p><p>Weekend and Evening Times may be available upon request</p><p><strong>Our Mailing Address:</strong><br />3821A Cedar Hill Cross Road<br />Victoria, BC V8P 2M6</p><p>Â </p>		\n			<a href=\"https://www.facebook.com/southislandcentre/\">\n			</a>\n			<h6>Find Us On Facebook</h6>		\n			<a href=\"https://twitter.com/South_Island_C\">\n			</a>\n			<h6>Follow Us On Twitter</h6>		\n			<a href=\"http://southislandcentre.blogspot.ca/\">\n			</a>\n			<h6>Check Out Our Blog</h6>", "Contact Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-06-13 08:23:50", "2018-06-13 15:23:50", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16048", "10", "2018-06-13 08:27:35", "2018-06-13 15:27:35", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n					<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>				\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n					<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>				\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n					<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-06-13 08:27:35", "2018-06-13 15:27:35", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16049", "10", "2018-06-13 08:28:16", "2018-06-13 15:28:16", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n					<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>				\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n					<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>				\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n					<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-06-13 08:28:16", "2018-06-13 15:28:16", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16050", "10", "2018-06-13 08:28:41", "2018-06-13 15:28:41", "<h2>IMPACT STORIES</h2>		\n		<h3 style=\"font-size: 1.86667rem; font-style: normal;\">One clientâ€™s story about how SICCT helped him</h3>		\n		<h5>When your life feels as though itâ€™s falling apart you have two options. You give up, submit to the darkness that seems to surround you, or you lift your chin up and try your best to make it through. However, in times of madness, and in times of sorrow, I believe itâ€™s possible to come to a place in which neither option seems possible. A void if you will. This is where I found myself a year or so ago. I lacked the motivation to hold my head up high. I also lacked the courage to give into the darkness. I found myself torn, beaten and left bleeding on the outer planes of existence, blind, and unaware that I was giving in to my darkness, letting my demons take control over my actions. I struggled to sleep. I struggled to eat. I drowned my sorrows in alcohol and drugs. I did nothing to better my situation or my mental health. â€˜Take the dog for a walkâ€™ or â€˜Go lose yourself in natureâ€™ didnâ€™t seem appealing anymore. I was depressed. My depression was fuelling my anxiety and my anxiety, and panic attacks were fuelling my depression. A vicious circle to say the least. I had no tools to deal with my grief or my sorrow. My darkness seemed to have won, and I wanted it to win because I didnâ€™t want to feel scared or alone anymore. I didnâ€™t want to feel anything. But then something happened. I saw a light.</h5><h5>That light was my mother. She was the light in my darkness, at the moment when I had no eyes to see. She encouraged me to get help and I immediately did just that. I looked high and low. Made what seemed like millions of crippling phone calls and finally I was given the number for the south island centre for counselling and training. Affordable counselling. I had drunk my money away and was already in a world of debt so this seemed like an easy choice to make. Little did I know then what would come of it. Who I would meet there and how it would change my life for the better.</h5><h5>My schedule did not really allow me to make it to sessions during the day and the kind woman on the phone had asked me if I would feel more comfortable speaking to a man. I immediately said no. For some reason I didnâ€™t feel comfortable talking to a man. It was then that she said, â€˜well i guess youâ€™re stuck me with meâ€™, in a far more professional manner. My counsellor eventually helped me gain my eyes back. Our first couple sessions were quiet. I didnâ€™t really know what I was supposed to do. How I was supposed to act. Which filter to speak through or which mask to wear. But she kickstarted the movement and asked to hear about my past experiences and my present symptoms. I didnâ€™t waste any more time and dove into my life story. Sessions later I had finished and It had felt good. I was still battling with depression, and still having Panic attacks regularly, but I had been given hope.</h5><h5>I had night terrors of a tower at the top of a mountain path at the end of a cemetery. Every night I would go there, more scared that I ever thought possible. Always walking to the massive wooden door, and, upon trying to enter, was pushed back in a gust of anger and screaming. I was at first afraid to talk about my dreams, but as time went on I eventually went on to discuss them. I initially had thought that my dreams were a metaphor, and I wasnâ€™t wrong, only, I had something backwards. See, there cannot be light wit out dark. No yin without yang. I assumed that my demons (or my darkness), had abandoned me and locked themselves in this tower, leaving me half a person and alone. I was wrong. I had been living through the eyes of my demons the entire time. I had locked myself in that tower, as a small child, years before. And I donâ€™t blame myself for not letting the demons in.</h5><h5>We had a breakthrough. We had something to work with. We identified some of the key reasons that I locked myself in that tower. It truly did all stem from an early age, So we set off on a journey that I now know will be life long. My counsellor offered me a generous amount of exercises, loaned me books and gave me articles written by professors who taught at universities that I had never even heard of.<br />The following months would be filled with reading and journal writing. â€œI amâ€ and â€œI deserveâ€ exercises, and positive affirmation notes started to cover my walls. I was starting to understand who I really was; How I had come to this aforementioned â€œvoidâ€. We dove deeper into my past and uncovered that much of my childhood was a struggle and with the help of my counsellor and my homework exercises, my deep seeded issues began to surface and became something we could address together.</h5><h5>With much patience and perseverance, I could finally see. I had my eyes back. I worked hard. I worked on forgiving those in my past who had done me wrong. I focused my mind on strategies and coping skills that would cut down the amount of panic attacks I would have daily. I was healing. I started to feel more in tune with my life, but t<a href=\"https://www.southislandcentre.ca/counselling-2/client-testimonial/tyrone/\" rel=\"attachment wp-att-15247\">Tyrone</a>he biggest and most painful thing I had yet to do was forgive myself for I too had done myself wrong. I needed to heal that child locked away in me â€“ the child I had abandoned for a life of partying and a â€œlive fast die youngâ€ mentality. I needed to give that inner child his freedom and allow him to â€œgrow upâ€ into who I knew I needed to be. My counsellor guided me through a visioning exercise to create a safe space in my mind â€“ a place in which I could invite my child self to sit with my adult self and have an opportunity to learn what he needed â€“ what he had missed out on in his life and heal him. It took months and at times I felt it was hopeless but my counsellor was there. I had a place to turn to, and someone to help me through my frustrations. She helped me to realize self-worth, something I had never before experienced. She helped me to come to a state in which I actually believed, whole heartedly, that i meant something, that I was a good person and that i was genuinely kind and compassionate. She showed me that I was a human being who was allowed to make mistakes and I would learn from them. She helped me to forgive myself, and with that i am forever thankful. She helped me to learn that I could love myself, and slowly, I began to believe it. It all came down to belief. Not in any higher power, but belief in myself.</h5><h5>One day, months later, I woke up. I hadnâ€™t had a panic attack in months. I felt amazingly good about myself and didnâ€™t seem to have a worry in the world. It felt good to be me. It felt good to live and laugh, be happy and primarily content. There were good days and bad days but thatâ€™s the same with every human on this earth. One particularly bad day though, i felt the need to return to my safe space. I closed my eyes, practiced my exercises, took deep breaths and returned to a surprising scene. My safe space was still there, as beautiful as ever, only, the child parts of me were no longer there. One by one they had become a part of me. Piece by piece I glued myself together and for the first time so far as I can remember, I was whole.</h5><h5>My experience at South Island Centre is one I will never forget. One that I will always treasure because I was helped to give my own self a second chance. I am my light, but I am also my darkness. Learning to balance those two will be a life long journey but never again will I give up on myself. I will pay this gift forward to others; pay it forward to those who need the help they so richly deserve. Because of this experience Iâ€™ve decided to go back to school and study to be a counsellor â€“ Iâ€™m not sure what that will actually look like or how long it will take but it will happen in my life time, and I will do my best to give those in need what was given to me, a second chance at learning what it means to be whole, what it means to truly know yourself and what it means to love yourself.</h5>		\n\"....the continuing education experience provided by South Island Centre was the best that I\'ve ever had. It has helped to enlarge my world in so many rich ways. Your gentle and caring way of helping led me to realise how closed my world had become and how to open new doors and windows....what a wonderful blessing! My wife also feels that it was the best continuing education experience she has ever had. Thank you so very much...\"					\n					<cite>A participant in the CareerChoice Program had this to say about the experience:</cite>				\n\"Fantastic and deeply thought-provoking! Thank you so much Bill!\"\n\"Great course, great group! Dynamic - Bill you were very easy to follow and understand. Loved how you kept on time and kept the group focused on the topic!\"					\n					<cite>What a few participants of the Family Systems Theory course with facilitator Bill Cole had to say about the experience</cite>				\n\"It\'s been a great week, Bill. I am so happy to have taken this course with you. Thank you for your time and effort, as well as sharing your heart with us!\"\n\"I really enjoyed this course! The material was so informative and the way you presented was very engaging. I will be thinking about all of it for a while!\"					\n					<cite>What a few participants of the Pastoral Counselling Training with trainer Bill Cole had to say about the experience:</cite>", "Testimonials", "", "inherit", "closed", "closed", "", "869-revision-v1", "", "", "2018-06-13 08:28:41", "2018-06-13 15:28:41", "", "869", "http://localhost:8888/TestSICPage/wordpress/869-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16051", "10", "2018-06-13 08:29:49", "2018-06-13 15:29:49", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>OUR HISTORY</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-06-13 08:29:49", "2018-06-13 15:29:49", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16052", "10", "2018-06-13 08:31:15", "2018-06-13 15:31:15", "<h2>Board Of Directors</h2>		\n		<p><strong>Â </strong></p><p><strong>Jim Gibson (Chair)</strong></p><p><strong style=\"font-size: 15px;\">Barbara Underhill (Vice-Chair, Treasurer) </strong>Barbara has supported the centre since 2007 in a variety of roles. She has anÂ MBA and CPA accounting designation. Her work history includes teaching in China, marketing food products and financial and performance auditing. Barbara is committed to fulfilling the loving and healing mission of the centre while ensuring its operational practices meet the highest performance and ethical standards.</p><p><strong>Sally Tuckey (Secretary) </strong>Sally has spent most of her working career in voluntary activities, and worked with the Canadian Imperial Bank of Commerce for a number of years. Sally has also worked with the local school district for many years as a lunchtime supervisor. Â Her involvement with her church over her lifetime has included many responsibilities in parish, diocesan and national capacities. In addition to the church, she has volunteered in many other areas such as hospital pastoral care, the Kidney Foundation and her community association.Â Her interests are many â€“ but her particular interest in people and their concerns enticed her to the South Island Centre and its work, where no one in need is turned away.</p><p style=\"color: #222222;\"><strong>Sybil Bagshaw </strong>SybilÂ worked as an RN until herÂ retirement in 2008. Part of that time was in Winnipeg, Manitoba, where she was one of the organizers of a program for \"Mother\'s of Preschoolers\" at St Pauls Anglican Church in Fort Garry. Â SybilÂ was one of the founding members the Fort Garry Family Life program and was their treasurer for severalÂ years.Â Â She alsoÂ  was president of the Wildwood Community Club 1987-88 including working as a section rep collecting donations for theÂ community club andÂ for the Kidney and Cancer foundations both in WinnipegÂ and in Victoria.Â </p><p style=\"color: #222222;\"><strong>Greg Beattie </strong>Greg is a Registered Social Worker and holds degrees in Forestry, Social Work and mental health care. He is the former Director of Counselling at the University of Northern British Columbia and has maintained a private counselling practice for over 25 years. Greg has worked extensively in the mental health field with a particular emphasis on First Nationâ€™s mental health services. He has 20 yearsâ€™ experience as a clinical supervisor, 15 yearsâ€™ experience as a social work instructor, has supervised many field social work placements and is past Chair of Social Work at UNBC. Â Greg has served on many non-profit boards, most recently as Board Chair for the Canadian Mental Health Association in Prince George, BC. Greg joined the board in January, 2016.</p><p><strong>Helen Morrison </strong>Helen is semi-retired after a long career in the provincial government. She has a legal background and is a graduate of the University of Victoria and McGill University and a member of the Quebec Bar (retired). Helen has lived in Victoria most of her life and raised her daughter here. Helen is a member of a journaling group and co-leads a faith-based support group for people living with a mental illness.</p>", "Board of Directors", "", "inherit", "closed", "closed", "", "74-revision-v1", "", "", "2018-06-13 08:31:15", "2018-06-13 15:31:15", "", "74", "http://localhost:8888/TestSICPage/wordpress/74-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16053", "10", "2018-06-13 08:32:25", "2018-06-13 15:32:25", "<h2>How We Can Help</h2>		\n		<h5>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</h5><p>We can help with:</p><ul><li>depression, stress and anxiety</li><li>grief, loss, and life-transitions</li><li>senior care issues</li><li>end-of-life care</li><li>support and education</li><li>trauma and distress</li><li>relationship conflicts</li><li>self-esteem issues</li><li>emotional, sexual, and physical abuse</li><li>issues related to faith and spirituality</li><li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li></ul>		\n		<p><b>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.</b></p><p>Talk to your counsellor about your payment plans and options.</p><p>ToÂ MakeÂ an Appointment</p><ol><li>Call our office at Â Â Â Â Â 250-472-2851.</li><li><a style=\"color: blue;\" title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here </a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li></ol>", "How We Can Help", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-06-13 08:32:25", "2018-06-13 15:32:25", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16054", "10", "2018-06-13 08:33:26", "2018-06-13 15:33:26", "<h2>Income-Based Counselling Services</h2>		\n		<h5>At South Island Centre we know howÂ important it is forÂ everyoneÂ to have access to professional, affordable mental health counselling services when needed.Â  As a registered charity supported by various agencies and donors, we are able to provide some subsidized professional mental health services to those most in need.</h5><p>Â </p><p><strong>Costs of Counselling</strong></p><p>Counselling services at South Island Centre are calculated on an income-based fee ofÂ 0.1% of your gross income up to a maximum of $120.00 per session. OurÂ minimum fee is $10.00 per session.<strong>Â </strong>Talk to your counsellor aboutÂ your payment options and fees.</p><p>Please note cancellation feesÂ are charged for missed appointments when less than 24 hours notice is given.</p><p>Payment can be made with cash, debit or credit card.</p>		\n		<p><strong>Insurance Coverage</strong></p><p>If you have extended health benefits for professional mental health counselling services, you will not qualify for our subsidized rates until your deductible is met. Please inform your counsellor if you do.<br />It is your responsibility to submit receipts to your provider for reimbursement.<br />If you are waiting for an external agency to reimburse you as a result of a claim (i.e. Work BC, ICBC), you remain responsible for counselling payments until your settlement is reached.<br />We not bill external parties for services rendered.</p>", "Income-Based Counselling Services", "", "inherit", "closed", "closed", "", "54-revision-v1", "", "", "2018-06-13 08:33:26", "2018-06-13 15:33:26", "", "54", "http://localhost:8888/TestSICPage/wordpress/54-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16055", "10", "2018-06-13 08:34:20", "2018-06-13 15:34:20", "<h2>Children and Youth Counselling</h2>		\n		<p>Â Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</p>Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n		<p><b>For more information and/or to book a private consult, please contact us directly at (250) 472-2851, or fill out aÂ <a style=\"color: blue;\" title=\"Intake Survey\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Counselling Inquiry Form</a>.</b></p><p><b>Â </b></p><p><b>Do note that once you have made an appointment with a counsellor, you will be requested to to fill out a <a style=\"color: blue;\" href=\"http://localhost:8888/TestSICPage/wordpress/wp-content/uploads/2016/05/Child-Youth-History-form.pdf\">Child-Youth History form</a>. Click on the link to print and bring the completed form with you to your child\'s first appointment.</b></p>", "Children and Youth Counselling", "", "inherit", "closed", "closed", "", "14245-revision-v1", "", "", "2018-06-13 08:34:20", "2018-06-13 15:34:20", "", "14245", "http://localhost:8888/TestSICPage/wordpress/14245-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16056", "10", "2018-06-13 08:38:47", "2018-06-13 15:38:47", "<h2>Training Currently Offered</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\"><u>Positive Psychology Group</u></a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\"><u>Young Adults Support group for Anxiety</u></a></p><p><u><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </u></p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\"><u>Making It Work for Teens!</u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"><u> Living with Loss Part 1, an Introduction to Grief and Loss </u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</u></a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </u></a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-06-13 08:38:47", "2018-06-13 15:38:47", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16057", "10", "2018-06-13 08:40:37", "2018-06-13 15:40:37", "<h2>Registration & Payment Options</h2>		\n			<h3>How to Register</h3>		\n		<ul>\n 	<li><a style=\"color: blue;\" title=\"Register for Training\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/\" target=\"_blank\" rel=\"noopener\" >Click here</a>Â to fill out the registration form. Registrations will be confirmed via email.Â </li>\n 	<li>Â Call Â <strong>250-472-2851</strong> and leave a voice mail with your contact information</li>\n</ul>\nTo complete the registration and confirm your seat in the program, your payment must be received no later than 5 business days prior to the start date.\nRegistration is on a first-come, first-serve basis.		\n			<h3>Payment Options</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">Cash</li><li style=\"font-size: 15px;\">Credit</li></ul><b>If paying by credit card, please call the office atÂ Â 250-472-2851 for processing.</b>		\n			<h3>Refunds</h3>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">In the case of a cancellation, a full refund will be issued.</li><li style=\"font-size: 15px;\">Where cash payment has been made, refunds will be reimbursed by cheque.</li></ul>", "Registration & Payment Options", "", "inherit", "closed", "closed", "", "303-revision-v1", "", "", "2018-06-13 08:40:37", "2018-06-13 15:40:37", "", "303", "http://localhost:8888/TestSICPage/wordpress/303-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16058", "10", "2018-06-13 08:41:32", "2018-06-13 15:41:32", "<h2>How To Reach Us\n</h2>		\n		<p><strong>Phone:</strong>Â (250) 472-2851</p><p><strong style=\"font-size: 18px;\">Email:Â </strong><strong style=\"font-size: 18px;\"><a href=\"mailto:info@localhost\">info@localhost</a><strong>Â </strong></strong></p><p><strong>Â </strong><strong style=\"font-size: 18px;\">Reception Hours</strong>:Â </p><p>9:00am - 2:00pm Monday, Tuesday &amp; Thursday</p><p>9:00am - 4:00pm WednesdayÂ </p><p><strong>Counselling:</strong>Â </p><p>Counselling is by appointment onlyÂ Â <br /><strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong></p><p>Weekend and Evening Times may be available upon request</p><p><strong>Our Mailing Address:</strong><br />3821A Cedar Hill Cross Road<br />Victoria, BC V8P 2M6</p><p>Â </p>		\n			<a href=\"https://www.facebook.com/southislandcentre/\">\n			</a>\n			<h6>Find Us On Facebook</h6>		\n			<a href=\"https://twitter.com/South_Island_C\">\n			</a>\n			<h6>Follow Us On Twitter</h6>		\n			<a href=\"http://southislandcentre.blogspot.ca/\">\n			</a>\n			<h6>Check Out Our Blog</h6>", "Contact Us", "", "inherit", "closed", "closed", "", "848-revision-v1", "", "", "2018-06-13 08:41:32", "2018-06-13 15:41:32", "", "848", "http://localhost:8888/TestSICPage/wordpress/848-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16059", "10", "2018-06-13 08:47:32", "2018-06-13 15:47:32", "Addictions					\n					<p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: blue;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: blue;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-06-13 08:47:32", "2018-06-13 15:47:32", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16060", "10", "2018-06-13 08:47:40", "2018-06-13 15:47:40", "Addictions					\n					<p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: blue;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: blue;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-06-13 08:47:40", "2018-06-13 15:47:40", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16061", "10", "2018-06-13 08:48:31", "2018-06-13 15:48:31", "Addictions					\n					<p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: blue;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: blue;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-06-13 08:48:31", "2018-06-13 15:48:31", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16062", "10", "2018-06-13 08:52:47", "2018-06-13 15:52:47", "<h2>Mental Health Resources</h2>		\n												Addictions					\n					<p><a title=\"VIHA resources\" href=\"http://www.viha.ca/mhas/resources/\" target=\"_blank\" rel=\"noopener\">www.viha.ca/hmas/resources</a></p><p>Â <a href=\"http://www.swiftriver.com/anger-management-addiction/\" target=\"_blank\" rel=\"noopener\">Anger Management &amp; Addiction: How to Take Charge of Anger Issues in Sobriety</a></p><p>Â <a href=\"https://www.helpguide.org/articles/addictions/drug-abuse-and-addiction.htm\" target=\"_blank\" rel=\"noopener\">Drug Abuse and Addiction: Recognizing the Signs and Symptoms of Drug Addiction</a></p><p>Â <a title=\"Victoria Drug Rehab for Outpatients\" href=\"http://www.drugrehab.ca/victoria-drug-rehab-outpatient.html\" target=\"_blank\" rel=\"noopener\">Victoria Outpatient Drug RehabÂ </a></p><p>Â <a title=\"Bellwood Addiction Treatment Centre\" href=\"http://http//www.bellwood.ca/\" target=\"_blank\" rel=\"noopener\">www.bellwood.ca</a></p><p>Â <a title=\"Drugrehab.com\" href=\"https://www.drugrehab.com/\" target=\"_blank\" rel=\"noopener\">Drugrehab.com</a></p><p>Â <a href=\"https://www.bestmattressreviews.com/addiction-and-sleep/\">Drug Addiction and Sleep</a></p>\n												Anxiety 					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anxiety BC\" href=\"http://https//www.anxietybc.com/\" target=\"_blank\" rel=\"noopener\">www.anxietybc.com</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Worry Wise Kids\" href=\"http://www.worrywisekids.org/\" target=\"_blank\" rel=\"noopener\">www.worrywisekids.org</a>Â (Children and Youth)</p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Kelty Mental Health, Children and Youth\" href=\"http://keltymentalhealth.ca/mental-health/disorders/anxiety-children-and-youth\" target=\"_blank\" rel=\"noopener\">keltymentalhealth.ca</a>Â (Children and Youth)</p>\n												Eating Disorders					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Kelty Eating Disorders\" href=\"https://keltyeatingdisorders.ca/\" target=\"_blank\" rel=\"noopener\">Kelty Eating Disorders</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"VIHA Eating Disorders\" href=\"http://www.viha.ca/health_info/eating_disorders.htm\" target=\"_blank\" rel=\"noopener\">Island Health Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Vancouver Looking Glass Foundation\" href=\"http://www.lookingglassbc.com/\" target=\"_blank\" rel=\"noopener\">Vancouver Looking Glass Foundation</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Children\'s Hospital Eating Disorders\" href=\"http://www.bcchildrens.ca/our-services/mental-health-services/eating-disorders\" target=\"_blank\" rel=\"noopener\">BC Childrenâ€™s Hospital Eating Disorders</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Here to Help Eating disorders\" href=\"http://www.heretohelp.bc.ca/factsheet/eating-disorders\" target=\"_blank\" rel=\"noopener\">Here to Help Eating Disorders</a></p>\n												Senior Support					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Seniors Advocate BC\" href=\"http://www.seniorsadvocatebc.ca/\" target=\"_blank\" rel=\"noopener\">Seniorâ€™s Advocate BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Caring for the Caregiver\" href=\"http://www2.gov.bc.ca/gov/content/family-social-supports/seniors/caring-for-seniors/caring-for-the-caregiver\" target=\"_blank\" rel=\"noopener\">Caring for the Caregiver</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Silverthreads\" href=\"http://silverthreads.ca/\" target=\"_blank\" rel=\"noopener\">Silverthreads</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria BC Services for Seniors\" href=\"http://www.greatervictoria.com/community-services/services-for-seniors\" target=\"_blank\" rel=\"noopener\">BC Services for SeniorsÂ </a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.shieldmysenior.com/elderly-mental-health/\" target=\"_blank\" rel=\"noopener\">Elderly Mental Health: How to Help Your Senior</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Abuse and Trauma					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Men\'s Trauma Centre\" href=\"http://www.menstrauma.com/\" target=\"_blank\" rel=\"noopener\">Menâ€™s Trauma Centre</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Greater Victoria Youth Core Portal\" href=\"http://youthcore.ca/\" target=\"_blank\" rel=\"noopener\">Greater Victoria Youth Core</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Hulitan Family and Community Service Society\" href=\"http://www.hulitan.ca/\" target=\"_blank\" rel=\"noopener\">Hulitan Family and Community Service Society</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Here to Help BC Fact Sheet PTSD\" href=\"http://www.heretohelp.bc.ca/factsheet/post-traumatic-stress-disorder\" target=\"_blank\" rel=\"noopener\">Here to Help BC</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Resource Centre for Victims of Crime\" href=\"https://crcvc.ca/\" target=\"_blank\" rel=\"noopener\">Canadian Resource Centre for Victims of Crime</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"PTSD Association of Canada\" href=\"http://www.ptsdassociation.com/\" target=\"_blank\" rel=\"noopener\">PTSD Association of Canada</a></p>\n												Spiritual Guidance					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; color: blue;\" title=\"What Christians want to know\" href=\"http://www.whatchristianswanttoknow.com/\" target=\"_blank\" rel=\"noopener\">What Christians want to know</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"All about God\" href=\"http://www.allaboutgod.com/\" target=\"_blank\" rel=\"noopener\">All about God</a></p>\n												Depression					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Heads Up Guys\" href=\"http://headsupguys.org/\" target=\"_blank\" rel=\"noopener\">headsupguys.org</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.getselfhelp.co.uk/docs/healthy%20eating%20depression.pdf\" target=\"_blank\" rel=\"noopener\">Health Eating and Depression: How Diet May Help Protect Your Mental Health</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Depression Hurts\" href=\"http://depressionhurts.ca/en/default.aspx\" target=\"_blank\" rel=\"noopener\">depressionhurts.ca</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Dealing with Depression (workbook for Teens)\" href=\"http://www.comh.ca/publications/resources/dwd/dwd_printversion.pdf\" target=\"_blank\" rel=\"noopener\">Dealing with Depression</a>Â (printable workbook for Teens)</p>\n												Divorce and Separation					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Family Services of Greater Victoria\" href=\"http://www.fsgv.org/\" target=\"_blank\" rel=\"noopener\">Family Services of Greater Victoria</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Anti-Poverty Community\" href=\"http://www.povnet.org/\" target=\"_blank\" rel=\"noopener\">Anti-Poverty Community</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Emental Health\" href=\"http://www.ementalhealth.ca/british-columbia/separation-and-divorice/index.php?m=heading+ID=42\" target=\"_blank\" rel=\"noopener\">EMental Health</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"BC Family Justice\" href=\"http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice\" target=\"_blank\" rel=\"noopener\">BC Family Justice</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"1Up Single Parent Resources Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">1Up Single Parent Resources Victoria</a></p>\n												Grief and Loss					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Remembering for Good\" href=\"http://www.rememberingforgood.com/\" target=\"_blank\" rel=\"noopener\">Remembering for Good</a>Â </p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Grief\" href=\"http://grief.com/\" target=\"_blank\" rel=\"noopener\">www.grief.com</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" href=\"https://www.cancer.org/content/dam/CRC/PDF/Public/6036.00.pdf\" target=\"_blank\" rel=\"noopener\">Coping With the Loss of a Loved One</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Seven Ponds\" href=\"http://www.sevenponds.com/\" target=\"_blank\" rel=\"noopener\">Seven Ponds (Embracing the End-of-Life Experience)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Victoria Pregnancy Centre\" href=\"http://www.victoriapregnancy.org/\" target=\"_blank\" rel=\"noopener\">Victoria Pregnancy Centre (A Place of Hope)</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Hospital and Palliative Care Association\" href=\"http://bchpca.org/\" target=\"_blank\" rel=\"noopener\">Hospice and Palliative Care Association</a></p>\n												Marriage and Family					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Canadian Agency for Marriage and Family Therapy\" href=\"http://camft.ca/relationship-resources/\" target=\"_blank\" rel=\"noopener\">Canadian Agency for Marriage and FamilyÂ Therapy</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Resource Centre for Healthy Marriage and Families\" href=\"https://www.healthymarriageandfamilies.org/\" target=\"_blank\" rel=\"noopener\">National Resource Centre for Healthy Marriage and Families</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"National Healthy Marriage Resource Centre\" href=\"http://www.healthymarriageinfo.org/index.aspx\" target=\"_blank\" rel=\"noopener\">National Healthy Marriage Resource Centre</a></p><p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Gottman Institute\" href=\"https://www.gottman.com/\">Gottman Institute</a></p>\n												Parenting					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Single Parent Resource Centre Victoria\" href=\"http://www.singleparentvictoria.ca/\" target=\"_blank\" rel=\"noopener\">Single Parent Resource Centre Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"BC Parent Support\" href=\"http://www.parentsupportbc.ca/\" target=\"_blank\" rel=\"noopener\">Parent Support BC</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Boys and Girls Club Victoria\" href=\"http://www.bgcvic.org/youth-family-and-parenting-programs/parenting-programs/\" target=\"_blank\" rel=\"noopener\">Boys and Girls Club Victoria</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Life Seminars\" href=\"http://lifeseminars.com/\" target=\"_blank\" rel=\"noopener\">Life Seminars</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Island Parent Magazine\" href=\"http://islandparent.ca/\" target=\"_blank\" rel=\"noopener\">Island Parent Magazine</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Triple P Parenting\" href=\"http://www.triplep.net/glo-en/home/\" target=\"_blank\" rel=\"noopener\">Triple P ParentingÂ </a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px; font-style: normal; font-weight: 400;\" href=\"http://www.rcpsych.ac.uk/healthadvice/partnersincarecampaign/checklistforparents.aspx\" target=\"_blank\" rel=\"noopener\">A Checklist for Parents with Children with Mental Health Problems</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"></p>\n												Suicide Prevention					\n					<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Suicide Prevention\" href=\"http://suicideprevention.ca/\" target=\"_blank\" rel=\"noopener\">Suicide Prevention</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px; color: blue;\" title=\"Need 2 Suicide Prevention and Education\" href=\"https://need2.ca/\" target=\"_blank\" rel=\"noopener\">Need 2 (Suicide Prevention and Education)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Canadian Mental Health Institution\" href=\"http://www.cmha.ca/mental_health/preventing-suicide/#.V7SWl5grIdU\" target=\"_blank\" rel=\"noopener\">Canadian Mental Health Association (Preventing Suicide)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Help Guide Article\" href=\"http://www.helpguide.org/articles/suicide-prevention/suicide-prevention-helping-someone-who-is-suicidal.htm\" target=\"_blank\" rel=\"noopener\">Help Guide (Article: Helping Someone who is suicidal)</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\">Â <a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Crisis Centre</a></p>\n<p style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><a style=\"font-size: 15px;\" title=\"Crisis Centre\" href=\"https://crisiscentre.bc.ca/\" target=\"_blank\" rel=\"noopener\">Â </a>Â <a style=\"font-size: 15px;\" title=\"Wake Forest University Online guide to suicide prevention\" href=\"http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/\" target=\"_blank\" rel=\"noopener\">Online Guide to Suicide Prevention (Wake Forest University)</a></p>", "Mental Health Resources", "", "inherit", "closed", "closed", "", "14462-revision-v1", "", "", "2018-06-13 08:52:47", "2018-06-13 15:52:47", "", "14462", "http://localhost:8888/TestSICPage/wordpress/14462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16063", "10", "2018-06-14 08:02:29", "2018-06-14 15:02:29", "", "Make a gift today", "", "inherit", "closed", "closed", "", "101-revision-v1", "", "", "2018-06-14 08:02:29", "2018-06-14 15:02:29", "", "101", "http://localhost:8888/TestSICPage/wordpress/101-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16066", "10", "2018-06-14 08:11:05", "2018-06-14 15:11:05", "", "Cameron Bowler", "", "publish", "closed", "closed", "", "cameron-bowler-2", "", "", "2018-06-14 08:11:50", "2018-06-14 15:11:50", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=give_payment&#038;p=16066", "0", "give_payment", "", "3");
INSERT INTO `wp_posts` VALUES("16067", "10", "2018-06-14 08:33:56", "2018-06-14 15:33:56", "Poster:Â <a href=\"https://www.southislandcentre.ca/wp-content/uploads/2017/08/Triple-P-Parenting-Poster_July-2018.pdf\">Triple P Parenting Poster_July 2018</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Triple P Positive Parenting Program (Wednesdays July 11 - August 29, 2018: 6:30pmâ€”8:30pm)", "", "publish", "closed", "closed", "", "triple-p-positive-parenting-program-wednesdays-july-11-august-29-2018-630pm-830pm", "", "", "2018-06-14 09:38:04", "2018-06-14 16:38:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=16067", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("16068", "10", "2018-06-14 08:38:29", "2018-06-14 15:38:29", "See course details on poster:Â <a href=\"https://www.southislandcentre.ca/wp-content/uploads/2017/08/Stress-and-Anxiety-Support-Group-July-2018.pdf\">Stress and Anxiety Support Group July 2018</a>\r\n\r\n[gravityform id=\"3\" title=\"true\" description=\"true\"]", "Support Group for Stress and Anxiety (Thursdays, July 26 - August 30, 2018: 6:30-8:00pm)", "", "publish", "closed", "closed", "", "support-group-for-stress-and-anxiety-thursdays-july-26-august-30-2018-630-800pm", "", "", "2018-06-14 09:37:29", "2018-06-14 16:37:29", "", "0", "http://localhost:8888/TestSICPage/wordpress/?post_type=ai1ec_event&#038;p=16068", "0", "ai1ec_event", "", "0");
INSERT INTO `wp_posts` VALUES("16070", "10", "2018-06-14 09:14:21", "2018-06-14 16:14:21", "<h2>Training And Upcoming Events</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\"><u>Positive Psychology Group</u></a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\"><u>Young Adults Support group for Anxiety</u></a></p><p><u><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </u></p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\"><u>Making It Work for Teens!</u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"><u> Living with Loss Part 1, an Introduction to Grief and Loss </u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</u></a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </u></a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training Currently Offered", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-06-14 09:14:21", "2018-06-14 16:14:21", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16071", "10", "2018-06-14 09:15:14", "2018-06-14 16:15:14", "<h2>Training And Upcoming Events</h2>\r\n<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5>\r\n<a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\"><u>Positive Psychology Group</u></a>\r\n\r\n<a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\"><u>Young Adults Support group for Anxiety</u></a>\r\n\r\n<u><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </u>\r\n\r\n<a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\"><u>Making It Work for Teens!</u></a>\r\n\r\n<a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"><u> Living with Loss Part 1, an Introduction to Grief and Loss </u></a>\r\n\r\n<a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</u></a>\r\n\r\n<a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and\r\nYour Personality Preference </u></a>\r\n\r\nFor more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.", "Training", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-06-14 09:15:14", "2018-06-14 16:15:14", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16072", "10", "2018-06-14 09:16:02", "2018-06-14 16:16:02", "<h2>How We Can Help</h2>\r\n<h5>Our experienced counsellorsÂ provideÂ professional, affordable mental health counselling services to all individuals, children and youth, young adults, couples and families for a variety of issues.</h5>\r\nWe can help with:\r\n<ul>\r\n 	<li>depression, stress and anxiety</li>\r\n 	<li>grief, loss, and life-transitions</li>\r\n 	<li>senior care issues</li>\r\n 	<li>end-of-life care</li>\r\n 	<li>support and education</li>\r\n 	<li>trauma and distress</li>\r\n 	<li>relationship conflicts</li>\r\n 	<li>self-esteem issues</li>\r\n 	<li>emotional, sexual, and physical abuse</li>\r\n 	<li>issues related to faith and spirituality</li>\r\n 	<li>marital and family conflict Â  Â <strong style=\"font-size: 14px; line-height: 1.5em;\">Â </strong></li>\r\n</ul>\r\n<b>At South Island Centre, we believe thatÂ everyoneÂ should have access to affordable professional mental health counselling support services when needed regardless of your financial situation.</b>\r\n\r\nTalk to your counsellor about your payment plans and options.\r\n\r\nToÂ MakeÂ an Appointment\r\n<ol>\r\n 	<li>Call our office at Â Â Â Â Â 250-472-2851.</li>\r\n 	<li><a style=\"color: blue;\" title=\"General inquiry form\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">Click here </a>Â to fill out an Intake Survey. You will be contacted within 5 business days for an initial consultation. Please note that counselling hours are by appointment only. Ask your counsellor for details and availability about weekend and evening appointments. Reception hours are Monday-Thursday, 9:00am-2:00pm.</li>\r\n</ol>", "Counselling", "", "inherit", "closed", "closed", "", "35-revision-v1", "", "", "2018-06-14 09:16:02", "2018-06-14 16:16:02", "", "35", "http://localhost:8888/TestSICPage/wordpress/35-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16074", "10", "2018-06-14 09:19:04", "2018-06-14 16:19:04", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHAT WE DO</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h4 data-elementor-setting-key=\"title\">We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Children and Youth Counselling\n</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h4 data-elementor-setting-key=\"title\">Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Training Courses and Pastoral Care</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â 		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "What We Do", "", "publish", "closed", "closed", "", "what-we-do", "", "", "2018-06-14 09:19:04", "2018-06-14 16:19:04", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=what-we-do", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("16075", "10", "2018-06-14 09:19:04", "2018-06-14 16:19:04", "", "What We Do", "", "inherit", "closed", "closed", "", "16074-revision-v1", "", "", "2018-06-14 09:19:04", "2018-06-14 16:19:04", "", "16074", "http://localhost:8888/TestSICPage/wordpress/16074-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16076", "10", "2018-06-14 09:19:04", "2018-06-14 16:19:04", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHAT WE DO</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h4 data-elementor-setting-key=\"title\">We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Children and Youth Counselling\n</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h4 data-elementor-setting-key=\"title\">Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Training Courses and Pastoral Care</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â 		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "What We Do", "", "inherit", "closed", "closed", "", "16074-revision-v1", "", "", "2018-06-14 09:19:04", "2018-06-14 16:19:04", "", "16074", "http://localhost:8888/TestSICPage/wordpress/16074-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16077", "10", "2018-06-14 09:20:22", "2018-06-14 16:20:22", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHAT WE DO</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h4 data-elementor-setting-key=\"title\">We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Children and Youth Counselling\n</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h4 data-elementor-setting-key=\"title\">Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Training Courses and Pastoral Care</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â 		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "What We do", "", "publish", "closed", "closed", "", "what-we-do-2", "", "", "2018-06-14 09:20:23", "2018-06-14 16:20:23", "", "0", "http://localhost:8888/TestSICPage/wordpress/?elementor_library=what-we-do-2", "0", "elementor_library", "", "0");
INSERT INTO `wp_posts` VALUES("16078", "10", "2018-06-14 09:20:22", "2018-06-14 16:20:22", "", "What We do", "", "inherit", "closed", "closed", "", "16077-revision-v1", "", "", "2018-06-14 09:20:22", "2018-06-14 16:20:22", "", "16077", "http://localhost:8888/TestSICPage/wordpress/16077-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16079", "10", "2018-06-14 09:20:23", "2018-06-14 16:20:23", "<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">WHAT WE DO</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h4 data-elementor-setting-key=\"title\">We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual incomeÂ with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p><p>Â We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.</p>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Children and Youth Counselling\n</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h4 data-elementor-setting-key=\"title\">Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Training Courses and Pastoral Care</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â 		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Save Widget\">\n						Save Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>", "What We do", "", "inherit", "closed", "closed", "", "16077-revision-v1", "", "", "2018-06-14 09:20:23", "2018-06-14 16:20:23", "", "16077", "http://localhost:8888/TestSICPage/wordpress/16077-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16080", "10", "2018-06-14 09:33:34", "2018-06-14 16:33:34", "<h2>WHO WE ARE</h2>		\n			<h4>We provide professional, affordable, income-based counselling services for all individuals</h4>		\n		<p>Â </p><p>We also offer supportive, professional level training for clients, professionals and the general public. Some of our counsellors are volunteer counsellors helping us provide services. A counsellor will be assigned to you based on your individual needs and circumstances.Â </p><p>Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work. 4-6 students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.Â </p><p>Call the Centre directly for more information on these services.</p>		\n			<h2>WHAT WE DO</h2>		\n			<h4>We are an interdenominational organization providing services to those of all faiths, and to those who do not have any particular faith connection.</h4>		\n		<p>We offer a sliding scale based on .1% of annual income&nbsp;with the maximum being $120/hour and the minimum being $10 per hour. For those unable to pay, lower fees can be negotiated or, when the situation warrants, no fees are charged.</p>\n<p>&nbsp;We also offer supportive, professional level training for clients, professionals and the general public. Our professionally trained counsellors see people for a wide range of issues such as depression, family conflict, low self-esteem, marital conflict, sexual, emotional, or physical abuse, grief and loss, parent-child problems, relationship issues, and spiritual concerns.w</p>		\n			<h2>OUR HISTORY</h2>		\n		<h4>South Island Centre for Counselling and Training Society was established in 1975.</h4>Since then, more than 15,000 people in the Capital Region District of Victoria, BC have received mental health counselling at the Centre.Â Founded with a vision of providing counselling to local pastors, to mitigate the stresses of meeting the needs of their parishioners, today the centre sees people from all walks of life.<br />Â Our commitment to providing counselling to every person â€“ regardless of their ability to pay â€“ is a lifeline to many lowâ€income clients who cannot afford help.Â Â We are funded in part by the Province of British Columbia, City of Victoria, United Way of Greater Victoria, Coast Capital, Catholic Foundation of Vancouver Island, St. Lukes, and Harbourside Rotary Club. The majority of funds however come through client fees, course fees, and individual donations.		\n			<h3>Children and Youth Counselling\n</h3>		\n			<h4>Our therapists who work with children and youth are highly trained and experienced registered clinical counsellors, experts in working through family therapy, educational programs, personal parenting, training with play, art and family systems therapy.</h4>		\n		<p>Â </p>Â Using talk therapy, play, art media, storytelling, and role play, children and youth are encouraged to explore individual, school, or family challenges that may be affecting their well-being. Some of the issues that can be addressed include: anxiety, depression, mood disorders, coping with bullying (as victim or perpetrator), separation/divorce, grief and loss, stress management, self-image challenges, maintaining healthy peer relationships, surviving academic pressures, coping with family transitions.Â We estimate that out of 33 young clients given counselling at the Centre in 2016, an additional 500 individuals (family, friends, extended family, peers, teachers) were positively impacted in the community by the mental health support we provided to these young clients.		\n			<h3>Training Courses and Pastoral Care</h3>		\n		<p>Â Weâ€™re also a training centre for students working on their Master degrees in helping professions like counselling, psychology and social work.Â </p><p>Four to six students are supervised and trained every year at South Island Centre. For clergy and laypeople, pastoral counselling, spiritual direction, and pastoral care team training is also available.</p>Â ", "Who We Are", "", "inherit", "closed", "closed", "", "15494-revision-v1", "", "", "2018-06-14 09:33:34", "2018-06-14 16:33:34", "", "15494", "http://localhost:8888/TestSICPage/wordpress/15494-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16081", "10", "2018-06-14 09:41:00", "2018-06-14 16:41:00", "<h2>Make an Appointment</h2>		\n		<p>Contact us viaÂ <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong>Â the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong>Counselling hours</strong>Â are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong>Reception hours</strong>Â are Monday-Thursday, 9:00am-2:00pm.</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â Â <strong>250-472-2851</strong>Â <strong>and press 4 for the staff directory.Â </strong>Â </p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-06-14 09:41:00", "2018-06-14 16:41:00", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16082", "10", "2018-06-14 09:42:07", "2018-06-14 16:42:07", "<h2>Make an Appointment</h2>		\n		Contact us viaÂ <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.\n<strong>Call</strong>Â the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.\n<strong>Counselling hours</strong>Â are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\n<strong>Reception hours</strong>Â are Monday-Thursday, 9:00am-2:00pm.\n<h4>Current Clients:</h4>\nPlease contact your counsellor directly by calling Â Â <strong>250-472-2851</strong>Â <strong>and press 4 for the staff directory.Â </strong>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-06-14 09:42:07", "2018-06-14 16:42:07", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16083", "10", "2018-06-14 09:42:54", "2018-06-14 16:42:54", "<h2>Make an Appointment</h2>		\n		<p>Contact us viaÂ <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong>Â the CentreÂ at Â Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong>Counselling hours</strong>Â are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong>Reception hours</strong>Â are Monday-Thursday, 9:00am-2:00pm.</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â Â <strong>250-472-2851</strong>Â <strong>and press 4 for the staff directory.Â </strong></p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-06-14 09:42:54", "2018-06-14 16:42:54", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16084", "10", "2018-06-14 09:44:22", "2018-06-14 16:44:22", "<h2>Make an Appointment</h2>		\n		<p>Contact us viaÂ <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p>Â </p><p><strong>Call</strong>Â the CentreÂ at Â <i></i>Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong>Counselling hours</strong>Â are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p>Â </p><p><strong>Reception hours</strong>Â are Monday, Tuesday &amp; Thursday, 9:00am-2:00pm.Â  Wednesday, 9:00am-4:00pm</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i></i>Â <strong>250-472-2851</strong>Â <strong>and press 4 for the staff directory.Â </strong></p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-06-14 09:44:22", "2018-06-14 16:44:22", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16085", "10", "2018-06-14 09:44:39", "2018-06-14 16:44:39", "<h2>Make an Appointment</h2>		\n		Contact us viaÂ <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.\n&nbsp;\n<strong>Call</strong>Â the CentreÂ at Â <i></i>Â <strong>250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.\n&nbsp;\n<strong>Counselling hours</strong>Â are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.\n&nbsp;\n<strong>Reception hours</strong>Â are Monday, Tuesday &amp; Thursday, 9:00am-2:00pm.Â  Wednesday, 9:00am-4:00pm\n&nbsp;\n<h4>Current Clients:</h4>\nPlease contact your counsellor directly by calling Â <i></i>Â <strong>250-472-2851</strong>Â <strong>and press 4 for the staff directory.Â </strong>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-06-14 09:44:39", "2018-06-14 16:44:39", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16086", "10", "2018-06-14 09:45:52", "2018-06-14 16:45:52", "<h2>Make an Appointment</h2>		\n		<p>Contact us viaÂ <a href=\"mailto:info@localhost\">Email</a>Â orÂ <strong><a title=\"Contact Form: General Inquiry\" href=\"http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/\" target=\"_blank\" rel=\"noopener\">click here</a></strong>Â to fill out aÂ <strong>Intake Survey form</strong>. Â You will be contacted within 5 business days.</p><p><strong style=\"font-size: 18px;\">Call</strong>Â the CentreÂ at Â Â <strong style=\"font-size: 18px;\">250-472-2851 and press 0 to leave a voicemail</strong>.Â Please provideÂ your name and a contact number where you can be reached.</p><p>Â </p><p><strong>Counselling hours</strong>Â are by appointment only.Â Consult your counsellor for details and availability about weekend and evening appointments.</p><p><strong>Reception hours</strong>Â are Monday, Tuesday &amp; Thursday, 9:00am-2:00pm.Â  Wednesday, 9:00am-4:00pm</p><p>Â </p><h4>Current Clients:</h4><p>Please contact your counsellor directly by calling Â <i></i>Â <strong>250-472-2851</strong>Â <strong>and press 4 for the staff directory.Â </strong></p>", "Make an Appointment", "", "inherit", "closed", "closed", "", "64-revision-v1", "", "", "2018-06-14 09:45:52", "2018-06-14 16:45:52", "", "64", "http://localhost:8888/TestSICPage/wordpress/64-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16087", "10", "2018-06-14 09:49:46", "2018-06-14 16:49:46", "<h2>Training And Upcoming Events</h2>		\n		<h5>At South Island Centre, we routinely offer specialized, professional training. Below is a listing of courses we offer. Dates for 2018 courses will be added soon:</h5><p><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14478\" target=\"_blank\" rel=\"noopener\"><u>Positive Psychology Group</u></a></p><p><a style=\"color: #000000;\" title=\"Young Adults Support group for Anxiety Tuesdays Sep.26-Nov.21, 2017\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15175\"><u>Young Adults Support group for Anxiety</u></a></p><p><u><a style=\"color: #000000;\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=14595\">Pastoral Care Team Training Workshop: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team</a> </u></p><p><a style=\"color: #000000;\" title=\"Making It Work for Teens! ï¼ˆ3 sessions, Saturdays, Oct.14 -Nov.4, 2017)\" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15209\"><u>Making It Work for Teens!</u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 1, an Introduction to Grief and Loss (Thursdays Oct. 19- Nov. 23, 2017: 7pm- 9pm) \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15133;\"><u> Living with Loss Part 1, an Introduction to Grief and Loss </u></a></p><p><a style=\"color: #000000;\" title=\"Living with Loss Part 2 The Twilight Journey: Understanding Grief and Loss at End-of-Life (Thursdays Feb. 8â€”Mar 15, 2018: 7pmâ€”9pm)\" href=\"http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm-2/\"><u>Living with Loss Part 2, The Twilight Journey: Understanding Grief and Loss at End-of Life (February 8 - March 15, 2018)</u></a></p><p><a style=\"color: #000000;\" title=\"Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference \" href=\"http://localhost:8888/TestSICPage/wordpress/?p=15147\"><u>Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and<br />Your Personality Preference </u></a></p><p>For more information on <strong>how to register :Â </strong><a style=\"color: blue;\" title=\"How to register &amp; Payment options\" href=\"http://localhost:8888/TestSICPage/wordpress/courses/courses-currently-offered/\">click here</a>Â Â OrÂ call us atÂ Â <i>icon-phone</i>Â 250-472-2851.</p>", "Training", "", "inherit", "closed", "closed", "", "11-revision-v1", "", "", "2018-06-14 09:49:46", "2018-06-14 16:49:46", "", "11", "http://localhost:8888/TestSICPage/wordpress/11-revision-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: wp_revslider_css */
INSERT INTO `wp_revslider_css` VALUES("1", ".tp-caption.medium_grey", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}");
INSERT INTO `wp_revslider_css` VALUES("2", ".tp-caption.small_text", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("3", ".tp-caption.medium_text", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("4", ".tp-caption.large_text", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("5", ".tp-caption.very_large_text", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("6", ".tp-caption.very_big_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}");
INSERT INTO `wp_revslider_css` VALUES("7", ".tp-caption.very_big_black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}");
INSERT INTO `wp_revslider_css` VALUES("8", ".tp-caption.modern_medium_fat", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}", "{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("9", ".tp-caption.modern_medium_fat_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("10", ".tp-caption.modern_medium_light", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}", "{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("11", ".tp-caption.modern_big_bluebg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}");
INSERT INTO `wp_revslider_css` VALUES("12", ".tp-caption.modern_big_redbg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}");
INSERT INTO `wp_revslider_css` VALUES("13", ".tp-caption.modern_small_text_dark", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}", "{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("14", ".tp-caption.boxshadow", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}", "[]");
INSERT INTO `wp_revslider_css` VALUES("15", ".tp-caption.black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"#000\"}");
INSERT INTO `wp_revslider_css` VALUES("16", ".tp-caption.noshadow", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "[]");
INSERT INTO `wp_revslider_css` VALUES("17", ".tp-caption.thinheadline_dark", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}");
INSERT INTO `wp_revslider_css` VALUES("18", ".tp-caption.thintext_dark", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}");
INSERT INTO `wp_revslider_css` VALUES("19", ".tp-caption.largeblackbg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("20", ".tp-caption.largepinkbg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("21", ".tp-caption.largewhitebg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}", "{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("22", ".tp-caption.largegreenbg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("23", ".tp-caption.excerpt", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}", "{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("24", ".tp-caption.large_bold_grey", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("25", ".tp-caption.medium_thin_grey", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("26", ".tp-caption.small_thin_grey", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("27", ".tp-caption.lightgrey_divider", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}", "{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("28", ".tp-caption.large_bold_darkblue", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("29", ".tp-caption.medium_bg_darkblue", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("30", ".tp-caption.medium_bold_red", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("31", ".tp-caption.medium_light_red", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("32", ".tp-caption.medium_bg_red", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("33", ".tp-caption.medium_bold_orange", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("34", ".tp-caption.medium_bg_orange", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("35", ".tp-caption.grassfloor", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}", "{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("36", ".tp-caption.large_bold_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("37", ".tp-caption.medium_light_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("38", ".tp-caption.mediumlarge_light_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("39", ".tp-caption.mediumlarge_light_white_center", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("40", ".tp-caption.medium_bg_asbestos", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("41", ".tp-caption.medium_light_black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("42", ".tp-caption.large_bold_black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("43", ".tp-caption.mediumlarge_light_darkblue", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("44", ".tp-caption.small_light_white", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("45", ".tp-caption.roundedimage", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("46", ".tp-caption.large_bg_black", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":[],\"hover\":\"\"}", "{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("47", ".tp-caption.mediumwhitebg", "{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}", "null", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("48", ".tp-caption.MarkerDisplay", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("49", ".tp-caption.Restaurant-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("50", ".tp-caption.Restaurant-Cursive", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("51", ".tp-caption.Restaurant-ScrollDownText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("52", ".tp-caption.Restaurant-Description", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("53", ".tp-caption.Restaurant-Price", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("54", ".tp-caption.Restaurant-Menuitem", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("55", ".tp-caption.Furniture-LogoText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("56", ".tp-caption.Furniture-Plus", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}", "{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("57", ".tp-caption.Furniture-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("58", ".tp-caption.Furniture-Subtitle", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("59", ".tp-caption.Gym-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("60", ".tp-caption.Gym-Subline", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("61", ".tp-caption.Gym-SmallText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("62", ".tp-caption.Fashion-SmallText", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("63", ".tp-caption.Fashion-BigDisplay", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("64", ".tp-caption.Fashion-TextBlock", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("65", ".tp-caption.Sports-Display", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("66", ".tp-caption.Sports-Display", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("67", ".tp-caption.Sports-DisplayFat", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":[\"\"],\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("68", ".tp-caption.Sports-DisplayFat", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":[\"\"],\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("69", ".tp-caption.Sports-Subline", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("70", ".tp-caption.Sports-Subline", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("71", ".tp-caption.Instagram-Caption", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("72", ".tp-caption.Instagram-Caption", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("73", ".tp-caption.News-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("74", ".tp-caption.News-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("75", ".tp-caption.News-Subtitle", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("76", ".tp-caption.News-Subtitle", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("77", ".tp-caption.Photography-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("78", ".tp-caption.Photography-Display", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("79", ".tp-caption.Photography-Subline", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("80", ".tp-caption.Photography-ImageHover", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("81", ".tp-caption.Photography-ImageHover", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("82", ".tp-caption.Photography-Menuitem", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("83", ".tp-caption.Photography-Menuitem", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("84", ".tp-caption.Photography-Textblock", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("85", ".tp-caption.Photography-Textblock", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("86", ".tp-caption.Photography-Subline-2", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("87", ".tp-caption.Photography-Subline-2", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("88", ".tp-caption.Photography-ImageHover2", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("89", ".tp-caption.Photography-ImageHover2", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("90", ".tp-caption.WebProduct-Title", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("91", ".tp-caption.WebProduct-SubTitle", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("92", ".tp-caption.WebProduct-SubTitle", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("93", ".tp-caption.WebProduct-Content", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("94", ".tp-caption.WebProduct-Content", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}");
INSERT INTO `wp_revslider_css` VALUES("95", ".tp-caption.WebProduct-Menuitem", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("96", ".tp-caption.WebProduct-Menuitem", "{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("97", ".tp-caption.WebProduct-Title-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("98", ".tp-caption.WebProduct-Title-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("99", ".tp-caption.WebProduct-SubTitle-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("100", ".tp-caption.WebProduct-SubTitle-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("101", ".tp-caption.WebProduct-Content-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("102", ".tp-caption.WebProduct-Content-Light", "{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("103", ".tp-caption.FatRounded", "{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("104", ".tp-caption.FatRounded", "{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("105", ".tp-caption.FatRounded", "{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("106", ".tp-caption.NotGeneric-Title", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"[object Object]\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("107", ".tp-caption.NotGeneric-Title", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"[object Object]\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("108", ".tp-caption.NotGeneric-Title", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"[object Object]\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("109", ".tp-caption.NotGeneric-SubTitle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("110", ".tp-caption.NotGeneric-SubTitle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("111", ".tp-caption.NotGeneric-SubTitle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("112", ".tp-caption.NotGeneric-CallToAction", "{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("113", ".tp-caption.NotGeneric-CallToAction", "{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("114", ".tp-caption.NotGeneric-CallToAction", "{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("115", ".tp-caption.NotGeneric-Icon", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("116", ".tp-caption.NotGeneric-Icon", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("117", ".tp-caption.NotGeneric-Menuitem", "{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("118", ".tp-caption.NotGeneric-Menuitem", "{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("119", ".tp-caption.MarkerStyle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("120", ".tp-caption.MarkerStyle", "{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("121", ".tp-caption.Gym-Menuitem", "{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("122", ".tp-caption.Gym-Menuitem", "{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("123", ".tp-caption.Newspaper-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("124", ".tp-caption.Newspaper-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("125", ".tp-caption.Newspaper-Subtitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("126", ".tp-caption.Newspaper-Subtitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("127", ".tp-caption.Newspaper-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("128", ".tp-caption.Newspaper-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("129", ".tp-caption.Newspaper-Title-Centered", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("130", ".tp-caption.Newspaper-Title-Centered", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("131", ".tp-caption.Hero-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("132", ".tp-caption.Hero-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("133", ".tp-caption.Video-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("134", ".tp-caption.Video-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("135", ".tp-caption.Video-Title", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("136", ".tp-caption.Video-SubTitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("137", ".tp-caption.Video-SubTitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("138", ".tp-caption.Video-SubTitle", "{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("139", ".tp-caption.NotGeneric-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("140", ".tp-caption.NotGeneric-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("141", ".tp-caption.NotGeneric-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("142", ".tp-caption.NotGeneric-BigButton", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("143", ".tp-caption.NotGeneric-BigButton", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("144", ".tp-caption.NotGeneric-BigButton", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("145", ".tp-caption.WebProduct-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("146", ".tp-caption.WebProduct-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("147", ".tp-caption.WebProduct-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("148", ".tp-caption.Restaurant-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("149", ".tp-caption.Restaurant-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("150", ".tp-caption.Restaurant-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("151", ".tp-caption.Gym-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("152", ".tp-caption.Gym-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("153", ".tp-caption.Gym-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("154", ".tp-caption.Gym-Button-Light", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("155", ".tp-caption.Gym-Button-Light", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("156", ".tp-caption.Sports-Button-Light", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("157", ".tp-caption.Sports-Button-Red", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("158", ".tp-caption.Sports-Button-Red", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("159", ".tp-caption.Photography-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("160", ".tp-caption.Photography-Button", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}", "{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("161", ".tp-caption.Newspaper-Button-2", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("162", ".tp-caption.Newspaper-Button-2", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");
INSERT INTO `wp_revslider_css` VALUES("163", ".tp-caption.Newspaper-Button-2", "{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}", "{\"idle\":\"\",\"hover\":\"\"}", "{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}");

/* INSERT TABLE DATA: wp_rg_form */
INSERT INTO `wp_rg_form` VALUES("1", "General Inquiry ", "2014-07-09 17:26:33", "1", "0");
INSERT INTO `wp_rg_form` VALUES("2", "Opt-in/Opt-out: E-mail Notification Option", "2014-07-23 18:48:40", "1", "1");
INSERT INTO `wp_rg_form` VALUES("3", "Register for Training", "2014-07-30 16:27:27", "1", "0");
INSERT INTO `wp_rg_form` VALUES("4", "Contact Form: Counselling", "2014-07-30 16:40:21", "1", "1");
INSERT INTO `wp_rg_form` VALUES("5", "Contact Form: General Submission", "2014-07-30 16:53:32", "1", "1");
INSERT INTO `wp_rg_form` VALUES("6", "2014 Fundraising Event, November 22, 2014", "2014-08-14 20:37:01", "1", "0");
INSERT INTO `wp_rg_form` VALUES("7", "Contact Form: Director of Development", "2015-02-18 19:54:30", "1", "1");
INSERT INTO `wp_rg_form` VALUES("8", "Pastoral Care Team Training Registration Form (Selkirk and Tolmie Regions)", "2015-07-22 18:19:24", "1", "0");
INSERT INTO `wp_rg_form` VALUES("9", "40th Fundraising Gala Event 2015", "2015-09-10 18:29:38", "1", "0");
INSERT INTO `wp_rg_form` VALUES("10", "Youth Support Group - Long Registration Form", "2016-03-22 18:29:37", "1", "0");
INSERT INTO `wp_rg_form` VALUES("11", "Annual Society Membership Form", "2016-04-14 18:37:20", "1", "0");
INSERT INTO `wp_rg_form` VALUES("12", "Register Interest in a Course/Workshop/Training Programme", "2016-04-19 17:29:12", "1", "1");
INSERT INTO `wp_rg_form` VALUES("13", "Pastoral Care Team Training Registration Form - Cowichan/Malaspina", "2016-08-03 17:08:19", "1", "0");
INSERT INTO `wp_rg_form` VALUES("14", "Intake Survey", "2016-11-09 17:53:10", "1", "0");
INSERT INTO `wp_rg_form` VALUES("15", "Young Adult Group - Long Registration Form", "2017-01-10 20:34:44", "1", "0");
INSERT INTO `wp_rg_form` VALUES("16", "Client-Counsellor Feedback Form", "2017-03-28 19:40:32", "1", "0");
INSERT INTO `wp_rg_form` VALUES("17", "Register for Training - Copy 1", "2017-07-27 20:09:08", "1", "1");
INSERT INTO `wp_rg_form` VALUES("18", "Register for Training ", "2017-12-20 22:41:20", "1", "0");

/* INSERT TABLE DATA: wp_rg_form_meta */
INSERT INTO `wp_rg_form_meta` VALUES("1", "{\"title\":\"General Inquiry \",\"description\":\"Please use this form to contact us if you want to set up an initial appointment with our Counselling Supervisor, or have a general question about the counselling, courses and training program services we offer.  You may also call us at (250) 472-2851 at your convenience.  Or just leave us a comment to let us know how we are doing. Thank you! \",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Personal information provided is collected under the authority of the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of providing supportive services and for statistical purposes. We do not share your email address or confidential information with any other outside source. If you have any questions, please contact us at (250) 472-2851.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":1,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not share your email address with any other outside source.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":1,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"phone\",\"id\":5,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":1,\"pageNumber\":1,\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Your Message\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":1,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"id\":1,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\",\"subLabelPlacement\":\"below\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"schedulePendingMessage\":\"\"}", "", "{\"53bd7b49e9c6a\":{\"id\":\"53bd7b49e9c6a\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us!\\u00a0We will contact you within 2-4\\u00a0business days.\\r\\n\\r\\n&nbsp;\\r\\n\\r\\n&nbsp;\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"53bd7b49e949c\":{\"isActive\":true,\"id\":\"53bd7b49e949c\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"admin@localhost\",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{Email:2}\",\"fromName\":\"{Name (First):1.3}{Name (Last):1.6}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");
INSERT INTO `wp_rg_form_meta` VALUES("2", "a:15:{s:5:\"title\";s:42:\"Opt-in/Opt-out: E-mail Notification Option\";s:11:\"description\";s:0:\"\";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:6:{i:0;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:1;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:4:\"Name\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:4:\"name\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:2;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Email\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"email\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:6;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:36:\"Opt - In: Check all boxes that apply\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"checkbox\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:3:{i:0;a:3:{s:2:\"id\";s:3:\"6.1\";s:5:\"label\";s:15:\"Newsletter only\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:3:\"6.2\";s:5:\"label\";s:41:\"Newsletter, Courses and Training Programs\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:3:\"6.3\";s:5:\"label\";s:29:\"Courses and Training Programs\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:7:\"choices\";a:3:{i:0;a:4:{s:4:\"text\";s:15:\"Newsletter only\";s:5:\"value\";s:15:\"Newsletter only\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:1;a:4:{s:4:\"text\";s:41:\"Newsletter, Courses and Training Programs\";s:5:\"value\";s:41:\"Newsletter, Courses and Training Programs\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:2;a:4:{s:4:\"text\";s:29:\"Courses and Training Programs\";s:5:\"value\";s:29:\"Courses and Training Programs\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:7;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:37:\"Opt - Out: Check all boxes that apply\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"checkbox\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:3:{i:0;a:3:{s:2:\"id\";s:3:\"7.1\";s:5:\"label\";s:10:\"Newsletter\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:3:\"7.2\";s:5:\"label\";s:29:\"Courses and Training Programs\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:3:\"7.3\";s:5:\"label\";s:42:\"All Notifications from South Island Centre\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:7:\"choices\";a:3:{i:0;a:4:{s:4:\"text\";s:10:\"Newsletter\";s:5:\"value\";s:10:\"Newsletter\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:1;a:4:{s:4:\"text\";s:29:\"Courses and Training Programs\";s:5:\"value\";s:29:\"Courses and Training Programs\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:2;a:4:{s:4:\"text\";s:42:\"All Notifications from South Island Centre\";s:5:\"value\";s:42:\"All Notifications from South Island Centre\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:8;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:12:\"Your Message\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"textarea\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}i:5;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:63:\"Please enter the number and letters (case sensitive!). Thanks. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:9;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:7:\"Captcha\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"captcha\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:14:\"simple_captcha\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:11:\"displayOnly\";b:1;s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:2;s:20:\"descriptionPlacement\";s:5:\"below\";}}s:2:\"id\";i:2;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;}", "", "a:1:{s:13:\"53d00388348b1\";a:8:{s:2:\"id\";s:13:\"53d00388348b1\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53d00388340e0\";a:14:{s:2:\"id\";s:13:\"53d00388340e0\";s:2:\"to\";s:15:\"Admin@localhost\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:13:\"{admin_email}\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_rg_form_meta` VALUES("3", "{\"title\":\"Register for Training\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The information you provide during the registration process is collected and used under the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering training programs, informing you of our services, and\\/or for statistical purposes. If you have questions about the collection or use oof your personal information, please call us at (250) 472-2851.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not share your email address or confidential information with any other sources.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"canadian\",\"defaultCountry\":\"Canada\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\",\"isHidden\":true},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"text\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":7,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Start Date of Course :\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Title of Training Program you are registering for\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"If you pay by credit card, please call us for telephone processing (a surcharge is added to all credit card transactions). Cash can be dropped off in person at South Island Centre from Monday-Thursday (9am-2pm). Your receipt will be available on the first day of training.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"debit card (in person)\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"cash (in person)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"value\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"debit card (in person)\",\"value\":\"debit card (in person)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"cash (in person)\",\"value\":\"cash (in person)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Please enter the case sensitive numbers and letters to prove you\'re not a robot.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Captcha\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"}],\"id\":3,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\",\"subLabelPlacement\":\"below\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"schedulePendingMessage\":\"\"}", "", "{\"53d91cefa91e6\":{\"id\":\"53d91cefa91e6\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! \\u00a0If you are submitting this form between December 16-31, 2016, we will\\u00a0address your course registration request in the new year.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "a:1:{s:13:\"53d91cefa8a17\";a:14:{s:2:\"id\";s:13:\"53d91cefa8a17\";s:2:\"to\";s:17:\"courses@localhost\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:17:\"courses@localhost\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_rg_form_meta` VALUES("4", "a:34:{s:5:\"title\";s:25:\"Contact Form: Counselling\";s:11:\"description\";s:201:\"Please fill in the required fields below. Please feel free to share in the Your Message box the reason you are seeking counselling. We will attempt to contact you within 3-4 business days.  Thank you! \";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:5:{i:0;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:1;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:4:\"Name\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:4:\"name\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:2;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Phone\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"phone\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:8:\"standard\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:3;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Email\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"email\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:4;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:12:\"Your Message\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"textarea\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:62:\"Please enter the letters and numbers (case sensitive). Thanks!\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:5;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:7:\"Captcha\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"captcha\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:14:\"simple_captcha\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:11:\"displayOnly\";b:1;s:6:\"formId\";i:4;s:20:\"descriptionPlacement\";s:5:\"below\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";}}s:2:\"id\";i:4;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", NULL, "a:1:{s:13:\"53d91ff5737b8\";a:8:{s:2:\"id\";s:13:\"53d91ff5737b8\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53d91ff572fe8\";a:14:{s:2:\"id\";s:13:\"53d91ff572fe8\";s:2:\"to\";s:21:\"counselling@localhost\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:21:\"counselling@localhost\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_rg_form_meta` VALUES("5", "a:34:{s:5:\"title\";s:32:\"Contact Form: General Submission\";s:11:\"description\";s:53:\"Please fill in the required fields below. Thank you! \";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:5:{i:0;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:1;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:4:\"Name\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:4:\"name\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:2;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Email\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"email\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:3;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Phone\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"phone\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:8:\"standard\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:4;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:12:\"Your Message\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"textarea\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:64:\"Please enter the numbers and letters (case sensitive!). Thanks. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:5;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:7:\"Captcha\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"captcha\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:14:\"simple_captcha\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:11:\"displayOnly\";b:1;s:6:\"formId\";i:5;s:20:\"descriptionPlacement\";s:5:\"below\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";}}s:2:\"id\";i:5;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", NULL, "a:1:{s:13:\"53d9230c8b06a\";a:8:{s:2:\"id\";s:13:\"53d9230c8b06a\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53d9230c8a89b\";a:14:{s:2:\"id\";s:13:\"53d9230c8a89b\";s:2:\"to\";s:14:\"info@localhost\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:14:\"info@localhost\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_rg_form_meta` VALUES("6", "a:34:{s:5:\"title\";s:41:\"2014 Fundraising Event, November 22, 2014\";s:11:\"description\";s:79:\"Reserve advanced tickets for our annual fundraising event by November 14, 2014.\";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:9:{i:0;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:1;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:4:\"Name\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:4:\"name\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:1.600000000000000088817841970012523233890533447265625;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:136:\"We will not share, trade, sell or rent your email with any outside source. It is used solely for the purpose of communicating with you. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:5;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Email\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"email\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:6;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:5:\"Phone\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:5:\"phone\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:8:\"standard\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:153:\"We will not share, trade, rent or sell your contact information with any outside source. It is solely used for the purpose of keeping in touch with you. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:7;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:7:\"Address\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"address\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:13:\"international\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";b:1;s:11:\"hideCountry\";b:1;s:9:\"hideState\";b:0;s:6:\"inputs\";a:6:{i:0;a:3:{s:2:\"id\";d:7.0999999999999996447286321199499070644378662109375;s:5:\"label\";s:14:\"Street Address\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:7.20000000000000017763568394002504646778106689453125;s:5:\"label\";s:14:\"Address Line 2\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";d:7.29999999999999982236431605997495353221893310546875;s:5:\"label\";s:4:\"City\";s:4:\"name\";s:0:\"\";}i:3;a:3:{s:2:\"id\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"label\";s:16:\"State / Province\";s:4:\"name\";s:0:\"\";}i:4;a:3:{s:2:\"id\";d:7.5;s:5:\"label\";s:17:\"ZIP / Postal Code\";s:4:\"name\";s:0:\"\";}i:5;a:3:{s:2:\"id\";d:7.5999999999999996447286321199499070644378662109375;s:5:\"label\";s:7:\"Country\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:250:\"Payment for up to 5 tickets is due at pick-up time (deadline: November 14, 2014).  Hosts may reserve tickets at any time, but payment must be received by November 14 at noon.  Ticket pick-up time: M-Th,10am-Noon from Monday, October 20, 2014 onwards.\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:8;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:93:\"Advanced Ticket Reservation Order (reserve anytime; payment due on Friday, November 14, 2014)\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"checkbox\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:4:{i:0;a:3:{s:2:\"id\";s:3:\"8.1\";s:5:\"label\";s:59:\"Single Ticket (payment is due when you pick up your ticket)\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:3:\"8.2\";s:5:\"label\";s:80:\"Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:3:\"8.3\";s:5:\"label\";s:55:\"Host:  6 Tickets (reserve anytime; payment due Nov. 14)\";s:4:\"name\";s:0:\"\";}i:3;a:3:{s:2:\"id\";s:3:\"8.4\";s:5:\"label\";s:55:\"Host: 10 Tickets (reserve anytime; payment due Nov. 14)\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:7:\"choices\";a:4:{i:0;a:4:{s:4:\"text\";s:59:\"Single Ticket (payment is due when you pick up your ticket)\";s:5:\"value\";s:59:\"Single Ticket (payment is due when you pick up your ticket)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:1;a:4:{s:4:\"text\";s:80:\"Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)\";s:5:\"value\";s:80:\"Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:2;a:4:{s:4:\"text\";s:55:\"Host:  6 Tickets (reserve anytime; payment due Nov. 14)\";s:5:\"value\";s:55:\"Host:  6 Tickets (reserve anytime; payment due Nov. 14)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:3;a:4:{s:4:\"text\";s:55:\"Host: 10 Tickets (reserve anytime; payment due Nov. 14)\";s:5:\"value\";s:55:\"Host: 10 Tickets (reserve anytime; payment due Nov. 14)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:5;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:9;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:108:\"Enter the total number of tickets you would like to purchase and will pay for by Friday, November 14, 2014. \";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:6:\"number\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:12:\"numberFormat\";s:11:\"decimal_dot\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";b:1;s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:6;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:342:\"Please drop off cash in person Monday-Thursday:10am-noon. Please make the cheque payable to South Island Centre for Counselling and Training and drop it off/mail it to: 3821A Cedar Hill Cross Rd, Victoria, BC, V8P 2M6; write \"tickets for Nov 22\" on the memo line.  Please call 250-472-2851 ext 101 to if you would like to pay by credit card. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:11;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:1;s:5:\"label\";s:99:\"Payment Options: please check a box below to indicate how you will pay for the reserved ticket(s). \";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"checkbox\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";a:3:{i:0;a:3:{s:2:\"id\";s:4:\"11.1\";s:5:\"label\";s:70:\"cash (drop off in person when you pick up your ticket (by November 14)\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";s:4:\"11.2\";s:5:\"label\";s:54:\"cheque (may be post-dated to Nov. 14 and mailed to us)\";s:4:\"name\";s:0:\"\";}i:2;a:3:{s:2:\"id\";s:4:\"11.3\";s:5:\"label\";s:63:\"credit card (please call 250-472-2851 ext 101; call by Nov. 14)\";s:4:\"name\";s:0:\"\";}}s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:7:\"choices\";a:3:{i:0;a:4:{s:4:\"text\";s:70:\"cash (drop off in person when you pick up your ticket (by November 14)\";s:5:\"value\";s:70:\"cash (drop off in person when you pick up your ticket (by November 14)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:1;a:4:{s:4:\"text\";s:54:\"cheque (may be post-dated to Nov. 14 and mailed to us)\";s:5:\"value\";s:54:\"cheque (may be post-dated to Nov. 14 and mailed to us)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}i:2;a:4:{s:4:\"text\";s:63:\"credit card (please call 250-472-2851 ext 101; call by Nov. 14)\";s:5:\"value\";s:63:\"credit card (please call 250-472-2851 ext 101; call by Nov. 14)\";s:10:\"isSelected\";b:0;s:5:\"price\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:7;a:58:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:12;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:77:\"Please use this message box for any further comments or concerns. Thank you! \";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:8:\"textarea\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:0:\"\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";}i:8;a:59:{s:10:\"adminLabel\";s:0:\"\";s:9:\"adminOnly\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"defaultValue\";s:0:\"\";s:11:\"description\";s:64:\"Please enter the numbers and letters (case sensitive!). Thanks. \";s:7:\"content\";s:0:\"\";s:8:\"cssClass\";s:0:\"\";s:12:\"errorMessage\";s:0:\"\";s:2:\"id\";i:13;s:9:\"inputName\";s:0:\"\";s:10:\"isRequired\";b:0;s:5:\"label\";s:7:\"Captcha\";s:12:\"noDuplicates\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:4:\"type\";s:7:\"captcha\";s:19:\"postCustomFieldName\";s:0:\"\";s:20:\"displayAllCategories\";b:0;s:14:\"displayCaption\";s:0:\"\";s:18:\"displayDescription\";s:0:\"\";s:12:\"displayTitle\";s:0:\"\";s:9:\"inputType\";s:0:\"\";s:8:\"rangeMin\";s:0:\"\";s:8:\"rangeMax\";s:0:\"\";s:16:\"calendarIconType\";s:0:\"\";s:15:\"calendarIconUrl\";s:0:\"\";s:8:\"dateType\";s:0:\"\";s:10:\"dateFormat\";s:0:\"\";s:11:\"phoneFormat\";s:0:\"\";s:11:\"addressType\";s:0:\"\";s:14:\"defaultCountry\";s:0:\"\";s:15:\"defaultProvince\";s:0:\"\";s:12:\"defaultState\";s:0:\"\";s:12:\"hideAddress2\";s:0:\"\";s:11:\"hideCountry\";s:0:\"\";s:9:\"hideState\";s:0:\"\";s:6:\"inputs\";N;s:10:\"nameFormat\";s:0:\"\";s:17:\"allowedExtensions\";s:0:\"\";s:11:\"captchaType\";s:14:\"simple_captcha\";s:10:\"pageNumber\";i:1;s:12:\"captchaTheme\";s:0:\"\";s:17:\"simpleCaptchaSize\";s:0:\"\";s:22:\"simpleCaptchaFontColor\";s:0:\"\";s:28:\"simpleCaptchaBackgroundColor\";s:0:\"\";s:17:\"failed_validation\";s:0:\"\";s:12:\"productField\";s:0:\"\";s:19:\"enablePasswordInput\";s:0:\"\";s:9:\"maxLength\";s:0:\"\";s:11:\"enablePrice\";s:0:\"\";s:9:\"basePrice\";s:0:\"\";s:11:\"displayOnly\";b:1;s:6:\"formId\";i:6;s:20:\"descriptionPlacement\";s:5:\"below\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";}}s:2:\"id\";i:6;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", "", "a:1:{s:13:\"53ed1ded32437\";a:8:{s:2:\"id\";s:13:\"53ed1ded32437\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53ed1ded31c03\";a:7:{s:2:\"id\";s:13:\"53ed1ded31c03\";s:2:\"to\";s:13:\"{admin_email}\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";}}");
INSERT INTO `wp_rg_form_meta` VALUES("7", "a:36:{s:5:\"title\";s:37:\"Contact Form: Director of Development\";s:11:\"description\";s:0:\"\";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:6:\"Submit\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:5:{i:0;a:19:{s:2:\"id\";i:8;s:5:\"label\";s:4:\"Name\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"name\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";a:2:{i:0;a:3:{s:2:\"id\";d:8.300000000000000710542735760100185871124267578125;s:5:\"label\";s:5:\"First\";s:4:\"name\";s:0:\"\";}i:1;a:3:{s:2:\"id\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"label\";s:4:\"Last\";s:4:\"name\";s:0:\"\";}}s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:20:{s:2:\"id\";i:6;s:5:\"label\";s:5:\"Phone\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"phone\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"phoneFormat\";s:8:\"standard\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:2;a:19:{s:2:\"id\";i:7;s:5:\"label\";s:5:\"Email\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:3;a:19:{s:2:\"id\";i:5;s:5:\"label\";s:13:\"Your Message \";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:4;a:22:{s:2:\"id\";i:4;s:5:\"label\";s:7:\"Captcha\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:7:\"captcha\";s:10:\"isRequired\";b:0;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:11:\"displayOnly\";b:1;s:11:\"captchaType\";s:14:\"simple_captcha\";s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:11:\"description\";s:66:\"Please enter the letters and numbers (case sensitive). Thank you. \";s:6:\"formId\";i:7;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}}s:2:\"id\";i:7;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:13:\"notifications\";a:1:{s:13:\"54e4edf6c1a9a\";a:7:{s:2:\"id\";s:13:\"54e4edf6c1a9a\";s:2:\"to\";s:13:\"{admin_email}\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";}}s:13:\"confirmations\";a:1:{s:13:\"54e4edf6c42c6\";a:8:{s:2:\"id\";s:13:\"54e4edf6c42c6\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", "", "a:1:{s:13:\"54e4edf6c42c6\";a:8:{s:2:\"id\";s:13:\"54e4edf6c42c6\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"54e4fb94379d5\";a:14:{s:2:\"id\";s:13:\"54e4fb94379d5\";s:4:\"name\";s:24:\"Director of Development \";s:5:\"event\";s:15:\"form_submission\";s:2:\"to\";s:31:\"directorofdevelopment@localhost\";s:6:\"toType\";s:5:\"email\";s:3:\"bcc\";s:0:\"\";s:7:\"subject\";s:27:\"New submission {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:4:\"from\";s:29:\"{directorofdevelopment_email}\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_rg_form_meta` VALUES("8", "{\"title\":\"Pastoral Care Team Training Registration Form (Selkirk and Tolmie Regions)\",\"description\":\"Registration Form for Lay and Clergy \",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":true,\"label\":\"How many person(s) are you registering for the Pastoral Care Team Training (PCTT) workshop on Saturday, October 14, 2017? Please check one.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"5.1\",\"label\":\"just myself\",\"name\":\"\"},{\"id\":\"5.2\",\"label\":\"myself and additional persons from the same congregation.\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"just myself\",\"value\":\"just myself\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"myself and additional persons from the same congregation.\",\"value\":\"myself and additional persons from the same congregation.\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":14,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Are you (and anyone else from the same congregation you are registering) currently an Anglican parishioner from the Tolmie or Selkirk regions?\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"14.1\",\"label\":\"yes\",\"name\":\"\"},{\"id\":\"14.2\",\"label\":\"no\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"yes\",\"value\":\"yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"no\",\"value\":\"no\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":15,\"inputName\":\"\",\"isRequired\":false,\"label\":\"If Yes, have you had a conversation with your parish priest, and received their endorsement, to register for this Pastoral Care Team Training? (answering YES will make you eligible to receive a bursary towards this workshop from the Anglican Diocese of BC\'s Vision Fund.)\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"15.1\",\"label\":\"yes\",\"name\":\"\"},{\"id\":\"15.2\",\"label\":\"no\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"yes\",\"value\":\"yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"no\",\"value\":\"no\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Please list the church you are currently attending, the denomination and the location.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The personal information you provide during the registration process is collected and used under the authority of the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering courses or training programs, informing you of our services and benefits, and for statistical purposes. If you have questions about the collection, use or disclosure of your personal information, please contact us at (250) 472-2851, extension 101. \",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name of Principal Registrant\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not rent, trade, sell, or share your email address or confidential information with any other outside source.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"international\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":false,\"hideCountry\":false,\"hideState\":false,\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Please indicate the level of prior pastoral care team training you have received. If you have never attended a PCTT course offered with South Island Centre, please check \\\"basic\\\". If you have attended the basic level with us, please check \\\"advanced\\\". If you have never attended a PCTT course with us, but have relevant prior experience, please consult with your parish priest, if the advanced level is appropriate for you.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"Basic (never attended a PCTT workshop)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"Advanced (attended a basic PCTT workshop)\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"Basic (never attended a PCTT workshop)\",\"value\":\"Basic (never attended a PCTT workshop)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Advanced (attended a basic PCTT workshop)\",\"value\":\"Advanced (attended a basic PCTT workshop)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)\",\"value\":\"Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":10,\"inputName\":\"\",\"isRequired\":false,\"label\":\"If you are registering additional parishioners from your church, please list their names and their current training level (basic or advanced) below.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Please make the check payable to \\\"South Island Centre for Counselling and Training\\\". Debit card transactions can only made in person (M-Th, 10am-1pm). Credit card transactions can be made in person (M-Th, 10am-1pm) or over the phone during regular office hours (M-Th, 9am-1pm). \",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":11,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options (please check one of the options below); payment is due at time of registration or at the latest by Tuesday, October 10, 2017. If you have registered additional persons, you will be responsible to submit payment for the entire group at this time.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"11.1\",\"label\":\"Non-bursary option: cheque ($105 per registrant)\",\"name\":\"\"},{\"id\":\"11.2\",\"label\":\"Non-bursary option: debit card ($105 per registrant) - in person only\",\"name\":\"\"},{\"id\":\"11.3\",\"label\":\"Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)\",\"name\":\"\"},{\"id\":\"11.4\",\"label\":\"Bursary option: cheque ($15 per registrant)\",\"name\":\"\"},{\"id\":\"11.5\",\"label\":\"Bursary option: debit card ($15 per registrant) - in person only\",\"name\":\"\"},{\"id\":\"11.6\",\"label\":\"Bursary option: credit card ($15 per registrant)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"Non-bursary option: cheque ($105 per registrant)\",\"value\":\"Non-bursary option: cheque ($105 per registrant)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Non-bursary option: debit card ($105 per registrant) - in person only\",\"value\":\"Non-bursary option: debit card ($105 per registrant) - in person only\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)\",\"value\":\"Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Bursary option: cheque ($15 per registrant)\",\"value\":\"Bursary option: cheque ($15 per registrant)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Bursary option: debit card ($15 per registrant) - in person only\",\"value\":\"Bursary option: debit card ($15 per registrant) - in person only\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Bursary option: credit card ($15 per registrant)\",\"value\":\"Bursary option: credit card ($15 per registrant)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":8,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":12,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Please enter the letters and numbers that you see below to confirm that you are human (case-sensitive). Thank you.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":8,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"id\":8,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\"}", "", "{\"55afdeac6bf16\":{\"id\":\"55afdeac6bf16\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We\\u00a0will contact you within 2-4 business to confirm your course registration.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "a:1:{s:13:\"55afdeac5ffaf\";a:14:{s:2:\"id\";s:13:\"55afdeac5ffaf\";s:2:\"to\";s:13:\"{admin_email}\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";s:3:\"bcc\";s:0:\"\";s:4:\"from\";s:15:\"{courses_email}\";s:8:\"fromName\";s:0:\"\";s:7:\"replyTo\";s:0:\"\";s:7:\"routing\";N;s:16:\"conditionalLogic\";N;s:17:\"disableAutoformat\";s:0:\"\";}}");
INSERT INTO `wp_rg_form_meta` VALUES("9", "{\"title\":\"40th Fundraising Gala Event 2015\",\"description\":\"40th Gala Fundraiser\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":9,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":2,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":9,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"This email will be used only to communicate with you about the October 17 gala. We will not share, sell, or trade this email address with any other party.\",\"emailConfirmEnabled\":false,\"formId\":9,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":4,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"4.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"4.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"4.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"4.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"4.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"4.6\",\"label\":\"Country\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"international\",\"defaultState\":\"\",\"defaultProvince\":\"\",\"defaultCountry\":\"\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":9,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":10,\"label\":\"Purchase Tickets ($75 per person plus surcharge) by credit card via EventBrite: http:\\/\\/www.eventbrite.com\\/e\\/south-island-centre-for-counsellings-40th-anniversary-fundraising-gala-tickets-18418594512 (copy and paste into a browser). Please indicate the total number of tickets purchased below.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Ticket includes buffet supper, cash bar, live entertainment (jazz from the 30s and 40s), silent auction, door prizes, complimentary underground parking; special hotel rate available for Oct.17 (contact Hotel Grand Pacific directly - quoting OCT15SOUT). \",\"formId\":9,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":9,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please confirm that you are a human. Letters are case-sensitive. Thank you!\",\"formId\":9,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":9,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}", "", "{\"55f1cc12e006a\":{\"id\":\"55f1cc12e006a\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for ordering tickets for our October 17 gala. We will contact you within 2-3 business days to process the payment and confirm the ticket order.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"55f1cc12ddd45\":{\"id\":\"55f1cc12ddd45\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_rg_form_meta` VALUES("10", "{\"title\":\"Youth Support Group - Long Registration Form\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":20,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"20.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"20.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"20.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"20.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"20.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":9,\"label\":\"Gender\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Male\",\"value\":\"Male\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Female\",\"value\":\"Female\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"other\",\"value\":\"other\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"9.1\",\"label\":\"Male\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"Female\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"other\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":10,\"label\":\"Date of Birth\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":4,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":7,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":2,\"label\":\"Guardian\'s Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please include your first and last name. \",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":3,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"3.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"3.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"3.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"3.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"3.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"3.6\",\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"canadian\",\"defaultState\":\"\",\"defaultProvince\":\"\",\"defaultCountry\":\"Canada\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":5,\"label\":\"Guardian\'s Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":6,\"label\":\"Guardian\'s Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":8,\"label\":\"Preferred Method of Contact\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please let us know how you would like to be contacted. \",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":19,\"label\":\"How did you hear about our Support Group?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":21,\"label\":\"Pre-screening Interviews (in person) - please indicate your availability.\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Saturday, June17\\/pm\",\"value\":\"Saturday, June17\\/pm\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Saturday, June 24\\/pm\",\"value\":\"Saturday, June 24\\/pm\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"21.1\",\"label\":\"Saturday, June17\\/pm\",\"name\":\"\"},{\"id\":\"21.2\",\"label\":\"Saturday, June 24\\/pm\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":18,\"label\":\"Payment Options\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Credit Card (surcharge applies)\",\"value\":\"Credit Card (surcharge applies)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Debit Card (in person only)\",\"value\":\"Debit Card (in person only)\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"18.1\",\"label\":\"Credit Card (surcharge applies)\",\"name\":\"\"},{\"id\":\"18.2\",\"label\":\"Debit Card (in person only)\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Payment is due when the registrant has been accepted into the group post pre-screening. \",\"formId\":10,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":12,\"label\":\"Current Issues (check all that apply)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"academic pressure\",\"value\":\"academic pressure\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"family stress\",\"value\":\"family stress\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"relationship challenges\",\"value\":\"relationship challenges\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"peer pressure\",\"value\":\"peer pressure\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"self-esteem\",\"value\":\"self-esteem\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"general anxiety\",\"value\":\"general anxiety\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"12.1\",\"label\":\"academic pressure\",\"name\":\"\"},{\"id\":\"12.2\",\"label\":\"family stress\",\"name\":\"\"},{\"id\":\"12.3\",\"label\":\"relationship challenges\",\"name\":\"\"},{\"id\":\"12.4\",\"label\":\"peer pressure\",\"name\":\"\"},{\"id\":\"12.5\",\"label\":\"self-esteem\",\"name\":\"\"},{\"id\":\"12.6\",\"label\":\"general anxiety\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":17,\"label\":\"Current medication? Please list name of medications and dosages.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":16,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"formId\":10,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":10,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}", "", "{\"56f18f11446a0\":{\"id\":\"56f18f11446a0\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! The course facilitator will get in touch with you shortly, to set up a pre-screening interview with the Youth to determine the Youth\'s eligibility to participate in the group.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"56f18f112c134\":{\"id\":\"56f18f112c134\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_rg_form_meta` VALUES("11", "{\"title\":\"Annual Society Membership Form\",\"description\":\"Annual Society Membership Form\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":11,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":2,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"2.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"2.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"2.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"2.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"2.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"2.6\",\"label\":\"Country\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"international\",\"defaultState\":\"\",\"defaultProvince\":\"\",\"defaultCountry\":\"\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":11,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":3,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please enter your usual contact number. \",\"formId\":11,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":4,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Notice of meetings, newsletter etc will be emailed to this address. We respect your privacy. We will not share, trade or rent this address with any outside party. \",\"emailConfirmEnabled\":false,\"formId\":11,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":5,\"label\":\"Membership Information\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"I am a new member.\",\"value\":\"I am a new member.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"I am a returning member.\",\"value\":\"I am a returning member.\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"5.1\",\"label\":\"I am a new member.\",\"name\":\"\"},{\"id\":\"5.2\",\"label\":\"I am a returning member.\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please check one box only. \",\"formId\":11,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":6,\"label\":\"Payment Options\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"cash (in person)\",\"value\":\"cash (in person)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"credit card (can be processed via telephone)\",\"value\":\"credit card (can be processed via telephone)\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"6.1\",\"label\":\"cash (in person)\",\"name\":\"\"},{\"id\":\"6.2\",\"label\":\"credit card (can be processed via telephone)\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please check one payment option. Cash payments can be made in person or via telephone by credit card.\",\"formId\":11,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":7,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"formId\":11,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":11,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}", NULL, "{\"570fe3602e2f7\":{\"id\":\"570fe3602e2f7\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for becoming a member. We look forward to working with you.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"570fe36023aff\":{\"id\":\"570fe36023aff\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_rg_form_meta` VALUES("12", "{\"title\":\"Register Interest in a Course\\/Workshop\\/Training Programme\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":12,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":2,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"2.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"2.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"2.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"2.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"2.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"2.6\",\"label\":\"Country\",\"name\":\"\"}],\"formId\":12,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":3,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":12,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":4,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":12,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":5,\"label\":\"Name of Workshop, Course or Training Programme\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please indicate the Course, Workshop or Training Programme you like to indicate interested for. \",\"formId\":12,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":6,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please type the letters and numbers to the right (case-sensitive!). \",\"formId\":12,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":12,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}", NULL, "{\"57166ae89c69d\":{\"id\":\"57166ae89c69d\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}", "{\"57166ae89bed0\":{\"id\":\"57166ae89bed0\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_rg_form_meta` VALUES("13", "{\"title\":\"Pastoral Care Team Training Registration Form - Cowichan\\/Malaspina\",\"description\":\"Registration form for lay and clergy \",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The information you provide is collected and used under the authority of the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering training programs, or informing you of our services and for statistical purposes. If you have questions please contact us at (250) 472-2851. \",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"international\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":false,\"hideCountry\":false,\"hideState\":false,\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Are you a parishioner at a church?\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"5.1\",\"label\":\"yes\",\"name\":\"\"},{\"id\":\"5.2\",\"label\":\"no\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"yes\",\"value\":\"yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"no\",\"value\":\"no\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"If yes, please list the church you are currently attending, the denomination and the location.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":7,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Are you eligible for a bursary from the Anglican Diocese of BC because you are a parishioner of an Anglican Church in the Cowichan\\/Malaspina Region?\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"7.1\",\"label\":\"yes\",\"name\":\"\"},{\"id\":\"7.2\",\"label\":\"no\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"yes\",\"value\":\"yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"no\",\"value\":\"no\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":8,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Start date of the program you are registering for (month\\/date\\/year):\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Please indicate the level of training you are registering for:\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"Basic (never attended a PCTT workshop)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"Advanced (attended a basic PCTT workshop or have relevant experience)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"Basic (never attended a PCTT workshop)\",\"value\":\"Basic (never attended a PCTT workshop)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Advanced (attended a basic PCTT workshop or have relevant experience)\",\"value\":\"Advanced (attended a basic PCTT workshop or have relevant experience)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":13,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Do you have any dietary concerns we should know about?\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":10,\"inputName\":\"\",\"isRequired\":false,\"label\":\"If you are registering for a group of people from your church, please list their names and their desired training level (basic or advanced) below.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"You may pay by debit card in person at South Island Centre M-Th, 9am-2pm.  Credit card payments can be processed over the phone.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":11,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"11.1\",\"label\":\"debit card (in person only)\",\"name\":\"\"},{\"id\":\"11.2\",\"label\":\"credit card (surcharges apply)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"debit card (in person only)\",\"value\":\"debit card (in person only)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"credit card (surcharges apply)\",\"value\":\"credit card (surcharges apply)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":13,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":12,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Please enter the letters and numbers that you see below to confirm that you are human (case-sensitive). Thank you.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":13,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"id\":13,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\"}", "", "{\"55afdeac6bf16\":{\"id\":\"55afdeac6bf16\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We\\u00a0will contact you within 2-4 business to confirm your course registration.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"55afdeac5ffaf\":{\"id\":\"55afdeac5ffaf\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"bcc\":\"\",\"from\":\"{courses_email}\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":\"\"}}");
INSERT INTO `wp_rg_form_meta` VALUES("14", "{\"title\":\"Intake Survey\",\"description\":\"If you are a new client and in need of counselling, please complete our Intake Survey. \",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"textarea\",\"id\":2,\"label\":\"Date of Birth\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"phone\",\"id\":3,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\",\"form_id\":\"\"},{\"type\":\"email\",\"id\":4,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"text\",\"id\":11,\"label\":\"How did you hear about us?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"textarea\",\"id\":5,\"label\":\"Presenting Concerns:\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Please provide details about your issues and list your appointment preferences. \",\"formId\":14,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"checkbox\",\"id\":12,\"label\":\"Type of counselling you prefer\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"I only want individual counselling\",\"value\":\"I only want individual counselling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"I would participate in a support group\",\"value\":\"I would participate in a support group\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"I would consider being in a support group along with receiving individual counselling\",\"value\":\"I would consider being in a support group along with receiving individual counselling\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"12.1\",\"label\":\"I only want individual counselling\",\"name\":\"\"},{\"id\":\"12.2\",\"label\":\"I would participate in a support group\",\"name\":\"\"},{\"id\":\"12.3\",\"label\":\"I would consider being in a support group along with receiving individual counselling\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":14,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"visibility\":\"visible\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":6,\"label\":\"Preferred Appointment Times and Days Preferred (check all that apply)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"M-F, 9-5pm\",\"value\":\"M-F, 9-5pm\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"M-F, 5-8pm\",\"value\":\"M-F, 5-8pm\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Saturday daytime\",\"value\":\"Saturday daytime\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"6.1\",\"label\":\"M-F, 9-5pm\",\"name\":\"\"},{\"id\":\"6.2\",\"label\":\"M-F, 5-8pm\",\"name\":\"\"},{\"id\":\"6.3\",\"label\":\"Saturday daytime\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"website\",\"id\":7,\"label\":\"Read about our sliding fee scale - copy and paste the URL below into your browser.\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"http:\\/\\/localhost:8888\\/TestSICPage\\/wordpress\\/counselling\\/affordable-counselling\\/\",\"formId\":14,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"checkbox\",\"id\":8,\"label\":\"Extended Health Coverage (please check appropriate box)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Yes\",\"value\":\"Yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No\",\"value\":\"No\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"8.1\",\"label\":\"Yes\",\"name\":\"\"},{\"id\":\"8.2\",\"label\":\"No\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"},{\"type\":\"checkbox\",\"id\":9,\"label\":\"Your Fee based on your combined annual household income (check one)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"$80-120\",\"value\":\"$80-120\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$50-80\",\"value\":\"$50-80\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$50\",\"value\":\"$50\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$40\",\"value\":\"$40\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$30\",\"value\":\"$30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$20\",\"value\":\"$20\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"$10\",\"value\":\"$10\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"9.1\",\"label\":\"$80-120\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"$50-80\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"$50\",\"name\":\"\"},{\"id\":\"9.4\",\"label\":\"$40\",\"name\":\"\"},{\"id\":\"9.5\",\"label\":\"$30\",\"name\":\"\"},{\"id\":\"9.6\",\"label\":\"$20\",\"name\":\"\"},{\"id\":\"9.7\",\"label\":\"$10\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"enableChoiceValue\":true,\"formId\":14,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\",\"visibility\":\"visible\"}],\"version\":\"2.2.6\",\"id\":14,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"notifications\":{\"58236286e929a\":{\"isActive\":true,\"id\":\"58236286e929a\",\"name\":\"Amber Eaves\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"info@localhost\",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{Email:4}\",\"fromName\":\"{Name (First):1.3}{Name (Last):1.6}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}},\"confirmations\":{\"5823628722303\":{\"id\":\"5823628722303\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will contact you within 2-3 business days.\\r\\n\\r\\nIf this is a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24hrs\\/7 days a week.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}}", "", "{\"5823628722303\":{\"id\":\"5823628722303\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will contact you within 2-3 business days.\\r\\n\\r\\nIf this is a true emergency, please contact the Vancouver Island Crisis Line at 1-888-494-3888. They are open 24hrs\\/7 days a week.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"58236286e929a\":{\"isActive\":true,\"id\":\"58236286e929a\",\"name\":\"Amber Eaves\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"info@localhost\",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"{Email:4}\",\"fromName\":\"{Name (First):1.3}{Name (Last):1.6}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");
INSERT INTO `wp_rg_form_meta` VALUES("15", "{\"title\":\"Young Adult Group - Long Registration Form\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"text\",\"id\":1,\"label\":\"First and Last Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":15,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":9,\"label\":\"Gender\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Male\",\"value\":\"Male\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Female\",\"value\":\"Female\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"other\",\"value\":\"other\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"9.1\",\"label\":\"Male\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"Female\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"other\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":10,\"label\":\"Date of Birth\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":4,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":7,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"phoneFormat\":\"standard\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"address\",\"id\":3,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":[{\"id\":\"3.1\",\"label\":\"Street Address\",\"name\":\"\"},{\"id\":\"3.2\",\"label\":\"Address Line 2\",\"name\":\"\"},{\"id\":\"3.3\",\"label\":\"City\",\"name\":\"\"},{\"id\":\"3.4\",\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":\"3.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":\"3.6\",\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"addressType\":\"canadian\",\"defaultState\":\"\",\"defaultProvince\":\"\",\"defaultCountry\":\"Canada\",\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"We will not share this information with any other source. \",\"formId\":15,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":8,\"label\":\"Preferred Method of Contact\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"\",\"formId\":15,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":20,\"label\":\"How did you hear about this Support Group?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":18,\"label\":\"Payment Options\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Credit Card (surcharge applies)\",\"value\":\"Credit Card (surcharge applies)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Debit Card (in person)\",\"value\":\"Debit Card (in person)\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"18.1\",\"label\":\"Credit Card (surcharge applies)\",\"name\":\"\"},{\"id\":\"18.2\",\"label\":\"Debit Card (in person)\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"Payment must be submitted upon registration. For debit payments, please pay in person from 9am-2pm, Monday-Thursday. \",\"formId\":15,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":12,\"label\":\"Current issues (check all that apply)\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"academic pressure\",\"value\":\"academic pressure\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"family stress\",\"value\":\"family stress\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"relationship challenges\",\"value\":\"relationship challenges\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"peer pressure\",\"value\":\"peer pressure\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"self-esteem\",\"value\":\"self-esteem\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"general anxiety\",\"value\":\"general anxiety\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"12.1\",\"label\":\"academic pressure\",\"name\":\"\"},{\"id\":\"12.2\",\"label\":\"family stress\",\"name\":\"\"},{\"id\":\"12.3\",\"label\":\"relationship challenges\",\"name\":\"\"},{\"id\":\"12.4\",\"label\":\"peer pressure\",\"name\":\"\"},{\"id\":\"12.5\",\"label\":\"self-esteem\",\"name\":\"\"},{\"id\":\"12.6\",\"label\":\"general anxiety\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":17,\"label\":\"Current medication? Please list names of medication and dosage.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"checkbox\",\"id\":19,\"label\":\"A pre-screening interview will be scheduled in advance to determine suitability for participation in a group setting. Please indicate preferred times for a pre-screening appointment.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"choices\":[{\"text\":\"Weekday AM (9-noon)\",\"value\":\"Weekday AM (9-noon)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Weekday PM (noon-5)\",\"value\":\"Weekday PM (noon-5)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Weekend\",\"value\":\"Weekend\",\"isSelected\":false,\"price\":\"\"}],\"inputs\":[{\"id\":\"19.1\",\"label\":\"Weekday AM (9-noon)\",\"name\":\"\"},{\"id\":\"19.2\",\"label\":\"Weekday PM (noon-5)\",\"name\":\"\"},{\"id\":\"19.3\",\"label\":\"Weekend\",\"name\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":16,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"formId\":15,\"pageNumber\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"}],\"version\":\"1.9.12.1\",\"id\":15,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}", "", "{\"56f18f11446a0\":{\"id\":\"56f18f11446a0\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! The course facilitator will get in touch with you shortly, to set up a pre-screening interview with\\u00a0you to determine your\\u00a0eligibility to participate in the group.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"56f18f112c134\":{\"id\":\"56f18f112c134\",\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");
INSERT INTO `wp_rg_form_meta` VALUES("16", "{\"title\":\"Client-Counsellor Feedback Form\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"date\",\"id\":17,\"label\":\"Date\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"dateType\":\"datepicker\",\"calendarIconType\":\"none\",\"calendarIconUrl\":\"\",\"allowsPrepopulate\":false,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"dateFormat\":\"\",\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":16,\"label\":\"Your Counsellor:\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"description\":\"This form is intended to provide feedback on your counsellor after your sessions have ended and are anonymous. Please choose the statement from the drop-down menu that most closely corresponds to how you feel. \",\"formId\":16,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":2,\"label\":\"About the Working Relationship with your counsellor - My counsellor was an effective listener\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"description\":\"\",\"formId\":16,\"pageNumber\":1,\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":3,\"label\":\"My counsellor understood my point of view.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":4,\"label\":\"My counsellor focused on what was important to me.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":5,\"label\":\"My counsellor accepted what I said without judging me.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":6,\"label\":\"My counsellor provided a safe and trusting environment.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":7,\"label\":\"My counsellor began and ended our sessions on time.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":8,\"label\":\"My counsellor followed my lead during our sessions when that was appropriate.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":9,\"label\":\"My counsellor provided leadership during our sessions when that was appropriate.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":10,\"label\":\"My counsellor challenged me when\\/if that was appropriate.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":11,\"label\":\"About the results of working with your counsellor: The sessions with my counsellor helped me with what had originally led me to seek counselling.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":12,\"label\":\"Any changes which might have occured in me as a result of my counselling have been positive and welcome.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Strongly agree\",\"value\":\"Strongly agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat agree\",\"value\":\"Somewhat agree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat disagree\",\"value\":\"Somewhat disagree\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly disagree\",\"value\":\"Strongly disagree\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":13,\"label\":\"Overall Satisfaction: My overall level of satisfaction with the service provided by my counsellor is:\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Very satisfied\",\"value\":\"Very satisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat satisfied\",\"value\":\"Somewhat satisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat dissatisfied\",\"value\":\"Somewhat dissatisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly dissatisfied\",\"value\":\"Strongly dissatisfied\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":14,\"label\":\"Based on my experience, I would recommend my counsellor to others.\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"choices\":[{\"text\":\"Very satisfied\",\"value\":\"Very satisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat satisfied\",\"value\":\"Somewhat satisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No strong feeling\",\"value\":\"No strong feeling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Somewhat dissatisfied\",\"value\":\"Somewhat dissatisfied\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Strongly dissatisfied\",\"value\":\"Strongly dissatisfied\",\"isSelected\":false,\"price\":\"\"}],\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"noDuplicates\":true,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":15,\"label\":\"Please use this space below for any additional comments you would like to make on behalf of the counselling services you received.\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"formId\":16,\"pageNumber\":1,\"description\":\"\",\"inputType\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"displayOnly\":\"\"},{\"type\":\"captcha\",\"id\":18,\"label\":\"Captcha\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"captchaType\":\"simple_captcha\",\"formId\":16,\"pageNumber\":1,\"description\":\"Please enter the letters (case sensitive) and numbers as shown above. Thank you. \",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"adminOnly\":false,\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false}],\"version\":\"1.9.12.1\",\"id\":16,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null}", "", "{\"58dabc30eb235\":{\"id\":\"58dabc30eb235\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for completing the Client-Counsellor feedback form!\\r\\n\\r\\n&nbsp;\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"58dabc30df23e\":{\"isActive\":true,\"id\":\"58dabc30df23e\",\"name\":\"Amber Eaves\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"admin@localhost\",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"\",\"fromName\":\"{user:display_name}\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");
INSERT INTO `wp_rg_form_meta` VALUES("17", "{\"title\":\"Register for Training - Copy 1\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The information you provide during the registration process is collected and used under the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering training programs, informing you of our services, and\\/or for statistical purposes. If you have questions about the collection or use oof your personal information, please call us at (250) 472-2851.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not share your email address or confidential information with any other sources.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"canadian\",\"defaultCountry\":\"Canada\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\",\"isHidden\":true},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"text\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":7,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Start Date of Course :\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Title of Training Program you are registering for\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"If you pay by credit card, please call us for telephone processing (a surcharge is added to all credit card transactions). Cash can be dropped off in person at South Island Centre from Monday-Thursday (9am-2pm). Your receipt will be available on the first day of training.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"debit card (in person)\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"cash (in person)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"value\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"debit card (in person)\",\"value\":\"debit card (in person)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"cash (in person)\",\"value\":\"cash (in person)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":3,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Please enter the case sensitive numbers and letters to prove you\'re not a robot.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Captcha\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":3,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"}],\"id\":17,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\",\"subLabelPlacement\":\"below\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"schedulePendingMessage\":\"\"}", NULL, "{\"53d91cefa91e6\":{\"id\":\"53d91cefa91e6\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! \\u00a0If you are submitting this form between December 16-31, 2016, we will\\u00a0address your course registration request in the new year.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"53d91cefa8a17\":{\"id\":\"53d91cefa8a17\",\"to\":\"courses@localhost\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"bcc\":\"\",\"from\":\"courses@localhost\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":\"\"}}");
INSERT INTO `wp_rg_form_meta` VALUES("18", "{\"title\":\"Register for Training \",\"description\":\" (Nuts and Bolts)\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\"},\"fields\":[{\"type\":\"name\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"The information you provide during the registration process is collected and used under the Freedom of Information and Protection Privacy Act. The information is only used for the purpose of administering training programs, informing you of our services, and\\/or for statistical purposes. If you have questions about the collection or use oof your personal information, please call us at (250) 472-2851.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":1,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Name\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":1.3,\"label\":\"First\",\"name\":\"\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":1.6,\"label\":\"Last\",\"name\":\"\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"advanced\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"email\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"We do not share your email address or confidential information with any other sources.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":2,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Email\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"address\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":3,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Address\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"canadian\",\"defaultCountry\":\"Canada\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"inputs\":[{\"id\":3.1,\"label\":\"Street Address\",\"name\":\"\"},{\"id\":3.2,\"label\":\"Address Line 2\",\"name\":\"\",\"isHidden\":true},{\"id\":3.3,\"label\":\"City\",\"name\":\"\"},{\"id\":3.4,\"label\":\"State \\/ Province\",\"name\":\"\"},{\"id\":3.5,\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\"},{\"id\":3.6,\"label\":\"Country\",\"name\":\"\",\"isHidden\":true}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"phone\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":4,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Phone\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"standard\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\"},{\"type\":\"text\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":7,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Start Date of Course :\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"textarea\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":5,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Title of Training Program you are registering for\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"If you pay by credit card, please call us for telephone processing (a surcharge is added to all credit card transactions). Cash can be dropped off in person at South Island Centre from Monday-Thursday (9am-2pm). Your receipt will be available on the first day of training.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":9,\"inputName\":\"\",\"isRequired\":true,\"label\":\"Payment Options\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"9.1\",\"label\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"name\":\"\"},{\"id\":\"9.2\",\"label\":\"debit card (in person)\",\"name\":\"\"},{\"id\":\"9.3\",\"label\":\"cash (in person)\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"value\":\"credit card (surcharge applies; transactions can be processed over the phone)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"debit card (in person)\",\"value\":\"debit card (in person)\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"cash (in person)\",\"value\":\"cash (in person)\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"below\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"section\",\"id\":13,\"label\":\"\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"inputs\":null,\"displayOnly\":true,\"formId\":18,\"pageNumber\":1,\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":10,\"inputName\":\"\",\"isRequired\":false,\"label\":\"This edition of South Island Centre\\u2019s \\u201cNuts and Bolts\\u201d training is part of The Selkirk-Tolmie Pastoral Care Initiative, supported by the Anglican Diocese of British Columbia through its Vision Fund.  The Initiative is planning a series of talks, dialogues and encounters about spiritual care, beginning in Spring 2018. For now, we call this series \\\"TOPICS in Pastoral Care\\u201d and it promises to bring you exciting, first-person looks at spiritual care in action.  Please check the box below if you\\u2019d like to be invited to \\u201cTOPICS\\u201d presentations by the Anglican Diocese.  Your email address will ONLY be used by the Diocese to let you know about upcoming \\u201cTOPICS\\u201d in Pastoral Care; and for no other purpose.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"10.1\",\"label\":\"\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"\",\"value\":\"\",\"isSelected\":true,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"above\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"enableChoiceValue\":false},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":11,\"inputName\":\"\",\"isRequired\":false,\"label\":\"Please check below to hear about more training opportunities at South Island Centre.  Your email address will ONLY be used to let you know about training opportunities for yourself or your church.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"11.1\",\"label\":\"\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"\",\"value\":\"\",\"isSelected\":true,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"above\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"checkbox\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":12,\"inputName\":\"\",\"isRequired\":false,\"label\":\"South Island Centre is a registered non-profit and charitable organization, whose charitable purpose includes providing low-cost or no-cost counselling to all citizens, regardless of lifestyle or belief, who might not otherwise be able to afford this important professional care for themselves and their families.   Check below for information about our fundraising activities.  Your email address will be used to inform you about South Island Centre activities and its signature annual fundraising events.\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":[{\"id\":\"12.1\",\"label\":\"\",\"name\":\"\"}],\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"choices\":[{\"text\":\"\",\"value\":\"\",\"isSelected\":false,\"price\":\"\"}],\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"formId\":18,\"descriptionPlacement\":\"above\",\"displayOnly\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"},{\"type\":\"captcha\",\"adminLabel\":\"\",\"adminOnly\":\"\",\"allowsPrepopulate\":false,\"defaultValue\":\"\",\"description\":\"Please enter the case sensitive numbers and letters to prove you\'re not a robot.\",\"content\":\"\",\"cssClass\":\"\",\"errorMessage\":\"\",\"id\":6,\"inputName\":\"\",\"isRequired\":false,\"label\":\"\",\"noDuplicates\":\"\",\"size\":\"medium\",\"postCustomFieldName\":\"\",\"displayAllCategories\":false,\"displayCaption\":\"\",\"displayDescription\":\"\",\"displayTitle\":\"\",\"inputType\":\"\",\"rangeMin\":\"\",\"rangeMax\":\"\",\"calendarIconType\":\"\",\"calendarIconUrl\":\"\",\"dateType\":\"\",\"dateFormat\":\"\",\"phoneFormat\":\"\",\"addressType\":\"\",\"defaultCountry\":\"\",\"defaultProvince\":\"\",\"defaultState\":\"\",\"hideAddress2\":\"\",\"hideCountry\":\"\",\"hideState\":\"\",\"inputs\":null,\"nameFormat\":\"\",\"allowedExtensions\":\"\",\"captchaType\":\"simple_captcha\",\"pageNumber\":1,\"captchaTheme\":\"\",\"simpleCaptchaSize\":\"\",\"simpleCaptchaFontColor\":\"\",\"simpleCaptchaBackgroundColor\":\"\",\"failed_validation\":\"\",\"productField\":\"\",\"enablePasswordInput\":\"\",\"maxLength\":\"\",\"enablePrice\":\"\",\"basePrice\":\"\",\"displayOnly\":true,\"formId\":18,\"descriptionPlacement\":\"below\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\"}],\"id\":18,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"cssClass\":\"\",\"enableHoneypot\":\"\",\"enableAnimation\":\"\",\"limitEntries\":\"\",\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":\"\",\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":\"\",\"requireLoginMessage\":\"\",\"subLabelPlacement\":\"below\",\"save\":{\"enabled\":\"\",\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"schedulePendingMessage\":\"\"}", "", "{\"53d91cefa91e6\":{\"id\":\"53d91cefa91e6\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! \\u00a0If you are submitting this form between December 16-31, 2016, we will\\u00a0address your course registration request in the new year.\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}", "{\"53d91cefa8a17\":{\"isActive\":true,\"id\":\"53d91cefa8a17\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"courses@localhost\",\"toType\":\"email\",\"bcc\":\"\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"from\":\"courses@localhost\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false}}");

/* INSERT TABLE DATA: wp_rg_form_view */
INSERT INTO `wp_rg_form_view` VALUES("1", "1", "2014-07-09 22:38:08", "173.192.239.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("2", "2", "2014-07-23 18:50:32", "184.69.11.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("3", "2", "2014-07-26 19:04:47", "96.50.14.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("4", "2", "2014-07-28 18:12:55", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("5", "1", "2014-07-28 18:18:01", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("6", "1", "2014-07-28 19:10:33", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("7", "2", "2014-07-28 19:12:16", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("8", "1", "2014-07-28 21:08:56", "173.192.239.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("9", "2", "2014-07-28 21:11:22", "184.173.183.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("10", "1", "2014-07-29 00:22:17", "184.71.26.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("11", "2", "2014-07-29 00:29:29", "184.71.26.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("12", "1", "2014-07-29 09:03:47", "66.249.66.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("13", "1", "2014-07-29 12:04:01", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("14", "2", "2014-07-29 12:14:06", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("15", "1", "2014-07-29 13:45:58", "207.81.253.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("16", "2", "2014-07-29 14:56:31", "66.249.66.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("17", "2", "2014-07-29 20:12:42", "192.34.58.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("18", "1", "2014-07-29 20:12:42", "192.34.58.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("19", "1", "2014-07-30 10:37:04", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("20", "2", "2014-07-30 10:37:07", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("21", "3", "2014-07-30 20:01:21", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("22", "1", "2014-07-30 20:41:25", "96.50.14.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("23", "1", "2014-07-30 23:43:44", "96.50.14.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("24", "3", "2014-07-30 23:43:56", "96.50.14.143", "3");
INSERT INTO `wp_rg_form_view` VALUES("25", "2", "2014-07-31 00:24:47", "70.71.238.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("26", "3", "2014-07-31 01:43:19", "173.44.62.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("27", "1", "2014-08-01 08:05:13", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("28", "2", "2014-08-01 08:05:21", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("29", "3", "2014-08-01 08:05:59", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("30", "1", "2014-08-01 19:27:45", "174.127.133.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("31", "2", "2014-08-01 19:30:51", "174.127.133.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("32", "3", "2014-08-01 19:34:53", "174.127.133.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("33", "1", "2014-08-01 20:02:45", "174.127.133.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("34", "3", "2014-08-01 21:39:19", "192.81.211.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("35", "1", "2014-08-01 21:39:19", "192.81.211.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("36", "2", "2014-08-01 21:39:19", "192.81.211.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("37", "2", "2014-08-02 06:50:59", "66.249.79.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("38", "3", "2014-08-02 09:23:59", "66.249.79.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("39", "3", "2014-08-02 23:27:30", "5.10.104.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("40", "1", "2014-08-02 23:29:11", "5.10.104.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("41", "3", "2014-08-03 07:50:14", "207.46.13.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("42", "3", "2014-08-03 15:23:15", "66.249.79.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("43", "1", "2014-08-04 05:30:50", "96.50.103.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("44", "1", "2014-08-04 06:31:29", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45", "2", "2014-08-04 06:31:38", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("46", "3", "2014-08-04 06:32:26", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("47", "1", "2014-08-04 08:05:39", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("48", "2", "2014-08-04 08:05:41", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("49", "2", "2014-08-04 10:50:16", "66.249.79.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("50", "1", "2014-08-04 15:46:42", "66.249.79.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("51", "3", "2014-08-04 17:58:01", "5.10.107.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("52", "1", "2014-08-04 17:59:42", "5.10.107.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("53", "1", "2014-08-04 20:08:55", "66.249.79.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("54", "3", "2014-08-04 20:11:28", "66.249.79.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("55", "3", "2014-08-05 08:22:05", "144.76.87.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("56", "1", "2014-08-05 15:20:34", "192.254.72.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("57", "2", "2014-08-05 17:09:19", "66.249.79.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("58", "3", "2014-08-05 17:46:28", "5.10.104.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("59", "1", "2014-08-05 17:48:10", "5.10.104.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("60", "2", "2014-08-05 22:20:31", "70.66.134.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("61", "1", "2014-08-05 22:20:47", "70.66.134.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("62", "3", "2014-08-06 04:02:54", "5.10.104.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("63", "1", "2014-08-06 04:04:36", "5.10.104.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("64", "1", "2014-08-06 06:47:48", "66.249.79.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("65", "1", "2014-08-06 08:14:52", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("66", "3", "2014-08-06 10:51:48", "23.95.105.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("67", "1", "2014-08-06 14:32:57", "162.210.196.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("68", "2", "2014-08-06 14:33:04", "162.210.196.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("69", "3", "2014-08-06 14:34:06", "162.210.196.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("70", "1", "2014-08-06 16:57:31", "157.55.39.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("71", "3", "2014-08-06 17:04:23", "66.249.79.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("72", "1", "2014-08-06 17:27:38", "66.249.79.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("73", "2", "2014-08-06 17:49:24", "157.55.39.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("74", "2", "2014-08-06 19:49:40", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("75", "3", "2014-08-07 03:11:27", "198.211.104.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("76", "1", "2014-08-07 03:11:27", "198.211.104.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("77", "2", "2014-08-07 03:11:27", "198.211.104.210", "5");
INSERT INTO `wp_rg_form_view` VALUES("78", "3", "2014-08-07 04:14:19", "69.12.84.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("79", "1", "2014-08-07 04:55:09", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("80", "2", "2014-08-07 04:55:17", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("81", "2", "2014-08-07 05:52:27", "157.55.39.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("82", "1", "2014-08-07 05:52:28", "157.55.39.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("83", "3", "2014-08-07 10:01:15", "37.203.208.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("84", "1", "2014-08-07 10:27:26", "178.19.111.205", "3");
INSERT INTO `wp_rg_form_view` VALUES("85", "2", "2014-08-07 14:59:52", "66.249.79.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("86", "3", "2014-08-07 15:49:25", "36.250.176.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("87", "3", "2014-08-08 03:47:28", "5.10.104.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("88", "1", "2014-08-08 03:49:07", "5.10.104.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("89", "1", "2014-08-08 05:20:00", "174.7.170.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("90", "3", "2014-08-08 07:23:07", "192.81.208.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("91", "1", "2014-08-08 07:23:07", "192.81.208.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("92", "2", "2014-08-08 07:23:07", "192.81.208.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("93", "2", "2014-08-08 09:50:25", "23.88.110.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("94", "1", "2014-08-08 20:09:39", "74.171.143.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("95", "2", "2014-08-08 20:09:46", "74.171.143.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("96", "3", "2014-08-08 20:10:19", "74.171.143.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("97", "1", "2014-08-08 23:44:23", "66.249.79.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("98", "2", "2014-08-09 06:02:36", "72.20.49.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("99", "3", "2014-08-09 06:02:41", "64.120.51.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("100", "1", "2014-08-09 10:09:48", "116.25.24.160", "2");
INSERT INTO `wp_rg_form_view` VALUES("101", "3", "2014-08-09 10:50:13", "117.176.189.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("102", "3", "2014-08-09 11:41:03", "173.213.80.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("103", "3", "2014-08-09 13:12:57", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("104", "3", "2014-08-09 15:29:36", "199.119.227.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("105", "3", "2014-08-09 17:21:00", "50.3.117.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("106", "3", "2014-08-09 18:34:48", "5.153.235.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("107", "2", "2014-08-09 20:42:37", "62.210.139.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("108", "2", "2014-08-10 01:02:07", "66.249.79.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("109", "1", "2014-08-10 03:07:02", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("110", "2", "2014-08-10 03:07:09", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("111", "3", "2014-08-10 03:07:47", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("112", "1", "2014-08-10 05:57:14", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("113", "2", "2014-08-10 05:57:19", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("114", "2", "2014-08-10 07:21:13", "66.249.79.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("115", "3", "2014-08-10 12:22:02", "49.213.19.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("116", "1", "2014-08-10 13:09:21", "116.25.24.160", "2");
INSERT INTO `wp_rg_form_view` VALUES("117", "2", "2014-08-10 18:54:56", "192.3.61.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("118", "2", "2014-08-10 19:04:39", "192.227.191.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("119", "3", "2014-08-10 19:04:41", "192.227.191.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("120", "2", "2014-08-10 20:34:57", "173.213.81.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("121", "1", "2014-08-11 00:39:14", "66.249.79.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("122", "3", "2014-08-11 02:13:14", "117.169.1.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("123", "2", "2014-08-11 02:28:30", "217.69.133.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("124", "2", "2014-08-11 11:19:51", "192.227.191.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("125", "3", "2014-08-11 11:19:55", "192.227.191.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("126", "3", "2014-08-11 12:07:33", "198.199.74.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("127", "1", "2014-08-11 12:07:33", "198.199.74.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("128", "2", "2014-08-11 12:07:33", "198.199.74.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("129", "2", "2014-08-11 15:32:40", "208.89.209.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("130", "2", "2014-08-11 16:37:52", "192.227.191.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("131", "3", "2014-08-11 16:37:56", "192.227.191.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("132", "2", "2014-08-11 19:33:38", "192.157.250.98", "3");
INSERT INTO `wp_rg_form_view` VALUES("133", "1", "2014-08-11 19:42:22", "217.69.133.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("134", "2", "2014-08-11 20:59:27", "172.246.129.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("135", "1", "2014-08-11 22:49:03", "68.180.224.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("136", "3", "2014-08-11 22:57:12", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("137", "2", "2014-08-12 02:08:14", "173.0.55.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("138", "2", "2014-08-12 03:39:55", "192.240.220.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("139", "3", "2014-08-12 03:39:57", "192.240.220.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("140", "3", "2014-08-12 05:34:28", "68.180.224.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("141", "2", "2014-08-12 07:06:35", "62.210.89.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("142", "3", "2014-08-12 07:42:27", "199.180.135.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("143", "2", "2014-08-12 08:27:50", "172.245.214.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("144", "3", "2014-08-12 08:32:52", "172.245.214.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("145", "2", "2014-08-12 09:10:45", "173.0.55.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("146", "2", "2014-08-12 10:52:32", "199.30.49.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("147", "3", "2014-08-12 10:52:34", "199.30.49.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("148", "2", "2014-08-12 11:02:44", "208.89.209.153", "4");
INSERT INTO `wp_rg_form_view` VALUES("149", "3", "2014-08-12 11:02:46", "208.89.209.153", "4");
INSERT INTO `wp_rg_form_view` VALUES("150", "2", "2014-08-12 12:11:13", "199.30.49.91", "3");
INSERT INTO `wp_rg_form_view` VALUES("151", "3", "2014-08-12 12:11:15", "199.30.49.91", "4");
INSERT INTO `wp_rg_form_view` VALUES("152", "2", "2014-08-12 13:34:05", "199.195.142.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("153", "2", "2014-08-12 14:20:27", "199.180.135.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("154", "3", "2014-08-12 14:20:29", "199.180.135.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("155", "2", "2014-08-12 16:53:29", "172.245.214.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("156", "3", "2014-08-12 16:53:34", "172.245.214.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("157", "1", "2014-08-12 17:44:57", "198.143.158.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("158", "2", "2014-08-12 17:45:06", "198.143.158.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("159", "3", "2014-08-12 17:45:19", "198.143.158.34", "21");
INSERT INTO `wp_rg_form_view` VALUES("160", "3", "2014-08-12 18:00:08", "66.249.79.251", "1328");
INSERT INTO `wp_rg_form_view` VALUES("161", "3", "2014-08-12 19:00:06", "66.249.79.236", "936");
INSERT INTO `wp_rg_form_view` VALUES("162", "3", "2014-08-12 20:00:04", "66.249.79.132", "995");
INSERT INTO `wp_rg_form_view` VALUES("163", "2", "2014-08-12 20:32:47", "155.94.129.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("164", "3", "2014-08-12 21:00:01", "66.249.79.145", "930");
INSERT INTO `wp_rg_form_view` VALUES("165", "1", "2014-08-12 21:24:20", "66.249.79.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("166", "3", "2014-08-12 22:00:05", "66.249.79.132", "867");
INSERT INTO `wp_rg_form_view` VALUES("167", "2", "2014-08-12 22:36:21", "173.213.81.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("168", "3", "2014-08-12 23:00:14", "66.249.79.132", "477");
INSERT INTO `wp_rg_form_view` VALUES("169", "2", "2014-08-12 23:53:04", "192.77.254.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("170", "3", "2014-08-13 00:03:38", "66.249.79.132", "674");
INSERT INTO `wp_rg_form_view` VALUES("171", "3", "2014-08-13 01:05:08", "66.249.79.145", "389");
INSERT INTO `wp_rg_form_view` VALUES("172", "2", "2014-08-13 01:41:17", "173.0.55.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("173", "3", "2014-08-13 02:01:55", "66.249.79.132", "84");
INSERT INTO `wp_rg_form_view` VALUES("174", "2", "2014-08-13 02:32:13", "173.0.49.197", "4");
INSERT INTO `wp_rg_form_view` VALUES("175", "3", "2014-08-13 03:03:49", "66.249.79.145", "588");
INSERT INTO `wp_rg_form_view` VALUES("176", "2", "2014-08-13 03:32:02", "198.23.174.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("177", "3", "2014-08-13 04:00:04", "66.249.79.132", "1575");
INSERT INTO `wp_rg_form_view` VALUES("178", "2", "2014-08-13 04:01:28", "68.180.224.243", "14");
INSERT INTO `wp_rg_form_view` VALUES("179", "1", "2014-08-13 04:08:58", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("180", "3", "2014-08-13 05:01:49", "66.249.79.145", "1664");
INSERT INTO `wp_rg_form_view` VALUES("181", "2", "2014-08-13 05:10:26", "216.107.159.35", "6");
INSERT INTO `wp_rg_form_view` VALUES("182", "3", "2014-08-13 06:00:06", "66.249.79.119", "1612");
INSERT INTO `wp_rg_form_view` VALUES("183", "2", "2014-08-13 06:16:22", "199.180.135.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("184", "3", "2014-08-13 07:00:03", "66.249.79.132", "1630");
INSERT INTO `wp_rg_form_view` VALUES("185", "3", "2014-08-13 08:00:00", "66.249.79.132", "1756");
INSERT INTO `wp_rg_form_view` VALUES("186", "3", "2014-08-13 09:00:03", "66.249.79.132", "1710");
INSERT INTO `wp_rg_form_view` VALUES("187", "3", "2014-08-13 10:00:02", "66.249.79.132", "1696");
INSERT INTO `wp_rg_form_view` VALUES("188", "3", "2014-08-13 11:00:07", "66.249.79.132", "1760");
INSERT INTO `wp_rg_form_view` VALUES("189", "3", "2014-08-13 12:00:00", "66.249.69.92", "1702");
INSERT INTO `wp_rg_form_view` VALUES("190", "3", "2014-08-13 13:00:07", "66.249.69.108", "1180");
INSERT INTO `wp_rg_form_view` VALUES("191", "3", "2014-08-13 14:03:43", "66.249.69.124", "48");
INSERT INTO `wp_rg_form_view` VALUES("192", "3", "2014-08-13 15:00:15", "66.249.69.92", "1208");
INSERT INTO `wp_rg_form_view` VALUES("193", "3", "2014-08-13 16:04:50", "66.249.69.92", "104");
INSERT INTO `wp_rg_form_view` VALUES("194", "2", "2014-08-13 16:16:03", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("195", "3", "2014-08-13 17:00:00", "66.249.69.108", "256");
INSERT INTO `wp_rg_form_view` VALUES("196", "3", "2014-08-13 18:00:23", "66.249.69.108", "1246");
INSERT INTO `wp_rg_form_view` VALUES("197", "3", "2014-08-13 19:00:00", "66.249.69.92", "1966");
INSERT INTO `wp_rg_form_view` VALUES("198", "3", "2014-08-13 20:00:02", "66.249.69.108", "2034");
INSERT INTO `wp_rg_form_view` VALUES("199", "3", "2014-08-13 21:00:00", "66.249.69.108", "2545");
INSERT INTO `wp_rg_form_view` VALUES("200", "3", "2014-08-13 22:00:09", "66.249.69.124", "3857");
INSERT INTO `wp_rg_form_view` VALUES("201", "3", "2014-08-13 23:00:27", "66.249.69.92", "2094");
INSERT INTO `wp_rg_form_view` VALUES("202", "1", "2014-08-13 23:28:37", "202.46.63.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("203", "3", "2014-08-14 00:00:12", "66.249.69.108", "1314");
INSERT INTO `wp_rg_form_view` VALUES("204", "3", "2014-08-14 01:01:18", "66.249.69.124", "196");
INSERT INTO `wp_rg_form_view` VALUES("205", "3", "2014-08-14 02:04:26", "66.249.69.108", "168");
INSERT INTO `wp_rg_form_view` VALUES("206", "3", "2014-08-14 03:02:11", "66.249.69.108", "2519");
INSERT INTO `wp_rg_form_view` VALUES("207", "3", "2014-08-14 04:00:08", "66.249.69.92", "2868");
INSERT INTO `wp_rg_form_view` VALUES("208", "3", "2014-08-14 05:00:01", "66.249.69.124", "2914");
INSERT INTO `wp_rg_form_view` VALUES("209", "3", "2014-08-14 06:00:07", "66.249.69.108", "2904");
INSERT INTO `wp_rg_form_view` VALUES("210", "3", "2014-08-14 07:00:00", "66.249.69.108", "2888");
INSERT INTO `wp_rg_form_view` VALUES("211", "3", "2014-08-14 08:00:04", "66.249.69.92", "2914");
INSERT INTO `wp_rg_form_view` VALUES("212", "3", "2014-08-14 09:00:05", "66.249.69.108", "2960");
INSERT INTO `wp_rg_form_view` VALUES("213", "3", "2014-08-14 10:00:07", "66.249.69.108", "2996");
INSERT INTO `wp_rg_form_view` VALUES("214", "2", "2014-08-14 10:55:33", "172.246.129.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("215", "3", "2014-08-14 11:00:07", "66.249.69.124", "2800");
INSERT INTO `wp_rg_form_view` VALUES("216", "3", "2014-08-14 12:00:06", "66.249.69.92", "2974");
INSERT INTO `wp_rg_form_view` VALUES("217", "3", "2014-08-14 13:00:42", "198.245.51.90", "530");
INSERT INTO `wp_rg_form_view` VALUES("218", "3", "2014-08-14 14:00:17", "46.28.53.168", "780");
INSERT INTO `wp_rg_form_view` VALUES("219", "3", "2014-08-14 15:02:39", "66.249.79.119", "1094");
INSERT INTO `wp_rg_form_view` VALUES("220", "1", "2014-08-14 15:11:35", "202.98.123.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("221", "3", "2014-08-14 16:00:11", "66.249.79.132", "2287");
INSERT INTO `wp_rg_form_view` VALUES("222", "3", "2014-08-14 17:00:04", "91.194.84.106", "3794");
INSERT INTO `wp_rg_form_view` VALUES("223", "3", "2014-08-14 18:00:07", "66.249.79.145", "2051");
INSERT INTO `wp_rg_form_view` VALUES("224", "3", "2014-08-14 19:00:04", "66.249.79.145", "2278");
INSERT INTO `wp_rg_form_view` VALUES("225", "2", "2014-08-14 19:35:25", "172.245.33.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("226", "1", "2014-08-14 19:42:13", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("227", "3", "2014-08-14 20:00:00", "66.249.79.119", "6659");
INSERT INTO `wp_rg_form_view` VALUES("228", "1", "2014-08-14 20:04:58", "157.55.39.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("229", "6", "2014-08-14 20:59:16", "66.249.79.145", "6");
INSERT INTO `wp_rg_form_view` VALUES("230", "3", "2014-08-14 21:00:09", "66.249.79.119", "3789");
INSERT INTO `wp_rg_form_view` VALUES("231", "6", "2014-08-14 21:00:11", "66.249.79.119", "740");
INSERT INTO `wp_rg_form_view` VALUES("232", "3", "2014-08-14 22:00:02", "176.9.34.171", "4269");
INSERT INTO `wp_rg_form_view` VALUES("233", "6", "2014-08-14 22:00:08", "66.249.79.119", "842");
INSERT INTO `wp_rg_form_view` VALUES("234", "3", "2014-08-14 23:00:00", "66.249.79.119", "6115");
INSERT INTO `wp_rg_form_view` VALUES("235", "6", "2014-08-14 23:00:03", "66.249.79.119", "1178");
INSERT INTO `wp_rg_form_view` VALUES("236", "1", "2014-08-14 23:17:09", "162.243.87.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("237", "3", "2014-08-15 00:00:00", "162.243.87.165", "4280");
INSERT INTO `wp_rg_form_view` VALUES("238", "6", "2014-08-15 00:00:02", "162.243.87.165", "794");
INSERT INTO `wp_rg_form_view` VALUES("239", "3", "2014-08-15 01:02:56", "66.249.79.132", "110");
INSERT INTO `wp_rg_form_view` VALUES("240", "6", "2014-08-15 01:02:59", "66.249.79.132", "22");
INSERT INTO `wp_rg_form_view` VALUES("241", "3", "2014-08-15 02:04:49", "66.249.79.145", "164");
INSERT INTO `wp_rg_form_view` VALUES("242", "6", "2014-08-15 02:04:50", "66.249.79.145", "32");
INSERT INTO `wp_rg_form_view` VALUES("243", "3", "2014-08-15 03:04:14", "66.249.79.145", "2134");
INSERT INTO `wp_rg_form_view` VALUES("244", "6", "2014-08-15 03:04:14", "66.249.79.145", "401");
INSERT INTO `wp_rg_form_view` VALUES("245", "2", "2014-08-15 03:22:24", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("246", "1", "2014-08-15 03:22:33", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("247", "3", "2014-08-15 04:03:23", "66.249.79.145", "142");
INSERT INTO `wp_rg_form_view` VALUES("248", "6", "2014-08-15 04:03:25", "66.249.79.145", "28");
INSERT INTO `wp_rg_form_view` VALUES("249", "3", "2014-08-15 05:08:44", "66.249.79.119", "84");
INSERT INTO `wp_rg_form_view` VALUES("250", "6", "2014-08-15 05:08:44", "66.249.79.119", "16");
INSERT INTO `wp_rg_form_view` VALUES("251", "3", "2014-08-15 06:03:00", "66.249.79.132", "140");
INSERT INTO `wp_rg_form_view` VALUES("252", "6", "2014-08-15 06:03:00", "66.249.79.132", "27");
INSERT INTO `wp_rg_form_view` VALUES("253", "3", "2014-08-15 07:00:14", "198.245.51.90", "1203");
INSERT INTO `wp_rg_form_view` VALUES("254", "6", "2014-08-15 07:01:25", "202.46.62.146", "227");
INSERT INTO `wp_rg_form_view` VALUES("255", "2", "2014-08-15 07:38:59", "198.23.174.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("256", "3", "2014-08-15 08:04:06", "66.249.79.145", "132");
INSERT INTO `wp_rg_form_view` VALUES("257", "6", "2014-08-15 08:04:07", "66.249.79.145", "26");
INSERT INTO `wp_rg_form_view` VALUES("258", "3", "2014-08-15 09:03:53", "66.249.79.145", "140");
INSERT INTO `wp_rg_form_view` VALUES("259", "6", "2014-08-15 09:03:54", "66.249.79.145", "28");
INSERT INTO `wp_rg_form_view` VALUES("260", "3", "2014-08-15 10:00:16", "66.249.79.145", "680");
INSERT INTO `wp_rg_form_view` VALUES("261", "6", "2014-08-15 10:00:17", "66.249.79.145", "134");
INSERT INTO `wp_rg_form_view` VALUES("262", "3", "2014-08-15 11:03:50", "66.249.79.132", "130");
INSERT INTO `wp_rg_form_view` VALUES("263", "6", "2014-08-15 11:03:51", "66.249.79.132", "26");
INSERT INTO `wp_rg_form_view` VALUES("264", "3", "2014-08-15 12:00:00", "198.27.82.147", "2312");
INSERT INTO `wp_rg_form_view` VALUES("265", "6", "2014-08-15 12:00:20", "66.249.79.132", "440");
INSERT INTO `wp_rg_form_view` VALUES("266", "3", "2014-08-15 13:02:05", "66.249.79.132", "118");
INSERT INTO `wp_rg_form_view` VALUES("267", "6", "2014-08-15 13:02:07", "66.249.79.132", "22");
INSERT INTO `wp_rg_form_view` VALUES("268", "3", "2014-08-15 14:04:22", "66.249.79.132", "1660");
INSERT INTO `wp_rg_form_view` VALUES("269", "6", "2014-08-15 14:04:23", "66.249.79.132", "326");
INSERT INTO `wp_rg_form_view` VALUES("270", "2", "2014-08-15 14:05:53", "174.140.166.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("271", "3", "2014-08-15 15:00:35", "66.249.79.119", "5669");
INSERT INTO `wp_rg_form_view` VALUES("272", "6", "2014-08-15 15:00:36", "66.249.79.119", "1112");
INSERT INTO `wp_rg_form_view` VALUES("273", "2", "2014-08-15 15:27:31", "192.240.220.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("274", "3", "2014-08-15 16:00:04", "66.249.79.119", "5967");
INSERT INTO `wp_rg_form_view` VALUES("275", "6", "2014-08-15 16:00:08", "66.249.79.119", "1145");
INSERT INTO `wp_rg_form_view` VALUES("276", "1", "2014-08-15 16:05:02", "54.87.225.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("277", "2", "2014-08-15 16:05:10", "54.167.38.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("278", "3", "2014-08-15 17:00:07", "66.249.79.132", "5636");
INSERT INTO `wp_rg_form_view` VALUES("279", "6", "2014-08-15 17:00:11", "66.249.79.132", "1116");
INSERT INTO `wp_rg_form_view` VALUES("280", "2", "2014-08-15 17:02:37", "208.89.209.107", "8");
INSERT INTO `wp_rg_form_view` VALUES("281", "3", "2014-08-15 18:00:00", "66.249.79.132", "5471");
INSERT INTO `wp_rg_form_view` VALUES("282", "6", "2014-08-15 18:00:02", "66.249.79.132", "1074");
INSERT INTO `wp_rg_form_view` VALUES("283", "2", "2014-08-15 18:01:40", "192.3.180.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("284", "3", "2014-08-15 19:00:03", "66.249.79.119", "5136");
INSERT INTO `wp_rg_form_view` VALUES("285", "6", "2014-08-15 19:00:06", "66.249.79.119", "1010");
INSERT INTO `wp_rg_form_view` VALUES("286", "2", "2014-08-15 19:19:02", "192.3.180.179", "6");
INSERT INTO `wp_rg_form_view` VALUES("287", "3", "2014-08-15 20:00:01", "66.249.79.132", "5676");
INSERT INTO `wp_rg_form_view` VALUES("288", "6", "2014-08-15 20:00:04", "66.249.79.132", "1124");
INSERT INTO `wp_rg_form_view` VALUES("289", "2", "2014-08-15 20:49:24", "192.240.220.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("290", "3", "2014-08-15 21:00:46", "66.249.79.119", "5451");
INSERT INTO `wp_rg_form_view` VALUES("291", "6", "2014-08-15 21:00:49", "66.249.79.119", "1080");
INSERT INTO `wp_rg_form_view` VALUES("292", "2", "2014-08-15 21:02:09", "204.27.60.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("293", "3", "2014-08-15 22:00:00", "66.249.79.119", "5399");
INSERT INTO `wp_rg_form_view` VALUES("294", "6", "2014-08-15 22:00:01", "66.249.79.119", "1068");
INSERT INTO `wp_rg_form_view` VALUES("295", "3", "2014-08-15 23:00:00", "66.249.79.132", "7949");
INSERT INTO `wp_rg_form_view` VALUES("296", "6", "2014-08-15 23:00:03", "66.249.79.132", "1570");
INSERT INTO `wp_rg_form_view` VALUES("297", "2", "2014-08-15 23:00:25", "192.34.58.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("298", "1", "2014-08-15 23:00:25", "192.34.58.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("299", "3", "2014-08-16 00:00:04", "66.249.79.132", "5338");
INSERT INTO `wp_rg_form_view` VALUES("300", "6", "2014-08-16 00:00:08", "66.249.79.132", "1048");
INSERT INTO `wp_rg_form_view` VALUES("301", "3", "2014-08-16 01:01:24", "66.249.79.132", "5152");
INSERT INTO `wp_rg_form_view` VALUES("302", "6", "2014-08-16 01:01:27", "66.249.79.132", "1020");
INSERT INTO `wp_rg_form_view` VALUES("303", "2", "2014-08-16 01:51:07", "204.27.60.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("304", "3", "2014-08-16 02:00:01", "66.249.79.119", "6345");
INSERT INTO `wp_rg_form_view` VALUES("305", "6", "2014-08-16 02:00:03", "66.249.79.119", "1228");
INSERT INTO `wp_rg_form_view` VALUES("306", "2", "2014-08-16 02:33:15", "174.140.166.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("307", "3", "2014-08-16 03:00:00", "66.249.79.145", "5871");
INSERT INTO `wp_rg_form_view` VALUES("308", "6", "2014-08-16 03:00:00", "198.100.146.192", "1180");
INSERT INTO `wp_rg_form_view` VALUES("309", "3", "2014-08-16 04:00:07", "66.249.79.119", "5124");
INSERT INTO `wp_rg_form_view` VALUES("310", "6", "2014-08-16 04:00:09", "66.249.79.119", "1008");
INSERT INTO `wp_rg_form_view` VALUES("311", "3", "2014-08-16 05:00:04", "66.249.79.145", "5380");
INSERT INTO `wp_rg_form_view` VALUES("312", "6", "2014-08-16 05:00:07", "66.249.79.145", "1062");
INSERT INTO `wp_rg_form_view` VALUES("313", "2", "2014-08-16 05:49:30", "62.210.139.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("314", "3", "2014-08-16 06:00:00", "66.249.79.119", "5499");
INSERT INTO `wp_rg_form_view` VALUES("315", "6", "2014-08-16 06:00:02", "66.249.79.119", "1088");
INSERT INTO `wp_rg_form_view` VALUES("316", "3", "2014-08-16 07:00:00", "66.249.79.119", "5417");
INSERT INTO `wp_rg_form_view` VALUES("317", "6", "2014-08-16 07:00:02", "66.249.79.119", "1070");
INSERT INTO `wp_rg_form_view` VALUES("318", "3", "2014-08-16 08:00:01", "66.249.79.119", "5541");
INSERT INTO `wp_rg_form_view` VALUES("319", "6", "2014-08-16 08:00:05", "66.249.79.119", "1088");
INSERT INTO `wp_rg_form_view` VALUES("320", "3", "2014-08-16 09:00:00", "66.249.79.132", "5991");
INSERT INTO `wp_rg_form_view` VALUES("321", "6", "2014-08-16 09:00:03", "66.249.79.132", "1180");
INSERT INTO `wp_rg_form_view` VALUES("322", "1", "2014-08-16 09:21:29", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("323", "2", "2014-08-16 09:22:05", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("324", "3", "2014-08-16 10:00:01", "66.249.79.119", "5322");
INSERT INTO `wp_rg_form_view` VALUES("325", "6", "2014-08-16 10:00:04", "66.249.79.119", "1050");
INSERT INTO `wp_rg_form_view` VALUES("326", "3", "2014-08-16 11:00:04", "66.249.79.119", "4507");
INSERT INTO `wp_rg_form_view` VALUES("327", "6", "2014-08-16 11:00:06", "66.249.79.119", "886");
INSERT INTO `wp_rg_form_view` VALUES("328", "3", "2014-08-16 12:00:00", "66.249.79.132", "6990");
INSERT INTO `wp_rg_form_view` VALUES("329", "6", "2014-08-16 12:00:01", "66.249.79.132", "1382");
INSERT INTO `wp_rg_form_view` VALUES("330", "3", "2014-08-16 13:00:00", "66.249.79.145", "5609");
INSERT INTO `wp_rg_form_view` VALUES("331", "6", "2014-08-16 13:00:00", "66.249.79.145", "1110");
INSERT INTO `wp_rg_form_view` VALUES("332", "3", "2014-08-16 14:00:00", "66.249.79.132", "5844");
INSERT INTO `wp_rg_form_view` VALUES("333", "6", "2014-08-16 14:00:01", "66.249.79.132", "1155");
INSERT INTO `wp_rg_form_view` VALUES("334", "1", "2014-08-16 14:09:00", "66.42.87.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("335", "2", "2014-08-16 14:09:16", "66.42.87.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("336", "3", "2014-08-16 15:00:00", "66.249.79.119", "5303");
INSERT INTO `wp_rg_form_view` VALUES("337", "6", "2014-08-16 15:00:02", "66.249.79.119", "1046");
INSERT INTO `wp_rg_form_view` VALUES("338", "3", "2014-08-16 16:00:09", "66.249.79.132", "5509");
INSERT INTO `wp_rg_form_view` VALUES("339", "6", "2014-08-16 16:00:11", "66.249.79.132", "1090");
INSERT INTO `wp_rg_form_view` VALUES("340", "3", "2014-08-16 17:00:00", "66.249.79.132", "5643");
INSERT INTO `wp_rg_form_view` VALUES("341", "6", "2014-08-16 17:00:02", "66.249.79.132", "1114");
INSERT INTO `wp_rg_form_view` VALUES("342", "3", "2014-08-16 18:00:03", "66.249.79.145", "5675");
INSERT INTO `wp_rg_form_view` VALUES("343", "6", "2014-08-16 18:00:05", "66.249.79.145", "1118");
INSERT INTO `wp_rg_form_view` VALUES("344", "3", "2014-08-16 19:00:00", "66.249.79.132", "6310");
INSERT INTO `wp_rg_form_view` VALUES("345", "6", "2014-08-16 19:00:02", "66.249.79.132", "1246");
INSERT INTO `wp_rg_form_view` VALUES("346", "3", "2014-08-16 20:00:00", "69.30.238.26", "6988");
INSERT INTO `wp_rg_form_view` VALUES("347", "6", "2014-08-16 20:00:01", "69.30.238.26", "1386");
INSERT INTO `wp_rg_form_view` VALUES("348", "3", "2014-08-16 21:00:00", "157.55.39.119", "5700");
INSERT INTO `wp_rg_form_view` VALUES("349", "6", "2014-08-16 21:00:06", "157.55.39.119", "1124");
INSERT INTO `wp_rg_form_view` VALUES("350", "3", "2014-08-16 22:00:01", "66.249.79.145", "5486");
INSERT INTO `wp_rg_form_view` VALUES("351", "6", "2014-08-16 22:00:03", "66.249.79.145", "1086");
INSERT INTO `wp_rg_form_view` VALUES("352", "3", "2014-08-16 23:00:03", "66.249.79.145", "5360");
INSERT INTO `wp_rg_form_view` VALUES("353", "6", "2014-08-16 23:00:06", "66.249.79.145", "1062");
INSERT INTO `wp_rg_form_view` VALUES("354", "3", "2014-08-17 00:00:06", "66.249.79.145", "6055");
INSERT INTO `wp_rg_form_view` VALUES("355", "6", "2014-08-17 00:00:09", "66.249.79.145", "1199");
INSERT INTO `wp_rg_form_view` VALUES("356", "1", "2014-08-17 00:56:16", "46.225.129.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("357", "2", "2014-08-17 00:56:39", "46.225.129.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("358", "3", "2014-08-17 01:00:04", "66.249.79.132", "5370");
INSERT INTO `wp_rg_form_view` VALUES("359", "6", "2014-08-17 01:00:06", "66.249.79.132", "1064");
INSERT INTO `wp_rg_form_view` VALUES("360", "2", "2014-08-17 01:07:17", "202.46.49.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("361", "3", "2014-08-17 02:00:01", "66.249.79.119", "6863");
INSERT INTO `wp_rg_form_view` VALUES("362", "6", "2014-08-17 02:00:03", "66.249.79.119", "1334");
INSERT INTO `wp_rg_form_view` VALUES("363", "3", "2014-08-17 03:00:00", "66.249.79.132", "4743");
INSERT INTO `wp_rg_form_view` VALUES("364", "6", "2014-08-17 03:00:02", "66.249.79.132", "940");
INSERT INTO `wp_rg_form_view` VALUES("365", "3", "2014-08-17 04:00:40", "66.249.79.145", "6158");
INSERT INTO `wp_rg_form_view` VALUES("366", "6", "2014-08-17 04:00:43", "66.249.79.145", "1222");
INSERT INTO `wp_rg_form_view` VALUES("367", "3", "2014-08-17 05:00:02", "66.249.79.132", "5547");
INSERT INTO `wp_rg_form_view` VALUES("368", "6", "2014-08-17 05:00:05", "66.249.79.132", "1098");
INSERT INTO `wp_rg_form_view` VALUES("369", "3", "2014-08-17 06:00:00", "66.249.79.132", "5872");
INSERT INTO `wp_rg_form_view` VALUES("370", "6", "2014-08-17 06:00:01", "66.249.79.132", "1164");
INSERT INTO `wp_rg_form_view` VALUES("371", "3", "2014-08-17 07:00:00", "66.249.79.132", "5743");
INSERT INTO `wp_rg_form_view` VALUES("372", "6", "2014-08-17 07:00:02", "66.249.79.132", "1131");
INSERT INTO `wp_rg_form_view` VALUES("373", "2", "2014-08-17 07:27:19", "66.249.79.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("374", "6", "2014-08-17 08:00:00", "66.249.79.145", "1155");
INSERT INTO `wp_rg_form_view` VALUES("375", "3", "2014-08-17 08:00:04", "66.249.79.145", "5847");
INSERT INTO `wp_rg_form_view` VALUES("376", "1", "2014-08-17 08:59:22", "192.81.218.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("377", "2", "2014-08-17 08:59:24", "192.81.218.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("378", "3", "2014-08-17 09:00:01", "66.249.79.145", "5817");
INSERT INTO `wp_rg_form_view` VALUES("379", "6", "2014-08-17 09:00:04", "66.249.79.145", "1148");
INSERT INTO `wp_rg_form_view` VALUES("380", "3", "2014-08-17 10:00:00", "66.249.79.145", "5825");
INSERT INTO `wp_rg_form_view` VALUES("381", "6", "2014-08-17 10:00:01", "66.249.79.145", "1154");
INSERT INTO `wp_rg_form_view` VALUES("382", "3", "2014-08-17 11:00:00", "66.249.79.132", "5352");
INSERT INTO `wp_rg_form_view` VALUES("383", "6", "2014-08-17 11:00:02", "66.249.79.132", "1058");
INSERT INTO `wp_rg_form_view` VALUES("384", "3", "2014-08-17 12:00:00", "66.249.79.119", "5516");
INSERT INTO `wp_rg_form_view` VALUES("385", "6", "2014-08-17 12:00:00", "66.249.79.119", "1098");
INSERT INTO `wp_rg_form_view` VALUES("386", "3", "2014-08-17 13:00:00", "66.249.79.132", "6372");
INSERT INTO `wp_rg_form_view` VALUES("387", "6", "2014-08-17 13:00:00", "66.249.79.132", "1258");
INSERT INTO `wp_rg_form_view` VALUES("388", "3", "2014-08-17 14:00:02", "144.76.95.39", "7474");
INSERT INTO `wp_rg_form_view` VALUES("389", "6", "2014-08-17 14:00:05", "144.76.95.39", "1446");
INSERT INTO `wp_rg_form_view` VALUES("390", "3", "2014-08-17 15:00:03", "66.249.79.132", "6726");
INSERT INTO `wp_rg_form_view` VALUES("391", "6", "2014-08-17 15:00:06", "66.249.79.132", "1288");
INSERT INTO `wp_rg_form_view` VALUES("392", "1", "2014-08-17 15:15:44", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("393", "2", "2014-08-17 15:58:13", "194.114.133.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("394", "3", "2014-08-17 16:00:00", "66.249.79.119", "5244");
INSERT INTO `wp_rg_form_view` VALUES("395", "6", "2014-08-17 16:00:03", "66.249.79.119", "1036");
INSERT INTO `wp_rg_form_view` VALUES("396", "3", "2014-08-17 17:00:10", "66.249.79.132", "5676");
INSERT INTO `wp_rg_form_view` VALUES("397", "6", "2014-08-17 17:00:13", "66.249.79.132", "1120");
INSERT INTO `wp_rg_form_view` VALUES("398", "2", "2014-08-17 17:22:04", "192.3.111.181", "4");
INSERT INTO `wp_rg_form_view` VALUES("399", "3", "2014-08-17 18:00:05", "66.249.79.145", "6492");
INSERT INTO `wp_rg_form_view` VALUES("400", "6", "2014-08-17 18:00:08", "66.249.79.145", "1285");
INSERT INTO `wp_rg_form_view` VALUES("401", "2", "2014-08-17 18:15:36", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("402", "3", "2014-08-17 19:00:00", "66.249.79.132", "7784");
INSERT INTO `wp_rg_form_view` VALUES("403", "6", "2014-08-17 19:00:00", "66.249.79.132", "1478");
INSERT INTO `wp_rg_form_view` VALUES("404", "2", "2014-08-17 19:07:49", "192.77.254.21", "4");
INSERT INTO `wp_rg_form_view` VALUES("405", "1", "2014-08-17 19:52:29", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("406", "3", "2014-08-17 20:00:00", "207.106.190.66", "6020");
INSERT INTO `wp_rg_form_view` VALUES("407", "6", "2014-08-17 20:00:00", "207.106.190.66", "1169");
INSERT INTO `wp_rg_form_view` VALUES("408", "2", "2014-08-17 20:00:04", "162.218.236.212", "4");
INSERT INTO `wp_rg_form_view` VALUES("409", "3", "2014-08-17 21:00:00", "66.249.79.132", "5686");
INSERT INTO `wp_rg_form_view` VALUES("410", "6", "2014-08-17 21:00:03", "66.249.79.132", "1120");
INSERT INTO `wp_rg_form_view` VALUES("411", "3", "2014-08-17 22:00:00", "66.249.79.145", "5423");
INSERT INTO `wp_rg_form_view` VALUES("412", "6", "2014-08-17 22:00:00", "66.249.79.145", "1074");
INSERT INTO `wp_rg_form_view` VALUES("413", "3", "2014-08-17 23:00:00", "66.249.79.119", "5833");
INSERT INTO `wp_rg_form_view` VALUES("414", "6", "2014-08-17 23:00:03", "66.249.79.119", "1158");
INSERT INTO `wp_rg_form_view` VALUES("415", "3", "2014-08-18 00:00:00", "66.249.79.145", "5690");
INSERT INTO `wp_rg_form_view` VALUES("416", "6", "2014-08-18 00:00:01", "66.249.79.145", "1127");
INSERT INTO `wp_rg_form_view` VALUES("417", "2", "2014-08-18 00:11:10", "192.3.111.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("418", "1", "2014-08-18 00:59:15", "95.252.192.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("419", "3", "2014-08-18 01:00:00", "95.252.192.34", "5315");
INSERT INTO `wp_rg_form_view` VALUES("420", "6", "2014-08-18 01:00:01", "66.249.79.119", "1048");
INSERT INTO `wp_rg_form_view` VALUES("421", "2", "2014-08-18 01:05:45", "172.245.214.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("422", "3", "2014-08-18 02:00:02", "66.249.79.132", "5572");
INSERT INTO `wp_rg_form_view` VALUES("423", "6", "2014-08-18 02:00:04", "66.249.79.132", "1100");
INSERT INTO `wp_rg_form_view` VALUES("424", "3", "2014-08-18 03:00:12", "66.249.79.145", "3761");
INSERT INTO `wp_rg_form_view` VALUES("425", "6", "2014-08-18 03:00:15", "66.249.79.145", "752");
INSERT INTO `wp_rg_form_view` VALUES("426", "2", "2014-08-18 03:05:53", "62.210.89.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("427", "3", "2014-08-18 04:00:00", "66.249.79.119", "6029");
INSERT INTO `wp_rg_form_view` VALUES("428", "6", "2014-08-18 04:00:02", "66.249.79.119", "1192");
INSERT INTO `wp_rg_form_view` VALUES("429", "3", "2014-08-18 05:00:00", "66.249.79.132", "5874");
INSERT INTO `wp_rg_form_view` VALUES("430", "6", "2014-08-18 05:00:01", "66.249.79.132", "1160");
INSERT INTO `wp_rg_form_view` VALUES("431", "3", "2014-08-18 06:00:00", "66.249.79.145", "5195");
INSERT INTO `wp_rg_form_view` VALUES("432", "6", "2014-08-18 06:00:03", "66.249.79.145", "1028");
INSERT INTO `wp_rg_form_view` VALUES("433", "3", "2014-08-18 07:00:00", "66.249.79.119", "5339");
INSERT INTO `wp_rg_form_view` VALUES("434", "6", "2014-08-18 07:00:03", "66.249.79.119", "1056");
INSERT INTO `wp_rg_form_view` VALUES("435", "3", "2014-08-18 08:00:03", "66.249.79.119", "5922");
INSERT INTO `wp_rg_form_view` VALUES("436", "6", "2014-08-18 08:00:05", "66.249.79.119", "1173");
INSERT INTO `wp_rg_form_view` VALUES("437", "6", "2014-08-18 09:00:00", "66.249.79.132", "1105");
INSERT INTO `wp_rg_form_view` VALUES("438", "3", "2014-08-18 09:00:02", "66.249.79.132", "5569");
INSERT INTO `wp_rg_form_view` VALUES("439", "3", "2014-08-18 10:00:00", "66.249.79.119", "5795");
INSERT INTO `wp_rg_form_view` VALUES("440", "6", "2014-08-18 10:00:02", "66.249.79.119", "1150");
INSERT INTO `wp_rg_form_view` VALUES("441", "1", "2014-08-18 10:13:30", "217.115.50.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("442", "3", "2014-08-18 11:00:01", "66.249.79.132", "7563");
INSERT INTO `wp_rg_form_view` VALUES("443", "6", "2014-08-18 11:00:05", "66.249.79.132", "1490");
INSERT INTO `wp_rg_form_view` VALUES("444", "3", "2014-08-18 12:00:00", "66.249.79.119", "5135");
INSERT INTO `wp_rg_form_view` VALUES("445", "6", "2014-08-18 12:00:00", "66.249.79.119", "1018");
INSERT INTO `wp_rg_form_view` VALUES("446", "1", "2014-08-18 12:00:33", "157.55.39.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("447", "2", "2014-08-18 12:00:37", "157.55.39.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("448", "6", "2014-08-18 13:00:00", "66.249.79.132", "1186");
INSERT INTO `wp_rg_form_view` VALUES("449", "3", "2014-08-18 13:00:01", "66.249.79.145", "5968");
INSERT INTO `wp_rg_form_view` VALUES("450", "3", "2014-08-18 14:00:03", "66.249.79.145", "5736");
INSERT INTO `wp_rg_form_view` VALUES("451", "6", "2014-08-18 14:00:06", "66.249.79.145", "1138");
INSERT INTO `wp_rg_form_view` VALUES("452", "3", "2014-08-18 15:00:00", "66.249.79.132", "5459");
INSERT INTO `wp_rg_form_view` VALUES("453", "6", "2014-08-18 15:00:04", "66.249.79.132", "1050");
INSERT INTO `wp_rg_form_view` VALUES("454", "3", "2014-08-18 16:00:00", "66.249.79.145", "5690");
INSERT INTO `wp_rg_form_view` VALUES("455", "6", "2014-08-18 16:00:04", "66.249.79.145", "1118");
INSERT INTO `wp_rg_form_view` VALUES("456", "3", "2014-08-18 17:00:03", "66.249.79.145", "5738");
INSERT INTO `wp_rg_form_view` VALUES("457", "6", "2014-08-18 17:00:06", "66.249.79.145", "1142");
INSERT INTO `wp_rg_form_view` VALUES("458", "1", "2014-08-18 17:55:51", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("459", "3", "2014-08-18 18:00:00", "66.249.79.145", "5726");
INSERT INTO `wp_rg_form_view` VALUES("460", "6", "2014-08-18 18:00:02", "66.249.79.145", "1134");
INSERT INTO `wp_rg_form_view` VALUES("461", "3", "2014-08-18 19:00:00", "66.249.79.119", "5695");
INSERT INTO `wp_rg_form_view` VALUES("462", "6", "2014-08-18 19:00:07", "66.249.79.119", "1122");
INSERT INTO `wp_rg_form_view` VALUES("463", "1", "2014-08-18 19:19:42", "184.151.231.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("464", "3", "2014-08-18 20:00:00", "95.91.6.78", "3763");
INSERT INTO `wp_rg_form_view` VALUES("465", "6", "2014-08-18 20:00:03", "95.91.6.78", "748");
INSERT INTO `wp_rg_form_view` VALUES("466", "3", "2014-08-18 21:00:16", "66.249.79.119", "4814");
INSERT INTO `wp_rg_form_view` VALUES("467", "6", "2014-08-18 21:00:19", "66.249.79.119", "952");
INSERT INTO `wp_rg_form_view` VALUES("468", "3", "2014-08-18 22:00:06", "66.249.79.145", "3948");
INSERT INTO `wp_rg_form_view` VALUES("469", "6", "2014-08-18 22:00:09", "66.249.79.145", "778");
INSERT INTO `wp_rg_form_view` VALUES("470", "3", "2014-08-18 23:00:01", "66.249.79.145", "4057");
INSERT INTO `wp_rg_form_view` VALUES("471", "6", "2014-08-18 23:00:03", "66.249.79.145", "798");
INSERT INTO `wp_rg_form_view` VALUES("472", "3", "2014-08-19 00:00:00", "144.76.95.232", "2391");
INSERT INTO `wp_rg_form_view` VALUES("473", "6", "2014-08-19 00:00:01", "144.76.95.232", "474");
INSERT INTO `wp_rg_form_view` VALUES("474", "3", "2014-08-19 01:00:19", "66.249.79.119", "2685");
INSERT INTO `wp_rg_form_view` VALUES("475", "6", "2014-08-19 01:00:20", "66.249.79.119", "532");
INSERT INTO `wp_rg_form_view` VALUES("476", "3", "2014-08-19 02:00:02", "66.249.79.145", "3392");
INSERT INTO `wp_rg_form_view` VALUES("477", "6", "2014-08-19 02:00:04", "66.249.79.145", "674");
INSERT INTO `wp_rg_form_view` VALUES("478", "1", "2014-08-19 02:10:52", "208.43.251.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("479", "2", "2014-08-19 02:33:10", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("480", "3", "2014-08-19 03:00:40", "66.249.79.132", "3291");
INSERT INTO `wp_rg_form_view` VALUES("481", "6", "2014-08-19 03:00:43", "66.249.79.132", "652");
INSERT INTO `wp_rg_form_view` VALUES("482", "3", "2014-08-19 04:00:00", "66.249.79.119", "3360");
INSERT INTO `wp_rg_form_view` VALUES("483", "6", "2014-08-19 04:00:03", "66.249.79.119", "668");
INSERT INTO `wp_rg_form_view` VALUES("484", "3", "2014-08-19 05:01:17", "66.249.79.132", "3411");
INSERT INTO `wp_rg_form_view` VALUES("485", "6", "2014-08-19 05:01:19", "66.249.79.132", "676");
INSERT INTO `wp_rg_form_view` VALUES("486", "3", "2014-08-19 06:00:46", "66.249.79.145", "3549");
INSERT INTO `wp_rg_form_view` VALUES("487", "6", "2014-08-19 06:00:48", "66.249.79.145", "702");
INSERT INTO `wp_rg_form_view` VALUES("488", "3", "2014-08-19 07:00:16", "66.249.79.145", "4140");
INSERT INTO `wp_rg_form_view` VALUES("489", "6", "2014-08-19 07:00:18", "66.249.79.145", "820");
INSERT INTO `wp_rg_form_view` VALUES("490", "3", "2014-08-19 08:00:00", "66.249.79.119", "3508");
INSERT INTO `wp_rg_form_view` VALUES("491", "6", "2014-08-19 08:00:00", "66.249.79.119", "696");
INSERT INTO `wp_rg_form_view` VALUES("492", "3", "2014-08-19 09:00:55", "66.249.79.132", "1758");
INSERT INTO `wp_rg_form_view` VALUES("493", "6", "2014-08-19 09:00:57", "66.249.79.132", "348");
INSERT INTO `wp_rg_form_view` VALUES("494", "3", "2014-08-19 10:00:27", "66.249.79.132", "1954");
INSERT INTO `wp_rg_form_view` VALUES("495", "6", "2014-08-19 10:00:28", "66.249.79.132", "390");
INSERT INTO `wp_rg_form_view` VALUES("496", "3", "2014-08-19 11:00:06", "66.249.79.119", "4198");
INSERT INTO `wp_rg_form_view` VALUES("497", "6", "2014-08-19 11:00:07", "66.249.79.119", "782");
INSERT INTO `wp_rg_form_view` VALUES("498", "3", "2014-08-19 12:00:05", "66.249.79.119", "1260");
INSERT INTO `wp_rg_form_view` VALUES("499", "6", "2014-08-19 12:00:07", "66.249.79.119", "250");
INSERT INTO `wp_rg_form_view` VALUES("500", "3", "2014-08-19 13:00:11", "66.249.79.119", "2096");
INSERT INTO `wp_rg_form_view` VALUES("501", "6", "2014-08-19 13:00:12", "66.249.79.119", "416");
INSERT INTO `wp_rg_form_view` VALUES("502", "3", "2014-08-19 14:00:51", "66.249.79.132", "3478");
INSERT INTO `wp_rg_form_view` VALUES("503", "6", "2014-08-19 14:00:53", "66.249.79.132", "688");
INSERT INTO `wp_rg_form_view` VALUES("504", "3", "2014-08-19 15:00:01", "198.27.82.146", "5170");
INSERT INTO `wp_rg_form_view` VALUES("505", "6", "2014-08-19 15:00:03", "198.27.82.146", "1024");
INSERT INTO `wp_rg_form_view` VALUES("506", "3", "2014-08-19 16:00:49", "66.249.69.124", "1810");
INSERT INTO `wp_rg_form_view` VALUES("507", "6", "2014-08-19 16:00:52", "66.249.69.124", "360");
INSERT INTO `wp_rg_form_view` VALUES("508", "3", "2014-08-19 17:00:06", "66.249.69.108", "2028");
INSERT INTO `wp_rg_form_view` VALUES("509", "6", "2014-08-19 17:00:07", "66.249.69.108", "402");
INSERT INTO `wp_rg_form_view` VALUES("510", "3", "2014-08-19 18:02:13", "66.249.69.124", "1928");
INSERT INTO `wp_rg_form_view` VALUES("511", "6", "2014-08-19 18:02:14", "66.249.69.124", "384");
INSERT INTO `wp_rg_form_view` VALUES("512", "3", "2014-08-19 19:00:03", "66.249.69.92", "3074");
INSERT INTO `wp_rg_form_view` VALUES("513", "6", "2014-08-19 19:00:05", "66.249.69.92", "608");
INSERT INTO `wp_rg_form_view` VALUES("514", "1", "2014-08-19 19:45:40", "36.248.162.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("515", "3", "2014-08-19 20:00:37", "66.249.69.124", "5024");
INSERT INTO `wp_rg_form_view` VALUES("516", "6", "2014-08-19 20:00:39", "66.249.69.124", "994");
INSERT INTO `wp_rg_form_view` VALUES("517", "3", "2014-08-19 21:02:19", "66.249.69.108", "3802");
INSERT INTO `wp_rg_form_view` VALUES("518", "6", "2014-08-19 21:02:22", "66.249.69.108", "746");
INSERT INTO `wp_rg_form_view` VALUES("519", "6", "2014-08-19 22:00:00", "66.249.69.92", "996");
INSERT INTO `wp_rg_form_view` VALUES("520", "3", "2014-08-19 22:00:17", "66.249.69.124", "5034");
INSERT INTO `wp_rg_form_view` VALUES("521", "3", "2014-08-19 23:00:00", "66.249.69.124", "5092");
INSERT INTO `wp_rg_form_view` VALUES("522", "6", "2014-08-19 23:00:03", "66.249.69.124", "1010");
INSERT INTO `wp_rg_form_view` VALUES("523", "3", "2014-08-20 00:00:06", "66.249.69.108", "2307");
INSERT INTO `wp_rg_form_view` VALUES("524", "6", "2014-08-20 00:00:09", "66.249.69.108", "452");
INSERT INTO `wp_rg_form_view` VALUES("525", "1", "2014-08-20 00:28:16", "5.10.104.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("526", "3", "2014-08-20 01:00:00", "66.249.69.124", "6652");
INSERT INTO `wp_rg_form_view` VALUES("527", "6", "2014-08-20 01:00:00", "66.249.69.124", "1316");
INSERT INTO `wp_rg_form_view` VALUES("528", "3", "2014-08-20 02:00:00", "69.30.238.26", "2969");
INSERT INTO `wp_rg_form_view` VALUES("529", "6", "2014-08-20 02:00:03", "69.30.238.26", "578");
INSERT INTO `wp_rg_form_view` VALUES("530", "3", "2014-08-20 03:00:15", "66.249.69.124", "2275");
INSERT INTO `wp_rg_form_view` VALUES("531", "6", "2014-08-20 03:00:17", "66.249.69.124", "446");
INSERT INTO `wp_rg_form_view` VALUES("532", "3", "2014-08-20 04:00:09", "66.249.69.108", "3014");
INSERT INTO `wp_rg_form_view` VALUES("533", "6", "2014-08-20 04:00:10", "66.249.69.108", "594");
INSERT INTO `wp_rg_form_view` VALUES("534", "3", "2014-08-20 05:03:10", "66.249.69.92", "3696");
INSERT INTO `wp_rg_form_view` VALUES("535", "6", "2014-08-20 05:03:12", "66.249.69.92", "738");
INSERT INTO `wp_rg_form_view` VALUES("536", "3", "2014-08-20 06:00:03", "66.249.69.92", "3376");
INSERT INTO `wp_rg_form_view` VALUES("537", "6", "2014-08-20 06:00:05", "66.249.69.92", "668");
INSERT INTO `wp_rg_form_view` VALUES("538", "3", "2014-08-20 07:00:00", "66.249.69.92", "3802");
INSERT INTO `wp_rg_form_view` VALUES("539", "6", "2014-08-20 07:00:02", "66.249.69.92", "754");
INSERT INTO `wp_rg_form_view` VALUES("540", "3", "2014-08-20 08:00:10", "66.249.69.124", "3921");
INSERT INTO `wp_rg_form_view` VALUES("541", "6", "2014-08-20 08:00:12", "66.249.69.124", "776");
INSERT INTO `wp_rg_form_view` VALUES("542", "3", "2014-08-20 09:00:45", "66.249.69.108", "3920");
INSERT INTO `wp_rg_form_view` VALUES("543", "6", "2014-08-20 09:00:47", "66.249.69.108", "776");
INSERT INTO `wp_rg_form_view` VALUES("544", "3", "2014-08-20 10:00:00", "66.249.69.108", "4714");
INSERT INTO `wp_rg_form_view` VALUES("545", "6", "2014-08-20 10:00:02", "66.249.69.108", "936");
INSERT INTO `wp_rg_form_view` VALUES("546", "3", "2014-08-20 11:00:25", "66.249.69.108", "3651");
INSERT INTO `wp_rg_form_view` VALUES("547", "6", "2014-08-20 11:00:27", "66.249.69.108", "726");
INSERT INTO `wp_rg_form_view` VALUES("548", "3", "2014-08-20 12:00:05", "66.249.69.124", "3325");
INSERT INTO `wp_rg_form_view` VALUES("549", "6", "2014-08-20 12:00:07", "66.249.69.124", "658");
INSERT INTO `wp_rg_form_view` VALUES("550", "3", "2014-08-20 13:00:00", "66.249.69.108", "4478");
INSERT INTO `wp_rg_form_view` VALUES("551", "6", "2014-08-20 13:00:00", "66.249.69.108", "888");
INSERT INTO `wp_rg_form_view` VALUES("552", "3", "2014-08-20 14:01:37", "66.249.73.73", "3434");
INSERT INTO `wp_rg_form_view` VALUES("553", "6", "2014-08-20 14:01:39", "66.249.73.73", "678");
INSERT INTO `wp_rg_form_view` VALUES("554", "3", "2014-08-20 15:00:30", "66.249.73.73", "5566");
INSERT INTO `wp_rg_form_view` VALUES("555", "6", "2014-08-20 15:00:32", "66.249.73.73", "1102");
INSERT INTO `wp_rg_form_view` VALUES("556", "6", "2014-08-20 16:00:00", "66.249.73.73", "1230");
INSERT INTO `wp_rg_form_view` VALUES("557", "3", "2014-08-20 16:00:02", "66.249.73.73", "6231");
INSERT INTO `wp_rg_form_view` VALUES("558", "3", "2014-08-20 17:00:02", "144.76.95.39", "5893");
INSERT INTO `wp_rg_form_view` VALUES("559", "6", "2014-08-20 17:00:06", "144.76.95.39", "1172");
INSERT INTO `wp_rg_form_view` VALUES("560", "3", "2014-08-20 18:00:00", "144.76.95.232", "2993");
INSERT INTO `wp_rg_form_view` VALUES("561", "6", "2014-08-20 18:00:02", "144.76.95.232", "594");
INSERT INTO `wp_rg_form_view` VALUES("562", "3", "2014-08-20 19:01:12", "66.249.73.73", "3278");
INSERT INTO `wp_rg_form_view` VALUES("563", "6", "2014-08-20 19:01:14", "66.249.73.73", "648");
INSERT INTO `wp_rg_form_view` VALUES("564", "3", "2014-08-20 20:02:49", "66.249.73.73", "2904");
INSERT INTO `wp_rg_form_view` VALUES("565", "6", "2014-08-20 20:02:51", "66.249.73.73", "576");
INSERT INTO `wp_rg_form_view` VALUES("566", "6", "2014-08-20 21:00:00", "66.249.73.73", "638");
INSERT INTO `wp_rg_form_view` VALUES("567", "3", "2014-08-20 21:00:29", "66.249.73.73", "3220");
INSERT INTO `wp_rg_form_view` VALUES("568", "3", "2014-08-20 22:00:00", "66.249.73.73", "2982");
INSERT INTO `wp_rg_form_view` VALUES("569", "6", "2014-08-20 22:00:02", "66.249.73.73", "590");
INSERT INTO `wp_rg_form_view` VALUES("570", "3", "2014-08-20 23:00:03", "66.249.73.73", "2792");
INSERT INTO `wp_rg_form_view` VALUES("571", "6", "2014-08-20 23:00:05", "66.249.73.73", "550");
INSERT INTO `wp_rg_form_view` VALUES("572", "1", "2014-08-20 23:21:37", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("573", "3", "2014-08-21 00:00:02", "66.249.73.73", "4511");
INSERT INTO `wp_rg_form_view` VALUES("574", "6", "2014-08-21 00:00:04", "66.249.73.73", "894");
INSERT INTO `wp_rg_form_view` VALUES("575", "3", "2014-08-21 01:00:00", "66.249.73.73", "3515");
INSERT INTO `wp_rg_form_view` VALUES("576", "6", "2014-08-21 01:00:02", "66.249.73.73", "698");
INSERT INTO `wp_rg_form_view` VALUES("577", "3", "2014-08-21 02:00:03", "66.249.65.76", "2192");
INSERT INTO `wp_rg_form_view` VALUES("578", "6", "2014-08-21 02:00:04", "66.249.65.76", "430");
INSERT INTO `wp_rg_form_view` VALUES("579", "3", "2014-08-21 03:00:46", "66.249.65.76", "3216");
INSERT INTO `wp_rg_form_view` VALUES("580", "6", "2014-08-21 03:00:48", "66.249.65.76", "638");
INSERT INTO `wp_rg_form_view` VALUES("581", "3", "2014-08-21 04:00:06", "66.249.65.76", "2788");
INSERT INTO `wp_rg_form_view` VALUES("582", "6", "2014-08-21 04:00:08", "66.249.65.76", "554");
INSERT INTO `wp_rg_form_view` VALUES("583", "3", "2014-08-21 05:00:05", "66.249.65.76", "2784");
INSERT INTO `wp_rg_form_view` VALUES("584", "6", "2014-08-21 05:00:07", "66.249.65.76", "550");
INSERT INTO `wp_rg_form_view` VALUES("585", "3", "2014-08-21 06:00:05", "66.249.65.84", "2750");
INSERT INTO `wp_rg_form_view` VALUES("586", "6", "2014-08-21 06:00:07", "66.249.65.84", "552");
INSERT INTO `wp_rg_form_view` VALUES("587", "3", "2014-08-21 07:00:06", "66.249.65.84", "3096");
INSERT INTO `wp_rg_form_view` VALUES("588", "6", "2014-08-21 07:00:08", "66.249.65.84", "610");
INSERT INTO `wp_rg_form_view` VALUES("589", "3", "2014-08-21 08:00:00", "66.249.65.84", "3628");
INSERT INTO `wp_rg_form_view` VALUES("590", "6", "2014-08-21 08:00:01", "66.249.65.84", "714");
INSERT INTO `wp_rg_form_view` VALUES("591", "3", "2014-08-21 09:00:09", "66.249.65.84", "3864");
INSERT INTO `wp_rg_form_view` VALUES("592", "6", "2014-08-21 09:00:11", "66.249.65.84", "764");
INSERT INTO `wp_rg_form_view` VALUES("593", "3", "2014-08-21 10:00:01", "66.249.65.76", "4140");
INSERT INTO `wp_rg_form_view` VALUES("594", "6", "2014-08-21 10:00:04", "66.249.65.76", "822");
INSERT INTO `wp_rg_form_view` VALUES("595", "6", "2014-08-21 11:00:00", "66.249.65.92", "842");
INSERT INTO `wp_rg_form_view` VALUES("596", "3", "2014-08-21 11:00:02", "66.249.65.76", "4244");
INSERT INTO `wp_rg_form_view` VALUES("597", "3", "2014-08-21 12:00:00", "66.249.65.76", "3556");
INSERT INTO `wp_rg_form_view` VALUES("598", "6", "2014-08-21 12:00:00", "66.249.65.76", "704");
INSERT INTO `wp_rg_form_view` VALUES("599", "3", "2014-08-21 13:00:04", "66.249.65.92", "2894");
INSERT INTO `wp_rg_form_view` VALUES("600", "6", "2014-08-21 13:00:06", "66.249.65.92", "572");
INSERT INTO `wp_rg_form_view` VALUES("601", "3", "2014-08-21 14:00:59", "66.249.65.84", "2526");
INSERT INTO `wp_rg_form_view` VALUES("602", "6", "2014-08-21 14:01:01", "66.249.65.84", "497");
INSERT INTO `wp_rg_form_view` VALUES("603", "6", "2014-08-21 15:00:00", "69.64.41.236", "915");
INSERT INTO `wp_rg_form_view` VALUES("604", "3", "2014-08-21 15:00:03", "69.64.41.236", "4596");
INSERT INTO `wp_rg_form_view` VALUES("605", "3", "2014-08-21 16:01:38", "66.249.67.132", "4128");
INSERT INTO `wp_rg_form_view` VALUES("606", "6", "2014-08-21 16:01:45", "66.249.67.132", "820");
INSERT INTO `wp_rg_form_view` VALUES("607", "3", "2014-08-21 17:00:05", "142.4.213.178", "5224");
INSERT INTO `wp_rg_form_view` VALUES("608", "6", "2014-08-21 17:00:07", "142.4.213.178", "1040");
INSERT INTO `wp_rg_form_view` VALUES("609", "3", "2014-08-21 18:00:01", "66.249.67.119", "6490");
INSERT INTO `wp_rg_form_view` VALUES("610", "6", "2014-08-21 18:00:04", "66.249.67.119", "1284");
INSERT INTO `wp_rg_form_view` VALUES("611", "3", "2014-08-21 19:00:16", "66.249.67.132", "5759");
INSERT INTO `wp_rg_form_view` VALUES("612", "6", "2014-08-21 19:00:21", "66.249.67.132", "1142");
INSERT INTO `wp_rg_form_view` VALUES("613", "3", "2014-08-21 20:00:02", "66.249.67.119", "8712");
INSERT INTO `wp_rg_form_view` VALUES("614", "6", "2014-08-21 20:00:05", "66.249.67.119", "1723");
INSERT INTO `wp_rg_form_view` VALUES("615", "6", "2014-08-21 21:00:00", "66.249.67.132", "1549");
INSERT INTO `wp_rg_form_view` VALUES("616", "3", "2014-08-21 21:00:00", "66.249.67.132", "7829");
INSERT INTO `wp_rg_form_view` VALUES("617", "3", "2014-08-21 22:00:00", "66.249.67.132", "7549");
INSERT INTO `wp_rg_form_view` VALUES("618", "6", "2014-08-21 22:00:00", "66.249.67.145", "1492");
INSERT INTO `wp_rg_form_view` VALUES("619", "1", "2014-08-21 22:39:17", "198.211.110.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("620", "2", "2014-08-21 22:39:17", "198.211.110.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("621", "3", "2014-08-21 23:00:00", "66.249.67.145", "7852");
INSERT INTO `wp_rg_form_view` VALUES("622", "6", "2014-08-21 23:00:01", "66.249.67.145", "1554");
INSERT INTO `wp_rg_form_view` VALUES("623", "1", "2014-08-21 23:19:36", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("624", "2", "2014-08-21 23:20:21", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("625", "3", "2014-08-22 00:00:00", "66.249.67.119", "7751");
INSERT INTO `wp_rg_form_view` VALUES("626", "6", "2014-08-22 00:00:00", "66.249.67.119", "1536");
INSERT INTO `wp_rg_form_view` VALUES("627", "3", "2014-08-22 01:00:00", "66.249.67.145", "7155");
INSERT INTO `wp_rg_form_view` VALUES("628", "6", "2014-08-22 01:00:02", "66.249.67.145", "1420");
INSERT INTO `wp_rg_form_view` VALUES("629", "3", "2014-08-22 02:00:02", "66.249.67.132", "6695");
INSERT INTO `wp_rg_form_view` VALUES("630", "6", "2014-08-22 02:00:05", "66.249.67.132", "1320");
INSERT INTO `wp_rg_form_view` VALUES("631", "3", "2014-08-22 03:00:00", "66.249.67.132", "7599");
INSERT INTO `wp_rg_form_view` VALUES("632", "6", "2014-08-22 03:00:02", "66.249.67.132", "1504");
INSERT INTO `wp_rg_form_view` VALUES("633", "3", "2014-08-22 04:00:01", "66.249.67.132", "7576");
INSERT INTO `wp_rg_form_view` VALUES("634", "6", "2014-08-22 04:00:05", "66.249.67.132", "1496");
INSERT INTO `wp_rg_form_view` VALUES("635", "3", "2014-08-22 05:00:01", "66.249.67.132", "7432");
INSERT INTO `wp_rg_form_view` VALUES("636", "6", "2014-08-22 05:00:05", "66.249.67.132", "1472");
INSERT INTO `wp_rg_form_view` VALUES("637", "3", "2014-08-22 06:00:00", "66.249.67.119", "7254");
INSERT INTO `wp_rg_form_view` VALUES("638", "6", "2014-08-22 06:00:03", "66.249.67.119", "1438");
INSERT INTO `wp_rg_form_view` VALUES("639", "3", "2014-08-22 07:00:00", "66.249.67.145", "8127");
INSERT INTO `wp_rg_form_view` VALUES("640", "6", "2014-08-22 07:00:01", "66.249.67.145", "1596");
INSERT INTO `wp_rg_form_view` VALUES("641", "2", "2014-08-22 07:42:38", "192.34.61.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("642", "1", "2014-08-22 07:42:38", "192.34.61.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("643", "3", "2014-08-22 08:00:00", "66.249.67.145", "6845");
INSERT INTO `wp_rg_form_view` VALUES("644", "6", "2014-08-22 08:00:03", "66.249.67.145", "1349");
INSERT INTO `wp_rg_form_view` VALUES("645", "1", "2014-08-22 08:57:29", "66.249.67.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("646", "6", "2014-08-22 09:00:00", "66.249.67.132", "1291");
INSERT INTO `wp_rg_form_view` VALUES("647", "3", "2014-08-22 09:00:01", "66.249.67.119", "6526");
INSERT INTO `wp_rg_form_view` VALUES("648", "1", "2014-08-22 09:29:54", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("649", "2", "2014-08-22 09:30:00", "192.99.8.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("650", "3", "2014-08-22 10:00:00", "66.249.67.119", "6215");
INSERT INTO `wp_rg_form_view` VALUES("651", "6", "2014-08-22 10:00:01", "66.249.67.119", "1228");
INSERT INTO `wp_rg_form_view` VALUES("652", "3", "2014-08-22 11:00:00", "66.249.67.119", "3560");
INSERT INTO `wp_rg_form_view` VALUES("653", "6", "2014-08-22 11:00:03", "66.249.67.119", "702");
INSERT INTO `wp_rg_form_view` VALUES("654", "3", "2014-08-22 12:02:08", "66.249.67.132", "3625");
INSERT INTO `wp_rg_form_view` VALUES("655", "6", "2014-08-22 12:02:10", "66.249.67.132", "718");
INSERT INTO `wp_rg_form_view` VALUES("656", "3", "2014-08-22 13:00:01", "66.249.67.132", "6723");
INSERT INTO `wp_rg_form_view` VALUES("657", "6", "2014-08-22 13:00:03", "66.249.67.132", "1334");
INSERT INTO `wp_rg_form_view` VALUES("658", "3", "2014-08-22 14:00:00", "66.249.67.119", "6703");
INSERT INTO `wp_rg_form_view` VALUES("659", "6", "2014-08-22 14:00:02", "66.249.67.119", "1328");
INSERT INTO `wp_rg_form_view` VALUES("660", "3", "2014-08-22 15:00:00", "66.249.79.119", "6444");
INSERT INTO `wp_rg_form_view` VALUES("661", "6", "2014-08-22 15:00:03", "66.249.79.119", "1274");
INSERT INTO `wp_rg_form_view` VALUES("662", "3", "2014-08-22 16:00:00", "66.249.79.132", "6449");
INSERT INTO `wp_rg_form_view` VALUES("663", "6", "2014-08-22 16:00:04", "66.249.79.132", "1274");
INSERT INTO `wp_rg_form_view` VALUES("664", "1", "2014-08-22 16:48:43", "222.94.145.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("665", "3", "2014-08-22 17:00:00", "66.249.79.132", "6376");
INSERT INTO `wp_rg_form_view` VALUES("666", "6", "2014-08-22 17:00:02", "66.249.79.132", "1262");
INSERT INTO `wp_rg_form_view` VALUES("667", "3", "2014-08-22 18:00:03", "66.249.79.119", "6264");
INSERT INTO `wp_rg_form_view` VALUES("668", "6", "2014-08-22 18:00:06", "66.249.79.119", "1232");
INSERT INTO `wp_rg_form_view` VALUES("669", "3", "2014-08-22 19:00:01", "66.249.79.145", "5856");
INSERT INTO `wp_rg_form_view` VALUES("670", "6", "2014-08-22 19:00:04", "66.249.79.145", "1156");
INSERT INTO `wp_rg_form_view` VALUES("671", "3", "2014-08-22 20:00:00", "66.249.79.145", "6034");
INSERT INTO `wp_rg_form_view` VALUES("672", "6", "2014-08-22 20:00:03", "66.249.79.145", "1198");
INSERT INTO `wp_rg_form_view` VALUES("673", "3", "2014-08-22 21:00:01", "66.249.79.145", "5870");
INSERT INTO `wp_rg_form_view` VALUES("674", "6", "2014-08-22 21:00:05", "66.249.79.145", "1162");
INSERT INTO `wp_rg_form_view` VALUES("675", "3", "2014-08-22 22:00:01", "66.249.79.145", "5834");
INSERT INTO `wp_rg_form_view` VALUES("676", "6", "2014-08-22 22:00:05", "66.249.79.145", "1151");
INSERT INTO `wp_rg_form_view` VALUES("677", "6", "2014-08-22 23:00:00", "66.249.79.145", "511");
INSERT INTO `wp_rg_form_view` VALUES("678", "3", "2014-08-22 23:00:03", "66.249.79.119", "2562");
INSERT INTO `wp_rg_form_view` VALUES("679", "3", "2014-08-23 00:01:23", "66.249.79.132", "2228");
INSERT INTO `wp_rg_form_view` VALUES("680", "6", "2014-08-23 00:01:25", "66.249.79.132", "444");
INSERT INTO `wp_rg_form_view` VALUES("681", "3", "2014-08-23 01:00:03", "66.249.79.145", "6354");
INSERT INTO `wp_rg_form_view` VALUES("682", "6", "2014-08-23 01:00:04", "66.249.79.145", "1260");
INSERT INTO `wp_rg_form_view` VALUES("683", "3", "2014-08-23 02:00:00", "66.249.79.145", "6356");
INSERT INTO `wp_rg_form_view` VALUES("684", "6", "2014-08-23 02:00:04", "66.249.79.145", "1253");
INSERT INTO `wp_rg_form_view` VALUES("685", "6", "2014-08-23 03:00:00", "66.249.79.119", "1271");
INSERT INTO `wp_rg_form_view` VALUES("686", "3", "2014-08-23 03:00:02", "66.249.79.132", "6409");
INSERT INTO `wp_rg_form_view` VALUES("687", "3", "2014-08-23 04:00:00", "66.249.79.119", "6497");
INSERT INTO `wp_rg_form_view` VALUES("688", "6", "2014-08-23 04:00:03", "66.249.79.119", "1294");
INSERT INTO `wp_rg_form_view` VALUES("689", "3", "2014-08-23 05:00:23", "66.249.79.132", "6248");
INSERT INTO `wp_rg_form_view` VALUES("690", "6", "2014-08-23 05:00:26", "66.249.79.132", "1238");
INSERT INTO `wp_rg_form_view` VALUES("691", "3", "2014-08-23 06:00:00", "66.249.79.145", "5642");
INSERT INTO `wp_rg_form_view` VALUES("692", "6", "2014-08-23 06:00:00", "66.249.79.145", "1118");
INSERT INTO `wp_rg_form_view` VALUES("693", "3", "2014-08-23 07:00:01", "66.249.79.132", "6064");
INSERT INTO `wp_rg_form_view` VALUES("694", "6", "2014-08-23 07:00:04", "66.249.79.132", "1196");
INSERT INTO `wp_rg_form_view` VALUES("695", "3", "2014-08-23 08:00:00", "66.249.79.119", "5895");
INSERT INTO `wp_rg_form_view` VALUES("696", "6", "2014-08-23 08:00:00", "66.249.79.119", "1166");
INSERT INTO `wp_rg_form_view` VALUES("697", "3", "2014-08-23 09:00:06", "66.249.79.145", "5602");
INSERT INTO `wp_rg_form_view` VALUES("698", "6", "2014-08-23 09:00:09", "66.249.79.145", "1102");
INSERT INTO `wp_rg_form_view` VALUES("699", "3", "2014-08-23 10:00:00", "66.249.79.145", "5020");
INSERT INTO `wp_rg_form_view` VALUES("700", "6", "2014-08-23 10:00:03", "66.249.79.145", "996");
INSERT INTO `wp_rg_form_view` VALUES("701", "3", "2014-08-23 11:00:02", "66.249.79.119", "772");
INSERT INTO `wp_rg_form_view` VALUES("702", "6", "2014-08-23 11:00:04", "66.249.79.119", "152");
INSERT INTO `wp_rg_form_view` VALUES("703", "3", "2014-08-23 12:02:54", "66.249.79.132", "4888");
INSERT INTO `wp_rg_form_view` VALUES("704", "6", "2014-08-23 12:02:54", "66.249.79.132", "962");
INSERT INTO `wp_rg_form_view` VALUES("705", "3", "2014-08-23 13:00:00", "66.249.79.132", "6325");
INSERT INTO `wp_rg_form_view` VALUES("706", "6", "2014-08-23 13:00:03", "66.249.79.132", "1250");
INSERT INTO `wp_rg_form_view` VALUES("707", "3", "2014-08-23 14:00:48", "66.249.79.119", "6277");
INSERT INTO `wp_rg_form_view` VALUES("708", "6", "2014-08-23 14:00:51", "66.249.79.119", "1246");
INSERT INTO `wp_rg_form_view` VALUES("709", "1", "2014-08-23 14:45:00", "192.114.71.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("710", "2", "2014-08-23 14:45:01", "192.114.71.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("711", "3", "2014-08-23 15:00:01", "66.249.79.119", "10161");
INSERT INTO `wp_rg_form_view` VALUES("712", "6", "2014-08-23 15:00:05", "66.249.79.119", "1948");
INSERT INTO `wp_rg_form_view` VALUES("713", "2", "2014-08-23 15:14:17", "144.76.167.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("714", "1", "2014-08-23 15:15:32", "144.76.167.214", "3");
INSERT INTO `wp_rg_form_view` VALUES("715", "3", "2014-08-23 16:00:00", "66.249.79.119", "8221");
INSERT INTO `wp_rg_form_view` VALUES("716", "6", "2014-08-23 16:00:00", "144.76.167.214", "1591");
INSERT INTO `wp_rg_form_view` VALUES("717", "3", "2014-08-23 17:00:00", "66.249.79.132", "6295");
INSERT INTO `wp_rg_form_view` VALUES("718", "6", "2014-08-23 17:00:03", "66.249.79.132", "1254");
INSERT INTO `wp_rg_form_view` VALUES("719", "3", "2014-08-23 18:00:00", "66.249.79.145", "5668");
INSERT INTO `wp_rg_form_view` VALUES("720", "6", "2014-08-23 18:00:04", "66.249.79.145", "1118");
INSERT INTO `wp_rg_form_view` VALUES("721", "2", "2014-08-23 18:11:36", "36.232.119.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("722", "3", "2014-08-23 19:00:00", "66.249.79.145", "6505");
INSERT INTO `wp_rg_form_view` VALUES("723", "6", "2014-08-23 19:00:03", "66.249.79.145", "1284");
INSERT INTO `wp_rg_form_view` VALUES("724", "3", "2014-08-23 20:00:00", "66.249.79.119", "6430");
INSERT INTO `wp_rg_form_view` VALUES("725", "6", "2014-08-23 20:00:01", "66.249.79.119", "1264");
INSERT INTO `wp_rg_form_view` VALUES("726", "3", "2014-08-23 21:00:00", "66.249.79.132", "5975");
INSERT INTO `wp_rg_form_view` VALUES("727", "6", "2014-08-23 21:00:00", "66.249.79.132", "1186");
INSERT INTO `wp_rg_form_view` VALUES("728", "3", "2014-08-23 22:00:00", "66.249.79.145", "5554");
INSERT INTO `wp_rg_form_view` VALUES("729", "6", "2014-08-23 22:00:03", "66.249.79.145", "1099");
INSERT INTO `wp_rg_form_view` VALUES("730", "6", "2014-08-23 23:00:00", "66.249.79.145", "893");
INSERT INTO `wp_rg_form_view` VALUES("731", "3", "2014-08-23 23:00:11", "66.249.79.132", "4520");
INSERT INTO `wp_rg_form_view` VALUES("732", "3", "2014-08-24 00:00:01", "66.249.79.132", "5726");
INSERT INTO `wp_rg_form_view` VALUES("733", "6", "2014-08-24 00:00:04", "66.249.79.132", "1130");
INSERT INTO `wp_rg_form_view` VALUES("734", "3", "2014-08-24 01:00:02", "66.249.79.119", "6216");
INSERT INTO `wp_rg_form_view` VALUES("735", "6", "2014-08-24 01:00:05", "66.249.79.119", "1225");
INSERT INTO `wp_rg_form_view` VALUES("736", "6", "2014-08-24 02:00:00", "66.249.79.145", "1161");
INSERT INTO `wp_rg_form_view` VALUES("737", "3", "2014-08-24 02:00:02", "66.249.79.119", "5866");
INSERT INTO `wp_rg_form_view` VALUES("738", "3", "2014-08-24 03:00:01", "66.249.79.119", "6403");
INSERT INTO `wp_rg_form_view` VALUES("739", "6", "2014-08-24 03:00:05", "66.249.79.119", "1269");
INSERT INTO `wp_rg_form_view` VALUES("740", "3", "2014-08-24 04:00:01", "66.249.79.119", "6321");
INSERT INTO `wp_rg_form_view` VALUES("741", "6", "2014-08-24 04:00:04", "66.249.79.119", "1240");
INSERT INTO `wp_rg_form_view` VALUES("742", "3", "2014-08-24 05:00:00", "66.249.79.145", "6246");
INSERT INTO `wp_rg_form_view` VALUES("743", "6", "2014-08-24 05:00:03", "66.249.79.145", "1236");
INSERT INTO `wp_rg_form_view` VALUES("744", "3", "2014-08-24 06:00:00", "66.249.79.145", "5941");
INSERT INTO `wp_rg_form_view` VALUES("745", "6", "2014-08-24 06:00:01", "66.249.79.145", "1180");
INSERT INTO `wp_rg_form_view` VALUES("746", "3", "2014-08-24 07:00:02", "66.249.79.132", "6153");
INSERT INTO `wp_rg_form_view` VALUES("747", "6", "2014-08-24 07:00:05", "66.249.79.132", "1222");
INSERT INTO `wp_rg_form_view` VALUES("748", "3", "2014-08-24 08:00:00", "66.249.79.145", "5399");
INSERT INTO `wp_rg_form_view` VALUES("749", "6", "2014-08-24 08:00:02", "66.249.79.145", "1070");
INSERT INTO `wp_rg_form_view` VALUES("750", "3", "2014-08-24 09:00:01", "66.249.79.132", "5126");
INSERT INTO `wp_rg_form_view` VALUES("751", "6", "2014-08-24 09:00:04", "66.249.79.132", "1014");
INSERT INTO `wp_rg_form_view` VALUES("752", "3", "2014-08-24 10:00:00", "66.249.79.119", "6022");
INSERT INTO `wp_rg_form_view` VALUES("753", "6", "2014-08-24 10:00:02", "66.249.79.119", "1192");
INSERT INTO `wp_rg_form_view` VALUES("754", "3", "2014-08-24 11:00:01", "66.249.79.145", "2958");
INSERT INTO `wp_rg_form_view` VALUES("755", "6", "2014-08-24 11:00:04", "66.249.79.145", "586");
INSERT INTO `wp_rg_form_view` VALUES("756", "3", "2014-08-24 12:00:02", "66.249.79.145", "5809");
INSERT INTO `wp_rg_form_view` VALUES("757", "6", "2014-08-24 12:00:04", "66.249.79.145", "1148");
INSERT INTO `wp_rg_form_view` VALUES("758", "3", "2014-08-24 13:00:00", "66.249.79.132", "5949");
INSERT INTO `wp_rg_form_view` VALUES("759", "6", "2014-08-24 13:00:01", "66.249.79.132", "1176");
INSERT INTO `wp_rg_form_view` VALUES("760", "3", "2014-08-24 14:00:01", "66.249.79.132", "6106");
INSERT INTO `wp_rg_form_view` VALUES("761", "6", "2014-08-24 14:00:05", "66.249.79.132", "1204");
INSERT INTO `wp_rg_form_view` VALUES("762", "3", "2014-08-24 15:00:01", "66.249.79.145", "6074");
INSERT INTO `wp_rg_form_view` VALUES("763", "6", "2014-08-24 15:00:05", "66.249.79.145", "1204");
INSERT INTO `wp_rg_form_view` VALUES("764", "1", "2014-08-24 15:51:47", "93.182.133.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("765", "3", "2014-08-24 16:00:00", "66.249.79.119", "5719");
INSERT INTO `wp_rg_form_view` VALUES("766", "6", "2014-08-24 16:00:00", "66.249.79.119", "1130");
INSERT INTO `wp_rg_form_view` VALUES("767", "3", "2014-08-24 17:00:00", "66.249.79.132", "5225");
INSERT INTO `wp_rg_form_view` VALUES("768", "6", "2014-08-24 17:00:04", "66.249.79.132", "1030");
INSERT INTO `wp_rg_form_view` VALUES("769", "3", "2014-08-24 18:00:00", "66.249.79.119", "4307");
INSERT INTO `wp_rg_form_view` VALUES("770", "6", "2014-08-24 18:00:03", "66.249.79.119", "852");
INSERT INTO `wp_rg_form_view` VALUES("771", "3", "2014-08-24 19:00:00", "66.249.79.145", "5017");
INSERT INTO `wp_rg_form_view` VALUES("772", "6", "2014-08-24 19:00:01", "66.249.79.145", "994");
INSERT INTO `wp_rg_form_view` VALUES("773", "3", "2014-08-24 20:00:00", "66.249.79.132", "5053");
INSERT INTO `wp_rg_form_view` VALUES("774", "6", "2014-08-24 20:00:03", "66.249.79.132", "1000");
INSERT INTO `wp_rg_form_view` VALUES("775", "3", "2014-08-24 21:00:11", "66.249.69.92", "3628");
INSERT INTO `wp_rg_form_view` VALUES("776", "6", "2014-08-24 21:00:14", "66.249.69.92", "716");
INSERT INTO `wp_rg_form_view` VALUES("777", "3", "2014-08-24 22:00:00", "66.249.79.145", "4773");
INSERT INTO `wp_rg_form_view` VALUES("778", "6", "2014-08-24 22:00:00", "66.249.79.145", "950");
INSERT INTO `wp_rg_form_view` VALUES("779", "3", "2014-08-24 23:00:02", "66.249.79.119", "2900");
INSERT INTO `wp_rg_form_view` VALUES("780", "6", "2014-08-24 23:00:05", "66.249.79.119", "574");
INSERT INTO `wp_rg_form_view` VALUES("781", "6", "2014-08-25 00:00:00", "66.249.79.119", "1234");
INSERT INTO `wp_rg_form_view` VALUES("782", "3", "2014-08-25 00:00:04", "66.249.79.119", "6212");
INSERT INTO `wp_rg_form_view` VALUES("783", "3", "2014-08-25 01:00:00", "66.249.79.145", "6284");
INSERT INTO `wp_rg_form_view` VALUES("784", "6", "2014-08-25 01:00:00", "66.249.79.145", "1242");
INSERT INTO `wp_rg_form_view` VALUES("785", "3", "2014-08-25 02:00:03", "66.249.79.119", "5906");
INSERT INTO `wp_rg_form_view` VALUES("786", "6", "2014-08-25 02:00:06", "66.249.79.119", "1166");
INSERT INTO `wp_rg_form_view` VALUES("787", "3", "2014-08-25 03:00:07", "66.249.79.119", "6745");
INSERT INTO `wp_rg_form_view` VALUES("788", "6", "2014-08-25 03:00:10", "66.249.79.119", "1334");
INSERT INTO `wp_rg_form_view` VALUES("789", "1", "2014-08-25 03:29:10", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("790", "2", "2014-08-25 03:29:49", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("791", "3", "2014-08-25 04:00:00", "66.249.79.119", "6222");
INSERT INTO `wp_rg_form_view` VALUES("792", "6", "2014-08-25 04:00:00", "66.249.79.119", "1231");
INSERT INTO `wp_rg_form_view` VALUES("793", "6", "2014-08-25 05:00:00", "66.249.79.145", "1221");
INSERT INTO `wp_rg_form_view` VALUES("794", "3", "2014-08-25 05:00:02", "66.249.79.132", "6158");
INSERT INTO `wp_rg_form_view` VALUES("795", "3", "2014-08-25 06:00:01", "66.249.79.145", "5852");
INSERT INTO `wp_rg_form_view` VALUES("796", "6", "2014-08-25 06:00:04", "66.249.79.145", "1156");
INSERT INTO `wp_rg_form_view` VALUES("797", "3", "2014-08-25 07:00:00", "66.249.79.119", "6263");
INSERT INTO `wp_rg_form_view` VALUES("798", "6", "2014-08-25 07:00:03", "66.249.79.119", "1240");
INSERT INTO `wp_rg_form_view` VALUES("799", "1", "2014-08-25 07:59:33", "183.15.95.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("800", "2", "2014-08-25 07:59:42", "183.15.95.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("801", "3", "2014-08-25 08:00:00", "183.15.95.130", "5913");
INSERT INTO `wp_rg_form_view` VALUES("802", "6", "2014-08-25 08:00:01", "183.15.95.130", "1172");
INSERT INTO `wp_rg_form_view` VALUES("803", "3", "2014-08-25 09:00:00", "66.249.79.145", "5327");
INSERT INTO `wp_rg_form_view` VALUES("804", "6", "2014-08-25 09:00:03", "66.249.79.145", "1048");
INSERT INTO `wp_rg_form_view` VALUES("805", "3", "2014-08-25 10:00:00", "66.249.79.132", "6148");
INSERT INTO `wp_rg_form_view` VALUES("806", "6", "2014-08-25 10:00:01", "66.249.79.132", "1210");
INSERT INTO `wp_rg_form_view` VALUES("807", "3", "2014-08-25 11:00:00", "66.249.79.132", "3613");
INSERT INTO `wp_rg_form_view` VALUES("808", "6", "2014-08-25 11:00:00", "66.249.79.132", "720");
INSERT INTO `wp_rg_form_view` VALUES("809", "3", "2014-08-25 12:00:03", "66.249.79.132", "7754");
INSERT INTO `wp_rg_form_view` VALUES("810", "6", "2014-08-25 12:00:05", "66.249.79.132", "1528");
INSERT INTO `wp_rg_form_view` VALUES("811", "3", "2014-08-25 13:00:00", "66.249.79.145", "8606");
INSERT INTO `wp_rg_form_view` VALUES("812", "6", "2014-08-25 13:00:00", "66.249.79.145", "1710");
INSERT INTO `wp_rg_form_view` VALUES("813", "1", "2014-08-25 13:17:41", "213.238.175.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("814", "3", "2014-08-25 14:00:00", "66.249.79.119", "6454");
INSERT INTO `wp_rg_form_view` VALUES("815", "6", "2014-08-25 14:00:01", "66.249.79.119", "1280");
INSERT INTO `wp_rg_form_view` VALUES("816", "3", "2014-08-25 15:00:00", "66.249.79.119", "6449");
INSERT INTO `wp_rg_form_view` VALUES("817", "6", "2014-08-25 15:00:03", "66.249.79.119", "1275");
INSERT INTO `wp_rg_form_view` VALUES("818", "3", "2014-08-25 16:00:00", "66.249.79.145", "6550");
INSERT INTO `wp_rg_form_view` VALUES("819", "6", "2014-08-25 16:00:00", "66.249.79.145", "1294");
INSERT INTO `wp_rg_form_view` VALUES("820", "3", "2014-08-25 17:00:03", "66.249.79.132", "6422");
INSERT INTO `wp_rg_form_view` VALUES("821", "6", "2014-08-25 17:00:06", "66.249.79.132", "1270");
INSERT INTO `wp_rg_form_view` VALUES("822", "3", "2014-08-25 18:00:00", "66.249.79.119", "4837");
INSERT INTO `wp_rg_form_view` VALUES("823", "6", "2014-08-25 18:00:00", "66.249.79.119", "960");
INSERT INTO `wp_rg_form_view` VALUES("824", "2", "2014-08-25 18:22:21", "93.182.134.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("825", "3", "2014-08-25 19:00:52", "66.249.79.132", "5924");
INSERT INTO `wp_rg_form_view` VALUES("826", "6", "2014-08-25 19:00:54", "66.249.79.132", "1172");
INSERT INTO `wp_rg_form_view` VALUES("827", "3", "2014-08-25 20:00:00", "66.249.79.119", "6197");
INSERT INTO `wp_rg_form_view` VALUES("828", "6", "2014-08-25 20:00:02", "66.249.79.132", "1227");
INSERT INTO `wp_rg_form_view` VALUES("829", "6", "2014-08-25 21:00:00", "66.249.79.119", "1044");
INSERT INTO `wp_rg_form_view` VALUES("830", "3", "2014-08-25 21:00:07", "66.249.79.132", "5289");
INSERT INTO `wp_rg_form_view` VALUES("831", "3", "2014-08-25 22:00:00", "66.249.79.132", "5976");
INSERT INTO `wp_rg_form_view` VALUES("832", "6", "2014-08-25 22:00:00", "66.249.79.132", "1182");
INSERT INTO `wp_rg_form_view` VALUES("833", "3", "2014-08-25 23:00:00", "66.249.79.145", "3721");
INSERT INTO `wp_rg_form_view` VALUES("834", "6", "2014-08-25 23:00:01", "66.249.79.145", "740");
INSERT INTO `wp_rg_form_view` VALUES("835", "3", "2014-08-26 00:00:00", "66.249.79.145", "6267");
INSERT INTO `wp_rg_form_view` VALUES("836", "6", "2014-08-26 00:00:00", "66.249.79.145", "1240");
INSERT INTO `wp_rg_form_view` VALUES("837", "3", "2014-08-26 01:00:00", "66.249.79.119", "6137");
INSERT INTO `wp_rg_form_view` VALUES("838", "6", "2014-08-26 01:00:02", "66.249.79.119", "1212");
INSERT INTO `wp_rg_form_view` VALUES("839", "3", "2014-08-26 02:01:30", "66.249.79.145", "6158");
INSERT INTO `wp_rg_form_view` VALUES("840", "6", "2014-08-26 02:01:33", "66.249.79.145", "1220");
INSERT INTO `wp_rg_form_view` VALUES("841", "3", "2014-08-26 03:00:11", "66.249.79.132", "6062");
INSERT INTO `wp_rg_form_view` VALUES("842", "6", "2014-08-26 03:00:14", "66.249.79.132", "1202");
INSERT INTO `wp_rg_form_view` VALUES("843", "6", "2014-08-26 04:00:00", "66.249.79.145", "1276");
INSERT INTO `wp_rg_form_view` VALUES("844", "3", "2014-08-26 04:00:02", "66.249.79.119", "6436");
INSERT INTO `wp_rg_form_view` VALUES("845", "3", "2014-08-26 05:00:00", "66.249.79.119", "6503");
INSERT INTO `wp_rg_form_view` VALUES("846", "6", "2014-08-26 05:00:02", "66.249.79.119", "1292");
INSERT INTO `wp_rg_form_view` VALUES("847", "1", "2014-08-26 05:14:32", "192.34.61.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("848", "2", "2014-08-26 05:14:33", "192.34.61.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("849", "3", "2014-08-26 06:00:00", "66.249.79.132", "6404");
INSERT INTO `wp_rg_form_view` VALUES("850", "6", "2014-08-26 06:00:03", "66.249.79.132", "1264");
INSERT INTO `wp_rg_form_view` VALUES("851", "3", "2014-08-26 07:00:09", "66.249.79.132", "6234");
INSERT INTO `wp_rg_form_view` VALUES("852", "6", "2014-08-26 07:00:13", "66.249.79.132", "1234");
INSERT INTO `wp_rg_form_view` VALUES("853", "6", "2014-08-26 08:00:00", "66.249.79.132", "1268");
INSERT INTO `wp_rg_form_view` VALUES("854", "3", "2014-08-26 08:00:02", "66.249.79.145", "6386");
INSERT INTO `wp_rg_form_view` VALUES("855", "3", "2014-08-26 09:00:00", "66.249.79.132", "5906");
INSERT INTO `wp_rg_form_view` VALUES("856", "6", "2014-08-26 09:00:03", "66.249.79.132", "1170");
INSERT INTO `wp_rg_form_view` VALUES("857", "3", "2014-08-26 10:00:23", "66.249.79.132", "4508");
INSERT INTO `wp_rg_form_view` VALUES("858", "6", "2014-08-26 10:00:26", "66.249.79.132", "898");
INSERT INTO `wp_rg_form_view` VALUES("859", "3", "2014-08-26 11:05:06", "66.249.69.108", "4539");
INSERT INTO `wp_rg_form_view` VALUES("860", "6", "2014-08-26 11:05:07", "66.249.69.108", "896");
INSERT INTO `wp_rg_form_view` VALUES("861", "3", "2014-08-26 12:00:00", "66.249.79.145", "6465");
INSERT INTO `wp_rg_form_view` VALUES("862", "6", "2014-08-26 12:00:01", "66.249.79.145", "1274");
INSERT INTO `wp_rg_form_view` VALUES("863", "3", "2014-08-26 13:00:00", "66.249.79.145", "6490");
INSERT INTO `wp_rg_form_view` VALUES("864", "6", "2014-08-26 13:00:04", "66.249.79.145", "1278");
INSERT INTO `wp_rg_form_view` VALUES("865", "3", "2014-08-26 14:00:00", "66.249.79.145", "6519");
INSERT INTO `wp_rg_form_view` VALUES("866", "6", "2014-08-26 14:00:02", "66.249.79.145", "1288");
INSERT INTO `wp_rg_form_view` VALUES("867", "3", "2014-08-26 15:00:00", "66.249.79.145", "5931");
INSERT INTO `wp_rg_form_view` VALUES("868", "6", "2014-08-26 15:00:01", "66.249.79.145", "1170");
INSERT INTO `wp_rg_form_view` VALUES("869", "3", "2014-08-26 16:00:00", "66.249.79.132", "6553");
INSERT INTO `wp_rg_form_view` VALUES("870", "6", "2014-08-26 16:00:01", "66.249.79.132", "1288");
INSERT INTO `wp_rg_form_view` VALUES("871", "6", "2014-08-26 17:00:00", "157.55.39.110", "1378");
INSERT INTO `wp_rg_form_view` VALUES("872", "3", "2014-08-26 17:00:00", "66.249.79.132", "6983");
INSERT INTO `wp_rg_form_view` VALUES("873", "3", "2014-08-26 18:00:01", "66.249.79.132", "6237");
INSERT INTO `wp_rg_form_view` VALUES("874", "6", "2014-08-26 18:00:05", "66.249.79.132", "1230");
INSERT INTO `wp_rg_form_view` VALUES("875", "6", "2014-08-26 19:00:00", "66.249.79.145", "914");
INSERT INTO `wp_rg_form_view` VALUES("876", "3", "2014-08-26 19:00:00", "66.249.79.145", "4615");
INSERT INTO `wp_rg_form_view` VALUES("877", "3", "2014-08-26 20:00:00", "66.249.79.145", "7008");
INSERT INTO `wp_rg_form_view` VALUES("878", "6", "2014-08-26 20:00:02", "66.249.79.145", "1378");
INSERT INTO `wp_rg_form_view` VALUES("879", "3", "2014-08-26 21:00:00", "66.249.79.145", "7315");
INSERT INTO `wp_rg_form_view` VALUES("880", "6", "2014-08-26 21:00:03", "66.249.79.145", "1442");
INSERT INTO `wp_rg_form_view` VALUES("881", "3", "2014-08-26 22:00:00", "66.249.79.132", "3077");
INSERT INTO `wp_rg_form_view` VALUES("882", "6", "2014-08-26 22:00:02", "66.249.79.132", "614");
INSERT INTO `wp_rg_form_view` VALUES("883", "3", "2014-08-26 23:00:27", "66.249.79.132", "430");
INSERT INTO `wp_rg_form_view` VALUES("884", "6", "2014-08-26 23:00:29", "66.249.79.132", "84");
INSERT INTO `wp_rg_form_view` VALUES("885", "3", "2014-08-27 00:00:00", "66.249.79.119", "1028");
INSERT INTO `wp_rg_form_view` VALUES("886", "6", "2014-08-27 00:00:00", "66.249.79.119", "206");
INSERT INTO `wp_rg_form_view` VALUES("887", "3", "2014-08-27 01:01:01", "66.249.79.119", "6554");
INSERT INTO `wp_rg_form_view` VALUES("888", "6", "2014-08-27 01:01:01", "66.249.79.119", "1296");
INSERT INTO `wp_rg_form_view` VALUES("889", "3", "2014-08-27 02:00:01", "66.249.79.132", "6657");
INSERT INTO `wp_rg_form_view` VALUES("890", "6", "2014-08-27 02:00:04", "66.249.79.132", "1322");
INSERT INTO `wp_rg_form_view` VALUES("891", "3", "2014-08-27 03:00:00", "66.249.79.119", "6347");
INSERT INTO `wp_rg_form_view` VALUES("892", "6", "2014-08-27 03:00:01", "66.249.79.119", "1260");
INSERT INTO `wp_rg_form_view` VALUES("893", "3", "2014-08-27 04:00:00", "66.249.79.132", "7061");
INSERT INTO `wp_rg_form_view` VALUES("894", "6", "2014-08-27 04:00:04", "66.249.79.132", "1394");
INSERT INTO `wp_rg_form_view` VALUES("895", "3", "2014-08-27 05:00:00", "66.249.79.119", "5616");
INSERT INTO `wp_rg_form_view` VALUES("896", "6", "2014-08-27 05:00:01", "66.249.79.119", "1109");
INSERT INTO `wp_rg_form_view` VALUES("897", "3", "2014-08-27 06:00:00", "66.249.79.119", "4434");
INSERT INTO `wp_rg_form_view` VALUES("898", "6", "2014-08-27 06:00:06", "66.249.79.119", "878");
INSERT INTO `wp_rg_form_view` VALUES("899", "3", "2014-08-27 07:00:00", "66.249.79.145", "5026");
INSERT INTO `wp_rg_form_view` VALUES("900", "6", "2014-08-27 07:00:02", "66.249.79.145", "992");
INSERT INTO `wp_rg_form_view` VALUES("901", "6", "2014-08-27 07:46:32", "66.249.79.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("902", "3", "2014-08-27 08:00:09", "66.249.79.145", "7815");
INSERT INTO `wp_rg_form_view` VALUES("903", "6", "2014-08-27 08:00:11", "66.249.79.145", "1540");
INSERT INTO `wp_rg_form_view` VALUES("904", "1", "2014-08-27 08:54:17", "37.58.100.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("905", "3", "2014-08-27 09:00:00", "66.249.79.119", "7717");
INSERT INTO `wp_rg_form_view` VALUES("906", "6", "2014-08-27 09:00:04", "66.249.79.119", "1518");
INSERT INTO `wp_rg_form_view` VALUES("907", "3", "2014-08-27 10:00:00", "66.249.79.119", "8472");
INSERT INTO `wp_rg_form_view` VALUES("908", "6", "2014-08-27 10:00:03", "66.249.79.119", "1678");
INSERT INTO `wp_rg_form_view` VALUES("909", "2", "2014-08-27 10:02:25", "37.58.100.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("910", "3", "2014-08-27 11:00:44", "66.249.66.219", "8582");
INSERT INTO `wp_rg_form_view` VALUES("911", "6", "2014-08-27 11:00:49", "66.249.66.219", "1702");
INSERT INTO `wp_rg_form_view` VALUES("912", "6", "2014-08-27 12:00:00", "66.249.66.219", "1516");
INSERT INTO `wp_rg_form_view` VALUES("913", "3", "2014-08-27 12:00:01", "66.249.66.219", "7656");
INSERT INTO `wp_rg_form_view` VALUES("914", "1", "2014-08-27 12:26:57", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("915", "2", "2014-08-27 12:27:06", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("916", "3", "2014-08-27 13:00:32", "66.249.66.219", "5732");
INSERT INTO `wp_rg_form_view` VALUES("917", "6", "2014-08-27 13:00:35", "66.249.66.219", "1132");
INSERT INTO `wp_rg_form_view` VALUES("918", "1", "2014-08-27 13:01:03", "114.46.33.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("919", "3", "2014-08-27 14:00:00", "66.249.66.219", "7532");
INSERT INTO `wp_rg_form_view` VALUES("920", "6", "2014-08-27 14:00:00", "66.249.66.219", "1494");
INSERT INTO `wp_rg_form_view` VALUES("921", "6", "2014-08-27 15:00:00", "66.249.79.145", "1214");
INSERT INTO `wp_rg_form_view` VALUES("922", "3", "2014-08-27 15:00:00", "66.249.79.145", "6190");
INSERT INTO `wp_rg_form_view` VALUES("923", "3", "2014-08-27 16:00:00", "66.249.79.119", "7570");
INSERT INTO `wp_rg_form_view` VALUES("924", "6", "2014-08-27 16:00:01", "66.249.79.119", "1502");
INSERT INTO `wp_rg_form_view` VALUES("925", "3", "2014-08-27 17:00:00", "66.249.79.145", "6753");
INSERT INTO `wp_rg_form_view` VALUES("926", "6", "2014-08-27 17:00:03", "66.249.79.145", "1338");
INSERT INTO `wp_rg_form_view` VALUES("927", "3", "2014-08-27 18:00:02", "66.249.66.219", "4684");
INSERT INTO `wp_rg_form_view` VALUES("928", "6", "2014-08-27 18:00:06", "66.249.66.219", "928");
INSERT INTO `wp_rg_form_view` VALUES("929", "3", "2014-08-27 19:00:00", "66.249.66.219", "4223");
INSERT INTO `wp_rg_form_view` VALUES("930", "6", "2014-08-27 19:00:01", "66.249.66.219", "834");
INSERT INTO `wp_rg_form_view` VALUES("931", "3", "2014-08-27 20:00:00", "66.249.66.219", "5125");
INSERT INTO `wp_rg_form_view` VALUES("932", "6", "2014-08-27 20:00:01", "66.249.66.219", "1011");
INSERT INTO `wp_rg_form_view` VALUES("933", "2", "2014-08-27 20:02:28", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("934", "6", "2014-08-27 21:00:00", "66.249.66.219", "1055");
INSERT INTO `wp_rg_form_view` VALUES("935", "3", "2014-08-27 21:00:03", "66.249.66.219", "5341");
INSERT INTO `wp_rg_form_view` VALUES("936", "3", "2014-08-27 22:00:00", "66.249.66.219", "4973");
INSERT INTO `wp_rg_form_view` VALUES("937", "6", "2014-08-27 22:00:00", "66.249.66.219", "986");
INSERT INTO `wp_rg_form_view` VALUES("938", "3", "2014-08-27 23:00:00", "66.249.66.219", "5138");
INSERT INTO `wp_rg_form_view` VALUES("939", "6", "2014-08-27 23:00:01", "66.249.66.219", "1018");
INSERT INTO `wp_rg_form_view` VALUES("940", "3", "2014-08-28 00:00:00", "66.249.66.219", "3983");
INSERT INTO `wp_rg_form_view` VALUES("941", "6", "2014-08-28 00:00:02", "66.249.66.219", "793");
INSERT INTO `wp_rg_form_view` VALUES("942", "3", "2014-08-28 01:00:00", "66.249.66.219", "5928");
INSERT INTO `wp_rg_form_view` VALUES("943", "6", "2014-08-28 01:00:02", "66.249.66.219", "1173");
INSERT INTO `wp_rg_form_view` VALUES("944", "6", "2014-08-28 02:00:00", "66.249.66.219", "1085");
INSERT INTO `wp_rg_form_view` VALUES("945", "3", "2014-08-28 02:00:11", "66.249.66.219", "5492");
INSERT INTO `wp_rg_form_view` VALUES("946", "3", "2014-08-28 03:00:37", "66.249.66.219", "4877");
INSERT INTO `wp_rg_form_view` VALUES("947", "6", "2014-08-28 03:00:40", "66.249.66.219", "964");
INSERT INTO `wp_rg_form_view` VALUES("948", "3", "2014-08-28 04:00:00", "66.249.66.219", "6069");
INSERT INTO `wp_rg_form_view` VALUES("949", "6", "2014-08-28 04:00:02", "66.249.66.219", "1200");
INSERT INTO `wp_rg_form_view` VALUES("950", "3", "2014-08-28 05:00:00", "66.249.66.219", "5546");
INSERT INTO `wp_rg_form_view` VALUES("951", "6", "2014-08-28 05:00:02", "66.249.66.219", "1094");
INSERT INTO `wp_rg_form_view` VALUES("952", "3", "2014-08-28 06:00:00", "66.249.66.219", "5798");
INSERT INTO `wp_rg_form_view` VALUES("953", "6", "2014-08-28 06:00:02", "66.249.66.219", "1146");
INSERT INTO `wp_rg_form_view` VALUES("954", "3", "2014-08-28 07:00:00", "66.249.66.219", "7460");
INSERT INTO `wp_rg_form_view` VALUES("955", "6", "2014-08-28 07:00:03", "66.249.66.219", "1476");
INSERT INTO `wp_rg_form_view` VALUES("956", "3", "2014-08-28 08:00:08", "66.249.66.219", "7620");
INSERT INTO `wp_rg_form_view` VALUES("957", "6", "2014-08-28 08:00:11", "66.249.66.219", "1502");
INSERT INTO `wp_rg_form_view` VALUES("958", "3", "2014-08-28 09:00:00", "66.249.66.219", "7638");
INSERT INTO `wp_rg_form_view` VALUES("959", "6", "2014-08-28 09:00:00", "66.249.66.219", "1508");
INSERT INTO `wp_rg_form_view` VALUES("960", "3", "2014-08-28 10:00:07", "66.249.66.219", "7800");
INSERT INTO `wp_rg_form_view` VALUES("961", "6", "2014-08-28 10:00:10", "66.249.66.219", "1539");
INSERT INTO `wp_rg_form_view` VALUES("962", "1", "2014-08-28 10:46:08", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("963", "2", "2014-08-28 10:46:58", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("964", "3", "2014-08-28 11:00:03", "66.249.66.219", "6804");
INSERT INTO `wp_rg_form_view` VALUES("965", "6", "2014-08-28 11:00:07", "66.249.66.219", "1344");
INSERT INTO `wp_rg_form_view` VALUES("966", "2", "2014-08-28 11:06:56", "66.249.66.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("967", "6", "2014-08-28 12:00:00", "66.249.66.219", "928");
INSERT INTO `wp_rg_form_view` VALUES("968", "3", "2014-08-28 12:00:04", "66.249.66.219", "4696");
INSERT INTO `wp_rg_form_view` VALUES("969", "3", "2014-08-28 13:00:00", "66.249.66.219", "7020");
INSERT INTO `wp_rg_form_view` VALUES("970", "6", "2014-08-28 13:00:00", "66.249.66.219", "1394");
INSERT INTO `wp_rg_form_view` VALUES("971", "3", "2014-08-28 14:00:06", "66.249.66.219", "7115");
INSERT INTO `wp_rg_form_view` VALUES("972", "6", "2014-08-28 14:00:10", "66.249.66.219", "1406");
INSERT INTO `wp_rg_form_view` VALUES("973", "3", "2014-08-28 15:00:00", "66.249.66.219", "4165");
INSERT INTO `wp_rg_form_view` VALUES("974", "6", "2014-08-28 15:00:00", "66.249.66.219", "820");
INSERT INTO `wp_rg_form_view` VALUES("975", "6", "2014-08-28 16:00:00", "66.249.66.219", "1096");
INSERT INTO `wp_rg_form_view` VALUES("976", "3", "2014-08-28 16:00:02", "66.249.66.219", "5568");
INSERT INTO `wp_rg_form_view` VALUES("977", "1", "2014-08-28 16:25:18", "66.249.66.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("978", "3", "2014-08-28 17:00:02", "66.249.66.219", "5691");
INSERT INTO `wp_rg_form_view` VALUES("979", "6", "2014-08-28 17:00:06", "66.249.66.219", "1122");
INSERT INTO `wp_rg_form_view` VALUES("980", "2", "2014-08-28 17:18:20", "36.232.115.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("981", "3", "2014-08-28 18:00:00", "66.249.66.219", "5611");
INSERT INTO `wp_rg_form_view` VALUES("982", "6", "2014-08-28 18:00:02", "66.249.66.219", "1108");
INSERT INTO `wp_rg_form_view` VALUES("983", "2", "2014-08-28 18:01:02", "207.194.133.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("984", "3", "2014-08-28 19:00:00", "66.249.66.219", "4934");
INSERT INTO `wp_rg_form_view` VALUES("985", "6", "2014-08-28 19:00:02", "66.249.66.219", "714");
INSERT INTO `wp_rg_form_view` VALUES("986", "2", "2014-08-28 19:24:05", "24.68.35.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("987", "3", "2014-08-28 20:00:00", "66.249.66.219", "6337");
INSERT INTO `wp_rg_form_view` VALUES("988", "2", "2014-08-28 20:07:46", "70.67.253.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("989", "6", "2014-08-28 20:38:39", "66.249.66.219", "4");
INSERT INTO `wp_rg_form_view` VALUES("990", "3", "2014-08-28 21:00:00", "66.249.66.219", "6608");
INSERT INTO `wp_rg_form_view` VALUES("991", "2", "2014-08-28 21:02:01", "131.137.245.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("992", "6", "2014-08-28 21:38:45", "24.108.136.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("993", "3", "2014-08-28 22:00:00", "66.249.66.219", "6279");
INSERT INTO `wp_rg_form_view` VALUES("994", "3", "2014-08-28 23:00:00", "66.249.66.219", "5640");
INSERT INTO `wp_rg_form_view` VALUES("995", "2", "2014-08-28 23:18:59", "142.36.252.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("996", "3", "2014-08-29 00:00:02", "66.249.66.219", "5119");
INSERT INTO `wp_rg_form_view` VALUES("997", "6", "2014-08-29 00:36:35", "66.249.66.219", "4");
INSERT INTO `wp_rg_form_view` VALUES("998", "3", "2014-08-29 01:00:00", "66.249.66.219", "5902");
INSERT INTO `wp_rg_form_view` VALUES("999", "3", "2014-08-29 02:00:00", "66.249.66.219", "6085");
INSERT INTO `wp_rg_form_view` VALUES("1000", "2", "2014-08-29 02:12:49", "66.189.159.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("1001", "6", "2014-08-29 02:20:12", "66.249.66.219", "8");
INSERT INTO `wp_rg_form_view` VALUES("1002", "3", "2014-08-29 03:00:02", "66.249.66.219", "6048");
INSERT INTO `wp_rg_form_view` VALUES("1003", "6", "2014-08-29 03:02:10", "66.249.66.219", "4");
INSERT INTO `wp_rg_form_view` VALUES("1004", "3", "2014-08-29 04:00:01", "66.249.66.219", "6826");
INSERT INTO `wp_rg_form_view` VALUES("1005", "6", "2014-08-29 04:09:22", "66.249.66.219", "4");
INSERT INTO `wp_rg_form_view` VALUES("1006", "3", "2014-08-29 05:00:00", "66.249.66.219", "6774");
INSERT INTO `wp_rg_form_view` VALUES("1007", "6", "2014-08-29 05:54:44", "157.55.39.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("1008", "3", "2014-08-29 06:00:00", "66.249.66.219", "5450");
INSERT INTO `wp_rg_form_view` VALUES("1009", "6", "2014-08-29 06:52:57", "66.249.66.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("1010", "3", "2014-08-29 07:00:00", "66.249.66.219", "8171");
INSERT INTO `wp_rg_form_view` VALUES("1011", "6", "2014-08-29 07:07:42", "66.249.66.219", "6");
INSERT INTO `wp_rg_form_view` VALUES("1012", "3", "2014-08-29 08:00:39", "66.249.66.219", "8812");
INSERT INTO `wp_rg_form_view` VALUES("1013", "3", "2014-08-29 09:00:00", "66.249.66.219", "8371");
INSERT INTO `wp_rg_form_view` VALUES("1014", "6", "2014-08-29 09:44:39", "66.249.66.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("1015", "3", "2014-08-29 10:00:00", "66.249.79.119", "9220");
INSERT INTO `wp_rg_form_view` VALUES("1016", "6", "2014-08-29 10:12:51", "66.249.79.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("1017", "3", "2014-08-29 11:00:08", "66.249.79.132", "6975");
INSERT INTO `wp_rg_form_view` VALUES("1018", "6", "2014-08-29 11:02:29", "66.249.79.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("1019", "3", "2014-08-29 12:00:00", "66.249.79.132", "7723");
INSERT INTO `wp_rg_form_view` VALUES("1020", "6", "2014-08-29 12:56:14", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1021", "3", "2014-08-29 13:00:01", "66.249.79.145", "8480");
INSERT INTO `wp_rg_form_view` VALUES("1022", "3", "2014-08-29 14:00:01", "66.249.79.119", "7962");
INSERT INTO `wp_rg_form_view` VALUES("1023", "3", "2014-08-29 15:00:00", "66.249.79.132", "5334");
INSERT INTO `wp_rg_form_view` VALUES("1024", "3", "2014-08-29 16:00:04", "66.249.79.132", "6121");
INSERT INTO `wp_rg_form_view` VALUES("1025", "3", "2014-08-29 17:00:00", "66.249.79.132", "6099");
INSERT INTO `wp_rg_form_view` VALUES("1026", "6", "2014-08-29 17:02:40", "66.249.79.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1027", "3", "2014-08-29 18:00:00", "66.249.79.132", "6546");
INSERT INTO `wp_rg_form_view` VALUES("1028", "1", "2014-08-29 18:53:15", "178.137.89.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("1029", "3", "2014-08-29 19:00:14", "66.249.79.145", "5122");
INSERT INTO `wp_rg_form_view` VALUES("1030", "3", "2014-08-29 20:00:00", "66.249.79.119", "6941");
INSERT INTO `wp_rg_form_view` VALUES("1031", "3", "2014-08-29 21:00:00", "66.249.79.132", "6248");
INSERT INTO `wp_rg_form_view` VALUES("1032", "6", "2014-08-29 21:18:52", "157.55.39.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("1033", "3", "2014-08-29 22:00:00", "202.46.63.163", "3253");
INSERT INTO `wp_rg_form_view` VALUES("1034", "6", "2014-08-29 22:15:32", "92.158.242.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("1035", "3", "2014-08-29 23:00:00", "66.249.79.145", "5644");
INSERT INTO `wp_rg_form_view` VALUES("1036", "3", "2014-08-30 00:00:00", "66.249.79.145", "5829");
INSERT INTO `wp_rg_form_view` VALUES("1037", "3", "2014-08-30 01:00:15", "66.249.79.145", "6320");
INSERT INTO `wp_rg_form_view` VALUES("1038", "6", "2014-08-30 01:04:14", "66.249.79.119", "4");
INSERT INTO `wp_rg_form_view` VALUES("1039", "3", "2014-08-30 02:00:03", "66.249.79.119", "6564");
INSERT INTO `wp_rg_form_view` VALUES("1040", "6", "2014-08-30 02:03:29", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1041", "3", "2014-08-30 03:00:00", "66.249.79.145", "7112");
INSERT INTO `wp_rg_form_view` VALUES("1042", "6", "2014-08-30 03:01:23", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1043", "3", "2014-08-30 04:00:00", "66.249.79.145", "5720");
INSERT INTO `wp_rg_form_view` VALUES("1044", "3", "2014-08-30 05:00:01", "66.249.79.145", "5972");
INSERT INTO `wp_rg_form_view` VALUES("1045", "6", "2014-08-30 05:37:06", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1046", "3", "2014-08-30 06:00:00", "66.249.79.119", "7318");
INSERT INTO `wp_rg_form_view` VALUES("1047", "3", "2014-08-30 07:00:00", "66.249.79.145", "8722");
INSERT INTO `wp_rg_form_view` VALUES("1048", "1", "2014-08-30 07:43:04", "208.68.38.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("1049", "2", "2014-08-30 07:43:04", "208.68.38.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("1050", "6", "2014-08-30 07:43:05", "208.68.38.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("1051", "3", "2014-08-30 08:00:00", "66.249.79.119", "9239");
INSERT INTO `wp_rg_form_view` VALUES("1052", "6", "2014-08-30 08:32:03", "66.249.79.145", "4");
INSERT INTO `wp_rg_form_view` VALUES("1053", "3", "2014-08-30 09:00:00", "66.249.79.145", "8647");
INSERT INTO `wp_rg_form_view` VALUES("1054", "6", "2014-08-30 09:17:59", "66.249.79.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("1055", "3", "2014-08-30 10:00:00", "66.249.79.132", "4826");
INSERT INTO `wp_rg_form_view` VALUES("1056", "6", "2014-08-30 10:19:41", "157.55.39.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("1057", "2", "2014-08-30 10:54:41", "36.250.185.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("1058", "3", "2014-08-30 11:00:08", "66.249.79.119", "6528");
INSERT INTO `wp_rg_form_view` VALUES("1059", "6", "2014-08-30 11:25:33", "66.249.79.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("1060", "3", "2014-08-30 12:00:00", "66.249.79.119", "6351");
INSERT INTO `wp_rg_form_view` VALUES("1061", "6", "2014-08-30 12:44:11", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1062", "3", "2014-08-30 13:00:00", "66.249.79.132", "6287");
INSERT INTO `wp_rg_form_view` VALUES("1063", "6", "2014-08-30 13:01:31", "66.249.79.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("1064", "3", "2014-08-30 14:00:07", "66.249.79.145", "5110");
INSERT INTO `wp_rg_form_view` VALUES("1065", "6", "2014-08-30 14:23:01", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1066", "1", "2014-08-30 14:44:49", "114.46.37.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("1067", "3", "2014-08-30 15:00:08", "66.249.79.119", "5721");
INSERT INTO `wp_rg_form_view` VALUES("1068", "6", "2014-08-30 15:33:52", "66.249.79.145", "6");
INSERT INTO `wp_rg_form_view` VALUES("1069", "3", "2014-08-30 16:00:00", "66.249.79.119", "6409");
INSERT INTO `wp_rg_form_view` VALUES("1070", "6", "2014-08-30 16:32:28", "66.249.79.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("1071", "3", "2014-08-30 17:00:03", "66.249.79.145", "5360");
INSERT INTO `wp_rg_form_view` VALUES("1072", "6", "2014-08-30 17:27:50", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1073", "3", "2014-08-30 18:00:00", "66.249.79.145", "5818");
INSERT INTO `wp_rg_form_view` VALUES("1074", "6", "2014-08-30 18:05:41", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1075", "3", "2014-08-30 19:00:16", "66.249.79.119", "5638");
INSERT INTO `wp_rg_form_view` VALUES("1076", "3", "2014-08-30 20:00:00", "66.249.79.145", "5083");
INSERT INTO `wp_rg_form_view` VALUES("1077", "6", "2014-08-30 20:01:00", "66.249.79.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1078", "3", "2014-08-30 21:00:00", "66.249.79.132", "6382");
INSERT INTO `wp_rg_form_view` VALUES("1079", "6", "2014-08-30 21:06:03", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1080", "3", "2014-08-30 22:00:05", "66.249.79.132", "5770");
INSERT INTO `wp_rg_form_view` VALUES("1081", "6", "2014-08-30 22:15:37", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1082", "3", "2014-08-30 23:00:02", "66.249.79.119", "6302");
INSERT INTO `wp_rg_form_view` VALUES("1083", "6", "2014-08-30 23:51:21", "66.249.79.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1084", "3", "2014-08-31 00:00:00", "66.249.79.119", "6352");
INSERT INTO `wp_rg_form_view` VALUES("1085", "3", "2014-08-31 01:00:04", "66.249.79.132", "6824");
INSERT INTO `wp_rg_form_view` VALUES("1086", "1", "2014-08-31 01:51:45", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1087", "6", "2014-08-31 01:52:17", "5.9.73.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("1088", "2", "2014-08-31 01:52:22", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1089", "3", "2014-08-31 02:00:00", "66.249.79.132", "6425");
INSERT INTO `wp_rg_form_view` VALUES("1090", "3", "2014-08-31 03:00:00", "66.249.79.132", "6963");
INSERT INTO `wp_rg_form_view` VALUES("1091", "3", "2014-08-31 04:00:00", "66.249.79.145", "6452");
INSERT INTO `wp_rg_form_view` VALUES("1092", "3", "2014-08-31 05:00:00", "66.249.79.132", "6658");
INSERT INTO `wp_rg_form_view` VALUES("1093", "6", "2014-08-31 05:32:48", "66.249.79.145", "4");
INSERT INTO `wp_rg_form_view` VALUES("1094", "3", "2014-08-31 06:00:00", "66.249.79.132", "6238");
INSERT INTO `wp_rg_form_view` VALUES("1095", "6", "2014-08-31 06:26:02", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1096", "3", "2014-08-31 07:00:00", "66.249.79.132", "9170");
INSERT INTO `wp_rg_form_view` VALUES("1097", "6", "2014-08-31 07:09:41", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1098", "3", "2014-08-31 08:00:02", "66.249.79.132", "8919");
INSERT INTO `wp_rg_form_view` VALUES("1099", "6", "2014-08-31 08:26:41", "66.249.79.119", "4");
INSERT INTO `wp_rg_form_view` VALUES("1100", "3", "2014-08-31 09:00:00", "66.249.79.132", "3589");
INSERT INTO `wp_rg_form_view` VALUES("1101", "3", "2014-08-31 10:00:00", "66.249.79.119", "6242");
INSERT INTO `wp_rg_form_view` VALUES("1102", "6", "2014-08-31 10:15:21", "66.249.79.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1103", "3", "2014-08-31 11:00:00", "66.249.79.132", "7220");
INSERT INTO `wp_rg_form_view` VALUES("1104", "2", "2014-08-31 11:37:28", "192.3.111.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("1105", "6", "2014-08-31 11:55:14", "66.249.79.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1106", "3", "2014-08-31 12:00:00", "66.249.79.119", "7050");
INSERT INTO `wp_rg_form_view` VALUES("1107", "2", "2014-08-31 12:06:05", "192.3.111.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("1108", "6", "2014-08-31 12:24:14", "66.249.79.145", "4");
INSERT INTO `wp_rg_form_view` VALUES("1109", "3", "2014-08-31 13:00:02", "66.249.79.145", "6516");
INSERT INTO `wp_rg_form_view` VALUES("1110", "6", "2014-08-31 13:32:27", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1111", "3", "2014-08-31 14:00:01", "66.249.79.119", "6789");
INSERT INTO `wp_rg_form_view` VALUES("1112", "6", "2014-08-31 14:08:08", "66.249.79.145", "10");
INSERT INTO `wp_rg_form_view` VALUES("1113", "3", "2014-08-31 15:00:00", "66.249.79.145", "7093");
INSERT INTO `wp_rg_form_view` VALUES("1114", "6", "2014-08-31 15:02:32", "66.249.79.119", "17");
INSERT INTO `wp_rg_form_view` VALUES("1115", "1", "2014-08-31 15:56:43", "151.237.192.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("1116", "2", "2014-08-31 15:57:28", "151.237.192.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("1117", "3", "2014-08-31 16:00:00", "66.249.79.132", "6701");
INSERT INTO `wp_rg_form_view` VALUES("1118", "6", "2014-08-31 16:12:28", "66.249.79.119", "20");
INSERT INTO `wp_rg_form_view` VALUES("1119", "1", "2014-08-31 16:31:56", "110.210.27.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("1120", "3", "2014-08-31 17:00:02", "66.249.79.132", "6086");
INSERT INTO `wp_rg_form_view` VALUES("1121", "6", "2014-08-31 17:09:39", "66.249.79.119", "22");
INSERT INTO `wp_rg_form_view` VALUES("1122", "3", "2014-08-31 18:00:00", "66.249.79.119", "6180");
INSERT INTO `wp_rg_form_view` VALUES("1123", "6", "2014-08-31 18:00:20", "66.249.79.145", "28");
INSERT INTO `wp_rg_form_view` VALUES("1124", "3", "2014-08-31 19:00:00", "66.249.79.145", "5521");
INSERT INTO `wp_rg_form_view` VALUES("1125", "6", "2014-08-31 19:24:02", "66.249.79.119", "10");
INSERT INTO `wp_rg_form_view` VALUES("1126", "3", "2014-08-31 20:00:00", "66.249.79.132", "5497");
INSERT INTO `wp_rg_form_view` VALUES("1127", "6", "2014-08-31 20:16:28", "66.249.79.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("1128", "3", "2014-08-31 21:00:14", "66.249.79.145", "5409");
INSERT INTO `wp_rg_form_view` VALUES("1129", "6", "2014-08-31 21:25:41", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1130", "3", "2014-08-31 22:00:05", "66.249.79.145", "5274");
INSERT INTO `wp_rg_form_view` VALUES("1131", "6", "2014-08-31 22:03:13", "66.249.79.145", "8");
INSERT INTO `wp_rg_form_view` VALUES("1132", "2", "2014-08-31 22:45:37", "192.227.191.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("1133", "3", "2014-08-31 23:00:03", "66.249.79.119", "5628");
INSERT INTO `wp_rg_form_view` VALUES("1134", "6", "2014-08-31 23:58:10", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1135", "3", "2014-09-01 00:00:02", "66.249.79.145", "5432");
INSERT INTO `wp_rg_form_view` VALUES("1136", "6", "2014-09-01 00:55:00", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1137", "3", "2014-09-01 01:00:00", "66.249.79.119", "6110");
INSERT INTO `wp_rg_form_view` VALUES("1138", "6", "2014-09-01 01:48:52", "66.249.79.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1139", "3", "2014-09-01 02:00:04", "66.249.79.119", "5386");
INSERT INTO `wp_rg_form_view` VALUES("1140", "6", "2014-09-01 02:25:54", "66.249.79.145", "6");
INSERT INTO `wp_rg_form_view` VALUES("1141", "3", "2014-09-01 03:00:02", "66.249.79.145", "5537");
INSERT INTO `wp_rg_form_view` VALUES("1142", "6", "2014-09-01 03:13:18", "66.249.79.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("1143", "3", "2014-09-01 04:00:00", "66.249.79.119", "5551");
INSERT INTO `wp_rg_form_view` VALUES("1144", "3", "2014-09-01 05:00:06", "66.249.79.119", "5575");
INSERT INTO `wp_rg_form_view` VALUES("1145", "6", "2014-09-01 05:04:27", "66.249.79.145", "5");
INSERT INTO `wp_rg_form_view` VALUES("1146", "3", "2014-09-01 06:00:00", "66.249.79.132", "5158");
INSERT INTO `wp_rg_form_view` VALUES("1147", "6", "2014-09-01 06:26:36", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1148", "3", "2014-09-01 07:00:01", "66.249.79.132", "9339");
INSERT INTO `wp_rg_form_view` VALUES("1149", "3", "2014-09-01 08:00:00", "66.249.79.119", "7933");
INSERT INTO `wp_rg_form_view` VALUES("1150", "6", "2014-09-01 08:19:45", "66.249.79.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("1151", "3", "2014-09-01 09:00:18", "66.249.66.219", "6594");
INSERT INTO `wp_rg_form_view` VALUES("1152", "6", "2014-09-01 09:27:46", "66.249.66.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("1153", "3", "2014-09-01 10:08:38", "104.40.66.100", "3108");
INSERT INTO `wp_rg_form_view` VALUES("1154", "3", "2014-09-01 11:00:07", "66.249.66.219", "7266");
INSERT INTO `wp_rg_form_view` VALUES("1155", "3", "2014-09-01 12:00:00", "66.249.66.219", "7652");
INSERT INTO `wp_rg_form_view` VALUES("1156", "6", "2014-09-01 12:02:10", "66.249.66.219", "6");
INSERT INTO `wp_rg_form_view` VALUES("1157", "3", "2014-09-01 13:00:35", "66.249.66.219", "7383");
INSERT INTO `wp_rg_form_view` VALUES("1158", "6", "2014-09-01 13:18:54", "66.249.66.219", "4");
INSERT INTO `wp_rg_form_view` VALUES("1159", "3", "2014-09-01 14:00:00", "66.249.66.219", "7185");
INSERT INTO `wp_rg_form_view` VALUES("1160", "1", "2014-09-01 14:11:50", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("1161", "2", "2014-09-01 14:11:56", "192.99.8.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("1162", "6", "2014-09-01 14:32:33", "66.249.66.219", "6");
INSERT INTO `wp_rg_form_view` VALUES("1163", "3", "2014-09-01 15:00:04", "66.249.66.219", "4798");
INSERT INTO `wp_rg_form_view` VALUES("1164", "6", "2014-09-01 15:29:47", "66.249.66.219", "4");
INSERT INTO `wp_rg_form_view` VALUES("1165", "3", "2014-09-01 16:00:01", "66.249.79.119", "5931");
INSERT INTO `wp_rg_form_view` VALUES("1166", "6", "2014-09-01 16:02:35", "66.249.79.145", "6");
INSERT INTO `wp_rg_form_view` VALUES("1167", "3", "2014-09-01 17:00:00", "66.249.79.132", "6446");
INSERT INTO `wp_rg_form_view` VALUES("1168", "6", "2014-09-01 17:09:16", "66.249.79.145", "8");
INSERT INTO `wp_rg_form_view` VALUES("1169", "3", "2014-09-01 18:00:00", "66.249.79.119", "6714");
INSERT INTO `wp_rg_form_view` VALUES("1170", "1", "2014-09-01 18:02:53", "72.39.152.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("1171", "6", "2014-09-01 18:34:11", "66.249.79.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1172", "3", "2014-09-01 19:00:00", "66.249.79.145", "6862");
INSERT INTO `wp_rg_form_view` VALUES("1173", "3", "2014-09-01 20:00:00", "66.249.79.132", "2162");
INSERT INTO `wp_rg_form_view` VALUES("1174", "6", "2014-09-01 20:06:43", "66.249.79.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("1175", "1", "2014-09-01 20:49:53", "49.143.192.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("1176", "3", "2014-09-01 21:00:33", "162.243.36.31", "8508");
INSERT INTO `wp_rg_form_view` VALUES("1177", "1", "2014-09-01 21:08:21", "162.243.36.31", "2");
INSERT INTO `wp_rg_form_view` VALUES("1178", "6", "2014-09-01 21:18:36", "162.243.36.31", "7");
INSERT INTO `wp_rg_form_view` VALUES("1179", "2", "2014-09-01 21:33:05", "23.92.221.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("1180", "3", "2014-09-01 22:00:00", "162.243.36.31", "7049");
INSERT INTO `wp_rg_form_view` VALUES("1181", "6", "2014-09-01 22:03:44", "162.243.36.31", "18");
INSERT INTO `wp_rg_form_view` VALUES("1182", "3", "2014-09-01 23:00:00", "66.249.79.145", "3730");
INSERT INTO `wp_rg_form_view` VALUES("1183", "6", "2014-09-01 23:58:02", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1184", "3", "2014-09-02 00:00:03", "66.249.79.132", "5621");
INSERT INTO `wp_rg_form_view` VALUES("1185", "6", "2014-09-02 00:17:43", "66.249.79.119", "8");
INSERT INTO `wp_rg_form_view` VALUES("1186", "3", "2014-09-02 01:00:00", "66.249.79.132", "6283");
INSERT INTO `wp_rg_form_view` VALUES("1187", "2", "2014-09-02 01:07:54", "198.23.174.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("1188", "6", "2014-09-02 01:33:40", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1189", "3", "2014-09-02 02:00:00", "66.249.79.132", "6702");
INSERT INTO `wp_rg_form_view` VALUES("1190", "6", "2014-09-02 02:36:38", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1191", "3", "2014-09-02 03:00:00", "66.249.79.132", "6449");
INSERT INTO `wp_rg_form_view` VALUES("1192", "3", "2014-09-02 04:00:00", "66.249.79.119", "6457");
INSERT INTO `wp_rg_form_view` VALUES("1193", "3", "2014-09-02 05:00:00", "66.249.79.119", "6173");
INSERT INTO `wp_rg_form_view` VALUES("1194", "3", "2014-09-02 06:00:01", "66.249.79.145", "5514");
INSERT INTO `wp_rg_form_view` VALUES("1195", "6", "2014-09-02 06:29:50", "66.249.79.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("1196", "3", "2014-09-02 07:00:07", "66.249.79.119", "5407");
INSERT INTO `wp_rg_form_view` VALUES("1197", "3", "2014-09-02 08:00:00", "66.249.79.145", "7227");
INSERT INTO `wp_rg_form_view` VALUES("1198", "3", "2014-09-02 09:00:00", "66.249.79.119", "4972");
INSERT INTO `wp_rg_form_view` VALUES("1199", "6", "2014-09-02 09:28:42", "66.249.79.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1200", "1", "2014-09-02 09:39:13", "98.126.26.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("1201", "3", "2014-09-02 10:00:00", "66.249.79.119", "5814");
INSERT INTO `wp_rg_form_view` VALUES("1202", "6", "2014-09-02 10:07:53", "157.55.39.90", "19");
INSERT INTO `wp_rg_form_view` VALUES("1203", "3", "2014-09-02 11:00:07", "66.249.79.119", "5125");
INSERT INTO `wp_rg_form_view` VALUES("1204", "6", "2014-09-02 11:05:14", "157.55.39.145", "16");
INSERT INTO `wp_rg_form_view` VALUES("1205", "2", "2014-09-02 11:07:53", "157.55.39.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("1206", "3", "2014-09-02 12:00:00", "66.249.79.119", "5646");
INSERT INTO `wp_rg_form_view` VALUES("1207", "6", "2014-09-02 12:26:56", "66.249.79.132", "18");
INSERT INTO `wp_rg_form_view` VALUES("1208", "3", "2014-09-02 13:00:02", "66.249.79.76", "6172");
INSERT INTO `wp_rg_form_view` VALUES("1209", "6", "2014-09-02 13:04:10", "66.249.79.84", "28");
INSERT INTO `wp_rg_form_view` VALUES("1210", "1", "2014-09-02 13:09:40", "157.55.39.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("1211", "3", "2014-09-02 14:00:02", "66.249.79.92", "3784");
INSERT INTO `wp_rg_form_view` VALUES("1212", "6", "2014-09-02 14:00:37", "66.249.79.76", "18");
INSERT INTO `wp_rg_form_view` VALUES("1213", "3", "2014-09-02 15:00:20", "66.249.79.84", "3252");
INSERT INTO `wp_rg_form_view` VALUES("1214", "6", "2014-09-02 15:06:56", "66.249.79.76", "16");
INSERT INTO `wp_rg_form_view` VALUES("1215", "3", "2014-09-02 16:00:02", "66.249.79.84", "3208");
INSERT INTO `wp_rg_form_view` VALUES("1216", "6", "2014-09-02 16:13:48", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("1217", "3", "2014-09-02 17:00:03", "66.249.79.76", "3395");
INSERT INTO `wp_rg_form_view` VALUES("1218", "6", "2014-09-02 17:07:04", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("1219", "3", "2014-09-02 18:00:00", "66.249.79.84", "5161");
INSERT INTO `wp_rg_form_view` VALUES("1220", "6", "2014-09-02 18:07:30", "66.249.79.76", "18");
INSERT INTO `wp_rg_form_view` VALUES("1221", "3", "2014-09-02 19:01:21", "66.249.79.76", "4172");
INSERT INTO `wp_rg_form_view` VALUES("1222", "3", "2014-09-02 20:00:03", "66.249.79.84", "3048");
INSERT INTO `wp_rg_form_view` VALUES("1223", "1", "2014-09-02 20:05:11", "207.6.182.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("1224", "6", "2014-09-02 20:18:08", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1225", "3", "2014-09-02 21:00:04", "66.249.79.92", "2840");
INSERT INTO `wp_rg_form_view` VALUES("1226", "6", "2014-09-02 21:03:42", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1227", "3", "2014-09-02 22:00:10", "66.249.79.76", "3832");
INSERT INTO `wp_rg_form_view` VALUES("1228", "3", "2014-09-02 23:00:05", "66.249.79.76", "3804");
INSERT INTO `wp_rg_form_view` VALUES("1229", "6", "2014-09-02 23:08:44", "66.249.79.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("1230", "1", "2014-09-02 23:18:51", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1231", "3", "2014-09-03 00:00:00", "66.249.79.84", "4194");
INSERT INTO `wp_rg_form_view` VALUES("1232", "6", "2014-09-03 00:00:03", "66.249.79.84", "34");
INSERT INTO `wp_rg_form_view` VALUES("1233", "1", "2014-09-03 00:58:44", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1234", "2", "2014-09-03 00:59:17", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1235", "3", "2014-09-03 01:00:00", "5.9.73.44", "3652");
INSERT INTO `wp_rg_form_view` VALUES("1236", "6", "2014-09-03 01:06:27", "66.249.79.76", "20");
INSERT INTO `wp_rg_form_view` VALUES("1237", "3", "2014-09-03 02:00:08", "66.249.79.84", "3756");
INSERT INTO `wp_rg_form_view` VALUES("1238", "6", "2014-09-03 02:04:45", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("1239", "3", "2014-09-03 03:00:00", "66.249.79.92", "3994");
INSERT INTO `wp_rg_form_view` VALUES("1240", "6", "2014-09-03 03:03:41", "66.249.79.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("1241", "3", "2014-09-03 04:00:03", "66.249.79.76", "4028");
INSERT INTO `wp_rg_form_view` VALUES("1242", "6", "2014-09-03 04:07:15", "66.249.79.84", "26");
INSERT INTO `wp_rg_form_view` VALUES("1243", "1", "2014-09-03 04:33:20", "58.212.96.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("1244", "3", "2014-09-03 05:00:03", "66.249.79.92", "4180");
INSERT INTO `wp_rg_form_view` VALUES("1245", "6", "2014-09-03 05:04:53", "66.249.79.92", "26");
INSERT INTO `wp_rg_form_view` VALUES("1246", "2", "2014-09-03 05:14:40", "192.3.111.174", "2");
INSERT INTO `wp_rg_form_view` VALUES("1247", "3", "2014-09-03 06:00:14", "66.249.79.92", "3961");
INSERT INTO `wp_rg_form_view` VALUES("1248", "6", "2014-09-03 06:06:47", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("1249", "2", "2014-09-03 06:48:52", "98.126.26.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("1250", "3", "2014-09-03 07:00:18", "66.249.79.84", "5054");
INSERT INTO `wp_rg_form_view` VALUES("1251", "6", "2014-09-03 07:09:00", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("1252", "3", "2014-09-03 08:00:01", "66.249.79.92", "5994");
INSERT INTO `wp_rg_form_view` VALUES("1253", "3", "2014-09-03 09:00:06", "66.249.79.92", "3454");
INSERT INTO `wp_rg_form_view` VALUES("1254", "6", "2014-09-03 09:35:22", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("1255", "3", "2014-09-03 10:00:32", "66.249.79.84", "3738");
INSERT INTO `wp_rg_form_view` VALUES("1256", "6", "2014-09-03 10:20:39", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1257", "3", "2014-09-03 11:00:06", "66.249.79.76", "1812");
INSERT INTO `wp_rg_form_view` VALUES("1258", "3", "2014-09-03 12:00:08", "66.249.79.92", "3564");
INSERT INTO `wp_rg_form_view` VALUES("1259", "6", "2014-09-03 12:08:51", "66.249.79.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("1260", "3", "2014-09-03 13:00:03", "66.249.79.76", "5925");
INSERT INTO `wp_rg_form_view` VALUES("1261", "6", "2014-09-03 13:11:06", "66.249.79.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("1262", "3", "2014-09-03 14:00:00", "66.249.79.76", "3852");
INSERT INTO `wp_rg_form_view` VALUES("1263", "6", "2014-09-03 14:33:41", "23.92.221.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("1264", "1", "2014-09-03 14:34:37", "23.92.221.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("1265", "2", "2014-09-03 14:34:59", "23.92.221.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("1266", "3", "2014-09-03 15:00:04", "66.249.79.76", "2865");
INSERT INTO `wp_rg_form_view` VALUES("1267", "6", "2014-09-03 15:15:35", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1268", "2", "2014-09-03 15:50:47", "207.112.83.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("1269", "3", "2014-09-03 16:00:00", "66.249.79.92", "3163");
INSERT INTO `wp_rg_form_view` VALUES("1270", "1", "2014-09-03 16:09:14", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1271", "3", "2014-09-03 17:00:01", "66.249.79.76", "4110");
INSERT INTO `wp_rg_form_view` VALUES("1272", "1", "2014-09-03 17:00:32", "198.211.110.246", "6");
INSERT INTO `wp_rg_form_view` VALUES("1273", "6", "2014-09-03 17:00:32", "198.211.110.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("1274", "2", "2014-09-03 17:00:33", "198.211.110.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("1275", "3", "2014-09-03 18:00:14", "66.249.79.76", "2902");
INSERT INTO `wp_rg_form_view` VALUES("1276", "3", "2014-09-03 19:00:21", "66.249.79.92", "4256");
INSERT INTO `wp_rg_form_view` VALUES("1277", "3", "2014-09-03 20:00:00", "66.249.79.76", "4968");
INSERT INTO `wp_rg_form_view` VALUES("1278", "2", "2014-09-03 20:13:28", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("1279", "6", "2014-09-03 20:18:07", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("1280", "3", "2014-09-03 21:00:00", "66.249.79.76", "6558");
INSERT INTO `wp_rg_form_view` VALUES("1281", "6", "2014-09-03 21:36:17", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1282", "3", "2014-09-03 22:00:00", "66.249.79.92", "9533");
INSERT INTO `wp_rg_form_view` VALUES("1283", "1", "2014-09-03 22:09:19", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1284", "6", "2014-09-03 22:37:53", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("1285", "2", "2014-09-03 22:56:44", "193.201.224.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1286", "3", "2014-09-03 23:00:00", "193.201.224.76", "1176");
INSERT INTO `wp_rg_form_view` VALUES("1287", "6", "2014-09-03 23:01:09", "66.249.79.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("1288", "3", "2014-09-04 00:00:23", "66.249.79.76", "3722");
INSERT INTO `wp_rg_form_view` VALUES("1289", "6", "2014-09-04 00:49:49", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1290", "3", "2014-09-04 01:00:00", "66.249.79.84", "8226");
INSERT INTO `wp_rg_form_view` VALUES("1291", "6", "2014-09-04 01:50:39", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1292", "3", "2014-09-04 02:00:02", "66.249.79.92", "8131");
INSERT INTO `wp_rg_form_view` VALUES("1293", "1", "2014-09-04 02:16:03", "89.234.68.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("1294", "6", "2014-09-04 02:28:10", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1295", "3", "2014-09-04 03:00:00", "66.249.79.76", "8968");
INSERT INTO `wp_rg_form_view` VALUES("1296", "6", "2014-09-04 03:01:04", "66.249.79.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("1297", "1", "2014-09-04 03:26:36", "77.172.204.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("1298", "2", "2014-09-04 03:26:51", "77.172.204.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("1299", "3", "2014-09-04 04:00:02", "66.249.79.92", "8550");
INSERT INTO `wp_rg_form_view` VALUES("1300", "1", "2014-09-04 04:10:26", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1301", "6", "2014-09-04 04:24:34", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1302", "3", "2014-09-04 05:00:04", "66.249.79.76", "8516");
INSERT INTO `wp_rg_form_view` VALUES("1303", "1", "2014-09-04 05:37:03", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1304", "3", "2014-09-04 06:00:00", "66.249.79.76", "6839");
INSERT INTO `wp_rg_form_view` VALUES("1305", "1", "2014-09-04 06:02:45", "192.99.221.234", "5");
INSERT INTO `wp_rg_form_view` VALUES("1306", "6", "2014-09-04 06:17:52", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1307", "3", "2014-09-04 07:00:00", "66.249.79.76", "8346");
INSERT INTO `wp_rg_form_view` VALUES("1308", "6", "2014-09-04 07:18:18", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("1309", "3", "2014-09-04 08:00:00", "66.249.79.84", "5275");
INSERT INTO `wp_rg_form_view` VALUES("1310", "3", "2014-09-04 09:01:07", "66.249.79.92", "3966");
INSERT INTO `wp_rg_form_view` VALUES("1311", "6", "2014-09-04 09:30:32", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1312", "3", "2014-09-04 10:00:00", "66.249.79.84", "6894");
INSERT INTO `wp_rg_form_view` VALUES("1313", "6", "2014-09-04 10:04:32", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("1314", "1", "2014-09-04 10:14:34", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1315", "3", "2014-09-04 11:00:00", "66.249.79.76", "6932");
INSERT INTO `wp_rg_form_view` VALUES("1316", "6", "2014-09-04 11:04:59", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("1317", "3", "2014-09-04 12:00:01", "66.249.79.92", "6803");
INSERT INTO `wp_rg_form_view` VALUES("1318", "6", "2014-09-04 12:11:09", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("1319", "1", "2014-09-04 12:18:57", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1320", "3", "2014-09-04 13:00:00", "66.249.79.92", "6754");
INSERT INTO `wp_rg_form_view` VALUES("1321", "6", "2014-09-04 13:00:37", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("1322", "3", "2014-09-04 14:00:00", "66.249.79.76", "7496");
INSERT INTO `wp_rg_form_view` VALUES("1323", "6", "2014-09-04 14:24:37", "66.249.79.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("1324", "3", "2014-09-04 15:00:02", "66.249.79.92", "6568");
INSERT INTO `wp_rg_form_view` VALUES("1325", "6", "2014-09-04 15:22:15", "66.249.79.84", "16");
INSERT INTO `wp_rg_form_view` VALUES("1326", "3", "2014-09-04 16:00:01", "66.249.79.92", "8795");
INSERT INTO `wp_rg_form_view` VALUES("1327", "6", "2014-09-04 16:03:00", "66.249.79.76", "50");
INSERT INTO `wp_rg_form_view` VALUES("1328", "1", "2014-09-04 16:05:22", "212.129.42.207", "3");
INSERT INTO `wp_rg_form_view` VALUES("1329", "3", "2014-09-04 17:00:00", "66.249.79.76", "8428");
INSERT INTO `wp_rg_form_view` VALUES("1330", "6", "2014-09-04 17:02:05", "66.249.79.92", "18");
INSERT INTO `wp_rg_form_view` VALUES("1331", "3", "2014-09-04 18:00:01", "66.249.79.76", "8462");
INSERT INTO `wp_rg_form_view` VALUES("1332", "6", "2014-09-04 18:02:53", "66.249.79.84", "20");
INSERT INTO `wp_rg_form_view` VALUES("1333", "1", "2014-09-04 18:37:13", "192.99.221.234", "6");
INSERT INTO `wp_rg_form_view` VALUES("1334", "3", "2014-09-04 19:00:00", "66.249.79.84", "8286");
INSERT INTO `wp_rg_form_view` VALUES("1335", "6", "2014-09-04 19:01:20", "66.249.79.84", "22");
INSERT INTO `wp_rg_form_view` VALUES("1336", "3", "2014-09-04 20:00:26", "66.249.79.76", "8554");
INSERT INTO `wp_rg_form_view` VALUES("1337", "6", "2014-09-04 20:04:44", "66.249.79.84", "16");
INSERT INTO `wp_rg_form_view` VALUES("1338", "2", "2014-09-04 20:10:30", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("1339", "3", "2014-09-04 21:00:17", "66.249.79.84", "5178");
INSERT INTO `wp_rg_form_view` VALUES("1340", "6", "2014-09-04 21:07:55", "66.249.79.76", "22");
INSERT INTO `wp_rg_form_view` VALUES("1341", "1", "2014-09-04 21:56:33", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1342", "3", "2014-09-04 22:00:06", "66.249.79.92", "6823");
INSERT INTO `wp_rg_form_view` VALUES("1343", "6", "2014-09-04 22:13:24", "66.249.79.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("1344", "3", "2014-09-04 23:00:00", "66.249.79.84", "6717");
INSERT INTO `wp_rg_form_view` VALUES("1345", "6", "2014-09-04 23:08:11", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("1346", "3", "2014-09-05 00:00:04", "66.249.79.92", "7933");
INSERT INTO `wp_rg_form_view` VALUES("1347", "6", "2014-09-05 00:12:55", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("1348", "1", "2014-09-05 00:30:05", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("1349", "3", "2014-09-05 01:00:00", "66.249.79.84", "7455");
INSERT INTO `wp_rg_form_view` VALUES("1350", "6", "2014-09-05 01:28:45", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1351", "1", "2014-09-05 01:31:49", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1352", "3", "2014-09-05 02:00:02", "66.249.79.84", "7632");
INSERT INTO `wp_rg_form_view` VALUES("1353", "6", "2014-09-05 02:07:24", "66.249.79.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("1354", "3", "2014-09-05 03:00:02", "66.249.79.92", "7279");
INSERT INTO `wp_rg_form_view` VALUES("1355", "6", "2014-09-05 03:05:19", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("1356", "1", "2014-09-05 03:45:15", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1357", "3", "2014-09-05 04:00:03", "66.249.79.92", "8064");
INSERT INTO `wp_rg_form_view` VALUES("1358", "6", "2014-09-05 04:18:07", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("1359", "1", "2014-09-05 04:30:06", "174.127.133.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("1360", "2", "2014-09-05 04:32:26", "174.127.133.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("1361", "3", "2014-09-05 05:00:00", "66.249.79.76", "8069");
INSERT INTO `wp_rg_form_view` VALUES("1362", "6", "2014-09-05 05:02:48", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("1363", "1", "2014-09-05 05:13:55", "174.127.133.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("1364", "3", "2014-09-05 06:00:00", "66.249.79.76", "7830");
INSERT INTO `wp_rg_form_view` VALUES("1365", "6", "2014-09-05 06:45:37", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1366", "1", "2014-09-05 06:52:53", "192.99.221.234", "4");
INSERT INTO `wp_rg_form_view` VALUES("1367", "3", "2014-09-05 07:00:00", "66.249.79.76", "6384");
INSERT INTO `wp_rg_form_view` VALUES("1368", "6", "2014-09-05 07:41:30", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1369", "3", "2014-09-05 08:00:18", "66.249.79.84", "1054");
INSERT INTO `wp_rg_form_view` VALUES("1370", "1", "2014-09-05 08:01:56", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1371", "6", "2014-09-05 08:23:03", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1372", "3", "2014-09-05 09:00:00", "66.249.79.76", "1243");
INSERT INTO `wp_rg_form_view` VALUES("1373", "1", "2014-09-05 09:16:03", "66.249.79.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("1374", "3", "2014-09-05 10:01:37", "66.249.79.92", "5482");
INSERT INTO `wp_rg_form_view` VALUES("1375", "6", "2014-09-05 10:45:49", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1376", "3", "2014-09-05 11:00:00", "66.249.79.84", "6976");
INSERT INTO `wp_rg_form_view` VALUES("1377", "2", "2014-09-05 11:05:02", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("1378", "6", "2014-09-05 11:05:57", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("1379", "3", "2014-09-05 12:00:00", "66.249.79.76", "7219");
INSERT INTO `wp_rg_form_view` VALUES("1380", "6", "2014-09-05 12:20:23", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("1381", "3", "2014-09-05 13:00:00", "66.249.79.76", "6892");
INSERT INTO `wp_rg_form_view` VALUES("1382", "6", "2014-09-05 13:27:17", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1383", "3", "2014-09-05 14:00:01", "66.249.79.76", "7122");
INSERT INTO `wp_rg_form_view` VALUES("1384", "1", "2014-09-05 14:06:05", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1385", "6", "2014-09-05 14:08:38", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1386", "3", "2014-09-05 15:00:02", "66.249.79.76", "5330");
INSERT INTO `wp_rg_form_view` VALUES("1387", "2", "2014-09-05 15:26:39", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("1388", "6", "2014-09-05 15:32:30", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1389", "3", "2014-09-05 16:00:00", "66.249.79.84", "6066");
INSERT INTO `wp_rg_form_view` VALUES("1390", "6", "2014-09-05 16:05:26", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1391", "3", "2014-09-05 17:00:00", "66.249.79.84", "7495");
INSERT INTO `wp_rg_form_view` VALUES("1392", "6", "2014-09-05 17:45:37", "79.116.31.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("1393", "1", "2014-09-05 17:46:18", "79.116.31.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("1394", "2", "2014-09-05 17:46:31", "79.116.31.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("1395", "3", "2014-09-05 18:00:00", "66.249.79.92", "7198");
INSERT INTO `wp_rg_form_view` VALUES("1396", "3", "2014-09-05 19:00:14", "66.249.79.84", "6870");
INSERT INTO `wp_rg_form_view` VALUES("1397", "6", "2014-09-05 19:40:39", "202.46.63.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1398", "1", "2014-09-05 19:47:24", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1399", "3", "2014-09-05 20:00:00", "66.249.79.92", "1766");
INSERT INTO `wp_rg_form_view` VALUES("1400", "6", "2014-09-05 20:11:50", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1401", "3", "2014-09-05 21:00:16", "66.249.79.76", "322");
INSERT INTO `wp_rg_form_view` VALUES("1402", "6", "2014-09-05 21:31:33", "216.174.134.2", "4");
INSERT INTO `wp_rg_form_view` VALUES("1403", "3", "2014-09-05 22:00:03", "5.9.73.44", "823");
INSERT INTO `wp_rg_form_view` VALUES("1404", "1", "2014-09-05 22:00:07", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1405", "6", "2014-09-05 22:00:23", "5.9.73.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("1406", "2", "2014-09-05 22:00:25", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1407", "3", "2014-09-05 23:06:33", "66.249.79.84", "300");
INSERT INTO `wp_rg_form_view` VALUES("1408", "6", "2014-09-05 23:21:37", "157.55.39.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("1409", "3", "2014-09-06 00:01:37", "66.249.79.92", "460");
INSERT INTO `wp_rg_form_view` VALUES("1410", "1", "2014-09-06 00:50:34", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1411", "3", "2014-09-06 01:00:07", "66.249.79.84", "2000");
INSERT INTO `wp_rg_form_view` VALUES("1412", "1", "2014-09-06 01:36:06", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1413", "6", "2014-09-06 01:56:55", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1414", "3", "2014-09-06 02:00:03", "66.249.79.84", "6646");
INSERT INTO `wp_rg_form_view` VALUES("1415", "6", "2014-09-06 02:36:19", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1416", "3", "2014-09-06 03:00:01", "66.249.79.76", "6778");
INSERT INTO `wp_rg_form_view` VALUES("1417", "6", "2014-09-06 03:25:43", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1418", "3", "2014-09-06 04:00:00", "66.249.79.92", "6751");
INSERT INTO `wp_rg_form_view` VALUES("1419", "3", "2014-09-06 05:00:00", "66.249.79.76", "6879");
INSERT INTO `wp_rg_form_view` VALUES("1420", "6", "2014-09-06 05:45:39", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1421", "1", "2014-09-06 05:58:08", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1422", "3", "2014-09-06 06:00:00", "66.249.79.92", "6287");
INSERT INTO `wp_rg_form_view` VALUES("1423", "3", "2014-09-06 07:00:01", "66.249.79.84", "7760");
INSERT INTO `wp_rg_form_view` VALUES("1424", "6", "2014-09-06 07:08:30", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1425", "1", "2014-09-06 07:23:06", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1426", "3", "2014-09-06 08:00:01", "66.249.79.84", "2615");
INSERT INTO `wp_rg_form_view` VALUES("1427", "6", "2014-09-06 08:04:22", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1428", "3", "2014-09-06 09:00:03", "66.249.79.84", "6374");
INSERT INTO `wp_rg_form_view` VALUES("1429", "6", "2014-09-06 09:16:47", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1430", "3", "2014-09-06 10:00:00", "66.249.79.92", "6400");
INSERT INTO `wp_rg_form_view` VALUES("1431", "3", "2014-09-06 11:00:00", "66.249.79.84", "6852");
INSERT INTO `wp_rg_form_view` VALUES("1432", "1", "2014-09-06 11:12:00", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1433", "6", "2014-09-06 11:23:18", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1434", "3", "2014-09-06 12:00:01", "66.249.79.84", "8222");
INSERT INTO `wp_rg_form_view` VALUES("1435", "6", "2014-09-06 12:46:15", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1436", "3", "2014-09-06 13:00:02", "66.249.79.84", "7320");
INSERT INTO `wp_rg_form_view` VALUES("1437", "1", "2014-09-06 13:19:49", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1438", "6", "2014-09-06 13:23:36", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1439", "3", "2014-09-06 14:00:06", "66.249.79.92", "7572");
INSERT INTO `wp_rg_form_view` VALUES("1440", "6", "2014-09-06 14:01:47", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1441", "3", "2014-09-06 15:00:00", "66.249.79.76", "7901");
INSERT INTO `wp_rg_form_view` VALUES("1442", "6", "2014-09-06 15:27:39", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1443", "3", "2014-09-06 16:00:05", "66.249.79.76", "6704");
INSERT INTO `wp_rg_form_view` VALUES("1444", "1", "2014-09-06 16:22:48", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1445", "3", "2014-09-06 17:00:04", "100.43.85.24", "6698");
INSERT INTO `wp_rg_form_view` VALUES("1446", "6", "2014-09-06 17:12:57", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1447", "3", "2014-09-06 18:00:03", "66.249.79.76", "7077");
INSERT INTO `wp_rg_form_view` VALUES("1448", "6", "2014-09-06 18:15:50", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1449", "3", "2014-09-06 19:00:00", "66.249.79.84", "6573");
INSERT INTO `wp_rg_form_view` VALUES("1450", "1", "2014-09-06 19:05:22", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1451", "2", "2014-09-06 19:13:36", "89.234.68.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("1452", "6", "2014-09-06 19:40:37", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1453", "3", "2014-09-06 20:00:00", "66.249.79.84", "7253");
INSERT INTO `wp_rg_form_view` VALUES("1454", "6", "2014-09-06 20:41:43", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("1455", "3", "2014-09-06 21:00:00", "66.249.79.84", "6988");
INSERT INTO `wp_rg_form_view` VALUES("1456", "6", "2014-09-06 21:10:27", "66.249.79.84", "7");
INSERT INTO `wp_rg_form_view` VALUES("1457", "1", "2014-09-06 21:24:31", "212.129.42.207", "3");
INSERT INTO `wp_rg_form_view` VALUES("1458", "2", "2014-09-06 21:29:08", "208.89.211.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("1459", "3", "2014-09-06 22:00:00", "66.249.79.76", "5288");
INSERT INTO `wp_rg_form_view` VALUES("1460", "6", "2014-09-06 22:31:40", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1461", "3", "2014-09-06 23:00:00", "66.249.79.84", "9185");
INSERT INTO `wp_rg_form_view` VALUES("1462", "6", "2014-09-06 23:41:33", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("1463", "3", "2014-09-07 00:00:00", "66.249.79.92", "7996");
INSERT INTO `wp_rg_form_view` VALUES("1464", "1", "2014-09-07 00:51:44", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1465", "3", "2014-09-07 01:00:02", "66.249.79.92", "7794");
INSERT INTO `wp_rg_form_view` VALUES("1466", "6", "2014-09-07 01:08:32", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1467", "3", "2014-09-07 02:00:03", "66.249.79.92", "8360");
INSERT INTO `wp_rg_form_view` VALUES("1468", "6", "2014-09-07 02:06:05", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1469", "1", "2014-09-07 02:31:19", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1470", "2", "2014-09-07 02:56:27", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("1471", "3", "2014-09-07 03:00:01", "66.249.79.84", "8087");
INSERT INTO `wp_rg_form_view` VALUES("1472", "6", "2014-09-07 03:59:01", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1473", "3", "2014-09-07 04:00:00", "66.249.79.84", "7016");
INSERT INTO `wp_rg_form_view` VALUES("1474", "3", "2014-09-07 05:00:00", "66.249.79.92", "8636");
INSERT INTO `wp_rg_form_view` VALUES("1475", "6", "2014-09-07 05:55:31", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1476", "3", "2014-09-07 06:00:00", "66.249.79.92", "6106");
INSERT INTO `wp_rg_form_view` VALUES("1477", "6", "2014-09-07 06:25:10", "66.249.79.84", "7");
INSERT INTO `wp_rg_form_view` VALUES("1478", "1", "2014-09-07 06:35:52", "49.143.192.218", "4");
INSERT INTO `wp_rg_form_view` VALUES("1479", "3", "2014-09-07 07:00:00", "66.249.79.92", "12456");
INSERT INTO `wp_rg_form_view` VALUES("1480", "6", "2014-09-07 07:06:02", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("1481", "1", "2014-09-07 07:36:21", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1482", "3", "2014-09-07 08:00:00", "66.249.79.76", "9745");
INSERT INTO `wp_rg_form_view` VALUES("1483", "6", "2014-09-07 08:23:27", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("1484", "3", "2014-09-07 09:00:00", "66.249.79.76", "10287");
INSERT INTO `wp_rg_form_view` VALUES("1485", "6", "2014-09-07 09:19:36", "217.69.133.221", "12");
INSERT INTO `wp_rg_form_view` VALUES("1486", "3", "2014-09-07 10:00:26", "66.249.79.76", "8984");
INSERT INTO `wp_rg_form_view` VALUES("1487", "6", "2014-09-07 10:04:50", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1488", "3", "2014-09-07 11:00:00", "66.249.79.92", "7300");
INSERT INTO `wp_rg_form_view` VALUES("1489", "1", "2014-09-07 11:05:44", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1490", "6", "2014-09-07 11:12:14", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1491", "3", "2014-09-07 12:00:00", "66.249.79.92", "9783");
INSERT INTO `wp_rg_form_view` VALUES("1492", "6", "2014-09-07 12:46:07", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1493", "3", "2014-09-07 13:00:00", "66.249.79.92", "8096");
INSERT INTO `wp_rg_form_view` VALUES("1494", "6", "2014-09-07 13:28:50", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1495", "3", "2014-09-07 14:00:00", "66.249.79.84", "10680");
INSERT INTO `wp_rg_form_view` VALUES("1496", "6", "2014-09-07 14:02:11", "66.249.79.84", "36");
INSERT INTO `wp_rg_form_view` VALUES("1497", "2", "2014-09-07 14:35:36", "144.76.183.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("1498", "1", "2014-09-07 14:35:57", "144.76.183.41", "5");
INSERT INTO `wp_rg_form_view` VALUES("1499", "3", "2014-09-07 15:00:00", "144.76.183.41", "11457");
INSERT INTO `wp_rg_form_view` VALUES("1500", "6", "2014-09-07 15:01:27", "144.76.183.41", "38");
INSERT INTO `wp_rg_form_view` VALUES("1501", "3", "2014-09-07 16:00:00", "66.249.79.76", "8424");
INSERT INTO `wp_rg_form_view` VALUES("1502", "6", "2014-09-07 16:15:08", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1503", "3", "2014-09-07 17:00:00", "66.249.79.76", "8463");
INSERT INTO `wp_rg_form_view` VALUES("1504", "6", "2014-09-07 17:08:37", "217.69.133.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("1505", "3", "2014-09-07 18:00:00", "66.249.79.76", "8491");
INSERT INTO `wp_rg_form_view` VALUES("1506", "6", "2014-09-07 18:05:00", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1507", "3", "2014-09-07 19:00:00", "66.249.79.92", "4095");
INSERT INTO `wp_rg_form_view` VALUES("1508", "1", "2014-09-07 19:18:06", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1509", "6", "2014-09-07 19:36:49", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1510", "3", "2014-09-07 20:00:08", "66.249.79.76", "472");
INSERT INTO `wp_rg_form_view` VALUES("1511", "6", "2014-09-07 20:05:31", "157.55.39.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("1512", "3", "2014-09-07 21:00:52", "66.249.79.76", "88");
INSERT INTO `wp_rg_form_view` VALUES("1513", "3", "2014-09-07 22:13:29", "66.249.79.92", "566");
INSERT INTO `wp_rg_form_view` VALUES("1514", "1", "2014-09-07 22:15:35", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1515", "3", "2014-09-07 23:00:06", "66.249.79.92", "656");
INSERT INTO `wp_rg_form_view` VALUES("1516", "6", "2014-09-07 23:48:30", "96.50.72.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("1517", "1", "2014-09-07 23:58:33", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1518", "3", "2014-09-08 00:00:04", "66.249.79.76", "454");
INSERT INTO `wp_rg_form_view` VALUES("1519", "3", "2014-09-08 01:00:44", "66.249.79.84", "561");
INSERT INTO `wp_rg_form_view` VALUES("1520", "6", "2014-09-08 01:09:33", "217.69.133.222", "2");
INSERT INTO `wp_rg_form_view` VALUES("1521", "3", "2014-09-08 02:00:30", "66.249.79.84", "622");
INSERT INTO `wp_rg_form_view` VALUES("1522", "3", "2014-09-08 03:03:48", "66.249.79.76", "660");
INSERT INTO `wp_rg_form_view` VALUES("1523", "3", "2014-09-08 04:00:20", "66.249.79.84", "1678");
INSERT INTO `wp_rg_form_view` VALUES("1524", "1", "2014-09-08 04:48:23", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1525", "3", "2014-09-08 05:00:01", "66.249.79.76", "6613");
INSERT INTO `wp_rg_form_view` VALUES("1526", "1", "2014-09-08 05:39:50", "162.243.174.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("1527", "2", "2014-09-08 05:39:50", "162.243.174.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("1528", "6", "2014-09-08 05:39:51", "162.243.174.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("1529", "3", "2014-09-08 06:00:00", "66.249.79.84", "6720");
INSERT INTO `wp_rg_form_view` VALUES("1530", "6", "2014-09-08 06:01:48", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("1531", "3", "2014-09-08 07:00:00", "66.249.79.76", "2148");
INSERT INTO `wp_rg_form_view` VALUES("1532", "6", "2014-09-08 07:19:40", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1533", "3", "2014-09-08 08:02:54", "66.249.79.76", "408");
INSERT INTO `wp_rg_form_view` VALUES("1534", "6", "2014-09-08 08:23:49", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1535", "1", "2014-09-08 08:25:53", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1536", "3", "2014-09-08 09:00:02", "66.249.79.76", "524");
INSERT INTO `wp_rg_form_view` VALUES("1537", "1", "2014-09-08 09:06:28", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1538", "6", "2014-09-08 09:15:01", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1539", "3", "2014-09-08 10:00:54", "66.249.79.84", "668");
INSERT INTO `wp_rg_form_view` VALUES("1540", "6", "2014-09-08 10:03:19", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("1541", "3", "2014-09-08 11:00:21", "66.249.79.84", "500");
INSERT INTO `wp_rg_form_view` VALUES("1542", "3", "2014-09-08 12:03:40", "66.249.67.76", "437");
INSERT INTO `wp_rg_form_view` VALUES("1543", "1", "2014-09-08 12:22:19", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1544", "6", "2014-09-08 12:50:29", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1545", "3", "2014-09-08 13:01:19", "66.249.67.92", "267");
INSERT INTO `wp_rg_form_view` VALUES("1546", "6", "2014-09-08 13:20:56", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1547", "3", "2014-09-08 14:05:36", "66.249.67.92", "271");
INSERT INTO `wp_rg_form_view` VALUES("1548", "6", "2014-09-08 14:12:01", "66.249.67.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("1549", "3", "2014-09-08 15:00:20", "66.249.67.92", "402");
INSERT INTO `wp_rg_form_view` VALUES("1550", "3", "2014-09-08 16:00:13", "207.194.133.9", "2276");
INSERT INTO `wp_rg_form_view` VALUES("1551", "1", "2014-09-08 16:42:30", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1552", "3", "2014-09-08 17:00:25", "66.249.79.92", "6604");
INSERT INTO `wp_rg_form_view` VALUES("1553", "3", "2014-09-08 18:00:04", "66.249.79.84", "6446");
INSERT INTO `wp_rg_form_view` VALUES("1554", "6", "2014-09-08 18:14:35", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1555", "3", "2014-09-08 19:00:13", "66.249.79.84", "804");
INSERT INTO `wp_rg_form_view` VALUES("1556", "1", "2014-09-08 20:04:08", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1557", "3", "2014-09-08 20:04:10", "192.99.221.234", "110");
INSERT INTO `wp_rg_form_view` VALUES("1558", "6", "2014-09-08 20:24:52", "184.66.43.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("1559", "3", "2014-09-08 21:00:26", "66.249.79.84", "384");
INSERT INTO `wp_rg_form_view` VALUES("1560", "3", "2014-09-08 22:00:58", "66.249.79.84", "320");
INSERT INTO `wp_rg_form_view` VALUES("1561", "1", "2014-09-08 22:15:55", "212.129.42.207", "3");
INSERT INTO `wp_rg_form_view` VALUES("1562", "3", "2014-09-08 23:02:17", "66.249.79.84", "422");
INSERT INTO `wp_rg_form_view` VALUES("1563", "1", "2014-09-08 23:09:24", "184.66.152.99", "4");
INSERT INTO `wp_rg_form_view` VALUES("1564", "6", "2014-09-08 23:59:54", "5.9.73.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("1565", "2", "2014-09-08 23:59:56", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1566", "3", "2014-09-09 00:00:00", "5.9.73.44", "579");
INSERT INTO `wp_rg_form_view` VALUES("1567", "3", "2014-09-09 01:03:11", "66.249.79.76", "318");
INSERT INTO `wp_rg_form_view` VALUES("1568", "6", "2014-09-09 01:03:58", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1569", "3", "2014-09-09 02:01:04", "66.249.79.76", "320");
INSERT INTO `wp_rg_form_view` VALUES("1570", "1", "2014-09-09 02:27:39", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1571", "3", "2014-09-09 03:04:18", "66.249.79.84", "4076");
INSERT INTO `wp_rg_form_view` VALUES("1572", "6", "2014-09-09 03:23:47", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1573", "3", "2014-09-09 04:00:00", "66.249.79.92", "5152");
INSERT INTO `wp_rg_form_view` VALUES("1574", "6", "2014-09-09 04:46:14", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1575", "3", "2014-09-09 05:00:04", "66.249.79.92", "4968");
INSERT INTO `wp_rg_form_view` VALUES("1576", "6", "2014-09-09 05:17:09", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("1577", "1", "2014-09-09 05:52:14", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1578", "3", "2014-09-09 06:00:01", "66.249.79.92", "5459");
INSERT INTO `wp_rg_form_view` VALUES("1579", "6", "2014-09-09 06:25:42", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("1580", "1", "2014-09-09 06:33:23", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1581", "3", "2014-09-09 07:00:00", "66.249.79.92", "1233");
INSERT INTO `wp_rg_form_view` VALUES("1582", "3", "2014-09-09 08:03:33", "66.249.79.92", "759");
INSERT INTO `wp_rg_form_view` VALUES("1583", "6", "2014-09-09 08:08:10", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("1584", "3", "2014-09-09 09:00:15", "66.249.79.84", "3753");
INSERT INTO `wp_rg_form_view` VALUES("1585", "6", "2014-09-09 09:03:14", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1586", "3", "2014-09-09 10:00:00", "66.249.79.84", "7460");
INSERT INTO `wp_rg_form_view` VALUES("1587", "1", "2014-09-09 10:08:17", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1588", "6", "2014-09-09 10:08:22", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1589", "3", "2014-09-09 11:00:01", "66.249.79.92", "7521");
INSERT INTO `wp_rg_form_view` VALUES("1590", "6", "2014-09-09 11:00:06", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1591", "3", "2014-09-09 12:00:00", "66.249.79.92", "7555");
INSERT INTO `wp_rg_form_view` VALUES("1592", "6", "2014-09-09 12:42:06", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1593", "3", "2014-09-09 13:00:00", "66.249.79.84", "8089");
INSERT INTO `wp_rg_form_view` VALUES("1594", "6", "2014-09-09 13:39:54", "100.43.85.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("1595", "3", "2014-09-09 14:00:00", "66.249.79.84", "8004");
INSERT INTO `wp_rg_form_view` VALUES("1596", "6", "2014-09-09 14:16:10", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1597", "1", "2014-09-09 14:43:32", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1598", "3", "2014-09-09 15:00:00", "66.249.79.92", "7934");
INSERT INTO `wp_rg_form_view` VALUES("1599", "3", "2014-09-09 16:00:00", "66.249.79.84", "7945");
INSERT INTO `wp_rg_form_view` VALUES("1600", "6", "2014-09-09 16:37:10", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1601", "3", "2014-09-09 17:00:00", "66.249.79.76", "8223");
INSERT INTO `wp_rg_form_view` VALUES("1602", "6", "2014-09-09 17:15:12", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1603", "1", "2014-09-09 17:18:22", "192.99.221.234", "4");
INSERT INTO `wp_rg_form_view` VALUES("1604", "2", "2014-09-09 17:45:02", "23.92.221.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("1605", "3", "2014-09-09 18:00:00", "66.249.79.92", "6866");
INSERT INTO `wp_rg_form_view` VALUES("1606", "6", "2014-09-09 18:22:34", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("1607", "3", "2014-09-09 19:00:05", "66.249.79.92", "866");
INSERT INTO `wp_rg_form_view` VALUES("1608", "6", "2014-09-09 19:01:38", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1609", "1", "2014-09-09 19:26:43", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1610", "3", "2014-09-09 20:00:21", "66.249.79.84", "956");
INSERT INTO `wp_rg_form_view` VALUES("1611", "6", "2014-09-09 20:08:25", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1612", "1", "2014-09-09 20:59:52", "184.66.97.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("1613", "3", "2014-09-09 21:00:33", "66.249.79.84", "1004");
INSERT INTO `wp_rg_form_view` VALUES("1614", "6", "2014-09-09 21:07:42", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1615", "3", "2014-09-09 22:00:14", "66.249.79.84", "980");
INSERT INTO `wp_rg_form_view` VALUES("1616", "2", "2014-09-09 22:40:37", "24.69.59.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("1617", "3", "2014-09-09 23:00:50", "66.249.79.92", "686");
INSERT INTO `wp_rg_form_view` VALUES("1618", "1", "2014-09-09 23:09:44", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1619", "3", "2014-09-10 00:03:10", "66.249.79.84", "622");
INSERT INTO `wp_rg_form_view` VALUES("1620", "3", "2014-09-10 01:00:04", "66.249.79.76", "1980");
INSERT INTO `wp_rg_form_view` VALUES("1621", "3", "2014-09-10 02:00:04", "66.249.79.92", "6374");
INSERT INTO `wp_rg_form_view` VALUES("1622", "6", "2014-09-10 02:11:45", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1623", "1", "2014-09-10 02:46:56", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1624", "3", "2014-09-10 03:00:00", "66.249.79.76", "7602");
INSERT INTO `wp_rg_form_view` VALUES("1625", "6", "2014-09-10 03:00:24", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("1626", "1", "2014-09-10 03:19:36", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1627", "3", "2014-09-10 04:00:00", "66.249.79.92", "7362");
INSERT INTO `wp_rg_form_view` VALUES("1628", "1", "2014-09-10 04:03:13", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1629", "6", "2014-09-10 04:04:18", "37.58.100.79", "4");
INSERT INTO `wp_rg_form_view` VALUES("1630", "3", "2014-09-10 05:00:04", "66.249.79.92", "7265");
INSERT INTO `wp_rg_form_view` VALUES("1631", "6", "2014-09-10 05:19:30", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1632", "3", "2014-09-10 06:00:00", "66.249.79.92", "2075");
INSERT INTO `wp_rg_form_view` VALUES("1633", "6", "2014-09-10 06:26:42", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("1634", "3", "2014-09-10 07:01:01", "66.249.79.92", "793");
INSERT INTO `wp_rg_form_view` VALUES("1635", "1", "2014-09-10 07:47:35", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1636", "6", "2014-09-10 08:01:53", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1637", "3", "2014-09-10 08:01:53", "66.249.79.76", "630");
INSERT INTO `wp_rg_form_view` VALUES("1638", "3", "2014-09-10 09:00:59", "66.249.79.84", "760");
INSERT INTO `wp_rg_form_view` VALUES("1639", "6", "2014-09-10 09:21:41", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("1640", "3", "2014-09-10 10:00:07", "66.249.79.76", "808");
INSERT INTO `wp_rg_form_view` VALUES("1641", "6", "2014-09-10 10:32:28", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1642", "3", "2014-09-10 11:00:13", "66.249.79.92", "654");
INSERT INTO `wp_rg_form_view` VALUES("1643", "3", "2014-09-10 12:00:22", "66.249.67.76", "560");
INSERT INTO `wp_rg_form_view` VALUES("1644", "1", "2014-09-10 12:29:01", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1645", "2", "2014-09-10 12:33:26", "193.201.224.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("1646", "3", "2014-09-10 13:03:08", "66.249.67.84", "616");
INSERT INTO `wp_rg_form_view` VALUES("1647", "6", "2014-09-10 13:56:25", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1648", "3", "2014-09-10 14:00:20", "66.249.67.76", "6116");
INSERT INTO `wp_rg_form_view` VALUES("1649", "6", "2014-09-10 14:19:12", "66.249.67.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("1650", "3", "2014-09-10 15:00:00", "66.249.67.76", "6606");
INSERT INTO `wp_rg_form_view` VALUES("1651", "6", "2014-09-10 15:02:10", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1652", "1", "2014-09-10 15:10:04", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1653", "3", "2014-09-10 16:00:00", "66.249.67.92", "7512");
INSERT INTO `wp_rg_form_view` VALUES("1654", "6", "2014-09-10 16:03:35", "66.249.67.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1655", "1", "2014-09-10 16:22:42", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1656", "2", "2014-09-10 16:58:52", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("1657", "3", "2014-09-10 17:00:00", "66.249.79.76", "6746");
INSERT INTO `wp_rg_form_view` VALUES("1658", "6", "2014-09-10 17:34:59", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1659", "3", "2014-09-10 18:00:00", "66.249.79.84", "1412");
INSERT INTO `wp_rg_form_view` VALUES("1660", "6", "2014-09-10 18:05:29", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1661", "3", "2014-09-10 19:00:14", "66.249.79.76", "360");
INSERT INTO `wp_rg_form_view` VALUES("1662", "3", "2014-09-10 20:10:54", "100.43.85.24", "542");
INSERT INTO `wp_rg_form_view` VALUES("1663", "1", "2014-09-10 20:20:47", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1664", "3", "2014-09-10 21:00:49", "66.249.79.84", "969");
INSERT INTO `wp_rg_form_view` VALUES("1665", "2", "2014-09-10 21:13:11", "54.176.253.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("1666", "1", "2014-09-10 21:13:23", "54.176.253.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("1667", "6", "2014-09-10 21:18:30", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1668", "3", "2014-09-10 22:00:32", "66.249.79.92", "110");
INSERT INTO `wp_rg_form_view` VALUES("1669", "3", "2014-09-10 23:20:22", "100.43.85.24", "28");
INSERT INTO `wp_rg_form_view` VALUES("1670", "6", "2014-09-10 23:20:23", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("1671", "3", "2014-09-11 00:06:49", "100.43.85.24", "72");
INSERT INTO `wp_rg_form_view` VALUES("1672", "1", "2014-09-11 00:47:54", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1673", "3", "2014-09-11 01:12:30", "92.85.33.170", "337");
INSERT INTO `wp_rg_form_view` VALUES("1674", "6", "2014-09-11 01:13:22", "92.85.33.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("1675", "1", "2014-09-11 01:13:48", "92.85.33.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("1676", "2", "2014-09-11 01:13:56", "92.85.33.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("1677", "3", "2014-09-11 02:00:20", "100.43.85.24", "892");
INSERT INTO `wp_rg_form_view` VALUES("1678", "1", "2014-09-11 02:05:23", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1679", "6", "2014-09-11 02:17:20", "100.43.85.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("1680", "3", "2014-09-11 03:00:01", "66.249.79.84", "6612");
INSERT INTO `wp_rg_form_view` VALUES("1681", "6", "2014-09-11 03:27:28", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("1682", "3", "2014-09-11 04:00:00", "66.249.79.84", "7012");
INSERT INTO `wp_rg_form_view` VALUES("1683", "3", "2014-09-11 05:00:17", "66.249.79.76", "7384");
INSERT INTO `wp_rg_form_view` VALUES("1684", "1", "2014-09-11 05:24:33", "212.83.173.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("1685", "6", "2014-09-11 05:44:20", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1686", "3", "2014-09-11 06:00:02", "66.249.79.76", "3926");
INSERT INTO `wp_rg_form_view` VALUES("1687", "6", "2014-09-11 06:16:32", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("1688", "1", "2014-09-11 06:17:20", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1689", "3", "2014-09-11 07:03:47", "66.249.79.84", "1458");
INSERT INTO `wp_rg_form_view` VALUES("1690", "3", "2014-09-11 08:00:00", "66.249.79.84", "6430");
INSERT INTO `wp_rg_form_view` VALUES("1691", "6", "2014-09-11 08:40:00", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1692", "3", "2014-09-11 09:00:16", "66.249.79.92", "7029");
INSERT INTO `wp_rg_form_view` VALUES("1693", "1", "2014-09-11 09:39:46", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1694", "6", "2014-09-11 09:48:22", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1695", "3", "2014-09-11 10:00:00", "66.249.79.84", "7071");
INSERT INTO `wp_rg_form_view` VALUES("1696", "6", "2014-09-11 10:18:30", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1697", "3", "2014-09-11 11:00:00", "66.249.79.84", "7031");
INSERT INTO `wp_rg_form_view` VALUES("1698", "6", "2014-09-11 11:38:37", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1699", "3", "2014-09-11 12:00:00", "66.249.79.76", "7002");
INSERT INTO `wp_rg_form_view` VALUES("1700", "6", "2014-09-11 12:23:27", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("1701", "3", "2014-09-11 13:00:00", "66.249.79.92", "7095");
INSERT INTO `wp_rg_form_view` VALUES("1702", "6", "2014-09-11 13:03:57", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1703", "1", "2014-09-11 13:09:34", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1704", "3", "2014-09-11 14:00:02", "66.249.79.76", "7099");
INSERT INTO `wp_rg_form_view` VALUES("1705", "6", "2014-09-11 14:10:14", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1706", "3", "2014-09-11 15:00:00", "66.249.79.92", "6936");
INSERT INTO `wp_rg_form_view` VALUES("1707", "3", "2014-09-11 16:00:01", "66.249.79.92", "6975");
INSERT INTO `wp_rg_form_view` VALUES("1708", "1", "2014-09-11 16:05:34", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1709", "3", "2014-09-11 17:00:00", "66.249.79.92", "6899");
INSERT INTO `wp_rg_form_view` VALUES("1710", "6", "2014-09-11 17:01:20", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1711", "3", "2014-09-11 18:00:00", "66.249.79.76", "3090");
INSERT INTO `wp_rg_form_view` VALUES("1712", "6", "2014-09-11 18:26:16", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1713", "3", "2014-09-11 19:02:47", "66.249.79.76", "1252");
INSERT INTO `wp_rg_form_view` VALUES("1714", "3", "2014-09-11 20:00:06", "66.249.79.76", "4578");
INSERT INTO `wp_rg_form_view` VALUES("1715", "1", "2014-09-11 20:14:35", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1716", "6", "2014-09-11 20:25:34", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1717", "3", "2014-09-11 21:00:00", "66.249.79.84", "6630");
INSERT INTO `wp_rg_form_view` VALUES("1718", "1", "2014-09-11 21:53:36", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1719", "3", "2014-09-11 22:00:07", "66.249.79.76", "6932");
INSERT INTO `wp_rg_form_view` VALUES("1720", "3", "2014-09-11 23:00:00", "66.249.79.76", "7054");
INSERT INTO `wp_rg_form_view` VALUES("1721", "6", "2014-09-11 23:22:35", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1722", "3", "2014-09-12 00:00:08", "66.249.79.76", "7105");
INSERT INTO `wp_rg_form_view` VALUES("1723", "1", "2014-09-12 00:04:08", "155.94.218.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("1724", "3", "2014-09-12 01:00:00", "66.249.79.84", "7551");
INSERT INTO `wp_rg_form_view` VALUES("1725", "1", "2014-09-12 01:02:05", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1726", "6", "2014-09-12 01:02:38", "5.9.73.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("1727", "2", "2014-09-12 01:02:43", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1728", "3", "2014-09-12 02:00:05", "66.249.79.84", "7084");
INSERT INTO `wp_rg_form_view` VALUES("1729", "1", "2014-09-12 02:28:46", "218.88.109.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("1730", "6", "2014-09-12 02:38:02", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1731", "3", "2014-09-12 03:00:02", "66.249.79.76", "6979");
INSERT INTO `wp_rg_form_view` VALUES("1732", "6", "2014-09-12 03:17:25", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1733", "3", "2014-09-12 04:00:00", "66.249.79.76", "6393");
INSERT INTO `wp_rg_form_view` VALUES("1734", "6", "2014-09-12 04:29:04", "100.43.85.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("1735", "2", "2014-09-12 04:40:22", "62.210.78.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("1736", "1", "2014-09-12 04:40:28", "62.210.78.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("1737", "3", "2014-09-12 05:00:03", "66.249.79.76", "6704");
INSERT INTO `wp_rg_form_view` VALUES("1738", "3", "2014-09-12 06:00:17", "66.249.79.84", "344");
INSERT INTO `wp_rg_form_view` VALUES("1739", "3", "2014-09-12 07:02:20", "66.249.79.92", "1412");
INSERT INTO `wp_rg_form_view` VALUES("1740", "1", "2014-09-12 07:52:30", "208.66.72.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("1741", "3", "2014-09-12 08:00:02", "66.249.79.84", "6664");
INSERT INTO `wp_rg_form_view` VALUES("1742", "6", "2014-09-12 08:06:20", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1743", "1", "2014-09-12 08:29:27", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1744", "3", "2014-09-12 09:00:12", "66.249.79.76", "6102");
INSERT INTO `wp_rg_form_view` VALUES("1745", "3", "2014-09-12 10:00:00", "66.249.79.92", "6976");
INSERT INTO `wp_rg_form_view` VALUES("1746", "6", "2014-09-12 10:10:58", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1747", "3", "2014-09-12 11:00:00", "66.249.79.92", "7062");
INSERT INTO `wp_rg_form_view` VALUES("1748", "1", "2014-09-12 11:06:29", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1749", "6", "2014-09-12 11:33:49", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1750", "3", "2014-09-12 12:00:00", "66.249.79.84", "6842");
INSERT INTO `wp_rg_form_view` VALUES("1751", "1", "2014-09-12 12:42:43", "157.55.39.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("1752", "3", "2014-09-12 13:00:00", "66.249.79.84", "6944");
INSERT INTO `wp_rg_form_view` VALUES("1753", "6", "2014-09-12 13:19:24", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1754", "3", "2014-09-12 14:00:00", "66.249.79.84", "6838");
INSERT INTO `wp_rg_form_view` VALUES("1755", "2", "2014-09-12 14:04:37", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("1756", "6", "2014-09-12 14:52:41", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1757", "3", "2014-09-12 15:00:00", "66.249.79.92", "6756");
INSERT INTO `wp_rg_form_view` VALUES("1758", "1", "2014-09-12 15:35:20", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1759", "3", "2014-09-12 16:00:02", "66.249.79.84", "6716");
INSERT INTO `wp_rg_form_view` VALUES("1760", "1", "2014-09-12 16:43:20", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1761", "3", "2014-09-12 17:00:35", "66.249.79.84", "3063");
INSERT INTO `wp_rg_form_view` VALUES("1762", "6", "2014-09-12 17:25:31", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1763", "1", "2014-09-12 17:41:29", "198.211.99.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("1764", "2", "2014-09-12 17:41:30", "198.211.99.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("1765", "3", "2014-09-12 18:07:48", "75.154.237.35", "42");
INSERT INTO `wp_rg_form_view` VALUES("1766", "3", "2014-09-12 19:02:48", "66.249.79.84", "2274");
INSERT INTO `wp_rg_form_view` VALUES("1767", "3", "2014-09-12 20:00:00", "66.249.79.76", "5801");
INSERT INTO `wp_rg_form_view` VALUES("1768", "6", "2014-09-12 20:44:39", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1769", "3", "2014-09-12 21:00:00", "66.249.79.92", "7716");
INSERT INTO `wp_rg_form_view` VALUES("1770", "6", "2014-09-12 21:37:59", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1771", "3", "2014-09-12 22:00:00", "66.249.79.84", "7630");
INSERT INTO `wp_rg_form_view` VALUES("1772", "1", "2014-09-12 22:57:39", "222.95.87.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("1773", "3", "2014-09-12 23:00:25", "66.249.79.92", "7562");
INSERT INTO `wp_rg_form_view` VALUES("1774", "1", "2014-09-12 23:19:38", "62.210.84.18", "3");
INSERT INTO `wp_rg_form_view` VALUES("1775", "6", "2014-09-12 23:30:54", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1776", "3", "2014-09-13 00:00:01", "66.249.79.92", "7219");
INSERT INTO `wp_rg_form_view` VALUES("1777", "6", "2014-09-13 00:24:09", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1778", "3", "2014-09-13 01:00:01", "66.249.79.76", "6698");
INSERT INTO `wp_rg_form_view` VALUES("1779", "6", "2014-09-13 01:50:40", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1780", "3", "2014-09-13 02:00:01", "66.249.79.84", "6506");
INSERT INTO `wp_rg_form_view` VALUES("1781", "6", "2014-09-13 02:26:46", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1782", "3", "2014-09-13 03:00:00", "66.249.79.92", "6056");
INSERT INTO `wp_rg_form_view` VALUES("1783", "6", "2014-09-13 03:35:16", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1784", "3", "2014-09-13 04:00:03", "66.249.79.76", "5684");
INSERT INTO `wp_rg_form_view` VALUES("1785", "6", "2014-09-13 04:59:10", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1786", "3", "2014-09-13 05:00:03", "66.249.79.76", "3106");
INSERT INTO `wp_rg_form_view` VALUES("1787", "6", "2014-09-13 05:08:22", "27.150.211.246", "6");
INSERT INTO `wp_rg_form_view` VALUES("1788", "1", "2014-09-13 05:33:28", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1789", "3", "2014-09-13 06:17:51", "66.249.79.92", "200");
INSERT INTO `wp_rg_form_view` VALUES("1790", "3", "2014-09-13 07:02:24", "66.249.79.76", "5508");
INSERT INTO `wp_rg_form_view` VALUES("1791", "3", "2014-09-13 08:00:05", "66.249.79.76", "6091");
INSERT INTO `wp_rg_form_view` VALUES("1792", "6", "2014-09-13 08:08:37", "37.58.100.234", "3");
INSERT INTO `wp_rg_form_view` VALUES("1793", "3", "2014-09-13 09:00:00", "66.249.79.84", "7356");
INSERT INTO `wp_rg_form_view` VALUES("1794", "6", "2014-09-13 09:12:40", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1795", "3", "2014-09-13 10:00:00", "66.249.79.92", "7566");
INSERT INTO `wp_rg_form_view` VALUES("1796", "2", "2014-09-13 10:02:32", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("1797", "6", "2014-09-13 10:03:20", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1798", "1", "2014-09-13 10:19:22", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1799", "3", "2014-09-13 11:00:00", "66.249.79.76", "8334");
INSERT INTO `wp_rg_form_view` VALUES("1800", "6", "2014-09-13 11:28:30", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("1801", "1", "2014-09-13 11:32:19", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1802", "3", "2014-09-13 12:00:00", "66.249.79.84", "11590");
INSERT INTO `wp_rg_form_view` VALUES("1803", "6", "2014-09-13 12:01:56", "66.249.79.92", "19");
INSERT INTO `wp_rg_form_view` VALUES("1804", "2", "2014-09-13 12:23:34", "157.55.39.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("1805", "1", "2014-09-13 12:23:37", "157.55.39.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("1806", "3", "2014-09-13 13:00:00", "66.249.79.76", "8645");
INSERT INTO `wp_rg_form_view` VALUES("1807", "6", "2014-09-13 13:09:17", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1808", "1", "2014-09-13 13:23:07", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1809", "3", "2014-09-13 14:00:00", "66.249.79.76", "8338");
INSERT INTO `wp_rg_form_view` VALUES("1810", "6", "2014-09-13 14:12:37", "66.249.79.76", "9");
INSERT INTO `wp_rg_form_view` VALUES("1811", "3", "2014-09-13 15:00:00", "66.249.79.84", "6835");
INSERT INTO `wp_rg_form_view` VALUES("1812", "6", "2014-09-13 15:00:18", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1813", "3", "2014-09-13 16:00:00", "66.249.79.76", "6631");
INSERT INTO `wp_rg_form_view` VALUES("1814", "6", "2014-09-13 16:41:46", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1815", "3", "2014-09-13 17:00:00", "66.249.79.76", "3599");
INSERT INTO `wp_rg_form_view` VALUES("1816", "6", "2014-09-13 17:07:41", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1817", "3", "2014-09-13 18:01:38", "66.249.79.84", "512");
INSERT INTO `wp_rg_form_view` VALUES("1818", "3", "2014-09-13 19:00:09", "66.249.79.84", "2488");
INSERT INTO `wp_rg_form_view` VALUES("1819", "3", "2014-09-13 20:00:07", "37.58.100.234", "20");
INSERT INTO `wp_rg_form_view` VALUES("1820", "3", "2014-09-13 21:31:01", "66.249.79.76", "40");
INSERT INTO `wp_rg_form_view` VALUES("1821", "3", "2014-09-13 22:05:46", "68.180.225.45", "292");
INSERT INTO `wp_rg_form_view` VALUES("1822", "3", "2014-09-13 23:01:53", "66.249.79.92", "340");
INSERT INTO `wp_rg_form_view` VALUES("1823", "3", "2014-09-14 00:01:19", "66.249.79.92", "454");
INSERT INTO `wp_rg_form_view` VALUES("1824", "3", "2014-09-14 01:00:05", "66.249.79.84", "812");
INSERT INTO `wp_rg_form_view` VALUES("1825", "1", "2014-09-14 01:19:09", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1826", "3", "2014-09-14 02:01:11", "66.249.79.92", "2185");
INSERT INTO `wp_rg_form_view` VALUES("1827", "6", "2014-09-14 02:20:05", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1828", "3", "2014-09-14 03:00:06", "66.249.79.76", "6183");
INSERT INTO `wp_rg_form_view` VALUES("1829", "1", "2014-09-14 03:33:50", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1830", "3", "2014-09-14 04:00:00", "66.249.79.84", "6926");
INSERT INTO `wp_rg_form_view` VALUES("1831", "6", "2014-09-14 04:02:06", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1832", "1", "2014-09-14 04:49:42", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1833", "3", "2014-09-14 05:00:00", "66.249.79.92", "4468");
INSERT INTO `wp_rg_form_view` VALUES("1834", "1", "2014-09-14 05:59:41", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1835", "3", "2014-09-14 06:00:29", "66.249.79.92", "484");
INSERT INTO `wp_rg_form_view` VALUES("1836", "6", "2014-09-14 06:58:15", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1837", "3", "2014-09-14 07:00:05", "66.249.79.84", "5550");
INSERT INTO `wp_rg_form_view` VALUES("1838", "3", "2014-09-14 08:00:50", "66.249.79.76", "3174");
INSERT INTO `wp_rg_form_view` VALUES("1839", "3", "2014-09-14 09:00:37", "66.249.79.84", "4007");
INSERT INTO `wp_rg_form_view` VALUES("1840", "3", "2014-09-14 10:00:00", "66.249.79.92", "6919");
INSERT INTO `wp_rg_form_view` VALUES("1841", "6", "2014-09-14 10:39:50", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1842", "3", "2014-09-14 11:00:02", "66.249.79.76", "6788");
INSERT INTO `wp_rg_form_view` VALUES("1843", "6", "2014-09-14 11:35:47", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1844", "3", "2014-09-14 12:00:00", "66.249.79.84", "6947");
INSERT INTO `wp_rg_form_view` VALUES("1845", "6", "2014-09-14 12:32:07", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1846", "3", "2014-09-14 13:00:01", "66.249.79.84", "6913");
INSERT INTO `wp_rg_form_view` VALUES("1847", "6", "2014-09-14 13:35:15", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1848", "3", "2014-09-14 14:00:00", "66.249.79.92", "7273");
INSERT INTO `wp_rg_form_view` VALUES("1849", "1", "2014-09-14 14:08:53", "192.187.115.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("1850", "6", "2014-09-14 14:16:50", "93.37.130.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("1851", "2", "2014-09-14 14:19:09", "93.37.130.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("1852", "3", "2014-09-14 15:00:01", "66.249.79.84", "7020");
INSERT INTO `wp_rg_form_view` VALUES("1853", "6", "2014-09-14 15:25:17", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1854", "3", "2014-09-14 16:00:00", "66.249.79.92", "6988");
INSERT INTO `wp_rg_form_view` VALUES("1855", "6", "2014-09-14 16:07:16", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1856", "3", "2014-09-14 17:00:00", "66.249.79.76", "3964");
INSERT INTO `wp_rg_form_view` VALUES("1857", "6", "2014-09-14 17:32:25", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1858", "3", "2014-09-14 18:02:31", "66.249.79.76", "3504");
INSERT INTO `wp_rg_form_view` VALUES("1859", "1", "2014-09-14 18:36:37", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1860", "3", "2014-09-14 19:00:08", "66.249.79.84", "5400");
INSERT INTO `wp_rg_form_view` VALUES("1861", "6", "2014-09-14 19:50:06", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1862", "3", "2014-09-14 20:00:11", "66.249.79.92", "6469");
INSERT INTO `wp_rg_form_view` VALUES("1863", "6", "2014-09-14 20:03:15", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1864", "1", "2014-09-14 20:51:58", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1865", "2", "2014-09-14 20:52:35", "5.9.73.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("1866", "3", "2014-09-14 21:00:07", "66.249.79.76", "4665");
INSERT INTO `wp_rg_form_view` VALUES("1867", "3", "2014-09-14 22:00:14", "66.249.79.92", "11996");
INSERT INTO `wp_rg_form_view` VALUES("1868", "6", "2014-09-14 22:19:36", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1869", "1", "2014-09-14 22:45:06", "54.203.153.15", "17");
INSERT INTO `wp_rg_form_view` VALUES("1870", "2", "2014-09-14 22:46:02", "54.203.153.15", "14");
INSERT INTO `wp_rg_form_view` VALUES("1871", "3", "2014-09-14 23:00:00", "212.129.42.207", "5155");
INSERT INTO `wp_rg_form_view` VALUES("1872", "1", "2014-09-14 23:00:04", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("1873", "3", "2014-09-15 00:00:00", "66.249.79.76", "7355");
INSERT INTO `wp_rg_form_view` VALUES("1874", "6", "2014-09-15 00:33:32", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1875", "3", "2014-09-15 01:00:00", "66.249.79.76", "6846");
INSERT INTO `wp_rg_form_view` VALUES("1876", "3", "2014-09-15 02:00:00", "66.249.79.92", "7374");
INSERT INTO `wp_rg_form_view` VALUES("1877", "6", "2014-09-15 02:43:26", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1878", "3", "2014-09-15 03:00:00", "66.249.79.84", "7396");
INSERT INTO `wp_rg_form_view` VALUES("1879", "3", "2014-09-15 04:00:01", "66.249.79.84", "6680");
INSERT INTO `wp_rg_form_view` VALUES("1880", "6", "2014-09-15 04:54:52", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1881", "3", "2014-09-15 05:00:13", "68.180.225.45", "7615");
INSERT INTO `wp_rg_form_view` VALUES("1882", "6", "2014-09-15 05:18:31", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1883", "3", "2014-09-15 06:00:00", "66.249.79.92", "4673");
INSERT INTO `wp_rg_form_view` VALUES("1884", "6", "2014-09-15 06:21:32", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1885", "3", "2014-09-15 07:00:02", "66.249.79.84", "5994");
INSERT INTO `wp_rg_form_view` VALUES("1886", "3", "2014-09-15 08:00:00", "66.249.79.76", "4732");
INSERT INTO `wp_rg_form_view` VALUES("1887", "6", "2014-09-15 08:13:18", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1888", "3", "2014-09-15 09:00:00", "66.249.79.76", "7475");
INSERT INTO `wp_rg_form_view` VALUES("1889", "1", "2014-09-15 09:16:35", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1890", "3", "2014-09-15 10:00:00", "66.249.79.92", "8056");
INSERT INTO `wp_rg_form_view` VALUES("1891", "1", "2014-09-15 10:28:45", "141.101.17.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("1892", "6", "2014-09-15 10:45:19", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1893", "3", "2014-09-15 11:00:00", "66.249.79.84", "7366");
INSERT INTO `wp_rg_form_view` VALUES("1894", "6", "2014-09-15 11:22:10", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("1895", "3", "2014-09-15 12:00:00", "66.249.79.84", "7359");
INSERT INTO `wp_rg_form_view` VALUES("1896", "3", "2014-09-15 13:00:00", "66.249.79.84", "7306");
INSERT INTO `wp_rg_form_view` VALUES("1897", "6", "2014-09-15 13:15:39", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1898", "3", "2014-09-15 14:00:00", "66.249.79.76", "7409");
INSERT INTO `wp_rg_form_view` VALUES("1899", "3", "2014-09-15 15:00:00", "66.249.79.92", "6129");
INSERT INTO `wp_rg_form_view` VALUES("1900", "6", "2014-09-15 15:13:12", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("1901", "3", "2014-09-15 16:00:04", "66.249.79.76", "7354");
INSERT INTO `wp_rg_form_view` VALUES("1902", "3", "2014-09-15 17:00:06", "66.249.79.92", "1318");
INSERT INTO `wp_rg_form_view` VALUES("1903", "1", "2014-09-15 18:09:49", "212.83.173.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("1904", "3", "2014-09-15 18:09:52", "212.83.173.82", "80");
INSERT INTO `wp_rg_form_view` VALUES("1905", "3", "2014-09-15 19:37:20", "207.46.13.4", "1511");
INSERT INTO `wp_rg_form_view` VALUES("1906", "6", "2014-09-15 19:37:22", "207.46.13.4", "11");
INSERT INTO `wp_rg_form_view` VALUES("1907", "2", "2014-09-15 19:42:42", "157.55.39.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("1908", "1", "2014-09-15 19:42:44", "157.55.39.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("1909", "3", "2014-09-15 20:09:11", "66.249.79.76", "76");
INSERT INTO `wp_rg_form_view` VALUES("1910", "1", "2014-09-15 20:18:38", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1911", "6", "2014-09-15 20:22:22", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1912", "3", "2014-09-15 21:20:14", "83.42.197.137", "287");
INSERT INTO `wp_rg_form_view` VALUES("1913", "6", "2014-09-15 21:22:10", "83.42.197.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("1914", "1", "2014-09-15 21:23:12", "83.42.197.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("1915", "2", "2014-09-15 21:23:26", "83.42.197.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("1916", "3", "2014-09-15 22:08:55", "66.249.79.76", "216");
INSERT INTO `wp_rg_form_view` VALUES("1917", "3", "2014-09-15 23:19:50", "66.249.79.76", "70");
INSERT INTO `wp_rg_form_view` VALUES("1918", "1", "2014-09-15 23:44:37", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1919", "6", "2014-09-15 23:59:37", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1920", "3", "2014-09-16 00:05:37", "66.249.79.92", "504");
INSERT INTO `wp_rg_form_view` VALUES("1921", "3", "2014-09-16 01:00:03", "66.249.79.76", "5339");
INSERT INTO `wp_rg_form_view` VALUES("1922", "6", "2014-09-16 01:05:07", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1923", "3", "2014-09-16 02:00:00", "66.249.79.76", "6658");
INSERT INTO `wp_rg_form_view` VALUES("1924", "6", "2014-09-16 02:29:15", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1925", "3", "2014-09-16 03:00:00", "66.249.79.92", "6833");
INSERT INTO `wp_rg_form_view` VALUES("1926", "3", "2014-09-16 04:00:01", "66.249.79.92", "6758");
INSERT INTO `wp_rg_form_view` VALUES("1927", "3", "2014-09-16 05:00:55", "66.249.79.84", "2102");
INSERT INTO `wp_rg_form_view` VALUES("1928", "3", "2014-09-16 06:00:00", "66.249.79.92", "5521");
INSERT INTO `wp_rg_form_view` VALUES("1929", "6", "2014-09-16 06:44:46", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("1930", "3", "2014-09-16 07:00:00", "66.249.79.92", "7061");
INSERT INTO `wp_rg_form_view` VALUES("1931", "1", "2014-09-16 07:21:19", "213.238.175.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("1932", "3", "2014-09-16 08:00:00", "66.249.79.84", "6480");
INSERT INTO `wp_rg_form_view` VALUES("1933", "6", "2014-09-16 08:23:59", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1934", "3", "2014-09-16 09:00:01", "66.249.79.76", "6556");
INSERT INTO `wp_rg_form_view` VALUES("1935", "6", "2014-09-16 09:44:43", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1936", "3", "2014-09-16 10:00:03", "66.249.79.76", "6954");
INSERT INTO `wp_rg_form_view` VALUES("1937", "6", "2014-09-16 10:20:52", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("1938", "3", "2014-09-16 11:00:01", "66.249.79.76", "6870");
INSERT INTO `wp_rg_form_view` VALUES("1939", "1", "2014-09-16 11:37:29", "23.94.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("1940", "3", "2014-09-16 12:00:01", "66.249.79.84", "6658");
INSERT INTO `wp_rg_form_view` VALUES("1941", "1", "2014-09-16 12:43:26", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1942", "3", "2014-09-16 13:00:05", "66.249.79.76", "6828");
INSERT INTO `wp_rg_form_view` VALUES("1943", "6", "2014-09-16 13:13:17", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1944", "1", "2014-09-16 13:41:20", "192.99.221.234", "4");
INSERT INTO `wp_rg_form_view` VALUES("1945", "3", "2014-09-16 14:00:00", "66.249.79.84", "6554");
INSERT INTO `wp_rg_form_view` VALUES("1946", "6", "2014-09-16 14:20:21", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1947", "3", "2014-09-16 15:00:00", "66.249.79.92", "6976");
INSERT INTO `wp_rg_form_view` VALUES("1948", "6", "2014-09-16 15:26:40", "100.43.85.24", "8");
INSERT INTO `wp_rg_form_view` VALUES("1949", "3", "2014-09-16 16:00:00", "66.249.79.92", "6598");
INSERT INTO `wp_rg_form_view` VALUES("1950", "6", "2014-09-16 16:31:10", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1951", "3", "2014-09-16 17:00:14", "66.249.79.84", "3214");
INSERT INTO `wp_rg_form_view` VALUES("1952", "1", "2014-09-16 17:45:01", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1953", "3", "2014-09-16 18:00:01", "66.249.79.76", "6611");
INSERT INTO `wp_rg_form_view` VALUES("1954", "6", "2014-09-16 18:09:26", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("1955", "3", "2014-09-16 19:00:00", "66.249.79.76", "6600");
INSERT INTO `wp_rg_form_view` VALUES("1956", "6", "2014-09-16 19:01:00", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1957", "3", "2014-09-16 20:00:00", "66.249.79.76", "7443");
INSERT INTO `wp_rg_form_view` VALUES("1958", "6", "2014-09-16 20:25:05", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("1959", "3", "2014-09-16 21:00:41", "66.249.79.92", "6617");
INSERT INTO `wp_rg_form_view` VALUES("1960", "6", "2014-09-16 21:35:20", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("1961", "3", "2014-09-16 22:00:00", "66.249.79.84", "6840");
INSERT INTO `wp_rg_form_view` VALUES("1962", "3", "2014-09-16 23:00:00", "66.249.79.76", "6537");
INSERT INTO `wp_rg_form_view` VALUES("1963", "6", "2014-09-16 23:52:37", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1964", "3", "2014-09-17 00:00:03", "66.249.79.76", "6816");
INSERT INTO `wp_rg_form_view` VALUES("1965", "1", "2014-09-17 00:50:53", "198.199.120.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("1966", "2", "2014-09-17 00:50:53", "198.199.120.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("1967", "6", "2014-09-17 00:50:54", "198.199.120.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("1968", "3", "2014-09-17 01:00:00", "66.249.79.76", "6570");
INSERT INTO `wp_rg_form_view` VALUES("1969", "3", "2014-09-17 02:00:00", "66.249.79.76", "7269");
INSERT INTO `wp_rg_form_view` VALUES("1970", "6", "2014-09-17 02:14:57", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1971", "3", "2014-09-17 03:00:00", "66.249.79.76", "7198");
INSERT INTO `wp_rg_form_view` VALUES("1972", "6", "2014-09-17 03:21:08", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("1973", "1", "2014-09-17 03:50:16", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("1974", "3", "2014-09-17 04:00:00", "66.249.79.92", "6380");
INSERT INTO `wp_rg_form_view` VALUES("1975", "6", "2014-09-17 04:02:10", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1976", "3", "2014-09-17 05:00:00", "66.249.79.92", "6795");
INSERT INTO `wp_rg_form_view` VALUES("1977", "6", "2014-09-17 05:00:19", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("1978", "3", "2014-09-17 06:00:00", "66.249.79.76", "7113");
INSERT INTO `wp_rg_form_view` VALUES("1979", "6", "2014-09-17 06:08:34", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("1980", "3", "2014-09-17 07:00:00", "66.249.79.76", "6302");
INSERT INTO `wp_rg_form_view` VALUES("1981", "1", "2014-09-17 07:19:36", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1982", "3", "2014-09-17 08:00:00", "66.249.79.84", "8890");
INSERT INTO `wp_rg_form_view` VALUES("1983", "6", "2014-09-17 08:32:13", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1984", "1", "2014-09-17 08:42:24", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("1985", "3", "2014-09-17 09:00:00", "66.249.79.76", "8843");
INSERT INTO `wp_rg_form_view` VALUES("1986", "6", "2014-09-17 09:57:13", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("1987", "3", "2014-09-17 10:00:00", "66.249.79.76", "9058");
INSERT INTO `wp_rg_form_view` VALUES("1988", "1", "2014-09-17 10:57:51", "191.239.32.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("1989", "3", "2014-09-17 11:00:03", "66.249.79.92", "8964");
INSERT INTO `wp_rg_form_view` VALUES("1990", "6", "2014-09-17 11:05:26", "191.239.32.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("1991", "3", "2014-09-17 12:00:00", "66.249.79.92", "9332");
INSERT INTO `wp_rg_form_view` VALUES("1992", "1", "2014-09-17 12:38:33", "191.239.35.255", "2");
INSERT INTO `wp_rg_form_view` VALUES("1993", "6", "2014-09-17 12:40:30", "191.239.35.255", "4");
INSERT INTO `wp_rg_form_view` VALUES("1994", "3", "2014-09-17 13:00:00", "66.249.79.92", "8799");
INSERT INTO `wp_rg_form_view` VALUES("1995", "6", "2014-09-17 13:01:55", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("1996", "3", "2014-09-17 14:00:00", "66.249.79.76", "8924");
INSERT INTO `wp_rg_form_view` VALUES("1997", "6", "2014-09-17 14:02:52", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("1998", "1", "2014-09-17 14:49:20", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("1999", "3", "2014-09-17 15:00:00", "66.249.79.84", "6203");
INSERT INTO `wp_rg_form_view` VALUES("2000", "6", "2014-09-17 15:42:31", "68.180.225.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("2001", "3", "2014-09-17 16:00:36", "66.249.79.84", "6838");
INSERT INTO `wp_rg_form_view` VALUES("2002", "6", "2014-09-17 16:31:37", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2003", "3", "2014-09-17 17:00:01", "66.249.79.76", "4065");
INSERT INTO `wp_rg_form_view` VALUES("2004", "1", "2014-09-17 17:52:53", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2005", "3", "2014-09-17 18:00:05", "66.249.79.76", "5324");
INSERT INTO `wp_rg_form_view` VALUES("2006", "6", "2014-09-17 18:33:46", "96.50.93.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("2007", "3", "2014-09-17 19:00:00", "66.249.79.92", "6460");
INSERT INTO `wp_rg_form_view` VALUES("2008", "3", "2014-09-17 20:00:00", "66.249.79.76", "6314");
INSERT INTO `wp_rg_form_view` VALUES("2009", "6", "2014-09-17 20:17:58", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2010", "3", "2014-09-17 21:00:12", "66.249.79.92", "6439");
INSERT INTO `wp_rg_form_view` VALUES("2011", "3", "2014-09-17 22:00:00", "66.249.79.84", "7053");
INSERT INTO `wp_rg_form_view` VALUES("2012", "1", "2014-09-17 22:21:48", "218.88.108.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("2013", "3", "2014-09-17 23:00:01", "66.249.79.76", "6886");
INSERT INTO `wp_rg_form_view` VALUES("2014", "6", "2014-09-17 23:15:31", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2015", "3", "2014-09-18 00:00:01", "66.249.79.76", "7286");
INSERT INTO `wp_rg_form_view` VALUES("2016", "6", "2014-09-18 00:19:31", "66.249.79.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("2017", "3", "2014-09-18 01:00:00", "66.249.79.84", "6975");
INSERT INTO `wp_rg_form_view` VALUES("2018", "3", "2014-09-18 02:00:01", "66.249.79.84", "7051");
INSERT INTO `wp_rg_form_view` VALUES("2019", "1", "2014-09-18 02:29:06", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2020", "6", "2014-09-18 02:46:28", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2021", "3", "2014-09-18 03:00:00", "66.249.79.92", "7402");
INSERT INTO `wp_rg_form_view` VALUES("2022", "1", "2014-09-18 03:16:52", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2023", "6", "2014-09-18 03:32:03", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2024", "3", "2014-09-18 04:00:00", "66.249.79.92", "3714");
INSERT INTO `wp_rg_form_view` VALUES("2025", "6", "2014-09-18 04:13:25", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2026", "3", "2014-09-18 05:00:00", "172.218.193.107", "7998");
INSERT INTO `wp_rg_form_view` VALUES("2027", "6", "2014-09-18 05:40:02", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2028", "1", "2014-09-18 05:50:49", "5.149.253.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("2029", "3", "2014-09-18 06:00:00", "66.249.79.92", "5993");
INSERT INTO `wp_rg_form_view` VALUES("2030", "6", "2014-09-18 06:12:04", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2031", "3", "2014-09-18 07:00:00", "66.249.79.92", "8421");
INSERT INTO `wp_rg_form_view` VALUES("2032", "1", "2014-09-18 07:06:06", "192.99.221.234", "8");
INSERT INTO `wp_rg_form_view` VALUES("2033", "6", "2014-09-18 07:21:33", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("2034", "3", "2014-09-18 08:00:00", "66.249.79.76", "7876");
INSERT INTO `wp_rg_form_view` VALUES("2035", "6", "2014-09-18 08:06:58", "157.55.39.6", "4");
INSERT INTO `wp_rg_form_view` VALUES("2036", "3", "2014-09-18 09:00:00", "66.249.79.84", "8064");
INSERT INTO `wp_rg_form_view` VALUES("2037", "6", "2014-09-18 09:01:18", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2038", "3", "2014-09-18 10:00:00", "66.249.79.92", "7848");
INSERT INTO `wp_rg_form_view` VALUES("2039", "6", "2014-09-18 10:49:03", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2040", "3", "2014-09-18 11:00:00", "66.249.79.76", "8437");
INSERT INTO `wp_rg_form_view` VALUES("2041", "6", "2014-09-18 11:19:05", "104.40.73.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("2042", "3", "2014-09-18 12:00:00", "66.249.79.84", "7866");
INSERT INTO `wp_rg_form_view` VALUES("2043", "1", "2014-09-18 12:24:36", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2044", "3", "2014-09-18 13:00:00", "66.249.79.84", "8359");
INSERT INTO `wp_rg_form_view` VALUES("2045", "6", "2014-09-18 13:11:04", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("2046", "3", "2014-09-18 14:00:00", "66.249.79.92", "8821");
INSERT INTO `wp_rg_form_view` VALUES("2047", "6", "2014-09-18 14:21:23", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2048", "1", "2014-09-18 14:31:37", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2049", "2", "2014-09-18 14:50:24", "104.40.140.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("2050", "3", "2014-09-18 15:00:01", "66.249.79.92", "5984");
INSERT INTO `wp_rg_form_view` VALUES("2051", "1", "2014-09-18 15:35:44", "68.180.225.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("2052", "2", "2014-09-18 15:42:37", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("2053", "3", "2014-09-18 16:00:00", "66.249.67.84", "6192");
INSERT INTO `wp_rg_form_view` VALUES("2054", "6", "2014-09-18 16:03:40", "100.43.85.24", "14");
INSERT INTO `wp_rg_form_view` VALUES("2055", "3", "2014-09-18 17:00:18", "66.249.67.76", "4882");
INSERT INTO `wp_rg_form_view` VALUES("2056", "6", "2014-09-18 17:01:57", "100.43.85.24", "12");
INSERT INTO `wp_rg_form_view` VALUES("2057", "1", "2014-09-18 17:30:54", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("2058", "3", "2014-09-18 18:00:00", "66.249.79.92", "6504");
INSERT INTO `wp_rg_form_view` VALUES("2059", "6", "2014-09-18 18:10:48", "100.43.85.24", "40");
INSERT INTO `wp_rg_form_view` VALUES("2060", "3", "2014-09-18 19:00:00", "66.249.79.92", "5892");
INSERT INTO `wp_rg_form_view` VALUES("2061", "6", "2014-09-18 19:29:24", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2062", "3", "2014-09-18 20:00:01", "66.249.79.84", "6650");
INSERT INTO `wp_rg_form_view` VALUES("2063", "6", "2014-09-18 20:11:33", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2064", "2", "2014-09-18 20:20:53", "24.68.35.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("2065", "3", "2014-09-18 21:00:00", "66.249.79.76", "6684");
INSERT INTO `wp_rg_form_view` VALUES("2066", "1", "2014-09-18 21:07:38", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2067", "6", "2014-09-18 21:17:09", "157.55.39.6", "8");
INSERT INTO `wp_rg_form_view` VALUES("2068", "3", "2014-09-18 22:00:00", "66.249.79.84", "6287");
INSERT INTO `wp_rg_form_view` VALUES("2069", "6", "2014-09-18 22:01:13", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2070", "3", "2014-09-18 23:00:03", "66.249.79.84", "6844");
INSERT INTO `wp_rg_form_view` VALUES("2071", "1", "2014-09-18 23:22:50", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2072", "3", "2014-09-19 00:00:00", "66.249.79.84", "6340");
INSERT INTO `wp_rg_form_view` VALUES("2073", "6", "2014-09-19 00:33:08", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2074", "3", "2014-09-19 01:00:03", "66.249.79.84", "6620");
INSERT INTO `wp_rg_form_view` VALUES("2075", "6", "2014-09-19 01:20:16", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2076", "3", "2014-09-19 02:00:01", "66.249.79.84", "6384");
INSERT INTO `wp_rg_form_view` VALUES("2077", "3", "2014-09-19 03:00:03", "66.249.79.92", "6571");
INSERT INTO `wp_rg_form_view` VALUES("2078", "2", "2014-09-19 03:44:27", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("2079", "3", "2014-09-19 04:00:00", "66.249.79.92", "6801");
INSERT INTO `wp_rg_form_view` VALUES("2080", "6", "2014-09-19 04:53:25", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2081", "3", "2014-09-19 05:00:03", "66.249.79.84", "6532");
INSERT INTO `wp_rg_form_view` VALUES("2082", "6", "2014-09-19 05:34:31", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2083", "3", "2014-09-19 06:00:00", "66.249.79.92", "4166");
INSERT INTO `wp_rg_form_view` VALUES("2084", "6", "2014-09-19 06:19:49", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2085", "1", "2014-09-19 06:24:25", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2086", "3", "2014-09-19 07:00:11", "66.249.79.76", "7589");
INSERT INTO `wp_rg_form_view` VALUES("2087", "6", "2014-09-19 07:42:28", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2088", "3", "2014-09-19 08:00:00", "66.249.79.84", "8268");
INSERT INTO `wp_rg_form_view` VALUES("2089", "6", "2014-09-19 08:10:21", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2090", "3", "2014-09-19 09:00:00", "66.249.79.92", "8765");
INSERT INTO `wp_rg_form_view` VALUES("2091", "6", "2014-09-19 09:36:41", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("2092", "3", "2014-09-19 10:00:00", "66.249.79.76", "8895");
INSERT INTO `wp_rg_form_view` VALUES("2093", "6", "2014-09-19 10:02:13", "100.43.85.24", "18");
INSERT INTO `wp_rg_form_view` VALUES("2094", "3", "2014-09-19 11:00:27", "66.249.79.76", "8905");
INSERT INTO `wp_rg_form_view` VALUES("2095", "6", "2014-09-19 11:10:15", "100.43.85.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("2096", "3", "2014-09-19 12:00:00", "66.249.79.92", "8819");
INSERT INTO `wp_rg_form_view` VALUES("2097", "6", "2014-09-19 12:04:42", "100.43.85.24", "20");
INSERT INTO `wp_rg_form_view` VALUES("2098", "3", "2014-09-19 13:00:00", "66.249.79.84", "8719");
INSERT INTO `wp_rg_form_view` VALUES("2099", "6", "2014-09-19 13:00:34", "100.43.85.24", "18");
INSERT INTO `wp_rg_form_view` VALUES("2100", "2", "2014-09-19 13:31:22", "93.115.94.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("2101", "1", "2014-09-19 13:31:28", "93.115.94.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("2102", "3", "2014-09-19 14:00:00", "66.249.79.84", "8622");
INSERT INTO `wp_rg_form_view` VALUES("2103", "1", "2014-09-19 14:09:27", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("2104", "6", "2014-09-19 14:13:33", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("2105", "3", "2014-09-19 15:00:00", "66.249.79.92", "6077");
INSERT INTO `wp_rg_form_view` VALUES("2106", "1", "2014-09-19 15:13:14", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2107", "3", "2014-09-19 16:00:00", "66.249.79.84", "5027");
INSERT INTO `wp_rg_form_view` VALUES("2108", "6", "2014-09-19 16:19:22", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2109", "3", "2014-09-19 17:00:00", "66.249.79.92", "6528");
INSERT INTO `wp_rg_form_view` VALUES("2110", "1", "2014-09-19 17:00:11", "202.46.62.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("2111", "3", "2014-09-19 18:00:01", "66.249.79.76", "5268");
INSERT INTO `wp_rg_form_view` VALUES("2112", "6", "2014-09-19 18:29:35", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2113", "3", "2014-09-19 19:00:00", "66.249.79.84", "7108");
INSERT INTO `wp_rg_form_view` VALUES("2114", "6", "2014-09-19 19:01:07", "100.43.85.24", "16");
INSERT INTO `wp_rg_form_view` VALUES("2115", "1", "2014-09-19 19:04:35", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2116", "3", "2014-09-19 20:00:00", "66.249.79.84", "6945");
INSERT INTO `wp_rg_form_view` VALUES("2117", "6", "2014-09-19 20:48:43", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2118", "3", "2014-09-19 21:00:00", "66.249.79.76", "6828");
INSERT INTO `wp_rg_form_view` VALUES("2119", "6", "2014-09-19 21:21:18", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2120", "2", "2014-09-19 21:40:27", "93.182.137.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("2121", "3", "2014-09-19 22:00:00", "66.249.79.92", "7030");
INSERT INTO `wp_rg_form_view` VALUES("2122", "2", "2014-09-19 22:12:36", "68.180.225.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("2123", "3", "2014-09-19 23:00:00", "66.249.79.76", "7063");
INSERT INTO `wp_rg_form_view` VALUES("2124", "1", "2014-09-19 23:18:18", "70.67.33.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("2125", "3", "2014-09-20 00:00:00", "66.249.79.76", "6822");
INSERT INTO `wp_rg_form_view` VALUES("2126", "6", "2014-09-20 00:15:36", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2127", "3", "2014-09-20 01:00:01", "66.249.79.76", "5852");
INSERT INTO `wp_rg_form_view` VALUES("2128", "3", "2014-09-20 02:00:01", "66.249.79.84", "6586");
INSERT INTO `wp_rg_form_view` VALUES("2129", "3", "2014-09-20 03:00:02", "66.249.79.92", "6947");
INSERT INTO `wp_rg_form_view` VALUES("2130", "6", "2014-09-20 03:18:57", "66.249.79.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("2131", "3", "2014-09-20 04:00:00", "66.249.79.92", "6409");
INSERT INTO `wp_rg_form_view` VALUES("2132", "6", "2014-09-20 04:47:22", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2133", "1", "2014-09-20 04:53:37", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2134", "3", "2014-09-20 05:00:00", "66.249.79.92", "6871");
INSERT INTO `wp_rg_form_view` VALUES("2135", "1", "2014-09-20 05:09:29", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2136", "3", "2014-09-20 06:00:01", "66.249.79.76", "6991");
INSERT INTO `wp_rg_form_view` VALUES("2137", "6", "2014-09-20 06:02:32", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("2138", "3", "2014-09-20 07:00:00", "66.249.79.76", "7045");
INSERT INTO `wp_rg_form_view` VALUES("2139", "1", "2014-09-20 07:32:39", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2140", "6", "2014-09-20 07:37:44", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2141", "3", "2014-09-20 08:00:00", "66.249.79.76", "7228");
INSERT INTO `wp_rg_form_view` VALUES("2142", "3", "2014-09-20 09:00:00", "66.249.79.76", "7102");
INSERT INTO `wp_rg_form_view` VALUES("2143", "6", "2014-09-20 09:24:32", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2144", "3", "2014-09-20 10:00:00", "66.249.79.84", "7157");
INSERT INTO `wp_rg_form_view` VALUES("2145", "3", "2014-09-20 11:00:00", "66.249.79.76", "7056");
INSERT INTO `wp_rg_form_view` VALUES("2146", "1", "2014-09-20 11:01:13", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2147", "6", "2014-09-20 11:02:10", "100.43.85.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("2148", "3", "2014-09-20 12:00:00", "66.249.79.92", "9125");
INSERT INTO `wp_rg_form_view` VALUES("2149", "6", "2014-09-20 12:21:18", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("2150", "3", "2014-09-20 13:00:00", "66.249.79.92", "7173");
INSERT INTO `wp_rg_form_view` VALUES("2151", "2", "2014-09-20 13:06:32", "191.233.71.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("2152", "1", "2014-09-20 13:06:39", "191.233.71.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("2153", "6", "2014-09-20 13:10:36", "191.233.71.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("2154", "3", "2014-09-20 14:00:30", "100.43.85.24", "8486");
INSERT INTO `wp_rg_form_view` VALUES("2155", "6", "2014-09-20 14:11:17", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2156", "1", "2014-09-20 14:17:00", "27.159.214.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("2157", "3", "2014-09-20 15:00:04", "66.249.79.76", "5713");
INSERT INTO `wp_rg_form_view` VALUES("2158", "6", "2014-09-20 15:00:53", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("2159", "2", "2014-09-20 15:08:32", "141.101.17.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("2160", "3", "2014-09-20 16:00:46", "66.249.79.76", "5520");
INSERT INTO `wp_rg_form_view` VALUES("2161", "3", "2014-09-20 17:00:02", "66.249.79.76", "9771");
INSERT INTO `wp_rg_form_view` VALUES("2162", "2", "2014-09-20 17:39:11", "5.9.112.67", "4");
INSERT INTO `wp_rg_form_view` VALUES("2163", "1", "2014-09-20 17:39:29", "5.9.112.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("2164", "6", "2014-09-20 17:40:11", "5.9.112.67", "29");
INSERT INTO `wp_rg_form_view` VALUES("2165", "3", "2014-09-20 18:00:00", "107.170.38.24", "12387");
INSERT INTO `wp_rg_form_view` VALUES("2166", "6", "2014-09-20 18:00:21", "5.9.112.67", "42");
INSERT INTO `wp_rg_form_view` VALUES("2167", "1", "2014-09-20 18:47:50", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2168", "3", "2014-09-20 19:00:00", "107.170.38.24", "8179");
INSERT INTO `wp_rg_form_view` VALUES("2169", "2", "2014-09-20 19:02:46", "62.210.78.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("2170", "6", "2014-09-20 19:04:12", "66.249.79.92", "24");
INSERT INTO `wp_rg_form_view` VALUES("2171", "1", "2014-09-20 19:27:51", "212.83.173.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("2172", "3", "2014-09-20 20:00:00", "66.249.79.92", "6656");
INSERT INTO `wp_rg_form_view` VALUES("2173", "2", "2014-09-20 20:15:30", "24.68.157.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("2174", "3", "2014-09-20 21:00:00", "66.249.79.84", "6707");
INSERT INTO `wp_rg_form_view` VALUES("2175", "6", "2014-09-20 21:23:56", "66.249.79.76", "13");
INSERT INTO `wp_rg_form_view` VALUES("2176", "3", "2014-09-20 22:00:42", "66.249.79.92", "6710");
INSERT INTO `wp_rg_form_view` VALUES("2177", "3", "2014-09-20 23:00:03", "66.249.79.84", "6817");
INSERT INTO `wp_rg_form_view` VALUES("2178", "6", "2014-09-20 23:15:03", "24.69.61.85", "10");
INSERT INTO `wp_rg_form_view` VALUES("2179", "3", "2014-09-21 00:00:01", "66.249.79.76", "7213");
INSERT INTO `wp_rg_form_view` VALUES("2180", "6", "2014-09-21 00:01:37", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("2181", "3", "2014-09-21 01:00:03", "66.249.79.76", "7134");
INSERT INTO `wp_rg_form_view` VALUES("2182", "6", "2014-09-21 01:35:41", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2183", "3", "2014-09-21 02:00:00", "66.249.79.92", "7228");
INSERT INTO `wp_rg_form_view` VALUES("2184", "6", "2014-09-21 02:17:25", "66.249.79.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("2185", "3", "2014-09-21 03:00:00", "66.249.79.84", "6448");
INSERT INTO `wp_rg_form_view` VALUES("2186", "3", "2014-09-21 04:00:00", "66.249.79.92", "6703");
INSERT INTO `wp_rg_form_view` VALUES("2187", "2", "2014-09-21 04:08:25", "213.238.175.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("2188", "6", "2014-09-21 04:19:30", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2189", "3", "2014-09-21 05:00:04", "66.249.79.92", "5830");
INSERT INTO `wp_rg_form_view` VALUES("2190", "1", "2014-09-21 05:20:23", "62.210.78.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("2191", "3", "2014-09-21 06:00:14", "66.249.79.92", "7108");
INSERT INTO `wp_rg_form_view` VALUES("2192", "1", "2014-09-21 06:26:16", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2193", "3", "2014-09-21 07:00:18", "66.249.79.92", "7600");
INSERT INTO `wp_rg_form_view` VALUES("2194", "3", "2014-09-21 08:00:00", "66.249.79.92", "7855");
INSERT INTO `wp_rg_form_view` VALUES("2195", "1", "2014-09-21 08:10:10", "212.83.173.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("2196", "6", "2014-09-21 08:20:35", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2197", "3", "2014-09-21 09:00:00", "66.249.79.76", "7745");
INSERT INTO `wp_rg_form_view` VALUES("2198", "1", "2014-09-21 09:27:58", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2199", "3", "2014-09-21 10:00:00", "66.249.79.92", "8024");
INSERT INTO `wp_rg_form_view` VALUES("2200", "6", "2014-09-21 10:09:40", "157.55.39.208", "6");
INSERT INTO `wp_rg_form_view` VALUES("2201", "3", "2014-09-21 11:00:02", "66.249.79.84", "8006");
INSERT INTO `wp_rg_form_view` VALUES("2202", "6", "2014-09-21 11:15:24", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2203", "3", "2014-09-21 12:00:04", "66.249.79.92", "8028");
INSERT INTO `wp_rg_form_view` VALUES("2204", "6", "2014-09-21 12:16:00", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("2205", "3", "2014-09-21 13:00:01", "66.249.79.76", "8034");
INSERT INTO `wp_rg_form_view` VALUES("2206", "6", "2014-09-21 13:01:06", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2207", "1", "2014-09-21 13:02:57", "202.46.50.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("2208", "3", "2014-09-21 14:00:27", "66.249.79.84", "8101");
INSERT INTO `wp_rg_form_view` VALUES("2209", "1", "2014-09-21 14:36:51", "192.241.144.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("2210", "2", "2014-09-21 14:36:51", "192.241.144.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("2211", "3", "2014-09-21 15:00:00", "66.249.79.92", "3682");
INSERT INTO `wp_rg_form_view` VALUES("2212", "6", "2014-09-21 15:58:51", "62.210.78.197", "4");
INSERT INTO `wp_rg_form_view` VALUES("2213", "3", "2014-09-21 16:00:01", "66.249.79.84", "7118");
INSERT INTO `wp_rg_form_view` VALUES("2214", "6", "2014-09-21 16:20:07", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2215", "3", "2014-09-21 17:00:03", "66.249.79.84", "6620");
INSERT INTO `wp_rg_form_view` VALUES("2216", "3", "2014-09-21 18:00:05", "66.249.79.92", "6810");
INSERT INTO `wp_rg_form_view` VALUES("2217", "2", "2014-09-21 18:28:10", "5.149.253.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("2218", "6", "2014-09-21 18:55:37", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2219", "3", "2014-09-21 19:00:00", "66.249.79.76", "6228");
INSERT INTO `wp_rg_form_view` VALUES("2220", "6", "2014-09-21 19:10:23", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2221", "3", "2014-09-21 20:00:00", "66.249.79.76", "6123");
INSERT INTO `wp_rg_form_view` VALUES("2222", "6", "2014-09-21 20:09:29", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2223", "3", "2014-09-21 21:00:00", "66.249.79.76", "5766");
INSERT INTO `wp_rg_form_view` VALUES("2224", "1", "2014-09-21 21:07:25", "192.99.221.234", "4");
INSERT INTO `wp_rg_form_view` VALUES("2225", "3", "2014-09-21 22:00:04", "66.249.79.92", "6451");
INSERT INTO `wp_rg_form_view` VALUES("2226", "3", "2014-09-21 23:00:00", "66.249.79.76", "6708");
INSERT INTO `wp_rg_form_view` VALUES("2227", "1", "2014-09-21 23:55:08", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2228", "3", "2014-09-22 00:00:00", "66.249.79.84", "6887");
INSERT INTO `wp_rg_form_view` VALUES("2229", "6", "2014-09-22 00:24:08", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2230", "3", "2014-09-22 01:00:00", "66.249.79.84", "6896");
INSERT INTO `wp_rg_form_view` VALUES("2231", "6", "2014-09-22 01:22:47", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2232", "3", "2014-09-22 02:00:30", "66.249.79.76", "6758");
INSERT INTO `wp_rg_form_view` VALUES("2233", "1", "2014-09-22 02:49:28", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2234", "3", "2014-09-22 03:00:01", "66.249.79.84", "6887");
INSERT INTO `wp_rg_form_view` VALUES("2235", "6", "2014-09-22 03:03:58", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2236", "3", "2014-09-22 04:00:00", "66.249.79.84", "5929");
INSERT INTO `wp_rg_form_view` VALUES("2237", "6", "2014-09-22 04:33:59", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2238", "3", "2014-09-22 05:00:02", "66.249.79.84", "7128");
INSERT INTO `wp_rg_form_view` VALUES("2239", "3", "2014-09-22 06:00:00", "66.249.79.92", "6891");
INSERT INTO `wp_rg_form_view` VALUES("2240", "2", "2014-09-22 06:05:45", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2241", "1", "2014-09-22 06:05:50", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2242", "6", "2014-09-22 06:16:48", "192.99.149.88", "8");
INSERT INTO `wp_rg_form_view` VALUES("2243", "3", "2014-09-22 07:00:00", "66.249.79.92", "7085");
INSERT INTO `wp_rg_form_view` VALUES("2244", "6", "2014-09-22 07:17:08", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("2245", "3", "2014-09-22 08:00:00", "66.249.79.76", "7207");
INSERT INTO `wp_rg_form_view` VALUES("2246", "6", "2014-09-22 08:17:06", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2247", "3", "2014-09-22 09:00:25", "66.249.79.76", "7037");
INSERT INTO `wp_rg_form_view` VALUES("2248", "2", "2014-09-22 09:26:31", "23.97.236.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("2249", "1", "2014-09-22 09:26:37", "23.97.236.23", "3");
INSERT INTO `wp_rg_form_view` VALUES("2250", "6", "2014-09-22 09:29:51", "23.97.236.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("2251", "3", "2014-09-22 10:00:00", "66.249.79.92", "7062");
INSERT INTO `wp_rg_form_view` VALUES("2252", "3", "2014-09-22 11:00:01", "66.249.79.76", "7203");
INSERT INTO `wp_rg_form_view` VALUES("2253", "1", "2014-09-22 11:11:35", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2254", "6", "2014-09-22 11:45:23", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2255", "3", "2014-09-22 12:00:00", "66.249.79.92", "6767");
INSERT INTO `wp_rg_form_view` VALUES("2256", "3", "2014-09-22 13:00:01", "66.249.79.76", "7182");
INSERT INTO `wp_rg_form_view` VALUES("2257", "1", "2014-09-22 13:11:15", "68.180.225.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("2258", "3", "2014-09-22 14:00:00", "66.249.79.92", "5498");
INSERT INTO `wp_rg_form_view` VALUES("2259", "6", "2014-09-22 14:24:10", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2260", "3", "2014-09-22 15:00:00", "66.249.79.92", "7516");
INSERT INTO `wp_rg_form_view` VALUES("2261", "6", "2014-09-22 15:01:54", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2262", "3", "2014-09-22 16:00:01", "66.249.79.84", "5069");
INSERT INTO `wp_rg_form_view` VALUES("2263", "6", "2014-09-22 16:08:18", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2264", "3", "2014-09-22 17:00:00", "66.249.79.84", "7124");
INSERT INTO `wp_rg_form_view` VALUES("2265", "3", "2014-09-22 18:00:00", "66.249.79.92", "6804");
INSERT INTO `wp_rg_form_view` VALUES("2266", "6", "2014-09-22 18:06:28", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2267", "1", "2014-09-22 18:27:01", "70.67.66.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("2268", "3", "2014-09-22 19:00:00", "66.249.79.92", "6845");
INSERT INTO `wp_rg_form_view` VALUES("2269", "6", "2014-09-22 19:05:40", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("2270", "3", "2014-09-22 20:00:00", "66.249.79.84", "7005");
INSERT INTO `wp_rg_form_view` VALUES("2271", "6", "2014-09-22 20:40:57", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2272", "3", "2014-09-22 21:00:05", "66.249.79.92", "5474");
INSERT INTO `wp_rg_form_view` VALUES("2273", "6", "2014-09-22 21:00:17", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2274", "1", "2014-09-22 21:23:58", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2275", "3", "2014-09-22 22:00:05", "66.249.79.76", "6908");
INSERT INTO `wp_rg_form_view` VALUES("2276", "6", "2014-09-22 22:04:39", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2277", "1", "2014-09-22 22:29:29", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2278", "3", "2014-09-22 23:00:00", "66.249.79.76", "6372");
INSERT INTO `wp_rg_form_view` VALUES("2279", "6", "2014-09-22 23:55:35", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2280", "3", "2014-09-23 00:00:00", "66.249.79.92", "6241");
INSERT INTO `wp_rg_form_view` VALUES("2281", "6", "2014-09-23 00:12:06", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2282", "1", "2014-09-23 00:43:54", "212.83.173.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("2283", "3", "2014-09-23 01:00:00", "66.249.79.76", "6583");
INSERT INTO `wp_rg_form_view` VALUES("2284", "6", "2014-09-23 01:54:49", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2285", "3", "2014-09-23 02:00:00", "66.249.79.76", "6711");
INSERT INTO `wp_rg_form_view` VALUES("2286", "6", "2014-09-23 02:38:09", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2287", "3", "2014-09-23 03:00:02", "66.249.79.76", "6580");
INSERT INTO `wp_rg_form_view` VALUES("2288", "1", "2014-09-23 03:01:39", "212.129.42.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("2289", "6", "2014-09-23 03:04:15", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2290", "3", "2014-09-23 04:00:00", "66.249.79.84", "5732");
INSERT INTO `wp_rg_form_view` VALUES("2291", "3", "2014-09-23 05:00:00", "66.249.79.76", "7417");
INSERT INTO `wp_rg_form_view` VALUES("2292", "6", "2014-09-23 05:27:42", "149.210.145.34", "5");
INSERT INTO `wp_rg_form_view` VALUES("2293", "1", "2014-09-23 05:28:39", "149.210.145.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("2294", "2", "2014-09-23 05:28:55", "149.210.145.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("2295", "3", "2014-09-23 06:00:00", "66.249.79.92", "6912");
INSERT INTO `wp_rg_form_view` VALUES("2296", "6", "2014-09-23 06:07:49", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("2297", "3", "2014-09-23 07:00:01", "66.249.79.76", "6782");
INSERT INTO `wp_rg_form_view` VALUES("2298", "6", "2014-09-23 07:09:33", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("2299", "3", "2014-09-23 08:00:26", "66.249.79.76", "6588");
INSERT INTO `wp_rg_form_view` VALUES("2300", "3", "2014-09-23 09:00:00", "66.249.79.84", "7480");
INSERT INTO `wp_rg_form_view` VALUES("2301", "1", "2014-09-23 09:07:56", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2302", "6", "2014-09-23 09:52:41", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2303", "3", "2014-09-23 10:00:00", "66.249.79.92", "7025");
INSERT INTO `wp_rg_form_view` VALUES("2304", "6", "2014-09-23 10:25:00", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2305", "3", "2014-09-23 11:00:00", "66.249.79.92", "7115");
INSERT INTO `wp_rg_form_view` VALUES("2306", "6", "2014-09-23 11:04:16", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("2307", "3", "2014-09-23 12:00:00", "66.249.79.84", "7044");
INSERT INTO `wp_rg_form_view` VALUES("2308", "3", "2014-09-23 13:00:19", "66.249.79.84", "6897");
INSERT INTO `wp_rg_form_view` VALUES("2309", "3", "2014-09-23 14:00:00", "66.249.79.92", "6757");
INSERT INTO `wp_rg_form_view` VALUES("2310", "6", "2014-09-23 14:05:53", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2311", "1", "2014-09-23 14:32:38", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2312", "3", "2014-09-23 15:00:00", "66.249.79.92", "6806");
INSERT INTO `wp_rg_form_view` VALUES("2313", "6", "2014-09-23 15:34:02", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2314", "3", "2014-09-23 16:00:02", "66.249.79.76", "6398");
INSERT INTO `wp_rg_form_view` VALUES("2315", "6", "2014-09-23 16:18:33", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2316", "3", "2014-09-23 17:00:00", "66.249.79.76", "7023");
INSERT INTO `wp_rg_form_view` VALUES("2317", "1", "2014-09-23 17:21:24", "212.83.173.82", "3");
INSERT INTO `wp_rg_form_view` VALUES("2318", "6", "2014-09-23 17:22:11", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2319", "3", "2014-09-23 18:00:00", "66.249.79.92", "6817");
INSERT INTO `wp_rg_form_view` VALUES("2320", "1", "2014-09-23 18:05:06", "96.50.43.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("2321", "6", "2014-09-23 18:21:16", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2322", "3", "2014-09-23 19:00:10", "100.43.85.24", "6336");
INSERT INTO `wp_rg_form_view` VALUES("2323", "6", "2014-09-23 19:34:31", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2324", "1", "2014-09-23 19:42:16", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2325", "3", "2014-09-23 20:00:20", "66.249.79.92", "5348");
INSERT INTO `wp_rg_form_view` VALUES("2326", "6", "2014-09-23 20:25:04", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2327", "3", "2014-09-23 21:00:00", "66.249.79.92", "6540");
INSERT INTO `wp_rg_form_view` VALUES("2328", "6", "2014-09-23 21:48:12", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2329", "3", "2014-09-23 22:00:03", "66.249.79.84", "6628");
INSERT INTO `wp_rg_form_view` VALUES("2330", "6", "2014-09-23 22:49:44", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2331", "3", "2014-09-23 23:00:00", "66.249.79.92", "6450");
INSERT INTO `wp_rg_form_view` VALUES("2332", "6", "2014-09-23 23:02:39", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2333", "3", "2014-09-24 00:00:03", "66.249.79.76", "7310");
INSERT INTO `wp_rg_form_view` VALUES("2334", "6", "2014-09-24 00:17:14", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2335", "3", "2014-09-24 01:00:00", "66.249.79.92", "6781");
INSERT INTO `wp_rg_form_view` VALUES("2336", "6", "2014-09-24 01:02:35", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2337", "3", "2014-09-24 02:00:00", "66.249.79.92", "6932");
INSERT INTO `wp_rg_form_view` VALUES("2338", "3", "2014-09-24 03:00:00", "66.249.79.92", "6954");
INSERT INTO `wp_rg_form_view` VALUES("2339", "6", "2014-09-24 03:11:43", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("2340", "3", "2014-09-24 04:00:00", "66.249.79.92", "6690");
INSERT INTO `wp_rg_form_view` VALUES("2341", "1", "2014-09-24 04:36:07", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2342", "3", "2014-09-24 05:00:00", "66.249.79.92", "6888");
INSERT INTO `wp_rg_form_view` VALUES("2343", "3", "2014-09-24 06:00:00", "66.249.79.92", "7098");
INSERT INTO `wp_rg_form_view` VALUES("2344", "6", "2014-09-24 06:47:53", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2345", "3", "2014-09-24 07:00:01", "66.249.79.84", "7060");
INSERT INTO `wp_rg_form_view` VALUES("2346", "1", "2014-09-24 07:09:30", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2347", "6", "2014-09-24 07:43:42", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2348", "3", "2014-09-24 08:00:02", "66.249.79.92", "6789");
INSERT INTO `wp_rg_form_view` VALUES("2349", "6", "2014-09-24 08:06:15", "207.46.13.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("2350", "1", "2014-09-24 08:37:15", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2351", "3", "2014-09-24 09:00:00", "66.249.79.84", "6977");
INSERT INTO `wp_rg_form_view` VALUES("2352", "6", "2014-09-24 09:29:38", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2353", "3", "2014-09-24 10:00:00", "66.249.79.76", "7223");
INSERT INTO `wp_rg_form_view` VALUES("2354", "6", "2014-09-24 10:03:08", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2355", "3", "2014-09-24 11:00:00", "66.249.79.76", "6724");
INSERT INTO `wp_rg_form_view` VALUES("2356", "6", "2014-09-24 11:21:56", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2357", "3", "2014-09-24 12:00:00", "66.249.79.84", "6688");
INSERT INTO `wp_rg_form_view` VALUES("2358", "3", "2014-09-24 13:00:55", "66.249.79.84", "6084");
INSERT INTO `wp_rg_form_view` VALUES("2359", "6", "2014-09-24 13:18:28", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2360", "3", "2014-09-24 14:00:01", "66.249.79.76", "6612");
INSERT INTO `wp_rg_form_view` VALUES("2361", "6", "2014-09-24 14:29:21", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2362", "3", "2014-09-24 15:00:01", "66.249.79.84", "6875");
INSERT INTO `wp_rg_form_view` VALUES("2363", "6", "2014-09-24 15:03:51", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("2364", "3", "2014-09-24 16:00:00", "66.249.79.76", "5614");
INSERT INTO `wp_rg_form_view` VALUES("2365", "6", "2014-09-24 16:12:46", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2366", "3", "2014-09-24 17:00:05", "66.249.79.92", "5654");
INSERT INTO `wp_rg_form_view` VALUES("2367", "3", "2014-09-24 18:00:00", "66.249.79.76", "6806");
INSERT INTO `wp_rg_form_view` VALUES("2368", "6", "2014-09-24 18:46:18", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2369", "1", "2014-09-24 18:46:33", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2370", "3", "2014-09-24 19:00:00", "66.249.79.84", "7016");
INSERT INTO `wp_rg_form_view` VALUES("2371", "6", "2014-09-24 19:22:52", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2372", "3", "2014-09-24 20:00:01", "66.249.79.84", "6459");
INSERT INTO `wp_rg_form_view` VALUES("2373", "6", "2014-09-24 20:16:43", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2374", "1", "2014-09-24 20:23:08", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2375", "3", "2014-09-24 21:00:00", "66.249.79.92", "6011");
INSERT INTO `wp_rg_form_view` VALUES("2376", "3", "2014-09-24 22:00:09", "66.249.79.92", "5906");
INSERT INTO `wp_rg_form_view` VALUES("2377", "3", "2014-09-24 23:00:00", "66.249.79.84", "6642");
INSERT INTO `wp_rg_form_view` VALUES("2378", "6", "2014-09-24 23:11:37", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2379", "3", "2014-09-25 00:00:07", "66.249.79.92", "6836");
INSERT INTO `wp_rg_form_view` VALUES("2380", "1", "2014-09-25 00:15:39", "212.83.173.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("2381", "3", "2014-09-25 01:00:01", "66.249.79.92", "6641");
INSERT INTO `wp_rg_form_view` VALUES("2382", "6", "2014-09-25 01:14:16", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2383", "2", "2014-09-25 01:39:38", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2384", "1", "2014-09-25 01:39:42", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2385", "3", "2014-09-25 02:00:00", "66.249.79.76", "7282");
INSERT INTO `wp_rg_form_view` VALUES("2386", "6", "2014-09-25 02:09:51", "66.249.79.84", "9");
INSERT INTO `wp_rg_form_view` VALUES("2387", "3", "2014-09-25 03:00:03", "66.249.79.84", "6702");
INSERT INTO `wp_rg_form_view` VALUES("2388", "6", "2014-09-25 03:10:59", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("2389", "3", "2014-09-25 04:00:00", "66.249.79.76", "6529");
INSERT INTO `wp_rg_form_view` VALUES("2390", "6", "2014-09-25 04:06:19", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2391", "3", "2014-09-25 05:00:00", "66.249.79.76", "7406");
INSERT INTO `wp_rg_form_view` VALUES("2392", "6", "2014-09-25 05:44:26", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2393", "3", "2014-09-25 06:00:00", "66.249.79.76", "7065");
INSERT INTO `wp_rg_form_view` VALUES("2394", "1", "2014-09-25 06:10:33", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2395", "6", "2014-09-25 06:16:05", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2396", "3", "2014-09-25 07:00:00", "66.249.79.84", "8761");
INSERT INTO `wp_rg_form_view` VALUES("2397", "6", "2014-09-25 07:15:10", "66.249.79.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("2398", "3", "2014-09-25 08:00:00", "66.249.79.84", "8825");
INSERT INTO `wp_rg_form_view` VALUES("2399", "6", "2014-09-25 08:03:44", "66.249.79.76", "7");
INSERT INTO `wp_rg_form_view` VALUES("2400", "1", "2014-09-25 08:35:11", "220.181.108.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("2401", "3", "2014-09-25 09:00:00", "66.249.79.92", "8827");
INSERT INTO `wp_rg_form_view` VALUES("2402", "3", "2014-09-25 10:00:00", "66.249.79.76", "9023");
INSERT INTO `wp_rg_form_view` VALUES("2403", "6", "2014-09-25 10:37:58", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2404", "3", "2014-09-25 11:00:00", "66.249.79.76", "8829");
INSERT INTO `wp_rg_form_view` VALUES("2405", "3", "2014-09-25 12:00:00", "66.249.79.92", "8707");
INSERT INTO `wp_rg_form_view` VALUES("2406", "3", "2014-09-25 13:00:01", "66.249.79.84", "8586");
INSERT INTO `wp_rg_form_view` VALUES("2407", "6", "2014-09-25 13:26:26", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2408", "3", "2014-09-25 14:00:00", "66.249.79.92", "3136");
INSERT INTO `wp_rg_form_view` VALUES("2409", "6", "2014-09-25 14:14:07", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2410", "3", "2014-09-25 15:00:00", "66.249.79.76", "6531");
INSERT INTO `wp_rg_form_view` VALUES("2411", "1", "2014-09-25 15:39:57", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("2412", "6", "2014-09-25 15:47:08", "66.249.79.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("2413", "3", "2014-09-25 16:00:00", "66.249.79.92", "6550");
INSERT INTO `wp_rg_form_view` VALUES("2414", "1", "2014-09-25 16:55:45", "202.46.49.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("2415", "3", "2014-09-25 17:00:00", "66.249.79.76", "5900");
INSERT INTO `wp_rg_form_view` VALUES("2416", "6", "2014-09-25 17:12:25", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2417", "3", "2014-09-25 18:00:01", "66.249.79.92", "6209");
INSERT INTO `wp_rg_form_view` VALUES("2418", "2", "2014-09-25 18:16:32", "23.20.109.166", "2");
INSERT INTO `wp_rg_form_view` VALUES("2419", "1", "2014-09-25 18:16:36", "23.20.109.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("2420", "6", "2014-09-25 18:19:39", "23.20.109.166", "9");
INSERT INTO `wp_rg_form_view` VALUES("2421", "3", "2014-09-25 19:00:00", "66.249.79.76", "5860");
INSERT INTO `wp_rg_form_view` VALUES("2422", "6", "2014-09-25 19:08:37", "66.249.79.92", "7");
INSERT INTO `wp_rg_form_view` VALUES("2423", "2", "2014-09-25 19:44:33", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2424", "3", "2014-09-25 20:00:00", "66.249.79.76", "6054");
INSERT INTO `wp_rg_form_view` VALUES("2425", "6", "2014-09-25 20:14:36", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2426", "1", "2014-09-25 20:36:37", "24.68.131.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("2427", "3", "2014-09-25 21:00:00", "66.249.79.92", "5666");
INSERT INTO `wp_rg_form_view` VALUES("2428", "6", "2014-09-25 21:25:46", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2429", "1", "2014-09-25 21:26:11", "54.224.108.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("2430", "2", "2014-09-25 21:26:49", "54.224.108.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("2431", "3", "2014-09-25 22:00:01", "66.249.79.76", "6042");
INSERT INTO `wp_rg_form_view` VALUES("2432", "6", "2014-09-25 22:21:30", "204.12.221.251", "4");
INSERT INTO `wp_rg_form_view` VALUES("2433", "3", "2014-09-25 23:00:00", "66.249.79.84", "5740");
INSERT INTO `wp_rg_form_view` VALUES("2434", "6", "2014-09-25 23:27:12", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2435", "2", "2014-09-25 23:33:37", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2436", "3", "2014-09-26 00:00:06", "66.249.79.76", "5789");
INSERT INTO `wp_rg_form_view` VALUES("2437", "1", "2014-09-26 00:20:44", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2438", "6", "2014-09-26 00:26:46", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2439", "3", "2014-09-26 01:00:00", "66.249.79.92", "5883");
INSERT INTO `wp_rg_form_view` VALUES("2440", "6", "2014-09-26 01:22:07", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2441", "3", "2014-09-26 02:00:04", "66.249.79.76", "6207");
INSERT INTO `wp_rg_form_view` VALUES("2442", "6", "2014-09-26 02:02:17", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2443", "3", "2014-09-26 03:00:00", "66.249.79.84", "6365");
INSERT INTO `wp_rg_form_view` VALUES("2444", "6", "2014-09-26 03:05:56", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2445", "3", "2014-09-26 04:00:00", "66.249.79.92", "5921");
INSERT INTO `wp_rg_form_view` VALUES("2446", "1", "2014-09-26 04:51:08", "37.58.100.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("2447", "3", "2014-09-26 05:00:00", "66.249.79.76", "6764");
INSERT INTO `wp_rg_form_view` VALUES("2448", "3", "2014-09-26 06:00:00", "66.249.79.92", "6482");
INSERT INTO `wp_rg_form_view` VALUES("2449", "6", "2014-09-26 06:32:55", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("2450", "3", "2014-09-26 07:00:00", "66.249.79.84", "8996");
INSERT INTO `wp_rg_form_view` VALUES("2451", "6", "2014-09-26 07:10:47", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2452", "3", "2014-09-26 08:00:00", "66.249.79.92", "8922");
INSERT INTO `wp_rg_form_view` VALUES("2453", "6", "2014-09-26 08:19:29", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("2454", "1", "2014-09-26 08:20:40", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2455", "3", "2014-09-26 09:00:00", "66.249.79.84", "9106");
INSERT INTO `wp_rg_form_view` VALUES("2456", "6", "2014-09-26 09:24:49", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2457", "1", "2014-09-26 09:28:04", "107.150.46.59", "3");
INSERT INTO `wp_rg_form_view` VALUES("2458", "2", "2014-09-26 09:30:51", "192.81.212.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("2459", "3", "2014-09-26 10:00:00", "66.249.79.84", "8735");
INSERT INTO `wp_rg_form_view` VALUES("2460", "6", "2014-09-26 10:15:50", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2461", "1", "2014-09-26 10:50:26", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2462", "3", "2014-09-26 11:00:00", "66.249.79.84", "8409");
INSERT INTO `wp_rg_form_view` VALUES("2463", "6", "2014-09-26 11:27:28", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2464", "3", "2014-09-26 12:00:00", "66.249.79.84", "8659");
INSERT INTO `wp_rg_form_view` VALUES("2465", "6", "2014-09-26 12:58:15", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2466", "3", "2014-09-26 13:00:12", "66.249.79.92", "8960");
INSERT INTO `wp_rg_form_view` VALUES("2467", "3", "2014-09-26 14:00:04", "66.249.79.76", "4220");
INSERT INTO `wp_rg_form_view` VALUES("2468", "6", "2014-09-26 14:47:03", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2469", "3", "2014-09-26 15:00:00", "66.249.79.76", "6690");
INSERT INTO `wp_rg_form_view` VALUES("2470", "6", "2014-09-26 15:37:51", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2471", "3", "2014-09-26 16:00:00", "68.180.225.45", "6440");
INSERT INTO `wp_rg_form_view` VALUES("2472", "6", "2014-09-26 16:54:10", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2473", "3", "2014-09-26 17:00:00", "66.249.79.84", "6437");
INSERT INTO `wp_rg_form_view` VALUES("2474", "6", "2014-09-26 17:08:35", "68.180.225.45", "10");
INSERT INTO `wp_rg_form_view` VALUES("2475", "3", "2014-09-26 18:00:00", "66.249.79.92", "6287");
INSERT INTO `wp_rg_form_view` VALUES("2476", "6", "2014-09-26 19:00:07", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2477", "3", "2014-09-26 19:00:08", "66.249.79.84", "5782");
INSERT INTO `wp_rg_form_view` VALUES("2478", "3", "2014-09-26 20:00:00", "66.249.79.92", "6062");
INSERT INTO `wp_rg_form_view` VALUES("2479", "6", "2014-09-26 20:29:34", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2480", "3", "2014-09-26 21:00:00", "66.249.79.76", "6182");
INSERT INTO `wp_rg_form_view` VALUES("2481", "6", "2014-09-26 21:06:39", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2482", "3", "2014-09-26 22:00:06", "66.249.79.84", "6184");
INSERT INTO `wp_rg_form_view` VALUES("2483", "1", "2014-09-26 22:05:13", "124.237.194.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("2484", "3", "2014-09-26 23:00:00", "66.249.79.76", "6882");
INSERT INTO `wp_rg_form_view` VALUES("2485", "3", "2014-09-27 00:00:00", "66.249.79.76", "6721");
INSERT INTO `wp_rg_form_view` VALUES("2486", "6", "2014-09-27 00:24:12", "66.249.79.76", "9");
INSERT INTO `wp_rg_form_view` VALUES("2487", "2", "2014-09-27 00:32:39", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2488", "1", "2014-09-27 00:32:44", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2489", "3", "2014-09-27 01:00:01", "66.249.79.84", "6589");
INSERT INTO `wp_rg_form_view` VALUES("2490", "6", "2014-09-27 01:23:59", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("2491", "3", "2014-09-27 02:00:00", "66.249.79.84", "6741");
INSERT INTO `wp_rg_form_view` VALUES("2492", "2", "2014-09-27 02:42:02", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("2493", "3", "2014-09-27 03:00:00", "66.249.79.84", "5343");
INSERT INTO `wp_rg_form_view` VALUES("2494", "3", "2014-09-27 04:00:00", "66.249.79.76", "6498");
INSERT INTO `wp_rg_form_view` VALUES("2495", "6", "2014-09-27 04:37:13", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2496", "3", "2014-09-27 05:00:17", "66.249.79.76", "6511");
INSERT INTO `wp_rg_form_view` VALUES("2497", "6", "2014-09-27 05:47:12", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2498", "3", "2014-09-27 06:00:00", "66.249.79.92", "6381");
INSERT INTO `wp_rg_form_view` VALUES("2499", "6", "2014-09-27 06:33:39", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2500", "1", "2014-09-27 06:49:15", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2501", "3", "2014-09-27 07:00:00", "66.249.79.84", "8891");
INSERT INTO `wp_rg_form_view` VALUES("2502", "6", "2014-09-27 07:51:02", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2503", "3", "2014-09-27 08:00:00", "66.249.79.92", "9226");
INSERT INTO `wp_rg_form_view` VALUES("2504", "6", "2014-09-27 08:09:42", "66.249.79.84", "11");
INSERT INTO `wp_rg_form_view` VALUES("2505", "1", "2014-09-27 08:56:14", "54.200.127.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("2506", "2", "2014-09-27 08:56:29", "54.200.127.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("2507", "3", "2014-09-27 09:00:00", "66.249.79.76", "9249");
INSERT INTO `wp_rg_form_view` VALUES("2508", "6", "2014-09-27 09:03:12", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2509", "3", "2014-09-27 10:00:03", "66.249.79.92", "9135");
INSERT INTO `wp_rg_form_view` VALUES("2510", "6", "2014-09-27 10:36:47", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("2511", "3", "2014-09-27 11:00:00", "66.249.79.92", "8800");
INSERT INTO `wp_rg_form_view` VALUES("2512", "6", "2014-09-27 11:10:50", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("2513", "3", "2014-09-27 12:00:00", "66.249.79.84", "8993");
INSERT INTO `wp_rg_form_view` VALUES("2514", "6", "2014-09-27 12:06:36", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2515", "2", "2014-09-27 12:24:35", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2516", "1", "2014-09-27 12:50:30", "192.99.141.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("2517", "3", "2014-09-27 13:00:00", "66.249.79.84", "8754");
INSERT INTO `wp_rg_form_view` VALUES("2518", "6", "2014-09-27 13:41:57", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2519", "3", "2014-09-27 14:00:35", "66.249.79.84", "4876");
INSERT INTO `wp_rg_form_view` VALUES("2520", "6", "2014-09-27 14:23:14", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("2521", "3", "2014-09-27 15:00:01", "66.249.79.92", "6808");
INSERT INTO `wp_rg_form_view` VALUES("2522", "6", "2014-09-27 15:06:19", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2523", "3", "2014-09-27 16:00:05", "66.249.79.76", "7040");
INSERT INTO `wp_rg_form_view` VALUES("2524", "3", "2014-09-27 17:00:04", "66.249.79.76", "6919");
INSERT INTO `wp_rg_form_view` VALUES("2525", "6", "2014-09-27 17:13:09", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2526", "3", "2014-09-27 18:00:00", "66.249.79.84", "7161");
INSERT INTO `wp_rg_form_view` VALUES("2527", "6", "2014-09-27 18:03:54", "66.249.79.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("2528", "1", "2014-09-27 18:39:11", "220.181.108.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("2529", "2", "2014-09-27 18:57:52", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2530", "3", "2014-09-27 19:00:01", "66.249.79.84", "6642");
INSERT INTO `wp_rg_form_view` VALUES("2531", "6", "2014-09-27 19:22:13", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("2532", "3", "2014-09-27 20:00:02", "66.249.79.76", "6000");
INSERT INTO `wp_rg_form_view` VALUES("2533", "3", "2014-09-27 21:00:02", "66.249.79.76", "6380");
INSERT INTO `wp_rg_form_view` VALUES("2534", "6", "2014-09-27 21:11:22", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2535", "3", "2014-09-27 22:00:03", "66.249.79.92", "6846");
INSERT INTO `wp_rg_form_view` VALUES("2536", "2", "2014-09-27 22:30:08", "107.150.46.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("2537", "6", "2014-09-27 22:48:59", "192.99.149.88", "4");
INSERT INTO `wp_rg_form_view` VALUES("2538", "3", "2014-09-27 23:00:00", "66.249.79.92", "7165");
INSERT INTO `wp_rg_form_view` VALUES("2539", "6", "2014-09-27 23:04:02", "192.3.24.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("2540", "1", "2014-09-27 23:04:36", "192.3.24.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("2541", "2", "2014-09-27 23:04:49", "192.3.24.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("2542", "3", "2014-09-28 00:00:00", "66.249.79.92", "6981");
INSERT INTO `wp_rg_form_view` VALUES("2543", "6", "2014-09-28 00:35:10", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2544", "3", "2014-09-28 01:00:00", "66.249.79.76", "6954");
INSERT INTO `wp_rg_form_view` VALUES("2545", "6", "2014-09-28 01:14:02", "66.249.79.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("2546", "3", "2014-09-28 02:00:00", "66.249.79.92", "6685");
INSERT INTO `wp_rg_form_view` VALUES("2547", "6", "2014-09-28 02:14:38", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2548", "3", "2014-09-28 03:00:52", "100.43.85.24", "7759");
INSERT INTO `wp_rg_form_view` VALUES("2549", "6", "2014-09-28 03:03:38", "66.249.79.84", "19");
INSERT INTO `wp_rg_form_view` VALUES("2550", "2", "2014-09-28 03:48:13", "157.55.39.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("2551", "1", "2014-09-28 03:48:17", "157.55.39.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("2552", "3", "2014-09-28 04:00:00", "66.249.79.76", "6827");
INSERT INTO `wp_rg_form_view` VALUES("2553", "6", "2014-09-28 04:21:39", "37.58.100.152", "8");
INSERT INTO `wp_rg_form_view` VALUES("2554", "2", "2014-09-28 04:35:45", "62.210.78.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("2555", "1", "2014-09-28 04:35:52", "62.210.78.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("2556", "3", "2014-09-28 05:00:00", "66.249.79.92", "7157");
INSERT INTO `wp_rg_form_view` VALUES("2557", "6", "2014-09-28 05:21:51", "37.58.100.166", "7");
INSERT INTO `wp_rg_form_view` VALUES("2558", "1", "2014-09-28 05:47:01", "93.37.130.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("2559", "2", "2014-09-28 05:47:27", "93.37.130.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("2560", "3", "2014-09-28 06:00:00", "66.249.79.76", "6941");
INSERT INTO `wp_rg_form_view` VALUES("2561", "6", "2014-09-28 06:16:45", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2562", "3", "2014-09-28 07:00:00", "66.249.79.84", "9541");
INSERT INTO `wp_rg_form_view` VALUES("2563", "6", "2014-09-28 07:06:24", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("2564", "1", "2014-09-28 07:40:12", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2565", "3", "2014-09-28 08:00:00", "66.249.79.92", "9131");
INSERT INTO `wp_rg_form_view` VALUES("2566", "6", "2014-09-28 08:02:43", "204.12.221.251", "8");
INSERT INTO `wp_rg_form_view` VALUES("2567", "3", "2014-09-28 09:00:03", "66.249.79.84", "9225");
INSERT INTO `wp_rg_form_view` VALUES("2568", "6", "2014-09-28 09:07:56", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("2569", "3", "2014-09-28 10:00:00", "66.249.79.84", "9234");
INSERT INTO `wp_rg_form_view` VALUES("2570", "1", "2014-09-28 10:22:06", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("2571", "6", "2014-09-28 10:59:28", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2572", "3", "2014-09-28 11:00:00", "66.249.79.84", "8972");
INSERT INTO `wp_rg_form_view` VALUES("2573", "6", "2014-09-28 11:02:44", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2574", "3", "2014-09-28 12:00:00", "66.249.79.92", "7826");
INSERT INTO `wp_rg_form_view` VALUES("2575", "6", "2014-09-28 12:14:18", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2576", "3", "2014-09-28 13:00:00", "66.249.79.76", "4929");
INSERT INTO `wp_rg_form_view` VALUES("2577", "6", "2014-09-28 13:37:55", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2578", "3", "2014-09-28 14:00:00", "66.249.79.76", "6541");
INSERT INTO `wp_rg_form_view` VALUES("2579", "3", "2014-09-28 15:00:00", "66.249.79.92", "6631");
INSERT INTO `wp_rg_form_view` VALUES("2580", "6", "2014-09-28 15:02:05", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2581", "2", "2014-09-28 15:56:37", "109.226.115.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("2582", "3", "2014-09-28 16:00:02", "66.249.79.76", "6490");
INSERT INTO `wp_rg_form_view` VALUES("2583", "6", "2014-09-28 16:09:19", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("2584", "3", "2014-09-28 17:00:00", "66.249.79.92", "6541");
INSERT INTO `wp_rg_form_view` VALUES("2585", "6", "2014-09-28 17:05:06", "195.1.61.193", "3");
INSERT INTO `wp_rg_form_view` VALUES("2586", "1", "2014-09-28 17:05:46", "195.1.61.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("2587", "2", "2014-09-28 17:05:59", "195.1.61.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("2588", "3", "2014-09-28 18:00:00", "66.249.79.92", "7187");
INSERT INTO `wp_rg_form_view` VALUES("2589", "6", "2014-09-28 18:49:14", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2590", "3", "2014-09-28 19:00:00", "66.249.79.84", "7108");
INSERT INTO `wp_rg_form_view` VALUES("2591", "6", "2014-09-28 19:34:33", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2592", "3", "2014-09-28 20:00:00", "66.249.79.92", "6813");
INSERT INTO `wp_rg_form_view` VALUES("2593", "6", "2014-09-28 20:37:13", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2594", "3", "2014-09-28 21:00:04", "66.249.79.92", "7291");
INSERT INTO `wp_rg_form_view` VALUES("2595", "1", "2014-09-28 21:02:19", "204.12.221.251", "3");
INSERT INTO `wp_rg_form_view` VALUES("2596", "6", "2014-09-28 21:19:45", "66.249.79.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("2597", "2", "2014-09-28 21:42:26", "81.202.11.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("2598", "3", "2014-09-28 22:00:00", "66.249.79.76", "7078");
INSERT INTO `wp_rg_form_view` VALUES("2599", "6", "2014-09-28 22:15:19", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2600", "3", "2014-09-28 23:00:05", "66.249.79.92", "6606");
INSERT INTO `wp_rg_form_view` VALUES("2601", "6", "2014-09-28 23:11:52", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("2602", "3", "2014-09-29 00:00:00", "66.249.79.92", "6914");
INSERT INTO `wp_rg_form_view` VALUES("2603", "3", "2014-09-29 01:00:00", "66.249.79.92", "7172");
INSERT INTO `wp_rg_form_view` VALUES("2604", "6", "2014-09-29 01:42:52", "68.180.225.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("2605", "3", "2014-09-29 02:00:00", "66.249.79.92", "7055");
INSERT INTO `wp_rg_form_view` VALUES("2606", "6", "2014-09-29 02:45:51", "204.12.221.251", "8");
INSERT INTO `wp_rg_form_view` VALUES("2607", "1", "2014-09-29 02:46:55", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2608", "3", "2014-09-29 03:00:00", "66.249.79.92", "7189");
INSERT INTO `wp_rg_form_view` VALUES("2609", "6", "2014-09-29 03:15:13", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("2610", "3", "2014-09-29 04:00:00", "66.249.79.76", "7272");
INSERT INTO `wp_rg_form_view` VALUES("2611", "6", "2014-09-29 04:00:57", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2612", "2", "2014-09-29 04:46:05", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2613", "1", "2014-09-29 04:46:09", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2614", "3", "2014-09-29 05:00:00", "66.249.79.76", "7306");
INSERT INTO `wp_rg_form_view` VALUES("2615", "6", "2014-09-29 05:14:06", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2616", "3", "2014-09-29 06:00:11", "66.249.79.84", "7046");
INSERT INTO `wp_rg_form_view` VALUES("2617", "6", "2014-09-29 06:34:32", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2618", "3", "2014-09-29 07:00:00", "66.249.79.92", "9204");
INSERT INTO `wp_rg_form_view` VALUES("2619", "6", "2014-09-29 07:00:51", "66.249.79.92", "20");
INSERT INTO `wp_rg_form_view` VALUES("2620", "3", "2014-09-29 08:00:00", "66.249.79.76", "9042");
INSERT INTO `wp_rg_form_view` VALUES("2621", "6", "2014-09-29 08:06:24", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("2622", "3", "2014-09-29 09:00:00", "66.249.79.84", "8791");
INSERT INTO `wp_rg_form_view` VALUES("2623", "6", "2014-09-29 09:20:11", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2624", "2", "2014-09-29 09:20:21", "220.181.108.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("2625", "3", "2014-09-29 10:00:00", "66.249.79.84", "9217");
INSERT INTO `wp_rg_form_view` VALUES("2626", "6", "2014-09-29 10:03:14", "66.249.79.76", "13");
INSERT INTO `wp_rg_form_view` VALUES("2627", "3", "2014-09-29 11:00:00", "66.249.79.84", "9036");
INSERT INTO `wp_rg_form_view` VALUES("2628", "6", "2014-09-29 11:30:07", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2629", "3", "2014-09-29 12:00:00", "66.249.79.84", "9588");
INSERT INTO `wp_rg_form_view` VALUES("2630", "6", "2014-09-29 12:00:00", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("2631", "2", "2014-09-29 12:20:07", "5.149.253.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("2632", "3", "2014-09-29 13:00:00", "100.43.85.24", "7685");
INSERT INTO `wp_rg_form_view` VALUES("2633", "6", "2014-09-29 13:03:23", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("2634", "3", "2014-09-29 14:00:06", "66.249.79.92", "7118");
INSERT INTO `wp_rg_form_view` VALUES("2635", "6", "2014-09-29 14:11:39", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("2636", "3", "2014-09-29 15:00:00", "66.249.79.92", "6486");
INSERT INTO `wp_rg_form_view` VALUES("2637", "6", "2014-09-29 15:12:18", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2638", "3", "2014-09-29 16:00:00", "66.249.79.84", "6795");
INSERT INTO `wp_rg_form_view` VALUES("2639", "6", "2014-09-29 16:17:35", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("2640", "3", "2014-09-29 17:00:00", "66.249.79.84", "6539");
INSERT INTO `wp_rg_form_view` VALUES("2641", "3", "2014-09-29 18:00:00", "66.249.79.84", "6534");
INSERT INTO `wp_rg_form_view` VALUES("2642", "6", "2014-09-29 18:14:29", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2643", "2", "2014-09-29 18:47:31", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2644", "3", "2014-09-29 19:00:00", "66.249.79.84", "6488");
INSERT INTO `wp_rg_form_view` VALUES("2645", "6", "2014-09-29 19:53:25", "217.69.133.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("2646", "3", "2014-09-29 20:00:00", "66.249.79.92", "4582");
INSERT INTO `wp_rg_form_view` VALUES("2647", "3", "2014-09-29 21:00:03", "66.249.79.84", "6868");
INSERT INTO `wp_rg_form_view` VALUES("2648", "1", "2014-09-29 21:04:11", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2649", "6", "2014-09-29 21:25:57", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2650", "3", "2014-09-29 22:00:01", "66.249.79.76", "6684");
INSERT INTO `wp_rg_form_view` VALUES("2651", "6", "2014-09-29 22:53:58", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2652", "3", "2014-09-29 23:00:06", "66.249.79.92", "7019");
INSERT INTO `wp_rg_form_view` VALUES("2653", "1", "2014-09-29 23:27:30", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2654", "3", "2014-09-30 00:00:00", "66.249.79.76", "6814");
INSERT INTO `wp_rg_form_view` VALUES("2655", "6", "2014-09-30 00:32:13", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2656", "3", "2014-09-30 01:00:00", "66.249.79.76", "7126");
INSERT INTO `wp_rg_form_view` VALUES("2657", "6", "2014-09-30 01:01:54", "198.199.66.80", "4");
INSERT INTO `wp_rg_form_view` VALUES("2658", "1", "2014-09-30 01:01:54", "198.199.66.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("2659", "2", "2014-09-30 01:01:54", "198.199.66.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("2660", "3", "2014-09-30 02:00:00", "66.249.79.92", "6035");
INSERT INTO `wp_rg_form_view` VALUES("2661", "6", "2014-09-30 02:20:41", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("2662", "3", "2014-09-30 03:00:28", "66.249.79.92", "6944");
INSERT INTO `wp_rg_form_view` VALUES("2663", "6", "2014-09-30 03:46:49", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2664", "3", "2014-09-30 04:00:02", "66.249.79.76", "6992");
INSERT INTO `wp_rg_form_view` VALUES("2665", "3", "2014-09-30 05:00:07", "66.249.79.76", "6920");
INSERT INTO `wp_rg_form_view` VALUES("2666", "6", "2014-09-30 05:19:46", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2667", "3", "2014-09-30 06:00:00", "66.249.79.92", "6905");
INSERT INTO `wp_rg_form_view` VALUES("2668", "6", "2014-09-30 06:55:10", "217.69.133.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("2669", "2", "2014-09-30 06:57:42", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2670", "3", "2014-09-30 07:00:00", "66.249.79.92", "9377");
INSERT INTO `wp_rg_form_view` VALUES("2671", "6", "2014-09-30 07:29:14", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2672", "3", "2014-09-30 08:00:00", "66.249.79.76", "9074");
INSERT INTO `wp_rg_form_view` VALUES("2673", "6", "2014-09-30 08:01:56", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("2674", "3", "2014-09-30 09:00:00", "66.249.79.92", "8916");
INSERT INTO `wp_rg_form_view` VALUES("2675", "6", "2014-09-30 09:00:20", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("2676", "3", "2014-09-30 10:00:00", "66.249.79.76", "8388");
INSERT INTO `wp_rg_form_view` VALUES("2677", "6", "2014-09-30 10:05:57", "217.69.133.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("2678", "3", "2014-09-30 11:00:00", "66.249.79.76", "8214");
INSERT INTO `wp_rg_form_view` VALUES("2679", "6", "2014-09-30 11:50:12", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2680", "3", "2014-09-30 12:00:00", "66.249.79.92", "8806");
INSERT INTO `wp_rg_form_view` VALUES("2681", "6", "2014-09-30 12:16:03", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2682", "3", "2014-09-30 13:01:59", "66.249.79.76", "2756");
INSERT INTO `wp_rg_form_view` VALUES("2683", "2", "2014-09-30 13:04:33", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2684", "1", "2014-09-30 13:04:39", "192.99.149.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("2685", "3", "2014-09-30 14:00:00", "66.249.79.84", "7969");
INSERT INTO `wp_rg_form_view` VALUES("2686", "6", "2014-09-30 14:23:14", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2687", "3", "2014-09-30 15:00:03", "66.249.79.76", "6701");
INSERT INTO `wp_rg_form_view` VALUES("2688", "6", "2014-09-30 15:36:16", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2689", "3", "2014-09-30 16:00:00", "66.249.79.92", "6699");
INSERT INTO `wp_rg_form_view` VALUES("2690", "6", "2014-09-30 16:44:08", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2691", "3", "2014-09-30 17:00:00", "66.249.79.92", "7366");
INSERT INTO `wp_rg_form_view` VALUES("2692", "6", "2014-09-30 17:13:44", "66.249.79.92", "9");
INSERT INTO `wp_rg_form_view` VALUES("2693", "3", "2014-09-30 18:00:00", "66.249.79.92", "7119");
INSERT INTO `wp_rg_form_view` VALUES("2694", "6", "2014-09-30 18:08:41", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2695", "3", "2014-09-30 19:00:01", "66.249.79.76", "6656");
INSERT INTO `wp_rg_form_view` VALUES("2696", "2", "2014-09-30 19:11:15", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2697", "6", "2014-09-30 19:18:06", "66.249.79.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("2698", "3", "2014-09-30 20:00:00", "66.249.79.76", "5983");
INSERT INTO `wp_rg_form_view` VALUES("2699", "3", "2014-09-30 21:00:07", "66.249.79.76", "6039");
INSERT INTO `wp_rg_form_view` VALUES("2700", "6", "2014-09-30 21:35:39", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2701", "3", "2014-09-30 22:00:00", "66.249.79.92", "6754");
INSERT INTO `wp_rg_form_view` VALUES("2702", "3", "2014-09-30 23:00:00", "66.249.79.76", "6784");
INSERT INTO `wp_rg_form_view` VALUES("2703", "1", "2014-09-30 23:53:29", "114.46.33.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("2704", "3", "2014-10-01 00:00:00", "66.249.79.84", "6926");
INSERT INTO `wp_rg_form_view` VALUES("2705", "3", "2014-10-01 01:00:00", "66.249.79.76", "6727");
INSERT INTO `wp_rg_form_view` VALUES("2706", "6", "2014-10-01 01:00:12", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2707", "3", "2014-10-01 02:00:00", "66.249.79.76", "5757");
INSERT INTO `wp_rg_form_view` VALUES("2708", "6", "2014-10-01 02:27:49", "202.46.62.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("2709", "3", "2014-10-01 03:00:00", "66.249.79.92", "7488");
INSERT INTO `wp_rg_form_view` VALUES("2710", "6", "2014-10-01 03:55:34", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2711", "3", "2014-10-01 04:00:01", "66.249.79.84", "6068");
INSERT INTO `wp_rg_form_view` VALUES("2712", "6", "2014-10-01 04:29:02", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2713", "3", "2014-10-01 05:00:00", "66.249.79.92", "7139");
INSERT INTO `wp_rg_form_view` VALUES("2714", "6", "2014-10-01 05:19:53", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2715", "3", "2014-10-01 06:00:00", "66.249.79.76", "6847");
INSERT INTO `wp_rg_form_view` VALUES("2716", "6", "2014-10-01 06:26:39", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2717", "3", "2014-10-01 07:00:00", "66.249.79.76", "10125");
INSERT INTO `wp_rg_form_view` VALUES("2718", "1", "2014-10-01 07:11:49", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2719", "6", "2014-10-01 07:26:56", "100.43.85.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("2720", "3", "2014-10-01 08:00:04", "66.249.79.92", "9358");
INSERT INTO `wp_rg_form_view` VALUES("2721", "6", "2014-10-01 08:12:22", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2722", "1", "2014-10-01 08:50:49", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("2723", "3", "2014-10-01 09:00:00", "66.249.79.92", "9174");
INSERT INTO `wp_rg_form_view` VALUES("2724", "6", "2014-10-01 09:05:57", "66.249.79.84", "9");
INSERT INTO `wp_rg_form_view` VALUES("2725", "3", "2014-10-01 10:00:00", "66.249.79.92", "9443");
INSERT INTO `wp_rg_form_view` VALUES("2726", "3", "2014-10-01 11:00:00", "66.249.79.84", "9052");
INSERT INTO `wp_rg_form_view` VALUES("2727", "6", "2014-10-01 11:25:47", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2728", "3", "2014-10-01 12:00:00", "66.249.79.84", "8376");
INSERT INTO `wp_rg_form_view` VALUES("2729", "3", "2014-10-01 13:00:10", "100.43.85.24", "4650");
INSERT INTO `wp_rg_form_view` VALUES("2730", "6", "2014-10-01 13:07:51", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2731", "3", "2014-10-01 14:00:00", "66.249.79.92", "8080");
INSERT INTO `wp_rg_form_view` VALUES("2732", "3", "2014-10-01 15:00:36", "66.249.79.76", "6234");
INSERT INTO `wp_rg_form_view` VALUES("2733", "6", "2014-10-01 15:21:15", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2734", "3", "2014-10-01 16:00:00", "66.249.79.84", "7029");
INSERT INTO `wp_rg_form_view` VALUES("2735", "6", "2014-10-01 16:04:03", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("2736", "3", "2014-10-01 17:00:00", "100.43.85.24", "6584");
INSERT INTO `wp_rg_form_view` VALUES("2737", "6", "2014-10-01 17:02:20", "100.43.85.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("2738", "2", "2014-10-01 17:23:19", "204.12.221.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("2739", "3", "2014-10-01 18:00:00", "66.249.79.76", "6461");
INSERT INTO `wp_rg_form_view` VALUES("2740", "6", "2014-10-01 18:00:19", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2741", "1", "2014-10-01 18:33:14", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2742", "3", "2014-10-01 19:00:00", "66.249.79.92", "6968");
INSERT INTO `wp_rg_form_view` VALUES("2743", "6", "2014-10-01 19:29:51", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2744", "3", "2014-10-01 20:00:00", "66.249.79.76", "6528");
INSERT INTO `wp_rg_form_view` VALUES("2745", "6", "2014-10-01 20:38:41", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2746", "3", "2014-10-01 21:00:00", "66.249.79.92", "6382");
INSERT INTO `wp_rg_form_view` VALUES("2747", "6", "2014-10-01 21:21:07", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2748", "3", "2014-10-01 22:00:01", "66.249.79.84", "6800");
INSERT INTO `wp_rg_form_view` VALUES("2749", "6", "2014-10-01 22:02:32", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2750", "3", "2014-10-01 23:00:00", "66.249.79.92", "6850");
INSERT INTO `wp_rg_form_view` VALUES("2751", "6", "2014-10-01 23:26:01", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2752", "3", "2014-10-02 00:00:01", "66.249.79.76", "6412");
INSERT INTO `wp_rg_form_view` VALUES("2753", "3", "2014-10-02 01:00:01", "66.249.79.92", "6736");
INSERT INTO `wp_rg_form_view` VALUES("2754", "6", "2014-10-02 01:26:39", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2755", "3", "2014-10-02 02:00:59", "66.249.79.92", "3412");
INSERT INTO `wp_rg_form_view` VALUES("2756", "6", "2014-10-02 02:28:17", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2757", "3", "2014-10-02 03:00:02", "66.249.79.92", "3012");
INSERT INTO `wp_rg_form_view` VALUES("2758", "3", "2014-10-02 04:00:14", "66.249.79.84", "6254");
INSERT INTO `wp_rg_form_view` VALUES("2759", "6", "2014-10-02 04:44:19", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2760", "3", "2014-10-02 05:00:01", "100.43.85.24", "6596");
INSERT INTO `wp_rg_form_view` VALUES("2761", "6", "2014-10-02 05:09:06", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("2762", "3", "2014-10-02 06:00:01", "66.249.79.76", "6398");
INSERT INTO `wp_rg_form_view` VALUES("2763", "6", "2014-10-02 06:31:08", "202.46.50.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("2764", "3", "2014-10-02 07:00:01", "66.249.79.76", "9052");
INSERT INTO `wp_rg_form_view` VALUES("2765", "6", "2014-10-02 07:16:09", "202.46.63.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("2766", "1", "2014-10-02 07:36:07", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2767", "3", "2014-10-02 08:00:00", "66.249.79.76", "8189");
INSERT INTO `wp_rg_form_view` VALUES("2768", "6", "2014-10-02 08:23:55", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2769", "2", "2014-10-02 08:33:44", "157.55.39.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("2770", "3", "2014-10-02 09:00:00", "66.249.79.84", "7491");
INSERT INTO `wp_rg_form_view` VALUES("2771", "6", "2014-10-02 09:31:56", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2772", "3", "2014-10-02 10:00:00", "66.249.79.84", "7126");
INSERT INTO `wp_rg_form_view` VALUES("2773", "6", "2014-10-02 10:22:22", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2774", "3", "2014-10-02 11:00:00", "66.249.67.84", "786");
INSERT INTO `wp_rg_form_view` VALUES("2775", "3", "2014-10-02 12:00:40", "66.249.67.84", "1060");
INSERT INTO `wp_rg_form_view` VALUES("2776", "3", "2014-10-02 13:00:01", "66.249.67.92", "5396");
INSERT INTO `wp_rg_form_view` VALUES("2777", "6", "2014-10-02 13:11:05", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2778", "3", "2014-10-02 14:00:04", "66.249.67.84", "6574");
INSERT INTO `wp_rg_form_view` VALUES("2779", "6", "2014-10-02 14:38:08", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2780", "3", "2014-10-02 15:00:01", "66.249.67.92", "5792");
INSERT INTO `wp_rg_form_view` VALUES("2781", "6", "2014-10-02 15:02:35", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2782", "3", "2014-10-02 16:00:00", "66.249.67.76", "5272");
INSERT INTO `wp_rg_form_view` VALUES("2783", "6", "2014-10-02 16:00:03", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2784", "3", "2014-10-02 17:00:15", "66.249.67.84", "5818");
INSERT INTO `wp_rg_form_view` VALUES("2785", "3", "2014-10-02 18:00:00", "66.249.67.76", "5206");
INSERT INTO `wp_rg_form_view` VALUES("2786", "1", "2014-10-02 18:01:58", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("2787", "3", "2014-10-02 19:00:00", "66.249.67.92", "5430");
INSERT INTO `wp_rg_form_view` VALUES("2788", "1", "2014-10-02 19:26:32", "157.55.39.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("2789", "6", "2014-10-02 19:31:51", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("2790", "3", "2014-10-02 20:00:00", "100.43.85.24", "5841");
INSERT INTO `wp_rg_form_view` VALUES("2791", "6", "2014-10-02 20:31:18", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2792", "3", "2014-10-02 21:00:00", "66.249.67.84", "5944");
INSERT INTO `wp_rg_form_view` VALUES("2793", "6", "2014-10-02 21:07:26", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2794", "3", "2014-10-02 22:00:00", "66.249.67.76", "5955");
INSERT INTO `wp_rg_form_view` VALUES("2795", "6", "2014-10-02 22:42:37", "202.46.63.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("2796", "3", "2014-10-02 23:00:00", "100.43.85.24", "5844");
INSERT INTO `wp_rg_form_view` VALUES("2797", "3", "2014-10-03 00:00:00", "66.249.67.92", "4214");
INSERT INTO `wp_rg_form_view` VALUES("2798", "3", "2014-10-03 01:00:00", "66.249.67.84", "6724");
INSERT INTO `wp_rg_form_view` VALUES("2799", "6", "2014-10-03 01:20:52", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2800", "3", "2014-10-03 02:00:00", "66.249.67.76", "6572");
INSERT INTO `wp_rg_form_view` VALUES("2801", "6", "2014-10-03 02:06:01", "220.181.108.120", "6");
INSERT INTO `wp_rg_form_view` VALUES("2802", "2", "2014-10-03 02:59:00", "202.46.48.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("2803", "3", "2014-10-03 03:00:01", "66.249.79.84", "6797");
INSERT INTO `wp_rg_form_view` VALUES("2804", "6", "2014-10-03 03:10:04", "62.210.167.213", "7");
INSERT INTO `wp_rg_form_view` VALUES("2805", "3", "2014-10-03 04:00:00", "66.249.79.92", "7014");
INSERT INTO `wp_rg_form_view` VALUES("2806", "6", "2014-10-03 04:42:20", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2807", "3", "2014-10-03 05:00:01", "66.249.79.76", "7018");
INSERT INTO `wp_rg_form_view` VALUES("2808", "6", "2014-10-03 05:14:07", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("2809", "3", "2014-10-03 06:00:00", "66.249.79.76", "7246");
INSERT INTO `wp_rg_form_view` VALUES("2810", "6", "2014-10-03 06:18:58", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2811", "3", "2014-10-03 07:00:01", "66.249.79.76", "8298");
INSERT INTO `wp_rg_form_view` VALUES("2812", "6", "2014-10-03 07:59:19", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2813", "3", "2014-10-03 08:00:00", "66.249.79.92", "8912");
INSERT INTO `wp_rg_form_view` VALUES("2814", "6", "2014-10-03 08:03:06", "157.55.39.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("2815", "3", "2014-10-03 09:00:00", "66.249.79.76", "8248");
INSERT INTO `wp_rg_form_view` VALUES("2816", "3", "2014-10-03 10:00:00", "66.249.79.84", "7889");
INSERT INTO `wp_rg_form_view` VALUES("2817", "6", "2014-10-03 10:32:05", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("2818", "3", "2014-10-03 11:00:00", "66.249.79.84", "3819");
INSERT INTO `wp_rg_form_view` VALUES("2819", "6", "2014-10-03 11:00:02", "100.43.85.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("2820", "2", "2014-10-03 11:17:10", "62.210.122.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("2821", "1", "2014-10-03 11:17:15", "62.210.122.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("2822", "3", "2014-10-03 12:00:00", "100.43.85.24", "2348");
INSERT INTO `wp_rg_form_view` VALUES("2823", "3", "2014-10-03 13:00:03", "66.249.79.92", "7427");
INSERT INTO `wp_rg_form_view` VALUES("2824", "6", "2014-10-03 13:36:07", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2825", "3", "2014-10-03 14:00:00", "66.249.79.84", "7486");
INSERT INTO `wp_rg_form_view` VALUES("2826", "6", "2014-10-03 14:01:19", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2827", "3", "2014-10-03 15:00:00", "66.249.79.76", "6013");
INSERT INTO `wp_rg_form_view` VALUES("2828", "6", "2014-10-03 15:21:49", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("2829", "3", "2014-10-03 16:00:01", "66.249.79.84", "6962");
INSERT INTO `wp_rg_form_view` VALUES("2830", "6", "2014-10-03 16:30:25", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2831", "3", "2014-10-03 17:00:01", "66.249.79.76", "9222");
INSERT INTO `wp_rg_form_view` VALUES("2832", "1", "2014-10-03 17:35:59", "162.243.238.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("2833", "6", "2014-10-03 17:51:32", "162.243.238.128", "2");
INSERT INTO `wp_rg_form_view` VALUES("2834", "3", "2014-10-03 18:00:00", "162.243.238.128", "10138");
INSERT INTO `wp_rg_form_view` VALUES("2835", "6", "2014-10-03 18:23:33", "162.243.238.128", "14");
INSERT INTO `wp_rg_form_view` VALUES("2836", "1", "2014-10-03 18:50:31", "5.196.107.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("2837", "3", "2014-10-03 19:00:00", "66.249.79.92", "6796");
INSERT INTO `wp_rg_form_view` VALUES("2838", "6", "2014-10-03 19:00:00", "162.243.238.128", "12");
INSERT INTO `wp_rg_form_view` VALUES("2839", "1", "2014-10-03 19:03:40", "5.196.109.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("2840", "3", "2014-10-03 20:00:00", "66.249.79.76", "7001");
INSERT INTO `wp_rg_form_view` VALUES("2841", "6", "2014-10-03 20:14:28", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2842", "2", "2014-10-03 20:35:23", "27.159.253.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("2843", "3", "2014-10-03 21:00:01", "66.249.79.92", "6120");
INSERT INTO `wp_rg_form_view` VALUES("2844", "1", "2014-10-03 21:40:39", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2845", "3", "2014-10-03 22:00:14", "66.249.79.76", "6901");
INSERT INTO `wp_rg_form_view` VALUES("2846", "6", "2014-10-03 22:05:14", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2847", "3", "2014-10-03 23:00:00", "66.249.79.84", "7361");
INSERT INTO `wp_rg_form_view` VALUES("2848", "6", "2014-10-03 23:16:58", "202.46.50.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("2849", "3", "2014-10-04 00:00:01", "66.249.79.84", "7141");
INSERT INTO `wp_rg_form_view` VALUES("2850", "6", "2014-10-04 00:01:22", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2851", "3", "2014-10-04 01:00:00", "66.249.79.76", "4059");
INSERT INTO `wp_rg_form_view` VALUES("2852", "3", "2014-10-04 02:00:01", "66.249.79.92", "7076");
INSERT INTO `wp_rg_form_view` VALUES("2853", "1", "2014-10-04 02:45:03", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("2854", "3", "2014-10-04 03:00:00", "66.249.79.92", "6550");
INSERT INTO `wp_rg_form_view` VALUES("2855", "3", "2014-10-04 04:00:01", "66.249.79.84", "6380");
INSERT INTO `wp_rg_form_view` VALUES("2856", "3", "2014-10-04 05:00:00", "66.249.79.84", "6812");
INSERT INTO `wp_rg_form_view` VALUES("2857", "6", "2014-10-04 05:45:14", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("2858", "3", "2014-10-04 06:00:00", "66.249.79.92", "6959");
INSERT INTO `wp_rg_form_view` VALUES("2859", "6", "2014-10-04 06:08:39", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("2860", "3", "2014-10-04 07:00:00", "66.249.79.76", "9578");
INSERT INTO `wp_rg_form_view` VALUES("2861", "6", "2014-10-04 07:25:52", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("2862", "3", "2014-10-04 08:00:00", "66.249.79.92", "8984");
INSERT INTO `wp_rg_form_view` VALUES("2863", "6", "2014-10-04 08:12:00", "202.46.50.41", "6");
INSERT INTO `wp_rg_form_view` VALUES("2864", "3", "2014-10-04 09:00:00", "66.249.79.76", "9143");
INSERT INTO `wp_rg_form_view` VALUES("2865", "6", "2014-10-04 09:10:14", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2866", "3", "2014-10-04 10:00:00", "66.249.79.76", "9073");
INSERT INTO `wp_rg_form_view` VALUES("2867", "6", "2014-10-04 10:49:44", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2868", "3", "2014-10-04 11:00:00", "66.249.79.84", "7881");
INSERT INTO `wp_rg_form_view` VALUES("2869", "6", "2014-10-04 11:38:40", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("2870", "3", "2014-10-04 12:00:13", "66.249.79.76", "1344");
INSERT INTO `wp_rg_form_view` VALUES("2871", "2", "2014-10-04 12:14:19", "62.210.122.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("2872", "1", "2014-10-04 12:14:24", "62.210.122.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("2873", "6", "2014-10-04 12:30:40", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("2874", "3", "2014-10-04 13:00:09", "66.249.79.76", "1306");
INSERT INTO `wp_rg_form_view` VALUES("2875", "2", "2014-10-04 13:05:54", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2876", "1", "2014-10-04 13:05:56", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("2877", "3", "2014-10-04 14:00:10", "66.249.79.84", "1507");
INSERT INTO `wp_rg_form_view` VALUES("2878", "6", "2014-10-04 14:15:23", "100.43.85.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("2879", "1", "2014-10-04 14:20:22", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("2880", "2", "2014-10-04 14:53:34", "198.211.106.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("2881", "3", "2014-10-04 15:00:17", "66.249.79.92", "1724");
INSERT INTO `wp_rg_form_view` VALUES("2882", "3", "2014-10-04 16:00:03", "66.249.79.76", "6434");
INSERT INTO `wp_rg_form_view` VALUES("2883", "6", "2014-10-04 16:20:25", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("2884", "3", "2014-10-04 17:00:00", "66.249.79.92", "6392");
INSERT INTO `wp_rg_form_view` VALUES("2885", "3", "2014-10-04 18:00:00", "66.249.79.84", "6963");
INSERT INTO `wp_rg_form_view` VALUES("2886", "3", "2014-10-04 19:00:00", "66.249.79.84", "6648");
INSERT INTO `wp_rg_form_view` VALUES("2887", "6", "2014-10-04 19:44:56", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("2888", "3", "2014-10-04 20:00:00", "66.249.79.76", "6532");
INSERT INTO `wp_rg_form_view` VALUES("2889", "3", "2014-10-04 21:00:00", "66.249.79.92", "6419");
INSERT INTO `wp_rg_form_view` VALUES("2890", "6", "2014-10-04 21:19:07", "192.99.149.88", "6");
INSERT INTO `wp_rg_form_view` VALUES("2891", "3", "2014-10-04 22:00:01", "66.249.79.76", "6632");
INSERT INTO `wp_rg_form_view` VALUES("2892", "3", "2014-10-04 23:00:04", "66.249.79.76", "4990");
INSERT INTO `wp_rg_form_view` VALUES("2893", "6", "2014-10-04 23:00:06", "66.249.79.76", "1218");
INSERT INTO `wp_rg_form_view` VALUES("2894", "3", "2014-10-05 00:00:00", "66.249.79.76", "2760");
INSERT INTO `wp_rg_form_view` VALUES("2895", "6", "2014-10-05 00:00:01", "66.249.79.76", "668");
INSERT INTO `wp_rg_form_view` VALUES("2896", "3", "2014-10-05 01:00:28", "66.249.79.92", "2298");
INSERT INTO `wp_rg_form_view` VALUES("2897", "6", "2014-10-05 01:00:29", "66.249.79.92", "564");
INSERT INTO `wp_rg_form_view` VALUES("2898", "3", "2014-10-05 02:00:09", "66.249.79.92", "5346");
INSERT INTO `wp_rg_form_view` VALUES("2899", "6", "2014-10-05 02:00:10", "66.249.79.92", "1324");
INSERT INTO `wp_rg_form_view` VALUES("2900", "3", "2014-10-05 03:00:00", "66.249.79.76", "5632");
INSERT INTO `wp_rg_form_view` VALUES("2901", "6", "2014-10-05 03:00:02", "66.249.79.76", "1378");
INSERT INTO `wp_rg_form_view` VALUES("2902", "2", "2014-10-05 03:19:24", "140.237.37.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("2903", "3", "2014-10-05 04:00:00", "66.249.79.76", "5369");
INSERT INTO `wp_rg_form_view` VALUES("2904", "6", "2014-10-05 04:00:01", "66.249.79.76", "1322");
INSERT INTO `wp_rg_form_view` VALUES("2905", "3", "2014-10-05 05:00:00", "66.249.79.84", "5795");
INSERT INTO `wp_rg_form_view` VALUES("2906", "6", "2014-10-05 05:00:02", "66.249.79.84", "1435");
INSERT INTO `wp_rg_form_view` VALUES("2907", "6", "2014-10-05 06:00:00", "66.249.79.84", "1363");
INSERT INTO `wp_rg_form_view` VALUES("2908", "3", "2014-10-05 06:00:03", "66.249.79.84", "5548");
INSERT INTO `wp_rg_form_view` VALUES("2909", "2", "2014-10-05 06:30:43", "27.150.197.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("2910", "1", "2014-10-05 06:38:26", "27.150.197.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("2911", "3", "2014-10-05 07:00:16", "66.249.79.76", "6821");
INSERT INTO `wp_rg_form_view` VALUES("2912", "6", "2014-10-05 07:00:19", "66.249.79.76", "1662");
INSERT INTO `wp_rg_form_view` VALUES("2913", "1", "2014-10-05 07:45:21", "192.99.221.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("2914", "3", "2014-10-05 08:00:00", "66.249.79.76", "5013");
INSERT INTO `wp_rg_form_view` VALUES("2915", "6", "2014-10-05 08:00:01", "66.249.79.76", "1240");
INSERT INTO `wp_rg_form_view` VALUES("2916", "3", "2014-10-05 09:00:01", "66.249.79.84", "6325");
INSERT INTO `wp_rg_form_view` VALUES("2917", "6", "2014-10-05 09:00:03", "66.249.79.84", "1542");
INSERT INTO `wp_rg_form_view` VALUES("2918", "3", "2014-10-05 10:00:00", "66.249.79.84", "6578");
INSERT INTO `wp_rg_form_view` VALUES("2919", "6", "2014-10-05 10:00:01", "66.249.79.84", "1606");
INSERT INTO `wp_rg_form_view` VALUES("2920", "1", "2014-10-05 10:31:59", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("2921", "3", "2014-10-05 11:00:00", "66.249.79.76", "2991");
INSERT INTO `wp_rg_form_view` VALUES("2922", "6", "2014-10-05 11:00:03", "66.249.79.76", "728");
INSERT INTO `wp_rg_form_view` VALUES("2923", "3", "2014-10-05 12:00:41", "66.249.79.76", "1743");
INSERT INTO `wp_rg_form_view` VALUES("2924", "6", "2014-10-05 12:00:43", "66.249.79.76", "432");
INSERT INTO `wp_rg_form_view` VALUES("2925", "3", "2014-10-05 13:00:02", "66.249.79.76", "6070");
INSERT INTO `wp_rg_form_view` VALUES("2926", "6", "2014-10-05 13:00:03", "66.249.79.76", "1495");
INSERT INTO `wp_rg_form_view` VALUES("2927", "3", "2014-10-05 14:00:00", "66.249.79.92", "6177");
INSERT INTO `wp_rg_form_view` VALUES("2928", "6", "2014-10-05 14:00:02", "66.249.79.92", "1528");
INSERT INTO `wp_rg_form_view` VALUES("2929", "3", "2014-10-05 15:00:04", "66.249.79.84", "5128");
INSERT INTO `wp_rg_form_view` VALUES("2930", "6", "2014-10-05 15:00:06", "66.249.79.84", "1274");
INSERT INTO `wp_rg_form_view` VALUES("2931", "3", "2014-10-05 16:00:00", "66.249.79.84", "5098");
INSERT INTO `wp_rg_form_view` VALUES("2932", "6", "2014-10-05 16:00:01", "66.249.79.84", "1260");
INSERT INTO `wp_rg_form_view` VALUES("2933", "3", "2014-10-05 17:00:02", "66.249.79.92", "4889");
INSERT INTO `wp_rg_form_view` VALUES("2934", "6", "2014-10-05 17:00:04", "66.249.79.92", "1202");
INSERT INTO `wp_rg_form_view` VALUES("2935", "3", "2014-10-05 18:00:00", "66.249.79.76", "4933");
INSERT INTO `wp_rg_form_view` VALUES("2936", "6", "2014-10-05 18:00:01", "66.249.79.76", "1218");
INSERT INTO `wp_rg_form_view` VALUES("2937", "3", "2014-10-05 19:00:02", "66.249.79.84", "4694");
INSERT INTO `wp_rg_form_view` VALUES("2938", "6", "2014-10-05 19:00:04", "66.249.79.84", "1150");
INSERT INTO `wp_rg_form_view` VALUES("2939", "3", "2014-10-05 20:00:01", "66.249.79.92", "6490");
INSERT INTO `wp_rg_form_view` VALUES("2940", "6", "2014-10-05 20:00:03", "66.249.79.92", "1582");
INSERT INTO `wp_rg_form_view` VALUES("2941", "3", "2014-10-05 21:00:01", "66.249.79.92", "6284");
INSERT INTO `wp_rg_form_view` VALUES("2942", "6", "2014-10-05 21:00:04", "66.249.79.92", "1514");
INSERT INTO `wp_rg_form_view` VALUES("2943", "1", "2014-10-05 21:35:29", "27.159.20.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("2944", "3", "2014-10-05 22:00:00", "66.249.79.76", "5815");
INSERT INTO `wp_rg_form_view` VALUES("2945", "6", "2014-10-05 22:00:02", "66.249.79.76", "1420");
INSERT INTO `wp_rg_form_view` VALUES("2946", "3", "2014-10-05 23:00:00", "66.249.79.84", "1445");
INSERT INTO `wp_rg_form_view` VALUES("2947", "6", "2014-10-05 23:00:01", "66.249.79.84", "350");
INSERT INTO `wp_rg_form_view` VALUES("2948", "2", "2014-10-05 23:12:27", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("2949", "3", "2014-10-06 00:00:27", "66.249.79.92", "3489");
INSERT INTO `wp_rg_form_view` VALUES("2950", "6", "2014-10-06 00:00:28", "66.249.79.92", "856");
INSERT INTO `wp_rg_form_view` VALUES("2951", "6", "2014-10-06 01:00:00", "66.249.79.84", "1392");
INSERT INTO `wp_rg_form_view` VALUES("2952", "3", "2014-10-06 01:00:03", "66.249.79.76", "5642");
INSERT INTO `wp_rg_form_view` VALUES("2953", "3", "2014-10-06 02:00:11", "66.249.79.76", "5720");
INSERT INTO `wp_rg_form_view` VALUES("2954", "6", "2014-10-06 02:00:14", "66.249.79.76", "1421");
INSERT INTO `wp_rg_form_view` VALUES("2955", "6", "2014-10-06 03:00:00", "66.249.79.84", "1451");
INSERT INTO `wp_rg_form_view` VALUES("2956", "3", "2014-10-06 03:00:02", "66.249.79.92", "5836");
INSERT INTO `wp_rg_form_view` VALUES("2957", "3", "2014-10-06 04:00:01", "66.249.79.84", "5930");
INSERT INTO `wp_rg_form_view` VALUES("2958", "6", "2014-10-06 04:00:03", "66.249.79.84", "1458");
INSERT INTO `wp_rg_form_view` VALUES("2959", "1", "2014-10-06 04:00:32", "212.129.42.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("2960", "3", "2014-10-06 05:00:00", "66.249.79.76", "6251");
INSERT INTO `wp_rg_form_view` VALUES("2961", "6", "2014-10-06 05:00:00", "66.249.79.76", "1538");
INSERT INTO `wp_rg_form_view` VALUES("2962", "3", "2014-10-06 06:00:00", "66.249.79.92", "5796");
INSERT INTO `wp_rg_form_view` VALUES("2963", "6", "2014-10-06 06:00:01", "66.249.79.92", "1428");
INSERT INTO `wp_rg_form_view` VALUES("2964", "3", "2014-10-06 07:00:00", "66.249.79.84", "5797");
INSERT INTO `wp_rg_form_view` VALUES("2965", "6", "2014-10-06 07:00:03", "66.249.79.84", "1429");
INSERT INTO `wp_rg_form_view` VALUES("2966", "3", "2014-10-06 08:00:00", "66.249.79.92", "6006");
INSERT INTO `wp_rg_form_view` VALUES("2967", "6", "2014-10-06 08:00:03", "66.249.79.92", "1484");
INSERT INTO `wp_rg_form_view` VALUES("2968", "3", "2014-10-06 09:00:01", "66.249.79.92", "6001");
INSERT INTO `wp_rg_form_view` VALUES("2969", "6", "2014-10-06 09:00:04", "66.249.79.92", "1474");
INSERT INTO `wp_rg_form_view` VALUES("2970", "6", "2014-10-06 10:00:00", "66.249.79.92", "659");
INSERT INTO `wp_rg_form_view` VALUES("2971", "3", "2014-10-06 10:00:02", "66.249.79.92", "2688");
INSERT INTO `wp_rg_form_view` VALUES("2972", "3", "2014-10-06 11:00:01", "66.249.79.84", "894");
INSERT INTO `wp_rg_form_view` VALUES("2973", "6", "2014-10-06 11:00:03", "66.249.79.84", "222");
INSERT INTO `wp_rg_form_view` VALUES("2974", "3", "2014-10-06 12:00:07", "66.249.79.92", "4847");
INSERT INTO `wp_rg_form_view` VALUES("2975", "6", "2014-10-06 12:00:08", "66.249.79.92", "1190");
INSERT INTO `wp_rg_form_view` VALUES("2976", "3", "2014-10-06 13:00:00", "66.249.79.76", "6015");
INSERT INTO `wp_rg_form_view` VALUES("2977", "6", "2014-10-06 13:00:01", "66.249.79.84", "1484");
INSERT INTO `wp_rg_form_view` VALUES("2978", "3", "2014-10-06 14:00:02", "66.249.79.76", "5978");
INSERT INTO `wp_rg_form_view` VALUES("2979", "6", "2014-10-06 14:00:05", "66.249.79.76", "1472");
INSERT INTO `wp_rg_form_view` VALUES("2980", "6", "2014-10-06 15:00:00", "66.249.79.92", "1488");
INSERT INTO `wp_rg_form_view` VALUES("2981", "3", "2014-10-06 15:00:02", "66.249.79.92", "6037");
INSERT INTO `wp_rg_form_view` VALUES("2982", "1", "2014-10-06 15:06:43", "184.69.27.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("2983", "3", "2014-10-06 16:00:00", "66.249.79.76", "6063");
INSERT INTO `wp_rg_form_view` VALUES("2984", "6", "2014-10-06 16:00:01", "66.249.79.76", "1484");
INSERT INTO `wp_rg_form_view` VALUES("2985", "3", "2014-10-06 17:00:00", "66.249.79.84", "5958");
INSERT INTO `wp_rg_form_view` VALUES("2986", "6", "2014-10-06 17:00:01", "66.249.79.84", "1460");
INSERT INTO `wp_rg_form_view` VALUES("2987", "3", "2014-10-06 18:00:00", "66.249.79.92", "6309");
INSERT INTO `wp_rg_form_view` VALUES("2988", "6", "2014-10-06 18:00:01", "66.249.79.92", "1560");
INSERT INTO `wp_rg_form_view` VALUES("2989", "1", "2014-10-06 18:03:40", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("2990", "3", "2014-10-06 19:00:00", "66.249.79.92", "6159");
INSERT INTO `wp_rg_form_view` VALUES("2991", "6", "2014-10-06 19:00:02", "66.249.79.92", "1514");
INSERT INTO `wp_rg_form_view` VALUES("2992", "3", "2014-10-06 20:00:03", "66.249.79.92", "5977");
INSERT INTO `wp_rg_form_view` VALUES("2993", "6", "2014-10-06 20:00:06", "66.249.79.92", "1464");
INSERT INTO `wp_rg_form_view` VALUES("2994", "1", "2014-10-06 20:47:42", "24.69.105.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("2995", "6", "2014-10-06 21:00:00", "66.249.79.92", "1834");
INSERT INTO `wp_rg_form_view` VALUES("2996", "3", "2014-10-06 21:00:00", "66.249.79.76", "7407");
INSERT INTO `wp_rg_form_view` VALUES("2997", "3", "2014-10-06 22:00:01", "66.249.79.84", "7912");
INSERT INTO `wp_rg_form_view` VALUES("2998", "6", "2014-10-06 22:00:04", "66.249.79.84", "1953");
INSERT INTO `wp_rg_form_view` VALUES("2999", "6", "2014-10-06 23:00:00", "66.249.79.84", "829");
INSERT INTO `wp_rg_form_view` VALUES("3000", "3", "2014-10-06 23:00:00", "66.249.79.76", "3389");
INSERT INTO `wp_rg_form_view` VALUES("3001", "3", "2014-10-07 00:00:00", "66.249.79.84", "6944");
INSERT INTO `wp_rg_form_view` VALUES("3002", "6", "2014-10-07 00:00:00", "66.249.79.84", "1710");
INSERT INTO `wp_rg_form_view` VALUES("3003", "3", "2014-10-07 01:00:00", "66.249.79.84", "7950");
INSERT INTO `wp_rg_form_view` VALUES("3004", "6", "2014-10-07 01:00:01", "66.249.79.84", "1965");
INSERT INTO `wp_rg_form_view` VALUES("3005", "3", "2014-10-07 02:00:00", "66.249.79.92", "7751");
INSERT INTO `wp_rg_form_view` VALUES("3006", "6", "2014-10-07 02:00:00", "66.249.79.76", "1919");
INSERT INTO `wp_rg_form_view` VALUES("3007", "3", "2014-10-07 03:00:00", "66.249.79.84", "7896");
INSERT INTO `wp_rg_form_view` VALUES("3008", "6", "2014-10-07 03:00:00", "66.249.79.76", "1938");
INSERT INTO `wp_rg_form_view` VALUES("3009", "3", "2014-10-07 04:00:01", "66.249.79.92", "7812");
INSERT INTO `wp_rg_form_view` VALUES("3010", "6", "2014-10-07 04:00:04", "66.249.79.92", "1913");
INSERT INTO `wp_rg_form_view` VALUES("3011", "6", "2014-10-07 05:00:00", "66.249.79.92", "1772");
INSERT INTO `wp_rg_form_view` VALUES("3012", "3", "2014-10-07 05:00:01", "66.249.79.92", "7199");
INSERT INTO `wp_rg_form_view` VALUES("3013", "1", "2014-10-07 05:45:33", "37.153.195.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("3014", "2", "2014-10-07 05:45:48", "37.153.195.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("3015", "3", "2014-10-07 06:00:01", "66.249.79.92", "7628");
INSERT INTO `wp_rg_form_view` VALUES("3016", "6", "2014-10-07 06:00:04", "66.249.79.92", "1880");
INSERT INTO `wp_rg_form_view` VALUES("3017", "3", "2014-10-07 07:00:00", "66.249.79.76", "7663");
INSERT INTO `wp_rg_form_view` VALUES("3018", "6", "2014-10-07 07:00:00", "66.249.79.76", "1887");
INSERT INTO `wp_rg_form_view` VALUES("3019", "3", "2014-10-07 08:00:00", "66.249.79.84", "8275");
INSERT INTO `wp_rg_form_view` VALUES("3020", "6", "2014-10-07 08:00:02", "66.249.79.84", "2046");
INSERT INTO `wp_rg_form_view` VALUES("3021", "3", "2014-10-07 09:00:00", "66.249.79.84", "8109");
INSERT INTO `wp_rg_form_view` VALUES("3022", "6", "2014-10-07 09:00:02", "66.249.79.84", "2012");
INSERT INTO `wp_rg_form_view` VALUES("3023", "3", "2014-10-07 10:00:00", "66.249.79.84", "5155");
INSERT INTO `wp_rg_form_view` VALUES("3024", "6", "2014-10-07 10:00:02", "66.249.79.84", "1260");
INSERT INTO `wp_rg_form_view` VALUES("3025", "2", "2014-10-07 10:10:50", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("3026", "3", "2014-10-07 11:00:02", "66.249.79.76", "3992");
INSERT INTO `wp_rg_form_view` VALUES("3027", "6", "2014-10-07 11:00:04", "66.249.79.76", "972");
INSERT INTO `wp_rg_form_view` VALUES("3028", "3", "2014-10-07 12:00:01", "66.249.79.84", "6584");
INSERT INTO `wp_rg_form_view` VALUES("3029", "6", "2014-10-07 12:00:03", "66.249.79.84", "1613");
INSERT INTO `wp_rg_form_view` VALUES("3030", "3", "2014-10-07 13:00:00", "66.249.79.76", "6309");
INSERT INTO `wp_rg_form_view` VALUES("3031", "6", "2014-10-07 13:00:00", "66.249.79.76", "1554");
INSERT INTO `wp_rg_form_view` VALUES("3032", "3", "2014-10-07 14:00:00", "66.249.79.92", "5903");
INSERT INTO `wp_rg_form_view` VALUES("3033", "6", "2014-10-07 14:00:03", "66.249.79.92", "1456");
INSERT INTO `wp_rg_form_view` VALUES("3034", "3", "2014-10-07 15:00:00", "66.249.79.92", "5995");
INSERT INTO `wp_rg_form_view` VALUES("3035", "6", "2014-10-07 15:00:01", "66.249.79.92", "1482");
INSERT INTO `wp_rg_form_view` VALUES("3036", "3", "2014-10-07 16:00:01", "66.249.79.92", "6356");
INSERT INTO `wp_rg_form_view` VALUES("3037", "6", "2014-10-07 16:00:04", "66.249.79.92", "1570");
INSERT INTO `wp_rg_form_view` VALUES("3038", "3", "2014-10-07 17:00:00", "66.249.79.76", "10168");
INSERT INTO `wp_rg_form_view` VALUES("3039", "6", "2014-10-07 17:00:01", "66.249.79.76", "2414");
INSERT INTO `wp_rg_form_view` VALUES("3040", "2", "2014-10-07 17:00:08", "5.9.127.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("3041", "1", "2014-10-07 17:01:29", "5.9.127.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("3042", "6", "2014-10-07 18:00:00", "66.249.79.92", "1569");
INSERT INTO `wp_rg_form_view` VALUES("3043", "3", "2014-10-07 18:00:00", "5.9.127.154", "6422");
INSERT INTO `wp_rg_form_view` VALUES("3044", "3", "2014-10-07 19:00:00", "66.249.79.92", "5639");
INSERT INTO `wp_rg_form_view` VALUES("3045", "6", "2014-10-07 19:00:03", "66.249.79.92", "1388");
INSERT INTO `wp_rg_form_view` VALUES("3046", "1", "2014-10-07 19:11:30", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("3047", "3", "2014-10-07 20:00:00", "66.249.79.92", "5985");
INSERT INTO `wp_rg_form_view` VALUES("3048", "6", "2014-10-07 20:00:00", "66.249.79.92", "1464");
INSERT INTO `wp_rg_form_view` VALUES("3049", "6", "2014-10-07 21:00:00", "66.249.79.76", "1516");
INSERT INTO `wp_rg_form_view` VALUES("3050", "3", "2014-10-07 21:00:04", "66.249.79.92", "6190");
INSERT INTO `wp_rg_form_view` VALUES("3051", "1", "2014-10-07 21:01:44", "72.46.156.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("3052", "3", "2014-10-07 22:00:00", "66.249.79.76", "3184");
INSERT INTO `wp_rg_form_view` VALUES("3053", "6", "2014-10-07 22:00:03", "66.249.79.76", "776");
INSERT INTO `wp_rg_form_view` VALUES("3054", "3", "2014-10-07 23:00:38", "66.249.79.84", "1371");
INSERT INTO `wp_rg_form_view` VALUES("3055", "6", "2014-10-07 23:00:40", "66.249.79.84", "333");
INSERT INTO `wp_rg_form_view` VALUES("3056", "1", "2014-10-07 23:10:39", "37.77.117.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("3057", "2", "2014-10-07 23:10:59", "37.77.117.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("3058", "3", "2014-10-08 00:00:03", "66.249.79.92", "2963");
INSERT INTO `wp_rg_form_view` VALUES("3059", "6", "2014-10-08 00:00:04", "66.249.79.92", "724");
INSERT INTO `wp_rg_form_view` VALUES("3060", "3", "2014-10-08 01:00:00", "66.249.79.84", "5988");
INSERT INTO `wp_rg_form_view` VALUES("3061", "6", "2014-10-08 01:00:00", "66.249.79.84", "1476");
INSERT INTO `wp_rg_form_view` VALUES("3062", "3", "2014-10-08 02:00:00", "66.249.79.84", "6384");
INSERT INTO `wp_rg_form_view` VALUES("3063", "6", "2014-10-08 02:00:01", "66.249.79.84", "1576");
INSERT INTO `wp_rg_form_view` VALUES("3064", "2", "2014-10-08 02:20:21", "202.46.49.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("3065", "3", "2014-10-08 03:00:02", "66.249.67.84", "6263");
INSERT INTO `wp_rg_form_view` VALUES("3066", "6", "2014-10-08 03:00:04", "66.249.67.84", "1538");
INSERT INTO `wp_rg_form_view` VALUES("3067", "3", "2014-10-08 04:00:00", "66.249.67.76", "6416");
INSERT INTO `wp_rg_form_view` VALUES("3068", "6", "2014-10-08 04:00:01", "66.249.67.76", "1582");
INSERT INTO `wp_rg_form_view` VALUES("3069", "3", "2014-10-08 05:00:00", "66.249.67.76", "6285");
INSERT INTO `wp_rg_form_view` VALUES("3070", "6", "2014-10-08 05:00:01", "66.249.67.76", "1556");
INSERT INTO `wp_rg_form_view` VALUES("3071", "3", "2014-10-08 06:00:03", "66.249.67.92", "5886");
INSERT INTO `wp_rg_form_view` VALUES("3072", "6", "2014-10-08 06:00:06", "66.249.67.92", "1458");
INSERT INTO `wp_rg_form_view` VALUES("3073", "3", "2014-10-08 07:00:00", "66.249.67.92", "5564");
INSERT INTO `wp_rg_form_view` VALUES("3074", "6", "2014-10-08 07:00:02", "66.249.67.92", "1380");
INSERT INTO `wp_rg_form_view` VALUES("3075", "3", "2014-10-08 08:00:02", "66.249.67.92", "5869");
INSERT INTO `wp_rg_form_view` VALUES("3076", "6", "2014-10-08 08:00:05", "66.249.67.92", "1439");
INSERT INTO `wp_rg_form_view` VALUES("3077", "3", "2014-10-08 09:00:00", "66.249.67.84", "6352");
INSERT INTO `wp_rg_form_view` VALUES("3078", "6", "2014-10-08 09:00:00", "66.249.67.84", "1564");
INSERT INTO `wp_rg_form_view` VALUES("3079", "6", "2014-10-08 10:00:00", "66.249.67.92", "971");
INSERT INTO `wp_rg_form_view` VALUES("3080", "3", "2014-10-08 10:00:01", "66.249.67.92", "3938");
INSERT INTO `wp_rg_form_view` VALUES("3081", "3", "2014-10-08 11:00:04", "66.249.67.76", "2668");
INSERT INTO `wp_rg_form_view` VALUES("3082", "6", "2014-10-08 11:00:06", "66.249.67.76", "658");
INSERT INTO `wp_rg_form_view` VALUES("3083", "3", "2014-10-08 12:00:04", "66.249.67.84", "5522");
INSERT INTO `wp_rg_form_view` VALUES("3084", "6", "2014-10-08 12:00:06", "66.249.67.84", "1356");
INSERT INTO `wp_rg_form_view` VALUES("3085", "3", "2014-10-08 13:00:01", "66.249.67.92", "5499");
INSERT INTO `wp_rg_form_view` VALUES("3086", "6", "2014-10-08 13:00:04", "66.249.67.92", "1352");
INSERT INTO `wp_rg_form_view` VALUES("3087", "3", "2014-10-08 14:00:00", "66.249.67.84", "5525");
INSERT INTO `wp_rg_form_view` VALUES("3088", "6", "2014-10-08 14:00:00", "66.249.67.84", "1358");
INSERT INTO `wp_rg_form_view` VALUES("3089", "1", "2014-10-08 14:48:27", "192.99.141.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("3090", "3", "2014-10-08 15:00:00", "66.249.67.76", "5213");
INSERT INTO `wp_rg_form_view` VALUES("3091", "6", "2014-10-08 15:00:02", "66.249.67.76", "1278");
INSERT INTO `wp_rg_form_view` VALUES("3092", "3", "2014-10-08 16:00:00", "66.249.67.92", "5032");
INSERT INTO `wp_rg_form_view` VALUES("3093", "6", "2014-10-08 16:00:00", "66.249.67.92", "1238");
INSERT INTO `wp_rg_form_view` VALUES("3094", "1", "2014-10-08 16:42:58", "66.249.67.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("3095", "6", "2014-10-08 17:00:00", "66.249.67.92", "1427");
INSERT INTO `wp_rg_form_view` VALUES("3096", "3", "2014-10-08 17:00:03", "66.249.67.76", "5846");
INSERT INTO `wp_rg_form_view` VALUES("3097", "3", "2014-10-08 18:00:00", "66.249.67.92", "5750");
INSERT INTO `wp_rg_form_view` VALUES("3098", "6", "2014-10-08 18:00:01", "66.249.67.92", "1404");
INSERT INTO `wp_rg_form_view` VALUES("3099", "3", "2014-10-08 19:00:00", "66.249.67.92", "5785");
INSERT INTO `wp_rg_form_view` VALUES("3100", "6", "2014-10-08 19:00:03", "66.249.67.92", "1403");
INSERT INTO `wp_rg_form_view` VALUES("3101", "3", "2014-10-08 20:00:00", "66.249.67.92", "5496");
INSERT INTO `wp_rg_form_view` VALUES("3102", "6", "2014-10-08 20:00:01", "66.249.67.92", "1340");
INSERT INTO `wp_rg_form_view` VALUES("3103", "3", "2014-10-08 21:00:00", "66.249.67.76", "5300");
INSERT INTO `wp_rg_form_view` VALUES("3104", "6", "2014-10-08 21:00:03", "66.249.67.76", "1298");
INSERT INTO `wp_rg_form_view` VALUES("3105", "3", "2014-10-08 22:00:01", "66.249.67.92", "2162");
INSERT INTO `wp_rg_form_view` VALUES("3106", "6", "2014-10-08 22:00:05", "66.249.67.92", "534");
INSERT INTO `wp_rg_form_view` VALUES("3107", "3", "2014-10-08 23:01:33", "66.249.67.84", "3514");
INSERT INTO `wp_rg_form_view` VALUES("3108", "6", "2014-10-08 23:01:34", "66.249.67.84", "866");
INSERT INTO `wp_rg_form_view` VALUES("3109", "3", "2014-10-09 00:00:08", "66.249.67.92", "5230");
INSERT INTO `wp_rg_form_view` VALUES("3110", "6", "2014-10-09 00:00:09", "66.249.67.92", "1294");
INSERT INTO `wp_rg_form_view` VALUES("3111", "3", "2014-10-09 01:00:01", "66.249.67.84", "5224");
INSERT INTO `wp_rg_form_view` VALUES("3112", "6", "2014-10-09 01:00:03", "66.249.67.84", "1285");
INSERT INTO `wp_rg_form_view` VALUES("3113", "6", "2014-10-09 02:00:00", "66.249.67.84", "1265");
INSERT INTO `wp_rg_form_view` VALUES("3114", "3", "2014-10-09 02:00:03", "66.249.67.76", "5100");
INSERT INTO `wp_rg_form_view` VALUES("3115", "6", "2014-10-09 03:00:01", "195.211.155.165", "1152");
INSERT INTO `wp_rg_form_view` VALUES("3116", "3", "2014-10-09 03:00:04", "66.249.67.92", "4690");
INSERT INTO `wp_rg_form_view` VALUES("3117", "3", "2014-10-09 04:00:01", "66.249.67.92", "5558");
INSERT INTO `wp_rg_form_view` VALUES("3118", "6", "2014-10-09 04:00:03", "66.249.67.92", "1348");
INSERT INTO `wp_rg_form_view` VALUES("3119", "1", "2014-10-09 04:46:55", "198.100.158.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("3120", "3", "2014-10-09 05:00:01", "66.249.67.84", "5616");
INSERT INTO `wp_rg_form_view` VALUES("3121", "6", "2014-10-09 05:00:04", "66.249.67.84", "1357");
INSERT INTO `wp_rg_form_view` VALUES("3122", "6", "2014-10-09 06:00:00", "66.249.67.92", "1435");
INSERT INTO `wp_rg_form_view` VALUES("3123", "3", "2014-10-09 06:00:03", "66.249.67.92", "5858");
INSERT INTO `wp_rg_form_view` VALUES("3124", "3", "2014-10-09 07:00:04", "66.249.67.76", "5794");
INSERT INTO `wp_rg_form_view` VALUES("3125", "6", "2014-10-09 07:00:06", "66.249.67.76", "1412");
INSERT INTO `wp_rg_form_view` VALUES("3126", "3", "2014-10-09 08:00:00", "66.249.67.84", "5726");
INSERT INTO `wp_rg_form_view` VALUES("3127", "6", "2014-10-09 08:00:02", "66.249.67.84", "1398");
INSERT INTO `wp_rg_form_view` VALUES("3128", "3", "2014-10-09 09:00:00", "66.249.67.76", "5658");
INSERT INTO `wp_rg_form_view` VALUES("3129", "6", "2014-10-09 09:00:00", "66.249.67.76", "1384");
INSERT INTO `wp_rg_form_view` VALUES("3130", "3", "2014-10-09 10:00:00", "66.249.67.92", "2012");
INSERT INTO `wp_rg_form_view` VALUES("3131", "6", "2014-10-09 10:00:02", "66.249.67.92", "496");
INSERT INTO `wp_rg_form_view` VALUES("3132", "3", "2014-10-09 11:01:08", "66.249.67.84", "4441");
INSERT INTO `wp_rg_form_view` VALUES("3133", "6", "2014-10-09 11:01:09", "66.249.67.84", "1088");
INSERT INTO `wp_rg_form_view` VALUES("3134", "3", "2014-10-09 12:00:00", "66.249.67.76", "5372");
INSERT INTO `wp_rg_form_view` VALUES("3135", "6", "2014-10-09 12:00:00", "66.249.67.76", "1300");
INSERT INTO `wp_rg_form_view` VALUES("3136", "3", "2014-10-09 13:00:00", "66.249.67.84", "5450");
INSERT INTO `wp_rg_form_view` VALUES("3137", "6", "2014-10-09 13:00:01", "66.249.67.84", "1340");
INSERT INTO `wp_rg_form_view` VALUES("3138", "3", "2014-10-09 14:00:07", "66.249.67.92", "5190");
INSERT INTO `wp_rg_form_view` VALUES("3139", "6", "2014-10-09 14:00:09", "66.249.67.92", "1272");
INSERT INTO `wp_rg_form_view` VALUES("3140", "3", "2014-10-09 15:00:00", "66.249.67.92", "4692");
INSERT INTO `wp_rg_form_view` VALUES("3141", "6", "2014-10-09 15:00:02", "66.249.67.92", "1144");
INSERT INTO `wp_rg_form_view` VALUES("3142", "3", "2014-10-09 16:00:00", "66.249.67.84", "5744");
INSERT INTO `wp_rg_form_view` VALUES("3143", "6", "2014-10-09 16:00:01", "66.249.67.84", "1410");
INSERT INTO `wp_rg_form_view` VALUES("3144", "3", "2014-10-09 17:00:00", "66.249.67.84", "6296");
INSERT INTO `wp_rg_form_view` VALUES("3145", "6", "2014-10-09 17:00:03", "66.249.67.84", "1536");
INSERT INTO `wp_rg_form_view` VALUES("3146", "3", "2014-10-09 18:00:00", "66.249.67.76", "6093");
INSERT INTO `wp_rg_form_view` VALUES("3147", "6", "2014-10-09 18:00:03", "66.249.67.76", "1486");
INSERT INTO `wp_rg_form_view` VALUES("3148", "6", "2014-10-09 19:00:00", "66.249.67.76", "1474");
INSERT INTO `wp_rg_form_view` VALUES("3149", "3", "2014-10-09 19:00:03", "66.249.67.76", "6033");
INSERT INTO `wp_rg_form_view` VALUES("3150", "3", "2014-10-09 20:00:00", "66.249.67.76", "6217");
INSERT INTO `wp_rg_form_view` VALUES("3151", "6", "2014-10-09 20:00:02", "66.249.67.76", "1520");
INSERT INTO `wp_rg_form_view` VALUES("3152", "3", "2014-10-09 21:00:00", "66.249.67.76", "5914");
INSERT INTO `wp_rg_form_view` VALUES("3153", "6", "2014-10-09 21:00:03", "66.249.67.76", "1440");
INSERT INTO `wp_rg_form_view` VALUES("3154", "3", "2014-10-09 22:00:00", "66.249.67.76", "1552");
INSERT INTO `wp_rg_form_view` VALUES("3155", "6", "2014-10-09 22:00:00", "66.249.67.76", "378");
INSERT INTO `wp_rg_form_view` VALUES("3156", "3", "2014-10-09 23:00:36", "66.249.67.92", "4409");
INSERT INTO `wp_rg_form_view` VALUES("3157", "6", "2014-10-09 23:00:38", "66.249.67.92", "1082");
INSERT INTO `wp_rg_form_view` VALUES("3158", "3", "2014-10-10 00:00:00", "66.249.67.76", "5539");
INSERT INTO `wp_rg_form_view` VALUES("3159", "6", "2014-10-10 00:00:00", "66.249.67.76", "1358");
INSERT INTO `wp_rg_form_view` VALUES("3160", "3", "2014-10-10 01:00:05", "66.249.67.84", "5433");
INSERT INTO `wp_rg_form_view` VALUES("3161", "6", "2014-10-10 01:00:07", "66.249.67.84", "1336");
INSERT INTO `wp_rg_form_view` VALUES("3162", "3", "2014-10-10 02:00:00", "66.249.67.84", "5072");
INSERT INTO `wp_rg_form_view` VALUES("3163", "6", "2014-10-10 02:00:02", "66.249.67.84", "1252");
INSERT INTO `wp_rg_form_view` VALUES("3164", "1", "2014-10-10 02:29:36", "192.81.212.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("3165", "2", "2014-10-10 02:29:36", "192.81.212.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("3166", "3", "2014-10-10 03:00:08", "66.249.67.76", "5305");
INSERT INTO `wp_rg_form_view` VALUES("3167", "6", "2014-10-10 03:00:10", "66.249.67.76", "1304");
INSERT INTO `wp_rg_form_view` VALUES("3168", "1", "2014-10-10 03:47:39", "182.96.174.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("3169", "2", "2014-10-10 03:47:46", "182.96.174.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("3170", "3", "2014-10-10 04:00:00", "66.249.67.84", "4865");
INSERT INTO `wp_rg_form_view` VALUES("3171", "6", "2014-10-10 04:00:01", "66.249.67.84", "1198");
INSERT INTO `wp_rg_form_view` VALUES("3172", "3", "2014-10-10 05:00:02", "66.249.67.84", "5368");
INSERT INTO `wp_rg_form_view` VALUES("3173", "6", "2014-10-10 05:00:04", "66.249.67.84", "1302");
INSERT INTO `wp_rg_form_view` VALUES("3174", "6", "2014-10-10 06:00:00", "66.249.67.92", "1364");
INSERT INTO `wp_rg_form_view` VALUES("3175", "3", "2014-10-10 06:00:03", "66.249.67.76", "5550");
INSERT INTO `wp_rg_form_view` VALUES("3176", "3", "2014-10-10 07:00:04", "66.249.67.84", "5514");
INSERT INTO `wp_rg_form_view` VALUES("3177", "6", "2014-10-10 07:00:06", "66.249.67.84", "1340");
INSERT INTO `wp_rg_form_view` VALUES("3178", "3", "2014-10-10 08:00:00", "66.249.67.84", "5497");
INSERT INTO `wp_rg_form_view` VALUES("3179", "6", "2014-10-10 08:00:00", "66.249.67.84", "1342");
INSERT INTO `wp_rg_form_view` VALUES("3180", "3", "2014-10-10 09:00:00", "66.249.67.92", "5143");
INSERT INTO `wp_rg_form_view` VALUES("3181", "6", "2014-10-10 09:00:00", "66.249.67.92", "1252");
INSERT INTO `wp_rg_form_view` VALUES("3182", "3", "2014-10-10 10:01:02", "66.249.67.76", "1024");
INSERT INTO `wp_rg_form_view` VALUES("3183", "6", "2014-10-10 10:01:04", "66.249.67.76", "246");
INSERT INTO `wp_rg_form_view` VALUES("3184", "1", "2014-10-10 10:12:28", "182.96.174.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("3185", "2", "2014-10-10 10:12:39", "182.96.174.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("3186", "3", "2014-10-10 11:00:08", "66.249.67.92", "5000");
INSERT INTO `wp_rg_form_view` VALUES("3187", "6", "2014-10-10 11:00:08", "66.249.67.92", "1214");
INSERT INTO `wp_rg_form_view` VALUES("3188", "3", "2014-10-10 12:00:03", "66.249.67.92", "5226");
INSERT INTO `wp_rg_form_view` VALUES("3189", "6", "2014-10-10 12:00:05", "66.249.67.92", "1282");
INSERT INTO `wp_rg_form_view` VALUES("3190", "6", "2014-10-10 13:00:00", "66.249.67.92", "1172");
INSERT INTO `wp_rg_form_view` VALUES("3191", "3", "2014-10-10 13:00:03", "66.249.67.84", "4809");
INSERT INTO `wp_rg_form_view` VALUES("3192", "3", "2014-10-10 14:00:00", "66.249.67.92", "5271");
INSERT INTO `wp_rg_form_view` VALUES("3193", "6", "2014-10-10 14:00:01", "66.249.67.92", "1294");
INSERT INTO `wp_rg_form_view` VALUES("3194", "3", "2014-10-10 15:00:00", "66.249.67.84", "5178");
INSERT INTO `wp_rg_form_view` VALUES("3195", "6", "2014-10-10 15:00:00", "66.249.67.84", "1278");
INSERT INTO `wp_rg_form_view` VALUES("3196", "3", "2014-10-10 16:00:00", "66.249.67.76", "4881");
INSERT INTO `wp_rg_form_view` VALUES("3197", "6", "2014-10-10 16:00:02", "66.249.67.76", "1208");
INSERT INTO `wp_rg_form_view` VALUES("3198", "3", "2014-10-10 17:00:00", "66.249.67.92", "5159");
INSERT INTO `wp_rg_form_view` VALUES("3199", "6", "2014-10-10 17:00:00", "66.249.67.92", "1266");
INSERT INTO `wp_rg_form_view` VALUES("3200", "6", "2014-10-10 18:00:00", "66.249.67.76", "1282");
INSERT INTO `wp_rg_form_view` VALUES("3201", "3", "2014-10-10 18:00:00", "66.249.67.92", "5209");
INSERT INTO `wp_rg_form_view` VALUES("3202", "3", "2014-10-10 19:00:00", "66.249.67.84", "5264");
INSERT INTO `wp_rg_form_view` VALUES("3203", "6", "2014-10-10 19:00:01", "66.249.67.84", "1298");
INSERT INTO `wp_rg_form_view` VALUES("3204", "3", "2014-10-10 20:00:00", "66.249.67.84", "5245");
INSERT INTO `wp_rg_form_view` VALUES("3205", "6", "2014-10-10 20:00:01", "66.249.67.84", "1294");
INSERT INTO `wp_rg_form_view` VALUES("3206", "3", "2014-10-10 21:00:00", "66.249.67.76", "4876");
INSERT INTO `wp_rg_form_view` VALUES("3207", "6", "2014-10-10 21:00:02", "66.249.67.76", "1198");
INSERT INTO `wp_rg_form_view` VALUES("3208", "3", "2014-10-10 22:00:01", "24.84.237.133", "2238");
INSERT INTO `wp_rg_form_view` VALUES("3209", "6", "2014-10-10 22:00:03", "24.84.237.133", "544");
INSERT INTO `wp_rg_form_view` VALUES("3210", "3", "2014-10-10 23:00:00", "66.249.67.84", "5278");
INSERT INTO `wp_rg_form_view` VALUES("3211", "6", "2014-10-10 23:00:01", "66.249.67.84", "1300");
INSERT INTO `wp_rg_form_view` VALUES("3212", "3", "2014-10-11 00:00:02", "66.249.67.84", "5402");
INSERT INTO `wp_rg_form_view` VALUES("3213", "6", "2014-10-11 00:00:04", "66.249.67.84", "1322");
INSERT INTO `wp_rg_form_view` VALUES("3214", "3", "2014-10-11 01:00:00", "66.249.67.84", "4928");
INSERT INTO `wp_rg_form_view` VALUES("3215", "6", "2014-10-11 01:00:00", "66.249.67.84", "1210");
INSERT INTO `wp_rg_form_view` VALUES("3216", "3", "2014-10-11 02:00:00", "66.249.67.92", "5395");
INSERT INTO `wp_rg_form_view` VALUES("3217", "6", "2014-10-11 02:00:00", "66.249.67.92", "1325");
INSERT INTO `wp_rg_form_view` VALUES("3218", "3", "2014-10-11 03:00:01", "66.249.67.92", "5334");
INSERT INTO `wp_rg_form_view` VALUES("3219", "6", "2014-10-11 03:00:03", "66.249.67.92", "1303");
INSERT INTO `wp_rg_form_view` VALUES("3220", "6", "2014-10-11 04:00:00", "66.249.67.92", "1319");
INSERT INTO `wp_rg_form_view` VALUES("3221", "3", "2014-10-11 04:00:02", "66.249.67.84", "5391");
INSERT INTO `wp_rg_form_view` VALUES("3222", "3", "2014-10-11 05:00:00", "66.249.67.76", "5327");
INSERT INTO `wp_rg_form_view` VALUES("3223", "6", "2014-10-11 05:00:01", "66.249.67.76", "1312");
INSERT INTO `wp_rg_form_view` VALUES("3224", "2", "2014-10-11 05:58:07", "96.50.109.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("3225", "3", "2014-10-11 06:00:00", "66.249.67.84", "5438");
INSERT INTO `wp_rg_form_view` VALUES("3226", "6", "2014-10-11 06:00:00", "66.249.67.84", "1331");
INSERT INTO `wp_rg_form_view` VALUES("3227", "6", "2014-10-11 07:00:00", "66.249.67.92", "1327");
INSERT INTO `wp_rg_form_view` VALUES("3228", "3", "2014-10-11 07:00:02", "66.249.67.92", "5392");
INSERT INTO `wp_rg_form_view` VALUES("3229", "6", "2014-10-11 08:00:00", "66.249.67.92", "1332");
INSERT INTO `wp_rg_form_view` VALUES("3230", "3", "2014-10-11 08:00:08", "66.249.67.92", "5392");
INSERT INTO `wp_rg_form_view` VALUES("3231", "3", "2014-10-11 09:00:00", "66.249.67.92", "2604");
INSERT INTO `wp_rg_form_view` VALUES("3232", "6", "2014-10-11 09:00:02", "66.249.67.92", "640");
INSERT INTO `wp_rg_form_view` VALUES("3233", "3", "2014-10-11 10:00:47", "66.249.67.92", "1076");
INSERT INTO `wp_rg_form_view` VALUES("3234", "6", "2014-10-11 10:00:49", "66.249.67.92", "268");
INSERT INTO `wp_rg_form_view` VALUES("3235", "3", "2014-10-11 11:00:02", "66.249.67.76", "5017");
INSERT INTO `wp_rg_form_view` VALUES("3236", "6", "2014-10-11 11:00:02", "66.249.67.76", "1226");
INSERT INTO `wp_rg_form_view` VALUES("3237", "3", "2014-10-11 12:00:00", "66.249.67.84", "5326");
INSERT INTO `wp_rg_form_view` VALUES("3238", "6", "2014-10-11 12:00:01", "66.249.67.84", "1308");
INSERT INTO `wp_rg_form_view` VALUES("3239", "3", "2014-10-11 13:00:01", "66.249.67.84", "5654");
INSERT INTO `wp_rg_form_view` VALUES("3240", "6", "2014-10-11 13:00:04", "66.249.67.84", "1384");
INSERT INTO `wp_rg_form_view` VALUES("3241", "3", "2014-10-11 14:00:02", "66.249.67.84", "5444");
INSERT INTO `wp_rg_form_view` VALUES("3242", "6", "2014-10-11 14:00:05", "66.249.67.84", "1344");
INSERT INTO `wp_rg_form_view` VALUES("3243", "3", "2014-10-11 15:00:06", "66.249.67.76", "5585");
INSERT INTO `wp_rg_form_view` VALUES("3244", "6", "2014-10-11 15:00:08", "66.249.67.76", "1371");
INSERT INTO `wp_rg_form_view` VALUES("3245", "1", "2014-10-11 15:15:05", "204.45.103.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("3246", "2", "2014-10-11 15:15:19", "204.45.103.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("3247", "3", "2014-10-11 16:00:00", "66.249.67.92", "5245");
INSERT INTO `wp_rg_form_view` VALUES("3248", "6", "2014-10-11 16:00:02", "66.249.67.92", "1284");
INSERT INTO `wp_rg_form_view` VALUES("3249", "1", "2014-10-11 16:15:52", "192.99.141.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("3250", "3", "2014-10-11 17:00:02", "66.249.67.76", "5349");
INSERT INTO `wp_rg_form_view` VALUES("3251", "6", "2014-10-11 17:00:04", "66.249.67.76", "1316");
INSERT INTO `wp_rg_form_view` VALUES("3252", "6", "2014-10-11 18:00:00", "66.249.67.92", "1325");
INSERT INTO `wp_rg_form_view` VALUES("3253", "3", "2014-10-11 18:00:07", "66.249.67.84", "5376");
INSERT INTO `wp_rg_form_view` VALUES("3254", "3", "2014-10-11 19:00:00", "66.249.67.84", "5656");
INSERT INTO `wp_rg_form_view` VALUES("3255", "6", "2014-10-11 19:00:00", "66.249.67.84", "1382");
INSERT INTO `wp_rg_form_view` VALUES("3256", "3", "2014-10-11 20:00:00", "66.249.67.76", "5492");
INSERT INTO `wp_rg_form_view` VALUES("3257", "6", "2014-10-11 20:00:01", "66.249.67.76", "1348");
INSERT INTO `wp_rg_form_view` VALUES("3258", "6", "2014-10-11 21:00:00", "66.249.67.76", "676");
INSERT INTO `wp_rg_form_view` VALUES("3259", "3", "2014-10-11 21:00:03", "66.249.67.84", "2744");
INSERT INTO `wp_rg_form_view` VALUES("3260", "3", "2014-10-11 22:01:20", "66.249.67.76", "2982");
INSERT INTO `wp_rg_form_view` VALUES("3261", "6", "2014-10-11 22:01:21", "66.249.67.76", "732");
INSERT INTO `wp_rg_form_view` VALUES("3262", "6", "2014-10-11 23:00:00", "66.249.67.76", "1288");
INSERT INTO `wp_rg_form_view` VALUES("3263", "3", "2014-10-11 23:00:04", "66.249.67.84", "5214");
INSERT INTO `wp_rg_form_view` VALUES("3264", "3", "2014-10-12 00:00:23", "66.249.67.76", "5540");
INSERT INTO `wp_rg_form_view` VALUES("3265", "6", "2014-10-12 00:00:26", "66.249.67.76", "1360");
INSERT INTO `wp_rg_form_view` VALUES("3266", "3", "2014-10-12 01:00:00", "66.249.67.84", "5552");
INSERT INTO `wp_rg_form_view` VALUES("3267", "6", "2014-10-12 01:00:02", "66.249.67.84", "1364");
INSERT INTO `wp_rg_form_view` VALUES("3268", "3", "2014-10-12 02:00:00", "66.249.67.92", "5500");
INSERT INTO `wp_rg_form_view` VALUES("3269", "6", "2014-10-12 02:00:01", "66.249.67.92", "1356");
INSERT INTO `wp_rg_form_view` VALUES("3270", "3", "2014-10-12 03:00:00", "66.249.67.92", "5405");
INSERT INTO `wp_rg_form_view` VALUES("3271", "6", "2014-10-12 03:00:00", "66.249.67.92", "1332");
INSERT INTO `wp_rg_form_view` VALUES("3272", "6", "2014-10-12 04:00:00", "66.249.67.92", "1270");
INSERT INTO `wp_rg_form_view` VALUES("3273", "3", "2014-10-12 04:00:03", "66.249.67.76", "5154");
INSERT INTO `wp_rg_form_view` VALUES("3274", "3", "2014-10-12 05:00:02", "66.249.67.84", "5026");
INSERT INTO `wp_rg_form_view` VALUES("3275", "6", "2014-10-12 05:00:04", "66.249.67.84", "1244");
INSERT INTO `wp_rg_form_view` VALUES("3276", "3", "2014-10-12 06:00:02", "66.249.67.76", "5322");
INSERT INTO `wp_rg_form_view` VALUES("3277", "6", "2014-10-12 06:00:04", "66.249.67.76", "1304");
INSERT INTO `wp_rg_form_view` VALUES("3278", "3", "2014-10-12 07:00:03", "66.249.67.76", "5493");
INSERT INTO `wp_rg_form_view` VALUES("3279", "6", "2014-10-12 07:00:05", "66.249.67.76", "1346");
INSERT INTO `wp_rg_form_view` VALUES("3280", "3", "2014-10-12 08:00:00", "66.249.67.76", "5300");
INSERT INTO `wp_rg_form_view` VALUES("3281", "6", "2014-10-12 08:00:00", "66.249.67.76", "1300");
INSERT INTO `wp_rg_form_view` VALUES("3282", "3", "2014-10-12 09:00:02", "66.249.67.76", "1338");
INSERT INTO `wp_rg_form_view` VALUES("3283", "6", "2014-10-12 09:00:04", "66.249.67.76", "328");
INSERT INTO `wp_rg_form_view` VALUES("3284", "3", "2014-10-12 10:00:09", "66.249.67.76", "4522");
INSERT INTO `wp_rg_form_view` VALUES("3285", "6", "2014-10-12 10:00:10", "66.249.67.76", "1104");
INSERT INTO `wp_rg_form_view` VALUES("3286", "3", "2014-10-12 11:00:00", "66.249.67.84", "5577");
INSERT INTO `wp_rg_form_view` VALUES("3287", "6", "2014-10-12 11:00:02", "66.249.67.84", "1380");
INSERT INTO `wp_rg_form_view` VALUES("3288", "1", "2014-10-12 11:50:17", "207.63.249.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("3289", "2", "2014-10-12 11:50:27", "207.63.249.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("3290", "3", "2014-10-12 12:00:00", "66.249.67.92", "5446");
INSERT INTO `wp_rg_form_view` VALUES("3291", "6", "2014-10-12 12:00:03", "66.249.67.92", "1348");
INSERT INTO `wp_rg_form_view` VALUES("3292", "1", "2014-10-12 12:05:14", "192.99.141.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("3293", "3", "2014-10-12 13:00:01", "66.249.67.92", "5486");
INSERT INTO `wp_rg_form_view` VALUES("3294", "6", "2014-10-12 13:00:04", "66.249.67.92", "1346");
INSERT INTO `wp_rg_form_view` VALUES("3295", "6", "2014-10-12 14:00:00", "66.249.67.76", "1348");
INSERT INTO `wp_rg_form_view` VALUES("3296", "3", "2014-10-12 14:00:03", "66.249.67.92", "5473");
INSERT INTO `wp_rg_form_view` VALUES("3297", "3", "2014-10-12 15:00:00", "66.249.67.76", "4305");
INSERT INTO `wp_rg_form_view` VALUES("3298", "6", "2014-10-12 15:00:00", "66.249.67.76", "1058");
INSERT INTO `wp_rg_form_view` VALUES("3299", "3", "2014-10-12 16:00:07", "66.249.67.84", "5584");
INSERT INTO `wp_rg_form_view` VALUES("3300", "6", "2014-10-12 16:00:09", "66.249.67.84", "1374");
INSERT INTO `wp_rg_form_view` VALUES("3301", "3", "2014-10-12 17:00:00", "66.249.67.76", "5436");
INSERT INTO `wp_rg_form_view` VALUES("3302", "6", "2014-10-12 17:00:04", "66.249.67.76", "1346");
INSERT INTO `wp_rg_form_view` VALUES("3303", "3", "2014-10-12 18:00:14", "66.249.67.76", "4782");
INSERT INTO `wp_rg_form_view` VALUES("3304", "6", "2014-10-12 18:00:16", "66.249.67.76", "1172");
INSERT INTO `wp_rg_form_view` VALUES("3305", "3", "2014-10-12 19:00:01", "66.249.67.76", "5042");
INSERT INTO `wp_rg_form_view` VALUES("3306", "6", "2014-10-12 19:00:03", "66.249.67.76", "1240");
INSERT INTO `wp_rg_form_view` VALUES("3307", "3", "2014-10-12 20:00:01", "66.249.67.84", "5127");
INSERT INTO `wp_rg_form_view` VALUES("3308", "6", "2014-10-12 20:00:03", "66.249.67.84", "1260");
INSERT INTO `wp_rg_form_view` VALUES("3309", "3", "2014-10-12 21:00:00", "66.249.67.84", "1654");
INSERT INTO `wp_rg_form_view` VALUES("3310", "6", "2014-10-12 21:00:00", "66.249.67.84", "406");
INSERT INTO `wp_rg_form_view` VALUES("3311", "3", "2014-10-12 22:00:31", "66.249.67.76", "2648");
INSERT INTO `wp_rg_form_view` VALUES("3312", "6", "2014-10-12 22:00:32", "66.249.67.76", "650");
INSERT INTO `wp_rg_form_view` VALUES("3313", "3", "2014-10-12 23:00:01", "66.249.67.92", "5542");
INSERT INTO `wp_rg_form_view` VALUES("3314", "6", "2014-10-12 23:00:02", "66.249.67.92", "1366");
INSERT INTO `wp_rg_form_view` VALUES("3315", "3", "2014-10-13 00:00:00", "66.249.67.76", "5684");
INSERT INTO `wp_rg_form_view` VALUES("3316", "6", "2014-10-13 00:00:02", "66.249.67.76", "1408");
INSERT INTO `wp_rg_form_view` VALUES("3317", "2", "2014-10-13 00:37:17", "23.254.130.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("3318", "1", "2014-10-13 00:37:23", "23.254.130.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("3319", "3", "2014-10-13 01:00:06", "66.249.67.76", "5740");
INSERT INTO `wp_rg_form_view` VALUES("3320", "6", "2014-10-13 01:00:09", "66.249.67.76", "1408");
INSERT INTO `wp_rg_form_view` VALUES("3321", "3", "2014-10-13 02:00:02", "66.249.67.84", "5692");
INSERT INTO `wp_rg_form_view` VALUES("3322", "6", "2014-10-13 02:00:04", "66.249.67.84", "1402");
INSERT INTO `wp_rg_form_view` VALUES("3323", "3", "2014-10-13 03:00:00", "66.249.67.84", "5601");
INSERT INTO `wp_rg_form_view` VALUES("3324", "6", "2014-10-13 03:00:02", "66.249.67.84", "1376");
INSERT INTO `wp_rg_form_view` VALUES("3325", "3", "2014-10-13 04:00:00", "66.249.67.76", "5664");
INSERT INTO `wp_rg_form_view` VALUES("3326", "6", "2014-10-13 04:00:00", "66.249.67.76", "1396");
INSERT INTO `wp_rg_form_view` VALUES("3327", "3", "2014-10-13 05:00:00", "66.249.67.76", "5677");
INSERT INTO `wp_rg_form_view` VALUES("3328", "6", "2014-10-13 05:00:02", "66.249.67.76", "1392");
INSERT INTO `wp_rg_form_view` VALUES("3329", "3", "2014-10-13 06:00:00", "66.249.67.76", "5623");
INSERT INTO `wp_rg_form_view` VALUES("3330", "6", "2014-10-13 06:00:01", "66.249.67.76", "1367");
INSERT INTO `wp_rg_form_view` VALUES("3331", "6", "2014-10-13 07:00:00", "66.249.67.76", "1371");
INSERT INTO `wp_rg_form_view` VALUES("3332", "3", "2014-10-13 07:00:00", "66.249.67.76", "5632");
INSERT INTO `wp_rg_form_view` VALUES("3333", "3", "2014-10-13 08:00:00", "66.249.67.84", "5468");
INSERT INTO `wp_rg_form_view` VALUES("3334", "6", "2014-10-13 08:00:02", "66.249.67.84", "1348");
INSERT INTO `wp_rg_form_view` VALUES("3335", "3", "2014-10-13 09:01:16", "66.249.67.76", "793");
INSERT INTO `wp_rg_form_view` VALUES("3336", "6", "2014-10-13 09:01:18", "66.249.67.76", "196");
INSERT INTO `wp_rg_form_view` VALUES("3337", "3", "2014-10-13 10:00:00", "66.249.67.84", "4879");
INSERT INTO `wp_rg_form_view` VALUES("3338", "6", "2014-10-13 10:00:00", "66.249.67.84", "1202");
INSERT INTO `wp_rg_form_view` VALUES("3339", "3", "2014-10-13 11:00:00", "66.249.67.76", "5514");
INSERT INTO `wp_rg_form_view` VALUES("3340", "6", "2014-10-13 11:00:00", "66.249.67.76", "1354");
INSERT INTO `wp_rg_form_view` VALUES("3341", "3", "2014-10-13 12:00:02", "66.249.67.84", "5676");
INSERT INTO `wp_rg_form_view` VALUES("3342", "6", "2014-10-13 12:00:04", "66.249.67.84", "1396");
INSERT INTO `wp_rg_form_view` VALUES("3343", "3", "2014-10-13 13:00:01", "66.249.67.92", "5700");
INSERT INTO `wp_rg_form_view` VALUES("3344", "6", "2014-10-13 13:00:03", "66.249.67.92", "1402");
INSERT INTO `wp_rg_form_view` VALUES("3345", "3", "2014-10-13 14:00:01", "66.249.67.84", "5834");
INSERT INTO `wp_rg_form_view` VALUES("3346", "6", "2014-10-13 14:00:03", "66.249.67.84", "1432");
INSERT INTO `wp_rg_form_view` VALUES("3347", "3", "2014-10-13 15:00:03", "66.249.67.84", "5232");
INSERT INTO `wp_rg_form_view` VALUES("3348", "6", "2014-10-13 15:00:05", "66.249.67.84", "1284");
INSERT INTO `wp_rg_form_view` VALUES("3349", "6", "2014-10-13 16:00:00", "66.249.67.84", "1326");
INSERT INTO `wp_rg_form_view` VALUES("3350", "3", "2014-10-13 16:00:03", "66.249.67.84", "5374");
INSERT INTO `wp_rg_form_view` VALUES("3351", "3", "2014-10-13 17:00:02", "66.249.67.84", "5381");
INSERT INTO `wp_rg_form_view` VALUES("3352", "6", "2014-10-13 17:00:04", "66.249.67.84", "1324");
INSERT INTO `wp_rg_form_view` VALUES("3353", "3", "2014-10-13 18:00:00", "66.249.67.84", "5405");
INSERT INTO `wp_rg_form_view` VALUES("3354", "6", "2014-10-13 18:00:00", "66.249.67.84", "1330");
INSERT INTO `wp_rg_form_view` VALUES("3355", "3", "2014-10-13 19:00:00", "66.249.67.84", "5285");
INSERT INTO `wp_rg_form_view` VALUES("3356", "6", "2014-10-13 19:00:01", "66.249.67.84", "1300");
INSERT INTO `wp_rg_form_view` VALUES("3357", "3", "2014-10-13 20:00:00", "66.249.67.92", "3519");
INSERT INTO `wp_rg_form_view` VALUES("3358", "6", "2014-10-13 20:00:01", "66.249.67.92", "872");
INSERT INTO `wp_rg_form_view` VALUES("3359", "3", "2014-10-13 21:01:39", "66.249.67.92", "1176");
INSERT INTO `wp_rg_form_view` VALUES("3360", "6", "2014-10-13 21:01:41", "66.249.67.92", "290");
INSERT INTO `wp_rg_form_view` VALUES("3361", "3", "2014-10-13 22:00:03", "66.249.67.84", "4997");
INSERT INTO `wp_rg_form_view` VALUES("3362", "6", "2014-10-13 22:00:03", "66.249.67.84", "1224");
INSERT INTO `wp_rg_form_view` VALUES("3363", "3", "2014-10-13 23:00:00", "66.249.67.76", "5195");
INSERT INTO `wp_rg_form_view` VALUES("3364", "6", "2014-10-13 23:00:00", "66.249.67.76", "1282");
INSERT INTO `wp_rg_form_view` VALUES("3365", "3", "2014-10-14 00:00:02", "66.249.67.84", "4620");
INSERT INTO `wp_rg_form_view` VALUES("3366", "6", "2014-10-14 00:00:04", "66.249.67.84", "1140");
INSERT INTO `wp_rg_form_view` VALUES("3367", "3", "2014-10-14 01:00:45", "66.249.67.92", "4135");
INSERT INTO `wp_rg_form_view` VALUES("3368", "6", "2014-10-14 01:00:47", "66.249.67.92", "1015");
INSERT INTO `wp_rg_form_view` VALUES("3369", "1", "2014-10-14 01:14:29", "65.49.14.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("3370", "3", "2014-10-14 02:00:00", "66.249.67.84", "6134");
INSERT INTO `wp_rg_form_view` VALUES("3371", "6", "2014-10-14 02:00:00", "66.249.67.84", "1523");
INSERT INTO `wp_rg_form_view` VALUES("3372", "2", "2014-10-14 02:07:08", "65.49.14.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("3373", "1", "2014-10-14 02:41:55", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3374", "3", "2014-10-14 03:00:00", "66.249.67.76", "6437");
INSERT INTO `wp_rg_form_view` VALUES("3375", "6", "2014-10-14 03:00:03", "66.249.67.76", "1567");
INSERT INTO `wp_rg_form_view` VALUES("3376", "3", "2014-10-14 04:00:00", "66.249.67.84", "5828");
INSERT INTO `wp_rg_form_view` VALUES("3377", "6", "2014-10-14 04:00:02", "66.249.67.84", "1438");
INSERT INTO `wp_rg_form_view` VALUES("3378", "3", "2014-10-14 05:00:41", "116.102.130.138", "5746");
INSERT INTO `wp_rg_form_view` VALUES("3379", "6", "2014-10-14 05:00:44", "116.102.130.138", "1408");
INSERT INTO `wp_rg_form_view` VALUES("3380", "3", "2014-10-14 06:00:02", "66.249.67.76", "6794");
INSERT INTO `wp_rg_form_view` VALUES("3381", "6", "2014-10-14 06:00:04", "66.249.67.76", "1657");
INSERT INTO `wp_rg_form_view` VALUES("3382", "2", "2014-10-14 06:33:13", "198.143.158.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("3383", "1", "2014-10-14 06:36:20", "198.143.158.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("3384", "3", "2014-10-14 07:00:04", "66.249.67.84", "5428");
INSERT INTO `wp_rg_form_view` VALUES("3385", "6", "2014-10-14 07:00:07", "66.249.67.84", "1339");
INSERT INTO `wp_rg_form_view` VALUES("3386", "3", "2014-10-14 08:00:00", "66.249.67.84", "1812");
INSERT INTO `wp_rg_form_view` VALUES("3387", "6", "2014-10-14 08:00:03", "66.249.67.84", "442");
INSERT INTO `wp_rg_form_view` VALUES("3388", "3", "2014-10-14 09:01:16", "66.249.67.76", "2164");
INSERT INTO `wp_rg_form_view` VALUES("3389", "6", "2014-10-14 09:01:17", "66.249.67.76", "534");
INSERT INTO `wp_rg_form_view` VALUES("3390", "3", "2014-10-14 10:00:06", "66.249.67.92", "5381");
INSERT INTO `wp_rg_form_view` VALUES("3391", "6", "2014-10-14 10:00:07", "66.249.67.92", "1316");
INSERT INTO `wp_rg_form_view` VALUES("3392", "3", "2014-10-14 11:00:00", "66.249.67.76", "5465");
INSERT INTO `wp_rg_form_view` VALUES("3393", "6", "2014-10-14 11:00:01", "66.249.67.76", "1342");
INSERT INTO `wp_rg_form_view` VALUES("3394", "3", "2014-10-14 12:00:00", "66.249.67.76", "5060");
INSERT INTO `wp_rg_form_view` VALUES("3395", "6", "2014-10-14 12:00:00", "66.249.67.76", "1246");
INSERT INTO `wp_rg_form_view` VALUES("3396", "3", "2014-10-14 13:00:00", "66.249.67.84", "5526");
INSERT INTO `wp_rg_form_view` VALUES("3397", "6", "2014-10-14 13:00:00", "66.249.67.84", "1362");
INSERT INTO `wp_rg_form_view` VALUES("3398", "3", "2014-10-14 14:00:01", "66.249.67.92", "6209");
INSERT INTO `wp_rg_form_view` VALUES("3399", "6", "2014-10-14 14:00:03", "66.249.67.92", "1520");
INSERT INTO `wp_rg_form_view` VALUES("3400", "3", "2014-10-14 15:00:01", "66.249.67.92", "5400");
INSERT INTO `wp_rg_form_view` VALUES("3401", "6", "2014-10-14 15:00:04", "66.249.67.92", "1326");
INSERT INTO `wp_rg_form_view` VALUES("3402", "3", "2014-10-14 16:00:01", "66.249.67.76", "5548");
INSERT INTO `wp_rg_form_view` VALUES("3403", "6", "2014-10-14 16:00:04", "66.249.67.76", "1364");
INSERT INTO `wp_rg_form_view` VALUES("3404", "3", "2014-10-14 17:00:00", "66.249.67.76", "5945");
INSERT INTO `wp_rg_form_view` VALUES("3405", "6", "2014-10-14 17:00:01", "66.249.67.76", "1460");
INSERT INTO `wp_rg_form_view` VALUES("3406", "1", "2014-10-14 17:19:24", "174.127.133.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("3407", "2", "2014-10-14 17:21:50", "174.127.133.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("3408", "3", "2014-10-14 18:00:00", "66.249.67.76", "4904");
INSERT INTO `wp_rg_form_view` VALUES("3409", "6", "2014-10-14 18:00:02", "66.249.67.76", "1202");
INSERT INTO `wp_rg_form_view` VALUES("3410", "6", "2014-10-14 19:00:00", "66.249.67.92", "1254");
INSERT INTO `wp_rg_form_view` VALUES("3411", "3", "2014-10-14 19:00:05", "66.249.67.76", "5140");
INSERT INTO `wp_rg_form_view` VALUES("3412", "3", "2014-10-14 20:00:00", "66.249.79.76", "1424");
INSERT INTO `wp_rg_form_view` VALUES("3413", "6", "2014-10-14 20:00:03", "66.249.79.76", "352");
INSERT INTO `wp_rg_form_view` VALUES("3414", "3", "2014-10-14 21:14:24", "66.249.79.76", "1484");
INSERT INTO `wp_rg_form_view` VALUES("3415", "6", "2014-10-14 21:14:25", "66.249.79.76", "366");
INSERT INTO `wp_rg_form_view` VALUES("3416", "3", "2014-10-14 22:00:05", "66.249.79.92", "5215");
INSERT INTO `wp_rg_form_view` VALUES("3417", "6", "2014-10-14 22:00:06", "66.249.79.92", "1288");
INSERT INTO `wp_rg_form_view` VALUES("3418", "3", "2014-10-14 23:00:00", "66.249.79.76", "5533");
INSERT INTO `wp_rg_form_view` VALUES("3419", "6", "2014-10-14 23:00:00", "66.249.79.76", "1354");
INSERT INTO `wp_rg_form_view` VALUES("3420", "3", "2014-10-15 00:00:02", "66.249.79.84", "5452");
INSERT INTO `wp_rg_form_view` VALUES("3421", "6", "2014-10-15 00:00:04", "66.249.79.84", "1328");
INSERT INTO `wp_rg_form_view` VALUES("3422", "6", "2014-10-15 01:00:00", "66.249.79.84", "1372");
INSERT INTO `wp_rg_form_view` VALUES("3423", "3", "2014-10-15 01:00:05", "66.249.79.92", "5569");
INSERT INTO `wp_rg_form_view` VALUES("3424", "2", "2014-10-15 01:15:44", "65.49.14.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("3425", "3", "2014-10-15 02:00:00", "66.249.79.92", "5415");
INSERT INTO `wp_rg_form_view` VALUES("3426", "6", "2014-10-15 02:00:02", "66.249.79.92", "1328");
INSERT INTO `wp_rg_form_view` VALUES("3427", "3", "2014-10-15 03:00:01", "66.249.79.84", "5496");
INSERT INTO `wp_rg_form_view` VALUES("3428", "6", "2014-10-15 03:00:03", "66.249.79.84", "1345");
INSERT INTO `wp_rg_form_view` VALUES("3429", "6", "2014-10-15 04:00:00", "66.249.79.92", "1311");
INSERT INTO `wp_rg_form_view` VALUES("3430", "3", "2014-10-15 04:00:02", "66.249.79.92", "5352");
INSERT INTO `wp_rg_form_view` VALUES("3431", "3", "2014-10-15 05:00:00", "66.249.79.92", "4308");
INSERT INTO `wp_rg_form_view` VALUES("3432", "6", "2014-10-15 05:00:04", "66.249.79.92", "1060");
INSERT INTO `wp_rg_form_view` VALUES("3433", "2", "2014-10-15 05:28:03", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("3434", "1", "2014-10-15 05:28:11", "192.99.149.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("3435", "3", "2014-10-15 06:00:59", "66.249.79.84", "5616");
INSERT INTO `wp_rg_form_view` VALUES("3436", "6", "2014-10-15 06:01:01", "66.249.79.84", "1378");
INSERT INTO `wp_rg_form_view` VALUES("3437", "3", "2014-10-15 07:00:00", "66.249.79.92", "5588");
INSERT INTO `wp_rg_form_view` VALUES("3438", "6", "2014-10-15 07:00:03", "66.249.79.92", "1372");
INSERT INTO `wp_rg_form_view` VALUES("3439", "3", "2014-10-15 08:00:00", "66.249.79.84", "4259");
INSERT INTO `wp_rg_form_view` VALUES("3440", "6", "2014-10-15 08:00:02", "66.249.79.84", "1025");
INSERT INTO `wp_rg_form_view` VALUES("3441", "2", "2014-10-15 08:18:04", "5.9.82.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("3442", "1", "2014-10-15 08:18:08", "5.9.82.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("3443", "3", "2014-10-15 09:05:14", "66.249.79.76", "1214");
INSERT INTO `wp_rg_form_view` VALUES("3444", "6", "2014-10-15 09:05:16", "66.249.79.76", "300");
INSERT INTO `wp_rg_form_view` VALUES("3445", "3", "2014-10-15 10:00:00", "66.249.79.92", "5381");
INSERT INTO `wp_rg_form_view` VALUES("3446", "6", "2014-10-15 10:00:01", "66.249.79.92", "1316");
INSERT INTO `wp_rg_form_view` VALUES("3447", "3", "2014-10-15 11:00:01", "66.249.79.84", "5436");
INSERT INTO `wp_rg_form_view` VALUES("3448", "6", "2014-10-15 11:00:03", "66.249.79.84", "1318");
INSERT INTO `wp_rg_form_view` VALUES("3449", "3", "2014-10-15 12:00:01", "66.249.79.92", "5566");
INSERT INTO `wp_rg_form_view` VALUES("3450", "6", "2014-10-15 12:00:03", "66.249.79.92", "1366");
INSERT INTO `wp_rg_form_view` VALUES("3451", "1", "2014-10-15 12:04:54", "175.44.34.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("3452", "3", "2014-10-15 13:00:00", "66.249.79.84", "5556");
INSERT INTO `wp_rg_form_view` VALUES("3453", "6", "2014-10-15 13:00:02", "66.249.79.84", "1357");
INSERT INTO `wp_rg_form_view` VALUES("3454", "6", "2014-10-15 14:00:00", "66.249.79.92", "1351");
INSERT INTO `wp_rg_form_view` VALUES("3455", "3", "2014-10-15 14:00:04", "66.249.79.84", "5489");
INSERT INTO `wp_rg_form_view` VALUES("3456", "3", "2014-10-15 15:00:00", "66.249.79.84", "5593");
INSERT INTO `wp_rg_form_view` VALUES("3457", "6", "2014-10-15 15:00:02", "66.249.79.84", "1376");
INSERT INTO `wp_rg_form_view` VALUES("3458", "3", "2014-10-15 16:00:01", "66.249.79.84", "5557");
INSERT INTO `wp_rg_form_view` VALUES("3459", "6", "2014-10-15 16:00:03", "66.249.79.84", "1362");
INSERT INTO `wp_rg_form_view` VALUES("3460", "1", "2014-10-15 16:47:22", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("3461", "3", "2014-10-15 17:00:00", "66.249.79.76", "5544");
INSERT INTO `wp_rg_form_view` VALUES("3462", "6", "2014-10-15 17:00:02", "66.249.79.76", "1348");
INSERT INTO `wp_rg_form_view` VALUES("3463", "3", "2014-10-15 18:00:00", "66.249.79.76", "5903");
INSERT INTO `wp_rg_form_view` VALUES("3464", "6", "2014-10-15 18:00:01", "66.249.79.76", "1443");
INSERT INTO `wp_rg_form_view` VALUES("3465", "1", "2014-10-15 18:15:55", "108.59.8.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("3466", "2", "2014-10-15 18:16:12", "108.59.8.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("3467", "3", "2014-10-15 19:00:01", "66.249.79.92", "5459");
INSERT INTO `wp_rg_form_view` VALUES("3468", "6", "2014-10-15 19:00:04", "66.249.79.92", "1344");
INSERT INTO `wp_rg_form_view` VALUES("3469", "1", "2014-10-15 19:59:46", "192.81.212.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("3470", "2", "2014-10-15 19:59:47", "192.81.212.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("3471", "3", "2014-10-15 20:00:02", "66.249.79.92", "860");
INSERT INTO `wp_rg_form_view` VALUES("3472", "6", "2014-10-15 20:00:04", "66.249.79.92", "212");
INSERT INTO `wp_rg_form_view` VALUES("3473", "3", "2014-10-15 21:00:51", "66.249.79.76", "2394");
INSERT INTO `wp_rg_form_view` VALUES("3474", "6", "2014-10-15 21:00:52", "66.249.79.76", "584");
INSERT INTO `wp_rg_form_view` VALUES("3475", "3", "2014-10-15 22:00:01", "66.249.79.76", "5406");
INSERT INTO `wp_rg_form_view` VALUES("3476", "6", "2014-10-15 22:00:02", "66.249.79.76", "1314");
INSERT INTO `wp_rg_form_view` VALUES("3477", "3", "2014-10-15 23:00:36", "66.249.79.92", "5562");
INSERT INTO `wp_rg_form_view` VALUES("3478", "6", "2014-10-15 23:00:38", "66.249.79.92", "1368");
INSERT INTO `wp_rg_form_view` VALUES("3479", "3", "2014-10-16 00:00:00", "66.249.79.84", "5456");
INSERT INTO `wp_rg_form_view` VALUES("3480", "6", "2014-10-16 00:00:02", "66.249.79.84", "1344");
INSERT INTO `wp_rg_form_view` VALUES("3481", "3", "2014-10-16 01:00:00", "66.249.79.84", "5602");
INSERT INTO `wp_rg_form_view` VALUES("3482", "6", "2014-10-16 01:00:01", "66.249.79.84", "1366");
INSERT INTO `wp_rg_form_view` VALUES("3483", "1", "2014-10-16 01:31:53", "117.174.236.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("3484", "3", "2014-10-16 02:00:01", "66.249.79.92", "5592");
INSERT INTO `wp_rg_form_view` VALUES("3485", "6", "2014-10-16 02:00:03", "66.249.79.92", "1368");
INSERT INTO `wp_rg_form_view` VALUES("3486", "3", "2014-10-16 03:00:04", "66.249.79.92", "5793");
INSERT INTO `wp_rg_form_view` VALUES("3487", "6", "2014-10-16 03:00:06", "66.249.79.92", "1408");
INSERT INTO `wp_rg_form_view` VALUES("3488", "3", "2014-10-16 04:00:00", "66.249.79.84", "7259");
INSERT INTO `wp_rg_form_view` VALUES("3489", "6", "2014-10-16 04:00:01", "66.249.79.84", "1438");
INSERT INTO `wp_rg_form_view` VALUES("3490", "3", "2014-10-16 05:00:10", "68.180.228.184", "6926");
INSERT INTO `wp_rg_form_view` VALUES("3491", "6", "2014-10-16 05:00:14", "66.249.79.92", "1370");
INSERT INTO `wp_rg_form_view` VALUES("3492", "3", "2014-10-16 06:00:00", "66.249.79.76", "6852");
INSERT INTO `wp_rg_form_view` VALUES("3493", "6", "2014-10-16 06:00:04", "66.249.79.84", "1350");
INSERT INTO `wp_rg_form_view` VALUES("3494", "3", "2014-10-16 07:00:12", "66.249.79.76", "6270");
INSERT INTO `wp_rg_form_view` VALUES("3495", "6", "2014-10-16 07:00:15", "66.249.79.76", "1234");
INSERT INTO `wp_rg_form_view` VALUES("3496", "3", "2014-10-16 08:01:55", "66.249.79.76", "124");
INSERT INTO `wp_rg_form_view` VALUES("3497", "6", "2014-10-16 08:01:58", "66.249.79.76", "24");
INSERT INTO `wp_rg_form_view` VALUES("3498", "3", "2014-10-16 09:00:43", "66.249.79.76", "2274");
INSERT INTO `wp_rg_form_view` VALUES("3499", "6", "2014-10-16 09:00:43", "66.249.79.76", "448");
INSERT INTO `wp_rg_form_view` VALUES("3500", "3", "2014-10-16 10:00:07", "66.249.79.84", "6550");
INSERT INTO `wp_rg_form_view` VALUES("3501", "6", "2014-10-16 10:00:08", "66.249.79.84", "1292");
INSERT INTO `wp_rg_form_view` VALUES("3502", "3", "2014-10-16 11:00:00", "66.249.79.76", "7010");
INSERT INTO `wp_rg_form_view` VALUES("3503", "6", "2014-10-16 11:00:04", "66.249.79.76", "1382");
INSERT INTO `wp_rg_form_view` VALUES("3504", "3", "2014-10-16 12:00:01", "66.249.79.84", "7339");
INSERT INTO `wp_rg_form_view` VALUES("3505", "6", "2014-10-16 12:00:04", "66.249.79.84", "1442");
INSERT INTO `wp_rg_form_view` VALUES("3506", "3", "2014-10-16 13:00:00", "66.249.79.92", "6995");
INSERT INTO `wp_rg_form_view` VALUES("3507", "6", "2014-10-16 13:00:04", "66.249.79.92", "1386");
INSERT INTO `wp_rg_form_view` VALUES("3508", "3", "2014-10-16 14:00:05", "66.249.79.84", "6981");
INSERT INTO `wp_rg_form_view` VALUES("3509", "6", "2014-10-16 14:00:08", "66.249.79.84", "1372");
INSERT INTO `wp_rg_form_view` VALUES("3510", "3", "2014-10-16 15:00:00", "66.249.79.76", "6883");
INSERT INTO `wp_rg_form_view` VALUES("3511", "6", "2014-10-16 15:00:02", "66.249.79.76", "1362");
INSERT INTO `wp_rg_form_view` VALUES("3512", "1", "2014-10-16 15:46:24", "106.185.42.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("3513", "6", "2014-10-16 16:00:00", "66.249.79.92", "1440");
INSERT INTO `wp_rg_form_view` VALUES("3514", "3", "2014-10-16 16:00:00", "66.249.79.92", "7277");
INSERT INTO `wp_rg_form_view` VALUES("3515", "3", "2014-10-16 17:00:00", "66.249.79.84", "4439");
INSERT INTO `wp_rg_form_view` VALUES("3516", "6", "2014-10-16 17:00:04", "66.249.79.92", "880");
INSERT INTO `wp_rg_form_view` VALUES("3517", "3", "2014-10-16 18:00:01", "66.249.79.76", "7699");
INSERT INTO `wp_rg_form_view` VALUES("3518", "6", "2014-10-16 18:00:04", "66.249.79.76", "1519");
INSERT INTO `wp_rg_form_view` VALUES("3519", "3", "2014-10-16 19:00:00", "66.249.79.84", "7468");
INSERT INTO `wp_rg_form_view` VALUES("3520", "6", "2014-10-16 19:00:00", "66.249.79.76", "1467");
INSERT INTO `wp_rg_form_view` VALUES("3521", "3", "2014-10-16 20:00:00", "66.249.79.76", "1327");
INSERT INTO `wp_rg_form_view` VALUES("3522", "6", "2014-10-16 20:00:03", "66.249.79.76", "260");
INSERT INTO `wp_rg_form_view` VALUES("3523", "3", "2014-10-16 21:01:42", "66.249.79.84", "5663");
INSERT INTO `wp_rg_form_view` VALUES("3524", "6", "2014-10-16 21:01:43", "66.249.79.84", "1118");
INSERT INTO `wp_rg_form_view` VALUES("3525", "3", "2014-10-16 22:00:00", "66.249.79.92", "7662");
INSERT INTO `wp_rg_form_view` VALUES("3526", "6", "2014-10-16 22:00:01", "66.249.79.92", "1508");
INSERT INTO `wp_rg_form_view` VALUES("3527", "3", "2014-10-16 23:00:02", "66.249.79.76", "7259");
INSERT INTO `wp_rg_form_view` VALUES("3528", "6", "2014-10-16 23:00:05", "66.249.79.76", "1425");
INSERT INTO `wp_rg_form_view` VALUES("3529", "6", "2014-10-17 00:00:00", "66.249.79.84", "1357");
INSERT INTO `wp_rg_form_view` VALUES("3530", "3", "2014-10-17 00:00:00", "66.249.79.76", "6893");
INSERT INTO `wp_rg_form_view` VALUES("3531", "3", "2014-10-17 01:00:00", "66.249.79.76", "7501");
INSERT INTO `wp_rg_form_view` VALUES("3532", "6", "2014-10-17 01:00:02", "66.249.79.76", "1478");
INSERT INTO `wp_rg_form_view` VALUES("3533", "1", "2014-10-17 01:47:54", "146.166.215.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("3534", "6", "2014-10-17 02:00:00", "100.43.85.24", "1490");
INSERT INTO `wp_rg_form_view` VALUES("3535", "3", "2014-10-17 02:00:00", "100.43.85.24", "7536");
INSERT INTO `wp_rg_form_view` VALUES("3536", "3", "2014-10-17 03:00:00", "66.249.79.92", "7769");
INSERT INTO `wp_rg_form_view` VALUES("3537", "6", "2014-10-17 03:00:03", "66.249.79.92", "1524");
INSERT INTO `wp_rg_form_view` VALUES("3538", "3", "2014-10-17 04:00:06", "66.249.79.84", "4939");
INSERT INTO `wp_rg_form_view` VALUES("3539", "6", "2014-10-17 04:00:08", "66.249.79.84", "972");
INSERT INTO `wp_rg_form_view` VALUES("3540", "3", "2014-10-17 05:00:00", "66.249.79.92", "7359");
INSERT INTO `wp_rg_form_view` VALUES("3541", "6", "2014-10-17 05:00:00", "66.249.79.92", "1454");
INSERT INTO `wp_rg_form_view` VALUES("3542", "1", "2014-10-17 05:13:54", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("3543", "2", "2014-10-17 05:31:35", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("3544", "3", "2014-10-17 06:00:00", "66.249.79.76", "6997");
INSERT INTO `wp_rg_form_view` VALUES("3545", "6", "2014-10-17 06:00:02", "66.249.79.76", "1378");
INSERT INTO `wp_rg_form_view` VALUES("3546", "3", "2014-10-17 07:00:00", "66.249.79.92", "4605");
INSERT INTO `wp_rg_form_view` VALUES("3547", "6", "2014-10-17 07:00:00", "66.249.79.92", "906");
INSERT INTO `wp_rg_form_view` VALUES("3548", "3", "2014-10-17 08:03:44", "100.43.85.24", "480");
INSERT INTO `wp_rg_form_view` VALUES("3549", "6", "2014-10-17 08:03:45", "100.43.85.24", "94");
INSERT INTO `wp_rg_form_view` VALUES("3550", "3", "2014-10-17 09:00:07", "66.249.79.76", "5404");
INSERT INTO `wp_rg_form_view` VALUES("3551", "6", "2014-10-17 09:00:07", "66.249.79.76", "1066");
INSERT INTO `wp_rg_form_view` VALUES("3552", "3", "2014-10-17 10:00:00", "66.249.79.76", "6561");
INSERT INTO `wp_rg_form_view` VALUES("3553", "6", "2014-10-17 10:00:03", "66.249.79.76", "1288");
INSERT INTO `wp_rg_form_view` VALUES("3554", "3", "2014-10-17 11:00:02", "66.249.79.84", "6538");
INSERT INTO `wp_rg_form_view` VALUES("3555", "6", "2014-10-17 11:00:04", "66.249.79.84", "1288");
INSERT INTO `wp_rg_form_view` VALUES("3556", "1", "2014-10-17 11:34:30", "223.68.6.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("3557", "3", "2014-10-17 12:00:00", "66.249.79.84", "6968");
INSERT INTO `wp_rg_form_view` VALUES("3558", "6", "2014-10-17 12:00:01", "66.249.79.84", "1376");
INSERT INTO `wp_rg_form_view` VALUES("3559", "3", "2014-10-17 13:00:00", "66.249.79.76", "6985");
INSERT INTO `wp_rg_form_view` VALUES("3560", "6", "2014-10-17 13:00:00", "66.249.79.76", "1380");
INSERT INTO `wp_rg_form_view` VALUES("3561", "3", "2014-10-17 14:00:00", "66.249.79.84", "8508");
INSERT INTO `wp_rg_form_view` VALUES("3562", "6", "2014-10-17 14:00:02", "66.249.79.76", "1679");
INSERT INTO `wp_rg_form_view` VALUES("3563", "6", "2014-10-17 15:00:00", "66.249.79.92", "1583");
INSERT INTO `wp_rg_form_view` VALUES("3564", "3", "2014-10-17 15:00:00", "66.249.79.92", "7991");
INSERT INTO `wp_rg_form_view` VALUES("3565", "1", "2014-10-17 15:47:18", "209.66.220.124", "4");
INSERT INTO `wp_rg_form_view` VALUES("3566", "3", "2014-10-17 16:00:00", "66.249.79.76", "7115");
INSERT INTO `wp_rg_form_view` VALUES("3567", "6", "2014-10-17 16:00:02", "66.249.79.76", "1396");
INSERT INTO `wp_rg_form_view` VALUES("3568", "3", "2014-10-17 17:00:01", "66.249.79.60", "7179");
INSERT INTO `wp_rg_form_view` VALUES("3569", "6", "2014-10-17 17:00:03", "66.249.79.60", "1424");
INSERT INTO `wp_rg_form_view` VALUES("3570", "3", "2014-10-17 18:00:00", "66.249.79.92", "6105");
INSERT INTO `wp_rg_form_view` VALUES("3571", "6", "2014-10-17 18:00:03", "66.249.79.92", "1206");
INSERT INTO `wp_rg_form_view` VALUES("3572", "2", "2014-10-17 18:47:24", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("3573", "3", "2014-10-17 19:00:01", "66.249.79.76", "4756");
INSERT INTO `wp_rg_form_view` VALUES("3574", "6", "2014-10-17 19:00:03", "66.249.79.76", "940");
INSERT INTO `wp_rg_form_view` VALUES("3575", "3", "2014-10-17 20:01:53", "66.249.79.84", "1071");
INSERT INTO `wp_rg_form_view` VALUES("3576", "6", "2014-10-17 20:01:55", "66.249.79.84", "214");
INSERT INTO `wp_rg_form_view` VALUES("3577", "3", "2014-10-17 21:00:01", "66.249.79.84", "6190");
INSERT INTO `wp_rg_form_view` VALUES("3578", "6", "2014-10-17 21:00:01", "66.249.79.84", "1220");
INSERT INTO `wp_rg_form_view` VALUES("3579", "3", "2014-10-17 22:00:02", "66.249.79.76", "5416");
INSERT INTO `wp_rg_form_view` VALUES("3580", "6", "2014-10-17 22:00:04", "66.249.79.76", "1070");
INSERT INTO `wp_rg_form_view` VALUES("3581", "3", "2014-10-17 23:00:02", "66.249.79.84", "5224");
INSERT INTO `wp_rg_form_view` VALUES("3582", "6", "2014-10-17 23:00:05", "66.249.79.84", "1026");
INSERT INTO `wp_rg_form_view` VALUES("3583", "1", "2014-10-17 23:50:32", "96.50.11.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("3584", "3", "2014-10-18 00:00:02", "66.249.79.76", "5342");
INSERT INTO `wp_rg_form_view` VALUES("3585", "6", "2014-10-18 00:00:04", "66.249.79.76", "1050");
INSERT INTO `wp_rg_form_view` VALUES("3586", "3", "2014-10-18 01:00:00", "66.249.79.84", "4828");
INSERT INTO `wp_rg_form_view` VALUES("3587", "6", "2014-10-18 01:00:01", "66.249.79.84", "944");
INSERT INTO `wp_rg_form_view` VALUES("3588", "3", "2014-10-18 02:00:00", "66.249.79.84", "5262");
INSERT INTO `wp_rg_form_view` VALUES("3589", "6", "2014-10-18 02:00:01", "66.249.79.84", "1034");
INSERT INTO `wp_rg_form_view` VALUES("3590", "3", "2014-10-18 03:00:00", "66.249.79.92", "5504");
INSERT INTO `wp_rg_form_view` VALUES("3591", "6", "2014-10-18 03:00:01", "66.249.79.92", "1086");
INSERT INTO `wp_rg_form_view` VALUES("3592", "3", "2014-10-18 04:00:11", "66.249.79.92", "5246");
INSERT INTO `wp_rg_form_view` VALUES("3593", "6", "2014-10-18 04:00:13", "66.249.79.92", "1035");
INSERT INTO `wp_rg_form_view` VALUES("3594", "3", "2014-10-18 05:00:00", "66.249.79.92", "5127");
INSERT INTO `wp_rg_form_view` VALUES("3595", "6", "2014-10-18 05:00:02", "66.249.79.92", "1016");
INSERT INTO `wp_rg_form_view` VALUES("3596", "3", "2014-10-18 06:00:00", "66.249.79.84", "5466");
INSERT INTO `wp_rg_form_view` VALUES("3597", "6", "2014-10-18 06:00:02", "66.249.79.84", "1074");
INSERT INTO `wp_rg_form_view` VALUES("3598", "3", "2014-10-18 07:00:00", "66.249.79.76", "8333");
INSERT INTO `wp_rg_form_view` VALUES("3599", "6", "2014-10-18 07:00:05", "66.249.79.84", "1632");
INSERT INTO `wp_rg_form_view` VALUES("3600", "3", "2014-10-18 08:00:00", "66.249.79.92", "6420");
INSERT INTO `wp_rg_form_view` VALUES("3601", "6", "2014-10-18 08:00:01", "66.249.79.92", "1268");
INSERT INTO `wp_rg_form_view` VALUES("3602", "3", "2014-10-18 09:01:50", "66.249.79.84", "4881");
INSERT INTO `wp_rg_form_view` VALUES("3603", "6", "2014-10-18 09:01:52", "66.249.79.84", "954");
INSERT INTO `wp_rg_form_view` VALUES("3604", "3", "2014-10-18 10:00:00", "66.249.79.92", "7323");
INSERT INTO `wp_rg_form_view` VALUES("3605", "6", "2014-10-18 10:00:00", "66.249.79.92", "1446");
INSERT INTO `wp_rg_form_view` VALUES("3606", "3", "2014-10-18 11:00:01", "66.249.79.76", "6909");
INSERT INTO `wp_rg_form_view` VALUES("3607", "6", "2014-10-18 11:00:04", "66.249.79.76", "1358");
INSERT INTO `wp_rg_form_view` VALUES("3608", "3", "2014-10-18 12:00:00", "66.249.79.84", "7591");
INSERT INTO `wp_rg_form_view` VALUES("3609", "6", "2014-10-18 12:00:04", "66.249.79.76", "1497");
INSERT INTO `wp_rg_form_view` VALUES("3610", "1", "2014-10-18 12:11:24", "104.152.185.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("3611", "2", "2014-10-18 12:11:44", "104.152.185.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("3612", "3", "2014-10-18 13:00:00", "66.249.79.76", "7170");
INSERT INTO `wp_rg_form_view` VALUES("3613", "6", "2014-10-18 13:00:04", "66.249.79.92", "1408");
INSERT INTO `wp_rg_form_view` VALUES("3614", "3", "2014-10-18 14:00:06", "66.249.79.76", "6902");
INSERT INTO `wp_rg_form_view` VALUES("3615", "6", "2014-10-18 14:00:08", "66.249.79.76", "1353");
INSERT INTO `wp_rg_form_view` VALUES("3616", "6", "2014-10-18 15:00:00", "66.249.79.84", "985");
INSERT INTO `wp_rg_form_view` VALUES("3617", "3", "2014-10-18 15:00:00", "66.249.79.84", "4991");
INSERT INTO `wp_rg_form_view` VALUES("3618", "3", "2014-10-18 16:00:00", "66.249.79.76", "5635");
INSERT INTO `wp_rg_form_view` VALUES("3619", "6", "2014-10-18 16:00:01", "66.249.79.76", "1108");
INSERT INTO `wp_rg_form_view` VALUES("3620", "3", "2014-10-18 17:00:00", "66.249.79.84", "5676");
INSERT INTO `wp_rg_form_view` VALUES("3621", "6", "2014-10-18 17:00:00", "66.249.79.84", "1110");
INSERT INTO `wp_rg_form_view` VALUES("3622", "3", "2014-10-18 18:00:00", "66.249.79.92", "5648");
INSERT INTO `wp_rg_form_view` VALUES("3623", "6", "2014-10-18 18:00:02", "66.249.79.92", "1104");
INSERT INTO `wp_rg_form_view` VALUES("3624", "3", "2014-10-18 19:00:00", "66.249.79.84", "4981");
INSERT INTO `wp_rg_form_view` VALUES("3625", "6", "2014-10-18 19:00:00", "66.249.79.84", "982");
INSERT INTO `wp_rg_form_view` VALUES("3626", "3", "2014-10-18 20:00:00", "66.249.79.92", "2490");
INSERT INTO `wp_rg_form_view` VALUES("3627", "6", "2014-10-18 20:00:02", "66.249.79.92", "494");
INSERT INTO `wp_rg_form_view` VALUES("3628", "1", "2014-10-18 20:12:08", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("3629", "3", "2014-10-18 21:00:06", "66.249.79.84", "5466");
INSERT INTO `wp_rg_form_view` VALUES("3630", "6", "2014-10-18 21:00:07", "66.249.79.84", "1078");
INSERT INTO `wp_rg_form_view` VALUES("3631", "3", "2014-10-18 22:00:01", "66.249.79.92", "5143");
INSERT INTO `wp_rg_form_view` VALUES("3632", "6", "2014-10-18 22:00:04", "66.249.79.92", "1010");
INSERT INTO `wp_rg_form_view` VALUES("3633", "3", "2014-10-18 23:00:00", "66.249.79.76", "4633");
INSERT INTO `wp_rg_form_view` VALUES("3634", "6", "2014-10-18 23:00:03", "66.249.79.84", "1134");
INSERT INTO `wp_rg_form_view` VALUES("3635", "3", "2014-10-19 00:00:00", "66.249.79.76", "5224");
INSERT INTO `wp_rg_form_view` VALUES("3636", "6", "2014-10-19 00:00:02", "66.249.79.76", "1270");
INSERT INTO `wp_rg_form_view` VALUES("3637", "3", "2014-10-19 01:00:03", "66.249.79.84", "5252");
INSERT INTO `wp_rg_form_view` VALUES("3638", "6", "2014-10-19 01:00:05", "66.249.79.84", "1287");
INSERT INTO `wp_rg_form_view` VALUES("3639", "3", "2014-10-19 02:00:00", "66.249.79.84", "5534");
INSERT INTO `wp_rg_form_view` VALUES("3640", "6", "2014-10-19 02:00:03", "66.249.79.76", "1356");
INSERT INTO `wp_rg_form_view` VALUES("3641", "2", "2014-10-19 02:29:45", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("3642", "1", "2014-10-19 02:29:49", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("3643", "3", "2014-10-19 03:00:00", "66.249.79.84", "5019");
INSERT INTO `wp_rg_form_view` VALUES("3644", "6", "2014-10-19 03:00:01", "66.249.79.84", "1228");
INSERT INTO `wp_rg_form_view` VALUES("3645", "3", "2014-10-19 04:00:00", "66.249.79.76", "5324");
INSERT INTO `wp_rg_form_view` VALUES("3646", "6", "2014-10-19 04:00:01", "66.249.79.76", "1296");
INSERT INTO `wp_rg_form_view` VALUES("3647", "3", "2014-10-19 05:00:00", "66.249.79.84", "5366");
INSERT INTO `wp_rg_form_view` VALUES("3648", "6", "2014-10-19 05:00:01", "66.249.79.84", "1305");
INSERT INTO `wp_rg_form_view` VALUES("3649", "1", "2014-10-19 05:07:15", "37.153.195.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("3650", "2", "2014-10-19 05:07:26", "37.153.195.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("3651", "3", "2014-10-19 06:00:02", "66.249.79.76", "5300");
INSERT INTO `wp_rg_form_view` VALUES("3652", "6", "2014-10-19 06:00:03", "66.249.79.76", "1288");
INSERT INTO `wp_rg_form_view` VALUES("3653", "3", "2014-10-19 07:00:00", "66.249.79.92", "6523");
INSERT INTO `wp_rg_form_view` VALUES("3654", "6", "2014-10-19 07:00:01", "66.249.79.92", "1600");
INSERT INTO `wp_rg_form_view` VALUES("3655", "3", "2014-10-19 08:03:34", "66.249.79.76", "2932");
INSERT INTO `wp_rg_form_view` VALUES("3656", "6", "2014-10-19 08:03:36", "66.249.79.76", "730");
INSERT INTO `wp_rg_form_view` VALUES("3657", "3", "2014-10-19 09:00:01", "66.249.79.92", "5570");
INSERT INTO `wp_rg_form_view` VALUES("3658", "6", "2014-10-19 09:00:02", "66.249.79.92", "1361");
INSERT INTO `wp_rg_form_view` VALUES("3659", "6", "2014-10-19 10:00:00", "66.249.79.76", "1375");
INSERT INTO `wp_rg_form_view` VALUES("3660", "3", "2014-10-19 10:00:00", "66.249.79.76", "5609");
INSERT INTO `wp_rg_form_view` VALUES("3661", "3", "2014-10-19 11:00:00", "66.249.79.92", "5486");
INSERT INTO `wp_rg_form_view` VALUES("3662", "6", "2014-10-19 11:00:01", "66.249.79.92", "1346");
INSERT INTO `wp_rg_form_view` VALUES("3663", "3", "2014-10-19 12:00:00", "66.249.79.92", "5561");
INSERT INTO `wp_rg_form_view` VALUES("3664", "6", "2014-10-19 12:00:04", "66.249.79.92", "1358");
INSERT INTO `wp_rg_form_view` VALUES("3665", "3", "2014-10-19 13:00:00", "66.249.79.92", "5472");
INSERT INTO `wp_rg_form_view` VALUES("3666", "6", "2014-10-19 13:00:02", "66.249.79.92", "1338");
INSERT INTO `wp_rg_form_view` VALUES("3667", "3", "2014-10-19 14:00:00", "66.249.79.76", "5509");
INSERT INTO `wp_rg_form_view` VALUES("3668", "6", "2014-10-19 14:00:00", "66.249.79.76", "1356");
INSERT INTO `wp_rg_form_view` VALUES("3669", "3", "2014-10-19 15:00:01", "66.249.79.76", "5276");
INSERT INTO `wp_rg_form_view` VALUES("3670", "6", "2014-10-19 15:00:03", "66.249.79.76", "1290");
INSERT INTO `wp_rg_form_view` VALUES("3671", "3", "2014-10-19 16:00:03", "66.249.79.76", "5500");
INSERT INTO `wp_rg_form_view` VALUES("3672", "6", "2014-10-19 16:00:04", "66.249.79.76", "1354");
INSERT INTO `wp_rg_form_view` VALUES("3673", "3", "2014-10-19 17:00:00", "66.249.79.76", "5683");
INSERT INTO `wp_rg_form_view` VALUES("3674", "6", "2014-10-19 17:00:02", "66.249.79.76", "1400");
INSERT INTO `wp_rg_form_view` VALUES("3675", "2", "2014-10-19 17:18:46", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("3676", "1", "2014-10-19 17:18:51", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("3677", "3", "2014-10-19 18:00:00", "66.249.79.84", "4986");
INSERT INTO `wp_rg_form_view` VALUES("3678", "6", "2014-10-19 18:00:03", "66.249.79.92", "1207");
INSERT INTO `wp_rg_form_view` VALUES("3679", "3", "2014-10-19 19:00:00", "192.99.149.88", "97");
INSERT INTO `wp_rg_form_view` VALUES("3680", "6", "2014-10-19 19:00:01", "192.99.149.88", "24");
INSERT INTO `wp_rg_form_view` VALUES("3681", "3", "2014-10-19 20:00:23", "202.46.63.82", "1250");
INSERT INTO `wp_rg_form_view` VALUES("3682", "6", "2014-10-19 20:00:24", "202.46.63.82", "310");
INSERT INTO `wp_rg_form_view` VALUES("3683", "3", "2014-10-19 21:00:00", "192.99.149.88", "3730");
INSERT INTO `wp_rg_form_view` VALUES("3684", "6", "2014-10-19 21:00:01", "192.99.149.88", "910");
INSERT INTO `wp_rg_form_view` VALUES("3685", "3", "2014-10-19 22:00:00", "66.249.79.76", "3977");
INSERT INTO `wp_rg_form_view` VALUES("3686", "6", "2014-10-19 22:00:00", "66.249.79.76", "976");
INSERT INTO `wp_rg_form_view` VALUES("3687", "3", "2014-10-19 23:00:00", "66.249.79.84", "4452");
INSERT INTO `wp_rg_form_view` VALUES("3688", "6", "2014-10-19 23:00:01", "66.249.79.84", "1084");
INSERT INTO `wp_rg_form_view` VALUES("3689", "3", "2014-10-20 00:00:02", "66.249.79.76", "4696");
INSERT INTO `wp_rg_form_view` VALUES("3690", "6", "2014-10-20 00:00:03", "66.249.79.76", "1140");
INSERT INTO `wp_rg_form_view` VALUES("3691", "3", "2014-10-20 01:00:00", "66.249.79.92", "5094");
INSERT INTO `wp_rg_form_view` VALUES("3692", "6", "2014-10-20 01:00:00", "66.249.79.92", "1244");
INSERT INTO `wp_rg_form_view` VALUES("3693", "1", "2014-10-20 01:10:56", "65.49.14.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("3694", "3", "2014-10-20 02:00:18", "66.249.79.92", "4963");
INSERT INTO `wp_rg_form_view` VALUES("3695", "6", "2014-10-20 02:00:20", "66.249.79.92", "1220");
INSERT INTO `wp_rg_form_view` VALUES("3696", "3", "2014-10-20 03:00:00", "66.249.79.84", "5202");
INSERT INTO `wp_rg_form_view` VALUES("3697", "6", "2014-10-20 03:00:00", "66.249.79.84", "1290");
INSERT INTO `wp_rg_form_view` VALUES("3698", "3", "2014-10-20 04:00:00", "66.249.79.92", "5535");
INSERT INTO `wp_rg_form_view` VALUES("3699", "6", "2014-10-20 04:00:03", "66.249.79.84", "1360");
INSERT INTO `wp_rg_form_view` VALUES("3700", "2", "2014-10-20 04:14:01", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("3701", "1", "2014-10-20 04:14:07", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("3702", "3", "2014-10-20 05:00:00", "66.249.79.92", "5482");
INSERT INTO `wp_rg_form_view` VALUES("3703", "6", "2014-10-20 05:00:01", "66.249.79.92", "1342");
INSERT INTO `wp_rg_form_view` VALUES("3704", "3", "2014-10-20 06:00:00", "66.249.79.84", "5220");
INSERT INTO `wp_rg_form_view` VALUES("3705", "6", "2014-10-20 06:00:00", "66.249.79.84", "1294");
INSERT INTO `wp_rg_form_view` VALUES("3706", "3", "2014-10-20 07:00:00", "66.249.79.76", "1320");
INSERT INTO `wp_rg_form_view` VALUES("3707", "6", "2014-10-20 07:00:02", "66.249.79.76", "320");
INSERT INTO `wp_rg_form_view` VALUES("3708", "3", "2014-10-20 08:00:10", "66.249.79.76", "2850");
INSERT INTO `wp_rg_form_view` VALUES("3709", "6", "2014-10-20 08:00:11", "66.249.79.76", "698");
INSERT INTO `wp_rg_form_view` VALUES("3710", "3", "2014-10-20 09:00:04", "66.249.79.76", "3406");
INSERT INTO `wp_rg_form_view` VALUES("3711", "6", "2014-10-20 09:00:05", "66.249.79.76", "837");
INSERT INTO `wp_rg_form_view` VALUES("3712", "3", "2014-10-20 10:00:05", "66.249.79.84", "4064");
INSERT INTO `wp_rg_form_view` VALUES("3713", "6", "2014-10-20 10:00:06", "66.249.79.84", "1000");
INSERT INTO `wp_rg_form_view` VALUES("3714", "3", "2014-10-20 11:00:00", "66.249.79.92", "5212");
INSERT INTO `wp_rg_form_view` VALUES("3715", "6", "2014-10-20 11:00:01", "66.249.79.92", "1280");
INSERT INTO `wp_rg_form_view` VALUES("3716", "3", "2014-10-20 12:00:00", "66.249.79.84", "5445");
INSERT INTO `wp_rg_form_view` VALUES("3717", "6", "2014-10-20 12:00:00", "66.249.79.84", "1342");
INSERT INTO `wp_rg_form_view` VALUES("3718", "1", "2014-10-20 12:57:01", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("3719", "3", "2014-10-20 13:00:00", "66.249.79.84", "5501");
INSERT INTO `wp_rg_form_view` VALUES("3720", "6", "2014-10-20 13:00:02", "66.249.79.84", "1346");
INSERT INTO `wp_rg_form_view` VALUES("3721", "3", "2014-10-20 14:00:02", "66.249.79.84", "5424");
INSERT INTO `wp_rg_form_view` VALUES("3722", "6", "2014-10-20 14:00:04", "66.249.79.84", "1336");
INSERT INTO `wp_rg_form_view` VALUES("3723", "3", "2014-10-20 15:00:00", "66.249.79.76", "4877");
INSERT INTO `wp_rg_form_view` VALUES("3724", "6", "2014-10-20 15:00:00", "66.249.79.76", "1200");
INSERT INTO `wp_rg_form_view` VALUES("3725", "3", "2014-10-20 16:00:00", "66.249.79.92", "5103");
INSERT INTO `wp_rg_form_view` VALUES("3726", "6", "2014-10-20 16:00:02", "66.249.79.92", "1252");
INSERT INTO `wp_rg_form_view` VALUES("3727", "3", "2014-10-20 17:00:00", "66.249.79.84", "5053");
INSERT INTO `wp_rg_form_view` VALUES("3728", "6", "2014-10-20 17:00:00", "66.249.79.84", "1240");
INSERT INTO `wp_rg_form_view` VALUES("3729", "3", "2014-10-20 18:00:00", "66.249.79.84", "2466");
INSERT INTO `wp_rg_form_view` VALUES("3730", "6", "2014-10-20 18:00:05", "66.249.79.92", "606");
INSERT INTO `wp_rg_form_view` VALUES("3731", "3", "2014-10-20 19:15:38", "66.249.79.92", "494");
INSERT INTO `wp_rg_form_view` VALUES("3732", "6", "2014-10-20 19:15:39", "66.249.79.92", "120");
INSERT INTO `wp_rg_form_view` VALUES("3733", "3", "2014-10-20 20:00:15", "66.249.79.84", "4695");
INSERT INTO `wp_rg_form_view` VALUES("3734", "6", "2014-10-20 20:00:15", "66.249.79.84", "1148");
INSERT INTO `wp_rg_form_view` VALUES("3735", "3", "2014-10-20 21:00:00", "66.249.79.84", "4935");
INSERT INTO `wp_rg_form_view` VALUES("3736", "6", "2014-10-20 21:00:00", "66.249.79.84", "1219");
INSERT INTO `wp_rg_form_view` VALUES("3737", "6", "2014-10-20 22:00:00", "66.249.79.92", "791");
INSERT INTO `wp_rg_form_view` VALUES("3738", "3", "2014-10-20 22:00:01", "66.249.79.92", "3248");
INSERT INTO `wp_rg_form_view` VALUES("3739", "2", "2014-10-20 22:21:20", "37.213.12.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("3740", "6", "2014-10-20 23:00:00", "66.249.79.92", "1280");
INSERT INTO `wp_rg_form_view` VALUES("3741", "3", "2014-10-20 23:00:00", "66.249.79.92", "5241");
INSERT INTO `wp_rg_form_view` VALUES("3742", "3", "2014-10-21 00:00:00", "66.249.79.92", "5521");
INSERT INTO `wp_rg_form_view` VALUES("3743", "6", "2014-10-21 00:00:03", "66.249.79.76", "1344");
INSERT INTO `wp_rg_form_view` VALUES("3744", "3", "2014-10-21 01:00:00", "66.249.79.92", "5297");
INSERT INTO `wp_rg_form_view` VALUES("3745", "6", "2014-10-21 01:00:02", "66.249.79.92", "1304");
INSERT INTO `wp_rg_form_view` VALUES("3746", "3", "2014-10-21 02:00:00", "66.249.79.76", "5265");
INSERT INTO `wp_rg_form_view` VALUES("3747", "6", "2014-10-21 02:00:01", "66.249.79.76", "1294");
INSERT INTO `wp_rg_form_view` VALUES("3748", "3", "2014-10-21 03:00:00", "66.249.79.76", "5391");
INSERT INTO `wp_rg_form_view` VALUES("3749", "6", "2014-10-21 03:00:02", "66.249.79.76", "1316");
INSERT INTO `wp_rg_form_view` VALUES("3750", "6", "2014-10-21 04:00:00", "66.249.79.92", "1244");
INSERT INTO `wp_rg_form_view` VALUES("3751", "3", "2014-10-21 04:00:00", "66.249.79.92", "5090");
INSERT INTO `wp_rg_form_view` VALUES("3752", "3", "2014-10-21 05:00:00", "66.249.79.84", "4208");
INSERT INTO `wp_rg_form_view` VALUES("3753", "6", "2014-10-21 05:00:02", "66.249.79.84", "1026");
INSERT INTO `wp_rg_form_view` VALUES("3754", "3", "2014-10-21 06:37:54", "202.46.50.36", "18");
INSERT INTO `wp_rg_form_view` VALUES("3755", "6", "2014-10-21 06:37:56", "202.46.50.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("3756", "3", "2014-10-21 07:04:56", "66.249.79.76", "1183");
INSERT INTO `wp_rg_form_view` VALUES("3757", "6", "2014-10-21 07:04:57", "66.249.79.76", "299");
INSERT INTO `wp_rg_form_view` VALUES("3758", "1", "2014-10-21 07:10:43", "27.159.207.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("3759", "2", "2014-10-21 07:19:27", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3760", "3", "2014-10-21 08:00:23", "66.249.79.76", "5216");
INSERT INTO `wp_rg_form_view` VALUES("3761", "6", "2014-10-21 08:00:23", "66.249.79.76", "1287");
INSERT INTO `wp_rg_form_view` VALUES("3762", "1", "2014-10-21 08:14:12", "86.123.241.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("3763", "2", "2014-10-21 08:14:25", "86.123.241.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("3764", "3", "2014-10-21 09:00:00", "66.249.79.92", "5234");
INSERT INTO `wp_rg_form_view` VALUES("3765", "6", "2014-10-21 09:00:01", "66.249.79.92", "1278");
INSERT INTO `wp_rg_form_view` VALUES("3766", "3", "2014-10-21 10:00:02", "66.249.79.92", "5134");
INSERT INTO `wp_rg_form_view` VALUES("3767", "6", "2014-10-21 10:00:03", "66.249.79.92", "1258");
INSERT INTO `wp_rg_form_view` VALUES("3768", "2", "2014-10-21 10:26:20", "193.201.224.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("3769", "3", "2014-10-21 11:00:00", "66.249.79.76", "4598");
INSERT INTO `wp_rg_form_view` VALUES("3770", "6", "2014-10-21 11:00:01", "66.249.79.76", "1118");
INSERT INTO `wp_rg_form_view` VALUES("3771", "3", "2014-10-21 12:00:02", "66.249.79.84", "5122");
INSERT INTO `wp_rg_form_view` VALUES("3772", "6", "2014-10-21 12:00:03", "66.249.79.84", "1256");
INSERT INTO `wp_rg_form_view` VALUES("3773", "1", "2014-10-21 12:19:37", "79.116.31.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("3774", "2", "2014-10-21 12:19:52", "79.116.31.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("3775", "6", "2014-10-21 13:00:00", "66.249.79.84", "1355");
INSERT INTO `wp_rg_form_view` VALUES("3776", "3", "2014-10-21 13:00:00", "66.249.79.84", "5558");
INSERT INTO `wp_rg_form_view` VALUES("3777", "3", "2014-10-21 14:00:02", "66.249.79.76", "5407");
INSERT INTO `wp_rg_form_view` VALUES("3778", "6", "2014-10-21 14:00:04", "66.249.79.76", "1316");
INSERT INTO `wp_rg_form_view` VALUES("3779", "3", "2014-10-21 15:00:00", "66.249.79.76", "4552");
INSERT INTO `wp_rg_form_view` VALUES("3780", "6", "2014-10-21 15:00:01", "66.249.79.76", "1116");
INSERT INTO `wp_rg_form_view` VALUES("3781", "1", "2014-10-21 15:40:38", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("3782", "3", "2014-10-21 16:00:00", "66.249.79.84", "2985");
INSERT INTO `wp_rg_form_view` VALUES("3783", "6", "2014-10-21 16:00:02", "66.249.79.84", "732");
INSERT INTO `wp_rg_form_view` VALUES("3784", "1", "2014-10-21 16:26:30", "198.199.66.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("3785", "2", "2014-10-21 16:26:31", "198.199.66.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("3786", "3", "2014-10-21 17:05:27", "100.43.90.9", "50");
INSERT INTO `wp_rg_form_view` VALUES("3787", "6", "2014-10-21 17:05:28", "100.43.90.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("3788", "3", "2014-10-21 18:00:05", "195.211.155.158", "85");
INSERT INTO `wp_rg_form_view` VALUES("3789", "3", "2014-10-21 18:00:05", "195.211.155.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("3790", "6", "2014-10-21 18:00:06", "195.211.155.158", "23");
INSERT INTO `wp_rg_form_view` VALUES("3791", "6", "2014-10-21 18:00:06", "195.211.155.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("3792", "3", "2014-10-21 19:01:37", "157.55.39.36", "120");
INSERT INTO `wp_rg_form_view` VALUES("3793", "6", "2014-10-21 19:01:38", "157.55.39.36", "30");
INSERT INTO `wp_rg_form_view` VALUES("3794", "3", "2014-10-21 20:00:41", "66.249.79.84", "848");
INSERT INTO `wp_rg_form_view` VALUES("3795", "6", "2014-10-21 20:00:41", "66.249.79.84", "208");
INSERT INTO `wp_rg_form_view` VALUES("3796", "1", "2014-10-21 20:16:33", "183.221.160.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("3797", "3", "2014-10-21 21:00:02", "66.249.79.76", "5092");
INSERT INTO `wp_rg_form_view` VALUES("3798", "6", "2014-10-21 21:00:03", "66.249.79.76", "1248");
INSERT INTO `wp_rg_form_view` VALUES("3799", "1", "2014-10-21 21:24:59", "175.44.32.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("3800", "3", "2014-10-21 22:00:00", "66.249.79.76", "4292");
INSERT INTO `wp_rg_form_view` VALUES("3801", "6", "2014-10-21 22:00:04", "66.249.79.92", "1050");
INSERT INTO `wp_rg_form_view` VALUES("3802", "3", "2014-10-21 23:00:01", "66.249.79.92", "4924");
INSERT INTO `wp_rg_form_view` VALUES("3803", "6", "2014-10-21 23:00:03", "66.249.79.92", "1202");
INSERT INTO `wp_rg_form_view` VALUES("3804", "3", "2014-10-22 00:00:13", "66.249.79.76", "5079");
INSERT INTO `wp_rg_form_view` VALUES("3805", "6", "2014-10-22 00:00:17", "66.249.79.76", "1240");
INSERT INTO `wp_rg_form_view` VALUES("3806", "3", "2014-10-22 01:00:00", "66.249.79.84", "5289");
INSERT INTO `wp_rg_form_view` VALUES("3807", "6", "2014-10-22 01:00:00", "66.249.79.84", "1306");
INSERT INTO `wp_rg_form_view` VALUES("3808", "3", "2014-10-22 02:00:08", "66.249.79.84", "5028");
INSERT INTO `wp_rg_form_view` VALUES("3809", "6", "2014-10-22 02:00:10", "66.249.79.84", "1230");
INSERT INTO `wp_rg_form_view` VALUES("3810", "3", "2014-10-22 03:00:00", "66.249.79.92", "5188");
INSERT INTO `wp_rg_form_view` VALUES("3811", "6", "2014-10-22 03:00:01", "66.249.79.92", "1267");
INSERT INTO `wp_rg_form_view` VALUES("3812", "6", "2014-10-22 04:00:00", "66.249.79.84", "1477");
INSERT INTO `wp_rg_form_view` VALUES("3813", "3", "2014-10-22 04:00:00", "66.249.79.84", "6073");
INSERT INTO `wp_rg_form_view` VALUES("3814", "1", "2014-10-22 04:28:17", "54.186.164.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("3815", "2", "2014-10-22 04:31:25", "54.186.164.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("3816", "3", "2014-10-22 05:00:00", "66.249.79.76", "5325");
INSERT INTO `wp_rg_form_view` VALUES("3817", "6", "2014-10-22 05:00:02", "66.249.79.76", "1294");
INSERT INTO `wp_rg_form_view` VALUES("3818", "3", "2014-10-22 06:00:00", "66.249.79.76", "5301");
INSERT INTO `wp_rg_form_view` VALUES("3819", "6", "2014-10-22 06:00:00", "66.249.79.76", "1290");
INSERT INTO `wp_rg_form_view` VALUES("3820", "3", "2014-10-22 07:03:36", "157.55.39.81", "826");
INSERT INTO `wp_rg_form_view` VALUES("3821", "6", "2014-10-22 07:03:37", "157.55.39.81", "188");
INSERT INTO `wp_rg_form_view` VALUES("3822", "3", "2014-10-22 08:00:05", "66.249.79.92", "1494");
INSERT INTO `wp_rg_form_view` VALUES("3823", "6", "2014-10-22 08:00:05", "66.249.79.92", "352");
INSERT INTO `wp_rg_form_view` VALUES("3824", "3", "2014-10-22 09:00:02", "66.249.79.92", "5872");
INSERT INTO `wp_rg_form_view` VALUES("3825", "6", "2014-10-22 09:00:03", "66.249.79.92", "1434");
INSERT INTO `wp_rg_form_view` VALUES("3826", "3", "2014-10-22 10:00:02", "66.249.79.92", "5994");
INSERT INTO `wp_rg_form_view` VALUES("3827", "6", "2014-10-22 10:00:04", "66.249.79.92", "1468");
INSERT INTO `wp_rg_form_view` VALUES("3828", "3", "2014-10-22 11:00:08", "66.249.79.76", "6328");
INSERT INTO `wp_rg_form_view` VALUES("3829", "6", "2014-10-22 11:00:10", "66.249.79.76", "1552");
INSERT INTO `wp_rg_form_view` VALUES("3830", "3", "2014-10-22 12:00:00", "66.249.79.76", "6150");
INSERT INTO `wp_rg_form_view` VALUES("3831", "6", "2014-10-22 12:00:02", "66.249.79.76", "1498");
INSERT INTO `wp_rg_form_view` VALUES("3832", "3", "2014-10-22 13:00:00", "66.249.79.92", "6253");
INSERT INTO `wp_rg_form_view` VALUES("3833", "6", "2014-10-22 13:00:02", "66.249.79.92", "1524");
INSERT INTO `wp_rg_form_view` VALUES("3834", "3", "2014-10-22 14:00:00", "66.249.79.84", "5881");
INSERT INTO `wp_rg_form_view` VALUES("3835", "6", "2014-10-22 14:00:01", "66.249.79.84", "1446");
INSERT INTO `wp_rg_form_view` VALUES("3836", "3", "2014-10-22 15:00:02", "66.249.79.92", "5718");
INSERT INTO `wp_rg_form_view` VALUES("3837", "6", "2014-10-22 15:00:04", "66.249.79.92", "1402");
INSERT INTO `wp_rg_form_view` VALUES("3838", "3", "2014-10-22 16:00:01", "66.249.79.84", "5255");
INSERT INTO `wp_rg_form_view` VALUES("3839", "6", "2014-10-22 16:00:02", "66.249.79.84", "1288");
INSERT INTO `wp_rg_form_view` VALUES("3840", "3", "2014-10-22 17:00:00", "66.249.79.92", "5703");
INSERT INTO `wp_rg_form_view` VALUES("3841", "6", "2014-10-22 17:00:01", "66.249.79.92", "1388");
INSERT INTO `wp_rg_form_view` VALUES("3842", "3", "2014-10-22 18:00:03", "66.249.79.76", "2482");
INSERT INTO `wp_rg_form_view` VALUES("3843", "6", "2014-10-22 18:00:05", "66.249.79.76", "610");
INSERT INTO `wp_rg_form_view` VALUES("3844", "3", "2014-10-22 19:00:34", "68.180.229.33", "918");
INSERT INTO `wp_rg_form_view` VALUES("3845", "6", "2014-10-22 19:00:35", "68.180.229.33", "230");
INSERT INTO `wp_rg_form_view` VALUES("3846", "3", "2014-10-22 20:00:25", "66.249.79.76", "2350");
INSERT INTO `wp_rg_form_view` VALUES("3847", "6", "2014-10-22 20:00:25", "66.249.79.76", "571");
INSERT INTO `wp_rg_form_view` VALUES("3848", "3", "2014-10-22 21:00:03", "66.249.79.84", "4566");
INSERT INTO `wp_rg_form_view` VALUES("3849", "6", "2014-10-22 21:00:04", "66.249.79.84", "1120");
INSERT INTO `wp_rg_form_view` VALUES("3850", "1", "2014-10-22 21:00:40", "54.213.230.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("3851", "2", "2014-10-22 21:01:26", "54.213.230.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("3852", "3", "2014-10-22 22:00:00", "66.249.79.84", "4571");
INSERT INTO `wp_rg_form_view` VALUES("3853", "6", "2014-10-22 22:00:02", "66.249.79.84", "1120");
INSERT INTO `wp_rg_form_view` VALUES("3854", "3", "2014-10-22 23:00:00", "66.249.79.84", "4536");
INSERT INTO `wp_rg_form_view` VALUES("3855", "6", "2014-10-22 23:00:09", "66.249.79.76", "1104");
INSERT INTO `wp_rg_form_view` VALUES("3856", "2", "2014-10-22 23:58:01", "188.165.15.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("3857", "3", "2014-10-23 00:00:00", "66.249.79.76", "4083");
INSERT INTO `wp_rg_form_view` VALUES("3858", "6", "2014-10-23 00:00:00", "66.249.79.76", "1002");
INSERT INTO `wp_rg_form_view` VALUES("3859", "3", "2014-10-23 01:00:14", "66.249.79.76", "4102");
INSERT INTO `wp_rg_form_view` VALUES("3860", "6", "2014-10-23 01:00:15", "66.249.79.76", "1001");
INSERT INTO `wp_rg_form_view` VALUES("3861", "3", "2014-10-23 02:00:00", "66.249.79.76", "4360");
INSERT INTO `wp_rg_form_view` VALUES("3862", "6", "2014-10-23 02:00:01", "66.249.79.76", "1078");
INSERT INTO `wp_rg_form_view` VALUES("3863", "3", "2014-10-23 03:00:00", "66.249.79.76", "3497");
INSERT INTO `wp_rg_form_view` VALUES("3864", "6", "2014-10-23 03:00:02", "66.249.79.76", "844");
INSERT INTO `wp_rg_form_view` VALUES("3865", "3", "2014-10-23 04:00:00", "66.249.79.76", "4269");
INSERT INTO `wp_rg_form_view` VALUES("3866", "6", "2014-10-23 04:00:00", "66.249.79.76", "1058");
INSERT INTO `wp_rg_form_view` VALUES("3867", "3", "2014-10-23 05:00:52", "66.249.79.92", "4338");
INSERT INTO `wp_rg_form_view` VALUES("3868", "6", "2014-10-23 05:00:54", "66.249.79.92", "1066");
INSERT INTO `wp_rg_form_view` VALUES("3869", "3", "2014-10-23 06:00:00", "66.249.79.76", "3052");
INSERT INTO `wp_rg_form_view` VALUES("3870", "6", "2014-10-23 06:00:00", "66.249.79.76", "752");
INSERT INTO `wp_rg_form_view` VALUES("3871", "3", "2014-10-23 07:00:00", "66.249.79.84", "7374");
INSERT INTO `wp_rg_form_view` VALUES("3872", "6", "2014-10-23 07:00:01", "66.249.79.84", "1816");
INSERT INTO `wp_rg_form_view` VALUES("3873", "3", "2014-10-23 08:00:10", "66.249.79.92", "5262");
INSERT INTO `wp_rg_form_view` VALUES("3874", "6", "2014-10-23 08:00:12", "66.249.79.92", "1288");
INSERT INTO `wp_rg_form_view` VALUES("3875", "3", "2014-10-23 09:00:34", "66.249.79.84", "482");
INSERT INTO `wp_rg_form_view` VALUES("3876", "6", "2014-10-23 09:00:35", "66.249.79.84", "116");
INSERT INTO `wp_rg_form_view` VALUES("3877", "3", "2014-10-23 10:01:40", "66.249.79.84", "1243");
INSERT INTO `wp_rg_form_view` VALUES("3878", "6", "2014-10-23 10:01:41", "66.249.79.84", "304");
INSERT INTO `wp_rg_form_view` VALUES("3879", "3", "2014-10-23 11:00:02", "66.249.79.92", "6339");
INSERT INTO `wp_rg_form_view` VALUES("3880", "6", "2014-10-23 11:00:02", "66.249.79.92", "1557");
INSERT INTO `wp_rg_form_view` VALUES("3881", "1", "2014-10-23 11:20:24", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("3882", "2", "2014-10-23 11:20:41", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("3883", "3", "2014-10-23 12:00:00", "66.249.79.92", "7108");
INSERT INTO `wp_rg_form_view` VALUES("3884", "6", "2014-10-23 12:00:03", "66.249.79.76", "1747");
INSERT INTO `wp_rg_form_view` VALUES("3885", "2", "2014-10-23 12:37:25", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3886", "1", "2014-10-23 12:37:26", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3887", "3", "2014-10-23 13:00:00", "66.249.79.84", "6916");
INSERT INTO `wp_rg_form_view` VALUES("3888", "6", "2014-10-23 13:00:02", "66.249.79.84", "1690");
INSERT INTO `wp_rg_form_view` VALUES("3889", "1", "2014-10-23 13:27:55", "158.85.89.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("3890", "3", "2014-10-23 14:00:00", "66.249.79.76", "6631");
INSERT INTO `wp_rg_form_view` VALUES("3891", "6", "2014-10-23 14:00:03", "66.249.79.76", "1624");
INSERT INTO `wp_rg_form_view` VALUES("3892", "6", "2014-10-23 15:00:00", "66.249.79.92", "1218");
INSERT INTO `wp_rg_form_view` VALUES("3893", "3", "2014-10-23 15:00:00", "66.249.79.92", "4984");
INSERT INTO `wp_rg_form_view` VALUES("3894", "6", "2014-10-23 16:00:00", "66.249.79.92", "1380");
INSERT INTO `wp_rg_form_view` VALUES("3895", "3", "2014-10-23 16:00:00", "66.249.79.92", "5594");
INSERT INTO `wp_rg_form_view` VALUES("3896", "1", "2014-10-23 16:46:01", "108.180.29.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("3897", "3", "2014-10-23 17:00:00", "66.249.79.92", "5091");
INSERT INTO `wp_rg_form_view` VALUES("3898", "6", "2014-10-23 17:00:01", "66.249.79.92", "1242");
INSERT INTO `wp_rg_form_view` VALUES("3899", "1", "2014-10-23 17:31:16", "184.66.33.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("3900", "3", "2014-10-23 18:00:07", "66.249.79.92", "3714");
INSERT INTO `wp_rg_form_view` VALUES("3901", "6", "2014-10-23 18:00:10", "66.249.79.92", "906");
INSERT INTO `wp_rg_form_view` VALUES("3902", "3", "2014-10-23 19:00:08", "66.249.79.84", "3086");
INSERT INTO `wp_rg_form_view` VALUES("3903", "6", "2014-10-23 19:00:09", "66.249.79.84", "756");
INSERT INTO `wp_rg_form_view` VALUES("3904", "3", "2014-10-23 20:00:00", "66.249.79.76", "5063");
INSERT INTO `wp_rg_form_view` VALUES("3905", "6", "2014-10-23 20:00:02", "66.249.79.76", "1256");
INSERT INTO `wp_rg_form_view` VALUES("3906", "2", "2014-10-23 20:32:47", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3907", "1", "2014-10-23 20:32:47", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3908", "6", "2014-10-23 21:00:00", "66.249.79.84", "1103");
INSERT INTO `wp_rg_form_view` VALUES("3909", "3", "2014-10-23 21:00:00", "66.249.79.84", "4505");
INSERT INTO `wp_rg_form_view` VALUES("3910", "3", "2014-10-23 22:00:00", "66.249.67.84", "5151");
INSERT INTO `wp_rg_form_view` VALUES("3911", "6", "2014-10-23 22:00:03", "66.249.67.76", "1258");
INSERT INTO `wp_rg_form_view` VALUES("3912", "3", "2014-10-23 23:00:00", "66.249.79.84", "4947");
INSERT INTO `wp_rg_form_view` VALUES("3913", "6", "2014-10-23 23:00:02", "66.249.79.84", "1206");
INSERT INTO `wp_rg_form_view` VALUES("3914", "1", "2014-10-23 23:20:14", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("3915", "3", "2014-10-24 00:00:00", "66.249.79.84", "5309");
INSERT INTO `wp_rg_form_view` VALUES("3916", "6", "2014-10-24 00:00:10", "66.249.79.76", "1298");
INSERT INTO `wp_rg_form_view` VALUES("3917", "1", "2014-10-24 00:09:49", "208.43.252.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("3918", "3", "2014-10-24 01:00:00", "66.249.79.76", "5915");
INSERT INTO `wp_rg_form_view` VALUES("3919", "6", "2014-10-24 01:00:01", "66.249.79.76", "1436");
INSERT INTO `wp_rg_form_view` VALUES("3920", "2", "2014-10-24 01:09:05", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3921", "1", "2014-10-24 01:09:06", "174.48.23.201", "3");
INSERT INTO `wp_rg_form_view` VALUES("3922", "3", "2014-10-24 02:00:06", "66.249.79.84", "4890");
INSERT INTO `wp_rg_form_view` VALUES("3923", "6", "2014-10-24 02:00:08", "66.249.79.84", "1206");
INSERT INTO `wp_rg_form_view` VALUES("3924", "3", "2014-10-24 03:00:02", "66.249.79.92", "5224");
INSERT INTO `wp_rg_form_view` VALUES("3925", "6", "2014-10-24 03:00:03", "66.249.79.92", "1276");
INSERT INTO `wp_rg_form_view` VALUES("3926", "3", "2014-10-24 04:00:01", "66.249.79.84", "5362");
INSERT INTO `wp_rg_form_view` VALUES("3927", "6", "2014-10-24 04:00:03", "66.249.79.84", "1316");
INSERT INTO `wp_rg_form_view` VALUES("3928", "3", "2014-10-24 05:00:00", "66.249.79.84", "5310");
INSERT INTO `wp_rg_form_view` VALUES("3929", "6", "2014-10-24 05:00:01", "66.249.79.84", "1298");
INSERT INTO `wp_rg_form_view` VALUES("3930", "3", "2014-10-24 06:00:05", "66.249.79.92", "5253");
INSERT INTO `wp_rg_form_view` VALUES("3931", "6", "2014-10-24 06:00:07", "66.249.79.92", "1280");
INSERT INTO `wp_rg_form_view` VALUES("3932", "3", "2014-10-24 07:00:00", "66.249.79.92", "2565");
INSERT INTO `wp_rg_form_view` VALUES("3933", "6", "2014-10-24 07:00:00", "66.249.79.92", "628");
INSERT INTO `wp_rg_form_view` VALUES("3934", "3", "2014-10-24 08:00:05", "66.249.79.84", "5456");
INSERT INTO `wp_rg_form_view` VALUES("3935", "6", "2014-10-24 08:00:07", "66.249.79.84", "1336");
INSERT INTO `wp_rg_form_view` VALUES("3936", "1", "2014-10-24 08:11:33", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("3937", "3", "2014-10-24 09:00:00", "66.249.79.92", "5992");
INSERT INTO `wp_rg_form_view` VALUES("3938", "6", "2014-10-24 09:00:00", "66.249.79.92", "1475");
INSERT INTO `wp_rg_form_view` VALUES("3939", "6", "2014-10-24 10:00:00", "66.249.79.84", "1451");
INSERT INTO `wp_rg_form_view` VALUES("3940", "3", "2014-10-24 10:00:00", "66.249.79.84", "5941");
INSERT INTO `wp_rg_form_view` VALUES("3941", "3", "2014-10-24 11:00:00", "66.249.79.76", "6606");
INSERT INTO `wp_rg_form_view` VALUES("3942", "6", "2014-10-24 11:00:04", "66.249.79.84", "1627");
INSERT INTO `wp_rg_form_view` VALUES("3943", "2", "2014-10-24 11:36:28", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3944", "1", "2014-10-24 11:36:29", "174.48.23.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("3945", "3", "2014-10-24 12:00:01", "66.249.79.84", "5981");
INSERT INTO `wp_rg_form_view` VALUES("3946", "6", "2014-10-24 12:00:03", "66.249.79.84", "1458");
INSERT INTO `wp_rg_form_view` VALUES("3947", "3", "2014-10-24 13:00:00", "66.249.79.92", "6040");
INSERT INTO `wp_rg_form_view` VALUES("3948", "6", "2014-10-24 13:00:02", "66.249.79.92", "1480");
INSERT INTO `wp_rg_form_view` VALUES("3949", "3", "2014-10-24 14:00:00", "66.249.79.92", "5946");
INSERT INTO `wp_rg_form_view` VALUES("3950", "6", "2014-10-24 14:00:02", "66.249.79.92", "1452");
INSERT INTO `wp_rg_form_view` VALUES("3951", "3", "2014-10-24 15:00:00", "66.249.79.84", "4222");
INSERT INTO `wp_rg_form_view` VALUES("3952", "6", "2014-10-24 15:00:19", "66.249.79.76", "1024");
INSERT INTO `wp_rg_form_view` VALUES("3953", "3", "2014-10-24 16:00:00", "66.249.79.92", "4650");
INSERT INTO `wp_rg_form_view` VALUES("3954", "6", "2014-10-24 16:00:02", "66.249.79.84", "1138");
INSERT INTO `wp_rg_form_view` VALUES("3955", "3", "2014-10-24 17:00:00", "66.249.79.84", "3829");
INSERT INTO `wp_rg_form_view` VALUES("3956", "6", "2014-10-24 17:00:08", "66.249.79.76", "1248");
INSERT INTO `wp_rg_form_view` VALUES("3957", "3", "2014-10-24 18:00:00", "66.249.79.76", "1944");
INSERT INTO `wp_rg_form_view` VALUES("3958", "6", "2014-10-24 18:00:01", "66.249.79.76", "643");
INSERT INTO `wp_rg_form_view` VALUES("3959", "2", "2014-10-24 18:23:43", "110.89.52.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("3960", "6", "2014-10-24 19:00:00", "66.249.79.92", "1423");
INSERT INTO `wp_rg_form_view` VALUES("3961", "3", "2014-10-24 19:00:00", "66.249.79.92", "4324");
INSERT INTO `wp_rg_form_view` VALUES("3962", "3", "2014-10-24 20:00:00", "66.249.79.76", "4508");
INSERT INTO `wp_rg_form_view` VALUES("3963", "6", "2014-10-24 20:00:01", "66.249.79.76", "1484");
INSERT INTO `wp_rg_form_view` VALUES("3964", "3", "2014-10-24 21:00:05", "66.249.79.92", "4308");
INSERT INTO `wp_rg_form_view` VALUES("3965", "6", "2014-10-24 21:00:07", "66.249.79.92", "1410");
INSERT INTO `wp_rg_form_view` VALUES("3966", "3", "2014-10-24 22:00:01", "66.249.79.84", "4545");
INSERT INTO `wp_rg_form_view` VALUES("3967", "6", "2014-10-24 22:00:02", "66.249.79.84", "1496");
INSERT INTO `wp_rg_form_view` VALUES("3968", "3", "2014-10-24 23:00:00", "66.249.79.92", "3050");
INSERT INTO `wp_rg_form_view` VALUES("3969", "6", "2014-10-24 23:00:00", "66.249.79.92", "1486");
INSERT INTO `wp_rg_form_view` VALUES("3970", "3", "2014-10-25 00:00:03", "66.249.79.76", "2396");
INSERT INTO `wp_rg_form_view` VALUES("3971", "6", "2014-10-25 00:00:04", "66.249.79.76", "1164");
INSERT INTO `wp_rg_form_view` VALUES("3972", "3", "2014-10-25 01:00:01", "66.249.79.92", "3247");
INSERT INTO `wp_rg_form_view` VALUES("3973", "6", "2014-10-25 01:00:01", "66.249.79.92", "1578");
INSERT INTO `wp_rg_form_view` VALUES("3974", "3", "2014-10-25 02:00:00", "66.249.79.84", "3073");
INSERT INTO `wp_rg_form_view` VALUES("3975", "6", "2014-10-25 02:00:04", "66.249.79.92", "1508");
INSERT INTO `wp_rg_form_view` VALUES("3976", "1", "2014-10-25 02:39:55", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("3977", "3", "2014-10-25 03:00:02", "66.249.79.92", "3196");
INSERT INTO `wp_rg_form_view` VALUES("3978", "6", "2014-10-25 03:00:03", "66.249.79.92", "1558");
INSERT INTO `wp_rg_form_view` VALUES("3979", "3", "2014-10-25 04:00:01", "66.249.79.76", "3054");
INSERT INTO `wp_rg_form_view` VALUES("3980", "6", "2014-10-25 04:00:01", "66.249.79.76", "1492");
INSERT INTO `wp_rg_form_view` VALUES("3981", "3", "2014-10-25 05:00:01", "66.249.79.84", "1098");
INSERT INTO `wp_rg_form_view` VALUES("3982", "6", "2014-10-25 05:00:02", "66.249.79.84", "530");
INSERT INTO `wp_rg_form_view` VALUES("3983", "3", "2014-10-25 06:00:29", "66.249.79.92", "276");
INSERT INTO `wp_rg_form_view` VALUES("3984", "6", "2014-10-25 06:00:29", "66.249.79.92", "134");
INSERT INTO `wp_rg_form_view` VALUES("3985", "3", "2014-10-25 07:00:25", "66.249.79.84", "2338");
INSERT INTO `wp_rg_form_view` VALUES("3986", "6", "2014-10-25 07:00:25", "66.249.79.84", "1150");
INSERT INTO `wp_rg_form_view` VALUES("3987", "3", "2014-10-25 08:00:02", "66.249.79.76", "2644");
INSERT INTO `wp_rg_form_view` VALUES("3988", "6", "2014-10-25 08:00:02", "66.249.79.76", "1298");
INSERT INTO `wp_rg_form_view` VALUES("3989", "3", "2014-10-25 09:00:00", "66.249.79.92", "2853");
INSERT INTO `wp_rg_form_view` VALUES("3990", "6", "2014-10-25 09:00:00", "66.249.79.92", "1394");
INSERT INTO `wp_rg_form_view` VALUES("3991", "3", "2014-10-25 10:00:00", "158.85.89.6", "2784");
INSERT INTO `wp_rg_form_view` VALUES("3992", "6", "2014-10-25 10:00:00", "158.85.89.6", "1368");
INSERT INTO `wp_rg_form_view` VALUES("3993", "1", "2014-10-25 10:00:39", "158.85.89.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("3994", "3", "2014-10-25 11:00:03", "66.249.79.76", "2800");
INSERT INTO `wp_rg_form_view` VALUES("3995", "6", "2014-10-25 11:00:04", "66.249.79.76", "1381");
INSERT INTO `wp_rg_form_view` VALUES("3996", "1", "2014-10-25 11:53:54", "54.200.127.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("3997", "2", "2014-10-25 11:54:04", "54.200.127.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("3998", "3", "2014-10-25 12:00:02", "66.249.79.92", "2724");
INSERT INTO `wp_rg_form_view` VALUES("3999", "6", "2014-10-25 12:00:02", "66.249.79.92", "1336");
INSERT INTO `wp_rg_form_view` VALUES("4000", "3", "2014-10-25 13:00:00", "66.249.79.84", "2782");
INSERT INTO `wp_rg_form_view` VALUES("4001", "6", "2014-10-25 13:00:01", "66.249.79.84", "1376");
INSERT INTO `wp_rg_form_view` VALUES("4002", "3", "2014-10-25 14:00:04", "66.249.79.76", "2875");
INSERT INTO `wp_rg_form_view` VALUES("4003", "6", "2014-10-25 14:00:04", "66.249.79.76", "1398");
INSERT INTO `wp_rg_form_view` VALUES("4004", "3", "2014-10-25 15:00:02", "66.249.79.84", "2736");
INSERT INTO `wp_rg_form_view` VALUES("4005", "6", "2014-10-25 15:00:02", "66.249.79.84", "1330");
INSERT INTO `wp_rg_form_view` VALUES("4006", "3", "2014-10-25 16:00:01", "66.249.79.92", "2644");
INSERT INTO `wp_rg_form_view` VALUES("4007", "6", "2014-10-25 16:00:02", "66.249.79.92", "1308");
INSERT INTO `wp_rg_form_view` VALUES("4008", "3", "2014-10-25 17:00:03", "66.249.79.84", "830");
INSERT INTO `wp_rg_form_view` VALUES("4009", "6", "2014-10-25 17:00:04", "66.249.79.84", "408");
INSERT INTO `wp_rg_form_view` VALUES("4010", "1", "2014-10-25 17:20:18", "62.217.63.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("4011", "3", "2014-10-25 18:00:03", "66.249.79.92", "1106");
INSERT INTO `wp_rg_form_view` VALUES("4012", "6", "2014-10-25 18:00:03", "66.249.79.92", "540");
INSERT INTO `wp_rg_form_view` VALUES("4013", "3", "2014-10-25 19:00:01", "66.249.79.76", "2738");
INSERT INTO `wp_rg_form_view` VALUES("4014", "6", "2014-10-25 19:00:01", "66.249.79.76", "1340");
INSERT INTO `wp_rg_form_view` VALUES("4015", "3", "2014-10-25 20:00:03", "66.249.79.76", "2806");
INSERT INTO `wp_rg_form_view` VALUES("4016", "6", "2014-10-25 20:00:03", "66.249.79.76", "1366");
INSERT INTO `wp_rg_form_view` VALUES("4017", "3", "2014-10-25 21:00:02", "66.249.79.76", "2816");
INSERT INTO `wp_rg_form_view` VALUES("4018", "6", "2014-10-25 21:00:02", "66.249.79.76", "1384");
INSERT INTO `wp_rg_form_view` VALUES("4019", "3", "2014-10-25 22:00:00", "66.249.79.92", "2811");
INSERT INTO `wp_rg_form_view` VALUES("4020", "6", "2014-10-25 22:00:00", "66.249.79.92", "1380");
INSERT INTO `wp_rg_form_view` VALUES("4021", "3", "2014-10-25 23:00:00", "66.249.79.84", "2791");
INSERT INTO `wp_rg_form_view` VALUES("4022", "6", "2014-10-25 23:00:03", "66.249.79.84", "1358");
INSERT INTO `wp_rg_form_view` VALUES("4023", "3", "2014-10-26 00:00:03", "66.249.79.92", "2744");
INSERT INTO `wp_rg_form_view` VALUES("4024", "6", "2014-10-26 00:00:03", "66.249.79.92", "1352");
INSERT INTO `wp_rg_form_view` VALUES("4025", "3", "2014-10-26 01:00:01", "66.249.79.84", "2788");
INSERT INTO `wp_rg_form_view` VALUES("4026", "6", "2014-10-26 01:00:01", "66.249.79.84", "1362");
INSERT INTO `wp_rg_form_view` VALUES("4027", "3", "2014-10-26 02:00:00", "66.249.79.84", "2762");
INSERT INTO `wp_rg_form_view` VALUES("4028", "6", "2014-10-26 02:00:00", "66.249.79.84", "1356");
INSERT INTO `wp_rg_form_view` VALUES("4029", "3", "2014-10-26 03:00:00", "66.249.79.76", "2720");
INSERT INTO `wp_rg_form_view` VALUES("4030", "6", "2014-10-26 03:00:01", "66.249.79.76", "1336");
INSERT INTO `wp_rg_form_view` VALUES("4031", "3", "2014-10-26 04:00:02", "66.249.79.76", "2574");
INSERT INTO `wp_rg_form_view` VALUES("4032", "6", "2014-10-26 04:00:02", "66.249.79.76", "1264");
INSERT INTO `wp_rg_form_view` VALUES("4033", "6", "2014-10-26 05:00:00", "66.249.79.76", "314");
INSERT INTO `wp_rg_form_view` VALUES("4034", "3", "2014-10-26 05:00:00", "66.249.79.76", "640");
INSERT INTO `wp_rg_form_view` VALUES("4035", "2", "2014-10-26 05:42:07", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("4036", "3", "2014-10-26 06:01:29", "66.249.79.76", "280");
INSERT INTO `wp_rg_form_view` VALUES("4037", "6", "2014-10-26 06:01:29", "66.249.79.76", "135");
INSERT INTO `wp_rg_form_view` VALUES("4038", "1", "2014-10-26 06:44:14", "54.76.143.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("4039", "2", "2014-10-26 06:45:01", "54.76.143.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("4040", "3", "2014-10-26 07:00:03", "66.249.79.92", "2396");
INSERT INTO `wp_rg_form_view` VALUES("4041", "6", "2014-10-26 07:00:03", "66.249.79.92", "1178");
INSERT INTO `wp_rg_form_view` VALUES("4042", "3", "2014-10-26 08:01:13", "66.249.79.76", "2776");
INSERT INTO `wp_rg_form_view` VALUES("4043", "6", "2014-10-26 08:01:14", "66.249.79.76", "1358");
INSERT INTO `wp_rg_form_view` VALUES("4044", "3", "2014-10-26 09:00:01", "66.249.79.84", "2880");
INSERT INTO `wp_rg_form_view` VALUES("4045", "6", "2014-10-26 09:00:02", "66.249.79.84", "1410");
INSERT INTO `wp_rg_form_view` VALUES("4046", "3", "2014-10-26 10:00:02", "66.249.79.92", "3039");
INSERT INTO `wp_rg_form_view` VALUES("4047", "6", "2014-10-26 10:00:03", "66.249.79.92", "1482");
INSERT INTO `wp_rg_form_view` VALUES("4048", "1", "2014-10-26 10:49:00", "36.248.167.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("4049", "3", "2014-10-26 11:00:00", "66.249.79.92", "2853");
INSERT INTO `wp_rg_form_view` VALUES("4050", "6", "2014-10-26 11:00:00", "66.249.79.92", "1406");
INSERT INTO `wp_rg_form_view` VALUES("4051", "3", "2014-10-26 12:00:03", "66.249.79.84", "2856");
INSERT INTO `wp_rg_form_view` VALUES("4052", "6", "2014-10-26 12:00:04", "66.249.79.84", "1404");
INSERT INTO `wp_rg_form_view` VALUES("4053", "3", "2014-10-26 13:00:01", "66.249.79.92", "2912");
INSERT INTO `wp_rg_form_view` VALUES("4054", "6", "2014-10-26 13:00:02", "66.249.79.92", "1428");
INSERT INTO `wp_rg_form_view` VALUES("4055", "1", "2014-10-26 13:50:57", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("4056", "3", "2014-10-26 14:00:00", "66.249.79.84", "2836");
INSERT INTO `wp_rg_form_view` VALUES("4057", "6", "2014-10-26 14:00:00", "66.249.79.84", "1388");
INSERT INTO `wp_rg_form_view` VALUES("4058", "3", "2014-10-26 15:00:08", "66.249.79.76", "2864");
INSERT INTO `wp_rg_form_view` VALUES("4059", "6", "2014-10-26 15:00:08", "66.249.79.76", "1416");
INSERT INTO `wp_rg_form_view` VALUES("4060", "3", "2014-10-26 16:00:00", "66.249.79.92", "2504");
INSERT INTO `wp_rg_form_view` VALUES("4061", "6", "2014-10-26 16:00:00", "66.249.79.92", "1230");
INSERT INTO `wp_rg_form_view` VALUES("4062", "3", "2014-10-26 17:07:22", "66.249.79.92", "108");
INSERT INTO `wp_rg_form_view` VALUES("4063", "6", "2014-10-26 17:07:22", "66.249.79.92", "52");
INSERT INTO `wp_rg_form_view` VALUES("4064", "3", "2014-10-26 18:00:40", "66.249.79.76", "1594");
INSERT INTO `wp_rg_form_view` VALUES("4065", "6", "2014-10-26 18:00:40", "66.249.79.76", "778");
INSERT INTO `wp_rg_form_view` VALUES("4066", "1", "2014-10-26 18:14:29", "72.46.156.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("4067", "3", "2014-10-26 19:00:00", "66.249.79.76", "2600");
INSERT INTO `wp_rg_form_view` VALUES("4068", "6", "2014-10-26 19:00:00", "66.249.79.76", "1282");
INSERT INTO `wp_rg_form_view` VALUES("4069", "3", "2014-10-26 20:00:00", "96.54.205.189", "2664");
INSERT INTO `wp_rg_form_view` VALUES("4070", "6", "2014-10-26 20:00:00", "96.54.205.189", "1304");
INSERT INTO `wp_rg_form_view` VALUES("4071", "3", "2014-10-26 21:00:05", "66.249.79.84", "2762");
INSERT INTO `wp_rg_form_view` VALUES("4072", "6", "2014-10-26 21:00:05", "66.249.79.84", "1349");
INSERT INTO `wp_rg_form_view` VALUES("4073", "1", "2014-10-26 21:52:32", "197.160.170.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("4074", "6", "2014-10-26 22:00:00", "66.249.79.84", "1345");
INSERT INTO `wp_rg_form_view` VALUES("4075", "3", "2014-10-26 22:00:00", "66.249.79.84", "2740");
INSERT INTO `wp_rg_form_view` VALUES("4076", "3", "2014-10-26 23:00:05", "66.249.79.92", "2570");
INSERT INTO `wp_rg_form_view` VALUES("4077", "6", "2014-10-26 23:00:07", "66.249.79.92", "1256");
INSERT INTO `wp_rg_form_view` VALUES("4078", "3", "2014-10-27 00:00:01", "66.249.79.84", "2832");
INSERT INTO `wp_rg_form_view` VALUES("4079", "6", "2014-10-27 00:00:01", "66.249.79.84", "1396");
INSERT INTO `wp_rg_form_view` VALUES("4080", "3", "2014-10-27 01:00:01", "66.249.79.92", "2722");
INSERT INTO `wp_rg_form_view` VALUES("4081", "6", "2014-10-27 01:00:01", "66.249.79.92", "1344");
INSERT INTO `wp_rg_form_view` VALUES("4082", "3", "2014-10-27 02:00:00", "66.249.79.76", "2490");
INSERT INTO `wp_rg_form_view` VALUES("4083", "6", "2014-10-27 02:00:00", "66.249.79.76", "1222");
INSERT INTO `wp_rg_form_view` VALUES("4084", "3", "2014-10-27 03:00:08", "66.249.79.92", "2760");
INSERT INTO `wp_rg_form_view` VALUES("4085", "6", "2014-10-27 03:00:09", "66.249.79.92", "1352");
INSERT INTO `wp_rg_form_view` VALUES("4086", "3", "2014-10-27 04:00:00", "66.249.79.76", "2196");
INSERT INTO `wp_rg_form_view` VALUES("4087", "6", "2014-10-27 04:00:01", "66.249.79.76", "1082");
INSERT INTO `wp_rg_form_view` VALUES("4088", "3", "2014-10-27 05:22:58", "66.249.79.92", "1214");
INSERT INTO `wp_rg_form_view` VALUES("4089", "6", "2014-10-27 05:22:58", "66.249.79.92", "528");
INSERT INTO `wp_rg_form_view` VALUES("4090", "1", "2014-10-27 05:42:31", "107.170.4.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("4091", "3", "2014-10-27 06:00:01", "107.170.4.221", "5657");
INSERT INTO `wp_rg_form_view` VALUES("4092", "6", "2014-10-27 06:00:01", "107.170.4.221", "2394");
INSERT INTO `wp_rg_form_view` VALUES("4093", "3", "2014-10-27 07:00:01", "66.249.79.84", "2724");
INSERT INTO `wp_rg_form_view` VALUES("4094", "6", "2014-10-27 07:00:01", "66.249.79.84", "1328");
INSERT INTO `wp_rg_form_view` VALUES("4095", "3", "2014-10-27 08:00:03", "66.249.79.92", "2614");
INSERT INTO `wp_rg_form_view` VALUES("4096", "6", "2014-10-27 08:00:04", "66.249.79.92", "1280");
INSERT INTO `wp_rg_form_view` VALUES("4097", "3", "2014-10-27 09:00:02", "66.249.79.84", "2785");
INSERT INTO `wp_rg_form_view` VALUES("4098", "6", "2014-10-27 09:00:03", "66.249.79.84", "1348");
INSERT INTO `wp_rg_form_view` VALUES("4099", "3", "2014-10-27 10:00:00", "66.249.79.92", "2723");
INSERT INTO `wp_rg_form_view` VALUES("4100", "6", "2014-10-27 10:00:04", "66.249.79.84", "1344");
INSERT INTO `wp_rg_form_view` VALUES("4101", "1", "2014-10-27 10:43:39", "183.224.1.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("4102", "3", "2014-10-27 11:00:02", "66.249.79.84", "2849");
INSERT INTO `wp_rg_form_view` VALUES("4103", "6", "2014-10-27 11:00:03", "66.249.79.84", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4104", "3", "2014-10-27 12:00:00", "66.249.79.76", "2763");
INSERT INTO `wp_rg_form_view` VALUES("4105", "6", "2014-10-27 12:00:04", "66.249.79.76", "1360");
INSERT INTO `wp_rg_form_view` VALUES("4106", "3", "2014-10-27 13:00:01", "66.249.79.84", "2786");
INSERT INTO `wp_rg_form_view` VALUES("4107", "6", "2014-10-27 13:00:01", "66.249.79.84", "1370");
INSERT INTO `wp_rg_form_view` VALUES("4108", "3", "2014-10-27 14:00:04", "66.249.79.76", "2710");
INSERT INTO `wp_rg_form_view` VALUES("4109", "6", "2014-10-27 14:00:04", "66.249.79.76", "1328");
INSERT INTO `wp_rg_form_view` VALUES("4110", "3", "2014-10-27 15:00:02", "66.249.79.76", "2788");
INSERT INTO `wp_rg_form_view` VALUES("4111", "6", "2014-10-27 15:00:02", "66.249.79.76", "1364");
INSERT INTO `wp_rg_form_view` VALUES("4112", "1", "2014-10-27 15:49:58", "184.66.21.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("4113", "3", "2014-10-27 16:00:00", "66.249.79.84", "2235");
INSERT INTO `wp_rg_form_view` VALUES("4114", "6", "2014-10-27 16:00:10", "66.249.79.76", "1096");
INSERT INTO `wp_rg_form_view` VALUES("4115", "3", "2014-10-27 17:01:14", "66.249.79.76", "126");
INSERT INTO `wp_rg_form_view` VALUES("4116", "6", "2014-10-27 17:01:15", "66.249.79.76", "62");
INSERT INTO `wp_rg_form_view` VALUES("4117", "3", "2014-10-27 18:00:11", "66.249.79.84", "2208");
INSERT INTO `wp_rg_form_view` VALUES("4118", "6", "2014-10-27 18:00:11", "66.249.79.84", "1078");
INSERT INTO `wp_rg_form_view` VALUES("4119", "3", "2014-10-27 19:00:03", "66.249.79.76", "1922");
INSERT INTO `wp_rg_form_view` VALUES("4120", "6", "2014-10-27 19:00:04", "66.249.79.76", "758");
INSERT INTO `wp_rg_form_view` VALUES("4121", "3", "2014-10-27 20:00:03", "66.249.79.92", "4264");
INSERT INTO `wp_rg_form_view` VALUES("4122", "6", "2014-10-27 20:00:04", "66.249.79.92", "1401");
INSERT INTO `wp_rg_form_view` VALUES("4123", "6", "2014-10-27 21:00:00", "66.249.79.92", "1422");
INSERT INTO `wp_rg_form_view` VALUES("4124", "3", "2014-10-27 21:00:00", "66.249.79.92", "4373");
INSERT INTO `wp_rg_form_view` VALUES("4125", "1", "2014-10-27 21:38:20", "192.81.211.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("4126", "2", "2014-10-27 21:38:20", "192.81.211.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("4127", "6", "2014-10-27 22:00:00", "66.249.79.76", "1412");
INSERT INTO `wp_rg_form_view` VALUES("4128", "3", "2014-10-27 22:00:00", "66.249.79.76", "4307");
INSERT INTO `wp_rg_form_view` VALUES("4129", "3", "2014-10-27 23:00:01", "66.249.79.76", "4318");
INSERT INTO `wp_rg_form_view` VALUES("4130", "6", "2014-10-27 23:00:02", "66.249.79.76", "1420");
INSERT INTO `wp_rg_form_view` VALUES("4131", "3", "2014-10-28 00:00:00", "66.249.79.76", "4526");
INSERT INTO `wp_rg_form_view` VALUES("4132", "6", "2014-10-28 00:00:02", "66.249.79.92", "1483");
INSERT INTO `wp_rg_form_view` VALUES("4133", "6", "2014-10-28 01:00:00", "66.249.79.92", "1347");
INSERT INTO `wp_rg_form_view` VALUES("4134", "3", "2014-10-28 01:00:00", "66.249.79.92", "4104");
INSERT INTO `wp_rg_form_view` VALUES("4135", "3", "2014-10-28 02:00:00", "66.249.79.92", "3594");
INSERT INTO `wp_rg_form_view` VALUES("4136", "6", "2014-10-28 02:00:00", "66.249.79.92", "1182");
INSERT INTO `wp_rg_form_view` VALUES("4137", "3", "2014-10-28 03:00:02", "66.249.79.92", "3676");
INSERT INTO `wp_rg_form_view` VALUES("4138", "6", "2014-10-28 03:00:02", "66.249.79.92", "1212");
INSERT INTO `wp_rg_form_view` VALUES("4139", "3", "2014-10-28 04:00:13", "202.46.62.169", "3698");
INSERT INTO `wp_rg_form_view` VALUES("4140", "6", "2014-10-28 04:00:13", "202.46.62.169", "1212");
INSERT INTO `wp_rg_form_view` VALUES("4141", "3", "2014-10-28 05:00:17", "66.249.79.92", "562");
INSERT INTO `wp_rg_form_view` VALUES("4142", "6", "2014-10-28 05:00:18", "66.249.79.92", "184");
INSERT INTO `wp_rg_form_view` VALUES("4143", "3", "2014-10-28 06:00:00", "66.249.79.84", "3923");
INSERT INTO `wp_rg_form_view` VALUES("4144", "6", "2014-10-28 06:00:00", "66.249.79.84", "1286");
INSERT INTO `wp_rg_form_view` VALUES("4145", "3", "2014-10-28 07:00:01", "66.249.79.92", "4067");
INSERT INTO `wp_rg_form_view` VALUES("4146", "6", "2014-10-28 07:00:02", "66.249.79.92", "1342");
INSERT INTO `wp_rg_form_view` VALUES("4147", "3", "2014-10-28 08:00:00", "66.249.79.92", "3879");
INSERT INTO `wp_rg_form_view` VALUES("4148", "6", "2014-10-28 08:00:05", "66.249.79.92", "1278");
INSERT INTO `wp_rg_form_view` VALUES("4149", "2", "2014-10-28 08:22:03", "76.164.194.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("4150", "3", "2014-10-28 09:00:00", "66.249.79.92", "3581");
INSERT INTO `wp_rg_form_view` VALUES("4151", "6", "2014-10-28 09:00:01", "66.249.79.92", "1174");
INSERT INTO `wp_rg_form_view` VALUES("4152", "3", "2014-10-28 10:00:00", "66.249.79.84", "4285");
INSERT INTO `wp_rg_form_view` VALUES("4153", "6", "2014-10-28 10:00:00", "66.249.79.84", "1420");
INSERT INTO `wp_rg_form_view` VALUES("4154", "3", "2014-10-28 11:00:00", "66.249.79.84", "4266");
INSERT INTO `wp_rg_form_view` VALUES("4155", "6", "2014-10-28 11:00:02", "66.249.79.76", "1406");
INSERT INTO `wp_rg_form_view` VALUES("4156", "3", "2014-10-28 12:00:01", "66.249.79.92", "4378");
INSERT INTO `wp_rg_form_view` VALUES("4157", "6", "2014-10-28 12:00:01", "66.249.79.92", "1437");
INSERT INTO `wp_rg_form_view` VALUES("4158", "1", "2014-10-28 12:51:59", "64.132.142.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("4159", "2", "2014-10-28 12:52:10", "64.132.142.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("4160", "3", "2014-10-28 13:00:00", "66.249.79.92", "4152");
INSERT INTO `wp_rg_form_view` VALUES("4161", "6", "2014-10-28 13:00:00", "66.249.79.92", "1368");
INSERT INTO `wp_rg_form_view` VALUES("4162", "3", "2014-10-28 14:00:04", "66.249.79.92", "4014");
INSERT INTO `wp_rg_form_view` VALUES("4163", "6", "2014-10-28 14:00:04", "66.249.79.92", "1319");
INSERT INTO `wp_rg_form_view` VALUES("4164", "6", "2014-10-28 15:00:00", "66.249.79.84", "1227");
INSERT INTO `wp_rg_form_view` VALUES("4165", "3", "2014-10-28 15:00:00", "66.249.79.84", "3709");
INSERT INTO `wp_rg_form_view` VALUES("4166", "1", "2014-10-28 15:29:34", "158.85.89.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("4167", "3", "2014-10-28 16:00:04", "66.249.79.76", "2317");
INSERT INTO `wp_rg_form_view` VALUES("4168", "6", "2014-10-28 16:00:05", "66.249.79.76", "766");
INSERT INTO `wp_rg_form_view` VALUES("4169", "2", "2014-10-28 16:36:40", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("4170", "3", "2014-10-28 17:01:06", "66.249.79.84", "1644");
INSERT INTO `wp_rg_form_view` VALUES("4171", "6", "2014-10-28 17:01:07", "66.249.79.84", "540");
INSERT INTO `wp_rg_form_view` VALUES("4172", "3", "2014-10-28 18:00:03", "66.249.79.84", "4046");
INSERT INTO `wp_rg_form_view` VALUES("4173", "6", "2014-10-28 18:00:05", "66.249.79.84", "1334");
INSERT INTO `wp_rg_form_view` VALUES("4174", "3", "2014-10-28 19:00:03", "66.249.79.76", "3992");
INSERT INTO `wp_rg_form_view` VALUES("4175", "6", "2014-10-28 19:00:03", "66.249.79.76", "1324");
INSERT INTO `wp_rg_form_view` VALUES("4176", "3", "2014-10-28 20:00:00", "66.249.79.76", "4206");
INSERT INTO `wp_rg_form_view` VALUES("4177", "6", "2014-10-28 20:00:04", "66.249.79.92", "1391");
INSERT INTO `wp_rg_form_view` VALUES("4178", "6", "2014-10-28 21:00:00", "66.249.79.92", "1457");
INSERT INTO `wp_rg_form_view` VALUES("4179", "3", "2014-10-28 21:00:00", "66.249.79.92", "4425");
INSERT INTO `wp_rg_form_view` VALUES("4180", "3", "2014-10-28 22:00:00", "66.249.79.92", "3551");
INSERT INTO `wp_rg_form_view` VALUES("4181", "6", "2014-10-28 22:00:10", "66.249.79.84", "1178");
INSERT INTO `wp_rg_form_view` VALUES("4182", "3", "2014-10-28 23:00:02", "66.249.79.84", "3954");
INSERT INTO `wp_rg_form_view` VALUES("4183", "6", "2014-10-28 23:00:02", "66.249.79.84", "1308");
INSERT INTO `wp_rg_form_view` VALUES("4184", "3", "2014-10-29 00:00:00", "66.249.79.84", "4284");
INSERT INTO `wp_rg_form_view` VALUES("4185", "6", "2014-10-29 00:00:01", "66.249.79.84", "1422");
INSERT INTO `wp_rg_form_view` VALUES("4186", "1", "2014-10-29 00:12:14", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("4187", "3", "2014-10-29 01:00:03", "66.249.79.84", "3784");
INSERT INTO `wp_rg_form_view` VALUES("4188", "6", "2014-10-29 01:00:03", "66.249.79.84", "1248");
INSERT INTO `wp_rg_form_view` VALUES("4189", "3", "2014-10-29 02:00:01", "66.249.79.84", "4356");
INSERT INTO `wp_rg_form_view` VALUES("4190", "6", "2014-10-29 02:00:01", "66.249.79.84", "1441");
INSERT INTO `wp_rg_form_view` VALUES("4191", "6", "2014-10-29 03:00:00", "66.249.79.92", "1467");
INSERT INTO `wp_rg_form_view` VALUES("4192", "3", "2014-10-29 03:00:00", "66.249.79.92", "4447");
INSERT INTO `wp_rg_form_view` VALUES("4193", "3", "2014-10-29 04:00:04", "66.249.79.92", "1600");
INSERT INTO `wp_rg_form_view` VALUES("4194", "6", "2014-10-29 04:00:05", "66.249.79.92", "530");
INSERT INTO `wp_rg_form_view` VALUES("4195", "3", "2014-10-29 05:01:08", "66.249.79.92", "1156");
INSERT INTO `wp_rg_form_view` VALUES("4196", "6", "2014-10-29 05:01:08", "66.249.79.92", "384");
INSERT INTO `wp_rg_form_view` VALUES("4197", "1", "2014-10-29 05:09:04", "199.168.141.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("4198", "3", "2014-10-29 06:00:03", "66.249.79.84", "4086");
INSERT INTO `wp_rg_form_view` VALUES("4199", "6", "2014-10-29 06:00:03", "66.249.79.84", "1346");
INSERT INTO `wp_rg_form_view` VALUES("4200", "3", "2014-10-29 07:00:00", "66.249.79.84", "4144");
INSERT INTO `wp_rg_form_view` VALUES("4201", "6", "2014-10-29 07:00:00", "66.249.79.84", "1366");
INSERT INTO `wp_rg_form_view` VALUES("4202", "3", "2014-10-29 08:00:04", "66.249.79.92", "3914");
INSERT INTO `wp_rg_form_view` VALUES("4203", "6", "2014-10-29 08:00:05", "66.249.79.92", "1292");
INSERT INTO `wp_rg_form_view` VALUES("4204", "3", "2014-10-29 09:00:08", "66.249.79.84", "3875");
INSERT INTO `wp_rg_form_view` VALUES("4205", "6", "2014-10-29 09:00:08", "66.249.79.84", "1276");
INSERT INTO `wp_rg_form_view` VALUES("4206", "3", "2014-10-29 10:00:00", "66.249.79.76", "4166");
INSERT INTO `wp_rg_form_view` VALUES("4207", "6", "2014-10-29 10:00:03", "192.240.220.29", "1374");
INSERT INTO `wp_rg_form_view` VALUES("4208", "3", "2014-10-29 11:00:08", "66.249.79.92", "4229");
INSERT INTO `wp_rg_form_view` VALUES("4209", "6", "2014-10-29 11:00:09", "66.249.79.92", "1390");
INSERT INTO `wp_rg_form_view` VALUES("4210", "3", "2014-10-29 12:00:00", "66.249.79.76", "4262");
INSERT INTO `wp_rg_form_view` VALUES("4211", "6", "2014-10-29 12:00:04", "66.249.79.84", "1404");
INSERT INTO `wp_rg_form_view` VALUES("4212", "3", "2014-10-29 13:00:00", "66.249.79.76", "4229");
INSERT INTO `wp_rg_form_view` VALUES("4213", "6", "2014-10-29 13:00:04", "66.249.79.92", "1394");
INSERT INTO `wp_rg_form_view` VALUES("4214", "3", "2014-10-29 14:00:03", "66.249.79.84", "4258");
INSERT INTO `wp_rg_form_view` VALUES("4215", "6", "2014-10-29 14:00:03", "66.249.79.84", "1404");
INSERT INTO `wp_rg_form_view` VALUES("4216", "3", "2014-10-29 15:00:01", "66.249.79.76", "4176");
INSERT INTO `wp_rg_form_view` VALUES("4217", "6", "2014-10-29 15:00:02", "66.249.79.76", "1374");
INSERT INTO `wp_rg_form_view` VALUES("4218", "3", "2014-10-29 16:00:00", "66.249.79.84", "1280");
INSERT INTO `wp_rg_form_view` VALUES("4219", "6", "2014-10-29 16:00:00", "66.249.79.84", "424");
INSERT INTO `wp_rg_form_view` VALUES("4220", "3", "2014-10-29 17:01:38", "66.249.79.76", "2014");
INSERT INTO `wp_rg_form_view` VALUES("4221", "6", "2014-10-29 17:01:39", "66.249.79.76", "666");
INSERT INTO `wp_rg_form_view` VALUES("4222", "3", "2014-10-29 18:00:00", "66.249.79.84", "3923");
INSERT INTO `wp_rg_form_view` VALUES("4223", "6", "2014-10-29 18:00:01", "66.249.79.84", "1298");
INSERT INTO `wp_rg_form_view` VALUES("4224", "3", "2014-10-29 19:00:00", "66.249.79.84", "3881");
INSERT INTO `wp_rg_form_view` VALUES("4225", "6", "2014-10-29 19:00:00", "66.249.79.84", "1286");
INSERT INTO `wp_rg_form_view` VALUES("4226", "3", "2014-10-29 20:00:00", "66.249.79.92", "3980");
INSERT INTO `wp_rg_form_view` VALUES("4227", "6", "2014-10-29 20:00:04", "66.249.79.84", "1316");
INSERT INTO `wp_rg_form_view` VALUES("4228", "3", "2014-10-29 21:00:00", "66.249.79.92", "4107");
INSERT INTO `wp_rg_form_view` VALUES("4229", "6", "2014-10-29 21:00:04", "66.249.79.92", "1356");
INSERT INTO `wp_rg_form_view` VALUES("4230", "1", "2014-10-29 21:58:50", "24.108.130.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("4231", "3", "2014-10-29 22:00:00", "66.249.79.76", "3942");
INSERT INTO `wp_rg_form_view` VALUES("4232", "6", "2014-10-29 22:00:02", "66.249.79.84", "1304");
INSERT INTO `wp_rg_form_view` VALUES("4233", "1", "2014-10-29 22:00:23", "24.108.130.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("4234", "3", "2014-10-29 23:00:00", "66.249.79.76", "3957");
INSERT INTO `wp_rg_form_view` VALUES("4235", "6", "2014-10-29 23:00:00", "66.249.79.76", "1314");
INSERT INTO `wp_rg_form_view` VALUES("4236", "3", "2014-10-30 00:00:00", "66.249.79.92", "4157");
INSERT INTO `wp_rg_form_view` VALUES("4237", "6", "2014-10-30 00:00:01", "66.249.79.92", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4238", "3", "2014-10-30 01:00:00", "66.249.79.76", "4176");
INSERT INTO `wp_rg_form_view` VALUES("4239", "6", "2014-10-30 01:00:01", "66.249.79.76", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4240", "3", "2014-10-30 02:00:05", "66.249.79.92", "4098");
INSERT INTO `wp_rg_form_view` VALUES("4241", "6", "2014-10-30 02:00:06", "66.249.79.92", "1352");
INSERT INTO `wp_rg_form_view` VALUES("4242", "3", "2014-10-30 03:00:02", "66.249.79.76", "3570");
INSERT INTO `wp_rg_form_view` VALUES("4243", "6", "2014-10-30 03:00:02", "66.249.79.76", "1184");
INSERT INTO `wp_rg_form_view` VALUES("4244", "6", "2014-10-30 04:02:29", "100.43.85.24", "78");
INSERT INTO `wp_rg_form_view` VALUES("4245", "3", "2014-10-30 04:02:30", "100.43.85.24", "246");
INSERT INTO `wp_rg_form_view` VALUES("4246", "1", "2014-10-30 04:25:25", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("4247", "3", "2014-10-30 05:02:38", "66.249.79.84", "1360");
INSERT INTO `wp_rg_form_view` VALUES("4248", "6", "2014-10-30 05:02:38", "66.249.79.84", "450");
INSERT INTO `wp_rg_form_view` VALUES("4249", "3", "2014-10-30 06:00:03", "66.249.79.84", "3925");
INSERT INTO `wp_rg_form_view` VALUES("4250", "6", "2014-10-30 06:00:03", "66.249.79.84", "1288");
INSERT INTO `wp_rg_form_view` VALUES("4251", "3", "2014-10-30 07:00:02", "66.249.79.84", "4353");
INSERT INTO `wp_rg_form_view` VALUES("4252", "6", "2014-10-30 07:00:03", "66.249.79.84", "1447");
INSERT INTO `wp_rg_form_view` VALUES("4253", "2", "2014-10-30 07:55:02", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("4254", "3", "2014-10-30 08:00:00", "66.249.79.76", "4229");
INSERT INTO `wp_rg_form_view` VALUES("4255", "6", "2014-10-30 08:00:00", "66.249.79.76", "1398");
INSERT INTO `wp_rg_form_view` VALUES("4256", "3", "2014-10-30 09:00:00", "66.249.79.92", "4241");
INSERT INTO `wp_rg_form_view` VALUES("4257", "6", "2014-10-30 09:00:00", "66.249.79.92", "1390");
INSERT INTO `wp_rg_form_view` VALUES("4258", "3", "2014-10-30 10:00:00", "66.249.79.92", "4384");
INSERT INTO `wp_rg_form_view` VALUES("4259", "6", "2014-10-30 10:00:00", "66.249.79.92", "1448");
INSERT INTO `wp_rg_form_view` VALUES("4260", "3", "2014-10-30 11:00:01", "66.249.79.76", "4312");
INSERT INTO `wp_rg_form_view` VALUES("4261", "6", "2014-10-30 11:00:02", "66.249.79.76", "1418");
INSERT INTO `wp_rg_form_view` VALUES("4262", "3", "2014-10-30 12:00:04", "66.249.79.92", "4213");
INSERT INTO `wp_rg_form_view` VALUES("4263", "6", "2014-10-30 12:00:05", "66.249.79.92", "1392");
INSERT INTO `wp_rg_form_view` VALUES("4264", "3", "2014-10-30 13:00:00", "66.249.79.84", "4219");
INSERT INTO `wp_rg_form_view` VALUES("4265", "6", "2014-10-30 13:00:03", "66.249.79.84", "1390");
INSERT INTO `wp_rg_form_view` VALUES("4266", "3", "2014-10-30 14:00:00", "66.249.79.76", "4228");
INSERT INTO `wp_rg_form_view` VALUES("4267", "6", "2014-10-30 14:00:01", "66.249.79.76", "1396");
INSERT INTO `wp_rg_form_view` VALUES("4268", "3", "2014-10-30 15:00:02", "66.249.79.84", "3662");
INSERT INTO `wp_rg_form_view` VALUES("4269", "6", "2014-10-30 15:00:03", "66.249.79.84", "1204");
INSERT INTO `wp_rg_form_view` VALUES("4270", "3", "2014-10-30 16:00:25", "157.55.39.194", "134");
INSERT INTO `wp_rg_form_view` VALUES("4271", "6", "2014-10-30 16:00:27", "157.55.39.194", "44");
INSERT INTO `wp_rg_form_view` VALUES("4272", "2", "2014-10-30 16:11:34", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("4273", "3", "2014-10-30 17:01:54", "66.249.79.84", "518");
INSERT INTO `wp_rg_form_view` VALUES("4274", "6", "2014-10-30 17:01:54", "66.249.79.84", "176");
INSERT INTO `wp_rg_form_view` VALUES("4275", "3", "2014-10-30 18:00:16", "66.249.79.76", "3898");
INSERT INTO `wp_rg_form_view` VALUES("4276", "6", "2014-10-30 18:00:17", "66.249.79.76", "1288");
INSERT INTO `wp_rg_form_view` VALUES("4277", "3", "2014-10-30 19:00:00", "157.55.39.194", "4070");
INSERT INTO `wp_rg_form_view` VALUES("4278", "6", "2014-10-30 19:00:01", "66.249.79.84", "1334");
INSERT INTO `wp_rg_form_view` VALUES("4279", "3", "2014-10-30 20:00:01", "66.249.79.84", "4268");
INSERT INTO `wp_rg_form_view` VALUES("4280", "6", "2014-10-30 20:00:02", "66.249.79.84", "1409");
INSERT INTO `wp_rg_form_view` VALUES("4281", "6", "2014-10-30 21:00:00", "66.249.79.84", "1241");
INSERT INTO `wp_rg_form_view` VALUES("4282", "3", "2014-10-30 21:00:00", "66.249.79.84", "3759");
INSERT INTO `wp_rg_form_view` VALUES("4283", "3", "2014-10-30 22:00:01", "66.249.79.84", "4330");
INSERT INTO `wp_rg_form_view` VALUES("4284", "6", "2014-10-30 22:00:01", "66.249.79.84", "1424");
INSERT INTO `wp_rg_form_view` VALUES("4285", "3", "2014-10-30 23:00:01", "66.249.79.92", "3502");
INSERT INTO `wp_rg_form_view` VALUES("4286", "6", "2014-10-30 23:00:01", "66.249.79.92", "1394");
INSERT INTO `wp_rg_form_view` VALUES("4287", "6", "2014-10-31 00:00:01", "66.249.79.76", "1440");
INSERT INTO `wp_rg_form_view` VALUES("4288", "3", "2014-10-31 00:00:02", "66.249.79.76", "2938");
INSERT INTO `wp_rg_form_view` VALUES("4289", "6", "2014-10-31 01:00:09", "66.249.79.92", "1420");
INSERT INTO `wp_rg_form_view` VALUES("4290", "3", "2014-10-31 01:00:09", "66.249.79.92", "2892");
INSERT INTO `wp_rg_form_view` VALUES("4291", "6", "2014-10-31 02:00:02", "66.249.79.92", "1334");
INSERT INTO `wp_rg_form_view` VALUES("4292", "3", "2014-10-31 02:00:02", "66.249.79.92", "2704");
INSERT INTO `wp_rg_form_view` VALUES("4293", "6", "2014-10-31 03:00:04", "66.249.79.76", "912");
INSERT INTO `wp_rg_form_view` VALUES("4294", "3", "2014-10-31 03:00:04", "66.249.79.76", "1866");
INSERT INTO `wp_rg_form_view` VALUES("4295", "6", "2014-10-31 04:04:59", "66.249.79.84", "70");
INSERT INTO `wp_rg_form_view` VALUES("4296", "3", "2014-10-31 04:05:00", "66.249.79.84", "152");
INSERT INTO `wp_rg_form_view` VALUES("4297", "6", "2014-10-31 05:00:21", "66.249.79.92", "982");
INSERT INTO `wp_rg_form_view` VALUES("4298", "3", "2014-10-31 05:00:21", "66.249.79.92", "2014");
INSERT INTO `wp_rg_form_view` VALUES("4299", "6", "2014-10-31 06:00:09", "66.249.79.76", "1296");
INSERT INTO `wp_rg_form_view` VALUES("4300", "3", "2014-10-31 06:00:10", "66.249.79.76", "2624");
INSERT INTO `wp_rg_form_view` VALUES("4301", "6", "2014-10-31 07:00:02", "66.249.79.76", "1327");
INSERT INTO `wp_rg_form_view` VALUES("4302", "3", "2014-10-31 07:00:03", "66.249.79.76", "2729");
INSERT INTO `wp_rg_form_view` VALUES("4303", "3", "2014-10-31 08:00:00", "66.249.79.76", "2732");
INSERT INTO `wp_rg_form_view` VALUES("4304", "6", "2014-10-31 08:00:05", "66.249.79.92", "1332");
INSERT INTO `wp_rg_form_view` VALUES("4305", "6", "2014-10-31 09:00:01", "66.249.79.84", "1328");
INSERT INTO `wp_rg_form_view` VALUES("4306", "3", "2014-10-31 09:00:01", "66.249.79.84", "2708");
INSERT INTO `wp_rg_form_view` VALUES("4307", "6", "2014-10-31 10:00:05", "66.249.79.84", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4308", "3", "2014-10-31 10:00:05", "66.249.79.84", "2812");
INSERT INTO `wp_rg_form_view` VALUES("4309", "3", "2014-10-31 11:00:00", "66.249.79.76", "2760");
INSERT INTO `wp_rg_form_view` VALUES("4310", "6", "2014-10-31 11:00:10", "66.249.79.92", "1362");
INSERT INTO `wp_rg_form_view` VALUES("4311", "6", "2014-10-31 12:00:01", "66.249.79.92", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4312", "3", "2014-10-31 12:00:01", "66.249.79.92", "2820");
INSERT INTO `wp_rg_form_view` VALUES("4313", "6", "2014-10-31 13:00:02", "66.249.79.76", "1362");
INSERT INTO `wp_rg_form_view` VALUES("4314", "3", "2014-10-31 13:00:03", "66.249.79.76", "2798");
INSERT INTO `wp_rg_form_view` VALUES("4315", "6", "2014-10-31 14:00:02", "66.249.79.84", "1361");
INSERT INTO `wp_rg_form_view` VALUES("4316", "3", "2014-10-31 14:00:02", "66.249.79.84", "2774");
INSERT INTO `wp_rg_form_view` VALUES("4317", "3", "2014-10-31 15:00:04", "66.249.79.92", "1834");
INSERT INTO `wp_rg_form_view` VALUES("4318", "6", "2014-10-31 15:00:05", "66.249.79.92", "898");
INSERT INTO `wp_rg_form_view` VALUES("4319", "6", "2014-10-31 16:03:21", "66.249.79.84", "72");
INSERT INTO `wp_rg_form_view` VALUES("4320", "3", "2014-10-31 16:03:29", "66.249.79.84", "144");
INSERT INTO `wp_rg_form_view` VALUES("4321", "1", "2014-10-31 16:28:54", "198.23.216.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("4322", "6", "2014-10-31 17:00:06", "66.249.79.84", "538");
INSERT INTO `wp_rg_form_view` VALUES("4323", "3", "2014-10-31 17:00:06", "66.249.79.84", "1086");
INSERT INTO `wp_rg_form_view` VALUES("4324", "6", "2014-10-31 18:00:14", "66.249.79.76", "1150");
INSERT INTO `wp_rg_form_view` VALUES("4325", "3", "2014-10-31 18:00:14", "66.249.79.76", "2340");
INSERT INTO `wp_rg_form_view` VALUES("4326", "1", "2014-10-31 18:19:15", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("4327", "6", "2014-10-31 19:00:02", "66.249.79.92", "1170");
INSERT INTO `wp_rg_form_view` VALUES("4328", "3", "2014-10-31 19:00:03", "66.249.79.92", "2373");
INSERT INTO `wp_rg_form_view` VALUES("4329", "6", "2014-10-31 20:00:00", "66.249.79.84", "1320");
INSERT INTO `wp_rg_form_view` VALUES("4330", "3", "2014-10-31 20:00:01", "66.249.79.84", "2692");
INSERT INTO `wp_rg_form_view` VALUES("4331", "6", "2014-10-31 21:00:03", "66.249.79.84", "1186");
INSERT INTO `wp_rg_form_view` VALUES("4332", "3", "2014-10-31 21:00:04", "66.249.79.84", "2426");
INSERT INTO `wp_rg_form_view` VALUES("4333", "6", "2014-10-31 22:00:01", "66.249.79.84", "1378");
INSERT INTO `wp_rg_form_view` VALUES("4334", "3", "2014-10-31 22:00:01", "66.249.79.84", "2824");
INSERT INTO `wp_rg_form_view` VALUES("4335", "6", "2014-10-31 23:00:02", "66.249.79.84", "1414");
INSERT INTO `wp_rg_form_view` VALUES("4336", "3", "2014-10-31 23:00:02", "66.249.79.84", "2872");
INSERT INTO `wp_rg_form_view` VALUES("4337", "6", "2014-11-01 00:00:03", "66.249.79.92", "1406");
INSERT INTO `wp_rg_form_view` VALUES("4338", "3", "2014-11-01 00:00:04", "66.249.79.92", "2840");
INSERT INTO `wp_rg_form_view` VALUES("4339", "6", "2014-11-01 01:00:00", "66.249.79.84", "1108");
INSERT INTO `wp_rg_form_view` VALUES("4340", "3", "2014-11-01 01:00:00", "66.249.79.84", "2294");
INSERT INTO `wp_rg_form_view` VALUES("4341", "6", "2014-11-01 02:00:03", "66.249.79.76", "1362");
INSERT INTO `wp_rg_form_view` VALUES("4342", "3", "2014-11-01 02:00:03", "66.249.79.76", "2764");
INSERT INTO `wp_rg_form_view` VALUES("4343", "1", "2014-11-01 02:13:23", "192.99.141.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("4344", "6", "2014-11-01 03:00:00", "66.249.79.84", "1448");
INSERT INTO `wp_rg_form_view` VALUES("4345", "3", "2014-11-01 03:00:00", "66.249.79.84", "2963");
INSERT INTO `wp_rg_form_view` VALUES("4346", "3", "2014-11-01 04:00:21", "202.46.48.153", "230");
INSERT INTO `wp_rg_form_view` VALUES("4347", "6", "2014-11-01 04:00:22", "202.46.48.153", "112");
INSERT INTO `wp_rg_form_view` VALUES("4348", "6", "2014-11-01 05:03:15", "66.249.79.84", "974");
INSERT INTO `wp_rg_form_view` VALUES("4349", "3", "2014-11-01 05:03:15", "66.249.79.84", "1997");
INSERT INTO `wp_rg_form_view` VALUES("4350", "3", "2014-11-01 06:00:00", "66.249.79.92", "2545");
INSERT INTO `wp_rg_form_view` VALUES("4351", "6", "2014-11-01 06:00:05", "66.249.79.84", "1244");
INSERT INTO `wp_rg_form_view` VALUES("4352", "1", "2014-11-01 06:12:56", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("4353", "6", "2014-11-01 07:00:03", "66.249.79.84", "1342");
INSERT INTO `wp_rg_form_view` VALUES("4354", "3", "2014-11-01 07:00:03", "66.249.79.84", "2748");
INSERT INTO `wp_rg_form_view` VALUES("4355", "3", "2014-11-01 08:00:00", "66.249.79.84", "2480");
INSERT INTO `wp_rg_form_view` VALUES("4356", "6", "2014-11-01 08:00:01", "66.249.79.92", "1204");
INSERT INTO `wp_rg_form_view` VALUES("4357", "6", "2014-11-01 09:00:02", "66.249.79.92", "1212");
INSERT INTO `wp_rg_form_view` VALUES("4358", "3", "2014-11-01 09:00:02", "66.249.79.92", "2488");
INSERT INTO `wp_rg_form_view` VALUES("4359", "6", "2014-11-01 10:00:01", "66.249.79.92", "1508");
INSERT INTO `wp_rg_form_view` VALUES("4360", "3", "2014-11-01 10:00:01", "66.249.79.92", "3079");
INSERT INTO `wp_rg_form_view` VALUES("4361", "6", "2014-11-01 11:00:00", "66.249.79.84", "1546");
INSERT INTO `wp_rg_form_view` VALUES("4362", "3", "2014-11-01 11:00:01", "66.249.79.84", "3144");
INSERT INTO `wp_rg_form_view` VALUES("4363", "1", "2014-11-01 11:59:10", "158.85.89.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("4364", "3", "2014-11-01 12:00:00", "158.85.94.4", "2719");
INSERT INTO `wp_rg_form_view` VALUES("4365", "6", "2014-11-01 12:00:01", "66.249.79.84", "1336");
INSERT INTO `wp_rg_form_view` VALUES("4366", "6", "2014-11-01 13:00:08", "66.249.79.76", "1476");
INSERT INTO `wp_rg_form_view` VALUES("4367", "3", "2014-11-01 13:00:08", "66.249.79.76", "3006");
INSERT INTO `wp_rg_form_view` VALUES("4368", "6", "2014-11-01 14:00:00", "66.249.79.84", "1523");
INSERT INTO `wp_rg_form_view` VALUES("4369", "3", "2014-11-01 14:00:00", "66.249.79.84", "3081");
INSERT INTO `wp_rg_form_view` VALUES("4370", "6", "2014-11-01 15:00:02", "66.249.79.76", "742");
INSERT INTO `wp_rg_form_view` VALUES("4371", "3", "2014-11-01 15:00:03", "66.249.79.76", "1504");
INSERT INTO `wp_rg_form_view` VALUES("4372", "6", "2014-11-01 16:01:30", "66.249.79.76", "231");
INSERT INTO `wp_rg_form_view` VALUES("4373", "3", "2014-11-01 16:01:30", "66.249.79.76", "483");
INSERT INTO `wp_rg_form_view` VALUES("4374", "1", "2014-11-01 16:23:08", "37.77.122.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("4375", "2", "2014-11-01 16:23:25", "37.77.122.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("4376", "6", "2014-11-01 17:00:01", "66.249.79.84", "1220");
INSERT INTO `wp_rg_form_view` VALUES("4377", "3", "2014-11-01 17:00:02", "66.249.79.84", "2488");
INSERT INTO `wp_rg_form_view` VALUES("4378", "6", "2014-11-01 18:00:02", "66.249.79.76", "1364");
INSERT INTO `wp_rg_form_view` VALUES("4379", "3", "2014-11-01 18:00:02", "66.249.79.76", "2787");
INSERT INTO `wp_rg_form_view` VALUES("4380", "3", "2014-11-01 19:00:00", "66.249.79.76", "2712");
INSERT INTO `wp_rg_form_view` VALUES("4381", "6", "2014-11-01 19:00:04", "66.249.79.84", "1326");
INSERT INTO `wp_rg_form_view` VALUES("4382", "6", "2014-11-01 20:00:00", "66.249.79.92", "1388");
INSERT INTO `wp_rg_form_view` VALUES("4383", "3", "2014-11-01 20:00:00", "66.249.79.92", "2821");
INSERT INTO `wp_rg_form_view` VALUES("4384", "3", "2014-11-01 21:00:00", "66.249.79.76", "2955");
INSERT INTO `wp_rg_form_view` VALUES("4385", "6", "2014-11-01 21:00:03", "66.249.79.76", "1450");
INSERT INTO `wp_rg_form_view` VALUES("4386", "6", "2014-11-01 22:00:00", "66.249.79.84", "1414");
INSERT INTO `wp_rg_form_view` VALUES("4387", "3", "2014-11-01 22:00:01", "66.249.79.84", "2870");
INSERT INTO `wp_rg_form_view` VALUES("4388", "6", "2014-11-01 23:00:25", "66.249.79.76", "682");
INSERT INTO `wp_rg_form_view` VALUES("4389", "3", "2014-11-01 23:00:25", "66.249.79.76", "1391");
INSERT INTO `wp_rg_form_view` VALUES("4390", "6", "2014-11-02 00:04:32", "66.249.79.92", "74");
INSERT INTO `wp_rg_form_view` VALUES("4391", "3", "2014-11-02 00:04:32", "66.249.79.92", "160");
INSERT INTO `wp_rg_form_view` VALUES("4392", "6", "2014-11-02 01:00:00", "158.85.89.7", "96");
INSERT INTO `wp_rg_form_view` VALUES("4393", "3", "2014-11-02 01:00:00", "158.85.89.7", "197");
INSERT INTO `wp_rg_form_view` VALUES("4394", "1", "2014-11-02 01:01:42", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("4395", "6", "2014-11-02 02:00:23", "66.249.79.84", "86");
INSERT INTO `wp_rg_form_view` VALUES("4396", "3", "2014-11-02 02:00:23", "66.249.79.84", "184");
INSERT INTO `wp_rg_form_view` VALUES("4397", "3", "2014-11-02 03:00:06", "66.249.79.92", "178");
INSERT INTO `wp_rg_form_view` VALUES("4398", "6", "2014-11-02 03:00:06", "66.249.79.92", "86");
INSERT INTO `wp_rg_form_view` VALUES("4399", "3", "2014-11-02 04:00:04", "91.200.12.8", "86");
INSERT INTO `wp_rg_form_view` VALUES("4400", "6", "2014-11-02 04:00:04", "91.200.12.8", "38");
INSERT INTO `wp_rg_form_view` VALUES("4401", "6", "2014-11-02 05:04:09", "66.249.79.84", "48");
INSERT INTO `wp_rg_form_view` VALUES("4402", "3", "2014-11-02 05:04:09", "66.249.79.84", "106");
INSERT INTO `wp_rg_form_view` VALUES("4403", "1", "2014-11-02 05:26:31", "171.213.23.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("4404", "3", "2014-11-02 06:05:51", "104.194.28.146", "46");
INSERT INTO `wp_rg_form_view` VALUES("4405", "6", "2014-11-02 06:05:52", "104.194.28.146", "20");
INSERT INTO `wp_rg_form_view` VALUES("4406", "6", "2014-11-02 07:14:16", "157.55.39.185", "24");
INSERT INTO `wp_rg_form_view` VALUES("4407", "3", "2014-11-02 07:14:16", "157.55.39.185", "52");
INSERT INTO `wp_rg_form_view` VALUES("4408", "3", "2014-11-02 08:07:21", "157.55.39.34", "138");
INSERT INTO `wp_rg_form_view` VALUES("4409", "6", "2014-11-02 08:07:22", "157.55.39.34", "62");
INSERT INTO `wp_rg_form_view` VALUES("4410", "3", "2014-11-02 09:00:00", "157.55.39.185", "116");
INSERT INTO `wp_rg_form_view` VALUES("4411", "6", "2014-11-02 09:00:01", "157.55.39.185", "56");
INSERT INTO `wp_rg_form_view` VALUES("4412", "1", "2014-11-02 09:06:01", "54.68.30.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("4413", "6", "2014-11-02 10:01:19", "157.55.39.194", "1196");
INSERT INTO `wp_rg_form_view` VALUES("4414", "3", "2014-11-02 10:01:19", "157.55.39.194", "2424");
INSERT INTO `wp_rg_form_view` VALUES("4415", "6", "2014-11-02 11:00:00", "66.249.79.84", "1618");
INSERT INTO `wp_rg_form_view` VALUES("4416", "3", "2014-11-02 11:00:00", "66.249.79.84", "3278");
INSERT INTO `wp_rg_form_view` VALUES("4417", "6", "2014-11-02 12:00:00", "66.249.79.76", "1890");
INSERT INTO `wp_rg_form_view` VALUES("4418", "3", "2014-11-02 12:00:01", "66.249.79.76", "3884");
INSERT INTO `wp_rg_form_view` VALUES("4419", "6", "2014-11-02 13:00:01", "66.249.79.84", "1840");
INSERT INTO `wp_rg_form_view` VALUES("4420", "3", "2014-11-02 13:00:01", "66.249.79.84", "3717");
INSERT INTO `wp_rg_form_view` VALUES("4421", "3", "2014-11-02 14:00:00", "66.249.79.76", "3873");
INSERT INTO `wp_rg_form_view` VALUES("4422", "6", "2014-11-02 14:00:01", "66.249.79.76", "1906");
INSERT INTO `wp_rg_form_view` VALUES("4423", "1", "2014-11-02 14:50:53", "171.213.23.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("4424", "6", "2014-11-02 15:00:01", "66.249.79.76", "1774");
INSERT INTO `wp_rg_form_view` VALUES("4425", "3", "2014-11-02 15:00:01", "66.249.79.76", "3588");
INSERT INTO `wp_rg_form_view` VALUES("4426", "6", "2014-11-02 16:00:00", "66.249.79.76", "2022");
INSERT INTO `wp_rg_form_view` VALUES("4427", "3", "2014-11-02 16:00:00", "66.249.79.76", "4140");
INSERT INTO `wp_rg_form_view` VALUES("4428", "1", "2014-11-02 16:42:37", "24.68.153.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("4429", "6", "2014-11-02 17:00:01", "66.249.79.92", "1722");
INSERT INTO `wp_rg_form_view` VALUES("4430", "3", "2014-11-02 17:00:01", "66.249.79.92", "3504");
INSERT INTO `wp_rg_form_view` VALUES("4431", "6", "2014-11-02 18:00:32", "66.249.79.84", "602");
INSERT INTO `wp_rg_form_view` VALUES("4432", "3", "2014-11-02 18:00:33", "66.249.79.84", "1214");
INSERT INTO `wp_rg_form_view` VALUES("4433", "6", "2014-11-02 19:00:01", "66.249.79.84", "1400");
INSERT INTO `wp_rg_form_view` VALUES("4434", "3", "2014-11-02 19:00:01", "66.249.79.84", "2824");
INSERT INTO `wp_rg_form_view` VALUES("4435", "6", "2014-11-02 20:00:02", "66.249.79.76", "1560");
INSERT INTO `wp_rg_form_view` VALUES("4436", "3", "2014-11-02 20:00:03", "66.249.79.76", "3214");
INSERT INTO `wp_rg_form_view` VALUES("4437", "6", "2014-11-02 21:00:00", "66.249.79.84", "1612");
INSERT INTO `wp_rg_form_view` VALUES("4438", "3", "2014-11-02 21:00:00", "66.249.79.84", "3270");
INSERT INTO `wp_rg_form_view` VALUES("4439", "6", "2014-11-02 22:00:02", "66.249.79.92", "1558");
INSERT INTO `wp_rg_form_view` VALUES("4440", "3", "2014-11-02 22:00:03", "66.249.79.92", "3188");
INSERT INTO `wp_rg_form_view` VALUES("4441", "1", "2014-11-02 22:43:52", "216.13.187.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("4442", "6", "2014-11-02 23:00:00", "66.249.79.76", "1584");
INSERT INTO `wp_rg_form_view` VALUES("4443", "3", "2014-11-02 23:00:00", "66.249.79.76", "3202");
INSERT INTO `wp_rg_form_view` VALUES("4444", "1", "2014-11-02 23:21:41", "198.199.66.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("4445", "2", "2014-11-02 23:21:41", "198.199.66.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("4446", "6", "2014-11-03 00:00:00", "66.249.79.76", "1536");
INSERT INTO `wp_rg_form_view` VALUES("4447", "3", "2014-11-03 00:00:00", "66.249.79.76", "3102");
INSERT INTO `wp_rg_form_view` VALUES("4448", "3", "2014-11-03 01:00:00", "66.249.79.76", "3145");
INSERT INTO `wp_rg_form_view` VALUES("4449", "6", "2014-11-03 01:00:03", "66.249.79.76", "1556");
INSERT INTO `wp_rg_form_view` VALUES("4450", "3", "2014-11-03 02:00:00", "66.249.79.84", "3168");
INSERT INTO `wp_rg_form_view` VALUES("4451", "6", "2014-11-03 02:00:03", "66.249.79.76", "1556");
INSERT INTO `wp_rg_form_view` VALUES("4452", "6", "2014-11-03 03:00:01", "66.249.79.84", "678");
INSERT INTO `wp_rg_form_view` VALUES("4453", "3", "2014-11-03 03:00:02", "66.249.79.84", "1378");
INSERT INTO `wp_rg_form_view` VALUES("4454", "1", "2014-11-03 03:28:41", "202.46.61.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("4455", "6", "2014-11-03 04:01:20", "66.249.79.84", "780");
INSERT INTO `wp_rg_form_view` VALUES("4456", "3", "2014-11-03 04:01:20", "66.249.79.84", "1576");
INSERT INTO `wp_rg_form_view` VALUES("4457", "6", "2014-11-03 05:00:04", "66.249.79.84", "1287");
INSERT INTO `wp_rg_form_view` VALUES("4458", "3", "2014-11-03 05:00:04", "66.249.79.84", "2651");
INSERT INTO `wp_rg_form_view` VALUES("4459", "1", "2014-11-03 05:59:13", "5.39.19.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("4460", "6", "2014-11-03 06:00:04", "66.249.79.76", "1396");
INSERT INTO `wp_rg_form_view` VALUES("4461", "3", "2014-11-03 06:00:05", "66.249.79.76", "2832");
INSERT INTO `wp_rg_form_view` VALUES("4462", "6", "2014-11-03 07:00:02", "66.249.79.76", "1316");
INSERT INTO `wp_rg_form_view` VALUES("4463", "3", "2014-11-03 07:00:02", "66.249.79.76", "2682");
INSERT INTO `wp_rg_form_view` VALUES("4464", "6", "2014-11-03 08:00:00", "66.249.79.76", "1368");
INSERT INTO `wp_rg_form_view` VALUES("4465", "3", "2014-11-03 08:00:00", "66.249.79.76", "2779");
INSERT INTO `wp_rg_form_view` VALUES("4466", "6", "2014-11-03 09:00:09", "66.249.79.92", "1340");
INSERT INTO `wp_rg_form_view` VALUES("4467", "3", "2014-11-03 09:00:10", "66.249.79.92", "2729");
INSERT INTO `wp_rg_form_view` VALUES("4468", "6", "2014-11-03 10:00:06", "66.249.79.92", "1330");
INSERT INTO `wp_rg_form_view` VALUES("4469", "3", "2014-11-03 10:00:07", "66.249.79.92", "2694");
INSERT INTO `wp_rg_form_view` VALUES("4470", "6", "2014-11-03 11:00:03", "66.249.79.92", "1344");
INSERT INTO `wp_rg_form_view` VALUES("4471", "3", "2014-11-03 11:00:04", "66.249.79.92", "2740");
INSERT INTO `wp_rg_form_view` VALUES("4472", "6", "2014-11-03 12:00:00", "66.249.79.84", "1334");
INSERT INTO `wp_rg_form_view` VALUES("4473", "3", "2014-11-03 12:00:01", "66.249.79.84", "2704");
INSERT INTO `wp_rg_form_view` VALUES("4474", "6", "2014-11-03 13:00:03", "66.249.79.92", "1292");
INSERT INTO `wp_rg_form_view` VALUES("4475", "3", "2014-11-03 13:00:03", "66.249.79.92", "2618");
INSERT INTO `wp_rg_form_view` VALUES("4476", "1", "2014-11-03 13:11:20", "60.148.123.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("4477", "3", "2014-11-03 14:00:00", "66.249.79.92", "1722");
INSERT INTO `wp_rg_form_view` VALUES("4478", "6", "2014-11-03 14:00:05", "66.249.79.84", "848");
INSERT INTO `wp_rg_form_view` VALUES("4479", "6", "2014-11-03 15:00:38", "66.249.79.84", "86");
INSERT INTO `wp_rg_form_view` VALUES("4480", "3", "2014-11-03 15:00:39", "66.249.79.84", "182");
INSERT INTO `wp_rg_form_view` VALUES("4481", "6", "2014-11-03 16:00:07", "109.241.118.159", "1050");
INSERT INTO `wp_rg_form_view` VALUES("4482", "3", "2014-11-03 16:00:07", "109.241.118.159", "2136");
INSERT INTO `wp_rg_form_view` VALUES("4483", "6", "2014-11-03 17:00:02", "66.249.79.92", "1014");
INSERT INTO `wp_rg_form_view` VALUES("4484", "3", "2014-11-03 17:00:02", "66.249.79.92", "2062");
INSERT INTO `wp_rg_form_view` VALUES("4485", "6", "2014-11-03 18:00:04", "66.249.79.76", "1368");
INSERT INTO `wp_rg_form_view` VALUES("4486", "3", "2014-11-03 18:00:04", "66.249.79.76", "2778");
INSERT INTO `wp_rg_form_view` VALUES("4487", "6", "2014-11-03 19:00:01", "66.249.79.84", "1334");
INSERT INTO `wp_rg_form_view` VALUES("4488", "3", "2014-11-03 19:00:02", "66.249.79.84", "2701");
INSERT INTO `wp_rg_form_view` VALUES("4489", "2", "2014-11-03 19:02:37", "66.232.113.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("4490", "1", "2014-11-03 19:02:40", "66.232.113.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("4491", "3", "2014-11-03 20:00:00", "66.249.79.76", "1615");
INSERT INTO `wp_rg_form_view` VALUES("4492", "6", "2014-11-03 20:00:03", "66.249.79.92", "794");
INSERT INTO `wp_rg_form_view` VALUES("4493", "2", "2014-11-03 20:05:38", "62.210.91.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("4494", "1", "2014-11-03 20:05:39", "62.210.91.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("4495", "6", "2014-11-03 21:00:03", "66.249.79.84", "1426");
INSERT INTO `wp_rg_form_view` VALUES("4496", "3", "2014-11-03 21:00:03", "66.249.79.84", "2877");
INSERT INTO `wp_rg_form_view` VALUES("4497", "3", "2014-11-03 22:00:00", "66.249.79.76", "2935");
INSERT INTO `wp_rg_form_view` VALUES("4498", "6", "2014-11-03 22:00:04", "66.249.79.76", "1444");
INSERT INTO `wp_rg_form_view` VALUES("4499", "3", "2014-11-03 23:00:00", "66.249.79.92", "2930");
INSERT INTO `wp_rg_form_view` VALUES("4500", "6", "2014-11-03 23:00:04", "66.249.79.76", "1444");
INSERT INTO `wp_rg_form_view` VALUES("4501", "6", "2014-11-04 00:00:02", "66.249.79.84", "1436");
INSERT INTO `wp_rg_form_view` VALUES("4502", "3", "2014-11-04 00:00:03", "66.249.79.84", "2920");
INSERT INTO `wp_rg_form_view` VALUES("4503", "6", "2014-11-04 01:00:18", "66.249.79.92", "1404");
INSERT INTO `wp_rg_form_view` VALUES("4504", "3", "2014-11-04 01:00:18", "66.249.79.92", "2842");
INSERT INTO `wp_rg_form_view` VALUES("4505", "6", "2014-11-04 02:00:04", "66.249.79.84", "1258");
INSERT INTO `wp_rg_form_view` VALUES("4506", "3", "2014-11-04 02:00:04", "66.249.79.84", "2551");
INSERT INTO `wp_rg_form_view` VALUES("4507", "6", "2014-11-04 03:01:08", "66.249.79.76", "84");
INSERT INTO `wp_rg_form_view` VALUES("4508", "3", "2014-11-04 03:01:08", "66.249.79.76", "170");
INSERT INTO `wp_rg_form_view` VALUES("4509", "6", "2014-11-04 04:00:31", "66.249.79.84", "1260");
INSERT INTO `wp_rg_form_view` VALUES("4510", "3", "2014-11-04 04:00:31", "66.249.79.84", "2542");
INSERT INTO `wp_rg_form_view` VALUES("4511", "6", "2014-11-04 05:00:00", "66.249.79.76", "1510");
INSERT INTO `wp_rg_form_view` VALUES("4512", "3", "2014-11-04 05:00:00", "66.249.79.76", "3051");
INSERT INTO `wp_rg_form_view` VALUES("4513", "6", "2014-11-04 06:00:02", "66.249.79.92", "1542");
INSERT INTO `wp_rg_form_view` VALUES("4514", "3", "2014-11-04 06:00:03", "66.249.79.92", "3150");
INSERT INTO `wp_rg_form_view` VALUES("4515", "6", "2014-11-04 07:00:00", "66.249.79.92", "1516");
INSERT INTO `wp_rg_form_view` VALUES("4516", "3", "2014-11-04 07:00:00", "66.249.79.92", "3080");
INSERT INTO `wp_rg_form_view` VALUES("4517", "6", "2014-11-04 08:00:00", "66.249.79.92", "1443");
INSERT INTO `wp_rg_form_view` VALUES("4518", "3", "2014-11-04 08:00:01", "66.249.79.92", "2949");
INSERT INTO `wp_rg_form_view` VALUES("4519", "3", "2014-11-04 09:00:00", "66.249.79.76", "2889");
INSERT INTO `wp_rg_form_view` VALUES("4520", "6", "2014-11-04 09:00:04", "66.249.79.84", "1424");
INSERT INTO `wp_rg_form_view` VALUES("4521", "2", "2014-11-04 09:32:55", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("4522", "6", "2014-11-04 10:00:18", "66.249.79.92", "1454");
INSERT INTO `wp_rg_form_view` VALUES("4523", "3", "2014-11-04 10:00:18", "66.249.79.92", "2958");
INSERT INTO `wp_rg_form_view` VALUES("4524", "6", "2014-11-04 11:00:48", "66.249.79.92", "1308");
INSERT INTO `wp_rg_form_view` VALUES("4525", "3", "2014-11-04 11:00:48", "66.249.79.92", "2661");
INSERT INTO `wp_rg_form_view` VALUES("4526", "6", "2014-11-04 12:00:03", "66.249.79.76", "1192");
INSERT INTO `wp_rg_form_view` VALUES("4527", "3", "2014-11-04 12:00:04", "66.249.79.76", "2432");
INSERT INTO `wp_rg_form_view` VALUES("4528", "6", "2014-11-04 13:00:02", "66.249.79.76", "952");
INSERT INTO `wp_rg_form_view` VALUES("4529", "3", "2014-11-04 13:00:02", "66.249.79.76", "1966");
INSERT INTO `wp_rg_form_view` VALUES("4530", "3", "2014-11-04 14:00:04", "66.249.79.76", "1266");
INSERT INTO `wp_rg_form_view` VALUES("4531", "6", "2014-11-04 14:00:05", "66.249.79.76", "620");
INSERT INTO `wp_rg_form_view` VALUES("4532", "6", "2014-11-04 15:01:52", "66.249.79.76", "112");
INSERT INTO `wp_rg_form_view` VALUES("4533", "3", "2014-11-04 15:01:52", "66.249.79.76", "240");
INSERT INTO `wp_rg_form_view` VALUES("4534", "1", "2014-11-04 15:57:40", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("4535", "6", "2014-11-04 16:00:08", "66.249.79.76", "1134");
INSERT INTO `wp_rg_form_view` VALUES("4536", "3", "2014-11-04 16:00:08", "66.249.79.76", "2330");
INSERT INTO `wp_rg_form_view` VALUES("4537", "6", "2014-11-04 17:00:08", "66.249.79.76", "1190");
INSERT INTO `wp_rg_form_view` VALUES("4538", "3", "2014-11-04 17:00:08", "66.249.79.76", "2450");
INSERT INTO `wp_rg_form_view` VALUES("4539", "6", "2014-11-04 18:00:02", "66.249.79.84", "1490");
INSERT INTO `wp_rg_form_view` VALUES("4540", "3", "2014-11-04 18:00:02", "66.249.79.84", "3015");
INSERT INTO `wp_rg_form_view` VALUES("4541", "6", "2014-11-04 19:00:00", "66.249.79.76", "1590");
INSERT INTO `wp_rg_form_view` VALUES("4542", "3", "2014-11-04 19:00:00", "66.249.79.76", "3249");
INSERT INTO `wp_rg_form_view` VALUES("4543", "1", "2014-11-04 19:13:03", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("4544", "6", "2014-11-04 20:00:01", "66.249.79.76", "1390");
INSERT INTO `wp_rg_form_view` VALUES("4545", "3", "2014-11-04 20:00:02", "66.249.79.76", "2891");
INSERT INTO `wp_rg_form_view` VALUES("4546", "6", "2014-11-04 21:03:32", "157.55.39.125", "1409");
INSERT INTO `wp_rg_form_view` VALUES("4547", "3", "2014-11-04 21:03:32", "157.55.39.125", "2911");
INSERT INTO `wp_rg_form_view` VALUES("4548", "1", "2014-11-04 21:08:18", "79.116.31.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("4549", "2", "2014-11-04 21:08:27", "79.116.31.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("4550", "6", "2014-11-04 22:00:02", "66.249.79.76", "1564");
INSERT INTO `wp_rg_form_view` VALUES("4551", "3", "2014-11-04 22:00:03", "66.249.79.76", "3230");
INSERT INTO `wp_rg_form_view` VALUES("4552", "1", "2014-11-04 22:06:29", "184.66.16.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("4553", "6", "2014-11-04 23:00:24", "66.249.79.76", "1565");
INSERT INTO `wp_rg_form_view` VALUES("4554", "3", "2014-11-04 23:00:24", "66.249.79.76", "3204");
INSERT INTO `wp_rg_form_view` VALUES("4555", "1", "2014-11-04 23:22:27", "184.66.16.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("4556", "6", "2014-11-05 00:00:03", "66.249.79.84", "1448");
INSERT INTO `wp_rg_form_view` VALUES("4557", "3", "2014-11-05 00:00:04", "66.249.79.84", "2987");
INSERT INTO `wp_rg_form_view` VALUES("4558", "1", "2014-11-05 00:43:38", "36.248.167.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("4559", "6", "2014-11-05 01:00:00", "66.249.79.76", "1312");
INSERT INTO `wp_rg_form_view` VALUES("4560", "3", "2014-11-05 01:00:00", "66.249.79.76", "2669");
INSERT INTO `wp_rg_form_view` VALUES("4561", "3", "2014-11-05 02:00:00", "66.249.79.84", "2230");
INSERT INTO `wp_rg_form_view` VALUES("4562", "6", "2014-11-05 02:00:04", "66.249.79.84", "1086");
INSERT INTO `wp_rg_form_view` VALUES("4563", "2", "2014-11-05 02:24:34", "80.79.126.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("4564", "1", "2014-11-05 02:25:06", "91.223.159.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("4565", "6", "2014-11-05 03:00:42", "217.69.133.230", "250");
INSERT INTO `wp_rg_form_view` VALUES("4566", "3", "2014-11-05 03:00:43", "217.69.133.230", "536");
INSERT INTO `wp_rg_form_view` VALUES("4567", "3", "2014-11-05 04:00:00", "66.249.79.76", "2818");
INSERT INTO `wp_rg_form_view` VALUES("4568", "6", "2014-11-05 04:00:02", "66.249.79.84", "1358");
INSERT INTO `wp_rg_form_view` VALUES("4569", "6", "2014-11-05 05:00:03", "66.249.79.76", "1421");
INSERT INTO `wp_rg_form_view` VALUES("4570", "3", "2014-11-05 05:00:03", "66.249.79.76", "2957");
INSERT INTO `wp_rg_form_view` VALUES("4571", "6", "2014-11-05 06:00:02", "66.249.79.76", "1541");
INSERT INTO `wp_rg_form_view` VALUES("4572", "3", "2014-11-05 06:00:03", "66.249.79.76", "3158");
INSERT INTO `wp_rg_form_view` VALUES("4573", "6", "2014-11-05 07:00:02", "66.249.79.92", "1326");
INSERT INTO `wp_rg_form_view` VALUES("4574", "3", "2014-11-05 07:00:03", "66.249.79.92", "2730");
INSERT INTO `wp_rg_form_view` VALUES("4575", "6", "2014-11-05 08:00:04", "66.249.79.84", "1422");
INSERT INTO `wp_rg_form_view` VALUES("4576", "3", "2014-11-05 08:00:04", "66.249.79.84", "2928");
INSERT INTO `wp_rg_form_view` VALUES("4577", "6", "2014-11-05 09:00:01", "66.249.79.92", "1541");
INSERT INTO `wp_rg_form_view` VALUES("4578", "3", "2014-11-05 09:00:02", "66.249.79.92", "3149");
INSERT INTO `wp_rg_form_view` VALUES("4579", "1", "2014-11-05 09:15:29", "158.85.89.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("4580", "6", "2014-11-05 10:00:00", "66.249.79.76", "1323");
INSERT INTO `wp_rg_form_view` VALUES("4581", "3", "2014-11-05 10:00:00", "66.249.79.76", "2719");
INSERT INTO `wp_rg_form_view` VALUES("4582", "6", "2014-11-05 11:00:02", "66.249.79.76", "1448");
INSERT INTO `wp_rg_form_view` VALUES("4583", "3", "2014-11-05 11:00:03", "66.249.79.76", "2946");
INSERT INTO `wp_rg_form_view` VALUES("4584", "3", "2014-11-05 12:00:00", "66.249.79.84", "2923");
INSERT INTO `wp_rg_form_view` VALUES("4585", "6", "2014-11-05 12:00:05", "66.249.79.92", "1420");
INSERT INTO `wp_rg_form_view` VALUES("4586", "6", "2014-11-05 13:00:01", "66.249.79.76", "1370");
INSERT INTO `wp_rg_form_view` VALUES("4587", "3", "2014-11-05 13:00:02", "66.249.79.76", "2815");
INSERT INTO `wp_rg_form_view` VALUES("4588", "6", "2014-11-05 14:00:02", "66.249.79.84", "944");
INSERT INTO `wp_rg_form_view` VALUES("4589", "3", "2014-11-05 14:00:02", "66.249.79.84", "1945");
INSERT INTO `wp_rg_form_view` VALUES("4590", "6", "2014-11-05 15:00:00", "158.85.89.4", "590");
INSERT INTO `wp_rg_form_view` VALUES("4591", "3", "2014-11-05 15:00:00", "158.85.89.4", "1222");
INSERT INTO `wp_rg_form_view` VALUES("4592", "1", "2014-11-05 15:01:17", "158.85.89.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("4593", "6", "2014-11-05 16:00:03", "66.249.79.84", "1351");
INSERT INTO `wp_rg_form_view` VALUES("4594", "3", "2014-11-05 16:00:03", "66.249.79.84", "2785");
INSERT INTO `wp_rg_form_view` VALUES("4595", "1", "2014-11-05 16:03:31", "184.66.16.43", "4");
INSERT INTO `wp_rg_form_view` VALUES("4596", "2", "2014-11-05 16:33:30", "61.16.251.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("4597", "6", "2014-11-05 17:00:00", "66.249.79.84", "1410");
INSERT INTO `wp_rg_form_view` VALUES("4598", "3", "2014-11-05 17:00:02", "66.249.79.84", "2879");
INSERT INTO `wp_rg_form_view` VALUES("4599", "1", "2014-11-05 17:27:03", "158.85.89.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("4600", "6", "2014-11-05 18:00:03", "66.249.79.76", "1342");
INSERT INTO `wp_rg_form_view` VALUES("4601", "3", "2014-11-05 18:00:03", "66.249.79.76", "2798");
INSERT INTO `wp_rg_form_view` VALUES("4602", "6", "2014-11-05 19:00:03", "66.249.79.84", "1274");
INSERT INTO `wp_rg_form_view` VALUES("4603", "3", "2014-11-05 19:00:04", "66.249.79.84", "2606");
INSERT INTO `wp_rg_form_view` VALUES("4604", "1", "2014-11-05 19:04:34", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("4605", "6", "2014-11-05 20:00:03", "66.249.79.84", "1352");
INSERT INTO `wp_rg_form_view` VALUES("4606", "3", "2014-11-05 20:00:03", "66.249.79.84", "2758");
INSERT INTO `wp_rg_form_view` VALUES("4607", "6", "2014-11-05 21:00:03", "66.249.79.76", "1393");
INSERT INTO `wp_rg_form_view` VALUES("4608", "3", "2014-11-05 21:00:03", "66.249.79.76", "2845");
INSERT INTO `wp_rg_form_view` VALUES("4609", "1", "2014-11-05 21:24:24", "77.231.29.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("4610", "2", "2014-11-05 21:24:58", "77.231.29.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("4611", "6", "2014-11-05 22:00:02", "66.249.79.76", "1240");
INSERT INTO `wp_rg_form_view` VALUES("4612", "3", "2014-11-05 22:00:03", "66.249.79.76", "2515");
INSERT INTO `wp_rg_form_view` VALUES("4613", "6", "2014-11-05 23:00:00", "66.249.79.84", "1410");
INSERT INTO `wp_rg_form_view` VALUES("4614", "3", "2014-11-05 23:00:00", "66.249.79.84", "2861");
INSERT INTO `wp_rg_form_view` VALUES("4615", "6", "2014-11-06 00:00:03", "66.249.79.92", "1374");
INSERT INTO `wp_rg_form_view` VALUES("4616", "3", "2014-11-06 00:00:03", "66.249.79.92", "2811");
INSERT INTO `wp_rg_form_view` VALUES("4617", "1", "2014-11-06 00:35:58", "121.227.119.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("4618", "6", "2014-11-06 01:00:02", "66.249.79.92", "1514");
INSERT INTO `wp_rg_form_view` VALUES("4619", "3", "2014-11-06 01:00:03", "66.249.79.92", "3075");
INSERT INTO `wp_rg_form_view` VALUES("4620", "1", "2014-11-06 01:10:37", "96.50.22.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("4621", "6", "2014-11-06 02:00:02", "66.249.79.76", "830");
INSERT INTO `wp_rg_form_view` VALUES("4622", "3", "2014-11-06 02:00:02", "66.249.79.76", "1684");
INSERT INTO `wp_rg_form_view` VALUES("4623", "2", "2014-11-06 02:05:02", "209.190.29.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("4624", "1", "2014-11-06 02:05:08", "209.190.29.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("4625", "6", "2014-11-06 03:01:14", "66.249.79.84", "932");
INSERT INTO `wp_rg_form_view` VALUES("4626", "3", "2014-11-06 03:01:14", "66.249.79.84", "1906");
INSERT INTO `wp_rg_form_view` VALUES("4627", "6", "2014-11-06 04:00:02", "66.249.79.76", "1630");
INSERT INTO `wp_rg_form_view` VALUES("4628", "3", "2014-11-06 04:00:03", "66.249.79.76", "3328");
INSERT INTO `wp_rg_form_view` VALUES("4629", "1", "2014-11-06 04:19:11", "158.85.89.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("4630", "6", "2014-11-06 05:00:01", "66.249.79.92", "1538");
INSERT INTO `wp_rg_form_view` VALUES("4631", "3", "2014-11-06 05:00:02", "157.55.39.67", "3146");
INSERT INTO `wp_rg_form_view` VALUES("4632", "6", "2014-11-06 06:00:04", "66.249.79.84", "1520");
INSERT INTO `wp_rg_form_view` VALUES("4633", "3", "2014-11-06 06:00:04", "66.249.79.84", "3108");
INSERT INTO `wp_rg_form_view` VALUES("4634", "6", "2014-11-06 07:00:00", "66.249.79.84", "1508");
INSERT INTO `wp_rg_form_view` VALUES("4635", "3", "2014-11-06 07:00:00", "66.249.79.84", "3083");
INSERT INTO `wp_rg_form_view` VALUES("4636", "6", "2014-11-06 08:00:04", "66.249.79.76", "1492");
INSERT INTO `wp_rg_form_view` VALUES("4637", "3", "2014-11-06 08:00:04", "66.249.79.76", "3048");
INSERT INTO `wp_rg_form_view` VALUES("4638", "3", "2014-11-06 09:00:00", "66.249.79.76", "3083");
INSERT INTO `wp_rg_form_view` VALUES("4639", "6", "2014-11-06 09:00:04", "66.249.79.84", "1466");
INSERT INTO `wp_rg_form_view` VALUES("4640", "6", "2014-11-06 10:00:01", "66.249.79.76", "1433");
INSERT INTO `wp_rg_form_view` VALUES("4641", "3", "2014-11-06 10:00:02", "66.249.79.76", "2913");
INSERT INTO `wp_rg_form_view` VALUES("4642", "1", "2014-11-06 10:08:39", "31.151.106.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("4643", "2", "2014-11-06 10:08:51", "31.151.106.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("4644", "6", "2014-11-06 11:00:06", "66.249.79.76", "1008");
INSERT INTO `wp_rg_form_view` VALUES("4645", "3", "2014-11-06 11:00:06", "66.249.79.76", "2064");
INSERT INTO `wp_rg_form_view` VALUES("4646", "6", "2014-11-06 12:01:28", "207.46.13.125", "822");
INSERT INTO `wp_rg_form_view` VALUES("4647", "3", "2014-11-06 12:01:28", "207.46.13.125", "1651");
INSERT INTO `wp_rg_form_view` VALUES("4648", "3", "2014-11-06 13:00:00", "157.55.39.47", "1855");
INSERT INTO `wp_rg_form_view` VALUES("4649", "6", "2014-11-06 13:03:12", "66.249.79.92", "912");
INSERT INTO `wp_rg_form_view` VALUES("4650", "6", "2014-11-06 14:01:40", "207.46.13.125", "1648");
INSERT INTO `wp_rg_form_view` VALUES("4651", "3", "2014-11-06 14:01:40", "207.46.13.125", "3367");
INSERT INTO `wp_rg_form_view` VALUES("4652", "3", "2014-11-06 15:00:00", "66.249.79.84", "1023");
INSERT INTO `wp_rg_form_view` VALUES("4653", "6", "2014-11-06 15:00:03", "157.55.39.47", "506");
INSERT INTO `wp_rg_form_view` VALUES("4654", "3", "2014-11-06 16:00:00", "66.249.79.84", "2270");
INSERT INTO `wp_rg_form_view` VALUES("4655", "6", "2014-11-06 16:00:05", "66.249.79.76", "1110");
INSERT INTO `wp_rg_form_view` VALUES("4656", "6", "2014-11-06 17:00:01", "66.249.79.84", "1544");
INSERT INTO `wp_rg_form_view` VALUES("4657", "3", "2014-11-06 17:00:02", "66.249.79.84", "3138");
INSERT INTO `wp_rg_form_view` VALUES("4658", "1", "2014-11-06 17:02:46", "54.202.77.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("4659", "2", "2014-11-06 17:03:21", "54.202.77.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("4660", "3", "2014-11-06 18:00:00", "66.249.79.84", "2892");
INSERT INTO `wp_rg_form_view` VALUES("4661", "6", "2014-11-06 18:00:10", "66.249.79.76", "1426");
INSERT INTO `wp_rg_form_view` VALUES("4662", "1", "2014-11-06 18:30:10", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("4663", "6", "2014-11-06 19:00:03", "66.249.79.84", "1354");
INSERT INTO `wp_rg_form_view` VALUES("4664", "3", "2014-11-06 19:00:04", "66.249.79.84", "2751");
INSERT INTO `wp_rg_form_view` VALUES("4665", "3", "2014-11-06 20:00:00", "157.55.39.47", "2885");
INSERT INTO `wp_rg_form_view` VALUES("4666", "6", "2014-11-06 20:00:03", "66.249.79.92", "1408");
INSERT INTO `wp_rg_form_view` VALUES("4667", "3", "2014-11-06 21:00:02", "66.249.79.76", "2516");
INSERT INTO `wp_rg_form_view` VALUES("4668", "6", "2014-11-06 21:00:02", "66.249.79.76", "1241");
INSERT INTO `wp_rg_form_view` VALUES("4669", "1", "2014-11-06 21:08:08", "54.171.71.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("4670", "2", "2014-11-06 21:08:32", "54.171.71.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("4671", "6", "2014-11-06 22:01:30", "66.249.79.92", "1224");
INSERT INTO `wp_rg_form_view` VALUES("4672", "3", "2014-11-06 22:01:31", "66.249.79.92", "2474");
INSERT INTO `wp_rg_form_view` VALUES("4673", "6", "2014-11-06 23:00:03", "66.249.67.84", "1414");
INSERT INTO `wp_rg_form_view` VALUES("4674", "3", "2014-11-06 23:00:03", "66.249.67.84", "2869");
INSERT INTO `wp_rg_form_view` VALUES("4675", "6", "2014-11-07 00:00:03", "158.85.89.6", "1378");
INSERT INTO `wp_rg_form_view` VALUES("4676", "3", "2014-11-07 00:00:03", "158.85.89.6", "2786");
INSERT INTO `wp_rg_form_view` VALUES("4677", "1", "2014-11-07 00:00:37", "158.85.89.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("4678", "6", "2014-11-07 01:00:02", "66.249.79.84", "1403");
INSERT INTO `wp_rg_form_view` VALUES("4679", "3", "2014-11-07 01:00:02", "66.249.79.84", "2900");
INSERT INTO `wp_rg_form_view` VALUES("4680", "1", "2014-11-07 01:25:47", "54.187.150.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("4681", "2", "2014-11-07 01:26:35", "54.187.150.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("4682", "6", "2014-11-07 02:00:00", "66.249.79.92", "640");
INSERT INTO `wp_rg_form_view` VALUES("4683", "3", "2014-11-07 02:00:01", "66.249.79.92", "1326");
INSERT INTO `wp_rg_form_view` VALUES("4684", "6", "2014-11-07 03:00:17", "157.55.39.67", "608");
INSERT INTO `wp_rg_form_view` VALUES("4685", "3", "2014-11-07 03:00:17", "157.55.39.67", "1269");
INSERT INTO `wp_rg_form_view` VALUES("4686", "6", "2014-11-07 04:00:46", "157.55.39.48", "1370");
INSERT INTO `wp_rg_form_view` VALUES("4687", "3", "2014-11-07 04:00:46", "157.55.39.48", "2805");
INSERT INTO `wp_rg_form_view` VALUES("4688", "1", "2014-11-07 04:18:10", "158.85.89.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("4689", "3", "2014-11-07 05:00:00", "66.249.79.84", "3080");
INSERT INTO `wp_rg_form_view` VALUES("4690", "6", "2014-11-07 05:00:06", "66.249.79.92", "1508");
INSERT INTO `wp_rg_form_view` VALUES("4691", "6", "2014-11-07 06:00:03", "66.249.79.84", "1466");
INSERT INTO `wp_rg_form_view` VALUES("4692", "3", "2014-11-07 06:00:04", "66.249.79.84", "2998");
INSERT INTO `wp_rg_form_view` VALUES("4693", "3", "2014-11-07 07:00:04", "207.46.13.125", "3048");
INSERT INTO `wp_rg_form_view` VALUES("4694", "6", "2014-11-07 07:00:05", "207.46.13.125", "1478");
INSERT INTO `wp_rg_form_view` VALUES("4695", "6", "2014-11-07 08:00:02", "66.249.79.76", "1438");
INSERT INTO `wp_rg_form_view` VALUES("4696", "3", "2014-11-07 08:00:03", "66.249.79.76", "2938");
INSERT INTO `wp_rg_form_view` VALUES("4697", "3", "2014-11-07 09:00:00", "66.249.79.76", "3002");
INSERT INTO `wp_rg_form_view` VALUES("4698", "6", "2014-11-07 09:00:02", "66.249.79.92", "1464");
INSERT INTO `wp_rg_form_view` VALUES("4699", "6", "2014-11-07 10:00:02", "66.249.79.92", "1359");
INSERT INTO `wp_rg_form_view` VALUES("4700", "3", "2014-11-07 10:00:02", "66.249.79.92", "2792");
INSERT INTO `wp_rg_form_view` VALUES("4701", "3", "2014-11-07 11:02:17", "207.46.13.102", "962");
INSERT INTO `wp_rg_form_view` VALUES("4702", "6", "2014-11-07 11:02:17", "207.46.13.102", "460");
INSERT INTO `wp_rg_form_view` VALUES("4703", "6", "2014-11-07 12:00:24", "66.249.79.84", "2038");
INSERT INTO `wp_rg_form_view` VALUES("4704", "3", "2014-11-07 12:00:24", "66.249.79.84", "4145");
INSERT INTO `wp_rg_form_view` VALUES("4705", "3", "2014-11-07 13:00:00", "66.249.79.76", "4161");
INSERT INTO `wp_rg_form_view` VALUES("4706", "6", "2014-11-07 13:00:02", "66.249.79.84", "2039");
INSERT INTO `wp_rg_form_view` VALUES("4707", "6", "2014-11-07 14:00:00", "66.249.79.92", "583");
INSERT INTO `wp_rg_form_view` VALUES("4708", "3", "2014-11-07 14:00:00", "66.249.79.92", "1200");
INSERT INTO `wp_rg_form_view` VALUES("4709", "6", "2014-11-07 15:00:00", "66.249.79.92", "1040");
INSERT INTO `wp_rg_form_view` VALUES("4710", "3", "2014-11-07 15:00:00", "66.249.79.92", "2163");
INSERT INTO `wp_rg_form_view` VALUES("4711", "3", "2014-11-07 16:00:00", "66.249.79.92", "2585");
INSERT INTO `wp_rg_form_view` VALUES("4712", "6", "2014-11-07 16:00:03", "66.249.79.76", "1256");
INSERT INTO `wp_rg_form_view` VALUES("4713", "6", "2014-11-07 17:00:01", "66.249.79.76", "1522");
INSERT INTO `wp_rg_form_view` VALUES("4714", "3", "2014-11-07 17:00:02", "66.249.79.76", "3109");
INSERT INTO `wp_rg_form_view` VALUES("4715", "1", "2014-11-07 17:35:39", "158.85.89.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("4716", "3", "2014-11-07 18:00:00", "66.249.79.76", "2924");
INSERT INTO `wp_rg_form_view` VALUES("4717", "6", "2014-11-07 18:00:02", "66.249.79.92", "1432");
INSERT INTO `wp_rg_form_view` VALUES("4718", "6", "2014-11-07 19:00:00", "66.249.79.92", "1426");
INSERT INTO `wp_rg_form_view` VALUES("4719", "3", "2014-11-07 19:00:00", "66.249.79.92", "2903");
INSERT INTO `wp_rg_form_view` VALUES("4720", "6", "2014-11-07 20:00:00", "66.249.79.76", "1362");
INSERT INTO `wp_rg_form_view` VALUES("4721", "3", "2014-11-07 20:00:01", "66.249.79.76", "2810");
INSERT INTO `wp_rg_form_view` VALUES("4722", "6", "2014-11-07 21:00:02", "66.249.79.84", "1412");
INSERT INTO `wp_rg_form_view` VALUES("4723", "3", "2014-11-07 21:00:02", "66.249.79.84", "2892");
INSERT INTO `wp_rg_form_view` VALUES("4724", "6", "2014-11-07 22:00:00", "66.249.79.92", "1436");
INSERT INTO `wp_rg_form_view` VALUES("4725", "3", "2014-11-07 22:00:01", "66.249.79.92", "2926");
INSERT INTO `wp_rg_form_view` VALUES("4726", "3", "2014-11-07 23:00:00", "66.249.79.76", "2860");
INSERT INTO `wp_rg_form_view` VALUES("4727", "6", "2014-11-07 23:00:09", "66.249.79.76", "1406");
INSERT INTO `wp_rg_form_view` VALUES("4728", "6", "2014-11-08 00:00:02", "66.249.79.84", "1408");
INSERT INTO `wp_rg_form_view` VALUES("4729", "3", "2014-11-08 00:00:03", "66.249.79.84", "2862");
INSERT INTO `wp_rg_form_view` VALUES("4730", "6", "2014-11-08 01:00:00", "66.249.79.76", "1326");
INSERT INTO `wp_rg_form_view` VALUES("4731", "3", "2014-11-08 01:00:00", "66.249.79.76", "2695");
INSERT INTO `wp_rg_form_view` VALUES("4732", "6", "2014-11-08 02:00:17", "157.55.39.35", "505");
INSERT INTO `wp_rg_form_view` VALUES("4733", "3", "2014-11-08 02:00:18", "157.55.39.35", "1051");
INSERT INTO `wp_rg_form_view` VALUES("4734", "1", "2014-11-08 02:22:56", "54.77.113.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("4735", "2", "2014-11-08 02:23:23", "54.77.113.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("4736", "6", "2014-11-08 03:00:03", "66.249.79.92", "1382");
INSERT INTO `wp_rg_form_view` VALUES("4737", "3", "2014-11-08 03:00:03", "66.249.79.92", "2817");
INSERT INTO `wp_rg_form_view` VALUES("4738", "1", "2014-11-08 03:13:48", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("4739", "6", "2014-11-08 04:00:02", "66.249.79.84", "1380");
INSERT INTO `wp_rg_form_view` VALUES("4740", "3", "2014-11-08 04:00:02", "66.249.79.84", "2797");
INSERT INTO `wp_rg_form_view` VALUES("4741", "2", "2014-11-08 04:34:44", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("4742", "6", "2014-11-08 05:00:00", "66.249.79.92", "1424");
INSERT INTO `wp_rg_form_view` VALUES("4743", "3", "2014-11-08 05:00:00", "66.249.79.92", "2898");
INSERT INTO `wp_rg_form_view` VALUES("4744", "6", "2014-11-08 06:00:01", "66.249.79.76", "1450");
INSERT INTO `wp_rg_form_view` VALUES("4745", "3", "2014-11-08 06:00:01", "66.249.79.76", "2936");
INSERT INTO `wp_rg_form_view` VALUES("4746", "6", "2014-11-08 07:00:03", "66.249.79.92", "1528");
INSERT INTO `wp_rg_form_view` VALUES("4747", "3", "2014-11-08 07:00:04", "66.249.79.92", "3109");
INSERT INTO `wp_rg_form_view` VALUES("4748", "1", "2014-11-08 07:07:17", "158.85.89.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("4749", "6", "2014-11-08 08:00:04", "66.249.79.84", "1408");
INSERT INTO `wp_rg_form_view` VALUES("4750", "3", "2014-11-08 08:00:04", "66.249.79.84", "2865");
INSERT INTO `wp_rg_form_view` VALUES("4751", "6", "2014-11-08 09:00:00", "66.249.79.84", "1352");
INSERT INTO `wp_rg_form_view` VALUES("4752", "3", "2014-11-08 09:00:01", "66.249.79.84", "2758");
INSERT INTO `wp_rg_form_view` VALUES("4753", "1", "2014-11-08 09:48:14", "202.46.49.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("4754", "6", "2014-11-08 10:00:05", "66.249.79.92", "1342");
INSERT INTO `wp_rg_form_view` VALUES("4755", "3", "2014-11-08 10:00:06", "66.249.79.92", "2770");
INSERT INTO `wp_rg_form_view` VALUES("4756", "6", "2014-11-08 11:00:05", "66.249.79.84", "1300");
INSERT INTO `wp_rg_form_view` VALUES("4757", "3", "2014-11-08 11:00:06", "66.249.79.84", "2646");
INSERT INTO `wp_rg_form_view` VALUES("4758", "6", "2014-11-08 12:00:00", "66.249.67.84", "1330");
INSERT INTO `wp_rg_form_view` VALUES("4759", "3", "2014-11-08 12:00:00", "66.249.67.84", "2686");
INSERT INTO `wp_rg_form_view` VALUES("4760", "3", "2014-11-08 13:00:00", "66.249.79.84", "1031");
INSERT INTO `wp_rg_form_view` VALUES("4761", "6", "2014-11-08 13:00:00", "158.85.94.4", "508");
INSERT INTO `wp_rg_form_view` VALUES("4762", "1", "2014-11-08 13:01:05", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("4763", "6", "2014-11-08 14:00:18", "202.46.49.35", "102");
INSERT INTO `wp_rg_form_view` VALUES("4764", "3", "2014-11-08 14:00:19", "202.46.49.35", "206");
INSERT INTO `wp_rg_form_view` VALUES("4765", "6", "2014-11-08 15:01:16", "66.249.79.84", "718");
INSERT INTO `wp_rg_form_view` VALUES("4766", "3", "2014-11-08 15:01:16", "66.249.79.84", "1454");
INSERT INTO `wp_rg_form_view` VALUES("4767", "1", "2014-11-08 15:22:01", "158.85.89.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("4768", "6", "2014-11-08 16:00:11", "66.249.79.76", "1284");
INSERT INTO `wp_rg_form_view` VALUES("4769", "3", "2014-11-08 16:00:11", "66.249.79.76", "2608");
INSERT INTO `wp_rg_form_view` VALUES("4770", "6", "2014-11-08 17:00:02", "66.249.79.84", "1374");
INSERT INTO `wp_rg_form_view` VALUES("4771", "3", "2014-11-08 17:00:02", "66.249.79.84", "2820");
INSERT INTO `wp_rg_form_view` VALUES("4772", "3", "2014-11-08 18:00:00", "66.249.79.76", "2903");
INSERT INTO `wp_rg_form_view` VALUES("4773", "6", "2014-11-08 18:00:02", "66.249.79.76", "1418");
INSERT INTO `wp_rg_form_view` VALUES("4774", "6", "2014-11-08 19:00:03", "66.249.79.76", "1370");
INSERT INTO `wp_rg_form_view` VALUES("4775", "3", "2014-11-08 19:00:03", "66.249.79.76", "2788");
INSERT INTO `wp_rg_form_view` VALUES("4776", "3", "2014-11-08 20:00:00", "66.249.79.92", "2634");
INSERT INTO `wp_rg_form_view` VALUES("4777", "6", "2014-11-08 20:00:04", "66.249.79.84", "1284");
INSERT INTO `wp_rg_form_view` VALUES("4778", "6", "2014-11-08 21:00:00", "66.249.79.76", "1364");
INSERT INTO `wp_rg_form_view` VALUES("4779", "3", "2014-11-08 21:00:00", "66.249.79.76", "2762");
INSERT INTO `wp_rg_form_view` VALUES("4780", "6", "2014-11-08 22:00:02", "66.249.79.76", "1244");
INSERT INTO `wp_rg_form_view` VALUES("4781", "3", "2014-11-08 22:00:03", "66.249.79.76", "2544");
INSERT INTO `wp_rg_form_view` VALUES("4782", "6", "2014-11-08 23:01:03", "66.249.79.84", "1206");
INSERT INTO `wp_rg_form_view` VALUES("4783", "3", "2014-11-08 23:01:03", "66.249.79.84", "2452");
INSERT INTO `wp_rg_form_view` VALUES("4784", "6", "2014-11-09 00:00:06", "66.249.79.92", "1142");
INSERT INTO `wp_rg_form_view` VALUES("4785", "3", "2014-11-09 00:00:07", "66.249.79.92", "2304");
INSERT INTO `wp_rg_form_view` VALUES("4786", "6", "2014-11-09 01:00:01", "66.249.79.84", "854");
INSERT INTO `wp_rg_form_view` VALUES("4787", "3", "2014-11-09 01:00:01", "66.249.79.84", "1731");
INSERT INTO `wp_rg_form_view` VALUES("4788", "6", "2014-11-09 02:00:16", "66.249.79.76", "256");
INSERT INTO `wp_rg_form_view` VALUES("4789", "3", "2014-11-09 02:00:17", "66.249.79.76", "522");
INSERT INTO `wp_rg_form_view` VALUES("4790", "6", "2014-11-09 03:00:02", "66.249.79.84", "1278");
INSERT INTO `wp_rg_form_view` VALUES("4791", "3", "2014-11-09 03:00:03", "66.249.79.84", "2596");
INSERT INTO `wp_rg_form_view` VALUES("4792", "6", "2014-11-09 04:00:02", "66.249.79.92", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4793", "3", "2014-11-09 04:00:03", "66.249.79.92", "2820");
INSERT INTO `wp_rg_form_view` VALUES("4794", "6", "2014-11-09 05:00:05", "66.249.79.84", "1388");
INSERT INTO `wp_rg_form_view` VALUES("4795", "3", "2014-11-09 05:00:06", "66.249.79.84", "2806");
INSERT INTO `wp_rg_form_view` VALUES("4796", "6", "2014-11-09 06:00:02", "66.249.79.92", "1462");
INSERT INTO `wp_rg_form_view` VALUES("4797", "3", "2014-11-09 06:00:02", "66.249.79.92", "2957");
INSERT INTO `wp_rg_form_view` VALUES("4798", "1", "2014-11-09 06:39:43", "158.85.89.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("4799", "6", "2014-11-09 07:00:07", "66.249.79.92", "1402");
INSERT INTO `wp_rg_form_view` VALUES("4800", "3", "2014-11-09 07:00:08", "66.249.79.92", "2856");
INSERT INTO `wp_rg_form_view` VALUES("4801", "6", "2014-11-09 08:00:03", "66.249.79.76", "1422");
INSERT INTO `wp_rg_form_view` VALUES("4802", "3", "2014-11-09 08:00:04", "66.249.79.76", "2874");
INSERT INTO `wp_rg_form_view` VALUES("4803", "6", "2014-11-09 09:00:00", "66.249.79.92", "1390");
INSERT INTO `wp_rg_form_view` VALUES("4804", "3", "2014-11-09 09:00:00", "66.249.79.92", "2825");
INSERT INTO `wp_rg_form_view` VALUES("4805", "6", "2014-11-09 10:00:01", "66.249.79.76", "1364");
INSERT INTO `wp_rg_form_view` VALUES("4806", "3", "2014-11-09 10:00:01", "66.249.79.76", "2784");
INSERT INTO `wp_rg_form_view` VALUES("4807", "6", "2014-11-09 11:00:02", "66.249.79.84", "1442");
INSERT INTO `wp_rg_form_view` VALUES("4808", "3", "2014-11-09 11:00:02", "66.249.79.84", "2936");
INSERT INTO `wp_rg_form_view` VALUES("4809", "1", "2014-11-09 11:34:15", "158.85.89.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("4810", "2", "2014-11-09 11:48:44", "192.34.59.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("4811", "6", "2014-11-09 12:00:03", "66.249.79.76", "1288");
INSERT INTO `wp_rg_form_view` VALUES("4812", "3", "2014-11-09 12:00:03", "66.249.79.76", "2634");
INSERT INTO `wp_rg_form_view` VALUES("4813", "6", "2014-11-09 13:00:00", "66.249.79.76", "760");
INSERT INTO `wp_rg_form_view` VALUES("4814", "3", "2014-11-09 13:00:01", "66.249.79.76", "1548");
INSERT INTO `wp_rg_form_view` VALUES("4815", "6", "2014-11-09 14:00:51", "66.249.79.92", "454");
INSERT INTO `wp_rg_form_view` VALUES("4816", "3", "2014-11-09 14:00:51", "66.249.79.92", "940");
INSERT INTO `wp_rg_form_view` VALUES("4817", "6", "2014-11-09 15:00:02", "66.249.79.92", "1612");
INSERT INTO `wp_rg_form_view` VALUES("4818", "3", "2014-11-09 15:00:03", "66.249.79.92", "3270");
INSERT INTO `wp_rg_form_view` VALUES("4819", "6", "2014-11-09 16:00:00", "66.249.79.92", "1576");
INSERT INTO `wp_rg_form_view` VALUES("4820", "3", "2014-11-09 16:00:00", "66.249.79.92", "3220");
INSERT INTO `wp_rg_form_view` VALUES("4821", "6", "2014-11-09 17:00:05", "66.249.79.76", "1568");
INSERT INTO `wp_rg_form_view` VALUES("4822", "3", "2014-11-09 17:00:05", "66.249.79.76", "3188");
INSERT INTO `wp_rg_form_view` VALUES("4823", "3", "2014-11-09 18:00:00", "66.249.79.76", "3032");
INSERT INTO `wp_rg_form_view` VALUES("4824", "6", "2014-11-09 18:00:04", "66.249.79.92", "1490");
INSERT INTO `wp_rg_form_view` VALUES("4825", "6", "2014-11-09 19:00:02", "66.249.79.92", "1464");
INSERT INTO `wp_rg_form_view` VALUES("4826", "3", "2014-11-09 19:00:03", "66.249.79.92", "2964");
INSERT INTO `wp_rg_form_view` VALUES("4827", "6", "2014-11-09 20:00:03", "66.249.79.92", "1328");
INSERT INTO `wp_rg_form_view` VALUES("4828", "3", "2014-11-09 20:00:04", "66.249.79.92", "2686");
INSERT INTO `wp_rg_form_view` VALUES("4829", "6", "2014-11-09 21:00:00", "66.249.79.92", "1360");
INSERT INTO `wp_rg_form_view` VALUES("4830", "3", "2014-11-09 21:00:01", "66.249.79.92", "2755");
INSERT INTO `wp_rg_form_view` VALUES("4831", "1", "2014-11-09 21:10:48", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("4832", "6", "2014-11-09 22:00:01", "66.249.79.84", "1084");
INSERT INTO `wp_rg_form_view` VALUES("4833", "3", "2014-11-09 22:00:02", "66.249.79.84", "2226");
INSERT INTO `wp_rg_form_view` VALUES("4834", "6", "2014-11-09 23:00:06", "66.249.79.92", "967");
INSERT INTO `wp_rg_form_view` VALUES("4835", "3", "2014-11-09 23:00:06", "66.249.79.92", "1973");
INSERT INTO `wp_rg_form_view` VALUES("4836", "6", "2014-11-10 00:00:01", "66.249.79.92", "1040");
INSERT INTO `wp_rg_form_view` VALUES("4837", "3", "2014-11-10 00:00:01", "66.249.79.92", "2115");
INSERT INTO `wp_rg_form_view` VALUES("4838", "1", "2014-11-10 00:37:40", "158.85.89.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("4839", "6", "2014-11-10 01:00:02", "66.249.79.76", "474");
INSERT INTO `wp_rg_form_view` VALUES("4840", "3", "2014-11-10 01:00:02", "66.249.79.76", "970");
INSERT INTO `wp_rg_form_view` VALUES("4841", "6", "2014-11-10 02:00:28", "66.249.79.92", "938");
INSERT INTO `wp_rg_form_view` VALUES("4842", "3", "2014-11-10 02:00:28", "66.249.79.92", "1906");
INSERT INTO `wp_rg_form_view` VALUES("4843", "6", "2014-11-10 03:00:01", "66.249.79.76", "1496");
INSERT INTO `wp_rg_form_view` VALUES("4844", "3", "2014-11-10 03:00:01", "66.249.79.76", "3044");
INSERT INTO `wp_rg_form_view` VALUES("4845", "6", "2014-11-10 04:01:00", "66.249.79.92", "1428");
INSERT INTO `wp_rg_form_view` VALUES("4846", "3", "2014-11-10 04:01:01", "66.249.79.92", "2897");
INSERT INTO `wp_rg_form_view` VALUES("4847", "6", "2014-11-10 05:00:01", "66.249.79.84", "1498");
INSERT INTO `wp_rg_form_view` VALUES("4848", "3", "2014-11-10 05:00:02", "66.249.79.84", "3064");
INSERT INTO `wp_rg_form_view` VALUES("4849", "6", "2014-11-10 06:00:01", "66.249.79.92", "1234");
INSERT INTO `wp_rg_form_view` VALUES("4850", "3", "2014-11-10 06:00:02", "66.249.79.92", "2511");
INSERT INTO `wp_rg_form_view` VALUES("4851", "6", "2014-11-10 07:00:03", "66.249.79.84", "1382");
INSERT INTO `wp_rg_form_view` VALUES("4852", "3", "2014-11-10 07:00:03", "66.249.79.84", "2804");
INSERT INTO `wp_rg_form_view` VALUES("4853", "6", "2014-11-10 08:00:03", "66.249.79.92", "1338");
INSERT INTO `wp_rg_form_view` VALUES("4854", "3", "2014-11-10 08:00:04", "66.249.79.92", "2714");
INSERT INTO `wp_rg_form_view` VALUES("4855", "6", "2014-11-10 09:00:01", "66.249.79.76", "1531");
INSERT INTO `wp_rg_form_view` VALUES("4856", "3", "2014-11-10 09:00:01", "66.249.79.76", "3157");
INSERT INTO `wp_rg_form_view` VALUES("4857", "3", "2014-11-10 10:00:00", "66.249.79.84", "2645");
INSERT INTO `wp_rg_form_view` VALUES("4858", "6", "2014-11-10 10:00:04", "66.249.79.92", "1286");
INSERT INTO `wp_rg_form_view` VALUES("4859", "6", "2014-11-10 11:00:02", "66.249.79.92", "1186");
INSERT INTO `wp_rg_form_view` VALUES("4860", "3", "2014-11-10 11:00:02", "66.249.79.92", "2400");
INSERT INTO `wp_rg_form_view` VALUES("4861", "6", "2014-11-10 12:00:01", "66.249.79.92", "1034");
INSERT INTO `wp_rg_form_view` VALUES("4862", "3", "2014-11-10 12:00:02", "66.249.79.92", "2095");
INSERT INTO `wp_rg_form_view` VALUES("4863", "6", "2014-11-10 13:00:50", "66.249.79.76", "82");
INSERT INTO `wp_rg_form_view` VALUES("4864", "3", "2014-11-10 13:00:50", "66.249.79.76", "166");
INSERT INTO `wp_rg_form_view` VALUES("4865", "6", "2014-11-10 14:00:30", "66.249.79.92", "902");
INSERT INTO `wp_rg_form_view` VALUES("4866", "3", "2014-11-10 14:00:30", "66.249.79.92", "1834");
INSERT INTO `wp_rg_form_view` VALUES("4867", "3", "2014-11-10 15:00:01", "66.249.67.140", "2760");
INSERT INTO `wp_rg_form_view` VALUES("4868", "6", "2014-11-10 15:00:02", "66.249.67.140", "1348");
INSERT INTO `wp_rg_form_view` VALUES("4869", "6", "2014-11-10 16:00:03", "66.249.67.140", "1388");
INSERT INTO `wp_rg_form_view` VALUES("4870", "3", "2014-11-10 16:00:03", "66.249.67.140", "2814");
INSERT INTO `wp_rg_form_view` VALUES("4871", "6", "2014-11-10 17:00:00", "66.249.79.92", "1398");
INSERT INTO `wp_rg_form_view` VALUES("4872", "3", "2014-11-10 17:00:00", "66.249.79.92", "2840");
INSERT INTO `wp_rg_form_view` VALUES("4873", "6", "2014-11-10 18:00:02", "66.249.79.76", "1388");
INSERT INTO `wp_rg_form_view` VALUES("4874", "3", "2014-11-10 18:00:02", "66.249.79.76", "2786");
INSERT INTO `wp_rg_form_view` VALUES("4875", "6", "2014-11-10 19:00:09", "66.249.79.92", "1402");
INSERT INTO `wp_rg_form_view` VALUES("4876", "3", "2014-11-10 19:00:10", "66.249.79.92", "2846");
INSERT INTO `wp_rg_form_view` VALUES("4877", "6", "2014-11-10 20:00:00", "66.249.79.84", "1424");
INSERT INTO `wp_rg_form_view` VALUES("4878", "3", "2014-11-10 20:00:01", "66.249.79.84", "2879");
INSERT INTO `wp_rg_form_view` VALUES("4879", "6", "2014-11-10 21:00:00", "66.249.79.92", "1412");
INSERT INTO `wp_rg_form_view` VALUES("4880", "3", "2014-11-10 21:00:00", "66.249.79.92", "2864");
INSERT INTO `wp_rg_form_view` VALUES("4881", "1", "2014-11-10 21:00:48", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("4882", "6", "2014-11-10 22:00:00", "66.249.79.92", "1352");
INSERT INTO `wp_rg_form_view` VALUES("4883", "3", "2014-11-10 22:00:01", "66.249.79.92", "2736");
INSERT INTO `wp_rg_form_view` VALUES("4884", "1", "2014-11-10 22:24:56", "64.141.7.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("4885", "3", "2014-11-10 23:00:00", "66.249.79.84", "2442");
INSERT INTO `wp_rg_form_view` VALUES("4886", "6", "2014-11-10 23:00:03", "66.249.79.76", "1206");
INSERT INTO `wp_rg_form_view` VALUES("4887", "6", "2014-11-11 00:00:01", "66.249.79.84", "1266");
INSERT INTO `wp_rg_form_view` VALUES("4888", "3", "2014-11-11 00:00:01", "66.249.79.84", "2568");
INSERT INTO `wp_rg_form_view` VALUES("4889", "6", "2014-11-11 01:00:12", "207.46.13.82", "76");
INSERT INTO `wp_rg_form_view` VALUES("4890", "3", "2014-11-11 01:00:12", "207.46.13.82", "160");
INSERT INTO `wp_rg_form_view` VALUES("4891", "6", "2014-11-11 02:00:41", "66.249.79.76", "312");
INSERT INTO `wp_rg_form_view` VALUES("4892", "3", "2014-11-11 02:00:41", "66.249.79.76", "627");
INSERT INTO `wp_rg_form_view` VALUES("4893", "3", "2014-11-11 03:00:00", "66.249.79.84", "2671");
INSERT INTO `wp_rg_form_view` VALUES("4894", "6", "2014-11-11 03:00:04", "66.249.79.92", "1324");
INSERT INTO `wp_rg_form_view` VALUES("4895", "6", "2014-11-11 04:00:02", "66.249.79.92", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4896", "3", "2014-11-11 04:00:03", "66.249.79.92", "2806");
INSERT INTO `wp_rg_form_view` VALUES("4897", "6", "2014-11-11 05:00:16", "66.249.79.92", "1312");
INSERT INTO `wp_rg_form_view` VALUES("4898", "3", "2014-11-11 05:00:16", "66.249.79.92", "2683");
INSERT INTO `wp_rg_form_view` VALUES("4899", "2", "2014-11-11 05:16:42", "155.94.141.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("4900", "6", "2014-11-11 06:00:03", "66.249.79.84", "1342");
INSERT INTO `wp_rg_form_view` VALUES("4901", "3", "2014-11-11 06:00:03", "66.249.79.84", "2737");
INSERT INTO `wp_rg_form_view` VALUES("4902", "6", "2014-11-11 07:00:00", "66.249.79.84", "1312");
INSERT INTO `wp_rg_form_view` VALUES("4903", "3", "2014-11-11 07:00:01", "66.249.79.84", "2674");
INSERT INTO `wp_rg_form_view` VALUES("4904", "6", "2014-11-11 08:00:01", "66.249.79.76", "1366");
INSERT INTO `wp_rg_form_view` VALUES("4905", "3", "2014-11-11 08:00:01", "66.249.79.76", "2774");
INSERT INTO `wp_rg_form_view` VALUES("4906", "6", "2014-11-11 09:00:03", "66.249.79.92", "1458");
INSERT INTO `wp_rg_form_view` VALUES("4907", "3", "2014-11-11 09:00:03", "66.249.79.92", "2958");
INSERT INTO `wp_rg_form_view` VALUES("4908", "6", "2014-11-11 10:00:02", "66.249.79.76", "1366");
INSERT INTO `wp_rg_form_view` VALUES("4909", "3", "2014-11-11 10:00:02", "66.249.79.76", "2804");
INSERT INTO `wp_rg_form_view` VALUES("4910", "6", "2014-11-11 11:00:03", "66.249.79.92", "1399");
INSERT INTO `wp_rg_form_view` VALUES("4911", "3", "2014-11-11 11:00:04", "66.249.79.92", "2844");
INSERT INTO `wp_rg_form_view` VALUES("4912", "1", "2014-11-11 11:21:24", "158.85.89.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("4913", "6", "2014-11-11 12:00:00", "66.249.79.92", "1290");
INSERT INTO `wp_rg_form_view` VALUES("4914", "3", "2014-11-11 12:00:01", "66.249.79.92", "2628");
INSERT INTO `wp_rg_form_view` VALUES("4915", "6", "2014-11-11 13:00:10", "66.249.79.76", "646");
INSERT INTO `wp_rg_form_view` VALUES("4916", "3", "2014-11-11 13:00:10", "66.249.79.76", "1316");
INSERT INTO `wp_rg_form_view` VALUES("4917", "6", "2014-11-11 14:02:37", "66.249.67.132", "540");
INSERT INTO `wp_rg_form_view` VALUES("4918", "3", "2014-11-11 14:02:38", "66.249.67.132", "1118");
INSERT INTO `wp_rg_form_view` VALUES("4919", "2", "2014-11-11 14:55:09", "157.55.39.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("4920", "6", "2014-11-11 15:00:02", "66.249.79.92", "974");
INSERT INTO `wp_rg_form_view` VALUES("4921", "3", "2014-11-11 15:00:02", "66.249.79.92", "2000");
INSERT INTO `wp_rg_form_view` VALUES("4922", "6", "2014-11-11 16:00:11", "66.249.79.92", "1378");
INSERT INTO `wp_rg_form_view` VALUES("4923", "3", "2014-11-11 16:00:11", "66.249.79.92", "2787");
INSERT INTO `wp_rg_form_view` VALUES("4924", "1", "2014-11-11 16:24:22", "158.85.89.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("4925", "6", "2014-11-11 17:00:03", "66.249.79.76", "1394");
INSERT INTO `wp_rg_form_view` VALUES("4926", "3", "2014-11-11 17:00:04", "66.249.79.76", "2820");
INSERT INTO `wp_rg_form_view` VALUES("4927", "6", "2014-11-11 18:00:06", "66.249.79.76", "1560");
INSERT INTO `wp_rg_form_view` VALUES("4928", "3", "2014-11-11 18:00:06", "66.249.79.76", "3179");
INSERT INTO `wp_rg_form_view` VALUES("4929", "2", "2014-11-11 18:48:46", "103.229.125.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("4930", "1", "2014-11-11 18:48:50", "103.229.125.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("4931", "6", "2014-11-11 19:00:02", "66.249.79.92", "1358");
INSERT INTO `wp_rg_form_view` VALUES("4932", "3", "2014-11-11 19:00:02", "66.249.79.92", "2774");
INSERT INTO `wp_rg_form_view` VALUES("4933", "6", "2014-11-11 20:00:00", "66.249.79.84", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4934", "3", "2014-11-11 20:00:01", "66.249.79.84", "2800");
INSERT INTO `wp_rg_form_view` VALUES("4935", "6", "2014-11-11 21:00:01", "66.249.79.92", "1324");
INSERT INTO `wp_rg_form_view` VALUES("4936", "3", "2014-11-11 21:00:01", "66.249.79.92", "2702");
INSERT INTO `wp_rg_form_view` VALUES("4937", "6", "2014-11-11 22:00:09", "66.249.79.76", "1164");
INSERT INTO `wp_rg_form_view` VALUES("4938", "3", "2014-11-11 22:00:09", "66.249.79.76", "2364");
INSERT INTO `wp_rg_form_view` VALUES("4939", "6", "2014-11-11 23:00:02", "66.249.79.76", "1230");
INSERT INTO `wp_rg_form_view` VALUES("4940", "3", "2014-11-11 23:00:03", "66.249.79.76", "2500");
INSERT INTO `wp_rg_form_view` VALUES("4941", "6", "2014-11-12 00:00:02", "66.249.79.92", "1150");
INSERT INTO `wp_rg_form_view` VALUES("4942", "3", "2014-11-12 00:00:02", "66.249.79.92", "2326");
INSERT INTO `wp_rg_form_view` VALUES("4943", "6", "2014-11-12 01:00:02", "66.249.79.76", "840");
INSERT INTO `wp_rg_form_view` VALUES("4944", "3", "2014-11-12 01:00:02", "66.249.79.76", "1690");
INSERT INTO `wp_rg_form_view` VALUES("4945", "6", "2014-11-12 02:01:06", "66.249.79.92", "284");
INSERT INTO `wp_rg_form_view` VALUES("4946", "3", "2014-11-12 02:01:07", "66.249.79.92", "572");
INSERT INTO `wp_rg_form_view` VALUES("4947", "2", "2014-11-12 02:13:48", "188.165.15.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("4948", "6", "2014-11-12 03:00:03", "66.249.79.84", "1340");
INSERT INTO `wp_rg_form_view` VALUES("4949", "3", "2014-11-12 03:00:04", "66.249.79.84", "2733");
INSERT INTO `wp_rg_form_view` VALUES("4950", "6", "2014-11-12 04:00:01", "66.249.79.92", "1374");
INSERT INTO `wp_rg_form_view` VALUES("4951", "3", "2014-11-12 04:00:01", "66.249.79.92", "2804");
INSERT INTO `wp_rg_form_view` VALUES("4952", "6", "2014-11-12 05:00:00", "66.249.79.76", "1378");
INSERT INTO `wp_rg_form_view` VALUES("4953", "3", "2014-11-12 05:00:00", "66.249.79.76", "2786");
INSERT INTO `wp_rg_form_view` VALUES("4954", "6", "2014-11-12 06:00:05", "66.249.79.92", "1374");
INSERT INTO `wp_rg_form_view` VALUES("4955", "3", "2014-11-12 06:00:06", "66.249.79.92", "2806");
INSERT INTO `wp_rg_form_view` VALUES("4956", "6", "2014-11-12 07:00:00", "66.249.79.92", "1376");
INSERT INTO `wp_rg_form_view` VALUES("4957", "3", "2014-11-12 07:00:01", "66.249.79.92", "2795");
INSERT INTO `wp_rg_form_view` VALUES("4958", "2", "2014-11-12 07:13:37", "69.12.82.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("4959", "3", "2014-11-12 08:00:00", "66.249.79.76", "2795");
INSERT INTO `wp_rg_form_view` VALUES("4960", "6", "2014-11-12 08:00:04", "66.249.79.76", "1376");
INSERT INTO `wp_rg_form_view` VALUES("4961", "6", "2014-11-12 09:00:06", "66.249.79.92", "1386");
INSERT INTO `wp_rg_form_view` VALUES("4962", "3", "2014-11-12 09:00:06", "66.249.79.92", "2812");
INSERT INTO `wp_rg_form_view` VALUES("4963", "1", "2014-11-12 09:41:50", "157.55.39.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("4964", "6", "2014-11-12 10:00:02", "66.249.79.84", "1350");
INSERT INTO `wp_rg_form_view` VALUES("4965", "3", "2014-11-12 10:00:02", "66.249.79.84", "2757");
INSERT INTO `wp_rg_form_view` VALUES("4966", "3", "2014-11-12 11:00:02", "66.249.79.84", "2639");
INSERT INTO `wp_rg_form_view` VALUES("4967", "6", "2014-11-12 11:00:03", "66.249.79.84", "1296");
INSERT INTO `wp_rg_form_view` VALUES("4968", "1", "2014-11-12 11:17:38", "158.85.89.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("4969", "6", "2014-11-12 12:00:03", "66.249.79.84", "1188");
INSERT INTO `wp_rg_form_view` VALUES("4970", "3", "2014-11-12 12:00:03", "66.249.79.84", "2400");
INSERT INTO `wp_rg_form_view` VALUES("4971", "6", "2014-11-12 13:00:00", "66.249.79.92", "854");
INSERT INTO `wp_rg_form_view` VALUES("4972", "3", "2014-11-12 13:00:00", "66.249.79.92", "1760");
INSERT INTO `wp_rg_form_view` VALUES("4973", "6", "2014-11-12 14:00:51", "66.249.79.84", "96");
INSERT INTO `wp_rg_form_view` VALUES("4974", "3", "2014-11-12 14:00:52", "66.249.79.84", "198");
INSERT INTO `wp_rg_form_view` VALUES("4975", "6", "2014-11-12 15:00:23", "66.249.79.92", "1072");
INSERT INTO `wp_rg_form_view` VALUES("4976", "3", "2014-11-12 15:00:23", "66.249.79.92", "2208");
INSERT INTO `wp_rg_form_view` VALUES("4977", "6", "2014-11-12 16:00:02", "66.249.69.108", "1442");
INSERT INTO `wp_rg_form_view` VALUES("4978", "3", "2014-11-12 16:00:02", "66.249.69.108", "2936");
INSERT INTO `wp_rg_form_view` VALUES("4979", "6", "2014-11-12 17:00:05", "66.249.69.92", "1492");
INSERT INTO `wp_rg_form_view` VALUES("4980", "3", "2014-11-12 17:00:06", "66.249.69.92", "3032");
INSERT INTO `wp_rg_form_view` VALUES("4981", "6", "2014-11-12 18:00:02", "66.249.69.92", "1430");
INSERT INTO `wp_rg_form_view` VALUES("4982", "3", "2014-11-12 18:00:03", "66.249.69.92", "2922");
INSERT INTO `wp_rg_form_view` VALUES("4983", "6", "2014-11-12 19:00:01", "66.249.69.92", "1450");
INSERT INTO `wp_rg_form_view` VALUES("4984", "3", "2014-11-12 19:00:01", "66.249.69.92", "2920");
INSERT INTO `wp_rg_form_view` VALUES("4985", "6", "2014-11-12 20:00:07", "66.249.69.108", "1086");
INSERT INTO `wp_rg_form_view` VALUES("4986", "3", "2014-11-12 20:00:08", "66.249.69.108", "2208");
INSERT INTO `wp_rg_form_view` VALUES("4987", "6", "2014-11-12 21:00:02", "66.249.69.124", "1374");
INSERT INTO `wp_rg_form_view` VALUES("4988", "3", "2014-11-12 21:00:02", "66.249.69.124", "2794");
INSERT INTO `wp_rg_form_view` VALUES("4989", "3", "2014-11-12 22:00:01", "66.249.69.108", "3170");
INSERT INTO `wp_rg_form_view` VALUES("4990", "6", "2014-11-12 22:00:02", "66.249.69.108", "1564");
INSERT INTO `wp_rg_form_view` VALUES("4991", "6", "2014-11-12 23:00:04", "66.249.69.124", "1526");
INSERT INTO `wp_rg_form_view` VALUES("4992", "3", "2014-11-12 23:00:04", "66.249.69.124", "3096");
INSERT INTO `wp_rg_form_view` VALUES("4993", "3", "2014-11-13 00:00:00", "66.249.69.124", "3122");
INSERT INTO `wp_rg_form_view` VALUES("4994", "6", "2014-11-13 00:00:04", "66.249.69.108", "1534");
INSERT INTO `wp_rg_form_view` VALUES("4995", "6", "2014-11-13 01:00:01", "66.249.69.108", "370");
INSERT INTO `wp_rg_form_view` VALUES("4996", "3", "2014-11-13 01:00:01", "66.249.69.108", "756");
INSERT INTO `wp_rg_form_view` VALUES("4997", "6", "2014-11-13 02:00:07", "66.249.69.108", "406");
INSERT INTO `wp_rg_form_view` VALUES("4998", "3", "2014-11-13 02:00:07", "66.249.69.108", "816");
INSERT INTO `wp_rg_form_view` VALUES("4999", "6", "2014-11-13 03:00:02", "66.249.69.108", "1294");
INSERT INTO `wp_rg_form_view` VALUES("5000", "3", "2014-11-13 03:00:02", "66.249.69.108", "2641");
INSERT INTO `wp_rg_form_view` VALUES("5001", "6", "2014-11-13 04:00:00", "66.249.69.124", "1364");
INSERT INTO `wp_rg_form_view` VALUES("5002", "3", "2014-11-13 04:00:00", "66.249.69.124", "2777");
INSERT INTO `wp_rg_form_view` VALUES("5003", "6", "2014-11-13 05:00:05", "66.249.69.108", "1370");
INSERT INTO `wp_rg_form_view` VALUES("5004", "3", "2014-11-13 05:00:05", "66.249.69.108", "2764");
INSERT INTO `wp_rg_form_view` VALUES("5005", "6", "2014-11-13 06:00:01", "66.249.69.124", "1352");
INSERT INTO `wp_rg_form_view` VALUES("5006", "3", "2014-11-13 06:00:02", "66.249.69.124", "2742");
INSERT INTO `wp_rg_form_view` VALUES("5007", "3", "2014-11-13 07:00:00", "66.249.69.92", "2890");
INSERT INTO `wp_rg_form_view` VALUES("5008", "6", "2014-11-13 07:00:00", "66.249.69.92", "1412");
INSERT INTO `wp_rg_form_view` VALUES("5009", "1", "2014-11-13 07:59:13", "222.93.98.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("5010", "6", "2014-11-13 08:00:02", "66.249.69.92", "1408");
INSERT INTO `wp_rg_form_view` VALUES("5011", "3", "2014-11-13 08:00:03", "66.249.69.92", "2856");
INSERT INTO `wp_rg_form_view` VALUES("5012", "6", "2014-11-13 09:00:00", "66.249.69.108", "1360");
INSERT INTO `wp_rg_form_view` VALUES("5013", "3", "2014-11-13 09:00:01", "66.249.69.108", "2755");
INSERT INTO `wp_rg_form_view` VALUES("5014", "6", "2014-11-13 10:00:00", "66.249.69.108", "1400");
INSERT INTO `wp_rg_form_view` VALUES("5015", "3", "2014-11-13 10:00:00", "66.249.69.108", "2849");
INSERT INTO `wp_rg_form_view` VALUES("5016", "1", "2014-11-13 10:29:36", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("5017", "6", "2014-11-13 11:00:01", "66.249.69.92", "1340");
INSERT INTO `wp_rg_form_view` VALUES("5018", "3", "2014-11-13 11:00:01", "66.249.69.92", "2722");
INSERT INTO `wp_rg_form_view` VALUES("5019", "6", "2014-11-13 12:00:00", "66.249.69.108", "1374");
INSERT INTO `wp_rg_form_view` VALUES("5020", "3", "2014-11-13 12:00:01", "66.249.69.108", "2811");
INSERT INTO `wp_rg_form_view` VALUES("5021", "3", "2014-11-13 13:00:00", "66.249.69.92", "211");
INSERT INTO `wp_rg_form_view` VALUES("5022", "6", "2014-11-13 13:00:01", "66.249.69.124", "102");
INSERT INTO `wp_rg_form_view` VALUES("5023", "1", "2014-11-13 13:24:52", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("5024", "6", "2014-11-13 14:00:12", "66.249.69.124", "350");
INSERT INTO `wp_rg_form_view` VALUES("5025", "3", "2014-11-13 14:00:12", "66.249.69.124", "704");
INSERT INTO `wp_rg_form_view` VALUES("5026", "6", "2014-11-13 15:00:07", "66.249.69.124", "1104");
INSERT INTO `wp_rg_form_view` VALUES("5027", "3", "2014-11-13 15:00:07", "66.249.69.124", "2262");
INSERT INTO `wp_rg_form_view` VALUES("5028", "6", "2014-11-13 16:00:01", "66.249.69.92", "1282");
INSERT INTO `wp_rg_form_view` VALUES("5029", "3", "2014-11-13 16:00:01", "66.249.69.92", "2612");
INSERT INTO `wp_rg_form_view` VALUES("5030", "6", "2014-11-13 17:00:01", "66.249.69.92", "1290");
INSERT INTO `wp_rg_form_view` VALUES("5031", "3", "2014-11-13 17:00:02", "66.249.69.92", "2658");
INSERT INTO `wp_rg_form_view` VALUES("5032", "1", "2014-11-13 17:59:59", "174.127.133.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("5033", "6", "2014-11-13 18:00:00", "174.127.133.92", "1520");
INSERT INTO `wp_rg_form_view` VALUES("5034", "3", "2014-11-13 18:00:00", "174.127.133.92", "3097");
INSERT INTO `wp_rg_form_view` VALUES("5035", "2", "2014-11-13 18:02:25", "174.127.133.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("5036", "1", "2014-11-13 18:29:27", "174.127.133.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("5037", "6", "2014-11-13 19:00:03", "66.249.79.84", "1332");
INSERT INTO `wp_rg_form_view` VALUES("5038", "3", "2014-11-13 19:00:03", "66.249.79.84", "2720");
INSERT INTO `wp_rg_form_view` VALUES("5039", "6", "2014-11-13 20:00:00", "66.249.79.76", "1487");
INSERT INTO `wp_rg_form_view` VALUES("5040", "3", "2014-11-13 20:00:01", "66.249.79.76", "3015");
INSERT INTO `wp_rg_form_view` VALUES("5041", "1", "2014-11-13 20:56:31", "74.247.76.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("5042", "2", "2014-11-13 20:56:47", "74.247.76.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("5043", "3", "2014-11-13 21:00:00", "66.249.79.76", "3580");
INSERT INTO `wp_rg_form_view` VALUES("5044", "6", "2014-11-13 21:00:02", "66.249.79.76", "1745");
INSERT INTO `wp_rg_form_view` VALUES("5045", "2", "2014-11-13 21:06:54", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("5046", "1", "2014-11-13 21:07:03", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("5047", "3", "2014-11-13 22:00:00", "66.249.79.76", "3028");
INSERT INTO `wp_rg_form_view` VALUES("5048", "6", "2014-11-13 22:00:02", "100.43.85.24", "1490");
INSERT INTO `wp_rg_form_view` VALUES("5049", "1", "2014-11-13 22:36:37", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("5050", "6", "2014-11-13 23:00:00", "66.249.79.76", "1246");
INSERT INTO `wp_rg_form_view` VALUES("5051", "3", "2014-11-13 23:00:01", "66.249.79.76", "2536");
INSERT INTO `wp_rg_form_view` VALUES("5052", "6", "2014-11-14 00:00:01", "66.249.79.84", "1340");
INSERT INTO `wp_rg_form_view` VALUES("5053", "3", "2014-11-14 00:00:01", "66.249.79.84", "2714");
INSERT INTO `wp_rg_form_view` VALUES("5054", "6", "2014-11-14 01:00:10", "66.249.79.84", "238");
INSERT INTO `wp_rg_form_view` VALUES("5055", "3", "2014-11-14 01:00:10", "66.249.79.84", "474");
INSERT INTO `wp_rg_form_view` VALUES("5056", "1", "2014-11-14 01:51:26", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("5057", "6", "2014-11-14 02:01:25", "66.249.79.92", "633");
INSERT INTO `wp_rg_form_view` VALUES("5058", "3", "2014-11-14 02:01:25", "66.249.79.92", "1301");
INSERT INTO `wp_rg_form_view` VALUES("5059", "6", "2014-11-14 03:00:04", "66.249.79.92", "1178");
INSERT INTO `wp_rg_form_view` VALUES("5060", "3", "2014-11-14 03:00:04", "66.249.79.92", "2418");
INSERT INTO `wp_rg_form_view` VALUES("5061", "6", "2014-11-14 04:00:03", "66.249.79.84", "1332");
INSERT INTO `wp_rg_form_view` VALUES("5062", "3", "2014-11-14 04:00:04", "66.249.79.84", "2704");
INSERT INTO `wp_rg_form_view` VALUES("5063", "1", "2014-11-14 04:38:28", "24.68.112.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("5064", "6", "2014-11-14 05:00:06", "66.249.79.84", "1384");
INSERT INTO `wp_rg_form_view` VALUES("5065", "3", "2014-11-14 05:00:06", "66.249.79.84", "2818");
INSERT INTO `wp_rg_form_view` VALUES("5066", "1", "2014-11-14 05:14:48", "24.68.112.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("5067", "6", "2014-11-14 06:00:08", "66.249.79.76", "1368");
INSERT INTO `wp_rg_form_view` VALUES("5068", "3", "2014-11-14 06:00:08", "66.249.79.76", "2778");
INSERT INTO `wp_rg_form_view` VALUES("5069", "3", "2014-11-14 07:00:00", "66.249.79.84", "2917");
INSERT INTO `wp_rg_form_view` VALUES("5070", "6", "2014-11-14 07:00:04", "66.249.79.92", "1440");
INSERT INTO `wp_rg_form_view` VALUES("5071", "6", "2014-11-14 08:00:03", "66.249.79.76", "1342");
INSERT INTO `wp_rg_form_view` VALUES("5072", "3", "2014-11-14 08:00:03", "66.249.79.76", "2729");
INSERT INTO `wp_rg_form_view` VALUES("5073", "3", "2014-11-14 09:00:00", "66.249.79.92", "2375");
INSERT INTO `wp_rg_form_view` VALUES("5074", "6", "2014-11-14 09:00:01", "66.249.79.92", "1158");
INSERT INTO `wp_rg_form_view` VALUES("5075", "6", "2014-11-14 10:00:01", "66.249.79.76", "1336");
INSERT INTO `wp_rg_form_view` VALUES("5076", "3", "2014-11-14 10:00:01", "66.249.79.76", "2718");
INSERT INTO `wp_rg_form_view` VALUES("5077", "6", "2014-11-14 11:00:01", "66.249.79.84", "1312");
INSERT INTO `wp_rg_form_view` VALUES("5078", "3", "2014-11-14 11:00:01", "66.249.79.84", "2672");
INSERT INTO `wp_rg_form_view` VALUES("5079", "6", "2014-11-14 12:00:00", "66.249.79.92", "1392");
INSERT INTO `wp_rg_form_view` VALUES("5080", "3", "2014-11-14 12:00:00", "66.249.79.92", "2841");
INSERT INTO `wp_rg_form_view` VALUES("5081", "1", "2014-11-14 12:18:24", "158.85.89.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("5082", "6", "2014-11-14 13:00:16", "66.249.79.92", "96");
INSERT INTO `wp_rg_form_view` VALUES("5083", "3", "2014-11-14 13:00:17", "66.249.79.92", "196");
INSERT INTO `wp_rg_form_view` VALUES("5084", "6", "2014-11-14 14:00:16", "66.249.79.84", "967");
INSERT INTO `wp_rg_form_view` VALUES("5085", "3", "2014-11-14 14:00:16", "66.249.79.84", "1964");
INSERT INTO `wp_rg_form_view` VALUES("5086", "6", "2014-11-14 15:00:03", "66.249.79.84", "1292");
INSERT INTO `wp_rg_form_view` VALUES("5087", "3", "2014-11-14 15:00:03", "66.249.79.84", "2630");
INSERT INTO `wp_rg_form_view` VALUES("5088", "6", "2014-11-14 16:00:02", "66.249.79.76", "1342");
INSERT INTO `wp_rg_form_view` VALUES("5089", "3", "2014-11-14 16:00:03", "66.249.79.76", "2748");
INSERT INTO `wp_rg_form_view` VALUES("5090", "1", "2014-11-14 16:22:42", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("5091", "6", "2014-11-14 17:00:01", "66.249.79.84", "1396");
INSERT INTO `wp_rg_form_view` VALUES("5092", "3", "2014-11-14 17:00:02", "66.249.79.84", "2834");
INSERT INTO `wp_rg_form_view` VALUES("5093", "6", "2014-11-14 18:00:03", "66.249.79.76", "1276");
INSERT INTO `wp_rg_form_view` VALUES("5094", "3", "2014-11-14 18:00:04", "66.249.79.76", "2604");
INSERT INTO `wp_rg_form_view` VALUES("5095", "6", "2014-11-14 19:00:01", "66.249.79.76", "1370");
INSERT INTO `wp_rg_form_view` VALUES("5096", "3", "2014-11-14 19:00:01", "66.249.79.76", "2802");
INSERT INTO `wp_rg_form_view` VALUES("5097", "6", "2014-11-14 20:00:03", "66.249.79.76", "1336");
INSERT INTO `wp_rg_form_view` VALUES("5098", "3", "2014-11-14 20:00:04", "66.249.79.76", "2700");
INSERT INTO `wp_rg_form_view` VALUES("5099", "6", "2014-11-14 21:00:01", "66.249.79.76", "1368");
INSERT INTO `wp_rg_form_view` VALUES("5100", "3", "2014-11-14 21:00:01", "66.249.79.76", "2782");
INSERT INTO `wp_rg_form_view` VALUES("5101", "6", "2014-11-14 22:00:02", "66.249.79.92", "1461");
INSERT INTO `wp_rg_form_view` VALUES("5102", "3", "2014-11-14 22:00:02", "66.249.79.92", "3020");
INSERT INTO `wp_rg_form_view` VALUES("5103", "6", "2014-11-14 23:00:01", "66.249.79.84", "1395");
INSERT INTO `wp_rg_form_view` VALUES("5104", "3", "2014-11-14 23:00:01", "66.249.79.84", "2837");
INSERT INTO `wp_rg_form_view` VALUES("5105", "6", "2014-11-15 00:00:03", "66.249.79.92", "1276");
INSERT INTO `wp_rg_form_view` VALUES("5106", "3", "2014-11-15 00:00:03", "66.249.79.92", "2592");
INSERT INTO `wp_rg_form_view` VALUES("5107", "6", "2014-11-15 01:01:07", "66.249.79.76", "96");
INSERT INTO `wp_rg_form_view` VALUES("5108", "3", "2014-11-15 01:01:08", "66.249.79.76", "195");
INSERT INTO `wp_rg_form_view` VALUES("5109", "6", "2014-11-15 02:00:48", "66.249.79.76", "616");
INSERT INTO `wp_rg_form_view` VALUES("5110", "3", "2014-11-15 02:00:48", "66.249.79.76", "1252");
INSERT INTO `wp_rg_form_view` VALUES("5111", "1", "2014-11-15 02:19:52", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("5112", "6", "2014-11-15 03:01:29", "66.249.79.92", "1120");
INSERT INTO `wp_rg_form_view` VALUES("5113", "3", "2014-11-15 03:01:29", "66.249.79.92", "2285");
INSERT INTO `wp_rg_form_view` VALUES("5114", "1", "2014-11-15 03:44:28", "158.85.89.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("5115", "6", "2014-11-15 04:00:24", "66.249.79.76", "1214");
INSERT INTO `wp_rg_form_view` VALUES("5116", "3", "2014-11-15 04:00:25", "66.249.79.76", "2498");
INSERT INTO `wp_rg_form_view` VALUES("5117", "6", "2014-11-15 05:00:02", "66.249.79.76", "1388");
INSERT INTO `wp_rg_form_view` VALUES("5118", "3", "2014-11-15 05:00:02", "66.249.79.76", "2800");
INSERT INTO `wp_rg_form_view` VALUES("5119", "6", "2014-11-15 06:00:03", "66.249.79.92", "1298");
INSERT INTO `wp_rg_form_view` VALUES("5120", "3", "2014-11-15 06:00:03", "66.249.79.92", "2644");
INSERT INTO `wp_rg_form_view` VALUES("5121", "6", "2014-11-15 07:00:03", "66.249.79.92", "1048");
INSERT INTO `wp_rg_form_view` VALUES("5122", "3", "2014-11-15 07:00:04", "66.249.79.92", "2117");
INSERT INTO `wp_rg_form_view` VALUES("5123", "6", "2014-11-15 08:00:04", "66.249.79.76", "1400");
INSERT INTO `wp_rg_form_view` VALUES("5124", "3", "2014-11-15 08:00:04", "66.249.79.76", "2846");
INSERT INTO `wp_rg_form_view` VALUES("5125", "6", "2014-11-15 09:00:03", "66.249.79.84", "1374");
INSERT INTO `wp_rg_form_view` VALUES("5126", "3", "2014-11-15 09:00:04", "66.249.79.84", "2806");
INSERT INTO `wp_rg_form_view` VALUES("5127", "1", "2014-11-15 09:36:57", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("5128", "6", "2014-11-15 10:00:18", "66.249.79.76", "1068");
INSERT INTO `wp_rg_form_view` VALUES("5129", "3", "2014-11-15 10:00:19", "66.249.79.76", "2186");
INSERT INTO `wp_rg_form_view` VALUES("5130", "6", "2014-11-15 11:00:01", "66.249.79.92", "1306");
INSERT INTO `wp_rg_form_view` VALUES("5131", "3", "2014-11-15 11:00:01", "66.249.79.92", "2654");
INSERT INTO `wp_rg_form_view` VALUES("5132", "6", "2014-11-15 12:00:00", "66.249.79.84", "1896");
INSERT INTO `wp_rg_form_view` VALUES("5133", "3", "2014-11-15 12:00:01", "66.249.79.84", "3882");
INSERT INTO `wp_rg_form_view` VALUES("5134", "1", "2014-11-15 12:14:28", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5135", "3", "2014-11-15 13:00:00", "66.249.79.84", "195");
INSERT INTO `wp_rg_form_view` VALUES("5136", "6", "2014-11-15 13:00:03", "66.249.79.76", "96");
INSERT INTO `wp_rg_form_view` VALUES("5137", "6", "2014-11-15 14:00:00", "66.249.79.76", "902");
INSERT INTO `wp_rg_form_view` VALUES("5138", "3", "2014-11-15 14:00:00", "66.249.79.76", "1823");
INSERT INTO `wp_rg_form_view` VALUES("5139", "6", "2014-11-15 15:00:02", "66.249.79.76", "1000");
INSERT INTO `wp_rg_form_view` VALUES("5140", "3", "2014-11-15 15:00:02", "66.249.79.76", "2050");
INSERT INTO `wp_rg_form_view` VALUES("5141", "6", "2014-11-15 16:00:17", "66.249.79.92", "1122");
INSERT INTO `wp_rg_form_view` VALUES("5142", "3", "2014-11-15 16:00:18", "66.249.79.92", "2289");
INSERT INTO `wp_rg_form_view` VALUES("5143", "1", "2014-11-15 16:41:43", "158.85.89.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("5144", "6", "2014-11-15 17:01:55", "66.249.79.76", "1252");
INSERT INTO `wp_rg_form_view` VALUES("5145", "3", "2014-11-15 17:01:55", "66.249.79.76", "2551");
INSERT INTO `wp_rg_form_view` VALUES("5146", "6", "2014-11-15 18:00:02", "66.249.79.92", "1240");
INSERT INTO `wp_rg_form_view` VALUES("5147", "3", "2014-11-15 18:00:02", "66.249.79.92", "2532");
INSERT INTO `wp_rg_form_view` VALUES("5148", "6", "2014-11-15 19:00:00", "66.249.79.92", "770");
INSERT INTO `wp_rg_form_view` VALUES("5149", "3", "2014-11-15 19:00:01", "66.249.79.92", "1550");
INSERT INTO `wp_rg_form_view` VALUES("5150", "6", "2014-11-15 20:00:01", "66.249.79.84", "1384");
INSERT INTO `wp_rg_form_view` VALUES("5151", "3", "2014-11-15 20:00:02", "66.249.79.84", "2814");
INSERT INTO `wp_rg_form_view` VALUES("5152", "6", "2014-11-15 21:00:02", "66.249.79.92", "1178");
INSERT INTO `wp_rg_form_view` VALUES("5153", "3", "2014-11-15 21:00:02", "66.249.79.92", "2396");
INSERT INTO `wp_rg_form_view` VALUES("5154", "6", "2014-11-15 22:00:17", "66.249.79.76", "1396");
INSERT INTO `wp_rg_form_view` VALUES("5155", "3", "2014-11-15 22:00:17", "66.249.79.76", "2837");
INSERT INTO `wp_rg_form_view` VALUES("5156", "6", "2014-11-15 23:00:00", "66.249.79.84", "1433");
INSERT INTO `wp_rg_form_view` VALUES("5157", "3", "2014-11-15 23:00:00", "66.249.79.84", "2907");
INSERT INTO `wp_rg_form_view` VALUES("5158", "3", "2014-11-16 00:00:00", "66.249.79.84", "2940");
INSERT INTO `wp_rg_form_view` VALUES("5159", "6", "2014-11-16 00:00:02", "66.249.79.84", "1448");
INSERT INTO `wp_rg_form_view` VALUES("5160", "6", "2014-11-16 01:00:02", "66.249.79.76", "584");
INSERT INTO `wp_rg_form_view` VALUES("5161", "3", "2014-11-16 01:00:02", "66.249.79.76", "1189");
INSERT INTO `wp_rg_form_view` VALUES("5162", "1", "2014-11-16 01:11:21", "158.85.89.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("5163", "6", "2014-11-16 02:06:43", "207.46.13.102", "220");
INSERT INTO `wp_rg_form_view` VALUES("5164", "3", "2014-11-16 02:06:43", "207.46.13.102", "452");
INSERT INTO `wp_rg_form_view` VALUES("5165", "6", "2014-11-16 03:00:11", "66.249.79.92", "1192");
INSERT INTO `wp_rg_form_view` VALUES("5166", "3", "2014-11-16 03:00:11", "66.249.79.92", "2451");
INSERT INTO `wp_rg_form_view` VALUES("5167", "1", "2014-11-16 03:24:05", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("5168", "6", "2014-11-16 04:00:01", "66.249.79.92", "1588");
INSERT INTO `wp_rg_form_view` VALUES("5169", "3", "2014-11-16 04:00:02", "66.249.79.92", "3228");
INSERT INTO `wp_rg_form_view` VALUES("5170", "6", "2014-11-16 05:00:06", "66.249.79.84", "1248");
INSERT INTO `wp_rg_form_view` VALUES("5171", "3", "2014-11-16 05:00:07", "66.249.79.84", "2523");
INSERT INTO `wp_rg_form_view` VALUES("5172", "6", "2014-11-16 06:00:00", "66.249.79.76", "1564");
INSERT INTO `wp_rg_form_view` VALUES("5173", "3", "2014-11-16 06:00:00", "66.249.79.76", "3168");
INSERT INTO `wp_rg_form_view` VALUES("5174", "6", "2014-11-16 07:00:01", "66.249.79.84", "1410");
INSERT INTO `wp_rg_form_view` VALUES("5175", "3", "2014-11-16 07:00:01", "66.249.79.84", "2883");
INSERT INTO `wp_rg_form_view` VALUES("5176", "1", "2014-11-16 07:40:00", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("5177", "6", "2014-11-16 08:00:00", "66.249.79.84", "1598");
INSERT INTO `wp_rg_form_view` VALUES("5178", "3", "2014-11-16 08:00:01", "66.249.79.84", "3249");
INSERT INTO `wp_rg_form_view` VALUES("5179", "1", "2014-11-16 08:09:50", "192.241.144.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("5180", "2", "2014-11-16 08:09:55", "192.241.144.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("5181", "6", "2014-11-16 09:00:01", "66.249.79.92", "1672");
INSERT INTO `wp_rg_form_view` VALUES("5182", "3", "2014-11-16 09:00:01", "66.249.79.92", "3380");
INSERT INTO `wp_rg_form_view` VALUES("5183", "6", "2014-11-16 10:00:00", "66.249.79.76", "1386");
INSERT INTO `wp_rg_form_view` VALUES("5184", "3", "2014-11-16 10:00:00", "66.249.79.76", "2786");
INSERT INTO `wp_rg_form_view` VALUES("5185", "6", "2014-11-16 11:00:02", "66.249.79.92", "1264");
INSERT INTO `wp_rg_form_view` VALUES("5186", "3", "2014-11-16 11:00:02", "66.249.79.92", "2542");
INSERT INTO `wp_rg_form_view` VALUES("5187", "6", "2014-11-16 12:00:02", "66.249.79.76", "1332");
INSERT INTO `wp_rg_form_view` VALUES("5188", "3", "2014-11-16 12:00:03", "66.249.79.76", "2686");
INSERT INTO `wp_rg_form_view` VALUES("5189", "6", "2014-11-16 13:01:47", "66.249.79.84", "46");
INSERT INTO `wp_rg_form_view` VALUES("5190", "3", "2014-11-16 13:01:47", "66.249.79.84", "96");
INSERT INTO `wp_rg_form_view` VALUES("5191", "3", "2014-11-16 14:01:02", "72.46.156.99", "1460");
INSERT INTO `wp_rg_form_view` VALUES("5192", "6", "2014-11-16 14:01:03", "72.46.156.99", "716");
INSERT INTO `wp_rg_form_view` VALUES("5193", "6", "2014-11-16 15:00:56", "66.249.79.92", "744");
INSERT INTO `wp_rg_form_view` VALUES("5194", "3", "2014-11-16 15:00:56", "66.249.79.92", "1515");
INSERT INTO `wp_rg_form_view` VALUES("5195", "6", "2014-11-16 16:00:02", "66.249.79.92", "850");
INSERT INTO `wp_rg_form_view` VALUES("5196", "3", "2014-11-16 16:00:02", "66.249.79.92", "1712");
INSERT INTO `wp_rg_form_view` VALUES("5197", "6", "2014-11-16 17:00:05", "66.249.79.92", "1096");
INSERT INTO `wp_rg_form_view` VALUES("5198", "3", "2014-11-16 17:00:05", "66.249.79.92", "2234");
INSERT INTO `wp_rg_form_view` VALUES("5199", "6", "2014-11-16 18:00:03", "66.249.79.84", "1208");
INSERT INTO `wp_rg_form_view` VALUES("5200", "3", "2014-11-16 18:00:03", "66.249.79.84", "2473");
INSERT INTO `wp_rg_form_view` VALUES("5201", "1", "2014-11-16 18:56:16", "192.99.141.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("5202", "6", "2014-11-16 19:00:02", "66.249.79.92", "1452");
INSERT INTO `wp_rg_form_view` VALUES("5203", "3", "2014-11-16 19:00:02", "66.249.79.92", "2960");
INSERT INTO `wp_rg_form_view` VALUES("5204", "3", "2014-11-16 20:00:00", "66.249.79.84", "2386");
INSERT INTO `wp_rg_form_view` VALUES("5205", "6", "2014-11-16 20:00:04", "66.249.79.92", "1172");
INSERT INTO `wp_rg_form_view` VALUES("5206", "6", "2014-11-16 21:00:04", "66.249.79.84", "1344");
INSERT INTO `wp_rg_form_view` VALUES("5207", "3", "2014-11-16 21:00:05", "66.249.79.84", "2726");
INSERT INTO `wp_rg_form_view` VALUES("5208", "6", "2014-11-16 22:00:03", "66.249.79.92", "1236");
INSERT INTO `wp_rg_form_view` VALUES("5209", "3", "2014-11-16 22:00:03", "66.249.79.92", "2522");
INSERT INTO `wp_rg_form_view` VALUES("5210", "6", "2014-11-16 23:00:00", "66.249.79.84", "1220");
INSERT INTO `wp_rg_form_view` VALUES("5211", "3", "2014-11-16 23:00:00", "66.249.79.84", "2485");
INSERT INTO `wp_rg_form_view` VALUES("5212", "6", "2014-11-17 00:00:03", "66.249.79.76", "546");
INSERT INTO `wp_rg_form_view` VALUES("5213", "3", "2014-11-17 00:00:03", "66.249.79.76", "1103");
INSERT INTO `wp_rg_form_view` VALUES("5214", "3", "2014-11-17 01:00:00", "66.249.79.76", "810");
INSERT INTO `wp_rg_form_view` VALUES("5215", "6", "2014-11-17 01:03:54", "66.249.79.76", "392");
INSERT INTO `wp_rg_form_view` VALUES("5216", "1", "2014-11-17 01:32:32", "158.85.89.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("5217", "6", "2014-11-17 02:00:02", "66.249.79.76", "824");
INSERT INTO `wp_rg_form_view` VALUES("5218", "3", "2014-11-17 02:00:02", "66.249.79.76", "1698");
INSERT INTO `wp_rg_form_view` VALUES("5219", "3", "2014-11-17 03:00:00", "66.249.79.84", "1183");
INSERT INTO `wp_rg_form_view` VALUES("5220", "6", "2014-11-17 03:00:07", "66.249.79.84", "588");
INSERT INTO `wp_rg_form_view` VALUES("5221", "6", "2014-11-17 04:05:52", "217.69.133.69", "860");
INSERT INTO `wp_rg_form_view` VALUES("5222", "3", "2014-11-17 04:05:52", "217.69.133.69", "1750");
INSERT INTO `wp_rg_form_view` VALUES("5223", "3", "2014-11-17 05:00:00", "66.249.79.84", "3130");
INSERT INTO `wp_rg_form_view` VALUES("5224", "6", "2014-11-17 05:00:10", "66.249.79.84", "1542");
INSERT INTO `wp_rg_form_view` VALUES("5225", "1", "2014-11-17 05:54:37", "158.85.89.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("5226", "6", "2014-11-17 06:00:00", "66.249.79.92", "1490");
INSERT INTO `wp_rg_form_view` VALUES("5227", "3", "2014-11-17 06:00:01", "66.249.79.92", "3005");
INSERT INTO `wp_rg_form_view` VALUES("5228", "6", "2014-11-17 07:00:03", "66.249.79.84", "1598");
INSERT INTO `wp_rg_form_view` VALUES("5229", "3", "2014-11-17 07:00:03", "66.249.79.84", "3228");
INSERT INTO `wp_rg_form_view` VALUES("5230", "6", "2014-11-17 08:00:02", "66.249.79.76", "1606");
INSERT INTO `wp_rg_form_view` VALUES("5231", "3", "2014-11-17 08:00:02", "66.249.79.76", "3292");
INSERT INTO `wp_rg_form_view` VALUES("5232", "6", "2014-11-17 09:00:00", "66.249.79.84", "1552");
INSERT INTO `wp_rg_form_view` VALUES("5233", "3", "2014-11-17 09:00:00", "66.249.79.84", "3192");
INSERT INTO `wp_rg_form_view` VALUES("5234", "6", "2014-11-17 10:00:01", "66.249.79.76", "1438");
INSERT INTO `wp_rg_form_view` VALUES("5235", "3", "2014-11-17 10:00:02", "66.249.79.76", "2948");
INSERT INTO `wp_rg_form_view` VALUES("5236", "6", "2014-11-17 11:00:00", "66.249.79.76", "1188");
INSERT INTO `wp_rg_form_view` VALUES("5237", "3", "2014-11-17 11:00:00", "66.249.79.76", "2405");
INSERT INTO `wp_rg_form_view` VALUES("5238", "6", "2014-11-17 12:00:05", "66.249.79.76", "124");
INSERT INTO `wp_rg_form_view` VALUES("5239", "3", "2014-11-17 12:00:05", "66.249.79.76", "255");
INSERT INTO `wp_rg_form_view` VALUES("5240", "6", "2014-11-17 13:00:35", "66.249.79.92", "76");
INSERT INTO `wp_rg_form_view` VALUES("5241", "3", "2014-11-17 13:00:35", "66.249.79.92", "152");
INSERT INTO `wp_rg_form_view` VALUES("5242", "6", "2014-11-17 14:00:51", "66.249.79.92", "136");
INSERT INTO `wp_rg_form_view` VALUES("5243", "3", "2014-11-17 14:00:51", "66.249.79.92", "285");
INSERT INTO `wp_rg_form_view` VALUES("5244", "6", "2014-11-17 15:00:00", "66.249.79.92", "1160");
INSERT INTO `wp_rg_form_view` VALUES("5245", "3", "2014-11-17 15:00:00", "66.249.79.92", "2372");
INSERT INTO `wp_rg_form_view` VALUES("5246", "6", "2014-11-17 16:00:06", "66.249.79.92", "1315");
INSERT INTO `wp_rg_form_view` VALUES("5247", "3", "2014-11-17 16:00:07", "66.249.79.92", "2669");
INSERT INTO `wp_rg_form_view` VALUES("5248", "3", "2014-11-17 17:00:00", "66.249.79.76", "2744");
INSERT INTO `wp_rg_form_view` VALUES("5249", "6", "2014-11-17 17:00:04", "66.249.79.76", "1347");
INSERT INTO `wp_rg_form_view` VALUES("5250", "1", "2014-11-17 17:21:13", "63.142.244.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("5251", "2", "2014-11-17 17:21:21", "63.142.244.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("5252", "6", "2014-11-17 18:00:02", "66.249.79.76", "2166");
INSERT INTO `wp_rg_form_view` VALUES("5253", "3", "2014-11-17 18:00:02", "66.249.79.76", "4392");
INSERT INTO `wp_rg_form_view` VALUES("5254", "1", "2014-11-17 18:26:33", "24.108.148.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("5255", "6", "2014-11-17 19:00:02", "107.170.42.27", "2104");
INSERT INTO `wp_rg_form_view` VALUES("5256", "3", "2014-11-17 19:00:03", "107.170.42.27", "4374");
INSERT INTO `wp_rg_form_view` VALUES("5257", "6", "2014-11-17 20:00:03", "66.249.79.92", "960");
INSERT INTO `wp_rg_form_view` VALUES("5258", "3", "2014-11-17 20:00:03", "66.249.79.92", "1948");
INSERT INTO `wp_rg_form_view` VALUES("5259", "6", "2014-11-17 21:00:01", "66.249.79.92", "1282");
INSERT INTO `wp_rg_form_view` VALUES("5260", "3", "2014-11-17 21:00:01", "66.249.79.92", "2596");
INSERT INTO `wp_rg_form_view` VALUES("5261", "6", "2014-11-17 22:00:00", "66.249.79.84", "1294");
INSERT INTO `wp_rg_form_view` VALUES("5262", "3", "2014-11-17 22:00:00", "66.249.79.84", "2626");
INSERT INTO `wp_rg_form_view` VALUES("5263", "6", "2014-11-17 23:00:04", "66.249.79.76", "1260");
INSERT INTO `wp_rg_form_view` VALUES("5264", "3", "2014-11-17 23:00:04", "66.249.79.76", "2577");
INSERT INTO `wp_rg_form_view` VALUES("5265", "6", "2014-11-18 00:00:00", "66.249.79.92", "451");
INSERT INTO `wp_rg_form_view` VALUES("5266", "3", "2014-11-18 00:00:00", "66.249.79.92", "933");
INSERT INTO `wp_rg_form_view` VALUES("5267", "2", "2014-11-18 00:49:26", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("5268", "6", "2014-11-18 01:05:26", "66.249.79.76", "45");
INSERT INTO `wp_rg_form_view` VALUES("5269", "3", "2014-11-18 01:05:26", "66.249.79.76", "99");
INSERT INTO `wp_rg_form_view` VALUES("5270", "1", "2014-11-18 01:12:22", "212.187.107.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("5271", "2", "2014-11-18 01:12:28", "212.187.107.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("5272", "6", "2014-11-18 02:13:43", "188.165.15.223", "34");
INSERT INTO `wp_rg_form_view` VALUES("5273", "3", "2014-11-18 02:13:43", "188.165.15.223", "68");
INSERT INTO `wp_rg_form_view` VALUES("5274", "6", "2014-11-18 03:01:16", "66.249.79.84", "702");
INSERT INTO `wp_rg_form_view` VALUES("5275", "3", "2014-11-18 03:01:16", "66.249.79.84", "1408");
INSERT INTO `wp_rg_form_view` VALUES("5276", "6", "2014-11-18 04:00:03", "66.249.79.92", "1140");
INSERT INTO `wp_rg_form_view` VALUES("5277", "3", "2014-11-18 04:00:04", "66.249.79.92", "2328");
INSERT INTO `wp_rg_form_view` VALUES("5278", "6", "2014-11-18 05:00:10", "66.249.79.76", "1368");
INSERT INTO `wp_rg_form_view` VALUES("5279", "3", "2014-11-18 05:00:10", "66.249.79.76", "2776");
INSERT INTO `wp_rg_form_view` VALUES("5280", "6", "2014-11-18 06:00:00", "66.249.79.84", "1462");
INSERT INTO `wp_rg_form_view` VALUES("5281", "3", "2014-11-18 06:00:00", "66.249.79.84", "2953");
INSERT INTO `wp_rg_form_view` VALUES("5282", "6", "2014-11-18 07:00:01", "66.249.79.76", "1542");
INSERT INTO `wp_rg_form_view` VALUES("5283", "3", "2014-11-18 07:00:02", "66.249.79.76", "3129");
INSERT INTO `wp_rg_form_view` VALUES("5284", "1", "2014-11-18 07:40:55", "158.85.89.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("5285", "6", "2014-11-18 08:00:02", "66.249.79.92", "1264");
INSERT INTO `wp_rg_form_view` VALUES("5286", "3", "2014-11-18 08:00:02", "66.249.79.92", "2538");
INSERT INTO `wp_rg_form_view` VALUES("5287", "6", "2014-11-18 09:00:03", "66.249.79.76", "1496");
INSERT INTO `wp_rg_form_view` VALUES("5288", "3", "2014-11-18 09:00:03", "66.249.79.76", "3052");
INSERT INTO `wp_rg_form_view` VALUES("5289", "1", "2014-11-18 09:04:28", "183.222.251.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("5290", "6", "2014-11-18 10:00:00", "66.249.79.92", "1446");
INSERT INTO `wp_rg_form_view` VALUES("5291", "3", "2014-11-18 10:00:01", "66.249.79.92", "2924");
INSERT INTO `wp_rg_form_view` VALUES("5292", "3", "2014-11-18 11:00:00", "66.249.79.76", "2481");
INSERT INTO `wp_rg_form_view` VALUES("5293", "6", "2014-11-18 11:00:06", "66.249.79.84", "1215");
INSERT INTO `wp_rg_form_view` VALUES("5294", "1", "2014-11-18 11:39:34", "5.39.223.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("5295", "2", "2014-11-18 11:39:56", "5.39.223.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("5296", "6", "2014-11-18 12:10:25", "100.43.85.24", "14");
INSERT INTO `wp_rg_form_view` VALUES("5297", "3", "2014-11-18 12:10:25", "100.43.85.24", "28");
INSERT INTO `wp_rg_form_view` VALUES("5298", "6", "2014-11-18 13:03:15", "66.249.79.84", "52");
INSERT INTO `wp_rg_form_view` VALUES("5299", "3", "2014-11-18 13:03:16", "66.249.79.84", "102");
INSERT INTO `wp_rg_form_view` VALUES("5300", "6", "2014-11-18 14:00:12", "66.249.79.92", "158");
INSERT INTO `wp_rg_form_view` VALUES("5301", "3", "2014-11-18 14:00:12", "66.249.79.92", "322");
INSERT INTO `wp_rg_form_view` VALUES("5302", "6", "2014-11-18 15:00:15", "66.249.79.92", "472");
INSERT INTO `wp_rg_form_view` VALUES("5303", "3", "2014-11-18 15:00:15", "66.249.79.92", "972");
INSERT INTO `wp_rg_form_view` VALUES("5304", "6", "2014-11-18 16:00:07", "66.249.79.84", "722");
INSERT INTO `wp_rg_form_view` VALUES("5305", "3", "2014-11-18 16:00:07", "66.249.79.84", "1450");
INSERT INTO `wp_rg_form_view` VALUES("5306", "6", "2014-11-18 17:00:05", "66.249.79.84", "1268");
INSERT INTO `wp_rg_form_view` VALUES("5307", "3", "2014-11-18 17:00:05", "66.249.79.84", "2592");
INSERT INTO `wp_rg_form_view` VALUES("5308", "6", "2014-11-18 18:00:33", "66.249.79.84", "1484");
INSERT INTO `wp_rg_form_view` VALUES("5309", "3", "2014-11-18 18:00:34", "66.249.79.84", "3032");
INSERT INTO `wp_rg_form_view` VALUES("5310", "6", "2014-11-18 19:00:28", "66.249.79.92", "1560");
INSERT INTO `wp_rg_form_view` VALUES("5311", "3", "2014-11-18 19:00:28", "66.249.79.92", "3160");
INSERT INTO `wp_rg_form_view` VALUES("5312", "3", "2014-11-18 20:00:00", "66.249.79.92", "3092");
INSERT INTO `wp_rg_form_view` VALUES("5313", "6", "2014-11-18 20:00:01", "66.249.79.92", "1512");
INSERT INTO `wp_rg_form_view` VALUES("5314", "6", "2014-11-18 21:00:03", "66.249.79.92", "1430");
INSERT INTO `wp_rg_form_view` VALUES("5315", "3", "2014-11-18 21:00:03", "66.249.79.92", "2923");
INSERT INTO `wp_rg_form_view` VALUES("5316", "1", "2014-11-18 21:02:44", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("5317", "2", "2014-11-18 21:05:26", "208.115.111.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("5318", "6", "2014-11-18 22:00:00", "66.249.79.84", "1180");
INSERT INTO `wp_rg_form_view` VALUES("5319", "3", "2014-11-18 22:00:00", "66.249.79.84", "2390");
INSERT INTO `wp_rg_form_view` VALUES("5320", "6", "2014-11-18 23:00:51", "66.249.79.84", "378");
INSERT INTO `wp_rg_form_view` VALUES("5321", "3", "2014-11-18 23:00:52", "66.249.79.84", "778");
INSERT INTO `wp_rg_form_view` VALUES("5322", "6", "2014-11-19 00:00:01", "66.249.79.84", "898");
INSERT INTO `wp_rg_form_view` VALUES("5323", "3", "2014-11-19 00:00:01", "66.249.79.84", "1846");
INSERT INTO `wp_rg_form_view` VALUES("5324", "6", "2014-11-19 01:00:17", "66.249.79.84", "174");
INSERT INTO `wp_rg_form_view` VALUES("5325", "3", "2014-11-19 01:00:17", "66.249.79.84", "362");
INSERT INTO `wp_rg_form_view` VALUES("5326", "1", "2014-11-19 01:08:02", "158.85.89.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("5327", "6", "2014-11-19 02:07:20", "66.249.79.84", "510");
INSERT INTO `wp_rg_form_view` VALUES("5328", "3", "2014-11-19 02:07:21", "66.249.79.84", "1036");
INSERT INTO `wp_rg_form_view` VALUES("5329", "6", "2014-11-19 03:01:42", "66.249.79.92", "1132");
INSERT INTO `wp_rg_form_view` VALUES("5330", "3", "2014-11-19 03:01:42", "66.249.79.92", "2300");
INSERT INTO `wp_rg_form_view` VALUES("5331", "6", "2014-11-19 04:00:07", "66.249.79.92", "1446");
INSERT INTO `wp_rg_form_view` VALUES("5332", "3", "2014-11-19 04:00:07", "66.249.79.92", "2951");
INSERT INTO `wp_rg_form_view` VALUES("5333", "6", "2014-11-19 05:00:00", "66.249.79.92", "1390");
INSERT INTO `wp_rg_form_view` VALUES("5334", "3", "2014-11-19 05:00:00", "66.249.79.92", "2832");
INSERT INTO `wp_rg_form_view` VALUES("5335", "6", "2014-11-19 06:00:00", "66.249.79.84", "1034");
INSERT INTO `wp_rg_form_view` VALUES("5336", "3", "2014-11-19 06:00:00", "66.249.79.84", "2105");
INSERT INTO `wp_rg_form_view` VALUES("5337", "1", "2014-11-19 06:13:16", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("5338", "6", "2014-11-19 07:01:08", "66.249.79.76", "1422");
INSERT INTO `wp_rg_form_view` VALUES("5339", "3", "2014-11-19 07:01:09", "66.249.79.76", "2882");
INSERT INTO `wp_rg_form_view` VALUES("5340", "6", "2014-11-19 08:00:06", "66.249.79.76", "1812");
INSERT INTO `wp_rg_form_view` VALUES("5341", "3", "2014-11-19 08:00:06", "66.249.79.76", "3710");
INSERT INTO `wp_rg_form_view` VALUES("5342", "6", "2014-11-19 09:00:37", "66.249.79.76", "1058");
INSERT INTO `wp_rg_form_view` VALUES("5343", "3", "2014-11-19 09:00:37", "66.249.79.76", "2210");
INSERT INTO `wp_rg_form_view` VALUES("5344", "1", "2014-11-19 09:16:53", "54.171.66.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("5345", "2", "2014-11-19 09:17:30", "54.171.66.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("5346", "6", "2014-11-19 10:00:02", "66.249.79.84", "1865");
INSERT INTO `wp_rg_form_view` VALUES("5347", "3", "2014-11-19 10:00:02", "66.249.79.84", "3773");
INSERT INTO `wp_rg_form_view` VALUES("5348", "6", "2014-11-19 11:00:02", "66.249.79.84", "1399");
INSERT INTO `wp_rg_form_view` VALUES("5349", "3", "2014-11-19 11:00:02", "66.249.79.84", "2852");
INSERT INTO `wp_rg_form_view` VALUES("5350", "1", "2014-11-19 11:12:59", "46.37.69.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("5351", "2", "2014-11-19 11:13:13", "46.37.69.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("5352", "6", "2014-11-19 12:00:00", "66.249.79.76", "1604");
INSERT INTO `wp_rg_form_view` VALUES("5353", "3", "2014-11-19 12:00:00", "66.249.79.76", "3234");
INSERT INTO `wp_rg_form_view` VALUES("5354", "1", "2014-11-19 12:01:54", "158.85.89.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("5355", "3", "2014-11-19 13:00:00", "66.249.79.76", "702");
INSERT INTO `wp_rg_form_view` VALUES("5356", "6", "2014-11-19 13:00:01", "66.249.79.84", "340");
INSERT INTO `wp_rg_form_view` VALUES("5357", "1", "2014-11-19 13:50:46", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("5358", "6", "2014-11-19 14:00:00", "66.249.79.92", "510");
INSERT INTO `wp_rg_form_view` VALUES("5359", "3", "2014-11-19 14:00:00", "66.249.79.92", "1014");
INSERT INTO `wp_rg_form_view` VALUES("5360", "6", "2014-11-19 15:03:06", "192.99.141.252", "506");
INSERT INTO `wp_rg_form_view` VALUES("5361", "3", "2014-11-19 15:03:07", "192.99.141.252", "1013");
INSERT INTO `wp_rg_form_view` VALUES("5362", "1", "2014-11-19 15:50:57", "158.85.89.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("5363", "6", "2014-11-19 16:00:08", "66.249.79.76", "1622");
INSERT INTO `wp_rg_form_view` VALUES("5364", "3", "2014-11-19 16:00:09", "66.249.79.76", "3288");
INSERT INTO `wp_rg_form_view` VALUES("5365", "3", "2014-11-19 17:00:00", "66.249.79.92", "3003");
INSERT INTO `wp_rg_form_view` VALUES("5366", "6", "2014-11-19 17:00:02", "66.249.79.76", "1474");
INSERT INTO `wp_rg_form_view` VALUES("5367", "6", "2014-11-19 18:00:01", "66.249.79.84", "1470");
INSERT INTO `wp_rg_form_view` VALUES("5368", "3", "2014-11-19 18:00:01", "66.249.79.84", "3034");
INSERT INTO `wp_rg_form_view` VALUES("5369", "6", "2014-11-19 19:00:02", "66.249.79.84", "1388");
INSERT INTO `wp_rg_form_view` VALUES("5370", "3", "2014-11-19 19:00:02", "66.249.79.84", "2814");
INSERT INTO `wp_rg_form_view` VALUES("5371", "6", "2014-11-19 20:01:11", "66.249.79.92", "1510");
INSERT INTO `wp_rg_form_view` VALUES("5372", "3", "2014-11-19 20:01:11", "66.249.79.92", "3085");
INSERT INTO `wp_rg_form_view` VALUES("5373", "1", "2014-11-19 20:45:20", "158.85.94.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("5374", "6", "2014-11-19 21:00:04", "66.249.79.76", "1576");
INSERT INTO `wp_rg_form_view` VALUES("5375", "3", "2014-11-19 21:00:05", "66.249.79.76", "3272");
INSERT INTO `wp_rg_form_view` VALUES("5376", "6", "2014-11-19 22:00:09", "66.249.79.76", "1522");
INSERT INTO `wp_rg_form_view` VALUES("5377", "3", "2014-11-19 22:00:10", "66.249.79.76", "3116");
INSERT INTO `wp_rg_form_view` VALUES("5378", "6", "2014-11-19 23:00:00", "66.249.79.76", "1034");
INSERT INTO `wp_rg_form_view` VALUES("5379", "3", "2014-11-19 23:00:00", "66.249.79.76", "2096");
INSERT INTO `wp_rg_form_view` VALUES("5380", "6", "2014-11-20 00:00:01", "66.249.79.92", "2132");
INSERT INTO `wp_rg_form_view` VALUES("5381", "3", "2014-11-20 00:00:02", "66.249.79.92", "4313");
INSERT INTO `wp_rg_form_view` VALUES("5382", "6", "2014-11-20 01:00:01", "66.249.79.92", "920");
INSERT INTO `wp_rg_form_view` VALUES("5383", "3", "2014-11-20 01:00:02", "66.249.79.92", "1872");
INSERT INTO `wp_rg_form_view` VALUES("5384", "6", "2014-11-20 02:00:03", "66.249.79.84", "668");
INSERT INTO `wp_rg_form_view` VALUES("5385", "3", "2014-11-20 02:00:03", "66.249.79.84", "1356");
INSERT INTO `wp_rg_form_view` VALUES("5386", "6", "2014-11-20 03:02:06", "66.249.79.84", "1280");
INSERT INTO `wp_rg_form_view` VALUES("5387", "3", "2014-11-20 03:02:06", "66.249.79.84", "2606");
INSERT INTO `wp_rg_form_view` VALUES("5388", "6", "2014-11-20 04:00:01", "66.249.79.76", "1082");
INSERT INTO `wp_rg_form_view` VALUES("5389", "3", "2014-11-20 04:00:02", "66.249.79.76", "2208");
INSERT INTO `wp_rg_form_view` VALUES("5390", "6", "2014-11-20 05:00:17", "66.249.79.92", "944");
INSERT INTO `wp_rg_form_view` VALUES("5391", "3", "2014-11-20 05:00:18", "66.249.79.92", "1924");
INSERT INTO `wp_rg_form_view` VALUES("5392", "6", "2014-11-20 06:03:08", "66.249.79.92", "740");
INSERT INTO `wp_rg_form_view` VALUES("5393", "3", "2014-11-20 06:03:08", "66.249.79.92", "1510");
INSERT INTO `wp_rg_form_view` VALUES("5394", "3", "2014-11-20 07:00:23", "66.249.79.76", "2157");
INSERT INTO `wp_rg_form_view` VALUES("5395", "6", "2014-11-20 07:00:24", "66.249.79.76", "1066");
INSERT INTO `wp_rg_form_view` VALUES("5396", "6", "2014-11-20 08:00:01", "66.249.79.92", "850");
INSERT INTO `wp_rg_form_view` VALUES("5397", "3", "2014-11-20 08:00:01", "66.249.79.92", "1744");
INSERT INTO `wp_rg_form_view` VALUES("5398", "6", "2014-11-20 09:09:28", "66.249.79.92", "474");
INSERT INTO `wp_rg_form_view` VALUES("5399", "3", "2014-11-20 09:09:28", "66.249.79.92", "966");
INSERT INTO `wp_rg_form_view` VALUES("5400", "6", "2014-11-20 10:00:06", "66.249.79.84", "960");
INSERT INTO `wp_rg_form_view` VALUES("5401", "3", "2014-11-20 10:00:06", "66.249.79.84", "1938");
INSERT INTO `wp_rg_form_view` VALUES("5402", "6", "2014-11-20 11:00:13", "66.249.79.92", "1947");
INSERT INTO `wp_rg_form_view` VALUES("5403", "3", "2014-11-20 11:00:14", "66.249.79.92", "3954");
INSERT INTO `wp_rg_form_view` VALUES("5404", "1", "2014-11-20 11:24:01", "54.77.23.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("5405", "2", "2014-11-20 11:24:40", "54.77.23.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("5406", "6", "2014-11-20 12:00:00", "66.249.79.76", "1990");
INSERT INTO `wp_rg_form_view` VALUES("5407", "3", "2014-11-20 12:00:00", "66.249.79.76", "4065");
INSERT INTO `wp_rg_form_view` VALUES("5408", "3", "2014-11-20 13:00:00", "66.249.79.92", "2660");
INSERT INTO `wp_rg_form_view` VALUES("5409", "6", "2014-11-20 13:00:01", "66.249.79.92", "1300");
INSERT INTO `wp_rg_form_view` VALUES("5410", "6", "2014-11-20 14:01:28", "66.249.79.84", "76");
INSERT INTO `wp_rg_form_view` VALUES("5411", "3", "2014-11-20 14:01:29", "66.249.79.84", "160");
INSERT INTO `wp_rg_form_view` VALUES("5412", "6", "2014-11-20 15:02:08", "66.249.67.92", "318");
INSERT INTO `wp_rg_form_view` VALUES("5413", "3", "2014-11-20 15:02:08", "66.249.67.92", "644");
INSERT INTO `wp_rg_form_view` VALUES("5414", "3", "2014-11-20 16:00:00", "66.249.79.92", "1768");
INSERT INTO `wp_rg_form_view` VALUES("5415", "6", "2014-11-20 16:00:19", "66.249.79.92", "868");
INSERT INTO `wp_rg_form_view` VALUES("5416", "6", "2014-11-20 17:03:12", "66.249.79.76", "740");
INSERT INTO `wp_rg_form_view` VALUES("5417", "3", "2014-11-20 17:03:12", "66.249.79.76", "1522");
INSERT INTO `wp_rg_form_view` VALUES("5418", "6", "2014-11-20 18:01:03", "66.249.79.84", "1049");
INSERT INTO `wp_rg_form_view` VALUES("5419", "3", "2014-11-20 18:01:04", "66.249.79.84", "2143");
INSERT INTO `wp_rg_form_view` VALUES("5420", "6", "2014-11-20 19:01:24", "66.249.79.92", "862");
INSERT INTO `wp_rg_form_view` VALUES("5421", "3", "2014-11-20 19:01:24", "66.249.79.92", "1784");
INSERT INTO `wp_rg_form_view` VALUES("5422", "6", "2014-11-20 20:00:00", "66.249.79.92", "1394");
INSERT INTO `wp_rg_form_view` VALUES("5423", "3", "2014-11-20 20:00:00", "66.249.79.92", "2844");
INSERT INTO `wp_rg_form_view` VALUES("5424", "3", "2014-11-20 21:00:00", "66.249.79.84", "1658");
INSERT INTO `wp_rg_form_view` VALUES("5425", "6", "2014-11-20 21:03:12", "66.249.79.84", "820");
INSERT INTO `wp_rg_form_view` VALUES("5426", "6", "2014-11-20 22:02:53", "66.249.79.76", "1740");
INSERT INTO `wp_rg_form_view` VALUES("5427", "3", "2014-11-20 22:02:53", "66.249.79.76", "3542");
INSERT INTO `wp_rg_form_view` VALUES("5428", "6", "2014-11-20 23:00:12", "66.249.79.76", "1875");
INSERT INTO `wp_rg_form_view` VALUES("5429", "3", "2014-11-20 23:00:13", "66.249.79.76", "3818");
INSERT INTO `wp_rg_form_view` VALUES("5430", "6", "2014-11-21 00:00:00", "66.249.79.92", "1141");
INSERT INTO `wp_rg_form_view` VALUES("5431", "3", "2014-11-21 00:00:00", "66.249.79.92", "2335");
INSERT INTO `wp_rg_form_view` VALUES("5432", "6", "2014-11-21 01:01:12", "66.249.79.76", "524");
INSERT INTO `wp_rg_form_view` VALUES("5433", "3", "2014-11-21 01:01:12", "66.249.79.76", "1072");
INSERT INTO `wp_rg_form_view` VALUES("5434", "2", "2014-11-21 01:02:11", "192.99.141.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("5435", "6", "2014-11-21 02:03:06", "66.249.79.84", "278");
INSERT INTO `wp_rg_form_view` VALUES("5436", "3", "2014-11-21 02:03:06", "66.249.79.84", "568");
INSERT INTO `wp_rg_form_view` VALUES("5437", "6", "2014-11-21 03:00:02", "66.249.79.76", "1300");
INSERT INTO `wp_rg_form_view` VALUES("5438", "3", "2014-11-21 03:00:02", "66.249.79.76", "2626");
INSERT INTO `wp_rg_form_view` VALUES("5439", "6", "2014-11-21 04:03:01", "66.249.79.84", "1514");
INSERT INTO `wp_rg_form_view` VALUES("5440", "3", "2014-11-21 04:03:02", "66.249.79.84", "3092");
INSERT INTO `wp_rg_form_view` VALUES("5441", "1", "2014-11-21 04:52:18", "112.5.16.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("5442", "3", "2014-11-21 05:00:00", "66.249.79.92", "5142");
INSERT INTO `wp_rg_form_view` VALUES("5443", "6", "2014-11-21 05:00:02", "66.249.79.92", "2356");
INSERT INTO `wp_rg_form_view` VALUES("5444", "2", "2014-11-21 05:22:51", "5.9.112.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("5445", "1", "2014-11-21 05:25:08", "5.9.112.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("5446", "6", "2014-11-21 06:00:00", "5.9.112.68", "1056");
INSERT INTO `wp_rg_form_view` VALUES("5447", "3", "2014-11-21 06:00:00", "5.9.112.68", "2193");
INSERT INTO `wp_rg_form_view` VALUES("5448", "1", "2014-11-21 06:56:45", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("5449", "2", "2014-11-21 06:56:53", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("5450", "6", "2014-11-21 07:00:24", "66.249.79.92", "834");
INSERT INTO `wp_rg_form_view` VALUES("5451", "3", "2014-11-21 07:00:24", "66.249.79.92", "1678");
INSERT INTO `wp_rg_form_view` VALUES("5452", "3", "2014-11-21 08:00:00", "66.249.79.92", "3466");
INSERT INTO `wp_rg_form_view` VALUES("5453", "6", "2014-11-21 08:00:01", "66.249.79.84", "1700");
INSERT INTO `wp_rg_form_view` VALUES("5454", "6", "2014-11-21 09:00:04", "66.249.79.92", "1070");
INSERT INTO `wp_rg_form_view` VALUES("5455", "3", "2014-11-21 09:00:04", "66.249.79.92", "2180");
INSERT INTO `wp_rg_form_view` VALUES("5456", "6", "2014-11-21 10:00:17", "66.249.79.92", "1870");
INSERT INTO `wp_rg_form_view` VALUES("5457", "3", "2014-11-21 10:00:17", "66.249.79.92", "3798");
INSERT INTO `wp_rg_form_view` VALUES("5458", "6", "2014-11-21 11:00:53", "66.249.79.92", "1420");
INSERT INTO `wp_rg_form_view` VALUES("5459", "3", "2014-11-21 11:00:55", "66.249.79.92", "2890");
INSERT INTO `wp_rg_form_view` VALUES("5460", "6", "2014-11-21 12:00:42", "66.249.79.76", "950");
INSERT INTO `wp_rg_form_view` VALUES("5461", "3", "2014-11-21 12:00:42", "66.249.79.76", "1932");
INSERT INTO `wp_rg_form_view` VALUES("5462", "6", "2014-11-21 13:00:01", "66.249.79.92", "506");
INSERT INTO `wp_rg_form_view` VALUES("5463", "3", "2014-11-21 13:00:01", "66.249.79.92", "1041");
INSERT INTO `wp_rg_form_view` VALUES("5464", "1", "2014-11-21 13:36:04", "5.39.37.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("5465", "6", "2014-11-21 14:00:31", "66.249.79.92", "482");
INSERT INTO `wp_rg_form_view` VALUES("5466", "3", "2014-11-21 14:00:31", "66.249.79.92", "970");
INSERT INTO `wp_rg_form_view` VALUES("5467", "6", "2014-11-21 15:00:05", "66.249.79.76", "739");
INSERT INTO `wp_rg_form_view` VALUES("5468", "3", "2014-11-21 15:00:05", "66.249.79.76", "1504");
INSERT INTO `wp_rg_form_view` VALUES("5469", "6", "2014-11-21 16:02:32", "66.249.79.76", "706");
INSERT INTO `wp_rg_form_view` VALUES("5470", "3", "2014-11-21 16:02:36", "66.249.79.76", "1464");
INSERT INTO `wp_rg_form_view` VALUES("5471", "1", "2014-11-21 16:13:17", "192.99.141.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("5472", "6", "2014-11-21 17:00:24", "54.171.0.50", "801");
INSERT INTO `wp_rg_form_view` VALUES("5473", "3", "2014-11-21 17:00:24", "54.171.0.50", "1647");
INSERT INTO `wp_rg_form_view` VALUES("5474", "1", "2014-11-21 17:05:20", "54.171.0.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("5475", "2", "2014-11-21 17:05:59", "54.171.0.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("5476", "6", "2014-11-21 18:00:01", "66.249.79.92", "1656");
INSERT INTO `wp_rg_form_view` VALUES("5477", "3", "2014-11-21 18:00:01", "66.249.79.92", "3330");
INSERT INTO `wp_rg_form_view` VALUES("5478", "6", "2014-11-21 19:00:01", "66.249.79.92", "1858");
INSERT INTO `wp_rg_form_view` VALUES("5479", "3", "2014-11-21 19:00:02", "66.249.79.92", "3754");
INSERT INTO `wp_rg_form_view` VALUES("5480", "3", "2014-11-21 20:00:00", "66.249.79.84", "3060");
INSERT INTO `wp_rg_form_view` VALUES("5481", "6", "2014-11-21 20:00:01", "66.249.79.76", "1496");
INSERT INTO `wp_rg_form_view` VALUES("5482", "6", "2014-11-21 21:00:00", "66.249.79.92", "1838");
INSERT INTO `wp_rg_form_view` VALUES("5483", "3", "2014-11-21 21:00:00", "66.249.79.92", "3759");
INSERT INTO `wp_rg_form_view` VALUES("5484", "3", "2014-11-21 22:00:00", "66.249.79.84", "2874");
INSERT INTO `wp_rg_form_view` VALUES("5485", "6", "2014-11-21 22:00:03", "66.249.79.92", "1424");
INSERT INTO `wp_rg_form_view` VALUES("5486", "3", "2014-11-21 23:00:00", "66.249.79.76", "1651");
INSERT INTO `wp_rg_form_view` VALUES("5487", "6", "2014-11-21 23:00:01", "66.249.79.92", "808");
INSERT INTO `wp_rg_form_view` VALUES("5488", "6", "2014-11-22 00:00:00", "66.249.79.92", "1290");
INSERT INTO `wp_rg_form_view` VALUES("5489", "3", "2014-11-22 00:00:00", "66.249.79.92", "2642");
INSERT INTO `wp_rg_form_view` VALUES("5490", "6", "2014-11-22 01:00:00", "66.249.79.76", "786");
INSERT INTO `wp_rg_form_view` VALUES("5491", "3", "2014-11-22 01:00:00", "66.249.79.76", "1624");
INSERT INTO `wp_rg_form_view` VALUES("5492", "1", "2014-11-22 01:10:23", "117.174.208.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("5493", "6", "2014-11-22 02:00:20", "66.249.79.76", "1146");
INSERT INTO `wp_rg_form_view` VALUES("5494", "3", "2014-11-22 02:00:20", "66.249.79.76", "2320");
INSERT INTO `wp_rg_form_view` VALUES("5495", "6", "2014-11-22 03:00:00", "66.249.79.76", "1320");
INSERT INTO `wp_rg_form_view` VALUES("5496", "3", "2014-11-22 03:00:01", "66.249.79.76", "2679");
INSERT INTO `wp_rg_form_view` VALUES("5497", "3", "2014-11-22 04:00:00", "66.249.79.76", "1373");
INSERT INTO `wp_rg_form_view` VALUES("5498", "6", "2014-11-22 04:00:01", "66.249.79.76", "666");
INSERT INTO `wp_rg_form_view` VALUES("5499", "6", "2014-11-22 05:03:15", "66.249.79.76", "778");
INSERT INTO `wp_rg_form_view` VALUES("5500", "3", "2014-11-22 05:03:15", "66.249.79.76", "1588");
INSERT INTO `wp_rg_form_view` VALUES("5501", "6", "2014-11-22 06:02:31", "66.249.79.76", "910");
INSERT INTO `wp_rg_form_view` VALUES("5502", "3", "2014-11-22 06:02:31", "66.249.79.76", "1842");
INSERT INTO `wp_rg_form_view` VALUES("5503", "6", "2014-11-22 07:00:05", "66.249.79.92", "872");
INSERT INTO `wp_rg_form_view` VALUES("5504", "3", "2014-11-22 07:00:05", "66.249.79.92", "1764");
INSERT INTO `wp_rg_form_view` VALUES("5505", "3", "2014-11-22 08:00:00", "66.249.79.92", "2316");
INSERT INTO `wp_rg_form_view` VALUES("5506", "6", "2014-11-22 08:00:01", "66.249.79.76", "1140");
INSERT INTO `wp_rg_form_view` VALUES("5507", "6", "2014-11-22 09:00:00", "66.249.79.84", "1992");
INSERT INTO `wp_rg_form_view` VALUES("5508", "3", "2014-11-22 09:00:00", "66.249.79.84", "4047");
INSERT INTO `wp_rg_form_view` VALUES("5509", "3", "2014-11-22 10:00:00", "66.249.79.84", "2417");
INSERT INTO `wp_rg_form_view` VALUES("5510", "6", "2014-11-22 10:00:08", "66.249.79.84", "1194");
INSERT INTO `wp_rg_form_view` VALUES("5511", "6", "2014-11-22 11:00:01", "66.249.79.92", "1898");
INSERT INTO `wp_rg_form_view` VALUES("5512", "3", "2014-11-22 11:00:01", "66.249.79.92", "3856");
INSERT INTO `wp_rg_form_view` VALUES("5513", "6", "2014-11-22 12:00:19", "66.249.79.76", "1514");
INSERT INTO `wp_rg_form_view` VALUES("5514", "3", "2014-11-22 12:00:19", "66.249.79.76", "3060");
INSERT INTO `wp_rg_form_view` VALUES("5515", "6", "2014-11-22 13:02:37", "66.249.79.84", "528");
INSERT INTO `wp_rg_form_view` VALUES("5516", "3", "2014-11-22 13:02:37", "66.249.79.84", "1048");
INSERT INTO `wp_rg_form_view` VALUES("5517", "6", "2014-11-22 14:00:04", "66.249.79.76", "846");
INSERT INTO `wp_rg_form_view` VALUES("5518", "3", "2014-11-22 14:00:04", "66.249.79.76", "1706");
INSERT INTO `wp_rg_form_view` VALUES("5519", "6", "2014-11-22 15:01:10", "66.249.79.92", "1402");
INSERT INTO `wp_rg_form_view` VALUES("5520", "3", "2014-11-22 15:01:10", "66.249.79.92", "2812");
INSERT INTO `wp_rg_form_view` VALUES("5521", "6", "2014-11-22 16:00:05", "66.249.79.92", "1624");
INSERT INTO `wp_rg_form_view` VALUES("5522", "3", "2014-11-22 16:00:06", "66.249.79.92", "3306");
INSERT INTO `wp_rg_form_view` VALUES("5523", "1", "2014-11-22 16:33:19", "218.88.94.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("5524", "3", "2014-11-22 17:00:00", "66.249.79.76", "3755");
INSERT INTO `wp_rg_form_view` VALUES("5525", "6", "2014-11-22 17:00:03", "66.249.79.84", "1857");
INSERT INTO `wp_rg_form_view` VALUES("5526", "6", "2014-11-22 18:00:02", "66.249.79.92", "1696");
INSERT INTO `wp_rg_form_view` VALUES("5527", "3", "2014-11-22 18:00:02", "66.249.79.92", "3439");
INSERT INTO `wp_rg_form_view` VALUES("5528", "6", "2014-11-22 19:00:00", "66.249.79.84", "1763");
INSERT INTO `wp_rg_form_view` VALUES("5529", "3", "2014-11-22 19:00:00", "66.249.79.84", "3576");
INSERT INTO `wp_rg_form_view` VALUES("5530", "6", "2014-11-22 20:00:03", "66.249.79.76", "1770");
INSERT INTO `wp_rg_form_view` VALUES("5531", "3", "2014-11-22 20:00:03", "66.249.79.76", "3582");
INSERT INTO `wp_rg_form_view` VALUES("5532", "6", "2014-11-22 21:00:01", "66.249.79.76", "1246");
INSERT INTO `wp_rg_form_view` VALUES("5533", "3", "2014-11-22 21:00:01", "66.249.79.76", "2534");
INSERT INTO `wp_rg_form_view` VALUES("5534", "6", "2014-11-22 22:01:54", "66.249.79.92", "1786");
INSERT INTO `wp_rg_form_view` VALUES("5535", "3", "2014-11-22 22:01:54", "66.249.79.92", "3594");
INSERT INTO `wp_rg_form_view` VALUES("5536", "1", "2014-11-22 22:12:10", "75.157.175.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("5537", "6", "2014-11-22 23:01:39", "66.249.79.76", "316");
INSERT INTO `wp_rg_form_view` VALUES("5538", "3", "2014-11-22 23:01:40", "66.249.79.76", "640");
INSERT INTO `wp_rg_form_view` VALUES("5539", "6", "2014-11-23 00:00:02", "66.249.79.76", "1208");
INSERT INTO `wp_rg_form_view` VALUES("5540", "3", "2014-11-23 00:00:03", "66.249.79.76", "2458");
INSERT INTO `wp_rg_form_view` VALUES("5541", "6", "2014-11-23 01:00:02", "66.249.79.76", "1312");
INSERT INTO `wp_rg_form_view` VALUES("5542", "3", "2014-11-23 01:00:02", "66.249.79.76", "2645");
INSERT INTO `wp_rg_form_view` VALUES("5543", "6", "2014-11-23 02:00:02", "66.249.79.84", "1442");
INSERT INTO `wp_rg_form_view` VALUES("5544", "3", "2014-11-23 02:00:03", "66.249.79.84", "2937");
INSERT INTO `wp_rg_form_view` VALUES("5545", "1", "2014-11-23 02:22:29", "208.68.38.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("5546", "2", "2014-11-23 02:22:29", "208.68.38.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("5547", "6", "2014-11-23 03:00:04", "66.249.79.76", "1440");
INSERT INTO `wp_rg_form_view` VALUES("5548", "3", "2014-11-23 03:00:04", "66.249.79.76", "2928");
INSERT INTO `wp_rg_form_view` VALUES("5549", "1", "2014-11-23 03:55:25", "131.109.42.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("5550", "6", "2014-11-23 04:00:00", "66.249.79.76", "1500");
INSERT INTO `wp_rg_form_view` VALUES("5551", "3", "2014-11-23 04:00:01", "66.249.79.76", "3080");
INSERT INTO `wp_rg_form_view` VALUES("5552", "6", "2014-11-23 05:00:00", "66.249.79.76", "15");
INSERT INTO `wp_rg_form_view` VALUES("5553", "3", "2014-11-23 05:00:00", "66.249.79.76", "2977");
INSERT INTO `wp_rg_form_view` VALUES("5554", "1", "2014-11-23 05:14:46", "54.72.93.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("5555", "2", "2014-11-23 05:15:42", "54.72.93.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("5556", "3", "2014-11-23 06:00:00", "66.249.79.84", "3062");
INSERT INTO `wp_rg_form_view` VALUES("5557", "6", "2014-11-23 06:03:55", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("5558", "3", "2014-11-23 07:00:00", "66.249.79.92", "2934");
INSERT INTO `wp_rg_form_view` VALUES("5559", "6", "2014-11-23 07:04:07", "66.249.79.84", "18");
INSERT INTO `wp_rg_form_view` VALUES("5560", "3", "2014-11-23 08:00:02", "66.249.79.76", "3010");
INSERT INTO `wp_rg_form_view` VALUES("5561", "6", "2014-11-23 08:12:37", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5562", "3", "2014-11-23 09:00:01", "66.249.79.84", "3106");
INSERT INTO `wp_rg_form_view` VALUES("5563", "6", "2014-11-23 09:17:43", "66.249.79.84", "13");
INSERT INTO `wp_rg_form_view` VALUES("5564", "1", "2014-11-23 09:21:38", "54.77.227.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("5565", "2", "2014-11-23 09:22:31", "54.77.227.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("5566", "3", "2014-11-23 10:00:00", "66.249.79.92", "1684");
INSERT INTO `wp_rg_form_view` VALUES("5567", "3", "2014-11-23 11:00:47", "66.249.79.76", "838");
INSERT INTO `wp_rg_form_view` VALUES("5568", "6", "2014-11-23 11:58:00", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5569", "3", "2014-11-23 12:00:07", "66.249.79.92", "2484");
INSERT INTO `wp_rg_form_view` VALUES("5570", "6", "2014-11-23 12:22:29", "66.249.79.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("5571", "3", "2014-11-23 13:00:34", "66.249.79.84", "2742");
INSERT INTO `wp_rg_form_view` VALUES("5572", "6", "2014-11-23 13:09:39", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5573", "3", "2014-11-23 14:00:00", "66.249.79.76", "2600");
INSERT INTO `wp_rg_form_view` VALUES("5574", "6", "2014-11-23 14:11:57", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5575", "3", "2014-11-23 15:00:04", "66.249.79.92", "2928");
INSERT INTO `wp_rg_form_view` VALUES("5576", "6", "2014-11-23 15:28:25", "66.249.79.76", "7");
INSERT INTO `wp_rg_form_view` VALUES("5577", "1", "2014-11-23 15:52:19", "54.171.98.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("5578", "2", "2014-11-23 15:53:03", "54.171.98.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("5579", "3", "2014-11-23 16:00:02", "66.249.79.84", "3154");
INSERT INTO `wp_rg_form_view` VALUES("5580", "6", "2014-11-23 16:06:19", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("5581", "3", "2014-11-23 17:00:04", "66.249.79.92", "3030");
INSERT INTO `wp_rg_form_view` VALUES("5582", "6", "2014-11-23 17:18:47", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5583", "3", "2014-11-23 18:00:01", "66.249.79.84", "2866");
INSERT INTO `wp_rg_form_view` VALUES("5584", "3", "2014-11-23 19:00:43", "66.249.79.76", "2764");
INSERT INTO `wp_rg_form_view` VALUES("5585", "6", "2014-11-23 19:07:10", "66.249.79.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("5586", "3", "2014-11-23 20:00:06", "66.249.79.84", "2704");
INSERT INTO `wp_rg_form_view` VALUES("5587", "6", "2014-11-23 20:13:38", "66.249.79.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("5588", "3", "2014-11-23 21:00:01", "66.249.79.84", "2517");
INSERT INTO `wp_rg_form_view` VALUES("5589", "6", "2014-11-23 21:14:47", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5590", "3", "2014-11-23 22:00:02", "66.249.79.92", "1335");
INSERT INTO `wp_rg_form_view` VALUES("5591", "6", "2014-11-23 22:22:12", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5592", "3", "2014-11-23 23:00:06", "66.249.79.84", "220");
INSERT INTO `wp_rg_form_view` VALUES("5593", "6", "2014-11-23 23:16:26", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5594", "3", "2014-11-24 00:02:45", "66.249.79.76", "160");
INSERT INTO `wp_rg_form_view` VALUES("5595", "6", "2014-11-24 00:08:18", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5596", "3", "2014-11-24 01:00:17", "66.249.79.92", "118");
INSERT INTO `wp_rg_form_view` VALUES("5597", "3", "2014-11-24 02:01:38", "66.249.79.76", "122");
INSERT INTO `wp_rg_form_view` VALUES("5598", "6", "2014-11-24 02:04:29", "202.46.63.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("5599", "3", "2014-11-24 03:01:11", "66.249.79.92", "144");
INSERT INTO `wp_rg_form_view` VALUES("5600", "3", "2014-11-24 04:01:08", "66.249.79.92", "932");
INSERT INTO `wp_rg_form_view` VALUES("5601", "6", "2014-11-24 04:04:54", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5602", "3", "2014-11-24 05:00:03", "66.249.79.92", "1883");
INSERT INTO `wp_rg_form_view` VALUES("5603", "6", "2014-11-24 05:31:26", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5604", "3", "2014-11-24 06:00:00", "66.249.79.84", "3075");
INSERT INTO `wp_rg_form_view` VALUES("5605", "6", "2014-11-24 06:04:47", "54.76.17.217", "13");
INSERT INTO `wp_rg_form_view` VALUES("5606", "1", "2014-11-24 06:07:29", "54.76.17.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("5607", "2", "2014-11-24 06:08:04", "54.76.17.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("5608", "3", "2014-11-24 07:00:03", "66.249.79.92", "3028");
INSERT INTO `wp_rg_form_view` VALUES("5609", "6", "2014-11-24 07:20:41", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("5610", "3", "2014-11-24 08:00:03", "66.249.79.92", "3208");
INSERT INTO `wp_rg_form_view` VALUES("5611", "6", "2014-11-24 08:02:50", "66.249.79.92", "20");
INSERT INTO `wp_rg_form_view` VALUES("5612", "1", "2014-11-24 08:30:42", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("5613", "3", "2014-11-24 09:00:02", "66.249.79.76", "3100");
INSERT INTO `wp_rg_form_view` VALUES("5614", "6", "2014-11-24 09:00:15", "66.249.79.84", "16");
INSERT INTO `wp_rg_form_view` VALUES("5615", "3", "2014-11-24 10:00:03", "66.249.79.76", "3064");
INSERT INTO `wp_rg_form_view` VALUES("5616", "6", "2014-11-24 10:08:43", "66.249.79.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("5617", "3", "2014-11-24 11:00:03", "66.249.79.84", "2846");
INSERT INTO `wp_rg_form_view` VALUES("5618", "6", "2014-11-24 11:50:34", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("5619", "3", "2014-11-24 12:00:02", "66.249.79.92", "2242");
INSERT INTO `wp_rg_form_view` VALUES("5620", "6", "2014-11-24 12:03:45", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5621", "3", "2014-11-24 13:00:04", "66.249.79.92", "2204");
INSERT INTO `wp_rg_form_view` VALUES("5622", "6", "2014-11-24 13:40:42", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("5623", "3", "2014-11-24 14:00:03", "66.249.79.92", "2058");
INSERT INTO `wp_rg_form_view` VALUES("5624", "6", "2014-11-24 14:00:48", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5625", "1", "2014-11-24 14:19:41", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("5626", "3", "2014-11-24 15:02:59", "66.249.79.84", "425");
INSERT INTO `wp_rg_form_view` VALUES("5627", "6", "2014-11-24 15:14:43", "68.180.229.33", "3");
INSERT INTO `wp_rg_form_view` VALUES("5628", "2", "2014-11-24 15:57:27", "185.10.50.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("5629", "1", "2014-11-24 15:57:40", "185.10.50.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("5630", "3", "2014-11-24 16:00:10", "54.171.78.65", "310");
INSERT INTO `wp_rg_form_view` VALUES("5631", "3", "2014-11-24 17:00:04", "66.249.79.76", "588");
INSERT INTO `wp_rg_form_view` VALUES("5632", "6", "2014-11-24 17:08:49", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5633", "3", "2014-11-24 18:01:14", "66.249.79.92", "1814");
INSERT INTO `wp_rg_form_view` VALUES("5634", "6", "2014-11-24 18:12:02", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5635", "3", "2014-11-24 19:00:07", "66.249.79.92", "1466");
INSERT INTO `wp_rg_form_view` VALUES("5636", "6", "2014-11-24 19:52:20", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("5637", "3", "2014-11-24 20:00:00", "66.249.79.92", "1950");
INSERT INTO `wp_rg_form_view` VALUES("5638", "1", "2014-11-24 20:12:32", "96.50.10.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("5639", "6", "2014-11-24 20:48:06", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5640", "3", "2014-11-24 21:00:01", "66.249.79.84", "2325");
INSERT INTO `wp_rg_form_view` VALUES("5641", "6", "2014-11-24 21:04:29", "207.46.13.102", "13");
INSERT INTO `wp_rg_form_view` VALUES("5642", "1", "2014-11-24 21:42:59", "46.37.69.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("5643", "2", "2014-11-24 21:43:09", "46.37.69.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("5644", "3", "2014-11-24 22:00:02", "66.249.79.76", "2360");
INSERT INTO `wp_rg_form_view` VALUES("5645", "6", "2014-11-24 22:49:28", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5646", "3", "2014-11-24 23:00:02", "66.249.79.84", "3379");
INSERT INTO `wp_rg_form_view` VALUES("5647", "6", "2014-11-24 23:06:14", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5648", "3", "2014-11-25 00:00:03", "66.249.79.92", "3551");
INSERT INTO `wp_rg_form_view` VALUES("5649", "6", "2014-11-25 00:07:45", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("5650", "3", "2014-11-25 01:00:00", "66.249.79.92", "3683");
INSERT INTO `wp_rg_form_view` VALUES("5651", "6", "2014-11-25 01:00:55", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5652", "3", "2014-11-25 02:00:00", "66.249.79.92", "3026");
INSERT INTO `wp_rg_form_view` VALUES("5653", "6", "2014-11-25 02:05:00", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("5654", "3", "2014-11-25 03:00:08", "66.249.79.76", "276");
INSERT INTO `wp_rg_form_view` VALUES("5655", "3", "2014-11-25 04:00:17", "66.249.79.84", "1248");
INSERT INTO `wp_rg_form_view` VALUES("5656", "6", "2014-11-25 04:10:19", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("5657", "3", "2014-11-25 05:00:04", "66.249.79.84", "2296");
INSERT INTO `wp_rg_form_view` VALUES("5658", "6", "2014-11-25 05:03:29", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("5659", "3", "2014-11-25 06:00:01", "66.249.79.92", "2426");
INSERT INTO `wp_rg_form_view` VALUES("5660", "6", "2014-11-25 06:11:17", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5661", "3", "2014-11-25 07:00:03", "66.249.79.92", "2718");
INSERT INTO `wp_rg_form_view` VALUES("5662", "6", "2014-11-25 07:09:01", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5663", "3", "2014-11-25 08:00:08", "66.249.79.92", "2837");
INSERT INTO `wp_rg_form_view` VALUES("5664", "6", "2014-11-25 08:10:55", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5665", "3", "2014-11-25 09:00:00", "66.249.79.92", "3436");
INSERT INTO `wp_rg_form_view` VALUES("5666", "6", "2014-11-25 09:09:05", "54.76.208.225", "7");
INSERT INTO `wp_rg_form_view` VALUES("5667", "1", "2014-11-25 09:12:12", "54.76.208.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("5668", "2", "2014-11-25 09:12:36", "54.76.208.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("5669", "3", "2014-11-25 10:00:00", "66.249.79.76", "2870");
INSERT INTO `wp_rg_form_view` VALUES("5670", "6", "2014-11-25 10:25:58", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5671", "3", "2014-11-25 11:00:03", "66.249.79.84", "3529");
INSERT INTO `wp_rg_form_view` VALUES("5672", "6", "2014-11-25 11:10:14", "66.249.79.92", "20");
INSERT INTO `wp_rg_form_view` VALUES("5673", "1", "2014-11-25 11:57:37", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("5674", "3", "2014-11-25 12:00:00", "66.249.79.92", "3272");
INSERT INTO `wp_rg_form_view` VALUES("5675", "6", "2014-11-25 12:06:45", "66.249.79.84", "11");
INSERT INTO `wp_rg_form_view` VALUES("5676", "3", "2014-11-25 13:00:03", "66.249.79.76", "3160");
INSERT INTO `wp_rg_form_view` VALUES("5677", "6", "2014-11-25 13:03:16", "66.249.79.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("5678", "3", "2014-11-25 14:00:01", "66.249.79.92", "2871");
INSERT INTO `wp_rg_form_view` VALUES("5679", "6", "2014-11-25 14:09:18", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5680", "3", "2014-11-25 15:00:01", "66.249.79.76", "790");
INSERT INTO `wp_rg_form_view` VALUES("5681", "6", "2014-11-25 15:51:02", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5682", "3", "2014-11-25 16:00:04", "66.249.79.92", "2530");
INSERT INTO `wp_rg_form_view` VALUES("5683", "6", "2014-11-25 16:16:09", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("5684", "3", "2014-11-25 17:00:04", "66.249.79.76", "2431");
INSERT INTO `wp_rg_form_view` VALUES("5685", "6", "2014-11-25 17:00:46", "188.165.15.223", "5");
INSERT INTO `wp_rg_form_view` VALUES("5686", "3", "2014-11-25 18:00:02", "66.249.79.76", "2776");
INSERT INTO `wp_rg_form_view` VALUES("5687", "6", "2014-11-25 18:01:57", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("5688", "3", "2014-11-25 19:02:20", "66.249.79.84", "2554");
INSERT INTO `wp_rg_form_view` VALUES("5689", "6", "2014-11-25 19:02:42", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("5690", "3", "2014-11-25 20:00:05", "66.249.79.84", "2780");
INSERT INTO `wp_rg_form_view` VALUES("5691", "6", "2014-11-25 20:04:51", "86.123.247.158", "7");
INSERT INTO `wp_rg_form_view` VALUES("5692", "1", "2014-11-25 20:05:13", "86.123.247.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("5693", "2", "2014-11-25 20:05:19", "86.123.247.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("5694", "3", "2014-11-25 21:00:00", "66.249.79.76", "2716");
INSERT INTO `wp_rg_form_view` VALUES("5695", "6", "2014-11-25 21:17:19", "66.249.79.76", "11");
INSERT INTO `wp_rg_form_view` VALUES("5696", "3", "2014-11-25 22:00:01", "66.249.79.92", "2704");
INSERT INTO `wp_rg_form_view` VALUES("5697", "6", "2014-11-25 22:05:19", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("5698", "3", "2014-11-25 23:00:03", "66.249.79.92", "2628");
INSERT INTO `wp_rg_form_view` VALUES("5699", "6", "2014-11-25 23:53:35", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("5700", "3", "2014-11-26 00:00:03", "66.249.79.76", "2779");
INSERT INTO `wp_rg_form_view` VALUES("5701", "6", "2014-11-26 00:12:06", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5702", "3", "2014-11-26 01:00:00", "66.249.79.92", "2941");
INSERT INTO `wp_rg_form_view` VALUES("5703", "6", "2014-11-26 01:43:34", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5704", "3", "2014-11-26 02:00:02", "66.249.79.84", "2008");
INSERT INTO `wp_rg_form_view` VALUES("5705", "6", "2014-11-26 02:10:09", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5706", "3", "2014-11-26 03:00:39", "66.249.79.92", "1030");
INSERT INTO `wp_rg_form_view` VALUES("5707", "6", "2014-11-26 03:07:35", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5708", "1", "2014-11-26 03:27:28", "218.88.94.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("5709", "3", "2014-11-26 04:00:02", "66.249.79.84", "2486");
INSERT INTO `wp_rg_form_view` VALUES("5710", "3", "2014-11-26 05:00:00", "66.249.79.84", "2501");
INSERT INTO `wp_rg_form_view` VALUES("5711", "6", "2014-11-26 05:04:24", "66.249.79.92", "9");
INSERT INTO `wp_rg_form_view` VALUES("5712", "1", "2014-11-26 05:24:53", "54.77.243.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("5713", "2", "2014-11-26 05:25:35", "54.77.243.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("5714", "3", "2014-11-26 06:00:05", "66.249.79.92", "2631");
INSERT INTO `wp_rg_form_view` VALUES("5715", "6", "2014-11-26 06:00:10", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("5716", "3", "2014-11-26 07:00:03", "66.249.79.84", "2570");
INSERT INTO `wp_rg_form_view` VALUES("5717", "6", "2014-11-26 07:38:00", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5718", "3", "2014-11-26 08:00:03", "66.249.79.92", "2598");
INSERT INTO `wp_rg_form_view` VALUES("5719", "6", "2014-11-26 08:13:56", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("5720", "3", "2014-11-26 09:00:03", "66.249.79.92", "2750");
INSERT INTO `wp_rg_form_view` VALUES("5721", "6", "2014-11-26 09:10:27", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("5722", "3", "2014-11-26 10:00:00", "66.249.79.92", "2782");
INSERT INTO `wp_rg_form_view` VALUES("5723", "6", "2014-11-26 10:04:50", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("5724", "3", "2014-11-26 11:00:04", "66.249.79.92", "2646");
INSERT INTO `wp_rg_form_view` VALUES("5725", "6", "2014-11-26 11:11:52", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("5726", "1", "2014-11-26 11:42:57", "46.29.21.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("5727", "3", "2014-11-26 12:00:01", "66.249.79.84", "2653");
INSERT INTO `wp_rg_form_view` VALUES("5728", "6", "2014-11-26 12:07:50", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5729", "3", "2014-11-26 13:00:00", "66.249.79.84", "2615");
INSERT INTO `wp_rg_form_view` VALUES("5730", "6", "2014-11-26 13:12:35", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("5731", "3", "2014-11-26 14:00:13", "66.249.79.76", "532");
INSERT INTO `wp_rg_form_view` VALUES("5732", "6", "2014-11-26 14:08:00", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("5733", "3", "2014-11-26 15:02:39", "66.249.79.76", "70");
INSERT INTO `wp_rg_form_view` VALUES("5734", "3", "2014-11-26 16:00:30", "66.249.79.84", "112");
INSERT INTO `wp_rg_form_view` VALUES("5735", "3", "2014-11-26 17:00:41", "66.249.79.84", "340");
INSERT INTO `wp_rg_form_view` VALUES("5736", "6", "2014-11-26 17:05:38", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("5737", "3", "2014-11-26 18:00:23", "66.249.79.76", "436");
INSERT INTO `wp_rg_form_view` VALUES("5738", "3", "2014-11-26 19:00:11", "66.249.79.84", "2612");
INSERT INTO `wp_rg_form_view` VALUES("5739", "6", "2014-11-26 19:12:46", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("5740", "3", "2014-11-26 20:00:02", "66.249.79.92", "3484");
INSERT INTO `wp_rg_form_view` VALUES("5741", "6", "2014-11-26 20:05:40", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5742", "3", "2014-11-26 21:00:04", "66.249.79.84", "4202");
INSERT INTO `wp_rg_form_view` VALUES("5743", "6", "2014-11-26 21:45:05", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5744", "3", "2014-11-26 22:00:02", "66.249.79.76", "4266");
INSERT INTO `wp_rg_form_view` VALUES("5745", "6", "2014-11-26 22:15:12", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("5746", "3", "2014-11-26 23:00:01", "66.249.79.76", "4338");
INSERT INTO `wp_rg_form_view` VALUES("5747", "6", "2014-11-26 23:13:20", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5748", "3", "2014-11-27 00:00:00", "66.249.79.92", "4602");
INSERT INTO `wp_rg_form_view` VALUES("5749", "6", "2014-11-27 00:15:17", "66.249.79.76", "16");
INSERT INTO `wp_rg_form_view` VALUES("5750", "3", "2014-11-27 01:00:00", "66.249.79.84", "4824");
INSERT INTO `wp_rg_form_view` VALUES("5751", "6", "2014-11-27 01:18:04", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5752", "3", "2014-11-27 02:00:02", "66.249.79.92", "2026");
INSERT INTO `wp_rg_form_view` VALUES("5753", "6", "2014-11-27 02:03:32", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("5754", "3", "2014-11-27 03:00:16", "66.249.79.92", "1257");
INSERT INTO `wp_rg_form_view` VALUES("5755", "6", "2014-11-27 03:10:15", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5756", "3", "2014-11-27 04:00:00", "66.249.79.84", "4357");
INSERT INTO `wp_rg_form_view` VALUES("5757", "6", "2014-11-27 04:04:40", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("5758", "3", "2014-11-27 05:00:00", "66.249.79.84", "4325");
INSERT INTO `wp_rg_form_view` VALUES("5759", "6", "2014-11-27 05:08:28", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("5760", "1", "2014-11-27 05:48:00", "96.50.24.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("5761", "3", "2014-11-27 06:00:05", "66.249.79.76", "4868");
INSERT INTO `wp_rg_form_view` VALUES("5762", "6", "2014-11-27 06:03:25", "66.249.79.76", "16");
INSERT INTO `wp_rg_form_view` VALUES("5763", "3", "2014-11-27 07:00:04", "66.249.79.92", "4814");
INSERT INTO `wp_rg_form_view` VALUES("5764", "6", "2014-11-27 07:03:05", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("5765", "1", "2014-11-27 07:53:22", "14.18.16.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("5766", "3", "2014-11-27 08:00:00", "66.249.79.84", "4873");
INSERT INTO `wp_rg_form_view` VALUES("5767", "6", "2014-11-27 08:13:22", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("5768", "3", "2014-11-27 09:00:00", "66.249.79.84", "4710");
INSERT INTO `wp_rg_form_view` VALUES("5769", "6", "2014-11-27 09:05:41", "66.249.79.92", "20");
INSERT INTO `wp_rg_form_view` VALUES("5770", "3", "2014-11-27 10:00:01", "66.249.79.76", "4299");
INSERT INTO `wp_rg_form_view` VALUES("5771", "6", "2014-11-27 10:03:27", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5772", "3", "2014-11-27 11:00:00", "66.249.79.76", "3908");
INSERT INTO `wp_rg_form_view` VALUES("5773", "6", "2014-11-27 11:03:07", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5774", "3", "2014-11-27 12:00:00", "66.249.79.76", "4321");
INSERT INTO `wp_rg_form_view` VALUES("5775", "2", "2014-11-27 12:28:16", "202.46.48.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("5776", "6", "2014-11-27 12:30:50", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5777", "3", "2014-11-27 13:00:03", "66.249.79.76", "4603");
INSERT INTO `wp_rg_form_view` VALUES("5778", "6", "2014-11-27 13:04:54", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5779", "2", "2014-11-27 13:34:40", "195.154.199.88", "3");
INSERT INTO `wp_rg_form_view` VALUES("5780", "3", "2014-11-27 14:00:00", "66.249.79.84", "943");
INSERT INTO `wp_rg_form_view` VALUES("5781", "6", "2014-11-27 14:07:50", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5782", "2", "2014-11-27 14:42:45", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("5783", "3", "2014-11-27 15:00:01", "66.249.79.76", "1970");
INSERT INTO `wp_rg_form_view` VALUES("5784", "6", "2014-11-27 15:30:30", "66.249.79.76", "7");
INSERT INTO `wp_rg_form_view` VALUES("5785", "1", "2014-11-27 15:46:50", "54.171.70.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("5786", "2", "2014-11-27 15:47:40", "54.171.70.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("5787", "3", "2014-11-27 16:00:08", "66.249.79.84", "4074");
INSERT INTO `wp_rg_form_view` VALUES("5788", "6", "2014-11-27 16:22:03", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5789", "3", "2014-11-27 17:00:03", "66.249.79.84", "4097");
INSERT INTO `wp_rg_form_view` VALUES("5790", "6", "2014-11-27 17:09:30", "66.249.79.92", "16");
INSERT INTO `wp_rg_form_view` VALUES("5791", "3", "2014-11-27 18:00:03", "66.249.79.84", "4255");
INSERT INTO `wp_rg_form_view` VALUES("5792", "6", "2014-11-27 18:06:03", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5793", "3", "2014-11-27 19:00:01", "66.249.79.92", "4261");
INSERT INTO `wp_rg_form_view` VALUES("5794", "6", "2014-11-27 19:09:19", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5795", "3", "2014-11-27 20:00:07", "66.249.79.92", "4134");
INSERT INTO `wp_rg_form_view` VALUES("5796", "6", "2014-11-27 20:13:43", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("5797", "3", "2014-11-27 21:00:01", "66.249.79.92", "4090");
INSERT INTO `wp_rg_form_view` VALUES("5798", "1", "2014-11-27 21:35:39", "202.46.49.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("5799", "6", "2014-11-27 21:36:45", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5800", "3", "2014-11-27 22:00:00", "66.249.79.92", "4058");
INSERT INTO `wp_rg_form_view` VALUES("5801", "6", "2014-11-27 22:25:53", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("5802", "3", "2014-11-27 23:00:10", "66.249.79.76", "3936");
INSERT INTO `wp_rg_form_view` VALUES("5803", "6", "2014-11-27 23:02:14", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5804", "3", "2014-11-28 00:00:02", "66.249.79.76", "3999");
INSERT INTO `wp_rg_form_view` VALUES("5805", "6", "2014-11-28 00:22:05", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5806", "3", "2014-11-28 01:00:02", "66.249.79.84", "4038");
INSERT INTO `wp_rg_form_view` VALUES("5807", "6", "2014-11-28 01:03:05", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("5808", "3", "2014-11-28 02:00:03", "66.249.79.92", "536");
INSERT INTO `wp_rg_form_view` VALUES("5809", "6", "2014-11-28 02:01:15", "207.46.13.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("5810", "3", "2014-11-28 03:01:20", "66.249.79.76", "1275");
INSERT INTO `wp_rg_form_view` VALUES("5811", "3", "2014-11-28 04:00:07", "66.249.79.84", "3713");
INSERT INTO `wp_rg_form_view` VALUES("5812", "6", "2014-11-28 04:09:51", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5813", "3", "2014-11-28 05:00:00", "66.249.79.92", "3146");
INSERT INTO `wp_rg_form_view` VALUES("5814", "1", "2014-11-28 05:47:42", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("5815", "6", "2014-11-28 05:56:59", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5816", "3", "2014-11-28 06:00:00", "66.249.79.76", "4214");
INSERT INTO `wp_rg_form_view` VALUES("5817", "6", "2014-11-28 06:33:33", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("5818", "3", "2014-11-28 07:00:03", "66.249.79.92", "4219");
INSERT INTO `wp_rg_form_view` VALUES("5819", "6", "2014-11-28 07:02:37", "66.249.79.84", "18");
INSERT INTO `wp_rg_form_view` VALUES("5820", "3", "2014-11-28 08:00:00", "66.249.79.84", "4163");
INSERT INTO `wp_rg_form_view` VALUES("5821", "6", "2014-11-28 08:01:21", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("5822", "3", "2014-11-28 09:00:06", "66.249.79.92", "4244");
INSERT INTO `wp_rg_form_view` VALUES("5823", "6", "2014-11-28 09:01:21", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("5824", "3", "2014-11-28 10:00:02", "66.249.79.92", "3840");
INSERT INTO `wp_rg_form_view` VALUES("5825", "6", "2014-11-28 10:20:22", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("5826", "3", "2014-11-28 11:00:00", "66.249.79.92", "3871");
INSERT INTO `wp_rg_form_view` VALUES("5827", "6", "2014-11-28 11:06:42", "66.249.79.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("5828", "3", "2014-11-28 12:00:05", "66.249.79.76", "4190");
INSERT INTO `wp_rg_form_view` VALUES("5829", "6", "2014-11-28 12:11:40", "66.249.79.76", "18");
INSERT INTO `wp_rg_form_view` VALUES("5830", "3", "2014-11-28 13:00:02", "66.249.79.76", "3178");
INSERT INTO `wp_rg_form_view` VALUES("5831", "6", "2014-11-28 13:05:16", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5832", "3", "2014-11-28 14:01:03", "66.249.79.92", "252");
INSERT INTO `wp_rg_form_view` VALUES("5833", "3", "2014-11-28 15:00:14", "66.249.79.92", "3099");
INSERT INTO `wp_rg_form_view` VALUES("5834", "6", "2014-11-28 15:04:55", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5835", "3", "2014-11-28 16:00:32", "66.249.79.76", "3463");
INSERT INTO `wp_rg_form_view` VALUES("5836", "6", "2014-11-28 16:07:20", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5837", "3", "2014-11-28 17:00:00", "66.249.79.84", "3819");
INSERT INTO `wp_rg_form_view` VALUES("5838", "6", "2014-11-28 17:21:25", "66.249.79.92", "16");
INSERT INTO `wp_rg_form_view` VALUES("5839", "3", "2014-11-28 18:00:01", "66.249.79.76", "3762");
INSERT INTO `wp_rg_form_view` VALUES("5840", "6", "2014-11-28 18:07:41", "66.249.79.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("5841", "1", "2014-11-28 18:19:42", "24.68.12.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("5842", "3", "2014-11-28 19:00:00", "66.249.79.92", "4152");
INSERT INTO `wp_rg_form_view` VALUES("5843", "6", "2014-11-28 19:15:12", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("5844", "3", "2014-11-28 20:00:04", "66.249.79.84", "4154");
INSERT INTO `wp_rg_form_view` VALUES("5845", "6", "2014-11-28 20:03:32", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("5846", "3", "2014-11-28 21:00:02", "66.249.79.84", "4187");
INSERT INTO `wp_rg_form_view` VALUES("5847", "6", "2014-11-28 21:00:19", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5848", "3", "2014-11-28 22:00:02", "66.249.79.84", "3860");
INSERT INTO `wp_rg_form_view` VALUES("5849", "6", "2014-11-28 22:56:56", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5850", "3", "2014-11-28 23:00:05", "66.249.79.84", "3888");
INSERT INTO `wp_rg_form_view` VALUES("5851", "6", "2014-11-28 23:45:08", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5852", "3", "2014-11-29 00:00:00", "66.249.79.92", "4186");
INSERT INTO `wp_rg_form_view` VALUES("5853", "6", "2014-11-29 00:05:32", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("5854", "3", "2014-11-29 01:00:00", "66.249.79.92", "3817");
INSERT INTO `wp_rg_form_view` VALUES("5855", "6", "2014-11-29 01:01:30", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5856", "3", "2014-11-29 02:00:55", "66.249.79.92", "437");
INSERT INTO `wp_rg_form_view` VALUES("5857", "1", "2014-11-29 02:55:38", "188.165.15.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("5858", "6", "2014-11-29 02:58:08", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("5859", "3", "2014-11-29 03:00:11", "66.249.79.92", "4036");
INSERT INTO `wp_rg_form_view` VALUES("5860", "6", "2014-11-29 03:37:01", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5861", "3", "2014-11-29 04:00:00", "66.249.79.92", "4412");
INSERT INTO `wp_rg_form_view` VALUES("5862", "6", "2014-11-29 04:02:38", "66.249.79.92", "18");
INSERT INTO `wp_rg_form_view` VALUES("5863", "3", "2014-11-29 05:00:04", "66.249.79.76", "4374");
INSERT INTO `wp_rg_form_view` VALUES("5864", "6", "2014-11-29 05:09:02", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5865", "2", "2014-11-29 05:37:27", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("5866", "3", "2014-11-29 06:00:01", "66.249.79.76", "4248");
INSERT INTO `wp_rg_form_view` VALUES("5867", "6", "2014-11-29 06:10:18", "66.249.79.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("5868", "3", "2014-11-29 07:00:00", "66.249.79.92", "3658");
INSERT INTO `wp_rg_form_view` VALUES("5869", "6", "2014-11-29 07:02:11", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5870", "3", "2014-11-29 08:02:11", "66.249.79.92", "3594");
INSERT INTO `wp_rg_form_view` VALUES("5871", "6", "2014-11-29 08:17:52", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("5872", "3", "2014-11-29 09:00:03", "66.249.79.76", "2900");
INSERT INTO `wp_rg_form_view` VALUES("5873", "6", "2014-11-29 09:04:15", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5874", "3", "2014-11-29 10:00:04", "66.249.79.76", "4901");
INSERT INTO `wp_rg_form_view` VALUES("5875", "6", "2014-11-29 10:17:32", "66.249.79.92", "11");
INSERT INTO `wp_rg_form_view` VALUES("5876", "1", "2014-11-29 10:34:20", "54.77.158.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("5877", "2", "2014-11-29 10:35:09", "54.77.158.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("5878", "3", "2014-11-29 11:00:02", "66.249.79.76", "4767");
INSERT INTO `wp_rg_form_view` VALUES("5879", "6", "2014-11-29 11:13:46", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5880", "3", "2014-11-29 12:01:02", "66.249.79.92", "4070");
INSERT INTO `wp_rg_form_view` VALUES("5881", "6", "2014-11-29 12:14:10", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("5882", "3", "2014-11-29 13:00:02", "66.249.79.84", "1595");
INSERT INTO `wp_rg_form_view` VALUES("5883", "6", "2014-11-29 13:04:26", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("5884", "3", "2014-11-29 14:00:30", "66.249.79.92", "1069");
INSERT INTO `wp_rg_form_view` VALUES("5885", "6", "2014-11-29 14:15:33", "54.76.249.115", "8");
INSERT INTO `wp_rg_form_view` VALUES("5886", "1", "2014-11-29 14:22:32", "54.76.249.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("5887", "2", "2014-11-29 14:23:27", "54.76.249.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("5888", "3", "2014-11-29 15:00:03", "66.249.79.76", "2834");
INSERT INTO `wp_rg_form_view` VALUES("5889", "6", "2014-11-29 15:04:18", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5890", "3", "2014-11-29 16:00:00", "66.249.79.84", "3164");
INSERT INTO `wp_rg_form_view` VALUES("5891", "6", "2014-11-29 16:27:10", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("5892", "3", "2014-11-29 17:00:01", "66.249.79.76", "4542");
INSERT INTO `wp_rg_form_view` VALUES("5893", "6", "2014-11-29 17:06:41", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("5894", "3", "2014-11-29 18:00:01", "66.249.79.76", "3392");
INSERT INTO `wp_rg_form_view` VALUES("5895", "6", "2014-11-29 18:04:10", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("5896", "3", "2014-11-29 19:03:04", "66.249.79.92", "2660");
INSERT INTO `wp_rg_form_view` VALUES("5897", "6", "2014-11-29 19:19:43", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("5898", "3", "2014-11-29 20:00:12", "66.249.79.76", "2666");
INSERT INTO `wp_rg_form_view` VALUES("5899", "6", "2014-11-29 20:31:11", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("5900", "3", "2014-11-29 21:00:52", "66.249.79.84", "3487");
INSERT INTO `wp_rg_form_view` VALUES("5901", "6", "2014-11-29 21:22:37", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5902", "1", "2014-11-29 21:57:52", "198.199.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("5903", "2", "2014-11-29 21:57:53", "198.199.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("5904", "3", "2014-11-29 22:00:06", "66.249.79.92", "2738");
INSERT INTO `wp_rg_form_view` VALUES("5905", "6", "2014-11-29 22:14:25", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5906", "3", "2014-11-29 23:00:44", "66.249.79.76", "5300");
INSERT INTO `wp_rg_form_view` VALUES("5907", "6", "2014-11-29 23:36:26", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5908", "3", "2014-11-30 00:00:02", "66.249.79.76", "3987");
INSERT INTO `wp_rg_form_view` VALUES("5909", "6", "2014-11-30 00:09:13", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("5910", "3", "2014-11-30 01:02:10", "66.249.79.84", "5931");
INSERT INTO `wp_rg_form_view` VALUES("5911", "6", "2014-11-30 01:03:06", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("5912", "3", "2014-11-30 02:00:00", "66.249.79.84", "4760");
INSERT INTO `wp_rg_form_view` VALUES("5913", "6", "2014-11-30 02:04:25", "66.249.79.84", "18");
INSERT INTO `wp_rg_form_view` VALUES("5914", "1", "2014-11-30 02:47:29", "181.49.15.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("5915", "3", "2014-11-30 03:00:00", "66.249.79.76", "803");
INSERT INTO `wp_rg_form_view` VALUES("5916", "3", "2014-11-30 04:00:36", "66.249.79.84", "3762");
INSERT INTO `wp_rg_form_view` VALUES("5917", "6", "2014-11-30 04:30:17", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("5918", "3", "2014-11-30 05:00:01", "66.249.79.92", "3856");
INSERT INTO `wp_rg_form_view` VALUES("5919", "6", "2014-11-30 05:01:09", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5920", "3", "2014-11-30 06:00:01", "66.249.79.92", "4708");
INSERT INTO `wp_rg_form_view` VALUES("5921", "6", "2014-11-30 06:33:43", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5922", "3", "2014-11-30 07:00:08", "66.249.79.84", "4772");
INSERT INTO `wp_rg_form_view` VALUES("5923", "6", "2014-11-30 07:00:13", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("5924", "3", "2014-11-30 08:00:00", "66.249.79.84", "4822");
INSERT INTO `wp_rg_form_view` VALUES("5925", "6", "2014-11-30 08:23:58", "66.249.79.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("5926", "3", "2014-11-30 09:00:00", "66.249.79.84", "4396");
INSERT INTO `wp_rg_form_view` VALUES("5927", "6", "2014-11-30 09:03:50", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("5928", "3", "2014-11-30 10:00:00", "66.249.79.92", "4868");
INSERT INTO `wp_rg_form_view` VALUES("5929", "6", "2014-11-30 10:05:29", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("5930", "3", "2014-11-30 11:00:05", "66.249.79.84", "4863");
INSERT INTO `wp_rg_form_view` VALUES("5931", "6", "2014-11-30 11:09:31", "66.249.79.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("5932", "3", "2014-11-30 12:00:00", "66.249.79.92", "4882");
INSERT INTO `wp_rg_form_view` VALUES("5933", "6", "2014-11-30 12:00:53", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5934", "3", "2014-11-30 13:00:00", "66.249.79.76", "1802");
INSERT INTO `wp_rg_form_view` VALUES("5935", "3", "2014-11-30 14:00:09", "66.249.79.92", "1524");
INSERT INTO `wp_rg_form_view` VALUES("5936", "3", "2014-11-30 15:01:21", "66.249.79.84", "3478");
INSERT INTO `wp_rg_form_view` VALUES("5937", "6", "2014-11-30 15:26:37", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5938", "3", "2014-11-30 16:00:02", "66.249.79.92", "3322");
INSERT INTO `wp_rg_form_view` VALUES("5939", "6", "2014-11-30 16:05:02", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("5940", "3", "2014-11-30 17:00:00", "66.249.79.76", "4052");
INSERT INTO `wp_rg_form_view` VALUES("5941", "6", "2014-11-30 17:02:30", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5942", "3", "2014-11-30 18:00:02", "66.249.79.84", "3636");
INSERT INTO `wp_rg_form_view` VALUES("5943", "6", "2014-11-30 18:16:47", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5944", "3", "2014-11-30 19:00:01", "66.249.79.84", "4166");
INSERT INTO `wp_rg_form_view` VALUES("5945", "6", "2014-11-30 19:00:37", "68.180.229.33", "5");
INSERT INTO `wp_rg_form_view` VALUES("5946", "3", "2014-11-30 20:00:06", "66.249.79.76", "4220");
INSERT INTO `wp_rg_form_view` VALUES("5947", "6", "2014-11-30 20:00:41", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5948", "3", "2014-11-30 21:00:00", "66.249.79.76", "4156");
INSERT INTO `wp_rg_form_view` VALUES("5949", "6", "2014-11-30 21:06:43", "66.249.79.76", "22");
INSERT INTO `wp_rg_form_view` VALUES("5950", "3", "2014-11-30 22:00:03", "66.249.79.92", "4088");
INSERT INTO `wp_rg_form_view` VALUES("5951", "6", "2014-11-30 22:33:56", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5952", "3", "2014-11-30 23:00:05", "66.249.79.84", "2710");
INSERT INTO `wp_rg_form_view` VALUES("5953", "6", "2014-11-30 23:13:04", "66.249.79.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("5954", "3", "2014-12-01 00:01:01", "66.249.79.76", "3213");
INSERT INTO `wp_rg_form_view` VALUES("5955", "6", "2014-12-01 00:38:01", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5956", "3", "2014-12-01 01:00:00", "66.249.79.76", "4108");
INSERT INTO `wp_rg_form_view` VALUES("5957", "6", "2014-12-01 01:18:00", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("5958", "3", "2014-12-01 02:00:56", "66.249.79.84", "3517");
INSERT INTO `wp_rg_form_view` VALUES("5959", "6", "2014-12-01 02:10:51", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5960", "3", "2014-12-01 03:00:04", "66.249.79.84", "3854");
INSERT INTO `wp_rg_form_view` VALUES("5961", "6", "2014-12-01 03:10:48", "66.249.79.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("5962", "3", "2014-12-01 04:00:01", "66.249.79.84", "3846");
INSERT INTO `wp_rg_form_view` VALUES("5963", "6", "2014-12-01 04:12:05", "66.249.79.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("5964", "3", "2014-12-01 05:00:04", "66.249.79.84", "4092");
INSERT INTO `wp_rg_form_view` VALUES("5965", "6", "2014-12-01 05:13:21", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5966", "3", "2014-12-01 06:00:01", "66.249.79.76", "4057");
INSERT INTO `wp_rg_form_view` VALUES("5967", "6", "2014-12-01 06:04:18", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("5968", "3", "2014-12-01 07:00:00", "66.249.79.92", "4100");
INSERT INTO `wp_rg_form_view` VALUES("5969", "6", "2014-12-01 07:11:14", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("5970", "3", "2014-12-01 08:00:00", "66.249.79.92", "4218");
INSERT INTO `wp_rg_form_view` VALUES("5971", "6", "2014-12-01 08:21:17", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5972", "3", "2014-12-01 09:00:02", "66.249.79.132", "3787");
INSERT INTO `wp_rg_form_view` VALUES("5973", "6", "2014-12-01 09:06:41", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5974", "3", "2014-12-01 10:00:00", "66.249.79.92", "4763");
INSERT INTO `wp_rg_form_view` VALUES("5975", "6", "2014-12-01 10:24:43", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("5976", "3", "2014-12-01 11:00:20", "66.249.79.76", "4016");
INSERT INTO `wp_rg_form_view` VALUES("5977", "6", "2014-12-01 11:07:41", "66.249.79.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("5978", "3", "2014-12-01 12:00:03", "66.249.79.92", "3100");
INSERT INTO `wp_rg_form_view` VALUES("5979", "6", "2014-12-01 12:15:43", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("5980", "3", "2014-12-01 13:00:48", "66.249.79.92", "286");
INSERT INTO `wp_rg_form_view` VALUES("5981", "3", "2014-12-01 14:01:24", "66.249.79.84", "2124");
INSERT INTO `wp_rg_form_view` VALUES("5982", "6", "2014-12-01 14:52:20", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("5983", "3", "2014-12-01 15:00:01", "66.249.79.92", "4175");
INSERT INTO `wp_rg_form_view` VALUES("5984", "6", "2014-12-01 15:46:33", "66.249.79.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("5985", "3", "2014-12-01 16:00:00", "66.249.79.76", "3115");
INSERT INTO `wp_rg_form_view` VALUES("5986", "1", "2014-12-01 16:01:58", "54.171.60.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("5987", "2", "2014-12-01 16:02:46", "54.171.60.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("5988", "6", "2014-12-01 16:27:34", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("5989", "3", "2014-12-01 17:00:00", "66.249.79.84", "2368");
INSERT INTO `wp_rg_form_view` VALUES("5990", "6", "2014-12-01 17:07:23", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5991", "3", "2014-12-01 18:01:05", "66.249.79.92", "1828");
INSERT INTO `wp_rg_form_view` VALUES("5992", "6", "2014-12-01 18:55:50", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5993", "3", "2014-12-01 19:00:00", "66.249.79.76", "2926");
INSERT INTO `wp_rg_form_view` VALUES("5994", "6", "2014-12-01 19:08:35", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("5995", "3", "2014-12-01 20:00:05", "66.249.79.92", "3313");
INSERT INTO `wp_rg_form_view` VALUES("5996", "6", "2014-12-01 20:05:53", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5997", "3", "2014-12-01 21:00:00", "66.249.79.92", "2636");
INSERT INTO `wp_rg_form_view` VALUES("5998", "6", "2014-12-01 21:30:30", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("5999", "3", "2014-12-01 22:00:00", "66.249.79.84", "3564");
INSERT INTO `wp_rg_form_view` VALUES("6000", "6", "2014-12-01 22:25:24", "24.69.67.4", "4");
INSERT INTO `wp_rg_form_view` VALUES("6001", "3", "2014-12-01 23:00:01", "66.249.79.92", "3270");
INSERT INTO `wp_rg_form_view` VALUES("6002", "3", "2014-12-02 00:00:34", "66.249.79.92", "3650");
INSERT INTO `wp_rg_form_view` VALUES("6003", "6", "2014-12-02 00:19:08", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("6004", "3", "2014-12-02 01:01:32", "66.249.79.84", "3276");
INSERT INTO `wp_rg_form_view` VALUES("6005", "2", "2014-12-02 01:09:19", "82.192.74.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("6006", "1", "2014-12-02 01:09:36", "82.192.74.175", "3");
INSERT INTO `wp_rg_form_view` VALUES("6007", "6", "2014-12-02 01:58:08", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6008", "3", "2014-12-02 02:00:00", "66.249.79.92", "4094");
INSERT INTO `wp_rg_form_view` VALUES("6009", "6", "2014-12-02 02:16:46", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6010", "3", "2014-12-02 03:00:14", "66.249.79.84", "3494");
INSERT INTO `wp_rg_form_view` VALUES("6011", "6", "2014-12-02 03:18:06", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6012", "1", "2014-12-02 03:25:35", "181.160.57.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("6013", "3", "2014-12-02 04:00:00", "66.249.79.92", "7148");
INSERT INTO `wp_rg_form_view` VALUES("6014", "6", "2014-12-02 04:35:36", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("6015", "3", "2014-12-02 05:00:03", "66.249.79.84", "5330");
INSERT INTO `wp_rg_form_view` VALUES("6016", "1", "2014-12-02 05:23:07", "171.213.22.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("6017", "6", "2014-12-02 05:35:12", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6018", "3", "2014-12-02 06:00:00", "66.249.79.76", "6173");
INSERT INTO `wp_rg_form_view` VALUES("6019", "6", "2014-12-02 06:24:55", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("6020", "3", "2014-12-02 07:00:00", "66.249.79.92", "5548");
INSERT INTO `wp_rg_form_view` VALUES("6021", "6", "2014-12-02 07:31:15", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6022", "3", "2014-12-02 08:00:00", "66.249.79.76", "5589");
INSERT INTO `wp_rg_form_view` VALUES("6023", "3", "2014-12-02 09:00:00", "66.249.79.76", "6864");
INSERT INTO `wp_rg_form_view` VALUES("6024", "6", "2014-12-02 09:01:17", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("6025", "3", "2014-12-02 10:00:00", "66.249.79.92", "5563");
INSERT INTO `wp_rg_form_view` VALUES("6026", "6", "2014-12-02 10:04:24", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("6027", "3", "2014-12-02 11:00:00", "66.249.79.92", "5609");
INSERT INTO `wp_rg_form_view` VALUES("6028", "2", "2014-12-02 11:06:13", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6029", "3", "2014-12-02 12:00:00", "66.249.79.92", "6950");
INSERT INTO `wp_rg_form_view` VALUES("6030", "6", "2014-12-02 12:44:05", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6031", "3", "2014-12-02 13:00:00", "66.249.79.84", "5916");
INSERT INTO `wp_rg_form_view` VALUES("6032", "6", "2014-12-02 13:02:22", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6033", "3", "2014-12-02 14:00:17", "66.249.79.84", "7165");
INSERT INTO `wp_rg_form_view` VALUES("6034", "1", "2014-12-02 14:06:26", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6035", "2", "2014-12-02 14:19:42", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6036", "3", "2014-12-02 15:00:00", "66.249.79.84", "2423");
INSERT INTO `wp_rg_form_view` VALUES("6037", "3", "2014-12-02 16:00:00", "66.249.67.84", "6536");
INSERT INTO `wp_rg_form_view` VALUES("6038", "1", "2014-12-02 16:09:47", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6039", "6", "2014-12-02 16:11:57", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6040", "3", "2014-12-02 17:00:10", "66.249.67.92", "4260");
INSERT INTO `wp_rg_form_view` VALUES("6041", "2", "2014-12-02 17:36:57", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6042", "3", "2014-12-02 18:00:05", "66.249.67.76", "6294");
INSERT INTO `wp_rg_form_view` VALUES("6043", "6", "2014-12-02 18:13:01", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6044", "3", "2014-12-02 19:00:00", "66.249.67.84", "5502");
INSERT INTO `wp_rg_form_view` VALUES("6045", "6", "2014-12-02 19:36:43", "66.249.67.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("6046", "3", "2014-12-02 20:00:10", "66.249.67.76", "5704");
INSERT INTO `wp_rg_form_view` VALUES("6047", "6", "2014-12-02 20:05:15", "66.249.67.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("6048", "3", "2014-12-02 21:00:01", "66.249.67.92", "5650");
INSERT INTO `wp_rg_form_view` VALUES("6049", "1", "2014-12-02 21:12:04", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6050", "6", "2014-12-02 21:16:48", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6051", "3", "2014-12-02 22:00:00", "66.249.67.84", "4455");
INSERT INTO `wp_rg_form_view` VALUES("6052", "2", "2014-12-02 22:37:45", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6053", "6", "2014-12-02 22:43:22", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6054", "3", "2014-12-02 23:00:29", "66.249.67.76", "4108");
INSERT INTO `wp_rg_form_view` VALUES("6055", "6", "2014-12-02 23:11:15", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6056", "3", "2014-12-03 00:00:19", "66.249.67.76", "5128");
INSERT INTO `wp_rg_form_view` VALUES("6057", "6", "2014-12-03 00:16:50", "66.249.67.92", "5");
INSERT INTO `wp_rg_form_view` VALUES("6058", "1", "2014-12-03 00:28:05", "54.76.13.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("6059", "2", "2014-12-03 00:28:52", "54.76.13.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("6060", "3", "2014-12-03 01:00:03", "66.249.67.84", "4832");
INSERT INTO `wp_rg_form_view` VALUES("6061", "6", "2014-12-03 01:22:05", "66.249.67.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6062", "3", "2014-12-03 02:00:03", "66.249.67.76", "5906");
INSERT INTO `wp_rg_form_view` VALUES("6063", "6", "2014-12-03 02:18:04", "66.249.67.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("6064", "3", "2014-12-03 03:00:03", "66.249.67.76", "2658");
INSERT INTO `wp_rg_form_view` VALUES("6065", "6", "2014-12-03 03:23:07", "66.249.67.76", "18");
INSERT INTO `wp_rg_form_view` VALUES("6066", "1", "2014-12-03 03:56:54", "171.213.22.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("6067", "3", "2014-12-03 04:00:01", "66.249.67.76", "5798");
INSERT INTO `wp_rg_form_view` VALUES("6068", "6", "2014-12-03 04:06:52", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6069", "1", "2014-12-03 04:19:50", "66.249.67.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("6070", "3", "2014-12-03 05:00:02", "66.249.67.84", "5620");
INSERT INTO `wp_rg_form_view` VALUES("6071", "6", "2014-12-03 05:28:19", "66.249.67.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("6072", "3", "2014-12-03 06:00:00", "66.249.67.92", "5574");
INSERT INTO `wp_rg_form_view` VALUES("6073", "6", "2014-12-03 06:05:02", "66.249.67.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6074", "3", "2014-12-03 07:00:01", "66.249.67.76", "5732");
INSERT INTO `wp_rg_form_view` VALUES("6075", "6", "2014-12-03 07:24:05", "66.249.67.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("6076", "1", "2014-12-03 07:58:44", "111.1.3.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("6077", "3", "2014-12-03 08:00:03", "66.249.67.76", "5790");
INSERT INTO `wp_rg_form_view` VALUES("6078", "6", "2014-12-03 08:06:36", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6079", "3", "2014-12-03 09:00:01", "66.249.67.84", "5468");
INSERT INTO `wp_rg_form_view` VALUES("6080", "6", "2014-12-03 09:34:11", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6081", "3", "2014-12-03 10:00:03", "66.249.67.76", "5971");
INSERT INTO `wp_rg_form_view` VALUES("6082", "6", "2014-12-03 10:12:53", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6083", "3", "2014-12-03 11:00:00", "66.249.67.76", "5580");
INSERT INTO `wp_rg_form_view` VALUES("6084", "6", "2014-12-03 11:28:00", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6085", "3", "2014-12-03 12:00:00", "66.249.67.84", "5797");
INSERT INTO `wp_rg_form_view` VALUES("6086", "6", "2014-12-03 12:04:18", "66.249.67.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("6087", "1", "2014-12-03 12:04:58", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6088", "3", "2014-12-03 13:00:00", "66.249.67.76", "5937");
INSERT INTO `wp_rg_form_view` VALUES("6089", "6", "2014-12-03 13:16:43", "66.249.67.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("6090", "3", "2014-12-03 14:00:03", "66.249.67.92", "5498");
INSERT INTO `wp_rg_form_view` VALUES("6091", "6", "2014-12-03 14:22:47", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6092", "3", "2014-12-03 15:02:45", "66.249.67.84", "3943");
INSERT INTO `wp_rg_form_view` VALUES("6093", "6", "2014-12-03 15:43:56", "66.249.67.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("6094", "1", "2014-12-03 15:45:57", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("6095", "3", "2014-12-03 16:00:13", "66.249.79.76", "5470");
INSERT INTO `wp_rg_form_view` VALUES("6096", "3", "2014-12-03 17:00:00", "66.249.79.92", "5525");
INSERT INTO `wp_rg_form_view` VALUES("6097", "6", "2014-12-03 17:03:58", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6098", "3", "2014-12-03 18:00:00", "66.249.79.92", "6028");
INSERT INTO `wp_rg_form_view` VALUES("6099", "6", "2014-12-03 18:36:59", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6100", "3", "2014-12-03 19:00:00", "66.249.79.92", "5930");
INSERT INTO `wp_rg_form_view` VALUES("6101", "6", "2014-12-03 19:15:23", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6102", "3", "2014-12-03 20:00:04", "66.249.79.84", "6138");
INSERT INTO `wp_rg_form_view` VALUES("6103", "6", "2014-12-03 20:05:53", "66.249.79.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("6104", "3", "2014-12-03 21:00:00", "66.249.79.76", "6121");
INSERT INTO `wp_rg_form_view` VALUES("6105", "6", "2014-12-03 21:23:51", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("6106", "1", "2014-12-03 21:55:23", "162.243.170.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("6107", "2", "2014-12-03 21:55:23", "162.243.170.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("6108", "3", "2014-12-03 22:00:08", "66.249.79.124", "6072");
INSERT INTO `wp_rg_form_view` VALUES("6109", "6", "2014-12-03 22:01:24", "66.249.79.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("6110", "3", "2014-12-03 23:00:01", "66.249.79.84", "5566");
INSERT INTO `wp_rg_form_view` VALUES("6111", "6", "2014-12-03 23:00:04", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6112", "3", "2014-12-04 00:00:00", "66.249.79.76", "6106");
INSERT INTO `wp_rg_form_view` VALUES("6113", "6", "2014-12-04 00:24:59", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6114", "3", "2014-12-04 01:00:00", "66.249.79.84", "6769");
INSERT INTO `wp_rg_form_view` VALUES("6115", "3", "2014-12-04 02:00:00", "66.249.79.76", "4849");
INSERT INTO `wp_rg_form_view` VALUES("6116", "3", "2014-12-04 03:01:22", "66.249.79.76", "4842");
INSERT INTO `wp_rg_form_view` VALUES("6117", "3", "2014-12-04 04:00:00", "66.249.79.92", "6077");
INSERT INTO `wp_rg_form_view` VALUES("6118", "2", "2014-12-04 04:32:49", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6119", "6", "2014-12-04 04:51:06", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6120", "3", "2014-12-04 05:00:00", "66.249.79.84", "6729");
INSERT INTO `wp_rg_form_view` VALUES("6121", "6", "2014-12-04 05:01:47", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6122", "3", "2014-12-04 06:00:00", "66.249.79.84", "6532");
INSERT INTO `wp_rg_form_view` VALUES("6123", "2", "2014-12-04 06:13:55", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("6124", "6", "2014-12-04 06:21:14", "66.249.79.92", "7");
INSERT INTO `wp_rg_form_view` VALUES("6125", "3", "2014-12-04 07:00:00", "66.249.79.76", "6175");
INSERT INTO `wp_rg_form_view` VALUES("6126", "1", "2014-12-04 07:01:23", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6127", "6", "2014-12-04 07:26:54", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6128", "3", "2014-12-04 08:00:02", "66.249.79.84", "6789");
INSERT INTO `wp_rg_form_view` VALUES("6129", "6", "2014-12-04 08:19:59", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("6130", "3", "2014-12-04 09:00:00", "66.249.79.76", "6523");
INSERT INTO `wp_rg_form_view` VALUES("6131", "6", "2014-12-04 09:20:00", "66.249.79.92", "16");
INSERT INTO `wp_rg_form_view` VALUES("6132", "3", "2014-12-04 10:00:00", "66.249.79.92", "6644");
INSERT INTO `wp_rg_form_view` VALUES("6133", "6", "2014-12-04 10:18:29", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("6134", "3", "2014-12-04 11:00:01", "66.249.79.76", "6860");
INSERT INTO `wp_rg_form_view` VALUES("6135", "6", "2014-12-04 11:00:05", "66.249.79.84", "20");
INSERT INTO `wp_rg_form_view` VALUES("6136", "1", "2014-12-04 11:08:41", "113.193.248.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("6137", "3", "2014-12-04 12:00:00", "66.249.79.84", "6065");
INSERT INTO `wp_rg_form_view` VALUES("6138", "6", "2014-12-04 12:36:46", "202.46.62.107", "5");
INSERT INTO `wp_rg_form_view` VALUES("6139", "3", "2014-12-04 13:00:00", "66.249.79.92", "6615");
INSERT INTO `wp_rg_form_view` VALUES("6140", "6", "2014-12-04 13:22:08", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6141", "3", "2014-12-04 14:00:00", "66.249.79.76", "2793");
INSERT INTO `wp_rg_form_view` VALUES("6142", "6", "2014-12-04 14:02:41", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("6143", "3", "2014-12-04 15:00:00", "66.249.79.92", "5978");
INSERT INTO `wp_rg_form_view` VALUES("6144", "6", "2014-12-04 15:21:00", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6145", "3", "2014-12-04 16:00:00", "66.249.79.76", "6135");
INSERT INTO `wp_rg_form_view` VALUES("6146", "6", "2014-12-04 16:09:35", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("6147", "3", "2014-12-04 17:00:00", "66.249.79.92", "5405");
INSERT INTO `wp_rg_form_view` VALUES("6148", "6", "2014-12-04 17:06:38", "66.249.79.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("6149", "3", "2014-12-04 18:00:00", "66.249.79.92", "6330");
INSERT INTO `wp_rg_form_view` VALUES("6150", "6", "2014-12-04 18:16:57", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("6151", "3", "2014-12-04 19:00:00", "66.249.79.92", "15560");
INSERT INTO `wp_rg_form_view` VALUES("6152", "1", "2014-12-04 19:19:24", "96.50.84.237", "4");
INSERT INTO `wp_rg_form_view` VALUES("6153", "2", "2014-12-04 19:23:16", "82.80.249.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("6154", "6", "2014-12-04 19:24:59", "82.80.249.155", "20");
INSERT INTO `wp_rg_form_view` VALUES("6155", "3", "2014-12-04 20:00:00", "66.249.79.76", "4496");
INSERT INTO `wp_rg_form_view` VALUES("6156", "6", "2014-12-04 20:26:29", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6157", "3", "2014-12-04 21:00:00", "66.249.79.92", "5537");
INSERT INTO `wp_rg_form_view` VALUES("6158", "3", "2014-12-04 22:00:00", "66.249.79.76", "5836");
INSERT INTO `wp_rg_form_view` VALUES("6159", "6", "2014-12-04 22:53:17", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6160", "3", "2014-12-04 23:00:00", "66.249.79.76", "6150");
INSERT INTO `wp_rg_form_view` VALUES("6161", "6", "2014-12-04 23:14:43", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("6162", "3", "2014-12-05 00:00:01", "66.249.79.92", "6236");
INSERT INTO `wp_rg_form_view` VALUES("6163", "6", "2014-12-05 00:07:32", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6164", "3", "2014-12-05 01:00:00", "66.249.79.92", "6534");
INSERT INTO `wp_rg_form_view` VALUES("6165", "6", "2014-12-05 01:21:37", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("6166", "3", "2014-12-05 02:00:00", "66.249.79.84", "3293");
INSERT INTO `wp_rg_form_view` VALUES("6167", "6", "2014-12-05 02:26:04", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6168", "3", "2014-12-05 03:00:03", "66.249.79.76", "1003");
INSERT INTO `wp_rg_form_view` VALUES("6169", "2", "2014-12-05 03:27:52", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("6170", "6", "2014-12-05 03:28:58", "109.169.29.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("6171", "3", "2014-12-05 04:00:14", "66.249.79.92", "570");
INSERT INTO `wp_rg_form_view` VALUES("6172", "3", "2014-12-05 05:01:43", "66.249.79.92", "562");
INSERT INTO `wp_rg_form_view` VALUES("6173", "3", "2014-12-05 06:01:04", "66.249.79.84", "590");
INSERT INTO `wp_rg_form_view` VALUES("6174", "3", "2014-12-05 07:00:10", "66.249.79.84", "1328");
INSERT INTO `wp_rg_form_view` VALUES("6175", "2", "2014-12-05 07:21:19", "184.71.26.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("6176", "3", "2014-12-05 08:00:54", "66.249.79.84", "1262");
INSERT INTO `wp_rg_form_view` VALUES("6177", "2", "2014-12-05 08:16:43", "107.182.116.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("6178", "3", "2014-12-05 09:00:17", "66.249.79.84", "1846");
INSERT INTO `wp_rg_form_view` VALUES("6179", "6", "2014-12-05 09:24:50", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6180", "3", "2014-12-05 10:00:20", "66.249.79.84", "1350");
INSERT INTO `wp_rg_form_view` VALUES("6181", "6", "2014-12-05 10:38:44", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6182", "3", "2014-12-05 11:00:12", "66.249.79.92", "536");
INSERT INTO `wp_rg_form_view` VALUES("6183", "3", "2014-12-05 12:00:59", "66.249.79.84", "370");
INSERT INTO `wp_rg_form_view` VALUES("6184", "6", "2014-12-05 12:02:09", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6185", "1", "2014-12-05 12:12:54", "198.55.112.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("6186", "3", "2014-12-05 13:01:40", "66.249.67.92", "658");
INSERT INTO `wp_rg_form_view` VALUES("6187", "6", "2014-12-05 13:14:38", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6188", "3", "2014-12-05 14:00:19", "66.249.67.92", "3332");
INSERT INTO `wp_rg_form_view` VALUES("6189", "6", "2014-12-05 14:11:51", "66.249.67.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("6190", "3", "2014-12-05 15:00:06", "66.249.67.84", "3408");
INSERT INTO `wp_rg_form_view` VALUES("6191", "2", "2014-12-05 15:40:24", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("6192", "3", "2014-12-05 16:00:07", "66.249.79.76", "2970");
INSERT INTO `wp_rg_form_view` VALUES("6193", "6", "2014-12-05 16:38:15", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6194", "3", "2014-12-05 17:00:04", "66.249.79.76", "3599");
INSERT INTO `wp_rg_form_view` VALUES("6195", "3", "2014-12-05 18:00:03", "66.249.79.84", "4824");
INSERT INTO `wp_rg_form_view` VALUES("6196", "6", "2014-12-05 18:17:01", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("6197", "1", "2014-12-05 18:52:20", "107.170.56.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("6198", "3", "2014-12-05 19:00:00", "66.249.79.92", "9911");
INSERT INTO `wp_rg_form_view` VALUES("6199", "6", "2014-12-05 19:25:32", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6200", "3", "2014-12-05 20:00:00", "66.249.79.92", "6277");
INSERT INTO `wp_rg_form_view` VALUES("6201", "1", "2014-12-05 20:33:53", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("6202", "3", "2014-12-05 21:00:45", "66.249.79.92", "3446");
INSERT INTO `wp_rg_form_view` VALUES("6203", "6", "2014-12-05 21:57:06", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6204", "3", "2014-12-05 22:00:03", "66.249.79.84", "3504");
INSERT INTO `wp_rg_form_view` VALUES("6205", "6", "2014-12-05 22:02:14", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("6206", "3", "2014-12-05 23:00:05", "66.249.79.84", "2888");
INSERT INTO `wp_rg_form_view` VALUES("6207", "6", "2014-12-05 23:05:42", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("6208", "3", "2014-12-06 00:00:13", "66.249.79.76", "128");
INSERT INTO `wp_rg_form_view` VALUES("6209", "3", "2014-12-06 01:02:32", "192.99.134.49", "131");
INSERT INTO `wp_rg_form_view` VALUES("6210", "3", "2014-12-06 02:01:49", "100.43.85.24", "162");
INSERT INTO `wp_rg_form_view` VALUES("6211", "3", "2014-12-06 03:04:13", "157.55.39.127", "502");
INSERT INTO `wp_rg_form_view` VALUES("6212", "3", "2014-12-06 04:00:08", "68.180.229.33", "798");
INSERT INTO `wp_rg_form_view` VALUES("6213", "3", "2014-12-06 05:00:50", "66.249.79.84", "922");
INSERT INTO `wp_rg_form_view` VALUES("6214", "3", "2014-12-06 06:00:59", "66.249.79.84", "908");
INSERT INTO `wp_rg_form_view` VALUES("6215", "6", "2014-12-06 06:18:58", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6216", "3", "2014-12-06 07:00:38", "66.249.79.92", "857");
INSERT INTO `wp_rg_form_view` VALUES("6217", "3", "2014-12-06 08:00:13", "66.249.79.76", "1286");
INSERT INTO `wp_rg_form_view` VALUES("6218", "6", "2014-12-06 08:54:32", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6219", "3", "2014-12-06 09:00:14", "66.249.79.76", "1456");
INSERT INTO `wp_rg_form_view` VALUES("6220", "3", "2014-12-06 10:00:17", "66.249.79.92", "1348");
INSERT INTO `wp_rg_form_view` VALUES("6221", "2", "2014-12-06 10:52:38", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6222", "6", "2014-12-06 10:56:44", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6223", "3", "2014-12-06 11:00:14", "66.249.79.76", "661");
INSERT INTO `wp_rg_form_view` VALUES("6224", "3", "2014-12-06 12:11:57", "100.43.85.24", "51");
INSERT INTO `wp_rg_form_view` VALUES("6225", "3", "2014-12-06 13:00:05", "68.180.229.33", "272");
INSERT INTO `wp_rg_form_view` VALUES("6226", "6", "2014-12-06 13:56:21", "157.55.39.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("6227", "3", "2014-12-06 14:00:52", "68.180.229.33", "155");
INSERT INTO `wp_rg_form_view` VALUES("6228", "2", "2014-12-06 14:15:38", "167.160.110.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6229", "1", "2014-12-06 14:22:20", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("6230", "6", "2014-12-06 14:37:51", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("6231", "3", "2014-12-06 15:00:25", "66.249.79.92", "360");
INSERT INTO `wp_rg_form_view` VALUES("6232", "3", "2014-12-06 16:03:31", "66.249.79.92", "272");
INSERT INTO `wp_rg_form_view` VALUES("6233", "3", "2014-12-06 17:07:18", "66.249.79.76", "234");
INSERT INTO `wp_rg_form_view` VALUES("6234", "3", "2014-12-06 18:01:30", "66.249.79.76", "422");
INSERT INTO `wp_rg_form_view` VALUES("6235", "3", "2014-12-06 19:04:43", "66.249.79.92", "147");
INSERT INTO `wp_rg_form_view` VALUES("6236", "3", "2014-12-06 20:00:18", "162.244.13.28", "232");
INSERT INTO `wp_rg_form_view` VALUES("6237", "1", "2014-12-06 20:00:19", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6238", "3", "2014-12-06 21:00:15", "66.249.79.76", "496");
INSERT INTO `wp_rg_form_view` VALUES("6239", "3", "2014-12-06 22:00:07", "66.249.79.76", "642");
INSERT INTO `wp_rg_form_view` VALUES("6240", "3", "2014-12-06 23:00:16", "66.249.79.76", "398");
INSERT INTO `wp_rg_form_view` VALUES("6241", "3", "2014-12-07 00:12:21", "202.46.61.105", "172");
INSERT INTO `wp_rg_form_view` VALUES("6242", "3", "2014-12-07 01:01:03", "100.43.85.24", "194");
INSERT INTO `wp_rg_form_view` VALUES("6243", "3", "2014-12-07 02:00:04", "100.43.85.24", "551");
INSERT INTO `wp_rg_form_view` VALUES("6244", "1", "2014-12-07 02:35:59", "27.150.242.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("6245", "3", "2014-12-07 03:00:22", "66.249.79.84", "1498");
INSERT INTO `wp_rg_form_view` VALUES("6246", "3", "2014-12-07 04:00:17", "66.249.79.76", "1644");
INSERT INTO `wp_rg_form_view` VALUES("6247", "3", "2014-12-07 05:00:05", "66.249.79.84", "1742");
INSERT INTO `wp_rg_form_view` VALUES("6248", "6", "2014-12-07 05:29:46", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6249", "3", "2014-12-07 06:00:00", "66.249.79.92", "1552");
INSERT INTO `wp_rg_form_view` VALUES("6250", "3", "2014-12-07 07:00:05", "66.249.79.76", "608");
INSERT INTO `wp_rg_form_view` VALUES("6251", "3", "2014-12-07 08:05:19", "66.249.79.84", "210");
INSERT INTO `wp_rg_form_view` VALUES("6252", "3", "2014-12-07 09:03:05", "207.46.13.31", "532");
INSERT INTO `wp_rg_form_view` VALUES("6253", "2", "2014-12-07 09:56:43", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("6254", "3", "2014-12-07 10:00:10", "66.249.79.76", "494");
INSERT INTO `wp_rg_form_view` VALUES("6255", "3", "2014-12-07 11:00:00", "66.249.79.92", "756");
INSERT INTO `wp_rg_form_view` VALUES("6256", "6", "2014-12-07 11:53:43", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6257", "3", "2014-12-07 12:00:15", "66.249.79.84", "600");
INSERT INTO `wp_rg_form_view` VALUES("6258", "6", "2014-12-07 12:57:37", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("6259", "3", "2014-12-07 13:06:15", "100.43.85.24", "260");
INSERT INTO `wp_rg_form_view` VALUES("6260", "3", "2014-12-07 14:06:31", "157.55.39.62", "1052");
INSERT INTO `wp_rg_form_view` VALUES("6261", "6", "2014-12-07 14:54:36", "157.55.39.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("6262", "3", "2014-12-07 15:00:26", "66.249.79.92", "1070");
INSERT INTO `wp_rg_form_view` VALUES("6263", "3", "2014-12-07 16:00:03", "66.249.79.76", "1038");
INSERT INTO `wp_rg_form_view` VALUES("6264", "3", "2014-12-07 17:00:06", "66.249.79.76", "1008");
INSERT INTO `wp_rg_form_view` VALUES("6265", "6", "2014-12-07 17:43:47", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6266", "3", "2014-12-07 18:00:17", "66.249.79.76", "1456");
INSERT INTO `wp_rg_form_view` VALUES("6267", "6", "2014-12-07 18:13:41", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6268", "3", "2014-12-07 19:00:22", "66.249.79.84", "1685");
INSERT INTO `wp_rg_form_view` VALUES("6269", "3", "2014-12-07 20:00:00", "66.249.79.84", "1872");
INSERT INTO `wp_rg_form_view` VALUES("6270", "6", "2014-12-07 20:51:48", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6271", "3", "2014-12-07 21:00:00", "66.249.79.92", "1435");
INSERT INTO `wp_rg_form_view` VALUES("6272", "6", "2014-12-07 21:23:07", "68.180.229.33", "3");
INSERT INTO `wp_rg_form_view` VALUES("6273", "3", "2014-12-07 22:00:00", "27.150.242.156", "1401");
INSERT INTO `wp_rg_form_view` VALUES("6274", "3", "2014-12-07 23:00:18", "66.249.79.84", "1030");
INSERT INTO `wp_rg_form_view` VALUES("6275", "2", "2014-12-07 23:49:25", "27.150.242.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("6276", "3", "2014-12-08 00:00:26", "66.249.79.76", "1588");
INSERT INTO `wp_rg_form_view` VALUES("6277", "3", "2014-12-08 01:00:02", "66.249.79.92", "1792");
INSERT INTO `wp_rg_form_view` VALUES("6278", "3", "2014-12-08 02:00:11", "100.43.85.24", "1689");
INSERT INTO `wp_rg_form_view` VALUES("6279", "6", "2014-12-08 02:02:49", "188.165.15.129", "3");
INSERT INTO `wp_rg_form_view` VALUES("6280", "3", "2014-12-08 03:00:14", "66.249.79.84", "1354");
INSERT INTO `wp_rg_form_view` VALUES("6281", "6", "2014-12-08 03:09:28", "66.249.79.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("6282", "3", "2014-12-08 04:00:22", "66.249.79.92", "360");
INSERT INTO `wp_rg_form_view` VALUES("6283", "3", "2014-12-08 05:04:00", "66.249.79.76", "284");
INSERT INTO `wp_rg_form_view` VALUES("6284", "3", "2014-12-08 06:00:17", "100.43.85.24", "924");
INSERT INTO `wp_rg_form_view` VALUES("6285", "3", "2014-12-08 07:00:29", "66.249.79.92", "472");
INSERT INTO `wp_rg_form_view` VALUES("6286", "6", "2014-12-08 07:33:03", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6287", "3", "2014-12-08 08:02:23", "100.43.85.24", "536");
INSERT INTO `wp_rg_form_view` VALUES("6288", "3", "2014-12-08 09:03:43", "66.249.79.92", "362");
INSERT INTO `wp_rg_form_view` VALUES("6289", "3", "2014-12-08 10:00:07", "66.249.79.92", "498");
INSERT INTO `wp_rg_form_view` VALUES("6290", "3", "2014-12-08 11:00:29", "66.249.79.76", "254");
INSERT INTO `wp_rg_form_view` VALUES("6291", "3", "2014-12-08 12:02:38", "157.55.39.212", "70");
INSERT INTO `wp_rg_form_view` VALUES("6292", "3", "2014-12-08 13:03:29", "66.249.79.84", "82");
INSERT INTO `wp_rg_form_view` VALUES("6293", "3", "2014-12-08 14:02:04", "66.249.79.92", "76");
INSERT INTO `wp_rg_form_view` VALUES("6294", "3", "2014-12-08 15:00:10", "100.43.85.24", "140");
INSERT INTO `wp_rg_form_view` VALUES("6295", "2", "2014-12-08 15:39:01", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("6296", "3", "2014-12-08 16:09:26", "100.43.85.24", "317");
INSERT INTO `wp_rg_form_view` VALUES("6297", "3", "2014-12-08 17:00:28", "66.249.79.76", "720");
INSERT INTO `wp_rg_form_view` VALUES("6298", "3", "2014-12-08 18:00:23", "66.249.79.76", "398");
INSERT INTO `wp_rg_form_view` VALUES("6299", "1", "2014-12-08 18:05:10", "192.99.141.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("6300", "3", "2014-12-08 19:08:51", "157.55.39.212", "70");
INSERT INTO `wp_rg_form_view` VALUES("6301", "3", "2014-12-08 20:17:03", "100.43.85.24", "234");
INSERT INTO `wp_rg_form_view` VALUES("6302", "3", "2014-12-08 21:01:03", "66.249.79.76", "350");
INSERT INTO `wp_rg_form_view` VALUES("6303", "3", "2014-12-08 22:01:41", "66.249.79.92", "352");
INSERT INTO `wp_rg_form_view` VALUES("6304", "3", "2014-12-08 23:00:10", "66.249.79.84", "402");
INSERT INTO `wp_rg_form_view` VALUES("6305", "2", "2014-12-08 23:07:34", "27.159.216.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("6306", "3", "2014-12-09 00:01:41", "66.249.79.92", "5496");
INSERT INTO `wp_rg_form_view` VALUES("6307", "3", "2014-12-09 01:00:05", "66.249.79.76", "6810");
INSERT INTO `wp_rg_form_view` VALUES("6308", "3", "2014-12-09 02:00:00", "66.249.79.84", "6343");
INSERT INTO `wp_rg_form_view` VALUES("6309", "6", "2014-12-09 02:53:38", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("6310", "3", "2014-12-09 03:00:01", "66.249.79.84", "7626");
INSERT INTO `wp_rg_form_view` VALUES("6311", "6", "2014-12-09 03:47:31", "74.247.76.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("6312", "1", "2014-12-09 03:48:18", "74.247.76.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("6313", "2", "2014-12-09 03:48:29", "74.247.76.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("6314", "3", "2014-12-09 04:00:00", "66.249.79.92", "6921");
INSERT INTO `wp_rg_form_view` VALUES("6315", "3", "2014-12-09 05:00:01", "66.249.79.84", "5785");
INSERT INTO `wp_rg_form_view` VALUES("6316", "3", "2014-12-09 06:00:45", "66.249.79.84", "7032");
INSERT INTO `wp_rg_form_view` VALUES("6317", "6", "2014-12-09 06:03:15", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6318", "3", "2014-12-09 07:00:00", "66.249.79.92", "6274");
INSERT INTO `wp_rg_form_view` VALUES("6319", "6", "2014-12-09 07:54:59", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6320", "3", "2014-12-09 08:00:02", "66.249.79.92", "5784");
INSERT INTO `wp_rg_form_view` VALUES("6321", "3", "2014-12-09 09:00:00", "66.249.79.76", "6617");
INSERT INTO `wp_rg_form_view` VALUES("6322", "6", "2014-12-09 09:21:38", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6323", "3", "2014-12-09 10:00:02", "66.249.79.84", "5964");
INSERT INTO `wp_rg_form_view` VALUES("6324", "1", "2014-12-09 10:34:44", "91.200.12.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("6325", "3", "2014-12-09 11:01:07", "66.249.79.76", "804");
INSERT INTO `wp_rg_form_view` VALUES("6326", "1", "2014-12-09 11:39:48", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6327", "3", "2014-12-09 12:00:31", "66.249.79.92", "451");
INSERT INTO `wp_rg_form_view` VALUES("6328", "6", "2014-12-09 12:17:11", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6329", "3", "2014-12-09 13:00:00", "66.249.79.84", "2094");
INSERT INTO `wp_rg_form_view` VALUES("6330", "3", "2014-12-09 14:00:08", "66.249.79.76", "3553");
INSERT INTO `wp_rg_form_view` VALUES("6331", "3", "2014-12-09 15:00:02", "66.249.79.76", "3856");
INSERT INTO `wp_rg_form_view` VALUES("6332", "3", "2014-12-09 16:00:01", "66.249.79.76", "3564");
INSERT INTO `wp_rg_form_view` VALUES("6333", "6", "2014-12-09 16:28:38", "100.43.85.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("6334", "1", "2014-12-09 16:33:47", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6335", "3", "2014-12-09 17:00:07", "66.249.79.84", "3440");
INSERT INTO `wp_rg_form_view` VALUES("6336", "1", "2014-12-09 17:44:47", "198.199.123.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("6337", "2", "2014-12-09 17:44:47", "198.199.123.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("6338", "3", "2014-12-09 18:00:05", "66.249.79.76", "3414");
INSERT INTO `wp_rg_form_view` VALUES("6339", "3", "2014-12-09 19:00:04", "66.249.79.76", "4001");
INSERT INTO `wp_rg_form_view` VALUES("6340", "6", "2014-12-09 19:23:19", "79.116.31.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("6341", "1", "2014-12-09 19:24:02", "79.116.31.254", "3");
INSERT INTO `wp_rg_form_view` VALUES("6342", "2", "2014-12-09 19:24:12", "79.116.31.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("6343", "3", "2014-12-09 20:00:04", "66.249.79.84", "3018");
INSERT INTO `wp_rg_form_view` VALUES("6344", "3", "2014-12-09 21:00:01", "66.249.79.76", "3250");
INSERT INTO `wp_rg_form_view` VALUES("6345", "6", "2014-12-09 21:52:39", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6346", "6", "2014-12-09 22:00:09", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6347", "3", "2014-12-09 22:00:10", "66.249.79.92", "1608");
INSERT INTO `wp_rg_form_view` VALUES("6348", "3", "2014-12-09 23:00:23", "66.249.79.76", "888");
INSERT INTO `wp_rg_form_view` VALUES("6349", "6", "2014-12-09 23:18:32", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("6350", "3", "2014-12-10 00:00:13", "66.249.79.92", "596");
INSERT INTO `wp_rg_form_view` VALUES("6351", "6", "2014-12-10 00:59:28", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("6352", "3", "2014-12-10 01:00:08", "66.249.79.92", "764");
INSERT INTO `wp_rg_form_view` VALUES("6353", "3", "2014-12-10 02:00:02", "66.249.79.84", "1220");
INSERT INTO `wp_rg_form_view` VALUES("6354", "6", "2014-12-10 02:39:57", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6355", "3", "2014-12-10 03:00:14", "66.249.79.76", "1559");
INSERT INTO `wp_rg_form_view` VALUES("6356", "6", "2014-12-10 03:23:36", "202.46.50.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("6357", "3", "2014-12-10 04:00:02", "66.249.79.84", "1676");
INSERT INTO `wp_rg_form_view` VALUES("6358", "6", "2014-12-10 04:32:47", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6359", "3", "2014-12-10 05:00:09", "66.249.79.92", "944");
INSERT INTO `wp_rg_form_view` VALUES("6360", "3", "2014-12-10 06:00:24", "66.249.79.84", "898");
INSERT INTO `wp_rg_form_view` VALUES("6361", "1", "2014-12-10 06:41:02", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("6362", "3", "2014-12-10 07:00:08", "66.249.79.84", "392");
INSERT INTO `wp_rg_form_view` VALUES("6363", "3", "2014-12-10 08:00:38", "66.249.79.76", "290");
INSERT INTO `wp_rg_form_view` VALUES("6364", "3", "2014-12-10 09:00:20", "66.249.79.92", "816");
INSERT INTO `wp_rg_form_view` VALUES("6365", "3", "2014-12-10 10:01:14", "66.249.79.92", "850");
INSERT INTO `wp_rg_form_view` VALUES("6366", "3", "2014-12-10 11:00:20", "66.249.79.84", "690");
INSERT INTO `wp_rg_form_view` VALUES("6367", "3", "2014-12-10 12:00:03", "66.249.79.92", "5442");
INSERT INTO `wp_rg_form_view` VALUES("6368", "2", "2014-12-10 12:09:54", "144.76.182.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("6369", "1", "2014-12-10 12:10:03", "144.76.182.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("6370", "6", "2014-12-10 12:17:32", "144.76.182.149", "11");
INSERT INTO `wp_rg_form_view` VALUES("6371", "3", "2014-12-10 13:00:03", "144.76.182.149", "5928");
INSERT INTO `wp_rg_form_view` VALUES("6372", "6", "2014-12-10 13:37:40", "144.76.182.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("6373", "3", "2014-12-10 14:00:01", "144.76.182.149", "3568");
INSERT INTO `wp_rg_form_view` VALUES("6374", "6", "2014-12-10 14:48:41", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6375", "3", "2014-12-10 15:00:17", "66.249.79.76", "2114");
INSERT INTO `wp_rg_form_view` VALUES("6376", "6", "2014-12-10 15:11:52", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6377", "3", "2014-12-10 16:00:08", "66.249.79.92", "2002");
INSERT INTO `wp_rg_form_view` VALUES("6378", "3", "2014-12-10 17:00:00", "66.249.79.76", "2080");
INSERT INTO `wp_rg_form_view` VALUES("6379", "3", "2014-12-10 18:00:08", "66.249.79.84", "2124");
INSERT INTO `wp_rg_form_view` VALUES("6380", "6", "2014-12-10 18:09:55", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("6381", "3", "2014-12-10 19:00:23", "66.249.79.76", "672");
INSERT INTO `wp_rg_form_view` VALUES("6382", "6", "2014-12-10 19:14:07", "188.165.15.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("6383", "1", "2014-12-10 19:54:51", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6384", "3", "2014-12-10 20:03:28", "66.249.79.84", "190");
INSERT INTO `wp_rg_form_view` VALUES("6385", "3", "2014-12-10 21:02:37", "100.43.85.24", "128");
INSERT INTO `wp_rg_form_view` VALUES("6386", "3", "2014-12-10 22:24:47", "188.165.15.235", "60");
INSERT INTO `wp_rg_form_view` VALUES("6387", "3", "2014-12-10 23:10:31", "66.249.79.76", "230");
INSERT INTO `wp_rg_form_view` VALUES("6388", "3", "2014-12-11 00:05:02", "66.249.79.92", "540");
INSERT INTO `wp_rg_form_view` VALUES("6389", "6", "2014-12-11 00:15:32", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6390", "3", "2014-12-11 01:01:12", "66.249.79.76", "1716");
INSERT INTO `wp_rg_form_view` VALUES("6391", "1", "2014-12-11 01:08:47", "85.17.73.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("6392", "2", "2014-12-11 01:10:17", "85.17.73.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("6393", "3", "2014-12-11 02:00:06", "66.249.79.84", "2070");
INSERT INTO `wp_rg_form_view` VALUES("6394", "3", "2014-12-11 03:00:05", "66.249.79.84", "2290");
INSERT INTO `wp_rg_form_view` VALUES("6395", "3", "2014-12-11 04:00:14", "66.249.79.76", "2084");
INSERT INTO `wp_rg_form_view` VALUES("6396", "3", "2014-12-11 05:00:00", "66.249.79.92", "2160");
INSERT INTO `wp_rg_form_view` VALUES("6397", "6", "2014-12-11 05:11:40", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6398", "3", "2014-12-11 06:00:08", "66.249.79.84", "2367");
INSERT INTO `wp_rg_form_view` VALUES("6399", "1", "2014-12-11 06:20:26", "107.150.36.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("6400", "3", "2014-12-11 07:00:11", "66.249.79.76", "2030");
INSERT INTO `wp_rg_form_view` VALUES("6401", "6", "2014-12-11 07:23:37", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6402", "3", "2014-12-11 08:00:12", "157.55.39.162", "2334");
INSERT INTO `wp_rg_form_view` VALUES("6403", "3", "2014-12-11 09:00:08", "66.249.79.84", "1784");
INSERT INTO `wp_rg_form_view` VALUES("6404", "6", "2014-12-11 09:35:14", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6405", "3", "2014-12-11 10:00:28", "100.43.85.24", "180");
INSERT INTO `wp_rg_form_view` VALUES("6406", "3", "2014-12-11 11:04:36", "66.249.79.76", "202");
INSERT INTO `wp_rg_form_view` VALUES("6407", "6", "2014-12-11 11:35:06", "100.43.85.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("6408", "3", "2014-12-11 12:05:30", "157.55.39.212", "348");
INSERT INTO `wp_rg_form_view` VALUES("6409", "1", "2014-12-11 12:32:42", "120.71.26.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("6410", "3", "2014-12-11 13:00:53", "66.249.79.76", "292");
INSERT INTO `wp_rg_form_view` VALUES("6411", "2", "2014-12-11 13:11:41", "188.165.15.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("6412", "3", "2014-12-11 14:02:15", "66.249.79.92", "338");
INSERT INTO `wp_rg_form_view` VALUES("6413", "6", "2014-12-11 14:05:34", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("6414", "3", "2014-12-11 15:09:18", "216.244.81.35", "220");
INSERT INTO `wp_rg_form_view` VALUES("6415", "3", "2014-12-11 16:00:05", "66.249.79.84", "1424");
INSERT INTO `wp_rg_form_view` VALUES("6416", "3", "2014-12-11 17:00:04", "66.249.79.84", "1690");
INSERT INTO `wp_rg_form_view` VALUES("6417", "3", "2014-12-11 18:00:22", "66.249.79.84", "1464");
INSERT INTO `wp_rg_form_view` VALUES("6418", "3", "2014-12-11 19:00:02", "66.249.79.92", "2132");
INSERT INTO `wp_rg_form_view` VALUES("6419", "6", "2014-12-11 19:38:34", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6420", "3", "2014-12-11 20:00:05", "66.249.79.76", "2283");
INSERT INTO `wp_rg_form_view` VALUES("6421", "3", "2014-12-11 21:02:17", "24.108.89.147", "442");
INSERT INTO `wp_rg_form_view` VALUES("6422", "3", "2014-12-11 22:00:01", "208.43.245.104", "1109");
INSERT INTO `wp_rg_form_view` VALUES("6423", "1", "2014-12-11 22:02:56", "208.43.245.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("6424", "6", "2014-12-11 22:07:09", "208.43.245.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("6425", "3", "2014-12-11 23:01:51", "100.43.85.24", "230");
INSERT INTO `wp_rg_form_view` VALUES("6426", "3", "2014-12-12 00:00:04", "107.168.11.92", "339");
INSERT INTO `wp_rg_form_view` VALUES("6427", "3", "2014-12-12 01:00:20", "66.249.79.84", "988");
INSERT INTO `wp_rg_form_view` VALUES("6428", "6", "2014-12-12 01:03:00", "157.55.39.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("6429", "2", "2014-12-12 01:04:53", "157.55.39.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("6430", "3", "2014-12-12 02:00:11", "66.249.79.92", "618");
INSERT INTO `wp_rg_form_view` VALUES("6431", "3", "2014-12-12 03:00:01", "24.244.23.214", "656");
INSERT INTO `wp_rg_form_view` VALUES("6432", "3", "2014-12-12 04:00:00", "66.249.79.92", "876");
INSERT INTO `wp_rg_form_view` VALUES("6433", "3", "2014-12-12 05:00:11", "66.249.79.84", "524");
INSERT INTO `wp_rg_form_view` VALUES("6434", "3", "2014-12-12 06:03:00", "66.249.79.84", "662");
INSERT INTO `wp_rg_form_view` VALUES("6435", "3", "2014-12-12 07:00:00", "24.108.74.143", "606");
INSERT INTO `wp_rg_form_view` VALUES("6436", "1", "2014-12-12 07:08:33", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6437", "3", "2014-12-12 08:00:25", "66.249.79.76", "441");
INSERT INTO `wp_rg_form_view` VALUES("6438", "3", "2014-12-12 09:08:16", "157.55.39.212", "154");
INSERT INTO `wp_rg_form_view` VALUES("6439", "3", "2014-12-12 10:03:04", "66.249.79.92", "330");
INSERT INTO `wp_rg_form_view` VALUES("6440", "3", "2014-12-12 11:00:10", "157.55.39.62", "230");
INSERT INTO `wp_rg_form_view` VALUES("6441", "3", "2014-12-12 12:01:47", "157.55.39.62", "296");
INSERT INTO `wp_rg_form_view` VALUES("6442", "3", "2014-12-12 13:02:19", "66.249.79.92", "1274");
INSERT INTO `wp_rg_form_view` VALUES("6443", "3", "2014-12-12 14:00:07", "66.249.79.92", "1422");
INSERT INTO `wp_rg_form_view` VALUES("6444", "3", "2014-12-12 15:00:05", "66.249.79.92", "1270");
INSERT INTO `wp_rg_form_view` VALUES("6445", "6", "2014-12-12 15:53:53", "216.244.81.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("6446", "3", "2014-12-12 16:00:00", "66.249.79.84", "798");
INSERT INTO `wp_rg_form_view` VALUES("6447", "3", "2014-12-12 17:00:27", "66.249.79.92", "414");
INSERT INTO `wp_rg_form_view` VALUES("6448", "3", "2014-12-12 18:04:01", "66.249.79.84", "314");
INSERT INTO `wp_rg_form_view` VALUES("6449", "1", "2014-12-12 18:12:33", "98.143.144.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("6450", "3", "2014-12-12 19:02:06", "157.55.39.62", "206");
INSERT INTO `wp_rg_form_view` VALUES("6451", "1", "2014-12-12 19:34:20", "98.143.144.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("6452", "3", "2014-12-12 20:03:57", "66.249.79.76", "213");
INSERT INTO `wp_rg_form_view` VALUES("6453", "3", "2014-12-12 21:00:05", "66.249.79.76", "574");
INSERT INTO `wp_rg_form_view` VALUES("6454", "3", "2014-12-12 22:00:20", "66.249.79.92", "708");
INSERT INTO `wp_rg_form_view` VALUES("6455", "6", "2014-12-12 22:43:44", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6456", "3", "2014-12-12 23:00:20", "66.249.79.92", "1114");
INSERT INTO `wp_rg_form_view` VALUES("6457", "1", "2014-12-12 23:51:11", "174.127.133.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("6458", "2", "2014-12-12 23:54:48", "174.127.133.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("6459", "3", "2014-12-13 00:00:15", "66.249.79.76", "694");
INSERT INTO `wp_rg_form_view` VALUES("6460", "3", "2014-12-13 01:00:01", "66.249.79.76", "942");
INSERT INTO `wp_rg_form_view` VALUES("6461", "6", "2014-12-13 01:49:36", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("6462", "3", "2014-12-13 02:00:03", "66.249.79.76", "1702");
INSERT INTO `wp_rg_form_view` VALUES("6463", "3", "2014-12-13 03:00:07", "66.249.79.76", "1218");
INSERT INTO `wp_rg_form_view` VALUES("6464", "3", "2014-12-13 04:00:00", "66.249.79.76", "1647");
INSERT INTO `wp_rg_form_view` VALUES("6465", "6", "2014-12-13 04:04:53", "66.249.79.92", "5");
INSERT INTO `wp_rg_form_view` VALUES("6466", "3", "2014-12-13 05:00:22", "66.249.79.84", "1486");
INSERT INTO `wp_rg_form_view` VALUES("6467", "3", "2014-12-13 06:00:06", "66.249.79.92", "678");
INSERT INTO `wp_rg_form_view` VALUES("6468", "3", "2014-12-13 07:01:57", "66.249.79.92", "934");
INSERT INTO `wp_rg_form_view` VALUES("6469", "3", "2014-12-13 08:00:11", "66.249.79.92", "932");
INSERT INTO `wp_rg_form_view` VALUES("6470", "3", "2014-12-13 09:00:05", "66.249.79.76", "923");
INSERT INTO `wp_rg_form_view` VALUES("6471", "1", "2014-12-13 09:53:43", "5.135.216.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("6472", "3", "2014-12-13 10:00:00", "66.249.79.76", "904");
INSERT INTO `wp_rg_form_view` VALUES("6473", "3", "2014-12-13 11:00:26", "66.249.79.84", "428");
INSERT INTO `wp_rg_form_view` VALUES("6474", "3", "2014-12-13 12:02:43", "157.55.39.212", "190");
INSERT INTO `wp_rg_form_view` VALUES("6475", "1", "2014-12-13 12:20:41", "91.200.12.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("6476", "3", "2014-12-13 13:03:47", "157.55.39.162", "438");
INSERT INTO `wp_rg_form_view` VALUES("6477", "3", "2014-12-13 14:00:12", "66.249.79.76", "462");
INSERT INTO `wp_rg_form_view` VALUES("6478", "3", "2014-12-13 15:00:02", "66.249.79.92", "751");
INSERT INTO `wp_rg_form_view` VALUES("6479", "6", "2014-12-13 15:33:42", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6480", "3", "2014-12-13 16:00:27", "66.249.79.84", "682");
INSERT INTO `wp_rg_form_view` VALUES("6481", "3", "2014-12-13 17:02:01", "157.55.39.211", "636");
INSERT INTO `wp_rg_form_view` VALUES("6482", "3", "2014-12-13 18:00:05", "66.249.79.84", "662");
INSERT INTO `wp_rg_form_view` VALUES("6483", "3", "2014-12-13 19:01:35", "157.55.39.162", "362");
INSERT INTO `wp_rg_form_view` VALUES("6484", "3", "2014-12-13 20:04:05", "157.55.39.162", "136");
INSERT INTO `wp_rg_form_view` VALUES("6485", "3", "2014-12-13 21:00:06", "157.55.39.162", "265");
INSERT INTO `wp_rg_form_view` VALUES("6486", "3", "2014-12-13 22:02:02", "157.55.39.211", "290");
INSERT INTO `wp_rg_form_view` VALUES("6487", "6", "2014-12-13 22:18:35", "157.55.39.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("6488", "3", "2014-12-13 23:03:30", "157.55.39.25", "483");
INSERT INTO `wp_rg_form_view` VALUES("6489", "6", "2014-12-13 23:06:51", "89.123.55.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("6490", "1", "2014-12-13 23:07:25", "89.123.55.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("6491", "3", "2014-12-14 00:00:41", "157.55.39.221", "282");
INSERT INTO `wp_rg_form_view` VALUES("6492", "6", "2014-12-14 00:54:20", "157.55.39.212", "2");
INSERT INTO `wp_rg_form_view` VALUES("6493", "3", "2014-12-14 01:00:44", "157.55.39.213", "302");
INSERT INTO `wp_rg_form_view` VALUES("6494", "3", "2014-12-14 02:05:07", "66.249.79.76", "350");
INSERT INTO `wp_rg_form_view` VALUES("6495", "3", "2014-12-14 03:05:06", "157.55.39.162", "438");
INSERT INTO `wp_rg_form_view` VALUES("6496", "3", "2014-12-14 04:00:39", "66.249.79.76", "480");
INSERT INTO `wp_rg_form_view` VALUES("6497", "6", "2014-12-14 04:10:24", "216.244.81.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("6498", "3", "2014-12-14 05:01:59", "66.249.79.76", "290");
INSERT INTO `wp_rg_form_view` VALUES("6499", "3", "2014-12-14 06:00:52", "157.55.39.62", "272");
INSERT INTO `wp_rg_form_view` VALUES("6500", "3", "2014-12-14 07:01:11", "157.55.39.62", "210");
INSERT INTO `wp_rg_form_view` VALUES("6501", "1", "2014-12-14 08:04:47", "192.200.24.249", "3");
INSERT INTO `wp_rg_form_view` VALUES("6502", "3", "2014-12-14 08:04:47", "192.200.24.249", "638");
INSERT INTO `wp_rg_form_view` VALUES("6503", "2", "2014-12-14 08:29:57", "62.210.142.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("6504", "3", "2014-12-14 09:07:00", "157.55.39.62", "214");
INSERT INTO `wp_rg_form_view` VALUES("6505", "3", "2014-12-14 10:06:12", "157.55.39.211", "236");
INSERT INTO `wp_rg_form_view` VALUES("6506", "3", "2014-12-14 11:02:32", "157.55.39.62", "200");
INSERT INTO `wp_rg_form_view` VALUES("6507", "1", "2014-12-14 11:38:41", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6508", "3", "2014-12-14 12:04:30", "46.118.39.29", "180");
INSERT INTO `wp_rg_form_view` VALUES("6509", "3", "2014-12-14 13:06:15", "157.55.39.211", "266");
INSERT INTO `wp_rg_form_view` VALUES("6510", "3", "2014-12-14 14:07:08", "157.55.39.13", "409");
INSERT INTO `wp_rg_form_view` VALUES("6511", "3", "2014-12-14 15:00:05", "66.249.79.76", "428");
INSERT INTO `wp_rg_form_view` VALUES("6512", "3", "2014-12-14 16:11:30", "66.249.79.92", "796");
INSERT INTO `wp_rg_form_view` VALUES("6513", "6", "2014-12-14 16:33:45", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6514", "3", "2014-12-14 17:00:33", "66.249.79.84", "980");
INSERT INTO `wp_rg_form_view` VALUES("6515", "3", "2014-12-14 18:02:28", "24.68.239.2", "455");
INSERT INTO `wp_rg_form_view` VALUES("6516", "3", "2014-12-14 18:02:28", "24.68.239.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("6517", "1", "2014-12-14 18:11:54", "174.127.133.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("6518", "3", "2014-12-14 19:00:10", "66.249.79.76", "636");
INSERT INTO `wp_rg_form_view` VALUES("6519", "3", "2014-12-14 20:06:03", "157.55.39.221", "480");
INSERT INTO `wp_rg_form_view` VALUES("6520", "3", "2014-12-14 21:00:00", "66.249.79.84", "786");
INSERT INTO `wp_rg_form_view` VALUES("6521", "3", "2014-12-14 22:00:12", "74.214.134.243", "824");
INSERT INTO `wp_rg_form_view` VALUES("6522", "3", "2014-12-14 23:04:43", "66.249.79.84", "592");
INSERT INTO `wp_rg_form_view` VALUES("6523", "3", "2014-12-15 00:00:29", "66.249.79.84", "262");
INSERT INTO `wp_rg_form_view` VALUES("6524", "3", "2014-12-15 01:02:20", "157.55.39.162", "464");
INSERT INTO `wp_rg_form_view` VALUES("6525", "3", "2014-12-15 02:00:24", "66.249.79.84", "396");
INSERT INTO `wp_rg_form_view` VALUES("6526", "3", "2014-12-15 03:08:55", "66.249.79.84", "562");
INSERT INTO `wp_rg_form_view` VALUES("6527", "3", "2014-12-15 04:00:39", "66.249.79.84", "948");
INSERT INTO `wp_rg_form_view` VALUES("6528", "6", "2014-12-15 04:51:05", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6529", "3", "2014-12-15 05:00:16", "66.249.79.92", "838");
INSERT INTO `wp_rg_form_view` VALUES("6530", "6", "2014-12-15 05:59:40", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6531", "3", "2014-12-15 06:00:00", "66.249.79.76", "500");
INSERT INTO `wp_rg_form_view` VALUES("6532", "6", "2014-12-15 06:24:34", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6533", "3", "2014-12-15 07:01:48", "66.249.79.76", "130");
INSERT INTO `wp_rg_form_view` VALUES("6534", "3", "2014-12-15 08:10:35", "157.55.39.15", "58");
INSERT INTO `wp_rg_form_view` VALUES("6535", "3", "2014-12-15 09:27:25", "157.55.39.211", "60");
INSERT INTO `wp_rg_form_view` VALUES("6536", "1", "2014-12-15 09:28:53", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6537", "3", "2014-12-15 10:15:19", "66.249.79.84", "70");
INSERT INTO `wp_rg_form_view` VALUES("6538", "3", "2014-12-15 11:11:58", "157.55.39.212", "54");
INSERT INTO `wp_rg_form_view` VALUES("6539", "3", "2014-12-15 12:10:37", "66.249.67.92", "70");
INSERT INTO `wp_rg_form_view` VALUES("6540", "3", "2014-12-15 13:11:35", "100.43.85.24", "440");
INSERT INTO `wp_rg_form_view` VALUES("6541", "6", "2014-12-15 13:38:40", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("6542", "3", "2014-12-15 14:04:28", "66.249.67.92", "164");
INSERT INTO `wp_rg_form_view` VALUES("6543", "3", "2014-12-15 15:00:13", "66.249.67.84", "6404");
INSERT INTO `wp_rg_form_view` VALUES("6544", "2", "2014-12-15 15:24:22", "5.9.223.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("6545", "1", "2014-12-15 15:24:41", "5.9.223.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("6546", "6", "2014-12-15 15:24:59", "5.9.223.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("6547", "3", "2014-12-15 16:00:01", "5.9.223.170", "616");
INSERT INTO `wp_rg_form_view` VALUES("6548", "6", "2014-12-15 16:41:55", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("6549", "3", "2014-12-15 17:00:03", "202.46.63.160", "184");
INSERT INTO `wp_rg_form_view` VALUES("6550", "3", "2014-12-15 18:02:54", "68.180.229.33", "54");
INSERT INTO `wp_rg_form_view` VALUES("6551", "3", "2014-12-15 19:08:59", "100.43.85.24", "213");
INSERT INTO `wp_rg_form_view` VALUES("6552", "2", "2014-12-15 19:10:59", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("6553", "1", "2014-12-15 19:59:15", "192.81.211.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("6554", "1", "2014-12-15 20:03:57", "27.150.228.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("6555", "3", "2014-12-15 20:03:57", "27.150.228.190", "102");
INSERT INTO `wp_rg_form_view` VALUES("6556", "3", "2014-12-15 21:02:20", "207.194.133.9", "250");
INSERT INTO `wp_rg_form_view` VALUES("6557", "3", "2014-12-15 22:04:28", "66.249.79.92", "100");
INSERT INTO `wp_rg_form_view` VALUES("6558", "3", "2014-12-15 23:22:51", "202.46.63.65", "104");
INSERT INTO `wp_rg_form_view` VALUES("6559", "3", "2014-12-16 00:05:26", "66.249.79.84", "140");
INSERT INTO `wp_rg_form_view` VALUES("6560", "3", "2014-12-16 01:14:26", "157.55.39.62", "142");
INSERT INTO `wp_rg_form_view` VALUES("6561", "3", "2014-12-16 02:05:14", "66.249.79.76", "322");
INSERT INTO `wp_rg_form_view` VALUES("6562", "3", "2014-12-16 03:00:12", "66.249.79.92", "427");
INSERT INTO `wp_rg_form_view` VALUES("6563", "6", "2014-12-16 03:47:29", "188.165.15.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("6564", "3", "2014-12-16 04:01:20", "66.249.79.84", "404");
INSERT INTO `wp_rg_form_view` VALUES("6565", "3", "2014-12-16 05:00:39", "66.249.79.76", "376");
INSERT INTO `wp_rg_form_view` VALUES("6566", "3", "2014-12-16 06:00:07", "66.249.79.84", "497");
INSERT INTO `wp_rg_form_view` VALUES("6567", "6", "2014-12-16 06:31:49", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("6568", "3", "2014-12-16 07:09:52", "66.249.79.76", "228");
INSERT INTO `wp_rg_form_view` VALUES("6569", "3", "2014-12-16 08:05:30", "188.165.15.208", "60");
INSERT INTO `wp_rg_form_view` VALUES("6570", "1", "2014-12-16 08:15:49", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6571", "3", "2014-12-16 09:00:30", "66.249.79.76", "250");
INSERT INTO `wp_rg_form_view` VALUES("6572", "3", "2014-12-16 10:00:00", "66.249.79.84", "220");
INSERT INTO `wp_rg_form_view` VALUES("6573", "2", "2014-12-16 10:27:58", "77.245.71.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("6574", "3", "2014-12-16 11:04:04", "66.249.79.76", "320");
INSERT INTO `wp_rg_form_view` VALUES("6575", "3", "2014-12-16 12:00:01", "66.249.79.84", "374");
INSERT INTO `wp_rg_form_view` VALUES("6576", "3", "2014-12-16 13:00:25", "66.249.79.76", "406");
INSERT INTO `wp_rg_form_view` VALUES("6577", "6", "2014-12-16 14:00:16", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6578", "3", "2014-12-16 14:00:16", "66.249.79.76", "532");
INSERT INTO `wp_rg_form_view` VALUES("6579", "3", "2014-12-16 15:00:29", "66.249.79.84", "146");
INSERT INTO `wp_rg_form_view` VALUES("6580", "3", "2014-12-16 16:01:31", "66.249.79.76", "80");
INSERT INTO `wp_rg_form_view` VALUES("6581", "3", "2014-12-16 17:01:34", "66.249.79.76", "100");
INSERT INTO `wp_rg_form_view` VALUES("6582", "3", "2014-12-16 18:04:40", "78.26.169.14", "140");
INSERT INTO `wp_rg_form_view` VALUES("6583", "6", "2014-12-16 18:31:04", "216.244.81.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("6584", "3", "2014-12-16 19:04:19", "66.249.79.84", "482");
INSERT INTO `wp_rg_form_view` VALUES("6585", "3", "2014-12-16 20:00:07", "66.249.79.84", "496");
INSERT INTO `wp_rg_form_view` VALUES("6586", "6", "2014-12-16 20:00:08", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6587", "3", "2014-12-16 21:00:13", "66.249.79.84", "790");
INSERT INTO `wp_rg_form_view` VALUES("6588", "6", "2014-12-16 21:20:05", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("6589", "3", "2014-12-16 22:00:02", "96.50.90.68", "298");
INSERT INTO `wp_rg_form_view` VALUES("6590", "3", "2014-12-16 23:12:40", "157.55.39.162", "30");
INSERT INTO `wp_rg_form_view` VALUES("6591", "3", "2014-12-17 00:11:00", "66.249.79.76", "50");
INSERT INTO `wp_rg_form_view` VALUES("6592", "3", "2014-12-17 01:07:59", "192.0.17.138", "90");
INSERT INTO `wp_rg_form_view` VALUES("6593", "3", "2014-12-17 02:08:14", "66.249.79.76", "186");
INSERT INTO `wp_rg_form_view` VALUES("6594", "2", "2014-12-17 02:18:19", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("6595", "3", "2014-12-17 03:00:29", "66.249.79.92", "288");
INSERT INTO `wp_rg_form_view` VALUES("6596", "3", "2014-12-17 04:08:25", "91.200.12.170", "288");
INSERT INTO `wp_rg_form_view` VALUES("6597", "1", "2014-12-17 04:18:08", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6598", "3", "2014-12-17 05:00:11", "66.249.79.76", "650");
INSERT INTO `wp_rg_form_view` VALUES("6599", "1", "2014-12-17 05:12:28", "96.50.106.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("6600", "3", "2014-12-17 06:00:07", "66.249.79.92", "128");
INSERT INTO `wp_rg_form_view` VALUES("6601", "3", "2014-12-17 07:00:58", "66.249.79.76", "506");
INSERT INTO `wp_rg_form_view` VALUES("6602", "6", "2014-12-17 07:28:43", "54.77.202.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("6603", "1", "2014-12-17 07:31:51", "54.77.202.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("6604", "2", "2014-12-17 07:51:32", "61.16.251.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("6605", "3", "2014-12-17 08:11:42", "24.68.108.232", "72");
INSERT INTO `wp_rg_form_view` VALUES("6606", "3", "2014-12-17 09:27:09", "198.15.178.39", "60");
INSERT INTO `wp_rg_form_view` VALUES("6607", "2", "2014-12-17 10:00:03", "198.15.178.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("6608", "3", "2014-12-17 10:00:03", "198.15.178.39", "160");
INSERT INTO `wp_rg_form_view` VALUES("6609", "1", "2014-12-17 10:21:49", "37.115.184.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("6610", "3", "2014-12-17 11:10:58", "66.249.79.92", "82");
INSERT INTO `wp_rg_form_view` VALUES("6611", "3", "2014-12-17 12:10:24", "66.249.79.76", "270");
INSERT INTO `wp_rg_form_view` VALUES("6612", "3", "2014-12-17 13:41:00", "157.55.39.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("6613", "3", "2014-12-17 14:36:09", "202.46.50.182", "30");
INSERT INTO `wp_rg_form_view` VALUES("6614", "3", "2014-12-17 15:11:24", "198.15.178.39", "60");
INSERT INTO `wp_rg_form_view` VALUES("6615", "3", "2014-12-17 16:16:53", "66.249.67.92", "510");
INSERT INTO `wp_rg_form_view` VALUES("6616", "3", "2014-12-17 17:00:09", "66.249.67.92", "552");
INSERT INTO `wp_rg_form_view` VALUES("6617", "3", "2014-12-17 18:01:24", "198.15.178.39", "585");
INSERT INTO `wp_rg_form_view` VALUES("6618", "6", "2014-12-17 18:16:55", "202.46.61.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("6619", "3", "2014-12-17 19:00:15", "66.249.67.92", "432");
INSERT INTO `wp_rg_form_view` VALUES("6620", "1", "2014-12-17 20:02:19", "198.15.178.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("6621", "3", "2014-12-17 20:02:20", "198.15.178.39", "120");
INSERT INTO `wp_rg_form_view` VALUES("6622", "3", "2014-12-17 21:00:12", "66.249.67.84", "570");
INSERT INTO `wp_rg_form_view` VALUES("6623", "6", "2014-12-17 21:29:41", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6624", "3", "2014-12-17 22:00:05", "66.249.67.92", "825");
INSERT INTO `wp_rg_form_view` VALUES("6625", "6", "2014-12-17 22:09:47", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("6626", "1", "2014-12-17 22:10:19", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("6627", "2", "2014-12-17 22:10:26", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("6628", "3", "2014-12-17 23:00:00", "66.249.67.92", "780");
INSERT INTO `wp_rg_form_view` VALUES("6629", "3", "2014-12-18 00:00:08", "66.249.67.76", "774");
INSERT INTO `wp_rg_form_view` VALUES("6630", "6", "2014-12-18 00:43:15", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6631", "3", "2014-12-18 01:00:09", "66.249.67.76", "670");
INSERT INTO `wp_rg_form_view` VALUES("6632", "3", "2014-12-18 02:00:07", "66.249.67.76", "656");
INSERT INTO `wp_rg_form_view` VALUES("6633", "3", "2014-12-18 03:02:06", "68.180.229.33", "958");
INSERT INTO `wp_rg_form_view` VALUES("6634", "3", "2014-12-18 04:00:00", "66.249.67.84", "422");
INSERT INTO `wp_rg_form_view` VALUES("6635", "3", "2014-12-18 05:15:06", "66.249.67.92", "300");
INSERT INTO `wp_rg_form_view` VALUES("6636", "3", "2014-12-18 06:00:16", "66.249.67.84", "454");
INSERT INTO `wp_rg_form_view` VALUES("6637", "3", "2014-12-18 08:23:41", "68.180.229.33", "250");
INSERT INTO `wp_rg_form_view` VALUES("6638", "6", "2014-12-18 08:25:49", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("6639", "3", "2014-12-18 09:00:11", "66.249.67.92", "682");
INSERT INTO `wp_rg_form_view` VALUES("6640", "6", "2014-12-18 09:29:18", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6641", "3", "2014-12-18 10:00:13", "66.249.67.84", "380");
INSERT INTO `wp_rg_form_view` VALUES("6642", "3", "2014-12-18 11:00:13", "66.249.67.76", "786");
INSERT INTO `wp_rg_form_view` VALUES("6643", "3", "2014-12-18 12:18:14", "68.180.229.33", "30");
INSERT INTO `wp_rg_form_view` VALUES("6644", "3", "2014-12-18 13:01:42", "66.249.67.76", "56");
INSERT INTO `wp_rg_form_view` VALUES("6645", "3", "2014-12-18 14:11:36", "66.249.67.84", "232");
INSERT INTO `wp_rg_form_view` VALUES("6646", "3", "2014-12-18 15:01:16", "66.249.67.84", "452");
INSERT INTO `wp_rg_form_view` VALUES("6647", "6", "2014-12-18 15:30:14", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6648", "3", "2014-12-18 16:00:20", "66.249.67.76", "352");
INSERT INTO `wp_rg_form_view` VALUES("6649", "3", "2014-12-18 17:00:11", "66.249.67.76", "280");
INSERT INTO `wp_rg_form_view` VALUES("6650", "3", "2014-12-18 18:00:28", "66.249.67.92", "50");
INSERT INTO `wp_rg_form_view` VALUES("6651", "3", "2014-12-18 19:10:36", "62.210.142.7", "184");
INSERT INTO `wp_rg_form_view` VALUES("6652", "2", "2014-12-18 19:10:42", "62.210.142.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("6653", "1", "2014-12-18 19:10:46", "62.210.142.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("6654", "3", "2014-12-18 20:43:58", "216.232.202.228", "40");
INSERT INTO `wp_rg_form_view` VALUES("6655", "3", "2014-12-18 21:12:02", "24.68.98.225", "32");
INSERT INTO `wp_rg_form_view` VALUES("6656", "3", "2014-12-18 22:00:23", "66.249.67.84", "320");
INSERT INTO `wp_rg_form_view` VALUES("6657", "6", "2014-12-18 22:17:47", "68.180.229.33", "4");
INSERT INTO `wp_rg_form_view` VALUES("6658", "3", "2014-12-18 23:00:23", "66.249.67.76", "720");
INSERT INTO `wp_rg_form_view` VALUES("6659", "2", "2014-12-18 23:22:47", "195.154.181.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("6660", "3", "2014-12-19 00:00:02", "66.249.67.76", "40");
INSERT INTO `wp_rg_form_view` VALUES("6661", "2", "2014-12-19 01:04:34", "167.160.127.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("6662", "3", "2014-12-19 01:04:34", "167.160.127.99", "556");
INSERT INTO `wp_rg_form_view` VALUES("6663", "1", "2014-12-19 01:15:06", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("6664", "6", "2014-12-19 01:57:25", "54.171.98.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("6665", "3", "2014-12-19 02:00:06", "91.200.12.170", "547");
INSERT INTO `wp_rg_form_view` VALUES("6666", "1", "2014-12-19 02:01:25", "54.171.98.192", "3");
INSERT INTO `wp_rg_form_view` VALUES("6667", "2", "2014-12-19 02:02:12", "54.171.98.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("6668", "1", "2014-12-19 03:07:40", "107.150.36.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("6669", "3", "2014-12-19 03:07:40", "107.150.36.162", "259");
INSERT INTO `wp_rg_form_view` VALUES("6670", "6", "2014-12-19 03:09:13", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("6671", "3", "2014-12-19 04:08:09", "202.46.48.207", "72");
INSERT INTO `wp_rg_form_view` VALUES("6672", "3", "2014-12-19 05:12:43", "66.249.79.76", "42");
INSERT INTO `wp_rg_form_view` VALUES("6673", "3", "2014-12-19 06:04:39", "157.55.39.211", "90");
INSERT INTO `wp_rg_form_view` VALUES("6674", "3", "2014-12-19 07:00:02", "69.12.73.114", "297");
INSERT INTO `wp_rg_form_view` VALUES("6675", "3", "2014-12-19 08:00:17", "202.46.49.188", "462");
INSERT INTO `wp_rg_form_view` VALUES("6676", "3", "2014-12-19 09:01:53", "66.249.79.84", "543");
INSERT INTO `wp_rg_form_view` VALUES("6677", "1", "2014-12-19 09:19:31", "107.150.36.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("6678", "6", "2014-12-19 09:59:56", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6679", "3", "2014-12-19 10:00:17", "66.249.79.92", "370");
INSERT INTO `wp_rg_form_view` VALUES("6680", "3", "2014-12-19 11:00:05", "66.249.79.84", "860");
INSERT INTO `wp_rg_form_view` VALUES("6681", "3", "2014-12-19 12:00:14", "66.249.79.92", "978");
INSERT INTO `wp_rg_form_view` VALUES("6682", "3", "2014-12-19 13:00:02", "66.249.79.84", "1090");
INSERT INTO `wp_rg_form_view` VALUES("6683", "3", "2014-12-19 14:00:37", "66.249.79.84", "720");
INSERT INTO `wp_rg_form_view` VALUES("6684", "3", "2014-12-19 15:19:54", "66.249.79.84", "192");
INSERT INTO `wp_rg_form_view` VALUES("6685", "6", "2014-12-19 15:59:17", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6686", "3", "2014-12-19 16:00:29", "66.249.79.92", "798");
INSERT INTO `wp_rg_form_view` VALUES("6687", "3", "2014-12-19 17:00:07", "66.249.79.84", "1176");
INSERT INTO `wp_rg_form_view` VALUES("6688", "3", "2014-12-19 18:00:07", "66.249.79.84", "1287");
INSERT INTO `wp_rg_form_view` VALUES("6689", "2", "2014-12-19 18:10:46", "104.128.23.5", "3");
INSERT INTO `wp_rg_form_view` VALUES("6690", "3", "2014-12-19 19:02:33", "66.249.79.92", "1114");
INSERT INTO `wp_rg_form_view` VALUES("6691", "2", "2014-12-19 19:33:00", "69.12.77.147", "5");
INSERT INTO `wp_rg_form_view` VALUES("6692", "3", "2014-12-19 20:00:11", "66.249.79.76", "1232");
INSERT INTO `wp_rg_form_view` VALUES("6693", "6", "2014-12-19 20:15:31", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6694", "3", "2014-12-19 21:00:16", "66.249.67.84", "1200");
INSERT INTO `wp_rg_form_view` VALUES("6695", "2", "2014-12-19 21:10:54", "157.55.39.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("6696", "6", "2014-12-19 21:24:28", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6697", "3", "2014-12-19 22:00:09", "66.249.67.84", "2098");
INSERT INTO `wp_rg_form_view` VALUES("6698", "2", "2014-12-19 22:15:15", "77.245.71.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("6699", "1", "2014-12-19 22:20:14", "198.143.158.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("6700", "6", "2014-12-19 22:23:29", "198.143.158.34", "5");
INSERT INTO `wp_rg_form_view` VALUES("6701", "3", "2014-12-19 23:12:12", "24.68.239.169", "212");
INSERT INTO `wp_rg_form_view` VALUES("6702", "1", "2014-12-19 23:18:39", "24.68.239.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("6703", "3", "2014-12-20 00:00:10", "66.249.79.76", "370");
INSERT INTO `wp_rg_form_view` VALUES("6704", "6", "2014-12-20 00:45:30", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6705", "3", "2014-12-20 01:00:02", "66.249.79.76", "452");
INSERT INTO `wp_rg_form_view` VALUES("6706", "2", "2014-12-20 01:46:57", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6707", "3", "2014-12-20 02:00:07", "66.249.79.84", "550");
INSERT INTO `wp_rg_form_view` VALUES("6708", "1", "2014-12-20 02:26:14", "27.150.228.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("6709", "3", "2014-12-20 03:00:35", "66.249.79.76", "492");
INSERT INTO `wp_rg_form_view` VALUES("6710", "3", "2014-12-20 04:00:18", "66.249.79.76", "654");
INSERT INTO `wp_rg_form_view` VALUES("6711", "6", "2014-12-20 04:30:15", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6712", "3", "2014-12-20 05:02:38", "66.249.79.92", "422");
INSERT INTO `wp_rg_form_view` VALUES("6713", "3", "2014-12-20 06:06:29", "157.55.39.211", "236");
INSERT INTO `wp_rg_form_view` VALUES("6714", "1", "2014-12-20 06:37:11", "157.55.39.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("6715", "3", "2014-12-20 07:19:47", "66.249.79.92", "44");
INSERT INTO `wp_rg_form_view` VALUES("6716", "3", "2014-12-20 08:03:41", "66.249.79.92", "102");
INSERT INTO `wp_rg_form_view` VALUES("6717", "3", "2014-12-20 09:07:06", "66.249.79.76", "74");
INSERT INTO `wp_rg_form_view` VALUES("6718", "3", "2014-12-20 10:21:36", "66.249.79.92", "40");
INSERT INTO `wp_rg_form_view` VALUES("6719", "3", "2014-12-20 11:13:51", "66.249.79.84", "234");
INSERT INTO `wp_rg_form_view` VALUES("6720", "3", "2014-12-20 12:00:30", "66.249.79.84", "462");
INSERT INTO `wp_rg_form_view` VALUES("6721", "3", "2014-12-20 13:00:00", "66.249.79.76", "382");
INSERT INTO `wp_rg_form_view` VALUES("6722", "3", "2014-12-20 14:04:34", "66.249.79.84", "565");
INSERT INTO `wp_rg_form_view` VALUES("6723", "6", "2014-12-20 14:10:14", "73.51.219.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("6724", "1", "2014-12-20 14:10:38", "73.51.219.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("6725", "2", "2014-12-20 14:10:43", "73.51.219.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("6726", "3", "2014-12-20 15:00:14", "66.249.79.84", "240");
INSERT INTO `wp_rg_form_view` VALUES("6727", "6", "2014-12-20 15:05:38", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6728", "1", "2014-12-20 15:40:48", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("6729", "3", "2014-12-20 16:32:51", "202.46.50.101", "165");
INSERT INTO `wp_rg_form_view` VALUES("6730", "1", "2014-12-20 16:43:51", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6731", "2", "2014-12-20 16:58:04", "192.240.212.197", "5");
INSERT INTO `wp_rg_form_view` VALUES("6732", "3", "2014-12-20 17:08:32", "66.249.79.76", "40");
INSERT INTO `wp_rg_form_view` VALUES("6733", "3", "2014-12-20 18:03:34", "107.182.125.175", "502");
INSERT INTO `wp_rg_form_view` VALUES("6734", "6", "2014-12-20 18:35:57", "54.77.50.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("6735", "1", "2014-12-20 18:44:58", "54.77.50.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("6736", "2", "2014-12-20 18:45:57", "54.77.50.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("6737", "3", "2014-12-20 19:00:10", "66.249.79.76", "738");
INSERT INTO `wp_rg_form_view` VALUES("6738", "3", "2014-12-20 20:00:08", "66.249.79.76", "763");
INSERT INTO `wp_rg_form_view` VALUES("6739", "2", "2014-12-20 20:38:55", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6740", "6", "2014-12-20 20:45:51", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("6741", "3", "2014-12-20 21:00:26", "66.249.79.76", "890");
INSERT INTO `wp_rg_form_view` VALUES("6742", "3", "2014-12-20 22:01:09", "66.249.79.76", "615");
INSERT INTO `wp_rg_form_view` VALUES("6743", "3", "2014-12-20 23:00:28", "66.249.79.84", "40");
INSERT INTO `wp_rg_form_view` VALUES("6744", "3", "2014-12-21 00:12:10", "66.249.79.84", "231");
INSERT INTO `wp_rg_form_view` VALUES("6745", "6", "2014-12-21 00:50:11", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6746", "2", "2014-12-21 00:56:24", "167.160.109.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("6747", "3", "2014-12-21 01:00:00", "66.249.79.92", "624");
INSERT INTO `wp_rg_form_view` VALUES("6748", "1", "2014-12-21 01:22:18", "31.184.238.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("6749", "3", "2014-12-21 02:04:16", "66.249.79.84", "580");
INSERT INTO `wp_rg_form_view` VALUES("6750", "2", "2014-12-21 02:33:14", "192.230.61.13", "3");
INSERT INTO `wp_rg_form_view` VALUES("6751", "3", "2014-12-21 03:00:34", "100.43.85.24", "554");
INSERT INTO `wp_rg_form_view` VALUES("6752", "6", "2014-12-21 03:24:00", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6753", "2", "2014-12-21 03:34:07", "167.160.127.98", "3");
INSERT INTO `wp_rg_form_view` VALUES("6754", "3", "2014-12-21 04:03:19", "66.249.79.92", "737");
INSERT INTO `wp_rg_form_view` VALUES("6755", "2", "2014-12-21 04:14:03", "167.160.127.70", "5");
INSERT INTO `wp_rg_form_view` VALUES("6756", "3", "2014-12-21 05:00:15", "66.249.79.84", "425");
INSERT INTO `wp_rg_form_view` VALUES("6757", "6", "2014-12-21 05:15:34", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6758", "3", "2014-12-21 06:00:31", "66.249.79.92", "733");
INSERT INTO `wp_rg_form_view` VALUES("6759", "2", "2014-12-21 06:05:25", "69.12.72.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("6760", "6", "2014-12-21 06:57:28", "54.72.221.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("6761", "3", "2014-12-21 07:00:01", "54.72.221.137", "707");
INSERT INTO `wp_rg_form_view` VALUES("6762", "1", "2014-12-21 07:01:46", "54.72.221.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("6763", "2", "2014-12-21 07:26:47", "192.230.61.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("6764", "3", "2014-12-21 08:02:31", "66.249.79.92", "596");
INSERT INTO `wp_rg_form_view` VALUES("6765", "2", "2014-12-21 08:16:21", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6766", "3", "2014-12-21 09:00:37", "66.249.79.76", "247");
INSERT INTO `wp_rg_form_view` VALUES("6767", "3", "2014-12-21 10:02:21", "104.128.23.8", "173");
INSERT INTO `wp_rg_form_view` VALUES("6768", "2", "2014-12-21 10:35:35", "69.12.77.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("6769", "1", "2014-12-21 10:49:08", "49.113.137.57", "4");
INSERT INTO `wp_rg_form_view` VALUES("6770", "3", "2014-12-21 11:18:17", "198.50.26.206", "164");
INSERT INTO `wp_rg_form_view` VALUES("6771", "3", "2014-12-21 12:12:30", "202.46.50.199", "216");
INSERT INTO `wp_rg_form_view` VALUES("6772", "2", "2014-12-21 12:23:53", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6773", "3", "2014-12-21 13:01:16", "91.200.12.145", "662");
INSERT INTO `wp_rg_form_view` VALUES("6774", "2", "2014-12-21 14:02:38", "192.200.24.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("6775", "3", "2014-12-21 14:02:38", "192.200.24.137", "686");
INSERT INTO `wp_rg_form_view` VALUES("6776", "3", "2014-12-21 15:00:13", "66.249.79.76", "488");
INSERT INTO `wp_rg_form_view` VALUES("6777", "6", "2014-12-21 15:25:09", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6778", "3", "2014-12-21 16:00:15", "66.249.79.92", "174");
INSERT INTO `wp_rg_form_view` VALUES("6779", "3", "2014-12-21 18:29:23", "66.249.79.92", "503");
INSERT INTO `wp_rg_form_view` VALUES("6780", "6", "2014-12-21 18:39:21", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6781", "2", "2014-12-21 18:54:07", "167.160.110.60", "4");
INSERT INTO `wp_rg_form_view` VALUES("6782", "3", "2014-12-21 19:00:11", "66.249.79.76", "765");
INSERT INTO `wp_rg_form_view` VALUES("6783", "2", "2014-12-21 19:14:06", "69.12.73.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("6784", "3", "2014-12-21 20:00:08", "66.249.79.84", "561");
INSERT INTO `wp_rg_form_view` VALUES("6785", "1", "2014-12-21 20:51:03", "192.34.58.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("6786", "2", "2014-12-21 20:51:03", "192.34.58.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("6787", "3", "2014-12-21 21:05:44", "157.55.39.162", "256");
INSERT INTO `wp_rg_form_view` VALUES("6788", "3", "2014-12-21 22:00:00", "195.211.155.182", "171");
INSERT INTO `wp_rg_form_view` VALUES("6789", "2", "2014-12-21 22:20:16", "162.244.13.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("6790", "1", "2014-12-21 22:49:10", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6791", "3", "2014-12-21 23:24:00", "162.244.13.28", "70");
INSERT INTO `wp_rg_form_view` VALUES("6792", "2", "2014-12-21 23:32:15", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6793", "3", "2014-12-22 00:00:33", "66.249.79.92", "303");
INSERT INTO `wp_rg_form_view` VALUES("6794", "2", "2014-12-22 00:25:49", "167.160.110.89", "3");
INSERT INTO `wp_rg_form_view` VALUES("6795", "3", "2014-12-22 01:00:09", "66.249.79.76", "424");
INSERT INTO `wp_rg_form_view` VALUES("6796", "3", "2014-12-22 02:00:08", "66.249.79.92", "696");
INSERT INTO `wp_rg_form_view` VALUES("6797", "2", "2014-12-22 02:00:48", "167.160.112.205", "6");
INSERT INTO `wp_rg_form_view` VALUES("6798", "6", "2014-12-22 02:05:13", "54.76.11.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("6799", "1", "2014-12-22 02:08:57", "54.76.11.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("6800", "3", "2014-12-22 03:00:32", "66.249.79.148", "615");
INSERT INTO `wp_rg_form_view` VALUES("6801", "2", "2014-12-22 03:09:13", "69.12.77.147", "3");
INSERT INTO `wp_rg_form_view` VALUES("6802", "3", "2014-12-22 04:00:36", "66.249.79.76", "586");
INSERT INTO `wp_rg_form_view` VALUES("6803", "6", "2014-12-22 04:14:56", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6804", "2", "2014-12-22 04:21:12", "192.230.52.210", "7");
INSERT INTO `wp_rg_form_view` VALUES("6805", "3", "2014-12-22 05:00:01", "66.249.79.76", "620");
INSERT INTO `wp_rg_form_view` VALUES("6806", "6", "2014-12-22 05:50:22", "54.72.234.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("6807", "1", "2014-12-22 05:57:20", "54.72.234.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("6808", "2", "2014-12-22 05:58:14", "54.72.234.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("6809", "3", "2014-12-22 06:00:24", "54.72.234.195", "241");
INSERT INTO `wp_rg_form_view` VALUES("6810", "3", "2014-12-22 07:08:53", "66.249.79.76", "99");
INSERT INTO `wp_rg_form_view` VALUES("6811", "3", "2014-12-22 08:26:06", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("6812", "3", "2014-12-22 09:42:02", "69.12.73.115", "113");
INSERT INTO `wp_rg_form_view` VALUES("6813", "2", "2014-12-22 10:13:29", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("6814", "3", "2014-12-22 10:13:29", "68.180.229.33", "40");
INSERT INTO `wp_rg_form_view` VALUES("6815", "3", "2014-12-22 11:10:36", "107.182.116.242", "166");
INSERT INTO `wp_rg_form_view` VALUES("6816", "3", "2014-12-22 12:01:36", "192.240.214.145", "313");
INSERT INTO `wp_rg_form_view` VALUES("6817", "3", "2014-12-22 13:02:19", "66.249.79.76", "50");
INSERT INTO `wp_rg_form_view` VALUES("6818", "3", "2014-12-22 14:19:47", "66.249.79.84", "140");
INSERT INTO `wp_rg_form_view` VALUES("6819", "3", "2014-12-22 15:00:45", "157.55.39.162", "280");
INSERT INTO `wp_rg_form_view` VALUES("6820", "3", "2014-12-22 16:17:08", "66.249.79.92", "60");
INSERT INTO `wp_rg_form_view` VALUES("6821", "3", "2014-12-22 17:04:53", "207.46.13.71", "31");
INSERT INTO `wp_rg_form_view` VALUES("6822", "3", "2014-12-22 18:21:21", "142.36.68.228", "152");
INSERT INTO `wp_rg_form_view` VALUES("6823", "3", "2014-12-22 19:16:45", "66.249.79.76", "40");
INSERT INTO `wp_rg_form_view` VALUES("6824", "3", "2014-12-22 20:00:23", "184.66.97.147", "298");
INSERT INTO `wp_rg_form_view` VALUES("6825", "3", "2014-12-22 21:00:19", "66.249.79.76", "861");
INSERT INTO `wp_rg_form_view` VALUES("6826", "6", "2014-12-22 21:33:06", "31.3.254.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("6827", "1", "2014-12-22 21:33:53", "31.3.254.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("6828", "3", "2014-12-22 22:00:29", "66.249.79.92", "616");
INSERT INTO `wp_rg_form_view` VALUES("6829", "6", "2014-12-22 22:21:57", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6830", "3", "2014-12-22 23:00:01", "66.249.79.76", "572");
INSERT INTO `wp_rg_form_view` VALUES("6831", "3", "2014-12-23 00:00:02", "66.249.79.92", "880");
INSERT INTO `wp_rg_form_view` VALUES("6832", "3", "2014-12-23 01:00:01", "66.249.79.76", "946");
INSERT INTO `wp_rg_form_view` VALUES("6833", "3", "2014-12-23 02:00:34", "66.249.79.76", "732");
INSERT INTO `wp_rg_form_view` VALUES("6834", "6", "2014-12-23 02:19:10", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6835", "3", "2014-12-23 03:00:21", "66.249.79.92", "570");
INSERT INTO `wp_rg_form_view` VALUES("6836", "3", "2014-12-23 04:09:12", "66.249.79.92", "271");
INSERT INTO `wp_rg_form_view` VALUES("6837", "3", "2014-12-23 05:00:38", "66.249.79.76", "1007");
INSERT INTO `wp_rg_form_view` VALUES("6838", "6", "2014-12-23 05:24:23", "54.72.136.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("6839", "1", "2014-12-23 05:29:24", "54.72.136.87", "2");
INSERT INTO `wp_rg_form_view` VALUES("6840", "2", "2014-12-23 05:30:03", "54.72.136.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("6841", "3", "2014-12-23 06:01:56", "66.249.79.76", "572");
INSERT INTO `wp_rg_form_view` VALUES("6842", "3", "2014-12-23 07:00:16", "66.249.79.76", "1016");
INSERT INTO `wp_rg_form_view` VALUES("6843", "6", "2014-12-23 07:49:58", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6844", "1", "2014-12-23 07:52:56", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("6845", "3", "2014-12-23 08:00:20", "66.249.79.76", "1324");
INSERT INTO `wp_rg_form_view` VALUES("6846", "3", "2014-12-23 09:00:00", "66.249.79.76", "950");
INSERT INTO `wp_rg_form_view` VALUES("6847", "3", "2014-12-23 10:02:15", "66.249.79.76", "1080");
INSERT INTO `wp_rg_form_view` VALUES("6848", "1", "2014-12-23 10:59:59", "107.150.36.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("6849", "3", "2014-12-23 11:00:01", "107.150.36.162", "1228");
INSERT INTO `wp_rg_form_view` VALUES("6850", "1", "2014-12-23 11:00:03", "107.150.36.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("6851", "6", "2014-12-23 11:19:46", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("6852", "3", "2014-12-23 12:00:11", "66.249.79.76", "1046");
INSERT INTO `wp_rg_form_view` VALUES("6853", "6", "2014-12-23 12:34:36", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("6854", "3", "2014-12-23 13:00:16", "66.249.79.92", "888");
INSERT INTO `wp_rg_form_view` VALUES("6855", "6", "2014-12-23 13:04:34", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6856", "3", "2014-12-23 14:00:04", "66.249.79.92", "240");
INSERT INTO `wp_rg_form_view` VALUES("6857", "3", "2014-12-23 15:02:21", "66.249.79.76", "134");
INSERT INTO `wp_rg_form_view` VALUES("6858", "3", "2014-12-23 16:00:13", "66.249.79.76", "146");
INSERT INTO `wp_rg_form_view` VALUES("6859", "3", "2014-12-23 17:00:00", "66.249.79.76", "478");
INSERT INTO `wp_rg_form_view` VALUES("6860", "1", "2014-12-23 17:14:51", "24.108.150.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("6861", "3", "2014-12-23 18:00:35", "66.249.79.76", "738");
INSERT INTO `wp_rg_form_view` VALUES("6862", "2", "2014-12-23 18:31:10", "107.182.125.216", "3");
INSERT INTO `wp_rg_form_view` VALUES("6863", "6", "2014-12-23 18:41:48", "54.171.151.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("6864", "1", "2014-12-23 18:46:06", "54.171.151.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("6865", "3", "2014-12-23 19:00:16", "66.249.79.84", "472");
INSERT INTO `wp_rg_form_view` VALUES("6866", "3", "2014-12-23 20:00:36", "66.249.79.76", "377");
INSERT INTO `wp_rg_form_view` VALUES("6867", "3", "2014-12-23 21:00:24", "66.249.79.84", "518");
INSERT INTO `wp_rg_form_view` VALUES("6868", "3", "2014-12-23 22:00:10", "66.249.79.76", "484");
INSERT INTO `wp_rg_form_view` VALUES("6869", "3", "2014-12-23 23:16:12", "142.104.37.70", "82");
INSERT INTO `wp_rg_form_view` VALUES("6870", "3", "2014-12-24 00:12:58", "167.160.109.7", "183");
INSERT INTO `wp_rg_form_view` VALUES("6871", "3", "2014-12-24 01:09:58", "188.165.15.10", "104");
INSERT INTO `wp_rg_form_view` VALUES("6872", "2", "2014-12-24 01:27:25", "167.160.112.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("6873", "3", "2014-12-24 02:25:56", "192.230.52.210", "70");
INSERT INTO `wp_rg_form_view` VALUES("6874", "3", "2014-12-24 03:04:16", "69.12.73.115", "109");
INSERT INTO `wp_rg_form_view` VALUES("6875", "6", "2014-12-24 03:28:22", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6876", "3", "2014-12-24 04:12:05", "157.55.39.212", "376");
INSERT INTO `wp_rg_form_view` VALUES("6877", "6", "2014-12-24 04:26:05", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("6878", "1", "2014-12-24 04:26:35", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("6879", "2", "2014-12-24 04:26:42", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("6880", "3", "2014-12-24 05:04:05", "23.247.173.133", "382");
INSERT INTO `wp_rg_form_view` VALUES("6881", "1", "2014-12-24 05:25:19", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("6882", "3", "2014-12-24 06:13:09", "157.55.39.13", "20");
INSERT INTO `wp_rg_form_view` VALUES("6883", "3", "2014-12-24 07:02:19", "162.244.13.28", "32");
INSERT INTO `wp_rg_form_view` VALUES("6884", "3", "2014-12-24 08:35:36", "66.249.79.92", "20");
INSERT INTO `wp_rg_form_view` VALUES("6885", "3", "2014-12-24 09:15:50", "66.249.79.84", "50");
INSERT INTO `wp_rg_form_view` VALUES("6886", "6", "2014-12-24 09:50:26", "207.46.13.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("6887", "3", "2014-12-24 10:03:15", "66.249.79.84", "40");
INSERT INTO `wp_rg_form_view` VALUES("6888", "3", "2014-12-24 11:08:50", "188.165.15.181", "32");
INSERT INTO `wp_rg_form_view` VALUES("6889", "3", "2014-12-24 12:00:29", "66.249.79.84", "30");
INSERT INTO `wp_rg_form_view` VALUES("6890", "3", "2014-12-24 13:04:45", "66.249.79.92", "81");
INSERT INTO `wp_rg_form_view` VALUES("6891", "3", "2014-12-24 14:01:22", "66.249.79.92", "30");
INSERT INTO `wp_rg_form_view` VALUES("6892", "3", "2014-12-24 15:01:28", "66.249.79.84", "50");
INSERT INTO `wp_rg_form_view` VALUES("6893", "3", "2014-12-24 16:07:24", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("6894", "3", "2014-12-24 17:00:49", "66.249.79.84", "51");
INSERT INTO `wp_rg_form_view` VALUES("6895", "1", "2014-12-24 17:10:33", "192.99.141.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("6896", "3", "2014-12-24 18:02:10", "157.55.39.212", "52");
INSERT INTO `wp_rg_form_view` VALUES("6897", "3", "2014-12-24 20:10:33", "220.181.108.95", "68");
INSERT INTO `wp_rg_form_view` VALUES("6898", "3", "2014-12-24 22:14:50", "157.55.39.221", "20");
INSERT INTO `wp_rg_form_view` VALUES("6899", "3", "2014-12-24 23:04:57", "207.46.13.71", "132");
INSERT INTO `wp_rg_form_view` VALUES("6900", "3", "2014-12-25 00:00:18", "66.249.79.84", "408");
INSERT INTO `wp_rg_form_view` VALUES("6901", "3", "2014-12-25 01:00:06", "66.249.79.84", "554");
INSERT INTO `wp_rg_form_view` VALUES("6902", "6", "2014-12-25 01:24:48", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6903", "3", "2014-12-25 02:04:33", "66.249.79.84", "399");
INSERT INTO `wp_rg_form_view` VALUES("6904", "6", "2014-12-25 02:58:48", "54.77.239.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("6905", "3", "2014-12-25 03:00:18", "66.249.79.76", "340");
INSERT INTO `wp_rg_form_view` VALUES("6906", "1", "2014-12-25 03:03:01", "54.77.239.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("6907", "2", "2014-12-25 03:03:38", "54.77.239.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("6908", "3", "2014-12-25 04:08:25", "207.46.13.71", "120");
INSERT INTO `wp_rg_form_view` VALUES("6909", "1", "2014-12-25 04:14:13", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6910", "6", "2014-12-25 04:17:23", "207.46.13.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("6911", "3", "2014-12-25 05:39:23", "68.180.229.33", "68");
INSERT INTO `wp_rg_form_view` VALUES("6912", "3", "2014-12-25 06:10:07", "66.249.79.76", "70");
INSERT INTO `wp_rg_form_view` VALUES("6913", "3", "2014-12-25 07:55:26", "66.249.79.84", "30");
INSERT INTO `wp_rg_form_view` VALUES("6914", "3", "2014-12-25 08:00:30", "66.249.79.92", "426");
INSERT INTO `wp_rg_form_view` VALUES("6915", "3", "2014-12-25 09:00:00", "66.249.79.76", "571");
INSERT INTO `wp_rg_form_view` VALUES("6916", "3", "2014-12-25 10:00:22", "66.249.79.84", "526");
INSERT INTO `wp_rg_form_view` VALUES("6917", "6", "2014-12-25 10:39:58", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6918", "3", "2014-12-25 11:00:21", "66.249.79.92", "666");
INSERT INTO `wp_rg_form_view` VALUES("6919", "6", "2014-12-25 11:45:19", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6920", "3", "2014-12-25 12:05:49", "157.55.39.212", "20");
INSERT INTO `wp_rg_form_view` VALUES("6921", "3", "2014-12-25 13:22:41", "157.55.39.26", "330");
INSERT INTO `wp_rg_form_view` VALUES("6922", "3", "2014-12-25 14:09:40", "66.249.79.84", "20");
INSERT INTO `wp_rg_form_view` VALUES("6923", "3", "2014-12-25 15:41:55", "14.145.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("6924", "3", "2014-12-25 16:13:43", "172.218.235.246", "272");
INSERT INTO `wp_rg_form_view` VALUES("6925", "3", "2014-12-25 17:00:19", "66.249.79.76", "442");
INSERT INTO `wp_rg_form_view` VALUES("6926", "6", "2014-12-25 17:57:22", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6927", "3", "2014-12-25 18:00:18", "66.249.79.84", "622");
INSERT INTO `wp_rg_form_view` VALUES("6928", "3", "2014-12-25 19:00:55", "66.249.79.84", "674");
INSERT INTO `wp_rg_form_view` VALUES("6929", "3", "2014-12-25 20:00:26", "66.249.79.84", "626");
INSERT INTO `wp_rg_form_view` VALUES("6930", "3", "2014-12-25 21:00:23", "66.249.79.84", "610");
INSERT INTO `wp_rg_form_view` VALUES("6931", "3", "2014-12-25 22:02:42", "66.249.79.92", "891");
INSERT INTO `wp_rg_form_view` VALUES("6932", "6", "2014-12-25 22:19:04", "54.72.34.134", "5");
INSERT INTO `wp_rg_form_view` VALUES("6933", "1", "2014-12-25 22:23:03", "54.72.34.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("6934", "3", "2014-12-25 23:01:13", "66.249.79.76", "662");
INSERT INTO `wp_rg_form_view` VALUES("6935", "3", "2014-12-26 00:00:11", "66.249.79.76", "465");
INSERT INTO `wp_rg_form_view` VALUES("6936", "6", "2014-12-26 00:05:34", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6937", "1", "2014-12-26 00:55:11", "69.12.77.207", "3");
INSERT INTO `wp_rg_form_view` VALUES("6938", "3", "2014-12-26 01:00:09", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("6939", "3", "2014-12-26 02:06:32", "69.12.72.166", "191");
INSERT INTO `wp_rg_form_view` VALUES("6940", "3", "2014-12-26 03:02:17", "69.12.77.147", "88");
INSERT INTO `wp_rg_form_view` VALUES("6941", "3", "2014-12-26 04:52:54", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("6942", "3", "2014-12-26 05:07:48", "89.47.18.155", "22");
INSERT INTO `wp_rg_form_view` VALUES("6943", "3", "2014-12-26 06:22:36", "66.249.79.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("6944", "3", "2014-12-26 07:03:55", "66.249.79.92", "215");
INSERT INTO `wp_rg_form_view` VALUES("6945", "6", "2014-12-26 07:39:05", "54.77.91.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("6946", "1", "2014-12-26 07:43:21", "54.77.91.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("6947", "3", "2014-12-26 08:15:41", "217.69.133.228", "46");
INSERT INTO `wp_rg_form_view` VALUES("6948", "3", "2014-12-26 09:07:09", "31.184.238.181", "50");
INSERT INTO `wp_rg_form_view` VALUES("6949", "3", "2014-12-26 10:07:34", "66.249.79.76", "50");
INSERT INTO `wp_rg_form_view` VALUES("6950", "3", "2014-12-26 11:25:41", "217.69.133.230", "52");
INSERT INTO `wp_rg_form_view` VALUES("6951", "3", "2014-12-26 12:05:52", "66.249.79.92", "32");
INSERT INTO `wp_rg_form_view` VALUES("6952", "3", "2014-12-26 13:01:58", "217.69.133.231", "160");
INSERT INTO `wp_rg_form_view` VALUES("6953", "3", "2014-12-26 14:01:01", "66.249.79.84", "3741");
INSERT INTO `wp_rg_form_view` VALUES("6954", "6", "2014-12-26 14:38:55", "217.69.133.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("6955", "2", "2014-12-26 14:42:42", "5.9.125.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("6956", "1", "2014-12-26 14:43:00", "5.9.125.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("6957", "3", "2014-12-26 15:00:00", "5.9.125.26", "3393");
INSERT INTO `wp_rg_form_view` VALUES("6958", "3", "2014-12-26 16:07:16", "202.46.62.109", "42");
INSERT INTO `wp_rg_form_view` VALUES("6959", "3", "2014-12-26 17:52:23", "217.69.133.231", "296");
INSERT INTO `wp_rg_form_view` VALUES("6960", "3", "2014-12-26 18:00:45", "66.249.79.76", "116");
INSERT INTO `wp_rg_form_view` VALUES("6961", "6", "2014-12-26 18:08:53", "207.46.13.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("6962", "3", "2014-12-26 19:00:25", "66.249.79.92", "190");
INSERT INTO `wp_rg_form_view` VALUES("6963", "6", "2014-12-26 19:35:15", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6964", "3", "2014-12-26 20:00:35", "66.249.79.84", "403");
INSERT INTO `wp_rg_form_view` VALUES("6965", "3", "2014-12-26 21:00:38", "66.249.79.84", "152");
INSERT INTO `wp_rg_form_view` VALUES("6966", "6", "2014-12-26 21:03:42", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("6967", "2", "2014-12-26 22:38:54", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("6968", "3", "2014-12-26 22:38:55", "100.43.85.24", "24");
INSERT INTO `wp_rg_form_view` VALUES("6969", "3", "2014-12-26 23:19:56", "66.249.79.76", "20");
INSERT INTO `wp_rg_form_view` VALUES("6970", "1", "2014-12-26 23:36:24", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6971", "3", "2014-12-27 00:05:10", "66.249.79.84", "194");
INSERT INTO `wp_rg_form_view` VALUES("6972", "3", "2014-12-27 01:05:11", "66.249.79.92", "368");
INSERT INTO `wp_rg_form_view` VALUES("6973", "3", "2014-12-27 02:00:00", "66.249.79.84", "618");
INSERT INTO `wp_rg_form_view` VALUES("6974", "3", "2014-12-27 03:00:34", "66.249.79.92", "616");
INSERT INTO `wp_rg_form_view` VALUES("6975", "6", "2014-12-27 03:54:15", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("6976", "3", "2014-12-27 04:00:04", "66.249.79.76", "516");
INSERT INTO `wp_rg_form_view` VALUES("6977", "3", "2014-12-27 05:00:19", "66.249.79.84", "552");
INSERT INTO `wp_rg_form_view` VALUES("6978", "3", "2014-12-27 06:00:21", "66.249.79.84", "670");
INSERT INTO `wp_rg_form_view` VALUES("6979", "2", "2014-12-27 06:08:50", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("6980", "6", "2014-12-27 06:54:25", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6981", "3", "2014-12-27 07:00:15", "66.249.79.76", "558");
INSERT INTO `wp_rg_form_view` VALUES("6982", "3", "2014-12-27 08:07:53", "68.180.229.33", "64");
INSERT INTO `wp_rg_form_view` VALUES("6983", "3", "2014-12-27 09:10:38", "54.171.158.40", "265");
INSERT INTO `wp_rg_form_view` VALUES("6984", "6", "2014-12-27 09:17:15", "54.171.158.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("6985", "1", "2014-12-27 09:20:53", "54.171.158.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("6986", "2", "2014-12-27 09:21:36", "54.171.158.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("6987", "3", "2014-12-27 10:01:35", "217.69.133.228", "298");
INSERT INTO `wp_rg_form_view` VALUES("6988", "3", "2014-12-27 11:00:18", "66.249.79.84", "800");
INSERT INTO `wp_rg_form_view` VALUES("6989", "6", "2014-12-27 11:33:40", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6990", "3", "2014-12-27 12:00:06", "66.249.79.76", "1076");
INSERT INTO `wp_rg_form_view` VALUES("6991", "3", "2014-12-27 13:00:15", "66.249.69.124", "746");
INSERT INTO `wp_rg_form_view` VALUES("6992", "6", "2014-12-27 13:35:40", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("6993", "3", "2014-12-27 14:00:16", "66.249.79.84", "634");
INSERT INTO `wp_rg_form_view` VALUES("6994", "1", "2014-12-27 14:43:11", "107.150.36.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("6995", "6", "2014-12-27 14:53:18", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("6996", "3", "2014-12-27 15:00:18", "66.249.79.92", "1058");
INSERT INTO `wp_rg_form_view` VALUES("6997", "3", "2014-12-27 16:00:05", "66.249.79.84", "1004");
INSERT INTO `wp_rg_form_view` VALUES("6998", "6", "2014-12-27 16:28:24", "217.69.133.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("6999", "3", "2014-12-27 17:00:14", "66.249.79.84", "1012");
INSERT INTO `wp_rg_form_view` VALUES("7000", "6", "2014-12-27 17:27:43", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7001", "3", "2014-12-27 18:00:12", "66.249.79.84", "1066");
INSERT INTO `wp_rg_form_view` VALUES("7002", "1", "2014-12-27 18:43:50", "171.217.145.124", "4");
INSERT INTO `wp_rg_form_view` VALUES("7003", "3", "2014-12-27 19:00:30", "66.249.79.92", "1212");
INSERT INTO `wp_rg_form_view` VALUES("7004", "1", "2014-12-27 19:02:34", "5.45.77.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("7005", "6", "2014-12-27 19:09:55", "66.249.79.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("7006", "3", "2014-12-27 20:00:10", "66.249.79.76", "1264");
INSERT INTO `wp_rg_form_view` VALUES("7007", "6", "2014-12-27 20:33:03", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7008", "3", "2014-12-27 21:00:24", "66.249.79.84", "104");
INSERT INTO `wp_rg_form_view` VALUES("7009", "3", "2014-12-27 22:07:34", "66.249.79.84", "170");
INSERT INTO `wp_rg_form_view` VALUES("7010", "3", "2014-12-27 23:03:41", "66.249.79.84", "192");
INSERT INTO `wp_rg_form_view` VALUES("7011", "3", "2014-12-28 00:00:05", "66.249.79.76", "866");
INSERT INTO `wp_rg_form_view` VALUES("7012", "3", "2014-12-28 01:00:20", "66.249.79.76", "994");
INSERT INTO `wp_rg_form_view` VALUES("7013", "6", "2014-12-28 01:29:57", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7014", "3", "2014-12-28 02:00:01", "66.249.79.84", "1194");
INSERT INTO `wp_rg_form_view` VALUES("7015", "3", "2014-12-28 03:00:06", "66.249.79.84", "637");
INSERT INTO `wp_rg_form_view` VALUES("7016", "6", "2014-12-28 03:34:36", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7017", "3", "2014-12-28 04:00:54", "66.249.79.84", "964");
INSERT INTO `wp_rg_form_view` VALUES("7018", "3", "2014-12-28 05:00:03", "66.249.79.92", "360");
INSERT INTO `wp_rg_form_view` VALUES("7019", "3", "2014-12-28 06:22:27", "54.72.112.186", "347");
INSERT INTO `wp_rg_form_view` VALUES("7020", "6", "2014-12-28 06:30:20", "54.72.112.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("7021", "1", "2014-12-28 06:34:31", "54.72.112.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("7022", "2", "2014-12-28 06:35:20", "54.72.112.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("7023", "3", "2014-12-28 07:00:29", "58.22.70.23", "177");
INSERT INTO `wp_rg_form_view` VALUES("7024", "2", "2014-12-28 07:34:43", "162.243.170.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("7025", "1", "2014-12-28 07:34:44", "162.243.170.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("7026", "3", "2014-12-28 08:01:25", "192.240.214.158", "240");
INSERT INTO `wp_rg_form_view` VALUES("7027", "2", "2014-12-28 08:18:59", "192.230.61.13", "4");
INSERT INTO `wp_rg_form_view` VALUES("7028", "3", "2014-12-28 09:01:52", "112.111.165.20", "313");
INSERT INTO `wp_rg_form_view` VALUES("7029", "3", "2014-12-28 10:01:18", "112.111.165.151", "166");
INSERT INTO `wp_rg_form_view` VALUES("7030", "2", "2014-12-28 10:20:18", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("7031", "1", "2014-12-28 10:32:51", "14.123.59.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7032", "3", "2014-12-28 11:04:34", "66.249.79.84", "222");
INSERT INTO `wp_rg_form_view` VALUES("7033", "3", "2014-12-28 12:00:23", "66.249.79.92", "400");
INSERT INTO `wp_rg_form_view` VALUES("7034", "3", "2014-12-28 13:00:23", "66.249.79.76", "423");
INSERT INTO `wp_rg_form_view` VALUES("7035", "2", "2014-12-28 13:48:01", "192.240.214.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("7036", "3", "2014-12-28 14:00:20", "66.249.79.92", "366");
INSERT INTO `wp_rg_form_view` VALUES("7037", "6", "2014-12-28 14:39:34", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7038", "3", "2014-12-28 15:01:57", "68.180.229.33", "492");
INSERT INTO `wp_rg_form_view` VALUES("7039", "3", "2014-12-28 16:00:15", "66.249.79.84", "399");
INSERT INTO `wp_rg_form_view` VALUES("7040", "3", "2014-12-28 17:02:12", "66.249.79.84", "803");
INSERT INTO `wp_rg_form_view` VALUES("7041", "6", "2014-12-28 17:07:02", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7042", "2", "2014-12-28 17:41:50", "195.154.181.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("7043", "3", "2014-12-28 18:03:15", "66.249.79.84", "508");
INSERT INTO `wp_rg_form_view` VALUES("7044", "3", "2014-12-28 19:00:10", "66.249.79.76", "739");
INSERT INTO `wp_rg_form_view` VALUES("7045", "3", "2014-12-28 20:00:29", "66.249.79.84", "110");
INSERT INTO `wp_rg_form_view` VALUES("7046", "3", "2014-12-28 21:12:47", "202.46.63.207", "38");
INSERT INTO `wp_rg_form_view` VALUES("7047", "3", "2014-12-28 22:00:25", "66.249.79.84", "91");
INSERT INTO `wp_rg_form_view` VALUES("7048", "2", "2014-12-28 22:25:51", "162.244.13.28", "4");
INSERT INTO `wp_rg_form_view` VALUES("7049", "3", "2014-12-28 23:02:41", "66.249.79.76", "305");
INSERT INTO `wp_rg_form_view` VALUES("7050", "6", "2014-12-28 23:51:09", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("7051", "2", "2014-12-29 00:23:21", "107.182.116.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("7052", "3", "2014-12-29 00:23:21", "107.182.116.195", "176");
INSERT INTO `wp_rg_form_view` VALUES("7053", "3", "2014-12-29 01:00:34", "66.249.79.92", "246");
INSERT INTO `wp_rg_form_view` VALUES("7054", "3", "2014-12-29 02:01:09", "162.244.13.28", "304");
INSERT INTO `wp_rg_form_view` VALUES("7055", "6", "2014-12-29 02:15:32", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7056", "3", "2014-12-29 03:00:02", "66.249.79.84", "376");
INSERT INTO `wp_rg_form_view` VALUES("7057", "3", "2014-12-29 04:00:22", "66.249.79.76", "86");
INSERT INTO `wp_rg_form_view` VALUES("7058", "3", "2014-12-29 05:25:25", "66.249.79.84", "202");
INSERT INTO `wp_rg_form_view` VALUES("7059", "3", "2014-12-29 06:22:20", "195.211.155.183", "284");
INSERT INTO `wp_rg_form_view` VALUES("7060", "2", "2014-12-29 06:23:47", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("7061", "3", "2014-12-29 07:00:09", "183.252.52.161", "332");
INSERT INTO `wp_rg_form_view` VALUES("7062", "3", "2014-12-29 08:01:16", "157.55.39.191", "190");
INSERT INTO `wp_rg_form_view` VALUES("7063", "3", "2014-12-29 09:00:33", "66.249.79.76", "466");
INSERT INTO `wp_rg_form_view` VALUES("7064", "3", "2014-12-29 10:00:16", "66.249.79.92", "404");
INSERT INTO `wp_rg_form_view` VALUES("7065", "3", "2014-12-29 11:00:07", "66.249.79.76", "600");
INSERT INTO `wp_rg_form_view` VALUES("7066", "3", "2014-12-29 12:00:07", "66.249.79.84", "522");
INSERT INTO `wp_rg_form_view` VALUES("7067", "3", "2014-12-29 13:00:32", "66.249.79.92", "316");
INSERT INTO `wp_rg_form_view` VALUES("7068", "3", "2014-12-29 14:01:27", "46.235.65.149", "125");
INSERT INTO `wp_rg_form_view` VALUES("7069", "3", "2014-12-29 15:07:55", "192.230.61.137", "212");
INSERT INTO `wp_rg_form_view` VALUES("7070", "2", "2014-12-29 15:59:53", "167.160.110.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("7071", "3", "2014-12-29 16:00:00", "167.160.110.60", "426");
INSERT INTO `wp_rg_form_view` VALUES("7072", "2", "2014-12-29 16:00:03", "167.160.110.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("7073", "1", "2014-12-29 16:01:07", "24.108.86.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("7074", "3", "2014-12-29 17:17:54", "66.249.79.92", "564");
INSERT INTO `wp_rg_form_view` VALUES("7075", "3", "2014-12-29 18:02:16", "66.249.79.92", "726");
INSERT INTO `wp_rg_form_view` VALUES("7076", "1", "2014-12-29 18:43:14", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("7077", "3", "2014-12-29 19:00:01", "66.249.79.84", "640");
INSERT INTO `wp_rg_form_view` VALUES("7078", "6", "2014-12-29 19:40:42", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7079", "3", "2014-12-29 20:00:06", "66.249.79.84", "980");
INSERT INTO `wp_rg_form_view` VALUES("7080", "1", "2014-12-29 20:21:32", "24.68.113.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("7081", "6", "2014-12-29 20:39:04", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7082", "3", "2014-12-29 21:00:02", "66.249.79.76", "792");
INSERT INTO `wp_rg_form_view` VALUES("7083", "3", "2014-12-29 22:00:06", "66.249.79.76", "706");
INSERT INTO `wp_rg_form_view` VALUES("7084", "3", "2014-12-29 23:00:32", "66.249.79.92", "822");
INSERT INTO `wp_rg_form_view` VALUES("7085", "1", "2014-12-29 23:06:02", "119.126.36.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("7086", "2", "2014-12-29 23:13:28", "54.69.0.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("7087", "3", "2014-12-30 00:27:42", "124.73.9.4", "264");
INSERT INTO `wp_rg_form_view` VALUES("7088", "3", "2014-12-30 01:00:30", "66.249.79.92", "412");
INSERT INTO `wp_rg_form_view` VALUES("7089", "6", "2014-12-30 01:54:45", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7090", "3", "2014-12-30 02:00:13", "66.249.79.92", "582");
INSERT INTO `wp_rg_form_view` VALUES("7091", "2", "2014-12-30 02:37:58", "162.244.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("7092", "3", "2014-12-30 03:00:24", "66.249.79.76", "666");
INSERT INTO `wp_rg_form_view` VALUES("7093", "6", "2014-12-30 03:14:52", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7094", "3", "2014-12-30 04:02:10", "66.249.79.76", "612");
INSERT INTO `wp_rg_form_view` VALUES("7095", "6", "2014-12-30 04:54:15", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7096", "3", "2014-12-30 05:00:05", "66.249.79.92", "644");
INSERT INTO `wp_rg_form_view` VALUES("7097", "6", "2014-12-30 05:09:38", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7098", "3", "2014-12-30 06:00:37", "66.249.79.84", "664");
INSERT INTO `wp_rg_form_view` VALUES("7099", "3", "2014-12-30 07:00:14", "66.249.79.76", "414");
INSERT INTO `wp_rg_form_view` VALUES("7100", "3", "2014-12-30 08:05:58", "66.249.79.84", "268");
INSERT INTO `wp_rg_form_view` VALUES("7101", "6", "2014-12-30 08:06:02", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7102", "1", "2014-12-30 08:46:59", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("7103", "3", "2014-12-30 09:25:31", "202.46.48.48", "30");
INSERT INTO `wp_rg_form_view` VALUES("7104", "3", "2014-12-30 10:04:37", "23.232.148.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("7105", "3", "2014-12-30 11:07:36", "54.69.0.59", "297");
INSERT INTO `wp_rg_form_view` VALUES("7106", "3", "2014-12-30 12:01:28", "54.69.0.59", "236");
INSERT INTO `wp_rg_form_view` VALUES("7107", "6", "2014-12-30 12:37:53", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("7108", "3", "2014-12-30 13:11:33", "66.249.79.84", "62");
INSERT INTO `wp_rg_form_view` VALUES("7109", "3", "2014-12-30 14:11:11", "217.69.133.228", "152");
INSERT INTO `wp_rg_form_view` VALUES("7110", "3", "2014-12-30 15:00:27", "66.249.79.76", "564");
INSERT INTO `wp_rg_form_view` VALUES("7111", "3", "2014-12-30 16:00:21", "66.249.79.92", "326");
INSERT INTO `wp_rg_form_view` VALUES("7112", "3", "2014-12-30 17:00:15", "66.249.79.92", "606");
INSERT INTO `wp_rg_form_view` VALUES("7113", "6", "2014-12-30 17:44:40", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7114", "3", "2014-12-30 18:00:20", "66.249.79.92", "480");
INSERT INTO `wp_rg_form_view` VALUES("7115", "3", "2014-12-30 19:00:28", "66.249.79.76", "811");
INSERT INTO `wp_rg_form_view` VALUES("7116", "3", "2014-12-30 20:00:41", "183.252.52.211", "498");
INSERT INTO `wp_rg_form_view` VALUES("7117", "6", "2014-12-30 20:25:20", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("7118", "3", "2014-12-30 21:01:39", "183.252.52.115", "398");
INSERT INTO `wp_rg_form_view` VALUES("7119", "3", "2014-12-30 22:04:32", "183.252.52.184", "353");
INSERT INTO `wp_rg_form_view` VALUES("7120", "3", "2014-12-30 23:04:19", "66.249.79.84", "336");
INSERT INTO `wp_rg_form_view` VALUES("7121", "3", "2014-12-31 00:02:48", "183.252.52.111", "371");
INSERT INTO `wp_rg_form_view` VALUES("7122", "3", "2014-12-31 01:00:02", "183.252.52.9", "106");
INSERT INTO `wp_rg_form_view` VALUES("7123", "3", "2014-12-31 02:16:37", "183.252.52.155", "92");
INSERT INTO `wp_rg_form_view` VALUES("7124", "3", "2014-12-31 03:00:26", "183.252.52.162", "154");
INSERT INTO `wp_rg_form_view` VALUES("7125", "3", "2014-12-31 04:08:21", "183.252.52.19", "368");
INSERT INTO `wp_rg_form_view` VALUES("7126", "1", "2014-12-31 04:27:23", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("7127", "3", "2014-12-31 05:30:40", "66.249.79.92", "58");
INSERT INTO `wp_rg_form_view` VALUES("7128", "3", "2014-12-31 06:18:55", "68.180.229.33", "102");
INSERT INTO `wp_rg_form_view` VALUES("7129", "3", "2014-12-31 07:02:40", "183.252.52.118", "619");
INSERT INTO `wp_rg_form_view` VALUES("7130", "2", "2014-12-31 07:46:33", "37.16.72.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("7131", "1", "2014-12-31 07:51:53", "37.16.72.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("7132", "3", "2014-12-31 08:03:28", "183.252.52.133", "88");
INSERT INTO `wp_rg_form_view` VALUES("7133", "3", "2014-12-31 09:28:56", "66.249.79.92", "90");
INSERT INTO `wp_rg_form_view` VALUES("7134", "3", "2014-12-31 10:02:49", "66.249.79.92", "222");
INSERT INTO `wp_rg_form_view` VALUES("7135", "3", "2014-12-31 11:01:32", "27.159.231.187", "416");
INSERT INTO `wp_rg_form_view` VALUES("7136", "3", "2014-12-31 13:07:32", "183.252.52.64", "188");
INSERT INTO `wp_rg_form_view` VALUES("7137", "3", "2014-12-31 14:02:38", "216.218.29.188", "162");
INSERT INTO `wp_rg_form_view` VALUES("7138", "3", "2014-12-31 15:12:37", "66.249.79.76", "636");
INSERT INTO `wp_rg_form_view` VALUES("7139", "6", "2014-12-31 15:51:29", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7140", "3", "2014-12-31 16:00:09", "183.252.52.32", "104");
INSERT INTO `wp_rg_form_view` VALUES("7141", "3", "2014-12-31 17:01:41", "183.252.52.222", "149");
INSERT INTO `wp_rg_form_view` VALUES("7142", "3", "2014-12-31 18:03:49", "66.249.79.76", "206");
INSERT INTO `wp_rg_form_view` VALUES("7143", "3", "2014-12-31 19:00:05", "66.249.79.84", "212");
INSERT INTO `wp_rg_form_view` VALUES("7144", "3", "2014-12-31 20:00:38", "66.249.79.76", "366");
INSERT INTO `wp_rg_form_view` VALUES("7145", "1", "2014-12-31 20:05:11", "118.97.158.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("7146", "3", "2014-12-31 21:00:21", "66.249.79.92", "568");
INSERT INTO `wp_rg_form_view` VALUES("7147", "3", "2014-12-31 22:00:21", "66.249.79.92", "568");
INSERT INTO `wp_rg_form_view` VALUES("7148", "3", "2014-12-31 23:01:25", "66.249.79.76", "649");
INSERT INTO `wp_rg_form_view` VALUES("7149", "3", "2015-01-01 00:02:43", "66.249.79.92", "472");
INSERT INTO `wp_rg_form_view` VALUES("7150", "3", "2015-01-01 01:00:20", "66.249.79.76", "606");
INSERT INTO `wp_rg_form_view` VALUES("7151", "3", "2015-01-01 02:00:02", "66.249.79.84", "514");
INSERT INTO `wp_rg_form_view` VALUES("7152", "1", "2015-01-01 02:32:11", "171.217.145.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("7153", "3", "2015-01-01 03:02:16", "66.249.79.84", "66");
INSERT INTO `wp_rg_form_view` VALUES("7154", "3", "2015-01-01 04:02:29", "66.249.79.92", "70");
INSERT INTO `wp_rg_form_view` VALUES("7155", "3", "2015-01-01 05:00:15", "66.249.79.76", "536");
INSERT INTO `wp_rg_form_view` VALUES("7156", "1", "2015-01-01 05:23:54", "188.165.15.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("7157", "6", "2015-01-01 05:58:19", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7158", "3", "2015-01-01 06:00:21", "66.249.79.84", "622");
INSERT INTO `wp_rg_form_view` VALUES("7159", "3", "2015-01-01 07:00:08", "66.249.79.84", "542");
INSERT INTO `wp_rg_form_view` VALUES("7160", "3", "2015-01-01 08:00:26", "66.249.79.92", "907");
INSERT INTO `wp_rg_form_view` VALUES("7161", "3", "2015-01-01 09:00:23", "66.249.79.76", "7434");
INSERT INTO `wp_rg_form_view` VALUES("7162", "1", "2015-01-01 09:12:15", "162.243.36.31", "2");
INSERT INTO `wp_rg_form_view` VALUES("7163", "2", "2015-01-01 09:17:05", "69.50.234.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("7164", "6", "2015-01-01 09:19:42", "193.253.238.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("7165", "3", "2015-01-01 10:00:00", "162.243.36.31", "4811");
INSERT INTO `wp_rg_form_view` VALUES("7166", "6", "2015-01-01 10:39:13", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("7167", "3", "2015-01-01 11:00:18", "66.249.79.84", "748");
INSERT INTO `wp_rg_form_view` VALUES("7168", "6", "2015-01-01 11:24:35", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7169", "3", "2015-01-01 12:00:17", "66.249.79.84", "660");
INSERT INTO `wp_rg_form_view` VALUES("7170", "3", "2015-01-01 13:00:21", "66.249.79.84", "844");
INSERT INTO `wp_rg_form_view` VALUES("7171", "3", "2015-01-01 14:00:09", "66.249.79.76", "65");
INSERT INTO `wp_rg_form_view` VALUES("7172", "3", "2015-01-01 15:10:28", "66.249.79.84", "376");
INSERT INTO `wp_rg_form_view` VALUES("7173", "6", "2015-01-01 15:14:40", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7174", "3", "2015-01-01 16:00:14", "66.249.79.92", "726");
INSERT INTO `wp_rg_form_view` VALUES("7175", "3", "2015-01-01 17:00:08", "66.249.79.84", "982");
INSERT INTO `wp_rg_form_view` VALUES("7176", "6", "2015-01-01 17:27:25", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7177", "3", "2015-01-01 18:00:03", "66.249.79.84", "926");
INSERT INTO `wp_rg_form_view` VALUES("7178", "3", "2015-01-01 19:00:05", "66.249.79.92", "1084");
INSERT INTO `wp_rg_form_view` VALUES("7179", "3", "2015-01-01 20:00:04", "66.249.79.92", "1128");
INSERT INTO `wp_rg_form_view` VALUES("7180", "6", "2015-01-01 20:32:53", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7181", "3", "2015-01-01 21:00:03", "66.249.79.92", "1256");
INSERT INTO `wp_rg_form_view` VALUES("7182", "1", "2015-01-01 21:48:43", "218.88.92.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("7183", "3", "2015-01-01 22:00:00", "202.46.50.180", "671");
INSERT INTO `wp_rg_form_view` VALUES("7184", "6", "2015-01-01 22:04:04", "213.238.175.29", "4");
INSERT INTO `wp_rg_form_view` VALUES("7185", "2", "2015-01-01 23:04:35", "91.121.163.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("7186", "3", "2015-01-01 23:04:35", "91.121.163.214", "24");
INSERT INTO `wp_rg_form_view` VALUES("7187", "3", "2015-01-02 00:00:03", "202.46.49.130", "114");
INSERT INTO `wp_rg_form_view` VALUES("7188", "3", "2015-01-02 01:16:48", "24.87.25.139", "70");
INSERT INTO `wp_rg_form_view` VALUES("7189", "3", "2015-01-02 02:07:03", "66.249.79.84", "226");
INSERT INTO `wp_rg_form_view` VALUES("7190", "6", "2015-01-02 02:55:33", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7191", "3", "2015-01-02 03:00:00", "66.249.79.76", "388");
INSERT INTO `wp_rg_form_view` VALUES("7192", "3", "2015-01-02 04:00:02", "66.249.79.92", "424");
INSERT INTO `wp_rg_form_view` VALUES("7193", "3", "2015-01-02 05:00:12", "66.249.79.92", "522");
INSERT INTO `wp_rg_form_view` VALUES("7194", "3", "2015-01-02 06:00:15", "66.249.79.92", "708");
INSERT INTO `wp_rg_form_view` VALUES("7195", "3", "2015-01-02 07:02:11", "66.249.79.76", "708");
INSERT INTO `wp_rg_form_view` VALUES("7196", "3", "2015-01-02 08:02:35", "66.249.79.84", "914");
INSERT INTO `wp_rg_form_view` VALUES("7197", "3", "2015-01-02 09:00:02", "66.249.79.92", "820");
INSERT INTO `wp_rg_form_view` VALUES("7198", "3", "2015-01-02 10:01:08", "144.76.201.69", "302");
INSERT INTO `wp_rg_form_view` VALUES("7199", "3", "2015-01-02 11:00:26", "66.249.79.92", "690");
INSERT INTO `wp_rg_form_view` VALUES("7200", "2", "2015-01-02 11:41:49", "107.161.85.99", "4");
INSERT INTO `wp_rg_form_view` VALUES("7201", "3", "2015-01-02 12:00:19", "66.249.79.76", "1108");
INSERT INTO `wp_rg_form_view` VALUES("7202", "3", "2015-01-02 13:01:13", "202.46.62.147", "858");
INSERT INTO `wp_rg_form_view` VALUES("7203", "3", "2015-01-02 14:00:38", "66.249.79.84", "758");
INSERT INTO `wp_rg_form_view` VALUES("7204", "3", "2015-01-02 15:00:28", "66.249.79.92", "868");
INSERT INTO `wp_rg_form_view` VALUES("7205", "3", "2015-01-02 16:02:46", "66.249.79.84", "1001");
INSERT INTO `wp_rg_form_view` VALUES("7206", "3", "2015-01-02 17:00:15", "66.249.79.76", "682");
INSERT INTO `wp_rg_form_view` VALUES("7207", "3", "2015-01-02 18:00:15", "66.249.79.92", "708");
INSERT INTO `wp_rg_form_view` VALUES("7208", "3", "2015-01-02 19:00:13", "66.249.79.84", "398");
INSERT INTO `wp_rg_form_view` VALUES("7209", "3", "2015-01-02 20:01:06", "66.249.79.84", "484");
INSERT INTO `wp_rg_form_view` VALUES("7210", "6", "2015-01-02 20:22:39", "199.15.251.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("7211", "3", "2015-01-02 21:31:58", "202.46.63.162", "62");
INSERT INTO `wp_rg_form_view` VALUES("7212", "1", "2015-01-02 21:36:46", "5.53.168.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("7213", "2", "2015-01-02 21:42:27", "23.95.93.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("7214", "3", "2015-01-02 22:16:27", "183.252.52.192", "198");
INSERT INTO `wp_rg_form_view` VALUES("7215", "3", "2015-01-02 23:06:53", "183.252.52.236", "22");
INSERT INTO `wp_rg_form_view` VALUES("7216", "3", "2015-01-03 00:14:23", "157.55.39.191", "126");
INSERT INTO `wp_rg_form_view` VALUES("7217", "3", "2015-01-03 01:17:18", "202.46.62.89", "167");
INSERT INTO `wp_rg_form_view` VALUES("7218", "3", "2015-01-03 02:03:10", "91.200.12.145", "145");
INSERT INTO `wp_rg_form_view` VALUES("7219", "3", "2015-01-03 02:03:10", "91.200.12.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("7220", "6", "2015-01-03 02:09:03", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("7221", "3", "2015-01-03 03:13:53", "202.46.61.124", "30");
INSERT INTO `wp_rg_form_view` VALUES("7222", "3", "2015-01-03 04:02:46", "109.169.29.30", "453");
INSERT INTO `wp_rg_form_view` VALUES("7223", "2", "2015-01-03 04:06:34", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("7224", "6", "2015-01-03 04:07:42", "109.169.29.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("7225", "3", "2015-01-03 05:00:40", "66.249.79.84", "2919");
INSERT INTO `wp_rg_form_view` VALUES("7226", "2", "2015-01-03 05:54:00", "167.160.107.94", "6");
INSERT INTO `wp_rg_form_view` VALUES("7227", "3", "2015-01-03 06:00:00", "66.249.79.76", "3593");
INSERT INTO `wp_rg_form_view` VALUES("7228", "3", "2015-01-03 07:00:01", "66.249.79.84", "7063");
INSERT INTO `wp_rg_form_view` VALUES("7229", "6", "2015-01-03 07:19:04", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("7230", "1", "2015-01-03 07:24:14", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("7231", "3", "2015-01-03 08:00:00", "66.249.79.92", "7008");
INSERT INTO `wp_rg_form_view` VALUES("7232", "3", "2015-01-03 09:00:00", "66.249.79.84", "7205");
INSERT INTO `wp_rg_form_view` VALUES("7233", "6", "2015-01-03 09:02:34", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7234", "3", "2015-01-03 10:00:00", "66.249.79.76", "6942");
INSERT INTO `wp_rg_form_view` VALUES("7235", "6", "2015-01-03 10:06:35", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7236", "3", "2015-01-03 11:00:00", "66.249.79.92", "7354");
INSERT INTO `wp_rg_form_view` VALUES("7237", "2", "2015-01-03 11:55:00", "144.76.42.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("7238", "6", "2015-01-03 11:59:42", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7239", "3", "2015-01-03 12:00:06", "66.249.79.84", "7050");
INSERT INTO `wp_rg_form_view` VALUES("7240", "3", "2015-01-03 13:00:01", "66.249.79.92", "7273");
INSERT INTO `wp_rg_form_view` VALUES("7241", "6", "2015-01-03 13:42:23", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7242", "3", "2015-01-03 14:00:00", "66.249.79.76", "7275");
INSERT INTO `wp_rg_form_view` VALUES("7243", "3", "2015-01-03 15:00:00", "66.249.79.92", "7475");
INSERT INTO `wp_rg_form_view` VALUES("7244", "3", "2015-01-03 16:00:06", "66.249.79.84", "632");
INSERT INTO `wp_rg_form_view` VALUES("7245", "3", "2015-01-03 17:01:22", "66.249.79.92", "3134");
INSERT INTO `wp_rg_form_view` VALUES("7246", "3", "2015-01-03 18:00:00", "66.249.79.92", "7163");
INSERT INTO `wp_rg_form_view` VALUES("7247", "3", "2015-01-03 19:00:06", "66.249.79.92", "6757");
INSERT INTO `wp_rg_form_view` VALUES("7248", "3", "2015-01-03 20:00:00", "66.249.79.84", "6484");
INSERT INTO `wp_rg_form_view` VALUES("7249", "6", "2015-01-03 20:47:17", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7250", "3", "2015-01-03 21:00:02", "66.249.79.92", "6356");
INSERT INTO `wp_rg_form_view` VALUES("7251", "3", "2015-01-03 22:00:02", "66.249.79.84", "6812");
INSERT INTO `wp_rg_form_view` VALUES("7252", "6", "2015-01-03 22:39:29", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7253", "2", "2015-01-03 22:57:29", "107.161.85.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("7254", "3", "2015-01-03 23:00:00", "66.249.79.76", "6992");
INSERT INTO `wp_rg_form_view` VALUES("7255", "6", "2015-01-03 23:00:08", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7256", "3", "2015-01-04 00:00:00", "66.249.79.76", "7075");
INSERT INTO `wp_rg_form_view` VALUES("7257", "6", "2015-01-04 00:32:03", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("7258", "3", "2015-01-04 01:00:00", "66.249.79.76", "7539");
INSERT INTO `wp_rg_form_view` VALUES("7259", "6", "2015-01-04 01:53:48", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7260", "3", "2015-01-04 02:00:01", "66.249.79.92", "7053");
INSERT INTO `wp_rg_form_view` VALUES("7261", "6", "2015-01-04 02:08:17", "66.249.79.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("7262", "3", "2015-01-04 03:00:02", "66.249.79.76", "7008");
INSERT INTO `wp_rg_form_view` VALUES("7263", "6", "2015-01-04 03:01:25", "66.249.79.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("7264", "3", "2015-01-04 04:00:02", "66.249.79.84", "1989");
INSERT INTO `wp_rg_form_view` VALUES("7265", "1", "2015-01-04 04:33:45", "198.199.66.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("7266", "2", "2015-01-04 04:33:45", "198.199.66.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("7267", "3", "2015-01-04 05:04:14", "66.249.79.76", "210");
INSERT INTO `wp_rg_form_view` VALUES("7268", "3", "2015-01-04 06:07:36", "66.249.79.76", "265");
INSERT INTO `wp_rg_form_view` VALUES("7269", "3", "2015-01-04 07:02:59", "66.249.79.92", "684");
INSERT INTO `wp_rg_form_view` VALUES("7270", "3", "2015-01-04 08:00:32", "66.249.79.84", "692");
INSERT INTO `wp_rg_form_view` VALUES("7271", "3", "2015-01-04 09:00:21", "66.249.79.84", "462");
INSERT INTO `wp_rg_form_view` VALUES("7272", "3", "2015-01-04 10:00:34", "66.249.79.84", "122");
INSERT INTO `wp_rg_form_view` VALUES("7273", "6", "2015-01-04 10:04:11", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7274", "3", "2015-01-04 11:08:15", "66.249.79.84", "50");
INSERT INTO `wp_rg_form_view` VALUES("7275", "3", "2015-01-04 12:05:32", "66.249.79.84", "360");
INSERT INTO `wp_rg_form_view` VALUES("7276", "3", "2015-01-04 13:00:23", "66.249.79.76", "418");
INSERT INTO `wp_rg_form_view` VALUES("7277", "3", "2015-01-04 14:03:00", "66.249.79.84", "484");
INSERT INTO `wp_rg_form_view` VALUES("7278", "6", "2015-01-04 14:25:28", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7279", "3", "2015-01-04 15:02:56", "66.249.79.84", "703");
INSERT INTO `wp_rg_form_view` VALUES("7280", "6", "2015-01-04 15:18:30", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("7281", "2", "2015-01-04 15:20:47", "192.3.166.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("7282", "1", "2015-01-04 15:54:27", "171.217.146.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("7283", "3", "2015-01-04 16:00:02", "66.249.79.92", "648");
INSERT INTO `wp_rg_form_view` VALUES("7284", "1", "2015-01-04 16:18:19", "171.217.146.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("7285", "3", "2015-01-04 17:00:22", "66.249.79.84", "2441");
INSERT INTO `wp_rg_form_view` VALUES("7286", "1", "2015-01-04 17:14:49", "104.37.56.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("7287", "2", "2015-01-04 17:51:52", "213.238.175.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("7288", "3", "2015-01-04 18:00:04", "66.249.79.92", "2891");
INSERT INTO `wp_rg_form_view` VALUES("7289", "1", "2015-01-04 18:09:39", "171.217.146.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("7290", "3", "2015-01-04 19:00:02", "66.249.79.84", "2607");
INSERT INTO `wp_rg_form_view` VALUES("7291", "2", "2015-01-04 19:01:16", "77.68.227.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("7292", "3", "2015-01-04 20:00:15", "66.249.79.76", "2478");
INSERT INTO `wp_rg_form_view` VALUES("7293", "3", "2015-01-04 21:01:39", "66.249.79.92", "2672");
INSERT INTO `wp_rg_form_view` VALUES("7294", "6", "2015-01-04 21:47:07", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7295", "3", "2015-01-04 22:00:21", "66.249.79.92", "2643");
INSERT INTO `wp_rg_form_view` VALUES("7296", "3", "2015-01-04 23:00:00", "66.249.79.84", "3123");
INSERT INTO `wp_rg_form_view` VALUES("7297", "1", "2015-01-04 23:17:27", "64.114.25.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("7298", "3", "2015-01-05 00:00:08", "66.249.79.84", "2918");
INSERT INTO `wp_rg_form_view` VALUES("7299", "3", "2015-01-05 01:00:05", "66.249.79.92", "3041");
INSERT INTO `wp_rg_form_view` VALUES("7300", "6", "2015-01-05 01:08:36", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("7301", "1", "2015-01-05 01:09:20", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("7302", "2", "2015-01-05 01:09:28", "79.116.31.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("7303", "3", "2015-01-05 02:00:03", "66.249.79.84", "2224");
INSERT INTO `wp_rg_form_view` VALUES("7304", "6", "2015-01-05 02:13:36", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7305", "3", "2015-01-05 03:00:31", "66.249.79.76", "136");
INSERT INTO `wp_rg_form_view` VALUES("7306", "3", "2015-01-05 04:01:11", "91.200.12.45", "308");
INSERT INTO `wp_rg_form_view` VALUES("7307", "3", "2015-01-05 05:04:12", "66.249.79.76", "2130");
INSERT INTO `wp_rg_form_view` VALUES("7308", "3", "2015-01-05 06:00:04", "66.249.79.84", "4433");
INSERT INTO `wp_rg_form_view` VALUES("7309", "6", "2015-01-05 06:34:47", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7310", "3", "2015-01-05 07:00:00", "66.249.79.92", "4665");
INSERT INTO `wp_rg_form_view` VALUES("7311", "3", "2015-01-05 08:00:04", "66.249.79.92", "4518");
INSERT INTO `wp_rg_form_view` VALUES("7312", "6", "2015-01-05 08:00:39", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7313", "3", "2015-01-05 09:00:06", "66.249.79.76", "4374");
INSERT INTO `wp_rg_form_view` VALUES("7314", "3", "2015-01-05 10:00:09", "66.249.79.92", "4034");
INSERT INTO `wp_rg_form_view` VALUES("7315", "3", "2015-01-05 11:00:02", "66.249.79.92", "4174");
INSERT INTO `wp_rg_form_view` VALUES("7316", "6", "2015-01-05 11:22:20", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("7317", "3", "2015-01-05 12:00:05", "66.249.79.92", "4609");
INSERT INTO `wp_rg_form_view` VALUES("7318", "3", "2015-01-05 13:00:00", "66.249.79.76", "4738");
INSERT INTO `wp_rg_form_view` VALUES("7319", "2", "2015-01-05 13:18:51", "80.76.206.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("7320", "1", "2015-01-05 13:18:51", "80.76.206.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("7321", "3", "2015-01-05 14:00:04", "66.249.79.76", "4422");
INSERT INTO `wp_rg_form_view` VALUES("7322", "2", "2015-01-05 14:16:19", "204.44.83.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("7323", "6", "2015-01-05 14:25:14", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7324", "3", "2015-01-05 15:00:08", "66.249.79.92", "1893");
INSERT INTO `wp_rg_form_view` VALUES("7325", "3", "2015-01-05 16:01:45", "66.249.79.76", "541");
INSERT INTO `wp_rg_form_view` VALUES("7326", "6", "2015-01-05 16:01:45", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("7327", "3", "2015-01-05 17:00:20", "66.249.79.92", "778");
INSERT INTO `wp_rg_form_view` VALUES("7328", "1", "2015-01-05 17:19:30", "24.68.239.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("7329", "3", "2015-01-05 18:00:08", "66.249.79.84", "579");
INSERT INTO `wp_rg_form_view` VALUES("7330", "3", "2015-01-05 19:00:05", "66.249.79.92", "240");
INSERT INTO `wp_rg_form_view` VALUES("7331", "6", "2015-01-05 19:10:11", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7332", "3", "2015-01-05 20:02:38", "66.249.79.84", "248");
INSERT INTO `wp_rg_form_view` VALUES("7333", "3", "2015-01-05 21:04:28", "66.249.79.92", "478");
INSERT INTO `wp_rg_form_view` VALUES("7334", "6", "2015-01-05 21:21:47", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7335", "3", "2015-01-05 22:00:19", "66.249.79.92", "1041");
INSERT INTO `wp_rg_form_view` VALUES("7336", "3", "2015-01-05 23:03:04", "66.249.79.92", "648");
INSERT INTO `wp_rg_form_view` VALUES("7337", "2", "2015-01-05 23:59:35", "204.44.83.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("7338", "3", "2015-01-06 00:00:00", "66.249.79.76", "665");
INSERT INTO `wp_rg_form_view` VALUES("7339", "2", "2015-01-06 00:01:40", "23.95.93.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("7340", "3", "2015-01-06 01:00:12", "66.249.79.92", "524");
INSERT INTO `wp_rg_form_view` VALUES("7341", "3", "2015-01-06 02:00:15", "66.249.79.84", "598");
INSERT INTO `wp_rg_form_view` VALUES("7342", "2", "2015-01-06 02:52:18", "104.37.56.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("7343", "3", "2015-01-06 03:00:27", "66.249.79.84", "580");
INSERT INTO `wp_rg_form_view` VALUES("7344", "3", "2015-01-06 04:00:30", "66.249.79.84", "582");
INSERT INTO `wp_rg_form_view` VALUES("7345", "3", "2015-01-06 05:00:31", "66.249.79.84", "403");
INSERT INTO `wp_rg_form_view` VALUES("7346", "2", "2015-01-06 05:10:06", "23.95.93.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("7347", "6", "2015-01-06 05:48:40", "202.46.48.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("7348", "3", "2015-01-06 06:03:38", "202.46.50.129", "194");
INSERT INTO `wp_rg_form_view` VALUES("7349", "3", "2015-01-06 07:00:42", "66.249.79.92", "910");
INSERT INTO `wp_rg_form_view` VALUES("7350", "3", "2015-01-06 08:00:10", "66.249.79.76", "1248");
INSERT INTO `wp_rg_form_view` VALUES("7351", "3", "2015-01-06 09:00:03", "66.249.79.92", "1599");
INSERT INTO `wp_rg_form_view` VALUES("7352", "6", "2015-01-06 09:09:54", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7353", "3", "2015-01-06 10:00:22", "66.249.79.84", "1370");
INSERT INTO `wp_rg_form_view` VALUES("7354", "3", "2015-01-06 11:00:14", "66.249.79.84", "1189");
INSERT INTO `wp_rg_form_view` VALUES("7355", "3", "2015-01-06 12:02:53", "188.165.15.84", "312");
INSERT INTO `wp_rg_form_view` VALUES("7356", "1", "2015-01-06 12:53:59", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("7357", "3", "2015-01-06 13:00:03", "66.249.79.84", "204");
INSERT INTO `wp_rg_form_view` VALUES("7358", "3", "2015-01-06 14:04:55", "66.249.79.92", "48");
INSERT INTO `wp_rg_form_view` VALUES("7359", "3", "2015-01-06 15:11:08", "202.46.63.68", "94");
INSERT INTO `wp_rg_form_view` VALUES("7360", "3", "2015-01-06 16:00:25", "183.252.52.7", "210");
INSERT INTO `wp_rg_form_view` VALUES("7361", "3", "2015-01-06 17:01:22", "66.249.79.76", "1286");
INSERT INTO `wp_rg_form_view` VALUES("7362", "3", "2015-01-06 18:00:14", "66.249.79.76", "1852");
INSERT INTO `wp_rg_form_view` VALUES("7363", "3", "2015-01-06 19:00:17", "66.249.79.92", "1872");
INSERT INTO `wp_rg_form_view` VALUES("7364", "3", "2015-01-06 20:00:11", "66.249.79.76", "1828");
INSERT INTO `wp_rg_form_view` VALUES("7365", "3", "2015-01-06 21:00:15", "66.249.79.92", "2017");
INSERT INTO `wp_rg_form_view` VALUES("7366", "1", "2015-01-06 21:48:46", "171.217.146.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("7367", "3", "2015-01-06 22:00:11", "66.249.79.84", "1920");
INSERT INTO `wp_rg_form_view` VALUES("7368", "6", "2015-01-06 22:02:28", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7369", "3", "2015-01-06 23:00:38", "66.249.79.84", "1946");
INSERT INTO `wp_rg_form_view` VALUES("7370", "3", "2015-01-07 00:00:13", "66.249.79.92", "1858");
INSERT INTO `wp_rg_form_view` VALUES("7371", "3", "2015-01-07 01:00:13", "66.249.79.84", "1414");
INSERT INTO `wp_rg_form_view` VALUES("7372", "3", "2015-01-07 02:00:35", "183.252.52.177", "68");
INSERT INTO `wp_rg_form_view` VALUES("7373", "3", "2015-01-07 03:03:25", "100.43.85.24", "214");
INSERT INTO `wp_rg_form_view` VALUES("7374", "3", "2015-01-07 04:03:25", "66.249.79.92", "941");
INSERT INTO `wp_rg_form_view` VALUES("7375", "3", "2015-01-07 05:00:07", "66.249.79.76", "2986");
INSERT INTO `wp_rg_form_view` VALUES("7376", "1", "2015-01-07 05:23:58", "24.68.31.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("7377", "3", "2015-01-07 06:00:00", "66.249.79.76", "3127");
INSERT INTO `wp_rg_form_view` VALUES("7378", "6", "2015-01-07 06:11:29", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7379", "3", "2015-01-07 07:00:06", "66.249.79.76", "3246");
INSERT INTO `wp_rg_form_view` VALUES("7380", "6", "2015-01-07 07:50:40", "69.12.77.248", "10");
INSERT INTO `wp_rg_form_view` VALUES("7381", "3", "2015-01-07 08:00:07", "66.249.79.84", "3133");
INSERT INTO `wp_rg_form_view` VALUES("7382", "2", "2015-01-07 08:42:57", "167.160.110.126", "4");
INSERT INTO `wp_rg_form_view` VALUES("7383", "3", "2015-01-07 09:00:08", "66.249.79.92", "3158");
INSERT INTO `wp_rg_form_view` VALUES("7384", "6", "2015-01-07 09:38:57", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("7385", "3", "2015-01-07 10:00:09", "66.249.79.84", "3224");
INSERT INTO `wp_rg_form_view` VALUES("7386", "3", "2015-01-07 11:00:09", "66.249.79.92", "3437");
INSERT INTO `wp_rg_form_view` VALUES("7387", "6", "2015-01-07 11:21:38", "192.230.41.225", "4");
INSERT INTO `wp_rg_form_view` VALUES("7388", "3", "2015-01-07 12:00:00", "66.249.79.84", "3663");
INSERT INTO `wp_rg_form_view` VALUES("7389", "6", "2015-01-07 12:00:26", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7390", "3", "2015-01-07 13:00:19", "66.249.79.76", "1668");
INSERT INTO `wp_rg_form_view` VALUES("7391", "6", "2015-01-07 13:01:41", "192.3.176.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("7392", "3", "2015-01-07 14:00:14", "183.252.52.197", "141");
INSERT INTO `wp_rg_form_view` VALUES("7393", "6", "2015-01-07 14:43:09", "119.40.97.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("7394", "3", "2015-01-07 15:07:56", "167.160.112.217", "442");
INSERT INTO `wp_rg_form_view` VALUES("7395", "3", "2015-01-07 16:00:21", "66.249.79.92", "3958");
INSERT INTO `wp_rg_form_view` VALUES("7396", "1", "2015-01-07 16:45:16", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("7397", "3", "2015-01-07 17:00:07", "66.249.79.76", "6726");
INSERT INTO `wp_rg_form_view` VALUES("7398", "2", "2015-01-07 17:58:52", "167.160.112.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("7399", "3", "2015-01-07 18:00:00", "66.249.79.92", "6474");
INSERT INTO `wp_rg_form_view` VALUES("7400", "6", "2015-01-07 18:46:31", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7401", "3", "2015-01-07 19:00:00", "66.249.79.92", "6161");
INSERT INTO `wp_rg_form_view` VALUES("7402", "6", "2015-01-07 19:23:11", "157.55.39.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("7403", "3", "2015-01-07 20:00:00", "66.249.79.76", "6333");
INSERT INTO `wp_rg_form_view` VALUES("7404", "1", "2015-01-07 20:25:46", "83.85.21.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("7405", "3", "2015-01-07 21:00:00", "66.249.79.84", "5865");
INSERT INTO `wp_rg_form_view` VALUES("7406", "3", "2015-01-07 22:01:22", "66.249.79.76", "6256");
INSERT INTO `wp_rg_form_view` VALUES("7407", "1", "2015-01-07 22:54:08", "24.108.82.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("7408", "3", "2015-01-07 23:00:00", "66.249.79.92", "5925");
INSERT INTO `wp_rg_form_view` VALUES("7409", "3", "2015-01-08 00:00:00", "66.249.79.84", "6826");
INSERT INTO `wp_rg_form_view` VALUES("7410", "6", "2015-01-08 00:10:48", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7411", "3", "2015-01-08 01:00:00", "66.249.79.92", "6509");
INSERT INTO `wp_rg_form_view` VALUES("7412", "3", "2015-01-08 02:00:03", "66.249.79.92", "6962");
INSERT INTO `wp_rg_form_view` VALUES("7413", "6", "2015-01-08 02:58:57", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7414", "3", "2015-01-08 03:00:00", "66.249.79.92", "6426");
INSERT INTO `wp_rg_form_view` VALUES("7415", "3", "2015-01-08 04:00:00", "66.249.79.76", "6879");
INSERT INTO `wp_rg_form_view` VALUES("7416", "1", "2015-01-08 04:17:35", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("7417", "3", "2015-01-08 05:00:00", "66.249.79.84", "3996");
INSERT INTO `wp_rg_form_view` VALUES("7418", "1", "2015-01-08 05:54:31", "171.217.146.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("7419", "3", "2015-01-08 06:00:01", "66.249.79.92", "7368");
INSERT INTO `wp_rg_form_view` VALUES("7420", "3", "2015-01-08 07:00:06", "66.249.79.92", "6372");
INSERT INTO `wp_rg_form_view` VALUES("7421", "3", "2015-01-08 08:00:05", "66.249.79.76", "7214");
INSERT INTO `wp_rg_form_view` VALUES("7422", "6", "2015-01-08 08:12:16", "66.249.79.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("7423", "2", "2015-01-08 08:36:06", "92.85.165.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("7424", "3", "2015-01-08 09:00:00", "66.249.79.76", "6507");
INSERT INTO `wp_rg_form_view` VALUES("7425", "6", "2015-01-08 09:14:57", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("7426", "3", "2015-01-08 10:00:00", "66.249.79.84", "6398");
INSERT INTO `wp_rg_form_view` VALUES("7427", "6", "2015-01-08 10:08:12", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7428", "3", "2015-01-08 11:00:00", "66.249.79.84", "6298");
INSERT INTO `wp_rg_form_view` VALUES("7429", "3", "2015-01-08 12:00:00", "66.249.79.76", "6535");
INSERT INTO `wp_rg_form_view` VALUES("7430", "6", "2015-01-08 12:35:05", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7431", "3", "2015-01-08 13:00:00", "66.249.79.84", "6501");
INSERT INTO `wp_rg_form_view` VALUES("7432", "6", "2015-01-08 13:19:17", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7433", "2", "2015-01-08 13:42:42", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("7434", "3", "2015-01-08 14:00:00", "66.249.79.92", "6365");
INSERT INTO `wp_rg_form_view` VALUES("7435", "3", "2015-01-08 15:00:00", "66.249.79.92", "6858");
INSERT INTO `wp_rg_form_view` VALUES("7436", "3", "2015-01-08 16:00:00", "66.249.79.92", "6497");
INSERT INTO `wp_rg_form_view` VALUES("7437", "2", "2015-01-08 16:37:27", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("7438", "3", "2015-01-08 17:00:00", "66.249.79.92", "3612");
INSERT INTO `wp_rg_form_view` VALUES("7439", "3", "2015-01-08 18:00:05", "66.249.79.84", "4754");
INSERT INTO `wp_rg_form_view` VALUES("7440", "3", "2015-01-08 19:00:51", "66.249.79.92", "4929");
INSERT INTO `wp_rg_form_view` VALUES("7441", "3", "2015-01-08 20:00:04", "66.249.79.92", "5458");
INSERT INTO `wp_rg_form_view` VALUES("7442", "3", "2015-01-08 21:00:00", "66.249.79.84", "6041");
INSERT INTO `wp_rg_form_view` VALUES("7443", "2", "2015-01-08 21:36:50", "188.165.15.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("7444", "3", "2015-01-08 22:00:00", "183.252.52.157", "5148");
INSERT INTO `wp_rg_form_view` VALUES("7445", "3", "2015-01-08 23:00:00", "66.249.79.92", "5946");
INSERT INTO `wp_rg_form_view` VALUES("7446", "6", "2015-01-08 23:22:01", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7447", "3", "2015-01-09 00:00:01", "66.249.79.84", "5874");
INSERT INTO `wp_rg_form_view` VALUES("7448", "6", "2015-01-09 00:18:51", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7449", "3", "2015-01-09 01:00:26", "66.249.79.84", "5785");
INSERT INTO `wp_rg_form_view` VALUES("7450", "3", "2015-01-09 02:00:00", "66.249.79.84", "2197");
INSERT INTO `wp_rg_form_view` VALUES("7451", "3", "2015-01-09 03:02:45", "66.249.79.84", "248");
INSERT INTO `wp_rg_form_view` VALUES("7452", "3", "2015-01-09 04:00:02", "24.108.130.110", "398");
INSERT INTO `wp_rg_form_view` VALUES("7453", "1", "2015-01-09 04:46:26", "185.25.151.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("7454", "3", "2015-01-09 05:00:18", "66.249.79.76", "2008");
INSERT INTO `wp_rg_form_view` VALUES("7455", "6", "2015-01-09 05:29:51", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7456", "3", "2015-01-09 06:00:03", "66.249.79.92", "2420");
INSERT INTO `wp_rg_form_view` VALUES("7457", "3", "2015-01-09 07:00:08", "66.249.79.84", "2862");
INSERT INTO `wp_rg_form_view` VALUES("7458", "3", "2015-01-09 08:00:15", "66.249.79.76", "2690");
INSERT INTO `wp_rg_form_view` VALUES("7459", "2", "2015-01-09 08:12:23", "54.68.187.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("7460", "6", "2015-01-09 08:39:37", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7461", "3", "2015-01-09 09:00:17", "66.249.79.84", "2520");
INSERT INTO `wp_rg_form_view` VALUES("7462", "3", "2015-01-09 10:00:10", "66.249.79.76", "2736");
INSERT INTO `wp_rg_form_view` VALUES("7463", "3", "2015-01-09 11:00:03", "66.249.79.84", "2611");
INSERT INTO `wp_rg_form_view` VALUES("7464", "6", "2015-01-09 11:13:32", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7465", "3", "2015-01-09 12:00:06", "66.249.79.92", "1608");
INSERT INTO `wp_rg_form_view` VALUES("7466", "3", "2015-01-09 13:03:48", "183.252.52.244", "216");
INSERT INTO `wp_rg_form_view` VALUES("7467", "3", "2015-01-09 14:08:16", "183.252.52.125", "264");
INSERT INTO `wp_rg_form_view` VALUES("7468", "3", "2015-01-09 15:07:31", "155.94.132.187", "277");
INSERT INTO `wp_rg_form_view` VALUES("7469", "3", "2015-01-09 16:00:05", "66.249.79.84", "586");
INSERT INTO `wp_rg_form_view` VALUES("7470", "3", "2015-01-09 17:01:00", "66.249.79.84", "1755");
INSERT INTO `wp_rg_form_view` VALUES("7471", "3", "2015-01-09 18:00:00", "66.249.79.84", "1957");
INSERT INTO `wp_rg_form_view` VALUES("7472", "3", "2015-01-09 19:00:20", "66.249.79.84", "2394");
INSERT INTO `wp_rg_form_view` VALUES("7473", "3", "2015-01-09 20:00:41", "66.249.79.76", "2062");
INSERT INTO `wp_rg_form_view` VALUES("7474", "6", "2015-01-09 20:36:38", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7475", "3", "2015-01-09 21:00:06", "64.114.222.229", "2042");
INSERT INTO `wp_rg_form_view` VALUES("7476", "3", "2015-01-09 22:00:05", "66.249.79.84", "2052");
INSERT INTO `wp_rg_form_view` VALUES("7477", "3", "2015-01-09 23:00:00", "66.249.79.84", "2172");
INSERT INTO `wp_rg_form_view` VALUES("7478", "3", "2015-01-10 00:00:19", "66.249.79.92", "2622");
INSERT INTO `wp_rg_form_view` VALUES("7479", "6", "2015-01-10 00:06:10", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7480", "3", "2015-01-10 01:00:17", "68.180.229.33", "150");
INSERT INTO `wp_rg_form_view` VALUES("7481", "3", "2015-01-10 02:00:31", "66.249.79.76", "44");
INSERT INTO `wp_rg_form_view` VALUES("7482", "3", "2015-01-10 03:38:57", "66.249.79.76", "140");
INSERT INTO `wp_rg_form_view` VALUES("7483", "3", "2015-01-10 04:00:30", "66.249.79.76", "2446");
INSERT INTO `wp_rg_form_view` VALUES("7484", "3", "2015-01-10 05:00:08", "66.249.79.84", "3178");
INSERT INTO `wp_rg_form_view` VALUES("7485", "6", "2015-01-10 05:22:54", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("7486", "3", "2015-01-10 06:00:07", "66.249.79.92", "2736");
INSERT INTO `wp_rg_form_view` VALUES("7487", "6", "2015-01-10 06:45:01", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7488", "3", "2015-01-10 07:00:00", "66.249.79.84", "3380");
INSERT INTO `wp_rg_form_view` VALUES("7489", "3", "2015-01-10 08:00:00", "66.249.79.92", "3614");
INSERT INTO `wp_rg_form_view` VALUES("7490", "3", "2015-01-10 09:00:05", "66.249.79.84", "3724");
INSERT INTO `wp_rg_form_view` VALUES("7491", "3", "2015-01-10 10:00:00", "66.249.79.92", "3570");
INSERT INTO `wp_rg_form_view` VALUES("7492", "6", "2015-01-10 10:28:06", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7493", "3", "2015-01-10 11:00:03", "66.249.79.84", "3543");
INSERT INTO `wp_rg_form_view` VALUES("7494", "6", "2015-01-10 11:42:52", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7495", "3", "2015-01-10 12:00:08", "66.249.79.92", "3434");
INSERT INTO `wp_rg_form_view` VALUES("7496", "3", "2015-01-10 13:00:04", "66.249.79.92", "702");
INSERT INTO `wp_rg_form_view` VALUES("7497", "3", "2015-01-10 14:08:43", "66.249.79.76", "344");
INSERT INTO `wp_rg_form_view` VALUES("7498", "3", "2015-01-10 15:03:01", "195.211.155.183", "288");
INSERT INTO `wp_rg_form_view` VALUES("7499", "3", "2015-01-10 16:00:13", "66.249.79.84", "1666");
INSERT INTO `wp_rg_form_view` VALUES("7500", "6", "2015-01-10 16:58:55", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7501", "3", "2015-01-10 17:00:32", "66.249.79.84", "2118");
INSERT INTO `wp_rg_form_view` VALUES("7502", "3", "2015-01-10 18:00:35", "66.249.79.76", "1820");
INSERT INTO `wp_rg_form_view` VALUES("7503", "3", "2015-01-10 19:00:31", "66.249.79.92", "2198");
INSERT INTO `wp_rg_form_view` VALUES("7504", "6", "2015-01-10 19:18:54", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7505", "3", "2015-01-10 20:00:13", "66.249.79.92", "3152");
INSERT INTO `wp_rg_form_view` VALUES("7506", "1", "2015-01-10 20:31:11", "171.213.23.203", "2");
INSERT INTO `wp_rg_form_view` VALUES("7507", "3", "2015-01-10 21:00:07", "66.249.79.92", "3064");
INSERT INTO `wp_rg_form_view` VALUES("7508", "6", "2015-01-10 21:12:03", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("7509", "3", "2015-01-10 22:00:07", "66.249.79.84", "2926");
INSERT INTO `wp_rg_form_view` VALUES("7510", "6", "2015-01-10 22:49:40", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7511", "3", "2015-01-10 23:00:01", "66.249.79.84", "2910");
INSERT INTO `wp_rg_form_view` VALUES("7512", "3", "2015-01-11 00:00:13", "66.249.79.76", "2640");
INSERT INTO `wp_rg_form_view` VALUES("7513", "3", "2015-01-11 01:00:14", "66.249.79.92", "436");
INSERT INTO `wp_rg_form_view` VALUES("7514", "3", "2015-01-11 02:00:12", "66.249.79.84", "346");
INSERT INTO `wp_rg_form_view` VALUES("7515", "3", "2015-01-11 03:00:08", "66.249.79.76", "494");
INSERT INTO `wp_rg_form_view` VALUES("7516", "3", "2015-01-11 04:00:07", "66.249.79.92", "527");
INSERT INTO `wp_rg_form_view` VALUES("7517", "3", "2015-01-11 05:05:18", "66.249.79.92", "591");
INSERT INTO `wp_rg_form_view` VALUES("7518", "3", "2015-01-11 06:00:22", "66.249.79.76", "946");
INSERT INTO `wp_rg_form_view` VALUES("7519", "3", "2015-01-11 07:00:21", "66.249.79.76", "1132");
INSERT INTO `wp_rg_form_view` VALUES("7520", "3", "2015-01-11 08:01:02", "66.249.79.92", "990");
INSERT INTO `wp_rg_form_view` VALUES("7521", "3", "2015-01-11 09:05:02", "66.249.79.84", "312");
INSERT INTO `wp_rg_form_view` VALUES("7522", "3", "2015-01-11 10:05:29", "68.180.229.33", "42");
INSERT INTO `wp_rg_form_view` VALUES("7523", "1", "2015-01-11 11:03:40", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("7524", "3", "2015-01-11 11:03:40", "66.249.79.76", "328");
INSERT INTO `wp_rg_form_view` VALUES("7525", "6", "2015-01-11 11:53:58", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7526", "3", "2015-01-11 12:00:44", "66.249.79.92", "338");
INSERT INTO `wp_rg_form_view` VALUES("7527", "3", "2015-01-11 13:00:06", "66.249.79.92", "373");
INSERT INTO `wp_rg_form_view` VALUES("7528", "2", "2015-01-11 13:19:14", "198.211.106.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("7529", "1", "2015-01-11 13:19:15", "198.211.106.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("7530", "3", "2015-01-11 14:03:32", "183.252.52.90", "60");
INSERT INTO `wp_rg_form_view` VALUES("7531", "3", "2015-01-11 15:07:49", "82.192.74.118", "266");
INSERT INTO `wp_rg_form_view` VALUES("7532", "1", "2015-01-11 15:08:03", "82.192.74.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("7533", "2", "2015-01-11 15:08:15", "82.192.74.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("7534", "3", "2015-01-11 16:02:37", "66.249.79.76", "162");
INSERT INTO `wp_rg_form_view` VALUES("7535", "3", "2015-01-11 17:00:36", "66.249.79.76", "801");
INSERT INTO `wp_rg_form_view` VALUES("7536", "3", "2015-01-11 18:00:35", "66.249.79.84", "1302");
INSERT INTO `wp_rg_form_view` VALUES("7537", "6", "2015-01-11 18:47:49", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("7538", "3", "2015-01-11 19:00:01", "66.249.79.92", "1418");
INSERT INTO `wp_rg_form_view` VALUES("7539", "2", "2015-01-11 19:31:29", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("7540", "1", "2015-01-11 19:31:33", "192.99.149.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("7541", "3", "2015-01-11 20:02:33", "66.249.79.92", "1642");
INSERT INTO `wp_rg_form_view` VALUES("7542", "3", "2015-01-11 21:00:26", "66.249.79.76", "1574");
INSERT INTO `wp_rg_form_view` VALUES("7543", "3", "2015-01-11 22:00:27", "66.249.79.76", "1365");
INSERT INTO `wp_rg_form_view` VALUES("7544", "3", "2015-01-11 23:12:42", "202.46.61.123", "43");
INSERT INTO `wp_rg_form_view` VALUES("7545", "3", "2015-01-12 00:00:03", "24.68.23.2", "314");
INSERT INTO `wp_rg_form_view` VALUES("7546", "3", "2015-01-12 01:07:36", "66.249.79.84", "238");
INSERT INTO `wp_rg_form_view` VALUES("7547", "3", "2015-01-12 02:01:39", "192.99.33.150", "720");
INSERT INTO `wp_rg_form_view` VALUES("7548", "3", "2015-01-12 03:01:37", "91.200.12.145", "526");
INSERT INTO `wp_rg_form_view` VALUES("7549", "3", "2015-01-12 03:01:37", "91.200.12.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("7550", "1", "2015-01-12 03:16:21", "213.238.175.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("7551", "3", "2015-01-12 04:07:26", "202.46.49.35", "311");
INSERT INTO `wp_rg_form_view` VALUES("7552", "3", "2015-01-12 05:01:20", "66.249.79.92", "732");
INSERT INTO `wp_rg_form_view` VALUES("7553", "3", "2015-01-12 06:01:50", "184.69.162.158", "1838");
INSERT INTO `wp_rg_form_view` VALUES("7554", "3", "2015-01-12 07:00:12", "66.249.79.92", "2058");
INSERT INTO `wp_rg_form_view` VALUES("7555", "3", "2015-01-12 08:00:07", "66.249.79.84", "1846");
INSERT INTO `wp_rg_form_view` VALUES("7556", "3", "2015-01-12 09:00:21", "66.249.79.92", "2142");
INSERT INTO `wp_rg_form_view` VALUES("7557", "3", "2015-01-12 10:00:13", "66.249.79.76", "2048");
INSERT INTO `wp_rg_form_view` VALUES("7558", "3", "2015-01-12 11:00:03", "66.249.79.76", "1372");
INSERT INTO `wp_rg_form_view` VALUES("7559", "6", "2015-01-12 11:21:40", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("7560", "3", "2015-01-12 12:06:00", "66.249.79.84", "156");
INSERT INTO `wp_rg_form_view` VALUES("7561", "6", "2015-01-12 12:08:33", "66.249.79.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7562", "3", "2015-01-12 13:05:32", "66.249.67.84", "202");
INSERT INTO `wp_rg_form_view` VALUES("7563", "6", "2015-01-12 13:14:34", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7564", "3", "2015-01-12 14:04:14", "100.43.85.24", "192");
INSERT INTO `wp_rg_form_view` VALUES("7565", "3", "2015-01-12 15:07:13", "100.43.85.24", "326");
INSERT INTO `wp_rg_form_view` VALUES("7566", "3", "2015-01-12 16:00:00", "66.249.79.84", "474");
INSERT INTO `wp_rg_form_view` VALUES("7567", "1", "2015-01-12 16:42:35", "195.154.250.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("7568", "6", "2015-01-12 16:47:33", "157.55.39.232", "2");
INSERT INTO `wp_rg_form_view` VALUES("7569", "3", "2015-01-12 17:01:25", "183.252.52.68", "506");
INSERT INTO `wp_rg_form_view` VALUES("7570", "3", "2015-01-12 18:00:58", "66.249.79.84", "1446");
INSERT INTO `wp_rg_form_view` VALUES("7571", "3", "2015-01-12 19:00:09", "66.249.79.92", "1668");
INSERT INTO `wp_rg_form_view` VALUES("7572", "3", "2015-01-12 20:00:13", "66.249.79.92", "1824");
INSERT INTO `wp_rg_form_view` VALUES("7573", "6", "2015-01-12 20:08:51", "24.132.86.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("7574", "1", "2015-01-12 20:11:05", "24.132.86.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("7575", "2", "2015-01-12 20:11:21", "24.132.86.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("7576", "3", "2015-01-12 21:00:40", "66.249.79.84", "1794");
INSERT INTO `wp_rg_form_view` VALUES("7577", "3", "2015-01-12 22:00:02", "66.249.79.84", "2206");
INSERT INTO `wp_rg_form_view` VALUES("7578", "1", "2015-01-12 22:53:58", "68.180.229.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("7579", "3", "2015-01-12 23:04:08", "24.108.148.45", "572");
INSERT INTO `wp_rg_form_view` VALUES("7580", "3", "2015-01-13 00:03:05", "183.252.52.188", "776");
INSERT INTO `wp_rg_form_view` VALUES("7581", "3", "2015-01-13 01:02:16", "183.252.52.158", "730");
INSERT INTO `wp_rg_form_view` VALUES("7582", "3", "2015-01-13 02:00:10", "66.249.79.84", "428");
INSERT INTO `wp_rg_form_view` VALUES("7583", "3", "2015-01-13 03:01:11", "66.249.79.76", "4777");
INSERT INTO `wp_rg_form_view` VALUES("7584", "2", "2015-01-13 03:39:41", "5.9.127.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("7585", "1", "2015-01-13 03:40:02", "5.9.127.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("7586", "6", "2015-01-13 03:41:38", "5.9.127.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("7587", "3", "2015-01-13 04:00:01", "5.9.127.154", "6106");
INSERT INTO `wp_rg_form_view` VALUES("7588", "6", "2015-01-13 04:00:07", "5.9.127.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("7589", "3", "2015-01-13 05:00:06", "66.249.79.84", "808");
INSERT INTO `wp_rg_form_view` VALUES("7590", "6", "2015-01-13 05:00:39", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7591", "3", "2015-01-13 06:01:20", "66.249.79.76", "680");
INSERT INTO `wp_rg_form_view` VALUES("7592", "6", "2015-01-13 06:24:48", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7593", "3", "2015-01-13 07:06:44", "66.249.79.84", "606");
INSERT INTO `wp_rg_form_view` VALUES("7594", "3", "2015-01-13 08:01:19", "202.46.49.101", "420");
INSERT INTO `wp_rg_form_view` VALUES("7595", "3", "2015-01-13 09:03:21", "66.249.79.92", "576");
INSERT INTO `wp_rg_form_view` VALUES("7596", "3", "2015-01-13 10:00:50", "66.249.79.76", "1110");
INSERT INTO `wp_rg_form_view` VALUES("7597", "3", "2015-01-13 11:00:02", "66.249.79.92", "1232");
INSERT INTO `wp_rg_form_view` VALUES("7598", "6", "2015-01-13 11:26:25", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("7599", "3", "2015-01-13 12:00:48", "66.249.79.84", "1204");
INSERT INTO `wp_rg_form_view` VALUES("7600", "6", "2015-01-13 12:04:15", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7601", "3", "2015-01-13 13:00:43", "66.249.79.76", "1504");
INSERT INTO `wp_rg_form_view` VALUES("7602", "6", "2015-01-13 13:36:35", "66.249.79.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("7603", "3", "2015-01-13 14:00:03", "66.249.79.76", "1220");
INSERT INTO `wp_rg_form_view` VALUES("7604", "3", "2015-01-13 15:00:12", "66.249.79.84", "1180");
INSERT INTO `wp_rg_form_view` VALUES("7605", "3", "2015-01-13 16:00:33", "66.249.79.84", "1302");
INSERT INTO `wp_rg_form_view` VALUES("7606", "3", "2015-01-13 17:01:15", "66.249.79.76", "1396");
INSERT INTO `wp_rg_form_view` VALUES("7607", "3", "2015-01-13 18:21:27", "66.249.79.84", "326");
INSERT INTO `wp_rg_form_view` VALUES("7608", "6", "2015-01-13 18:34:01", "157.55.39.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("7609", "3", "2015-01-13 19:05:31", "192.99.149.88", "1086");
INSERT INTO `wp_rg_form_view` VALUES("7610", "3", "2015-01-13 20:00:13", "66.249.79.76", "1346");
INSERT INTO `wp_rg_form_view` VALUES("7611", "6", "2015-01-13 20:36:01", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7612", "3", "2015-01-13 21:00:01", "66.249.79.92", "2252");
INSERT INTO `wp_rg_form_view` VALUES("7613", "3", "2015-01-13 22:00:06", "66.249.79.84", "4032");
INSERT INTO `wp_rg_form_view` VALUES("7614", "6", "2015-01-13 22:38:31", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("7615", "3", "2015-01-13 23:00:19", "66.249.79.92", "1352");
INSERT INTO `wp_rg_form_view` VALUES("7616", "1", "2015-01-13 23:55:28", "24.68.12.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("7617", "3", "2015-01-14 00:00:35", "66.249.79.76", "524");
INSERT INTO `wp_rg_form_view` VALUES("7618", "3", "2015-01-14 01:03:39", "91.200.12.49", "774");
INSERT INTO `wp_rg_form_view` VALUES("7619", "6", "2015-01-14 01:23:03", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("7620", "3", "2015-01-14 02:07:13", "66.249.79.92", "184");
INSERT INTO `wp_rg_form_view` VALUES("7621", "3", "2015-01-14 03:01:22", "68.180.229.33", "332");
INSERT INTO `wp_rg_form_view` VALUES("7622", "3", "2015-01-14 04:00:19", "104.158.10.142", "282");
INSERT INTO `wp_rg_form_view` VALUES("7623", "1", "2015-01-14 04:09:21", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("7624", "3", "2015-01-14 05:06:16", "66.249.79.76", "1884");
INSERT INTO `wp_rg_form_view` VALUES("7625", "6", "2015-01-14 05:28:07", "62.210.82.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("7626", "2", "2015-01-14 05:28:37", "62.210.82.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("7627", "1", "2015-01-14 05:28:39", "62.210.82.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("7628", "3", "2015-01-14 06:00:33", "66.249.79.76", "236");
INSERT INTO `wp_rg_form_view` VALUES("7629", "3", "2015-01-14 07:02:46", "66.249.79.92", "2762");
INSERT INTO `wp_rg_form_view` VALUES("7630", "6", "2015-01-14 07:34:23", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7631", "3", "2015-01-14 08:00:05", "66.249.79.76", "1204");
INSERT INTO `wp_rg_form_view` VALUES("7632", "2", "2015-01-14 08:23:00", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("7633", "6", "2015-01-14 08:45:44", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("7634", "3", "2015-01-14 09:00:27", "66.249.79.84", "4132");
INSERT INTO `wp_rg_form_view` VALUES("7635", "6", "2015-01-14 09:25:28", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7636", "3", "2015-01-14 10:00:08", "66.249.79.76", "1945");
INSERT INTO `wp_rg_form_view` VALUES("7637", "6", "2015-01-14 10:00:09", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7638", "3", "2015-01-14 11:00:02", "66.249.79.76", "2487");
INSERT INTO `wp_rg_form_view` VALUES("7639", "3", "2015-01-14 12:00:18", "66.249.79.84", "2529");
INSERT INTO `wp_rg_form_view` VALUES("7640", "6", "2015-01-14 12:31:53", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("7641", "3", "2015-01-14 13:36:18", "66.249.79.76", "42");
INSERT INTO `wp_rg_form_view` VALUES("7642", "3", "2015-01-14 14:04:22", "68.180.229.33", "140");
INSERT INTO `wp_rg_form_view` VALUES("7643", "1", "2015-01-14 14:05:58", "5.53.168.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("7644", "3", "2015-01-14 15:02:46", "188.165.15.227", "965");
INSERT INTO `wp_rg_form_view` VALUES("7645", "6", "2015-01-14 15:40:51", "66.249.79.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("7646", "3", "2015-01-14 16:00:04", "66.249.79.92", "1429");
INSERT INTO `wp_rg_form_view` VALUES("7647", "3", "2015-01-14 17:00:08", "66.249.79.92", "1094");
INSERT INTO `wp_rg_form_view` VALUES("7648", "1", "2015-01-14 17:02:28", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("7649", "3", "2015-01-14 18:00:19", "66.249.79.92", "1423");
INSERT INTO `wp_rg_form_view` VALUES("7650", "3", "2015-01-14 19:00:52", "66.249.79.76", "676");
INSERT INTO `wp_rg_form_view` VALUES("7651", "3", "2015-01-14 20:00:55", "66.249.79.76", "302");
INSERT INTO `wp_rg_form_view` VALUES("7652", "3", "2015-01-14 21:07:44", "66.249.79.84", "1276");
INSERT INTO `wp_rg_form_view` VALUES("7653", "3", "2015-01-14 22:00:47", "66.249.79.84", "912");
INSERT INTO `wp_rg_form_view` VALUES("7654", "3", "2015-01-14 23:02:45", "66.249.79.92", "376");
INSERT INTO `wp_rg_form_view` VALUES("7655", "3", "2015-01-15 00:00:04", "66.249.79.84", "962");
INSERT INTO `wp_rg_form_view` VALUES("7656", "6", "2015-01-15 00:24:56", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("7657", "3", "2015-01-15 01:00:45", "66.249.79.76", "541");
INSERT INTO `wp_rg_form_view` VALUES("7658", "3", "2015-01-15 02:00:05", "202.46.62.53", "946");
INSERT INTO `wp_rg_form_view` VALUES("7659", "2", "2015-01-15 02:46:57", "204.44.91.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("7660", "6", "2015-01-15 02:56:49", "188.165.15.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("7661", "3", "2015-01-15 03:00:00", "66.249.79.84", "886");
INSERT INTO `wp_rg_form_view` VALUES("7662", "3", "2015-01-15 04:01:13", "66.249.79.84", "1468");
INSERT INTO `wp_rg_form_view` VALUES("7663", "3", "2015-01-15 05:01:37", "188.165.15.187", "112");
INSERT INTO `wp_rg_form_view` VALUES("7664", "3", "2015-01-15 06:07:13", "68.180.229.33", "261");
INSERT INTO `wp_rg_form_view` VALUES("7665", "6", "2015-01-15 06:11:25", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("7666", "1", "2015-01-15 06:18:33", "62.210.93.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("7667", "2", "2015-01-15 06:52:27", "192.3.166.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("7668", "2", "2015-01-15 07:22:09", "192.3.166.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("7669", "3", "2015-01-15 07:22:09", "192.3.166.40", "56");
INSERT INTO `wp_rg_form_view` VALUES("7670", "3", "2015-01-15 08:12:45", "202.46.48.152", "275");
INSERT INTO `wp_rg_form_view` VALUES("7671", "2", "2015-01-15 09:09:08", "167.160.107.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("7672", "3", "2015-01-15 09:09:08", "167.160.107.81", "182");
INSERT INTO `wp_rg_form_view` VALUES("7673", "6", "2015-01-15 09:10:18", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("7674", "3", "2015-01-15 10:15:35", "192.187.127.122", "42");
INSERT INTO `wp_rg_form_view` VALUES("7675", "3", "2015-01-15 11:12:37", "66.249.79.76", "28");
INSERT INTO `wp_rg_form_view` VALUES("7676", "2", "2015-01-15 11:31:20", "69.12.65.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("7677", "3", "2015-01-15 12:15:04", "202.46.63.209", "264");
INSERT INTO `wp_rg_form_view` VALUES("7678", "2", "2015-01-15 12:35:30", "167.160.112.224", "3");
INSERT INTO `wp_rg_form_view` VALUES("7679", "3", "2015-01-15 13:37:27", "2.91.246.229", "29");
INSERT INTO `wp_rg_form_view` VALUES("7680", "2", "2015-01-15 13:56:25", "155.94.132.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("7681", "3", "2015-01-15 14:34:17", "167.160.107.6", "132");
INSERT INTO `wp_rg_form_view` VALUES("7682", "3", "2015-01-15 15:28:14", "202.46.61.105", "60");
INSERT INTO `wp_rg_form_view` VALUES("7683", "3", "2015-01-15 16:01:13", "8.28.16.254", "654");
INSERT INTO `wp_rg_form_view` VALUES("7684", "3", "2015-01-15 17:07:25", "204.44.83.151", "214");
INSERT INTO `wp_rg_form_view` VALUES("7685", "2", "2015-01-15 17:31:41", "202.46.62.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("7686", "3", "2015-01-15 18:00:44", "66.249.79.92", "1173");
INSERT INTO `wp_rg_form_view` VALUES("7687", "6", "2015-01-15 18:48:20", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7688", "3", "2015-01-15 19:00:00", "66.249.79.76", "1005");
INSERT INTO `wp_rg_form_view` VALUES("7689", "2", "2015-01-15 19:40:10", "23.89.160.199", "3");
INSERT INTO `wp_rg_form_view` VALUES("7690", "3", "2015-01-15 20:00:32", "66.249.79.92", "2137");
INSERT INTO `wp_rg_form_view` VALUES("7691", "2", "2015-01-15 20:30:16", "213.238.175.29", "3");
INSERT INTO `wp_rg_form_view` VALUES("7692", "6", "2015-01-15 20:50:06", "66.249.79.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("7693", "3", "2015-01-15 21:09:18", "202.46.63.68", "316");
INSERT INTO `wp_rg_form_view` VALUES("7694", "3", "2015-01-15 22:27:48", "66.249.79.92", "970");
INSERT INTO `wp_rg_form_view` VALUES("7695", "3", "2015-01-15 23:01:43", "66.249.79.76", "1054");
INSERT INTO `wp_rg_form_view` VALUES("7696", "2", "2015-01-15 23:26:21", "198.12.74.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("7697", "3", "2015-01-16 00:00:02", "66.249.79.84", "1784");
INSERT INTO `wp_rg_form_view` VALUES("7698", "1", "2015-01-16 00:39:37", "174.127.133.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("7699", "2", "2015-01-16 00:42:23", "174.127.133.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("7700", "6", "2015-01-16 00:50:22", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7701", "3", "2015-01-16 01:00:13", "66.249.79.84", "1362");
INSERT INTO `wp_rg_form_view` VALUES("7702", "2", "2015-01-16 01:09:35", "107.183.229.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("7703", "1", "2015-01-16 01:16:21", "174.127.133.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("7704", "3", "2015-01-16 02:00:57", "66.249.79.92", "504");
INSERT INTO `wp_rg_form_view` VALUES("7705", "3", "2015-01-16 03:00:47", "66.249.79.84", "656");
INSERT INTO `wp_rg_form_view` VALUES("7706", "2", "2015-01-16 03:02:27", "167.160.112.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("7707", "3", "2015-01-16 04:01:16", "167.160.107.6", "112");
INSERT INTO `wp_rg_form_view` VALUES("7708", "2", "2015-01-16 04:46:03", "23.94.79.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("7709", "3", "2015-01-16 05:04:06", "204.44.83.184", "237");
INSERT INTO `wp_rg_form_view` VALUES("7710", "1", "2015-01-16 05:05:18", "75.156.75.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("7711", "3", "2015-01-16 06:03:31", "66.249.79.76", "860");
INSERT INTO `wp_rg_form_view` VALUES("7712", "2", "2015-01-16 06:31:26", "107.161.85.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("7713", "3", "2015-01-16 07:00:18", "66.249.79.92", "738");
INSERT INTO `wp_rg_form_view` VALUES("7714", "3", "2015-01-16 08:01:28", "66.249.79.84", "758");
INSERT INTO `wp_rg_form_view` VALUES("7715", "6", "2015-01-16 08:34:47", "68.180.229.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("7716", "3", "2015-01-16 09:11:05", "204.44.113.222", "56");
INSERT INTO `wp_rg_form_view` VALUES("7717", "3", "2015-01-16 10:01:07", "66.249.79.92", "271");
INSERT INTO `wp_rg_form_view` VALUES("7718", "2", "2015-01-16 10:11:44", "23.89.160.147", "5");
INSERT INTO `wp_rg_form_view` VALUES("7719", "3", "2015-01-16 11:20:01", "66.249.79.84", "96");
INSERT INTO `wp_rg_form_view` VALUES("7720", "2", "2015-01-16 11:57:06", "23.95.21.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("7721", "3", "2015-01-16 12:07:21", "188.165.15.212", "255");
INSERT INTO `wp_rg_form_view` VALUES("7722", "3", "2015-01-16 13:11:45", "202.46.61.105", "80");
INSERT INTO `wp_rg_form_view` VALUES("7723", "2", "2015-01-16 13:59:22", "155.94.132.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("7724", "3", "2015-01-16 14:06:19", "66.249.79.76", "98");
INSERT INTO `wp_rg_form_view` VALUES("7725", "3", "2015-01-16 15:18:14", "198.12.74.212", "76");
INSERT INTO `wp_rg_form_view` VALUES("7726", "3", "2015-01-16 16:03:12", "100.43.85.24", "74");
INSERT INTO `wp_rg_form_view` VALUES("7727", "2", "2015-01-16 16:10:40", "155.94.132.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("7728", "3", "2015-01-16 17:06:40", "66.249.79.92", "774");
INSERT INTO `wp_rg_form_view` VALUES("7729", "3", "2015-01-16 18:00:37", "66.249.79.84", "362");
INSERT INTO `wp_rg_form_view` VALUES("7730", "3", "2015-01-16 19:00:50", "66.249.79.76", "405");
INSERT INTO `wp_rg_form_view` VALUES("7731", "3", "2015-01-16 20:01:05", "66.249.79.76", "184");
INSERT INTO `wp_rg_form_view` VALUES("7732", "3", "2015-01-16 21:00:09", "66.249.79.76", "182");
INSERT INTO `wp_rg_form_view` VALUES("7733", "3", "2015-01-16 22:15:19", "66.249.79.76", "200");
INSERT INTO `wp_rg_form_view` VALUES("7734", "3", "2015-01-16 23:00:15", "66.249.79.76", "1548");
INSERT INTO `wp_rg_form_view` VALUES("7735", "3", "2015-01-17 00:02:17", "70.67.81.5", "128");
INSERT INTO `wp_rg_form_view` VALUES("7736", "3", "2015-01-17 01:11:31", "192.187.127.122", "202");
INSERT INTO `wp_rg_form_view` VALUES("7737", "3", "2015-01-17 02:00:12", "66.249.79.84", "310");
INSERT INTO `wp_rg_form_view` VALUES("7738", "3", "2015-01-17 03:00:57", "66.249.79.92", "178");
INSERT INTO `wp_rg_form_view` VALUES("7739", "3", "2015-01-17 04:13:00", "74.91.23.52", "216");
INSERT INTO `wp_rg_form_view` VALUES("7740", "3", "2015-01-17 05:05:50", "66.249.79.92", "140");
INSERT INTO `wp_rg_form_view` VALUES("7741", "3", "2015-01-17 06:01:14", "66.249.79.76", "252");
INSERT INTO `wp_rg_form_view` VALUES("7742", "3", "2015-01-17 07:05:49", "66.249.79.76", "248");
INSERT INTO `wp_rg_form_view` VALUES("7743", "3", "2015-01-17 08:29:45", "66.249.79.92", "328");
INSERT INTO `wp_rg_form_view` VALUES("7744", "2", "2015-01-17 08:53:32", "155.94.132.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("7745", "3", "2015-01-17 09:00:04", "66.249.79.92", "238");
INSERT INTO `wp_rg_form_view` VALUES("7746", "3", "2015-01-17 10:01:11", "66.249.79.84", "182");
INSERT INTO `wp_rg_form_view` VALUES("7747", "3", "2015-01-17 11:00:55", "66.249.79.92", "184");
INSERT INTO `wp_rg_form_view` VALUES("7748", "2", "2015-01-17 11:02:58", "202.46.62.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("7749", "3", "2015-01-17 12:08:49", "188.165.15.212", "134");
INSERT INTO `wp_rg_form_view` VALUES("7750", "3", "2015-01-17 13:03:17", "192.187.127.122", "80");
INSERT INTO `wp_rg_form_view` VALUES("7751", "3", "2015-01-17 14:14:23", "202.46.50.37", "78");
INSERT INTO `wp_rg_form_view` VALUES("7752", "3", "2015-01-17 15:18:02", "204.44.83.184", "205");
INSERT INTO `wp_rg_form_view` VALUES("7753", "3", "2015-01-17 16:00:30", "66.249.79.76", "320");
INSERT INTO `wp_rg_form_view` VALUES("7754", "3", "2015-01-17 17:01:15", "66.249.79.92", "216");
INSERT INTO `wp_rg_form_view` VALUES("7755", "1", "2015-01-17 17:37:45", "62.210.93.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("7756", "3", "2015-01-17 18:02:13", "204.44.83.151", "288");
INSERT INTO `wp_rg_form_view` VALUES("7757", "3", "2015-01-17 19:03:54", "202.46.63.207", "257");
INSERT INTO `wp_rg_form_view` VALUES("7758", "2", "2015-01-17 19:20:03", "167.160.112.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("7759", "3", "2015-01-17 20:11:00", "69.12.65.82", "197");
INSERT INTO `wp_rg_form_view` VALUES("7760", "3", "2015-01-17 21:00:00", "192.187.127.122", "312");
INSERT INTO `wp_rg_form_view` VALUES("7761", "3", "2015-01-17 22:02:51", "69.12.65.52", "260");
INSERT INTO `wp_rg_form_view` VALUES("7762", "3", "2015-01-17 23:01:16", "66.249.79.76", "358");
INSERT INTO `wp_rg_form_view` VALUES("7763", "3", "2015-01-18 00:05:17", "66.249.79.76", "512");
INSERT INTO `wp_rg_form_view` VALUES("7764", "3", "2015-01-18 01:40:05", "220.181.108.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("7765", "3", "2015-01-18 02:13:22", "220.181.108.186", "382");
INSERT INTO `wp_rg_form_view` VALUES("7766", "6", "2015-01-18 02:26:37", "199.72.16.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("7767", "1", "2015-01-18 02:28:33", "199.72.16.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("7768", "2", "2015-01-18 02:29:11", "199.72.16.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("7769", "3", "2015-01-18 03:05:14", "68.180.229.33", "138");
INSERT INTO `wp_rg_form_view` VALUES("7770", "3", "2015-01-18 04:01:42", "202.46.50.128", "144");
INSERT INTO `wp_rg_form_view` VALUES("7771", "3", "2015-01-18 05:05:08", "66.249.79.76", "430");
INSERT INTO `wp_rg_form_view` VALUES("7772", "3", "2015-01-18 06:00:45", "66.249.79.76", "1720");
INSERT INTO `wp_rg_form_view` VALUES("7773", "2", "2015-01-18 06:22:58", "194.58.61.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("7774", "6", "2015-01-18 06:36:42", "120.202.249.203", "2");
INSERT INTO `wp_rg_form_view` VALUES("7775", "3", "2015-01-18 07:14:01", "77.174.247.250", "2780");
INSERT INTO `wp_rg_form_view` VALUES("7776", "6", "2015-01-18 07:20:49", "200.18.5.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("7777", "2", "2015-01-18 07:21:37", "200.18.5.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("7778", "1", "2015-01-18 07:23:44", "216.86.146.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("7779", "3", "2015-01-18 08:00:03", "171.97.148.243", "2329");
INSERT INTO `wp_rg_form_view` VALUES("7780", "1", "2015-01-18 08:03:26", "171.97.148.243", "4");
INSERT INTO `wp_rg_form_view` VALUES("7781", "6", "2015-01-18 08:43:15", "124.122.60.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("7782", "2", "2015-01-18 08:45:22", "124.122.60.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("7783", "3", "2015-01-18 09:08:11", "77.58.224.171", "4013");
INSERT INTO `wp_rg_form_view` VALUES("7784", "1", "2015-01-18 09:20:27", "93.63.195.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("7785", "2", "2015-01-18 09:20:52", "93.63.195.196", "4");
INSERT INTO `wp_rg_form_view` VALUES("7786", "6", "2015-01-18 09:22:58", "145.97.196.166", "2");
INSERT INTO `wp_rg_form_view` VALUES("7787", "3", "2015-01-18 10:01:29", "162.243.108.121", "2497");
INSERT INTO `wp_rg_form_view` VALUES("7788", "1", "2015-01-18 10:31:52", "49.156.36.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("7789", "2", "2015-01-18 10:32:29", "49.156.36.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("7790", "3", "2015-01-18 11:16:32", "93.63.195.196", "1401");
INSERT INTO `wp_rg_form_view` VALUES("7791", "1", "2015-01-18 11:19:56", "93.63.195.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("7792", "3", "2015-01-18 12:02:18", "192.187.127.122", "1985");
INSERT INTO `wp_rg_form_view` VALUES("7793", "6", "2015-01-18 12:18:25", "207.236.194.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("7794", "2", "2015-01-18 12:23:16", "207.236.194.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("7795", "1", "2015-01-18 12:23:37", "207.236.194.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("7796", "3", "2015-01-18 13:01:35", "2.139.253.147", "1348");
INSERT INTO `wp_rg_form_view` VALUES("7797", "1", "2015-01-18 13:05:56", "2.139.253.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("7798", "2", "2015-01-18 13:07:10", "2.139.253.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("7799", "6", "2015-01-18 13:16:26", "188.165.15.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("7800", "3", "2015-01-18 14:00:03", "210.128.72.155", "916");
INSERT INTO `wp_rg_form_view` VALUES("7801", "2", "2015-01-18 14:02:11", "210.128.72.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("7802", "3", "2015-01-18 15:06:46", "201.242.48.241", "2617");
INSERT INTO `wp_rg_form_view` VALUES("7803", "1", "2015-01-18 15:11:46", "201.242.48.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("7804", "2", "2015-01-18 15:12:19", "201.242.48.241", "2");
INSERT INTO `wp_rg_form_view` VALUES("7805", "3", "2015-01-18 16:14:42", "202.46.49.129", "1768");
INSERT INTO `wp_rg_form_view` VALUES("7806", "6", "2015-01-18 16:21:20", "201.49.212.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("7807", "2", "2015-01-18 16:22:14", "201.49.212.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("7808", "1", "2015-01-18 16:22:20", "201.49.212.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("7809", "3", "2015-01-18 17:00:01", "125.143.70.211", "691");
INSERT INTO `wp_rg_form_view` VALUES("7810", "6", "2015-01-18 17:10:14", "92.85.57.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("7811", "3", "2015-01-18 18:00:15", "192.3.166.225", "1599");
INSERT INTO `wp_rg_form_view` VALUES("7812", "1", "2015-01-18 18:15:19", "201.211.100.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("7813", "2", "2015-01-18 18:49:21", "37.187.152.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("7814", "3", "2015-01-18 19:01:50", "66.249.79.92", "1543");
INSERT INTO `wp_rg_form_view` VALUES("7815", "6", "2015-01-18 19:45:48", "66.249.79.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("7816", "3", "2015-01-18 20:00:00", "162.243.54.225", "9804");
INSERT INTO `wp_rg_form_view` VALUES("7817", "1", "2015-01-18 20:05:08", "162.243.54.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("7818", "6", "2015-01-18 20:19:55", "195.50.10.23", "3");
INSERT INTO `wp_rg_form_view` VALUES("7819", "2", "2015-01-18 20:20:49", "195.50.10.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("7820", "3", "2015-01-18 21:00:00", "162.243.54.225", "2918");
INSERT INTO `wp_rg_form_view` VALUES("7821", "2", "2015-01-18 21:06:04", "186.89.208.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("7822", "3", "2015-01-18 22:25:03", "68.180.229.33", "658");
INSERT INTO `wp_rg_form_view` VALUES("7823", "2", "2015-01-18 22:36:51", "190.204.118.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("7824", "3", "2015-01-18 23:07:19", "192.187.127.122", "174");
INSERT INTO `wp_rg_form_view` VALUES("7825", "3", "2015-01-19 00:00:47", "202.46.62.203", "1821");
INSERT INTO `wp_rg_form_view` VALUES("7826", "2", "2015-01-19 00:26:02", "131.0.116.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("7827", "3", "2015-01-19 01:10:43", "202.46.49.197", "700");
INSERT INTO `wp_rg_form_view` VALUES("7828", "1", "2015-01-19 01:43:17", "190.75.33.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("7829", "3", "2015-01-19 02:02:03", "186.93.96.187", "875");
INSERT INTO `wp_rg_form_view` VALUES("7830", "2", "2015-01-19 02:32:42", "107.161.85.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("7831", "3", "2015-01-19 03:05:51", "66.249.79.92", "245");
INSERT INTO `wp_rg_form_view` VALUES("7832", "3", "2015-01-19 04:09:11", "120.59.97.136", "221");
INSERT INTO `wp_rg_form_view` VALUES("7833", "1", "2015-01-19 04:12:56", "198.211.106.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("7834", "2", "2015-01-19 04:12:56", "198.211.106.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("7835", "3", "2015-01-19 05:11:20", "23.95.21.217", "182");
INSERT INTO `wp_rg_form_view` VALUES("7836", "3", "2015-01-19 06:05:42", "66.249.79.76", "266");
INSERT INTO `wp_rg_form_view` VALUES("7837", "3", "2015-01-19 07:01:35", "66.249.79.92", "642");
INSERT INTO `wp_rg_form_view` VALUES("7838", "3", "2015-01-19 08:00:26", "66.249.79.92", "616");
INSERT INTO `wp_rg_form_view` VALUES("7839", "2", "2015-01-19 08:44:34", "192.3.166.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("7840", "3", "2015-01-19 09:01:33", "68.180.229.33", "327");
INSERT INTO `wp_rg_form_view` VALUES("7841", "2", "2015-01-19 09:21:45", "167.160.110.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("7842", "3", "2015-01-19 10:47:45", "208.115.113.83", "14");
INSERT INTO `wp_rg_form_view` VALUES("7843", "3", "2015-01-19 11:12:37", "66.249.79.84", "70");
INSERT INTO `wp_rg_form_view` VALUES("7844", "3", "2015-01-19 12:05:32", "66.249.79.76", "84");
INSERT INTO `wp_rg_form_view` VALUES("7845", "3", "2015-01-19 13:02:40", "66.249.79.76", "112");
INSERT INTO `wp_rg_form_view` VALUES("7846", "6", "2015-01-19 13:12:18", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("7847", "3", "2015-01-19 14:27:42", "66.249.79.76", "234");
INSERT INTO `wp_rg_form_view` VALUES("7848", "3", "2015-01-19 15:02:40", "66.249.79.76", "113");
INSERT INTO `wp_rg_form_view` VALUES("7849", "3", "2015-01-19 16:33:46", "205.211.144.167", "138");
INSERT INTO `wp_rg_form_view` VALUES("7850", "3", "2015-01-19 17:00:55", "205.211.144.167", "16");
INSERT INTO `wp_rg_form_view` VALUES("7851", "3", "2015-01-19 18:10:12", "96.54.204.94", "182");
INSERT INTO `wp_rg_form_view` VALUES("7852", "3", "2015-01-19 19:29:25", "202.46.49.188", "14");
INSERT INTO `wp_rg_form_view` VALUES("7853", "3", "2015-01-19 20:00:01", "66.249.79.76", "574");
INSERT INTO `wp_rg_form_view` VALUES("7854", "3", "2015-01-19 21:00:31", "66.249.79.84", "128");
INSERT INTO `wp_rg_form_view` VALUES("7855", "3", "2015-01-19 22:15:32", "66.249.79.76", "332");
INSERT INTO `wp_rg_form_view` VALUES("7856", "3", "2015-01-19 23:01:01", "66.249.79.92", "164");
INSERT INTO `wp_rg_form_view` VALUES("7857", "6", "2015-01-19 23:16:14", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7858", "3", "2015-01-20 00:19:13", "66.249.79.76", "70");
INSERT INTO `wp_rg_form_view` VALUES("7859", "3", "2015-01-20 01:02:09", "66.249.79.92", "255");
INSERT INTO `wp_rg_form_view` VALUES("7860", "3", "2015-01-20 02:14:33", "78.85.78.151", "220");
INSERT INTO `wp_rg_form_view` VALUES("7861", "3", "2015-01-20 03:48:48", "66.249.79.92", "70");
INSERT INTO `wp_rg_form_view` VALUES("7862", "1", "2015-01-20 04:11:13", "96.50.14.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("7863", "3", "2015-01-20 04:11:13", "96.50.14.252", "263");
INSERT INTO `wp_rg_form_view` VALUES("7864", "2", "2015-01-20 04:54:29", "107.183.229.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("7865", "3", "2015-01-20 05:13:47", "66.249.79.92", "108");
INSERT INTO `wp_rg_form_view` VALUES("7866", "6", "2015-01-20 05:29:36", "66.249.79.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("7867", "3", "2015-01-20 06:00:49", "220.181.108.174", "304");
INSERT INTO `wp_rg_form_view` VALUES("7868", "2", "2015-01-20 07:02:37", "23.89.160.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("7869", "3", "2015-01-20 07:02:37", "23.89.160.51", "266");
INSERT INTO `wp_rg_form_view` VALUES("7870", "3", "2015-01-20 08:06:23", "107.182.125.47", "1218");
INSERT INTO `wp_rg_form_view` VALUES("7871", "3", "2015-01-20 09:00:06", "66.249.79.76", "462");
INSERT INTO `wp_rg_form_view` VALUES("7872", "3", "2015-01-20 10:01:29", "66.249.79.76", "1002");
INSERT INTO `wp_rg_form_view` VALUES("7873", "3", "2015-01-20 11:00:51", "66.249.79.92", "786");
INSERT INTO `wp_rg_form_view` VALUES("7874", "3", "2015-01-20 12:01:05", "66.249.79.92", "144");
INSERT INTO `wp_rg_form_view` VALUES("7875", "3", "2015-01-20 13:03:19", "66.249.79.84", "96");
INSERT INTO `wp_rg_form_view` VALUES("7876", "3", "2015-01-20 14:07:02", "202.46.49.194", "383");
INSERT INTO `wp_rg_form_view` VALUES("7877", "3", "2015-01-20 15:01:04", "66.249.79.92", "324");
INSERT INTO `wp_rg_form_view` VALUES("7878", "1", "2015-01-20 16:00:05", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7879", "3", "2015-01-20 16:00:05", "66.249.79.76", "499");
INSERT INTO `wp_rg_form_view` VALUES("7880", "2", "2015-01-20 16:33:03", "104.37.56.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("7881", "3", "2015-01-20 17:01:24", "66.249.79.84", "1092");
INSERT INTO `wp_rg_form_view` VALUES("7882", "3", "2015-01-20 18:00:07", "66.249.79.84", "1858");
INSERT INTO `wp_rg_form_view` VALUES("7883", "3", "2015-01-20 19:00:09", "66.249.79.76", "666");
INSERT INTO `wp_rg_form_view` VALUES("7884", "6", "2015-01-20 20:00:04", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("7885", "3", "2015-01-20 20:00:04", "100.43.85.24", "250");
INSERT INTO `wp_rg_form_view` VALUES("7886", "3", "2015-01-20 21:07:45", "68.180.229.33", "758");
INSERT INTO `wp_rg_form_view` VALUES("7887", "6", "2015-01-20 21:55:12", "104.152.191.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("7888", "1", "2015-01-20 21:56:59", "104.152.191.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("7889", "2", "2015-01-20 21:57:21", "104.152.191.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("7890", "3", "2015-01-20 22:00:44", "66.249.79.76", "240");
INSERT INTO `wp_rg_form_view` VALUES("7891", "3", "2015-01-20 23:00:47", "66.249.79.84", "534");
INSERT INTO `wp_rg_form_view` VALUES("7892", "3", "2015-01-21 00:00:49", "66.249.79.76", "4323");
INSERT INTO `wp_rg_form_view` VALUES("7893", "1", "2015-01-21 00:12:11", "24.69.68.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("7894", "3", "2015-01-21 01:00:00", "66.249.79.84", "6122");
INSERT INTO `wp_rg_form_view` VALUES("7895", "3", "2015-01-21 02:00:00", "66.249.79.76", "6322");
INSERT INTO `wp_rg_form_view` VALUES("7896", "3", "2015-01-21 03:00:00", "66.249.79.92", "5851");
INSERT INTO `wp_rg_form_view` VALUES("7897", "6", "2015-01-21 03:55:45", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7898", "3", "2015-01-21 04:00:06", "66.249.79.76", "5584");
INSERT INTO `wp_rg_form_view` VALUES("7899", "6", "2015-01-21 04:24:19", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("7900", "3", "2015-01-21 05:00:01", "66.249.79.84", "5867");
INSERT INTO `wp_rg_form_view` VALUES("7901", "6", "2015-01-21 05:38:07", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7902", "3", "2015-01-21 06:00:00", "66.249.79.84", "6430");
INSERT INTO `wp_rg_form_view` VALUES("7903", "2", "2015-01-21 06:42:03", "167.160.107.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("7904", "6", "2015-01-21 06:46:45", "66.249.79.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("7905", "3", "2015-01-21 07:00:01", "69.199.12.146", "6157");
INSERT INTO `wp_rg_form_view` VALUES("7906", "1", "2015-01-21 07:00:13", "69.199.12.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("7907", "2", "2015-01-21 07:00:26", "69.199.12.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("7908", "3", "2015-01-21 08:00:00", "66.249.79.92", "6079");
INSERT INTO `wp_rg_form_view` VALUES("7909", "3", "2015-01-21 09:00:00", "66.249.79.84", "5608");
INSERT INTO `wp_rg_form_view` VALUES("7910", "3", "2015-01-21 10:00:04", "66.249.79.76", "6370");
INSERT INTO `wp_rg_form_view` VALUES("7911", "3", "2015-01-21 11:00:03", "66.249.79.92", "6173");
INSERT INTO `wp_rg_form_view` VALUES("7912", "6", "2015-01-21 11:41:00", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7913", "3", "2015-01-21 12:00:00", "66.249.79.76", "6091");
INSERT INTO `wp_rg_form_view` VALUES("7914", "3", "2015-01-21 13:00:02", "66.249.79.76", "4833");
INSERT INTO `wp_rg_form_view` VALUES("7915", "3", "2015-01-21 14:00:41", "66.249.79.84", "4779");
INSERT INTO `wp_rg_form_view` VALUES("7916", "3", "2015-01-21 15:00:00", "66.249.79.76", "6153");
INSERT INTO `wp_rg_form_view` VALUES("7917", "3", "2015-01-21 16:00:02", "66.249.79.92", "6303");
INSERT INTO `wp_rg_form_view` VALUES("7918", "6", "2015-01-21 16:14:03", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7919", "3", "2015-01-21 17:00:00", "66.249.79.92", "5802");
INSERT INTO `wp_rg_form_view` VALUES("7920", "3", "2015-01-21 18:00:00", "66.249.67.84", "6357");
INSERT INTO `wp_rg_form_view` VALUES("7921", "3", "2015-01-21 19:00:00", "66.249.67.92", "6019");
INSERT INTO `wp_rg_form_view` VALUES("7922", "3", "2015-01-21 20:00:02", "66.249.67.84", "5370");
INSERT INTO `wp_rg_form_view` VALUES("7923", "3", "2015-01-21 21:00:00", "66.249.67.84", "6036");
INSERT INTO `wp_rg_form_view` VALUES("7924", "6", "2015-01-21 21:27:33", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7925", "3", "2015-01-21 22:00:00", "66.249.67.76", "5819");
INSERT INTO `wp_rg_form_view` VALUES("7926", "3", "2015-01-21 23:00:00", "66.249.67.92", "6157");
INSERT INTO `wp_rg_form_view` VALUES("7927", "3", "2015-01-22 00:00:00", "66.249.67.76", "6620");
INSERT INTO `wp_rg_form_view` VALUES("7928", "3", "2015-01-22 01:00:00", "66.249.67.92", "3980");
INSERT INTO `wp_rg_form_view` VALUES("7929", "6", "2015-01-22 01:35:56", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("7930", "3", "2015-01-22 02:01:13", "66.249.67.84", "448");
INSERT INTO `wp_rg_form_view` VALUES("7931", "3", "2015-01-22 03:00:37", "66.249.67.84", "7923");
INSERT INTO `wp_rg_form_view` VALUES("7932", "1", "2015-01-22 03:09:35", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("7933", "3", "2015-01-22 04:00:00", "66.249.67.84", "5999");
INSERT INTO `wp_rg_form_view` VALUES("7934", "3", "2015-01-22 05:00:03", "66.249.67.92", "6424");
INSERT INTO `wp_rg_form_view` VALUES("7935", "6", "2015-01-22 05:07:18", "66.249.67.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("7936", "2", "2015-01-22 05:54:10", "193.201.224.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("7937", "3", "2015-01-22 06:00:03", "66.249.67.76", "7064");
INSERT INTO `wp_rg_form_view` VALUES("7938", "2", "2015-01-22 06:14:19", "91.108.182.82", "5");
INSERT INTO `wp_rg_form_view` VALUES("7939", "6", "2015-01-22 06:48:22", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7940", "3", "2015-01-22 07:00:00", "66.249.67.76", "6561");
INSERT INTO `wp_rg_form_view` VALUES("7941", "6", "2015-01-22 07:24:58", "66.249.67.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("7942", "3", "2015-01-22 08:00:00", "66.249.67.76", "6276");
INSERT INTO `wp_rg_form_view` VALUES("7943", "2", "2015-01-22 08:02:46", "5.157.36.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("7944", "3", "2015-01-22 09:00:00", "66.249.67.92", "5978");
INSERT INTO `wp_rg_form_view` VALUES("7945", "2", "2015-01-22 09:43:52", "178.216.54.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("7946", "3", "2015-01-22 10:00:08", "66.249.67.76", "7108");
INSERT INTO `wp_rg_form_view` VALUES("7947", "6", "2015-01-22 10:14:45", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("7948", "3", "2015-01-22 11:00:07", "66.249.67.76", "6563");
INSERT INTO `wp_rg_form_view` VALUES("7949", "2", "2015-01-22 11:24:56", "37.203.208.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("7950", "3", "2015-01-22 12:00:00", "66.249.67.84", "6754");
INSERT INTO `wp_rg_form_view` VALUES("7951", "6", "2015-01-22 12:11:33", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("7952", "3", "2015-01-22 13:00:01", "66.249.67.76", "3368");
INSERT INTO `wp_rg_form_view` VALUES("7953", "2", "2015-01-22 13:32:07", "66.249.67.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("7954", "3", "2015-01-22 14:00:50", "66.249.67.92", "3604");
INSERT INTO `wp_rg_form_view` VALUES("7955", "3", "2015-01-22 15:00:30", "66.249.67.92", "6689");
INSERT INTO `wp_rg_form_view` VALUES("7956", "3", "2015-01-22 16:00:00", "66.249.67.76", "6505");
INSERT INTO `wp_rg_form_view` VALUES("7957", "1", "2015-01-22 16:48:51", "220.181.108.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("7958", "3", "2015-01-22 17:00:03", "66.249.67.76", "6495");
INSERT INTO `wp_rg_form_view` VALUES("7959", "2", "2015-01-22 17:10:49", "65.111.164.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("7960", "3", "2015-01-22 18:00:00", "66.249.67.92", "7048");
INSERT INTO `wp_rg_form_view` VALUES("7961", "3", "2015-01-22 19:00:00", "66.249.67.92", "5930");
INSERT INTO `wp_rg_form_view` VALUES("7962", "3", "2015-01-22 20:00:05", "66.249.67.84", "6474");
INSERT INTO `wp_rg_form_view` VALUES("7963", "3", "2015-01-22 21:00:00", "66.249.67.92", "6750");
INSERT INTO `wp_rg_form_view` VALUES("7964", "3", "2015-01-22 22:00:00", "66.249.67.92", "6790");
INSERT INTO `wp_rg_form_view` VALUES("7965", "3", "2015-01-22 23:00:00", "66.249.67.76", "6529");
INSERT INTO `wp_rg_form_view` VALUES("7966", "3", "2015-01-23 00:00:00", "66.249.67.76", "6591");
INSERT INTO `wp_rg_form_view` VALUES("7967", "6", "2015-01-23 00:24:47", "68.180.228.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("7968", "3", "2015-01-23 01:00:06", "66.249.67.76", "1296");
INSERT INTO `wp_rg_form_view` VALUES("7969", "3", "2015-01-23 02:02:38", "184.66.155.69", "648");
INSERT INTO `wp_rg_form_view` VALUES("7970", "2", "2015-01-23 02:54:40", "193.201.224.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("7971", "3", "2015-01-23 03:01:08", "66.249.67.84", "3751");
INSERT INTO `wp_rg_form_view` VALUES("7972", "2", "2015-01-23 03:03:09", "193.201.224.41", "4");
INSERT INTO `wp_rg_form_view` VALUES("7973", "6", "2015-01-23 03:18:14", "81.10.155.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("7974", "1", "2015-01-23 03:18:54", "81.10.155.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("7975", "3", "2015-01-23 04:00:07", "66.249.67.76", "5978");
INSERT INTO `wp_rg_form_view` VALUES("7976", "3", "2015-01-23 05:00:05", "66.249.67.84", "5469");
INSERT INTO `wp_rg_form_view` VALUES("7977", "3", "2015-01-23 06:00:00", "66.249.67.76", "5580");
INSERT INTO `wp_rg_form_view` VALUES("7978", "3", "2015-01-23 07:00:04", "66.249.67.76", "5512");
INSERT INTO `wp_rg_form_view` VALUES("7979", "3", "2015-01-23 08:00:04", "66.249.67.76", "6237");
INSERT INTO `wp_rg_form_view` VALUES("7980", "3", "2015-01-23 09:00:00", "66.249.67.76", "5768");
INSERT INTO `wp_rg_form_view` VALUES("7981", "3", "2015-01-23 10:00:06", "66.249.67.92", "6292");
INSERT INTO `wp_rg_form_view` VALUES("7982", "3", "2015-01-23 11:00:08", "66.249.67.76", "5590");
INSERT INTO `wp_rg_form_view` VALUES("7983", "3", "2015-01-23 12:00:01", "66.249.67.92", "5158");
INSERT INTO `wp_rg_form_view` VALUES("7984", "6", "2015-01-23 12:41:34", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("7985", "3", "2015-01-23 13:00:23", "66.249.67.76", "1318");
INSERT INTO `wp_rg_form_view` VALUES("7986", "3", "2015-01-23 14:10:09", "66.249.67.84", "320");
INSERT INTO `wp_rg_form_view` VALUES("7987", "3", "2015-01-23 15:03:52", "66.249.67.76", "550");
INSERT INTO `wp_rg_form_view` VALUES("7988", "3", "2015-01-23 16:00:33", "66.249.67.84", "746");
INSERT INTO `wp_rg_form_view` VALUES("7989", "6", "2015-01-23 16:53:49", "188.165.15.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("7990", "3", "2015-01-23 17:00:24", "66.249.67.84", "746");
INSERT INTO `wp_rg_form_view` VALUES("7991", "3", "2015-01-23 18:00:09", "66.249.67.84", "1070");
INSERT INTO `wp_rg_form_view` VALUES("7992", "3", "2015-01-23 19:01:09", "66.249.67.84", "2570");
INSERT INTO `wp_rg_form_view` VALUES("7993", "6", "2015-01-23 19:18:49", "66.249.67.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("7994", "1", "2015-01-23 19:29:14", "162.213.42.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("7995", "2", "2015-01-23 19:42:50", "162.213.42.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("7996", "3", "2015-01-23 20:00:04", "66.249.67.92", "1617");
INSERT INTO `wp_rg_form_view` VALUES("7997", "3", "2015-01-23 21:00:48", "68.180.228.245", "143");
INSERT INTO `wp_rg_form_view` VALUES("7998", "2", "2015-01-23 21:44:05", "202.46.48.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("7999", "6", "2015-01-23 21:51:07", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8000", "3", "2015-01-23 22:01:57", "100.43.85.24", "88");
INSERT INTO `wp_rg_form_view` VALUES("8001", "3", "2015-01-23 23:04:17", "207.46.13.110", "16");
INSERT INTO `wp_rg_form_view` VALUES("8002", "3", "2015-01-24 00:07:59", "202.46.62.108", "93");
INSERT INTO `wp_rg_form_view` VALUES("8003", "3", "2015-01-24 01:12:40", "66.249.67.92", "154");
INSERT INTO `wp_rg_form_view` VALUES("8004", "3", "2015-01-24 02:00:22", "66.249.67.76", "859");
INSERT INTO `wp_rg_form_view` VALUES("8005", "3", "2015-01-24 03:01:06", "68.180.228.245", "494");
INSERT INTO `wp_rg_form_view` VALUES("8006", "3", "2015-01-24 04:00:09", "207.81.252.136", "290");
INSERT INTO `wp_rg_form_view` VALUES("8007", "3", "2015-01-24 05:04:17", "66.249.67.76", "276");
INSERT INTO `wp_rg_form_view` VALUES("8008", "3", "2015-01-24 06:20:22", "167.160.107.46", "190");
INSERT INTO `wp_rg_form_view` VALUES("8009", "3", "2015-01-24 07:14:22", "157.55.39.121", "162");
INSERT INTO `wp_rg_form_view` VALUES("8010", "3", "2015-01-24 08:00:28", "66.249.67.84", "646");
INSERT INTO `wp_rg_form_view` VALUES("8011", "3", "2015-01-24 09:00:25", "66.249.67.76", "912");
INSERT INTO `wp_rg_form_view` VALUES("8012", "3", "2015-01-24 10:11:40", "107.183.229.38", "166");
INSERT INTO `wp_rg_form_view` VALUES("8013", "3", "2015-01-24 11:22:49", "68.180.228.245", "72");
INSERT INTO `wp_rg_form_view` VALUES("8014", "3", "2015-01-24 12:02:26", "167.160.112.222", "196");
INSERT INTO `wp_rg_form_view` VALUES("8015", "3", "2015-01-24 13:01:06", "207.46.13.110", "156");
INSERT INTO `wp_rg_form_view` VALUES("8016", "3", "2015-01-24 14:00:37", "66.249.67.92", "1496");
INSERT INTO `wp_rg_form_view` VALUES("8017", "3", "2015-01-24 15:00:28", "66.249.67.76", "5520");
INSERT INTO `wp_rg_form_view` VALUES("8018", "6", "2015-01-24 15:23:23", "208.115.113.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("8019", "3", "2015-01-24 16:00:03", "66.249.67.84", "5452");
INSERT INTO `wp_rg_form_view` VALUES("8020", "3", "2015-01-24 17:00:01", "66.249.67.84", "5345");
INSERT INTO `wp_rg_form_view` VALUES("8021", "3", "2015-01-24 18:00:04", "66.249.67.76", "5536");
INSERT INTO `wp_rg_form_view` VALUES("8022", "3", "2015-01-24 19:00:00", "66.249.67.92", "5154");
INSERT INTO `wp_rg_form_view` VALUES("8023", "3", "2015-01-24 20:00:00", "217.69.133.233", "5280");
INSERT INTO `wp_rg_form_view` VALUES("8024", "6", "2015-01-24 20:04:16", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8025", "3", "2015-01-24 21:00:00", "66.249.67.84", "5428");
INSERT INTO `wp_rg_form_view` VALUES("8026", "3", "2015-01-24 22:00:00", "66.249.67.92", "3296");
INSERT INTO `wp_rg_form_view` VALUES("8027", "3", "2015-01-24 23:10:45", "217.69.133.230", "587");
INSERT INTO `wp_rg_form_view` VALUES("8028", "2", "2015-01-24 23:12:45", "195.154.181.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("8029", "3", "2015-01-25 00:11:32", "66.249.67.76", "44");
INSERT INTO `wp_rg_form_view` VALUES("8030", "3", "2015-01-25 01:16:57", "208.110.84.142", "66");
INSERT INTO `wp_rg_form_view` VALUES("8031", "3", "2015-01-25 02:08:28", "144.76.201.69", "1342");
INSERT INTO `wp_rg_form_view` VALUES("8032", "2", "2015-01-25 02:22:07", "36.248.167.2", "3");
INSERT INTO `wp_rg_form_view` VALUES("8033", "6", "2015-01-25 02:49:17", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8034", "3", "2015-01-25 03:00:35", "66.249.67.76", "1778");
INSERT INTO `wp_rg_form_view` VALUES("8035", "3", "2015-01-25 04:00:00", "66.249.67.76", "2522");
INSERT INTO `wp_rg_form_view` VALUES("8036", "3", "2015-01-25 05:00:08", "66.249.67.84", "2486");
INSERT INTO `wp_rg_form_view` VALUES("8037", "2", "2015-01-25 05:30:24", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("8038", "3", "2015-01-25 06:00:15", "66.249.67.92", "2526");
INSERT INTO `wp_rg_form_view` VALUES("8039", "3", "2015-01-25 07:00:02", "66.249.67.84", "2480");
INSERT INTO `wp_rg_form_view` VALUES("8040", "3", "2015-01-25 08:00:10", "66.249.67.84", "2574");
INSERT INTO `wp_rg_form_view` VALUES("8041", "3", "2015-01-25 09:00:17", "66.249.67.92", "2620");
INSERT INTO `wp_rg_form_view` VALUES("8042", "3", "2015-01-25 10:00:05", "66.249.67.76", "889");
INSERT INTO `wp_rg_form_view` VALUES("8043", "2", "2015-01-25 10:39:45", "167.160.112.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("8044", "3", "2015-01-25 11:05:42", "207.46.13.110", "108");
INSERT INTO `wp_rg_form_view` VALUES("8045", "3", "2015-01-25 12:16:09", "188.165.15.136", "241");
INSERT INTO `wp_rg_form_view` VALUES("8046", "3", "2015-01-25 13:02:04", "142.54.173.19", "266");
INSERT INTO `wp_rg_form_view` VALUES("8047", "3", "2015-01-25 14:01:27", "66.249.67.84", "561");
INSERT INTO `wp_rg_form_view` VALUES("8048", "3", "2015-01-25 15:00:26", "217.69.133.69", "754");
INSERT INTO `wp_rg_form_view` VALUES("8049", "3", "2015-01-25 16:00:09", "66.249.67.92", "623");
INSERT INTO `wp_rg_form_view` VALUES("8050", "6", "2015-01-25 16:24:14", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8051", "3", "2015-01-25 17:00:58", "66.249.67.92", "1064");
INSERT INTO `wp_rg_form_view` VALUES("8052", "6", "2015-01-25 17:19:19", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8053", "3", "2015-01-25 18:05:33", "66.249.67.84", "312");
INSERT INTO `wp_rg_form_view` VALUES("8054", "1", "2015-01-25 18:11:09", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("8055", "3", "2015-01-25 19:00:31", "66.249.67.76", "706");
INSERT INTO `wp_rg_form_view` VALUES("8056", "3", "2015-01-25 20:01:02", "66.249.67.76", "664");
INSERT INTO `wp_rg_form_view` VALUES("8057", "6", "2015-01-25 20:25:59", "208.115.111.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("8058", "3", "2015-01-25 21:00:00", "66.249.67.76", "1144");
INSERT INTO `wp_rg_form_view` VALUES("8059", "6", "2015-01-25 21:50:58", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8060", "3", "2015-01-25 22:00:17", "66.249.67.92", "718");
INSERT INTO `wp_rg_form_view` VALUES("8061", "6", "2015-01-25 22:45:34", "66.249.67.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("8062", "3", "2015-01-25 23:00:09", "66.249.67.84", "902");
INSERT INTO `wp_rg_form_view` VALUES("8063", "6", "2015-01-25 23:29:19", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8064", "3", "2015-01-26 00:00:18", "66.249.67.84", "892");
INSERT INTO `wp_rg_form_view` VALUES("8065", "3", "2015-01-26 01:00:30", "66.249.67.76", "1382");
INSERT INTO `wp_rg_form_view` VALUES("8066", "6", "2015-01-26 01:07:52", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8067", "3", "2015-01-26 02:00:05", "66.249.67.84", "584");
INSERT INTO `wp_rg_form_view` VALUES("8068", "3", "2015-01-26 03:04:10", "96.50.94.96", "186");
INSERT INTO `wp_rg_form_view` VALUES("8069", "3", "2015-01-26 04:02:42", "66.249.67.76", "128");
INSERT INTO `wp_rg_form_view` VALUES("8070", "1", "2015-01-26 04:46:02", "207.81.252.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("8071", "3", "2015-01-26 05:02:19", "220.181.108.85", "260");
INSERT INTO `wp_rg_form_view` VALUES("8072", "2", "2015-01-26 05:18:40", "204.44.113.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("8073", "3", "2015-01-26 06:12:26", "192.187.127.122", "82");
INSERT INTO `wp_rg_form_view` VALUES("8074", "3", "2015-01-26 07:03:42", "68.180.228.245", "680");
INSERT INTO `wp_rg_form_view` VALUES("8075", "3", "2015-01-26 08:02:34", "68.180.228.245", "74");
INSERT INTO `wp_rg_form_view` VALUES("8076", "3", "2015-01-26 09:12:28", "204.44.91.41", "42");
INSERT INTO `wp_rg_form_view` VALUES("8077", "1", "2015-01-26 09:38:48", "202.46.61.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("8078", "3", "2015-01-26 10:23:27", "66.249.67.76", "85");
INSERT INTO `wp_rg_form_view` VALUES("8079", "3", "2015-01-26 11:02:24", "204.44.83.184", "428");
INSERT INTO `wp_rg_form_view` VALUES("8080", "6", "2015-01-26 11:12:38", "69.63.88.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("8081", "3", "2015-01-26 12:01:37", "188.165.15.203", "210");
INSERT INTO `wp_rg_form_view` VALUES("8082", "3", "2015-01-26 13:00:15", "66.249.67.92", "547");
INSERT INTO `wp_rg_form_view` VALUES("8083", "2", "2015-01-26 13:54:50", "155.94.132.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("8084", "3", "2015-01-26 14:05:54", "66.249.67.76", "310");
INSERT INTO `wp_rg_form_view` VALUES("8085", "3", "2015-01-26 15:01:02", "66.249.67.76", "766");
INSERT INTO `wp_rg_form_view` VALUES("8086", "3", "2015-01-26 16:00:32", "24.114.45.50", "1176");
INSERT INTO `wp_rg_form_view` VALUES("8087", "6", "2015-01-26 16:27:01", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8088", "3", "2015-01-26 17:00:10", "66.249.67.84", "1616");
INSERT INTO `wp_rg_form_view` VALUES("8089", "3", "2015-01-26 18:00:10", "202.46.49.36", "2332");
INSERT INTO `wp_rg_form_view` VALUES("8090", "3", "2015-01-26 19:00:06", "66.249.79.84", "2822");
INSERT INTO `wp_rg_form_view` VALUES("8091", "6", "2015-01-26 19:12:39", "66.249.79.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("8092", "3", "2015-01-26 20:00:34", "66.249.67.76", "3737");
INSERT INTO `wp_rg_form_view` VALUES("8093", "3", "2015-01-26 21:00:00", "66.249.67.92", "4779");
INSERT INTO `wp_rg_form_view` VALUES("8094", "6", "2015-01-26 21:53:37", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8095", "3", "2015-01-26 22:03:06", "202.46.63.163", "208");
INSERT INTO `wp_rg_form_view` VALUES("8096", "3", "2015-01-26 23:00:23", "66.249.67.84", "6140");
INSERT INTO `wp_rg_form_view` VALUES("8097", "6", "2015-01-26 23:01:42", "84.85.74.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("8098", "1", "2015-01-26 23:02:31", "84.85.74.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("8099", "2", "2015-01-26 23:02:40", "84.85.74.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("8100", "3", "2015-01-27 00:00:00", "66.249.67.76", "5035");
INSERT INTO `wp_rg_form_view` VALUES("8101", "6", "2015-01-27 00:49:50", "202.46.62.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("8102", "3", "2015-01-27 01:16:41", "216.232.158.234", "376");
INSERT INTO `wp_rg_form_view` VALUES("8103", "3", "2015-01-27 02:00:48", "66.249.67.84", "5309");
INSERT INTO `wp_rg_form_view` VALUES("8104", "3", "2015-01-27 03:00:00", "66.249.67.84", "6276");
INSERT INTO `wp_rg_form_view` VALUES("8105", "6", "2015-01-27 03:46:24", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8106", "3", "2015-01-27 04:00:00", "66.249.67.84", "6906");
INSERT INTO `wp_rg_form_view` VALUES("8107", "3", "2015-01-27 05:00:02", "66.249.67.92", "6284");
INSERT INTO `wp_rg_form_view` VALUES("8108", "6", "2015-01-27 05:20:57", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8109", "3", "2015-01-27 06:00:02", "66.249.67.92", "6793");
INSERT INTO `wp_rg_form_view` VALUES("8110", "6", "2015-01-27 06:29:34", "66.249.67.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("8111", "2", "2015-01-27 06:43:35", "23.238.19.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("8112", "1", "2015-01-27 06:43:43", "23.238.19.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("8113", "3", "2015-01-27 07:00:01", "66.249.67.92", "5832");
INSERT INTO `wp_rg_form_view` VALUES("8114", "6", "2015-01-27 07:50:17", "66.249.67.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("8115", "3", "2015-01-27 08:00:00", "66.249.67.92", "6565");
INSERT INTO `wp_rg_form_view` VALUES("8116", "6", "2015-01-27 08:12:49", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8117", "2", "2015-01-27 08:28:06", "23.95.21.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("8118", "3", "2015-01-27 09:00:00", "66.249.67.76", "5718");
INSERT INTO `wp_rg_form_view` VALUES("8119", "3", "2015-01-27 10:00:01", "104.37.56.68", "5912");
INSERT INTO `wp_rg_form_view` VALUES("8120", "6", "2015-01-27 10:43:24", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8121", "3", "2015-01-27 11:00:01", "66.249.67.84", "6668");
INSERT INTO `wp_rg_form_view` VALUES("8122", "3", "2015-01-27 12:00:01", "66.249.67.92", "406");
INSERT INTO `wp_rg_form_view` VALUES("8123", "3", "2015-01-27 13:01:36", "66.249.67.92", "681");
INSERT INTO `wp_rg_form_view` VALUES("8124", "2", "2015-01-27 13:38:32", "36.248.167.232", "3");
INSERT INTO `wp_rg_form_view` VALUES("8125", "3", "2015-01-27 14:02:42", "66.249.67.92", "3196");
INSERT INTO `wp_rg_form_view` VALUES("8126", "6", "2015-01-27 14:36:04", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8127", "3", "2015-01-27 15:00:07", "66.249.67.84", "6599");
INSERT INTO `wp_rg_form_view` VALUES("8128", "3", "2015-01-27 16:00:00", "66.249.67.76", "6408");
INSERT INTO `wp_rg_form_view` VALUES("8129", "3", "2015-01-27 17:00:00", "66.249.67.76", "6242");
INSERT INTO `wp_rg_form_view` VALUES("8130", "6", "2015-01-27 17:17:25", "66.249.67.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("8131", "3", "2015-01-27 18:00:00", "66.249.67.76", "6385");
INSERT INTO `wp_rg_form_view` VALUES("8132", "6", "2015-01-27 18:05:50", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8133", "3", "2015-01-27 19:00:02", "66.249.67.76", "6179");
INSERT INTO `wp_rg_form_view` VALUES("8134", "3", "2015-01-27 20:00:00", "66.249.67.92", "6146");
INSERT INTO `wp_rg_form_view` VALUES("8135", "2", "2015-01-27 20:31:01", "23.94.79.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("8136", "3", "2015-01-27 21:00:00", "66.249.67.84", "5932");
INSERT INTO `wp_rg_form_view` VALUES("8137", "1", "2015-01-27 21:11:34", "207.6.183.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("8138", "3", "2015-01-27 22:00:00", "66.249.67.76", "5017");
INSERT INTO `wp_rg_form_view` VALUES("8139", "2", "2015-01-27 22:54:24", "62.210.91.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("8140", "3", "2015-01-27 23:29:20", "202.46.63.80", "278");
INSERT INTO `wp_rg_form_view` VALUES("8141", "3", "2015-01-28 00:16:18", "66.249.67.92", "423");
INSERT INTO `wp_rg_form_view` VALUES("8142", "3", "2015-01-28 01:21:06", "167.160.107.7", "96");
INSERT INTO `wp_rg_form_view` VALUES("8143", "3", "2015-01-28 02:01:54", "220.181.108.170", "28");
INSERT INTO `wp_rg_form_view` VALUES("8144", "3", "2015-01-28 03:12:52", "104.37.56.61", "246");
INSERT INTO `wp_rg_form_view` VALUES("8145", "3", "2015-01-28 04:00:11", "202.46.50.159", "111");
INSERT INTO `wp_rg_form_view` VALUES("8146", "3", "2015-01-28 05:15:58", "167.160.107.6", "133");
INSERT INTO `wp_rg_form_view` VALUES("8147", "3", "2015-01-28 06:17:51", "66.249.67.84", "56");
INSERT INTO `wp_rg_form_view` VALUES("8148", "6", "2015-01-28 07:03:49", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8149", "3", "2015-01-28 07:03:49", "66.249.67.76", "304");
INSERT INTO `wp_rg_form_view` VALUES("8150", "1", "2015-01-28 07:23:30", "66.249.67.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("8151", "2", "2015-01-28 07:46:20", "155.94.135.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("8152", "3", "2015-01-28 08:01:33", "202.46.49.38", "265");
INSERT INTO `wp_rg_form_view` VALUES("8153", "6", "2015-01-28 09:14:30", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8154", "3", "2015-01-28 09:14:32", "66.249.67.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("8155", "3", "2015-01-28 10:18:30", "68.180.228.245", "252");
INSERT INTO `wp_rg_form_view` VALUES("8156", "3", "2015-01-28 11:34:24", "66.249.67.84", "42");
INSERT INTO `wp_rg_form_view` VALUES("8157", "3", "2015-01-28 12:00:43", "202.46.62.108", "132");
INSERT INTO `wp_rg_form_view` VALUES("8158", "6", "2015-01-28 13:02:00", "207.46.13.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("8159", "3", "2015-01-28 13:02:01", "207.46.13.116", "131");
INSERT INTO `wp_rg_form_view` VALUES("8160", "3", "2015-01-28 14:08:36", "68.180.228.245", "72");
INSERT INTO `wp_rg_form_view` VALUES("8161", "3", "2015-01-28 15:06:28", "202.46.63.164", "171");
INSERT INTO `wp_rg_form_view` VALUES("8162", "6", "2015-01-28 16:30:02", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8163", "3", "2015-01-28 16:30:02", "66.249.67.76", "171");
INSERT INTO `wp_rg_form_view` VALUES("8164", "2", "2015-01-28 16:51:17", "107.183.229.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("8165", "3", "2015-01-28 17:07:01", "69.12.65.82", "228");
INSERT INTO `wp_rg_form_view` VALUES("8166", "3", "2015-01-28 18:38:34", "202.46.48.153", "14");
INSERT INTO `wp_rg_form_view` VALUES("8167", "3", "2015-01-28 19:14:55", "207.46.13.23", "82");
INSERT INTO `wp_rg_form_view` VALUES("8168", "3", "2015-01-28 20:09:14", "202.46.62.108", "72");
INSERT INTO `wp_rg_form_view` VALUES("8169", "3", "2015-01-28 21:06:36", "204.44.91.4", "313");
INSERT INTO `wp_rg_form_view` VALUES("8170", "1", "2015-01-28 21:49:27", "207.216.0.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("8171", "3", "2015-01-28 22:00:02", "66.249.67.92", "414");
INSERT INTO `wp_rg_form_view` VALUES("8172", "1", "2015-01-28 22:42:15", "207.216.0.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("8173", "3", "2015-01-28 23:05:23", "69.12.65.52", "390");
INSERT INTO `wp_rg_form_view` VALUES("8174", "3", "2015-01-29 00:04:32", "66.249.67.84", "1290");
INSERT INTO `wp_rg_form_view` VALUES("8175", "6", "2015-01-29 00:43:39", "68.180.228.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("8176", "3", "2015-01-29 01:00:13", "66.249.67.76", "776");
INSERT INTO `wp_rg_form_view` VALUES("8177", "3", "2015-01-29 02:01:46", "66.249.67.76", "916");
INSERT INTO `wp_rg_form_view` VALUES("8178", "3", "2015-01-29 03:02:36", "66.55.134.213", "1218");
INSERT INTO `wp_rg_form_view` VALUES("8179", "6", "2015-01-29 03:40:26", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8180", "3", "2015-01-29 04:00:12", "66.249.67.76", "3044");
INSERT INTO `wp_rg_form_view` VALUES("8181", "3", "2015-01-29 05:00:00", "66.249.67.92", "3591");
INSERT INTO `wp_rg_form_view` VALUES("8182", "3", "2015-01-29 06:00:00", "66.249.67.76", "3239");
INSERT INTO `wp_rg_form_view` VALUES("8183", "3", "2015-01-29 07:00:18", "68.180.228.245", "1943");
INSERT INTO `wp_rg_form_view` VALUES("8184", "3", "2015-01-29 08:00:00", "66.249.67.76", "4916");
INSERT INTO `wp_rg_form_view` VALUES("8185", "3", "2015-01-29 09:00:03", "66.249.67.84", "4491");
INSERT INTO `wp_rg_form_view` VALUES("8186", "6", "2015-01-29 09:54:09", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8187", "3", "2015-01-29 10:01:41", "66.249.67.84", "1093");
INSERT INTO `wp_rg_form_view` VALUES("8188", "3", "2015-01-29 11:00:20", "66.249.67.92", "6219");
INSERT INTO `wp_rg_form_view` VALUES("8189", "6", "2015-01-29 11:04:52", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8190", "3", "2015-01-29 12:00:00", "46.119.156.123", "4574");
INSERT INTO `wp_rg_form_view` VALUES("8191", "6", "2015-01-29 12:21:48", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8192", "3", "2015-01-29 13:00:00", "66.249.67.76", "5432");
INSERT INTO `wp_rg_form_view` VALUES("8193", "6", "2015-01-29 13:16:22", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("8194", "3", "2015-01-29 14:00:10", "66.249.67.84", "4588");
INSERT INTO `wp_rg_form_view` VALUES("8195", "6", "2015-01-29 14:00:25", "66.249.67.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("8196", "3", "2015-01-29 15:00:30", "66.249.67.76", "5266");
INSERT INTO `wp_rg_form_view` VALUES("8197", "3", "2015-01-29 16:00:09", "66.249.67.92", "4572");
INSERT INTO `wp_rg_form_view` VALUES("8198", "3", "2015-01-29 17:00:00", "66.249.67.76", "4627");
INSERT INTO `wp_rg_form_view` VALUES("8199", "3", "2015-01-29 18:00:04", "66.249.67.84", "4950");
INSERT INTO `wp_rg_form_view` VALUES("8200", "3", "2015-01-29 19:00:04", "66.249.67.92", "5803");
INSERT INTO `wp_rg_form_view` VALUES("8201", "2", "2015-01-29 19:03:10", "213.238.175.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("8202", "3", "2015-01-29 20:00:00", "66.249.67.84", "4898");
INSERT INTO `wp_rg_form_view` VALUES("8203", "3", "2015-01-29 21:00:00", "66.249.67.92", "5327");
INSERT INTO `wp_rg_form_view` VALUES("8204", "3", "2015-01-29 22:00:03", "66.249.67.84", "5602");
INSERT INTO `wp_rg_form_view` VALUES("8205", "6", "2015-01-29 22:03:57", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8206", "3", "2015-01-29 23:00:04", "66.249.67.76", "2308");
INSERT INTO `wp_rg_form_view` VALUES("8207", "3", "2015-01-30 00:00:39", "66.249.67.92", "2804");
INSERT INTO `wp_rg_form_view` VALUES("8208", "1", "2015-01-30 00:14:27", "31.184.238.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("8209", "6", "2015-01-30 00:52:21", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8210", "3", "2015-01-30 01:00:01", "66.249.67.92", "6504");
INSERT INTO `wp_rg_form_view` VALUES("8211", "6", "2015-01-30 01:01:17", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8212", "1", "2015-01-30 01:43:47", "202.46.49.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("8213", "3", "2015-01-30 02:00:00", "66.249.67.92", "5644");
INSERT INTO `wp_rg_form_view` VALUES("8214", "6", "2015-01-30 02:19:36", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8215", "3", "2015-01-30 03:00:04", "66.249.67.84", "5792");
INSERT INTO `wp_rg_form_view` VALUES("8216", "3", "2015-01-30 04:00:00", "66.249.67.84", "6190");
INSERT INTO `wp_rg_form_view` VALUES("8217", "6", "2015-01-30 04:22:14", "66.249.67.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("8218", "1", "2015-01-30 04:54:35", "66.249.67.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("8219", "3", "2015-01-30 05:00:06", "66.249.67.84", "5930");
INSERT INTO `wp_rg_form_view` VALUES("8220", "2", "2015-01-30 05:11:06", "157.55.39.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("8221", "6", "2015-01-30 05:43:10", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("8222", "3", "2015-01-30 06:00:00", "66.249.67.84", "5524");
INSERT INTO `wp_rg_form_view` VALUES("8223", "3", "2015-01-30 07:00:01", "66.249.67.84", "6044");
INSERT INTO `wp_rg_form_view` VALUES("8224", "3", "2015-01-30 08:00:00", "66.249.67.84", "6288");
INSERT INTO `wp_rg_form_view` VALUES("8225", "3", "2015-01-30 09:00:09", "66.249.67.92", "5576");
INSERT INTO `wp_rg_form_view` VALUES("8226", "3", "2015-01-30 10:00:00", "66.249.67.92", "6514");
INSERT INTO `wp_rg_form_view` VALUES("8227", "6", "2015-01-30 10:22:40", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8228", "3", "2015-01-30 11:00:01", "66.249.67.76", "1434");
INSERT INTO `wp_rg_form_view` VALUES("8229", "3", "2015-01-30 12:02:10", "202.46.49.101", "70");
INSERT INTO `wp_rg_form_view` VALUES("8230", "3", "2015-01-30 13:02:07", "107.182.125.70", "157");
INSERT INTO `wp_rg_form_view` VALUES("8231", "6", "2015-01-30 13:56:53", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8232", "3", "2015-01-30 14:07:14", "66.249.67.84", "60");
INSERT INTO `wp_rg_form_view` VALUES("8233", "3", "2015-01-30 15:06:42", "184.66.114.201", "134");
INSERT INTO `wp_rg_form_view` VALUES("8234", "1", "2015-01-30 15:32:40", "157.55.39.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("8235", "3", "2015-01-30 16:01:27", "66.249.67.76", "240");
INSERT INTO `wp_rg_form_view` VALUES("8236", "3", "2015-01-30 17:19:09", "66.249.67.76", "272");
INSERT INTO `wp_rg_form_view` VALUES("8237", "3", "2015-01-30 18:13:30", "66.249.67.92", "162");
INSERT INTO `wp_rg_form_view` VALUES("8238", "1", "2015-01-30 18:56:29", "125.71.53.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("8239", "3", "2015-01-30 19:02:50", "66.249.67.84", "98");
INSERT INTO `wp_rg_form_view` VALUES("8240", "3", "2015-01-30 20:01:44", "142.36.192.144", "210");
INSERT INTO `wp_rg_form_view` VALUES("8241", "3", "2015-01-30 21:00:56", "207.46.13.116", "279");
INSERT INTO `wp_rg_form_view` VALUES("8242", "3", "2015-01-30 22:01:21", "202.46.62.147", "126");
INSERT INTO `wp_rg_form_view` VALUES("8243", "6", "2015-01-30 22:36:42", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8244", "3", "2015-01-30 23:18:24", "202.46.61.125", "234");
INSERT INTO `wp_rg_form_view` VALUES("8245", "1", "2015-01-30 23:35:22", "66.249.67.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("8246", "3", "2015-01-31 00:09:42", "66.249.67.84", "130");
INSERT INTO `wp_rg_form_view` VALUES("8247", "3", "2015-01-31 01:04:03", "202.46.61.100", "68");
INSERT INTO `wp_rg_form_view` VALUES("8248", "3", "2015-01-31 02:04:03", "202.46.49.195", "132");
INSERT INTO `wp_rg_form_view` VALUES("8249", "3", "2015-01-31 03:02:03", "68.180.228.245", "141");
INSERT INTO `wp_rg_form_view` VALUES("8250", "3", "2015-01-31 04:07:35", "66.249.67.84", "179");
INSERT INTO `wp_rg_form_view` VALUES("8251", "2", "2015-01-31 04:49:21", "204.44.83.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("8252", "3", "2015-01-31 05:12:42", "202.46.61.104", "242");
INSERT INTO `wp_rg_form_view` VALUES("8253", "3", "2015-01-31 06:02:54", "66.249.67.92", "5280");
INSERT INTO `wp_rg_form_view` VALUES("8254", "6", "2015-01-31 06:02:55", "66.249.67.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("8255", "3", "2015-01-31 07:00:00", "66.249.67.92", "5258");
INSERT INTO `wp_rg_form_view` VALUES("8256", "6", "2015-01-31 07:22:10", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8257", "2", "2015-01-31 07:56:14", "85.25.210.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("8258", "3", "2015-01-31 08:00:01", "66.249.67.84", "5801");
INSERT INTO `wp_rg_form_view` VALUES("8259", "3", "2015-01-31 09:00:00", "66.249.67.92", "4938");
INSERT INTO `wp_rg_form_view` VALUES("8260", "3", "2015-01-31 10:00:00", "66.249.67.84", "731");
INSERT INTO `wp_rg_form_view` VALUES("8261", "6", "2015-01-31 10:01:22", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8262", "3", "2015-01-31 11:00:25", "66.249.67.84", "6983");
INSERT INTO `wp_rg_form_view` VALUES("8263", "3", "2015-01-31 12:00:00", "66.249.67.84", "5190");
INSERT INTO `wp_rg_form_view` VALUES("8264", "3", "2015-01-31 13:00:03", "66.249.67.84", "5688");
INSERT INTO `wp_rg_form_view` VALUES("8265", "3", "2015-01-31 14:00:00", "66.249.67.76", "6208");
INSERT INTO `wp_rg_form_view` VALUES("8266", "6", "2015-01-31 14:07:33", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8267", "3", "2015-01-31 15:00:01", "66.249.67.84", "5876");
INSERT INTO `wp_rg_form_view` VALUES("8268", "6", "2015-01-31 15:11:54", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8269", "3", "2015-01-31 16:00:00", "66.249.67.92", "6112");
INSERT INTO `wp_rg_form_view` VALUES("8270", "3", "2015-01-31 17:00:10", "66.249.67.92", "5886");
INSERT INTO `wp_rg_form_view` VALUES("8271", "6", "2015-01-31 17:44:01", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8272", "3", "2015-01-31 18:00:04", "66.249.67.76", "6307");
INSERT INTO `wp_rg_form_view` VALUES("8273", "6", "2015-01-31 18:17:19", "66.249.67.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("8274", "3", "2015-01-31 19:00:00", "66.249.67.92", "6157");
INSERT INTO `wp_rg_form_view` VALUES("8275", "6", "2015-01-31 19:09:23", "66.249.67.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("8276", "1", "2015-01-31 19:26:33", "71.29.84.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("8277", "2", "2015-01-31 19:26:48", "71.29.84.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("8278", "3", "2015-01-31 20:00:00", "66.249.67.76", "5944");
INSERT INTO `wp_rg_form_view` VALUES("8279", "6", "2015-01-31 20:00:35", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("8280", "3", "2015-01-31 21:00:00", "136.243.36.96", "7104");
INSERT INTO `wp_rg_form_view` VALUES("8281", "1", "2015-01-31 21:01:02", "136.243.36.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("8282", "2", "2015-01-31 21:01:30", "136.243.36.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("8283", "6", "2015-01-31 21:14:39", "136.243.36.96", "3");
INSERT INTO `wp_rg_form_view` VALUES("8284", "3", "2015-01-31 22:00:00", "66.249.67.84", "4849");
INSERT INTO `wp_rg_form_view` VALUES("8285", "6", "2015-01-31 22:35:14", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8286", "3", "2015-01-31 23:01:24", "66.249.67.84", "58");
INSERT INTO `wp_rg_form_view` VALUES("8287", "3", "2015-02-01 00:06:46", "66.249.67.92", "228");
INSERT INTO `wp_rg_form_view` VALUES("8288", "1", "2015-02-01 00:41:12", "183.48.172.159", "4");
INSERT INTO `wp_rg_form_view` VALUES("8289", "3", "2015-02-01 01:06:16", "207.46.13.116", "101");
INSERT INTO `wp_rg_form_view` VALUES("8290", "3", "2015-02-01 02:00:10", "66.249.67.92", "269");
INSERT INTO `wp_rg_form_view` VALUES("8291", "3", "2015-02-01 03:00:03", "68.180.228.245", "709");
INSERT INTO `wp_rg_form_view` VALUES("8292", "1", "2015-02-01 03:35:56", "136.243.14.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("8293", "3", "2015-02-01 04:04:18", "192.151.152.219", "411");
INSERT INTO `wp_rg_form_view` VALUES("8294", "1", "2015-02-01 04:09:56", "96.50.14.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("8295", "3", "2015-02-01 05:00:10", "66.249.67.76", "500");
INSERT INTO `wp_rg_form_view` VALUES("8296", "3", "2015-02-01 06:01:03", "66.249.67.84", "246");
INSERT INTO `wp_rg_form_view` VALUES("8297", "3", "2015-02-01 07:00:29", "66.249.67.92", "1852");
INSERT INTO `wp_rg_form_view` VALUES("8298", "3", "2015-02-01 08:00:02", "66.249.67.92", "1354");
INSERT INTO `wp_rg_form_view` VALUES("8299", "2", "2015-02-01 08:21:48", "66.249.67.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("8300", "3", "2015-02-01 09:23:41", "66.249.67.92", "2746");
INSERT INTO `wp_rg_form_view` VALUES("8301", "3", "2015-02-01 10:00:01", "66.249.67.84", "6591");
INSERT INTO `wp_rg_form_view` VALUES("8302", "6", "2015-02-01 10:00:04", "5.9.24.198", "5");
INSERT INTO `wp_rg_form_view` VALUES("8303", "3", "2015-02-01 11:00:01", "66.249.67.84", "6214");
INSERT INTO `wp_rg_form_view` VALUES("8304", "6", "2015-02-01 11:08:53", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("8305", "3", "2015-02-01 12:00:00", "66.249.67.76", "6288");
INSERT INTO `wp_rg_form_view` VALUES("8306", "6", "2015-02-01 12:25:08", "208.115.111.66", "5");
INSERT INTO `wp_rg_form_view` VALUES("8307", "3", "2015-02-01 13:00:01", "66.249.67.76", "6142");
INSERT INTO `wp_rg_form_view` VALUES("8308", "6", "2015-02-01 13:53:32", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8309", "3", "2015-02-01 14:00:05", "66.249.67.76", "5356");
INSERT INTO `wp_rg_form_view` VALUES("8310", "3", "2015-02-01 15:00:51", "66.249.67.84", "5352");
INSERT INTO `wp_rg_form_view` VALUES("8311", "2", "2015-02-01 15:21:46", "162.213.42.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("8312", "3", "2015-02-01 16:00:09", "66.249.67.92", "5855");
INSERT INTO `wp_rg_form_view` VALUES("8313", "6", "2015-02-01 16:12:48", "66.249.67.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("8314", "2", "2015-02-01 16:35:44", "192.3.166.224", "3");
INSERT INTO `wp_rg_form_view` VALUES("8315", "3", "2015-02-01 17:00:00", "66.249.67.84", "6712");
INSERT INTO `wp_rg_form_view` VALUES("8316", "1", "2015-02-01 17:03:58", "202.46.63.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("8317", "3", "2015-02-01 18:00:03", "66.249.67.84", "5807");
INSERT INTO `wp_rg_form_view` VALUES("8318", "6", "2015-02-01 18:39:32", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8319", "3", "2015-02-01 19:00:00", "66.249.67.76", "3726");
INSERT INTO `wp_rg_form_view` VALUES("8320", "2", "2015-02-01 19:56:54", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("8321", "6", "2015-02-01 19:57:47", "109.169.29.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("8322", "3", "2015-02-01 20:04:24", "202.46.48.151", "5258");
INSERT INTO `wp_rg_form_view` VALUES("8323", "6", "2015-02-01 20:33:57", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8324", "3", "2015-02-01 21:00:01", "66.249.67.76", "5350");
INSERT INTO `wp_rg_form_view` VALUES("8325", "3", "2015-02-01 22:00:02", "66.249.67.84", "3820");
INSERT INTO `wp_rg_form_view` VALUES("8326", "6", "2015-02-01 22:44:24", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8327", "3", "2015-02-01 23:00:10", "66.249.67.76", "624");
INSERT INTO `wp_rg_form_view` VALUES("8328", "6", "2015-02-01 23:49:58", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8329", "3", "2015-02-02 00:00:26", "66.249.67.84", "2826");
INSERT INTO `wp_rg_form_view` VALUES("8330", "6", "2015-02-02 00:35:48", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("8331", "3", "2015-02-02 01:00:00", "66.249.67.76", "4571");
INSERT INTO `wp_rg_form_view` VALUES("8332", "1", "2015-02-02 01:38:55", "5.9.24.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("8333", "6", "2015-02-02 01:49:43", "66.249.67.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("8334", "3", "2015-02-02 02:00:05", "66.249.67.92", "4093");
INSERT INTO `wp_rg_form_view` VALUES("8335", "2", "2015-02-02 02:34:42", "192.3.166.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("8336", "3", "2015-02-02 03:00:03", "66.249.67.84", "4428");
INSERT INTO `wp_rg_form_view` VALUES("8337", "3", "2015-02-02 04:00:01", "66.249.67.76", "4687");
INSERT INTO `wp_rg_form_view` VALUES("8338", "6", "2015-02-02 04:43:34", "37.16.72.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("8339", "3", "2015-02-02 05:00:05", "66.249.67.84", "4630");
INSERT INTO `wp_rg_form_view` VALUES("8340", "6", "2015-02-02 05:48:51", "66.249.67.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8341", "3", "2015-02-02 06:00:08", "66.249.67.76", "4583");
INSERT INTO `wp_rg_form_view` VALUES("8342", "1", "2015-02-02 06:08:56", "96.50.14.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("8343", "6", "2015-02-02 06:22:59", "66.249.67.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("8344", "3", "2015-02-02 07:00:03", "66.249.67.84", "1778");
INSERT INTO `wp_rg_form_view` VALUES("8345", "3", "2015-02-02 08:00:13", "66.249.67.84", "172");
INSERT INTO `wp_rg_form_view` VALUES("8346", "3", "2015-02-02 09:06:49", "192.3.166.246", "144");
INSERT INTO `wp_rg_form_view` VALUES("8347", "3", "2015-02-02 10:03:43", "157.55.39.66", "364");
INSERT INTO `wp_rg_form_view` VALUES("8348", "3", "2015-02-02 11:00:14", "66.249.67.76", "418");
INSERT INTO `wp_rg_form_view` VALUES("8349", "6", "2015-02-02 11:20:13", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8350", "3", "2015-02-02 12:14:42", "195.154.216.165", "508");
INSERT INTO `wp_rg_form_view` VALUES("8351", "3", "2015-02-02 13:00:24", "66.249.67.76", "680");
INSERT INTO `wp_rg_form_view` VALUES("8352", "6", "2015-02-02 13:10:05", "66.249.67.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("8353", "3", "2015-02-02 14:00:12", "66.249.67.92", "554");
INSERT INTO `wp_rg_form_view` VALUES("8354", "3", "2015-02-02 15:00:01", "66.249.67.132", "803");
INSERT INTO `wp_rg_form_view` VALUES("8355", "3", "2015-02-02 16:05:52", "66.249.67.132", "200");
INSERT INTO `wp_rg_form_view` VALUES("8356", "3", "2015-02-02 17:13:59", "195.154.216.165", "161");
INSERT INTO `wp_rg_form_view` VALUES("8357", "3", "2015-02-02 18:00:21", "195.154.216.165", "102");
INSERT INTO `wp_rg_form_view` VALUES("8358", "3", "2015-02-02 19:04:49", "66.249.67.84", "276");
INSERT INTO `wp_rg_form_view` VALUES("8359", "3", "2015-02-02 20:00:07", "66.249.67.84", "649");
INSERT INTO `wp_rg_form_view` VALUES("8360", "6", "2015-02-02 20:24:09", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("8361", "3", "2015-02-02 21:00:18", "66.249.67.84", "779");
INSERT INTO `wp_rg_form_view` VALUES("8362", "3", "2015-02-02 22:00:07", "66.249.67.76", "1178");
INSERT INTO `wp_rg_form_view` VALUES("8363", "6", "2015-02-02 22:41:31", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("8364", "1", "2015-02-02 22:42:10", "84.85.74.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("8365", "3", "2015-02-02 23:00:27", "66.249.67.92", "208");
INSERT INTO `wp_rg_form_view` VALUES("8366", "3", "2015-02-03 00:04:25", "68.180.228.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("8367", "3", "2015-02-03 01:03:42", "195.154.216.165", "136");
INSERT INTO `wp_rg_form_view` VALUES("8368", "3", "2015-02-03 02:00:22", "172.218.193.246", "190");
INSERT INTO `wp_rg_form_view` VALUES("8369", "3", "2015-02-03 03:16:31", "184.69.101.178", "52");
INSERT INTO `wp_rg_form_view` VALUES("8370", "3", "2015-02-03 04:08:48", "195.154.216.165", "110");
INSERT INTO `wp_rg_form_view` VALUES("8371", "3", "2015-02-03 05:02:27", "195.154.216.165", "136");
INSERT INTO `wp_rg_form_view` VALUES("8372", "2", "2015-02-03 05:49:32", "193.201.224.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("8373", "3", "2015-02-03 06:00:01", "195.154.216.165", "100");
INSERT INTO `wp_rg_form_view` VALUES("8374", "1", "2015-02-03 06:50:51", "130.204.58.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("8375", "3", "2015-02-03 07:22:21", "66.249.67.92", "95");
INSERT INTO `wp_rg_form_view` VALUES("8376", "3", "2015-02-03 08:10:58", "66.249.67.76", "201");
INSERT INTO `wp_rg_form_view` VALUES("8377", "3", "2015-02-03 09:01:28", "66.249.67.76", "77");
INSERT INTO `wp_rg_form_view` VALUES("8378", "3", "2015-02-03 10:14:01", "192.151.152.219", "63");
INSERT INTO `wp_rg_form_view` VALUES("8379", "3", "2015-02-03 11:00:02", "202.46.48.49", "120");
INSERT INTO `wp_rg_form_view` VALUES("8380", "3", "2015-02-03 12:00:50", "202.46.50.199", "123");
INSERT INTO `wp_rg_form_view` VALUES("8381", "3", "2015-02-03 13:01:39", "66.249.67.92", "48");
INSERT INTO `wp_rg_form_view` VALUES("8382", "3", "2015-02-03 14:08:07", "66.249.67.92", "136");
INSERT INTO `wp_rg_form_view` VALUES("8383", "3", "2015-02-03 15:17:03", "104.218.197.147", "130");
INSERT INTO `wp_rg_form_view` VALUES("8384", "3", "2015-02-03 16:13:12", "202.46.62.146", "306");
INSERT INTO `wp_rg_form_view` VALUES("8385", "2", "2015-02-03 16:24:29", "155.94.164.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("8386", "3", "2015-02-03 17:10:16", "202.46.62.108", "312");
INSERT INTO `wp_rg_form_view` VALUES("8387", "3", "2015-02-03 18:04:17", "144.76.155.8", "182");
INSERT INTO `wp_rg_form_view` VALUES("8388", "1", "2015-02-03 18:24:10", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("8389", "3", "2015-02-03 19:07:07", "68.180.228.245", "228");
INSERT INTO `wp_rg_form_view` VALUES("8390", "3", "2015-02-03 20:05:58", "202.46.49.36", "114");
INSERT INTO `wp_rg_form_view` VALUES("8391", "3", "2015-02-03 21:19:05", "66.249.67.92", "212");
INSERT INTO `wp_rg_form_view` VALUES("8392", "3", "2015-02-03 22:00:39", "202.46.62.148", "871");
INSERT INTO `wp_rg_form_view` VALUES("8393", "2", "2015-02-03 22:56:46", "157.55.39.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("8394", "1", "2015-02-03 22:56:48", "157.55.39.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("8395", "3", "2015-02-03 23:02:28", "192.240.201.10", "256");
INSERT INTO `wp_rg_form_view` VALUES("8396", "3", "2015-02-04 00:05:28", "202.46.50.140", "138");
INSERT INTO `wp_rg_form_view` VALUES("8397", "1", "2015-02-04 00:51:13", "62.210.93.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("8398", "3", "2015-02-04 01:01:35", "107.182.116.150", "150");
INSERT INTO `wp_rg_form_view` VALUES("8399", "3", "2015-02-04 02:07:23", "207.46.13.23", "799");
INSERT INTO `wp_rg_form_view` VALUES("8400", "6", "2015-02-04 02:17:20", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8401", "3", "2015-02-04 03:08:48", "82.76.87.24", "414");
INSERT INTO `wp_rg_form_view` VALUES("8402", "6", "2015-02-04 03:09:32", "82.76.87.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("8403", "1", "2015-02-04 03:10:08", "82.76.87.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("8404", "2", "2015-02-04 03:10:15", "82.76.87.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("8405", "3", "2015-02-04 04:06:02", "66.249.67.84", "96");
INSERT INTO `wp_rg_form_view` VALUES("8406", "3", "2015-02-04 05:02:33", "66.249.67.92", "254");
INSERT INTO `wp_rg_form_view` VALUES("8407", "1", "2015-02-04 05:11:42", "202.46.61.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("8408", "2", "2015-02-04 05:12:42", "36.248.167.87", "2");
INSERT INTO `wp_rg_form_view` VALUES("8409", "3", "2015-02-04 06:13:59", "68.180.228.245", "80");
INSERT INTO `wp_rg_form_view` VALUES("8410", "3", "2015-02-04 07:17:35", "66.249.67.84", "48");
INSERT INTO `wp_rg_form_view` VALUES("8411", "3", "2015-02-04 08:05:17", "66.249.67.76", "74");
INSERT INTO `wp_rg_form_view` VALUES("8412", "3", "2015-02-04 09:19:38", "66.249.67.76", "24");
INSERT INTO `wp_rg_form_view` VALUES("8413", "3", "2015-02-04 10:04:52", "66.249.67.84", "94");
INSERT INTO `wp_rg_form_view` VALUES("8414", "3", "2015-02-04 11:03:44", "202.46.62.89", "78");
INSERT INTO `wp_rg_form_view` VALUES("8415", "3", "2015-02-04 12:05:27", "66.249.67.84", "48");
INSERT INTO `wp_rg_form_view` VALUES("8416", "3", "2015-02-04 13:23:45", "68.180.228.245", "80");
INSERT INTO `wp_rg_form_view` VALUES("8417", "3", "2015-02-04 14:06:39", "202.46.50.199", "84");
INSERT INTO `wp_rg_form_view` VALUES("8418", "3", "2015-02-04 15:19:33", "66.249.67.92", "96");
INSERT INTO `wp_rg_form_view` VALUES("8419", "3", "2015-02-04 16:12:26", "107.150.49.242", "73");
INSERT INTO `wp_rg_form_view` VALUES("8420", "3", "2015-02-04 17:03:04", "188.165.15.192", "181");
INSERT INTO `wp_rg_form_view` VALUES("8421", "3", "2015-02-04 18:01:47", "24.108.3.240", "355");
INSERT INTO `wp_rg_form_view` VALUES("8422", "3", "2015-02-04 19:00:00", "68.180.228.245", "386");
INSERT INTO `wp_rg_form_view` VALUES("8423", "3", "2015-02-04 20:26:47", "100.43.85.24", "82");
INSERT INTO `wp_rg_form_view` VALUES("8424", "3", "2015-02-04 21:05:16", "195.154.216.165", "226");
INSERT INTO `wp_rg_form_view` VALUES("8425", "3", "2015-02-04 22:10:08", "66.249.67.84", "52");
INSERT INTO `wp_rg_form_view` VALUES("8426", "3", "2015-02-04 23:09:50", "207.81.255.44", "146");
INSERT INTO `wp_rg_form_view` VALUES("8427", "3", "2015-02-05 00:00:46", "195.154.216.165", "112");
INSERT INTO `wp_rg_form_view` VALUES("8428", "3", "2015-02-05 01:17:44", "195.154.216.165", "38");
INSERT INTO `wp_rg_form_view` VALUES("8429", "3", "2015-02-05 02:01:54", "100.43.85.24", "411");
INSERT INTO `wp_rg_form_view` VALUES("8430", "3", "2015-02-05 03:01:53", "195.154.216.165", "254");
INSERT INTO `wp_rg_form_view` VALUES("8431", "3", "2015-02-05 04:06:42", "68.180.228.245", "2808");
INSERT INTO `wp_rg_form_view` VALUES("8432", "6", "2015-02-05 04:31:31", "66.249.67.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("8433", "1", "2015-02-05 04:34:10", "66.249.67.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("8434", "3", "2015-02-05 05:00:01", "66.249.67.92", "1538");
INSERT INTO `wp_rg_form_view` VALUES("8435", "6", "2015-02-05 05:06:07", "66.249.67.84", "7");
INSERT INTO `wp_rg_form_view` VALUES("8436", "3", "2015-02-05 06:01:58", "66.249.67.84", "2868");
INSERT INTO `wp_rg_form_view` VALUES("8437", "2", "2015-02-05 06:23:59", "193.201.224.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("8438", "3", "2015-02-05 07:00:04", "162.243.32.128", "9115");
INSERT INTO `wp_rg_form_view` VALUES("8439", "1", "2015-02-05 07:05:00", "162.243.32.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("8440", "2", "2015-02-05 07:42:18", "66.249.67.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("8441", "3", "2015-02-05 08:00:00", "162.243.32.128", "6750");
INSERT INTO `wp_rg_form_view` VALUES("8442", "3", "2015-02-05 09:00:15", "66.249.67.76", "1100");
INSERT INTO `wp_rg_form_view` VALUES("8443", "2", "2015-02-05 09:15:39", "36.248.167.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("8444", "3", "2015-02-05 10:00:07", "66.249.67.84", "1338");
INSERT INTO `wp_rg_form_view` VALUES("8445", "3", "2015-02-05 11:00:00", "66.249.67.84", "984");
INSERT INTO `wp_rg_form_view` VALUES("8446", "3", "2015-02-05 12:16:10", "66.249.67.84", "138");
INSERT INTO `wp_rg_form_view` VALUES("8447", "3", "2015-02-05 13:03:12", "68.180.228.245", "450");
INSERT INTO `wp_rg_form_view` VALUES("8448", "3", "2015-02-05 14:01:11", "66.249.67.84", "863");
INSERT INTO `wp_rg_form_view` VALUES("8449", "3", "2015-02-05 15:00:04", "66.249.67.92", "1194");
INSERT INTO `wp_rg_form_view` VALUES("8450", "3", "2015-02-05 16:00:01", "66.249.67.92", "1481");
INSERT INTO `wp_rg_form_view` VALUES("8451", "6", "2015-02-05 16:05:27", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8452", "3", "2015-02-05 17:00:05", "66.249.67.76", "1564");
INSERT INTO `wp_rg_form_view` VALUES("8453", "6", "2015-02-05 17:21:30", "66.249.67.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8454", "3", "2015-02-05 18:16:09", "66.249.67.76", "282");
INSERT INTO `wp_rg_form_view` VALUES("8455", "3", "2015-02-05 19:00:25", "66.249.67.84", "918");
INSERT INTO `wp_rg_form_view` VALUES("8456", "3", "2015-02-05 20:00:11", "66.249.67.92", "1536");
INSERT INTO `wp_rg_form_view` VALUES("8457", "3", "2015-02-05 21:00:04", "66.249.67.92", "1490");
INSERT INTO `wp_rg_form_view` VALUES("8458", "3", "2015-02-05 22:00:01", "66.249.67.76", "1402");
INSERT INTO `wp_rg_form_view` VALUES("8459", "6", "2015-02-05 22:51:26", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8460", "3", "2015-02-05 23:00:11", "66.249.67.84", "1398");
INSERT INTO `wp_rg_form_view` VALUES("8461", "3", "2015-02-06 00:01:12", "66.249.67.76", "521");
INSERT INTO `wp_rg_form_view` VALUES("8462", "3", "2015-02-06 01:00:49", "66.249.67.84", "338");
INSERT INTO `wp_rg_form_view` VALUES("8463", "3", "2015-02-06 02:00:32", "68.180.228.245", "593");
INSERT INTO `wp_rg_form_view` VALUES("8464", "1", "2015-02-06 02:55:55", "85.25.210.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("8465", "3", "2015-02-06 03:00:39", "66.249.67.76", "1270");
INSERT INTO `wp_rg_form_view` VALUES("8466", "2", "2015-02-06 03:50:13", "157.55.39.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("8467", "1", "2015-02-06 03:50:15", "157.55.39.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("8468", "6", "2015-02-06 03:56:12", "66.249.67.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("8469", "3", "2015-02-06 04:00:37", "66.249.67.92", "355");
INSERT INTO `wp_rg_form_view` VALUES("8470", "3", "2015-02-06 05:00:22", "66.249.67.92", "744");
INSERT INTO `wp_rg_form_view` VALUES("8471", "3", "2015-02-06 06:12:44", "24.108.72.49", "141");
INSERT INTO `wp_rg_form_view` VALUES("8472", "3", "2015-02-06 07:06:00", "66.249.67.84", "100");
INSERT INTO `wp_rg_form_view` VALUES("8473", "3", "2015-02-06 08:00:28", "66.249.67.92", "132");
INSERT INTO `wp_rg_form_view` VALUES("8474", "3", "2015-02-06 09:03:30", "192.187.127.122", "192");
INSERT INTO `wp_rg_form_view` VALUES("8475", "3", "2015-02-06 10:04:51", "66.249.67.92", "178");
INSERT INTO `wp_rg_form_view` VALUES("8476", "3", "2015-02-06 11:01:38", "66.249.67.84", "172");
INSERT INTO `wp_rg_form_view` VALUES("8477", "3", "2015-02-06 12:04:14", "66.249.67.92", "201");
INSERT INTO `wp_rg_form_view` VALUES("8478", "6", "2015-02-06 12:18:07", "100.43.85.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("8479", "3", "2015-02-06 13:00:15", "202.46.61.57", "98");
INSERT INTO `wp_rg_form_view` VALUES("8480", "2", "2015-02-06 14:01:32", "220.181.108.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("8481", "3", "2015-02-06 14:01:32", "220.181.108.117", "670");
INSERT INTO `wp_rg_form_view` VALUES("8482", "3", "2015-02-06 15:06:16", "66.249.67.84", "142");
INSERT INTO `wp_rg_form_view` VALUES("8483", "3", "2015-02-06 16:01:25", "66.249.67.132", "90");
INSERT INTO `wp_rg_form_view` VALUES("8484", "6", "2015-02-06 16:37:49", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8485", "3", "2015-02-06 17:02:29", "100.43.85.24", "836");
INSERT INTO `wp_rg_form_view` VALUES("8486", "1", "2015-02-06 17:54:34", "207.194.65.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("8487", "3", "2015-02-06 18:00:22", "96.54.36.14", "328");
INSERT INTO `wp_rg_form_view` VALUES("8488", "1", "2015-02-06 18:05:40", "207.194.65.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("8489", "3", "2015-02-06 19:04:09", "217.69.133.232", "377");
INSERT INTO `wp_rg_form_view` VALUES("8490", "3", "2015-02-06 20:00:21", "66.249.67.84", "785");
INSERT INTO `wp_rg_form_view` VALUES("8491", "3", "2015-02-06 21:00:38", "66.249.67.76", "734");
INSERT INTO `wp_rg_form_view` VALUES("8492", "3", "2015-02-06 22:00:00", "66.249.67.84", "1024");
INSERT INTO `wp_rg_form_view` VALUES("8493", "6", "2015-02-06 22:28:10", "208.115.113.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("8494", "3", "2015-02-06 23:00:37", "66.249.79.84", "990");
INSERT INTO `wp_rg_form_view` VALUES("8495", "3", "2015-02-07 00:02:52", "66.249.79.92", "278");
INSERT INTO `wp_rg_form_view` VALUES("8496", "3", "2015-02-07 01:07:07", "100.43.85.24", "212");
INSERT INTO `wp_rg_form_view` VALUES("8497", "6", "2015-02-07 01:25:28", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("8498", "3", "2015-02-07 02:00:48", "192.187.127.122", "490");
INSERT INTO `wp_rg_form_view` VALUES("8499", "3", "2015-02-07 03:00:23", "66.249.79.84", "722");
INSERT INTO `wp_rg_form_view` VALUES("8500", "3", "2015-02-07 04:00:15", "66.249.79.76", "643");
INSERT INTO `wp_rg_form_view` VALUES("8501", "2", "2015-02-07 04:46:31", "62.210.93.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("8502", "6", "2015-02-07 04:49:54", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8503", "3", "2015-02-07 05:00:42", "66.249.79.84", "783");
INSERT INTO `wp_rg_form_view` VALUES("8504", "3", "2015-02-07 06:00:19", "66.249.79.92", "592");
INSERT INTO `wp_rg_form_view` VALUES("8505", "3", "2015-02-07 07:00:51", "107.182.116.122", "155");
INSERT INTO `wp_rg_form_view` VALUES("8506", "2", "2015-02-07 07:21:19", "107.153.85.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("8507", "6", "2015-02-07 07:50:48", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("8508", "3", "2015-02-07 08:14:53", "66.249.79.92", "117");
INSERT INTO `wp_rg_form_view` VALUES("8509", "3", "2015-02-07 09:01:09", "66.249.79.92", "114");
INSERT INTO `wp_rg_form_view` VALUES("8510", "6", "2015-02-07 09:21:08", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("8511", "3", "2015-02-07 10:05:46", "202.46.48.151", "246");
INSERT INTO `wp_rg_form_view` VALUES("8512", "2", "2015-02-07 10:37:01", "107.153.85.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("8513", "1", "2015-02-07 10:58:54", "186.222.220.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("8514", "3", "2015-02-07 11:01:24", "217.69.133.69", "1514");
INSERT INTO `wp_rg_form_view` VALUES("8515", "1", "2015-02-07 11:35:57", "85.17.73.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("8516", "2", "2015-02-07 11:38:41", "85.17.73.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("8517", "3", "2015-02-07 12:20:05", "202.46.63.82", "139");
INSERT INTO `wp_rg_form_view` VALUES("8518", "2", "2015-02-07 12:41:28", "104.143.16.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("8519", "3", "2015-02-07 13:44:06", "66.249.79.92", "42");
INSERT INTO `wp_rg_form_view` VALUES("8520", "3", "2015-02-07 14:13:40", "217.69.133.230", "138");
INSERT INTO `wp_rg_form_view` VALUES("8521", "2", "2015-02-07 14:37:01", "192.230.61.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("8522", "3", "2015-02-07 15:08:01", "202.46.48.149", "118");
INSERT INTO `wp_rg_form_view` VALUES("8523", "2", "2015-02-07 16:19:10", "172.245.133.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("8524", "3", "2015-02-07 16:19:10", "172.245.133.129", "28");
INSERT INTO `wp_rg_form_view` VALUES("8525", "3", "2015-02-07 17:21:45", "100.43.85.24", "66");
INSERT INTO `wp_rg_form_view` VALUES("8526", "3", "2015-02-07 18:00:00", "207.46.13.38", "126");
INSERT INTO `wp_rg_form_view` VALUES("8527", "1", "2015-02-07 18:38:56", "189.12.86.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("8528", "3", "2015-02-07 19:39:34", "202.46.50.128", "90");
INSERT INTO `wp_rg_form_view` VALUES("8529", "3", "2015-02-07 20:05:44", "66.249.79.76", "100");
INSERT INTO `wp_rg_form_view` VALUES("8530", "3", "2015-02-07 21:10:49", "66.249.79.140", "80");
INSERT INTO `wp_rg_form_view` VALUES("8531", "3", "2015-02-07 22:02:13", "66.249.79.84", "544");
INSERT INTO `wp_rg_form_view` VALUES("8532", "3", "2015-02-07 23:02:37", "100.43.85.24", "604");
INSERT INTO `wp_rg_form_view` VALUES("8533", "3", "2015-02-08 00:30:21", "66.249.79.84", "167");
INSERT INTO `wp_rg_form_view` VALUES("8534", "2", "2015-02-08 00:56:02", "167.160.103.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("8535", "2", "2015-02-08 01:08:46", "104.143.16.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("8536", "3", "2015-02-08 01:08:46", "104.143.16.173", "48");
INSERT INTO `wp_rg_form_view` VALUES("8537", "3", "2015-02-08 02:14:31", "66.249.79.92", "116");
INSERT INTO `wp_rg_form_view` VALUES("8538", "2", "2015-02-08 02:57:36", "104.143.16.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("8539", "3", "2015-02-08 03:04:57", "68.180.228.245", "68");
INSERT INTO `wp_rg_form_view` VALUES("8540", "2", "2015-02-08 04:10:48", "172.245.133.205", "5");
INSERT INTO `wp_rg_form_view` VALUES("8541", "3", "2015-02-08 04:10:48", "172.245.133.205", "207");
INSERT INTO `wp_rg_form_view` VALUES("8542", "3", "2015-02-08 05:03:09", "66.249.79.84", "174");
INSERT INTO `wp_rg_form_view` VALUES("8543", "2", "2015-02-08 05:56:42", "107.182.116.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("8544", "3", "2015-02-08 06:00:08", "66.249.79.92", "191");
INSERT INTO `wp_rg_form_view` VALUES("8545", "2", "2015-02-08 06:20:53", "23.247.173.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("8546", "3", "2015-02-08 07:00:59", "66.249.79.76", "1862");
INSERT INTO `wp_rg_form_view` VALUES("8547", "6", "2015-02-08 07:30:05", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8548", "2", "2015-02-08 07:38:46", "104.143.16.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("8549", "3", "2015-02-08 08:08:51", "66.249.79.76", "82");
INSERT INTO `wp_rg_form_view` VALUES("8550", "3", "2015-02-08 09:16:18", "66.249.79.92", "74");
INSERT INTO `wp_rg_form_view` VALUES("8551", "2", "2015-02-08 09:19:26", "198.12.74.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("8552", "3", "2015-02-08 10:07:25", "202.46.49.102", "110");
INSERT INTO `wp_rg_form_view` VALUES("8553", "3", "2015-02-08 11:02:17", "202.46.50.128", "76");
INSERT INTO `wp_rg_form_view` VALUES("8554", "3", "2015-02-08 12:21:34", "188.165.15.44", "141");
INSERT INTO `wp_rg_form_view` VALUES("8555", "1", "2015-02-08 12:31:15", "208.115.111.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("8556", "3", "2015-02-08 13:11:35", "68.180.228.245", "195");
INSERT INTO `wp_rg_form_view` VALUES("8557", "2", "2015-02-08 13:23:49", "104.143.16.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("8558", "1", "2015-02-08 14:03:01", "221.237.21.150", "2");
INSERT INTO `wp_rg_form_view` VALUES("8559", "3", "2015-02-08 14:03:01", "221.237.21.150", "122");
INSERT INTO `wp_rg_form_view` VALUES("8560", "2", "2015-02-08 14:51:24", "36.248.167.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("8561", "3", "2015-02-08 15:12:44", "68.180.228.245", "102");
INSERT INTO `wp_rg_form_view` VALUES("8562", "3", "2015-02-08 16:15:18", "85.25.210.189", "151");
INSERT INTO `wp_rg_form_view` VALUES("8563", "3", "2015-02-08 17:03:04", "188.165.15.231", "108");
INSERT INTO `wp_rg_form_view` VALUES("8564", "3", "2015-02-08 18:06:32", "66.249.79.92", "140");
INSERT INTO `wp_rg_form_view` VALUES("8565", "3", "2015-02-08 19:16:29", "76.69.13.202", "147");
INSERT INTO `wp_rg_form_view` VALUES("8566", "2", "2015-02-08 19:33:01", "107.153.85.201", "4");
INSERT INTO `wp_rg_form_view` VALUES("8567", "3", "2015-02-08 20:03:15", "68.180.228.245", "138");
INSERT INTO `wp_rg_form_view` VALUES("8568", "1", "2015-02-08 20:30:37", "177.134.112.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("8569", "3", "2015-02-08 21:01:28", "202.46.63.67", "236");
INSERT INTO `wp_rg_form_view` VALUES("8570", "2", "2015-02-08 21:18:25", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8571", "3", "2015-02-08 22:04:30", "66.249.79.92", "196");
INSERT INTO `wp_rg_form_view` VALUES("8572", "3", "2015-02-08 23:02:02", "68.180.228.245", "378");
INSERT INTO `wp_rg_form_view` VALUES("8573", "2", "2015-02-08 23:18:56", "198.12.74.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("8574", "3", "2015-02-09 00:04:30", "66.249.79.92", "158");
INSERT INTO `wp_rg_form_view` VALUES("8575", "6", "2015-02-09 00:31:14", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("8576", "3", "2015-02-09 01:07:42", "66.249.79.76", "166");
INSERT INTO `wp_rg_form_view` VALUES("8577", "2", "2015-02-09 01:35:00", "198.12.74.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("8578", "3", "2015-02-09 02:01:54", "66.249.79.76", "223");
INSERT INTO `wp_rg_form_view` VALUES("8579", "2", "2015-02-09 02:41:03", "107.182.116.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("8580", "3", "2015-02-09 03:35:30", "68.180.228.245", "133");
INSERT INTO `wp_rg_form_view` VALUES("8581", "1", "2015-02-09 03:35:30", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("8582", "3", "2015-02-09 04:00:27", "66.249.79.92", "180");
INSERT INTO `wp_rg_form_view` VALUES("8583", "3", "2015-02-09 05:00:10", "68.180.228.245", "144");
INSERT INTO `wp_rg_form_view` VALUES("8584", "3", "2015-02-09 06:01:23", "66.249.79.76", "132");
INSERT INTO `wp_rg_form_view` VALUES("8585", "2", "2015-02-09 06:30:24", "36.248.167.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("8586", "3", "2015-02-09 07:03:22", "202.46.50.129", "94");
INSERT INTO `wp_rg_form_view` VALUES("8587", "3", "2015-02-09 08:07:20", "68.180.228.245", "241");
INSERT INTO `wp_rg_form_view` VALUES("8588", "3", "2015-02-09 09:09:33", "66.249.79.76", "130");
INSERT INTO `wp_rg_form_view` VALUES("8589", "3", "2015-02-09 10:02:30", "198.12.74.33", "166");
INSERT INTO `wp_rg_form_view` VALUES("8590", "3", "2015-02-09 11:01:01", "66.249.79.84", "346");
INSERT INTO `wp_rg_form_view` VALUES("8591", "3", "2015-02-09 12:00:34", "66.249.79.84", "351");
INSERT INTO `wp_rg_form_view` VALUES("8592", "3", "2015-02-09 13:26:56", "202.46.48.202", "40");
INSERT INTO `wp_rg_form_view` VALUES("8593", "3", "2015-02-09 14:01:12", "66.249.79.92", "103");
INSERT INTO `wp_rg_form_view` VALUES("8594", "3", "2015-02-09 15:02:02", "68.180.228.245", "110");
INSERT INTO `wp_rg_form_view` VALUES("8595", "2", "2015-02-09 16:04:56", "188.165.15.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("8596", "3", "2015-02-09 16:04:57", "188.165.15.231", "168");
INSERT INTO `wp_rg_form_view` VALUES("8597", "3", "2015-02-09 17:00:20", "66.249.79.84", "412");
INSERT INTO `wp_rg_form_view` VALUES("8598", "3", "2015-02-09 18:00:39", "207.6.161.195", "430");
INSERT INTO `wp_rg_form_view` VALUES("8599", "1", "2015-02-09 18:11:09", "207.6.161.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("8600", "3", "2015-02-09 19:00:14", "66.249.79.84", "246");
INSERT INTO `wp_rg_form_view` VALUES("8601", "3", "2015-02-09 20:12:12", "66.249.93.194", "152");
INSERT INTO `wp_rg_form_view` VALUES("8602", "6", "2015-02-09 20:25:41", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("8603", "3", "2015-02-09 21:01:23", "66.249.79.84", "307");
INSERT INTO `wp_rg_form_view` VALUES("8604", "1", "2015-02-09 21:57:26", "24.231.239.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("8605", "3", "2015-02-09 22:18:59", "68.180.228.245", "43");
INSERT INTO `wp_rg_form_view` VALUES("8606", "3", "2015-02-09 23:15:56", "202.46.48.202", "92");
INSERT INTO `wp_rg_form_view` VALUES("8607", "3", "2015-02-10 00:07:19", "68.180.228.245", "74");
INSERT INTO `wp_rg_form_view` VALUES("8608", "3", "2015-02-10 01:29:15", "66.249.79.92", "98");
INSERT INTO `wp_rg_form_view` VALUES("8609", "3", "2015-02-10 02:06:44", "66.249.79.76", "124");
INSERT INTO `wp_rg_form_view` VALUES("8610", "3", "2015-02-10 03:23:21", "202.46.63.84", "42");
INSERT INTO `wp_rg_form_view` VALUES("8611", "2", "2015-02-10 04:00:31", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("8612", "3", "2015-02-10 04:00:31", "68.180.228.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("8613", "3", "2015-02-10 05:34:45", "66.249.79.92", "36");
INSERT INTO `wp_rg_form_view` VALUES("8614", "3", "2015-02-10 06:03:12", "68.180.228.245", "164");
INSERT INTO `wp_rg_form_view` VALUES("8615", "3", "2015-02-10 07:00:42", "66.249.79.92", "60");
INSERT INTO `wp_rg_form_view` VALUES("8616", "3", "2015-02-10 08:01:09", "66.249.79.84", "76");
INSERT INTO `wp_rg_form_view` VALUES("8617", "3", "2015-02-10 09:54:07", "66.249.79.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("8618", "3", "2015-02-10 10:29:32", "220.181.108.151", "36");
INSERT INTO `wp_rg_form_view` VALUES("8619", "3", "2015-02-10 11:48:30", "188.165.15.64", "12");
INSERT INTO `wp_rg_form_view` VALUES("8620", "3", "2015-02-10 12:10:46", "66.249.79.84", "235");
INSERT INTO `wp_rg_form_view` VALUES("8621", "3", "2015-02-10 13:15:51", "217.69.133.233", "42");
INSERT INTO `wp_rg_form_view` VALUES("8622", "3", "2015-02-10 14:06:44", "66.249.79.84", "76");
INSERT INTO `wp_rg_form_view` VALUES("8623", "3", "2015-02-10 15:00:36", "66.249.79.76", "128");
INSERT INTO `wp_rg_form_view` VALUES("8624", "3", "2015-02-10 16:02:05", "66.249.79.84", "110");
INSERT INTO `wp_rg_form_view` VALUES("8625", "3", "2015-02-10 17:03:20", "202.46.61.100", "112");
INSERT INTO `wp_rg_form_view` VALUES("8626", "3", "2015-02-10 18:10:51", "66.249.79.84", "68");
INSERT INTO `wp_rg_form_view` VALUES("8627", "3", "2015-02-10 19:06:26", "66.249.79.84", "162");
INSERT INTO `wp_rg_form_view` VALUES("8628", "6", "2015-02-10 19:51:42", "66.249.79.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("8629", "3", "2015-02-10 20:04:05", "66.249.79.84", "348");
INSERT INTO `wp_rg_form_view` VALUES("8630", "1", "2015-02-10 20:18:51", "96.50.106.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("8631", "3", "2015-02-10 21:11:06", "96.50.106.97", "50");
INSERT INTO `wp_rg_form_view` VALUES("8632", "1", "2015-02-10 21:51:36", "81.149.25.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("8633", "3", "2015-02-10 22:06:17", "202.46.50.39", "484");
INSERT INTO `wp_rg_form_view` VALUES("8634", "3", "2015-02-10 23:21:18", "202.46.63.80", "94");
INSERT INTO `wp_rg_form_view` VALUES("8635", "3", "2015-02-11 00:11:49", "66.249.79.93", "30");
INSERT INTO `wp_rg_form_view` VALUES("8636", "3", "2015-02-11 01:03:24", "188.165.15.87", "255");
INSERT INTO `wp_rg_form_view` VALUES("8637", "2", "2015-02-11 01:59:36", "65.111.164.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("8638", "3", "2015-02-11 02:00:44", "66.249.79.93", "190");
INSERT INTO `wp_rg_form_view` VALUES("8639", "3", "2015-02-11 03:29:58", "66.249.79.85", "20");
INSERT INTO `wp_rg_form_view` VALUES("8640", "3", "2015-02-11 04:14:46", "66.249.79.77", "96");
INSERT INTO `wp_rg_form_view` VALUES("8641", "6", "2015-02-11 04:15:44", "188.165.15.87", "2");
INSERT INTO `wp_rg_form_view` VALUES("8642", "3", "2015-02-11 05:21:17", "69.58.178.59", "144");
INSERT INTO `wp_rg_form_view` VALUES("8643", "3", "2015-02-11 06:00:28", "66.249.79.85", "1427");
INSERT INTO `wp_rg_form_view` VALUES("8644", "2", "2015-02-11 06:43:30", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("8645", "1", "2015-02-11 06:43:39", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("8646", "6", "2015-02-11 06:57:12", "81.144.138.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("8647", "3", "2015-02-11 07:00:14", "81.144.138.34", "1228");
INSERT INTO `wp_rg_form_view` VALUES("8648", "6", "2015-02-11 07:54:16", "66.249.79.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("8649", "3", "2015-02-11 08:01:50", "217.69.133.230", "208");
INSERT INTO `wp_rg_form_view` VALUES("8650", "3", "2015-02-11 09:07:18", "66.249.79.77", "70");
INSERT INTO `wp_rg_form_view` VALUES("8651", "3", "2015-02-11 10:08:51", "66.249.79.77", "73");
INSERT INTO `wp_rg_form_view` VALUES("8652", "2", "2015-02-11 11:09:33", "104.143.16.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("8653", "3", "2015-02-11 11:09:33", "104.143.16.18", "107");
INSERT INTO `wp_rg_form_view` VALUES("8654", "3", "2015-02-11 12:03:17", "202.46.62.149", "364");
INSERT INTO `wp_rg_form_view` VALUES("8655", "3", "2015-02-11 13:00:30", "66.249.79.77", "336");
INSERT INTO `wp_rg_form_view` VALUES("8656", "3", "2015-02-11 14:00:21", "66.249.79.85", "374");
INSERT INTO `wp_rg_form_view` VALUES("8657", "3", "2015-02-11 15:00:25", "66.249.79.85", "112");
INSERT INTO `wp_rg_form_view` VALUES("8658", "3", "2015-02-11 16:30:41", "208.115.111.66", "60");
INSERT INTO `wp_rg_form_view` VALUES("8659", "3", "2015-02-11 17:12:36", "207.194.133.9", "30");
INSERT INTO `wp_rg_form_view` VALUES("8660", "3", "2015-02-11 18:06:29", "184.69.178.254", "126");
INSERT INTO `wp_rg_form_view` VALUES("8661", "3", "2015-02-11 19:08:14", "184.66.18.184", "171");
INSERT INTO `wp_rg_form_view` VALUES("8662", "2", "2015-02-11 19:29:57", "192.230.61.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("8663", "3", "2015-02-11 20:00:23", "66.249.79.93", "50");
INSERT INTO `wp_rg_form_view` VALUES("8664", "3", "2015-02-11 21:01:00", "66.249.79.77", "60");
INSERT INTO `wp_rg_form_view` VALUES("8665", "2", "2015-02-11 22:48:31", "23.247.173.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("8666", "3", "2015-02-11 22:48:31", "23.247.173.157", "125");
INSERT INTO `wp_rg_form_view` VALUES("8667", "3", "2015-02-11 23:00:50", "216.232.3.213", "50");
INSERT INTO `wp_rg_form_view` VALUES("8668", "3", "2015-02-12 00:00:01", "66.249.79.77", "68");
INSERT INTO `wp_rg_form_view` VALUES("8669", "3", "2015-02-12 01:18:53", "155.94.164.53", "156");
INSERT INTO `wp_rg_form_view` VALUES("8670", "3", "2015-02-12 02:05:28", "202.46.63.160", "116");
INSERT INTO `wp_rg_form_view` VALUES("8671", "3", "2015-02-12 03:12:16", "202.46.50.101", "38");
INSERT INTO `wp_rg_form_view` VALUES("8672", "3", "2015-02-12 04:04:25", "217.69.133.227", "66");
INSERT INTO `wp_rg_form_view` VALUES("8673", "3", "2015-02-12 05:06:39", "107.153.85.204", "86");
INSERT INTO `wp_rg_form_view` VALUES("8674", "3", "2015-02-12 06:09:08", "202.46.50.38", "80");
INSERT INTO `wp_rg_form_view` VALUES("8675", "3", "2015-02-12 07:15:10", "217.69.133.230", "32");
INSERT INTO `wp_rg_form_view` VALUES("8676", "3", "2015-02-12 08:04:48", "68.180.228.245", "70");
INSERT INTO `wp_rg_form_view` VALUES("8677", "3", "2015-02-12 09:35:59", "202.46.49.36", "10");
INSERT INTO `wp_rg_form_view` VALUES("8678", "3", "2015-02-12 10:03:46", "209.240.101.210", "158");
INSERT INTO `wp_rg_form_view` VALUES("8679", "6", "2015-02-12 10:21:57", "217.69.133.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("8680", "3", "2015-02-12 11:10:07", "66.249.79.125", "20");
INSERT INTO `wp_rg_form_view` VALUES("8681", "3", "2015-02-12 12:04:09", "100.43.85.24", "50");
INSERT INTO `wp_rg_form_view` VALUES("8682", "3", "2015-02-12 13:01:13", "202.46.48.147", "68");
INSERT INTO `wp_rg_form_view` VALUES("8683", "3", "2015-02-12 14:09:44", "91.121.35.151", "72");
INSERT INTO `wp_rg_form_view` VALUES("8684", "3", "2015-02-12 15:04:22", "217.69.133.69", "32");
INSERT INTO `wp_rg_form_view` VALUES("8685", "3", "2015-02-12 16:26:45", "184.69.102.54", "173");
INSERT INTO `wp_rg_form_view` VALUES("8686", "1", "2015-02-12 16:48:50", "96.54.36.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("8687", "3", "2015-02-12 17:21:30", "66.249.79.85", "291");
INSERT INTO `wp_rg_form_view` VALUES("8688", "2", "2015-02-12 17:33:35", "198.12.74.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("8689", "3", "2015-02-12 18:16:56", "184.69.102.54", "50");
INSERT INTO `wp_rg_form_view` VALUES("8690", "3", "2015-02-12 19:52:14", "157.55.39.66", "30");
INSERT INTO `wp_rg_form_view` VALUES("8691", "3", "2015-02-12 20:10:13", "220.181.108.114", "84");
INSERT INTO `wp_rg_form_view` VALUES("8692", "3", "2015-02-12 21:09:27", "202.46.48.208", "177");
INSERT INTO `wp_rg_form_view` VALUES("8693", "1", "2015-02-12 21:13:33", "162.243.170.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("8694", "2", "2015-02-12 21:13:33", "162.243.170.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("8695", "3", "2015-02-12 22:10:51", "184.69.29.54", "94");
INSERT INTO `wp_rg_form_view` VALUES("8696", "1", "2015-02-12 23:03:44", "172.245.133.205", "2");
INSERT INTO `wp_rg_form_view` VALUES("8697", "3", "2015-02-12 23:03:45", "172.245.133.205", "199");
INSERT INTO `wp_rg_form_view` VALUES("8698", "3", "2015-02-13 00:06:46", "96.50.88.170", "146");
INSERT INTO `wp_rg_form_view` VALUES("8699", "3", "2015-02-13 01:40:37", "202.46.50.35", "44");
INSERT INTO `wp_rg_form_view` VALUES("8700", "3", "2015-02-13 02:06:43", "68.180.228.245", "84");
INSERT INTO `wp_rg_form_view` VALUES("8701", "3", "2015-02-13 03:01:11", "66.249.79.85", "46");
INSERT INTO `wp_rg_form_view` VALUES("8702", "3", "2015-02-13 04:16:40", "154.20.196.63", "110");
INSERT INTO `wp_rg_form_view` VALUES("8703", "6", "2015-02-13 04:34:18", "208.115.111.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("8704", "3", "2015-02-13 05:32:56", "100.43.85.24", "40");
INSERT INTO `wp_rg_form_view` VALUES("8705", "3", "2015-02-13 06:17:46", "104.245.101.67", "112");
INSERT INTO `wp_rg_form_view` VALUES("8706", "3", "2015-02-13 07:11:23", "66.249.79.85", "30");
INSERT INTO `wp_rg_form_view` VALUES("8707", "3", "2015-02-13 08:17:39", "202.46.50.128", "42");
INSERT INTO `wp_rg_form_view` VALUES("8708", "3", "2015-02-13 09:02:22", "202.46.62.56", "30");
INSERT INTO `wp_rg_form_view` VALUES("8709", "1", "2015-02-13 09:44:33", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("8710", "3", "2015-02-13 10:26:49", "66.249.79.93", "25");
INSERT INTO `wp_rg_form_view` VALUES("8711", "3", "2015-02-13 11:14:52", "68.180.228.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("8712", "3", "2015-02-13 12:18:24", "66.249.79.85", "10");
INSERT INTO `wp_rg_form_view` VALUES("8713", "3", "2015-02-13 13:08:28", "157.55.39.209", "44");
INSERT INTO `wp_rg_form_view` VALUES("8714", "6", "2015-02-13 13:44:05", "66.249.79.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("8715", "6", "2015-02-13 14:31:03", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8716", "3", "2015-02-13 14:31:04", "68.180.228.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("8717", "3", "2015-02-13 15:38:42", "8.28.16.254", "130");
INSERT INTO `wp_rg_form_view` VALUES("8718", "3", "2015-02-13 16:11:50", "66.249.79.85", "63");
INSERT INTO `wp_rg_form_view` VALUES("8719", "3", "2015-02-13 18:07:41", "68.180.228.245", "42");
INSERT INTO `wp_rg_form_view` VALUES("8720", "3", "2015-02-13 19:59:29", "68.180.228.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("8721", "3", "2015-02-13 20:16:10", "66.249.79.85", "334");
INSERT INTO `wp_rg_form_view` VALUES("8722", "1", "2015-02-13 20:51:03", "174.127.133.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("8723", "2", "2015-02-13 20:53:26", "174.127.133.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("8724", "3", "2015-02-13 21:09:14", "202.46.63.68", "288");
INSERT INTO `wp_rg_form_view` VALUES("8725", "1", "2015-02-13 21:22:32", "174.127.133.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("8726", "3", "2015-02-13 22:00:49", "100.43.85.24", "111");
INSERT INTO `wp_rg_form_view` VALUES("8727", "3", "2015-02-13 23:07:35", "66.249.79.77", "54");
INSERT INTO `wp_rg_form_view` VALUES("8728", "3", "2015-02-14 00:12:26", "100.43.85.24", "150");
INSERT INTO `wp_rg_form_view` VALUES("8729", "3", "2015-02-14 01:02:12", "66.249.79.93", "66");
INSERT INTO `wp_rg_form_view` VALUES("8730", "3", "2015-02-14 02:11:02", "167.160.103.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("8731", "3", "2015-02-14 03:06:32", "202.46.50.199", "50");
INSERT INTO `wp_rg_form_view` VALUES("8732", "3", "2015-02-14 04:00:10", "100.43.85.24", "316");
INSERT INTO `wp_rg_form_view` VALUES("8733", "6", "2015-02-14 04:10:31", "66.249.79.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("8734", "3", "2015-02-14 05:03:26", "188.165.15.214", "154");
INSERT INTO `wp_rg_form_view` VALUES("8735", "2", "2015-02-14 06:01:25", "36.248.167.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("8736", "3", "2015-02-14 06:01:25", "36.248.167.197", "81");
INSERT INTO `wp_rg_form_view` VALUES("8737", "3", "2015-02-14 07:11:35", "68.180.228.245", "440");
INSERT INTO `wp_rg_form_view` VALUES("8738", "6", "2015-02-14 07:14:12", "68.180.228.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("8739", "1", "2015-02-14 07:42:47", "24.69.69.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("8740", "3", "2015-02-14 08:10:29", "100.43.85.24", "84");
INSERT INTO `wp_rg_form_view` VALUES("8741", "3", "2015-02-14 09:05:32", "100.43.85.24", "40");
INSERT INTO `wp_rg_form_view` VALUES("8742", "3", "2015-02-14 10:46:54", "66.249.79.77", "20");
INSERT INTO `wp_rg_form_view` VALUES("8743", "3", "2015-02-14 11:02:08", "100.43.85.24", "34");
INSERT INTO `wp_rg_form_view` VALUES("8744", "3", "2015-02-14 12:04:53", "202.46.61.56", "60");
INSERT INTO `wp_rg_form_view` VALUES("8745", "3", "2015-02-14 13:24:53", "68.180.228.245", "564");
INSERT INTO `wp_rg_form_view` VALUES("8746", "1", "2015-02-14 13:27:45", "199.96.83.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("8747", "3", "2015-02-14 14:03:10", "68.180.228.245", "80");
INSERT INTO `wp_rg_form_view` VALUES("8748", "1", "2015-02-14 14:07:14", "125.71.54.4", "3");
INSERT INTO `wp_rg_form_view` VALUES("8749", "3", "2015-02-14 15:01:52", "68.180.228.245", "143");
INSERT INTO `wp_rg_form_view` VALUES("8750", "3", "2015-02-14 16:01:34", "172.245.133.205", "161");
INSERT INTO `wp_rg_form_view` VALUES("8751", "3", "2015-02-14 17:04:25", "157.55.39.66", "1184");
INSERT INTO `wp_rg_form_view` VALUES("8752", "3", "2015-02-14 18:04:50", "68.180.228.245", "52");
INSERT INTO `wp_rg_form_view` VALUES("8753", "1", "2015-02-14 19:24:22", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("8754", "3", "2015-02-14 19:24:26", "100.43.85.24", "70");
INSERT INTO `wp_rg_form_view` VALUES("8755", "3", "2015-02-14 20:00:41", "202.46.48.47", "60");
INSERT INTO `wp_rg_form_view` VALUES("8756", "3", "2015-02-14 21:10:39", "66.249.79.93", "90");
INSERT INTO `wp_rg_form_view` VALUES("8757", "1", "2015-02-14 21:46:48", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("8758", "3", "2015-02-14 22:02:35", "66.249.79.77", "220");
INSERT INTO `wp_rg_form_view` VALUES("8759", "3", "2015-02-14 23:01:31", "66.249.79.77", "120");
INSERT INTO `wp_rg_form_view` VALUES("8760", "3", "2015-02-15 00:01:59", "100.43.85.24", "70");
INSERT INTO `wp_rg_form_view` VALUES("8761", "3", "2015-02-15 01:01:24", "66.249.79.85", "116");
INSERT INTO `wp_rg_form_view` VALUES("8762", "3", "2015-02-15 02:21:38", "66.249.79.93", "54");
INSERT INTO `wp_rg_form_view` VALUES("8763", "3", "2015-02-15 03:14:39", "100.43.85.24", "36");
INSERT INTO `wp_rg_form_view` VALUES("8764", "3", "2015-02-15 04:00:00", "66.249.79.77", "525");
INSERT INTO `wp_rg_form_view` VALUES("8765", "3", "2015-02-15 05:00:29", "66.249.79.85", "584");
INSERT INTO `wp_rg_form_view` VALUES("8766", "3", "2015-02-15 06:00:46", "66.249.79.93", "452");
INSERT INTO `wp_rg_form_view` VALUES("8767", "1", "2015-02-15 06:26:58", "198.27.77.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("8768", "3", "2015-02-15 07:09:12", "66.249.79.93", "82");
INSERT INTO `wp_rg_form_view` VALUES("8769", "1", "2015-02-15 07:26:43", "96.50.106.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("8770", "3", "2015-02-15 08:07:36", "66.249.79.85", "130");
INSERT INTO `wp_rg_form_view` VALUES("8771", "3", "2015-02-15 09:16:00", "66.249.79.93", "90");
INSERT INTO `wp_rg_form_view` VALUES("8772", "3", "2015-02-15 10:00:20", "66.249.79.93", "408");
INSERT INTO `wp_rg_form_view` VALUES("8773", "3", "2015-02-15 11:02:35", "66.249.79.85", "396");
INSERT INTO `wp_rg_form_view` VALUES("8774", "6", "2015-02-15 11:31:12", "157.55.39.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("8775", "1", "2015-02-15 11:47:07", "66.249.79.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("8776", "3", "2015-02-15 12:00:24", "66.249.79.85", "263");
INSERT INTO `wp_rg_form_view` VALUES("8777", "3", "2015-02-15 13:07:58", "66.249.79.85", "60");
INSERT INTO `wp_rg_form_view` VALUES("8778", "3", "2015-02-15 14:10:27", "66.249.79.93", "70");
INSERT INTO `wp_rg_form_view` VALUES("8779", "6", "2015-02-15 14:16:06", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("8780", "3", "2015-02-15 15:10:00", "66.249.79.77", "60");
INSERT INTO `wp_rg_form_view` VALUES("8781", "3", "2015-02-15 16:00:29", "100.43.85.24", "80");
INSERT INTO `wp_rg_form_view` VALUES("8782", "3", "2015-02-15 17:07:48", "100.43.85.24", "80");
INSERT INTO `wp_rg_form_view` VALUES("8783", "3", "2015-02-15 18:08:03", "66.249.79.85", "126");
INSERT INTO `wp_rg_form_view` VALUES("8784", "3", "2015-02-15 19:13:29", "188.165.15.13", "203");
INSERT INTO `wp_rg_form_view` VALUES("8785", "3", "2015-02-15 20:12:32", "66.249.79.77", "170");
INSERT INTO `wp_rg_form_view` VALUES("8786", "3", "2015-02-15 21:01:36", "66.249.79.85", "60");
INSERT INTO `wp_rg_form_view` VALUES("8787", "3", "2015-02-15 22:01:35", "100.43.85.24", "30");
INSERT INTO `wp_rg_form_view` VALUES("8788", "3", "2015-02-15 23:07:59", "66.249.79.93", "20");
INSERT INTO `wp_rg_form_view` VALUES("8789", "3", "2015-02-16 00:23:02", "75.156.79.28", "60");
INSERT INTO `wp_rg_form_view` VALUES("8790", "3", "2015-02-16 01:16:02", "100.43.85.24", "32");
INSERT INTO `wp_rg_form_view` VALUES("8791", "3", "2015-02-16 02:07:51", "68.180.228.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("8792", "3", "2015-02-16 03:04:46", "100.43.85.24", "104");
INSERT INTO `wp_rg_form_view` VALUES("8793", "3", "2015-02-16 04:02:53", "66.249.79.93", "66");
INSERT INTO `wp_rg_form_view` VALUES("8794", "3", "2015-02-16 05:24:35", "65.93.207.115", "156");
INSERT INTO `wp_rg_form_view` VALUES("8795", "6", "2015-02-16 05:39:37", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("8796", "3", "2015-02-16 06:41:06", "100.43.85.24", "58");
INSERT INTO `wp_rg_form_view` VALUES("8797", "3", "2015-02-16 07:12:55", "202.46.61.55", "56");
INSERT INTO `wp_rg_form_view` VALUES("8798", "3", "2015-02-16 08:06:48", "66.249.79.93", "207");
INSERT INTO `wp_rg_form_view` VALUES("8799", "3", "2015-02-16 09:01:50", "66.249.79.93", "54");
INSERT INTO `wp_rg_form_view` VALUES("8800", "3", "2015-02-16 10:04:12", "66.249.79.93", "84");
INSERT INTO `wp_rg_form_view` VALUES("8801", "3", "2015-02-16 11:23:00", "66.249.79.85", "63");
INSERT INTO `wp_rg_form_view` VALUES("8802", "3", "2015-02-16 13:06:36", "202.46.63.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("8803", "3", "2015-02-16 14:01:03", "66.249.79.77", "132");
INSERT INTO `wp_rg_form_view` VALUES("8804", "2", "2015-02-16 14:56:25", "66.249.79.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("8805", "3", "2015-02-16 15:07:37", "66.249.79.93", "100");
INSERT INTO `wp_rg_form_view` VALUES("8806", "3", "2015-02-16 16:01:19", "66.249.79.93", "90");
INSERT INTO `wp_rg_form_view` VALUES("8807", "2", "2015-02-16 17:01:21", "62.210.129.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("8808", "3", "2015-02-16 17:01:21", "62.210.129.223", "50");
INSERT INTO `wp_rg_form_view` VALUES("8809", "3", "2015-02-16 18:00:40", "66.249.79.93", "197");
INSERT INTO `wp_rg_form_view` VALUES("8810", "3", "2015-02-16 19:14:13", "188.165.15.75", "96");
INSERT INTO `wp_rg_form_view` VALUES("8811", "3", "2015-02-16 20:00:53", "157.55.39.66", "199");
INSERT INTO `wp_rg_form_view` VALUES("8812", "2", "2015-02-16 20:20:42", "167.160.103.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("8813", "3", "2015-02-16 21:00:15", "202.46.49.199", "34");
INSERT INTO `wp_rg_form_view` VALUES("8814", "3", "2015-02-16 22:52:30", "202.46.50.35", "28");
INSERT INTO `wp_rg_form_view` VALUES("8815", "3", "2015-02-16 23:00:31", "202.46.50.36", "158");
INSERT INTO `wp_rg_form_view` VALUES("8816", "3", "2015-02-17 00:01:09", "184.151.231.12", "148");
INSERT INTO `wp_rg_form_view` VALUES("8817", "3", "2015-02-17 01:00:51", "202.46.49.188", "70");
INSERT INTO `wp_rg_form_view` VALUES("8818", "3", "2015-02-17 02:00:39", "66.249.67.85", "117");
INSERT INTO `wp_rg_form_view` VALUES("8819", "3", "2015-02-17 03:00:00", "157.55.39.66", "421");
INSERT INTO `wp_rg_form_view` VALUES("8820", "6", "2015-02-17 03:00:23", "207.46.13.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("8821", "3", "2015-02-17 04:01:02", "66.249.67.85", "94");
INSERT INTO `wp_rg_form_view` VALUES("8822", "3", "2015-02-17 05:00:52", "202.46.62.147", "120");
INSERT INTO `wp_rg_form_view` VALUES("8823", "1", "2015-02-17 05:49:29", "96.54.193.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("8824", "3", "2015-02-17 06:35:18", "202.46.49.188", "24");
INSERT INTO `wp_rg_form_view` VALUES("8825", "3", "2015-02-17 07:01:24", "202.46.49.101", "60");
INSERT INTO `wp_rg_form_view` VALUES("8826", "3", "2015-02-17 08:01:42", "202.46.61.100", "58");
INSERT INTO `wp_rg_form_view` VALUES("8827", "3", "2015-02-17 09:02:09", "68.180.228.245", "95");
INSERT INTO `wp_rg_form_view` VALUES("8828", "6", "2015-02-17 09:15:37", "144.76.185.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("8829", "3", "2015-02-17 10:03:13", "202.46.48.100", "139");
INSERT INTO `wp_rg_form_view` VALUES("8830", "6", "2015-02-17 10:36:05", "202.46.61.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("8831", "3", "2015-02-17 11:02:37", "202.46.62.56", "84");
INSERT INTO `wp_rg_form_view` VALUES("8832", "3", "2015-02-17 12:00:42", "202.46.62.146", "42");
INSERT INTO `wp_rg_form_view` VALUES("8833", "3", "2015-02-17 13:07:34", "66.249.67.85", "68");
INSERT INTO `wp_rg_form_view` VALUES("8834", "3", "2015-02-17 14:11:13", "66.249.67.85", "84");
INSERT INTO `wp_rg_form_view` VALUES("8835", "3", "2015-02-17 15:12:22", "188.165.15.13", "82");
INSERT INTO `wp_rg_form_view` VALUES("8836", "3", "2015-02-17 16:02:42", "202.46.50.39", "75");
INSERT INTO `wp_rg_form_view` VALUES("8837", "3", "2015-02-17 17:00:41", "199.58.77.91", "166");
INSERT INTO `wp_rg_form_view` VALUES("8838", "2", "2015-02-17 17:36:15", "36.248.167.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("8839", "3", "2015-02-17 18:00:12", "209.240.101.210", "507");
INSERT INTO `wp_rg_form_view` VALUES("8840", "3", "2015-02-17 19:05:17", "157.55.39.66", "50");
INSERT INTO `wp_rg_form_view` VALUES("8841", "3", "2015-02-17 20:03:14", "68.180.228.245", "50");
INSERT INTO `wp_rg_form_view` VALUES("8842", "3", "2015-02-17 21:00:26", "209.240.101.210", "218");
INSERT INTO `wp_rg_form_view` VALUES("8843", "3", "2015-02-17 22:09:19", "202.46.62.107", "54");
INSERT INTO `wp_rg_form_view` VALUES("8844", "3", "2015-02-17 23:00:27", "188.165.15.41", "145");
INSERT INTO `wp_rg_form_view` VALUES("8845", "2", "2015-02-17 23:29:11", "155.94.136.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("8846", "3", "2015-02-18 00:11:50", "66.249.67.85", "64");
INSERT INTO `wp_rg_form_view` VALUES("8847", "3", "2015-02-18 01:22:58", "188.165.15.41", "20");
INSERT INTO `wp_rg_form_view` VALUES("8848", "3", "2015-02-18 02:16:02", "66.249.67.85", "551");
INSERT INTO `wp_rg_form_view` VALUES("8849", "3", "2015-02-18 03:13:49", "66.249.67.93", "102");
INSERT INTO `wp_rg_form_view` VALUES("8850", "3", "2015-02-18 04:04:44", "202.46.50.180", "80");
INSERT INTO `wp_rg_form_view` VALUES("8851", "3", "2015-02-18 05:21:12", "68.180.228.245", "40");
INSERT INTO `wp_rg_form_view` VALUES("8852", "1", "2015-02-18 05:24:22", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("8853", "3", "2015-02-18 06:13:44", "66.249.67.77", "23");
INSERT INTO `wp_rg_form_view` VALUES("8854", "3", "2015-02-18 07:07:28", "66.249.67.93", "80");
INSERT INTO `wp_rg_form_view` VALUES("8855", "3", "2015-02-18 08:02:20", "66.249.67.77", "40");
INSERT INTO `wp_rg_form_view` VALUES("8856", "3", "2015-02-18 09:04:57", "148.251.69.136", "40");
INSERT INTO `wp_rg_form_view` VALUES("8857", "3", "2015-02-18 10:16:02", "66.249.67.93", "20");
INSERT INTO `wp_rg_form_view` VALUES("8858", "3", "2015-02-18 11:07:07", "188.165.15.202", "40");
INSERT INTO `wp_rg_form_view` VALUES("8859", "3", "2015-02-18 12:10:50", "66.249.67.93", "66");
INSERT INTO `wp_rg_form_view` VALUES("8860", "3", "2015-02-18 13:00:00", "157.55.39.142", "92");
INSERT INTO `wp_rg_form_view` VALUES("8861", "3", "2015-02-18 14:08:01", "66.249.67.93", "110");
INSERT INTO `wp_rg_form_view` VALUES("8862", "3", "2015-02-18 15:02:03", "157.55.39.41", "134");
INSERT INTO `wp_rg_form_view` VALUES("8863", "1", "2015-02-18 15:23:50", "207.46.13.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("8864", "3", "2015-02-18 16:12:37", "66.249.67.85", "71");
INSERT INTO `wp_rg_form_view` VALUES("8865", "2", "2015-02-18 16:18:36", "207.46.13.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("8866", "3", "2015-02-18 17:02:34", "207.46.13.72", "318");
INSERT INTO `wp_rg_form_view` VALUES("8867", "3", "2015-02-18 18:03:52", "207.46.13.72", "60");
INSERT INTO `wp_rg_form_view` VALUES("8868", "3", "2015-02-18 19:01:31", "96.50.93.42", "120");
INSERT INTO `wp_rg_form_view` VALUES("8869", "3", "2015-02-18 20:00:02", "207.46.13.72", "239");
INSERT INTO `wp_rg_form_view` VALUES("8870", "6", "2015-02-18 20:00:03", "207.46.13.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("8871", "7", "2015-02-18 20:29:37", "96.50.93.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("8872", "3", "2015-02-18 21:06:19", "66.249.67.93", "211");
INSERT INTO `wp_rg_form_view` VALUES("8873", "7", "2015-02-18 21:20:52", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("8874", "1", "2015-02-18 21:44:50", "207.46.13.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("8875", "3", "2015-02-18 22:06:08", "66.249.67.85", "240");
INSERT INTO `wp_rg_form_view` VALUES("8876", "7", "2015-02-18 22:33:13", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("8877", "3", "2015-02-18 23:00:01", "68.180.228.245", "182");
INSERT INTO `wp_rg_form_view` VALUES("8878", "3", "2015-02-19 00:02:36", "66.249.67.85", "152");
INSERT INTO `wp_rg_form_view` VALUES("8879", "6", "2015-02-19 00:13:43", "66.249.67.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("8880", "3", "2015-02-19 01:01:24", "167.160.103.134", "210");
INSERT INTO `wp_rg_form_view` VALUES("8881", "2", "2015-02-19 01:48:25", "104.143.16.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("8882", "3", "2015-02-19 02:00:06", "69.196.177.211", "90");
INSERT INTO `wp_rg_form_view` VALUES("8883", "3", "2015-02-19 03:00:23", "66.249.67.93", "162");
INSERT INTO `wp_rg_form_view` VALUES("8884", "6", "2015-02-19 03:45:27", "66.249.67.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("8885", "3", "2015-02-19 04:44:48", "66.249.67.77", "106");
INSERT INTO `wp_rg_form_view` VALUES("8886", "3", "2015-02-19 05:00:25", "68.180.228.245", "94");
INSERT INTO `wp_rg_form_view` VALUES("8887", "3", "2015-02-19 06:00:09", "66.249.67.93", "291");
INSERT INTO `wp_rg_form_view` VALUES("8888", "3", "2015-02-19 07:01:16", "66.249.67.85", "346");
INSERT INTO `wp_rg_form_view` VALUES("8889", "3", "2015-02-19 08:00:23", "66.249.67.85", "172");
INSERT INTO `wp_rg_form_view` VALUES("8890", "7", "2015-02-19 09:01:45", "66.249.67.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("8891", "3", "2015-02-19 09:01:45", "66.249.67.77", "140");
INSERT INTO `wp_rg_form_view` VALUES("8892", "3", "2015-02-19 10:02:14", "66.249.67.93", "60");
INSERT INTO `wp_rg_form_view` VALUES("8893", "7", "2015-02-19 10:22:08", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("8894", "3", "2015-02-19 11:24:57", "66.249.67.77", "42");
INSERT INTO `wp_rg_form_view` VALUES("8895", "3", "2015-02-19 12:06:41", "66.249.67.85", "112");
INSERT INTO `wp_rg_form_view` VALUES("8896", "3", "2015-02-19 13:04:10", "66.249.67.85", "140");
INSERT INTO `wp_rg_form_view` VALUES("8897", "3", "2015-02-19 14:05:39", "66.249.67.93", "148");
INSERT INTO `wp_rg_form_view` VALUES("8898", "3", "2015-02-19 15:03:48", "66.249.67.77", "116");
INSERT INTO `wp_rg_form_view` VALUES("8899", "3", "2015-02-19 16:02:44", "66.249.67.85", "120");
INSERT INTO `wp_rg_form_view` VALUES("8900", "3", "2015-02-19 17:08:52", "202.46.48.208", "70");
INSERT INTO `wp_rg_form_view` VALUES("8901", "1", "2015-02-19 17:49:18", "207.46.13.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("8902", "3", "2015-02-19 18:01:47", "157.55.39.41", "340");
INSERT INTO `wp_rg_form_view` VALUES("8903", "2", "2015-02-19 18:13:47", "207.46.13.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("8904", "3", "2015-02-19 19:00:17", "207.46.13.72", "774");
INSERT INTO `wp_rg_form_view` VALUES("8905", "3", "2015-02-19 20:04:17", "207.46.13.72", "124");
INSERT INTO `wp_rg_form_view` VALUES("8906", "3", "2015-02-19 21:02:37", "66.249.67.93", "112");
INSERT INTO `wp_rg_form_view` VALUES("8907", "7", "2015-02-19 21:34:29", "173.183.76.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("8908", "3", "2015-02-19 22:01:11", "220.181.108.154", "114");
INSERT INTO `wp_rg_form_view` VALUES("8909", "3", "2015-02-19 23:07:50", "66.249.67.85", "40");
INSERT INTO `wp_rg_form_view` VALUES("8910", "3", "2015-02-20 00:01:10", "66.249.67.85", "54");
INSERT INTO `wp_rg_form_view` VALUES("8911", "3", "2015-02-20 01:04:10", "207.46.13.72", "60");
INSERT INTO `wp_rg_form_view` VALUES("8912", "3", "2015-02-20 02:17:51", "66.249.67.93", "142");
INSERT INTO `wp_rg_form_view` VALUES("8913", "3", "2015-02-20 03:00:12", "37.140.141.15", "1450");
INSERT INTO `wp_rg_form_view` VALUES("8914", "1", "2015-02-20 03:51:33", "125.71.53.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("8915", "3", "2015-02-20 04:00:28", "68.180.228.245", "427");
INSERT INTO `wp_rg_form_view` VALUES("8916", "1", "2015-02-20 04:13:19", "209.121.11.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("8917", "3", "2015-02-20 05:06:02", "68.180.228.245", "72");
INSERT INTO `wp_rg_form_view` VALUES("8918", "3", "2015-02-20 06:01:38", "66.249.67.85", "110");
INSERT INTO `wp_rg_form_view` VALUES("8919", "3", "2015-02-20 07:05:36", "66.249.67.93", "62");
INSERT INTO `wp_rg_form_view` VALUES("8920", "3", "2015-02-20 08:05:20", "66.249.67.77", "112");
INSERT INTO `wp_rg_form_view` VALUES("8921", "3", "2015-02-20 09:06:22", "66.249.67.93", "114");
INSERT INTO `wp_rg_form_view` VALUES("8922", "3", "2015-02-20 10:04:57", "202.46.48.147", "160");
INSERT INTO `wp_rg_form_view` VALUES("8923", "3", "2015-02-20 11:04:59", "202.46.49.188", "116");
INSERT INTO `wp_rg_form_view` VALUES("8924", "3", "2015-02-20 12:00:34", "202.46.48.153", "152");
INSERT INTO `wp_rg_form_view` VALUES("8925", "3", "2015-02-20 13:01:31", "66.249.67.93", "292");
INSERT INTO `wp_rg_form_view` VALUES("8926", "3", "2015-02-20 14:13:48", "37.140.141.15", "118");
INSERT INTO `wp_rg_form_view` VALUES("8927", "3", "2015-02-20 15:01:04", "5.255.253.92", "414");
INSERT INTO `wp_rg_form_view` VALUES("8928", "3", "2015-02-20 16:00:27", "37.140.141.13", "166");
INSERT INTO `wp_rg_form_view` VALUES("8929", "3", "2015-02-20 17:10:58", "202.46.48.100", "70");
INSERT INTO `wp_rg_form_view` VALUES("8930", "3", "2015-02-20 18:00:23", "184.66.141.235", "202");
INSERT INTO `wp_rg_form_view` VALUES("8931", "1", "2015-02-20 18:02:48", "184.66.141.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("8932", "3", "2015-02-20 19:04:22", "5.255.253.92", "96");
INSERT INTO `wp_rg_form_view` VALUES("8933", "6", "2015-02-20 19:13:40", "5.255.253.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("8934", "3", "2015-02-20 20:01:32", "66.249.67.77", "86");
INSERT INTO `wp_rg_form_view` VALUES("8935", "3", "2015-02-20 21:30:45", "66.249.67.93", "62");
INSERT INTO `wp_rg_form_view` VALUES("8936", "3", "2015-02-20 22:09:12", "202.46.63.82", "92");
INSERT INTO `wp_rg_form_view` VALUES("8937", "3", "2015-02-20 23:00:00", "5.255.253.92", "108");
INSERT INTO `wp_rg_form_view` VALUES("8938", "7", "2015-02-20 23:03:30", "178.154.202.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("8939", "3", "2015-02-21 00:18:30", "207.46.13.72", "34");
INSERT INTO `wp_rg_form_view` VALUES("8940", "3", "2015-02-21 01:04:41", "66.249.67.77", "52");
INSERT INTO `wp_rg_form_view` VALUES("8941", "3", "2015-02-21 02:13:22", "66.249.67.85", "390");
INSERT INTO `wp_rg_form_view` VALUES("8942", "3", "2015-02-21 03:09:22", "202.46.49.128", "10");
INSERT INTO `wp_rg_form_view` VALUES("8943", "2", "2015-02-21 04:09:49", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("8944", "3", "2015-02-21 04:09:51", "68.180.228.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("8945", "3", "2015-02-21 05:40:21", "66.249.67.93", "51");
INSERT INTO `wp_rg_form_view` VALUES("8946", "3", "2015-02-21 06:05:39", "66.249.67.77", "90");
INSERT INTO `wp_rg_form_view` VALUES("8947", "1", "2015-02-21 06:59:53", "24.68.119.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("8948", "3", "2015-02-21 07:00:32", "24.68.119.197", "60");
INSERT INTO `wp_rg_form_view` VALUES("8949", "3", "2015-02-21 08:04:37", "66.249.67.77", "62");
INSERT INTO `wp_rg_form_view` VALUES("8950", "6", "2015-02-21 08:21:57", "207.46.13.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("8951", "3", "2015-02-21 09:31:00", "202.46.50.101", "98");
INSERT INTO `wp_rg_form_view` VALUES("8952", "3", "2015-02-21 10:01:45", "66.249.67.77", "680");
INSERT INTO `wp_rg_form_view` VALUES("8953", "7", "2015-02-21 10:40:19", "198.27.77.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("8954", "1", "2015-02-21 10:40:44", "198.27.77.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("8955", "2", "2015-02-21 10:40:54", "198.27.77.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("8956", "6", "2015-02-21 10:45:50", "37.140.141.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("8957", "3", "2015-02-21 11:11:12", "5.255.253.92", "178");
INSERT INTO `wp_rg_form_view` VALUES("8958", "3", "2015-02-21 12:32:46", "37.140.141.13", "82");
INSERT INTO `wp_rg_form_view` VALUES("8959", "3", "2015-02-21 13:40:32", "85.25.210.189", "40");
INSERT INTO `wp_rg_form_view` VALUES("8960", "3", "2015-02-21 14:01:09", "66.249.67.85", "2124");
INSERT INTO `wp_rg_form_view` VALUES("8961", "2", "2015-02-21 14:34:08", "173.70.141.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("8962", "7", "2015-02-21 14:35:12", "173.70.141.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("8963", "1", "2015-02-21 14:35:40", "173.70.141.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("8964", "6", "2015-02-21 14:43:22", "173.70.141.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("8965", "3", "2015-02-21 15:13:03", "207.46.13.120", "22");
INSERT INTO `wp_rg_form_view` VALUES("8966", "3", "2015-02-21 16:08:38", "174.129.237.157", "2625");
INSERT INTO `wp_rg_form_view` VALUES("8967", "6", "2015-02-21 16:55:59", "207.46.13.120", "5");
INSERT INTO `wp_rg_form_view` VALUES("8968", "3", "2015-02-21 17:00:00", "157.55.39.40", "3423");
INSERT INTO `wp_rg_form_view` VALUES("8969", "6", "2015-02-21 17:00:48", "157.55.39.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("8970", "3", "2015-02-21 18:00:37", "66.249.67.77", "328");
INSERT INTO `wp_rg_form_view` VALUES("8971", "3", "2015-02-21 19:00:23", "66.249.67.85", "132");
INSERT INTO `wp_rg_form_view` VALUES("8972", "3", "2015-02-21 20:00:10", "202.46.61.124", "170");
INSERT INTO `wp_rg_form_view` VALUES("8973", "3", "2015-02-21 21:00:09", "66.249.67.77", "442");
INSERT INTO `wp_rg_form_view` VALUES("8974", "3", "2015-02-21 22:01:04", "66.249.67.85", "451");
INSERT INTO `wp_rg_form_view` VALUES("8975", "3", "2015-02-21 23:00:09", "66.249.67.77", "394");
INSERT INTO `wp_rg_form_view` VALUES("8976", "3", "2015-02-22 00:00:08", "66.249.67.77", "406");
INSERT INTO `wp_rg_form_view` VALUES("8977", "3", "2015-02-22 01:00:31", "66.249.67.77", "354");
INSERT INTO `wp_rg_form_view` VALUES("8978", "3", "2015-02-22 02:00:04", "5.231.76.116", "160");
INSERT INTO `wp_rg_form_view` VALUES("8979", "2", "2015-02-22 02:35:43", "23.247.173.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("8980", "3", "2015-02-22 03:17:54", "66.249.67.77", "272");
INSERT INTO `wp_rg_form_view` VALUES("8981", "6", "2015-02-22 03:20:57", "66.249.67.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("8982", "3", "2015-02-22 04:00:11", "66.249.67.85", "430");
INSERT INTO `wp_rg_form_view` VALUES("8983", "3", "2015-02-22 05:01:21", "66.249.67.85", "449");
INSERT INTO `wp_rg_form_view` VALUES("8984", "3", "2015-02-22 06:00:28", "66.249.67.93", "472");
INSERT INTO `wp_rg_form_view` VALUES("8985", "3", "2015-02-22 07:01:16", "66.249.67.85", "208");
INSERT INTO `wp_rg_form_view` VALUES("8986", "3", "2015-02-22 08:13:40", "66.249.67.77", "111");
INSERT INTO `wp_rg_form_view` VALUES("8987", "3", "2015-02-22 09:02:56", "202.46.61.101", "172");
INSERT INTO `wp_rg_form_view` VALUES("8988", "3", "2015-02-22 10:00:28", "66.249.67.77", "640");
INSERT INTO `wp_rg_form_view` VALUES("8989", "3", "2015-02-22 11:00:49", "66.249.67.77", "370");
INSERT INTO `wp_rg_form_view` VALUES("8990", "6", "2015-02-22 11:35:50", "66.249.67.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("8991", "3", "2015-02-22 12:00:24", "66.249.67.93", "388");
INSERT INTO `wp_rg_form_view` VALUES("8992", "3", "2015-02-22 13:01:05", "66.249.67.93", "402");
INSERT INTO `wp_rg_form_view` VALUES("8993", "3", "2015-02-22 14:00:03", "66.249.67.85", "366");
INSERT INTO `wp_rg_form_view` VALUES("8994", "3", "2015-02-22 15:02:48", "37.140.141.39", "86");
INSERT INTO `wp_rg_form_view` VALUES("8995", "3", "2015-02-22 16:03:00", "66.249.67.85", "70");
INSERT INTO `wp_rg_form_view` VALUES("8996", "3", "2015-02-22 17:20:23", "66.249.67.77", "74");
INSERT INTO `wp_rg_form_view` VALUES("8997", "7", "2015-02-22 18:04:52", "188.165.15.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("8998", "3", "2015-02-22 18:04:52", "188.165.15.19", "53");
INSERT INTO `wp_rg_form_view` VALUES("8999", "3", "2015-02-22 19:17:08", "66.249.67.77", "343");
INSERT INTO `wp_rg_form_view` VALUES("9000", "3", "2015-02-22 20:02:59", "68.180.228.245", "342");
INSERT INTO `wp_rg_form_view` VALUES("9001", "3", "2015-02-22 21:01:49", "66.249.79.85", "154");
INSERT INTO `wp_rg_form_view` VALUES("9002", "3", "2015-02-22 22:06:14", "66.249.79.77", "136");
INSERT INTO `wp_rg_form_view` VALUES("9003", "3", "2015-02-22 23:03:05", "66.249.79.77", "188");
INSERT INTO `wp_rg_form_view` VALUES("9004", "3", "2015-02-23 00:19:32", "202.46.61.100", "20");
INSERT INTO `wp_rg_form_view` VALUES("9005", "3", "2015-02-23 01:11:53", "188.165.15.60", "113");
INSERT INTO `wp_rg_form_view` VALUES("9006", "1", "2015-02-23 01:28:53", "198.211.104.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("9007", "2", "2015-02-23 01:28:54", "198.211.104.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("9008", "3", "2015-02-23 02:03:09", "207.106.190.66", "534");
INSERT INTO `wp_rg_form_view` VALUES("9009", "1", "2015-02-23 02:03:26", "207.106.190.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("9010", "7", "2015-02-23 02:38:03", "84.86.138.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("9011", "2", "2015-02-23 02:38:27", "84.86.138.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("9012", "3", "2015-02-23 03:02:48", "66.249.79.93", "68");
INSERT INTO `wp_rg_form_view` VALUES("9013", "3", "2015-02-23 04:36:47", "202.46.63.162", "48");
INSERT INTO `wp_rg_form_view` VALUES("9014", "3", "2015-02-23 05:17:01", "202.46.50.183", "1570");
INSERT INTO `wp_rg_form_view` VALUES("9015", "6", "2015-02-23 05:25:15", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("9016", "3", "2015-02-23 06:38:43", "202.46.50.181", "28");
INSERT INTO `wp_rg_form_view` VALUES("9017", "3", "2015-02-23 07:18:29", "202.46.48.49", "20");
INSERT INTO `wp_rg_form_view` VALUES("9018", "3", "2015-02-23 08:03:12", "220.181.108.76", "108");
INSERT INTO `wp_rg_form_view` VALUES("9019", "3", "2015-02-23 09:05:45", "66.249.67.85", "132");
INSERT INTO `wp_rg_form_view` VALUES("9020", "3", "2015-02-23 10:00:53", "68.180.228.245", "78");
INSERT INTO `wp_rg_form_view` VALUES("9021", "3", "2015-02-23 11:12:03", "66.249.67.93", "34");
INSERT INTO `wp_rg_form_view` VALUES("9022", "3", "2015-02-23 12:22:35", "68.180.228.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("9023", "3", "2015-02-23 13:22:47", "68.180.228.245", "40");
INSERT INTO `wp_rg_form_view` VALUES("9024", "3", "2015-02-23 14:59:32", "66.249.67.77", "10");
INSERT INTO `wp_rg_form_view` VALUES("9025", "3", "2015-02-23 15:25:41", "66.249.67.77", "140");
INSERT INTO `wp_rg_form_view` VALUES("9026", "3", "2015-02-23 16:07:16", "188.165.15.196", "198");
INSERT INTO `wp_rg_form_view` VALUES("9027", "3", "2015-02-23 17:24:08", "66.249.67.77", "30");
INSERT INTO `wp_rg_form_view` VALUES("9028", "3", "2015-02-23 18:04:36", "202.46.50.38", "162");
INSERT INTO `wp_rg_form_view` VALUES("9029", "6", "2015-02-23 18:08:16", "157.55.39.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("9030", "3", "2015-02-23 19:36:13", "66.249.67.77", "64");
INSERT INTO `wp_rg_form_view` VALUES("9031", "3", "2015-02-23 20:01:46", "66.249.67.77", "114");
INSERT INTO `wp_rg_form_view` VALUES("9032", "3", "2015-02-23 21:05:54", "66.249.67.85", "124");
INSERT INTO `wp_rg_form_view` VALUES("9033", "3", "2015-02-23 22:05:58", "66.249.67.85", "158");
INSERT INTO `wp_rg_form_view` VALUES("9034", "3", "2015-02-23 23:01:25", "66.249.67.85", "331");
INSERT INTO `wp_rg_form_view` VALUES("9035", "1", "2015-02-23 23:33:00", "199.21.99.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("9036", "3", "2015-02-24 00:00:53", "100.43.81.143", "426");
INSERT INTO `wp_rg_form_view` VALUES("9037", "1", "2015-02-24 00:50:50", "184.151.231.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("9038", "3", "2015-02-24 01:01:35", "66.249.67.85", "242");
INSERT INTO `wp_rg_form_view` VALUES("9039", "7", "2015-02-24 01:29:42", "100.43.91.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("9040", "3", "2015-02-24 02:01:26", "66.249.67.93", "154");
INSERT INTO `wp_rg_form_view` VALUES("9041", "3", "2015-02-24 03:04:26", "66.249.67.93", "576");
INSERT INTO `wp_rg_form_view` VALUES("9042", "2", "2015-02-24 03:13:09", "100.43.81.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("9043", "3", "2015-02-24 04:00:02", "68.180.228.245", "324");
INSERT INTO `wp_rg_form_view` VALUES("9044", "1", "2015-02-24 04:07:34", "24.68.96.10", "4");
INSERT INTO `wp_rg_form_view` VALUES("9045", "3", "2015-02-24 05:01:08", "66.249.67.85", "302");
INSERT INTO `wp_rg_form_view` VALUES("9046", "3", "2015-02-24 06:00:58", "66.249.67.77", "396");
INSERT INTO `wp_rg_form_view` VALUES("9047", "3", "2015-02-24 07:00:53", "66.249.67.93", "304");
INSERT INTO `wp_rg_form_view` VALUES("9048", "3", "2015-02-24 08:01:09", "66.249.67.77", "237");
INSERT INTO `wp_rg_form_view` VALUES("9049", "3", "2015-02-24 09:00:20", "66.249.67.93", "132");
INSERT INTO `wp_rg_form_view` VALUES("9050", "2", "2015-02-24 09:20:36", "104.143.16.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("9051", "3", "2015-02-24 10:06:34", "66.249.67.85", "131");
INSERT INTO `wp_rg_form_view` VALUES("9052", "1", "2015-02-24 10:12:35", "31.187.64.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("9053", "3", "2015-02-24 11:02:40", "66.249.67.93", "98");
INSERT INTO `wp_rg_form_view` VALUES("9054", "3", "2015-02-24 12:01:42", "66.249.67.85", "104");
INSERT INTO `wp_rg_form_view` VALUES("9055", "3", "2015-02-24 13:00:59", "66.249.67.93", "178");
INSERT INTO `wp_rg_form_view` VALUES("9056", "3", "2015-02-24 14:00:24", "66.249.67.93", "296");
INSERT INTO `wp_rg_form_view` VALUES("9057", "3", "2015-02-24 15:02:20", "217.69.133.229", "368");
INSERT INTO `wp_rg_form_view` VALUES("9058", "1", "2015-02-24 15:10:28", "77.255.197.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("9059", "3", "2015-02-24 16:00:08", "66.249.67.77", "254");
INSERT INTO `wp_rg_form_view` VALUES("9060", "3", "2015-02-24 17:05:33", "108.180.30.104", "81");
INSERT INTO `wp_rg_form_view` VALUES("9061", "3", "2015-02-24 18:00:46", "141.8.147.24", "104");
INSERT INTO `wp_rg_form_view` VALUES("9062", "3", "2015-02-24 19:02:16", "24.69.68.180", "184");
INSERT INTO `wp_rg_form_view` VALUES("9063", "3", "2015-02-24 20:00:30", "100.43.81.143", "154");
INSERT INTO `wp_rg_form_view` VALUES("9064", "1", "2015-02-24 20:41:46", "184.69.26.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("9065", "3", "2015-02-24 21:00:39", "66.249.67.93", "162");
INSERT INTO `wp_rg_form_view` VALUES("9066", "1", "2015-02-24 21:47:49", "66.249.67.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("9067", "3", "2015-02-24 22:01:30", "66.249.67.85", "338");
INSERT INTO `wp_rg_form_view` VALUES("9068", "1", "2015-02-24 22:14:17", "184.151.231.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("9069", "3", "2015-02-24 23:01:44", "66.249.67.93", "226");
INSERT INTO `wp_rg_form_view` VALUES("9070", "3", "2015-02-25 00:08:53", "100.43.81.143", "362");
INSERT INTO `wp_rg_form_view` VALUES("9071", "7", "2015-02-25 00:59:09", "82.49.173.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("9072", "1", "2015-02-25 00:59:25", "82.49.173.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("9073", "3", "2015-02-25 01:02:26", "100.43.81.143", "166");
INSERT INTO `wp_rg_form_view` VALUES("9074", "1", "2015-02-25 02:00:31", "31.187.64.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("9075", "3", "2015-02-25 02:00:31", "31.187.64.236", "1226");
INSERT INTO `wp_rg_form_view` VALUES("9076", "3", "2015-02-25 03:00:26", "66.249.67.85", "343");
INSERT INTO `wp_rg_form_view` VALUES("9077", "3", "2015-02-25 04:01:03", "66.249.67.93", "262");
INSERT INTO `wp_rg_form_view` VALUES("9078", "6", "2015-02-25 04:12:16", "100.43.85.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("9079", "3", "2015-02-25 05:07:36", "100.43.81.143", "84");
INSERT INTO `wp_rg_form_view` VALUES("9080", "3", "2015-02-25 06:01:06", "100.43.81.143", "234");
INSERT INTO `wp_rg_form_view` VALUES("9081", "3", "2015-02-25 07:00:39", "217.69.133.230", "142");
INSERT INTO `wp_rg_form_view` VALUES("9082", "3", "2015-02-25 08:06:55", "66.249.67.85", "172");
INSERT INTO `wp_rg_form_view` VALUES("9083", "3", "2015-02-25 09:02:52", "68.180.228.245", "170");
INSERT INTO `wp_rg_form_view` VALUES("9084", "1", "2015-02-25 10:00:35", "58.48.28.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("9085", "3", "2015-02-25 10:00:36", "58.48.28.136", "231");
INSERT INTO `wp_rg_form_view` VALUES("9086", "3", "2015-02-25 11:05:16", "202.46.49.197", "54");
INSERT INTO `wp_rg_form_view` VALUES("9087", "3", "2015-02-25 12:17:24", "100.43.91.18", "60");
INSERT INTO `wp_rg_form_view` VALUES("9088", "3", "2015-02-25 13:05:00", "66.249.67.77", "196");
INSERT INTO `wp_rg_form_view` VALUES("9089", "3", "2015-02-25 14:01:45", "66.249.67.93", "149");
INSERT INTO `wp_rg_form_view` VALUES("9090", "3", "2015-02-25 15:00:00", "217.69.133.228", "100");
INSERT INTO `wp_rg_form_view` VALUES("9091", "3", "2015-02-25 16:05:08", "100.43.91.18", "361");
INSERT INTO `wp_rg_form_view` VALUES("9092", "1", "2015-02-25 16:32:50", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("9093", "3", "2015-02-25 17:02:40", "100.43.81.143", "374");
INSERT INTO `wp_rg_form_view` VALUES("9094", "1", "2015-02-25 17:05:52", "199.21.99.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("9095", "2", "2015-02-25 17:14:12", "100.43.81.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("9096", "7", "2015-02-25 17:17:08", "100.43.91.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("9097", "3", "2015-02-25 18:04:01", "96.54.41.203", "72");
INSERT INTO `wp_rg_form_view` VALUES("9098", "3", "2015-02-25 19:08:32", "68.180.228.245", "902");
INSERT INTO `wp_rg_form_view` VALUES("9099", "3", "2015-02-25 20:13:41", "66.249.67.93", "196");
INSERT INTO `wp_rg_form_view` VALUES("9100", "3", "2015-02-25 21:06:22", "202.46.62.56", "60");
INSERT INTO `wp_rg_form_view` VALUES("9101", "3", "2015-02-25 22:14:13", "68.180.228.245", "72");
INSERT INTO `wp_rg_form_view` VALUES("9102", "1", "2015-02-25 22:19:37", "209.91.107.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("9103", "3", "2015-02-25 23:01:16", "68.180.228.245", "124");
INSERT INTO `wp_rg_form_view` VALUES("9104", "1", "2015-02-25 23:46:45", "209.91.107.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("9105", "3", "2015-02-26 00:02:09", "66.249.79.93", "40");
INSERT INTO `wp_rg_form_view` VALUES("9106", "3", "2015-02-26 01:06:34", "66.249.79.77", "276");
INSERT INTO `wp_rg_form_view` VALUES("9107", "1", "2015-02-26 01:38:23", "125.71.52.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("9108", "3", "2015-02-26 02:00:32", "100.43.85.24", "112");
INSERT INTO `wp_rg_form_view` VALUES("9109", "3", "2015-02-26 03:22:44", "66.249.79.77", "60");
INSERT INTO `wp_rg_form_view` VALUES("9110", "1", "2015-02-26 04:01:53", "96.50.106.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("9111", "3", "2015-02-26 04:01:53", "96.50.106.97", "160");
INSERT INTO `wp_rg_form_view` VALUES("9112", "3", "2015-02-26 05:06:53", "66.249.79.85", "150");
INSERT INTO `wp_rg_form_view` VALUES("9113", "3", "2015-02-26 06:15:06", "66.249.79.93", "50");
INSERT INTO `wp_rg_form_view` VALUES("9114", "3", "2015-02-26 07:02:14", "66.249.79.93", "138");
INSERT INTO `wp_rg_form_view` VALUES("9115", "2", "2015-02-26 07:51:43", "36.248.167.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("9116", "3", "2015-02-26 08:08:01", "66.249.79.85", "108");
INSERT INTO `wp_rg_form_view` VALUES("9117", "2", "2015-02-26 08:11:28", "36.248.167.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("9118", "3", "2015-02-26 09:16:26", "220.181.108.183", "120");
INSERT INTO `wp_rg_form_view` VALUES("9119", "3", "2015-02-26 10:04:51", "91.200.12.145", "178");
INSERT INTO `wp_rg_form_view` VALUES("9120", "3", "2015-02-26 11:03:09", "66.249.79.85", "80");
INSERT INTO `wp_rg_form_view` VALUES("9121", "3", "2015-02-26 12:03:49", "68.180.228.245", "446");
INSERT INTO `wp_rg_form_view` VALUES("9122", "3", "2015-02-26 13:07:02", "207.46.13.133", "3930");
INSERT INTO `wp_rg_form_view` VALUES("9123", "6", "2015-02-26 13:07:11", "207.46.13.133", "6");
INSERT INTO `wp_rg_form_view` VALUES("9124", "1", "2015-02-26 13:23:27", "65.111.164.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("9125", "3", "2015-02-26 14:05:40", "66.249.79.93", "120");
INSERT INTO `wp_rg_form_view` VALUES("9126", "3", "2015-02-26 15:03:10", "199.21.99.205", "146");
INSERT INTO `wp_rg_form_view` VALUES("9127", "3", "2015-02-26 16:03:08", "66.249.79.85", "100");
INSERT INTO `wp_rg_form_view` VALUES("9128", "3", "2015-02-26 17:05:49", "66.249.79.77", "70");
INSERT INTO `wp_rg_form_view` VALUES("9129", "3", "2015-02-26 18:01:20", "66.249.79.77", "80");
INSERT INTO `wp_rg_form_view` VALUES("9130", "3", "2015-02-26 19:16:42", "66.249.79.77", "54");
INSERT INTO `wp_rg_form_view` VALUES("9131", "3", "2015-02-26 20:02:41", "66.249.79.77", "108");
INSERT INTO `wp_rg_form_view` VALUES("9132", "3", "2015-02-26 21:01:49", "66.249.79.85", "60");
INSERT INTO `wp_rg_form_view` VALUES("9133", "3", "2015-02-26 22:05:45", "66.249.79.93", "94");
INSERT INTO `wp_rg_form_view` VALUES("9134", "3", "2015-02-26 23:00:51", "96.50.93.42", "140");
INSERT INTO `wp_rg_form_view` VALUES("9135", "1", "2015-02-26 23:14:00", "100.43.81.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("9136", "3", "2015-02-27 00:30:59", "68.180.228.245", "84");
INSERT INTO `wp_rg_form_view` VALUES("9137", "3", "2015-02-27 01:00:39", "66.249.79.85", "114");
INSERT INTO `wp_rg_form_view` VALUES("9138", "6", "2015-02-27 01:16:57", "199.21.99.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("9139", "3", "2015-02-27 02:08:21", "100.43.81.143", "30");
INSERT INTO `wp_rg_form_view` VALUES("9140", "3", "2015-02-27 03:03:27", "207.46.13.50", "160");
INSERT INTO `wp_rg_form_view` VALUES("9141", "3", "2015-02-27 04:06:07", "66.249.79.85", "170");
INSERT INTO `wp_rg_form_view` VALUES("9142", "2", "2015-02-27 04:24:10", "36.248.167.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("9143", "3", "2015-02-27 05:05:48", "66.249.79.77", "210");
INSERT INTO `wp_rg_form_view` VALUES("9144", "3", "2015-02-27 06:05:28", "207.46.13.50", "100");
INSERT INTO `wp_rg_form_view` VALUES("9145", "3", "2015-02-27 07:02:00", "66.249.79.85", "122");
INSERT INTO `wp_rg_form_view` VALUES("9146", "1", "2015-02-27 07:22:30", "192.99.141.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("9147", "3", "2015-02-27 08:02:13", "100.43.85.24", "80");
INSERT INTO `wp_rg_form_view` VALUES("9148", "3", "2015-02-27 09:07:39", "66.249.79.77", "70");
INSERT INTO `wp_rg_form_view` VALUES("9149", "3", "2015-02-27 10:05:17", "66.249.79.77", "60");
INSERT INTO `wp_rg_form_view` VALUES("9150", "1", "2015-02-27 10:39:28", "81.149.25.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("9151", "3", "2015-02-27 11:09:32", "66.249.79.85", "98");
INSERT INTO `wp_rg_form_view` VALUES("9152", "2", "2015-02-27 11:12:14", "36.248.167.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("9153", "7", "2015-02-27 11:58:57", "100.43.91.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("9154", "3", "2015-02-27 12:10:41", "66.249.79.93", "30");
INSERT INTO `wp_rg_form_view` VALUES("9155", "3", "2015-02-27 13:03:26", "66.249.79.77", "64");
INSERT INTO `wp_rg_form_view` VALUES("9156", "3", "2015-02-27 14:26:43", "66.249.79.77", "40");
INSERT INTO `wp_rg_form_view` VALUES("9157", "6", "2015-02-27 14:42:07", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("9158", "3", "2015-02-27 15:00:00", "66.249.79.93", "188");
INSERT INTO `wp_rg_form_view` VALUES("9159", "2", "2015-02-27 15:51:43", "66.249.79.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("9160", "3", "2015-02-27 16:06:31", "66.249.79.85", "100");
INSERT INTO `wp_rg_form_view` VALUES("9161", "3", "2015-02-27 17:01:29", "66.249.79.141", "214");
INSERT INTO `wp_rg_form_view` VALUES("9162", "6", "2015-02-27 17:22:33", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("9163", "2", "2015-02-27 17:26:18", "36.248.167.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("9164", "1", "2015-02-27 18:05:31", "202.46.48.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("9165", "3", "2015-02-27 18:05:31", "202.46.48.48", "122");
INSERT INTO `wp_rg_form_view` VALUES("9166", "3", "2015-02-27 19:07:39", "66.249.79.77", "50");
INSERT INTO `wp_rg_form_view` VALUES("9167", "1", "2015-02-27 20:06:32", "62.210.250.221", "2");
INSERT INTO `wp_rg_form_view` VALUES("9168", "3", "2015-02-27 20:06:33", "62.210.250.221", "172");
INSERT INTO `wp_rg_form_view` VALUES("9169", "3", "2015-02-27 21:09:37", "66.249.79.85", "64");
INSERT INTO `wp_rg_form_view` VALUES("9170", "3", "2015-02-27 22:17:40", "66.249.79.85", "32");
INSERT INTO `wp_rg_form_view` VALUES("9171", "3", "2015-02-27 23:06:56", "66.249.79.85", "65");
INSERT INTO `wp_rg_form_view` VALUES("9172", "3", "2015-02-28 00:03:20", "68.180.228.245", "420");
INSERT INTO `wp_rg_form_view` VALUES("9173", "3", "2015-02-28 01:04:21", "220.181.108.76", "20");
INSERT INTO `wp_rg_form_view` VALUES("9174", "3", "2015-02-28 02:00:30", "207.46.13.50", "102");
INSERT INTO `wp_rg_form_view` VALUES("9175", "3", "2015-02-28 03:09:51", "157.55.39.142", "2610");
INSERT INTO `wp_rg_form_view` VALUES("9176", "3", "2015-02-28 04:00:40", "157.55.39.15", "3361");
INSERT INTO `wp_rg_form_view` VALUES("9177", "3", "2015-02-28 05:00:08", "207.46.13.50", "3777");
INSERT INTO `wp_rg_form_view` VALUES("9178", "6", "2015-02-28 05:47:58", "207.46.13.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("9179", "3", "2015-02-28 06:00:06", "207.46.13.50", "3602");
INSERT INTO `wp_rg_form_view` VALUES("9180", "6", "2015-02-28 06:08:06", "157.55.39.14", "8");
INSERT INTO `wp_rg_form_view` VALUES("9181", "3", "2015-02-28 07:00:10", "157.55.39.183", "3783");
INSERT INTO `wp_rg_form_view` VALUES("9182", "3", "2015-02-28 08:00:00", "157.55.39.183", "4102");
INSERT INTO `wp_rg_form_view` VALUES("9183", "6", "2015-02-28 08:46:38", "207.46.13.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("9184", "3", "2015-02-28 09:00:16", "157.55.39.183", "4012");
INSERT INTO `wp_rg_form_view` VALUES("9185", "7", "2015-02-28 09:08:08", "188.165.15.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("9186", "3", "2015-02-28 10:00:00", "157.55.39.183", "3532");
INSERT INTO `wp_rg_form_view` VALUES("9187", "6", "2015-02-28 10:06:09", "157.55.39.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("9188", "3", "2015-02-28 11:00:00", "157.55.39.183", "3073");
INSERT INTO `wp_rg_form_view` VALUES("9189", "3", "2015-02-28 12:00:06", "157.55.39.183", "3968");
INSERT INTO `wp_rg_form_view` VALUES("9190", "6", "2015-02-28 12:05:04", "157.55.39.143", "6");
INSERT INTO `wp_rg_form_view` VALUES("9191", "3", "2015-02-28 13:00:17", "157.55.39.183", "3639");
INSERT INTO `wp_rg_form_view` VALUES("9192", "6", "2015-02-28 13:38:23", "157.55.39.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("9193", "3", "2015-02-28 14:00:21", "157.55.39.183", "3605");
INSERT INTO `wp_rg_form_view` VALUES("9194", "6", "2015-02-28 14:33:44", "157.55.39.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("9195", "3", "2015-02-28 15:00:00", "68.180.228.245", "3426");
INSERT INTO `wp_rg_form_view` VALUES("9196", "6", "2015-02-28 15:16:54", "157.55.39.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("9197", "3", "2015-02-28 16:00:02", "157.55.39.14", "3435");
INSERT INTO `wp_rg_form_view` VALUES("9198", "3", "2015-02-28 17:00:06", "207.46.13.50", "3789");
INSERT INTO `wp_rg_form_view` VALUES("9199", "3", "2015-02-28 18:00:00", "157.55.39.183", "3065");
INSERT INTO `wp_rg_form_view` VALUES("9200", "6", "2015-02-28 18:25:56", "207.46.13.50", "6");
INSERT INTO `wp_rg_form_view` VALUES("9201", "3", "2015-02-28 19:00:25", "207.46.13.50", "2763");
INSERT INTO `wp_rg_form_view` VALUES("9202", "6", "2015-02-28 19:38:10", "157.55.39.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("9203", "3", "2015-02-28 20:00:52", "157.55.39.14", "2747");
INSERT INTO `wp_rg_form_view` VALUES("9204", "6", "2015-02-28 20:30:42", "207.46.13.50", "6");
INSERT INTO `wp_rg_form_view` VALUES("9205", "3", "2015-02-28 21:00:16", "157.55.39.14", "2665");
INSERT INTO `wp_rg_form_view` VALUES("9206", "3", "2015-02-28 22:00:36", "157.55.39.183", "2492");
INSERT INTO `wp_rg_form_view` VALUES("9207", "6", "2015-02-28 22:06:51", "157.55.39.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("9208", "7", "2015-02-28 22:13:59", "207.46.13.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("9209", "3", "2015-02-28 23:00:09", "157.55.39.14", "2461");
INSERT INTO `wp_rg_form_view` VALUES("9210", "6", "2015-02-28 23:35:30", "207.46.13.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("9211", "3", "2015-03-01 00:00:04", "207.46.13.50", "2654");
INSERT INTO `wp_rg_form_view` VALUES("9212", "6", "2015-03-01 00:06:41", "157.55.39.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("9213", "2", "2015-03-01 00:30:29", "188.165.15.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("9214", "3", "2015-03-01 01:00:14", "157.55.39.14", "1840");
INSERT INTO `wp_rg_form_view` VALUES("9215", "6", "2015-03-01 01:55:40", "157.55.39.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("9216", "3", "2015-03-01 02:00:10", "157.55.39.183", "2014");
INSERT INTO `wp_rg_form_view` VALUES("9217", "3", "2015-03-01 03:00:06", "157.55.39.14", "2000");
INSERT INTO `wp_rg_form_view` VALUES("9218", "6", "2015-03-01 03:25:13", "157.55.39.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("9219", "3", "2015-03-01 04:00:06", "157.55.39.14", "2019");
INSERT INTO `wp_rg_form_view` VALUES("9220", "6", "2015-03-01 04:18:59", "207.46.13.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("9221", "3", "2015-03-01 05:00:28", "157.55.39.14", "2122");
INSERT INTO `wp_rg_form_view` VALUES("9222", "6", "2015-03-01 05:41:34", "157.55.39.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("9223", "3", "2015-03-01 06:00:12", "157.55.39.14", "2259");
INSERT INTO `wp_rg_form_view` VALUES("9224", "6", "2015-03-01 06:15:38", "157.55.39.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("9225", "3", "2015-03-01 07:00:20", "207.46.13.50", "2131");
INSERT INTO `wp_rg_form_view` VALUES("9226", "6", "2015-03-01 07:13:27", "157.55.39.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("9227", "3", "2015-03-01 08:00:10", "157.55.39.183", "1810");
INSERT INTO `wp_rg_form_view` VALUES("9228", "6", "2015-03-01 08:58:25", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("9229", "3", "2015-03-01 09:00:20", "207.46.13.50", "2179");
INSERT INTO `wp_rg_form_view` VALUES("9230", "6", "2015-03-01 09:31:06", "207.46.13.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("9231", "3", "2015-03-01 10:00:01", "157.55.39.183", "2206");
INSERT INTO `wp_rg_form_view` VALUES("9232", "3", "2015-03-01 11:00:16", "157.55.39.183", "2024");
INSERT INTO `wp_rg_form_view` VALUES("9233", "6", "2015-03-01 11:07:23", "157.55.39.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("9234", "6", "2015-03-01 12:00:21", "207.46.13.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("9235", "3", "2015-03-01 12:00:22", "207.46.13.50", "1935");
INSERT INTO `wp_rg_form_view` VALUES("9236", "3", "2015-03-01 13:00:09", "207.46.13.50", "2220");
INSERT INTO `wp_rg_form_view` VALUES("9237", "6", "2015-03-01 13:03:54", "157.55.39.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("9238", "7", "2015-03-01 13:22:40", "66.249.79.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("9239", "3", "2015-03-01 14:00:07", "157.55.39.183", "2125");
INSERT INTO `wp_rg_form_view` VALUES("9240", "6", "2015-03-01 14:21:49", "157.55.39.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("9241", "3", "2015-03-01 15:02:01", "157.55.39.183", "2254");
INSERT INTO `wp_rg_form_view` VALUES("9242", "6", "2015-03-01 15:46:48", "157.55.39.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("9243", "3", "2015-03-01 16:01:12", "207.46.13.50", "2059");
INSERT INTO `wp_rg_form_view` VALUES("9244", "6", "2015-03-01 16:19:52", "207.46.13.50", "8");
INSERT INTO `wp_rg_form_view` VALUES("9245", "3", "2015-03-01 17:00:42", "207.46.13.50", "2156");
INSERT INTO `wp_rg_form_view` VALUES("9246", "6", "2015-03-01 17:25:23", "207.46.13.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("9247", "3", "2015-03-01 18:00:13", "157.55.39.183", "2352");
INSERT INTO `wp_rg_form_view` VALUES("9248", "7", "2015-03-01 18:02:54", "70.121.184.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("9249", "1", "2015-03-01 18:03:23", "70.121.184.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("9250", "6", "2015-03-01 18:29:04", "207.46.13.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("9251", "3", "2015-03-01 19:00:43", "157.55.39.183", "2061");
INSERT INTO `wp_rg_form_view` VALUES("9252", "6", "2015-03-01 19:15:37", "207.46.13.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("9253", "1", "2015-03-01 19:29:28", "62.210.250.221", "2");
INSERT INTO `wp_rg_form_view` VALUES("9254", "3", "2015-03-01 20:00:08", "157.55.39.183", "2309");
INSERT INTO `wp_rg_form_view` VALUES("9255", "6", "2015-03-01 20:02:46", "157.55.39.14", "8");
INSERT INTO `wp_rg_form_view` VALUES("9256", "3", "2015-03-01 21:00:06", "157.55.39.183", "2752");
INSERT INTO `wp_rg_form_view` VALUES("9257", "6", "2015-03-01 21:00:48", "207.46.13.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("9258", "7", "2015-03-01 21:15:48", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("9259", "2", "2015-03-01 21:16:48", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("9260", "3", "2015-03-01 22:00:13", "157.55.39.14", "2250");
INSERT INTO `wp_rg_form_view` VALUES("9261", "3", "2015-03-01 23:00:48", "157.55.39.14", "2028");
INSERT INTO `wp_rg_form_view` VALUES("9262", "6", "2015-03-01 23:17:29", "207.46.13.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("9263", "3", "2015-03-02 00:00:03", "157.55.39.14", "1513");
INSERT INTO `wp_rg_form_view` VALUES("9264", "6", "2015-03-02 00:16:55", "157.55.39.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("9265", "3", "2015-03-02 01:00:45", "157.55.39.183", "1538");
INSERT INTO `wp_rg_form_view` VALUES("9266", "3", "2015-03-02 02:00:06", "157.55.39.183", "1473");
INSERT INTO `wp_rg_form_view` VALUES("9267", "3", "2015-03-02 03:00:14", "157.55.39.183", "1269");
INSERT INTO `wp_rg_form_view` VALUES("9268", "6", "2015-03-02 03:12:48", "157.55.39.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("9269", "3", "2015-03-02 04:00:00", "157.55.39.183", "578");
INSERT INTO `wp_rg_form_view` VALUES("9270", "3", "2015-03-02 05:05:59", "157.55.39.183", "138");
INSERT INTO `wp_rg_form_view` VALUES("9271", "3", "2015-03-02 06:05:24", "157.55.39.14", "315");
INSERT INTO `wp_rg_form_view` VALUES("9272", "3", "2015-03-02 07:00:34", "68.180.228.245", "78");
INSERT INTO `wp_rg_form_view` VALUES("9273", "3", "2015-03-02 08:02:40", "66.249.79.93", "152");
INSERT INTO `wp_rg_form_view` VALUES("9274", "6", "2015-03-02 08:39:46", "100.43.85.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("9275", "3", "2015-03-02 09:06:28", "66.249.79.77", "16");
INSERT INTO `wp_rg_form_view` VALUES("9276", "3", "2015-03-02 10:35:05", "66.249.79.77", "16");
INSERT INTO `wp_rg_form_view` VALUES("9277", "3", "2015-03-02 11:00:17", "188.165.15.202", "108");
INSERT INTO `wp_rg_form_view` VALUES("9278", "3", "2015-03-02 12:06:33", "66.249.79.85", "90");
INSERT INTO `wp_rg_form_view` VALUES("9279", "3", "2015-03-02 13:11:00", "66.249.79.85", "32");
INSERT INTO `wp_rg_form_view` VALUES("9280", "2", "2015-03-02 14:02:05", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("9281", "3", "2015-03-02 14:02:05", "68.180.228.245", "76");
INSERT INTO `wp_rg_form_view` VALUES("9282", "3", "2015-03-02 15:07:37", "66.249.79.77", "61");
INSERT INTO `wp_rg_form_view` VALUES("9283", "3", "2015-03-02 16:19:21", "208.87.234.180", "48");
INSERT INTO `wp_rg_form_view` VALUES("9284", "3", "2015-03-02 17:13:26", "68.180.228.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("9285", "3", "2015-03-02 18:12:54", "188.165.15.162", "217");
INSERT INTO `wp_rg_form_view` VALUES("9286", "1", "2015-03-02 18:36:55", "96.50.84.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("9287", "3", "2015-03-02 19:20:02", "66.249.79.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("9288", "3", "2015-03-02 20:07:04", "100.43.85.24", "48");
INSERT INTO `wp_rg_form_view` VALUES("9289", "3", "2015-03-02 21:26:45", "66.249.79.77", "64");
INSERT INTO `wp_rg_form_view` VALUES("9290", "3", "2015-03-02 22:07:33", "68.180.228.245", "108");
INSERT INTO `wp_rg_form_view` VALUES("9291", "1", "2015-03-02 22:21:23", "62.210.250.221", "2");
INSERT INTO `wp_rg_form_view` VALUES("9292", "3", "2015-03-02 23:03:16", "202.46.62.147", "62");
INSERT INTO `wp_rg_form_view` VALUES("9293", "3", "2015-03-03 00:08:45", "68.180.228.245", "46");
INSERT INTO `wp_rg_form_view` VALUES("9294", "3", "2015-03-03 01:00:00", "68.180.228.245", "282");
INSERT INTO `wp_rg_form_view` VALUES("9295", "7", "2015-03-03 01:23:15", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("9296", "3", "2015-03-03 02:12:40", "66.249.79.85", "26");
INSERT INTO `wp_rg_form_view` VALUES("9297", "3", "2015-03-03 03:02:36", "66.249.79.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("9298", "3", "2015-03-03 04:06:46", "66.249.79.77", "380");
INSERT INTO `wp_rg_form_view` VALUES("9299", "6", "2015-03-03 04:39:47", "207.46.13.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("9300", "2", "2015-03-03 04:39:54", "207.46.13.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("9301", "3", "2015-03-03 05:00:19", "66.249.79.93", "162");
INSERT INTO `wp_rg_form_view` VALUES("9302", "6", "2015-03-03 05:07:08", "207.46.13.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("9303", "3", "2015-03-03 06:50:55", "66.249.79.77", "8");
INSERT INTO `wp_rg_form_view` VALUES("9304", "3", "2015-03-03 07:23:16", "68.180.228.245", "44");
INSERT INTO `wp_rg_form_view` VALUES("9305", "3", "2015-03-03 08:08:04", "66.249.79.85", "22");
INSERT INTO `wp_rg_form_view` VALUES("9306", "3", "2015-03-03 09:30:07", "66.249.79.77", "8");
INSERT INTO `wp_rg_form_view` VALUES("9307", "3", "2015-03-03 10:04:37", "66.249.79.85", "36");
INSERT INTO `wp_rg_form_view` VALUES("9308", "3", "2015-03-03 11:08:09", "202.46.49.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("9309", "3", "2015-03-03 12:05:02", "66.249.79.93", "594");
INSERT INTO `wp_rg_form_view` VALUES("9310", "3", "2015-03-03 13:03:54", "66.249.79.85", "34");
INSERT INTO `wp_rg_form_view` VALUES("9311", "3", "2015-03-03 14:11:55", "66.249.79.93", "50");
INSERT INTO `wp_rg_form_view` VALUES("9312", "3", "2015-03-03 15:07:37", "66.249.79.85", "65");
INSERT INTO `wp_rg_form_view` VALUES("9313", "3", "2015-03-03 16:01:38", "144.76.155.8", "121");
INSERT INTO `wp_rg_form_view` VALUES("9314", "3", "2015-03-03 17:00:00", "66.249.79.93", "17");
INSERT INTO `wp_rg_form_view` VALUES("9315", "3", "2015-03-03 18:02:58", "66.249.79.85", "80");
INSERT INTO `wp_rg_form_view` VALUES("9316", "3", "2015-03-03 19:02:17", "66.249.79.77", "64");
INSERT INTO `wp_rg_form_view` VALUES("9317", "3", "2015-03-03 20:13:03", "24.69.69.153", "194");
INSERT INTO `wp_rg_form_view` VALUES("9318", "3", "2015-03-03 21:17:38", "66.249.79.93", "64");
INSERT INTO `wp_rg_form_view` VALUES("9319", "3", "2015-03-03 22:02:44", "91.200.12.49", "250");
INSERT INTO `wp_rg_form_view` VALUES("9320", "3", "2015-03-03 23:01:45", "66.249.79.85", "32");
INSERT INTO `wp_rg_form_view` VALUES("9321", "3", "2015-03-04 00:18:03", "157.55.39.121", "72");
INSERT INTO `wp_rg_form_view` VALUES("9322", "3", "2015-03-04 01:05:57", "66.249.79.77", "48");
INSERT INTO `wp_rg_form_view` VALUES("9323", "3", "2015-03-04 02:08:34", "66.249.79.93", "106");
INSERT INTO `wp_rg_form_view` VALUES("9324", "3", "2015-03-04 03:01:58", "66.249.79.93", "48");
INSERT INTO `wp_rg_form_view` VALUES("9325", "3", "2015-03-04 04:00:35", "5.45.80.5", "88");
INSERT INTO `wp_rg_form_view` VALUES("9326", "3", "2015-03-04 05:07:19", "24.108.90.101", "16");
INSERT INTO `wp_rg_form_view` VALUES("9327", "3", "2015-03-04 06:11:31", "66.249.79.85", "62");
INSERT INTO `wp_rg_form_view` VALUES("9328", "3", "2015-03-04 07:04:30", "157.55.39.121", "76");
INSERT INTO `wp_rg_form_view` VALUES("9329", "3", "2015-03-04 08:02:39", "66.249.79.77", "48");
INSERT INTO `wp_rg_form_view` VALUES("9330", "3", "2015-03-04 09:22:42", "66.249.79.93", "50");
INSERT INTO `wp_rg_form_view` VALUES("9331", "3", "2015-03-04 10:01:34", "68.180.228.245", "190");
INSERT INTO `wp_rg_form_view` VALUES("9332", "7", "2015-03-04 10:59:54", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("9333", "3", "2015-03-04 11:00:00", "84.85.74.170", "460");
INSERT INTO `wp_rg_form_view` VALUES("9334", "1", "2015-03-04 11:00:08", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("9335", "6", "2015-03-04 11:36:34", "157.55.39.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("9336", "3", "2015-03-04 12:10:01", "207.46.13.50", "198");
INSERT INTO `wp_rg_form_view` VALUES("9337", "6", "2015-03-04 12:11:48", "207.46.13.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("9338", "2", "2015-03-04 12:11:54", "207.46.13.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("9339", "3", "2015-03-04 13:22:39", "66.249.79.93", "16");
INSERT INTO `wp_rg_form_view` VALUES("9340", "3", "2015-03-04 14:04:04", "66.249.79.85", "540");
INSERT INTO `wp_rg_form_view` VALUES("9341", "6", "2015-03-04 14:56:20", "68.180.228.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("9342", "3", "2015-03-04 15:00:00", "68.180.228.245", "148");
INSERT INTO `wp_rg_form_view` VALUES("9343", "3", "2015-03-04 16:02:29", "66.249.79.93", "104");
INSERT INTO `wp_rg_form_view` VALUES("9344", "3", "2015-03-04 17:29:45", "184.69.125.34", "50");
INSERT INTO `wp_rg_form_view` VALUES("9345", "3", "2015-03-04 18:02:42", "184.66.155.53", "204");
INSERT INTO `wp_rg_form_view` VALUES("9346", "1", "2015-03-04 18:23:50", "125.71.53.39", "4");
INSERT INTO `wp_rg_form_view` VALUES("9347", "3", "2015-03-04 19:13:12", "184.69.125.34", "84");
INSERT INTO `wp_rg_form_view` VALUES("9348", "3", "2015-03-04 20:00:31", "66.249.79.77", "80");
INSERT INTO `wp_rg_form_view` VALUES("9349", "3", "2015-03-04 21:07:37", "66.249.79.77", "81");
INSERT INTO `wp_rg_form_view` VALUES("9350", "6", "2015-03-04 21:12:56", "174.48.23.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("9351", "3", "2015-03-04 22:00:40", "207.81.254.204", "164");
INSERT INTO `wp_rg_form_view` VALUES("9352", "7", "2015-03-04 22:50:02", "99.242.131.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("9353", "3", "2015-03-04 23:00:27", "96.50.93.42", "128");
INSERT INTO `wp_rg_form_view` VALUES("9354", "3", "2015-03-05 00:00:19", "66.249.79.77", "66");
INSERT INTO `wp_rg_form_view` VALUES("9355", "3", "2015-03-05 01:05:33", "68.180.228.245", "144");
INSERT INTO `wp_rg_form_view` VALUES("9356", "3", "2015-03-05 02:00:43", "68.180.228.245", "188");
INSERT INTO `wp_rg_form_view` VALUES("9357", "3", "2015-03-05 03:07:37", "66.249.79.77", "56");
INSERT INTO `wp_rg_form_view` VALUES("9358", "3", "2015-03-05 04:00:27", "66.249.79.85", "112");
INSERT INTO `wp_rg_form_view` VALUES("9359", "6", "2015-03-05 04:54:28", "144.76.185.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("9360", "3", "2015-03-05 05:05:49", "66.249.79.93", "204");
INSERT INTO `wp_rg_form_view` VALUES("9361", "3", "2015-03-05 06:01:27", "66.249.79.85", "200");
INSERT INTO `wp_rg_form_view` VALUES("9362", "3", "2015-03-05 07:00:20", "66.249.79.85", "270");
INSERT INTO `wp_rg_form_view` VALUES("9363", "3", "2015-03-05 08:01:14", "66.249.79.93", "200");
INSERT INTO `wp_rg_form_view` VALUES("9364", "3", "2015-03-05 09:32:36", "66.249.79.93", "32");
INSERT INTO `wp_rg_form_view` VALUES("9365", "3", "2015-03-05 10:00:36", "66.249.79.85", "104");
INSERT INTO `wp_rg_form_view` VALUES("9366", "3", "2015-03-05 11:13:13", "66.249.79.85", "133");
INSERT INTO `wp_rg_form_view` VALUES("9367", "3", "2015-03-05 12:00:28", "66.249.79.77", "300");
INSERT INTO `wp_rg_form_view` VALUES("9368", "3", "2015-03-05 13:00:48", "66.249.79.93", "410");
INSERT INTO `wp_rg_form_view` VALUES("9369", "3", "2015-03-05 14:00:13", "66.249.79.77", "370");
INSERT INTO `wp_rg_form_view` VALUES("9370", "6", "2015-03-05 14:46:35", "66.249.79.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("9371", "3", "2015-03-05 15:00:27", "66.249.79.85", "136");
INSERT INTO `wp_rg_form_view` VALUES("9372", "6", "2015-03-05 15:30:16", "162.210.196.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("9373", "1", "2015-03-05 15:59:51", "125.71.53.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("9374", "3", "2015-03-05 16:25:47", "66.249.79.85", "56");
INSERT INTO `wp_rg_form_view` VALUES("9375", "3", "2015-03-05 17:04:24", "66.249.79.77", "184");
INSERT INTO `wp_rg_form_view` VALUES("9376", "3", "2015-03-05 18:00:50", "66.249.79.85", "274");
INSERT INTO `wp_rg_form_view` VALUES("9377", "6", "2015-03-05 18:19:54", "66.249.79.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("9378", "3", "2015-03-05 19:01:28", "66.249.79.93", "218");
INSERT INTO `wp_rg_form_view` VALUES("9379", "6", "2015-03-05 19:06:33", "157.55.39.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("9380", "3", "2015-03-05 20:06:16", "66.249.79.93", "258");
INSERT INTO `wp_rg_form_view` VALUES("9381", "1", "2015-03-05 20:51:00", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("9382", "3", "2015-03-05 21:01:13", "66.249.79.93", "301");
INSERT INTO `wp_rg_form_view` VALUES("9383", "7", "2015-03-05 21:33:40", "184.69.117.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("9384", "3", "2015-03-05 22:00:57", "66.249.79.93", "132");
INSERT INTO `wp_rg_form_view` VALUES("9385", "7", "2015-03-05 22:24:08", "66.249.79.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("9386", "3", "2015-03-05 23:01:43", "66.249.79.77", "110");
INSERT INTO `wp_rg_form_view` VALUES("9387", "3", "2015-03-06 00:06:29", "66.249.79.93", "258");
INSERT INTO `wp_rg_form_view` VALUES("9388", "3", "2015-03-06 01:00:59", "66.249.79.93", "350");
INSERT INTO `wp_rg_form_view` VALUES("9389", "7", "2015-03-06 01:23:57", "202.46.62.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("9390", "6", "2015-03-06 01:36:15", "66.249.79.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("9391", "3", "2015-03-06 02:01:21", "66.249.79.77", "488");
INSERT INTO `wp_rg_form_view` VALUES("9392", "1", "2015-03-06 02:22:56", "184.66.38.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("9393", "3", "2015-03-06 03:00:20", "66.249.79.93", "334");
INSERT INTO `wp_rg_form_view` VALUES("9394", "3", "2015-03-06 04:00:12", "66.249.79.93", "152");
INSERT INTO `wp_rg_form_view` VALUES("9395", "1", "2015-03-06 04:30:56", "184.66.68.233", "4");
INSERT INTO `wp_rg_form_view` VALUES("9396", "3", "2015-03-06 05:03:52", "66.249.79.93", "120");
INSERT INTO `wp_rg_form_view` VALUES("9397", "2", "2015-03-06 05:24:56", "36.248.167.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("9398", "3", "2015-03-06 06:01:10", "66.249.79.85", "210");
INSERT INTO `wp_rg_form_view` VALUES("9399", "3", "2015-03-06 07:00:40", "66.249.79.85", "278");
INSERT INTO `wp_rg_form_view` VALUES("9400", "3", "2015-03-06 08:00:03", "66.249.79.77", "404");
INSERT INTO `wp_rg_form_view` VALUES("9401", "2", "2015-03-06 08:03:23", "36.248.167.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("9402", "3", "2015-03-06 09:00:51", "66.249.79.77", "1149");
INSERT INTO `wp_rg_form_view` VALUES("9403", "7", "2015-03-06 09:17:12", "54.174.55.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("9404", "1", "2015-03-06 09:17:33", "54.174.58.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("9405", "2", "2015-03-06 09:17:44", "54.174.57.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("9406", "3", "2015-03-06 10:00:27", "66.249.79.77", "250");
INSERT INTO `wp_rg_form_view` VALUES("9407", "3", "2015-03-06 11:05:41", "63.141.239.186", "2326");
INSERT INTO `wp_rg_form_view` VALUES("9408", "7", "2015-03-06 11:57:06", "207.46.13.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("9409", "6", "2015-03-06 11:59:08", "207.46.13.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("9410", "3", "2015-03-06 12:00:00", "157.55.39.121", "1040");
INSERT INTO `wp_rg_form_view` VALUES("9411", "6", "2015-03-06 12:00:26", "157.55.39.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("9412", "3", "2015-03-06 13:01:36", "66.249.79.93", "188");
INSERT INTO `wp_rg_form_view` VALUES("9413", "1", "2015-03-06 13:07:16", "198.27.66.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("9414", "3", "2015-03-06 14:00:31", "66.249.79.93", "314");
INSERT INTO `wp_rg_form_view` VALUES("9415", "1", "2015-03-06 14:18:47", "96.50.72.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("9416", "6", "2015-03-06 14:34:23", "66.249.79.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("9417", "3", "2015-03-06 15:01:21", "66.249.79.85", "298");
INSERT INTO `wp_rg_form_view` VALUES("9418", "3", "2015-03-06 16:04:33", "66.249.79.93", "250");
INSERT INTO `wp_rg_form_view` VALUES("9419", "3", "2015-03-06 17:00:02", "66.249.79.85", "256");
INSERT INTO `wp_rg_form_view` VALUES("9420", "3", "2015-03-06 18:01:10", "66.249.79.85", "64");
INSERT INTO `wp_rg_form_view` VALUES("9421", "7", "2015-03-06 18:06:29", "220.181.108.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("9422", "3", "2015-03-06 19:01:02", "184.66.97.35", "64");
INSERT INTO `wp_rg_form_view` VALUES("9423", "3", "2015-03-06 20:00:46", "220.181.108.120", "138");
INSERT INTO `wp_rg_form_view` VALUES("9424", "3", "2015-03-06 21:03:02", "184.151.231.120", "96");
INSERT INTO `wp_rg_form_view` VALUES("9425", "3", "2015-03-06 22:00:17", "66.249.79.85", "200");
INSERT INTO `wp_rg_form_view` VALUES("9426", "3", "2015-03-06 23:08:53", "66.249.79.77", "160");
INSERT INTO `wp_rg_form_view` VALUES("9427", "3", "2015-03-07 00:01:37", "207.46.13.101", "84");
INSERT INTO `wp_rg_form_view` VALUES("9428", "3", "2015-03-07 01:02:34", "66.249.79.85", "104");
INSERT INTO `wp_rg_form_view` VALUES("9429", "3", "2015-03-07 02:12:37", "66.249.79.77", "48");
INSERT INTO `wp_rg_form_view` VALUES("9430", "3", "2015-03-07 03:05:50", "66.249.79.85", "327");
INSERT INTO `wp_rg_form_view` VALUES("9431", "2", "2015-03-07 03:37:59", "172.245.66.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("9432", "7", "2015-03-07 03:42:26", "185.13.202.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("9433", "1", "2015-03-07 03:42:48", "185.13.202.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("9434", "3", "2015-03-07 04:00:51", "66.249.79.85", "168");
INSERT INTO `wp_rg_form_view` VALUES("9435", "3", "2015-03-07 05:02:26", "75.154.237.159", "184");
INSERT INTO `wp_rg_form_view` VALUES("9436", "3", "2015-03-07 06:00:05", "68.180.228.245", "146");
INSERT INTO `wp_rg_form_view` VALUES("9437", "3", "2015-03-07 07:01:07", "66.249.79.77", "322");
INSERT INTO `wp_rg_form_view` VALUES("9438", "3", "2015-03-07 08:00:39", "66.249.79.85", "400");
INSERT INTO `wp_rg_form_view` VALUES("9439", "3", "2015-03-07 09:00:50", "66.249.79.85", "334");
INSERT INTO `wp_rg_form_view` VALUES("9440", "6", "2015-03-07 09:26:41", "66.249.79.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("9441", "3", "2015-03-07 10:02:45", "66.249.79.93", "170");
INSERT INTO `wp_rg_form_view` VALUES("9442", "1", "2015-03-07 10:37:54", "66.249.79.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("9443", "3", "2015-03-07 11:00:39", "66.249.79.93", "172");
INSERT INTO `wp_rg_form_view` VALUES("9444", "3", "2015-03-07 12:00:26", "66.249.79.77", "128");
INSERT INTO `wp_rg_form_view` VALUES("9445", "3", "2015-03-07 13:03:37", "207.46.13.51", "92");
INSERT INTO `wp_rg_form_view` VALUES("9446", "3", "2015-03-07 14:00:52", "100.43.85.24", "228");
INSERT INTO `wp_rg_form_view` VALUES("9447", "2", "2015-03-07 14:01:48", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("9448", "3", "2015-03-07 15:00:54", "66.249.79.77", "286");
INSERT INTO `wp_rg_form_view` VALUES("9449", "3", "2015-03-07 16:00:12", "66.249.79.77", "278");
INSERT INTO `wp_rg_form_view` VALUES("9450", "1", "2015-03-07 16:44:16", "125.71.53.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("9451", "3", "2015-03-07 17:00:11", "66.249.79.93", "174");
INSERT INTO `wp_rg_form_view` VALUES("9452", "2", "2015-03-07 17:01:28", "36.248.167.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("9453", "3", "2015-03-07 18:01:19", "66.249.79.85", "142");
INSERT INTO `wp_rg_form_view` VALUES("9454", "6", "2015-03-07 18:30:59", "100.43.81.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("9455", "3", "2015-03-07 19:05:38", "66.249.79.85", "164");
INSERT INTO `wp_rg_form_view` VALUES("9456", "3", "2015-03-07 20:00:52", "66.249.79.77", "1650");
INSERT INTO `wp_rg_form_view` VALUES("9457", "2", "2015-03-07 20:22:34", "36.248.167.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("9458", "6", "2015-03-07 20:24:33", "66.249.79.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("9459", "3", "2015-03-07 21:00:00", "207.46.13.6", "6734");
INSERT INTO `wp_rg_form_view` VALUES("9460", "3", "2015-03-07 22:00:17", "207.46.13.6", "7314");
INSERT INTO `wp_rg_form_view` VALUES("9461", "6", "2015-03-07 22:27:03", "66.249.79.85", "4");
INSERT INTO `wp_rg_form_view` VALUES("9462", "3", "2015-03-07 23:00:00", "207.46.13.6", "7133");
INSERT INTO `wp_rg_form_view` VALUES("9463", "3", "2015-03-08 00:00:00", "207.46.13.51", "7212");
INSERT INTO `wp_rg_form_view` VALUES("9464", "3", "2015-03-08 01:00:00", "157.55.39.12", "7242");
INSERT INTO `wp_rg_form_view` VALUES("9465", "3", "2015-03-08 02:00:00", "207.46.13.6", "7078");
INSERT INTO `wp_rg_form_view` VALUES("9466", "3", "2015-03-08 03:00:00", "157.55.39.12", "7496");
INSERT INTO `wp_rg_form_view` VALUES("9467", "3", "2015-03-08 04:00:09", "207.46.13.101", "8300");
INSERT INTO `wp_rg_form_view` VALUES("9468", "1", "2015-03-08 04:51:08", "162.243.218.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("9469", "3", "2015-03-08 05:00:00", "207.46.13.6", "8929");
INSERT INTO `wp_rg_form_view` VALUES("9470", "6", "2015-03-08 05:09:01", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("9471", "3", "2015-03-08 06:00:08", "157.55.39.11", "6118");
INSERT INTO `wp_rg_form_view` VALUES("9472", "3", "2015-03-08 07:00:15", "207.46.13.51", "5951");
INSERT INTO `wp_rg_form_view` VALUES("9473", "3", "2015-03-08 08:00:00", "207.46.13.6", "5642");
INSERT INTO `wp_rg_form_view` VALUES("9474", "6", "2015-03-08 08:26:37", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9475", "3", "2015-03-08 09:00:01", "207.46.13.51", "5350");
INSERT INTO `wp_rg_form_view` VALUES("9476", "3", "2015-03-08 10:00:00", "207.46.13.51", "5413");
INSERT INTO `wp_rg_form_view` VALUES("9477", "3", "2015-03-08 11:00:14", "207.46.13.6", "5287");
INSERT INTO `wp_rg_form_view` VALUES("9478", "3", "2015-03-08 12:00:00", "207.46.13.6", "5658");
INSERT INTO `wp_rg_form_view` VALUES("9479", "3", "2015-03-08 13:00:07", "157.55.39.11", "6732");
INSERT INTO `wp_rg_form_view` VALUES("9480", "3", "2015-03-08 14:00:00", "207.46.13.51", "5980");
INSERT INTO `wp_rg_form_view` VALUES("9481", "3", "2015-03-08 15:00:00", "207.46.13.6", "5622");
INSERT INTO `wp_rg_form_view` VALUES("9482", "3", "2015-03-08 16:00:00", "207.46.13.6", "7265");
INSERT INTO `wp_rg_form_view` VALUES("9483", "3", "2015-03-08 16:00:00", "207.46.13.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("9484", "3", "2015-03-08 17:00:14", "207.46.13.51", "6837");
INSERT INTO `wp_rg_form_view` VALUES("9485", "6", "2015-03-08 17:23:18", "207.46.13.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("9486", "1", "2015-03-08 17:48:16", "198.27.66.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("9487", "3", "2015-03-08 18:00:05", "207.46.13.6", "6205");
INSERT INTO `wp_rg_form_view` VALUES("9488", "3", "2015-03-08 19:00:01", "207.46.13.51", "6009");
INSERT INTO `wp_rg_form_view` VALUES("9489", "3", "2015-03-08 20:00:00", "207.46.13.51", "5804");
INSERT INTO `wp_rg_form_view` VALUES("9490", "3", "2015-03-08 21:00:06", "157.55.39.12", "6421");
INSERT INTO `wp_rg_form_view` VALUES("9491", "2", "2015-03-08 21:13:41", "36.248.167.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("9492", "3", "2015-03-08 22:00:00", "207.46.13.51", "5916");
INSERT INTO `wp_rg_form_view` VALUES("9493", "3", "2015-03-08 23:00:03", "207.46.13.51", "6511");
INSERT INTO `wp_rg_form_view` VALUES("9494", "3", "2015-03-09 00:00:00", "207.46.13.6", "5776");
INSERT INTO `wp_rg_form_view` VALUES("9495", "3", "2015-03-09 01:00:04", "207.46.13.52", "6549");
INSERT INTO `wp_rg_form_view` VALUES("9496", "3", "2015-03-09 02:00:00", "207.46.13.6", "5057");
INSERT INTO `wp_rg_form_view` VALUES("9497", "6", "2015-03-09 02:57:42", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9498", "3", "2015-03-09 03:00:00", "207.46.13.52", "6054");
INSERT INTO `wp_rg_form_view` VALUES("9499", "3", "2015-03-09 04:00:00", "207.46.13.6", "6132");
INSERT INTO `wp_rg_form_view` VALUES("9500", "6", "2015-03-09 04:03:35", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9501", "3", "2015-03-09 05:00:01", "157.55.39.12", "6211");
INSERT INTO `wp_rg_form_view` VALUES("9502", "6", "2015-03-09 05:24:06", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9503", "3", "2015-03-09 06:00:04", "207.46.13.51", "6027");
INSERT INTO `wp_rg_form_view` VALUES("9504", "1", "2015-03-09 06:33:51", "204.124.183.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("9505", "7", "2015-03-09 06:40:09", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("9506", "3", "2015-03-09 07:00:00", "207.46.13.6", "5887");
INSERT INTO `wp_rg_form_view` VALUES("9507", "3", "2015-03-09 08:00:00", "207.46.13.52", "6473");
INSERT INTO `wp_rg_form_view` VALUES("9508", "3", "2015-03-09 09:00:01", "207.46.13.6", "6482");
INSERT INTO `wp_rg_form_view` VALUES("9509", "1", "2015-03-09 09:28:56", "24.69.80.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("9510", "3", "2015-03-09 10:00:00", "157.55.39.12", "6248");
INSERT INTO `wp_rg_form_view` VALUES("9511", "3", "2015-03-09 11:00:00", "157.55.39.12", "6419");
INSERT INTO `wp_rg_form_view` VALUES("9512", "6", "2015-03-09 11:58:57", "207.46.13.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("9513", "3", "2015-03-09 12:00:03", "207.46.13.6", "6287");
INSERT INTO `wp_rg_form_view` VALUES("9514", "3", "2015-03-09 13:00:00", "157.55.39.12", "5954");
INSERT INTO `wp_rg_form_view` VALUES("9515", "3", "2015-03-09 14:00:01", "157.55.39.12", "6010");
INSERT INTO `wp_rg_form_view` VALUES("9516", "6", "2015-03-09 14:38:32", "66.249.67.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("9517", "3", "2015-03-09 15:00:00", "207.46.13.51", "5591");
INSERT INTO `wp_rg_form_view` VALUES("9518", "3", "2015-03-09 16:00:00", "207.46.13.51", "6236");
INSERT INTO `wp_rg_form_view` VALUES("9519", "3", "2015-03-09 17:00:00", "207.46.13.51", "5915");
INSERT INTO `wp_rg_form_view` VALUES("9520", "3", "2015-03-09 18:00:00", "157.55.39.12", "6324");
INSERT INTO `wp_rg_form_view` VALUES("9521", "6", "2015-03-09 18:38:36", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("9522", "3", "2015-03-09 19:00:04", "66.249.67.77", "6385");
INSERT INTO `wp_rg_form_view` VALUES("9523", "3", "2015-03-09 20:00:05", "207.46.13.51", "6256");
INSERT INTO `wp_rg_form_view` VALUES("9524", "3", "2015-03-09 21:00:24", "207.46.13.6", "5414");
INSERT INTO `wp_rg_form_view` VALUES("9525", "7", "2015-03-09 21:58:08", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("9526", "3", "2015-03-09 22:00:46", "207.46.13.52", "1742");
INSERT INTO `wp_rg_form_view` VALUES("9527", "6", "2015-03-09 22:45:05", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("9528", "3", "2015-03-09 23:00:29", "207.46.13.52", "1339");
INSERT INTO `wp_rg_form_view` VALUES("9529", "6", "2015-03-09 23:32:51", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9530", "3", "2015-03-10 00:00:09", "207.46.13.51", "1428");
INSERT INTO `wp_rg_form_view` VALUES("9531", "3", "2015-03-10 01:00:16", "207.46.13.6", "1504");
INSERT INTO `wp_rg_form_view` VALUES("9532", "3", "2015-03-10 02:00:17", "207.46.13.52", "1182");
INSERT INTO `wp_rg_form_view` VALUES("9533", "7", "2015-03-10 02:48:10", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("9534", "6", "2015-03-10 02:55:41", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("9535", "3", "2015-03-10 03:00:10", "207.46.13.6", "1683");
INSERT INTO `wp_rg_form_view` VALUES("9536", "7", "2015-03-10 03:10:39", "100.43.85.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("9537", "6", "2015-03-10 03:37:41", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9538", "3", "2015-03-10 04:00:00", "157.55.39.12", "1635");
INSERT INTO `wp_rg_form_view` VALUES("9539", "6", "2015-03-10 04:27:38", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9540", "3", "2015-03-10 05:00:28", "157.55.39.12", "1552");
INSERT INTO `wp_rg_form_view` VALUES("9541", "3", "2015-03-10 06:01:01", "207.46.13.52", "1763");
INSERT INTO `wp_rg_form_view` VALUES("9542", "6", "2015-03-10 06:04:39", "207.46.13.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("9543", "3", "2015-03-10 07:00:02", "207.46.13.51", "1406");
INSERT INTO `wp_rg_form_view` VALUES("9544", "6", "2015-03-10 07:40:27", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("9545", "3", "2015-03-10 08:00:12", "207.46.13.6", "1538");
INSERT INTO `wp_rg_form_view` VALUES("9546", "3", "2015-03-10 09:00:00", "207.46.13.52", "1378");
INSERT INTO `wp_rg_form_view` VALUES("9547", "6", "2015-03-10 09:31:38", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9548", "3", "2015-03-10 10:00:38", "157.55.39.12", "1704");
INSERT INTO `wp_rg_form_view` VALUES("9549", "6", "2015-03-10 10:24:46", "207.46.13.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("9550", "3", "2015-03-10 11:00:26", "207.46.13.51", "1582");
INSERT INTO `wp_rg_form_view` VALUES("9551", "6", "2015-03-10 11:29:50", "207.46.13.6", "4");
INSERT INTO `wp_rg_form_view` VALUES("9552", "3", "2015-03-10 12:00:17", "207.46.13.51", "1212");
INSERT INTO `wp_rg_form_view` VALUES("9553", "3", "2015-03-10 13:00:31", "207.46.13.52", "1576");
INSERT INTO `wp_rg_form_view` VALUES("9554", "1", "2015-03-10 13:34:41", "195.154.250.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("9555", "3", "2015-03-10 14:00:38", "207.46.13.6", "1328");
INSERT INTO `wp_rg_form_view` VALUES("9556", "6", "2015-03-10 14:34:08", "207.46.13.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("9557", "3", "2015-03-10 15:00:59", "66.249.67.77", "1586");
INSERT INTO `wp_rg_form_view` VALUES("9558", "6", "2015-03-10 15:12:49", "157.55.39.12", "4");
INSERT INTO `wp_rg_form_view` VALUES("9559", "3", "2015-03-10 16:00:51", "68.180.228.245", "1249");
INSERT INTO `wp_rg_form_view` VALUES("9560", "3", "2015-03-10 17:00:45", "207.46.13.51", "1552");
INSERT INTO `wp_rg_form_view` VALUES("9561", "1", "2015-03-10 17:50:57", "195.154.250.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("9562", "6", "2015-03-10 17:56:51", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9563", "3", "2015-03-10 18:00:04", "207.46.13.51", "1559");
INSERT INTO `wp_rg_form_view` VALUES("9564", "2", "2015-03-10 18:22:30", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("9565", "7", "2015-03-10 18:24:35", "154.20.7.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("9566", "1", "2015-03-10 18:27:29", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("9567", "6", "2015-03-10 18:52:12", "207.46.13.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("9568", "3", "2015-03-10 19:00:45", "157.55.39.12", "1502");
INSERT INTO `wp_rg_form_view` VALUES("9569", "6", "2015-03-10 19:00:56", "207.46.13.6", "4");
INSERT INTO `wp_rg_form_view` VALUES("9570", "3", "2015-03-10 20:00:42", "157.55.39.12", "1606");
INSERT INTO `wp_rg_form_view` VALUES("9571", "3", "2015-03-10 21:00:51", "207.46.13.6", "1440");
INSERT INTO `wp_rg_form_view` VALUES("9572", "6", "2015-03-10 21:01:27", "207.46.13.52", "4");
INSERT INTO `wp_rg_form_view` VALUES("9573", "3", "2015-03-10 22:00:15", "207.46.13.6", "1634");
INSERT INTO `wp_rg_form_view` VALUES("9574", "7", "2015-03-10 22:42:02", "207.46.13.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("9575", "3", "2015-03-10 23:01:16", "207.46.13.51", "2078");
INSERT INTO `wp_rg_form_view` VALUES("9576", "3", "2015-03-11 00:00:09", "207.46.13.52", "1340");
INSERT INTO `wp_rg_form_view` VALUES("9577", "6", "2015-03-11 00:10:42", "157.55.39.12", "6");
INSERT INTO `wp_rg_form_view` VALUES("9578", "3", "2015-03-11 01:00:25", "207.46.13.51", "1570");
INSERT INTO `wp_rg_form_view` VALUES("9579", "6", "2015-03-11 01:09:41", "207.46.13.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("9580", "7", "2015-03-11 01:20:41", "175.142.180.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("9581", "1", "2015-03-11 01:20:59", "175.142.180.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("9582", "3", "2015-03-11 02:00:19", "207.46.13.51", "1204");
INSERT INTO `wp_rg_form_view` VALUES("9583", "1", "2015-03-11 02:46:21", "195.154.250.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("9584", "3", "2015-03-11 03:00:42", "217.69.133.227", "1796");
INSERT INTO `wp_rg_form_view` VALUES("9585", "6", "2015-03-11 03:46:41", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9586", "3", "2015-03-11 04:00:00", "207.46.13.52", "1262");
INSERT INTO `wp_rg_form_view` VALUES("9587", "7", "2015-03-11 04:44:18", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("9588", "6", "2015-03-11 04:49:22", "157.55.39.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("9589", "3", "2015-03-11 05:00:00", "207.46.13.52", "1366");
INSERT INTO `wp_rg_form_view` VALUES("9590", "1", "2015-03-11 05:19:05", "195.154.250.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("9591", "3", "2015-03-11 06:00:17", "207.46.13.51", "1484");
INSERT INTO `wp_rg_form_view` VALUES("9592", "6", "2015-03-11 06:03:53", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9593", "3", "2015-03-11 07:01:02", "207.46.13.51", "1116");
INSERT INTO `wp_rg_form_view` VALUES("9594", "6", "2015-03-11 07:05:00", "157.55.39.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("9595", "3", "2015-03-11 08:00:11", "207.46.13.51", "1290");
INSERT INTO `wp_rg_form_view` VALUES("9596", "6", "2015-03-11 08:21:35", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9597", "3", "2015-03-11 09:00:14", "68.180.228.245", "1524");
INSERT INTO `wp_rg_form_view` VALUES("9598", "6", "2015-03-11 09:36:21", "207.46.13.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("9599", "3", "2015-03-11 10:00:21", "207.46.13.6", "1062");
INSERT INTO `wp_rg_form_view` VALUES("9600", "3", "2015-03-11 11:00:47", "157.55.39.84", "1146");
INSERT INTO `wp_rg_form_view` VALUES("9601", "2", "2015-03-11 11:58:14", "66.249.67.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("9602", "3", "2015-03-11 12:01:06", "66.249.67.77", "834");
INSERT INTO `wp_rg_form_view` VALUES("9603", "6", "2015-03-11 12:23:47", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9604", "3", "2015-03-11 13:00:33", "207.46.13.52", "1358");
INSERT INTO `wp_rg_form_view` VALUES("9605", "3", "2015-03-11 14:01:50", "207.46.13.52", "1070");
INSERT INTO `wp_rg_form_view` VALUES("9606", "3", "2015-03-11 15:00:12", "66.249.67.85", "1749");
INSERT INTO `wp_rg_form_view` VALUES("9607", "3", "2015-03-11 16:00:42", "157.55.39.84", "2179");
INSERT INTO `wp_rg_form_view` VALUES("9608", "6", "2015-03-11 16:28:11", "207.46.13.6", "4");
INSERT INTO `wp_rg_form_view` VALUES("9609", "3", "2015-03-11 17:00:53", "66.249.67.93", "1424");
INSERT INTO `wp_rg_form_view` VALUES("9610", "6", "2015-03-11 17:26:33", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9611", "3", "2015-03-11 18:00:14", "207.46.13.51", "1832");
INSERT INTO `wp_rg_form_view` VALUES("9612", "6", "2015-03-11 18:45:56", "207.46.13.52", "4");
INSERT INTO `wp_rg_form_view` VALUES("9613", "3", "2015-03-11 19:00:15", "157.55.39.84", "1734");
INSERT INTO `wp_rg_form_view` VALUES("9614", "1", "2015-03-11 19:13:14", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("9615", "6", "2015-03-11 19:21:40", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9616", "3", "2015-03-11 20:00:24", "157.55.39.84", "1756");
INSERT INTO `wp_rg_form_view` VALUES("9617", "3", "2015-03-11 21:00:22", "66.249.67.93", "1568");
INSERT INTO `wp_rg_form_view` VALUES("9618", "6", "2015-03-11 21:36:06", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9619", "3", "2015-03-11 22:00:04", "207.46.13.6", "1416");
INSERT INTO `wp_rg_form_view` VALUES("9620", "3", "2015-03-11 23:00:39", "66.249.67.85", "5791");
INSERT INTO `wp_rg_form_view` VALUES("9621", "7", "2015-03-11 23:31:41", "217.160.166.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("9622", "2", "2015-03-11 23:31:55", "217.160.166.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("9623", "1", "2015-03-11 23:31:58", "217.160.166.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("9624", "3", "2015-03-12 00:00:00", "217.160.166.101", "2299");
INSERT INTO `wp_rg_form_view` VALUES("9625", "6", "2015-03-12 00:02:16", "217.160.166.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("9626", "2", "2015-03-12 00:10:50", "188.165.15.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("9627", "1", "2015-03-12 00:15:12", "208.43.252.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("9628", "7", "2015-03-12 00:15:26", "208.43.252.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("9629", "3", "2015-03-12 01:00:24", "157.55.39.84", "1452");
INSERT INTO `wp_rg_form_view` VALUES("9630", "6", "2015-03-12 01:19:53", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9631", "6", "2015-03-12 02:00:32", "46.211.11.0", "4");
INSERT INTO `wp_rg_form_view` VALUES("9632", "3", "2015-03-12 02:00:33", "46.211.11.0", "1859");
INSERT INTO `wp_rg_form_view` VALUES("9633", "3", "2015-03-12 03:00:00", "207.46.13.52", "1782");
INSERT INTO `wp_rg_form_view` VALUES("9634", "2", "2015-03-12 03:15:42", "172.245.120.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("9635", "6", "2015-03-12 03:47:25", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9636", "3", "2015-03-12 04:00:03", "157.55.39.84", "1546");
INSERT INTO `wp_rg_form_view` VALUES("9637", "6", "2015-03-12 04:14:47", "207.46.13.52", "5");
INSERT INTO `wp_rg_form_view` VALUES("9638", "3", "2015-03-12 05:00:22", "207.46.13.51", "1742");
INSERT INTO `wp_rg_form_view` VALUES("9639", "6", "2015-03-12 05:59:15", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("9640", "3", "2015-03-12 06:00:11", "157.55.39.84", "1776");
INSERT INTO `wp_rg_form_view` VALUES("9641", "3", "2015-03-12 07:00:36", "157.55.39.84", "1670");
INSERT INTO `wp_rg_form_view` VALUES("9642", "3", "2015-03-12 08:00:19", "207.46.13.52", "1560");
INSERT INTO `wp_rg_form_view` VALUES("9643", "6", "2015-03-12 08:24:10", "207.46.13.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("9644", "3", "2015-03-12 09:00:28", "66.249.67.85", "1434");
INSERT INTO `wp_rg_form_view` VALUES("9645", "3", "2015-03-12 10:00:17", "207.46.13.51", "1620");
INSERT INTO `wp_rg_form_view` VALUES("9646", "6", "2015-03-12 10:39:42", "68.180.228.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("9647", "3", "2015-03-12 11:02:40", "66.249.67.77", "1210");
INSERT INTO `wp_rg_form_view` VALUES("9648", "6", "2015-03-12 11:14:28", "157.55.39.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("9649", "3", "2015-03-12 12:00:06", "207.46.13.51", "1246");
INSERT INTO `wp_rg_form_view` VALUES("9650", "3", "2015-03-12 13:00:23", "207.46.13.51", "1125");
INSERT INTO `wp_rg_form_view` VALUES("9651", "6", "2015-03-12 13:52:06", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9652", "3", "2015-03-12 14:00:10", "207.46.13.51", "1158");
INSERT INTO `wp_rg_form_view` VALUES("9653", "6", "2015-03-12 14:35:21", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9654", "3", "2015-03-12 15:00:33", "207.46.13.51", "1246");
INSERT INTO `wp_rg_form_view` VALUES("9655", "6", "2015-03-12 15:28:19", "207.46.13.52", "4");
INSERT INTO `wp_rg_form_view` VALUES("9656", "2", "2015-03-12 15:57:21", "84.155.179.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("9657", "3", "2015-03-12 16:00:48", "207.46.13.52", "1254");
INSERT INTO `wp_rg_form_view` VALUES("9658", "7", "2015-03-12 16:04:38", "202.46.61.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("9659", "6", "2015-03-12 16:26:33", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9660", "3", "2015-03-12 17:00:00", "157.55.39.105", "902");
INSERT INTO `wp_rg_form_view` VALUES("9661", "1", "2015-03-12 17:37:44", "155.133.18.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("9662", "3", "2015-03-12 18:00:24", "207.46.13.51", "1344");
INSERT INTO `wp_rg_form_view` VALUES("9663", "6", "2015-03-12 18:50:56", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("9664", "3", "2015-03-12 19:00:27", "66.249.67.93", "1556");
INSERT INTO `wp_rg_form_view` VALUES("9665", "7", "2015-03-12 19:02:58", "207.46.13.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("9666", "6", "2015-03-12 19:13:51", "207.46.13.51", "8");
INSERT INTO `wp_rg_form_view` VALUES("9667", "3", "2015-03-12 20:00:22", "207.46.13.51", "1132");
INSERT INTO `wp_rg_form_view` VALUES("9668", "6", "2015-03-12 20:02:37", "207.46.13.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("9669", "2", "2015-03-12 20:54:26", "209.222.8.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("9670", "3", "2015-03-12 21:00:15", "157.55.39.105", "1245");
INSERT INTO `wp_rg_form_view` VALUES("9671", "6", "2015-03-12 21:00:23", "207.46.13.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("9672", "3", "2015-03-12 22:00:03", "157.55.39.105", "990");
INSERT INTO `wp_rg_form_view` VALUES("9673", "6", "2015-03-12 22:37:53", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9674", "3", "2015-03-12 23:00:15", "207.46.13.52", "988");
INSERT INTO `wp_rg_form_view` VALUES("9675", "3", "2015-03-13 00:04:02", "207.46.13.52", "1176");
INSERT INTO `wp_rg_form_view` VALUES("9676", "7", "2015-03-13 00:06:11", "207.46.13.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("9677", "6", "2015-03-13 00:44:21", "207.46.13.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("9678", "3", "2015-03-13 01:00:57", "209.222.8.75", "828");
INSERT INTO `wp_rg_form_view` VALUES("9679", "1", "2015-03-13 01:09:18", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("9680", "3", "2015-03-13 02:00:53", "207.46.13.51", "1104");
INSERT INTO `wp_rg_form_view` VALUES("9681", "6", "2015-03-13 02:03:28", "157.55.39.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("9682", "3", "2015-03-13 03:00:02", "157.55.39.105", "1077");
INSERT INTO `wp_rg_form_view` VALUES("9683", "6", "2015-03-13 03:34:21", "157.55.39.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("9684", "3", "2015-03-13 04:00:33", "207.46.13.51", "369");
INSERT INTO `wp_rg_form_view` VALUES("9685", "3", "2015-03-13 05:05:02", "66.249.67.77", "352");
INSERT INTO `wp_rg_form_view` VALUES("9686", "3", "2015-03-13 06:00:19", "157.55.39.105", "580");
INSERT INTO `wp_rg_form_view` VALUES("9687", "6", "2015-03-13 06:03:15", "66.249.67.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("9688", "2", "2015-03-13 06:14:29", "82.192.75.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("9689", "1", "2015-03-13 06:14:48", "82.192.75.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("9690", "7", "2015-03-13 06:15:19", "82.192.75.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("9691", "3", "2015-03-13 07:00:07", "66.249.67.93", "492");
INSERT INTO `wp_rg_form_view` VALUES("9692", "3", "2015-03-13 08:03:17", "157.55.39.105", "278");
INSERT INTO `wp_rg_form_view` VALUES("9693", "3", "2015-03-13 09:01:08", "66.249.67.77", "364");
INSERT INTO `wp_rg_form_view` VALUES("9694", "3", "2015-03-13 10:02:44", "157.55.39.105", "676");
INSERT INTO `wp_rg_form_view` VALUES("9695", "3", "2015-03-13 11:02:38", "66.249.67.85", "290");
INSERT INTO `wp_rg_form_view` VALUES("9696", "3", "2015-03-13 12:01:09", "66.249.67.85", "228");
INSERT INTO `wp_rg_form_view` VALUES("9697", "3", "2015-03-13 13:04:37", "66.249.67.85", "166");
INSERT INTO `wp_rg_form_view` VALUES("9698", "3", "2015-03-13 14:00:48", "66.249.67.93", "160");
INSERT INTO `wp_rg_form_view` VALUES("9699", "3", "2015-03-13 15:01:20", "66.249.67.85", "136");
INSERT INTO `wp_rg_form_view` VALUES("9700", "3", "2015-03-13 16:08:43", "66.249.67.77", "146");
INSERT INTO `wp_rg_form_view` VALUES("9701", "3", "2015-03-13 17:03:21", "66.249.67.93", "132");
INSERT INTO `wp_rg_form_view` VALUES("9702", "3", "2015-03-13 18:01:17", "66.249.67.85", "506");
INSERT INTO `wp_rg_form_view` VALUES("9703", "1", "2015-03-13 18:57:50", "174.127.133.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("9704", "2", "2015-03-13 19:00:07", "174.127.133.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("9705", "3", "2015-03-13 19:00:07", "174.127.133.51", "515");
INSERT INTO `wp_rg_form_view` VALUES("9706", "1", "2015-03-13 19:23:47", "174.127.133.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("9707", "3", "2015-03-13 20:00:22", "66.249.67.77", "582");
INSERT INTO `wp_rg_form_view` VALUES("9708", "2", "2015-03-13 20:03:22", "157.55.39.235", "2");
INSERT INTO `wp_rg_form_view` VALUES("9709", "3", "2015-03-13 21:00:07", "66.249.67.77", "454");
INSERT INTO `wp_rg_form_view` VALUES("9710", "3", "2015-03-13 22:03:09", "66.249.67.93", "866");
INSERT INTO `wp_rg_form_view` VALUES("9711", "1", "2015-03-13 22:45:55", "117.169.1.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("9712", "3", "2015-03-13 23:00:19", "66.249.67.85", "448");
INSERT INTO `wp_rg_form_view` VALUES("9713", "3", "2015-03-14 00:01:23", "66.249.67.77", "842");
INSERT INTO `wp_rg_form_view` VALUES("9714", "6", "2015-03-14 00:11:33", "157.55.39.79", "4");
INSERT INTO `wp_rg_form_view` VALUES("9715", "3", "2015-03-14 01:00:03", "66.249.67.77", "705");
INSERT INTO `wp_rg_form_view` VALUES("9716", "7", "2015-03-14 01:06:36", "100.43.81.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("9717", "3", "2015-03-14 02:01:14", "157.55.39.79", "386");
INSERT INTO `wp_rg_form_view` VALUES("9718", "3", "2015-03-14 03:00:22", "66.249.67.85", "452");
INSERT INTO `wp_rg_form_view` VALUES("9719", "1", "2015-03-14 03:27:08", "157.55.39.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("9720", "3", "2015-03-14 04:03:47", "157.55.39.192", "620");
INSERT INTO `wp_rg_form_view` VALUES("9721", "3", "2015-03-14 05:00:08", "66.249.67.77", "414");
INSERT INTO `wp_rg_form_view` VALUES("9722", "6", "2015-03-14 05:58:37", "66.249.67.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("9723", "3", "2015-03-14 06:01:11", "66.249.67.93", "350");
INSERT INTO `wp_rg_form_view` VALUES("9724", "3", "2015-03-14 07:01:09", "157.55.39.235", "310");
INSERT INTO `wp_rg_form_view` VALUES("9725", "3", "2015-03-14 08:01:06", "157.55.39.235", "491");
INSERT INTO `wp_rg_form_view` VALUES("9726", "3", "2015-03-14 08:01:06", "157.55.39.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("9727", "6", "2015-03-14 08:13:05", "157.55.39.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("9728", "1", "2015-03-14 08:15:05", "221.178.126.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("9729", "3", "2015-03-14 09:01:21", "66.249.67.93", "158");
INSERT INTO `wp_rg_form_view` VALUES("9730", "3", "2015-03-14 10:01:59", "207.46.13.6", "316");
INSERT INTO `wp_rg_form_view` VALUES("9731", "1", "2015-03-14 10:26:46", "155.133.18.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("9732", "3", "2015-03-14 11:01:16", "157.55.39.79", "246");
INSERT INTO `wp_rg_form_view` VALUES("9733", "3", "2015-03-14 12:00:12", "66.249.67.85", "282");
INSERT INTO `wp_rg_form_view` VALUES("9734", "3", "2015-03-14 13:00:04", "66.249.67.85", "236");
INSERT INTO `wp_rg_form_view` VALUES("9735", "3", "2015-03-14 14:00:01", "157.55.39.191", "344");
INSERT INTO `wp_rg_form_view` VALUES("9736", "3", "2015-03-14 15:00:53", "157.55.39.235", "364");
INSERT INTO `wp_rg_form_view` VALUES("9737", "6", "2015-03-14 15:10:48", "157.55.39.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("9738", "3", "2015-03-14 16:00:11", "157.55.39.235", "600");
INSERT INTO `wp_rg_form_view` VALUES("9739", "3", "2015-03-14 17:00:31", "157.55.39.235", "298");
INSERT INTO `wp_rg_form_view` VALUES("9740", "3", "2015-03-14 18:01:19", "209.222.8.75", "404");
INSERT INTO `wp_rg_form_view` VALUES("9741", "3", "2015-03-14 19:06:30", "66.249.67.85", "264");
INSERT INTO `wp_rg_form_view` VALUES("9742", "3", "2015-03-14 20:01:36", "157.55.39.235", "298");
INSERT INTO `wp_rg_form_view` VALUES("9743", "3", "2015-03-14 21:01:17", "157.55.39.191", "412");
INSERT INTO `wp_rg_form_view` VALUES("9744", "3", "2015-03-14 22:00:05", "157.55.39.235", "604");
INSERT INTO `wp_rg_form_view` VALUES("9745", "3", "2015-03-14 23:03:47", "207.46.13.6", "374");
INSERT INTO `wp_rg_form_view` VALUES("9746", "3", "2015-03-15 00:00:12", "157.55.39.235", "256");
INSERT INTO `wp_rg_form_view` VALUES("9747", "3", "2015-03-15 01:05:34", "157.55.39.191", "184");
INSERT INTO `wp_rg_form_view` VALUES("9748", "1", "2015-03-15 01:19:14", "199.21.99.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("9749", "3", "2015-03-15 02:00:27", "157.55.39.235", "290");
INSERT INTO `wp_rg_form_view` VALUES("9750", "3", "2015-03-15 03:00:06", "66.249.67.77", "186");
INSERT INTO `wp_rg_form_view` VALUES("9751", "3", "2015-03-15 04:00:49", "66.249.67.85", "240");
INSERT INTO `wp_rg_form_view` VALUES("9752", "3", "2015-03-15 05:01:20", "66.249.67.77", "422");
INSERT INTO `wp_rg_form_view` VALUES("9753", "2", "2015-03-15 05:26:14", "5.255.253.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("9754", "3", "2015-03-15 06:01:20", "66.249.67.85", "136");
INSERT INTO `wp_rg_form_view` VALUES("9755", "3", "2015-03-15 07:02:16", "157.55.39.235", "108");
INSERT INTO `wp_rg_form_view` VALUES("9756", "3", "2015-03-15 08:02:47", "202.46.50.38", "206");
INSERT INTO `wp_rg_form_view` VALUES("9757", "3", "2015-03-15 09:04:57", "157.55.39.191", "212");
INSERT INTO `wp_rg_form_view` VALUES("9758", "6", "2015-03-15 09:28:27", "157.55.39.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("9759", "3", "2015-03-15 10:00:21", "157.55.39.235", "202");
INSERT INTO `wp_rg_form_view` VALUES("9760", "3", "2015-03-15 11:02:57", "157.55.39.235", "238");
INSERT INTO `wp_rg_form_view` VALUES("9761", "3", "2015-03-15 12:00:21", "157.55.39.191", "181");
INSERT INTO `wp_rg_form_view` VALUES("9762", "1", "2015-03-15 12:27:10", "50.115.175.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("9763", "3", "2015-03-15 13:05:36", "157.55.39.235", "238");
INSERT INTO `wp_rg_form_view` VALUES("9764", "3", "2015-03-15 14:01:46", "207.46.13.6", "225");
INSERT INTO `wp_rg_form_view` VALUES("9765", "3", "2015-03-15 15:01:47", "66.249.67.85", "254");
INSERT INTO `wp_rg_form_view` VALUES("9766", "3", "2015-03-15 16:02:20", "66.249.67.93", "366");
INSERT INTO `wp_rg_form_view` VALUES("9767", "3", "2015-03-15 17:00:06", "66.249.67.77", "264");
INSERT INTO `wp_rg_form_view` VALUES("9768", "1", "2015-03-15 17:02:56", "141.8.189.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("9769", "3", "2015-03-15 18:04:39", "141.8.189.103", "300");
INSERT INTO `wp_rg_form_view` VALUES("9770", "3", "2015-03-15 19:00:28", "66.249.67.93", "270");
INSERT INTO `wp_rg_form_view` VALUES("9771", "3", "2015-03-15 20:00:22", "207.46.13.53", "246");
INSERT INTO `wp_rg_form_view` VALUES("9772", "3", "2015-03-15 21:00:40", "207.46.13.6", "1271");
INSERT INTO `wp_rg_form_view` VALUES("9773", "6", "2015-03-15 21:16:14", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9774", "3", "2015-03-15 22:00:03", "207.46.13.6", "2512");
INSERT INTO `wp_rg_form_view` VALUES("9775", "3", "2015-03-15 23:00:03", "207.46.13.6", "2724");
INSERT INTO `wp_rg_form_view` VALUES("9776", "6", "2015-03-15 23:37:49", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9777", "7", "2015-03-15 23:41:08", "141.8.189.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("9778", "3", "2015-03-16 00:00:34", "66.249.67.77", "3302");
INSERT INTO `wp_rg_form_view` VALUES("9779", "6", "2015-03-16 00:08:49", "157.55.39.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("9780", "3", "2015-03-16 01:00:11", "157.55.39.191", "3488");
INSERT INTO `wp_rg_form_view` VALUES("9781", "6", "2015-03-16 01:34:25", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9782", "3", "2015-03-16 02:00:01", "207.46.13.53", "3706");
INSERT INTO `wp_rg_form_view` VALUES("9783", "3", "2015-03-16 03:00:07", "207.46.13.6", "3188");
INSERT INTO `wp_rg_form_view` VALUES("9784", "6", "2015-03-16 03:19:44", "157.55.39.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("9785", "1", "2015-03-16 03:25:01", "24.68.48.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("9786", "3", "2015-03-16 04:00:05", "207.46.13.53", "3032");
INSERT INTO `wp_rg_form_view` VALUES("9787", "6", "2015-03-16 04:07:55", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9788", "3", "2015-03-16 05:00:07", "157.55.39.79", "2744");
INSERT INTO `wp_rg_form_view` VALUES("9789", "3", "2015-03-16 06:00:18", "207.46.13.53", "2408");
INSERT INTO `wp_rg_form_view` VALUES("9790", "3", "2015-03-16 07:00:00", "157.55.39.191", "3326");
INSERT INTO `wp_rg_form_view` VALUES("9791", "3", "2015-03-16 08:00:03", "207.46.13.53", "3042");
INSERT INTO `wp_rg_form_view` VALUES("9792", "6", "2015-03-16 08:18:28", "157.55.39.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("9793", "3", "2015-03-16 09:00:00", "157.55.39.206", "2717");
INSERT INTO `wp_rg_form_view` VALUES("9794", "6", "2015-03-16 09:37:04", "157.55.39.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("9795", "3", "2015-03-16 10:00:23", "207.46.13.53", "3016");
INSERT INTO `wp_rg_form_view` VALUES("9796", "2", "2015-03-16 10:35:50", "141.8.189.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("9797", "6", "2015-03-16 10:49:47", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9798", "3", "2015-03-16 11:00:06", "66.249.67.77", "3516");
INSERT INTO `wp_rg_form_view` VALUES("9799", "1", "2015-03-16 11:45:42", "188.165.15.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("9800", "3", "2015-03-16 12:00:11", "207.46.13.53", "2760");
INSERT INTO `wp_rg_form_view` VALUES("9801", "3", "2015-03-16 13:00:00", "207.46.13.8", "4376");
INSERT INTO `wp_rg_form_view` VALUES("9802", "6", "2015-03-16 13:03:43", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("9803", "3", "2015-03-16 14:00:00", "207.46.13.8", "4154");
INSERT INTO `wp_rg_form_view` VALUES("9804", "6", "2015-03-16 14:31:13", "157.55.39.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("9805", "3", "2015-03-16 15:00:05", "207.46.13.53", "5199");
INSERT INTO `wp_rg_form_view` VALUES("9806", "7", "2015-03-16 15:43:41", "136.243.36.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("9807", "1", "2015-03-16 15:44:03", "136.243.36.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("9808", "2", "2015-03-16 15:44:13", "136.243.36.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("9809", "6", "2015-03-16 15:55:01", "136.243.36.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("9810", "3", "2015-03-16 16:00:06", "207.46.13.8", "4186");
INSERT INTO `wp_rg_form_view` VALUES("9811", "3", "2015-03-16 17:00:20", "66.249.67.85", "3790");
INSERT INTO `wp_rg_form_view` VALUES("9812", "6", "2015-03-16 17:09:55", "207.46.13.53", "4");
INSERT INTO `wp_rg_form_view` VALUES("9813", "3", "2015-03-16 18:00:09", "207.46.13.8", "4042");
INSERT INTO `wp_rg_form_view` VALUES("9814", "6", "2015-03-16 18:25:42", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9815", "1", "2015-03-16 18:48:40", "117.169.1.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("9816", "3", "2015-03-16 19:00:07", "157.55.39.191", "3590");
INSERT INTO `wp_rg_form_view` VALUES("9817", "3", "2015-03-16 20:00:15", "157.55.39.191", "4309");
INSERT INTO `wp_rg_form_view` VALUES("9818", "3", "2015-03-16 20:00:15", "207.46.13.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("9819", "6", "2015-03-16 20:23:11", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("9820", "3", "2015-03-16 21:00:18", "207.46.13.53", "3576");
INSERT INTO `wp_rg_form_view` VALUES("9821", "3", "2015-03-16 22:00:12", "207.46.13.8", "3192");
INSERT INTO `wp_rg_form_view` VALUES("9822", "6", "2015-03-16 22:09:44", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9823", "3", "2015-03-16 23:00:02", "157.55.39.191", "3794");
INSERT INTO `wp_rg_form_view` VALUES("9824", "6", "2015-03-16 23:41:42", "96.54.164.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("9825", "3", "2015-03-17 00:00:09", "157.55.39.67", "3692");
INSERT INTO `wp_rg_form_view` VALUES("9826", "3", "2015-03-17 01:00:13", "157.55.39.67", "3475");
INSERT INTO `wp_rg_form_view` VALUES("9827", "1", "2015-03-17 01:02:02", "198.167.138.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("9828", "6", "2015-03-17 01:08:13", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("9829", "3", "2015-03-17 02:00:05", "157.55.39.67", "3520");
INSERT INTO `wp_rg_form_view` VALUES("9830", "6", "2015-03-17 02:24:07", "66.249.67.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("9831", "3", "2015-03-17 03:00:04", "157.55.39.191", "3770");
INSERT INTO `wp_rg_form_view` VALUES("9832", "6", "2015-03-17 03:02:54", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9833", "3", "2015-03-17 04:00:12", "157.55.39.67", "3916");
INSERT INTO `wp_rg_form_view` VALUES("9834", "1", "2015-03-17 04:42:15", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("9835", "3", "2015-03-17 05:00:38", "66.249.64.113", "3495");
INSERT INTO `wp_rg_form_view` VALUES("9836", "6", "2015-03-17 05:03:29", "207.46.13.53", "8");
INSERT INTO `wp_rg_form_view` VALUES("9837", "3", "2015-03-17 06:00:00", "157.55.39.66", "3337");
INSERT INTO `wp_rg_form_view` VALUES("9838", "6", "2015-03-17 06:35:06", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9839", "3", "2015-03-17 07:00:22", "68.180.228.245", "4046");
INSERT INTO `wp_rg_form_view` VALUES("9840", "6", "2015-03-17 07:03:01", "68.180.228.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("9841", "3", "2015-03-17 08:00:01", "157.55.39.191", "3596");
INSERT INTO `wp_rg_form_view` VALUES("9842", "3", "2015-03-17 09:00:21", "157.55.39.67", "2948");
INSERT INTO `wp_rg_form_view` VALUES("9843", "6", "2015-03-17 09:54:15", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("9844", "3", "2015-03-17 10:00:00", "207.46.13.8", "2102");
INSERT INTO `wp_rg_form_view` VALUES("9845", "3", "2015-03-17 11:00:01", "207.46.13.8", "1988");
INSERT INTO `wp_rg_form_view` VALUES("9846", "3", "2015-03-17 12:00:22", "157.55.39.67", "2542");
INSERT INTO `wp_rg_form_view` VALUES("9847", "6", "2015-03-17 12:52:42", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("9848", "3", "2015-03-17 13:00:16", "207.46.13.8", "3361");
INSERT INTO `wp_rg_form_view` VALUES("9849", "3", "2015-03-17 14:00:00", "207.46.13.8", "3561");
INSERT INTO `wp_rg_form_view` VALUES("9850", "6", "2015-03-17 14:15:57", "157.55.39.67", "4");
INSERT INTO `wp_rg_form_view` VALUES("9851", "3", "2015-03-17 15:00:00", "157.55.39.66", "4265");
INSERT INTO `wp_rg_form_view` VALUES("9852", "6", "2015-03-17 15:30:59", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9853", "3", "2015-03-17 16:00:01", "157.55.39.204", "4512");
INSERT INTO `wp_rg_form_view` VALUES("9854", "6", "2015-03-17 16:17:50", "157.55.39.204", "4");
INSERT INTO `wp_rg_form_view` VALUES("9855", "3", "2015-03-17 17:00:00", "207.46.13.8", "4582");
INSERT INTO `wp_rg_form_view` VALUES("9856", "1", "2015-03-17 17:57:54", "142.36.192.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("9857", "3", "2015-03-17 18:00:00", "207.46.13.8", "3790");
INSERT INTO `wp_rg_form_view` VALUES("9858", "6", "2015-03-17 18:18:01", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9859", "3", "2015-03-17 19:00:01", "157.55.39.204", "3694");
INSERT INTO `wp_rg_form_view` VALUES("9860", "3", "2015-03-17 20:00:01", "207.46.13.65", "2544");
INSERT INTO `wp_rg_form_view` VALUES("9861", "7", "2015-03-17 20:13:04", "207.46.13.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("9862", "3", "2015-03-17 21:00:01", "207.46.13.8", "3726");
INSERT INTO `wp_rg_form_view` VALUES("9863", "1", "2015-03-17 21:12:03", "157.55.39.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("9864", "3", "2015-03-17 22:00:00", "157.55.39.204", "4388");
INSERT INTO `wp_rg_form_view` VALUES("9865", "2", "2015-03-17 22:37:29", "141.8.189.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("9866", "3", "2015-03-17 23:00:04", "207.46.13.65", "4198");
INSERT INTO `wp_rg_form_view` VALUES("9867", "1", "2015-03-17 23:05:51", "221.237.17.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("9868", "3", "2015-03-18 00:00:04", "207.46.13.65", "4583");
INSERT INTO `wp_rg_form_view` VALUES("9869", "3", "2015-03-18 01:00:00", "207.46.13.65", "4121");
INSERT INTO `wp_rg_form_view` VALUES("9870", "3", "2015-03-18 02:00:04", "157.55.39.204", "4818");
INSERT INTO `wp_rg_form_view` VALUES("9871", "6", "2015-03-18 02:12:57", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9872", "3", "2015-03-18 03:00:03", "207.46.13.103", "4568");
INSERT INTO `wp_rg_form_view` VALUES("9873", "3", "2015-03-18 04:00:02", "207.46.13.103", "4627");
INSERT INTO `wp_rg_form_view` VALUES("9874", "6", "2015-03-18 04:11:12", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("9875", "3", "2015-03-18 05:00:13", "157.55.39.204", "4627");
INSERT INTO `wp_rg_form_view` VALUES("9876", "6", "2015-03-18 05:42:39", "207.46.13.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("9877", "3", "2015-03-18 06:00:00", "207.46.13.8", "4305");
INSERT INTO `wp_rg_form_view` VALUES("9878", "3", "2015-03-18 07:00:07", "207.46.13.103", "4300");
INSERT INTO `wp_rg_form_view` VALUES("9879", "3", "2015-03-18 08:00:12", "207.46.13.103", "4260");
INSERT INTO `wp_rg_form_view` VALUES("9880", "6", "2015-03-18 08:05:19", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("9881", "3", "2015-03-18 09:00:00", "157.55.39.204", "4385");
INSERT INTO `wp_rg_form_view` VALUES("9882", "1", "2015-03-18 09:19:46", "188.143.233.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("9883", "6", "2015-03-18 09:26:05", "157.55.39.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("9884", "3", "2015-03-18 10:00:02", "207.46.13.65", "4272");
INSERT INTO `wp_rg_form_view` VALUES("9885", "6", "2015-03-18 10:12:48", "207.46.13.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("9886", "3", "2015-03-18 11:00:02", "207.46.13.8", "4010");
INSERT INTO `wp_rg_form_view` VALUES("9887", "3", "2015-03-18 12:00:07", "157.55.39.204", "4138");
INSERT INTO `wp_rg_form_view` VALUES("9888", "3", "2015-03-18 13:00:04", "207.46.13.8", "3071");
INSERT INTO `wp_rg_form_view` VALUES("9889", "6", "2015-03-18 13:55:50", "157.55.39.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("9890", "3", "2015-03-18 14:00:14", "207.46.13.65", "4179");
INSERT INTO `wp_rg_form_view` VALUES("9891", "1", "2015-03-18 14:25:28", "208.68.38.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("9892", "2", "2015-03-18 14:25:30", "208.68.38.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("9893", "6", "2015-03-18 14:59:12", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9894", "3", "2015-03-18 15:00:00", "207.46.13.103", "4279");
INSERT INTO `wp_rg_form_view` VALUES("9895", "6", "2015-03-18 15:15:11", "157.55.39.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("9896", "3", "2015-03-18 16:00:00", "207.46.13.8", "4609");
INSERT INTO `wp_rg_form_view` VALUES("9897", "3", "2015-03-18 17:00:03", "157.55.39.204", "4226");
INSERT INTO `wp_rg_form_view` VALUES("9898", "6", "2015-03-18 17:27:13", "157.55.39.204", "4");
INSERT INTO `wp_rg_form_view` VALUES("9899", "3", "2015-03-18 18:00:37", "157.55.39.204", "4802");
INSERT INTO `wp_rg_form_view` VALUES("9900", "6", "2015-03-18 18:10:11", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("9901", "3", "2015-03-18 19:00:06", "207.46.13.65", "5111");
INSERT INTO `wp_rg_form_view` VALUES("9902", "3", "2015-03-18 20:00:02", "207.46.13.65", "5942");
INSERT INTO `wp_rg_form_view` VALUES("9903", "3", "2015-03-18 21:00:02", "157.55.39.204", "5562");
INSERT INTO `wp_rg_form_view` VALUES("9904", "6", "2015-03-18 21:36:47", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9905", "3", "2015-03-18 22:00:03", "207.46.13.65", "5392");
INSERT INTO `wp_rg_form_view` VALUES("9906", "3", "2015-03-18 23:00:00", "207.46.13.65", "5447");
INSERT INTO `wp_rg_form_view` VALUES("9907", "6", "2015-03-18 23:38:05", "207.46.13.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("9908", "3", "2015-03-19 00:00:24", "207.46.13.8", "5490");
INSERT INTO `wp_rg_form_view` VALUES("9909", "3", "2015-03-19 01:00:05", "207.46.13.65", "5704");
INSERT INTO `wp_rg_form_view` VALUES("9910", "7", "2015-03-19 01:30:27", "66.249.67.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("9911", "3", "2015-03-19 02:00:02", "207.46.13.103", "5398");
INSERT INTO `wp_rg_form_view` VALUES("9912", "1", "2015-03-19 02:23:47", "113.36.26.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("9913", "6", "2015-03-19 02:32:01", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("9914", "3", "2015-03-19 03:00:04", "207.46.13.103", "5575");
INSERT INTO `wp_rg_form_view` VALUES("9915", "3", "2015-03-19 04:00:00", "207.46.13.103", "5563");
INSERT INTO `wp_rg_form_view` VALUES("9916", "6", "2015-03-19 04:11:37", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("9917", "3", "2015-03-19 05:00:08", "207.46.13.8", "5106");
INSERT INTO `wp_rg_form_view` VALUES("9918", "3", "2015-03-19 06:00:16", "207.46.13.103", "5616");
INSERT INTO `wp_rg_form_view` VALUES("9919", "3", "2015-03-19 07:00:11", "207.46.13.65", "5190");
INSERT INTO `wp_rg_form_view` VALUES("9920", "3", "2015-03-19 08:00:00", "207.46.13.103", "5326");
INSERT INTO `wp_rg_form_view` VALUES("9921", "6", "2015-03-19 08:21:32", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9922", "3", "2015-03-19 09:00:06", "157.55.39.204", "5735");
INSERT INTO `wp_rg_form_view` VALUES("9923", "6", "2015-03-19 09:00:44", "207.46.13.65", "10");
INSERT INTO `wp_rg_form_view` VALUES("9924", "3", "2015-03-19 10:00:00", "207.46.13.65", "5497");
INSERT INTO `wp_rg_form_view` VALUES("9925", "6", "2015-03-19 10:07:45", "207.46.13.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("9926", "3", "2015-03-19 11:00:01", "207.46.13.65", "5382");
INSERT INTO `wp_rg_form_view` VALUES("9927", "6", "2015-03-19 11:38:51", "157.55.39.204", "4");
INSERT INTO `wp_rg_form_view` VALUES("9928", "3", "2015-03-19 12:00:06", "207.46.13.8", "5892");
INSERT INTO `wp_rg_form_view` VALUES("9929", "3", "2015-03-19 13:00:01", "207.46.13.103", "5602");
INSERT INTO `wp_rg_form_view` VALUES("9930", "6", "2015-03-19 13:52:02", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9931", "3", "2015-03-19 14:00:02", "66.249.67.77", "5790");
INSERT INTO `wp_rg_form_view` VALUES("9932", "6", "2015-03-19 14:05:51", "66.249.67.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("9933", "3", "2015-03-19 15:00:02", "157.55.39.204", "5916");
INSERT INTO `wp_rg_form_view` VALUES("9934", "3", "2015-03-19 16:00:00", "157.55.39.204", "5983");
INSERT INTO `wp_rg_form_view` VALUES("9935", "3", "2015-03-19 17:00:00", "207.46.13.103", "4907");
INSERT INTO `wp_rg_form_view` VALUES("9936", "3", "2015-03-19 18:00:02", "66.249.67.93", "4118");
INSERT INTO `wp_rg_form_view` VALUES("9937", "6", "2015-03-19 18:01:52", "157.55.39.204", "4");
INSERT INTO `wp_rg_form_view` VALUES("9938", "3", "2015-03-19 19:00:03", "157.55.39.204", "852");
INSERT INTO `wp_rg_form_view` VALUES("9939", "3", "2015-03-19 20:00:02", "66.249.67.85", "458");
INSERT INTO `wp_rg_form_view` VALUES("9940", "6", "2015-03-19 20:04:37", "66.249.67.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("9941", "3", "2015-03-19 21:01:13", "66.249.67.85", "402");
INSERT INTO `wp_rg_form_view` VALUES("9942", "3", "2015-03-19 22:00:02", "66.249.67.77", "448");
INSERT INTO `wp_rg_form_view` VALUES("9943", "3", "2015-03-19 23:02:33", "207.46.13.8", "386");
INSERT INTO `wp_rg_form_view` VALUES("9944", "3", "2015-03-20 00:00:32", "66.249.67.77", "586");
INSERT INTO `wp_rg_form_view` VALUES("9945", "3", "2015-03-20 01:00:03", "207.46.13.65", "522");
INSERT INTO `wp_rg_form_view` VALUES("9946", "6", "2015-03-20 01:23:16", "66.249.67.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("9947", "3", "2015-03-20 02:00:56", "66.249.67.93", "378");
INSERT INTO `wp_rg_form_view` VALUES("9948", "3", "2015-03-20 03:00:17", "66.249.67.77", "306");
INSERT INTO `wp_rg_form_view` VALUES("9949", "3", "2015-03-20 04:02:09", "207.46.13.65", "342");
INSERT INTO `wp_rg_form_view` VALUES("9950", "3", "2015-03-20 05:00:31", "157.55.39.204", "506");
INSERT INTO `wp_rg_form_view` VALUES("9951", "6", "2015-03-20 05:26:08", "157.55.39.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("9952", "3", "2015-03-20 06:00:37", "66.249.67.77", "453");
INSERT INTO `wp_rg_form_view` VALUES("9953", "6", "2015-03-20 06:08:52", "157.55.39.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("9954", "3", "2015-03-20 07:00:55", "66.249.67.93", "546");
INSERT INTO `wp_rg_form_view` VALUES("9955", "3", "2015-03-20 08:00:38", "157.55.39.204", "435");
INSERT INTO `wp_rg_form_view` VALUES("9956", "3", "2015-03-20 09:00:28", "157.55.39.204", "236");
INSERT INTO `wp_rg_form_view` VALUES("9957", "3", "2015-03-20 10:03:08", "66.249.67.77", "378");
INSERT INTO `wp_rg_form_view` VALUES("9958", "6", "2015-03-20 10:23:07", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9959", "3", "2015-03-20 11:00:20", "66.249.67.77", "474");
INSERT INTO `wp_rg_form_view` VALUES("9960", "3", "2015-03-20 12:00:37", "66.249.67.93", "406");
INSERT INTO `wp_rg_form_view` VALUES("9961", "3", "2015-03-20 13:00:16", "66.249.67.85", "525");
INSERT INTO `wp_rg_form_view` VALUES("9962", "3", "2015-03-20 14:00:33", "66.249.67.93", "430");
INSERT INTO `wp_rg_form_view` VALUES("9963", "1", "2015-03-20 14:45:12", "66.249.67.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("9964", "3", "2015-03-20 15:00:51", "66.249.67.93", "306");
INSERT INTO `wp_rg_form_view` VALUES("9965", "3", "2015-03-20 16:01:31", "207.46.13.65", "458");
INSERT INTO `wp_rg_form_view` VALUES("9966", "6", "2015-03-20 16:20:20", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9967", "3", "2015-03-20 17:00:48", "66.249.67.93", "352");
INSERT INTO `wp_rg_form_view` VALUES("9968", "3", "2015-03-20 18:00:09", "207.46.13.103", "599");
INSERT INTO `wp_rg_form_view` VALUES("9969", "6", "2015-03-20 18:36:33", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("9970", "3", "2015-03-20 19:00:27", "66.249.67.77", "494");
INSERT INTO `wp_rg_form_view` VALUES("9971", "3", "2015-03-20 20:01:04", "157.55.39.204", "636");
INSERT INTO `wp_rg_form_view` VALUES("9972", "3", "2015-03-20 21:00:06", "157.55.39.204", "506");
INSERT INTO `wp_rg_form_view` VALUES("9973", "3", "2015-03-20 22:00:30", "157.55.39.204", "390");
INSERT INTO `wp_rg_form_view` VALUES("9974", "3", "2015-03-20 23:00:26", "207.46.13.65", "378");
INSERT INTO `wp_rg_form_view` VALUES("9975", "6", "2015-03-20 23:52:13", "100.43.81.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("9976", "3", "2015-03-21 00:00:34", "207.46.13.65", "516");
INSERT INTO `wp_rg_form_view` VALUES("9977", "3", "2015-03-21 01:00:06", "157.55.39.204", "434");
INSERT INTO `wp_rg_form_view` VALUES("9978", "3", "2015-03-21 02:00:32", "157.55.39.204", "522");
INSERT INTO `wp_rg_form_view` VALUES("9979", "3", "2015-03-21 03:00:44", "66.249.67.93", "470");
INSERT INTO `wp_rg_form_view` VALUES("9980", "3", "2015-03-21 04:01:28", "66.249.67.77", "352");
INSERT INTO `wp_rg_form_view` VALUES("9981", "3", "2015-03-21 05:00:49", "157.55.39.204", "520");
INSERT INTO `wp_rg_form_view` VALUES("9982", "3", "2015-03-21 06:03:35", "66.249.67.93", "460");
INSERT INTO `wp_rg_form_view` VALUES("9983", "3", "2015-03-21 07:00:19", "188.165.15.22", "548");
INSERT INTO `wp_rg_form_view` VALUES("9984", "3", "2015-03-21 08:00:29", "66.249.67.85", "476");
INSERT INTO `wp_rg_form_view` VALUES("9985", "3", "2015-03-21 09:00:32", "66.249.67.77", "430");
INSERT INTO `wp_rg_form_view` VALUES("9986", "3", "2015-03-21 10:00:49", "208.43.252.203", "850");
INSERT INTO `wp_rg_form_view` VALUES("9987", "1", "2015-03-21 10:36:35", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("9988", "3", "2015-03-21 11:00:40", "66.249.67.85", "794");
INSERT INTO `wp_rg_form_view` VALUES("9989", "6", "2015-03-21 11:25:03", "66.249.67.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("9990", "1", "2015-03-21 11:46:29", "221.237.17.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("9991", "3", "2015-03-21 12:00:04", "66.249.67.93", "1172");
INSERT INTO `wp_rg_form_view` VALUES("9992", "3", "2015-03-21 13:00:03", "66.249.67.77", "1196");
INSERT INTO `wp_rg_form_view` VALUES("9993", "2", "2015-03-21 13:33:52", "100.43.85.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("9994", "3", "2015-03-21 14:00:02", "66.249.67.85", "1520");
INSERT INTO `wp_rg_form_view` VALUES("9995", "3", "2015-03-21 15:00:00", "66.249.67.77", "1449");
INSERT INTO `wp_rg_form_view` VALUES("9996", "7", "2015-03-21 15:10:23", "100.43.85.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("9997", "6", "2015-03-21 15:21:16", "66.249.67.85", "5");
INSERT INTO `wp_rg_form_view` VALUES("9998", "3", "2015-03-21 16:00:47", "66.249.67.93", "1309");
INSERT INTO `wp_rg_form_view` VALUES("9999", "3", "2015-03-21 17:00:15", "66.249.67.93", "814");
INSERT INTO `wp_rg_form_view` VALUES("10000", "3", "2015-03-21 18:00:05", "66.249.67.93", "2188");
INSERT INTO `wp_rg_form_view` VALUES("10001", "6", "2015-03-21 18:05:48", "66.249.67.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("10002", "7", "2015-03-21 18:06:14", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("10003", "2", "2015-03-21 18:06:33", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("10004", "1", "2015-03-21 18:06:37", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("10005", "3", "2015-03-21 19:00:33", "66.249.67.93", "1142");
INSERT INTO `wp_rg_form_view` VALUES("10006", "6", "2015-03-21 19:00:34", "66.249.67.93", "6");
INSERT INTO `wp_rg_form_view` VALUES("10007", "3", "2015-03-21 20:00:02", "66.249.67.93", "1098");
INSERT INTO `wp_rg_form_view` VALUES("10008", "3", "2015-03-21 21:00:18", "66.249.67.85", "1042");
INSERT INTO `wp_rg_form_view` VALUES("10009", "6", "2015-03-21 21:16:33", "66.249.67.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("10010", "3", "2015-03-21 22:00:52", "66.249.67.93", "546");
INSERT INTO `wp_rg_form_view` VALUES("10011", "1", "2015-03-21 22:03:10", "142.104.37.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("10012", "3", "2015-03-21 23:00:20", "207.46.13.8", "292");
INSERT INTO `wp_rg_form_view` VALUES("10013", "6", "2015-03-21 23:15:06", "100.43.85.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("10014", "3", "2015-03-22 00:00:02", "66.249.67.93", "618");
INSERT INTO `wp_rg_form_view` VALUES("10015", "3", "2015-03-22 01:00:19", "66.249.67.77", "756");
INSERT INTO `wp_rg_form_view` VALUES("10016", "3", "2015-03-22 02:00:20", "66.249.67.85", "695");
INSERT INTO `wp_rg_form_view` VALUES("10017", "6", "2015-03-22 02:47:24", "217.69.133.230", "3");
INSERT INTO `wp_rg_form_view` VALUES("10018", "3", "2015-03-22 03:00:12", "66.249.67.93", "900");
INSERT INTO `wp_rg_form_view` VALUES("10019", "1", "2015-03-22 03:31:44", "104.193.9.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("10020", "3", "2015-03-22 04:00:26", "157.55.39.137", "880");
INSERT INTO `wp_rg_form_view` VALUES("10021", "1", "2015-03-22 04:41:45", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("10022", "6", "2015-03-22 04:58:09", "100.43.85.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("10023", "3", "2015-03-22 05:00:29", "157.55.39.137", "452");
INSERT INTO `wp_rg_form_view` VALUES("10024", "3", "2015-03-22 06:00:55", "157.55.39.137", "390");
INSERT INTO `wp_rg_form_view` VALUES("10025", "6", "2015-03-22 06:33:24", "157.55.39.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("10026", "3", "2015-03-22 07:01:21", "157.55.39.137", "519");
INSERT INTO `wp_rg_form_view` VALUES("10027", "6", "2015-03-22 07:43:13", "157.55.39.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("10028", "3", "2015-03-22 08:00:22", "66.249.67.77", "758");
INSERT INTO `wp_rg_form_view` VALUES("10029", "1", "2015-03-22 08:27:08", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("10030", "3", "2015-03-22 09:00:16", "66.249.67.85", "664");
INSERT INTO `wp_rg_form_view` VALUES("10031", "3", "2015-03-22 10:00:23", "66.249.67.85", "361");
INSERT INTO `wp_rg_form_view` VALUES("10032", "3", "2015-03-22 11:01:23", "66.249.67.77", "486");
INSERT INTO `wp_rg_form_view` VALUES("10033", "1", "2015-03-22 11:16:27", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("10034", "3", "2015-03-22 12:00:28", "66.249.67.85", "386");
INSERT INTO `wp_rg_form_view` VALUES("10035", "3", "2015-03-22 13:00:00", "66.249.67.93", "382");
INSERT INTO `wp_rg_form_view` VALUES("10036", "3", "2015-03-22 14:02:19", "66.249.67.85", "354");
INSERT INTO `wp_rg_form_view` VALUES("10037", "3", "2015-03-22 15:01:32", "66.249.67.85", "246");
INSERT INTO `wp_rg_form_view` VALUES("10038", "3", "2015-03-22 16:01:02", "66.249.67.77", "328");
INSERT INTO `wp_rg_form_view` VALUES("10039", "3", "2015-03-22 17:00:25", "96.50.100.195", "380");
INSERT INTO `wp_rg_form_view` VALUES("10040", "3", "2015-03-22 18:00:34", "66.249.67.85", "309");
INSERT INTO `wp_rg_form_view` VALUES("10041", "3", "2015-03-22 19:01:10", "207.46.13.8", "188");
INSERT INTO `wp_rg_form_view` VALUES("10042", "3", "2015-03-22 20:03:17", "66.249.67.77", "280");
INSERT INTO `wp_rg_form_view` VALUES("10043", "3", "2015-03-22 21:00:06", "157.55.39.113", "790");
INSERT INTO `wp_rg_form_view` VALUES("10044", "7", "2015-03-22 21:44:55", "104.193.9.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("10045", "2", "2015-03-22 21:44:58", "104.193.9.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("10046", "1", "2015-03-22 21:45:06", "104.193.9.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("10047", "3", "2015-03-22 22:00:10", "68.180.228.245", "906");
INSERT INTO `wp_rg_form_view` VALUES("10048", "6", "2015-03-22 22:04:22", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10049", "3", "2015-03-22 23:00:07", "207.46.13.65", "460");
INSERT INTO `wp_rg_form_view` VALUES("10050", "3", "2015-03-23 00:01:10", "207.46.13.65", "620");
INSERT INTO `wp_rg_form_view` VALUES("10051", "7", "2015-03-23 00:39:10", "100.43.85.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("10052", "3", "2015-03-23 01:00:17", "66.249.67.77", "686");
INSERT INTO `wp_rg_form_view` VALUES("10053", "3", "2015-03-23 02:00:05", "24.68.227.72", "616");
INSERT INTO `wp_rg_form_view` VALUES("10054", "3", "2015-03-23 03:01:38", "66.249.67.77", "930");
INSERT INTO `wp_rg_form_view` VALUES("10055", "6", "2015-03-23 03:13:17", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("10056", "1", "2015-03-23 03:41:09", "212.83.173.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("10057", "3", "2015-03-23 04:01:42", "207.46.13.8", "418");
INSERT INTO `wp_rg_form_view` VALUES("10058", "3", "2015-03-23 05:03:57", "188.165.15.22", "582");
INSERT INTO `wp_rg_form_view` VALUES("10059", "3", "2015-03-23 06:00:00", "66.249.67.93", "558");
INSERT INTO `wp_rg_form_view` VALUES("10060", "3", "2015-03-23 07:00:56", "66.249.67.77", "800");
INSERT INTO `wp_rg_form_view` VALUES("10061", "3", "2015-03-23 08:00:07", "107.170.50.206", "6030");
INSERT INTO `wp_rg_form_view` VALUES("10062", "1", "2015-03-23 08:01:59", "107.170.50.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("10063", "3", "2015-03-23 09:00:00", "107.170.50.206", "3040");
INSERT INTO `wp_rg_form_view` VALUES("10064", "3", "2015-03-23 10:00:22", "66.249.67.93", "1579");
INSERT INTO `wp_rg_form_view` VALUES("10065", "7", "2015-03-23 10:42:14", "118.140.38.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("10066", "2", "2015-03-23 10:42:32", "118.140.38.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("10067", "1", "2015-03-23 10:42:32", "118.140.38.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("10068", "3", "2015-03-23 11:00:14", "66.249.67.77", "656");
INSERT INTO `wp_rg_form_view` VALUES("10069", "6", "2015-03-23 11:04:48", "207.46.13.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("10070", "3", "2015-03-23 12:02:01", "66.249.67.85", "878");
INSERT INTO `wp_rg_form_view` VALUES("10071", "6", "2015-03-23 12:12:45", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("10072", "2", "2015-03-23 12:58:36", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("10073", "3", "2015-03-23 13:00:48", "66.249.67.93", "408");
INSERT INTO `wp_rg_form_view` VALUES("10074", "3", "2015-03-23 14:01:24", "66.249.67.85", "698");
INSERT INTO `wp_rg_form_view` VALUES("10075", "3", "2015-03-23 15:01:16", "66.249.67.85", "440");
INSERT INTO `wp_rg_form_view` VALUES("10076", "3", "2015-03-23 16:00:31", "66.249.67.77", "608");
INSERT INTO `wp_rg_form_view` VALUES("10077", "1", "2015-03-23 16:35:29", "162.156.84.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("10078", "3", "2015-03-23 17:00:20", "66.249.67.85", "707");
INSERT INTO `wp_rg_form_view` VALUES("10079", "6", "2015-03-23 17:55:52", "157.55.39.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10080", "2", "2015-03-23 17:57:56", "184.66.135.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("10081", "7", "2015-03-23 17:59:12", "184.66.135.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("10082", "3", "2015-03-23 18:00:32", "66.249.67.93", "542");
INSERT INTO `wp_rg_form_view` VALUES("10083", "3", "2015-03-23 19:00:07", "66.249.67.93", "390");
INSERT INTO `wp_rg_form_view` VALUES("10084", "3", "2015-03-23 20:00:14", "157.55.39.113", "516");
INSERT INTO `wp_rg_form_view` VALUES("10085", "6", "2015-03-23 20:29:13", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10086", "3", "2015-03-23 21:00:01", "70.77.194.32", "636");
INSERT INTO `wp_rg_form_view` VALUES("10087", "6", "2015-03-23 21:40:50", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10088", "3", "2015-03-23 22:04:14", "157.55.39.113", "378");
INSERT INTO `wp_rg_form_view` VALUES("10089", "3", "2015-03-23 23:00:20", "66.249.67.77", "406");
INSERT INTO `wp_rg_form_view` VALUES("10090", "3", "2015-03-24 00:01:19", "66.249.67.85", "1452");
INSERT INTO `wp_rg_form_view` VALUES("10091", "3", "2015-03-24 01:03:11", "100.43.85.8", "256");
INSERT INTO `wp_rg_form_view` VALUES("10092", "3", "2015-03-24 02:04:25", "207.46.13.8", "362");
INSERT INTO `wp_rg_form_view` VALUES("10093", "3", "2015-03-24 03:00:45", "66.249.67.77", "376");
INSERT INTO `wp_rg_form_view` VALUES("10094", "3", "2015-03-24 04:01:34", "66.249.67.77", "394");
INSERT INTO `wp_rg_form_view` VALUES("10095", "3", "2015-03-24 05:05:20", "66.249.67.93", "334");
INSERT INTO `wp_rg_form_view` VALUES("10096", "6", "2015-03-24 05:11:08", "100.43.85.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("10097", "3", "2015-03-24 06:01:35", "66.249.67.85", "416");
INSERT INTO `wp_rg_form_view` VALUES("10098", "3", "2015-03-24 07:00:12", "66.249.67.85", "268");
INSERT INTO `wp_rg_form_view` VALUES("10099", "3", "2015-03-24 08:00:12", "66.249.67.93", "362");
INSERT INTO `wp_rg_form_view` VALUES("10100", "3", "2015-03-24 09:05:48", "66.249.67.85", "421");
INSERT INTO `wp_rg_form_view` VALUES("10101", "6", "2015-03-24 09:16:02", "157.55.39.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10102", "3", "2015-03-24 10:00:00", "157.55.39.113", "474");
INSERT INTO `wp_rg_form_view` VALUES("10103", "3", "2015-03-24 11:00:51", "66.249.67.77", "400");
INSERT INTO `wp_rg_form_view` VALUES("10104", "3", "2015-03-24 12:00:51", "66.249.67.85", "338");
INSERT INTO `wp_rg_form_view` VALUES("10105", "3", "2015-03-24 13:00:01", "66.249.67.93", "580");
INSERT INTO `wp_rg_form_view` VALUES("10106", "7", "2015-03-24 13:47:15", "159.149.133.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("10107", "2", "2015-03-24 13:53:11", "159.149.133.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("10108", "1", "2015-03-24 13:54:23", "159.149.133.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("10109", "3", "2015-03-24 14:00:12", "66.249.67.77", "763");
INSERT INTO `wp_rg_form_view` VALUES("10110", "7", "2015-03-24 14:23:32", "109.102.30.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("10111", "1", "2015-03-24 14:23:49", "109.102.30.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("10112", "2", "2015-03-24 14:23:58", "109.102.30.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("10113", "3", "2015-03-24 15:01:16", "207.46.13.8", "296");
INSERT INTO `wp_rg_form_view` VALUES("10114", "3", "2015-03-24 16:00:30", "66.249.67.85", "402");
INSERT INTO `wp_rg_form_view` VALUES("10115", "3", "2015-03-24 17:00:39", "66.249.67.85", "448");
INSERT INTO `wp_rg_form_view` VALUES("10116", "3", "2015-03-24 18:00:30", "66.249.67.85", "452");
INSERT INTO `wp_rg_form_view` VALUES("10117", "6", "2015-03-24 18:46:29", "66.249.67.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("10118", "3", "2015-03-24 19:00:30", "66.249.67.85", "444");
INSERT INTO `wp_rg_form_view` VALUES("10119", "3", "2015-03-24 20:00:18", "66.249.67.93", "460");
INSERT INTO `wp_rg_form_view` VALUES("10120", "6", "2015-03-24 20:11:29", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10121", "3", "2015-03-24 21:00:53", "66.249.67.93", "258");
INSERT INTO `wp_rg_form_view` VALUES("10122", "3", "2015-03-24 22:04:35", "207.46.13.65", "380");
INSERT INTO `wp_rg_form_view` VALUES("10123", "3", "2015-03-24 23:00:15", "66.249.67.93", "424");
INSERT INTO `wp_rg_form_view` VALUES("10124", "3", "2015-03-25 00:00:09", "66.249.67.77", "446");
INSERT INTO `wp_rg_form_view` VALUES("10125", "2", "2015-03-25 00:18:53", "66.249.67.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("10126", "3", "2015-03-25 01:00:45", "66.249.67.77", "524");
INSERT INTO `wp_rg_form_view` VALUES("10127", "3", "2015-03-25 02:00:15", "66.249.67.77", "458");
INSERT INTO `wp_rg_form_view` VALUES("10128", "3", "2015-03-25 03:00:11", "24.108.88.203", "316");
INSERT INTO `wp_rg_form_view` VALUES("10129", "3", "2015-03-25 04:00:56", "100.43.85.8", "488");
INSERT INTO `wp_rg_form_view` VALUES("10130", "3", "2015-03-25 05:00:14", "157.55.39.113", "428");
INSERT INTO `wp_rg_form_view` VALUES("10131", "3", "2015-03-25 06:02:33", "66.249.67.93", "460");
INSERT INTO `wp_rg_form_view` VALUES("10132", "1", "2015-03-25 06:58:36", "192.3.30.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("10133", "3", "2015-03-25 07:00:13", "207.46.13.65", "458");
INSERT INTO `wp_rg_form_view` VALUES("10134", "3", "2015-03-25 08:00:51", "207.46.13.65", "383");
INSERT INTO `wp_rg_form_view` VALUES("10135", "3", "2015-03-25 09:01:38", "66.249.67.85", "288");
INSERT INTO `wp_rg_form_view` VALUES("10136", "3", "2015-03-25 10:01:16", "157.55.39.113", "312");
INSERT INTO `wp_rg_form_view` VALUES("10137", "3", "2015-03-25 11:02:39", "66.249.67.93", "554");
INSERT INTO `wp_rg_form_view` VALUES("10138", "3", "2015-03-25 12:01:06", "157.55.39.113", "472");
INSERT INTO `wp_rg_form_view` VALUES("10139", "3", "2015-03-25 13:01:02", "66.249.67.85", "564");
INSERT INTO `wp_rg_form_view` VALUES("10140", "3", "2015-03-25 14:00:40", "66.249.67.77", "366");
INSERT INTO `wp_rg_form_view` VALUES("10141", "3", "2015-03-25 15:02:55", "157.55.39.113", "370");
INSERT INTO `wp_rg_form_view` VALUES("10142", "3", "2015-03-25 16:00:41", "157.55.39.113", "414");
INSERT INTO `wp_rg_form_view` VALUES("10143", "3", "2015-03-25 17:00:38", "66.249.67.85", "442");
INSERT INTO `wp_rg_form_view` VALUES("10144", "1", "2015-03-25 17:06:54", "62.210.250.221", "2");
INSERT INTO `wp_rg_form_view` VALUES("10145", "3", "2015-03-25 18:01:18", "209.222.8.75", "442");
INSERT INTO `wp_rg_form_view` VALUES("10146", "2", "2015-03-25 18:14:02", "209.222.8.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("10147", "6", "2015-03-25 18:54:31", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10148", "3", "2015-03-25 19:03:22", "66.249.67.77", "464");
INSERT INTO `wp_rg_form_view` VALUES("10149", "3", "2015-03-25 20:00:15", "66.249.67.85", "474");
INSERT INTO `wp_rg_form_view` VALUES("10150", "1", "2015-03-25 20:55:16", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("10151", "3", "2015-03-25 21:00:25", "66.249.67.93", "771");
INSERT INTO `wp_rg_form_view` VALUES("10152", "1", "2015-03-25 21:04:05", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("10153", "3", "2015-03-25 22:00:17", "80.122.213.230", "1236");
INSERT INTO `wp_rg_form_view` VALUES("10154", "3", "2015-03-25 23:00:35", "157.55.39.113", "2378");
INSERT INTO `wp_rg_form_view` VALUES("10155", "3", "2015-03-26 00:00:20", "157.55.39.113", "2553");
INSERT INTO `wp_rg_form_view` VALUES("10156", "2", "2015-03-26 00:23:37", "198.211.108.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("10157", "1", "2015-03-26 00:23:37", "198.211.108.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("10158", "3", "2015-03-26 01:00:05", "207.46.13.65", "2485");
INSERT INTO `wp_rg_form_view` VALUES("10159", "1", "2015-03-26 01:17:02", "198.23.227.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("10160", "3", "2015-03-26 02:00:09", "157.55.39.46", "2896");
INSERT INTO `wp_rg_form_view` VALUES("10161", "1", "2015-03-26 02:02:36", "58.49.31.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("10162", "3", "2015-03-26 03:00:04", "207.46.13.65", "2496");
INSERT INTO `wp_rg_form_view` VALUES("10163", "3", "2015-03-26 04:00:24", "157.55.39.46", "2132");
INSERT INTO `wp_rg_form_view` VALUES("10164", "3", "2015-03-26 05:00:26", "157.55.39.46", "2274");
INSERT INTO `wp_rg_form_view` VALUES("10165", "3", "2015-03-26 06:00:16", "207.46.13.65", "2430");
INSERT INTO `wp_rg_form_view` VALUES("10166", "3", "2015-03-26 07:00:02", "157.55.39.46", "2922");
INSERT INTO `wp_rg_form_view` VALUES("10167", "3", "2015-03-26 08:00:14", "157.55.39.46", "2430");
INSERT INTO `wp_rg_form_view` VALUES("10168", "3", "2015-03-26 09:00:11", "207.46.13.65", "2520");
INSERT INTO `wp_rg_form_view` VALUES("10169", "3", "2015-03-26 10:00:07", "157.55.39.46", "2517");
INSERT INTO `wp_rg_form_view` VALUES("10170", "3", "2015-03-26 11:00:17", "207.46.13.65", "2394");
INSERT INTO `wp_rg_form_view` VALUES("10171", "3", "2015-03-26 12:00:14", "157.55.39.46", "2358");
INSERT INTO `wp_rg_form_view` VALUES("10172", "3", "2015-03-26 13:00:07", "157.55.39.113", "2222");
INSERT INTO `wp_rg_form_view` VALUES("10173", "3", "2015-03-26 14:00:04", "157.55.39.46", "2861");
INSERT INTO `wp_rg_form_view` VALUES("10174", "7", "2015-03-26 14:01:16", "155.94.169.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10175", "2", "2015-03-26 14:01:51", "155.94.169.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10176", "1", "2015-03-26 14:01:56", "155.94.169.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10177", "3", "2015-03-26 15:00:09", "207.46.13.8", "2690");
INSERT INTO `wp_rg_form_view` VALUES("10178", "6", "2015-03-26 15:15:39", "66.249.67.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("10179", "3", "2015-03-26 16:00:39", "157.55.39.46", "2296");
INSERT INTO `wp_rg_form_view` VALUES("10180", "3", "2015-03-26 17:00:28", "157.55.39.113", "2730");
INSERT INTO `wp_rg_form_view` VALUES("10181", "3", "2015-03-26 18:00:35", "207.46.13.8", "2834");
INSERT INTO `wp_rg_form_view` VALUES("10182", "3", "2015-03-26 19:00:06", "207.46.13.65", "2546");
INSERT INTO `wp_rg_form_view` VALUES("10183", "3", "2015-03-26 20:00:17", "207.46.13.65", "2650");
INSERT INTO `wp_rg_form_view` VALUES("10184", "3", "2015-03-26 21:00:24", "66.249.67.77", "2921");
INSERT INTO `wp_rg_form_view` VALUES("10185", "1", "2015-03-26 21:03:28", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("10186", "5", "2015-03-26 21:04:06", "96.50.93.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("10187", "3", "2015-03-26 22:00:11", "157.55.39.46", "2468");
INSERT INTO `wp_rg_form_view` VALUES("10188", "7", "2015-03-26 22:02:30", "207.46.13.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("10189", "5", "2015-03-26 22:24:14", "207.46.13.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("10190", "3", "2015-03-26 23:00:38", "207.46.13.8", "1716");
INSERT INTO `wp_rg_form_view` VALUES("10191", "3", "2015-03-27 00:00:06", "207.46.13.65", "972");
INSERT INTO `wp_rg_form_view` VALUES("10192", "3", "2015-03-27 01:02:38", "66.249.67.77", "660");
INSERT INTO `wp_rg_form_view` VALUES("10193", "3", "2015-03-27 02:04:56", "66.249.67.77", "2184");
INSERT INTO `wp_rg_form_view` VALUES("10194", "3", "2015-03-27 03:00:14", "207.46.13.65", "3654");
INSERT INTO `wp_rg_form_view` VALUES("10195", "3", "2015-03-27 04:00:09", "207.46.13.65", "3102");
INSERT INTO `wp_rg_form_view` VALUES("10196", "3", "2015-03-27 05:00:07", "157.55.39.46", "1894");
INSERT INTO `wp_rg_form_view` VALUES("10197", "3", "2015-03-27 06:00:02", "66.249.67.77", "1984");
INSERT INTO `wp_rg_form_view` VALUES("10198", "3", "2015-03-27 07:00:20", "157.55.39.46", "2446");
INSERT INTO `wp_rg_form_view` VALUES("10199", "3", "2015-03-27 08:00:00", "207.46.13.65", "2364");
INSERT INTO `wp_rg_form_view` VALUES("10200", "3", "2015-03-27 09:00:29", "207.46.13.65", "2078");
INSERT INTO `wp_rg_form_view` VALUES("10201", "3", "2015-03-27 10:00:03", "66.249.67.93", "2250");
INSERT INTO `wp_rg_form_view` VALUES("10202", "3", "2015-03-27 11:00:06", "157.55.39.113", "2054");
INSERT INTO `wp_rg_form_view` VALUES("10203", "3", "2015-03-27 12:00:40", "207.46.13.65", "2254");
INSERT INTO `wp_rg_form_view` VALUES("10204", "3", "2015-03-27 13:00:19", "207.46.13.65", "2262");
INSERT INTO `wp_rg_form_view` VALUES("10205", "3", "2015-03-27 14:00:37", "66.249.67.77", "2534");
INSERT INTO `wp_rg_form_view` VALUES("10206", "3", "2015-03-27 15:00:00", "207.46.13.65", "2332");
INSERT INTO `wp_rg_form_view` VALUES("10207", "3", "2015-03-27 16:00:35", "157.55.39.46", "2202");
INSERT INTO `wp_rg_form_view` VALUES("10208", "7", "2015-03-27 16:41:36", "205.250.84.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("10209", "3", "2015-03-27 17:00:17", "207.46.13.65", "2196");
INSERT INTO `wp_rg_form_view` VALUES("10210", "1", "2015-03-27 17:29:37", "58.49.31.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("10211", "2", "2015-03-27 17:29:40", "58.49.31.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("10212", "3", "2015-03-27 18:00:33", "207.46.13.65", "1582");
INSERT INTO `wp_rg_form_view` VALUES("10213", "3", "2015-03-27 19:00:37", "66.249.67.77", "2164");
INSERT INTO `wp_rg_form_view` VALUES("10214", "3", "2015-03-27 20:00:07", "66.249.67.93", "2518");
INSERT INTO `wp_rg_form_view` VALUES("10215", "3", "2015-03-27 21:00:23", "207.46.13.65", "2722");
INSERT INTO `wp_rg_form_view` VALUES("10216", "3", "2015-03-27 22:01:00", "66.249.79.93", "2172");
INSERT INTO `wp_rg_form_view` VALUES("10217", "3", "2015-03-27 23:00:12", "207.46.13.65", "1804");
INSERT INTO `wp_rg_form_view` VALUES("10218", "3", "2015-03-28 00:01:27", "66.249.79.85", "3218");
INSERT INTO `wp_rg_form_view` VALUES("10219", "3", "2015-03-28 01:00:21", "207.46.13.65", "4349");
INSERT INTO `wp_rg_form_view` VALUES("10220", "5", "2015-03-28 01:04:02", "66.249.79.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("10221", "6", "2015-03-28 01:08:59", "188.165.15.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("10222", "7", "2015-03-28 01:47:46", "188.165.15.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("10223", "3", "2015-03-28 02:00:05", "157.55.39.46", "3967");
INSERT INTO `wp_rg_form_view` VALUES("10224", "3", "2015-03-28 03:00:08", "157.55.39.46", "2948");
INSERT INTO `wp_rg_form_view` VALUES("10225", "6", "2015-03-28 03:48:09", "148.251.69.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("10226", "3", "2015-03-28 04:00:15", "157.55.39.46", "2624");
INSERT INTO `wp_rg_form_view` VALUES("10227", "3", "2015-03-28 05:00:33", "207.46.13.65", "2752");
INSERT INTO `wp_rg_form_view` VALUES("10228", "2", "2015-03-28 05:05:17", "188.165.15.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("10229", "3", "2015-03-28 06:00:05", "207.46.13.8", "2731");
INSERT INTO `wp_rg_form_view` VALUES("10230", "7", "2015-03-28 06:56:25", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("10231", "1", "2015-03-28 06:56:51", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("10232", "2", "2015-03-28 06:57:04", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("10233", "3", "2015-03-28 07:00:05", "68.180.228.245", "2880");
INSERT INTO `wp_rg_form_view` VALUES("10234", "1", "2015-03-28 07:33:20", "58.49.31.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("10235", "6", "2015-03-28 07:50:44", "100.43.85.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("10236", "3", "2015-03-28 08:00:01", "157.55.39.46", "2706");
INSERT INTO `wp_rg_form_view` VALUES("10237", "6", "2015-03-28 08:40:43", "66.249.79.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("10238", "3", "2015-03-28 09:00:08", "207.46.13.65", "2324");
INSERT INTO `wp_rg_form_view` VALUES("10239", "3", "2015-03-28 10:00:29", "66.249.79.85", "1604");
INSERT INTO `wp_rg_form_view` VALUES("10240", "6", "2015-03-28 10:19:20", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10241", "1", "2015-03-28 10:49:50", "58.49.31.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("10242", "3", "2015-03-28 11:00:02", "157.55.39.46", "823");
INSERT INTO `wp_rg_form_view` VALUES("10243", "3", "2015-03-28 12:00:29", "157.55.39.113", "626");
INSERT INTO `wp_rg_form_view` VALUES("10244", "3", "2015-03-28 13:00:29", "66.249.79.85", "943");
INSERT INTO `wp_rg_form_view` VALUES("10245", "2", "2015-03-28 13:09:08", "58.49.31.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("10246", "3", "2015-03-28 14:00:17", "157.55.39.46", "774");
INSERT INTO `wp_rg_form_view` VALUES("10247", "7", "2015-03-28 14:46:45", "209.222.8.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("10248", "3", "2015-03-28 15:00:20", "68.180.228.245", "996");
INSERT INTO `wp_rg_form_view` VALUES("10249", "6", "2015-03-28 15:00:20", "68.180.228.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("10250", "3", "2015-03-28 16:01:23", "66.249.79.93", "993");
INSERT INTO `wp_rg_form_view` VALUES("10251", "3", "2015-03-28 17:01:50", "157.55.39.46", "648");
INSERT INTO `wp_rg_form_view` VALUES("10252", "3", "2015-03-28 18:00:22", "66.249.79.77", "639");
INSERT INTO `wp_rg_form_view` VALUES("10253", "2", "2015-03-28 18:58:12", "183.203.22.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("10254", "3", "2015-03-28 19:00:26", "157.55.39.46", "745");
INSERT INTO `wp_rg_form_view` VALUES("10255", "3", "2015-03-28 20:00:00", "157.55.39.46", "643");
INSERT INTO `wp_rg_form_view` VALUES("10256", "3", "2015-03-28 21:00:13", "207.46.13.65", "648");
INSERT INTO `wp_rg_form_view` VALUES("10257", "3", "2015-03-28 22:01:18", "207.46.13.65", "678");
INSERT INTO `wp_rg_form_view` VALUES("10258", "3", "2015-03-28 23:00:49", "66.249.79.77", "697");
INSERT INTO `wp_rg_form_view` VALUES("10259", "3", "2015-03-29 00:00:07", "207.46.13.65", "729");
INSERT INTO `wp_rg_form_view` VALUES("10260", "3", "2015-03-29 01:00:20", "157.55.39.46", "680");
INSERT INTO `wp_rg_form_view` VALUES("10261", "6", "2015-03-29 01:59:36", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("10262", "3", "2015-03-29 02:01:04", "157.55.39.113", "581");
INSERT INTO `wp_rg_form_view` VALUES("10263", "3", "2015-03-29 03:00:16", "157.55.39.46", "776");
INSERT INTO `wp_rg_form_view` VALUES("10264", "3", "2015-03-29 04:00:05", "157.55.39.46", "619");
INSERT INTO `wp_rg_form_view` VALUES("10265", "1", "2015-03-29 04:03:13", "184.66.148.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("10266", "3", "2015-03-29 05:00:11", "207.46.13.65", "590");
INSERT INTO `wp_rg_form_view` VALUES("10267", "3", "2015-03-29 06:00:45", "157.55.39.113", "569");
INSERT INTO `wp_rg_form_view` VALUES("10268", "3", "2015-03-29 07:00:28", "157.55.39.46", "662");
INSERT INTO `wp_rg_form_view` VALUES("10269", "3", "2015-03-29 08:00:00", "157.55.39.113", "774");
INSERT INTO `wp_rg_form_view` VALUES("10270", "5", "2015-03-29 08:10:05", "66.249.79.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("10271", "3", "2015-03-29 09:00:19", "207.46.13.65", "557");
INSERT INTO `wp_rg_form_view` VALUES("10272", "3", "2015-03-29 10:00:42", "66.249.79.85", "737");
INSERT INTO `wp_rg_form_view` VALUES("10273", "1", "2015-03-29 10:44:39", "58.49.31.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("10274", "3", "2015-03-29 11:00:03", "157.55.39.46", "766");
INSERT INTO `wp_rg_form_view` VALUES("10275", "3", "2015-03-29 12:00:04", "207.46.13.65", "700");
INSERT INTO `wp_rg_form_view` VALUES("10276", "3", "2015-03-29 13:00:56", "207.46.13.65", "825");
INSERT INTO `wp_rg_form_view` VALUES("10277", "7", "2015-03-29 13:58:13", "184.144.134.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("10278", "3", "2015-03-29 14:00:15", "184.144.134.172", "780");
INSERT INTO `wp_rg_form_view` VALUES("10279", "3", "2015-03-29 15:00:07", "157.55.39.46", "658");
INSERT INTO `wp_rg_form_view` VALUES("10280", "3", "2015-03-29 16:00:06", "157.55.39.46", "773");
INSERT INTO `wp_rg_form_view` VALUES("10281", "3", "2015-03-29 17:00:14", "207.46.13.65", "760");
INSERT INTO `wp_rg_form_view` VALUES("10282", "6", "2015-03-29 17:08:09", "100.43.90.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("10283", "3", "2015-03-29 18:00:09", "66.249.79.93", "816");
INSERT INTO `wp_rg_form_view` VALUES("10284", "2", "2015-03-29 18:26:05", "62.210.83.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("10285", "7", "2015-03-29 18:47:58", "66.249.79.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("10286", "3", "2015-03-29 19:00:28", "207.46.13.65", "740");
INSERT INTO `wp_rg_form_view` VALUES("10287", "3", "2015-03-29 20:00:48", "207.46.13.65", "653");
INSERT INTO `wp_rg_form_view` VALUES("10288", "3", "2015-03-29 21:00:09", "207.46.13.65", "724");
INSERT INTO `wp_rg_form_view` VALUES("10289", "3", "2015-03-29 22:01:19", "62.210.83.64", "561");
INSERT INTO `wp_rg_form_view` VALUES("10290", "1", "2015-03-29 22:38:46", "5.157.15.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("10291", "3", "2015-03-29 23:01:21", "207.46.13.65", "1686");
INSERT INTO `wp_rg_form_view` VALUES("10292", "7", "2015-03-29 23:17:45", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("10293", "5", "2015-03-29 23:18:05", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("10294", "2", "2015-03-29 23:18:56", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("10295", "6", "2015-03-29 23:22:04", "109.169.29.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("10296", "3", "2015-03-30 00:00:45", "66.249.79.85", "1054");
INSERT INTO `wp_rg_form_view` VALUES("10297", "7", "2015-03-30 00:43:20", "5.39.223.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("10298", "1", "2015-03-30 00:43:48", "5.39.223.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("10299", "2", "2015-03-30 00:44:04", "5.39.223.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("10300", "3", "2015-03-30 01:00:42", "207.46.13.65", "424");
INSERT INTO `wp_rg_form_view` VALUES("10301", "3", "2015-03-30 02:03:39", "157.55.39.46", "74");
INSERT INTO `wp_rg_form_view` VALUES("10302", "3", "2015-03-30 03:01:31", "66.249.79.77", "68");
INSERT INTO `wp_rg_form_view` VALUES("10303", "3", "2015-03-30 04:00:42", "209.121.9.25", "460");
INSERT INTO `wp_rg_form_view` VALUES("10304", "3", "2015-03-30 05:00:08", "66.249.79.85", "130");
INSERT INTO `wp_rg_form_view` VALUES("10305", "3", "2015-03-30 06:00:28", "68.180.228.245", "361");
INSERT INTO `wp_rg_form_view` VALUES("10306", "3", "2015-03-30 07:04:26", "66.249.79.77", "80");
INSERT INTO `wp_rg_form_view` VALUES("10307", "1", "2015-03-30 07:40:00", "104.193.9.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("10308", "3", "2015-03-30 08:01:43", "66.249.79.93", "104");
INSERT INTO `wp_rg_form_view` VALUES("10309", "3", "2015-03-30 09:00:24", "66.249.79.77", "96");
INSERT INTO `wp_rg_form_view` VALUES("10310", "3", "2015-03-30 10:00:35", "66.249.79.85", "144");
INSERT INTO `wp_rg_form_view` VALUES("10311", "3", "2015-03-30 11:00:08", "157.55.39.46", "106");
INSERT INTO `wp_rg_form_view` VALUES("10312", "3", "2015-03-30 12:03:45", "173.61.113.14", "421");
INSERT INTO `wp_rg_form_view` VALUES("10313", "7", "2015-03-30 12:04:20", "173.61.113.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("10314", "1", "2015-03-30 12:04:29", "173.61.113.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("10315", "2", "2015-03-30 12:04:34", "173.61.113.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("10316", "3", "2015-03-30 13:10:06", "66.249.79.85", "287");
INSERT INTO `wp_rg_form_view` VALUES("10317", "3", "2015-03-30 14:01:31", "66.249.79.85", "112");
INSERT INTO `wp_rg_form_view` VALUES("10318", "3", "2015-03-30 15:01:36", "66.249.79.93", "138");
INSERT INTO `wp_rg_form_view` VALUES("10319", "3", "2015-03-30 16:00:51", "66.249.79.77", "98");
INSERT INTO `wp_rg_form_view` VALUES("10320", "3", "2015-03-30 17:01:24", "66.249.79.77", "80");
INSERT INTO `wp_rg_form_view` VALUES("10321", "3", "2015-03-30 18:02:40", "66.249.79.85", "359");
INSERT INTO `wp_rg_form_view` VALUES("10322", "3", "2015-03-30 19:02:10", "157.55.39.46", "652");
INSERT INTO `wp_rg_form_view` VALUES("10323", "3", "2015-03-30 20:01:54", "207.46.13.65", "698");
INSERT INTO `wp_rg_form_view` VALUES("10324", "3", "2015-03-30 21:00:07", "207.46.13.65", "964");
INSERT INTO `wp_rg_form_view` VALUES("10325", "5", "2015-03-30 21:02:40", "209.222.8.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("10326", "1", "2015-03-30 21:53:06", "184.66.135.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("10327", "3", "2015-03-30 22:00:48", "207.46.13.65", "696");
INSERT INTO `wp_rg_form_view` VALUES("10328", "3", "2015-03-30 23:02:48", "207.46.13.65", "722");
INSERT INTO `wp_rg_form_view` VALUES("10329", "1", "2015-03-30 23:30:21", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("10330", "3", "2015-03-31 00:00:11", "157.55.39.113", "802");
INSERT INTO `wp_rg_form_view` VALUES("10331", "3", "2015-03-31 01:00:59", "68.180.228.245", "963");
INSERT INTO `wp_rg_form_view` VALUES("10332", "3", "2015-03-31 02:01:26", "207.46.13.65", "704");
INSERT INTO `wp_rg_form_view` VALUES("10333", "3", "2015-03-31 03:00:36", "207.46.13.65", "574");
INSERT INTO `wp_rg_form_view` VALUES("10334", "3", "2015-03-31 04:03:27", "157.55.39.46", "534");
INSERT INTO `wp_rg_form_view` VALUES("10335", "3", "2015-03-31 05:00:00", "157.55.39.46", "936");
INSERT INTO `wp_rg_form_view` VALUES("10336", "1", "2015-03-31 05:41:05", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("10337", "3", "2015-03-31 06:00:32", "207.46.13.65", "794");
INSERT INTO `wp_rg_form_view` VALUES("10338", "3", "2015-03-31 07:01:39", "207.46.13.65", "748");
INSERT INTO `wp_rg_form_view` VALUES("10339", "3", "2015-03-31 08:00:03", "66.249.79.93", "748");
INSERT INTO `wp_rg_form_view` VALUES("10340", "3", "2015-03-31 09:00:54", "157.55.39.46", "1048");
INSERT INTO `wp_rg_form_view` VALUES("10341", "3", "2015-03-31 10:00:56", "157.55.39.46", "796");
INSERT INTO `wp_rg_form_view` VALUES("10342", "1", "2015-03-31 10:04:50", "157.55.39.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10343", "2", "2015-03-31 10:05:43", "58.49.236.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("10344", "3", "2015-03-31 11:02:04", "157.55.39.46", "878");
INSERT INTO `wp_rg_form_view` VALUES("10345", "3", "2015-03-31 12:00:21", "207.46.13.65", "820");
INSERT INTO `wp_rg_form_view` VALUES("10346", "2", "2015-03-31 12:35:16", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("10347", "3", "2015-03-31 13:00:13", "207.46.13.65", "810");
INSERT INTO `wp_rg_form_view` VALUES("10348", "3", "2015-03-31 14:00:14", "157.55.39.46", "712");
INSERT INTO `wp_rg_form_view` VALUES("10349", "3", "2015-03-31 15:00:27", "66.249.79.85", "868");
INSERT INTO `wp_rg_form_view` VALUES("10350", "6", "2015-03-31 15:56:14", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10351", "3", "2015-03-31 16:00:02", "207.46.13.65", "748");
INSERT INTO `wp_rg_form_view` VALUES("10352", "3", "2015-03-31 17:00:26", "207.46.13.8", "1054");
INSERT INTO `wp_rg_form_view` VALUES("10353", "3", "2015-03-31 18:00:08", "207.46.13.65", "813");
INSERT INTO `wp_rg_form_view` VALUES("10354", "3", "2015-03-31 19:00:14", "207.46.13.65", "738");
INSERT INTO `wp_rg_form_view` VALUES("10355", "3", "2015-03-31 20:00:28", "66.249.79.85", "822");
INSERT INTO `wp_rg_form_view` VALUES("10356", "6", "2015-03-31 20:10:42", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10357", "1", "2015-03-31 20:43:44", "209.249.5.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("10358", "3", "2015-03-31 21:00:50", "157.55.39.46", "892");
INSERT INTO `wp_rg_form_view` VALUES("10359", "3", "2015-03-31 22:00:33", "157.55.39.46", "904");
INSERT INTO `wp_rg_form_view` VALUES("10360", "3", "2015-03-31 23:00:09", "157.55.39.46", "1044");
INSERT INTO `wp_rg_form_view` VALUES("10361", "5", "2015-03-31 23:11:11", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("10362", "3", "2015-04-01 00:01:25", "207.46.13.65", "930");
INSERT INTO `wp_rg_form_view` VALUES("10363", "3", "2015-04-01 01:00:07", "157.55.39.46", "946");
INSERT INTO `wp_rg_form_view` VALUES("10364", "6", "2015-04-01 01:25:35", "66.249.79.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("10365", "1", "2015-04-01 01:58:06", "157.55.39.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10366", "3", "2015-04-01 02:00:19", "66.249.79.77", "890");
INSERT INTO `wp_rg_form_view` VALUES("10367", "3", "2015-04-01 03:00:15", "66.249.79.85", "1061");
INSERT INTO `wp_rg_form_view` VALUES("10368", "2", "2015-04-01 03:50:10", "195.154.181.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("10369", "3", "2015-04-01 04:00:53", "157.55.39.46", "794");
INSERT INTO `wp_rg_form_view` VALUES("10370", "3", "2015-04-01 05:01:01", "66.249.79.85", "834");
INSERT INTO `wp_rg_form_view` VALUES("10371", "3", "2015-04-01 06:00:12", "157.55.39.46", "792");
INSERT INTO `wp_rg_form_view` VALUES("10372", "1", "2015-04-01 06:00:27", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("10373", "3", "2015-04-01 07:00:17", "207.46.13.65", "732");
INSERT INTO `wp_rg_form_view` VALUES("10374", "3", "2015-04-01 08:00:56", "157.55.39.46", "1151");
INSERT INTO `wp_rg_form_view` VALUES("10375", "6", "2015-04-01 08:36:13", "157.55.39.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("10376", "3", "2015-04-01 09:00:04", "207.46.13.65", "706");
INSERT INTO `wp_rg_form_view` VALUES("10377", "3", "2015-04-01 10:01:43", "157.55.39.113", "782");
INSERT INTO `wp_rg_form_view` VALUES("10378", "3", "2015-04-01 11:00:05", "66.249.67.77", "826");
INSERT INTO `wp_rg_form_view` VALUES("10379", "3", "2015-04-01 12:00:16", "207.46.13.65", "796");
INSERT INTO `wp_rg_form_view` VALUES("10380", "3", "2015-04-01 13:00:22", "157.55.39.46", "772");
INSERT INTO `wp_rg_form_view` VALUES("10381", "7", "2015-04-01 13:17:43", "96.50.110.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("10382", "3", "2015-04-01 14:01:39", "207.46.13.8", "786");
INSERT INTO `wp_rg_form_view` VALUES("10383", "3", "2015-04-01 15:00:53", "207.46.13.65", "818");
INSERT INTO `wp_rg_form_view` VALUES("10384", "3", "2015-04-01 16:00:28", "207.46.13.65", "1030");
INSERT INTO `wp_rg_form_view` VALUES("10385", "3", "2015-04-01 17:01:02", "157.55.39.46", "1119");
INSERT INTO `wp_rg_form_view` VALUES("10386", "7", "2015-04-01 17:27:01", "93.0.218.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("10387", "1", "2015-04-01 17:27:27", "93.0.218.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("10388", "2", "2015-04-01 17:27:41", "93.0.218.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("10389", "6", "2015-04-01 17:31:32", "66.249.79.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("10390", "3", "2015-04-01 18:00:00", "104.245.101.68", "1014");
INSERT INTO `wp_rg_form_view` VALUES("10391", "3", "2015-04-01 19:01:13", "157.55.39.46", "648");
INSERT INTO `wp_rg_form_view` VALUES("10392", "3", "2015-04-01 20:00:17", "207.46.13.65", "669");
INSERT INTO `wp_rg_form_view` VALUES("10393", "3", "2015-04-01 21:05:12", "157.55.39.46", "652");
INSERT INTO `wp_rg_form_view` VALUES("10394", "3", "2015-04-01 22:00:39", "157.55.39.46", "533");
INSERT INTO `wp_rg_form_view` VALUES("10395", "3", "2015-04-01 23:00:09", "66.249.79.77", "606");
INSERT INTO `wp_rg_form_view` VALUES("10396", "3", "2015-04-02 00:00:34", "66.249.79.77", "444");
INSERT INTO `wp_rg_form_view` VALUES("10397", "3", "2015-04-02 01:00:31", "66.249.79.77", "146");
INSERT INTO `wp_rg_form_view` VALUES("10398", "3", "2015-04-02 02:26:08", "134.249.53.8", "56");
INSERT INTO `wp_rg_form_view` VALUES("10399", "3", "2015-04-02 03:00:24", "66.249.79.77", "42");
INSERT INTO `wp_rg_form_view` VALUES("10400", "3", "2015-04-02 04:11:32", "66.249.79.93", "436");
INSERT INTO `wp_rg_form_view` VALUES("10401", "3", "2015-04-02 05:01:13", "66.249.79.93", "146");
INSERT INTO `wp_rg_form_view` VALUES("10402", "3", "2015-04-02 06:01:33", "66.249.79.77", "195");
INSERT INTO `wp_rg_form_view` VALUES("10403", "6", "2015-04-02 06:07:12", "157.55.39.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10404", "7", "2015-04-02 06:40:38", "202.46.48.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("10405", "3", "2015-04-02 07:00:08", "66.249.79.85", "210");
INSERT INTO `wp_rg_form_view` VALUES("10406", "3", "2015-04-02 08:00:52", "66.249.79.93", "144");
INSERT INTO `wp_rg_form_view` VALUES("10407", "3", "2015-04-02 09:00:46", "68.180.228.245", "792");
INSERT INTO `wp_rg_form_view` VALUES("10408", "1", "2015-04-02 09:22:26", "66.249.79.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("10409", "3", "2015-04-02 10:14:18", "66.249.79.85", "46");
INSERT INTO `wp_rg_form_view` VALUES("10410", "3", "2015-04-02 11:12:08", "68.180.228.245", "301");
INSERT INTO `wp_rg_form_view` VALUES("10411", "7", "2015-04-02 11:37:50", "207.63.249.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("10412", "1", "2015-04-02 11:38:20", "207.63.249.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("10413", "2", "2015-04-02 11:38:29", "207.63.249.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("10414", "3", "2015-04-02 12:08:30", "202.46.63.163", "50");
INSERT INTO `wp_rg_form_view` VALUES("10415", "6", "2015-04-02 12:25:38", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("10416", "3", "2015-04-02 13:04:00", "68.180.228.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("10417", "3", "2015-04-02 14:13:12", "66.249.79.93", "90");
INSERT INTO `wp_rg_form_view` VALUES("10418", "3", "2015-04-02 15:05:31", "68.180.228.245", "50");
INSERT INTO `wp_rg_form_view` VALUES("10419", "3", "2015-04-02 16:15:29", "66.249.79.77", "64");
INSERT INTO `wp_rg_form_view` VALUES("10420", "3", "2015-04-02 17:00:30", "68.180.228.245", "140");
INSERT INTO `wp_rg_form_view` VALUES("10421", "3", "2015-04-02 18:00:12", "207.194.133.9", "142");
INSERT INTO `wp_rg_form_view` VALUES("10422", "1", "2015-04-02 18:07:00", "125.71.52.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("10423", "3", "2015-04-02 19:01:42", "68.180.228.245", "40");
INSERT INTO `wp_rg_form_view` VALUES("10424", "3", "2015-04-02 20:26:11", "46.105.249.20", "317");
INSERT INTO `wp_rg_form_view` VALUES("10425", "7", "2015-04-02 20:27:49", "46.105.249.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("10426", "1", "2015-04-02 20:28:22", "46.105.249.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("10427", "2", "2015-04-02 20:28:37", "46.105.249.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("10428", "3", "2015-04-02 21:06:25", "157.55.39.54", "40");
INSERT INTO `wp_rg_form_view` VALUES("10429", "3", "2015-04-02 22:04:32", "66.249.79.93", "62");
INSERT INTO `wp_rg_form_view` VALUES("10430", "3", "2015-04-02 23:13:44", "66.249.79.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("10431", "3", "2015-04-03 00:03:21", "207.46.13.65", "70");
INSERT INTO `wp_rg_form_view` VALUES("10432", "3", "2015-04-03 01:03:27", "66.249.79.93", "322");
INSERT INTO `wp_rg_form_view` VALUES("10433", "7", "2015-04-03 01:59:00", "93.0.218.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("10434", "1", "2015-04-03 01:59:19", "93.0.218.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("10435", "2", "2015-04-03 01:59:27", "93.0.218.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("10436", "3", "2015-04-03 02:00:01", "93.0.218.98", "83");
INSERT INTO `wp_rg_form_view` VALUES("10437", "3", "2015-04-03 03:16:02", "66.249.79.85", "26");
INSERT INTO `wp_rg_form_view` VALUES("10438", "3", "2015-04-03 05:04:09", "207.46.13.65", "80");
INSERT INTO `wp_rg_form_view` VALUES("10439", "3", "2015-04-03 06:07:08", "157.55.39.113", "58");
INSERT INTO `wp_rg_form_view` VALUES("10440", "3", "2015-04-03 07:10:17", "66.249.79.93", "54");
INSERT INTO `wp_rg_form_view` VALUES("10441", "3", "2015-04-03 08:02:36", "202.46.61.124", "74");
INSERT INTO `wp_rg_form_view` VALUES("10442", "3", "2015-04-03 09:01:08", "202.46.50.157", "68");
INSERT INTO `wp_rg_form_view` VALUES("10443", "3", "2015-04-03 10:05:53", "192.187.108.250", "76");
INSERT INTO `wp_rg_form_view` VALUES("10444", "3", "2015-04-03 11:01:47", "66.249.79.85", "142");
INSERT INTO `wp_rg_form_view` VALUES("10445", "2", "2015-04-03 11:27:51", "58.49.236.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("10446", "3", "2015-04-03 12:08:28", "202.46.62.149", "96");
INSERT INTO `wp_rg_form_view` VALUES("10447", "3", "2015-04-03 13:06:04", "66.249.79.93", "146");
INSERT INTO `wp_rg_form_view` VALUES("10448", "7", "2015-04-03 13:20:21", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("10449", "3", "2015-04-03 14:05:35", "202.46.63.82", "117");
INSERT INTO `wp_rg_form_view` VALUES("10450", "3", "2015-04-03 15:00:58", "66.249.79.93", "92");
INSERT INTO `wp_rg_form_view` VALUES("10451", "3", "2015-04-03 16:02:37", "202.46.61.58", "479");
INSERT INTO `wp_rg_form_view` VALUES("10452", "3", "2015-04-03 17:01:08", "202.46.61.101", "355");
INSERT INTO `wp_rg_form_view` VALUES("10453", "7", "2015-04-03 17:52:53", "187.6.141.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10454", "1", "2015-04-03 17:53:12", "187.6.141.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10455", "2", "2015-04-03 17:53:25", "187.6.141.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10456", "3", "2015-04-03 18:11:22", "202.46.48.45", "98");
INSERT INTO `wp_rg_form_view` VALUES("10457", "3", "2015-04-03 19:09:56", "202.46.49.188", "70");
INSERT INTO `wp_rg_form_view` VALUES("10458", "3", "2015-04-03 20:08:28", "202.46.48.78", "116");
INSERT INTO `wp_rg_form_view` VALUES("10459", "3", "2015-04-03 21:07:00", "202.46.48.152", "108");
INSERT INTO `wp_rg_form_view` VALUES("10460", "3", "2015-04-03 22:00:03", "66.249.79.93", "112");
INSERT INTO `wp_rg_form_view` VALUES("10461", "3", "2015-04-03 23:00:20", "66.249.79.77", "108");
INSERT INTO `wp_rg_form_view` VALUES("10462", "3", "2015-04-04 00:02:36", "202.46.62.148", "132");
INSERT INTO `wp_rg_form_view` VALUES("10463", "3", "2015-04-04 01:01:08", "202.46.61.124", "216");
INSERT INTO `wp_rg_form_view` VALUES("10464", "3", "2015-04-04 02:11:22", "202.46.48.208", "68");
INSERT INTO `wp_rg_form_view` VALUES("10465", "3", "2015-04-04 03:09:55", "202.46.61.124", "58");
INSERT INTO `wp_rg_form_view` VALUES("10466", "3", "2015-04-04 04:04:18", "66.249.79.93", "982");
INSERT INTO `wp_rg_form_view` VALUES("10467", "3", "2015-04-04 05:00:09", "207.46.13.65", "2193");
INSERT INTO `wp_rg_form_view` VALUES("10468", "6", "2015-04-04 05:08:36", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10469", "3", "2015-04-04 06:00:03", "157.55.39.46", "3263");
INSERT INTO `wp_rg_form_view` VALUES("10470", "6", "2015-04-04 06:54:57", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10471", "3", "2015-04-04 07:00:23", "157.55.39.113", "5021");
INSERT INTO `wp_rg_form_view` VALUES("10472", "6", "2015-04-04 07:51:58", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10473", "3", "2015-04-04 08:00:01", "207.46.13.65", "4663");
INSERT INTO `wp_rg_form_view` VALUES("10474", "6", "2015-04-04 08:56:21", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10475", "3", "2015-04-04 09:00:15", "207.46.13.65", "3553");
INSERT INTO `wp_rg_form_view` VALUES("10476", "3", "2015-04-04 10:00:08", "157.55.39.46", "4572");
INSERT INTO `wp_rg_form_view` VALUES("10477", "3", "2015-04-04 11:00:00", "157.55.39.46", "4788");
INSERT INTO `wp_rg_form_view` VALUES("10478", "6", "2015-04-04 11:52:16", "207.46.13.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("10479", "3", "2015-04-04 12:00:02", "157.55.39.113", "5029");
INSERT INTO `wp_rg_form_view` VALUES("10480", "3", "2015-04-04 13:00:07", "207.46.13.65", "4769");
INSERT INTO `wp_rg_form_view` VALUES("10481", "6", "2015-04-04 13:02:55", "157.55.39.113", "4");
INSERT INTO `wp_rg_form_view` VALUES("10482", "3", "2015-04-04 14:00:32", "157.55.39.46", "5851");
INSERT INTO `wp_rg_form_view` VALUES("10483", "3", "2015-04-04 15:00:00", "207.46.13.65", "4925");
INSERT INTO `wp_rg_form_view` VALUES("10484", "6", "2015-04-04 15:04:41", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10485", "3", "2015-04-04 16:00:00", "207.46.13.65", "4307");
INSERT INTO `wp_rg_form_view` VALUES("10486", "1", "2015-04-04 16:07:24", "198.245.65.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("10487", "3", "2015-04-04 17:00:07", "207.46.13.65", "5082");
INSERT INTO `wp_rg_form_view` VALUES("10488", "6", "2015-04-04 17:03:23", "207.46.13.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("10489", "3", "2015-04-04 18:00:01", "157.55.39.113", "5452");
INSERT INTO `wp_rg_form_view` VALUES("10490", "6", "2015-04-04 18:38:38", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10491", "3", "2015-04-04 19:00:00", "157.55.39.46", "4948");
INSERT INTO `wp_rg_form_view` VALUES("10492", "6", "2015-04-04 19:58:45", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10493", "3", "2015-04-04 20:00:00", "157.55.39.46", "5073");
INSERT INTO `wp_rg_form_view` VALUES("10494", "7", "2015-04-04 20:12:07", "94.221.73.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("10495", "1", "2015-04-04 20:12:30", "94.221.73.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("10496", "2", "2015-04-04 20:12:45", "94.221.73.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("10497", "3", "2015-04-04 21:00:09", "157.55.39.113", "3622");
INSERT INTO `wp_rg_form_view` VALUES("10498", "7", "2015-04-04 21:35:39", "146.0.42.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("10499", "3", "2015-04-04 22:00:04", "157.55.39.113", "5156");
INSERT INTO `wp_rg_form_view` VALUES("10500", "6", "2015-04-04 22:26:38", "157.55.39.46", "8");
INSERT INTO `wp_rg_form_view` VALUES("10501", "1", "2015-04-04 22:32:52", "66.249.79.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("10502", "3", "2015-04-04 23:00:00", "157.55.39.46", "5322");
INSERT INTO `wp_rg_form_view` VALUES("10503", "6", "2015-04-04 23:23:35", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10504", "2", "2015-04-04 23:51:36", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("10505", "3", "2015-04-05 00:00:08", "207.46.13.65", "3860");
INSERT INTO `wp_rg_form_view` VALUES("10506", "3", "2015-04-05 01:00:00", "207.46.13.8", "5139");
INSERT INTO `wp_rg_form_view` VALUES("10507", "6", "2015-04-05 01:30:59", "157.55.39.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("10508", "3", "2015-04-05 02:00:01", "157.55.39.46", "4819");
INSERT INTO `wp_rg_form_view` VALUES("10509", "7", "2015-04-05 02:36:18", "172.243.238.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("10510", "6", "2015-04-05 02:46:09", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10511", "3", "2015-04-05 03:00:00", "157.55.39.46", "4384");
INSERT INTO `wp_rg_form_view` VALUES("10512", "7", "2015-04-05 03:42:06", "82.171.194.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("10513", "1", "2015-04-05 03:42:22", "82.171.194.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("10514", "2", "2015-04-05 03:42:30", "82.171.194.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("10515", "3", "2015-04-05 04:00:00", "207.46.13.8", "4369");
INSERT INTO `wp_rg_form_view` VALUES("10516", "3", "2015-04-05 05:00:05", "207.46.13.65", "4750");
INSERT INTO `wp_rg_form_view` VALUES("10517", "3", "2015-04-05 06:00:01", "157.55.39.113", "4878");
INSERT INTO `wp_rg_form_view` VALUES("10518", "6", "2015-04-05 06:47:50", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10519", "3", "2015-04-05 07:00:06", "66.249.79.77", "5158");
INSERT INTO `wp_rg_form_view` VALUES("10520", "6", "2015-04-05 07:55:03", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10521", "3", "2015-04-05 08:00:05", "157.55.39.113", "4753");
INSERT INTO `wp_rg_form_view` VALUES("10522", "6", "2015-04-05 08:05:29", "157.55.39.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("10523", "3", "2015-04-05 09:00:00", "157.55.39.46", "4371");
INSERT INTO `wp_rg_form_view` VALUES("10524", "6", "2015-04-05 09:13:22", "157.55.39.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("10525", "3", "2015-04-05 10:00:14", "207.46.13.65", "4890");
INSERT INTO `wp_rg_form_view` VALUES("10526", "6", "2015-04-05 10:55:43", "157.55.39.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("10527", "3", "2015-04-05 11:00:02", "157.55.39.46", "5307");
INSERT INTO `wp_rg_form_view` VALUES("10528", "6", "2015-04-05 11:01:16", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10529", "3", "2015-04-05 12:00:03", "207.46.13.65", "4888");
INSERT INTO `wp_rg_form_view` VALUES("10530", "6", "2015-04-05 12:07:19", "207.46.13.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("10531", "3", "2015-04-05 14:54:57", "157.55.39.113", "2425");
INSERT INTO `wp_rg_form_view` VALUES("10532", "3", "2015-04-05 14:54:57", "157.55.39.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10533", "3", "2015-04-05 14:54:57", "202.46.48.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("10534", "6", "2015-04-05 14:59:49", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10535", "3", "2015-04-05 15:00:00", "207.46.13.65", "6249");
INSERT INTO `wp_rg_form_view` VALUES("10536", "6", "2015-04-05 15:03:25", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10537", "3", "2015-04-05 16:00:01", "207.46.13.65", "4600");
INSERT INTO `wp_rg_form_view` VALUES("10538", "1", "2015-04-05 16:45:38", "162.243.170.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("10539", "2", "2015-04-05 16:45:38", "162.243.170.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("10540", "3", "2015-04-05 17:00:01", "157.55.39.46", "4668");
INSERT INTO `wp_rg_form_view` VALUES("10541", "6", "2015-04-05 17:20:08", "207.46.13.65", "6");
INSERT INTO `wp_rg_form_view` VALUES("10542", "3", "2015-04-05 18:00:06", "157.55.39.46", "5363");
INSERT INTO `wp_rg_form_view` VALUES("10543", "6", "2015-04-05 18:06:01", "157.55.39.113", "4");
INSERT INTO `wp_rg_form_view` VALUES("10544", "3", "2015-04-05 19:00:16", "157.55.39.46", "4925");
INSERT INTO `wp_rg_form_view` VALUES("10545", "6", "2015-04-05 19:30:04", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10546", "3", "2015-04-05 20:00:06", "157.55.39.46", "5029");
INSERT INTO `wp_rg_form_view` VALUES("10547", "6", "2015-04-05 20:01:21", "157.55.39.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("10548", "5", "2015-04-05 20:08:00", "188.165.15.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("10549", "3", "2015-04-05 21:00:22", "157.55.39.46", "5095");
INSERT INTO `wp_rg_form_view` VALUES("10550", "6", "2015-04-05 21:14:44", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10551", "3", "2015-04-05 22:00:00", "157.55.39.46", "5056");
INSERT INTO `wp_rg_form_view` VALUES("10552", "6", "2015-04-05 22:02:33", "207.46.13.65", "6");
INSERT INTO `wp_rg_form_view` VALUES("10553", "3", "2015-04-05 23:00:01", "207.46.13.65", "5235");
INSERT INTO `wp_rg_form_view` VALUES("10554", "6", "2015-04-05 23:11:27", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10555", "3", "2015-04-06 00:00:02", "157.55.39.46", "4688");
INSERT INTO `wp_rg_form_view` VALUES("10556", "6", "2015-04-06 00:27:34", "157.55.39.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("10557", "3", "2015-04-06 01:00:10", "207.46.13.65", "4757");
INSERT INTO `wp_rg_form_view` VALUES("10558", "6", "2015-04-06 01:15:24", "157.55.39.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("10559", "3", "2015-04-06 02:00:04", "207.46.13.65", "5440");
INSERT INTO `wp_rg_form_view` VALUES("10560", "6", "2015-04-06 02:10:28", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10561", "3", "2015-04-06 03:00:18", "157.55.39.46", "5502");
INSERT INTO `wp_rg_form_view` VALUES("10562", "6", "2015-04-06 03:13:56", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10563", "3", "2015-04-06 04:00:00", "157.55.39.46", "5072");
INSERT INTO `wp_rg_form_view` VALUES("10564", "6", "2015-04-06 04:15:26", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10565", "3", "2015-04-06 05:00:00", "157.55.39.46", "5282");
INSERT INTO `wp_rg_form_view` VALUES("10566", "6", "2015-04-06 05:08:21", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10567", "3", "2015-04-06 06:00:01", "207.46.13.65", "6049");
INSERT INTO `wp_rg_form_view` VALUES("10568", "6", "2015-04-06 06:15:12", "207.46.13.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("10569", "1", "2015-04-06 06:57:15", "162.243.215.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("10570", "3", "2015-04-06 07:00:00", "162.243.215.90", "7582");
INSERT INTO `wp_rg_form_view` VALUES("10571", "3", "2015-04-06 08:00:06", "207.46.13.65", "4993");
INSERT INTO `wp_rg_form_view` VALUES("10572", "3", "2015-04-06 09:00:06", "157.55.39.113", "5377");
INSERT INTO `wp_rg_form_view` VALUES("10573", "6", "2015-04-06 09:20:24", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10574", "3", "2015-04-06 10:00:00", "207.46.13.8", "4727");
INSERT INTO `wp_rg_form_view` VALUES("10575", "6", "2015-04-06 10:02:02", "207.46.13.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("10576", "3", "2015-04-06 11:00:11", "157.55.39.46", "4967");
INSERT INTO `wp_rg_form_view` VALUES("10577", "6", "2015-04-06 11:47:53", "142.4.213.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("10578", "3", "2015-04-06 12:00:00", "157.55.39.46", "7351");
INSERT INTO `wp_rg_form_view` VALUES("10579", "6", "2015-04-06 12:16:19", "148.251.69.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("10580", "2", "2015-04-06 12:21:47", "46.4.189.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("10581", "7", "2015-04-06 12:41:47", "188.120.218.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("10582", "1", "2015-04-06 12:42:09", "188.120.218.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("10583", "3", "2015-04-06 13:00:01", "157.55.39.46", "4853");
INSERT INTO `wp_rg_form_view` VALUES("10584", "6", "2015-04-06 13:14:41", "157.55.39.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("10585", "3", "2015-04-06 14:00:00", "157.55.39.46", "4948");
INSERT INTO `wp_rg_form_view` VALUES("10586", "6", "2015-04-06 14:06:45", "157.55.39.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("10587", "2", "2015-04-06 14:12:59", "176.10.104.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("10588", "1", "2015-04-06 14:13:02", "176.10.104.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("10589", "7", "2015-04-06 14:13:14", "176.10.104.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("10590", "3", "2015-04-06 15:00:01", "207.46.13.65", "4033");
INSERT INTO `wp_rg_form_view` VALUES("10591", "6", "2015-04-06 15:24:28", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10592", "3", "2015-04-06 16:00:05", "157.55.39.46", "4157");
INSERT INTO `wp_rg_form_view` VALUES("10593", "3", "2015-04-06 17:00:17", "157.55.39.46", "6644");
INSERT INTO `wp_rg_form_view` VALUES("10594", "6", "2015-04-06 17:27:34", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10595", "3", "2015-04-06 18:00:00", "207.46.13.8", "5823");
INSERT INTO `wp_rg_form_view` VALUES("10596", "7", "2015-04-06 18:28:59", "162.223.100.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("10597", "3", "2015-04-06 19:00:00", "157.55.39.46", "5238");
INSERT INTO `wp_rg_form_view` VALUES("10598", "6", "2015-04-06 19:49:39", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("10599", "3", "2015-04-06 20:00:00", "157.55.39.46", "4540");
INSERT INTO `wp_rg_form_view` VALUES("10600", "6", "2015-04-06 20:55:10", "157.55.39.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("10601", "3", "2015-04-06 21:00:02", "207.46.13.65", "5544");
INSERT INTO `wp_rg_form_view` VALUES("10602", "6", "2015-04-06 21:00:06", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10603", "3", "2015-04-06 22:00:00", "207.46.13.8", "7360");
INSERT INTO `wp_rg_form_view` VALUES("10604", "1", "2015-04-06 22:07:37", "174.127.133.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("10605", "2", "2015-04-06 22:09:18", "174.127.133.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("10606", "7", "2015-04-06 22:12:48", "174.127.133.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("10607", "6", "2015-04-06 22:13:10", "144.76.137.226", "6");
INSERT INTO `wp_rg_form_view` VALUES("10608", "3", "2015-04-06 23:00:00", "136.243.24.27", "5194");
INSERT INTO `wp_rg_form_view` VALUES("10609", "7", "2015-04-06 23:00:21", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("10610", "6", "2015-04-06 23:23:52", "157.55.39.113", "4");
INSERT INTO `wp_rg_form_view` VALUES("10611", "3", "2015-04-07 00:00:14", "136.243.5.215", "4884");
INSERT INTO `wp_rg_form_view` VALUES("10612", "3", "2015-04-07 01:00:01", "136.243.5.215", "4528");
INSERT INTO `wp_rg_form_view` VALUES("10613", "6", "2015-04-07 01:16:03", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10614", "3", "2015-04-07 02:00:00", "157.55.39.113", "4422");
INSERT INTO `wp_rg_form_view` VALUES("10615", "6", "2015-04-07 02:32:16", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10616", "3", "2015-04-07 03:00:07", "157.55.39.46", "3683");
INSERT INTO `wp_rg_form_view` VALUES("10617", "6", "2015-04-07 03:46:24", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10618", "3", "2015-04-07 04:00:28", "207.46.13.65", "5011");
INSERT INTO `wp_rg_form_view` VALUES("10619", "6", "2015-04-07 04:10:17", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10620", "3", "2015-04-07 05:00:00", "207.46.13.8", "5000");
INSERT INTO `wp_rg_form_view` VALUES("10621", "6", "2015-04-07 05:29:28", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("10622", "3", "2015-04-07 06:00:04", "157.55.39.113", "4916");
INSERT INTO `wp_rg_form_view` VALUES("10623", "6", "2015-04-07 06:25:49", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10624", "1", "2015-04-07 06:42:20", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("10625", "3", "2015-04-07 07:00:00", "207.46.13.65", "5017");
INSERT INTO `wp_rg_form_view` VALUES("10626", "6", "2015-04-07 07:20:15", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10627", "3", "2015-04-07 08:00:08", "157.55.39.46", "3802");
INSERT INTO `wp_rg_form_view` VALUES("10628", "6", "2015-04-07 08:37:05", "157.55.39.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("10629", "1", "2015-04-07 08:41:59", "74.12.116.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("10630", "3", "2015-04-07 09:00:00", "207.46.13.65", "4761");
INSERT INTO `wp_rg_form_view` VALUES("10631", "6", "2015-04-07 09:28:09", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10632", "3", "2015-04-07 10:00:00", "157.55.39.46", "3804");
INSERT INTO `wp_rg_form_view` VALUES("10633", "6", "2015-04-07 10:40:59", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10634", "3", "2015-04-07 11:00:01", "157.55.39.46", "4251");
INSERT INTO `wp_rg_form_view` VALUES("10635", "6", "2015-04-07 11:48:00", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10636", "3", "2015-04-07 12:00:01", "199.192.207.146", "3138");
INSERT INTO `wp_rg_form_view` VALUES("10637", "6", "2015-04-07 12:01:18", "199.192.207.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("10638", "3", "2015-04-07 13:00:17", "207.46.13.65", "2698");
INSERT INTO `wp_rg_form_view` VALUES("10639", "6", "2015-04-07 13:19:11", "157.55.39.113", "4");
INSERT INTO `wp_rg_form_view` VALUES("10640", "2", "2015-04-07 13:33:17", "74.12.116.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("10641", "7", "2015-04-07 13:49:11", "74.12.116.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("10642", "3", "2015-04-07 14:00:42", "68.180.228.245", "3009");
INSERT INTO `wp_rg_form_view` VALUES("10643", "2", "2015-04-07 14:07:46", "46.4.189.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("10644", "7", "2015-04-07 14:28:54", "175.144.33.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("10645", "1", "2015-04-07 14:29:14", "175.144.33.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("10646", "6", "2015-04-07 14:39:00", "157.55.39.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("10647", "3", "2015-04-07 15:00:39", "207.46.13.65", "2515");
INSERT INTO `wp_rg_form_view` VALUES("10648", "6", "2015-04-07 15:27:55", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10649", "3", "2015-04-07 16:01:15", "157.55.39.46", "4490");
INSERT INTO `wp_rg_form_view` VALUES("10650", "6", "2015-04-07 16:08:04", "188.165.15.212", "11");
INSERT INTO `wp_rg_form_view` VALUES("10651", "3", "2015-04-07 17:00:13", "157.55.39.46", "3858");
INSERT INTO `wp_rg_form_view` VALUES("10652", "6", "2015-04-07 17:05:39", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("10653", "3", "2015-04-07 18:00:02", "136.243.24.27", "6008");
INSERT INTO `wp_rg_form_view` VALUES("10654", "6", "2015-04-07 18:18:13", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10655", "3", "2015-04-07 19:00:01", "157.55.39.46", "5063");
INSERT INTO `wp_rg_form_view` VALUES("10656", "3", "2015-04-07 20:00:12", "157.55.39.46", "6431");
INSERT INTO `wp_rg_form_view` VALUES("10657", "6", "2015-04-07 20:11:34", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10658", "3", "2015-04-07 21:00:00", "157.55.39.46", "7389");
INSERT INTO `wp_rg_form_view` VALUES("10659", "6", "2015-04-07 21:29:50", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10660", "3", "2015-04-07 22:00:01", "207.46.13.65", "3087");
INSERT INTO `wp_rg_form_view` VALUES("10661", "3", "2015-04-07 23:00:00", "157.55.39.46", "2690");
INSERT INTO `wp_rg_form_view` VALUES("10662", "3", "2015-04-08 00:00:02", "157.55.39.46", "4380");
INSERT INTO `wp_rg_form_view` VALUES("10663", "6", "2015-04-08 00:06:29", "198.27.66.185", "8");
INSERT INTO `wp_rg_form_view` VALUES("10664", "3", "2015-04-08 01:00:09", "157.55.39.46", "2278");
INSERT INTO `wp_rg_form_view` VALUES("10665", "3", "2015-04-08 02:00:01", "157.55.39.113", "2302");
INSERT INTO `wp_rg_form_view` VALUES("10666", "3", "2015-04-08 03:00:07", "207.46.13.65", "2440");
INSERT INTO `wp_rg_form_view` VALUES("10667", "1", "2015-04-08 03:45:15", "104.193.9.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("10668", "3", "2015-04-08 04:00:54", "157.55.39.113", "1540");
INSERT INTO `wp_rg_form_view` VALUES("10669", "3", "2015-04-08 05:00:37", "157.55.39.46", "1594");
INSERT INTO `wp_rg_form_view` VALUES("10670", "3", "2015-04-08 06:00:28", "207.46.13.65", "1329");
INSERT INTO `wp_rg_form_view` VALUES("10671", "3", "2015-04-08 07:00:21", "157.55.39.113", "1266");
INSERT INTO `wp_rg_form_view` VALUES("10672", "3", "2015-04-08 08:01:07", "207.46.13.65", "1279");
INSERT INTO `wp_rg_form_view` VALUES("10673", "3", "2015-04-08 08:01:07", "207.46.13.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("10674", "3", "2015-04-08 09:00:45", "207.46.13.65", "2737");
INSERT INTO `wp_rg_form_view` VALUES("10675", "3", "2015-04-08 10:00:00", "144.76.137.226", "1468");
INSERT INTO `wp_rg_form_view` VALUES("10676", "3", "2015-04-08 11:00:17", "157.55.39.46", "2191");
INSERT INTO `wp_rg_form_view` VALUES("10677", "3", "2015-04-08 12:00:03", "157.55.39.46", "5270");
INSERT INTO `wp_rg_form_view` VALUES("10678", "6", "2015-04-08 12:36:32", "176.36.80.39", "4");
INSERT INTO `wp_rg_form_view` VALUES("10679", "3", "2015-04-08 13:00:03", "176.36.80.39", "1817");
INSERT INTO `wp_rg_form_view` VALUES("10680", "3", "2015-04-08 14:00:16", "207.46.13.65", "1373");
INSERT INTO `wp_rg_form_view` VALUES("10681", "3", "2015-04-08 15:00:26", "207.46.13.65", "1139");
INSERT INTO `wp_rg_form_view` VALUES("10682", "3", "2015-04-08 16:00:13", "207.46.13.65", "2466");
INSERT INTO `wp_rg_form_view` VALUES("10683", "6", "2015-04-08 16:38:57", "68.180.228.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("10684", "3", "2015-04-08 17:00:08", "68.180.228.245", "1611");
INSERT INTO `wp_rg_form_view` VALUES("10685", "3", "2015-04-08 18:00:02", "157.55.39.46", "2480");
INSERT INTO `wp_rg_form_view` VALUES("10686", "7", "2015-04-08 18:11:54", "75.152.184.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10687", "1", "2015-04-08 18:42:14", "184.66.135.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("10688", "3", "2015-04-08 19:00:09", "207.46.13.65", "4454");
INSERT INTO `wp_rg_form_view` VALUES("10689", "3", "2015-04-08 20:00:02", "157.55.39.46", "3403");
INSERT INTO `wp_rg_form_view` VALUES("10690", "3", "2015-04-08 21:00:12", "157.55.39.46", "3716");
INSERT INTO `wp_rg_form_view` VALUES("10691", "3", "2015-04-08 22:00:13", "66.249.67.77", "6413");
INSERT INTO `wp_rg_form_view` VALUES("10692", "3", "2015-04-08 23:00:13", "207.46.13.69", "3366");
INSERT INTO `wp_rg_form_view` VALUES("10693", "3", "2015-04-09 00:01:11", "207.46.13.69", "2487");
INSERT INTO `wp_rg_form_view` VALUES("10694", "3", "2015-04-09 01:00:08", "207.46.13.69", "1433");
INSERT INTO `wp_rg_form_view` VALUES("10695", "3", "2015-04-09 02:02:12", "66.249.67.77", "4872");
INSERT INTO `wp_rg_form_view` VALUES("10696", "1", "2015-04-09 02:10:08", "104.193.9.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("10697", "2", "2015-04-09 02:25:37", "66.249.67.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("10698", "6", "2015-04-09 02:31:35", "88.198.164.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("10699", "7", "2015-04-09 02:48:49", "134.249.48.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("10700", "3", "2015-04-09 03:00:03", "157.55.39.46", "2325");
INSERT INTO `wp_rg_form_view` VALUES("10701", "3", "2015-04-09 04:00:16", "157.55.39.46", "1358");
INSERT INTO `wp_rg_form_view` VALUES("10702", "3", "2015-04-09 05:00:54", "66.249.67.93", "841");
INSERT INTO `wp_rg_form_view` VALUES("10703", "3", "2015-04-09 06:00:58", "66.249.67.77", "637");
INSERT INTO `wp_rg_form_view` VALUES("10704", "6", "2015-04-09 06:52:22", "104.255.68.191", "4");
INSERT INTO `wp_rg_form_view` VALUES("10705", "3", "2015-04-09 07:01:01", "66.249.67.77", "939");
INSERT INTO `wp_rg_form_view` VALUES("10706", "5", "2015-04-09 07:22:41", "188.165.15.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("10707", "3", "2015-04-09 08:00:02", "68.180.228.245", "1289");
INSERT INTO `wp_rg_form_view` VALUES("10708", "3", "2015-04-09 09:01:18", "202.46.63.66", "1141");
INSERT INTO `wp_rg_form_view` VALUES("10709", "3", "2015-04-09 10:01:10", "157.55.39.46", "644");
INSERT INTO `wp_rg_form_view` VALUES("10710", "3", "2015-04-09 11:00:32", "66.249.67.93", "689");
INSERT INTO `wp_rg_form_view` VALUES("10711", "3", "2015-04-09 12:00:05", "66.249.67.85", "371");
INSERT INTO `wp_rg_form_view` VALUES("10712", "3", "2015-04-09 13:01:05", "66.249.67.77", "980");
INSERT INTO `wp_rg_form_view` VALUES("10713", "3", "2015-04-09 14:02:06", "66.249.67.85", "5725");
INSERT INTO `wp_rg_form_view` VALUES("10714", "3", "2015-04-09 15:00:01", "157.55.39.183", "7044");
INSERT INTO `wp_rg_form_view` VALUES("10715", "3", "2015-04-09 16:00:01", "157.55.39.62", "5584");
INSERT INTO `wp_rg_form_view` VALUES("10716", "3", "2015-04-09 17:00:05", "157.55.39.183", "4715");
INSERT INTO `wp_rg_form_view` VALUES("10717", "3", "2015-04-09 18:00:00", "207.46.13.65", "5334");
INSERT INTO `wp_rg_form_view` VALUES("10718", "3", "2015-04-09 19:00:05", "157.55.39.46", "9499");
INSERT INTO `wp_rg_form_view` VALUES("10719", "6", "2015-04-09 19:34:59", "157.55.39.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("10720", "3", "2015-04-09 20:00:00", "207.46.13.65", "5025");
INSERT INTO `wp_rg_form_view` VALUES("10721", "1", "2015-04-09 20:55:32", "199.58.86.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("10722", "2", "2015-04-09 20:55:44", "199.58.86.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("10723", "3", "2015-04-09 21:00:00", "157.55.39.46", "4464");
INSERT INTO `wp_rg_form_view` VALUES("10724", "3", "2015-04-09 22:00:08", "66.249.67.85", "4048");
INSERT INTO `wp_rg_form_view` VALUES("10725", "7", "2015-04-09 22:33:55", "5.9.145.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("10726", "3", "2015-04-09 23:00:06", "207.46.13.65", "4472");
INSERT INTO `wp_rg_form_view` VALUES("10727", "3", "2015-04-10 00:00:00", "157.55.39.183", "5354");
INSERT INTO `wp_rg_form_view` VALUES("10728", "3", "2015-04-10 01:00:00", "157.55.39.183", "4238");
INSERT INTO `wp_rg_form_view` VALUES("10729", "3", "2015-04-10 02:00:05", "157.55.39.183", "4095");
INSERT INTO `wp_rg_form_view` VALUES("10730", "3", "2015-04-10 03:00:20", "207.46.13.65", "4511");
INSERT INTO `wp_rg_form_view` VALUES("10731", "3", "2015-04-10 04:00:03", "157.55.39.46", "5190");
INSERT INTO `wp_rg_form_view` VALUES("10732", "3", "2015-04-10 05:00:00", "207.46.13.65", "4194");
INSERT INTO `wp_rg_form_view` VALUES("10733", "3", "2015-04-10 06:00:13", "157.55.39.183", "3703");
INSERT INTO `wp_rg_form_view` VALUES("10734", "2", "2015-04-10 06:33:01", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("10735", "3", "2015-04-10 07:00:00", "207.46.13.65", "3842");
INSERT INTO `wp_rg_form_view` VALUES("10736", "3", "2015-04-10 08:00:00", "157.55.39.183", "3398");
INSERT INTO `wp_rg_form_view` VALUES("10737", "3", "2015-04-10 09:00:00", "157.55.39.183", "4287");
INSERT INTO `wp_rg_form_view` VALUES("10738", "3", "2015-04-10 10:00:00", "157.55.39.183", "3245");
INSERT INTO `wp_rg_form_view` VALUES("10739", "3", "2015-04-10 11:00:03", "207.46.13.65", "3685");
INSERT INTO `wp_rg_form_view` VALUES("10740", "2", "2015-04-10 11:58:48", "209.222.8.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("10741", "3", "2015-04-10 12:00:09", "207.46.13.65", "4054");
INSERT INTO `wp_rg_form_view` VALUES("10742", "2", "2015-04-10 12:03:49", "46.4.189.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("10743", "1", "2015-04-10 12:44:16", "209.222.8.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("10744", "3", "2015-04-10 13:00:12", "157.55.39.46", "5032");
INSERT INTO `wp_rg_form_view` VALUES("10745", "5", "2015-04-10 13:33:25", "144.76.8.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("10746", "3", "2015-04-10 14:00:43", "157.55.39.46", "4433");
INSERT INTO `wp_rg_form_view` VALUES("10747", "3", "2015-04-10 15:00:00", "157.55.39.183", "4198");
INSERT INTO `wp_rg_form_view` VALUES("10748", "6", "2015-04-10 15:09:08", "157.55.39.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("10749", "7", "2015-04-10 15:49:29", "209.222.8.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("10750", "5", "2015-04-10 15:58:37", "209.222.8.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("10751", "3", "2015-04-10 16:00:03", "207.46.13.65", "3725");
INSERT INTO `wp_rg_form_view` VALUES("10752", "3", "2015-04-10 17:00:10", "157.55.39.46", "4314");
INSERT INTO `wp_rg_form_view` VALUES("10753", "3", "2015-04-10 18:00:00", "202.46.48.200", "4890");
INSERT INTO `wp_rg_form_view` VALUES("10754", "7", "2015-04-10 18:16:13", "207.46.13.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("10755", "1", "2015-04-10 18:16:57", "157.55.39.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("10756", "2", "2015-04-10 18:17:00", "157.55.39.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("10757", "3", "2015-04-10 19:00:00", "207.46.13.65", "5974");
INSERT INTO `wp_rg_form_view` VALUES("10758", "3", "2015-04-10 20:00:02", "157.55.39.183", "4096");
INSERT INTO `wp_rg_form_view` VALUES("10759", "3", "2015-04-10 21:00:03", "157.55.39.183", "4309");
INSERT INTO `wp_rg_form_view` VALUES("10760", "6", "2015-04-10 21:14:39", "157.55.39.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("10761", "3", "2015-04-10 22:00:00", "157.55.39.46", "3439");
INSERT INTO `wp_rg_form_view` VALUES("10762", "3", "2015-04-10 23:00:25", "157.55.39.183", "4596");
INSERT INTO `wp_rg_form_view` VALUES("10763", "3", "2015-04-11 00:00:07", "157.55.39.46", "3456");
INSERT INTO `wp_rg_form_view` VALUES("10764", "2", "2015-04-11 00:22:27", "220.181.51.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("10765", "3", "2015-04-11 01:00:06", "207.46.13.65", "3580");
INSERT INTO `wp_rg_form_view` VALUES("10766", "3", "2015-04-11 02:00:00", "157.55.39.183", "5111");
INSERT INTO `wp_rg_form_view` VALUES("10767", "7", "2015-04-11 02:23:29", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("10768", "3", "2015-04-11 03:00:00", "157.55.39.46", "6922");
INSERT INTO `wp_rg_form_view` VALUES("10769", "3", "2015-04-11 04:00:01", "157.55.39.46", "6372");
INSERT INTO `wp_rg_form_view` VALUES("10770", "7", "2015-04-11 04:35:32", "69.50.234.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("10771", "1", "2015-04-11 04:37:40", "99.199.0.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("10772", "3", "2015-04-11 05:00:09", "157.55.39.46", "5764");
INSERT INTO `wp_rg_form_view` VALUES("10773", "1", "2015-04-11 05:02:08", "99.199.0.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("10774", "3", "2015-04-11 06:00:02", "207.46.13.65", "6524");
INSERT INTO `wp_rg_form_view` VALUES("10775", "6", "2015-04-11 06:53:33", "74.106.14.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("10776", "3", "2015-04-11 07:00:00", "207.46.13.65", "6386");
INSERT INTO `wp_rg_form_view` VALUES("10777", "3", "2015-04-11 08:00:00", "207.46.13.65", "6415");
INSERT INTO `wp_rg_form_view` VALUES("10778", "6", "2015-04-11 08:33:12", "207.46.13.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("10779", "3", "2015-04-11 09:00:01", "207.46.13.65", "8107");
INSERT INTO `wp_rg_form_view` VALUES("10780", "3", "2015-04-11 10:00:01", "157.55.39.183", "5880");
INSERT INTO `wp_rg_form_view` VALUES("10781", "3", "2015-04-11 11:00:00", "207.46.13.65", "6589");
INSERT INTO `wp_rg_form_view` VALUES("10782", "3", "2015-04-11 12:00:05", "157.55.39.46", "6036");
INSERT INTO `wp_rg_form_view` VALUES("10783", "3", "2015-04-11 13:00:08", "198.27.82.152", "5432");
INSERT INTO `wp_rg_form_view` VALUES("10784", "7", "2015-04-11 13:44:23", "66.249.67.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("10785", "3", "2015-04-11 14:00:54", "157.55.39.46", "5362");
INSERT INTO `wp_rg_form_view` VALUES("10786", "3", "2015-04-11 15:00:04", "157.55.39.46", "4500");
INSERT INTO `wp_rg_form_view` VALUES("10787", "3", "2015-04-11 16:00:24", "157.55.39.53", "4809");
INSERT INTO `wp_rg_form_view` VALUES("10788", "3", "2015-04-11 17:00:08", "157.55.39.62", "5800");
INSERT INTO `wp_rg_form_view` VALUES("10789", "1", "2015-04-11 17:00:34", "223.94.156.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("10790", "3", "2015-04-11 18:00:07", "202.46.48.101", "5303");
INSERT INTO `wp_rg_form_view` VALUES("10791", "1", "2015-04-11 18:55:35", "91.200.12.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("10792", "3", "2015-04-11 19:00:27", "157.55.39.46", "5702");
INSERT INTO `wp_rg_form_view` VALUES("10793", "3", "2015-04-11 20:00:01", "157.55.39.46", "5673");
INSERT INTO `wp_rg_form_view` VALUES("10794", "3", "2015-04-11 21:00:00", "157.55.39.62", "5413");
INSERT INTO `wp_rg_form_view` VALUES("10795", "1", "2015-04-11 21:04:14", "217.12.204.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("10796", "3", "2015-04-11 22:00:00", "157.55.39.62", "6587");
INSERT INTO `wp_rg_form_view` VALUES("10797", "6", "2015-04-11 22:27:11", "142.4.213.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("10798", "3", "2015-04-11 23:00:00", "157.55.39.46", "5539");
INSERT INTO `wp_rg_form_view` VALUES("10799", "3", "2015-04-12 00:00:06", "157.55.39.46", "4299");
INSERT INTO `wp_rg_form_view` VALUES("10800", "3", "2015-04-12 01:00:10", "157.55.39.46", "3077");
INSERT INTO `wp_rg_form_view` VALUES("10801", "7", "2015-04-12 01:30:02", "155.94.169.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10802", "2", "2015-04-12 01:30:19", "155.94.169.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10803", "1", "2015-04-12 01:30:21", "155.94.169.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("10804", "3", "2015-04-12 02:00:06", "157.55.39.46", "3126");
INSERT INTO `wp_rg_form_view` VALUES("10805", "3", "2015-04-12 03:00:00", "157.55.39.46", "4225");
INSERT INTO `wp_rg_form_view` VALUES("10806", "3", "2015-04-12 04:00:00", "157.55.39.62", "4120");
INSERT INTO `wp_rg_form_view` VALUES("10807", "3", "2015-04-12 05:00:00", "157.55.39.46", "7687");
INSERT INTO `wp_rg_form_view` VALUES("10808", "1", "2015-04-12 05:07:20", "99.199.0.210", "3");
INSERT INTO `wp_rg_form_view` VALUES("10809", "6", "2015-04-12 05:09:04", "94.23.46.192", "2");
INSERT INTO `wp_rg_form_view` VALUES("10810", "7", "2015-04-12 05:41:58", "82.171.156.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("10811", "2", "2015-04-12 05:42:31", "82.171.156.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("10812", "3", "2015-04-12 06:00:02", "157.55.39.46", "4376");
INSERT INTO `wp_rg_form_view` VALUES("10813", "3", "2015-04-12 07:00:05", "157.55.39.46", "4079");
INSERT INTO `wp_rg_form_view` VALUES("10814", "1", "2015-04-12 07:12:52", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("10815", "3", "2015-04-12 08:03:08", "202.46.61.106", "4093");
INSERT INTO `wp_rg_form_view` VALUES("10816", "1", "2015-04-12 08:58:54", "217.12.204.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("10817", "3", "2015-04-12 09:00:04", "157.55.39.46", "3714");
INSERT INTO `wp_rg_form_view` VALUES("10818", "6", "2015-04-12 09:38:55", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10819", "3", "2015-04-12 10:00:05", "157.55.39.46", "3731");
INSERT INTO `wp_rg_form_view` VALUES("10820", "3", "2015-04-12 11:00:03", "157.55.39.46", "4521");
INSERT INTO `wp_rg_form_view` VALUES("10821", "3", "2015-04-12 12:00:00", "208.107.41.62", "6774");
INSERT INTO `wp_rg_form_view` VALUES("10822", "3", "2015-04-12 13:00:00", "46.4.12.20", "9100");
INSERT INTO `wp_rg_form_view` VALUES("10823", "1", "2015-04-12 13:39:58", "66.249.67.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("10824", "3", "2015-04-12 14:00:10", "157.55.39.46", "8190");
INSERT INTO `wp_rg_form_view` VALUES("10825", "3", "2015-04-12 15:00:00", "207.46.13.65", "7664");
INSERT INTO `wp_rg_form_view` VALUES("10826", "6", "2015-04-12 15:15:35", "207.46.13.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("10827", "3", "2015-04-12 16:00:00", "157.55.39.62", "7510");
INSERT INTO `wp_rg_form_view` VALUES("10828", "1", "2015-04-12 16:43:11", "216.232.157.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("10829", "3", "2015-04-12 17:00:00", "207.46.13.65", "7684");
INSERT INTO `wp_rg_form_view` VALUES("10830", "3", "2015-04-12 18:00:01", "207.46.13.65", "6070");
INSERT INTO `wp_rg_form_view` VALUES("10831", "3", "2015-04-12 19:00:01", "207.46.13.65", "4756");
INSERT INTO `wp_rg_form_view` VALUES("10832", "3", "2015-04-12 20:00:07", "207.46.13.65", "4652");
INSERT INTO `wp_rg_form_view` VALUES("10833", "3", "2015-04-12 21:00:11", "66.249.67.93", "4637");
INSERT INTO `wp_rg_form_view` VALUES("10834", "3", "2015-04-12 22:00:00", "207.46.13.65", "5437");
INSERT INTO `wp_rg_form_view` VALUES("10835", "2", "2015-04-12 22:07:01", "37.187.142.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("10836", "1", "2015-04-12 22:07:12", "37.187.142.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("10837", "7", "2015-04-12 22:07:31", "37.187.142.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("10838", "3", "2015-04-12 23:00:00", "207.46.13.65", "5514");
INSERT INTO `wp_rg_form_view` VALUES("10839", "7", "2015-04-12 23:25:36", "144.76.182.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("10840", "2", "2015-04-12 23:27:11", "144.76.182.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("10841", "1", "2015-04-12 23:27:32", "144.76.182.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("10842", "5", "2015-04-12 23:42:49", "144.76.182.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("10843", "6", "2015-04-12 23:51:22", "144.76.182.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("10844", "3", "2015-04-13 00:00:12", "144.76.182.149", "3619");
INSERT INTO `wp_rg_form_view` VALUES("10845", "6", "2015-04-13 00:55:05", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10846", "3", "2015-04-13 01:00:01", "144.76.182.149", "3584");
INSERT INTO `wp_rg_form_view` VALUES("10847", "6", "2015-04-13 01:50:32", "144.76.182.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("10848", "3", "2015-04-13 02:00:00", "157.55.39.46", "3392");
INSERT INTO `wp_rg_form_view` VALUES("10849", "3", "2015-04-13 03:00:35", "66.249.67.85", "954");
INSERT INTO `wp_rg_form_view` VALUES("10850", "3", "2015-04-13 04:00:36", "66.249.67.93", "1586");
INSERT INTO `wp_rg_form_view` VALUES("10851", "3", "2015-04-13 05:00:01", "66.249.67.85", "6002");
INSERT INTO `wp_rg_form_view` VALUES("10852", "3", "2015-04-13 06:00:36", "66.249.67.85", "482");
INSERT INTO `wp_rg_form_view` VALUES("10853", "3", "2015-04-13 07:00:01", "66.249.67.85", "226");
INSERT INTO `wp_rg_form_view` VALUES("10854", "3", "2015-04-13 08:00:25", "66.249.67.85", "520");
INSERT INTO `wp_rg_form_view` VALUES("10855", "1", "2015-04-13 08:34:15", "219.130.219.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("10856", "2", "2015-04-13 08:34:18", "219.130.219.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("10857", "7", "2015-04-13 08:34:37", "219.130.219.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("10858", "3", "2015-04-13 09:00:20", "66.249.67.93", "356");
INSERT INTO `wp_rg_form_view` VALUES("10859", "3", "2015-04-13 10:00:22", "202.46.62.149", "1714");
INSERT INTO `wp_rg_form_view` VALUES("10860", "6", "2015-04-13 10:20:16", "5.9.104.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10861", "3", "2015-04-13 11:00:13", "66.249.67.77", "368");
INSERT INTO `wp_rg_form_view` VALUES("10862", "1", "2015-04-13 11:09:14", "217.12.204.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("10863", "3", "2015-04-13 12:01:59", "157.55.39.62", "686");
INSERT INTO `wp_rg_form_view` VALUES("10864", "3", "2015-04-13 13:00:09", "66.249.67.93", "404");
INSERT INTO `wp_rg_form_view` VALUES("10865", "3", "2015-04-13 14:00:04", "66.249.67.93", "666");
INSERT INTO `wp_rg_form_view` VALUES("10866", "3", "2015-04-13 15:00:04", "66.249.67.85", "344");
INSERT INTO `wp_rg_form_view` VALUES("10867", "3", "2015-04-13 16:01:13", "66.249.67.85", "1099");
INSERT INTO `wp_rg_form_view` VALUES("10868", "7", "2015-04-13 16:26:45", "202.46.50.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("10869", "3", "2015-04-13 17:01:15", "66.249.67.93", "370");
INSERT INTO `wp_rg_form_view` VALUES("10870", "1", "2015-04-13 17:19:02", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("10871", "2", "2015-04-13 17:19:02", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("10872", "3", "2015-04-13 18:00:07", "66.249.67.93", "432");
INSERT INTO `wp_rg_form_view` VALUES("10873", "6", "2015-04-13 18:06:27", "62.212.73.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("10874", "3", "2015-04-13 19:00:16", "66.249.67.77", "798");
INSERT INTO `wp_rg_form_view` VALUES("10875", "3", "2015-04-13 20:00:17", "66.249.67.77", "420");
INSERT INTO `wp_rg_form_view` VALUES("10876", "3", "2015-04-13 21:01:06", "66.249.67.93", "2630");
INSERT INTO `wp_rg_form_view` VALUES("10877", "3", "2015-04-13 22:00:02", "88.198.164.52", "1060");
INSERT INTO `wp_rg_form_view` VALUES("10878", "3", "2015-04-13 23:00:10", "66.249.67.85", "788");
INSERT INTO `wp_rg_form_view` VALUES("10879", "3", "2015-04-14 00:03:21", "202.46.48.149", "189");
INSERT INTO `wp_rg_form_view` VALUES("10880", "3", "2015-04-14 01:00:46", "66.249.67.85", "772");
INSERT INTO `wp_rg_form_view` VALUES("10881", "3", "2015-04-14 02:00:27", "202.46.48.151", "466");
INSERT INTO `wp_rg_form_view` VALUES("10882", "3", "2015-04-14 03:00:22", "66.249.67.77", "1388");
INSERT INTO `wp_rg_form_view` VALUES("10883", "3", "2015-04-14 04:00:00", "136.243.24.27", "872");
INSERT INTO `wp_rg_form_view` VALUES("10884", "3", "2015-04-14 05:01:16", "66.249.67.77", "750");
INSERT INTO `wp_rg_form_view` VALUES("10885", "3", "2015-04-14 06:00:17", "46.119.113.155", "708");
INSERT INTO `wp_rg_form_view` VALUES("10886", "1", "2015-04-14 06:02:56", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("10887", "3", "2015-04-14 07:00:51", "66.249.67.85", "372");
INSERT INTO `wp_rg_form_view` VALUES("10888", "3", "2015-04-14 08:03:19", "66.249.67.93", "281");
INSERT INTO `wp_rg_form_view` VALUES("10889", "6", "2015-04-14 08:44:08", "209.222.8.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("10890", "3", "2015-04-14 09:00:38", "66.249.67.77", "344");
INSERT INTO `wp_rg_form_view` VALUES("10891", "3", "2015-04-14 10:00:06", "68.180.228.245", "684");
INSERT INTO `wp_rg_form_view` VALUES("10892", "1", "2015-04-14 10:04:33", "42.3.203.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("10893", "2", "2015-04-14 10:04:37", "124.244.26.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("10894", "7", "2015-04-14 10:05:01", "42.3.203.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("10895", "3", "2015-04-14 11:00:39", "66.249.67.93", "1160");
INSERT INTO `wp_rg_form_view` VALUES("10896", "6", "2015-04-14 11:50:38", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("10897", "3", "2015-04-14 12:01:58", "66.249.67.85", "452");
INSERT INTO `wp_rg_form_view` VALUES("10898", "6", "2015-04-14 12:04:38", "66.249.67.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("10899", "3", "2015-04-14 13:00:47", "66.249.67.85", "353");
INSERT INTO `wp_rg_form_view` VALUES("10900", "3", "2015-04-14 14:01:59", "66.249.67.77", "402");
INSERT INTO `wp_rg_form_view` VALUES("10901", "6", "2015-04-14 14:33:00", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("10902", "3", "2015-04-14 15:00:39", "66.249.67.77", "3388");
INSERT INTO `wp_rg_form_view` VALUES("10903", "3", "2015-04-14 16:00:00", "142.4.213.178", "1436");
INSERT INTO `wp_rg_form_view` VALUES("10904", "7", "2015-04-14 16:11:35", "199.19.249.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("10905", "3", "2015-04-14 17:00:37", "66.249.67.77", "336");
INSERT INTO `wp_rg_form_view` VALUES("10906", "3", "2015-04-14 18:00:32", "202.46.48.48", "408");
INSERT INTO `wp_rg_form_view` VALUES("10907", "3", "2015-04-14 19:00:37", "66.249.67.85", "462");
INSERT INTO `wp_rg_form_view` VALUES("10908", "3", "2015-04-14 20:00:08", "74.106.14.50", "2080");
INSERT INTO `wp_rg_form_view` VALUES("10909", "3", "2015-04-14 21:00:10", "24.68.15.111", "362");
INSERT INTO `wp_rg_form_view` VALUES("10910", "3", "2015-04-14 22:00:38", "66.249.67.77", "662");
INSERT INTO `wp_rg_form_view` VALUES("10911", "5", "2015-04-14 22:18:09", "202.46.63.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("10912", "3", "2015-04-14 23:00:37", "66.249.67.93", "1769");
INSERT INTO `wp_rg_form_view` VALUES("10913", "2", "2015-04-14 23:23:33", "37.187.133.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10914", "1", "2015-04-14 23:23:38", "37.187.133.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10915", "7", "2015-04-14 23:23:52", "37.187.133.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("10916", "3", "2015-04-15 00:00:00", "157.55.39.46", "1514");
INSERT INTO `wp_rg_form_view` VALUES("10917", "3", "2015-04-15 01:00:04", "157.55.39.62", "2358");
INSERT INTO `wp_rg_form_view` VALUES("10918", "3", "2015-04-15 02:00:20", "207.46.13.27", "2136");
INSERT INTO `wp_rg_form_view` VALUES("10919", "3", "2015-04-15 03:00:35", "157.55.39.184", "1960");
INSERT INTO `wp_rg_form_view` VALUES("10920", "3", "2015-04-15 04:00:00", "157.55.39.46", "1860");
INSERT INTO `wp_rg_form_view` VALUES("10921", "3", "2015-04-15 05:00:25", "157.55.39.183", "1884");
INSERT INTO `wp_rg_form_view` VALUES("10922", "3", "2015-04-15 06:00:05", "157.55.39.46", "1820");
INSERT INTO `wp_rg_form_view` VALUES("10923", "6", "2015-04-15 06:46:18", "207.46.13.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("10924", "3", "2015-04-15 07:00:10", "207.46.13.27", "3484");
INSERT INTO `wp_rg_form_view` VALUES("10925", "1", "2015-04-15 07:28:19", "157.55.39.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("10926", "6", "2015-04-15 07:30:42", "207.46.13.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("10927", "3", "2015-04-15 08:00:25", "66.249.67.77", "2404");
INSERT INTO `wp_rg_form_view` VALUES("10928", "7", "2015-04-15 08:39:57", "93.36.118.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("10929", "1", "2015-04-15 08:40:12", "93.36.118.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("10930", "2", "2015-04-15 08:40:20", "93.36.118.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("10931", "3", "2015-04-15 09:00:00", "66.249.67.93", "2170");
INSERT INTO `wp_rg_form_view` VALUES("10932", "6", "2015-04-15 09:36:51", "207.46.13.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("10933", "3", "2015-04-15 10:00:07", "207.46.13.27", "2556");
INSERT INTO `wp_rg_form_view` VALUES("10934", "3", "2015-04-15 11:00:14", "66.249.67.85", "3524");
INSERT INTO `wp_rg_form_view` VALUES("10935", "3", "2015-04-15 12:01:06", "207.46.13.27", "1994");
INSERT INTO `wp_rg_form_view` VALUES("10936", "6", "2015-04-15 12:09:38", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10937", "3", "2015-04-15 13:00:02", "207.46.13.27", "2056");
INSERT INTO `wp_rg_form_view` VALUES("10938", "1", "2015-04-15 13:10:38", "217.12.204.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("10939", "3", "2015-04-15 14:00:02", "157.55.39.46", "2658");
INSERT INTO `wp_rg_form_view` VALUES("10940", "6", "2015-04-15 14:07:01", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10941", "3", "2015-04-15 15:00:16", "207.46.13.27", "2170");
INSERT INTO `wp_rg_form_view` VALUES("10942", "3", "2015-04-15 16:00:08", "207.46.13.27", "1974");
INSERT INTO `wp_rg_form_view` VALUES("10943", "6", "2015-04-15 16:17:12", "157.55.39.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("10944", "3", "2015-04-15 17:00:04", "66.249.67.77", "2345");
INSERT INTO `wp_rg_form_view` VALUES("10945", "3", "2015-04-15 18:00:40", "202.46.48.100", "3860");
INSERT INTO `wp_rg_form_view` VALUES("10946", "3", "2015-04-15 19:00:10", "157.55.39.183", "2658");
INSERT INTO `wp_rg_form_view` VALUES("10947", "3", "2015-04-15 20:00:02", "157.55.39.46", "1404");
INSERT INTO `wp_rg_form_view` VALUES("10948", "3", "2015-04-15 21:00:14", "157.55.39.183", "1747");
INSERT INTO `wp_rg_form_view` VALUES("10949", "7", "2015-04-15 21:06:11", "58.243.46.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("10950", "1", "2015-04-15 21:06:13", "58.243.46.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("10951", "2", "2015-04-15 21:06:13", "58.243.46.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("10952", "3", "2015-04-15 22:00:20", "207.46.13.27", "2364");
INSERT INTO `wp_rg_form_view` VALUES("10953", "3", "2015-04-15 23:00:00", "157.55.39.183", "2822");
INSERT INTO `wp_rg_form_view` VALUES("10954", "6", "2015-04-15 23:04:14", "157.55.39.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("10955", "3", "2015-04-16 00:00:24", "157.55.39.217", "2708");
INSERT INTO `wp_rg_form_view` VALUES("10956", "1", "2015-04-16 00:43:29", "108.180.150.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("10957", "3", "2015-04-16 01:00:15", "207.46.13.27", "3011");
INSERT INTO `wp_rg_form_view` VALUES("10958", "6", "2015-04-16 01:25:26", "207.46.13.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("10959", "1", "2015-04-16 01:33:56", "58.243.46.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("10960", "3", "2015-04-16 02:00:16", "157.55.39.183", "1732");
INSERT INTO `wp_rg_form_view` VALUES("10961", "3", "2015-04-16 03:00:37", "207.46.13.27", "2324");
INSERT INTO `wp_rg_form_view` VALUES("10962", "3", "2015-04-16 04:00:00", "157.55.39.135", "2636");
INSERT INTO `wp_rg_form_view` VALUES("10963", "3", "2015-04-16 05:00:21", "207.46.13.27", "2426");
INSERT INTO `wp_rg_form_view` VALUES("10964", "6", "2015-04-16 05:14:08", "207.46.13.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("10965", "3", "2015-04-16 06:00:37", "157.55.39.213", "1644");
INSERT INTO `wp_rg_form_view` VALUES("10966", "3", "2015-04-16 07:01:13", "207.46.13.27", "1638");
INSERT INTO `wp_rg_form_view` VALUES("10967", "3", "2015-04-16 08:00:15", "207.46.13.27", "2139");
INSERT INTO `wp_rg_form_view` VALUES("10968", "7", "2015-04-16 08:18:55", "93.36.118.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("10969", "1", "2015-04-16 08:19:11", "93.36.118.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("10970", "2", "2015-04-16 08:19:19", "93.36.118.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("10971", "3", "2015-04-16 09:00:02", "157.55.39.183", "1767");
INSERT INTO `wp_rg_form_view` VALUES("10972", "3", "2015-04-16 10:00:00", "207.46.13.27", "3132");
INSERT INTO `wp_rg_form_view` VALUES("10973", "3", "2015-04-16 11:00:00", "157.55.39.183", "1454");
INSERT INTO `wp_rg_form_view` VALUES("10974", "3", "2015-04-16 12:00:32", "207.46.13.27", "1302");
INSERT INTO `wp_rg_form_view` VALUES("10975", "6", "2015-04-16 12:23:00", "207.46.13.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("10976", "3", "2015-04-16 13:00:49", "207.46.13.27", "1716");
INSERT INTO `wp_rg_form_view` VALUES("10977", "6", "2015-04-16 13:18:23", "207.46.13.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("10978", "3", "2015-04-16 14:00:03", "157.55.39.183", "1422");
INSERT INTO `wp_rg_form_view` VALUES("10979", "3", "2015-04-16 15:02:33", "207.46.13.23", "1740");
INSERT INTO `wp_rg_form_view` VALUES("10980", "3", "2015-04-16 16:00:17", "157.55.39.183", "1324");
INSERT INTO `wp_rg_form_view` VALUES("10981", "3", "2015-04-16 17:00:47", "207.46.13.27", "1452");
INSERT INTO `wp_rg_form_view` VALUES("10982", "7", "2015-04-16 17:59:50", "79.116.29.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("10983", "3", "2015-04-16 18:00:04", "79.116.29.69", "1435");
INSERT INTO `wp_rg_form_view` VALUES("10984", "1", "2015-04-16 18:00:10", "79.116.29.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("10985", "2", "2015-04-16 18:00:19", "79.116.29.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("10986", "6", "2015-04-16 18:37:41", "157.55.39.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("10987", "3", "2015-04-16 19:00:07", "207.46.13.27", "2899");
INSERT INTO `wp_rg_form_view` VALUES("10988", "1", "2015-04-16 19:49:44", "58.243.46.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("10989", "7", "2015-04-16 19:49:44", "58.243.46.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("10990", "2", "2015-04-16 19:49:45", "58.243.46.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("10991", "3", "2015-04-16 20:00:04", "207.46.13.27", "2510");
INSERT INTO `wp_rg_form_view` VALUES("10992", "3", "2015-04-16 21:00:00", "207.46.13.27", "1656");
INSERT INTO `wp_rg_form_view` VALUES("10993", "6", "2015-04-16 21:30:45", "207.46.13.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("10994", "1", "2015-04-16 21:35:22", "58.243.46.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("10995", "3", "2015-04-16 22:00:05", "157.55.39.183", "1716");
INSERT INTO `wp_rg_form_view` VALUES("10996", "7", "2015-04-16 22:04:53", "207.46.13.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("10997", "1", "2015-04-16 22:13:09", "217.12.204.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("10998", "3", "2015-04-16 23:01:33", "66.249.67.93", "1180");
INSERT INTO `wp_rg_form_view` VALUES("10999", "6", "2015-04-16 23:48:20", "157.55.39.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("11000", "3", "2015-04-17 00:00:09", "207.46.13.27", "1620");
INSERT INTO `wp_rg_form_view` VALUES("11001", "6", "2015-04-17 00:07:02", "104.193.9.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("11002", "3", "2015-04-17 01:00:11", "104.193.9.137", "1457");
INSERT INTO `wp_rg_form_view` VALUES("11003", "7", "2015-04-17 01:05:40", "187.6.141.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("11004", "1", "2015-04-17 01:06:05", "187.6.141.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("11005", "2", "2015-04-17 01:06:19", "187.6.141.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("11006", "3", "2015-04-17 02:00:11", "66.249.67.93", "1032");
INSERT INTO `wp_rg_form_view` VALUES("11007", "3", "2015-04-17 03:00:16", "207.46.13.27", "1432");
INSERT INTO `wp_rg_form_view` VALUES("11008", "3", "2015-04-17 04:00:04", "157.55.39.166", "1872");
INSERT INTO `wp_rg_form_view` VALUES("11009", "6", "2015-04-17 04:58:00", "157.55.39.212", "4");
INSERT INTO `wp_rg_form_view` VALUES("11010", "3", "2015-04-17 05:00:04", "207.46.13.27", "2735");
INSERT INTO `wp_rg_form_view` VALUES("11011", "1", "2015-04-17 05:31:34", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11012", "6", "2015-04-17 05:32:01", "157.55.39.166", "4");
INSERT INTO `wp_rg_form_view` VALUES("11013", "3", "2015-04-17 06:00:05", "157.55.39.212", "2869");
INSERT INTO `wp_rg_form_view` VALUES("11014", "6", "2015-04-17 06:09:00", "157.55.39.166", "4");
INSERT INTO `wp_rg_form_view` VALUES("11015", "3", "2015-04-17 07:00:02", "207.46.13.23", "2865");
INSERT INTO `wp_rg_form_view` VALUES("11016", "3", "2015-04-17 08:00:19", "207.46.13.27", "3700");
INSERT INTO `wp_rg_form_view` VALUES("11017", "6", "2015-04-17 08:08:16", "157.55.39.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("11018", "7", "2015-04-17 08:30:41", "37.115.191.4", "3");
INSERT INTO `wp_rg_form_view` VALUES("11019", "2", "2015-04-17 08:31:00", "37.115.191.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("11020", "1", "2015-04-17 08:31:03", "37.115.191.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("11021", "3", "2015-04-17 09:00:02", "157.55.39.166", "4514");
INSERT INTO `wp_rg_form_view` VALUES("11022", "6", "2015-04-17 09:16:10", "207.46.13.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("11023", "3", "2015-04-17 10:00:04", "142.4.214.124", "3475");
INSERT INTO `wp_rg_form_view` VALUES("11024", "6", "2015-04-17 10:05:47", "66.249.67.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("11025", "3", "2015-04-17 11:00:10", "66.249.67.93", "2592");
INSERT INTO `wp_rg_form_view` VALUES("11026", "6", "2015-04-17 11:10:56", "207.46.13.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("11027", "3", "2015-04-17 12:00:18", "66.249.67.93", "2793");
INSERT INTO `wp_rg_form_view` VALUES("11028", "6", "2015-04-17 12:05:03", "207.46.13.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("11029", "3", "2015-04-17 13:00:15", "207.46.13.27", "4375");
INSERT INTO `wp_rg_form_view` VALUES("11030", "6", "2015-04-17 13:31:03", "157.55.39.166", "8");
INSERT INTO `wp_rg_form_view` VALUES("11031", "3", "2015-04-17 14:00:02", "216.107.155.114", "2982");
INSERT INTO `wp_rg_form_view` VALUES("11032", "3", "2015-04-17 15:00:31", "216.107.155.114", "3267");
INSERT INTO `wp_rg_form_view` VALUES("11033", "6", "2015-04-17 15:38:44", "157.55.39.166", "8");
INSERT INTO `wp_rg_form_view` VALUES("11034", "1", "2015-04-17 15:59:07", "89.230.127.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("11035", "3", "2015-04-17 16:00:02", "157.55.39.255", "5309");
INSERT INTO `wp_rg_form_view` VALUES("11036", "6", "2015-04-17 16:22:38", "207.46.13.23", "6");
INSERT INTO `wp_rg_form_view` VALUES("11037", "1", "2015-04-17 16:23:44", "198.245.65.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("11038", "3", "2015-04-17 17:00:00", "207.46.13.27", "6488");
INSERT INTO `wp_rg_form_view` VALUES("11039", "7", "2015-04-17 17:35:01", "207.46.13.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("11040", "6", "2015-04-17 17:36:20", "157.55.39.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("11041", "3", "2015-04-17 18:00:00", "157.55.39.166", "4927");
INSERT INTO `wp_rg_form_view` VALUES("11042", "6", "2015-04-17 18:42:14", "207.46.13.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("11043", "3", "2015-04-17 19:00:00", "157.55.39.6", "4272");
INSERT INTO `wp_rg_form_view` VALUES("11044", "6", "2015-04-17 19:08:58", "207.46.13.63", "6");
INSERT INTO `wp_rg_form_view` VALUES("11045", "3", "2015-04-17 20:00:08", "207.46.13.63", "3713");
INSERT INTO `wp_rg_form_view` VALUES("11046", "6", "2015-04-17 20:18:48", "207.46.13.20", "6");
INSERT INTO `wp_rg_form_view` VALUES("11047", "7", "2015-04-17 20:44:00", "75.154.237.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("11048", "3", "2015-04-17 21:00:03", "207.46.13.63", "4539");
INSERT INTO `wp_rg_form_view` VALUES("11049", "7", "2015-04-17 21:14:58", "154.20.41.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("11050", "3", "2015-04-17 22:00:02", "66.249.67.93", "4318");
INSERT INTO `wp_rg_form_view` VALUES("11051", "3", "2015-04-17 23:00:00", "207.46.13.16", "3225");
INSERT INTO `wp_rg_form_view` VALUES("11052", "5", "2015-04-17 23:09:13", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11053", "6", "2015-04-17 23:43:56", "5.9.104.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("11054", "3", "2015-04-18 00:00:09", "5.9.104.46", "3305");
INSERT INTO `wp_rg_form_view` VALUES("11055", "6", "2015-04-18 00:00:25", "188.165.15.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("11056", "3", "2015-04-18 01:00:11", "207.46.13.63", "1646");
INSERT INTO `wp_rg_form_view` VALUES("11057", "3", "2015-04-18 02:00:01", "207.46.13.20", "3107");
INSERT INTO `wp_rg_form_view` VALUES("11058", "6", "2015-04-18 02:23:05", "157.55.39.166", "10");
INSERT INTO `wp_rg_form_view` VALUES("11059", "3", "2015-04-18 03:00:05", "207.46.13.20", "1954");
INSERT INTO `wp_rg_form_view` VALUES("11060", "6", "2015-04-18 03:17:08", "207.46.13.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("11061", "2", "2015-04-18 03:29:52", "58.243.235.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("11062", "3", "2015-04-18 04:00:08", "157.55.39.1", "2806");
INSERT INTO `wp_rg_form_view` VALUES("11063", "6", "2015-04-18 04:50:09", "157.55.39.1", "4");
INSERT INTO `wp_rg_form_view` VALUES("11064", "3", "2015-04-18 05:00:02", "207.46.13.16", "2391");
INSERT INTO `wp_rg_form_view` VALUES("11065", "6", "2015-04-18 05:50:37", "207.46.13.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("11066", "3", "2015-04-18 06:00:00", "157.55.39.166", "4126");
INSERT INTO `wp_rg_form_view` VALUES("11067", "6", "2015-04-18 06:07:59", "207.46.13.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("11068", "3", "2015-04-18 07:00:04", "217.79.184.51", "1561");
INSERT INTO `wp_rg_form_view` VALUES("11069", "6", "2015-04-18 07:26:04", "209.222.8.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("11070", "3", "2015-04-18 08:00:03", "207.46.13.16", "1243");
INSERT INTO `wp_rg_form_view` VALUES("11071", "7", "2015-04-18 08:14:19", "41.130.152.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("11072", "1", "2015-04-18 08:14:40", "41.130.152.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("11073", "2", "2015-04-18 08:14:51", "41.130.152.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("11074", "6", "2015-04-18 08:26:25", "207.46.13.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("11075", "3", "2015-04-18 09:00:14", "66.249.67.77", "841");
INSERT INTO `wp_rg_form_view` VALUES("11076", "3", "2015-04-18 09:00:14", "207.46.13.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("11077", "6", "2015-04-18 09:39:21", "157.55.39.166", "4");
INSERT INTO `wp_rg_form_view` VALUES("11078", "3", "2015-04-18 10:00:19", "207.46.13.20", "1008");
INSERT INTO `wp_rg_form_view` VALUES("11079", "6", "2015-04-18 10:03:37", "207.46.13.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("11080", "3", "2015-04-18 11:00:01", "207.46.13.16", "1996");
INSERT INTO `wp_rg_form_view` VALUES("11081", "6", "2015-04-18 11:07:18", "157.55.39.1", "4");
INSERT INTO `wp_rg_form_view` VALUES("11082", "3", "2015-04-18 12:00:16", "68.180.228.245", "2264");
INSERT INTO `wp_rg_form_view` VALUES("11083", "6", "2015-04-18 12:54:26", "157.55.39.166", "2");
INSERT INTO `wp_rg_form_view` VALUES("11084", "3", "2015-04-18 13:00:01", "157.55.39.166", "1561");
INSERT INTO `wp_rg_form_view` VALUES("11085", "6", "2015-04-18 13:32:38", "207.46.13.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("11086", "3", "2015-04-18 14:00:15", "207.46.13.20", "2408");
INSERT INTO `wp_rg_form_view` VALUES("11087", "6", "2015-04-18 14:00:52", "207.46.13.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("11088", "3", "2015-04-18 15:00:07", "207.46.13.16", "2774");
INSERT INTO `wp_rg_form_view` VALUES("11089", "6", "2015-04-18 15:10:32", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11090", "3", "2015-04-18 16:00:02", "157.55.39.166", "2402");
INSERT INTO `wp_rg_form_view` VALUES("11091", "6", "2015-04-18 16:52:40", "157.55.39.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("11092", "3", "2015-04-18 17:00:01", "157.55.39.1", "2639");
INSERT INTO `wp_rg_form_view` VALUES("11093", "6", "2015-04-18 17:25:29", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11094", "3", "2015-04-18 18:00:06", "207.46.13.20", "3852");
INSERT INTO `wp_rg_form_view` VALUES("11095", "6", "2015-04-18 18:03:20", "157.55.39.166", "8");
INSERT INTO `wp_rg_form_view` VALUES("11096", "1", "2015-04-18 18:30:42", "100.43.85.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("11097", "3", "2015-04-18 19:00:01", "207.46.13.20", "3749");
INSERT INTO `wp_rg_form_view` VALUES("11098", "6", "2015-04-18 19:02:59", "157.55.39.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("11099", "3", "2015-04-18 20:00:03", "157.55.39.1", "2279");
INSERT INTO `wp_rg_form_view` VALUES("11100", "7", "2015-04-18 20:26:57", "24.114.36.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("11101", "6", "2015-04-18 20:32:54", "207.46.13.16", "4");
INSERT INTO `wp_rg_form_view` VALUES("11102", "3", "2015-04-18 21:00:07", "136.243.24.27", "2249");
INSERT INTO `wp_rg_form_view` VALUES("11103", "3", "2015-04-18 22:00:01", "207.46.13.20", "2889");
INSERT INTO `wp_rg_form_view` VALUES("11104", "6", "2015-04-18 22:14:25", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11105", "3", "2015-04-18 23:00:05", "207.46.13.20", "2257");
INSERT INTO `wp_rg_form_view` VALUES("11106", "6", "2015-04-18 23:02:46", "207.46.13.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("11107", "3", "2015-04-19 00:00:00", "157.55.39.1", "1980");
INSERT INTO `wp_rg_form_view` VALUES("11108", "3", "2015-04-19 01:00:02", "207.46.13.16", "2835");
INSERT INTO `wp_rg_form_view` VALUES("11109", "3", "2015-04-19 02:00:00", "207.46.13.16", "3193");
INSERT INTO `wp_rg_form_view` VALUES("11110", "1", "2015-04-19 02:10:41", "118.26.150.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("11111", "3", "2015-04-19 03:00:00", "66.249.67.93", "3476");
INSERT INTO `wp_rg_form_view` VALUES("11112", "3", "2015-04-19 04:00:07", "157.55.39.1", "3065");
INSERT INTO `wp_rg_form_view` VALUES("11113", "6", "2015-04-19 04:06:19", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11114", "3", "2015-04-19 05:00:00", "157.55.39.239", "3702");
INSERT INTO `wp_rg_form_view` VALUES("11115", "3", "2015-04-19 06:00:00", "207.46.13.16", "2927");
INSERT INTO `wp_rg_form_view` VALUES("11116", "3", "2015-04-19 07:00:00", "157.55.39.239", "3614");
INSERT INTO `wp_rg_form_view` VALUES("11117", "3", "2015-04-19 08:00:02", "207.46.13.20", "3459");
INSERT INTO `wp_rg_form_view` VALUES("11118", "2", "2015-04-19 08:49:35", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11119", "3", "2015-04-19 09:00:06", "157.55.39.1", "3625");
INSERT INTO `wp_rg_form_view` VALUES("11120", "3", "2015-04-19 10:00:02", "157.55.39.1", "3693");
INSERT INTO `wp_rg_form_view` VALUES("11121", "3", "2015-04-19 11:00:00", "157.55.39.1", "2876");
INSERT INTO `wp_rg_form_view` VALUES("11122", "3", "2015-04-19 12:00:00", "207.46.13.20", "2780");
INSERT INTO `wp_rg_form_view` VALUES("11123", "3", "2015-04-19 13:00:00", "157.55.39.1", "2623");
INSERT INTO `wp_rg_form_view` VALUES("11124", "3", "2015-04-19 14:00:02", "157.55.39.1", "5544");
INSERT INTO `wp_rg_form_view` VALUES("11125", "3", "2015-04-19 15:00:05", "157.55.39.239", "2647");
INSERT INTO `wp_rg_form_view` VALUES("11126", "3", "2015-04-19 16:00:01", "207.46.13.16", "2869");
INSERT INTO `wp_rg_form_view` VALUES("11127", "6", "2015-04-19 16:04:26", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11128", "3", "2015-04-19 17:00:37", "157.55.39.239", "2855");
INSERT INTO `wp_rg_form_view` VALUES("11129", "3", "2015-04-19 18:00:00", "207.46.13.20", "3052");
INSERT INTO `wp_rg_form_view` VALUES("11130", "3", "2015-04-19 19:00:00", "157.55.39.239", "2706");
INSERT INTO `wp_rg_form_view` VALUES("11131", "3", "2015-04-19 20:00:00", "207.46.13.16", "2936");
INSERT INTO `wp_rg_form_view` VALUES("11132", "3", "2015-04-19 21:00:09", "207.46.13.16", "3062");
INSERT INTO `wp_rg_form_view` VALUES("11133", "6", "2015-04-19 21:13:15", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("11134", "3", "2015-04-19 22:00:14", "157.55.39.1", "2947");
INSERT INTO `wp_rg_form_view` VALUES("11135", "3", "2015-04-19 23:00:04", "157.55.39.1", "3038");
INSERT INTO `wp_rg_form_view` VALUES("11136", "3", "2015-04-20 00:00:11", "157.55.39.239", "3630");
INSERT INTO `wp_rg_form_view` VALUES("11137", "3", "2015-04-20 01:00:00", "207.46.13.20", "3700");
INSERT INTO `wp_rg_form_view` VALUES("11138", "6", "2015-04-20 01:37:57", "178.200.183.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("11139", "3", "2015-04-20 02:00:01", "157.55.39.1", "2965");
INSERT INTO `wp_rg_form_view` VALUES("11140", "6", "2015-04-20 02:57:30", "46.4.12.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("11141", "3", "2015-04-20 03:00:00", "46.4.12.20", "3119");
INSERT INTO `wp_rg_form_view` VALUES("11142", "1", "2015-04-20 03:28:49", "198.204.241.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("11143", "3", "2015-04-20 04:00:26", "207.46.13.16", "2901");
INSERT INTO `wp_rg_form_view` VALUES("11144", "3", "2015-04-20 05:00:08", "207.46.13.20", "2926");
INSERT INTO `wp_rg_form_view` VALUES("11145", "7", "2015-04-20 05:57:36", "92.109.102.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("11146", "1", "2015-04-20 05:57:49", "92.109.102.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("11147", "2", "2015-04-20 05:57:55", "92.109.102.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("11148", "3", "2015-04-20 06:00:06", "157.55.39.239", "2889");
INSERT INTO `wp_rg_form_view` VALUES("11149", "6", "2015-04-20 06:15:01", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11150", "3", "2015-04-20 07:00:08", "207.46.13.20", "2391");
INSERT INTO `wp_rg_form_view` VALUES("11151", "3", "2015-04-20 08:00:18", "66.249.67.93", "3105");
INSERT INTO `wp_rg_form_view` VALUES("11152", "3", "2015-04-20 09:00:00", "207.46.13.20", "3418");
INSERT INTO `wp_rg_form_view` VALUES("11153", "3", "2015-04-20 10:00:00", "66.249.67.77", "2640");
INSERT INTO `wp_rg_form_view` VALUES("11154", "3", "2015-04-20 11:00:02", "207.46.13.16", "2947");
INSERT INTO `wp_rg_form_view` VALUES("11155", "3", "2015-04-20 12:00:00", "207.46.13.71", "3418");
INSERT INTO `wp_rg_form_view` VALUES("11156", "6", "2015-04-20 12:51:57", "66.249.67.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("11157", "3", "2015-04-20 13:00:00", "66.249.67.85", "4696");
INSERT INTO `wp_rg_form_view` VALUES("11158", "3", "2015-04-20 14:00:01", "157.55.39.1", "3147");
INSERT INTO `wp_rg_form_view` VALUES("11159", "3", "2015-04-20 15:00:18", "207.46.13.71", "2855");
INSERT INTO `wp_rg_form_view` VALUES("11160", "3", "2015-04-20 16:00:01", "207.46.13.71", "2929");
INSERT INTO `wp_rg_form_view` VALUES("11161", "7", "2015-04-20 16:18:59", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("11162", "1", "2015-04-20 16:19:16", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("11163", "2", "2015-04-20 16:19:25", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("11164", "3", "2015-04-20 17:00:08", "157.55.39.1", "2876");
INSERT INTO `wp_rg_form_view` VALUES("11165", "3", "2015-04-20 18:00:03", "207.46.13.71", "3095");
INSERT INTO `wp_rg_form_view` VALUES("11166", "2", "2015-04-20 18:59:20", "45.55.133.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11167", "1", "2015-04-20 18:59:21", "45.55.133.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11168", "3", "2015-04-20 19:00:02", "207.46.13.71", "2904");
INSERT INTO `wp_rg_form_view` VALUES("11169", "3", "2015-04-20 20:00:00", "157.55.39.1", "2966");
INSERT INTO `wp_rg_form_view` VALUES("11170", "3", "2015-04-20 21:00:00", "157.55.39.1", "3219");
INSERT INTO `wp_rg_form_view` VALUES("11171", "3", "2015-04-20 22:00:01", "157.55.39.1", "3279");
INSERT INTO `wp_rg_form_view` VALUES("11172", "5", "2015-04-20 22:17:12", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("11173", "3", "2015-04-20 23:00:03", "207.46.13.16", "3075");
INSERT INTO `wp_rg_form_view` VALUES("11174", "3", "2015-04-21 00:00:05", "207.46.13.16", "2621");
INSERT INTO `wp_rg_form_view` VALUES("11175", "7", "2015-04-21 00:08:21", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11176", "3", "2015-04-21 01:00:07", "157.55.39.1", "3035");
INSERT INTO `wp_rg_form_view` VALUES("11177", "3", "2015-04-21 02:00:29", "207.46.13.16", "3042");
INSERT INTO `wp_rg_form_view` VALUES("11178", "3", "2015-04-21 03:00:00", "157.55.39.239", "4003");
INSERT INTO `wp_rg_form_view` VALUES("11179", "7", "2015-04-21 03:29:18", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("11180", "1", "2015-04-21 03:29:36", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("11181", "2", "2015-04-21 03:29:44", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("11182", "3", "2015-04-21 04:00:02", "77.248.252.113", "1857");
INSERT INTO `wp_rg_form_view` VALUES("11183", "3", "2015-04-21 05:00:46", "66.249.67.85", "451");
INSERT INTO `wp_rg_form_view` VALUES("11184", "1", "2015-04-21 05:41:10", "104.193.9.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("11185", "3", "2015-04-21 06:00:48", "66.249.67.85", "544");
INSERT INTO `wp_rg_form_view` VALUES("11186", "3", "2015-04-21 07:00:47", "66.249.67.77", "563");
INSERT INTO `wp_rg_form_view` VALUES("11187", "3", "2015-04-21 08:00:08", "157.55.39.239", "676");
INSERT INTO `wp_rg_form_view` VALUES("11188", "3", "2015-04-21 09:00:46", "66.249.67.93", "406");
INSERT INTO `wp_rg_form_view` VALUES("11189", "3", "2015-04-21 10:00:46", "66.249.67.77", "435");
INSERT INTO `wp_rg_form_view` VALUES("11190", "7", "2015-04-21 10:34:40", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11191", "1", "2015-04-21 10:34:40", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11192", "2", "2015-04-21 10:34:41", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11193", "3", "2015-04-21 11:00:00", "66.249.67.93", "164");
INSERT INTO `wp_rg_form_view` VALUES("11194", "3", "2015-04-21 12:00:33", "66.249.67.77", "261");
INSERT INTO `wp_rg_form_view` VALUES("11195", "3", "2015-04-21 13:00:34", "66.249.67.93", "280");
INSERT INTO `wp_rg_form_view` VALUES("11196", "3", "2015-04-21 14:00:32", "66.249.67.93", "468");
INSERT INTO `wp_rg_form_view` VALUES("11197", "3", "2015-04-21 15:00:32", "66.249.67.93", "294");
INSERT INTO `wp_rg_form_view` VALUES("11198", "3", "2015-04-21 16:00:32", "66.249.67.77", "324");
INSERT INTO `wp_rg_form_view` VALUES("11199", "3", "2015-04-21 17:02:12", "66.249.67.93", "244");
INSERT INTO `wp_rg_form_view` VALUES("11200", "6", "2015-04-21 17:07:24", "209.222.8.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("11201", "3", "2015-04-21 18:01:20", "66.249.67.77", "326");
INSERT INTO `wp_rg_form_view` VALUES("11202", "3", "2015-04-21 19:11:41", "66.249.67.93", "142");
INSERT INTO `wp_rg_form_view` VALUES("11203", "1", "2015-04-21 19:57:19", "209.53.121.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("11204", "3", "2015-04-21 20:00:13", "66.249.67.77", "252");
INSERT INTO `wp_rg_form_view` VALUES("11205", "3", "2015-04-21 21:02:21", "66.249.67.77", "328");
INSERT INTO `wp_rg_form_view` VALUES("11206", "1", "2015-04-21 21:46:22", "195.154.169.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("11207", "3", "2015-04-21 22:00:50", "66.249.67.93", "304");
INSERT INTO `wp_rg_form_view` VALUES("11208", "3", "2015-04-21 23:00:14", "66.249.67.93", "264");
INSERT INTO `wp_rg_form_view` VALUES("11209", "3", "2015-04-22 00:00:32", "66.249.67.93", "252");
INSERT INTO `wp_rg_form_view` VALUES("11210", "7", "2015-04-22 00:20:42", "66.249.67.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("11211", "3", "2015-04-22 01:00:56", "66.249.67.93", "202");
INSERT INTO `wp_rg_form_view` VALUES("11212", "3", "2015-04-22 02:02:48", "66.249.67.93", "210");
INSERT INTO `wp_rg_form_view` VALUES("11213", "3", "2015-04-22 03:03:35", "66.249.67.85", "232");
INSERT INTO `wp_rg_form_view` VALUES("11214", "3", "2015-04-22 04:01:32", "66.249.67.85", "224");
INSERT INTO `wp_rg_form_view` VALUES("11215", "3", "2015-04-22 05:00:27", "66.249.67.77", "382");
INSERT INTO `wp_rg_form_view` VALUES("11216", "7", "2015-04-22 05:15:46", "95.241.84.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("11217", "1", "2015-04-22 05:16:00", "95.241.84.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("11218", "2", "2015-04-22 05:16:06", "95.241.84.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("11219", "6", "2015-04-22 05:50:06", "66.249.67.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("11220", "3", "2015-04-22 06:00:17", "66.249.67.85", "598");
INSERT INTO `wp_rg_form_view` VALUES("11221", "3", "2015-04-22 07:00:07", "66.249.67.93", "232");
INSERT INTO `wp_rg_form_view` VALUES("11222", "3", "2015-04-22 08:00:08", "66.249.67.77", "405");
INSERT INTO `wp_rg_form_view` VALUES("11223", "7", "2015-04-22 08:59:01", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11224", "2", "2015-04-22 08:59:01", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11225", "1", "2015-04-22 08:59:02", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11226", "3", "2015-04-22 09:00:47", "66.249.67.85", "248");
INSERT INTO `wp_rg_form_view` VALUES("11227", "3", "2015-04-22 10:00:09", "36.33.45.64", "376");
INSERT INTO `wp_rg_form_view` VALUES("11228", "3", "2015-04-22 11:00:30", "66.249.67.77", "232");
INSERT INTO `wp_rg_form_view` VALUES("11229", "3", "2015-04-22 12:00:27", "66.249.67.77", "260");
INSERT INTO `wp_rg_form_view` VALUES("11230", "3", "2015-04-22 13:00:21", "66.249.67.77", "192");
INSERT INTO `wp_rg_form_view` VALUES("11231", "3", "2015-04-22 14:02:23", "66.249.67.93", "208");
INSERT INTO `wp_rg_form_view` VALUES("11232", "6", "2015-04-22 14:35:25", "66.249.67.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("11233", "3", "2015-04-22 15:00:28", "66.249.67.77", "266");
INSERT INTO `wp_rg_form_view` VALUES("11234", "3", "2015-04-22 16:00:03", "66.249.67.77", "250");
INSERT INTO `wp_rg_form_view` VALUES("11235", "7", "2015-04-22 16:59:24", "205.250.84.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("11236", "3", "2015-04-22 17:00:26", "66.249.67.77", "204");
INSERT INTO `wp_rg_form_view` VALUES("11237", "3", "2015-04-22 18:00:56", "66.249.67.85", "447");
INSERT INTO `wp_rg_form_view` VALUES("11238", "7", "2015-04-22 18:08:14", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11239", "1", "2015-04-22 18:08:16", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11240", "2", "2015-04-22 18:08:16", "36.33.45.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("11241", "3", "2015-04-22 19:00:55", "66.249.67.77", "273");
INSERT INTO `wp_rg_form_view` VALUES("11242", "1", "2015-04-22 19:04:39", "36.33.45.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("11243", "3", "2015-04-22 20:00:54", "66.249.67.85", "228");
INSERT INTO `wp_rg_form_view` VALUES("11244", "3", "2015-04-22 21:00:16", "142.104.37.76", "1117");
INSERT INTO `wp_rg_form_view` VALUES("11245", "1", "2015-04-22 21:12:24", "142.104.37.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("11246", "3", "2015-04-22 22:00:02", "107.170.139.134", "3848");
INSERT INTO `wp_rg_form_view` VALUES("11247", "3", "2015-04-22 23:00:07", "107.170.139.134", "577");
INSERT INTO `wp_rg_form_view` VALUES("11248", "3", "2015-04-23 00:01:51", "66.249.67.93", "252");
INSERT INTO `wp_rg_form_view` VALUES("11249", "3", "2015-04-23 01:00:49", "66.249.67.85", "246");
INSERT INTO `wp_rg_form_view` VALUES("11250", "3", "2015-04-23 02:00:49", "66.249.67.77", "1984");
INSERT INTO `wp_rg_form_view` VALUES("11251", "6", "2015-04-23 02:48:55", "104.255.67.238", "4");
INSERT INTO `wp_rg_form_view` VALUES("11252", "3", "2015-04-23 03:00:04", "104.255.67.238", "664");
INSERT INTO `wp_rg_form_view` VALUES("11253", "3", "2015-04-23 04:00:30", "66.249.67.93", "2523");
INSERT INTO `wp_rg_form_view` VALUES("11254", "6", "2015-04-23 04:46:29", "68.180.228.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("11255", "3", "2015-04-23 05:00:04", "207.46.13.125", "2736");
INSERT INTO `wp_rg_form_view` VALUES("11256", "6", "2015-04-23 05:01:38", "157.55.39.218", "4");
INSERT INTO `wp_rg_form_view` VALUES("11257", "3", "2015-04-23 06:00:07", "207.46.13.16", "3058");
INSERT INTO `wp_rg_form_view` VALUES("11258", "3", "2015-04-23 07:00:06", "157.55.39.218", "2861");
INSERT INTO `wp_rg_form_view` VALUES("11259", "3", "2015-04-23 08:00:00", "157.55.39.217", "2800");
INSERT INTO `wp_rg_form_view` VALUES("11260", "1", "2015-04-23 08:27:29", "157.55.39.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("11261", "3", "2015-04-23 09:00:00", "207.46.13.16", "2925");
INSERT INTO `wp_rg_form_view` VALUES("11262", "6", "2015-04-23 09:07:30", "66.249.67.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("11263", "3", "2015-04-23 10:00:15", "157.55.39.1", "3143");
INSERT INTO `wp_rg_form_view` VALUES("11264", "3", "2015-04-23 11:00:00", "157.55.39.217", "3082");
INSERT INTO `wp_rg_form_view` VALUES("11265", "5", "2015-04-23 11:05:14", "199.21.99.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("11266", "3", "2015-04-23 12:00:00", "207.46.13.16", "3026");
INSERT INTO `wp_rg_form_view` VALUES("11267", "3", "2015-04-23 13:00:07", "157.55.39.218", "2759");
INSERT INTO `wp_rg_form_view` VALUES("11268", "6", "2015-04-23 13:09:08", "157.55.39.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("11269", "3", "2015-04-23 14:00:00", "207.46.13.16", "2984");
INSERT INTO `wp_rg_form_view` VALUES("11270", "7", "2015-04-23 14:38:07", "67.79.122.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("11271", "1", "2015-04-23 14:38:29", "67.79.122.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("11272", "2", "2015-04-23 14:38:35", "67.79.122.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("11273", "6", "2015-04-23 14:42:17", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11274", "3", "2015-04-23 15:00:00", "207.46.13.125", "3063");
INSERT INTO `wp_rg_form_view` VALUES("11275", "6", "2015-04-23 15:34:49", "207.46.13.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("11276", "3", "2015-04-23 16:00:01", "207.46.13.125", "3267");
INSERT INTO `wp_rg_form_view` VALUES("11277", "6", "2015-04-23 16:34:44", "207.46.13.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("11278", "3", "2015-04-23 17:00:01", "157.55.39.217", "3001");
INSERT INTO `wp_rg_form_view` VALUES("11279", "6", "2015-04-23 17:31:13", "157.55.39.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("11280", "3", "2015-04-23 18:00:00", "157.55.39.217", "3378");
INSERT INTO `wp_rg_form_view` VALUES("11281", "6", "2015-04-23 18:43:29", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11282", "3", "2015-04-23 19:00:00", "157.55.39.1", "3334");
INSERT INTO `wp_rg_form_view` VALUES("11283", "6", "2015-04-23 19:33:06", "207.46.13.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("11284", "3", "2015-04-23 20:00:01", "207.46.13.16", "3366");
INSERT INTO `wp_rg_form_view` VALUES("11285", "3", "2015-04-23 21:00:00", "207.46.13.16", "3218");
INSERT INTO `wp_rg_form_view` VALUES("11286", "2", "2015-04-23 21:16:15", "100.43.85.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("11287", "6", "2015-04-23 21:58:48", "157.55.39.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("11288", "3", "2015-04-23 22:00:05", "157.55.39.218", "3349");
INSERT INTO `wp_rg_form_view` VALUES("11289", "6", "2015-04-23 22:12:27", "66.249.67.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("11290", "3", "2015-04-23 23:00:00", "157.55.39.1", "3234");
INSERT INTO `wp_rg_form_view` VALUES("11291", "6", "2015-04-23 23:08:50", "157.55.39.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("11292", "3", "2015-04-24 00:00:00", "157.55.39.218", "4748");
INSERT INTO `wp_rg_form_view` VALUES("11293", "6", "2015-04-24 00:32:01", "157.55.39.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("11294", "3", "2015-04-24 01:00:00", "157.55.39.218", "6588");
INSERT INTO `wp_rg_form_view` VALUES("11295", "3", "2015-04-24 02:00:00", "157.55.39.218", "6947");
INSERT INTO `wp_rg_form_view` VALUES("11296", "6", "2015-04-24 02:15:56", "207.46.13.125", "4");
INSERT INTO `wp_rg_form_view` VALUES("11297", "3", "2015-04-24 03:00:05", "207.46.13.16", "6242");
INSERT INTO `wp_rg_form_view` VALUES("11298", "3", "2015-04-24 04:00:00", "157.55.39.218", "5587");
INSERT INTO `wp_rg_form_view` VALUES("11299", "3", "2015-04-24 05:00:07", "157.55.39.218", "4719");
INSERT INTO `wp_rg_form_view` VALUES("11300", "6", "2015-04-24 05:08:31", "207.46.13.16", "4");
INSERT INTO `wp_rg_form_view` VALUES("11301", "3", "2015-04-24 06:00:00", "207.46.13.125", "4216");
INSERT INTO `wp_rg_form_view` VALUES("11302", "6", "2015-04-24 06:40:57", "157.55.39.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("11303", "3", "2015-04-24 07:00:00", "157.55.39.1", "3605");
INSERT INTO `wp_rg_form_view` VALUES("11304", "6", "2015-04-24 07:10:20", "207.46.13.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("11305", "3", "2015-04-24 08:00:00", "157.55.39.1", "3484");
INSERT INTO `wp_rg_form_view` VALUES("11306", "6", "2015-04-24 08:58:46", "157.55.39.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("11307", "3", "2015-04-24 09:00:02", "207.46.13.16", "3288");
INSERT INTO `wp_rg_form_view` VALUES("11308", "3", "2015-04-24 10:00:02", "157.55.39.1", "3204");
INSERT INTO `wp_rg_form_view` VALUES("11309", "3", "2015-04-24 11:00:00", "207.46.13.16", "3241");
INSERT INTO `wp_rg_form_view` VALUES("11310", "6", "2015-04-24 11:01:02", "207.46.13.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("11311", "3", "2015-04-24 12:00:00", "157.55.39.218", "3212");
INSERT INTO `wp_rg_form_view` VALUES("11312", "3", "2015-04-24 13:00:02", "157.55.39.218", "3088");
INSERT INTO `wp_rg_form_view` VALUES("11313", "3", "2015-04-24 14:00:00", "157.55.39.117", "3120");
INSERT INTO `wp_rg_form_view` VALUES("11314", "3", "2015-04-24 15:00:00", "157.55.39.217", "3366");
INSERT INTO `wp_rg_form_view` VALUES("11315", "2", "2015-04-24 15:07:43", "66.249.67.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("11316", "3", "2015-04-24 16:00:04", "157.55.39.218", "3112");
INSERT INTO `wp_rg_form_view` VALUES("11317", "3", "2015-04-24 17:00:00", "157.55.39.218", "3189");
INSERT INTO `wp_rg_form_view` VALUES("11318", "3", "2015-04-24 18:00:05", "207.46.13.16", "3488");
INSERT INTO `wp_rg_form_view` VALUES("11319", "2", "2015-04-24 18:24:10", "45.55.134.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("11320", "1", "2015-04-24 18:24:10", "45.55.134.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("11321", "3", "2015-04-24 19:00:07", "207.46.13.16", "5699");
INSERT INTO `wp_rg_form_view` VALUES("11322", "3", "2015-04-24 20:00:02", "207.46.13.16", "3623");
INSERT INTO `wp_rg_form_view` VALUES("11323", "3", "2015-04-24 21:00:03", "207.46.13.16", "3470");
INSERT INTO `wp_rg_form_view` VALUES("11324", "7", "2015-04-24 21:05:07", "89.123.61.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("11325", "1", "2015-04-24 21:07:29", "89.123.61.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("11326", "3", "2015-04-24 22:00:02", "207.46.13.16", "3727");
INSERT INTO `wp_rg_form_view` VALUES("11327", "3", "2015-04-24 23:00:04", "207.46.13.16", "4358");
INSERT INTO `wp_rg_form_view` VALUES("11328", "6", "2015-04-24 23:25:48", "157.55.39.117", "4");
INSERT INTO `wp_rg_form_view` VALUES("11329", "3", "2015-04-25 00:00:00", "207.46.13.16", "3305");
INSERT INTO `wp_rg_form_view` VALUES("11330", "3", "2015-04-25 01:00:08", "157.55.39.117", "3744");
INSERT INTO `wp_rg_form_view` VALUES("11331", "6", "2015-04-25 01:24:24", "157.55.39.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("11332", "3", "2015-04-25 02:00:00", "157.55.39.117", "3500");
INSERT INTO `wp_rg_form_view` VALUES("11333", "3", "2015-04-25 03:00:01", "157.55.39.117", "3449");
INSERT INTO `wp_rg_form_view` VALUES("11334", "3", "2015-04-25 04:00:00", "207.46.13.125", "1988");
INSERT INTO `wp_rg_form_view` VALUES("11335", "6", "2015-04-25 04:15:03", "207.46.13.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("11336", "3", "2015-04-25 05:00:22", "157.55.39.117", "1360");
INSERT INTO `wp_rg_form_view` VALUES("11337", "3", "2015-04-25 06:00:10", "157.55.39.218", "928");
INSERT INTO `wp_rg_form_view` VALUES("11338", "3", "2015-04-25 07:00:06", "157.55.39.218", "1385");
INSERT INTO `wp_rg_form_view` VALUES("11339", "3", "2015-04-25 08:00:09", "66.249.79.77", "1846");
INSERT INTO `wp_rg_form_view` VALUES("11340", "6", "2015-04-25 08:17:37", "207.46.13.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("11341", "3", "2015-04-25 09:00:05", "157.55.39.117", "2558");
INSERT INTO `wp_rg_form_view` VALUES("11342", "6", "2015-04-25 09:08:21", "178.63.49.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("11343", "3", "2015-04-25 10:00:03", "207.46.13.16", "1764");
INSERT INTO `wp_rg_form_view` VALUES("11344", "2", "2015-04-25 10:06:51", "100.43.90.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("11345", "3", "2015-04-25 11:00:07", "207.46.13.16", "1719");
INSERT INTO `wp_rg_form_view` VALUES("11346", "3", "2015-04-25 12:00:17", "207.46.13.16", "1258");
INSERT INTO `wp_rg_form_view` VALUES("11347", "2", "2015-04-25 12:13:18", "157.55.39.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("11348", "3", "2015-04-25 13:00:21", "66.249.79.85", "1350");
INSERT INTO `wp_rg_form_view` VALUES("11349", "3", "2015-04-25 14:00:01", "207.46.13.16", "890");
INSERT INTO `wp_rg_form_view` VALUES("11350", "3", "2015-04-25 15:01:34", "157.55.39.218", "1084");
INSERT INTO `wp_rg_form_view` VALUES("11351", "3", "2015-04-25 16:00:00", "66.249.79.93", "890");
INSERT INTO `wp_rg_form_view` VALUES("11352", "6", "2015-04-25 16:33:35", "157.55.39.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("11353", "3", "2015-04-25 17:00:26", "66.249.79.77", "1254");
INSERT INTO `wp_rg_form_view` VALUES("11354", "3", "2015-04-25 18:00:06", "157.55.39.218", "942");
INSERT INTO `wp_rg_form_view` VALUES("11355", "3", "2015-04-25 19:00:14", "207.46.13.16", "884");
INSERT INTO `wp_rg_form_view` VALUES("11356", "3", "2015-04-25 20:01:09", "66.249.79.85", "1202");
INSERT INTO `wp_rg_form_view` VALUES("11357", "3", "2015-04-25 21:00:03", "66.249.79.77", "1122");
INSERT INTO `wp_rg_form_view` VALUES("11358", "3", "2015-04-25 22:00:00", "157.55.39.117", "1138");
INSERT INTO `wp_rg_form_view` VALUES("11359", "3", "2015-04-25 23:01:16", "66.249.79.77", "2376");
INSERT INTO `wp_rg_form_view` VALUES("11360", "6", "2015-04-25 23:44:21", "157.55.39.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("11361", "3", "2015-04-26 00:00:02", "5.9.156.107", "3664");
INSERT INTO `wp_rg_form_view` VALUES("11362", "3", "2015-04-26 01:00:04", "207.46.13.16", "2366");
INSERT INTO `wp_rg_form_view` VALUES("11363", "3", "2015-04-26 02:00:07", "207.46.13.125", "2080");
INSERT INTO `wp_rg_form_view` VALUES("11364", "3", "2015-04-26 03:00:02", "207.46.13.16", "1468");
INSERT INTO `wp_rg_form_view` VALUES("11365", "3", "2015-04-26 04:00:09", "207.46.13.16", "1314");
INSERT INTO `wp_rg_form_view` VALUES("11366", "3", "2015-04-26 05:00:04", "207.46.13.16", "1066");
INSERT INTO `wp_rg_form_view` VALUES("11367", "3", "2015-04-26 06:00:26", "207.46.13.16", "1261");
INSERT INTO `wp_rg_form_view` VALUES("11368", "3", "2015-04-26 07:00:34", "207.46.13.132", "946");
INSERT INTO `wp_rg_form_view` VALUES("11369", "3", "2015-04-26 08:00:02", "207.46.13.135", "902");
INSERT INTO `wp_rg_form_view` VALUES("11370", "3", "2015-04-26 09:00:13", "207.46.13.135", "1036");
INSERT INTO `wp_rg_form_view` VALUES("11371", "3", "2015-04-26 10:00:11", "157.55.39.117", "1098");
INSERT INTO `wp_rg_form_view` VALUES("11372", "1", "2015-04-26 10:04:52", "66.249.79.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("11373", "3", "2015-04-26 11:00:28", "207.46.13.135", "1122");
INSERT INTO `wp_rg_form_view` VALUES("11374", "6", "2015-04-26 11:49:45", "157.55.39.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("11375", "3", "2015-04-26 12:01:07", "157.55.39.71", "991");
INSERT INTO `wp_rg_form_view` VALUES("11376", "6", "2015-04-26 12:30:34", "66.249.79.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("11377", "1", "2015-04-26 12:58:23", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11378", "3", "2015-04-26 13:00:01", "157.55.39.218", "1076");
INSERT INTO `wp_rg_form_view` VALUES("11379", "3", "2015-04-26 14:00:08", "207.46.13.135", "1446");
INSERT INTO `wp_rg_form_view` VALUES("11380", "3", "2015-04-26 15:00:14", "157.55.39.218", "958");
INSERT INTO `wp_rg_form_view` VALUES("11381", "3", "2015-04-26 16:00:11", "207.46.13.135", "988");
INSERT INTO `wp_rg_form_view` VALUES("11382", "3", "2015-04-26 17:00:03", "66.249.79.85", "1182");
INSERT INTO `wp_rg_form_view` VALUES("11383", "3", "2015-04-26 18:00:13", "157.55.39.117", "1762");
INSERT INTO `wp_rg_form_view` VALUES("11384", "3", "2015-04-26 19:00:08", "157.55.39.71", "1334");
INSERT INTO `wp_rg_form_view` VALUES("11385", "6", "2015-04-26 19:00:11", "157.55.39.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("11386", "1", "2015-04-26 19:03:29", "195.154.169.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("11387", "3", "2015-04-26 20:00:05", "157.55.39.218", "1122");
INSERT INTO `wp_rg_form_view` VALUES("11388", "7", "2015-04-26 20:38:19", "199.21.99.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("11389", "3", "2015-04-26 21:01:08", "157.55.39.218", "1548");
INSERT INTO `wp_rg_form_view` VALUES("11390", "3", "2015-04-26 22:00:10", "157.55.39.117", "1732");
INSERT INTO `wp_rg_form_view` VALUES("11391", "3", "2015-04-26 23:00:03", "157.55.39.117", "1387");
INSERT INTO `wp_rg_form_view` VALUES("11392", "3", "2015-04-27 00:00:22", "207.46.13.135", "2390");
INSERT INTO `wp_rg_form_view` VALUES("11393", "3", "2015-04-27 01:00:01", "198.27.82.152", "1896");
INSERT INTO `wp_rg_form_view` VALUES("11394", "7", "2015-04-27 01:08:20", "157.55.39.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("11395", "6", "2015-04-27 01:12:14", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("11396", "3", "2015-04-27 02:00:03", "66.249.79.85", "1446");
INSERT INTO `wp_rg_form_view` VALUES("11397", "6", "2015-04-27 02:47:18", "157.55.39.117", "4");
INSERT INTO `wp_rg_form_view` VALUES("11398", "3", "2015-04-27 03:00:03", "207.46.13.135", "1407");
INSERT INTO `wp_rg_form_view` VALUES("11399", "3", "2015-04-27 04:00:00", "157.55.39.71", "1326");
INSERT INTO `wp_rg_form_view` VALUES("11400", "3", "2015-04-27 05:00:18", "66.249.79.77", "1524");
INSERT INTO `wp_rg_form_view` VALUES("11401", "3", "2015-04-27 06:00:26", "157.55.39.71", "1564");
INSERT INTO `wp_rg_form_view` VALUES("11402", "3", "2015-04-27 07:00:18", "66.249.79.85", "1211");
INSERT INTO `wp_rg_form_view` VALUES("11403", "6", "2015-04-27 07:19:51", "157.55.39.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("11404", "3", "2015-04-27 08:00:00", "157.55.39.117", "1392");
INSERT INTO `wp_rg_form_view` VALUES("11405", "3", "2015-04-27 09:00:00", "157.55.39.71", "1200");
INSERT INTO `wp_rg_form_view` VALUES("11406", "7", "2015-04-27 09:41:05", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11407", "3", "2015-04-27 10:00:50", "157.55.39.71", "1174");
INSERT INTO `wp_rg_form_view` VALUES("11408", "3", "2015-04-27 11:00:13", "157.55.39.218", "1182");
INSERT INTO `wp_rg_form_view` VALUES("11409", "3", "2015-04-27 12:00:03", "207.46.13.135", "1230");
INSERT INTO `wp_rg_form_view` VALUES("11410", "3", "2015-04-27 13:00:14", "157.55.39.117", "1038");
INSERT INTO `wp_rg_form_view` VALUES("11411", "3", "2015-04-27 14:00:00", "157.55.39.71", "1032");
INSERT INTO `wp_rg_form_view` VALUES("11412", "3", "2015-04-27 15:00:02", "157.55.39.117", "1078");
INSERT INTO `wp_rg_form_view` VALUES("11413", "7", "2015-04-27 15:38:47", "157.55.39.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("11414", "3", "2015-04-27 16:00:09", "157.55.39.117", "1072");
INSERT INTO `wp_rg_form_view` VALUES("11415", "3", "2015-04-27 17:00:20", "157.55.39.117", "962");
INSERT INTO `wp_rg_form_view` VALUES("11416", "3", "2015-04-27 18:00:01", "66.249.79.77", "786");
INSERT INTO `wp_rg_form_view` VALUES("11417", "3", "2015-04-27 19:00:12", "157.55.39.117", "1546");
INSERT INTO `wp_rg_form_view` VALUES("11418", "3", "2015-04-27 20:00:41", "157.55.39.117", "1382");
INSERT INTO `wp_rg_form_view` VALUES("11419", "6", "2015-04-27 20:27:56", "157.55.39.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("11420", "3", "2015-04-27 21:02:44", "157.55.39.217", "1056");
INSERT INTO `wp_rg_form_view` VALUES("11421", "3", "2015-04-27 22:01:09", "66.249.79.77", "1593");
INSERT INTO `wp_rg_form_view` VALUES("11422", "3", "2015-04-27 23:00:29", "66.249.79.93", "1712");
INSERT INTO `wp_rg_form_view` VALUES("11423", "7", "2015-04-27 23:01:26", "144.76.201.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("11424", "2", "2015-04-27 23:45:17", "54.227.13.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("11425", "1", "2015-04-27 23:45:19", "54.227.13.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("11426", "3", "2015-04-28 00:00:46", "157.55.39.71", "1932");
INSERT INTO `wp_rg_form_view` VALUES("11427", "3", "2015-04-28 01:00:08", "157.55.39.117", "1200");
INSERT INTO `wp_rg_form_view` VALUES("11428", "3", "2015-04-28 02:00:04", "157.55.39.71", "1274");
INSERT INTO `wp_rg_form_view` VALUES("11429", "3", "2015-04-28 03:00:06", "157.55.39.253", "2687");
INSERT INTO `wp_rg_form_view` VALUES("11430", "3", "2015-04-28 04:00:06", "157.55.39.253", "1289");
INSERT INTO `wp_rg_form_view` VALUES("11431", "3", "2015-04-28 05:00:18", "157.55.39.253", "1210");
INSERT INTO `wp_rg_form_view` VALUES("11432", "3", "2015-04-28 06:00:01", "157.55.39.71", "1262");
INSERT INTO `wp_rg_form_view` VALUES("11433", "3", "2015-04-28 07:00:07", "66.249.79.85", "1622");
INSERT INTO `wp_rg_form_view` VALUES("11434", "3", "2015-04-28 08:00:08", "207.46.13.135", "986");
INSERT INTO `wp_rg_form_view` VALUES("11435", "3", "2015-04-28 09:02:33", "157.55.39.71", "290");
INSERT INTO `wp_rg_form_view` VALUES("11436", "3", "2015-04-28 10:01:09", "157.55.39.71", "312");
INSERT INTO `wp_rg_form_view` VALUES("11437", "3", "2015-04-28 11:00:14", "157.55.39.71", "274");
INSERT INTO `wp_rg_form_view` VALUES("11438", "3", "2015-04-28 12:00:00", "157.55.39.71", "236");
INSERT INTO `wp_rg_form_view` VALUES("11439", "3", "2015-04-28 13:01:20", "66.249.79.85", "105");
INSERT INTO `wp_rg_form_view` VALUES("11440", "3", "2015-04-28 14:00:50", "68.180.228.245", "292");
INSERT INTO `wp_rg_form_view` VALUES("11441", "6", "2015-04-28 14:04:17", "157.55.39.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("11442", "3", "2015-04-28 15:32:09", "68.180.228.245", "125");
INSERT INTO `wp_rg_form_view` VALUES("11443", "3", "2015-04-28 16:00:14", "144.76.29.162", "1668");
INSERT INTO `wp_rg_form_view` VALUES("11444", "6", "2015-04-28 16:43:40", "64.251.74.130", "7");
INSERT INTO `wp_rg_form_view` VALUES("11445", "3", "2015-04-28 17:00:05", "198.27.82.152", "210");
INSERT INTO `wp_rg_form_view` VALUES("11446", "3", "2015-04-28 18:02:16", "131.137.245.207", "222");
INSERT INTO `wp_rg_form_view` VALUES("11447", "6", "2015-04-28 18:51:30", "95.130.11.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("11448", "3", "2015-04-28 19:49:50", "68.180.228.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("11449", "1", "2015-04-28 20:05:32", "45.55.133.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("11450", "3", "2015-04-28 20:05:32", "45.55.133.243", "42");
INSERT INTO `wp_rg_form_view` VALUES("11451", "2", "2015-04-28 20:05:33", "45.55.133.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("11452", "3", "2015-04-28 21:04:03", "178.137.19.143", "35");
INSERT INTO `wp_rg_form_view` VALUES("11453", "3", "2015-04-28 21:04:03", "178.137.19.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("11454", "3", "2015-04-28 22:03:25", "68.180.228.245", "20");
INSERT INTO `wp_rg_form_view` VALUES("11455", "3", "2015-04-28 23:07:14", "66.249.79.93", "40");
INSERT INTO `wp_rg_form_view` VALUES("11456", "3", "2015-04-29 00:00:04", "199.21.99.218", "363");
INSERT INTO `wp_rg_form_view` VALUES("11457", "6", "2015-04-29 00:40:24", "157.55.39.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("11458", "3", "2015-04-29 01:02:37", "66.249.79.93", "42");
INSERT INTO `wp_rg_form_view` VALUES("11459", "3", "2015-04-29 02:00:21", "66.249.79.77", "325");
INSERT INTO `wp_rg_form_view` VALUES("11460", "3", "2015-04-29 03:00:04", "142.4.213.178", "561");
INSERT INTO `wp_rg_form_view` VALUES("11461", "3", "2015-04-29 04:00:10", "142.4.213.178", "228");
INSERT INTO `wp_rg_form_view` VALUES("11462", "3", "2015-04-29 05:00:04", "157.55.39.253", "170");
INSERT INTO `wp_rg_form_view` VALUES("11463", "2", "2015-04-29 05:41:50", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11464", "3", "2015-04-29 06:00:21", "207.46.13.135", "763");
INSERT INTO `wp_rg_form_view` VALUES("11465", "6", "2015-04-29 06:17:02", "68.180.228.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("11466", "3", "2015-04-29 07:00:05", "66.249.79.77", "688");
INSERT INTO `wp_rg_form_view` VALUES("11467", "3", "2015-04-29 08:00:00", "91.12.70.117", "654");
INSERT INTO `wp_rg_form_view` VALUES("11468", "3", "2015-04-29 09:00:34", "36.33.43.116", "161");
INSERT INTO `wp_rg_form_view` VALUES("11469", "6", "2015-04-29 09:59:15", "66.249.79.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("11470", "3", "2015-04-29 10:00:40", "66.249.79.77", "231");
INSERT INTO `wp_rg_form_view` VALUES("11471", "6", "2015-04-29 10:02:07", "66.249.79.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("11472", "2", "2015-04-29 10:30:26", "36.33.43.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("11473", "3", "2015-04-29 11:00:53", "66.249.79.93", "145");
INSERT INTO `wp_rg_form_view` VALUES("11474", "3", "2015-04-29 12:00:57", "66.249.79.85", "127");
INSERT INTO `wp_rg_form_view` VALUES("11475", "3", "2015-04-29 13:01:03", "66.249.79.85", "154");
INSERT INTO `wp_rg_form_view` VALUES("11476", "3", "2015-04-29 14:01:15", "66.249.79.93", "790");
INSERT INTO `wp_rg_form_view` VALUES("11477", "3", "2015-04-29 15:00:03", "66.249.79.93", "172");
INSERT INTO `wp_rg_form_view` VALUES("11478", "3", "2015-04-29 16:00:16", "66.249.79.77", "177");
INSERT INTO `wp_rg_form_view` VALUES("11479", "3", "2015-04-29 17:00:27", "66.249.79.77", "111");
INSERT INTO `wp_rg_form_view` VALUES("11480", "3", "2015-04-29 18:00:39", "66.249.79.77", "181");
INSERT INTO `wp_rg_form_view` VALUES("11481", "3", "2015-04-29 19:00:09", "157.55.39.147", "638");
INSERT INTO `wp_rg_form_view` VALUES("11482", "6", "2015-04-29 19:41:45", "66.249.79.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("11483", "3", "2015-04-29 20:00:25", "157.55.39.71", "1204");
INSERT INTO `wp_rg_form_view` VALUES("11484", "6", "2015-04-29 20:41:45", "178.63.49.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("11485", "3", "2015-04-29 21:00:01", "157.55.39.71", "446");
INSERT INTO `wp_rg_form_view` VALUES("11486", "3", "2015-04-29 22:00:03", "207.46.13.135", "357");
INSERT INTO `wp_rg_form_view` VALUES("11487", "3", "2015-04-29 23:00:24", "66.249.79.93", "278");
INSERT INTO `wp_rg_form_view` VALUES("11488", "3", "2015-04-30 00:00:36", "157.55.39.253", "390");
INSERT INTO `wp_rg_form_view` VALUES("11489", "2", "2015-04-30 00:37:28", "36.33.43.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("11490", "3", "2015-04-30 01:00:14", "66.249.79.85", "506");
INSERT INTO `wp_rg_form_view` VALUES("11491", "3", "2015-04-30 02:00:02", "207.46.13.135", "466");
INSERT INTO `wp_rg_form_view` VALUES("11492", "3", "2015-04-30 03:00:06", "207.46.13.135", "575");
INSERT INTO `wp_rg_form_view` VALUES("11493", "3", "2015-04-30 04:00:21", "157.55.39.148", "821");
INSERT INTO `wp_rg_form_view` VALUES("11494", "1", "2015-04-30 04:32:34", "36.33.43.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("11495", "3", "2015-04-30 05:00:34", "157.55.39.71", "416");
INSERT INTO `wp_rg_form_view` VALUES("11496", "3", "2015-04-30 06:00:27", "157.55.39.71", "323");
INSERT INTO `wp_rg_form_view` VALUES("11497", "3", "2015-04-30 07:00:06", "157.55.39.71", "813");
INSERT INTO `wp_rg_form_view` VALUES("11498", "3", "2015-04-30 08:00:03", "5.9.89.170", "979");
INSERT INTO `wp_rg_form_view` VALUES("11499", "3", "2015-04-30 09:00:09", "207.46.13.135", "402");
INSERT INTO `wp_rg_form_view` VALUES("11500", "3", "2015-04-30 10:00:24", "66.249.79.85", "375");
INSERT INTO `wp_rg_form_view` VALUES("11501", "3", "2015-04-30 11:00:22", "207.46.13.135", "735");
INSERT INTO `wp_rg_form_view` VALUES("11502", "3", "2015-04-30 12:00:03", "198.27.82.152", "1017");
INSERT INTO `wp_rg_form_view` VALUES("11503", "3", "2015-04-30 13:00:01", "66.249.79.93", "468");
INSERT INTO `wp_rg_form_view` VALUES("11504", "1", "2015-04-30 13:53:28", "216.232.157.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("11505", "3", "2015-04-30 14:01:13", "66.249.79.93", "218");
INSERT INTO `wp_rg_form_view` VALUES("11506", "3", "2015-04-30 15:02:19", "157.55.39.253", "156");
INSERT INTO `wp_rg_form_view` VALUES("11507", "3", "2015-04-30 16:00:04", "66.249.79.93", "205");
INSERT INTO `wp_rg_form_view` VALUES("11508", "3", "2015-04-30 17:01:17", "66.249.79.77", "102");
INSERT INTO `wp_rg_form_view` VALUES("11509", "3", "2015-04-30 18:00:40", "66.249.79.93", "207");
INSERT INTO `wp_rg_form_view` VALUES("11510", "3", "2015-04-30 19:02:39", "198.27.82.152", "280");
INSERT INTO `wp_rg_form_view` VALUES("11511", "6", "2015-04-30 19:14:56", "198.27.82.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("11512", "3", "2015-04-30 20:00:32", "207.216.37.169", "182");
INSERT INTO `wp_rg_form_view` VALUES("11513", "3", "2015-04-30 21:01:56", "207.46.13.96", "510");
INSERT INTO `wp_rg_form_view` VALUES("11514", "7", "2015-04-30 21:31:45", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("11515", "5", "2015-04-30 21:32:06", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("11516", "2", "2015-04-30 21:32:59", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("11517", "3", "2015-04-30 22:00:33", "188.165.15.99", "160");
INSERT INTO `wp_rg_form_view` VALUES("11518", "3", "2015-04-30 23:00:26", "66.249.79.77", "182");
INSERT INTO `wp_rg_form_view` VALUES("11519", "3", "2015-05-01 00:02:04", "66.249.79.85", "331");
INSERT INTO `wp_rg_form_view` VALUES("11520", "3", "2015-05-01 01:01:09", "66.249.79.77", "2165");
INSERT INTO `wp_rg_form_view` VALUES("11521", "6", "2015-05-01 01:13:33", "157.55.39.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("11522", "2", "2015-05-01 01:24:45", "71.176.122.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("11523", "3", "2015-05-01 02:00:06", "198.245.51.90", "659");
INSERT INTO `wp_rg_form_view` VALUES("11524", "3", "2015-05-01 03:00:30", "68.180.228.245", "387");
INSERT INTO `wp_rg_form_view` VALUES("11525", "3", "2015-05-01 04:00:58", "157.55.39.77", "676");
INSERT INTO `wp_rg_form_view` VALUES("11526", "3", "2015-05-01 05:00:19", "207.46.13.135", "587");
INSERT INTO `wp_rg_form_view` VALUES("11527", "3", "2015-05-01 06:00:00", "207.46.13.96", "295");
INSERT INTO `wp_rg_form_view` VALUES("11528", "3", "2015-05-01 07:00:16", "157.55.39.77", "409");
INSERT INTO `wp_rg_form_view` VALUES("11529", "6", "2015-05-01 07:44:49", "157.55.39.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("11530", "3", "2015-05-01 08:00:21", "157.55.39.77", "477");
INSERT INTO `wp_rg_form_view` VALUES("11531", "3", "2015-05-01 09:00:04", "66.249.79.77", "328");
INSERT INTO `wp_rg_form_view` VALUES("11532", "1", "2015-05-01 09:48:29", "100.43.85.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("11533", "2", "2015-05-01 09:48:36", "100.43.85.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("11534", "3", "2015-05-01 10:00:03", "207.46.13.96", "423");
INSERT INTO `wp_rg_form_view` VALUES("11535", "3", "2015-05-01 11:00:38", "157.55.39.50", "330");
INSERT INTO `wp_rg_form_view` VALUES("11536", "2", "2015-05-01 11:08:29", "142.4.218.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("11537", "1", "2015-05-01 11:08:38", "142.4.218.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("11538", "7", "2015-05-01 11:08:58", "142.4.218.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("11539", "3", "2015-05-01 12:00:42", "157.55.39.51", "503");
INSERT INTO `wp_rg_form_view` VALUES("11540", "6", "2015-05-01 12:06:57", "208.107.41.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("11541", "3", "2015-05-01 13:00:01", "157.55.39.51", "385");
INSERT INTO `wp_rg_form_view` VALUES("11542", "3", "2015-05-01 14:00:00", "157.55.39.253", "524");
INSERT INTO `wp_rg_form_view` VALUES("11543", "3", "2015-05-01 15:00:06", "157.55.39.51", "463");
INSERT INTO `wp_rg_form_view` VALUES("11544", "6", "2015-05-01 15:01:26", "157.55.39.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("11545", "3", "2015-05-01 16:00:07", "207.46.13.96", "470");
INSERT INTO `wp_rg_form_view` VALUES("11546", "7", "2015-05-01 16:33:36", "185.53.44.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("11547", "3", "2015-05-01 17:00:58", "157.55.39.51", "429");
INSERT INTO `wp_rg_form_view` VALUES("11548", "3", "2015-05-01 18:01:15", "157.55.39.51", "358");
INSERT INTO `wp_rg_form_view` VALUES("11549", "6", "2015-05-01 18:19:27", "66.249.79.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("11550", "3", "2015-05-01 19:00:18", "157.55.39.51", "244");
INSERT INTO `wp_rg_form_view` VALUES("11551", "3", "2015-05-01 20:01:06", "157.55.39.81", "373");
INSERT INTO `wp_rg_form_view` VALUES("11552", "1", "2015-05-01 20:08:08", "217.12.204.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("11553", "3", "2015-05-01 21:00:06", "66.249.79.85", "480");
INSERT INTO `wp_rg_form_view` VALUES("11554", "3", "2015-05-01 22:00:20", "157.55.39.77", "328");
INSERT INTO `wp_rg_form_view` VALUES("11555", "3", "2015-05-01 23:02:26", "157.55.39.81", "557");
INSERT INTO `wp_rg_form_view` VALUES("11556", "6", "2015-05-01 23:47:54", "157.55.39.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("11557", "3", "2015-05-02 00:01:59", "157.55.39.51", "245");
INSERT INTO `wp_rg_form_view` VALUES("11558", "3", "2015-05-02 01:01:36", "157.55.39.81", "248");
INSERT INTO `wp_rg_form_view` VALUES("11559", "3", "2015-05-02 02:00:14", "157.55.39.51", "385");
INSERT INTO `wp_rg_form_view` VALUES("11560", "3", "2015-05-02 03:00:01", "157.55.39.51", "222");
INSERT INTO `wp_rg_form_view` VALUES("11561", "3", "2015-05-02 04:00:25", "157.55.39.81", "389");
INSERT INTO `wp_rg_form_view` VALUES("11562", "3", "2015-05-02 05:00:11", "207.46.13.96", "343");
INSERT INTO `wp_rg_form_view` VALUES("11563", "3", "2015-05-02 06:01:17", "157.55.39.81", "338");
INSERT INTO `wp_rg_form_view` VALUES("11564", "3", "2015-05-02 07:00:48", "157.55.39.77", "346");
INSERT INTO `wp_rg_form_view` VALUES("11565", "3", "2015-05-02 08:00:04", "157.55.39.81", "344");
INSERT INTO `wp_rg_form_view` VALUES("11566", "3", "2015-05-02 09:00:48", "157.55.39.77", "338");
INSERT INTO `wp_rg_form_view` VALUES("11567", "3", "2015-05-02 10:00:02", "207.46.13.96", "528");
INSERT INTO `wp_rg_form_view` VALUES("11568", "7", "2015-05-02 10:22:20", "178.137.88.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("11569", "2", "2015-05-02 10:56:29", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("11570", "1", "2015-05-02 10:56:33", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("11571", "5", "2015-05-02 10:59:35", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("11572", "3", "2015-05-02 11:00:16", "66.249.79.93", "699");
INSERT INTO `wp_rg_form_view` VALUES("11573", "3", "2015-05-02 12:00:11", "157.55.39.77", "288");
INSERT INTO `wp_rg_form_view` VALUES("11574", "3", "2015-05-02 13:01:11", "157.55.39.51", "312");
INSERT INTO `wp_rg_form_view` VALUES("11575", "3", "2015-05-02 14:00:05", "157.55.39.77", "255");
INSERT INTO `wp_rg_form_view` VALUES("11576", "3", "2015-05-02 15:00:41", "157.55.39.81", "331");
INSERT INTO `wp_rg_form_view` VALUES("11577", "3", "2015-05-02 16:01:09", "157.55.39.51", "308");
INSERT INTO `wp_rg_form_view` VALUES("11578", "3", "2015-05-02 17:00:28", "157.55.39.81", "480");
INSERT INTO `wp_rg_form_view` VALUES("11579", "3", "2015-05-02 18:00:23", "157.55.39.51", "390");
INSERT INTO `wp_rg_form_view` VALUES("11580", "3", "2015-05-02 19:01:36", "66.249.79.77", "461");
INSERT INTO `wp_rg_form_view` VALUES("11581", "3", "2015-05-02 20:00:32", "66.249.79.93", "401");
INSERT INTO `wp_rg_form_view` VALUES("11582", "3", "2015-05-02 21:00:21", "68.180.228.245", "424");
INSERT INTO `wp_rg_form_view` VALUES("11583", "3", "2015-05-02 22:00:08", "66.249.79.93", "393");
INSERT INTO `wp_rg_form_view` VALUES("11584", "3", "2015-05-02 23:00:13", "157.55.39.81", "242");
INSERT INTO `wp_rg_form_view` VALUES("11585", "3", "2015-05-03 00:00:23", "157.55.39.77", "232");
INSERT INTO `wp_rg_form_view` VALUES("11586", "3", "2015-05-03 01:00:05", "207.46.13.96", "228");
INSERT INTO `wp_rg_form_view` VALUES("11587", "3", "2015-05-03 02:00:17", "207.46.13.96", "240");
INSERT INTO `wp_rg_form_view` VALUES("11588", "3", "2015-05-03 03:01:00", "157.55.39.81", "128");
INSERT INTO `wp_rg_form_view` VALUES("11589", "3", "2015-05-03 04:01:19", "66.249.79.77", "129");
INSERT INTO `wp_rg_form_view` VALUES("11590", "3", "2015-05-03 05:00:35", "66.249.79.85", "119");
INSERT INTO `wp_rg_form_view` VALUES("11591", "3", "2015-05-03 06:01:01", "157.55.39.77", "176");
INSERT INTO `wp_rg_form_view` VALUES("11592", "3", "2015-05-03 07:00:10", "66.249.79.77", "248");
INSERT INTO `wp_rg_form_view` VALUES("11593", "3", "2015-05-03 08:00:19", "66.249.79.93", "246");
INSERT INTO `wp_rg_form_view` VALUES("11594", "3", "2015-05-03 09:00:26", "66.249.79.77", "218");
INSERT INTO `wp_rg_form_view` VALUES("11595", "3", "2015-05-03 10:00:56", "207.46.13.96", "304");
INSERT INTO `wp_rg_form_view` VALUES("11596", "6", "2015-05-03 10:49:25", "66.249.79.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("11597", "3", "2015-05-03 11:00:43", "66.249.79.93", "266");
INSERT INTO `wp_rg_form_view` VALUES("11598", "3", "2015-05-03 12:00:51", "66.249.79.85", "194");
INSERT INTO `wp_rg_form_view` VALUES("11599", "3", "2015-05-03 13:00:58", "66.249.79.77", "384");
INSERT INTO `wp_rg_form_view` VALUES("11600", "3", "2015-05-03 14:00:02", "157.55.39.75", "432");
INSERT INTO `wp_rg_form_view` VALUES("11601", "6", "2015-05-03 14:11:59", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("11602", "3", "2015-05-03 15:00:03", "157.55.39.75", "384");
INSERT INTO `wp_rg_form_view` VALUES("11603", "1", "2015-05-03 15:31:52", "207.6.127.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("11604", "6", "2015-05-03 15:50:04", "68.180.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("11605", "3", "2015-05-03 16:00:03", "66.249.79.85", "411");
INSERT INTO `wp_rg_form_view` VALUES("11606", "3", "2015-05-03 17:00:11", "66.249.79.93", "352");
INSERT INTO `wp_rg_form_view` VALUES("11607", "3", "2015-05-03 18:00:19", "66.249.79.93", "333");
INSERT INTO `wp_rg_form_view` VALUES("11608", "3", "2015-05-03 19:00:27", "66.249.79.85", "299");
INSERT INTO `wp_rg_form_view` VALUES("11609", "3", "2015-05-03 20:00:10", "157.55.39.75", "281");
INSERT INTO `wp_rg_form_view` VALUES("11610", "3", "2015-05-03 21:00:20", "157.55.39.77", "280");
INSERT INTO `wp_rg_form_view` VALUES("11611", "3", "2015-05-03 22:00:15", "66.249.79.77", "270");
INSERT INTO `wp_rg_form_view` VALUES("11612", "6", "2015-05-03 22:07:36", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11613", "3", "2015-05-03 23:00:13", "207.46.13.96", "280");
INSERT INTO `wp_rg_form_view` VALUES("11614", "3", "2015-05-04 00:00:04", "157.55.39.75", "268");
INSERT INTO `wp_rg_form_view` VALUES("11615", "3", "2015-05-04 01:00:06", "66.249.79.85", "364");
INSERT INTO `wp_rg_form_view` VALUES("11616", "3", "2015-05-04 02:00:59", "66.249.79.93", "313");
INSERT INTO `wp_rg_form_view` VALUES("11617", "3", "2015-05-04 03:00:24", "157.55.39.81", "243");
INSERT INTO `wp_rg_form_view` VALUES("11618", "3", "2015-05-04 04:00:56", "207.46.13.96", "312");
INSERT INTO `wp_rg_form_view` VALUES("11619", "3", "2015-05-04 05:00:10", "157.55.39.81", "295");
INSERT INTO `wp_rg_form_view` VALUES("11620", "3", "2015-05-04 06:00:19", "157.55.39.77", "287");
INSERT INTO `wp_rg_form_view` VALUES("11621", "3", "2015-05-04 07:00:57", "66.249.79.77", "296");
INSERT INTO `wp_rg_form_view` VALUES("11622", "3", "2015-05-04 08:01:00", "66.249.79.93", "209");
INSERT INTO `wp_rg_form_view` VALUES("11623", "3", "2015-05-04 09:00:46", "157.55.39.75", "269");
INSERT INTO `wp_rg_form_view` VALUES("11624", "3", "2015-05-04 10:00:41", "157.55.39.81", "250");
INSERT INTO `wp_rg_form_view` VALUES("11625", "3", "2015-05-04 11:01:01", "66.249.79.93", "231");
INSERT INTO `wp_rg_form_view` VALUES("11626", "3", "2015-05-04 12:00:02", "157.55.39.77", "161");
INSERT INTO `wp_rg_form_view` VALUES("11627", "3", "2015-05-04 13:00:00", "157.55.39.4", "269");
INSERT INTO `wp_rg_form_view` VALUES("11628", "3", "2015-05-04 14:01:37", "157.55.39.81", "210");
INSERT INTO `wp_rg_form_view` VALUES("11629", "3", "2015-05-04 15:00:43", "157.55.39.4", "194");
INSERT INTO `wp_rg_form_view` VALUES("11630", "7", "2015-05-04 15:57:04", "216.232.155.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("11631", "3", "2015-05-04 16:00:24", "157.55.39.81", "140");
INSERT INTO `wp_rg_form_view` VALUES("11632", "3", "2015-05-04 17:00:52", "66.249.79.85", "224");
INSERT INTO `wp_rg_form_view` VALUES("11633", "3", "2015-05-04 18:01:06", "157.55.39.75", "371");
INSERT INTO `wp_rg_form_view` VALUES("11634", "3", "2015-05-04 19:00:25", "157.55.39.81", "378");
INSERT INTO `wp_rg_form_view` VALUES("11635", "3", "2015-05-04 20:00:01", "157.55.39.75", "326");
INSERT INTO `wp_rg_form_view` VALUES("11636", "3", "2015-05-04 21:00:25", "157.55.39.81", "280");
INSERT INTO `wp_rg_form_view` VALUES("11637", "6", "2015-05-04 21:17:16", "199.21.99.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("11638", "3", "2015-05-04 22:02:12", "66.249.79.77", "295");
INSERT INTO `wp_rg_form_view` VALUES("11639", "6", "2015-05-04 22:34:02", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11640", "3", "2015-05-04 23:00:05", "207.46.13.96", "260");
INSERT INTO `wp_rg_form_view` VALUES("11641", "3", "2015-05-05 00:03:47", "66.249.79.93", "350");
INSERT INTO `wp_rg_form_view` VALUES("11642", "3", "2015-05-05 01:04:30", "100.43.85.8", "314");
INSERT INTO `wp_rg_form_view` VALUES("11643", "3", "2015-05-05 02:00:40", "207.46.13.96", "126");
INSERT INTO `wp_rg_form_view` VALUES("11644", "3", "2015-05-05 03:01:07", "157.55.39.81", "159");
INSERT INTO `wp_rg_form_view` VALUES("11645", "3", "2015-05-05 04:00:13", "66.249.79.93", "107");
INSERT INTO `wp_rg_form_view` VALUES("11646", "3", "2015-05-05 05:01:02", "157.55.39.81", "93");
INSERT INTO `wp_rg_form_view` VALUES("11647", "3", "2015-05-05 06:01:46", "157.55.39.81", "113");
INSERT INTO `wp_rg_form_view` VALUES("11648", "3", "2015-05-05 07:00:31", "66.249.79.85", "121");
INSERT INTO `wp_rg_form_view` VALUES("11649", "3", "2015-05-05 08:00:15", "157.55.39.81", "152");
INSERT INTO `wp_rg_form_view` VALUES("11650", "3", "2015-05-05 09:00:00", "157.55.39.81", "101");
INSERT INTO `wp_rg_form_view` VALUES("11651", "3", "2015-05-05 10:00:43", "157.55.39.177", "112");
INSERT INTO `wp_rg_form_view` VALUES("11652", "3", "2015-05-05 11:02:40", "66.249.79.93", "101");
INSERT INTO `wp_rg_form_view` VALUES("11653", "3", "2015-05-05 12:00:19", "157.55.39.81", "100");
INSERT INTO `wp_rg_form_view` VALUES("11654", "7", "2015-05-05 12:47:01", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11655", "3", "2015-05-05 13:03:25", "157.55.39.228", "130");
INSERT INTO `wp_rg_form_view` VALUES("11656", "1", "2015-05-05 13:03:29", "195.154.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("11657", "3", "2015-05-05 14:03:08", "66.249.79.85", "112");
INSERT INTO `wp_rg_form_view` VALUES("11658", "3", "2015-05-05 15:00:25", "157.55.39.81", "109");
INSERT INTO `wp_rg_form_view` VALUES("11659", "1", "2015-05-05 15:33:59", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("11660", "3", "2015-05-05 16:05:24", "207.46.13.110", "138");
INSERT INTO `wp_rg_form_view` VALUES("11661", "3", "2015-05-05 17:00:02", "157.55.39.81", "148");
INSERT INTO `wp_rg_form_view` VALUES("11662", "3", "2015-05-05 18:00:42", "157.55.39.81", "121");
INSERT INTO `wp_rg_form_view` VALUES("11663", "3", "2015-05-05 19:00:15", "207.46.13.110", "157");
INSERT INTO `wp_rg_form_view` VALUES("11664", "3", "2015-05-05 20:00:22", "157.55.39.133", "157");
INSERT INTO `wp_rg_form_view` VALUES("11665", "3", "2015-05-05 21:00:21", "207.46.13.55", "185");
INSERT INTO `wp_rg_form_view` VALUES("11666", "3", "2015-05-05 22:02:16", "207.46.13.110", "98");
INSERT INTO `wp_rg_form_view` VALUES("11667", "3", "2015-05-05 23:02:03", "157.55.39.133", "148");
INSERT INTO `wp_rg_form_view` VALUES("11668", "3", "2015-05-06 00:00:59", "207.46.13.110", "80");
INSERT INTO `wp_rg_form_view` VALUES("11669", "3", "2015-05-06 01:00:13", "157.55.39.81", "56");
INSERT INTO `wp_rg_form_view` VALUES("11670", "3", "2015-05-06 02:01:54", "157.55.39.81", "14");
INSERT INTO `wp_rg_form_view` VALUES("11671", "3", "2015-05-06 03:07:18", "66.249.79.133", "77");
INSERT INTO `wp_rg_form_view` VALUES("11672", "3", "2015-05-06 04:00:32", "66.249.79.146", "101");
INSERT INTO `wp_rg_form_view` VALUES("11673", "3", "2015-05-06 05:00:54", "66.249.79.133", "124");
INSERT INTO `wp_rg_form_view` VALUES("11674", "3", "2015-05-06 06:00:03", "66.249.79.120", "241");
INSERT INTO `wp_rg_form_view` VALUES("11675", "3", "2015-05-06 07:00:24", "66.249.79.146", "208");
INSERT INTO `wp_rg_form_view` VALUES("11676", "3", "2015-05-06 08:00:12", "207.46.13.55", "192");
INSERT INTO `wp_rg_form_view` VALUES("11677", "3", "2015-05-06 09:00:29", "207.46.13.55", "172");
INSERT INTO `wp_rg_form_view` VALUES("11678", "3", "2015-05-06 10:00:45", "207.46.13.110", "394");
INSERT INTO `wp_rg_form_view` VALUES("11679", "1", "2015-05-06 10:21:39", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11680", "3", "2015-05-06 11:00:32", "207.46.13.55", "193");
INSERT INTO `wp_rg_form_view` VALUES("11681", "3", "2015-05-06 12:00:36", "207.46.13.55", "207");
INSERT INTO `wp_rg_form_view` VALUES("11682", "3", "2015-05-06 13:00:35", "66.249.79.146", "205");
INSERT INTO `wp_rg_form_view` VALUES("11683", "3", "2015-05-06 14:00:19", "157.55.39.133", "167");
INSERT INTO `wp_rg_form_view` VALUES("11684", "3", "2015-05-06 15:00:06", "207.46.13.55", "187");
INSERT INTO `wp_rg_form_view` VALUES("11685", "6", "2015-05-06 15:33:26", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("11686", "3", "2015-05-06 16:00:23", "157.55.39.133", "213");
INSERT INTO `wp_rg_form_view` VALUES("11687", "3", "2015-05-06 17:02:47", "207.46.13.55", "150");
INSERT INTO `wp_rg_form_view` VALUES("11688", "3", "2015-05-06 18:01:03", "66.249.79.133", "1274");
INSERT INTO `wp_rg_form_view` VALUES("11689", "3", "2015-05-06 19:02:07", "66.249.79.133", "273");
INSERT INTO `wp_rg_form_view` VALUES("11690", "3", "2015-05-06 20:01:03", "66.249.79.146", "501");
INSERT INTO `wp_rg_form_view` VALUES("11691", "3", "2015-05-06 21:00:01", "66.249.79.120", "952");
INSERT INTO `wp_rg_form_view` VALUES("11692", "3", "2015-05-06 22:00:00", "157.55.39.133", "1197");
INSERT INTO `wp_rg_form_view` VALUES("11693", "3", "2015-05-06 23:00:05", "66.249.79.133", "1271");
INSERT INTO `wp_rg_form_view` VALUES("11694", "1", "2015-05-06 23:24:31", "199.168.141.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("11695", "3", "2015-05-07 00:00:15", "157.55.39.81", "1203");
INSERT INTO `wp_rg_form_view` VALUES("11696", "3", "2015-05-07 01:00:00", "66.249.79.146", "1298");
INSERT INTO `wp_rg_form_view` VALUES("11697", "3", "2015-05-07 02:00:14", "157.55.39.81", "1533");
INSERT INTO `wp_rg_form_view` VALUES("11698", "3", "2015-05-07 03:00:49", "157.55.39.133", "2376");
INSERT INTO `wp_rg_form_view` VALUES("11699", "7", "2015-05-07 03:55:14", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("11700", "3", "2015-05-07 04:00:55", "207.46.13.110", "2293");
INSERT INTO `wp_rg_form_view` VALUES("11701", "6", "2015-05-07 04:38:57", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("11702", "3", "2015-05-07 05:00:00", "207.46.13.55", "1700");
INSERT INTO `wp_rg_form_view` VALUES("11703", "3", "2015-05-07 06:00:16", "157.55.39.81", "1554");
INSERT INTO `wp_rg_form_view` VALUES("11704", "6", "2015-05-07 06:50:02", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("11705", "3", "2015-05-07 07:00:19", "207.46.13.110", "1888");
INSERT INTO `wp_rg_form_view` VALUES("11706", "2", "2015-05-07 07:59:24", "45.55.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("11707", "1", "2015-05-07 07:59:24", "45.55.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("11708", "3", "2015-05-07 08:00:44", "157.55.39.81", "1765");
INSERT INTO `wp_rg_form_view` VALUES("11709", "3", "2015-05-07 09:00:02", "157.55.39.133", "1927");
INSERT INTO `wp_rg_form_view` VALUES("11710", "5", "2015-05-07 09:17:30", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11711", "3", "2015-05-07 10:00:09", "220.181.108.84", "1716");
INSERT INTO `wp_rg_form_view` VALUES("11712", "1", "2015-05-07 10:45:49", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("11713", "6", "2015-05-07 10:50:48", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("11714", "3", "2015-05-07 11:00:26", "157.55.39.81", "1942");
INSERT INTO `wp_rg_form_view` VALUES("11715", "1", "2015-05-07 11:46:29", "192.241.142.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("11716", "2", "2015-05-07 11:46:29", "192.241.142.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("11717", "6", "2015-05-07 11:52:18", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("11718", "3", "2015-05-07 12:00:06", "157.55.39.133", "1770");
INSERT INTO `wp_rg_form_view` VALUES("11719", "3", "2015-05-07 13:00:02", "157.55.39.81", "1783");
INSERT INTO `wp_rg_form_view` VALUES("11720", "3", "2015-05-07 14:00:33", "66.249.79.120", "2381");
INSERT INTO `wp_rg_form_view` VALUES("11721", "3", "2015-05-07 15:00:02", "207.46.13.110", "1522");
INSERT INTO `wp_rg_form_view` VALUES("11722", "6", "2015-05-07 15:46:33", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("11723", "3", "2015-05-07 16:00:24", "157.55.39.81", "2554");
INSERT INTO `wp_rg_form_view` VALUES("11724", "3", "2015-05-07 17:00:53", "66.249.79.133", "1752");
INSERT INTO `wp_rg_form_view` VALUES("11725", "3", "2015-05-07 18:00:03", "207.46.13.55", "2201");
INSERT INTO `wp_rg_form_view` VALUES("11726", "7", "2015-05-07 18:07:24", "100.43.91.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("11727", "3", "2015-05-07 19:00:27", "207.46.13.110", "2092");
INSERT INTO `wp_rg_form_view` VALUES("11728", "6", "2015-05-07 19:33:44", "207.46.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("11729", "3", "2015-05-07 20:00:04", "157.55.39.81", "1536");
INSERT INTO `wp_rg_form_view` VALUES("11730", "3", "2015-05-07 21:00:05", "157.55.39.133", "2137");
INSERT INTO `wp_rg_form_view` VALUES("11731", "6", "2015-05-07 21:03:57", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("11732", "1", "2015-05-07 21:10:42", "199.168.141.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("11733", "3", "2015-05-07 22:00:00", "157.55.39.133", "1802");
INSERT INTO `wp_rg_form_view` VALUES("11734", "7", "2015-05-07 22:12:13", "142.104.61.221", "2");
INSERT INTO `wp_rg_form_view` VALUES("11735", "3", "2015-05-07 23:00:09", "157.55.39.133", "1717");
INSERT INTO `wp_rg_form_view` VALUES("11736", "3", "2015-05-08 00:00:00", "66.249.79.120", "1855");
INSERT INTO `wp_rg_form_view` VALUES("11737", "3", "2015-05-08 01:00:30", "157.55.39.81", "2416");
INSERT INTO `wp_rg_form_view` VALUES("11738", "6", "2015-05-08 01:56:06", "157.55.39.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("11739", "3", "2015-05-08 02:00:07", "157.55.39.81", "2150");
INSERT INTO `wp_rg_form_view` VALUES("11740", "3", "2015-05-08 03:00:05", "157.55.39.81", "2043");
INSERT INTO `wp_rg_form_view` VALUES("11741", "2", "2015-05-08 03:33:18", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11742", "3", "2015-05-08 04:00:21", "207.46.13.110", "2465");
INSERT INTO `wp_rg_form_view` VALUES("11743", "3", "2015-05-08 05:00:03", "207.46.13.110", "2282");
INSERT INTO `wp_rg_form_view` VALUES("11744", "2", "2015-05-08 05:08:34", "192.99.150.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("11745", "1", "2015-05-08 05:08:43", "192.99.150.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("11746", "7", "2015-05-08 05:09:00", "192.99.150.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("11747", "3", "2015-05-08 06:00:01", "157.55.39.81", "2178");
INSERT INTO `wp_rg_form_view` VALUES("11748", "3", "2015-05-08 07:00:17", "157.55.39.81", "2231");
INSERT INTO `wp_rg_form_view` VALUES("11749", "3", "2015-05-08 08:00:30", "157.55.39.81", "2495");
INSERT INTO `wp_rg_form_view` VALUES("11750", "3", "2015-05-08 09:00:02", "157.55.39.81", "2471");
INSERT INTO `wp_rg_form_view` VALUES("11751", "2", "2015-05-08 09:28:13", "195.154.211.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("11752", "3", "2015-05-08 10:00:04", "157.55.39.133", "1966");
INSERT INTO `wp_rg_form_view` VALUES("11753", "3", "2015-05-08 11:00:00", "207.46.13.110", "1941");
INSERT INTO `wp_rg_form_view` VALUES("11754", "3", "2015-05-08 12:00:00", "157.55.39.14", "2097");
INSERT INTO `wp_rg_form_view` VALUES("11755", "3", "2015-05-08 13:00:11", "157.55.39.133", "1865");
INSERT INTO `wp_rg_form_view` VALUES("11756", "1", "2015-05-08 13:24:55", "120.209.194.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("11757", "3", "2015-05-08 14:00:00", "66.249.79.120", "1985");
INSERT INTO `wp_rg_form_view` VALUES("11758", "1", "2015-05-08 14:43:40", "217.12.204.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("11759", "3", "2015-05-08 15:00:03", "207.46.13.110", "1737");
INSERT INTO `wp_rg_form_view` VALUES("11760", "3", "2015-05-08 16:00:08", "157.55.39.133", "1626");
INSERT INTO `wp_rg_form_view` VALUES("11761", "3", "2015-05-08 17:00:00", "157.55.39.15", "2190");
INSERT INTO `wp_rg_form_view` VALUES("11762", "3", "2015-05-08 18:00:25", "157.55.39.14", "1191");
INSERT INTO `wp_rg_form_view` VALUES("11763", "3", "2015-05-08 19:00:03", "66.249.79.146", "436");
INSERT INTO `wp_rg_form_view` VALUES("11764", "3", "2015-05-08 20:17:08", "68.180.228.245", "47");
INSERT INTO `wp_rg_form_view` VALUES("11765", "3", "2015-05-08 21:01:34", "66.249.79.133", "519");
INSERT INTO `wp_rg_form_view` VALUES("11766", "3", "2015-05-08 22:00:21", "157.55.39.133", "1451");
INSERT INTO `wp_rg_form_view` VALUES("11767", "6", "2015-05-08 22:07:05", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("11768", "3", "2015-05-08 23:00:51", "157.55.39.133", "1698");
INSERT INTO `wp_rg_form_view` VALUES("11769", "6", "2015-05-08 23:09:54", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11770", "3", "2015-05-09 00:00:00", "207.46.13.110", "1534");
INSERT INTO `wp_rg_form_view` VALUES("11771", "3", "2015-05-09 01:00:04", "157.55.39.14", "1372");
INSERT INTO `wp_rg_form_view` VALUES("11772", "3", "2015-05-09 02:00:26", "66.249.79.120", "1577");
INSERT INTO `wp_rg_form_view` VALUES("11773", "6", "2015-05-09 02:15:03", "66.249.79.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("11774", "3", "2015-05-09 03:00:28", "207.46.13.110", "1475");
INSERT INTO `wp_rg_form_view` VALUES("11775", "3", "2015-05-09 04:02:31", "157.55.39.14", "1003");
INSERT INTO `wp_rg_form_view` VALUES("11776", "3", "2015-05-09 05:00:20", "157.55.39.81", "1148");
INSERT INTO `wp_rg_form_view` VALUES("11777", "3", "2015-05-09 06:01:48", "157.55.39.14", "801");
INSERT INTO `wp_rg_form_view` VALUES("11778", "3", "2015-05-09 07:01:09", "157.55.39.14", "868");
INSERT INTO `wp_rg_form_view` VALUES("11779", "3", "2015-05-09 08:00:10", "207.46.13.110", "1003");
INSERT INTO `wp_rg_form_view` VALUES("11780", "6", "2015-05-09 08:22:27", "100.43.85.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("11781", "3", "2015-05-09 09:00:03", "157.55.39.14", "863");
INSERT INTO `wp_rg_form_view` VALUES("11782", "5", "2015-05-09 09:53:50", "207.46.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("11783", "3", "2015-05-09 10:00:06", "157.55.39.81", "1134");
INSERT INTO `wp_rg_form_view` VALUES("11784", "3", "2015-05-09 11:00:22", "157.55.39.14", "888");
INSERT INTO `wp_rg_form_view` VALUES("11785", "3", "2015-05-09 12:00:24", "66.249.79.146", "569");
INSERT INTO `wp_rg_form_view` VALUES("11786", "1", "2015-05-09 12:28:53", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("11787", "3", "2015-05-09 13:00:53", "157.55.39.81", "1027");
INSERT INTO `wp_rg_form_view` VALUES("11788", "3", "2015-05-09 14:01:02", "157.55.39.81", "525");
INSERT INTO `wp_rg_form_view` VALUES("11789", "3", "2015-05-09 15:01:11", "68.180.228.245", "234");
INSERT INTO `wp_rg_form_view` VALUES("11790", "3", "2015-05-09 16:00:41", "157.55.39.81", "216");
INSERT INTO `wp_rg_form_view` VALUES("11791", "3", "2015-05-09 17:02:04", "157.55.39.81", "355");
INSERT INTO `wp_rg_form_view` VALUES("11792", "3", "2015-05-09 18:01:41", "66.249.79.146", "352");
INSERT INTO `wp_rg_form_view` VALUES("11793", "2", "2015-05-09 18:44:05", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("11794", "3", "2015-05-09 19:02:05", "157.55.39.14", "270");
INSERT INTO `wp_rg_form_view` VALUES("11795", "3", "2015-05-09 20:00:50", "157.55.39.14", "111");
INSERT INTO `wp_rg_form_view` VALUES("11796", "3", "2015-05-09 21:05:03", "199.21.99.206", "258");
INSERT INTO `wp_rg_form_view` VALUES("11797", "3", "2015-05-09 22:04:41", "100.43.85.7", "587");
INSERT INTO `wp_rg_form_view` VALUES("11798", "3", "2015-05-09 23:01:23", "157.55.39.139", "492");
INSERT INTO `wp_rg_form_view` VALUES("11799", "3", "2015-05-10 00:00:10", "68.180.228.245", "478");
INSERT INTO `wp_rg_form_view` VALUES("11800", "3", "2015-05-10 01:00:46", "157.55.39.14", "646");
INSERT INTO `wp_rg_form_view` VALUES("11801", "3", "2015-05-10 02:00:10", "207.46.13.110", "1114");
INSERT INTO `wp_rg_form_view` VALUES("11802", "7", "2015-05-10 02:04:40", "36.34.0.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("11803", "2", "2015-05-10 02:04:49", "36.34.0.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("11804", "1", "2015-05-10 02:05:02", "36.34.0.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("11805", "3", "2015-05-10 03:03:51", "207.46.13.110", "775");
INSERT INTO `wp_rg_form_view` VALUES("11806", "7", "2015-05-10 03:42:57", "192.114.71.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("11807", "2", "2015-05-10 03:42:58", "192.114.71.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("11808", "1", "2015-05-10 03:42:58", "192.114.71.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("11809", "3", "2015-05-10 04:00:13", "157.55.39.133", "976");
INSERT INTO `wp_rg_form_view` VALUES("11810", "3", "2015-05-10 05:00:24", "157.55.39.133", "1273");
INSERT INTO `wp_rg_form_view` VALUES("11811", "3", "2015-05-10 06:00:05", "157.55.39.139", "847");
INSERT INTO `wp_rg_form_view` VALUES("11812", "3", "2015-05-10 07:00:22", "157.55.39.14", "891");
INSERT INTO `wp_rg_form_view` VALUES("11813", "3", "2015-05-10 08:00:07", "157.55.39.133", "899");
INSERT INTO `wp_rg_form_view` VALUES("11814", "3", "2015-05-10 09:00:19", "157.55.39.14", "751");
INSERT INTO `wp_rg_form_view` VALUES("11815", "1", "2015-05-10 09:30:44", "36.72.153.205", "2");
INSERT INTO `wp_rg_form_view` VALUES("11816", "3", "2015-05-10 10:03:00", "157.55.39.133", "441");
INSERT INTO `wp_rg_form_view` VALUES("11817", "3", "2015-05-10 11:04:00", "68.180.228.245", "691");
INSERT INTO `wp_rg_form_view` VALUES("11818", "3", "2015-05-10 12:00:45", "66.249.79.120", "1095");
INSERT INTO `wp_rg_form_view` VALUES("11819", "3", "2015-05-10 13:00:29", "157.55.39.14", "1039");
INSERT INTO `wp_rg_form_view` VALUES("11820", "3", "2015-05-10 14:00:44", "66.249.79.133", "919");
INSERT INTO `wp_rg_form_view` VALUES("11821", "6", "2015-05-10 14:09:50", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11822", "3", "2015-05-10 15:00:30", "157.55.39.14", "450");
INSERT INTO `wp_rg_form_view` VALUES("11823", "3", "2015-05-10 16:00:37", "157.55.39.14", "815");
INSERT INTO `wp_rg_form_view` VALUES("11824", "1", "2015-05-10 16:09:00", "176.97.116.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("11825", "3", "2015-05-10 17:00:58", "66.249.67.120", "782");
INSERT INTO `wp_rg_form_view` VALUES("11826", "3", "2015-05-10 18:00:59", "68.180.228.245", "880");
INSERT INTO `wp_rg_form_view` VALUES("11827", "3", "2015-05-10 19:01:22", "66.249.67.120", "957");
INSERT INTO `wp_rg_form_view` VALUES("11828", "3", "2015-05-10 20:00:15", "157.55.39.133", "841");
INSERT INTO `wp_rg_form_view` VALUES("11829", "3", "2015-05-10 21:00:00", "157.55.39.133", "589");
INSERT INTO `wp_rg_form_view` VALUES("11830", "3", "2015-05-10 22:00:49", "68.180.228.245", "585");
INSERT INTO `wp_rg_form_view` VALUES("11831", "3", "2015-05-10 23:00:37", "157.55.39.140", "1071");
INSERT INTO `wp_rg_form_view` VALUES("11832", "3", "2015-05-11 00:00:05", "66.249.67.120", "801");
INSERT INTO `wp_rg_form_view` VALUES("11833", "3", "2015-05-11 01:00:05", "66.249.67.146", "846");
INSERT INTO `wp_rg_form_view` VALUES("11834", "3", "2015-05-11 02:00:07", "66.249.67.120", "729");
INSERT INTO `wp_rg_form_view` VALUES("11835", "3", "2015-05-11 03:00:06", "66.249.67.133", "164");
INSERT INTO `wp_rg_form_view` VALUES("11836", "3", "2015-05-11 04:04:11", "66.249.67.120", "224");
INSERT INTO `wp_rg_form_view` VALUES("11837", "6", "2015-05-11 04:17:29", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("11838", "7", "2015-05-11 04:47:54", "188.165.15.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("11839", "3", "2015-05-11 05:13:45", "66.249.67.146", "170");
INSERT INTO `wp_rg_form_view` VALUES("11840", "6", "2015-05-11 05:51:05", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("11841", "3", "2015-05-11 06:01:43", "207.46.13.110", "216");
INSERT INTO `wp_rg_form_view` VALUES("11842", "3", "2015-05-11 07:01:11", "66.249.67.146", "367");
INSERT INTO `wp_rg_form_view` VALUES("11843", "3", "2015-05-11 08:00:07", "66.249.67.146", "544");
INSERT INTO `wp_rg_form_view` VALUES("11844", "3", "2015-05-11 09:01:19", "66.249.67.133", "526");
INSERT INTO `wp_rg_form_view` VALUES("11845", "3", "2015-05-11 10:01:44", "66.249.67.133", "481");
INSERT INTO `wp_rg_form_view` VALUES("11846", "3", "2015-05-11 11:00:46", "66.249.67.133", "852");
INSERT INTO `wp_rg_form_view` VALUES("11847", "3", "2015-05-11 12:00:46", "66.249.67.146", "562");
INSERT INTO `wp_rg_form_view` VALUES("11848", "3", "2015-05-11 13:00:46", "66.249.67.120", "516");
INSERT INTO `wp_rg_form_view` VALUES("11849", "3", "2015-05-11 14:00:44", "157.55.39.139", "505");
INSERT INTO `wp_rg_form_view` VALUES("11850", "3", "2015-05-11 15:01:53", "157.55.39.139", "549");
INSERT INTO `wp_rg_form_view` VALUES("11851", "6", "2015-05-11 15:25:13", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("11852", "3", "2015-05-11 16:00:51", "207.46.13.110", "563");
INSERT INTO `wp_rg_form_view` VALUES("11853", "3", "2015-05-11 17:00:01", "217.69.133.229", "742");
INSERT INTO `wp_rg_form_view` VALUES("11854", "3", "2015-05-11 18:01:01", "66.249.67.146", "626");
INSERT INTO `wp_rg_form_view` VALUES("11855", "3", "2015-05-11 19:01:49", "66.249.67.133", "709");
INSERT INTO `wp_rg_form_view` VALUES("11856", "3", "2015-05-11 20:00:02", "207.46.13.110", "720");
INSERT INTO `wp_rg_form_view` VALUES("11857", "3", "2015-05-11 21:00:57", "66.249.67.133", "517");
INSERT INTO `wp_rg_form_view` VALUES("11858", "3", "2015-05-11 22:00:50", "202.46.61.100", "547");
INSERT INTO `wp_rg_form_view` VALUES("11859", "3", "2015-05-11 23:02:50", "157.55.39.14", "537");
INSERT INTO `wp_rg_form_view` VALUES("11860", "3", "2015-05-12 00:00:07", "157.55.39.139", "837");
INSERT INTO `wp_rg_form_view` VALUES("11861", "3", "2015-05-12 01:01:31", "207.46.13.110", "711");
INSERT INTO `wp_rg_form_view` VALUES("11862", "3", "2015-05-12 02:00:38", "157.55.39.14", "480");
INSERT INTO `wp_rg_form_view` VALUES("11863", "3", "2015-05-12 03:01:45", "157.55.39.133", "586");
INSERT INTO `wp_rg_form_view` VALUES("11864", "3", "2015-05-12 04:00:17", "24.85.180.129", "648");
INSERT INTO `wp_rg_form_view` VALUES("11865", "3", "2015-05-12 05:00:31", "192.187.126.3", "645");
INSERT INTO `wp_rg_form_view` VALUES("11866", "3", "2015-05-12 06:00:50", "202.46.49.195", "665");
INSERT INTO `wp_rg_form_view` VALUES("11867", "3", "2015-05-12 07:00:46", "66.249.67.133", "689");
INSERT INTO `wp_rg_form_view` VALUES("11868", "1", "2015-05-12 07:23:26", "192.187.126.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("11869", "3", "2015-05-12 08:00:05", "207.46.13.110", "673");
INSERT INTO `wp_rg_form_view` VALUES("11870", "6", "2015-05-12 08:52:36", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("11871", "1", "2015-05-12 08:58:46", "192.187.126.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("11872", "3", "2015-05-12 09:01:57", "66.249.67.146", "535");
INSERT INTO `wp_rg_form_view` VALUES("11873", "3", "2015-05-12 10:04:13", "157.55.39.139", "669");
INSERT INTO `wp_rg_form_view` VALUES("11874", "3", "2015-05-12 11:01:27", "157.55.39.133", "584");
INSERT INTO `wp_rg_form_view` VALUES("11875", "3", "2015-05-12 12:02:04", "157.55.39.139", "663");
INSERT INTO `wp_rg_form_view` VALUES("11876", "3", "2015-05-12 13:01:07", "66.249.67.120", "609");
INSERT INTO `wp_rg_form_view` VALUES("11877", "3", "2015-05-12 14:01:23", "136.243.17.161", "870");
INSERT INTO `wp_rg_form_view` VALUES("11878", "3", "2015-05-12 15:01:16", "66.249.67.120", "501");
INSERT INTO `wp_rg_form_view` VALUES("11879", "3", "2015-05-12 16:01:20", "157.55.39.14", "410");
INSERT INTO `wp_rg_form_view` VALUES("11880", "3", "2015-05-12 17:00:23", "157.55.39.14", "539");
INSERT INTO `wp_rg_form_view` VALUES("11881", "3", "2015-05-12 18:00:41", "157.55.39.14", "743");
INSERT INTO `wp_rg_form_view` VALUES("11882", "7", "2015-05-12 18:03:49", "24.108.150.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("11883", "6", "2015-05-12 18:52:12", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11884", "3", "2015-05-12 19:01:20", "66.249.67.120", "673");
INSERT INTO `wp_rg_form_view` VALUES("11885", "6", "2015-05-12 19:59:53", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("11886", "3", "2015-05-12 20:00:00", "217.69.133.233", "728");
INSERT INTO `wp_rg_form_view` VALUES("11887", "3", "2015-05-12 21:00:49", "157.55.39.139", "620");
INSERT INTO `wp_rg_form_view` VALUES("11888", "3", "2015-05-12 22:00:06", "207.46.13.110", "915");
INSERT INTO `wp_rg_form_view` VALUES("11889", "1", "2015-05-12 22:53:38", "216.232.155.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("11890", "3", "2015-05-12 23:00:38", "66.249.67.133", "710");
INSERT INTO `wp_rg_form_view` VALUES("11891", "3", "2015-05-13 00:00:34", "157.55.39.133", "682");
INSERT INTO `wp_rg_form_view` VALUES("11892", "6", "2015-05-13 00:39:36", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("11893", "3", "2015-05-13 01:00:04", "207.46.13.110", "729");
INSERT INTO `wp_rg_form_view` VALUES("11894", "3", "2015-05-13 02:00:39", "157.55.39.133", "648");
INSERT INTO `wp_rg_form_view` VALUES("11895", "3", "2015-05-13 03:00:38", "66.249.67.120", "682");
INSERT INTO `wp_rg_form_view` VALUES("11896", "1", "2015-05-13 03:39:15", "192.187.126.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("11897", "3", "2015-05-13 04:00:32", "157.55.39.133", "666");
INSERT INTO `wp_rg_form_view` VALUES("11898", "3", "2015-05-13 05:02:12", "157.55.39.139", "872");
INSERT INTO `wp_rg_form_view` VALUES("11899", "7", "2015-05-13 05:45:36", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("11900", "2", "2015-05-13 05:46:46", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("11901", "1", "2015-05-13 05:46:59", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("11902", "3", "2015-05-13 06:00:34", "66.249.67.133", "712");
INSERT INTO `wp_rg_form_view` VALUES("11903", "3", "2015-05-13 07:00:00", "68.180.228.245", "796");
INSERT INTO `wp_rg_form_view` VALUES("11904", "3", "2015-05-13 08:00:22", "66.249.67.146", "779");
INSERT INTO `wp_rg_form_view` VALUES("11905", "1", "2015-05-13 08:04:39", "192.187.126.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("11906", "6", "2015-05-13 08:08:52", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11907", "3", "2015-05-13 09:00:03", "157.55.39.133", "778");
INSERT INTO `wp_rg_form_view` VALUES("11908", "3", "2015-05-13 10:00:11", "66.249.67.133", "802");
INSERT INTO `wp_rg_form_view` VALUES("11909", "3", "2015-05-13 11:00:02", "207.46.13.110", "665");
INSERT INTO `wp_rg_form_view` VALUES("11910", "6", "2015-05-13 11:47:54", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("11911", "3", "2015-05-13 12:01:35", "157.55.39.14", "1413");
INSERT INTO `wp_rg_form_view` VALUES("11912", "7", "2015-05-13 12:20:22", "195.154.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("11913", "1", "2015-05-13 12:20:51", "195.154.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("11914", "2", "2015-05-13 12:21:32", "195.154.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("11915", "3", "2015-05-13 13:02:07", "66.249.67.146", "625");
INSERT INTO `wp_rg_form_view` VALUES("11916", "6", "2015-05-13 13:24:36", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("11917", "3", "2015-05-13 14:01:14", "66.249.67.146", "495");
INSERT INTO `wp_rg_form_view` VALUES("11918", "3", "2015-05-13 15:00:13", "217.69.133.69", "582");
INSERT INTO `wp_rg_form_view` VALUES("11919", "3", "2015-05-13 16:00:21", "202.46.63.68", "399");
INSERT INTO `wp_rg_form_view` VALUES("11920", "3", "2015-05-13 17:00:49", "157.55.39.133", "434");
INSERT INTO `wp_rg_form_view` VALUES("11921", "3", "2015-05-13 18:01:38", "66.249.67.133", "476");
INSERT INTO `wp_rg_form_view` VALUES("11922", "3", "2015-05-13 19:00:38", "157.55.39.140", "795");
INSERT INTO `wp_rg_form_view` VALUES("11923", "3", "2015-05-13 20:00:32", "157.55.39.14", "457");
INSERT INTO `wp_rg_form_view` VALUES("11924", "3", "2015-05-13 21:00:19", "157.55.39.139", "302");
INSERT INTO `wp_rg_form_view` VALUES("11925", "6", "2015-05-13 21:19:47", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("11926", "3", "2015-05-13 22:00:16", "66.249.67.120", "723");
INSERT INTO `wp_rg_form_view` VALUES("11927", "1", "2015-05-13 22:40:52", "100.43.85.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("11928", "3", "2015-05-13 23:01:35", "66.249.67.120", "602");
INSERT INTO `wp_rg_form_view` VALUES("11929", "3", "2015-05-14 00:00:12", "157.55.39.139", "472");
INSERT INTO `wp_rg_form_view` VALUES("11930", "1", "2015-05-14 00:58:54", "192.187.126.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("11931", "3", "2015-05-14 01:03:58", "157.55.39.133", "703");
INSERT INTO `wp_rg_form_view` VALUES("11932", "3", "2015-05-14 02:00:06", "157.55.39.139", "657");
INSERT INTO `wp_rg_form_view` VALUES("11933", "1", "2015-05-14 02:01:32", "188.165.15.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("11934", "3", "2015-05-14 03:00:30", "157.55.39.133", "797");
INSERT INTO `wp_rg_form_view` VALUES("11935", "1", "2015-05-14 03:15:06", "192.187.126.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("11936", "3", "2015-05-14 04:02:26", "157.55.39.139", "818");
INSERT INTO `wp_rg_form_view` VALUES("11937", "3", "2015-05-14 05:00:11", "157.55.39.14", "893");
INSERT INTO `wp_rg_form_view` VALUES("11938", "3", "2015-05-14 06:01:52", "66.249.67.120", "807");
INSERT INTO `wp_rg_form_view` VALUES("11939", "3", "2015-05-14 07:01:19", "66.249.67.120", "512");
INSERT INTO `wp_rg_form_view` VALUES("11940", "7", "2015-05-14 07:34:44", "100.43.85.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("11941", "3", "2015-05-14 08:00:52", "66.249.67.146", "571");
INSERT INTO `wp_rg_form_view` VALUES("11942", "3", "2015-05-14 09:00:14", "66.249.67.120", "568");
INSERT INTO `wp_rg_form_view` VALUES("11943", "3", "2015-05-14 10:00:38", "157.55.39.140", "740");
INSERT INTO `wp_rg_form_view` VALUES("11944", "3", "2015-05-14 11:00:27", "157.55.39.14", "458");
INSERT INTO `wp_rg_form_view` VALUES("11945", "3", "2015-05-14 12:00:41", "68.180.228.245", "683");
INSERT INTO `wp_rg_form_view` VALUES("11946", "3", "2015-05-14 13:01:03", "66.249.67.120", "408");
INSERT INTO `wp_rg_form_view` VALUES("11947", "3", "2015-05-14 14:00:39", "207.46.13.110", "586");
INSERT INTO `wp_rg_form_view` VALUES("11948", "3", "2015-05-14 15:00:33", "66.249.67.146", "680");
INSERT INTO `wp_rg_form_view` VALUES("11949", "1", "2015-05-14 15:22:20", "96.54.166.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("11950", "3", "2015-05-14 16:00:16", "66.249.67.146", "643");
INSERT INTO `wp_rg_form_view` VALUES("11951", "2", "2015-05-14 16:56:39", "46.102.98.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("11952", "3", "2015-05-14 17:00:50", "66.249.67.133", "438");
INSERT INTO `wp_rg_form_view` VALUES("11953", "3", "2015-05-14 18:00:34", "157.55.39.133", "576");
INSERT INTO `wp_rg_form_view` VALUES("11954", "2", "2015-05-14 18:45:23", "188.165.15.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("11955", "1", "2015-05-14 18:52:35", "104.193.9.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("11956", "3", "2015-05-14 19:00:18", "207.46.13.110", "894");
INSERT INTO `wp_rg_form_view` VALUES("11957", "3", "2015-05-14 20:00:40", "66.249.67.120", "619");
INSERT INTO `wp_rg_form_view` VALUES("11958", "3", "2015-05-14 21:00:29", "66.249.67.133", "763");
INSERT INTO `wp_rg_form_view` VALUES("11959", "6", "2015-05-14 21:09:15", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("11960", "3", "2015-05-14 22:01:14", "66.249.67.120", "182");
INSERT INTO `wp_rg_form_view` VALUES("11961", "3", "2015-05-14 23:40:20", "94.153.9.66", "25");
INSERT INTO `wp_rg_form_view` VALUES("11962", "3", "2015-05-14 23:40:20", "94.153.9.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("11963", "3", "2015-05-14 23:40:20", "94.153.9.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("11964", "3", "2015-05-15 00:21:52", "68.180.228.245", "75");
INSERT INTO `wp_rg_form_view` VALUES("11965", "3", "2015-05-15 01:00:40", "157.55.39.140", "501");
INSERT INTO `wp_rg_form_view` VALUES("11966", "3", "2015-05-15 02:00:02", "157.55.39.133", "612");
INSERT INTO `wp_rg_form_view` VALUES("11967", "3", "2015-05-15 03:00:38", "157.55.39.14", "560");
INSERT INTO `wp_rg_form_view` VALUES("11968", "1", "2015-05-15 03:36:54", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11969", "3", "2015-05-15 04:00:10", "157.55.39.139", "859");
INSERT INTO `wp_rg_form_view` VALUES("11970", "1", "2015-05-15 04:35:12", "192.187.126.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("11971", "3", "2015-05-15 05:01:29", "157.55.39.14", "818");
INSERT INTO `wp_rg_form_view` VALUES("11972", "1", "2015-05-15 05:06:15", "157.55.39.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("11973", "6", "2015-05-15 05:16:58", "157.55.39.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("11974", "3", "2015-05-15 06:04:39", "207.46.13.110", "425");
INSERT INTO `wp_rg_form_view` VALUES("11975", "3", "2015-05-15 07:01:06", "157.55.39.139", "935");
INSERT INTO `wp_rg_form_view` VALUES("11976", "3", "2015-05-15 08:02:07", "157.55.39.15", "418");
INSERT INTO `wp_rg_form_view` VALUES("11977", "3", "2015-05-15 09:00:36", "157.55.39.140", "492");
INSERT INTO `wp_rg_form_view` VALUES("11978", "3", "2015-05-15 10:01:06", "157.55.39.133", "728");
INSERT INTO `wp_rg_form_view` VALUES("11979", "3", "2015-05-15 11:00:56", "157.55.39.139", "793");
INSERT INTO `wp_rg_form_view` VALUES("11980", "3", "2015-05-15 12:02:07", "207.46.13.110", "628");
INSERT INTO `wp_rg_form_view` VALUES("11981", "6", "2015-05-15 12:37:15", "157.55.39.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("11982", "3", "2015-05-15 13:01:22", "157.55.39.14", "577");
INSERT INTO `wp_rg_form_view` VALUES("11983", "6", "2015-05-15 13:42:19", "157.55.39.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("11984", "3", "2015-05-15 14:00:10", "207.46.13.96", "555");
INSERT INTO `wp_rg_form_view` VALUES("11985", "3", "2015-05-15 15:00:31", "157.55.39.149", "647");
INSERT INTO `wp_rg_form_view` VALUES("11986", "6", "2015-05-15 15:06:15", "207.46.13.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("11987", "3", "2015-05-15 16:03:30", "207.46.13.96", "508");
INSERT INTO `wp_rg_form_view` VALUES("11988", "3", "2015-05-15 17:00:12", "207.46.13.96", "520");
INSERT INTO `wp_rg_form_view` VALUES("11989", "3", "2015-05-15 18:00:35", "157.55.39.149", "562");
INSERT INTO `wp_rg_form_view` VALUES("11990", "3", "2015-05-15 19:00:49", "202.46.61.102", "567");
INSERT INTO `wp_rg_form_view` VALUES("11991", "7", "2015-05-15 19:44:03", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11992", "3", "2015-05-15 20:00:19", "202.46.62.148", "515");
INSERT INTO `wp_rg_form_view` VALUES("11993", "5", "2015-05-15 20:38:56", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("11994", "3", "2015-05-15 21:00:11", "207.46.13.96", "523");
INSERT INTO `wp_rg_form_view` VALUES("11995", "3", "2015-05-15 22:01:50", "157.55.39.149", "820");
INSERT INTO `wp_rg_form_view` VALUES("11996", "3", "2015-05-15 23:00:47", "157.55.39.149", "814");
INSERT INTO `wp_rg_form_view` VALUES("11997", "3", "2015-05-16 00:00:04", "68.180.228.245", "429");
INSERT INTO `wp_rg_form_view` VALUES("11998", "6", "2015-05-16 00:34:06", "157.55.39.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("11999", "3", "2015-05-16 01:00:12", "157.55.39.14", "684");
INSERT INTO `wp_rg_form_view` VALUES("12000", "6", "2015-05-16 01:04:27", "157.55.39.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("12001", "3", "2015-05-16 02:00:26", "157.55.39.140", "324");
INSERT INTO `wp_rg_form_view` VALUES("12002", "3", "2015-05-16 03:05:52", "68.180.228.245", "487");
INSERT INTO `wp_rg_form_view` VALUES("12003", "3", "2015-05-16 04:21:32", "157.55.39.149", "46");
INSERT INTO `wp_rg_form_view` VALUES("12004", "6", "2015-05-16 05:05:53", "66.249.67.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12005", "3", "2015-05-16 05:05:54", "66.249.67.133", "413");
INSERT INTO `wp_rg_form_view` VALUES("12006", "3", "2015-05-16 06:02:36", "157.55.39.149", "523");
INSERT INTO `wp_rg_form_view` VALUES("12007", "1", "2015-05-16 06:51:57", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("12008", "3", "2015-05-16 07:05:17", "68.180.228.245", "619");
INSERT INTO `wp_rg_form_view` VALUES("12009", "1", "2015-05-16 07:39:44", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("12010", "3", "2015-05-16 08:00:05", "157.55.39.139", "526");
INSERT INTO `wp_rg_form_view` VALUES("12011", "3", "2015-05-16 09:00:32", "207.46.13.96", "611");
INSERT INTO `wp_rg_form_view` VALUES("12012", "3", "2015-05-16 10:00:36", "157.55.39.14", "488");
INSERT INTO `wp_rg_form_view` VALUES("12013", "1", "2015-05-16 10:10:49", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("12014", "3", "2015-05-16 11:00:10", "157.55.39.139", "619");
INSERT INTO `wp_rg_form_view` VALUES("12015", "3", "2015-05-16 12:00:09", "207.46.13.96", "2003");
INSERT INTO `wp_rg_form_view` VALUES("12016", "7", "2015-05-16 12:37:05", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("12017", "2", "2015-05-16 12:37:28", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("12018", "1", "2015-05-16 12:37:33", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("12019", "5", "2015-05-16 12:41:09", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("12020", "3", "2015-05-16 13:00:19", "207.46.13.96", "783");
INSERT INTO `wp_rg_form_view` VALUES("12021", "3", "2015-05-16 14:04:10", "157.55.39.149", "758");
INSERT INTO `wp_rg_form_view` VALUES("12022", "1", "2015-05-16 14:48:20", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("12023", "2", "2015-05-16 14:48:20", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("12024", "3", "2015-05-16 15:02:58", "207.46.13.96", "733");
INSERT INTO `wp_rg_form_view` VALUES("12025", "7", "2015-05-16 15:53:54", "154.20.45.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("12026", "3", "2015-05-16 16:00:53", "207.46.13.96", "652");
INSERT INTO `wp_rg_form_view` VALUES("12027", "3", "2015-05-16 17:00:08", "157.55.39.149", "647");
INSERT INTO `wp_rg_form_view` VALUES("12028", "3", "2015-05-16 18:01:16", "202.46.63.162", "550");
INSERT INTO `wp_rg_form_view` VALUES("12029", "3", "2015-05-16 19:00:04", "157.55.39.139", "610");
INSERT INTO `wp_rg_form_view` VALUES("12030", "3", "2015-05-16 20:01:06", "207.46.13.96", "493");
INSERT INTO `wp_rg_form_view` VALUES("12031", "3", "2015-05-16 21:01:03", "157.55.39.139", "612");
INSERT INTO `wp_rg_form_view` VALUES("12032", "3", "2015-05-16 22:00:56", "157.55.39.139", "567");
INSERT INTO `wp_rg_form_view` VALUES("12033", "3", "2015-05-16 23:01:01", "66.249.67.133", "614");
INSERT INTO `wp_rg_form_view` VALUES("12034", "3", "2015-05-17 00:01:03", "157.55.39.139", "717");
INSERT INTO `wp_rg_form_view` VALUES("12035", "3", "2015-05-17 01:01:05", "157.55.39.139", "727");
INSERT INTO `wp_rg_form_view` VALUES("12036", "3", "2015-05-17 02:00:54", "157.55.39.14", "519");
INSERT INTO `wp_rg_form_view` VALUES("12037", "1", "2015-05-17 02:44:34", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("12038", "3", "2015-05-17 03:01:39", "157.55.39.140", "516");
INSERT INTO `wp_rg_form_view` VALUES("12039", "3", "2015-05-17 04:00:04", "157.55.39.149", "794");
INSERT INTO `wp_rg_form_view` VALUES("12040", "3", "2015-05-17 05:00:09", "157.55.39.150", "651");
INSERT INTO `wp_rg_form_view` VALUES("12041", "3", "2015-05-17 06:00:06", "157.55.39.149", "581");
INSERT INTO `wp_rg_form_view` VALUES("12042", "3", "2015-05-17 07:01:10", "157.55.39.139", "549");
INSERT INTO `wp_rg_form_view` VALUES("12043", "3", "2015-05-17 08:00:12", "207.46.13.96", "575");
INSERT INTO `wp_rg_form_view` VALUES("12044", "3", "2015-05-17 09:00:32", "157.55.39.14", "462");
INSERT INTO `wp_rg_form_view` VALUES("12045", "3", "2015-05-17 10:00:42", "157.55.39.140", "593");
INSERT INTO `wp_rg_form_view` VALUES("12046", "3", "2015-05-17 11:01:21", "157.55.39.140", "689");
INSERT INTO `wp_rg_form_view` VALUES("12047", "1", "2015-05-17 11:25:14", "175.195.192.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("12048", "3", "2015-05-17 12:00:05", "157.55.39.139", "541");
INSERT INTO `wp_rg_form_view` VALUES("12049", "3", "2015-05-17 13:00:21", "157.55.39.14", "691");
INSERT INTO `wp_rg_form_view` VALUES("12050", "3", "2015-05-17 14:00:46", "157.55.39.14", "493");
INSERT INTO `wp_rg_form_view` VALUES("12051", "3", "2015-05-17 15:00:35", "207.46.13.96", "807");
INSERT INTO `wp_rg_form_view` VALUES("12052", "3", "2015-05-17 16:02:26", "157.55.39.150", "614");
INSERT INTO `wp_rg_form_view` VALUES("12053", "3", "2015-05-17 17:01:05", "207.46.13.96", "575");
INSERT INTO `wp_rg_form_view` VALUES("12054", "3", "2015-05-17 18:00:32", "157.55.39.14", "1290");
INSERT INTO `wp_rg_form_view` VALUES("12055", "3", "2015-05-17 19:00:08", "68.180.228.245", "791");
INSERT INTO `wp_rg_form_view` VALUES("12056", "3", "2015-05-17 20:00:38", "157.55.39.14", "608");
INSERT INTO `wp_rg_form_view` VALUES("12057", "3", "2015-05-17 21:00:17", "207.46.13.96", "616");
INSERT INTO `wp_rg_form_view` VALUES("12058", "3", "2015-05-17 22:00:57", "157.55.39.139", "708");
INSERT INTO `wp_rg_form_view` VALUES("12059", "3", "2015-05-17 23:00:37", "66.249.67.120", "217");
INSERT INTO `wp_rg_form_view` VALUES("12060", "3", "2015-05-18 00:05:11", "202.46.62.57", "91");
INSERT INTO `wp_rg_form_view` VALUES("12061", "3", "2015-05-18 01:03:44", "202.46.62.204", "46");
INSERT INTO `wp_rg_form_view` VALUES("12062", "3", "2015-05-18 02:12:40", "157.55.39.140", "89");
INSERT INTO `wp_rg_form_view` VALUES("12063", "3", "2015-05-18 03:00:49", "202.46.62.56", "35");
INSERT INTO `wp_rg_form_view` VALUES("12064", "3", "2015-05-18 04:08:51", "157.55.39.149", "64");
INSERT INTO `wp_rg_form_view` VALUES("12065", "3", "2015-05-18 05:33:56", "66.249.67.146", "29");
INSERT INTO `wp_rg_form_view` VALUES("12066", "6", "2015-05-18 05:39:31", "207.46.13.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("12067", "3", "2015-05-18 06:09:07", "202.46.63.83", "118");
INSERT INTO `wp_rg_form_view` VALUES("12068", "6", "2015-05-18 06:48:26", "66.249.67.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12069", "3", "2015-05-18 07:01:39", "68.180.228.245", "86");
INSERT INTO `wp_rg_form_view` VALUES("12070", "3", "2015-05-18 08:01:58", "66.249.67.133", "246");
INSERT INTO `wp_rg_form_view` VALUES("12071", "3", "2015-05-18 09:03:16", "66.249.67.133", "234");
INSERT INTO `wp_rg_form_view` VALUES("12072", "3", "2015-05-18 10:00:46", "66.249.67.120", "300");
INSERT INTO `wp_rg_form_view` VALUES("12073", "1", "2015-05-18 10:24:11", "37.57.231.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("12074", "3", "2015-05-18 11:02:06", "66.249.67.120", "236");
INSERT INTO `wp_rg_form_view` VALUES("12075", "3", "2015-05-18 12:05:21", "66.249.67.120", "64");
INSERT INTO `wp_rg_form_view` VALUES("12076", "3", "2015-05-18 13:08:34", "202.46.61.105", "83");
INSERT INTO `wp_rg_form_view` VALUES("12077", "3", "2015-05-18 14:20:47", "202.46.63.164", "60");
INSERT INTO `wp_rg_form_view` VALUES("12078", "3", "2015-05-18 15:41:55", "202.46.63.68", "10");
INSERT INTO `wp_rg_form_view` VALUES("12079", "3", "2015-05-18 16:16:54", "202.46.61.121", "9");
INSERT INTO `wp_rg_form_view` VALUES("12080", "3", "2015-05-18 17:02:51", "68.180.228.245", "212");
INSERT INTO `wp_rg_form_view` VALUES("12081", "3", "2015-05-18 18:00:18", "99.199.0.210", "91");
INSERT INTO `wp_rg_form_view` VALUES("12082", "3", "2015-05-18 19:00:26", "202.46.63.80", "110");
INSERT INTO `wp_rg_form_view` VALUES("12083", "2", "2015-05-18 19:22:42", "46.4.189.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("12084", "1", "2015-05-18 19:47:05", "24.68.135.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("12085", "3", "2015-05-18 20:01:02", "199.21.99.206", "195");
INSERT INTO `wp_rg_form_view` VALUES("12086", "3", "2015-05-18 21:01:02", "66.249.67.133", "372");
INSERT INTO `wp_rg_form_view` VALUES("12087", "3", "2015-05-18 22:01:18", "66.249.67.146", "388");
INSERT INTO `wp_rg_form_view` VALUES("12088", "3", "2015-05-18 23:01:13", "68.180.228.245", "909");
INSERT INTO `wp_rg_form_view` VALUES("12089", "7", "2015-05-18 23:47:48", "52.8.5.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("12090", "2", "2015-05-18 23:49:04", "52.8.5.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("12091", "1", "2015-05-18 23:49:18", "52.8.5.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("12092", "3", "2015-05-19 00:01:50", "66.249.67.133", "320");
INSERT INTO `wp_rg_form_view` VALUES("12093", "7", "2015-05-19 00:58:57", "66.249.67.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12094", "3", "2015-05-19 01:00:45", "66.249.67.133", "190");
INSERT INTO `wp_rg_form_view` VALUES("12095", "6", "2015-05-19 01:17:53", "66.249.67.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12096", "3", "2015-05-19 02:01:57", "202.46.61.121", "244");
INSERT INTO `wp_rg_form_view` VALUES("12097", "3", "2015-05-19 03:00:26", "202.46.63.209", "373");
INSERT INTO `wp_rg_form_view` VALUES("12098", "1", "2015-05-19 03:30:21", "117.102.48.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("12099", "6", "2015-05-19 04:02:49", "112.18.66.238", "4");
INSERT INTO `wp_rg_form_view` VALUES("12100", "3", "2015-05-19 04:02:49", "112.18.66.238", "6901");
INSERT INTO `wp_rg_form_view` VALUES("12101", "3", "2015-05-19 05:00:18", "66.249.67.146", "2586");
INSERT INTO `wp_rg_form_view` VALUES("12102", "3", "2015-05-19 06:01:39", "66.249.67.133", "218");
INSERT INTO `wp_rg_form_view` VALUES("12103", "3", "2015-05-19 07:01:05", "66.249.67.133", "223");
INSERT INTO `wp_rg_form_view` VALUES("12104", "2", "2015-05-19 07:17:46", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12105", "6", "2015-05-19 07:21:23", "66.249.67.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12106", "3", "2015-05-19 08:02:03", "66.249.67.146", "231");
INSERT INTO `wp_rg_form_view` VALUES("12107", "3", "2015-05-19 09:03:10", "66.249.67.133", "246");
INSERT INTO `wp_rg_form_view` VALUES("12108", "3", "2015-05-19 10:01:54", "202.46.63.164", "265");
INSERT INTO `wp_rg_form_view` VALUES("12109", "6", "2015-05-19 10:14:06", "66.249.67.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12110", "3", "2015-05-19 11:01:06", "66.249.67.146", "226");
INSERT INTO `wp_rg_form_view` VALUES("12111", "3", "2015-05-19 12:00:03", "66.249.67.133", "273");
INSERT INTO `wp_rg_form_view` VALUES("12112", "3", "2015-05-19 13:01:10", "66.249.67.133", "225");
INSERT INTO `wp_rg_form_view` VALUES("12113", "6", "2015-05-19 13:41:43", "66.249.67.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12114", "3", "2015-05-19 14:02:40", "66.249.67.120", "165");
INSERT INTO `wp_rg_form_view` VALUES("12115", "3", "2015-05-19 15:02:15", "66.249.67.146", "136");
INSERT INTO `wp_rg_form_view` VALUES("12116", "3", "2015-05-19 16:01:50", "66.249.67.133", "193");
INSERT INTO `wp_rg_form_view` VALUES("12117", "3", "2015-05-19 17:03:48", "66.249.67.133", "182");
INSERT INTO `wp_rg_form_view` VALUES("12118", "3", "2015-05-19 18:01:00", "66.249.67.133", "92");
INSERT INTO `wp_rg_form_view` VALUES("12119", "6", "2015-05-19 18:10:31", "66.249.67.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12120", "3", "2015-05-19 19:21:16", "157.55.39.14", "285");
INSERT INTO `wp_rg_form_view` VALUES("12121", "3", "2015-05-19 20:01:50", "157.55.39.140", "92");
INSERT INTO `wp_rg_form_view` VALUES("12122", "3", "2015-05-19 21:00:41", "66.249.67.146", "155");
INSERT INTO `wp_rg_form_view` VALUES("12123", "2", "2015-05-19 21:59:43", "46.4.189.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("12124", "3", "2015-05-19 22:02:01", "66.249.67.120", "135");
INSERT INTO `wp_rg_form_view` VALUES("12125", "6", "2015-05-19 22:04:41", "66.249.67.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("12126", "3", "2015-05-19 23:03:39", "66.249.67.133", "54");
INSERT INTO `wp_rg_form_view` VALUES("12127", "3", "2015-05-20 00:00:06", "66.249.67.146", "174");
INSERT INTO `wp_rg_form_view` VALUES("12128", "1", "2015-05-20 00:00:54", "96.50.86.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("12129", "3", "2015-05-20 01:06:37", "66.249.67.146", "189");
INSERT INTO `wp_rg_form_view` VALUES("12130", "3", "2015-05-20 02:02:01", "66.249.67.133", "126");
INSERT INTO `wp_rg_form_view` VALUES("12131", "3", "2015-05-20 03:04:06", "66.249.67.120", "190");
INSERT INTO `wp_rg_form_view` VALUES("12132", "3", "2015-05-20 04:01:44", "66.249.67.120", "258");
INSERT INTO `wp_rg_form_view` VALUES("12133", "3", "2015-05-20 05:01:48", "66.249.67.133", "169");
INSERT INTO `wp_rg_form_view` VALUES("12134", "6", "2015-05-20 05:03:48", "66.249.67.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12135", "3", "2015-05-20 06:03:39", "66.249.67.146", "145");
INSERT INTO `wp_rg_form_view` VALUES("12136", "1", "2015-05-20 06:51:45", "104.193.9.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("12137", "3", "2015-05-20 07:08:36", "46.101.160.236", "18");
INSERT INTO `wp_rg_form_view` VALUES("12138", "3", "2015-05-20 08:15:55", "207.46.13.121", "177");
INSERT INTO `wp_rg_form_view` VALUES("12139", "3", "2015-05-20 09:01:24", "66.249.67.146", "216");
INSERT INTO `wp_rg_form_view` VALUES("12140", "3", "2015-05-20 10:00:00", "66.249.67.146", "270");
INSERT INTO `wp_rg_form_view` VALUES("12141", "3", "2015-05-20 11:00:10", "66.249.67.133", "290");
INSERT INTO `wp_rg_form_view` VALUES("12142", "3", "2015-05-20 12:00:19", "66.249.67.133", "279");
INSERT INTO `wp_rg_form_view` VALUES("12143", "3", "2015-05-20 13:02:04", "66.249.67.120", "36");
INSERT INTO `wp_rg_form_view` VALUES("12144", "3", "2015-05-20 14:09:06", "68.180.228.245", "129");
INSERT INTO `wp_rg_form_view` VALUES("12145", "3", "2015-05-20 15:06:43", "66.249.67.120", "55");
INSERT INTO `wp_rg_form_view` VALUES("12146", "3", "2015-05-20 16:01:55", "66.249.67.133", "334");
INSERT INTO `wp_rg_form_view` VALUES("12147", "3", "2015-05-20 17:00:50", "66.249.67.120", "389");
INSERT INTO `wp_rg_form_view` VALUES("12148", "3", "2015-05-20 18:01:05", "66.249.67.120", "406");
INSERT INTO `wp_rg_form_view` VALUES("12149", "3", "2015-05-20 19:00:39", "66.249.67.146", "430");
INSERT INTO `wp_rg_form_view` VALUES("12150", "3", "2015-05-20 20:00:32", "157.55.39.42", "174");
INSERT INTO `wp_rg_form_view` VALUES("12151", "3", "2015-05-20 21:01:37", "157.55.39.53", "177");
INSERT INTO `wp_rg_form_view` VALUES("12152", "3", "2015-05-20 22:00:01", "66.249.67.146", "436");
INSERT INTO `wp_rg_form_view` VALUES("12153", "1", "2015-05-20 22:59:33", "96.50.86.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("12154", "3", "2015-05-20 23:01:46", "66.249.67.146", "471");
INSERT INTO `wp_rg_form_view` VALUES("12155", "3", "2015-05-21 00:00:17", "66.249.67.120", "320");
INSERT INTO `wp_rg_form_view` VALUES("12156", "6", "2015-05-21 00:55:23", "66.249.67.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12157", "3", "2015-05-21 01:12:42", "157.55.39.42", "72");
INSERT INTO `wp_rg_form_view` VALUES("12158", "3", "2015-05-21 02:03:26", "68.180.228.245", "406");
INSERT INTO `wp_rg_form_view` VALUES("12159", "3", "2015-05-21 03:01:05", "66.249.67.133", "381");
INSERT INTO `wp_rg_form_view` VALUES("12160", "3", "2015-05-21 04:00:13", "66.249.67.133", "531");
INSERT INTO `wp_rg_form_view` VALUES("12161", "3", "2015-05-21 05:00:32", "66.249.67.120", "456");
INSERT INTO `wp_rg_form_view` VALUES("12162", "3", "2015-05-21 06:00:49", "66.249.67.146", "272");
INSERT INTO `wp_rg_form_view` VALUES("12163", "3", "2015-05-21 07:00:00", "66.249.67.146", "218");
INSERT INTO `wp_rg_form_view` VALUES("12164", "3", "2015-05-21 08:10:22", "66.249.67.120", "3294");
INSERT INTO `wp_rg_form_view` VALUES("12165", "6", "2015-05-21 08:49:28", "157.55.39.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("12166", "3", "2015-05-21 09:00:53", "66.249.67.120", "226");
INSERT INTO `wp_rg_form_view` VALUES("12167", "3", "2015-05-21 10:00:49", "157.55.39.42", "4488");
INSERT INTO `wp_rg_form_view` VALUES("12168", "6", "2015-05-21 10:01:25", "157.55.39.42", "7");
INSERT INTO `wp_rg_form_view` VALUES("12169", "3", "2015-05-21 11:01:14", "66.249.67.133", "235");
INSERT INTO `wp_rg_form_view` VALUES("12170", "3", "2015-05-21 12:00:43", "66.249.67.146", "336");
INSERT INTO `wp_rg_form_view` VALUES("12171", "3", "2015-05-21 13:00:08", "66.249.67.120", "380");
INSERT INTO `wp_rg_form_view` VALUES("12172", "3", "2015-05-21 14:03:56", "66.249.67.146", "341");
INSERT INTO `wp_rg_form_view` VALUES("12173", "3", "2015-05-21 15:11:48", "66.249.67.120", "146");
INSERT INTO `wp_rg_form_view` VALUES("12174", "1", "2015-05-21 15:42:45", "104.193.9.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("12175", "3", "2015-05-21 16:00:37", "66.249.67.120", "359");
INSERT INTO `wp_rg_form_view` VALUES("12176", "6", "2015-05-21 16:42:42", "157.55.39.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("12177", "3", "2015-05-21 17:01:37", "66.249.67.133", "199");
INSERT INTO `wp_rg_form_view` VALUES("12178", "3", "2015-05-21 18:04:39", "66.249.67.120", "285");
INSERT INTO `wp_rg_form_view` VALUES("12179", "1", "2015-05-21 18:12:02", "104.193.9.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("12180", "3", "2015-05-21 19:00:58", "68.180.228.245", "477");
INSERT INTO `wp_rg_form_view` VALUES("12181", "3", "2015-05-21 20:00:32", "66.249.67.146", "153");
INSERT INTO `wp_rg_form_view` VALUES("12182", "3", "2015-05-21 21:26:49", "216.57.188.125", "65");
INSERT INTO `wp_rg_form_view` VALUES("12183", "7", "2015-05-21 21:33:27", "88.200.215.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("12184", "3", "2015-05-21 22:02:42", "68.180.228.245", "43");
INSERT INTO `wp_rg_form_view` VALUES("12185", "6", "2015-05-21 22:11:20", "66.249.67.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12186", "3", "2015-05-21 23:34:30", "66.249.67.146", "72");
INSERT INTO `wp_rg_form_view` VALUES("12187", "3", "2015-05-22 00:02:56", "66.249.67.146", "155");
INSERT INTO `wp_rg_form_view` VALUES("12188", "3", "2015-05-22 01:03:05", "66.249.67.146", "159");
INSERT INTO `wp_rg_form_view` VALUES("12189", "3", "2015-05-22 02:00:05", "66.249.67.146", "128");
INSERT INTO `wp_rg_form_view` VALUES("12190", "3", "2015-05-22 03:03:26", "66.249.67.146", "180");
INSERT INTO `wp_rg_form_view` VALUES("12191", "3", "2015-05-22 04:00:25", "66.249.67.146", "182");
INSERT INTO `wp_rg_form_view` VALUES("12192", "3", "2015-05-22 05:00:28", "184.71.26.154", "118");
INSERT INTO `wp_rg_form_view` VALUES("12193", "3", "2015-05-22 06:00:48", "66.249.67.146", "129");
INSERT INTO `wp_rg_form_view` VALUES("12194", "3", "2015-05-22 07:04:06", "66.249.67.133", "110");
INSERT INTO `wp_rg_form_view` VALUES("12195", "3", "2015-05-22 08:01:07", "66.249.67.146", "231");
INSERT INTO `wp_rg_form_view` VALUES("12196", "1", "2015-05-22 08:55:35", "104.193.9.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("12197", "3", "2015-05-22 09:01:15", "66.249.67.133", "225");
INSERT INTO `wp_rg_form_view` VALUES("12198", "3", "2015-05-22 10:07:46", "66.249.67.133", "154");
INSERT INTO `wp_rg_form_view` VALUES("12199", "1", "2015-05-22 10:45:10", "125.71.40.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("12200", "3", "2015-05-22 11:01:35", "66.249.67.133", "130");
INSERT INTO `wp_rg_form_view` VALUES("12201", "3", "2015-05-22 12:08:05", "66.249.67.133", "750");
INSERT INTO `wp_rg_form_view` VALUES("12202", "6", "2015-05-22 12:14:20", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12203", "1", "2015-05-22 12:45:57", "66.249.67.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12204", "3", "2015-05-22 13:01:12", "202.46.54.33", "198");
INSERT INTO `wp_rg_form_view` VALUES("12205", "3", "2015-05-22 14:01:36", "178.137.19.143", "222");
INSERT INTO `wp_rg_form_view` VALUES("12206", "3", "2015-05-22 15:09:59", "202.46.49.96", "347");
INSERT INTO `wp_rg_form_view` VALUES("12207", "3", "2015-05-22 16:04:51", "157.55.39.114", "142");
INSERT INTO `wp_rg_form_view` VALUES("12208", "3", "2015-05-22 17:02:37", "66.249.67.146", "192");
INSERT INTO `wp_rg_form_view` VALUES("12209", "3", "2015-05-22 18:02:48", "66.249.67.133", "200");
INSERT INTO `wp_rg_form_view` VALUES("12210", "3", "2015-05-22 19:04:08", "202.46.50.16", "223");
INSERT INTO `wp_rg_form_view` VALUES("12211", "3", "2015-05-22 20:02:45", "202.46.51.179", "195");
INSERT INTO `wp_rg_form_view` VALUES("12212", "1", "2015-05-22 20:33:40", "125.71.40.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("12213", "3", "2015-05-22 21:01:12", "202.46.57.18", "4898");
INSERT INTO `wp_rg_form_view` VALUES("12214", "6", "2015-05-22 21:49:43", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("12215", "3", "2015-05-22 22:00:18", "66.249.79.120", "202");
INSERT INTO `wp_rg_form_view` VALUES("12216", "6", "2015-05-22 22:16:00", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12217", "3", "2015-05-22 23:06:46", "66.249.79.133", "266");
INSERT INTO `wp_rg_form_view` VALUES("12218", "3", "2015-05-23 00:00:41", "66.249.79.120", "618");
INSERT INTO `wp_rg_form_view` VALUES("12219", "3", "2015-05-23 01:00:49", "66.249.79.133", "646");
INSERT INTO `wp_rg_form_view` VALUES("12220", "5", "2015-05-23 01:49:36", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12221", "3", "2015-05-23 02:00:20", "66.249.79.133", "832");
INSERT INTO `wp_rg_form_view` VALUES("12222", "7", "2015-05-23 02:24:05", "96.54.161.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("12223", "3", "2015-05-23 03:00:14", "66.249.79.133", "566");
INSERT INTO `wp_rg_form_view` VALUES("12224", "3", "2015-05-23 04:00:18", "66.249.79.133", "583");
INSERT INTO `wp_rg_form_view` VALUES("12225", "3", "2015-05-23 05:00:20", "66.249.79.146", "668");
INSERT INTO `wp_rg_form_view` VALUES("12226", "6", "2015-05-23 05:13:19", "207.46.13.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("12227", "3", "2015-05-23 06:02:02", "66.249.79.120", "263");
INSERT INTO `wp_rg_form_view` VALUES("12228", "3", "2015-05-23 07:02:21", "66.249.79.146", "356");
INSERT INTO `wp_rg_form_view` VALUES("12229", "1", "2015-05-23 07:26:26", "117.177.243.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("12230", "3", "2015-05-23 08:00:36", "66.249.79.133", "456");
INSERT INTO `wp_rg_form_view` VALUES("12231", "3", "2015-05-23 09:00:43", "66.249.79.146", "452");
INSERT INTO `wp_rg_form_view` VALUES("12232", "3", "2015-05-23 10:00:35", "66.249.79.133", "578");
INSERT INTO `wp_rg_form_view` VALUES("12233", "3", "2015-05-23 11:00:00", "61.16.251.194", "502");
INSERT INTO `wp_rg_form_view` VALUES("12234", "7", "2015-05-23 11:00:04", "61.16.251.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("12235", "1", "2015-05-23 11:00:26", "61.16.251.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("12236", "2", "2015-05-23 11:00:36", "61.16.251.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("12237", "3", "2015-05-23 12:00:34", "66.249.79.133", "556");
INSERT INTO `wp_rg_form_view` VALUES("12238", "3", "2015-05-23 13:00:35", "66.249.79.120", "475");
INSERT INTO `wp_rg_form_view` VALUES("12239", "3", "2015-05-23 14:00:33", "66.249.79.146", "399");
INSERT INTO `wp_rg_form_view` VALUES("12240", "3", "2015-05-23 15:00:52", "202.46.52.110", "376");
INSERT INTO `wp_rg_form_view` VALUES("12241", "3", "2015-05-23 16:00:24", "202.46.51.192", "379");
INSERT INTO `wp_rg_form_view` VALUES("12242", "3", "2015-05-23 17:04:02", "66.249.79.146", "330");
INSERT INTO `wp_rg_form_view` VALUES("12243", "3", "2015-05-23 18:01:39", "66.249.79.120", "423");
INSERT INTO `wp_rg_form_view` VALUES("12244", "3", "2015-05-23 19:01:22", "66.249.79.146", "512");
INSERT INTO `wp_rg_form_view` VALUES("12245", "1", "2015-05-23 19:19:50", "31.148.219.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("12246", "3", "2015-05-23 20:06:15", "202.46.57.208", "301");
INSERT INTO `wp_rg_form_view` VALUES("12247", "3", "2015-05-23 21:02:19", "66.249.79.133", "317");
INSERT INTO `wp_rg_form_view` VALUES("12248", "1", "2015-05-23 21:37:06", "128.204.196.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12249", "3", "2015-05-23 22:01:04", "66.249.79.133", "304");
INSERT INTO `wp_rg_form_view` VALUES("12250", "3", "2015-05-23 23:01:51", "202.46.51.158", "490");
INSERT INTO `wp_rg_form_view` VALUES("12251", "3", "2015-05-24 00:00:23", "202.46.50.130", "1288");
INSERT INTO `wp_rg_form_view` VALUES("12252", "1", "2015-05-24 00:33:09", "162.243.251.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("12253", "7", "2015-05-24 00:39:04", "162.243.251.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("12254", "5", "2015-05-24 00:40:09", "162.243.251.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("12255", "3", "2015-05-24 01:00:03", "68.180.228.245", "370");
INSERT INTO `wp_rg_form_view` VALUES("12256", "3", "2015-05-24 02:02:19", "66.249.79.133", "271");
INSERT INTO `wp_rg_form_view` VALUES("12257", "3", "2015-05-24 03:00:04", "66.249.79.120", "324");
INSERT INTO `wp_rg_form_view` VALUES("12258", "3", "2015-05-24 04:02:58", "66.249.79.146", "261");
INSERT INTO `wp_rg_form_view` VALUES("12259", "3", "2015-05-24 05:00:46", "66.249.79.133", "574");
INSERT INTO `wp_rg_form_view` VALUES("12260", "7", "2015-05-24 05:10:35", "143.176.126.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("12261", "1", "2015-05-24 05:11:04", "143.176.126.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("12262", "2", "2015-05-24 05:11:12", "143.176.126.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("12263", "3", "2015-05-24 06:00:16", "66.249.79.120", "387");
INSERT INTO `wp_rg_form_view` VALUES("12264", "3", "2015-05-24 07:01:28", "66.249.79.146", "207");
INSERT INTO `wp_rg_form_view` VALUES("12265", "3", "2015-05-24 08:00:24", "202.46.49.134", "147");
INSERT INTO `wp_rg_form_view` VALUES("12266", "3", "2015-05-24 09:10:05", "66.249.79.133", "146");
INSERT INTO `wp_rg_form_view` VALUES("12267", "3", "2015-05-24 10:09:10", "202.46.52.147", "153");
INSERT INTO `wp_rg_form_view` VALUES("12268", "3", "2015-05-24 11:01:18", "66.249.79.120", "184");
INSERT INTO `wp_rg_form_view` VALUES("12269", "3", "2015-05-24 12:02:15", "66.249.69.61", "210");
INSERT INTO `wp_rg_form_view` VALUES("12270", "6", "2015-05-24 12:57:18", "66.249.69.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("12271", "3", "2015-05-24 13:00:36", "66.249.69.53", "225");
INSERT INTO `wp_rg_form_view` VALUES("12272", "3", "2015-05-24 14:02:40", "66.249.69.53", "180");
INSERT INTO `wp_rg_form_view` VALUES("12273", "3", "2015-05-24 15:01:51", "202.46.49.130", "140");
INSERT INTO `wp_rg_form_view` VALUES("12274", "3", "2015-05-24 16:00:23", "202.46.51.169", "192");
INSERT INTO `wp_rg_form_view` VALUES("12275", "3", "2015-05-24 17:03:43", "66.249.69.61", "118");
INSERT INTO `wp_rg_form_view` VALUES("12276", "3", "2015-05-24 18:09:10", "202.46.52.173", "1536");
INSERT INTO `wp_rg_form_view` VALUES("12277", "6", "2015-05-24 18:18:57", "157.55.39.181", "5");
INSERT INTO `wp_rg_form_view` VALUES("12278", "3", "2015-05-24 19:00:50", "66.249.69.61", "407");
INSERT INTO `wp_rg_form_view` VALUES("12279", "7", "2015-05-24 19:12:25", "82.208.160.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("12280", "3", "2015-05-24 20:01:14", "66.249.69.45", "137");
INSERT INTO `wp_rg_form_view` VALUES("12281", "3", "2015-05-24 21:01:24", "66.249.69.53", "265");
INSERT INTO `wp_rg_form_view` VALUES("12282", "1", "2015-05-24 21:08:20", "125.71.40.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("12283", "2", "2015-05-24 21:46:41", "66.249.64.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("12284", "3", "2015-05-24 22:03:20", "202.46.58.202", "203");
INSERT INTO `wp_rg_form_view` VALUES("12285", "3", "2015-05-24 23:01:50", "202.46.56.97", "111");
INSERT INTO `wp_rg_form_view` VALUES("12286", "3", "2015-05-25 00:00:23", "202.46.58.58", "163");
INSERT INTO `wp_rg_form_view` VALUES("12287", "3", "2015-05-25 01:10:37", "202.46.54.184", "205");
INSERT INTO `wp_rg_form_view` VALUES("12288", "3", "2015-05-25 02:09:10", "202.46.58.210", "131");
INSERT INTO `wp_rg_form_view` VALUES("12289", "3", "2015-05-25 03:07:42", "202.46.48.210", "160");
INSERT INTO `wp_rg_form_view` VALUES("12290", "3", "2015-05-25 04:06:08", "66.249.69.53", "194");
INSERT INTO `wp_rg_form_view` VALUES("12291", "6", "2015-05-25 04:41:22", "66.249.69.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("12292", "3", "2015-05-25 05:00:10", "66.249.69.61", "241");
INSERT INTO `wp_rg_form_view` VALUES("12293", "6", "2015-05-25 05:33:04", "66.249.69.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("12294", "3", "2015-05-25 06:03:18", "202.46.50.124", "249");
INSERT INTO `wp_rg_form_view` VALUES("12295", "3", "2015-05-25 07:00:01", "66.249.69.45", "173");
INSERT INTO `wp_rg_form_view` VALUES("12296", "3", "2015-05-25 08:00:26", "202.46.50.155", "130");
INSERT INTO `wp_rg_form_view` VALUES("12297", "6", "2015-05-25 08:48:12", "66.249.69.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("12298", "3", "2015-05-25 09:01:48", "66.249.69.53", "289");
INSERT INTO `wp_rg_form_view` VALUES("12299", "3", "2015-05-25 10:01:41", "66.249.69.45", "280");
INSERT INTO `wp_rg_form_view` VALUES("12300", "3", "2015-05-25 11:01:38", "66.249.69.45", "324");
INSERT INTO `wp_rg_form_view` VALUES("12301", "2", "2015-05-25 11:31:43", "89.234.157.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("12302", "3", "2015-05-25 12:01:39", "66.249.69.45", "304");
INSERT INTO `wp_rg_form_view` VALUES("12303", "3", "2015-05-25 13:01:30", "66.249.79.146", "278");
INSERT INTO `wp_rg_form_view` VALUES("12304", "6", "2015-05-25 13:13:02", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12305", "3", "2015-05-25 14:01:10", "66.249.79.133", "288");
INSERT INTO `wp_rg_form_view` VALUES("12306", "3", "2015-05-25 15:00:05", "66.249.79.120", "308");
INSERT INTO `wp_rg_form_view` VALUES("12307", "1", "2015-05-25 15:27:30", "94.136.142.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("12308", "3", "2015-05-25 16:01:03", "202.46.53.124", "570");
INSERT INTO `wp_rg_form_view` VALUES("12309", "1", "2015-05-25 16:26:29", "45.59.185.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("12310", "3", "2015-05-25 17:00:46", "66.249.79.120", "357");
INSERT INTO `wp_rg_form_view` VALUES("12311", "3", "2015-05-25 18:03:12", "66.249.79.133", "438");
INSERT INTO `wp_rg_form_view` VALUES("12312", "3", "2015-05-25 19:00:14", "66.249.79.133", "597");
INSERT INTO `wp_rg_form_view` VALUES("12313", "3", "2015-05-25 20:02:41", "66.249.79.120", "327");
INSERT INTO `wp_rg_form_view` VALUES("12314", "6", "2015-05-25 20:06:16", "202.46.51.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("12315", "3", "2015-05-25 21:01:31", "66.249.79.133", "409");
INSERT INTO `wp_rg_form_view` VALUES("12316", "3", "2015-05-25 22:02:09", "66.249.79.133", "278");
INSERT INTO `wp_rg_form_view` VALUES("12317", "3", "2015-05-25 23:01:50", "202.46.49.130", "357");
INSERT INTO `wp_rg_form_view` VALUES("12318", "3", "2015-05-26 00:00:23", "202.46.52.41", "267");
INSERT INTO `wp_rg_form_view` VALUES("12319", "3", "2015-05-26 01:00:29", "66.249.79.133", "292");
INSERT INTO `wp_rg_form_view` VALUES("12320", "3", "2015-05-26 02:01:11", "66.249.79.120", "183");
INSERT INTO `wp_rg_form_view` VALUES("12321", "3", "2015-05-26 03:01:21", "66.249.79.120", "210");
INSERT INTO `wp_rg_form_view` VALUES("12322", "3", "2015-05-26 04:01:18", "66.249.79.120", "265");
INSERT INTO `wp_rg_form_view` VALUES("12323", "3", "2015-05-26 05:01:13", "66.249.79.120", "224");
INSERT INTO `wp_rg_form_view` VALUES("12324", "3", "2015-05-26 06:01:09", "66.249.79.146", "226");
INSERT INTO `wp_rg_form_view` VALUES("12325", "3", "2015-05-26 07:00:49", "68.180.228.245", "254");
INSERT INTO `wp_rg_form_view` VALUES("12326", "3", "2015-05-26 08:00:23", "202.46.51.161", "188");
INSERT INTO `wp_rg_form_view` VALUES("12327", "3", "2015-05-26 09:07:10", "66.249.79.133", "211");
INSERT INTO `wp_rg_form_view` VALUES("12328", "1", "2015-05-26 09:40:37", "91.200.12.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("12329", "3", "2015-05-26 10:04:43", "66.249.79.120", "169");
INSERT INTO `wp_rg_form_view` VALUES("12330", "3", "2015-05-26 11:02:10", "66.249.79.146", "197");
INSERT INTO `wp_rg_form_view` VALUES("12331", "3", "2015-05-26 12:02:10", "66.249.79.120", "191");
INSERT INTO `wp_rg_form_view` VALUES("12332", "3", "2015-05-26 13:02:10", "66.249.79.146", "196");
INSERT INTO `wp_rg_form_view` VALUES("12333", "3", "2015-05-26 14:01:07", "66.249.79.133", "124");
INSERT INTO `wp_rg_form_view` VALUES("12334", "3", "2015-05-26 15:01:50", "202.46.48.131", "182");
INSERT INTO `wp_rg_form_view` VALUES("12335", "1", "2015-05-26 15:50:18", "184.66.28.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("12336", "3", "2015-05-26 16:00:22", "202.46.53.201", "257");
INSERT INTO `wp_rg_form_view` VALUES("12337", "6", "2015-05-26 16:10:06", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12338", "3", "2015-05-26 17:03:06", "66.249.79.133", "190");
INSERT INTO `wp_rg_form_view` VALUES("12339", "3", "2015-05-26 18:02:46", "66.249.79.133", "101");
INSERT INTO `wp_rg_form_view` VALUES("12340", "2", "2015-05-26 18:47:41", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12341", "3", "2015-05-26 19:02:26", "66.249.79.133", "236");
INSERT INTO `wp_rg_form_view` VALUES("12342", "3", "2015-05-26 20:05:07", "66.249.79.120", "126");
INSERT INTO `wp_rg_form_view` VALUES("12343", "3", "2015-05-26 21:03:03", "68.180.228.245", "184");
INSERT INTO `wp_rg_form_view` VALUES("12344", "3", "2015-05-26 22:01:13", "66.249.79.120", "211");
INSERT INTO `wp_rg_form_view` VALUES("12345", "3", "2015-05-26 23:01:50", "202.46.52.18", "153");
INSERT INTO `wp_rg_form_view` VALUES("12346", "1", "2015-05-26 23:47:28", "72.143.232.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("12347", "3", "2015-05-27 00:00:23", "202.46.56.210", "176");
INSERT INTO `wp_rg_form_view` VALUES("12348", "2", "2015-05-27 00:53:48", "96.44.189.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("12349", "3", "2015-05-27 01:09:58", "66.249.79.146", "119");
INSERT INTO `wp_rg_form_view` VALUES("12350", "6", "2015-05-27 01:10:38", "202.46.48.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12351", "3", "2015-05-27 02:09:09", "202.46.48.205", "127");
INSERT INTO `wp_rg_form_view` VALUES("12352", "2", "2015-05-27 02:44:16", "202.46.53.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("12353", "3", "2015-05-27 03:01:57", "66.249.79.133", "103");
INSERT INTO `wp_rg_form_view` VALUES("12354", "3", "2015-05-27 04:06:13", "202.46.52.144", "3507");
INSERT INTO `wp_rg_form_view` VALUES("12355", "6", "2015-05-27 04:53:08", "207.46.13.8", "11");
INSERT INTO `wp_rg_form_view` VALUES("12356", "3", "2015-05-27 05:00:00", "157.55.39.195", "1389");
INSERT INTO `wp_rg_form_view` VALUES("12357", "6", "2015-05-27 05:00:31", "157.55.39.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("12358", "3", "2015-05-27 06:03:17", "202.46.55.175", "461");
INSERT INTO `wp_rg_form_view` VALUES("12359", "7", "2015-05-27 06:34:48", "128.187.97.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("12360", "2", "2015-05-27 06:34:57", "128.187.97.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("12361", "1", "2015-05-27 06:34:58", "128.187.97.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("12362", "5", "2015-05-27 06:36:14", "128.187.97.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("12363", "3", "2015-05-27 07:00:36", "68.180.228.245", "55");
INSERT INTO `wp_rg_form_view` VALUES("12364", "3", "2015-05-27 08:00:24", "202.46.49.209", "64");
INSERT INTO `wp_rg_form_view` VALUES("12365", "3", "2015-05-27 09:10:42", "202.46.56.91", "65");
INSERT INTO `wp_rg_form_view` VALUES("12366", "3", "2015-05-27 10:09:10", "202.46.55.195", "51");
INSERT INTO `wp_rg_form_view` VALUES("12367", "3", "2015-05-27 11:07:42", "202.46.51.86", "1461");
INSERT INTO `wp_rg_form_view` VALUES("12368", "3", "2015-05-27 12:06:13", "202.46.48.201", "50");
INSERT INTO `wp_rg_form_view` VALUES("12369", "3", "2015-05-27 13:04:45", "202.46.53.197", "142");
INSERT INTO `wp_rg_form_view` VALUES("12370", "1", "2015-05-27 13:13:55", "45.55.133.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("12371", "2", "2015-05-27 13:13:56", "45.55.133.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("12372", "3", "2015-05-27 14:03:18", "202.46.52.110", "61");
INSERT INTO `wp_rg_form_view` VALUES("12373", "3", "2015-05-27 15:01:49", "202.46.57.182", "79");
INSERT INTO `wp_rg_form_view` VALUES("12374", "6", "2015-05-27 15:02:28", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12375", "3", "2015-05-27 16:00:23", "202.46.48.193", "68");
INSERT INTO `wp_rg_form_view` VALUES("12376", "3", "2015-05-27 17:10:37", "202.46.53.149", "90");
INSERT INTO `wp_rg_form_view` VALUES("12377", "3", "2015-05-27 18:00:07", "24.69.222.231", "248");
INSERT INTO `wp_rg_form_view` VALUES("12378", "3", "2015-05-27 19:07:41", "202.46.53.54", "78");
INSERT INTO `wp_rg_form_view` VALUES("12379", "6", "2015-05-27 19:49:48", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12380", "3", "2015-05-27 20:06:13", "202.46.53.160", "126");
INSERT INTO `wp_rg_form_view` VALUES("12381", "6", "2015-05-27 20:20:08", "188.165.15.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("12382", "3", "2015-05-27 21:04:46", "202.46.53.200", "357");
INSERT INTO `wp_rg_form_view` VALUES("12383", "1", "2015-05-27 21:37:28", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("12384", "3", "2015-05-27 22:03:18", "202.46.48.96", "73");
INSERT INTO `wp_rg_form_view` VALUES("12385", "1", "2015-05-27 22:42:59", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12386", "5", "2015-05-27 22:56:58", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12387", "3", "2015-05-27 23:01:50", "202.46.52.210", "83");
INSERT INTO `wp_rg_form_view` VALUES("12388", "3", "2015-05-28 00:00:21", "202.46.56.14", "83");
INSERT INTO `wp_rg_form_view` VALUES("12389", "3", "2015-05-28 01:10:38", "202.46.55.154", "57");
INSERT INTO `wp_rg_form_view` VALUES("12390", "3", "2015-05-28 02:09:09", "202.46.51.192", "36");
INSERT INTO `wp_rg_form_view` VALUES("12391", "3", "2015-05-28 03:19:31", "202.46.51.170", "56");
INSERT INTO `wp_rg_form_view` VALUES("12392", "1", "2015-05-28 03:35:25", "50.7.192.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("12393", "3", "2015-05-28 04:06:13", "202.46.58.133", "56");
INSERT INTO `wp_rg_form_view` VALUES("12394", "3", "2015-05-28 05:04:46", "202.46.49.141", "69");
INSERT INTO `wp_rg_form_view` VALUES("12395", "7", "2015-05-28 05:20:24", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12396", "3", "2015-05-28 06:03:18", "202.46.52.158", "57");
INSERT INTO `wp_rg_form_view` VALUES("12397", "3", "2015-05-28 07:01:50", "202.46.58.96", "70");
INSERT INTO `wp_rg_form_view` VALUES("12398", "3", "2015-05-28 08:00:22", "202.46.55.138", "2229");
INSERT INTO `wp_rg_form_view` VALUES("12399", "6", "2015-05-28 08:32:49", "144.76.153.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("12400", "3", "2015-05-28 09:10:36", "202.46.54.203", "41");
INSERT INTO `wp_rg_form_view` VALUES("12401", "3", "2015-05-28 10:09:08", "202.46.48.193", "116");
INSERT INTO `wp_rg_form_view` VALUES("12402", "2", "2015-05-28 10:53:07", "157.55.39.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("12403", "1", "2015-05-28 10:53:08", "157.55.39.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("12404", "3", "2015-05-28 11:01:57", "66.249.79.146", "435");
INSERT INTO `wp_rg_form_view` VALUES("12405", "3", "2015-05-28 12:01:00", "142.4.214.124", "1016");
INSERT INTO `wp_rg_form_view` VALUES("12406", "7", "2015-05-28 12:31:56", "157.55.39.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("12407", "3", "2015-05-28 13:00:13", "142.4.214.124", "1034");
INSERT INTO `wp_rg_form_view` VALUES("12408", "3", "2015-05-28 14:03:18", "202.46.57.198", "59");
INSERT INTO `wp_rg_form_view` VALUES("12409", "3", "2015-05-28 15:01:49", "202.46.52.79", "37");
INSERT INTO `wp_rg_form_view` VALUES("12410", "3", "2015-05-28 16:00:21", "202.46.51.112", "107");
INSERT INTO `wp_rg_form_view` VALUES("12411", "3", "2015-05-28 17:00:42", "68.180.228.245", "201");
INSERT INTO `wp_rg_form_view` VALUES("12412", "1", "2015-05-28 17:06:47", "157.56.2.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("12413", "7", "2015-05-28 17:06:49", "157.56.2.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("12414", "2", "2015-05-28 17:07:10", "157.56.2.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("12415", "3", "2015-05-28 18:02:46", "66.249.79.133", "216");
INSERT INTO `wp_rg_form_view` VALUES("12416", "3", "2015-05-28 19:01:09", "66.249.79.120", "182");
INSERT INTO `wp_rg_form_view` VALUES("12417", "2", "2015-05-28 19:47:55", "89.105.194.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("12418", "3", "2015-05-28 20:06:12", "202.46.52.151", "86");
INSERT INTO `wp_rg_form_view` VALUES("12419", "3", "2015-05-28 21:04:47", "202.46.52.100", "98");
INSERT INTO `wp_rg_form_view` VALUES("12420", "3", "2015-05-28 22:15:02", "202.46.49.96", "76");
INSERT INTO `wp_rg_form_view` VALUES("12421", "6", "2015-05-28 22:43:42", "5.9.106.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("12422", "3", "2015-05-28 23:02:05", "202.46.51.11", "106");
INSERT INTO `wp_rg_form_view` VALUES("12423", "3", "2015-05-29 00:00:25", "68.180.228.245", "816");
INSERT INTO `wp_rg_form_view` VALUES("12424", "7", "2015-05-29 00:03:17", "194.181.107.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("12425", "2", "2015-05-29 00:03:46", "194.181.107.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("12426", "1", "2015-05-29 00:03:48", "194.181.107.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("12427", "5", "2015-05-29 00:20:37", "194.181.107.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("12428", "3", "2015-05-29 01:10:36", "202.46.49.191", "89");
INSERT INTO `wp_rg_form_view` VALUES("12429", "3", "2015-05-29 02:20:09", "68.180.228.245", "148");
INSERT INTO `wp_rg_form_view` VALUES("12430", "3", "2015-05-29 03:01:28", "157.55.39.44", "11390");
INSERT INTO `wp_rg_form_view` VALUES("12431", "6", "2015-05-29 03:28:10", "157.55.39.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("12432", "3", "2015-05-29 04:03:20", "66.249.67.146", "336");
INSERT INTO `wp_rg_form_view` VALUES("12433", "3", "2015-05-29 05:03:32", "66.249.67.146", "146");
INSERT INTO `wp_rg_form_view` VALUES("12434", "3", "2015-05-29 06:00:52", "66.249.67.133", "191");
INSERT INTO `wp_rg_form_view` VALUES("12435", "3", "2015-05-29 07:01:56", "202.46.50.153", "192");
INSERT INTO `wp_rg_form_view` VALUES("12436", "2", "2015-05-29 07:34:33", "23.95.241.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("12437", "3", "2015-05-29 08:00:20", "202.46.49.79", "153");
INSERT INTO `wp_rg_form_view` VALUES("12438", "3", "2015-05-29 09:04:20", "66.249.67.120", "2128");
INSERT INTO `wp_rg_form_view` VALUES("12439", "3", "2015-05-29 10:00:04", "188.40.109.147", "122");
INSERT INTO `wp_rg_form_view` VALUES("12440", "3", "2015-05-29 11:00:25", "188.165.15.32", "47");
INSERT INTO `wp_rg_form_view` VALUES("12441", "3", "2015-05-29 12:06:12", "202.46.53.192", "144");
INSERT INTO `wp_rg_form_view` VALUES("12442", "3", "2015-05-29 13:02:18", "66.249.67.146", "185");
INSERT INTO `wp_rg_form_view` VALUES("12443", "3", "2015-05-29 14:04:34", "66.249.67.120", "160");
INSERT INTO `wp_rg_form_view` VALUES("12444", "3", "2015-05-29 15:00:57", "66.249.79.146", "151");
INSERT INTO `wp_rg_form_view` VALUES("12445", "3", "2015-05-29 16:01:15", "66.249.79.120", "369");
INSERT INTO `wp_rg_form_view` VALUES("12446", "3", "2015-05-29 17:03:43", "66.249.79.146", "424");
INSERT INTO `wp_rg_form_view` VALUES("12447", "3", "2015-05-29 18:00:12", "68.180.228.245", "188");
INSERT INTO `wp_rg_form_view` VALUES("12448", "3", "2015-05-29 19:02:53", "66.249.79.133", "317");
INSERT INTO `wp_rg_form_view` VALUES("12449", "3", "2015-05-29 20:00:17", "136.243.5.87", "1323");
INSERT INTO `wp_rg_form_view` VALUES("12450", "3", "2015-05-29 21:00:16", "136.243.5.87", "3923");
INSERT INTO `wp_rg_form_view` VALUES("12451", "3", "2015-05-29 22:00:05", "157.55.39.195", "5165");
INSERT INTO `wp_rg_form_view` VALUES("12452", "6", "2015-05-29 22:08:28", "157.55.39.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("12453", "3", "2015-05-29 23:00:00", "157.55.39.181", "5576");
INSERT INTO `wp_rg_form_view` VALUES("12454", "7", "2015-05-29 23:01:38", "207.46.13.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("12455", "6", "2015-05-29 23:02:07", "157.55.39.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("12456", "3", "2015-05-30 00:00:00", "207.46.13.147", "6946");
INSERT INTO `wp_rg_form_view` VALUES("12457", "6", "2015-05-30 00:06:13", "157.55.39.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("12458", "1", "2015-05-30 00:39:29", "185.75.56.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("12459", "2", "2015-05-30 00:39:33", "185.75.56.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("12460", "7", "2015-05-30 00:39:52", "185.75.56.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("12461", "3", "2015-05-30 01:00:14", "157.55.39.181", "4024");
INSERT INTO `wp_rg_form_view` VALUES("12462", "3", "2015-05-30 02:00:03", "207.46.13.149", "6700");
INSERT INTO `wp_rg_form_view` VALUES("12463", "1", "2015-05-30 02:03:06", "24.108.129.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("12464", "6", "2015-05-30 02:12:17", "207.46.13.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("12465", "3", "2015-05-30 03:00:00", "207.46.13.147", "6278");
INSERT INTO `wp_rg_form_view` VALUES("12466", "6", "2015-05-30 03:20:10", "157.55.39.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("12467", "3", "2015-05-30 04:00:22", "207.46.13.147", "6002");
INSERT INTO `wp_rg_form_view` VALUES("12468", "6", "2015-05-30 04:09:35", "157.55.39.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("12469", "1", "2015-05-30 04:40:50", "50.7.192.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("12470", "7", "2015-05-30 04:43:45", "37.213.110.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("12471", "3", "2015-05-30 05:00:11", "157.55.39.195", "5727");
INSERT INTO `wp_rg_form_view` VALUES("12472", "6", "2015-05-30 05:05:29", "207.46.13.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("12473", "3", "2015-05-30 06:00:00", "207.46.13.149", "6491");
INSERT INTO `wp_rg_form_view` VALUES("12474", "6", "2015-05-30 06:32:27", "207.46.13.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("12475", "3", "2015-05-30 07:00:00", "207.46.13.147", "5987");
INSERT INTO `wp_rg_form_view` VALUES("12476", "6", "2015-05-30 07:13:36", "157.55.39.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("12477", "3", "2015-05-30 08:00:00", "157.55.39.195", "5789");
INSERT INTO `wp_rg_form_view` VALUES("12478", "3", "2015-05-30 09:00:00", "157.55.39.184", "4893");
INSERT INTO `wp_rg_form_view` VALUES("12479", "3", "2015-05-30 10:00:03", "157.55.39.195", "6374");
INSERT INTO `wp_rg_form_view` VALUES("12480", "6", "2015-05-30 10:49:02", "157.55.39.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("12481", "3", "2015-05-30 11:00:00", "207.46.13.149", "5302");
INSERT INTO `wp_rg_form_view` VALUES("12482", "6", "2015-05-30 11:01:38", "207.46.13.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("12483", "3", "2015-05-30 12:00:33", "157.55.39.182", "4446");
INSERT INTO `wp_rg_form_view` VALUES("12484", "6", "2015-05-30 12:11:11", "207.46.13.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("12485", "3", "2015-05-30 13:00:00", "157.55.39.195", "5248");
INSERT INTO `wp_rg_form_view` VALUES("12486", "6", "2015-05-30 13:00:12", "157.55.39.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("12487", "3", "2015-05-30 14:00:12", "157.55.39.195", "6140");
INSERT INTO `wp_rg_form_view` VALUES("12488", "6", "2015-05-30 14:30:15", "66.249.79.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("12489", "3", "2015-05-30 15:00:00", "207.46.13.149", "9292");
INSERT INTO `wp_rg_form_view` VALUES("12490", "6", "2015-05-30 15:00:01", "207.46.13.149", "9");
INSERT INTO `wp_rg_form_view` VALUES("12491", "3", "2015-05-30 16:00:07", "207.46.13.149", "6839");
INSERT INTO `wp_rg_form_view` VALUES("12492", "6", "2015-05-30 16:26:04", "157.55.39.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("12493", "3", "2015-05-30 17:00:04", "157.55.39.181", "7307");
INSERT INTO `wp_rg_form_view` VALUES("12494", "6", "2015-05-30 17:01:34", "157.55.39.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("12495", "7", "2015-05-30 17:02:18", "176.31.126.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("12496", "2", "2015-05-30 17:02:47", "176.31.126.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("12497", "1", "2015-05-30 17:02:53", "176.31.126.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("12498", "5", "2015-05-30 17:07:05", "176.31.126.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("12499", "3", "2015-05-30 18:00:00", "207.46.13.147", "4017");
INSERT INTO `wp_rg_form_view` VALUES("12500", "3", "2015-05-30 19:00:15", "157.55.39.181", "4566");
INSERT INTO `wp_rg_form_view` VALUES("12501", "6", "2015-05-30 19:11:27", "207.46.13.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("12502", "1", "2015-05-30 19:47:14", "24.108.129.237", "2");
INSERT INTO `wp_rg_form_view` VALUES("12503", "3", "2015-05-30 20:00:00", "207.46.13.149", "7498");
INSERT INTO `wp_rg_form_view` VALUES("12504", "6", "2015-05-30 20:24:20", "157.55.39.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("12505", "3", "2015-05-30 21:00:00", "157.55.39.182", "6288");
INSERT INTO `wp_rg_form_view` VALUES("12506", "6", "2015-05-30 21:03:25", "207.46.13.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("12507", "3", "2015-05-30 22:00:21", "157.55.39.195", "4741");
INSERT INTO `wp_rg_form_view` VALUES("12508", "6", "2015-05-30 22:28:28", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12509", "3", "2015-05-30 23:00:02", "207.46.13.147", "6792");
INSERT INTO `wp_rg_form_view` VALUES("12510", "6", "2015-05-30 23:12:17", "207.46.13.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("12511", "3", "2015-05-31 00:00:01", "157.55.39.181", "5619");
INSERT INTO `wp_rg_form_view` VALUES("12512", "6", "2015-05-31 00:04:50", "207.46.13.147", "3");
INSERT INTO `wp_rg_form_view` VALUES("12513", "2", "2015-05-31 00:29:32", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("12514", "3", "2015-05-31 01:00:13", "157.55.39.195", "3739");
INSERT INTO `wp_rg_form_view` VALUES("12515", "2", "2015-05-31 01:10:52", "36.33.242.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("12516", "3", "2015-05-31 02:00:05", "157.55.39.181", "4214");
INSERT INTO `wp_rg_form_view` VALUES("12517", "3", "2015-05-31 03:00:10", "157.55.39.195", "3756");
INSERT INTO `wp_rg_form_view` VALUES("12518", "6", "2015-05-31 03:02:10", "157.55.39.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("12519", "3", "2015-05-31 04:00:15", "157.55.39.195", "1819");
INSERT INTO `wp_rg_form_view` VALUES("12520", "3", "2015-05-31 05:00:10", "207.46.13.149", "4034");
INSERT INTO `wp_rg_form_view` VALUES("12521", "6", "2015-05-31 05:44:16", "157.55.39.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("12522", "3", "2015-05-31 06:00:01", "207.46.13.149", "5970");
INSERT INTO `wp_rg_form_view` VALUES("12523", "6", "2015-05-31 06:21:39", "207.46.13.147", "3");
INSERT INTO `wp_rg_form_view` VALUES("12524", "3", "2015-05-31 07:00:00", "207.46.13.149", "8965");
INSERT INTO `wp_rg_form_view` VALUES("12525", "3", "2015-05-31 07:00:00", "207.46.13.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("12526", "7", "2015-05-31 07:13:13", "151.80.31.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("12527", "3", "2015-05-31 08:00:00", "207.46.13.149", "7114");
INSERT INTO `wp_rg_form_view` VALUES("12528", "6", "2015-05-31 08:11:40", "157.55.39.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("12529", "7", "2015-05-31 08:58:18", "191.238.33.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("12530", "2", "2015-05-31 08:58:43", "191.238.33.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("12531", "1", "2015-05-31 08:58:49", "191.238.33.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("12532", "3", "2015-05-31 09:00:01", "207.46.13.149", "5237");
INSERT INTO `wp_rg_form_view` VALUES("12533", "6", "2015-05-31 09:29:02", "157.55.39.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("12534", "3", "2015-05-31 10:00:01", "207.46.13.147", "2446");
INSERT INTO `wp_rg_form_view` VALUES("12535", "6", "2015-05-31 10:13:48", "207.46.13.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("12536", "3", "2015-05-31 11:00:05", "207.46.13.149", "6011");
INSERT INTO `wp_rg_form_view` VALUES("12537", "6", "2015-05-31 11:29:14", "207.46.13.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("12538", "3", "2015-05-31 12:00:00", "207.46.13.149", "5086");
INSERT INTO `wp_rg_form_view` VALUES("12539", "6", "2015-05-31 12:05:42", "207.46.13.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("12540", "3", "2015-05-31 13:00:00", "157.55.39.181", "5815");
INSERT INTO `wp_rg_form_view` VALUES("12541", "7", "2015-05-31 13:13:54", "197.242.98.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("12542", "2", "2015-05-31 13:14:01", "197.242.98.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("12543", "1", "2015-05-31 13:14:02", "197.242.98.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("12544", "6", "2015-05-31 13:19:53", "157.55.39.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("12545", "3", "2015-05-31 14:00:00", "68.180.228.245", "4784");
INSERT INTO `wp_rg_form_view` VALUES("12546", "6", "2015-05-31 14:02:06", "207.46.13.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("12547", "3", "2015-05-31 15:00:00", "157.55.39.181", "6733");
INSERT INTO `wp_rg_form_view` VALUES("12548", "6", "2015-05-31 15:23:09", "157.55.39.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("12549", "3", "2015-05-31 16:00:17", "66.249.79.133", "7168");
INSERT INTO `wp_rg_form_view` VALUES("12550", "6", "2015-05-31 16:12:17", "207.46.13.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("12551", "3", "2015-05-31 17:00:10", "157.55.39.195", "7080");
INSERT INTO `wp_rg_form_view` VALUES("12552", "6", "2015-05-31 17:17:00", "157.55.39.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("12553", "3", "2015-05-31 18:00:01", "157.55.39.195", "6360");
INSERT INTO `wp_rg_form_view` VALUES("12554", "2", "2015-05-31 18:04:56", "178.137.93.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("12555", "6", "2015-05-31 18:06:53", "157.55.39.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("12556", "3", "2015-05-31 19:00:05", "207.46.13.149", "9149");
INSERT INTO `wp_rg_form_view` VALUES("12557", "6", "2015-05-31 19:05:46", "157.55.39.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("12558", "3", "2015-05-31 20:00:01", "66.249.79.133", "7655");
INSERT INTO `wp_rg_form_view` VALUES("12559", "6", "2015-05-31 20:19:23", "207.46.13.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("12560", "3", "2015-05-31 21:00:14", "207.46.13.147", "7488");
INSERT INTO `wp_rg_form_view` VALUES("12561", "6", "2015-05-31 21:14:38", "157.55.39.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("12562", "3", "2015-05-31 22:00:00", "157.55.39.181", "4000");
INSERT INTO `wp_rg_form_view` VALUES("12563", "6", "2015-05-31 22:00:29", "207.46.13.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("12564", "3", "2015-05-31 23:00:04", "207.46.13.147", "2734");
INSERT INTO `wp_rg_form_view` VALUES("12565", "6", "2015-05-31 23:56:06", "207.46.13.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("12566", "3", "2015-06-01 00:00:08", "66.249.79.120", "3261");
INSERT INTO `wp_rg_form_view` VALUES("12567", "2", "2015-06-01 00:19:15", "37.57.231.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("12568", "3", "2015-06-01 01:00:03", "66.249.79.146", "5006");
INSERT INTO `wp_rg_form_view` VALUES("12569", "6", "2015-06-01 01:57:26", "157.55.39.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("12570", "3", "2015-06-01 02:00:00", "66.249.79.133", "7263");
INSERT INTO `wp_rg_form_view` VALUES("12571", "6", "2015-06-01 02:57:27", "157.55.39.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("12572", "3", "2015-06-01 03:00:06", "157.55.39.182", "3903");
INSERT INTO `wp_rg_form_view` VALUES("12573", "6", "2015-06-01 03:01:01", "157.55.39.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("12574", "3", "2015-06-01 04:03:21", "66.249.79.120", "193");
INSERT INTO `wp_rg_form_view` VALUES("12575", "3", "2015-06-01 05:01:46", "157.55.39.181", "200");
INSERT INTO `wp_rg_form_view` VALUES("12576", "3", "2015-06-01 06:01:11", "66.249.67.133", "670");
INSERT INTO `wp_rg_form_view` VALUES("12577", "6", "2015-06-01 06:43:11", "207.46.13.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("12578", "1", "2015-06-01 06:58:07", "104.245.98.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("12579", "3", "2015-06-01 07:01:22", "68.180.228.245", "459");
INSERT INTO `wp_rg_form_view` VALUES("12580", "3", "2015-06-01 08:00:57", "157.55.39.195", "873");
INSERT INTO `wp_rg_form_view` VALUES("12581", "3", "2015-06-01 09:00:05", "66.249.67.120", "500");
INSERT INTO `wp_rg_form_view` VALUES("12582", "6", "2015-06-01 09:44:13", "207.46.13.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("12583", "3", "2015-06-01 10:01:23", "66.249.67.133", "214");
INSERT INTO `wp_rg_form_view` VALUES("12584", "3", "2015-06-01 11:00:37", "66.249.67.120", "543");
INSERT INTO `wp_rg_form_view` VALUES("12585", "3", "2015-06-01 12:00:13", "198.27.82.152", "2361");
INSERT INTO `wp_rg_form_view` VALUES("12586", "3", "2015-06-01 13:00:02", "198.27.82.152", "772");
INSERT INTO `wp_rg_form_view` VALUES("12587", "6", "2015-06-01 13:13:47", "198.27.82.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("12588", "3", "2015-06-01 14:00:05", "66.249.79.133", "230");
INSERT INTO `wp_rg_form_view` VALUES("12589", "5", "2015-06-01 14:26:27", "100.43.85.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("12590", "3", "2015-06-01 15:02:47", "66.249.79.146", "344");
INSERT INTO `wp_rg_form_view` VALUES("12591", "3", "2015-06-01 16:01:13", "66.249.79.133", "321");
INSERT INTO `wp_rg_form_view` VALUES("12592", "3", "2015-06-01 17:01:16", "66.249.79.133", "321");
INSERT INTO `wp_rg_form_view` VALUES("12593", "1", "2015-06-01 17:07:14", "221.237.17.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("12594", "3", "2015-06-01 18:02:00", "66.249.79.133", "185");
INSERT INTO `wp_rg_form_view` VALUES("12595", "1", "2015-06-01 18:12:18", "104.245.98.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("12596", "3", "2015-06-01 19:01:30", "66.249.79.146", "185");
INSERT INTO `wp_rg_form_view` VALUES("12597", "3", "2015-06-01 20:01:55", "66.249.79.146", "358");
INSERT INTO `wp_rg_form_view` VALUES("12598", "1", "2015-06-01 20:05:51", "205.144.165.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("12599", "3", "2015-06-01 21:00:27", "66.249.79.146", "337");
INSERT INTO `wp_rg_form_view` VALUES("12600", "1", "2015-06-01 21:32:46", "216.232.157.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("12601", "3", "2015-06-01 22:02:01", "66.249.79.133", "155");
INSERT INTO `wp_rg_form_view` VALUES("12602", "3", "2015-06-01 23:02:25", "66.249.79.133", "262");
INSERT INTO `wp_rg_form_view` VALUES("12603", "3", "2015-06-02 00:00:18", "66.249.79.133", "266");
INSERT INTO `wp_rg_form_view` VALUES("12604", "3", "2015-06-02 01:00:42", "66.249.79.146", "512");
INSERT INTO `wp_rg_form_view` VALUES("12605", "7", "2015-06-02 01:54:14", "91.142.209.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("12606", "1", "2015-06-02 01:54:40", "91.142.209.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("12607", "2", "2015-06-02 01:54:53", "91.142.209.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("12608", "3", "2015-06-02 02:00:15", "24.68.45.213", "140");
INSERT INTO `wp_rg_form_view` VALUES("12609", "2", "2015-06-02 02:34:09", "24.108.88.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("12610", "3", "2015-06-02 03:04:01", "66.249.79.146", "178");
INSERT INTO `wp_rg_form_view` VALUES("12611", "3", "2015-06-02 04:00:37", "24.68.36.198", "728");
INSERT INTO `wp_rg_form_view` VALUES("12612", "7", "2015-06-02 04:55:11", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("12613", "5", "2015-06-02 04:55:22", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("12614", "2", "2015-06-02 04:55:49", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("12615", "3", "2015-06-02 05:02:18", "66.249.79.133", "5777");
INSERT INTO `wp_rg_form_view` VALUES("12616", "6", "2015-06-02 05:52:21", "207.46.13.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("12617", "3", "2015-06-02 06:00:11", "66.249.79.133", "200");
INSERT INTO `wp_rg_form_view` VALUES("12618", "3", "2015-06-02 07:00:35", "66.249.79.146", "201");
INSERT INTO `wp_rg_form_view` VALUES("12619", "3", "2015-06-02 08:06:38", "66.249.79.120", "128");
INSERT INTO `wp_rg_form_view` VALUES("12620", "3", "2015-06-02 09:15:35", "68.180.228.245", "24");
INSERT INTO `wp_rg_form_view` VALUES("12621", "3", "2015-06-02 10:41:51", "66.249.79.146", "64");
INSERT INTO `wp_rg_form_view` VALUES("12622", "3", "2015-06-02 11:03:47", "66.249.79.133", "145");
INSERT INTO `wp_rg_form_view` VALUES("12623", "3", "2015-06-02 12:01:33", "66.249.79.133", "1774");
INSERT INTO `wp_rg_form_view` VALUES("12624", "3", "2015-06-02 13:01:33", "66.249.79.120", "238");
INSERT INTO `wp_rg_form_view` VALUES("12625", "7", "2015-06-02 13:38:33", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12626", "3", "2015-06-02 14:06:54", "66.249.79.120", "286");
INSERT INTO `wp_rg_form_view` VALUES("12627", "3", "2015-06-02 15:00:48", "66.249.79.120", "244");
INSERT INTO `wp_rg_form_view` VALUES("12628", "3", "2015-06-02 16:00:56", "66.249.79.120", "177");
INSERT INTO `wp_rg_form_view` VALUES("12629", "1", "2015-06-02 16:15:05", "221.237.17.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("12630", "6", "2015-06-02 16:51:51", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12631", "3", "2015-06-02 17:01:26", "66.249.79.146", "313");
INSERT INTO `wp_rg_form_view` VALUES("12632", "3", "2015-06-02 18:07:15", "66.249.79.133", "502");
INSERT INTO `wp_rg_form_view` VALUES("12633", "7", "2015-06-02 18:44:49", "162.253.145.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("12634", "2", "2015-06-02 18:44:53", "162.253.145.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("12635", "1", "2015-06-02 18:44:53", "162.253.145.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("12636", "3", "2015-06-02 19:03:36", "217.69.133.229", "144");
INSERT INTO `wp_rg_form_view` VALUES("12637", "3", "2015-06-02 20:00:38", "66.249.79.133", "339");
INSERT INTO `wp_rg_form_view` VALUES("12638", "3", "2015-06-02 21:00:43", "66.249.79.133", "561");
INSERT INTO `wp_rg_form_view` VALUES("12639", "6", "2015-06-02 21:40:50", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("12640", "3", "2015-06-02 22:00:06", "198.27.82.147", "939");
INSERT INTO `wp_rg_form_view` VALUES("12641", "3", "2015-06-02 23:00:02", "66.249.79.120", "232");
INSERT INTO `wp_rg_form_view` VALUES("12642", "3", "2015-06-03 00:00:48", "66.249.79.120", "1144");
INSERT INTO `wp_rg_form_view` VALUES("12643", "3", "2015-06-03 01:00:54", "66.249.79.133", "57");
INSERT INTO `wp_rg_form_view` VALUES("12644", "3", "2015-06-03 02:00:37", "66.249.79.120", "1024");
INSERT INTO `wp_rg_form_view` VALUES("12645", "6", "2015-06-03 02:53:20", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("12646", "3", "2015-06-03 03:00:45", "207.46.13.30", "471");
INSERT INTO `wp_rg_form_view` VALUES("12647", "3", "2015-06-03 04:20:24", "67.2.86.50", "63");
INSERT INTO `wp_rg_form_view` VALUES("12648", "3", "2015-06-03 05:11:24", "68.180.228.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("12649", "3", "2015-06-03 06:05:00", "217.69.133.233", "42");
INSERT INTO `wp_rg_form_view` VALUES("12650", "3", "2015-06-03 07:05:59", "68.180.228.245", "17");
INSERT INTO `wp_rg_form_view` VALUES("12651", "3", "2015-06-03 08:19:16", "24.68.118.31", "48");
INSERT INTO `wp_rg_form_view` VALUES("12652", "1", "2015-06-03 08:21:28", "24.68.118.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("12653", "3", "2015-06-03 09:26:24", "37.57.231.213", "17");
INSERT INTO `wp_rg_form_view` VALUES("12654", "1", "2015-06-03 10:24:31", "104.193.10.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("12655", "3", "2015-06-03 10:24:31", "104.193.10.49", "92");
INSERT INTO `wp_rg_form_view` VALUES("12656", "3", "2015-06-03 11:28:22", "66.249.79.120", "8");
INSERT INTO `wp_rg_form_view` VALUES("12657", "3", "2015-06-03 12:31:14", "104.237.150.212", "93");
INSERT INTO `wp_rg_form_view` VALUES("12658", "3", "2015-06-03 13:02:50", "66.249.79.146", "172");
INSERT INTO `wp_rg_form_view` VALUES("12659", "1", "2015-06-03 14:05:45", "104.193.10.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("12660", "3", "2015-06-03 14:05:47", "104.193.10.51", "217");
INSERT INTO `wp_rg_form_view` VALUES("12661", "3", "2015-06-03 15:01:40", "68.180.228.245", "161");
INSERT INTO `wp_rg_form_view` VALUES("12662", "3", "2015-06-03 16:06:19", "66.249.79.133", "138");
INSERT INTO `wp_rg_form_view` VALUES("12663", "3", "2015-06-03 17:00:54", "66.249.79.146", "237");
INSERT INTO `wp_rg_form_view` VALUES("12664", "1", "2015-06-03 17:38:23", "184.69.177.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("12665", "3", "2015-06-03 18:00:24", "96.50.93.42", "592");
INSERT INTO `wp_rg_form_view` VALUES("12666", "7", "2015-06-03 18:54:33", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("12667", "3", "2015-06-03 19:17:47", "207.228.78.23", "22");
INSERT INTO `wp_rg_form_view` VALUES("12668", "3", "2015-06-03 20:29:19", "217.69.133.233", "75");
INSERT INTO `wp_rg_form_view` VALUES("12669", "3", "2015-06-03 21:08:25", "207.46.13.114", "1938");
INSERT INTO `wp_rg_form_view` VALUES("12670", "6", "2015-06-03 21:10:58", "207.46.13.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("12671", "1", "2015-06-03 21:20:18", "104.193.10.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("12672", "6", "2015-06-03 22:05:18", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("12673", "3", "2015-06-03 22:05:19", "217.69.133.227", "24");
INSERT INTO `wp_rg_form_view` VALUES("12674", "3", "2015-06-03 23:04:37", "68.180.228.245", "264");
INSERT INTO `wp_rg_form_view` VALUES("12675", "3", "2015-06-04 00:12:13", "96.54.170.31", "64");
INSERT INTO `wp_rg_form_view` VALUES("12676", "3", "2015-06-04 01:13:55", "220.181.108.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("12677", "3", "2015-06-04 02:03:34", "91.142.209.186", "202");
INSERT INTO `wp_rg_form_view` VALUES("12678", "7", "2015-06-04 02:04:26", "91.142.209.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("12679", "1", "2015-06-04 02:04:46", "91.142.209.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("12680", "2", "2015-06-04 02:04:53", "91.142.209.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("12681", "3", "2015-06-04 03:01:38", "151.80.31.151", "89");
INSERT INTO `wp_rg_form_view` VALUES("12682", "1", "2015-06-04 03:32:40", "24.69.50.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("12683", "2", "2015-06-04 03:36:52", "151.80.31.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("12684", "3", "2015-06-04 04:03:38", "174.1.22.18", "65");
INSERT INTO `wp_rg_form_view` VALUES("12685", "3", "2015-06-04 05:10:43", "50.68.48.210", "40");
INSERT INTO `wp_rg_form_view` VALUES("12686", "6", "2015-06-04 05:51:07", "207.46.13.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("12687", "3", "2015-06-04 06:03:38", "217.69.133.232", "42");
INSERT INTO `wp_rg_form_view` VALUES("12688", "3", "2015-06-04 07:39:54", "217.69.133.232", "322");
INSERT INTO `wp_rg_form_view` VALUES("12689", "3", "2015-06-04 08:12:25", "104.143.12.10", "33");
INSERT INTO `wp_rg_form_view` VALUES("12690", "3", "2015-06-04 09:16:51", "217.69.133.69", "15");
INSERT INTO `wp_rg_form_view` VALUES("12691", "3", "2015-06-04 09:16:51", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("12692", "2", "2015-06-04 10:02:56", "107.150.42.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("12693", "3", "2015-06-04 10:03:05", "107.150.42.34", "9");
INSERT INTO `wp_rg_form_view` VALUES("12694", "1", "2015-06-04 11:26:03", "54.153.96.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("12695", "3", "2015-06-04 11:26:06", "54.148.80.105", "40");
INSERT INTO `wp_rg_form_view` VALUES("12696", "3", "2015-06-04 12:26:50", "217.69.133.231", "17");
INSERT INTO `wp_rg_form_view` VALUES("12697", "3", "2015-06-04 13:48:57", "144.173.28.149", "78");
INSERT INTO `wp_rg_form_view` VALUES("12698", "3", "2015-06-04 14:00:11", "144.173.28.149", "81");
INSERT INTO `wp_rg_form_view` VALUES("12699", "1", "2015-06-04 14:02:19", "144.173.28.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("12700", "3", "2015-06-04 15:40:04", "217.69.133.230", "9");
INSERT INTO `wp_rg_form_view` VALUES("12701", "3", "2015-06-04 16:00:14", "45.59.22.11", "49");
INSERT INTO `wp_rg_form_view` VALUES("12702", "3", "2015-06-04 17:12:03", "96.50.93.42", "59");
INSERT INTO `wp_rg_form_view` VALUES("12703", "3", "2015-06-04 18:05:03", "198.168.138.78", "52");
INSERT INTO `wp_rg_form_view` VALUES("12704", "7", "2015-06-04 18:06:13", "198.168.138.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("12705", "3", "2015-06-04 19:55:17", "188.154.143.55", "32");
INSERT INTO `wp_rg_form_view` VALUES("12706", "3", "2015-06-04 20:24:14", "68.180.228.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("12707", "2", "2015-06-04 21:15:09", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12708", "3", "2015-06-04 21:15:10", "68.180.228.245", "41");
INSERT INTO `wp_rg_form_view` VALUES("12709", "3", "2015-06-04 22:06:05", "207.46.13.114", "64");
INSERT INTO `wp_rg_form_view` VALUES("12710", "3", "2015-06-04 23:01:57", "184.69.1.226", "17");
INSERT INTO `wp_rg_form_view` VALUES("12711", "3", "2015-06-05 01:52:39", "91.200.12.65", "18");
INSERT INTO `wp_rg_form_view` VALUES("12712", "3", "2015-06-05 02:02:48", "37.133.217.210", "225");
INSERT INTO `wp_rg_form_view` VALUES("12713", "7", "2015-06-05 02:03:48", "37.133.217.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("12714", "1", "2015-06-05 02:04:08", "37.133.217.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("12715", "2", "2015-06-05 02:04:17", "37.133.217.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("12716", "3", "2015-06-05 03:06:59", "207.46.13.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("12717", "3", "2015-06-05 04:15:15", "207.46.13.138", "16");
INSERT INTO `wp_rg_form_view` VALUES("12718", "3", "2015-06-05 05:13:30", "220.181.108.116", "32");
INSERT INTO `wp_rg_form_view` VALUES("12719", "2", "2015-06-05 05:47:36", "208.115.124.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12720", "3", "2015-06-05 06:04:44", "91.200.12.65", "26");
INSERT INTO `wp_rg_form_view` VALUES("12721", "7", "2015-06-05 06:40:46", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12722", "3", "2015-06-05 07:09:09", "207.46.13.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("12723", "3", "2015-06-05 08:47:18", "68.180.228.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("12724", "3", "2015-06-05 09:21:18", "186.154.203.45", "16");
INSERT INTO `wp_rg_form_view` VALUES("12725", "3", "2015-06-05 10:50:01", "68.180.228.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("12726", "3", "2015-06-05 11:03:22", "66.249.79.146", "25");
INSERT INTO `wp_rg_form_view` VALUES("12727", "3", "2015-06-05 12:13:45", "5.39.223.29", "200");
INSERT INTO `wp_rg_form_view` VALUES("12728", "7", "2015-06-05 12:18:20", "5.39.223.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("12729", "1", "2015-06-05 12:19:31", "5.39.223.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("12730", "2", "2015-06-05 12:19:53", "5.39.223.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("12731", "3", "2015-06-05 14:47:17", "136.243.17.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("12732", "3", "2015-06-05 15:49:07", "207.46.13.114", "16");
INSERT INTO `wp_rg_form_view` VALUES("12733", "3", "2015-06-05 16:21:33", "66.249.79.133", "39");
INSERT INTO `wp_rg_form_view` VALUES("12734", "3", "2015-06-05 16:21:33", "207.46.13.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("12735", "6", "2015-06-05 16:58:41", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12736", "3", "2015-06-05 17:03:29", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12737", "3", "2015-06-05 18:02:06", "75.156.34.154", "40");
INSERT INTO `wp_rg_form_view` VALUES("12738", "3", "2015-06-05 19:51:32", "151.80.31.154", "33");
INSERT INTO `wp_rg_form_view` VALUES("12739", "3", "2015-06-05 20:08:50", "151.80.31.154", "32");
INSERT INTO `wp_rg_form_view` VALUES("12740", "3", "2015-06-05 21:08:17", "151.80.31.154", "88");
INSERT INTO `wp_rg_form_view` VALUES("12741", "3", "2015-06-05 22:15:46", "207.46.13.138", "88");
INSERT INTO `wp_rg_form_view` VALUES("12742", "3", "2015-06-05 23:06:49", "151.80.31.154", "33");
INSERT INTO `wp_rg_form_view` VALUES("12743", "3", "2015-06-06 01:05:48", "68.180.228.245", "25");
INSERT INTO `wp_rg_form_view` VALUES("12744", "3", "2015-06-06 02:20:57", "96.50.64.163", "18");
INSERT INTO `wp_rg_form_view` VALUES("12745", "1", "2015-06-06 03:05:11", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12746", "3", "2015-06-06 03:05:13", "66.249.79.133", "32");
INSERT INTO `wp_rg_form_view` VALUES("12747", "3", "2015-06-06 04:01:22", "207.46.13.138", "40");
INSERT INTO `wp_rg_form_view` VALUES("12748", "3", "2015-06-06 05:05:56", "208.115.111.66", "17");
INSERT INTO `wp_rg_form_view` VALUES("12749", "3", "2015-06-06 06:33:33", "77.75.78.167", "8");
INSERT INTO `wp_rg_form_view` VALUES("12750", "3", "2015-06-06 09:04:32", "178.137.164.249", "16");
INSERT INTO `wp_rg_form_view` VALUES("12751", "3", "2015-06-06 10:08:46", "207.46.13.138", "16");
INSERT INTO `wp_rg_form_view` VALUES("12752", "3", "2015-06-06 11:35:15", "151.80.31.139", "8");
INSERT INTO `wp_rg_form_view` VALUES("12753", "3", "2015-06-06 12:31:02", "144.76.71.83", "112");
INSERT INTO `wp_rg_form_view` VALUES("12754", "1", "2015-06-06 12:56:12", "174.127.133.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("12755", "2", "2015-06-06 12:59:54", "174.127.133.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("12756", "3", "2015-06-06 13:02:19", "174.127.133.48", "161");
INSERT INTO `wp_rg_form_view` VALUES("12757", "7", "2015-06-06 13:05:21", "174.127.133.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("12758", "3", "2015-06-06 14:02:00", "207.46.13.114", "29");
INSERT INTO `wp_rg_form_view` VALUES("12759", "3", "2015-06-06 15:30:55", "108.180.49.91", "88");
INSERT INTO `wp_rg_form_view` VALUES("12760", "3", "2015-06-06 16:05:28", "68.180.228.245", "83");
INSERT INTO `wp_rg_form_view` VALUES("12761", "1", "2015-06-06 17:00:33", "174.127.133.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("12762", "3", "2015-06-06 17:00:33", "174.127.133.52", "101");
INSERT INTO `wp_rg_form_view` VALUES("12763", "3", "2015-06-06 18:58:28", "77.75.78.165", "8");
INSERT INTO `wp_rg_form_view` VALUES("12764", "3", "2015-06-06 19:07:24", "68.180.228.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("12765", "3", "2015-06-06 20:10:33", "77.75.78.165", "56");
INSERT INTO `wp_rg_form_view` VALUES("12766", "3", "2015-06-06 21:27:03", "216.232.155.96", "58");
INSERT INTO `wp_rg_form_view` VALUES("12767", "3", "2015-06-06 22:18:08", "220.181.108.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("12768", "1", "2015-06-06 23:16:52", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12769", "3", "2015-06-06 23:16:54", "68.180.228.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("12770", "3", "2015-06-07 00:00:52", "68.180.228.245", "16");
INSERT INTO `wp_rg_form_view` VALUES("12771", "3", "2015-06-07 02:47:24", "100.43.85.8", "7");
INSERT INTO `wp_rg_form_view` VALUES("12772", "3", "2015-06-07 03:59:02", "5.175.147.200", "7");
INSERT INTO `wp_rg_form_view` VALUES("12773", "3", "2015-06-07 04:57:56", "207.46.13.108", "7");
INSERT INTO `wp_rg_form_view` VALUES("12774", "3", "2015-06-07 07:39:58", "85.70.244.166", "7");
INSERT INTO `wp_rg_form_view` VALUES("12775", "2", "2015-06-07 09:31:11", "207.46.13.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("12776", "3", "2015-06-07 09:31:14", "207.46.13.138", "7");
INSERT INTO `wp_rg_form_view` VALUES("12777", "3", "2015-06-07 10:11:45", "207.46.13.108", "14");
INSERT INTO `wp_rg_form_view` VALUES("12778", "3", "2015-06-07 11:02:35", "91.200.12.19", "109");
INSERT INTO `wp_rg_form_view` VALUES("12779", "3", "2015-06-07 13:07:09", "151.80.31.139", "28");
INSERT INTO `wp_rg_form_view` VALUES("12780", "3", "2015-06-07 14:27:23", "95.37.36.155", "15");
INSERT INTO `wp_rg_form_view` VALUES("12781", "3", "2015-06-07 15:08:32", "68.180.228.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("12782", "3", "2015-06-07 16:02:57", "66.249.79.120", "7");
INSERT INTO `wp_rg_form_view` VALUES("12783", "3", "2015-06-07 17:43:26", "195.242.80.27", "7");
INSERT INTO `wp_rg_form_view` VALUES("12784", "3", "2015-06-07 18:04:23", "104.250.147.218", "50");
INSERT INTO `wp_rg_form_view` VALUES("12785", "7", "2015-06-07 18:04:27", "104.250.147.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("12786", "3", "2015-06-07 19:09:12", "37.24.55.192", "23");
INSERT INTO `wp_rg_form_view` VALUES("12787", "3", "2015-06-07 20:20:10", "68.180.228.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("12788", "3", "2015-06-07 21:58:04", "220.181.108.185", "7");
INSERT INTO `wp_rg_form_view` VALUES("12789", "3", "2015-06-07 22:02:43", "207.46.13.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("12790", "3", "2015-06-07 23:10:34", "216.232.155.208", "37");
INSERT INTO `wp_rg_form_view` VALUES("12791", "3", "2015-06-08 00:08:17", "207.46.13.108", "21");
INSERT INTO `wp_rg_form_view` VALUES("12792", "3", "2015-06-08 01:06:40", "192.227.207.139", "76");
INSERT INTO `wp_rg_form_view` VALUES("12793", "3", "2015-06-08 03:11:37", "100.43.85.8", "43");
INSERT INTO `wp_rg_form_view` VALUES("12794", "6", "2015-06-08 04:00:35", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12795", "3", "2015-06-08 04:00:35", "68.180.228.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("12796", "1", "2015-06-08 04:42:34", "91.200.12.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("12797", "3", "2015-06-08 05:40:06", "100.43.85.8", "15");
INSERT INTO `wp_rg_form_view` VALUES("12798", "3", "2015-06-08 06:08:06", "151.80.31.154", "106");
INSERT INTO `wp_rg_form_view` VALUES("12799", "3", "2015-06-08 07:06:42", "220.181.108.173", "21");
INSERT INTO `wp_rg_form_view` VALUES("12800", "3", "2015-06-08 08:11:30", "100.43.85.7", "21");
INSERT INTO `wp_rg_form_view` VALUES("12801", "3", "2015-06-08 09:04:12", "100.43.85.8", "21");
INSERT INTO `wp_rg_form_view` VALUES("12802", "3", "2015-06-08 10:01:00", "100.43.85.8", "21");
INSERT INTO `wp_rg_form_view` VALUES("12803", "3", "2015-06-08 11:34:03", "100.43.85.8", "15");
INSERT INTO `wp_rg_form_view` VALUES("12804", "3", "2015-06-08 12:00:28", "68.180.228.245", "21");
INSERT INTO `wp_rg_form_view` VALUES("12805", "3", "2015-06-08 13:11:30", "199.21.99.219", "8");
INSERT INTO `wp_rg_form_view` VALUES("12806", "3", "2015-06-08 14:09:44", "100.43.85.8", "7");
INSERT INTO `wp_rg_form_view` VALUES("12807", "3", "2015-06-08 16:36:31", "142.31.203.21", "15");
INSERT INTO `wp_rg_form_view` VALUES("12808", "3", "2015-06-08 17:10:40", "142.31.15.254", "59");
INSERT INTO `wp_rg_form_view` VALUES("12809", "1", "2015-06-08 17:15:35", "104.193.10.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("12810", "3", "2015-06-08 18:30:54", "96.54.174.155", "7");
INSERT INTO `wp_rg_form_view` VALUES("12811", "3", "2015-06-08 19:08:14", "94.249.242.85", "57");
INSERT INTO `wp_rg_form_view` VALUES("12812", "1", "2015-06-08 19:55:46", "66.207.205.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("12813", "3", "2015-06-08 20:23:50", "157.55.39.101", "7");
INSERT INTO `wp_rg_form_view` VALUES("12814", "3", "2015-06-08 21:02:26", "24.68.128.113", "192");
INSERT INTO `wp_rg_form_view` VALUES("12815", "3", "2015-06-08 23:11:04", "148.251.54.44", "22");
INSERT INTO `wp_rg_form_view` VALUES("12816", "3", "2015-06-09 00:10:00", "157.55.39.101", "15");
INSERT INTO `wp_rg_form_view` VALUES("12817", "3", "2015-06-09 01:12:10", "5.175.147.200", "15");
INSERT INTO `wp_rg_form_view` VALUES("12818", "3", "2015-06-09 02:19:03", "157.55.39.101", "35");
INSERT INTO `wp_rg_form_view` VALUES("12819", "3", "2015-06-09 03:17:11", "66.249.67.120", "21");
INSERT INTO `wp_rg_form_view` VALUES("12820", "3", "2015-06-09 04:00:40", "176.15.24.24", "100");
INSERT INTO `wp_rg_form_view` VALUES("12821", "3", "2015-06-09 05:04:32", "68.180.228.245", "14");
INSERT INTO `wp_rg_form_view` VALUES("12822", "3", "2015-06-09 06:24:33", "68.180.228.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("12823", "2", "2015-06-09 07:35:04", "78.189.238.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("12824", "3", "2015-06-09 07:35:10", "78.189.238.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("12825", "3", "2015-06-09 08:06:26", "75.154.232.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("12826", "3", "2015-06-09 09:04:47", "220.181.108.94", "7");
INSERT INTO `wp_rg_form_view` VALUES("12827", "3", "2015-06-09 12:02:10", "68.180.228.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("12828", "3", "2015-06-09 13:16:57", "24.68.128.113", "14");
INSERT INTO `wp_rg_form_view` VALUES("12829", "3", "2015-06-09 14:00:19", "202.46.50.97", "14");
INSERT INTO `wp_rg_form_view` VALUES("12830", "3", "2015-06-09 15:19:50", "24.68.128.113", "14");
INSERT INTO `wp_rg_form_view` VALUES("12831", "3", "2015-06-09 16:03:08", "24.68.25.67", "50");
INSERT INTO `wp_rg_form_view` VALUES("12832", "3", "2015-06-09 17:48:03", "68.180.228.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("12833", "3", "2015-06-09 18:00:56", "204.101.3.194", "123");
INSERT INTO `wp_rg_form_view` VALUES("12834", "3", "2015-06-09 19:00:29", "216.232.3.242", "57");
INSERT INTO `wp_rg_form_view` VALUES("12835", "1", "2015-06-09 19:10:15", "151.80.31.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("12836", "3", "2015-06-09 20:06:31", "96.50.101.128", "92");
INSERT INTO `wp_rg_form_view` VALUES("12837", "7", "2015-06-09 20:37:44", "151.80.31.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("12838", "3", "2015-06-09 21:28:00", "151.80.31.150", "10");
INSERT INTO `wp_rg_form_view` VALUES("12839", "3", "2015-06-09 22:00:04", "104.131.32.83", "128");
INSERT INTO `wp_rg_form_view` VALUES("12840", "1", "2015-06-09 22:00:04", "104.131.32.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("12841", "2", "2015-06-09 22:00:05", "104.131.32.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("12842", "3", "2015-06-09 23:11:05", "68.180.228.245", "106");
INSERT INTO `wp_rg_form_view` VALUES("12843", "2", "2015-06-10 00:30:42", "220.181.108.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("12844", "3", "2015-06-10 00:30:42", "220.181.108.166", "14");
INSERT INTO `wp_rg_form_view` VALUES("12845", "3", "2015-06-10 01:54:39", "157.55.39.101", "21");
INSERT INTO `wp_rg_form_view` VALUES("12846", "1", "2015-06-10 01:56:15", "220.181.108.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("12847", "3", "2015-06-10 02:25:24", "68.68.133.166", "21");
INSERT INTO `wp_rg_form_view` VALUES("12848", "3", "2015-06-10 03:03:35", "96.50.50.18", "56");
INSERT INTO `wp_rg_form_view` VALUES("12849", "3", "2015-06-10 04:30:30", "184.66.122.31", "30");
INSERT INTO `wp_rg_form_view` VALUES("12850", "3", "2015-06-10 06:47:34", "202.46.53.159", "56");
INSERT INTO `wp_rg_form_view` VALUES("12851", "3", "2015-06-10 07:11:03", "202.46.53.202", "32");
INSERT INTO `wp_rg_form_view` VALUES("12852", "3", "2015-06-10 08:28:52", "5.9.145.132", "7");
INSERT INTO `wp_rg_form_view` VALUES("12853", "3", "2015-06-10 09:25:31", "68.180.228.245", "14");
INSERT INTO `wp_rg_form_view` VALUES("12854", "7", "2015-06-10 10:10:59", "220.181.108.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("12855", "3", "2015-06-10 10:11:00", "220.181.108.152", "35");
INSERT INTO `wp_rg_form_view` VALUES("12856", "3", "2015-06-10 11:55:27", "188.165.15.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("12857", "3", "2015-06-10 12:20:47", "220.181.108.172", "22");
INSERT INTO `wp_rg_form_view` VALUES("12858", "3", "2015-06-10 13:37:26", "66.249.67.120", "15");
INSERT INTO `wp_rg_form_view` VALUES("12859", "3", "2015-06-10 14:03:46", "100.43.85.8", "30");
INSERT INTO `wp_rg_form_view` VALUES("12860", "3", "2015-06-10 15:12:56", "96.54.40.57", "7");
INSERT INTO `wp_rg_form_view` VALUES("12861", "3", "2015-06-10 16:42:30", "24.68.25.67", "14");
INSERT INTO `wp_rg_form_view` VALUES("12862", "3", "2015-06-10 17:03:09", "173.252.112.113", "141");
INSERT INTO `wp_rg_form_view` VALUES("12863", "3", "2015-06-10 18:47:11", "198.103.221.52", "66");
INSERT INTO `wp_rg_form_view` VALUES("12864", "3", "2015-06-10 19:11:29", "68.180.228.245", "46");
INSERT INTO `wp_rg_form_view` VALUES("12865", "3", "2015-06-10 20:01:54", "208.131.181.126", "61");
INSERT INTO `wp_rg_form_view` VALUES("12866", "7", "2015-06-10 20:59:41", "184.66.153.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("12867", "3", "2015-06-10 21:17:03", "188.165.15.231", "21");
INSERT INTO `wp_rg_form_view` VALUES("12868", "3", "2015-06-10 22:17:37", "68.180.228.245", "40");
INSERT INTO `wp_rg_form_view` VALUES("12869", "3", "2015-06-10 23:25:02", "64.180.190.243", "45");
INSERT INTO `wp_rg_form_view` VALUES("12870", "3", "2015-06-11 00:02:19", "77.75.77.32", "61");
INSERT INTO `wp_rg_form_view` VALUES("12871", "3", "2015-06-11 01:06:48", "202.46.50.87", "9");
INSERT INTO `wp_rg_form_view` VALUES("12872", "3", "2015-06-11 02:17:32", "66.249.67.133", "56");
INSERT INTO `wp_rg_form_view` VALUES("12873", "3", "2015-06-11 03:03:44", "202.46.52.17", "122");
INSERT INTO `wp_rg_form_view` VALUES("12874", "7", "2015-06-11 03:45:29", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("12875", "3", "2015-06-11 04:47:54", "154.20.4.178", "71");
INSERT INTO `wp_rg_form_view` VALUES("12876", "3", "2015-06-11 05:01:35", "64.180.191.237", "88");
INSERT INTO `wp_rg_form_view` VALUES("12877", "3", "2015-06-11 06:08:20", "68.180.228.245", "80");
INSERT INTO `wp_rg_form_view` VALUES("12878", "2", "2015-06-11 06:37:54", "37.187.142.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("12879", "1", "2015-06-11 06:37:56", "37.187.142.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("12880", "7", "2015-06-11 06:38:01", "37.187.142.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("12881", "3", "2015-06-11 07:07:24", "188.165.15.231", "56");
INSERT INTO `wp_rg_form_view` VALUES("12882", "3", "2015-06-11 08:00:32", "66.249.67.146", "72");
INSERT INTO `wp_rg_form_view` VALUES("12883", "2", "2015-06-11 08:08:44", "66.249.67.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12884", "5", "2015-06-11 09:02:53", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12885", "3", "2015-06-11 09:02:53", "68.180.228.245", "51");
INSERT INTO `wp_rg_form_view` VALUES("12886", "3", "2015-06-11 10:05:06", "220.181.108.147", "14");
INSERT INTO `wp_rg_form_view` VALUES("12887", "3", "2015-06-11 11:04:40", "68.180.228.245", "50");
INSERT INTO `wp_rg_form_view` VALUES("12888", "1", "2015-06-11 11:21:09", "104.255.69.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("12889", "3", "2015-06-11 12:00:11", "68.180.228.245", "43");
INSERT INTO `wp_rg_form_view` VALUES("12890", "3", "2015-06-11 13:12:41", "96.50.86.244", "32");
INSERT INTO `wp_rg_form_view` VALUES("12891", "3", "2015-06-11 14:20:28", "188.165.15.231", "85");
INSERT INTO `wp_rg_form_view` VALUES("12892", "3", "2015-06-11 15:21:52", "202.46.53.52", "23");
INSERT INTO `wp_rg_form_view` VALUES("12893", "3", "2015-06-11 16:34:39", "66.249.67.133", "14");
INSERT INTO `wp_rg_form_view` VALUES("12894", "3", "2015-06-11 17:08:19", "188.165.15.231", "42");
INSERT INTO `wp_rg_form_view` VALUES("12895", "3", "2015-06-11 18:51:42", "216.107.154.146", "190");
INSERT INTO `wp_rg_form_view` VALUES("12896", "7", "2015-06-11 18:52:24", "216.107.154.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12897", "1", "2015-06-11 18:52:36", "216.107.154.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12898", "2", "2015-06-11 18:52:43", "216.107.154.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("12899", "3", "2015-06-11 19:11:09", "184.66.161.212", "126");
INSERT INTO `wp_rg_form_view` VALUES("12900", "7", "2015-06-11 19:15:37", "172.245.222.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("12901", "1", "2015-06-11 19:16:07", "172.245.222.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("12902", "2", "2015-06-11 19:16:14", "172.245.222.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("12903", "3", "2015-06-11 20:16:02", "172.218.193.248", "44");
INSERT INTO `wp_rg_form_view` VALUES("12904", "3", "2015-06-11 21:10:16", "220.181.108.177", "7");
INSERT INTO `wp_rg_form_view` VALUES("12905", "3", "2015-06-11 22:07:19", "207.46.13.88", "28");
INSERT INTO `wp_rg_form_view` VALUES("12906", "3", "2015-06-11 23:53:18", "202.46.50.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("12907", "3", "2015-06-12 00:08:57", "184.66.96.244", "72");
INSERT INTO `wp_rg_form_view` VALUES("12908", "3", "2015-06-12 01:27:02", "202.46.55.133", "70");
INSERT INTO `wp_rg_form_view` VALUES("12909", "3", "2015-06-12 02:02:42", "202.46.49.76", "36");
INSERT INTO `wp_rg_form_view` VALUES("12910", "3", "2015-06-12 03:59:17", "202.46.48.200", "7");
INSERT INTO `wp_rg_form_view` VALUES("12911", "3", "2015-06-12 04:07:51", "66.249.67.146", "198");
INSERT INTO `wp_rg_form_view` VALUES("12912", "1", "2015-06-12 04:10:24", "183.14.113.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("12913", "2", "2015-06-12 04:10:24", "183.14.113.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("12914", "7", "2015-06-12 04:10:25", "183.14.113.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("12915", "3", "2015-06-12 05:33:11", "154.20.4.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("12916", "3", "2015-06-12 06:01:55", "207.46.13.83", "30");
INSERT INTO `wp_rg_form_view` VALUES("12917", "3", "2015-06-12 07:31:22", "100.43.90.12", "15");
INSERT INTO `wp_rg_form_view` VALUES("12918", "3", "2015-06-12 08:07:00", "100.43.85.7", "7");
INSERT INTO `wp_rg_form_view` VALUES("12919", "3", "2015-06-12 10:04:06", "157.55.39.236", "532");
INSERT INTO `wp_rg_form_view` VALUES("12920", "6", "2015-06-12 10:41:51", "66.249.67.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("12921", "3", "2015-06-12 11:02:15", "157.55.39.235", "99");
INSERT INTO `wp_rg_form_view` VALUES("12922", "1", "2015-06-12 11:03:25", "91.200.12.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("12923", "3", "2015-06-12 15:19:56", "220.181.108.88", "7");
INSERT INTO `wp_rg_form_view` VALUES("12924", "3", "2015-06-12 16:06:23", "68.180.228.245", "171");
INSERT INTO `wp_rg_form_view` VALUES("12925", "3", "2015-06-12 16:06:23", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12926", "3", "2015-06-12 16:06:23", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12927", "3", "2015-06-12 18:13:53", "84.200.172.114", "35");
INSERT INTO `wp_rg_form_view` VALUES("12928", "3", "2015-06-12 19:32:27", "37.187.133.113", "134");
INSERT INTO `wp_rg_form_view` VALUES("12929", "2", "2015-06-12 19:32:48", "37.187.133.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("12930", "1", "2015-06-12 19:32:51", "37.187.133.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("12931", "7", "2015-06-12 19:32:56", "37.187.133.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("12932", "3", "2015-06-12 20:11:29", "66.249.67.146", "77");
INSERT INTO `wp_rg_form_view` VALUES("12933", "3", "2015-06-12 22:00:16", "184.71.12.218", "71");
INSERT INTO `wp_rg_form_view` VALUES("12934", "3", "2015-06-13 00:29:16", "100.43.91.24", "48");
INSERT INTO `wp_rg_form_view` VALUES("12935", "3", "2015-06-13 01:09:24", "188.165.15.231", "136");
INSERT INTO `wp_rg_form_view` VALUES("12936", "3", "2015-06-13 02:11:11", "216.232.149.234", "88");
INSERT INTO `wp_rg_form_view` VALUES("12937", "1", "2015-06-13 02:35:41", "121.54.54.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("12938", "3", "2015-06-13 03:16:52", "100.43.85.8", "7");
INSERT INTO `wp_rg_form_view` VALUES("12939", "3", "2015-06-13 04:02:46", "157.55.39.123", "50");
INSERT INTO `wp_rg_form_view` VALUES("12940", "3", "2015-06-13 05:00:15", "157.55.39.235", "21");
INSERT INTO `wp_rg_form_view` VALUES("12941", "3", "2015-06-13 06:28:32", "157.55.39.123", "28");
INSERT INTO `wp_rg_form_view` VALUES("12942", "1", "2015-06-13 06:35:20", "208.115.124.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("12943", "6", "2015-06-13 07:00:35", "188.165.15.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("12944", "3", "2015-06-13 07:00:35", "188.165.15.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("12945", "3", "2015-06-13 08:04:01", "188.165.15.231", "28");
INSERT INTO `wp_rg_form_view` VALUES("12946", "2", "2015-06-13 08:10:10", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("12947", "3", "2015-06-13 09:31:41", "46.4.189.109", "14");
INSERT INTO `wp_rg_form_view` VALUES("12948", "3", "2015-06-13 10:37:06", "148.251.124.42", "14");
INSERT INTO `wp_rg_form_view` VALUES("12949", "3", "2015-06-13 12:27:35", "220.181.108.122", "21");
INSERT INTO `wp_rg_form_view` VALUES("12950", "3", "2015-06-13 13:42:30", "104.194.197.41", "44");
INSERT INTO `wp_rg_form_view` VALUES("12951", "3", "2015-06-13 14:09:05", "68.180.228.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("12952", "3", "2015-06-13 15:11:29", "66.249.67.133", "7");
INSERT INTO `wp_rg_form_view` VALUES("12953", "3", "2015-06-13 16:11:52", "220.181.108.141", "7");
INSERT INTO `wp_rg_form_view` VALUES("12954", "3", "2015-06-13 18:00:53", "100.43.90.12", "36");
INSERT INTO `wp_rg_form_view` VALUES("12955", "3", "2015-06-13 19:03:19", "104.207.69.181", "16");
INSERT INTO `wp_rg_form_view` VALUES("12956", "3", "2015-06-13 20:02:30", "220.181.108.160", "22");
INSERT INTO `wp_rg_form_view` VALUES("12957", "3", "2015-06-13 21:04:15", "207.46.13.86", "21");
INSERT INTO `wp_rg_form_view` VALUES("12958", "3", "2015-06-13 22:53:05", "66.249.67.133", "7");
INSERT INTO `wp_rg_form_view` VALUES("12959", "3", "2015-06-13 23:00:49", "66.249.67.146", "20");
INSERT INTO `wp_rg_form_view` VALUES("12960", "3", "2015-06-14 00:07:20", "66.249.67.133", "12");
INSERT INTO `wp_rg_form_view` VALUES("12961", "3", "2015-06-14 01:09:24", "207.46.13.128", "24");
INSERT INTO `wp_rg_form_view` VALUES("12962", "1", "2015-06-14 01:27:06", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("12963", "3", "2015-06-14 02:22:21", "66.249.67.120", "56");
INSERT INTO `wp_rg_form_view` VALUES("12964", "3", "2015-06-14 03:05:01", "188.165.15.231", "26");
INSERT INTO `wp_rg_form_view` VALUES("12965", "3", "2015-06-14 04:22:19", "144.76.153.198", "6");
INSERT INTO `wp_rg_form_view` VALUES("12966", "3", "2015-06-14 05:38:35", "66.249.67.120", "6");
INSERT INTO `wp_rg_form_view` VALUES("12967", "3", "2015-06-14 06:41:32", "5.9.94.207", "23");
INSERT INTO `wp_rg_form_view` VALUES("12968", "3", "2015-06-14 08:16:29", "220.181.108.122", "12");
INSERT INTO `wp_rg_form_view` VALUES("12969", "3", "2015-06-14 09:32:18", "157.55.39.255", "6");
INSERT INTO `wp_rg_form_view` VALUES("12970", "3", "2015-06-14 11:06:08", "66.249.67.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("12971", "3", "2015-06-14 12:00:14", "83.45.10.161", "50");
INSERT INTO `wp_rg_form_view` VALUES("12972", "3", "2015-06-14 13:27:14", "157.55.39.111", "18");
INSERT INTO `wp_rg_form_view` VALUES("12973", "6", "2015-06-14 15:05:21", "144.76.155.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("12974", "3", "2015-06-14 15:05:22", "144.76.155.8", "6");
INSERT INTO `wp_rg_form_view` VALUES("12975", "3", "2015-06-14 16:03:01", "62.210.125.157", "26");
INSERT INTO `wp_rg_form_view` VALUES("12976", "2", "2015-06-14 16:07:57", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("12977", "3", "2015-06-14 17:21:10", "66.249.67.120", "24");
INSERT INTO `wp_rg_form_view` VALUES("12978", "1", "2015-06-14 17:43:27", "208.115.124.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("12979", "3", "2015-06-14 18:29:11", "46.4.189.109", "12");
INSERT INTO `wp_rg_form_view` VALUES("12980", "3", "2015-06-14 19:26:56", "100.43.90.11", "24");
INSERT INTO `wp_rg_form_view` VALUES("12981", "3", "2015-06-14 20:50:56", "68.180.228.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("12982", "1", "2015-06-14 22:29:19", "151.80.31.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("12983", "3", "2015-06-14 22:29:21", "151.80.31.152", "24");
INSERT INTO `wp_rg_form_view` VALUES("12984", "3", "2015-06-14 23:11:31", "199.21.99.206", "14");
INSERT INTO `wp_rg_form_view` VALUES("12985", "3", "2015-06-15 00:22:02", "66.249.67.146", "18");
INSERT INTO `wp_rg_form_view` VALUES("12986", "3", "2015-06-15 01:09:17", "66.249.67.146", "37");
INSERT INTO `wp_rg_form_view` VALUES("12987", "3", "2015-06-15 02:01:48", "188.165.15.231", "24");
INSERT INTO `wp_rg_form_view` VALUES("12988", "3", "2015-06-15 03:09:52", "202.46.57.75", "24");
INSERT INTO `wp_rg_form_view` VALUES("12989", "3", "2015-06-15 04:01:16", "104.193.10.50", "24");
INSERT INTO `wp_rg_form_view` VALUES("12990", "3", "2015-06-15 05:04:19", "46.4.189.109", "13");
INSERT INTO `wp_rg_form_view` VALUES("12991", "1", "2015-06-15 06:03:58", "180.191.126.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("12992", "3", "2015-06-15 06:04:00", "180.191.126.13", "72");
INSERT INTO `wp_rg_form_view` VALUES("12993", "3", "2015-06-15 07:33:59", "77.75.77.36", "6");
INSERT INTO `wp_rg_form_view` VALUES("12994", "3", "2015-06-15 08:59:26", "188.165.15.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("12995", "3", "2015-06-15 09:00:17", "207.46.13.128", "18");
INSERT INTO `wp_rg_form_view` VALUES("12996", "2", "2015-06-15 10:22:35", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("12997", "3", "2015-06-15 10:22:37", "204.12.239.250", "6");
INSERT INTO `wp_rg_form_view` VALUES("12998", "3", "2015-06-15 11:50:31", "112.111.185.68", "6");
INSERT INTO `wp_rg_form_view` VALUES("12999", "3", "2015-06-15 14:18:01", "46.4.189.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("13000", "3", "2015-06-15 16:10:07", "142.104.240.37", "12");
INSERT INTO `wp_rg_form_view` VALUES("13001", "3", "2015-06-15 17:12:49", "68.180.228.245", "132");
INSERT INTO `wp_rg_form_view` VALUES("13002", "7", "2015-06-15 17:21:31", "67.86.112.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("13003", "1", "2015-06-15 17:21:40", "67.86.112.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("13004", "2", "2015-06-15 17:21:46", "67.86.112.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("13005", "3", "2015-06-15 18:18:19", "66.249.67.70", "56");
INSERT INTO `wp_rg_form_view` VALUES("13006", "7", "2015-06-15 18:48:54", "184.66.113.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("13007", "3", "2015-06-15 19:17:07", "88.105.9.120", "57");
INSERT INTO `wp_rg_form_view` VALUES("13008", "3", "2015-06-15 20:02:22", "142.36.222.21", "68");
INSERT INTO `wp_rg_form_view` VALUES("13009", "3", "2015-06-15 21:00:03", "144.76.71.83", "12");
INSERT INTO `wp_rg_form_view` VALUES("13010", "3", "2015-06-15 22:20:59", "24.108.132.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("13011", "6", "2015-06-15 22:40:09", "24.108.72.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("13012", "3", "2015-06-15 23:13:05", "188.165.15.84", "19");
INSERT INTO `wp_rg_form_view` VALUES("13013", "3", "2015-06-16 00:20:59", "68.180.228.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("13014", "3", "2015-06-16 01:27:16", "68.180.228.245", "13");
INSERT INTO `wp_rg_form_view` VALUES("13015", "3", "2015-06-16 02:22:35", "68.180.228.245", "241");
INSERT INTO `wp_rg_form_view` VALUES("13016", "7", "2015-06-16 02:30:58", "92.85.174.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("13017", "1", "2015-06-16 02:31:11", "92.85.174.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("13018", "2", "2015-06-16 02:31:21", "92.85.174.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("13019", "3", "2015-06-16 03:18:17", "199.217.117.207", "6");
INSERT INTO `wp_rg_form_view` VALUES("13020", "3", "2015-06-16 04:27:40", "184.66.16.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("13021", "3", "2015-06-16 05:20:09", "188.165.15.84", "25");
INSERT INTO `wp_rg_form_view` VALUES("13022", "3", "2015-06-16 06:00:49", "207.46.13.60", "79");
INSERT INTO `wp_rg_form_view` VALUES("13023", "2", "2015-06-16 06:42:14", "23.92.210.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("13024", "3", "2015-06-16 07:11:07", "202.46.53.64", "58");
INSERT INTO `wp_rg_form_view` VALUES("13025", "1", "2015-06-16 07:42:07", "196.196.32.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("13026", "3", "2015-06-16 08:09:48", "202.46.48.148", "89");
INSERT INTO `wp_rg_form_view` VALUES("13027", "1", "2015-06-16 08:42:37", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("13028", "2", "2015-06-16 08:42:44", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("13029", "7", "2015-06-16 08:42:51", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("13030", "3", "2015-06-16 09:01:41", "202.46.50.93", "58");
INSERT INTO `wp_rg_form_view` VALUES("13031", "7", "2015-06-16 09:20:03", "66.249.67.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("13032", "3", "2015-06-16 10:06:43", "202.46.58.209", "66");
INSERT INTO `wp_rg_form_view` VALUES("13033", "1", "2015-06-16 10:49:40", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13034", "3", "2015-06-16 11:05:19", "202.46.52.41", "30");
INSERT INTO `wp_rg_form_view` VALUES("13035", "3", "2015-06-16 12:07:18", "202.46.50.79", "41");
INSERT INTO `wp_rg_form_view` VALUES("13036", "3", "2015-06-16 13:17:59", "202.46.50.92", "43");
INSERT INTO `wp_rg_form_view` VALUES("13037", "3", "2015-06-16 14:04:22", "202.46.48.190", "143");
INSERT INTO `wp_rg_form_view` VALUES("13038", "3", "2015-06-16 15:02:53", "202.46.51.193", "42");
INSERT INTO `wp_rg_form_view` VALUES("13039", "3", "2015-06-16 16:01:26", "202.46.49.190", "75");
INSERT INTO `wp_rg_form_view` VALUES("13040", "6", "2015-06-16 16:52:09", "100.43.85.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("13041", "3", "2015-06-16 17:11:45", "202.46.55.65", "60");
INSERT INTO `wp_rg_form_view` VALUES("13042", "3", "2015-06-16 18:08:40", "204.101.3.194", "103");
INSERT INTO `wp_rg_form_view` VALUES("13043", "3", "2015-06-16 19:08:46", "202.46.48.137", "94");
INSERT INTO `wp_rg_form_view` VALUES("13044", "3", "2015-06-16 20:07:18", "202.46.53.153", "84");
INSERT INTO `wp_rg_form_view` VALUES("13045", "3", "2015-06-16 21:10:42", "91.121.141.219", "43");
INSERT INTO `wp_rg_form_view` VALUES("13046", "3", "2015-06-16 22:04:21", "202.46.58.95", "43");
INSERT INTO `wp_rg_form_view` VALUES("13047", "1", "2015-06-16 22:21:30", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("13048", "7", "2015-06-16 23:00:48", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("13049", "3", "2015-06-16 23:00:49", "68.180.228.245", "100");
INSERT INTO `wp_rg_form_view` VALUES("13050", "1", "2015-06-16 23:23:21", "195.154.250.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("13051", "3", "2015-06-17 00:01:25", "202.46.52.109", "113");
INSERT INTO `wp_rg_form_view` VALUES("13052", "1", "2015-06-17 00:34:31", "204.124.183.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("13053", "3", "2015-06-17 01:11:40", "202.46.48.140", "54");
INSERT INTO `wp_rg_form_view` VALUES("13054", "1", "2015-06-17 01:54:59", "208.115.124.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("13055", "3", "2015-06-17 02:10:12", "202.46.55.126", "49");
INSERT INTO `wp_rg_form_view` VALUES("13056", "3", "2015-06-17 03:08:46", "202.46.54.22", "37");
INSERT INTO `wp_rg_form_view` VALUES("13057", "3", "2015-06-17 04:07:18", "202.46.56.185", "74");
INSERT INTO `wp_rg_form_view` VALUES("13058", "3", "2015-06-17 05:05:49", "202.46.48.205", "36");
INSERT INTO `wp_rg_form_view` VALUES("13059", "3", "2015-06-17 06:04:21", "202.46.50.123", "54");
INSERT INTO `wp_rg_form_view` VALUES("13060", "3", "2015-06-17 07:08:59", "202.46.52.65", "69");
INSERT INTO `wp_rg_form_view` VALUES("13061", "3", "2015-06-17 08:07:32", "202.46.53.124", "50");
INSERT INTO `wp_rg_form_view` VALUES("13062", "3", "2015-06-17 09:06:04", "202.46.48.123", "31");
INSERT INTO `wp_rg_form_view` VALUES("13063", "2", "2015-06-17 09:45:16", "202.46.54.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("13064", "3", "2015-06-17 10:12:54", "202.46.48.83", "60");
INSERT INTO `wp_rg_form_view` VALUES("13065", "3", "2015-06-17 11:03:08", "202.46.51.139", "138");
INSERT INTO `wp_rg_form_view` VALUES("13066", "1", "2015-06-17 11:10:41", "93.92.217.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("13067", "2", "2015-06-17 11:10:47", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("13068", "7", "2015-06-17 11:10:54", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("13069", "3", "2015-06-17 12:01:44", "202.46.52.157", "54");
INSERT INTO `wp_rg_form_view` VALUES("13070", "3", "2015-06-17 13:00:12", "202.46.51.12", "59");
INSERT INTO `wp_rg_form_view` VALUES("13071", "3", "2015-06-17 14:05:41", "188.165.15.84", "60");
INSERT INTO `wp_rg_form_view` VALUES("13072", "3", "2015-06-17 15:09:03", "202.46.52.143", "62");
INSERT INTO `wp_rg_form_view` VALUES("13073", "3", "2015-06-17 16:02:49", "184.71.12.214", "86");
INSERT INTO `wp_rg_form_view` VALUES("13074", "3", "2015-06-17 17:06:04", "202.46.48.122", "68");
INSERT INTO `wp_rg_form_view` VALUES("13075", "3", "2015-06-17 18:04:36", "202.46.48.11", "47");
INSERT INTO `wp_rg_form_view` VALUES("13076", "6", "2015-06-17 18:47:06", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("13077", "3", "2015-06-17 19:03:07", "202.46.51.204", "47");
INSERT INTO `wp_rg_form_view` VALUES("13078", "3", "2015-06-17 20:01:40", "202.46.54.141", "71");
INSERT INTO `wp_rg_form_view` VALUES("13079", "3", "2015-06-17 21:00:12", "202.46.52.142", "182");
INSERT INTO `wp_rg_form_view` VALUES("13080", "1", "2015-06-17 21:55:39", "45.62.55.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("13081", "3", "2015-06-17 22:10:27", "202.46.54.142", "79");
INSERT INTO `wp_rg_form_view` VALUES("13082", "1", "2015-06-17 22:39:58", "104.218.197.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("13083", "3", "2015-06-17 23:20:43", "202.46.52.72", "36");
INSERT INTO `wp_rg_form_view` VALUES("13084", "3", "2015-06-18 00:07:31", "202.46.50.153", "57");
INSERT INTO `wp_rg_form_view` VALUES("13085", "3", "2015-06-18 01:06:03", "202.46.48.13", "42");
INSERT INTO `wp_rg_form_view` VALUES("13086", "3", "2015-06-18 02:04:36", "202.46.57.177", "41");
INSERT INTO `wp_rg_form_view` VALUES("13087", "3", "2015-06-18 03:03:10", "202.46.49.198", "83");
INSERT INTO `wp_rg_form_view` VALUES("13088", "1", "2015-06-18 03:25:36", "45.61.46.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("13089", "3", "2015-06-18 04:01:40", "202.46.52.105", "56");
INSERT INTO `wp_rg_form_view` VALUES("13090", "3", "2015-06-18 05:00:12", "202.46.55.84", "131");
INSERT INTO `wp_rg_form_view` VALUES("13091", "3", "2015-06-18 06:10:31", "202.46.50.157", "66");
INSERT INTO `wp_rg_form_view` VALUES("13092", "3", "2015-06-18 07:03:41", "68.180.228.245", "107");
INSERT INTO `wp_rg_form_view` VALUES("13093", "1", "2015-06-18 07:12:52", "24.68.227.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("13094", "3", "2015-06-18 08:07:34", "202.46.56.38", "42");
INSERT INTO `wp_rg_form_view` VALUES("13095", "3", "2015-06-18 09:06:05", "202.46.55.126", "72");
INSERT INTO `wp_rg_form_view` VALUES("13096", "6", "2015-06-18 09:12:26", "93.186.202.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("13097", "3", "2015-06-18 10:04:35", "202.46.56.71", "44");
INSERT INTO `wp_rg_form_view` VALUES("13098", "3", "2015-06-18 11:03:08", "202.46.56.135", "53");
INSERT INTO `wp_rg_form_view` VALUES("13099", "6", "2015-06-18 11:20:17", "100.43.85.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("13100", "3", "2015-06-18 12:01:41", "202.46.50.135", "55");
INSERT INTO `wp_rg_form_view` VALUES("13101", "3", "2015-06-18 13:00:12", "202.46.50.14", "58");
INSERT INTO `wp_rg_form_view` VALUES("13102", "3", "2015-06-18 14:00:35", "24.114.27.79", "66");
INSERT INTO `wp_rg_form_view` VALUES("13103", "3", "2015-06-18 15:09:00", "202.46.55.152", "54");
INSERT INTO `wp_rg_form_view` VALUES("13104", "3", "2015-06-18 16:07:31", "202.46.56.130", "65");
INSERT INTO `wp_rg_form_view` VALUES("13105", "3", "2015-06-18 17:06:03", "202.46.57.123", "101");
INSERT INTO `wp_rg_form_view` VALUES("13106", "1", "2015-06-18 17:16:51", "45.61.37.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("13107", "3", "2015-06-18 18:04:38", "202.46.58.153", "36");
INSERT INTO `wp_rg_form_view` VALUES("13108", "3", "2015-06-18 19:14:51", "202.46.50.91", "36");
INSERT INTO `wp_rg_form_view` VALUES("13109", "3", "2015-06-18 20:01:39", "202.46.58.150", "55");
INSERT INTO `wp_rg_form_view` VALUES("13110", "3", "2015-06-18 21:00:11", "202.46.56.64", "59");
INSERT INTO `wp_rg_form_view` VALUES("13111", "3", "2015-06-18 22:04:08", "207.46.13.37", "55");
INSERT INTO `wp_rg_form_view` VALUES("13112", "3", "2015-06-18 23:09:01", "202.46.53.90", "65");
INSERT INTO `wp_rg_form_view` VALUES("13113", "1", "2015-06-18 23:47:23", "23.245.6.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("13114", "3", "2015-06-19 00:00:50", "117.177.243.42", "332");
INSERT INTO `wp_rg_form_view` VALUES("13115", "1", "2015-06-19 00:35:25", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("13116", "7", "2015-06-19 00:40:45", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("13117", "3", "2015-06-19 01:01:41", "157.55.39.251", "166");
INSERT INTO `wp_rg_form_view` VALUES("13118", "3", "2015-06-19 02:01:13", "207.46.13.37", "85");
INSERT INTO `wp_rg_form_view` VALUES("13119", "3", "2015-06-19 03:03:09", "202.46.52.167", "74");
INSERT INTO `wp_rg_form_view` VALUES("13120", "3", "2015-06-19 04:01:40", "202.46.51.175", "155");
INSERT INTO `wp_rg_form_view` VALUES("13121", "2", "2015-06-19 04:15:16", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("13122", "1", "2015-06-19 04:24:31", "45.61.46.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("13123", "5", "2015-06-19 04:53:41", "157.55.39.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("13124", "3", "2015-06-19 05:00:11", "202.46.53.142", "53");
INSERT INTO `wp_rg_form_view` VALUES("13125", "3", "2015-06-19 06:10:26", "202.46.51.191", "172");
INSERT INTO `wp_rg_form_view` VALUES("13126", "1", "2015-06-19 06:15:36", "45.62.55.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("13127", "2", "2015-06-19 06:53:55", "45.55.229.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("13128", "3", "2015-06-19 07:09:00", "202.46.55.147", "46");
INSERT INTO `wp_rg_form_view` VALUES("13129", "3", "2015-06-19 08:07:33", "202.46.50.121", "53");
INSERT INTO `wp_rg_form_view` VALUES("13130", "1", "2015-06-19 08:13:43", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("13131", "3", "2015-06-19 09:09:11", "207.46.13.124", "84");
INSERT INTO `wp_rg_form_view` VALUES("13132", "3", "2015-06-19 10:00:11", "207.46.13.37", "191");
INSERT INTO `wp_rg_form_view` VALUES("13133", "1", "2015-06-19 10:01:55", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("13134", "7", "2015-06-19 10:05:37", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("13135", "3", "2015-06-19 11:03:07", "202.46.54.31", "311");
INSERT INTO `wp_rg_form_view` VALUES("13136", "7", "2015-06-19 11:24:42", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("13137", "3", "2015-06-19 12:01:39", "202.46.55.139", "111");
INSERT INTO `wp_rg_form_view` VALUES("13138", "1", "2015-06-19 12:11:53", "45.61.46.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("13139", "3", "2015-06-19 13:00:14", "202.46.53.143", "89");
INSERT INTO `wp_rg_form_view` VALUES("13140", "1", "2015-06-19 14:04:27", "207.46.13.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("13141", "3", "2015-06-19 14:04:27", "207.46.13.124", "63");
INSERT INTO `wp_rg_form_view` VALUES("13142", "3", "2015-06-19 15:05:51", "157.55.39.84", "49");
INSERT INTO `wp_rg_form_view` VALUES("13143", "2", "2015-06-19 16:01:51", "208.115.124.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("13144", "3", "2015-06-19 16:01:53", "208.115.124.147", "48");
INSERT INTO `wp_rg_form_view` VALUES("13145", "3", "2015-06-19 17:06:02", "202.46.52.112", "75");
INSERT INTO `wp_rg_form_view` VALUES("13146", "3", "2015-06-19 18:04:35", "202.46.57.124", "55");
INSERT INTO `wp_rg_form_view` VALUES("13147", "3", "2015-06-19 19:03:06", "202.46.52.156", "56");
INSERT INTO `wp_rg_form_view` VALUES("13148", "3", "2015-06-19 20:01:39", "202.46.57.27", "61");
INSERT INTO `wp_rg_form_view` VALUES("13149", "3", "2015-06-19 21:00:13", "202.46.53.50", "60");
INSERT INTO `wp_rg_form_view` VALUES("13150", "3", "2015-06-19 22:01:20", "24.68.120.185", "58");
INSERT INTO `wp_rg_form_view` VALUES("13151", "3", "2015-06-19 23:08:58", "202.46.55.124", "54");
INSERT INTO `wp_rg_form_view` VALUES("13152", "3", "2015-06-20 00:07:30", "202.46.50.13", "58");
INSERT INTO `wp_rg_form_view` VALUES("13153", "3", "2015-06-20 01:02:12", "100.43.85.20", "75");
INSERT INTO `wp_rg_form_view` VALUES("13154", "3", "2015-06-20 02:04:34", "202.46.49.62", "32");
INSERT INTO `wp_rg_form_view` VALUES("13155", "3", "2015-06-20 03:03:08", "202.46.48.207", "44");
INSERT INTO `wp_rg_form_view` VALUES("13156", "3", "2015-06-20 04:01:40", "202.46.56.16", "52");
INSERT INTO `wp_rg_form_view` VALUES("13157", "1", "2015-06-20 05:06:32", "104.218.197.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("13158", "3", "2015-06-20 05:06:32", "104.218.197.235", "68");
INSERT INTO `wp_rg_form_view` VALUES("13159", "3", "2015-06-20 06:01:10", "188.165.15.84", "42");
INSERT INTO `wp_rg_form_view` VALUES("13160", "3", "2015-06-20 07:08:57", "202.46.50.92", "49");
INSERT INTO `wp_rg_form_view` VALUES("13161", "3", "2015-06-20 08:02:04", "100.43.85.16", "59");
INSERT INTO `wp_rg_form_view` VALUES("13162", "3", "2015-06-20 09:06:03", "202.46.53.110", "40");
INSERT INTO `wp_rg_form_view` VALUES("13163", "3", "2015-06-20 10:00:02", "157.55.39.167", "54");
INSERT INTO `wp_rg_form_view` VALUES("13164", "3", "2015-06-20 11:03:06", "202.46.56.11", "37");
INSERT INTO `wp_rg_form_view` VALUES("13165", "3", "2015-06-20 12:01:39", "202.46.57.164", "72");
INSERT INTO `wp_rg_form_view` VALUES("13166", "1", "2015-06-20 12:19:48", "45.61.37.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("13167", "3", "2015-06-20 13:00:11", "202.46.54.184", "78");
INSERT INTO `wp_rg_form_view` VALUES("13168", "1", "2015-06-20 13:12:52", "45.62.55.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("13169", "1", "2015-06-20 14:04:47", "104.218.197.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("13170", "3", "2015-06-20 14:04:48", "104.218.197.104", "162");
INSERT INTO `wp_rg_form_view` VALUES("13171", "3", "2015-06-20 15:08:58", "202.46.52.159", "73");
INSERT INTO `wp_rg_form_view` VALUES("13172", "1", "2015-06-20 15:41:20", "45.62.55.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("13173", "3", "2015-06-20 16:07:29", "202.46.58.181", "48");
INSERT INTO `wp_rg_form_view` VALUES("13174", "3", "2015-06-20 17:17:44", "202.46.51.81", "47");
INSERT INTO `wp_rg_form_view` VALUES("13175", "3", "2015-06-20 18:16:17", "202.46.48.202", "54");
INSERT INTO `wp_rg_form_view` VALUES("13176", "6", "2015-06-20 18:29:06", "5.9.112.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("13177", "3", "2015-06-20 19:03:06", "202.46.50.86", "34");
INSERT INTO `wp_rg_form_view` VALUES("13178", "3", "2015-06-20 20:01:38", "202.46.49.142", "77");
INSERT INTO `wp_rg_form_view` VALUES("13179", "1", "2015-06-20 20:07:00", "45.61.46.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("13180", "3", "2015-06-20 21:00:10", "202.46.50.74", "35");
INSERT INTO `wp_rg_form_view` VALUES("13181", "3", "2015-06-20 22:10:25", "202.46.55.140", "41");
INSERT INTO `wp_rg_form_view` VALUES("13182", "3", "2015-06-20 23:08:57", "202.46.58.150", "40");
INSERT INTO `wp_rg_form_view` VALUES("13183", "1", "2015-06-20 23:46:32", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("13184", "3", "2015-06-21 00:07:30", "202.46.51.202", "31");
INSERT INTO `wp_rg_form_view` VALUES("13185", "3", "2015-06-21 01:06:01", "202.46.56.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("13186", "3", "2015-06-21 02:04:34", "202.46.56.90", "57");
INSERT INTO `wp_rg_form_view` VALUES("13187", "1", "2015-06-21 02:30:46", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("13188", "3", "2015-06-21 03:03:06", "202.46.58.210", "50");
INSERT INTO `wp_rg_form_view` VALUES("13189", "3", "2015-06-21 04:01:39", "202.46.52.167", "25");
INSERT INTO `wp_rg_form_view` VALUES("13190", "3", "2015-06-21 05:00:10", "202.46.52.104", "61");
INSERT INTO `wp_rg_form_view` VALUES("13191", "1", "2015-06-21 06:01:12", "54.159.108.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("13192", "3", "2015-06-21 06:01:12", "54.159.108.14", "61");
INSERT INTO `wp_rg_form_view` VALUES("13193", "3", "2015-06-21 07:08:57", "202.46.51.192", "30");
INSERT INTO `wp_rg_form_view` VALUES("13194", "1", "2015-06-21 08:13:37", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("13195", "3", "2015-06-21 08:13:37", "178.19.111.187", "51");
INSERT INTO `wp_rg_form_view` VALUES("13196", "6", "2015-06-21 08:48:55", "157.55.39.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("13197", "3", "2015-06-21 09:06:02", "202.46.48.94", "62");
INSERT INTO `wp_rg_form_view` VALUES("13198", "1", "2015-06-21 09:09:38", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("13199", "3", "2015-06-21 10:04:33", "202.46.56.65", "35");
INSERT INTO `wp_rg_form_view` VALUES("13200", "3", "2015-06-21 11:03:07", "202.46.52.154", "157");
INSERT INTO `wp_rg_form_view` VALUES("13201", "2", "2015-06-21 11:58:22", "95.181.178.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("13202", "3", "2015-06-21 12:01:02", "104.143.27.235", "52");
INSERT INTO `wp_rg_form_view` VALUES("13203", "1", "2015-06-21 12:48:30", "202.46.58.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("13204", "3", "2015-06-21 13:00:12", "202.46.56.68", "65");
INSERT INTO `wp_rg_form_view` VALUES("13205", "1", "2015-06-21 13:07:19", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("13206", "3", "2015-06-21 14:10:26", "202.46.57.169", "58");
INSERT INTO `wp_rg_form_view` VALUES("13207", "3", "2015-06-21 15:08:58", "202.46.54.130", "45");
INSERT INTO `wp_rg_form_view` VALUES("13208", "1", "2015-06-21 15:50:15", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("13209", "3", "2015-06-21 16:07:30", "202.46.53.140", "45");
INSERT INTO `wp_rg_form_view` VALUES("13210", "3", "2015-06-21 17:06:02", "202.46.56.91", "41");
INSERT INTO `wp_rg_form_view` VALUES("13211", "1", "2015-06-21 17:52:53", "202.46.55.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("13212", "6", "2015-06-21 17:54:18", "144.76.155.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("13213", "3", "2015-06-21 18:04:34", "202.46.54.24", "40");
INSERT INTO `wp_rg_form_view` VALUES("13214", "3", "2015-06-21 19:03:07", "202.46.53.141", "51");
INSERT INTO `wp_rg_form_view` VALUES("13215", "1", "2015-06-21 19:17:49", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("13216", "3", "2015-06-21 20:13:22", "202.46.49.205", "30");
INSERT INTO `wp_rg_form_view` VALUES("13217", "3", "2015-06-21 21:00:10", "202.46.51.139", "40");
INSERT INTO `wp_rg_form_view` VALUES("13218", "3", "2015-06-21 22:10:24", "202.46.52.143", "50");
INSERT INTO `wp_rg_form_view` VALUES("13219", "3", "2015-06-21 23:01:01", "174.118.246.130", "47");
INSERT INTO `wp_rg_form_view` VALUES("13220", "3", "2015-06-22 00:00:45", "157.55.39.251", "25");
INSERT INTO `wp_rg_form_view` VALUES("13221", "3", "2015-06-22 01:06:01", "202.46.55.38", "35");
INSERT INTO `wp_rg_form_view` VALUES("13222", "3", "2015-06-22 02:01:01", "220.181.108.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("13223", "3", "2015-06-22 03:03:09", "202.46.53.53", "46");
INSERT INTO `wp_rg_form_view` VALUES("13224", "3", "2015-06-22 04:01:38", "202.46.56.200", "45");
INSERT INTO `wp_rg_form_view` VALUES("13225", "3", "2015-06-22 05:00:10", "202.46.49.209", "45");
INSERT INTO `wp_rg_form_view` VALUES("13226", "3", "2015-06-22 06:00:06", "157.55.39.194", "51");
INSERT INTO `wp_rg_form_view` VALUES("13227", "1", "2015-06-22 06:23:04", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("13228", "3", "2015-06-22 07:08:56", "202.46.53.143", "55");
INSERT INTO `wp_rg_form_view` VALUES("13229", "3", "2015-06-22 08:07:29", "202.46.55.84", "47");
INSERT INTO `wp_rg_form_view` VALUES("13230", "3", "2015-06-22 09:06:01", "202.46.50.199", "130");
INSERT INTO `wp_rg_form_view` VALUES("13231", "7", "2015-06-22 09:41:56", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("13232", "1", "2015-06-22 09:42:07", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("13233", "2", "2015-06-22 09:42:12", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("13234", "3", "2015-06-22 10:04:36", "202.46.49.191", "35");
INSERT INTO `wp_rg_form_view` VALUES("13235", "3", "2015-06-22 11:03:05", "202.46.53.53", "40");
INSERT INTO `wp_rg_form_view` VALUES("13236", "3", "2015-06-22 12:01:41", "202.46.58.51", "40");
INSERT INTO `wp_rg_form_view` VALUES("13237", "3", "2015-06-22 13:01:29", "68.180.228.245", "51");
INSERT INTO `wp_rg_form_view` VALUES("13238", "3", "2015-06-22 14:10:25", "202.46.48.200", "25");
INSERT INTO `wp_rg_form_view` VALUES("13239", "3", "2015-06-22 15:03:45", "157.55.39.188", "45");
INSERT INTO `wp_rg_form_view` VALUES("13240", "3", "2015-06-22 16:00:29", "5.9.94.207", "40");
INSERT INTO `wp_rg_form_view` VALUES("13241", "3", "2015-06-22 17:00:05", "68.180.228.245", "97");
INSERT INTO `wp_rg_form_view` VALUES("13242", "3", "2015-06-22 18:04:33", "202.46.54.17", "30");
INSERT INTO `wp_rg_form_view` VALUES("13243", "3", "2015-06-22 19:03:05", "202.46.56.208", "30");
INSERT INTO `wp_rg_form_view` VALUES("13244", "3", "2015-06-22 20:01:40", "202.46.55.122", "61");
INSERT INTO `wp_rg_form_view` VALUES("13245", "3", "2015-06-22 21:00:00", "24.108.100.17", "41");
INSERT INTO `wp_rg_form_view` VALUES("13246", "2", "2015-06-22 21:51:43", "184.69.1.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("13247", "3", "2015-06-22 22:10:24", "202.46.57.208", "25");
INSERT INTO `wp_rg_form_view` VALUES("13248", "3", "2015-06-22 23:08:56", "202.46.51.58", "36");
INSERT INTO `wp_rg_form_view` VALUES("13249", "3", "2015-06-23 00:02:26", "202.46.51.159", "892");
INSERT INTO `wp_rg_form_view` VALUES("13250", "1", "2015-06-23 00:05:50", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13251", "6", "2015-06-23 00:31:11", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13252", "7", "2015-06-23 00:32:56", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13253", "2", "2015-06-23 00:33:13", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13254", "5", "2015-06-23 00:34:40", "207.106.190.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13255", "3", "2015-06-23 01:06:04", "202.46.50.13", "45");
INSERT INTO `wp_rg_form_view` VALUES("13256", "3", "2015-06-23 02:04:33", "202.46.51.107", "47");
INSERT INTO `wp_rg_form_view` VALUES("13257", "3", "2015-06-23 03:03:05", "202.46.49.199", "40");
INSERT INTO `wp_rg_form_view` VALUES("13258", "3", "2015-06-23 04:01:38", "202.46.48.194", "35");
INSERT INTO `wp_rg_form_view` VALUES("13259", "3", "2015-06-23 05:00:14", "202.46.58.85", "45");
INSERT INTO `wp_rg_form_view` VALUES("13260", "3", "2015-06-23 06:10:24", "202.46.49.157", "41");
INSERT INTO `wp_rg_form_view` VALUES("13261", "3", "2015-06-23 07:00:25", "68.180.228.245", "77");
INSERT INTO `wp_rg_form_view` VALUES("13262", "1", "2015-06-23 07:53:52", "67.22.36.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("13263", "3", "2015-06-23 08:08:44", "188.165.15.127", "30");
INSERT INTO `wp_rg_form_view` VALUES("13264", "3", "2015-06-23 09:06:02", "202.46.49.115", "51");
INSERT INTO `wp_rg_form_view` VALUES("13265", "3", "2015-06-23 10:04:34", "202.46.49.95", "56");
INSERT INTO `wp_rg_form_view` VALUES("13266", "3", "2015-06-23 11:03:06", "202.46.51.30", "45");
INSERT INTO `wp_rg_form_view` VALUES("13267", "6", "2015-06-23 11:21:22", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("13268", "3", "2015-06-23 12:01:39", "202.46.52.69", "57");
INSERT INTO `wp_rg_form_view` VALUES("13269", "3", "2015-06-23 13:00:10", "202.46.52.179", "87");
INSERT INTO `wp_rg_form_view` VALUES("13270", "1", "2015-06-23 13:26:40", "24.108.6.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("13271", "3", "2015-06-23 14:38:42", "202.46.55.144", "32");
INSERT INTO `wp_rg_form_view` VALUES("13272", "3", "2015-06-23 15:03:08", "202.46.51.200", "46");
INSERT INTO `wp_rg_form_view` VALUES("13273", "3", "2015-06-23 16:01:40", "202.46.49.60", "74");
INSERT INTO `wp_rg_form_view` VALUES("13274", "3", "2015-06-23 17:00:13", "202.46.51.25", "35");
INSERT INTO `wp_rg_form_view` VALUES("13275", "3", "2015-06-23 18:10:27", "202.46.52.102", "30");
INSERT INTO `wp_rg_form_view` VALUES("13276", "3", "2015-06-23 19:08:58", "202.46.52.160", "35");
INSERT INTO `wp_rg_form_view` VALUES("13277", "3", "2015-06-23 20:07:31", "202.46.55.67", "57");
INSERT INTO `wp_rg_form_view` VALUES("13278", "3", "2015-06-23 21:06:04", "202.46.58.120", "42");
INSERT INTO `wp_rg_form_view` VALUES("13279", "3", "2015-06-23 22:04:35", "202.46.52.11", "66");
INSERT INTO `wp_rg_form_view` VALUES("13280", "1", "2015-06-23 22:58:15", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13281", "3", "2015-06-23 23:03:07", "202.46.54.196", "51");
INSERT INTO `wp_rg_form_view` VALUES("13282", "3", "2015-06-24 00:01:40", "202.46.57.199", "1070");
INSERT INTO `wp_rg_form_view` VALUES("13283", "2", "2015-06-24 00:42:22", "71.187.219.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("13284", "7", "2015-06-24 00:42:39", "71.187.219.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("13285", "1", "2015-06-24 00:43:36", "71.187.219.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("13286", "5", "2015-06-24 00:43:41", "71.187.219.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("13287", "6", "2015-06-24 00:54:08", "71.187.219.210", "3");
INSERT INTO `wp_rg_form_view` VALUES("13288", "3", "2015-06-24 01:00:11", "202.46.55.152", "41");
INSERT INTO `wp_rg_form_view` VALUES("13289", "3", "2015-06-24 02:04:05", "207.46.13.146", "48");
INSERT INTO `wp_rg_form_view` VALUES("13290", "3", "2015-06-24 03:08:58", "202.46.49.193", "20");
INSERT INTO `wp_rg_form_view` VALUES("13291", "2", "2015-06-24 04:07:16", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("13292", "3", "2015-06-24 04:07:16", "68.180.228.245", "54");
INSERT INTO `wp_rg_form_view` VALUES("13293", "3", "2015-06-24 05:17:46", "202.46.58.82", "30");
INSERT INTO `wp_rg_form_view` VALUES("13294", "1", "2015-06-24 05:26:22", "134.249.49.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("13295", "3", "2015-06-24 06:04:34", "202.46.55.176", "65");
INSERT INTO `wp_rg_form_view` VALUES("13296", "3", "2015-06-24 07:03:08", "202.46.54.143", "15");
INSERT INTO `wp_rg_form_view` VALUES("13297", "3", "2015-06-24 08:02:28", "202.46.57.168", "47");
INSERT INTO `wp_rg_form_view` VALUES("13298", "3", "2015-06-24 09:01:00", "202.46.51.199", "46");
INSERT INTO `wp_rg_form_view` VALUES("13299", "3", "2015-06-24 10:11:15", "202.46.55.139", "36");
INSERT INTO `wp_rg_form_view` VALUES("13300", "3", "2015-06-24 11:09:47", "202.46.51.157", "41");
INSERT INTO `wp_rg_form_view` VALUES("13301", "3", "2015-06-24 13:47:32", "212.83.177.193", "102");
INSERT INTO `wp_rg_form_view` VALUES("13302", "3", "2015-06-24 14:25:24", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("13303", "3", "2015-06-24 15:10:11", "202.46.53.91", "40");
INSERT INTO `wp_rg_form_view` VALUES("13304", "3", "2015-06-24 16:08:43", "202.46.51.38", "46");
INSERT INTO `wp_rg_form_view` VALUES("13305", "1", "2015-06-24 16:29:43", "68.180.228.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("13306", "3", "2015-06-24 17:07:11", "142.31.144.2", "138");
INSERT INTO `wp_rg_form_view` VALUES("13307", "6", "2015-06-24 17:07:19", "142.31.144.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("13308", "3", "2015-06-24 18:05:45", "202.46.58.157", "81");
INSERT INTO `wp_rg_form_view` VALUES("13309", "1", "2015-06-24 18:51:34", "184.71.24.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("13310", "3", "2015-06-24 19:04:19", "202.46.50.198", "60");
INSERT INTO `wp_rg_form_view` VALUES("13311", "3", "2015-06-24 20:02:50", "202.46.51.207", "137");
INSERT INTO `wp_rg_form_view` VALUES("13312", "1", "2015-06-24 20:17:01", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13313", "3", "2015-06-24 21:01:21", "202.46.49.138", "46");
INSERT INTO `wp_rg_form_view` VALUES("13314", "3", "2015-06-24 22:11:37", "202.46.54.91", "158");
INSERT INTO `wp_rg_form_view` VALUES("13315", "7", "2015-06-24 22:14:40", "81.202.184.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("13316", "1", "2015-06-24 22:14:53", "81.202.184.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("13317", "2", "2015-06-24 22:15:14", "81.202.184.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("13318", "3", "2015-06-24 23:04:43", "220.181.108.171", "70");
INSERT INTO `wp_rg_form_view` VALUES("13319", "7", "2015-06-24 23:52:25", "157.55.39.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("13320", "3", "2015-06-25 00:02:10", "157.55.39.121", "68");
INSERT INTO `wp_rg_form_view` VALUES("13321", "2", "2015-06-25 00:03:44", "157.55.39.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("13322", "3", "2015-06-25 01:07:13", "202.46.58.135", "35");
INSERT INTO `wp_rg_form_view` VALUES("13323", "1", "2015-06-25 01:51:52", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13324", "3", "2015-06-25 02:05:45", "202.46.58.136", "45");
INSERT INTO `wp_rg_form_view` VALUES("13325", "2", "2015-06-25 03:04:17", "202.46.52.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("13326", "3", "2015-06-25 03:04:17", "202.46.52.71", "40");
INSERT INTO `wp_rg_form_view` VALUES("13327", "1", "2015-06-25 03:27:11", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("13328", "3", "2015-06-25 04:02:50", "202.46.50.164", "30");
INSERT INTO `wp_rg_form_view` VALUES("13329", "3", "2015-06-25 05:01:21", "202.46.48.142", "35");
INSERT INTO `wp_rg_form_view` VALUES("13330", "3", "2015-06-25 06:11:38", "202.46.52.42", "46");
INSERT INTO `wp_rg_form_view` VALUES("13331", "3", "2015-06-25 07:10:08", "202.46.50.85", "61");
INSERT INTO `wp_rg_form_view` VALUES("13332", "1", "2015-06-25 07:55:28", "207.46.13.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("13333", "2", "2015-06-25 07:56:26", "157.55.39.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("13334", "3", "2015-06-25 08:08:42", "202.46.58.208", "60");
INSERT INTO `wp_rg_form_view` VALUES("13335", "7", "2015-06-25 08:19:57", "157.55.39.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("13336", "3", "2015-06-25 09:07:12", "202.46.55.69", "113");
INSERT INTO `wp_rg_form_view` VALUES("13337", "1", "2015-06-25 09:26:35", "65.55.209.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("13338", "7", "2015-06-25 09:26:46", "65.55.209.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("13339", "2", "2015-06-25 09:26:48", "65.55.209.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("13340", "3", "2015-06-25 10:05:45", "202.46.58.160", "266");
INSERT INTO `wp_rg_form_view` VALUES("13341", "1", "2015-06-25 10:25:51", "157.56.3.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13342", "2", "2015-06-25 10:25:55", "157.56.3.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13343", "7", "2015-06-25 10:26:04", "157.56.3.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("13344", "5", "2015-06-25 10:29:10", "95.181.178.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("13345", "3", "2015-06-25 11:04:19", "202.46.52.176", "52");
INSERT INTO `wp_rg_form_view` VALUES("13346", "3", "2015-06-25 12:02:48", "202.46.53.199", "55");
INSERT INTO `wp_rg_form_view` VALUES("13347", "1", "2015-06-25 12:25:09", "157.55.39.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("13348", "2", "2015-06-25 12:25:24", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("13349", "3", "2015-06-25 13:01:21", "202.46.52.100", "46");
INSERT INTO `wp_rg_form_view` VALUES("13350", "3", "2015-06-25 14:01:40", "151.80.31.153", "50");
INSERT INTO `wp_rg_form_view` VALUES("13351", "3", "2015-06-25 15:18:25", "66.249.79.120", "41");
INSERT INTO `wp_rg_form_view` VALUES("13352", "3", "2015-06-25 16:08:40", "202.46.58.122", "55");
INSERT INTO `wp_rg_form_view` VALUES("13353", "3", "2015-06-25 17:07:12", "202.46.48.210", "125");
INSERT INTO `wp_rg_form_view` VALUES("13354", "3", "2015-06-25 18:05:45", "202.46.52.176", "50");
INSERT INTO `wp_rg_form_view` VALUES("13355", "3", "2015-06-25 19:04:17", "202.46.51.104", "45");
INSERT INTO `wp_rg_form_view` VALUES("13356", "3", "2015-06-25 20:02:48", "202.46.50.139", "80");
INSERT INTO `wp_rg_form_view` VALUES("13357", "7", "2015-06-25 20:22:19", "199.116.169.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("13358", "6", "2015-06-25 20:26:15", "202.46.51.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("13359", "3", "2015-06-25 21:01:21", "202.46.53.142", "85");
INSERT INTO `wp_rg_form_view` VALUES("13360", "3", "2015-06-25 22:10:02", "198.84.15.151", "52");
INSERT INTO `wp_rg_form_view` VALUES("13361", "3", "2015-06-25 23:21:53", "202.46.57.169", "26");
INSERT INTO `wp_rg_form_view` VALUES("13362", "3", "2015-06-26 00:08:39", "202.46.55.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("13363", "3", "2015-06-26 01:07:12", "202.46.51.88", "46");
INSERT INTO `wp_rg_form_view` VALUES("13364", "1", "2015-06-26 01:59:44", "37.9.62.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("13365", "3", "2015-06-26 02:05:43", "202.46.57.203", "45");
INSERT INTO `wp_rg_form_view` VALUES("13366", "3", "2015-06-26 03:04:16", "202.46.51.166", "75");
INSERT INTO `wp_rg_form_view` VALUES("13367", "3", "2015-06-26 04:02:49", "202.46.51.202", "100");
INSERT INTO `wp_rg_form_view` VALUES("13368", "1", "2015-06-26 04:28:06", "46.105.60.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("13369", "3", "2015-06-26 05:01:20", "202.46.56.202", "67");
INSERT INTO `wp_rg_form_view` VALUES("13370", "3", "2015-06-26 06:04:54", "46.105.60.176", "76");
INSERT INTO `wp_rg_form_view` VALUES("13371", "6", "2015-06-26 06:37:38", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("13372", "3", "2015-06-26 07:00:32", "46.105.60.176", "65");
INSERT INTO `wp_rg_form_view` VALUES("13373", "3", "2015-06-26 08:08:40", "202.46.52.143", "55");
INSERT INTO `wp_rg_form_view` VALUES("13374", "3", "2015-06-26 09:04:14", "46.105.60.176", "60");
INSERT INTO `wp_rg_form_view` VALUES("13375", "3", "2015-06-26 10:01:00", "5.9.17.118", "46");
INSERT INTO `wp_rg_form_view` VALUES("13376", "3", "2015-06-26 11:04:15", "202.46.54.166", "26");
INSERT INTO `wp_rg_form_view` VALUES("13377", "3", "2015-06-26 12:02:48", "202.46.55.152", "61");
INSERT INTO `wp_rg_form_view` VALUES("13378", "1", "2015-06-26 12:28:07", "158.222.0.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("13379", "3", "2015-06-26 13:01:20", "202.46.53.152", "56");
INSERT INTO `wp_rg_form_view` VALUES("13380", "3", "2015-06-26 14:11:35", "202.46.48.196", "36");
INSERT INTO `wp_rg_form_view` VALUES("13381", "3", "2015-06-26 15:09:52", "202.46.56.189", "30");
INSERT INTO `wp_rg_form_view` VALUES("13382", "3", "2015-06-26 16:08:25", "202.46.54.207", "90");
INSERT INTO `wp_rg_form_view` VALUES("13383", "1", "2015-06-26 16:16:17", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13384", "3", "2015-06-26 17:07:04", "202.46.57.176", "98");
INSERT INTO `wp_rg_form_view` VALUES("13385", "3", "2015-06-26 18:05:30", "202.46.55.155", "40");
INSERT INTO `wp_rg_form_view` VALUES("13386", "3", "2015-06-26 19:04:02", "202.46.49.202", "96");
INSERT INTO `wp_rg_form_view` VALUES("13387", "3", "2015-06-26 20:02:34", "202.46.48.149", "36");
INSERT INTO `wp_rg_form_view` VALUES("13388", "3", "2015-06-26 21:01:06", "202.46.51.168", "105");
INSERT INTO `wp_rg_form_view` VALUES("13389", "3", "2015-06-26 22:11:21", "202.46.54.204", "55");
INSERT INTO `wp_rg_form_view` VALUES("13390", "1", "2015-06-26 22:33:27", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13391", "1", "2015-06-26 22:33:27", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("13392", "3", "2015-06-26 23:09:52", "202.46.51.176", "53");
INSERT INTO `wp_rg_form_view` VALUES("13393", "3", "2015-06-27 00:08:25", "202.46.56.198", "82");
INSERT INTO `wp_rg_form_view` VALUES("13394", "7", "2015-06-27 00:59:31", "104.40.147.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("13395", "2", "2015-06-27 00:59:34", "104.40.147.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("13396", "1", "2015-06-27 00:59:34", "104.40.147.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("13397", "3", "2015-06-27 01:06:57", "202.46.52.173", "45");
INSERT INTO `wp_rg_form_view` VALUES("13398", "3", "2015-06-27 02:05:30", "202.46.58.180", "35");
INSERT INTO `wp_rg_form_view` VALUES("13399", "7", "2015-06-27 02:53:12", "66.249.64.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("13400", "3", "2015-06-27 03:04:01", "202.46.50.165", "35");
INSERT INTO `wp_rg_form_view` VALUES("13401", "3", "2015-06-27 04:02:35", "202.46.54.190", "40");
INSERT INTO `wp_rg_form_view` VALUES("13402", "3", "2015-06-27 05:01:08", "202.46.49.157", "50");
INSERT INTO `wp_rg_form_view` VALUES("13403", "3", "2015-06-27 06:11:21", "202.46.49.205", "45");
INSERT INTO `wp_rg_form_view` VALUES("13404", "3", "2015-06-27 07:09:52", "202.46.52.162", "35");
INSERT INTO `wp_rg_form_view` VALUES("13405", "3", "2015-06-27 08:06:22", "66.249.64.230", "35");
INSERT INTO `wp_rg_form_view` VALUES("13406", "3", "2015-06-27 09:04:16", "54.196.59.174", "56");
INSERT INTO `wp_rg_form_view` VALUES("13407", "3", "2015-06-27 10:05:29", "202.46.52.156", "40");
INSERT INTO `wp_rg_form_view` VALUES("13408", "3", "2015-06-27 11:04:01", "202.46.56.199", "35");
INSERT INTO `wp_rg_form_view` VALUES("13409", "3", "2015-06-27 12:02:33", "202.46.52.140", "30");
INSERT INTO `wp_rg_form_view` VALUES("13410", "7", "2015-06-27 12:36:35", "188.165.15.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("13411", "3", "2015-06-27 13:01:06", "202.46.53.145", "364");
INSERT INTO `wp_rg_form_view` VALUES("13412", "7", "2015-06-27 13:21:18", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("13413", "2", "2015-06-27 13:21:35", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("13414", "1", "2015-06-27 13:21:39", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("13415", "5", "2015-06-27 13:24:19", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("13416", "3", "2015-06-27 14:00:19", "188.165.15.234", "46");
INSERT INTO `wp_rg_form_view` VALUES("13417", "3", "2015-06-27 15:09:52", "202.46.55.146", "46");
INSERT INTO `wp_rg_form_view` VALUES("13418", "3", "2015-06-27 16:01:19", "66.249.64.225", "31");
INSERT INTO `wp_rg_form_view` VALUES("13419", "3", "2015-06-27 17:01:54", "202.46.56.206", "25");
INSERT INTO `wp_rg_form_view` VALUES("13420", "7", "2015-06-27 17:18:39", "202.46.52.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("13421", "3", "2015-06-27 18:05:29", "202.46.58.182", "95");
INSERT INTO `wp_rg_form_view` VALUES("13422", "3", "2015-06-27 19:04:01", "202.46.54.210", "45");
INSERT INTO `wp_rg_form_view` VALUES("13423", "3", "2015-06-27 20:02:33", "202.46.51.131", "39");
INSERT INTO `wp_rg_form_view` VALUES("13424", "3", "2015-06-27 21:01:06", "202.46.58.190", "66");
INSERT INTO `wp_rg_form_view` VALUES("13425", "3", "2015-06-27 22:02:42", "208.115.113.83", "26");
INSERT INTO `wp_rg_form_view` VALUES("13426", "3", "2015-06-27 23:09:52", "202.46.51.209", "50");
INSERT INTO `wp_rg_form_view` VALUES("13427", "3", "2015-06-28 00:08:24", "202.46.52.153", "40");
INSERT INTO `wp_rg_form_view` VALUES("13428", "3", "2015-06-28 01:04:09", "24.69.66.97", "35");
INSERT INTO `wp_rg_form_view` VALUES("13429", "3", "2015-06-28 02:00:42", "141.8.143.183", "36");
INSERT INTO `wp_rg_form_view` VALUES("13430", "3", "2015-06-28 03:02:05", "207.46.13.40", "41");
INSERT INTO `wp_rg_form_view` VALUES("13431", "3", "2015-06-28 04:02:35", "202.46.52.172", "25");
INSERT INTO `wp_rg_form_view` VALUES("13432", "3", "2015-06-28 05:01:06", "202.46.55.152", "115");
INSERT INTO `wp_rg_form_view` VALUES("13433", "3", "2015-06-28 06:11:20", "202.46.58.132", "36");
INSERT INTO `wp_rg_form_view` VALUES("13434", "3", "2015-06-28 07:09:52", "202.46.52.143", "45");
INSERT INTO `wp_rg_form_view` VALUES("13435", "3", "2015-06-28 08:08:24", "202.46.58.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("13436", "3", "2015-06-28 09:06:59", "202.46.58.192", "40");
INSERT INTO `wp_rg_form_view` VALUES("13437", "3", "2015-06-28 10:05:29", "202.46.51.154", "51");
INSERT INTO `wp_rg_form_view` VALUES("13438", "3", "2015-06-28 11:04:03", "202.46.51.183", "37");
INSERT INTO `wp_rg_form_view` VALUES("13439", "3", "2015-06-28 12:02:33", "202.46.52.172", "35");
INSERT INTO `wp_rg_form_view` VALUES("13440", "3", "2015-06-28 13:01:05", "202.46.49.193", "41");
INSERT INTO `wp_rg_form_view` VALUES("13441", "3", "2015-06-28 14:02:11", "154.5.205.95", "47");
INSERT INTO `wp_rg_form_view` VALUES("13442", "3", "2015-06-28 15:09:52", "202.46.52.170", "50");
INSERT INTO `wp_rg_form_view` VALUES("13443", "3", "2015-06-28 16:20:07", "202.46.52.179", "52");
INSERT INTO `wp_rg_form_view` VALUES("13444", "3", "2015-06-28 17:06:58", "202.46.57.207", "62");
INSERT INTO `wp_rg_form_view` VALUES("13445", "6", "2015-06-28 17:53:47", "202.46.49.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("13446", "1", "2015-06-28 17:55:26", "104.142.119.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("13447", "3", "2015-06-28 18:05:29", "202.46.55.175", "30");
INSERT INTO `wp_rg_form_view` VALUES("13448", "7", "2015-06-28 18:40:35", "202.46.51.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("13449", "3", "2015-06-28 19:04:00", "202.46.48.198", "31");
INSERT INTO `wp_rg_form_view` VALUES("13450", "3", "2015-06-28 20:02:34", "202.46.51.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("13451", "3", "2015-06-28 21:01:05", "202.46.50.165", "56");
INSERT INTO `wp_rg_form_view` VALUES("13452", "3", "2015-06-28 22:11:20", "202.46.52.143", "46");
INSERT INTO `wp_rg_form_view` VALUES("13453", "3", "2015-06-28 23:09:53", "202.46.48.137", "40");
INSERT INTO `wp_rg_form_view` VALUES("13454", "2", "2015-06-28 23:51:01", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("13455", "3", "2015-06-29 00:08:24", "202.46.51.179", "36");
INSERT INTO `wp_rg_form_view` VALUES("13456", "3", "2015-06-29 01:06:58", "202.46.49.138", "46");
INSERT INTO `wp_rg_form_view` VALUES("13457", "3", "2015-06-29 02:05:28", "202.46.53.210", "30");
INSERT INTO `wp_rg_form_view` VALUES("13458", "3", "2015-06-29 03:04:01", "202.46.57.184", "51");
INSERT INTO `wp_rg_form_view` VALUES("13459", "3", "2015-06-29 04:02:33", "202.46.54.144", "30");
INSERT INTO `wp_rg_form_view` VALUES("13460", "3", "2015-06-29 05:01:06", "202.46.51.184", "40");
INSERT INTO `wp_rg_form_view` VALUES("13461", "3", "2015-06-29 06:11:22", "202.46.58.193", "312");
INSERT INTO `wp_rg_form_view` VALUES("13462", "7", "2015-06-29 06:14:09", "104.131.255.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("13463", "2", "2015-06-29 06:14:23", "104.131.255.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("13464", "1", "2015-06-29 06:14:25", "104.131.255.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("13465", "5", "2015-06-29 06:16:45", "104.131.255.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("13466", "6", "2015-06-29 07:09:29", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("13467", "3", "2015-06-29 07:09:29", "66.249.79.120", "51");
INSERT INTO `wp_rg_form_view` VALUES("13468", "3", "2015-06-29 08:20:07", "202.46.55.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("13469", "3", "2015-06-29 09:06:56", "202.46.54.158", "26");
INSERT INTO `wp_rg_form_view` VALUES("13470", "3", "2015-06-29 10:05:28", "202.46.53.165", "36");
INSERT INTO `wp_rg_form_view` VALUES("13471", "3", "2015-06-29 11:04:00", "202.46.48.141", "30");
INSERT INTO `wp_rg_form_view` VALUES("13472", "3", "2015-06-29 12:02:33", "202.46.54.140", "35");
INSERT INTO `wp_rg_form_view` VALUES("13473", "3", "2015-06-29 13:01:06", "202.46.58.189", "35");
INSERT INTO `wp_rg_form_view` VALUES("13474", "3", "2015-06-29 14:11:19", "202.46.53.151", "35");
INSERT INTO `wp_rg_form_view` VALUES("13475", "3", "2015-06-29 15:12:21", "207.46.13.40", "32");
INSERT INTO `wp_rg_form_view` VALUES("13476", "3", "2015-06-29 16:08:23", "202.46.56.201", "41");
INSERT INTO `wp_rg_form_view` VALUES("13477", "3", "2015-06-29 17:06:56", "202.46.54.163", "31");
INSERT INTO `wp_rg_form_view` VALUES("13478", "3", "2015-06-29 18:05:29", "202.46.56.204", "41");
INSERT INTO `wp_rg_form_view` VALUES("13479", "3", "2015-06-29 19:04:00", "202.46.52.155", "46");
INSERT INTO `wp_rg_form_view` VALUES("13480", "1", "2015-06-29 19:39:42", "204.12.239.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("13481", "3", "2015-06-29 20:02:36", "202.46.55.157", "66");
INSERT INTO `wp_rg_form_view` VALUES("13482", "3", "2015-06-29 21:01:04", "202.46.53.158", "70");
INSERT INTO `wp_rg_form_view` VALUES("13483", "2", "2015-06-29 21:40:02", "151.80.31.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("13484", "3", "2015-06-29 22:07:21", "66.43.50.8", "40");
INSERT INTO `wp_rg_form_view` VALUES("13485", "3", "2015-06-29 23:13:06", "66.249.79.133", "37");
INSERT INTO `wp_rg_form_view` VALUES("13486", "3", "2015-06-30 00:08:23", "202.46.54.180", "49");
INSERT INTO `wp_rg_form_view` VALUES("13487", "3", "2015-06-30 01:06:55", "202.46.48.136", "191");
INSERT INTO `wp_rg_form_view` VALUES("13488", "7", "2015-06-30 01:18:24", "86.184.126.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("13489", "1", "2015-06-30 01:18:37", "86.184.126.223", "5");
INSERT INTO `wp_rg_form_view` VALUES("13490", "2", "2015-06-30 01:18:43", "86.184.126.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("13491", "3", "2015-06-30 02:05:28", "202.46.58.134", "36");
INSERT INTO `wp_rg_form_view` VALUES("13492", "3", "2015-06-30 03:04:00", "202.46.54.141", "45");
INSERT INTO `wp_rg_form_view` VALUES("13493", "1", "2015-06-30 03:28:47", "188.165.15.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("13494", "3", "2015-06-30 04:02:33", "202.46.50.183", "69");
INSERT INTO `wp_rg_form_view` VALUES("13495", "3", "2015-06-30 05:01:04", "202.46.58.186", "89");
INSERT INTO `wp_rg_form_view` VALUES("13496", "6", "2015-06-30 05:24:31", "202.46.54.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("13497", "3", "2015-06-30 06:11:20", "202.46.49.202", "25");
INSERT INTO `wp_rg_form_view` VALUES("13498", "3", "2015-06-30 07:08:28", "77.75.78.162", "50");
INSERT INTO `wp_rg_form_view` VALUES("13499", "3", "2015-06-30 08:08:24", "202.46.58.139", "35");
INSERT INTO `wp_rg_form_view` VALUES("13500", "3", "2015-06-30 09:06:55", "202.46.54.142", "46");
INSERT INTO `wp_rg_form_view` VALUES("13501", "3", "2015-06-30 10:05:28", "202.46.52.203", "35");
INSERT INTO `wp_rg_form_view` VALUES("13502", "3", "2015-06-30 11:04:00", "202.46.57.167", "35");
INSERT INTO `wp_rg_form_view` VALUES("13503", "3", "2015-06-30 12:02:32", "202.46.58.150", "45");
INSERT INTO `wp_rg_form_view` VALUES("13504", "1", "2015-06-30 12:06:05", "213.133.97.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("13505", "3", "2015-06-30 13:07:27", "217.69.133.231", "63");
INSERT INTO `wp_rg_form_view` VALUES("13506", "2", "2015-06-30 13:36:18", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("13507", "3", "2015-06-30 14:11:19", "202.46.58.188", "46");
INSERT INTO `wp_rg_form_view` VALUES("13508", "3", "2015-06-30 15:09:55", "202.46.48.194", "45");
INSERT INTO `wp_rg_form_view` VALUES("13509", "3", "2015-06-30 16:08:24", "202.46.49.196", "180");
INSERT INTO `wp_rg_form_view` VALUES("13510", "7", "2015-06-30 16:48:33", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("13511", "5", "2015-06-30 16:48:46", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("13512", "2", "2015-06-30 16:49:17", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("13513", "3", "2015-06-30 17:06:56", "202.46.58.160", "40");
INSERT INTO `wp_rg_form_view` VALUES("13514", "6", "2015-06-30 17:52:08", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("13515", "3", "2015-06-30 18:05:28", "202.46.54.132", "30");
INSERT INTO `wp_rg_form_view` VALUES("13516", "1", "2015-06-30 19:02:02", "142.104.2.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("13517", "3", "2015-06-30 19:02:02", "142.104.2.57", "55");
INSERT INTO `wp_rg_form_view` VALUES("13518", "3", "2015-06-30 20:02:33", "202.46.50.154", "31");
INSERT INTO `wp_rg_form_view` VALUES("13519", "3", "2015-06-30 21:00:11", "217.69.133.227", "31");
INSERT INTO `wp_rg_form_view` VALUES("13520", "3", "2015-06-30 22:11:19", "202.46.58.198", "73");
INSERT INTO `wp_rg_form_view` VALUES("13521", "3", "2015-06-30 23:09:52", "202.46.56.130", "35");
INSERT INTO `wp_rg_form_view` VALUES("13522", "7", "2015-06-30 23:56:42", "202.46.57.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("13523", "3", "2015-07-01 00:08:23", "202.46.58.183", "47");
INSERT INTO `wp_rg_form_view` VALUES("13524", "3", "2015-07-01 01:06:55", "202.46.52.143", "82");
INSERT INTO `wp_rg_form_view` VALUES("13525", "3", "2015-07-01 02:05:27", "202.46.52.146", "40");
INSERT INTO `wp_rg_form_view` VALUES("13526", "1", "2015-07-01 02:42:20", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("13527", "3", "2015-07-01 03:03:59", "202.46.58.139", "91");
INSERT INTO `wp_rg_form_view` VALUES("13528", "3", "2015-07-01 04:02:32", "202.46.52.176", "51");
INSERT INTO `wp_rg_form_view` VALUES("13529", "3", "2015-07-01 05:01:05", "202.46.53.205", "40");
INSERT INTO `wp_rg_form_view` VALUES("13530", "3", "2015-07-01 06:11:18", "202.46.58.208", "45");
INSERT INTO `wp_rg_form_view` VALUES("13531", "2", "2015-07-01 06:12:36", "46.4.189.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("13532", "3", "2015-07-01 07:09:52", "202.46.53.204", "20");
INSERT INTO `wp_rg_form_view` VALUES("13533", "3", "2015-07-01 08:00:16", "217.69.133.69", "35");
INSERT INTO `wp_rg_form_view` VALUES("13534", "3", "2015-07-01 09:06:55", "202.46.51.180", "40");
INSERT INTO `wp_rg_form_view` VALUES("13535", "3", "2015-07-01 10:05:28", "202.46.50.133", "40");
INSERT INTO `wp_rg_form_view` VALUES("13536", "3", "2015-07-01 11:03:59", "202.46.53.175", "51");
INSERT INTO `wp_rg_form_view` VALUES("13537", "3", "2015-07-01 12:02:31", "202.46.54.181", "45");
INSERT INTO `wp_rg_form_view` VALUES("13538", "3", "2015-07-01 13:01:04", "202.46.50.163", "60");
INSERT INTO `wp_rg_form_view` VALUES("13539", "1", "2015-07-01 13:46:15", "141.8.143.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("13540", "3", "2015-07-01 14:11:19", "202.46.55.182", "40");
INSERT INTO `wp_rg_form_view` VALUES("13541", "3", "2015-07-01 15:09:50", "202.46.48.206", "80");
INSERT INTO `wp_rg_form_view` VALUES("13542", "1", "2015-07-01 15:14:25", "107.150.42.226", "4");
INSERT INTO `wp_rg_form_view` VALUES("13543", "7", "2015-07-01 15:41:01", "204.124.183.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("13544", "3", "2015-07-01 16:08:24", "202.46.58.180", "30");
INSERT INTO `wp_rg_form_view` VALUES("13545", "3", "2015-07-01 17:01:24", "207.46.13.43", "120");
INSERT INTO `wp_rg_form_view` VALUES("13546", "3", "2015-07-01 18:01:33", "46.105.60.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("13547", "3", "2015-07-01 19:02:11", "217.69.133.232", "71");
INSERT INTO `wp_rg_form_view` VALUES("13548", "3", "2015-07-01 20:02:31", "202.46.51.170", "65");
INSERT INTO `wp_rg_form_view` VALUES("13549", "1", "2015-07-01 20:23:57", "204.12.239.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("13550", "3", "2015-07-01 21:01:03", "202.46.56.136", "55");
INSERT INTO `wp_rg_form_view` VALUES("13551", "7", "2015-07-01 21:12:49", "202.46.49.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("13552", "3", "2015-07-01 22:09:26", "46.105.60.176", "55");
INSERT INTO `wp_rg_form_view` VALUES("13553", "6", "2015-07-01 22:10:39", "217.69.133.227", "4");
INSERT INTO `wp_rg_form_view` VALUES("13554", "3", "2015-07-01 23:01:14", "157.55.39.163", "51");
INSERT INTO `wp_rg_form_view` VALUES("13555", "3", "2015-07-02 00:03:28", "66.249.79.146", "40");
INSERT INTO `wp_rg_form_view` VALUES("13556", "1", "2015-07-02 01:02:52", "198.27.70.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("13557", "3", "2015-07-02 01:02:52", "198.27.70.56", "91");
INSERT INTO `wp_rg_form_view` VALUES("13558", "3", "2015-07-02 02:05:26", "202.46.55.137", "35");
INSERT INTO `wp_rg_form_view` VALUES("13559", "6", "2015-07-02 02:53:32", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("13560", "3", "2015-07-02 03:03:59", "202.46.53.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("13561", "3", "2015-07-02 04:02:32", "202.46.56.136", "82");
INSERT INTO `wp_rg_form_view` VALUES("13562", "1", "2015-07-02 04:08:18", "100.43.91.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("13563", "3", "2015-07-02 05:01:03", "202.46.58.159", "35");
INSERT INTO `wp_rg_form_view` VALUES("13564", "3", "2015-07-02 06:03:10", "217.69.133.69", "66");
INSERT INTO `wp_rg_form_view` VALUES("13565", "3", "2015-07-02 07:06:59", "207.46.13.81", "36");
INSERT INTO `wp_rg_form_view` VALUES("13566", "3", "2015-07-02 08:08:22", "202.46.51.175", "46");
INSERT INTO `wp_rg_form_view` VALUES("13567", "3", "2015-07-02 09:06:17", "157.55.39.4", "57");
INSERT INTO `wp_rg_form_view` VALUES("13568", "3", "2015-07-02 10:17:09", "202.46.56.195", "46");
INSERT INTO `wp_rg_form_view` VALUES("13569", "2", "2015-07-02 10:47:10", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("13570", "3", "2015-07-02 11:15:42", "202.46.53.177", "25");
INSERT INTO `wp_rg_form_view` VALUES("13571", "3", "2015-07-02 12:02:31", "202.46.54.130", "35");
INSERT INTO `wp_rg_form_view` VALUES("13572", "6", "2015-07-02 12:55:51", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("13573", "3", "2015-07-02 13:01:03", "202.46.57.165", "40");
INSERT INTO `wp_rg_form_view` VALUES("13574", "3", "2015-07-02 14:18:09", "207.46.13.81", "30");
INSERT INTO `wp_rg_form_view` VALUES("13575", "3", "2015-07-02 15:09:55", "202.46.48.208", "45");
INSERT INTO `wp_rg_form_view` VALUES("13576", "3", "2015-07-02 16:08:22", "202.46.54.182", "35");
INSERT INTO `wp_rg_form_view` VALUES("13577", "3", "2015-07-02 17:06:54", "202.46.51.197", "40");
INSERT INTO `wp_rg_form_view` VALUES("13578", "3", "2015-07-02 18:05:28", "202.46.53.197", "25");
INSERT INTO `wp_rg_form_view` VALUES("13579", "1", "2015-07-02 18:52:17", "202.46.48.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("13580", "3", "2015-07-02 19:04:00", "202.46.56.180", "60");
INSERT INTO `wp_rg_form_view` VALUES("13581", "3", "2015-07-02 20:02:34", "202.46.58.188", "57");
INSERT INTO `wp_rg_form_view` VALUES("13582", "1", "2015-07-02 20:12:05", "205.210.188.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("13583", "3", "2015-07-02 21:01:03", "202.46.52.149", "35");
INSERT INTO `wp_rg_form_view` VALUES("13584", "3", "2015-07-02 22:11:17", "202.46.52.142", "45");
INSERT INTO `wp_rg_form_view` VALUES("13585", "3", "2015-07-02 23:22:15", "202.46.57.160", "20");
INSERT INTO `wp_rg_form_view` VALUES("13586", "3", "2015-07-03 00:02:53", "157.55.39.13", "45");
INSERT INTO `wp_rg_form_view` VALUES("13587", "3", "2015-07-03 01:00:59", "220.181.108.83", "51");
INSERT INTO `wp_rg_form_view` VALUES("13588", "2", "2015-07-03 01:12:46", "37.113.150.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("13589", "3", "2015-07-03 02:05:26", "202.46.54.184", "55");
INSERT INTO `wp_rg_form_view` VALUES("13590", "3", "2015-07-03 03:04:00", "202.46.51.163", "55");
INSERT INTO `wp_rg_form_view` VALUES("13591", "3", "2015-07-03 04:02:31", "202.46.49.145", "141");
INSERT INTO `wp_rg_form_view` VALUES("13592", "3", "2015-07-03 05:01:03", "202.46.50.162", "35");
INSERT INTO `wp_rg_form_view` VALUES("13593", "3", "2015-07-03 06:11:17", "202.46.58.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("13594", "3", "2015-07-03 07:09:49", "202.46.55.154", "36");
INSERT INTO `wp_rg_form_view` VALUES("13595", "3", "2015-07-03 08:08:27", "202.46.54.196", "55");
INSERT INTO `wp_rg_form_view` VALUES("13596", "1", "2015-07-03 08:36:06", "204.12.239.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("13597", "3", "2015-07-03 09:06:55", "202.46.57.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("13598", "3", "2015-07-03 10:05:26", "202.46.53.167", "40");
INSERT INTO `wp_rg_form_view` VALUES("13599", "3", "2015-07-03 11:02:51", "141.8.143.183", "90");
INSERT INTO `wp_rg_form_view` VALUES("13600", "3", "2015-07-03 12:02:31", "202.46.51.164", "85");
INSERT INTO `wp_rg_form_view` VALUES("13601", "2", "2015-07-03 12:26:43", "27.18.95.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("13602", "3", "2015-07-03 13:01:02", "202.46.53.155", "65");
INSERT INTO `wp_rg_form_view` VALUES("13603", "3", "2015-07-03 14:11:17", "202.46.51.204", "93");
INSERT INTO `wp_rg_form_view` VALUES("13604", "1", "2015-07-03 14:49:00", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13605", "3", "2015-07-03 15:02:47", "157.55.39.170", "66");
INSERT INTO `wp_rg_form_view` VALUES("13606", "3", "2015-07-03 16:01:03", "157.55.39.13", "165");
INSERT INTO `wp_rg_form_view` VALUES("13607", "7", "2015-07-03 16:11:54", "62.210.105.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("13608", "1", "2015-07-03 16:12:24", "62.210.105.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("13609", "2", "2015-07-03 16:12:36", "62.210.105.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("13610", "3", "2015-07-03 17:16:50", "188.165.15.50", "166");
INSERT INTO `wp_rg_form_view` VALUES("13611", "7", "2015-07-03 17:49:16", "66.208.47.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("13612", "1", "2015-07-03 17:49:26", "66.208.47.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("13613", "2", "2015-07-03 17:49:32", "66.208.47.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("13614", "3", "2015-07-03 18:05:28", "202.46.57.187", "60");
INSERT INTO `wp_rg_form_view` VALUES("13615", "1", "2015-07-03 18:52:19", "100.43.91.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("13616", "3", "2015-07-03 19:04:01", "202.46.57.204", "50");
INSERT INTO `wp_rg_form_view` VALUES("13617", "3", "2015-07-03 20:14:13", "202.46.52.145", "35");
INSERT INTO `wp_rg_form_view` VALUES("13618", "3", "2015-07-03 21:01:02", "202.46.54.169", "45");
INSERT INTO `wp_rg_form_view` VALUES("13619", "3", "2015-07-03 22:22:59", "202.46.58.181", "176");
INSERT INTO `wp_rg_form_view` VALUES("13620", "7", "2015-07-03 22:55:56", "66.208.47.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("13621", "1", "2015-07-03 22:56:09", "66.208.47.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("13622", "2", "2015-07-03 22:56:19", "66.208.47.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("13623", "3", "2015-07-03 23:09:49", "202.46.58.184", "30");
INSERT INTO `wp_rg_form_view` VALUES("13624", "3", "2015-07-04 00:08:23", "202.46.50.210", "105");
INSERT INTO `wp_rg_form_view` VALUES("13625", "7", "2015-07-04 00:53:29", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("13626", "3", "2015-07-04 01:13:29", "202.46.57.163", "66");
INSERT INTO `wp_rg_form_view` VALUES("13627", "3", "2015-07-04 02:05:34", "100.43.91.23", "45");
INSERT INTO `wp_rg_form_view` VALUES("13628", "2", "2015-07-04 02:29:48", "151.80.31.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("13629", "3", "2015-07-04 03:13:29", "202.46.52.210", "15");
INSERT INTO `wp_rg_form_view` VALUES("13630", "3", "2015-07-04 04:13:29", "202.46.49.149", "30");
INSERT INTO `wp_rg_form_view` VALUES("13631", "3", "2015-07-04 05:13:29", "202.46.55.157", "123");
INSERT INTO `wp_rg_form_view` VALUES("13632", "1", "2015-07-04 05:53:57", "45.55.229.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("13633", "2", "2015-07-04 05:53:57", "45.55.229.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("13634", "7", "2015-07-04 05:53:57", "45.55.229.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("13635", "3", "2015-07-04 06:13:29", "202.46.50.138", "25");
INSERT INTO `wp_rg_form_view` VALUES("13636", "3", "2015-07-04 07:08:48", "141.8.143.183", "83");
INSERT INTO `wp_rg_form_view` VALUES("13637", "3", "2015-07-04 08:13:29", "202.46.53.178", "42");
INSERT INTO `wp_rg_form_view` VALUES("13638", "1", "2015-07-04 08:30:06", "95.108.158.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("13639", "3", "2015-07-04 09:13:30", "202.46.53.154", "25");
INSERT INTO `wp_rg_form_view` VALUES("13640", "3", "2015-07-04 10:07:08", "123.29.67.11", "36");
INSERT INTO `wp_rg_form_view` VALUES("13641", "3", "2015-07-04 11:13:29", "202.46.52.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("13642", "3", "2015-07-04 12:09:23", "66.249.79.133", "95");
INSERT INTO `wp_rg_form_view` VALUES("13643", "3", "2015-07-04 13:13:29", "202.46.55.179", "30");
INSERT INTO `wp_rg_form_view` VALUES("13644", "3", "2015-07-04 14:13:28", "202.46.58.184", "30");
INSERT INTO `wp_rg_form_view` VALUES("13645", "3", "2015-07-04 15:13:28", "202.46.50.164", "30");
INSERT INTO `wp_rg_form_view` VALUES("13646", "3", "2015-07-04 16:02:51", "66.249.79.120", "50");
INSERT INTO `wp_rg_form_view` VALUES("13647", "3", "2015-07-04 17:13:29", "202.46.49.194", "25");
INSERT INTO `wp_rg_form_view` VALUES("13648", "3", "2015-07-04 18:13:31", "202.46.48.194", "20");
INSERT INTO `wp_rg_form_view` VALUES("13649", "3", "2015-07-04 19:13:29", "202.46.57.161", "30");
INSERT INTO `wp_rg_form_view` VALUES("13650", "3", "2015-07-04 20:13:29", "202.46.55.183", "30");
INSERT INTO `wp_rg_form_view` VALUES("13651", "3", "2015-07-04 21:13:29", "202.46.53.143", "20");
INSERT INTO `wp_rg_form_view` VALUES("13652", "3", "2015-07-04 22:13:29", "202.46.49.147", "30");
INSERT INTO `wp_rg_form_view` VALUES("13653", "3", "2015-07-04 23:12:33", "100.43.85.16", "40");
INSERT INTO `wp_rg_form_view` VALUES("13654", "3", "2015-07-05 00:13:29", "202.46.58.210", "51");
INSERT INTO `wp_rg_form_view` VALUES("13655", "2", "2015-07-05 00:23:04", "188.165.15.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("13656", "3", "2015-07-05 01:13:30", "202.46.51.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("13657", "3", "2015-07-05 02:28:30", "202.46.58.204", "45");
INSERT INTO `wp_rg_form_view` VALUES("13658", "1", "2015-07-05 02:55:07", "204.12.239.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("13659", "3", "2015-07-05 03:13:31", "202.46.55.154", "40");
INSERT INTO `wp_rg_form_view` VALUES("13660", "6", "2015-07-05 03:42:28", "68.180.228.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("13661", "1", "2015-07-05 04:12:12", "221.235.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("13662", "3", "2015-07-05 04:12:12", "221.235.66.231", "36");
INSERT INTO `wp_rg_form_view` VALUES("13663", "3", "2015-07-05 05:11:27", "66.249.79.133", "35");
INSERT INTO `wp_rg_form_view` VALUES("13664", "3", "2015-07-05 06:13:30", "202.46.58.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("13665", "3", "2015-07-05 07:13:33", "202.46.52.147", "30");
INSERT INTO `wp_rg_form_view` VALUES("13666", "3", "2015-07-05 08:13:30", "202.46.52.146", "30");
INSERT INTO `wp_rg_form_view` VALUES("13667", "1", "2015-07-05 08:24:23", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13668", "3", "2015-07-05 09:06:41", "220.181.108.160", "45");
INSERT INTO `wp_rg_form_view` VALUES("13669", "3", "2015-07-05 10:00:11", "208.115.113.83", "37");
INSERT INTO `wp_rg_form_view` VALUES("13670", "3", "2015-07-05 11:13:30", "202.46.55.170", "25");
INSERT INTO `wp_rg_form_view` VALUES("13671", "3", "2015-07-05 12:12:07", "91.200.12.130", "101");
INSERT INTO `wp_rg_form_view` VALUES("13672", "3", "2015-07-05 13:08:51", "66.249.79.120", "30");
INSERT INTO `wp_rg_form_view` VALUES("13673", "3", "2015-07-05 14:13:29", "202.46.52.164", "25");
INSERT INTO `wp_rg_form_view` VALUES("13674", "3", "2015-07-05 15:08:16", "157.55.39.120", "36");
INSERT INTO `wp_rg_form_view` VALUES("13675", "3", "2015-07-05 16:13:29", "202.46.49.136", "34");
INSERT INTO `wp_rg_form_view` VALUES("13676", "3", "2015-07-05 17:13:36", "202.46.58.198", "40");
INSERT INTO `wp_rg_form_view` VALUES("13677", "3", "2015-07-05 18:03:24", "100.43.81.134", "30");
INSERT INTO `wp_rg_form_view` VALUES("13678", "3", "2015-07-05 19:19:52", "188.165.15.50", "15");
INSERT INTO `wp_rg_form_view` VALUES("13679", "3", "2015-07-05 20:13:30", "202.46.58.152", "35");
INSERT INTO `wp_rg_form_view` VALUES("13680", "3", "2015-07-05 21:13:30", "202.46.53.149", "25");
INSERT INTO `wp_rg_form_view` VALUES("13681", "3", "2015-07-05 22:13:30", "202.46.54.137", "30");
INSERT INTO `wp_rg_form_view` VALUES("13682", "3", "2015-07-05 23:13:30", "202.46.53.196", "41");
INSERT INTO `wp_rg_form_view` VALUES("13683", "3", "2015-07-06 00:28:29", "202.46.50.187", "15");
INSERT INTO `wp_rg_form_view` VALUES("13684", "3", "2015-07-06 01:13:32", "202.46.58.195", "25");
INSERT INTO `wp_rg_form_view` VALUES("13685", "3", "2015-07-06 02:01:38", "220.181.108.184", "31");
INSERT INTO `wp_rg_form_view` VALUES("13686", "3", "2015-07-06 03:07:02", "199.217.117.207", "20");
INSERT INTO `wp_rg_form_view` VALUES("13687", "3", "2015-07-06 04:08:59", "188.165.15.50", "40");
INSERT INTO `wp_rg_form_view` VALUES("13688", "3", "2015-07-06 05:06:54", "202.46.53.200", "40");
INSERT INTO `wp_rg_form_view` VALUES("13689", "6", "2015-07-06 05:50:25", "188.165.15.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("13690", "3", "2015-07-06 06:05:27", "202.46.53.210", "178");
INSERT INTO `wp_rg_form_view` VALUES("13691", "1", "2015-07-06 06:06:03", "204.12.239.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("13692", "3", "2015-07-06 07:04:00", "202.46.52.151", "40");
INSERT INTO `wp_rg_form_view` VALUES("13693", "3", "2015-07-06 08:14:14", "202.46.56.198", "20");
INSERT INTO `wp_rg_form_view` VALUES("13694", "3", "2015-07-06 09:01:04", "202.46.55.146", "41");
INSERT INTO `wp_rg_form_view` VALUES("13695", "3", "2015-07-06 10:11:18", "202.46.48.196", "55");
INSERT INTO `wp_rg_form_view` VALUES("13696", "3", "2015-07-06 11:06:51", "77.75.79.95", "70");
INSERT INTO `wp_rg_form_view` VALUES("13697", "2", "2015-07-06 11:29:41", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13698", "3", "2015-07-06 12:10:22", "188.165.15.50", "50");
INSERT INTO `wp_rg_form_view` VALUES("13699", "3", "2015-07-06 13:01:52", "220.181.108.85", "65");
INSERT INTO `wp_rg_form_view` VALUES("13700", "1", "2015-07-06 13:45:43", "97.75.177.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("13701", "3", "2015-07-06 14:05:26", "202.46.48.146", "45");
INSERT INTO `wp_rg_form_view` VALUES("13702", "3", "2015-07-06 15:03:59", "202.46.52.146", "45");
INSERT INTO `wp_rg_form_view` VALUES("13703", "3", "2015-07-06 16:02:31", "202.46.52.205", "35");
INSERT INTO `wp_rg_form_view` VALUES("13704", "3", "2015-07-06 17:12:45", "202.46.52.166", "45");
INSERT INTO `wp_rg_form_view` VALUES("13705", "3", "2015-07-06 18:23:00", "202.46.57.187", "35");
INSERT INTO `wp_rg_form_view` VALUES("13706", "3", "2015-07-06 19:01:14", "46.246.43.188", "45");
INSERT INTO `wp_rg_form_view` VALUES("13707", "3", "2015-07-06 20:08:22", "202.46.55.157", "65");
INSERT INTO `wp_rg_form_view` VALUES("13708", "3", "2015-07-06 21:06:54", "202.46.52.205", "40");
INSERT INTO `wp_rg_form_view` VALUES("13709", "3", "2015-07-06 22:05:27", "202.46.55.175", "45");
INSERT INTO `wp_rg_form_view` VALUES("13710", "3", "2015-07-06 23:03:58", "202.46.48.132", "35");
INSERT INTO `wp_rg_form_view` VALUES("13711", "1", "2015-07-06 23:22:50", "54.153.94.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("13712", "3", "2015-07-07 00:02:31", "202.46.54.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("13713", "3", "2015-07-07 01:01:04", "202.46.54.135", "51");
INSERT INTO `wp_rg_form_view` VALUES("13714", "3", "2015-07-07 02:11:18", "202.46.53.143", "25");
INSERT INTO `wp_rg_form_view` VALUES("13715", "3", "2015-07-07 03:02:40", "192.99.44.141", "90");
INSERT INTO `wp_rg_form_view` VALUES("13716", "2", "2015-07-07 03:02:51", "192.99.44.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("13717", "1", "2015-07-07 03:02:53", "192.99.44.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("13718", "7", "2015-07-07 03:02:57", "192.99.44.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("13719", "3", "2015-07-07 04:17:19", "199.217.117.207", "55");
INSERT INTO `wp_rg_form_view` VALUES("13720", "3", "2015-07-07 05:06:54", "202.46.52.150", "40");
INSERT INTO `wp_rg_form_view` VALUES("13721", "3", "2015-07-07 06:05:26", "202.46.53.202", "51");
INSERT INTO `wp_rg_form_view` VALUES("13722", "3", "2015-07-07 07:03:58", "202.46.51.187", "50");
INSERT INTO `wp_rg_form_view` VALUES("13723", "3", "2015-07-07 08:02:31", "202.46.49.136", "35");
INSERT INTO `wp_rg_form_view` VALUES("13724", "1", "2015-07-07 08:40:18", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("13725", "3", "2015-07-07 09:01:04", "202.46.57.170", "40");
INSERT INTO `wp_rg_form_view` VALUES("13726", "3", "2015-07-07 10:01:34", "46.246.43.188", "190");
INSERT INTO `wp_rg_form_view` VALUES("13727", "7", "2015-07-07 10:41:50", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("13728", "5", "2015-07-07 10:42:00", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("13729", "2", "2015-07-07 10:42:23", "109.169.29.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("13730", "1", "2015-07-07 10:52:45", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13731", "3", "2015-07-07 11:09:49", "202.46.51.177", "25");
INSERT INTO `wp_rg_form_view` VALUES("13732", "3", "2015-07-07 12:08:21", "202.46.57.199", "82");
INSERT INTO `wp_rg_form_view` VALUES("13733", "1", "2015-07-07 12:39:18", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("13734", "3", "2015-07-07 13:06:54", "202.46.56.134", "56");
INSERT INTO `wp_rg_form_view` VALUES("13735", "1", "2015-07-07 13:40:06", "108.180.242.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("13736", "3", "2015-07-07 14:05:06", "220.181.108.102", "65");
INSERT INTO `wp_rg_form_view` VALUES("13737", "7", "2015-07-07 14:44:02", "66.249.67.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("13738", "3", "2015-07-07 15:15:40", "202.46.53.151", "45");
INSERT INTO `wp_rg_form_view` VALUES("13739", "2", "2015-07-07 15:29:03", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("13740", "3", "2015-07-07 16:02:31", "202.46.52.156", "25");
INSERT INTO `wp_rg_form_view` VALUES("13741", "3", "2015-07-07 17:01:04", "202.46.52.166", "50");
INSERT INTO `wp_rg_form_view` VALUES("13742", "3", "2015-07-07 18:06:34", "66.249.67.64", "80");
INSERT INTO `wp_rg_form_view` VALUES("13743", "3", "2015-07-07 19:04:58", "77.75.77.11", "71");
INSERT INTO `wp_rg_form_view` VALUES("13744", "1", "2015-07-07 19:52:41", "104.193.10.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("13745", "3", "2015-07-07 20:01:53", "157.55.39.206", "50");
INSERT INTO `wp_rg_form_view` VALUES("13746", "3", "2015-07-07 21:06:53", "202.46.54.141", "75");
INSERT INTO `wp_rg_form_view` VALUES("13747", "3", "2015-07-07 22:05:26", "202.46.57.186", "30");
INSERT INTO `wp_rg_form_view` VALUES("13748", "3", "2015-07-07 23:03:59", "202.46.54.185", "30");
INSERT INTO `wp_rg_form_view` VALUES("13749", "3", "2015-07-08 00:02:31", "202.46.55.157", "70");
INSERT INTO `wp_rg_form_view` VALUES("13750", "3", "2015-07-08 01:00:05", "96.54.201.93", "50");
INSERT INTO `wp_rg_form_view` VALUES("13751", "3", "2015-07-08 02:11:17", "202.46.49.142", "40");
INSERT INTO `wp_rg_form_view` VALUES("13752", "3", "2015-07-08 03:09:50", "202.46.50.190", "35");
INSERT INTO `wp_rg_form_view` VALUES("13753", "3", "2015-07-08 04:08:25", "202.46.57.185", "30");
INSERT INTO `wp_rg_form_view` VALUES("13754", "3", "2015-07-08 05:04:19", "70.66.133.32", "56");
INSERT INTO `wp_rg_form_view` VALUES("13755", "3", "2015-07-08 06:05:26", "202.46.56.136", "52");
INSERT INTO `wp_rg_form_view` VALUES("13756", "3", "2015-07-08 07:03:58", "202.46.51.203", "50");
INSERT INTO `wp_rg_form_view` VALUES("13757", "3", "2015-07-08 08:02:31", "202.46.51.181", "57");
INSERT INTO `wp_rg_form_view` VALUES("13758", "3", "2015-07-08 09:01:02", "202.46.58.193", "55");
INSERT INTO `wp_rg_form_view` VALUES("13759", "3", "2015-07-08 10:11:18", "202.46.51.131", "35");
INSERT INTO `wp_rg_form_view` VALUES("13760", "3", "2015-07-08 11:01:27", "66.249.67.76", "31");
INSERT INTO `wp_rg_form_view` VALUES("13761", "3", "2015-07-08 12:08:21", "202.46.53.197", "82");
INSERT INTO `wp_rg_form_view` VALUES("13762", "3", "2015-07-08 13:00:04", "157.55.39.206", "120");
INSERT INTO `wp_rg_form_view` VALUES("13763", "1", "2015-07-08 13:12:41", "157.55.39.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("13764", "6", "2015-07-08 13:34:28", "66.249.67.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("13765", "3", "2015-07-08 14:05:27", "202.46.48.135", "41");
INSERT INTO `wp_rg_form_view` VALUES("13766", "1", "2015-07-08 14:20:12", "66.249.67.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("13767", "3", "2015-07-08 15:03:57", "202.46.56.186", "25");
INSERT INTO `wp_rg_form_view` VALUES("13768", "3", "2015-07-08 16:14:13", "202.46.52.167", "25");
INSERT INTO `wp_rg_form_view` VALUES("13769", "3", "2015-07-08 17:01:02", "202.46.53.203", "61");
INSERT INTO `wp_rg_form_view` VALUES("13770", "3", "2015-07-08 18:11:17", "202.46.53.164", "50");
INSERT INTO `wp_rg_form_view` VALUES("13771", "3", "2015-07-08 19:09:50", "202.46.55.154", "48");
INSERT INTO `wp_rg_form_view` VALUES("13772", "3", "2015-07-08 20:02:27", "141.8.143.217", "74");
INSERT INTO `wp_rg_form_view` VALUES("13773", "6", "2015-07-08 20:47:45", "157.55.39.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("13774", "3", "2015-07-08 21:06:53", "202.46.56.196", "48");
INSERT INTO `wp_rg_form_view` VALUES("13775", "3", "2015-07-08 22:05:25", "202.46.55.171", "96");
INSERT INTO `wp_rg_form_view` VALUES("13776", "3", "2015-07-08 23:03:57", "202.46.52.169", "36");
INSERT INTO `wp_rg_form_view` VALUES("13777", "3", "2015-07-09 00:02:30", "202.46.57.209", "60");
INSERT INTO `wp_rg_form_view` VALUES("13778", "3", "2015-07-09 01:01:02", "202.46.53.164", "45");
INSERT INTO `wp_rg_form_view` VALUES("13779", "5", "2015-07-09 02:00:09", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("13780", "3", "2015-07-09 02:00:09", "217.69.133.229", "46");
INSERT INTO `wp_rg_form_view` VALUES("13781", "3", "2015-07-09 03:09:48", "202.46.52.164", "46");
INSERT INTO `wp_rg_form_view` VALUES("13782", "3", "2015-07-09 04:08:21", "202.46.57.167", "30");
INSERT INTO `wp_rg_form_view` VALUES("13783", "3", "2015-07-09 05:04:11", "96.54.200.83", "48");
INSERT INTO `wp_rg_form_view` VALUES("13784", "3", "2015-07-09 06:05:30", "202.46.58.204", "62");
INSERT INTO `wp_rg_form_view` VALUES("13785", "2", "2015-07-09 06:51:37", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("13786", "3", "2015-07-09 07:04:02", "202.46.58.206", "25");
INSERT INTO `wp_rg_form_view` VALUES("13787", "3", "2015-07-09 08:02:36", "202.46.54.195", "41");
INSERT INTO `wp_rg_form_view` VALUES("13788", "3", "2015-07-09 09:01:08", "202.46.58.192", "45");
INSERT INTO `wp_rg_form_view` VALUES("13789", "3", "2015-07-09 10:04:25", "220.181.108.86", "35");
INSERT INTO `wp_rg_form_view` VALUES("13790", "5", "2015-07-09 10:46:28", "202.46.50.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("13791", "3", "2015-07-09 11:09:54", "202.46.50.159", "67");
INSERT INTO `wp_rg_form_view` VALUES("13792", "3", "2015-07-09 12:08:27", "202.46.49.207", "41");
INSERT INTO `wp_rg_form_view` VALUES("13793", "3", "2015-07-09 13:00:04", "217.69.133.69", "63");
INSERT INTO `wp_rg_form_view` VALUES("13794", "3", "2015-07-09 14:05:29", "202.46.48.206", "58");
INSERT INTO `wp_rg_form_view` VALUES("13795", "3", "2015-07-09 15:15:47", "202.46.52.168", "25");
INSERT INTO `wp_rg_form_view` VALUES("13796", "3", "2015-07-09 16:02:36", "202.46.51.155", "45");
INSERT INTO `wp_rg_form_view` VALUES("13797", "1", "2015-07-09 16:07:20", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("13798", "3", "2015-07-09 17:09:49", "64.110.134.122", "512");
INSERT INTO `wp_rg_form_view` VALUES("13799", "1", "2015-07-09 17:28:29", "174.127.133.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("13800", "2", "2015-07-09 17:29:24", "174.127.133.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("13801", "7", "2015-07-09 17:30:45", "174.127.133.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("13802", "3", "2015-07-09 18:00:50", "174.127.133.90", "107");
INSERT INTO `wp_rg_form_view` VALUES("13803", "3", "2015-07-09 19:09:52", "202.46.57.185", "46");
INSERT INTO `wp_rg_form_view` VALUES("13804", "3", "2015-07-09 20:20:12", "202.46.54.186", "41");
INSERT INTO `wp_rg_form_view` VALUES("13805", "3", "2015-07-09 21:06:57", "202.46.56.179", "30");
INSERT INTO `wp_rg_form_view` VALUES("13806", "3", "2015-07-09 22:05:31", "202.46.50.189", "30");
INSERT INTO `wp_rg_form_view` VALUES("13807", "3", "2015-07-09 23:04:02", "202.46.48.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("13808", "3", "2015-07-10 00:00:55", "207.216.37.169", "81");
INSERT INTO `wp_rg_form_view` VALUES("13809", "3", "2015-07-10 01:01:05", "202.46.52.179", "50");
INSERT INTO `wp_rg_form_view` VALUES("13810", "3", "2015-07-10 02:07:54", "107.169.7.82", "61");
INSERT INTO `wp_rg_form_view` VALUES("13811", "3", "2015-07-10 03:09:52", "202.46.53.178", "50");
INSERT INTO `wp_rg_form_view` VALUES("13812", "3", "2015-07-10 04:08:24", "202.46.57.179", "41");
INSERT INTO `wp_rg_form_view` VALUES("13813", "3", "2015-07-10 05:05:04", "66.249.67.76", "40");
INSERT INTO `wp_rg_form_view` VALUES("13814", "5", "2015-07-10 05:53:46", "202.46.52.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("13815", "3", "2015-07-10 06:05:31", "202.46.56.191", "51");
INSERT INTO `wp_rg_form_view` VALUES("13816", "3", "2015-07-10 07:04:01", "202.46.49.143", "813");
INSERT INTO `wp_rg_form_view` VALUES("13817", "1", "2015-07-10 07:43:26", "162.243.228.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("13818", "7", "2015-07-10 07:47:32", "162.243.228.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("13819", "5", "2015-07-10 07:48:31", "162.243.228.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("13820", "6", "2015-07-10 07:50:37", "217.69.133.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("13821", "3", "2015-07-10 08:02:33", "202.46.58.208", "46");
INSERT INTO `wp_rg_form_view` VALUES("13822", "6", "2015-07-10 08:19:11", "68.180.229.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("13823", "3", "2015-07-10 09:01:07", "202.46.55.146", "46");
INSERT INTO `wp_rg_form_view` VALUES("13824", "3", "2015-07-10 10:11:20", "202.46.58.191", "46");
INSERT INTO `wp_rg_form_view` VALUES("13825", "3", "2015-07-10 11:01:41", "68.180.229.183", "133");
INSERT INTO `wp_rg_form_view` VALUES("13826", "2", "2015-07-10 11:46:59", "220.181.108.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("13827", "3", "2015-07-10 12:12:04", "68.180.229.183", "46");
INSERT INTO `wp_rg_form_view` VALUES("13828", "3", "2015-07-10 13:06:58", "202.46.56.194", "45");
INSERT INTO `wp_rg_form_view` VALUES("13829", "3", "2015-07-10 14:05:32", "202.46.58.167", "40");
INSERT INTO `wp_rg_form_view` VALUES("13830", "3", "2015-07-10 15:00:54", "157.55.39.157", "45");
INSERT INTO `wp_rg_form_view` VALUES("13831", "1", "2015-07-10 15:09:43", "68.180.229.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("13832", "3", "2015-07-10 16:02:34", "202.46.52.170", "30");
INSERT INTO `wp_rg_form_view` VALUES("13833", "3", "2015-07-10 17:00:42", "100.43.91.23", "102");
INSERT INTO `wp_rg_form_view` VALUES("13834", "3", "2015-07-10 18:00:43", "184.151.231.181", "71");
INSERT INTO `wp_rg_form_view` VALUES("13835", "3", "2015-07-10 19:08:48", "184.151.231.181", "50");
INSERT INTO `wp_rg_form_view` VALUES("13836", "1", "2015-07-10 19:39:20", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("13837", "3", "2015-07-10 20:08:24", "202.46.52.149", "51");
INSERT INTO `wp_rg_form_view` VALUES("13838", "3", "2015-07-10 21:06:56", "202.46.56.191", "45");
INSERT INTO `wp_rg_form_view` VALUES("13839", "3", "2015-07-10 22:05:30", "202.46.48.190", "30");
INSERT INTO `wp_rg_form_view` VALUES("13840", "3", "2015-07-10 23:04:01", "202.46.52.170", "35");
INSERT INTO `wp_rg_form_view` VALUES("13841", "3", "2015-07-11 00:02:33", "202.46.55.134", "60");
INSERT INTO `wp_rg_form_view` VALUES("13842", "1", "2015-07-11 00:47:39", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("13843", "3", "2015-07-11 01:01:08", "202.46.49.139", "135");
INSERT INTO `wp_rg_form_view` VALUES("13844", "1", "2015-07-11 01:10:52", "24.114.91.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("13845", "3", "2015-07-11 02:07:29", "58.62.234.179", "211");
INSERT INTO `wp_rg_form_view` VALUES("13846", "7", "2015-07-11 02:28:17", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("13847", "3", "2015-07-11 03:09:52", "202.46.52.165", "65");
INSERT INTO `wp_rg_form_view` VALUES("13848", "1", "2015-07-11 03:36:51", "24.114.27.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("13849", "3", "2015-07-11 04:08:24", "202.46.51.162", "30");
INSERT INTO `wp_rg_form_view` VALUES("13850", "3", "2015-07-11 05:06:56", "202.46.50.191", "45");
INSERT INTO `wp_rg_form_view` VALUES("13851", "3", "2015-07-11 06:05:30", "202.46.56.190", "60");
INSERT INTO `wp_rg_form_view` VALUES("13852", "3", "2015-07-11 07:04:00", "202.46.57.174", "30");
INSERT INTO `wp_rg_form_view` VALUES("13853", "3", "2015-07-11 08:02:39", "202.46.52.151", "35");
INSERT INTO `wp_rg_form_view` VALUES("13854", "3", "2015-07-11 09:01:06", "202.46.48.205", "35");
INSERT INTO `wp_rg_form_view` VALUES("13855", "3", "2015-07-11 10:11:19", "202.46.52.203", "50");
INSERT INTO `wp_rg_form_view` VALUES("13856", "3", "2015-07-11 11:09:52", "202.46.55.157", "51");
INSERT INTO `wp_rg_form_view` VALUES("13857", "5", "2015-07-11 11:28:53", "188.165.15.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("13858", "1", "2015-07-11 12:03:19", "109.127.102.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("13859", "3", "2015-07-11 12:03:19", "109.127.102.55", "40");
INSERT INTO `wp_rg_form_view` VALUES("13860", "3", "2015-07-11 13:06:56", "202.46.51.186", "30");
INSERT INTO `wp_rg_form_view` VALUES("13861", "3", "2015-07-11 14:02:07", "220.181.108.121", "40");
INSERT INTO `wp_rg_form_view` VALUES("13862", "7", "2015-07-11 14:25:29", "207.46.13.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("13863", "3", "2015-07-11 15:04:00", "202.46.51.163", "35");
INSERT INTO `wp_rg_form_view` VALUES("13864", "3", "2015-07-11 16:02:33", "202.46.48.191", "30");
INSERT INTO `wp_rg_form_view` VALUES("13865", "3", "2015-07-11 17:01:05", "202.46.50.132", "35");
INSERT INTO `wp_rg_form_view` VALUES("13866", "3", "2015-07-11 18:11:21", "202.46.48.134", "30");
INSERT INTO `wp_rg_form_view` VALUES("13867", "3", "2015-07-11 19:09:57", "202.46.55.135", "41");
INSERT INTO `wp_rg_form_view` VALUES("13868", "3", "2015-07-11 20:08:24", "202.46.55.142", "35");
INSERT INTO `wp_rg_form_view` VALUES("13869", "3", "2015-07-11 21:06:56", "202.46.54.210", "30");
INSERT INTO `wp_rg_form_view` VALUES("13870", "3", "2015-07-11 22:05:28", "202.46.55.131", "105");
INSERT INTO `wp_rg_form_view` VALUES("13871", "3", "2015-07-11 23:04:00", "202.46.55.149", "35");
INSERT INTO `wp_rg_form_view` VALUES("13872", "1", "2015-07-11 23:17:19", "52.0.86.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("13873", "3", "2015-07-12 00:02:32", "202.46.51.168", "115");
INSERT INTO `wp_rg_form_view` VALUES("13874", "3", "2015-07-12 01:01:04", "202.46.53.149", "60");
INSERT INTO `wp_rg_form_view` VALUES("13875", "5", "2015-07-12 01:47:55", "184.151.231.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("13876", "3", "2015-07-12 02:11:19", "202.46.53.199", "30");
INSERT INTO `wp_rg_form_view` VALUES("13877", "3", "2015-07-12 03:09:52", "202.46.58.156", "30");
INSERT INTO `wp_rg_form_view` VALUES("13878", "3", "2015-07-12 04:08:34", "202.46.51.154", "55");
INSERT INTO `wp_rg_form_view` VALUES("13879", "3", "2015-07-12 05:03:51", "91.200.12.7", "65");
INSERT INTO `wp_rg_form_view` VALUES("13880", "3", "2015-07-12 06:05:39", "202.46.51.158", "70");
INSERT INTO `wp_rg_form_view` VALUES("13881", "3", "2015-07-12 07:04:00", "202.46.56.194", "30");
INSERT INTO `wp_rg_form_view` VALUES("13882", "3", "2015-07-12 08:02:36", "202.46.54.144", "58");
INSERT INTO `wp_rg_form_view` VALUES("13883", "3", "2015-07-12 09:01:05", "202.46.48.206", "35");
INSERT INTO `wp_rg_form_view` VALUES("13884", "3", "2015-07-12 10:11:20", "202.46.52.156", "30");
INSERT INTO `wp_rg_form_view` VALUES("13885", "3", "2015-07-12 11:09:51", "202.46.58.150", "55");
INSERT INTO `wp_rg_form_view` VALUES("13886", "3", "2015-07-12 12:08:25", "202.46.54.190", "25");
INSERT INTO `wp_rg_form_view` VALUES("13887", "3", "2015-07-12 13:06:55", "202.46.48.148", "45");
INSERT INTO `wp_rg_form_view` VALUES("13888", "3", "2015-07-12 14:05:28", "202.46.55.176", "35");
INSERT INTO `wp_rg_form_view` VALUES("13889", "3", "2015-07-12 15:04:00", "202.46.51.172", "56");
INSERT INTO `wp_rg_form_view` VALUES("13890", "1", "2015-07-12 15:52:08", "188.240.135.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("13891", "3", "2015-07-12 16:02:32", "202.46.55.154", "20");
INSERT INTO `wp_rg_form_view` VALUES("13892", "3", "2015-07-12 17:01:05", "202.46.55.132", "50");
INSERT INTO `wp_rg_form_view` VALUES("13893", "3", "2015-07-12 18:11:19", "202.46.51.190", "256");
INSERT INTO `wp_rg_form_view` VALUES("13894", "7", "2015-07-12 18:22:03", "216.232.155.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13895", "2", "2015-07-12 18:24:09", "216.232.155.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13896", "1", "2015-07-12 18:24:42", "216.232.155.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("13897", "3", "2015-07-12 19:09:51", "202.46.56.201", "75");
INSERT INTO `wp_rg_form_view` VALUES("13898", "3", "2015-07-12 20:06:27", "46.246.62.183", "65");
INSERT INTO `wp_rg_form_view` VALUES("13899", "3", "2015-07-12 21:06:56", "202.46.58.160", "25");
INSERT INTO `wp_rg_form_view` VALUES("13900", "3", "2015-07-12 22:05:28", "202.46.48.201", "46");
INSERT INTO `wp_rg_form_view` VALUES("13901", "3", "2015-07-12 23:03:21", "24.69.72.105", "71");
INSERT INTO `wp_rg_form_view` VALUES("13902", "3", "2015-07-13 00:02:32", "202.46.58.185", "140");
INSERT INTO `wp_rg_form_view` VALUES("13903", "7", "2015-07-13 00:25:29", "184.75.235.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("13904", "1", "2015-07-13 00:25:40", "184.75.235.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("13905", "2", "2015-07-13 00:25:45", "184.75.235.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("13906", "3", "2015-07-13 01:01:05", "202.46.51.164", "51");
INSERT INTO `wp_rg_form_view` VALUES("13907", "3", "2015-07-13 02:09:59", "220.181.108.85", "35");
INSERT INTO `wp_rg_form_view` VALUES("13908", "3", "2015-07-13 03:09:51", "202.46.54.168", "40");
INSERT INTO `wp_rg_form_view` VALUES("13909", "3", "2015-07-13 04:02:44", "141.8.143.183", "55");
INSERT INTO `wp_rg_form_view` VALUES("13910", "1", "2015-07-13 04:13:07", "123.88.210.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("13911", "3", "2015-07-13 05:06:52", "207.46.13.116", "51");
INSERT INTO `wp_rg_form_view` VALUES("13912", "3", "2015-07-13 06:05:28", "202.46.49.153", "35");
INSERT INTO `wp_rg_form_view` VALUES("13913", "3", "2015-07-13 07:04:02", "202.46.54.196", "35");
INSERT INTO `wp_rg_form_view` VALUES("13914", "3", "2015-07-13 08:02:34", "202.46.58.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("13915", "3", "2015-07-13 09:01:05", "202.46.48.143", "56");
INSERT INTO `wp_rg_form_view` VALUES("13916", "3", "2015-07-13 10:11:19", "202.46.51.174", "35");
INSERT INTO `wp_rg_form_view` VALUES("13917", "1", "2015-07-13 10:16:31", "204.12.239.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("13918", "3", "2015-07-13 11:21:51", "202.46.51.210", "25");
INSERT INTO `wp_rg_form_view` VALUES("13919", "3", "2015-07-13 12:08:25", "202.46.49.200", "145");
INSERT INTO `wp_rg_form_view` VALUES("13920", "2", "2015-07-13 12:27:10", "204.12.239.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("13921", "7", "2015-07-13 12:50:37", "76.122.112.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("13922", "1", "2015-07-13 12:50:58", "76.122.112.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("13923", "3", "2015-07-13 13:04:31", "59.174.162.184", "74");
INSERT INTO `wp_rg_form_view` VALUES("13924", "3", "2015-07-13 14:05:29", "202.46.52.173", "30");
INSERT INTO `wp_rg_form_view` VALUES("13925", "3", "2015-07-13 15:03:59", "202.46.49.194", "150");
INSERT INTO `wp_rg_form_view` VALUES("13926", "7", "2015-07-13 15:14:28", "184.75.235.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("13927", "1", "2015-07-13 15:14:38", "184.75.235.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("13928", "2", "2015-07-13 15:14:43", "184.75.235.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("13929", "3", "2015-07-13 16:00:32", "104.223.40.178", "67");
INSERT INTO `wp_rg_form_view` VALUES("13930", "3", "2015-07-13 17:01:04", "202.46.52.179", "115");
INSERT INTO `wp_rg_form_view` VALUES("13931", "3", "2015-07-13 18:10:05", "157.55.39.224", "66");
INSERT INTO `wp_rg_form_view` VALUES("13932", "1", "2015-07-13 18:14:45", "59.174.162.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("13933", "3", "2015-07-13 19:09:58", "202.46.48.141", "50");
INSERT INTO `wp_rg_form_view` VALUES("13934", "3", "2015-07-13 20:13:53", "109.169.29.30", "150");
INSERT INTO `wp_rg_form_view` VALUES("13935", "7", "2015-07-13 20:14:44", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("13936", "5", "2015-07-13 20:14:54", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("13937", "2", "2015-07-13 20:15:18", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("13938", "3", "2015-07-13 21:06:55", "202.46.52.159", "55");
INSERT INTO `wp_rg_form_view` VALUES("13939", "3", "2015-07-13 22:05:27", "202.46.54.167", "45");
INSERT INTO `wp_rg_form_view` VALUES("13940", "3", "2015-07-13 23:03:59", "202.46.49.195", "50");
INSERT INTO `wp_rg_form_view` VALUES("13941", "3", "2015-07-14 00:02:32", "202.46.58.195", "205");
INSERT INTO `wp_rg_form_view` VALUES("13942", "1", "2015-07-14 00:05:44", "24.108.144.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("13943", "7", "2015-07-14 00:35:16", "184.75.235.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("13944", "2", "2015-07-14 00:35:30", "184.75.235.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("13945", "3", "2015-07-14 01:01:04", "202.46.57.187", "50");
INSERT INTO `wp_rg_form_view` VALUES("13946", "3", "2015-07-14 02:11:19", "202.46.49.140", "25");
INSERT INTO `wp_rg_form_view` VALUES("13947", "3", "2015-07-14 03:09:50", "202.46.52.176", "40");
INSERT INTO `wp_rg_form_view` VALUES("13948", "3", "2015-07-14 04:08:23", "202.46.52.168", "40");
INSERT INTO `wp_rg_form_view` VALUES("13949", "3", "2015-07-14 05:06:55", "202.46.55.131", "88");
INSERT INTO `wp_rg_form_view` VALUES("13950", "3", "2015-07-14 06:00:41", "96.48.4.128", "254");
INSERT INTO `wp_rg_form_view` VALUES("13951", "1", "2015-07-14 06:17:06", "207.46.13.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("13952", "2", "2015-07-14 06:17:27", "207.46.13.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("13953", "3", "2015-07-14 07:03:59", "202.46.53.204", "35");
INSERT INTO `wp_rg_form_view` VALUES("13954", "3", "2015-07-14 08:02:32", "202.46.53.157", "35");
INSERT INTO `wp_rg_form_view` VALUES("13955", "3", "2015-07-14 09:01:04", "202.46.54.134", "40");
INSERT INTO `wp_rg_form_view` VALUES("13956", "3", "2015-07-14 10:11:18", "202.46.56.207", "40");
INSERT INTO `wp_rg_form_view` VALUES("13957", "3", "2015-07-14 11:09:51", "202.46.51.190", "35");
INSERT INTO `wp_rg_form_view` VALUES("13958", "3", "2015-07-14 12:08:22", "202.46.51.182", "60");
INSERT INTO `wp_rg_form_view` VALUES("13959", "3", "2015-07-14 13:01:30", "208.115.111.66", "150");
INSERT INTO `wp_rg_form_view` VALUES("13960", "1", "2015-07-14 13:21:15", "176.34.200.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("13961", "2", "2015-07-14 13:21:16", "176.34.200.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("13962", "7", "2015-07-14 13:21:16", "176.34.200.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("13963", "2", "2015-07-14 13:21:16", "176.34.200.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("13964", "3", "2015-07-14 14:04:15", "77.75.77.72", "35");
INSERT INTO `wp_rg_form_view` VALUES("13965", "3", "2015-07-14 15:03:59", "202.46.51.133", "65");
INSERT INTO `wp_rg_form_view` VALUES("13966", "1", "2015-07-14 15:29:05", "62.210.140.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("13967", "3", "2015-07-14 16:02:32", "202.46.50.187", "125");
INSERT INTO `wp_rg_form_view` VALUES("13968", "3", "2015-07-14 17:01:05", "202.46.53.160", "40");
INSERT INTO `wp_rg_form_view` VALUES("13969", "3", "2015-07-14 18:11:20", "202.46.49.201", "35");
INSERT INTO `wp_rg_form_view` VALUES("13970", "3", "2015-07-14 19:00:44", "24.68.246.172", "50");
INSERT INTO `wp_rg_form_view` VALUES("13971", "3", "2015-07-14 20:08:23", "202.46.51.166", "50");
INSERT INTO `wp_rg_form_view` VALUES("13972", "3", "2015-07-14 21:05:31", "184.66.117.88", "92");
INSERT INTO `wp_rg_form_view` VALUES("13973", "6", "2015-07-14 21:29:07", "148.251.124.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("13974", "3", "2015-07-14 22:05:27", "202.46.49.204", "50");
INSERT INTO `wp_rg_form_view` VALUES("13975", "3", "2015-07-14 23:03:59", "202.46.54.186", "25");
INSERT INTO `wp_rg_form_view` VALUES("13976", "3", "2015-07-15 15:56:46", "202.46.56.135", "10");
INSERT INTO `wp_rg_form_view` VALUES("13977", "3", "2015-07-15 16:02:47", "202.46.52.157", "21");
INSERT INTO `wp_rg_form_view` VALUES("13978", "3", "2015-07-15 17:00:21", "202.46.57.202", "54");
INSERT INTO `wp_rg_form_view` VALUES("13979", "3", "2015-07-15 18:11:19", "202.46.52.150", "40");
INSERT INTO `wp_rg_form_view` VALUES("13980", "3", "2015-07-15 19:01:05", "50.65.54.113", "40");
INSERT INTO `wp_rg_form_view` VALUES("13981", "5", "2015-07-15 19:21:34", "202.46.57.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("13982", "3", "2015-07-15 20:08:23", "202.46.48.139", "65");
INSERT INTO `wp_rg_form_view` VALUES("13983", "3", "2015-07-15 21:06:54", "202.46.53.177", "50");
INSERT INTO `wp_rg_form_view` VALUES("13984", "3", "2015-07-15 22:04:42", "12.32.90.76", "66");
INSERT INTO `wp_rg_form_view` VALUES("13985", "3", "2015-07-15 23:02:25", "24.114.25.112", "65");
INSERT INTO `wp_rg_form_view` VALUES("13986", "3", "2015-07-16 00:02:32", "202.46.48.139", "35");
INSERT INTO `wp_rg_form_view` VALUES("13987", "3", "2015-07-16 01:01:03", "202.46.49.209", "50");
INSERT INTO `wp_rg_form_view` VALUES("13988", "3", "2015-07-16 02:11:17", "202.46.51.156", "35");
INSERT INTO `wp_rg_form_view` VALUES("13989", "3", "2015-07-16 03:09:50", "202.46.54.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("13990", "3", "2015-07-16 04:08:23", "202.46.56.134", "40");
INSERT INTO `wp_rg_form_view` VALUES("13991", "3", "2015-07-16 05:00:13", "24.68.32.22", "72");
INSERT INTO `wp_rg_form_view` VALUES("13992", "3", "2015-07-16 06:05:56", "202.46.52.174", "60");
INSERT INTO `wp_rg_form_view` VALUES("13993", "3", "2015-07-16 07:04:06", "202.46.48.131", "41");
INSERT INTO `wp_rg_form_view` VALUES("13994", "3", "2015-07-16 08:02:32", "202.46.52.146", "35");
INSERT INTO `wp_rg_form_view` VALUES("13995", "3", "2015-07-16 09:01:09", "202.46.52.140", "50");
INSERT INTO `wp_rg_form_view` VALUES("13996", "3", "2015-07-16 10:11:18", "202.46.56.189", "20");
INSERT INTO `wp_rg_form_view` VALUES("13997", "3", "2015-07-16 11:01:06", "58.62.234.190", "45");
INSERT INTO `wp_rg_form_view` VALUES("13998", "3", "2015-07-16 12:08:24", "202.46.50.138", "35");
INSERT INTO `wp_rg_form_view` VALUES("13999", "3", "2015-07-16 13:06:54", "202.46.54.184", "79");
INSERT INTO `wp_rg_form_view` VALUES("14000", "3", "2015-07-16 14:05:35", "202.46.57.205", "50");
INSERT INTO `wp_rg_form_view` VALUES("14001", "3", "2015-07-16 15:01:51", "66.249.67.70", "51");
INSERT INTO `wp_rg_form_view` VALUES("14002", "3", "2015-07-16 16:00:29", "68.180.229.183", "45");
INSERT INTO `wp_rg_form_view` VALUES("14003", "3", "2015-07-16 17:01:03", "202.46.51.183", "45");
INSERT INTO `wp_rg_form_view` VALUES("14004", "3", "2015-07-16 18:11:20", "202.46.51.207", "60");
INSERT INTO `wp_rg_form_view` VALUES("14005", "6", "2015-07-16 18:24:09", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("14006", "1", "2015-07-16 18:40:49", "173.239.125.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("14007", "3", "2015-07-16 19:09:50", "202.46.58.155", "30");
INSERT INTO `wp_rg_form_view` VALUES("14008", "3", "2015-07-16 20:02:36", "96.54.210.42", "65");
INSERT INTO `wp_rg_form_view` VALUES("14009", "7", "2015-07-16 20:58:05", "96.54.184.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("14010", "3", "2015-07-16 21:06:54", "202.46.52.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("14011", "3", "2015-07-16 22:05:28", "202.46.57.158", "51");
INSERT INTO `wp_rg_form_view` VALUES("14012", "3", "2015-07-16 23:03:58", "202.46.52.208", "55");
INSERT INTO `wp_rg_form_view` VALUES("14013", "1", "2015-07-16 23:09:36", "54.153.30.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("14014", "3", "2015-07-17 00:02:31", "202.46.57.178", "61");
INSERT INTO `wp_rg_form_view` VALUES("14015", "7", "2015-07-17 00:13:22", "157.55.39.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("14016", "3", "2015-07-17 01:01:02", "202.46.52.210", "55");
INSERT INTO `wp_rg_form_view` VALUES("14017", "3", "2015-07-17 02:11:17", "202.46.56.202", "35");
INSERT INTO `wp_rg_form_view` VALUES("14018", "3", "2015-07-17 03:09:49", "202.46.53.141", "30");
INSERT INTO `wp_rg_form_view` VALUES("14019", "3", "2015-07-17 04:08:22", "202.46.55.139", "30");
INSERT INTO `wp_rg_form_view` VALUES("14020", "3", "2015-07-17 05:04:29", "68.180.229.183", "50");
INSERT INTO `wp_rg_form_view` VALUES("14021", "3", "2015-07-17 06:17:09", "202.46.55.149", "73");
INSERT INTO `wp_rg_form_view` VALUES("14022", "2", "2015-07-17 06:55:24", "207.46.13.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("14023", "7", "2015-07-17 06:57:48", "157.55.39.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("14024", "1", "2015-07-17 06:57:51", "157.55.39.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("14025", "3", "2015-07-17 07:02:59", "188.165.15.129", "168");
INSERT INTO `wp_rg_form_view` VALUES("14026", "3", "2015-07-17 08:02:31", "202.46.57.204", "30");
INSERT INTO `wp_rg_form_view` VALUES("14027", "3", "2015-07-17 09:01:02", "202.46.49.145", "35");
INSERT INTO `wp_rg_form_view` VALUES("14028", "1", "2015-07-17 10:05:39", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14029", "3", "2015-07-17 10:05:39", "162.211.122.43", "50");
INSERT INTO `wp_rg_form_view` VALUES("14030", "2", "2015-07-17 10:05:41", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14031", "3", "2015-07-17 11:09:49", "202.46.51.180", "35");
INSERT INTO `wp_rg_form_view` VALUES("14032", "3", "2015-07-17 12:08:21", "202.46.52.175", "80");
INSERT INTO `wp_rg_form_view` VALUES("14033", "2", "2015-07-17 12:39:41", "157.56.2.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("14034", "1", "2015-07-17 12:39:49", "157.56.2.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("14035", "7", "2015-07-17 12:39:57", "157.56.2.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("14036", "3", "2015-07-17 13:06:53", "202.46.54.136", "56");
INSERT INTO `wp_rg_form_view` VALUES("14037", "3", "2015-07-17 14:00:50", "157.55.39.72", "50");
INSERT INTO `wp_rg_form_view` VALUES("14038", "3", "2015-07-17 15:00:06", "77.75.78.161", "45");
INSERT INTO `wp_rg_form_view` VALUES("14039", "3", "2015-07-17 16:02:37", "202.46.50.180", "51");
INSERT INTO `wp_rg_form_view` VALUES("14040", "3", "2015-07-17 17:01:03", "202.46.49.153", "46");
INSERT INTO `wp_rg_form_view` VALUES("14041", "3", "2015-07-17 18:11:16", "202.46.50.160", "40");
INSERT INTO `wp_rg_form_view` VALUES("14042", "3", "2015-07-17 19:09:49", "202.46.53.147", "41");
INSERT INTO `wp_rg_form_view` VALUES("14043", "3", "2015-07-17 20:08:22", "202.46.51.170", "66");
INSERT INTO `wp_rg_form_view` VALUES("14044", "1", "2015-07-17 20:32:43", "216.232.153.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("14045", "3", "2015-07-17 21:06:53", "202.46.48.205", "31");
INSERT INTO `wp_rg_form_view` VALUES("14046", "3", "2015-07-17 22:05:26", "202.46.55.175", "55");
INSERT INTO `wp_rg_form_view` VALUES("14047", "3", "2015-07-17 23:03:57", "202.46.57.169", "45");
INSERT INTO `wp_rg_form_view` VALUES("14048", "3", "2015-07-18 00:02:29", "202.46.56.172", "70");
INSERT INTO `wp_rg_form_view` VALUES("14049", "3", "2015-07-18 01:01:03", "202.46.49.191", "50");
INSERT INTO `wp_rg_form_view` VALUES("14050", "3", "2015-07-18 02:10:31", "68.180.229.183", "35");
INSERT INTO `wp_rg_form_view` VALUES("14051", "3", "2015-07-18 03:09:48", "202.46.49.152", "50");
INSERT INTO `wp_rg_form_view` VALUES("14052", "3", "2015-07-18 04:08:21", "202.46.49.131", "35");
INSERT INTO `wp_rg_form_view` VALUES("14053", "3", "2015-07-18 05:06:56", "202.46.55.135", "46");
INSERT INTO `wp_rg_form_view` VALUES("14054", "3", "2015-07-18 06:05:26", "202.46.54.181", "30");
INSERT INTO `wp_rg_form_view` VALUES("14055", "3", "2015-07-18 07:03:58", "202.46.53.144", "60");
INSERT INTO `wp_rg_form_view` VALUES("14056", "3", "2015-07-18 08:02:32", "202.46.51.155", "40");
INSERT INTO `wp_rg_form_view` VALUES("14057", "3", "2015-07-18 09:01:04", "202.46.51.181", "50");
INSERT INTO `wp_rg_form_view` VALUES("14058", "3", "2015-07-18 10:11:16", "202.46.55.148", "51");
INSERT INTO `wp_rg_form_view` VALUES("14059", "3", "2015-07-18 11:09:49", "202.46.56.200", "46");
INSERT INTO `wp_rg_form_view` VALUES("14060", "3", "2015-07-18 12:08:20", "202.46.48.200", "45");
INSERT INTO `wp_rg_form_view` VALUES("14061", "3", "2015-07-18 13:06:52", "202.46.51.178", "40");
INSERT INTO `wp_rg_form_view` VALUES("14062", "3", "2015-07-18 14:05:29", "202.46.53.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("14063", "3", "2015-07-18 15:03:57", "202.46.54.163", "45");
INSERT INTO `wp_rg_form_view` VALUES("14064", "3", "2015-07-18 16:02:30", "202.46.56.183", "40");
INSERT INTO `wp_rg_form_view` VALUES("14065", "3", "2015-07-18 17:01:01", "202.46.51.166", "40");
INSERT INTO `wp_rg_form_view` VALUES("14066", "3", "2015-07-18 18:02:21", "68.180.229.183", "101");
INSERT INTO `wp_rg_form_view` VALUES("14067", "3", "2015-07-18 19:09:48", "202.46.51.159", "60");
INSERT INTO `wp_rg_form_view` VALUES("14068", "2", "2015-07-18 19:39:57", "24.68.130.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("14069", "1", "2015-07-18 19:40:51", "24.68.130.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("14070", "3", "2015-07-18 20:08:21", "202.46.54.183", "40");
INSERT INTO `wp_rg_form_view` VALUES("14071", "3", "2015-07-18 21:06:52", "202.46.57.174", "45");
INSERT INTO `wp_rg_form_view` VALUES("14072", "3", "2015-07-18 22:05:25", "202.46.56.142", "50");
INSERT INTO `wp_rg_form_view` VALUES("14073", "3", "2015-07-18 23:00:54", "68.180.229.183", "50");
INSERT INTO `wp_rg_form_view` VALUES("14074", "3", "2015-07-19 00:02:30", "202.46.52.156", "20");
INSERT INTO `wp_rg_form_view` VALUES("14075", "3", "2015-07-19 01:00:47", "207.46.13.8", "45");
INSERT INTO `wp_rg_form_view` VALUES("14076", "3", "2015-07-19 02:11:16", "202.46.51.172", "30");
INSERT INTO `wp_rg_form_view` VALUES("14077", "3", "2015-07-19 03:09:50", "202.46.48.132", "36");
INSERT INTO `wp_rg_form_view` VALUES("14078", "3", "2015-07-19 04:08:21", "202.46.57.209", "40");
INSERT INTO `wp_rg_form_view` VALUES("14079", "3", "2015-07-19 05:06:52", "202.46.52.175", "60");
INSERT INTO `wp_rg_form_view` VALUES("14080", "3", "2015-07-19 06:05:24", "202.46.56.135", "268");
INSERT INTO `wp_rg_form_view` VALUES("14081", "7", "2015-07-19 06:53:02", "24.187.20.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("14082", "1", "2015-07-19 06:53:53", "24.187.20.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("14083", "2", "2015-07-19 06:53:59", "24.187.20.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("14084", "3", "2015-07-19 07:03:27", "157.55.39.12", "50");
INSERT INTO `wp_rg_form_view` VALUES("14085", "3", "2015-07-19 08:02:31", "202.46.51.200", "45");
INSERT INTO `wp_rg_form_view` VALUES("14086", "3", "2015-07-19 09:01:02", "202.46.55.175", "45");
INSERT INTO `wp_rg_form_view` VALUES("14087", "3", "2015-07-19 10:11:16", "202.46.56.197", "46");
INSERT INTO `wp_rg_form_view` VALUES("14088", "3", "2015-07-19 11:09:48", "202.46.49.144", "35");
INSERT INTO `wp_rg_form_view` VALUES("14089", "3", "2015-07-19 12:08:21", "202.46.58.139", "50");
INSERT INTO `wp_rg_form_view` VALUES("14090", "3", "2015-07-19 13:06:52", "202.46.52.206", "31");
INSERT INTO `wp_rg_form_view` VALUES("14091", "3", "2015-07-19 14:05:25", "202.46.50.210", "156");
INSERT INTO `wp_rg_form_view` VALUES("14092", "2", "2015-07-19 14:08:28", "207.46.13.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("14093", "1", "2015-07-19 14:57:41", "216.232.153.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("14094", "3", "2015-07-19 15:03:56", "202.46.56.206", "200");
INSERT INTO `wp_rg_form_view` VALUES("14095", "1", "2015-07-19 15:15:23", "157.55.39.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("14096", "7", "2015-07-19 15:51:20", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("14097", "2", "2015-07-19 15:51:37", "84.85.74.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("14098", "3", "2015-07-19 16:02:29", "202.46.58.156", "20");
INSERT INTO `wp_rg_form_view` VALUES("14099", "3", "2015-07-19 17:01:01", "202.46.58.198", "40");
INSERT INTO `wp_rg_form_view` VALUES("14100", "3", "2015-07-19 18:03:06", "66.249.67.64", "221");
INSERT INTO `wp_rg_form_view` VALUES("14101", "7", "2015-07-19 18:46:26", "46.165.197.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("14102", "1", "2015-07-19 18:46:33", "46.165.197.141", "5");
INSERT INTO `wp_rg_form_view` VALUES("14103", "1", "2015-07-19 19:03:40", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("14104", "3", "2015-07-19 19:03:40", "107.150.42.226", "132");
INSERT INTO `wp_rg_form_view` VALUES("14105", "2", "2015-07-19 19:40:45", "66.249.67.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("14106", "3", "2015-07-19 20:03:44", "204.12.241.170", "92");
INSERT INTO `wp_rg_form_view` VALUES("14107", "3", "2015-07-19 21:06:52", "202.46.49.208", "35");
INSERT INTO `wp_rg_form_view` VALUES("14108", "3", "2015-07-19 22:05:25", "202.46.51.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("14109", "3", "2015-07-19 23:03:57", "202.46.54.182", "25");
INSERT INTO `wp_rg_form_view` VALUES("14110", "3", "2015-07-20 00:02:29", "202.46.50.156", "30");
INSERT INTO `wp_rg_form_view` VALUES("14111", "3", "2015-07-20 01:01:02", "202.46.57.177", "40");
INSERT INTO `wp_rg_form_view` VALUES("14112", "3", "2015-07-20 02:06:58", "198.245.62.10", "200");
INSERT INTO `wp_rg_form_view` VALUES("14113", "6", "2015-07-20 02:13:37", "198.245.62.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("14114", "3", "2015-07-20 03:01:03", "66.249.67.64", "77");
INSERT INTO `wp_rg_form_view` VALUES("14115", "3", "2015-07-20 04:02:59", "64.180.76.161", "75");
INSERT INTO `wp_rg_form_view` VALUES("14116", "2", "2015-07-20 04:15:04", "64.180.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("14117", "5", "2015-07-20 04:47:14", "188.40.109.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("14118", "3", "2015-07-20 05:06:54", "202.46.53.157", "40");
INSERT INTO `wp_rg_form_view` VALUES("14119", "3", "2015-07-20 06:05:25", "202.46.52.145", "72");
INSERT INTO `wp_rg_form_view` VALUES("14120", "2", "2015-07-20 06:56:10", "207.46.13.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("14121", "3", "2015-07-20 07:03:57", "202.46.53.141", "35");
INSERT INTO `wp_rg_form_view` VALUES("14122", "3", "2015-07-20 08:02:30", "202.46.52.210", "41");
INSERT INTO `wp_rg_form_view` VALUES("14123", "2", "2015-07-20 08:11:15", "192.99.1.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("14124", "3", "2015-07-20 09:01:06", "202.46.52.142", "45");
INSERT INTO `wp_rg_form_view` VALUES("14125", "3", "2015-07-20 10:04:39", "208.115.113.83", "36");
INSERT INTO `wp_rg_form_view` VALUES("14126", "3", "2015-07-20 11:09:48", "202.46.56.209", "43");
INSERT INTO `wp_rg_form_view` VALUES("14127", "3", "2015-07-20 12:08:20", "202.46.50.153", "45");
INSERT INTO `wp_rg_form_view` VALUES("14128", "3", "2015-07-20 13:06:53", "202.46.58.198", "45");
INSERT INTO `wp_rg_form_view` VALUES("14129", "3", "2015-07-20 14:05:25", "202.46.52.159", "36");
INSERT INTO `wp_rg_form_view` VALUES("14130", "3", "2015-07-20 15:03:57", "202.46.51.191", "30");
INSERT INTO `wp_rg_form_view` VALUES("14131", "3", "2015-07-20 16:02:30", "202.46.57.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("14132", "1", "2015-07-20 17:07:15", "97.75.177.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("14133", "3", "2015-07-20 17:07:16", "97.75.177.149", "50");
INSERT INTO `wp_rg_form_view` VALUES("14134", "3", "2015-07-20 18:11:16", "202.46.53.196", "46");
INSERT INTO `wp_rg_form_view` VALUES("14135", "3", "2015-07-20 19:00:55", "157.55.39.227", "40");
INSERT INTO `wp_rg_form_view` VALUES("14136", "3", "2015-07-20 20:08:20", "202.46.57.179", "35");
INSERT INTO `wp_rg_form_view` VALUES("14137", "3", "2015-07-20 21:06:52", "202.46.54.204", "30");
INSERT INTO `wp_rg_form_view` VALUES("14138", "3", "2015-07-20 22:05:25", "202.46.55.179", "55");
INSERT INTO `wp_rg_form_view` VALUES("14139", "3", "2015-07-20 23:03:57", "202.46.49.206", "50");
INSERT INTO `wp_rg_form_view` VALUES("14140", "3", "2015-07-21 00:02:28", "202.46.55.146", "30");
INSERT INTO `wp_rg_form_view` VALUES("14141", "3", "2015-07-21 01:01:01", "202.46.57.168", "36");
INSERT INTO `wp_rg_form_view` VALUES("14142", "3", "2015-07-21 02:11:16", "202.46.53.154", "95");
INSERT INTO `wp_rg_form_view` VALUES("14143", "3", "2015-07-21 03:01:32", "217.69.133.233", "56");
INSERT INTO `wp_rg_form_view` VALUES("14144", "3", "2015-07-21 04:08:28", "202.46.52.175", "45");
INSERT INTO `wp_rg_form_view` VALUES("14145", "3", "2015-07-21 05:06:53", "202.46.51.176", "40");
INSERT INTO `wp_rg_form_view` VALUES("14146", "3", "2015-07-21 06:05:26", "202.46.58.157", "40");
INSERT INTO `wp_rg_form_view` VALUES("14147", "3", "2015-07-21 07:03:56", "202.46.50.191", "50");
INSERT INTO `wp_rg_form_view` VALUES("14148", "1", "2015-07-21 07:16:51", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14149", "2", "2015-07-21 07:16:53", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14150", "3", "2015-07-21 08:02:33", "202.46.50.164", "40");
INSERT INTO `wp_rg_form_view` VALUES("14151", "3", "2015-07-21 09:01:00", "202.46.49.200", "95");
INSERT INTO `wp_rg_form_view` VALUES("14152", "7", "2015-07-21 09:04:08", "174.129.215.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("14153", "3", "2015-07-21 10:11:15", "202.46.58.192", "46");
INSERT INTO `wp_rg_form_view` VALUES("14154", "3", "2015-07-21 11:09:48", "202.46.56.180", "46");
INSERT INTO `wp_rg_form_view` VALUES("14155", "3", "2015-07-21 12:30:07", "202.46.49.135", "15");
INSERT INTO `wp_rg_form_view` VALUES("14156", "3", "2015-07-21 13:41:25", "202.46.53.148", "15");
INSERT INTO `wp_rg_form_view` VALUES("14157", "1", "2015-07-21 14:00:57", "54.174.170.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("14158", "3", "2015-07-21 14:00:58", "54.174.170.153", "35");
INSERT INTO `wp_rg_form_view` VALUES("14159", "3", "2015-07-21 15:03:19", "202.46.55.143", "185");
INSERT INTO `wp_rg_form_view` VALUES("14160", "6", "2015-07-21 15:25:12", "62.212.73.211", "3");
INSERT INTO `wp_rg_form_view` VALUES("14161", "2", "2015-07-21 15:42:07", "107.150.42.226", "6");
INSERT INTO `wp_rg_form_view` VALUES("14162", "3", "2015-07-21 16:00:30", "207.46.13.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("14163", "3", "2015-07-21 17:02:33", "184.69.99.190", "151");
INSERT INTO `wp_rg_form_view` VALUES("14164", "7", "2015-07-21 17:04:49", "184.69.99.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("14165", "3", "2015-07-21 18:07:02", "202.46.56.206", "55");
INSERT INTO `wp_rg_form_view` VALUES("14166", "1", "2015-07-21 18:37:31", "204.12.239.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("14167", "3", "2015-07-21 19:05:33", "202.46.54.210", "41");
INSERT INTO `wp_rg_form_view` VALUES("14168", "3", "2015-07-21 20:00:08", "207.6.121.116", "130");
INSERT INTO `wp_rg_form_view` VALUES("14169", "3", "2015-07-21 21:02:38", "202.46.55.136", "80");
INSERT INTO `wp_rg_form_view` VALUES("14170", "1", "2015-07-21 21:51:24", "24.114.38.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("14171", "3", "2015-07-21 22:01:10", "202.46.56.210", "66");
INSERT INTO `wp_rg_form_view` VALUES("14172", "1", "2015-07-21 23:09:47", "52.11.140.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("14173", "3", "2015-07-21 23:09:47", "52.11.140.10", "36");
INSERT INTO `wp_rg_form_view` VALUES("14174", "3", "2015-07-22 00:09:57", "202.46.49.141", "35");
INSERT INTO `wp_rg_form_view` VALUES("14175", "3", "2015-07-22 01:03:33", "66.249.67.76", "50");
INSERT INTO `wp_rg_form_view` VALUES("14176", "3", "2015-07-22 02:07:01", "202.46.56.135", "60");
INSERT INTO `wp_rg_form_view` VALUES("14177", "3", "2015-07-22 03:05:33", "202.46.58.151", "60");
INSERT INTO `wp_rg_form_view` VALUES("14178", "7", "2015-07-22 03:37:10", "68.180.229.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("14179", "3", "2015-07-22 04:04:06", "202.46.54.196", "216");
INSERT INTO `wp_rg_form_view` VALUES("14180", "1", "2015-07-22 04:24:33", "188.65.117.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("14181", "2", "2015-07-22 04:25:15", "188.65.117.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("14182", "7", "2015-07-22 04:26:30", "188.65.117.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("14183", "3", "2015-07-22 05:02:38", "202.46.51.193", "92");
INSERT INTO `wp_rg_form_view` VALUES("14184", "3", "2015-07-22 06:01:11", "202.46.56.182", "101");
INSERT INTO `wp_rg_form_view` VALUES("14185", "1", "2015-07-22 06:52:36", "204.12.239.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("14186", "3", "2015-07-22 07:11:26", "202.46.57.202", "35");
INSERT INTO `wp_rg_form_view` VALUES("14187", "3", "2015-07-22 08:10:02", "202.46.49.131", "40");
INSERT INTO `wp_rg_form_view` VALUES("14188", "3", "2015-07-22 09:08:29", "202.46.58.160", "30");
INSERT INTO `wp_rg_form_view` VALUES("14189", "3", "2015-07-22 10:07:01", "202.46.50.187", "35");
INSERT INTO `wp_rg_form_view` VALUES("14190", "3", "2015-07-22 11:05:33", "202.46.52.178", "35");
INSERT INTO `wp_rg_form_view` VALUES("14191", "3", "2015-07-22 12:04:05", "202.46.51.170", "61");
INSERT INTO `wp_rg_form_view` VALUES("14192", "3", "2015-07-22 13:02:40", "202.46.50.189", "46");
INSERT INTO `wp_rg_form_view` VALUES("14193", "3", "2015-07-22 14:01:10", "202.46.51.165", "58");
INSERT INTO `wp_rg_form_view` VALUES("14194", "1", "2015-07-22 14:57:16", "68.180.229.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("14195", "3", "2015-07-22 15:11:25", "202.46.51.210", "56");
INSERT INTO `wp_rg_form_view` VALUES("14196", "3", "2015-07-22 16:00:37", "142.31.19.54", "47");
INSERT INTO `wp_rg_form_view` VALUES("14197", "3", "2015-07-22 17:10:12", "202.46.53.191", "40");
INSERT INTO `wp_rg_form_view` VALUES("14198", "3", "2015-07-22 18:07:03", "202.46.52.150", "50");
INSERT INTO `wp_rg_form_view` VALUES("14199", "2", "2015-07-22 18:48:38", "68.180.229.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("14200", "3", "2015-07-22 19:05:33", "202.46.55.153", "35");
INSERT INTO `wp_rg_form_view` VALUES("14201", "1", "2015-07-22 19:40:48", "204.12.239.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("14202", "8", "2015-07-22 19:52:24", "202.46.52.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("14203", "3", "2015-07-22 20:04:06", "202.46.48.210", "55");
INSERT INTO `wp_rg_form_view` VALUES("14204", "8", "2015-07-22 20:04:06", "202.46.48.210", "11");
INSERT INTO `wp_rg_form_view` VALUES("14205", "3", "2015-07-22 21:02:41", "202.46.51.132", "55");
INSERT INTO `wp_rg_form_view` VALUES("14206", "8", "2015-07-22 21:02:42", "202.46.51.132", "11");
INSERT INTO `wp_rg_form_view` VALUES("14207", "1", "2015-07-22 21:33:53", "108.180.48.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("14208", "3", "2015-07-22 22:01:11", "202.46.57.187", "80");
INSERT INTO `wp_rg_form_view` VALUES("14209", "8", "2015-07-22 22:01:12", "202.46.57.187", "14");
INSERT INTO `wp_rg_form_view` VALUES("14210", "3", "2015-07-22 23:10:33", "68.180.229.183", "60");
INSERT INTO `wp_rg_form_view` VALUES("14211", "8", "2015-07-22 23:10:33", "68.180.229.183", "14");
INSERT INTO `wp_rg_form_view` VALUES("14212", "3", "2015-07-23 00:09:57", "202.46.54.189", "40");
INSERT INTO `wp_rg_form_view` VALUES("14213", "8", "2015-07-23 00:09:58", "202.46.54.189", "7");
INSERT INTO `wp_rg_form_view` VALUES("14214", "3", "2015-07-23 01:04:53", "207.46.13.133", "65");
INSERT INTO `wp_rg_form_view` VALUES("14215", "8", "2015-07-23 01:04:53", "207.46.13.133", "12");
INSERT INTO `wp_rg_form_view` VALUES("14216", "3", "2015-07-23 02:06:32", "188.65.117.147", "45");
INSERT INTO `wp_rg_form_view` VALUES("14217", "8", "2015-07-23 02:06:33", "188.65.117.147", "11");
INSERT INTO `wp_rg_form_view` VALUES("14218", "3", "2015-07-23 03:05:33", "202.46.50.184", "36");
INSERT INTO `wp_rg_form_view` VALUES("14219", "8", "2015-07-23 03:05:33", "202.46.50.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("14220", "8", "2015-07-23 04:04:05", "202.46.52.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("14221", "3", "2015-07-23 04:04:06", "202.46.52.172", "30");
INSERT INTO `wp_rg_form_view` VALUES("14222", "3", "2015-07-23 05:02:38", "202.46.52.148", "50");
INSERT INTO `wp_rg_form_view` VALUES("14223", "8", "2015-07-23 05:02:38", "202.46.52.148", "11");
INSERT INTO `wp_rg_form_view` VALUES("14224", "3", "2015-07-23 06:01:10", "202.46.54.169", "50");
INSERT INTO `wp_rg_form_view` VALUES("14225", "8", "2015-07-23 06:01:10", "202.46.54.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("14226", "3", "2015-07-23 07:11:24", "202.46.55.140", "45");
INSERT INTO `wp_rg_form_view` VALUES("14227", "8", "2015-07-23 07:11:24", "202.46.55.140", "10");
INSERT INTO `wp_rg_form_view` VALUES("14228", "1", "2015-07-23 07:23:22", "204.12.239.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("14229", "8", "2015-07-23 08:10:21", "202.46.53.175", "13");
INSERT INTO `wp_rg_form_view` VALUES("14230", "3", "2015-07-23 08:10:26", "202.46.53.175", "60");
INSERT INTO `wp_rg_form_view` VALUES("14231", "3", "2015-07-23 09:06:55", "66.249.67.64", "51");
INSERT INTO `wp_rg_form_view` VALUES("14232", "8", "2015-07-23 09:06:56", "66.249.67.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("14233", "3", "2015-07-23 10:07:02", "202.46.57.172", "86");
INSERT INTO `wp_rg_form_view` VALUES("14234", "8", "2015-07-23 10:07:02", "202.46.57.172", "14");
INSERT INTO `wp_rg_form_view` VALUES("14235", "3", "2015-07-23 11:02:28", "66.249.67.64", "35");
INSERT INTO `wp_rg_form_view` VALUES("14236", "8", "2015-07-23 11:02:28", "66.249.67.64", "7");
INSERT INTO `wp_rg_form_view` VALUES("14237", "8", "2015-07-23 12:04:05", "202.46.50.210", "13");
INSERT INTO `wp_rg_form_view` VALUES("14238", "3", "2015-07-23 12:04:05", "202.46.50.210", "50");
INSERT INTO `wp_rg_form_view` VALUES("14239", "3", "2015-07-23 13:02:37", "202.46.52.169", "45");
INSERT INTO `wp_rg_form_view` VALUES("14240", "8", "2015-07-23 13:02:37", "202.46.52.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("14241", "3", "2015-07-23 14:01:09", "202.46.51.157", "80");
INSERT INTO `wp_rg_form_view` VALUES("14242", "8", "2015-07-23 14:01:09", "202.46.51.157", "14");
INSERT INTO `wp_rg_form_view` VALUES("14243", "3", "2015-07-23 15:11:24", "202.46.51.159", "30");
INSERT INTO `wp_rg_form_view` VALUES("14244", "8", "2015-07-23 15:11:25", "202.46.51.159", "6");
INSERT INTO `wp_rg_form_view` VALUES("14245", "3", "2015-07-23 16:02:31", "104.142.122.209", "70");
INSERT INTO `wp_rg_form_view` VALUES("14246", "8", "2015-07-23 16:02:31", "104.142.122.209", "14");
INSERT INTO `wp_rg_form_view` VALUES("14247", "3", "2015-07-23 17:04:19", "66.102.6.239", "181");
INSERT INTO `wp_rg_form_view` VALUES("14248", "8", "2015-07-23 17:04:20", "66.102.6.239", "34");
INSERT INTO `wp_rg_form_view` VALUES("14249", "7", "2015-07-23 17:24:22", "89.123.12.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("14250", "1", "2015-07-23 17:24:37", "89.123.12.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("14251", "2", "2015-07-23 17:24:44", "89.123.12.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("14252", "3", "2015-07-23 18:07:01", "202.46.49.153", "60");
INSERT INTO `wp_rg_form_view` VALUES("14253", "8", "2015-07-23 18:07:01", "202.46.49.153", "11");
INSERT INTO `wp_rg_form_view` VALUES("14254", "3", "2015-07-23 19:05:33", "202.46.51.207", "86");
INSERT INTO `wp_rg_form_view` VALUES("14255", "8", "2015-07-23 19:05:33", "202.46.51.207", "17");
INSERT INTO `wp_rg_form_view` VALUES("14256", "1", "2015-07-23 19:13:28", "204.12.239.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("14257", "3", "2015-07-23 20:04:05", "202.46.53.148", "30");
INSERT INTO `wp_rg_form_view` VALUES("14258", "8", "2015-07-23 20:04:06", "202.46.53.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("14259", "3", "2015-07-23 21:02:06", "157.55.39.10", "50");
INSERT INTO `wp_rg_form_view` VALUES("14260", "8", "2015-07-23 21:02:06", "157.55.39.10", "10");
INSERT INTO `wp_rg_form_view` VALUES("14261", "3", "2015-07-23 22:01:09", "202.46.48.136", "66");
INSERT INTO `wp_rg_form_view` VALUES("14262", "8", "2015-07-23 22:01:09", "202.46.48.136", "12");
INSERT INTO `wp_rg_form_view` VALUES("14263", "5", "2015-07-23 22:56:33", "78.94.83.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("14264", "3", "2015-07-23 23:06:58", "151.80.31.147", "65");
INSERT INTO `wp_rg_form_view` VALUES("14265", "8", "2015-07-23 23:06:59", "151.80.31.147", "12");
INSERT INTO `wp_rg_form_view` VALUES("14266", "1", "2015-07-23 23:10:44", "141.8.143.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("14267", "3", "2015-07-24 00:09:58", "202.46.57.168", "35");
INSERT INTO `wp_rg_form_view` VALUES("14268", "8", "2015-07-24 00:09:58", "202.46.57.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("14269", "3", "2015-07-24 01:08:35", "202.46.54.161", "165");
INSERT INTO `wp_rg_form_view` VALUES("14270", "8", "2015-07-24 01:08:36", "202.46.54.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("14271", "7", "2015-07-24 01:54:28", "167.88.44.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("14272", "1", "2015-07-24 01:54:38", "167.88.44.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("14273", "2", "2015-07-24 01:54:42", "167.88.44.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("14274", "3", "2015-07-24 02:07:00", "202.46.56.180", "80");
INSERT INTO `wp_rg_form_view` VALUES("14275", "8", "2015-07-24 02:07:00", "202.46.56.180", "16");
INSERT INTO `wp_rg_form_view` VALUES("14276", "3", "2015-07-24 03:00:05", "66.249.67.64", "86");
INSERT INTO `wp_rg_form_view` VALUES("14277", "8", "2015-07-24 03:00:06", "66.249.67.64", "18");
INSERT INTO `wp_rg_form_view` VALUES("14278", "3", "2015-07-24 04:05:52", "202.46.53.156", "37");
INSERT INTO `wp_rg_form_view` VALUES("14279", "8", "2015-07-24 04:05:52", "202.46.53.156", "7");
INSERT INTO `wp_rg_form_view` VALUES("14280", "3", "2015-07-24 05:41:53", "188.65.117.158", "5");
INSERT INTO `wp_rg_form_view` VALUES("14281", "8", "2015-07-24 05:41:53", "188.65.117.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("14282", "3", "2015-07-24 06:10:29", "68.180.229.252", "21");
INSERT INTO `wp_rg_form_view` VALUES("14283", "8", "2015-07-24 06:10:29", "68.180.229.252", "5");
INSERT INTO `wp_rg_form_view` VALUES("14284", "1", "2015-07-24 06:47:23", "204.12.239.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("14285", "3", "2015-07-24 07:06:31", "77.75.76.167", "45");
INSERT INTO `wp_rg_form_view` VALUES("14286", "8", "2015-07-24 07:06:31", "77.75.76.167", "9");
INSERT INTO `wp_rg_form_view` VALUES("14287", "3", "2015-07-24 08:27:38", "68.180.229.252", "10");
INSERT INTO `wp_rg_form_view` VALUES("14288", "8", "2015-07-24 08:27:40", "68.180.229.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("14289", "3", "2015-07-24 09:03:52", "104.154.67.7", "60");
INSERT INTO `wp_rg_form_view` VALUES("14290", "8", "2015-07-24 09:03:52", "104.154.67.7", "13");
INSERT INTO `wp_rg_form_view` VALUES("14291", "7", "2015-07-24 09:03:57", "104.154.67.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("14292", "2", "2015-07-24 09:04:05", "104.154.67.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("14293", "3", "2015-07-24 10:15:32", "141.8.143.183", "10");
INSERT INTO `wp_rg_form_view` VALUES("14294", "8", "2015-07-24 10:15:32", "141.8.143.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("14295", "3", "2015-07-24 11:09:33", "66.249.67.70", "80");
INSERT INTO `wp_rg_form_view` VALUES("14296", "8", "2015-07-24 11:09:35", "66.249.67.70", "16");
INSERT INTO `wp_rg_form_view` VALUES("14297", "8", "2015-07-24 12:12:39", "66.249.67.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("14298", "3", "2015-07-24 12:12:39", "66.249.67.70", "5");
INSERT INTO `wp_rg_form_view` VALUES("14299", "3", "2015-07-24 13:36:26", "104.223.30.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("14300", "8", "2015-07-24 13:36:28", "104.223.30.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("14301", "2", "2015-07-24 14:24:49", "68.180.229.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("14302", "3", "2015-07-24 14:24:49", "68.180.229.252", "10");
INSERT INTO `wp_rg_form_view` VALUES("14303", "8", "2015-07-24 14:24:50", "68.180.229.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("14304", "3", "2015-07-24 16:01:10", "184.69.1.190", "36");
INSERT INTO `wp_rg_form_view` VALUES("14305", "8", "2015-07-24 16:02:47", "184.69.1.190", "8");
INSERT INTO `wp_rg_form_view` VALUES("14306", "3", "2015-07-24 17:02:32", "154.20.33.140", "126");
INSERT INTO `wp_rg_form_view` VALUES("14307", "8", "2015-07-24 17:02:53", "154.20.33.140", "27");
INSERT INTO `wp_rg_form_view` VALUES("14308", "1", "2015-07-24 17:38:58", "58.49.13.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("14309", "3", "2015-07-24 18:01:23", "202.46.52.140", "55");
INSERT INTO `wp_rg_form_view` VALUES("14310", "8", "2015-07-24 18:01:26", "202.46.52.140", "11");
INSERT INTO `wp_rg_form_view` VALUES("14311", "1", "2015-07-24 18:20:25", "204.12.239.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("14312", "3", "2015-07-24 19:00:13", "109.169.29.30", "165");
INSERT INTO `wp_rg_form_view` VALUES("14313", "8", "2015-07-24 19:00:14", "109.169.29.30", "32");
INSERT INTO `wp_rg_form_view` VALUES("14314", "7", "2015-07-24 19:01:04", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("14315", "5", "2015-07-24 19:01:13", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("14316", "2", "2015-07-24 19:01:36", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("14317", "3", "2015-07-24 20:09:39", "216.232.156.187", "55");
INSERT INTO `wp_rg_form_view` VALUES("14318", "8", "2015-07-24 20:09:40", "216.232.156.187", "9");
INSERT INTO `wp_rg_form_view` VALUES("14319", "3", "2015-07-24 21:08:29", "202.46.57.205", "50");
INSERT INTO `wp_rg_form_view` VALUES("14320", "8", "2015-07-24 21:08:29", "202.46.57.205", "10");
INSERT INTO `wp_rg_form_view` VALUES("14321", "5", "2015-07-24 21:36:32", "188.65.117.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("14322", "3", "2015-07-24 22:07:01", "202.46.50.186", "37");
INSERT INTO `wp_rg_form_view` VALUES("14323", "8", "2015-07-24 22:07:01", "202.46.50.186", "8");
INSERT INTO `wp_rg_form_view` VALUES("14324", "5", "2015-07-24 22:59:45", "198.27.82.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("14325", "3", "2015-07-24 23:00:28", "198.27.82.152", "135");
INSERT INTO `wp_rg_form_view` VALUES("14326", "8", "2015-07-24 23:00:29", "198.27.82.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("14327", "8", "2015-07-25 00:00:04", "162.243.193.21", "288");
INSERT INTO `wp_rg_form_view` VALUES("14328", "3", "2015-07-25 00:00:04", "162.243.193.21", "1336");
INSERT INTO `wp_rg_form_view` VALUES("14329", "1", "2015-07-25 00:02:55", "162.243.193.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("14330", "7", "2015-07-25 00:08:48", "162.243.193.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("14331", "5", "2015-07-25 00:10:05", "162.243.193.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("14332", "6", "2015-07-25 00:18:39", "162.243.193.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("14333", "3", "2015-07-25 01:02:37", "202.46.56.193", "57");
INSERT INTO `wp_rg_form_view` VALUES("14334", "8", "2015-07-25 01:02:38", "202.46.56.193", "11");
INSERT INTO `wp_rg_form_view` VALUES("14335", "3", "2015-07-25 02:01:09", "202.46.58.155", "65");
INSERT INTO `wp_rg_form_view` VALUES("14336", "8", "2015-07-25 02:01:10", "202.46.58.155", "15");
INSERT INTO `wp_rg_form_view` VALUES("14337", "8", "2015-07-25 03:11:24", "202.46.49.153", "36");
INSERT INTO `wp_rg_form_view` VALUES("14338", "3", "2015-07-25 03:11:24", "202.46.49.153", "171");
INSERT INTO `wp_rg_form_view` VALUES("14339", "7", "2015-07-25 03:25:59", "59.127.31.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("14340", "1", "2015-07-25 03:26:14", "59.127.31.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("14341", "2", "2015-07-25 03:26:21", "59.127.31.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("14342", "3", "2015-07-25 04:09:56", "202.46.50.180", "46");
INSERT INTO `wp_rg_form_view` VALUES("14343", "8", "2015-07-25 04:09:57", "202.46.50.180", "10");
INSERT INTO `wp_rg_form_view` VALUES("14344", "1", "2015-07-25 04:25:38", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14345", "2", "2015-07-25 04:25:39", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14346", "3", "2015-07-25 05:10:35", "202.46.56.134", "40");
INSERT INTO `wp_rg_form_view` VALUES("14347", "8", "2015-07-25 05:10:35", "202.46.56.134", "8");
INSERT INTO `wp_rg_form_view` VALUES("14348", "3", "2015-07-25 06:07:00", "202.46.54.169", "50");
INSERT INTO `wp_rg_form_view` VALUES("14349", "8", "2015-07-25 06:07:01", "202.46.54.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("14350", "1", "2015-07-25 06:14:59", "204.12.239.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("14351", "3", "2015-07-25 07:02:50", "24.108.144.66", "223");
INSERT INTO `wp_rg_form_view` VALUES("14352", "8", "2015-07-25 07:02:50", "24.108.144.66", "50");
INSERT INTO `wp_rg_form_view` VALUES("14353", "2", "2015-07-25 07:40:23", "157.55.39.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("14354", "7", "2015-07-25 07:50:50", "66.249.67.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("14355", "8", "2015-07-25 08:04:06", "202.46.53.159", "9");
INSERT INTO `wp_rg_form_view` VALUES("14356", "3", "2015-07-25 08:04:07", "202.46.53.159", "40");
INSERT INTO `wp_rg_form_view` VALUES("14357", "6", "2015-07-25 08:50:18", "144.76.71.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("14358", "3", "2015-07-25 09:02:38", "202.46.53.142", "35");
INSERT INTO `wp_rg_form_view` VALUES("14359", "8", "2015-07-25 09:02:39", "202.46.53.142", "8");
INSERT INTO `wp_rg_form_view` VALUES("14360", "3", "2015-07-25 10:01:11", "202.46.51.203", "61");
INSERT INTO `wp_rg_form_view` VALUES("14361", "8", "2015-07-25 10:01:12", "202.46.51.203", "13");
INSERT INTO `wp_rg_form_view` VALUES("14362", "1", "2015-07-25 10:49:51", "141.8.143.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("14363", "3", "2015-07-25 11:11:24", "202.46.51.184", "65");
INSERT INTO `wp_rg_form_view` VALUES("14364", "8", "2015-07-25 11:11:24", "202.46.51.184", "13");
INSERT INTO `wp_rg_form_view` VALUES("14365", "1", "2015-07-25 11:25:49", "220.181.108.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("14366", "2", "2015-07-25 12:09:40", "107.150.42.226", "5");
INSERT INTO `wp_rg_form_view` VALUES("14367", "3", "2015-07-25 12:09:41", "107.150.42.226", "86");
INSERT INTO `wp_rg_form_view` VALUES("14368", "3", "2015-07-25 12:09:41", "107.150.42.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("14369", "8", "2015-07-25 12:09:41", "107.150.42.226", "17");
INSERT INTO `wp_rg_form_view` VALUES("14370", "3", "2015-07-25 13:01:46", "199.21.99.193", "35");
INSERT INTO `wp_rg_form_view` VALUES("14371", "8", "2015-07-25 13:01:47", "199.21.99.193", "8");
INSERT INTO `wp_rg_form_view` VALUES("14372", "3", "2015-07-25 14:18:44", "202.46.57.199", "35");
INSERT INTO `wp_rg_form_view` VALUES("14373", "8", "2015-07-25 14:18:45", "202.46.57.199", "6");
INSERT INTO `wp_rg_form_view` VALUES("14374", "3", "2015-07-25 15:05:33", "202.46.53.156", "30");
INSERT INTO `wp_rg_form_view` VALUES("14375", "8", "2015-07-25 15:05:33", "202.46.53.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("14376", "3", "2015-07-25 16:04:05", "202.46.58.150", "45");
INSERT INTO `wp_rg_form_view` VALUES("14377", "8", "2015-07-25 16:04:05", "202.46.58.150", "10");
INSERT INTO `wp_rg_form_view` VALUES("14378", "8", "2015-07-25 17:01:42", "151.80.31.147", "12");
INSERT INTO `wp_rg_form_view` VALUES("14379", "3", "2015-07-25 17:01:42", "151.80.31.147", "55");
INSERT INTO `wp_rg_form_view` VALUES("14380", "8", "2015-07-25 18:01:09", "202.46.51.180", "16");
INSERT INTO `wp_rg_form_view` VALUES("14381", "3", "2015-07-25 18:01:09", "202.46.51.180", "68");
INSERT INTO `wp_rg_form_view` VALUES("14382", "1", "2015-07-25 18:33:15", "204.12.239.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("14383", "3", "2015-07-25 19:11:24", "202.46.52.147", "388");
INSERT INTO `wp_rg_form_view` VALUES("14384", "8", "2015-07-25 19:11:25", "202.46.52.147", "80");
INSERT INTO `wp_rg_form_view` VALUES("14385", "7", "2015-07-25 19:29:48", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("14386", "2", "2015-07-25 19:30:06", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("14387", "1", "2015-07-25 19:30:10", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("14388", "6", "2015-07-25 19:34:36", "157.55.39.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("14389", "5", "2015-07-25 19:35:35", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("14390", "8", "2015-07-25 20:01:59", "162.210.196.98", "13");
INSERT INTO `wp_rg_form_view` VALUES("14391", "3", "2015-07-25 20:02:16", "162.210.196.98", "50");
INSERT INTO `wp_rg_form_view` VALUES("14392", "3", "2015-07-25 21:04:04", "93.186.202.241", "56");
INSERT INTO `wp_rg_form_view` VALUES("14393", "8", "2015-07-25 21:04:04", "93.186.202.241", "13");
INSERT INTO `wp_rg_form_view` VALUES("14394", "3", "2015-07-25 22:06:36", "151.80.31.147", "25");
INSERT INTO `wp_rg_form_view` VALUES("14395", "8", "2015-07-25 22:06:36", "151.80.31.147", "7");
INSERT INTO `wp_rg_form_view` VALUES("14396", "3", "2015-07-25 23:03:05", "68.180.229.161", "36");
INSERT INTO `wp_rg_form_view` VALUES("14397", "8", "2015-07-25 23:03:06", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("14398", "3", "2015-07-26 00:04:05", "202.46.57.179", "45");
INSERT INTO `wp_rg_form_view` VALUES("14399", "8", "2015-07-26 00:04:05", "202.46.57.179", "8");
INSERT INTO `wp_rg_form_view` VALUES("14400", "8", "2015-07-26 01:02:37", "202.46.57.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("14401", "3", "2015-07-26 01:02:37", "202.46.57.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("14402", "3", "2015-07-26 02:01:08", "202.46.54.136", "60");
INSERT INTO `wp_rg_form_view` VALUES("14403", "8", "2015-07-26 02:01:09", "202.46.54.136", "12");
INSERT INTO `wp_rg_form_view` VALUES("14404", "1", "2015-07-26 02:46:08", "27.19.177.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("14405", "3", "2015-07-26 03:11:24", "202.46.50.180", "30");
INSERT INTO `wp_rg_form_view` VALUES("14406", "8", "2015-07-26 03:11:25", "202.46.50.180", "5");
INSERT INTO `wp_rg_form_view` VALUES("14407", "3", "2015-07-26 04:20:10", "66.249.67.70", "35");
INSERT INTO `wp_rg_form_view` VALUES("14408", "8", "2015-07-26 04:20:11", "66.249.67.70", "7");
INSERT INTO `wp_rg_form_view` VALUES("14409", "3", "2015-07-26 05:06:47", "202.46.52.168", "35");
INSERT INTO `wp_rg_form_view` VALUES("14410", "8", "2015-07-26 05:06:47", "202.46.52.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("14411", "3", "2015-07-26 06:05:19", "202.46.55.172", "50");
INSERT INTO `wp_rg_form_view` VALUES("14412", "8", "2015-07-26 06:05:20", "202.46.55.172", "10");
INSERT INTO `wp_rg_form_view` VALUES("14413", "1", "2015-07-26 06:13:50", "204.12.239.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("14414", "3", "2015-07-26 07:03:51", "202.46.49.141", "65");
INSERT INTO `wp_rg_form_view` VALUES("14415", "8", "2015-07-26 07:03:52", "202.46.49.141", "11");
INSERT INTO `wp_rg_form_view` VALUES("14416", "3", "2015-07-26 08:02:24", "202.46.55.170", "45");
INSERT INTO `wp_rg_form_view` VALUES("14417", "8", "2015-07-26 08:02:25", "202.46.55.170", "8");
INSERT INTO `wp_rg_form_view` VALUES("14418", "3", "2015-07-26 09:00:56", "202.46.52.179", "51");
INSERT INTO `wp_rg_form_view` VALUES("14419", "8", "2015-07-26 09:00:57", "202.46.52.179", "12");
INSERT INTO `wp_rg_form_view` VALUES("14420", "3", "2015-07-26 10:11:10", "202.46.58.209", "40");
INSERT INTO `wp_rg_form_view` VALUES("14421", "8", "2015-07-26 10:11:11", "202.46.58.209", "7");
INSERT INTO `wp_rg_form_view` VALUES("14422", "3", "2015-07-26 11:07:10", "66.249.67.76", "36");
INSERT INTO `wp_rg_form_view` VALUES("14423", "8", "2015-07-26 11:07:10", "66.249.67.76", "9");
INSERT INTO `wp_rg_form_view` VALUES("14424", "8", "2015-07-26 12:08:15", "202.46.58.198", "8");
INSERT INTO `wp_rg_form_view` VALUES("14425", "3", "2015-07-26 12:08:15", "202.46.58.198", "45");
INSERT INTO `wp_rg_form_view` VALUES("14426", "8", "2015-07-26 13:06:47", "202.46.52.151", "29");
INSERT INTO `wp_rg_form_view` VALUES("14427", "3", "2015-07-26 13:06:47", "202.46.52.151", "141");
INSERT INTO `wp_rg_form_view` VALUES("14428", "7", "2015-07-26 13:10:08", "222.165.203.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("14429", "1", "2015-07-26 13:10:25", "222.165.203.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("14430", "2", "2015-07-26 13:10:33", "222.165.203.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("14431", "3", "2015-07-26 14:02:56", "100.43.91.23", "55");
INSERT INTO `wp_rg_form_view` VALUES("14432", "8", "2015-07-26 14:02:57", "100.43.91.23", "11");
INSERT INTO `wp_rg_form_view` VALUES("14433", "3", "2015-07-26 15:03:52", "202.46.55.171", "40");
INSERT INTO `wp_rg_form_view` VALUES("14434", "8", "2015-07-26 15:03:52", "202.46.55.171", "8");
INSERT INTO `wp_rg_form_view` VALUES("14435", "6", "2015-07-26 15:21:50", "107.152.128.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("14436", "8", "2015-07-26 16:02:24", "202.46.55.179", "9");
INSERT INTO `wp_rg_form_view` VALUES("14437", "3", "2015-07-26 16:02:24", "202.46.55.179", "40");
INSERT INTO `wp_rg_form_view` VALUES("14438", "3", "2015-07-26 17:00:56", "202.46.53.146", "155");
INSERT INTO `wp_rg_form_view` VALUES("14439", "8", "2015-07-26 17:00:57", "202.46.53.146", "32");
INSERT INTO `wp_rg_form_view` VALUES("14440", "1", "2015-07-26 17:21:00", "204.12.239.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("14441", "7", "2015-07-26 17:31:39", "77.161.173.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("14442", "2", "2015-07-26 17:31:59", "77.161.173.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("14443", "3", "2015-07-26 18:11:12", "202.46.51.209", "40");
INSERT INTO `wp_rg_form_view` VALUES("14444", "8", "2015-07-26 18:11:12", "202.46.51.209", "9");
INSERT INTO `wp_rg_form_view` VALUES("14445", "3", "2015-07-26 19:09:42", "202.46.52.157", "40");
INSERT INTO `wp_rg_form_view` VALUES("14446", "8", "2015-07-26 19:09:43", "202.46.52.157", "9");
INSERT INTO `wp_rg_form_view` VALUES("14447", "3", "2015-07-26 20:08:15", "202.46.53.145", "55");
INSERT INTO `wp_rg_form_view` VALUES("14448", "8", "2015-07-26 20:08:15", "202.46.53.145", "9");
INSERT INTO `wp_rg_form_view` VALUES("14449", "8", "2015-07-26 21:06:48", "202.46.56.194", "11");
INSERT INTO `wp_rg_form_view` VALUES("14450", "3", "2015-07-26 21:06:48", "202.46.56.194", "45");
INSERT INTO `wp_rg_form_view` VALUES("14451", "3", "2015-07-26 22:04:26", "68.180.229.161", "41");
INSERT INTO `wp_rg_form_view` VALUES("14452", "8", "2015-07-26 22:04:26", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("14453", "3", "2015-07-26 23:01:09", "110.139.89.61", "55");
INSERT INTO `wp_rg_form_view` VALUES("14454", "8", "2015-07-26 23:01:09", "110.139.89.61", "9");
INSERT INTO `wp_rg_form_view` VALUES("14455", "1", "2015-07-26 23:04:46", "52.11.141.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("14456", "3", "2015-07-27 00:02:24", "202.46.58.150", "40");
INSERT INTO `wp_rg_form_view` VALUES("14457", "8", "2015-07-27 00:02:25", "202.46.58.150", "7");
INSERT INTO `wp_rg_form_view` VALUES("14458", "3", "2015-07-27 01:01:04", "202.46.51.190", "45");
INSERT INTO `wp_rg_form_view` VALUES("14459", "8", "2015-07-27 01:01:04", "202.46.51.190", "7");
INSERT INTO `wp_rg_form_view` VALUES("14460", "3", "2015-07-27 02:08:15", "91.200.12.38", "106");
INSERT INTO `wp_rg_form_view` VALUES("14461", "8", "2015-07-27 02:08:16", "91.200.12.38", "22");
INSERT INTO `wp_rg_form_view` VALUES("14462", "3", "2015-07-27 03:00:47", "207.46.13.86", "60");
INSERT INTO `wp_rg_form_view` VALUES("14463", "8", "2015-07-27 03:00:47", "207.46.13.86", "11");
INSERT INTO `wp_rg_form_view` VALUES("14464", "8", "2015-07-27 04:08:17", "202.46.55.171", "15");
INSERT INTO `wp_rg_form_view` VALUES("14465", "3", "2015-07-27 04:08:19", "202.46.55.171", "70");
INSERT INTO `wp_rg_form_view` VALUES("14466", "1", "2015-07-27 04:46:37", "204.12.239.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("14467", "8", "2015-07-27 05:00:53", "202.46.58.151", "20");
INSERT INTO `wp_rg_form_view` VALUES("14468", "3", "2015-07-27 05:00:53", "202.46.58.151", "101");
INSERT INTO `wp_rg_form_view` VALUES("14469", "3", "2015-07-27 06:05:20", "202.46.53.143", "70");
INSERT INTO `wp_rg_form_view` VALUES("14470", "8", "2015-07-27 06:05:20", "202.46.53.143", "17");
INSERT INTO `wp_rg_form_view` VALUES("14471", "8", "2015-07-27 07:03:51", "202.46.53.160", "17");
INSERT INTO `wp_rg_form_view` VALUES("14472", "3", "2015-07-27 07:03:51", "202.46.53.160", "70");
INSERT INTO `wp_rg_form_view` VALUES("14473", "3", "2015-07-27 08:02:24", "202.46.57.202", "87");
INSERT INTO `wp_rg_form_view` VALUES("14474", "8", "2015-07-27 08:02:24", "202.46.57.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("14475", "3", "2015-07-27 09:00:56", "202.46.49.145", "86");
INSERT INTO `wp_rg_form_view` VALUES("14476", "8", "2015-07-27 09:00:56", "202.46.49.145", "18");
INSERT INTO `wp_rg_form_view` VALUES("14477", "3", "2015-07-27 10:05:27", "202.46.53.202", "113");
INSERT INTO `wp_rg_form_view` VALUES("14478", "8", "2015-07-27 10:05:28", "202.46.53.202", "23");
INSERT INTO `wp_rg_form_view` VALUES("14479", "8", "2015-07-27 11:03:48", "202.46.57.183", "17");
INSERT INTO `wp_rg_form_view` VALUES("14480", "3", "2015-07-27 11:03:49", "202.46.57.183", "75");
INSERT INTO `wp_rg_form_view` VALUES("14481", "8", "2015-07-27 12:02:20", "202.46.53.190", "16");
INSERT INTO `wp_rg_form_view` VALUES("14482", "3", "2015-07-27 12:02:21", "202.46.53.190", "77");
INSERT INTO `wp_rg_form_view` VALUES("14483", "2", "2015-07-27 12:53:03", "176.36.52.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("14484", "3", "2015-07-27 13:00:52", "202.46.54.168", "95");
INSERT INTO `wp_rg_form_view` VALUES("14485", "8", "2015-07-27 13:00:53", "202.46.54.168", "17");
INSERT INTO `wp_rg_form_view` VALUES("14486", "3", "2015-07-27 14:05:19", "202.46.57.171", "113");
INSERT INTO `wp_rg_form_view` VALUES("14487", "8", "2015-07-27 14:05:20", "202.46.57.171", "23");
INSERT INTO `wp_rg_form_view` VALUES("14488", "2", "2015-07-27 14:30:27", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("14489", "3", "2015-07-27 15:03:51", "202.46.48.134", "81");
INSERT INTO `wp_rg_form_view` VALUES("14490", "8", "2015-07-27 15:03:52", "202.46.48.134", "17");
INSERT INTO `wp_rg_form_view` VALUES("14491", "3", "2015-07-27 16:02:56", "202.46.56.179", "127");
INSERT INTO `wp_rg_form_view` VALUES("14492", "8", "2015-07-27 16:02:58", "202.46.56.179", "23");
INSERT INTO `wp_rg_form_view` VALUES("14493", "8", "2015-07-27 17:00:55", "202.46.49.141", "18");
INSERT INTO `wp_rg_form_view` VALUES("14494", "3", "2015-07-27 17:00:56", "202.46.49.141", "71");
INSERT INTO `wp_rg_form_view` VALUES("14495", "1", "2015-07-27 18:02:30", "27.19.177.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("14496", "3", "2015-07-27 18:02:30", "27.19.177.146", "110");
INSERT INTO `wp_rg_form_view` VALUES("14497", "8", "2015-07-27 18:02:31", "27.19.177.146", "21");
INSERT INTO `wp_rg_form_view` VALUES("14498", "3", "2015-07-27 19:03:48", "202.46.54.130", "111");
INSERT INTO `wp_rg_form_view` VALUES("14499", "8", "2015-07-27 19:03:49", "202.46.54.130", "27");
INSERT INTO `wp_rg_form_view` VALUES("14500", "3", "2015-07-27 20:02:21", "202.46.51.163", "86");
INSERT INTO `wp_rg_form_view` VALUES("14501", "8", "2015-07-27 20:02:21", "202.46.51.163", "15");
INSERT INTO `wp_rg_form_view` VALUES("14502", "1", "2015-07-27 20:09:55", "66.249.67.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("14503", "3", "2015-07-27 21:00:52", "202.46.54.182", "105");
INSERT INTO `wp_rg_form_view` VALUES("14504", "8", "2015-07-27 21:00:53", "202.46.54.182", "19");
INSERT INTO `wp_rg_form_view` VALUES("14505", "3", "2015-07-27 22:05:18", "202.46.58.136", "105");
INSERT INTO `wp_rg_form_view` VALUES("14506", "8", "2015-07-27 22:05:19", "202.46.58.136", "17");
INSERT INTO `wp_rg_form_view` VALUES("14507", "3", "2015-07-27 23:03:51", "202.46.55.138", "85");
INSERT INTO `wp_rg_form_view` VALUES("14508", "8", "2015-07-27 23:03:51", "202.46.55.138", "20");
INSERT INTO `wp_rg_form_view` VALUES("14509", "3", "2015-07-28 00:02:23", "202.46.52.169", "87");
INSERT INTO `wp_rg_form_view` VALUES("14510", "8", "2015-07-28 00:02:24", "202.46.52.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("14511", "1", "2015-07-28 00:40:09", "107.150.42.226", "3");
INSERT INTO `wp_rg_form_view` VALUES("14512", "3", "2015-07-28 01:00:19", "202.46.51.205", "87");
INSERT INTO `wp_rg_form_view` VALUES("14513", "8", "2015-07-28 01:00:19", "202.46.51.205", "21");
INSERT INTO `wp_rg_form_view` VALUES("14514", "3", "2015-07-28 02:05:17", "202.46.50.189", "66");
INSERT INTO `wp_rg_form_view` VALUES("14515", "8", "2015-07-28 02:05:17", "202.46.50.189", "19");
INSERT INTO `wp_rg_form_view` VALUES("14516", "3", "2015-07-28 03:03:48", "202.46.49.140", "76");
INSERT INTO `wp_rg_form_view` VALUES("14517", "8", "2015-07-28 03:03:48", "202.46.49.140", "14");
INSERT INTO `wp_rg_form_view` VALUES("14518", "3", "2015-07-28 04:00:24", "172.218.235.237", "56");
INSERT INTO `wp_rg_form_view` VALUES("14519", "8", "2015-07-28 04:00:24", "172.218.235.237", "17");
INSERT INTO `wp_rg_form_view` VALUES("14520", "3", "2015-07-28 05:06:47", "202.46.57.203", "20");
INSERT INTO `wp_rg_form_view` VALUES("14521", "8", "2015-07-28 05:06:47", "202.46.57.203", "7");
INSERT INTO `wp_rg_form_view` VALUES("14522", "3", "2015-07-28 06:05:20", "202.46.50.165", "50");
INSERT INTO `wp_rg_form_view` VALUES("14523", "8", "2015-07-28 06:05:21", "202.46.50.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("14524", "8", "2015-07-28 07:03:50", "202.46.51.204", "12");
INSERT INTO `wp_rg_form_view` VALUES("14525", "3", "2015-07-28 07:03:51", "202.46.51.204", "37");
INSERT INTO `wp_rg_form_view` VALUES("14526", "3", "2015-07-28 08:02:26", "202.46.56.203", "42");
INSERT INTO `wp_rg_form_view` VALUES("14527", "8", "2015-07-28 08:02:27", "202.46.56.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("14528", "3", "2015-07-28 09:00:56", "202.46.48.140", "45");
INSERT INTO `wp_rg_form_view` VALUES("14529", "8", "2015-07-28 09:00:57", "202.46.48.140", "11");
INSERT INTO `wp_rg_form_view` VALUES("14530", "8", "2015-07-28 10:11:09", "202.46.49.141", "9");
INSERT INTO `wp_rg_form_view` VALUES("14531", "3", "2015-07-28 10:11:10", "202.46.49.141", "28");
INSERT INTO `wp_rg_form_view` VALUES("14532", "8", "2015-07-28 11:09:42", "202.46.58.204", "16");
INSERT INTO `wp_rg_form_view` VALUES("14533", "3", "2015-07-28 11:09:43", "202.46.58.204", "58");
INSERT INTO `wp_rg_form_view` VALUES("14534", "3", "2015-07-28 12:01:34", "157.55.39.145", "53");
INSERT INTO `wp_rg_form_view` VALUES("14535", "8", "2015-07-28 12:01:34", "157.55.39.145", "14");
INSERT INTO `wp_rg_form_view` VALUES("14536", "3", "2015-07-28 13:07:14", "202.46.54.167", "28");
INSERT INTO `wp_rg_form_view` VALUES("14537", "8", "2015-07-28 13:07:15", "202.46.54.167", "9");
INSERT INTO `wp_rg_form_view` VALUES("14538", "3", "2015-07-28 14:05:19", "202.46.55.145", "30");
INSERT INTO `wp_rg_form_view` VALUES("14539", "8", "2015-07-28 14:05:19", "202.46.55.145", "6");
INSERT INTO `wp_rg_form_view` VALUES("14540", "3", "2015-07-28 15:03:50", "202.46.49.153", "41");
INSERT INTO `wp_rg_form_view` VALUES("14541", "8", "2015-07-28 15:03:51", "202.46.49.153", "9");
INSERT INTO `wp_rg_form_view` VALUES("14542", "3", "2015-07-28 16:02:27", "202.46.49.207", "46");
INSERT INTO `wp_rg_form_view` VALUES("14543", "8", "2015-07-28 16:02:27", "202.46.49.207", "9");
INSERT INTO `wp_rg_form_view` VALUES("14544", "3", "2015-07-28 17:00:56", "202.46.51.200", "53");
INSERT INTO `wp_rg_form_view` VALUES("14545", "8", "2015-07-28 17:00:57", "202.46.51.200", "14");
INSERT INTO `wp_rg_form_view` VALUES("14546", "3", "2015-07-28 18:08:42", "184.71.30.182", "66");
INSERT INTO `wp_rg_form_view` VALUES("14547", "8", "2015-07-28 18:08:42", "184.71.30.182", "17");
INSERT INTO `wp_rg_form_view` VALUES("14548", "1", "2015-07-28 18:48:56", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("14549", "3", "2015-07-28 19:09:43", "202.46.58.134", "41");
INSERT INTO `wp_rg_form_view` VALUES("14550", "8", "2015-07-28 19:09:43", "202.46.58.134", "13");
INSERT INTO `wp_rg_form_view` VALUES("14551", "7", "2015-07-28 19:47:05", "151.80.31.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("14552", "3", "2015-07-28 20:08:14", "202.46.54.183", "28");
INSERT INTO `wp_rg_form_view` VALUES("14553", "8", "2015-07-28 20:08:14", "202.46.54.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("14554", "8", "2015-07-28 21:06:47", "202.46.55.149", "8");
INSERT INTO `wp_rg_form_view` VALUES("14555", "3", "2015-07-28 21:06:47", "202.46.55.149", "24");
INSERT INTO `wp_rg_form_view` VALUES("14556", "3", "2015-07-28 22:05:18", "202.46.53.203", "20");
INSERT INTO `wp_rg_form_view` VALUES("14557", "8", "2015-07-28 22:05:19", "202.46.53.203", "7");
INSERT INTO `wp_rg_form_view` VALUES("14558", "3", "2015-07-28 23:03:50", "202.46.55.140", "53");
INSERT INTO `wp_rg_form_view` VALUES("14559", "8", "2015-07-28 23:03:51", "202.46.55.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("14560", "3", "2015-07-29 00:01:34", "151.80.31.146", "28");
INSERT INTO `wp_rg_form_view` VALUES("14561", "8", "2015-07-29 00:01:35", "151.80.31.146", "10");
INSERT INTO `wp_rg_form_view` VALUES("14562", "3", "2015-07-29 01:00:55", "202.46.51.133", "56");
INSERT INTO `wp_rg_form_view` VALUES("14563", "8", "2015-07-29 01:00:55", "202.46.51.133", "15");
INSERT INTO `wp_rg_form_view` VALUES("14564", "1", "2015-07-29 01:10:47", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14565", "2", "2015-07-29 01:10:49", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14566", "5", "2015-07-29 01:12:10", "93.179.68.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("14567", "3", "2015-07-29 02:11:10", "202.46.51.132", "28");
INSERT INTO `wp_rg_form_view` VALUES("14568", "8", "2015-07-29 02:11:10", "202.46.51.132", "10");
INSERT INTO `wp_rg_form_view` VALUES("14569", "3", "2015-07-29 03:09:43", "202.46.58.188", "24");
INSERT INTO `wp_rg_form_view` VALUES("14570", "8", "2015-07-29 03:09:43", "202.46.58.188", "9");
INSERT INTO `wp_rg_form_view` VALUES("14571", "8", "2015-07-29 04:08:14", "202.46.54.167", "8");
INSERT INTO `wp_rg_form_view` VALUES("14572", "3", "2015-07-29 04:08:14", "202.46.54.167", "31");
INSERT INTO `wp_rg_form_view` VALUES("14573", "6", "2015-07-29 04:51:42", "66.249.67.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("14574", "3", "2015-07-29 05:06:49", "202.46.49.157", "31");
INSERT INTO `wp_rg_form_view` VALUES("14575", "8", "2015-07-29 05:06:49", "202.46.49.157", "10");
INSERT INTO `wp_rg_form_view` VALUES("14576", "8", "2015-07-29 06:05:22", "202.46.52.144", "13");
INSERT INTO `wp_rg_form_view` VALUES("14577", "3", "2015-07-29 06:05:22", "202.46.52.144", "34");
INSERT INTO `wp_rg_form_view` VALUES("14578", "3", "2015-07-29 07:03:50", "202.46.49.130", "27");
INSERT INTO `wp_rg_form_view` VALUES("14579", "8", "2015-07-29 07:03:51", "202.46.49.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("14580", "6", "2015-07-29 07:32:22", "167.160.110.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("14581", "8", "2015-07-29 08:02:24", "202.46.52.142", "14");
INSERT INTO `wp_rg_form_view` VALUES("14582", "3", "2015-07-29 08:02:26", "202.46.52.142", "41");
INSERT INTO `wp_rg_form_view` VALUES("14583", "3", "2015-07-29 09:00:55", "202.46.54.181", "19");
INSERT INTO `wp_rg_form_view` VALUES("14584", "8", "2015-07-29 09:00:56", "202.46.54.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("14585", "6", "2015-07-29 09:22:10", "31.220.30.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("14586", "3", "2015-07-29 10:11:09", "202.46.52.203", "46");
INSERT INTO `wp_rg_form_view` VALUES("14587", "8", "2015-07-29 10:11:09", "202.46.52.203", "14");
INSERT INTO `wp_rg_form_view` VALUES("14588", "3", "2015-07-29 11:02:58", "77.75.78.171", "27");
INSERT INTO `wp_rg_form_view` VALUES("14589", "8", "2015-07-29 11:02:58", "77.75.78.171", "8");
INSERT INTO `wp_rg_form_view` VALUES("14590", "3", "2015-07-29 12:08:13", "202.46.51.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("14591", "8", "2015-07-29 12:08:13", "202.46.51.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("14592", "3", "2015-07-29 13:06:47", "202.46.55.146", "34");
INSERT INTO `wp_rg_form_view` VALUES("14593", "8", "2015-07-29 13:06:47", "202.46.55.146", "9");
INSERT INTO `wp_rg_form_view` VALUES("14594", "3", "2015-07-29 14:05:19", "202.46.54.184", "27");
INSERT INTO `wp_rg_form_view` VALUES("14595", "8", "2015-07-29 14:05:19", "202.46.54.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("14596", "3", "2015-07-29 15:03:50", "202.46.50.165", "35");
INSERT INTO `wp_rg_form_view` VALUES("14597", "8", "2015-07-29 15:03:51", "202.46.50.165", "13");
INSERT INTO `wp_rg_form_view` VALUES("14598", "3", "2015-07-29 16:02:24", "202.46.54.158", "29");
INSERT INTO `wp_rg_form_view` VALUES("14599", "8", "2015-07-29 16:02:25", "202.46.54.158", "11");
INSERT INTO `wp_rg_form_view` VALUES("14600", "8", "2015-07-29 17:00:54", "202.46.51.205", "16");
INSERT INTO `wp_rg_form_view` VALUES("14601", "3", "2015-07-29 17:00:54", "202.46.51.205", "58");
INSERT INTO `wp_rg_form_view` VALUES("14602", "3", "2015-07-29 18:04:45", "142.205.241.254", "36");
INSERT INTO `wp_rg_form_view` VALUES("14603", "8", "2015-07-29 18:04:45", "142.205.241.254", "14");
INSERT INTO `wp_rg_form_view` VALUES("14604", "3", "2015-07-29 19:09:41", "202.46.54.146", "41");
INSERT INTO `wp_rg_form_view` VALUES("14605", "8", "2015-07-29 19:09:41", "202.46.54.146", "13");
INSERT INTO `wp_rg_form_view` VALUES("14606", "5", "2015-07-29 19:44:12", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("14607", "3", "2015-07-29 20:08:14", "202.46.57.158", "50");
INSERT INTO `wp_rg_form_view` VALUES("14608", "8", "2015-07-29 20:08:14", "202.46.57.158", "15");
INSERT INTO `wp_rg_form_view` VALUES("14609", "3", "2015-07-29 21:06:46", "202.46.51.165", "33");
INSERT INTO `wp_rg_form_view` VALUES("14610", "8", "2015-07-29 21:06:46", "202.46.51.165", "11");
INSERT INTO `wp_rg_form_view` VALUES("14611", "3", "2015-07-29 22:05:17", "202.46.58.203", "32");
INSERT INTO `wp_rg_form_view` VALUES("14612", "8", "2015-07-29 22:05:18", "202.46.58.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("14613", "3", "2015-07-29 23:03:50", "202.46.53.210", "24");
INSERT INTO `wp_rg_form_view` VALUES("14614", "8", "2015-07-29 23:03:50", "202.46.53.210", "6");
INSERT INTO `wp_rg_form_view` VALUES("14615", "3", "2015-07-30 00:02:22", "202.46.51.198", "26");
INSERT INTO `wp_rg_form_view` VALUES("14616", "8", "2015-07-30 00:02:22", "202.46.51.198", "14");
INSERT INTO `wp_rg_form_view` VALUES("14617", "3", "2015-07-30 01:00:55", "202.46.56.205", "34");
INSERT INTO `wp_rg_form_view` VALUES("14618", "8", "2015-07-30 01:00:55", "202.46.56.205", "14");
INSERT INTO `wp_rg_form_view` VALUES("14619", "3", "2015-07-30 02:11:09", "202.46.52.174", "50");
INSERT INTO `wp_rg_form_view` VALUES("14620", "8", "2015-07-30 02:11:09", "202.46.52.174", "26");
INSERT INTO `wp_rg_form_view` VALUES("14621", "3", "2015-07-30 03:01:53", "100.43.90.11", "33");
INSERT INTO `wp_rg_form_view` VALUES("14622", "8", "2015-07-30 03:01:54", "100.43.90.11", "13");
INSERT INTO `wp_rg_form_view` VALUES("14623", "3", "2015-07-30 04:08:13", "202.46.50.164", "14");
INSERT INTO `wp_rg_form_view` VALUES("14624", "8", "2015-07-30 04:08:14", "202.46.50.164", "8");
INSERT INTO `wp_rg_form_view` VALUES("14625", "8", "2015-07-30 05:06:45", "202.46.51.200", "8");
INSERT INTO `wp_rg_form_view` VALUES("14626", "3", "2015-07-30 05:06:46", "202.46.51.200", "14");
INSERT INTO `wp_rg_form_view` VALUES("14627", "3", "2015-07-30 06:05:18", "202.46.54.141", "22");
INSERT INTO `wp_rg_form_view` VALUES("14628", "8", "2015-07-30 06:05:19", "202.46.54.141", "6");
INSERT INTO `wp_rg_form_view` VALUES("14629", "3", "2015-07-30 07:03:53", "202.46.48.131", "16");
INSERT INTO `wp_rg_form_view` VALUES("14630", "8", "2015-07-30 07:03:54", "202.46.48.131", "9");
INSERT INTO `wp_rg_form_view` VALUES("14631", "3", "2015-07-30 08:02:33", "202.46.56.179", "17");
INSERT INTO `wp_rg_form_view` VALUES("14632", "8", "2015-07-30 08:02:33", "202.46.56.179", "10");
INSERT INTO `wp_rg_form_view` VALUES("14633", "3", "2015-07-30 09:00:54", "202.46.50.133", "20");
INSERT INTO `wp_rg_form_view` VALUES("14634", "8", "2015-07-30 09:00:55", "202.46.50.133", "9");
INSERT INTO `wp_rg_form_view` VALUES("14635", "3", "2015-07-30 10:00:06", "207.46.13.76", "16");
INSERT INTO `wp_rg_form_view` VALUES("14636", "8", "2015-07-30 10:00:06", "207.46.13.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("14637", "5", "2015-07-30 10:30:02", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("14638", "3", "2015-07-30 11:09:41", "202.46.50.159", "21");
INSERT INTO `wp_rg_form_view` VALUES("14639", "8", "2015-07-30 11:09:42", "202.46.50.159", "9");
INSERT INTO `wp_rg_form_view` VALUES("14640", "6", "2015-07-30 11:49:39", "167.160.105.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("14641", "8", "2015-07-30 12:08:13", "202.46.51.198", "13");
INSERT INTO `wp_rg_form_view` VALUES("14642", "3", "2015-07-30 12:08:13", "202.46.51.198", "26");
INSERT INTO `wp_rg_form_view` VALUES("14643", "3", "2015-07-30 13:06:45", "202.46.52.207", "27");
INSERT INTO `wp_rg_form_view` VALUES("14644", "8", "2015-07-30 13:06:45", "202.46.52.207", "9");
INSERT INTO `wp_rg_form_view` VALUES("14645", "8", "2015-07-30 14:05:17", "202.46.53.144", "11");
INSERT INTO `wp_rg_form_view` VALUES("14646", "3", "2015-07-30 14:05:17", "202.46.53.144", "19");
INSERT INTO `wp_rg_form_view` VALUES("14647", "3", "2015-07-30 15:03:49", "202.46.54.190", "22");
INSERT INTO `wp_rg_form_view` VALUES("14648", "8", "2015-07-30 15:03:50", "202.46.54.190", "10");
INSERT INTO `wp_rg_form_view` VALUES("14649", "3", "2015-07-30 16:02:22", "202.46.49.190", "32");
INSERT INTO `wp_rg_form_view` VALUES("14650", "8", "2015-07-30 16:02:22", "202.46.49.190", "16");
INSERT INTO `wp_rg_form_view` VALUES("14651", "3", "2015-07-30 17:00:57", "202.46.55.152", "31");
INSERT INTO `wp_rg_form_view` VALUES("14652", "8", "2015-07-30 17:00:57", "202.46.55.152", "11");
INSERT INTO `wp_rg_form_view` VALUES("14653", "6", "2015-07-30 18:09:33", "23.95.237.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("14654", "3", "2015-07-30 18:09:33", "23.95.237.89", "19");
INSERT INTO `wp_rg_form_view` VALUES("14655", "8", "2015-07-30 18:09:33", "23.95.237.89", "10");
INSERT INTO `wp_rg_form_view` VALUES("14656", "3", "2015-07-30 19:09:41", "202.46.51.168", "26");
INSERT INTO `wp_rg_form_view` VALUES("14657", "8", "2015-07-30 19:09:41", "202.46.51.168", "11");
INSERT INTO `wp_rg_form_view` VALUES("14658", "3", "2015-07-30 20:01:52", "68.180.229.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("14659", "8", "2015-07-30 20:01:52", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("14660", "3", "2015-07-30 21:01:40", "151.80.31.146", "34");
INSERT INTO `wp_rg_form_view` VALUES("14661", "8", "2015-07-30 21:01:40", "151.80.31.146", "15");
INSERT INTO `wp_rg_form_view` VALUES("14662", "3", "2015-07-30 22:05:18", "202.46.58.164", "40");
INSERT INTO `wp_rg_form_view` VALUES("14663", "8", "2015-07-30 22:05:18", "202.46.58.164", "20");
INSERT INTO `wp_rg_form_view` VALUES("14664", "1", "2015-07-30 22:10:35", "107.150.42.226", "6");
INSERT INTO `wp_rg_form_view` VALUES("14665", "3", "2015-07-30 23:03:51", "202.46.57.179", "34");
INSERT INTO `wp_rg_form_view` VALUES("14666", "8", "2015-07-30 23:03:52", "202.46.57.179", "31");
INSERT INTO `wp_rg_form_view` VALUES("14667", "1", "2015-07-30 23:31:51", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14668", "2", "2015-07-30 23:31:56", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14669", "3", "2015-07-31 00:02:22", "202.46.58.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("14670", "8", "2015-07-31 00:02:22", "202.46.58.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("14671", "3", "2015-07-31 01:00:53", "202.46.51.175", "56");
INSERT INTO `wp_rg_form_view` VALUES("14672", "8", "2015-07-31 01:00:54", "202.46.51.175", "42");
INSERT INTO `wp_rg_form_view` VALUES("14673", "1", "2015-07-31 01:19:14", "188.65.117.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("14674", "2", "2015-07-31 01:22:36", "188.65.117.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("14675", "8", "2015-07-31 02:03:33", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("14676", "3", "2015-07-31 02:03:34", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("14677", "3", "2015-07-31 03:09:40", "202.46.51.183", "22");
INSERT INTO `wp_rg_form_view` VALUES("14678", "8", "2015-07-31 03:09:41", "202.46.51.183", "12");
INSERT INTO `wp_rg_form_view` VALUES("14679", "6", "2015-07-31 03:19:12", "167.160.110.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("14680", "8", "2015-07-31 04:07:32", "24.244.32.10", "882");
INSERT INTO `wp_rg_form_view` VALUES("14681", "3", "2015-07-31 04:07:32", "24.244.32.10", "991");
INSERT INTO `wp_rg_form_view` VALUES("14682", "1", "2015-07-31 04:48:12", "82.80.249.174", "2");
INSERT INTO `wp_rg_form_view` VALUES("14683", "2", "2015-07-31 04:48:13", "82.80.249.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("14684", "5", "2015-07-31 04:49:45", "82.80.249.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("14685", "3", "2015-07-31 05:00:03", "82.80.249.174", "1201");
INSERT INTO `wp_rg_form_view` VALUES("14686", "8", "2015-07-31 05:00:03", "82.80.249.174", "1105");
INSERT INTO `wp_rg_form_view` VALUES("14687", "6", "2015-07-31 05:10:13", "82.80.249.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("14688", "3", "2015-07-31 06:05:59", "202.46.55.132", "46");
INSERT INTO `wp_rg_form_view` VALUES("14689", "8", "2015-07-31 06:06:00", "202.46.55.132", "41");
INSERT INTO `wp_rg_form_view` VALUES("14690", "2", "2015-07-31 06:49:30", "157.55.39.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("14691", "3", "2015-07-31 07:03:49", "202.46.51.178", "13");
INSERT INTO `wp_rg_form_view` VALUES("14692", "8", "2015-07-31 07:03:50", "202.46.51.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("14693", "3", "2015-07-31 08:02:31", "202.46.55.147", "17");
INSERT INTO `wp_rg_form_view` VALUES("14694", "8", "2015-07-31 08:02:31", "202.46.55.147", "7");
INSERT INTO `wp_rg_form_view` VALUES("14695", "3", "2015-07-31 09:00:02", "66.249.67.70", "23");
INSERT INTO `wp_rg_form_view` VALUES("14696", "8", "2015-07-31 09:00:02", "66.249.67.70", "14");
INSERT INTO `wp_rg_form_view` VALUES("14697", "8", "2015-07-31 10:11:13", "202.46.55.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("14698", "3", "2015-07-31 10:11:14", "202.46.55.170", "11");
INSERT INTO `wp_rg_form_view` VALUES("14699", "3", "2015-07-31 11:09:41", "202.46.58.153", "10");
INSERT INTO `wp_rg_form_view` VALUES("14700", "8", "2015-07-31 11:09:41", "202.46.58.153", "9");
INSERT INTO `wp_rg_form_view` VALUES("14701", "1", "2015-07-31 11:38:23", "27.19.177.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("14702", "3", "2015-07-31 12:06:12", "188.65.117.160", "8");
INSERT INTO `wp_rg_form_view` VALUES("14703", "8", "2015-07-31 12:06:12", "188.65.117.160", "8");
INSERT INTO `wp_rg_form_view` VALUES("14704", "3", "2015-07-31 13:04:05", "217.69.133.231", "23");
INSERT INTO `wp_rg_form_view` VALUES("14705", "8", "2015-07-31 13:04:05", "217.69.133.231", "12");
INSERT INTO `wp_rg_form_view` VALUES("14706", "3", "2015-07-31 14:05:17", "202.46.54.165", "8");
INSERT INTO `wp_rg_form_view` VALUES("14707", "8", "2015-07-31 14:05:17", "202.46.54.165", "7");
INSERT INTO `wp_rg_form_view` VALUES("14708", "3", "2015-07-31 15:03:52", "202.46.48.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("14709", "8", "2015-07-31 15:03:54", "202.46.48.148", "9");
INSERT INTO `wp_rg_form_view` VALUES("14710", "3", "2015-07-31 16:00:36", "188.65.117.160", "14");
INSERT INTO `wp_rg_form_view` VALUES("14711", "8", "2015-07-31 16:00:36", "188.65.117.160", "8");
INSERT INTO `wp_rg_form_view` VALUES("14712", "8", "2015-07-31 17:32:54", "202.46.53.157", "5");
INSERT INTO `wp_rg_form_view` VALUES("14713", "3", "2015-07-31 17:33:05", "188.65.117.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("14714", "3", "2015-07-31 18:44:08", "24.69.71.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("14715", "8", "2015-07-31 18:45:12", "24.69.71.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("14716", "3", "2015-07-31 19:30:48", "202.46.56.186", "4");
INSERT INTO `wp_rg_form_view` VALUES("14717", "8", "2015-07-31 19:31:16", "202.46.56.186", "6");
INSERT INTO `wp_rg_form_view` VALUES("14718", "3", "2015-07-31 20:14:23", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("14719", "8", "2015-07-31 20:14:24", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("14720", "3", "2015-07-31 21:06:44", "202.46.54.203", "24");
INSERT INTO `wp_rg_form_view` VALUES("14721", "8", "2015-07-31 21:06:44", "202.46.54.203", "9");
INSERT INTO `wp_rg_form_view` VALUES("14722", "3", "2015-07-31 22:05:16", "202.46.48.198", "8");
INSERT INTO `wp_rg_form_view` VALUES("14723", "8", "2015-07-31 22:05:16", "202.46.48.198", "8");
INSERT INTO `wp_rg_form_view` VALUES("14724", "1", "2015-07-31 23:05:45", "52.11.135.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("14725", "3", "2015-07-31 23:05:45", "52.11.135.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("14726", "8", "2015-07-31 23:05:45", "52.11.135.94", "18");
INSERT INTO `wp_rg_form_view` VALUES("14727", "8", "2015-08-01 00:02:07", "188.65.117.141", "16");
INSERT INTO `wp_rg_form_view` VALUES("14728", "3", "2015-08-01 00:14:04", "202.46.52.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("14729", "8", "2015-08-01 01:00:54", "202.46.48.206", "11");
INSERT INTO `wp_rg_form_view` VALUES("14730", "3", "2015-08-01 01:59:25", "202.46.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("14731", "8", "2015-08-01 02:11:09", "202.46.53.174", "10");
INSERT INTO `wp_rg_form_view` VALUES("14732", "3", "2015-08-01 02:14:02", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("14733", "8", "2015-08-01 03:09:40", "202.46.54.206", "7");
INSERT INTO `wp_rg_form_view` VALUES("14734", "3", "2015-08-01 03:21:22", "202.46.53.145", "5");
INSERT INTO `wp_rg_form_view` VALUES("14735", "8", "2015-08-01 04:08:12", "202.46.54.166", "10");
INSERT INTO `wp_rg_form_view` VALUES("14736", "8", "2015-08-01 05:06:46", "202.46.57.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("14737", "8", "2015-08-01 06:05:18", "202.46.54.147", "11");
INSERT INTO `wp_rg_form_view` VALUES("14738", "6", "2015-08-01 06:20:02", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("14739", "3", "2015-08-01 06:40:24", "202.46.57.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("14740", "8", "2015-08-01 07:03:49", "202.46.53.150", "9");
INSERT INTO `wp_rg_form_view` VALUES("14741", "8", "2015-08-01 08:02:24", "202.46.55.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("14742", "8", "2015-08-01 09:00:59", "202.46.49.152", "12");
INSERT INTO `wp_rg_form_view` VALUES("14743", "8", "2015-08-01 10:11:12", "202.46.53.143", "9");
INSERT INTO `wp_rg_form_view` VALUES("14744", "8", "2015-08-01 11:02:42", "217.69.133.233", "10");
INSERT INTO `wp_rg_form_view` VALUES("14745", "5", "2015-08-01 11:25:22", "188.65.117.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("14746", "8", "2015-08-01 12:08:12", "202.46.51.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("14747", "3", "2015-08-01 12:38:19", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("14748", "8", "2015-08-01 13:06:44", "202.46.53.166", "7");
INSERT INTO `wp_rg_form_view` VALUES("14749", "3", "2015-08-01 13:30:09", "202.46.51.196", "10");
INSERT INTO `wp_rg_form_view` VALUES("14750", "8", "2015-08-01 14:05:16", "202.46.51.173", "6");
INSERT INTO `wp_rg_form_view` VALUES("14751", "8", "2015-08-01 15:15:31", "202.46.52.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("14752", "8", "2015-08-01 16:02:20", "202.46.54.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("14753", "8", "2015-08-01 17:00:53", "202.46.50.135", "21");
INSERT INTO `wp_rg_form_view` VALUES("14754", "3", "2015-08-01 18:11:08", "202.46.55.153", "5");
INSERT INTO `wp_rg_form_view` VALUES("14755", "8", "2015-08-01 18:11:09", "202.46.55.153", "8");
INSERT INTO `wp_rg_form_view` VALUES("14756", "8", "2015-08-01 19:09:40", "202.46.53.177", "14");
INSERT INTO `wp_rg_form_view` VALUES("14757", "6", "2015-08-01 20:03:15", "198.12.101.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("14758", "8", "2015-08-01 20:03:15", "198.12.101.184", "12");
INSERT INTO `wp_rg_form_view` VALUES("14759", "8", "2015-08-01 21:06:45", "202.46.58.192", "11");
INSERT INTO `wp_rg_form_view` VALUES("14760", "1", "2015-08-01 21:46:11", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14761", "2", "2015-08-01 21:46:12", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14762", "3", "2015-08-01 22:05:16", "202.46.51.185", "10");
INSERT INTO `wp_rg_form_view` VALUES("14763", "8", "2015-08-01 22:05:17", "202.46.51.185", "22");
INSERT INTO `wp_rg_form_view` VALUES("14764", "8", "2015-08-01 23:03:48", "202.46.52.164", "9");
INSERT INTO `wp_rg_form_view` VALUES("14765", "1", "2015-08-01 23:53:41", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("14766", "1", "2015-08-02 00:01:03", "91.121.141.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("14767", "8", "2015-08-02 00:01:03", "91.121.141.219", "10");
INSERT INTO `wp_rg_form_view` VALUES("14768", "3", "2015-08-02 00:53:31", "157.55.39.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("14769", "8", "2015-08-02 01:00:55", "202.46.49.191", "11");
INSERT INTO `wp_rg_form_view` VALUES("14770", "6", "2015-08-02 01:14:38", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("14771", "3", "2015-08-02 01:24:17", "202.46.56.135", "10");
INSERT INTO `wp_rg_form_view` VALUES("14772", "8", "2015-08-02 02:11:07", "202.46.53.177", "18");
INSERT INTO `wp_rg_form_view` VALUES("14773", "3", "2015-08-02 02:22:49", "202.46.51.154", "10");
INSERT INTO `wp_rg_form_view` VALUES("14774", "7", "2015-08-02 03:02:34", "157.55.39.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("14775", "8", "2015-08-02 03:02:34", "157.55.39.80", "10");
INSERT INTO `wp_rg_form_view` VALUES("14776", "6", "2015-08-02 03:11:37", "167.160.127.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("14777", "8", "2015-08-02 04:08:11", "202.46.50.136", "9");
INSERT INTO `wp_rg_form_view` VALUES("14778", "8", "2015-08-02 05:06:44", "202.46.58.197", "9");
INSERT INTO `wp_rg_form_view` VALUES("14779", "3", "2015-08-02 05:30:10", "202.46.55.172", "6");
INSERT INTO `wp_rg_form_view` VALUES("14780", "8", "2015-08-02 06:05:17", "202.46.52.206", "8");
INSERT INTO `wp_rg_form_view` VALUES("14781", "8", "2015-08-02 07:03:48", "202.46.48.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("14782", "8", "2015-08-02 08:02:22", "202.46.54.147", "7");
INSERT INTO `wp_rg_form_view` VALUES("14783", "8", "2015-08-02 09:00:52", "202.46.57.162", "37");
INSERT INTO `wp_rg_form_view` VALUES("14784", "3", "2015-08-02 09:02:18", "217.69.133.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("14785", "1", "2015-08-02 09:41:31", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14786", "2", "2015-08-02 09:41:35", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14787", "8", "2015-08-02 10:11:07", "202.46.50.191", "25");
INSERT INTO `wp_rg_form_view` VALUES("14788", "3", "2015-08-02 10:35:36", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("14789", "6", "2015-08-02 10:35:45", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("14790", "3", "2015-08-02 11:06:29", "157.55.39.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("14791", "8", "2015-08-02 11:06:29", "157.55.39.198", "42");
INSERT INTO `wp_rg_form_view` VALUES("14792", "1", "2015-08-02 11:57:45", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14793", "2", "2015-08-02 11:57:49", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14794", "8", "2015-08-02 12:00:54", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("14795", "8", "2015-08-02 13:06:44", "202.46.54.137", "10");
INSERT INTO `wp_rg_form_view` VALUES("14796", "3", "2015-08-02 13:39:37", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("14797", "8", "2015-08-02 14:05:16", "202.46.56.180", "7");
INSERT INTO `wp_rg_form_view` VALUES("14798", "8", "2015-08-02 15:03:48", "202.46.51.159", "7");
INSERT INTO `wp_rg_form_view` VALUES("14799", "8", "2015-08-02 16:02:20", "202.46.50.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("14800", "8", "2015-08-02 17:00:33", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("14801", "8", "2015-08-02 18:11:08", "202.46.58.196", "10");
INSERT INTO `wp_rg_form_view` VALUES("14802", "8", "2015-08-02 19:09:39", "202.46.49.207", "7");
INSERT INTO `wp_rg_form_view` VALUES("14803", "8", "2015-08-02 20:08:12", "202.46.56.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("14804", "8", "2015-08-02 21:06:43", "202.46.54.143", "9");
INSERT INTO `wp_rg_form_view` VALUES("14805", "8", "2015-08-02 22:19:25", "151.80.31.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("14806", "8", "2015-08-02 23:03:49", "202.46.55.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("14807", "8", "2015-08-03 00:02:21", "202.46.49.145", "9");
INSERT INTO `wp_rg_form_view` VALUES("14808", "8", "2015-08-03 01:00:52", "202.46.51.160", "15");
INSERT INTO `wp_rg_form_view` VALUES("14809", "8", "2015-08-03 02:11:07", "202.46.55.155", "37");
INSERT INTO `wp_rg_form_view` VALUES("14810", "1", "2015-08-03 02:34:50", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14811", "2", "2015-08-03 02:34:55", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14812", "3", "2015-08-03 02:35:16", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14813", "8", "2015-08-03 03:09:39", "202.46.56.201", "33");
INSERT INTO `wp_rg_form_view` VALUES("14814", "1", "2015-08-03 03:13:05", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14815", "2", "2015-08-03 03:13:09", "74.108.8.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("14816", "8", "2015-08-03 04:08:11", "202.46.55.136", "8");
INSERT INTO `wp_rg_form_view` VALUES("14817", "8", "2015-08-03 05:06:43", "202.46.48.147", "35");
INSERT INTO `wp_rg_form_view` VALUES("14818", "1", "2015-08-03 05:24:25", "221.143.43.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("14819", "2", "2015-08-03 05:24:37", "221.143.43.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("14820", "3", "2015-08-03 05:26:06", "221.143.43.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("14821", "8", "2015-08-03 06:05:16", "202.46.54.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("14822", "6", "2015-08-03 06:26:24", "23.95.132.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("14823", "8", "2015-08-03 07:15:31", "202.46.50.139", "6");
INSERT INTO `wp_rg_form_view` VALUES("14824", "8", "2015-08-03 08:02:23", "202.46.54.134", "11");
INSERT INTO `wp_rg_form_view` VALUES("14825", "8", "2015-08-03 09:00:52", "202.46.48.206", "12");
INSERT INTO `wp_rg_form_view` VALUES("14826", "3", "2015-08-03 09:31:18", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("14827", "8", "2015-08-03 10:11:06", "202.46.54.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("14828", "5", "2015-08-03 10:40:08", "77.87.47.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("14829", "8", "2015-08-03 11:09:39", "202.46.48.132", "9");
INSERT INTO `wp_rg_form_view` VALUES("14830", "8", "2015-08-03 12:08:11", "202.46.57.175", "8");
INSERT INTO `wp_rg_form_view` VALUES("14831", "8", "2015-08-03 13:06:43", "202.46.58.188", "11");
INSERT INTO `wp_rg_form_view` VALUES("14832", "8", "2015-08-03 14:05:16", "202.46.49.191", "11");
INSERT INTO `wp_rg_form_view` VALUES("14833", "3", "2015-08-03 14:59:56", "207.46.13.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("14834", "8", "2015-08-03 15:00:00", "207.46.13.147", "33");
INSERT INTO `wp_rg_form_view` VALUES("14835", "3", "2015-08-03 15:27:15", "202.46.58.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("14836", "8", "2015-08-03 16:02:19", "202.46.54.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("14837", "1", "2015-08-03 16:08:39", "52.1.155.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("14838", "3", "2015-08-03 16:12:54", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("14839", "8", "2015-08-03 17:00:52", "202.46.50.190", "21");
INSERT INTO `wp_rg_form_view` VALUES("14840", "6", "2015-08-03 17:34:30", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("14841", "8", "2015-08-03 18:05:45", "66.249.79.120", "8");
INSERT INTO `wp_rg_form_view` VALUES("14842", "8", "2015-08-03 19:09:39", "202.46.50.186", "8");
INSERT INTO `wp_rg_form_view` VALUES("14843", "3", "2015-08-03 19:31:28", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("14844", "8", "2015-08-03 20:08:11", "202.46.58.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("14845", "3", "2015-08-03 20:08:26", "157.55.39.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("14846", "8", "2015-08-03 21:06:44", "202.46.52.177", "80");
INSERT INTO `wp_rg_form_view` VALUES("14847", "1", "2015-08-03 21:15:37", "64.79.75.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("14848", "2", "2015-08-03 21:15:41", "64.79.75.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("14849", "3", "2015-08-03 21:16:02", "64.79.75.42", "8");
INSERT INTO `wp_rg_form_view` VALUES("14850", "8", "2015-08-03 22:05:15", "202.46.54.182", "8");
INSERT INTO `wp_rg_form_view` VALUES("14851", "8", "2015-08-03 23:03:47", "202.46.52.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("14852", "8", "2015-08-04 00:02:20", "202.46.55.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("14853", "8", "2015-08-04 01:00:52", "202.46.50.198", "18");
INSERT INTO `wp_rg_form_view` VALUES("14854", "8", "2015-08-04 02:11:06", "202.46.55.130", "13");
INSERT INTO `wp_rg_form_view` VALUES("14855", "8", "2015-08-04 03:09:38", "202.46.54.132", "16");
INSERT INTO `wp_rg_form_view` VALUES("14856", "3", "2015-08-04 03:49:58", "91.200.12.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("14857", "8", "2015-08-04 04:08:10", "202.46.58.190", "12");
INSERT INTO `wp_rg_form_view` VALUES("14858", "8", "2015-08-04 05:06:43", "202.46.55.130", "13");
INSERT INTO `wp_rg_form_view` VALUES("14859", "8", "2015-08-04 06:05:15", "202.46.53.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("14860", "8", "2015-08-04 07:03:47", "202.46.52.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("14861", "3", "2015-08-04 07:12:49", "46.246.121.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("14862", "8", "2015-08-04 08:02:21", "202.46.56.142", "9");
INSERT INTO `wp_rg_form_view` VALUES("14863", "8", "2015-08-04 09:00:52", "202.46.58.139", "9");
INSERT INTO `wp_rg_form_view` VALUES("14864", "8", "2015-08-04 10:10:03", "66.249.79.146", "8");
INSERT INTO `wp_rg_form_view` VALUES("14865", "8", "2015-08-04 11:09:38", "202.46.55.179", "6");
INSERT INTO `wp_rg_form_view` VALUES("14866", "8", "2015-08-04 12:08:11", "202.46.58.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("14867", "8", "2015-08-04 13:06:42", "202.46.48.199", "10");
INSERT INTO `wp_rg_form_view` VALUES("14868", "3", "2015-08-04 13:18:35", "91.200.12.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("14869", "3", "2015-08-04 14:04:45", "208.115.113.83", "17");
INSERT INTO `wp_rg_form_view` VALUES("14870", "8", "2015-08-04 14:05:16", "202.46.54.138", "20");
INSERT INTO `wp_rg_form_view` VALUES("14871", "8", "2015-08-04 15:12:52", "24.84.216.81", "15");
INSERT INTO `wp_rg_form_view` VALUES("14872", "8", "2015-08-04 16:08:51", "202.46.50.198", "13");
INSERT INTO `wp_rg_form_view` VALUES("14873", "1", "2015-08-04 16:49:18", "104.143.21.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("14874", "8", "2015-08-04 17:00:29", "202.46.54.204", "44");
INSERT INTO `wp_rg_form_view` VALUES("14875", "1", "2015-08-04 17:20:51", "47.23.126.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("14876", "2", "2015-08-04 17:20:55", "47.23.126.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("14877", "3", "2015-08-04 17:21:42", "47.23.126.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("14878", "8", "2015-08-04 18:05:56", "202.46.50.132", "15");
INSERT INTO `wp_rg_form_view` VALUES("14879", "8", "2015-08-04 19:00:35", "24.68.239.138", "21");
INSERT INTO `wp_rg_form_view` VALUES("14880", "3", "2015-08-04 19:35:48", "151.80.31.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("14881", "8", "2015-08-04 20:02:59", "202.46.56.172", "26");
INSERT INTO `wp_rg_form_view` VALUES("14882", "3", "2015-08-04 20:55:53", "96.54.185.10", "21");
INSERT INTO `wp_rg_form_view` VALUES("14883", "8", "2015-08-04 21:01:32", "202.46.56.209", "64");
INSERT INTO `wp_rg_form_view` VALUES("14884", "3", "2015-08-04 21:45:49", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("14885", "8", "2015-08-04 22:00:04", "202.46.53.152", "23");
INSERT INTO `wp_rg_form_view` VALUES("14886", "6", "2015-08-04 22:13:32", "192.230.49.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("14887", "3", "2015-08-04 22:13:33", "192.230.49.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("14888", "8", "2015-08-04 23:00:43", "66.249.79.133", "23");
INSERT INTO `wp_rg_form_view` VALUES("14889", "8", "2015-08-05 00:01:58", "202.46.55.183", "20");
INSERT INTO `wp_rg_form_view` VALUES("14890", "8", "2015-08-05 01:00:29", "202.46.52.140", "38");
INSERT INTO `wp_rg_form_view` VALUES("14891", "1", "2015-08-05 01:43:08", "31.201.69.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("14892", "2", "2015-08-05 01:43:15", "31.201.69.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("14893", "8", "2015-08-05 02:05:02", "66.249.79.146", "25");
INSERT INTO `wp_rg_form_view` VALUES("14894", "8", "2015-08-05 03:00:32", "5.9.145.132", "67");
INSERT INTO `wp_rg_form_view` VALUES("14895", "8", "2015-08-05 04:03:04", "202.46.51.180", "15");
INSERT INTO `wp_rg_form_view` VALUES("14896", "8", "2015-08-05 05:01:35", "202.46.58.138", "15");
INSERT INTO `wp_rg_form_view` VALUES("14897", "8", "2015-08-05 06:00:08", "202.46.49.143", "17");
INSERT INTO `wp_rg_form_view` VALUES("14898", "8", "2015-08-05 07:03:24", "202.46.52.171", "16");
INSERT INTO `wp_rg_form_view` VALUES("14899", "8", "2015-08-05 08:02:03", "202.46.49.138", "12");
INSERT INTO `wp_rg_form_view` VALUES("14900", "3", "2015-08-05 08:02:36", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("14901", "8", "2015-08-05 09:00:28", "202.46.52.162", "44");
INSERT INTO `wp_rg_form_view` VALUES("14902", "1", "2015-08-05 09:58:22", "82.171.194.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("14903", "2", "2015-08-05 09:58:27", "82.171.194.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("14904", "3", "2015-08-05 09:58:55", "82.171.194.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("14905", "8", "2015-08-05 10:05:59", "202.46.58.209", "16");
INSERT INTO `wp_rg_form_view` VALUES("14906", "8", "2015-08-05 11:04:30", "202.46.52.207", "18");
INSERT INTO `wp_rg_form_view` VALUES("14907", "3", "2015-08-05 11:09:17", "202.46.51.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("14908", "8", "2015-08-05 12:03:03", "202.46.49.200", "10");
INSERT INTO `wp_rg_form_view` VALUES("14909", "8", "2015-08-05 13:06:20", "202.46.53.207", "52");
INSERT INTO `wp_rg_form_view` VALUES("14910", "3", "2015-08-05 13:32:25", "207.46.13.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("14911", "6", "2015-08-05 13:43:50", "23.95.241.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("14912", "1", "2015-08-05 13:50:22", "143.176.126.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("14913", "2", "2015-08-05 13:50:27", "143.176.126.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("14914", "8", "2015-08-05 14:04:52", "202.46.56.208", "8");
INSERT INTO `wp_rg_form_view` VALUES("14915", "3", "2015-08-05 14:19:32", "151.80.31.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("14916", "8", "2015-08-05 15:14:33", "202.46.55.179", "8");
INSERT INTO `wp_rg_form_view` VALUES("14917", "8", "2015-08-05 16:01:57", "202.46.51.158", "8");
INSERT INTO `wp_rg_form_view` VALUES("14918", "8", "2015-08-05 17:00:31", "202.46.58.200", "13");
INSERT INTO `wp_rg_form_view` VALUES("14919", "1", "2015-08-05 17:35:38", "54.148.237.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("14920", "8", "2015-08-05 18:04:09", "184.66.25.215", "11");
INSERT INTO `wp_rg_form_view` VALUES("14921", "1", "2015-08-05 18:11:45", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14922", "2", "2015-08-05 18:11:46", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("14923", "1", "2015-08-05 19:05:05", "52.1.33.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("14924", "8", "2015-08-05 19:05:05", "52.1.33.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("14925", "8", "2015-08-05 20:07:49", "202.46.57.179", "9");
INSERT INTO `wp_rg_form_view` VALUES("14926", "6", "2015-08-05 21:02:04", "45.57.230.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("14927", "8", "2015-08-05 21:02:04", "45.57.230.11", "22");
INSERT INTO `wp_rg_form_view` VALUES("14928", "1", "2015-08-05 21:42:19", "207.46.13.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("14929", "3", "2015-08-05 21:45:06", "188.65.117.160", "2");
INSERT INTO `wp_rg_form_view` VALUES("14930", "8", "2015-08-05 22:04:52", "202.46.54.205", "10");
INSERT INTO `wp_rg_form_view` VALUES("14931", "8", "2015-08-05 23:01:29", "207.46.13.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("14932", "2", "2015-08-05 23:01:44", "157.55.39.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("14933", "1", "2015-08-05 23:02:32", "54.148.243.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("14934", "6", "2015-08-05 23:03:27", "202.46.56.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("14935", "8", "2015-08-06 00:01:56", "202.46.54.189", "10");
INSERT INTO `wp_rg_form_view` VALUES("14936", "8", "2015-08-06 01:00:28", "202.46.52.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("14937", "8", "2015-08-06 02:10:43", "202.46.48.197", "18");
INSERT INTO `wp_rg_form_view` VALUES("14938", "1", "2015-08-06 02:25:31", "157.55.39.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("14939", "8", "2015-08-06 03:09:15", "202.46.56.142", "12");
INSERT INTO `wp_rg_form_view` VALUES("14940", "8", "2015-08-06 04:07:47", "202.46.57.174", "8");
INSERT INTO `wp_rg_form_view` VALUES("14941", "3", "2015-08-06 04:54:39", "202.46.57.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("14942", "8", "2015-08-06 05:06:20", "202.46.53.177", "12");
INSERT INTO `wp_rg_form_view` VALUES("14943", "8", "2015-08-06 06:01:10", "188.65.117.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("14944", "8", "2015-08-06 07:03:24", "202.46.48.85", "10");
INSERT INTO `wp_rg_form_view` VALUES("14945", "3", "2015-08-06 07:26:49", "202.46.51.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("14946", "8", "2015-08-06 08:01:56", "202.46.58.198", "14");
INSERT INTO `wp_rg_form_view` VALUES("14947", "8", "2015-08-06 09:00:29", "202.46.48.197", "10");
INSERT INTO `wp_rg_form_view` VALUES("14948", "8", "2015-08-06 10:10:43", "202.46.51.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("14949", "2", "2015-08-06 10:35:44", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("14950", "8", "2015-08-06 11:09:15", "202.46.51.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("14951", "8", "2015-08-06 12:07:47", "202.46.56.193", "54");
INSERT INTO `wp_rg_form_view` VALUES("14952", "7", "2015-08-06 12:44:25", "185.15.29.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("14953", "1", "2015-08-06 12:44:26", "185.15.29.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("14954", "2", "2015-08-06 12:44:26", "185.15.29.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("14955", "3", "2015-08-06 12:44:31", "185.15.29.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("14956", "8", "2015-08-06 13:06:20", "202.46.51.185", "27");
INSERT INTO `wp_rg_form_view` VALUES("14957", "3", "2015-08-06 13:55:52", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("14958", "8", "2015-08-06 14:03:44", "157.55.39.233", "11");
INSERT INTO `wp_rg_form_view` VALUES("14959", "8", "2015-08-06 15:03:24", "202.46.58.135", "8");
INSERT INTO `wp_rg_form_view` VALUES("14960", "8", "2015-08-06 16:01:58", "202.46.57.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("14961", "8", "2015-08-06 17:00:30", "202.46.57.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("14962", "8", "2015-08-06 18:07:00", "64.180.190.94", "7");
INSERT INTO `wp_rg_form_view` VALUES("14963", "3", "2015-08-06 18:44:46", "208.115.111.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("14964", "8", "2015-08-06 19:09:15", "202.46.54.158", "7");
INSERT INTO `wp_rg_form_view` VALUES("14965", "8", "2015-08-06 20:07:47", "202.46.52.144", "19");
INSERT INTO `wp_rg_form_view` VALUES("14966", "3", "2015-08-06 20:48:29", "23.235.76.76", "20");
INSERT INTO `wp_rg_form_view` VALUES("14967", "8", "2015-08-06 21:06:19", "202.46.56.196", "15");
INSERT INTO `wp_rg_form_view` VALUES("14968", "3", "2015-08-06 21:21:39", "96.50.8.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("14969", "2", "2015-08-06 21:22:54", "96.50.8.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("14970", "8", "2015-08-06 22:04:51", "202.46.52.210", "7");
INSERT INTO `wp_rg_form_view` VALUES("14971", "8", "2015-08-06 23:03:24", "202.46.54.147", "6");
INSERT INTO `wp_rg_form_view` VALUES("14972", "8", "2015-08-07 00:01:56", "202.46.58.190", "6");
INSERT INTO `wp_rg_form_view` VALUES("14973", "8", "2015-08-07 01:00:28", "202.46.50.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("14974", "1", "2015-08-07 01:47:43", "151.80.31.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("14975", "8", "2015-08-07 02:10:42", "202.46.58.194", "9");
INSERT INTO `wp_rg_form_view` VALUES("14976", "8", "2015-08-07 03:20:57", "202.46.50.137", "9");
INSERT INTO `wp_rg_form_view` VALUES("14977", "8", "2015-08-07 04:06:01", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("14978", "8", "2015-08-07 05:06:19", "202.46.58.201", "7");
INSERT INTO `wp_rg_form_view` VALUES("14979", "8", "2015-08-07 06:04:52", "202.46.55.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("14980", "8", "2015-08-07 07:03:24", "202.46.55.139", "9");
INSERT INTO `wp_rg_form_view` VALUES("14981", "3", "2015-08-07 07:16:00", "207.46.13.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("14982", "8", "2015-08-07 08:01:57", "202.46.57.173", "13");
INSERT INTO `wp_rg_form_view` VALUES("14983", "3", "2015-08-07 08:41:03", "87.11.185.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("14984", "8", "2015-08-07 09:00:28", "202.46.53.201", "9");
INSERT INTO `wp_rg_form_view` VALUES("14985", "8", "2015-08-07 10:10:43", "202.46.53.166", "12");
INSERT INTO `wp_rg_form_view` VALUES("14986", "8", "2015-08-07 11:09:14", "202.46.52.176", "7");
INSERT INTO `wp_rg_form_view` VALUES("14987", "8", "2015-08-07 12:07:49", "202.46.58.180", "9");
INSERT INTO `wp_rg_form_view` VALUES("14988", "3", "2015-08-07 12:54:39", "202.46.55.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("14989", "8", "2015-08-07 13:06:19", "202.46.49.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("14990", "8", "2015-08-07 14:01:47", "207.46.13.122", "10");
INSERT INTO `wp_rg_form_view` VALUES("14991", "8", "2015-08-07 15:03:24", "202.46.49.131", "5");
INSERT INTO `wp_rg_form_view` VALUES("14992", "8", "2015-08-07 16:02:43", "202.46.53.149", "7");
INSERT INTO `wp_rg_form_view` VALUES("14993", "8", "2015-08-07 17:00:30", "202.46.48.208", "9");
INSERT INTO `wp_rg_form_view` VALUES("14994", "8", "2015-08-07 18:10:42", "202.46.48.140", "7");
INSERT INTO `wp_rg_form_view` VALUES("14995", "8", "2015-08-07 19:06:00", "157.55.39.164", "16");
INSERT INTO `wp_rg_form_view` VALUES("14996", "2", "2015-08-07 19:26:49", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("14997", "8", "2015-08-07 20:00:10", "96.50.66.248", "14");
INSERT INTO `wp_rg_form_view` VALUES("14998", "8", "2015-08-07 21:06:19", "202.46.58.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("14999", "8", "2015-08-07 22:04:53", "202.46.56.130", "8");
INSERT INTO `wp_rg_form_view` VALUES("15000", "8", "2015-08-07 23:03:23", "202.46.53.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("15001", "8", "2015-08-08 00:01:56", "202.46.51.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("15002", "8", "2015-08-08 01:00:28", "202.46.49.131", "13");
INSERT INTO `wp_rg_form_view` VALUES("15003", "8", "2015-08-08 02:02:40", "66.249.79.133", "8");
INSERT INTO `wp_rg_form_view` VALUES("15004", "8", "2015-08-08 03:02:28", "66.249.79.120", "9");
INSERT INTO `wp_rg_form_view` VALUES("15005", "8", "2015-08-08 04:07:47", "202.46.54.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("15006", "6", "2015-08-08 04:34:55", "98.200.239.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("15007", "3", "2015-08-08 05:04:22", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15008", "8", "2015-08-08 05:04:22", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("15009", "3", "2015-08-08 06:04:52", "202.46.50.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("15010", "8", "2015-08-08 06:04:53", "202.46.50.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("15011", "8", "2015-08-08 07:03:23", "202.46.55.177", "10");
INSERT INTO `wp_rg_form_view` VALUES("15012", "8", "2015-08-08 08:01:55", "202.46.54.187", "9");
INSERT INTO `wp_rg_form_view` VALUES("15013", "8", "2015-08-08 09:00:33", "202.46.58.186", "12");
INSERT INTO `wp_rg_form_view` VALUES("15014", "8", "2015-08-08 10:07:21", "157.55.39.121", "7");
INSERT INTO `wp_rg_form_view` VALUES("15015", "8", "2015-08-08 11:09:14", "202.46.56.204", "9");
INSERT INTO `wp_rg_form_view` VALUES("15016", "8", "2015-08-08 12:07:47", "202.46.51.176", "8");
INSERT INTO `wp_rg_form_view` VALUES("15017", "8", "2015-08-08 13:06:18", "202.46.58.165", "9");
INSERT INTO `wp_rg_form_view` VALUES("15018", "3", "2015-08-08 13:16:58", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15019", "8", "2015-08-08 14:04:56", "202.46.53.147", "86");
INSERT INTO `wp_rg_form_view` VALUES("15020", "2", "2015-08-08 14:18:23", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("15021", "1", "2015-08-08 14:18:26", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("15022", "3", "2015-08-08 14:19:16", "213.239.211.141", "4");
INSERT INTO `wp_rg_form_view` VALUES("15023", "5", "2015-08-08 14:22:45", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("15024", "8", "2015-08-08 15:00:59", "172.56.2.141", "14");
INSERT INTO `wp_rg_form_view` VALUES("15025", "8", "2015-08-08 16:10:53", "207.46.13.41", "5");
INSERT INTO `wp_rg_form_view` VALUES("15026", "8", "2015-08-08 17:00:27", "202.46.56.136", "9");
INSERT INTO `wp_rg_form_view` VALUES("15027", "8", "2015-08-08 18:10:42", "202.46.51.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("15028", "8", "2015-08-08 19:09:15", "202.46.53.164", "5");
INSERT INTO `wp_rg_form_view` VALUES("15029", "8", "2015-08-08 20:07:49", "202.46.54.142", "6");
INSERT INTO `wp_rg_form_view` VALUES("15030", "8", "2015-08-08 21:06:19", "202.46.50.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("15031", "8", "2015-08-08 22:04:51", "202.46.54.210", "9");
INSERT INTO `wp_rg_form_view` VALUES("15032", "8", "2015-08-08 23:03:38", "66.249.79.133", "7");
INSERT INTO `wp_rg_form_view` VALUES("15033", "3", "2015-08-08 23:42:51", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("15034", "8", "2015-08-09 00:01:55", "202.46.57.209", "8");
INSERT INTO `wp_rg_form_view` VALUES("15035", "8", "2015-08-09 01:00:28", "202.46.51.207", "8");
INSERT INTO `wp_rg_form_view` VALUES("15036", "8", "2015-08-09 02:10:41", "202.46.49.147", "14");
INSERT INTO `wp_rg_form_view` VALUES("15037", "3", "2015-08-09 02:40:12", "91.200.12.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("15038", "8", "2015-08-09 03:09:14", "202.46.52.200", "7");
INSERT INTO `wp_rg_form_view` VALUES("15039", "3", "2015-08-09 03:29:52", "207.46.13.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("15040", "8", "2015-08-09 04:02:26", "207.46.13.7", "11");
INSERT INTO `wp_rg_form_view` VALUES("15041", "8", "2015-08-09 05:06:18", "202.46.49.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("15042", "8", "2015-08-09 06:04:52", "202.46.54.196", "9");
INSERT INTO `wp_rg_form_view` VALUES("15043", "2", "2015-08-09 06:13:03", "188.165.15.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("15044", "8", "2015-08-09 07:03:26", "202.46.58.209", "9");
INSERT INTO `wp_rg_form_view` VALUES("15045", "8", "2015-08-09 08:01:57", "202.46.55.175", "9");
INSERT INTO `wp_rg_form_view` VALUES("15046", "3", "2015-08-09 08:37:03", "202.46.56.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("15047", "8", "2015-08-09 09:00:27", "202.46.53.142", "20");
INSERT INTO `wp_rg_form_view` VALUES("15048", "2", "2015-08-09 09:40:43", "192.99.150.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("15049", "1", "2015-08-09 09:40:45", "192.99.150.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("15050", "3", "2015-08-09 10:10:43", "202.46.52.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("15051", "8", "2015-08-09 10:10:43", "202.46.52.160", "11");
INSERT INTO `wp_rg_form_view` VALUES("15052", "8", "2015-08-09 11:09:15", "202.46.48.142", "14");
INSERT INTO `wp_rg_form_view` VALUES("15053", "3", "2015-08-09 11:51:00", "79.18.238.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("15054", "8", "2015-08-09 12:07:46", "202.46.51.139", "10");
INSERT INTO `wp_rg_form_view` VALUES("15055", "1", "2015-08-09 12:24:26", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("15056", "2", "2015-08-09 12:24:28", "162.211.122.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("15057", "8", "2015-08-09 13:06:20", "202.46.58.194", "7");
INSERT INTO `wp_rg_form_view` VALUES("15058", "8", "2015-08-09 14:03:39", "66.249.79.120", "8");
INSERT INTO `wp_rg_form_view` VALUES("15059", "8", "2015-08-09 15:01:57", "207.46.13.7", "9");
INSERT INTO `wp_rg_form_view` VALUES("15060", "8", "2015-08-09 16:01:56", "202.46.49.194", "7");
INSERT INTO `wp_rg_form_view` VALUES("15061", "8", "2015-08-09 17:00:26", "202.46.58.187", "7");
INSERT INTO `wp_rg_form_view` VALUES("15062", "3", "2015-08-09 17:47:18", "202.46.54.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("15063", "8", "2015-08-09 18:10:43", "202.46.58.157", "190");
INSERT INTO `wp_rg_form_view` VALUES("15064", "1", "2015-08-09 18:42:14", "104.131.217.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("15065", "3", "2015-08-09 18:47:34", "104.131.217.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("15066", "5", "2015-08-09 18:48:48", "104.131.217.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("15067", "6", "2015-08-09 18:56:04", "104.131.217.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("15068", "8", "2015-08-09 19:00:09", "104.131.217.85", "436");
INSERT INTO `wp_rg_form_view` VALUES("15069", "3", "2015-08-09 19:00:34", "104.131.217.85", "10");
INSERT INTO `wp_rg_form_view` VALUES("15070", "2", "2015-08-09 19:46:05", "104.131.217.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("15071", "8", "2015-08-09 20:00:39", "104.131.217.85", "14");
INSERT INTO `wp_rg_form_view` VALUES("15072", "8", "2015-08-09 21:06:18", "202.46.52.174", "7");
INSERT INTO `wp_rg_form_view` VALUES("15073", "3", "2015-08-09 21:29:44", "202.46.51.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("15074", "8", "2015-08-09 22:04:50", "202.46.52.150", "12");
INSERT INTO `wp_rg_form_view` VALUES("15075", "3", "2015-08-09 22:32:45", "91.200.12.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("15076", "8", "2015-08-09 23:03:22", "202.46.53.176", "8");
INSERT INTO `wp_rg_form_view` VALUES("15077", "8", "2015-08-10 00:01:55", "202.46.57.162", "13");
INSERT INTO `wp_rg_form_view` VALUES("15078", "3", "2015-08-10 00:27:35", "157.55.39.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("15079", "8", "2015-08-10 01:00:27", "202.46.53.175", "10");
INSERT INTO `wp_rg_form_view` VALUES("15080", "8", "2015-08-10 02:10:43", "202.46.51.207", "8");
INSERT INTO `wp_rg_form_view` VALUES("15081", "3", "2015-08-10 02:21:49", "188.165.15.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("15082", "8", "2015-08-10 03:09:15", "202.46.57.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("15083", "8", "2015-08-10 04:04:06", "188.165.15.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("15084", "8", "2015-08-10 05:05:30", "188.165.15.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("15085", "8", "2015-08-10 06:04:50", "202.46.51.168", "8");
INSERT INTO `wp_rg_form_view` VALUES("15086", "8", "2015-08-10 07:03:22", "202.46.54.140", "17");
INSERT INTO `wp_rg_form_view` VALUES("15087", "3", "2015-08-10 07:55:03", "104.144.203.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("15088", "8", "2015-08-10 08:01:55", "202.46.54.137", "10");
INSERT INTO `wp_rg_form_view` VALUES("15089", "8", "2015-08-10 09:00:26", "202.46.49.190", "20");
INSERT INTO `wp_rg_form_view` VALUES("15090", "7", "2015-08-10 09:06:28", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("15091", "3", "2015-08-10 09:14:11", "23.250.63.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("15092", "8", "2015-08-10 10:10:42", "202.46.54.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("15093", "8", "2015-08-10 11:09:16", "202.46.54.163", "9");
INSERT INTO `wp_rg_form_view` VALUES("15094", "3", "2015-08-10 11:40:44", "46.246.38.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("15095", "8", "2015-08-10 12:04:23", "66.249.79.133", "8");
INSERT INTO `wp_rg_form_view` VALUES("15096", "3", "2015-08-10 12:19:41", "220.181.108.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("15097", "8", "2015-08-10 13:06:18", "202.46.55.131", "14");
INSERT INTO `wp_rg_form_view` VALUES("15098", "3", "2015-08-10 13:33:29", "23.250.63.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("15099", "8", "2015-08-10 14:04:49", "202.46.55.154", "7");
INSERT INTO `wp_rg_form_view` VALUES("15100", "8", "2015-08-10 15:01:52", "23.250.59.55", "11");
INSERT INTO `wp_rg_form_view` VALUES("15101", "3", "2015-08-10 15:22:42", "220.181.108.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("15102", "8", "2015-08-10 16:02:02", "202.46.52.175", "5");
INSERT INTO `wp_rg_form_view` VALUES("15103", "8", "2015-08-10 17:12:09", "202.46.53.152", "10");
INSERT INTO `wp_rg_form_view` VALUES("15104", "8", "2015-08-10 18:10:41", "202.46.50.163", "10");
INSERT INTO `wp_rg_form_view` VALUES("15105", "8", "2015-08-10 19:09:13", "202.46.48.210", "5");
INSERT INTO `wp_rg_form_view` VALUES("15106", "8", "2015-08-10 20:07:46", "202.46.51.177", "11");
INSERT INTO `wp_rg_form_view` VALUES("15107", "8", "2015-08-10 21:05:43", "157.55.39.142", "12");
INSERT INTO `wp_rg_form_view` VALUES("15108", "8", "2015-08-10 22:04:50", "202.46.48.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("15109", "8", "2015-08-10 23:03:22", "202.46.57.207", "6");
INSERT INTO `wp_rg_form_view` VALUES("15110", "8", "2015-08-11 00:01:54", "202.46.52.168", "11");
INSERT INTO `wp_rg_form_view` VALUES("15111", "3", "2015-08-11 00:50:05", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15112", "8", "2015-08-11 01:00:26", "202.46.55.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("15113", "3", "2015-08-11 01:47:17", "202.46.53.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("15114", "8", "2015-08-11 02:10:41", "202.46.52.161", "32");
INSERT INTO `wp_rg_form_view` VALUES("15115", "1", "2015-08-11 02:11:20", "47.23.126.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("15116", "2", "2015-08-11 02:11:24", "47.23.126.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("15117", "8", "2015-08-11 03:09:13", "202.46.56.136", "18");
INSERT INTO `wp_rg_form_view` VALUES("15118", "8", "2015-08-11 04:07:45", "202.46.58.159", "8");
INSERT INTO `wp_rg_form_view` VALUES("15119", "8", "2015-08-11 05:06:17", "202.46.49.137", "11");
INSERT INTO `wp_rg_form_view` VALUES("15120", "3", "2015-08-11 05:42:20", "91.200.12.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("15121", "8", "2015-08-11 06:04:49", "202.46.57.165", "24");
INSERT INTO `wp_rg_form_view` VALUES("15122", "3", "2015-08-11 06:35:05", "188.165.15.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("15123", "1", "2015-08-11 06:38:07", "188.40.112.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("15124", "8", "2015-08-11 07:03:22", "202.46.56.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("15125", "8", "2015-08-11 08:01:56", "202.46.54.143", "10");
INSERT INTO `wp_rg_form_view` VALUES("15126", "8", "2015-08-11 09:12:09", "202.46.58.201", "10");
INSERT INTO `wp_rg_form_view` VALUES("15127", "8", "2015-08-11 10:10:41", "202.46.55.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("15128", "8", "2015-08-11 11:09:16", "202.46.58.190", "9");
INSERT INTO `wp_rg_form_view` VALUES("15129", "8", "2015-08-11 12:07:45", "202.46.50.154", "5");
INSERT INTO `wp_rg_form_view` VALUES("15130", "8", "2015-08-11 13:06:18", "202.46.55.141", "8");
INSERT INTO `wp_rg_form_view` VALUES("15131", "3", "2015-08-11 13:53:10", "202.46.54.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("15132", "8", "2015-08-11 14:04:49", "202.46.51.183", "8");
INSERT INTO `wp_rg_form_view` VALUES("15133", "8", "2015-08-11 15:03:23", "202.46.58.185", "9");
INSERT INTO `wp_rg_form_view` VALUES("15134", "3", "2015-08-11 15:05:16", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15135", "8", "2015-08-11 16:01:54", "202.46.57.165", "16");
INSERT INTO `wp_rg_form_view` VALUES("15136", "8", "2015-08-11 17:00:26", "202.46.54.144", "14");
INSERT INTO `wp_rg_form_view` VALUES("15137", "3", "2015-08-11 17:02:47", "188.165.15.165", "3");
INSERT INTO `wp_rg_form_view` VALUES("15138", "8", "2015-08-11 18:10:42", "202.46.55.152", "5");
INSERT INTO `wp_rg_form_view` VALUES("15139", "8", "2015-08-11 19:09:16", "202.46.53.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("15140", "8", "2015-08-11 20:01:39", "157.55.39.4", "11");
INSERT INTO `wp_rg_form_view` VALUES("15141", "8", "2015-08-11 21:06:25", "202.46.55.151", "8");
INSERT INTO `wp_rg_form_view` VALUES("15142", "3", "2015-08-11 21:25:50", "188.165.15.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("15143", "8", "2015-08-11 22:04:51", "202.46.56.206", "10");
INSERT INTO `wp_rg_form_view` VALUES("15144", "8", "2015-08-11 23:03:21", "202.46.58.165", "9");
INSERT INTO `wp_rg_form_view` VALUES("15145", "8", "2015-08-12 00:01:54", "202.46.48.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("15146", "7", "2015-08-12 00:25:19", "202.46.52.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("15147", "6", "2015-08-12 00:39:29", "157.55.39.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("15148", "8", "2015-08-12 01:01:28", "188.165.15.165", "158");
INSERT INTO `wp_rg_form_view` VALUES("15149", "2", "2015-08-12 01:37:07", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("15150", "1", "2015-08-12 01:37:18", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("15151", "3", "2015-08-12 01:40:32", "81.144.138.34", "11");
INSERT INTO `wp_rg_form_view` VALUES("15152", "5", "2015-08-12 01:54:00", "81.144.138.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("15153", "8", "2015-08-12 02:00:06", "81.144.138.34", "67");
INSERT INTO `wp_rg_form_view` VALUES("15154", "8", "2015-08-12 03:09:13", "202.46.50.156", "7");
INSERT INTO `wp_rg_form_view` VALUES("15155", "8", "2015-08-12 04:07:48", "202.46.54.203", "7");
INSERT INTO `wp_rg_form_view` VALUES("15156", "8", "2015-08-12 05:06:18", "202.46.57.165", "7");
INSERT INTO `wp_rg_form_view` VALUES("15157", "8", "2015-08-12 06:04:56", "202.46.55.149", "10");
INSERT INTO `wp_rg_form_view` VALUES("15158", "8", "2015-08-12 07:03:21", "202.46.57.158", "5");
INSERT INTO `wp_rg_form_view` VALUES("15159", "3", "2015-08-12 07:26:48", "202.46.49.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("15160", "8", "2015-08-12 08:02:00", "202.46.57.185", "6");
INSERT INTO `wp_rg_form_view` VALUES("15161", "3", "2015-08-12 08:25:20", "202.46.55.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("15162", "8", "2015-08-12 09:06:07", "202.46.52.160", "9");
INSERT INTO `wp_rg_form_view` VALUES("15163", "8", "2015-08-12 10:04:39", "202.46.48.201", "11");
INSERT INTO `wp_rg_form_view` VALUES("15164", "3", "2015-08-12 10:41:38", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("15165", "8", "2015-08-12 11:03:12", "202.46.55.142", "10");
INSERT INTO `wp_rg_form_view` VALUES("15166", "8", "2015-08-12 12:01:21", "188.165.15.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("15167", "3", "2015-08-12 12:01:35", "157.55.39.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("15168", "8", "2015-08-12 13:00:16", "202.46.58.138", "13");
INSERT INTO `wp_rg_form_view` VALUES("15169", "1", "2015-08-12 13:05:44", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15170", "8", "2015-08-12 14:10:31", "202.46.55.130", "10");
INSERT INTO `wp_rg_form_view` VALUES("15171", "8", "2015-08-12 15:20:47", "202.46.54.180", "10");
INSERT INTO `wp_rg_form_view` VALUES("15172", "8", "2015-08-12 16:07:35", "202.46.53.152", "10");
INSERT INTO `wp_rg_form_view` VALUES("15173", "3", "2015-08-12 16:32:05", "157.55.39.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("15174", "1", "2015-08-12 16:59:46", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("15175", "8", "2015-08-12 17:06:07", "202.46.52.141", "10");
INSERT INTO `wp_rg_form_view` VALUES("15176", "3", "2015-08-12 17:27:57", "207.46.13.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("15177", "8", "2015-08-12 18:02:34", "108.180.145.39", "14");
INSERT INTO `wp_rg_form_view` VALUES("15178", "8", "2015-08-12 19:03:11", "202.46.51.132", "9");
INSERT INTO `wp_rg_form_view` VALUES("15179", "8", "2015-08-12 20:01:47", "202.46.55.140", "18");
INSERT INTO `wp_rg_form_view` VALUES("15180", "8", "2015-08-12 21:00:16", "202.46.56.137", "14");
INSERT INTO `wp_rg_form_view` VALUES("15181", "3", "2015-08-12 21:56:01", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15182", "8", "2015-08-12 22:10:30", "202.46.54.143", "13");
INSERT INTO `wp_rg_form_view` VALUES("15183", "8", "2015-08-12 23:09:02", "202.46.51.160", "14");
INSERT INTO `wp_rg_form_view` VALUES("15184", "8", "2015-08-13 00:07:35", "202.46.49.152", "8");
INSERT INTO `wp_rg_form_view` VALUES("15185", "3", "2015-08-13 00:31:01", "202.46.51.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("15186", "8", "2015-08-13 01:06:08", "202.46.58.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("15187", "8", "2015-08-13 02:04:39", "202.46.58.200", "8");
INSERT INTO `wp_rg_form_view` VALUES("15188", "3", "2015-08-13 02:16:23", "202.46.48.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("15189", "8", "2015-08-13 03:03:11", "202.46.54.131", "7");
INSERT INTO `wp_rg_form_view` VALUES("15190", "3", "2015-08-13 03:41:06", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15191", "8", "2015-08-13 04:01:43", "202.46.54.182", "37");
INSERT INTO `wp_rg_form_view` VALUES("15192", "1", "2015-08-13 04:23:44", "82.76.87.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("15193", "2", "2015-08-13 04:23:50", "82.76.87.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("15194", "3", "2015-08-13 04:24:26", "82.76.87.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("15195", "8", "2015-08-13 05:00:16", "202.46.48.210", "9");
INSERT INTO `wp_rg_form_view` VALUES("15196", "8", "2015-08-13 06:10:30", "202.46.58.134", "40");
INSERT INTO `wp_rg_form_view` VALUES("15197", "1", "2015-08-13 06:54:46", "104.167.108.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("15198", "2", "2015-08-13 06:54:50", "104.167.108.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("15199", "3", "2015-08-13 06:55:21", "104.167.108.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("15200", "8", "2015-08-13 07:09:03", "202.46.50.180", "25");
INSERT INTO `wp_rg_form_view` VALUES("15201", "8", "2015-08-13 08:07:35", "202.46.48.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("15202", "8", "2015-08-13 09:06:07", "202.46.54.144", "9");
INSERT INTO `wp_rg_form_view` VALUES("15203", "3", "2015-08-13 09:57:13", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15204", "8", "2015-08-13 10:04:39", "202.46.56.180", "7");
INSERT INTO `wp_rg_form_view` VALUES("15205", "8", "2015-08-13 11:03:11", "202.46.52.177", "5");
INSERT INTO `wp_rg_form_view` VALUES("15206", "8", "2015-08-13 12:01:44", "202.46.57.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("15207", "8", "2015-08-13 13:00:16", "202.46.53.197", "9");
INSERT INTO `wp_rg_form_view` VALUES("15208", "8", "2015-08-13 14:02:56", "66.249.79.146", "9");
INSERT INTO `wp_rg_form_view` VALUES("15209", "8", "2015-08-13 15:09:02", "202.46.57.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("15210", "8", "2015-08-13 16:07:36", "202.46.55.151", "18");
INSERT INTO `wp_rg_form_view` VALUES("15211", "8", "2015-08-13 17:06:07", "202.46.52.140", "11");
INSERT INTO `wp_rg_form_view` VALUES("15212", "8", "2015-08-13 18:04:42", "202.46.58.206", "8");
INSERT INTO `wp_rg_form_view` VALUES("15213", "3", "2015-08-13 18:22:41", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15214", "8", "2015-08-13 19:03:12", "202.46.55.144", "51");
INSERT INTO `wp_rg_form_view` VALUES("15215", "2", "2015-08-13 19:44:45", "107.182.26.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("15216", "1", "2015-08-13 19:44:46", "107.182.26.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("15217", "3", "2015-08-13 19:44:58", "107.182.26.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("15218", "8", "2015-08-13 20:01:43", "202.46.49.204", "12");
INSERT INTO `wp_rg_form_view` VALUES("15219", "8", "2015-08-13 21:00:15", "202.46.54.190", "11");
INSERT INTO `wp_rg_form_view` VALUES("15220", "8", "2015-08-13 22:10:15", "77.75.76.165", "13");
INSERT INTO `wp_rg_form_view` VALUES("15221", "8", "2015-08-13 23:09:09", "202.46.51.132", "15");
INSERT INTO `wp_rg_form_view` VALUES("15222", "8", "2015-08-14 00:07:37", "202.46.52.208", "6");
INSERT INTO `wp_rg_form_view` VALUES("15223", "8", "2015-08-14 01:17:48", "202.46.51.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("15224", "3", "2015-08-14 01:30:30", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("15225", "8", "2015-08-14 02:04:38", "202.46.51.183", "11");
INSERT INTO `wp_rg_form_view` VALUES("15226", "8", "2015-08-14 03:02:52", "24.108.135.3", "11");
INSERT INTO `wp_rg_form_view` VALUES("15227", "8", "2015-08-14 04:01:45", "202.46.48.138", "6");
INSERT INTO `wp_rg_form_view` VALUES("15228", "8", "2015-08-14 05:00:15", "202.46.55.133", "10");
INSERT INTO `wp_rg_form_view` VALUES("15229", "8", "2015-08-14 06:09:15", "104.243.129.210", "9");
INSERT INTO `wp_rg_form_view` VALUES("15230", "3", "2015-08-14 06:25:38", "5.230.154.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("15231", "8", "2015-08-14 07:07:43", "104.243.129.210", "9");
INSERT INTO `wp_rg_form_view` VALUES("15232", "8", "2015-08-14 08:07:34", "202.46.56.136", "13");
INSERT INTO `wp_rg_form_view` VALUES("15233", "3", "2015-08-14 08:11:46", "68.71.148.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("15234", "8", "2015-08-14 09:06:06", "202.46.52.142", "10");
INSERT INTO `wp_rg_form_view` VALUES("15235", "8", "2015-08-14 10:04:38", "202.46.48.28", "9");
INSERT INTO `wp_rg_form_view` VALUES("15236", "8", "2015-08-14 11:03:27", "66.249.79.146", "8");
INSERT INTO `wp_rg_form_view` VALUES("15237", "8", "2015-08-14 12:01:46", "202.46.57.183", "8");
INSERT INTO `wp_rg_form_view` VALUES("15238", "8", "2015-08-14 13:00:16", "202.46.54.99", "11");
INSERT INTO `wp_rg_form_view` VALUES("15239", "8", "2015-08-14 14:04:25", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("15240", "3", "2015-08-14 14:31:17", "207.46.13.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("15241", "8", "2015-08-14 15:09:03", "202.46.51.197", "9");
INSERT INTO `wp_rg_form_view` VALUES("15242", "3", "2015-08-14 15:49:28", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("15243", "8", "2015-08-14 16:07:42", "202.46.53.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("15244", "8", "2015-08-14 17:06:15", "202.46.51.206", "10");
INSERT INTO `wp_rg_form_view` VALUES("15245", "8", "2015-08-14 18:04:38", "202.46.58.165", "7");
INSERT INTO `wp_rg_form_view` VALUES("15246", "8", "2015-08-14 19:03:10", "202.46.56.94", "9");
INSERT INTO `wp_rg_form_view` VALUES("15247", "8", "2015-08-14 20:01:43", "202.46.50.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("15248", "8", "2015-08-14 21:00:14", "202.46.54.90", "58");
INSERT INTO `wp_rg_form_view` VALUES("15249", "1", "2015-08-14 21:25:37", "174.127.133.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("15250", "2", "2015-08-14 21:26:45", "174.127.133.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("15251", "3", "2015-08-14 21:28:04", "174.127.133.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("15252", "8", "2015-08-14 22:00:36", "174.127.133.92", "98");
INSERT INTO `wp_rg_form_view` VALUES("15253", "1", "2015-08-14 22:01:01", "174.127.133.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("15254", "3", "2015-08-14 22:04:40", "174.127.133.89", "11");
INSERT INTO `wp_rg_form_view` VALUES("15255", "2", "2015-08-14 22:43:33", "178.84.185.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("15256", "8", "2015-08-14 23:09:02", "202.46.55.152", "6");
INSERT INTO `wp_rg_form_view` VALUES("15257", "3", "2015-08-14 23:10:42", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("15258", "8", "2015-08-15 00:07:35", "202.46.52.103", "5");
INSERT INTO `wp_rg_form_view` VALUES("15259", "8", "2015-08-15 01:06:06", "202.46.55.125", "5");
INSERT INTO `wp_rg_form_view` VALUES("15260", "8", "2015-08-15 02:04:37", "202.46.55.132", "18");
INSERT INTO `wp_rg_form_view` VALUES("15261", "8", "2015-08-15 03:03:11", "202.46.53.58", "10");
INSERT INTO `wp_rg_form_view` VALUES("15262", "8", "2015-08-15 04:01:42", "202.46.51.131", "11");
INSERT INTO `wp_rg_form_view` VALUES("15263", "3", "2015-08-15 04:36:51", "202.46.49.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("15264", "8", "2015-08-15 05:00:15", "202.46.56.179", "8");
INSERT INTO `wp_rg_form_view` VALUES("15265", "8", "2015-08-15 06:10:29", "202.46.50.190", "9");
INSERT INTO `wp_rg_form_view` VALUES("15266", "8", "2015-08-15 07:09:01", "202.46.57.158", "21");
INSERT INTO `wp_rg_form_view` VALUES("15267", "3", "2015-08-15 07:09:57", "23.250.63.71", "5");
INSERT INTO `wp_rg_form_view` VALUES("15268", "8", "2015-08-15 08:07:39", "202.46.55.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("15269", "8", "2015-08-15 09:06:06", "202.46.57.22", "17");
INSERT INTO `wp_rg_form_view` VALUES("15270", "3", "2015-08-15 09:11:39", "23.250.63.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("15271", "8", "2015-08-15 10:04:38", "202.46.56.72", "7");
INSERT INTO `wp_rg_form_view` VALUES("15272", "3", "2015-08-15 10:09:02", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("15273", "3", "2015-08-15 11:02:38", "91.200.12.38", "5");
INSERT INTO `wp_rg_form_view` VALUES("15274", "8", "2015-08-15 11:02:38", "91.200.12.38", "21");
INSERT INTO `wp_rg_form_view` VALUES("15275", "2", "2015-08-15 11:50:46", "116.211.225.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("15276", "8", "2015-08-15 12:01:42", "202.46.53.49", "16");
INSERT INTO `wp_rg_form_view` VALUES("15277", "3", "2015-08-15 12:25:32", "23.250.59.63", "3");
INSERT INTO `wp_rg_form_view` VALUES("15278", "8", "2015-08-15 13:00:15", "202.46.57.17", "14");
INSERT INTO `wp_rg_form_view` VALUES("15279", "8", "2015-08-15 14:10:29", "202.46.57.24", "13");
INSERT INTO `wp_rg_form_view` VALUES("15280", "3", "2015-08-15 14:44:40", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("15281", "8", "2015-08-15 15:09:04", "202.46.48.126", "9");
INSERT INTO `wp_rg_form_view` VALUES("15282", "8", "2015-08-15 16:07:34", "202.46.49.205", "10");
INSERT INTO `wp_rg_form_view` VALUES("15283", "3", "2015-08-15 16:18:30", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("15284", "8", "2015-08-15 17:06:06", "202.46.58.94", "11");
INSERT INTO `wp_rg_form_view` VALUES("15285", "3", "2015-08-15 17:50:07", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("15286", "8", "2015-08-15 18:04:38", "202.46.50.134", "7");
INSERT INTO `wp_rg_form_view` VALUES("15287", "8", "2015-08-15 19:03:10", "202.46.54.100", "6");
INSERT INTO `wp_rg_form_view` VALUES("15288", "3", "2015-08-15 19:38:14", "157.55.39.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("15289", "8", "2015-08-15 20:01:42", "202.46.55.179", "10");
INSERT INTO `wp_rg_form_view` VALUES("15290", "8", "2015-08-15 21:00:14", "202.46.54.103", "11");
INSERT INTO `wp_rg_form_view` VALUES("15291", "3", "2015-08-15 21:38:12", "207.46.13.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("15292", "8", "2015-08-15 22:10:29", "202.46.49.119", "8");
INSERT INTO `wp_rg_form_view` VALUES("15293", "3", "2015-08-15 22:25:32", "217.69.133.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("15294", "8", "2015-08-15 23:09:00", "202.46.52.158", "11");
INSERT INTO `wp_rg_form_view` VALUES("15295", "3", "2015-08-15 23:57:37", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("15296", "8", "2015-08-16 00:07:32", "202.46.57.203", "8");
INSERT INTO `wp_rg_form_view` VALUES("15297", "8", "2015-08-16 01:03:52", "157.55.39.99", "13");
INSERT INTO `wp_rg_form_view` VALUES("15298", "8", "2015-08-16 02:04:37", "202.46.53.153", "10");
INSERT INTO `wp_rg_form_view` VALUES("15299", "3", "2015-08-16 02:37:42", "184.66.10.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("15300", "3", "2015-08-16 03:01:10", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("15301", "8", "2015-08-16 03:01:10", "217.69.133.227", "11");
INSERT INTO `wp_rg_form_view` VALUES("15302", "8", "2015-08-16 04:01:42", "202.46.53.91", "16");
INSERT INTO `wp_rg_form_view` VALUES("15303", "3", "2015-08-16 04:35:03", "91.200.12.38", "3");
INSERT INTO `wp_rg_form_view` VALUES("15304", "8", "2015-08-16 05:00:13", "202.46.50.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("15305", "3", "2015-08-16 05:21:06", "198.27.65.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("15306", "8", "2015-08-16 06:02:10", "85.25.185.173", "57");
INSERT INTO `wp_rg_form_view` VALUES("15307", "2", "2015-08-16 06:02:21", "85.25.185.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("15308", "1", "2015-08-16 06:02:23", "85.25.185.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("15309", "3", "2015-08-16 06:02:47", "85.25.185.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("15310", "8", "2015-08-16 07:20:44", "202.46.50.159", "52");
INSERT INTO `wp_rg_form_view` VALUES("15311", "5", "2015-08-16 07:52:22", "133.130.48.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("15312", "8", "2015-08-16 08:00:02", "133.130.48.124", "453");
INSERT INTO `wp_rg_form_view` VALUES("15313", "1", "2015-08-16 08:55:34", "133.130.48.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("15314", "8", "2015-08-16 09:00:04", "133.130.48.124", "244");
INSERT INTO `wp_rg_form_view` VALUES("15315", "2", "2015-08-16 09:08:18", "133.130.48.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("15316", "3", "2015-08-16 09:08:45", "133.130.48.124", "3");
INSERT INTO `wp_rg_form_view` VALUES("15317", "8", "2015-08-16 10:04:37", "202.46.58.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("15318", "1", "2015-08-16 10:22:27", "103.9.88.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("15319", "3", "2015-08-16 10:50:07", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("15320", "8", "2015-08-16 11:03:12", "202.46.57.165", "18");
INSERT INTO `wp_rg_form_view` VALUES("15321", "3", "2015-08-16 11:48:15", "208.107.41.62", "9");
INSERT INTO `wp_rg_form_view` VALUES("15322", "8", "2015-08-16 12:01:41", "202.46.56.196", "9");
INSERT INTO `wp_rg_form_view` VALUES("15323", "8", "2015-08-16 13:00:14", "202.46.55.133", "13");
INSERT INTO `wp_rg_form_view` VALUES("15324", "3", "2015-08-16 13:56:58", "217.69.133.233", "3");
INSERT INTO `wp_rg_form_view` VALUES("15325", "6", "2015-08-16 13:57:08", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("15326", "8", "2015-08-16 14:08:08", "157.55.39.206", "9");
INSERT INTO `wp_rg_form_view` VALUES("15327", "8", "2015-08-16 15:09:00", "202.46.51.167", "11");
INSERT INTO `wp_rg_form_view` VALUES("15328", "3", "2015-08-16 15:30:31", "217.69.133.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("15329", "8", "2015-08-16 16:07:33", "202.46.52.15", "10");
INSERT INTO `wp_rg_form_view` VALUES("15330", "8", "2015-08-16 17:06:05", "202.46.55.176", "11");
INSERT INTO `wp_rg_form_view` VALUES("15331", "3", "2015-08-16 18:04:38", "202.46.51.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("15332", "8", "2015-08-16 18:04:38", "202.46.51.158", "15");
INSERT INTO `wp_rg_form_view` VALUES("15333", "8", "2015-08-16 19:03:09", "202.46.58.208", "9");
INSERT INTO `wp_rg_form_view` VALUES("15334", "3", "2015-08-16 19:44:03", "157.55.39.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("15335", "8", "2015-08-16 20:01:41", "202.46.54.204", "10");
INSERT INTO `wp_rg_form_view` VALUES("15336", "6", "2015-08-16 20:10:13", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("15337", "3", "2015-08-16 20:10:18", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("15338", "8", "2015-08-16 21:00:13", "202.46.53.54", "10");
INSERT INTO `wp_rg_form_view` VALUES("15339", "3", "2015-08-16 21:01:22", "66.249.79.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("15340", "8", "2015-08-16 22:10:29", "202.46.53.40", "7");
INSERT INTO `wp_rg_form_view` VALUES("15341", "8", "2015-08-16 23:09:02", "202.46.55.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("15342", "3", "2015-08-16 23:32:35", "91.200.12.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("15343", "2", "2015-08-16 23:50:59", "46.4.189.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("15344", "8", "2015-08-17 00:07:33", "202.46.50.186", "9");
INSERT INTO `wp_rg_form_view` VALUES("15345", "3", "2015-08-17 00:52:16", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("15346", "8", "2015-08-17 01:06:05", "202.46.50.126", "7");
INSERT INTO `wp_rg_form_view` VALUES("15347", "8", "2015-08-17 02:16:19", "202.46.49.199", "5");
INSERT INTO `wp_rg_form_view` VALUES("15348", "3", "2015-08-17 02:54:32", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15349", "8", "2015-08-17 03:03:09", "202.46.49.197", "11");
INSERT INTO `wp_rg_form_view` VALUES("15350", "5", "2015-08-17 03:44:58", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("15351", "8", "2015-08-17 04:01:41", "202.46.58.156", "10");
INSERT INTO `wp_rg_form_view` VALUES("15352", "8", "2015-08-17 05:00:15", "202.46.55.86", "9");
INSERT INTO `wp_rg_form_view` VALUES("15353", "8", "2015-08-17 06:16:38", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("15354", "8", "2015-08-17 07:09:02", "202.46.56.185", "9");
INSERT INTO `wp_rg_form_view` VALUES("15355", "3", "2015-08-17 07:31:11", "144.76.8.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("15356", "8", "2015-08-17 08:01:27", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("15357", "8", "2015-08-17 09:06:05", "202.46.50.84", "7");
INSERT INTO `wp_rg_form_view` VALUES("15358", "8", "2015-08-17 10:04:37", "202.46.50.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("15359", "8", "2015-08-17 11:03:11", "202.46.53.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("15360", "8", "2015-08-17 12:01:41", "202.46.54.147", "8");
INSERT INTO `wp_rg_form_view` VALUES("15361", "8", "2015-08-17 13:00:13", "202.46.51.198", "11");
INSERT INTO `wp_rg_form_view` VALUES("15362", "3", "2015-08-17 13:36:34", "144.76.201.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("15363", "1", "2015-08-17 13:56:24", "54.174.216.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("15364", "8", "2015-08-17 14:10:27", "202.46.57.38", "5");
INSERT INTO `wp_rg_form_view` VALUES("15365", "3", "2015-08-17 14:34:05", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15366", "3", "2015-08-17 15:09:05", "202.46.58.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("15367", "8", "2015-08-17 15:09:05", "202.46.58.13", "16");
INSERT INTO `wp_rg_form_view` VALUES("15368", "1", "2015-08-17 15:37:08", "116.211.225.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("15369", "8", "2015-08-17 16:07:32", "202.46.49.115", "5");
INSERT INTO `wp_rg_form_view` VALUES("15370", "8", "2015-08-17 17:06:04", "202.46.51.118", "9");
INSERT INTO `wp_rg_form_view` VALUES("15371", "8", "2015-08-17 18:04:37", "202.46.57.206", "7");
INSERT INTO `wp_rg_form_view` VALUES("15372", "3", "2015-08-17 18:54:52", "66.249.79.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("15373", "8", "2015-08-17 19:02:58", "108.180.118.122", "8");
INSERT INTO `wp_rg_form_view` VALUES("15374", "8", "2015-08-17 20:01:40", "202.46.54.105", "18");
INSERT INTO `wp_rg_form_view` VALUES("15375", "3", "2015-08-17 20:08:08", "157.55.39.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("15376", "6", "2015-08-17 20:09:21", "45.59.156.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("15377", "8", "2015-08-17 21:00:13", "202.46.48.147", "14");
INSERT INTO `wp_rg_form_view` VALUES("15378", "3", "2015-08-17 21:35:37", "184.66.150.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("15379", "8", "2015-08-17 22:10:28", "202.46.54.206", "10");
INSERT INTO `wp_rg_form_view` VALUES("15380", "3", "2015-08-17 22:49:27", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15381", "8", "2015-08-17 23:09:02", "202.46.49.78", "8");
INSERT INTO `wp_rg_form_view` VALUES("15382", "8", "2015-08-18 00:07:32", "202.46.52.13", "8");
INSERT INTO `wp_rg_form_view` VALUES("15383", "8", "2015-08-18 01:06:04", "202.46.50.150", "6");
INSERT INTO `wp_rg_form_view` VALUES("15384", "3", "2015-08-18 01:52:17", "220.181.108.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("15385", "8", "2015-08-18 02:04:38", "202.46.58.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("15386", "8", "2015-08-18 03:03:08", "202.46.54.187", "12");
INSERT INTO `wp_rg_form_view` VALUES("15387", "8", "2015-08-18 04:01:41", "202.46.55.146", "14");
INSERT INTO `wp_rg_form_view` VALUES("15388", "2", "2015-08-18 04:38:55", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15389", "8", "2015-08-18 05:00:14", "202.46.50.75", "17");
INSERT INTO `wp_rg_form_view` VALUES("15390", "8", "2015-08-18 06:10:27", "202.46.57.12", "8");
INSERT INTO `wp_rg_form_view` VALUES("15391", "8", "2015-08-18 07:09:08", "202.46.55.179", "9");
INSERT INTO `wp_rg_form_view` VALUES("15392", "8", "2015-08-18 08:07:32", "202.46.57.23", "9");
INSERT INTO `wp_rg_form_view` VALUES("15393", "8", "2015-08-18 09:06:04", "202.46.55.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("15394", "3", "2015-08-18 10:03:31", "91.200.12.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("15395", "8", "2015-08-18 10:03:31", "91.200.12.38", "10");
INSERT INTO `wp_rg_form_view` VALUES("15396", "8", "2015-08-18 11:03:08", "202.46.58.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("15397", "8", "2015-08-18 12:01:40", "202.46.52.157", "5");
INSERT INTO `wp_rg_form_view` VALUES("15398", "8", "2015-08-18 13:00:13", "202.46.49.67", "7");
INSERT INTO `wp_rg_form_view` VALUES("15399", "8", "2015-08-18 14:10:27", "202.46.51.31", "6");
INSERT INTO `wp_rg_form_view` VALUES("15400", "8", "2015-08-18 15:09:04", "202.46.53.120", "7");
INSERT INTO `wp_rg_form_view` VALUES("15401", "8", "2015-08-18 16:19:15", "202.46.50.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("15402", "8", "2015-08-18 17:06:16", "202.46.51.194", "7");
INSERT INTO `wp_rg_form_view` VALUES("15403", "8", "2015-08-18 18:04:36", "202.46.52.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("15404", "8", "2015-08-18 19:03:09", "202.46.48.141", "9");
INSERT INTO `wp_rg_form_view` VALUES("15405", "8", "2015-08-18 20:01:44", "202.46.55.87", "8");
INSERT INTO `wp_rg_form_view` VALUES("15406", "3", "2015-08-18 20:09:11", "220.181.108.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("15407", "8", "2015-08-18 21:00:13", "202.46.48.198", "8");
INSERT INTO `wp_rg_form_view` VALUES("15408", "8", "2015-08-18 22:10:27", "202.46.48.126", "10");
INSERT INTO `wp_rg_form_view` VALUES("15409", "3", "2015-08-18 22:14:30", "207.46.13.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("15410", "8", "2015-08-18 23:04:31", "77.75.78.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("15411", "8", "2015-08-19 00:07:32", "202.46.55.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("15412", "8", "2015-08-19 01:06:03", "202.46.56.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("15413", "8", "2015-08-19 02:04:37", "202.46.53.165", "9");
INSERT INTO `wp_rg_form_view` VALUES("15414", "8", "2015-08-19 03:03:08", "202.46.54.71", "7");
INSERT INTO `wp_rg_form_view` VALUES("15415", "8", "2015-08-19 04:01:40", "202.46.56.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("15416", "1", "2015-08-19 04:33:24", "46.246.38.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("15417", "8", "2015-08-19 05:00:12", "202.46.51.197", "8");
INSERT INTO `wp_rg_form_view` VALUES("15418", "8", "2015-08-19 06:10:26", "202.46.52.107", "12");
INSERT INTO `wp_rg_form_view` VALUES("15419", "8", "2015-08-19 07:09:00", "202.46.48.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("15420", "3", "2015-08-19 07:16:13", "66.249.79.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("15421", "8", "2015-08-19 08:07:32", "202.46.56.110", "13");
INSERT INTO `wp_rg_form_view` VALUES("15422", "3", "2015-08-19 08:09:44", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15423", "1", "2015-08-19 08:23:54", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15424", "8", "2015-08-19 09:06:03", "202.46.58.123", "11");
INSERT INTO `wp_rg_form_view` VALUES("15425", "8", "2015-08-19 10:04:37", "202.46.48.27", "8");
INSERT INTO `wp_rg_form_view` VALUES("15426", "8", "2015-08-19 11:03:08", "202.46.54.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("15427", "8", "2015-08-19 12:01:39", "202.46.54.206", "15");
INSERT INTO `wp_rg_form_view` VALUES("15428", "8", "2015-08-19 13:00:12", "202.46.49.139", "12");
INSERT INTO `wp_rg_form_view` VALUES("15429", "8", "2015-08-19 14:10:27", "202.46.56.70", "9");
INSERT INTO `wp_rg_form_view` VALUES("15430", "8", "2015-08-19 15:07:57", "157.55.39.121", "10");
INSERT INTO `wp_rg_form_view` VALUES("15431", "3", "2015-08-19 15:51:11", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15432", "8", "2015-08-19 16:07:38", "202.46.51.82", "9");
INSERT INTO `wp_rg_form_view` VALUES("15433", "3", "2015-08-19 16:08:21", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15434", "8", "2015-08-19 17:16:05", "157.55.39.126", "6");
INSERT INTO `wp_rg_form_view` VALUES("15435", "3", "2015-08-19 18:02:17", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("15436", "8", "2015-08-19 18:02:17", "68.180.229.161", "31");
INSERT INTO `wp_rg_form_view` VALUES("15437", "3", "2015-08-19 19:03:08", "202.46.48.93", "57");
INSERT INTO `wp_rg_form_view` VALUES("15438", "8", "2015-08-19 19:03:08", "202.46.48.93", "19");
INSERT INTO `wp_rg_form_view` VALUES("15439", "3", "2015-08-19 20:01:40", "202.46.55.133", "24");
INSERT INTO `wp_rg_form_view` VALUES("15440", "8", "2015-08-19 20:01:40", "202.46.55.133", "8");
INSERT INTO `wp_rg_form_view` VALUES("15441", "3", "2015-08-19 21:00:12", "202.46.48.133", "39");
INSERT INTO `wp_rg_form_view` VALUES("15442", "8", "2015-08-19 21:00:13", "202.46.48.133", "13");
INSERT INTO `wp_rg_form_view` VALUES("15443", "3", "2015-08-19 22:10:26", "202.46.49.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("15444", "8", "2015-08-19 22:10:26", "202.46.49.112", "9");
INSERT INTO `wp_rg_form_view` VALUES("15445", "3", "2015-08-19 23:08:58", "202.46.56.90", "22");
INSERT INTO `wp_rg_form_view` VALUES("15446", "8", "2015-08-19 23:08:58", "202.46.56.90", "8");
INSERT INTO `wp_rg_form_view` VALUES("15447", "3", "2015-08-20 00:08:02", "68.180.229.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("15448", "8", "2015-08-20 00:08:02", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("15449", "8", "2015-08-20 01:05:12", "5.231.237.254", "15");
INSERT INTO `wp_rg_form_view` VALUES("15450", "3", "2015-08-20 01:06:03", "202.46.53.210", "42");
INSERT INTO `wp_rg_form_view` VALUES("15451", "1", "2015-08-20 01:38:27", "66.249.79.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("15452", "3", "2015-08-20 02:04:36", "202.46.50.93", "18");
INSERT INTO `wp_rg_form_view` VALUES("15453", "8", "2015-08-20 02:04:36", "202.46.50.93", "5");
INSERT INTO `wp_rg_form_view` VALUES("15454", "3", "2015-08-20 03:03:07", "202.46.52.43", "33");
INSERT INTO `wp_rg_form_view` VALUES("15455", "8", "2015-08-20 03:03:08", "202.46.52.43", "12");
INSERT INTO `wp_rg_form_view` VALUES("15456", "3", "2015-08-20 04:01:40", "202.46.55.15", "19");
INSERT INTO `wp_rg_form_view` VALUES("15457", "8", "2015-08-20 04:01:40", "202.46.55.15", "6");
INSERT INTO `wp_rg_form_view` VALUES("15458", "3", "2015-08-20 05:00:12", "202.46.55.38", "24");
INSERT INTO `wp_rg_form_view` VALUES("15459", "8", "2015-08-20 05:00:13", "202.46.55.38", "8");
INSERT INTO `wp_rg_form_view` VALUES("15460", "1", "2015-08-20 05:21:13", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("15461", "3", "2015-08-20 06:10:26", "202.46.58.112", "48");
INSERT INTO `wp_rg_form_view` VALUES("15462", "8", "2015-08-20 06:10:26", "202.46.58.112", "15");
INSERT INTO `wp_rg_form_view` VALUES("15463", "3", "2015-08-20 07:08:58", "202.46.48.146", "28");
INSERT INTO `wp_rg_form_view` VALUES("15464", "8", "2015-08-20 07:08:59", "202.46.48.146", "8");
INSERT INTO `wp_rg_form_view` VALUES("15465", "3", "2015-08-20 08:07:33", "202.46.55.172", "28");
INSERT INTO `wp_rg_form_view` VALUES("15466", "8", "2015-08-20 08:07:33", "202.46.55.172", "9");
INSERT INTO `wp_rg_form_view` VALUES("15467", "3", "2015-08-20 09:06:02", "202.46.51.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("15468", "8", "2015-08-20 09:06:03", "202.46.51.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("15469", "3", "2015-08-20 10:04:35", "202.46.56.199", "24");
INSERT INTO `wp_rg_form_view` VALUES("15470", "8", "2015-08-20 10:04:35", "202.46.56.199", "8");
INSERT INTO `wp_rg_form_view` VALUES("15471", "3", "2015-08-20 11:03:09", "202.46.49.152", "34");
INSERT INTO `wp_rg_form_view` VALUES("15472", "8", "2015-08-20 11:03:09", "202.46.49.152", "13");
INSERT INTO `wp_rg_form_view` VALUES("15473", "1", "2015-08-20 11:09:48", "46.246.62.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("15474", "3", "2015-08-20 12:01:40", "202.46.56.111", "27");
INSERT INTO `wp_rg_form_view` VALUES("15475", "8", "2015-08-20 12:01:40", "202.46.56.111", "9");
INSERT INTO `wp_rg_form_view` VALUES("15476", "3", "2015-08-20 13:00:11", "202.46.57.21", "24");
INSERT INTO `wp_rg_form_view` VALUES("15477", "8", "2015-08-20 13:00:12", "202.46.57.21", "8");
INSERT INTO `wp_rg_form_view` VALUES("15478", "3", "2015-08-20 14:10:34", "202.46.58.157", "29");
INSERT INTO `wp_rg_form_view` VALUES("15479", "8", "2015-08-20 14:10:34", "202.46.58.157", "10");
INSERT INTO `wp_rg_form_view` VALUES("15480", "3", "2015-08-20 15:08:42", "66.249.79.70", "29");
INSERT INTO `wp_rg_form_view` VALUES("15481", "8", "2015-08-20 15:08:42", "66.249.79.70", "9");
INSERT INTO `wp_rg_form_view` VALUES("15482", "3", "2015-08-20 16:03:52", "66.249.79.76", "42");
INSERT INTO `wp_rg_form_view` VALUES("15483", "8", "2015-08-20 16:03:52", "66.249.79.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("15484", "7", "2015-08-20 16:17:29", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15485", "3", "2015-08-20 17:03:34", "207.46.13.82", "12");
INSERT INTO `wp_rg_form_view` VALUES("15486", "8", "2015-08-20 17:03:35", "207.46.13.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("15487", "3", "2015-08-20 18:02:38", "66.249.79.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("15488", "8", "2015-08-20 18:02:38", "66.249.79.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("15489", "3", "2015-08-20 19:04:20", "207.46.13.21", "23");
INSERT INTO `wp_rg_form_view` VALUES("15490", "8", "2015-08-20 19:04:23", "207.46.13.21", "7");
INSERT INTO `wp_rg_form_view` VALUES("15491", "7", "2015-08-20 19:26:40", "66.249.79.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("15492", "3", "2015-08-20 20:02:26", "121.43.187.19", "25");
INSERT INTO `wp_rg_form_view` VALUES("15493", "8", "2015-08-20 20:02:26", "121.43.187.19", "8");
INSERT INTO `wp_rg_form_view` VALUES("15494", "3", "2015-08-20 21:07:31", "207.46.13.82", "39");
INSERT INTO `wp_rg_form_view` VALUES("15495", "8", "2015-08-20 21:07:36", "207.46.13.82", "13");
INSERT INTO `wp_rg_form_view` VALUES("15496", "1", "2015-08-20 21:33:50", "221.234.228.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("15497", "6", "2015-08-20 21:56:04", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15498", "3", "2015-08-20 22:15:32", "202.46.50.130", "12");
INSERT INTO `wp_rg_form_view` VALUES("15499", "8", "2015-08-20 22:15:32", "202.46.50.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("15500", "8", "2015-08-20 23:01:44", "197.190.138.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("15501", "3", "2015-08-20 23:01:45", "197.190.138.148", "28");
INSERT INTO `wp_rg_form_view` VALUES("15502", "3", "2015-08-21 00:15:58", "66.249.79.70", "22");
INSERT INTO `wp_rg_form_view` VALUES("15503", "8", "2015-08-21 00:15:58", "66.249.79.70", "7");
INSERT INTO `wp_rg_form_view` VALUES("15504", "3", "2015-08-21 01:04:47", "66.249.88.235", "25");
INSERT INTO `wp_rg_form_view` VALUES("15505", "8", "2015-08-21 01:04:48", "66.249.88.235", "8");
INSERT INTO `wp_rg_form_view` VALUES("15506", "3", "2015-08-21 02:18:40", "154.20.40.8", "95");
INSERT INTO `wp_rg_form_view` VALUES("15507", "8", "2015-08-21 02:18:40", "154.20.40.8", "32");
INSERT INTO `wp_rg_form_view` VALUES("15508", "8", "2015-08-21 03:10:17", "202.46.56.64", "14");
INSERT INTO `wp_rg_form_view` VALUES("15509", "3", "2015-08-21 03:10:17", "202.46.56.64", "39");
INSERT INTO `wp_rg_form_view` VALUES("15510", "1", "2015-08-21 03:13:13", "154.20.40.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("15511", "3", "2015-08-21 04:08:04", "68.180.229.161", "37");
INSERT INTO `wp_rg_form_view` VALUES("15512", "8", "2015-08-21 04:08:05", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("15513", "3", "2015-08-21 05:03:52", "66.249.79.76", "39");
INSERT INTO `wp_rg_form_view` VALUES("15514", "8", "2015-08-21 05:03:52", "66.249.79.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("15515", "3", "2015-08-21 06:05:42", "202.46.48.144", "30");
INSERT INTO `wp_rg_form_view` VALUES("15516", "8", "2015-08-21 06:05:42", "202.46.48.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("15517", "3", "2015-08-21 07:04:11", "202.46.50.84", "24");
INSERT INTO `wp_rg_form_view` VALUES("15518", "8", "2015-08-21 07:04:11", "202.46.50.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("15519", "3", "2015-08-21 08:02:44", "202.46.57.170", "27");
INSERT INTO `wp_rg_form_view` VALUES("15520", "8", "2015-08-21 08:02:44", "202.46.57.170", "9");
INSERT INTO `wp_rg_form_view` VALUES("15521", "3", "2015-08-21 09:01:20", "202.46.50.93", "37");
INSERT INTO `wp_rg_form_view` VALUES("15522", "8", "2015-08-21 09:01:21", "202.46.50.93", "13");
INSERT INTO `wp_rg_form_view` VALUES("15523", "3", "2015-08-21 10:06:43", "66.249.79.76", "48");
INSERT INTO `wp_rg_form_view` VALUES("15524", "8", "2015-08-21 10:06:43", "66.249.79.76", "17");
INSERT INTO `wp_rg_form_view` VALUES("15525", "2", "2015-08-21 10:48:44", "66.249.79.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("15526", "3", "2015-08-21 12:16:55", "202.46.58.77", "23");
INSERT INTO `wp_rg_form_view` VALUES("15527", "8", "2015-08-21 12:16:57", "202.46.58.77", "8");
INSERT INTO `wp_rg_form_view` VALUES("15528", "3", "2015-08-21 13:08:03", "202.46.56.64", "9");
INSERT INTO `wp_rg_form_view` VALUES("15529", "8", "2015-08-21 13:08:03", "202.46.56.64", "3");
INSERT INTO `wp_rg_form_view` VALUES("15530", "3", "2015-08-21 14:03:43", "66.249.79.70", "42");
INSERT INTO `wp_rg_form_view` VALUES("15531", "8", "2015-08-21 14:03:44", "66.249.79.70", "14");
INSERT INTO `wp_rg_form_view` VALUES("15532", "3", "2015-08-21 15:07:12", "202.46.51.183", "27");
INSERT INTO `wp_rg_form_view` VALUES("15533", "8", "2015-08-21 15:07:13", "202.46.51.183", "9");
INSERT INTO `wp_rg_form_view` VALUES("15534", "8", "2015-08-21 16:05:45", "202.46.50.189", "11");
INSERT INTO `wp_rg_form_view` VALUES("15535", "3", "2015-08-21 16:05:46", "202.46.50.189", "31");
INSERT INTO `wp_rg_form_view` VALUES("15536", "3", "2015-08-21 17:01:25", "24.68.132.172", "33");
INSERT INTO `wp_rg_form_view` VALUES("15537", "8", "2015-08-21 17:01:26", "24.68.132.172", "11");
INSERT INTO `wp_rg_form_view` VALUES("15538", "3", "2015-08-21 18:02:48", "202.46.58.112", "46");
INSERT INTO `wp_rg_form_view` VALUES("15539", "8", "2015-08-21 18:02:49", "202.46.58.112", "16");
INSERT INTO `wp_rg_form_view` VALUES("15540", "1", "2015-08-21 18:25:00", "66.249.79.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("15541", "3", "2015-08-21 19:01:24", "202.46.55.81", "15");
INSERT INTO `wp_rg_form_view` VALUES("15542", "8", "2015-08-21 19:01:24", "202.46.55.81", "5");
INSERT INTO `wp_rg_form_view` VALUES("15543", "1", "2015-08-21 19:58:37", "116.211.224.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("15544", "3", "2015-08-21 20:10:34", "202.46.54.133", "96");
INSERT INTO `wp_rg_form_view` VALUES("15545", "8", "2015-08-21 20:10:35", "202.46.54.133", "32");
INSERT INTO `wp_rg_form_view` VALUES("15546", "5", "2015-08-21 20:58:45", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("15547", "2", "2015-08-21 20:59:17", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("15548", "3", "2015-08-21 21:00:22", "109.169.29.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("15549", "8", "2015-08-21 21:00:22", "109.169.29.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("15550", "3", "2015-08-21 22:24:18", "202.46.57.21", "9");
INSERT INTO `wp_rg_form_view` VALUES("15551", "8", "2015-08-21 22:24:18", "202.46.57.21", "3");
INSERT INTO `wp_rg_form_view` VALUES("15552", "3", "2015-08-21 23:12:31", "202.46.51.200", "30");
INSERT INTO `wp_rg_form_view` VALUES("15553", "8", "2015-08-21 23:12:31", "202.46.51.200", "9");
INSERT INTO `wp_rg_form_view` VALUES("15554", "3", "2015-08-22 00:17:49", "202.46.52.63", "27");
INSERT INTO `wp_rg_form_view` VALUES("15555", "8", "2015-08-22 00:17:49", "202.46.52.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("15556", "6", "2015-08-22 00:43:36", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("15557", "3", "2015-08-22 01:04:35", "202.46.57.163", "38");
INSERT INTO `wp_rg_form_view` VALUES("15558", "8", "2015-08-22 01:04:36", "202.46.57.163", "11");
INSERT INTO `wp_rg_form_view` VALUES("15559", "1", "2015-08-22 01:28:39", "174.139.80.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("15560", "3", "2015-08-22 02:14:11", "66.249.79.64", "6");
INSERT INTO `wp_rg_form_view` VALUES("15561", "8", "2015-08-22 02:14:11", "66.249.79.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("15562", "8", "2015-08-22 03:00:13", "202.46.57.11", "17");
INSERT INTO `wp_rg_form_view` VALUES("15563", "3", "2015-08-22 03:00:14", "202.46.57.11", "48");
INSERT INTO `wp_rg_form_view` VALUES("15564", "1", "2015-08-22 03:18:57", "58.96.182.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("15565", "3", "2015-08-22 04:00:12", "202.46.50.180", "51");
INSERT INTO `wp_rg_form_view` VALUES("15566", "8", "2015-08-22 04:00:12", "202.46.50.180", "18");
INSERT INTO `wp_rg_form_view` VALUES("15567", "1", "2015-08-22 04:27:09", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15568", "3", "2015-08-22 05:10:26", "202.46.55.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("15569", "8", "2015-08-22 05:10:26", "202.46.55.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("15570", "3", "2015-08-22 06:08:58", "202.46.56.110", "27");
INSERT INTO `wp_rg_form_view` VALUES("15571", "8", "2015-08-22 06:08:59", "202.46.56.110", "9");
INSERT INTO `wp_rg_form_view` VALUES("15572", "3", "2015-08-22 07:02:34", "157.55.39.69", "35");
INSERT INTO `wp_rg_form_view` VALUES("15573", "8", "2015-08-22 07:02:35", "157.55.39.69", "13");
INSERT INTO `wp_rg_form_view` VALUES("15574", "3", "2015-08-22 08:06:02", "202.46.51.16", "28");
INSERT INTO `wp_rg_form_view` VALUES("15575", "8", "2015-08-22 08:06:02", "202.46.51.16", "10");
INSERT INTO `wp_rg_form_view` VALUES("15576", "3", "2015-08-22 09:02:41", "157.55.39.178", "100");
INSERT INTO `wp_rg_form_view` VALUES("15577", "8", "2015-08-22 09:02:41", "157.55.39.178", "33");
INSERT INTO `wp_rg_form_view` VALUES("15578", "1", "2015-08-22 09:25:21", "47.23.126.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("15579", "2", "2015-08-22 09:25:26", "47.23.126.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("15580", "3", "2015-08-22 10:01:33", "68.180.229.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("15581", "8", "2015-08-22 10:01:34", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("15582", "1", "2015-08-22 10:19:36", "66.249.79.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("15583", "3", "2015-08-22 13:06:17", "157.55.39.14", "3");
INSERT INTO `wp_rg_form_view` VALUES("15584", "8", "2015-08-22 13:06:18", "157.55.39.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("15585", "3", "2015-08-22 14:48:45", "202.46.54.199", "6");
INSERT INTO `wp_rg_form_view` VALUES("15586", "8", "2015-08-22 14:48:46", "202.46.54.199", "2");
INSERT INTO `wp_rg_form_view` VALUES("15587", "3", "2015-08-22 15:02:06", "83.31.129.213", "9");
INSERT INTO `wp_rg_form_view` VALUES("15588", "8", "2015-08-22 15:02:06", "83.31.129.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("15589", "3", "2015-08-22 16:40:26", "66.249.79.64", "6");
INSERT INTO `wp_rg_form_view` VALUES("15590", "8", "2015-08-22 16:40:27", "66.249.79.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("15591", "3", "2015-08-22 17:31:42", "157.55.39.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("15592", "8", "2015-08-22 17:31:43", "157.55.39.176", "12");
INSERT INTO `wp_rg_form_view` VALUES("15593", "2", "2015-08-22 17:56:56", "142.54.174.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("15594", "1", "2015-08-22 17:56:58", "142.54.174.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("15595", "3", "2015-08-22 19:06:40", "157.55.39.177", "10");
INSERT INTO `wp_rg_form_view` VALUES("15596", "8", "2015-08-22 19:06:41", "157.55.39.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("15597", "1", "2015-08-22 19:13:09", "157.55.39.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("15598", "3", "2015-08-22 20:02:48", "68.180.229.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("15599", "8", "2015-08-22 20:02:48", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("15600", "3", "2015-08-22 21:18:57", "108.180.242.40", "9");
INSERT INTO `wp_rg_form_view` VALUES("15601", "8", "2015-08-22 21:18:58", "108.180.242.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("15602", "3", "2015-08-22 22:00:05", "207.46.13.84", "46");
INSERT INTO `wp_rg_form_view` VALUES("15603", "8", "2015-08-22 22:00:05", "207.46.13.84", "15");
INSERT INTO `wp_rg_form_view` VALUES("15604", "3", "2015-08-22 23:05:12", "202.46.58.185", "8");
INSERT INTO `wp_rg_form_view` VALUES("15605", "8", "2015-08-22 23:05:12", "202.46.58.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("15606", "3", "2015-08-23 00:25:16", "66.249.79.76", "39");
INSERT INTO `wp_rg_form_view` VALUES("15607", "8", "2015-08-23 00:25:16", "66.249.79.76", "13");
INSERT INTO `wp_rg_form_view` VALUES("15608", "6", "2015-08-23 00:46:17", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("15609", "3", "2015-08-23 01:12:08", "202.46.51.187", "11");
INSERT INTO `wp_rg_form_view` VALUES("15610", "8", "2015-08-23 01:12:09", "202.46.51.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("15611", "3", "2015-08-23 02:22:27", "96.50.75.217", "10");
INSERT INTO `wp_rg_form_view` VALUES("15612", "8", "2015-08-23 02:22:28", "96.50.75.217", "3");
INSERT INTO `wp_rg_form_view` VALUES("15613", "3", "2015-08-23 03:01:36", "66.249.79.64", "22");
INSERT INTO `wp_rg_form_view` VALUES("15614", "8", "2015-08-23 03:06:17", "66.249.79.70", "6");
INSERT INTO `wp_rg_form_view` VALUES("15615", "7", "2015-08-23 04:08:43", "66.249.79.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("15616", "3", "2015-08-23 04:08:43", "66.249.79.70", "12");
INSERT INTO `wp_rg_form_view` VALUES("15617", "8", "2015-08-23 04:08:43", "66.249.79.70", "4");
INSERT INTO `wp_rg_form_view` VALUES("15618", "3", "2015-08-23 05:00:46", "202.46.50.16", "25");
INSERT INTO `wp_rg_form_view` VALUES("15619", "8", "2015-08-23 05:00:46", "202.46.50.16", "8");
INSERT INTO `wp_rg_form_view` VALUES("15620", "2", "2015-08-23 05:07:03", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15621", "3", "2015-08-23 06:12:56", "82.211.57.133", "15");
INSERT INTO `wp_rg_form_view` VALUES("15622", "8", "2015-08-23 06:12:56", "82.211.57.133", "5");
INSERT INTO `wp_rg_form_view` VALUES("15623", "2", "2015-08-23 06:22:14", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15624", "6", "2015-08-23 06:51:07", "45.72.74.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("15625", "3", "2015-08-23 07:11:15", "54.161.228.210", "173");
INSERT INTO `wp_rg_form_view` VALUES("15626", "8", "2015-08-23 07:11:15", "54.161.228.210", "60");
INSERT INTO `wp_rg_form_view` VALUES("15627", "2", "2015-08-23 07:11:33", "54.161.228.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("15628", "1", "2015-08-23 07:11:36", "54.161.228.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("15629", "3", "2015-08-23 08:05:09", "66.249.79.76", "21");
INSERT INTO `wp_rg_form_view` VALUES("15630", "8", "2015-08-23 08:05:09", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("15631", "8", "2015-08-23 09:01:59", "202.46.57.172", "10");
INSERT INTO `wp_rg_form_view` VALUES("15632", "3", "2015-08-23 09:01:59", "202.46.57.172", "27");
INSERT INTO `wp_rg_form_view` VALUES("15633", "1", "2015-08-23 09:10:23", "66.249.79.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("15634", "3", "2015-08-23 10:00:31", "202.46.51.207", "28");
INSERT INTO `wp_rg_form_view` VALUES("15635", "8", "2015-08-23 10:00:31", "202.46.51.207", "10");
INSERT INTO `wp_rg_form_view` VALUES("15636", "3", "2015-08-23 11:10:47", "202.46.53.57", "15");
INSERT INTO `wp_rg_form_view` VALUES("15637", "8", "2015-08-23 11:10:49", "202.46.53.57", "5");
INSERT INTO `wp_rg_form_view` VALUES("15638", "6", "2015-08-23 12:04:47", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15639", "3", "2015-08-23 12:04:49", "68.180.229.161", "19");
INSERT INTO `wp_rg_form_view` VALUES("15640", "8", "2015-08-23 12:04:49", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("15641", "2", "2015-08-23 13:06:31", "157.55.39.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("15642", "3", "2015-08-23 13:06:31", "157.55.39.12", "35");
INSERT INTO `wp_rg_form_view` VALUES("15643", "8", "2015-08-23 13:06:32", "157.55.39.12", "12");
INSERT INTO `wp_rg_form_view` VALUES("15644", "1", "2015-08-23 13:26:57", "66.249.79.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("15645", "3", "2015-08-23 14:18:27", "202.46.53.113", "18");
INSERT INTO `wp_rg_form_view` VALUES("15646", "8", "2015-08-23 14:18:28", "202.46.53.113", "7");
INSERT INTO `wp_rg_form_view` VALUES("15647", "3", "2015-08-23 15:02:22", "108.180.242.40", "28");
INSERT INTO `wp_rg_form_view` VALUES("15648", "8", "2015-08-23 15:02:22", "108.180.242.40", "9");
INSERT INTO `wp_rg_form_view` VALUES("15649", "3", "2015-08-23 16:03:51", "202.46.53.140", "24");
INSERT INTO `wp_rg_form_view` VALUES("15650", "8", "2015-08-23 16:03:52", "202.46.53.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("15651", "3", "2015-08-23 17:07:57", "77.75.76.170", "12");
INSERT INTO `wp_rg_form_view` VALUES("15652", "8", "2015-08-23 17:07:58", "77.75.76.170", "4");
INSERT INTO `wp_rg_form_view` VALUES("15653", "3", "2015-08-23 18:49:01", "202.46.53.207", "3");
INSERT INTO `wp_rg_form_view` VALUES("15654", "8", "2015-08-23 18:49:02", "202.46.53.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("15655", "3", "2015-08-23 19:13:05", "202.46.54.95", "24");
INSERT INTO `wp_rg_form_view` VALUES("15656", "8", "2015-08-23 19:13:06", "202.46.54.95", "10");
INSERT INTO `wp_rg_form_view` VALUES("15657", "3", "2015-08-23 20:42:32", "202.46.52.69", "12");
INSERT INTO `wp_rg_form_view` VALUES("15658", "8", "2015-08-23 20:42:33", "202.46.52.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("15659", "3", "2015-08-23 21:01:14", "202.46.48.84", "30");
INSERT INTO `wp_rg_form_view` VALUES("15660", "8", "2015-08-23 21:01:15", "202.46.48.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("15661", "2", "2015-08-23 21:07:13", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15662", "1", "2015-08-23 21:47:04", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15663", "1", "2015-08-23 22:13:22", "107.150.42.226", "3");
INSERT INTO `wp_rg_form_view` VALUES("15664", "3", "2015-08-23 22:13:22", "107.150.42.226", "72");
INSERT INTO `wp_rg_form_view` VALUES("15665", "8", "2015-08-23 22:13:22", "107.150.42.226", "22");
INSERT INTO `wp_rg_form_view` VALUES("15666", "8", "2015-08-23 23:51:25", "54.209.60.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("15667", "3", "2015-08-23 23:51:27", "54.209.60.63", "3");
INSERT INTO `wp_rg_form_view` VALUES("15668", "2", "2015-08-24 00:00:10", "207.46.13.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("15669", "3", "2015-08-24 00:00:10", "207.46.13.50", "9");
INSERT INTO `wp_rg_form_view` VALUES("15670", "8", "2015-08-24 00:00:11", "207.46.13.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("15671", "3", "2015-08-24 01:03:19", "5.9.112.6", "24");
INSERT INTO `wp_rg_form_view` VALUES("15672", "8", "2015-08-24 01:03:19", "5.9.112.6", "8");
INSERT INTO `wp_rg_form_view` VALUES("15673", "3", "2015-08-24 02:56:41", "91.200.12.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("15674", "8", "2015-08-24 02:56:57", "91.200.12.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("15675", "3", "2015-08-24 03:07:11", "108.180.242.40", "32");
INSERT INTO `wp_rg_form_view` VALUES("15676", "8", "2015-08-24 03:07:18", "108.180.242.40", "11");
INSERT INTO `wp_rg_form_view` VALUES("15677", "3", "2015-08-24 05:09:31", "108.180.242.40", "37");
INSERT INTO `wp_rg_form_view` VALUES("15678", "8", "2015-08-24 05:09:38", "108.180.242.40", "12");
INSERT INTO `wp_rg_form_view` VALUES("15679", "1", "2015-08-24 05:15:52", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15680", "3", "2015-08-24 06:01:13", "202.46.58.113", "17");
INSERT INTO `wp_rg_form_view` VALUES("15681", "8", "2015-08-24 06:01:14", "202.46.58.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("15682", "3", "2015-08-24 07:16:49", "199.217.117.207", "21");
INSERT INTO `wp_rg_form_view` VALUES("15683", "8", "2015-08-24 07:16:50", "199.217.117.207", "7");
INSERT INTO `wp_rg_form_view` VALUES("15684", "1", "2015-08-24 07:19:03", "23.247.182.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("15685", "6", "2015-08-24 08:00:07", "162.244.15.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("15686", "6", "2015-08-24 08:00:07", "192.227.207.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("15687", "3", "2015-08-24 08:00:08", "192.227.207.155", "37");
INSERT INTO `wp_rg_form_view` VALUES("15688", "3", "2015-08-24 08:00:08", "162.244.15.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("15689", "8", "2015-08-24 08:00:08", "162.244.15.251", "9");
INSERT INTO `wp_rg_form_view` VALUES("15690", "8", "2015-08-24 08:00:08", "192.227.207.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("15691", "3", "2015-08-24 09:07:39", "202.46.56.73", "22");
INSERT INTO `wp_rg_form_view` VALUES("15692", "8", "2015-08-24 09:07:40", "202.46.56.73", "7");
INSERT INTO `wp_rg_form_view` VALUES("15693", "3", "2015-08-24 10:08:01", "202.46.58.200", "15");
INSERT INTO `wp_rg_form_view` VALUES("15694", "8", "2015-08-24 10:08:01", "202.46.58.200", "5");
INSERT INTO `wp_rg_form_view` VALUES("15695", "3", "2015-08-24 11:48:39", "66.249.79.64", "7");
INSERT INTO `wp_rg_form_view` VALUES("15696", "8", "2015-08-24 11:48:45", "66.249.79.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("15697", "3", "2015-08-24 12:09:10", "77.173.163.90", "103");
INSERT INTO `wp_rg_form_view` VALUES("15698", "8", "2015-08-24 12:09:10", "77.173.163.90", "34");
INSERT INTO `wp_rg_form_view` VALUES("15699", "1", "2015-08-24 12:09:50", "77.173.163.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("15700", "2", "2015-08-24 12:09:56", "77.173.163.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("15701", "3", "2015-08-24 13:09:14", "198.2.196.140", "34");
INSERT INTO `wp_rg_form_view` VALUES("15702", "3", "2015-08-24 13:09:14", "198.2.196.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("15703", "8", "2015-08-24 13:09:15", "198.2.196.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("15704", "1", "2015-08-24 14:48:51", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15705", "3", "2015-08-24 14:48:54", "108.180.242.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("15706", "8", "2015-08-24 14:48:55", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15707", "1", "2015-08-24 15:30:04", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15708", "3", "2015-08-24 15:30:28", "108.180.242.40", "9");
INSERT INTO `wp_rg_form_view` VALUES("15709", "8", "2015-08-24 15:30:29", "108.180.242.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("15710", "3", "2015-08-24 16:16:36", "1.179.143.178", "4");
INSERT INTO `wp_rg_form_view` VALUES("15711", "8", "2015-08-24 16:18:27", "1.179.143.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("15712", "3", "2015-08-24 17:11:14", "24.108.85.166", "15");
INSERT INTO `wp_rg_form_view` VALUES("15713", "8", "2015-08-24 17:11:20", "24.108.85.166", "4");
INSERT INTO `wp_rg_form_view` VALUES("15714", "8", "2015-08-24 17:11:20", "24.108.85.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("15715", "3", "2015-08-24 18:31:32", "54.148.148.133", "33");
INSERT INTO `wp_rg_form_view` VALUES("15716", "8", "2015-08-24 18:31:33", "54.148.148.133", "11");
INSERT INTO `wp_rg_form_view` VALUES("15717", "3", "2015-08-24 19:20:57", "96.50.93.42", "18");
INSERT INTO `wp_rg_form_view` VALUES("15718", "8", "2015-08-24 19:20:59", "96.50.93.42", "6");
INSERT INTO `wp_rg_form_view` VALUES("15719", "3", "2015-08-24 20:03:14", "107.172.3.100", "68");
INSERT INTO `wp_rg_form_view` VALUES("15720", "8", "2015-08-24 20:03:14", "107.172.3.100", "22");
INSERT INTO `wp_rg_form_view` VALUES("15721", "3", "2015-08-24 21:35:42", "188.40.112.210", "29");
INSERT INTO `wp_rg_form_view` VALUES("15722", "8", "2015-08-24 21:35:43", "188.40.112.210", "8");
INSERT INTO `wp_rg_form_view` VALUES("15723", "3", "2015-08-24 22:25:45", "199.21.99.202", "23");
INSERT INTO `wp_rg_form_view` VALUES("15724", "3", "2015-08-24 22:25:45", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("15725", "8", "2015-08-24 22:25:48", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("15726", "1", "2015-08-24 22:57:04", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15727", "3", "2015-08-24 23:03:56", "54.201.167.216", "52");
INSERT INTO `wp_rg_form_view` VALUES("15728", "8", "2015-08-24 23:03:56", "54.201.167.216", "17");
INSERT INTO `wp_rg_form_view` VALUES("15729", "1", "2015-08-24 23:05:14", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15730", "3", "2015-08-25 00:09:52", "24.69.48.241", "43");
INSERT INTO `wp_rg_form_view` VALUES("15731", "8", "2015-08-25 00:10:02", "24.69.48.241", "14");
INSERT INTO `wp_rg_form_view` VALUES("15732", "1", "2015-08-25 00:11:40", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15733", "3", "2015-08-25 01:10:30", "188.165.15.235", "36");
INSERT INTO `wp_rg_form_view` VALUES("15734", "8", "2015-08-25 01:10:32", "188.165.15.235", "12");
INSERT INTO `wp_rg_form_view` VALUES("15735", "3", "2015-08-25 02:00:52", "54.201.191.138", "43");
INSERT INTO `wp_rg_form_view` VALUES("15736", "8", "2015-08-25 02:00:52", "54.201.191.138", "14");
INSERT INTO `wp_rg_form_view` VALUES("15737", "3", "2015-08-25 03:00:09", "68.180.229.161", "44");
INSERT INTO `wp_rg_form_view` VALUES("15738", "8", "2015-08-25 03:00:09", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("15739", "3", "2015-08-25 04:02:11", "202.46.54.95", "52");
INSERT INTO `wp_rg_form_view` VALUES("15740", "8", "2015-08-25 04:02:11", "202.46.54.95", "17");
INSERT INTO `wp_rg_form_view` VALUES("15741", "3", "2015-08-25 05:06:46", "66.249.79.76", "45");
INSERT INTO `wp_rg_form_view` VALUES("15742", "8", "2015-08-25 05:06:46", "66.249.79.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("15743", "3", "2015-08-25 06:00:53", "66.249.79.70", "45");
INSERT INTO `wp_rg_form_view` VALUES("15744", "8", "2015-08-25 06:00:53", "66.249.79.70", "15");
INSERT INTO `wp_rg_form_view` VALUES("15745", "6", "2015-08-25 06:01:46", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("15746", "3", "2015-08-25 07:15:48", "202.46.54.94", "130");
INSERT INTO `wp_rg_form_view` VALUES("15747", "8", "2015-08-25 07:15:48", "202.46.54.94", "43");
INSERT INTO `wp_rg_form_view` VALUES("15748", "2", "2015-08-25 07:18:17", "107.150.42.226", "3");
INSERT INTO `wp_rg_form_view` VALUES("15749", "1", "2015-08-25 07:23:57", "82.171.194.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("15750", "3", "2015-08-25 08:05:29", "66.249.79.64", "143");
INSERT INTO `wp_rg_form_view` VALUES("15751", "8", "2015-08-25 08:05:29", "66.249.79.64", "48");
INSERT INTO `wp_rg_form_view` VALUES("15752", "1", "2015-08-25 08:46:15", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("15753", "2", "2015-08-25 08:46:37", "104.171.124.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("15754", "3", "2015-08-25 09:05:37", "66.249.79.64", "81");
INSERT INTO `wp_rg_form_view` VALUES("15755", "8", "2015-08-25 09:05:37", "66.249.79.64", "27");
INSERT INTO `wp_rg_form_view` VALUES("15756", "2", "2015-08-25 09:36:43", "66.249.79.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("15757", "7", "2015-08-25 09:42:55", "66.249.79.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("15758", "3", "2015-08-25 10:13:22", "157.55.39.168", "24");
INSERT INTO `wp_rg_form_view` VALUES("15759", "8", "2015-08-25 10:13:22", "157.55.39.168", "8");
INSERT INTO `wp_rg_form_view` VALUES("15760", "3", "2015-08-25 11:05:30", "202.46.52.147", "39");
INSERT INTO `wp_rg_form_view` VALUES("15761", "8", "2015-08-25 11:05:31", "202.46.52.147", "13");
INSERT INTO `wp_rg_form_view` VALUES("15762", "6", "2015-08-25 11:39:25", "66.249.79.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("15763", "2", "2015-08-25 11:45:41", "66.249.79.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("15764", "3", "2015-08-25 12:07:07", "202.46.55.151", "63");
INSERT INTO `wp_rg_form_view` VALUES("15765", "8", "2015-08-25 12:07:07", "202.46.55.151", "20");
INSERT INTO `wp_rg_form_view` VALUES("15766", "1", "2015-08-25 12:50:14", "31.184.238.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("15767", "3", "2015-08-25 13:04:52", "66.249.79.64", "73");
INSERT INTO `wp_rg_form_view` VALUES("15768", "8", "2015-08-25 13:04:52", "66.249.79.64", "23");
INSERT INTO `wp_rg_form_view` VALUES("15769", "3", "2015-08-25 14:00:45", "66.249.79.70", "30");
INSERT INTO `wp_rg_form_view` VALUES("15770", "8", "2015-08-25 14:00:45", "66.249.79.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("15771", "6", "2015-08-25 14:40:31", "66.249.79.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("15772", "3", "2015-08-25 15:17:48", "66.249.79.70", "35");
INSERT INTO `wp_rg_form_view` VALUES("15773", "8", "2015-08-25 15:17:49", "66.249.79.70", "12");
INSERT INTO `wp_rg_form_view` VALUES("15774", "1", "2015-08-25 15:27:05", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15775", "3", "2015-08-25 16:00:27", "66.249.79.70", "548");
INSERT INTO `wp_rg_form_view` VALUES("15776", "8", "2015-08-25 16:00:27", "66.249.79.70", "192");
INSERT INTO `wp_rg_form_view` VALUES("15777", "6", "2015-08-25 16:27:33", "66.249.79.64", "3");
INSERT INTO `wp_rg_form_view` VALUES("15778", "1", "2015-08-25 16:42:50", "107.170.162.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("15779", "5", "2015-08-25 16:50:45", "107.170.162.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("15780", "3", "2015-08-25 17:00:04", "107.170.162.72", "1336");
INSERT INTO `wp_rg_form_view` VALUES("15781", "8", "2015-08-25 17:00:04", "107.170.162.72", "453");
INSERT INTO `wp_rg_form_view` VALUES("15782", "1", "2015-08-25 17:17:37", "96.50.93.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("15783", "2", "2015-08-25 17:21:41", "97.65.249.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("15784", "8", "2015-08-25 18:00:18", "107.170.162.72", "17");
INSERT INTO `wp_rg_form_view` VALUES("15785", "3", "2015-08-25 18:00:19", "107.170.162.72", "40");
INSERT INTO `wp_rg_form_view` VALUES("15786", "1", "2015-08-25 18:29:18", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15787", "1", "2015-08-25 19:04:31", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15788", "3", "2015-08-25 19:04:31", "108.180.242.40", "33");
INSERT INTO `wp_rg_form_view` VALUES("15789", "8", "2015-08-25 19:04:32", "108.180.242.40", "12");
INSERT INTO `wp_rg_form_view` VALUES("15790", "3", "2015-08-25 20:09:47", "202.46.57.173", "13");
INSERT INTO `wp_rg_form_view` VALUES("15791", "8", "2015-08-25 20:09:47", "202.46.57.173", "5");
INSERT INTO `wp_rg_form_view` VALUES("15792", "1", "2015-08-25 21:03:46", "108.180.242.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("15793", "3", "2015-08-25 21:03:46", "108.180.242.40", "50");
INSERT INTO `wp_rg_form_view` VALUES("15794", "8", "2015-08-25 21:03:47", "108.180.242.40", "16");
INSERT INTO `wp_rg_form_view` VALUES("15795", "2", "2015-08-25 21:52:52", "108.180.165.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("15796", "3", "2015-08-25 22:06:52", "202.46.57.72", "12");
INSERT INTO `wp_rg_form_view` VALUES("15797", "8", "2015-08-25 22:06:52", "202.46.57.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("15798", "3", "2015-08-25 23:03:15", "207.46.13.29", "15");
INSERT INTO `wp_rg_form_view` VALUES("15799", "8", "2015-08-25 23:03:15", "207.46.13.29", "5");
INSERT INTO `wp_rg_form_view` VALUES("15800", "3", "2015-08-26 00:02:01", "188.165.15.235", "21");
INSERT INTO `wp_rg_form_view` VALUES("15801", "8", "2015-08-26 00:02:02", "188.165.15.235", "7");
INSERT INTO `wp_rg_form_view` VALUES("15802", "3", "2015-08-26 01:10:34", "202.46.58.123", "21");
INSERT INTO `wp_rg_form_view` VALUES("15803", "8", "2015-08-26 01:10:34", "202.46.58.123", "7");
INSERT INTO `wp_rg_form_view` VALUES("15804", "2", "2015-08-26 01:50:33", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("15805", "3", "2015-08-26 02:00:53", "68.180.229.161", "27");
INSERT INTO `wp_rg_form_view` VALUES("15806", "8", "2015-08-26 02:00:53", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("15807", "2", "2015-08-26 03:48:17", "188.165.15.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("15808", "3", "2015-08-26 03:48:18", "188.165.15.235", "3");
INSERT INTO `wp_rg_form_view` VALUES("15809", "8", "2015-08-26 03:48:18", "188.165.15.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("15810", "3", "2015-08-26 04:05:33", "202.46.56.69", "13");
INSERT INTO `wp_rg_form_view` VALUES("15811", "8", "2015-08-26 04:05:33", "202.46.56.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("15812", "3", "2015-08-26 05:00:37", "157.55.39.177", "64");
INSERT INTO `wp_rg_form_view` VALUES("15813", "8", "2015-08-26 05:00:38", "157.55.39.177", "21");
INSERT INTO `wp_rg_form_view` VALUES("15814", "3", "2015-08-26 06:10:55", "202.46.58.156", "14");
INSERT INTO `wp_rg_form_view` VALUES("15815", "8", "2015-08-26 06:10:56", "202.46.58.156", "5");
INSERT INTO `wp_rg_form_view` VALUES("15816", "8", "2015-08-26 07:12:38", "157.55.39.230", "19");
INSERT INTO `wp_rg_form_view` VALUES("15817", "3", "2015-08-26 07:12:41", "157.55.39.230", "44");
INSERT INTO `wp_rg_form_view` VALUES("15818", "3", "2015-08-26 08:01:46", "202.46.55.88", "53");
INSERT INTO `wp_rg_form_view` VALUES("15819", "8", "2015-08-26 08:01:46", "202.46.55.88", "18");
INSERT INTO `wp_rg_form_view` VALUES("15820", "1", "2015-08-26 08:20:15", "157.55.39.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("15821", "8", "2015-08-26 09:12:37", "202.46.58.206", "7");
INSERT INTO `wp_rg_form_view` VALUES("15822", "3", "2015-08-26 09:12:37", "202.46.58.206", "17");
INSERT INTO `wp_rg_form_view` VALUES("15823", "3", "2015-08-26 10:10:30", "202.46.53.13", "45");
INSERT INTO `wp_rg_form_view` VALUES("15824", "8", "2015-08-26 10:10:31", "202.46.53.13", "14");
INSERT INTO `wp_rg_form_view` VALUES("15825", "3", "2015-08-26 11:29:30", "66.249.79.64", "18");
INSERT INTO `wp_rg_form_view` VALUES("15826", "8", "2015-08-26 11:29:31", "66.249.79.64", "6");
INSERT INTO `wp_rg_form_view` VALUES("15827", "3", "2015-08-26 12:17:02", "188.165.15.235", "13");
INSERT INTO `wp_rg_form_view` VALUES("15828", "8", "2015-08-26 12:17:03", "188.165.15.235", "4");
INSERT INTO `wp_rg_form_view` VALUES("15829", "3", "2015-08-26 13:05:04", "61.90.62.39", "19");
INSERT INTO `wp_rg_form_view` VALUES("15830", "8", "2015-08-26 13:05:04", "61.90.62.39", "7");
INSERT INTO `wp_rg_form_view` VALUES("15831", "3", "2015-08-26 14:03:40", "188.165.15.235", "19");
INSERT INTO `wp_rg_form_view` VALUES("15832", "8", "2015-08-26 14:03:40", "188.165.15.235", "6");
INSERT INTO `wp_rg_form_view` VALUES("15833", "3", "2015-08-26 15:12:51", "66.249.79.64", "109");
INSERT INTO `wp_rg_form_view` VALUES("15834", "8", "2015-08-26 15:12:51", "66.249.79.64", "36");
INSERT INTO `wp_rg_form_view` VALUES("15835", "1", "2015-08-26 15:50:04", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("15836", "2", "2015-08-26 15:50:16", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("15837", "3", "2015-08-26 16:08:44", "184.66.128.166", "50");
INSERT INTO `wp_rg_form_view` VALUES("15838", "8", "2015-08-26 16:08:44", "184.66.128.166", "17");
INSERT INTO `wp_rg_form_view` VALUES("15839", "1", "2015-08-26 16:23:18", "110.89.13.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("15840", "3", "2015-08-26 17:02:41", "66.249.79.76", "17");
INSERT INTO `wp_rg_form_view` VALUES("15841", "8", "2015-08-26 17:02:41", "66.249.79.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("15842", "3", "2015-08-26 18:08:39", "66.249.79.70", "6");
INSERT INTO `wp_rg_form_view` VALUES("15843", "8", "2015-08-26 18:08:39", "66.249.79.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("15844", "3", "2015-08-26 19:03:43", "184.66.128.166", "116");
INSERT INTO `wp_rg_form_view` VALUES("15845", "8", "2015-08-26 19:03:44", "184.66.128.166", "15");
INSERT INTO `wp_rg_form_view` VALUES("15846", "3", "2015-08-26 20:25:06", "199.217.117.207", "7");
INSERT INTO `wp_rg_form_view` VALUES("15847", "8", "2015-08-26 20:25:06", "199.217.117.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("15848", "3", "2015-08-26 21:07:17", "66.249.79.70", "43");
INSERT INTO `wp_rg_form_view` VALUES("15849", "8", "2015-08-26 21:07:18", "66.249.79.70", "6");
INSERT INTO `wp_rg_form_view` VALUES("15850", "3", "2015-08-26 22:11:29", "68.180.229.161", "100");
INSERT INTO `wp_rg_form_view` VALUES("15851", "8", "2015-08-26 22:11:29", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("15852", "3", "2015-08-26 23:06:02", "66.249.79.70", "21");
INSERT INTO `wp_rg_form_view` VALUES("15853", "8", "2015-08-26 23:06:02", "66.249.79.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("15854", "3", "2015-08-27 00:00:59", "188.165.15.235", "35");
INSERT INTO `wp_rg_form_view` VALUES("15855", "8", "2015-08-27 00:00:59", "188.165.15.235", "6");
INSERT INTO `wp_rg_form_view` VALUES("15856", "3", "2015-08-27 01:55:25", "91.200.12.128", "24");
INSERT INTO `wp_rg_form_view` VALUES("15857", "8", "2015-08-27 01:55:26", "91.200.12.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("15858", "3", "2015-08-27 02:04:02", "188.165.15.235", "74");
INSERT INTO `wp_rg_form_view` VALUES("15859", "8", "2015-08-27 02:04:02", "188.165.15.235", "10");
INSERT INTO `wp_rg_form_view` VALUES("15860", "3", "2015-08-27 03:03:40", "86.123.242.222", "225");
INSERT INTO `wp_rg_form_view` VALUES("15861", "8", "2015-08-27 03:03:40", "86.123.242.222", "32");
INSERT INTO `wp_rg_form_view` VALUES("15862", "1", "2015-08-27 03:04:46", "86.123.242.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("15863", "2", "2015-08-27 03:04:53", "86.123.242.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("15864", "3", "2015-08-27 04:14:15", "151.80.31.154", "21");
INSERT INTO `wp_rg_form_view` VALUES("15865", "8", "2015-08-27 04:14:17", "151.80.31.154", "3");
INSERT INTO `wp_rg_form_view` VALUES("15866", "3", "2015-08-27 05:12:39", "91.200.12.128", "44");
INSERT INTO `wp_rg_form_view` VALUES("15867", "8", "2015-08-27 05:12:40", "91.200.12.128", "7");
INSERT INTO `wp_rg_form_view` VALUES("15868", "2", "2015-08-27 05:36:00", "151.80.31.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("15869", "3", "2015-08-27 06:06:19", "66.249.79.70", "50");
INSERT INTO `wp_rg_form_view` VALUES("15870", "8", "2015-08-27 06:06:19", "66.249.79.70", "7");
INSERT INTO `wp_rg_form_view` VALUES("15871", "1", "2015-08-27 06:44:25", "188.165.15.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("15872", "3", "2015-08-27 07:00:45", "151.80.31.154", "44");
INSERT INTO `wp_rg_form_view` VALUES("15873", "8", "2015-08-27 07:00:45", "151.80.31.154", "6");
INSERT INTO `wp_rg_form_view` VALUES("15874", "3", "2015-08-27 08:05:30", "66.249.79.70", "56");
INSERT INTO `wp_rg_form_view` VALUES("15875", "8", "2015-08-27 08:05:30", "66.249.79.70", "7");
INSERT INTO `wp_rg_form_view` VALUES("15876", "3", "2015-08-27 09:07:09", "144.76.185.173", "47");
INSERT INTO `wp_rg_form_view` VALUES("15877", "8", "2015-08-27 09:07:09", "144.76.185.173", "7");
INSERT INTO `wp_rg_form_view` VALUES("15878", "3", "2015-08-27 10:09:31", "188.165.15.235", "28");
INSERT INTO `wp_rg_form_view` VALUES("15879", "8", "2015-08-27 10:09:32", "188.165.15.235", "4");
INSERT INTO `wp_rg_form_view` VALUES("15880", "3", "2015-08-27 11:03:43", "207.46.13.145", "36");
INSERT INTO `wp_rg_form_view` VALUES("15881", "8", "2015-08-27 11:03:43", "207.46.13.145", "5");
INSERT INTO `wp_rg_form_view` VALUES("15882", "3", "2015-08-27 12:25:58", "202.46.48.88", "14");
INSERT INTO `wp_rg_form_view` VALUES("15883", "8", "2015-08-27 12:25:59", "202.46.48.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("15884", "3", "2015-08-27 13:23:24", "66.249.79.76", "15");
INSERT INTO `wp_rg_form_view` VALUES("15885", "8", "2015-08-27 13:23:24", "66.249.79.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("15886", "3", "2015-08-27 14:02:56", "66.249.79.64", "77");
INSERT INTO `wp_rg_form_view` VALUES("15887", "8", "2015-08-27 14:02:57", "66.249.79.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("15888", "1", "2015-08-27 14:37:06", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15889", "3", "2015-08-27 15:23:33", "180.180.101.237", "37");
INSERT INTO `wp_rg_form_view` VALUES("15890", "8", "2015-08-27 15:23:33", "180.180.101.237", "5");
INSERT INTO `wp_rg_form_view` VALUES("15891", "3", "2015-08-27 16:03:28", "202.46.55.147", "21");
INSERT INTO `wp_rg_form_view` VALUES("15892", "8", "2015-08-27 16:03:28", "202.46.55.147", "3");
INSERT INTO `wp_rg_form_view` VALUES("15893", "5", "2015-08-27 17:05:24", "188.165.15.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("15894", "3", "2015-08-27 17:05:27", "188.165.15.235", "43");
INSERT INTO `wp_rg_form_view` VALUES("15895", "8", "2015-08-27 17:05:28", "188.165.15.235", "6");
INSERT INTO `wp_rg_form_view` VALUES("15896", "3", "2015-08-27 18:19:33", "100.43.81.144", "25");
INSERT INTO `wp_rg_form_view` VALUES("15897", "8", "2015-08-27 18:19:35", "100.43.81.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("15898", "3", "2015-08-27 19:16:47", "66.249.79.155", "29");
INSERT INTO `wp_rg_form_view` VALUES("15899", "8", "2015-08-27 19:16:48", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("15900", "3", "2015-08-27 20:06:03", "95.234.25.2", "288");
INSERT INTO `wp_rg_form_view` VALUES("15901", "8", "2015-08-27 20:06:03", "95.234.25.2", "41");
INSERT INTO `wp_rg_form_view` VALUES("15902", "1", "2015-08-27 20:07:02", "95.234.25.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("15903", "2", "2015-08-27 20:07:12", "95.234.25.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("15904", "3", "2015-08-27 21:27:39", "148.251.54.44", "14");
INSERT INTO `wp_rg_form_view` VALUES("15905", "8", "2015-08-27 21:27:41", "148.251.54.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("15906", "3", "2015-08-27 22:05:18", "68.180.229.161", "36");
INSERT INTO `wp_rg_form_view` VALUES("15907", "8", "2015-08-27 22:05:19", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("15908", "3", "2015-08-27 23:06:59", "68.180.229.161", "30");
INSERT INTO `wp_rg_form_view` VALUES("15909", "8", "2015-08-27 23:06:59", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("15910", "3", "2015-08-28 00:17:16", "202.46.54.133", "32");
INSERT INTO `wp_rg_form_view` VALUES("15911", "8", "2015-08-28 00:17:16", "202.46.54.133", "4");
INSERT INTO `wp_rg_form_view` VALUES("15912", "3", "2015-08-28 01:07:48", "205.250.214.152", "21");
INSERT INTO `wp_rg_form_view` VALUES("15913", "8", "2015-08-28 01:07:49", "205.250.214.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("15914", "3", "2015-08-28 02:06:30", "202.46.56.134", "14");
INSERT INTO `wp_rg_form_view` VALUES("15915", "8", "2015-08-28 02:06:30", "202.46.56.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("15916", "3", "2015-08-28 03:04:10", "66.249.79.162", "38");
INSERT INTO `wp_rg_form_view` VALUES("15917", "8", "2015-08-28 03:04:10", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("15918", "7", "2015-08-28 03:28:27", "188.165.15.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("15919", "3", "2015-08-28 04:12:28", "157.55.39.158", "44");
INSERT INTO `wp_rg_form_view` VALUES("15920", "8", "2015-08-28 04:12:29", "157.55.39.158", "8");
INSERT INTO `wp_rg_form_view` VALUES("15921", "3", "2015-08-28 05:24:07", "188.165.15.235", "14");
INSERT INTO `wp_rg_form_view` VALUES("15922", "8", "2015-08-28 05:24:08", "188.165.15.235", "2");
INSERT INTO `wp_rg_form_view` VALUES("15923", "3", "2015-08-28 06:04:35", "188.165.15.235", "8");
INSERT INTO `wp_rg_form_view` VALUES("15924", "8", "2015-08-28 06:04:35", "188.165.15.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("15925", "3", "2015-08-28 07:37:21", "66.249.79.155", "53");
INSERT INTO `wp_rg_form_view` VALUES("15926", "8", "2015-08-28 07:37:23", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("15927", "1", "2015-08-28 07:59:00", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15928", "3", "2015-08-28 08:26:34", "66.249.79.169", "21");
INSERT INTO `wp_rg_form_view` VALUES("15929", "8", "2015-08-28 08:26:34", "66.249.79.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("15930", "3", "2015-08-28 09:12:57", "68.180.229.161", "38");
INSERT INTO `wp_rg_form_view` VALUES("15931", "8", "2015-08-28 09:12:57", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("15932", "3", "2015-08-28 10:02:00", "68.180.229.161", "42");
INSERT INTO `wp_rg_form_view` VALUES("15933", "8", "2015-08-28 10:02:00", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("15934", "3", "2015-08-28 12:12:08", "68.180.229.161", "53");
INSERT INTO `wp_rg_form_view` VALUES("15935", "8", "2015-08-28 12:12:09", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("15936", "3", "2015-08-28 13:00:23", "66.249.79.162", "28");
INSERT INTO `wp_rg_form_view` VALUES("15937", "8", "2015-08-28 13:00:23", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("15938", "5", "2015-08-28 14:15:41", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15939", "3", "2015-08-28 14:15:41", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("15940", "8", "2015-08-28 14:15:41", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("15941", "1", "2015-08-28 15:21:36", "108.180.242.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("15942", "3", "2015-08-28 15:21:38", "108.180.242.40", "42");
INSERT INTO `wp_rg_form_view` VALUES("15943", "8", "2015-08-28 15:21:38", "108.180.242.40", "7");
INSERT INTO `wp_rg_form_view` VALUES("15944", "3", "2015-08-28 16:07:22", "180.180.117.134", "59");
INSERT INTO `wp_rg_form_view` VALUES("15945", "8", "2015-08-28 16:07:25", "180.180.117.134", "8");
INSERT INTO `wp_rg_form_view` VALUES("15946", "3", "2015-08-28 18:20:02", "188.165.15.235", "63");
INSERT INTO `wp_rg_form_view` VALUES("15947", "8", "2015-08-28 18:20:04", "188.165.15.235", "9");
INSERT INTO `wp_rg_form_view` VALUES("15948", "3", "2015-08-28 19:42:08", "68.180.229.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("15949", "8", "2015-08-28 19:42:09", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("15950", "3", "2015-08-28 20:08:39", "157.55.39.50", "23");
INSERT INTO `wp_rg_form_view` VALUES("15951", "8", "2015-08-28 20:08:39", "157.55.39.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("15952", "3", "2015-08-28 21:09:17", "91.200.12.38", "31");
INSERT INTO `wp_rg_form_view` VALUES("15953", "8", "2015-08-28 21:09:18", "91.200.12.38", "5");
INSERT INTO `wp_rg_form_view` VALUES("15954", "3", "2015-08-28 22:03:58", "96.50.93.68", "28");
INSERT INTO `wp_rg_form_view` VALUES("15955", "8", "2015-08-28 22:03:58", "96.50.93.68", "4");
INSERT INTO `wp_rg_form_view` VALUES("15956", "3", "2015-08-28 23:05:34", "202.46.54.91", "68");
INSERT INTO `wp_rg_form_view` VALUES("15957", "8", "2015-08-28 23:05:34", "202.46.54.91", "9");
INSERT INTO `wp_rg_form_view` VALUES("15958", "1", "2015-08-28 23:09:02", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("15959", "3", "2015-08-29 00:00:20", "66.249.79.162", "45");
INSERT INTO `wp_rg_form_view` VALUES("15960", "8", "2015-08-29 00:00:20", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("15961", "3", "2015-08-29 01:13:25", "66.249.79.162", "29");
INSERT INTO `wp_rg_form_view` VALUES("15962", "8", "2015-08-29 01:13:25", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("15963", "3", "2015-08-29 02:15:36", "202.46.56.19", "28");
INSERT INTO `wp_rg_form_view` VALUES("15964", "8", "2015-08-29 02:15:37", "202.46.56.19", "4");
INSERT INTO `wp_rg_form_view` VALUES("15965", "3", "2015-08-29 03:11:33", "68.180.229.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("15966", "8", "2015-08-29 03:11:34", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("15967", "3", "2015-08-29 04:18:25", "151.80.31.153", "7");
INSERT INTO `wp_rg_form_view` VALUES("15968", "8", "2015-08-29 04:18:26", "151.80.31.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("15969", "3", "2015-08-29 05:10:00", "151.80.31.153", "7");
INSERT INTO `wp_rg_form_view` VALUES("15970", "8", "2015-08-29 05:10:00", "151.80.31.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("15971", "3", "2015-08-29 06:32:07", "157.55.39.88", "7");
INSERT INTO `wp_rg_form_view` VALUES("15972", "8", "2015-08-29 06:32:08", "157.55.39.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("15973", "3", "2015-08-29 07:41:46", "207.46.13.73", "7");
INSERT INTO `wp_rg_form_view` VALUES("15974", "8", "2015-08-29 07:41:48", "207.46.13.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("15975", "3", "2015-08-29 08:04:39", "188.165.15.235", "15");
INSERT INTO `wp_rg_form_view` VALUES("15976", "8", "2015-08-29 08:04:39", "188.165.15.235", "2");
INSERT INTO `wp_rg_form_view` VALUES("15977", "3", "2015-08-29 09:08:51", "188.165.15.235", "51");
INSERT INTO `wp_rg_form_view` VALUES("15978", "8", "2015-08-29 09:08:52", "188.165.15.235", "10");
INSERT INTO `wp_rg_form_view` VALUES("15979", "3", "2015-08-29 10:09:24", "157.55.39.88", "59");
INSERT INTO `wp_rg_form_view` VALUES("15980", "8", "2015-08-29 10:09:24", "157.55.39.88", "10");
INSERT INTO `wp_rg_form_view` VALUES("15981", "2", "2015-08-29 10:49:25", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("15982", "3", "2015-08-29 11:00:22", "68.180.229.161", "58");
INSERT INTO `wp_rg_form_view` VALUES("15983", "8", "2015-08-29 11:00:22", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("15984", "3", "2015-08-29 12:09:31", "199.21.99.202", "36");
INSERT INTO `wp_rg_form_view` VALUES("15985", "8", "2015-08-29 12:09:32", "199.21.99.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("15986", "6", "2015-08-29 13:04:01", "188.40.112.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("15987", "3", "2015-08-29 13:04:01", "188.40.112.210", "14");
INSERT INTO `wp_rg_form_view` VALUES("15988", "8", "2015-08-29 13:04:01", "188.40.112.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("15989", "3", "2015-08-29 14:17:46", "207.46.13.6", "18");
INSERT INTO `wp_rg_form_view` VALUES("15990", "8", "2015-08-29 14:17:46", "207.46.13.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("15991", "3", "2015-08-29 15:01:58", "91.200.12.38", "37");
INSERT INTO `wp_rg_form_view` VALUES("15992", "8", "2015-08-29 15:01:58", "91.200.12.38", "6");
INSERT INTO `wp_rg_form_view` VALUES("15993", "1", "2015-08-29 16:04:50", "107.189.36.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("15994", "3", "2015-08-29 16:04:51", "107.189.36.6", "126");
INSERT INTO `wp_rg_form_view` VALUES("15995", "8", "2015-08-29 16:04:51", "107.189.36.6", "17");
INSERT INTO `wp_rg_form_view` VALUES("15996", "3", "2015-08-29 17:10:10", "202.46.58.196", "7");
INSERT INTO `wp_rg_form_view` VALUES("15997", "8", "2015-08-29 17:10:10", "202.46.58.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("15998", "3", "2015-08-29 18:02:03", "180.180.98.15", "43");
INSERT INTO `wp_rg_form_view` VALUES("15999", "8", "2015-08-29 18:02:04", "180.180.98.15", "6");
INSERT INTO `wp_rg_form_view` VALUES("16000", "1", "2015-08-29 18:22:31", "154.20.68.46", "3");
INSERT INTO `wp_rg_form_view` VALUES("16001", "3", "2015-08-29 19:21:31", "66.249.79.155", "14");
INSERT INTO `wp_rg_form_view` VALUES("16002", "8", "2015-08-29 19:21:32", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16003", "3", "2015-08-29 20:18:24", "91.200.12.38", "44");
INSERT INTO `wp_rg_form_view` VALUES("16004", "8", "2015-08-29 20:18:24", "91.200.12.38", "7");
INSERT INTO `wp_rg_form_view` VALUES("16005", "3", "2015-08-29 21:12:01", "91.200.12.128", "31");
INSERT INTO `wp_rg_form_view` VALUES("16006", "8", "2015-08-29 21:12:02", "91.200.12.128", "5");
INSERT INTO `wp_rg_form_view` VALUES("16007", "3", "2015-08-29 22:25:03", "199.217.117.207", "164");
INSERT INTO `wp_rg_form_view` VALUES("16008", "8", "2015-08-29 22:25:04", "199.217.117.207", "24");
INSERT INTO `wp_rg_form_view` VALUES("16009", "1", "2015-08-29 22:31:27", "104.131.190.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("16010", "2", "2015-08-29 22:31:28", "104.131.190.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("16011", "3", "2015-08-29 23:24:38", "66.249.79.162", "14");
INSERT INTO `wp_rg_form_view` VALUES("16012", "8", "2015-08-29 23:24:38", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16013", "3", "2015-08-30 00:04:52", "180.180.75.116", "126");
INSERT INTO `wp_rg_form_view` VALUES("16014", "8", "2015-08-30 00:04:53", "180.180.75.116", "17");
INSERT INTO `wp_rg_form_view` VALUES("16015", "2", "2015-08-30 00:12:34", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("16016", "3", "2015-08-30 01:42:46", "202.46.51.174", "23");
INSERT INTO `wp_rg_form_view` VALUES("16017", "8", "2015-08-30 01:42:47", "202.46.51.174", "4");
INSERT INTO `wp_rg_form_view` VALUES("16018", "3", "2015-08-30 02:38:22", "199.21.99.202", "28");
INSERT INTO `wp_rg_form_view` VALUES("16019", "8", "2015-08-30 02:38:22", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("16020", "3", "2015-08-30 03:08:45", "91.200.12.38", "53");
INSERT INTO `wp_rg_form_view` VALUES("16021", "8", "2015-08-30 03:08:46", "91.200.12.38", "8");
INSERT INTO `wp_rg_form_view` VALUES("16022", "3", "2015-08-30 04:14:49", "202.46.58.18", "453");
INSERT INTO `wp_rg_form_view` VALUES("16023", "8", "2015-08-30 04:14:50", "202.46.58.18", "66");
INSERT INTO `wp_rg_form_view` VALUES("16024", "2", "2015-08-30 04:44:49", "54.158.130.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16025", "1", "2015-08-30 04:44:51", "54.158.130.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16026", "3", "2015-08-30 05:04:13", "202.46.48.81", "29");
INSERT INTO `wp_rg_form_view` VALUES("16027", "8", "2015-08-30 05:04:14", "202.46.48.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("16028", "1", "2015-08-30 05:45:30", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("16029", "3", "2015-08-30 06:25:00", "24.108.136.28", "35");
INSERT INTO `wp_rg_form_view` VALUES("16030", "8", "2015-08-30 06:25:01", "24.108.136.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("16031", "3", "2015-08-30 07:21:18", "91.200.12.127", "21");
INSERT INTO `wp_rg_form_view` VALUES("16032", "8", "2015-08-30 07:21:19", "91.200.12.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("16033", "3", "2015-08-30 08:26:21", "207.46.13.0", "37");
INSERT INTO `wp_rg_form_view` VALUES("16034", "8", "2015-08-30 08:26:22", "207.46.13.0", "6");
INSERT INTO `wp_rg_form_view` VALUES("16035", "3", "2015-08-30 09:27:19", "68.180.229.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("16036", "8", "2015-08-30 09:27:19", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16037", "1", "2015-08-30 09:53:45", "107.182.116.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("16038", "3", "2015-08-30 11:36:47", "54.159.168.239", "447");
INSERT INTO `wp_rg_form_view` VALUES("16039", "8", "2015-08-30 11:36:48", "54.159.168.239", "65");
INSERT INTO `wp_rg_form_view` VALUES("16040", "2", "2015-08-30 11:37:01", "54.159.168.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("16041", "1", "2015-08-30 11:37:02", "54.159.168.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("16042", "3", "2015-08-30 12:04:44", "202.46.51.106", "14");
INSERT INTO `wp_rg_form_view` VALUES("16043", "8", "2015-08-30 12:04:44", "202.46.51.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("16044", "1", "2015-08-30 13:09:53", "108.180.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("16045", "3", "2015-08-30 13:09:55", "108.180.242.40", "30");
INSERT INTO `wp_rg_form_view` VALUES("16046", "8", "2015-08-30 13:09:55", "108.180.242.40", "5");
INSERT INTO `wp_rg_form_view` VALUES("16047", "3", "2015-08-30 14:07:34", "100.43.81.131", "9");
INSERT INTO `wp_rg_form_view` VALUES("16048", "8", "2015-08-30 14:07:35", "100.43.81.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("16049", "3", "2015-08-30 15:25:12", "24.108.136.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("16050", "8", "2015-08-30 15:25:12", "24.108.136.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("16051", "3", "2015-08-30 16:16:56", "202.46.57.74", "21");
INSERT INTO `wp_rg_form_view` VALUES("16052", "8", "2015-08-30 16:16:56", "202.46.57.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("16053", "3", "2015-08-30 17:06:26", "68.180.229.161", "141");
INSERT INTO `wp_rg_form_view` VALUES("16054", "8", "2015-08-30 17:06:26", "68.180.229.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("16055", "3", "2015-08-30 18:13:46", "45.55.229.101", "161");
INSERT INTO `wp_rg_form_view` VALUES("16056", "3", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("16057", "3", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("16058", "3", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("16059", "2", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("16060", "1", "2015-08-30 18:13:46", "45.55.229.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("16061", "8", "2015-08-30 18:13:46", "45.55.229.101", "24");
INSERT INTO `wp_rg_form_view` VALUES("16062", "3", "2015-08-30 19:37:12", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("16063", "8", "2015-08-30 19:37:13", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16064", "1", "2015-08-30 20:05:14", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("16065", "3", "2015-08-30 20:05:14", "107.150.42.226", "53");
INSERT INTO `wp_rg_form_view` VALUES("16066", "8", "2015-08-30 20:05:15", "107.150.42.226", "8");
INSERT INTO `wp_rg_form_view` VALUES("16067", "3", "2015-08-30 21:22:36", "207.46.13.57", "28");
INSERT INTO `wp_rg_form_view` VALUES("16068", "8", "2015-08-30 21:22:37", "207.46.13.57", "4");
INSERT INTO `wp_rg_form_view` VALUES("16069", "3", "2015-08-30 22:01:40", "216.232.145.51", "84");
INSERT INTO `wp_rg_form_view` VALUES("16070", "8", "2015-08-30 22:01:41", "216.232.145.51", "12");
INSERT INTO `wp_rg_form_view` VALUES("16071", "3", "2015-08-30 23:01:08", "66.249.79.162", "44");
INSERT INTO `wp_rg_form_view` VALUES("16072", "8", "2015-08-30 23:01:08", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("16073", "1", "2015-08-31 00:26:21", "110.89.13.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("16074", "3", "2015-08-31 00:26:22", "110.89.13.81", "86");
INSERT INTO `wp_rg_form_view` VALUES("16075", "8", "2015-08-31 00:26:22", "110.89.13.81", "13");
INSERT INTO `wp_rg_form_view` VALUES("16076", "3", "2015-08-31 01:00:15", "24.68.48.224", "63");
INSERT INTO `wp_rg_form_view` VALUES("16077", "8", "2015-08-31 01:00:15", "24.68.48.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("16078", "3", "2015-08-31 03:20:28", "202.46.57.89", "7");
INSERT INTO `wp_rg_form_view` VALUES("16079", "8", "2015-08-31 03:20:29", "202.46.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("16080", "3", "2015-08-31 04:16:51", "202.46.49.117", "14");
INSERT INTO `wp_rg_form_view` VALUES("16081", "8", "2015-08-31 04:16:51", "202.46.49.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("16082", "3", "2015-08-31 05:00:35", "88.249.204.217", "226");
INSERT INTO `wp_rg_form_view` VALUES("16083", "8", "2015-08-31 05:00:35", "88.249.204.217", "32");
INSERT INTO `wp_rg_form_view` VALUES("16084", "1", "2015-08-31 05:01:34", "88.249.204.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("16085", "2", "2015-08-31 05:01:47", "88.249.204.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("16086", "3", "2015-08-31 06:41:44", "24.114.36.116", "37");
INSERT INTO `wp_rg_form_view` VALUES("16087", "8", "2015-08-31 06:41:49", "24.114.36.116", "6");
INSERT INTO `wp_rg_form_view` VALUES("16088", "3", "2015-08-31 07:08:39", "202.46.48.89", "7");
INSERT INTO `wp_rg_form_view` VALUES("16089", "8", "2015-08-31 07:08:41", "202.46.48.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("16090", "6", "2015-08-31 08:30:49", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16091", "3", "2015-08-31 08:30:51", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("16092", "8", "2015-08-31 08:30:51", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16093", "3", "2015-08-31 09:45:34", "157.55.39.116", "14");
INSERT INTO `wp_rg_form_view` VALUES("16094", "8", "2015-08-31 09:45:36", "157.55.39.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("16095", "3", "2015-08-31 10:11:52", "66.249.79.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("16096", "8", "2015-08-31 10:11:53", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("16097", "3", "2015-08-31 11:02:55", "202.46.48.199", "21");
INSERT INTO `wp_rg_form_view` VALUES("16098", "8", "2015-08-31 11:02:55", "202.46.48.199", "3");
INSERT INTO `wp_rg_form_view` VALUES("16099", "3", "2015-08-31 12:00:22", "66.43.51.8", "35");
INSERT INTO `wp_rg_form_view` VALUES("16100", "8", "2015-08-31 12:00:22", "66.43.51.8", "5");
INSERT INTO `wp_rg_form_view` VALUES("16101", "3", "2015-08-31 13:02:21", "157.55.39.214", "28");
INSERT INTO `wp_rg_form_view` VALUES("16102", "8", "2015-08-31 13:02:21", "157.55.39.214", "4");
INSERT INTO `wp_rg_form_view` VALUES("16103", "3", "2015-08-31 14:47:04", "207.46.13.85", "7");
INSERT INTO `wp_rg_form_view` VALUES("16104", "8", "2015-08-31 14:47:05", "207.46.13.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("16105", "3", "2015-08-31 15:46:13", "91.200.12.128", "16");
INSERT INTO `wp_rg_form_view` VALUES("16106", "8", "2015-08-31 15:46:14", "91.200.12.128", "3");
INSERT INTO `wp_rg_form_view` VALUES("16107", "3", "2015-08-31 16:30:32", "207.194.133.9", "70");
INSERT INTO `wp_rg_form_view` VALUES("16108", "8", "2015-08-31 16:30:33", "207.194.133.9", "9");
INSERT INTO `wp_rg_form_view` VALUES("16109", "3", "2015-08-31 17:31:31", "142.104.240.37", "233");
INSERT INTO `wp_rg_form_view` VALUES("16110", "8", "2015-08-31 17:31:32", "142.104.240.37", "33");
INSERT INTO `wp_rg_form_view` VALUES("16111", "1", "2015-08-31 17:37:08", "93.0.218.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("16112", "2", "2015-08-31 17:37:21", "93.0.218.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("16113", "3", "2015-08-31 19:32:07", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("16114", "8", "2015-08-31 19:32:11", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16115", "3", "2015-08-31 20:18:47", "24.108.146.93", "239");
INSERT INTO `wp_rg_form_view` VALUES("16116", "8", "2015-08-31 20:18:48", "24.108.146.93", "34");
INSERT INTO `wp_rg_form_view` VALUES("16117", "1", "2015-08-31 20:21:20", "199.255.138.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("16118", "2", "2015-08-31 20:21:26", "199.255.138.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("16119", "3", "2015-08-31 22:17:47", "184.66.10.63", "28");
INSERT INTO `wp_rg_form_view` VALUES("16120", "8", "2015-08-31 22:17:48", "184.66.10.63", "4");
INSERT INTO `wp_rg_form_view` VALUES("16121", "3", "2015-08-31 23:15:30", "70.66.7.27", "28");
INSERT INTO `wp_rg_form_view` VALUES("16122", "8", "2015-08-31 23:15:30", "70.66.7.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("16123", "3", "2015-09-01 00:06:33", "202.46.49.78", "21");
INSERT INTO `wp_rg_form_view` VALUES("16124", "8", "2015-09-01 00:06:33", "202.46.49.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("16125", "1", "2015-09-01 00:53:41", "110.89.23.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("16126", "3", "2015-09-01 01:51:40", "24.68.137.187", "7");
INSERT INTO `wp_rg_form_view` VALUES("16127", "8", "2015-09-01 01:51:41", "24.68.137.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("16128", "3", "2015-09-01 02:19:14", "66.249.79.155", "84");
INSERT INTO `wp_rg_form_view` VALUES("16129", "8", "2015-09-01 02:19:15", "66.249.79.155", "11");
INSERT INTO `wp_rg_form_view` VALUES("16130", "3", "2015-09-01 03:00:01", "66.249.79.155", "64");
INSERT INTO `wp_rg_form_view` VALUES("16131", "8", "2015-09-01 03:00:02", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("16132", "3", "2015-09-01 04:02:18", "96.44.187.172", "35");
INSERT INTO `wp_rg_form_view` VALUES("16133", "8", "2015-09-01 04:02:18", "96.44.187.172", "5");
INSERT INTO `wp_rg_form_view` VALUES("16134", "3", "2015-09-01 07:52:12", "86.106.18.11", "16");
INSERT INTO `wp_rg_form_view` VALUES("16135", "8", "2015-09-01 07:52:13", "86.106.18.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("16136", "3", "2015-09-01 08:09:18", "157.55.39.181", "69");
INSERT INTO `wp_rg_form_view` VALUES("16137", "8", "2015-09-01 08:09:18", "157.55.39.181", "10");
INSERT INTO `wp_rg_form_view` VALUES("16138", "6", "2015-09-01 09:49:53", "5.9.145.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("16139", "3", "2015-09-01 09:49:53", "5.9.145.132", "14");
INSERT INTO `wp_rg_form_view` VALUES("16140", "8", "2015-09-01 09:49:54", "5.9.145.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("16141", "3", "2015-09-01 11:59:17", "111.90.148.166", "84");
INSERT INTO `wp_rg_form_view` VALUES("16142", "8", "2015-09-01 11:59:18", "111.90.148.166", "12");
INSERT INTO `wp_rg_form_view` VALUES("16143", "3", "2015-09-01 12:00:00", "111.90.148.166", "169");
INSERT INTO `wp_rg_form_view` VALUES("16144", "8", "2015-09-01 12:00:00", "111.90.148.166", "24");
INSERT INTO `wp_rg_form_view` VALUES("16145", "1", "2015-09-01 12:00:11", "111.90.148.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("16146", "2", "2015-09-01 12:00:18", "111.90.148.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("16147", "8", "2015-09-01 13:13:37", "157.55.39.211", "7");
INSERT INTO `wp_rg_form_view` VALUES("16148", "3", "2015-09-01 13:13:38", "157.55.39.211", "42");
INSERT INTO `wp_rg_form_view` VALUES("16149", "3", "2015-09-01 14:16:53", "220.181.108.111", "31");
INSERT INTO `wp_rg_form_view` VALUES("16150", "8", "2015-09-01 14:16:54", "220.181.108.111", "4");
INSERT INTO `wp_rg_form_view` VALUES("16151", "3", "2015-09-01 15:45:45", "91.200.12.128", "8");
INSERT INTO `wp_rg_form_view` VALUES("16152", "8", "2015-09-01 15:45:55", "91.200.12.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("16153", "3", "2015-09-01 16:22:59", "69.84.207.246", "124");
INSERT INTO `wp_rg_form_view` VALUES("16154", "8", "2015-09-01 16:22:59", "69.84.207.246", "17");
INSERT INTO `wp_rg_form_view` VALUES("16155", "3", "2015-09-01 17:10:05", "66.249.79.162", "263");
INSERT INTO `wp_rg_form_view` VALUES("16156", "8", "2015-09-01 17:10:05", "66.249.79.162", "37");
INSERT INTO `wp_rg_form_view` VALUES("16157", "1", "2015-09-01 17:30:57", "86.123.247.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("16158", "2", "2015-09-01 17:31:04", "86.123.247.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("16159", "3", "2015-09-01 18:26:09", "74.121.32.162", "28");
INSERT INTO `wp_rg_form_view` VALUES("16160", "8", "2015-09-01 18:26:10", "74.121.32.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("16161", "3", "2015-09-01 19:31:36", "91.200.12.128", "39");
INSERT INTO `wp_rg_form_view` VALUES("16162", "8", "2015-09-01 19:31:40", "91.200.12.128", "7");
INSERT INTO `wp_rg_form_view` VALUES("16163", "3", "2015-09-01 20:08:33", "68.180.229.161", "28");
INSERT INTO `wp_rg_form_view` VALUES("16164", "8", "2015-09-01 20:08:33", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("16165", "3", "2015-09-01 21:36:59", "77.75.76.160", "7");
INSERT INTO `wp_rg_form_view` VALUES("16166", "8", "2015-09-01 21:37:00", "77.75.76.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("16167", "1", "2015-09-01 22:01:21", "52.1.142.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("16168", "3", "2015-09-01 22:01:23", "52.1.142.38", "29");
INSERT INTO `wp_rg_form_view` VALUES("16169", "8", "2015-09-01 22:01:23", "52.1.142.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("16170", "3", "2015-09-01 23:11:17", "199.21.99.202", "23");
INSERT INTO `wp_rg_form_view` VALUES("16171", "8", "2015-09-01 23:11:17", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("16172", "1", "2015-09-02 00:19:59", "27.19.180.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("16173", "3", "2015-09-02 00:19:59", "27.19.180.56", "35");
INSERT INTO `wp_rg_form_view` VALUES("16174", "8", "2015-09-02 00:20:00", "27.19.180.56", "5");
INSERT INTO `wp_rg_form_view` VALUES("16175", "3", "2015-09-02 01:27:46", "66.249.79.155", "30");
INSERT INTO `wp_rg_form_view` VALUES("16176", "8", "2015-09-02 01:27:47", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16177", "3", "2015-09-02 02:13:53", "24.68.145.68", "28");
INSERT INTO `wp_rg_form_view` VALUES("16178", "8", "2015-09-02 02:13:53", "24.68.145.68", "4");
INSERT INTO `wp_rg_form_view` VALUES("16179", "3", "2015-09-02 03:52:01", "66.249.79.155", "7");
INSERT INTO `wp_rg_form_view` VALUES("16180", "8", "2015-09-02 03:52:02", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16181", "3", "2015-09-02 04:25:49", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("16182", "8", "2015-09-02 04:25:49", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16183", "3", "2015-09-02 05:34:27", "199.21.99.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("16184", "8", "2015-09-02 05:34:27", "199.21.99.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("16185", "8", "2015-09-02 06:21:36", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16186", "3", "2015-09-02 06:21:37", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("16187", "3", "2015-09-02 07:13:13", "100.43.81.144", "7");
INSERT INTO `wp_rg_form_view` VALUES("16188", "8", "2015-09-02 07:13:13", "100.43.81.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("16189", "3", "2015-09-02 09:39:26", "68.180.229.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("16190", "8", "2015-09-02 09:39:28", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16191", "3", "2015-09-02 10:20:39", "66.249.79.162", "36");
INSERT INTO `wp_rg_form_view` VALUES("16192", "8", "2015-09-02 10:20:40", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("16193", "3", "2015-09-02 11:54:42", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("16194", "8", "2015-09-02 11:54:44", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16195", "3", "2015-09-02 13:13:59", "217.69.133.69", "15");
INSERT INTO `wp_rg_form_view` VALUES("16196", "8", "2015-09-02 13:14:01", "217.69.133.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("16197", "6", "2015-09-02 13:14:02", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("16198", "3", "2015-09-02 14:46:01", "217.69.133.233", "7");
INSERT INTO `wp_rg_form_view` VALUES("16199", "8", "2015-09-02 14:46:01", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("16200", "3", "2015-09-02 15:51:56", "66.249.84.212", "14");
INSERT INTO `wp_rg_form_view` VALUES("16201", "8", "2015-09-02 15:51:58", "66.249.84.212", "2");
INSERT INTO `wp_rg_form_view` VALUES("16202", "3", "2015-09-02 17:01:26", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("16203", "8", "2015-09-02 17:01:27", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16204", "3", "2015-09-02 18:16:43", "115.88.119.132", "14");
INSERT INTO `wp_rg_form_view` VALUES("16205", "8", "2015-09-02 18:16:44", "115.88.119.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("16206", "3", "2015-09-02 19:29:23", "217.69.133.229", "7");
INSERT INTO `wp_rg_form_view` VALUES("16207", "8", "2015-09-02 19:29:25", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("16208", "3", "2015-09-02 20:51:09", "148.251.54.44", "7");
INSERT INTO `wp_rg_form_view` VALUES("16209", "8", "2015-09-02 20:51:10", "148.251.54.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("16210", "3", "2015-09-02 22:00:19", "66.249.79.162", "45");
INSERT INTO `wp_rg_form_view` VALUES("16211", "8", "2015-09-02 22:00:20", "66.249.79.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("16212", "3", "2015-09-02 23:01:38", "66.249.79.155", "33");
INSERT INTO `wp_rg_form_view` VALUES("16213", "8", "2015-09-02 23:01:39", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16214", "3", "2015-09-03 00:05:46", "68.180.229.161", "22");
INSERT INTO `wp_rg_form_view` VALUES("16215", "8", "2015-09-03 00:05:47", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16216", "3", "2015-09-03 01:40:39", "199.21.99.202", "29");
INSERT INTO `wp_rg_form_view` VALUES("16217", "8", "2015-09-03 01:40:40", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("16218", "6", "2015-09-03 01:46:40", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("16219", "3", "2015-09-03 02:00:07", "66.249.79.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("16220", "8", "2015-09-03 02:00:07", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16221", "3", "2015-09-03 03:21:57", "217.69.133.232", "9");
INSERT INTO `wp_rg_form_view` VALUES("16222", "8", "2015-09-03 03:21:59", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("16223", "2", "2015-09-03 04:12:46", "27.19.180.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("16224", "3", "2015-09-03 04:12:46", "27.19.180.56", "72");
INSERT INTO `wp_rg_form_view` VALUES("16225", "8", "2015-09-03 04:12:46", "27.19.180.56", "10");
INSERT INTO `wp_rg_form_view` VALUES("16226", "3", "2015-09-03 05:12:58", "136.243.17.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("16227", "8", "2015-09-03 05:12:58", "136.243.17.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16228", "3", "2015-09-03 06:00:32", "199.21.99.195", "22");
INSERT INTO `wp_rg_form_view` VALUES("16229", "6", "2015-09-03 06:01:47", "144.76.185.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("16230", "8", "2015-09-03 06:01:47", "144.76.185.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("16231", "3", "2015-09-03 07:41:49", "66.249.67.70", "7");
INSERT INTO `wp_rg_form_view` VALUES("16232", "8", "2015-09-03 07:41:50", "66.249.67.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("16233", "3", "2015-09-03 09:13:29", "68.180.229.161", "46");
INSERT INTO `wp_rg_form_view` VALUES("16234", "8", "2015-09-03 09:13:31", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("16235", "3", "2015-09-03 10:27:05", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("16236", "8", "2015-09-03 10:27:07", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16237", "3", "2015-09-03 11:22:25", "217.69.133.229", "7");
INSERT INTO `wp_rg_form_view` VALUES("16238", "8", "2015-09-03 11:22:25", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("16239", "3", "2015-09-03 12:48:23", "54.144.40.165", "70");
INSERT INTO `wp_rg_form_view` VALUES("16240", "8", "2015-09-03 12:48:24", "54.144.40.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("16241", "1", "2015-09-03 12:48:38", "54.144.40.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("16242", "2", "2015-09-03 12:48:51", "54.144.40.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("16243", "3", "2015-09-03 13:10:10", "66.249.79.162", "14");
INSERT INTO `wp_rg_form_view` VALUES("16244", "8", "2015-09-03 13:10:11", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16245", "3", "2015-09-03 14:26:37", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("16246", "8", "2015-09-03 14:26:37", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16247", "3", "2015-09-03 15:58:17", "96.53.58.182", "14");
INSERT INTO `wp_rg_form_view` VALUES("16248", "8", "2015-09-03 15:58:18", "96.53.58.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("16249", "3", "2015-09-03 16:01:45", "96.53.58.182", "50");
INSERT INTO `wp_rg_form_view` VALUES("16250", "8", "2015-09-03 16:01:46", "96.53.58.182", "7");
INSERT INTO `wp_rg_form_view` VALUES("16251", "3", "2015-09-03 17:02:08", "27.19.180.56", "46");
INSERT INTO `wp_rg_form_view` VALUES("16252", "8", "2015-09-03 17:02:09", "27.19.180.56", "7");
INSERT INTO `wp_rg_form_view` VALUES("16253", "3", "2015-09-03 18:11:28", "142.36.94.206", "14");
INSERT INTO `wp_rg_form_view` VALUES("16254", "8", "2015-09-03 18:11:29", "142.36.94.206", "3");
INSERT INTO `wp_rg_form_view` VALUES("16255", "3", "2015-09-03 19:10:40", "38.117.92.58", "28");
INSERT INTO `wp_rg_form_view` VALUES("16256", "8", "2015-09-03 19:10:41", "38.117.92.58", "4");
INSERT INTO `wp_rg_form_view` VALUES("16257", "3", "2015-09-03 20:14:37", "70.67.175.149", "17");
INSERT INTO `wp_rg_form_view` VALUES("16258", "8", "2015-09-03 20:14:38", "70.67.175.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("16259", "3", "2015-09-03 21:42:57", "204.174.57.10", "5");
INSERT INTO `wp_rg_form_view` VALUES("16260", "8", "2015-09-03 21:42:58", "204.174.57.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("16261", "2", "2015-09-03 22:23:46", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16262", "1", "2015-09-03 22:23:46", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16263", "3", "2015-09-03 22:23:47", "46.4.153.242", "262");
INSERT INTO `wp_rg_form_view` VALUES("16264", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16265", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16266", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16267", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16268", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16269", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16270", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16271", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16272", "3", "2015-09-03 22:23:47", "46.4.153.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16273", "8", "2015-09-03 22:23:47", "46.4.153.242", "54");
INSERT INTO `wp_rg_form_view` VALUES("16274", "3", "2015-09-03 23:44:38", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("16275", "8", "2015-09-03 23:44:39", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16276", "3", "2015-09-04 00:15:19", "207.46.13.85", "28");
INSERT INTO `wp_rg_form_view` VALUES("16277", "8", "2015-09-04 00:15:19", "207.46.13.85", "3");
INSERT INTO `wp_rg_form_view` VALUES("16278", "3", "2015-09-04 01:32:19", "217.69.133.228", "29");
INSERT INTO `wp_rg_form_view` VALUES("16279", "8", "2015-09-04 01:32:20", "217.69.133.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("16280", "3", "2015-09-04 03:39:24", "207.46.13.133", "9");
INSERT INTO `wp_rg_form_view` VALUES("16281", "8", "2015-09-04 03:39:25", "207.46.13.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("16282", "7", "2015-09-04 04:42:00", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("16283", "3", "2015-09-04 04:42:01", "217.69.133.227", "18");
INSERT INTO `wp_rg_form_view` VALUES("16284", "8", "2015-09-04 04:42:02", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("16285", "3", "2015-09-04 06:00:57", "157.55.39.242", "19");
INSERT INTO `wp_rg_form_view` VALUES("16286", "8", "2015-09-04 06:00:58", "157.55.39.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("16287", "3", "2015-09-04 07:37:55", "125.248.165.21", "64");
INSERT INTO `wp_rg_form_view` VALUES("16288", "8", "2015-09-04 07:37:56", "125.248.165.21", "7");
INSERT INTO `wp_rg_form_view` VALUES("16289", "3", "2015-09-04 08:40:41", "157.55.39.242", "9");
INSERT INTO `wp_rg_form_view` VALUES("16290", "8", "2015-09-04 08:40:42", "157.55.39.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16291", "3", "2015-09-04 09:02:27", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16292", "3", "2015-09-04 10:00:24", "66.249.79.155", "108");
INSERT INTO `wp_rg_form_view` VALUES("16293", "8", "2015-09-04 10:00:25", "66.249.79.155", "11");
INSERT INTO `wp_rg_form_view` VALUES("16294", "3", "2015-09-04 11:30:21", "68.180.229.161", "109");
INSERT INTO `wp_rg_form_view` VALUES("16295", "8", "2015-09-04 11:30:22", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("16296", "3", "2015-09-04 12:54:38", "91.200.12.128", "20");
INSERT INTO `wp_rg_form_view` VALUES("16297", "8", "2015-09-04 12:54:39", "91.200.12.128", "3");
INSERT INTO `wp_rg_form_view` VALUES("16298", "3", "2015-09-04 13:01:17", "157.55.39.242", "18");
INSERT INTO `wp_rg_form_view` VALUES("16299", "8", "2015-09-04 13:01:17", "157.55.39.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("16300", "3", "2015-09-04 14:08:16", "217.69.133.227", "19");
INSERT INTO `wp_rg_form_view` VALUES("16301", "8", "2015-09-04 14:08:16", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("16302", "3", "2015-09-04 15:19:01", "211.233.89.214", "38");
INSERT INTO `wp_rg_form_view` VALUES("16303", "8", "2015-09-04 15:19:02", "211.233.89.214", "4");
INSERT INTO `wp_rg_form_view` VALUES("16304", "3", "2015-09-04 16:24:26", "188.165.15.90", "121");
INSERT INTO `wp_rg_form_view` VALUES("16305", "8", "2015-09-04 16:24:36", "188.165.15.90", "13");
INSERT INTO `wp_rg_form_view` VALUES("16306", "3", "2015-09-04 17:10:14", "157.55.39.242", "9");
INSERT INTO `wp_rg_form_view` VALUES("16307", "8", "2015-09-04 17:10:15", "157.55.39.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("16308", "3", "2015-09-04 18:00:58", "184.71.12.214", "189");
INSERT INTO `wp_rg_form_view` VALUES("16309", "8", "2015-09-04 18:00:59", "184.71.12.214", "21");
INSERT INTO `wp_rg_form_view` VALUES("16310", "1", "2015-09-04 18:10:29", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("16311", "3", "2015-09-04 19:02:04", "66.249.79.155", "19");
INSERT INTO `wp_rg_form_view` VALUES("16312", "8", "2015-09-04 19:02:05", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16313", "3", "2015-09-04 20:12:49", "66.249.79.169", "88");
INSERT INTO `wp_rg_form_view` VALUES("16314", "8", "2015-09-04 20:12:52", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("16315", "3", "2015-09-04 21:14:56", "66.249.79.169", "139");
INSERT INTO `wp_rg_form_view` VALUES("16316", "8", "2015-09-04 21:14:58", "66.249.79.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("16317", "3", "2015-09-04 22:02:36", "184.65.36.68", "148");
INSERT INTO `wp_rg_form_view` VALUES("16318", "8", "2015-09-04 22:02:37", "184.65.36.68", "15");
INSERT INTO `wp_rg_form_view` VALUES("16319", "3", "2015-09-04 23:39:55", "188.165.15.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("16320", "8", "2015-09-04 23:39:56", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16321", "3", "2015-09-05 00:39:36", "188.165.15.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("16322", "8", "2015-09-05 00:39:37", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16323", "3", "2015-09-05 01:21:31", "220.181.108.86", "18");
INSERT INTO `wp_rg_form_view` VALUES("16324", "8", "2015-09-05 01:21:32", "220.181.108.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("16325", "3", "2015-09-05 02:03:20", "180.180.113.46", "73");
INSERT INTO `wp_rg_form_view` VALUES("16326", "8", "2015-09-05 02:03:20", "180.180.113.46", "8");
INSERT INTO `wp_rg_form_view` VALUES("16327", "3", "2015-09-05 03:41:55", "66.249.79.155", "47");
INSERT INTO `wp_rg_form_view` VALUES("16328", "8", "2015-09-05 03:41:56", "66.249.79.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("16329", "3", "2015-09-05 04:03:56", "66.249.79.155", "18");
INSERT INTO `wp_rg_form_view` VALUES("16330", "8", "2015-09-05 04:03:56", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16331", "1", "2015-09-05 04:30:14", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16332", "3", "2015-09-05 05:32:41", "66.249.79.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("16333", "8", "2015-09-05 05:32:42", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16334", "3", "2015-09-05 06:21:30", "108.180.30.193", "66");
INSERT INTO `wp_rg_form_view` VALUES("16335", "8", "2015-09-05 06:21:31", "108.180.30.193", "8");
INSERT INTO `wp_rg_form_view` VALUES("16336", "3", "2015-09-05 09:13:46", "66.249.79.155", "18");
INSERT INTO `wp_rg_form_view` VALUES("16337", "8", "2015-09-05 09:13:48", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16338", "3", "2015-09-05 10:06:08", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("16339", "8", "2015-09-05 10:14:18", "5.254.98.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("16340", "3", "2015-09-05 11:00:30", "68.180.229.161", "27");
INSERT INTO `wp_rg_form_view` VALUES("16341", "8", "2015-09-05 11:00:30", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16342", "3", "2015-09-05 12:41:18", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("16343", "8", "2015-09-05 12:41:19", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16344", "3", "2015-09-05 13:53:22", "188.165.15.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("16345", "8", "2015-09-05 13:53:22", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16346", "3", "2015-09-05 15:10:36", "188.165.15.90", "28");
INSERT INTO `wp_rg_form_view` VALUES("16347", "8", "2015-09-05 15:10:37", "188.165.15.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("16348", "3", "2015-09-05 16:42:17", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("16349", "8", "2015-09-05 16:42:17", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16350", "3", "2015-09-05 17:13:40", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("16351", "8", "2015-09-05 17:13:41", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16352", "3", "2015-09-05 18:34:42", "68.180.229.161", "19");
INSERT INTO `wp_rg_form_view` VALUES("16353", "8", "2015-09-05 18:34:43", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16354", "3", "2015-09-05 19:07:04", "157.55.39.242", "55");
INSERT INTO `wp_rg_form_view` VALUES("16355", "8", "2015-09-05 19:07:04", "157.55.39.242", "6");
INSERT INTO `wp_rg_form_view` VALUES("16356", "1", "2015-09-05 19:55:55", "88.150.210.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("16357", "3", "2015-09-05 20:15:23", "66.249.79.155", "28");
INSERT INTO `wp_rg_form_view` VALUES("16358", "8", "2015-09-05 20:15:24", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("16359", "3", "2015-09-05 22:09:35", "66.249.79.169", "18");
INSERT INTO `wp_rg_form_view` VALUES("16360", "8", "2015-09-05 22:09:36", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("16361", "3", "2015-09-05 23:01:52", "207.216.104.209", "63");
INSERT INTO `wp_rg_form_view` VALUES("16362", "8", "2015-09-05 23:01:52", "207.216.104.209", "7");
INSERT INTO `wp_rg_form_view` VALUES("16363", "3", "2015-09-06 00:01:20", "24.68.240.52", "45");
INSERT INTO `wp_rg_form_view` VALUES("16364", "8", "2015-09-06 00:01:20", "24.68.240.52", "5");
INSERT INTO `wp_rg_form_view` VALUES("16365", "2", "2015-09-06 01:04:58", "104.131.84.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16366", "1", "2015-09-06 01:04:58", "104.131.84.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16367", "3", "2015-09-06 01:04:58", "104.131.84.162", "203");
INSERT INTO `wp_rg_form_view` VALUES("16368", "8", "2015-09-06 01:05:00", "104.131.84.162", "23");
INSERT INTO `wp_rg_form_view` VALUES("16369", "3", "2015-09-06 03:46:26", "68.180.229.161", "18");
INSERT INTO `wp_rg_form_view` VALUES("16370", "8", "2015-09-06 03:46:27", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16371", "3", "2015-09-06 04:05:32", "66.249.79.169", "28");
INSERT INTO `wp_rg_form_view` VALUES("16372", "8", "2015-09-06 04:05:32", "66.249.79.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("16373", "3", "2015-09-06 05:35:04", "46.246.44.150", "72");
INSERT INTO `wp_rg_form_view` VALUES("16374", "8", "2015-09-06 05:35:04", "46.246.44.150", "8");
INSERT INTO `wp_rg_form_view` VALUES("16375", "3", "2015-09-06 06:00:44", "66.249.79.155", "12");
INSERT INTO `wp_rg_form_view` VALUES("16376", "8", "2015-09-06 06:29:49", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16377", "3", "2015-09-06 07:16:27", "207.46.13.133", "9");
INSERT INTO `wp_rg_form_view` VALUES("16378", "8", "2015-09-06 07:16:27", "207.46.13.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("16379", "3", "2015-09-06 08:00:47", "188.165.15.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("16380", "8", "2015-09-06 08:00:49", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16381", "3", "2015-09-06 09:00:55", "188.165.15.90", "45");
INSERT INTO `wp_rg_form_view` VALUES("16382", "8", "2015-09-06 09:00:55", "188.165.15.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("16383", "6", "2015-09-06 09:56:39", "5.9.17.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("16384", "3", "2015-09-06 10:19:17", "66.249.79.155", "47");
INSERT INTO `wp_rg_form_view` VALUES("16385", "8", "2015-09-06 10:19:17", "66.249.79.155", "6");
INSERT INTO `wp_rg_form_view` VALUES("16386", "3", "2015-09-06 11:08:34", "207.46.13.133", "18");
INSERT INTO `wp_rg_form_view` VALUES("16387", "8", "2015-09-06 11:08:35", "207.46.13.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("16388", "6", "2015-09-06 12:54:13", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16389", "3", "2015-09-06 12:54:15", "188.165.15.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("16390", "8", "2015-09-06 12:54:15", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16391", "3", "2015-09-06 13:19:33", "52.19.200.162", "238");
INSERT INTO `wp_rg_form_view` VALUES("16392", "8", "2015-09-06 13:19:35", "52.19.200.162", "26");
INSERT INTO `wp_rg_form_view` VALUES("16393", "1", "2015-09-06 13:19:45", "52.19.200.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16394", "2", "2015-09-06 13:25:11", "52.19.200.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16395", "3", "2015-09-06 14:04:15", "199.217.117.207", "9");
INSERT INTO `wp_rg_form_view` VALUES("16396", "8", "2015-09-06 14:04:16", "199.217.117.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("16397", "3", "2015-09-06 15:45:45", "180.180.106.23", "95");
INSERT INTO `wp_rg_form_view` VALUES("16398", "8", "2015-09-06 15:45:46", "180.180.106.23", "10");
INSERT INTO `wp_rg_form_view` VALUES("16399", "3", "2015-09-06 16:08:57", "52.19.200.222", "47");
INSERT INTO `wp_rg_form_view` VALUES("16400", "8", "2015-09-06 16:08:57", "52.19.200.222", "5");
INSERT INTO `wp_rg_form_view` VALUES("16401", "5", "2015-09-06 16:09:19", "52.19.200.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("16402", "8", "2015-09-06 17:32:45", "24.244.23.83", "6");
INSERT INTO `wp_rg_form_view` VALUES("16403", "3", "2015-09-06 17:32:46", "24.244.23.83", "47");
INSERT INTO `wp_rg_form_view` VALUES("16404", "3", "2015-09-06 18:05:53", "136.243.17.161", "254");
INSERT INTO `wp_rg_form_view` VALUES("16405", "8", "2015-09-06 18:05:53", "136.243.17.161", "29");
INSERT INTO `wp_rg_form_view` VALUES("16406", "3", "2015-09-06 19:12:09", "68.180.229.161", "57");
INSERT INTO `wp_rg_form_view` VALUES("16407", "8", "2015-09-06 19:12:10", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("16408", "8", "2015-09-06 20:22:54", "207.46.13.133", "6");
INSERT INTO `wp_rg_form_view` VALUES("16409", "3", "2015-09-06 20:22:54", "207.46.13.133", "47");
INSERT INTO `wp_rg_form_view` VALUES("16410", "1", "2015-09-06 20:29:15", "5.196.225.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("16411", "3", "2015-09-06 21:08:39", "180.180.76.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("16412", "8", "2015-09-06 21:08:40", "180.180.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("16413", "3", "2015-09-06 22:53:45", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("16414", "8", "2015-09-06 22:53:46", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("16415", "3", "2015-09-06 23:02:26", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("16416", "8", "2015-09-06 23:02:26", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16417", "3", "2015-09-07 00:27:29", "77.75.79.17", "110");
INSERT INTO `wp_rg_form_view` VALUES("16418", "8", "2015-09-07 00:27:29", "77.75.79.17", "13");
INSERT INTO `wp_rg_form_view` VALUES("16419", "3", "2015-09-07 01:07:33", "207.46.13.104", "56");
INSERT INTO `wp_rg_form_view` VALUES("16420", "8", "2015-09-07 01:07:34", "207.46.13.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("16421", "3", "2015-09-07 02:22:55", "207.46.13.133", "10");
INSERT INTO `wp_rg_form_view` VALUES("16422", "8", "2015-09-07 02:22:56", "207.46.13.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("16423", "3", "2015-09-07 03:17:59", "108.180.150.233", "27");
INSERT INTO `wp_rg_form_view` VALUES("16424", "8", "2015-09-07 03:17:59", "108.180.150.233", "3");
INSERT INTO `wp_rg_form_view` VALUES("16425", "3", "2015-09-07 04:36:37", "180.180.100.29", "38");
INSERT INTO `wp_rg_form_view` VALUES("16426", "8", "2015-09-07 04:36:37", "180.180.100.29", "4");
INSERT INTO `wp_rg_form_view` VALUES("16427", "3", "2015-09-07 05:27:38", "66.249.79.162", "182");
INSERT INTO `wp_rg_form_view` VALUES("16428", "8", "2015-09-07 05:27:40", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("16429", "1", "2015-09-07 05:41:19", "24.68.159.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("16430", "6", "2015-09-07 05:55:51", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16431", "3", "2015-09-07 06:01:20", "68.180.229.161", "27");
INSERT INTO `wp_rg_form_view` VALUES("16432", "8", "2015-09-07 06:01:20", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16433", "3", "2015-09-07 07:26:29", "207.46.13.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("16434", "8", "2015-09-07 07:26:31", "207.46.13.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("16435", "8", "2015-09-07 08:31:21", "208.115.111.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("16436", "3", "2015-09-07 08:31:23", "208.115.111.66", "9");
INSERT INTO `wp_rg_form_view` VALUES("16437", "3", "2015-09-07 09:00:34", "188.165.15.90", "37");
INSERT INTO `wp_rg_form_view` VALUES("16438", "8", "2015-09-07 09:00:34", "188.165.15.90", "4");
INSERT INTO `wp_rg_form_view` VALUES("16439", "3", "2015-09-07 10:32:51", "188.165.15.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("16440", "8", "2015-09-07 10:32:52", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16441", "3", "2015-09-07 11:51:46", "188.165.15.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("16442", "8", "2015-09-07 11:51:48", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16443", "3", "2015-09-07 12:23:39", "207.46.13.142", "38");
INSERT INTO `wp_rg_form_view` VALUES("16444", "8", "2015-09-07 12:23:40", "207.46.13.142", "5");
INSERT INTO `wp_rg_form_view` VALUES("16445", "3", "2015-09-07 14:27:26", "66.249.79.169", "37");
INSERT INTO `wp_rg_form_view` VALUES("16446", "8", "2015-09-07 14:27:27", "66.249.79.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("16447", "3", "2015-09-07 15:55:44", "144.76.155.8", "9");
INSERT INTO `wp_rg_form_view` VALUES("16448", "8", "2015-09-07 15:55:44", "144.76.155.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("16449", "3", "2015-09-07 16:19:59", "188.165.15.90", "45");
INSERT INTO `wp_rg_form_view` VALUES("16450", "8", "2015-09-07 16:19:59", "188.165.15.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("16451", "3", "2015-09-07 18:03:15", "66.249.79.162", "36");
INSERT INTO `wp_rg_form_view` VALUES("16452", "8", "2015-09-07 18:03:16", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("16453", "3", "2015-09-07 19:44:38", "24.108.72.71", "37");
INSERT INTO `wp_rg_form_view` VALUES("16454", "8", "2015-09-07 19:44:39", "24.108.72.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("16455", "3", "2015-09-07 20:05:37", "188.165.15.90", "38");
INSERT INTO `wp_rg_form_view` VALUES("16456", "8", "2015-09-07 20:05:37", "188.165.15.90", "4");
INSERT INTO `wp_rg_form_view` VALUES("16457", "3", "2015-09-07 21:06:24", "66.249.79.155", "23");
INSERT INTO `wp_rg_form_view` VALUES("16458", "8", "2015-09-07 21:06:24", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("16459", "3", "2015-09-07 22:13:25", "27.151.64.106", "55");
INSERT INTO `wp_rg_form_view` VALUES("16460", "8", "2015-09-07 22:13:26", "27.151.64.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("16461", "3", "2015-09-07 23:03:08", "66.249.79.155", "27");
INSERT INTO `wp_rg_form_view` VALUES("16462", "8", "2015-09-07 23:03:09", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("16463", "3", "2015-09-08 00:04:39", "188.165.15.90", "56");
INSERT INTO `wp_rg_form_view` VALUES("16464", "8", "2015-09-08 00:04:39", "188.165.15.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("16465", "3", "2015-09-08 02:37:41", "68.180.229.161", "27");
INSERT INTO `wp_rg_form_view` VALUES("16466", "8", "2015-09-08 02:37:43", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16467", "3", "2015-09-08 03:27:41", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("16468", "8", "2015-09-08 03:27:42", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16469", "3", "2015-09-08 04:10:40", "188.165.15.90", "20");
INSERT INTO `wp_rg_form_view` VALUES("16470", "8", "2015-09-08 04:10:40", "188.165.15.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("16471", "3", "2015-09-08 05:02:56", "24.108.72.71", "36");
INSERT INTO `wp_rg_form_view` VALUES("16472", "8", "2015-09-08 05:02:56", "24.108.72.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("16473", "3", "2015-09-08 06:16:23", "199.217.117.207", "9");
INSERT INTO `wp_rg_form_view` VALUES("16474", "8", "2015-09-08 06:16:24", "199.217.117.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("16475", "3", "2015-09-08 07:37:19", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("16476", "8", "2015-09-08 07:37:22", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("16477", "3", "2015-09-08 08:22:19", "77.75.77.62", "160");
INSERT INTO `wp_rg_form_view` VALUES("16478", "8", "2015-09-08 08:22:20", "77.75.77.62", "19");
INSERT INTO `wp_rg_form_view` VALUES("16479", "3", "2015-09-08 09:25:39", "207.46.13.133", "9");
INSERT INTO `wp_rg_form_view` VALUES("16480", "8", "2015-09-08 09:25:40", "207.46.13.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("16481", "3", "2015-09-08 10:54:17", "148.251.75.46", "9");
INSERT INTO `wp_rg_form_view` VALUES("16482", "8", "2015-09-08 10:54:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("16483", "3", "2015-09-08 11:25:44", "220.181.108.92", "119");
INSERT INTO `wp_rg_form_view` VALUES("16484", "8", "2015-09-08 11:25:47", "220.181.108.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("16485", "3", "2015-09-08 12:00:22", "52.17.150.69", "200");
INSERT INTO `wp_rg_form_view` VALUES("16486", "8", "2015-09-08 12:00:23", "52.17.150.69", "22");
INSERT INTO `wp_rg_form_view` VALUES("16487", "3", "2015-09-08 13:00:04", "188.165.15.90", "39");
INSERT INTO `wp_rg_form_view` VALUES("16488", "8", "2015-09-08 13:00:05", "188.165.15.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("16489", "3", "2015-09-08 14:28:22", "188.165.15.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("16490", "8", "2015-09-08 14:28:23", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16491", "3", "2015-09-08 15:00:07", "24.108.85.116", "64");
INSERT INTO `wp_rg_form_view` VALUES("16492", "8", "2015-09-08 15:00:07", "24.108.85.116", "7");
INSERT INTO `wp_rg_form_view` VALUES("16493", "1", "2015-09-08 15:00:24", "24.108.85.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("16494", "3", "2015-09-08 16:11:36", "66.249.79.169", "38");
INSERT INTO `wp_rg_form_view` VALUES("16495", "8", "2015-09-08 16:11:38", "66.249.79.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("16496", "1", "2015-09-08 17:01:25", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16497", "3", "2015-09-08 17:01:25", "66.249.79.162", "54");
INSERT INTO `wp_rg_form_view` VALUES("16498", "8", "2015-09-08 17:01:25", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("16499", "3", "2015-09-08 18:02:08", "207.194.133.9", "55");
INSERT INTO `wp_rg_form_view` VALUES("16500", "8", "2015-09-08 18:02:08", "207.194.133.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("16501", "2", "2015-09-08 18:15:53", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("16502", "3", "2015-09-08 19:01:58", "66.249.79.155", "29");
INSERT INTO `wp_rg_form_view` VALUES("16503", "8", "2015-09-08 19:01:59", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("16504", "3", "2015-09-08 20:08:16", "66.249.79.162", "73");
INSERT INTO `wp_rg_form_view` VALUES("16505", "8", "2015-09-08 20:08:17", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("16506", "3", "2015-09-08 21:04:26", "66.249.79.155", "37");
INSERT INTO `wp_rg_form_view` VALUES("16507", "8", "2015-09-08 21:04:26", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16508", "3", "2015-09-08 22:22:30", "66.249.79.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("16509", "8", "2015-09-08 22:22:33", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("16510", "3", "2015-09-08 23:18:29", "68.180.229.161", "29");
INSERT INTO `wp_rg_form_view` VALUES("16511", "8", "2015-09-08 23:18:30", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16512", "2", "2015-09-08 23:41:23", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16513", "3", "2015-09-09 00:16:53", "96.50.93.42", "391");
INSERT INTO `wp_rg_form_view` VALUES("16514", "8", "2015-09-09 00:16:54", "96.50.93.42", "43");
INSERT INTO `wp_rg_form_view` VALUES("16515", "1", "2015-09-09 00:32:21", "199.255.138.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("16516", "2", "2015-09-09 00:32:27", "199.255.138.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("16517", "3", "2015-09-09 01:18:15", "66.249.79.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("16518", "8", "2015-09-09 01:18:16", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16519", "3", "2015-09-09 02:31:42", "66.249.79.169", "27");
INSERT INTO `wp_rg_form_view` VALUES("16520", "8", "2015-09-09 02:31:43", "66.249.79.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("16521", "3", "2015-09-09 03:18:04", "66.249.79.155", "36");
INSERT INTO `wp_rg_form_view` VALUES("16522", "8", "2015-09-09 03:18:05", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16523", "3", "2015-09-09 04:00:13", "66.249.79.162", "47");
INSERT INTO `wp_rg_form_view` VALUES("16524", "8", "2015-09-09 04:00:14", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("16525", "3", "2015-09-09 05:03:36", "66.249.79.162", "64");
INSERT INTO `wp_rg_form_view` VALUES("16526", "8", "2015-09-09 05:03:37", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("16527", "3", "2015-09-09 06:34:37", "141.0.13.198", "100");
INSERT INTO `wp_rg_form_view` VALUES("16528", "8", "2015-09-09 06:34:37", "141.0.13.198", "11");
INSERT INTO `wp_rg_form_view` VALUES("16529", "3", "2015-09-09 07:00:19", "68.180.229.161", "30");
INSERT INTO `wp_rg_form_view` VALUES("16530", "1", "2015-09-09 07:18:43", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("16531", "8", "2015-09-09 07:18:44", "107.150.42.226", "3");
INSERT INTO `wp_rg_form_view` VALUES("16532", "2", "2015-09-09 08:20:51", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16533", "3", "2015-09-09 08:20:54", "66.249.79.155", "27");
INSERT INTO `wp_rg_form_view` VALUES("16534", "8", "2015-09-09 08:20:55", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("16535", "3", "2015-09-09 09:03:42", "66.249.79.169", "18");
INSERT INTO `wp_rg_form_view` VALUES("16536", "8", "2015-09-09 09:03:42", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("16537", "3", "2015-09-09 10:50:12", "188.165.15.90", "19");
INSERT INTO `wp_rg_form_view` VALUES("16538", "3", "2015-09-09 10:50:12", "188.165.15.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("16539", "8", "2015-09-09 10:50:13", "188.165.15.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("16540", "3", "2015-09-09 11:28:45", "68.180.229.161", "18");
INSERT INTO `wp_rg_form_view` VALUES("16541", "8", "2015-09-09 11:28:46", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16542", "3", "2015-09-09 12:44:34", "199.217.117.207", "9");
INSERT INTO `wp_rg_form_view` VALUES("16543", "8", "2015-09-09 12:44:35", "199.217.117.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("16544", "3", "2015-09-09 13:18:32", "220.181.108.95", "9");
INSERT INTO `wp_rg_form_view` VALUES("16545", "8", "2015-09-09 13:18:33", "220.181.108.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("16546", "3", "2015-09-09 14:44:04", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("16547", "8", "2015-09-09 14:44:05", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16548", "3", "2015-09-09 15:19:57", "91.200.12.128", "98");
INSERT INTO `wp_rg_form_view` VALUES("16549", "8", "2015-09-09 15:19:58", "91.200.12.128", "12");
INSERT INTO `wp_rg_form_view` VALUES("16550", "3", "2015-09-09 17:27:45", "86.126.66.87", "280");
INSERT INTO `wp_rg_form_view` VALUES("16551", "8", "2015-09-09 17:27:47", "86.126.66.87", "31");
INSERT INTO `wp_rg_form_view` VALUES("16552", "1", "2015-09-09 17:28:38", "86.126.66.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("16553", "2", "2015-09-09 17:28:45", "86.126.66.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("16554", "3", "2015-09-09 18:11:38", "69.58.178.59", "146");
INSERT INTO `wp_rg_form_view` VALUES("16555", "8", "2015-09-09 18:11:38", "69.58.178.59", "17");
INSERT INTO `wp_rg_form_view` VALUES("16556", "1", "2015-09-09 18:26:22", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("16557", "3", "2015-09-09 19:01:06", "209.52.88.218", "27");
INSERT INTO `wp_rg_form_view` VALUES("16558", "8", "2015-09-09 19:01:06", "209.52.88.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("16559", "1", "2015-09-09 20:00:05", "157.55.39.225", "3");
INSERT INTO `wp_rg_form_view` VALUES("16560", "3", "2015-09-09 20:00:07", "157.55.39.225", "160");
INSERT INTO `wp_rg_form_view` VALUES("16561", "8", "2015-09-09 20:00:08", "157.55.39.225", "17");
INSERT INTO `wp_rg_form_view` VALUES("16562", "3", "2015-09-09 21:01:12", "66.249.79.155", "37");
INSERT INTO `wp_rg_form_view` VALUES("16563", "8", "2015-09-09 21:01:13", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16564", "3", "2015-09-09 22:10:23", "180.180.70.230", "20");
INSERT INTO `wp_rg_form_view` VALUES("16565", "8", "2015-09-09 22:10:23", "180.180.70.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("16566", "3", "2015-09-09 23:31:01", "157.55.39.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("16567", "8", "2015-09-09 23:31:04", "157.55.39.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("16568", "3", "2015-09-10 00:05:07", "68.180.229.161", "56");
INSERT INTO `wp_rg_form_view` VALUES("16569", "8", "2015-09-10 00:05:08", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("16570", "2", "2015-09-10 00:29:58", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("16571", "3", "2015-09-10 01:01:10", "54.209.60.63", "74");
INSERT INTO `wp_rg_form_view` VALUES("16572", "8", "2015-09-10 01:01:10", "54.209.60.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("16573", "1", "2015-09-10 01:44:26", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("16574", "3", "2015-09-10 02:01:54", "93.186.202.239", "47");
INSERT INTO `wp_rg_form_view` VALUES("16575", "8", "2015-09-10 02:01:54", "93.186.202.239", "5");
INSERT INTO `wp_rg_form_view` VALUES("16576", "3", "2015-09-10 03:19:35", "185.53.44.116", "55");
INSERT INTO `wp_rg_form_view` VALUES("16577", "8", "2015-09-10 03:19:36", "185.53.44.116", "6");
INSERT INTO `wp_rg_form_view` VALUES("16578", "3", "2015-09-10 04:11:58", "207.46.13.60", "37");
INSERT INTO `wp_rg_form_view` VALUES("16579", "8", "2015-09-10 04:11:59", "207.46.13.60", "4");
INSERT INTO `wp_rg_form_view` VALUES("16580", "1", "2015-09-10 04:22:24", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("16581", "3", "2015-09-10 05:10:07", "184.66.115.55", "64");
INSERT INTO `wp_rg_form_view` VALUES("16582", "8", "2015-09-10 05:10:08", "184.66.115.55", "7");
INSERT INTO `wp_rg_form_view` VALUES("16583", "1", "2015-09-10 05:25:48", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("16584", "3", "2015-09-10 06:03:54", "185.53.44.202", "82");
INSERT INTO `wp_rg_form_view` VALUES("16585", "8", "2015-09-10 06:03:55", "185.53.44.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("16586", "1", "2015-09-10 06:33:09", "185.53.44.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("16587", "3", "2015-09-10 07:05:28", "185.53.44.82", "45");
INSERT INTO `wp_rg_form_view` VALUES("16588", "8", "2015-09-10 07:05:29", "185.53.44.82", "5");
INSERT INTO `wp_rg_form_view` VALUES("16589", "3", "2015-09-10 08:22:14", "157.55.39.248", "57");
INSERT INTO `wp_rg_form_view` VALUES("16590", "8", "2015-09-10 08:22:15", "157.55.39.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("16591", "2", "2015-09-10 08:45:31", "185.53.44.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("16592", "3", "2015-09-10 09:43:14", "66.249.79.169", "18");
INSERT INTO `wp_rg_form_view` VALUES("16593", "8", "2015-09-10 09:43:15", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("16594", "3", "2015-09-10 10:22:02", "157.55.39.248", "39");
INSERT INTO `wp_rg_form_view` VALUES("16595", "8", "2015-09-10 10:22:03", "157.55.39.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("16596", "3", "2015-09-10 11:06:48", "185.53.44.202", "28");
INSERT INTO `wp_rg_form_view` VALUES("16597", "8", "2015-09-10 11:06:49", "185.53.44.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("16598", "5", "2015-09-10 11:41:28", "207.46.13.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("16599", "3", "2015-09-10 12:36:29", "27.19.181.179", "20");
INSERT INTO `wp_rg_form_view` VALUES("16600", "8", "2015-09-10 12:36:30", "27.19.181.179", "3");
INSERT INTO `wp_rg_form_view` VALUES("16601", "1", "2015-09-10 15:54:58", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("16602", "3", "2015-09-10 15:54:59", "107.150.42.226", "27");
INSERT INTO `wp_rg_form_view` VALUES("16603", "8", "2015-09-10 15:55:00", "107.150.42.226", "3");
INSERT INTO `wp_rg_form_view` VALUES("16604", "3", "2015-09-10 16:17:37", "199.217.117.207", "29");
INSERT INTO `wp_rg_form_view` VALUES("16605", "8", "2015-09-10 16:17:38", "199.217.117.207", "3");
INSERT INTO `wp_rg_form_view` VALUES("16606", "3", "2015-09-10 17:06:05", "184.71.26.154", "353");
INSERT INTO `wp_rg_form_view` VALUES("16607", "8", "2015-09-10 17:06:05", "184.71.26.154", "39");
INSERT INTO `wp_rg_form_view` VALUES("16608", "2", "2015-09-10 17:38:30", "199.107.64.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("16609", "3", "2015-09-10 18:00:10", "162.243.246.106", "3638");
INSERT INTO `wp_rg_form_view` VALUES("16610", "8", "2015-09-10 18:00:11", "162.243.246.106", "429");
INSERT INTO `wp_rg_form_view` VALUES("16611", "1", "2015-09-10 18:05:04", "162.243.246.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("16612", "6", "2015-09-10 18:12:20", "162.243.246.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("16613", "5", "2015-09-10 18:18:00", "162.243.246.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("16614", "3", "2015-09-10 19:00:06", "162.243.246.106", "1414");
INSERT INTO `wp_rg_form_view` VALUES("16615", "8", "2015-09-10 19:00:07", "162.243.246.106", "172");
INSERT INTO `wp_rg_form_view` VALUES("16616", "9", "2015-09-10 19:01:59", "162.243.246.106", "129");
INSERT INTO `wp_rg_form_view` VALUES("16617", "2", "2015-09-10 19:07:08", "162.243.246.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("16618", "9", "2015-09-10 20:49:40", "157.55.39.137", "13");
INSERT INTO `wp_rg_form_view` VALUES("16619", "3", "2015-09-10 20:49:42", "157.55.39.137", "96");
INSERT INTO `wp_rg_form_view` VALUES("16620", "8", "2015-09-10 20:49:42", "157.55.39.137", "11");
INSERT INTO `wp_rg_form_view` VALUES("16621", "6", "2015-09-10 21:01:26", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16622", "3", "2015-09-10 21:01:27", "66.249.79.155", "29");
INSERT INTO `wp_rg_form_view` VALUES("16623", "9", "2015-09-10 21:01:27", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("16624", "8", "2015-09-10 21:01:27", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16625", "3", "2015-09-10 22:32:01", "220.181.108.147", "80");
INSERT INTO `wp_rg_form_view` VALUES("16626", "9", "2015-09-10 22:32:01", "220.181.108.147", "10");
INSERT INTO `wp_rg_form_view` VALUES("16627", "8", "2015-09-10 22:32:02", "220.181.108.147", "10");
INSERT INTO `wp_rg_form_view` VALUES("16628", "1", "2015-09-10 22:50:20", "27.19.181.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("16629", "3", "2015-09-10 23:02:15", "157.55.39.137", "97");
INSERT INTO `wp_rg_form_view` VALUES("16630", "9", "2015-09-10 23:02:16", "157.55.39.137", "11");
INSERT INTO `wp_rg_form_view` VALUES("16631", "8", "2015-09-10 23:02:16", "157.55.39.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("16632", "6", "2015-09-11 00:08:59", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16633", "3", "2015-09-11 00:08:59", "66.249.79.155", "32");
INSERT INTO `wp_rg_form_view` VALUES("16634", "9", "2015-09-11 00:08:59", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16635", "8", "2015-09-11 00:08:59", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16636", "3", "2015-09-11 01:30:55", "91.200.12.128", "114");
INSERT INTO `wp_rg_form_view` VALUES("16637", "9", "2015-09-11 01:30:57", "91.200.12.128", "15");
INSERT INTO `wp_rg_form_view` VALUES("16638", "8", "2015-09-11 01:30:57", "91.200.12.128", "15");
INSERT INTO `wp_rg_form_view` VALUES("16639", "2", "2015-09-11 01:53:26", "167.114.172.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("16640", "1", "2015-09-11 01:53:32", "167.114.172.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("16641", "3", "2015-09-11 02:09:43", "27.151.64.99", "173");
INSERT INTO `wp_rg_form_view` VALUES("16642", "9", "2015-09-11 02:09:43", "27.151.64.99", "21");
INSERT INTO `wp_rg_form_view` VALUES("16643", "8", "2015-09-11 02:09:44", "27.151.64.99", "21");
INSERT INTO `wp_rg_form_view` VALUES("16644", "3", "2015-09-11 03:08:00", "207.46.13.60", "57");
INSERT INTO `wp_rg_form_view` VALUES("16645", "9", "2015-09-11 03:08:00", "207.46.13.60", "8");
INSERT INTO `wp_rg_form_view` VALUES("16646", "8", "2015-09-11 03:08:00", "207.46.13.60", "8");
INSERT INTO `wp_rg_form_view` VALUES("16647", "3", "2015-09-11 05:05:10", "192.162.27.190", "8");
INSERT INTO `wp_rg_form_view` VALUES("16648", "9", "2015-09-11 05:05:10", "192.162.27.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("16649", "8", "2015-09-11 05:05:10", "192.162.27.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("16650", "3", "2015-09-11 06:39:42", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("16651", "9", "2015-09-11 06:39:44", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16652", "8", "2015-09-11 06:39:44", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16653", "3", "2015-09-11 07:23:37", "27.151.64.99", "42");
INSERT INTO `wp_rg_form_view` VALUES("16654", "9", "2015-09-11 07:23:38", "27.151.64.99", "5");
INSERT INTO `wp_rg_form_view` VALUES("16655", "8", "2015-09-11 07:23:38", "27.151.64.99", "5");
INSERT INTO `wp_rg_form_view` VALUES("16656", "1", "2015-09-11 07:55:07", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("16657", "3", "2015-09-11 08:18:42", "207.46.13.142", "26");
INSERT INTO `wp_rg_form_view` VALUES("16658", "9", "2015-09-11 08:18:42", "207.46.13.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("16659", "8", "2015-09-11 08:18:42", "207.46.13.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("16660", "3", "2015-09-11 09:34:20", "68.180.229.161", "26");
INSERT INTO `wp_rg_form_view` VALUES("16661", "9", "2015-09-11 09:39:59", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("16662", "8", "2015-09-11 09:39:59", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("16663", "1", "2015-09-11 10:04:29", "185.5.64.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("16664", "3", "2015-09-11 10:04:30", "185.5.64.179", "43");
INSERT INTO `wp_rg_form_view` VALUES("16665", "9", "2015-09-11 10:04:30", "185.5.64.179", "6");
INSERT INTO `wp_rg_form_view` VALUES("16666", "8", "2015-09-11 10:04:30", "185.5.64.179", "6");
INSERT INTO `wp_rg_form_view` VALUES("16667", "3", "2015-09-11 11:30:21", "68.180.229.161", "121");
INSERT INTO `wp_rg_form_view` VALUES("16668", "9", "2015-09-11 11:30:23", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("16669", "8", "2015-09-11 11:30:23", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("16670", "3", "2015-09-11 12:06:44", "68.180.229.161", "214");
INSERT INTO `wp_rg_form_view` VALUES("16671", "9", "2015-09-11 12:06:45", "68.180.229.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("16672", "8", "2015-09-11 12:06:45", "68.180.229.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("16673", "3", "2015-09-11 13:09:35", "207.46.13.142", "32");
INSERT INTO `wp_rg_form_view` VALUES("16674", "9", "2015-09-11 13:09:36", "207.46.13.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("16675", "8", "2015-09-11 13:09:36", "207.46.13.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("16676", "2", "2015-09-11 13:29:56", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16677", "3", "2015-09-11 14:02:43", "66.249.79.169", "84");
INSERT INTO `wp_rg_form_view` VALUES("16678", "9", "2015-09-11 14:02:44", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("16679", "8", "2015-09-11 14:02:44", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("16680", "6", "2015-09-11 14:49:46", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("16681", "1", "2015-09-11 15:03:27", "88.150.210.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("16682", "3", "2015-09-11 15:03:27", "88.150.210.109", "165");
INSERT INTO `wp_rg_form_view` VALUES("16683", "9", "2015-09-11 15:03:27", "88.150.210.109", "20");
INSERT INTO `wp_rg_form_view` VALUES("16684", "8", "2015-09-11 15:03:28", "88.150.210.109", "20");
INSERT INTO `wp_rg_form_view` VALUES("16685", "3", "2015-09-11 16:04:08", "157.55.39.248", "33");
INSERT INTO `wp_rg_form_view` VALUES("16686", "9", "2015-09-11 16:04:10", "157.55.39.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("16687", "8", "2015-09-11 16:04:10", "157.55.39.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("16688", "3", "2015-09-11 17:18:10", "66.249.79.169", "49");
INSERT INTO `wp_rg_form_view` VALUES("16689", "9", "2015-09-11 17:18:37", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("16690", "8", "2015-09-11 17:18:37", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("16691", "3", "2015-09-11 18:10:26", "68.180.229.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("16692", "9", "2015-09-11 18:21:35", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("16693", "8", "2015-09-11 18:21:35", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("16694", "3", "2015-09-11 19:10:50", "207.46.13.60", "49");
INSERT INTO `wp_rg_form_view` VALUES("16695", "9", "2015-09-11 19:10:52", "207.46.13.60", "6");
INSERT INTO `wp_rg_form_view` VALUES("16696", "8", "2015-09-11 19:10:53", "207.46.13.60", "6");
INSERT INTO `wp_rg_form_view` VALUES("16697", "2", "2015-09-11 19:14:57", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("16698", "3", "2015-09-11 20:11:35", "5.255.75.57", "89");
INSERT INTO `wp_rg_form_view` VALUES("16699", "9", "2015-09-11 20:11:36", "5.255.75.57", "11");
INSERT INTO `wp_rg_form_view` VALUES("16700", "8", "2015-09-11 20:11:36", "5.255.75.57", "11");
INSERT INTO `wp_rg_form_view` VALUES("16701", "1", "2015-09-11 20:46:02", "192.95.37.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("16702", "3", "2015-09-11 21:12:16", "86.106.18.11", "105");
INSERT INTO `wp_rg_form_view` VALUES("16703", "9", "2015-09-11 21:12:16", "86.106.18.11", "12");
INSERT INTO `wp_rg_form_view` VALUES("16704", "8", "2015-09-11 21:12:17", "86.106.18.11", "12");
INSERT INTO `wp_rg_form_view` VALUES("16705", "3", "2015-09-11 22:08:27", "91.200.12.128", "50");
INSERT INTO `wp_rg_form_view` VALUES("16706", "9", "2015-09-11 22:08:27", "91.200.12.128", "7");
INSERT INTO `wp_rg_form_view` VALUES("16707", "8", "2015-09-11 22:08:28", "91.200.12.128", "7");
INSERT INTO `wp_rg_form_view` VALUES("16708", "3", "2015-09-11 23:24:36", "184.66.6.218", "25");
INSERT INTO `wp_rg_form_view` VALUES("16709", "9", "2015-09-11 23:24:37", "184.66.6.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("16710", "8", "2015-09-11 23:24:37", "184.66.6.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("16711", "3", "2015-09-12 00:21:02", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("16712", "9", "2015-09-12 00:21:02", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("16713", "8", "2015-09-12 00:21:02", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("16714", "9", "2015-09-12 01:28:54", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16715", "3", "2015-09-12 01:28:55", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("16716", "8", "2015-09-12 01:28:56", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16717", "3", "2015-09-12 02:37:21", "5.101.222.182", "8");
INSERT INTO `wp_rg_form_view` VALUES("16718", "9", "2015-09-12 02:37:22", "5.101.222.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("16719", "8", "2015-09-12 02:37:22", "5.101.222.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("16720", "3", "2015-09-12 03:09:17", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("16721", "9", "2015-09-12 03:09:18", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16722", "8", "2015-09-12 03:09:18", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16723", "1", "2015-09-12 03:15:57", "172.245.82.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("16724", "3", "2015-09-12 04:05:19", "68.180.229.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("16725", "9", "2015-09-12 04:05:19", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16726", "8", "2015-09-12 04:05:20", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16727", "3", "2015-09-12 05:32:37", "96.50.80.131", "32");
INSERT INTO `wp_rg_form_view` VALUES("16728", "9", "2015-09-12 05:32:38", "96.50.80.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("16729", "8", "2015-09-12 05:32:38", "96.50.80.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("16730", "1", "2015-09-12 06:18:19", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("16731", "3", "2015-09-12 06:18:19", "51.254.83.80", "56");
INSERT INTO `wp_rg_form_view` VALUES("16732", "9", "2015-09-12 06:18:20", "51.254.83.80", "7");
INSERT INTO `wp_rg_form_view` VALUES("16733", "8", "2015-09-12 06:18:20", "51.254.83.80", "7");
INSERT INTO `wp_rg_form_view` VALUES("16734", "3", "2015-09-12 07:03:16", "68.180.229.161", "99");
INSERT INTO `wp_rg_form_view` VALUES("16735", "9", "2015-09-12 07:03:16", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("16736", "8", "2015-09-12 07:03:17", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("16737", "2", "2015-09-12 09:03:26", "45.55.229.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("16738", "1", "2015-09-12 09:03:26", "45.55.229.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("16739", "3", "2015-09-12 09:03:26", "45.55.229.140", "266");
INSERT INTO `wp_rg_form_view` VALUES("16740", "9", "2015-09-12 09:03:29", "45.55.229.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("16741", "8", "2015-09-12 09:03:29", "45.55.229.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("16742", "3", "2015-09-12 10:30:22", "51.254.83.80", "16");
INSERT INTO `wp_rg_form_view` VALUES("16743", "9", "2015-09-12 10:30:23", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("16744", "8", "2015-09-12 10:30:23", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("16745", "3", "2015-09-12 11:00:23", "131.253.36.195", "25");
INSERT INTO `wp_rg_form_view` VALUES("16746", "9", "2015-09-12 11:00:23", "131.253.36.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("16747", "8", "2015-09-12 11:00:23", "131.253.36.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("16748", "3", "2015-09-12 12:59:59", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("16749", "9", "2015-09-12 12:59:59", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16750", "3", "2015-09-12 13:00:00", "68.180.229.161", "84");
INSERT INTO `wp_rg_form_view` VALUES("16751", "8", "2015-09-12 13:00:00", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("16752", "9", "2015-09-12 13:43:13", "207.46.13.60", "7");
INSERT INTO `wp_rg_form_view` VALUES("16753", "3", "2015-09-12 14:49:58", "91.200.12.38", "26");
INSERT INTO `wp_rg_form_view` VALUES("16754", "9", "2015-09-12 14:49:59", "91.200.12.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("16755", "8", "2015-09-12 14:49:59", "91.200.12.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("16756", "3", "2015-09-12 15:01:04", "207.46.13.78", "8");
INSERT INTO `wp_rg_form_view` VALUES("16757", "9", "2015-09-12 15:01:04", "207.46.13.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("16758", "8", "2015-09-12 15:01:04", "207.46.13.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("16759", "3", "2015-09-12 16:29:59", "66.249.79.155", "17");
INSERT INTO `wp_rg_form_view` VALUES("16760", "9", "2015-09-12 16:30:00", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16761", "8", "2015-09-12 16:30:00", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16762", "3", "2015-09-12 17:12:28", "207.46.13.78", "32");
INSERT INTO `wp_rg_form_view` VALUES("16763", "9", "2015-09-12 17:12:29", "207.46.13.78", "4");
INSERT INTO `wp_rg_form_view` VALUES("16764", "8", "2015-09-12 17:12:29", "207.46.13.78", "4");
INSERT INTO `wp_rg_form_view` VALUES("16765", "9", "2015-09-12 18:17:37", "66.249.79.155", "15");
INSERT INTO `wp_rg_form_view` VALUES("16766", "3", "2015-09-12 18:17:38", "66.249.79.155", "122");
INSERT INTO `wp_rg_form_view` VALUES("16767", "8", "2015-09-12 18:17:38", "66.249.79.155", "14");
INSERT INTO `wp_rg_form_view` VALUES("16768", "9", "2015-09-12 19:12:00", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16769", "3", "2015-09-12 19:12:00", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("16770", "8", "2015-09-12 19:12:01", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16771", "3", "2015-09-12 20:03:30", "68.180.229.161", "79");
INSERT INTO `wp_rg_form_view` VALUES("16772", "9", "2015-09-12 20:03:32", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("16773", "8", "2015-09-12 20:03:33", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("16774", "3", "2015-09-12 21:31:35", "68.180.229.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("16775", "9", "2015-09-12 21:31:36", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("16776", "8", "2015-09-12 21:31:36", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("16777", "6", "2015-09-12 21:59:03", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16778", "3", "2015-09-12 22:07:02", "217.69.133.233", "33");
INSERT INTO `wp_rg_form_view` VALUES("16779", "9", "2015-09-12 22:07:02", "217.69.133.233", "4");
INSERT INTO `wp_rg_form_view` VALUES("16780", "8", "2015-09-12 22:07:02", "217.69.133.233", "4");
INSERT INTO `wp_rg_form_view` VALUES("16781", "3", "2015-09-12 23:10:25", "66.249.79.162", "33");
INSERT INTO `wp_rg_form_view` VALUES("16782", "9", "2015-09-12 23:10:26", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("16783", "8", "2015-09-12 23:10:26", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("16784", "3", "2015-09-13 00:05:54", "216.244.81.34", "9");
INSERT INTO `wp_rg_form_view` VALUES("16785", "9", "2015-09-13 00:05:54", "216.244.81.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("16786", "8", "2015-09-13 00:05:54", "216.244.81.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("16787", "3", "2015-09-13 01:12:20", "217.69.133.230", "107");
INSERT INTO `wp_rg_form_view` VALUES("16788", "9", "2015-09-13 01:12:21", "217.69.133.230", "13");
INSERT INTO `wp_rg_form_view` VALUES("16789", "8", "2015-09-13 01:12:21", "217.69.133.230", "13");
INSERT INTO `wp_rg_form_view` VALUES("16790", "3", "2015-09-13 02:38:51", "91.194.84.106", "26");
INSERT INTO `wp_rg_form_view` VALUES("16791", "9", "2015-09-13 02:38:52", "91.194.84.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("16792", "8", "2015-09-13 02:38:52", "91.194.84.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("16793", "2", "2015-09-13 03:15:23", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("16794", "3", "2015-09-13 03:15:24", "107.150.42.226", "49");
INSERT INTO `wp_rg_form_view` VALUES("16795", "9", "2015-09-13 03:15:24", "107.150.42.226", "6");
INSERT INTO `wp_rg_form_view` VALUES("16796", "8", "2015-09-13 03:15:24", "107.150.42.226", "6");
INSERT INTO `wp_rg_form_view` VALUES("16797", "3", "2015-09-13 04:18:48", "217.69.133.232", "32");
INSERT INTO `wp_rg_form_view` VALUES("16798", "9", "2015-09-13 04:18:48", "217.69.133.232", "4");
INSERT INTO `wp_rg_form_view` VALUES("16799", "8", "2015-09-13 04:18:49", "217.69.133.232", "4");
INSERT INTO `wp_rg_form_view` VALUES("16800", "3", "2015-09-13 05:02:36", "216.232.157.185", "84");
INSERT INTO `wp_rg_form_view` VALUES("16801", "9", "2015-09-13 05:02:36", "216.232.157.185", "11");
INSERT INTO `wp_rg_form_view` VALUES("16802", "8", "2015-09-13 05:02:36", "216.232.157.185", "11");
INSERT INTO `wp_rg_form_view` VALUES("16803", "1", "2015-09-13 05:59:21", "5.175.147.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("16804", "3", "2015-09-13 06:16:14", "66.249.79.155", "106");
INSERT INTO `wp_rg_form_view` VALUES("16805", "9", "2015-09-13 06:16:14", "66.249.79.155", "13");
INSERT INTO `wp_rg_form_view` VALUES("16806", "8", "2015-09-13 06:16:14", "66.249.79.155", "12");
INSERT INTO `wp_rg_form_view` VALUES("16807", "3", "2015-09-13 07:26:37", "217.69.133.233", "35");
INSERT INTO `wp_rg_form_view` VALUES("16808", "9", "2015-09-13 07:26:38", "217.69.133.233", "5");
INSERT INTO `wp_rg_form_view` VALUES("16809", "8", "2015-09-13 07:26:38", "217.69.133.233", "5");
INSERT INTO `wp_rg_form_view` VALUES("16810", "3", "2015-09-13 08:36:18", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("16811", "9", "2015-09-13 08:36:19", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16812", "8", "2015-09-13 08:36:19", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("16813", "3", "2015-09-13 09:00:11", "217.69.133.228", "25");
INSERT INTO `wp_rg_form_view` VALUES("16814", "9", "2015-09-13 09:00:11", "217.69.133.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("16815", "8", "2015-09-13 09:00:11", "217.69.133.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("16816", "3", "2015-09-13 10:42:19", "199.21.99.202", "34");
INSERT INTO `wp_rg_form_view` VALUES("16817", "9", "2015-09-13 10:42:20", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("16818", "8", "2015-09-13 10:42:20", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("16819", "3", "2015-09-13 11:00:33", "66.249.79.155", "33");
INSERT INTO `wp_rg_form_view` VALUES("16820", "9", "2015-09-13 11:00:34", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16821", "8", "2015-09-13 11:00:34", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16822", "3", "2015-09-13 12:10:12", "217.69.133.231", "40");
INSERT INTO `wp_rg_form_view` VALUES("16823", "9", "2015-09-13 12:10:13", "217.69.133.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("16824", "8", "2015-09-13 12:10:13", "217.69.133.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("16825", "3", "2015-09-13 13:10:46", "66.249.79.155", "41");
INSERT INTO `wp_rg_form_view` VALUES("16826", "9", "2015-09-13 13:10:47", "66.249.79.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("16827", "8", "2015-09-13 13:10:47", "66.249.79.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("16828", "3", "2015-09-13 14:26:38", "204.12.241.170", "30");
INSERT INTO `wp_rg_form_view` VALUES("16829", "9", "2015-09-13 14:26:48", "204.12.241.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("16830", "8", "2015-09-13 14:26:48", "204.12.241.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("16831", "3", "2015-09-13 15:05:09", "157.55.39.248", "24");
INSERT INTO `wp_rg_form_view` VALUES("16832", "9", "2015-09-13 15:05:09", "157.55.39.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("16833", "8", "2015-09-13 15:05:10", "157.55.39.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("16834", "7", "2015-09-13 15:08:54", "207.46.13.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("16835", "3", "2015-09-13 16:10:31", "68.180.229.161", "32");
INSERT INTO `wp_rg_form_view` VALUES("16836", "9", "2015-09-13 16:10:32", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("16837", "8", "2015-09-13 16:10:32", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("16838", "1", "2015-09-13 16:49:03", "204.44.85.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("16839", "3", "2015-09-13 17:49:02", "154.20.38.212", "8");
INSERT INTO `wp_rg_form_view` VALUES("16840", "9", "2015-09-13 17:49:06", "154.20.38.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("16841", "8", "2015-09-13 17:49:06", "154.20.38.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("16842", "3", "2015-09-13 18:24:52", "217.69.133.232", "16");
INSERT INTO `wp_rg_form_view` VALUES("16843", "9", "2015-09-13 18:24:53", "217.69.133.232", "2");
INSERT INTO `wp_rg_form_view` VALUES("16844", "8", "2015-09-13 18:24:53", "217.69.133.232", "2");
INSERT INTO `wp_rg_form_view` VALUES("16845", "3", "2015-09-13 19:29:05", "68.180.229.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("16846", "9", "2015-09-13 19:29:08", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("16847", "8", "2015-09-13 19:29:08", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("16848", "3", "2015-09-13 20:49:14", "91.200.12.128", "18");
INSERT INTO `wp_rg_form_view` VALUES("16849", "9", "2015-09-13 20:49:14", "91.200.12.128", "3");
INSERT INTO `wp_rg_form_view` VALUES("16850", "8", "2015-09-13 20:49:14", "91.200.12.128", "3");
INSERT INTO `wp_rg_form_view` VALUES("16851", "3", "2015-09-13 21:18:38", "157.55.39.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("16852", "9", "2015-09-13 21:18:39", "157.55.39.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("16853", "8", "2015-09-13 21:18:39", "157.55.39.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("16854", "3", "2015-09-13 22:26:03", "66.188.42.60", "9");
INSERT INTO `wp_rg_form_view` VALUES("16855", "9", "2015-09-13 22:26:05", "66.188.42.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("16856", "8", "2015-09-13 22:26:05", "66.188.42.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("16857", "3", "2015-09-13 23:06:59", "217.69.133.231", "98");
INSERT INTO `wp_rg_form_view` VALUES("16858", "9", "2015-09-13 23:06:59", "217.69.133.231", "13");
INSERT INTO `wp_rg_form_view` VALUES("16859", "8", "2015-09-13 23:07:00", "217.69.133.231", "14");
INSERT INTO `wp_rg_form_view` VALUES("16860", "2", "2015-09-13 23:07:04", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("16861", "3", "2015-09-14 00:04:11", "67.248.28.8", "49");
INSERT INTO `wp_rg_form_view` VALUES("16862", "9", "2015-09-14 00:04:11", "67.248.28.8", "6");
INSERT INTO `wp_rg_form_view` VALUES("16863", "8", "2015-09-14 00:04:11", "67.248.28.8", "6");
INSERT INTO `wp_rg_form_view` VALUES("16864", "3", "2015-09-14 01:38:45", "66.249.81.194", "8");
INSERT INTO `wp_rg_form_view` VALUES("16865", "9", "2015-09-14 01:38:46", "66.249.81.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("16866", "8", "2015-09-14 01:38:46", "66.249.81.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("16867", "3", "2015-09-14 02:06:56", "207.46.13.60", "26");
INSERT INTO `wp_rg_form_view` VALUES("16868", "9", "2015-09-14 02:06:56", "207.46.13.60", "3");
INSERT INTO `wp_rg_form_view` VALUES("16869", "8", "2015-09-14 02:06:56", "207.46.13.60", "4");
INSERT INTO `wp_rg_form_view` VALUES("16870", "3", "2015-09-14 03:41:04", "157.55.39.19", "56");
INSERT INTO `wp_rg_form_view` VALUES("16871", "9", "2015-09-14 03:41:04", "157.55.39.19", "7");
INSERT INTO `wp_rg_form_view` VALUES("16872", "8", "2015-09-14 03:41:04", "157.55.39.19", "7");
INSERT INTO `wp_rg_form_view` VALUES("16873", "3", "2015-09-14 04:52:48", "66.249.79.155", "17");
INSERT INTO `wp_rg_form_view` VALUES("16874", "9", "2015-09-14 04:52:49", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16875", "8", "2015-09-14 04:52:49", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16876", "3", "2015-09-14 05:46:51", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("16877", "9", "2015-09-14 05:46:52", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16878", "8", "2015-09-14 05:46:52", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16879", "3", "2015-09-14 06:11:41", "68.180.229.161", "34");
INSERT INTO `wp_rg_form_view` VALUES("16880", "9", "2015-09-14 06:11:43", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16881", "8", "2015-09-14 06:11:43", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("16882", "3", "2015-09-14 07:07:51", "220.181.38.147", "33");
INSERT INTO `wp_rg_form_view` VALUES("16883", "9", "2015-09-14 07:07:52", "220.181.38.147", "4");
INSERT INTO `wp_rg_form_view` VALUES("16884", "8", "2015-09-14 07:07:52", "220.181.38.147", "4");
INSERT INTO `wp_rg_form_view` VALUES("16885", "3", "2015-09-14 08:20:35", "66.249.79.155", "16");
INSERT INTO `wp_rg_form_view` VALUES("16886", "9", "2015-09-14 08:20:36", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16887", "8", "2015-09-14 08:20:36", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16888", "3", "2015-09-14 09:38:24", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("16889", "9", "2015-09-14 09:38:25", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16890", "8", "2015-09-14 09:38:25", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("16891", "3", "2015-09-14 10:01:44", "217.69.133.231", "57");
INSERT INTO `wp_rg_form_view` VALUES("16892", "9", "2015-09-14 10:01:44", "217.69.133.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("16893", "8", "2015-09-14 10:01:44", "217.69.133.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("16894", "3", "2015-09-14 11:20:50", "68.180.229.161", "26");
INSERT INTO `wp_rg_form_view` VALUES("16895", "9", "2015-09-14 11:20:52", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16896", "8", "2015-09-14 11:20:52", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16897", "3", "2015-09-14 12:05:49", "66.249.79.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("16898", "9", "2015-09-14 12:05:50", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("16899", "8", "2015-09-14 12:05:50", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("16900", "1", "2015-09-14 12:48:44", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("16901", "3", "2015-09-14 13:09:40", "217.69.133.229", "17");
INSERT INTO `wp_rg_form_view` VALUES("16902", "9", "2015-09-14 13:09:40", "217.69.133.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("16903", "8", "2015-09-14 13:09:40", "217.69.133.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("16904", "1", "2015-09-14 14:08:44", "91.200.12.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("16905", "3", "2015-09-14 14:08:44", "91.200.12.95", "40");
INSERT INTO `wp_rg_form_view` VALUES("16906", "9", "2015-09-14 14:08:45", "91.200.12.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("16907", "8", "2015-09-14 14:08:45", "91.200.12.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("16908", "3", "2015-09-14 15:35:45", "66.249.79.155", "21");
INSERT INTO `wp_rg_form_view` VALUES("16909", "9", "2015-09-14 15:35:46", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16910", "8", "2015-09-14 15:35:46", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("16911", "3", "2015-09-14 16:03:00", "72.143.229.93", "65");
INSERT INTO `wp_rg_form_view` VALUES("16912", "9", "2015-09-14 16:03:00", "72.143.229.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("16913", "8", "2015-09-14 16:03:01", "72.143.229.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("16914", "3", "2015-09-14 17:39:37", "66.249.79.155", "59");
INSERT INTO `wp_rg_form_view` VALUES("16915", "9", "2015-09-14 17:39:39", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("16916", "8", "2015-09-14 17:39:39", "66.249.79.155", "7");
INSERT INTO `wp_rg_form_view` VALUES("16917", "3", "2015-09-14 18:09:37", "66.249.79.169", "56");
INSERT INTO `wp_rg_form_view` VALUES("16918", "9", "2015-09-14 18:09:38", "66.249.79.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("16919", "8", "2015-09-14 18:09:38", "66.249.79.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("16920", "1", "2015-09-14 18:27:15", "91.200.12.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("16921", "3", "2015-09-14 19:05:46", "66.249.79.155", "75");
INSERT INTO `wp_rg_form_view` VALUES("16922", "9", "2015-09-14 19:05:47", "66.249.79.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("16923", "8", "2015-09-14 19:05:47", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("16924", "3", "2015-09-14 20:02:13", "71.222.119.205", "121");
INSERT INTO `wp_rg_form_view` VALUES("16925", "9", "2015-09-14 20:02:13", "71.222.119.205", "15");
INSERT INTO `wp_rg_form_view` VALUES("16926", "8", "2015-09-14 20:02:14", "71.222.119.205", "15");
INSERT INTO `wp_rg_form_view` VALUES("16927", "1", "2015-09-14 20:33:18", "154.20.32.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("16928", "9", "2015-09-14 21:12:48", "66.249.79.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("16929", "3", "2015-09-14 21:12:52", "66.249.79.155", "33");
INSERT INTO `wp_rg_form_view` VALUES("16930", "8", "2015-09-14 21:12:53", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("16931", "3", "2015-09-14 22:28:26", "24.69.85.217", "299");
INSERT INTO `wp_rg_form_view` VALUES("16932", "9", "2015-09-14 22:28:27", "24.69.85.217", "37");
INSERT INTO `wp_rg_form_view` VALUES("16933", "8", "2015-09-14 22:28:27", "24.69.85.217", "37");
INSERT INTO `wp_rg_form_view` VALUES("16934", "1", "2015-09-14 22:52:57", "212.225.165.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("16935", "2", "2015-09-14 22:53:07", "212.225.165.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("16936", "3", "2015-09-14 23:56:29", "207.6.124.205", "8");
INSERT INTO `wp_rg_form_view` VALUES("16937", "9", "2015-09-14 23:56:30", "207.6.124.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("16938", "8", "2015-09-14 23:56:30", "207.6.124.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("16939", "7", "2015-09-15 00:01:07", "207.46.13.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("16940", "3", "2015-09-15 00:01:07", "207.46.13.162", "33");
INSERT INTO `wp_rg_form_view` VALUES("16941", "9", "2015-09-15 00:01:08", "207.46.13.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("16942", "8", "2015-09-15 00:01:08", "207.46.13.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("16943", "3", "2015-09-15 01:09:54", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("16944", "9", "2015-09-15 01:09:54", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16945", "8", "2015-09-15 01:09:55", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16946", "3", "2015-09-15 02:33:56", "24.108.144.134", "32");
INSERT INTO `wp_rg_form_view` VALUES("16947", "9", "2015-09-15 02:33:57", "24.108.144.134", "4");
INSERT INTO `wp_rg_form_view` VALUES("16948", "8", "2015-09-15 02:33:57", "24.108.144.134", "4");
INSERT INTO `wp_rg_form_view` VALUES("16949", "3", "2015-09-15 03:11:57", "157.55.39.79", "10");
INSERT INTO `wp_rg_form_view` VALUES("16950", "8", "2015-09-15 03:11:57", "157.55.39.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("16951", "9", "2015-09-15 03:11:58", "157.55.39.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("16952", "3", "2015-09-15 04:23:02", "87.11.71.247", "50");
INSERT INTO `wp_rg_form_view` VALUES("16953", "9", "2015-09-15 04:23:02", "87.11.71.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("16954", "8", "2015-09-15 04:23:02", "87.11.71.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("16955", "3", "2015-09-15 05:18:29", "68.180.229.161", "18");
INSERT INTO `wp_rg_form_view` VALUES("16956", "9", "2015-09-15 05:18:32", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16957", "8", "2015-09-15 05:18:32", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("16958", "3", "2015-09-15 06:06:10", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("16959", "9", "2015-09-15 06:06:11", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16960", "8", "2015-09-15 06:06:11", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("16961", "3", "2015-09-15 07:03:43", "66.249.79.169", "25");
INSERT INTO `wp_rg_form_view` VALUES("16962", "9", "2015-09-15 07:03:44", "66.249.79.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("16963", "8", "2015-09-15 07:03:44", "66.249.79.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("16964", "3", "2015-09-15 08:00:48", "211.202.2.122", "32");
INSERT INTO `wp_rg_form_view` VALUES("16965", "9", "2015-09-15 08:00:48", "211.202.2.122", "4");
INSERT INTO `wp_rg_form_view` VALUES("16966", "8", "2015-09-15 08:00:48", "211.202.2.122", "4");
INSERT INTO `wp_rg_form_view` VALUES("16967", "1", "2015-09-15 08:07:26", "112.111.185.49", "2");
INSERT INTO `wp_rg_form_view` VALUES("16968", "3", "2015-09-15 09:37:08", "157.55.39.79", "43");
INSERT INTO `wp_rg_form_view` VALUES("16969", "8", "2015-09-15 09:37:09", "157.55.39.79", "6");
INSERT INTO `wp_rg_form_view` VALUES("16970", "9", "2015-09-15 09:37:10", "157.55.39.79", "5");
INSERT INTO `wp_rg_form_view` VALUES("16971", "1", "2015-09-15 09:37:53", "112.111.185.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("16972", "3", "2015-09-15 10:01:25", "157.55.39.55", "42");
INSERT INTO `wp_rg_form_view` VALUES("16973", "8", "2015-09-15 10:01:25", "157.55.39.55", "6");
INSERT INTO `wp_rg_form_view` VALUES("16974", "9", "2015-09-15 10:01:26", "157.55.39.55", "5");
INSERT INTO `wp_rg_form_view` VALUES("16975", "1", "2015-09-15 10:23:23", "116.211.223.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("16976", "3", "2015-09-15 11:06:10", "66.43.50.8", "66");
INSERT INTO `wp_rg_form_view` VALUES("16977", "9", "2015-09-15 11:06:10", "66.43.50.8", "8");
INSERT INTO `wp_rg_form_view` VALUES("16978", "8", "2015-09-15 11:06:10", "66.43.50.8", "8");
INSERT INTO `wp_rg_form_view` VALUES("16979", "1", "2015-09-15 12:04:09", "91.200.12.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("16980", "3", "2015-09-15 12:04:09", "91.200.12.95", "40");
INSERT INTO `wp_rg_form_view` VALUES("16981", "9", "2015-09-15 12:04:10", "91.200.12.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("16982", "8", "2015-09-15 12:04:10", "91.200.12.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("16983", "9", "2015-09-15 13:11:24", "100.43.81.131", "5");
INSERT INTO `wp_rg_form_view` VALUES("16984", "3", "2015-09-15 13:11:26", "100.43.81.131", "33");
INSERT INTO `wp_rg_form_view` VALUES("16985", "8", "2015-09-15 13:11:26", "100.43.81.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("16986", "3", "2015-09-15 14:02:50", "91.200.12.128", "35");
INSERT INTO `wp_rg_form_view` VALUES("16987", "9", "2015-09-15 14:02:51", "91.200.12.128", "6");
INSERT INTO `wp_rg_form_view` VALUES("16988", "8", "2015-09-15 14:02:51", "91.200.12.128", "5");
INSERT INTO `wp_rg_form_view` VALUES("16989", "6", "2015-09-15 15:49:15", "148.251.124.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("16990", "3", "2015-09-15 15:49:17", "148.251.124.42", "8");
INSERT INTO `wp_rg_form_view` VALUES("16991", "9", "2015-09-15 15:49:17", "148.251.124.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("16992", "8", "2015-09-15 15:49:18", "148.251.124.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("16993", "3", "2015-09-15 16:09:37", "157.55.39.55", "26");
INSERT INTO `wp_rg_form_view` VALUES("16994", "9", "2015-09-15 16:09:37", "157.55.39.55", "4");
INSERT INTO `wp_rg_form_view` VALUES("16995", "8", "2015-09-15 16:09:37", "157.55.39.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("16996", "3", "2015-09-15 17:17:55", "66.249.79.155", "112");
INSERT INTO `wp_rg_form_view` VALUES("16997", "9", "2015-09-15 17:17:55", "66.249.79.155", "13");
INSERT INTO `wp_rg_form_view` VALUES("16998", "8", "2015-09-15 17:17:56", "66.249.79.155", "14");
INSERT INTO `wp_rg_form_view` VALUES("16999", "3", "2015-09-15 18:02:36", "66.249.79.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("17000", "9", "2015-09-15 18:02:36", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("17001", "8", "2015-09-15 18:02:37", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("17002", "1", "2015-09-15 19:07:34", "91.200.12.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("17003", "3", "2015-09-15 19:07:35", "91.200.12.95", "132");
INSERT INTO `wp_rg_form_view` VALUES("17004", "9", "2015-09-15 19:07:35", "91.200.12.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("17005", "8", "2015-09-15 19:07:35", "91.200.12.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("17006", "3", "2015-09-15 20:17:21", "174.127.133.75", "560");
INSERT INTO `wp_rg_form_view` VALUES("17007", "9", "2015-09-15 20:17:21", "174.127.133.75", "71");
INSERT INTO `wp_rg_form_view` VALUES("17008", "8", "2015-09-15 20:17:22", "174.127.133.75", "69");
INSERT INTO `wp_rg_form_view` VALUES("17009", "1", "2015-09-15 20:20:03", "174.127.133.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("17010", "2", "2015-09-15 20:22:32", "174.127.133.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("17011", "3", "2015-09-15 21:00:25", "174.127.133.71", "59");
INSERT INTO `wp_rg_form_view` VALUES("17012", "9", "2015-09-15 21:00:26", "174.127.133.71", "7");
INSERT INTO `wp_rg_form_view` VALUES("17013", "8", "2015-09-15 21:00:26", "174.127.133.71", "7");
INSERT INTO `wp_rg_form_view` VALUES("17014", "3", "2015-09-15 22:01:14", "75.156.32.27", "77");
INSERT INTO `wp_rg_form_view` VALUES("17015", "9", "2015-09-15 22:01:14", "75.156.32.27", "9");
INSERT INTO `wp_rg_form_view` VALUES("17016", "8", "2015-09-15 22:01:14", "75.156.32.27", "10");
INSERT INTO `wp_rg_form_view` VALUES("17017", "5", "2015-09-15 22:59:53", "162.13.138.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("17018", "3", "2015-09-15 23:05:42", "157.55.39.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("17019", "8", "2015-09-15 23:05:42", "157.55.39.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("17020", "9", "2015-09-15 23:05:42", "157.55.39.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("17021", "3", "2015-09-16 00:02:41", "157.55.39.62", "104");
INSERT INTO `wp_rg_form_view` VALUES("17022", "9", "2015-09-16 00:02:42", "157.55.39.62", "13");
INSERT INTO `wp_rg_form_view` VALUES("17023", "8", "2015-09-16 00:02:42", "157.55.39.62", "13");
INSERT INTO `wp_rg_form_view` VALUES("17024", "1", "2015-09-16 00:19:37", "91.200.12.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("17025", "3", "2015-09-16 01:34:37", "184.66.97.38", "8");
INSERT INTO `wp_rg_form_view` VALUES("17026", "9", "2015-09-16 01:34:37", "184.66.97.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("17027", "8", "2015-09-16 01:34:38", "184.66.97.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("17028", "3", "2015-09-16 03:03:48", "66.249.67.76", "42");
INSERT INTO `wp_rg_form_view` VALUES("17029", "9", "2015-09-16 03:03:49", "66.249.67.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("17030", "8", "2015-09-16 03:03:49", "66.249.67.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("17031", "3", "2015-09-16 04:15:47", "157.55.39.245", "25");
INSERT INTO `wp_rg_form_view` VALUES("17032", "9", "2015-09-16 04:15:47", "157.55.39.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("17033", "8", "2015-09-16 04:15:47", "157.55.39.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("17034", "1", "2015-09-16 05:09:01", "91.200.12.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("17035", "3", "2015-09-16 05:09:01", "91.200.12.95", "32");
INSERT INTO `wp_rg_form_view` VALUES("17036", "9", "2015-09-16 05:09:01", "91.200.12.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("17037", "8", "2015-09-16 05:09:02", "91.200.12.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("17038", "3", "2015-09-16 06:00:16", "207.46.13.180", "40");
INSERT INTO `wp_rg_form_view` VALUES("17039", "9", "2015-09-16 06:00:17", "207.46.13.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("17040", "8", "2015-09-16 06:00:17", "207.46.13.180", "5");
INSERT INTO `wp_rg_form_view` VALUES("17041", "3", "2015-09-16 07:04:45", "91.200.12.128", "34");
INSERT INTO `wp_rg_form_view` VALUES("17042", "9", "2015-09-16 07:04:45", "91.200.12.128", "5");
INSERT INTO `wp_rg_form_view` VALUES("17043", "8", "2015-09-16 07:04:46", "91.200.12.128", "5");
INSERT INTO `wp_rg_form_view` VALUES("17044", "1", "2015-09-16 07:07:14", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("17045", "3", "2015-09-16 08:03:15", "188.165.15.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("17046", "9", "2015-09-16 08:03:15", "188.165.15.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("17047", "8", "2015-09-16 08:03:15", "188.165.15.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("17048", "9", "2015-09-16 09:06:36", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("17049", "3", "2015-09-16 09:30:54", "207.46.13.137", "25");
INSERT INTO `wp_rg_form_view` VALUES("17050", "8", "2015-09-16 09:30:55", "207.46.13.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("17051", "3", "2015-09-16 10:14:31", "68.180.229.161", "46");
INSERT INTO `wp_rg_form_view` VALUES("17052", "8", "2015-09-16 10:14:31", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("17053", "9", "2015-09-16 10:14:32", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("17054", "3", "2015-09-16 11:01:33", "207.46.13.137", "48");
INSERT INTO `wp_rg_form_view` VALUES("17055", "9", "2015-09-16 11:01:33", "207.46.13.137", "6");
INSERT INTO `wp_rg_form_view` VALUES("17056", "8", "2015-09-16 11:01:33", "207.46.13.137", "6");
INSERT INTO `wp_rg_form_view` VALUES("17057", "1", "2015-09-16 11:06:30", "91.200.12.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("17058", "2", "2015-09-16 11:10:52", "157.55.39.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("17059", "3", "2015-09-16 12:03:54", "157.55.39.42", "42");
INSERT INTO `wp_rg_form_view` VALUES("17060", "9", "2015-09-16 12:03:55", "157.55.39.42", "5");
INSERT INTO `wp_rg_form_view` VALUES("17061", "8", "2015-09-16 12:03:55", "157.55.39.42", "5");
INSERT INTO `wp_rg_form_view` VALUES("17062", "3", "2015-09-16 13:26:01", "188.165.15.177", "16");
INSERT INTO `wp_rg_form_view` VALUES("17063", "9", "2015-09-16 13:26:02", "188.165.15.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("17064", "8", "2015-09-16 13:26:02", "188.165.15.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("17065", "3", "2015-09-16 14:03:44", "188.165.15.177", "50");
INSERT INTO `wp_rg_form_view` VALUES("17066", "9", "2015-09-16 14:03:45", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17067", "8", "2015-09-16 14:03:45", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17068", "3", "2015-09-16 15:08:30", "184.66.97.38", "32");
INSERT INTO `wp_rg_form_view` VALUES("17069", "9", "2015-09-16 15:08:31", "184.66.97.38", "5");
INSERT INTO `wp_rg_form_view` VALUES("17070", "8", "2015-09-16 15:08:31", "184.66.97.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("17071", "3", "2015-09-16 16:07:32", "157.55.39.42", "25");
INSERT INTO `wp_rg_form_view` VALUES("17072", "9", "2015-09-16 16:07:32", "157.55.39.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("17073", "8", "2015-09-16 16:07:32", "157.55.39.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("17074", "3", "2015-09-16 17:01:38", "157.55.39.245", "66");
INSERT INTO `wp_rg_form_view` VALUES("17075", "9", "2015-09-16 17:01:38", "157.55.39.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("17076", "8", "2015-09-16 17:01:38", "157.55.39.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("17077", "3", "2015-09-16 18:00:09", "157.55.39.245", "114");
INSERT INTO `wp_rg_form_view` VALUES("17078", "9", "2015-09-16 18:00:10", "157.55.39.245", "14");
INSERT INTO `wp_rg_form_view` VALUES("17079", "8", "2015-09-16 18:00:10", "157.55.39.245", "14");
INSERT INTO `wp_rg_form_view` VALUES("17080", "2", "2015-09-16 18:06:38", "157.55.39.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("17081", "1", "2015-09-16 18:14:36", "157.55.39.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("17082", "3", "2015-09-16 19:23:43", "157.55.39.132", "33");
INSERT INTO `wp_rg_form_view` VALUES("17083", "9", "2015-09-16 19:23:45", "157.55.39.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("17084", "8", "2015-09-16 19:23:45", "157.55.39.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("17085", "1", "2015-09-16 19:40:19", "157.55.39.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("17086", "2", "2015-09-16 19:42:46", "157.55.39.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("17087", "3", "2015-09-16 20:04:09", "157.55.39.132", "129");
INSERT INTO `wp_rg_form_view` VALUES("17088", "9", "2015-09-16 20:04:09", "157.55.39.132", "17");
INSERT INTO `wp_rg_form_view` VALUES("17089", "8", "2015-09-16 20:04:09", "157.55.39.132", "17");
INSERT INTO `wp_rg_form_view` VALUES("17090", "3", "2015-09-16 21:07:31", "157.55.39.42", "24");
INSERT INTO `wp_rg_form_view` VALUES("17091", "9", "2015-09-16 21:07:31", "157.55.39.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("17092", "8", "2015-09-16 21:07:31", "157.55.39.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("17093", "3", "2015-09-16 22:00:28", "157.55.39.245", "54");
INSERT INTO `wp_rg_form_view` VALUES("17094", "9", "2015-09-16 22:00:28", "157.55.39.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("17095", "8", "2015-09-16 22:00:28", "157.55.39.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("17096", "3", "2015-09-16 23:36:42", "180.180.73.37", "33");
INSERT INTO `wp_rg_form_view` VALUES("17097", "9", "2015-09-16 23:36:44", "180.180.73.37", "4");
INSERT INTO `wp_rg_form_view` VALUES("17098", "8", "2015-09-16 23:36:44", "180.180.73.37", "4");
INSERT INTO `wp_rg_form_view` VALUES("17099", "3", "2015-09-17 00:06:58", "154.5.183.23", "103");
INSERT INTO `wp_rg_form_view` VALUES("17100", "9", "2015-09-17 00:06:58", "154.5.183.23", "12");
INSERT INTO `wp_rg_form_view` VALUES("17101", "8", "2015-09-17 00:06:58", "154.5.183.23", "12");
INSERT INTO `wp_rg_form_view` VALUES("17102", "1", "2015-09-17 00:09:18", "154.5.183.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("17103", "3", "2015-09-17 01:10:05", "157.55.39.245", "16");
INSERT INTO `wp_rg_form_view` VALUES("17104", "9", "2015-09-17 01:10:06", "157.55.39.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("17105", "8", "2015-09-17 01:10:06", "157.55.39.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("17106", "3", "2015-09-17 02:04:31", "65.55.209.82", "81");
INSERT INTO `wp_rg_form_view` VALUES("17107", "9", "2015-09-17 02:04:31", "65.55.209.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("17108", "8", "2015-09-17 02:04:31", "65.55.209.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("17109", "1", "2015-09-17 02:04:36", "65.55.209.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("17110", "2", "2015-09-17 02:04:41", "65.55.209.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("17111", "3", "2015-09-17 03:05:11", "66.249.79.162", "88");
INSERT INTO `wp_rg_form_view` VALUES("17112", "9", "2015-09-17 03:05:11", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17113", "8", "2015-09-17 03:05:11", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17114", "1", "2015-09-17 03:07:45", "157.56.2.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("17115", "3", "2015-09-17 04:12:24", "66.249.79.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("17116", "9", "2015-09-17 04:12:24", "66.249.79.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("17117", "8", "2015-09-17 04:12:24", "66.249.79.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("17118", "3", "2015-09-17 05:10:42", "157.55.39.42", "57");
INSERT INTO `wp_rg_form_view` VALUES("17119", "9", "2015-09-17 05:10:43", "157.55.39.42", "8");
INSERT INTO `wp_rg_form_view` VALUES("17120", "8", "2015-09-17 05:10:43", "157.55.39.42", "8");
INSERT INTO `wp_rg_form_view` VALUES("17121", "3", "2015-09-17 06:02:20", "68.2.236.114", "89");
INSERT INTO `wp_rg_form_view` VALUES("17122", "9", "2015-09-17 06:02:20", "68.2.236.114", "11");
INSERT INTO `wp_rg_form_view` VALUES("17123", "8", "2015-09-17 06:02:20", "68.2.236.114", "11");
INSERT INTO `wp_rg_form_view` VALUES("17124", "1", "2015-09-17 06:16:24", "51.254.83.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("17125", "3", "2015-09-17 07:22:15", "157.55.39.42", "16");
INSERT INTO `wp_rg_form_view` VALUES("17126", "9", "2015-09-17 07:22:16", "157.55.39.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("17127", "8", "2015-09-17 07:22:17", "157.55.39.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("17128", "3", "2015-09-17 08:03:34", "24.68.98.249", "32");
INSERT INTO `wp_rg_form_view` VALUES("17129", "9", "2015-09-17 08:03:34", "24.68.98.249", "5");
INSERT INTO `wp_rg_form_view` VALUES("17130", "8", "2015-09-17 08:03:35", "24.68.98.249", "4");
INSERT INTO `wp_rg_form_view` VALUES("17131", "3", "2015-09-17 09:07:04", "68.180.229.161", "26");
INSERT INTO `wp_rg_form_view` VALUES("17132", "9", "2015-09-17 09:07:04", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("17133", "8", "2015-09-17 09:07:05", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("17134", "9", "2015-09-17 10:03:15", "157.55.39.229", "11");
INSERT INTO `wp_rg_form_view` VALUES("17135", "3", "2015-09-17 10:03:15", "157.55.39.229", "73");
INSERT INTO `wp_rg_form_view` VALUES("17136", "8", "2015-09-17 10:03:15", "157.55.39.229", "10");
INSERT INTO `wp_rg_form_view` VALUES("17137", "3", "2015-09-17 11:28:11", "66.249.79.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("17138", "9", "2015-09-17 11:28:12", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("17139", "8", "2015-09-17 11:28:12", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("17140", "3", "2015-09-17 12:02:43", "188.165.15.177", "41");
INSERT INTO `wp_rg_form_view` VALUES("17141", "9", "2015-09-17 12:02:43", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17142", "8", "2015-09-17 12:02:44", "188.165.15.177", "5");
INSERT INTO `wp_rg_form_view` VALUES("17143", "3", "2015-09-17 13:15:19", "24.78.100.173", "26");
INSERT INTO `wp_rg_form_view` VALUES("17144", "9", "2015-09-17 13:15:19", "24.78.100.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("17145", "8", "2015-09-17 13:15:19", "24.78.100.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("17146", "3", "2015-09-17 14:07:22", "213.133.103.175", "114");
INSERT INTO `wp_rg_form_view` VALUES("17147", "9", "2015-09-17 14:07:23", "213.133.103.175", "14");
INSERT INTO `wp_rg_form_view` VALUES("17148", "8", "2015-09-17 14:07:23", "213.133.103.175", "14");
INSERT INTO `wp_rg_form_view` VALUES("17149", "3", "2015-09-17 15:07:19", "213.133.103.175", "58");
INSERT INTO `wp_rg_form_view` VALUES("17150", "9", "2015-09-17 15:07:22", "213.133.103.175", "7");
INSERT INTO `wp_rg_form_view` VALUES("17151", "8", "2015-09-17 15:07:22", "213.133.103.175", "7");
INSERT INTO `wp_rg_form_view` VALUES("17152", "3", "2015-09-17 16:44:56", "188.165.15.177", "9");
INSERT INTO `wp_rg_form_view` VALUES("17153", "9", "2015-09-17 16:44:57", "188.165.15.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("17154", "8", "2015-09-17 16:44:57", "188.165.15.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("17155", "3", "2015-09-17 17:02:15", "207.46.13.46", "33");
INSERT INTO `wp_rg_form_view` VALUES("17156", "9", "2015-09-17 17:02:15", "207.46.13.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("17157", "8", "2015-09-17 17:02:16", "207.46.13.46", "4");
INSERT INTO `wp_rg_form_view` VALUES("17158", "3", "2015-09-17 18:18:23", "66.45.239.118", "16");
INSERT INTO `wp_rg_form_view` VALUES("17159", "9", "2015-09-17 18:18:24", "66.45.239.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("17160", "8", "2015-09-17 18:18:24", "66.45.239.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("17161", "3", "2015-09-17 19:02:18", "207.46.13.62", "106");
INSERT INTO `wp_rg_form_view` VALUES("17162", "9", "2015-09-17 19:02:18", "207.46.13.62", "17");
INSERT INTO `wp_rg_form_view` VALUES("17163", "8", "2015-09-17 19:02:18", "207.46.13.62", "14");
INSERT INTO `wp_rg_form_view` VALUES("17164", "3", "2015-09-17 20:07:56", "157.55.39.245", "108");
INSERT INTO `wp_rg_form_view` VALUES("17165", "9", "2015-09-17 20:07:56", "157.55.39.245", "13");
INSERT INTO `wp_rg_form_view` VALUES("17166", "8", "2015-09-17 20:07:57", "157.55.39.245", "13");
INSERT INTO `wp_rg_form_view` VALUES("17167", "3", "2015-09-17 21:21:30", "157.55.39.132", "55");
INSERT INTO `wp_rg_form_view` VALUES("17168", "8", "2015-09-17 21:21:30", "157.55.39.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("17169", "9", "2015-09-17 21:21:32", "157.55.39.132", "7");
INSERT INTO `wp_rg_form_view` VALUES("17170", "3", "2015-09-17 22:03:14", "104.140.70.34", "64");
INSERT INTO `wp_rg_form_view` VALUES("17171", "9", "2015-09-17 22:03:14", "104.140.70.34", "8");
INSERT INTO `wp_rg_form_view` VALUES("17172", "8", "2015-09-17 22:03:14", "104.140.70.34", "9");
INSERT INTO `wp_rg_form_view` VALUES("17173", "3", "2015-09-17 23:20:10", "157.55.39.245", "44");
INSERT INTO `wp_rg_form_view` VALUES("17174", "9", "2015-09-17 23:20:10", "157.55.39.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("17175", "8", "2015-09-17 23:20:11", "157.55.39.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("17176", "3", "2015-09-18 00:11:25", "188.165.15.177", "79");
INSERT INTO `wp_rg_form_view` VALUES("17177", "8", "2015-09-18 00:11:26", "188.165.15.177", "10");
INSERT INTO `wp_rg_form_view` VALUES("17178", "9", "2015-09-18 00:11:27", "188.165.15.177", "9");
INSERT INTO `wp_rg_form_view` VALUES("17179", "1", "2015-09-18 01:14:27", "221.234.77.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("17180", "3", "2015-09-18 01:14:27", "221.234.77.117", "43");
INSERT INTO `wp_rg_form_view` VALUES("17181", "9", "2015-09-18 01:14:27", "221.234.77.117", "5");
INSERT INTO `wp_rg_form_view` VALUES("17182", "8", "2015-09-18 01:14:27", "221.234.77.117", "5");
INSERT INTO `wp_rg_form_view` VALUES("17183", "3", "2015-09-18 02:07:27", "96.50.93.10", "72");
INSERT INTO `wp_rg_form_view` VALUES("17184", "9", "2015-09-18 02:07:27", "96.50.93.10", "9");
INSERT INTO `wp_rg_form_view` VALUES("17185", "8", "2015-09-18 02:07:27", "96.50.93.10", "9");
INSERT INTO `wp_rg_form_view` VALUES("17186", "1", "2015-09-18 02:13:20", "96.50.93.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("17187", "3", "2015-09-18 03:14:16", "216.244.81.34", "41");
INSERT INTO `wp_rg_form_view` VALUES("17188", "9", "2015-09-18 03:14:17", "216.244.81.34", "6");
INSERT INTO `wp_rg_form_view` VALUES("17189", "8", "2015-09-18 03:14:17", "216.244.81.34", "5");
INSERT INTO `wp_rg_form_view` VALUES("17190", "3", "2015-09-18 04:17:25", "66.249.79.155", "16");
INSERT INTO `wp_rg_form_view` VALUES("17191", "9", "2015-09-18 04:17:25", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("17192", "8", "2015-09-18 04:17:25", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("17193", "3", "2015-09-18 05:21:39", "188.165.15.177", "16");
INSERT INTO `wp_rg_form_view` VALUES("17194", "9", "2015-09-18 05:21:40", "188.165.15.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("17195", "8", "2015-09-18 05:21:40", "188.165.15.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("17196", "7", "2015-09-18 05:40:33", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("17197", "3", "2015-09-18 06:07:59", "207.46.13.46", "8");
INSERT INTO `wp_rg_form_view` VALUES("17198", "9", "2015-09-18 06:08:00", "207.46.13.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("17199", "8", "2015-09-18 06:08:00", "207.46.13.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("17200", "3", "2015-09-18 07:21:39", "199.21.99.202", "124");
INSERT INTO `wp_rg_form_view` VALUES("17201", "9", "2015-09-18 07:21:41", "199.21.99.202", "15");
INSERT INTO `wp_rg_form_view` VALUES("17202", "8", "2015-09-18 07:21:41", "199.21.99.202", "15");
INSERT INTO `wp_rg_form_view` VALUES("17203", "3", "2015-09-18 08:14:41", "66.249.79.155", "25");
INSERT INTO `wp_rg_form_view` VALUES("17204", "9", "2015-09-18 08:14:42", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("17205", "8", "2015-09-18 08:14:42", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("17206", "3", "2015-09-18 09:27:23", "188.165.15.177", "42");
INSERT INTO `wp_rg_form_view` VALUES("17207", "9", "2015-09-18 09:27:23", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17208", "8", "2015-09-18 09:27:23", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17209", "5", "2015-09-18 09:43:35", "188.165.15.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("17210", "3", "2015-09-18 10:06:34", "188.165.15.177", "18");
INSERT INTO `wp_rg_form_view` VALUES("17211", "9", "2015-09-18 10:06:35", "188.165.15.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("17212", "8", "2015-09-18 10:06:35", "188.165.15.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("17213", "3", "2015-09-18 11:09:28", "208.115.113.83", "41");
INSERT INTO `wp_rg_form_view` VALUES("17214", "9", "2015-09-18 11:32:40", "180.180.105.127", "4");
INSERT INTO `wp_rg_form_view` VALUES("17215", "8", "2015-09-18 11:32:40", "180.180.105.127", "4");
INSERT INTO `wp_rg_form_view` VALUES("17216", "3", "2015-09-18 12:23:21", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("17217", "9", "2015-09-18 12:23:22", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("17218", "8", "2015-09-18 12:23:22", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("17219", "3", "2015-09-18 13:05:49", "66.249.79.155", "145");
INSERT INTO `wp_rg_form_view` VALUES("17220", "9", "2015-09-18 13:05:49", "66.249.79.155", "19");
INSERT INTO `wp_rg_form_view` VALUES("17221", "8", "2015-09-18 13:05:49", "66.249.79.155", "19");
INSERT INTO `wp_rg_form_view` VALUES("17222", "6", "2015-09-18 13:19:45", "212.83.191.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("17223", "2", "2015-09-18 13:50:58", "104.40.80.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("17224", "1", "2015-09-18 13:50:59", "104.40.80.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("17225", "3", "2015-09-18 14:02:23", "85.25.198.9", "65");
INSERT INTO `wp_rg_form_view` VALUES("17226", "9", "2015-09-18 14:02:23", "85.25.198.9", "9");
INSERT INTO `wp_rg_form_view` VALUES("17227", "8", "2015-09-18 14:02:23", "85.25.198.9", "9");
INSERT INTO `wp_rg_form_view` VALUES("17228", "2", "2015-09-18 15:23:18", "104.131.17.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("17229", "3", "2015-09-18 15:23:18", "104.131.17.216", "189");
INSERT INTO `wp_rg_form_view` VALUES("17230", "1", "2015-09-18 15:23:18", "104.131.17.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("17231", "9", "2015-09-18 15:23:19", "104.131.17.216", "23");
INSERT INTO `wp_rg_form_view` VALUES("17232", "8", "2015-09-18 15:23:19", "104.131.17.216", "23");
INSERT INTO `wp_rg_form_view` VALUES("17233", "3", "2015-09-18 16:06:53", "180.180.228.212", "50");
INSERT INTO `wp_rg_form_view` VALUES("17234", "9", "2015-09-18 16:06:53", "180.180.228.212", "6");
INSERT INTO `wp_rg_form_view` VALUES("17235", "8", "2015-09-18 16:06:54", "180.180.228.212", "6");
INSERT INTO `wp_rg_form_view` VALUES("17236", "3", "2015-09-18 18:04:53", "207.46.13.117", "40");
INSERT INTO `wp_rg_form_view` VALUES("17237", "9", "2015-09-18 18:04:55", "207.46.13.117", "5");
INSERT INTO `wp_rg_form_view` VALUES("17238", "8", "2015-09-18 18:04:56", "207.46.13.117", "5");
INSERT INTO `wp_rg_form_view` VALUES("17239", "3", "2015-09-18 20:07:31", "24.108.144.199", "16");
INSERT INTO `wp_rg_form_view` VALUES("17240", "9", "2015-09-18 20:07:31", "24.108.144.199", "2");
INSERT INTO `wp_rg_form_view` VALUES("17241", "8", "2015-09-18 20:07:31", "24.108.144.199", "2");
INSERT INTO `wp_rg_form_view` VALUES("17242", "1", "2015-09-18 20:35:56", "176.9.1.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("17243", "3", "2015-09-18 21:01:52", "213.133.103.175", "129");
INSERT INTO `wp_rg_form_view` VALUES("17244", "9", "2015-09-18 21:01:52", "213.133.103.175", "16");
INSERT INTO `wp_rg_form_view` VALUES("17245", "8", "2015-09-18 21:01:52", "213.133.103.175", "16");
INSERT INTO `wp_rg_form_view` VALUES("17246", "2", "2015-09-18 22:07:43", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("17247", "3", "2015-09-18 22:07:45", "68.180.229.161", "50");
INSERT INTO `wp_rg_form_view` VALUES("17248", "9", "2015-09-18 22:07:45", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("17249", "8", "2015-09-18 22:07:45", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("17250", "3", "2015-09-18 23:16:51", "207.46.13.181", "9");
INSERT INTO `wp_rg_form_view` VALUES("17251", "9", "2015-09-18 23:16:51", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("17252", "8", "2015-09-18 23:16:51", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("17253", "3", "2015-09-19 00:21:37", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("17254", "9", "2015-09-19 00:43:32", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("17255", "8", "2015-09-19 00:43:32", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("17256", "3", "2015-09-19 01:48:40", "199.217.117.207", "8");
INSERT INTO `wp_rg_form_view` VALUES("17257", "9", "2015-09-19 01:48:41", "199.217.117.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("17258", "8", "2015-09-19 01:48:41", "199.217.117.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("17259", "3", "2015-09-19 02:06:59", "188.165.15.177", "139");
INSERT INTO `wp_rg_form_view` VALUES("17260", "9", "2015-09-19 02:06:59", "188.165.15.177", "17");
INSERT INTO `wp_rg_form_view` VALUES("17261", "8", "2015-09-19 02:06:59", "188.165.15.177", "17");
INSERT INTO `wp_rg_form_view` VALUES("17262", "3", "2015-09-19 03:43:38", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("17263", "9", "2015-09-19 03:43:39", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("17264", "8", "2015-09-19 03:43:39", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("17265", "3", "2015-09-19 04:36:48", "66.249.79.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("17266", "9", "2015-09-19 04:36:48", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17267", "8", "2015-09-19 04:36:49", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17268", "3", "2015-09-19 05:06:39", "213.133.103.175", "116");
INSERT INTO `wp_rg_form_view` VALUES("17269", "9", "2015-09-19 05:06:40", "213.133.103.175", "14");
INSERT INTO `wp_rg_form_view` VALUES("17270", "8", "2015-09-19 05:06:40", "213.133.103.175", "14");
INSERT INTO `wp_rg_form_view` VALUES("17271", "3", "2015-09-19 06:07:29", "136.243.17.161", "90");
INSERT INTO `wp_rg_form_view` VALUES("17272", "9", "2015-09-19 06:07:29", "136.243.17.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("17273", "8", "2015-09-19 06:07:30", "136.243.17.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("17274", "3", "2015-09-19 07:25:37", "66.249.79.155", "24");
INSERT INTO `wp_rg_form_view` VALUES("17275", "9", "2015-09-19 07:25:37", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("17276", "8", "2015-09-19 07:25:38", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("17277", "3", "2015-09-19 08:18:04", "180.180.113.110", "73");
INSERT INTO `wp_rg_form_view` VALUES("17278", "9", "2015-09-19 08:18:05", "180.180.113.110", "9");
INSERT INTO `wp_rg_form_view` VALUES("17279", "8", "2015-09-19 08:18:05", "180.180.113.110", "9");
INSERT INTO `wp_rg_form_view` VALUES("17280", "3", "2015-09-19 09:10:59", "207.46.13.117", "717");
INSERT INTO `wp_rg_form_view` VALUES("17281", "9", "2015-09-19 09:10:59", "207.46.13.117", "86");
INSERT INTO `wp_rg_form_view` VALUES("17282", "8", "2015-09-19 09:10:59", "207.46.13.117", "90");
INSERT INTO `wp_rg_form_view` VALUES("17283", "2", "2015-09-19 09:20:14", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("17284", "1", "2015-09-19 09:20:18", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("17285", "5", "2015-09-19 09:26:20", "213.239.211.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("17286", "3", "2015-09-19 10:02:57", "188.165.15.177", "24");
INSERT INTO `wp_rg_form_view` VALUES("17287", "9", "2015-09-19 10:02:57", "188.165.15.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("17288", "8", "2015-09-19 10:02:57", "188.165.15.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("17289", "3", "2015-09-19 11:00:12", "66.249.79.155", "32");
INSERT INTO `wp_rg_form_view` VALUES("17290", "9", "2015-09-19 11:00:12", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("17291", "8", "2015-09-19 11:00:12", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("17292", "2", "2015-09-19 11:00:55", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("17293", "1", "2015-09-19 12:14:39", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("17294", "3", "2015-09-19 12:14:41", "51.254.83.80", "41");
INSERT INTO `wp_rg_form_view` VALUES("17295", "9", "2015-09-19 12:14:41", "51.254.83.80", "5");
INSERT INTO `wp_rg_form_view` VALUES("17296", "8", "2015-09-19 12:14:41", "51.254.83.80", "5");
INSERT INTO `wp_rg_form_view` VALUES("17297", "3", "2015-09-19 13:09:24", "188.165.15.177", "75");
INSERT INTO `wp_rg_form_view` VALUES("17298", "9", "2015-09-19 13:09:24", "188.165.15.177", "10");
INSERT INTO `wp_rg_form_view` VALUES("17299", "8", "2015-09-19 13:09:24", "188.165.15.177", "10");
INSERT INTO `wp_rg_form_view` VALUES("17300", "1", "2015-09-19 13:45:41", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("17301", "3", "2015-09-19 14:24:32", "66.249.79.162", "57");
INSERT INTO `wp_rg_form_view` VALUES("17302", "9", "2015-09-19 14:24:33", "66.249.79.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("17303", "8", "2015-09-19 14:24:33", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("17304", "3", "2015-09-19 15:00:23", "66.249.79.162", "154");
INSERT INTO `wp_rg_form_view` VALUES("17305", "9", "2015-09-19 15:00:23", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("17306", "8", "2015-09-19 15:00:24", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("17307", "3", "2015-09-19 16:02:43", "66.249.79.169", "57");
INSERT INTO `wp_rg_form_view` VALUES("17308", "9", "2015-09-19 16:02:43", "66.249.79.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("17309", "8", "2015-09-19 16:02:44", "66.249.79.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("17310", "2", "2015-09-19 16:12:11", "188.165.15.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("17311", "3", "2015-09-19 17:19:29", "188.165.15.177", "142");
INSERT INTO `wp_rg_form_view` VALUES("17312", "9", "2015-09-19 17:19:29", "188.165.15.177", "17");
INSERT INTO `wp_rg_form_view` VALUES("17313", "8", "2015-09-19 17:19:29", "188.165.15.177", "17");
INSERT INTO `wp_rg_form_view` VALUES("17314", "3", "2015-09-19 18:19:31", "208.115.111.66", "24");
INSERT INTO `wp_rg_form_view` VALUES("17315", "9", "2015-09-19 18:19:32", "208.115.111.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("17316", "8", "2015-09-19 18:19:32", "208.115.111.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("17317", "3", "2015-09-19 19:02:12", "66.249.79.155", "93");
INSERT INTO `wp_rg_form_view` VALUES("17318", "9", "2015-09-19 19:02:12", "66.249.79.155", "12");
INSERT INTO `wp_rg_form_view` VALUES("17319", "8", "2015-09-19 19:02:12", "66.249.79.155", "13");
INSERT INTO `wp_rg_form_view` VALUES("17320", "8", "2015-09-19 20:18:27", "188.165.15.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("17321", "3", "2015-09-19 20:18:27", "188.165.15.177", "68");
INSERT INTO `wp_rg_form_view` VALUES("17322", "9", "2015-09-19 20:18:27", "188.165.15.177", "7");
INSERT INTO `wp_rg_form_view` VALUES("17323", "3", "2015-09-19 21:01:45", "68.180.229.161", "108");
INSERT INTO `wp_rg_form_view` VALUES("17324", "9", "2015-09-19 21:01:45", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("17325", "8", "2015-09-19 21:01:46", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("17326", "1", "2015-09-19 21:10:51", "91.200.12.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("17327", "3", "2015-09-19 22:00:50", "180.180.66.28", "107");
INSERT INTO `wp_rg_form_view` VALUES("17328", "9", "2015-09-19 22:00:50", "180.180.66.28", "13");
INSERT INTO `wp_rg_form_view` VALUES("17329", "8", "2015-09-19 22:00:50", "180.180.66.28", "13");
INSERT INTO `wp_rg_form_view` VALUES("17330", "1", "2015-09-19 22:26:28", "91.200.12.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("17331", "3", "2015-09-19 23:07:50", "68.180.229.161", "75");
INSERT INTO `wp_rg_form_view` VALUES("17332", "9", "2015-09-19 23:07:50", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("17333", "8", "2015-09-19 23:07:50", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("17334", "3", "2015-09-20 00:04:32", "207.46.13.46", "107");
INSERT INTO `wp_rg_form_view` VALUES("17335", "9", "2015-09-20 00:04:32", "207.46.13.46", "13");
INSERT INTO `wp_rg_form_view` VALUES("17336", "8", "2015-09-20 00:04:32", "207.46.13.46", "13");
INSERT INTO `wp_rg_form_view` VALUES("17337", "3", "2015-09-20 01:16:18", "136.243.5.87", "62");
INSERT INTO `wp_rg_form_view` VALUES("17338", "9", "2015-09-20 01:16:18", "136.243.5.87", "9");
INSERT INTO `wp_rg_form_view` VALUES("17339", "8", "2015-09-20 01:16:19", "136.243.5.87", "8");
INSERT INTO `wp_rg_form_view` VALUES("17340", "3", "2015-09-20 02:03:42", "157.55.39.97", "86");
INSERT INTO `wp_rg_form_view` VALUES("17341", "9", "2015-09-20 02:03:42", "157.55.39.97", "10");
INSERT INTO `wp_rg_form_view` VALUES("17342", "8", "2015-09-20 02:03:42", "157.55.39.97", "10");
INSERT INTO `wp_rg_form_view` VALUES("17343", "3", "2015-09-20 03:05:21", "66.249.79.169", "34");
INSERT INTO `wp_rg_form_view` VALUES("17344", "9", "2015-09-20 03:05:21", "66.249.79.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("17345", "8", "2015-09-20 03:05:21", "66.249.79.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("17346", "3", "2015-09-20 04:22:01", "208.115.111.66", "26");
INSERT INTO `wp_rg_form_view` VALUES("17347", "9", "2015-09-20 04:22:01", "208.115.111.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("17348", "8", "2015-09-20 04:22:01", "208.115.111.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("17349", "3", "2015-09-20 05:04:02", "207.46.13.46", "50");
INSERT INTO `wp_rg_form_view` VALUES("17350", "9", "2015-09-20 05:04:02", "207.46.13.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("17351", "8", "2015-09-20 05:04:02", "207.46.13.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("17352", "6", "2015-09-20 05:21:56", "157.55.39.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("17353", "3", "2015-09-20 06:17:57", "216.244.81.34", "65");
INSERT INTO `wp_rg_form_view` VALUES("17354", "9", "2015-09-20 06:17:58", "216.244.81.34", "8");
INSERT INTO `wp_rg_form_view` VALUES("17355", "8", "2015-09-20 06:17:58", "216.244.81.34", "8");
INSERT INTO `wp_rg_form_view` VALUES("17356", "3", "2015-09-20 07:10:52", "68.180.229.161", "34");
INSERT INTO `wp_rg_form_view` VALUES("17357", "9", "2015-09-20 07:10:53", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("17358", "8", "2015-09-20 07:10:53", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("17359", "3", "2015-09-20 08:05:18", "188.165.15.177", "50");
INSERT INTO `wp_rg_form_view` VALUES("17360", "9", "2015-09-20 08:05:19", "188.165.15.177", "7");
INSERT INTO `wp_rg_form_view` VALUES("17361", "8", "2015-09-20 08:05:19", "188.165.15.177", "7");
INSERT INTO `wp_rg_form_view` VALUES("17362", "3", "2015-09-20 10:11:22", "86.106.18.11", "72");
INSERT INTO `wp_rg_form_view` VALUES("17363", "9", "2015-09-20 10:11:23", "86.106.18.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("17364", "8", "2015-09-20 10:11:23", "86.106.18.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("17365", "2", "2015-09-20 10:58:55", "112.111.185.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("17366", "3", "2015-09-20 11:07:36", "188.165.15.177", "16");
INSERT INTO `wp_rg_form_view` VALUES("17367", "9", "2015-09-20 11:07:36", "188.165.15.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("17368", "8", "2015-09-20 11:07:36", "188.165.15.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("17369", "3", "2015-09-20 12:33:23", "157.55.39.245", "41");
INSERT INTO `wp_rg_form_view` VALUES("17370", "9", "2015-09-20 12:33:24", "157.55.39.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("17371", "8", "2015-09-20 12:33:24", "157.55.39.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("17372", "3", "2015-09-20 13:01:29", "188.165.15.177", "49");
INSERT INTO `wp_rg_form_view` VALUES("17373", "9", "2015-09-20 13:01:29", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17374", "8", "2015-09-20 13:01:29", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17375", "3", "2015-09-20 14:01:00", "66.249.79.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("17376", "9", "2015-09-20 14:01:00", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("17377", "8", "2015-09-20 14:01:00", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("17378", "3", "2015-09-20 15:03:16", "66.249.79.162", "45");
INSERT INTO `wp_rg_form_view` VALUES("17379", "9", "2015-09-20 15:19:20", "91.200.12.39", "5");
INSERT INTO `wp_rg_form_view` VALUES("17380", "8", "2015-09-20 15:19:21", "91.200.12.39", "5");
INSERT INTO `wp_rg_form_view` VALUES("17381", "3", "2015-09-20 16:13:52", "66.249.79.155", "18");
INSERT INTO `wp_rg_form_view` VALUES("17382", "9", "2015-09-20 16:13:52", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("17383", "8", "2015-09-20 16:13:52", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("17384", "3", "2015-09-20 17:27:22", "68.180.229.161", "56");
INSERT INTO `wp_rg_form_view` VALUES("17385", "9", "2015-09-20 17:27:24", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("17386", "8", "2015-09-20 17:27:24", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("17387", "3", "2015-09-20 18:14:25", "207.46.13.107", "16");
INSERT INTO `wp_rg_form_view` VALUES("17388", "9", "2015-09-20 18:14:26", "207.46.13.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("17389", "8", "2015-09-20 18:14:26", "207.46.13.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("17390", "3", "2015-09-20 20:14:57", "66.249.79.155", "147");
INSERT INTO `wp_rg_form_view` VALUES("17391", "9", "2015-09-20 20:16:12", "75.156.98.187", "19");
INSERT INTO `wp_rg_form_view` VALUES("17392", "8", "2015-09-20 20:16:12", "75.156.98.187", "18");
INSERT INTO `wp_rg_form_view` VALUES("17393", "3", "2015-09-20 21:30:54", "188.165.15.177", "26");
INSERT INTO `wp_rg_form_view` VALUES("17394", "9", "2015-09-20 21:30:55", "188.165.15.177", "4");
INSERT INTO `wp_rg_form_view` VALUES("17395", "8", "2015-09-20 21:30:55", "188.165.15.177", "4");
INSERT INTO `wp_rg_form_view` VALUES("17396", "1", "2015-09-20 22:18:14", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("17397", "3", "2015-09-20 22:18:14", "93.92.217.228", "114");
INSERT INTO `wp_rg_form_view` VALUES("17398", "9", "2015-09-20 22:18:14", "93.92.217.228", "15");
INSERT INTO `wp_rg_form_view` VALUES("17399", "8", "2015-09-20 22:18:14", "93.92.217.228", "15");
INSERT INTO `wp_rg_form_view` VALUES("17400", "2", "2015-09-20 22:18:22", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("17401", "3", "2015-09-20 23:02:48", "54.209.60.63", "24");
INSERT INTO `wp_rg_form_view` VALUES("17402", "9", "2015-09-20 23:02:48", "54.209.60.63", "3");
INSERT INTO `wp_rg_form_view` VALUES("17403", "8", "2015-09-20 23:02:49", "54.209.60.63", "3");
INSERT INTO `wp_rg_form_view` VALUES("17404", "6", "2015-09-20 23:04:49", "24.68.233.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("17405", "3", "2015-09-21 00:03:36", "188.165.15.177", "48");
INSERT INTO `wp_rg_form_view` VALUES("17406", "9", "2015-09-21 00:03:36", "188.165.15.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("17407", "8", "2015-09-21 00:03:37", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17408", "3", "2015-09-21 01:17:28", "207.46.13.123", "236");
INSERT INTO `wp_rg_form_view` VALUES("17409", "9", "2015-09-21 01:17:30", "207.46.13.123", "27");
INSERT INTO `wp_rg_form_view` VALUES("17410", "8", "2015-09-21 01:17:30", "207.46.13.123", "28");
INSERT INTO `wp_rg_form_view` VALUES("17411", "3", "2015-09-21 02:09:51", "188.165.15.177", "49");
INSERT INTO `wp_rg_form_view` VALUES("17412", "9", "2015-09-21 02:09:51", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17413", "8", "2015-09-21 02:09:51", "188.165.15.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("17414", "3", "2015-09-21 03:22:28", "208.115.113.83", "96");
INSERT INTO `wp_rg_form_view` VALUES("17415", "9", "2015-09-21 03:22:29", "208.115.113.83", "12");
INSERT INTO `wp_rg_form_view` VALUES("17416", "8", "2015-09-21 03:22:29", "208.115.113.83", "12");
INSERT INTO `wp_rg_form_view` VALUES("17417", "1", "2015-09-21 03:42:49", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("17418", "2", "2015-09-21 03:43:00", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("17419", "3", "2015-09-21 04:24:55", "46.246.63.42", "17");
INSERT INTO `wp_rg_form_view` VALUES("17420", "9", "2015-09-21 04:24:55", "46.246.63.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("17421", "8", "2015-09-21 04:24:56", "46.246.63.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("17422", "3", "2015-09-21 05:10:07", "66.249.79.169", "42");
INSERT INTO `wp_rg_form_view` VALUES("17423", "9", "2015-09-21 05:10:07", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("17424", "8", "2015-09-21 05:10:07", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("17425", "3", "2015-09-21 06:21:04", "208.115.111.66", "25");
INSERT INTO `wp_rg_form_view` VALUES("17426", "9", "2015-09-21 06:21:04", "208.115.111.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("17427", "8", "2015-09-21 06:21:04", "208.115.111.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("17428", "3", "2015-09-21 08:46:30", "27.151.100.131", "33");
INSERT INTO `wp_rg_form_view` VALUES("17429", "9", "2015-09-21 08:46:30", "27.151.100.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("17430", "8", "2015-09-21 08:46:31", "27.151.100.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("17431", "3", "2015-09-21 09:05:01", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("17432", "9", "2015-09-21 09:05:01", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("17433", "8", "2015-09-21 09:05:01", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("17434", "3", "2015-09-21 10:29:24", "182.52.47.160", "91");
INSERT INTO `wp_rg_form_view` VALUES("17435", "9", "2015-09-21 10:29:24", "182.52.47.160", "11");
INSERT INTO `wp_rg_form_view` VALUES("17436", "8", "2015-09-21 10:29:24", "182.52.47.160", "11");
INSERT INTO `wp_rg_form_view` VALUES("17437", "3", "2015-09-21 11:12:58", "207.46.13.107", "8");
INSERT INTO `wp_rg_form_view` VALUES("17438", "9", "2015-09-21 11:12:58", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("17439", "8", "2015-09-21 11:12:58", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("17440", "3", "2015-09-21 12:30:56", "207.46.13.107", "48");
INSERT INTO `wp_rg_form_view` VALUES("17441", "9", "2015-09-21 12:30:58", "207.46.13.107", "6");
INSERT INTO `wp_rg_form_view` VALUES("17442", "8", "2015-09-21 12:30:58", "207.46.13.107", "7");
INSERT INTO `wp_rg_form_view` VALUES("17443", "3", "2015-09-21 13:14:47", "91.200.12.128", "59");
INSERT INTO `wp_rg_form_view` VALUES("17444", "9", "2015-09-21 13:14:47", "91.200.12.128", "8");
INSERT INTO `wp_rg_form_view` VALUES("17445", "8", "2015-09-21 13:14:47", "91.200.12.128", "8");
INSERT INTO `wp_rg_form_view` VALUES("17446", "3", "2015-09-21 14:15:41", "68.180.229.161", "110");
INSERT INTO `wp_rg_form_view` VALUES("17447", "9", "2015-09-21 14:15:41", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("17448", "8", "2015-09-21 14:15:41", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("17449", "3", "2015-09-21 15:50:55", "180.180.77.192", "8");
INSERT INTO `wp_rg_form_view` VALUES("17450", "9", "2015-09-21 15:50:56", "180.180.77.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("17451", "8", "2015-09-21 15:50:56", "180.180.77.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("17452", "3", "2015-09-21 16:23:18", "104.143.28.153", "8");
INSERT INTO `wp_rg_form_view` VALUES("17453", "9", "2015-09-21 16:23:18", "104.143.28.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("17454", "8", "2015-09-21 16:23:18", "104.143.28.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("17455", "3", "2015-09-21 17:14:11", "24.108.96.79", "32");
INSERT INTO `wp_rg_form_view` VALUES("17456", "9", "2015-09-21 17:14:13", "24.108.96.79", "4");
INSERT INTO `wp_rg_form_view` VALUES("17457", "8", "2015-09-21 17:14:13", "24.108.96.79", "5");
INSERT INTO `wp_rg_form_view` VALUES("17458", "3", "2015-09-21 18:13:29", "68.180.229.161", "89");
INSERT INTO `wp_rg_form_view` VALUES("17459", "9", "2015-09-21 18:13:29", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("17460", "8", "2015-09-21 18:13:29", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("17461", "3", "2015-09-21 19:20:45", "96.50.67.34", "40");
INSERT INTO `wp_rg_form_view` VALUES("17462", "9", "2015-09-21 19:20:45", "96.50.67.34", "5");
INSERT INTO `wp_rg_form_view` VALUES("17463", "8", "2015-09-21 19:20:46", "96.50.67.34", "5");
INSERT INTO `wp_rg_form_view` VALUES("17464", "3", "2015-09-21 20:27:40", "184.69.9.58", "105");
INSERT INTO `wp_rg_form_view` VALUES("17465", "9", "2015-09-21 20:27:40", "184.69.9.58", "13");
INSERT INTO `wp_rg_form_view` VALUES("17466", "8", "2015-09-21 20:27:40", "184.69.9.58", "13");
INSERT INTO `wp_rg_form_view` VALUES("17467", "3", "2015-09-21 21:29:43", "207.46.13.97", "32");
INSERT INTO `wp_rg_form_view` VALUES("17468", "9", "2015-09-21 21:29:43", "207.46.13.97", "5");
INSERT INTO `wp_rg_form_view` VALUES("17469", "8", "2015-09-21 21:29:44", "207.46.13.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("17470", "3", "2015-09-21 22:02:12", "68.180.229.161", "51");
INSERT INTO `wp_rg_form_view` VALUES("17471", "9", "2015-09-21 22:02:12", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("17472", "8", "2015-09-21 22:02:13", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("17473", "3", "2015-09-21 23:22:52", "180.180.99.160", "105");
INSERT INTO `wp_rg_form_view` VALUES("17474", "9", "2015-09-21 23:22:52", "180.180.99.160", "13");
INSERT INTO `wp_rg_form_view` VALUES("17475", "8", "2015-09-21 23:22:52", "180.180.99.160", "13");
INSERT INTO `wp_rg_form_view` VALUES("17476", "1", "2015-09-21 23:42:43", "184.69.1.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("17477", "3", "2015-09-22 00:05:42", "157.55.39.43", "147");
INSERT INTO `wp_rg_form_view` VALUES("17478", "9", "2015-09-22 00:05:43", "157.55.39.43", "19");
INSERT INTO `wp_rg_form_view` VALUES("17479", "8", "2015-09-22 00:05:43", "157.55.39.43", "18");
INSERT INTO `wp_rg_form_view` VALUES("17480", "3", "2015-09-22 01:01:31", "96.54.167.1", "64");
INSERT INTO `wp_rg_form_view` VALUES("17481", "9", "2015-09-22 01:01:32", "96.54.167.1", "8");
INSERT INTO `wp_rg_form_view` VALUES("17482", "8", "2015-09-22 01:01:32", "96.54.167.1", "8");
INSERT INTO `wp_rg_form_view` VALUES("17483", "1", "2015-09-22 01:02:10", "96.54.167.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("17484", "3", "2015-09-22 02:05:49", "91.200.12.39", "100");
INSERT INTO `wp_rg_form_view` VALUES("17485", "9", "2015-09-22 02:05:50", "91.200.12.39", "13");
INSERT INTO `wp_rg_form_view` VALUES("17486", "8", "2015-09-22 02:05:50", "91.200.12.39", "13");
INSERT INTO `wp_rg_form_view` VALUES("17487", "3", "2015-09-22 03:13:09", "68.180.229.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("17488", "9", "2015-09-22 03:23:02", "208.115.113.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("17489", "8", "2015-09-22 03:23:02", "208.115.113.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("17490", "3", "2015-09-22 04:00:13", "199.21.99.202", "34");
INSERT INTO `wp_rg_form_view` VALUES("17491", "9", "2015-09-22 04:00:14", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("17492", "8", "2015-09-22 04:00:14", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("17493", "7", "2015-09-22 05:01:32", "157.55.39.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("17494", "3", "2015-09-22 05:01:33", "157.55.39.42", "32");
INSERT INTO `wp_rg_form_view` VALUES("17495", "9", "2015-09-22 05:01:33", "157.55.39.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("17496", "8", "2015-09-22 05:01:33", "157.55.39.42", "5");
INSERT INTO `wp_rg_form_view` VALUES("17497", "3", "2015-09-22 06:18:54", "91.200.12.128", "26");
INSERT INTO `wp_rg_form_view` VALUES("17498", "9", "2015-09-22 06:18:54", "91.200.12.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("17499", "8", "2015-09-22 06:18:55", "91.200.12.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("17500", "3", "2015-09-22 07:39:12", "207.46.13.119", "17");
INSERT INTO `wp_rg_form_view` VALUES("17501", "9", "2015-09-22 07:39:13", "207.46.13.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("17502", "8", "2015-09-22 07:39:13", "207.46.13.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("17503", "3", "2015-09-22 08:22:13", "208.115.111.66", "64");
INSERT INTO `wp_rg_form_view` VALUES("17504", "9", "2015-09-22 08:22:14", "208.115.111.66", "8");
INSERT INTO `wp_rg_form_view` VALUES("17505", "8", "2015-09-22 08:22:14", "208.115.111.66", "8");
INSERT INTO `wp_rg_form_view` VALUES("17506", "3", "2015-09-22 09:01:27", "66.249.79.155", "104");
INSERT INTO `wp_rg_form_view` VALUES("17507", "9", "2015-09-22 09:01:27", "66.249.79.155", "12");
INSERT INTO `wp_rg_form_view` VALUES("17508", "8", "2015-09-22 09:01:27", "66.249.79.155", "14");
INSERT INTO `wp_rg_form_view` VALUES("17509", "2", "2015-09-22 09:26:29", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17510", "3", "2015-09-22 10:00:40", "220.181.108.88", "58");
INSERT INTO `wp_rg_form_view` VALUES("17511", "9", "2015-09-22 10:00:40", "220.181.108.88", "7");
INSERT INTO `wp_rg_form_view` VALUES("17512", "8", "2015-09-22 10:00:40", "220.181.108.88", "7");
INSERT INTO `wp_rg_form_view` VALUES("17513", "6", "2015-09-22 10:28:08", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17514", "3", "2015-09-22 11:02:43", "66.249.79.162", "113");
INSERT INTO `wp_rg_form_view` VALUES("17515", "9", "2015-09-22 11:02:44", "66.249.79.162", "14");
INSERT INTO `wp_rg_form_view` VALUES("17516", "8", "2015-09-22 11:02:44", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("17517", "1", "2015-09-22 11:21:24", "91.200.12.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("17518", "3", "2015-09-22 12:02:51", "66.249.79.162", "64");
INSERT INTO `wp_rg_form_view` VALUES("17519", "9", "2015-09-22 12:02:52", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("17520", "8", "2015-09-22 12:02:52", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("17521", "3", "2015-09-22 13:05:01", "66.249.79.169", "306");
INSERT INTO `wp_rg_form_view` VALUES("17522", "9", "2015-09-22 13:05:01", "66.249.79.169", "38");
INSERT INTO `wp_rg_form_view` VALUES("17523", "8", "2015-09-22 13:05:02", "66.249.79.169", "38");
INSERT INTO `wp_rg_form_view` VALUES("17524", "1", "2015-09-22 13:24:31", "50.199.171.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("17525", "2", "2015-09-22 13:24:43", "50.199.171.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("17526", "3", "2015-09-22 14:02:35", "157.55.39.139", "24");
INSERT INTO `wp_rg_form_view` VALUES("17527", "9", "2015-09-22 14:02:35", "157.55.39.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("17528", "8", "2015-09-22 14:02:35", "157.55.39.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("17529", "3", "2015-09-22 15:17:47", "46.246.40.170", "75");
INSERT INTO `wp_rg_form_view` VALUES("17530", "9", "2015-09-22 15:17:48", "46.246.40.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("17531", "8", "2015-09-22 15:17:48", "46.246.40.170", "9");
INSERT INTO `wp_rg_form_view` VALUES("17532", "3", "2015-09-22 16:09:44", "67.248.28.8", "57");
INSERT INTO `wp_rg_form_view` VALUES("17533", "9", "2015-09-22 16:09:44", "67.248.28.8", "7");
INSERT INTO `wp_rg_form_view` VALUES("17534", "8", "2015-09-22 16:09:45", "67.248.28.8", "7");
INSERT INTO `wp_rg_form_view` VALUES("17535", "3", "2015-09-22 17:00:07", "154.5.144.231", "207");
INSERT INTO `wp_rg_form_view` VALUES("17536", "9", "2015-09-22 17:00:07", "154.5.144.231", "24");
INSERT INTO `wp_rg_form_view` VALUES("17537", "8", "2015-09-22 17:00:07", "154.5.144.231", "24");
INSERT INTO `wp_rg_form_view` VALUES("17538", "1", "2015-09-22 17:08:17", "184.66.129.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("17539", "3", "2015-09-22 18:03:38", "66.249.79.169", "114");
INSERT INTO `wp_rg_form_view` VALUES("17540", "9", "2015-09-22 18:03:38", "66.249.79.169", "16");
INSERT INTO `wp_rg_form_view` VALUES("17541", "8", "2015-09-22 18:03:38", "66.249.79.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("17542", "3", "2015-09-22 19:10:44", "212.225.173.135", "281");
INSERT INTO `wp_rg_form_view` VALUES("17543", "9", "2015-09-22 19:10:45", "212.225.173.135", "35");
INSERT INTO `wp_rg_form_view` VALUES("17544", "8", "2015-09-22 19:10:45", "212.225.173.135", "35");
INSERT INTO `wp_rg_form_view` VALUES("17545", "1", "2015-09-22 19:11:56", "212.225.173.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("17546", "2", "2015-09-22 19:12:06", "212.225.173.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("17547", "3", "2015-09-22 20:05:18", "207.46.13.13", "58");
INSERT INTO `wp_rg_form_view` VALUES("17548", "9", "2015-09-22 20:05:18", "207.46.13.13", "7");
INSERT INTO `wp_rg_form_view` VALUES("17549", "8", "2015-09-22 20:05:18", "207.46.13.13", "7");
INSERT INTO `wp_rg_form_view` VALUES("17550", "3", "2015-09-22 21:02:34", "66.43.60.8", "33");
INSERT INTO `wp_rg_form_view` VALUES("17551", "9", "2015-09-22 21:02:35", "66.43.60.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("17552", "8", "2015-09-22 21:02:35", "66.43.60.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("17553", "3", "2015-09-22 22:04:38", "66.249.79.162", "90");
INSERT INTO `wp_rg_form_view` VALUES("17554", "9", "2015-09-22 22:04:38", "66.249.79.162", "13");
INSERT INTO `wp_rg_form_view` VALUES("17555", "8", "2015-09-22 22:04:39", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("17556", "3", "2015-09-22 23:43:44", "96.54.196.86", "41");
INSERT INTO `wp_rg_form_view` VALUES("17557", "9", "2015-09-22 23:43:45", "96.54.196.86", "5");
INSERT INTO `wp_rg_form_view` VALUES("17558", "8", "2015-09-22 23:43:45", "96.54.196.86", "5");
INSERT INTO `wp_rg_form_view` VALUES("17559", "3", "2015-09-23 00:33:41", "96.54.192.151", "50");
INSERT INTO `wp_rg_form_view` VALUES("17560", "9", "2015-09-23 00:33:41", "96.54.192.151", "7");
INSERT INTO `wp_rg_form_view` VALUES("17561", "8", "2015-09-23 00:33:42", "96.54.192.151", "7");
INSERT INTO `wp_rg_form_view` VALUES("17562", "1", "2015-09-23 00:37:33", "62.210.178.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("17563", "3", "2015-09-23 01:00:22", "108.180.144.141", "215");
INSERT INTO `wp_rg_form_view` VALUES("17564", "9", "2015-09-23 01:00:22", "108.180.144.141", "26");
INSERT INTO `wp_rg_form_view` VALUES("17565", "8", "2015-09-23 01:00:22", "108.180.144.141", "26");
INSERT INTO `wp_rg_form_view` VALUES("17566", "3", "2015-09-23 02:07:57", "66.249.79.162", "33");
INSERT INTO `wp_rg_form_view` VALUES("17567", "9", "2015-09-23 02:07:57", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("17568", "8", "2015-09-23 02:07:57", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("17569", "3", "2015-09-23 03:13:15", "27.151.100.131", "74");
INSERT INTO `wp_rg_form_view` VALUES("17570", "9", "2015-09-23 03:13:15", "27.151.100.131", "10");
INSERT INTO `wp_rg_form_view` VALUES("17571", "8", "2015-09-23 03:13:16", "27.151.100.131", "10");
INSERT INTO `wp_rg_form_view` VALUES("17572", "3", "2015-09-23 04:00:24", "5.9.17.118", "96");
INSERT INTO `wp_rg_form_view` VALUES("17573", "9", "2015-09-23 04:00:24", "5.9.17.118", "12");
INSERT INTO `wp_rg_form_view` VALUES("17574", "8", "2015-09-23 04:00:24", "5.9.17.118", "12");
INSERT INTO `wp_rg_form_view` VALUES("17575", "1", "2015-09-23 05:14:26", "112.111.185.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("17576", "3", "2015-09-23 05:14:26", "112.111.185.94", "56");
INSERT INTO `wp_rg_form_view` VALUES("17577", "9", "2015-09-23 05:14:27", "112.111.185.94", "7");
INSERT INTO `wp_rg_form_view` VALUES("17578", "8", "2015-09-23 05:14:27", "112.111.185.94", "7");
INSERT INTO `wp_rg_form_view` VALUES("17579", "3", "2015-09-23 06:29:50", "207.46.13.128", "50");
INSERT INTO `wp_rg_form_view` VALUES("17580", "9", "2015-09-23 06:29:52", "207.46.13.128", "6");
INSERT INTO `wp_rg_form_view` VALUES("17581", "8", "2015-09-23 06:29:52", "207.46.13.128", "6");
INSERT INTO `wp_rg_form_view` VALUES("17582", "3", "2015-09-23 07:23:27", "68.180.229.161", "56");
INSERT INTO `wp_rg_form_view` VALUES("17583", "9", "2015-09-23 07:23:28", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("17584", "8", "2015-09-23 07:23:28", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("17585", "3", "2015-09-23 08:03:01", "91.200.12.116", "150");
INSERT INTO `wp_rg_form_view` VALUES("17586", "3", "2015-09-23 08:03:01", "91.200.12.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("17587", "3", "2015-09-23 08:03:01", "91.200.12.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("17588", "9", "2015-09-23 08:03:01", "91.200.12.116", "19");
INSERT INTO `wp_rg_form_view` VALUES("17589", "8", "2015-09-23 08:03:01", "91.200.12.116", "17");
INSERT INTO `wp_rg_form_view` VALUES("17590", "8", "2015-09-23 08:03:01", "91.200.12.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("17591", "8", "2015-09-23 08:03:01", "91.200.12.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("17592", "3", "2015-09-23 09:13:23", "157.55.39.170", "54");
INSERT INTO `wp_rg_form_view` VALUES("17593", "8", "2015-09-23 09:13:23", "157.55.39.170", "7");
INSERT INTO `wp_rg_form_view` VALUES("17594", "9", "2015-09-23 09:13:24", "157.55.39.170", "6");
INSERT INTO `wp_rg_form_view` VALUES("17595", "1", "2015-09-23 09:29:10", "31.184.238.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("17596", "3", "2015-09-23 10:09:26", "157.55.39.128", "47");
INSERT INTO `wp_rg_form_view` VALUES("17597", "8", "2015-09-23 10:09:27", "157.55.39.128", "6");
INSERT INTO `wp_rg_form_view` VALUES("17598", "9", "2015-09-23 10:09:28", "157.55.39.128", "5");
INSERT INTO `wp_rg_form_view` VALUES("17599", "3", "2015-09-23 11:55:25", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("17600", "9", "2015-09-23 11:58:45", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("17601", "8", "2015-09-23 11:58:45", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("17602", "3", "2015-09-23 12:16:33", "27.151.100.131", "123");
INSERT INTO `wp_rg_form_view` VALUES("17603", "9", "2015-09-23 12:16:33", "27.151.100.131", "15");
INSERT INTO `wp_rg_form_view` VALUES("17604", "8", "2015-09-23 12:16:33", "27.151.100.131", "15");
INSERT INTO `wp_rg_form_view` VALUES("17605", "3", "2015-09-23 13:00:40", "199.21.99.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("17606", "9", "2015-09-23 13:00:40", "199.21.99.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("17607", "8", "2015-09-23 13:00:41", "199.21.99.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("17608", "3", "2015-09-23 14:11:14", "1.0.181.8", "33");
INSERT INTO `wp_rg_form_view` VALUES("17609", "9", "2015-09-23 14:11:15", "1.0.181.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("17610", "8", "2015-09-23 14:11:15", "1.0.181.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("17611", "3", "2015-09-23 15:27:31", "68.180.229.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("17612", "9", "2015-09-23 15:27:32", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("17613", "8", "2015-09-23 15:27:32", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("17614", "3", "2015-09-23 16:09:05", "27.151.100.131", "316");
INSERT INTO `wp_rg_form_view` VALUES("17615", "9", "2015-09-23 16:09:06", "27.151.100.131", "39");
INSERT INTO `wp_rg_form_view` VALUES("17616", "8", "2015-09-23 16:09:06", "27.151.100.131", "39");
INSERT INTO `wp_rg_form_view` VALUES("17617", "1", "2015-09-23 16:43:51", "86.123.241.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("17618", "2", "2015-09-23 16:43:59", "86.123.241.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("17619", "3", "2015-09-23 17:07:29", "66.249.79.162", "74");
INSERT INTO `wp_rg_form_view` VALUES("17620", "9", "2015-09-23 17:07:30", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17621", "8", "2015-09-23 17:07:30", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17622", "1", "2015-09-23 17:44:41", "104.223.17.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("17623", "1", "2015-09-23 18:04:08", "91.200.12.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("17624", "3", "2015-09-23 18:04:09", "91.200.12.95", "40");
INSERT INTO `wp_rg_form_view` VALUES("17625", "9", "2015-09-23 18:04:09", "91.200.12.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("17626", "8", "2015-09-23 18:04:09", "91.200.12.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("17627", "3", "2015-09-23 19:06:23", "142.36.207.243", "116");
INSERT INTO `wp_rg_form_view` VALUES("17628", "9", "2015-09-23 19:06:25", "142.36.207.243", "14");
INSERT INTO `wp_rg_form_view` VALUES("17629", "8", "2015-09-23 19:06:25", "142.36.207.243", "14");
INSERT INTO `wp_rg_form_view` VALUES("17630", "3", "2015-09-23 20:11:39", "157.55.39.29", "80");
INSERT INTO `wp_rg_form_view` VALUES("17631", "9", "2015-09-23 20:11:41", "157.55.39.29", "10");
INSERT INTO `wp_rg_form_view` VALUES("17632", "8", "2015-09-23 20:11:41", "157.55.39.29", "10");
INSERT INTO `wp_rg_form_view` VALUES("17633", "1", "2015-09-23 20:29:29", "27.159.230.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("17634", "3", "2015-09-23 21:08:23", "24.108.148.74", "96");
INSERT INTO `wp_rg_form_view` VALUES("17635", "9", "2015-09-23 21:08:24", "24.108.148.74", "12");
INSERT INTO `wp_rg_form_view` VALUES("17636", "8", "2015-09-23 21:08:24", "24.108.148.74", "12");
INSERT INTO `wp_rg_form_view` VALUES("17637", "3", "2015-09-23 22:04:38", "66.249.79.155", "64");
INSERT INTO `wp_rg_form_view` VALUES("17638", "9", "2015-09-23 22:04:39", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("17639", "8", "2015-09-23 22:04:39", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("17640", "3", "2015-09-23 23:00:09", "207.46.13.127", "80");
INSERT INTO `wp_rg_form_view` VALUES("17641", "9", "2015-09-23 23:00:09", "207.46.13.127", "10");
INSERT INTO `wp_rg_form_view` VALUES("17642", "8", "2015-09-23 23:00:10", "207.46.13.127", "11");
INSERT INTO `wp_rg_form_view` VALUES("17643", "3", "2015-09-24 00:04:26", "66.249.79.162", "42");
INSERT INTO `wp_rg_form_view` VALUES("17644", "9", "2015-09-24 00:04:27", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("17645", "8", "2015-09-24 00:04:27", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("17646", "3", "2015-09-24 01:04:21", "66.249.79.155", "41");
INSERT INTO `wp_rg_form_view` VALUES("17647", "9", "2015-09-24 01:04:22", "66.249.79.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("17648", "8", "2015-09-24 01:04:22", "66.249.79.155", "6");
INSERT INTO `wp_rg_form_view` VALUES("17649", "9", "2015-09-24 02:08:01", "209.52.88.51", "10");
INSERT INTO `wp_rg_form_view` VALUES("17650", "3", "2015-09-24 02:08:01", "209.52.88.51", "74");
INSERT INTO `wp_rg_form_view` VALUES("17651", "8", "2015-09-24 02:08:01", "209.52.88.51", "9");
INSERT INTO `wp_rg_form_view` VALUES("17652", "3", "2015-09-24 03:00:48", "66.249.79.162", "40");
INSERT INTO `wp_rg_form_view` VALUES("17653", "9", "2015-09-24 03:00:48", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("17654", "8", "2015-09-24 03:00:49", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("17655", "1", "2015-09-24 03:15:27", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("17656", "3", "2015-09-24 04:03:51", "66.249.79.162", "73");
INSERT INTO `wp_rg_form_view` VALUES("17657", "9", "2015-09-24 04:03:51", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("17658", "8", "2015-09-24 04:03:51", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("17659", "7", "2015-09-24 04:30:04", "46.246.63.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("17660", "3", "2015-09-24 05:00:11", "24.69.52.196", "283");
INSERT INTO `wp_rg_form_view` VALUES("17661", "9", "2015-09-24 05:00:11", "24.69.52.196", "35");
INSERT INTO `wp_rg_form_view` VALUES("17662", "8", "2015-09-24 05:00:12", "24.69.52.196", "36");
INSERT INTO `wp_rg_form_view` VALUES("17663", "1", "2015-09-24 05:04:38", "107.189.36.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("17664", "3", "2015-09-24 06:37:44", "66.249.79.162", "33");
INSERT INTO `wp_rg_form_view` VALUES("17665", "9", "2015-09-24 06:37:45", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("17666", "8", "2015-09-24 06:37:45", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("17667", "3", "2015-09-24 07:10:50", "66.249.79.162", "81");
INSERT INTO `wp_rg_form_view` VALUES("17668", "9", "2015-09-24 07:10:50", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17669", "8", "2015-09-24 07:10:50", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17670", "1", "2015-09-24 07:32:13", "104.155.71.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("17671", "3", "2015-09-24 08:06:23", "66.249.79.155", "72");
INSERT INTO `wp_rg_form_view` VALUES("17672", "9", "2015-09-24 08:06:23", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("17673", "8", "2015-09-24 08:06:24", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("17674", "3", "2015-09-24 09:05:06", "157.55.39.28", "57");
INSERT INTO `wp_rg_form_view` VALUES("17675", "9", "2015-09-24 09:05:07", "157.55.39.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("17676", "8", "2015-09-24 09:05:07", "157.55.39.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("17677", "3", "2015-09-24 10:01:55", "91.200.12.128", "99");
INSERT INTO `wp_rg_form_view` VALUES("17678", "9", "2015-09-24 10:01:56", "91.200.12.128", "13");
INSERT INTO `wp_rg_form_view` VALUES("17679", "8", "2015-09-24 10:01:56", "91.200.12.128", "13");
INSERT INTO `wp_rg_form_view` VALUES("17680", "3", "2015-09-24 11:24:43", "199.217.117.207", "42");
INSERT INTO `wp_rg_form_view` VALUES("17681", "9", "2015-09-24 11:24:44", "199.217.117.207", "5");
INSERT INTO `wp_rg_form_view` VALUES("17682", "8", "2015-09-24 11:24:45", "199.217.117.207", "6");
INSERT INTO `wp_rg_form_view` VALUES("17683", "3", "2015-09-24 12:08:36", "66.249.79.169", "75");
INSERT INTO `wp_rg_form_view` VALUES("17684", "9", "2015-09-24 12:08:36", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("17685", "8", "2015-09-24 12:08:36", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("17686", "3", "2015-09-24 13:08:01", "66.249.79.162", "73");
INSERT INTO `wp_rg_form_view` VALUES("17687", "9", "2015-09-24 13:08:01", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("17688", "8", "2015-09-24 13:08:01", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("17689", "3", "2015-09-24 14:10:51", "157.55.39.229", "68");
INSERT INTO `wp_rg_form_view` VALUES("17690", "9", "2015-09-24 14:10:52", "157.55.39.229", "10");
INSERT INTO `wp_rg_form_view` VALUES("17691", "8", "2015-09-24 14:10:52", "157.55.39.229", "10");
INSERT INTO `wp_rg_form_view` VALUES("17692", "9", "2015-09-24 15:06:50", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("17693", "3", "2015-09-24 15:06:50", "66.249.79.169", "72");
INSERT INTO `wp_rg_form_view` VALUES("17694", "8", "2015-09-24 15:06:51", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("17695", "1", "2015-09-24 15:12:08", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("17696", "2", "2015-09-24 15:12:08", "107.150.42.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("17697", "3", "2015-09-24 16:15:53", "24.108.91.239", "112");
INSERT INTO `wp_rg_form_view` VALUES("17698", "9", "2015-09-24 16:15:54", "24.108.91.239", "16");
INSERT INTO `wp_rg_form_view` VALUES("17699", "8", "2015-09-24 16:15:55", "24.108.91.239", "16");
INSERT INTO `wp_rg_form_view` VALUES("17700", "1", "2015-09-24 16:36:07", "96.54.167.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("17701", "3", "2015-09-24 17:08:45", "66.249.79.169", "16");
INSERT INTO `wp_rg_form_view` VALUES("17702", "9", "2015-09-24 17:08:46", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("17703", "8", "2015-09-24 17:08:46", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("17704", "9", "2015-09-24 18:12:38", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("17705", "3", "2015-09-24 18:12:38", "66.249.79.162", "90");
INSERT INTO `wp_rg_form_view` VALUES("17706", "8", "2015-09-24 18:12:38", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("17707", "1", "2015-09-24 18:14:45", "62.210.178.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("17708", "3", "2015-09-24 19:03:27", "172.218.194.135", "49");
INSERT INTO `wp_rg_form_view` VALUES("17709", "9", "2015-09-24 19:03:27", "172.218.194.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("17710", "8", "2015-09-24 19:03:27", "172.218.194.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("17711", "3", "2015-09-24 20:07:29", "104.236.211.136", "226");
INSERT INTO `wp_rg_form_view` VALUES("17712", "1", "2015-09-24 20:07:29", "104.236.211.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("17713", "2", "2015-09-24 20:07:30", "104.236.211.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("17714", "9", "2015-09-24 20:07:31", "104.236.211.136", "27");
INSERT INTO `wp_rg_form_view` VALUES("17715", "9", "2015-09-24 20:07:31", "104.236.211.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("17716", "8", "2015-09-24 20:07:31", "104.236.211.136", "28");
INSERT INTO `wp_rg_form_view` VALUES("17717", "3", "2015-09-24 21:06:02", "107.150.42.226", "50");
INSERT INTO `wp_rg_form_view` VALUES("17718", "9", "2015-09-24 21:06:04", "107.150.42.226", "7");
INSERT INTO `wp_rg_form_view` VALUES("17719", "8", "2015-09-24 21:06:04", "107.150.42.226", "7");
INSERT INTO `wp_rg_form_view` VALUES("17720", "3", "2015-09-24 22:06:47", "96.54.32.241", "64");
INSERT INTO `wp_rg_form_view` VALUES("17721", "9", "2015-09-24 22:06:48", "96.54.32.241", "8");
INSERT INTO `wp_rg_form_view` VALUES("17722", "8", "2015-09-24 22:06:48", "96.54.32.241", "8");
INSERT INTO `wp_rg_form_view` VALUES("17723", "3", "2015-09-24 23:31:34", "24.69.59.84", "33");
INSERT INTO `wp_rg_form_view` VALUES("17724", "9", "2015-09-24 23:31:34", "24.69.59.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("17725", "8", "2015-09-24 23:31:34", "24.69.59.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("17726", "3", "2015-09-25 00:10:49", "54.209.60.63", "205");
INSERT INTO `wp_rg_form_view` VALUES("17727", "9", "2015-09-25 00:10:49", "54.209.60.63", "24");
INSERT INTO `wp_rg_form_view` VALUES("17728", "8", "2015-09-25 00:10:49", "54.209.60.63", "25");
INSERT INTO `wp_rg_form_view` VALUES("17729", "1", "2015-09-25 00:48:31", "184.66.114.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("17730", "3", "2015-09-25 02:27:06", "208.115.111.66", "24");
INSERT INTO `wp_rg_form_view` VALUES("17731", "9", "2015-09-25 02:27:06", "208.115.111.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("17732", "8", "2015-09-25 02:27:06", "208.115.111.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("17733", "3", "2015-09-25 03:06:07", "108.180.49.192", "48");
INSERT INTO `wp_rg_form_view` VALUES("17734", "9", "2015-09-25 03:06:07", "108.180.49.192", "6");
INSERT INTO `wp_rg_form_view` VALUES("17735", "8", "2015-09-25 03:06:07", "108.180.49.192", "6");
INSERT INTO `wp_rg_form_view` VALUES("17736", "3", "2015-09-25 04:21:58", "86.106.18.11", "134");
INSERT INTO `wp_rg_form_view` VALUES("17737", "9", "2015-09-25 04:21:59", "86.106.18.11", "16");
INSERT INTO `wp_rg_form_view` VALUES("17738", "8", "2015-09-25 04:21:59", "86.106.18.11", "16");
INSERT INTO `wp_rg_form_view` VALUES("17739", "3", "2015-09-25 05:17:05", "216.118.150.175", "25");
INSERT INTO `wp_rg_form_view` VALUES("17740", "9", "2015-09-25 05:17:05", "216.118.150.175", "3");
INSERT INTO `wp_rg_form_view` VALUES("17741", "8", "2015-09-25 05:17:05", "216.118.150.175", "3");
INSERT INTO `wp_rg_form_view` VALUES("17742", "3", "2015-09-25 06:05:26", "66.249.79.155", "56");
INSERT INTO `wp_rg_form_view` VALUES("17743", "9", "2015-09-25 06:05:26", "66.249.79.155", "7");
INSERT INTO `wp_rg_form_view` VALUES("17744", "8", "2015-09-25 06:05:26", "66.249.79.155", "7");
INSERT INTO `wp_rg_form_view` VALUES("17745", "1", "2015-09-25 06:07:26", "104.155.71.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("17746", "3", "2015-09-25 07:29:02", "1.0.178.207", "49");
INSERT INTO `wp_rg_form_view` VALUES("17747", "9", "2015-09-25 07:29:03", "1.0.178.207", "6");
INSERT INTO `wp_rg_form_view` VALUES("17748", "8", "2015-09-25 07:29:03", "1.0.178.207", "6");
INSERT INTO `wp_rg_form_view` VALUES("17749", "3", "2015-09-25 08:01:03", "54.190.220.60", "802");
INSERT INTO `wp_rg_form_view` VALUES("17750", "9", "2015-09-25 08:01:04", "54.190.220.60", "100");
INSERT INTO `wp_rg_form_view` VALUES("17751", "8", "2015-09-25 08:01:04", "54.190.220.60", "100");
INSERT INTO `wp_rg_form_view` VALUES("17752", "1", "2015-09-25 08:01:27", "54.190.220.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("17753", "2", "2015-09-25 08:01:52", "54.190.220.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("17754", "3", "2015-09-25 09:02:21", "27.151.101.141", "1281");
INSERT INTO `wp_rg_form_view` VALUES("17755", "9", "2015-09-25 09:02:23", "27.151.101.141", "145");
INSERT INTO `wp_rg_form_view` VALUES("17756", "8", "2015-09-25 09:02:23", "27.151.101.141", "160");
INSERT INTO `wp_rg_form_view` VALUES("17757", "2", "2015-09-25 09:40:39", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("17758", "1", "2015-09-25 09:40:43", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("17759", "5", "2015-09-25 09:47:14", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("17760", "6", "2015-09-25 09:55:26", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("17761", "3", "2015-09-25 10:00:02", "5.9.98.130", "4651");
INSERT INTO `wp_rg_form_view` VALUES("17762", "9", "2015-09-25 10:00:03", "5.9.98.130", "453");
INSERT INTO `wp_rg_form_view` VALUES("17763", "8", "2015-09-25 10:00:03", "5.9.98.130", "585");
INSERT INTO `wp_rg_form_view` VALUES("17764", "3", "2015-09-25 11:00:00", "5.9.98.130", "4045");
INSERT INTO `wp_rg_form_view` VALUES("17765", "8", "2015-09-25 11:00:03", "5.9.98.130", "426");
INSERT INTO `wp_rg_form_view` VALUES("17766", "9", "2015-09-25 11:00:05", "5.9.98.130", "382");
INSERT INTO `wp_rg_form_view` VALUES("17767", "3", "2015-09-25 12:00:00", "5.9.98.130", "1606");
INSERT INTO `wp_rg_form_view` VALUES("17768", "9", "2015-09-25 12:00:01", "5.9.98.130", "175");
INSERT INTO `wp_rg_form_view` VALUES("17769", "8", "2015-09-25 12:00:02", "5.9.98.130", "299");
INSERT INTO `wp_rg_form_view` VALUES("17770", "3", "2015-09-25 13:01:42", "5.9.98.130", "6464");
INSERT INTO `wp_rg_form_view` VALUES("17771", "9", "2015-09-25 13:01:43", "5.9.98.130", "557");
INSERT INTO `wp_rg_form_view` VALUES("17772", "8", "2015-09-25 13:01:43", "5.9.98.130", "608");
INSERT INTO `wp_rg_form_view` VALUES("17773", "9", "2015-09-25 14:00:01", "5.9.98.130", "528");
INSERT INTO `wp_rg_form_view` VALUES("17774", "3", "2015-09-25 14:00:01", "5.9.98.130", "4584");
INSERT INTO `wp_rg_form_view` VALUES("17775", "8", "2015-09-25 14:00:04", "5.9.98.130", "797");
INSERT INTO `wp_rg_form_view` VALUES("17776", "3", "2015-09-25 15:03:01", "66.249.79.162", "140");
INSERT INTO `wp_rg_form_view` VALUES("17777", "9", "2015-09-25 15:03:02", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("17778", "8", "2015-09-25 15:03:03", "66.249.79.162", "17");
INSERT INTO `wp_rg_form_view` VALUES("17779", "1", "2015-09-25 15:29:46", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("17780", "3", "2015-09-25 16:03:27", "66.249.79.162", "3306");
INSERT INTO `wp_rg_form_view` VALUES("17781", "9", "2015-09-25 16:03:28", "66.249.79.162", "413");
INSERT INTO `wp_rg_form_view` VALUES("17782", "8", "2015-09-25 16:03:28", "66.249.79.162", "414");
INSERT INTO `wp_rg_form_view` VALUES("17783", "3", "2015-09-25 17:00:01", "5.9.98.130", "6318");
INSERT INTO `wp_rg_form_view` VALUES("17784", "9", "2015-09-25 17:00:01", "5.9.98.130", "408");
INSERT INTO `wp_rg_form_view` VALUES("17785", "8", "2015-09-25 17:00:02", "5.9.98.130", "535");
INSERT INTO `wp_rg_form_view` VALUES("17786", "3", "2015-09-25 18:00:00", "5.9.98.130", "5370");
INSERT INTO `wp_rg_form_view` VALUES("17787", "8", "2015-09-25 18:00:00", "91.200.12.128", "550");
INSERT INTO `wp_rg_form_view` VALUES("17788", "9", "2015-09-25 18:00:04", "91.200.12.128", "611");
INSERT INTO `wp_rg_form_view` VALUES("17789", "2", "2015-09-25 18:03:50", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17790", "1", "2015-09-25 18:25:26", "107.189.36.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("17791", "9", "2015-09-25 19:00:00", "5.9.98.130", "480");
INSERT INTO `wp_rg_form_view` VALUES("17792", "3", "2015-09-25 19:00:00", "5.9.98.130", "4915");
INSERT INTO `wp_rg_form_view` VALUES("17793", "8", "2015-09-25 19:00:01", "5.9.98.130", "824");
INSERT INTO `wp_rg_form_view` VALUES("17794", "8", "2015-09-25 20:00:00", "5.9.98.130", "547");
INSERT INTO `wp_rg_form_view` VALUES("17795", "3", "2015-09-25 20:00:01", "5.9.98.130", "2653");
INSERT INTO `wp_rg_form_view` VALUES("17796", "9", "2015-09-25 20:00:02", "5.9.98.130", "317");
INSERT INTO `wp_rg_form_view` VALUES("17797", "3", "2015-09-25 21:06:15", "66.249.79.162", "82");
INSERT INTO `wp_rg_form_view` VALUES("17798", "9", "2015-09-25 21:06:16", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17799", "8", "2015-09-25 21:06:17", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17800", "1", "2015-09-25 21:57:41", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("17801", "3", "2015-09-25 22:03:09", "66.249.79.155", "32");
INSERT INTO `wp_rg_form_view` VALUES("17802", "9", "2015-09-25 22:03:10", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("17803", "8", "2015-09-25 22:03:10", "66.249.79.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("17804", "3", "2015-09-25 23:05:07", "66.249.79.169", "202");
INSERT INTO `wp_rg_form_view` VALUES("17805", "9", "2015-09-25 23:05:08", "66.249.79.169", "26");
INSERT INTO `wp_rg_form_view` VALUES("17806", "8", "2015-09-25 23:05:08", "66.249.79.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("17807", "2", "2015-09-25 23:21:26", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("17808", "3", "2015-09-26 00:05:03", "207.46.13.127", "140");
INSERT INTO `wp_rg_form_view` VALUES("17809", "9", "2015-09-26 00:05:04", "207.46.13.127", "16");
INSERT INTO `wp_rg_form_view` VALUES("17810", "8", "2015-09-26 00:05:05", "207.46.13.127", "16");
INSERT INTO `wp_rg_form_view` VALUES("17811", "1", "2015-09-26 00:43:10", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("17812", "6", "2015-09-26 00:59:09", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("17813", "3", "2015-09-26 01:07:26", "66.249.79.169", "90");
INSERT INTO `wp_rg_form_view` VALUES("17814", "9", "2015-09-26 01:07:26", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("17815", "8", "2015-09-26 01:07:26", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("17816", "1", "2015-09-26 01:12:26", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("17817", "3", "2015-09-26 02:07:41", "66.249.79.169", "76");
INSERT INTO `wp_rg_form_view` VALUES("17818", "9", "2015-09-26 02:07:42", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("17819", "8", "2015-09-26 02:07:42", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("17820", "3", "2015-09-26 03:06:43", "66.249.79.155", "25");
INSERT INTO `wp_rg_form_view` VALUES("17821", "9", "2015-09-26 03:06:43", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("17822", "8", "2015-09-26 03:06:43", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("17823", "3", "2015-09-26 04:01:20", "66.249.79.162", "81");
INSERT INTO `wp_rg_form_view` VALUES("17824", "9", "2015-09-26 04:01:21", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17825", "8", "2015-09-26 04:01:21", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17826", "3", "2015-09-26 05:21:43", "66.249.79.155", "147");
INSERT INTO `wp_rg_form_view` VALUES("17827", "9", "2015-09-26 05:21:44", "66.249.79.155", "17");
INSERT INTO `wp_rg_form_view` VALUES("17828", "8", "2015-09-26 05:21:45", "66.249.79.155", "19");
INSERT INTO `wp_rg_form_view` VALUES("17829", "2", "2015-09-26 05:37:58", "204.12.239.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("17830", "3", "2015-09-26 06:16:35", "66.249.79.169", "96");
INSERT INTO `wp_rg_form_view` VALUES("17831", "9", "2015-09-26 06:16:35", "66.249.79.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("17832", "8", "2015-09-26 06:16:35", "66.249.79.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("17833", "3", "2015-09-26 07:00:07", "217.69.133.233", "74");
INSERT INTO `wp_rg_form_view` VALUES("17834", "9", "2015-09-26 07:00:08", "217.69.133.233", "9");
INSERT INTO `wp_rg_form_view` VALUES("17835", "8", "2015-09-26 07:00:08", "217.69.133.233", "9");
INSERT INTO `wp_rg_form_view` VALUES("17836", "3", "2015-09-26 08:17:50", "207.46.13.29", "68");
INSERT INTO `wp_rg_form_view` VALUES("17837", "9", "2015-09-26 08:17:50", "207.46.13.29", "10");
INSERT INTO `wp_rg_form_view` VALUES("17838", "8", "2015-09-26 08:17:50", "207.46.13.29", "10");
INSERT INTO `wp_rg_form_view` VALUES("17839", "3", "2015-09-26 09:04:26", "66.249.79.155", "21");
INSERT INTO `wp_rg_form_view` VALUES("17840", "9", "2015-09-26 09:04:27", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("17841", "8", "2015-09-26 09:04:27", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("17842", "3", "2015-09-26 10:02:30", "66.249.79.169", "32");
INSERT INTO `wp_rg_form_view` VALUES("17843", "9", "2015-09-26 10:02:30", "66.249.79.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("17844", "8", "2015-09-26 10:02:31", "66.249.79.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("17845", "3", "2015-09-26 11:41:03", "217.69.133.69", "33");
INSERT INTO `wp_rg_form_view` VALUES("17846", "9", "2015-09-26 11:41:05", "217.69.133.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("17847", "8", "2015-09-26 11:41:05", "217.69.133.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("17848", "1", "2015-09-26 11:59:04", "62.210.178.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("17849", "3", "2015-09-26 13:31:35", "91.200.12.128", "18");
INSERT INTO `wp_rg_form_view` VALUES("17850", "9", "2015-09-26 13:31:40", "91.200.12.128", "3");
INSERT INTO `wp_rg_form_view` VALUES("17851", "8", "2015-09-26 13:31:40", "91.200.12.128", "3");
INSERT INTO `wp_rg_form_view` VALUES("17852", "3", "2015-09-26 14:28:27", "207.46.13.127", "77");
INSERT INTO `wp_rg_form_view` VALUES("17853", "9", "2015-09-26 14:28:28", "207.46.13.127", "9");
INSERT INTO `wp_rg_form_view` VALUES("17854", "8", "2015-09-26 14:28:28", "207.46.13.127", "9");
INSERT INTO `wp_rg_form_view` VALUES("17855", "5", "2015-09-26 14:50:31", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("17856", "3", "2015-09-26 15:37:08", "66.249.79.155", "16");
INSERT INTO `wp_rg_form_view` VALUES("17857", "9", "2015-09-26 15:37:09", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("17858", "8", "2015-09-26 15:37:09", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("17859", "9", "2015-09-26 16:00:29", "24.108.146.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("17860", "3", "2015-09-26 16:00:29", "24.108.146.93", "17");
INSERT INTO `wp_rg_form_view` VALUES("17861", "8", "2015-09-26 16:00:30", "24.108.146.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("17862", "3", "2015-09-26 17:14:55", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("17863", "9", "2015-09-26 17:14:58", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("17864", "8", "2015-09-26 17:14:58", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("17865", "3", "2015-09-26 18:30:21", "180.180.70.13", "33");
INSERT INTO `wp_rg_form_view` VALUES("17866", "9", "2015-09-26 18:30:22", "180.180.70.13", "4");
INSERT INTO `wp_rg_form_view` VALUES("17867", "8", "2015-09-26 18:30:22", "180.180.70.13", "4");
INSERT INTO `wp_rg_form_view` VALUES("17868", "3", "2015-09-26 19:07:52", "104.168.98.42", "82");
INSERT INTO `wp_rg_form_view` VALUES("17869", "9", "2015-09-26 19:07:53", "104.168.98.42", "10");
INSERT INTO `wp_rg_form_view` VALUES("17870", "8", "2015-09-26 19:07:53", "104.168.98.42", "10");
INSERT INTO `wp_rg_form_view` VALUES("17871", "3", "2015-09-26 20:25:37", "66.249.79.169", "42");
INSERT INTO `wp_rg_form_view` VALUES("17872", "9", "2015-09-26 20:25:38", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("17873", "8", "2015-09-26 20:25:38", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("17874", "3", "2015-09-26 21:06:19", "217.69.133.227", "17");
INSERT INTO `wp_rg_form_view` VALUES("17875", "9", "2015-09-26 21:06:19", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("17876", "8", "2015-09-26 21:06:19", "217.69.133.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("17877", "3", "2015-09-26 22:16:02", "66.249.79.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("17878", "9", "2015-09-26 22:16:02", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("17879", "8", "2015-09-26 22:16:02", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("17880", "1", "2015-09-26 23:49:53", "104.155.71.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("17881", "3", "2015-09-26 23:49:54", "104.155.71.48", "51");
INSERT INTO `wp_rg_form_view` VALUES("17882", "9", "2015-09-26 23:49:54", "104.155.71.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("17883", "8", "2015-09-26 23:49:54", "104.155.71.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("17884", "3", "2015-09-27 00:09:57", "66.249.79.155", "24");
INSERT INTO `wp_rg_form_view` VALUES("17885", "9", "2015-09-27 00:09:57", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("17886", "8", "2015-09-27 00:09:58", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("17887", "3", "2015-09-27 01:12:34", "96.53.220.89", "40");
INSERT INTO `wp_rg_form_view` VALUES("17888", "9", "2015-09-27 01:12:34", "96.53.220.89", "6");
INSERT INTO `wp_rg_form_view` VALUES("17889", "8", "2015-09-27 01:12:34", "96.53.220.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("17890", "3", "2015-09-27 02:04:37", "162.243.246.219", "3174");
INSERT INTO `wp_rg_form_view` VALUES("17891", "9", "2015-09-27 02:04:37", "162.243.246.219", "351");
INSERT INTO `wp_rg_form_view` VALUES("17892", "8", "2015-09-27 02:04:37", "162.243.246.219", "401");
INSERT INTO `wp_rg_form_view` VALUES("17893", "1", "2015-09-27 02:12:34", "162.243.246.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("17894", "6", "2015-09-27 02:18:24", "162.243.246.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("17895", "5", "2015-09-27 02:25:14", "162.243.246.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("17896", "8", "2015-09-27 03:00:25", "162.243.246.219", "204");
INSERT INTO `wp_rg_form_view` VALUES("17897", "3", "2015-09-27 03:00:25", "162.243.246.219", "1614");
INSERT INTO `wp_rg_form_view` VALUES("17898", "9", "2015-09-27 03:00:26", "162.243.246.219", "174");
INSERT INTO `wp_rg_form_view` VALUES("17899", "2", "2015-09-27 03:14:00", "162.243.246.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("17900", "3", "2015-09-27 04:40:35", "66.249.79.162", "67");
INSERT INTO `wp_rg_form_view` VALUES("17901", "9", "2015-09-27 04:40:37", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("17902", "8", "2015-09-27 04:40:37", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("17903", "1", "2015-09-27 04:45:28", "104.155.71.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("17904", "3", "2015-09-27 05:05:26", "66.249.79.169", "136");
INSERT INTO `wp_rg_form_view` VALUES("17905", "9", "2015-09-27 05:05:27", "66.249.79.169", "17");
INSERT INTO `wp_rg_form_view` VALUES("17906", "8", "2015-09-27 05:05:27", "66.249.79.169", "17");
INSERT INTO `wp_rg_form_view` VALUES("17907", "3", "2015-09-27 06:03:08", "66.249.79.155", "66");
INSERT INTO `wp_rg_form_view` VALUES("17908", "9", "2015-09-27 06:03:08", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("17909", "8", "2015-09-27 06:03:09", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("17910", "1", "2015-09-27 07:44:28", "51.254.83.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("17911", "3", "2015-09-27 07:44:30", "51.254.83.80", "24");
INSERT INTO `wp_rg_form_view` VALUES("17912", "9", "2015-09-27 07:44:31", "51.254.83.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("17913", "8", "2015-09-27 07:44:31", "51.254.83.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("17914", "3", "2015-09-27 08:02:53", "217.69.133.227", "112");
INSERT INTO `wp_rg_form_view` VALUES("17915", "9", "2015-09-27 08:02:53", "217.69.133.227", "14");
INSERT INTO `wp_rg_form_view` VALUES("17916", "8", "2015-09-27 08:02:53", "217.69.133.227", "14");
INSERT INTO `wp_rg_form_view` VALUES("17917", "7", "2015-09-27 08:12:12", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17918", "3", "2015-09-27 09:20:01", "68.180.229.161", "41");
INSERT INTO `wp_rg_form_view` VALUES("17919", "9", "2015-09-27 09:20:09", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("17920", "8", "2015-09-27 09:20:09", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("17921", "3", "2015-09-27 10:29:42", "66.249.79.162", "83");
INSERT INTO `wp_rg_form_view` VALUES("17922", "9", "2015-09-27 10:29:43", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("17923", "8", "2015-09-27 10:29:43", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("17924", "3", "2015-09-27 11:10:04", "66.249.79.162", "128");
INSERT INTO `wp_rg_form_view` VALUES("17925", "9", "2015-09-27 11:10:05", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("17926", "8", "2015-09-27 11:10:05", "66.249.79.162", "17");
INSERT INTO `wp_rg_form_view` VALUES("17927", "1", "2015-09-27 11:28:02", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("17928", "1", "2015-09-27 12:03:54", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17929", "3", "2015-09-27 12:03:54", "66.249.79.169", "41");
INSERT INTO `wp_rg_form_view` VALUES("17930", "9", "2015-09-27 12:03:54", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("17931", "8", "2015-09-27 12:03:54", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("17932", "3", "2015-09-27 13:01:32", "66.249.79.162", "73");
INSERT INTO `wp_rg_form_view` VALUES("17933", "9", "2015-09-27 13:01:32", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("17934", "8", "2015-09-27 13:01:32", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("17935", "1", "2015-09-27 13:48:16", "62.210.178.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("17936", "3", "2015-09-27 14:31:53", "68.180.229.161", "282");
INSERT INTO `wp_rg_form_view` VALUES("17937", "9", "2015-09-27 14:31:54", "68.180.229.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("17938", "8", "2015-09-27 14:31:54", "68.180.229.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("17939", "1", "2015-09-27 14:53:32", "201.21.10.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("17940", "2", "2015-09-27 14:53:44", "201.21.10.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("17941", "3", "2015-09-27 15:07:32", "61.174.10.22", "201");
INSERT INTO `wp_rg_form_view` VALUES("17942", "9", "2015-09-27 15:07:32", "61.174.10.22", "23");
INSERT INTO `wp_rg_form_view` VALUES("17943", "8", "2015-09-27 15:07:33", "61.174.10.22", "23");
INSERT INTO `wp_rg_form_view` VALUES("17944", "3", "2015-09-27 16:11:46", "66.249.79.169", "75");
INSERT INTO `wp_rg_form_view` VALUES("17945", "9", "2015-09-27 16:11:46", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("17946", "8", "2015-09-27 16:11:46", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("17947", "8", "2015-09-27 17:04:00", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("17948", "3", "2015-09-27 17:04:00", "66.249.79.162", "120");
INSERT INTO `wp_rg_form_view` VALUES("17949", "9", "2015-09-27 17:04:00", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("17950", "2", "2015-09-27 17:08:26", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("17951", "3", "2015-09-27 18:10:55", "66.249.79.155", "137");
INSERT INTO `wp_rg_form_view` VALUES("17952", "9", "2015-09-27 18:10:55", "66.249.79.155", "18");
INSERT INTO `wp_rg_form_view` VALUES("17953", "8", "2015-09-27 18:10:55", "66.249.79.155", "17");
INSERT INTO `wp_rg_form_view` VALUES("17954", "3", "2015-09-27 19:14:24", "66.249.79.162", "40");
INSERT INTO `wp_rg_form_view` VALUES("17955", "9", "2015-09-27 19:14:24", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("17956", "8", "2015-09-27 19:14:25", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("17957", "3", "2015-09-27 20:10:56", "66.249.79.169", "48");
INSERT INTO `wp_rg_form_view` VALUES("17958", "9", "2015-09-27 20:10:56", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("17959", "8", "2015-09-27 20:10:56", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("17960", "3", "2015-09-27 21:09:38", "66.249.79.155", "73");
INSERT INTO `wp_rg_form_view` VALUES("17961", "9", "2015-09-27 21:09:38", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("17962", "8", "2015-09-27 21:09:38", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("17963", "1", "2015-09-27 22:09:05", "173.254.226.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("17964", "3", "2015-09-27 22:09:05", "173.254.226.147", "108");
INSERT INTO `wp_rg_form_view` VALUES("17965", "9", "2015-09-27 22:09:05", "173.254.226.147", "14");
INSERT INTO `wp_rg_form_view` VALUES("17966", "8", "2015-09-27 22:09:05", "173.254.226.147", "13");
INSERT INTO `wp_rg_form_view` VALUES("17967", "3", "2015-09-27 23:01:03", "66.249.79.162", "90");
INSERT INTO `wp_rg_form_view` VALUES("17968", "9", "2015-09-27 23:01:03", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("17969", "8", "2015-09-27 23:01:03", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("17970", "3", "2015-09-28 00:01:17", "207.46.13.63", "284");
INSERT INTO `wp_rg_form_view` VALUES("17971", "8", "2015-09-28 00:01:18", "207.46.13.63", "33");
INSERT INTO `wp_rg_form_view` VALUES("17972", "9", "2015-09-28 00:01:18", "207.46.13.63", "34");
INSERT INTO `wp_rg_form_view` VALUES("17973", "6", "2015-09-28 00:41:41", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17974", "1", "2015-09-28 00:54:21", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("17975", "3", "2015-09-28 01:11:26", "66.249.79.162", "122");
INSERT INTO `wp_rg_form_view` VALUES("17976", "9", "2015-09-28 01:11:27", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("17977", "8", "2015-09-28 01:11:27", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("17978", "1", "2015-09-28 01:55:30", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("17979", "3", "2015-09-28 02:28:18", "68.180.229.161", "133");
INSERT INTO `wp_rg_form_view` VALUES("17980", "9", "2015-09-28 02:28:18", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("17981", "8", "2015-09-28 02:28:18", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("17982", "1", "2015-09-28 02:54:47", "104.155.71.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("17983", "3", "2015-09-28 03:10:42", "66.249.79.169", "48");
INSERT INTO `wp_rg_form_view` VALUES("17984", "9", "2015-09-28 03:10:42", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("17985", "8", "2015-09-28 03:10:42", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("17986", "3", "2015-09-28 04:04:38", "173.254.203.85", "137");
INSERT INTO `wp_rg_form_view` VALUES("17987", "9", "2015-09-28 04:04:39", "173.254.203.85", "21");
INSERT INTO `wp_rg_form_view` VALUES("17988", "8", "2015-09-28 04:04:39", "173.254.203.85", "17");
INSERT INTO `wp_rg_form_view` VALUES("17989", "3", "2015-09-28 05:02:41", "66.249.79.155", "74");
INSERT INTO `wp_rg_form_view` VALUES("17990", "9", "2015-09-28 05:02:41", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("17991", "8", "2015-09-28 05:02:41", "66.249.79.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("17992", "6", "2015-09-28 05:54:55", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("17993", "3", "2015-09-28 06:20:46", "66.249.79.162", "40");
INSERT INTO `wp_rg_form_view` VALUES("17994", "9", "2015-09-28 06:20:46", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("17995", "8", "2015-09-28 06:20:46", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("17996", "1", "2015-09-28 06:39:15", "207.6.127.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("17997", "3", "2015-09-28 07:08:16", "66.249.79.169", "72");
INSERT INTO `wp_rg_form_view` VALUES("17998", "9", "2015-09-28 07:08:16", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("17999", "8", "2015-09-28 07:08:16", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("18000", "2", "2015-09-28 07:30:26", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("18001", "3", "2015-09-28 08:00:12", "66.249.79.155", "65");
INSERT INTO `wp_rg_form_view` VALUES("18002", "9", "2015-09-28 08:00:12", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("18003", "8", "2015-09-28 08:00:12", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("18004", "6", "2015-09-28 08:19:15", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("18005", "3", "2015-09-28 09:04:43", "91.200.12.63", "129");
INSERT INTO `wp_rg_form_view` VALUES("18006", "9", "2015-09-28 09:04:43", "91.200.12.63", "16");
INSERT INTO `wp_rg_form_view` VALUES("18007", "8", "2015-09-28 09:04:43", "91.200.12.63", "16");
INSERT INTO `wp_rg_form_view` VALUES("18008", "3", "2015-09-28 10:11:11", "66.249.79.169", "40");
INSERT INTO `wp_rg_form_view` VALUES("18009", "9", "2015-09-28 10:11:11", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("18010", "8", "2015-09-28 10:11:12", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("18011", "3", "2015-09-28 11:01:11", "142.227.100.253", "108");
INSERT INTO `wp_rg_form_view` VALUES("18012", "9", "2015-09-28 11:01:11", "142.227.100.253", "13");
INSERT INTO `wp_rg_form_view` VALUES("18013", "8", "2015-09-28 11:01:11", "142.227.100.253", "13");
INSERT INTO `wp_rg_form_view` VALUES("18014", "1", "2015-09-28 11:25:00", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("18015", "6", "2015-09-28 11:34:42", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("18016", "3", "2015-09-28 12:06:40", "66.249.79.162", "67");
INSERT INTO `wp_rg_form_view` VALUES("18017", "9", "2015-09-28 12:06:40", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("18018", "8", "2015-09-28 12:06:40", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("18019", "2", "2015-09-28 12:17:33", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("18020", "9", "2015-09-28 13:07:08", "66.249.79.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("18021", "3", "2015-09-28 13:07:08", "66.249.79.169", "99");
INSERT INTO `wp_rg_form_view` VALUES("18022", "8", "2015-09-28 13:07:09", "66.249.79.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("18023", "3", "2015-09-28 14:01:12", "66.249.79.155", "115");
INSERT INTO `wp_rg_form_view` VALUES("18024", "9", "2015-09-28 14:01:12", "66.249.79.155", "14");
INSERT INTO `wp_rg_form_view` VALUES("18025", "8", "2015-09-28 14:01:12", "66.249.79.155", "14");
INSERT INTO `wp_rg_form_view` VALUES("18026", "1", "2015-09-28 14:14:21", "104.155.71.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("18027", "6", "2015-09-28 14:28:44", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("18028", "3", "2015-09-28 15:05:01", "66.249.79.169", "74");
INSERT INTO `wp_rg_form_view` VALUES("18029", "9", "2015-09-28 15:05:02", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("18030", "8", "2015-09-28 15:05:02", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("18031", "1", "2015-09-28 15:29:09", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("18032", "3", "2015-09-28 16:01:39", "66.249.79.155", "90");
INSERT INTO `wp_rg_form_view` VALUES("18033", "9", "2015-09-28 16:01:39", "66.249.79.155", "12");
INSERT INTO `wp_rg_form_view` VALUES("18034", "8", "2015-09-28 16:01:39", "66.249.79.155", "11");
INSERT INTO `wp_rg_form_view` VALUES("18035", "8", "2015-09-28 17:00:56", "199.21.99.202", "19");
INSERT INTO `wp_rg_form_view` VALUES("18036", "3", "2015-09-28 17:00:56", "199.21.99.202", "138");
INSERT INTO `wp_rg_form_view` VALUES("18037", "9", "2015-09-28 17:00:57", "199.21.99.202", "17");
INSERT INTO `wp_rg_form_view` VALUES("18038", "3", "2015-09-28 18:00:34", "68.180.229.161", "222");
INSERT INTO `wp_rg_form_view` VALUES("18039", "9", "2015-09-28 18:00:34", "68.180.229.161", "27");
INSERT INTO `wp_rg_form_view` VALUES("18040", "8", "2015-09-28 18:00:34", "68.180.229.161", "27");
INSERT INTO `wp_rg_form_view` VALUES("18041", "6", "2015-09-28 18:11:34", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("18042", "1", "2015-09-28 18:39:38", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("18043", "9", "2015-09-28 19:00:40", "66.249.79.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("18044", "3", "2015-09-28 19:00:40", "66.249.79.162", "144");
INSERT INTO `wp_rg_form_view` VALUES("18045", "8", "2015-09-28 19:00:40", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("18046", "3", "2015-09-28 20:01:08", "66.249.79.162", "220");
INSERT INTO `wp_rg_form_view` VALUES("18047", "9", "2015-09-28 20:01:08", "66.249.79.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("18048", "8", "2015-09-28 20:01:08", "66.249.79.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("18049", "1", "2015-09-28 20:07:36", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("18050", "2", "2015-09-28 20:07:47", "93.92.217.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("18051", "6", "2015-09-28 20:37:20", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("18052", "9", "2015-09-28 21:02:44", "66.249.79.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("18053", "3", "2015-09-28 21:02:44", "66.249.79.169", "98");
INSERT INTO `wp_rg_form_view` VALUES("18054", "8", "2015-09-28 21:02:44", "66.249.79.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("18055", "3", "2015-09-28 22:00:18", "207.46.13.63", "216");
INSERT INTO `wp_rg_form_view` VALUES("18056", "9", "2015-09-28 22:00:18", "207.46.13.63", "26");
INSERT INTO `wp_rg_form_view` VALUES("18057", "8", "2015-09-28 22:00:18", "207.46.13.63", "26");
INSERT INTO `wp_rg_form_view` VALUES("18058", "1", "2015-09-28 22:01:14", "104.155.71.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("18059", "5", "2015-09-28 22:02:59", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("18060", "9", "2015-09-28 23:06:02", "172.245.228.139", "19");
INSERT INTO `wp_rg_form_view` VALUES("18061", "3", "2015-09-28 23:06:02", "172.245.228.139", "157");
INSERT INTO `wp_rg_form_view` VALUES("18062", "8", "2015-09-28 23:06:02", "172.245.228.139", "19");
INSERT INTO `wp_rg_form_view` VALUES("18063", "2", "2015-09-28 23:51:30", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("18064", "9", "2015-09-29 00:12:18", "54.209.60.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("18065", "3", "2015-09-29 00:12:18", "54.209.60.63", "64");
INSERT INTO `wp_rg_form_view` VALUES("18066", "8", "2015-09-29 00:12:19", "54.209.60.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("18067", "9", "2015-09-29 01:27:35", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("18068", "3", "2015-09-29 01:27:37", "66.249.79.155", "32");
INSERT INTO `wp_rg_form_view` VALUES("18069", "8", "2015-09-29 01:27:37", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("18070", "9", "2015-09-29 02:01:05", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("18071", "3", "2015-09-29 02:01:05", "66.249.79.162", "32");
INSERT INTO `wp_rg_form_view` VALUES("18072", "8", "2015-09-29 02:01:05", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("18073", "9", "2015-09-29 03:00:37", "107.173.213.149", "20");
INSERT INTO `wp_rg_form_view` VALUES("18074", "3", "2015-09-29 03:00:37", "107.173.213.149", "146");
INSERT INTO `wp_rg_form_view` VALUES("18075", "8", "2015-09-29 03:00:37", "107.173.213.149", "19");
INSERT INTO `wp_rg_form_view` VALUES("18076", "1", "2015-09-29 03:54:31", "45.57.138.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("18077", "9", "2015-09-29 04:00:00", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("18078", "3", "2015-09-29 04:00:00", "66.249.79.162", "99");
INSERT INTO `wp_rg_form_view` VALUES("18079", "8", "2015-09-29 04:00:00", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("18080", "1", "2015-09-29 04:31:43", "62.210.178.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("18081", "6", "2015-09-29 04:36:30", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("18082", "9", "2015-09-29 05:01:00", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("18083", "3", "2015-09-29 05:01:00", "66.249.79.169", "89");
INSERT INTO `wp_rg_form_view` VALUES("18084", "8", "2015-09-29 05:01:00", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("18085", "1", "2015-09-29 06:01:23", "66.249.79.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("18086", "9", "2015-09-29 06:01:24", "66.249.79.155", "11");
INSERT INTO `wp_rg_form_view` VALUES("18087", "3", "2015-09-29 06:01:24", "66.249.79.155", "81");
INSERT INTO `wp_rg_form_view` VALUES("18088", "8", "2015-09-29 06:01:24", "66.249.79.155", "11");
INSERT INTO `wp_rg_form_view` VALUES("18089", "9", "2015-09-29 07:09:12", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("18090", "3", "2015-09-29 07:09:13", "68.180.229.161", "73");
INSERT INTO `wp_rg_form_view` VALUES("18091", "8", "2015-09-29 07:09:13", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("18092", "9", "2015-09-29 08:07:34", "66.249.79.155", "6");
INSERT INTO `wp_rg_form_view` VALUES("18093", "3", "2015-09-29 08:07:34", "66.249.79.155", "48");
INSERT INTO `wp_rg_form_view` VALUES("18094", "8", "2015-09-29 08:07:34", "66.249.79.155", "6");
INSERT INTO `wp_rg_form_view` VALUES("18095", "7", "2015-09-29 08:13:54", "157.55.39.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("18096", "9", "2015-09-29 09:09:45", "66.249.79.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("18097", "3", "2015-09-29 09:09:48", "66.249.79.169", "97");
INSERT INTO `wp_rg_form_view` VALUES("18098", "8", "2015-09-29 09:09:48", "66.249.79.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("18099", "9", "2015-09-29 10:33:04", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("18100", "3", "2015-09-29 10:33:04", "66.249.79.155", "64");
INSERT INTO `wp_rg_form_view` VALUES("18101", "8", "2015-09-29 10:33:04", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("18102", "7", "2015-09-29 10:50:10", "157.55.39.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("18103", "9", "2015-09-29 11:00:56", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("18104", "3", "2015-09-29 11:00:56", "66.249.79.162", "48");
INSERT INTO `wp_rg_form_view` VALUES("18105", "8", "2015-09-29 11:00:56", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("18106", "3", "2015-09-29 12:18:13", "68.180.229.161", "91");
INSERT INTO `wp_rg_form_view` VALUES("18107", "9", "2015-09-29 12:18:14", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("18108", "8", "2015-09-29 12:18:14", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("18109", "9", "2015-09-29 13:02:11", "207.46.13.63", "29");
INSERT INTO `wp_rg_form_view` VALUES("18110", "3", "2015-09-29 13:02:11", "207.46.13.63", "217");
INSERT INTO `wp_rg_form_view` VALUES("18111", "8", "2015-09-29 13:02:11", "207.46.13.63", "27");
INSERT INTO `wp_rg_form_view` VALUES("18112", "1", "2015-09-29 13:28:30", "157.55.39.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("18113", "2", "2015-09-29 13:36:51", "157.55.39.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("18114", "9", "2015-09-29 14:00:14", "207.46.13.63", "23");
INSERT INTO `wp_rg_form_view` VALUES("18115", "3", "2015-09-29 14:00:14", "207.46.13.63", "180");
INSERT INTO `wp_rg_form_view` VALUES("18116", "8", "2015-09-29 14:00:14", "207.46.13.63", "23");
INSERT INTO `wp_rg_form_view` VALUES("18117", "9", "2015-09-29 15:02:32", "157.55.39.92", "18");
INSERT INTO `wp_rg_form_view` VALUES("18118", "3", "2015-09-29 15:02:32", "157.55.39.92", "145");
INSERT INTO `wp_rg_form_view` VALUES("18119", "8", "2015-09-29 15:02:32", "157.55.39.92", "23");
INSERT INTO `wp_rg_form_view` VALUES("18120", "1", "2015-09-29 15:05:44", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("18121", "9", "2015-09-29 16:01:51", "157.55.39.2", "21");
INSERT INTO `wp_rg_form_view` VALUES("18122", "3", "2015-09-29 16:01:51", "157.55.39.2", "167");
INSERT INTO `wp_rg_form_view` VALUES("18123", "8", "2015-09-29 16:01:51", "157.55.39.2", "21");
INSERT INTO `wp_rg_form_view` VALUES("18124", "9", "2015-09-29 17:00:20", "157.55.39.1", "30");
INSERT INTO `wp_rg_form_view` VALUES("18125", "3", "2015-09-29 17:00:20", "157.55.39.1", "209");
INSERT INTO `wp_rg_form_view` VALUES("18126", "8", "2015-09-29 17:00:21", "157.55.39.1", "28");
INSERT INTO `wp_rg_form_view` VALUES("18127", "6", "2015-09-29 17:22:13", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("18128", "9", "2015-09-29 18:04:20", "66.249.79.169", "21");
INSERT INTO `wp_rg_form_view` VALUES("18129", "3", "2015-09-29 18:04:20", "66.249.79.169", "169");
INSERT INTO `wp_rg_form_view` VALUES("18130", "8", "2015-09-29 18:04:21", "66.249.79.169", "21");
INSERT INTO `wp_rg_form_view` VALUES("18131", "1", "2015-09-29 18:30:53", "167.114.199.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("18132", "9", "2015-09-29 19:01:07", "157.55.39.1", "18");
INSERT INTO `wp_rg_form_view` VALUES("18133", "3", "2015-09-29 19:01:07", "157.55.39.1", "152");
INSERT INTO `wp_rg_form_view` VALUES("18134", "8", "2015-09-29 19:01:07", "157.55.39.1", "20");
INSERT INTO `wp_rg_form_view` VALUES("18135", "1", "2015-09-29 19:03:07", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("18136", "9", "2015-09-29 20:13:41", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("18137", "3", "2015-09-29 20:13:41", "68.180.229.161", "97");
INSERT INTO `wp_rg_form_view` VALUES("18138", "8", "2015-09-29 20:13:41", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("18139", "9", "2015-09-29 21:38:26", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("18140", "3", "2015-09-29 21:38:30", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("18141", "8", "2015-09-29 21:38:30", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("18142", "9", "2015-09-29 22:18:24", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("18143", "3", "2015-09-29 22:18:25", "66.249.79.162", "89");
INSERT INTO `wp_rg_form_view` VALUES("18144", "8", "2015-09-29 22:18:25", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("18145", "9", "2015-09-29 23:04:29", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("18146", "3", "2015-09-29 23:04:29", "66.249.79.162", "72");
INSERT INTO `wp_rg_form_view` VALUES("18147", "8", "2015-09-29 23:04:29", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("18148", "9", "2015-09-30 00:06:49", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("18149", "3", "2015-09-30 00:06:49", "66.249.79.169", "90");
INSERT INTO `wp_rg_form_view` VALUES("18150", "8", "2015-09-30 00:06:49", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("18151", "3", "2015-09-30 01:02:08", "157.55.39.1", "114");
INSERT INTO `wp_rg_form_view` VALUES("18152", "9", "2015-09-30 01:02:08", "157.55.39.1", "15");
INSERT INTO `wp_rg_form_view` VALUES("18153", "8", "2015-09-30 01:02:08", "157.55.39.1", "14");
INSERT INTO `wp_rg_form_view` VALUES("18154", "9", "2015-09-30 02:03:09", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("18155", "3", "2015-09-30 02:03:09", "66.249.79.162", "57");
INSERT INTO `wp_rg_form_view` VALUES("18156", "8", "2015-09-30 02:03:09", "66.249.79.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("18157", "9", "2015-09-30 03:02:59", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("18158", "3", "2015-09-30 03:02:59", "68.180.229.161", "75");
INSERT INTO `wp_rg_form_view` VALUES("18159", "8", "2015-09-30 03:02:59", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("18160", "9", "2015-09-30 04:01:07", "66.249.79.155", "25");
INSERT INTO `wp_rg_form_view` VALUES("18161", "3", "2015-09-30 04:01:07", "66.249.79.155", "204");
INSERT INTO `wp_rg_form_view` VALUES("18162", "8", "2015-09-30 04:01:07", "66.249.79.155", "25");
INSERT INTO `wp_rg_form_view` VALUES("18163", "1", "2015-09-30 04:30:54", "208.115.111.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("18164", "9", "2015-09-30 05:08:41", "66.249.79.169", "19");
INSERT INTO `wp_rg_form_view` VALUES("18165", "3", "2015-09-30 05:08:41", "66.249.79.169", "147");
INSERT INTO `wp_rg_form_view` VALUES("18166", "8", "2015-09-30 05:08:41", "66.249.79.169", "18");
INSERT INTO `wp_rg_form_view` VALUES("18167", "9", "2015-09-30 06:12:59", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("18168", "3", "2015-09-30 06:12:59", "66.249.79.155", "64");
INSERT INTO `wp_rg_form_view` VALUES("18169", "8", "2015-09-30 06:12:59", "66.249.79.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("18170", "1", "2015-09-30 06:17:57", "31.184.238.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("18171", "9", "2015-09-30 07:09:54", "66.249.79.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("18172", "3", "2015-09-30 07:09:54", "66.249.79.169", "64");
INSERT INTO `wp_rg_form_view` VALUES("18173", "8", "2015-09-30 07:09:54", "66.249.79.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("18174", "1", "2015-09-30 07:42:31", "192.210.227.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("18175", "9", "2015-09-30 08:06:38", "66.249.79.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("18176", "3", "2015-09-30 08:06:38", "66.249.79.155", "81");
INSERT INTO `wp_rg_form_view` VALUES("18177", "8", "2015-09-30 08:06:39", "66.249.79.155", "11");
INSERT INTO `wp_rg_form_view` VALUES("18178", "9", "2015-09-30 09:12:33", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("18179", "3", "2015-09-30 09:12:33", "66.249.79.162", "64");
INSERT INTO `wp_rg_form_view` VALUES("18180", "8", "2015-09-30 09:12:33", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("18181", "9", "2015-09-30 10:00:56", "66.249.79.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("18182", "3", "2015-09-30 10:00:56", "66.249.79.169", "66");
INSERT INTO `wp_rg_form_view` VALUES("18183", "8", "2015-09-30 10:00:56", "66.249.79.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("18184", "3", "2015-09-30 11:16:26", "100.43.81.131", "74");
INSERT INTO `wp_rg_form_view` VALUES("18185", "9", "2015-09-30 11:16:26", "100.43.81.131", "9");
INSERT INTO `wp_rg_form_view` VALUES("18186", "8", "2015-09-30 11:16:27", "100.43.81.131", "9");
INSERT INTO `wp_rg_form_view` VALUES("18187", "3", "2015-09-30 12:43:18", "157.55.39.92", "17");
INSERT INTO `wp_rg_form_view` VALUES("18188", "9", "2015-09-30 12:43:21", "157.55.39.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("18189", "8", "2015-09-30 12:43:22", "157.55.39.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("18190", "1", "2015-09-30 13:04:08", "104.155.71.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("18191", "9", "2015-09-30 13:04:08", "104.155.71.48", "10");
INSERT INTO `wp_rg_form_view` VALUES("18192", "3", "2015-09-30 13:04:09", "104.155.71.48", "86");
INSERT INTO `wp_rg_form_view` VALUES("18193", "8", "2015-09-30 13:04:09", "104.155.71.48", "11");
INSERT INTO `wp_rg_form_view` VALUES("18194", "9", "2015-09-30 14:01:38", "27.156.72.78", "8");
INSERT INTO `wp_rg_form_view` VALUES("18195", "3", "2015-09-30 14:01:38", "27.156.72.78", "69");
INSERT INTO `wp_rg_form_view` VALUES("18196", "8", "2015-09-30 14:01:38", "27.156.72.78", "9");
INSERT INTO `wp_rg_form_view` VALUES("18197", "9", "2015-09-30 15:36:30", "67.248.28.8", "10");
INSERT INTO `wp_rg_form_view` VALUES("18198", "3", "2015-09-30 15:36:31", "67.248.28.8", "80");
INSERT INTO `wp_rg_form_view` VALUES("18199", "8", "2015-09-30 15:36:31", "67.248.28.8", "10");
INSERT INTO `wp_rg_form_view` VALUES("18200", "9", "2015-09-30 16:00:21", "207.194.133.9", "13");
INSERT INTO `wp_rg_form_view` VALUES("18201", "3", "2015-09-30 16:00:21", "207.194.133.9", "104");
INSERT INTO `wp_rg_form_view` VALUES("18202", "8", "2015-09-30 16:00:21", "207.194.133.9", "14");
INSERT INTO `wp_rg_form_view` VALUES("18203", "9", "2015-09-30 17:01:58", "157.55.39.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("18204", "3", "2015-09-30 17:01:58", "157.55.39.57", "24");
INSERT INTO `wp_rg_form_view` VALUES("18205", "8", "2015-09-30 17:01:58", "157.55.39.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("18206", "3", "2015-09-30 18:09:55", "66.249.79.169", "85");
INSERT INTO `wp_rg_form_view` VALUES("18207", "9", "2015-09-30 18:09:55", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("18208", "8", "2015-09-30 18:09:56", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("18209", "9", "2015-09-30 19:16:12", "66.249.79.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("18210", "3", "2015-09-30 19:16:17", "66.249.79.155", "72");
INSERT INTO `wp_rg_form_view` VALUES("18211", "8", "2015-09-30 19:16:17", "66.249.79.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("18212", "9", "2015-09-30 20:07:36", "8.28.16.254", "17");
INSERT INTO `wp_rg_form_view` VALUES("18213", "3", "2015-09-30 20:07:36", "8.28.16.254", "130");
INSERT INTO `wp_rg_form_view` VALUES("18214", "8", "2015-09-30 20:07:36", "8.28.16.254", "17");
INSERT INTO `wp_rg_form_view` VALUES("18215", "1", "2015-09-30 20:08:37", "8.28.16.254", "3");
INSERT INTO `wp_rg_form_view` VALUES("18216", "3", "2015-09-30 21:01:15", "66.249.79.155", "125");
INSERT INTO `wp_rg_form_view` VALUES("18217", "9", "2015-09-30 21:01:15", "66.249.79.155", "15");
INSERT INTO `wp_rg_form_view` VALUES("18218", "8", "2015-09-30 21:01:15", "66.249.79.155", "15");
INSERT INTO `wp_rg_form_view` VALUES("18219", "9", "2015-09-30 22:00:15", "184.66.114.65", "20");
INSERT INTO `wp_rg_form_view` VALUES("18220", "3", "2015-09-30 22:00:15", "184.66.114.65", "162");
INSERT INTO `wp_rg_form_view` VALUES("18221", "8", "2015-09-30 22:00:15", "184.66.114.65", "20");
INSERT INTO `wp_rg_form_view` VALUES("18222", "1", "2015-09-30 22:21:56", "91.239.11.235", "2");
INSERT INTO `wp_rg_form_view` VALUES("18223", "9", "2015-09-30 23:39:48", "199.168.141.174", "5");
INSERT INTO `wp_rg_form_view` VALUES("18224", "3", "2015-09-30 23:39:49", "199.168.141.174", "41");
INSERT INTO `wp_rg_form_view` VALUES("18225", "8", "2015-09-30 23:39:50", "199.168.141.174", "5");
INSERT INTO `wp_rg_form_view` VALUES("18226", "8", "2015-10-01 00:18:04", "66.249.79.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("18227", "9", "2015-10-01 00:18:04", "66.249.79.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("18228", "3", "2015-10-01 00:18:04", "66.249.79.155", "16");
INSERT INTO `wp_rg_form_view` VALUES("18229", "9", "2015-10-01 02:04:16", "157.55.39.97", "23");
INSERT INTO `wp_rg_form_view` VALUES("18230", "3", "2015-10-01 02:04:17", "157.55.39.97", "186");
INSERT INTO `wp_rg_form_view` VALUES("18231", "8", "2015-10-01 02:04:17", "157.55.39.97", "24");
INSERT INTO `wp_rg_form_view` VALUES("18232", "2", "2015-10-01 02:21:46", "104.131.43.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("18233", "1", "2015-10-01 02:21:46", "104.131.43.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("18234", "9", "2015-10-01 04:00:06", "199.217.117.207", "5");
INSERT INTO `wp_rg_form_view` VALUES("18235", "3", "2015-10-01 04:00:09", "199.217.117.207", "45");
INSERT INTO `wp_rg_form_view` VALUES("18236", "8", "2015-10-01 04:00:09", "199.217.117.207", "5");
INSERT INTO `wp_rg_form_view` VALUES("18237", "3", "2015-10-01 05:29:23", "157.55.39.97", "17");
INSERT INTO `wp_rg_form_view` VALUES("18238", "9", "2015-10-01 05:29:28", "157.55.39.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("18239", "8", "2015-10-01 05:29:28", "157.55.39.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("18240", "9", "2015-10-01 07:03:35", "167.114.199.81", "16");
INSERT INTO `wp_rg_form_view` VALUES("18241", "3", "2015-10-01 07:03:37", "167.114.199.81", "123");
INSERT INTO `wp_rg_form_view` VALUES("18242", "8", "2015-10-01 07:03:37", "167.114.199.81", "15");
INSERT INTO `wp_rg_form_view` VALUES("18243", "9", "2015-10-01 10:37:36", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("18244", "3", "2015-10-01 10:37:37", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("18245", "8", "2015-10-01 10:37:37", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("18246", "3", "2015-10-01 11:11:16", "68.180.229.161", "18");
INSERT INTO `wp_rg_form_view` VALUES("18247", "9", "2015-10-01 11:44:14", "157.55.39.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("18248", "8", "2015-10-01 11:44:15", "157.55.39.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("18249", "1", "2015-10-01 12:05:34", "51.254.83.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("18250", "9", "2015-10-01 12:05:34", "51.254.83.80", "57");
INSERT INTO `wp_rg_form_view` VALUES("18251", "3", "2015-10-01 12:05:34", "51.254.83.80", "454");
INSERT INTO `wp_rg_form_view` VALUES("18252", "8", "2015-10-01 12:05:34", "51.254.83.80", "57");
INSERT INTO `wp_rg_form_view` VALUES("18253", "2", "2015-10-01 12:36:31", "195.154.146.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("18254", "1", "2015-10-01 13:24:50", "192.210.223.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("18255", "9", "2015-10-01 13:24:54", "192.210.223.114", "11");
INSERT INTO `wp_rg_form_view` VALUES("18256", "3", "2015-10-01 13:24:55", "192.210.223.114", "89");
INSERT INTO `wp_rg_form_view` VALUES("18257", "8", "2015-10-01 13:24:55", "192.210.223.114", "11");
INSERT INTO `wp_rg_form_view` VALUES("18258", "9", "2015-10-01 14:05:19", "91.200.12.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("18259", "3", "2015-10-01 14:05:21", "91.200.12.127", "28");
INSERT INTO `wp_rg_form_view` VALUES("18260", "8", "2015-10-01 14:05:21", "91.200.12.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("18261", "9", "2015-10-01 15:33:13", "24.69.59.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("18262", "3", "2015-10-01 15:33:15", "24.69.59.84", "25");
INSERT INTO `wp_rg_form_view` VALUES("18263", "8", "2015-10-01 15:33:15", "24.69.59.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("18264", "9", "2015-10-01 16:25:33", "115.238.225.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("18265", "3", "2015-10-01 16:25:35", "115.238.225.26", "26");
INSERT INTO `wp_rg_form_view` VALUES("18266", "8", "2015-10-01 16:25:35", "115.238.225.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("18267", "9", "2015-10-01 17:01:09", "1.0.184.75", "13");
INSERT INTO `wp_rg_form_view` VALUES("18268", "3", "2015-10-01 17:01:09", "1.0.184.75", "92");
INSERT INTO `wp_rg_form_view` VALUES("18269", "8", "2015-10-01 17:01:10", "1.0.184.75", "12");
INSERT INTO `wp_rg_form_view` VALUES("18270", "1", "2015-10-01 18:20:57", "23.232.176.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("18271", "9", "2015-10-01 18:20:58", "23.232.176.141", "7");
INSERT INTO `wp_rg_form_view` VALUES("18272", "3", "2015-10-01 18:20:58", "23.232.176.141", "57");
INSERT INTO `wp_rg_form_view` VALUES("18273", "8", "2015-10-01 18:20:58", "23.232.176.141", "7");
INSERT INTO `wp_rg_form_view` VALUES("18274", "9", "2015-10-01 19:06:55", "66.43.52.8", "23");
INSERT INTO `wp_rg_form_view` VALUES("18275", "3", "2015-10-01 19:06:55", "66.43.52.8", "175");
INSERT INTO `wp_rg_form_view` VALUES("18276", "8", "2015-10-01 19:06:55", "66.43.52.8", "21");
INSERT INTO `wp_rg_form_view` VALUES("18277", "9", "2015-10-01 20:10:20", "207.46.13.63", "18");
INSERT INTO `wp_rg_form_view` VALUES("18278", "3", "2015-10-01 20:10:20", "207.46.13.63", "146");
INSERT INTO `wp_rg_form_view` VALUES("18279", "8", "2015-10-01 20:10:20", "207.46.13.63", "18");
INSERT INTO `wp_rg_form_view` VALUES("18280", "1", "2015-10-01 20:25:47", "104.155.71.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("18281", "8", "2015-10-01 21:11:07", "207.46.13.63", "27");
INSERT INTO `wp_rg_form_view` VALUES("18282", "9", "2015-10-01 21:11:08", "207.46.13.63", "26");
INSERT INTO `wp_rg_form_view` VALUES("18283", "3", "2015-10-01 21:11:08", "207.46.13.63", "203");
INSERT INTO `wp_rg_form_view` VALUES("18284", "1", "2015-10-01 21:11:37", "104.155.71.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("18285", "9", "2015-10-01 22:11:51", "207.46.13.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("18286", "3", "2015-10-01 22:11:53", "207.46.13.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("18287", "8", "2015-10-01 22:11:53", "207.46.13.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("18288", "9", "2015-10-01 23:05:41", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("18289", "3", "2015-10-01 23:05:44", "68.180.229.161", "44");
INSERT INTO `wp_rg_form_view` VALUES("18290", "8", "2015-10-01 23:05:44", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("18291", "9", "2015-10-02 00:14:34", "96.50.80.64", "9");
INSERT INTO `wp_rg_form_view` VALUES("18292", "3", "2015-10-02 00:14:34", "96.50.80.64", "75");
INSERT INTO `wp_rg_form_view` VALUES("18293", "8", "2015-10-02 00:14:34", "96.50.80.64", "9");
INSERT INTO `wp_rg_form_view` VALUES("18294", "1", "2015-10-02 00:23:28", "204.44.85.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("18295", "9", "2015-10-02 01:03:27", "192.161.100.11", "7");
INSERT INTO `wp_rg_form_view` VALUES("18296", "3", "2015-10-02 01:03:27", "192.161.100.11", "58");
INSERT INTO `wp_rg_form_view` VALUES("18297", "8", "2015-10-02 01:03:27", "192.161.100.11", "7");
INSERT INTO `wp_rg_form_view` VALUES("18298", "9", "2015-10-02 02:02:41", "207.46.13.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("18299", "3", "2015-10-02 02:02:41", "207.46.13.63", "16");
INSERT INTO `wp_rg_form_view` VALUES("18300", "8", "2015-10-02 02:02:42", "207.46.13.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("18301", "9", "2015-10-02 03:22:22", "96.50.30.121", "10");
INSERT INTO `wp_rg_form_view` VALUES("18302", "3", "2015-10-02 03:22:25", "96.50.30.121", "82");
INSERT INTO `wp_rg_form_view` VALUES("18303", "8", "2015-10-02 03:22:25", "96.50.30.121", "10");
INSERT INTO `wp_rg_form_view` VALUES("18304", "9", "2015-10-02 04:02:36", "157.55.39.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("18305", "3", "2015-10-02 04:02:36", "157.55.39.1", "8");
INSERT INTO `wp_rg_form_view` VALUES("18306", "8", "2015-10-02 04:02:36", "157.55.39.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("18307", "9", "2015-10-02 06:10:40", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("18308", "3", "2015-10-02 06:10:43", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("18309", "8", "2015-10-02 06:10:43", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("18310", "9", "2015-10-02 07:13:18", "157.55.39.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("18311", "3", "2015-10-02 07:13:19", "157.55.39.97", "8");
INSERT INTO `wp_rg_form_view` VALUES("18312", "8", "2015-10-02 07:13:19", "157.55.39.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("18313", "3", "2015-10-02 09:49:32", "91.200.12.128", "9");
INSERT INTO `wp_rg_form_view` VALUES("18314", "9", "2015-10-02 09:49:40", "91.200.12.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("18315", "8", "2015-10-02 09:49:43", "91.200.12.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("18316", "9", "2015-10-02 10:12:22", "157.55.39.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("18317", "3", "2015-10-02 10:12:22", "157.55.39.97", "33");
INSERT INTO `wp_rg_form_view` VALUES("18318", "8", "2015-10-02 10:12:22", "157.55.39.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("18319", "9", "2015-10-02 11:39:31", "66.249.79.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("18320", "3", "2015-10-02 11:39:33", "66.249.79.162", "58");
INSERT INTO `wp_rg_form_view` VALUES("18321", "8", "2015-10-02 11:39:33", "66.249.79.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("18322", "1", "2015-10-02 11:47:50", "104.155.71.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("18323", "9", "2015-10-02 12:04:42", "66.249.79.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("18324", "3", "2015-10-02 12:04:42", "66.249.79.169", "56");
INSERT INTO `wp_rg_form_view` VALUES("18325", "8", "2015-10-02 12:04:42", "66.249.79.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("18326", "3", "2015-10-02 13:17:51", "66.249.79.162", "26");
INSERT INTO `wp_rg_form_view` VALUES("18327", "9", "2015-10-02 13:17:52", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("18328", "8", "2015-10-02 13:17:52", "66.249.79.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("18329", "3", "2015-10-02 14:07:27", "207.46.13.63", "26");
INSERT INTO `wp_rg_form_view` VALUES("18330", "9", "2015-10-02 14:07:28", "207.46.13.63", "3");
INSERT INTO `wp_rg_form_view` VALUES("18331", "8", "2015-10-02 14:07:28", "207.46.13.63", "3");
INSERT INTO `wp_rg_form_view` VALUES("18332", "9", "2015-10-02 15:12:01", "24.69.59.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("18333", "3", "2015-10-02 15:12:01", "24.69.59.84", "17");
INSERT INTO `wp_rg_form_view` VALUES("18334", "8", "2015-10-02 15:12:01", "24.69.59.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("18335", "3", "2015-10-02 16:30:40", "66.249.79.155", "33");
INSERT INTO `wp_rg_form_view` VALUES("18336", "9", "2015-10-02 16:30:48", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("18337", "8", "2015-10-02 16:30:48", "66.249.79.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("18338", "3", "2015-10-02 17:13:31", "91.200.12.128", "91");
INSERT INTO `wp_rg_form_view` VALUES("18339", "9", "2015-10-02 17:13:43", "91.200.12.128", "15");
INSERT INTO `wp_rg_form_view` VALUES("18340", "8", "2015-10-02 17:13:44", "91.200.12.128", "12");
INSERT INTO `wp_rg_form_view` VALUES("18341", "1", "2015-10-02 17:32:25", "104.218.192.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("18342", "9", "2015-10-02 18:51:19", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("18343", "3", "2015-10-02 18:51:26", "68.180.229.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("18344", "8", "2015-10-02 18:51:26", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("18345", "9", "2015-10-02 19:01:55", "70.65.164.131", "5");
INSERT INTO `wp_rg_form_view` VALUES("18346", "3", "2015-10-02 19:01:55", "70.65.164.131", "40");
INSERT INTO `wp_rg_form_view` VALUES("18347", "8", "2015-10-02 19:01:55", "70.65.164.131", "5");
INSERT INTO `wp_rg_form_view` VALUES("18348", "9", "2015-10-02 20:50:36", "209.171.88.129", "3");
INSERT INTO `wp_rg_form_view` VALUES("18349", "3", "2015-10-02 20:50:39", "209.171.88.129", "24");
INSERT INTO `wp_rg_form_view` VALUES("18350", "8", "2015-10-02 20:50:39", "209.171.88.129", "3");
INSERT INTO `wp_rg_form_view` VALUES("18351", "9", "2015-10-02 21:35:57", "184.70.247.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("18352", "3", "2015-10-02 21:35:57", "184.70.247.14", "8");
INSERT INTO `wp_rg_form_view` VALUES("18353", "8", "2015-10-02 21:35:58", "184.70.247.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("18354", "9", "2015-10-02 22:11:31", "184.66.12.174", "4");
INSERT INTO `wp_rg_form_view` VALUES("18355", "3", "2015-10-02 22:11:33", "184.66.12.174", "36");
INSERT INTO `wp_rg_form_view` VALUES("18356", "8", "2015-10-02 22:11:33", "184.66.12.174", "4");
INSERT INTO `wp_rg_form_view` VALUES("18357", "9", "2015-10-02 23:07:54", "142.36.24.121", "6");
INSERT INTO `wp_rg_form_view` VALUES("18358", "3", "2015-10-02 23:07:54", "142.36.24.121", "41");
INSERT INTO `wp_rg_form_view` VALUES("18359", "8", "2015-10-02 23:07:54", "142.36.24.121", "5");
INSERT INTO `wp_rg_form_view` VALUES("18360", "9", "2015-10-03 01:00:28", "154.20.34.5", "12");
INSERT INTO `wp_rg_form_view` VALUES("18361", "3", "2015-10-03 01:00:29", "154.20.34.5", "96");
INSERT INTO `wp_rg_form_view` VALUES("18362", "8", "2015-10-03 01:00:29", "154.20.34.5", "12");
INSERT INTO `wp_rg_form_view` VALUES("18363", "1", "2015-10-03 01:04:54", "154.20.34.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("18364", "3", "2015-10-03 02:36:28", "68.180.229.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("18365", "9", "2015-10-03 02:37:06", "188.65.117.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("18366", "8", "2015-10-03 02:37:07", "188.65.117.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("18367", "9", "2015-10-03 03:09:04", "24.108.135.237", "7");
INSERT INTO `wp_rg_form_view` VALUES("18368", "3", "2015-10-03 03:09:04", "24.108.135.237", "41");
INSERT INTO `wp_rg_form_view` VALUES("18369", "8", "2015-10-03 03:09:05", "24.108.135.237", "5");
INSERT INTO `wp_rg_form_view` VALUES("18370", "9", "2015-10-03 04:42:34", "220.181.108.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("18371", "3", "2015-10-03 04:42:35", "220.181.108.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("18372", "8", "2015-10-03 04:42:35", "220.181.108.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("18373", "3", "2015-10-03 05:08:58", "91.200.12.128", "26");
INSERT INTO `wp_rg_form_view` VALUES("18374", "9", "2015-10-03 05:08:59", "188.65.117.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("18375", "9", "2015-10-03 05:08:59", "91.200.12.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("18376", "8", "2015-10-03 05:08:59", "188.65.117.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("18377", "9", "2015-10-03 06:04:32", "68.180.229.161", "58");
INSERT INTO `wp_rg_form_view` VALUES("18378", "3", "2015-10-03 06:04:33", "68.180.229.161", "458");
INSERT INTO `wp_rg_form_view` VALUES("18379", "8", "2015-10-03 06:04:33", "68.180.229.161", "57");
INSERT INTO `wp_rg_form_view` VALUES("18380", "1", "2015-10-03 06:13:15", "82.211.48.203", "2");
INSERT INTO `wp_rg_form_view` VALUES("18381", "2", "2015-10-03 06:53:01", "188.65.117.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("18382", "9", "2015-10-03 07:00:18", "188.65.117.170", "9");
INSERT INTO `wp_rg_form_view` VALUES("18383", "3", "2015-10-03 07:00:18", "188.65.117.170", "72");
INSERT INTO `wp_rg_form_view` VALUES("18384", "8", "2015-10-03 07:00:18", "188.65.117.170", "9");
INSERT INTO `wp_rg_form_view` VALUES("18385", "3", "2015-10-03 08:00:35", "91.200.12.128", "58");
INSERT INTO `wp_rg_form_view` VALUES("18386", "9", "2015-10-03 08:00:41", "91.200.12.128", "8");
INSERT INTO `wp_rg_form_view` VALUES("18387", "8", "2015-10-03 08:00:42", "91.200.12.128", "8");
INSERT INTO `wp_rg_form_view` VALUES("18388", "1", "2015-10-03 09:04:18", "82.211.48.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("18389", "9", "2015-10-03 09:04:18", "82.211.48.228", "9");
INSERT INTO `wp_rg_form_view` VALUES("18390", "3", "2015-10-03 09:04:18", "82.211.48.228", "59");
INSERT INTO `wp_rg_form_view` VALUES("18391", "8", "2015-10-03 09:04:18", "82.211.48.228", "9");
INSERT INTO `wp_rg_form_view` VALUES("18392", "9", "2015-10-03 10:26:55", "94.23.55.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("18393", "3", "2015-10-03 10:26:57", "94.23.55.119", "16");
INSERT INTO `wp_rg_form_view` VALUES("18394", "8", "2015-10-03 10:26:57", "94.23.55.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("18395", "1", "2015-10-03 10:54:42", "96.54.167.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("18396", "9", "2015-10-03 11:12:43", "66.249.79.162", "79");
INSERT INTO `wp_rg_form_view` VALUES("18397", "3", "2015-10-03 11:12:43", "66.249.79.162", "659");
INSERT INTO `wp_rg_form_view` VALUES("18398", "8", "2015-10-03 11:12:43", "66.249.79.162", "84");
INSERT INTO `wp_rg_form_view` VALUES("18399", "2", "2015-10-03 11:46:29", "176.31.126.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("18400", "1", "2015-10-03 11:46:33", "176.31.126.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("18401", "5", "2015-10-03 11:52:26", "176.31.126.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("18402", "9", "2015-10-03 12:06:26", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("18403", "3", "2015-10-03 12:06:26", "68.180.229.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("18404", "8", "2015-10-03 12:06:27", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("18405", "3", "2015-10-03 13:25:07", "188.65.117.161", "76");
INSERT INTO `wp_rg_form_view` VALUES("18406", "9", "2015-10-03 13:25:09", "188.65.117.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("18407", "8", "2015-10-03 13:25:10", "188.65.117.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("18408", "6", "2015-10-03 13:47:23", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("18409", "1", "2015-10-03 14:20:25", "62.210.178.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("18410", "9", "2015-10-03 14:20:25", "62.210.178.179", "10");
INSERT INTO `wp_rg_form_view` VALUES("18411", "3", "2015-10-03 14:20:25", "62.210.178.179", "82");
INSERT INTO `wp_rg_form_view` VALUES("18412", "8", "2015-10-03 14:20:25", "62.210.178.179", "10");
INSERT INTO `wp_rg_form_view` VALUES("18413", "6", "2015-10-03 14:29:24", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("18414", "9", "2015-10-03 15:13:04", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("18415", "3", "2015-10-03 15:13:04", "68.180.229.161", "48");
INSERT INTO `wp_rg_form_view` VALUES("18416", "8", "2015-10-03 15:13:04", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("18417", "9", "2015-10-03 16:21:34", "199.168.141.174", "9");
INSERT INTO `wp_rg_form_view` VALUES("18418", "3", "2015-10-03 16:21:34", "199.168.141.174", "91");
INSERT INTO `wp_rg_form_view` VALUES("18419", "8", "2015-10-03 16:21:34", "199.168.141.174", "11");
INSERT INTO `wp_rg_form_view` VALUES("18420", "3", "2015-10-03 17:02:21", "157.55.39.1", "112");
INSERT INTO `wp_rg_form_view` VALUES("18421", "8", "2015-10-03 17:02:21", "157.55.39.1", "14");
INSERT INTO `wp_rg_form_view` VALUES("18422", "9", "2015-10-03 17:02:22", "157.55.39.1", "10");
INSERT INTO `wp_rg_form_view` VALUES("18423", "9", "2015-10-03 18:01:06", "202.46.48.17", "8");
INSERT INTO `wp_rg_form_view` VALUES("18424", "3", "2015-10-03 18:01:06", "202.46.48.17", "64");
INSERT INTO `wp_rg_form_view` VALUES("18425", "8", "2015-10-03 18:01:07", "202.46.48.17", "9");
INSERT INTO `wp_rg_form_view` VALUES("18426", "5", "2015-10-03 19:01:41", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("18427", "9", "2015-10-03 19:01:42", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("18428", "3", "2015-10-03 19:01:42", "68.180.229.161", "87");
INSERT INTO `wp_rg_form_view` VALUES("18429", "8", "2015-10-03 19:01:42", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("18430", "3", "2015-10-03 20:09:53", "202.46.58.210", "63");
INSERT INTO `wp_rg_form_view` VALUES("18431", "9", "2015-10-03 20:09:53", "202.46.58.210", "7");
INSERT INTO `wp_rg_form_view` VALUES("18432", "8", "2015-10-03 20:09:53", "202.46.58.210", "8");
INSERT INTO `wp_rg_form_view` VALUES("18433", "1", "2015-10-03 20:21:42", "46.246.62.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("18434", "9", "2015-10-03 21:08:26", "202.46.58.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("18435", "3", "2015-10-03 21:08:26", "202.46.58.77", "46");
INSERT INTO `wp_rg_form_view` VALUES("18436", "8", "2015-10-03 21:08:26", "202.46.58.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("18437", "1", "2015-10-03 22:06:01", "192.69.254.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("18438", "9", "2015-10-03 22:06:01", "192.69.254.155", "16");
INSERT INTO `wp_rg_form_view` VALUES("18439", "3", "2015-10-03 22:06:01", "192.69.254.155", "139");
INSERT INTO `wp_rg_form_view` VALUES("18440", "8", "2015-10-03 22:06:01", "192.69.254.155", "17");
INSERT INTO `wp_rg_form_view` VALUES("18441", "9", "2015-10-03 23:05:30", "202.46.51.204", "7");
INSERT INTO `wp_rg_form_view` VALUES("18442", "3", "2015-10-03 23:05:31", "202.46.51.204", "66");
INSERT INTO `wp_rg_form_view` VALUES("18443", "8", "2015-10-03 23:05:31", "202.46.51.204", "7");
INSERT INTO `wp_rg_form_view` VALUES("18444", "3", "2015-10-04 00:04:02", "202.46.49.110", "74");
INSERT INTO `wp_rg_form_view` VALUES("18445", "8", "2015-10-04 00:04:02", "202.46.49.110", "9");
INSERT INTO `wp_rg_form_view` VALUES("18446", "9", "2015-10-04 00:04:03", "202.46.49.110", "7");
INSERT INTO `wp_rg_form_view` VALUES("18447", "1", "2015-10-04 00:08:54", "151.80.31.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("18448", "8", "2015-10-04 01:02:34", "202.46.49.117", "18");
INSERT INTO `wp_rg_form_view` VALUES("18449", "3", "2015-10-04 01:02:34", "202.46.49.117", "132");
INSERT INTO `wp_rg_form_view` VALUES("18450", "9", "2015-10-04 01:02:34", "202.46.49.117", "16");
INSERT INTO `wp_rg_form_view` VALUES("18451", "3", "2015-10-04 02:01:06", "202.46.51.114", "126");
INSERT INTO `wp_rg_form_view` VALUES("18452", "9", "2015-10-04 02:01:06", "202.46.51.114", "14");
INSERT INTO `wp_rg_form_view` VALUES("18453", "8", "2015-10-04 02:01:07", "202.46.51.114", "15");
INSERT INTO `wp_rg_form_view` VALUES("18454", "1", "2015-10-04 02:28:39", "104.237.83.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("18455", "9", "2015-10-04 03:11:21", "202.46.58.135", "16");
INSERT INTO `wp_rg_form_view` VALUES("18456", "3", "2015-10-04 03:11:21", "202.46.58.135", "116");
INSERT INTO `wp_rg_form_view` VALUES("18457", "8", "2015-10-04 03:11:21", "202.46.58.135", "18");
INSERT INTO `wp_rg_form_view` VALUES("18458", "3", "2015-10-04 04:09:53", "202.46.53.44", "148");
INSERT INTO `wp_rg_form_view` VALUES("18459", "8", "2015-10-04 04:09:53", "202.46.53.44", "19");
INSERT INTO `wp_rg_form_view` VALUES("18460", "9", "2015-10-04 04:09:53", "202.46.53.44", "16");
INSERT INTO `wp_rg_form_view` VALUES("18461", "1", "2015-10-04 04:41:48", "201.51.45.147", "4");
INSERT INTO `wp_rg_form_view` VALUES("18462", "3", "2015-10-04 05:08:25", "202.46.57.122", "74");
INSERT INTO `wp_rg_form_view` VALUES("18463", "8", "2015-10-04 05:08:25", "202.46.57.122", "9");
INSERT INTO `wp_rg_form_view` VALUES("18464", "9", "2015-10-04 05:08:26", "202.46.57.122", "8");
INSERT INTO `wp_rg_form_view` VALUES("18465", "7", "2015-10-04 05:38:47", "207.46.13.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("18466", "3", "2015-10-04 06:06:41", "151.80.31.123", "137");
INSERT INTO `wp_rg_form_view` VALUES("18467", "9", "2015-10-04 06:06:42", "151.80.31.123", "13");
INSERT INTO `wp_rg_form_view` VALUES("18468", "8", "2015-10-04 06:06:42", "151.80.31.123", "14");
INSERT INTO `wp_rg_form_view` VALUES("18469", "3", "2015-10-04 07:05:30", "202.46.49.117", "99");
INSERT INTO `wp_rg_form_view` VALUES("18470", "8", "2015-10-04 07:05:30", "202.46.49.117", "12");
INSERT INTO `wp_rg_form_view` VALUES("18471", "9", "2015-10-04 07:05:31", "202.46.49.117", "10");
INSERT INTO `wp_rg_form_view` VALUES("18472", "1", "2015-10-04 07:17:48", "185.81.99.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("18473", "9", "2015-10-04 08:04:02", "202.46.50.180", "15");
INSERT INTO `wp_rg_form_view` VALUES("18474", "3", "2015-10-04 08:04:03", "202.46.50.180", "148");
INSERT INTO `wp_rg_form_view` VALUES("18475", "8", "2015-10-04 08:04:03", "202.46.50.180", "20");
INSERT INTO `wp_rg_form_view` VALUES("18476", "9", "2015-10-04 09:02:34", "202.46.57.170", "15");
INSERT INTO `wp_rg_form_view` VALUES("18477", "3", "2015-10-04 09:02:34", "202.46.57.170", "147");
INSERT INTO `wp_rg_form_view` VALUES("18478", "8", "2015-10-04 09:02:34", "202.46.57.170", "19");
INSERT INTO `wp_rg_form_view` VALUES("18479", "1", "2015-10-04 09:17:55", "220.249.185.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("18480", "9", "2015-10-04 10:00:38", "61.230.244.130", "14");
INSERT INTO `wp_rg_form_view` VALUES("18481", "3", "2015-10-04 10:00:38", "61.230.244.130", "146");
INSERT INTO `wp_rg_form_view` VALUES("18482", "8", "2015-10-04 10:00:38", "61.230.244.130", "19");
INSERT INTO `wp_rg_form_view` VALUES("18483", "8", "2015-10-04 11:03:14", "202.46.56.64", "14");
INSERT INTO `wp_rg_form_view` VALUES("18484", "9", "2015-10-04 11:03:14", "202.46.56.64", "12");
INSERT INTO `wp_rg_form_view` VALUES("18485", "3", "2015-10-04 11:03:14", "202.46.56.64", "107");
INSERT INTO `wp_rg_form_view` VALUES("18486", "9", "2015-10-04 12:01:45", "202.46.53.164", "18");
INSERT INTO `wp_rg_form_view` VALUES("18487", "3", "2015-10-04 12:01:45", "202.46.53.164", "156");
INSERT INTO `wp_rg_form_view` VALUES("18488", "8", "2015-10-04 12:01:46", "202.46.53.164", "19");
INSERT INTO `wp_rg_form_view` VALUES("18489", "1", "2015-10-04 12:29:26", "82.211.48.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("18490", "9", "2015-10-04 13:01:22", "66.249.79.162", "31");
INSERT INTO `wp_rg_form_view` VALUES("18491", "3", "2015-10-04 13:01:22", "66.249.79.162", "284");
INSERT INTO `wp_rg_form_view` VALUES("18492", "8", "2015-10-04 13:01:22", "66.249.79.162", "35");
INSERT INTO `wp_rg_form_view` VALUES("18493", "1", "2015-10-04 13:24:29", "192.255.79.78", "2");
INSERT INTO `wp_rg_form_view` VALUES("18494", "9", "2015-10-04 14:06:58", "202.46.58.26", "13");
INSERT INTO `wp_rg_form_view` VALUES("18495", "3", "2015-10-04 14:06:58", "202.46.58.26", "133");
INSERT INTO `wp_rg_form_view` VALUES("18496", "8", "2015-10-04 14:06:58", "202.46.58.26", "17");
INSERT INTO `wp_rg_form_view` VALUES("18497", "3", "2015-10-04 15:03:35", "91.200.12.128", "200");
INSERT INTO `wp_rg_form_view` VALUES("18498", "9", "2015-10-04 15:03:35", "91.200.12.128", "24");
INSERT INTO `wp_rg_form_view` VALUES("18499", "8", "2015-10-04 15:03:35", "91.200.12.128", "28");
INSERT INTO `wp_rg_form_view` VALUES("18500", "1", "2015-10-04 15:09:41", "166.70.181.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("18501", "7", "2015-10-04 15:20:47", "202.46.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("18502", "9", "2015-10-04 16:02:04", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("18503", "3", "2015-10-04 16:02:04", "68.180.229.161", "115");
INSERT INTO `wp_rg_form_view` VALUES("18504", "8", "2015-10-04 16:02:04", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("18505", "3", "2015-10-04 17:02:33", "202.46.54.109", "136");
INSERT INTO `wp_rg_form_view` VALUES("18506", "8", "2015-10-04 17:02:34", "202.46.54.109", "17");
INSERT INTO `wp_rg_form_view` VALUES("18507", "9", "2015-10-04 17:02:34", "202.46.54.109", "13");
INSERT INTO `wp_rg_form_view` VALUES("18508", "9", "2015-10-04 18:01:07", "202.46.49.199", "17");
INSERT INTO `wp_rg_form_view` VALUES("18509", "3", "2015-10-04 18:01:07", "202.46.49.199", "153");
INSERT INTO `wp_rg_form_view` VALUES("18510", "8", "2015-10-04 18:01:07", "202.46.49.199", "20");
INSERT INTO `wp_rg_form_view` VALUES("18511", "9", "2015-10-04 19:03:15", "202.46.48.96", "20");
INSERT INTO `wp_rg_form_view` VALUES("18512", "3", "2015-10-04 19:03:15", "202.46.48.96", "164");
INSERT INTO `wp_rg_form_view` VALUES("18513", "8", "2015-10-04 19:03:15", "202.46.48.96", "21");
INSERT INTO `wp_rg_form_view` VALUES("18514", "3", "2015-10-04 20:01:46", "202.46.49.199", "145");
INSERT INTO `wp_rg_form_view` VALUES("18515", "8", "2015-10-04 20:01:46", "202.46.49.199", "18");
INSERT INTO `wp_rg_form_view` VALUES("18516", "9", "2015-10-04 20:01:47", "202.46.49.199", "17");
INSERT INTO `wp_rg_form_view` VALUES("18517", "9", "2015-10-04 21:00:17", "202.46.53.13", "16");
INSERT INTO `wp_rg_form_view` VALUES("18518", "3", "2015-10-04 21:00:17", "202.46.53.13", "127");
INSERT INTO `wp_rg_form_view` VALUES("18519", "8", "2015-10-04 21:00:18", "202.46.53.13", "16");
INSERT INTO `wp_rg_form_view` VALUES("18520", "9", "2015-10-04 22:04:59", "188.65.117.160", "15");
INSERT INTO `wp_rg_form_view` VALUES("18521", "3", "2015-10-04 22:04:59", "188.65.117.160", "142");
INSERT INTO `wp_rg_form_view` VALUES("18522", "8", "2015-10-04 22:04:59", "188.65.117.160", "21");
INSERT INTO `wp_rg_form_view` VALUES("18523", "3", "2015-10-04 23:01:21", "68.180.229.161", "105");
INSERT INTO `wp_rg_form_view` VALUES("18524", "9", "2015-10-04 23:01:22", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("18525", "8", "2015-10-04 23:01:22", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("18526", "9", "2015-10-05 00:04:02", "202.46.57.18", "12");
INSERT INTO `wp_rg_form_view` VALUES("18527", "3", "2015-10-05 00:04:02", "202.46.57.18", "133");
INSERT INTO `wp_rg_form_view` VALUES("18528", "8", "2015-10-05 00:04:02", "202.46.57.18", "17");
INSERT INTO `wp_rg_form_view` VALUES("18529", "3", "2015-10-05 01:02:33", "202.46.55.157", "188");
INSERT INTO `wp_rg_form_view` VALUES("18530", "8", "2015-10-05 01:02:33", "202.46.55.157", "22");
INSERT INTO `wp_rg_form_view` VALUES("18531", "9", "2015-10-05 01:02:34", "202.46.55.157", "20");
INSERT INTO `wp_rg_form_view` VALUES("18532", "1", "2015-10-05 01:41:02", "62.210.178.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("18533", "3", "2015-10-05 02:01:05", "202.46.52.18", "135");
INSERT INTO `wp_rg_form_view` VALUES("18534", "8", "2015-10-05 02:01:05", "202.46.52.18", "18");
INSERT INTO `wp_rg_form_view` VALUES("18535", "9", "2015-10-05 02:01:06", "202.46.52.18", "13");
INSERT INTO `wp_rg_form_view` VALUES("18536", "3", "2015-10-05 03:03:13", "202.46.49.73", "147");
INSERT INTO `wp_rg_form_view` VALUES("18537", "8", "2015-10-05 03:03:13", "202.46.49.73", "18");
INSERT INTO `wp_rg_form_view` VALUES("18538", "9", "2015-10-05 03:03:14", "202.46.49.73", "15");
INSERT INTO `wp_rg_form_view` VALUES("18539", "9", "2015-10-05 04:00:36", "188.65.117.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("18540", "3", "2015-10-05 04:00:36", "188.65.117.162", "152");
INSERT INTO `wp_rg_form_view` VALUES("18541", "8", "2015-10-05 04:00:36", "188.65.117.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("18542", "2", "2015-10-05 04:39:50", "207.46.13.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("18543", "1", "2015-10-05 04:39:51", "207.46.13.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("18544", "3", "2015-10-05 05:00:17", "202.46.54.188", "179");
INSERT INTO `wp_rg_form_view` VALUES("18545", "8", "2015-10-05 05:00:17", "202.46.54.188", "22");
INSERT INTO `wp_rg_form_view` VALUES("18546", "9", "2015-10-05 05:00:18", "202.46.54.188", "17");
INSERT INTO `wp_rg_form_view` VALUES("18547", "9", "2015-10-05 06:06:57", "202.46.57.13", "16");
INSERT INTO `wp_rg_form_view` VALUES("18548", "3", "2015-10-05 06:06:57", "202.46.57.13", "158");
INSERT INTO `wp_rg_form_view` VALUES("18549", "8", "2015-10-05 06:06:57", "202.46.57.13", "21");
INSERT INTO `wp_rg_form_view` VALUES("18550", "1", "2015-10-05 06:21:30", "165.231.27.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("18551", "9", "2015-10-05 07:05:29", "202.46.49.198", "12");
INSERT INTO `wp_rg_form_view` VALUES("18552", "3", "2015-10-05 07:05:29", "202.46.49.198", "122");
INSERT INTO `wp_rg_form_view` VALUES("18553", "8", "2015-10-05 07:05:29", "202.46.49.198", "15");
INSERT INTO `wp_rg_form_view` VALUES("18554", "3", "2015-10-05 08:04:01", "202.46.51.207", "162");
INSERT INTO `wp_rg_form_view` VALUES("18555", "9", "2015-10-05 08:04:02", "202.46.51.207", "16");
INSERT INTO `wp_rg_form_view` VALUES("18556", "8", "2015-10-05 08:04:02", "202.46.51.207", "20");
INSERT INTO `wp_rg_form_view` VALUES("18557", "9", "2015-10-05 09:02:34", "202.46.58.210", "13");
INSERT INTO `wp_rg_form_view` VALUES("18558", "3", "2015-10-05 09:02:34", "202.46.58.210", "110");
INSERT INTO `wp_rg_form_view` VALUES("18559", "8", "2015-10-05 09:02:34", "202.46.58.210", "14");
INSERT INTO `wp_rg_form_view` VALUES("18560", "2", "2015-10-05 09:28:55", "157.55.39.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("18561", "1", "2015-10-05 09:54:19", "157.56.3.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("18562", "9", "2015-10-05 10:01:06", "202.46.53.151", "9");
INSERT INTO `wp_rg_form_view` VALUES("18563", "3", "2015-10-05 10:01:07", "202.46.53.151", "76");
INSERT INTO `wp_rg_form_view` VALUES("18564", "8", "2015-10-05 10:01:07", "202.46.53.151", "9");
INSERT INTO `wp_rg_form_view` VALUES("18565", "1", "2015-10-05 10:32:49", "157.56.2.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("18566", "9", "2015-10-05 11:04:31", "207.46.13.54", "11");
INSERT INTO `wp_rg_form_view` VALUES("18567", "3", "2015-10-05 11:04:31", "207.46.13.54", "93");
INSERT INTO `wp_rg_form_view` VALUES("18568", "8", "2015-10-05 11:04:32", "207.46.13.54", "13");
INSERT INTO `wp_rg_form_view` VALUES("18569", "9", "2015-10-05 12:09:52", "202.46.56.18", "8");
INSERT INTO `wp_rg_form_view` VALUES("18570", "3", "2015-10-05 12:09:52", "202.46.56.18", "67");
INSERT INTO `wp_rg_form_view` VALUES("18571", "8", "2015-10-05 12:09:53", "202.46.56.18", "9");
INSERT INTO `wp_rg_form_view` VALUES("18572", "9", "2015-10-05 13:08:24", "202.46.50.191", "11");
INSERT INTO `wp_rg_form_view` VALUES("18573", "3", "2015-10-05 13:08:24", "202.46.50.191", "83");
INSERT INTO `wp_rg_form_view` VALUES("18574", "8", "2015-10-05 13:08:24", "202.46.50.191", "12");
INSERT INTO `wp_rg_form_view` VALUES("18575", "1", "2015-10-05 13:43:44", "192.210.226.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("18576", "3", "2015-10-05 14:06:58", "202.46.57.70", "83");
INSERT INTO `wp_rg_form_view` VALUES("18577", "8", "2015-10-05 14:06:59", "202.46.57.70", "13");
INSERT INTO `wp_rg_form_view` VALUES("18578", "9", "2015-10-05 14:06:59", "202.46.57.70", "9");
INSERT INTO `wp_rg_form_view` VALUES("18579", "3", "2015-10-05 15:05:28", "202.46.50.161", "88");
INSERT INTO `wp_rg_form_view` VALUES("18580", "8", "2015-10-05 15:05:29", "202.46.50.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("18581", "9", "2015-10-05 15:05:29", "202.46.50.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("18582", "9", "2015-10-05 16:00:23", "91.200.12.63", "13");
INSERT INTO `wp_rg_form_view` VALUES("18583", "3", "2015-10-05 16:00:23", "91.200.12.63", "120");
INSERT INTO `wp_rg_form_view` VALUES("18584", "8", "2015-10-05 16:00:23", "91.200.12.63", "15");
INSERT INTO `wp_rg_form_view` VALUES("18585", "9", "2015-10-05 17:02:35", "202.46.48.135", "12");
INSERT INTO `wp_rg_form_view` VALUES("18586", "3", "2015-10-05 17:02:36", "202.46.48.135", "105");
INSERT INTO `wp_rg_form_view` VALUES("18587", "8", "2015-10-05 17:02:36", "202.46.48.135", "14");
INSERT INTO `wp_rg_form_view` VALUES("18588", "5", "2015-10-05 17:39:33", "188.65.117.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("18589", "9", "2015-10-05 18:01:05", "202.46.50.133", "16");
INSERT INTO `wp_rg_form_view` VALUES("18590", "3", "2015-10-05 18:01:06", "202.46.50.133", "131");
INSERT INTO `wp_rg_form_view` VALUES("18591", "8", "2015-10-05 18:01:06", "202.46.50.133", "17");
INSERT INTO `wp_rg_form_view` VALUES("18592", "1", "2015-10-05 18:22:14", "108.61.228.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("18593", "8", "2015-10-05 19:11:19", "202.46.50.99", "8");
INSERT INTO `wp_rg_form_view` VALUES("18594", "9", "2015-10-05 19:11:20", "202.46.50.99", "6");
INSERT INTO `wp_rg_form_view` VALUES("18595", "3", "2015-10-05 19:11:20", "202.46.50.99", "53");
INSERT INTO `wp_rg_form_view` VALUES("18596", "9", "2015-10-05 20:09:52", "202.46.52.202", "13");
INSERT INTO `wp_rg_form_view` VALUES("18597", "3", "2015-10-05 20:09:52", "202.46.52.202", "96");
INSERT INTO `wp_rg_form_view` VALUES("18598", "8", "2015-10-05 20:09:53", "202.46.52.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("18599", "1", "2015-10-05 20:31:14", "86.107.229.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("18600", "9", "2015-10-05 21:08:44", "202.46.55.157", "8");
INSERT INTO `wp_rg_form_view` VALUES("18601", "3", "2015-10-05 21:08:45", "202.46.55.157", "58");
INSERT INTO `wp_rg_form_view` VALUES("18602", "8", "2015-10-05 21:08:45", "202.46.55.157", "7");
INSERT INTO `wp_rg_form_view` VALUES("18603", "9", "2015-10-05 22:06:56", "202.46.52.73", "16");
INSERT INTO `wp_rg_form_view` VALUES("18604", "3", "2015-10-05 22:06:57", "202.46.52.73", "126");
INSERT INTO `wp_rg_form_view` VALUES("18605", "8", "2015-10-05 22:06:57", "202.46.52.73", "16");
INSERT INTO `wp_rg_form_view` VALUES("18606", "9", "2015-10-05 23:09:22", "188.65.117.155", "13");
INSERT INTO `wp_rg_form_view` VALUES("18607", "3", "2015-10-05 23:09:22", "188.65.117.155", "110");
INSERT INTO `wp_rg_form_view` VALUES("18608", "8", "2015-10-05 23:09:22", "188.65.117.155", "14");
INSERT INTO `wp_rg_form_view` VALUES("18609", "1", "2015-10-05 23:14:17", "107.150.42.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("18610", "2", "2015-10-05 23:14:18", "107.150.42.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("18611", "9", "2015-10-06 00:04:01", "202.46.57.24", "7");
INSERT INTO `wp_rg_form_view` VALUES("18612", "3", "2015-10-06 00:04:01", "202.46.57.24", "68");
INSERT INTO `wp_rg_form_view` VALUES("18613", "8", "2015-10-06 00:04:01", "202.46.57.24", "8");
INSERT INTO `wp_rg_form_view` VALUES("18614", "6", "2015-10-06 00:19:26", "151.80.31.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("18615", "3", "2015-10-06 01:02:33", "202.46.54.95", "85");
INSERT INTO `wp_rg_form_view` VALUES("18616", "8", "2015-10-06 01:02:33", "202.46.54.95", "12");
INSERT INTO `wp_rg_form_view` VALUES("18617", "9", "2015-10-06 01:02:34", "202.46.54.95", "7");
INSERT INTO `wp_rg_form_view` VALUES("18618", "1", "2015-10-06 01:31:41", "78.225.12.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("18619", "9", "2015-10-06 02:01:06", "202.46.48.203", "8");
INSERT INTO `wp_rg_form_view` VALUES("18620", "3", "2015-10-06 02:01:06", "202.46.48.203", "77");
INSERT INTO `wp_rg_form_view` VALUES("18621", "8", "2015-10-06 02:01:06", "202.46.48.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("18622", "9", "2015-10-06 03:07:55", "154.5.144.181", "15");
INSERT INTO `wp_rg_form_view` VALUES("18623", "3", "2015-10-06 03:07:55", "154.5.144.181", "124");
INSERT INTO `wp_rg_form_view` VALUES("18624", "8", "2015-10-06 03:07:56", "154.5.144.181", "16");
INSERT INTO `wp_rg_form_view` VALUES("18625", "9", "2015-10-06 04:05:59", "151.80.31.123", "7");
INSERT INTO `wp_rg_form_view` VALUES("18626", "3", "2015-10-06 04:05:59", "151.80.31.123", "64");
INSERT INTO `wp_rg_form_view` VALUES("18627", "8", "2015-10-06 04:05:59", "151.80.31.123", "8");
INSERT INTO `wp_rg_form_view` VALUES("18628", "9", "2015-10-06 05:08:24", "202.46.52.43", "15");
INSERT INTO `wp_rg_form_view` VALUES("18629", "3", "2015-10-06 05:08:24", "202.46.52.43", "120");
INSERT INTO `wp_rg_form_view` VALUES("18630", "8", "2015-10-06 05:08:24", "202.46.52.43", "15");
INSERT INTO `wp_rg_form_view` VALUES("18631", "1", "2015-10-06 05:09:57", "106.38.194.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("18632", "9", "2015-10-06 06:03:34", "205.124.117.54", "46");
INSERT INTO `wp_rg_form_view` VALUES("18633", "3", "2015-10-06 06:03:34", "205.124.117.54", "372");
INSERT INTO `wp_rg_form_view` VALUES("18634", "8", "2015-10-06 06:03:34", "205.124.117.54", "48");
INSERT INTO `wp_rg_form_view` VALUES("18635", "1", "2015-10-06 06:05:00", "205.124.117.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("18636", "2", "2015-10-06 06:05:05", "205.124.117.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("18637", "9", "2015-10-06 07:05:29", "202.46.55.131", "22");
INSERT INTO `wp_rg_form_view` VALUES("18638", "3", "2015-10-06 07:05:29", "202.46.55.131", "195");
INSERT INTO `wp_rg_form_view` VALUES("18639", "8", "2015-10-06 07:05:30", "202.46.55.131", "24");
INSERT INTO `wp_rg_form_view` VALUES("18640", "7", "2015-10-06 07:37:20", "207.46.13.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("18641", "3", "2015-10-06 08:04:00", "202.46.53.123", "78");
INSERT INTO `wp_rg_form_view` VALUES("18642", "9", "2015-10-06 08:04:02", "202.46.53.123", "8");
INSERT INTO `wp_rg_form_view` VALUES("18643", "8", "2015-10-06 08:04:02", "202.46.53.123", "9");
INSERT INTO `wp_rg_form_view` VALUES("18644", "3", "2015-10-06 09:02:33", "202.46.53.157", "132");
INSERT INTO `wp_rg_form_view` VALUES("18645", "8", "2015-10-06 09:02:34", "202.46.53.157", "19");
INSERT INTO `wp_rg_form_view` VALUES("18646", "9", "2015-10-06 09:02:34", "202.46.53.157", "15");
INSERT INTO `wp_rg_form_view` VALUES("18647", "3", "2015-10-06 10:01:05", "202.46.55.123", "140");
INSERT INTO `wp_rg_form_view` VALUES("18648", "8", "2015-10-06 10:01:05", "202.46.55.123", "17");
INSERT INTO `wp_rg_form_view` VALUES("18649", "9", "2015-10-06 10:01:06", "202.46.55.123", "16");
INSERT INTO `wp_rg_form_view` VALUES("18650", "9", "2015-10-06 11:03:14", "66.249.74.54", "8");
INSERT INTO `wp_rg_form_view` VALUES("18651", "3", "2015-10-06 11:03:14", "66.249.74.54", "69");
INSERT INTO `wp_rg_form_view` VALUES("18652", "8", "2015-10-06 11:03:15", "66.249.74.54", "8");
INSERT INTO `wp_rg_form_view` VALUES("18653", "9", "2015-10-06 12:09:52", "202.46.52.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("18654", "3", "2015-10-06 12:09:52", "202.46.52.104", "72");
INSERT INTO `wp_rg_form_view` VALUES("18655", "8", "2015-10-06 12:09:52", "202.46.52.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("18656", "9", "2015-10-06 13:06:44", "54.209.60.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("18657", "3", "2015-10-06 13:06:44", "54.209.60.63", "74");
INSERT INTO `wp_rg_form_view` VALUES("18658", "8", "2015-10-06 13:06:44", "54.209.60.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("18659", "3", "2015-10-06 14:06:56", "202.46.50.191", "113");
INSERT INTO `wp_rg_form_view` VALUES("18660", "9", "2015-10-06 14:06:56", "202.46.50.191", "14");
INSERT INTO `wp_rg_form_view` VALUES("18661", "8", "2015-10-06 14:06:56", "202.46.50.191", "14");
INSERT INTO `wp_rg_form_view` VALUES("18662", "1", "2015-10-06 14:46:57", "62.210.178.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("18663", "9", "2015-10-06 15:02:05", "24.68.134.189", "11");
INSERT INTO `wp_rg_form_view` VALUES("18664", "3", "2015-10-06 15:02:05", "24.68.134.189", "77");
INSERT INTO `wp_rg_form_view` VALUES("18665", "8", "2015-10-06 15:02:06", "24.68.134.189", "11");
INSERT INTO `wp_rg_form_view` VALUES("18666", "3", "2015-10-06 16:04:04", "202.46.57.122", "68");
INSERT INTO `wp_rg_form_view` VALUES("18667", "9", "2015-10-06 16:04:04", "202.46.57.122", "9");
INSERT INTO `wp_rg_form_view` VALUES("18668", "8", "2015-10-06 16:04:05", "202.46.57.122", "8");
INSERT INTO `wp_rg_form_view` VALUES("18669", "3", "2015-10-06 17:02:32", "202.46.58.210", "101");
INSERT INTO `wp_rg_form_view` VALUES("18670", "8", "2015-10-06 17:02:33", "202.46.58.210", "13");
INSERT INTO `wp_rg_form_view` VALUES("18671", "9", "2015-10-06 17:02:33", "202.46.58.210", "11");
INSERT INTO `wp_rg_form_view` VALUES("18672", "3", "2015-10-06 18:01:04", "202.46.48.16", "141");
INSERT INTO `wp_rg_form_view` VALUES("18673", "8", "2015-10-06 18:01:05", "202.46.48.16", "18");
INSERT INTO `wp_rg_form_view` VALUES("18674", "9", "2015-10-06 18:01:05", "202.46.48.16", "16");
INSERT INTO `wp_rg_form_view` VALUES("18675", "9", "2015-10-06 19:01:30", "24.69.73.224", "16");
INSERT INTO `wp_rg_form_view` VALUES("18676", "3", "2015-10-06 19:01:31", "24.69.73.224", "148");
INSERT INTO `wp_rg_form_view` VALUES("18677", "8", "2015-10-06 19:01:31", "24.69.73.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("18678", "1", "2015-10-06 20:02:34", "107.189.36.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("18679", "9", "2015-10-06 20:02:34", "107.189.36.6", "15");
INSERT INTO `wp_rg_form_view` VALUES("18680", "3", "2015-10-06 20:02:34", "107.189.36.6", "131");
INSERT INTO `wp_rg_form_view` VALUES("18681", "8", "2015-10-06 20:02:34", "107.189.36.6", "18");
INSERT INTO `wp_rg_form_view` VALUES("18682", "9", "2015-10-06 21:03:54", "66.249.74.54", "14");
INSERT INTO `wp_rg_form_view` VALUES("18683", "3", "2015-10-06 21:03:54", "66.249.74.54", "122");
INSERT INTO `wp_rg_form_view` VALUES("18684", "8", "2015-10-06 21:03:54", "66.249.74.54", "15");
INSERT INTO `wp_rg_form_view` VALUES("18685", "9", "2015-10-06 22:06:56", "202.46.51.87", "11");
INSERT INTO `wp_rg_form_view` VALUES("18686", "3", "2015-10-06 22:06:56", "202.46.51.87", "89");
INSERT INTO `wp_rg_form_view` VALUES("18687", "8", "2015-10-06 22:06:57", "202.46.51.87", "11");
INSERT INTO `wp_rg_form_view` VALUES("18688", "3", "2015-10-06 23:05:30", "202.46.50.151", "103");
INSERT INTO `wp_rg_form_view` VALUES("18689", "8", "2015-10-06 23:05:30", "202.46.50.151", "14");
INSERT INTO `wp_rg_form_view` VALUES("18690", "9", "2015-10-06 23:05:30", "202.46.50.151", "11");
INSERT INTO `wp_rg_form_view` VALUES("18691", "9", "2015-10-07 00:04:00", "202.46.56.205", "8");
INSERT INTO `wp_rg_form_view` VALUES("18692", "3", "2015-10-07 00:04:01", "202.46.56.205", "59");
INSERT INTO `wp_rg_form_view` VALUES("18693", "8", "2015-10-07 00:04:01", "202.46.56.205", "8");
INSERT INTO `wp_rg_form_view` VALUES("18694", "3", "2015-10-07 01:02:34", "202.46.54.91", "121");
INSERT INTO `wp_rg_form_view` VALUES("18695", "8", "2015-10-07 01:02:34", "202.46.54.91", "16");
INSERT INTO `wp_rg_form_view` VALUES("18696", "9", "2015-10-07 01:02:35", "202.46.54.91", "13");
INSERT INTO `wp_rg_form_view` VALUES("18697", "8", "2015-10-07 02:01:04", "202.46.48.194", "9");
INSERT INTO `wp_rg_form_view` VALUES("18698", "9", "2015-10-07 02:01:05", "202.46.48.194", "8");
INSERT INTO `wp_rg_form_view` VALUES("18699", "3", "2015-10-07 02:01:05", "202.46.48.194", "68");
INSERT INTO `wp_rg_form_view` VALUES("18700", "9", "2015-10-07 03:10:24", "70.79.10.171", "6");
INSERT INTO `wp_rg_form_view` VALUES("18701", "3", "2015-10-07 03:10:24", "70.79.10.171", "58");
INSERT INTO `wp_rg_form_view` VALUES("18702", "8", "2015-10-07 03:10:24", "70.79.10.171", "7");
INSERT INTO `wp_rg_form_view` VALUES("18703", "3", "2015-10-07 04:02:09", "68.180.229.161", "117");
INSERT INTO `wp_rg_form_view` VALUES("18704", "9", "2015-10-07 04:02:09", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("18705", "8", "2015-10-07 04:02:09", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("18706", "8", "2015-10-07 05:08:24", "202.46.49.77", "30");
INSERT INTO `wp_rg_form_view` VALUES("18707", "3", "2015-10-07 05:08:24", "202.46.49.77", "222");
INSERT INTO `wp_rg_form_view` VALUES("18708", "9", "2015-10-07 05:08:25", "202.46.49.77", "28");
INSERT INTO `wp_rg_form_view` VALUES("18709", "2", "2015-10-07 05:47:21", "45.55.190.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("18710", "1", "2015-10-07 05:47:22", "45.55.190.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("18711", "3", "2015-10-07 06:06:56", "202.46.56.17", "60");
INSERT INTO `wp_rg_form_view` VALUES("18712", "8", "2015-10-07 06:06:56", "202.46.56.17", "7");
INSERT INTO `wp_rg_form_view` VALUES("18713", "9", "2015-10-07 06:06:57", "202.46.56.17", "6");
INSERT INTO `wp_rg_form_view` VALUES("18714", "9", "2015-10-07 07:00:44", "188.65.117.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("18715", "3", "2015-10-07 07:00:44", "188.65.117.140", "54");
INSERT INTO `wp_rg_form_view` VALUES("18716", "8", "2015-10-07 07:00:45", "188.65.117.140", "7");
INSERT INTO `wp_rg_form_view` VALUES("18717", "9", "2015-10-07 08:04:00", "202.46.54.204", "6");
INSERT INTO `wp_rg_form_view` VALUES("18718", "3", "2015-10-07 08:04:01", "202.46.54.204", "65");
INSERT INTO `wp_rg_form_view` VALUES("18719", "8", "2015-10-07 08:04:01", "202.46.54.204", "8");
INSERT INTO `wp_rg_form_view` VALUES("18720", "9", "2015-10-07 09:02:33", "202.46.54.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("18721", "3", "2015-10-07 09:02:33", "202.46.54.92", "61");
INSERT INTO `wp_rg_form_view` VALUES("18722", "8", "2015-10-07 09:02:33", "202.46.54.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("18723", "3", "2015-10-07 10:01:04", "202.46.58.12", "66");
INSERT INTO `wp_rg_form_view` VALUES("18724", "9", "2015-10-07 10:01:04", "202.46.58.12", "10");
INSERT INTO `wp_rg_form_view` VALUES("18725", "8", "2015-10-07 10:01:05", "202.46.58.12", "8");
INSERT INTO `wp_rg_form_view` VALUES("18726", "3", "2015-10-07 11:11:19", "202.46.50.75", "74");
INSERT INTO `wp_rg_form_view` VALUES("18727", "8", "2015-10-07 11:11:19", "202.46.50.75", "9");
INSERT INTO `wp_rg_form_view` VALUES("18728", "9", "2015-10-07 11:11:20", "202.46.50.75", "7");
INSERT INTO `wp_rg_form_view` VALUES("18729", "1", "2015-10-07 12:01:46", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("18730", "9", "2015-10-07 12:01:46", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("18731", "3", "2015-10-07 12:01:46", "68.180.229.161", "81");
INSERT INTO `wp_rg_form_view` VALUES("18732", "8", "2015-10-07 12:01:47", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("18733", "3", "2015-10-07 13:00:11", "207.46.13.65", "65");
INSERT INTO `wp_rg_form_view` VALUES("18734", "9", "2015-10-07 13:00:11", "207.46.13.65", "6");
INSERT INTO `wp_rg_form_view` VALUES("18735", "8", "2015-10-07 13:00:11", "207.46.13.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("18736", "1", "2015-10-07 14:01:06", "52.1.156.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("18737", "9", "2015-10-07 14:01:06", "52.1.156.36", "14");
INSERT INTO `wp_rg_form_view` VALUES("18738", "3", "2015-10-07 14:01:06", "52.1.156.36", "107");
INSERT INTO `wp_rg_form_view` VALUES("18739", "8", "2015-10-07 14:01:06", "52.1.156.36", "14");
INSERT INTO `wp_rg_form_view` VALUES("18740", "9", "2015-10-07 15:15:55", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("18741", "3", "2015-10-07 15:15:55", "68.180.229.161", "105");
INSERT INTO `wp_rg_form_view` VALUES("18742", "8", "2015-10-07 15:15:55", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("18743", "9", "2015-10-07 16:03:50", "151.80.31.123", "18");
INSERT INTO `wp_rg_form_view` VALUES("18744", "3", "2015-10-07 16:03:50", "151.80.31.123", "146");
INSERT INTO `wp_rg_form_view` VALUES("18745", "8", "2015-10-07 16:03:50", "151.80.31.123", "19");
INSERT INTO `wp_rg_form_view` VALUES("18746", "3", "2015-10-07 17:02:32", "202.46.58.124", "135");
INSERT INTO `wp_rg_form_view` VALUES("18747", "8", "2015-10-07 17:02:32", "202.46.58.124", "19");
INSERT INTO `wp_rg_form_view` VALUES("18748", "9", "2015-10-07 17:02:32", "202.46.58.124", "16");
INSERT INTO `wp_rg_form_view` VALUES("18749", "1", "2015-10-07 17:51:56", "80.82.164.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("18750", "9", "2015-10-07 18:01:04", "202.46.55.142", "6");
INSERT INTO `wp_rg_form_view` VALUES("18751", "3", "2015-10-07 18:01:04", "202.46.55.142", "48");
INSERT INTO `wp_rg_form_view` VALUES("18752", "8", "2015-10-07 18:01:04", "202.46.55.142", "6");
INSERT INTO `wp_rg_form_view` VALUES("18753", "3", "2015-10-07 19:11:19", "202.46.50.18", "74");
INSERT INTO `wp_rg_form_view` VALUES("18754", "8", "2015-10-07 19:11:19", "202.46.50.18", "9");
INSERT INTO `wp_rg_form_view` VALUES("18755", "9", "2015-10-07 19:11:20", "202.46.50.18", "6");
INSERT INTO `wp_rg_form_view` VALUES("18756", "9", "2015-10-07 20:04:32", "199.168.141.174", "11");
INSERT INTO `wp_rg_form_view` VALUES("18757", "3", "2015-10-07 20:04:33", "199.168.141.174", "105");
INSERT INTO `wp_rg_form_view` VALUES("18758", "8", "2015-10-07 20:04:33", "199.168.141.174", "13");
INSERT INTO `wp_rg_form_view` VALUES("18759", "9", "2015-10-07 21:00:04", "184.66.155.206", "12");
INSERT INTO `wp_rg_form_view` VALUES("18760", "3", "2015-10-07 21:00:04", "184.66.155.206", "97");
INSERT INTO `wp_rg_form_view` VALUES("18761", "8", "2015-10-07 21:00:04", "184.66.155.206", "13");
INSERT INTO `wp_rg_form_view` VALUES("18762", "9", "2015-10-07 22:06:56", "202.46.48.88", "8");
INSERT INTO `wp_rg_form_view` VALUES("18763", "3", "2015-10-07 22:06:56", "202.46.48.88", "75");
INSERT INTO `wp_rg_form_view` VALUES("18764", "8", "2015-10-07 22:06:56", "202.46.48.88", "10");
INSERT INTO `wp_rg_form_view` VALUES("18765", "9", "2015-10-07 23:05:27", "202.46.54.206", "11");
INSERT INTO `wp_rg_form_view` VALUES("18766", "3", "2015-10-07 23:05:28", "202.46.54.206", "105");
INSERT INTO `wp_rg_form_view` VALUES("18767", "8", "2015-10-07 23:05:28", "202.46.54.206", "13");
INSERT INTO `wp_rg_form_view` VALUES("18768", "9", "2015-10-08 00:04:00", "202.46.57.163", "12");
INSERT INTO `wp_rg_form_view` VALUES("18769", "3", "2015-10-08 00:04:00", "202.46.57.163", "101");
INSERT INTO `wp_rg_form_view` VALUES("18770", "8", "2015-10-08 00:04:00", "202.46.57.163", "13");
INSERT INTO `wp_rg_form_view` VALUES("18771", "1", "2015-10-08 00:54:29", "155.94.170.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("18772", "3", "2015-10-08 01:02:32", "202.46.58.200", "86");
INSERT INTO `wp_rg_form_view` VALUES("18773", "8", "2015-10-08 01:02:32", "202.46.58.200", "11");
INSERT INTO `wp_rg_form_view` VALUES("18774", "9", "2015-10-08 01:02:32", "202.46.58.200", "10");
INSERT INTO `wp_rg_form_view` VALUES("18775", "1", "2015-10-08 01:35:40", "62.210.178.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("18776", "3", "2015-10-08 02:01:04", "202.46.51.169", "137");
INSERT INTO `wp_rg_form_view` VALUES("18777", "8", "2015-10-08 02:01:04", "202.46.51.169", "17");
INSERT INTO `wp_rg_form_view` VALUES("18778", "9", "2015-10-08 02:01:06", "202.46.51.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("18779", "8", "2015-10-08 03:10:09", "220.181.108.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("18780", "9", "2015-10-08 03:10:09", "220.181.108.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("18781", "3", "2015-10-08 03:10:09", "220.181.108.161", "99");
INSERT INTO `wp_rg_form_view` VALUES("18782", "9", "2015-10-08 04:02:13", "151.80.31.123", "9");
INSERT INTO `wp_rg_form_view` VALUES("18783", "3", "2015-10-08 04:02:13", "151.80.31.123", "79");
INSERT INTO `wp_rg_form_view` VALUES("18784", "8", "2015-10-08 04:02:13", "151.80.31.123", "10");
INSERT INTO `wp_rg_form_view` VALUES("18785", "9", "2015-10-08 05:08:23", "202.46.52.105", "11");
INSERT INTO `wp_rg_form_view` VALUES("18786", "3", "2015-10-08 05:08:23", "202.46.52.105", "92");
INSERT INTO `wp_rg_form_view` VALUES("18787", "8", "2015-10-08 05:08:24", "202.46.52.105", "12");
INSERT INTO `wp_rg_form_view` VALUES("18788", "9", "2015-10-08 06:03:24", "157.55.39.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("18789", "3", "2015-10-08 06:03:24", "157.55.39.167", "67");
INSERT INTO `wp_rg_form_view` VALUES("18790", "8", "2015-10-08 06:03:25", "157.55.39.167", "9");
INSERT INTO `wp_rg_form_view` VALUES("18791", "9", "2015-10-08 07:05:29", "202.46.56.196", "7");
INSERT INTO `wp_rg_form_view` VALUES("18792", "3", "2015-10-08 07:05:29", "202.46.56.196", "67");
INSERT INTO `wp_rg_form_view` VALUES("18793", "8", "2015-10-08 07:05:29", "202.46.56.196", "8");
INSERT INTO `wp_rg_form_view` VALUES("18794", "9", "2015-10-08 08:04:00", "202.46.52.168", "7");
INSERT INTO `wp_rg_form_view` VALUES("18795", "3", "2015-10-08 08:04:00", "202.46.52.168", "60");
INSERT INTO `wp_rg_form_view` VALUES("18796", "8", "2015-10-08 08:04:02", "202.46.52.168", "7");
INSERT INTO `wp_rg_form_view` VALUES("18797", "9", "2015-10-08 09:02:32", "202.46.51.107", "5");
INSERT INTO `wp_rg_form_view` VALUES("18798", "3", "2015-10-08 09:02:32", "202.46.51.107", "55");
INSERT INTO `wp_rg_form_view` VALUES("18799", "8", "2015-10-08 09:02:32", "202.46.51.107", "7");
INSERT INTO `wp_rg_form_view` VALUES("18800", "3", "2015-10-08 10:01:04", "202.46.55.91", "161");
INSERT INTO `wp_rg_form_view` VALUES("18801", "8", "2015-10-08 10:01:04", "202.46.55.91", "20");
INSERT INTO `wp_rg_form_view` VALUES("18802", "9", "2015-10-08 10:01:05", "202.46.55.91", "16");
INSERT INTO `wp_rg_form_view` VALUES("18803", "1", "2015-10-08 10:15:52", "112.111.185.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("18804", "9", "2015-10-08 11:11:20", "202.46.54.205", "8");
INSERT INTO `wp_rg_form_view` VALUES("18805", "3", "2015-10-08 11:11:20", "202.46.54.205", "58");
INSERT INTO `wp_rg_form_view` VALUES("18806", "8", "2015-10-08 11:11:21", "202.46.54.205", "7");
INSERT INTO `wp_rg_form_view` VALUES("18807", "9", "2015-10-08 12:05:07", "66.249.74.54", "6");
INSERT INTO `wp_rg_form_view` VALUES("18808", "3", "2015-10-08 12:05:07", "66.249.74.54", "59");
INSERT INTO `wp_rg_form_view` VALUES("18809", "8", "2015-10-08 12:05:07", "66.249.74.54", "8");
INSERT INTO `wp_rg_form_view` VALUES("18810", "9", "2015-10-08 13:31:49", "202.46.52.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("18811", "3", "2015-10-08 13:31:49", "202.46.52.167", "34");
INSERT INTO `wp_rg_form_view` VALUES("18812", "8", "2015-10-08 13:31:49", "202.46.52.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("18813", "9", "2015-10-08 14:06:55", "202.46.51.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("18814", "3", "2015-10-08 14:06:55", "202.46.51.169", "50");
INSERT INTO `wp_rg_form_view` VALUES("18815", "8", "2015-10-08 14:06:56", "202.46.51.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("18816", "9", "2015-10-08 15:05:27", "202.46.53.51", "7");
INSERT INTO `wp_rg_form_view` VALUES("18817", "3", "2015-10-08 15:05:27", "202.46.53.51", "56");
INSERT INTO `wp_rg_form_view` VALUES("18818", "8", "2015-10-08 15:05:28", "202.46.53.51", "7");
INSERT INTO `wp_rg_form_view` VALUES("18819", "3", "2015-10-08 16:03:59", "202.46.50.187", "121");
INSERT INTO `wp_rg_form_view` VALUES("18820", "8", "2015-10-08 16:04:00", "202.46.50.187", "16");
INSERT INTO `wp_rg_form_view` VALUES("18821", "9", "2015-10-08 16:04:01", "202.46.50.187", "15");
INSERT INTO `wp_rg_form_view` VALUES("18822", "3", "2015-10-08 17:02:32", "202.46.57.177", "62");
INSERT INTO `wp_rg_form_view` VALUES("18823", "8", "2015-10-08 17:02:32", "202.46.57.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("18824", "9", "2015-10-08 17:02:34", "202.46.57.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("18825", "9", "2015-10-08 18:01:04", "202.46.53.45", "13");
INSERT INTO `wp_rg_form_view` VALUES("18826", "3", "2015-10-08 18:01:04", "202.46.53.45", "106");
INSERT INTO `wp_rg_form_view` VALUES("18827", "8", "2015-10-08 18:01:04", "202.46.53.45", "14");
INSERT INTO `wp_rg_form_view` VALUES("18828", "9", "2015-10-08 19:11:19", "202.46.55.82", "16");
INSERT INTO `wp_rg_form_view` VALUES("18829", "3", "2015-10-08 19:11:19", "202.46.55.82", "123");
INSERT INTO `wp_rg_form_view` VALUES("18830", "8", "2015-10-08 19:11:19", "202.46.55.82", "15");
INSERT INTO `wp_rg_form_view` VALUES("18831", "9", "2015-10-08 20:04:50", "96.50.93.42", "14");
INSERT INTO `wp_rg_form_view` VALUES("18832", "3", "2015-10-08 20:04:51", "96.50.93.42", "119");
INSERT INTO `wp_rg_form_view` VALUES("18833", "8", "2015-10-08 20:04:51", "96.50.93.42", "15");
INSERT INTO `wp_rg_form_view` VALUES("18834", "2", "2015-10-08 20:16:48", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("18835", "3", "2015-10-08 21:08:22", "202.46.52.76", "79");
INSERT INTO `wp_rg_form_view` VALUES("18836", "8", "2015-10-08 21:08:23", "202.46.52.76", "11");
INSERT INTO `wp_rg_form_view` VALUES("18837", "9", "2015-10-08 21:08:23", "202.46.52.76", "9");
INSERT INTO `wp_rg_form_view` VALUES("18838", "9", "2015-10-08 22:00:34", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("18839", "3", "2015-10-08 22:00:34", "68.180.229.161", "64");
INSERT INTO `wp_rg_form_view` VALUES("18840", "8", "2015-10-08 22:00:34", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("18841", "9", "2015-10-08 23:05:27", "202.46.48.96", "7");
INSERT INTO `wp_rg_form_view` VALUES("18842", "3", "2015-10-08 23:05:27", "202.46.48.96", "58");
INSERT INTO `wp_rg_form_view` VALUES("18843", "8", "2015-10-08 23:05:28", "202.46.48.96", "8");
INSERT INTO `wp_rg_form_view` VALUES("18844", "9", "2015-10-09 00:04:00", "202.46.49.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("18845", "3", "2015-10-09 00:04:00", "202.46.49.130", "73");
INSERT INTO `wp_rg_form_view` VALUES("18846", "8", "2015-10-09 00:04:00", "202.46.49.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("18847", "9", "2015-10-09 01:02:32", "202.46.55.139", "12");
INSERT INTO `wp_rg_form_view` VALUES("18848", "3", "2015-10-09 01:02:32", "202.46.55.139", "105");
INSERT INTO `wp_rg_form_view` VALUES("18849", "8", "2015-10-09 01:02:32", "202.46.55.139", "13");
INSERT INTO `wp_rg_form_view` VALUES("18850", "3", "2015-10-09 02:01:03", "202.46.56.177", "95");
INSERT INTO `wp_rg_form_view` VALUES("18851", "9", "2015-10-09 02:01:04", "202.46.56.177", "10");
INSERT INTO `wp_rg_form_view` VALUES("18852", "8", "2015-10-09 02:01:04", "202.46.56.177", "12");
INSERT INTO `wp_rg_form_view` VALUES("18853", "3", "2015-10-09 03:11:18", "202.46.51.82", "58");
INSERT INTO `wp_rg_form_view` VALUES("18854", "9", "2015-10-09 03:11:18", "202.46.51.82", "6");
INSERT INTO `wp_rg_form_view` VALUES("18855", "8", "2015-10-09 03:11:19", "202.46.51.82", "7");
INSERT INTO `wp_rg_form_view` VALUES("18856", "9", "2015-10-09 04:09:51", "202.46.51.207", "15");
INSERT INTO `wp_rg_form_view` VALUES("18857", "3", "2015-10-09 04:09:51", "202.46.51.207", "120");
INSERT INTO `wp_rg_form_view` VALUES("18858", "8", "2015-10-09 04:09:51", "202.46.51.207", "15");
INSERT INTO `wp_rg_form_view` VALUES("18859", "9", "2015-10-09 05:25:04", "66.249.74.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("18860", "3", "2015-10-09 05:25:06", "66.249.74.56", "8");
INSERT INTO `wp_rg_form_view` VALUES("18861", "8", "2015-10-09 05:25:06", "66.249.74.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("18862", "9", "2015-10-09 06:04:18", "173.252.113.119", "35");
INSERT INTO `wp_rg_form_view` VALUES("18863", "3", "2015-10-09 06:04:21", "173.252.113.119", "281");
INSERT INTO `wp_rg_form_view` VALUES("18864", "8", "2015-10-09 06:04:21", "173.252.113.119", "35");
INSERT INTO `wp_rg_form_view` VALUES("18865", "1", "2015-10-09 06:54:46", "201.21.10.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("18866", "2", "2015-10-09 06:54:54", "201.21.10.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("18867", "9", "2015-10-09 07:44:17", "1.0.185.243", "28");
INSERT INTO `wp_rg_form_view` VALUES("18868", "3", "2015-10-09 07:44:18", "1.0.185.243", "232");
INSERT INTO `wp_rg_form_view` VALUES("18869", "8", "2015-10-09 07:44:18", "1.0.185.243", "27");
INSERT INTO `wp_rg_form_view` VALUES("18870", "3", "2015-10-09 08:00:00", "157.55.39.99", "98");
INSERT INTO `wp_rg_form_view` VALUES("18871", "8", "2015-10-09 08:00:00", "157.55.39.99", "12");
INSERT INTO `wp_rg_form_view` VALUES("18872", "9", "2015-10-09 08:00:01", "157.55.39.99", "13");
INSERT INTO `wp_rg_form_view` VALUES("18873", "3", "2015-10-09 09:02:32", "202.46.54.161", "121");
INSERT INTO `wp_rg_form_view` VALUES("18874", "8", "2015-10-09 09:02:32", "202.46.54.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("18875", "9", "2015-10-09 09:02:32", "202.46.54.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("18876", "3", "2015-10-09 10:01:03", "202.46.52.141", "141");
INSERT INTO `wp_rg_form_view` VALUES("18877", "8", "2015-10-09 10:01:03", "202.46.52.141", "18");
INSERT INTO `wp_rg_form_view` VALUES("18878", "9", "2015-10-09 10:01:04", "202.46.52.141", "18");
INSERT INTO `wp_rg_form_view` VALUES("18879", "3", "2015-10-09 11:11:18", "202.46.50.74", "55");
INSERT INTO `wp_rg_form_view` VALUES("18880", "8", "2015-10-09 11:11:18", "202.46.50.74", "7");
INSERT INTO `wp_rg_form_view` VALUES("18881", "9", "2015-10-09 11:11:19", "202.46.50.74", "6");
INSERT INTO `wp_rg_form_view` VALUES("18882", "3", "2015-10-09 12:09:51", "202.46.52.13", "153");
INSERT INTO `wp_rg_form_view` VALUES("18883", "9", "2015-10-09 12:09:51", "202.46.52.13", "18");
INSERT INTO `wp_rg_form_view` VALUES("18884", "8", "2015-10-09 12:09:51", "202.46.52.13", "18");
INSERT INTO `wp_rg_form_view` VALUES("18885", "1", "2015-10-09 12:21:57", "192.3.242.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("18886", "8", "2015-10-09 13:08:22", "202.46.52.179", "12");
INSERT INTO `wp_rg_form_view` VALUES("18887", "3", "2015-10-09 13:08:22", "202.46.52.179", "79");
INSERT INTO `wp_rg_form_view` VALUES("18888", "9", "2015-10-09 13:08:22", "202.46.52.179", "8");
INSERT INTO `wp_rg_form_view` VALUES("18889", "3", "2015-10-09 14:06:54", "202.46.58.205", "64");
INSERT INTO `wp_rg_form_view` VALUES("18890", "8", "2015-10-09 14:06:54", "202.46.58.205", "8");
INSERT INTO `wp_rg_form_view` VALUES("18891", "9", "2015-10-09 14:06:55", "202.46.58.205", "6");
INSERT INTO `wp_rg_form_view` VALUES("18892", "9", "2015-10-09 15:05:27", "202.46.50.184", "6");
INSERT INTO `wp_rg_form_view` VALUES("18893", "3", "2015-10-09 15:05:27", "202.46.50.184", "60");
INSERT INTO `wp_rg_form_view` VALUES("18894", "8", "2015-10-09 15:05:27", "202.46.50.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("18895", "3", "2015-10-09 16:04:20", "202.46.51.179", "67");
INSERT INTO `wp_rg_form_view` VALUES("18896", "9", "2015-10-09 16:04:23", "202.46.51.179", "6");
INSERT INTO `wp_rg_form_view` VALUES("18897", "8", "2015-10-09 16:04:24", "202.46.51.179", "8");
INSERT INTO `wp_rg_form_view` VALUES("18898", "9", "2015-10-09 17:02:31", "202.46.57.151", "18");
INSERT INTO `wp_rg_form_view` VALUES("18899", "3", "2015-10-09 17:02:31", "202.46.57.151", "146");
INSERT INTO `wp_rg_form_view` VALUES("18900", "8", "2015-10-09 17:02:32", "202.46.57.151", "18");
INSERT INTO `wp_rg_form_view` VALUES("18901", "9", "2015-10-09 18:01:03", "202.46.50.74", "8");
INSERT INTO `wp_rg_form_view` VALUES("18902", "3", "2015-10-09 18:01:04", "202.46.50.74", "82");
INSERT INTO `wp_rg_form_view` VALUES("18903", "8", "2015-10-09 18:01:04", "202.46.50.74", "10");
INSERT INTO `wp_rg_form_view` VALUES("18904", "3", "2015-10-09 19:11:19", "202.46.50.17", "48");
INSERT INTO `wp_rg_form_view` VALUES("18905", "9", "2015-10-09 19:11:20", "202.46.50.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("18906", "8", "2015-10-09 19:11:20", "202.46.50.17", "6");
INSERT INTO `wp_rg_form_view` VALUES("18907", "9", "2015-10-09 20:09:52", "202.46.53.121", "8");
INSERT INTO `wp_rg_form_view` VALUES("18908", "3", "2015-10-09 20:09:52", "202.46.53.121", "57");
INSERT INTO `wp_rg_form_view` VALUES("18909", "8", "2015-10-09 20:09:52", "202.46.53.121", "7");
INSERT INTO `wp_rg_form_view` VALUES("18910", "3", "2015-10-09 21:01:41", "77.75.77.95", "64");
INSERT INTO `wp_rg_form_view` VALUES("18911", "8", "2015-10-09 21:01:41", "77.75.77.95", "8");
INSERT INTO `wp_rg_form_view` VALUES("18912", "9", "2015-10-09 21:01:41", "77.75.77.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("18913", "9", "2015-10-09 22:07:35", "202.46.57.120", "13");
INSERT INTO `wp_rg_form_view` VALUES("18914", "3", "2015-10-09 22:07:36", "202.46.57.120", "121");
INSERT INTO `wp_rg_form_view` VALUES("18915", "8", "2015-10-09 22:07:37", "202.46.57.120", "15");
INSERT INTO `wp_rg_form_view` VALUES("18916", "1", "2015-10-09 22:26:31", "62.210.178.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("18917", "9", "2015-10-09 23:05:27", "202.46.52.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("18918", "3", "2015-10-09 23:05:27", "202.46.52.44", "100");
INSERT INTO `wp_rg_form_view` VALUES("18919", "8", "2015-10-09 23:05:28", "202.46.52.44", "13");
INSERT INTO `wp_rg_form_view` VALUES("18920", "1", "2015-10-10 00:01:50", "167.160.109.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("18921", "9", "2015-10-10 00:01:50", "167.160.109.46", "10");
INSERT INTO `wp_rg_form_view` VALUES("18922", "3", "2015-10-10 00:01:50", "167.160.109.46", "87");
INSERT INTO `wp_rg_form_view` VALUES("18923", "8", "2015-10-10 00:01:51", "167.160.109.46", "11");
INSERT INTO `wp_rg_form_view` VALUES("18924", "3", "2015-10-10 01:02:31", "202.46.54.99", "62");
INSERT INTO `wp_rg_form_view` VALUES("18925", "8", "2015-10-10 01:02:31", "202.46.54.99", "9");
INSERT INTO `wp_rg_form_view` VALUES("18926", "9", "2015-10-10 01:02:31", "202.46.54.99", "6");
INSERT INTO `wp_rg_form_view` VALUES("18927", "3", "2015-10-10 02:01:03", "202.46.51.131", "69");
INSERT INTO `wp_rg_form_view` VALUES("18928", "8", "2015-10-10 02:01:03", "202.46.51.131", "9");
INSERT INTO `wp_rg_form_view` VALUES("18929", "9", "2015-10-10 02:01:04", "202.46.51.131", "7");
INSERT INTO `wp_rg_form_view` VALUES("18930", "3", "2015-10-10 03:11:17", "202.46.53.161", "183");
INSERT INTO `wp_rg_form_view` VALUES("18931", "8", "2015-10-10 03:11:17", "202.46.53.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("18932", "9", "2015-10-10 03:11:18", "202.46.53.161", "19");
INSERT INTO `wp_rg_form_view` VALUES("18933", "6", "2015-10-10 03:36:26", "188.65.117.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("18934", "9", "2015-10-10 04:09:50", "202.46.48.149", "8");
INSERT INTO `wp_rg_form_view` VALUES("18935", "3", "2015-10-10 04:09:50", "202.46.48.149", "74");
INSERT INTO `wp_rg_form_view` VALUES("18936", "8", "2015-10-10 04:09:50", "202.46.48.149", "9");
INSERT INTO `wp_rg_form_view` VALUES("18937", "3", "2015-10-10 05:08:22", "202.46.50.138", "66");
INSERT INTO `wp_rg_form_view` VALUES("18938", "8", "2015-10-10 05:08:22", "202.46.50.138", "9");
INSERT INTO `wp_rg_form_view` VALUES("18939", "9", "2015-10-10 05:08:23", "202.46.50.138", "7");
INSERT INTO `wp_rg_form_view` VALUES("18940", "9", "2015-10-10 06:06:55", "202.46.56.194", "8");
INSERT INTO `wp_rg_form_view` VALUES("18941", "3", "2015-10-10 06:06:55", "202.46.56.194", "65");
INSERT INTO `wp_rg_form_view` VALUES("18942", "8", "2015-10-10 06:06:55", "202.46.56.194", "8");
INSERT INTO `wp_rg_form_view` VALUES("18943", "9", "2015-10-10 07:01:56", "66.249.74.58", "11");
INSERT INTO `wp_rg_form_view` VALUES("18944", "3", "2015-10-10 07:01:56", "66.249.74.58", "97");
INSERT INTO `wp_rg_form_view` VALUES("18945", "8", "2015-10-10 07:01:56", "66.249.74.58", "12");
INSERT INTO `wp_rg_form_view` VALUES("18946", "9", "2015-10-10 08:04:01", "202.46.58.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("18947", "3", "2015-10-10 08:04:02", "202.46.58.119", "50");
INSERT INTO `wp_rg_form_view` VALUES("18948", "8", "2015-10-10 08:04:02", "202.46.58.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("18949", "3", "2015-10-10 09:02:40", "202.46.52.17", "94");
INSERT INTO `wp_rg_form_view` VALUES("18950", "9", "2015-10-10 09:02:40", "202.46.52.17", "10");
INSERT INTO `wp_rg_form_view` VALUES("18951", "8", "2015-10-10 09:02:41", "202.46.52.17", "11");
INSERT INTO `wp_rg_form_view` VALUES("18952", "1", "2015-10-10 09:22:46", "198.23.234.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("18953", "9", "2015-10-10 10:00:49", "198.23.234.253", "12");
INSERT INTO `wp_rg_form_view` VALUES("18954", "3", "2015-10-10 10:00:50", "198.23.234.253", "98");
INSERT INTO `wp_rg_form_view` VALUES("18955", "8", "2015-10-10 10:00:50", "198.23.234.253", "13");
INSERT INTO `wp_rg_form_view` VALUES("18956", "9", "2015-10-10 11:11:18", "202.46.55.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("18957", "3", "2015-10-10 11:11:18", "202.46.55.177", "80");
INSERT INTO `wp_rg_form_view` VALUES("18958", "8", "2015-10-10 11:11:18", "202.46.55.177", "11");
INSERT INTO `wp_rg_form_view` VALUES("18959", "9", "2015-10-10 12:09:51", "202.46.57.185", "88");
INSERT INTO `wp_rg_form_view` VALUES("18960", "3", "2015-10-10 12:09:51", "202.46.57.185", "747");
INSERT INTO `wp_rg_form_view` VALUES("18961", "8", "2015-10-10 12:09:51", "202.46.57.185", "92");
INSERT INTO `wp_rg_form_view` VALUES("18962", "9", "2015-10-10 13:00:09", "133.130.63.178", "271");
INSERT INTO `wp_rg_form_view` VALUES("18963", "3", "2015-10-10 13:00:09", "133.130.63.178", "2226");
INSERT INTO `wp_rg_form_view` VALUES("18964", "8", "2015-10-10 13:00:10", "133.130.63.178", "277");
INSERT INTO `wp_rg_form_view` VALUES("18965", "1", "2015-10-10 13:54:05", "133.130.63.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("18966", "9", "2015-10-10 14:00:04", "133.130.63.178", "157");
INSERT INTO `wp_rg_form_view` VALUES("18967", "3", "2015-10-10 14:00:04", "133.130.63.178", "1257");
INSERT INTO `wp_rg_form_view` VALUES("18968", "8", "2015-10-10 14:00:05", "133.130.63.178", "158");
INSERT INTO `wp_rg_form_view` VALUES("18969", "2", "2015-10-10 14:07:22", "133.130.63.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("18970", "9", "2015-10-10 15:05:26", "202.46.52.16", "10");
INSERT INTO `wp_rg_form_view` VALUES("18971", "3", "2015-10-10 15:05:26", "202.46.52.16", "81");
INSERT INTO `wp_rg_form_view` VALUES("18972", "8", "2015-10-10 15:05:27", "202.46.52.16", "10");
INSERT INTO `wp_rg_form_view` VALUES("18973", "3", "2015-10-10 16:03:58", "202.46.53.149", "50");
INSERT INTO `wp_rg_form_view` VALUES("18974", "9", "2015-10-10 16:03:59", "202.46.53.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("18975", "8", "2015-10-10 16:03:59", "202.46.53.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("18976", "3", "2015-10-10 17:02:30", "202.46.55.18", "79");
INSERT INTO `wp_rg_form_view` VALUES("18977", "9", "2015-10-10 17:02:31", "202.46.55.18", "8");
INSERT INTO `wp_rg_form_view` VALUES("18978", "8", "2015-10-10 17:02:31", "202.46.55.18", "10");
INSERT INTO `wp_rg_form_view` VALUES("18979", "9", "2015-10-10 18:01:03", "202.46.54.133", "8");
INSERT INTO `wp_rg_form_view` VALUES("18980", "3", "2015-10-10 18:01:03", "202.46.54.133", "72");
INSERT INTO `wp_rg_form_view` VALUES("18981", "8", "2015-10-10 18:01:03", "202.46.54.133", "10");
INSERT INTO `wp_rg_form_view` VALUES("18982", "6", "2015-10-10 18:47:58", "66.249.74.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("18983", "3", "2015-10-10 19:11:18", "202.46.53.203", "90");
INSERT INTO `wp_rg_form_view` VALUES("18984", "8", "2015-10-10 19:11:18", "202.46.53.203", "11");
INSERT INTO `wp_rg_form_view` VALUES("18985", "9", "2015-10-10 19:11:19", "202.46.53.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("18986", "9", "2015-10-10 20:02:58", "207.46.13.101", "8");
INSERT INTO `wp_rg_form_view` VALUES("18987", "3", "2015-10-10 20:02:58", "207.46.13.101", "70");
INSERT INTO `wp_rg_form_view` VALUES("18988", "8", "2015-10-10 20:02:58", "207.46.13.101", "7");
INSERT INTO `wp_rg_form_view` VALUES("18989", "9", "2015-10-10 21:08:23", "202.46.50.95", "11");
INSERT INTO `wp_rg_form_view` VALUES("18990", "3", "2015-10-10 21:08:23", "202.46.50.95", "103");
INSERT INTO `wp_rg_form_view` VALUES("18991", "8", "2015-10-10 21:08:24", "202.46.50.95", "13");
INSERT INTO `wp_rg_form_view` VALUES("18992", "9", "2015-10-10 22:01:55", "66.249.74.56", "7");
INSERT INTO `wp_rg_form_view` VALUES("18993", "3", "2015-10-10 22:01:55", "66.249.74.56", "58");
INSERT INTO `wp_rg_form_view` VALUES("18994", "8", "2015-10-10 22:01:55", "66.249.74.56", "7");
INSERT INTO `wp_rg_form_view` VALUES("18995", "3", "2015-10-10 23:05:26", "202.46.58.74", "89");
INSERT INTO `wp_rg_form_view` VALUES("18996", "9", "2015-10-10 23:05:27", "202.46.58.74", "11");
INSERT INTO `wp_rg_form_view` VALUES("18997", "8", "2015-10-10 23:05:27", "202.46.58.74", "10");
INSERT INTO `wp_rg_form_view` VALUES("18998", "9", "2015-10-11 00:03:58", "202.46.57.24", "9");
INSERT INTO `wp_rg_form_view` VALUES("18999", "3", "2015-10-11 00:03:58", "202.46.57.24", "63");
INSERT INTO `wp_rg_form_view` VALUES("19000", "8", "2015-10-11 00:03:58", "202.46.57.24", "10");
INSERT INTO `wp_rg_form_view` VALUES("19001", "8", "2015-10-11 01:02:32", "202.46.56.64", "9");
INSERT INTO `wp_rg_form_view` VALUES("19002", "3", "2015-10-11 01:02:32", "202.46.56.64", "59");
INSERT INTO `wp_rg_form_view` VALUES("19003", "9", "2015-10-11 01:02:32", "202.46.56.64", "8");
INSERT INTO `wp_rg_form_view` VALUES("19004", "9", "2015-10-11 02:01:04", "202.46.48.11", "7");
INSERT INTO `wp_rg_form_view` VALUES("19005", "3", "2015-10-11 02:01:04", "202.46.48.11", "66");
INSERT INTO `wp_rg_form_view` VALUES("19006", "8", "2015-10-11 02:01:05", "202.46.48.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("19007", "1", "2015-10-11 02:32:21", "66.249.74.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("19008", "9", "2015-10-11 03:01:58", "69.58.178.58", "27");
INSERT INTO `wp_rg_form_view` VALUES("19009", "3", "2015-10-11 03:01:58", "69.58.178.58", "220");
INSERT INTO `wp_rg_form_view` VALUES("19010", "8", "2015-10-11 03:01:58", "69.58.178.58", "27");
INSERT INTO `wp_rg_form_view` VALUES("19011", "9", "2015-10-11 04:09:51", "202.46.52.15", "47");
INSERT INTO `wp_rg_form_view` VALUES("19012", "3", "2015-10-11 04:09:51", "202.46.52.15", "392");
INSERT INTO `wp_rg_form_view` VALUES("19013", "8", "2015-10-11 04:09:51", "202.46.52.15", "49");
INSERT INTO `wp_rg_form_view` VALUES("19014", "1", "2015-10-11 04:20:23", "86.53.249.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("19015", "2", "2015-10-11 04:20:29", "86.53.249.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("19016", "3", "2015-10-11 05:08:23", "202.46.50.134", "59");
INSERT INTO `wp_rg_form_view` VALUES("19017", "9", "2015-10-11 05:08:24", "202.46.50.134", "7");
INSERT INTO `wp_rg_form_view` VALUES("19018", "8", "2015-10-11 05:08:24", "202.46.50.134", "7");
INSERT INTO `wp_rg_form_view` VALUES("19019", "9", "2015-10-11 06:06:55", "202.46.58.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("19020", "3", "2015-10-11 06:06:56", "202.46.58.113", "51");
INSERT INTO `wp_rg_form_view` VALUES("19021", "8", "2015-10-11 06:06:56", "202.46.58.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("19022", "3", "2015-10-11 07:05:27", "202.46.49.131", "85");
INSERT INTO `wp_rg_form_view` VALUES("19023", "8", "2015-10-11 07:05:27", "202.46.49.131", "11");
INSERT INTO `wp_rg_form_view` VALUES("19024", "9", "2015-10-11 07:05:28", "202.46.49.131", "7");
INSERT INTO `wp_rg_form_view` VALUES("19025", "3", "2015-10-11 08:04:04", "202.46.48.97", "65");
INSERT INTO `wp_rg_form_view` VALUES("19026", "9", "2015-10-11 08:04:10", "202.46.48.97", "9");
INSERT INTO `wp_rg_form_view` VALUES("19027", "8", "2015-10-11 08:04:11", "202.46.48.97", "8");
INSERT INTO `wp_rg_form_view` VALUES("19028", "9", "2015-10-11 09:02:31", "202.46.49.112", "9");
INSERT INTO `wp_rg_form_view` VALUES("19029", "3", "2015-10-11 09:02:31", "202.46.49.112", "76");
INSERT INTO `wp_rg_form_view` VALUES("19030", "8", "2015-10-11 09:02:32", "202.46.49.112", "9");
INSERT INTO `wp_rg_form_view` VALUES("19031", "3", "2015-10-11 10:01:04", "202.46.55.172", "81");
INSERT INTO `wp_rg_form_view` VALUES("19032", "9", "2015-10-11 10:01:04", "202.46.55.172", "9");
INSERT INTO `wp_rg_form_view` VALUES("19033", "8", "2015-10-11 10:01:04", "202.46.55.172", "10");
INSERT INTO `wp_rg_form_view` VALUES("19034", "3", "2015-10-11 11:11:19", "202.46.48.125", "51");
INSERT INTO `wp_rg_form_view` VALUES("19035", "9", "2015-10-11 11:11:19", "202.46.48.125", "5");
INSERT INTO `wp_rg_form_view` VALUES("19036", "8", "2015-10-11 11:11:19", "202.46.48.125", "6");
INSERT INTO `wp_rg_form_view` VALUES("19037", "3", "2015-10-11 12:00:22", "66.249.74.58", "84");
INSERT INTO `wp_rg_form_view` VALUES("19038", "9", "2015-10-11 12:00:22", "66.249.74.58", "11");
INSERT INTO `wp_rg_form_view` VALUES("19039", "8", "2015-10-11 12:00:22", "66.249.74.58", "10");
INSERT INTO `wp_rg_form_view` VALUES("19040", "1", "2015-10-11 12:14:32", "112.111.185.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("19041", "9", "2015-10-11 13:08:24", "202.46.52.102", "10");
INSERT INTO `wp_rg_form_view` VALUES("19042", "3", "2015-10-11 13:08:24", "202.46.52.102", "59");
INSERT INTO `wp_rg_form_view` VALUES("19043", "8", "2015-10-11 13:08:24", "202.46.52.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("19044", "3", "2015-10-11 14:06:55", "202.46.54.91", "56");
INSERT INTO `wp_rg_form_view` VALUES("19045", "8", "2015-10-11 14:06:55", "202.46.54.91", "7");
INSERT INTO `wp_rg_form_view` VALUES("19046", "9", "2015-10-11 14:06:56", "202.46.54.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("19047", "9", "2015-10-11 15:03:57", "66.90.94.130", "7");
INSERT INTO `wp_rg_form_view` VALUES("19048", "3", "2015-10-11 15:03:57", "66.90.94.130", "63");
INSERT INTO `wp_rg_form_view` VALUES("19049", "8", "2015-10-11 15:03:57", "66.90.94.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("19050", "1", "2015-10-11 16:03:52", "62.210.178.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("19051", "9", "2015-10-11 16:03:52", "62.210.178.179", "12");
INSERT INTO `wp_rg_form_view` VALUES("19052", "3", "2015-10-11 16:03:52", "62.210.178.179", "94");
INSERT INTO `wp_rg_form_view` VALUES("19053", "8", "2015-10-11 16:03:53", "62.210.178.179", "14");
INSERT INTO `wp_rg_form_view` VALUES("19054", "9", "2015-10-11 17:02:32", "202.46.54.36", "7");
INSERT INTO `wp_rg_form_view` VALUES("19055", "3", "2015-10-11 17:02:33", "202.46.54.36", "62");
INSERT INTO `wp_rg_form_view` VALUES("19056", "8", "2015-10-11 17:02:33", "202.46.54.36", "9");
INSERT INTO `wp_rg_form_view` VALUES("19057", "9", "2015-10-11 18:12:46", "202.46.56.182", "8");
INSERT INTO `wp_rg_form_view` VALUES("19058", "3", "2015-10-11 18:12:46", "202.46.56.182", "79");
INSERT INTO `wp_rg_form_view` VALUES("19059", "8", "2015-10-11 18:12:46", "202.46.56.182", "10");
INSERT INTO `wp_rg_form_view` VALUES("19060", "9", "2015-10-11 19:04:57", "216.232.153.64", "11");
INSERT INTO `wp_rg_form_view` VALUES("19061", "3", "2015-10-11 19:04:57", "216.232.153.64", "108");
INSERT INTO `wp_rg_form_view` VALUES("19062", "8", "2015-10-11 19:04:57", "216.232.153.64", "13");
INSERT INTO `wp_rg_form_view` VALUES("19063", "1", "2015-10-11 19:29:53", "179.60.149.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("19064", "3", "2015-10-11 20:09:51", "202.46.57.186", "129");
INSERT INTO `wp_rg_form_view` VALUES("19065", "8", "2015-10-11 20:09:51", "202.46.57.186", "16");
INSERT INTO `wp_rg_form_view` VALUES("19066", "9", "2015-10-11 20:09:52", "202.46.57.186", "14");
INSERT INTO `wp_rg_form_view` VALUES("19067", "1", "2015-10-11 20:35:00", "24.68.124.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("19068", "8", "2015-10-11 21:08:22", "202.46.57.19", "17");
INSERT INTO `wp_rg_form_view` VALUES("19069", "9", "2015-10-11 21:08:23", "202.46.57.19", "18");
INSERT INTO `wp_rg_form_view` VALUES("19070", "3", "2015-10-11 21:08:23", "202.46.57.19", "116");
INSERT INTO `wp_rg_form_view` VALUES("19071", "3", "2015-10-11 22:06:55", "202.46.54.94", "82");
INSERT INTO `wp_rg_form_view` VALUES("19072", "8", "2015-10-11 22:06:55", "202.46.54.94", "10");
INSERT INTO `wp_rg_form_view` VALUES("19073", "9", "2015-10-11 22:06:56", "202.46.54.94", "10");
INSERT INTO `wp_rg_form_view` VALUES("19074", "1", "2015-10-11 22:23:23", "66.248.206.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("19075", "9", "2015-10-11 23:05:27", "202.46.51.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("19076", "3", "2015-10-11 23:05:27", "202.46.51.192", "69");
INSERT INTO `wp_rg_form_view` VALUES("19077", "8", "2015-10-11 23:05:27", "202.46.51.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("19078", "3", "2015-10-12 00:03:59", "202.46.49.77", "87");
INSERT INTO `wp_rg_form_view` VALUES("19079", "9", "2015-10-12 00:03:59", "202.46.49.77", "11");
INSERT INTO `wp_rg_form_view` VALUES("19080", "8", "2015-10-12 00:04:00", "202.46.49.77", "11");
INSERT INTO `wp_rg_form_view` VALUES("19081", "1", "2015-10-12 00:27:17", "99.240.186.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("19082", "9", "2015-10-12 01:02:32", "202.46.52.67", "9");
INSERT INTO `wp_rg_form_view` VALUES("19083", "3", "2015-10-12 01:02:32", "202.46.52.67", "91");
INSERT INTO `wp_rg_form_view` VALUES("19084", "8", "2015-10-12 01:02:32", "202.46.52.67", "11");
INSERT INTO `wp_rg_form_view` VALUES("19085", "9", "2015-10-12 02:01:05", "202.46.52.44", "46");
INSERT INTO `wp_rg_form_view` VALUES("19086", "3", "2015-10-12 02:01:05", "202.46.52.44", "382");
INSERT INTO `wp_rg_form_view` VALUES("19087", "8", "2015-10-12 02:01:05", "202.46.52.44", "50");
INSERT INTO `wp_rg_form_view` VALUES("19088", "1", "2015-10-12 02:30:21", "2.137.224.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("19089", "2", "2015-10-12 02:30:29", "2.137.224.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("19090", "9", "2015-10-12 03:06:35", "199.168.141.174", "46");
INSERT INTO `wp_rg_form_view` VALUES("19091", "3", "2015-10-12 03:06:35", "199.168.141.174", "393");
INSERT INTO `wp_rg_form_view` VALUES("19092", "8", "2015-10-12 03:06:35", "199.168.141.174", "49");
INSERT INTO `wp_rg_form_view` VALUES("19093", "1", "2015-10-12 03:59:31", "212.185.111.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("19094", "2", "2015-10-12 03:59:37", "212.185.111.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("19095", "9", "2015-10-12 04:00:01", "212.185.111.115", "20");
INSERT INTO `wp_rg_form_view` VALUES("19096", "3", "2015-10-12 04:00:01", "212.185.111.115", "177");
INSERT INTO `wp_rg_form_view` VALUES("19097", "8", "2015-10-12 04:00:02", "212.185.111.115", "23");
INSERT INTO `wp_rg_form_view` VALUES("19098", "2", "2015-10-12 04:01:24", "178.33.131.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("19099", "9", "2015-10-12 05:08:22", "202.46.50.185", "10");
INSERT INTO `wp_rg_form_view` VALUES("19100", "3", "2015-10-12 05:08:23", "202.46.50.185", "88");
INSERT INTO `wp_rg_form_view` VALUES("19101", "8", "2015-10-12 05:08:23", "202.46.50.185", "11");
INSERT INTO `wp_rg_form_view` VALUES("19102", "9", "2015-10-12 06:06:55", "202.46.54.186", "7");
INSERT INTO `wp_rg_form_view` VALUES("19103", "3", "2015-10-12 06:06:55", "202.46.54.186", "58");
INSERT INTO `wp_rg_form_view` VALUES("19104", "8", "2015-10-12 06:06:55", "202.46.54.186", "6");
INSERT INTO `wp_rg_form_view` VALUES("19105", "9", "2015-10-12 07:05:27", "202.46.54.132", "6");
INSERT INTO `wp_rg_form_view` VALUES("19106", "3", "2015-10-12 07:05:27", "202.46.54.132", "65");
INSERT INTO `wp_rg_form_view` VALUES("19107", "8", "2015-10-12 07:05:27", "202.46.54.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("19108", "3", "2015-10-12 08:04:00", "202.46.49.62", "70");
INSERT INTO `wp_rg_form_view` VALUES("19109", "9", "2015-10-12 08:04:05", "202.46.49.62", "8");
INSERT INTO `wp_rg_form_view` VALUES("19110", "8", "2015-10-12 08:04:05", "202.46.49.62", "9");
INSERT INTO `wp_rg_form_view` VALUES("19111", "3", "2015-10-12 09:02:31", "202.46.52.108", "83");
INSERT INTO `wp_rg_form_view` VALUES("19112", "8", "2015-10-12 09:02:31", "202.46.52.108", "11");
INSERT INTO `wp_rg_form_view` VALUES("19113", "9", "2015-10-12 09:02:31", "202.46.52.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("19114", "9", "2015-10-12 10:01:04", "202.46.56.194", "7");
INSERT INTO `wp_rg_form_view` VALUES("19115", "3", "2015-10-12 10:01:04", "202.46.56.194", "71");
INSERT INTO `wp_rg_form_view` VALUES("19116", "8", "2015-10-12 10:01:04", "202.46.56.194", "9");
INSERT INTO `wp_rg_form_view` VALUES("19117", "3", "2015-10-12 11:11:18", "202.46.51.132", "84");
INSERT INTO `wp_rg_form_view` VALUES("19118", "8", "2015-10-12 11:11:18", "202.46.51.132", "12");
INSERT INTO `wp_rg_form_view` VALUES("19119", "9", "2015-10-12 11:11:19", "202.46.51.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("19120", "9", "2015-10-12 12:00:03", "157.55.39.212", "28");
INSERT INTO `wp_rg_form_view` VALUES("19121", "3", "2015-10-12 12:00:03", "157.55.39.212", "217");
INSERT INTO `wp_rg_form_view` VALUES("19122", "8", "2015-10-12 12:00:04", "157.55.39.212", "29");
INSERT INTO `wp_rg_form_view` VALUES("19123", "3", "2015-10-12 13:08:23", "202.46.48.92", "80");
INSERT INTO `wp_rg_form_view` VALUES("19124", "9", "2015-10-12 13:08:24", "202.46.48.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("19125", "8", "2015-10-12 13:08:24", "202.46.48.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("19126", "1", "2015-10-12 13:24:04", "192.200.210.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("19127", "3", "2015-10-12 14:06:54", "202.46.53.197", "79");
INSERT INTO `wp_rg_form_view` VALUES("19128", "8", "2015-10-12 14:06:54", "202.46.53.197", "10");
INSERT INTO `wp_rg_form_view` VALUES("19129", "9", "2015-10-12 14:06:55", "202.46.53.197", "9");
INSERT INTO `wp_rg_form_view` VALUES("19130", "6", "2015-10-12 14:08:27", "119.131.161.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("19131", "2", "2015-10-12 14:10:18", "66.249.67.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("19132", "9", "2015-10-12 15:05:27", "202.46.53.115", "5");
INSERT INTO `wp_rg_form_view` VALUES("19133", "3", "2015-10-12 15:05:27", "202.46.53.115", "42");
INSERT INTO `wp_rg_form_view` VALUES("19134", "8", "2015-10-12 15:05:27", "202.46.53.115", "5");
INSERT INTO `wp_rg_form_view` VALUES("19135", "9", "2015-10-12 16:15:41", "202.46.49.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("19136", "3", "2015-10-12 16:15:41", "202.46.49.69", "32");
INSERT INTO `wp_rg_form_view` VALUES("19137", "8", "2015-10-12 16:15:42", "202.46.49.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("19138", "9", "2015-10-12 17:02:31", "202.46.50.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("19139", "3", "2015-10-12 17:02:31", "202.46.50.92", "110");
INSERT INTO `wp_rg_form_view` VALUES("19140", "8", "2015-10-12 17:02:31", "202.46.50.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("19141", "9", "2015-10-12 18:01:03", "202.46.55.14", "22");
INSERT INTO `wp_rg_form_view` VALUES("19142", "3", "2015-10-12 18:01:03", "202.46.55.14", "181");
INSERT INTO `wp_rg_form_view` VALUES("19143", "8", "2015-10-12 18:01:04", "202.46.55.14", "22");
INSERT INTO `wp_rg_form_view` VALUES("19144", "3", "2015-10-12 19:11:18", "202.46.55.183", "90");
INSERT INTO `wp_rg_form_view` VALUES("19145", "8", "2015-10-12 19:11:18", "202.46.55.183", "12");
INSERT INTO `wp_rg_form_view` VALUES("19146", "9", "2015-10-12 19:11:18", "202.46.55.183", "12");
INSERT INTO `wp_rg_form_view` VALUES("19147", "9", "2015-10-12 20:03:30", "154.20.43.90", "7");
INSERT INTO `wp_rg_form_view` VALUES("19148", "3", "2015-10-12 20:03:30", "154.20.43.90", "70");
INSERT INTO `wp_rg_form_view` VALUES("19149", "8", "2015-10-12 20:03:30", "154.20.43.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("19150", "9", "2015-10-12 21:08:22", "202.46.54.20", "10");
INSERT INTO `wp_rg_form_view` VALUES("19151", "3", "2015-10-12 21:08:22", "202.46.54.20", "75");
INSERT INTO `wp_rg_form_view` VALUES("19152", "8", "2015-10-12 21:08:22", "202.46.54.20", "10");
INSERT INTO `wp_rg_form_view` VALUES("19153", "9", "2015-10-12 22:01:32", "199.168.141.174", "10");
INSERT INTO `wp_rg_form_view` VALUES("19154", "3", "2015-10-12 22:01:32", "199.168.141.174", "87");
INSERT INTO `wp_rg_form_view` VALUES("19155", "8", "2015-10-12 22:01:33", "199.168.141.174", "14");
INSERT INTO `wp_rg_form_view` VALUES("19156", "8", "2015-10-12 23:05:26", "202.46.58.210", "9");
INSERT INTO `wp_rg_form_view` VALUES("19157", "9", "2015-10-12 23:05:26", "202.46.58.210", "7");
INSERT INTO `wp_rg_form_view` VALUES("19158", "3", "2015-10-12 23:05:26", "202.46.58.210", "64");
INSERT INTO `wp_rg_form_view` VALUES("19159", "3", "2015-10-13 00:04:14", "202.46.54.72", "82");
INSERT INTO `wp_rg_form_view` VALUES("19160", "8", "2015-10-13 00:04:14", "202.46.54.72", "10");
INSERT INTO `wp_rg_form_view` VALUES("19161", "9", "2015-10-13 00:04:15", "202.46.54.72", "9");
INSERT INTO `wp_rg_form_view` VALUES("19162", "9", "2015-10-13 01:02:31", "202.46.55.152", "9");
INSERT INTO `wp_rg_form_view` VALUES("19163", "3", "2015-10-13 01:02:31", "202.46.55.152", "70");
INSERT INTO `wp_rg_form_view` VALUES("19164", "8", "2015-10-13 01:02:31", "202.46.55.152", "9");
INSERT INTO `wp_rg_form_view` VALUES("19165", "9", "2015-10-13 02:01:03", "202.46.53.118", "11");
INSERT INTO `wp_rg_form_view` VALUES("19166", "3", "2015-10-13 02:01:03", "202.46.53.118", "97");
INSERT INTO `wp_rg_form_view` VALUES("19167", "8", "2015-10-13 02:01:04", "202.46.53.118", "12");
INSERT INTO `wp_rg_form_view` VALUES("19168", "9", "2015-10-13 03:01:30", "157.55.39.149", "14");
INSERT INTO `wp_rg_form_view` VALUES("19169", "3", "2015-10-13 03:01:30", "157.55.39.149", "102");
INSERT INTO `wp_rg_form_view` VALUES("19170", "8", "2015-10-13 03:01:30", "157.55.39.149", "15");
INSERT INTO `wp_rg_form_view` VALUES("19171", "5", "2015-10-13 03:37:40", "188.165.15.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("19172", "9", "2015-10-13 04:01:21", "216.232.157.187", "20");
INSERT INTO `wp_rg_form_view` VALUES("19173", "3", "2015-10-13 04:01:21", "216.232.157.187", "147");
INSERT INTO `wp_rg_form_view` VALUES("19174", "8", "2015-10-13 04:01:22", "216.232.157.187", "18");
INSERT INTO `wp_rg_form_view` VALUES("19175", "1", "2015-10-13 04:06:56", "96.93.118.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("19176", "9", "2015-10-13 05:08:22", "202.46.58.95", "10");
INSERT INTO `wp_rg_form_view` VALUES("19177", "3", "2015-10-13 05:08:22", "202.46.58.95", "98");
INSERT INTO `wp_rg_form_view` VALUES("19178", "8", "2015-10-13 05:08:22", "202.46.58.95", "13");
INSERT INTO `wp_rg_form_view` VALUES("19179", "3", "2015-10-13 06:06:54", "202.46.49.152", "69");
INSERT INTO `wp_rg_form_view` VALUES("19180", "8", "2015-10-13 06:06:54", "202.46.49.152", "9");
INSERT INTO `wp_rg_form_view` VALUES("19181", "9", "2015-10-13 06:06:54", "202.46.49.152", "6");
INSERT INTO `wp_rg_form_view` VALUES("19182", "9", "2015-10-13 07:02:39", "157.55.39.110", "7");
INSERT INTO `wp_rg_form_view` VALUES("19183", "3", "2015-10-13 07:02:39", "157.55.39.110", "60");
INSERT INTO `wp_rg_form_view` VALUES("19184", "8", "2015-10-13 07:02:39", "157.55.39.110", "8");
INSERT INTO `wp_rg_form_view` VALUES("19185", "9", "2015-10-13 08:04:08", "202.46.51.182", "11");
INSERT INTO `wp_rg_form_view` VALUES("19186", "3", "2015-10-13 08:04:09", "202.46.51.182", "91");
INSERT INTO `wp_rg_form_view` VALUES("19187", "8", "2015-10-13 08:04:09", "202.46.51.182", "12");
INSERT INTO `wp_rg_form_view` VALUES("19188", "3", "2015-10-13 09:02:30", "202.46.54.206", "156");
INSERT INTO `wp_rg_form_view` VALUES("19189", "8", "2015-10-13 09:02:30", "202.46.54.206", "20");
INSERT INTO `wp_rg_form_view` VALUES("19190", "9", "2015-10-13 09:02:31", "202.46.54.206", "17");
INSERT INTO `wp_rg_form_view` VALUES("19191", "1", "2015-10-13 09:25:20", "107.173.247.237", "4");
INSERT INTO `wp_rg_form_view` VALUES("19192", "3", "2015-10-13 10:01:04", "202.46.56.206", "144");
INSERT INTO `wp_rg_form_view` VALUES("19193", "9", "2015-10-13 10:01:05", "202.46.56.206", "20");
INSERT INTO `wp_rg_form_view` VALUES("19194", "8", "2015-10-13 10:01:05", "202.46.56.206", "18");
INSERT INTO `wp_rg_form_view` VALUES("19195", "9", "2015-10-13 11:11:18", "202.46.54.33", "16");
INSERT INTO `wp_rg_form_view` VALUES("19196", "3", "2015-10-13 11:11:18", "202.46.54.33", "129");
INSERT INTO `wp_rg_form_view` VALUES("19197", "8", "2015-10-13 11:11:18", "202.46.54.33", "17");
INSERT INTO `wp_rg_form_view` VALUES("19198", "1", "2015-10-13 11:39:16", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("19199", "2", "2015-10-13 11:39:27", "93.92.217.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("19200", "9", "2015-10-13 12:09:50", "202.46.57.21", "27");
INSERT INTO `wp_rg_form_view` VALUES("19201", "3", "2015-10-13 12:09:50", "202.46.57.21", "211");
INSERT INTO `wp_rg_form_view` VALUES("19202", "8", "2015-10-13 12:09:50", "202.46.57.21", "27");
INSERT INTO `wp_rg_form_view` VALUES("19203", "1", "2015-10-13 12:31:58", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("19204", "2", "2015-10-13 12:31:58", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("19205", "9", "2015-10-13 13:08:22", "202.46.53.160", "9");
INSERT INTO `wp_rg_form_view` VALUES("19206", "3", "2015-10-13 13:08:22", "202.46.53.160", "77");
INSERT INTO `wp_rg_form_view` VALUES("19207", "8", "2015-10-13 13:08:22", "202.46.53.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("19208", "9", "2015-10-13 14:06:55", "202.46.58.139", "7");
INSERT INTO `wp_rg_form_view` VALUES("19209", "3", "2015-10-13 14:06:55", "202.46.58.139", "64");
INSERT INTO `wp_rg_form_view` VALUES("19210", "8", "2015-10-13 14:06:55", "202.46.58.139", "9");
INSERT INTO `wp_rg_form_view` VALUES("19211", "3", "2015-10-13 15:05:26", "202.46.55.125", "115");
INSERT INTO `wp_rg_form_view` VALUES("19212", "8", "2015-10-13 15:05:26", "202.46.55.125", "14");
INSERT INTO `wp_rg_form_view` VALUES("19213", "9", "2015-10-13 15:05:27", "202.46.55.125", "12");
INSERT INTO `wp_rg_form_view` VALUES("19214", "9", "2015-10-13 16:02:56", "188.165.15.22", "11");
INSERT INTO `wp_rg_form_view` VALUES("19215", "3", "2015-10-13 16:02:56", "188.165.15.22", "105");
INSERT INTO `wp_rg_form_view` VALUES("19216", "8", "2015-10-13 16:02:56", "188.165.15.22", "14");
INSERT INTO `wp_rg_form_view` VALUES("19217", "9", "2015-10-13 17:00:16", "184.69.27.122", "26");
INSERT INTO `wp_rg_form_view` VALUES("19218", "3", "2015-10-13 17:00:16", "184.69.27.122", "217");
INSERT INTO `wp_rg_form_view` VALUES("19219", "8", "2015-10-13 17:00:16", "184.69.27.122", "27");
INSERT INTO `wp_rg_form_view` VALUES("19220", "9", "2015-10-13 18:01:05", "202.46.58.91", "25");
INSERT INTO `wp_rg_form_view` VALUES("19221", "3", "2015-10-13 18:01:05", "202.46.58.91", "210");
INSERT INTO `wp_rg_form_view` VALUES("19222", "8", "2015-10-13 18:01:05", "202.46.58.91", "27");
INSERT INTO `wp_rg_form_view` VALUES("19223", "9", "2015-10-13 19:01:33", "96.50.66.90", "157");
INSERT INTO `wp_rg_form_view` VALUES("19224", "3", "2015-10-13 19:01:33", "96.50.66.90", "1349");
INSERT INTO `wp_rg_form_view` VALUES("19225", "8", "2015-10-13 19:01:33", "96.50.66.90", "173");
INSERT INTO `wp_rg_form_view` VALUES("19226", "1", "2015-10-13 19:29:30", "24.108.112.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("19227", "2", "2015-10-13 19:38:02", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19228", "5", "2015-10-13 19:45:41", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19229", "6", "2015-10-13 19:56:19", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19230", "9", "2015-10-13 20:01:10", "5.9.98.130", "349");
INSERT INTO `wp_rg_form_view` VALUES("19231", "3", "2015-10-13 20:01:10", "5.9.98.130", "3305");
INSERT INTO `wp_rg_form_view` VALUES("19232", "8", "2015-10-13 20:01:10", "5.9.98.130", "427");
INSERT INTO `wp_rg_form_view` VALUES("19233", "3", "2015-10-13 21:00:02", "5.9.98.130", "2581");
INSERT INTO `wp_rg_form_view` VALUES("19234", "8", "2015-10-13 21:00:03", "5.9.98.130", "341");
INSERT INTO `wp_rg_form_view` VALUES("19235", "9", "2015-10-13 21:00:04", "5.9.98.130", "314");
INSERT INTO `wp_rg_form_view` VALUES("19236", "3", "2015-10-13 22:00:00", "5.9.98.130", "4452");
INSERT INTO `wp_rg_form_view` VALUES("19237", "9", "2015-10-13 22:00:05", "5.9.98.130", "407");
INSERT INTO `wp_rg_form_view` VALUES("19238", "8", "2015-10-13 22:00:06", "5.9.98.130", "601");
INSERT INTO `wp_rg_form_view` VALUES("19239", "3", "2015-10-13 23:05:26", "202.46.50.210", "2738");
INSERT INTO `wp_rg_form_view` VALUES("19240", "8", "2015-10-13 23:05:26", "202.46.50.210", "322");
INSERT INTO `wp_rg_form_view` VALUES("19241", "9", "2015-10-13 23:05:28", "202.46.50.210", "380");
INSERT INTO `wp_rg_form_view` VALUES("19242", "3", "2015-10-14 00:00:01", "5.9.98.130", "5681");
INSERT INTO `wp_rg_form_view` VALUES("19243", "9", "2015-10-14 00:00:02", "5.9.98.130", "445");
INSERT INTO `wp_rg_form_view` VALUES("19244", "8", "2015-10-14 00:00:03", "5.9.98.130", "649");
INSERT INTO `wp_rg_form_view` VALUES("19245", "3", "2015-10-14 01:00:00", "5.9.98.130", "2744");
INSERT INTO `wp_rg_form_view` VALUES("19246", "8", "2015-10-14 01:00:04", "5.9.98.130", "509");
INSERT INTO `wp_rg_form_view` VALUES("19247", "9", "2015-10-14 01:00:05", "5.9.98.130", "325");
INSERT INTO `wp_rg_form_view` VALUES("19248", "9", "2015-10-14 02:01:02", "202.46.56.117", "26");
INSERT INTO `wp_rg_form_view` VALUES("19249", "3", "2015-10-14 02:01:04", "202.46.56.117", "216");
INSERT INTO `wp_rg_form_view` VALUES("19250", "8", "2015-10-14 02:01:04", "202.46.56.117", "29");
INSERT INTO `wp_rg_form_view` VALUES("19251", "1", "2015-10-14 02:41:28", "125.71.43.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("19252", "3", "2015-10-14 03:02:24", "202.46.53.206", "4029");
INSERT INTO `wp_rg_form_view` VALUES("19253", "8", "2015-10-14 03:02:24", "202.46.53.206", "504");
INSERT INTO `wp_rg_form_view` VALUES("19254", "9", "2015-10-14 03:02:25", "202.46.53.206", "608");
INSERT INTO `wp_rg_form_view` VALUES("19255", "3", "2015-10-14 04:00:00", "5.9.98.130", "4632");
INSERT INTO `wp_rg_form_view` VALUES("19256", "8", "2015-10-14 04:00:00", "5.9.98.130", "515");
INSERT INTO `wp_rg_form_view` VALUES("19257", "9", "2015-10-14 04:00:05", "5.9.98.130", "439");
INSERT INTO `wp_rg_form_view` VALUES("19258", "2", "2015-10-14 04:35:48", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19259", "1", "2015-10-14 04:35:54", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19260", "5", "2015-10-14 04:42:55", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19261", "6", "2015-10-14 04:51:55", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19262", "3", "2015-10-14 05:00:02", "5.9.98.130", "4435");
INSERT INTO `wp_rg_form_view` VALUES("19263", "8", "2015-10-14 05:00:03", "5.9.98.130", "594");
INSERT INTO `wp_rg_form_view` VALUES("19264", "9", "2015-10-14 05:00:04", "5.9.98.130", "448");
INSERT INTO `wp_rg_form_view` VALUES("19265", "8", "2015-10-14 06:00:00", "5.9.98.130", "438");
INSERT INTO `wp_rg_form_view` VALUES("19266", "3", "2015-10-14 06:00:00", "5.9.98.130", "3814");
INSERT INTO `wp_rg_form_view` VALUES("19267", "9", "2015-10-14 06:00:05", "5.9.98.130", "369");
INSERT INTO `wp_rg_form_view` VALUES("19268", "3", "2015-10-14 06:56:48", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19269", "3", "2015-10-14 07:05:29", "202.46.58.195", "155");
INSERT INTO `wp_rg_form_view` VALUES("19270", "8", "2015-10-14 07:05:31", "202.46.58.195", "19");
INSERT INTO `wp_rg_form_view` VALUES("19271", "9", "2015-10-14 07:05:36", "202.46.58.195", "15");
INSERT INTO `wp_rg_form_view` VALUES("19272", "9", "2015-10-14 08:04:05", "202.46.56.180", "15");
INSERT INTO `wp_rg_form_view` VALUES("19273", "3", "2015-10-14 08:04:06", "202.46.56.180", "108");
INSERT INTO `wp_rg_form_view` VALUES("19274", "8", "2015-10-14 08:04:06", "202.46.56.180", "17");
INSERT INTO `wp_rg_form_view` VALUES("19275", "9", "2015-10-14 09:02:30", "202.46.52.61", "44");
INSERT INTO `wp_rg_form_view` VALUES("19276", "3", "2015-10-14 09:02:30", "202.46.52.61", "359");
INSERT INTO `wp_rg_form_view` VALUES("19277", "8", "2015-10-14 09:02:31", "202.46.52.61", "44");
INSERT INTO `wp_rg_form_view` VALUES("19278", "1", "2015-10-14 09:36:34", "129.173.204.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("19279", "2", "2015-10-14 09:36:45", "129.173.204.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("19280", "9", "2015-10-14 10:01:02", "202.46.48.210", "22");
INSERT INTO `wp_rg_form_view` VALUES("19281", "3", "2015-10-14 10:01:02", "202.46.48.210", "189");
INSERT INTO `wp_rg_form_view` VALUES("19282", "8", "2015-10-14 10:01:02", "202.46.48.210", "23");
INSERT INTO `wp_rg_form_view` VALUES("19283", "1", "2015-10-14 10:33:05", "50.179.185.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("19284", "3", "2015-10-14 11:02:24", "202.46.52.203", "157");
INSERT INTO `wp_rg_form_view` VALUES("19285", "8", "2015-10-14 11:02:24", "202.46.52.203", "23");
INSERT INTO `wp_rg_form_view` VALUES("19286", "9", "2015-10-14 11:02:25", "202.46.52.203", "19");
INSERT INTO `wp_rg_form_view` VALUES("19287", "1", "2015-10-14 11:05:46", "119.122.247.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("19288", "9", "2015-10-14 12:00:56", "202.46.49.78", "19");
INSERT INTO `wp_rg_form_view` VALUES("19289", "3", "2015-10-14 12:00:56", "202.46.49.78", "161");
INSERT INTO `wp_rg_form_view` VALUES("19290", "8", "2015-10-14 12:00:56", "202.46.49.78", "20");
INSERT INTO `wp_rg_form_view` VALUES("19291", "1", "2015-10-14 12:30:25", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("19292", "8", "2015-10-14 13:08:54", "202.46.53.197", "20");
INSERT INTO `wp_rg_form_view` VALUES("19293", "3", "2015-10-14 13:08:54", "202.46.53.197", "135");
INSERT INTO `wp_rg_form_view` VALUES("19294", "9", "2015-10-14 13:08:54", "202.46.53.197", "14");
INSERT INTO `wp_rg_form_view` VALUES("19295", "9", "2015-10-14 14:06:40", "46.246.43.57", "17");
INSERT INTO `wp_rg_form_view` VALUES("19296", "3", "2015-10-14 14:06:40", "46.246.43.57", "155");
INSERT INTO `wp_rg_form_view` VALUES("19297", "8", "2015-10-14 14:06:40", "46.246.43.57", "22");
INSERT INTO `wp_rg_form_view` VALUES("19298", "9", "2015-10-14 15:00:12", "202.46.55.147", "12");
INSERT INTO `wp_rg_form_view` VALUES("19299", "3", "2015-10-14 15:00:12", "202.46.55.147", "125");
INSERT INTO `wp_rg_form_view` VALUES("19300", "8", "2015-10-14 15:00:12", "202.46.55.147", "16");
INSERT INTO `wp_rg_form_view` VALUES("19301", "3", "2015-10-14 16:03:58", "202.46.52.65", "108");
INSERT INTO `wp_rg_form_view` VALUES("19302", "8", "2015-10-14 16:03:58", "202.46.52.65", "17");
INSERT INTO `wp_rg_form_view` VALUES("19303", "9", "2015-10-14 16:03:59", "202.46.52.65", "10");
INSERT INTO `wp_rg_form_view` VALUES("19304", "9", "2015-10-14 17:02:30", "202.46.51.184", "14");
INSERT INTO `wp_rg_form_view` VALUES("19305", "3", "2015-10-14 17:02:31", "202.46.51.184", "142");
INSERT INTO `wp_rg_form_view` VALUES("19306", "8", "2015-10-14 17:02:31", "202.46.51.184", "18");
INSERT INTO `wp_rg_form_view` VALUES("19307", "3", "2015-10-14 18:01:28", "202.46.48.135", "134");
INSERT INTO `wp_rg_form_view` VALUES("19308", "8", "2015-10-14 18:01:28", "202.46.48.135", "15");
INSERT INTO `wp_rg_form_view` VALUES("19309", "9", "2015-10-14 18:01:29", "202.46.48.135", "15");
INSERT INTO `wp_rg_form_view` VALUES("19310", "9", "2015-10-14 19:10:28", "134.249.52.69", "49");
INSERT INTO `wp_rg_form_view` VALUES("19311", "3", "2015-10-14 19:10:28", "134.249.52.69", "400");
INSERT INTO `wp_rg_form_view` VALUES("19312", "8", "2015-10-14 19:10:29", "134.249.52.69", "50");
INSERT INTO `wp_rg_form_view` VALUES("19313", "1", "2015-10-14 19:54:55", "174.127.133.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("19314", "2", "2015-10-14 19:56:45", "174.127.133.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("19315", "9", "2015-10-14 20:00:31", "174.127.133.40", "74");
INSERT INTO `wp_rg_form_view` VALUES("19316", "3", "2015-10-14 20:00:31", "174.127.133.40", "603");
INSERT INTO `wp_rg_form_view` VALUES("19317", "8", "2015-10-14 20:00:31", "174.127.133.40", "77");
INSERT INTO `wp_rg_form_view` VALUES("19318", "1", "2015-10-14 20:22:48", "174.127.133.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("19319", "9", "2015-10-14 21:14:24", "188.165.15.22", "41");
INSERT INTO `wp_rg_form_view` VALUES("19320", "3", "2015-10-14 21:14:24", "188.165.15.22", "330");
INSERT INTO `wp_rg_form_view` VALUES("19321", "8", "2015-10-14 21:14:24", "188.165.15.22", "42");
INSERT INTO `wp_rg_form_view` VALUES("19322", "1", "2015-10-14 21:43:20", "79.55.178.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("19323", "2", "2015-10-14 21:43:51", "79.55.178.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("19324", "9", "2015-10-14 22:02:42", "202.46.57.170", "29");
INSERT INTO `wp_rg_form_view` VALUES("19325", "3", "2015-10-14 22:02:42", "202.46.57.170", "228");
INSERT INTO `wp_rg_form_view` VALUES("19326", "8", "2015-10-14 22:02:42", "202.46.57.170", "29");
INSERT INTO `wp_rg_form_view` VALUES("19327", "1", "2015-10-14 22:08:19", "104.200.154.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("19328", "8", "2015-10-14 23:01:15", "202.46.53.151", "16");
INSERT INTO `wp_rg_form_view` VALUES("19329", "3", "2015-10-14 23:01:15", "202.46.53.151", "117");
INSERT INTO `wp_rg_form_view` VALUES("19330", "9", "2015-10-14 23:01:15", "202.46.53.151", "14");
INSERT INTO `wp_rg_form_view` VALUES("19331", "9", "2015-10-15 00:01:58", "157.55.39.110", "12");
INSERT INTO `wp_rg_form_view` VALUES("19332", "3", "2015-10-15 00:01:58", "157.55.39.110", "98");
INSERT INTO `wp_rg_form_view` VALUES("19333", "8", "2015-10-15 00:01:58", "157.55.39.110", "14");
INSERT INTO `wp_rg_form_view` VALUES("19334", "1", "2015-10-15 00:59:06", "96.54.165.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("19335", "9", "2015-10-15 01:02:41", "207.216.37.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("19336", "3", "2015-10-15 01:02:41", "207.216.37.169", "282");
INSERT INTO `wp_rg_form_view` VALUES("19337", "8", "2015-10-15 01:02:41", "207.216.37.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("19338", "1", "2015-10-15 01:03:43", "96.54.165.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("19339", "9", "2015-10-15 02:08:33", "202.46.51.200", "8");
INSERT INTO `wp_rg_form_view` VALUES("19340", "3", "2015-10-15 02:08:33", "202.46.51.200", "91");
INSERT INTO `wp_rg_form_view` VALUES("19341", "8", "2015-10-15 02:08:33", "202.46.51.200", "12");
INSERT INTO `wp_rg_form_view` VALUES("19342", "3", "2015-10-15 03:07:05", "202.46.51.207", "105");
INSERT INTO `wp_rg_form_view` VALUES("19343", "8", "2015-10-15 03:07:05", "202.46.51.207", "14");
INSERT INTO `wp_rg_form_view` VALUES("19344", "9", "2015-10-15 03:07:06", "202.46.51.207", "11");
INSERT INTO `wp_rg_form_view` VALUES("19345", "9", "2015-10-15 04:05:38", "202.46.53.159", "15");
INSERT INTO `wp_rg_form_view` VALUES("19346", "3", "2015-10-15 04:05:38", "202.46.53.159", "138");
INSERT INTO `wp_rg_form_view` VALUES("19347", "8", "2015-10-15 04:05:38", "202.46.53.159", "18");
INSERT INTO `wp_rg_form_view` VALUES("19348", "9", "2015-10-15 05:01:02", "46.246.40.148", "21");
INSERT INTO `wp_rg_form_view` VALUES("19349", "3", "2015-10-15 05:01:02", "46.246.40.148", "200");
INSERT INTO `wp_rg_form_view` VALUES("19350", "8", "2015-10-15 05:01:02", "46.246.40.148", "25");
INSERT INTO `wp_rg_form_view` VALUES("19351", "1", "2015-10-15 05:11:37", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("19352", "3", "2015-10-15 06:02:42", "202.46.58.71", "81");
INSERT INTO `wp_rg_form_view` VALUES("19353", "8", "2015-10-15 06:02:42", "202.46.58.71", "11");
INSERT INTO `wp_rg_form_view` VALUES("19354", "9", "2015-10-15 06:02:43", "202.46.58.71", "7");
INSERT INTO `wp_rg_form_view` VALUES("19355", "6", "2015-10-15 06:05:10", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("19356", "9", "2015-10-15 07:01:14", "202.46.54.106", "17");
INSERT INTO `wp_rg_form_view` VALUES("19357", "3", "2015-10-15 07:01:14", "202.46.54.106", "143");
INSERT INTO `wp_rg_form_view` VALUES("19358", "8", "2015-10-15 07:01:14", "202.46.54.106", "18");
INSERT INTO `wp_rg_form_view` VALUES("19359", "6", "2015-10-15 07:31:07", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("19360", "9", "2015-10-15 08:11:34", "202.46.48.132", "7");
INSERT INTO `wp_rg_form_view` VALUES("19361", "3", "2015-10-15 08:11:36", "202.46.48.132", "63");
INSERT INTO `wp_rg_form_view` VALUES("19362", "8", "2015-10-15 08:11:37", "202.46.48.132", "9");
INSERT INTO `wp_rg_form_view` VALUES("19363", "3", "2015-10-15 09:05:23", "217.69.133.227", "108");
INSERT INTO `wp_rg_form_view` VALUES("19364", "9", "2015-10-15 09:05:23", "217.69.133.227", "11");
INSERT INTO `wp_rg_form_view` VALUES("19365", "8", "2015-10-15 09:05:24", "217.69.133.227", "15");
INSERT INTO `wp_rg_form_view` VALUES("19366", "3", "2015-10-15 10:08:33", "202.46.57.166", "109");
INSERT INTO `wp_rg_form_view` VALUES("19367", "8", "2015-10-15 10:08:33", "202.46.57.166", "13");
INSERT INTO `wp_rg_form_view` VALUES("19368", "9", "2015-10-15 10:08:34", "202.46.57.166", "11");
INSERT INTO `wp_rg_form_view` VALUES("19369", "6", "2015-10-15 10:41:12", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("19370", "9", "2015-10-15 11:07:05", "202.46.57.18", "5");
INSERT INTO `wp_rg_form_view` VALUES("19371", "3", "2015-10-15 11:07:06", "202.46.57.18", "41");
INSERT INTO `wp_rg_form_view` VALUES("19372", "8", "2015-10-15 11:07:06", "202.46.57.18", "6");
INSERT INTO `wp_rg_form_view` VALUES("19373", "9", "2015-10-15 12:00:39", "134.249.52.69", "13");
INSERT INTO `wp_rg_form_view` VALUES("19374", "9", "2015-10-15 12:00:39", "134.249.52.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("19375", "3", "2015-10-15 12:00:39", "134.249.52.69", "106");
INSERT INTO `wp_rg_form_view` VALUES("19376", "3", "2015-10-15 12:00:39", "134.249.52.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("19377", "8", "2015-10-15 12:00:39", "134.249.52.69", "13");
INSERT INTO `wp_rg_form_view` VALUES("19378", "8", "2015-10-15 12:00:39", "134.249.52.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("19379", "3", "2015-10-15 13:04:10", "202.46.57.20", "105");
INSERT INTO `wp_rg_form_view` VALUES("19380", "8", "2015-10-15 13:04:10", "202.46.57.20", "13");
INSERT INTO `wp_rg_form_view` VALUES("19381", "9", "2015-10-15 13:04:10", "202.46.57.20", "9");
INSERT INTO `wp_rg_form_view` VALUES("19382", "3", "2015-10-15 14:14:24", "202.46.58.93", "57");
INSERT INTO `wp_rg_form_view` VALUES("19383", "8", "2015-10-15 14:14:24", "202.46.58.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("19384", "9", "2015-10-15 14:14:25", "202.46.58.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("19385", "9", "2015-10-15 15:01:20", "202.46.51.193", "12");
INSERT INTO `wp_rg_form_view` VALUES("19386", "3", "2015-10-15 15:01:20", "202.46.51.193", "125");
INSERT INTO `wp_rg_form_view` VALUES("19387", "8", "2015-10-15 15:01:20", "202.46.51.193", "15");
INSERT INTO `wp_rg_form_view` VALUES("19388", "9", "2015-10-15 16:06:15", "184.71.31.162", "14");
INSERT INTO `wp_rg_form_view` VALUES("19389", "3", "2015-10-15 16:06:16", "184.71.31.162", "130");
INSERT INTO `wp_rg_form_view` VALUES("19390", "8", "2015-10-15 16:06:16", "184.71.31.162", "17");
INSERT INTO `wp_rg_form_view` VALUES("19391", "1", "2015-10-15 16:25:56", "192.3.188.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("19392", "3", "2015-10-15 17:03:05", "217.69.133.233", "152");
INSERT INTO `wp_rg_form_view` VALUES("19393", "9", "2015-10-15 17:03:07", "217.69.133.233", "16");
INSERT INTO `wp_rg_form_view` VALUES("19394", "8", "2015-10-15 17:03:07", "217.69.133.233", "19");
INSERT INTO `wp_rg_form_view` VALUES("19395", "9", "2015-10-15 18:07:49", "46.118.117.53", "13");
INSERT INTO `wp_rg_form_view` VALUES("19396", "3", "2015-10-15 18:07:49", "46.118.117.53", "98");
INSERT INTO `wp_rg_form_view` VALUES("19397", "8", "2015-10-15 18:07:50", "46.118.117.53", "12");
INSERT INTO `wp_rg_form_view` VALUES("19398", "3", "2015-10-15 19:07:06", "202.46.53.201", "95");
INSERT INTO `wp_rg_form_view` VALUES("19399", "8", "2015-10-15 19:07:06", "202.46.53.201", "12");
INSERT INTO `wp_rg_form_view` VALUES("19400", "9", "2015-10-15 19:07:07", "202.46.53.201", "11");
INSERT INTO `wp_rg_form_view` VALUES("19401", "9", "2015-10-15 20:02:49", "179.60.149.136", "19");
INSERT INTO `wp_rg_form_view` VALUES("19402", "3", "2015-10-15 20:02:49", "179.60.149.136", "146");
INSERT INTO `wp_rg_form_view` VALUES("19403", "8", "2015-10-15 20:02:49", "179.60.149.136", "18");
INSERT INTO `wp_rg_form_view` VALUES("19404", "2", "2015-10-15 21:00:46", "157.55.39.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("19405", "9", "2015-10-15 21:00:46", "157.55.39.193", "304");
INSERT INTO `wp_rg_form_view` VALUES("19406", "3", "2015-10-15 21:00:46", "157.55.39.193", "2705");
INSERT INTO `wp_rg_form_view` VALUES("19407", "8", "2015-10-15 21:00:47", "157.55.39.193", "348");
INSERT INTO `wp_rg_form_view` VALUES("19408", "1", "2015-10-15 21:21:18", "159.203.88.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("19409", "6", "2015-10-15 21:26:44", "159.203.88.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("19410", "5", "2015-10-15 21:33:45", "159.203.88.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("19411", "3", "2015-10-15 22:00:00", "159.203.88.27", "2132");
INSERT INTO `wp_rg_form_view` VALUES("19412", "8", "2015-10-15 22:00:00", "159.203.88.27", "278");
INSERT INTO `wp_rg_form_view` VALUES("19413", "9", "2015-10-15 22:00:04", "159.203.88.27", "236");
INSERT INTO `wp_rg_form_view` VALUES("19414", "2", "2015-10-15 22:22:13", "159.203.88.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("19415", "9", "2015-10-15 23:01:14", "202.46.50.137", "15");
INSERT INTO `wp_rg_form_view` VALUES("19416", "3", "2015-10-15 23:01:14", "202.46.50.137", "118");
INSERT INTO `wp_rg_form_view` VALUES("19417", "8", "2015-10-15 23:01:14", "202.46.50.137", "15");
INSERT INTO `wp_rg_form_view` VALUES("19418", "2", "2015-10-15 23:44:17", "179.60.149.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("19419", "3", "2015-10-16 00:11:28", "202.46.58.194", "132");
INSERT INTO `wp_rg_form_view` VALUES("19420", "9", "2015-10-16 00:11:29", "202.46.58.194", "16");
INSERT INTO `wp_rg_form_view` VALUES("19421", "8", "2015-10-16 00:11:29", "202.46.58.194", "18");
INSERT INTO `wp_rg_form_view` VALUES("19422", "3", "2015-10-16 01:10:00", "202.46.54.130", "99");
INSERT INTO `wp_rg_form_view` VALUES("19423", "8", "2015-10-16 01:10:00", "202.46.54.130", "13");
INSERT INTO `wp_rg_form_view` VALUES("19424", "9", "2015-10-16 01:10:01", "202.46.54.130", "12");
INSERT INTO `wp_rg_form_view` VALUES("19425", "9", "2015-10-16 02:08:33", "202.46.52.158", "10");
INSERT INTO `wp_rg_form_view` VALUES("19426", "3", "2015-10-16 02:08:33", "202.46.52.158", "85");
INSERT INTO `wp_rg_form_view` VALUES("19427", "8", "2015-10-16 02:08:33", "202.46.52.158", "11");
INSERT INTO `wp_rg_form_view` VALUES("19428", "9", "2015-10-16 03:07:06", "202.46.50.18", "9");
INSERT INTO `wp_rg_form_view` VALUES("19429", "3", "2015-10-16 03:07:06", "202.46.50.18", "96");
INSERT INTO `wp_rg_form_view` VALUES("19430", "8", "2015-10-16 03:07:06", "202.46.50.18", "12");
INSERT INTO `wp_rg_form_view` VALUES("19431", "7", "2015-10-16 04:01:41", "179.60.149.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("19432", "9", "2015-10-16 04:01:42", "179.60.149.136", "17");
INSERT INTO `wp_rg_form_view` VALUES("19433", "3", "2015-10-16 04:01:42", "179.60.149.136", "133");
INSERT INTO `wp_rg_form_view` VALUES("19434", "8", "2015-10-16 04:01:42", "179.60.149.136", "16");
INSERT INTO `wp_rg_form_view` VALUES("19435", "9", "2015-10-16 05:04:12", "202.46.51.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("19436", "3", "2015-10-16 05:04:13", "202.46.51.84", "85");
INSERT INTO `wp_rg_form_view` VALUES("19437", "8", "2015-10-16 05:04:13", "202.46.51.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("19438", "8", "2015-10-16 06:02:46", "202.46.58.94", "13");
INSERT INTO `wp_rg_form_view` VALUES("19439", "3", "2015-10-16 06:02:47", "202.46.58.94", "95");
INSERT INTO `wp_rg_form_view` VALUES("19440", "9", "2015-10-16 06:02:47", "202.46.58.94", "13");
INSERT INTO `wp_rg_form_view` VALUES("19441", "3", "2015-10-16 07:01:13", "202.46.58.184", "100");
INSERT INTO `wp_rg_form_view` VALUES("19442", "8", "2015-10-16 07:01:14", "202.46.58.184", "12");
INSERT INTO `wp_rg_form_view` VALUES("19443", "9", "2015-10-16 07:01:14", "202.46.58.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("19444", "9", "2015-10-16 08:11:30", "202.46.48.193", "7");
INSERT INTO `wp_rg_form_view` VALUES("19445", "3", "2015-10-16 08:11:31", "202.46.48.193", "72");
INSERT INTO `wp_rg_form_view` VALUES("19446", "8", "2015-10-16 08:11:31", "202.46.48.193", "9");
INSERT INTO `wp_rg_form_view` VALUES("19447", "9", "2015-10-16 09:10:07", "202.46.58.95", "13");
INSERT INTO `wp_rg_form_view` VALUES("19448", "3", "2015-10-16 09:10:08", "202.46.58.95", "107");
INSERT INTO `wp_rg_form_view` VALUES("19449", "8", "2015-10-16 09:10:08", "202.46.58.95", "13");
INSERT INTO `wp_rg_form_view` VALUES("19450", "9", "2015-10-16 10:08:32", "202.46.54.93", "9");
INSERT INTO `wp_rg_form_view` VALUES("19451", "3", "2015-10-16 10:08:32", "202.46.54.93", "87");
INSERT INTO `wp_rg_form_view` VALUES("19452", "8", "2015-10-16 10:08:33", "202.46.54.93", "11");
INSERT INTO `wp_rg_form_view` VALUES("19453", "3", "2015-10-16 11:07:04", "202.46.52.76", "156");
INSERT INTO `wp_rg_form_view` VALUES("19454", "9", "2015-10-16 11:07:05", "202.46.52.76", "17");
INSERT INTO `wp_rg_form_view` VALUES("19455", "8", "2015-10-16 11:07:05", "202.46.52.76", "19");
INSERT INTO `wp_rg_form_view` VALUES("19456", "1", "2015-10-16 11:45:31", "111.23.10.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("19457", "3", "2015-10-16 12:00:16", "68.180.229.161", "272");
INSERT INTO `wp_rg_form_view` VALUES("19458", "9", "2015-10-16 12:00:16", "68.180.229.161", "33");
INSERT INTO `wp_rg_form_view` VALUES("19459", "8", "2015-10-16 12:00:16", "68.180.229.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("19460", "1", "2015-10-16 12:59:25", "62.84.152.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("19461", "2", "2015-10-16 12:59:32", "62.84.152.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("19462", "9", "2015-10-16 13:00:01", "62.84.152.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("19463", "3", "2015-10-16 13:00:01", "62.84.152.162", "159");
INSERT INTO `wp_rg_form_view` VALUES("19464", "8", "2015-10-16 13:00:02", "62.84.152.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("19465", "9", "2015-10-16 14:02:42", "202.46.53.50", "7");
INSERT INTO `wp_rg_form_view` VALUES("19466", "3", "2015-10-16 14:02:42", "202.46.53.50", "71");
INSERT INTO `wp_rg_form_view` VALUES("19467", "8", "2015-10-16 14:02:42", "202.46.53.50", "8");
INSERT INTO `wp_rg_form_view` VALUES("19468", "9", "2015-10-16 15:01:13", "202.46.56.75", "9");
INSERT INTO `wp_rg_form_view` VALUES("19469", "3", "2015-10-16 15:01:13", "202.46.56.75", "80");
INSERT INTO `wp_rg_form_view` VALUES("19470", "8", "2015-10-16 15:01:14", "202.46.56.75", "10");
INSERT INTO `wp_rg_form_view` VALUES("19471", "9", "2015-10-16 16:01:42", "66.249.74.56", "13");
INSERT INTO `wp_rg_form_view` VALUES("19472", "3", "2015-10-16 16:01:42", "66.249.74.56", "110");
INSERT INTO `wp_rg_form_view` VALUES("19473", "8", "2015-10-16 16:01:42", "66.249.74.56", "14");
INSERT INTO `wp_rg_form_view` VALUES("19474", "9", "2015-10-16 17:04:07", "103.251.64.174", "20");
INSERT INTO `wp_rg_form_view` VALUES("19475", "3", "2015-10-16 17:04:07", "103.251.64.174", "149");
INSERT INTO `wp_rg_form_view` VALUES("19476", "8", "2015-10-16 17:04:08", "103.251.64.174", "19");
INSERT INTO `wp_rg_form_view` VALUES("19477", "2", "2015-10-16 17:13:51", "80.234.9.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("19478", "3", "2015-10-16 18:08:33", "202.46.49.138", "281");
INSERT INTO `wp_rg_form_view` VALUES("19479", "8", "2015-10-16 18:08:33", "202.46.49.138", "36");
INSERT INTO `wp_rg_form_view` VALUES("19480", "9", "2015-10-16 18:08:34", "202.46.49.138", "34");
INSERT INTO `wp_rg_form_view` VALUES("19481", "1", "2015-10-16 18:30:41", "96.50.29.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("19482", "3", "2015-10-16 19:07:05", "202.46.55.39", "83");
INSERT INTO `wp_rg_form_view` VALUES("19483", "8", "2015-10-16 19:07:05", "202.46.55.39", "11");
INSERT INTO `wp_rg_form_view` VALUES("19484", "9", "2015-10-16 19:07:06", "202.46.55.39", "8");
INSERT INTO `wp_rg_form_view` VALUES("19485", "3", "2015-10-16 20:05:36", "202.46.54.192", "131");
INSERT INTO `wp_rg_form_view` VALUES("19486", "9", "2015-10-16 20:05:37", "202.46.54.192", "17");
INSERT INTO `wp_rg_form_view` VALUES("19487", "8", "2015-10-16 20:05:37", "202.46.54.192", "16");
INSERT INTO `wp_rg_form_view` VALUES("19488", "2", "2015-10-16 20:44:22", "167.114.172.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("19489", "1", "2015-10-16 20:44:28", "167.114.172.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("19490", "3", "2015-10-16 21:04:10", "202.46.58.152", "129");
INSERT INTO `wp_rg_form_view` VALUES("19491", "8", "2015-10-16 21:04:10", "202.46.58.152", "16");
INSERT INTO `wp_rg_form_view` VALUES("19492", "9", "2015-10-16 21:04:11", "202.46.58.152", "15");
INSERT INTO `wp_rg_form_view` VALUES("19493", "1", "2015-10-16 21:56:26", "157.55.39.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("19494", "1", "2015-10-16 22:01:22", "50.179.185.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("19495", "9", "2015-10-16 22:01:22", "50.179.185.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("19496", "3", "2015-10-16 22:01:22", "50.179.185.148", "121");
INSERT INTO `wp_rg_form_view` VALUES("19497", "8", "2015-10-16 22:01:22", "50.179.185.148", "15");
INSERT INTO `wp_rg_form_view` VALUES("19498", "9", "2015-10-16 23:01:13", "202.46.51.154", "33");
INSERT INTO `wp_rg_form_view` VALUES("19499", "3", "2015-10-16 23:01:13", "202.46.51.154", "271");
INSERT INTO `wp_rg_form_view` VALUES("19500", "8", "2015-10-16 23:01:14", "202.46.51.154", "34");
INSERT INTO `wp_rg_form_view` VALUES("19501", "5", "2015-10-16 23:41:36", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("19502", "2", "2015-10-16 23:42:21", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("19503", "9", "2015-10-17 00:00:13", "96.54.180.34", "14");
INSERT INTO `wp_rg_form_view` VALUES("19504", "3", "2015-10-17 00:00:13", "96.54.180.34", "122");
INSERT INTO `wp_rg_form_view` VALUES("19505", "8", "2015-10-17 00:00:13", "96.54.180.34", "14");
INSERT INTO `wp_rg_form_view` VALUES("19506", "1", "2015-10-17 00:15:07", "50.179.185.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("19507", "9", "2015-10-17 01:01:30", "24.68.53.23", "10");
INSERT INTO `wp_rg_form_view` VALUES("19508", "3", "2015-10-17 01:01:31", "24.68.53.23", "75");
INSERT INTO `wp_rg_form_view` VALUES("19509", "8", "2015-10-17 01:01:31", "24.68.53.23", "10");
INSERT INTO `wp_rg_form_view` VALUES("19510", "9", "2015-10-17 02:08:32", "202.46.55.136", "15");
INSERT INTO `wp_rg_form_view` VALUES("19511", "3", "2015-10-17 02:08:32", "202.46.55.136", "132");
INSERT INTO `wp_rg_form_view` VALUES("19512", "8", "2015-10-17 02:08:32", "202.46.55.136", "17");
INSERT INTO `wp_rg_form_view` VALUES("19513", "3", "2015-10-17 03:07:04", "202.46.53.16", "72");
INSERT INTO `wp_rg_form_view` VALUES("19514", "8", "2015-10-17 03:07:04", "202.46.53.16", "9");
INSERT INTO `wp_rg_form_view` VALUES("19515", "9", "2015-10-17 03:07:05", "202.46.53.16", "9");
INSERT INTO `wp_rg_form_view` VALUES("19516", "3", "2015-10-17 04:05:36", "202.46.57.208", "191");
INSERT INTO `wp_rg_form_view` VALUES("19517", "8", "2015-10-17 04:05:36", "202.46.57.208", "23");
INSERT INTO `wp_rg_form_view` VALUES("19518", "9", "2015-10-17 04:05:37", "202.46.57.208", "21");
INSERT INTO `wp_rg_form_view` VALUES("19519", "1", "2015-10-17 04:36:30", "45.62.61.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("19520", "9", "2015-10-17 05:00:08", "24.108.100.128", "23");
INSERT INTO `wp_rg_form_view` VALUES("19521", "3", "2015-10-17 05:00:08", "24.108.100.128", "173");
INSERT INTO `wp_rg_form_view` VALUES("19522", "8", "2015-10-17 05:00:08", "24.108.100.128", "21");
INSERT INTO `wp_rg_form_view` VALUES("19523", "1", "2015-10-17 05:19:26", "107.173.246.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("19524", "3", "2015-10-17 06:02:42", "202.46.57.202", "95");
INSERT INTO `wp_rg_form_view` VALUES("19525", "8", "2015-10-17 06:02:42", "202.46.57.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("19526", "9", "2015-10-17 06:02:43", "202.46.57.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("19527", "9", "2015-10-17 07:01:14", "202.46.56.69", "28");
INSERT INTO `wp_rg_form_view` VALUES("19528", "3", "2015-10-17 07:01:14", "202.46.56.69", "242");
INSERT INTO `wp_rg_form_view` VALUES("19529", "8", "2015-10-17 07:01:14", "202.46.56.69", "30");
INSERT INTO `wp_rg_form_view` VALUES("19530", "1", "2015-10-17 07:06:38", "50.179.185.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("19531", "3", "2015-10-17 08:11:28", "202.46.51.108", "91");
INSERT INTO `wp_rg_form_view` VALUES("19532", "8", "2015-10-17 08:11:28", "202.46.51.108", "11");
INSERT INTO `wp_rg_form_view` VALUES("19533", "9", "2015-10-17 08:11:30", "202.46.51.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("19534", "9", "2015-10-17 09:01:32", "157.55.39.247", "11");
INSERT INTO `wp_rg_form_view` VALUES("19535", "3", "2015-10-17 09:01:32", "157.55.39.247", "95");
INSERT INTO `wp_rg_form_view` VALUES("19536", "8", "2015-10-17 09:01:33", "157.55.39.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("19537", "3", "2015-10-17 10:08:32", "202.46.57.198", "60");
INSERT INTO `wp_rg_form_view` VALUES("19538", "9", "2015-10-17 10:08:32", "202.46.57.198", "6");
INSERT INTO `wp_rg_form_view` VALUES("19539", "8", "2015-10-17 10:08:32", "202.46.57.198", "7");
INSERT INTO `wp_rg_form_view` VALUES("19540", "9", "2015-10-17 11:07:04", "202.46.58.167", "8");
INSERT INTO `wp_rg_form_view` VALUES("19541", "3", "2015-10-17 11:07:04", "202.46.58.167", "64");
INSERT INTO `wp_rg_form_view` VALUES("19542", "8", "2015-10-17 11:07:04", "202.46.58.167", "9");
INSERT INTO `wp_rg_form_view` VALUES("19543", "3", "2015-10-17 12:05:36", "202.46.51.131", "72");
INSERT INTO `wp_rg_form_view` VALUES("19544", "9", "2015-10-17 12:05:36", "202.46.51.131", "8");
INSERT INTO `wp_rg_form_view` VALUES("19545", "8", "2015-10-17 12:05:37", "202.46.51.131", "11");
INSERT INTO `wp_rg_form_view` VALUES("19546", "3", "2015-10-17 13:04:08", "202.46.57.166", "159");
INSERT INTO `wp_rg_form_view` VALUES("19547", "9", "2015-10-17 13:04:08", "202.46.57.166", "20");
INSERT INTO `wp_rg_form_view` VALUES("19548", "8", "2015-10-17 13:04:09", "202.46.57.166", "20");
INSERT INTO `wp_rg_form_view` VALUES("19549", "1", "2015-10-17 13:58:20", "105.154.176.230", "3");
INSERT INTO `wp_rg_form_view` VALUES("19550", "9", "2015-10-17 14:02:40", "202.46.52.17", "11");
INSERT INTO `wp_rg_form_view` VALUES("19551", "3", "2015-10-17 14:02:40", "202.46.52.17", "84");
INSERT INTO `wp_rg_form_view` VALUES("19552", "8", "2015-10-17 14:02:41", "202.46.52.17", "11");
INSERT INTO `wp_rg_form_view` VALUES("19553", "3", "2015-10-17 15:01:12", "202.46.51.39", "109");
INSERT INTO `wp_rg_form_view` VALUES("19554", "8", "2015-10-17 15:01:13", "202.46.51.39", "14");
INSERT INTO `wp_rg_form_view` VALUES("19555", "9", "2015-10-17 15:01:13", "202.46.51.39", "11");
INSERT INTO `wp_rg_form_view` VALUES("19556", "3", "2015-10-17 16:11:27", "202.46.50.89", "121");
INSERT INTO `wp_rg_form_view` VALUES("19557", "8", "2015-10-17 16:11:27", "202.46.50.89", "15");
INSERT INTO `wp_rg_form_view` VALUES("19558", "9", "2015-10-17 16:11:28", "202.46.50.89", "14");
INSERT INTO `wp_rg_form_view` VALUES("19559", "1", "2015-10-17 16:41:27", "118.184.4.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("19560", "9", "2015-10-17 17:09:59", "202.46.53.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("19561", "3", "2015-10-17 17:10:00", "202.46.53.148", "95");
INSERT INTO `wp_rg_form_view` VALUES("19562", "8", "2015-10-17 17:10:00", "202.46.53.148", "13");
INSERT INTO `wp_rg_form_view` VALUES("19563", "3", "2015-10-17 18:08:31", "202.46.58.186", "62");
INSERT INTO `wp_rg_form_view` VALUES("19564", "9", "2015-10-17 18:08:32", "202.46.58.186", "6");
INSERT INTO `wp_rg_form_view` VALUES("19565", "8", "2015-10-17 18:08:33", "202.46.58.186", "6");
INSERT INTO `wp_rg_form_view` VALUES("19566", "3", "2015-10-17 19:07:04", "202.46.58.151", "66");
INSERT INTO `wp_rg_form_view` VALUES("19567", "9", "2015-10-17 19:07:05", "202.46.58.151", "9");
INSERT INTO `wp_rg_form_view` VALUES("19568", "8", "2015-10-17 19:07:05", "202.46.58.151", "7");
INSERT INTO `wp_rg_form_view` VALUES("19569", "3", "2015-10-17 20:05:36", "202.46.50.133", "82");
INSERT INTO `wp_rg_form_view` VALUES("19570", "8", "2015-10-17 20:05:36", "202.46.50.133", "10");
INSERT INTO `wp_rg_form_view` VALUES("19571", "9", "2015-10-17 20:05:37", "202.46.50.133", "10");
INSERT INTO `wp_rg_form_view` VALUES("19572", "3", "2015-10-17 21:04:08", "202.46.48.124", "98");
INSERT INTO `wp_rg_form_view` VALUES("19573", "9", "2015-10-17 21:04:08", "202.46.48.124", "11");
INSERT INTO `wp_rg_form_view` VALUES("19574", "8", "2015-10-17 21:04:09", "202.46.48.124", "12");
INSERT INTO `wp_rg_form_view` VALUES("19575", "9", "2015-10-17 22:02:40", "202.46.51.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("19576", "3", "2015-10-17 22:02:40", "202.46.51.162", "64");
INSERT INTO `wp_rg_form_view` VALUES("19577", "8", "2015-10-17 22:02:41", "202.46.51.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("19578", "3", "2015-10-17 23:01:12", "202.46.51.107", "67");
INSERT INTO `wp_rg_form_view` VALUES("19579", "9", "2015-10-17 23:01:13", "202.46.51.107", "6");
INSERT INTO `wp_rg_form_view` VALUES("19580", "8", "2015-10-17 23:01:13", "202.46.51.107", "10");
INSERT INTO `wp_rg_form_view` VALUES("19581", "9", "2015-10-18 00:11:28", "202.46.48.26", "10");
INSERT INTO `wp_rg_form_view` VALUES("19582", "3", "2015-10-18 00:11:28", "202.46.48.26", "84");
INSERT INTO `wp_rg_form_view` VALUES("19583", "8", "2015-10-18 00:11:28", "202.46.48.26", "10");
INSERT INTO `wp_rg_form_view` VALUES("19584", "9", "2015-10-18 01:03:02", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("19585", "3", "2015-10-18 01:03:02", "68.180.229.161", "49");
INSERT INTO `wp_rg_form_view` VALUES("19586", "8", "2015-10-18 01:03:02", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("19587", "3", "2015-10-18 02:08:31", "202.46.56.66", "69");
INSERT INTO `wp_rg_form_view` VALUES("19588", "9", "2015-10-18 02:08:32", "202.46.56.66", "6");
INSERT INTO `wp_rg_form_view` VALUES("19589", "8", "2015-10-18 02:08:32", "202.46.56.66", "9");
INSERT INTO `wp_rg_form_view` VALUES("19590", "3", "2015-10-18 03:07:03", "202.46.53.11", "66");
INSERT INTO `wp_rg_form_view` VALUES("19591", "9", "2015-10-18 03:07:04", "202.46.53.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("19592", "8", "2015-10-18 03:07:04", "202.46.53.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("19593", "9", "2015-10-18 04:05:36", "202.46.52.203", "6");
INSERT INTO `wp_rg_form_view` VALUES("19594", "3", "2015-10-18 04:05:36", "202.46.52.203", "59");
INSERT INTO `wp_rg_form_view` VALUES("19595", "8", "2015-10-18 04:05:37", "202.46.52.203", "7");
INSERT INTO `wp_rg_form_view` VALUES("19596", "3", "2015-10-18 05:04:08", "202.46.54.207", "128");
INSERT INTO `wp_rg_form_view` VALUES("19597", "8", "2015-10-18 05:04:08", "202.46.54.207", "14");
INSERT INTO `wp_rg_form_view` VALUES("19598", "9", "2015-10-18 05:27:33", "202.46.56.205", "3");
INSERT INTO `wp_rg_form_view` VALUES("19599", "3", "2015-10-18 06:00:07", "157.55.39.110", "372");
INSERT INTO `wp_rg_form_view` VALUES("19600", "8", "2015-10-18 06:00:07", "157.55.39.110", "42");
INSERT INTO `wp_rg_form_view` VALUES("19601", "1", "2015-10-18 06:24:42", "95.141.43.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("19602", "2", "2015-10-18 06:24:50", "95.141.43.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("19603", "3", "2015-10-18 07:01:12", "202.46.53.55", "65");
INSERT INTO `wp_rg_form_view` VALUES("19604", "8", "2015-10-18 07:01:13", "202.46.53.55", "7");
INSERT INTO `wp_rg_form_view` VALUES("19605", "3", "2015-10-18 08:11:27", "202.46.52.61", "132");
INSERT INTO `wp_rg_form_view` VALUES("19606", "8", "2015-10-18 08:11:28", "202.46.52.61", "14");
INSERT INTO `wp_rg_form_view` VALUES("19607", "1", "2015-10-18 08:24:47", "118.184.4.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("19608", "3", "2015-10-18 09:03:23", "66.249.74.56", "116");
INSERT INTO `wp_rg_form_view` VALUES("19609", "8", "2015-10-18 09:03:23", "66.249.74.56", "13");
INSERT INTO `wp_rg_form_view` VALUES("19610", "3", "2015-10-18 10:08:31", "202.46.55.83", "169");
INSERT INTO `wp_rg_form_view` VALUES("19611", "8", "2015-10-18 10:08:32", "202.46.55.83", "18");
INSERT INTO `wp_rg_form_view` VALUES("19612", "9", "2015-10-18 10:43:39", "202.46.58.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("19613", "3", "2015-10-18 11:07:04", "202.46.49.111", "53");
INSERT INTO `wp_rg_form_view` VALUES("19614", "8", "2015-10-18 11:07:04", "202.46.49.111", "6");
INSERT INTO `wp_rg_form_view` VALUES("19615", "3", "2015-10-18 12:05:35", "202.46.52.144", "448");
INSERT INTO `wp_rg_form_view` VALUES("19616", "8", "2015-10-18 12:05:35", "202.46.52.144", "53");
INSERT INTO `wp_rg_form_view` VALUES("19617", "9", "2015-10-18 12:12:37", "157.55.39.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("19618", "7", "2015-10-18 12:14:56", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("19619", "3", "2015-10-18 13:04:09", "202.46.57.207", "63");
INSERT INTO `wp_rg_form_view` VALUES("19620", "8", "2015-10-18 13:04:09", "202.46.57.207", "7");
INSERT INTO `wp_rg_form_view` VALUES("19621", "9", "2015-10-18 13:39:16", "202.46.50.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("19622", "3", "2015-10-18 14:02:40", "202.46.53.123", "102");
INSERT INTO `wp_rg_form_view` VALUES("19623", "8", "2015-10-18 14:02:40", "202.46.53.123", "12");
INSERT INTO `wp_rg_form_view` VALUES("19624", "3", "2015-10-18 15:00:22", "68.180.229.161", "183");
INSERT INTO `wp_rg_form_view` VALUES("19625", "8", "2015-10-18 15:00:22", "68.180.229.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("19626", "3", "2015-10-18 16:11:26", "202.46.48.202", "144");
INSERT INTO `wp_rg_form_view` VALUES("19627", "8", "2015-10-18 16:11:27", "202.46.48.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("19628", "8", "2015-10-18 17:09:59", "202.46.54.117", "11");
INSERT INTO `wp_rg_form_view` VALUES("19629", "3", "2015-10-18 17:09:59", "202.46.54.117", "83");
INSERT INTO `wp_rg_form_view` VALUES("19630", "3", "2015-10-18 18:08:31", "202.46.48.80", "80");
INSERT INTO `wp_rg_form_view` VALUES("19631", "8", "2015-10-18 18:08:32", "202.46.48.80", "9");
INSERT INTO `wp_rg_form_view` VALUES("19632", "7", "2015-10-18 18:35:18", "179.60.149.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("19633", "9", "2015-10-18 19:07:05", "202.46.58.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("19634", "3", "2015-10-18 19:07:05", "202.46.58.84", "113");
INSERT INTO `wp_rg_form_view` VALUES("19635", "8", "2015-10-18 19:07:06", "202.46.58.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("19636", "3", "2015-10-18 20:05:35", "202.46.54.192", "159");
INSERT INTO `wp_rg_form_view` VALUES("19637", "8", "2015-10-18 20:05:36", "202.46.54.192", "20");
INSERT INTO `wp_rg_form_view` VALUES("19638", "1", "2015-10-18 20:05:54", "107.173.209.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("19639", "3", "2015-10-18 21:04:07", "202.46.49.116", "59");
INSERT INTO `wp_rg_form_view` VALUES("19640", "8", "2015-10-18 21:04:07", "202.46.49.116", "7");
INSERT INTO `wp_rg_form_view` VALUES("19641", "3", "2015-10-18 22:03:05", "202.46.49.157", "117");
INSERT INTO `wp_rg_form_view` VALUES("19642", "8", "2015-10-18 22:03:12", "202.46.49.157", "14");
INSERT INTO `wp_rg_form_view` VALUES("19643", "3", "2015-10-18 23:01:12", "202.46.49.146", "104");
INSERT INTO `wp_rg_form_view` VALUES("19644", "8", "2015-10-18 23:01:13", "202.46.49.146", "12");
INSERT INTO `wp_rg_form_view` VALUES("19645", "2", "2015-10-18 23:21:00", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("19646", "3", "2015-10-19 00:08:05", "68.180.229.161", "164");
INSERT INTO `wp_rg_form_view` VALUES("19647", "8", "2015-10-19 00:08:05", "68.180.229.161", "19");
INSERT INTO `wp_rg_form_view` VALUES("19648", "9", "2015-10-19 00:23:09", "202.46.53.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("19649", "3", "2015-10-19 01:01:04", "205.250.215.23", "119");
INSERT INTO `wp_rg_form_view` VALUES("19650", "8", "2015-10-19 01:01:04", "205.250.215.23", "13");
INSERT INTO `wp_rg_form_view` VALUES("19651", "1", "2015-10-19 01:25:32", "83.143.242.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("19652", "3", "2015-10-19 02:08:31", "202.46.55.156", "54");
INSERT INTO `wp_rg_form_view` VALUES("19653", "8", "2015-10-19 02:08:31", "202.46.55.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("19654", "8", "2015-10-19 03:02:24", "202.46.56.135", "12");
INSERT INTO `wp_rg_form_view` VALUES("19655", "3", "2015-10-19 03:02:24", "202.46.56.135", "91");
INSERT INTO `wp_rg_form_view` VALUES("19656", "1", "2015-10-19 03:43:00", "199.96.83.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("19657", "3", "2015-10-19 04:00:56", "202.46.50.151", "194");
INSERT INTO `wp_rg_form_view` VALUES("19658", "8", "2015-10-19 04:00:56", "202.46.50.151", "23");
INSERT INTO `wp_rg_form_view` VALUES("19659", "3", "2015-10-19 05:11:10", "202.46.48.206", "135");
INSERT INTO `wp_rg_form_view` VALUES("19660", "8", "2015-10-19 05:11:10", "202.46.48.206", "17");
INSERT INTO `wp_rg_form_view` VALUES("19661", "9", "2015-10-19 06:09:42", "202.46.58.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("19662", "3", "2015-10-19 06:09:42", "202.46.58.159", "81");
INSERT INTO `wp_rg_form_view` VALUES("19663", "8", "2015-10-19 06:09:43", "202.46.58.159", "9");
INSERT INTO `wp_rg_form_view` VALUES("19664", "3", "2015-10-19 07:08:15", "202.46.57.21", "105");
INSERT INTO `wp_rg_form_view` VALUES("19665", "8", "2015-10-19 07:08:15", "202.46.57.21", "12");
INSERT INTO `wp_rg_form_view` VALUES("19666", "3", "2015-10-19 08:06:48", "202.46.58.53", "132");
INSERT INTO `wp_rg_form_view` VALUES("19667", "8", "2015-10-19 08:06:48", "202.46.58.53", "15");
INSERT INTO `wp_rg_form_view` VALUES("19668", "9", "2015-10-19 08:15:23", "66.249.74.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("19669", "3", "2015-10-19 09:03:55", "104.200.154.38", "73");
INSERT INTO `wp_rg_form_view` VALUES("19670", "8", "2015-10-19 09:03:56", "104.200.154.38", "8");
INSERT INTO `wp_rg_form_view` VALUES("19671", "9", "2015-10-19 09:28:44", "202.46.50.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("19672", "3", "2015-10-19 10:03:51", "202.46.55.144", "93");
INSERT INTO `wp_rg_form_view` VALUES("19673", "8", "2015-10-19 10:03:51", "202.46.55.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("19674", "9", "2015-10-19 10:32:54", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("19675", "3", "2015-10-19 11:02:24", "202.46.54.28", "89");
INSERT INTO `wp_rg_form_view` VALUES("19676", "8", "2015-10-19 11:02:24", "202.46.54.28", "10");
INSERT INTO `wp_rg_form_view` VALUES("19677", "1", "2015-10-19 11:43:17", "221.237.16.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("19678", "3", "2015-10-19 12:00:55", "202.46.54.136", "96");
INSERT INTO `wp_rg_form_view` VALUES("19679", "8", "2015-10-19 12:00:56", "202.46.54.136", "10");
INSERT INTO `wp_rg_form_view` VALUES("19680", "3", "2015-10-19 13:11:10", "202.46.51.109", "170");
INSERT INTO `wp_rg_form_view` VALUES("19681", "8", "2015-10-19 13:11:11", "202.46.51.109", "21");
INSERT INTO `wp_rg_form_view` VALUES("19682", "7", "2015-10-19 13:28:53", "66.249.74.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("19683", "1", "2015-10-19 13:31:29", "31.14.135.85", "3");
INSERT INTO `wp_rg_form_view` VALUES("19684", "9", "2015-10-19 13:34:35", "202.46.48.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("19685", "3", "2015-10-19 14:09:43", "202.46.53.176", "77");
INSERT INTO `wp_rg_form_view` VALUES("19686", "8", "2015-10-19 14:09:43", "202.46.53.176", "9");
INSERT INTO `wp_rg_form_view` VALUES("19687", "3", "2015-10-19 15:08:15", "202.46.52.153", "63");
INSERT INTO `wp_rg_form_view` VALUES("19688", "8", "2015-10-19 15:08:15", "202.46.52.153", "7");
INSERT INTO `wp_rg_form_view` VALUES("19689", "8", "2015-10-19 16:05:47", "64.180.188.116", "23");
INSERT INTO `wp_rg_form_view` VALUES("19690", "3", "2015-10-19 16:05:47", "64.180.188.116", "188");
INSERT INTO `wp_rg_form_view` VALUES("19691", "6", "2015-10-19 16:17:50", "188.40.112.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("19692", "3", "2015-10-19 17:04:09", "66.249.74.54", "194");
INSERT INTO `wp_rg_form_view` VALUES("19693", "8", "2015-10-19 17:04:10", "66.249.74.54", "25");
INSERT INTO `wp_rg_form_view` VALUES("19694", "3", "2015-10-19 18:03:53", "202.46.52.106", "109");
INSERT INTO `wp_rg_form_view` VALUES("19695", "8", "2015-10-19 18:03:54", "202.46.52.106", "12");
INSERT INTO `wp_rg_form_view` VALUES("19696", "9", "2015-10-19 18:15:33", "202.46.50.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("19697", "3", "2015-10-19 19:02:23", "202.46.57.120", "94");
INSERT INTO `wp_rg_form_view` VALUES("19698", "8", "2015-10-19 19:02:24", "202.46.57.120", "10");
INSERT INTO `wp_rg_form_view` VALUES("19699", "3", "2015-10-19 20:00:58", "202.46.48.142", "97");
INSERT INTO `wp_rg_form_view` VALUES("19700", "8", "2015-10-19 20:00:58", "202.46.48.142", "11");
INSERT INTO `wp_rg_form_view` VALUES("19701", "3", "2015-10-19 21:11:10", "202.46.51.193", "572");
INSERT INTO `wp_rg_form_view` VALUES("19702", "8", "2015-10-19 21:11:11", "202.46.51.193", "63");
INSERT INTO `wp_rg_form_view` VALUES("19703", "1", "2015-10-19 21:14:08", "59.148.248.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("19704", "2", "2015-10-19 21:14:17", "59.148.248.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("19705", "3", "2015-10-19 22:09:27", "157.55.39.95", "136");
INSERT INTO `wp_rg_form_view` VALUES("19706", "8", "2015-10-19 22:09:27", "157.55.39.95", "17");
INSERT INTO `wp_rg_form_view` VALUES("19707", "3", "2015-10-19 23:03:49", "24.87.30.162", "100");
INSERT INTO `wp_rg_form_view` VALUES("19708", "8", "2015-10-19 23:03:50", "24.87.30.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("19709", "1", "2015-10-19 23:49:06", "69.12.75.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("19710", "3", "2015-10-20 00:06:38", "46.118.115.132", "82");
INSERT INTO `wp_rg_form_view` VALUES("19711", "8", "2015-10-20 00:06:38", "46.118.115.132", "10");
INSERT INTO `wp_rg_form_view` VALUES("19712", "3", "2015-10-20 01:05:19", "202.46.53.46", "83");
INSERT INTO `wp_rg_form_view` VALUES("19713", "8", "2015-10-20 01:05:19", "202.46.53.46", "9");
INSERT INTO `wp_rg_form_view` VALUES("19714", "9", "2015-10-20 02:03:51", "202.46.52.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("19715", "3", "2015-10-20 02:03:51", "202.46.52.102", "164");
INSERT INTO `wp_rg_form_view` VALUES("19716", "8", "2015-10-20 02:03:52", "202.46.52.102", "18");
INSERT INTO `wp_rg_form_view` VALUES("19717", "3", "2015-10-20 03:02:23", "202.46.49.135", "69");
INSERT INTO `wp_rg_form_view` VALUES("19718", "8", "2015-10-20 03:02:23", "202.46.49.135", "8");
INSERT INTO `wp_rg_form_view` VALUES("19719", "3", "2015-10-20 04:00:56", "202.46.48.96", "105");
INSERT INTO `wp_rg_form_view` VALUES("19720", "8", "2015-10-20 04:00:56", "202.46.48.96", "12");
INSERT INTO `wp_rg_form_view` VALUES("19721", "3", "2015-10-20 05:11:10", "202.46.48.88", "122");
INSERT INTO `wp_rg_form_view` VALUES("19722", "8", "2015-10-20 05:11:10", "202.46.48.88", "13");
INSERT INTO `wp_rg_form_view` VALUES("19723", "3", "2015-10-20 06:08:32", "91.200.12.7", "425");
INSERT INTO `wp_rg_form_view` VALUES("19724", "8", "2015-10-20 06:08:32", "91.200.12.7", "47");
INSERT INTO `wp_rg_form_view` VALUES("19725", "3", "2015-10-20 07:08:15", "202.46.57.120", "46");
INSERT INTO `wp_rg_form_view` VALUES("19726", "8", "2015-10-20 07:08:15", "202.46.57.120", "5");
INSERT INTO `wp_rg_form_view` VALUES("19727", "9", "2015-10-20 07:43:22", "202.46.58.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("19728", "3", "2015-10-20 08:06:46", "202.46.53.16", "93");
INSERT INTO `wp_rg_form_view` VALUES("19729", "8", "2015-10-20 08:06:46", "202.46.53.16", "10");
INSERT INTO `wp_rg_form_view` VALUES("19730", "3", "2015-10-20 09:05:20", "202.46.54.138", "192");
INSERT INTO `wp_rg_form_view` VALUES("19731", "8", "2015-10-20 09:05:20", "202.46.54.138", "20");
INSERT INTO `wp_rg_form_view` VALUES("19732", "3", "2015-10-20 10:03:51", "202.46.54.189", "49");
INSERT INTO `wp_rg_form_view` VALUES("19733", "8", "2015-10-20 10:03:51", "202.46.54.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("19734", "9", "2015-10-20 10:27:16", "202.46.58.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("19735", "3", "2015-10-20 11:02:23", "202.46.53.110", "76");
INSERT INTO `wp_rg_form_view` VALUES("19736", "8", "2015-10-20 11:02:23", "202.46.53.110", "8");
INSERT INTO `wp_rg_form_view` VALUES("19737", "9", "2015-10-20 11:49:13", "202.46.50.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("19738", "3", "2015-10-20 12:00:55", "202.46.53.59", "123");
INSERT INTO `wp_rg_form_view` VALUES("19739", "8", "2015-10-20 12:00:56", "202.46.53.59", "14");
INSERT INTO `wp_rg_form_view` VALUES("19740", "1", "2015-10-20 12:56:33", "24.108.66.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("19741", "3", "2015-10-20 13:01:22", "24.108.66.171", "402");
INSERT INTO `wp_rg_form_view` VALUES("19742", "8", "2015-10-20 13:01:23", "24.108.66.171", "45");
INSERT INTO `wp_rg_form_view` VALUES("19743", "1", "2015-10-20 13:11:28", "195.145.136.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("19744", "2", "2015-10-20 13:11:36", "195.145.136.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("19745", "3", "2015-10-20 14:09:42", "202.46.57.11", "71");
INSERT INTO `wp_rg_form_view` VALUES("19746", "8", "2015-10-20 14:09:42", "202.46.57.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("19747", "1", "2015-10-20 14:31:06", "192.161.185.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("19748", "3", "2015-10-20 15:04:17", "68.180.229.161", "381");
INSERT INTO `wp_rg_form_view` VALUES("19749", "8", "2015-10-20 15:04:17", "68.180.229.161", "42");
INSERT INTO `wp_rg_form_view` VALUES("19750", "1", "2015-10-20 15:34:28", "12.193.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("19751", "2", "2015-10-20 15:34:48", "64.193.125.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("19752", "3", "2015-10-20 16:06:49", "202.46.49.206", "184");
INSERT INTO `wp_rg_form_view` VALUES("19753", "8", "2015-10-20 16:06:49", "202.46.49.206", "21");
INSERT INTO `wp_rg_form_view` VALUES("19754", "1", "2015-10-20 16:30:26", "96.44.183.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("19755", "3", "2015-10-20 17:00:16", "184.71.12.218", "152");
INSERT INTO `wp_rg_form_view` VALUES("19756", "8", "2015-10-20 17:00:17", "184.71.12.218", "18");
INSERT INTO `wp_rg_form_view` VALUES("19757", "3", "2015-10-20 18:00:59", "202.46.55.88", "155");
INSERT INTO `wp_rg_form_view` VALUES("19758", "8", "2015-10-20 18:00:59", "202.46.55.88", "17");
INSERT INTO `wp_rg_form_view` VALUES("19759", "1", "2015-10-20 18:11:24", "119.122.247.208", "4");
INSERT INTO `wp_rg_form_view` VALUES("19760", "3", "2015-10-20 19:04:26", "144.76.71.83", "171");
INSERT INTO `wp_rg_form_view` VALUES("19761", "8", "2015-10-20 19:04:27", "144.76.71.83", "20");
INSERT INTO `wp_rg_form_view` VALUES("19762", "1", "2015-10-20 19:10:58", "50.67.174.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("19763", "9", "2015-10-20 19:11:13", "202.46.51.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("19764", "3", "2015-10-20 20:09:45", "202.46.50.134", "81");
INSERT INTO `wp_rg_form_view` VALUES("19765", "8", "2015-10-20 20:09:45", "202.46.50.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("19766", "3", "2015-10-20 21:08:17", "202.46.58.130", "73");
INSERT INTO `wp_rg_form_view` VALUES("19767", "8", "2015-10-20 21:08:17", "202.46.58.130", "8");
INSERT INTO `wp_rg_form_view` VALUES("19768", "3", "2015-10-20 22:06:49", "202.46.51.105", "89");
INSERT INTO `wp_rg_form_view` VALUES("19769", "8", "2015-10-20 22:06:50", "202.46.51.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("19770", "3", "2015-10-20 23:05:23", "202.46.49.79", "90");
INSERT INTO `wp_rg_form_view` VALUES("19771", "8", "2015-10-20 23:05:23", "202.46.49.79", "10");
INSERT INTO `wp_rg_form_view` VALUES("19772", "3", "2015-10-21 00:00:53", "46.246.40.148", "130");
INSERT INTO `wp_rg_form_view` VALUES("19773", "8", "2015-10-21 00:00:53", "46.246.40.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("19774", "3", "2015-10-21 01:02:26", "202.46.55.19", "116");
INSERT INTO `wp_rg_form_view` VALUES("19775", "8", "2015-10-21 01:02:26", "202.46.55.19", "16");
INSERT INTO `wp_rg_form_view` VALUES("19776", "9", "2015-10-21 01:25:50", "202.46.51.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("19777", "8", "2015-10-21 02:00:57", "202.46.55.38", "7");
INSERT INTO `wp_rg_form_view` VALUES("19778", "3", "2015-10-21 02:00:58", "202.46.55.38", "58");
INSERT INTO `wp_rg_form_view` VALUES("19779", "3", "2015-10-21 03:11:12", "202.46.51.33", "80");
INSERT INTO `wp_rg_form_view` VALUES("19780", "8", "2015-10-21 03:11:12", "202.46.51.33", "9");
INSERT INTO `wp_rg_form_view` VALUES("19781", "9", "2015-10-21 03:23:01", "202.46.52.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("19782", "3", "2015-10-21 04:02:28", "70.35.195.82", "375");
INSERT INTO `wp_rg_form_view` VALUES("19783", "8", "2015-10-21 04:02:28", "70.35.195.82", "43");
INSERT INTO `wp_rg_form_view` VALUES("19784", "1", "2015-10-21 04:03:08", "70.35.195.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("19785", "2", "2015-10-21 04:03:15", "70.35.195.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("19786", "3", "2015-10-21 05:00:52", "188.40.112.210", "88");
INSERT INTO `wp_rg_form_view` VALUES("19787", "8", "2015-10-21 05:00:52", "188.40.112.210", "10");
INSERT INTO `wp_rg_form_view` VALUES("19788", "9", "2015-10-21 05:35:31", "157.55.39.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("19789", "3", "2015-10-21 06:04:34", "24.108.77.182", "86");
INSERT INTO `wp_rg_form_view` VALUES("19790", "8", "2015-10-21 06:04:34", "24.108.77.182", "9");
INSERT INTO `wp_rg_form_view` VALUES("19791", "9", "2015-10-21 06:18:31", "202.46.54.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("19792", "3", "2015-10-21 07:05:21", "202.46.53.178", "110");
INSERT INTO `wp_rg_form_view` VALUES("19793", "8", "2015-10-21 07:05:21", "202.46.53.178", "12");
INSERT INTO `wp_rg_form_view` VALUES("19794", "3", "2015-10-21 08:03:54", "202.46.54.187", "78");
INSERT INTO `wp_rg_form_view` VALUES("19795", "8", "2015-10-21 08:03:55", "202.46.54.187", "8");
INSERT INTO `wp_rg_form_view` VALUES("19796", "3", "2015-10-21 09:02:27", "202.46.49.68", "117");
INSERT INTO `wp_rg_form_view` VALUES("19797", "8", "2015-10-21 09:02:27", "202.46.49.68", "12");
INSERT INTO `wp_rg_form_view` VALUES("19798", "2", "2015-10-21 10:00:02", "157.55.39.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("19799", "3", "2015-10-21 10:00:02", "157.55.39.171", "90");
INSERT INTO `wp_rg_form_view` VALUES("19800", "8", "2015-10-21 10:00:02", "157.55.39.171", "10");
INSERT INTO `wp_rg_form_view` VALUES("19801", "3", "2015-10-21 11:11:13", "202.46.52.65", "80");
INSERT INTO `wp_rg_form_view` VALUES("19802", "8", "2015-10-21 11:11:13", "202.46.52.65", "9");
INSERT INTO `wp_rg_form_view` VALUES("19803", "3", "2015-10-21 12:07:12", "157.55.39.172", "107");
INSERT INTO `wp_rg_form_view` VALUES("19804", "8", "2015-10-21 12:07:12", "157.55.39.172", "12");
INSERT INTO `wp_rg_form_view` VALUES("19805", "8", "2015-10-21 13:08:14", "68.180.229.161", "29");
INSERT INTO `wp_rg_form_view` VALUES("19806", "3", "2015-10-21 13:08:16", "202.46.54.32", "256");
INSERT INTO `wp_rg_form_view` VALUES("19807", "1", "2015-10-21 13:32:59", "157.55.39.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("19808", "3", "2015-10-21 14:06:50", "202.46.57.29", "99");
INSERT INTO `wp_rg_form_view` VALUES("19809", "8", "2015-10-21 14:06:50", "202.46.57.29", "11");
INSERT INTO `wp_rg_form_view` VALUES("19810", "9", "2015-10-21 14:41:56", "202.46.54.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("19811", "1", "2015-10-21 14:48:56", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("19812", "3", "2015-10-21 15:01:21", "89.233.254.65", "85");
INSERT INTO `wp_rg_form_view` VALUES("19813", "8", "2015-10-21 15:01:21", "89.233.254.65", "10");
INSERT INTO `wp_rg_form_view` VALUES("19814", "3", "2015-10-21 16:03:53", "202.46.57.206", "123");
INSERT INTO `wp_rg_form_view` VALUES("19815", "8", "2015-10-21 16:03:53", "202.46.57.206", "13");
INSERT INTO `wp_rg_form_view` VALUES("19816", "3", "2015-10-21 17:00:59", "94.23.45.37", "100");
INSERT INTO `wp_rg_form_view` VALUES("19817", "8", "2015-10-21 17:00:59", "94.23.45.37", "11");
INSERT INTO `wp_rg_form_view` VALUES("19818", "2", "2015-10-21 17:54:16", "157.55.39.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("19819", "1", "2015-10-21 17:56:58", "157.55.39.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("19820", "1", "2015-10-21 18:35:06", "118.184.4.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("19821", "3", "2015-10-21 18:35:07", "118.184.4.76", "27");
INSERT INTO `wp_rg_form_view` VALUES("19822", "8", "2015-10-21 18:35:08", "118.184.4.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("19823", "3", "2015-10-21 19:18:23", "157.55.39.172", "27");
INSERT INTO `wp_rg_form_view` VALUES("19824", "8", "2015-10-21 19:18:23", "157.55.39.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("19825", "3", "2015-10-21 20:09:02", "206.221.181.195", "54");
INSERT INTO `wp_rg_form_view` VALUES("19826", "8", "2015-10-21 20:09:02", "206.221.181.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("19827", "3", "2015-10-21 21:17:30", "157.55.39.225", "18");
INSERT INTO `wp_rg_form_view` VALUES("19828", "8", "2015-10-21 21:17:30", "157.55.39.225", "2");
INSERT INTO `wp_rg_form_view` VALUES("19829", "3", "2015-10-21 22:35:39", "66.249.74.58", "36");
INSERT INTO `wp_rg_form_view` VALUES("19830", "8", "2015-10-21 22:35:41", "66.249.74.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("19831", "3", "2015-10-21 23:36:02", "66.249.74.58", "22");
INSERT INTO `wp_rg_form_view` VALUES("19832", "8", "2015-10-21 23:46:07", "66.249.74.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("19833", "8", "2015-10-22 00:15:31", "184.66.14.191", "7");
INSERT INTO `wp_rg_form_view` VALUES("19834", "3", "2015-10-22 00:15:31", "184.66.14.191", "54");
INSERT INTO `wp_rg_form_view` VALUES("19835", "1", "2015-10-22 00:48:40", "66.249.74.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("19836", "3", "2015-10-22 01:53:47", "202.46.53.161", "37");
INSERT INTO `wp_rg_form_view` VALUES("19837", "8", "2015-10-22 01:53:54", "202.46.53.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("19838", "3", "2015-10-22 02:05:19", "202.46.52.166", "63");
INSERT INTO `wp_rg_form_view` VALUES("19839", "8", "2015-10-22 02:05:19", "202.46.52.166", "7");
INSERT INTO `wp_rg_form_view` VALUES("19840", "3", "2015-10-22 03:02:23", "66.249.74.56", "128");
INSERT INTO `wp_rg_form_view` VALUES("19841", "8", "2015-10-22 03:02:24", "66.249.74.56", "15");
INSERT INTO `wp_rg_form_view` VALUES("19842", "1", "2015-10-22 03:06:33", "94.242.212.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("19843", "9", "2015-10-22 03:38:59", "202.46.48.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("19844", "3", "2015-10-22 04:00:13", "66.249.74.58", "152");
INSERT INTO `wp_rg_form_view` VALUES("19845", "8", "2015-10-22 04:00:13", "66.249.74.58", "18");
INSERT INTO `wp_rg_form_view` VALUES("19846", "3", "2015-10-22 05:00:56", "202.46.53.207", "114");
INSERT INTO `wp_rg_form_view` VALUES("19847", "8", "2015-10-22 05:00:56", "202.46.53.207", "13");
INSERT INTO `wp_rg_form_view` VALUES("19848", "3", "2015-10-22 06:11:10", "202.46.54.37", "64");
INSERT INTO `wp_rg_form_view` VALUES("19849", "8", "2015-10-22 06:11:11", "202.46.54.37", "7");
INSERT INTO `wp_rg_form_view` VALUES("19850", "3", "2015-10-22 07:09:43", "202.46.51.106", "77");
INSERT INTO `wp_rg_form_view` VALUES("19851", "8", "2015-10-22 07:09:43", "202.46.51.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("19852", "3", "2015-10-22 08:08:15", "202.46.57.73", "124");
INSERT INTO `wp_rg_form_view` VALUES("19853", "8", "2015-10-22 08:08:16", "202.46.57.73", "13");
INSERT INTO `wp_rg_form_view` VALUES("19854", "3", "2015-10-22 09:06:47", "202.46.53.125", "70");
INSERT INTO `wp_rg_form_view` VALUES("19855", "8", "2015-10-22 09:06:48", "202.46.53.125", "9");
INSERT INTO `wp_rg_form_view` VALUES("19856", "3", "2015-10-22 10:00:50", "202.46.58.182", "134");
INSERT INTO `wp_rg_form_view` VALUES("19857", "8", "2015-10-22 10:00:51", "202.46.58.182", "15");
INSERT INTO `wp_rg_form_view` VALUES("19858", "2", "2015-10-22 10:11:14", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("19859", "3", "2015-10-22 11:02:10", "202.46.56.11", "86");
INSERT INTO `wp_rg_form_view` VALUES("19860", "8", "2015-10-22 11:02:10", "202.46.56.11", "10");
INSERT INTO `wp_rg_form_view` VALUES("19861", "3", "2015-10-22 12:00:43", "202.46.50.180", "102");
INSERT INTO `wp_rg_form_view` VALUES("19862", "8", "2015-10-22 12:00:44", "202.46.50.180", "11");
INSERT INTO `wp_rg_form_view` VALUES("19863", "9", "2015-10-22 12:12:24", "202.46.54.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("19864", "1", "2015-10-22 12:13:00", "31.14.135.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("19865", "3", "2015-10-22 13:10:56", "202.46.51.33", "116");
INSERT INTO `wp_rg_form_view` VALUES("19866", "8", "2015-10-22 13:10:57", "202.46.51.33", "14");
INSERT INTO `wp_rg_form_view` VALUES("19867", "1", "2015-10-22 13:15:52", "104.144.14.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("19868", "3", "2015-10-22 14:09:29", "202.46.50.190", "81");
INSERT INTO `wp_rg_form_view` VALUES("19869", "8", "2015-10-22 14:09:29", "202.46.50.190", "9");
INSERT INTO `wp_rg_form_view` VALUES("19870", "3", "2015-10-22 15:08:01", "202.46.50.126", "60");
INSERT INTO `wp_rg_form_view` VALUES("19871", "8", "2015-10-22 15:08:01", "202.46.50.126", "7");
INSERT INTO `wp_rg_form_view` VALUES("19872", "7", "2015-10-22 16:05:04", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("19873", "3", "2015-10-22 16:05:08", "68.180.229.161", "75");
INSERT INTO `wp_rg_form_view` VALUES("19874", "8", "2015-10-22 16:05:08", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("19875", "1", "2015-10-22 16:38:48", "46.240.64.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("19876", "3", "2015-10-22 17:05:08", "202.46.58.136", "110");
INSERT INTO `wp_rg_form_view` VALUES("19877", "8", "2015-10-22 17:05:09", "202.46.58.136", "14");
INSERT INTO `wp_rg_form_view` VALUES("19878", "1", "2015-10-22 17:14:07", "45.62.61.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("19879", "8", "2015-10-22 18:03:38", "202.46.51.108", "11");
INSERT INTO `wp_rg_form_view` VALUES("19880", "3", "2015-10-22 18:03:38", "202.46.51.108", "93");
INSERT INTO `wp_rg_form_view` VALUES("19881", "9", "2015-10-22 18:24:36", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("19882", "3", "2015-10-22 19:02:10", "202.46.51.195", "78");
INSERT INTO `wp_rg_form_view` VALUES("19883", "8", "2015-10-22 19:02:11", "202.46.51.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("19884", "3", "2015-10-22 20:02:29", "66.249.74.58", "110");
INSERT INTO `wp_rg_form_view` VALUES("19885", "8", "2015-10-22 20:02:29", "66.249.74.58", "12");
INSERT INTO `wp_rg_form_view` VALUES("19886", "9", "2015-10-22 20:47:31", "202.46.49.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("19887", "3", "2015-10-22 21:10:57", "202.46.53.114", "127");
INSERT INTO `wp_rg_form_view` VALUES("19888", "8", "2015-10-22 21:10:57", "202.46.53.114", "14");
INSERT INTO `wp_rg_form_view` VALUES("19889", "3", "2015-10-22 22:03:15", "178.137.62.185", "183");
INSERT INTO `wp_rg_form_view` VALUES("19890", "8", "2015-10-22 22:03:15", "178.137.62.185", "22");
INSERT INTO `wp_rg_form_view` VALUES("19891", "1", "2015-10-22 22:38:50", "131.137.245.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("19892", "3", "2015-10-22 23:08:00", "202.46.56.137", "63");
INSERT INTO `wp_rg_form_view` VALUES("19893", "8", "2015-10-22 23:08:01", "202.46.56.137", "6");
INSERT INTO `wp_rg_form_view` VALUES("19894", "3", "2015-10-23 00:00:06", "184.66.128.166", "127");
INSERT INTO `wp_rg_form_view` VALUES("19895", "8", "2015-10-23 00:00:06", "184.66.128.166", "15");
INSERT INTO `wp_rg_form_view` VALUES("19896", "1", "2015-10-23 00:01:48", "184.66.128.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("19897", "3", "2015-10-23 01:05:06", "202.46.58.90", "113");
INSERT INTO `wp_rg_form_view` VALUES("19898", "8", "2015-10-23 01:05:06", "202.46.58.90", "13");
INSERT INTO `wp_rg_form_view` VALUES("19899", "3", "2015-10-23 02:03:37", "202.46.51.163", "63");
INSERT INTO `wp_rg_form_view` VALUES("19900", "8", "2015-10-23 02:03:37", "202.46.51.163", "7");
INSERT INTO `wp_rg_form_view` VALUES("19901", "3", "2015-10-23 03:02:09", "202.46.51.16", "104");
INSERT INTO `wp_rg_form_view` VALUES("19902", "8", "2015-10-23 03:02:09", "202.46.51.16", "13");
INSERT INTO `wp_rg_form_view` VALUES("19903", "3", "2015-10-23 04:00:42", "202.46.48.204", "83");
INSERT INTO `wp_rg_form_view` VALUES("19904", "8", "2015-10-23 04:00:42", "202.46.48.204", "9");
INSERT INTO `wp_rg_form_view` VALUES("19905", "1", "2015-10-23 04:05:11", "198.46.237.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("19906", "5", "2015-10-23 04:28:03", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("19907", "3", "2015-10-23 05:07:39", "66.249.74.58", "104");
INSERT INTO `wp_rg_form_view` VALUES("19908", "8", "2015-10-23 05:07:39", "66.249.74.58", "12");
INSERT INTO `wp_rg_form_view` VALUES("19909", "3", "2015-10-23 06:02:41", "108.180.150.159", "68");
INSERT INTO `wp_rg_form_view` VALUES("19910", "8", "2015-10-23 06:02:41", "108.180.150.159", "8");
INSERT INTO `wp_rg_form_view` VALUES("19911", "3", "2015-10-23 07:02:44", "202.46.58.190", "151");
INSERT INTO `wp_rg_form_view` VALUES("19912", "8", "2015-10-23 07:02:44", "202.46.58.190", "18");
INSERT INTO `wp_rg_form_view` VALUES("19913", "3", "2015-10-23 08:01:17", "202.46.49.79", "83");
INSERT INTO `wp_rg_form_view` VALUES("19914", "8", "2015-10-23 08:01:20", "202.46.49.79", "9");
INSERT INTO `wp_rg_form_view` VALUES("19915", "3", "2015-10-23 09:01:35", "202.46.50.157", "134");
INSERT INTO `wp_rg_form_view` VALUES("19916", "8", "2015-10-23 09:01:35", "202.46.50.157", "15");
INSERT INTO `wp_rg_form_view` VALUES("19917", "3", "2015-10-23 10:00:08", "202.46.48.146", "79");
INSERT INTO `wp_rg_form_view` VALUES("19918", "8", "2015-10-23 10:00:08", "202.46.48.146", "9");
INSERT INTO `wp_rg_form_view` VALUES("19919", "3", "2015-10-23 11:10:27", "202.46.49.197", "133");
INSERT INTO `wp_rg_form_view` VALUES("19920", "8", "2015-10-23 11:10:28", "202.46.49.197", "15");
INSERT INTO `wp_rg_form_view` VALUES("19921", "6", "2015-10-23 11:21:14", "66.249.74.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("19922", "3", "2015-10-23 12:06:10", "66.249.74.56", "75");
INSERT INTO `wp_rg_form_view` VALUES("19923", "8", "2015-10-23 12:06:10", "66.249.74.56", "8");
INSERT INTO `wp_rg_form_view` VALUES("19924", "3", "2015-10-23 13:07:26", "202.46.54.207", "75");
INSERT INTO `wp_rg_form_view` VALUES("19925", "8", "2015-10-23 13:07:27", "202.46.54.207", "8");
INSERT INTO `wp_rg_form_view` VALUES("19926", "3", "2015-10-23 14:06:00", "202.46.57.170", "144");
INSERT INTO `wp_rg_form_view` VALUES("19927", "8", "2015-10-23 14:06:00", "202.46.57.170", "16");
INSERT INTO `wp_rg_form_view` VALUES("19928", "3", "2015-10-23 15:04:31", "202.46.48.204", "65");
INSERT INTO `wp_rg_form_view` VALUES("19929", "8", "2015-10-23 15:04:31", "202.46.48.204", "6");
INSERT INTO `wp_rg_form_view` VALUES("19930", "3", "2015-10-23 16:03:04", "202.46.50.182", "157");
INSERT INTO `wp_rg_form_view` VALUES("19931", "8", "2015-10-23 16:03:05", "202.46.50.182", "18");
INSERT INTO `wp_rg_form_view` VALUES("19932", "9", "2015-10-23 16:38:11", "202.46.54.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("19933", "3", "2015-10-23 17:11:49", "199.168.141.174", "87");
INSERT INTO `wp_rg_form_view` VALUES("19934", "8", "2015-10-23 17:11:50", "199.168.141.174", "10");
INSERT INTO `wp_rg_form_view` VALUES("19935", "3", "2015-10-23 18:00:08", "202.46.48.141", "405");
INSERT INTO `wp_rg_form_view` VALUES("19936", "8", "2015-10-23 18:00:08", "202.46.48.141", "45");
INSERT INTO `wp_rg_form_view` VALUES("19937", "1", "2015-10-23 18:04:21", "81.68.74.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("19938", "2", "2015-10-23 18:04:30", "81.68.74.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("19939", "3", "2015-10-23 19:10:23", "202.46.50.97", "86");
INSERT INTO `wp_rg_form_view` VALUES("19940", "8", "2015-10-23 19:10:23", "202.46.50.97", "11");
INSERT INTO `wp_rg_form_view` VALUES("19941", "3", "2015-10-23 20:01:07", "185.70.187.53", "109");
INSERT INTO `wp_rg_form_view` VALUES("19942", "8", "2015-10-23 20:01:07", "185.70.187.53", "12");
INSERT INTO `wp_rg_form_view` VALUES("19943", "3", "2015-10-23 21:03:16", "188.165.15.148", "90");
INSERT INTO `wp_rg_form_view` VALUES("19944", "8", "2015-10-23 21:03:16", "188.165.15.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("19945", "9", "2015-10-23 21:42:34", "202.46.52.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("19946", "3", "2015-10-23 22:05:59", "202.46.54.158", "79");
INSERT INTO `wp_rg_form_view` VALUES("19947", "8", "2015-10-23 22:05:59", "202.46.54.158", "10");
INSERT INTO `wp_rg_form_view` VALUES("19948", "3", "2015-10-23 23:02:55", "157.55.39.110", "132");
INSERT INTO `wp_rg_form_view` VALUES("19949", "8", "2015-10-23 23:02:55", "157.55.39.110", "16");
INSERT INTO `wp_rg_form_view` VALUES("19950", "3", "2015-10-24 00:03:05", "202.46.52.106", "114");
INSERT INTO `wp_rg_form_view` VALUES("19951", "8", "2015-10-24 00:03:05", "202.46.52.106", "13");
INSERT INTO `wp_rg_form_view` VALUES("19952", "1", "2015-10-24 00:20:50", "184.66.128.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("19953", "3", "2015-10-24 01:01:35", "202.46.52.18", "78");
INSERT INTO `wp_rg_form_view` VALUES("19954", "8", "2015-10-24 01:01:35", "202.46.52.18", "9");
INSERT INTO `wp_rg_form_view` VALUES("19955", "1", "2015-10-24 01:38:17", "195.154.251.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("19956", "3", "2015-10-24 02:00:08", "202.46.56.177", "82");
INSERT INTO `wp_rg_form_view` VALUES("19957", "8", "2015-10-24 02:00:08", "202.46.56.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("19958", "3", "2015-10-24 03:10:22", "202.46.51.165", "204");
INSERT INTO `wp_rg_form_view` VALUES("19959", "8", "2015-10-24 03:10:22", "202.46.51.165", "23");
INSERT INTO `wp_rg_form_view` VALUES("19960", "3", "2015-10-24 04:08:54", "202.46.48.195", "192");
INSERT INTO `wp_rg_form_view` VALUES("19961", "8", "2015-10-24 04:08:55", "202.46.48.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("19962", "1", "2015-10-24 04:20:31", "96.54.162.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("19963", "2", "2015-10-24 04:30:49", "188.165.15.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("19964", "3", "2015-10-24 05:07:26", "202.46.52.73", "60");
INSERT INTO `wp_rg_form_view` VALUES("19965", "8", "2015-10-24 05:07:26", "202.46.52.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("19966", "3", "2015-10-24 06:05:59", "202.46.49.139", "85");
INSERT INTO `wp_rg_form_view` VALUES("19967", "8", "2015-10-24 06:05:59", "202.46.49.139", "9");
INSERT INTO `wp_rg_form_view` VALUES("19968", "3", "2015-10-24 07:04:31", "202.46.48.98", "100");
INSERT INTO `wp_rg_form_view` VALUES("19969", "8", "2015-10-24 07:04:31", "202.46.48.98", "12");
INSERT INTO `wp_rg_form_view` VALUES("19970", "9", "2015-10-24 08:03:03", "202.46.54.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("19971", "3", "2015-10-24 08:03:03", "202.46.54.70", "84");
INSERT INTO `wp_rg_form_view` VALUES("19972", "8", "2015-10-24 08:03:04", "202.46.54.70", "9");
INSERT INTO `wp_rg_form_view` VALUES("19973", "3", "2015-10-24 09:01:36", "202.46.55.16", "60");
INSERT INTO `wp_rg_form_view` VALUES("19974", "8", "2015-10-24 09:01:36", "202.46.55.16", "7");
INSERT INTO `wp_rg_form_view` VALUES("19975", "3", "2015-10-24 10:00:07", "202.46.58.132", "95");
INSERT INTO `wp_rg_form_view` VALUES("19976", "8", "2015-10-24 10:00:08", "202.46.58.132", "11");
INSERT INTO `wp_rg_form_view` VALUES("19977", "3", "2015-10-24 11:10:28", "202.46.55.135", "95");
INSERT INTO `wp_rg_form_view` VALUES("19978", "8", "2015-10-24 11:10:28", "202.46.55.135", "11");
INSERT INTO `wp_rg_form_view` VALUES("19979", "3", "2015-10-24 12:08:46", "89.35.104.156", "81");
INSERT INTO `wp_rg_form_view` VALUES("19980", "8", "2015-10-24 12:08:46", "89.35.104.156", "9");
INSERT INTO `wp_rg_form_view` VALUES("19981", "3", "2015-10-24 13:07:26", "202.46.56.189", "97");
INSERT INTO `wp_rg_form_view` VALUES("19982", "8", "2015-10-24 13:07:26", "202.46.56.189", "10");
INSERT INTO `wp_rg_form_view` VALUES("19983", "5", "2015-10-24 13:47:36", "157.55.39.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("19984", "3", "2015-10-24 14:05:59", "202.46.56.68", "74");
INSERT INTO `wp_rg_form_view` VALUES("19985", "8", "2015-10-24 14:05:59", "202.46.56.68", "7");
INSERT INTO `wp_rg_form_view` VALUES("19986", "3", "2015-10-24 15:04:30", "202.46.48.191", "45");
INSERT INTO `wp_rg_form_view` VALUES("19987", "8", "2015-10-24 15:04:31", "202.46.48.191", "5");
INSERT INTO `wp_rg_form_view` VALUES("19988", "3", "2015-10-24 16:02:32", "46.119.123.33", "116");
INSERT INTO `wp_rg_form_view` VALUES("19989", "8", "2015-10-24 16:02:32", "46.119.123.33", "13");
INSERT INTO `wp_rg_form_view` VALUES("19990", "3", "2015-10-24 17:01:35", "202.46.54.189", "64");
INSERT INTO `wp_rg_form_view` VALUES("19991", "8", "2015-10-24 17:01:35", "202.46.54.189", "7");
INSERT INTO `wp_rg_form_view` VALUES("19992", "3", "2015-10-24 18:00:07", "202.46.56.114", "111");
INSERT INTO `wp_rg_form_view` VALUES("19993", "8", "2015-10-24 18:00:07", "202.46.56.114", "14");
INSERT INTO `wp_rg_form_view` VALUES("19994", "3", "2015-10-24 19:05:57", "188.165.15.148", "87");
INSERT INTO `wp_rg_form_view` VALUES("19995", "8", "2015-10-24 19:05:57", "188.165.15.148", "11");
INSERT INTO `wp_rg_form_view` VALUES("19996", "1", "2015-10-24 19:06:36", "45.59.69.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("19997", "6", "2015-10-24 19:52:05", "188.165.15.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("19998", "3", "2015-10-24 20:08:55", "202.46.58.157", "72");
INSERT INTO `wp_rg_form_view` VALUES("19999", "8", "2015-10-24 20:08:55", "202.46.58.157", "8");
INSERT INTO `wp_rg_form_view` VALUES("20000", "9", "2015-10-24 21:02:00", "66.249.74.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("20001", "3", "2015-10-24 21:02:00", "66.249.74.54", "73");
INSERT INTO `wp_rg_form_view` VALUES("20002", "8", "2015-10-24 21:02:00", "66.249.74.54", "8");
INSERT INTO `wp_rg_form_view` VALUES("20003", "3", "2015-10-24 22:05:58", "202.46.50.90", "388");
INSERT INTO `wp_rg_form_view` VALUES("20004", "8", "2015-10-24 22:05:59", "202.46.50.90", "47");
INSERT INTO `wp_rg_form_view` VALUES("20005", "9", "2015-10-24 22:55:05", "157.55.39.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("20006", "7", "2015-10-24 22:55:13", "157.55.39.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("20007", "3", "2015-10-24 23:04:30", "202.46.54.143", "54");
INSERT INTO `wp_rg_form_view` VALUES("20008", "8", "2015-10-24 23:04:31", "202.46.54.143", "6");
INSERT INTO `wp_rg_form_view` VALUES("20009", "1", "2015-10-24 23:43:04", "107.173.185.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("20010", "3", "2015-10-25 00:16:57", "216.244.82.212", "44");
INSERT INTO `wp_rg_form_view` VALUES("20011", "8", "2015-10-25 00:16:58", "216.244.82.212", "5");
INSERT INTO `wp_rg_form_view` VALUES("20012", "1", "2015-10-25 00:28:42", "45.59.69.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("20013", "9", "2015-10-25 00:46:15", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20014", "3", "2015-10-25 01:23:07", "202.46.54.17", "24");
INSERT INTO `wp_rg_form_view` VALUES("20015", "8", "2015-10-25 01:23:07", "202.46.54.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("20016", "3", "2015-10-25 02:03:01", "216.244.82.212", "62");
INSERT INTO `wp_rg_form_view` VALUES("20017", "8", "2015-10-25 02:03:01", "216.244.82.212", "7");
INSERT INTO `wp_rg_form_view` VALUES("20018", "3", "2015-10-25 03:04:09", "216.232.152.72", "74");
INSERT INTO `wp_rg_form_view` VALUES("20019", "8", "2015-10-25 03:04:09", "216.232.152.72", "9");
INSERT INTO `wp_rg_form_view` VALUES("20020", "3", "2015-10-25 04:17:36", "68.180.229.161", "47");
INSERT INTO `wp_rg_form_view` VALUES("20021", "8", "2015-10-25 04:17:37", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("20022", "3", "2015-10-25 05:17:59", "188.165.15.148", "64");
INSERT INTO `wp_rg_form_view` VALUES("20023", "8", "2015-10-25 05:17:59", "188.165.15.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("20024", "3", "2015-10-25 06:19:34", "202.46.51.105", "30");
INSERT INTO `wp_rg_form_view` VALUES("20025", "8", "2015-10-25 06:19:35", "202.46.51.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("20026", "3", "2015-10-25 07:00:58", "202.46.53.51", "59");
INSERT INTO `wp_rg_form_view` VALUES("20027", "8", "2015-10-25 07:00:58", "202.46.53.51", "7");
INSERT INTO `wp_rg_form_view` VALUES("20028", "3", "2015-10-25 08:23:28", "202.46.57.74", "18");
INSERT INTO `wp_rg_form_view` VALUES("20029", "8", "2015-10-25 08:23:28", "202.46.57.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("20030", "3", "2015-10-25 09:03:27", "202.46.54.19", "79");
INSERT INTO `wp_rg_form_view` VALUES("20031", "8", "2015-10-25 09:03:27", "202.46.54.19", "9");
INSERT INTO `wp_rg_form_view` VALUES("20032", "3", "2015-10-25 10:02:23", "188.165.15.148", "129");
INSERT INTO `wp_rg_form_view` VALUES("20033", "8", "2015-10-25 10:02:23", "188.165.15.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("20034", "3", "2015-10-25 11:01:44", "202.46.55.152", "96");
INSERT INTO `wp_rg_form_view` VALUES("20035", "8", "2015-10-25 11:01:44", "202.46.55.152", "10");
INSERT INTO `wp_rg_form_view` VALUES("20036", "3", "2015-10-25 12:00:09", "66.249.74.54", "80");
INSERT INTO `wp_rg_form_view` VALUES("20037", "8", "2015-10-25 12:00:09", "66.249.74.54", "9");
INSERT INTO `wp_rg_form_view` VALUES("20038", "3", "2015-10-25 13:01:10", "202.46.51.103", "85");
INSERT INTO `wp_rg_form_view` VALUES("20039", "8", "2015-10-25 13:01:11", "202.46.51.103", "10");
INSERT INTO `wp_rg_form_view` VALUES("20040", "3", "2015-10-25 14:11:25", "202.46.48.125", "100");
INSERT INTO `wp_rg_form_view` VALUES("20041", "8", "2015-10-25 14:11:25", "202.46.48.125", "13");
INSERT INTO `wp_rg_form_view` VALUES("20042", "1", "2015-10-25 14:53:27", "192.3.182.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("20043", "3", "2015-10-25 15:09:57", "202.46.58.195", "153");
INSERT INTO `wp_rg_form_view` VALUES("20044", "8", "2015-10-25 15:09:57", "202.46.58.195", "17");
INSERT INTO `wp_rg_form_view` VALUES("20045", "3", "2015-10-25 16:04:17", "188.165.15.148", "127");
INSERT INTO `wp_rg_form_view` VALUES("20046", "8", "2015-10-25 16:04:17", "188.165.15.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("20047", "9", "2015-10-25 16:25:51", "104.200.154.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("20048", "3", "2015-10-25 17:01:04", "188.165.15.148", "103");
INSERT INTO `wp_rg_form_view` VALUES("20049", "8", "2015-10-25 17:01:04", "188.165.15.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("20050", "1", "2015-10-25 17:13:25", "216.158.218.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("20051", "3", "2015-10-25 18:05:34", "202.46.51.17", "110");
INSERT INTO `wp_rg_form_view` VALUES("20052", "8", "2015-10-25 18:05:34", "202.46.51.17", "12");
INSERT INTO `wp_rg_form_view` VALUES("20053", "9", "2015-10-25 18:42:22", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("20054", "3", "2015-10-25 19:04:05", "202.46.55.149", "120");
INSERT INTO `wp_rg_form_view` VALUES("20055", "8", "2015-10-25 19:04:05", "202.46.55.149", "14");
INSERT INTO `wp_rg_form_view` VALUES("20056", "6", "2015-10-25 19:51:13", "66.249.74.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("20057", "3", "2015-10-25 20:02:38", "202.46.55.147", "370");
INSERT INTO `wp_rg_form_view` VALUES("20058", "8", "2015-10-25 20:02:38", "202.46.55.147", "41");
INSERT INTO `wp_rg_form_view` VALUES("20059", "3", "2015-10-25 21:01:10", "202.46.49.92", "156");
INSERT INTO `wp_rg_form_view` VALUES("20060", "8", "2015-10-25 21:01:11", "202.46.49.92", "16");
INSERT INTO `wp_rg_form_view` VALUES("20061", "9", "2015-10-25 21:24:36", "202.46.56.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("20062", "3", "2015-10-25 22:11:29", "202.46.57.125", "102");
INSERT INTO `wp_rg_form_view` VALUES("20063", "8", "2015-10-25 22:11:29", "202.46.57.125", "12");
INSERT INTO `wp_rg_form_view` VALUES("20064", "3", "2015-10-25 23:09:58", "202.46.52.42", "168");
INSERT INTO `wp_rg_form_view` VALUES("20065", "8", "2015-10-25 23:09:58", "202.46.52.42", "19");
INSERT INTO `wp_rg_form_view` VALUES("20066", "3", "2015-10-26 00:08:29", "202.46.54.190", "96");
INSERT INTO `wp_rg_form_view` VALUES("20067", "8", "2015-10-26 00:08:29", "202.46.54.190", "13");
INSERT INTO `wp_rg_form_view` VALUES("20068", "9", "2015-10-26 00:31:54", "202.46.51.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("20069", "3", "2015-10-26 01:07:03", "202.46.53.13", "102");
INSERT INTO `wp_rg_form_view` VALUES("20070", "8", "2015-10-26 01:07:03", "202.46.53.13", "12");
INSERT INTO `wp_rg_form_view` VALUES("20071", "3", "2015-10-26 02:05:33", "202.46.53.66", "127");
INSERT INTO `wp_rg_form_view` VALUES("20072", "8", "2015-10-26 02:05:33", "202.46.53.66", "15");
INSERT INTO `wp_rg_form_view` VALUES("20073", "9", "2015-10-26 02:40:40", "202.46.51.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("20074", "3", "2015-10-26 03:02:56", "91.200.12.63", "116");
INSERT INTO `wp_rg_form_view` VALUES("20075", "8", "2015-10-26 03:02:56", "91.200.12.63", "13");
INSERT INTO `wp_rg_form_view` VALUES("20076", "9", "2015-10-26 03:15:48", "202.46.58.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("20077", "3", "2015-10-26 04:02:37", "202.46.54.142", "104");
INSERT INTO `wp_rg_form_view` VALUES("20078", "8", "2015-10-26 04:02:38", "202.46.54.142", "12");
INSERT INTO `wp_rg_form_view` VALUES("20079", "3", "2015-10-26 05:00:21", "66.249.74.58", "97");
INSERT INTO `wp_rg_form_view` VALUES("20080", "8", "2015-10-26 05:00:21", "66.249.74.58", "11");
INSERT INTO `wp_rg_form_view` VALUES("20081", "3", "2015-10-26 06:11:24", "202.46.55.152", "123");
INSERT INTO `wp_rg_form_view` VALUES("20082", "8", "2015-10-26 06:11:25", "202.46.55.152", "14");
INSERT INTO `wp_rg_form_view` VALUES("20083", "3", "2015-10-26 07:09:56", "202.46.58.195", "112");
INSERT INTO `wp_rg_form_view` VALUES("20084", "8", "2015-10-26 07:09:57", "202.46.58.195", "13");
INSERT INTO `wp_rg_form_view` VALUES("20085", "1", "2015-10-26 07:54:10", "83.39.116.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("20086", "2", "2015-10-26 08:03:44", "45.55.177.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20087", "3", "2015-10-26 08:03:44", "45.55.177.106", "389");
INSERT INTO `wp_rg_form_view` VALUES("20088", "8", "2015-10-26 08:03:44", "45.55.177.106", "41");
INSERT INTO `wp_rg_form_view` VALUES("20089", "8", "2015-10-26 08:03:44", "45.55.177.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20090", "1", "2015-10-26 08:03:44", "45.55.177.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("20091", "3", "2015-10-26 09:07:01", "202.46.57.39", "115");
INSERT INTO `wp_rg_form_view` VALUES("20092", "8", "2015-10-26 09:07:01", "202.46.57.39", "13");
INSERT INTO `wp_rg_form_view` VALUES("20093", "9", "2015-10-26 09:30:26", "202.46.49.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("20094", "3", "2015-10-26 10:01:21", "188.165.15.148", "94");
INSERT INTO `wp_rg_form_view` VALUES("20095", "8", "2015-10-26 10:01:22", "188.165.15.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("20096", "3", "2015-10-26 11:04:05", "202.46.57.176", "108");
INSERT INTO `wp_rg_form_view` VALUES("20097", "8", "2015-10-26 11:04:06", "202.46.57.176", "12");
INSERT INTO `wp_rg_form_view` VALUES("20098", "1", "2015-10-26 11:27:49", "193.201.224.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("20099", "9", "2015-10-26 11:33:32", "188.165.15.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("20100", "3", "2015-10-26 12:16:57", "68.180.229.161", "54");
INSERT INTO `wp_rg_form_view` VALUES("20101", "8", "2015-10-26 12:16:57", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("20102", "3", "2015-10-26 13:03:45", "202.46.56.114", "60");
INSERT INTO `wp_rg_form_view` VALUES("20103", "8", "2015-10-26 13:03:45", "202.46.56.114", "7");
INSERT INTO `wp_rg_form_view` VALUES("20104", "3", "2015-10-26 14:02:17", "202.46.56.62", "72");
INSERT INTO `wp_rg_form_view` VALUES("20105", "8", "2015-10-26 14:02:18", "202.46.56.62", "8");
INSERT INTO `wp_rg_form_view` VALUES("20106", "3", "2015-10-26 15:00:49", "202.46.51.193", "127");
INSERT INTO `wp_rg_form_view` VALUES("20107", "8", "2015-10-26 15:00:50", "202.46.51.193", "15");
INSERT INTO `wp_rg_form_view` VALUES("20108", "1", "2015-10-26 15:31:02", "221.237.19.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("20109", "3", "2015-10-26 16:11:01", "216.232.153.64", "82");
INSERT INTO `wp_rg_form_view` VALUES("20110", "8", "2015-10-26 16:11:01", "216.232.153.64", "9");
INSERT INTO `wp_rg_form_view` VALUES("20111", "3", "2015-10-26 17:02:53", "199.168.141.174", "168");
INSERT INTO `wp_rg_form_view` VALUES("20112", "8", "2015-10-26 17:02:53", "199.168.141.174", "18");
INSERT INTO `wp_rg_form_view` VALUES("20113", "9", "2015-10-26 17:29:57", "188.165.15.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("20114", "3", "2015-10-26 18:08:09", "202.46.57.123", "83");
INSERT INTO `wp_rg_form_view` VALUES("20115", "8", "2015-10-26 18:08:09", "202.46.57.123", "8");
INSERT INTO `wp_rg_form_view` VALUES("20116", "3", "2015-10-26 19:06:40", "202.46.55.83", "123");
INSERT INTO `wp_rg_form_view` VALUES("20117", "8", "2015-10-26 19:06:40", "202.46.55.83", "13");
INSERT INTO `wp_rg_form_view` VALUES("20118", "3", "2015-10-26 20:05:12", "202.46.50.190", "93");
INSERT INTO `wp_rg_form_view` VALUES("20119", "8", "2015-10-26 20:05:12", "202.46.50.190", "10");
INSERT INTO `wp_rg_form_view` VALUES("20120", "3", "2015-10-26 21:03:45", "202.46.48.133", "143");
INSERT INTO `wp_rg_form_view` VALUES("20121", "8", "2015-10-26 21:03:45", "202.46.48.133", "16");
INSERT INTO `wp_rg_form_view` VALUES("20122", "1", "2015-10-26 21:52:30", "5.255.75.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("20123", "3", "2015-10-26 22:02:17", "202.46.54.159", "171");
INSERT INTO `wp_rg_form_view` VALUES("20124", "8", "2015-10-26 22:02:17", "202.46.54.159", "18");
INSERT INTO `wp_rg_form_view` VALUES("20125", "1", "2015-10-26 22:11:32", "45.61.46.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("20126", "3", "2015-10-26 23:00:49", "202.46.48.15", "68");
INSERT INTO `wp_rg_form_view` VALUES("20127", "8", "2015-10-26 23:00:49", "202.46.48.15", "8");
INSERT INTO `wp_rg_form_view` VALUES("20128", "3", "2015-10-27 00:35:01", "96.50.99.134", "9");
INSERT INTO `wp_rg_form_view` VALUES("20129", "8", "2015-10-27 00:35:01", "96.50.99.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("20130", "3", "2015-10-27 01:06:51", "66.249.74.58", "37");
INSERT INTO `wp_rg_form_view` VALUES("20131", "8", "2015-10-27 01:06:52", "66.249.74.58", "4");
INSERT INTO `wp_rg_form_view` VALUES("20132", "3", "2015-10-27 02:07:24", "68.180.229.161", "74");
INSERT INTO `wp_rg_form_view` VALUES("20133", "8", "2015-10-27 02:07:24", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("20134", "1", "2015-10-27 02:15:30", "82.211.48.241", "2");
INSERT INTO `wp_rg_form_view` VALUES("20135", "3", "2015-10-27 03:06:28", "68.180.229.161", "70");
INSERT INTO `wp_rg_form_view` VALUES("20136", "8", "2015-10-27 03:06:28", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("20137", "2", "2015-10-27 03:14:39", "66.249.74.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("20138", "3", "2015-10-27 04:00:13", "202.46.50.188", "121");
INSERT INTO `wp_rg_form_view` VALUES("20139", "8", "2015-10-27 04:00:13", "202.46.50.188", "13");
INSERT INTO `wp_rg_form_view` VALUES("20140", "1", "2015-10-27 04:09:29", "45.57.154.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("20141", "3", "2015-10-27 05:12:51", "202.46.54.183", "1161");
INSERT INTO `wp_rg_form_view` VALUES("20142", "8", "2015-10-27 05:12:51", "202.46.54.183", "131");
INSERT INTO `wp_rg_form_view` VALUES("20143", "2", "2015-10-27 05:45:38", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("20144", "1", "2015-10-27 05:45:42", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("20145", "5", "2015-10-27 05:56:24", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("20146", "9", "2015-10-27 05:59:16", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("20147", "3", "2015-10-27 06:00:00", "5.9.98.130", "5127");
INSERT INTO `wp_rg_form_view` VALUES("20148", "8", "2015-10-27 06:00:01", "5.9.98.130", "625");
INSERT INTO `wp_rg_form_view` VALUES("20149", "6", "2015-10-27 06:03:30", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("20150", "9", "2015-10-27 06:38:26", "202.46.56.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("20151", "1", "2015-10-27 06:41:58", "104.218.192.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("20152", "3", "2015-10-27 07:00:00", "5.9.98.130", "4591");
INSERT INTO `wp_rg_form_view` VALUES("20153", "8", "2015-10-27 07:00:04", "5.9.98.130", "560");
INSERT INTO `wp_rg_form_view` VALUES("20154", "3", "2015-10-27 08:00:00", "5.9.98.130", "2090");
INSERT INTO `wp_rg_form_view` VALUES("20155", "8", "2015-10-27 08:00:05", "5.9.98.130", "236");
INSERT INTO `wp_rg_form_view` VALUES("20156", "9", "2015-10-27 08:06:00", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20157", "3", "2015-10-27 09:00:01", "5.9.98.130", "7138");
INSERT INTO `wp_rg_form_view` VALUES("20158", "8", "2015-10-27 09:00:02", "5.9.98.130", "824");
INSERT INTO `wp_rg_form_view` VALUES("20159", "1", "2015-10-27 09:18:24", "107.173.188.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("20160", "8", "2015-10-27 10:00:02", "5.9.98.130", "547");
INSERT INTO `wp_rg_form_view` VALUES("20161", "3", "2015-10-27 10:00:03", "5.9.98.130", "4166");
INSERT INTO `wp_rg_form_view` VALUES("20162", "3", "2015-10-27 11:06:33", "66.249.74.56", "92");
INSERT INTO `wp_rg_form_view` VALUES("20163", "8", "2015-10-27 11:06:34", "66.249.74.56", "10");
INSERT INTO `wp_rg_form_view` VALUES("20164", "3", "2015-10-27 12:06:15", "202.46.51.89", "5885");
INSERT INTO `wp_rg_form_view` VALUES("20165", "8", "2015-10-27 12:06:15", "202.46.51.89", "583");
INSERT INTO `wp_rg_form_view` VALUES("20166", "3", "2015-10-27 13:00:02", "5.9.98.130", "6244");
INSERT INTO `wp_rg_form_view` VALUES("20167", "8", "2015-10-27 13:00:03", "5.9.98.130", "765");
INSERT INTO `wp_rg_form_view` VALUES("20168", "9", "2015-10-27 13:04:46", "202.46.50.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("20169", "1", "2015-10-27 13:34:46", "188.214.55.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("20170", "3", "2015-10-27 14:00:00", "5.9.98.130", "5386");
INSERT INTO `wp_rg_form_view` VALUES("20171", "8", "2015-10-27 14:00:07", "5.9.98.130", "886");
INSERT INTO `wp_rg_form_view` VALUES("20172", "9", "2015-10-27 14:26:43", "202.46.49.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("20173", "3", "2015-10-27 15:00:00", "5.9.98.130", "5441");
INSERT INTO `wp_rg_form_view` VALUES("20174", "8", "2015-10-27 15:00:00", "5.9.98.130", "545");
INSERT INTO `wp_rg_form_view` VALUES("20175", "3", "2015-10-27 16:00:00", "5.9.98.130", "242");
INSERT INTO `wp_rg_form_view` VALUES("20176", "8", "2015-10-27 16:00:04", "5.9.98.130", "27");
INSERT INTO `wp_rg_form_view` VALUES("20177", "1", "2015-10-27 16:25:56", "193.201.224.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("20178", "3", "2015-10-27 17:00:09", "66.249.74.56", "185");
INSERT INTO `wp_rg_form_view` VALUES("20179", "8", "2015-10-27 17:00:10", "66.249.74.56", "23");
INSERT INTO `wp_rg_form_view` VALUES("20180", "1", "2015-10-27 17:18:02", "96.50.93.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("20181", "3", "2015-10-27 18:09:22", "202.46.55.156", "94");
INSERT INTO `wp_rg_form_view` VALUES("20182", "8", "2015-10-27 18:09:22", "202.46.55.156", "12");
INSERT INTO `wp_rg_form_view` VALUES("20183", "3", "2015-10-27 19:07:43", "202.46.55.148", "405");
INSERT INTO `wp_rg_form_view` VALUES("20184", "8", "2015-10-27 19:07:43", "202.46.55.148", "45");
INSERT INTO `wp_rg_form_view` VALUES("20185", "1", "2015-10-27 19:35:51", "50.67.170.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("20186", "2", "2015-10-27 19:48:04", "213.37.205.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("20187", "3", "2015-10-27 20:06:14", "202.46.54.136", "145");
INSERT INTO `wp_rg_form_view` VALUES("20188", "8", "2015-10-27 20:06:15", "202.46.54.136", "16");
INSERT INTO `wp_rg_form_view` VALUES("20189", "3", "2015-10-27 21:04:46", "202.46.50.152", "145");
INSERT INTO `wp_rg_form_view` VALUES("20190", "8", "2015-10-27 21:04:46", "202.46.50.152", "16");
INSERT INTO `wp_rg_form_view` VALUES("20191", "1", "2015-10-27 21:12:21", "155.94.245.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("20192", "8", "2015-10-27 22:01:29", "184.69.2.234", "11");
INSERT INTO `wp_rg_form_view` VALUES("20193", "9", "2015-10-27 22:03:18", "202.46.54.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("20194", "3", "2015-10-27 22:03:18", "202.46.54.137", "93");
INSERT INTO `wp_rg_form_view` VALUES("20195", "3", "2015-10-27 23:01:51", "202.46.51.85", "143");
INSERT INTO `wp_rg_form_view` VALUES("20196", "8", "2015-10-27 23:01:51", "202.46.51.85", "16");
INSERT INTO `wp_rg_form_view` VALUES("20197", "3", "2015-10-28 00:00:22", "202.46.49.69", "121");
INSERT INTO `wp_rg_form_view` VALUES("20198", "8", "2015-10-28 00:00:23", "202.46.49.69", "15");
INSERT INTO `wp_rg_form_view` VALUES("20199", "3", "2015-10-28 01:10:37", "202.46.55.39", "144");
INSERT INTO `wp_rg_form_view` VALUES("20200", "8", "2015-10-28 01:10:37", "202.46.55.39", "19");
INSERT INTO `wp_rg_form_view` VALUES("20201", "1", "2015-10-28 01:24:39", "91.200.82.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("20202", "2", "2015-10-28 01:40:32", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20203", "3", "2015-10-28 02:09:10", "202.46.50.17", "146");
INSERT INTO `wp_rg_form_view` VALUES("20204", "8", "2015-10-28 02:09:10", "202.46.50.17", "16");
INSERT INTO `wp_rg_form_view` VALUES("20205", "2", "2015-10-28 02:25:58", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("20206", "3", "2015-10-28 03:07:42", "202.46.53.51", "102");
INSERT INTO `wp_rg_form_view` VALUES("20207", "8", "2015-10-28 03:07:42", "202.46.53.51", "12");
INSERT INTO `wp_rg_form_view` VALUES("20208", "3", "2015-10-28 04:01:41", "192.171.45.200", "169");
INSERT INTO `wp_rg_form_view` VALUES("20209", "8", "2015-10-28 04:01:41", "192.171.45.200", "22");
INSERT INTO `wp_rg_form_view` VALUES("20210", "3", "2015-10-28 05:03:47", "37.115.184.26", "47");
INSERT INTO `wp_rg_form_view` VALUES("20211", "8", "2015-10-28 05:03:47", "37.115.184.26", "5");
INSERT INTO `wp_rg_form_view` VALUES("20212", "3", "2015-10-28 06:06:59", "192.171.45.200", "73");
INSERT INTO `wp_rg_form_view` VALUES("20213", "8", "2015-10-28 06:07:00", "192.171.45.200", "8");
INSERT INTO `wp_rg_form_view` VALUES("20214", "3", "2015-10-28 07:04:53", "192.171.45.200", "38");
INSERT INTO `wp_rg_form_view` VALUES("20215", "8", "2015-10-28 07:04:54", "192.171.45.200", "4");
INSERT INTO `wp_rg_form_view` VALUES("20216", "3", "2015-10-28 08:43:59", "157.55.39.14", "9");
INSERT INTO `wp_rg_form_view` VALUES("20217", "8", "2015-10-28 08:43:59", "157.55.39.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("20218", "3", "2015-10-28 09:03:12", "68.180.229.161", "54");
INSERT INTO `wp_rg_form_view` VALUES("20219", "8", "2015-10-28 09:03:13", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("20220", "1", "2015-10-28 09:41:03", "193.201.224.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("20221", "3", "2015-10-28 10:00:03", "202.119.25.71", "37");
INSERT INTO `wp_rg_form_view` VALUES("20222", "8", "2015-10-28 10:00:03", "202.119.25.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("20223", "3", "2015-10-28 11:08:41", "192.171.45.200", "37");
INSERT INTO `wp_rg_form_view` VALUES("20224", "8", "2015-10-28 11:08:42", "192.171.45.200", "4");
INSERT INTO `wp_rg_form_view` VALUES("20225", "3", "2015-10-28 12:15:07", "192.171.45.200", "9");
INSERT INTO `wp_rg_form_view` VALUES("20226", "8", "2015-10-28 12:15:07", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20227", "3", "2015-10-28 13:25:50", "192.171.45.200", "27");
INSERT INTO `wp_rg_form_view` VALUES("20228", "8", "2015-10-28 13:25:52", "192.171.45.200", "3");
INSERT INTO `wp_rg_form_view` VALUES("20229", "3", "2015-10-28 14:03:13", "157.55.39.42", "46");
INSERT INTO `wp_rg_form_view` VALUES("20230", "8", "2015-10-28 14:03:14", "157.55.39.42", "5");
INSERT INTO `wp_rg_form_view` VALUES("20231", "3", "2015-10-28 15:13:44", "68.180.229.161", "45");
INSERT INTO `wp_rg_form_view` VALUES("20232", "8", "2015-10-28 15:13:48", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("20233", "1", "2015-10-28 15:20:44", "82.211.48.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("20234", "3", "2015-10-28 16:23:49", "202.46.52.77", "131");
INSERT INTO `wp_rg_form_view` VALUES("20235", "8", "2015-10-28 16:23:50", "202.46.52.77", "14");
INSERT INTO `wp_rg_form_view` VALUES("20236", "1", "2015-10-28 16:39:59", "192.3.83.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("20237", "3", "2015-10-28 17:07:35", "94.23.45.37", "551");
INSERT INTO `wp_rg_form_view` VALUES("20238", "8", "2015-10-28 17:07:35", "94.23.45.37", "61");
INSERT INTO `wp_rg_form_view` VALUES("20239", "3", "2015-10-28 18:04:13", "91.200.12.106", "167");
INSERT INTO `wp_rg_form_view` VALUES("20240", "8", "2015-10-28 18:04:14", "91.200.12.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("20241", "3", "2015-10-28 19:07:43", "202.46.50.122", "81");
INSERT INTO `wp_rg_form_view` VALUES("20242", "8", "2015-10-28 19:07:44", "202.46.50.122", "10");
INSERT INTO `wp_rg_form_view` VALUES("20243", "9", "2015-10-28 19:19:24", "202.46.56.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("20244", "3", "2015-10-28 20:06:14", "202.46.55.66", "93");
INSERT INTO `wp_rg_form_view` VALUES("20245", "8", "2015-10-28 20:06:14", "202.46.55.66", "10");
INSERT INTO `wp_rg_form_view` VALUES("20246", "3", "2015-10-28 21:02:51", "157.55.39.205", "132");
INSERT INTO `wp_rg_form_view` VALUES("20247", "8", "2015-10-28 21:02:51", "157.55.39.205", "16");
INSERT INTO `wp_rg_form_view` VALUES("20248", "3", "2015-10-28 22:03:17", "202.46.56.182", "74");
INSERT INTO `wp_rg_form_view` VALUES("20249", "8", "2015-10-28 22:03:18", "202.46.56.182", "8");
INSERT INTO `wp_rg_form_view` VALUES("20250", "3", "2015-10-28 23:01:50", "202.46.49.108", "98");
INSERT INTO `wp_rg_form_view` VALUES("20251", "8", "2015-10-28 23:01:50", "202.46.49.108", "11");
INSERT INTO `wp_rg_form_view` VALUES("20252", "9", "2015-10-28 23:48:39", "202.46.58.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("20253", "3", "2015-10-29 00:00:22", "202.46.55.176", "78");
INSERT INTO `wp_rg_form_view` VALUES("20254", "8", "2015-10-29 00:00:22", "202.46.55.176", "8");
INSERT INTO `wp_rg_form_view` VALUES("20255", "3", "2015-10-29 01:10:37", "202.46.53.167", "177");
INSERT INTO `wp_rg_form_view` VALUES("20256", "8", "2015-10-29 01:10:38", "202.46.53.167", "20");
INSERT INTO `wp_rg_form_view` VALUES("20257", "3", "2015-10-29 02:09:09", "202.46.57.70", "89");
INSERT INTO `wp_rg_form_view` VALUES("20258", "8", "2015-10-29 02:09:09", "202.46.57.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("20259", "1", "2015-10-29 02:35:28", "137.186.69.237", "2");
INSERT INTO `wp_rg_form_view` VALUES("20260", "3", "2015-10-29 03:07:41", "202.46.51.58", "77");
INSERT INTO `wp_rg_form_view` VALUES("20261", "8", "2015-10-29 03:07:41", "202.46.51.58", "10");
INSERT INTO `wp_rg_form_view` VALUES("20262", "3", "2015-10-29 04:01:19", "96.54.177.120", "333");
INSERT INTO `wp_rg_form_view` VALUES("20263", "8", "2015-10-29 04:01:20", "96.54.177.120", "42");
INSERT INTO `wp_rg_form_view` VALUES("20264", "1", "2015-10-29 04:03:39", "96.54.177.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("20265", "2", "2015-10-29 04:38:11", "188.42.240.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("20266", "3", "2015-10-29 05:01:01", "207.216.11.190", "141");
INSERT INTO `wp_rg_form_view` VALUES("20267", "8", "2015-10-29 05:01:01", "207.216.11.190", "18");
INSERT INTO `wp_rg_form_view` VALUES("20268", "3", "2015-10-29 06:03:17", "202.46.50.139", "127");
INSERT INTO `wp_rg_form_view` VALUES("20269", "8", "2015-10-29 06:03:18", "202.46.50.139", "17");
INSERT INTO `wp_rg_form_view` VALUES("20270", "3", "2015-10-29 07:01:50", "202.46.53.203", "35");
INSERT INTO `wp_rg_form_view` VALUES("20271", "8", "2015-10-29 07:01:51", "202.46.53.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("20272", "9", "2015-10-29 08:00:22", "202.46.51.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("20273", "3", "2015-10-29 08:00:24", "202.46.51.116", "141");
INSERT INTO `wp_rg_form_view` VALUES("20274", "8", "2015-10-29 08:00:24", "202.46.51.116", "19");
INSERT INTO `wp_rg_form_view` VALUES("20275", "1", "2015-10-29 08:20:10", "192.69.254.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("20276", "3", "2015-10-29 09:10:38", "202.46.57.173", "79");
INSERT INTO `wp_rg_form_view` VALUES("20277", "8", "2015-10-29 09:10:39", "202.46.57.173", "10");
INSERT INTO `wp_rg_form_view` VALUES("20278", "1", "2015-10-29 09:31:24", "188.208.218.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("20279", "3", "2015-10-29 10:09:08", "202.46.53.164", "87");
INSERT INTO `wp_rg_form_view` VALUES("20280", "8", "2015-10-29 10:09:08", "202.46.53.164", "11");
INSERT INTO `wp_rg_form_view` VALUES("20281", "3", "2015-10-29 11:07:41", "202.46.58.192", "97");
INSERT INTO `wp_rg_form_view` VALUES("20282", "8", "2015-10-29 11:07:41", "202.46.58.192", "12");
INSERT INTO `wp_rg_form_view` VALUES("20283", "1", "2015-10-29 11:32:04", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("20284", "3", "2015-10-29 12:06:13", "202.46.56.114", "59");
INSERT INTO `wp_rg_form_view` VALUES("20285", "8", "2015-10-29 12:06:13", "202.46.56.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("20286", "3", "2015-10-29 13:04:45", "202.46.53.200", "67");
INSERT INTO `wp_rg_form_view` VALUES("20287", "8", "2015-10-29 13:04:45", "202.46.53.200", "9");
INSERT INTO `wp_rg_form_view` VALUES("20288", "8", "2015-10-29 14:03:17", "202.46.49.108", "14");
INSERT INTO `wp_rg_form_view` VALUES("20289", "3", "2015-10-29 14:03:17", "202.46.49.108", "98");
INSERT INTO `wp_rg_form_view` VALUES("20290", "3", "2015-10-29 15:01:49", "202.46.57.125", "73");
INSERT INTO `wp_rg_form_view` VALUES("20291", "8", "2015-10-29 15:01:49", "202.46.57.125", "10");
INSERT INTO `wp_rg_form_view` VALUES("20292", "3", "2015-10-29 16:00:51", "178.137.94.166", "114");
INSERT INTO `wp_rg_form_view` VALUES("20293", "3", "2015-10-29 16:00:51", "178.137.94.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("20294", "8", "2015-10-29 16:00:52", "178.137.94.166", "14");
INSERT INTO `wp_rg_form_view` VALUES("20295", "1", "2015-10-29 16:59:13", "82.211.48.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("20296", "3", "2015-10-29 17:10:37", "202.46.50.154", "76");
INSERT INTO `wp_rg_form_view` VALUES("20297", "8", "2015-10-29 17:10:37", "202.46.50.154", "10");
INSERT INTO `wp_rg_form_view` VALUES("20298", "3", "2015-10-29 18:09:10", "202.46.58.121", "132");
INSERT INTO `wp_rg_form_view` VALUES("20299", "8", "2015-10-29 18:09:10", "202.46.58.121", "18");
INSERT INTO `wp_rg_form_view` VALUES("20300", "3", "2015-10-29 19:07:41", "202.46.51.170", "66");
INSERT INTO `wp_rg_form_view` VALUES("20301", "8", "2015-10-29 19:07:42", "202.46.51.170", "8");
INSERT INTO `wp_rg_form_view` VALUES("20302", "3", "2015-10-29 20:06:13", "202.46.54.203", "70");
INSERT INTO `wp_rg_form_view` VALUES("20303", "8", "2015-10-29 20:06:13", "202.46.54.203", "9");
INSERT INTO `wp_rg_form_view` VALUES("20304", "3", "2015-10-29 21:04:45", "202.46.48.192", "75");
INSERT INTO `wp_rg_form_view` VALUES("20305", "8", "2015-10-29 21:04:45", "202.46.48.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("20306", "3", "2015-10-29 22:03:17", "202.46.55.82", "80");
INSERT INTO `wp_rg_form_view` VALUES("20307", "8", "2015-10-29 22:03:17", "202.46.55.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("20308", "1", "2015-10-29 23:01:32", "125.71.52.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("20309", "3", "2015-10-29 23:01:32", "125.71.52.196", "159");
INSERT INTO `wp_rg_form_view` VALUES("20310", "8", "2015-10-29 23:01:32", "125.71.52.196", "20");
INSERT INTO `wp_rg_form_view` VALUES("20311", "3", "2015-10-30 00:00:22", "202.46.56.69", "147");
INSERT INTO `wp_rg_form_view` VALUES("20312", "8", "2015-10-30 00:00:22", "202.46.56.69", "18");
INSERT INTO `wp_rg_form_view` VALUES("20313", "1", "2015-10-30 00:01:57", "75.157.170.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("20314", "3", "2015-10-30 01:10:36", "202.46.56.91", "182");
INSERT INTO `wp_rg_form_view` VALUES("20315", "8", "2015-10-30 01:10:37", "202.46.56.91", "23");
INSERT INTO `wp_rg_form_view` VALUES("20316", "9", "2015-10-30 01:38:03", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20317", "3", "2015-10-30 02:09:08", "202.46.52.162", "134");
INSERT INTO `wp_rg_form_view` VALUES("20318", "8", "2015-10-30 02:09:08", "202.46.52.162", "17");
INSERT INTO `wp_rg_form_view` VALUES("20319", "1", "2015-10-30 02:40:05", "24.68.101.123", "3");
INSERT INTO `wp_rg_form_view` VALUES("20320", "3", "2015-10-30 03:07:40", "202.46.53.176", "87");
INSERT INTO `wp_rg_form_view` VALUES("20321", "8", "2015-10-30 03:07:40", "202.46.53.176", "11");
INSERT INTO `wp_rg_form_view` VALUES("20322", "3", "2015-10-30 04:06:12", "202.46.50.138", "83");
INSERT INTO `wp_rg_form_view` VALUES("20323", "8", "2015-10-30 04:06:13", "202.46.50.138", "12");
INSERT INTO `wp_rg_form_view` VALUES("20324", "3", "2015-10-30 05:01:13", "207.46.13.1", "83");
INSERT INTO `wp_rg_form_view` VALUES("20325", "8", "2015-10-30 05:01:13", "207.46.13.1", "10");
INSERT INTO `wp_rg_form_view` VALUES("20326", "3", "2015-10-30 06:03:17", "202.46.50.155", "74");
INSERT INTO `wp_rg_form_view` VALUES("20327", "8", "2015-10-30 06:03:17", "202.46.50.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("20328", "3", "2015-10-30 07:01:50", "202.46.54.163", "79");
INSERT INTO `wp_rg_form_view` VALUES("20329", "8", "2015-10-30 07:01:50", "202.46.54.163", "11");
INSERT INTO `wp_rg_form_view` VALUES("20330", "3", "2015-10-30 08:00:21", "202.46.58.15", "96");
INSERT INTO `wp_rg_form_view` VALUES("20331", "8", "2015-10-30 08:00:21", "202.46.58.15", "12");
INSERT INTO `wp_rg_form_view` VALUES("20332", "3", "2015-10-30 09:10:36", "202.46.53.47", "69");
INSERT INTO `wp_rg_form_view` VALUES("20333", "8", "2015-10-30 09:10:37", "202.46.53.47", "9");
INSERT INTO `wp_rg_form_view` VALUES("20334", "3", "2015-10-30 10:07:48", "207.46.13.1", "112");
INSERT INTO `wp_rg_form_view` VALUES("20335", "8", "2015-10-30 10:07:48", "207.46.13.1", "15");
INSERT INTO `wp_rg_form_view` VALUES("20336", "9", "2015-10-30 10:55:58", "202.46.52.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("20337", "1", "2015-10-30 11:04:08", "27.159.238.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("20338", "3", "2015-10-30 11:04:08", "27.159.238.195", "108");
INSERT INTO `wp_rg_form_view` VALUES("20339", "8", "2015-10-30 11:04:09", "27.159.238.195", "15");
INSERT INTO `wp_rg_form_view` VALUES("20340", "3", "2015-10-30 12:06:12", "202.46.56.72", "128");
INSERT INTO `wp_rg_form_view` VALUES("20341", "8", "2015-10-30 12:06:12", "202.46.56.72", "17");
INSERT INTO `wp_rg_form_view` VALUES("20342", "3", "2015-10-30 13:04:45", "202.46.58.12", "109");
INSERT INTO `wp_rg_form_view` VALUES("20343", "8", "2015-10-30 13:04:48", "202.46.58.12", "14");
INSERT INTO `wp_rg_form_view` VALUES("20344", "3", "2015-10-30 14:00:19", "68.180.229.161", "97");
INSERT INTO `wp_rg_form_view` VALUES("20345", "8", "2015-10-30 14:00:19", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("20346", "3", "2015-10-30 15:01:49", "202.46.55.17", "87");
INSERT INTO `wp_rg_form_view` VALUES("20347", "8", "2015-10-30 15:01:49", "202.46.55.17", "11");
INSERT INTO `wp_rg_form_view` VALUES("20348", "3", "2015-10-30 16:00:32", "202.46.54.159", "46");
INSERT INTO `wp_rg_form_view` VALUES("20349", "8", "2015-10-30 16:00:32", "202.46.54.159", "6");
INSERT INTO `wp_rg_form_view` VALUES("20350", "5", "2015-10-30 16:48:41", "188.165.15.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("20351", "3", "2015-10-30 17:18:33", "66.249.74.102", "17");
INSERT INTO `wp_rg_form_view` VALUES("20352", "8", "2015-10-30 17:18:34", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("20353", "1", "2015-10-30 18:23:47", "45.61.46.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("20354", "3", "2015-10-30 18:23:51", "45.61.46.94", "8");
INSERT INTO `wp_rg_form_view` VALUES("20355", "8", "2015-10-30 18:23:52", "45.61.46.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("20356", "3", "2015-10-30 19:19:01", "184.66.161.95", "32");
INSERT INTO `wp_rg_form_view` VALUES("20357", "8", "2015-10-30 19:19:08", "184.66.161.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("20358", "1", "2015-10-30 19:34:28", "209.52.88.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("20359", "3", "2015-10-30 20:02:22", "64.114.18.129", "41");
INSERT INTO `wp_rg_form_view` VALUES("20360", "8", "2015-10-30 20:02:25", "64.114.18.129", "5");
INSERT INTO `wp_rg_form_view` VALUES("20361", "6", "2015-10-30 20:42:33", "104.144.172.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("20362", "2", "2015-10-30 20:59:25", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20363", "3", "2015-10-30 21:03:41", "66.249.74.104", "49");
INSERT INTO `wp_rg_form_view` VALUES("20364", "8", "2015-10-30 21:03:41", "66.249.74.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("20365", "1", "2015-10-30 21:07:49", "82.211.48.241", "2");
INSERT INTO `wp_rg_form_view` VALUES("20366", "3", "2015-10-30 22:11:41", "98.109.228.48", "56");
INSERT INTO `wp_rg_form_view` VALUES("20367", "8", "2015-10-30 22:11:42", "98.109.228.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("20368", "3", "2015-10-30 23:03:23", "24.68.130.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("20369", "8", "2015-10-30 23:03:23", "24.68.130.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("20370", "1", "2015-10-30 23:03:38", "24.68.130.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("20371", "1", "2015-10-31 00:07:17", "188.208.218.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("20372", "3", "2015-10-31 00:07:17", "188.208.218.154", "265");
INSERT INTO `wp_rg_form_view` VALUES("20373", "8", "2015-10-31 00:07:17", "188.208.218.154", "33");
INSERT INTO `wp_rg_form_view` VALUES("20374", "2", "2015-10-31 00:46:01", "98.103.22.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("20375", "3", "2015-10-31 01:07:47", "66.249.74.102", "50");
INSERT INTO `wp_rg_form_view` VALUES("20376", "8", "2015-10-31 01:07:47", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("20377", "1", "2015-10-31 02:20:04", "69.30.200.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("20378", "3", "2015-10-31 02:20:04", "69.30.200.44", "24");
INSERT INTO `wp_rg_form_view` VALUES("20379", "8", "2015-10-31 02:20:04", "69.30.200.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("20380", "2", "2015-10-31 02:20:05", "69.30.200.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("20381", "6", "2015-10-31 02:35:18", "157.55.39.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("20382", "3", "2015-10-31 03:52:03", "66.249.74.102", "17");
INSERT INTO `wp_rg_form_view` VALUES("20383", "8", "2015-10-31 03:52:06", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("20384", "1", "2015-10-31 03:58:10", "188.208.218.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("20385", "3", "2015-10-31 04:14:17", "66.249.74.102", "25");
INSERT INTO `wp_rg_form_view` VALUES("20386", "8", "2015-10-31 04:14:17", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("20387", "3", "2015-10-31 05:03:03", "157.55.39.11", "24");
INSERT INTO `wp_rg_form_view` VALUES("20388", "8", "2015-10-31 05:03:04", "157.55.39.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("20389", "3", "2015-10-31 06:32:01", "157.55.39.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("20390", "8", "2015-10-31 06:32:02", "157.55.39.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("20391", "3", "2015-10-31 07:02:39", "37.115.184.26", "95");
INSERT INTO `wp_rg_form_view` VALUES("20392", "3", "2015-10-31 07:02:39", "37.115.184.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("20393", "8", "2015-10-31 07:02:39", "37.115.184.26", "11");
INSERT INTO `wp_rg_form_view` VALUES("20394", "8", "2015-10-31 07:02:39", "37.115.184.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("20395", "1", "2015-10-31 07:15:07", "45.62.47.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("20396", "3", "2015-10-31 08:00:00", "207.46.13.104", "11");
INSERT INTO `wp_rg_form_view` VALUES("20397", "8", "2015-10-31 08:56:41", "157.55.39.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("20398", "1", "2015-10-31 09:34:07", "89.230.126.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("20399", "3", "2015-10-31 09:34:09", "89.230.126.224", "24");
INSERT INTO `wp_rg_form_view` VALUES("20400", "8", "2015-10-31 09:34:09", "89.230.126.224", "3");
INSERT INTO `wp_rg_form_view` VALUES("20401", "3", "2015-10-31 10:17:06", "207.46.13.104", "305");
INSERT INTO `wp_rg_form_view` VALUES("20402", "8", "2015-10-31 10:17:07", "207.46.13.104", "38");
INSERT INTO `wp_rg_form_view` VALUES("20403", "1", "2015-10-31 10:51:20", "98.103.22.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("20404", "2", "2015-10-31 10:51:26", "98.103.22.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("20405", "3", "2015-10-31 11:08:25", "98.103.22.238", "474");
INSERT INTO `wp_rg_form_view` VALUES("20406", "8", "2015-10-31 11:08:25", "98.103.22.238", "59");
INSERT INTO `wp_rg_form_view` VALUES("20407", "1", "2015-10-31 11:09:01", "98.103.22.238", "3");
INSERT INTO `wp_rg_form_view` VALUES("20408", "2", "2015-10-31 11:09:06", "98.103.22.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("20409", "3", "2015-10-31 12:01:07", "157.55.39.69", "24");
INSERT INTO `wp_rg_form_view` VALUES("20410", "8", "2015-10-31 12:01:07", "157.55.39.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("20411", "3", "2015-10-31 13:05:28", "68.180.229.161", "48");
INSERT INTO `wp_rg_form_view` VALUES("20412", "8", "2015-10-31 13:05:28", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("20413", "2", "2015-10-31 13:29:32", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("20414", "3", "2015-10-31 14:17:04", "46.119.123.33", "74");
INSERT INTO `wp_rg_form_view` VALUES("20415", "8", "2015-10-31 14:17:04", "46.119.123.33", "10");
INSERT INTO `wp_rg_form_view` VALUES("20416", "1", "2015-10-31 14:43:45", "89.230.126.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("20417", "3", "2015-10-31 15:15:10", "154.20.49.202", "129");
INSERT INTO `wp_rg_form_view` VALUES("20418", "8", "2015-10-31 15:15:10", "154.20.49.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("20419", "1", "2015-10-31 15:16:26", "154.20.49.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("20420", "3", "2015-10-31 16:23:10", "157.55.39.69", "92");
INSERT INTO `wp_rg_form_view` VALUES("20421", "8", "2015-10-31 16:23:10", "157.55.39.69", "12");
INSERT INTO `wp_rg_form_view` VALUES("20422", "3", "2015-10-31 17:06:25", "66.249.74.106", "61");
INSERT INTO `wp_rg_form_view` VALUES("20423", "8", "2015-10-31 17:06:25", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("20424", "3", "2015-10-31 18:09:08", "202.46.53.164", "73");
INSERT INTO `wp_rg_form_view` VALUES("20425", "8", "2015-10-31 18:09:08", "202.46.53.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("20426", "1", "2015-10-31 18:49:59", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("20427", "8", "2015-10-31 19:07:40", "202.46.57.13", "11");
INSERT INTO `wp_rg_form_view` VALUES("20428", "3", "2015-10-31 19:07:41", "202.46.57.13", "81");
INSERT INTO `wp_rg_form_view` VALUES("20429", "1", "2015-10-31 19:51:53", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("20430", "3", "2015-10-31 20:06:12", "202.46.52.16", "100");
INSERT INTO `wp_rg_form_view` VALUES("20431", "8", "2015-10-31 20:06:12", "202.46.52.16", "13");
INSERT INTO `wp_rg_form_view` VALUES("20432", "3", "2015-10-31 21:04:54", "157.55.39.78", "73");
INSERT INTO `wp_rg_form_view` VALUES("20433", "8", "2015-10-31 21:04:55", "157.55.39.78", "9");
INSERT INTO `wp_rg_form_view` VALUES("20434", "9", "2015-10-31 21:28:09", "202.46.49.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("20435", "3", "2015-10-31 22:09:21", "157.55.39.69", "85");
INSERT INTO `wp_rg_form_view` VALUES("20436", "8", "2015-10-31 22:09:21", "157.55.39.69", "11");
INSERT INTO `wp_rg_form_view` VALUES("20437", "3", "2015-10-31 23:01:49", "202.46.58.205", "67");
INSERT INTO `wp_rg_form_view` VALUES("20438", "8", "2015-10-31 23:01:50", "202.46.58.205", "9");
INSERT INTO `wp_rg_form_view` VALUES("20439", "3", "2015-11-01 00:00:20", "202.46.50.132", "84");
INSERT INTO `wp_rg_form_view` VALUES("20440", "8", "2015-11-01 00:00:20", "202.46.50.132", "10");
INSERT INTO `wp_rg_form_view` VALUES("20441", "1", "2015-11-01 01:04:11", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("20442", "3", "2015-11-01 01:04:11", "178.19.111.187", "71");
INSERT INTO `wp_rg_form_view` VALUES("20443", "8", "2015-11-01 01:04:11", "178.19.111.187", "9");
INSERT INTO `wp_rg_form_view` VALUES("20444", "3", "2015-11-01 02:09:07", "202.46.55.179", "62");
INSERT INTO `wp_rg_form_view` VALUES("20445", "8", "2015-11-01 02:09:08", "202.46.55.179", "8");
INSERT INTO `wp_rg_form_view` VALUES("20446", "3", "2015-11-01 03:07:40", "202.46.53.191", "94");
INSERT INTO `wp_rg_form_view` VALUES("20447", "8", "2015-11-01 03:07:40", "202.46.53.191", "10");
INSERT INTO `wp_rg_form_view` VALUES("20448", "1", "2015-11-01 04:04:53", "178.19.111.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("20449", "3", "2015-11-01 04:04:53", "178.19.111.187", "89");
INSERT INTO `wp_rg_form_view` VALUES("20450", "8", "2015-11-01 04:04:53", "178.19.111.187", "11");
INSERT INTO `wp_rg_form_view` VALUES("20451", "9", "2015-11-01 05:04:44", "202.46.57.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("20452", "3", "2015-11-01 05:04:44", "202.46.57.173", "56");
INSERT INTO `wp_rg_form_view` VALUES("20453", "8", "2015-11-01 05:04:44", "202.46.57.173", "7");
INSERT INTO `wp_rg_form_view` VALUES("20454", "3", "2015-11-01 06:03:16", "202.46.50.92", "79");
INSERT INTO `wp_rg_form_view` VALUES("20455", "8", "2015-11-01 06:03:17", "202.46.50.92", "10");
INSERT INTO `wp_rg_form_view` VALUES("20456", "8", "2015-11-01 07:01:48", "202.46.55.38", "11");
INSERT INTO `wp_rg_form_view` VALUES("20457", "3", "2015-11-01 07:01:48", "202.46.55.38", "73");
INSERT INTO `wp_rg_form_view` VALUES("20458", "3", "2015-11-01 08:00:21", "202.46.51.107", "96");
INSERT INTO `wp_rg_form_view` VALUES("20459", "8", "2015-11-01 08:00:21", "202.46.51.107", "14");
INSERT INTO `wp_rg_form_view` VALUES("20460", "3", "2015-11-01 09:04:02", "110.18.241.9", "77");
INSERT INTO `wp_rg_form_view` VALUES("20461", "8", "2015-11-01 09:04:03", "110.18.241.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("20462", "1", "2015-11-01 09:06:51", "178.19.111.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("20463", "3", "2015-11-01 10:00:08", "94.23.45.37", "77");
INSERT INTO `wp_rg_form_view` VALUES("20464", "8", "2015-11-01 10:00:08", "94.23.45.37", "12");
INSERT INTO `wp_rg_form_view` VALUES("20465", "3", "2015-11-01 11:07:40", "202.46.48.132", "85");
INSERT INTO `wp_rg_form_view` VALUES("20466", "8", "2015-11-01 11:07:40", "202.46.48.132", "12");
INSERT INTO `wp_rg_form_view` VALUES("20467", "3", "2015-11-01 12:06:14", "202.46.49.119", "72");
INSERT INTO `wp_rg_form_view` VALUES("20468", "8", "2015-11-01 12:06:14", "202.46.49.119", "9");
INSERT INTO `wp_rg_form_view` VALUES("20469", "3", "2015-11-01 13:16:27", "202.46.53.149", "45");
INSERT INTO `wp_rg_form_view` VALUES("20470", "8", "2015-11-01 13:16:27", "202.46.53.149", "7");
INSERT INTO `wp_rg_form_view` VALUES("20471", "3", "2015-11-01 14:03:16", "202.46.49.148", "75");
INSERT INTO `wp_rg_form_view` VALUES("20472", "8", "2015-11-01 14:03:16", "202.46.49.148", "11");
INSERT INTO `wp_rg_form_view` VALUES("20473", "3", "2015-11-01 15:01:48", "202.46.50.15", "101");
INSERT INTO `wp_rg_form_view` VALUES("20474", "8", "2015-11-01 15:01:48", "202.46.50.15", "14");
INSERT INTO `wp_rg_form_view` VALUES("20475", "3", "2015-11-01 16:00:20", "202.46.49.114", "39");
INSERT INTO `wp_rg_form_view` VALUES("20476", "8", "2015-11-01 16:00:20", "202.46.49.114", "5");
INSERT INTO `wp_rg_form_view` VALUES("20477", "3", "2015-11-01 17:04:18", "188.165.15.237", "17");
INSERT INTO `wp_rg_form_view` VALUES("20478", "8", "2015-11-01 17:04:18", "188.165.15.237", "2");
INSERT INTO `wp_rg_form_view` VALUES("20479", "3", "2015-11-01 18:06:15", "77.75.76.161", "57");
INSERT INTO `wp_rg_form_view` VALUES("20480", "8", "2015-11-01 18:06:15", "77.75.76.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("20481", "3", "2015-11-01 19:08:44", "212.83.177.193", "17");
INSERT INTO `wp_rg_form_view` VALUES("20482", "8", "2015-11-01 19:08:44", "212.83.177.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("20483", "3", "2015-11-01 20:16:23", "66.249.74.104", "56");
INSERT INTO `wp_rg_form_view` VALUES("20484", "8", "2015-11-01 20:16:24", "66.249.74.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("20485", "3", "2015-11-01 21:52:57", "207.46.13.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("20486", "8", "2015-11-01 21:53:00", "207.46.13.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("20487", "3", "2015-11-01 22:44:06", "68.180.229.161", "50");
INSERT INTO `wp_rg_form_view` VALUES("20488", "8", "2015-11-01 22:44:07", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("20489", "3", "2015-11-01 23:07:44", "66.249.74.102", "25");
INSERT INTO `wp_rg_form_view` VALUES("20490", "8", "2015-11-01 23:07:44", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("20491", "3", "2015-11-02 00:07:48", "178.137.94.166", "314");
INSERT INTO `wp_rg_form_view` VALUES("20492", "8", "2015-11-02 00:07:48", "178.137.94.166", "39");
INSERT INTO `wp_rg_form_view` VALUES("20493", "1", "2015-11-02 00:12:03", "195.145.136.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("20494", "2", "2015-11-02 00:12:11", "195.145.136.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("20495", "3", "2015-11-02 01:06:52", "157.55.39.240", "106");
INSERT INTO `wp_rg_form_view` VALUES("20496", "8", "2015-11-02 01:06:53", "157.55.39.240", "16");
INSERT INTO `wp_rg_form_view` VALUES("20497", "1", "2015-11-02 01:26:02", "192.3.177.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("20498", "2", "2015-11-02 02:32:59", "104.131.25.244", "2");
INSERT INTO `wp_rg_form_view` VALUES("20499", "1", "2015-11-02 02:32:59", "104.131.25.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("20500", "3", "2015-11-02 02:32:59", "104.131.25.244", "171");
INSERT INTO `wp_rg_form_view` VALUES("20501", "8", "2015-11-02 02:33:02", "104.131.25.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("20502", "8", "2015-11-02 02:33:02", "104.131.25.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("20503", "3", "2015-11-02 04:18:26", "66.249.74.106", "49");
INSERT INTO `wp_rg_form_view` VALUES("20504", "8", "2015-11-02 04:18:27", "66.249.74.106", "7");
INSERT INTO `wp_rg_form_view` VALUES("20505", "3", "2015-11-02 05:00:06", "68.180.229.161", "145");
INSERT INTO `wp_rg_form_view` VALUES("20506", "8", "2015-11-02 05:00:06", "68.180.229.161", "19");
INSERT INTO `wp_rg_form_view` VALUES("20507", "9", "2015-11-02 05:09:30", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20508", "1", "2015-11-02 05:23:00", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("20509", "3", "2015-11-02 06:03:16", "202.46.54.12", "73");
INSERT INTO `wp_rg_form_view` VALUES("20510", "8", "2015-11-02 06:03:16", "202.46.54.12", "11");
INSERT INTO `wp_rg_form_view` VALUES("20511", "3", "2015-11-02 07:01:48", "202.46.52.148", "82");
INSERT INTO `wp_rg_form_view` VALUES("20512", "8", "2015-11-02 07:01:48", "202.46.52.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("20513", "3", "2015-11-02 08:09:26", "202.46.52.66", "93");
INSERT INTO `wp_rg_form_view` VALUES("20514", "8", "2015-11-02 08:09:26", "202.46.52.66", "13");
INSERT INTO `wp_rg_form_view` VALUES("20515", "3", "2015-11-02 09:06:17", "46.119.123.33", "118");
INSERT INTO `wp_rg_form_view` VALUES("20516", "8", "2015-11-02 09:06:17", "46.119.123.33", "15");
INSERT INTO `wp_rg_form_view` VALUES("20517", "8", "2015-11-02 10:09:42", "202.46.58.191", "10");
INSERT INTO `wp_rg_form_view` VALUES("20518", "3", "2015-11-02 10:09:42", "202.46.58.191", "61");
INSERT INTO `wp_rg_form_view` VALUES("20519", "3", "2015-11-02 11:06:29", "68.180.229.161", "96");
INSERT INTO `wp_rg_form_view` VALUES("20520", "8", "2015-11-02 11:06:29", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("20521", "3", "2015-11-02 12:06:46", "202.46.57.182", "70");
INSERT INTO `wp_rg_form_view` VALUES("20522", "8", "2015-11-02 12:06:46", "202.46.57.182", "9");
INSERT INTO `wp_rg_form_view` VALUES("20523", "3", "2015-11-02 13:05:18", "202.46.54.32", "85");
INSERT INTO `wp_rg_form_view` VALUES("20524", "8", "2015-11-02 13:05:18", "202.46.54.32", "13");
INSERT INTO `wp_rg_form_view` VALUES("20525", "3", "2015-11-02 14:03:51", "202.46.48.90", "92");
INSERT INTO `wp_rg_form_view` VALUES("20526", "8", "2015-11-02 14:03:51", "202.46.48.90", "12");
INSERT INTO `wp_rg_form_view` VALUES("20527", "3", "2015-11-02 15:02:22", "202.46.56.16", "59");
INSERT INTO `wp_rg_form_view` VALUES("20528", "8", "2015-11-02 15:02:22", "202.46.56.16", "8");
INSERT INTO `wp_rg_form_view` VALUES("20529", "3", "2015-11-02 16:00:59", "202.46.52.104", "108");
INSERT INTO `wp_rg_form_view` VALUES("20530", "8", "2015-11-02 16:00:59", "202.46.52.104", "15");
INSERT INTO `wp_rg_form_view` VALUES("20531", "3", "2015-11-02 17:11:13", "202.46.50.17", "122");
INSERT INTO `wp_rg_form_view` VALUES("20532", "8", "2015-11-02 17:11:13", "202.46.50.17", "17");
INSERT INTO `wp_rg_form_view` VALUES("20533", "1", "2015-11-02 17:41:52", "23.94.16.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("20534", "3", "2015-11-02 18:08:54", "192.171.45.200", "177");
INSERT INTO `wp_rg_form_view` VALUES("20535", "8", "2015-11-02 18:08:54", "192.171.45.200", "23");
INSERT INTO `wp_rg_form_view` VALUES("20536", "7", "2015-11-02 18:15:51", "157.55.39.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("20537", "1", "2015-11-02 18:36:18", "192.171.45.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("20538", "3", "2015-11-02 19:08:14", "202.46.54.191", "96");
INSERT INTO `wp_rg_form_view` VALUES("20539", "8", "2015-11-02 19:08:14", "202.46.54.191", "13");
INSERT INTO `wp_rg_form_view` VALUES("20540", "1", "2015-11-02 19:30:10", "138.128.44.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("20541", "3", "2015-11-02 20:06:46", "202.46.57.151", "108");
INSERT INTO `wp_rg_form_view` VALUES("20542", "8", "2015-11-02 20:06:46", "202.46.57.151", "15");
INSERT INTO `wp_rg_form_view` VALUES("20543", "1", "2015-11-02 20:46:05", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("20544", "3", "2015-11-02 21:05:18", "202.46.53.43", "135");
INSERT INTO `wp_rg_form_view` VALUES("20545", "8", "2015-11-02 21:05:18", "202.46.53.43", "18");
INSERT INTO `wp_rg_form_view` VALUES("20546", "3", "2015-11-02 22:03:10", "192.171.45.200", "127");
INSERT INTO `wp_rg_form_view` VALUES("20547", "8", "2015-11-02 22:03:11", "192.171.45.200", "16");
INSERT INTO `wp_rg_form_view` VALUES("20548", "1", "2015-11-02 22:50:07", "45.62.47.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("20549", "2", "2015-11-02 23:00:56", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20550", "3", "2015-11-02 23:00:56", "192.171.45.200", "111");
INSERT INTO `wp_rg_form_view` VALUES("20551", "8", "2015-11-02 23:00:56", "192.171.45.200", "13");
INSERT INTO `wp_rg_form_view` VALUES("20552", "3", "2015-11-03 00:00:54", "202.46.50.87", "106");
INSERT INTO `wp_rg_form_view` VALUES("20553", "8", "2015-11-03 00:00:54", "202.46.50.87", "14");
INSERT INTO `wp_rg_form_view` VALUES("20554", "3", "2015-11-03 01:11:10", "202.46.52.206", "139");
INSERT INTO `wp_rg_form_view` VALUES("20555", "8", "2015-11-03 01:11:10", "202.46.52.206", "20");
INSERT INTO `wp_rg_form_view` VALUES("20556", "2", "2015-11-03 01:24:31", "157.55.39.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("20557", "3", "2015-11-03 02:06:44", "24.69.36.80", "88");
INSERT INTO `wp_rg_form_view` VALUES("20558", "8", "2015-11-03 02:06:44", "24.69.36.80", "11");
INSERT INTO `wp_rg_form_view` VALUES("20559", "3", "2015-11-03 03:08:14", "202.46.57.205", "167");
INSERT INTO `wp_rg_form_view` VALUES("20560", "8", "2015-11-03 03:08:14", "202.46.57.205", "22");
INSERT INTO `wp_rg_form_view` VALUES("20561", "3", "2015-11-03 04:06:46", "202.46.52.118", "95");
INSERT INTO `wp_rg_form_view` VALUES("20562", "8", "2015-11-03 04:06:46", "202.46.52.118", "12");
INSERT INTO `wp_rg_form_view` VALUES("20563", "1", "2015-11-03 04:28:47", "192.241.106.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("20564", "3", "2015-11-03 05:05:18", "202.46.48.141", "70");
INSERT INTO `wp_rg_form_view` VALUES("20565", "8", "2015-11-03 05:05:19", "202.46.48.141", "10");
INSERT INTO `wp_rg_form_view` VALUES("20566", "1", "2015-11-03 05:24:26", "192.186.152.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("20567", "3", "2015-11-03 06:03:50", "202.46.56.15", "196");
INSERT INTO `wp_rg_form_view` VALUES("20568", "8", "2015-11-03 06:03:50", "202.46.56.15", "25");
INSERT INTO `wp_rg_form_view` VALUES("20569", "1", "2015-11-03 06:59:30", "104.140.83.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("20570", "3", "2015-11-03 07:00:00", "104.218.192.25", "117");
INSERT INTO `wp_rg_form_view` VALUES("20571", "8", "2015-11-03 07:00:00", "104.218.192.25", "17");
INSERT INTO `wp_rg_form_view` VALUES("20572", "5", "2015-11-03 07:15:53", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20573", "3", "2015-11-03 08:00:54", "202.46.52.16", "144");
INSERT INTO `wp_rg_form_view` VALUES("20574", "8", "2015-11-03 08:00:54", "202.46.52.16", "18");
INSERT INTO `wp_rg_form_view` VALUES("20575", "3", "2015-11-03 09:03:05", "192.171.45.200", "104");
INSERT INTO `wp_rg_form_view` VALUES("20576", "8", "2015-11-03 09:03:05", "192.171.45.200", "12");
INSERT INTO `wp_rg_form_view` VALUES("20577", "1", "2015-11-03 09:06:35", "27.159.237.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("20578", "3", "2015-11-03 10:08:05", "192.171.45.200", "89");
INSERT INTO `wp_rg_form_view` VALUES("20579", "8", "2015-11-03 10:08:06", "192.171.45.200", "14");
INSERT INTO `wp_rg_form_view` VALUES("20580", "3", "2015-11-03 11:08:13", "202.46.52.68", "154");
INSERT INTO `wp_rg_form_view` VALUES("20581", "8", "2015-11-03 11:08:13", "202.46.52.68", "21");
INSERT INTO `wp_rg_form_view` VALUES("20582", "1", "2015-11-03 11:47:56", "192.186.147.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20583", "3", "2015-11-03 12:05:04", "68.64.167.146", "134");
INSERT INTO `wp_rg_form_view` VALUES("20584", "8", "2015-11-03 12:05:05", "68.64.167.146", "17");
INSERT INTO `wp_rg_form_view` VALUES("20585", "1", "2015-11-03 12:27:04", "193.201.224.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("20586", "3", "2015-11-03 13:05:18", "202.46.58.76", "83");
INSERT INTO `wp_rg_form_view` VALUES("20587", "8", "2015-11-03 13:05:18", "202.46.58.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("20588", "3", "2015-11-03 14:03:50", "202.46.54.101", "85");
INSERT INTO `wp_rg_form_view` VALUES("20589", "8", "2015-11-03 14:03:50", "202.46.54.101", "12");
INSERT INTO `wp_rg_form_view` VALUES("20590", "3", "2015-11-03 15:02:22", "202.46.52.17", "87");
INSERT INTO `wp_rg_form_view` VALUES("20591", "8", "2015-11-03 15:02:23", "202.46.52.17", "10");
INSERT INTO `wp_rg_form_view` VALUES("20592", "8", "2015-11-03 16:00:57", "202.46.54.117", "14");
INSERT INTO `wp_rg_form_view` VALUES("20593", "3", "2015-11-03 16:00:57", "202.46.54.117", "103");
INSERT INTO `wp_rg_form_view` VALUES("20594", "3", "2015-11-03 17:10:42", "209.52.88.56", "104");
INSERT INTO `wp_rg_form_view` VALUES("20595", "8", "2015-11-03 17:10:42", "209.52.88.56", "15");
INSERT INTO `wp_rg_form_view` VALUES("20596", "3", "2015-11-03 18:09:41", "202.46.53.48", "110");
INSERT INTO `wp_rg_form_view` VALUES("20597", "8", "2015-11-03 18:09:41", "202.46.53.48", "14");
INSERT INTO `wp_rg_form_view` VALUES("20598", "3", "2015-11-03 19:08:13", "202.46.58.75", "96");
INSERT INTO `wp_rg_form_view` VALUES("20599", "8", "2015-11-03 19:08:13", "202.46.58.75", "13");
INSERT INTO `wp_rg_form_view` VALUES("20600", "3", "2015-11-03 20:06:45", "202.46.56.206", "123");
INSERT INTO `wp_rg_form_view` VALUES("20601", "8", "2015-11-03 20:06:45", "202.46.56.206", "17");
INSERT INTO `wp_rg_form_view` VALUES("20602", "6", "2015-11-03 20:54:35", "5.9.112.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("20603", "3", "2015-11-03 21:05:17", "202.46.51.119", "256");
INSERT INTO `wp_rg_form_view` VALUES("20604", "8", "2015-11-03 21:05:17", "202.46.51.119", "32");
INSERT INTO `wp_rg_form_view` VALUES("20605", "1", "2015-11-03 21:42:04", "8.28.16.254", "4");
INSERT INTO `wp_rg_form_view` VALUES("20606", "3", "2015-11-03 22:03:49", "202.46.58.113", "210");
INSERT INTO `wp_rg_form_view` VALUES("20607", "8", "2015-11-03 22:03:49", "202.46.58.113", "28");
INSERT INTO `wp_rg_form_view` VALUES("20608", "1", "2015-11-03 22:17:38", "184.69.27.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("20609", "3", "2015-11-03 23:02:23", "202.46.48.81", "102");
INSERT INTO `wp_rg_form_view` VALUES("20610", "8", "2015-11-03 23:02:23", "202.46.48.81", "14");
INSERT INTO `wp_rg_form_view` VALUES("20611", "3", "2015-11-04 00:00:54", "202.46.48.207", "154");
INSERT INTO `wp_rg_form_view` VALUES("20612", "8", "2015-11-04 00:00:54", "202.46.48.207", "20");
INSERT INTO `wp_rg_form_view` VALUES("20613", "9", "2015-11-04 01:08:12", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20614", "3", "2015-11-04 01:08:12", "192.171.45.200", "80");
INSERT INTO `wp_rg_form_view` VALUES("20615", "8", "2015-11-04 01:08:12", "192.171.45.200", "12");
INSERT INTO `wp_rg_form_view` VALUES("20616", "1", "2015-11-04 01:19:09", "204.44.74.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("20617", "3", "2015-11-04 02:09:38", "66.249.74.106", "109");
INSERT INTO `wp_rg_form_view` VALUES("20618", "8", "2015-11-04 02:09:38", "66.249.74.106", "14");
INSERT INTO `wp_rg_form_view` VALUES("20619", "3", "2015-11-04 03:08:13", "202.46.55.183", "168");
INSERT INTO `wp_rg_form_view` VALUES("20620", "8", "2015-11-04 03:08:13", "202.46.55.183", "21");
INSERT INTO `wp_rg_form_view` VALUES("20621", "3", "2015-11-04 04:06:45", "202.46.57.39", "89");
INSERT INTO `wp_rg_form_view` VALUES("20622", "8", "2015-11-04 04:06:45", "202.46.57.39", "12");
INSERT INTO `wp_rg_form_view` VALUES("20623", "3", "2015-11-04 05:01:09", "68.180.229.161", "88");
INSERT INTO `wp_rg_form_view` VALUES("20624", "8", "2015-11-04 05:01:09", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("20625", "1", "2015-11-04 05:04:40", "138.128.51.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("20626", "2", "2015-11-04 06:00:05", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("20627", "3", "2015-11-04 06:00:05", "204.12.239.250", "175");
INSERT INTO `wp_rg_form_view` VALUES("20628", "8", "2015-11-04 06:00:05", "204.12.239.250", "24");
INSERT INTO `wp_rg_form_view` VALUES("20629", "3", "2015-11-04 07:02:23", "202.46.58.157", "105");
INSERT INTO `wp_rg_form_view` VALUES("20630", "8", "2015-11-04 07:02:23", "202.46.58.157", "13");
INSERT INTO `wp_rg_form_view` VALUES("20631", "3", "2015-11-04 08:00:55", "202.46.52.66", "100");
INSERT INTO `wp_rg_form_view` VALUES("20632", "8", "2015-11-04 08:00:55", "202.46.52.66", "15");
INSERT INTO `wp_rg_form_view` VALUES("20633", "1", "2015-11-04 08:42:20", "155.94.237.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("20634", "3", "2015-11-04 09:01:32", "204.12.239.250", "125");
INSERT INTO `wp_rg_form_view` VALUES("20635", "8", "2015-11-04 09:01:32", "204.12.239.250", "17");
INSERT INTO `wp_rg_form_view` VALUES("20636", "5", "2015-11-04 09:05:08", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20637", "9", "2015-11-04 09:47:02", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20638", "3", "2015-11-04 10:05:33", "207.46.13.27", "89");
INSERT INTO `wp_rg_form_view` VALUES("20639", "8", "2015-11-04 10:05:34", "207.46.13.27", "11");
INSERT INTO `wp_rg_form_view` VALUES("20640", "3", "2015-11-04 11:02:36", "85.85.253.184", "378");
INSERT INTO `wp_rg_form_view` VALUES("20641", "8", "2015-11-04 11:02:36", "85.85.253.184", "47");
INSERT INTO `wp_rg_form_view` VALUES("20642", "1", "2015-11-04 11:03:31", "85.85.253.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("20643", "2", "2015-11-04 11:03:39", "85.85.253.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("20644", "5", "2015-11-04 11:04:20", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20645", "1", "2015-11-04 12:02:57", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("20646", "3", "2015-11-04 12:02:57", "204.12.239.250", "82");
INSERT INTO `wp_rg_form_view` VALUES("20647", "8", "2015-11-04 12:02:57", "204.12.239.250", "11");
INSERT INTO `wp_rg_form_view` VALUES("20648", "3", "2015-11-04 13:05:17", "202.46.51.117", "85");
INSERT INTO `wp_rg_form_view` VALUES("20649", "8", "2015-11-04 13:05:17", "202.46.51.117", "11");
INSERT INTO `wp_rg_form_view` VALUES("20650", "3", "2015-11-04 14:03:49", "202.46.51.112", "157");
INSERT INTO `wp_rg_form_view` VALUES("20651", "8", "2015-11-04 14:03:49", "202.46.51.112", "20");
INSERT INTO `wp_rg_form_view` VALUES("20652", "1", "2015-11-04 14:25:29", "204.44.84.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("20653", "3", "2015-11-04 15:02:21", "202.46.51.82", "288");
INSERT INTO `wp_rg_form_view` VALUES("20654", "8", "2015-11-04 15:02:22", "202.46.51.82", "37");
INSERT INTO `wp_rg_form_view` VALUES("20655", "3", "2015-11-04 16:00:00", "46.119.123.33", "42");
INSERT INTO `wp_rg_form_view` VALUES("20656", "8", "2015-11-04 16:00:00", "46.119.123.33", "5");
INSERT INTO `wp_rg_form_view` VALUES("20657", "3", "2015-11-04 17:08:04", "157.55.39.138", "74");
INSERT INTO `wp_rg_form_view` VALUES("20658", "8", "2015-11-04 17:08:04", "157.55.39.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("20659", "3", "2015-11-04 18:01:29", "207.46.13.186", "16");
INSERT INTO `wp_rg_form_view` VALUES("20660", "8", "2015-11-04 18:01:29", "207.46.13.186", "2");
INSERT INTO `wp_rg_form_view` VALUES("20661", "3", "2015-11-04 19:18:42", "100.43.81.152", "36");
INSERT INTO `wp_rg_form_view` VALUES("20662", "8", "2015-11-04 19:18:42", "100.43.81.152", "4");
INSERT INTO `wp_rg_form_view` VALUES("20663", "3", "2015-11-04 20:01:31", "192.40.236.6", "128");
INSERT INTO `wp_rg_form_view` VALUES("20664", "8", "2015-11-04 20:01:31", "192.40.236.6", "16");
INSERT INTO `wp_rg_form_view` VALUES("20665", "1", "2015-11-04 20:31:52", "8.28.16.254", "4");
INSERT INTO `wp_rg_form_view` VALUES("20666", "3", "2015-11-04 22:07:20", "24.69.72.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("20667", "3", "2015-11-04 23:15:10", "192.171.45.200", "49");
INSERT INTO `wp_rg_form_view` VALUES("20668", "3", "2015-11-05 00:00:26", "184.71.18.250", "110");
INSERT INTO `wp_rg_form_view` VALUES("20669", "1", "2015-11-05 00:40:27", "107.173.19.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("20670", "3", "2015-11-05 01:02:26", "154.5.211.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("20671", "3", "2015-11-05 02:04:45", "184.66.143.127", "13");
INSERT INTO `wp_rg_form_view` VALUES("20672", "9", "2015-11-05 02:57:42", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20673", "1", "2015-11-05 03:01:38", "208.115.124.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("20674", "3", "2015-11-05 03:01:38", "208.115.124.146", "20");
INSERT INTO `wp_rg_form_view` VALUES("20675", "2", "2015-11-05 03:31:42", "204.12.239.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("20676", "3", "2015-11-05 04:07:38", "66.249.74.102", "16");
INSERT INTO `wp_rg_form_view` VALUES("20677", "3", "2015-11-05 05:05:17", "202.46.51.164", "30");
INSERT INTO `wp_rg_form_view` VALUES("20678", "3", "2015-11-05 06:03:49", "202.46.57.73", "42");
INSERT INTO `wp_rg_form_view` VALUES("20679", "3", "2015-11-05 07:02:30", "202.46.48.146", "59");
INSERT INTO `wp_rg_form_view` VALUES("20680", "3", "2015-11-05 08:00:53", "202.46.55.124", "38");
INSERT INTO `wp_rg_form_view` VALUES("20681", "3", "2015-11-05 09:11:09", "202.46.53.157", "47");
INSERT INTO `wp_rg_form_view` VALUES("20682", "3", "2015-11-05 10:09:40", "202.46.54.71", "41");
INSERT INTO `wp_rg_form_view` VALUES("20683", "3", "2015-11-05 11:08:12", "202.46.50.122", "113");
INSERT INTO `wp_rg_form_view` VALUES("20684", "3", "2015-11-05 12:10:14", "202.46.57.202", "44");
INSERT INTO `wp_rg_form_view` VALUES("20685", "9", "2015-11-05 12:18:09", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20686", "3", "2015-11-05 13:02:54", "157.55.39.141", "36");
INSERT INTO `wp_rg_form_view` VALUES("20687", "3", "2015-11-05 14:03:14", "207.46.13.167", "66");
INSERT INTO `wp_rg_form_view` VALUES("20688", "9", "2015-11-05 14:48:48", "192.171.45.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("20689", "3", "2015-11-05 15:02:21", "202.46.57.160", "33");
INSERT INTO `wp_rg_form_view` VALUES("20690", "3", "2015-11-05 16:00:53", "202.46.54.137", "62");
INSERT INTO `wp_rg_form_view` VALUES("20691", "3", "2015-11-05 17:07:48", "68.180.229.161", "47");
INSERT INTO `wp_rg_form_view` VALUES("20692", "3", "2015-11-05 18:03:36", "157.55.39.34", "76");
INSERT INTO `wp_rg_form_view` VALUES("20693", "2", "2015-11-05 18:39:09", "136.243.10.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("20694", "1", "2015-11-05 18:39:11", "136.243.10.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("20695", "3", "2015-11-05 19:08:12", "202.46.50.198", "62");
INSERT INTO `wp_rg_form_view` VALUES("20696", "1", "2015-11-05 19:59:05", "155.94.134.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("20697", "3", "2015-11-05 20:06:44", "202.46.52.204", "47");
INSERT INTO `wp_rg_form_view` VALUES("20698", "3", "2015-11-05 21:01:08", "68.180.229.161", "34");
INSERT INTO `wp_rg_form_view` VALUES("20699", "3", "2015-11-05 22:03:51", "202.46.49.134", "49");
INSERT INTO `wp_rg_form_view` VALUES("20700", "3", "2015-11-05 23:02:21", "202.46.56.18", "49");
INSERT INTO `wp_rg_form_view` VALUES("20701", "1", "2015-11-05 23:50:56", "192.99.166.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("20702", "3", "2015-11-06 00:00:53", "202.46.52.150", "49");
INSERT INTO `wp_rg_form_view` VALUES("20703", "3", "2015-11-06 01:07:46", "24.68.140.117", "44");
INSERT INTO `wp_rg_form_view` VALUES("20704", "3", "2015-11-06 02:09:39", "202.46.49.66", "33");
INSERT INTO `wp_rg_form_view` VALUES("20705", "3", "2015-11-06 03:08:14", "202.46.56.190", "38");
INSERT INTO `wp_rg_form_view` VALUES("20706", "3", "2015-11-06 04:06:44", "202.46.53.118", "44");
INSERT INTO `wp_rg_form_view` VALUES("20707", "3", "2015-11-06 05:04:39", "66.249.74.102", "39");
INSERT INTO `wp_rg_form_view` VALUES("20708", "3", "2015-11-06 06:03:48", "202.46.53.190", "42");
INSERT INTO `wp_rg_form_view` VALUES("20709", "3", "2015-11-06 07:02:21", "202.46.51.139", "32");
INSERT INTO `wp_rg_form_view` VALUES("20710", "3", "2015-11-06 08:00:54", "202.46.55.124", "44");
INSERT INTO `wp_rg_form_view` VALUES("20711", "1", "2015-11-06 08:07:52", "191.101.121.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("20712", "3", "2015-11-06 09:11:14", "202.46.58.151", "34");
INSERT INTO `wp_rg_form_view` VALUES("20713", "3", "2015-11-06 10:09:43", "202.46.53.119", "50");
INSERT INTO `wp_rg_form_view` VALUES("20714", "3", "2015-11-06 11:08:12", "202.46.54.16", "58");
INSERT INTO `wp_rg_form_view` VALUES("20715", "2", "2015-11-06 11:14:16", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("20716", "3", "2015-11-06 12:06:44", "202.46.53.59", "34");
INSERT INTO `wp_rg_form_view` VALUES("20717", "3", "2015-11-06 13:05:16", "202.46.51.139", "35");
INSERT INTO `wp_rg_form_view` VALUES("20718", "3", "2015-11-06 14:03:48", "202.46.48.123", "34");
INSERT INTO `wp_rg_form_view` VALUES("20719", "3", "2015-11-06 15:02:20", "202.46.53.176", "32");
INSERT INTO `wp_rg_form_view` VALUES("20720", "3", "2015-11-06 16:00:53", "202.46.58.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("20721", "3", "2015-11-06 17:07:26", "207.216.9.31", "45");
INSERT INTO `wp_rg_form_view` VALUES("20722", "3", "2015-11-06 18:46:48", "188.165.15.78", "8");
INSERT INTO `wp_rg_form_view` VALUES("20723", "3", "2015-11-06 19:00:14", "207.46.13.2", "30");
INSERT INTO `wp_rg_form_view` VALUES("20724", "1", "2015-11-06 19:15:55", "188.208.218.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("20725", "3", "2015-11-06 20:45:13", "66.249.74.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("20726", "3", "2015-11-06 21:04:50", "184.71.26.154", "40");
INSERT INTO `wp_rg_form_view` VALUES("20727", "1", "2015-11-06 21:05:07", "184.71.26.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("20728", "2", "2015-11-06 21:05:15", "184.71.26.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("20729", "3", "2015-11-06 22:04:40", "66.249.74.104", "53");
INSERT INTO `wp_rg_form_view` VALUES("20730", "1", "2015-11-06 22:41:33", "24.108.76.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("20731", "3", "2015-11-06 23:02:08", "207.194.133.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("20732", "3", "2015-11-07 00:11:29", "216.232.148.65", "16");
INSERT INTO `wp_rg_form_view` VALUES("20733", "3", "2015-11-07 01:43:10", "96.50.29.185", "4");
INSERT INTO `wp_rg_form_view` VALUES("20734", "3", "2015-11-07 02:18:23", "207.46.13.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("20735", "3", "2015-11-07 03:20:03", "207.46.13.11", "26");
INSERT INTO `wp_rg_form_view` VALUES("20736", "3", "2015-11-07 04:04:42", "68.180.229.161", "70");
INSERT INTO `wp_rg_form_view` VALUES("20737", "9", "2015-11-07 04:45:45", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20738", "3", "2015-11-07 05:05:16", "202.46.55.149", "29");
INSERT INTO `wp_rg_form_view` VALUES("20739", "3", "2015-11-07 06:03:48", "202.46.52.160", "27");
INSERT INTO `wp_rg_form_view` VALUES("20740", "3", "2015-11-07 07:02:24", "202.46.49.108", "38");
INSERT INTO `wp_rg_form_view` VALUES("20741", "3", "2015-11-07 08:00:54", "202.46.53.192", "33");
INSERT INTO `wp_rg_form_view` VALUES("20742", "7", "2015-11-07 08:47:42", "202.46.58.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("20743", "3", "2015-11-07 09:00:02", "207.46.13.62", "69");
INSERT INTO `wp_rg_form_view` VALUES("20744", "1", "2015-11-07 09:41:09", "67.87.164.32", "2");
INSERT INTO `wp_rg_form_view` VALUES("20745", "3", "2015-11-07 10:09:45", "202.46.56.39", "167");
INSERT INTO `wp_rg_form_view` VALUES("20746", "1", "2015-11-07 10:49:52", "70.35.198.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("20747", "2", "2015-11-07 10:49:57", "70.35.198.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("20748", "3", "2015-11-07 11:08:11", "202.46.50.182", "31");
INSERT INTO `wp_rg_form_view` VALUES("20749", "3", "2015-11-07 12:06:44", "202.46.50.137", "49");
INSERT INTO `wp_rg_form_view` VALUES("20750", "3", "2015-11-07 13:05:15", "202.46.51.196", "39");
INSERT INTO `wp_rg_form_view` VALUES("20751", "3", "2015-11-07 14:03:48", "202.46.48.82", "58");
INSERT INTO `wp_rg_form_view` VALUES("20752", "3", "2015-11-07 15:02:20", "202.46.53.49", "44");
INSERT INTO `wp_rg_form_view` VALUES("20753", "1", "2015-11-07 15:37:07", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20754", "3", "2015-11-07 16:00:52", "202.46.54.183", "38");
INSERT INTO `wp_rg_form_view` VALUES("20755", "3", "2015-11-07 17:11:06", "202.46.55.125", "69");
INSERT INTO `wp_rg_form_view` VALUES("20756", "3", "2015-11-07 18:01:09", "91.200.12.25", "44");
INSERT INTO `wp_rg_form_view` VALUES("20757", "3", "2015-11-07 19:08:11", "202.46.58.55", "36");
INSERT INTO `wp_rg_form_view` VALUES("20758", "3", "2015-11-07 20:06:43", "202.46.50.180", "67");
INSERT INTO `wp_rg_form_view` VALUES("20759", "6", "2015-11-07 20:54:16", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20760", "3", "2015-11-07 21:05:16", "202.46.54.137", "63");
INSERT INTO `wp_rg_form_view` VALUES("20761", "3", "2015-11-07 22:03:47", "202.46.56.189", "57");
INSERT INTO `wp_rg_form_view` VALUES("20762", "1", "2015-11-07 23:00:00", "5.153.237.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("20763", "3", "2015-11-07 23:00:00", "5.153.237.180", "53");
INSERT INTO `wp_rg_form_view` VALUES("20764", "3", "2015-11-08 00:00:53", "202.46.55.134", "54");
INSERT INTO `wp_rg_form_view` VALUES("20765", "3", "2015-11-08 01:11:07", "202.46.48.142", "34");
INSERT INTO `wp_rg_form_view` VALUES("20766", "3", "2015-11-08 02:09:40", "202.46.58.76", "45");
INSERT INTO `wp_rg_form_view` VALUES("20767", "3", "2015-11-08 03:01:30", "68.180.229.161", "36");
INSERT INTO `wp_rg_form_view` VALUES("20768", "1", "2015-11-08 04:03:58", "178.175.184.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("20769", "3", "2015-11-08 04:03:58", "178.175.184.224", "73");
INSERT INTO `wp_rg_form_view` VALUES("20770", "3", "2015-11-08 05:05:15", "202.46.55.38", "33");
INSERT INTO `wp_rg_form_view` VALUES("20771", "3", "2015-11-08 06:03:47", "202.46.58.16", "42");
INSERT INTO `wp_rg_form_view` VALUES("20772", "3", "2015-11-08 07:02:20", "202.46.57.204", "49");
INSERT INTO `wp_rg_form_view` VALUES("20773", "3", "2015-11-08 08:00:53", "202.46.58.164", "48");
INSERT INTO `wp_rg_form_view` VALUES("20774", "3", "2015-11-08 09:11:07", "202.46.52.102", "32");
INSERT INTO `wp_rg_form_view` VALUES("20775", "3", "2015-11-08 10:09:38", "202.46.53.204", "38");
INSERT INTO `wp_rg_form_view` VALUES("20776", "3", "2015-11-08 11:06:34", "40.77.167.80", "78");
INSERT INTO `wp_rg_form_view` VALUES("20777", "1", "2015-11-08 11:15:54", "40.77.167.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("20778", "2", "2015-11-08 11:16:09", "40.77.167.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("20779", "3", "2015-11-08 12:06:27", "157.55.39.64", "53");
INSERT INTO `wp_rg_form_view` VALUES("20780", "3", "2015-11-08 13:05:15", "202.46.55.152", "44");
INSERT INTO `wp_rg_form_view` VALUES("20781", "3", "2015-11-08 14:03:47", "202.46.48.87", "30");
INSERT INTO `wp_rg_form_view` VALUES("20782", "3", "2015-11-08 15:02:19", "202.46.55.151", "30");
INSERT INTO `wp_rg_form_view` VALUES("20783", "3", "2015-11-08 16:00:51", "202.46.48.120", "70");
INSERT INTO `wp_rg_form_view` VALUES("20784", "2", "2015-11-08 16:52:24", "157.56.3.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("20785", "1", "2015-11-08 16:52:55", "157.56.3.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("20786", "9", "2015-11-08 17:08:36", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("20787", "3", "2015-11-08 17:08:36", "217.69.133.231", "8");
INSERT INTO `wp_rg_form_view` VALUES("20788", "3", "2015-11-08 18:29:09", "216.232.145.214", "54");
INSERT INTO `wp_rg_form_view` VALUES("20789", "3", "2015-11-08 19:32:38", "68.180.229.161", "54");
INSERT INTO `wp_rg_form_view` VALUES("20790", "3", "2015-11-08 21:51:24", "91.200.12.39", "10");
INSERT INTO `wp_rg_form_view` VALUES("20791", "7", "2015-11-08 22:36:21", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20792", "3", "2015-11-08 22:36:22", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("20793", "3", "2015-11-08 23:11:13", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("20794", "3", "2015-11-09 00:58:33", "207.46.13.64", "5");
INSERT INTO `wp_rg_form_view` VALUES("20795", "3", "2015-11-09 01:03:53", "217.69.133.232", "5");
INSERT INTO `wp_rg_form_view` VALUES("20796", "3", "2015-11-09 02:09:32", "68.180.229.161", "36");
INSERT INTO `wp_rg_form_view` VALUES("20797", "9", "2015-11-09 02:39:09", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("20798", "3", "2015-11-09 04:12:33", "207.46.13.64", "16");
INSERT INTO `wp_rg_form_view` VALUES("20799", "3", "2015-11-09 05:28:33", "157.55.39.82", "42");
INSERT INTO `wp_rg_form_view` VALUES("20800", "2", "2015-11-09 05:31:20", "188.165.15.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("20801", "3", "2015-11-09 06:57:51", "207.46.13.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("20802", "3", "2015-11-09 07:02:07", "182.68.55.169", "137");
INSERT INTO `wp_rg_form_view` VALUES("20803", "1", "2015-11-09 07:08:58", "24.132.224.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("20804", "2", "2015-11-09 07:09:03", "24.132.224.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("20805", "3", "2015-11-09 08:13:22", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("20806", "1", "2015-11-09 09:00:52", "167.160.115.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("20807", "3", "2015-11-09 09:00:53", "167.160.115.56", "69");
INSERT INTO `wp_rg_form_view` VALUES("20808", "3", "2015-11-09 10:37:30", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("20809", "3", "2015-11-09 11:00:22", "207.46.13.64", "20");
INSERT INTO `wp_rg_form_view` VALUES("20810", "1", "2015-11-09 11:24:02", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("20811", "3", "2015-11-09 12:24:42", "207.46.13.160", "34");
INSERT INTO `wp_rg_form_view` VALUES("20812", "1", "2015-11-09 12:24:53", "89.32.123.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("20813", "3", "2015-11-09 13:11:08", "216.244.81.34", "8");
INSERT INTO `wp_rg_form_view` VALUES("20814", "3", "2015-11-09 14:31:29", "178.137.82.133", "16");
INSERT INTO `wp_rg_form_view` VALUES("20815", "3", "2015-11-09 15:25:30", "66.249.74.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("20816", "3", "2015-11-09 16:13:34", "77.75.76.160", "35");
INSERT INTO `wp_rg_form_view` VALUES("20817", "3", "2015-11-09 17:11:07", "202.46.50.165", "19");
INSERT INTO `wp_rg_form_view` VALUES("20818", "3", "2015-11-09 18:00:51", "68.180.229.161", "44");
INSERT INTO `wp_rg_form_view` VALUES("20819", "3", "2015-11-09 19:08:11", "202.46.58.202", "28");
INSERT INTO `wp_rg_form_view` VALUES("20820", "3", "2015-11-09 20:06:42", "202.46.55.152", "95");
INSERT INTO `wp_rg_form_view` VALUES("20821", "2", "2015-11-09 20:49:00", "136.243.10.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("20822", "1", "2015-11-09 20:49:02", "136.243.10.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("20823", "3", "2015-11-09 21:05:15", "202.46.52.11", "52");
INSERT INTO `wp_rg_form_view` VALUES("20824", "3", "2015-11-09 22:03:47", "202.46.52.151", "32");
INSERT INTO `wp_rg_form_view` VALUES("20825", "3", "2015-11-09 23:02:19", "202.46.48.146", "119");
INSERT INTO `wp_rg_form_view` VALUES("20826", "3", "2015-11-10 00:00:54", "202.46.52.146", "52");
INSERT INTO `wp_rg_form_view` VALUES("20827", "3", "2015-11-10 01:01:16", "96.54.214.83", "34");
INSERT INTO `wp_rg_form_view` VALUES("20828", "3", "2015-11-10 02:09:38", "202.46.52.63", "71");
INSERT INTO `wp_rg_form_view` VALUES("20829", "9", "2015-11-10 02:58:36", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20830", "3", "2015-11-10 03:06:36", "77.75.79.11", "63");
INSERT INTO `wp_rg_form_view` VALUES("20831", "3", "2015-11-10 04:06:42", "202.46.51.12", "52");
INSERT INTO `wp_rg_form_view` VALUES("20832", "6", "2015-11-10 04:39:41", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20833", "3", "2015-11-10 05:05:14", "202.46.52.41", "63");
INSERT INTO `wp_rg_form_view` VALUES("20834", "9", "2015-11-10 05:24:25", "207.46.13.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("20835", "3", "2015-11-10 06:01:09", "66.249.67.227", "34");
INSERT INTO `wp_rg_form_view` VALUES("20836", "2", "2015-11-10 06:36:35", "66.249.67.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("20837", "7", "2015-11-10 06:46:20", "112.196.169.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("20838", "3", "2015-11-10 07:00:44", "112.196.169.152", "48");
INSERT INTO `wp_rg_form_view` VALUES("20839", "3", "2015-11-10 08:08:08", "202.46.50.90", "60");
INSERT INTO `wp_rg_form_view` VALUES("20840", "3", "2015-11-10 09:06:39", "202.46.55.173", "49");
INSERT INTO `wp_rg_form_view` VALUES("20841", "9", "2015-11-10 09:33:59", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20842", "3", "2015-11-10 10:05:11", "202.46.58.191", "41");
INSERT INTO `wp_rg_form_view` VALUES("20843", "3", "2015-11-10 11:03:43", "202.46.54.100", "46");
INSERT INTO `wp_rg_form_view` VALUES("20844", "3", "2015-11-10 12:02:18", "202.46.48.141", "43");
INSERT INTO `wp_rg_form_view` VALUES("20845", "3", "2015-11-10 13:00:47", "202.46.53.154", "48");
INSERT INTO `wp_rg_form_view` VALUES("20846", "9", "2015-11-10 13:37:05", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20847", "3", "2015-11-10 14:11:03", "202.46.51.202", "54");
INSERT INTO `wp_rg_form_view` VALUES("20848", "3", "2015-11-10 15:06:41", "66.249.74.102", "64");
INSERT INTO `wp_rg_form_view` VALUES("20849", "3", "2015-11-10 16:08:07", "202.46.52.208", "46");
INSERT INTO `wp_rg_form_view` VALUES("20850", "7", "2015-11-10 16:34:17", "157.55.39.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("20851", "3", "2015-11-10 17:06:40", "202.46.58.210", "61");
INSERT INTO `wp_rg_form_view` VALUES("20852", "3", "2015-11-10 18:05:14", "202.46.51.108", "78");
INSERT INTO `wp_rg_form_view` VALUES("20853", "2", "2015-11-10 19:01:46", "96.50.93.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("20854", "3", "2015-11-10 19:01:46", "96.50.93.42", "72");
INSERT INTO `wp_rg_form_view` VALUES("20855", "7", "2015-11-10 19:49:26", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20856", "3", "2015-11-10 20:00:34", "66.249.74.104", "85");
INSERT INTO `wp_rg_form_view` VALUES("20857", "1", "2015-11-10 20:35:08", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20858", "3", "2015-11-10 21:00:48", "202.46.51.119", "100");
INSERT INTO `wp_rg_form_view` VALUES("20859", "3", "2015-11-10 22:11:02", "202.46.54.102", "65");
INSERT INTO `wp_rg_form_view` VALUES("20860", "3", "2015-11-10 23:09:35", "202.46.53.16", "101");
INSERT INTO `wp_rg_form_view` VALUES("20861", "9", "2015-11-10 23:51:15", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20862", "1", "2015-11-11 00:01:29", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20863", "3", "2015-11-11 00:01:29", "66.249.74.102", "125");
INSERT INTO `wp_rg_form_view` VALUES("20864", "3", "2015-11-11 01:03:40", "67.248.28.8", "97");
INSERT INTO `wp_rg_form_view` VALUES("20865", "6", "2015-11-11 01:31:00", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20866", "3", "2015-11-11 02:02:52", "66.249.74.102", "82");
INSERT INTO `wp_rg_form_view` VALUES("20867", "2", "2015-11-11 02:49:41", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20868", "3", "2015-11-11 03:03:43", "202.46.49.134", "106");
INSERT INTO `wp_rg_form_view` VALUES("20869", "1", "2015-11-11 03:13:58", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20870", "3", "2015-11-11 04:00:54", "66.249.74.104", "112");
INSERT INTO `wp_rg_form_view` VALUES("20871", "1", "2015-11-11 04:15:37", "192.227.224.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("20872", "3", "2015-11-11 05:29:15", "199.21.99.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("20873", "2", "2015-11-11 05:46:29", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20874", "3", "2015-11-11 06:06:21", "66.249.74.104", "44");
INSERT INTO `wp_rg_form_view` VALUES("20875", "3", "2015-11-11 07:01:39", "66.249.74.106", "76");
INSERT INTO `wp_rg_form_view` VALUES("20876", "3", "2015-11-11 08:03:37", "66.249.74.102", "56");
INSERT INTO `wp_rg_form_view` VALUES("20877", "9", "2015-11-11 08:07:54", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20878", "3", "2015-11-11 09:02:30", "66.249.74.102", "53");
INSERT INTO `wp_rg_form_view` VALUES("20879", "9", "2015-11-11 09:42:58", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20880", "1", "2015-11-11 09:52:27", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20881", "3", "2015-11-11 10:00:50", "199.21.99.195", "69");
INSERT INTO `wp_rg_form_view` VALUES("20882", "2", "2015-11-11 10:06:38", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20883", "9", "2015-11-11 10:44:48", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20884", "3", "2015-11-11 11:01:14", "91.200.12.39", "72");
INSERT INTO `wp_rg_form_view` VALUES("20885", "3", "2015-11-11 12:06:39", "66.249.74.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("20886", "9", "2015-11-11 12:24:26", "100.43.81.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("20887", "3", "2015-11-11 13:03:55", "66.249.74.102", "36");
INSERT INTO `wp_rg_form_view` VALUES("20888", "1", "2015-11-11 13:14:59", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20889", "9", "2015-11-11 13:46:51", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20890", "3", "2015-11-11 14:01:57", "66.249.74.102", "114");
INSERT INTO `wp_rg_form_view` VALUES("20891", "2", "2015-11-11 14:32:55", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20892", "3", "2015-11-11 15:00:40", "178.137.91.140", "68");
INSERT INTO `wp_rg_form_view` VALUES("20893", "9", "2015-11-11 15:51:55", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20894", "3", "2015-11-11 16:00:29", "66.249.74.106", "94");
INSERT INTO `wp_rg_form_view` VALUES("20895", "6", "2015-11-11 16:01:52", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20896", "3", "2015-11-11 17:06:39", "202.46.57.20", "109");
INSERT INTO `wp_rg_form_view` VALUES("20897", "1", "2015-11-11 17:29:19", "37.203.210.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("20898", "3", "2015-11-11 18:04:33", "66.249.74.104", "92");
INSERT INTO `wp_rg_form_view` VALUES("20899", "1", "2015-11-11 18:11:04", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20900", "3", "2015-11-11 19:01:04", "66.249.74.106", "85");
INSERT INTO `wp_rg_form_view` VALUES("20901", "9", "2015-11-11 19:41:28", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20902", "1", "2015-11-11 19:42:35", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("20903", "3", "2015-11-11 20:02:15", "202.46.58.160", "92");
INSERT INTO `wp_rg_form_view` VALUES("20904", "2", "2015-11-11 20:50:16", "204.12.239.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("20905", "3", "2015-11-11 21:00:47", "202.46.53.45", "117");
INSERT INTO `wp_rg_form_view` VALUES("20906", "2", "2015-11-11 21:42:50", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("20907", "3", "2015-11-11 22:11:01", "202.46.51.31", "80");
INSERT INTO `wp_rg_form_view` VALUES("20908", "1", "2015-11-11 22:23:56", "205.250.182.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("20909", "9", "2015-11-11 22:59:18", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("20910", "3", "2015-11-11 23:09:34", "202.46.48.197", "39");
INSERT INTO `wp_rg_form_view` VALUES("20911", "3", "2015-11-12 00:08:08", "202.46.54.37", "72");
INSERT INTO `wp_rg_form_view` VALUES("20912", "3", "2015-11-12 01:06:39", "202.46.48.13", "30");
INSERT INTO `wp_rg_form_view` VALUES("20913", "3", "2015-11-12 02:05:10", "202.46.56.136", "33");
INSERT INTO `wp_rg_form_view` VALUES("20914", "3", "2015-11-12 03:03:43", "202.46.57.13", "64");
INSERT INTO `wp_rg_form_view` VALUES("20915", "3", "2015-11-12 04:02:14", "202.46.48.201", "87");
INSERT INTO `wp_rg_form_view` VALUES("20916", "3", "2015-11-12 05:00:47", "202.46.53.141", "38");
INSERT INTO `wp_rg_form_view` VALUES("20917", "3", "2015-11-12 06:10:16", "207.46.13.72", "39");
INSERT INTO `wp_rg_form_view` VALUES("20918", "3", "2015-11-12 07:00:15", "217.69.133.69", "38");
INSERT INTO `wp_rg_form_view` VALUES("20919", "3", "2015-11-12 08:08:06", "202.46.50.164", "42");
INSERT INTO `wp_rg_form_view` VALUES("20920", "3", "2015-11-12 09:06:38", "202.46.53.201", "33");
INSERT INTO `wp_rg_form_view` VALUES("20921", "3", "2015-11-12 10:05:11", "202.46.53.111", "33");
INSERT INTO `wp_rg_form_view` VALUES("20922", "3", "2015-11-12 11:03:43", "202.46.49.76", "116");
INSERT INTO `wp_rg_form_view` VALUES("20923", "2", "2015-11-12 11:39:47", "104.236.227.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("20924", "1", "2015-11-12 11:39:47", "104.236.227.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("20925", "3", "2015-11-12 12:02:14", "202.46.56.70", "26");
INSERT INTO `wp_rg_form_view` VALUES("20926", "3", "2015-11-12 13:00:47", "202.46.58.75", "58");
INSERT INTO `wp_rg_form_view` VALUES("20927", "3", "2015-11-12 14:02:00", "188.165.15.78", "44");
INSERT INTO `wp_rg_form_view` VALUES("20928", "3", "2015-11-12 15:09:33", "202.46.52.79", "17");
INSERT INTO `wp_rg_form_view` VALUES("20929", "3", "2015-11-12 16:07:49", "100.43.90.13", "21");
INSERT INTO `wp_rg_form_view` VALUES("20930", "3", "2015-11-12 17:04:56", "46.246.42.151", "21");
INSERT INTO `wp_rg_form_view` VALUES("20931", "3", "2015-11-12 18:16:05", "207.46.13.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("20932", "3", "2015-11-12 19:18:22", "157.55.39.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("20933", "3", "2015-11-12 20:15:36", "174.127.133.66", "326");
INSERT INTO `wp_rg_form_view` VALUES("20934", "1", "2015-11-12 20:17:20", "174.127.133.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("20935", "2", "2015-11-12 20:19:17", "174.127.133.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("20936", "1", "2015-11-12 21:00:25", "104.223.23.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("20937", "3", "2015-11-12 21:00:25", "104.223.23.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("20938", "3", "2015-11-12 22:27:08", "46.185.84.181", "8");
INSERT INTO `wp_rg_form_view` VALUES("20939", "3", "2015-11-12 23:13:29", "199.60.109.122", "38");
INSERT INTO `wp_rg_form_view` VALUES("20940", "3", "2015-11-13 00:07:36", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("20941", "3", "2015-11-13 01:02:29", "68.180.229.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("20942", "3", "2015-11-13 02:40:43", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("20943", "3", "2015-11-13 03:11:45", "207.81.254.101", "5");
INSERT INTO `wp_rg_form_view` VALUES("20944", "3", "2015-11-13 04:18:26", "202.46.51.186", "26");
INSERT INTO `wp_rg_form_view` VALUES("20945", "3", "2015-11-13 05:05:15", "202.46.58.119", "83");
INSERT INTO `wp_rg_form_view` VALUES("20946", "1", "2015-11-13 05:44:19", "5.9.145.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("20947", "3", "2015-11-13 06:04:17", "207.46.13.45", "32");
INSERT INTO `wp_rg_form_view` VALUES("20948", "3", "2015-11-13 07:02:29", "202.46.53.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("20949", "3", "2015-11-13 08:00:51", "202.46.53.119", "42");
INSERT INTO `wp_rg_form_view` VALUES("20950", "3", "2015-11-13 09:34:33", "202.46.54.70", "17");
INSERT INTO `wp_rg_form_view` VALUES("20951", "3", "2015-11-13 10:09:38", "202.46.56.114", "56");
INSERT INTO `wp_rg_form_view` VALUES("20952", "3", "2015-11-13 11:35:13", "202.46.50.131", "13");
INSERT INTO `wp_rg_form_view` VALUES("20953", "3", "2015-11-13 12:14:50", "68.180.229.161", "22");
INSERT INTO `wp_rg_form_view` VALUES("20954", "3", "2015-11-13 13:09:30", "202.46.56.97", "28");
INSERT INTO `wp_rg_form_view` VALUES("20955", "3", "2015-11-13 14:02:57", "68.180.229.161", "43");
INSERT INTO `wp_rg_form_view` VALUES("20956", "3", "2015-11-13 15:18:17", "202.46.51.198", "56");
INSERT INTO `wp_rg_form_view` VALUES("20957", "3", "2015-11-13 16:04:01", "66.249.74.104", "17");
INSERT INTO `wp_rg_form_view` VALUES("20958", "3", "2015-11-13 17:00:09", "207.194.133.9", "62");
INSERT INTO `wp_rg_form_view` VALUES("20959", "3", "2015-11-13 18:05:25", "202.46.56.134", "45");
INSERT INTO `wp_rg_form_view` VALUES("20960", "3", "2015-11-13 19:03:56", "202.46.49.73", "44");
INSERT INTO `wp_rg_form_view` VALUES("20961", "9", "2015-11-13 19:10:12", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("20962", "3", "2015-11-13 20:03:22", "202.46.57.167", "61");
INSERT INTO `wp_rg_form_view` VALUES("20963", "1", "2015-11-13 20:06:56", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("20964", "3", "2015-11-13 21:01:00", "202.46.57.26", "41");
INSERT INTO `wp_rg_form_view` VALUES("20965", "3", "2015-11-13 22:11:47", "202.46.57.79", "44");
INSERT INTO `wp_rg_form_view` VALUES("20966", "3", "2015-11-13 23:00:32", "174.1.52.106", "39");
INSERT INTO `wp_rg_form_view` VALUES("20967", "3", "2015-11-14 00:08:19", "202.46.52.204", "63");
INSERT INTO `wp_rg_form_view` VALUES("20968", "2", "2015-11-14 01:03:17", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("20969", "3", "2015-11-14 01:03:18", "91.200.12.138", "87");
INSERT INTO `wp_rg_form_view` VALUES("20970", "3", "2015-11-14 02:17:38", "202.46.53.151", "11");
INSERT INTO `wp_rg_form_view` VALUES("20971", "3", "2015-11-14 03:04:01", "202.46.51.21", "40");
INSERT INTO `wp_rg_form_view` VALUES("20972", "3", "2015-11-14 04:03:30", "202.46.54.19", "38");
INSERT INTO `wp_rg_form_view` VALUES("20973", "3", "2015-11-14 05:06:24", "212.76.140.135", "63");
INSERT INTO `wp_rg_form_view` VALUES("20974", "3", "2015-11-14 06:13:32", "202.46.49.110", "23");
INSERT INTO `wp_rg_form_view` VALUES("20975", "3", "2015-11-14 07:00:22", "202.46.57.164", "35");
INSERT INTO `wp_rg_form_view` VALUES("20976", "3", "2015-11-14 08:22:18", "202.46.54.107", "22");
INSERT INTO `wp_rg_form_view` VALUES("20977", "3", "2015-11-14 09:09:13", "202.46.57.184", "31");
INSERT INTO `wp_rg_form_view` VALUES("20978", "3", "2015-11-14 10:04:17", "91.200.12.39", "29");
INSERT INTO `wp_rg_form_view` VALUES("20979", "1", "2015-11-14 10:20:49", "167.114.199.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("20980", "3", "2015-11-14 11:47:55", "111.242.173.180", "13");
INSERT INTO `wp_rg_form_view` VALUES("20981", "1", "2015-11-14 11:59:42", "199.168.141.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("20982", "3", "2015-11-14 12:22:59", "202.46.52.142", "13");
INSERT INTO `wp_rg_form_view` VALUES("20983", "3", "2015-11-14 13:02:55", "207.46.13.167", "12");
INSERT INTO `wp_rg_form_view` VALUES("20984", "3", "2015-11-14 14:08:20", "202.46.51.210", "24");
INSERT INTO `wp_rg_form_view` VALUES("20985", "3", "2015-11-14 15:11:10", "202.46.53.126", "16");
INSERT INTO `wp_rg_form_view` VALUES("20986", "3", "2015-11-14 16:55:41", "207.46.13.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("20987", "3", "2015-11-14 17:24:08", "207.46.13.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("20988", "3", "2015-11-14 18:33:49", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("20989", "3", "2015-11-14 19:27:15", "207.46.13.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("20990", "3", "2015-11-14 20:06:45", "46.118.152.18", "44");
INSERT INTO `wp_rg_form_view` VALUES("20991", "1", "2015-11-14 21:14:27", "212.129.9.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("20992", "3", "2015-11-14 21:14:28", "212.129.9.188", "44");
INSERT INTO `wp_rg_form_view` VALUES("20993", "3", "2015-11-14 22:21:44", "92.85.176.134", "125");
INSERT INTO `wp_rg_form_view` VALUES("20994", "1", "2015-11-14 22:22:31", "92.85.176.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("20995", "2", "2015-11-14 22:22:38", "92.85.176.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("20996", "3", "2015-11-14 23:16:30", "63.141.224.250", "8");
INSERT INTO `wp_rg_form_view` VALUES("20997", "3", "2015-11-15 00:39:46", "37.77.122.93", "163");
INSERT INTO `wp_rg_form_view` VALUES("20998", "1", "2015-11-15 00:41:17", "37.77.122.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("20999", "2", "2015-11-15 00:41:34", "37.77.122.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("21000", "3", "2015-11-15 01:08:02", "151.80.31.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("21001", "1", "2015-11-15 02:04:24", "109.120.164.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("21002", "3", "2015-11-15 02:04:24", "109.120.164.63", "30");
INSERT INTO `wp_rg_form_view` VALUES("21003", "3", "2015-11-15 03:04:25", "136.243.17.161", "28");
INSERT INTO `wp_rg_form_view` VALUES("21004", "3", "2015-11-15 04:22:29", "207.46.13.63", "69");
INSERT INTO `wp_rg_form_view` VALUES("21005", "1", "2015-11-15 04:33:44", "92.114.6.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("21006", "9", "2015-11-15 04:39:31", "54.159.7.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("21007", "3", "2015-11-15 05:05:39", "62.210.122.172", "24");
INSERT INTO `wp_rg_form_view` VALUES("21008", "3", "2015-11-15 06:19:32", "151.80.31.114", "12");
INSERT INTO `wp_rg_form_view` VALUES("21009", "3", "2015-11-15 07:29:40", "46.246.42.151", "31");
INSERT INTO `wp_rg_form_view` VALUES("21010", "3", "2015-11-15 08:09:25", "77.75.79.54", "48");
INSERT INTO `wp_rg_form_view` VALUES("21011", "3", "2015-11-15 09:05:57", "31.184.238.243", "24");
INSERT INTO `wp_rg_form_view` VALUES("21012", "3", "2015-11-15 10:06:23", "207.46.13.49", "4");
INSERT INTO `wp_rg_form_view` VALUES("21013", "3", "2015-11-15 11:06:45", "62.210.122.172", "4");
INSERT INTO `wp_rg_form_view` VALUES("21014", "1", "2015-11-15 12:02:45", "192.161.50.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("21015", "3", "2015-11-15 12:02:46", "192.161.50.74", "85");
INSERT INTO `wp_rg_form_view` VALUES("21016", "3", "2015-11-15 13:08:43", "46.118.152.18", "25");
INSERT INTO `wp_rg_form_view` VALUES("21017", "1", "2015-11-15 13:36:51", "151.80.31.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("21018", "3", "2015-11-15 14:17:43", "68.180.229.161", "28");
INSERT INTO `wp_rg_form_view` VALUES("21019", "3", "2015-11-15 16:13:24", "207.46.13.49", "142");
INSERT INTO `wp_rg_form_view` VALUES("21020", "1", "2015-11-15 16:43:48", "54.76.201.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("21021", "2", "2015-11-15 16:45:11", "54.76.201.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("21022", "3", "2015-11-15 17:14:33", "66.249.74.102", "221");
INSERT INTO `wp_rg_form_view` VALUES("21023", "2", "2015-11-15 17:14:56", "193.201.227.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("21024", "1", "2015-11-15 17:14:58", "193.201.227.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("21025", "3", "2015-11-15 18:36:38", "151.80.31.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("21026", "3", "2015-11-15 19:10:44", "174.5.65.124", "23");
INSERT INTO `wp_rg_form_view` VALUES("21027", "3", "2015-11-15 20:05:30", "37.115.154.109", "48");
INSERT INTO `wp_rg_form_view` VALUES("21028", "1", "2015-11-15 20:39:32", "24.68.65.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("21029", "3", "2015-11-15 21:00:16", "202.46.53.158", "81");
INSERT INTO `wp_rg_form_view` VALUES("21030", "3", "2015-11-15 22:08:39", "68.180.229.161", "26");
INSERT INTO `wp_rg_form_view` VALUES("21031", "3", "2015-11-15 23:20:30", "202.46.50.98", "25");
INSERT INTO `wp_rg_form_view` VALUES("21032", "3", "2015-11-16 00:19:03", "202.46.53.41", "22");
INSERT INTO `wp_rg_form_view` VALUES("21033", "3", "2015-11-16 01:05:53", "202.46.55.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("21034", "3", "2015-11-16 02:10:33", "202.46.58.152", "40");
INSERT INTO `wp_rg_form_view` VALUES("21035", "3", "2015-11-16 03:09:05", "202.46.52.161", "29");
INSERT INTO `wp_rg_form_view` VALUES("21036", "3", "2015-11-16 04:00:23", "24.68.124.97", "92");
INSERT INTO `wp_rg_form_view` VALUES("21037", "5", "2015-11-16 04:25:38", "24.68.30.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("21038", "1", "2015-11-16 04:35:33", "23.94.182.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("21039", "3", "2015-11-16 05:15:30", "40.77.167.38", "29");
INSERT INTO `wp_rg_form_view` VALUES("21040", "1", "2015-11-16 05:58:50", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21041", "3", "2015-11-16 06:10:38", "66.249.74.104", "31");
INSERT INTO `wp_rg_form_view` VALUES("21042", "3", "2015-11-16 07:00:16", "155.94.208.124", "46");
INSERT INTO `wp_rg_form_view` VALUES("21043", "2", "2015-11-16 07:36:14", "155.94.208.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("21044", "3", "2015-11-16 08:12:57", "66.249.74.106", "24");
INSERT INTO `wp_rg_form_view` VALUES("21045", "3", "2015-11-16 09:11:48", "66.249.74.104", "40");
INSERT INTO `wp_rg_form_view` VALUES("21046", "1", "2015-11-16 09:48:42", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21047", "1", "2015-11-16 10:27:39", "91.200.12.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("21048", "2", "2015-11-16 10:27:39", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21049", "3", "2015-11-16 10:27:40", "91.200.12.138", "60");
INSERT INTO `wp_rg_form_view` VALUES("21050", "3", "2015-11-16 10:27:40", "91.200.12.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("21051", "3", "2015-11-16 11:02:10", "151.80.31.114", "74");
INSERT INTO `wp_rg_form_view` VALUES("21052", "1", "2015-11-16 11:58:13", "178.175.184.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("21053", "3", "2015-11-16 12:05:47", "202.46.57.182", "25");
INSERT INTO `wp_rg_form_view` VALUES("21054", "3", "2015-11-16 13:14:14", "91.200.12.25", "35");
INSERT INTO `wp_rg_form_view` VALUES("21055", "1", "2015-11-16 13:24:45", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21056", "3", "2015-11-16 14:03:52", "202.46.57.151", "80");
INSERT INTO `wp_rg_form_view` VALUES("21057", "1", "2015-11-16 14:19:14", "185.59.125.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("21058", "3", "2015-11-16 15:28:33", "157.55.39.153", "12");
INSERT INTO `wp_rg_form_view` VALUES("21059", "3", "2015-11-16 16:25:35", "178.137.161.6", "98");
INSERT INTO `wp_rg_form_view` VALUES("21060", "3", "2015-11-16 17:01:12", "66.249.74.102", "37");
INSERT INTO `wp_rg_form_view` VALUES("21061", "9", "2015-11-16 17:14:18", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("21062", "3", "2015-11-16 18:26:34", "66.249.74.102", "48");
INSERT INTO `wp_rg_form_view` VALUES("21063", "2", "2015-11-16 18:30:30", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21064", "3", "2015-11-16 19:10:50", "66.249.74.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("21065", "3", "2015-11-16 20:05:04", "207.46.13.149", "36");
INSERT INTO `wp_rg_form_view` VALUES("21066", "3", "2015-11-16 21:09:55", "91.200.12.39", "22");
INSERT INTO `wp_rg_form_view` VALUES("21067", "3", "2015-11-16 22:15:53", "184.66.8.33", "21");
INSERT INTO `wp_rg_form_view` VALUES("21068", "3", "2015-11-16 23:00:30", "66.249.74.102", "30");
INSERT INTO `wp_rg_form_view` VALUES("21069", "1", "2015-11-16 23:29:58", "23.95.93.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("21070", "3", "2015-11-17 00:13:03", "151.80.31.114", "40");
INSERT INTO `wp_rg_form_view` VALUES("21071", "9", "2015-11-17 00:45:57", "70.67.187.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("21072", "3", "2015-11-17 01:11:06", "46.118.152.18", "62");
INSERT INTO `wp_rg_form_view` VALUES("21073", "3", "2015-11-17 02:04:49", "66.249.74.106", "45");
INSERT INTO `wp_rg_form_view` VALUES("21074", "3", "2015-11-17 03:24:02", "67.248.28.8", "25");
INSERT INTO `wp_rg_form_view` VALUES("21075", "6", "2015-11-17 03:40:46", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("21076", "1", "2015-11-17 03:43:44", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("21077", "3", "2015-11-17 04:07:41", "66.249.74.104", "47");
INSERT INTO `wp_rg_form_view` VALUES("21078", "3", "2015-11-17 05:04:15", "151.80.31.114", "37");
INSERT INTO `wp_rg_form_view` VALUES("21079", "1", "2015-11-17 05:41:29", "182.75.145.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("21080", "3", "2015-11-17 06:01:00", "66.249.74.102", "73");
INSERT INTO `wp_rg_form_view` VALUES("21081", "3", "2015-11-17 07:25:14", "66.249.74.104", "40");
INSERT INTO `wp_rg_form_view` VALUES("21082", "3", "2015-11-17 08:11:50", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("21083", "3", "2015-11-17 09:03:23", "192.210.226.10", "53");
INSERT INTO `wp_rg_form_view` VALUES("21084", "9", "2015-11-17 10:13:48", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("21085", "3", "2015-11-17 10:13:48", "217.69.133.229", "25");
INSERT INTO `wp_rg_form_view` VALUES("21086", "3", "2015-11-17 11:11:57", "68.180.229.161", "46");
INSERT INTO `wp_rg_form_view` VALUES("21087", "3", "2015-11-17 12:02:38", "66.249.74.106", "31");
INSERT INTO `wp_rg_form_view` VALUES("21088", "3", "2015-11-17 13:24:52", "66.249.74.104", "31");
INSERT INTO `wp_rg_form_view` VALUES("21089", "3", "2015-11-17 14:19:43", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("21090", "7", "2015-11-17 14:59:00", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("21091", "3", "2015-11-17 15:19:53", "66.249.74.106", "25");
INSERT INTO `wp_rg_form_view` VALUES("21092", "3", "2015-11-17 16:02:05", "66.249.74.104", "84");
INSERT INTO `wp_rg_form_view` VALUES("21093", "3", "2015-11-17 17:00:11", "24.69.45.245", "73");
INSERT INTO `wp_rg_form_view` VALUES("21094", "3", "2015-11-17 18:11:19", "178.137.161.6", "48");
INSERT INTO `wp_rg_form_view` VALUES("21095", "3", "2015-11-17 19:05:16", "68.180.229.161", "38");
INSERT INTO `wp_rg_form_view` VALUES("21096", "3", "2015-11-17 20:02:23", "202.46.53.194", "47");
INSERT INTO `wp_rg_form_view` VALUES("21097", "3", "2015-11-17 21:08:53", "66.249.74.102", "36");
INSERT INTO `wp_rg_form_view` VALUES("21098", "9", "2015-11-17 22:02:18", "158.222.6.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("21099", "3", "2015-11-17 22:02:19", "158.222.6.231", "26");
INSERT INTO `wp_rg_form_view` VALUES("21100", "3", "2015-11-17 23:01:05", "192.210.226.10", "76");
INSERT INTO `wp_rg_form_view` VALUES("21101", "3", "2015-11-18 00:02:07", "66.249.74.106", "50");
INSERT INTO `wp_rg_form_view` VALUES("21102", "3", "2015-11-18 01:00:27", "69.12.75.151", "53");
INSERT INTO `wp_rg_form_view` VALUES("21103", "3", "2015-11-18 02:01:42", "199.21.99.202", "38");
INSERT INTO `wp_rg_form_view` VALUES("21104", "3", "2015-11-18 03:00:36", "202.46.54.163", "65");
INSERT INTO `wp_rg_form_view` VALUES("21105", "1", "2015-11-18 03:58:51", "155.94.237.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("21106", "3", "2015-11-18 04:01:21", "68.180.229.161", "82");
INSERT INTO `wp_rg_form_view` VALUES("21107", "3", "2015-11-18 05:09:23", "202.46.51.161", "46");
INSERT INTO `wp_rg_form_view` VALUES("21108", "3", "2015-11-18 06:15:48", "66.249.74.106", "47");
INSERT INTO `wp_rg_form_view` VALUES("21109", "1", "2015-11-18 07:02:01", "192.186.155.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("21110", "3", "2015-11-18 07:02:01", "192.186.155.3", "100");
INSERT INTO `wp_rg_form_view` VALUES("21111", "3", "2015-11-18 08:05:13", "40.77.167.67", "70");
INSERT INTO `wp_rg_form_view` VALUES("21112", "3", "2015-11-18 09:07:26", "202.46.58.56", "37");
INSERT INTO `wp_rg_form_view` VALUES("21113", "3", "2015-11-18 10:07:06", "151.80.31.114", "20");
INSERT INTO `wp_rg_form_view` VALUES("21114", "3", "2015-11-18 11:00:35", "202.46.57.208", "139");
INSERT INTO `wp_rg_form_view` VALUES("21115", "1", "2015-11-18 11:32:56", "104.236.47.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("21116", "2", "2015-11-18 11:32:56", "104.236.47.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("21117", "3", "2015-11-18 12:06:24", "202.46.51.163", "34");
INSERT INTO `wp_rg_form_view` VALUES("21118", "3", "2015-11-18 13:04:57", "202.46.49.199", "553");
INSERT INTO `wp_rg_form_view` VALUES("21119", "1", "2015-11-18 13:51:32", "50.112.217.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("21120", "2", "2015-11-18 13:51:58", "50.112.217.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("21121", "3", "2015-11-18 14:01:35", "151.80.31.114", "69");
INSERT INTO `wp_rg_form_view` VALUES("21122", "1", "2015-11-18 14:38:53", "199.168.141.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("21123", "3", "2015-11-18 15:02:03", "202.46.48.96", "25");
INSERT INTO `wp_rg_form_view` VALUES("21124", "9", "2015-11-18 15:24:28", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("21125", "3", "2015-11-18 16:29:15", "46.118.152.18", "38");
INSERT INTO `wp_rg_form_view` VALUES("21126", "3", "2015-11-18 16:29:15", "46.118.152.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("21127", "3", "2015-11-18 17:16:04", "46.246.42.151", "41");
INSERT INTO `wp_rg_form_view` VALUES("21128", "3", "2015-11-18 18:07:09", "202.46.51.115", "21");
INSERT INTO `wp_rg_form_view` VALUES("21129", "3", "2015-11-18 19:00:44", "202.46.50.14", "80");
INSERT INTO `wp_rg_form_view` VALUES("21130", "3", "2015-11-18 20:00:03", "202.46.57.89", "151");
INSERT INTO `wp_rg_form_view` VALUES("21131", "3", "2015-11-18 21:12:16", "184.69.162.222", "55");
INSERT INTO `wp_rg_form_view` VALUES("21132", "3", "2015-11-18 21:12:16", "184.69.162.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("21133", "3", "2015-11-18 22:08:02", "202.46.56.71", "54");
INSERT INTO `wp_rg_form_view` VALUES("21134", "3", "2015-11-18 23:09:51", "142.104.36.158", "94");
INSERT INTO `wp_rg_form_view` VALUES("21135", "3", "2015-11-19 00:09:20", "178.137.94.14", "69");
INSERT INTO `wp_rg_form_view` VALUES("21136", "1", "2015-11-19 00:39:23", "166.62.94.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("21137", "3", "2015-11-19 01:57:57", "202.46.52.205", "5");
INSERT INTO `wp_rg_form_view` VALUES("21138", "3", "2015-11-19 02:09:11", "100.43.115.32", "33");
INSERT INTO `wp_rg_form_view` VALUES("21139", "3", "2015-11-19 03:07:36", "207.46.13.101", "35");
INSERT INTO `wp_rg_form_view` VALUES("21140", "3", "2015-11-19 04:23:31", "157.55.39.191", "24");
INSERT INTO `wp_rg_form_view` VALUES("21141", "3", "2015-11-19 05:04:22", "202.46.54.19", "24");
INSERT INTO `wp_rg_form_view` VALUES("21142", "3", "2015-11-19 06:10:17", "202.46.50.150", "45");
INSERT INTO `wp_rg_form_view` VALUES("21143", "3", "2015-11-19 07:04:16", "202.46.48.94", "34");
INSERT INTO `wp_rg_form_view` VALUES("21144", "3", "2015-11-19 08:02:47", "202.46.54.135", "30");
INSERT INTO `wp_rg_form_view` VALUES("21145", "3", "2015-11-19 09:01:21", "202.46.48.141", "60");
INSERT INTO `wp_rg_form_view` VALUES("21146", "3", "2015-11-19 10:02:14", "202.46.50.133", "34");
INSERT INTO `wp_rg_form_view` VALUES("21147", "3", "2015-11-19 11:31:30", "202.46.54.90", "60");
INSERT INTO `wp_rg_form_view` VALUES("21148", "3", "2015-11-19 12:06:35", "202.46.58.183", "69");
INSERT INTO `wp_rg_form_view` VALUES("21149", "3", "2015-11-19 13:16:49", "202.46.54.161", "67");
INSERT INTO `wp_rg_form_view` VALUES("21150", "3", "2015-11-19 14:11:47", "202.46.52.202", "24");
INSERT INTO `wp_rg_form_view` VALUES("21151", "3", "2015-11-19 15:06:22", "202.46.58.13", "33");
INSERT INTO `wp_rg_form_view` VALUES("21152", "1", "2015-11-19 15:17:07", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21153", "3", "2015-11-19 16:01:54", "202.46.49.111", "16");
INSERT INTO `wp_rg_form_view` VALUES("21154", "9", "2015-11-19 17:00:52", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("21155", "3", "2015-11-19 17:00:53", "68.180.229.161", "249");
INSERT INTO `wp_rg_form_view` VALUES("21156", "1", "2015-11-19 17:12:29", "107.190.163.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("21157", "2", "2015-11-19 17:40:30", "66.91.12.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("21158", "3", "2015-11-19 18:11:49", "68.180.229.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("21159", "3", "2015-11-19 19:22:45", "40.77.167.56", "76");
INSERT INTO `wp_rg_form_view` VALUES("21160", "8", "2015-11-19 19:22:45", "40.77.167.56", "15");
INSERT INTO `wp_rg_form_view` VALUES("21161", "3", "2015-11-19 20:06:30", "216.232.155.92", "15");
INSERT INTO `wp_rg_form_view` VALUES("21162", "8", "2015-11-19 20:06:30", "216.232.155.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("21163", "3", "2015-11-19 21:07:24", "151.80.31.114", "37");
INSERT INTO `wp_rg_form_view` VALUES("21164", "8", "2015-11-19 21:07:26", "151.80.31.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("21165", "3", "2015-11-19 22:09:42", "24.108.66.114", "57");
INSERT INTO `wp_rg_form_view` VALUES("21166", "8", "2015-11-19 22:09:43", "24.108.66.114", "11");
INSERT INTO `wp_rg_form_view` VALUES("21167", "2", "2015-11-19 22:51:07", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21168", "3", "2015-11-19 23:18:33", "66.249.74.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("21169", "6", "2015-11-19 23:22:24", "151.80.31.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("21170", "8", "2015-11-19 23:22:24", "151.80.31.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("21171", "3", "2015-11-20 00:05:49", "157.55.39.108", "31");
INSERT INTO `wp_rg_form_view` VALUES("21172", "8", "2015-11-20 00:05:51", "157.55.39.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("21173", "1", "2015-11-20 00:17:08", "96.50.108.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("21174", "3", "2015-11-20 01:02:01", "40.77.167.56", "166");
INSERT INTO `wp_rg_form_view` VALUES("21175", "8", "2015-11-20 01:02:01", "40.77.167.56", "33");
INSERT INTO `wp_rg_form_view` VALUES("21176", "1", "2015-11-20 01:04:44", "109.158.8.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("21177", "2", "2015-11-20 01:04:50", "109.158.8.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("21178", "3", "2015-11-20 02:08:16", "216.244.85.148", "78");
INSERT INTO `wp_rg_form_view` VALUES("21179", "8", "2015-11-20 02:08:16", "216.244.85.148", "16");
INSERT INTO `wp_rg_form_view` VALUES("21180", "1", "2015-11-20 02:31:01", "37.72.188.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("21181", "2", "2015-11-20 03:01:45", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21182", "3", "2015-11-20 03:01:45", "68.180.229.161", "66");
INSERT INTO `wp_rg_form_view` VALUES("21183", "8", "2015-11-20 03:01:46", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("21184", "3", "2015-11-20 04:01:23", "62.210.122.172", "26");
INSERT INTO `wp_rg_form_view` VALUES("21185", "8", "2015-11-20 04:01:23", "62.210.122.172", "5");
INSERT INTO `wp_rg_form_view` VALUES("21186", "3", "2015-11-20 05:07:54", "23.95.241.230", "100");
INSERT INTO `wp_rg_form_view` VALUES("21187", "8", "2015-11-20 05:07:54", "23.95.241.230", "26");
INSERT INTO `wp_rg_form_view` VALUES("21188", "3", "2015-11-20 06:21:04", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("21189", "8", "2015-11-20 06:56:35", "199.16.156.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("21190", "3", "2015-11-20 07:01:21", "62.210.162.184", "32");
INSERT INTO `wp_rg_form_view` VALUES("21191", "8", "2015-11-20 07:01:22", "62.210.162.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("21192", "3", "2015-11-20 08:27:02", "202.46.48.203", "50");
INSERT INTO `wp_rg_form_view` VALUES("21193", "8", "2015-11-20 08:27:03", "202.46.48.203", "12");
INSERT INTO `wp_rg_form_view` VALUES("21194", "1", "2015-11-20 08:43:04", "31.187.76.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("21195", "3", "2015-11-20 09:02:11", "202.46.52.149", "26");
INSERT INTO `wp_rg_form_view` VALUES("21196", "8", "2015-11-20 09:02:12", "202.46.52.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("21197", "3", "2015-11-20 10:01:58", "202.46.52.76", "48");
INSERT INTO `wp_rg_form_view` VALUES("21198", "8", "2015-11-20 10:01:58", "202.46.52.76", "11");
INSERT INTO `wp_rg_form_view` VALUES("21199", "9", "2015-11-20 10:54:22", "151.80.31.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("21200", "1", "2015-11-20 10:56:41", "107.190.163.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("21201", "3", "2015-11-20 11:00:28", "202.46.49.152", "38");
INSERT INTO `wp_rg_form_view` VALUES("21202", "8", "2015-11-20 11:00:28", "202.46.49.152", "13");
INSERT INTO `wp_rg_form_view` VALUES("21203", "3", "2015-11-20 12:10:43", "202.46.52.176", "37");
INSERT INTO `wp_rg_form_view` VALUES("21204", "8", "2015-11-20 12:10:44", "202.46.52.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("21205", "3", "2015-11-20 13:09:15", "202.46.53.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("21206", "8", "2015-11-20 13:09:15", "202.46.53.112", "7");
INSERT INTO `wp_rg_form_view` VALUES("21207", "3", "2015-11-20 14:09:36", "66.249.74.106", "82");
INSERT INTO `wp_rg_form_view` VALUES("21208", "8", "2015-11-20 14:09:36", "66.249.74.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("21209", "3", "2015-11-20 15:13:32", "68.180.229.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("21210", "8", "2015-11-20 15:13:32", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("21211", "3", "2015-11-20 16:06:14", "178.137.161.6", "87");
INSERT INTO `wp_rg_form_view` VALUES("21212", "8", "2015-11-20 16:06:14", "178.137.161.6", "25");
INSERT INTO `wp_rg_form_view` VALUES("21213", "1", "2015-11-20 16:17:19", "52.24.143.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("21214", "3", "2015-11-20 17:16:54", "207.46.13.120", "26");
INSERT INTO `wp_rg_form_view` VALUES("21215", "8", "2015-11-20 17:16:54", "207.46.13.120", "6");
INSERT INTO `wp_rg_form_view` VALUES("21216", "3", "2015-11-20 18:07:54", "202.46.51.25", "11");
INSERT INTO `wp_rg_form_view` VALUES("21217", "8", "2015-11-20 18:07:55", "202.46.51.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("21218", "3", "2015-11-20 19:18:47", "202.46.49.206", "35");
INSERT INTO `wp_rg_form_view` VALUES("21219", "8", "2015-11-20 19:18:49", "202.46.49.206", "8");
INSERT INTO `wp_rg_form_view` VALUES("21220", "3", "2015-11-20 20:08:54", "74.203.107.160", "25");
INSERT INTO `wp_rg_form_view` VALUES("21221", "8", "2015-11-20 20:08:54", "74.203.107.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("21222", "1", "2015-11-20 20:33:37", "67.21.34.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("21223", "3", "2015-11-20 21:02:53", "68.180.229.161", "100");
INSERT INTO `wp_rg_form_view` VALUES("21224", "8", "2015-11-20 21:02:53", "68.180.229.161", "26");
INSERT INTO `wp_rg_form_view` VALUES("21225", "1", "2015-11-20 21:23:24", "195.154.185.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("21226", "3", "2015-11-20 22:05:12", "202.46.53.156", "50");
INSERT INTO `wp_rg_form_view` VALUES("21227", "8", "2015-11-20 22:05:12", "202.46.53.156", "15");
INSERT INTO `wp_rg_form_view` VALUES("21228", "3", "2015-11-20 23:03:17", "66.249.74.104", "71");
INSERT INTO `wp_rg_form_view` VALUES("21229", "8", "2015-11-20 23:03:17", "66.249.74.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("21230", "3", "2015-11-21 00:02:06", "202.46.50.135", "38");
INSERT INTO `wp_rg_form_view` VALUES("21231", "8", "2015-11-21 00:02:06", "202.46.50.135", "12");
INSERT INTO `wp_rg_form_view` VALUES("21232", "3", "2015-11-21 01:00:38", "202.46.52.170", "32");
INSERT INTO `wp_rg_form_view` VALUES("21233", "8", "2015-11-21 01:00:39", "202.46.52.170", "8");
INSERT INTO `wp_rg_form_view` VALUES("21234", "3", "2015-11-21 02:17:38", "202.46.53.190", "55");
INSERT INTO `wp_rg_form_view` VALUES("21235", "8", "2015-11-21 02:17:39", "202.46.53.190", "13");
INSERT INTO `wp_rg_form_view` VALUES("21236", "3", "2015-11-21 03:04:26", "202.46.53.196", "41");
INSERT INTO `wp_rg_form_view` VALUES("21237", "8", "2015-11-21 03:04:26", "202.46.53.196", "10");
INSERT INTO `wp_rg_form_view` VALUES("21238", "3", "2015-11-21 04:00:52", "178.137.94.14", "74");
INSERT INTO `wp_rg_form_view` VALUES("21239", "8", "2015-11-21 04:00:52", "178.137.94.14", "20");
INSERT INTO `wp_rg_form_view` VALUES("21240", "1", "2015-11-21 04:14:04", "45.62.47.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("21241", "3", "2015-11-21 05:08:47", "202.46.51.106", "72");
INSERT INTO `wp_rg_form_view` VALUES("21242", "8", "2015-11-21 05:08:47", "202.46.51.106", "19");
INSERT INTO `wp_rg_form_view` VALUES("21243", "1", "2015-11-21 05:28:17", "5.153.237.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("21244", "3", "2015-11-21 06:27:01", "202.46.49.153", "7");
INSERT INTO `wp_rg_form_view` VALUES("21245", "8", "2015-11-21 06:27:02", "202.46.49.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("21246", "3", "2015-11-21 07:15:59", "202.46.52.100", "16");
INSERT INTO `wp_rg_form_view` VALUES("21247", "8", "2015-11-21 07:16:00", "202.46.52.100", "5");
INSERT INTO `wp_rg_form_view` VALUES("21248", "3", "2015-11-21 08:02:41", "202.46.58.12", "21");
INSERT INTO `wp_rg_form_view` VALUES("21249", "8", "2015-11-21 08:02:41", "202.46.58.12", "5");
INSERT INTO `wp_rg_form_view` VALUES("21250", "3", "2015-11-21 09:18:37", "202.46.58.18", "15");
INSERT INTO `wp_rg_form_view` VALUES("21251", "8", "2015-11-21 09:18:37", "202.46.58.18", "4");
INSERT INTO `wp_rg_form_view` VALUES("21252", "3", "2015-11-21 10:09:08", "62.210.122.172", "47");
INSERT INTO `wp_rg_form_view` VALUES("21253", "8", "2015-11-21 10:09:09", "62.210.122.172", "12");
INSERT INTO `wp_rg_form_view` VALUES("21254", "3", "2015-11-21 11:21:07", "155.94.208.141", "44");
INSERT INTO `wp_rg_form_view` VALUES("21255", "8", "2015-11-21 11:21:08", "155.94.208.141", "11");
INSERT INTO `wp_rg_form_view` VALUES("21256", "3", "2015-11-21 12:00:26", "202.46.56.95", "40");
INSERT INTO `wp_rg_form_view` VALUES("21257", "8", "2015-11-21 12:00:26", "202.46.56.95", "12");
INSERT INTO `wp_rg_form_view` VALUES("21258", "3", "2015-11-21 13:00:56", "5.9.17.118", "65");
INSERT INTO `wp_rg_form_view` VALUES("21259", "8", "2015-11-21 13:00:56", "5.9.17.118", "17");
INSERT INTO `wp_rg_form_view` VALUES("21260", "1", "2015-11-21 13:55:49", "91.219.137.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("21261", "3", "2015-11-21 14:08:00", "68.180.229.161", "22");
INSERT INTO `wp_rg_form_view` VALUES("21262", "8", "2015-11-21 14:08:00", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("21263", "3", "2015-11-21 15:00:12", "62.210.162.184", "24");
INSERT INTO `wp_rg_form_view` VALUES("21264", "8", "2015-11-21 15:00:12", "62.210.162.184", "6");
INSERT INTO `wp_rg_form_view` VALUES("21265", "8", "2015-11-21 16:05:34", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("21266", "3", "2015-11-21 16:17:20", "62.210.122.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("21267", "3", "2015-11-21 17:18:09", "40.77.167.55", "38");
INSERT INTO `wp_rg_form_view` VALUES("21268", "8", "2015-11-21 17:18:11", "40.77.167.55", "10");
INSERT INTO `wp_rg_form_view` VALUES("21269", "3", "2015-11-21 19:02:28", "40.77.167.55", "53");
INSERT INTO `wp_rg_form_view` VALUES("21270", "8", "2015-11-21 19:02:29", "40.77.167.55", "12");
INSERT INTO `wp_rg_form_view` VALUES("21271", "1", "2015-11-21 19:51:43", "37.203.212.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("21272", "3", "2015-11-21 20:04:31", "46.246.42.46", "50");
INSERT INTO `wp_rg_form_view` VALUES("21273", "8", "2015-11-21 20:04:31", "46.246.42.46", "15");
INSERT INTO `wp_rg_form_view` VALUES("21274", "3", "2015-11-21 21:27:16", "151.80.31.114", "25");
INSERT INTO `wp_rg_form_view` VALUES("21275", "8", "2015-11-21 21:27:18", "151.80.31.114", "6");
INSERT INTO `wp_rg_form_view` VALUES("21276", "1", "2015-11-21 21:54:50", "178.175.184.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("21277", "1", "2015-11-21 22:34:13", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21278", "3", "2015-11-21 22:34:15", "91.200.12.138", "26");
INSERT INTO `wp_rg_form_view` VALUES("21279", "8", "2015-11-21 22:34:15", "91.200.12.138", "7");
INSERT INTO `wp_rg_form_view` VALUES("21280", "3", "2015-11-21 23:13:20", "46.118.119.48", "35");
INSERT INTO `wp_rg_form_view` VALUES("21281", "3", "2015-11-21 23:13:20", "46.118.119.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("21282", "3", "2015-11-21 23:13:21", "46.118.119.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("21283", "8", "2015-11-21 23:13:21", "46.118.119.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("21284", "8", "2015-11-21 23:13:21", "46.118.119.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("21285", "8", "2015-11-21 23:13:21", "46.118.119.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("21286", "1", "2015-11-21 23:58:43", "198.23.216.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("21287", "3", "2015-11-22 00:11:42", "96.50.29.203", "12");
INSERT INTO `wp_rg_form_view` VALUES("21288", "8", "2015-11-22 00:11:43", "96.50.29.203", "3");
INSERT INTO `wp_rg_form_view` VALUES("21289", "3", "2015-11-22 01:32:53", "64.180.73.10", "74");
INSERT INTO `wp_rg_form_view` VALUES("21290", "8", "2015-11-22 01:32:54", "64.180.73.10", "17");
INSERT INTO `wp_rg_form_view` VALUES("21291", "3", "2015-11-22 02:07:53", "195.154.226.90", "57");
INSERT INTO `wp_rg_form_view` VALUES("21292", "8", "2015-11-22 02:07:53", "195.154.226.90", "14");
INSERT INTO `wp_rg_form_view` VALUES("21293", "1", "2015-11-22 02:35:05", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21294", "2", "2015-11-22 02:35:06", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21295", "3", "2015-11-22 03:02:08", "157.55.39.22", "28");
INSERT INTO `wp_rg_form_view` VALUES("21296", "8", "2015-11-22 03:02:08", "157.55.39.22", "7");
INSERT INTO `wp_rg_form_view` VALUES("21297", "1", "2015-11-22 03:16:49", "195.154.185.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("21298", "3", "2015-11-22 04:10:33", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21299", "3", "2015-11-22 05:12:02", "62.210.162.184", "20");
INSERT INTO `wp_rg_form_view` VALUES("21300", "8", "2015-11-22 05:12:03", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("21301", "1", "2015-11-22 05:28:20", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21302", "3", "2015-11-22 06:25:02", "167.114.199.80", "8");
INSERT INTO `wp_rg_form_view` VALUES("21303", "8", "2015-11-22 06:25:02", "167.114.199.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("21304", "1", "2015-11-22 07:12:02", "157.55.39.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("21305", "3", "2015-11-22 07:12:02", "157.55.39.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("21306", "8", "2015-11-22 07:12:02", "157.55.39.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("21307", "3", "2015-11-22 09:03:37", "68.180.229.161", "60");
INSERT INTO `wp_rg_form_view` VALUES("21308", "8", "2015-11-22 09:03:43", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("21309", "2", "2015-11-22 10:20:24", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("21310", "3", "2015-11-22 10:20:24", "91.200.12.138", "26");
INSERT INTO `wp_rg_form_view` VALUES("21311", "8", "2015-11-22 10:20:24", "91.200.12.138", "7");
INSERT INTO `wp_rg_form_view` VALUES("21312", "3", "2015-11-22 11:40:34", "62.210.162.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("21313", "8", "2015-11-22 11:40:35", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("21314", "3", "2015-11-22 12:15:15", "5.175.135.10", "17");
INSERT INTO `wp_rg_form_view` VALUES("21315", "8", "2015-11-22 12:15:17", "5.175.135.10", "5");
INSERT INTO `wp_rg_form_view` VALUES("21316", "1", "2015-11-22 12:48:11", "64.110.135.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("21317", "3", "2015-11-22 13:25:43", "62.210.162.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("21318", "8", "2015-11-22 13:25:45", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("21319", "3", "2015-11-22 14:14:44", "157.55.39.171", "4");
INSERT INTO `wp_rg_form_view` VALUES("21320", "8", "2015-11-22 14:14:45", "157.55.39.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("21321", "3", "2015-11-22 15:05:58", "62.210.162.184", "38");
INSERT INTO `wp_rg_form_view` VALUES("21322", "8", "2015-11-22 15:06:00", "62.210.162.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("21323", "1", "2015-11-22 15:20:47", "178.175.184.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("21324", "3", "2015-11-22 16:21:03", "66.43.57.8", "21");
INSERT INTO `wp_rg_form_view` VALUES("21325", "8", "2015-11-22 16:21:03", "66.43.57.8", "6");
INSERT INTO `wp_rg_form_view` VALUES("21326", "3", "2015-11-22 17:00:28", "202.46.48.210", "40");
INSERT INTO `wp_rg_form_view` VALUES("21327", "8", "2015-11-22 17:00:28", "202.46.48.210", "11");
INSERT INTO `wp_rg_form_view` VALUES("21328", "3", "2015-11-22 18:12:36", "40.77.167.70", "20");
INSERT INTO `wp_rg_form_view` VALUES("21329", "8", "2015-11-22 18:12:36", "40.77.167.70", "4");
INSERT INTO `wp_rg_form_view` VALUES("21330", "3", "2015-11-22 19:09:15", "202.46.49.198", "25");
INSERT INTO `wp_rg_form_view` VALUES("21331", "8", "2015-11-22 19:09:15", "202.46.49.198", "8");
INSERT INTO `wp_rg_form_view` VALUES("21332", "3", "2015-11-22 20:07:48", "202.46.55.146", "49");
INSERT INTO `wp_rg_form_view` VALUES("21333", "8", "2015-11-22 20:07:49", "202.46.55.146", "12");
INSERT INTO `wp_rg_form_view` VALUES("21334", "1", "2015-11-22 20:40:24", "96.93.118.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("21335", "3", "2015-11-22 21:04:29", "207.46.13.0", "53");
INSERT INTO `wp_rg_form_view` VALUES("21336", "8", "2015-11-22 21:04:29", "207.46.13.0", "13");
INSERT INTO `wp_rg_form_view` VALUES("21337", "1", "2015-11-22 21:16:51", "138.128.111.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("21338", "3", "2015-11-22 22:06:19", "91.200.12.39", "50");
INSERT INTO `wp_rg_form_view` VALUES("21339", "8", "2015-11-22 22:06:19", "91.200.12.39", "13");
INSERT INTO `wp_rg_form_view` VALUES("21340", "1", "2015-11-22 22:15:20", "188.208.218.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("21341", "3", "2015-11-22 23:03:44", "202.46.51.24", "28");
INSERT INTO `wp_rg_form_view` VALUES("21342", "8", "2015-11-22 23:03:44", "202.46.51.24", "7");
INSERT INTO `wp_rg_form_view` VALUES("21343", "3", "2015-11-23 00:00:12", "70.35.197.92", "146");
INSERT INTO `wp_rg_form_view` VALUES("21344", "8", "2015-11-23 00:00:12", "70.35.197.92", "36");
INSERT INTO `wp_rg_form_view` VALUES("21345", "1", "2015-11-23 00:00:48", "70.35.197.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("21346", "2", "2015-11-23 00:00:54", "70.35.197.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("21347", "3", "2015-11-23 01:00:49", "202.46.53.56", "42");
INSERT INTO `wp_rg_form_view` VALUES("21348", "8", "2015-11-23 01:00:49", "202.46.53.56", "11");
INSERT INTO `wp_rg_form_view` VALUES("21349", "3", "2015-11-23 02:10:49", "202.46.58.192", "28");
INSERT INTO `wp_rg_form_view` VALUES("21350", "8", "2015-11-23 02:10:49", "202.46.58.192", "8");
INSERT INTO `wp_rg_form_view` VALUES("21351", "3", "2015-11-23 03:09:21", "202.46.51.186", "22");
INSERT INTO `wp_rg_form_view` VALUES("21352", "8", "2015-11-23 03:09:22", "202.46.51.186", "6");
INSERT INTO `wp_rg_form_view` VALUES("21353", "3", "2015-11-23 04:19:59", "202.46.56.142", "46");
INSERT INTO `wp_rg_form_view` VALUES("21354", "8", "2015-11-23 04:19:59", "202.46.56.142", "12");
INSERT INTO `wp_rg_form_view` VALUES("21355", "3", "2015-11-23 05:06:09", "157.55.39.204", "30");
INSERT INTO `wp_rg_form_view` VALUES("21356", "8", "2015-11-23 05:06:09", "157.55.39.204", "6");
INSERT INTO `wp_rg_form_view` VALUES("21357", "3", "2015-11-23 06:01:53", "68.180.229.161", "75");
INSERT INTO `wp_rg_form_view` VALUES("21358", "8", "2015-11-23 06:01:53", "68.180.229.161", "19");
INSERT INTO `wp_rg_form_view` VALUES("21359", "2", "2015-11-23 06:38:05", "74.14.21.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("21360", "3", "2015-11-23 07:08:21", "202.46.54.187", "22");
INSERT INTO `wp_rg_form_view` VALUES("21361", "8", "2015-11-23 07:08:22", "202.46.54.187", "6");
INSERT INTO `wp_rg_form_view` VALUES("21362", "3", "2015-11-23 08:08:00", "202.46.50.82", "35");
INSERT INTO `wp_rg_form_view` VALUES("21363", "8", "2015-11-23 08:08:01", "202.46.50.82", "11");
INSERT INTO `wp_rg_form_view` VALUES("21364", "1", "2015-11-23 08:55:57", "198.97.37.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("21365", "8", "2015-11-23 09:03:15", "68.180.229.161", "18");
INSERT INTO `wp_rg_form_view` VALUES("21366", "3", "2015-11-23 09:03:17", "68.180.229.161", "66");
INSERT INTO `wp_rg_form_view` VALUES("21367", "1", "2015-11-23 09:09:02", "5.157.15.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("21368", "3", "2015-11-23 10:03:48", "202.46.56.209", "86");
INSERT INTO `wp_rg_form_view` VALUES("21369", "8", "2015-11-23 10:03:50", "202.46.56.209", "20");
INSERT INTO `wp_rg_form_view` VALUES("21370", "3", "2015-11-23 11:09:13", "202.46.51.191", "31");
INSERT INTO `wp_rg_form_view` VALUES("21371", "8", "2015-11-23 11:09:13", "202.46.51.191", "9");
INSERT INTO `wp_rg_form_view` VALUES("21372", "3", "2015-11-23 12:01:34", "172.245.134.131", "25");
INSERT INTO `wp_rg_form_view` VALUES("21373", "8", "2015-11-23 12:01:34", "172.245.134.131", "7");
INSERT INTO `wp_rg_form_view` VALUES("21374", "3", "2015-11-23 13:03:32", "68.180.229.161", "74");
INSERT INTO `wp_rg_form_view` VALUES("21375", "8", "2015-11-23 13:03:32", "68.180.229.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("21376", "1", "2015-11-23 13:20:23", "209.133.66.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("21377", "3", "2015-11-23 14:00:21", "66.249.66.81", "27");
INSERT INTO `wp_rg_form_view` VALUES("21378", "8", "2015-11-23 14:00:22", "66.249.66.81", "7");
INSERT INTO `wp_rg_form_view` VALUES("21379", "8", "2015-11-23 15:17:55", "202.46.58.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("21380", "3", "2015-11-23 15:17:57", "202.46.58.73", "31");
INSERT INTO `wp_rg_form_view` VALUES("21381", "3", "2015-11-23 16:00:20", "24.68.68.82", "31");
INSERT INTO `wp_rg_form_view` VALUES("21382", "8", "2015-11-23 16:00:20", "24.68.68.82", "7");
INSERT INTO `wp_rg_form_view` VALUES("21383", "3", "2015-11-23 17:36:26", "66.249.66.78", "8");
INSERT INTO `wp_rg_form_view` VALUES("21384", "8", "2015-11-23 17:36:35", "66.249.66.78", "2");
INSERT INTO `wp_rg_form_view` VALUES("21385", "8", "2015-11-23 18:04:01", "96.50.93.42", "11");
INSERT INTO `wp_rg_form_view` VALUES("21386", "3", "2015-11-23 18:04:01", "96.50.93.42", "28");
INSERT INTO `wp_rg_form_view` VALUES("21387", "3", "2015-11-23 19:07:25", "64.114.18.129", "74");
INSERT INTO `wp_rg_form_view` VALUES("21388", "8", "2015-11-23 19:07:27", "64.114.18.129", "19");
INSERT INTO `wp_rg_form_view` VALUES("21389", "1", "2015-11-23 19:36:24", "142.104.151.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("21390", "1", "2015-11-23 20:13:05", "195.154.185.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("21391", "3", "2015-11-23 20:13:05", "195.154.185.57", "19");
INSERT INTO `wp_rg_form_view` VALUES("21392", "8", "2015-11-23 20:13:05", "195.154.185.57", "5");
INSERT INTO `wp_rg_form_view` VALUES("21393", "3", "2015-11-23 21:24:03", "40.77.167.24", "102");
INSERT INTO `wp_rg_form_view` VALUES("21394", "8", "2015-11-23 21:24:04", "40.77.167.24", "25");
INSERT INTO `wp_rg_form_view` VALUES("21395", "1", "2015-11-23 21:31:11", "138.128.46.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("21396", "9", "2015-11-23 21:31:49", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21397", "2", "2015-11-23 21:39:45", "45.55.229.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("21398", "3", "2015-11-23 22:52:14", "64.114.18.129", "15");
INSERT INTO `wp_rg_form_view` VALUES("21399", "8", "2015-11-23 22:52:17", "64.114.18.129", "5");
INSERT INTO `wp_rg_form_view` VALUES("21400", "3", "2015-11-23 23:21:44", "207.46.13.102", "78");
INSERT INTO `wp_rg_form_view` VALUES("21401", "8", "2015-11-23 23:21:44", "207.46.13.102", "19");
INSERT INTO `wp_rg_form_view` VALUES("21402", "1", "2015-11-23 23:49:17", "216.158.202.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("21403", "3", "2015-11-24 00:26:04", "24.108.100.128", "40");
INSERT INTO `wp_rg_form_view` VALUES("21404", "8", "2015-11-24 00:26:04", "24.108.100.128", "10");
INSERT INTO `wp_rg_form_view` VALUES("21405", "3", "2015-11-24 01:20:40", "95.79.36.111", "37");
INSERT INTO `wp_rg_form_view` VALUES("21406", "8", "2015-11-24 01:20:40", "95.79.36.111", "9");
INSERT INTO `wp_rg_form_view` VALUES("21407", "1", "2015-11-24 01:23:50", "155.94.221.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("21408", "3", "2015-11-24 02:25:05", "66.249.74.102", "35");
INSERT INTO `wp_rg_form_view` VALUES("21409", "8", "2015-11-24 02:25:05", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("21410", "1", "2015-11-24 02:36:06", "213.184.105.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("21411", "8", "2015-11-24 03:07:37", "5.9.140.208", "3");
INSERT INTO `wp_rg_form_view` VALUES("21412", "3", "2015-11-24 03:07:38", "5.9.140.208", "9");
INSERT INTO `wp_rg_form_view` VALUES("21413", "3", "2015-11-24 04:34:27", "192.210.226.126", "67");
INSERT INTO `wp_rg_form_view` VALUES("21414", "8", "2015-11-24 04:34:29", "192.210.226.126", "14");
INSERT INTO `wp_rg_form_view` VALUES("21415", "3", "2015-11-24 05:08:15", "45.57.140.40", "65");
INSERT INTO `wp_rg_form_view` VALUES("21416", "8", "2015-11-24 05:08:15", "45.57.140.40", "15");
INSERT INTO `wp_rg_form_view` VALUES("21417", "3", "2015-11-24 06:20:22", "62.210.162.184", "32");
INSERT INTO `wp_rg_form_view` VALUES("21418", "8", "2015-11-24 06:20:23", "62.210.162.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("21419", "3", "2015-11-24 07:00:37", "23.94.251.211", "9");
INSERT INTO `wp_rg_form_view` VALUES("21420", "8", "2015-11-24 07:00:37", "23.94.251.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("21421", "3", "2015-11-24 08:01:51", "62.210.162.184", "38");
INSERT INTO `wp_rg_form_view` VALUES("21422", "8", "2015-11-24 08:01:53", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("21423", "3", "2015-11-24 09:31:38", "66.249.74.104", "128");
INSERT INTO `wp_rg_form_view` VALUES("21424", "8", "2015-11-24 09:31:41", "66.249.74.104", "32");
INSERT INTO `wp_rg_form_view` VALUES("21425", "2", "2015-11-24 09:57:22", "103.60.176.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21426", "1", "2015-11-24 09:57:24", "103.60.176.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21427", "3", "2015-11-24 10:00:01", "103.60.176.6", "84");
INSERT INTO `wp_rg_form_view` VALUES("21428", "8", "2015-11-24 10:00:01", "103.60.176.6", "21");
INSERT INTO `wp_rg_form_view` VALUES("21429", "1", "2015-11-24 10:35:38", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21430", "3", "2015-11-24 11:26:01", "86.106.18.11", "41");
INSERT INTO `wp_rg_form_view` VALUES("21431", "8", "2015-11-24 11:26:04", "86.106.18.11", "10");
INSERT INTO `wp_rg_form_view` VALUES("21432", "3", "2015-11-24 12:08:50", "207.46.13.82", "8");
INSERT INTO `wp_rg_form_view` VALUES("21433", "8", "2015-11-24 12:08:50", "207.46.13.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("21434", "1", "2015-11-24 13:15:20", "195.154.250.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("21435", "3", "2015-11-24 13:15:23", "195.154.250.39", "16");
INSERT INTO `wp_rg_form_view` VALUES("21436", "8", "2015-11-24 13:15:24", "195.154.250.39", "5");
INSERT INTO `wp_rg_form_view` VALUES("21437", "3", "2015-11-24 14:42:26", "91.200.12.25", "45");
INSERT INTO `wp_rg_form_view` VALUES("21438", "8", "2015-11-24 14:42:28", "91.200.12.25", "12");
INSERT INTO `wp_rg_form_view` VALUES("21439", "1", "2015-11-24 14:50:22", "23.250.54.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("21440", "3", "2015-11-24 15:21:01", "68.180.229.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("21441", "8", "2015-11-24 15:21:02", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("21442", "3", "2015-11-24 16:27:18", "202.46.55.68", "25");
INSERT INTO `wp_rg_form_view` VALUES("21443", "8", "2015-11-24 16:27:20", "202.46.55.68", "5");
INSERT INTO `wp_rg_form_view` VALUES("21444", "3", "2015-11-24 17:02:25", "202.46.58.55", "21");
INSERT INTO `wp_rg_form_view` VALUES("21445", "8", "2015-11-24 17:02:26", "202.46.58.55", "5");
INSERT INTO `wp_rg_form_view` VALUES("21446", "3", "2015-11-24 18:26:16", "202.46.56.201", "231");
INSERT INTO `wp_rg_form_view` VALUES("21447", "8", "2015-11-24 18:26:33", "202.46.56.201", "58");
INSERT INTO `wp_rg_form_view` VALUES("21448", "2", "2015-11-24 18:56:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("21449", "1", "2015-11-24 18:56:33", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("21450", "3", "2015-11-24 19:00:15", "5.9.98.130", "2391");
INSERT INTO `wp_rg_form_view` VALUES("21451", "8", "2015-11-24 19:00:16", "5.9.98.130", "702");
INSERT INTO `wp_rg_form_view` VALUES("21452", "5", "2015-11-24 19:01:18", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("21453", "9", "2015-11-24 19:04:14", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("21454", "6", "2015-11-24 19:08:01", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("21455", "3", "2015-11-24 20:10:49", "202.46.58.186", "2316");
INSERT INTO `wp_rg_form_view` VALUES("21456", "8", "2015-11-24 20:10:50", "202.46.58.186", "691");
INSERT INTO `wp_rg_form_view` VALUES("21457", "3", "2015-11-24 21:10:50", "202.46.56.33", "1416");
INSERT INTO `wp_rg_form_view` VALUES("21458", "8", "2015-11-24 21:10:51", "202.46.56.33", "342");
INSERT INTO `wp_rg_form_view` VALUES("21459", "3", "2015-11-24 22:00:01", "5.9.98.130", "3286");
INSERT INTO `wp_rg_form_view` VALUES("21460", "8", "2015-11-24 22:00:01", "5.9.98.130", "1058");
INSERT INTO `wp_rg_form_view` VALUES("21461", "1", "2015-11-24 23:02:24", "93.73.228.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("21462", "3", "2015-11-24 23:02:29", "93.73.228.130", "25");
INSERT INTO `wp_rg_form_view` VALUES("21463", "8", "2015-11-24 23:02:32", "93.73.228.130", "6");
INSERT INTO `wp_rg_form_view` VALUES("21464", "8", "2015-11-25 00:11:17", "24.108.110.58", "639");
INSERT INTO `wp_rg_form_view` VALUES("21465", "3", "2015-11-25 00:11:19", "24.108.110.58", "2693");
INSERT INTO `wp_rg_form_view` VALUES("21466", "3", "2015-11-25 01:00:02", "5.9.98.130", "3778");
INSERT INTO `wp_rg_form_view` VALUES("21467", "8", "2015-11-25 01:00:02", "5.9.98.130", "920");
INSERT INTO `wp_rg_form_view` VALUES("21468", "8", "2015-11-25 02:00:01", "5.9.98.130", "1209");
INSERT INTO `wp_rg_form_view` VALUES("21469", "3", "2015-11-25 02:00:01", "5.9.98.130", "2827");
INSERT INTO `wp_rg_form_view` VALUES("21470", "3", "2015-11-25 03:35:06", "202.46.50.84", "22");
INSERT INTO `wp_rg_form_view` VALUES("21471", "8", "2015-11-25 03:35:10", "202.46.50.84", "7");
INSERT INTO `wp_rg_form_view` VALUES("21472", "3", "2015-11-25 04:01:08", "5.9.98.130", "53");
INSERT INTO `wp_rg_form_view` VALUES("21473", "8", "2015-11-25 04:01:08", "5.9.98.130", "14");
INSERT INTO `wp_rg_form_view` VALUES("21474", "9", "2015-11-25 04:01:21", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("21475", "8", "2015-11-25 05:00:42", "69.30.214.38", "24");
INSERT INTO `wp_rg_form_view` VALUES("21476", "3", "2015-11-25 05:00:50", "69.30.214.38", "84");
INSERT INTO `wp_rg_form_view` VALUES("21477", "1", "2015-11-25 05:31:54", "24.68.38.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("21478", "3", "2015-11-25 06:00:22", "202.46.51.103", "71");
INSERT INTO `wp_rg_form_view` VALUES("21479", "8", "2015-11-25 06:00:22", "202.46.51.103", "17");
INSERT INTO `wp_rg_form_view` VALUES("21480", "3", "2015-11-25 07:12:16", "202.46.51.110", "45");
INSERT INTO `wp_rg_form_view` VALUES("21481", "8", "2015-11-25 07:12:16", "202.46.51.110", "13");
INSERT INTO `wp_rg_form_view` VALUES("21482", "3", "2015-11-25 08:02:44", "66.249.74.104", "43");
INSERT INTO `wp_rg_form_view` VALUES("21483", "8", "2015-11-25 08:02:45", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("21484", "3", "2015-11-25 09:00:07", "202.46.52.60", "38");
INSERT INTO `wp_rg_form_view` VALUES("21485", "8", "2015-11-25 09:00:07", "202.46.52.60", "12");
INSERT INTO `wp_rg_form_view` VALUES("21486", "3", "2015-11-25 10:14:32", "202.46.51.193", "20");
INSERT INTO `wp_rg_form_view` VALUES("21487", "8", "2015-11-25 10:14:32", "202.46.51.193", "6");
INSERT INTO `wp_rg_form_view` VALUES("21488", "3", "2015-11-25 11:06:40", "207.46.13.120", "41");
INSERT INTO `wp_rg_form_view` VALUES("21489", "8", "2015-11-25 11:06:40", "207.46.13.120", "11");
INSERT INTO `wp_rg_form_view` VALUES("21490", "3", "2015-11-25 12:01:31", "178.137.89.181", "48");
INSERT INTO `wp_rg_form_view` VALUES("21491", "8", "2015-11-25 12:01:31", "178.137.89.181", "12");
INSERT INTO `wp_rg_form_view` VALUES("21492", "3", "2015-11-25 13:09:12", "202.46.49.145", "14");
INSERT INTO `wp_rg_form_view` VALUES("21493", "8", "2015-11-25 13:09:12", "202.46.49.145", "4");
INSERT INTO `wp_rg_form_view` VALUES("21494", "3", "2015-11-25 14:02:12", "202.46.53.17", "30");
INSERT INTO `wp_rg_form_view` VALUES("21495", "8", "2015-11-25 14:02:12", "202.46.53.17", "9");
INSERT INTO `wp_rg_form_view` VALUES("21496", "3", "2015-11-25 15:08:58", "24.108.136.68", "94");
INSERT INTO `wp_rg_form_view` VALUES("21497", "8", "2015-11-25 15:08:59", "24.108.136.68", "23");
INSERT INTO `wp_rg_form_view` VALUES("21498", "3", "2015-11-25 16:14:02", "5.249.164.114", "37");
INSERT INTO `wp_rg_form_view` VALUES("21499", "8", "2015-11-25 16:14:02", "5.249.164.114", "9");
INSERT INTO `wp_rg_form_view` VALUES("21500", "3", "2015-11-25 17:16:57", "68.180.229.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("21501", "8", "2015-11-25 17:16:57", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("21502", "8", "2015-11-25 18:06:29", "64.114.222.252", "17");
INSERT INTO `wp_rg_form_view` VALUES("21503", "3", "2015-11-25 18:12:09", "178.137.89.181", "60");
INSERT INTO `wp_rg_form_view` VALUES("21504", "3", "2015-11-25 19:42:11", "24.68.6.182", "21");
INSERT INTO `wp_rg_form_view` VALUES("21505", "8", "2015-11-25 19:42:13", "24.68.6.182", "6");
INSERT INTO `wp_rg_form_view` VALUES("21506", "3", "2015-11-25 20:42:09", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("21507", "8", "2015-11-25 20:42:10", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21508", "3", "2015-11-25 21:00:17", "46.118.119.48", "34");
INSERT INTO `wp_rg_form_view` VALUES("21509", "8", "2015-11-25 21:00:18", "46.118.119.48", "8");
INSERT INTO `wp_rg_form_view` VALUES("21510", "8", "2015-11-25 21:00:18", "46.118.119.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("21511", "1", "2015-11-25 21:49:20", "96.50.108.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("21512", "3", "2015-11-25 22:02:03", "207.194.133.9", "45");
INSERT INTO `wp_rg_form_view` VALUES("21513", "8", "2015-11-25 22:02:04", "207.194.133.9", "13");
INSERT INTO `wp_rg_form_view` VALUES("21514", "3", "2015-11-25 23:55:34", "207.46.13.82", "5");
INSERT INTO `wp_rg_form_view` VALUES("21515", "8", "2015-11-25 23:55:35", "207.46.13.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("21516", "3", "2015-11-26 00:03:35", "207.194.133.9", "29");
INSERT INTO `wp_rg_form_view` VALUES("21517", "8", "2015-11-26 00:03:35", "207.194.133.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("21518", "1", "2015-11-26 00:03:45", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("21519", "3", "2015-11-26 01:25:03", "40.77.167.78", "60");
INSERT INTO `wp_rg_form_view` VALUES("21520", "8", "2015-11-26 01:25:03", "40.77.167.78", "15");
INSERT INTO `wp_rg_form_view` VALUES("21521", "3", "2015-11-26 02:19:22", "104.200.154.10", "24");
INSERT INTO `wp_rg_form_view` VALUES("21522", "8", "2015-11-26 02:19:22", "104.200.154.10", "6");
INSERT INTO `wp_rg_form_view` VALUES("21523", "3", "2015-11-26 03:24:48", "207.46.13.120", "9");
INSERT INTO `wp_rg_form_view` VALUES("21524", "8", "2015-11-26 03:24:49", "207.46.13.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("21525", "7", "2015-11-26 05:12:27", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21526", "3", "2015-11-26 05:12:28", "134.249.159.6", "8");
INSERT INTO `wp_rg_form_view` VALUES("21527", "8", "2015-11-26 05:12:29", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21528", "9", "2015-11-26 06:32:55", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("21529", "3", "2015-11-26 06:32:55", "66.249.74.106", "32");
INSERT INTO `wp_rg_form_view` VALUES("21530", "8", "2015-11-26 06:32:56", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("21531", "3", "2015-11-26 07:02:40", "178.137.89.181", "18");
INSERT INTO `wp_rg_form_view` VALUES("21532", "8", "2015-11-26 07:02:40", "178.137.89.181", "4");
INSERT INTO `wp_rg_form_view` VALUES("21533", "8", "2015-11-26 08:12:00", "144.76.29.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("21534", "3", "2015-11-26 08:12:00", "144.76.29.162", "26");
INSERT INTO `wp_rg_form_view` VALUES("21535", "9", "2015-11-26 08:12:00", "144.76.29.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("21536", "3", "2015-11-26 09:07:51", "207.46.13.120", "25");
INSERT INTO `wp_rg_form_view` VALUES("21537", "8", "2015-11-26 09:07:51", "207.46.13.120", "6");
INSERT INTO `wp_rg_form_view` VALUES("21538", "1", "2015-11-26 09:59:46", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21539", "3", "2015-11-26 10:12:29", "207.46.13.88", "20");
INSERT INTO `wp_rg_form_view` VALUES("21540", "8", "2015-11-26 10:12:29", "207.46.13.88", "5");
INSERT INTO `wp_rg_form_view` VALUES("21541", "3", "2015-11-26 11:05:47", "207.46.13.120", "8");
INSERT INTO `wp_rg_form_view` VALUES("21542", "8", "2015-11-26 11:05:48", "207.46.13.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("21543", "3", "2015-11-26 12:25:10", "188.165.15.117", "12");
INSERT INTO `wp_rg_form_view` VALUES("21544", "8", "2015-11-26 12:25:10", "188.165.15.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("21545", "3", "2015-11-26 14:44:25", "207.46.13.88", "6");
INSERT INTO `wp_rg_form_view` VALUES("21546", "8", "2015-11-26 14:44:26", "207.46.13.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("21547", "3", "2015-11-26 15:24:33", "98.158.90.229", "32");
INSERT INTO `wp_rg_form_view` VALUES("21548", "8", "2015-11-26 15:24:34", "98.158.90.229", "8");
INSERT INTO `wp_rg_form_view` VALUES("21549", "3", "2015-11-26 16:00:41", "176.8.244.238", "107");
INSERT INTO `wp_rg_form_view` VALUES("21550", "3", "2015-11-26 16:00:41", "176.8.244.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("21551", "8", "2015-11-26 16:00:41", "176.8.244.238", "26");
INSERT INTO `wp_rg_form_view` VALUES("21552", "8", "2015-11-26 16:00:41", "176.8.244.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("21553", "1", "2015-11-26 16:21:20", "216.232.155.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("21554", "3", "2015-11-26 17:13:29", "91.200.12.39", "47");
INSERT INTO `wp_rg_form_view` VALUES("21555", "8", "2015-11-26 17:13:31", "91.200.12.39", "12");
INSERT INTO `wp_rg_form_view` VALUES("21556", "3", "2015-11-26 18:02:37", "66.249.74.104", "66");
INSERT INTO `wp_rg_form_view` VALUES("21557", "8", "2015-11-26 18:02:38", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("21558", "1", "2015-11-26 18:28:12", "192.99.166.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("21559", "3", "2015-11-26 19:01:25", "202.46.57.79", "35");
INSERT INTO `wp_rg_form_view` VALUES("21560", "8", "2015-11-26 19:01:25", "202.46.57.79", "18");
INSERT INTO `wp_rg_form_view` VALUES("21561", "3", "2015-11-26 20:22:31", "107.178.97.18", "119");
INSERT INTO `wp_rg_form_view` VALUES("21562", "8", "2015-11-26 20:22:33", "107.178.97.18", "60");
INSERT INTO `wp_rg_form_view` VALUES("21563", "2", "2015-11-26 20:22:42", "107.178.97.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("21564", "1", "2015-11-26 20:23:31", "107.178.97.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("21565", "8", "2015-11-26 21:07:37", "66.249.74.106", "15");
INSERT INTO `wp_rg_form_view` VALUES("21566", "3", "2015-11-26 21:07:37", "66.249.74.106", "27");
INSERT INTO `wp_rg_form_view` VALUES("21567", "1", "2015-11-26 21:24:36", "23.95.191.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("21568", "3", "2015-11-26 22:00:49", "96.50.4.48", "25");
INSERT INTO `wp_rg_form_view` VALUES("21569", "8", "2015-11-26 22:00:49", "96.50.4.48", "13");
INSERT INTO `wp_rg_form_view` VALUES("21570", "8", "2015-11-26 23:00:25", "202.46.58.92", "7");
INSERT INTO `wp_rg_form_view` VALUES("21571", "3", "2015-11-26 23:00:25", "202.46.58.92", "11");
INSERT INTO `wp_rg_form_view` VALUES("21572", "8", "2015-11-27 00:17:33", "202.46.54.117", "8");
INSERT INTO `wp_rg_form_view` VALUES("21573", "3", "2015-11-27 00:17:33", "202.46.54.117", "14");
INSERT INTO `wp_rg_form_view` VALUES("21574", "3", "2015-11-27 01:06:23", "46.246.42.46", "37");
INSERT INTO `wp_rg_form_view` VALUES("21575", "8", "2015-11-27 01:06:23", "46.246.42.46", "19");
INSERT INTO `wp_rg_form_view` VALUES("21576", "3", "2015-11-27 02:11:52", "202.46.50.164", "45");
INSERT INTO `wp_rg_form_view` VALUES("21577", "8", "2015-11-27 02:11:52", "202.46.50.164", "22");
INSERT INTO `wp_rg_form_view` VALUES("21578", "1", "2015-11-27 02:51:07", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("21579", "2", "2015-11-27 02:55:20", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("21580", "3", "2015-11-27 03:09:37", "154.20.196.21", "16");
INSERT INTO `wp_rg_form_view` VALUES("21581", "8", "2015-11-27 03:09:37", "154.20.196.21", "8");
INSERT INTO `wp_rg_form_view` VALUES("21582", "3", "2015-11-27 04:01:50", "202.46.57.26", "33");
INSERT INTO `wp_rg_form_view` VALUES("21583", "8", "2015-11-27 04:01:50", "202.46.57.26", "17");
INSERT INTO `wp_rg_form_view` VALUES("21584", "1", "2015-11-27 05:32:00", "192.241.106.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("21585", "3", "2015-11-27 05:32:01", "192.241.106.91", "4");
INSERT INTO `wp_rg_form_view` VALUES("21586", "8", "2015-11-27 05:32:02", "192.241.106.91", "3");
INSERT INTO `wp_rg_form_view` VALUES("21587", "8", "2015-11-27 06:09:36", "202.46.51.15", "18");
INSERT INTO `wp_rg_form_view` VALUES("21588", "3", "2015-11-27 06:09:37", "202.46.51.15", "37");
INSERT INTO `wp_rg_form_view` VALUES("21589", "3", "2015-11-27 07:23:14", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("21590", "8", "2015-11-27 07:23:18", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("21591", "8", "2015-11-27 08:05:31", "202.46.58.50", "12");
INSERT INTO `wp_rg_form_view` VALUES("21592", "3", "2015-11-27 08:05:31", "202.46.58.50", "23");
INSERT INTO `wp_rg_form_view` VALUES("21593", "1", "2015-11-27 08:06:32", "155.94.219.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("21594", "3", "2015-11-27 09:13:38", "46.118.119.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("21595", "8", "2015-11-27 09:13:39", "46.118.119.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("21596", "3", "2015-11-27 10:22:58", "178.150.15.176", "27");
INSERT INTO `wp_rg_form_view` VALUES("21597", "8", "2015-11-27 10:23:06", "178.150.15.176", "13");
INSERT INTO `wp_rg_form_view` VALUES("21598", "2", "2015-11-27 10:48:03", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("21599", "1", "2015-11-27 10:50:32", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("21600", "3", "2015-11-27 11:01:35", "207.46.13.88", "20");
INSERT INTO `wp_rg_form_view` VALUES("21601", "8", "2015-11-27 11:01:35", "207.46.13.88", "10");
INSERT INTO `wp_rg_form_view` VALUES("21602", "2", "2015-11-27 11:26:48", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("21603", "7", "2015-11-27 12:32:22", "207.46.13.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("21604", "3", "2015-11-27 12:32:27", "207.46.13.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("21605", "8", "2015-11-27 12:32:29", "207.46.13.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("21606", "3", "2015-11-27 13:32:50", "65.55.209.82", "8");
INSERT INTO `wp_rg_form_view` VALUES("21607", "8", "2015-11-27 13:32:51", "65.55.209.82", "5");
INSERT INTO `wp_rg_form_view` VALUES("21608", "2", "2015-11-27 13:32:55", "65.55.209.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("21609", "1", "2015-11-27 13:48:54", "192.186.156.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("21610", "1", "2015-11-27 14:39:04", "104.193.10.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("21611", "3", "2015-11-27 14:39:05", "104.193.10.45", "11");
INSERT INTO `wp_rg_form_view` VALUES("21612", "8", "2015-11-27 14:39:05", "104.193.10.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("21613", "3", "2015-11-27 16:08:02", "178.137.89.181", "21");
INSERT INTO `wp_rg_form_view` VALUES("21614", "3", "2015-11-27 16:08:02", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("21615", "8", "2015-11-27 16:08:03", "178.137.89.181", "10");
INSERT INTO `wp_rg_form_view` VALUES("21616", "8", "2015-11-27 16:08:03", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("21617", "3", "2015-11-27 17:33:40", "188.165.15.117", "8");
INSERT INTO `wp_rg_form_view` VALUES("21618", "8", "2015-11-27 17:33:40", "188.165.15.117", "4");
INSERT INTO `wp_rg_form_view` VALUES("21619", "3", "2015-11-27 18:35:23", "202.46.55.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("21620", "8", "2015-11-27 18:35:24", "202.46.55.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("21621", "1", "2015-11-27 19:02:28", "104.193.10.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("21622", "3", "2015-11-27 19:02:29", "104.193.10.45", "11");
INSERT INTO `wp_rg_form_view` VALUES("21623", "8", "2015-11-27 19:02:29", "104.193.10.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("21624", "3", "2015-11-27 20:02:43", "37.115.191.181", "35");
INSERT INTO `wp_rg_form_view` VALUES("21625", "3", "2015-11-27 20:02:43", "37.115.191.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("21626", "8", "2015-11-27 20:02:43", "37.115.191.181", "19");
INSERT INTO `wp_rg_form_view` VALUES("21627", "3", "2015-11-27 21:02:54", "202.46.56.200", "28");
INSERT INTO `wp_rg_form_view` VALUES("21628", "8", "2015-11-27 21:02:54", "202.46.56.200", "16");
INSERT INTO `wp_rg_form_view` VALUES("21629", "3", "2015-11-27 22:05:06", "202.46.58.153", "39");
INSERT INTO `wp_rg_form_view` VALUES("21630", "8", "2015-11-27 22:05:06", "202.46.58.153", "25");
INSERT INTO `wp_rg_form_view` VALUES("21631", "3", "2015-11-27 23:01:22", "202.46.48.16", "27");
INSERT INTO `wp_rg_form_view` VALUES("21632", "8", "2015-11-27 23:01:22", "202.46.48.16", "19");
INSERT INTO `wp_rg_form_view` VALUES("21633", "8", "2015-11-28 00:03:33", "202.46.50.184", "24");
INSERT INTO `wp_rg_form_view` VALUES("21634", "3", "2015-11-28 00:03:33", "202.46.50.184", "39");
INSERT INTO `wp_rg_form_view` VALUES("21635", "2", "2015-11-28 00:50:22", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("21636", "3", "2015-11-28 01:00:58", "202.46.52.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("21637", "8", "2015-11-28 01:00:58", "202.46.52.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("21638", "3", "2015-11-28 02:04:05", "202.46.52.79", "14");
INSERT INTO `wp_rg_form_view` VALUES("21639", "8", "2015-11-28 02:04:06", "202.46.52.79", "8");
INSERT INTO `wp_rg_form_view` VALUES("21640", "8", "2015-11-28 03:14:38", "202.46.56.136", "11");
INSERT INTO `wp_rg_form_view` VALUES("21641", "3", "2015-11-28 03:14:39", "202.46.56.136", "16");
INSERT INTO `wp_rg_form_view` VALUES("21642", "3", "2015-11-28 04:11:09", "202.46.51.26", "22");
INSERT INTO `wp_rg_form_view` VALUES("21643", "8", "2015-11-28 04:11:09", "202.46.51.26", "11");
INSERT INTO `wp_rg_form_view` VALUES("21644", "3", "2015-11-28 05:08:31", "24.244.23.144", "25");
INSERT INTO `wp_rg_form_view` VALUES("21645", "8", "2015-11-28 05:08:31", "24.244.23.144", "14");
INSERT INTO `wp_rg_form_view` VALUES("21646", "3", "2015-11-28 06:03:33", "202.46.52.150", "42");
INSERT INTO `wp_rg_form_view` VALUES("21647", "8", "2015-11-28 06:03:33", "202.46.52.150", "23");
INSERT INTO `wp_rg_form_view` VALUES("21648", "9", "2015-11-28 06:41:01", "51.254.130.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("21649", "1", "2015-11-28 06:43:58", "104.193.10.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("21650", "3", "2015-11-28 07:13:12", "66.249.74.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("21651", "8", "2015-11-28 07:13:13", "66.249.74.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("21652", "7", "2015-11-28 07:58:59", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21653", "5", "2015-11-28 07:59:48", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21654", "7", "2015-11-28 08:01:00", "134.249.159.6", "4");
INSERT INTO `wp_rg_form_view` VALUES("21655", "3", "2015-11-28 08:01:00", "134.249.159.6", "36");
INSERT INTO `wp_rg_form_view` VALUES("21656", "8", "2015-11-28 08:01:00", "134.249.159.6", "21");
INSERT INTO `wp_rg_form_view` VALUES("21657", "5", "2015-11-28 08:10:35", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21658", "1", "2015-11-28 08:31:00", "104.193.10.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("21659", "3", "2015-11-28 09:05:31", "66.249.74.104", "18");
INSERT INTO `wp_rg_form_view` VALUES("21660", "8", "2015-11-28 09:05:31", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("21661", "3", "2015-11-28 10:05:57", "66.249.74.102", "23");
INSERT INTO `wp_rg_form_view` VALUES("21662", "8", "2015-11-28 10:05:57", "66.249.74.102", "12");
INSERT INTO `wp_rg_form_view` VALUES("21663", "1", "2015-11-28 10:17:12", "104.254.212.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("21664", "3", "2015-11-28 11:10:01", "202.46.53.167", "11");
INSERT INTO `wp_rg_form_view` VALUES("21665", "8", "2015-11-28 11:10:01", "202.46.53.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("21666", "3", "2015-11-28 12:08:12", "202.46.57.78", "12");
INSERT INTO `wp_rg_form_view` VALUES("21667", "8", "2015-11-28 12:08:12", "202.46.57.78", "8");
INSERT INTO `wp_rg_form_view` VALUES("21668", "3", "2015-11-28 13:06:23", "202.46.52.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("21669", "8", "2015-11-28 13:06:23", "202.46.52.105", "5");
INSERT INTO `wp_rg_form_view` VALUES("21670", "3", "2015-11-28 14:01:50", "91.200.12.39", "14");
INSERT INTO `wp_rg_form_view` VALUES("21671", "8", "2015-11-28 14:01:50", "91.200.12.39", "9");
INSERT INTO `wp_rg_form_view` VALUES("21672", "3", "2015-11-28 15:02:44", "202.46.52.102", "13");
INSERT INTO `wp_rg_form_view` VALUES("21673", "8", "2015-11-28 15:02:45", "202.46.52.102", "9");
INSERT INTO `wp_rg_form_view` VALUES("21674", "3", "2015-11-28 16:00:56", "202.46.54.206", "16");
INSERT INTO `wp_rg_form_view` VALUES("21675", "8", "2015-11-28 16:00:56", "202.46.54.206", "7");
INSERT INTO `wp_rg_form_view` VALUES("21676", "3", "2015-11-28 17:19:30", "40.77.167.69", "10");
INSERT INTO `wp_rg_form_view` VALUES("21677", "8", "2015-11-28 17:19:30", "40.77.167.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("21678", "3", "2015-11-28 18:25:00", "66.249.74.106", "64");
INSERT INTO `wp_rg_form_view` VALUES("21679", "8", "2015-11-28 18:25:01", "66.249.74.106", "32");
INSERT INTO `wp_rg_form_view` VALUES("21680", "1", "2015-11-28 18:31:52", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("21681", "2", "2015-11-28 18:40:03", "216.232.155.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("21682", "3", "2015-11-28 20:08:34", "195.242.80.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("21683", "8", "2015-11-28 20:08:35", "195.242.80.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("21684", "3", "2015-11-28 21:59:32", "142.4.218.156", "18");
INSERT INTO `wp_rg_form_view` VALUES("21685", "8", "2015-11-28 21:59:33", "142.4.218.156", "9");
INSERT INTO `wp_rg_form_view` VALUES("21686", "2", "2015-11-28 21:59:40", "142.4.218.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("21687", "3", "2015-11-28 22:00:48", "31.147.118.55", "276");
INSERT INTO `wp_rg_form_view` VALUES("21688", "8", "2015-11-28 22:00:48", "31.147.118.55", "182");
INSERT INTO `wp_rg_form_view` VALUES("21689", "1", "2015-11-28 22:14:59", "107.170.18.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("21690", "5", "2015-11-28 22:23:29", "107.170.18.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("21691", "3", "2015-11-28 23:26:20", "66.249.74.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("21692", "8", "2015-11-28 23:26:23", "66.249.74.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("21693", "3", "2015-11-29 00:45:23", "207.46.13.82", "3");
INSERT INTO `wp_rg_form_view` VALUES("21694", "8", "2015-11-29 00:45:23", "207.46.13.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("21695", "3", "2015-11-29 01:44:12", "104.247.217.178", "4");
INSERT INTO `wp_rg_form_view` VALUES("21696", "8", "2015-11-29 01:44:12", "104.247.217.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("21697", "9", "2015-11-29 02:01:50", "40.77.167.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("21698", "3", "2015-11-29 02:01:51", "40.77.167.69", "18");
INSERT INTO `wp_rg_form_view` VALUES("21699", "8", "2015-11-29 02:01:51", "40.77.167.69", "9");
INSERT INTO `wp_rg_form_view` VALUES("21700", "6", "2015-11-29 02:53:03", "144.76.155.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("21701", "3", "2015-11-29 03:29:50", "24.108.130.20", "8");
INSERT INTO `wp_rg_form_view` VALUES("21702", "8", "2015-11-29 03:29:50", "24.108.130.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("21703", "8", "2015-11-29 05:05:04", "40.77.167.78", "10");
INSERT INTO `wp_rg_form_view` VALUES("21704", "3", "2015-11-29 05:05:05", "40.77.167.78", "18");
INSERT INTO `wp_rg_form_view` VALUES("21705", "3", "2015-11-29 07:23:31", "207.46.13.82", "5");
INSERT INTO `wp_rg_form_view` VALUES("21706", "8", "2015-11-29 07:23:41", "207.46.13.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("21707", "1", "2015-11-29 08:24:55", "62.210.157.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("21708", "3", "2015-11-29 08:24:56", "62.210.157.80", "15");
INSERT INTO `wp_rg_form_view` VALUES("21709", "8", "2015-11-29 08:24:57", "62.210.157.80", "7");
INSERT INTO `wp_rg_form_view` VALUES("21710", "9", "2015-11-29 08:35:24", "40.77.167.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("21711", "3", "2015-11-29 09:14:59", "178.137.89.181", "13");
INSERT INTO `wp_rg_form_view` VALUES("21712", "3", "2015-11-29 09:14:59", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("21713", "3", "2015-11-29 09:14:59", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("21714", "8", "2015-11-29 09:14:59", "178.137.89.181", "5");
INSERT INTO `wp_rg_form_view` VALUES("21715", "8", "2015-11-29 09:14:59", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("21716", "8", "2015-11-29 09:14:59", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("21717", "1", "2015-11-29 09:18:09", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("21718", "1", "2015-11-29 10:05:45", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("21719", "3", "2015-11-29 10:05:46", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("21720", "8", "2015-11-29 10:05:46", "66.249.74.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("21721", "3", "2015-11-29 11:05:08", "66.249.74.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("21722", "8", "2015-11-29 11:05:08", "66.249.74.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("21723", "7", "2015-11-29 11:31:33", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("21724", "3", "2015-11-29 12:50:44", "176.8.244.238", "4");
INSERT INTO `wp_rg_form_view` VALUES("21725", "3", "2015-11-29 12:50:44", "176.8.244.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("21726", "3", "2015-11-29 12:50:44", "176.8.244.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("21727", "8", "2015-11-29 12:50:45", "176.8.244.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("21728", "8", "2015-11-29 12:50:45", "176.8.244.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("21729", "8", "2015-11-29 12:50:45", "176.8.244.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("21730", "3", "2015-11-29 13:19:33", "40.77.167.69", "14");
INSERT INTO `wp_rg_form_view` VALUES("21731", "8", "2015-11-29 13:19:33", "40.77.167.69", "7");
INSERT INTO `wp_rg_form_view` VALUES("21732", "3", "2015-11-29 14:14:32", "40.77.167.69", "10");
INSERT INTO `wp_rg_form_view` VALUES("21733", "8", "2015-11-29 14:14:32", "40.77.167.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("21734", "3", "2015-11-29 16:29:36", "202.46.56.94", "8");
INSERT INTO `wp_rg_form_view` VALUES("21735", "8", "2015-11-29 16:29:37", "202.46.56.94", "4");
INSERT INTO `wp_rg_form_view` VALUES("21736", "3", "2015-11-29 17:14:36", "202.46.57.209", "16");
INSERT INTO `wp_rg_form_view` VALUES("21737", "8", "2015-11-29 17:14:37", "202.46.57.209", "6");
INSERT INTO `wp_rg_form_view` VALUES("21738", "8", "2015-11-29 18:14:34", "202.46.51.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("21739", "3", "2015-11-29 18:14:36", "202.46.51.109", "11");
INSERT INTO `wp_rg_form_view` VALUES("21740", "6", "2015-11-29 18:27:48", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21741", "8", "2015-11-29 19:14:33", "202.46.55.90", "7");
INSERT INTO `wp_rg_form_view` VALUES("21742", "3", "2015-11-29 19:14:33", "202.46.55.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("21743", "3", "2015-11-29 20:07:33", "66.249.74.104", "32");
INSERT INTO `wp_rg_form_view` VALUES("21744", "8", "2015-11-29 20:07:33", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("21745", "9", "2015-11-29 21:12:11", "104.223.30.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("21746", "3", "2015-11-29 21:12:12", "104.223.30.96", "24");
INSERT INTO `wp_rg_form_view` VALUES("21747", "8", "2015-11-29 21:12:12", "104.223.30.96", "15");
INSERT INTO `wp_rg_form_view` VALUES("21748", "6", "2015-11-29 21:40:52", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("21749", "8", "2015-11-29 22:09:15", "66.249.74.104", "14");
INSERT INTO `wp_rg_form_view` VALUES("21750", "3", "2015-11-29 22:11:07", "40.77.167.84", "26");
INSERT INTO `wp_rg_form_view` VALUES("21751", "3", "2015-11-29 23:14:34", "202.46.54.26", "10");
INSERT INTO `wp_rg_form_view` VALUES("21752", "8", "2015-11-29 23:14:35", "202.46.54.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("21753", "8", "2015-11-30 00:14:33", "202.46.50.181", "8");
INSERT INTO `wp_rg_form_view` VALUES("21754", "3", "2015-11-30 00:14:34", "202.46.50.181", "12");
INSERT INTO `wp_rg_form_view` VALUES("21755", "3", "2015-11-30 01:14:34", "202.46.51.58", "15");
INSERT INTO `wp_rg_form_view` VALUES("21756", "8", "2015-11-30 01:14:34", "202.46.51.58", "7");
INSERT INTO `wp_rg_form_view` VALUES("21757", "3", "2015-11-30 02:14:34", "202.46.55.146", "19");
INSERT INTO `wp_rg_form_view` VALUES("21758", "8", "2015-11-30 02:14:34", "202.46.55.146", "10");
INSERT INTO `wp_rg_form_view` VALUES("21759", "3", "2015-11-30 03:14:34", "202.46.49.131", "54");
INSERT INTO `wp_rg_form_view` VALUES("21760", "8", "2015-11-30 03:14:34", "202.46.49.131", "24");
INSERT INTO `wp_rg_form_view` VALUES("21761", "3", "2015-11-30 04:06:54", "66.249.74.104", "28");
INSERT INTO `wp_rg_form_view` VALUES("21762", "8", "2015-11-30 04:06:55", "66.249.74.104", "14");
INSERT INTO `wp_rg_form_view` VALUES("21763", "1", "2015-11-30 05:03:05", "184.69.163.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("21764", "3", "2015-11-30 05:03:06", "184.69.163.74", "47");
INSERT INTO `wp_rg_form_view` VALUES("21765", "8", "2015-11-30 05:03:06", "184.69.163.74", "23");
INSERT INTO `wp_rg_form_view` VALUES("21766", "8", "2015-11-30 06:14:34", "202.46.58.159", "8");
INSERT INTO `wp_rg_form_view` VALUES("21767", "3", "2015-11-30 06:14:34", "202.46.58.159", "11");
INSERT INTO `wp_rg_form_view` VALUES("21768", "3", "2015-11-30 07:10:31", "66.249.74.102", "36");
INSERT INTO `wp_rg_form_view` VALUES("21769", "8", "2015-11-30 07:10:31", "66.249.74.102", "19");
INSERT INTO `wp_rg_form_view` VALUES("21770", "3", "2015-11-30 08:11:09", "24.68.128.211", "26");
INSERT INTO `wp_rg_form_view` VALUES("21771", "8", "2015-11-30 08:11:09", "24.68.128.211", "13");
INSERT INTO `wp_rg_form_view` VALUES("21772", "3", "2015-11-30 09:04:57", "40.77.167.69", "11");
INSERT INTO `wp_rg_form_view` VALUES("21773", "8", "2015-11-30 09:04:57", "40.77.167.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("21774", "3", "2015-11-30 10:14:37", "202.46.49.141", "312");
INSERT INTO `wp_rg_form_view` VALUES("21775", "8", "2015-11-30 10:14:37", "202.46.49.141", "187");
INSERT INTO `wp_rg_form_view` VALUES("21776", "2", "2015-11-30 10:53:48", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("21777", "1", "2015-11-30 10:54:56", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("21778", "5", "2015-11-30 10:56:37", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("21779", "9", "2015-11-30 10:57:29", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("21780", "8", "2015-11-30 11:14:34", "202.46.52.165", "7");
INSERT INTO `wp_rg_form_view` VALUES("21781", "3", "2015-11-30 11:14:34", "202.46.52.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("21782", "3", "2015-11-30 12:01:54", "68.180.229.161", "28");
INSERT INTO `wp_rg_form_view` VALUES("21783", "8", "2015-11-30 12:01:54", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("21784", "8", "2015-11-30 13:14:34", "202.46.55.131", "9");
INSERT INTO `wp_rg_form_view` VALUES("21785", "3", "2015-11-30 13:14:34", "202.46.55.131", "14");
INSERT INTO `wp_rg_form_view` VALUES("21786", "8", "2015-11-30 14:14:35", "202.46.48.197", "17");
INSERT INTO `wp_rg_form_view` VALUES("21787", "3", "2015-11-30 14:14:35", "202.46.48.197", "30");
INSERT INTO `wp_rg_form_view` VALUES("21788", "1", "2015-11-30 14:45:41", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21789", "5", "2015-11-30 14:45:43", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21790", "7", "2015-11-30 14:45:43", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21791", "8", "2015-11-30 15:11:15", "184.66.165.149", "21");
INSERT INTO `wp_rg_form_view` VALUES("21792", "3", "2015-11-30 15:11:15", "184.66.165.149", "48");
INSERT INTO `wp_rg_form_view` VALUES("21793", "8", "2015-11-30 16:14:34", "202.46.50.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("21794", "3", "2015-11-30 16:14:34", "202.46.50.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("21795", "3", "2015-11-30 18:04:25", "141.8.143.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("21796", "8", "2015-11-30 18:04:26", "141.8.143.134", "5");
INSERT INTO `wp_rg_form_view` VALUES("21797", "3", "2015-11-30 19:03:35", "40.77.167.84", "19");
INSERT INTO `wp_rg_form_view` VALUES("21798", "8", "2015-11-30 19:03:35", "40.77.167.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("21799", "3", "2015-11-30 20:03:29", "24.108.136.68", "6");
INSERT INTO `wp_rg_form_view` VALUES("21800", "8", "2015-11-30 20:03:29", "24.108.136.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("21801", "3", "2015-11-30 21:03:10", "64.251.74.178", "25");
INSERT INTO `wp_rg_form_view` VALUES("21802", "8", "2015-11-30 21:03:11", "64.251.74.178", "11");
INSERT INTO `wp_rg_form_view` VALUES("21803", "1", "2015-11-30 21:23:00", "173.242.124.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("21804", "9", "2015-11-30 22:14:17", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21805", "3", "2015-11-30 22:14:17", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("21806", "8", "2015-11-30 22:14:17", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("21807", "3", "2015-11-30 23:14:48", "207.230.250.214", "11");
INSERT INTO `wp_rg_form_view` VALUES("21808", "8", "2015-11-30 23:14:48", "207.230.250.214", "5");
INSERT INTO `wp_rg_form_view` VALUES("21809", "3", "2015-12-01 00:17:50", "141.8.143.184", "11");
INSERT INTO `wp_rg_form_view` VALUES("21810", "8", "2015-12-01 00:17:52", "141.8.143.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("21811", "3", "2015-12-01 01:16:53", "50.72.206.138", "17");
INSERT INTO `wp_rg_form_view` VALUES("21812", "8", "2015-12-01 01:16:53", "50.72.206.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("21813", "3", "2015-12-01 02:14:18", "24.69.41.69", "10");
INSERT INTO `wp_rg_form_view` VALUES("21814", "8", "2015-12-01 02:14:19", "24.69.41.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("21815", "7", "2015-12-01 02:50:03", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("21816", "3", "2015-12-01 03:38:25", "100.43.90.12", "6");
INSERT INTO `wp_rg_form_view` VALUES("21817", "8", "2015-12-01 03:38:25", "100.43.90.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("21818", "9", "2015-12-01 03:55:28", "188.165.15.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("21819", "3", "2015-12-01 04:14:38", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("21820", "8", "2015-12-01 04:14:38", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("21821", "3", "2015-12-01 05:01:55", "93.127.148.216", "33");
INSERT INTO `wp_rg_form_view` VALUES("21822", "8", "2015-12-01 05:01:56", "93.127.148.216", "13");
INSERT INTO `wp_rg_form_view` VALUES("21823", "3", "2015-12-01 06:29:20", "40.77.167.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("21824", "8", "2015-12-01 06:29:20", "40.77.167.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("21825", "3", "2015-12-01 07:16:14", "178.137.89.181", "12");
INSERT INTO `wp_rg_form_view` VALUES("21826", "8", "2015-12-01 07:16:14", "178.137.89.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("21827", "3", "2015-12-01 08:17:39", "66.249.74.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("21828", "8", "2015-12-01 08:17:40", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("21829", "3", "2015-12-01 09:13:15", "188.165.15.41", "28");
INSERT INTO `wp_rg_form_view` VALUES("21830", "8", "2015-12-01 09:13:16", "188.165.15.41", "14");
INSERT INTO `wp_rg_form_view` VALUES("21831", "7", "2015-12-01 09:30:53", "134.249.159.6", "7");
INSERT INTO `wp_rg_form_view` VALUES("21832", "5", "2015-12-01 09:31:37", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21833", "3", "2015-12-01 10:00:08", "134.249.159.6", "77");
INSERT INTO `wp_rg_form_view` VALUES("21834", "8", "2015-12-01 10:00:08", "134.249.159.6", "36");
INSERT INTO `wp_rg_form_view` VALUES("21835", "7", "2015-12-01 10:04:25", "134.249.159.6", "11");
INSERT INTO `wp_rg_form_view` VALUES("21836", "1", "2015-12-01 10:05:05", "134.249.159.6", "5");
INSERT INTO `wp_rg_form_view` VALUES("21837", "5", "2015-12-01 10:45:59", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21838", "7", "2015-12-01 11:00:55", "134.249.159.6", "11");
INSERT INTO `wp_rg_form_view` VALUES("21839", "3", "2015-12-01 11:00:55", "134.249.159.6", "49");
INSERT INTO `wp_rg_form_view` VALUES("21840", "8", "2015-12-01 11:00:55", "134.249.159.6", "24");
INSERT INTO `wp_rg_form_view` VALUES("21841", "1", "2015-12-01 11:18:17", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21842", "7", "2015-12-01 12:00:40", "134.249.159.6", "10");
INSERT INTO `wp_rg_form_view` VALUES("21843", "3", "2015-12-01 12:00:40", "134.249.159.6", "51");
INSERT INTO `wp_rg_form_view` VALUES("21844", "8", "2015-12-01 12:00:40", "134.249.159.6", "25");
INSERT INTO `wp_rg_form_view` VALUES("21845", "5", "2015-12-01 12:16:54", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21846", "9", "2015-12-01 12:47:55", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("21847", "3", "2015-12-01 13:00:42", "134.249.159.6", "65");
INSERT INTO `wp_rg_form_view` VALUES("21848", "8", "2015-12-01 13:00:42", "134.249.159.6", "32");
INSERT INTO `wp_rg_form_view` VALUES("21849", "7", "2015-12-01 13:07:28", "134.249.159.6", "16");
INSERT INTO `wp_rg_form_view` VALUES("21850", "1", "2015-12-01 13:24:39", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21851", "5", "2015-12-01 13:34:04", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21852", "7", "2015-12-01 14:00:16", "134.249.159.6", "14");
INSERT INTO `wp_rg_form_view` VALUES("21853", "3", "2015-12-01 14:00:16", "134.249.159.6", "50");
INSERT INTO `wp_rg_form_view` VALUES("21854", "8", "2015-12-01 14:00:16", "134.249.159.6", "25");
INSERT INTO `wp_rg_form_view` VALUES("21855", "5", "2015-12-01 14:13:28", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21856", "7", "2015-12-01 15:01:28", "134.249.159.6", "10");
INSERT INTO `wp_rg_form_view` VALUES("21857", "3", "2015-12-01 15:01:28", "134.249.159.6", "36");
INSERT INTO `wp_rg_form_view` VALUES("21858", "8", "2015-12-01 15:01:28", "134.249.159.6", "18");
INSERT INTO `wp_rg_form_view` VALUES("21859", "5", "2015-12-01 15:15:32", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21860", "1", "2015-12-01 15:39:30", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21861", "3", "2015-12-01 16:00:33", "134.249.159.6", "32");
INSERT INTO `wp_rg_form_view` VALUES("21862", "8", "2015-12-01 16:00:33", "134.249.159.6", "16");
INSERT INTO `wp_rg_form_view` VALUES("21863", "7", "2015-12-01 16:13:22", "134.249.159.6", "7");
INSERT INTO `wp_rg_form_view` VALUES("21864", "5", "2015-12-01 16:34:36", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21865", "1", "2015-12-01 16:48:57", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21866", "3", "2015-12-01 17:00:58", "134.249.159.6", "71");
INSERT INTO `wp_rg_form_view` VALUES("21867", "8", "2015-12-01 17:00:58", "134.249.159.6", "36");
INSERT INTO `wp_rg_form_view` VALUES("21868", "7", "2015-12-01 17:09:22", "134.249.159.6", "13");
INSERT INTO `wp_rg_form_view` VALUES("21869", "5", "2015-12-01 17:17:27", "134.249.159.6", "4");
INSERT INTO `wp_rg_form_view` VALUES("21870", "2", "2015-12-01 17:19:49", "54.183.150.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("21871", "3", "2015-12-01 18:03:09", "96.50.93.42", "46");
INSERT INTO `wp_rg_form_view` VALUES("21872", "8", "2015-12-01 18:03:09", "96.50.93.42", "23");
INSERT INTO `wp_rg_form_view` VALUES("21873", "7", "2015-12-01 18:03:57", "134.249.159.6", "15");
INSERT INTO `wp_rg_form_view` VALUES("21874", "1", "2015-12-01 18:16:02", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21875", "5", "2015-12-01 18:34:42", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21876", "5", "2015-12-01 19:00:35", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21877", "3", "2015-12-01 19:00:35", "134.249.159.6", "79");
INSERT INTO `wp_rg_form_view` VALUES("21878", "8", "2015-12-01 19:00:35", "134.249.159.6", "31");
INSERT INTO `wp_rg_form_view` VALUES("21879", "7", "2015-12-01 19:01:27", "134.249.159.6", "14");
INSERT INTO `wp_rg_form_view` VALUES("21880", "3", "2015-12-01 20:00:35", "134.249.159.6", "98");
INSERT INTO `wp_rg_form_view` VALUES("21881", "8", "2015-12-01 20:00:35", "134.249.159.6", "25");
INSERT INTO `wp_rg_form_view` VALUES("21882", "1", "2015-12-01 20:02:02", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21883", "7", "2015-12-01 20:03:25", "134.249.159.6", "12");
INSERT INTO `wp_rg_form_view` VALUES("21884", "5", "2015-12-01 20:10:13", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21885", "3", "2015-12-01 21:01:11", "134.249.159.6", "97");
INSERT INTO `wp_rg_form_view` VALUES("21886", "8", "2015-12-01 21:01:11", "134.249.159.6", "23");
INSERT INTO `wp_rg_form_view` VALUES("21887", "7", "2015-12-01 21:11:07", "134.249.159.6", "10");
INSERT INTO `wp_rg_form_view` VALUES("21888", "5", "2015-12-01 21:18:29", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21889", "1", "2015-12-01 21:56:50", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21890", "7", "2015-12-01 22:04:53", "134.249.159.6", "7");
INSERT INTO `wp_rg_form_view` VALUES("21891", "3", "2015-12-01 22:04:53", "134.249.159.6", "72");
INSERT INTO `wp_rg_form_view` VALUES("21892", "8", "2015-12-01 22:04:53", "134.249.159.6", "18");
INSERT INTO `wp_rg_form_view` VALUES("21893", "1", "2015-12-01 22:27:15", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21894", "5", "2015-12-01 22:30:42", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21895", "7", "2015-12-01 23:04:41", "134.249.159.6", "9");
INSERT INTO `wp_rg_form_view` VALUES("21896", "3", "2015-12-01 23:04:41", "134.249.159.6", "166");
INSERT INTO `wp_rg_form_view` VALUES("21897", "8", "2015-12-01 23:04:41", "134.249.159.6", "43");
INSERT INTO `wp_rg_form_view` VALUES("21898", "5", "2015-12-01 23:29:56", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21899", "2", "2015-12-01 23:43:32", "45.55.229.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("21900", "3", "2015-12-02 00:00:38", "134.249.159.6", "114");
INSERT INTO `wp_rg_form_view` VALUES("21901", "8", "2015-12-02 00:00:38", "134.249.159.6", "28");
INSERT INTO `wp_rg_form_view` VALUES("21902", "5", "2015-12-02 00:01:07", "134.249.159.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("21903", "7", "2015-12-02 00:02:17", "134.249.159.6", "8");
INSERT INTO `wp_rg_form_view` VALUES("21904", "1", "2015-12-02 00:49:01", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21905", "5", "2015-12-02 01:00:25", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21906", "3", "2015-12-02 01:00:25", "134.249.159.6", "83");
INSERT INTO `wp_rg_form_view` VALUES("21907", "8", "2015-12-02 01:00:25", "134.249.159.6", "21");
INSERT INTO `wp_rg_form_view` VALUES("21908", "7", "2015-12-02 01:12:53", "134.249.159.6", "8");
INSERT INTO `wp_rg_form_view` VALUES("21909", "3", "2015-12-02 02:04:54", "134.249.159.6", "100");
INSERT INTO `wp_rg_form_view` VALUES("21910", "8", "2015-12-02 02:04:54", "134.249.159.6", "25");
INSERT INTO `wp_rg_form_view` VALUES("21911", "7", "2015-12-02 02:06:31", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21912", "5", "2015-12-02 02:14:51", "134.249.159.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("21913", "3", "2015-12-02 03:01:41", "134.249.159.6", "93");
INSERT INTO `wp_rg_form_view` VALUES("21914", "8", "2015-12-02 03:01:41", "134.249.159.6", "23");
INSERT INTO `wp_rg_form_view` VALUES("21915", "5", "2015-12-02 03:10:43", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21916", "7", "2015-12-02 03:12:49", "134.249.159.6", "7");
INSERT INTO `wp_rg_form_view` VALUES("21917", "1", "2015-12-02 03:52:24", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21918", "7", "2015-12-02 04:05:15", "134.249.159.6", "7");
INSERT INTO `wp_rg_form_view` VALUES("21919", "3", "2015-12-02 04:05:15", "134.249.159.6", "71");
INSERT INTO `wp_rg_form_view` VALUES("21920", "8", "2015-12-02 04:05:15", "134.249.159.6", "18");
INSERT INTO `wp_rg_form_view` VALUES("21921", "5", "2015-12-02 04:05:23", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21922", "1", "2015-12-02 04:32:08", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21923", "7", "2015-12-02 05:01:16", "134.249.159.6", "16");
INSERT INTO `wp_rg_form_view` VALUES("21924", "3", "2015-12-02 05:01:16", "134.249.159.6", "105");
INSERT INTO `wp_rg_form_view` VALUES("21925", "8", "2015-12-02 05:01:16", "134.249.159.6", "26");
INSERT INTO `wp_rg_form_view` VALUES("21926", "1", "2015-12-02 05:07:08", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21927", "5", "2015-12-02 05:11:16", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21928", "7", "2015-12-02 06:01:29", "134.249.159.6", "9");
INSERT INTO `wp_rg_form_view` VALUES("21929", "3", "2015-12-02 06:01:29", "134.249.159.6", "106");
INSERT INTO `wp_rg_form_view` VALUES("21930", "8", "2015-12-02 06:01:29", "134.249.159.6", "26");
INSERT INTO `wp_rg_form_view` VALUES("21931", "5", "2015-12-02 06:26:19", "134.249.159.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("21932", "1", "2015-12-02 06:42:03", "134.249.159.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("21933", "3", "2015-12-02 07:02:03", "134.249.159.6", "88");
INSERT INTO `wp_rg_form_view` VALUES("21934", "8", "2015-12-02 07:02:04", "134.249.159.6", "22");
INSERT INTO `wp_rg_form_view` VALUES("21935", "7", "2015-12-02 07:06:26", "134.249.159.6", "10");
INSERT INTO `wp_rg_form_view` VALUES("21936", "5", "2015-12-02 07:41:59", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21937", "7", "2015-12-02 08:01:59", "134.249.159.6", "10");
INSERT INTO `wp_rg_form_view` VALUES("21938", "3", "2015-12-02 08:01:59", "134.249.159.6", "64");
INSERT INTO `wp_rg_form_view` VALUES("21939", "8", "2015-12-02 08:01:59", "134.249.159.6", "16");
INSERT INTO `wp_rg_form_view` VALUES("21940", "5", "2015-12-02 08:03:56", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21941", "1", "2015-12-02 08:24:42", "134.249.159.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("21942", "3", "2015-12-02 10:03:58", "66.249.74.106", "78");
INSERT INTO `wp_rg_form_view` VALUES("21943", "8", "2015-12-02 10:04:06", "66.249.74.106", "19");
INSERT INTO `wp_rg_form_view` VALUES("21944", "3", "2015-12-02 11:22:10", "157.55.39.21", "4");
INSERT INTO `wp_rg_form_view` VALUES("21945", "8", "2015-12-02 11:22:10", "157.55.39.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("21946", "8", "2015-12-02 12:32:59", "157.55.39.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("21947", "3", "2015-12-02 12:32:59", "157.55.39.108", "32");
INSERT INTO `wp_rg_form_view` VALUES("21948", "1", "2015-12-02 12:59:47", "23.94.75.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("21949", "3", "2015-12-02 13:48:10", "207.46.13.17", "13");
INSERT INTO `wp_rg_form_view` VALUES("21950", "8", "2015-12-02 13:48:11", "207.46.13.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("21951", "3", "2015-12-02 14:08:37", "66.249.74.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("21952", "8", "2015-12-02 14:08:37", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("21953", "3", "2015-12-02 15:29:55", "157.55.39.149", "21");
INSERT INTO `wp_rg_form_view` VALUES("21954", "8", "2015-12-02 15:30:01", "157.55.39.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("21955", "3", "2015-12-02 16:31:40", "197.155.4.15", "8");
INSERT INTO `wp_rg_form_view` VALUES("21956", "8", "2015-12-02 16:31:40", "197.155.4.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("21957", "3", "2015-12-02 17:02:03", "142.24.75.193", "146");
INSERT INTO `wp_rg_form_view` VALUES("21958", "8", "2015-12-02 17:02:04", "142.24.75.193", "36");
INSERT INTO `wp_rg_form_view` VALUES("21959", "2", "2015-12-02 17:33:21", "85.57.50.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("21960", "3", "2015-12-02 18:10:07", "188.165.15.41", "30");
INSERT INTO `wp_rg_form_view` VALUES("21961", "8", "2015-12-02 18:10:07", "188.165.15.41", "7");
INSERT INTO `wp_rg_form_view` VALUES("21962", "3", "2015-12-02 19:19:02", "66.249.74.104", "69");
INSERT INTO `wp_rg_form_view` VALUES("21963", "8", "2015-12-02 19:19:03", "66.249.74.104", "17");
INSERT INTO `wp_rg_form_view` VALUES("21964", "1", "2015-12-02 19:42:44", "184.71.26.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("21965", "7", "2015-12-02 19:59:14", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("21966", "3", "2015-12-02 20:28:43", "184.69.167.74", "42");
INSERT INTO `wp_rg_form_view` VALUES("21967", "8", "2015-12-02 20:28:43", "184.69.167.74", "11");
INSERT INTO `wp_rg_form_view` VALUES("21968", "8", "2015-12-02 21:01:55", "77.75.77.101", "7");
INSERT INTO `wp_rg_form_view` VALUES("21969", "3", "2015-12-02 21:01:55", "77.75.77.101", "28");
INSERT INTO `wp_rg_form_view` VALUES("21970", "3", "2015-12-02 22:05:34", "184.66.161.123", "32");
INSERT INTO `wp_rg_form_view` VALUES("21971", "8", "2015-12-02 22:05:34", "184.66.161.123", "8");
INSERT INTO `wp_rg_form_view` VALUES("21972", "1", "2015-12-02 22:06:48", "184.66.161.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("21973", "3", "2015-12-02 23:09:31", "157.55.39.150", "74");
INSERT INTO `wp_rg_form_view` VALUES("21974", "8", "2015-12-02 23:09:31", "157.55.39.150", "18");
INSERT INTO `wp_rg_form_view` VALUES("21975", "1", "2015-12-02 23:34:10", "192.3.243.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("21976", "3", "2015-12-03 00:11:51", "178.137.89.181", "22");
INSERT INTO `wp_rg_form_view` VALUES("21977", "8", "2015-12-03 00:11:52", "178.137.89.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("21978", "3", "2015-12-03 01:01:08", "144.76.201.69", "74");
INSERT INTO `wp_rg_form_view` VALUES("21979", "8", "2015-12-03 01:01:08", "144.76.201.69", "17");
INSERT INTO `wp_rg_form_view` VALUES("21980", "1", "2015-12-03 01:18:30", "91.108.73.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("21981", "3", "2015-12-03 02:22:15", "192.227.169.163", "93");
INSERT INTO `wp_rg_form_view` VALUES("21982", "8", "2015-12-03 02:22:15", "192.227.169.163", "23");
INSERT INTO `wp_rg_form_view` VALUES("21983", "3", "2015-12-03 03:00:00", "192.3.211.248", "53");
INSERT INTO `wp_rg_form_view` VALUES("21984", "8", "2015-12-03 03:00:00", "192.3.211.248", "13");
INSERT INTO `wp_rg_form_view` VALUES("21985", "1", "2015-12-03 03:07:06", "23.94.75.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("21986", "3", "2015-12-03 04:04:36", "75.157.168.206", "16");
INSERT INTO `wp_rg_form_view` VALUES("21987", "8", "2015-12-03 04:04:36", "75.157.168.206", "4");
INSERT INTO `wp_rg_form_view` VALUES("21988", "1", "2015-12-03 04:50:37", "5.175.205.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("21989", "3", "2015-12-03 05:37:23", "24.108.12.106", "25");
INSERT INTO `wp_rg_form_view` VALUES("21990", "8", "2015-12-03 05:37:23", "24.108.12.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("21991", "3", "2015-12-03 06:21:15", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("21992", "8", "2015-12-03 06:21:16", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("21993", "3", "2015-12-03 07:43:56", "162.210.196.98", "5");
INSERT INTO `wp_rg_form_view` VALUES("21994", "8", "2015-12-03 07:43:58", "162.210.196.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("21995", "3", "2015-12-03 08:36:09", "202.46.53.52", "4");
INSERT INTO `wp_rg_form_view` VALUES("21996", "8", "2015-12-03 08:36:09", "202.46.53.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("21997", "3", "2015-12-03 10:14:59", "202.46.49.117", "41");
INSERT INTO `wp_rg_form_view` VALUES("21998", "8", "2015-12-03 10:15:04", "202.46.49.117", "11");
INSERT INTO `wp_rg_form_view` VALUES("21999", "1", "2015-12-03 10:30:25", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22000", "3", "2015-12-03 11:00:24", "46.118.123.213", "20");
INSERT INTO `wp_rg_form_view` VALUES("22001", "8", "2015-12-03 11:00:24", "46.118.123.213", "5");
INSERT INTO `wp_rg_form_view` VALUES("22002", "9", "2015-12-03 11:49:54", "40.77.167.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("22003", "3", "2015-12-03 12:08:04", "66.249.74.102", "13");
INSERT INTO `wp_rg_form_view` VALUES("22004", "8", "2015-12-03 12:08:04", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("22005", "3", "2015-12-03 13:17:09", "46.118.123.213", "32");
INSERT INTO `wp_rg_form_view` VALUES("22006", "8", "2015-12-03 13:17:09", "46.118.123.213", "8");
INSERT INTO `wp_rg_form_view` VALUES("22007", "3", "2015-12-03 14:37:22", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("22008", "8", "2015-12-03 14:37:22", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22009", "3", "2015-12-03 15:08:20", "46.118.226.141", "75");
INSERT INTO `wp_rg_form_view` VALUES("22010", "8", "2015-12-03 15:08:21", "46.118.226.141", "16");
INSERT INTO `wp_rg_form_view` VALUES("22011", "3", "2015-12-03 16:14:17", "202.46.58.89", "21");
INSERT INTO `wp_rg_form_view` VALUES("22012", "8", "2015-12-03 16:14:17", "202.46.58.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("22013", "3", "2015-12-03 17:08:08", "66.249.84.115", "19");
INSERT INTO `wp_rg_form_view` VALUES("22014", "8", "2015-12-03 17:08:08", "66.249.84.115", "5");
INSERT INTO `wp_rg_form_view` VALUES("22015", "3", "2015-12-03 18:10:07", "46.118.123.53", "66");
INSERT INTO `wp_rg_form_view` VALUES("22016", "8", "2015-12-03 18:10:07", "46.118.123.53", "16");
INSERT INTO `wp_rg_form_view` VALUES("22017", "1", "2015-12-03 18:36:31", "37.203.214.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("22018", "3", "2015-12-03 19:20:46", "24.108.135.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("22019", "8", "2015-12-03 19:20:46", "24.108.135.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("22020", "3", "2015-12-03 20:01:02", "68.180.229.161", "41");
INSERT INTO `wp_rg_form_view` VALUES("22021", "8", "2015-12-03 20:20:48", "207.6.121.14", "10");
INSERT INTO `wp_rg_form_view` VALUES("22022", "8", "2015-12-03 21:00:43", "40.77.167.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("22023", "3", "2015-12-03 21:00:43", "40.77.167.84", "14");
INSERT INTO `wp_rg_form_view` VALUES("22024", "3", "2015-12-03 22:06:58", "207.46.13.17", "46");
INSERT INTO `wp_rg_form_view` VALUES("22025", "8", "2015-12-03 22:06:58", "207.46.13.17", "11");
INSERT INTO `wp_rg_form_view` VALUES("22026", "1", "2015-12-03 22:40:22", "96.54.200.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("22027", "3", "2015-12-03 23:10:58", "191.101.121.193", "82");
INSERT INTO `wp_rg_form_view` VALUES("22028", "8", "2015-12-03 23:10:58", "191.101.121.193", "18");
INSERT INTO `wp_rg_form_view` VALUES("22029", "3", "2015-12-04 00:14:38", "207.46.13.75", "40");
INSERT INTO `wp_rg_form_view` VALUES("22030", "8", "2015-12-04 00:14:38", "207.46.13.75", "13");
INSERT INTO `wp_rg_form_view` VALUES("22031", "3", "2015-12-04 01:09:49", "142.36.249.105", "13");
INSERT INTO `wp_rg_form_view` VALUES("22032", "8", "2015-12-04 01:09:49", "142.36.249.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("22033", "3", "2015-12-04 02:03:59", "202.46.48.193", "54");
INSERT INTO `wp_rg_form_view` VALUES("22034", "8", "2015-12-04 02:04:00", "202.46.48.193", "12");
INSERT INTO `wp_rg_form_view` VALUES("22035", "3", "2015-12-04 03:07:05", "195.154.209.60", "9");
INSERT INTO `wp_rg_form_view` VALUES("22036", "8", "2015-12-04 03:07:05", "195.154.209.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("22037", "3", "2015-12-04 04:04:26", "191.101.121.193", "63");
INSERT INTO `wp_rg_form_view` VALUES("22038", "8", "2015-12-04 04:04:27", "191.101.121.193", "15");
INSERT INTO `wp_rg_form_view` VALUES("22039", "3", "2015-12-04 05:20:30", "188.165.15.41", "13");
INSERT INTO `wp_rg_form_view` VALUES("22040", "8", "2015-12-04 05:20:30", "188.165.15.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("22041", "3", "2015-12-04 06:24:35", "184.66.168.29", "9");
INSERT INTO `wp_rg_form_view` VALUES("22042", "8", "2015-12-04 06:24:36", "184.66.168.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("22043", "1", "2015-12-04 07:05:11", "192.99.255.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("22044", "3", "2015-12-04 07:05:11", "192.99.255.236", "31");
INSERT INTO `wp_rg_form_view` VALUES("22045", "8", "2015-12-04 07:05:11", "192.99.255.236", "8");
INSERT INTO `wp_rg_form_view` VALUES("22046", "3", "2015-12-04 08:02:51", "188.165.15.41", "5");
INSERT INTO `wp_rg_form_view` VALUES("22047", "8", "2015-12-04 08:02:51", "188.165.15.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("22048", "3", "2015-12-04 09:17:48", "62.210.162.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("22049", "8", "2015-12-04 09:17:55", "62.210.162.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("22050", "3", "2015-12-04 10:31:39", "66.249.66.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("22051", "8", "2015-12-04 10:31:39", "66.249.66.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("22052", "3", "2015-12-04 11:03:01", "66.249.66.75", "13");
INSERT INTO `wp_rg_form_view` VALUES("22053", "8", "2015-12-04 11:03:01", "66.249.66.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("22054", "3", "2015-12-04 12:30:56", "23.94.10.114", "52");
INSERT INTO `wp_rg_form_view` VALUES("22055", "8", "2015-12-04 12:30:56", "23.94.10.114", "12");
INSERT INTO `wp_rg_form_view` VALUES("22056", "9", "2015-12-04 12:38:57", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("22057", "3", "2015-12-04 13:14:54", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("22058", "8", "2015-12-04 13:14:54", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("22059", "1", "2015-12-04 14:09:51", "192.126.192.237", "2");
INSERT INTO `wp_rg_form_view` VALUES("22060", "3", "2015-12-04 14:09:52", "192.126.192.237", "40");
INSERT INTO `wp_rg_form_view` VALUES("22061", "8", "2015-12-04 14:09:52", "192.126.192.237", "10");
INSERT INTO `wp_rg_form_view` VALUES("22062", "3", "2015-12-04 15:02:26", "46.118.226.141", "36");
INSERT INTO `wp_rg_form_view` VALUES("22063", "8", "2015-12-04 15:02:26", "46.118.226.141", "9");
INSERT INTO `wp_rg_form_view` VALUES("22064", "3", "2015-12-04 16:04:33", "66.249.74.104", "24");
INSERT INTO `wp_rg_form_view` VALUES("22065", "8", "2015-12-04 16:04:33", "66.249.74.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("22066", "3", "2015-12-04 17:48:52", "157.55.39.153", "14");
INSERT INTO `wp_rg_form_view` VALUES("22067", "8", "2015-12-04 17:48:53", "157.55.39.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("22068", "8", "2015-12-04 18:06:59", "77.75.76.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("22069", "3", "2015-12-04 18:06:59", "77.75.76.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("22070", "3", "2015-12-04 19:01:23", "184.66.162.243", "91");
INSERT INTO `wp_rg_form_view` VALUES("22071", "3", "2015-12-04 19:01:23", "184.66.162.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("22072", "8", "2015-12-04 19:01:29", "184.66.162.243", "23");
INSERT INTO `wp_rg_form_view` VALUES("22073", "8", "2015-12-04 19:01:29", "184.66.162.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("22074", "6", "2015-12-04 19:05:31", "202.46.55.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("22075", "3", "2015-12-04 20:06:00", "46.118.112.74", "72");
INSERT INTO `wp_rg_form_view` VALUES("22076", "3", "2015-12-04 20:06:00", "46.118.112.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("22077", "8", "2015-12-04 20:06:01", "46.118.112.74", "18");
INSERT INTO `wp_rg_form_view` VALUES("22078", "1", "2015-12-04 20:28:58", "216.158.203.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("22079", "3", "2015-12-04 21:09:03", "142.36.249.105", "42");
INSERT INTO `wp_rg_form_view` VALUES("22080", "8", "2015-12-04 21:09:03", "142.36.249.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("22081", "2", "2015-12-04 22:24:20", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("22082", "3", "2015-12-04 22:24:21", "199.21.99.202", "111");
INSERT INTO `wp_rg_form_view` VALUES("22083", "8", "2015-12-04 22:24:21", "199.21.99.202", "23");
INSERT INTO `wp_rg_form_view` VALUES("22084", "3", "2015-12-04 23:00:05", "37.187.162.186", "12");
INSERT INTO `wp_rg_form_view` VALUES("22085", "8", "2015-12-04 23:00:05", "37.187.162.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("22086", "3", "2015-12-05 00:00:07", "40.77.167.72", "56");
INSERT INTO `wp_rg_form_view` VALUES("22087", "8", "2015-12-05 00:00:07", "40.77.167.72", "14");
INSERT INTO `wp_rg_form_view` VALUES("22088", "3", "2015-12-05 01:28:23", "66.249.74.102", "71");
INSERT INTO `wp_rg_form_view` VALUES("22089", "8", "2015-12-05 01:28:24", "66.249.74.102", "17");
INSERT INTO `wp_rg_form_view` VALUES("22090", "5", "2015-12-05 01:59:55", "188.165.15.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("22091", "3", "2015-12-05 02:00:15", "24.69.41.60", "16");
INSERT INTO `wp_rg_form_view` VALUES("22092", "8", "2015-12-05 02:00:15", "24.69.41.60", "4");
INSERT INTO `wp_rg_form_view` VALUES("22093", "3", "2015-12-05 03:12:22", "46.118.112.74", "28");
INSERT INTO `wp_rg_form_view` VALUES("22094", "8", "2015-12-05 03:12:22", "46.118.112.74", "8");
INSERT INTO `wp_rg_form_view` VALUES("22095", "1", "2015-12-05 03:25:10", "212.83.131.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("22096", "3", "2015-12-05 04:03:32", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("22097", "8", "2015-12-05 04:03:32", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("22098", "3", "2015-12-05 05:30:24", "66.249.74.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("22099", "8", "2015-12-05 05:30:25", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("22100", "3", "2015-12-05 06:04:13", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("22101", "8", "2015-12-05 06:04:13", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("22102", "3", "2015-12-05 07:28:39", "202.46.48.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("22103", "8", "2015-12-05 07:28:40", "202.46.48.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("22104", "3", "2015-12-05 08:15:28", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("22105", "8", "2015-12-05 08:15:33", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22106", "3", "2015-12-05 09:03:24", "202.46.56.193", "9");
INSERT INTO `wp_rg_form_view` VALUES("22107", "8", "2015-12-05 09:03:26", "202.46.56.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("22108", "3", "2015-12-05 10:11:22", "157.55.39.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("22109", "8", "2015-12-05 10:11:22", "157.55.39.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("22110", "3", "2015-12-05 11:16:33", "40.77.167.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("22111", "8", "2015-12-05 11:16:33", "40.77.167.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("22112", "3", "2015-12-05 12:02:27", "46.118.123.53", "20");
INSERT INTO `wp_rg_form_view` VALUES("22113", "8", "2015-12-05 12:02:27", "46.118.123.53", "5");
INSERT INTO `wp_rg_form_view` VALUES("22114", "3", "2015-12-05 13:38:51", "66.249.74.102", "24");
INSERT INTO `wp_rg_form_view` VALUES("22115", "8", "2015-12-05 13:38:52", "66.249.74.102", "5");
INSERT INTO `wp_rg_form_view` VALUES("22116", "3", "2015-12-05 14:05:30", "66.249.74.102", "57");
INSERT INTO `wp_rg_form_view` VALUES("22117", "8", "2015-12-05 14:05:30", "66.249.74.102", "14");
INSERT INTO `wp_rg_form_view` VALUES("22118", "1", "2015-12-05 15:30:31", "163.172.14.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("22119", "3", "2015-12-05 15:30:31", "163.172.14.149", "74");
INSERT INTO `wp_rg_form_view` VALUES("22120", "8", "2015-12-05 15:30:31", "163.172.14.149", "17");
INSERT INTO `wp_rg_form_view` VALUES("22121", "3", "2015-12-05 16:26:00", "192.230.52.170", "24");
INSERT INTO `wp_rg_form_view` VALUES("22122", "8", "2015-12-05 16:26:01", "192.230.52.170", "6");
INSERT INTO `wp_rg_form_view` VALUES("22123", "1", "2015-12-05 17:11:33", "192.126.185.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("22124", "3", "2015-12-05 17:11:33", "192.126.185.151", "22");
INSERT INTO `wp_rg_form_view` VALUES("22125", "8", "2015-12-05 17:11:33", "192.126.185.151", "6");
INSERT INTO `wp_rg_form_view` VALUES("22126", "3", "2015-12-05 19:07:46", "40.77.167.72", "29");
INSERT INTO `wp_rg_form_view` VALUES("22127", "8", "2015-12-05 19:07:48", "40.77.167.72", "7");
INSERT INTO `wp_rg_form_view` VALUES("22128", "3", "2015-12-05 20:06:38", "40.77.167.72", "17");
INSERT INTO `wp_rg_form_view` VALUES("22129", "8", "2015-12-05 20:06:38", "40.77.167.72", "5");
INSERT INTO `wp_rg_form_view` VALUES("22130", "8", "2015-12-05 21:14:07", "108.128.160.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("22131", "3", "2015-12-05 21:14:07", "108.128.160.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("22132", "3", "2015-12-05 22:03:00", "77.75.79.17", "35");
INSERT INTO `wp_rg_form_view` VALUES("22133", "8", "2015-12-05 22:03:02", "77.75.79.17", "10");
INSERT INTO `wp_rg_form_view` VALUES("22134", "8", "2015-12-05 23:05:41", "157.55.39.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("22135", "3", "2015-12-05 23:05:42", "157.55.39.162", "17");
INSERT INTO `wp_rg_form_view` VALUES("22136", "1", "2015-12-05 23:17:34", "213.184.105.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("22137", "8", "2015-12-06 00:08:59", "157.55.39.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("22138", "3", "2015-12-06 00:08:59", "157.55.39.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("22139", "1", "2015-12-06 00:24:28", "213.184.105.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("22140", "8", "2015-12-06 01:28:53", "157.55.39.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("22141", "3", "2015-12-06 01:28:54", "157.55.39.104", "17");
INSERT INTO `wp_rg_form_view` VALUES("22142", "8", "2015-12-06 02:18:12", "46.246.39.186", "5");
INSERT INTO `wp_rg_form_view` VALUES("22143", "3", "2015-12-06 02:18:12", "46.246.39.186", "16");
INSERT INTO `wp_rg_form_view` VALUES("22144", "2", "2015-12-06 02:20:34", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22145", "1", "2015-12-06 02:43:55", "107.172.5.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("22146", "8", "2015-12-06 03:16:29", "62.210.162.184", "3");
INSERT INTO `wp_rg_form_view` VALUES("22147", "3", "2015-12-06 03:16:29", "62.210.162.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("22148", "8", "2015-12-06 04:10:33", "148.251.54.44", "5");
INSERT INTO `wp_rg_form_view` VALUES("22149", "3", "2015-12-06 04:10:33", "148.251.54.44", "13");
INSERT INTO `wp_rg_form_view` VALUES("22150", "8", "2015-12-06 05:22:10", "157.55.39.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("22151", "3", "2015-12-06 05:22:10", "157.55.39.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("22152", "8", "2015-12-06 06:17:58", "178.137.89.181", "11");
INSERT INTO `wp_rg_form_view` VALUES("22153", "8", "2015-12-06 06:17:58", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("22154", "3", "2015-12-06 06:17:59", "178.137.89.181", "36");
INSERT INTO `wp_rg_form_view` VALUES("22155", "3", "2015-12-06 06:17:59", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("22156", "3", "2015-12-06 06:17:59", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("22157", "3", "2015-12-06 06:17:59", "178.137.89.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("22158", "8", "2015-12-06 07:57:10", "207.46.13.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("22159", "3", "2015-12-06 07:57:11", "207.46.13.54", "5");
INSERT INTO `wp_rg_form_view` VALUES("22160", "8", "2015-12-06 09:16:26", "157.55.39.131", "7");
INSERT INTO `wp_rg_form_view` VALUES("22161", "3", "2015-12-06 09:16:31", "157.55.39.131", "24");
INSERT INTO `wp_rg_form_view` VALUES("22162", "8", "2015-12-06 10:03:34", "66.249.74.102", "5");
INSERT INTO `wp_rg_form_view` VALUES("22163", "3", "2015-12-06 10:03:34", "66.249.74.102", "12");
INSERT INTO `wp_rg_form_view` VALUES("22164", "6", "2015-12-06 11:33:49", "188.40.112.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("22165", "8", "2015-12-06 11:33:50", "188.40.112.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("22166", "3", "2015-12-06 11:33:50", "188.40.112.210", "3");
INSERT INTO `wp_rg_form_view` VALUES("22167", "8", "2015-12-06 12:11:45", "46.118.112.74", "6");
INSERT INTO `wp_rg_form_view` VALUES("22168", "8", "2015-12-06 12:11:46", "46.118.112.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("22169", "3", "2015-12-06 12:11:46", "46.118.112.74", "22");
INSERT INTO `wp_rg_form_view` VALUES("22170", "8", "2015-12-06 13:05:09", "40.77.167.7", "21");
INSERT INTO `wp_rg_form_view` VALUES("22171", "3", "2015-12-06 13:05:10", "40.77.167.7", "67");
INSERT INTO `wp_rg_form_view` VALUES("22172", "1", "2015-12-06 14:02:14", "91.200.12.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("22173", "8", "2015-12-06 14:02:14", "91.200.12.39", "11");
INSERT INTO `wp_rg_form_view` VALUES("22174", "3", "2015-12-06 14:02:14", "91.200.12.39", "35");
INSERT INTO `wp_rg_form_view` VALUES("22175", "8", "2015-12-06 15:27:28", "62.210.162.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("22176", "3", "2015-12-06 15:27:30", "62.210.162.184", "12");
INSERT INTO `wp_rg_form_view` VALUES("22177", "8", "2015-12-06 16:14:14", "24.69.78.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("22178", "3", "2015-12-06 16:14:14", "24.69.78.92", "36");
INSERT INTO `wp_rg_form_view` VALUES("22179", "8", "2015-12-06 17:08:46", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("22180", "3", "2015-12-06 17:08:46", "62.210.162.184", "24");
INSERT INTO `wp_rg_form_view` VALUES("22181", "5", "2015-12-06 17:47:36", "157.55.39.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("22182", "8", "2015-12-06 18:03:45", "202.46.50.190", "11");
INSERT INTO `wp_rg_form_view` VALUES("22183", "3", "2015-12-06 18:03:45", "202.46.50.190", "32");
INSERT INTO `wp_rg_form_view` VALUES("22184", "8", "2015-12-06 19:03:54", "154.120.101.236", "23");
INSERT INTO `wp_rg_form_view` VALUES("22185", "3", "2015-12-06 19:03:54", "154.120.101.236", "69");
INSERT INTO `wp_rg_form_view` VALUES("22186", "3", "2015-12-06 20:09:17", "202.46.51.198", "15");
INSERT INTO `wp_rg_form_view` VALUES("22187", "8", "2015-12-06 20:09:18", "202.46.51.198", "6");
INSERT INTO `wp_rg_form_view` VALUES("22188", "8", "2015-12-06 21:00:23", "202.46.48.206", "9");
INSERT INTO `wp_rg_form_view` VALUES("22189", "3", "2015-12-06 21:00:23", "202.46.48.206", "24");
INSERT INTO `wp_rg_form_view` VALUES("22190", "8", "2015-12-06 22:01:47", "40.77.167.7", "7");
INSERT INTO `wp_rg_form_view` VALUES("22191", "3", "2015-12-06 22:01:47", "40.77.167.7", "21");
INSERT INTO `wp_rg_form_view` VALUES("22192", "8", "2015-12-06 23:02:22", "202.46.49.200", "12");
INSERT INTO `wp_rg_form_view` VALUES("22193", "3", "2015-12-06 23:02:22", "202.46.49.200", "32");
INSERT INTO `wp_rg_form_view` VALUES("22194", "1", "2015-12-06 23:04:03", "92.114.6.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("22195", "8", "2015-12-07 00:03:27", "202.46.52.150", "5");
INSERT INTO `wp_rg_form_view` VALUES("22196", "3", "2015-12-07 00:03:27", "202.46.52.150", "15");
INSERT INTO `wp_rg_form_view` VALUES("22197", "8", "2015-12-07 01:02:16", "202.46.52.44", "14");
INSERT INTO `wp_rg_form_view` VALUES("22198", "3", "2015-12-07 01:02:16", "202.46.52.44", "36");
INSERT INTO `wp_rg_form_view` VALUES("22199", "8", "2015-12-07 02:19:52", "207.46.13.153", "4");
INSERT INTO `wp_rg_form_view` VALUES("22200", "3", "2015-12-07 02:19:52", "207.46.13.153", "11");
INSERT INTO `wp_rg_form_view` VALUES("22201", "8", "2015-12-07 03:10:10", "202.46.48.85", "17");
INSERT INTO `wp_rg_form_view` VALUES("22202", "3", "2015-12-07 03:10:11", "202.46.48.85", "49");
INSERT INTO `wp_rg_form_view` VALUES("22203", "8", "2015-12-07 04:08:25", "24.86.213.168", "11");
INSERT INTO `wp_rg_form_view` VALUES("22204", "3", "2015-12-07 04:08:25", "24.86.213.168", "29");
INSERT INTO `wp_rg_form_view` VALUES("22205", "8", "2015-12-07 05:05:51", "202.46.56.16", "31");
INSERT INTO `wp_rg_form_view` VALUES("22206", "3", "2015-12-07 05:05:51", "202.46.56.16", "98");
INSERT INTO `wp_rg_form_view` VALUES("22207", "9", "2015-12-07 05:50:04", "216.232.146.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("22208", "8", "2015-12-07 06:04:13", "202.46.51.166", "14");
INSERT INTO `wp_rg_form_view` VALUES("22209", "3", "2015-12-07 06:04:13", "202.46.51.166", "40");
INSERT INTO `wp_rg_form_view` VALUES("22210", "8", "2015-12-07 07:14:25", "40.77.167.7", "22");
INSERT INTO `wp_rg_form_view` VALUES("22211", "3", "2015-12-07 07:14:25", "40.77.167.7", "61");
INSERT INTO `wp_rg_form_view` VALUES("22212", "9", "2015-12-07 07:28:41", "40.77.167.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("22213", "8", "2015-12-07 08:23:49", "202.46.52.206", "8");
INSERT INTO `wp_rg_form_view` VALUES("22214", "3", "2015-12-07 08:23:49", "202.46.52.206", "21");
INSERT INTO `wp_rg_form_view` VALUES("22215", "8", "2015-12-07 09:04:49", "202.46.53.13", "9");
INSERT INTO `wp_rg_form_view` VALUES("22216", "3", "2015-12-07 09:04:49", "202.46.53.13", "29");
INSERT INTO `wp_rg_form_view` VALUES("22217", "8", "2015-12-07 10:03:46", "180.150.227.242", "16");
INSERT INTO `wp_rg_form_view` VALUES("22218", "3", "2015-12-07 10:03:46", "180.150.227.242", "39");
INSERT INTO `wp_rg_form_view` VALUES("22219", "8", "2015-12-07 11:00:58", "77.75.79.17", "20");
INSERT INTO `wp_rg_form_view` VALUES("22220", "3", "2015-12-07 11:00:58", "77.75.79.17", "56");
INSERT INTO `wp_rg_form_view` VALUES("22221", "8", "2015-12-07 12:05:57", "202.46.58.204", "8");
INSERT INTO `wp_rg_form_view` VALUES("22222", "3", "2015-12-07 12:05:57", "202.46.58.204", "23");
INSERT INTO `wp_rg_form_view` VALUES("22223", "8", "2015-12-07 13:03:10", "202.46.50.133", "11");
INSERT INTO `wp_rg_form_view` VALUES("22224", "3", "2015-12-07 13:03:10", "202.46.50.133", "30");
INSERT INTO `wp_rg_form_view` VALUES("22225", "8", "2015-12-07 14:03:28", "66.249.74.102", "18");
INSERT INTO `wp_rg_form_view` VALUES("22226", "3", "2015-12-07 14:03:28", "66.249.74.102", "55");
INSERT INTO `wp_rg_form_view` VALUES("22227", "1", "2015-12-07 14:04:49", "216.158.206.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("22228", "3", "2015-12-07 15:04:28", "202.46.53.113", "13");
INSERT INTO `wp_rg_form_view` VALUES("22229", "8", "2015-12-07 15:04:29", "202.46.53.113", "5");
INSERT INTO `wp_rg_form_view` VALUES("22230", "8", "2015-12-07 17:21:00", "46.4.32.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("22231", "3", "2015-12-07 17:21:01", "46.4.32.75", "12");
INSERT INTO `wp_rg_form_view` VALUES("22232", "8", "2015-12-07 18:09:51", "216.232.155.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("22233", "3", "2015-12-07 18:09:51", "216.232.155.66", "10");
INSERT INTO `wp_rg_form_view` VALUES("22234", "9", "2015-12-07 18:33:41", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("22235", "8", "2015-12-07 19:07:10", "207.46.13.171", "6");
INSERT INTO `wp_rg_form_view` VALUES("22236", "3", "2015-12-07 19:07:10", "207.46.13.171", "15");
INSERT INTO `wp_rg_form_view` VALUES("22237", "8", "2015-12-07 20:04:49", "209.52.88.181", "8");
INSERT INTO `wp_rg_form_view` VALUES("22238", "3", "2015-12-07 20:04:50", "209.52.88.181", "24");
INSERT INTO `wp_rg_form_view` VALUES("22239", "8", "2015-12-07 21:02:36", "66.249.88.230", "5");
INSERT INTO `wp_rg_form_view` VALUES("22240", "3", "2015-12-07 21:02:36", "66.249.88.230", "15");
INSERT INTO `wp_rg_form_view` VALUES("22241", "8", "2015-12-07 22:28:36", "142.36.180.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("22242", "3", "2015-12-07 22:28:38", "142.36.180.215", "6");
INSERT INTO `wp_rg_form_view` VALUES("22243", "8", "2015-12-07 23:57:52", "109.169.29.30", "14");
INSERT INTO `wp_rg_form_view` VALUES("22244", "3", "2015-12-07 23:57:54", "109.169.29.30", "45");
INSERT INTO `wp_rg_form_view` VALUES("22245", "2", "2015-12-07 23:59:50", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("22246", "8", "2015-12-08 00:15:42", "207.46.13.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("22247", "3", "2015-12-08 00:15:42", "207.46.13.88", "6");
INSERT INTO `wp_rg_form_view` VALUES("22248", "3", "2015-12-08 01:13:23", "207.46.13.171", "13");
INSERT INTO `wp_rg_form_view` VALUES("22249", "8", "2015-12-08 01:13:26", "207.46.13.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("22250", "3", "2015-12-08 02:20:45", "157.55.39.122", "7");
INSERT INTO `wp_rg_form_view` VALUES("22251", "8", "2015-12-08 02:20:46", "157.55.39.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("22252", "3", "2015-12-08 03:11:32", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("22253", "8", "2015-12-08 03:52:13", "207.46.13.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("22254", "8", "2015-12-08 04:12:10", "24.69.40.255", "15");
INSERT INTO `wp_rg_form_view` VALUES("22255", "3", "2015-12-08 04:12:10", "24.69.40.255", "44");
INSERT INTO `wp_rg_form_view` VALUES("22256", "3", "2015-12-08 05:03:11", "207.46.13.88", "51");
INSERT INTO `wp_rg_form_view` VALUES("22257", "8", "2015-12-08 05:03:11", "207.46.13.88", "19");
INSERT INTO `wp_rg_form_view` VALUES("22258", "1", "2015-12-08 05:42:25", "107.153.2.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22259", "3", "2015-12-08 06:02:39", "202.46.58.56", "52");
INSERT INTO `wp_rg_form_view` VALUES("22260", "8", "2015-12-08 06:02:40", "202.46.58.56", "17");
INSERT INTO `wp_rg_form_view` VALUES("22261", "8", "2015-12-08 07:01:31", "202.46.48.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("22262", "3", "2015-12-08 07:01:31", "202.46.48.89", "27");
INSERT INTO `wp_rg_form_view` VALUES("22263", "8", "2015-12-08 08:04:52", "207.46.13.88", "11");
INSERT INTO `wp_rg_form_view` VALUES("22264", "3", "2015-12-08 08:04:53", "207.46.13.88", "32");
INSERT INTO `wp_rg_form_view` VALUES("22265", "8", "2015-12-08 09:06:25", "202.46.49.114", "11");
INSERT INTO `wp_rg_form_view` VALUES("22266", "3", "2015-12-08 09:06:25", "202.46.49.114", "32");
INSERT INTO `wp_rg_form_view` VALUES("22267", "8", "2015-12-08 10:02:55", "202.46.54.32", "25");
INSERT INTO `wp_rg_form_view` VALUES("22268", "3", "2015-12-08 10:02:55", "202.46.54.32", "67");
INSERT INTO `wp_rg_form_view` VALUES("22269", "8", "2015-12-08 11:08:50", "202.46.51.182", "17");
INSERT INTO `wp_rg_form_view` VALUES("22270", "3", "2015-12-08 11:08:50", "202.46.51.182", "51");
INSERT INTO `wp_rg_form_view` VALUES("22271", "9", "2015-12-08 11:16:14", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22272", "1", "2015-12-08 11:53:16", "98.237.176.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("22273", "8", "2015-12-08 12:01:11", "66.249.88.108", "17");
INSERT INTO `wp_rg_form_view` VALUES("22274", "3", "2015-12-08 12:01:11", "66.249.88.108", "49");
INSERT INTO `wp_rg_form_view` VALUES("22275", "8", "2015-12-08 13:01:52", "202.46.56.186", "21");
INSERT INTO `wp_rg_form_view` VALUES("22276", "3", "2015-12-08 13:01:52", "202.46.56.186", "66");
INSERT INTO `wp_rg_form_view` VALUES("22277", "9", "2015-12-08 13:33:20", "207.46.13.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("22278", "8", "2015-12-08 14:03:13", "66.249.74.104", "14");
INSERT INTO `wp_rg_form_view` VALUES("22279", "3", "2015-12-08 14:03:13", "66.249.74.104", "42");
INSERT INTO `wp_rg_form_view` VALUES("22280", "1", "2015-12-08 14:34:43", "221.237.22.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("22281", "8", "2015-12-08 15:00:28", "76.10.180.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("22282", "3", "2015-12-08 15:00:28", "76.10.180.112", "81");
INSERT INTO `wp_rg_form_view` VALUES("22283", "5", "2015-12-08 15:03:12", "93.179.68.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("22284", "6", "2015-12-08 15:32:52", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("22285", "1", "2015-12-08 15:58:39", "91.200.12.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("22286", "8", "2015-12-08 16:10:14", "202.46.48.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("22287", "3", "2015-12-08 16:10:14", "202.46.48.138", "28");
INSERT INTO `wp_rg_form_view` VALUES("22288", "8", "2015-12-08 17:06:51", "202.46.53.201", "23");
INSERT INTO `wp_rg_form_view` VALUES("22289", "3", "2015-12-08 17:06:52", "202.46.53.201", "63");
INSERT INTO `wp_rg_form_view` VALUES("22290", "6", "2015-12-08 17:54:31", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("22291", "8", "2015-12-08 18:03:15", "202.46.48.89", "19");
INSERT INTO `wp_rg_form_view` VALUES("22292", "3", "2015-12-08 18:03:15", "202.46.48.89", "50");
INSERT INTO `wp_rg_form_view` VALUES("22293", "9", "2015-12-08 18:11:33", "207.46.13.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("22294", "6", "2015-12-08 18:16:51", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("22295", "8", "2015-12-08 19:09:09", "202.46.53.43", "32");
INSERT INTO `wp_rg_form_view` VALUES("22296", "3", "2015-12-08 19:09:10", "202.46.53.43", "88");
INSERT INTO `wp_rg_form_view` VALUES("22297", "1", "2015-12-08 19:22:37", "99.199.0.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("22298", "8", "2015-12-08 20:05:41", "202.46.58.126", "17");
INSERT INTO `wp_rg_form_view` VALUES("22299", "3", "2015-12-08 20:05:41", "202.46.58.126", "58");
INSERT INTO `wp_rg_form_view` VALUES("22300", "8", "2015-12-08 21:02:11", "202.46.53.204", "17");
INSERT INTO `wp_rg_form_view` VALUES("22301", "3", "2015-12-08 21:02:11", "202.46.53.204", "50");
INSERT INTO `wp_rg_form_view` VALUES("22302", "1", "2015-12-08 21:23:02", "91.108.73.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("22303", "8", "2015-12-08 22:05:42", "207.46.13.88", "18");
INSERT INTO `wp_rg_form_view` VALUES("22304", "3", "2015-12-08 22:05:42", "207.46.13.88", "41");
INSERT INTO `wp_rg_form_view` VALUES("22305", "8", "2015-12-08 23:04:36", "202.46.57.17", "17");
INSERT INTO `wp_rg_form_view` VALUES("22306", "3", "2015-12-08 23:04:37", "202.46.57.17", "51");
INSERT INTO `wp_rg_form_view` VALUES("22307", "8", "2015-12-09 00:01:07", "202.46.51.138", "16");
INSERT INTO `wp_rg_form_view` VALUES("22308", "3", "2015-12-09 00:01:07", "202.46.51.138", "42");
INSERT INTO `wp_rg_form_view` VALUES("22309", "3", "2015-12-09 01:02:58", "207.46.13.88", "32");
INSERT INTO `wp_rg_form_view` VALUES("22310", "8", "2015-12-09 01:02:58", "207.46.13.88", "10");
INSERT INTO `wp_rg_form_view` VALUES("22311", "8", "2015-12-09 02:03:33", "202.46.53.121", "17");
INSERT INTO `wp_rg_form_view` VALUES("22312", "3", "2015-12-09 02:03:34", "202.46.53.121", "50");
INSERT INTO `wp_rg_form_view` VALUES("22313", "8", "2015-12-09 03:00:03", "202.46.54.135", "15");
INSERT INTO `wp_rg_form_view` VALUES("22314", "3", "2015-12-09 03:00:03", "202.46.54.135", "42");
INSERT INTO `wp_rg_form_view` VALUES("22315", "1", "2015-12-09 03:55:12", "24.68.66.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("22316", "8", "2015-12-09 04:12:22", "207.46.13.153", "120");
INSERT INTO `wp_rg_form_view` VALUES("22317", "3", "2015-12-09 04:12:22", "207.46.13.153", "361");
INSERT INTO `wp_rg_form_view` VALUES("22318", "6", "2015-12-09 04:22:27", "167.114.234.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("22319", "9", "2015-12-09 04:23:13", "167.114.234.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("22320", "1", "2015-12-09 04:23:52", "167.114.234.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("22321", "2", "2015-12-09 04:24:15", "167.114.234.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("22322", "5", "2015-12-09 04:24:32", "167.114.234.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("22323", "8", "2015-12-09 05:01:11", "202.46.58.85", "22");
INSERT INTO `wp_rg_form_view` VALUES("22324", "3", "2015-12-09 05:01:11", "202.46.58.85", "59");
INSERT INTO `wp_rg_form_view` VALUES("22325", "1", "2015-12-09 05:11:28", "118.244.254.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("22326", "5", "2015-12-09 05:53:28", "157.55.39.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("22327", "8", "2015-12-09 06:07:04", "202.46.58.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("22328", "3", "2015-12-09 06:07:04", "202.46.58.90", "40");
INSERT INTO `wp_rg_form_view` VALUES("22329", "8", "2015-12-09 07:03:35", "202.46.50.133", "13");
INSERT INTO `wp_rg_form_view` VALUES("22330", "3", "2015-12-09 07:03:35", "202.46.50.133", "35");
INSERT INTO `wp_rg_form_view` VALUES("22331", "8", "2015-12-09 08:00:06", "202.46.49.137", "14");
INSERT INTO `wp_rg_form_view` VALUES("22332", "3", "2015-12-09 08:00:06", "202.46.49.137", "34");
INSERT INTO `wp_rg_form_view` VALUES("22333", "8", "2015-12-09 09:05:13", "216.158.217.156", "18");
INSERT INTO `wp_rg_form_view` VALUES("22334", "3", "2015-12-09 09:05:14", "216.158.217.156", "54");
INSERT INTO `wp_rg_form_view` VALUES("22335", "5", "2015-12-09 09:34:40", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22336", "8", "2015-12-09 10:03:25", "202.46.57.205", "12");
INSERT INTO `wp_rg_form_view` VALUES("22337", "3", "2015-12-09 10:03:25", "202.46.57.205", "29");
INSERT INTO `wp_rg_form_view` VALUES("22338", "8", "2015-12-09 11:09:19", "202.46.57.198", "9");
INSERT INTO `wp_rg_form_view` VALUES("22339", "3", "2015-12-09 11:09:19", "202.46.57.198", "26");
INSERT INTO `wp_rg_form_view` VALUES("22340", "8", "2015-12-09 12:05:51", "202.46.48.87", "16");
INSERT INTO `wp_rg_form_view` VALUES("22341", "3", "2015-12-09 12:05:51", "202.46.48.87", "49");
INSERT INTO `wp_rg_form_view` VALUES("22342", "8", "2015-12-09 13:02:20", "202.46.54.106", "18");
INSERT INTO `wp_rg_form_view` VALUES("22343", "3", "2015-12-09 13:02:20", "202.46.54.106", "44");
INSERT INTO `wp_rg_form_view` VALUES("22344", "8", "2015-12-09 14:08:16", "202.46.55.131", "18");
INSERT INTO `wp_rg_form_view` VALUES("22345", "3", "2015-12-09 14:08:16", "202.46.55.131", "49");
INSERT INTO `wp_rg_form_view` VALUES("22346", "1", "2015-12-09 14:09:11", "107.153.2.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("22347", "3", "2015-12-09 15:04:46", "202.46.51.15", "80");
INSERT INTO `wp_rg_form_view` VALUES("22348", "8", "2015-12-09 15:04:47", "202.46.51.15", "26");
INSERT INTO `wp_rg_form_view` VALUES("22349", "1", "2015-12-09 15:12:14", "155.94.140.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("22350", "6", "2015-12-09 15:18:30", "157.55.39.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("22351", "8", "2015-12-09 16:01:16", "202.46.53.121", "17");
INSERT INTO `wp_rg_form_view` VALUES("22352", "3", "2015-12-09 16:01:16", "202.46.53.121", "48");
INSERT INTO `wp_rg_form_view` VALUES("22353", "1", "2015-12-09 16:16:43", "46.17.99.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("22354", "8", "2015-12-09 17:07:12", "202.46.54.184", "18");
INSERT INTO `wp_rg_form_view` VALUES("22355", "3", "2015-12-09 17:07:13", "202.46.54.184", "52");
INSERT INTO `wp_rg_form_view` VALUES("22356", "1", "2015-12-09 17:11:22", "211.141.64.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("22357", "8", "2015-12-09 18:03:43", "202.46.53.207", "29");
INSERT INTO `wp_rg_form_view` VALUES("22358", "3", "2015-12-09 18:03:44", "202.46.53.207", "89");
INSERT INTO `wp_rg_form_view` VALUES("22359", "1", "2015-12-09 18:36:32", "184.69.117.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("22360", "8", "2015-12-09 19:00:20", "202.46.51.103", "42");
INSERT INTO `wp_rg_form_view` VALUES("22361", "3", "2015-12-09 19:00:20", "202.46.51.103", "328");
INSERT INTO `wp_rg_form_view` VALUES("22362", "9", "2015-12-09 19:06:42", "188.165.15.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("22363", "2", "2015-12-09 19:37:32", "104.131.84.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("22364", "3", "2015-12-09 20:06:09", "202.46.51.158", "134");
INSERT INTO `wp_rg_form_view` VALUES("22365", "8", "2015-12-09 20:06:09", "202.46.51.158", "18");
INSERT INTO `wp_rg_form_view` VALUES("22366", "3", "2015-12-09 21:00:07", "66.249.74.104", "117");
INSERT INTO `wp_rg_form_view` VALUES("22367", "8", "2015-12-09 21:00:08", "66.249.74.104", "13");
INSERT INTO `wp_rg_form_view` VALUES("22368", "3", "2015-12-09 22:08:34", "202.46.56.111", "115");
INSERT INTO `wp_rg_form_view` VALUES("22369", "8", "2015-12-09 22:08:34", "202.46.56.111", "15");
INSERT INTO `wp_rg_form_view` VALUES("22370", "3", "2015-12-09 23:05:05", "202.46.49.62", "113");
INSERT INTO `wp_rg_form_view` VALUES("22371", "8", "2015-12-09 23:05:05", "202.46.49.62", "15");
INSERT INTO `wp_rg_form_view` VALUES("22372", "9", "2015-12-09 23:28:54", "207.46.13.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("22373", "3", "2015-12-10 00:00:18", "207.46.13.153", "115");
INSERT INTO `wp_rg_form_view` VALUES("22374", "8", "2015-12-10 00:00:18", "207.46.13.153", "16");
INSERT INTO `wp_rg_form_view` VALUES("22375", "1", "2015-12-10 00:14:43", "142.36.180.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("22376", "3", "2015-12-10 01:02:43", "157.55.39.122", "96");
INSERT INTO `wp_rg_form_view` VALUES("22377", "8", "2015-12-10 01:02:43", "157.55.39.122", "13");
INSERT INTO `wp_rg_form_view` VALUES("22378", "3", "2015-12-10 02:05:37", "202.46.58.184", "120");
INSERT INTO `wp_rg_form_view` VALUES("22379", "8", "2015-12-10 02:05:38", "202.46.58.184", "14");
INSERT INTO `wp_rg_form_view` VALUES("22380", "3", "2015-12-10 03:03:07", "202.46.58.189", "210");
INSERT INTO `wp_rg_form_view` VALUES("22381", "8", "2015-12-10 03:03:07", "202.46.58.189", "25");
INSERT INTO `wp_rg_form_view` VALUES("22382", "3", "2015-12-10 04:00:40", "202.46.57.173", "156");
INSERT INTO `wp_rg_form_view` VALUES("22383", "8", "2015-12-10 04:00:40", "202.46.57.173", "20");
INSERT INTO `wp_rg_form_view` VALUES("22384", "3", "2015-12-10 05:12:38", "202.46.51.22", "63");
INSERT INTO `wp_rg_form_view` VALUES("22385", "8", "2015-12-10 05:12:41", "202.46.51.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("22386", "3", "2015-12-10 06:02:00", "66.249.74.102", "122");
INSERT INTO `wp_rg_form_view` VALUES("22387", "8", "2015-12-10 06:02:00", "66.249.74.102", "15");
INSERT INTO `wp_rg_form_view` VALUES("22388", "3", "2015-12-10 07:04:46", "66.249.65.97", "91");
INSERT INTO `wp_rg_form_view` VALUES("22389", "8", "2015-12-10 07:04:46", "66.249.65.97", "12");
INSERT INTO `wp_rg_form_view` VALUES("22390", "3", "2015-12-10 08:03:08", "188.165.15.233", "89");
INSERT INTO `wp_rg_form_view` VALUES("22391", "8", "2015-12-10 08:03:08", "188.165.15.233", "11");
INSERT INTO `wp_rg_form_view` VALUES("22392", "3", "2015-12-10 09:02:46", "202.46.52.41", "157");
INSERT INTO `wp_rg_form_view` VALUES("22393", "8", "2015-12-10 09:02:47", "202.46.52.41", "18");
INSERT INTO `wp_rg_form_view` VALUES("22394", "3", "2015-12-10 10:00:18", "202.46.52.141", "92");
INSERT INTO `wp_rg_form_view` VALUES("22395", "8", "2015-12-10 10:00:19", "202.46.52.141", "11");
INSERT INTO `wp_rg_form_view` VALUES("22396", "3", "2015-12-10 11:07:24", "188.165.15.233", "182");
INSERT INTO `wp_rg_form_view` VALUES("22397", "8", "2015-12-10 11:07:24", "188.165.15.233", "22");
INSERT INTO `wp_rg_form_view` VALUES("22398", "3", "2015-12-10 12:09:30", "209.94.177.10", "98");
INSERT INTO `wp_rg_form_view` VALUES("22399", "8", "2015-12-10 12:09:30", "209.94.177.10", "13");
INSERT INTO `wp_rg_form_view` VALUES("22400", "3", "2015-12-10 13:07:20", "202.46.48.83", "75");
INSERT INTO `wp_rg_form_view` VALUES("22401", "8", "2015-12-10 13:07:20", "202.46.48.83", "9");
INSERT INTO `wp_rg_form_view` VALUES("22402", "3", "2015-12-10 14:04:51", "202.46.58.73", "79");
INSERT INTO `wp_rg_form_view` VALUES("22403", "8", "2015-12-10 14:04:52", "202.46.58.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("22404", "3", "2015-12-10 15:02:29", "202.46.51.138", "167");
INSERT INTO `wp_rg_form_view` VALUES("22405", "8", "2015-12-10 15:02:29", "202.46.51.138", "22");
INSERT INTO `wp_rg_form_view` VALUES("22406", "2", "2015-12-10 15:57:00", "178.62.141.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("22407", "3", "2015-12-10 16:02:06", "24.68.146.132", "201");
INSERT INTO `wp_rg_form_view` VALUES("22408", "8", "2015-12-10 16:02:06", "24.68.146.132", "25");
INSERT INTO `wp_rg_form_view` VALUES("22409", "1", "2015-12-10 16:35:45", "98.237.176.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("22410", "3", "2015-12-10 17:03:14", "216.232.145.151", "210");
INSERT INTO `wp_rg_form_view` VALUES("22411", "8", "2015-12-10 17:03:14", "68.180.229.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("22412", "8", "2015-12-10 17:03:14", "216.232.145.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("22413", "3", "2015-12-10 18:03:06", "66.249.74.106", "59");
INSERT INTO `wp_rg_form_view` VALUES("22414", "8", "2015-12-10 18:03:06", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("22415", "3", "2015-12-10 19:06:57", "202.46.50.198", "71");
INSERT INTO `wp_rg_form_view` VALUES("22416", "8", "2015-12-10 19:06:58", "202.46.50.198", "10");
INSERT INTO `wp_rg_form_view` VALUES("22417", "3", "2015-12-10 20:04:31", "202.46.55.89", "91");
INSERT INTO `wp_rg_form_view` VALUES("22418", "8", "2015-12-10 20:04:31", "202.46.55.89", "12");
INSERT INTO `wp_rg_form_view` VALUES("22419", "3", "2015-12-10 21:02:03", "202.46.52.156", "89");
INSERT INTO `wp_rg_form_view` VALUES("22420", "8", "2015-12-10 21:02:03", "202.46.52.156", "13");
INSERT INTO `wp_rg_form_view` VALUES("22421", "1", "2015-12-10 21:54:41", "104.227.92.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("22422", "3", "2015-12-10 22:13:58", "202.46.56.195", "156");
INSERT INTO `wp_rg_form_view` VALUES("22423", "8", "2015-12-10 22:13:58", "202.46.56.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("22424", "3", "2015-12-10 23:10:37", "66.249.74.106", "59");
INSERT INTO `wp_rg_form_view` VALUES("22425", "8", "2015-12-10 23:10:37", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("22426", "3", "2015-12-11 00:09:06", "202.46.56.180", "93");
INSERT INTO `wp_rg_form_view` VALUES("22427", "8", "2015-12-11 00:09:06", "202.46.56.180", "12");
INSERT INTO `wp_rg_form_view` VALUES("22428", "3", "2015-12-11 01:06:28", "24.68.66.211", "162");
INSERT INTO `wp_rg_form_view` VALUES("22429", "8", "2015-12-11 01:06:28", "24.68.66.211", "21");
INSERT INTO `wp_rg_form_view` VALUES("22430", "3", "2015-12-11 02:01:41", "66.249.74.104", "167");
INSERT INTO `wp_rg_form_view` VALUES("22431", "8", "2015-12-11 02:01:41", "66.249.74.104", "21");
INSERT INTO `wp_rg_form_view` VALUES("22432", "1", "2015-12-11 02:02:49", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("22433", "3", "2015-12-11 03:01:41", "202.46.58.19", "107");
INSERT INTO `wp_rg_form_view` VALUES("22434", "8", "2015-12-11 03:01:41", "202.46.58.19", "13");
INSERT INTO `wp_rg_form_view` VALUES("22435", "1", "2015-12-11 03:42:33", "221.237.22.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("22436", "3", "2015-12-11 04:08:09", "157.55.39.122", "58");
INSERT INTO `wp_rg_form_view` VALUES("22437", "8", "2015-12-11 04:08:09", "157.55.39.122", "7");
INSERT INTO `wp_rg_form_view` VALUES("22438", "3", "2015-12-11 05:06:16", "66.249.74.106", "100");
INSERT INTO `wp_rg_form_view` VALUES("22439", "8", "2015-12-11 05:06:16", "66.249.74.106", "13");
INSERT INTO `wp_rg_form_view` VALUES("22440", "3", "2015-12-11 06:08:42", "202.46.49.145", "47");
INSERT INTO `wp_rg_form_view` VALUES("22441", "8", "2015-12-11 06:08:42", "202.46.49.145", "6");
INSERT INTO `wp_rg_form_view` VALUES("22442", "3", "2015-12-11 07:01:39", "69.58.178.59", "117");
INSERT INTO `wp_rg_form_view` VALUES("22443", "8", "2015-12-11 07:01:39", "69.58.178.59", "14");
INSERT INTO `wp_rg_form_view` VALUES("22444", "2", "2015-12-11 07:06:35", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("22445", "3", "2015-12-11 08:03:51", "202.46.58.53", "208");
INSERT INTO `wp_rg_form_view` VALUES("22446", "8", "2015-12-11 08:03:51", "202.46.58.53", "26");
INSERT INTO `wp_rg_form_view` VALUES("22447", "2", "2015-12-11 08:29:54", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("22448", "3", "2015-12-11 09:19:50", "40.77.167.81", "25");
INSERT INTO `wp_rg_form_view` VALUES("22449", "8", "2015-12-11 09:19:50", "40.77.167.81", "3");
INSERT INTO `wp_rg_form_view` VALUES("22450", "3", "2015-12-11 10:51:01", "66.249.74.102", "16");
INSERT INTO `wp_rg_form_view` VALUES("22451", "8", "2015-12-11 10:51:08", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("22452", "3", "2015-12-11 11:19:24", "207.46.13.116", "104");
INSERT INTO `wp_rg_form_view` VALUES("22453", "8", "2015-12-11 11:19:24", "207.46.13.116", "12");
INSERT INTO `wp_rg_form_view` VALUES("22454", "3", "2015-12-11 12:09:41", "202.46.51.206", "49");
INSERT INTO `wp_rg_form_view` VALUES("22455", "8", "2015-12-11 12:09:42", "202.46.51.206", "6");
INSERT INTO `wp_rg_form_view` VALUES("22456", "9", "2015-12-11 13:06:33", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("22457", "3", "2015-12-11 13:06:33", "66.249.74.106", "41");
INSERT INTO `wp_rg_form_view` VALUES("22458", "8", "2015-12-11 13:06:34", "66.249.74.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("22459", "3", "2015-12-11 14:36:45", "134.249.52.203", "32");
INSERT INTO `wp_rg_form_view` VALUES("22460", "8", "2015-12-11 14:36:45", "134.249.52.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("22461", "2", "2015-12-11 14:49:22", "40.77.167.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("22462", "3", "2015-12-11 15:04:10", "68.180.229.161", "68");
INSERT INTO `wp_rg_form_view` VALUES("22463", "8", "2015-12-11 15:04:10", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("22464", "1", "2015-12-11 16:07:56", "45.35.105.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("22465", "3", "2015-12-11 16:07:56", "45.35.105.208", "65");
INSERT INTO `wp_rg_form_view` VALUES("22466", "8", "2015-12-11 16:07:57", "45.35.105.208", "8");
INSERT INTO `wp_rg_form_view` VALUES("22467", "6", "2015-12-11 16:43:00", "157.55.39.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("22468", "3", "2015-12-11 17:08:32", "40.77.167.81", "91");
INSERT INTO `wp_rg_form_view` VALUES("22469", "8", "2015-12-11 17:08:35", "40.77.167.81", "11");
INSERT INTO `wp_rg_form_view` VALUES("22470", "3", "2015-12-11 18:09:07", "66.249.74.106", "65");
INSERT INTO `wp_rg_form_view` VALUES("22471", "8", "2015-12-11 18:09:08", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("22472", "3", "2015-12-11 19:07:29", "62.210.162.184", "59");
INSERT INTO `wp_rg_form_view` VALUES("22473", "8", "2015-12-11 19:07:29", "62.210.162.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("22474", "3", "2015-12-11 20:31:26", "66.249.66.78", "77");
INSERT INTO `wp_rg_form_view` VALUES("22475", "8", "2015-12-11 20:31:26", "66.249.66.78", "9");
INSERT INTO `wp_rg_form_view` VALUES("22476", "3", "2015-12-11 21:08:58", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("22477", "8", "2015-12-11 21:08:59", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("22478", "9", "2015-12-11 21:28:45", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("22479", "3", "2015-12-11 22:01:38", "66.249.74.104", "57");
INSERT INTO `wp_rg_form_view` VALUES("22480", "8", "2015-12-11 22:01:39", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("22481", "3", "2015-12-11 23:00:19", "66.249.74.106", "208");
INSERT INTO `wp_rg_form_view` VALUES("22482", "8", "2015-12-11 23:00:23", "66.249.74.106", "26");
INSERT INTO `wp_rg_form_view` VALUES("22483", "7", "2015-12-11 23:10:12", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("22484", "2", "2015-12-11 23:23:34", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("22485", "9", "2015-12-11 23:57:19", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("22486", "3", "2015-12-12 00:13:17", "207.46.13.178", "212");
INSERT INTO `wp_rg_form_view` VALUES("22487", "8", "2015-12-12 00:13:18", "207.46.13.178", "25");
INSERT INTO `wp_rg_form_view` VALUES("22488", "2", "2015-12-12 00:26:03", "179.61.138.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("22489", "3", "2015-12-12 01:00:40", "62.210.162.184", "66");
INSERT INTO `wp_rg_form_view` VALUES("22490", "8", "2015-12-12 01:00:40", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("22491", "2", "2015-12-12 02:07:47", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("22492", "3", "2015-12-12 02:07:56", "62.210.162.184", "58");
INSERT INTO `wp_rg_form_view` VALUES("22493", "8", "2015-12-12 02:07:58", "62.210.162.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("22494", "3", "2015-12-12 03:39:54", "155.94.215.37", "40");
INSERT INTO `wp_rg_form_view` VALUES("22495", "8", "2015-12-12 03:39:55", "155.94.215.37", "5");
INSERT INTO `wp_rg_form_view` VALUES("22496", "2", "2015-12-12 03:50:54", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("22497", "3", "2015-12-12 04:31:34", "62.210.162.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("22498", "8", "2015-12-12 04:31:35", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("22499", "3", "2015-12-12 05:00:42", "66.249.74.102", "25");
INSERT INTO `wp_rg_form_view` VALUES("22500", "8", "2015-12-12 05:00:43", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("22501", "2", "2015-12-12 05:32:27", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("22502", "3", "2015-12-12 06:12:38", "62.210.162.184", "50");
INSERT INTO `wp_rg_form_view` VALUES("22503", "8", "2015-12-12 06:12:38", "62.210.162.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("22504", "3", "2015-12-12 07:36:06", "207.46.13.25", "56");
INSERT INTO `wp_rg_form_view` VALUES("22505", "8", "2015-12-12 07:36:09", "207.46.13.25", "7");
INSERT INTO `wp_rg_form_view` VALUES("22506", "2", "2015-12-12 07:38:48", "40.77.167.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("22507", "3", "2015-12-12 09:00:57", "23.94.87.23", "67");
INSERT INTO `wp_rg_form_view` VALUES("22508", "8", "2015-12-12 09:00:57", "23.94.87.23", "8");
INSERT INTO `wp_rg_form_view` VALUES("22509", "9", "2015-12-12 10:47:45", "66.249.88.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("22510", "3", "2015-12-12 10:47:46", "66.249.88.225", "24");
INSERT INTO `wp_rg_form_view` VALUES("22511", "8", "2015-12-12 10:47:46", "66.249.88.225", "3");
INSERT INTO `wp_rg_form_view` VALUES("22512", "3", "2015-12-12 11:03:13", "66.249.74.104", "29");
INSERT INTO `wp_rg_form_view` VALUES("22513", "8", "2015-12-12 11:03:13", "66.249.74.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("22514", "3", "2015-12-12 12:04:54", "178.137.165.96", "88");
INSERT INTO `wp_rg_form_view` VALUES("22515", "8", "2015-12-12 12:04:54", "178.137.165.96", "11");
INSERT INTO `wp_rg_form_view` VALUES("22516", "1", "2015-12-12 13:03:04", "185.104.217.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("22517", "3", "2015-12-12 13:03:04", "185.104.217.93", "49");
INSERT INTO `wp_rg_form_view` VALUES("22518", "8", "2015-12-12 13:03:04", "185.104.217.93", "6");
INSERT INTO `wp_rg_form_view` VALUES("22519", "3", "2015-12-12 14:28:31", "68.180.229.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("22520", "8", "2015-12-12 14:28:31", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("22521", "3", "2015-12-12 15:14:08", "68.180.229.161", "56");
INSERT INTO `wp_rg_form_view` VALUES("22522", "8", "2015-12-12 15:14:09", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("22523", "2", "2015-12-12 15:49:35", "40.77.167.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("22524", "3", "2015-12-12 16:18:36", "207.46.13.168", "40");
INSERT INTO `wp_rg_form_view` VALUES("22525", "8", "2015-12-12 16:18:36", "207.46.13.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("22526", "3", "2015-12-12 17:16:13", "100.43.81.141", "8");
INSERT INTO `wp_rg_form_view` VALUES("22527", "8", "2015-12-12 17:16:13", "100.43.81.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("22528", "3", "2015-12-12 18:03:13", "174.127.133.105", "565");
INSERT INTO `wp_rg_form_view` VALUES("22529", "8", "2015-12-12 18:03:14", "174.127.133.105", "74");
INSERT INTO `wp_rg_form_view` VALUES("22530", "2", "2015-12-12 18:05:42", "174.127.133.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("22531", "3", "2015-12-12 19:16:34", "178.137.165.96", "39");
INSERT INTO `wp_rg_form_view` VALUES("22532", "3", "2015-12-12 19:16:34", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22533", "8", "2015-12-12 19:16:34", "178.137.165.96", "4");
INSERT INTO `wp_rg_form_view` VALUES("22534", "8", "2015-12-12 19:16:34", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22535", "3", "2015-12-12 20:09:58", "162.243.1.53", "2712");
INSERT INTO `wp_rg_form_view` VALUES("22536", "8", "2015-12-12 20:09:59", "162.243.1.53", "345");
INSERT INTO `wp_rg_form_view` VALUES("22537", "1", "2015-12-12 20:16:44", "162.243.1.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("22538", "5", "2015-12-12 20:25:22", "162.243.1.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("22539", "6", "2015-12-12 20:37:01", "162.243.1.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("22540", "9", "2015-12-12 20:47:02", "162.243.1.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("22541", "3", "2015-12-12 21:00:00", "162.243.1.53", "1793");
INSERT INTO `wp_rg_form_view` VALUES("22542", "8", "2015-12-12 21:00:03", "162.243.1.53", "227");
INSERT INTO `wp_rg_form_view` VALUES("22543", "2", "2015-12-12 21:07:50", "192.77.245.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("22544", "3", "2015-12-12 23:05:59", "23.244.122.136", "139");
INSERT INTO `wp_rg_form_view` VALUES("22545", "8", "2015-12-12 23:06:02", "23.244.122.136", "17");
INSERT INTO `wp_rg_form_view` VALUES("22546", "3", "2015-12-13 00:01:24", "24.69.41.60", "31");
INSERT INTO `wp_rg_form_view` VALUES("22547", "3", "2015-12-13 00:01:24", "24.69.41.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("22548", "8", "2015-12-13 00:01:27", "24.69.41.60", "3");
INSERT INTO `wp_rg_form_view` VALUES("22549", "8", "2015-12-13 00:01:27", "24.69.41.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("22550", "6", "2015-12-13 00:10:58", "136.243.17.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22551", "3", "2015-12-13 01:15:02", "66.249.74.102", "50");
INSERT INTO `wp_rg_form_view` VALUES("22552", "8", "2015-12-13 01:15:02", "66.249.74.102", "6");
INSERT INTO `wp_rg_form_view` VALUES("22553", "3", "2015-12-13 02:19:17", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("22554", "8", "2015-12-13 02:19:17", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("22555", "3", "2015-12-13 03:43:38", "66.249.88.225", "8");
INSERT INTO `wp_rg_form_view` VALUES("22556", "8", "2015-12-13 03:43:38", "66.249.88.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("22557", "3", "2015-12-13 04:16:48", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("22558", "8", "2015-12-13 04:16:48", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("22559", "3", "2015-12-13 05:18:32", "66.249.74.104", "57");
INSERT INTO `wp_rg_form_view` VALUES("22560", "8", "2015-12-13 05:18:34", "66.249.74.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("22561", "3", "2015-12-13 06:30:09", "134.249.52.203", "87");
INSERT INTO `wp_rg_form_view` VALUES("22562", "3", "2015-12-13 06:30:09", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22563", "3", "2015-12-13 06:30:09", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22564", "8", "2015-12-13 06:30:10", "134.249.52.203", "9");
INSERT INTO `wp_rg_form_view` VALUES("22565", "8", "2015-12-13 06:30:10", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22566", "8", "2015-12-13 06:30:10", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22567", "3", "2015-12-13 07:00:28", "128.177.10.216", "88");
INSERT INTO `wp_rg_form_view` VALUES("22568", "8", "2015-12-13 07:00:28", "128.177.10.216", "11");
INSERT INTO `wp_rg_form_view` VALUES("22569", "1", "2015-12-13 07:00:30", "128.177.10.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("22570", "8", "2015-12-13 09:00:58", "188.165.15.233", "5");
INSERT INTO `wp_rg_form_view` VALUES("22571", "3", "2015-12-13 09:01:02", "188.165.15.233", "32");
INSERT INTO `wp_rg_form_view` VALUES("22572", "3", "2015-12-13 10:13:22", "66.249.74.102", "9");
INSERT INTO `wp_rg_form_view` VALUES("22573", "8", "2015-12-13 10:13:22", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("22574", "3", "2015-12-13 11:13:36", "68.180.229.161", "33");
INSERT INTO `wp_rg_form_view` VALUES("22575", "8", "2015-12-13 11:13:40", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("22576", "3", "2015-12-13 12:19:52", "216.158.217.156", "181");
INSERT INTO `wp_rg_form_view` VALUES("22577", "8", "2015-12-13 12:19:54", "216.158.217.156", "22");
INSERT INTO `wp_rg_form_view` VALUES("22578", "3", "2015-12-13 14:09:27", "62.210.162.184", "31");
INSERT INTO `wp_rg_form_view` VALUES("22579", "8", "2015-12-13 14:09:28", "62.210.162.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("22580", "3", "2015-12-13 15:17:15", "207.46.13.44", "58");
INSERT INTO `wp_rg_form_view` VALUES("22581", "8", "2015-12-13 15:17:15", "207.46.13.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("22582", "1", "2015-12-13 15:26:10", "151.80.135.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("22583", "3", "2015-12-13 16:10:22", "207.46.13.168", "16");
INSERT INTO `wp_rg_form_view` VALUES("22584", "8", "2015-12-13 16:10:22", "207.46.13.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("22585", "3", "2015-12-13 17:14:26", "192.77.245.76", "49");
INSERT INTO `wp_rg_form_view` VALUES("22586", "8", "2015-12-13 17:14:27", "192.77.245.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("22587", "3", "2015-12-13 18:04:24", "207.46.13.75", "62");
INSERT INTO `wp_rg_form_view` VALUES("22588", "8", "2015-12-13 18:04:24", "207.46.13.75", "8");
INSERT INTO `wp_rg_form_view` VALUES("22589", "3", "2015-12-13 19:20:17", "46.118.153.165", "120");
INSERT INTO `wp_rg_form_view` VALUES("22590", "8", "2015-12-13 19:20:18", "46.118.153.165", "15");
INSERT INTO `wp_rg_form_view` VALUES("22591", "3", "2015-12-13 20:12:02", "134.87.135.214", "32");
INSERT INTO `wp_rg_form_view` VALUES("22592", "8", "2015-12-13 20:12:02", "134.87.135.214", "4");
INSERT INTO `wp_rg_form_view` VALUES("22593", "8", "2015-12-13 21:02:11", "207.46.13.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("22594", "3", "2015-12-13 21:02:13", "207.46.13.75", "24");
INSERT INTO `wp_rg_form_view` VALUES("22595", "3", "2015-12-13 22:07:03", "184.151.118.74", "168");
INSERT INTO `wp_rg_form_view` VALUES("22596", "8", "2015-12-13 22:07:03", "184.151.118.74", "21");
INSERT INTO `wp_rg_form_view` VALUES("22597", "3", "2015-12-13 23:00:35", "62.210.162.184", "40");
INSERT INTO `wp_rg_form_view` VALUES("22598", "8", "2015-12-13 23:00:35", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("22599", "3", "2015-12-14 00:11:10", "202.46.57.207", "70");
INSERT INTO `wp_rg_form_view` VALUES("22600", "8", "2015-12-14 00:11:10", "202.46.57.207", "9");
INSERT INTO `wp_rg_form_view` VALUES("22601", "3", "2015-12-14 01:11:55", "40.77.167.81", "95");
INSERT INTO `wp_rg_form_view` VALUES("22602", "8", "2015-12-14 01:11:56", "40.77.167.81", "11");
INSERT INTO `wp_rg_form_view` VALUES("22603", "3", "2015-12-14 02:15:38", "202.46.50.183", "62");
INSERT INTO `wp_rg_form_view` VALUES("22604", "8", "2015-12-14 02:15:39", "202.46.50.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("22605", "3", "2015-12-14 03:00:58", "70.67.81.98", "8");
INSERT INTO `wp_rg_form_view` VALUES("22606", "8", "2015-12-14 03:00:58", "70.67.81.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("22607", "3", "2015-12-14 04:17:45", "62.210.162.184", "51");
INSERT INTO `wp_rg_form_view` VALUES("22608", "8", "2015-12-14 04:17:46", "62.210.162.184", "6");
INSERT INTO `wp_rg_form_view` VALUES("22609", "3", "2015-12-14 05:04:33", "202.46.50.15", "55");
INSERT INTO `wp_rg_form_view` VALUES("22610", "8", "2015-12-14 05:04:33", "202.46.50.15", "6");
INSERT INTO `wp_rg_form_view` VALUES("22611", "3", "2015-12-14 06:16:45", "68.180.229.161", "91");
INSERT INTO `wp_rg_form_view` VALUES("22612", "8", "2015-12-14 06:16:45", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("22613", "1", "2015-12-14 06:52:35", "120.52.73.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("22614", "3", "2015-12-14 07:23:04", "207.46.13.168", "35");
INSERT INTO `wp_rg_form_view` VALUES("22615", "8", "2015-12-14 07:23:09", "207.46.13.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("22616", "3", "2015-12-14 08:33:18", "178.137.165.96", "67");
INSERT INTO `wp_rg_form_view` VALUES("22617", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22618", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22619", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22620", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22621", "3", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22622", "8", "2015-12-14 08:33:18", "178.137.165.96", "4");
INSERT INTO `wp_rg_form_view` VALUES("22623", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22624", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22625", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22626", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22627", "8", "2015-12-14 08:33:18", "178.137.165.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("22628", "5", "2015-12-14 08:33:26", "207.46.13.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("22629", "3", "2015-12-14 09:00:49", "23.254.240.222", "147");
INSERT INTO `wp_rg_form_view` VALUES("22630", "8", "2015-12-14 09:00:49", "23.254.240.222", "19");
INSERT INTO `wp_rg_form_view` VALUES("22631", "2", "2015-12-14 09:29:00", "45.72.0.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("22632", "3", "2015-12-14 10:08:31", "77.75.77.36", "41");
INSERT INTO `wp_rg_form_view` VALUES("22633", "8", "2015-12-14 10:08:31", "77.75.77.36", "6");
INSERT INTO `wp_rg_form_view` VALUES("22634", "3", "2015-12-14 11:01:20", "188.165.15.233", "128");
INSERT INTO `wp_rg_form_view` VALUES("22635", "8", "2015-12-14 11:01:20", "188.165.15.233", "15");
INSERT INTO `wp_rg_form_view` VALUES("22636", "3", "2015-12-14 12:06:32", "68.180.229.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("22637", "8", "2015-12-14 12:29:11", "207.46.13.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("22638", "3", "2015-12-14 13:11:27", "77.75.77.17", "25");
INSERT INTO `wp_rg_form_view` VALUES("22639", "8", "2015-12-14 13:11:27", "77.75.77.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("22640", "3", "2015-12-14 14:42:11", "188.165.15.233", "16");
INSERT INTO `wp_rg_form_view` VALUES("22641", "8", "2015-12-14 14:42:11", "188.165.15.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("22642", "3", "2015-12-14 15:03:52", "68.180.229.161", "98");
INSERT INTO `wp_rg_form_view` VALUES("22643", "8", "2015-12-14 15:04:39", "134.249.52.203", "12");
INSERT INTO `wp_rg_form_view` VALUES("22644", "3", "2015-12-14 16:00:12", "68.180.229.161", "32");
INSERT INTO `wp_rg_form_view` VALUES("22645", "8", "2015-12-14 16:00:12", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("22646", "3", "2015-12-14 17:06:34", "66.249.66.75", "40");
INSERT INTO `wp_rg_form_view` VALUES("22647", "8", "2015-12-14 17:06:34", "66.249.66.75", "5");
INSERT INTO `wp_rg_form_view` VALUES("22648", "3", "2015-12-14 18:02:03", "104.247.7.127", "237");
INSERT INTO `wp_rg_form_view` VALUES("22649", "8", "2015-12-14 18:02:03", "104.247.7.127", "28");
INSERT INTO `wp_rg_form_view` VALUES("22650", "3", "2015-12-14 19:05:51", "185.53.44.85", "65");
INSERT INTO `wp_rg_form_view` VALUES("22651", "8", "2015-12-14 19:05:51", "185.53.44.85", "8");
INSERT INTO `wp_rg_form_view` VALUES("22652", "3", "2015-12-14 20:13:53", "96.54.167.78", "65");
INSERT INTO `wp_rg_form_view` VALUES("22653", "8", "2015-12-14 20:13:53", "96.54.167.78", "8");
INSERT INTO `wp_rg_form_view` VALUES("22654", "3", "2015-12-14 21:05:55", "185.53.44.158", "83");
INSERT INTO `wp_rg_form_view` VALUES("22655", "8", "2015-12-14 21:05:55", "185.53.44.158", "10");
INSERT INTO `wp_rg_form_view` VALUES("22656", "2", "2015-12-14 21:45:45", "185.53.44.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("22657", "3", "2015-12-14 22:19:53", "185.53.44.99", "61");
INSERT INTO `wp_rg_form_view` VALUES("22658", "8", "2015-12-14 22:19:53", "185.53.44.99", "8");
INSERT INTO `wp_rg_form_view` VALUES("22659", "1", "2015-12-14 22:54:06", "120.198.231.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("22660", "3", "2015-12-14 23:05:48", "96.54.197.214", "41");
INSERT INTO `wp_rg_form_view` VALUES("22661", "8", "2015-12-14 23:05:48", "96.54.197.214", "5");
INSERT INTO `wp_rg_form_view` VALUES("22662", "1", "2015-12-14 23:45:17", "192.126.192.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("22663", "3", "2015-12-15 00:05:24", "66.249.74.102", "76");
INSERT INTO `wp_rg_form_view` VALUES("22664", "8", "2015-12-15 00:05:24", "66.249.74.102", "9");
INSERT INTO `wp_rg_form_view` VALUES("22665", "3", "2015-12-15 01:25:07", "207.6.182.142", "40");
INSERT INTO `wp_rg_form_view` VALUES("22666", "8", "2015-12-15 01:25:08", "207.6.182.142", "5");
INSERT INTO `wp_rg_form_view` VALUES("22667", "3", "2015-12-15 03:07:05", "216.232.153.64", "16");
INSERT INTO `wp_rg_form_view` VALUES("22668", "8", "2015-12-15 03:07:07", "216.232.153.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("22669", "3", "2015-12-15 04:06:50", "220.181.108.187", "40");
INSERT INTO `wp_rg_form_view` VALUES("22670", "8", "2015-12-15 04:06:51", "220.181.108.187", "5");
INSERT INTO `wp_rg_form_view` VALUES("22671", "3", "2015-12-15 05:13:50", "207.46.13.168", "16");
INSERT INTO `wp_rg_form_view` VALUES("22672", "8", "2015-12-15 05:13:52", "207.46.13.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("22673", "3", "2015-12-15 06:00:12", "157.55.39.167", "148");
INSERT INTO `wp_rg_form_view` VALUES("22674", "8", "2015-12-15 06:00:13", "157.55.39.167", "18");
INSERT INTO `wp_rg_form_view` VALUES("22675", "3", "2015-12-15 07:05:57", "66.249.74.106", "100");
INSERT INTO `wp_rg_form_view` VALUES("22676", "8", "2015-12-15 07:05:58", "66.249.74.106", "13");
INSERT INTO `wp_rg_form_view` VALUES("22677", "2", "2015-12-15 07:13:55", "155.94.215.55", "4");
INSERT INTO `wp_rg_form_view` VALUES("22678", "3", "2015-12-15 08:10:07", "69.58.178.56", "226");
INSERT INTO `wp_rg_form_view` VALUES("22679", "8", "2015-12-15 08:10:07", "69.58.178.56", "28");
INSERT INTO `wp_rg_form_view` VALUES("22680", "2", "2015-12-15 08:10:48", "69.58.178.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("22681", "3", "2015-12-15 09:11:47", "23.244.122.145", "26");
INSERT INTO `wp_rg_form_view` VALUES("22682", "8", "2015-12-15 09:11:48", "23.244.122.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("22683", "3", "2015-12-15 10:02:37", "31.44.59.169", "146");
INSERT INTO `wp_rg_form_view` VALUES("22684", "8", "2015-12-15 10:02:45", "31.44.59.169", "18");
INSERT INTO `wp_rg_form_view` VALUES("22685", "1", "2015-12-15 10:25:48", "96.50.3.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("22686", "9", "2015-12-15 10:27:40", "96.50.3.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("22687", "2", "2015-12-15 10:42:34", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("22688", "3", "2015-12-15 11:05:00", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("22689", "8", "2015-12-15 11:05:01", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("22690", "3", "2015-12-15 12:02:58", "66.249.74.104", "73");
INSERT INTO `wp_rg_form_view` VALUES("22691", "8", "2015-12-15 12:02:59", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("22692", "8", "2015-12-15 12:02:59", "40.77.167.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("22693", "2", "2015-12-15 12:23:29", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("22694", "2", "2015-12-15 13:09:51", "155.94.215.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("22695", "3", "2015-12-15 13:09:51", "155.94.215.34", "82");
INSERT INTO `wp_rg_form_view` VALUES("22696", "8", "2015-12-15 13:09:52", "155.94.215.34", "10");
INSERT INTO `wp_rg_form_view` VALUES("22697", "1", "2015-12-15 13:18:10", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22698", "3", "2015-12-15 14:20:57", "40.77.167.31", "160");
INSERT INTO `wp_rg_form_view` VALUES("22699", "8", "2015-12-15 14:20:57", "40.77.167.31", "19");
INSERT INTO `wp_rg_form_view` VALUES("22700", "1", "2015-12-15 14:21:21", "192.126.192.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("22701", "3", "2015-12-15 15:13:53", "66.249.74.106", "2100");
INSERT INTO `wp_rg_form_view` VALUES("22702", "8", "2015-12-15 15:13:57", "66.249.74.106", "267");
INSERT INTO `wp_rg_form_view` VALUES("22703", "1", "2015-12-15 15:30:08", "104.131.223.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("22704", "5", "2015-12-15 15:39:03", "104.131.223.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("22705", "6", "2015-12-15 15:50:59", "104.131.223.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("22706", "3", "2015-12-15 16:00:03", "104.131.223.26", "2389");
INSERT INTO `wp_rg_form_view` VALUES("22707", "8", "2015-12-15 16:00:03", "104.131.223.26", "301");
INSERT INTO `wp_rg_form_view` VALUES("22708", "9", "2015-12-15 16:01:10", "104.131.223.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("22709", "3", "2015-12-15 17:13:54", "202.46.57.24", "29");
INSERT INTO `wp_rg_form_view` VALUES("22710", "8", "2015-12-15 17:13:56", "202.46.57.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("22711", "3", "2015-12-15 18:01:12", "96.127.134.17", "169");
INSERT INTO `wp_rg_form_view` VALUES("22712", "8", "2015-12-15 18:01:12", "96.127.134.17", "20");
INSERT INTO `wp_rg_form_view` VALUES("22713", "3", "2015-12-15 19:10:54", "202.46.48.193", "110");
INSERT INTO `wp_rg_form_view` VALUES("22714", "8", "2015-12-15 19:10:55", "202.46.48.193", "14");
INSERT INTO `wp_rg_form_view` VALUES("22715", "1", "2015-12-15 19:41:34", "5.231.30.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("22716", "3", "2015-12-15 20:01:15", "202.46.56.203", "122");
INSERT INTO `wp_rg_form_view` VALUES("22717", "8", "2015-12-15 20:01:15", "202.46.56.203", "16");
INSERT INTO `wp_rg_form_view` VALUES("22718", "3", "2015-12-15 21:03:13", "154.20.234.165", "128");
INSERT INTO `wp_rg_form_view` VALUES("22719", "8", "2015-12-15 21:03:13", "154.20.234.165", "16");
INSERT INTO `wp_rg_form_view` VALUES("22720", "1", "2015-12-15 21:13:32", "184.71.24.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("22721", "3", "2015-12-15 22:04:40", "23.94.10.4", "95");
INSERT INTO `wp_rg_form_view` VALUES("22722", "8", "2015-12-15 22:04:40", "23.94.10.4", "12");
INSERT INTO `wp_rg_form_view` VALUES("22723", "3", "2015-12-15 23:07:38", "154.20.234.165", "90");
INSERT INTO `wp_rg_form_view` VALUES("22724", "8", "2015-12-15 23:07:39", "154.20.234.165", "11");
INSERT INTO `wp_rg_form_view` VALUES("22725", "3", "2015-12-16 00:02:02", "184.71.11.78", "84");
INSERT INTO `wp_rg_form_view` VALUES("22726", "8", "2015-12-16 00:02:02", "184.71.11.78", "10");
INSERT INTO `wp_rg_form_view` VALUES("22727", "3", "2015-12-16 01:03:20", "202.46.51.181", "125");
INSERT INTO `wp_rg_form_view` VALUES("22728", "8", "2015-12-16 01:03:20", "202.46.51.181", "16");
INSERT INTO `wp_rg_form_view` VALUES("22729", "3", "2015-12-16 02:10:41", "202.46.51.201", "40");
INSERT INTO `wp_rg_form_view` VALUES("22730", "8", "2015-12-16 02:10:42", "202.46.51.201", "5");
INSERT INTO `wp_rg_form_view` VALUES("22731", "3", "2015-12-16 03:00:56", "202.46.58.58", "86");
INSERT INTO `wp_rg_form_view` VALUES("22732", "8", "2015-12-16 03:00:58", "202.46.58.58", "11");
INSERT INTO `wp_rg_form_view` VALUES("22733", "3", "2015-12-16 04:07:59", "202.46.50.156", "99");
INSERT INTO `wp_rg_form_view` VALUES("22734", "8", "2015-12-16 04:07:59", "202.46.50.156", "13");
INSERT INTO `wp_rg_form_view` VALUES("22735", "3", "2015-12-16 05:10:33", "68.180.229.161", "32");
INSERT INTO `wp_rg_form_view` VALUES("22736", "8", "2015-12-16 05:15:09", "202.46.52.208", "4");
INSERT INTO `wp_rg_form_view` VALUES("22737", "3", "2015-12-16 06:05:26", "202.46.52.141", "86");
INSERT INTO `wp_rg_form_view` VALUES("22738", "8", "2015-12-16 06:05:26", "202.46.52.141", "10");
INSERT INTO `wp_rg_form_view` VALUES("22739", "3", "2015-12-16 07:00:33", "66.249.74.106", "51");
INSERT INTO `wp_rg_form_view` VALUES("22740", "8", "2015-12-16 07:00:33", "66.249.74.106", "7");
INSERT INTO `wp_rg_form_view` VALUES("22741", "3", "2015-12-16 08:19:42", "202.46.56.209", "38");
INSERT INTO `wp_rg_form_view` VALUES("22742", "8", "2015-12-16 08:19:43", "202.46.56.209", "5");
INSERT INTO `wp_rg_form_view` VALUES("22743", "3", "2015-12-16 09:17:08", "134.249.52.203", "43");
INSERT INTO `wp_rg_form_view` VALUES("22744", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22745", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22746", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22747", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22748", "3", "2015-12-16 09:17:08", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22749", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22750", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22751", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22752", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22753", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22754", "8", "2015-12-16 09:17:10", "134.249.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("22755", "3", "2015-12-16 10:05:17", "66.249.74.104", "18");
INSERT INTO `wp_rg_form_view` VALUES("22756", "8", "2015-12-16 10:05:18", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("22757", "3", "2015-12-16 11:12:14", "46.118.153.165", "299");
INSERT INTO `wp_rg_form_view` VALUES("22758", "3", "2015-12-16 11:12:14", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22759", "8", "2015-12-16 11:12:16", "46.118.153.165", "35");
INSERT INTO `wp_rg_form_view` VALUES("22760", "8", "2015-12-16 11:12:16", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22761", "8", "2015-12-16 11:12:16", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22762", "2", "2015-12-16 11:44:24", "70.35.205.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("22763", "3", "2015-12-16 12:29:38", "66.249.74.104", "23");
INSERT INTO `wp_rg_form_view` VALUES("22764", "8", "2015-12-16 12:45:52", "157.55.39.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("22765", "3", "2015-12-16 14:08:12", "66.249.74.102", "25");
INSERT INTO `wp_rg_form_view` VALUES("22766", "8", "2015-12-16 14:08:13", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("22767", "3", "2015-12-16 15:25:26", "207.46.13.108", "24");
INSERT INTO `wp_rg_form_view` VALUES("22768", "8", "2015-12-16 15:25:30", "207.46.13.108", "3");
INSERT INTO `wp_rg_form_view` VALUES("22769", "3", "2015-12-16 16:15:07", "40.77.167.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("22770", "8", "2015-12-16 16:15:07", "40.77.167.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("22771", "3", "2015-12-16 17:06:25", "70.66.236.111", "64");
INSERT INTO `wp_rg_form_view` VALUES("22772", "8", "2015-12-16 17:06:26", "70.66.236.111", "8");
INSERT INTO `wp_rg_form_view` VALUES("22773", "3", "2015-12-16 18:37:10", "184.71.24.158", "8");
INSERT INTO `wp_rg_form_view` VALUES("22774", "8", "2015-12-16 18:37:10", "184.71.24.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("22775", "3", "2015-12-16 19:05:14", "198.103.167.20", "202");
INSERT INTO `wp_rg_form_view` VALUES("22776", "8", "2015-12-16 19:05:14", "198.103.167.20", "26");
INSERT INTO `wp_rg_form_view` VALUES("22777", "2", "2015-12-16 19:33:54", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("22778", "3", "2015-12-16 20:22:10", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("22779", "8", "2015-12-16 20:22:10", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("22780", "3", "2015-12-16 21:30:22", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("22781", "8", "2015-12-16 21:30:24", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("22782", "3", "2015-12-16 22:14:45", "184.69.178.254", "49");
INSERT INTO `wp_rg_form_view` VALUES("22783", "8", "2015-12-16 22:14:45", "184.69.178.254", "6");
INSERT INTO `wp_rg_form_view` VALUES("22784", "3", "2015-12-16 23:17:29", "68.180.229.161", "42");
INSERT INTO `wp_rg_form_view` VALUES("22785", "8", "2015-12-16 23:17:38", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("22786", "3", "2015-12-17 00:18:55", "77.75.78.168", "51");
INSERT INTO `wp_rg_form_view` VALUES("22787", "8", "2015-12-17 00:18:56", "77.75.78.168", "7");
INSERT INTO `wp_rg_form_view` VALUES("22788", "3", "2015-12-17 01:05:15", "70.67.235.125", "153");
INSERT INTO `wp_rg_form_view` VALUES("22789", "8", "2015-12-17 01:05:15", "70.67.235.125", "19");
INSERT INTO `wp_rg_form_view` VALUES("22790", "2", "2015-12-17 01:50:57", "195.154.227.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("22791", "3", "2015-12-17 02:06:09", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("22792", "8", "2015-12-17 02:06:10", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("22793", "1", "2015-12-17 03:10:58", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("22794", "3", "2015-12-17 03:10:59", "91.200.12.138", "32");
INSERT INTO `wp_rg_form_view` VALUES("22795", "8", "2015-12-17 03:10:59", "91.200.12.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("22796", "3", "2015-12-17 04:31:55", "46.246.50.213", "17");
INSERT INTO `wp_rg_form_view` VALUES("22797", "8", "2015-12-17 04:31:56", "46.246.50.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("22798", "3", "2015-12-17 05:33:04", "157.55.39.149", "25");
INSERT INTO `wp_rg_form_view` VALUES("22799", "8", "2015-12-17 05:33:09", "157.55.39.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("22800", "3", "2015-12-17 06:31:41", "66.249.66.78", "24");
INSERT INTO `wp_rg_form_view` VALUES("22801", "8", "2015-12-17 06:31:41", "66.249.66.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("22802", "3", "2015-12-17 07:06:42", "65.55.218.63", "48");
INSERT INTO `wp_rg_form_view` VALUES("22803", "8", "2015-12-17 07:06:42", "65.55.218.63", "6");
INSERT INTO `wp_rg_form_view` VALUES("22804", "3", "2015-12-17 08:29:13", "141.8.143.178", "41");
INSERT INTO `wp_rg_form_view` VALUES("22805", "8", "2015-12-17 08:29:15", "141.8.143.178", "5");
INSERT INTO `wp_rg_form_view` VALUES("22806", "2", "2015-12-17 09:26:09", "91.200.12.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("22807", "3", "2015-12-17 09:26:43", "91.200.12.138", "32");
INSERT INTO `wp_rg_form_view` VALUES("22808", "8", "2015-12-17 09:26:49", "91.200.12.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("22809", "3", "2015-12-17 10:36:22", "46.118.153.165", "51");
INSERT INTO `wp_rg_form_view` VALUES("22810", "3", "2015-12-17 10:36:22", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22811", "3", "2015-12-17 10:36:22", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22812", "3", "2015-12-17 10:36:22", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22813", "3", "2015-12-17 10:36:22", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22814", "3", "2015-12-17 10:36:22", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22815", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22816", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22817", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22818", "8", "2015-12-17 10:36:31", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22819", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22820", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22821", "8", "2015-12-17 10:36:31", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("22822", "3", "2015-12-17 11:05:44", "216.244.86.197", "25");
INSERT INTO `wp_rg_form_view` VALUES("22823", "8", "2015-12-17 11:05:45", "216.244.86.197", "3");
INSERT INTO `wp_rg_form_view` VALUES("22824", "3", "2015-12-17 12:13:38", "67.248.28.8", "8");
INSERT INTO `wp_rg_form_view` VALUES("22825", "8", "2015-12-17 12:13:38", "67.248.28.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("22826", "3", "2015-12-17 13:47:33", "207.46.13.150", "13");
INSERT INTO `wp_rg_form_view` VALUES("22827", "8", "2015-12-17 13:47:35", "207.46.13.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("22828", "3", "2015-12-17 14:05:35", "68.180.229.161", "300");
INSERT INTO `wp_rg_form_view` VALUES("22829", "8", "2015-12-17 14:28:00", "68.180.229.161", "37");
INSERT INTO `wp_rg_form_view` VALUES("22830", "2", "2015-12-17 14:40:36", "151.73.223.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("22831", "3", "2015-12-17 15:09:11", "207.46.13.150", "37");
INSERT INTO `wp_rg_form_view` VALUES("22832", "8", "2015-12-17 15:09:11", "207.46.13.150", "5");
INSERT INTO `wp_rg_form_view` VALUES("22833", "3", "2015-12-17 16:14:21", "202.46.58.181", "39");
INSERT INTO `wp_rg_form_view` VALUES("22834", "8", "2015-12-17 16:14:21", "202.46.58.181", "5");
INSERT INTO `wp_rg_form_view` VALUES("22835", "3", "2015-12-17 17:00:17", "202.46.56.67", "324");
INSERT INTO `wp_rg_form_view` VALUES("22836", "8", "2015-12-17 17:00:18", "202.46.56.67", "40");
INSERT INTO `wp_rg_form_view` VALUES("22837", "2", "2015-12-17 17:21:16", "70.35.205.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("22838", "3", "2015-12-17 18:02:40", "184.66.40.144", "95");
INSERT INTO `wp_rg_form_view` VALUES("22839", "8", "2015-12-17 18:02:40", "184.66.40.144", "12");
INSERT INTO `wp_rg_form_view` VALUES("22840", "3", "2015-12-17 19:00:52", "107.168.109.200", "133");
INSERT INTO `wp_rg_form_view` VALUES("22841", "8", "2015-12-17 19:00:52", "107.168.109.200", "18");
INSERT INTO `wp_rg_form_view` VALUES("22842", "3", "2015-12-17 20:02:46", "70.35.205.34", "296");
INSERT INTO `wp_rg_form_view` VALUES("22843", "8", "2015-12-17 20:02:46", "70.35.205.34", "37");
INSERT INTO `wp_rg_form_view` VALUES("22844", "2", "2015-12-17 20:03:27", "70.35.205.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("22845", "3", "2015-12-17 21:03:05", "66.249.74.102", "114");
INSERT INTO `wp_rg_form_view` VALUES("22846", "8", "2015-12-17 21:03:05", "66.249.74.102", "15");
INSERT INTO `wp_rg_form_view` VALUES("22847", "3", "2015-12-17 22:05:22", "184.69.99.230", "241");
INSERT INTO `wp_rg_form_view` VALUES("22848", "8", "2015-12-17 22:05:22", "184.69.99.230", "30");
INSERT INTO `wp_rg_form_view` VALUES("22849", "2", "2015-12-17 22:33:45", "85.93.89.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("22850", "1", "2015-12-17 22:39:43", "108.170.8.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("22851", "3", "2015-12-17 23:01:30", "202.46.49.117", "148");
INSERT INTO `wp_rg_form_view` VALUES("22852", "8", "2015-12-17 23:01:30", "202.46.49.117", "20");
INSERT INTO `wp_rg_form_view` VALUES("22853", "3", "2015-12-18 00:09:33", "5.9.98.130", "3230");
INSERT INTO `wp_rg_form_view` VALUES("22854", "8", "2015-12-18 00:09:33", "5.9.98.130", "413");
INSERT INTO `wp_rg_form_view` VALUES("22855", "2", "2015-12-18 00:09:56", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("22856", "1", "2015-12-18 00:12:30", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("22857", "5", "2015-12-18 00:16:38", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("22858", "9", "2015-12-18 00:18:42", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("22859", "6", "2015-12-18 00:24:02", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("22860", "3", "2015-12-18 01:07:45", "202.46.54.33", "2837");
INSERT INTO `wp_rg_form_view` VALUES("22861", "8", "2015-12-18 01:07:46", "202.46.54.33", "365");
INSERT INTO `wp_rg_form_view` VALUES("22862", "3", "2015-12-18 02:00:01", "5.9.98.130", "4945");
INSERT INTO `wp_rg_form_view` VALUES("22863", "8", "2015-12-18 02:00:01", "5.9.98.130", "638");
INSERT INTO `wp_rg_form_view` VALUES("22864", "3", "2015-12-18 03:01:51", "5.9.98.130", "1987");
INSERT INTO `wp_rg_form_view` VALUES("22865", "8", "2015-12-18 03:01:51", "5.9.98.130", "249");
INSERT INTO `wp_rg_form_view` VALUES("22866", "3", "2015-12-18 04:01:30", "202.46.52.100", "6033");
INSERT INTO `wp_rg_form_view` VALUES("22867", "8", "2015-12-18 04:01:31", "202.46.52.100", "767");
INSERT INTO `wp_rg_form_view` VALUES("22868", "1", "2015-12-18 04:31:15", "172.245.107.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("22869", "3", "2015-12-18 05:00:00", "5.9.98.130", "3314");
INSERT INTO `wp_rg_form_view` VALUES("22870", "8", "2015-12-18 05:00:02", "5.9.98.130", "443");
INSERT INTO `wp_rg_form_view` VALUES("22871", "3", "2015-12-18 06:00:02", "5.9.98.130", "451");
INSERT INTO `wp_rg_form_view` VALUES("22872", "8", "2015-12-18 06:00:02", "5.9.98.130", "56");
INSERT INTO `wp_rg_form_view` VALUES("22873", "2", "2015-12-18 06:11:16", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("22874", "3", "2015-12-18 07:01:20", "46.118.153.165", "3953");
INSERT INTO `wp_rg_form_view` VALUES("22875", "8", "2015-12-18 07:01:21", "46.118.153.165", "441");
INSERT INTO `wp_rg_form_view` VALUES("22876", "3", "2015-12-18 08:00:01", "5.9.98.130", "5715");
INSERT INTO `wp_rg_form_view` VALUES("22877", "8", "2015-12-18 08:00:02", "5.9.98.130", "833");
INSERT INTO `wp_rg_form_view` VALUES("22878", "3", "2015-12-18 09:00:00", "5.9.98.130", "5705");
INSERT INTO `wp_rg_form_view` VALUES("22879", "8", "2015-12-18 09:00:00", "5.9.98.130", "639");
INSERT INTO `wp_rg_form_view` VALUES("22880", "3", "2015-12-18 10:00:00", "5.9.98.130", "4276");
INSERT INTO `wp_rg_form_view` VALUES("22881", "8", "2015-12-18 10:00:03", "5.9.98.130", "623");
INSERT INTO `wp_rg_form_view` VALUES("22882", "3", "2015-12-18 11:07:09", "68.180.229.161", "2088");
INSERT INTO `wp_rg_form_view` VALUES("22883", "8", "2015-12-18 11:07:09", "68.180.229.161", "261");
INSERT INTO `wp_rg_form_view` VALUES("22884", "3", "2015-12-18 12:01:02", "136.243.61.196", "73");
INSERT INTO `wp_rg_form_view` VALUES("22885", "8", "2015-12-18 12:01:03", "136.243.61.196", "9");
INSERT INTO `wp_rg_form_view` VALUES("22886", "3", "2015-12-18 13:08:12", "136.243.61.196", "80");
INSERT INTO `wp_rg_form_view` VALUES("22887", "8", "2015-12-18 13:08:12", "136.243.61.196", "11");
INSERT INTO `wp_rg_form_view` VALUES("22888", "3", "2015-12-18 15:39:38", "93.127.148.216", "78");
INSERT INTO `wp_rg_form_view` VALUES("22889", "8", "2015-12-18 15:39:39", "93.127.148.216", "10");
INSERT INTO `wp_rg_form_view` VALUES("22890", "1", "2015-12-18 15:59:31", "66.85.131.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("22891", "3", "2015-12-18 16:12:14", "157.55.39.183", "8");
INSERT INTO `wp_rg_form_view` VALUES("22892", "8", "2015-12-18 16:12:14", "157.55.39.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("22893", "3", "2015-12-18 17:08:38", "68.180.229.161", "80");
INSERT INTO `wp_rg_form_view` VALUES("22894", "8", "2015-12-18 17:08:38", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("22895", "6", "2015-12-18 17:56:31", "46.246.50.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("22896", "3", "2015-12-18 18:04:44", "157.55.39.183", "40");
INSERT INTO `wp_rg_form_view` VALUES("22897", "8", "2015-12-18 18:04:44", "157.55.39.183", "5");
INSERT INTO `wp_rg_form_view` VALUES("22898", "3", "2015-12-18 19:06:57", "151.80.31.139", "107");
INSERT INTO `wp_rg_form_view` VALUES("22899", "8", "2015-12-18 19:06:57", "151.80.31.139", "13");
INSERT INTO `wp_rg_form_view` VALUES("22900", "3", "2015-12-18 20:09:08", "157.55.39.46", "25");
INSERT INTO `wp_rg_form_view` VALUES("22901", "8", "2015-12-18 20:09:08", "157.55.39.46", "3");
INSERT INTO `wp_rg_form_view` VALUES("22902", "3", "2015-12-18 21:01:04", "66.249.74.106", "66");
INSERT INTO `wp_rg_form_view` VALUES("22903", "8", "2015-12-18 21:01:04", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("22904", "2", "2015-12-18 21:44:17", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("22905", "3", "2015-12-18 22:12:30", "151.80.31.139", "34");
INSERT INTO `wp_rg_form_view` VALUES("22906", "8", "2015-12-18 22:12:30", "151.80.31.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("22907", "5", "2015-12-18 23:03:20", "157.55.39.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("22908", "3", "2015-12-18 23:03:20", "157.55.39.177", "41");
INSERT INTO `wp_rg_form_view` VALUES("22909", "8", "2015-12-18 23:03:20", "157.55.39.177", "5");
INSERT INTO `wp_rg_form_view` VALUES("22910", "2", "2015-12-18 23:09:09", "216.158.217.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("22911", "3", "2015-12-19 00:05:58", "157.55.39.46", "55");
INSERT INTO `wp_rg_form_view` VALUES("22912", "8", "2015-12-19 00:05:58", "157.55.39.46", "7");
INSERT INTO `wp_rg_form_view` VALUES("22913", "3", "2015-12-19 01:07:43", "68.180.229.161", "48");
INSERT INTO `wp_rg_form_view` VALUES("22914", "8", "2015-12-19 01:07:43", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("22915", "3", "2015-12-19 02:07:22", "136.243.61.196", "72");
INSERT INTO `wp_rg_form_view` VALUES("22916", "8", "2015-12-19 02:07:22", "136.243.61.196", "9");
INSERT INTO `wp_rg_form_view` VALUES("22917", "1", "2015-12-19 02:19:27", "158.222.15.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("22918", "3", "2015-12-19 03:29:25", "40.77.167.28", "92");
INSERT INTO `wp_rg_form_view` VALUES("22919", "8", "2015-12-19 03:29:25", "40.77.167.28", "11");
INSERT INTO `wp_rg_form_view` VALUES("22920", "1", "2015-12-19 03:30:51", "94.101.191.244", "4");
INSERT INTO `wp_rg_form_view` VALUES("22921", "1", "2015-12-19 04:06:32", "23.95.129.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("22922", "3", "2015-12-19 04:06:32", "23.95.129.138", "114");
INSERT INTO `wp_rg_form_view` VALUES("22923", "8", "2015-12-19 04:06:32", "23.95.129.138", "14");
INSERT INTO `wp_rg_form_view` VALUES("22924", "3", "2015-12-19 05:08:32", "136.243.61.196", "188");
INSERT INTO `wp_rg_form_view` VALUES("22925", "8", "2015-12-19 05:08:32", "136.243.61.196", "23");
INSERT INTO `wp_rg_form_view` VALUES("22926", "1", "2015-12-19 05:47:50", "216.232.2.83", "4");
INSERT INTO `wp_rg_form_view` VALUES("22927", "2", "2015-12-19 06:01:32", "136.243.61.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("22928", "3", "2015-12-19 06:01:32", "136.243.61.196", "145");
INSERT INTO `wp_rg_form_view` VALUES("22929", "8", "2015-12-19 06:01:32", "136.243.61.196", "20");
INSERT INTO `wp_rg_form_view` VALUES("22930", "1", "2015-12-19 06:02:11", "198.23.240.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("22931", "1", "2015-12-19 07:23:12", "151.80.31.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("22932", "3", "2015-12-19 07:23:13", "151.80.31.139", "33");
INSERT INTO `wp_rg_form_view` VALUES("22933", "8", "2015-12-19 07:23:14", "151.80.31.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("22934", "3", "2015-12-19 08:04:23", "68.180.229.161", "57");
INSERT INTO `wp_rg_form_view` VALUES("22935", "8", "2015-12-19 08:04:23", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("22936", "3", "2015-12-19 09:02:33", "66.249.74.104", "33");
INSERT INTO `wp_rg_form_view` VALUES("22937", "8", "2015-12-19 09:02:33", "66.249.74.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("22938", "1", "2015-12-19 09:16:53", "157.55.39.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("22939", "3", "2015-12-19 10:00:28", "66.249.74.104", "82");
INSERT INTO `wp_rg_form_view` VALUES("22940", "8", "2015-12-19 10:00:28", "66.249.74.104", "11");
INSERT INTO `wp_rg_form_view` VALUES("22941", "1", "2015-12-19 10:57:32", "157.7.242.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("22942", "3", "2015-12-19 11:00:49", "46.118.226.141", "81");
INSERT INTO `wp_rg_form_view` VALUES("22943", "8", "2015-12-19 11:00:49", "46.118.226.141", "10");
INSERT INTO `wp_rg_form_view` VALUES("22944", "1", "2015-12-19 11:16:55", "23.94.60.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("22945", "9", "2015-12-19 11:50:09", "40.77.167.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("22946", "3", "2015-12-19 12:04:29", "157.55.39.140", "24");
INSERT INTO `wp_rg_form_view` VALUES("22947", "8", "2015-12-19 12:04:29", "157.55.39.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("22948", "1", "2015-12-19 13:46:10", "45.40.35.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("22949", "3", "2015-12-19 13:46:10", "45.40.35.131", "41");
INSERT INTO `wp_rg_form_view` VALUES("22950", "8", "2015-12-19 13:46:11", "45.40.35.131", "6");
INSERT INTO `wp_rg_form_view` VALUES("22951", "3", "2015-12-19 14:01:03", "157.55.39.25", "140");
INSERT INTO `wp_rg_form_view` VALUES("22952", "8", "2015-12-19 14:01:03", "157.55.39.25", "16");
INSERT INTO `wp_rg_form_view` VALUES("22953", "3", "2015-12-19 15:14:55", "157.55.39.183", "127");
INSERT INTO `wp_rg_form_view` VALUES("22954", "8", "2015-12-19 15:14:55", "157.55.39.183", "15");
INSERT INTO `wp_rg_form_view` VALUES("22955", "3", "2015-12-19 16:13:05", "157.55.39.183", "170");
INSERT INTO `wp_rg_form_view` VALUES("22956", "8", "2015-12-19 16:13:05", "157.55.39.183", "21");
INSERT INTO `wp_rg_form_view` VALUES("22957", "7", "2015-12-19 16:15:24", "157.55.39.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("22958", "6", "2015-12-19 16:25:15", "202.46.58.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("22959", "2", "2015-12-19 16:51:21", "195.154.58.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("22960", "3", "2015-12-19 17:01:55", "202.46.49.79", "115");
INSERT INTO `wp_rg_form_view` VALUES("22961", "8", "2015-12-19 17:01:55", "202.46.49.79", "15");
INSERT INTO `wp_rg_form_view` VALUES("22962", "3", "2015-12-19 18:03:06", "202.46.55.152", "110");
INSERT INTO `wp_rg_form_view` VALUES("22963", "8", "2015-12-19 18:03:06", "202.46.55.152", "14");
INSERT INTO `wp_rg_form_view` VALUES("22964", "3", "2015-12-19 19:04:16", "202.46.49.110", "240");
INSERT INTO `wp_rg_form_view` VALUES("22965", "8", "2015-12-19 19:04:16", "202.46.49.110", "29");
INSERT INTO `wp_rg_form_view` VALUES("22966", "1", "2015-12-19 19:55:10", "23.94.66.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("22967", "3", "2015-12-19 20:05:26", "202.46.52.42", "80");
INSERT INTO `wp_rg_form_view` VALUES("22968", "8", "2015-12-19 20:05:26", "202.46.52.42", "10");
INSERT INTO `wp_rg_form_view` VALUES("22969", "3", "2015-12-19 21:06:36", "202.46.49.111", "77");
INSERT INTO `wp_rg_form_view` VALUES("22970", "8", "2015-12-19 21:06:36", "202.46.49.111", "10");
INSERT INTO `wp_rg_form_view` VALUES("22971", "3", "2015-12-19 22:01:42", "223.205.247.34", "75");
INSERT INTO `wp_rg_form_view` VALUES("22972", "8", "2015-12-19 22:01:42", "223.205.247.34", "11");
INSERT INTO `wp_rg_form_view` VALUES("22973", "3", "2015-12-19 23:08:57", "202.46.52.17", "83");
INSERT INTO `wp_rg_form_view` VALUES("22974", "8", "2015-12-19 23:08:57", "202.46.52.17", "11");
INSERT INTO `wp_rg_form_view` VALUES("22975", "3", "2015-12-20 00:01:44", "207.46.13.18", "78");
INSERT INTO `wp_rg_form_view` VALUES("22976", "8", "2015-12-20 00:01:44", "207.46.13.18", "9");
INSERT INTO `wp_rg_form_view` VALUES("22977", "3", "2015-12-20 01:00:11", "202.46.55.156", "69");
INSERT INTO `wp_rg_form_view` VALUES("22978", "8", "2015-12-20 01:00:11", "202.46.55.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("22979", "3", "2015-12-20 02:20:20", "202.46.48.192", "42");
INSERT INTO `wp_rg_form_view` VALUES("22980", "8", "2015-12-20 02:20:20", "202.46.48.192", "5");
INSERT INTO `wp_rg_form_view` VALUES("22981", "9", "2015-12-20 02:48:38", "157.55.39.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("22982", "3", "2015-12-20 03:00:24", "202.46.53.116", "131");
INSERT INTO `wp_rg_form_view` VALUES("22983", "8", "2015-12-20 03:00:25", "202.46.53.116", "16");
INSERT INTO `wp_rg_form_view` VALUES("22984", "3", "2015-12-20 04:02:23", "157.55.39.183", "85");
INSERT INTO `wp_rg_form_view` VALUES("22985", "8", "2015-12-20 04:02:23", "157.55.39.183", "11");
INSERT INTO `wp_rg_form_view` VALUES("22986", "9", "2015-12-20 04:38:08", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("22987", "3", "2015-12-20 05:00:38", "202.46.48.26", "78");
INSERT INTO `wp_rg_form_view` VALUES("22988", "8", "2015-12-20 05:00:38", "202.46.48.26", "10");
INSERT INTO `wp_rg_form_view` VALUES("22989", "2", "2015-12-20 05:02:14", "157.55.39.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("22990", "3", "2015-12-20 06:03:08", "151.80.31.139", "168");
INSERT INTO `wp_rg_form_view` VALUES("22991", "8", "2015-12-20 06:03:08", "151.80.31.139", "21");
INSERT INTO `wp_rg_form_view` VALUES("22992", "3", "2015-12-20 07:00:32", "157.55.39.140", "97");
INSERT INTO `wp_rg_form_view` VALUES("22993", "8", "2015-12-20 07:00:32", "157.55.39.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("22994", "6", "2015-12-20 08:05:28", "207.46.13.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("22995", "3", "2015-12-20 08:05:28", "207.46.13.18", "78");
INSERT INTO `wp_rg_form_view` VALUES("22996", "8", "2015-12-20 08:05:28", "207.46.13.18", "10");
INSERT INTO `wp_rg_form_view` VALUES("22997", "3", "2015-12-20 09:01:05", "202.46.49.79", "78");
INSERT INTO `wp_rg_form_view` VALUES("22998", "8", "2015-12-20 09:01:05", "202.46.49.79", "11");
INSERT INTO `wp_rg_form_view` VALUES("22999", "3", "2015-12-20 10:07:52", "202.46.55.12", "84");
INSERT INTO `wp_rg_form_view` VALUES("23000", "8", "2015-12-20 10:07:52", "202.46.55.12", "11");
INSERT INTO `wp_rg_form_view` VALUES("23001", "3", "2015-12-20 11:01:18", "202.46.53.156", "94");
INSERT INTO `wp_rg_form_view` VALUES("23002", "8", "2015-12-20 11:01:18", "202.46.53.156", "13");
INSERT INTO `wp_rg_form_view` VALUES("23003", "3", "2015-12-20 12:03:15", "68.180.229.161", "118");
INSERT INTO `wp_rg_form_view` VALUES("23004", "8", "2015-12-20 12:03:15", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("23005", "3", "2015-12-20 13:01:31", "202.46.57.164", "98");
INSERT INTO `wp_rg_form_view` VALUES("23006", "8", "2015-12-20 13:01:31", "202.46.57.164", "13");
INSERT INTO `wp_rg_form_view` VALUES("23007", "3", "2015-12-20 14:08:19", "202.46.54.195", "109");
INSERT INTO `wp_rg_form_view` VALUES("23008", "8", "2015-12-20 14:08:19", "202.46.54.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("23009", "1", "2015-12-20 14:45:46", "67.17.36.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("23010", "3", "2015-12-20 15:01:46", "202.46.53.13", "157");
INSERT INTO `wp_rg_form_view` VALUES("23011", "8", "2015-12-20 15:01:47", "202.46.53.13", "20");
INSERT INTO `wp_rg_form_view` VALUES("23012", "1", "2015-12-20 15:18:36", "23.95.191.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("23013", "3", "2015-12-20 16:08:32", "202.46.53.14", "22");
INSERT INTO `wp_rg_form_view` VALUES("23014", "8", "2015-12-20 16:08:32", "202.46.53.14", "3");
INSERT INTO `wp_rg_form_view` VALUES("23015", "3", "2015-12-20 17:09:01", "134.249.52.203", "32");
INSERT INTO `wp_rg_form_view` VALUES("23016", "8", "2015-12-20 17:09:01", "134.249.52.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("23017", "9", "2015-12-20 18:17:07", "157.55.39.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("23018", "3", "2015-12-20 18:17:07", "157.55.39.183", "8");
INSERT INTO `wp_rg_form_view` VALUES("23019", "8", "2015-12-20 18:17:07", "157.55.39.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("23020", "3", "2015-12-20 20:22:15", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("23021", "8", "2015-12-20 20:22:15", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("23022", "3", "2015-12-20 21:16:10", "68.180.229.161", "155");
INSERT INTO `wp_rg_form_view` VALUES("23023", "8", "2015-12-20 21:16:10", "68.180.229.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("23024", "3", "2015-12-20 22:15:57", "157.55.39.140", "16");
INSERT INTO `wp_rg_form_view` VALUES("23025", "8", "2015-12-20 22:15:57", "157.55.39.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("23026", "1", "2015-12-20 22:49:13", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("23027", "3", "2015-12-20 23:04:50", "68.180.229.161", "135");
INSERT INTO `wp_rg_form_view` VALUES("23028", "8", "2015-12-20 23:04:50", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("23029", "1", "2015-12-20 23:18:19", "66.249.74.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("23030", "3", "2015-12-21 00:06:45", "178.137.160.2", "73");
INSERT INTO `wp_rg_form_view` VALUES("23031", "8", "2015-12-21 00:06:45", "178.137.160.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("23032", "1", "2015-12-21 00:08:40", "5.175.219.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("23033", "3", "2015-12-21 01:47:35", "151.80.31.139", "8");
INSERT INTO `wp_rg_form_view` VALUES("23034", "8", "2015-12-21 01:47:35", "151.80.31.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("23035", "3", "2015-12-21 02:05:23", "151.80.31.139", "32");
INSERT INTO `wp_rg_form_view` VALUES("23036", "8", "2015-12-21 02:05:24", "151.80.31.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("23037", "9", "2015-12-21 02:05:24", "151.80.31.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("23038", "3", "2015-12-21 03:18:50", "96.54.200.228", "128");
INSERT INTO `wp_rg_form_view` VALUES("23039", "8", "2015-12-21 03:18:50", "96.54.200.228", "16");
INSERT INTO `wp_rg_form_view` VALUES("23040", "3", "2015-12-21 04:04:34", "104.197.56.196", "71");
INSERT INTO `wp_rg_form_view` VALUES("23041", "8", "2015-12-21 04:04:34", "104.197.56.196", "9");
INSERT INTO `wp_rg_form_view` VALUES("23042", "3", "2015-12-21 05:01:42", "202.46.56.68", "90");
INSERT INTO `wp_rg_form_view` VALUES("23043", "8", "2015-12-21 05:01:42", "202.46.56.68", "11");
INSERT INTO `wp_rg_form_view` VALUES("23044", "1", "2015-12-21 05:25:04", "23.95.94.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("23045", "3", "2015-12-21 06:01:46", "202.46.58.190", "113");
INSERT INTO `wp_rg_form_view` VALUES("23046", "8", "2015-12-21 06:01:46", "202.46.58.190", "16");
INSERT INTO `wp_rg_form_view` VALUES("23047", "1", "2015-12-21 06:35:59", "107.172.88.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("23048", "3", "2015-12-21 07:00:48", "66.249.74.106", "91");
INSERT INTO `wp_rg_form_view` VALUES("23049", "8", "2015-12-21 07:00:48", "66.249.74.106", "12");
INSERT INTO `wp_rg_form_view` VALUES("23050", "3", "2015-12-21 08:01:52", "202.46.58.20", "88");
INSERT INTO `wp_rg_form_view` VALUES("23051", "8", "2015-12-21 08:01:52", "202.46.58.20", "11");
INSERT INTO `wp_rg_form_view` VALUES("23052", "2", "2015-12-21 08:18:14", "195.154.58.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("23053", "3", "2015-12-21 09:01:55", "202.46.55.132", "101");
INSERT INTO `wp_rg_form_view` VALUES("23054", "8", "2015-12-21 09:01:56", "202.46.55.132", "13");
INSERT INTO `wp_rg_form_view` VALUES("23055", "3", "2015-12-21 10:01:58", "202.46.48.99", "32");
INSERT INTO `wp_rg_form_view` VALUES("23056", "8", "2015-12-21 10:01:58", "202.46.48.99", "4");
INSERT INTO `wp_rg_form_view` VALUES("23057", "3", "2015-12-21 11:02:00", "202.46.54.93", "75");
INSERT INTO `wp_rg_form_view` VALUES("23058", "8", "2015-12-21 11:02:00", "202.46.54.93", "10");
INSERT INTO `wp_rg_form_view` VALUES("23059", "3", "2015-12-21 12:02:04", "202.46.51.22", "85");
INSERT INTO `wp_rg_form_view` VALUES("23060", "8", "2015-12-21 12:02:04", "202.46.51.22", "11");
INSERT INTO `wp_rg_form_view` VALUES("23061", "9", "2015-12-21 12:37:13", "151.80.31.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("23062", "8", "2015-12-21 13:02:06", "202.46.57.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("23063", "3", "2015-12-21 13:02:07", "202.46.57.161", "101");
INSERT INTO `wp_rg_form_view` VALUES("23064", "3", "2015-12-21 14:02:10", "202.46.48.29", "56");
INSERT INTO `wp_rg_form_view` VALUES("23065", "8", "2015-12-21 14:02:10", "202.46.48.29", "7");
INSERT INTO `wp_rg_form_view` VALUES("23066", "3", "2015-12-21 15:13:29", "66.249.74.106", "120");
INSERT INTO `wp_rg_form_view` VALUES("23067", "8", "2015-12-21 15:13:29", "66.249.74.106", "15");
INSERT INTO `wp_rg_form_view` VALUES("23068", "2", "2015-12-21 15:43:05", "216.158.217.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("23069", "3", "2015-12-21 16:02:16", "202.46.52.64", "176");
INSERT INTO `wp_rg_form_view` VALUES("23070", "8", "2015-12-21 16:02:17", "202.46.52.64", "23");
INSERT INTO `wp_rg_form_view` VALUES("23071", "3", "2015-12-21 17:07:53", "24.244.23.131", "74");
INSERT INTO `wp_rg_form_view` VALUES("23072", "8", "2015-12-21 17:07:53", "24.244.23.131", "10");
INSERT INTO `wp_rg_form_view` VALUES("23073", "3", "2015-12-21 18:05:06", "66.102.9.98", "57");
INSERT INTO `wp_rg_form_view` VALUES("23074", "8", "2015-12-21 18:05:06", "66.102.9.98", "7");
INSERT INTO `wp_rg_form_view` VALUES("23075", "1", "2015-12-21 19:02:12", "104.223.42.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("23076", "3", "2015-12-21 19:02:12", "104.223.42.246", "42");
INSERT INTO `wp_rg_form_view` VALUES("23077", "8", "2015-12-21 19:02:12", "104.223.42.246", "5");
INSERT INTO `wp_rg_form_view` VALUES("23078", "3", "2015-12-21 20:11:22", "151.80.31.139", "48");
INSERT INTO `wp_rg_form_view` VALUES("23079", "8", "2015-12-21 20:11:22", "151.80.31.139", "6");
INSERT INTO `wp_rg_form_view` VALUES("23080", "3", "2015-12-21 21:08:33", "66.249.74.104", "133");
INSERT INTO `wp_rg_form_view` VALUES("23081", "8", "2015-12-21 21:08:33", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("23082", "3", "2015-12-21 22:12:52", "207.46.13.76", "49");
INSERT INTO `wp_rg_form_view` VALUES("23083", "8", "2015-12-21 22:12:52", "207.46.13.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("23084", "3", "2015-12-21 23:49:48", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("23085", "8", "2015-12-21 23:49:48", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("23086", "3", "2015-12-22 00:24:11", "31.220.44.71", "83");
INSERT INTO `wp_rg_form_view` VALUES("23087", "8", "2015-12-22 00:24:11", "31.220.44.71", "10");
INSERT INTO `wp_rg_form_view` VALUES("23088", "3", "2015-12-22 01:06:38", "134.249.52.203", "24");
INSERT INTO `wp_rg_form_view` VALUES("23089", "8", "2015-12-22 01:06:38", "134.249.52.203", "3");
INSERT INTO `wp_rg_form_view` VALUES("23090", "3", "2015-12-22 02:11:22", "66.249.74.106", "56");
INSERT INTO `wp_rg_form_view` VALUES("23091", "8", "2015-12-22 02:11:22", "66.249.74.106", "7");
INSERT INTO `wp_rg_form_view` VALUES("23092", "3", "2015-12-22 03:54:32", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("23093", "8", "2015-12-22 03:54:32", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("23094", "3", "2015-12-22 04:17:42", "66.249.74.102", "66");
INSERT INTO `wp_rg_form_view` VALUES("23095", "8", "2015-12-22 04:17:43", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("23096", "3", "2015-12-22 05:02:46", "208.90.57.196", "40");
INSERT INTO `wp_rg_form_view` VALUES("23097", "8", "2015-12-22 05:02:46", "208.90.57.196", "5");
INSERT INTO `wp_rg_form_view` VALUES("23098", "3", "2015-12-22 06:06:46", "46.118.153.165", "40");
INSERT INTO `wp_rg_form_view` VALUES("23099", "8", "2015-12-22 06:06:46", "46.118.153.165", "5");
INSERT INTO `wp_rg_form_view` VALUES("23100", "6", "2015-12-22 06:17:16", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("23101", "3", "2015-12-22 07:05:49", "66.249.74.104", "50");
INSERT INTO `wp_rg_form_view` VALUES("23102", "8", "2015-12-22 07:05:49", "66.249.74.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("23103", "3", "2015-12-22 08:05:01", "68.180.229.161", "73");
INSERT INTO `wp_rg_form_view` VALUES("23104", "8", "2015-12-22 08:05:01", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("23105", "3", "2015-12-22 09:15:46", "66.249.74.102", "43");
INSERT INTO `wp_rg_form_view` VALUES("23106", "8", "2015-12-22 09:15:47", "66.249.74.102", "5");
INSERT INTO `wp_rg_form_view` VALUES("23107", "3", "2015-12-22 10:18:37", "155.94.138.218", "128");
INSERT INTO `wp_rg_form_view` VALUES("23108", "8", "2015-12-22 10:18:37", "155.94.138.218", "16");
INSERT INTO `wp_rg_form_view` VALUES("23109", "1", "2015-12-22 10:54:22", "192.230.52.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("23110", "3", "2015-12-22 11:22:29", "202.46.57.121", "21");
INSERT INTO `wp_rg_form_view` VALUES("23111", "8", "2015-12-22 11:22:29", "202.46.57.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("23112", "3", "2015-12-22 12:05:49", "195.154.194.111", "86");
INSERT INTO `wp_rg_form_view` VALUES("23113", "8", "2015-12-22 12:05:50", "195.154.194.111", "11");
INSERT INTO `wp_rg_form_view` VALUES("23114", "3", "2015-12-22 13:09:21", "202.46.51.104", "30");
INSERT INTO `wp_rg_form_view` VALUES("23115", "8", "2015-12-22 13:09:22", "202.46.51.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("23116", "3", "2015-12-22 14:00:57", "178.137.160.2", "115");
INSERT INTO `wp_rg_form_view` VALUES("23117", "3", "2015-12-22 14:00:57", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23118", "8", "2015-12-22 14:00:57", "178.137.160.2", "14");
INSERT INTO `wp_rg_form_view` VALUES("23119", "8", "2015-12-22 14:00:57", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23120", "1", "2015-12-22 14:07:18", "45.57.163.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("23121", "3", "2015-12-22 15:22:56", "202.46.55.69", "54");
INSERT INTO `wp_rg_form_view` VALUES("23122", "8", "2015-12-22 15:22:57", "202.46.55.69", "7");
INSERT INTO `wp_rg_form_view` VALUES("23123", "3", "2015-12-22 16:09:02", "46.118.153.165", "112");
INSERT INTO `wp_rg_form_view` VALUES("23124", "3", "2015-12-22 16:09:02", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("23125", "8", "2015-12-22 16:09:02", "46.118.153.165", "14");
INSERT INTO `wp_rg_form_view` VALUES("23126", "1", "2015-12-22 16:49:57", "216.45.54.109", "3");
INSERT INTO `wp_rg_form_view` VALUES("23127", "3", "2015-12-22 17:09:11", "66.249.74.104", "32");
INSERT INTO `wp_rg_form_view` VALUES("23128", "8", "2015-12-22 17:09:11", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("23129", "3", "2015-12-22 18:03:15", "202.46.50.124", "100");
INSERT INTO `wp_rg_form_view` VALUES("23130", "8", "2015-12-22 18:03:15", "202.46.50.124", "13");
INSERT INTO `wp_rg_form_view` VALUES("23131", "3", "2015-12-22 19:16:47", "66.249.74.106", "55");
INSERT INTO `wp_rg_form_view` VALUES("23132", "8", "2015-12-22 19:16:48", "66.249.74.106", "7");
INSERT INTO `wp_rg_form_view` VALUES("23133", "3", "2015-12-22 20:06:31", "66.249.74.106", "279");
INSERT INTO `wp_rg_form_view` VALUES("23134", "8", "2015-12-22 20:06:31", "66.249.74.106", "36");
INSERT INTO `wp_rg_form_view` VALUES("23135", "2", "2015-12-22 20:34:36", "84.126.248.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("23136", "3", "2015-12-22 21:05:22", "68.180.229.161", "39");
INSERT INTO `wp_rg_form_view` VALUES("23137", "8", "2015-12-22 21:05:22", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("23138", "3", "2015-12-22 22:03:41", "202.46.48.92", "25");
INSERT INTO `wp_rg_form_view` VALUES("23139", "8", "2015-12-22 22:03:41", "202.46.48.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("23140", "3", "2015-12-22 23:12:49", "151.80.31.139", "806");
INSERT INTO `wp_rg_form_view` VALUES("23141", "8", "2015-12-22 23:12:49", "151.80.31.139", "103");
INSERT INTO `wp_rg_form_view` VALUES("23142", "1", "2015-12-22 23:54:14", "104.131.215.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("23143", "8", "2015-12-23 00:00:00", "104.131.215.64", "396");
INSERT INTO `wp_rg_form_view` VALUES("23144", "3", "2015-12-23 00:00:00", "104.131.215.64", "3132");
INSERT INTO `wp_rg_form_view` VALUES("23145", "5", "2015-12-23 00:03:19", "104.131.215.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("23146", "6", "2015-12-23 00:14:54", "104.131.215.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("23147", "9", "2015-12-23 00:24:55", "104.131.215.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("23148", "3", "2015-12-23 01:00:00", "104.131.215.64", "573");
INSERT INTO `wp_rg_form_view` VALUES("23149", "8", "2015-12-23 01:00:04", "104.131.215.64", "72");
INSERT INTO `wp_rg_form_view` VALUES("23150", "3", "2015-12-23 02:04:08", "202.46.55.18", "1108");
INSERT INTO `wp_rg_form_view` VALUES("23151", "8", "2015-12-23 02:04:08", "202.46.55.18", "148");
INSERT INTO `wp_rg_form_view` VALUES("23152", "2", "2015-12-23 02:10:54", "81.209.177.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("23153", "1", "2015-12-23 02:11:24", "81.209.177.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("23154", "5", "2015-12-23 02:31:01", "81.209.177.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("23155", "9", "2015-12-23 02:32:14", "81.209.177.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("23156", "6", "2015-12-23 02:54:50", "81.209.177.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("23157", "3", "2015-12-23 03:12:33", "151.80.31.139", "82");
INSERT INTO `wp_rg_form_view` VALUES("23158", "8", "2015-12-23 03:12:33", "151.80.31.139", "10");
INSERT INTO `wp_rg_form_view` VALUES("23159", "3", "2015-12-23 04:08:04", "68.180.229.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("23160", "8", "2015-12-23 04:08:04", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("23161", "3", "2015-12-23 05:11:08", "202.46.51.119", "47");
INSERT INTO `wp_rg_form_view` VALUES("23162", "8", "2015-12-23 05:11:09", "202.46.51.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("23163", "3", "2015-12-23 06:04:34", "202.46.48.16", "220");
INSERT INTO `wp_rg_form_view` VALUES("23164", "8", "2015-12-23 06:04:34", "202.46.48.16", "28");
INSERT INTO `wp_rg_form_view` VALUES("23165", "2", "2015-12-23 06:56:06", "104.236.16.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("23166", "3", "2015-12-23 07:17:56", "40.77.167.44", "113");
INSERT INTO `wp_rg_form_view` VALUES("23167", "8", "2015-12-23 07:17:57", "40.77.167.44", "14");
INSERT INTO `wp_rg_form_view` VALUES("23168", "3", "2015-12-23 08:17:58", "202.46.48.140", "63");
INSERT INTO `wp_rg_form_view` VALUES("23169", "8", "2015-12-23 08:17:58", "202.46.48.140", "9");
INSERT INTO `wp_rg_form_view` VALUES("23170", "3", "2015-12-23 09:06:06", "157.55.39.234", "61");
INSERT INTO `wp_rg_form_view` VALUES("23171", "8", "2015-12-23 09:06:06", "157.55.39.234", "7");
INSERT INTO `wp_rg_form_view` VALUES("23172", "3", "2015-12-23 10:04:49", "202.46.55.68", "31");
INSERT INTO `wp_rg_form_view` VALUES("23173", "8", "2015-12-23 10:04:50", "202.46.55.68", "4");
INSERT INTO `wp_rg_form_view` VALUES("23174", "3", "2015-12-23 11:24:58", "202.46.57.202", "48");
INSERT INTO `wp_rg_form_view` VALUES("23175", "8", "2015-12-23 11:24:58", "202.46.57.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("23176", "3", "2015-12-23 12:00:27", "151.80.31.139", "41");
INSERT INTO `wp_rg_form_view` VALUES("23177", "8", "2015-12-23 12:00:27", "151.80.31.139", "5");
INSERT INTO `wp_rg_form_view` VALUES("23178", "3", "2015-12-23 13:02:41", "151.80.31.139", "72");
INSERT INTO `wp_rg_form_view` VALUES("23179", "8", "2015-12-23 13:02:41", "151.80.31.139", "9");
INSERT INTO `wp_rg_form_view` VALUES("23180", "3", "2015-12-23 14:02:22", "202.46.50.15", "109");
INSERT INTO `wp_rg_form_view` VALUES("23181", "8", "2015-12-23 14:02:22", "202.46.50.15", "13");
INSERT INTO `wp_rg_form_view` VALUES("23182", "9", "2015-12-23 14:46:35", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23183", "3", "2015-12-23 15:00:44", "157.55.39.251", "144");
INSERT INTO `wp_rg_form_view` VALUES("23184", "8", "2015-12-23 15:00:44", "157.55.39.251", "19");
INSERT INTO `wp_rg_form_view` VALUES("23185", "3", "2015-12-23 16:01:23", "202.46.52.107", "144");
INSERT INTO `wp_rg_form_view` VALUES("23186", "8", "2015-12-23 16:01:23", "202.46.52.107", "19");
INSERT INTO `wp_rg_form_view` VALUES("23187", "2", "2015-12-23 16:46:50", "151.80.31.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("23188", "3", "2015-12-23 17:04:51", "202.46.48.11", "119");
INSERT INTO `wp_rg_form_view` VALUES("23189", "8", "2015-12-23 17:04:51", "202.46.48.11", "16");
INSERT INTO `wp_rg_form_view` VALUES("23190", "3", "2015-12-23 18:00:23", "202.46.51.84", "137");
INSERT INTO `wp_rg_form_view` VALUES("23191", "8", "2015-12-23 18:00:23", "202.46.51.84", "19");
INSERT INTO `wp_rg_form_view` VALUES("23192", "2", "2015-12-23 18:04:54", "40.77.167.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("23193", "1", "2015-12-23 18:08:20", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("23194", "7", "2015-12-23 18:48:00", "202.46.50.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("23195", "3", "2015-12-23 19:03:51", "202.46.49.193", "145");
INSERT INTO `wp_rg_form_view` VALUES("23196", "8", "2015-12-23 19:03:51", "202.46.49.193", "20");
INSERT INTO `wp_rg_form_view` VALUES("23197", "3", "2015-12-23 20:07:19", "202.46.55.82", "98");
INSERT INTO `wp_rg_form_view` VALUES("23198", "8", "2015-12-23 20:07:19", "202.46.55.82", "13");
INSERT INTO `wp_rg_form_view` VALUES("23199", "3", "2015-12-23 21:02:51", "202.46.56.33", "98");
INSERT INTO `wp_rg_form_view` VALUES("23200", "8", "2015-12-23 21:02:52", "202.46.56.33", "12");
INSERT INTO `wp_rg_form_view` VALUES("23201", "3", "2015-12-23 22:06:19", "202.46.53.126", "222");
INSERT INTO `wp_rg_form_view` VALUES("23202", "8", "2015-12-23 22:06:19", "202.46.53.126", "28");
INSERT INTO `wp_rg_form_view` VALUES("23203", "1", "2015-12-23 22:11:44", "45.33.159.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("23204", "3", "2015-12-23 23:01:52", "202.46.48.80", "138");
INSERT INTO `wp_rg_form_view` VALUES("23205", "8", "2015-12-23 23:01:52", "202.46.48.80", "17");
INSERT INTO `wp_rg_form_view` VALUES("23206", "3", "2015-12-24 00:05:20", "202.46.54.100", "168");
INSERT INTO `wp_rg_form_view` VALUES("23207", "8", "2015-12-24 00:05:20", "202.46.54.100", "20");
INSERT INTO `wp_rg_form_view` VALUES("23208", "1", "2015-12-24 00:45:33", "23.95.232.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("23209", "3", "2015-12-24 01:00:52", "202.46.51.22", "107");
INSERT INTO `wp_rg_form_view` VALUES("23210", "8", "2015-12-24 01:00:52", "202.46.51.22", "15");
INSERT INTO `wp_rg_form_view` VALUES("23211", "3", "2015-12-24 02:04:20", "202.46.51.20", "94");
INSERT INTO `wp_rg_form_view` VALUES("23212", "8", "2015-12-24 02:04:20", "202.46.51.20", "12");
INSERT INTO `wp_rg_form_view` VALUES("23213", "1", "2015-12-24 02:51:58", "192.151.145.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("23214", "3", "2015-12-24 03:00:54", "202.46.52.210", "290");
INSERT INTO `wp_rg_form_view` VALUES("23215", "8", "2015-12-24 03:00:54", "202.46.52.210", "36");
INSERT INTO `wp_rg_form_view` VALUES("23216", "2", "2015-12-24 03:16:09", "83.61.168.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("23217", "3", "2015-12-24 04:00:22", "202.46.49.116", "71");
INSERT INTO `wp_rg_form_view` VALUES("23218", "8", "2015-12-24 04:00:23", "202.46.49.116", "8");
INSERT INTO `wp_rg_form_view` VALUES("23219", "3", "2015-12-24 05:38:27", "157.55.39.115", "8");
INSERT INTO `wp_rg_form_view` VALUES("23220", "8", "2015-12-24 05:38:27", "157.55.39.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("23221", "3", "2015-12-24 06:32:01", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("23222", "8", "2015-12-24 06:32:01", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("23223", "3", "2015-12-24 08:57:46", "157.55.39.115", "8");
INSERT INTO `wp_rg_form_view` VALUES("23224", "8", "2015-12-24 08:57:46", "157.55.39.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("23225", "3", "2015-12-24 09:23:04", "68.180.229.161", "32");
INSERT INTO `wp_rg_form_view` VALUES("23226", "8", "2015-12-24 09:23:04", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("23227", "3", "2015-12-24 10:09:21", "68.180.229.161", "89");
INSERT INTO `wp_rg_form_view` VALUES("23228", "8", "2015-12-24 10:09:21", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("23229", "3", "2015-12-24 11:09:29", "157.55.39.251", "24");
INSERT INTO `wp_rg_form_view` VALUES("23230", "8", "2015-12-24 11:09:30", "157.55.39.251", "3");
INSERT INTO `wp_rg_form_view` VALUES("23231", "3", "2015-12-24 12:06:39", "157.55.39.115", "24");
INSERT INTO `wp_rg_form_view` VALUES("23232", "8", "2015-12-24 12:06:40", "157.55.39.115", "3");
INSERT INTO `wp_rg_form_view` VALUES("23233", "3", "2015-12-24 13:14:06", "40.77.167.24", "32");
INSERT INTO `wp_rg_form_view` VALUES("23234", "8", "2015-12-24 13:14:06", "40.77.167.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("23235", "3", "2015-12-24 14:10:32", "40.77.167.24", "41");
INSERT INTO `wp_rg_form_view` VALUES("23236", "8", "2015-12-24 14:10:33", "40.77.167.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("23237", "3", "2015-12-24 15:01:50", "157.55.39.251", "78");
INSERT INTO `wp_rg_form_view` VALUES("23238", "8", "2015-12-24 15:01:50", "157.55.39.251", "11");
INSERT INTO `wp_rg_form_view` VALUES("23239", "3", "2015-12-24 16:23:53", "202.46.54.136", "37");
INSERT INTO `wp_rg_form_view` VALUES("23240", "8", "2015-12-24 16:23:53", "202.46.54.136", "4");
INSERT INTO `wp_rg_form_view` VALUES("23241", "3", "2015-12-24 17:26:25", "202.46.56.70", "72");
INSERT INTO `wp_rg_form_view` VALUES("23242", "8", "2015-12-24 17:26:25", "202.46.56.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("23243", "6", "2015-12-24 17:39:01", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("23244", "3", "2015-12-24 18:06:04", "202.46.49.95", "57");
INSERT INTO `wp_rg_form_view` VALUES("23245", "8", "2015-12-24 18:06:04", "202.46.49.95", "7");
INSERT INTO `wp_rg_form_view` VALUES("23246", "3", "2015-12-24 19:01:36", "202.46.51.20", "115");
INSERT INTO `wp_rg_form_view` VALUES("23247", "8", "2015-12-24 19:01:36", "202.46.51.20", "15");
INSERT INTO `wp_rg_form_view` VALUES("23248", "3", "2015-12-24 20:05:04", "202.46.52.69", "190");
INSERT INTO `wp_rg_form_view` VALUES("23249", "8", "2015-12-24 20:05:04", "202.46.52.69", "23");
INSERT INTO `wp_rg_form_view` VALUES("23250", "5", "2015-12-24 20:19:03", "157.55.39.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("23251", "3", "2015-12-24 21:00:02", "162.156.87.15", "213");
INSERT INTO `wp_rg_form_view` VALUES("23252", "8", "2015-12-24 21:00:02", "162.156.87.15", "29");
INSERT INTO `wp_rg_form_view` VALUES("23253", "1", "2015-12-24 21:16:51", "40.77.167.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("23254", "3", "2015-12-24 22:04:04", "202.46.51.158", "196");
INSERT INTO `wp_rg_form_view` VALUES("23255", "8", "2015-12-24 22:04:05", "202.46.51.158", "24");
INSERT INTO `wp_rg_form_view` VALUES("23256", "3", "2015-12-24 23:07:33", "202.46.55.149", "93");
INSERT INTO `wp_rg_form_view` VALUES("23257", "8", "2015-12-24 23:07:33", "202.46.55.149", "10");
INSERT INTO `wp_rg_form_view` VALUES("23258", "3", "2015-12-25 00:03:05", "202.46.58.18", "65");
INSERT INTO `wp_rg_form_view` VALUES("23259", "8", "2015-12-25 00:03:05", "202.46.58.18", "8");
INSERT INTO `wp_rg_form_view` VALUES("23260", "3", "2015-12-25 01:00:35", "157.55.39.251", "120");
INSERT INTO `wp_rg_form_view` VALUES("23261", "8", "2015-12-25 01:00:35", "157.55.39.251", "14");
INSERT INTO `wp_rg_form_view` VALUES("23262", "3", "2015-12-25 02:02:06", "202.46.49.113", "150");
INSERT INTO `wp_rg_form_view` VALUES("23263", "8", "2015-12-25 02:02:06", "202.46.49.113", "19");
INSERT INTO `wp_rg_form_view` VALUES("23264", "3", "2015-12-25 03:03:37", "40.77.167.44", "134");
INSERT INTO `wp_rg_form_view` VALUES("23265", "8", "2015-12-25 03:03:37", "40.77.167.44", "17");
INSERT INTO `wp_rg_form_view` VALUES("23266", "3", "2015-12-25 04:01:07", "202.46.55.120", "110");
INSERT INTO `wp_rg_form_view` VALUES("23267", "8", "2015-12-25 04:01:07", "202.46.55.120", "15");
INSERT INTO `wp_rg_form_view` VALUES("23268", "3", "2015-12-25 05:04:34", "202.46.50.136", "57");
INSERT INTO `wp_rg_form_view` VALUES("23269", "8", "2015-12-25 05:04:35", "202.46.50.136", "7");
INSERT INTO `wp_rg_form_view` VALUES("23270", "3", "2015-12-25 06:06:38", "68.180.229.161", "57");
INSERT INTO `wp_rg_form_view` VALUES("23271", "8", "2015-12-25 06:08:56", "202.46.51.84", "7");
INSERT INTO `wp_rg_form_view` VALUES("23272", "3", "2015-12-25 07:03:28", "134.249.52.203", "105");
INSERT INTO `wp_rg_form_view` VALUES("23273", "8", "2015-12-25 07:03:28", "134.249.52.203", "13");
INSERT INTO `wp_rg_form_view` VALUES("23274", "1", "2015-12-25 07:05:06", "155.94.221.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("23275", "3", "2015-12-25 08:01:37", "66.249.74.102", "97");
INSERT INTO `wp_rg_form_view` VALUES("23276", "8", "2015-12-25 08:01:37", "66.249.74.102", "13");
INSERT INTO `wp_rg_form_view` VALUES("23277", "1", "2015-12-25 08:02:13", "112.199.65.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("23278", "3", "2015-12-25 09:00:39", "202.46.54.181", "83");
INSERT INTO `wp_rg_form_view` VALUES("23279", "8", "2015-12-25 09:00:40", "202.46.54.181", "10");
INSERT INTO `wp_rg_form_view` VALUES("23280", "3", "2015-12-25 10:00:22", "202.46.49.149", "76");
INSERT INTO `wp_rg_form_view` VALUES("23281", "8", "2015-12-25 10:00:22", "202.46.49.149", "10");
INSERT INTO `wp_rg_form_view` VALUES("23282", "3", "2015-12-25 11:01:41", "68.180.229.161", "39");
INSERT INTO `wp_rg_form_view` VALUES("23283", "8", "2015-12-25 11:01:41", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("23284", "3", "2015-12-25 12:01:35", "202.46.49.190", "47");
INSERT INTO `wp_rg_form_view` VALUES("23285", "8", "2015-12-25 12:01:35", "202.46.49.190", "6");
INSERT INTO `wp_rg_form_view` VALUES("23286", "3", "2015-12-25 13:14:18", "202.46.49.145", "16");
INSERT INTO `wp_rg_form_view` VALUES("23287", "8", "2015-12-25 13:14:18", "202.46.49.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("23288", "3", "2015-12-25 14:02:48", "202.46.51.191", "50");
INSERT INTO `wp_rg_form_view` VALUES("23289", "8", "2015-12-25 14:02:48", "202.46.51.191", "7");
INSERT INTO `wp_rg_form_view` VALUES("23290", "3", "2015-12-25 15:15:31", "202.46.50.162", "55");
INSERT INTO `wp_rg_form_view` VALUES("23291", "8", "2015-12-25 15:15:31", "202.46.50.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("23292", "3", "2015-12-25 16:04:00", "202.46.55.123", "105");
INSERT INTO `wp_rg_form_view` VALUES("23293", "8", "2015-12-25 16:04:00", "202.46.55.123", "13");
INSERT INTO `wp_rg_form_view` VALUES("23294", "9", "2015-12-25 16:23:30", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23295", "1", "2015-12-25 16:48:01", "158.222.15.233", "3");
INSERT INTO `wp_rg_form_view` VALUES("23296", "3", "2015-12-25 17:06:43", "40.77.167.44", "17");
INSERT INTO `wp_rg_form_view` VALUES("23297", "8", "2015-12-25 17:06:43", "40.77.167.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("23298", "1", "2015-12-25 18:04:16", "155.94.172.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("23299", "3", "2015-12-25 18:04:16", "155.94.172.179", "56");
INSERT INTO `wp_rg_form_view` VALUES("23300", "8", "2015-12-25 18:04:16", "155.94.172.179", "7");
INSERT INTO `wp_rg_form_view` VALUES("23301", "3", "2015-12-25 19:31:45", "46.118.153.165", "31");
INSERT INTO `wp_rg_form_view` VALUES("23302", "3", "2015-12-25 19:31:45", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("23303", "8", "2015-12-25 19:31:46", "46.118.153.165", "3");
INSERT INTO `wp_rg_form_view` VALUES("23304", "8", "2015-12-25 19:31:46", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("23305", "3", "2015-12-25 20:38:31", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("23306", "8", "2015-12-25 20:38:31", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23307", "3", "2015-12-25 21:21:46", "176.36.52.189", "16");
INSERT INTO `wp_rg_form_view` VALUES("23308", "8", "2015-12-25 21:21:46", "176.36.52.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("23309", "3", "2015-12-25 22:01:09", "40.77.167.44", "16");
INSERT INTO `wp_rg_form_view` VALUES("23310", "8", "2015-12-25 22:01:09", "40.77.167.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("23311", "3", "2015-12-25 23:26:29", "157.55.39.55", "24");
INSERT INTO `wp_rg_form_view` VALUES("23312", "8", "2015-12-25 23:26:29", "157.55.39.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("23313", "3", "2015-12-26 00:35:05", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("23314", "8", "2015-12-26 00:35:05", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("23315", "3", "2015-12-26 01:09:58", "66.249.74.104", "72");
INSERT INTO `wp_rg_form_view` VALUES("23316", "8", "2015-12-26 01:09:58", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("23317", "1", "2015-12-26 01:52:13", "151.237.190.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("23318", "3", "2015-12-26 02:03:18", "66.249.74.104", "26");
INSERT INTO `wp_rg_form_view` VALUES("23319", "8", "2015-12-26 02:03:18", "66.249.74.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("23320", "1", "2015-12-26 03:35:48", "45.33.159.174", "2");
INSERT INTO `wp_rg_form_view` VALUES("23321", "3", "2015-12-26 03:35:48", "45.33.159.174", "32");
INSERT INTO `wp_rg_form_view` VALUES("23322", "8", "2015-12-26 03:35:48", "45.33.159.174", "4");
INSERT INTO `wp_rg_form_view` VALUES("23323", "3", "2015-12-26 04:38:35", "216.244.80.83", "16");
INSERT INTO `wp_rg_form_view` VALUES("23324", "8", "2015-12-26 04:38:35", "216.244.80.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("23325", "3", "2015-12-26 05:36:51", "46.118.153.165", "80");
INSERT INTO `wp_rg_form_view` VALUES("23326", "3", "2015-12-26 05:36:51", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("23327", "8", "2015-12-26 05:36:53", "46.118.153.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("23328", "8", "2015-12-26 05:36:53", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("23329", "8", "2015-12-26 05:36:53", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("23330", "8", "2015-12-26 05:36:53", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("23331", "8", "2015-12-26 05:36:53", "46.118.153.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("23332", "1", "2015-12-26 05:49:43", "23.95.244.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("23333", "3", "2015-12-26 06:40:35", "207.46.13.4", "9");
INSERT INTO `wp_rg_form_view` VALUES("23334", "8", "2015-12-26 06:40:35", "207.46.13.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("23335", "3", "2015-12-26 08:04:20", "157.55.39.55", "8");
INSERT INTO `wp_rg_form_view` VALUES("23336", "8", "2015-12-26 08:04:21", "157.55.39.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("23337", "3", "2015-12-26 09:16:59", "45.61.42.58", "34");
INSERT INTO `wp_rg_form_view` VALUES("23338", "8", "2015-12-26 09:16:59", "45.61.42.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("23339", "3", "2015-12-26 10:09:19", "157.55.39.55", "242");
INSERT INTO `wp_rg_form_view` VALUES("23340", "8", "2015-12-26 10:09:19", "157.55.39.55", "31");
INSERT INTO `wp_rg_form_view` VALUES("23341", "7", "2015-12-26 10:19:01", "207.46.13.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("23342", "1", "2015-12-26 11:48:17", "210.101.131.232", "2");
INSERT INTO `wp_rg_form_view` VALUES("23343", "3", "2015-12-26 11:48:17", "210.101.131.232", "136");
INSERT INTO `wp_rg_form_view` VALUES("23344", "8", "2015-12-26 11:48:17", "210.101.131.232", "17");
INSERT INTO `wp_rg_form_view` VALUES("23345", "3", "2015-12-26 12:00:53", "195.154.194.111", "66");
INSERT INTO `wp_rg_form_view` VALUES("23346", "8", "2015-12-26 12:00:53", "195.154.194.111", "8");
INSERT INTO `wp_rg_form_view` VALUES("23347", "3", "2015-12-26 14:16:16", "192.151.145.10", "18");
INSERT INTO `wp_rg_form_view` VALUES("23348", "8", "2015-12-26 14:16:16", "192.151.145.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("23349", "3", "2015-12-26 15:41:41", "134.249.52.203", "32");
INSERT INTO `wp_rg_form_view` VALUES("23350", "8", "2015-12-26 15:41:42", "134.249.52.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("23351", "3", "2015-12-26 16:02:44", "157.55.39.55", "178");
INSERT INTO `wp_rg_form_view` VALUES("23352", "8", "2015-12-26 16:02:44", "157.55.39.55", "23");
INSERT INTO `wp_rg_form_view` VALUES("23353", "2", "2015-12-26 16:29:41", "195.154.227.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("23354", "3", "2015-12-26 17:01:55", "202.46.58.92", "93");
INSERT INTO `wp_rg_form_view` VALUES("23355", "8", "2015-12-26 17:01:56", "202.46.58.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("23356", "3", "2015-12-26 18:00:59", "202.46.53.160", "74");
INSERT INTO `wp_rg_form_view` VALUES("23357", "8", "2015-12-26 18:00:59", "202.46.53.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("23358", "3", "2015-12-26 19:00:02", "202.46.51.16", "106");
INSERT INTO `wp_rg_form_view` VALUES("23359", "8", "2015-12-26 19:00:02", "202.46.51.16", "14");
INSERT INTO `wp_rg_form_view` VALUES("23360", "3", "2015-12-26 20:08:56", "202.46.52.107", "86");
INSERT INTO `wp_rg_form_view` VALUES("23361", "8", "2015-12-26 20:08:56", "202.46.52.107", "13");
INSERT INTO `wp_rg_form_view` VALUES("23362", "3", "2015-12-26 21:17:50", "202.46.53.176", "70");
INSERT INTO `wp_rg_form_view` VALUES("23363", "8", "2015-12-26 21:17:50", "202.46.53.176", "9");
INSERT INTO `wp_rg_form_view` VALUES("23364", "3", "2015-12-26 22:07:03", "202.46.49.91", "119");
INSERT INTO `wp_rg_form_view` VALUES("23365", "8", "2015-12-26 22:07:03", "202.46.49.91", "16");
INSERT INTO `wp_rg_form_view` VALUES("23366", "3", "2015-12-26 23:15:57", "202.46.58.124", "117");
INSERT INTO `wp_rg_form_view` VALUES("23367", "8", "2015-12-26 23:15:57", "202.46.58.124", "14");
INSERT INTO `wp_rg_form_view` VALUES("23368", "3", "2015-12-27 00:01:32", "207.46.13.127", "77");
INSERT INTO `wp_rg_form_view` VALUES("23369", "8", "2015-12-27 00:01:32", "207.46.13.127", "10");
INSERT INTO `wp_rg_form_view` VALUES("23370", "3", "2015-12-27 01:03:26", "188.165.15.50", "122");
INSERT INTO `wp_rg_form_view` VALUES("23371", "8", "2015-12-27 01:03:26", "188.165.15.50", "16");
INSERT INTO `wp_rg_form_view` VALUES("23372", "3", "2015-12-27 02:03:17", "202.46.48.26", "96");
INSERT INTO `wp_rg_form_view` VALUES("23373", "8", "2015-12-27 02:03:17", "202.46.48.26", "12");
INSERT INTO `wp_rg_form_view` VALUES("23374", "6", "2015-12-27 02:41:55", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("23375", "3", "2015-12-27 03:02:21", "202.46.51.84", "130");
INSERT INTO `wp_rg_form_view` VALUES("23376", "8", "2015-12-27 03:02:21", "202.46.51.84", "18");
INSERT INTO `wp_rg_form_view` VALUES("23377", "3", "2015-12-27 04:01:23", "202.46.55.153", "111");
INSERT INTO `wp_rg_form_view` VALUES("23378", "8", "2015-12-27 04:01:23", "202.46.55.153", "14");
INSERT INTO `wp_rg_form_view` VALUES("23379", "3", "2015-12-27 05:08:17", "202.46.52.18", "89");
INSERT INTO `wp_rg_form_view` VALUES("23380", "8", "2015-12-27 05:08:17", "202.46.52.18", "12");
INSERT INTO `wp_rg_form_view` VALUES("23381", "1", "2015-12-27 05:51:38", "45.61.46.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("23382", "3", "2015-12-27 06:01:22", "202.46.48.145", "77");
INSERT INTO `wp_rg_form_view` VALUES("23383", "8", "2015-12-27 06:01:22", "202.46.48.145", "10");
INSERT INTO `wp_rg_form_view` VALUES("23384", "3", "2015-12-27 07:11:58", "188.165.15.50", "93");
INSERT INTO `wp_rg_form_view` VALUES("23385", "8", "2015-12-27 07:11:58", "188.165.15.50", "12");
INSERT INTO `wp_rg_form_view` VALUES("23386", "3", "2015-12-27 08:05:13", "202.46.50.190", "70");
INSERT INTO `wp_rg_form_view` VALUES("23387", "8", "2015-12-27 08:05:13", "202.46.50.190", "9");
INSERT INTO `wp_rg_form_view` VALUES("23388", "3", "2015-12-27 09:05:14", "68.180.229.161", "58");
INSERT INTO `wp_rg_form_view` VALUES("23389", "8", "2015-12-27 09:05:15", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("23390", "3", "2015-12-27 10:09:02", "202.46.51.194", "89");
INSERT INTO `wp_rg_form_view` VALUES("23391", "8", "2015-12-27 10:09:02", "202.46.51.194", "11");
INSERT INTO `wp_rg_form_view` VALUES("23392", "1", "2015-12-27 10:41:59", "212.83.148.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("23393", "3", "2015-12-27 11:02:06", "202.46.50.135", "63");
INSERT INTO `wp_rg_form_view` VALUES("23394", "8", "2015-12-27 11:02:06", "202.46.50.135", "9");
INSERT INTO `wp_rg_form_view` VALUES("23395", "1", "2015-12-27 11:55:59", "192.126.192.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("23396", "3", "2015-12-27 12:12:52", "202.46.54.137", "47");
INSERT INTO `wp_rg_form_view` VALUES("23397", "8", "2015-12-27 12:12:52", "202.46.54.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("23398", "2", "2015-12-27 13:01:45", "195.154.58.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("23399", "3", "2015-12-27 13:01:45", "195.154.58.30", "103");
INSERT INTO `wp_rg_form_view` VALUES("23400", "8", "2015-12-27 13:01:45", "195.154.58.30", "14");
INSERT INTO `wp_rg_form_view` VALUES("23401", "3", "2015-12-27 14:06:31", "151.80.31.152", "87");
INSERT INTO `wp_rg_form_view` VALUES("23402", "8", "2015-12-27 14:06:31", "151.80.31.152", "11");
INSERT INTO `wp_rg_form_view` VALUES("23403", "3", "2015-12-27 15:00:11", "68.180.229.161", "134");
INSERT INTO `wp_rg_form_view` VALUES("23404", "8", "2015-12-27 15:00:11", "68.180.229.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("23405", "2", "2015-12-27 15:58:20", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("23406", "3", "2015-12-27 16:02:50", "202.46.53.156", "59");
INSERT INTO `wp_rg_form_view` VALUES("23407", "8", "2015-12-27 16:02:50", "202.46.53.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("23408", "3", "2015-12-27 17:07:16", "62.210.152.87", "74");
INSERT INTO `wp_rg_form_view` VALUES("23409", "8", "2015-12-27 17:07:16", "62.210.152.87", "9");
INSERT INTO `wp_rg_form_view` VALUES("23410", "3", "2015-12-27 18:06:41", "202.46.48.207", "305");
INSERT INTO `wp_rg_form_view` VALUES("23411", "8", "2015-12-27 18:06:41", "202.46.48.207", "38");
INSERT INTO `wp_rg_form_view` VALUES("23412", "2", "2015-12-27 18:14:03", "151.42.80.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("23413", "3", "2015-12-27 19:16:29", "209.121.46.34", "118");
INSERT INTO `wp_rg_form_view` VALUES("23414", "8", "2015-12-27 19:16:29", "209.121.46.34", "16");
INSERT INTO `wp_rg_form_view` VALUES("23415", "1", "2015-12-27 19:17:39", "209.121.46.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("23416", "3", "2015-12-27 20:10:30", "202.46.50.124", "57");
INSERT INTO `wp_rg_form_view` VALUES("23417", "8", "2015-12-27 20:10:30", "202.46.50.124", "7");
INSERT INTO `wp_rg_form_view` VALUES("23418", "3", "2015-12-27 21:03:34", "202.46.53.123", "85");
INSERT INTO `wp_rg_form_view` VALUES("23419", "8", "2015-12-27 21:03:34", "202.46.53.123", "11");
INSERT INTO `wp_rg_form_view` VALUES("23420", "3", "2015-12-27 22:05:51", "70.66.137.82", "69");
INSERT INTO `wp_rg_form_view` VALUES("23421", "8", "2015-12-27 22:05:52", "70.66.137.82", "9");
INSERT INTO `wp_rg_form_view` VALUES("23422", "3", "2015-12-27 23:07:24", "202.46.57.184", "61");
INSERT INTO `wp_rg_form_view` VALUES("23423", "8", "2015-12-27 23:07:24", "202.46.57.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("23424", "3", "2015-12-28 00:00:25", "216.232.154.7", "85");
INSERT INTO `wp_rg_form_view` VALUES("23425", "8", "2015-12-28 00:00:25", "216.232.154.7", "11");
INSERT INTO `wp_rg_form_view` VALUES("23426", "3", "2015-12-28 01:23:18", "202.46.53.116", "73");
INSERT INTO `wp_rg_form_view` VALUES("23427", "8", "2015-12-28 01:23:18", "202.46.53.116", "10");
INSERT INTO `wp_rg_form_view` VALUES("23428", "3", "2015-12-28 02:10:39", "68.180.229.161", "26");
INSERT INTO `wp_rg_form_view` VALUES("23429", "8", "2015-12-28 02:22:48", "202.46.51.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("23430", "3", "2015-12-28 03:22:18", "202.46.56.13", "115");
INSERT INTO `wp_rg_form_view` VALUES("23431", "8", "2015-12-28 03:22:19", "202.46.56.13", "15");
INSERT INTO `wp_rg_form_view` VALUES("23432", "6", "2015-12-28 03:23:37", "157.55.39.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("23433", "5", "2015-12-28 03:23:44", "157.55.39.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("23434", "3", "2015-12-28 04:00:36", "68.180.229.161", "45");
INSERT INTO `wp_rg_form_view` VALUES("23435", "8", "2015-12-28 04:00:36", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("23436", "3", "2015-12-28 05:02:16", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("23437", "8", "2015-12-28 05:02:16", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("23438", "3", "2015-12-28 07:02:31", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("23439", "8", "2015-12-28 07:02:33", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("23440", "3", "2015-12-28 08:23:22", "207.46.13.119", "144");
INSERT INTO `wp_rg_form_view` VALUES("23441", "8", "2015-12-28 08:23:23", "207.46.13.119", "17");
INSERT INTO `wp_rg_form_view` VALUES("23442", "1", "2015-12-28 08:44:22", "117.177.243.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("23443", "3", "2015-12-28 10:31:13", "195.154.209.60", "42");
INSERT INTO `wp_rg_form_view` VALUES("23444", "8", "2015-12-28 10:31:13", "195.154.209.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("23445", "3", "2015-12-28 11:53:05", "157.55.39.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("23446", "8", "2015-12-28 11:53:05", "157.55.39.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("23447", "3", "2015-12-28 12:02:06", "207.46.13.127", "83");
INSERT INTO `wp_rg_form_view` VALUES("23448", "8", "2015-12-28 12:02:06", "207.46.13.127", "11");
INSERT INTO `wp_rg_form_view` VALUES("23449", "1", "2015-12-28 13:10:51", "23.92.219.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("23450", "3", "2015-12-28 13:10:51", "23.92.219.19", "42");
INSERT INTO `wp_rg_form_view` VALUES("23451", "8", "2015-12-28 13:10:51", "23.92.219.19", "7");
INSERT INTO `wp_rg_form_view` VALUES("23452", "3", "2015-12-28 14:36:45", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("23453", "8", "2015-12-28 14:36:45", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("23454", "8", "2015-12-28 15:03:30", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("23455", "3", "2015-12-28 15:03:31", "68.180.229.161", "72");
INSERT INTO `wp_rg_form_view` VALUES("23456", "2", "2015-12-28 15:28:29", "40.77.167.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("23457", "1", "2015-12-28 16:11:17", "108.61.123.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("23458", "3", "2015-12-28 16:11:17", "108.61.123.75", "32");
INSERT INTO `wp_rg_form_view` VALUES("23459", "8", "2015-12-28 16:11:17", "108.61.123.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("23460", "3", "2015-12-28 17:15:22", "202.46.54.163", "106");
INSERT INTO `wp_rg_form_view` VALUES("23461", "8", "2015-12-28 17:15:22", "202.46.54.163", "11");
INSERT INTO `wp_rg_form_view` VALUES("23462", "9", "2015-12-28 17:45:22", "75.156.73.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("23463", "3", "2015-12-28 18:07:27", "144.76.4.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("23464", "8", "2015-12-28 18:07:27", "144.76.4.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("23465", "3", "2015-12-28 19:12:39", "66.249.74.104", "55");
INSERT INTO `wp_rg_form_view` VALUES("23466", "8", "2015-12-28 19:12:39", "66.249.74.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("23467", "1", "2015-12-28 19:13:01", "40.77.167.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("23468", "7", "2015-12-28 19:41:29", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("23469", "3", "2015-12-28 20:02:21", "66.249.74.104", "165");
INSERT INTO `wp_rg_form_view` VALUES("23470", "8", "2015-12-28 20:02:21", "66.249.74.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("23471", "1", "2015-12-28 20:38:27", "209.164.66.60", "4");
INSERT INTO `wp_rg_form_view` VALUES("23472", "3", "2015-12-28 21:05:37", "178.137.88.17", "60");
INSERT INTO `wp_rg_form_view` VALUES("23473", "8", "2015-12-28 21:05:37", "178.137.88.17", "8");
INSERT INTO `wp_rg_form_view` VALUES("23474", "3", "2015-12-28 22:05:33", "188.165.15.50", "273");
INSERT INTO `wp_rg_form_view` VALUES("23475", "8", "2015-12-28 22:05:33", "188.165.15.50", "34");
INSERT INTO `wp_rg_form_view` VALUES("23476", "2", "2015-12-28 22:16:26", "80.61.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("23477", "3", "2015-12-28 23:12:23", "202.46.58.97", "70");
INSERT INTO `wp_rg_form_view` VALUES("23478", "8", "2015-12-28 23:12:24", "202.46.58.97", "8");
INSERT INTO `wp_rg_form_view` VALUES("23479", "2", "2015-12-28 23:43:30", "40.77.167.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("23480", "3", "2015-12-29 00:11:54", "202.46.55.124", "32");
INSERT INTO `wp_rg_form_view` VALUES("23481", "8", "2015-12-29 00:11:54", "202.46.55.124", "4");
INSERT INTO `wp_rg_form_view` VALUES("23482", "3", "2015-12-29 01:11:32", "202.46.58.134", "55");
INSERT INTO `wp_rg_form_view` VALUES("23483", "8", "2015-12-29 01:11:33", "202.46.58.134", "7");
INSERT INTO `wp_rg_form_view` VALUES("23484", "1", "2015-12-29 01:33:43", "212.83.148.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("23485", "3", "2015-12-29 02:10:54", "202.46.48.145", "38");
INSERT INTO `wp_rg_form_view` VALUES("23486", "8", "2015-12-29 02:10:54", "202.46.48.145", "5");
INSERT INTO `wp_rg_form_view` VALUES("23487", "3", "2015-12-29 03:00:19", "178.137.89.157", "79");
INSERT INTO `wp_rg_form_view` VALUES("23488", "8", "2015-12-29 03:00:19", "178.137.89.157", "10");
INSERT INTO `wp_rg_form_view` VALUES("23489", "3", "2015-12-29 04:03:25", "66.249.74.102", "128");
INSERT INTO `wp_rg_form_view` VALUES("23490", "8", "2015-12-29 04:03:25", "66.249.74.102", "17");
INSERT INTO `wp_rg_form_view` VALUES("23491", "3", "2015-12-29 05:09:25", "202.46.50.161", "46");
INSERT INTO `wp_rg_form_view` VALUES("23492", "8", "2015-12-29 05:09:25", "202.46.50.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("23493", "5", "2015-12-29 05:40:19", "188.165.15.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("23494", "3", "2015-12-29 06:03:59", "202.46.52.41", "80");
INSERT INTO `wp_rg_form_view` VALUES("23495", "8", "2015-12-29 06:03:59", "202.46.52.41", "10");
INSERT INTO `wp_rg_form_view` VALUES("23496", "9", "2015-12-29 06:38:57", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("23497", "3", "2015-12-29 07:06:45", "188.165.15.50", "269");
INSERT INTO `wp_rg_form_view` VALUES("23498", "8", "2015-12-29 07:06:45", "188.165.15.50", "33");
INSERT INTO `wp_rg_form_view` VALUES("23499", "1", "2015-12-29 07:26:00", "158.222.15.233", "5");
INSERT INTO `wp_rg_form_view` VALUES("23500", "1", "2015-12-29 08:05:33", "192.151.145.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("23501", "3", "2015-12-29 08:05:33", "192.151.145.10", "65");
INSERT INTO `wp_rg_form_view` VALUES("23502", "8", "2015-12-29 08:05:33", "192.151.145.10", "8");
INSERT INTO `wp_rg_form_view` VALUES("23503", "3", "2015-12-29 09:02:18", "91.121.141.219", "72");
INSERT INTO `wp_rg_form_view` VALUES("23504", "8", "2015-12-29 09:02:18", "91.121.141.219", "9");
INSERT INTO `wp_rg_form_view` VALUES("23505", "3", "2015-12-29 10:09:25", "202.46.51.178", "120");
INSERT INTO `wp_rg_form_view` VALUES("23506", "8", "2015-12-29 10:09:25", "202.46.51.178", "15");
INSERT INTO `wp_rg_form_view` VALUES("23507", "6", "2015-12-29 10:26:25", "136.243.17.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23508", "3", "2015-12-29 11:03:57", "202.46.56.18", "54");
INSERT INTO `wp_rg_form_view` VALUES("23509", "8", "2015-12-29 11:03:57", "202.46.56.18", "7");
INSERT INTO `wp_rg_form_view` VALUES("23510", "3", "2015-12-29 12:08:31", "157.55.39.30", "52");
INSERT INTO `wp_rg_form_view` VALUES("23511", "8", "2015-12-29 12:08:31", "157.55.39.30", "7");
INSERT INTO `wp_rg_form_view` VALUES("23512", "3", "2015-12-29 13:03:14", "188.165.15.50", "38");
INSERT INTO `wp_rg_form_view` VALUES("23513", "8", "2015-12-29 13:03:14", "188.165.15.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("23514", "3", "2015-12-29 14:10:26", "68.180.229.161", "271");
INSERT INTO `wp_rg_form_view` VALUES("23515", "8", "2015-12-29 14:10:27", "68.180.229.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("23516", "1", "2015-12-29 14:31:34", "23.95.241.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("23517", "2", "2015-12-29 14:38:54", "104.236.16.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("23518", "3", "2015-12-29 15:01:56", "66.249.74.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("23519", "8", "2015-12-29 15:01:56", "66.249.74.102", "5");
INSERT INTO `wp_rg_form_view` VALUES("23520", "3", "2015-12-29 16:03:58", "202.46.51.118", "29");
INSERT INTO `wp_rg_form_view` VALUES("23521", "8", "2015-12-29 16:03:58", "202.46.51.118", "3");
INSERT INTO `wp_rg_form_view` VALUES("23522", "3", "2015-12-29 17:48:00", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("23523", "8", "2015-12-29 17:48:00", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("23524", "3", "2015-12-29 19:15:08", "162.156.84.134", "84");
INSERT INTO `wp_rg_form_view` VALUES("23525", "8", "2015-12-29 19:15:09", "162.156.84.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("23526", "3", "2015-12-29 20:37:52", "68.180.229.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("23527", "8", "2015-12-29 20:37:52", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("23528", "3", "2015-12-29 22:01:48", "188.165.15.50", "29");
INSERT INTO `wp_rg_form_view` VALUES("23529", "8", "2015-12-29 22:01:48", "188.165.15.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("23530", "3", "2015-12-30 00:05:01", "96.50.68.167", "96");
INSERT INTO `wp_rg_form_view` VALUES("23531", "8", "2015-12-30 00:05:01", "96.50.68.167", "12");
INSERT INTO `wp_rg_form_view` VALUES("23532", "1", "2015-12-30 01:12:10", "23.95.244.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("23533", "3", "2015-12-30 01:12:10", "23.95.244.105", "58");
INSERT INTO `wp_rg_form_view` VALUES("23534", "8", "2015-12-30 01:12:10", "23.95.244.105", "7");
INSERT INTO `wp_rg_form_view` VALUES("23535", "3", "2015-12-30 02:19:06", "207.46.13.86", "25");
INSERT INTO `wp_rg_form_view` VALUES("23536", "8", "2015-12-30 02:19:06", "207.46.13.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("23537", "3", "2015-12-30 03:37:42", "188.165.15.50", "129");
INSERT INTO `wp_rg_form_view` VALUES("23538", "8", "2015-12-30 03:37:42", "188.165.15.50", "16");
INSERT INTO `wp_rg_form_view` VALUES("23539", "3", "2015-12-30 04:11:15", "178.137.88.17", "25");
INSERT INTO `wp_rg_form_view` VALUES("23540", "8", "2015-12-30 04:11:15", "178.137.88.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("23541", "3", "2015-12-30 05:22:11", "24.68.16.27", "2030");
INSERT INTO `wp_rg_form_view` VALUES("23542", "8", "2015-12-30 05:22:11", "24.68.16.27", "260");
INSERT INTO `wp_rg_form_view` VALUES("23543", "1", "2015-12-30 05:30:19", "45.55.81.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("23544", "5", "2015-12-30 05:39:23", "45.55.81.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("23545", "6", "2015-12-30 05:51:19", "45.55.81.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("23546", "3", "2015-12-30 06:00:09", "45.55.81.7", "2365");
INSERT INTO `wp_rg_form_view` VALUES("23547", "8", "2015-12-30 06:00:09", "45.55.81.7", "298");
INSERT INTO `wp_rg_form_view` VALUES("23548", "9", "2015-12-30 06:01:29", "45.55.81.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("23549", "3", "2015-12-30 07:05:37", "68.180.229.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("23550", "8", "2015-12-30 07:05:37", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("23551", "3", "2015-12-30 08:02:16", "46.118.226.141", "40");
INSERT INTO `wp_rg_form_view` VALUES("23552", "8", "2015-12-30 08:02:16", "46.118.226.141", "5");
INSERT INTO `wp_rg_form_view` VALUES("23553", "3", "2015-12-30 09:04:23", "188.165.15.50", "9");
INSERT INTO `wp_rg_form_view` VALUES("23554", "8", "2015-12-30 09:04:23", "188.165.15.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("23555", "3", "2015-12-30 11:28:50", "75.155.175.231", "16");
INSERT INTO `wp_rg_form_view` VALUES("23556", "8", "2015-12-30 11:28:50", "75.155.175.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("23557", "3", "2015-12-30 12:05:52", "178.137.160.2", "118");
INSERT INTO `wp_rg_form_view` VALUES("23558", "3", "2015-12-30 12:05:52", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23559", "3", "2015-12-30 12:05:52", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23560", "8", "2015-12-30 12:05:52", "178.137.160.2", "15");
INSERT INTO `wp_rg_form_view` VALUES("23561", "3", "2015-12-30 14:20:01", "66.249.74.102", "32");
INSERT INTO `wp_rg_form_view` VALUES("23562", "8", "2015-12-30 14:20:02", "66.249.74.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("23563", "3", "2015-12-30 15:03:11", "192.151.145.10", "33");
INSERT INTO `wp_rg_form_view` VALUES("23564", "8", "2015-12-30 15:03:11", "192.151.145.10", "6");
INSERT INTO `wp_rg_form_view` VALUES("23565", "3", "2015-12-30 16:52:15", "193.201.227.99", "40");
INSERT INTO `wp_rg_form_view` VALUES("23566", "8", "2015-12-30 16:52:15", "193.201.227.99", "4");
INSERT INTO `wp_rg_form_view` VALUES("23567", "3", "2015-12-30 17:04:10", "66.249.74.102", "32");
INSERT INTO `wp_rg_form_view` VALUES("23568", "8", "2015-12-30 17:04:10", "66.249.74.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("23569", "3", "2015-12-30 18:00:17", "202.46.55.13", "93");
INSERT INTO `wp_rg_form_view` VALUES("23570", "8", "2015-12-30 18:00:17", "202.46.55.13", "13");
INSERT INTO `wp_rg_form_view` VALUES("23571", "3", "2015-12-30 19:00:16", "78.146.11.157", "79");
INSERT INTO `wp_rg_form_view` VALUES("23572", "8", "2015-12-30 19:00:16", "78.146.11.157", "11");
INSERT INTO `wp_rg_form_view` VALUES("23573", "1", "2015-12-30 19:37:34", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23574", "3", "2015-12-30 20:01:05", "68.180.229.161", "47");
INSERT INTO `wp_rg_form_view` VALUES("23575", "8", "2015-12-30 20:01:05", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("23576", "3", "2015-12-30 21:21:14", "202.46.57.165", "21");
INSERT INTO `wp_rg_form_view` VALUES("23577", "8", "2015-12-30 21:21:14", "202.46.57.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("23578", "3", "2015-12-30 22:27:48", "134.249.49.23", "64");
INSERT INTO `wp_rg_form_view` VALUES("23579", "8", "2015-12-30 22:27:48", "134.249.49.23", "8");
INSERT INTO `wp_rg_form_view` VALUES("23580", "3", "2015-12-30 23:06:27", "207.46.13.86", "190");
INSERT INTO `wp_rg_form_view` VALUES("23581", "8", "2015-12-30 23:06:27", "207.46.13.86", "24");
INSERT INTO `wp_rg_form_view` VALUES("23582", "7", "2015-12-30 23:06:49", "207.46.13.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("23583", "3", "2015-12-31 00:08:40", "202.46.48.121", "45");
INSERT INTO `wp_rg_form_view` VALUES("23584", "8", "2015-12-31 00:08:40", "202.46.48.121", "6");
INSERT INTO `wp_rg_form_view` VALUES("23585", "9", "2015-12-31 00:47:46", "136.243.48.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("23586", "3", "2015-12-31 01:03:05", "184.151.231.43", "106");
INSERT INTO `wp_rg_form_view` VALUES("23587", "8", "2015-12-31 01:03:05", "184.151.231.43", "13");
INSERT INTO `wp_rg_form_view` VALUES("23588", "3", "2015-12-31 02:07:43", "24.69.70.7", "31");
INSERT INTO `wp_rg_form_view` VALUES("23589", "8", "2015-12-31 02:07:43", "24.69.70.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("23590", "9", "2015-12-31 02:57:00", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23591", "3", "2015-12-31 03:14:19", "24.68.30.103", "91");
INSERT INTO `wp_rg_form_view` VALUES("23592", "8", "2015-12-31 03:14:19", "24.68.30.103", "11");
INSERT INTO `wp_rg_form_view` VALUES("23593", "2", "2015-12-31 03:29:51", "107.161.83.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("23594", "3", "2015-12-31 04:03:05", "202.46.51.30", "64");
INSERT INTO `wp_rg_form_view` VALUES("23595", "8", "2015-12-31 04:03:05", "202.46.51.30", "8");
INSERT INTO `wp_rg_form_view` VALUES("23596", "1", "2015-12-31 04:10:53", "192.227.158.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("23597", "3", "2015-12-31 05:10:04", "202.46.51.183", "163");
INSERT INTO `wp_rg_form_view` VALUES("23598", "8", "2015-12-31 05:10:04", "202.46.51.183", "20");
INSERT INTO `wp_rg_form_view` VALUES("23599", "2", "2015-12-31 05:32:19", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("23600", "3", "2015-12-31 06:17:02", "202.46.48.137", "63");
INSERT INTO `wp_rg_form_view` VALUES("23601", "8", "2015-12-31 06:17:02", "202.46.48.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("23602", "9", "2015-12-31 07:16:11", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23603", "3", "2015-12-31 07:22:04", "62.210.162.184", "61");
INSERT INTO `wp_rg_form_view` VALUES("23604", "8", "2015-12-31 07:22:04", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("23605", "2", "2015-12-31 07:48:07", "188.165.15.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("23606", "1", "2015-12-31 08:23:19", "158.222.15.119", "3");
INSERT INTO `wp_rg_form_view` VALUES("23607", "3", "2015-12-31 08:23:20", "158.222.15.119", "146");
INSERT INTO `wp_rg_form_view` VALUES("23608", "8", "2015-12-31 08:23:20", "158.222.15.119", "18");
INSERT INTO `wp_rg_form_view` VALUES("23609", "3", "2015-12-31 09:00:20", "66.249.74.104", "71");
INSERT INTO `wp_rg_form_view` VALUES("23610", "8", "2015-12-31 09:00:20", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("23611", "3", "2015-12-31 10:06:36", "66.249.74.102", "58");
INSERT INTO `wp_rg_form_view` VALUES("23612", "8", "2015-12-31 10:06:36", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("23613", "3", "2015-12-31 11:11:51", "188.165.15.50", "46");
INSERT INTO `wp_rg_form_view` VALUES("23614", "8", "2015-12-31 11:11:51", "188.165.15.50", "6");
INSERT INTO `wp_rg_form_view` VALUES("23615", "3", "2015-12-31 12:10:54", "62.210.162.184", "208");
INSERT INTO `wp_rg_form_view` VALUES("23616", "8", "2015-12-31 12:10:54", "62.210.162.184", "26");
INSERT INTO `wp_rg_form_view` VALUES("23617", "2", "2015-12-31 12:27:09", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("23618", "3", "2015-12-31 13:04:58", "66.249.74.106", "96");
INSERT INTO `wp_rg_form_view` VALUES("23619", "8", "2015-12-31 13:04:58", "66.249.74.106", "12");
INSERT INTO `wp_rg_form_view` VALUES("23620", "3", "2015-12-31 14:49:47", "184.66.28.163", "24");
INSERT INTO `wp_rg_form_view` VALUES("23621", "8", "2015-12-31 14:49:47", "184.66.28.163", "3");
INSERT INTO `wp_rg_form_view` VALUES("23622", "1", "2015-12-31 14:50:32", "184.66.28.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("23623", "3", "2015-12-31 15:12:50", "202.46.52.146", "94");
INSERT INTO `wp_rg_form_view` VALUES("23624", "8", "2015-12-31 15:12:50", "202.46.52.146", "11");
INSERT INTO `wp_rg_form_view` VALUES("23625", "3", "2015-12-31 16:01:44", "66.249.74.102", "65");
INSERT INTO `wp_rg_form_view` VALUES("23626", "8", "2015-12-31 16:01:44", "66.249.74.102", "9");
INSERT INTO `wp_rg_form_view` VALUES("23627", "3", "2015-12-31 17:14:00", "62.210.162.184", "72");
INSERT INTO `wp_rg_form_view` VALUES("23628", "8", "2015-12-31 17:14:00", "62.210.162.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("23629", "3", "2015-12-31 18:04:03", "154.20.234.165", "118");
INSERT INTO `wp_rg_form_view` VALUES("23630", "8", "2015-12-31 18:04:03", "154.20.234.165", "14");
INSERT INTO `wp_rg_form_view` VALUES("23631", "3", "2015-12-31 19:07:16", "202.46.58.134", "165");
INSERT INTO `wp_rg_form_view` VALUES("23632", "8", "2015-12-31 19:07:16", "202.46.58.134", "20");
INSERT INTO `wp_rg_form_view` VALUES("23633", "1", "2015-12-31 19:15:35", "192.255.101.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("23634", "3", "2015-12-31 20:03:22", "62.210.162.184", "86");
INSERT INTO `wp_rg_form_view` VALUES("23635", "8", "2015-12-31 20:03:22", "62.210.162.184", "11");
INSERT INTO `wp_rg_form_view` VALUES("23636", "3", "2015-12-31 21:11:58", "202.46.48.195", "165");
INSERT INTO `wp_rg_form_view` VALUES("23637", "8", "2015-12-31 21:11:58", "202.46.48.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("23638", "3", "2015-12-31 22:00:27", "202.46.48.98", "139");
INSERT INTO `wp_rg_form_view` VALUES("23639", "8", "2015-12-31 22:00:27", "202.46.48.98", "18");
INSERT INTO `wp_rg_form_view` VALUES("23640", "1", "2015-12-31 22:53:54", "204.44.90.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("23641", "3", "2015-12-31 23:19:46", "188.165.15.50", "56");
INSERT INTO `wp_rg_form_view` VALUES("23642", "8", "2015-12-31 23:19:46", "188.165.15.50", "7");
INSERT INTO `wp_rg_form_view` VALUES("23643", "3", "2016-01-01 00:06:49", "68.180.229.161", "103");
INSERT INTO `wp_rg_form_view` VALUES("23644", "8", "2016-01-01 00:06:49", "68.180.229.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("23645", "3", "2016-01-01 01:21:27", "202.46.51.28", "39");
INSERT INTO `wp_rg_form_view` VALUES("23646", "8", "2016-01-01 01:21:27", "202.46.51.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("23647", "3", "2016-01-01 02:07:35", "154.20.28.148", "52");
INSERT INTO `wp_rg_form_view` VALUES("23648", "8", "2016-01-01 02:07:35", "154.20.28.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("23649", "3", "2016-01-01 03:04:00", "202.46.55.195", "188");
INSERT INTO `wp_rg_form_view` VALUES("23650", "8", "2016-01-01 03:04:00", "202.46.55.195", "23");
INSERT INTO `wp_rg_form_view` VALUES("23651", "3", "2016-01-01 04:19:20", "172.218.192.82", "80");
INSERT INTO `wp_rg_form_view` VALUES("23652", "8", "2016-01-01 04:19:20", "172.218.192.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("23653", "1", "2016-01-01 04:26:54", "172.218.192.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("23654", "3", "2016-01-01 05:00:35", "188.165.15.50", "56");
INSERT INTO `wp_rg_form_view` VALUES("23655", "8", "2016-01-01 05:00:36", "188.165.15.50", "7");
INSERT INTO `wp_rg_form_view` VALUES("23656", "2", "2016-01-01 05:22:35", "157.55.39.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("23657", "3", "2016-01-01 06:49:02", "178.137.160.2", "102");
INSERT INTO `wp_rg_form_view` VALUES("23658", "3", "2016-01-01 06:49:02", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23659", "3", "2016-01-01 06:49:02", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23660", "8", "2016-01-01 06:49:02", "178.137.160.2", "11");
INSERT INTO `wp_rg_form_view` VALUES("23661", "8", "2016-01-01 06:49:02", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23662", "8", "2016-01-01 06:49:02", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23663", "1", "2016-01-01 06:53:20", "188.165.15.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("23664", "3", "2016-01-01 07:11:20", "62.210.162.184", "16");
INSERT INTO `wp_rg_form_view` VALUES("23665", "8", "2016-01-01 07:11:20", "62.210.162.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("23666", "3", "2016-01-01 08:50:08", "24.108.9.238", "32");
INSERT INTO `wp_rg_form_view` VALUES("23667", "8", "2016-01-01 08:50:09", "24.108.9.238", "4");
INSERT INTO `wp_rg_form_view` VALUES("23668", "3", "2016-01-01 09:06:58", "198.27.101.168", "24");
INSERT INTO `wp_rg_form_view` VALUES("23669", "8", "2016-01-01 09:06:58", "198.27.101.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("23670", "3", "2016-01-01 10:13:49", "198.27.101.168", "99");
INSERT INTO `wp_rg_form_view` VALUES("23671", "8", "2016-01-01 10:13:49", "198.27.101.168", "12");
INSERT INTO `wp_rg_form_view` VALUES("23672", "1", "2016-01-01 10:39:00", "122.117.227.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("23673", "3", "2016-01-01 11:06:05", "192.151.145.10", "58");
INSERT INTO `wp_rg_form_view` VALUES("23674", "8", "2016-01-01 11:06:05", "192.151.145.10", "8");
INSERT INTO `wp_rg_form_view` VALUES("23675", "3", "2016-01-01 12:00:57", "198.27.101.168", "65");
INSERT INTO `wp_rg_form_view` VALUES("23676", "8", "2016-01-01 12:00:57", "198.27.101.168", "8");
INSERT INTO `wp_rg_form_view` VALUES("23677", "3", "2016-01-01 13:32:32", "188.165.15.50", "32");
INSERT INTO `wp_rg_form_view` VALUES("23678", "8", "2016-01-01 13:32:32", "188.165.15.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("23679", "3", "2016-01-01 14:40:26", "104.247.21.230", "69");
INSERT INTO `wp_rg_form_view` VALUES("23680", "8", "2016-01-01 14:40:26", "104.247.21.230", "9");
INSERT INTO `wp_rg_form_view` VALUES("23681", "3", "2016-01-01 15:07:56", "66.249.74.102", "44");
INSERT INTO `wp_rg_form_view` VALUES("23682", "8", "2016-01-01 15:07:56", "66.249.74.102", "5");
INSERT INTO `wp_rg_form_view` VALUES("23683", "3", "2016-01-01 16:08:23", "96.50.68.167", "48");
INSERT INTO `wp_rg_form_view` VALUES("23684", "8", "2016-01-01 16:08:23", "96.50.68.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("23685", "3", "2016-01-01 17:17:04", "207.46.13.109", "133");
INSERT INTO `wp_rg_form_view` VALUES("23686", "8", "2016-01-01 17:17:05", "207.46.13.109", "17");
INSERT INTO `wp_rg_form_view` VALUES("23687", "3", "2016-01-01 18:04:00", "207.46.13.86", "381");
INSERT INTO `wp_rg_form_view` VALUES("23688", "8", "2016-01-01 18:04:00", "207.46.13.86", "47");
INSERT INTO `wp_rg_form_view` VALUES("23689", "6", "2016-01-01 18:49:01", "207.46.13.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("23690", "1", "2016-01-01 18:58:23", "157.55.39.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("23691", "3", "2016-01-01 19:10:47", "202.46.50.82", "105");
INSERT INTO `wp_rg_form_view` VALUES("23692", "8", "2016-01-01 19:10:47", "202.46.50.82", "12");
INSERT INTO `wp_rg_form_view` VALUES("23693", "1", "2016-01-01 19:47:52", "45.64.166.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23694", "2", "2016-01-01 19:50:37", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("23695", "3", "2016-01-01 20:28:39", "202.46.56.71", "120");
INSERT INTO `wp_rg_form_view` VALUES("23696", "8", "2016-01-01 20:28:39", "202.46.56.71", "16");
INSERT INTO `wp_rg_form_view` VALUES("23697", "3", "2016-01-01 21:04:54", "202.46.57.17", "179");
INSERT INTO `wp_rg_form_view` VALUES("23698", "8", "2016-01-01 21:04:54", "202.46.57.17", "22");
INSERT INTO `wp_rg_form_view` VALUES("23699", "1", "2016-01-01 21:58:03", "188.240.140.34", "4");
INSERT INTO `wp_rg_form_view` VALUES("23700", "3", "2016-01-01 22:04:57", "202.46.54.183", "98");
INSERT INTO `wp_rg_form_view` VALUES("23701", "8", "2016-01-01 22:04:57", "202.46.54.183", "13");
INSERT INTO `wp_rg_form_view` VALUES("23702", "3", "2016-01-01 23:05:01", "202.46.49.92", "88");
INSERT INTO `wp_rg_form_view` VALUES("23703", "8", "2016-01-01 23:05:01", "202.46.49.92", "11");
INSERT INTO `wp_rg_form_view` VALUES("23704", "3", "2016-01-02 00:04:38", "66.249.74.106", "236");
INSERT INTO `wp_rg_form_view` VALUES("23705", "8", "2016-01-02 00:04:38", "66.249.74.106", "29");
INSERT INTO `wp_rg_form_view` VALUES("23706", "1", "2016-01-02 00:30:46", "155.94.139.10", "9");
INSERT INTO `wp_rg_form_view` VALUES("23707", "3", "2016-01-02 01:05:06", "202.46.51.88", "111");
INSERT INTO `wp_rg_form_view` VALUES("23708", "8", "2016-01-02 01:05:06", "202.46.51.88", "14");
INSERT INTO `wp_rg_form_view` VALUES("23709", "3", "2016-01-02 02:05:09", "202.46.52.109", "197");
INSERT INTO `wp_rg_form_view` VALUES("23710", "8", "2016-01-02 02:05:09", "202.46.52.109", "24");
INSERT INTO `wp_rg_form_view` VALUES("23711", "1", "2016-01-02 02:28:40", "62.210.162.184", "3");
INSERT INTO `wp_rg_form_view` VALUES("23712", "3", "2016-01-02 03:01:06", "66.249.74.104", "102");
INSERT INTO `wp_rg_form_view` VALUES("23713", "8", "2016-01-02 03:01:06", "66.249.74.104", "14");
INSERT INTO `wp_rg_form_view` VALUES("23714", "3", "2016-01-02 04:04:44", "62.210.162.184", "153");
INSERT INTO `wp_rg_form_view` VALUES("23715", "8", "2016-01-02 04:04:44", "62.210.162.184", "19");
INSERT INTO `wp_rg_form_view` VALUES("23716", "1", "2016-01-02 04:19:09", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("23717", "3", "2016-01-02 05:05:18", "202.46.54.108", "79");
INSERT INTO `wp_rg_form_view` VALUES("23718", "8", "2016-01-02 05:05:18", "202.46.54.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("23719", "3", "2016-01-02 06:05:22", "202.46.52.163", "67");
INSERT INTO `wp_rg_form_view` VALUES("23720", "8", "2016-01-02 06:05:23", "202.46.52.163", "7");
INSERT INTO `wp_rg_form_view` VALUES("23721", "1", "2016-01-02 06:05:23", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("23722", "3", "2016-01-02 07:05:25", "202.46.52.104", "107");
INSERT INTO `wp_rg_form_view` VALUES("23723", "8", "2016-01-02 07:05:25", "202.46.52.104", "14");
INSERT INTO `wp_rg_form_view` VALUES("23724", "3", "2016-01-02 08:05:27", "202.46.49.206", "165");
INSERT INTO `wp_rg_form_view` VALUES("23725", "8", "2016-01-02 08:05:27", "202.46.49.206", "21");
INSERT INTO `wp_rg_form_view` VALUES("23726", "3", "2016-01-02 09:05:30", "202.46.51.132", "64");
INSERT INTO `wp_rg_form_view` VALUES("23727", "8", "2016-01-02 09:05:30", "202.46.51.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("23728", "3", "2016-01-02 10:05:02", "174.129.237.157", "106");
INSERT INTO `wp_rg_form_view` VALUES("23729", "8", "2016-01-02 10:05:02", "174.129.237.157", "15");
INSERT INTO `wp_rg_form_view` VALUES("23730", "3", "2016-01-02 11:05:36", "202.46.57.204", "74");
INSERT INTO `wp_rg_form_view` VALUES("23731", "8", "2016-01-02 11:05:36", "202.46.57.204", "10");
INSERT INTO `wp_rg_form_view` VALUES("23732", "3", "2016-01-02 12:05:39", "202.46.50.74", "56");
INSERT INTO `wp_rg_form_view` VALUES("23733", "8", "2016-01-02 12:05:39", "202.46.50.74", "7");
INSERT INTO `wp_rg_form_view` VALUES("23734", "1", "2016-01-02 12:24:11", "23.95.40.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("23735", "3", "2016-01-02 13:05:43", "202.46.56.13", "96");
INSERT INTO `wp_rg_form_view` VALUES("23736", "8", "2016-01-02 13:05:43", "202.46.56.13", "11");
INSERT INTO `wp_rg_form_view` VALUES("23737", "3", "2016-01-02 14:05:45", "202.46.48.202", "114");
INSERT INTO `wp_rg_form_view` VALUES("23738", "8", "2016-01-02 14:05:45", "202.46.48.202", "15");
INSERT INTO `wp_rg_form_view` VALUES("23739", "3", "2016-01-02 15:05:48", "202.46.50.190", "92");
INSERT INTO `wp_rg_form_view` VALUES("23740", "8", "2016-01-02 15:05:48", "202.46.50.190", "12");
INSERT INTO `wp_rg_form_view` VALUES("23741", "5", "2016-01-02 15:09:25", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23742", "3", "2016-01-02 16:05:51", "202.46.56.14", "181");
INSERT INTO `wp_rg_form_view` VALUES("23743", "8", "2016-01-02 16:05:51", "202.46.56.14", "24");
INSERT INTO `wp_rg_form_view` VALUES("23744", "2", "2016-01-02 16:08:47", "195.154.227.118", "3");
INSERT INTO `wp_rg_form_view` VALUES("23745", "3", "2016-01-02 17:05:54", "202.46.56.202", "79");
INSERT INTO `wp_rg_form_view` VALUES("23746", "8", "2016-01-02 17:05:54", "202.46.56.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("23747", "3", "2016-01-02 18:05:58", "202.46.48.126", "90");
INSERT INTO `wp_rg_form_view` VALUES("23748", "8", "2016-01-02 18:05:58", "202.46.48.126", "11");
INSERT INTO `wp_rg_form_view` VALUES("23749", "3", "2016-01-02 19:06:03", "202.46.56.187", "85");
INSERT INTO `wp_rg_form_view` VALUES("23750", "8", "2016-01-02 19:06:03", "202.46.56.187", "11");
INSERT INTO `wp_rg_form_view` VALUES("23751", "7", "2016-01-02 19:43:31", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23752", "3", "2016-01-02 20:00:29", "46.118.126.200", "102");
INSERT INTO `wp_rg_form_view` VALUES("23753", "8", "2016-01-02 20:00:29", "46.118.126.200", "12");
INSERT INTO `wp_rg_form_view` VALUES("23754", "3", "2016-01-02 21:01:29", "202.46.58.181", "226");
INSERT INTO `wp_rg_form_view` VALUES("23755", "8", "2016-01-02 21:01:29", "202.46.58.181", "28");
INSERT INTO `wp_rg_form_view` VALUES("23756", "1", "2016-01-02 22:07:23", "192.151.145.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("23757", "3", "2016-01-02 22:07:23", "192.151.145.10", "89");
INSERT INTO `wp_rg_form_view` VALUES("23758", "8", "2016-01-02 22:07:23", "192.151.145.10", "11");
INSERT INTO `wp_rg_form_view` VALUES("23759", "3", "2016-01-02 23:07:32", "202.46.57.208", "112");
INSERT INTO `wp_rg_form_view` VALUES("23760", "8", "2016-01-02 23:07:32", "202.46.57.208", "15");
INSERT INTO `wp_rg_form_view` VALUES("23761", "3", "2016-01-03 00:00:59", "202.46.56.205", "84");
INSERT INTO `wp_rg_form_view` VALUES("23762", "8", "2016-01-03 00:00:59", "202.46.56.205", "10");
INSERT INTO `wp_rg_form_view` VALUES("23763", "3", "2016-01-03 01:03:31", "66.249.84.116", "201");
INSERT INTO `wp_rg_form_view` VALUES("23764", "8", "2016-01-03 01:03:31", "66.249.84.116", "25");
INSERT INTO `wp_rg_form_view` VALUES("23765", "1", "2016-01-03 01:23:41", "104.144.17.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("23766", "3", "2016-01-03 02:01:48", "202.46.56.201", "105");
INSERT INTO `wp_rg_form_view` VALUES("23767", "8", "2016-01-03 02:01:48", "202.46.56.201", "14");
INSERT INTO `wp_rg_form_view` VALUES("23768", "3", "2016-01-03 03:09:32", "24.108.28.170", "97");
INSERT INTO `wp_rg_form_view` VALUES("23769", "8", "2016-01-03 03:09:32", "24.108.28.170", "12");
INSERT INTO `wp_rg_form_view` VALUES("23770", "3", "2016-01-03 05:21:43", "136.243.48.85", "24");
INSERT INTO `wp_rg_form_view` VALUES("23771", "8", "2016-01-03 05:21:44", "136.243.48.85", "3");
INSERT INTO `wp_rg_form_view` VALUES("23772", "1", "2016-01-03 05:40:32", "98.237.176.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("23773", "2", "2016-01-03 06:10:09", "172.245.107.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("23774", "3", "2016-01-03 06:10:09", "172.245.107.251", "41");
INSERT INTO `wp_rg_form_view` VALUES("23775", "8", "2016-01-03 06:10:09", "172.245.107.251", "5");
INSERT INTO `wp_rg_form_view` VALUES("23776", "3", "2016-01-03 07:23:20", "205.250.180.113", "24");
INSERT INTO `wp_rg_form_view` VALUES("23777", "8", "2016-01-03 07:23:21", "205.250.180.113", "3");
INSERT INTO `wp_rg_form_view` VALUES("23778", "3", "2016-01-03 08:41:09", "188.215.22.17", "16");
INSERT INTO `wp_rg_form_view` VALUES("23779", "8", "2016-01-03 08:41:09", "188.215.22.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("23780", "3", "2016-01-03 09:02:13", "207.46.13.80", "219");
INSERT INTO `wp_rg_form_view` VALUES("23781", "8", "2016-01-03 09:02:13", "207.46.13.80", "27");
INSERT INTO `wp_rg_form_view` VALUES("23782", "3", "2016-01-03 10:28:30", "104.247.21.182", "74");
INSERT INTO `wp_rg_form_view` VALUES("23783", "8", "2016-01-03 10:28:30", "104.247.21.182", "9");
INSERT INTO `wp_rg_form_view` VALUES("23784", "3", "2016-01-03 11:29:11", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("23785", "8", "2016-01-03 11:29:11", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23786", "3", "2016-01-03 12:25:28", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("23787", "8", "2016-01-03 12:25:28", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("23788", "3", "2016-01-03 13:07:07", "178.137.160.2", "40");
INSERT INTO `wp_rg_form_view` VALUES("23789", "8", "2016-01-03 13:07:07", "178.137.160.2", "5");
INSERT INTO `wp_rg_form_view` VALUES("23790", "3", "2016-01-03 14:10:50", "62.210.162.184", "74");
INSERT INTO `wp_rg_form_view` VALUES("23791", "8", "2016-01-03 14:10:50", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("23792", "1", "2016-01-03 14:36:24", "62.210.141.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("23793", "3", "2016-01-03 15:17:42", "133.50.201.25", "282");
INSERT INTO `wp_rg_form_view` VALUES("23794", "8", "2016-01-03 15:17:42", "133.50.201.25", "35");
INSERT INTO `wp_rg_form_view` VALUES("23795", "2", "2016-01-03 15:18:28", "133.50.201.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("23796", "1", "2016-01-03 15:24:29", "192.151.145.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("23797", "3", "2016-01-03 16:21:56", "66.249.74.102", "57");
INSERT INTO `wp_rg_form_view` VALUES("23798", "8", "2016-01-03 16:21:56", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("23799", "3", "2016-01-03 17:12:03", "66.249.74.102", "16");
INSERT INTO `wp_rg_form_view` VALUES("23800", "8", "2016-01-03 17:12:03", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("23801", "3", "2016-01-03 18:31:58", "157.55.39.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("23802", "8", "2016-01-03 18:31:58", "157.55.39.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("23803", "3", "2016-01-03 19:21:30", "96.50.86.31", "33");
INSERT INTO `wp_rg_form_view` VALUES("23804", "8", "2016-01-03 19:21:30", "96.50.86.31", "4");
INSERT INTO `wp_rg_form_view` VALUES("23805", "1", "2016-01-03 20:23:10", "62.210.141.40", "6");
INSERT INTO `wp_rg_form_view` VALUES("23806", "3", "2016-01-03 20:23:10", "62.210.141.40", "117");
INSERT INTO `wp_rg_form_view` VALUES("23807", "8", "2016-01-03 20:23:10", "62.210.141.40", "14");
INSERT INTO `wp_rg_form_view` VALUES("23808", "3", "2016-01-03 21:05:23", "154.20.30.13", "56");
INSERT INTO `wp_rg_form_view` VALUES("23809", "8", "2016-01-03 21:05:23", "154.20.30.13", "7");
INSERT INTO `wp_rg_form_view` VALUES("23810", "3", "2016-01-03 22:40:23", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("23811", "8", "2016-01-03 22:40:24", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23812", "3", "2016-01-03 23:12:09", "46.118.126.200", "124");
INSERT INTO `wp_rg_form_view` VALUES("23813", "8", "2016-01-03 23:12:09", "46.118.126.200", "18");
INSERT INTO `wp_rg_form_view` VALUES("23814", "3", "2016-01-04 00:43:59", "68.180.229.161", "32");
INSERT INTO `wp_rg_form_view` VALUES("23815", "8", "2016-01-04 00:43:59", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("23816", "3", "2016-01-04 01:28:58", "184.151.231.94", "64");
INSERT INTO `wp_rg_form_view` VALUES("23817", "8", "2016-01-04 01:28:58", "184.151.231.94", "8");
INSERT INTO `wp_rg_form_view` VALUES("23818", "3", "2016-01-04 02:02:15", "24.108.9.238", "81");
INSERT INTO `wp_rg_form_view` VALUES("23819", "8", "2016-01-04 02:02:16", "24.108.9.238", "10");
INSERT INTO `wp_rg_form_view` VALUES("23820", "3", "2016-01-04 03:19:38", "62.210.162.184", "80");
INSERT INTO `wp_rg_form_view` VALUES("23821", "8", "2016-01-04 03:19:38", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("23822", "3", "2016-01-04 04:05:01", "24.108.9.238", "121");
INSERT INTO `wp_rg_form_view` VALUES("23823", "8", "2016-01-04 04:05:01", "24.108.9.238", "16");
INSERT INTO `wp_rg_form_view` VALUES("23824", "3", "2016-01-04 05:12:59", "184.66.39.97", "98");
INSERT INTO `wp_rg_form_view` VALUES("23825", "8", "2016-01-04 05:12:59", "184.66.39.97", "12");
INSERT INTO `wp_rg_form_view` VALUES("23826", "3", "2016-01-04 06:11:02", "202.46.54.97", "342");
INSERT INTO `wp_rg_form_view` VALUES("23827", "8", "2016-01-04 06:11:02", "202.46.54.97", "44");
INSERT INTO `wp_rg_form_view` VALUES("23828", "2", "2016-01-04 06:52:05", "78.159.213.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("23829", "8", "2016-01-04 07:09:24", "202.46.58.189", "22");
INSERT INTO `wp_rg_form_view` VALUES("23830", "3", "2016-01-04 07:09:24", "202.46.58.189", "168");
INSERT INTO `wp_rg_form_view` VALUES("23831", "2", "2016-01-04 07:13:17", "195.154.146.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("23832", "3", "2016-01-04 08:01:53", "202.46.54.160", "107");
INSERT INTO `wp_rg_form_view` VALUES("23833", "8", "2016-01-04 08:01:53", "202.46.54.160", "14");
INSERT INTO `wp_rg_form_view` VALUES("23834", "1", "2016-01-04 08:54:28", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("23835", "3", "2016-01-04 09:00:16", "202.46.48.195", "130");
INSERT INTO `wp_rg_form_view` VALUES("23836", "8", "2016-01-04 09:00:16", "202.46.48.195", "17");
INSERT INTO `wp_rg_form_view` VALUES("23837", "1", "2016-01-04 09:30:56", "192.151.145.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("23838", "1", "2016-01-04 09:30:56", "192.151.145.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("23839", "3", "2016-01-04 10:06:33", "66.249.74.104", "104");
INSERT INTO `wp_rg_form_view` VALUES("23840", "8", "2016-01-04 10:06:33", "66.249.74.104", "14");
INSERT INTO `wp_rg_form_view` VALUES("23841", "3", "2016-01-04 11:16:07", "202.46.52.202", "70");
INSERT INTO `wp_rg_form_view` VALUES("23842", "8", "2016-01-04 11:16:07", "202.46.52.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("23843", "3", "2016-01-04 12:06:09", "202.46.49.114", "99");
INSERT INTO `wp_rg_form_view` VALUES("23844", "8", "2016-01-04 12:06:09", "202.46.49.114", "13");
INSERT INTO `wp_rg_form_view` VALUES("23845", "3", "2016-01-04 13:04:32", "202.46.58.186", "84");
INSERT INTO `wp_rg_form_view` VALUES("23846", "8", "2016-01-04 13:04:32", "202.46.58.186", "11");
INSERT INTO `wp_rg_form_view` VALUES("23847", "3", "2016-01-04 14:02:55", "202.46.50.19", "133");
INSERT INTO `wp_rg_form_view` VALUES("23848", "8", "2016-01-04 14:02:55", "202.46.50.19", "16");
INSERT INTO `wp_rg_form_view` VALUES("23849", "3", "2016-01-04 15:01:15", "202.46.51.104", "72");
INSERT INTO `wp_rg_form_view` VALUES("23850", "8", "2016-01-04 15:01:15", "202.46.51.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("23851", "3", "2016-01-04 16:01:30", "202.46.52.158", "135");
INSERT INTO `wp_rg_form_view` VALUES("23852", "8", "2016-01-04 16:01:31", "202.46.52.158", "18");
INSERT INTO `wp_rg_form_view` VALUES("23853", "9", "2016-01-04 16:11:57", "188.165.15.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("23854", "3", "2016-01-04 17:08:13", "202.46.54.21", "150");
INSERT INTO `wp_rg_form_view` VALUES("23855", "8", "2016-01-04 17:08:14", "202.46.54.21", "17");
INSERT INTO `wp_rg_form_view` VALUES("23856", "3", "2016-01-04 18:00:52", "91.196.122.186", "212");
INSERT INTO `wp_rg_form_view` VALUES("23857", "8", "2016-01-04 18:00:52", "91.196.122.186", "27");
INSERT INTO `wp_rg_form_view` VALUES("23858", "3", "2016-01-04 19:05:03", "202.46.57.187", "172");
INSERT INTO `wp_rg_form_view` VALUES("23859", "8", "2016-01-04 19:05:03", "202.46.57.187", "22");
INSERT INTO `wp_rg_form_view` VALUES("23860", "3", "2016-01-04 20:03:21", "202.46.58.27", "82");
INSERT INTO `wp_rg_form_view` VALUES("23861", "8", "2016-01-04 20:03:21", "202.46.58.27", "11");
INSERT INTO `wp_rg_form_view` VALUES("23862", "3", "2016-01-04 21:03:08", "204.239.250.1", "138");
INSERT INTO `wp_rg_form_view` VALUES("23863", "8", "2016-01-04 21:03:08", "204.239.250.1", "18");
INSERT INTO `wp_rg_form_view` VALUES("23864", "3", "2016-01-04 22:00:03", "202.46.50.17", "113");
INSERT INTO `wp_rg_form_view` VALUES("23865", "8", "2016-01-04 22:00:03", "202.46.50.17", "15");
INSERT INTO `wp_rg_form_view` VALUES("23866", "3", "2016-01-04 23:04:10", "46.118.226.141", "102");
INSERT INTO `wp_rg_form_view` VALUES("23867", "8", "2016-01-04 23:04:10", "46.118.226.141", "13");
INSERT INTO `wp_rg_form_view` VALUES("23868", "3", "2016-01-05 00:14:32", "202.46.55.146", "100");
INSERT INTO `wp_rg_form_view` VALUES("23869", "8", "2016-01-05 00:14:32", "202.46.55.146", "14");
INSERT INTO `wp_rg_form_view` VALUES("23870", "3", "2016-01-05 01:06:56", "202.46.48.89", "66");
INSERT INTO `wp_rg_form_view` VALUES("23871", "8", "2016-01-05 01:06:56", "202.46.48.89", "8");
INSERT INTO `wp_rg_form_view` VALUES("23872", "1", "2016-01-05 01:56:23", "24.108.7.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("23873", "3", "2016-01-05 02:00:30", "24.108.7.238", "53");
INSERT INTO `wp_rg_form_view` VALUES("23874", "8", "2016-01-05 02:00:30", "24.108.7.238", "7");
INSERT INTO `wp_rg_form_view` VALUES("23875", "8", "2016-01-05 03:07:49", "202.46.52.67", "15");
INSERT INTO `wp_rg_form_view` VALUES("23876", "3", "2016-01-05 03:07:50", "202.46.52.67", "107");
INSERT INTO `wp_rg_form_view` VALUES("23877", "9", "2016-01-05 04:02:42", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23878", "3", "2016-01-05 04:02:42", "68.180.229.161", "111");
INSERT INTO `wp_rg_form_view` VALUES("23879", "8", "2016-01-05 04:02:42", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("23880", "1", "2016-01-05 05:29:51", "23.95.244.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("23881", "3", "2016-01-05 05:29:52", "23.95.244.105", "26");
INSERT INTO `wp_rg_form_view` VALUES("23882", "8", "2016-01-05 05:29:52", "23.95.244.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("23883", "3", "2016-01-05 06:40:16", "188.165.15.214", "8");
INSERT INTO `wp_rg_form_view` VALUES("23884", "8", "2016-01-05 06:40:16", "188.165.15.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("23885", "3", "2016-01-05 07:02:04", "178.137.160.2", "1197");
INSERT INTO `wp_rg_form_view` VALUES("23886", "3", "2016-01-05 07:02:04", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23887", "8", "2016-01-05 07:02:05", "178.137.160.2", "153");
INSERT INTO `wp_rg_form_view` VALUES("23888", "8", "2016-01-05 07:02:05", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("23889", "1", "2016-01-05 07:46:43", "107.170.167.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("23890", "5", "2016-01-05 07:55:36", "107.170.167.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("23891", "3", "2016-01-05 08:00:01", "107.170.167.10", "3111");
INSERT INTO `wp_rg_form_view` VALUES("23892", "8", "2016-01-05 08:00:01", "107.170.167.10", "393");
INSERT INTO `wp_rg_form_view` VALUES("23893", "6", "2016-01-05 08:07:06", "107.170.167.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("23894", "9", "2016-01-05 08:17:16", "107.170.167.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("23895", "1", "2016-01-05 08:39:28", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("23896", "3", "2016-01-05 09:01:36", "107.170.167.10", "361");
INSERT INTO `wp_rg_form_view` VALUES("23897", "8", "2016-01-05 09:01:36", "107.170.167.10", "47");
INSERT INTO `wp_rg_form_view` VALUES("23898", "2", "2016-01-05 09:03:16", "107.170.167.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("23899", "7", "2016-01-05 09:38:27", "157.55.39.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("23900", "3", "2016-01-05 10:03:10", "68.180.229.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("23901", "8", "2016-01-05 10:03:10", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("23902", "3", "2016-01-05 11:35:29", "207.46.13.99", "37");
INSERT INTO `wp_rg_form_view` VALUES("23903", "8", "2016-01-05 11:35:29", "207.46.13.99", "5");
INSERT INTO `wp_rg_form_view` VALUES("23904", "3", "2016-01-05 12:13:52", "192.99.8.19", "65");
INSERT INTO `wp_rg_form_view` VALUES("23905", "8", "2016-01-05 12:13:52", "192.99.8.19", "8");
INSERT INTO `wp_rg_form_view` VALUES("23906", "1", "2016-01-05 12:29:32", "23.95.244.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("23907", "3", "2016-01-05 13:12:07", "144.76.153.198", "186");
INSERT INTO `wp_rg_form_view` VALUES("23908", "8", "2016-01-05 13:12:08", "144.76.153.198", "24");
INSERT INTO `wp_rg_form_view` VALUES("23909", "2", "2016-01-05 13:56:37", "104.236.47.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("23910", "3", "2016-01-05 14:02:52", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("23911", "8", "2016-01-05 14:02:52", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("23912", "3", "2016-01-05 15:29:52", "66.249.74.102", "57");
INSERT INTO `wp_rg_form_view` VALUES("23913", "8", "2016-01-05 15:29:53", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("23914", "2", "2016-01-05 15:56:27", "216.158.206.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("23915", "3", "2016-01-05 16:25:38", "66.249.74.102", "126");
INSERT INTO `wp_rg_form_view` VALUES("23916", "8", "2016-01-05 16:25:38", "66.249.74.102", "15");
INSERT INTO `wp_rg_form_view` VALUES("23917", "1", "2016-01-05 16:56:02", "162.156.87.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("23918", "2", "2016-01-05 17:02:42", "207.46.13.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("23919", "3", "2016-01-05 17:02:42", "207.46.13.99", "58");
INSERT INTO `wp_rg_form_view` VALUES("23920", "8", "2016-01-05 17:02:42", "207.46.13.99", "7");
INSERT INTO `wp_rg_form_view` VALUES("23921", "1", "2016-01-05 18:07:36", "23.95.244.177", "4");
INSERT INTO `wp_rg_form_view` VALUES("23922", "3", "2016-01-05 18:07:36", "23.95.244.177", "187");
INSERT INTO `wp_rg_form_view` VALUES("23923", "8", "2016-01-05 18:07:36", "23.95.244.177", "23");
INSERT INTO `wp_rg_form_view` VALUES("23924", "5", "2016-01-05 18:12:27", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("23925", "3", "2016-01-05 19:07:35", "202.46.57.183", "45");
INSERT INTO `wp_rg_form_view` VALUES("23926", "8", "2016-01-05 19:07:35", "202.46.57.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("23927", "6", "2016-01-05 19:21:08", "188.165.15.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("23928", "8", "2016-01-05 20:06:13", "202.46.52.64", "24");
INSERT INTO `wp_rg_form_view` VALUES("23929", "3", "2016-01-05 20:06:14", "202.46.52.64", "195");
INSERT INTO `wp_rg_form_view` VALUES("23930", "8", "2016-01-05 21:13:19", "24.108.22.54", "11");
INSERT INTO `wp_rg_form_view` VALUES("23931", "3", "2016-01-05 21:13:19", "24.108.22.54", "89");
INSERT INTO `wp_rg_form_view` VALUES("23932", "3", "2016-01-05 22:03:26", "202.46.48.27", "61");
INSERT INTO `wp_rg_form_view` VALUES("23933", "8", "2016-01-05 22:03:26", "202.46.48.27", "7");
INSERT INTO `wp_rg_form_view` VALUES("23934", "3", "2016-01-05 23:02:03", "202.46.49.142", "47");
INSERT INTO `wp_rg_form_view` VALUES("23935", "8", "2016-01-05 23:02:03", "202.46.49.142", "6");
INSERT INTO `wp_rg_form_view` VALUES("23936", "3", "2016-01-06 00:00:40", "202.46.58.137", "51");
INSERT INTO `wp_rg_form_view` VALUES("23937", "8", "2016-01-06 00:00:40", "202.46.58.137", "7");
INSERT INTO `wp_rg_form_view` VALUES("23938", "3", "2016-01-06 01:06:01", "188.165.15.214", "73");
INSERT INTO `wp_rg_form_view` VALUES("23939", "8", "2016-01-06 01:06:01", "188.165.15.214", "8");
INSERT INTO `wp_rg_form_view` VALUES("23940", "1", "2016-01-06 01:36:48", "188.165.15.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("23941", "3", "2016-01-06 02:17:27", "202.46.51.161", "39");
INSERT INTO `wp_rg_form_view` VALUES("23942", "8", "2016-01-06 02:17:27", "202.46.51.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("23943", "8", "2016-01-06 03:09:56", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("23944", "3", "2016-01-06 03:16:03", "202.46.50.152", "38");
INSERT INTO `wp_rg_form_view` VALUES("23945", "3", "2016-01-06 04:02:15", "100.43.81.141", "149");
INSERT INTO `wp_rg_form_view` VALUES("23946", "8", "2016-01-06 04:02:15", "100.43.81.141", "18");
INSERT INTO `wp_rg_form_view` VALUES("23947", "3", "2016-01-06 05:13:00", "202.46.48.146", "63");
INSERT INTO `wp_rg_form_view` VALUES("23948", "8", "2016-01-06 05:13:00", "202.46.48.146", "7");
INSERT INTO `wp_rg_form_view` VALUES("23949", "3", "2016-01-06 06:10:45", "202.46.58.80", "39");
INSERT INTO `wp_rg_form_view` VALUES("23950", "8", "2016-01-06 06:10:45", "202.46.58.80", "5");
INSERT INTO `wp_rg_form_view` VALUES("23951", "3", "2016-01-06 07:17:50", "104.247.240.99", "236");
INSERT INTO `wp_rg_form_view` VALUES("23952", "8", "2016-01-06 07:17:53", "104.247.240.99", "28");
INSERT INTO `wp_rg_form_view` VALUES("23953", "1", "2016-01-06 07:28:57", "24.69.41.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("23954", "3", "2016-01-06 08:30:43", "188.165.15.214", "16");
INSERT INTO `wp_rg_form_view` VALUES("23955", "8", "2016-01-06 08:30:43", "188.165.15.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("23956", "3", "2016-01-06 09:14:33", "24.215.121.31", "73");
INSERT INTO `wp_rg_form_view` VALUES("23957", "8", "2016-01-06 09:14:34", "24.215.121.31", "9");
INSERT INTO `wp_rg_form_view` VALUES("23958", "3", "2016-01-06 10:05:14", "157.55.39.48", "98");
INSERT INTO `wp_rg_form_view` VALUES("23959", "8", "2016-01-06 10:05:14", "157.55.39.48", "12");
INSERT INTO `wp_rg_form_view` VALUES("23960", "1", "2016-01-06 11:25:46", "172.245.113.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("23961", "3", "2016-01-06 11:25:46", "172.245.113.3", "24");
INSERT INTO `wp_rg_form_view` VALUES("23962", "8", "2016-01-06 11:25:46", "172.245.113.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("23963", "3", "2016-01-06 12:23:54", "104.143.218.221", "81");
INSERT INTO `wp_rg_form_view` VALUES("23964", "8", "2016-01-06 12:23:54", "104.143.218.221", "10");
INSERT INTO `wp_rg_form_view` VALUES("23965", "3", "2016-01-06 13:07:32", "157.55.39.49", "116");
INSERT INTO `wp_rg_form_view` VALUES("23966", "8", "2016-01-06 13:07:32", "157.55.39.49", "14");
INSERT INTO `wp_rg_form_view` VALUES("23967", "1", "2016-01-06 13:13:18", "172.245.113.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("23968", "3", "2016-01-06 14:19:19", "62.210.162.184", "16");
INSERT INTO `wp_rg_form_view` VALUES("23969", "8", "2016-01-06 14:19:19", "62.210.162.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("23970", "3", "2016-01-06 15:03:49", "66.249.74.106", "146");
INSERT INTO `wp_rg_form_view` VALUES("23971", "8", "2016-01-06 15:03:49", "66.249.74.106", "18");
INSERT INTO `wp_rg_form_view` VALUES("23972", "2", "2016-01-06 15:10:55", "198.98.110.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("23973", "1", "2016-01-06 15:39:01", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("23974", "3", "2016-01-06 16:00:06", "62.210.162.184", "71");
INSERT INTO `wp_rg_form_view` VALUES("23975", "8", "2016-01-06 16:00:06", "62.210.162.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("23976", "3", "2016-01-06 17:05:19", "202.46.50.94", "111");
INSERT INTO `wp_rg_form_view` VALUES("23977", "8", "2016-01-06 17:05:19", "202.46.50.94", "14");
INSERT INTO `wp_rg_form_view` VALUES("23978", "1", "2016-01-06 17:26:42", "216.158.206.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("23979", "3", "2016-01-06 18:03:04", "202.46.51.58", "166");
INSERT INTO `wp_rg_form_view` VALUES("23980", "8", "2016-01-06 18:03:04", "202.46.51.58", "21");
INSERT INTO `wp_rg_form_view` VALUES("23981", "3", "2016-01-06 19:00:49", "202.46.53.66", "181");
INSERT INTO `wp_rg_form_view` VALUES("23982", "8", "2016-01-06 19:00:49", "202.46.53.66", "22");
INSERT INTO `wp_rg_form_view` VALUES("23983", "3", "2016-01-06 20:00:00", "184.151.231.33", "60");
INSERT INTO `wp_rg_form_view` VALUES("23984", "8", "2016-01-06 20:00:00", "184.151.231.33", "8");
INSERT INTO `wp_rg_form_view` VALUES("23985", "3", "2016-01-06 21:12:24", "62.210.162.184", "202");
INSERT INTO `wp_rg_form_view` VALUES("23986", "8", "2016-01-06 21:12:24", "62.210.162.184", "24");
INSERT INTO `wp_rg_form_view` VALUES("23987", "9", "2016-01-06 21:25:10", "207.46.13.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("23988", "1", "2016-01-06 21:51:45", "207.46.13.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("23989", "3", "2016-01-06 22:13:20", "202.46.56.172", "76");
INSERT INTO `wp_rg_form_view` VALUES("23990", "8", "2016-01-06 22:13:20", "202.46.56.172", "10");
INSERT INTO `wp_rg_form_view` VALUES("23991", "1", "2016-01-06 22:39:55", "120.237.57.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("23992", "3", "2016-01-06 23:11:05", "202.46.54.108", "48");
INSERT INTO `wp_rg_form_view` VALUES("23993", "8", "2016-01-06 23:11:05", "202.46.54.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("23994", "3", "2016-01-07 00:03:04", "46.118.226.141", "143");
INSERT INTO `wp_rg_form_view` VALUES("23995", "8", "2016-01-07 00:03:04", "46.118.226.141", "17");
INSERT INTO `wp_rg_form_view` VALUES("23996", "3", "2016-01-07 01:00:18", "66.249.74.102", "57");
INSERT INTO `wp_rg_form_view` VALUES("23997", "8", "2016-01-07 01:00:18", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("23998", "3", "2016-01-07 02:09:39", "93.127.146.54", "107");
INSERT INTO `wp_rg_form_view` VALUES("23999", "8", "2016-01-07 02:09:39", "93.127.146.54", "13");
INSERT INTO `wp_rg_form_view` VALUES("24000", "2", "2016-01-07 02:29:31", "107.161.83.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("24001", "8", "2016-01-07 03:03:18", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("24002", "3", "2016-01-07 03:03:18", "68.180.229.161", "71");
INSERT INTO `wp_rg_form_view` VALUES("24003", "3", "2016-01-07 04:17:00", "202.46.56.90", "49");
INSERT INTO `wp_rg_form_view` VALUES("24004", "8", "2016-01-07 04:17:00", "202.46.56.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("24005", "1", "2016-01-07 04:22:29", "104.227.52.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("24006", "3", "2016-01-07 05:04:36", "202.46.54.142", "31");
INSERT INTO `wp_rg_form_view` VALUES("24007", "8", "2016-01-07 05:04:36", "202.46.54.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("24008", "3", "2016-01-07 06:16:02", "202.46.49.193", "87");
INSERT INTO `wp_rg_form_view` VALUES("24009", "8", "2016-01-07 06:16:02", "202.46.49.193", "11");
INSERT INTO `wp_rg_form_view` VALUES("24010", "3", "2016-01-07 07:01:09", "157.55.39.155", "346");
INSERT INTO `wp_rg_form_view` VALUES("24011", "8", "2016-01-07 07:01:09", "157.55.39.155", "42");
INSERT INTO `wp_rg_form_view` VALUES("24012", "1", "2016-01-07 07:01:43", "207.46.13.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("24013", "1", "2016-01-07 08:04:04", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("24014", "3", "2016-01-07 08:04:04", "192.99.166.236", "96");
INSERT INTO `wp_rg_form_view` VALUES("24015", "8", "2016-01-07 08:04:04", "192.99.166.236", "13");
INSERT INTO `wp_rg_form_view` VALUES("24016", "3", "2016-01-07 09:02:38", "202.46.54.184", "85");
INSERT INTO `wp_rg_form_view` VALUES("24017", "8", "2016-01-07 09:02:38", "202.46.54.184", "11");
INSERT INTO `wp_rg_form_view` VALUES("24018", "3", "2016-01-07 10:14:02", "202.46.55.11", "1282");
INSERT INTO `wp_rg_form_view` VALUES("24019", "8", "2016-01-07 10:14:02", "202.46.55.11", "161");
INSERT INTO `wp_rg_form_view` VALUES("24020", "6", "2016-01-07 10:33:04", "157.55.39.49", "2");
INSERT INTO `wp_rg_form_view` VALUES("24021", "2", "2016-01-07 10:42:36", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("24022", "1", "2016-01-07 10:44:47", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("24023", "5", "2016-01-07 10:48:11", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("24024", "9", "2016-01-07 10:49:48", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("24025", "3", "2016-01-07 11:00:03", "5.9.98.130", "4509");
INSERT INTO `wp_rg_form_view` VALUES("24026", "8", "2016-01-07 11:00:03", "5.9.98.130", "581");
INSERT INTO `wp_rg_form_view` VALUES("24027", "1", "2016-01-07 11:19:46", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("24028", "3", "2016-01-07 12:00:59", "5.9.98.130", "4487");
INSERT INTO `wp_rg_form_view` VALUES("24029", "8", "2016-01-07 12:00:59", "5.9.98.130", "585");
INSERT INTO `wp_rg_form_view` VALUES("24030", "3", "2016-01-07 13:00:02", "5.9.98.130", "2386");
INSERT INTO `wp_rg_form_view` VALUES("24031", "8", "2016-01-07 13:00:03", "5.9.98.130", "293");
INSERT INTO `wp_rg_form_view` VALUES("24032", "3", "2016-01-07 14:00:00", "5.9.98.130", "5932");
INSERT INTO `wp_rg_form_view` VALUES("24033", "8", "2016-01-07 14:00:05", "5.9.98.130", "771");
INSERT INTO `wp_rg_form_view` VALUES("24034", "3", "2016-01-07 15:00:00", "5.9.98.130", "3869");
INSERT INTO `wp_rg_form_view` VALUES("24035", "8", "2016-01-07 15:00:07", "5.9.98.130", "493");
INSERT INTO `wp_rg_form_view` VALUES("24036", "3", "2016-01-07 16:34:51", "202.46.51.86", "676");
INSERT INTO `wp_rg_form_view` VALUES("24037", "8", "2016-01-07 16:34:52", "202.46.51.86", "85");
INSERT INTO `wp_rg_form_view` VALUES("24038", "3", "2016-01-07 17:00:00", "5.9.98.130", "5088");
INSERT INTO `wp_rg_form_view` VALUES("24039", "8", "2016-01-07 17:00:00", "5.9.98.130", "589");
INSERT INTO `wp_rg_form_view` VALUES("24040", "2", "2016-01-07 17:47:57", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("24041", "3", "2016-01-07 18:00:00", "5.9.98.130", "5966");
INSERT INTO `wp_rg_form_view` VALUES("24042", "8", "2016-01-07 18:00:01", "5.9.98.130", "871");
INSERT INTO `wp_rg_form_view` VALUES("24043", "1", "2016-01-07 18:38:29", "207.46.13.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("24044", "5", "2016-01-07 18:56:20", "188.165.15.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("24045", "3", "2016-01-07 19:00:02", "5.9.98.130", "5533");
INSERT INTO `wp_rg_form_view` VALUES("24046", "8", "2016-01-07 19:00:02", "5.9.98.130", "711");
INSERT INTO `wp_rg_form_view` VALUES("24047", "5", "2016-01-07 19:04:46", "184.66.135.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("24048", "1", "2016-01-07 19:05:51", "184.66.135.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("24049", "3", "2016-01-07 20:00:00", "5.9.98.130", "2839");
INSERT INTO `wp_rg_form_view` VALUES("24050", "8", "2016-01-07 20:00:01", "5.9.98.130", "336");
INSERT INTO `wp_rg_form_view` VALUES("24051", "3", "2016-01-07 21:02:00", "5.9.98.130", "2197");
INSERT INTO `wp_rg_form_view` VALUES("24052", "8", "2016-01-07 21:02:00", "5.9.98.130", "275");
INSERT INTO `wp_rg_form_view` VALUES("24053", "9", "2016-01-07 21:50:46", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("24054", "3", "2016-01-07 22:01:15", "188.40.112.210", "61");
INSERT INTO `wp_rg_form_view` VALUES("24055", "8", "2016-01-07 22:01:16", "188.40.112.210", "8");
INSERT INTO `wp_rg_form_view` VALUES("24056", "3", "2016-01-07 23:14:12", "68.180.229.161", "64");
INSERT INTO `wp_rg_form_view` VALUES("24057", "8", "2016-01-07 23:14:12", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("24058", "3", "2016-01-08 00:07:05", "202.46.58.138", "150");
INSERT INTO `wp_rg_form_view` VALUES("24059", "8", "2016-01-08 00:07:05", "202.46.58.138", "22");
INSERT INTO `wp_rg_form_view` VALUES("24060", "3", "2016-01-08 01:06:40", "96.50.89.195", "46");
INSERT INTO `wp_rg_form_view` VALUES("24061", "8", "2016-01-08 01:06:40", "96.50.89.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("24062", "3", "2016-01-08 02:07:14", "104.247.21.182", "130");
INSERT INTO `wp_rg_form_view` VALUES("24063", "8", "2016-01-08 02:07:14", "104.247.21.182", "16");
INSERT INTO `wp_rg_form_view` VALUES("24064", "3", "2016-01-08 03:08:38", "202.46.54.109", "120");
INSERT INTO `wp_rg_form_view` VALUES("24065", "8", "2016-01-08 03:08:38", "202.46.54.109", "15");
INSERT INTO `wp_rg_form_view` VALUES("24066", "1", "2016-01-08 03:59:00", "188.240.141.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("24067", "1", "2016-01-08 04:02:24", "98.237.176.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("24068", "3", "2016-01-08 04:02:24", "98.237.176.97", "57");
INSERT INTO `wp_rg_form_view` VALUES("24069", "8", "2016-01-08 04:02:24", "98.237.176.97", "7");
INSERT INTO `wp_rg_form_view` VALUES("24070", "3", "2016-01-08 05:22:36", "202.46.55.176", "32");
INSERT INTO `wp_rg_form_view` VALUES("24071", "8", "2016-01-08 05:22:36", "202.46.55.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("24072", "1", "2016-01-08 06:03:04", "23.95.244.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("24073", "3", "2016-01-08 06:03:04", "23.95.244.177", "65");
INSERT INTO `wp_rg_form_view` VALUES("24074", "8", "2016-01-08 06:03:04", "23.95.244.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("24075", "3", "2016-01-08 07:03:05", "202.46.49.202", "68");
INSERT INTO `wp_rg_form_view` VALUES("24076", "8", "2016-01-08 07:03:05", "202.46.49.202", "11");
INSERT INTO `wp_rg_form_view` VALUES("24077", "3", "2016-01-08 08:10:03", "202.46.57.161", "39");
INSERT INTO `wp_rg_form_view` VALUES("24078", "8", "2016-01-08 08:10:03", "202.46.57.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("24079", "3", "2016-01-08 09:17:01", "202.46.55.91", "28");
INSERT INTO `wp_rg_form_view` VALUES("24080", "8", "2016-01-08 09:17:01", "202.46.55.91", "4");
INSERT INTO `wp_rg_form_view` VALUES("24081", "3", "2016-01-08 10:57:28", "202.46.49.134", "13");
INSERT INTO `wp_rg_form_view` VALUES("24082", "8", "2016-01-08 10:57:28", "202.46.49.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("24083", "3", "2016-01-08 11:01:29", "178.137.89.157", "290");
INSERT INTO `wp_rg_form_view` VALUES("24084", "8", "2016-01-08 11:01:29", "178.137.89.157", "36");
INSERT INTO `wp_rg_form_view` VALUES("24085", "1", "2016-01-08 11:35:34", "23.95.246.74", "9");
INSERT INTO `wp_rg_form_view` VALUES("24086", "3", "2016-01-08 12:04:16", "157.55.39.155", "89");
INSERT INTO `wp_rg_form_view` VALUES("24087", "8", "2016-01-08 12:04:16", "157.55.39.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("24088", "1", "2016-01-08 12:11:44", "192.151.145.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("24089", "3", "2016-01-08 13:09:42", "54.183.153.209", "81");
INSERT INTO `wp_rg_form_view` VALUES("24090", "8", "2016-01-08 13:09:42", "54.183.153.209", "10");
INSERT INTO `wp_rg_form_view` VALUES("24091", "3", "2016-01-08 14:18:24", "202.46.52.155", "30");
INSERT INTO `wp_rg_form_view` VALUES("24092", "8", "2016-01-08 14:18:25", "202.46.52.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("24093", "1", "2016-01-08 15:04:04", "107.189.36.6", "4");
INSERT INTO `wp_rg_form_view` VALUES("24094", "3", "2016-01-08 15:04:04", "107.189.36.6", "93");
INSERT INTO `wp_rg_form_view` VALUES("24095", "8", "2016-01-08 15:04:04", "107.189.36.6", "12");
INSERT INTO `wp_rg_form_view` VALUES("24096", "3", "2016-01-08 16:06:39", "68.180.229.161", "32");
INSERT INTO `wp_rg_form_view` VALUES("24097", "8", "2016-01-08 16:06:39", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("24098", "1", "2016-01-08 16:23:44", "104.140.71.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("24099", "3", "2016-01-08 17:05:51", "202.46.53.46", "39");
INSERT INTO `wp_rg_form_view` VALUES("24100", "8", "2016-01-08 17:05:51", "202.46.53.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("24101", "3", "2016-01-08 18:12:49", "202.46.57.18", "159");
INSERT INTO `wp_rg_form_view` VALUES("24102", "8", "2016-01-08 18:12:49", "202.46.57.18", "19");
INSERT INTO `wp_rg_form_view` VALUES("24103", "3", "2016-01-08 19:19:48", "202.46.48.95", "39");
INSERT INTO `wp_rg_form_view` VALUES("24104", "8", "2016-01-08 19:19:48", "202.46.48.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("24105", "3", "2016-01-08 20:05:36", "157.55.39.185", "56");
INSERT INTO `wp_rg_form_view` VALUES("24106", "8", "2016-01-08 20:05:36", "157.55.39.185", "8");
INSERT INTO `wp_rg_form_view` VALUES("24107", "3", "2016-01-08 21:00:16", "202.46.55.137", "364");
INSERT INTO `wp_rg_form_view` VALUES("24108", "8", "2016-01-08 21:00:16", "202.46.55.137", "45");
INSERT INTO `wp_rg_form_view` VALUES("24109", "2", "2016-01-08 21:46:47", "185.35.21.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("24110", "3", "2016-01-08 22:00:04", "188.165.15.214", "670");
INSERT INTO `wp_rg_form_view` VALUES("24111", "8", "2016-01-08 22:00:04", "188.165.15.214", "86");
INSERT INTO `wp_rg_form_view` VALUES("24112", "1", "2016-01-08 22:16:11", "69.4.225.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("24113", "2", "2016-01-08 22:16:28", "71.7.181.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("24114", "3", "2016-01-08 23:14:13", "202.46.58.185", "184");
INSERT INTO `wp_rg_form_view` VALUES("24115", "8", "2016-01-08 23:14:13", "202.46.58.185", "23");
INSERT INTO `wp_rg_form_view` VALUES("24116", "2", "2016-01-08 23:40:26", "195.154.227.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("24117", "8", "2016-01-09 00:21:12", "202.46.57.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("24118", "3", "2016-01-09 00:21:12", "202.46.57.160", "49");
INSERT INTO `wp_rg_form_view` VALUES("24119", "3", "2016-01-09 01:28:10", "202.46.56.70", "13");
INSERT INTO `wp_rg_form_view` VALUES("24120", "8", "2016-01-09 01:28:10", "202.46.56.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("24121", "1", "2016-01-09 02:37:04", "192.151.145.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("24122", "3", "2016-01-09 02:37:05", "192.151.145.11", "48");
INSERT INTO `wp_rg_form_view` VALUES("24123", "8", "2016-01-09 02:37:06", "192.151.145.11", "6");
INSERT INTO `wp_rg_form_view` VALUES("24124", "3", "2016-01-09 03:08:39", "202.46.51.186", "25");
INSERT INTO `wp_rg_form_view` VALUES("24125", "8", "2016-01-09 03:08:39", "202.46.51.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("24126", "3", "2016-01-09 04:15:38", "202.46.54.13", "95");
INSERT INTO `wp_rg_form_view` VALUES("24127", "8", "2016-01-09 04:15:38", "202.46.54.13", "12");
INSERT INTO `wp_rg_form_view` VALUES("24128", "1", "2016-01-09 04:36:50", "192.151.145.11", "6");
INSERT INTO `wp_rg_form_view` VALUES("24129", "3", "2016-01-09 05:22:36", "202.46.51.210", "178");
INSERT INTO `wp_rg_form_view` VALUES("24130", "8", "2016-01-09 05:22:37", "202.46.51.210", "21");
INSERT INTO `wp_rg_form_view` VALUES("24131", "2", "2016-01-09 05:35:50", "216.158.206.177", "4");
INSERT INTO `wp_rg_form_view` VALUES("24132", "3", "2016-01-09 06:29:34", "202.46.55.182", "17");
INSERT INTO `wp_rg_form_view` VALUES("24133", "8", "2016-01-09 06:29:34", "202.46.55.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("24134", "3", "2016-01-09 07:03:08", "202.46.58.203", "114");
INSERT INTO `wp_rg_form_view` VALUES("24135", "8", "2016-01-09 07:03:08", "202.46.58.203", "14");
INSERT INTO `wp_rg_form_view` VALUES("24136", "2", "2016-01-09 07:22:47", "179.61.138.200", "3");
INSERT INTO `wp_rg_form_view` VALUES("24137", "3", "2016-01-09 08:10:04", "202.46.51.210", "47");
INSERT INTO `wp_rg_form_view` VALUES("24138", "8", "2016-01-09 08:10:05", "202.46.51.210", "6");
INSERT INTO `wp_rg_form_view` VALUES("24139", "1", "2016-01-09 08:14:42", "212.83.148.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("24140", "2", "2016-01-09 09:12:03", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24141", "3", "2016-01-09 09:12:04", "62.210.162.184", "42");
INSERT INTO `wp_rg_form_view` VALUES("24142", "8", "2016-01-09 09:12:04", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("24143", "3", "2016-01-09 10:23:04", "207.46.13.53", "54");
INSERT INTO `wp_rg_form_view` VALUES("24144", "8", "2016-01-09 10:23:04", "207.46.13.53", "7");
INSERT INTO `wp_rg_form_view` VALUES("24145", "2", "2016-01-09 10:54:53", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24146", "3", "2016-01-09 11:30:58", "202.46.55.140", "327");
INSERT INTO `wp_rg_form_view` VALUES("24147", "8", "2016-01-09 11:30:58", "202.46.55.140", "42");
INSERT INTO `wp_rg_form_view` VALUES("24148", "9", "2016-01-09 11:51:36", "157.55.39.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("24149", "3", "2016-01-09 12:04:27", "202.46.56.195", "145");
INSERT INTO `wp_rg_form_view` VALUES("24150", "8", "2016-01-09 12:04:27", "202.46.56.195", "17");
INSERT INTO `wp_rg_form_view` VALUES("24151", "1", "2016-01-09 12:41:47", "104.227.59.120", "4");
INSERT INTO `wp_rg_form_view` VALUES("24152", "3", "2016-01-09 13:11:26", "202.46.51.30", "8");
INSERT INTO `wp_rg_form_view` VALUES("24153", "8", "2016-01-09 13:11:26", "202.46.51.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("24154", "3", "2016-01-09 14:09:00", "66.249.74.102", "36");
INSERT INTO `wp_rg_form_view` VALUES("24155", "8", "2016-01-09 14:09:00", "66.249.74.102", "5");
INSERT INTO `wp_rg_form_view` VALUES("24156", "3", "2016-01-09 15:02:25", "66.249.74.102", "31");
INSERT INTO `wp_rg_form_view` VALUES("24157", "8", "2016-01-09 15:02:25", "66.249.74.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("24158", "3", "2016-01-09 16:17:16", "157.55.39.47", "24");
INSERT INTO `wp_rg_form_view` VALUES("24159", "8", "2016-01-09 16:17:16", "157.55.39.47", "4");
INSERT INTO `wp_rg_form_view` VALUES("24160", "3", "2016-01-09 17:05:51", "202.46.56.179", "80");
INSERT INTO `wp_rg_form_view` VALUES("24161", "8", "2016-01-09 17:05:51", "202.46.56.179", "10");
INSERT INTO `wp_rg_form_view` VALUES("24162", "3", "2016-01-09 18:12:50", "202.46.56.69", "79");
INSERT INTO `wp_rg_form_view` VALUES("24163", "8", "2016-01-09 18:12:50", "202.46.56.69", "10");
INSERT INTO `wp_rg_form_view` VALUES("24164", "3", "2016-01-09 19:19:48", "202.46.48.139", "53");
INSERT INTO `wp_rg_form_view` VALUES("24165", "8", "2016-01-09 19:19:48", "202.46.48.139", "7");
INSERT INTO `wp_rg_form_view` VALUES("24166", "3", "2016-01-09 20:13:14", "96.50.68.167", "74");
INSERT INTO `wp_rg_form_view` VALUES("24167", "8", "2016-01-09 20:13:14", "96.50.68.167", "10");
INSERT INTO `wp_rg_form_view` VALUES("24168", "3", "2016-01-09 21:00:17", "202.46.55.154", "44");
INSERT INTO `wp_rg_form_view` VALUES("24169", "8", "2016-01-09 21:00:17", "202.46.55.154", "6");
INSERT INTO `wp_rg_form_view` VALUES("24170", "3", "2016-01-09 22:13:00", "202.46.52.201", "79");
INSERT INTO `wp_rg_form_view` VALUES("24171", "8", "2016-01-09 22:13:01", "202.46.52.201", "10");
INSERT INTO `wp_rg_form_view` VALUES("24172", "3", "2016-01-09 23:07:32", "202.46.58.194", "41");
INSERT INTO `wp_rg_form_view` VALUES("24173", "8", "2016-01-09 23:07:32", "202.46.58.194", "6");
INSERT INTO `wp_rg_form_view` VALUES("24174", "3", "2016-01-10 00:02:05", "202.46.52.162", "118");
INSERT INTO `wp_rg_form_view` VALUES("24175", "8", "2016-01-10 00:02:05", "202.46.52.162", "14");
INSERT INTO `wp_rg_form_view` VALUES("24176", "3", "2016-01-10 01:03:38", "62.210.162.184", "46");
INSERT INTO `wp_rg_form_view` VALUES("24177", "8", "2016-01-10 01:03:38", "62.210.162.184", "6");
INSERT INTO `wp_rg_form_view` VALUES("24178", "3", "2016-01-10 02:09:22", "202.46.57.179", "104");
INSERT INTO `wp_rg_form_view` VALUES("24179", "8", "2016-01-10 02:09:22", "202.46.57.179", "13");
INSERT INTO `wp_rg_form_view` VALUES("24180", "1", "2016-01-10 02:40:31", "192.151.145.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("24181", "3", "2016-01-10 03:03:55", "202.46.58.53", "51");
INSERT INTO `wp_rg_form_view` VALUES("24182", "8", "2016-01-10 03:03:55", "202.46.58.53", "7");
INSERT INTO `wp_rg_form_view` VALUES("24183", "3", "2016-01-10 04:16:42", "202.46.57.73", "173");
INSERT INTO `wp_rg_form_view` VALUES("24184", "8", "2016-01-10 04:16:42", "202.46.57.73", "21");
INSERT INTO `wp_rg_form_view` VALUES("24185", "1", "2016-01-10 04:18:34", "23.95.246.22", "4");
INSERT INTO `wp_rg_form_view` VALUES("24186", "9", "2016-01-10 04:29:45", "179.61.138.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("24187", "3", "2016-01-10 05:19:06", "201.238.90.94", "250");
INSERT INTO `wp_rg_form_view` VALUES("24188", "8", "2016-01-10 05:19:06", "201.238.90.94", "31");
INSERT INTO `wp_rg_form_view` VALUES("24189", "2", "2016-01-10 05:19:53", "201.238.90.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("24190", "3", "2016-01-10 06:14:53", "179.61.128.205", "83");
INSERT INTO `wp_rg_form_view` VALUES("24191", "8", "2016-01-10 06:14:53", "179.61.128.205", "10");
INSERT INTO `wp_rg_form_view` VALUES("24192", "3", "2016-01-10 07:11:55", "178.137.160.2", "101");
INSERT INTO `wp_rg_form_view` VALUES("24193", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24194", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24195", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24196", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24197", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24198", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24199", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24200", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24201", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24202", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24203", "3", "2016-01-10 07:11:55", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24204", "8", "2016-01-10 07:11:57", "178.137.160.2", "9");
INSERT INTO `wp_rg_form_view` VALUES("24205", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24206", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24207", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24208", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24209", "8", "2016-01-10 07:11:57", "178.137.160.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("24210", "1", "2016-01-10 08:53:40", "104.227.59.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("24211", "3", "2016-01-10 08:53:40", "104.227.59.120", "8");
INSERT INTO `wp_rg_form_view` VALUES("24212", "8", "2016-01-10 08:53:40", "104.227.59.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("24213", "3", "2016-01-10 09:15:06", "188.165.15.214", "45");
INSERT INTO `wp_rg_form_view` VALUES("24214", "8", "2016-01-10 09:15:06", "188.165.15.214", "6");
INSERT INTO `wp_rg_form_view` VALUES("24215", "1", "2016-01-10 09:24:30", "23.95.244.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("24216", "3", "2016-01-10 11:07:19", "46.118.226.141", "56");
INSERT INTO `wp_rg_form_view` VALUES("24217", "8", "2016-01-10 11:07:19", "46.118.226.141", "8");
INSERT INTO `wp_rg_form_view` VALUES("24218", "3", "2016-01-10 12:44:20", "136.243.48.84", "16");
INSERT INTO `wp_rg_form_view` VALUES("24219", "8", "2016-01-10 12:44:20", "136.243.48.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("24220", "3", "2016-01-10 13:08:14", "66.249.74.106", "58");
INSERT INTO `wp_rg_form_view` VALUES("24221", "8", "2016-01-10 13:08:14", "66.249.74.106", "7");
INSERT INTO `wp_rg_form_view` VALUES("24222", "3", "2016-01-10 14:05:42", "52.91.66.79", "40");
INSERT INTO `wp_rg_form_view` VALUES("24223", "8", "2016-01-10 14:05:42", "52.91.66.79", "5");
INSERT INTO `wp_rg_form_view` VALUES("24224", "3", "2016-01-10 15:39:51", "207.46.13.4", "16");
INSERT INTO `wp_rg_form_view` VALUES("24225", "8", "2016-01-10 15:39:51", "207.46.13.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("24226", "3", "2016-01-10 16:09:51", "68.180.229.161", "43");
INSERT INTO `wp_rg_form_view` VALUES("24227", "8", "2016-01-10 16:09:51", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("24228", "3", "2016-01-10 17:09:49", "66.249.74.102", "112");
INSERT INTO `wp_rg_form_view` VALUES("24229", "8", "2016-01-10 17:09:49", "66.249.74.102", "13");
INSERT INTO `wp_rg_form_view` VALUES("24230", "9", "2016-01-10 17:23:02", "198.98.110.107", "4");
INSERT INTO `wp_rg_form_view` VALUES("24231", "3", "2016-01-10 18:01:52", "68.180.229.161", "56");
INSERT INTO `wp_rg_form_view` VALUES("24232", "8", "2016-01-10 18:01:52", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("24233", "6", "2016-01-10 18:40:22", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("24234", "1", "2016-01-10 18:54:48", "192.227.161.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("24235", "3", "2016-01-10 19:00:38", "24.68.42.253", "121");
INSERT INTO `wp_rg_form_view` VALUES("24236", "8", "2016-01-10 19:00:38", "24.68.42.253", "15");
INSERT INTO `wp_rg_form_view` VALUES("24237", "3", "2016-01-10 20:38:27", "23.244.122.226", "57");
INSERT INTO `wp_rg_form_view` VALUES("24238", "8", "2016-01-10 20:38:28", "23.244.122.226", "7");
INSERT INTO `wp_rg_form_view` VALUES("24239", "3", "2016-01-10 21:17:31", "66.249.74.106", "58");
INSERT INTO `wp_rg_form_view` VALUES("24240", "8", "2016-01-10 21:17:31", "66.249.74.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("24241", "3", "2016-01-10 22:00:45", "66.249.74.102", "90");
INSERT INTO `wp_rg_form_view` VALUES("24242", "8", "2016-01-10 22:00:45", "66.249.74.102", "12");
INSERT INTO `wp_rg_form_view` VALUES("24243", "1", "2016-01-10 22:59:59", "192.151.145.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("24244", "3", "2016-01-10 23:00:00", "192.151.145.11", "107");
INSERT INTO `wp_rg_form_view` VALUES("24245", "8", "2016-01-10 23:00:09", "192.151.145.11", "12");
INSERT INTO `wp_rg_form_view` VALUES("24246", "1", "2016-01-10 23:00:13", "192.151.145.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("24247", "3", "2016-01-11 01:58:03", "188.165.15.214", "8");
INSERT INTO `wp_rg_form_view` VALUES("24248", "8", "2016-01-11 01:58:03", "188.165.15.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("24249", "3", "2016-01-11 02:12:13", "64.180.20.184", "74");
INSERT INTO `wp_rg_form_view` VALUES("24250", "8", "2016-01-11 02:12:13", "64.180.20.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("24251", "3", "2016-01-11 03:01:42", "66.249.74.102", "41");
INSERT INTO `wp_rg_form_view` VALUES("24252", "8", "2016-01-11 03:01:42", "66.249.74.102", "5");
INSERT INTO `wp_rg_form_view` VALUES("24253", "3", "2016-01-11 04:05:38", "69.58.178.58", "112");
INSERT INTO `wp_rg_form_view` VALUES("24254", "8", "2016-01-11 04:05:38", "69.58.178.58", "15");
INSERT INTO `wp_rg_form_view` VALUES("24255", "2", "2016-01-11 04:06:04", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("24256", "3", "2016-01-11 05:11:24", "178.137.89.157", "71");
INSERT INTO `wp_rg_form_view` VALUES("24257", "3", "2016-01-11 05:11:24", "178.137.89.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("24258", "8", "2016-01-11 05:11:24", "178.137.89.157", "9");
INSERT INTO `wp_rg_form_view` VALUES("24259", "3", "2016-01-11 06:17:37", "66.249.74.106", "57");
INSERT INTO `wp_rg_form_view` VALUES("24260", "8", "2016-01-11 06:17:37", "66.249.74.106", "7");
INSERT INTO `wp_rg_form_view` VALUES("24261", "9", "2016-01-11 06:40:04", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("24262", "3", "2016-01-11 07:34:30", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("24263", "8", "2016-01-11 07:34:30", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("24264", "3", "2016-01-11 09:21:44", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("24265", "8", "2016-01-11 09:21:50", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("24266", "3", "2016-01-11 10:04:26", "27.25.7.81", "18");
INSERT INTO `wp_rg_form_view` VALUES("24267", "8", "2016-01-11 10:04:26", "27.25.7.81", "3");
INSERT INTO `wp_rg_form_view` VALUES("24268", "3", "2016-01-11 11:02:25", "220.181.108.139", "17");
INSERT INTO `wp_rg_form_view` VALUES("24269", "8", "2016-01-11 11:02:25", "220.181.108.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("24270", "3", "2016-01-11 12:02:21", "178.137.89.157", "49");
INSERT INTO `wp_rg_form_view` VALUES("24271", "8", "2016-01-11 12:02:21", "178.137.89.157", "6");
INSERT INTO `wp_rg_form_view` VALUES("24272", "3", "2016-01-11 13:07:09", "66.249.74.106", "40");
INSERT INTO `wp_rg_form_view` VALUES("24273", "8", "2016-01-11 13:07:09", "66.249.74.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("24274", "5", "2016-01-11 13:59:06", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("24275", "3", "2016-01-11 15:14:01", "68.180.229.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("24276", "8", "2016-01-11 15:14:01", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("24277", "3", "2016-01-11 16:13:14", "66.249.74.104", "40");
INSERT INTO `wp_rg_form_view` VALUES("24278", "8", "2016-01-11 16:13:15", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("24279", "1", "2016-01-11 16:58:20", "64.251.74.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("24280", "1", "2016-01-11 17:19:24", "192.151.145.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("24281", "3", "2016-01-11 17:19:24", "192.151.145.11", "24");
INSERT INTO `wp_rg_form_view` VALUES("24282", "8", "2016-01-11 17:19:25", "192.151.145.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("24283", "5", "2016-01-11 18:03:34", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("24284", "3", "2016-01-11 18:03:35", "66.249.74.106", "34");
INSERT INTO `wp_rg_form_view` VALUES("24285", "8", "2016-01-11 18:03:37", "66.249.74.106", "4");
INSERT INTO `wp_rg_form_view` VALUES("24286", "3", "2016-01-11 19:02:50", "188.40.112.210", "16");
INSERT INTO `wp_rg_form_view` VALUES("24287", "8", "2016-01-11 19:02:50", "188.40.112.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("24288", "1", "2016-01-11 20:09:06", "212.83.148.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("24289", "3", "2016-01-11 20:09:06", "212.83.148.172", "50");
INSERT INTO `wp_rg_form_view` VALUES("24290", "8", "2016-01-11 20:09:06", "212.83.148.172", "6");
INSERT INTO `wp_rg_form_view` VALUES("24291", "3", "2016-01-11 21:26:19", "24.114.45.26", "136");
INSERT INTO `wp_rg_form_view` VALUES("24292", "8", "2016-01-11 21:26:20", "24.114.45.26", "16");
INSERT INTO `wp_rg_form_view` VALUES("24293", "3", "2016-01-11 22:05:57", "66.249.74.102", "61");
INSERT INTO `wp_rg_form_view` VALUES("24294", "8", "2016-01-11 22:05:57", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("24295", "3", "2016-01-11 23:10:43", "66.249.74.102", "41");
INSERT INTO `wp_rg_form_view` VALUES("24296", "8", "2016-01-11 23:10:43", "66.249.74.102", "5");
INSERT INTO `wp_rg_form_view` VALUES("24297", "3", "2016-01-12 00:35:44", "66.249.74.104", "65");
INSERT INTO `wp_rg_form_view` VALUES("24298", "8", "2016-01-12 00:35:44", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("24299", "1", "2016-01-12 00:45:40", "107.189.36.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("24300", "3", "2016-01-12 01:05:34", "207.46.13.65", "117");
INSERT INTO `wp_rg_form_view` VALUES("24301", "8", "2016-01-12 01:05:34", "207.46.13.65", "15");
INSERT INTO `wp_rg_form_view` VALUES("24302", "3", "2016-01-12 02:46:37", "157.55.39.150", "9");
INSERT INTO `wp_rg_form_view` VALUES("24303", "8", "2016-01-12 02:46:38", "157.55.39.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("24304", "8", "2016-01-12 03:06:30", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("24305", "3", "2016-01-12 03:06:30", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("24306", "5", "2016-01-12 04:00:10", "188.165.15.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("24307", "3", "2016-01-12 04:00:10", "188.165.15.15", "32");
INSERT INTO `wp_rg_form_view` VALUES("24308", "8", "2016-01-12 04:00:10", "188.165.15.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("24309", "8", "2016-01-12 05:02:23", "24.108.151.42", "22");
INSERT INTO `wp_rg_form_view` VALUES("24310", "3", "2016-01-12 05:02:24", "24.108.151.42", "169");
INSERT INTO `wp_rg_form_view` VALUES("24311", "3", "2016-01-12 06:33:36", "66.249.74.102", "17");
INSERT INTO `wp_rg_form_view` VALUES("24312", "8", "2016-01-12 06:33:36", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("24313", "3", "2016-01-12 07:36:43", "207.46.13.65", "449");
INSERT INTO `wp_rg_form_view` VALUES("24314", "8", "2016-01-12 07:36:44", "207.46.13.65", "55");
INSERT INTO `wp_rg_form_view` VALUES("24315", "6", "2016-01-12 07:39:19", "157.55.39.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("24316", "3", "2016-01-12 08:09:16", "46.118.126.200", "59");
INSERT INTO `wp_rg_form_view` VALUES("24317", "8", "2016-01-12 08:09:16", "46.118.126.200", "8");
INSERT INTO `wp_rg_form_view` VALUES("24318", "1", "2016-01-12 09:11:57", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("24319", "3", "2016-01-12 09:11:57", "91.200.12.138", "68");
INSERT INTO `wp_rg_form_view` VALUES("24320", "8", "2016-01-12 09:11:58", "91.200.12.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("24321", "3", "2016-01-12 10:08:57", "130.211.119.117", "96");
INSERT INTO `wp_rg_form_view` VALUES("24322", "8", "2016-01-12 10:08:57", "130.211.119.117", "12");
INSERT INTO `wp_rg_form_view` VALUES("24323", "2", "2016-01-12 10:09:07", "130.211.119.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("24324", "1", "2016-01-12 10:14:41", "192.151.145.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("24325", "3", "2016-01-12 11:05:55", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("24326", "8", "2016-01-12 11:05:55", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("24327", "3", "2016-01-12 12:34:08", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("24328", "8", "2016-01-12 12:34:08", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("24329", "3", "2016-01-12 13:00:00", "178.137.160.2", "24");
INSERT INTO `wp_rg_form_view` VALUES("24330", "8", "2016-01-12 13:00:01", "178.137.160.2", "3");
INSERT INTO `wp_rg_form_view` VALUES("24331", "3", "2016-01-12 14:36:03", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("24332", "2", "2016-01-12 15:37:52", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("24333", "3", "2016-01-12 15:37:52", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("24334", "8", "2016-01-12 15:37:52", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("24335", "2", "2016-01-12 16:01:07", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("24336", "3", "2016-01-12 16:01:07", "91.200.12.138", "80");
INSERT INTO `wp_rg_form_view` VALUES("24337", "8", "2016-01-12 16:01:07", "91.200.12.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("24338", "1", "2016-01-12 16:08:03", "204.209.209.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("24339", "3", "2016-01-12 17:15:07", "207.194.133.9", "184");
INSERT INTO `wp_rg_form_view` VALUES("24340", "8", "2016-01-12 17:15:07", "207.194.133.9", "22");
INSERT INTO `wp_rg_form_view` VALUES("24341", "1", "2016-01-12 17:39:48", "96.54.214.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("24342", "3", "2016-01-12 18:06:54", "216.232.144.184", "72");
INSERT INTO `wp_rg_form_view` VALUES("24343", "8", "2016-01-12 18:06:54", "216.232.144.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("24344", "3", "2016-01-12 19:02:26", "94.23.45.37", "217");
INSERT INTO `wp_rg_form_view` VALUES("24345", "8", "2016-01-12 19:02:26", "94.23.45.37", "27");
INSERT INTO `wp_rg_form_view` VALUES("24346", "1", "2016-01-12 19:04:02", "94.23.45.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("24347", "3", "2016-01-12 20:11:32", "68.180.229.161", "18");
INSERT INTO `wp_rg_form_view` VALUES("24348", "8", "2016-01-12 20:27:12", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("24349", "3", "2016-01-12 21:02:50", "184.69.173.30", "72");
INSERT INTO `wp_rg_form_view` VALUES("24350", "8", "2016-01-12 21:02:50", "184.69.173.30", "10");
INSERT INTO `wp_rg_form_view` VALUES("24351", "3", "2016-01-12 22:08:38", "195.154.146.225", "276");
INSERT INTO `wp_rg_form_view` VALUES("24352", "8", "2016-01-12 22:08:38", "195.154.146.225", "35");
INSERT INTO `wp_rg_form_view` VALUES("24353", "2", "2016-01-12 22:09:48", "195.154.146.225", "2");
INSERT INTO `wp_rg_form_view` VALUES("24354", "3", "2016-01-13 00:07:19", "66.249.74.106", "48");
INSERT INTO `wp_rg_form_view` VALUES("24355", "8", "2016-01-13 00:07:20", "66.249.74.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("24356", "1", "2016-01-13 00:11:55", "201.172.78.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("24357", "3", "2016-01-13 01:15:46", "40.77.167.76", "41");
INSERT INTO `wp_rg_form_view` VALUES("24358", "8", "2016-01-13 01:15:47", "40.77.167.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("24359", "1", "2016-01-13 01:27:32", "5.231.30.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("24360", "3", "2016-01-13 03:44:54", "66.249.74.106", "17");
INSERT INTO `wp_rg_form_view` VALUES("24361", "8", "2016-01-13 03:44:55", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("24362", "3", "2016-01-13 04:18:23", "66.249.74.104", "96");
INSERT INTO `wp_rg_form_view` VALUES("24363", "8", "2016-01-13 04:18:23", "66.249.74.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("24364", "3", "2016-01-13 05:04:05", "202.46.51.32", "101");
INSERT INTO `wp_rg_form_view` VALUES("24365", "8", "2016-01-13 05:04:05", "202.46.51.32", "13");
INSERT INTO `wp_rg_form_view` VALUES("24366", "3", "2016-01-13 06:11:05", "202.46.52.164", "37");
INSERT INTO `wp_rg_form_view` VALUES("24367", "8", "2016-01-13 06:11:05", "202.46.52.164", "5");
INSERT INTO `wp_rg_form_view` VALUES("24368", "3", "2016-01-13 07:18:07", "202.46.50.89", "24");
INSERT INTO `wp_rg_form_view` VALUES("24369", "8", "2016-01-13 07:18:09", "202.46.50.89", "3");
INSERT INTO `wp_rg_form_view` VALUES("24370", "3", "2016-01-13 08:25:02", "202.46.55.63", "47");
INSERT INTO `wp_rg_form_view` VALUES("24371", "8", "2016-01-13 08:25:02", "202.46.55.63", "6");
INSERT INTO `wp_rg_form_view` VALUES("24372", "3", "2016-01-13 09:07:10", "188.165.15.15", "32");
INSERT INTO `wp_rg_form_view` VALUES("24373", "8", "2016-01-13 09:07:10", "188.165.15.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("24374", "3", "2016-01-13 10:33:17", "178.137.89.157", "32");
INSERT INTO `wp_rg_form_view` VALUES("24375", "8", "2016-01-13 10:33:18", "178.137.89.157", "3");
INSERT INTO `wp_rg_form_view` VALUES("24376", "8", "2016-01-13 10:33:18", "178.137.89.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("24377", "2", "2016-01-13 11:10:58", "192.3.220.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("24378", "3", "2016-01-13 11:10:58", "192.3.220.227", "113");
INSERT INTO `wp_rg_form_view` VALUES("24379", "8", "2016-01-13 11:10:58", "192.3.220.227", "14");
INSERT INTO `wp_rg_form_view` VALUES("24380", "1", "2016-01-13 11:43:20", "192.151.145.11", "6");
INSERT INTO `wp_rg_form_view` VALUES("24381", "3", "2016-01-13 12:19:26", "202.46.53.67", "18");
INSERT INTO `wp_rg_form_view` VALUES("24382", "8", "2016-01-13 12:19:26", "202.46.53.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("24383", "3", "2016-01-13 13:06:29", "66.249.74.106", "24");
INSERT INTO `wp_rg_form_view` VALUES("24384", "8", "2016-01-13 13:06:29", "66.249.74.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("24385", "3", "2016-01-13 14:28:21", "128.177.10.114", "89");
INSERT INTO `wp_rg_form_view` VALUES("24386", "2", "2016-01-13 14:28:21", "128.177.10.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("24387", "8", "2016-01-13 14:28:21", "128.177.10.114", "9");
INSERT INTO `wp_rg_form_view` VALUES("24388", "8", "2016-01-13 14:28:21", "128.177.10.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("24389", "8", "2016-01-13 14:28:21", "128.177.10.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("24390", "3", "2016-01-13 15:06:51", "202.46.57.19", "78");
INSERT INTO `wp_rg_form_view` VALUES("24391", "8", "2016-01-13 15:06:51", "202.46.57.19", "10");
INSERT INTO `wp_rg_form_view` VALUES("24392", "3", "2016-01-13 16:02:20", "68.180.229.161", "84");
INSERT INTO `wp_rg_form_view` VALUES("24393", "8", "2016-01-13 16:02:20", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("24394", "2", "2016-01-13 17:03:29", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("24395", "3", "2016-01-13 17:03:29", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("24396", "8", "2016-01-13 17:03:29", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("24397", "3", "2016-01-13 18:11:31", "66.249.74.102", "108");
INSERT INTO `wp_rg_form_view` VALUES("24398", "8", "2016-01-13 18:11:31", "66.249.74.102", "13");
INSERT INTO `wp_rg_form_view` VALUES("24399", "3", "2016-01-13 19:03:46", "70.77.194.67", "104");
INSERT INTO `wp_rg_form_view` VALUES("24400", "8", "2016-01-13 19:03:46", "70.77.194.67", "13");
INSERT INTO `wp_rg_form_view` VALUES("24401", "1", "2016-01-13 19:23:58", "70.77.194.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("24402", "3", "2016-01-13 20:02:24", "66.249.74.104", "90");
INSERT INTO `wp_rg_form_view` VALUES("24403", "8", "2016-01-13 20:02:24", "66.249.74.104", "11");
INSERT INTO `wp_rg_form_view` VALUES("24404", "3", "2016-01-13 21:13:23", "24.108.129.106", "57");
INSERT INTO `wp_rg_form_view` VALUES("24405", "8", "2016-01-13 21:13:24", "24.108.129.106", "7");
INSERT INTO `wp_rg_form_view` VALUES("24406", "3", "2016-01-13 22:00:40", "207.194.133.9", "55");
INSERT INTO `wp_rg_form_view` VALUES("24407", "8", "2016-01-13 22:00:41", "207.194.133.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("24408", "3", "2016-01-14 00:19:40", "157.55.39.218", "8");
INSERT INTO `wp_rg_form_view` VALUES("24409", "8", "2016-01-14 00:19:41", "157.55.39.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("24410", "3", "2016-01-14 01:19:51", "157.55.39.194", "259");
INSERT INTO `wp_rg_form_view` VALUES("24411", "8", "2016-01-14 01:19:51", "157.55.39.194", "33");
INSERT INTO `wp_rg_form_view` VALUES("24412", "9", "2016-01-14 01:20:00", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("24413", "3", "2016-01-14 04:19:36", "68.180.229.161", "1539");
INSERT INTO `wp_rg_form_view` VALUES("24414", "8", "2016-01-14 04:19:37", "68.180.229.161", "197");
INSERT INTO `wp_rg_form_view` VALUES("24415", "2", "2016-01-14 04:28:07", "188.215.22.2", "4");
INSERT INTO `wp_rg_form_view` VALUES("24416", "1", "2016-01-14 04:42:11", "104.131.214.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("24417", "5", "2016-01-14 04:51:21", "104.131.214.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("24418", "3", "2016-01-14 05:00:01", "104.131.214.84", "2966");
INSERT INTO `wp_rg_form_view` VALUES("24419", "8", "2016-01-14 05:00:01", "104.131.214.84", "374");
INSERT INTO `wp_rg_form_view` VALUES("24420", "6", "2016-01-14 05:02:56", "104.131.214.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("24421", "1", "2016-01-14 05:09:47", "192.151.145.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("24422", "9", "2016-01-14 05:12:56", "104.131.214.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("24423", "3", "2016-01-14 06:24:37", "66.249.74.104", "97");
INSERT INTO `wp_rg_form_view` VALUES("24424", "8", "2016-01-14 06:24:37", "66.249.74.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("24425", "2", "2016-01-14 06:29:38", "62.210.162.184", "3");
INSERT INTO `wp_rg_form_view` VALUES("24426", "3", "2016-01-14 07:11:03", "96.50.49.148", "48");
INSERT INTO `wp_rg_form_view` VALUES("24427", "8", "2016-01-14 07:11:03", "96.50.49.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("24428", "2", "2016-01-14 08:12:26", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24429", "3", "2016-01-14 08:12:26", "62.210.162.184", "25");
INSERT INTO `wp_rg_form_view` VALUES("24430", "8", "2016-01-14 08:12:26", "62.210.162.184", "3");
INSERT INTO `wp_rg_form_view` VALUES("24431", "3", "2016-01-14 09:11:48", "68.180.229.161", "72");
INSERT INTO `wp_rg_form_view` VALUES("24432", "8", "2016-01-14 09:11:48", "68.180.229.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("24433", "1", "2016-01-14 09:50:20", "192.151.145.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("24434", "2", "2016-01-14 10:00:51", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24435", "3", "2016-01-14 10:00:51", "62.210.162.184", "64");
INSERT INTO `wp_rg_form_view` VALUES("24436", "8", "2016-01-14 10:00:51", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("24437", "3", "2016-01-14 11:14:49", "5.9.145.132", "49");
INSERT INTO `wp_rg_form_view` VALUES("24438", "8", "2016-01-14 11:14:49", "5.9.145.132", "6");
INSERT INTO `wp_rg_form_view` VALUES("24439", "3", "2016-01-14 12:19:31", "66.249.81.188", "16");
INSERT INTO `wp_rg_form_view` VALUES("24440", "8", "2016-01-14 12:19:31", "66.249.81.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("24441", "3", "2016-01-14 13:40:21", "207.6.161.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("24442", "8", "2016-01-14 13:40:21", "207.6.161.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("24443", "3", "2016-01-14 14:12:38", "66.249.74.104", "53");
INSERT INTO `wp_rg_form_view` VALUES("24444", "8", "2016-01-14 14:12:38", "66.249.74.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("24445", "3", "2016-01-14 15:08:14", "151.80.31.152", "16");
INSERT INTO `wp_rg_form_view` VALUES("24446", "8", "2016-01-14 15:08:14", "151.80.31.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("24447", "3", "2016-01-14 16:35:04", "112.111.184.126", "32");
INSERT INTO `wp_rg_form_view` VALUES("24448", "8", "2016-01-14 16:35:04", "112.111.184.126", "4");
INSERT INTO `wp_rg_form_view` VALUES("24449", "3", "2016-01-14 18:10:38", "207.46.13.181", "48");
INSERT INTO `wp_rg_form_view` VALUES("24450", "8", "2016-01-14 18:10:39", "207.46.13.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("24451", "3", "2016-01-14 19:07:41", "207.194.133.9", "33");
INSERT INTO `wp_rg_form_view` VALUES("24452", "8", "2016-01-14 19:07:41", "207.194.133.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("24453", "3", "2016-01-14 20:10:47", "136.243.48.82", "24");
INSERT INTO `wp_rg_form_view` VALUES("24454", "8", "2016-01-14 20:10:47", "136.243.48.82", "3");
INSERT INTO `wp_rg_form_view` VALUES("24455", "3", "2016-01-14 21:13:58", "46.118.126.200", "209");
INSERT INTO `wp_rg_form_view` VALUES("24456", "3", "2016-01-14 21:13:58", "46.118.126.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("24457", "3", "2016-01-14 21:13:58", "46.118.126.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("24458", "8", "2016-01-14 21:13:58", "46.118.126.200", "23");
INSERT INTO `wp_rg_form_view` VALUES("24459", "8", "2016-01-14 21:13:58", "46.118.126.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("24460", "8", "2016-01-14 21:13:58", "46.118.126.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("24461", "1", "2016-01-14 21:37:20", "198.98.110.107", "5");
INSERT INTO `wp_rg_form_view` VALUES("24462", "3", "2016-01-14 22:07:02", "136.243.48.84", "140");
INSERT INTO `wp_rg_form_view` VALUES("24463", "8", "2016-01-14 22:07:03", "136.243.48.84", "17");
INSERT INTO `wp_rg_form_view` VALUES("24464", "3", "2016-01-14 23:14:06", "184.69.103.6", "49");
INSERT INTO `wp_rg_form_view` VALUES("24465", "8", "2016-01-14 23:14:06", "184.69.103.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("24466", "1", "2016-01-14 23:31:37", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24467", "3", "2016-01-15 00:14:54", "195.154.209.60", "131");
INSERT INTO `wp_rg_form_view` VALUES("24468", "8", "2016-01-15 00:14:54", "195.154.209.60", "16");
INSERT INTO `wp_rg_form_view` VALUES("24469", "3", "2016-01-15 01:00:13", "23.95.12.91", "129");
INSERT INTO `wp_rg_form_view` VALUES("24470", "8", "2016-01-15 01:00:13", "23.95.12.91", "15");
INSERT INTO `wp_rg_form_view` VALUES("24471", "1", "2016-01-15 01:16:19", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24472", "3", "2016-01-15 02:12:26", "178.137.89.157", "162");
INSERT INTO `wp_rg_form_view` VALUES("24473", "3", "2016-01-15 02:12:26", "178.137.89.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("24474", "3", "2016-01-15 02:12:26", "178.137.89.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("24475", "8", "2016-01-15 02:12:26", "178.137.89.157", "19");
INSERT INTO `wp_rg_form_view` VALUES("24476", "8", "2016-01-15 02:12:26", "178.137.89.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("24477", "1", "2016-01-15 02:43:23", "188.215.22.2", "5");
INSERT INTO `wp_rg_form_view` VALUES("24478", "3", "2016-01-15 03:01:12", "172.218.232.170", "81");
INSERT INTO `wp_rg_form_view` VALUES("24479", "8", "2016-01-15 03:01:12", "172.218.232.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("24480", "7", "2016-01-15 03:35:48", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("24481", "3", "2016-01-15 04:00:41", "157.55.39.194", "254");
INSERT INTO `wp_rg_form_view` VALUES("24482", "8", "2016-01-15 04:00:41", "157.55.39.194", "31");
INSERT INTO `wp_rg_form_view` VALUES("24483", "1", "2016-01-15 04:11:11", "23.80.97.22", "4");
INSERT INTO `wp_rg_form_view` VALUES("24484", "3", "2016-01-15 05:17:42", "66.249.74.106", "154");
INSERT INTO `wp_rg_form_view` VALUES("24485", "8", "2016-01-15 05:17:42", "66.249.74.106", "18");
INSERT INTO `wp_rg_form_view` VALUES("24486", "3", "2016-01-15 06:14:23", "62.210.162.184", "25");
INSERT INTO `wp_rg_form_view` VALUES("24487", "8", "2016-01-15 06:14:23", "62.210.162.184", "3");
INSERT INTO `wp_rg_form_view` VALUES("24488", "1", "2016-01-15 06:29:44", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24489", "8", "2016-01-15 07:07:15", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("24490", "3", "2016-01-15 07:07:15", "66.249.74.104", "64");
INSERT INTO `wp_rg_form_view` VALUES("24491", "1", "2016-01-15 08:10:48", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24492", "3", "2016-01-15 08:10:48", "62.210.162.184", "40");
INSERT INTO `wp_rg_form_view` VALUES("24493", "8", "2016-01-15 08:10:48", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("24494", "3", "2016-01-15 09:06:23", "66.249.74.106", "48");
INSERT INTO `wp_rg_form_view` VALUES("24495", "8", "2016-01-15 09:06:23", "66.249.74.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("24496", "1", "2016-01-15 09:45:30", "107.172.230.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("24497", "3", "2016-01-15 10:26:14", "91.200.12.136", "209");
INSERT INTO `wp_rg_form_view` VALUES("24498", "8", "2016-01-15 10:26:14", "91.200.12.136", "25");
INSERT INTO `wp_rg_form_view` VALUES("24499", "1", "2016-01-15 10:50:06", "23.80.97.100", "3");
INSERT INTO `wp_rg_form_view` VALUES("24500", "3", "2016-01-15 11:10:17", "40.77.167.28", "40");
INSERT INTO `wp_rg_form_view` VALUES("24501", "8", "2016-01-15 11:10:17", "40.77.167.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("24502", "2", "2016-01-15 11:58:22", "65.55.209.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("24503", "3", "2016-01-15 12:04:31", "207.46.13.6", "228");
INSERT INTO `wp_rg_form_view` VALUES("24504", "8", "2016-01-15 12:04:31", "207.46.13.6", "29");
INSERT INTO `wp_rg_form_view` VALUES("24505", "1", "2016-01-15 13:12:22", "142.234.110.67", "4");
INSERT INTO `wp_rg_form_view` VALUES("24506", "3", "2016-01-15 13:12:22", "142.234.110.67", "103");
INSERT INTO `wp_rg_form_view` VALUES("24507", "8", "2016-01-15 13:12:23", "142.234.110.67", "12");
INSERT INTO `wp_rg_form_view` VALUES("24508", "3", "2016-01-15 14:17:45", "40.77.167.63", "122");
INSERT INTO `wp_rg_form_view` VALUES("24509", "8", "2016-01-15 14:17:45", "40.77.167.63", "16");
INSERT INTO `wp_rg_form_view` VALUES("24510", "2", "2016-01-15 14:45:38", "40.77.167.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("24511", "3", "2016-01-15 15:02:31", "66.249.74.104", "64");
INSERT INTO `wp_rg_form_view` VALUES("24512", "8", "2016-01-15 15:02:31", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("24513", "2", "2016-01-15 15:28:21", "65.55.209.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("24514", "3", "2016-01-15 16:01:03", "94.199.151.22", "1580");
INSERT INTO `wp_rg_form_view` VALUES("24515", "8", "2016-01-15 16:01:04", "94.199.151.22", "209");
INSERT INTO `wp_rg_form_view` VALUES("24516", "2", "2016-01-15 16:01:50", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("24517", "1", "2016-01-15 16:09:39", "94.199.151.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("24518", "9", "2016-01-15 16:15:20", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("24519", "1", "2016-01-15 17:04:09", "40.77.167.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("24520", "3", "2016-01-15 17:04:09", "40.77.167.63", "212");
INSERT INTO `wp_rg_form_view` VALUES("24521", "8", "2016-01-15 17:04:09", "40.77.167.63", "25");
INSERT INTO `wp_rg_form_view` VALUES("24522", "3", "2016-01-15 18:00:36", "96.50.14.40", "80");
INSERT INTO `wp_rg_form_view` VALUES("24523", "8", "2016-01-15 18:00:36", "96.50.14.40", "10");
INSERT INTO `wp_rg_form_view` VALUES("24524", "1", "2016-01-15 18:25:37", "212.83.148.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("24525", "3", "2016-01-15 19:01:18", "202.46.55.175", "244");
INSERT INTO `wp_rg_form_view` VALUES("24526", "8", "2016-01-15 19:01:18", "202.46.55.175", "32");
INSERT INTO `wp_rg_form_view` VALUES("24527", "1", "2016-01-15 19:13:16", "46.28.66.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("24528", "3", "2016-01-15 20:08:16", "202.46.51.85", "48");
INSERT INTO `wp_rg_form_view` VALUES("24529", "8", "2016-01-15 20:08:16", "202.46.51.85", "7");
INSERT INTO `wp_rg_form_view` VALUES("24530", "3", "2016-01-15 21:02:03", "62.210.162.184", "46");
INSERT INTO `wp_rg_form_view` VALUES("24531", "8", "2016-01-15 21:02:03", "62.210.162.184", "6");
INSERT INTO `wp_rg_form_view` VALUES("24532", "3", "2016-01-15 22:29:44", "192.227.222.221", "64");
INSERT INTO `wp_rg_form_view` VALUES("24533", "8", "2016-01-15 22:29:44", "192.227.222.221", "8");
INSERT INTO `wp_rg_form_view` VALUES("24534", "3", "2016-01-15 23:07:09", "91.200.12.143", "80");
INSERT INTO `wp_rg_form_view` VALUES("24535", "8", "2016-01-15 23:07:10", "91.200.12.143", "10");
INSERT INTO `wp_rg_form_view` VALUES("24536", "3", "2016-01-16 00:08:49", "174.1.157.32", "88");
INSERT INTO `wp_rg_form_view` VALUES("24537", "8", "2016-01-16 00:08:49", "174.1.157.32", "11");
INSERT INTO `wp_rg_form_view` VALUES("24538", "1", "2016-01-16 00:31:37", "154.5.182.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("24539", "2", "2016-01-16 00:42:13", "136.243.48.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("24540", "1", "2016-01-16 01:12:48", "23.94.52.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("24541", "3", "2016-01-16 01:12:48", "23.94.52.48", "42");
INSERT INTO `wp_rg_form_view` VALUES("24542", "8", "2016-01-16 01:12:48", "23.94.52.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("24543", "3", "2016-01-16 02:06:18", "184.71.13.222", "165");
INSERT INTO `wp_rg_form_view` VALUES("24544", "8", "2016-01-16 02:06:18", "184.71.13.222", "20");
INSERT INTO `wp_rg_form_view` VALUES("24545", "2", "2016-01-16 02:17:59", "5.175.140.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("24546", "1", "2016-01-16 02:31:13", "216.158.206.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("24547", "1", "2016-01-16 03:12:48", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("24548", "3", "2016-01-16 03:12:48", "66.249.74.106", "16");
INSERT INTO `wp_rg_form_view` VALUES("24549", "8", "2016-01-16 03:12:49", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("24550", "1", "2016-01-16 04:12:54", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24551", "3", "2016-01-16 04:12:54", "62.210.162.184", "16");
INSERT INTO `wp_rg_form_view` VALUES("24552", "8", "2016-01-16 04:12:54", "62.210.162.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("24553", "3", "2016-01-16 05:03:47", "66.249.74.106", "49");
INSERT INTO `wp_rg_form_view` VALUES("24554", "8", "2016-01-16 05:03:47", "66.249.74.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("24555", "1", "2016-01-16 05:53:38", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24556", "3", "2016-01-16 06:24:59", "70.67.96.163", "8");
INSERT INTO `wp_rg_form_view` VALUES("24557", "8", "2016-01-16 06:24:59", "70.67.96.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("24558", "3", "2016-01-16 07:07:34", "216.158.206.235", "163");
INSERT INTO `wp_rg_form_view` VALUES("24559", "8", "2016-01-16 07:07:34", "216.158.206.235", "20");
INSERT INTO `wp_rg_form_view` VALUES("24560", "1", "2016-01-16 07:40:27", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24561", "3", "2016-01-16 08:08:34", "66.249.74.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("24562", "8", "2016-01-16 08:08:34", "66.249.74.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("24563", "3", "2016-01-16 09:04:08", "40.77.167.28", "81");
INSERT INTO `wp_rg_form_view` VALUES("24564", "8", "2016-01-16 09:04:08", "40.77.167.28", "10");
INSERT INTO `wp_rg_form_view` VALUES("24565", "3", "2016-01-16 11:48:58", "136.243.48.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("24566", "8", "2016-01-16 11:48:58", "136.243.48.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("24567", "3", "2016-01-16 12:49:48", "141.8.143.183", "8");
INSERT INTO `wp_rg_form_view` VALUES("24568", "8", "2016-01-16 12:49:48", "141.8.143.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("24569", "3", "2016-01-16 13:34:46", "136.243.154.26", "17");
INSERT INTO `wp_rg_form_view` VALUES("24570", "8", "2016-01-16 13:34:46", "136.243.154.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("24571", "3", "2016-01-16 14:11:35", "157.55.39.194", "524");
INSERT INTO `wp_rg_form_view` VALUES("24572", "8", "2016-01-16 14:11:35", "157.55.39.194", "62");
INSERT INTO `wp_rg_form_view` VALUES("24573", "6", "2016-01-16 14:12:26", "207.46.13.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("24574", "1", "2016-01-16 14:34:44", "24.108.10.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("24575", "3", "2016-01-16 15:37:02", "66.249.74.102", "16");
INSERT INTO `wp_rg_form_view` VALUES("24576", "8", "2016-01-16 15:37:02", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("24577", "3", "2016-01-16 16:06:31", "66.249.74.106", "17");
INSERT INTO `wp_rg_form_view` VALUES("24578", "8", "2016-01-16 16:06:31", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("24579", "3", "2016-01-16 17:05:32", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("24580", "8", "2016-01-16 17:05:32", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("24581", "3", "2016-01-16 19:07:42", "46.118.126.200", "24");
INSERT INTO `wp_rg_form_view` VALUES("24582", "8", "2016-01-16 19:07:43", "46.118.126.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("24583", "8", "2016-01-16 19:07:43", "46.118.126.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("24584", "3", "2016-01-16 20:13:49", "24.108.190.127", "62");
INSERT INTO `wp_rg_form_view` VALUES("24585", "8", "2016-01-16 20:13:49", "24.108.190.127", "8");
INSERT INTO `wp_rg_form_view` VALUES("24586", "1", "2016-01-16 20:28:58", "136.243.155.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("24587", "3", "2016-01-16 21:41:54", "66.249.74.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("24588", "8", "2016-01-16 21:41:54", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("24589", "3", "2016-01-16 22:02:51", "66.249.74.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("24590", "8", "2016-01-16 22:02:51", "66.249.74.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("24591", "3", "2016-01-16 23:14:32", "68.180.229.161", "81");
INSERT INTO `wp_rg_form_view` VALUES("24592", "8", "2016-01-16 23:14:32", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("24593", "1", "2016-01-16 23:37:16", "96.50.8.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("24594", "3", "2016-01-17 00:02:35", "184.66.14.57", "194");
INSERT INTO `wp_rg_form_view` VALUES("24595", "8", "2016-01-17 00:02:35", "184.66.14.57", "24");
INSERT INTO `wp_rg_form_view` VALUES("24596", "1", "2016-01-17 00:09:57", "184.66.14.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("24597", "3", "2016-01-17 01:46:58", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("24598", "8", "2016-01-17 01:46:58", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("24599", "3", "2016-01-17 02:13:45", "66.249.74.104", "56");
INSERT INTO `wp_rg_form_view` VALUES("24600", "8", "2016-01-17 02:13:45", "66.249.74.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("24601", "9", "2016-01-17 02:56:42", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("24602", "3", "2016-01-17 03:21:44", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("24603", "8", "2016-01-17 03:21:44", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("24604", "3", "2016-01-17 04:02:57", "144.76.185.173", "24");
INSERT INTO `wp_rg_form_view` VALUES("24605", "8", "2016-01-17 04:02:57", "144.76.185.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("24606", "3", "2016-01-17 05:36:45", "178.137.89.157", "33");
INSERT INTO `wp_rg_form_view` VALUES("24607", "8", "2016-01-17 05:36:45", "178.137.89.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("24608", "3", "2016-01-17 06:31:10", "24.108.86.254", "16");
INSERT INTO `wp_rg_form_view` VALUES("24609", "8", "2016-01-17 06:31:10", "24.108.86.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("24610", "3", "2016-01-17 08:05:15", "66.249.74.102", "24");
INSERT INTO `wp_rg_form_view` VALUES("24611", "8", "2016-01-17 08:05:16", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("24612", "3", "2016-01-17 09:25:39", "79.44.112.162", "419");
INSERT INTO `wp_rg_form_view` VALUES("24613", "8", "2016-01-17 09:25:39", "79.44.112.162", "52");
INSERT INTO `wp_rg_form_view` VALUES("24614", "2", "2016-01-17 09:27:10", "79.44.112.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("24615", "3", "2016-01-17 10:11:36", "178.137.160.2", "24");
INSERT INTO `wp_rg_form_view` VALUES("24616", "8", "2016-01-17 10:11:36", "178.137.160.2", "3");
INSERT INTO `wp_rg_form_view` VALUES("24617", "3", "2016-01-17 11:49:01", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("24618", "8", "2016-01-17 11:49:02", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("24619", "3", "2016-01-17 12:21:38", "136.243.151.135", "16");
INSERT INTO `wp_rg_form_view` VALUES("24620", "8", "2016-01-17 12:21:38", "136.243.151.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("24621", "3", "2016-01-17 13:19:48", "46.118.126.200", "24");
INSERT INTO `wp_rg_form_view` VALUES("24622", "8", "2016-01-17 13:19:48", "46.118.126.200", "3");
INSERT INTO `wp_rg_form_view` VALUES("24623", "3", "2016-01-17 14:02:02", "66.249.74.102", "29");
INSERT INTO `wp_rg_form_view` VALUES("24624", "8", "2016-01-17 14:02:02", "66.249.74.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("24625", "3", "2016-01-17 15:13:51", "148.251.75.46", "33");
INSERT INTO `wp_rg_form_view` VALUES("24626", "8", "2016-01-17 15:13:51", "148.251.75.46", "5");
INSERT INTO `wp_rg_form_view` VALUES("24627", "3", "2016-01-17 16:39:05", "82.46.125.215", "276");
INSERT INTO `wp_rg_form_view` VALUES("24628", "8", "2016-01-17 16:39:05", "82.46.125.215", "34");
INSERT INTO `wp_rg_form_view` VALUES("24629", "2", "2016-01-17 16:39:55", "82.46.125.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("24630", "3", "2016-01-17 17:10:34", "77.75.77.62", "723");
INSERT INTO `wp_rg_form_view` VALUES("24631", "8", "2016-01-17 17:10:34", "77.75.77.62", "93");
INSERT INTO `wp_rg_form_view` VALUES("24632", "2", "2016-01-17 17:30:36", "144.76.182.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("24633", "1", "2016-01-17 17:48:02", "144.76.182.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("24634", "9", "2016-01-17 17:53:39", "144.76.182.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("24635", "5", "2016-01-17 17:57:44", "144.76.182.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("24636", "3", "2016-01-17 18:00:01", "144.76.182.139", "482");
INSERT INTO `wp_rg_form_view` VALUES("24637", "8", "2016-01-17 18:00:01", "144.76.182.139", "66");
INSERT INTO `wp_rg_form_view` VALUES("24638", "9", "2016-01-17 18:12:15", "144.76.182.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("24639", "6", "2016-01-17 18:17:38", "144.76.182.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("24640", "3", "2016-01-17 19:30:32", "202.46.57.199", "39");
INSERT INTO `wp_rg_form_view` VALUES("24641", "8", "2016-01-17 19:30:32", "202.46.57.199", "5");
INSERT INTO `wp_rg_form_view` VALUES("24642", "3", "2016-01-17 20:04:02", "202.46.58.83", "30");
INSERT INTO `wp_rg_form_view` VALUES("24643", "8", "2016-01-17 20:04:02", "202.46.58.83", "4");
INSERT INTO `wp_rg_form_view` VALUES("24644", "3", "2016-01-17 21:10:42", "66.249.74.104", "63");
INSERT INTO `wp_rg_form_view` VALUES("24645", "8", "2016-01-17 21:10:43", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("24646", "3", "2016-01-17 22:17:27", "68.180.229.161", "31");
INSERT INTO `wp_rg_form_view` VALUES("24647", "8", "2016-01-17 22:17:27", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("24648", "3", "2016-01-17 23:01:05", "77.75.77.62", "47");
INSERT INTO `wp_rg_form_view` VALUES("24649", "8", "2016-01-17 23:01:05", "77.75.77.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("24650", "2", "2016-01-17 23:01:20", "40.77.167.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("24651", "3", "2016-01-18 00:24:32", "40.77.167.76", "26");
INSERT INTO `wp_rg_form_view` VALUES("24652", "8", "2016-01-18 00:24:32", "40.77.167.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("24653", "3", "2016-01-18 01:05:25", "202.46.50.18", "55");
INSERT INTO `wp_rg_form_view` VALUES("24654", "8", "2016-01-18 01:05:25", "202.46.50.18", "7");
INSERT INTO `wp_rg_form_view` VALUES("24655", "3", "2016-01-18 02:12:24", "202.46.53.126", "21");
INSERT INTO `wp_rg_form_view` VALUES("24656", "8", "2016-01-18 02:12:24", "202.46.53.126", "3");
INSERT INTO `wp_rg_form_view` VALUES("24657", "3", "2016-01-18 03:04:44", "46.118.126.200", "199");
INSERT INTO `wp_rg_form_view` VALUES("24658", "8", "2016-01-18 03:04:44", "46.118.126.200", "27");
INSERT INTO `wp_rg_form_view` VALUES("24659", "1", "2016-01-18 03:53:01", "98.237.176.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("24660", "3", "2016-01-18 04:03:20", "136.243.154.230", "113");
INSERT INTO `wp_rg_form_view` VALUES("24661", "8", "2016-01-18 04:03:20", "136.243.154.230", "14");
INSERT INTO `wp_rg_form_view` VALUES("24662", "3", "2016-01-18 05:01:21", "40.77.167.63", "40");
INSERT INTO `wp_rg_form_view` VALUES("24663", "8", "2016-01-18 05:01:21", "40.77.167.63", "5");
INSERT INTO `wp_rg_form_view` VALUES("24664", "3", "2016-01-18 06:00:13", "136.243.151.91", "57");
INSERT INTO `wp_rg_form_view` VALUES("24665", "8", "2016-01-18 06:00:15", "136.243.151.91", "7");
INSERT INTO `wp_rg_form_view` VALUES("24666", "1", "2016-01-18 06:00:59", "5.231.30.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("24667", "3", "2016-01-18 07:57:23", "66.249.74.104", "64");
INSERT INTO `wp_rg_form_view` VALUES("24668", "8", "2016-01-18 07:57:23", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("24669", "1", "2016-01-18 07:58:15", "104.193.10.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("24670", "6", "2016-01-18 07:58:20", "104.193.10.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("24671", "9", "2016-01-18 08:01:25", "188.215.22.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("24672", "3", "2016-01-18 08:01:25", "188.215.22.253", "157");
INSERT INTO `wp_rg_form_view` VALUES("24673", "8", "2016-01-18 08:01:25", "188.215.22.253", "19");
INSERT INTO `wp_rg_form_view` VALUES("24674", "6", "2016-01-18 08:47:04", "136.243.154.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("24675", "9", "2016-01-18 09:49:59", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24676", "3", "2016-01-18 09:50:00", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("24677", "8", "2016-01-18 09:50:00", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24678", "3", "2016-01-18 10:45:14", "141.8.143.183", "13");
INSERT INTO `wp_rg_form_view` VALUES("24679", "8", "2016-01-18 10:45:14", "141.8.143.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("24680", "3", "2016-01-18 11:12:02", "24.69.36.80", "111");
INSERT INTO `wp_rg_form_view` VALUES("24681", "8", "2016-01-18 11:12:02", "24.69.36.80", "15");
INSERT INTO `wp_rg_form_view` VALUES("24682", "1", "2016-01-18 11:23:01", "24.69.36.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("24683", "9", "2016-01-18 11:32:27", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24684", "3", "2016-01-18 12:20:51", "207.194.133.9", "24");
INSERT INTO `wp_rg_form_view` VALUES("24685", "8", "2016-01-18 12:20:51", "207.194.133.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("24686", "2", "2016-01-18 13:39:10", "144.76.8.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("24687", "3", "2016-01-18 13:39:10", "144.76.8.132", "77");
INSERT INTO `wp_rg_form_view` VALUES("24688", "8", "2016-01-18 13:39:10", "144.76.8.132", "9");
INSERT INTO `wp_rg_form_view` VALUES("24689", "3", "2016-01-18 14:21:57", "51.254.32.82", "33");
INSERT INTO `wp_rg_form_view` VALUES("24690", "8", "2016-01-18 14:21:57", "51.254.32.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("24691", "3", "2016-01-18 15:02:40", "202.46.58.130", "40");
INSERT INTO `wp_rg_form_view` VALUES("24692", "8", "2016-01-18 15:02:40", "202.46.58.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("24693", "1", "2016-01-18 15:48:42", "212.83.148.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("24694", "3", "2016-01-18 16:12:24", "136.243.153.233", "33");
INSERT INTO `wp_rg_form_view` VALUES("24695", "8", "2016-01-18 16:12:24", "136.243.153.233", "4");
INSERT INTO `wp_rg_form_view` VALUES("24696", "3", "2016-01-18 17:05:20", "40.77.167.76", "46");
INSERT INTO `wp_rg_form_view` VALUES("24697", "8", "2016-01-18 17:05:20", "40.77.167.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("24698", "3", "2016-01-18 18:08:38", "24.68.136.173", "292");
INSERT INTO `wp_rg_form_view` VALUES("24699", "8", "2016-01-18 18:08:38", "24.68.136.173", "38");
INSERT INTO `wp_rg_form_view` VALUES("24700", "2", "2016-01-18 18:44:47", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("24701", "3", "2016-01-18 19:05:31", "202.46.58.97", "57");
INSERT INTO `wp_rg_form_view` VALUES("24702", "8", "2016-01-18 19:05:31", "202.46.58.97", "7");
INSERT INTO `wp_rg_form_view` VALUES("24703", "1", "2016-01-18 19:12:34", "91.194.84.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("24704", "3", "2016-01-18 20:06:49", "206.116.38.103", "133");
INSERT INTO `wp_rg_form_view` VALUES("24705", "8", "2016-01-18 20:06:49", "206.116.38.103", "17");
INSERT INTO `wp_rg_form_view` VALUES("24706", "3", "2016-01-18 21:05:01", "178.137.160.2", "64");
INSERT INTO `wp_rg_form_view` VALUES("24707", "8", "2016-01-18 21:05:01", "178.137.160.2", "8");
INSERT INTO `wp_rg_form_view` VALUES("24708", "3", "2016-01-18 22:12:38", "184.69.178.254", "167");
INSERT INTO `wp_rg_form_view` VALUES("24709", "8", "2016-01-18 22:12:38", "184.69.178.254", "21");
INSERT INTO `wp_rg_form_view` VALUES("24710", "6", "2016-01-18 22:38:02", "144.76.201.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("24711", "3", "2016-01-18 23:00:17", "207.194.133.9", "382");
INSERT INTO `wp_rg_form_view` VALUES("24712", "8", "2016-01-18 23:00:17", "207.194.133.9", "46");
INSERT INTO `wp_rg_form_view` VALUES("24713", "9", "2016-01-18 23:52:55", "40.77.167.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("24714", "1", "2016-01-18 23:53:09", "40.77.167.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("24715", "3", "2016-01-19 00:00:54", "96.50.41.8", "164");
INSERT INTO `wp_rg_form_view` VALUES("24716", "8", "2016-01-19 00:00:54", "96.50.41.8", "21");
INSERT INTO `wp_rg_form_view` VALUES("24717", "3", "2016-01-19 01:11:16", "66.249.74.106", "73");
INSERT INTO `wp_rg_form_view` VALUES("24718", "8", "2016-01-19 01:11:16", "66.249.74.106", "9");
INSERT INTO `wp_rg_form_view` VALUES("24719", "3", "2016-01-19 02:11:16", "202.46.48.202", "95");
INSERT INTO `wp_rg_form_view` VALUES("24720", "8", "2016-01-19 02:11:16", "202.46.48.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("24721", "3", "2016-01-19 03:12:48", "136.243.154.32", "64");
INSERT INTO `wp_rg_form_view` VALUES("24722", "8", "2016-01-19 03:12:48", "136.243.154.32", "8");
INSERT INTO `wp_rg_form_view` VALUES("24723", "1", "2016-01-19 03:39:48", "23.80.97.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("24724", "3", "2016-01-19 04:01:51", "199.21.99.202", "106");
INSERT INTO `wp_rg_form_view` VALUES("24725", "8", "2016-01-19 04:01:52", "199.21.99.202", "13");
INSERT INTO `wp_rg_form_view` VALUES("24726", "3", "2016-01-19 05:08:31", "202.46.58.156", "56");
INSERT INTO `wp_rg_form_view` VALUES("24727", "8", "2016-01-19 05:08:31", "202.46.58.156", "7");
INSERT INTO `wp_rg_form_view` VALUES("24728", "3", "2016-01-19 06:10:16", "199.21.99.202", "190");
INSERT INTO `wp_rg_form_view` VALUES("24729", "8", "2016-01-19 06:10:16", "199.21.99.202", "23");
INSERT INTO `wp_rg_form_view` VALUES("24730", "9", "2016-01-19 06:31:28", "100.43.81.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("24731", "7", "2016-01-19 06:36:42", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("24732", "3", "2016-01-19 07:00:01", "202.46.54.98", "153");
INSERT INTO `wp_rg_form_view` VALUES("24733", "8", "2016-01-19 07:00:01", "202.46.54.98", "19");
INSERT INTO `wp_rg_form_view` VALUES("24734", "1", "2016-01-19 07:24:17", "192.227.161.79", "4");
INSERT INTO `wp_rg_form_view` VALUES("24735", "3", "2016-01-19 08:00:16", "202.46.53.194", "32");
INSERT INTO `wp_rg_form_view` VALUES("24736", "8", "2016-01-19 08:00:16", "202.46.53.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("24737", "3", "2016-01-19 09:00:16", "68.180.229.161", "113");
INSERT INTO `wp_rg_form_view` VALUES("24738", "8", "2016-01-19 09:00:16", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("24739", "3", "2016-01-19 10:00:03", "199.21.99.202", "233");
INSERT INTO `wp_rg_form_view` VALUES("24740", "8", "2016-01-19 10:00:04", "199.21.99.202", "29");
INSERT INTO `wp_rg_form_view` VALUES("24741", "3", "2016-01-19 11:07:16", "66.249.74.12", "84");
INSERT INTO `wp_rg_form_view` VALUES("24742", "8", "2016-01-19 11:07:16", "66.249.74.12", "11");
INSERT INTO `wp_rg_form_view` VALUES("24743", "2", "2016-01-19 11:55:22", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("24744", "3", "2016-01-19 12:00:20", "136.243.151.113", "140");
INSERT INTO `wp_rg_form_view` VALUES("24745", "8", "2016-01-19 12:00:20", "136.243.151.113", "19");
INSERT INTO `wp_rg_form_view` VALUES("24746", "3", "2016-01-19 13:41:20", "202.46.53.153", "23");
INSERT INTO `wp_rg_form_view` VALUES("24747", "8", "2016-01-19 13:41:21", "202.46.53.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("24748", "3", "2016-01-19 14:05:28", "188.215.22.2", "87");
INSERT INTO `wp_rg_form_view` VALUES("24749", "8", "2016-01-19 14:05:28", "188.215.22.2", "11");
INSERT INTO `wp_rg_form_view` VALUES("24750", "1", "2016-01-19 14:21:39", "98.237.176.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("24751", "3", "2016-01-19 15:11:22", "66.249.74.104", "48");
INSERT INTO `wp_rg_form_view` VALUES("24752", "8", "2016-01-19 15:11:22", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("24753", "3", "2016-01-19 16:08:15", "207.194.133.9", "24");
INSERT INTO `wp_rg_form_view` VALUES("24754", "8", "2016-01-19 16:08:16", "207.194.133.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("24755", "3", "2016-01-19 17:09:39", "96.50.65.70", "122");
INSERT INTO `wp_rg_form_view` VALUES("24756", "8", "2016-01-19 17:09:39", "96.50.65.70", "15");
INSERT INTO `wp_rg_form_view` VALUES("24757", "3", "2016-01-19 18:10:56", "27.151.80.108", "232");
INSERT INTO `wp_rg_form_view` VALUES("24758", "8", "2016-01-19 18:10:56", "27.151.80.108", "30");
INSERT INTO `wp_rg_form_view` VALUES("24759", "2", "2016-01-19 18:42:33", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("24760", "3", "2016-01-19 19:10:07", "46.119.119.70", "328");
INSERT INTO `wp_rg_form_view` VALUES("24761", "3", "2016-01-19 19:10:07", "46.119.119.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("24762", "8", "2016-01-19 19:10:08", "46.119.119.70", "40");
INSERT INTO `wp_rg_form_view` VALUES("24763", "8", "2016-01-19 19:10:08", "46.119.119.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("24764", "2", "2016-01-19 19:43:24", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("24765", "3", "2016-01-19 20:03:42", "207.194.133.9", "121");
INSERT INTO `wp_rg_form_view` VALUES("24766", "8", "2016-01-19 20:03:42", "207.194.133.9", "15");
INSERT INTO `wp_rg_form_view` VALUES("24767", "3", "2016-01-19 21:11:19", "184.69.178.254", "60");
INSERT INTO `wp_rg_form_view` VALUES("24768", "8", "2016-01-19 21:11:20", "184.69.178.254", "8");
INSERT INTO `wp_rg_form_view` VALUES("24769", "3", "2016-01-19 22:02:39", "202.46.48.204", "101");
INSERT INTO `wp_rg_form_view` VALUES("24770", "8", "2016-01-19 22:02:39", "202.46.48.204", "13");
INSERT INTO `wp_rg_form_view` VALUES("24771", "3", "2016-01-19 23:28:52", "96.54.184.100", "48");
INSERT INTO `wp_rg_form_view` VALUES("24772", "8", "2016-01-19 23:28:52", "96.54.184.100", "6");
INSERT INTO `wp_rg_form_view` VALUES("24773", "3", "2016-01-20 00:17:51", "40.77.167.7", "50");
INSERT INTO `wp_rg_form_view` VALUES("24774", "8", "2016-01-20 00:17:51", "40.77.167.7", "6");
INSERT INTO `wp_rg_form_view` VALUES("24775", "3", "2016-01-20 01:19:02", "184.66.247.196", "112");
INSERT INTO `wp_rg_form_view` VALUES("24776", "8", "2016-01-20 01:19:02", "184.66.247.196", "14");
INSERT INTO `wp_rg_form_view` VALUES("24777", "3", "2016-01-20 02:04:42", "68.180.229.161", "65");
INSERT INTO `wp_rg_form_view` VALUES("24778", "8", "2016-01-20 02:04:42", "68.180.229.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("24779", "3", "2016-01-20 03:10:12", "202.46.55.81", "38");
INSERT INTO `wp_rg_form_view` VALUES("24780", "8", "2016-01-20 03:10:13", "202.46.55.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("24781", "3", "2016-01-20 04:00:57", "178.137.85.56", "134");
INSERT INTO `wp_rg_form_view` VALUES("24782", "3", "2016-01-20 04:00:57", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("24783", "8", "2016-01-20 04:00:57", "178.137.85.56", "16");
INSERT INTO `wp_rg_form_view` VALUES("24784", "8", "2016-01-20 04:00:57", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("24785", "1", "2016-01-20 04:04:16", "192.3.59.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("24786", "3", "2016-01-20 05:06:01", "202.46.57.184", "13");
INSERT INTO `wp_rg_form_view` VALUES("24787", "8", "2016-01-20 05:06:01", "202.46.57.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("24788", "3", "2016-01-20 06:38:58", "96.50.68.167", "16");
INSERT INTO `wp_rg_form_view` VALUES("24789", "8", "2016-01-20 06:38:59", "96.50.68.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("24790", "3", "2016-01-20 07:12:26", "202.46.49.192", "51");
INSERT INTO `wp_rg_form_view` VALUES("24791", "8", "2016-01-20 07:12:26", "202.46.49.192", "6");
INSERT INTO `wp_rg_form_view` VALUES("24792", "3", "2016-01-20 08:06:48", "202.46.51.163", "109");
INSERT INTO `wp_rg_form_view` VALUES("24793", "8", "2016-01-20 08:06:48", "202.46.51.163", "14");
INSERT INTO `wp_rg_form_view` VALUES("24794", "1", "2016-01-20 08:30:16", "172.218.233.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("24795", "3", "2016-01-20 09:11:51", "66.249.74.104", "24");
INSERT INTO `wp_rg_form_view` VALUES("24796", "8", "2016-01-20 09:11:51", "66.249.74.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("24797", "3", "2016-01-20 10:00:30", "202.46.56.187", "60");
INSERT INTO `wp_rg_form_view` VALUES("24798", "8", "2016-01-20 10:00:30", "202.46.56.187", "8");
INSERT INTO `wp_rg_form_view` VALUES("24799", "3", "2016-01-20 11:37:40", "155.94.138.241", "31");
INSERT INTO `wp_rg_form_view` VALUES("24800", "8", "2016-01-20 11:37:40", "155.94.138.241", "4");
INSERT INTO `wp_rg_form_view` VALUES("24801", "3", "2016-01-20 12:09:41", "40.77.167.63", "34");
INSERT INTO `wp_rg_form_view` VALUES("24802", "8", "2016-01-20 12:09:41", "40.77.167.63", "4");
INSERT INTO `wp_rg_form_view` VALUES("24803", "3", "2016-01-20 13:03:19", "66.249.74.106", "24");
INSERT INTO `wp_rg_form_view` VALUES("24804", "8", "2016-01-20 13:03:19", "66.249.74.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("24805", "3", "2016-01-20 14:03:09", "202.46.56.204", "48");
INSERT INTO `wp_rg_form_view` VALUES("24806", "8", "2016-01-20 14:03:10", "202.46.56.204", "5");
INSERT INTO `wp_rg_form_view` VALUES("24807", "3", "2016-01-20 15:04:15", "202.46.51.202", "64");
INSERT INTO `wp_rg_form_view` VALUES("24808", "8", "2016-01-20 15:04:15", "202.46.51.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("24809", "3", "2016-01-20 16:04:47", "51.254.32.82", "506");
INSERT INTO `wp_rg_form_view` VALUES("24810", "8", "2016-01-20 16:04:47", "51.254.32.82", "74");
INSERT INTO `wp_rg_form_view` VALUES("24811", "2", "2016-01-20 16:24:18", "96.91.131.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("24812", "3", "2016-01-20 17:03:23", "202.46.55.147", "167");
INSERT INTO `wp_rg_form_view` VALUES("24813", "8", "2016-01-20 17:03:23", "202.46.55.147", "23");
INSERT INTO `wp_rg_form_view` VALUES("24814", "3", "2016-01-20 18:02:10", "38.117.92.58", "175");
INSERT INTO `wp_rg_form_view` VALUES("24815", "8", "2016-01-20 18:02:10", "38.117.92.58", "22");
INSERT INTO `wp_rg_form_view` VALUES("24816", "3", "2016-01-20 19:00:07", "24.108.7.45", "171");
INSERT INTO `wp_rg_form_view` VALUES("24817", "8", "2016-01-20 19:00:08", "24.108.7.45", "21");
INSERT INTO `wp_rg_form_view` VALUES("24818", "3", "2016-01-20 20:09:04", "202.46.56.90", "118");
INSERT INTO `wp_rg_form_view` VALUES("24819", "8", "2016-01-20 20:09:04", "202.46.56.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("24820", "3", "2016-01-20 21:03:06", "202.46.57.28", "137");
INSERT INTO `wp_rg_form_view` VALUES("24821", "8", "2016-01-20 21:03:07", "202.46.57.28", "16");
INSERT INTO `wp_rg_form_view` VALUES("24822", "2", "2016-01-20 21:49:52", "195.154.146.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("24823", "3", "2016-01-20 22:02:15", "202.46.50.89", "185");
INSERT INTO `wp_rg_form_view` VALUES("24824", "8", "2016-01-20 22:02:15", "202.46.50.89", "24");
INSERT INTO `wp_rg_form_view` VALUES("24825", "2", "2016-01-20 22:04:03", "76.66.141.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("24826", "3", "2016-01-20 23:01:20", "202.46.52.142", "108");
INSERT INTO `wp_rg_form_view` VALUES("24827", "8", "2016-01-20 23:01:21", "202.46.52.142", "14");
INSERT INTO `wp_rg_form_view` VALUES("24828", "1", "2016-01-20 23:16:55", "24.69.68.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("24829", "3", "2016-01-21 00:00:28", "202.46.50.13", "491");
INSERT INTO `wp_rg_form_view` VALUES("24830", "8", "2016-01-21 00:00:28", "202.46.50.13", "60");
INSERT INTO `wp_rg_form_view` VALUES("24831", "2", "2016-01-21 00:31:39", "198.0.18.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("24832", "3", "2016-01-21 01:00:04", "24.108.7.45", "86");
INSERT INTO `wp_rg_form_view` VALUES("24833", "8", "2016-01-21 01:00:04", "24.108.7.45", "10");
INSERT INTO `wp_rg_form_view` VALUES("24834", "3", "2016-01-21 02:18:21", "198.148.15.126", "52");
INSERT INTO `wp_rg_form_view` VALUES("24835", "8", "2016-01-21 02:18:21", "198.148.15.126", "7");
INSERT INTO `wp_rg_form_view` VALUES("24836", "3", "2016-01-21 03:01:03", "202.46.58.204", "113");
INSERT INTO `wp_rg_form_view` VALUES("24837", "8", "2016-01-21 03:01:03", "202.46.58.204", "15");
INSERT INTO `wp_rg_form_view` VALUES("24838", "3", "2016-01-21 04:00:10", "202.46.50.83", "533");
INSERT INTO `wp_rg_form_view` VALUES("24839", "8", "2016-01-21 04:00:10", "202.46.50.83", "71");
INSERT INTO `wp_rg_form_view` VALUES("24840", "2", "2016-01-21 04:06:57", "174.127.133.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("24841", "3", "2016-01-21 05:37:08", "62.81.85.102", "250");
INSERT INTO `wp_rg_form_view` VALUES("24842", "8", "2016-01-21 05:37:08", "62.81.85.102", "31");
INSERT INTO `wp_rg_form_view` VALUES("24843", "2", "2016-01-21 05:38:09", "62.81.85.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("24844", "3", "2016-01-21 06:07:39", "154.20.34.180", "104");
INSERT INTO `wp_rg_form_view` VALUES("24845", "8", "2016-01-21 06:07:39", "154.20.34.180", "13");
INSERT INTO `wp_rg_form_view` VALUES("24846", "3", "2016-01-21 07:09:58", "202.46.53.59", "32");
INSERT INTO `wp_rg_form_view` VALUES("24847", "8", "2016-01-21 07:09:58", "202.46.53.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("24848", "3", "2016-01-21 08:14:55", "66.249.74.102", "143");
INSERT INTO `wp_rg_form_view` VALUES("24849", "8", "2016-01-21 08:14:55", "66.249.74.102", "18");
INSERT INTO `wp_rg_form_view` VALUES("24850", "6", "2016-01-21 08:40:47", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("24851", "3", "2016-01-21 09:05:06", "202.46.53.191", "84");
INSERT INTO `wp_rg_form_view` VALUES("24852", "8", "2016-01-21 09:05:06", "202.46.53.191", "11");
INSERT INTO `wp_rg_form_view` VALUES("24853", "3", "2016-01-21 10:04:12", "202.46.58.80", "111");
INSERT INTO `wp_rg_form_view` VALUES("24854", "8", "2016-01-21 10:04:12", "202.46.58.80", "15");
INSERT INTO `wp_rg_form_view` VALUES("24855", "9", "2016-01-21 10:47:46", "93.127.146.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("24856", "3", "2016-01-21 11:07:02", "51.255.65.12", "172");
INSERT INTO `wp_rg_form_view` VALUES("24857", "8", "2016-01-21 11:07:02", "51.255.65.12", "22");
INSERT INTO `wp_rg_form_view` VALUES("24858", "2", "2016-01-21 11:22:18", "195.154.226.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("24859", "3", "2016-01-21 12:02:26", "202.46.58.81", "172");
INSERT INTO `wp_rg_form_view` VALUES("24860", "8", "2016-01-21 12:02:27", "202.46.58.81", "20");
INSERT INTO `wp_rg_form_view` VALUES("24861", "1", "2016-01-21 12:12:58", "217.69.133.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("24862", "3", "2016-01-21 13:01:36", "202.46.50.132", "160");
INSERT INTO `wp_rg_form_view` VALUES("24863", "8", "2016-01-21 13:01:36", "202.46.50.132", "21");
INSERT INTO `wp_rg_form_view` VALUES("24864", "3", "2016-01-21 14:00:41", "202.46.58.19", "107");
INSERT INTO `wp_rg_form_view` VALUES("24865", "8", "2016-01-21 14:00:41", "202.46.58.19", "13");
INSERT INTO `wp_rg_form_view` VALUES("24866", "1", "2016-01-21 14:36:33", "66.248.199.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("24867", "3", "2016-01-21 15:08:16", "202.46.55.148", "128");
INSERT INTO `wp_rg_form_view` VALUES("24868", "8", "2016-01-21 15:08:16", "202.46.55.148", "15");
INSERT INTO `wp_rg_form_view` VALUES("24869", "3", "2016-01-21 16:07:22", "202.46.54.91", "150");
INSERT INTO `wp_rg_form_view` VALUES("24870", "8", "2016-01-21 16:07:23", "202.46.54.91", "20");
INSERT INTO `wp_rg_form_view` VALUES("24871", "9", "2016-01-21 16:20:31", "107.161.83.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("24872", "6", "2016-01-21 16:55:50", "217.69.133.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("24873", "3", "2016-01-21 17:04:48", "66.249.74.104", "503");
INSERT INTO `wp_rg_form_view` VALUES("24874", "8", "2016-01-21 17:04:48", "66.249.74.104", "61");
INSERT INTO `wp_rg_form_view` VALUES("24875", "1", "2016-01-21 17:27:09", "192.210.216.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("24876", "6", "2016-01-21 17:36:06", "157.55.39.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("24877", "5", "2016-01-21 17:44:58", "51.255.65.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("24878", "3", "2016-01-21 18:04:11", "216.220.37.161", "418");
INSERT INTO `wp_rg_form_view` VALUES("24879", "8", "2016-01-21 18:04:12", "216.220.37.161", "54");
INSERT INTO `wp_rg_form_view` VALUES("24880", "2", "2016-01-21 18:05:05", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("24881", "3", "2016-01-21 19:04:49", "202.46.57.163", "147");
INSERT INTO `wp_rg_form_view` VALUES("24882", "8", "2016-01-21 19:04:49", "202.46.57.163", "18");
INSERT INTO `wp_rg_form_view` VALUES("24883", "3", "2016-01-21 20:03:14", "217.69.133.219", "141");
INSERT INTO `wp_rg_form_view` VALUES("24884", "8", "2016-01-21 20:03:14", "217.69.133.219", "17");
INSERT INTO `wp_rg_form_view` VALUES("24885", "3", "2016-01-21 21:02:58", "202.46.50.15", "150");
INSERT INTO `wp_rg_form_view` VALUES("24886", "8", "2016-01-21 21:02:58", "202.46.50.15", "20");
INSERT INTO `wp_rg_form_view` VALUES("24887", "5", "2016-01-21 21:37:51", "217.69.133.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("24888", "3", "2016-01-21 22:02:06", "202.46.50.153", "137");
INSERT INTO `wp_rg_form_view` VALUES("24889", "8", "2016-01-21 22:02:06", "202.46.50.153", "18");
INSERT INTO `wp_rg_form_view` VALUES("24890", "3", "2016-01-21 23:01:14", "202.46.53.153", "266");
INSERT INTO `wp_rg_form_view` VALUES("24891", "8", "2016-01-21 23:01:14", "202.46.53.153", "33");
INSERT INTO `wp_rg_form_view` VALUES("24892", "9", "2016-01-21 23:49:36", "107.183.7.34", "4");
INSERT INTO `wp_rg_form_view` VALUES("24893", "3", "2016-01-22 00:00:20", "202.46.53.192", "216");
INSERT INTO `wp_rg_form_view` VALUES("24894", "8", "2016-01-22 00:00:20", "202.46.53.192", "28");
INSERT INTO `wp_rg_form_view` VALUES("24895", "6", "2016-01-22 00:44:01", "207.46.13.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("24896", "5", "2016-01-22 00:57:48", "202.46.57.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("24897", "3", "2016-01-22 01:01:10", "184.69.3.198", "166");
INSERT INTO `wp_rg_form_view` VALUES("24898", "8", "2016-01-22 01:01:10", "184.69.3.198", "22");
INSERT INTO `wp_rg_form_view` VALUES("24899", "9", "2016-01-22 01:38:44", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24900", "3", "2016-01-22 02:04:20", "202.46.58.26", "131");
INSERT INTO `wp_rg_form_view` VALUES("24901", "8", "2016-01-22 02:04:20", "202.46.58.26", "16");
INSERT INTO `wp_rg_form_view` VALUES("24902", "3", "2016-01-22 03:05:41", "202.46.56.194", "150");
INSERT INTO `wp_rg_form_view` VALUES("24903", "8", "2016-01-22 03:05:41", "202.46.56.194", "21");
INSERT INTO `wp_rg_form_view` VALUES("24904", "9", "2016-01-22 03:24:39", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24905", "3", "2016-01-22 04:02:26", "202.46.52.163", "154");
INSERT INTO `wp_rg_form_view` VALUES("24906", "8", "2016-01-22 04:02:26", "202.46.52.163", "19");
INSERT INTO `wp_rg_form_view` VALUES("24907", "3", "2016-01-22 05:05:43", "202.46.50.93", "115");
INSERT INTO `wp_rg_form_view` VALUES("24908", "8", "2016-01-22 05:05:43", "202.46.50.93", "15");
INSERT INTO `wp_rg_form_view` VALUES("24909", "9", "2016-01-22 05:07:30", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("24910", "3", "2016-01-22 06:11:10", "216.232.153.64", "88");
INSERT INTO `wp_rg_form_view` VALUES("24911", "8", "2016-01-22 06:11:10", "216.232.153.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("24912", "3", "2016-01-22 07:01:22", "202.46.50.184", "129");
INSERT INTO `wp_rg_form_view` VALUES("24913", "8", "2016-01-22 07:01:22", "202.46.50.184", "18");
INSERT INTO `wp_rg_form_view` VALUES("24914", "3", "2016-01-22 08:02:02", "202.46.54.11", "124");
INSERT INTO `wp_rg_form_view` VALUES("24915", "8", "2016-01-22 08:02:02", "202.46.54.11", "16");
INSERT INTO `wp_rg_form_view` VALUES("24916", "6", "2016-01-22 08:36:24", "217.69.133.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("24917", "3", "2016-01-22 09:44:50", "202.46.58.118", "58");
INSERT INTO `wp_rg_form_view` VALUES("24918", "8", "2016-01-22 09:44:51", "202.46.58.118", "8");
INSERT INTO `wp_rg_form_view` VALUES("24919", "3", "2016-01-22 10:00:02", "202.46.53.121", "111");
INSERT INTO `wp_rg_form_view` VALUES("24920", "8", "2016-01-22 10:00:02", "202.46.53.121", "15");
INSERT INTO `wp_rg_form_view` VALUES("24921", "3", "2016-01-22 11:12:22", "202.46.56.210", "202");
INSERT INTO `wp_rg_form_view` VALUES("24922", "8", "2016-01-22 11:12:22", "202.46.56.210", "26");
INSERT INTO `wp_rg_form_view` VALUES("24923", "1", "2016-01-22 11:44:23", "192.126.160.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("24924", "3", "2016-01-22 12:03:06", "202.46.56.200", "246");
INSERT INTO `wp_rg_form_view` VALUES("24925", "8", "2016-01-22 12:03:07", "202.46.56.200", "30");
INSERT INTO `wp_rg_form_view` VALUES("24926", "9", "2016-01-22 12:25:08", "51.255.65.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("24927", "2", "2016-01-22 12:54:59", "195.154.146.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("24928", "3", "2016-01-22 13:02:20", "202.46.56.130", "78");
INSERT INTO `wp_rg_form_view` VALUES("24929", "8", "2016-01-22 13:02:21", "202.46.56.130", "10");
INSERT INTO `wp_rg_form_view` VALUES("24930", "3", "2016-01-22 14:00:12", "202.46.52.201", "178");
INSERT INTO `wp_rg_form_view` VALUES("24931", "8", "2016-01-22 14:00:13", "202.46.52.201", "22");
INSERT INTO `wp_rg_form_view` VALUES("24932", "3", "2016-01-22 15:06:02", "184.66.125.229", "145");
INSERT INTO `wp_rg_form_view` VALUES("24933", "8", "2016-01-22 15:06:02", "184.66.125.229", "19");
INSERT INTO `wp_rg_form_view` VALUES("24934", "3", "2016-01-22 16:01:59", "202.46.52.77", "210");
INSERT INTO `wp_rg_form_view` VALUES("24935", "8", "2016-01-22 16:01:59", "202.46.52.77", "26");
INSERT INTO `wp_rg_form_view` VALUES("24936", "3", "2016-01-22 17:02:52", "202.46.58.81", "182");
INSERT INTO `wp_rg_form_view` VALUES("24937", "8", "2016-01-22 17:02:52", "202.46.58.81", "24");
INSERT INTO `wp_rg_form_view` VALUES("24938", "3", "2016-01-22 18:00:45", "217.69.133.84", "321");
INSERT INTO `wp_rg_form_view` VALUES("24939", "8", "2016-01-22 18:00:45", "217.69.133.84", "42");
INSERT INTO `wp_rg_form_view` VALUES("24940", "3", "2016-01-22 19:04:38", "202.46.55.124", "159");
INSERT INTO `wp_rg_form_view` VALUES("24941", "8", "2016-01-22 19:04:39", "202.46.55.124", "19");
INSERT INTO `wp_rg_form_view` VALUES("24942", "3", "2016-01-22 20:00:29", "202.46.53.156", "228");
INSERT INTO `wp_rg_form_view` VALUES("24943", "8", "2016-01-22 20:00:29", "202.46.53.156", "28");
INSERT INTO `wp_rg_form_view` VALUES("24944", "3", "2016-01-22 21:04:07", "202.46.51.166", "222");
INSERT INTO `wp_rg_form_view` VALUES("24945", "8", "2016-01-22 21:04:07", "202.46.51.166", "27");
INSERT INTO `wp_rg_form_view` VALUES("24946", "3", "2016-01-22 22:06:38", "202.46.50.86", "267");
INSERT INTO `wp_rg_form_view` VALUES("24947", "8", "2016-01-22 22:06:39", "202.46.50.86", "33");
INSERT INTO `wp_rg_form_view` VALUES("24948", "3", "2016-01-22 23:02:24", "202.46.48.133", "280");
INSERT INTO `wp_rg_form_view` VALUES("24949", "8", "2016-01-22 23:02:24", "202.46.48.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("24950", "1", "2016-01-22 23:09:10", "96.50.18.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("24951", "3", "2016-01-23 00:02:29", "202.46.51.182", "323");
INSERT INTO `wp_rg_form_view` VALUES("24952", "8", "2016-01-23 00:02:29", "202.46.51.182", "42");
INSERT INTO `wp_rg_form_view` VALUES("24953", "2", "2016-01-23 00:17:26", "217.69.133.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("24954", "3", "2016-01-23 01:03:22", "202.46.52.13", "229");
INSERT INTO `wp_rg_form_view` VALUES("24955", "8", "2016-01-23 01:03:22", "202.46.52.13", "28");
INSERT INTO `wp_rg_form_view` VALUES("24956", "1", "2016-01-23 01:26:38", "23.80.97.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("24957", "3", "2016-01-23 02:01:44", "51.255.65.42", "138");
INSERT INTO `wp_rg_form_view` VALUES("24958", "8", "2016-01-23 02:01:44", "51.255.65.42", "17");
INSERT INTO `wp_rg_form_view` VALUES("24959", "3", "2016-01-23 03:05:47", "157.55.39.214", "152");
INSERT INTO `wp_rg_form_view` VALUES("24960", "8", "2016-01-23 03:05:47", "157.55.39.214", "20");
INSERT INTO `wp_rg_form_view` VALUES("24961", "3", "2016-01-23 04:00:10", "202.46.51.204", "184");
INSERT INTO `wp_rg_form_view` VALUES("24962", "8", "2016-01-23 04:00:10", "202.46.51.204", "23");
INSERT INTO `wp_rg_form_view` VALUES("24963", "3", "2016-01-23 05:01:04", "202.46.51.106", "178");
INSERT INTO `wp_rg_form_view` VALUES("24964", "8", "2016-01-23 05:01:04", "202.46.51.106", "22");
INSERT INTO `wp_rg_form_view` VALUES("24965", "3", "2016-01-23 06:01:56", "202.46.53.151", "439");
INSERT INTO `wp_rg_form_view` VALUES("24966", "8", "2016-01-23 06:01:56", "202.46.53.151", "57");
INSERT INTO `wp_rg_form_view` VALUES("24967", "2", "2016-01-23 06:16:37", "195.154.146.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("24968", "3", "2016-01-23 07:02:49", "202.46.50.90", "100");
INSERT INTO `wp_rg_form_view` VALUES("24969", "8", "2016-01-23 07:02:49", "202.46.50.90", "14");
INSERT INTO `wp_rg_form_view` VALUES("24970", "3", "2016-01-23 08:01:02", "207.46.13.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("24971", "8", "2016-01-23 08:01:02", "207.46.13.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("24972", "9", "2016-01-23 08:06:43", "217.69.133.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("24973", "2", "2016-01-23 09:32:35", "216.158.206.88", "4");
INSERT INTO `wp_rg_form_view` VALUES("24974", "3", "2016-01-23 09:32:35", "216.158.206.88", "82");
INSERT INTO `wp_rg_form_view` VALUES("24975", "8", "2016-01-23 09:32:35", "216.158.206.88", "10");
INSERT INTO `wp_rg_form_view` VALUES("24976", "9", "2016-01-23 09:41:51", "217.69.133.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("24977", "3", "2016-01-23 10:17:34", "77.75.79.119", "31");
INSERT INTO `wp_rg_form_view` VALUES("24978", "8", "2016-01-23 10:17:34", "77.75.79.119", "4");
INSERT INTO `wp_rg_form_view` VALUES("24979", "3", "2016-01-23 11:16:10", "217.69.133.219", "25");
INSERT INTO `wp_rg_form_view` VALUES("24980", "8", "2016-01-23 11:16:10", "217.69.133.219", "3");
INSERT INTO `wp_rg_form_view` VALUES("24981", "6", "2016-01-23 11:16:27", "217.69.133.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("24982", "3", "2016-01-23 12:17:40", "109.162.76.7", "40");
INSERT INTO `wp_rg_form_view` VALUES("24983", "8", "2016-01-23 12:17:40", "109.162.76.7", "5");
INSERT INTO `wp_rg_form_view` VALUES("24984", "3", "2016-01-23 14:35:13", "66.249.74.106", "9");
INSERT INTO `wp_rg_form_view` VALUES("24985", "8", "2016-01-23 14:35:13", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("24986", "3", "2016-01-23 15:04:47", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("24987", "8", "2016-01-23 15:04:47", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("24988", "3", "2016-01-23 16:05:03", "207.46.13.161", "140");
INSERT INTO `wp_rg_form_view` VALUES("24989", "8", "2016-01-23 16:05:03", "207.46.13.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("24990", "3", "2016-01-23 17:02:35", "95.213.143.103", "84");
INSERT INTO `wp_rg_form_view` VALUES("24991", "8", "2016-01-23 17:02:35", "95.213.143.103", "10");
INSERT INTO `wp_rg_form_view` VALUES("24992", "3", "2016-01-23 18:21:57", "66.249.74.104", "34");
INSERT INTO `wp_rg_form_view` VALUES("24993", "8", "2016-01-23 18:21:57", "66.249.74.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("24994", "2", "2016-01-23 18:53:16", "51.255.65.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("24995", "3", "2016-01-23 19:08:13", "66.249.74.102", "41");
INSERT INTO `wp_rg_form_view` VALUES("24996", "8", "2016-01-23 19:08:13", "66.249.74.102", "6");
INSERT INTO `wp_rg_form_view` VALUES("24997", "3", "2016-01-23 20:48:22", "69.12.75.108", "34");
INSERT INTO `wp_rg_form_view` VALUES("24998", "8", "2016-01-23 20:48:23", "69.12.75.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("24999", "3", "2016-01-23 21:12:56", "68.180.229.161", "33");
INSERT INTO `wp_rg_form_view` VALUES("25000", "8", "2016-01-23 21:12:56", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("25001", "3", "2016-01-23 22:16:05", "40.77.167.103", "257");
INSERT INTO `wp_rg_form_view` VALUES("25002", "8", "2016-01-23 22:16:05", "40.77.167.103", "32");
INSERT INTO `wp_rg_form_view` VALUES("25003", "2", "2016-01-23 22:32:04", "151.73.211.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("25004", "3", "2016-01-23 23:07:49", "66.249.74.104", "164");
INSERT INTO `wp_rg_form_view` VALUES("25005", "8", "2016-01-23 23:07:49", "66.249.74.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("25006", "1", "2016-01-23 23:08:08", "207.46.13.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("25007", "1", "2016-01-24 00:20:40", "96.44.172.66", "4");
INSERT INTO `wp_rg_form_view` VALUES("25008", "3", "2016-01-24 00:20:40", "96.44.172.66", "120");
INSERT INTO `wp_rg_form_view` VALUES("25009", "8", "2016-01-24 00:20:42", "96.44.172.66", "15");
INSERT INTO `wp_rg_form_view` VALUES("25010", "7", "2016-01-24 00:53:52", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("25011", "3", "2016-01-24 01:08:35", "207.46.13.48", "344");
INSERT INTO `wp_rg_form_view` VALUES("25012", "8", "2016-01-24 01:08:35", "207.46.13.48", "44");
INSERT INTO `wp_rg_form_view` VALUES("25013", "1", "2016-01-24 01:15:42", "24.244.23.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("25014", "2", "2016-01-24 01:20:25", "70.35.205.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("25015", "3", "2016-01-24 02:44:44", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("25016", "8", "2016-01-24 02:44:44", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("25017", "3", "2016-01-24 03:05:21", "207.46.13.48", "298");
INSERT INTO `wp_rg_form_view` VALUES("25018", "8", "2016-01-24 03:05:21", "207.46.13.48", "38");
INSERT INTO `wp_rg_form_view` VALUES("25019", "9", "2016-01-24 03:33:30", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25020", "2", "2016-01-24 03:44:14", "70.35.205.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("25021", "3", "2016-01-24 04:27:00", "188.215.22.51", "74");
INSERT INTO `wp_rg_form_view` VALUES("25022", "8", "2016-01-24 04:27:00", "188.215.22.51", "9");
INSERT INTO `wp_rg_form_view` VALUES("25023", "3", "2016-01-24 06:04:40", "46.119.119.70", "143");
INSERT INTO `wp_rg_form_view` VALUES("25024", "3", "2016-01-24 06:04:40", "46.119.119.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("25025", "8", "2016-01-24 06:04:40", "46.119.119.70", "17");
INSERT INTO `wp_rg_form_view` VALUES("25026", "8", "2016-01-24 06:04:40", "46.119.119.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("25027", "9", "2016-01-24 06:49:50", "207.46.13.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("25028", "3", "2016-01-24 07:07:54", "51.255.65.88", "16");
INSERT INTO `wp_rg_form_view` VALUES("25029", "8", "2016-01-24 07:07:54", "51.255.65.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("25030", "3", "2016-01-24 08:00:26", "173.232.118.114", "98");
INSERT INTO `wp_rg_form_view` VALUES("25031", "8", "2016-01-24 08:00:26", "173.232.118.114", "13");
INSERT INTO `wp_rg_form_view` VALUES("25032", "3", "2016-01-24 09:04:34", "207.46.13.170", "23");
INSERT INTO `wp_rg_form_view` VALUES("25033", "8", "2016-01-24 09:04:34", "207.46.13.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("25034", "3", "2016-01-24 10:23:44", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("25035", "8", "2016-01-24 10:23:44", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("25036", "3", "2016-01-24 11:03:50", "51.255.65.62", "40");
INSERT INTO `wp_rg_form_view` VALUES("25037", "8", "2016-01-24 11:03:50", "51.255.65.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("25038", "2", "2016-01-24 11:11:59", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("25039", "3", "2016-01-24 12:03:38", "70.35.205.34", "424");
INSERT INTO `wp_rg_form_view` VALUES("25040", "8", "2016-01-24 12:03:38", "70.35.205.34", "52");
INSERT INTO `wp_rg_form_view` VALUES("25041", "2", "2016-01-24 12:04:29", "70.35.205.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("25042", "3", "2016-01-24 13:08:30", "178.137.85.56", "131");
INSERT INTO `wp_rg_form_view` VALUES("25043", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25044", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25045", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25046", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25047", "3", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25048", "8", "2016-01-24 13:08:30", "178.137.85.56", "12");
INSERT INTO `wp_rg_form_view` VALUES("25049", "8", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25050", "8", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25051", "8", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25052", "8", "2016-01-24 13:08:30", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25053", "8", "2016-01-24 13:08:31", "178.137.85.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("25054", "3", "2016-01-24 14:29:13", "178.137.85.56", "48");
INSERT INTO `wp_rg_form_view` VALUES("25055", "8", "2016-01-24 14:29:13", "178.137.85.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("25056", "3", "2016-01-24 15:09:02", "66.90.94.130", "74");
INSERT INTO `wp_rg_form_view` VALUES("25057", "8", "2016-01-24 15:09:02", "66.90.94.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("25058", "3", "2016-01-24 16:55:21", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("25059", "8", "2016-01-24 16:55:22", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("25060", "3", "2016-01-24 17:03:35", "68.180.229.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("25061", "8", "2016-01-24 17:03:35", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("25062", "3", "2016-01-24 18:22:42", "66.249.74.106", "17");
INSERT INTO `wp_rg_form_view` VALUES("25063", "8", "2016-01-24 18:22:42", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("25064", "3", "2016-01-24 19:02:36", "62.210.162.184", "344");
INSERT INTO `wp_rg_form_view` VALUES("25065", "8", "2016-01-24 19:02:36", "62.210.162.184", "42");
INSERT INTO `wp_rg_form_view` VALUES("25066", "2", "2016-01-24 19:06:04", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25067", "3", "2016-01-24 20:37:10", "51.255.65.37", "33");
INSERT INTO `wp_rg_form_view` VALUES("25068", "8", "2016-01-24 20:37:11", "51.255.65.37", "4");
INSERT INTO `wp_rg_form_view` VALUES("25069", "3", "2016-01-24 21:25:49", "24.108.76.63", "48");
INSERT INTO `wp_rg_form_view` VALUES("25070", "8", "2016-01-24 21:25:49", "24.108.76.63", "6");
INSERT INTO `wp_rg_form_view` VALUES("25071", "3", "2016-01-24 22:13:20", "51.255.65.81", "41");
INSERT INTO `wp_rg_form_view` VALUES("25072", "8", "2016-01-24 22:13:21", "51.255.65.81", "6");
INSERT INTO `wp_rg_form_view` VALUES("25073", "3", "2016-01-24 23:05:29", "216.158.200.101", "253");
INSERT INTO `wp_rg_form_view` VALUES("25074", "8", "2016-01-24 23:05:29", "216.158.200.101", "33");
INSERT INTO `wp_rg_form_view` VALUES("25075", "2", "2016-01-24 23:12:03", "146.185.234.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("25076", "1", "2016-01-24 23:21:42", "91.200.12.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("25077", "3", "2016-01-25 00:12:01", "68.180.229.161", "93");
INSERT INTO `wp_rg_form_view` VALUES("25078", "8", "2016-01-25 00:12:01", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("25079", "2", "2016-01-25 01:10:39", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25080", "3", "2016-01-25 01:10:39", "68.180.229.161", "187");
INSERT INTO `wp_rg_form_view` VALUES("25081", "8", "2016-01-25 01:10:39", "68.180.229.161", "26");
INSERT INTO `wp_rg_form_view` VALUES("25082", "6", "2016-01-25 01:21:55", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("25083", "5", "2016-01-25 01:22:28", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("25084", "3", "2016-01-25 02:11:21", "40.77.167.103", "64");
INSERT INTO `wp_rg_form_view` VALUES("25085", "8", "2016-01-25 02:11:21", "40.77.167.103", "8");
INSERT INTO `wp_rg_form_view` VALUES("25086", "3", "2016-01-25 03:05:22", "209.89.94.210", "213");
INSERT INTO `wp_rg_form_view` VALUES("25087", "8", "2016-01-25 03:05:22", "209.89.94.210", "26");
INSERT INTO `wp_rg_form_view` VALUES("25088", "1", "2016-01-25 03:15:05", "24.68.44.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("25089", "3", "2016-01-25 04:04:51", "66.249.74.104", "361");
INSERT INTO `wp_rg_form_view` VALUES("25090", "8", "2016-01-25 04:04:51", "66.249.74.104", "45");
INSERT INTO `wp_rg_form_view` VALUES("25091", "1", "2016-01-25 04:28:54", "198.12.66.154", "9");
INSERT INTO `wp_rg_form_view` VALUES("25092", "2", "2016-01-25 04:44:25", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25093", "3", "2016-01-25 05:03:39", "69.12.75.108", "185");
INSERT INTO `wp_rg_form_view` VALUES("25094", "8", "2016-01-25 05:03:39", "69.12.75.108", "23");
INSERT INTO `wp_rg_form_view` VALUES("25095", "3", "2016-01-25 06:01:57", "202.46.56.90", "454");
INSERT INTO `wp_rg_form_view` VALUES("25096", "8", "2016-01-25 06:01:57", "202.46.56.90", "57");
INSERT INTO `wp_rg_form_view` VALUES("25097", "2", "2016-01-25 06:11:51", "96.91.131.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("25098", "1", "2016-01-25 06:20:26", "172.245.10.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("25099", "3", "2016-01-25 07:00:04", "202.46.48.138", "272");
INSERT INTO `wp_rg_form_view` VALUES("25100", "8", "2016-01-25 07:00:04", "202.46.48.138", "35");
INSERT INTO `wp_rg_form_view` VALUES("25101", "3", "2016-01-25 08:02:01", "202.46.51.21", "184");
INSERT INTO `wp_rg_form_view` VALUES("25102", "8", "2016-01-25 08:02:01", "202.46.51.21", "25");
INSERT INTO `wp_rg_form_view` VALUES("25103", "1", "2016-01-25 08:05:21", "66.151.86.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("25104", "3", "2016-01-25 09:02:41", "202.46.57.185", "358");
INSERT INTO `wp_rg_form_view` VALUES("25105", "8", "2016-01-25 09:02:41", "202.46.57.185", "45");
INSERT INTO `wp_rg_form_view` VALUES("25106", "1", "2016-01-25 09:47:51", "216.158.220.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25107", "3", "2016-01-25 10:00:55", "202.46.54.160", "329");
INSERT INTO `wp_rg_form_view` VALUES("25108", "8", "2016-01-25 10:00:55", "202.46.54.160", "41");
INSERT INTO `wp_rg_form_view` VALUES("25109", "1", "2016-01-25 10:34:50", "192.126.168.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("25110", "3", "2016-01-25 11:02:54", "202.46.56.116", "178");
INSERT INTO `wp_rg_form_view` VALUES("25111", "8", "2016-01-25 11:02:54", "202.46.56.116", "24");
INSERT INTO `wp_rg_form_view` VALUES("25112", "8", "2016-01-25 12:04:51", "202.46.52.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("25113", "3", "2016-01-25 12:04:51", "202.46.52.162", "226");
INSERT INTO `wp_rg_form_view` VALUES("25114", "3", "2016-01-25 13:02:57", "202.46.53.50", "2921");
INSERT INTO `wp_rg_form_view` VALUES("25115", "8", "2016-01-25 13:02:57", "202.46.53.50", "372");
INSERT INTO `wp_rg_form_view` VALUES("25116", "1", "2016-01-25 13:17:11", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("25117", "5", "2016-01-25 13:24:14", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("25118", "6", "2016-01-25 13:33:09", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("25119", "9", "2016-01-25 13:41:29", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("25120", "3", "2016-01-25 14:00:00", "45.55.235.146", "2238");
INSERT INTO `wp_rg_form_view` VALUES("25121", "8", "2016-01-25 14:00:01", "45.55.235.146", "286");
INSERT INTO `wp_rg_form_view` VALUES("25122", "2", "2016-01-25 14:19:54", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("25123", "1", "2016-01-25 14:26:18", "179.61.138.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("25124", "3", "2016-01-25 15:02:59", "64.114.222.223", "233");
INSERT INTO `wp_rg_form_view` VALUES("25125", "8", "2016-01-25 15:03:00", "64.114.222.223", "30");
INSERT INTO `wp_rg_form_view` VALUES("25126", "3", "2016-01-25 16:01:08", "202.46.49.94", "211");
INSERT INTO `wp_rg_form_view` VALUES("25127", "8", "2016-01-25 16:01:08", "202.46.49.94", "29");
INSERT INTO `wp_rg_form_view` VALUES("25128", "3", "2016-01-25 17:03:06", "202.46.52.175", "234");
INSERT INTO `wp_rg_form_view` VALUES("25129", "8", "2016-01-25 17:03:06", "202.46.52.175", "29");
INSERT INTO `wp_rg_form_view` VALUES("25130", "3", "2016-01-25 18:01:09", "5.9.98.130", "4248");
INSERT INTO `wp_rg_form_view` VALUES("25131", "8", "2016-01-25 18:01:09", "5.9.98.130", "535");
INSERT INTO `wp_rg_form_view` VALUES("25132", "2", "2016-01-25 18:01:23", "172.245.107.251", "3");
INSERT INTO `wp_rg_form_view` VALUES("25133", "1", "2016-01-25 18:04:02", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("25134", "5", "2016-01-25 18:07:44", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("25135", "9", "2016-01-25 18:09:09", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("25136", "6", "2016-01-25 18:14:06", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("25137", "3", "2016-01-25 19:00:00", "5.9.98.130", "4319");
INSERT INTO `wp_rg_form_view` VALUES("25138", "8", "2016-01-25 19:00:00", "5.9.98.130", "566");
INSERT INTO `wp_rg_form_view` VALUES("25139", "3", "2016-01-25 20:00:00", "5.9.98.130", "3168");
INSERT INTO `wp_rg_form_view` VALUES("25140", "8", "2016-01-25 20:00:04", "5.9.98.130", "403");
INSERT INTO `wp_rg_form_view` VALUES("25141", "3", "2016-01-25 21:03:13", "202.46.50.137", "5537");
INSERT INTO `wp_rg_form_view` VALUES("25142", "8", "2016-01-25 21:03:13", "202.46.50.137", "729");
INSERT INTO `wp_rg_form_view` VALUES("25143", "3", "2016-01-25 22:00:00", "5.9.98.130", "5243");
INSERT INTO `wp_rg_form_view` VALUES("25144", "8", "2016-01-25 22:00:01", "5.9.98.130", "660");
INSERT INTO `wp_rg_form_view` VALUES("25145", "3", "2016-01-25 23:03:17", "202.46.56.15", "246");
INSERT INTO `wp_rg_form_view` VALUES("25146", "8", "2016-01-25 23:03:18", "202.46.56.15", "30");
INSERT INTO `wp_rg_form_view` VALUES("25147", "3", "2016-01-26 00:01:23", "202.46.58.136", "5077");
INSERT INTO `wp_rg_form_view` VALUES("25148", "8", "2016-01-26 00:01:23", "202.46.58.136", "565");
INSERT INTO `wp_rg_form_view` VALUES("25149", "3", "2016-01-26 01:00:00", "66.249.74.104", "6116");
INSERT INTO `wp_rg_form_view` VALUES("25150", "8", "2016-01-26 01:00:00", "5.9.98.130", "908");
INSERT INTO `wp_rg_form_view` VALUES("25151", "2", "2016-01-26 01:14:58", "70.35.203.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("25152", "3", "2016-01-26 02:00:00", "5.9.98.130", "5883");
INSERT INTO `wp_rg_form_view` VALUES("25153", "8", "2016-01-26 02:00:06", "5.9.98.130", "725");
INSERT INTO `wp_rg_form_view` VALUES("25154", "8", "2016-01-26 03:00:02", "5.9.98.130", "669");
INSERT INTO `wp_rg_form_view` VALUES("25155", "3", "2016-01-26 03:00:03", "5.9.98.130", "5200");
INSERT INTO `wp_rg_form_view` VALUES("25156", "3", "2016-01-26 04:00:00", "61.131.85.107", "114");
INSERT INTO `wp_rg_form_view` VALUES("25157", "8", "2016-01-26 04:00:00", "61.131.85.107", "14");
INSERT INTO `wp_rg_form_view` VALUES("25158", "3", "2016-01-26 05:01:48", "96.50.99.2", "114");
INSERT INTO `wp_rg_form_view` VALUES("25159", "8", "2016-01-26 05:01:48", "96.50.99.2", "14");
INSERT INTO `wp_rg_form_view` VALUES("25160", "9", "2016-01-26 05:13:40", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("25161", "3", "2016-01-26 06:03:20", "68.180.229.161", "33");
INSERT INTO `wp_rg_form_view` VALUES("25162", "8", "2016-01-26 06:03:20", "68.180.229.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("25163", "3", "2016-01-26 08:08:39", "207.46.13.176", "431");
INSERT INTO `wp_rg_form_view` VALUES("25164", "8", "2016-01-26 08:08:39", "207.46.13.176", "53");
INSERT INTO `wp_rg_form_view` VALUES("25165", "6", "2016-01-26 08:09:23", "157.55.39.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("25166", "1", "2016-01-26 08:32:31", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25167", "3", "2016-01-26 09:16:02", "66.249.74.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("25168", "8", "2016-01-26 09:16:02", "66.249.74.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("25169", "9", "2016-01-26 09:58:24", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25170", "3", "2016-01-26 10:17:44", "78.149.175.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("25171", "8", "2016-01-26 10:17:44", "78.149.175.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25172", "1", "2016-01-26 11:04:01", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25173", "3", "2016-01-26 11:04:01", "96.44.172.66", "172");
INSERT INTO `wp_rg_form_view` VALUES("25174", "8", "2016-01-26 11:04:02", "96.44.172.66", "20");
INSERT INTO `wp_rg_form_view` VALUES("25175", "2", "2016-01-26 11:08:16", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("25176", "3", "2016-01-26 12:19:32", "144.76.155.8", "296");
INSERT INTO `wp_rg_form_view` VALUES("25177", "8", "2016-01-26 12:19:33", "144.76.155.8", "37");
INSERT INTO `wp_rg_form_view` VALUES("25178", "2", "2016-01-26 12:21:35", "104.236.220.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("25179", "3", "2016-01-26 13:00:08", "104.247.21.230", "160");
INSERT INTO `wp_rg_form_view` VALUES("25180", "8", "2016-01-26 13:00:08", "104.247.21.230", "19");
INSERT INTO `wp_rg_form_view` VALUES("25181", "1", "2016-01-26 13:30:50", "24.68.16.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("25182", "3", "2016-01-26 14:02:43", "66.249.74.106", "33");
INSERT INTO `wp_rg_form_view` VALUES("25183", "8", "2016-01-26 14:02:43", "66.249.74.106", "4");
INSERT INTO `wp_rg_form_view` VALUES("25184", "3", "2016-01-26 15:04:43", "66.249.74.104", "34");
INSERT INTO `wp_rg_form_view` VALUES("25185", "8", "2016-01-26 15:04:43", "66.249.74.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("25186", "3", "2016-01-26 16:06:37", "96.54.214.166", "175");
INSERT INTO `wp_rg_form_view` VALUES("25187", "8", "2016-01-26 16:06:37", "96.54.214.166", "20");
INSERT INTO `wp_rg_form_view` VALUES("25188", "3", "2016-01-26 17:01:34", "198.73.190.254", "428");
INSERT INTO `wp_rg_form_view` VALUES("25189", "8", "2016-01-26 17:01:34", "198.73.190.254", "52");
INSERT INTO `wp_rg_form_view` VALUES("25190", "2", "2016-01-26 17:45:47", "184.107.228.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("25191", "3", "2016-01-26 18:13:38", "68.180.229.161", "88");
INSERT INTO `wp_rg_form_view` VALUES("25192", "8", "2016-01-26 18:13:38", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("25193", "3", "2016-01-26 19:07:54", "62.210.162.184", "74");
INSERT INTO `wp_rg_form_view` VALUES("25194", "8", "2016-01-26 19:07:54", "62.210.162.184", "9");
INSERT INTO `wp_rg_form_view` VALUES("25195", "3", "2016-01-26 20:00:58", "68.180.229.161", "136");
INSERT INTO `wp_rg_form_view` VALUES("25196", "8", "2016-01-26 20:00:58", "68.180.229.161", "19");
INSERT INTO `wp_rg_form_view` VALUES("25197", "3", "2016-01-26 21:02:21", "96.50.22.88", "155");
INSERT INTO `wp_rg_form_view` VALUES("25198", "8", "2016-01-26 21:02:21", "96.50.22.88", "19");
INSERT INTO `wp_rg_form_view` VALUES("25199", "3", "2016-01-26 22:13:52", "202.46.52.171", "25");
INSERT INTO `wp_rg_form_view` VALUES("25200", "8", "2016-01-26 22:13:53", "202.46.52.171", "3");
INSERT INTO `wp_rg_form_view` VALUES("25201", "3", "2016-01-26 23:02:43", "62.210.162.184", "38");
INSERT INTO `wp_rg_form_view` VALUES("25202", "8", "2016-01-26 23:02:43", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("25203", "3", "2016-01-27 00:06:34", "68.180.229.161", "46");
INSERT INTO `wp_rg_form_view` VALUES("25204", "8", "2016-01-27 00:06:34", "68.180.229.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("25205", "3", "2016-01-27 01:01:19", "202.46.52.73", "24");
INSERT INTO `wp_rg_form_view` VALUES("25206", "8", "2016-01-27 01:01:19", "202.46.52.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("25207", "3", "2016-01-27 02:08:18", "202.46.50.139", "133");
INSERT INTO `wp_rg_form_view` VALUES("25208", "8", "2016-01-27 02:08:18", "202.46.50.139", "17");
INSERT INTO `wp_rg_form_view` VALUES("25209", "3", "2016-01-27 03:03:10", "68.180.229.161", "134");
INSERT INTO `wp_rg_form_view` VALUES("25210", "8", "2016-01-27 03:03:10", "68.180.229.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("25211", "3", "2016-01-27 04:22:15", "202.46.58.16", "24");
INSERT INTO `wp_rg_form_view` VALUES("25212", "8", "2016-01-27 04:22:15", "202.46.58.16", "3");
INSERT INTO `wp_rg_form_view` VALUES("25213", "3", "2016-01-27 05:03:28", "202.46.56.196", "170");
INSERT INTO `wp_rg_form_view` VALUES("25214", "8", "2016-01-27 05:03:28", "202.46.56.196", "21");
INSERT INTO `wp_rg_form_view` VALUES("25215", "3", "2016-01-27 06:01:23", "202.46.53.47", "163");
INSERT INTO `wp_rg_form_view` VALUES("25216", "8", "2016-01-27 06:01:23", "202.46.53.47", "19");
INSERT INTO `wp_rg_form_view` VALUES("25217", "3", "2016-01-27 07:03:12", "202.46.53.118", "195");
INSERT INTO `wp_rg_form_view` VALUES("25218", "8", "2016-01-27 07:03:12", "202.46.53.118", "26");
INSERT INTO `wp_rg_form_view` VALUES("25219", "3", "2016-01-27 08:01:05", "202.46.54.168", "202");
INSERT INTO `wp_rg_form_view` VALUES("25220", "8", "2016-01-27 08:01:05", "202.46.54.168", "26");
INSERT INTO `wp_rg_form_view` VALUES("25221", "3", "2016-01-27 09:02:54", "202.46.53.151", "325");
INSERT INTO `wp_rg_form_view` VALUES("25222", "8", "2016-01-27 09:02:54", "202.46.53.151", "41");
INSERT INTO `wp_rg_form_view` VALUES("25223", "3", "2016-01-27 10:00:48", "202.46.54.31", "210");
INSERT INTO `wp_rg_form_view` VALUES("25224", "8", "2016-01-27 10:00:48", "202.46.54.31", "28");
INSERT INTO `wp_rg_form_view` VALUES("25225", "3", "2016-01-27 11:02:35", "202.46.51.162", "177");
INSERT INTO `wp_rg_form_view` VALUES("25226", "8", "2016-01-27 11:02:36", "202.46.51.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("25227", "3", "2016-01-27 12:00:30", "202.46.56.73", "245");
INSERT INTO `wp_rg_form_view` VALUES("25228", "8", "2016-01-27 12:00:31", "202.46.56.73", "32");
INSERT INTO `wp_rg_form_view` VALUES("25229", "3", "2016-01-27 13:02:17", "202.46.56.192", "230");
INSERT INTO `wp_rg_form_view` VALUES("25230", "8", "2016-01-27 13:02:17", "202.46.56.192", "30");
INSERT INTO `wp_rg_form_view` VALUES("25231", "1", "2016-01-27 13:17:33", "62.210.139.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("25232", "3", "2016-01-27 14:00:15", "202.46.54.95", "230");
INSERT INTO `wp_rg_form_view` VALUES("25233", "8", "2016-01-27 14:00:15", "202.46.54.95", "28");
INSERT INTO `wp_rg_form_view` VALUES("25234", "3", "2016-01-27 15:02:01", "202.46.55.16", "236");
INSERT INTO `wp_rg_form_view` VALUES("25235", "8", "2016-01-27 15:02:01", "202.46.55.16", "30");
INSERT INTO `wp_rg_form_view` VALUES("25236", "3", "2016-01-27 16:03:48", "202.46.51.36", "240");
INSERT INTO `wp_rg_form_view` VALUES("25237", "8", "2016-01-27 16:03:48", "202.46.51.36", "33");
INSERT INTO `wp_rg_form_view` VALUES("25238", "3", "2016-01-27 17:01:09", "24.68.134.134", "294");
INSERT INTO `wp_rg_form_view` VALUES("25239", "8", "2016-01-27 17:01:09", "24.68.134.134", "38");
INSERT INTO `wp_rg_form_view` VALUES("25240", "3", "2016-01-27 18:03:30", "202.46.56.17", "248");
INSERT INTO `wp_rg_form_view` VALUES("25241", "8", "2016-01-27 18:03:31", "202.46.56.17", "32");
INSERT INTO `wp_rg_form_view` VALUES("25242", "3", "2016-01-27 19:00:41", "66.249.74.102", "207");
INSERT INTO `wp_rg_form_view` VALUES("25243", "8", "2016-01-27 19:00:41", "66.249.74.102", "27");
INSERT INTO `wp_rg_form_view` VALUES("25244", "1", "2016-01-27 19:03:58", "192.240.106.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("25245", "3", "2016-01-27 20:03:13", "202.46.48.198", "231");
INSERT INTO `wp_rg_form_view` VALUES("25246", "8", "2016-01-27 20:03:13", "202.46.48.198", "30");
INSERT INTO `wp_rg_form_view` VALUES("25247", "3", "2016-01-27 21:01:08", "202.46.54.106", "382");
INSERT INTO `wp_rg_form_view` VALUES("25248", "8", "2016-01-27 21:01:08", "202.46.54.106", "51");
INSERT INTO `wp_rg_form_view` VALUES("25249", "2", "2016-01-27 21:47:50", "146.185.234.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("25250", "3", "2016-01-27 22:00:27", "172.219.199.236", "203");
INSERT INTO `wp_rg_form_view` VALUES("25251", "8", "2016-01-27 22:00:27", "172.219.199.236", "27");
INSERT INTO `wp_rg_form_view` VALUES("25252", "3", "2016-01-27 23:00:50", "202.46.56.73", "272");
INSERT INTO `wp_rg_form_view` VALUES("25253", "8", "2016-01-27 23:00:50", "202.46.56.73", "35");
INSERT INTO `wp_rg_form_view` VALUES("25254", "3", "2016-01-28 00:02:37", "202.46.49.116", "201");
INSERT INTO `wp_rg_form_view` VALUES("25255", "8", "2016-01-28 00:02:37", "202.46.49.116", "26");
INSERT INTO `wp_rg_form_view` VALUES("25256", "1", "2016-01-28 00:16:40", "184.66.236.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("25257", "8", "2016-01-28 01:01:41", "202.46.56.17", "14");
INSERT INTO `wp_rg_form_view` VALUES("25258", "3", "2016-01-28 01:01:42", "202.46.56.17", "98");
INSERT INTO `wp_rg_form_view` VALUES("25259", "3", "2016-01-28 02:05:10", "202.46.48.130", "193");
INSERT INTO `wp_rg_form_view` VALUES("25260", "8", "2016-01-28 02:05:10", "202.46.48.130", "25");
INSERT INTO `wp_rg_form_view` VALUES("25261", "1", "2016-01-28 02:56:27", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25262", "3", "2016-01-28 03:03:05", "202.46.58.95", "190");
INSERT INTO `wp_rg_form_view` VALUES("25263", "8", "2016-01-28 03:03:05", "202.46.58.95", "25");
INSERT INTO `wp_rg_form_view` VALUES("25264", "1", "2016-01-28 03:52:22", "198.12.66.172", "4");
INSERT INTO `wp_rg_form_view` VALUES("25265", "1", "2016-01-28 04:00:33", "66.34.147.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("25266", "3", "2016-01-28 04:00:33", "66.34.147.34", "61");
INSERT INTO `wp_rg_form_view` VALUES("25267", "8", "2016-01-28 04:00:34", "66.34.147.34", "9");
INSERT INTO `wp_rg_form_view` VALUES("25268", "3", "2016-01-28 05:06:01", "68.180.229.161", "105");
INSERT INTO `wp_rg_form_view` VALUES("25269", "8", "2016-01-28 05:06:01", "68.180.229.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("25270", "1", "2016-01-28 05:41:25", "46.166.145.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("25271", "3", "2016-01-28 06:26:40", "184.107.228.170", "1022");
INSERT INTO `wp_rg_form_view` VALUES("25272", "8", "2016-01-28 06:26:40", "184.107.228.170", "130");
INSERT INTO `wp_rg_form_view` VALUES("25273", "2", "2016-01-28 06:27:16", "184.107.228.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("25274", "1", "2016-01-28 06:53:52", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("25275", "5", "2016-01-28 07:00:01", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("25276", "3", "2016-01-28 07:00:01", "162.243.251.166", "3273");
INSERT INTO `wp_rg_form_view` VALUES("25277", "8", "2016-01-28 07:00:02", "162.243.251.166", "413");
INSERT INTO `wp_rg_form_view` VALUES("25278", "6", "2016-01-28 07:10:07", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("25279", "9", "2016-01-28 07:18:17", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("25280", "1", "2016-01-28 07:24:48", "66.151.86.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("25281", "2", "2016-01-28 07:56:37", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("25282", "3", "2016-01-28 08:00:02", "162.243.251.166", "661");
INSERT INTO `wp_rg_form_view` VALUES("25283", "8", "2016-01-28 08:00:02", "162.243.251.166", "86");
INSERT INTO `wp_rg_form_view` VALUES("25284", "1", "2016-01-28 09:05:50", "69.25.236.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("25285", "3", "2016-01-28 09:05:50", "69.25.236.40", "32");
INSERT INTO `wp_rg_form_view` VALUES("25286", "8", "2016-01-28 09:05:51", "69.25.236.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("25287", "3", "2016-01-28 10:00:08", "51.255.65.64", "49");
INSERT INTO `wp_rg_form_view` VALUES("25288", "8", "2016-01-28 10:00:08", "51.255.65.64", "6");
INSERT INTO `wp_rg_form_view` VALUES("25289", "6", "2016-01-28 10:05:14", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25290", "3", "2016-01-28 11:07:46", "94.23.45.37", "24");
INSERT INTO `wp_rg_form_view` VALUES("25291", "8", "2016-01-28 11:07:46", "94.23.45.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("25292", "5", "2016-01-28 11:27:34", "85.10.211.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("25293", "3", "2016-01-28 12:19:19", "94.23.45.37", "40");
INSERT INTO `wp_rg_form_view` VALUES("25294", "8", "2016-01-28 12:19:19", "94.23.45.37", "5");
INSERT INTO `wp_rg_form_view` VALUES("25295", "3", "2016-01-28 13:27:46", "207.46.13.155", "17");
INSERT INTO `wp_rg_form_view` VALUES("25296", "8", "2016-01-28 13:27:46", "207.46.13.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("25297", "3", "2016-01-28 14:04:51", "51.255.65.90", "48");
INSERT INTO `wp_rg_form_view` VALUES("25298", "8", "2016-01-28 14:04:51", "51.255.65.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("25299", "9", "2016-01-28 14:16:32", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25300", "3", "2016-01-28 15:20:18", "5.9.106.81", "32");
INSERT INTO `wp_rg_form_view` VALUES("25301", "8", "2016-01-28 15:20:18", "5.9.106.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("25302", "3", "2016-01-28 16:15:04", "24.66.129.53", "75");
INSERT INTO `wp_rg_form_view` VALUES("25303", "8", "2016-01-28 16:15:04", "24.66.129.53", "10");
INSERT INTO `wp_rg_form_view` VALUES("25304", "1", "2016-01-28 16:15:18", "24.66.129.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("25305", "3", "2016-01-28 17:04:15", "202.46.53.178", "109");
INSERT INTO `wp_rg_form_view` VALUES("25306", "8", "2016-01-28 17:04:16", "202.46.53.178", "13");
INSERT INTO `wp_rg_form_view` VALUES("25307", "3", "2016-01-28 18:05:39", "202.46.56.12", "495");
INSERT INTO `wp_rg_form_view` VALUES("25308", "8", "2016-01-28 18:05:39", "202.46.56.12", "62");
INSERT INTO `wp_rg_form_view` VALUES("25309", "9", "2016-01-28 18:26:42", "207.46.13.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("25310", "1", "2016-01-28 18:26:54", "207.46.13.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("25311", "7", "2016-01-28 18:27:16", "157.55.39.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("25312", "3", "2016-01-28 19:06:59", "202.46.52.147", "594");
INSERT INTO `wp_rg_form_view` VALUES("25313", "8", "2016-01-28 19:06:59", "202.46.52.147", "75");
INSERT INTO `wp_rg_form_view` VALUES("25314", "2", "2016-01-28 19:10:11", "173.10.99.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("25315", "6", "2016-01-28 19:52:59", "5.9.112.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("25316", "3", "2016-01-28 20:08:23", "202.46.51.133", "79");
INSERT INTO `wp_rg_form_view` VALUES("25317", "8", "2016-01-28 20:08:23", "202.46.51.133", "10");
INSERT INTO `wp_rg_form_view` VALUES("25318", "3", "2016-01-28 21:07:20", "184.66.240.53", "157");
INSERT INTO `wp_rg_form_view` VALUES("25319", "8", "2016-01-28 21:07:20", "184.66.240.53", "19");
INSERT INTO `wp_rg_form_view` VALUES("25320", "3", "2016-01-28 22:00:51", "202.46.52.174", "83");
INSERT INTO `wp_rg_form_view` VALUES("25321", "8", "2016-01-28 22:00:51", "202.46.52.174", "11");
INSERT INTO `wp_rg_form_view` VALUES("25322", "3", "2016-01-28 23:00:14", "184.66.252.102", "182");
INSERT INTO `wp_rg_form_view` VALUES("25323", "8", "2016-01-28 23:00:14", "184.66.252.102", "23");
INSERT INTO `wp_rg_form_view` VALUES("25324", "3", "2016-01-29 00:03:34", "202.46.55.143", "134");
INSERT INTO `wp_rg_form_view` VALUES("25325", "8", "2016-01-29 00:03:34", "202.46.55.143", "16");
INSERT INTO `wp_rg_form_view` VALUES("25326", "3", "2016-01-29 01:04:58", "202.46.55.16", "88");
INSERT INTO `wp_rg_form_view` VALUES("25327", "8", "2016-01-29 01:04:58", "202.46.55.16", "11");
INSERT INTO `wp_rg_form_view` VALUES("25328", "1", "2016-01-29 01:35:11", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25329", "3", "2016-01-29 02:06:18", "202.46.49.112", "128");
INSERT INTO `wp_rg_form_view` VALUES("25330", "8", "2016-01-29 02:06:18", "202.46.49.112", "17");
INSERT INTO `wp_rg_form_view` VALUES("25331", "1", "2016-01-29 02:10:13", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25332", "3", "2016-01-29 03:07:40", "202.46.49.63", "109");
INSERT INTO `wp_rg_form_view` VALUES("25333", "8", "2016-01-29 03:07:40", "202.46.49.63", "14");
INSERT INTO `wp_rg_form_view` VALUES("25334", "3", "2016-01-29 04:09:01", "202.46.49.142", "110");
INSERT INTO `wp_rg_form_view` VALUES("25335", "8", "2016-01-29 04:09:01", "202.46.49.142", "15");
INSERT INTO `wp_rg_form_view` VALUES("25336", "3", "2016-01-29 05:00:10", "202.46.56.182", "65");
INSERT INTO `wp_rg_form_view` VALUES("25337", "8", "2016-01-29 05:00:10", "202.46.56.182", "8");
INSERT INTO `wp_rg_form_view` VALUES("25338", "3", "2016-01-29 06:04:14", "66.249.74.102", "367");
INSERT INTO `wp_rg_form_view` VALUES("25339", "8", "2016-01-29 06:04:14", "66.249.74.102", "47");
INSERT INTO `wp_rg_form_view` VALUES("25340", "2", "2016-01-29 06:48:54", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25341", "3", "2016-01-29 07:05:59", "51.255.65.66", "79");
INSERT INTO `wp_rg_form_view` VALUES("25342", "8", "2016-01-29 07:05:59", "51.255.65.66", "10");
INSERT INTO `wp_rg_form_view` VALUES("25343", "3", "2016-01-29 08:46:45", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("25344", "8", "2016-01-29 08:46:46", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("25345", "3", "2016-01-29 09:15:04", "51.255.65.65", "47");
INSERT INTO `wp_rg_form_view` VALUES("25346", "8", "2016-01-29 09:15:06", "51.255.65.65", "5");
INSERT INTO `wp_rg_form_view` VALUES("25347", "3", "2016-01-29 10:03:02", "68.180.229.161", "82");
INSERT INTO `wp_rg_form_view` VALUES("25348", "8", "2016-01-29 10:03:05", "178.137.86.123", "10");
INSERT INTO `wp_rg_form_view` VALUES("25349", "3", "2016-01-29 11:55:48", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("25350", "8", "2016-01-29 11:55:48", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25351", "3", "2016-01-29 14:15:53", "66.249.74.106", "25");
INSERT INTO `wp_rg_form_view` VALUES("25352", "8", "2016-01-29 14:15:53", "66.249.74.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("25353", "3", "2016-01-29 15:29:38", "134.249.65.86", "31");
INSERT INTO `wp_rg_form_view` VALUES("25354", "3", "2016-01-29 15:29:38", "134.249.65.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("25355", "8", "2016-01-29 15:29:38", "134.249.65.86", "4");
INSERT INTO `wp_rg_form_view` VALUES("25356", "3", "2016-01-29 16:21:39", "66.249.74.106", "176");
INSERT INTO `wp_rg_form_view` VALUES("25357", "8", "2016-01-29 16:21:39", "66.249.74.106", "22");
INSERT INTO `wp_rg_form_view` VALUES("25358", "3", "2016-01-29 17:05:02", "202.46.55.176", "173");
INSERT INTO `wp_rg_form_view` VALUES("25359", "8", "2016-01-29 17:05:02", "202.46.55.176", "21");
INSERT INTO `wp_rg_form_view` VALUES("25360", "3", "2016-01-29 18:06:01", "131.137.245.208", "165");
INSERT INTO `wp_rg_form_view` VALUES("25361", "8", "2016-01-29 18:06:01", "131.137.245.208", "21");
INSERT INTO `wp_rg_form_view` VALUES("25362", "3", "2016-01-29 19:04:12", "202.46.50.120", "120");
INSERT INTO `wp_rg_form_view` VALUES("25363", "8", "2016-01-29 19:04:12", "202.46.50.120", "16");
INSERT INTO `wp_rg_form_view` VALUES("25364", "3", "2016-01-29 20:00:14", "68.180.229.161", "136");
INSERT INTO `wp_rg_form_view` VALUES("25365", "8", "2016-01-29 20:00:15", "68.180.229.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("25366", "1", "2016-01-29 20:18:41", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("25367", "3", "2016-01-29 21:00:41", "66.249.64.108", "101");
INSERT INTO `wp_rg_form_view` VALUES("25368", "8", "2016-01-29 21:00:41", "66.249.64.108", "13");
INSERT INTO `wp_rg_form_view` VALUES("25369", "3", "2016-01-29 22:06:36", "24.69.58.95", "71");
INSERT INTO `wp_rg_form_view` VALUES("25370", "8", "2016-01-29 22:06:36", "24.69.58.95", "9");
INSERT INTO `wp_rg_form_view` VALUES("25371", "3", "2016-01-29 23:02:03", "202.46.53.159", "120");
INSERT INTO `wp_rg_form_view` VALUES("25372", "8", "2016-01-29 23:02:03", "202.46.53.159", "15");
INSERT INTO `wp_rg_form_view` VALUES("25373", "3", "2016-01-30 00:06:58", "202.46.50.93", "54");
INSERT INTO `wp_rg_form_view` VALUES("25374", "8", "2016-01-30 00:06:58", "202.46.50.93", "6");
INSERT INTO `wp_rg_form_view` VALUES("25375", "3", "2016-01-30 01:01:04", "202.46.52.177", "265");
INSERT INTO `wp_rg_form_view` VALUES("25376", "8", "2016-01-30 01:01:04", "202.46.52.177", "35");
INSERT INTO `wp_rg_form_view` VALUES("25377", "2", "2016-01-30 01:34:05", "146.185.234.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("25378", "3", "2016-01-30 02:05:58", "202.46.48.195", "77");
INSERT INTO `wp_rg_form_view` VALUES("25379", "8", "2016-01-30 02:05:58", "202.46.48.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("25380", "3", "2016-01-30 03:00:04", "202.46.49.157", "319");
INSERT INTO `wp_rg_form_view` VALUES("25381", "8", "2016-01-30 03:00:04", "202.46.49.157", "41");
INSERT INTO `wp_rg_form_view` VALUES("25382", "2", "2016-01-30 03:52:57", "96.91.131.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("25383", "3", "2016-01-30 04:05:01", "202.46.52.105", "126");
INSERT INTO `wp_rg_form_view` VALUES("25384", "8", "2016-01-30 04:05:02", "202.46.52.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("25385", "1", "2016-01-30 05:00:37", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25386", "3", "2016-01-30 05:00:38", "68.180.229.161", "77");
INSERT INTO `wp_rg_form_view` VALUES("25387", "8", "2016-01-30 05:00:38", "68.180.229.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("25388", "3", "2016-01-30 06:04:00", "202.46.56.195", "79");
INSERT INTO `wp_rg_form_view` VALUES("25389", "8", "2016-01-30 06:04:00", "202.46.56.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("25390", "3", "2016-01-30 07:08:55", "202.46.57.19", "134");
INSERT INTO `wp_rg_form_view` VALUES("25391", "8", "2016-01-30 07:08:55", "202.46.57.19", "16");
INSERT INTO `wp_rg_form_view` VALUES("25392", "7", "2016-01-30 07:23:36", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("25393", "3", "2016-01-30 08:03:01", "202.46.58.135", "70");
INSERT INTO `wp_rg_form_view` VALUES("25394", "8", "2016-01-30 08:03:01", "202.46.58.135", "9");
INSERT INTO `wp_rg_form_view` VALUES("25395", "3", "2016-01-30 09:07:56", "202.46.53.117", "143");
INSERT INTO `wp_rg_form_view` VALUES("25396", "8", "2016-01-30 09:07:56", "202.46.53.117", "18");
INSERT INTO `wp_rg_form_view` VALUES("25397", "7", "2016-01-30 09:29:34", "202.46.55.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("25398", "3", "2016-01-30 10:02:01", "202.46.54.15", "652");
INSERT INTO `wp_rg_form_view` VALUES("25399", "8", "2016-01-30 10:02:01", "202.46.54.15", "83");
INSERT INTO `wp_rg_form_view` VALUES("25400", "2", "2016-01-30 10:48:11", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("25401", "1", "2016-01-30 10:50:46", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("25402", "5", "2016-01-30 10:53:19", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("25403", "1", "2016-01-30 11:00:03", "96.44.172.66", "4");
INSERT INTO `wp_rg_form_view` VALUES("25404", "3", "2016-01-30 11:00:03", "96.44.172.66", "1262");
INSERT INTO `wp_rg_form_view` VALUES("25405", "8", "2016-01-30 11:00:03", "96.44.172.66", "168");
INSERT INTO `wp_rg_form_view` VALUES("25406", "2", "2016-01-30 11:38:41", "72.76.243.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("25407", "7", "2016-01-30 11:39:57", "72.76.243.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("25408", "5", "2016-01-30 11:40:45", "72.76.243.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("25409", "3", "2016-01-30 12:01:01", "202.46.57.73", "64");
INSERT INTO `wp_rg_form_view` VALUES("25410", "8", "2016-01-30 12:01:01", "202.46.57.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("25411", "3", "2016-01-30 13:03:11", "62.210.162.184", "70");
INSERT INTO `wp_rg_form_view` VALUES("25412", "8", "2016-01-30 13:03:11", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("25413", "3", "2016-01-30 14:00:03", "202.46.54.17", "68");
INSERT INTO `wp_rg_form_view` VALUES("25414", "8", "2016-01-30 14:00:03", "202.46.54.17", "9");
INSERT INTO `wp_rg_form_view` VALUES("25415", "3", "2016-01-30 15:04:57", "202.46.57.177", "162");
INSERT INTO `wp_rg_form_view` VALUES("25416", "8", "2016-01-30 15:04:57", "202.46.57.177", "21");
INSERT INTO `wp_rg_form_view` VALUES("25417", "3", "2016-01-30 16:02:59", "66.249.74.106", "100");
INSERT INTO `wp_rg_form_view` VALUES("25418", "8", "2016-01-30 16:02:59", "66.249.74.106", "13");
INSERT INTO `wp_rg_form_view` VALUES("25419", "3", "2016-01-30 17:10:14", "191.232.136.125", "29");
INSERT INTO `wp_rg_form_view` VALUES("25420", "8", "2016-01-30 17:10:14", "191.232.136.125", "5");
INSERT INTO `wp_rg_form_view` VALUES("25421", "3", "2016-01-30 18:41:35", "66.249.74.106", "17");
INSERT INTO `wp_rg_form_view` VALUES("25422", "8", "2016-01-30 18:41:36", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("25423", "3", "2016-01-30 19:26:26", "23.27.45.136", "8");
INSERT INTO `wp_rg_form_view` VALUES("25424", "8", "2016-01-30 19:26:26", "23.27.45.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("25425", "3", "2016-01-30 20:00:11", "178.137.17.115", "88");
INSERT INTO `wp_rg_form_view` VALUES("25426", "8", "2016-01-30 20:00:11", "178.137.17.115", "11");
INSERT INTO `wp_rg_form_view` VALUES("25427", "3", "2016-01-30 21:25:29", "77.75.79.72", "115");
INSERT INTO `wp_rg_form_view` VALUES("25428", "8", "2016-01-30 21:25:29", "77.75.79.72", "15");
INSERT INTO `wp_rg_form_view` VALUES("25429", "1", "2016-01-30 21:39:57", "154.5.144.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("25430", "3", "2016-01-30 22:09:14", "66.249.74.102", "32");
INSERT INTO `wp_rg_form_view` VALUES("25431", "8", "2016-01-30 22:09:14", "66.249.74.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("25432", "1", "2016-01-30 23:00:02", "216.158.84.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("25433", "3", "2016-01-30 23:00:03", "216.158.84.74", "73");
INSERT INTO `wp_rg_form_view` VALUES("25434", "8", "2016-01-30 23:00:03", "216.158.84.74", "9");
INSERT INTO `wp_rg_form_view` VALUES("25435", "3", "2016-01-31 00:13:12", "66.249.74.104", "67");
INSERT INTO `wp_rg_form_view` VALUES("25436", "8", "2016-01-31 00:13:12", "66.249.74.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("25437", "3", "2016-01-31 01:05:54", "77.75.76.172", "40");
INSERT INTO `wp_rg_form_view` VALUES("25438", "8", "2016-01-31 01:05:54", "77.75.76.172", "5");
INSERT INTO `wp_rg_form_view` VALUES("25439", "1", "2016-01-31 02:05:29", "192.227.161.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("25440", "3", "2016-01-31 02:05:29", "192.227.161.79", "104");
INSERT INTO `wp_rg_form_view` VALUES("25441", "8", "2016-01-31 02:05:29", "192.227.161.79", "13");
INSERT INTO `wp_rg_form_view` VALUES("25442", "2", "2016-01-31 02:23:50", "223.240.118.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("25443", "3", "2016-01-31 03:33:41", "178.137.86.123", "55");
INSERT INTO `wp_rg_form_view` VALUES("25444", "3", "2016-01-31 03:33:41", "178.137.86.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("25445", "8", "2016-01-31 03:33:41", "178.137.86.123", "6");
INSERT INTO `wp_rg_form_view` VALUES("25446", "8", "2016-01-31 03:33:41", "178.137.86.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("25447", "3", "2016-01-31 04:00:35", "24.68.111.45", "41");
INSERT INTO `wp_rg_form_view` VALUES("25448", "8", "2016-01-31 04:00:35", "24.68.111.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("25449", "9", "2016-01-31 05:34:09", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25450", "3", "2016-01-31 05:34:09", "66.249.74.102", "100");
INSERT INTO `wp_rg_form_view` VALUES("25451", "8", "2016-01-31 05:34:09", "66.249.74.102", "12");
INSERT INTO `wp_rg_form_view` VALUES("25452", "3", "2016-01-31 06:05:18", "66.249.74.106", "80");
INSERT INTO `wp_rg_form_view` VALUES("25453", "8", "2016-01-31 06:05:18", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("25454", "3", "2016-01-31 07:49:03", "62.210.162.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("25455", "8", "2016-01-31 07:49:04", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("25456", "3", "2016-01-31 09:15:07", "50.72.187.38", "24");
INSERT INTO `wp_rg_form_view` VALUES("25457", "8", "2016-01-31 09:15:07", "50.72.187.38", "3");
INSERT INTO `wp_rg_form_view` VALUES("25458", "3", "2016-01-31 10:38:40", "66.249.74.102", "32");
INSERT INTO `wp_rg_form_view` VALUES("25459", "8", "2016-01-31 10:38:40", "66.249.74.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("25460", "3", "2016-01-31 11:15:37", "157.55.39.117", "393");
INSERT INTO `wp_rg_form_view` VALUES("25461", "8", "2016-01-31 11:15:37", "157.55.39.117", "47");
INSERT INTO `wp_rg_form_view` VALUES("25462", "6", "2016-01-31 11:15:42", "157.55.39.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("25463", "2", "2016-01-31 11:16:42", "157.55.39.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("25464", "3", "2016-01-31 12:48:57", "51.255.65.67", "47");
INSERT INTO `wp_rg_form_view` VALUES("25465", "8", "2016-01-31 12:48:58", "51.255.65.67", "5");
INSERT INTO `wp_rg_form_view` VALUES("25466", "3", "2016-01-31 13:59:46", "66.249.74.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("25467", "8", "2016-01-31 13:59:46", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25468", "1", "2016-01-31 14:07:11", "89.157.40.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("25469", "3", "2016-01-31 14:07:11", "89.157.40.103", "8");
INSERT INTO `wp_rg_form_view` VALUES("25470", "8", "2016-01-31 14:07:11", "89.157.40.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("25471", "3", "2016-01-31 15:45:30", "66.249.74.106", "9");
INSERT INTO `wp_rg_form_view` VALUES("25472", "8", "2016-01-31 15:45:30", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("25473", "3", "2016-01-31 16:00:21", "68.180.229.161", "56");
INSERT INTO `wp_rg_form_view` VALUES("25474", "8", "2016-01-31 16:00:21", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("25475", "1", "2016-01-31 16:03:39", "51.255.65.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("25476", "3", "2016-01-31 17:04:34", "202.46.54.116", "114");
INSERT INTO `wp_rg_form_view` VALUES("25477", "8", "2016-01-31 17:04:34", "202.46.54.116", "16");
INSERT INTO `wp_rg_form_view` VALUES("25478", "1", "2016-01-31 17:33:23", "89.157.40.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("25479", "3", "2016-01-31 18:17:24", "204.116.226.60", "39");
INSERT INTO `wp_rg_form_view` VALUES("25480", "8", "2016-01-31 18:17:24", "204.116.226.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("25481", "3", "2016-01-31 19:05:40", "202.46.56.65", "75");
INSERT INTO `wp_rg_form_view` VALUES("25482", "8", "2016-01-31 19:05:40", "202.46.56.65", "11");
INSERT INTO `wp_rg_form_view` VALUES("25483", "3", "2016-01-31 20:00:26", "66.249.74.104", "91");
INSERT INTO `wp_rg_form_view` VALUES("25484", "8", "2016-01-31 20:00:26", "66.249.74.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("25485", "3", "2016-01-31 21:08:49", "46.118.116.135", "48");
INSERT INTO `wp_rg_form_view` VALUES("25486", "8", "2016-01-31 21:08:49", "46.118.116.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("25487", "3", "2016-01-31 22:16:17", "157.55.39.252", "64");
INSERT INTO `wp_rg_form_view` VALUES("25488", "8", "2016-01-31 22:16:17", "157.55.39.252", "8");
INSERT INTO `wp_rg_form_view` VALUES("25489", "1", "2016-01-31 22:53:03", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("25490", "1", "2016-01-31 23:19:34", "23.254.240.254", "3");
INSERT INTO `wp_rg_form_view` VALUES("25491", "3", "2016-01-31 23:19:34", "23.254.240.254", "115");
INSERT INTO `wp_rg_form_view` VALUES("25492", "8", "2016-01-31 23:19:34", "23.254.240.254", "14");
INSERT INTO `wp_rg_form_view` VALUES("25493", "3", "2016-02-01 00:13:29", "174.129.237.157", "48");
INSERT INTO `wp_rg_form_view` VALUES("25494", "8", "2016-02-01 00:13:29", "174.129.237.157", "6");
INSERT INTO `wp_rg_form_view` VALUES("25495", "1", "2016-02-01 01:08:17", "5.175.133.137", "4");
INSERT INTO `wp_rg_form_view` VALUES("25496", "3", "2016-02-01 01:08:17", "5.175.133.137", "89");
INSERT INTO `wp_rg_form_view` VALUES("25497", "8", "2016-02-01 01:08:17", "5.175.133.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("25498", "2", "2016-02-01 01:17:02", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25499", "3", "2016-02-01 02:32:50", "27.156.75.213", "202");
INSERT INTO `wp_rg_form_view` VALUES("25500", "8", "2016-02-01 02:32:50", "27.156.75.213", "25");
INSERT INTO `wp_rg_form_view` VALUES("25501", "2", "2016-02-01 02:52:00", "85.93.89.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("25502", "3", "2016-02-01 03:05:02", "68.180.229.161", "81");
INSERT INTO `wp_rg_form_view` VALUES("25503", "8", "2016-02-01 03:05:02", "68.180.229.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("25504", "3", "2016-02-01 04:03:11", "202.46.56.91", "159");
INSERT INTO `wp_rg_form_view` VALUES("25505", "8", "2016-02-01 04:03:11", "202.46.56.91", "21");
INSERT INTO `wp_rg_form_view` VALUES("25506", "1", "2016-02-01 04:04:33", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("25507", "3", "2016-02-01 05:03:59", "202.46.48.94", "232");
INSERT INTO `wp_rg_form_view` VALUES("25508", "8", "2016-02-01 05:03:59", "202.46.48.94", "30");
INSERT INTO `wp_rg_form_view` VALUES("25509", "3", "2016-02-01 06:00:04", "202.46.54.30", "345");
INSERT INTO `wp_rg_form_view` VALUES("25510", "8", "2016-02-01 06:00:04", "202.46.54.30", "46");
INSERT INTO `wp_rg_form_view` VALUES("25511", "2", "2016-02-01 06:11:12", "146.185.234.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("25512", "3", "2016-02-01 07:00:51", "202.46.49.131", "179");
INSERT INTO `wp_rg_form_view` VALUES("25513", "8", "2016-02-01 07:00:51", "202.46.49.131", "25");
INSERT INTO `wp_rg_form_view` VALUES("25514", "1", "2016-02-01 07:12:44", "89.157.43.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("25515", "3", "2016-02-01 08:01:40", "94.23.45.37", "171");
INSERT INTO `wp_rg_form_view` VALUES("25516", "8", "2016-02-01 08:01:40", "94.23.45.37", "20");
INSERT INTO `wp_rg_form_view` VALUES("25517", "3", "2016-02-01 09:01:39", "5.9.145.132", "111");
INSERT INTO `wp_rg_form_view` VALUES("25518", "3", "2016-02-01 09:01:39", "144.76.155.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("25519", "8", "2016-02-01 09:01:40", "5.9.145.132", "14");
INSERT INTO `wp_rg_form_view` VALUES("25520", "8", "2016-02-01 09:01:40", "144.76.155.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("25521", "3", "2016-02-01 10:05:38", "46.118.116.135", "99");
INSERT INTO `wp_rg_form_view` VALUES("25522", "8", "2016-02-01 10:05:39", "46.118.116.135", "12");
INSERT INTO `wp_rg_form_view` VALUES("25523", "9", "2016-02-01 10:36:12", "94.23.45.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("25524", "3", "2016-02-01 11:06:20", "46.118.158.147", "92");
INSERT INTO `wp_rg_form_view` VALUES("25525", "8", "2016-02-01 11:06:20", "46.118.158.147", "11");
INSERT INTO `wp_rg_form_view` VALUES("25526", "3", "2016-02-01 12:02:36", "202.46.56.62", "140");
INSERT INTO `wp_rg_form_view` VALUES("25527", "8", "2016-02-01 12:02:36", "202.46.56.62", "19");
INSERT INTO `wp_rg_form_view` VALUES("25528", "3", "2016-02-01 13:02:48", "202.46.56.15", "124");
INSERT INTO `wp_rg_form_view` VALUES("25529", "8", "2016-02-01 13:02:49", "202.46.56.15", "17");
INSERT INTO `wp_rg_form_view` VALUES("25530", "3", "2016-02-01 14:01:25", "202.46.56.188", "99");
INSERT INTO `wp_rg_form_view` VALUES("25531", "8", "2016-02-01 14:01:25", "202.46.56.188", "14");
INSERT INTO `wp_rg_form_view` VALUES("25532", "3", "2016-02-01 15:01:28", "202.46.53.111", "185");
INSERT INTO `wp_rg_form_view` VALUES("25533", "8", "2016-02-01 15:01:28", "202.46.53.111", "25");
INSERT INTO `wp_rg_form_view` VALUES("25534", "3", "2016-02-01 16:04:35", "202.46.54.97", "156");
INSERT INTO `wp_rg_form_view` VALUES("25535", "8", "2016-02-01 16:04:36", "202.46.54.97", "19");
INSERT INTO `wp_rg_form_view` VALUES("25536", "9", "2016-02-01 16:54:04", "24.68.41.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("25537", "3", "2016-02-01 17:02:58", "46.118.116.135", "24");
INSERT INTO `wp_rg_form_view` VALUES("25538", "8", "2016-02-01 17:02:58", "46.118.116.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("25539", "3", "2016-02-01 18:08:07", "70.66.85.63", "42");
INSERT INTO `wp_rg_form_view` VALUES("25540", "8", "2016-02-01 18:08:08", "70.66.85.63", "5");
INSERT INTO `wp_rg_form_view` VALUES("25541", "3", "2016-02-01 19:13:55", "46.118.158.147", "304");
INSERT INTO `wp_rg_form_view` VALUES("25542", "3", "2016-02-01 19:13:55", "46.118.158.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("25543", "3", "2016-02-01 19:13:55", "46.118.158.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("25544", "8", "2016-02-01 19:13:55", "46.118.158.147", "36");
INSERT INTO `wp_rg_form_view` VALUES("25545", "8", "2016-02-01 19:13:55", "46.118.158.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("25546", "1", "2016-02-01 19:14:30", "104.233.120.38", "6");
INSERT INTO `wp_rg_form_view` VALUES("25547", "3", "2016-02-01 20:06:33", "66.249.74.102", "850");
INSERT INTO `wp_rg_form_view` VALUES("25548", "8", "2016-02-01 20:06:33", "66.249.74.102", "107");
INSERT INTO `wp_rg_form_view` VALUES("25549", "2", "2016-02-01 20:15:49", "54.202.77.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("25550", "3", "2016-02-01 21:03:22", "24.108.134.205", "56");
INSERT INTO `wp_rg_form_view` VALUES("25551", "8", "2016-02-01 21:03:22", "24.108.134.205", "7");
INSERT INTO `wp_rg_form_view` VALUES("25552", "3", "2016-02-01 22:13:07", "24.108.134.205", "34");
INSERT INTO `wp_rg_form_view` VALUES("25553", "8", "2016-02-01 22:13:07", "24.108.134.205", "4");
INSERT INTO `wp_rg_form_view` VALUES("25554", "3", "2016-02-02 00:55:49", "184.66.252.178", "33");
INSERT INTO `wp_rg_form_view` VALUES("25555", "8", "2016-02-02 00:55:50", "184.66.252.178", "4");
INSERT INTO `wp_rg_form_view` VALUES("25556", "3", "2016-02-02 02:10:53", "96.54.214.83", "16");
INSERT INTO `wp_rg_form_view` VALUES("25557", "8", "2016-02-02 02:10:53", "96.54.214.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("25558", "1", "2016-02-02 02:52:38", "107.172.24.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("25559", "3", "2016-02-02 03:25:37", "66.249.74.102", "24");
INSERT INTO `wp_rg_form_view` VALUES("25560", "8", "2016-02-02 03:25:37", "66.249.74.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("25561", "3", "2016-02-02 04:24:22", "68.180.229.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("25562", "8", "2016-02-02 04:24:22", "68.180.229.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("25563", "2", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25564", "3", "2016-02-02 06:24:21", "45.55.238.190", "192");
INSERT INTO `wp_rg_form_view` VALUES("25565", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25566", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25567", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25568", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25569", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25570", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25571", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25572", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25573", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25574", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25575", "3", "2016-02-02 06:24:21", "45.55.238.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("25576", "8", "2016-02-02 06:24:21", "45.55.238.190", "26");
INSERT INTO `wp_rg_form_view` VALUES("25577", "3", "2016-02-02 07:20:52", "66.249.74.104", "40");
INSERT INTO `wp_rg_form_view` VALUES("25578", "8", "2016-02-02 07:20:54", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("25579", "3", "2016-02-02 08:05:26", "154.20.196.21", "89");
INSERT INTO `wp_rg_form_view` VALUES("25580", "8", "2016-02-02 08:05:26", "154.20.196.21", "11");
INSERT INTO `wp_rg_form_view` VALUES("25581", "3", "2016-02-02 09:01:26", "66.249.74.104", "147");
INSERT INTO `wp_rg_form_view` VALUES("25582", "8", "2016-02-02 09:01:26", "66.249.74.104", "21");
INSERT INTO `wp_rg_form_view` VALUES("25583", "3", "2016-02-02 10:01:46", "51.255.65.18", "142");
INSERT INTO `wp_rg_form_view` VALUES("25584", "8", "2016-02-02 10:01:46", "51.255.65.18", "19");
INSERT INTO `wp_rg_form_view` VALUES("25585", "3", "2016-02-02 11:05:36", "202.46.48.198", "187");
INSERT INTO `wp_rg_form_view` VALUES("25586", "8", "2016-02-02 11:05:36", "202.46.48.198", "24");
INSERT INTO `wp_rg_form_view` VALUES("25587", "1", "2016-02-02 11:27:44", "5.175.201.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("25588", "3", "2016-02-02 12:00:19", "66.249.74.104", "195");
INSERT INTO `wp_rg_form_view` VALUES("25589", "8", "2016-02-02 12:00:19", "66.249.74.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("25590", "3", "2016-02-02 13:01:54", "66.249.74.106", "204");
INSERT INTO `wp_rg_form_view` VALUES("25591", "8", "2016-02-02 13:01:54", "66.249.74.106", "27");
INSERT INTO `wp_rg_form_view` VALUES("25592", "3", "2016-02-02 14:00:31", "202.46.52.169", "140");
INSERT INTO `wp_rg_form_view` VALUES("25593", "8", "2016-02-02 14:00:31", "202.46.52.169", "19");
INSERT INTO `wp_rg_form_view` VALUES("25594", "3", "2016-02-02 15:02:35", "202.46.53.121", "161");
INSERT INTO `wp_rg_form_view` VALUES("25595", "8", "2016-02-02 15:02:35", "202.46.53.121", "24");
INSERT INTO `wp_rg_form_view` VALUES("25596", "3", "2016-02-02 16:04:40", "202.46.53.148", "133");
INSERT INTO `wp_rg_form_view` VALUES("25597", "8", "2016-02-02 16:04:40", "202.46.53.148", "19");
INSERT INTO `wp_rg_form_view` VALUES("25598", "3", "2016-02-02 17:01:05", "202.46.51.87", "166");
INSERT INTO `wp_rg_form_view` VALUES("25599", "8", "2016-02-02 17:01:05", "202.46.51.87", "22");
INSERT INTO `wp_rg_form_view` VALUES("25600", "3", "2016-02-02 18:01:52", "51.255.65.28", "226");
INSERT INTO `wp_rg_form_view` VALUES("25601", "8", "2016-02-02 18:01:52", "51.255.65.28", "33");
INSERT INTO `wp_rg_form_view` VALUES("25602", "3", "2016-02-02 19:05:13", "202.46.53.202", "259");
INSERT INTO `wp_rg_form_view` VALUES("25603", "8", "2016-02-02 19:05:13", "202.46.53.202", "35");
INSERT INTO `wp_rg_form_view` VALUES("25604", "1", "2016-02-02 19:32:29", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("25605", "3", "2016-02-02 20:07:18", "202.46.52.79", "298");
INSERT INTO `wp_rg_form_view` VALUES("25606", "8", "2016-02-02 20:07:18", "202.46.52.79", "39");
INSERT INTO `wp_rg_form_view` VALUES("25607", "1", "2016-02-02 20:16:35", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25608", "9", "2016-02-02 20:28:18", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25609", "3", "2016-02-02 21:03:43", "202.46.55.81", "339");
INSERT INTO `wp_rg_form_view` VALUES("25610", "8", "2016-02-02 21:03:43", "202.46.55.81", "45");
INSERT INTO `wp_rg_form_view` VALUES("25611", "9", "2016-02-02 21:36:07", "191.232.136.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("25612", "3", "2016-02-02 22:00:16", "202.46.54.168", "268");
INSERT INTO `wp_rg_form_view` VALUES("25613", "8", "2016-02-02 22:00:16", "202.46.54.168", "32");
INSERT INTO `wp_rg_form_view` VALUES("25614", "3", "2016-02-02 23:02:12", "202.46.48.16", "202");
INSERT INTO `wp_rg_form_view` VALUES("25615", "8", "2016-02-02 23:02:12", "202.46.48.16", "28");
INSERT INTO `wp_rg_form_view` VALUES("25616", "3", "2016-02-03 00:04:16", "202.46.52.163", "446");
INSERT INTO `wp_rg_form_view` VALUES("25617", "8", "2016-02-03 00:04:16", "202.46.52.163", "57");
INSERT INTO `wp_rg_form_view` VALUES("25618", "8", "2016-02-03 01:00:42", "202.46.56.39", "26");
INSERT INTO `wp_rg_form_view` VALUES("25619", "3", "2016-02-03 01:00:42", "202.46.56.39", "195");
INSERT INTO `wp_rg_form_view` VALUES("25620", "3", "2016-02-03 02:02:46", "202.46.50.184", "145");
INSERT INTO `wp_rg_form_view` VALUES("25621", "8", "2016-02-03 02:02:46", "202.46.50.184", "21");
INSERT INTO `wp_rg_form_view` VALUES("25622", "3", "2016-02-03 03:01:36", "46.118.116.135", "230");
INSERT INTO `wp_rg_form_view` VALUES("25623", "8", "2016-02-03 03:01:36", "46.118.116.135", "30");
INSERT INTO `wp_rg_form_view` VALUES("25624", "1", "2016-02-03 03:02:39", "96.44.172.66", "5");
INSERT INTO `wp_rg_form_view` VALUES("25625", "3", "2016-02-03 04:01:15", "202.46.55.172", "328");
INSERT INTO `wp_rg_form_view` VALUES("25626", "8", "2016-02-03 04:01:15", "202.46.55.172", "43");
INSERT INTO `wp_rg_form_view` VALUES("25627", "2", "2016-02-03 04:05:37", "146.185.234.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("25628", "3", "2016-02-03 05:04:20", "202.46.48.190", "61");
INSERT INTO `wp_rg_form_view` VALUES("25629", "8", "2016-02-03 05:04:20", "202.46.48.190", "10");
INSERT INTO `wp_rg_form_view` VALUES("25630", "3", "2016-02-03 06:00:36", "66.249.74.104", "106");
INSERT INTO `wp_rg_form_view` VALUES("25631", "8", "2016-02-03 06:00:36", "66.249.74.104", "13");
INSERT INTO `wp_rg_form_view` VALUES("25632", "3", "2016-02-03 07:02:21", "202.46.52.75", "136");
INSERT INTO `wp_rg_form_view` VALUES("25633", "8", "2016-02-03 07:02:21", "202.46.52.75", "17");
INSERT INTO `wp_rg_form_view` VALUES("25634", "3", "2016-02-03 08:01:15", "202.46.49.72", "65");
INSERT INTO `wp_rg_form_view` VALUES("25635", "8", "2016-02-03 08:01:16", "202.46.49.72", "10");
INSERT INTO `wp_rg_form_view` VALUES("25636", "3", "2016-02-03 09:00:13", "202.46.54.167", "115");
INSERT INTO `wp_rg_form_view` VALUES("25637", "8", "2016-02-03 09:00:13", "202.46.54.167", "14");
INSERT INTO `wp_rg_form_view` VALUES("25638", "3", "2016-02-03 10:10:59", "202.46.53.59", "63");
INSERT INTO `wp_rg_form_view` VALUES("25639", "8", "2016-02-03 10:10:59", "202.46.53.59", "9");
INSERT INTO `wp_rg_form_view` VALUES("25640", "3", "2016-02-03 11:09:57", "202.46.56.188", "93");
INSERT INTO `wp_rg_form_view` VALUES("25641", "8", "2016-02-03 11:09:57", "202.46.56.188", "12");
INSERT INTO `wp_rg_form_view` VALUES("25642", "3", "2016-02-03 12:08:56", "202.46.58.56", "97");
INSERT INTO `wp_rg_form_view` VALUES("25643", "8", "2016-02-03 12:08:56", "202.46.58.56", "12");
INSERT INTO `wp_rg_form_view` VALUES("25644", "9", "2016-02-03 12:29:31", "104.144.137.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("25645", "3", "2016-02-03 13:02:34", "66.249.74.102", "100");
INSERT INTO `wp_rg_form_view` VALUES("25646", "8", "2016-02-03 13:02:34", "66.249.74.102", "13");
INSERT INTO `wp_rg_form_view` VALUES("25647", "3", "2016-02-03 14:06:51", "202.46.54.12", "61");
INSERT INTO `wp_rg_form_view` VALUES("25648", "8", "2016-02-03 14:06:51", "202.46.54.12", "9");
INSERT INTO `wp_rg_form_view` VALUES("25649", "3", "2016-02-03 15:05:49", "202.46.50.186", "78");
INSERT INTO `wp_rg_form_view` VALUES("25650", "8", "2016-02-03 15:05:49", "202.46.50.186", "10");
INSERT INTO `wp_rg_form_view` VALUES("25651", "3", "2016-02-03 16:04:48", "202.46.54.181", "110");
INSERT INTO `wp_rg_form_view` VALUES("25652", "8", "2016-02-03 16:04:48", "202.46.54.181", "13");
INSERT INTO `wp_rg_form_view` VALUES("25653", "3", "2016-02-03 17:02:41", "172.218.233.192", "112");
INSERT INTO `wp_rg_form_view` VALUES("25654", "8", "2016-02-03 17:02:41", "172.218.233.192", "14");
INSERT INTO `wp_rg_form_view` VALUES("25655", "3", "2016-02-03 18:02:44", "202.46.50.125", "108");
INSERT INTO `wp_rg_form_view` VALUES("25656", "8", "2016-02-03 18:02:44", "202.46.50.125", "17");
INSERT INTO `wp_rg_form_view` VALUES("25657", "3", "2016-02-03 19:01:42", "202.46.52.169", "101");
INSERT INTO `wp_rg_form_view` VALUES("25658", "8", "2016-02-03 19:01:42", "202.46.52.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("25659", "3", "2016-02-03 20:00:42", "202.46.52.62", "126");
INSERT INTO `wp_rg_form_view` VALUES("25660", "8", "2016-02-03 20:00:43", "202.46.52.62", "15");
INSERT INTO `wp_rg_form_view` VALUES("25661", "3", "2016-02-03 21:11:25", "202.46.57.25", "59");
INSERT INTO `wp_rg_form_view` VALUES("25662", "8", "2016-02-03 21:11:25", "202.46.57.25", "9");
INSERT INTO `wp_rg_form_view` VALUES("25663", "3", "2016-02-03 22:10:24", "202.46.52.79", "91");
INSERT INTO `wp_rg_form_view` VALUES("25664", "8", "2016-02-03 22:10:24", "202.46.52.79", "12");
INSERT INTO `wp_rg_form_view` VALUES("25665", "3", "2016-02-03 23:09:22", "202.46.49.141", "93");
INSERT INTO `wp_rg_form_view` VALUES("25666", "8", "2016-02-03 23:09:22", "202.46.49.141", "11");
INSERT INTO `wp_rg_form_view` VALUES("25667", "3", "2016-02-04 00:08:19", "202.46.52.77", "68");
INSERT INTO `wp_rg_form_view` VALUES("25668", "8", "2016-02-04 00:08:19", "202.46.52.77", "8");
INSERT INTO `wp_rg_form_view` VALUES("25669", "3", "2016-02-04 01:07:17", "202.46.50.18", "62");
INSERT INTO `wp_rg_form_view` VALUES("25670", "8", "2016-02-04 01:07:17", "202.46.50.18", "8");
INSERT INTO `wp_rg_form_view` VALUES("25671", "3", "2016-02-04 02:06:15", "202.46.48.137", "175");
INSERT INTO `wp_rg_form_view` VALUES("25672", "8", "2016-02-04 02:06:15", "202.46.48.137", "23");
INSERT INTO `wp_rg_form_view` VALUES("25673", "3", "2016-02-04 03:05:13", "134.249.65.86", "142");
INSERT INTO `wp_rg_form_view` VALUES("25674", "8", "2016-02-04 03:05:13", "134.249.65.86", "20");
INSERT INTO `wp_rg_form_view` VALUES("25675", "2", "2016-02-04 03:38:38", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25676", "3", "2016-02-04 04:01:40", "184.66.240.144", "127");
INSERT INTO `wp_rg_form_view` VALUES("25677", "8", "2016-02-04 04:01:40", "184.66.240.144", "18");
INSERT INTO `wp_rg_form_view` VALUES("25678", "3", "2016-02-04 05:00:37", "68.180.229.161", "193");
INSERT INTO `wp_rg_form_view` VALUES("25679", "8", "2016-02-04 05:00:37", "68.180.229.161", "28");
INSERT INTO `wp_rg_form_view` VALUES("25680", "8", "2016-02-04 06:00:23", "157.55.39.119", "43");
INSERT INTO `wp_rg_form_view` VALUES("25681", "3", "2016-02-04 06:00:23", "157.55.39.119", "301");
INSERT INTO `wp_rg_form_view` VALUES("25682", "1", "2016-02-04 06:31:48", "107.158.40.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("25683", "8", "2016-02-04 07:04:41", "202.46.51.18", "20");
INSERT INTO `wp_rg_form_view` VALUES("25684", "3", "2016-02-04 07:04:41", "202.46.51.18", "137");
INSERT INTO `wp_rg_form_view` VALUES("25685", "3", "2016-02-04 08:05:26", "202.46.54.23", "400");
INSERT INTO `wp_rg_form_view` VALUES("25686", "8", "2016-02-04 08:05:27", "202.46.54.23", "58");
INSERT INTO `wp_rg_form_view` VALUES("25687", "1", "2016-02-04 08:33:04", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25688", "2", "2016-02-04 08:37:17", "79.22.98.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("25689", "8", "2016-02-04 09:00:42", "202.46.52.113", "18");
INSERT INTO `wp_rg_form_view` VALUES("25690", "3", "2016-02-04 09:00:42", "202.46.52.113", "121");
INSERT INTO `wp_rg_form_view` VALUES("25691", "8", "2016-02-04 10:01:26", "202.46.51.21", "26");
INSERT INTO `wp_rg_form_view` VALUES("25692", "3", "2016-02-04 10:01:26", "202.46.51.21", "179");
INSERT INTO `wp_rg_form_view` VALUES("25693", "9", "2016-02-04 10:36:20", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25694", "8", "2016-02-04 11:02:12", "202.46.52.105", "28");
INSERT INTO `wp_rg_form_view` VALUES("25695", "3", "2016-02-04 11:02:12", "202.46.52.105", "193");
INSERT INTO `wp_rg_form_view` VALUES("25696", "3", "2016-02-04 12:02:57", "202.46.57.166", "186");
INSERT INTO `wp_rg_form_view` VALUES("25697", "8", "2016-02-04 12:02:57", "202.46.57.166", "31");
INSERT INTO `wp_rg_form_view` VALUES("25698", "8", "2016-02-04 13:03:43", "202.46.50.18", "39");
INSERT INTO `wp_rg_form_view` VALUES("25699", "3", "2016-02-04 13:03:43", "202.46.50.18", "253");
INSERT INTO `wp_rg_form_view` VALUES("25700", "3", "2016-02-04 14:04:28", "202.46.52.174", "324");
INSERT INTO `wp_rg_form_view` VALUES("25701", "8", "2016-02-04 14:04:28", "202.46.52.174", "50");
INSERT INTO `wp_rg_form_view` VALUES("25702", "2", "2016-02-04 14:23:54", "157.55.39.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("25703", "8", "2016-02-04 15:05:15", "202.46.51.105", "25");
INSERT INTO `wp_rg_form_view` VALUES("25704", "3", "2016-02-04 15:05:15", "202.46.51.105", "145");
INSERT INTO `wp_rg_form_view` VALUES("25705", "3", "2016-02-04 16:00:28", "202.46.50.162", "131");
INSERT INTO `wp_rg_form_view` VALUES("25706", "8", "2016-02-04 16:00:28", "202.46.50.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("25707", "2", "2016-02-04 16:09:24", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25708", "8", "2016-02-04 17:02:41", "66.249.74.106", "38");
INSERT INTO `wp_rg_form_view` VALUES("25709", "3", "2016-02-04 17:02:41", "66.249.74.106", "255");
INSERT INTO `wp_rg_form_view` VALUES("25710", "2", "2016-02-04 17:50:41", "146.185.234.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("25711", "8", "2016-02-04 18:06:38", "77.75.77.72", "10");
INSERT INTO `wp_rg_form_view` VALUES("25712", "3", "2016-02-04 18:06:38", "77.75.77.72", "70");
INSERT INTO `wp_rg_form_view` VALUES("25713", "2", "2016-02-04 18:14:39", "157.55.39.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("25714", "8", "2016-02-04 19:01:14", "46.118.127.131", "10");
INSERT INTO `wp_rg_form_view` VALUES("25715", "3", "2016-02-04 19:01:14", "46.118.127.131", "70");
INSERT INTO `wp_rg_form_view` VALUES("25716", "8", "2016-02-04 20:03:59", "51.255.65.29", "8");
INSERT INTO `wp_rg_form_view` VALUES("25717", "3", "2016-02-04 20:03:59", "51.255.65.29", "57");
INSERT INTO `wp_rg_form_view` VALUES("25718", "8", "2016-02-04 21:02:46", "77.75.78.167", "11");
INSERT INTO `wp_rg_form_view` VALUES("25719", "3", "2016-02-04 21:02:46", "77.75.78.167", "81");
INSERT INTO `wp_rg_form_view` VALUES("25720", "8", "2016-02-04 22:05:47", "24.108.7.45", "14");
INSERT INTO `wp_rg_form_view` VALUES("25721", "3", "2016-02-04 22:05:47", "24.108.7.45", "90");
INSERT INTO `wp_rg_form_view` VALUES("25722", "1", "2016-02-04 22:07:08", "24.108.7.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("25723", "8", "2016-02-04 23:03:33", "142.104.153.47", "21");
INSERT INTO `wp_rg_form_view` VALUES("25724", "3", "2016-02-04 23:03:33", "142.104.153.47", "154");
INSERT INTO `wp_rg_form_view` VALUES("25725", "8", "2016-02-05 00:04:42", "174.127.133.75", "52");
INSERT INTO `wp_rg_form_view` VALUES("25726", "3", "2016-02-05 00:04:42", "174.127.133.75", "361");
INSERT INTO `wp_rg_form_view` VALUES("25727", "2", "2016-02-05 00:08:58", "174.127.133.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("25728", "8", "2016-02-05 02:05:10", "66.249.74.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("25729", "3", "2016-02-05 02:05:11", "66.249.74.102", "49");
INSERT INTO `wp_rg_form_view` VALUES("25730", "8", "2016-02-05 03:07:07", "66.249.74.102", "9");
INSERT INTO `wp_rg_form_view` VALUES("25731", "3", "2016-02-05 03:07:07", "66.249.74.102", "63");
INSERT INTO `wp_rg_form_view` VALUES("25732", "8", "2016-02-05 04:43:41", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("25733", "3", "2016-02-05 04:43:42", "66.249.74.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("25734", "8", "2016-02-05 06:00:18", "134.249.65.86", "5");
INSERT INTO `wp_rg_form_view` VALUES("25735", "3", "2016-02-05 06:00:18", "134.249.65.86", "36");
INSERT INTO `wp_rg_form_view` VALUES("25736", "3", "2016-02-05 07:19:41", "216.232.157.182", "47");
INSERT INTO `wp_rg_form_view` VALUES("25737", "8", "2016-02-05 07:19:42", "216.232.157.182", "6");
INSERT INTO `wp_rg_form_view` VALUES("25738", "8", "2016-02-05 09:04:13", "66.249.74.106", "17");
INSERT INTO `wp_rg_form_view` VALUES("25739", "3", "2016-02-05 09:04:13", "66.249.74.106", "119");
INSERT INTO `wp_rg_form_view` VALUES("25740", "2", "2016-02-05 09:18:48", "45.32.129.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("25741", "3", "2016-02-05 10:09:41", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("25742", "8", "2016-02-05 10:51:29", "41.71.66.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("25743", "8", "2016-02-05 11:45:18", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("25744", "3", "2016-02-05 11:45:18", "66.249.74.106", "14");
INSERT INTO `wp_rg_form_view` VALUES("25745", "8", "2016-02-05 12:22:34", "66.249.74.106", "11");
INSERT INTO `wp_rg_form_view` VALUES("25746", "3", "2016-02-05 12:22:34", "66.249.74.106", "77");
INSERT INTO `wp_rg_form_view` VALUES("25747", "1", "2016-02-05 12:28:09", "216.158.84.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("25748", "9", "2016-02-05 12:45:01", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25749", "8", "2016-02-05 13:36:10", "157.55.39.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("25750", "3", "2016-02-05 13:36:10", "157.55.39.64", "11");
INSERT INTO `wp_rg_form_view` VALUES("25751", "8", "2016-02-05 14:12:20", "68.180.229.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("25752", "3", "2016-02-05 14:12:20", "68.180.229.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("25753", "8", "2016-02-05 15:33:03", "51.255.65.66", "13");
INSERT INTO `wp_rg_form_view` VALUES("25754", "3", "2016-02-05 15:33:04", "51.255.65.66", "92");
INSERT INTO `wp_rg_form_view` VALUES("25755", "2", "2016-02-05 15:54:43", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("25756", "8", "2016-02-05 16:02:43", "46.118.116.135", "18");
INSERT INTO `wp_rg_form_view` VALUES("25757", "3", "2016-02-05 16:02:43", "46.118.116.135", "127");
INSERT INTO `wp_rg_form_view` VALUES("25758", "9", "2016-02-05 16:39:05", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25759", "8", "2016-02-05 17:04:29", "202.46.55.88", "27");
INSERT INTO `wp_rg_form_view` VALUES("25760", "3", "2016-02-05 17:04:29", "202.46.55.88", "195");
INSERT INTO `wp_rg_form_view` VALUES("25761", "2", "2016-02-05 17:26:07", "64.114.223.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("25762", "3", "2016-02-05 18:05:01", "202.46.53.16", "191");
INSERT INTO `wp_rg_form_view` VALUES("25763", "8", "2016-02-05 18:05:01", "202.46.53.16", "28");
INSERT INTO `wp_rg_form_view` VALUES("25764", "8", "2016-02-05 19:00:01", "202.46.52.43", "26");
INSERT INTO `wp_rg_form_view` VALUES("25765", "3", "2016-02-05 19:00:01", "202.46.52.43", "176");
INSERT INTO `wp_rg_form_view` VALUES("25766", "3", "2016-02-05 20:00:31", "202.46.50.162", "125");
INSERT INTO `wp_rg_form_view` VALUES("25767", "8", "2016-02-05 20:00:31", "202.46.50.162", "17");
INSERT INTO `wp_rg_form_view` VALUES("25768", "3", "2016-02-05 21:03:09", "202.46.50.79", "111");
INSERT INTO `wp_rg_form_view` VALUES("25769", "8", "2016-02-05 21:03:09", "202.46.50.79", "16");
INSERT INTO `wp_rg_form_view` VALUES("25770", "3", "2016-02-05 22:05:20", "202.46.55.171", "193");
INSERT INTO `wp_rg_form_view` VALUES("25771", "8", "2016-02-05 22:05:20", "202.46.55.171", "29");
INSERT INTO `wp_rg_form_view` VALUES("25772", "2", "2016-02-05 22:10:21", "220.181.108.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("25773", "8", "2016-02-05 23:01:25", "62.210.162.184", "21");
INSERT INTO `wp_rg_form_view` VALUES("25774", "3", "2016-02-05 23:01:25", "62.210.162.184", "132");
INSERT INTO `wp_rg_form_view` VALUES("25775", "3", "2016-02-06 00:00:51", "202.46.56.75", "221");
INSERT INTO `wp_rg_form_view` VALUES("25776", "8", "2016-02-06 00:00:51", "202.46.56.75", "32");
INSERT INTO `wp_rg_form_view` VALUES("25777", "3", "2016-02-06 01:01:33", "202.46.51.170", "200");
INSERT INTO `wp_rg_form_view` VALUES("25778", "8", "2016-02-06 01:01:34", "202.46.51.170", "30");
INSERT INTO `wp_rg_form_view` VALUES("25779", "1", "2016-02-06 01:12:38", "96.44.172.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("25780", "3", "2016-02-06 02:02:19", "202.46.52.166", "154");
INSERT INTO `wp_rg_form_view` VALUES("25781", "8", "2016-02-06 02:02:20", "202.46.52.166", "26");
INSERT INTO `wp_rg_form_view` VALUES("25782", "8", "2016-02-06 03:02:23", "202.46.55.123", "30");
INSERT INTO `wp_rg_form_view` VALUES("25783", "3", "2016-02-06 03:02:23", "202.46.55.123", "200");
INSERT INTO `wp_rg_form_view` VALUES("25784", "8", "2016-02-06 04:02:25", "202.46.58.19", "41");
INSERT INTO `wp_rg_form_view` VALUES("25785", "3", "2016-02-06 04:02:25", "202.46.58.19", "253");
INSERT INTO `wp_rg_form_view` VALUES("25786", "8", "2016-02-06 05:01:08", "96.50.51.189", "28");
INSERT INTO `wp_rg_form_view` VALUES("25787", "3", "2016-02-06 05:01:08", "96.50.51.189", "182");
INSERT INTO `wp_rg_form_view` VALUES("25788", "1", "2016-02-06 05:46:53", "107.152.183.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("25789", "3", "2016-02-06 06:00:51", "202.46.56.66", "114");
INSERT INTO `wp_rg_form_view` VALUES("25790", "8", "2016-02-06 06:00:52", "202.46.56.66", "16");
INSERT INTO `wp_rg_form_view` VALUES("25791", "8", "2016-02-06 07:03:55", "202.46.57.27", "28");
INSERT INTO `wp_rg_form_view` VALUES("25792", "3", "2016-02-06 07:03:55", "202.46.57.27", "182");
INSERT INTO `wp_rg_form_view` VALUES("25793", "5", "2016-02-06 07:15:06", "207.46.13.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("25794", "8", "2016-02-06 08:10:23", "202.46.53.56", "19");
INSERT INTO `wp_rg_form_view` VALUES("25795", "3", "2016-02-06 08:10:23", "202.46.53.56", "128");
INSERT INTO `wp_rg_form_view` VALUES("25796", "8", "2016-02-06 09:01:09", "202.46.52.164", "23");
INSERT INTO `wp_rg_form_view` VALUES("25797", "3", "2016-02-06 09:01:09", "202.46.52.164", "144");
INSERT INTO `wp_rg_form_view` VALUES("25798", "1", "2016-02-06 09:40:46", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25799", "8", "2016-02-06 10:00:39", "202.46.49.108", "53");
INSERT INTO `wp_rg_form_view` VALUES("25800", "3", "2016-02-06 10:00:39", "202.46.49.108", "339");
INSERT INTO `wp_rg_form_view` VALUES("25801", "2", "2016-02-06 10:04:04", "146.185.234.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("25802", "3", "2016-02-06 11:00:41", "202.46.48.99", "108");
INSERT INTO `wp_rg_form_view` VALUES("25803", "8", "2016-02-06 11:00:41", "202.46.48.99", "17");
INSERT INTO `wp_rg_form_view` VALUES("25804", "8", "2016-02-06 12:16:45", "202.46.58.113", "11");
INSERT INTO `wp_rg_form_view` VALUES("25805", "3", "2016-02-06 12:16:45", "202.46.58.113", "70");
INSERT INTO `wp_rg_form_view` VALUES("25806", "8", "2016-02-06 13:00:05", "46.118.116.135", "25");
INSERT INTO `wp_rg_form_view` VALUES("25807", "3", "2016-02-06 13:00:05", "46.118.116.135", "173");
INSERT INTO `wp_rg_form_view` VALUES("25808", "8", "2016-02-06 14:03:32", "202.46.54.167", "36");
INSERT INTO `wp_rg_form_view` VALUES("25809", "3", "2016-02-06 14:03:32", "202.46.54.167", "215");
INSERT INTO `wp_rg_form_view` VALUES("25810", "8", "2016-02-06 15:05:05", "68.180.229.161", "15");
INSERT INTO `wp_rg_form_view` VALUES("25811", "3", "2016-02-06 15:05:05", "68.180.229.161", "90");
INSERT INTO `wp_rg_form_view` VALUES("25812", "8", "2016-02-06 16:10:21", "178.137.17.196", "10");
INSERT INTO `wp_rg_form_view` VALUES("25813", "3", "2016-02-06 16:10:21", "178.137.17.196", "70");
INSERT INTO `wp_rg_form_view` VALUES("25814", "8", "2016-02-06 17:14:15", "207.216.146.113", "7");
INSERT INTO `wp_rg_form_view` VALUES("25815", "3", "2016-02-06 17:14:16", "207.216.146.113", "49");
INSERT INTO `wp_rg_form_view` VALUES("25816", "1", "2016-02-06 18:24:21", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25817", "8", "2016-02-06 18:24:22", "96.44.172.66", "4");
INSERT INTO `wp_rg_form_view` VALUES("25818", "3", "2016-02-06 18:24:22", "96.44.172.66", "28");
INSERT INTO `wp_rg_form_view` VALUES("25819", "8", "2016-02-06 19:12:49", "66.249.74.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("25820", "3", "2016-02-06 19:12:49", "66.249.74.104", "63");
INSERT INTO `wp_rg_form_view` VALUES("25821", "7", "2016-02-06 19:31:42", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25822", "8", "2016-02-06 20:25:01", "24.68.41.135", "7");
INSERT INTO `wp_rg_form_view` VALUES("25823", "3", "2016-02-06 20:25:01", "24.68.41.135", "50");
INSERT INTO `wp_rg_form_view` VALUES("25824", "8", "2016-02-06 21:19:54", "51.255.65.92", "5");
INSERT INTO `wp_rg_form_view` VALUES("25825", "3", "2016-02-06 21:19:54", "51.255.65.92", "36");
INSERT INTO `wp_rg_form_view` VALUES("25826", "1", "2016-02-06 21:33:40", "23.232.145.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("25827", "8", "2016-02-06 22:06:07", "66.249.74.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("25828", "3", "2016-02-06 22:06:07", "66.249.74.106", "18");
INSERT INTO `wp_rg_form_view` VALUES("25829", "3", "2016-02-06 23:04:05", "207.46.13.56", "170");
INSERT INTO `wp_rg_form_view` VALUES("25830", "8", "2016-02-06 23:04:06", "207.46.13.56", "24");
INSERT INTO `wp_rg_form_view` VALUES("25831", "2", "2016-02-06 23:32:15", "89.42.237.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("25832", "3", "2016-02-07 01:25:49", "66.249.74.104", "21");
INSERT INTO `wp_rg_form_view` VALUES("25833", "3", "2016-02-07 02:09:28", "46.118.116.135", "41");
INSERT INTO `wp_rg_form_view` VALUES("25834", "3", "2016-02-07 03:06:28", "89.42.237.100", "150");
INSERT INTO `wp_rg_form_view` VALUES("25835", "1", "2016-02-07 03:59:21", "58.16.186.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("25836", "3", "2016-02-07 04:20:06", "66.249.74.104", "22");
INSERT INTO `wp_rg_form_view` VALUES("25837", "3", "2016-02-07 05:06:03", "62.210.162.184", "101");
INSERT INTO `wp_rg_form_view` VALUES("25838", "3", "2016-02-07 06:04:41", "62.210.162.184", "35");
INSERT INTO `wp_rg_form_view` VALUES("25839", "1", "2016-02-07 07:03:49", "62.210.14.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("25840", "3", "2016-02-07 07:03:49", "62.210.14.96", "57");
INSERT INTO `wp_rg_form_view` VALUES("25841", "3", "2016-02-07 08:36:31", "66.249.74.104", "49");
INSERT INTO `wp_rg_form_view` VALUES("25842", "3", "2016-02-07 09:45:26", "178.137.17.196", "19");
INSERT INTO `wp_rg_form_view` VALUES("25843", "3", "2016-02-07 09:45:26", "178.137.17.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("25844", "3", "2016-02-07 09:45:26", "178.137.17.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("25845", "1", "2016-02-07 10:00:05", "23.232.130.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("25846", "3", "2016-02-07 10:00:05", "23.232.130.57", "29");
INSERT INTO `wp_rg_form_view` VALUES("25847", "3", "2016-02-07 11:16:26", "134.249.65.86", "33");
INSERT INTO `wp_rg_form_view` VALUES("25848", "3", "2016-02-07 11:16:26", "134.249.65.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("25849", "3", "2016-02-07 11:16:26", "134.249.65.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("25850", "3", "2016-02-07 12:05:09", "178.137.93.235", "21");
INSERT INTO `wp_rg_form_view` VALUES("25851", "3", "2016-02-07 13:07:41", "178.137.93.235", "35");
INSERT INTO `wp_rg_form_view` VALUES("25852", "3", "2016-02-07 14:07:37", "68.180.229.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("25853", "1", "2016-02-07 15:17:18", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25854", "3", "2016-02-07 15:17:19", "96.44.172.66", "21");
INSERT INTO `wp_rg_form_view` VALUES("25855", "3", "2016-02-07 16:18:16", "202.46.56.137", "82");
INSERT INTO `wp_rg_form_view` VALUES("25856", "3", "2016-02-07 17:03:25", "202.46.51.38", "116");
INSERT INTO `wp_rg_form_view` VALUES("25857", "8", "2016-02-07 17:03:25", "202.46.51.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("25858", "3", "2016-02-07 18:02:33", "202.46.54.163", "173");
INSERT INTO `wp_rg_form_view` VALUES("25859", "3", "2016-02-07 19:04:37", "202.46.56.189", "127");
INSERT INTO `wp_rg_form_view` VALUES("25860", "8", "2016-02-07 19:27:11", "202.46.54.186", "2");
INSERT INTO `wp_rg_form_view` VALUES("25861", "9", "2016-02-07 19:32:20", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("25862", "3", "2016-02-07 20:01:04", "202.46.53.192", "116");
INSERT INTO `wp_rg_form_view` VALUES("25863", "8", "2016-02-07 20:40:33", "202.46.49.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("25864", "3", "2016-02-07 21:07:02", "202.46.52.169", "268");
INSERT INTO `wp_rg_form_view` VALUES("25865", "8", "2016-02-07 21:45:15", "202.46.53.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("25866", "1", "2016-02-07 21:46:04", "136.243.17.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25867", "8", "2016-02-07 22:05:36", "51.255.65.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("25868", "3", "2016-02-07 22:05:36", "51.255.65.63", "79");
INSERT INTO `wp_rg_form_view` VALUES("25869", "3", "2016-02-07 23:01:41", "202.46.48.26", "204");
INSERT INTO `wp_rg_form_view` VALUES("25870", "2", "2016-02-07 23:49:24", "45.32.130.87", "2");
INSERT INTO `wp_rg_form_view` VALUES("25871", "3", "2016-02-08 00:06:22", "51.255.65.63", "128");
INSERT INTO `wp_rg_form_view` VALUES("25872", "3", "2016-02-08 01:05:55", "202.46.56.188", "66");
INSERT INTO `wp_rg_form_view` VALUES("25873", "8", "2016-02-08 01:34:35", "202.46.57.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("25874", "3", "2016-02-08 02:03:15", "202.46.57.124", "136");
INSERT INTO `wp_rg_form_view` VALUES("25875", "8", "2016-02-08 02:03:15", "202.46.57.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("25876", "3", "2016-02-08 03:00:35", "202.46.58.191", "126");
INSERT INTO `wp_rg_form_view` VALUES("25877", "8", "2016-02-08 03:48:21", "202.46.52.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("25878", "3", "2016-02-08 04:07:28", "202.46.56.64", "167");
INSERT INTO `wp_rg_form_view` VALUES("25879", "3", "2016-02-08 05:04:49", "202.46.57.186", "77");
INSERT INTO `wp_rg_form_view` VALUES("25880", "3", "2016-02-08 06:02:08", "202.46.49.200", "438");
INSERT INTO `wp_rg_form_view` VALUES("25881", "2", "2016-02-08 06:49:20", "96.91.131.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("25882", "1", "2016-02-08 07:00:04", "75.157.135.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("25883", "3", "2016-02-08 07:00:04", "75.157.135.71", "78");
INSERT INTO `wp_rg_form_view` VALUES("25884", "8", "2016-02-08 07:09:02", "202.46.51.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("25885", "3", "2016-02-08 08:06:21", "202.46.52.158", "112");
INSERT INTO `wp_rg_form_view` VALUES("25886", "8", "2016-02-08 08:35:01", "202.46.56.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("25887", "3", "2016-02-08 09:03:42", "202.46.52.19", "197");
INSERT INTO `wp_rg_form_view` VALUES("25888", "8", "2016-02-08 09:22:48", "202.46.56.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("25889", "7", "2016-02-08 09:38:43", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("25890", "3", "2016-02-08 10:01:01", "202.46.48.126", "100");
INSERT INTO `wp_rg_form_view` VALUES("25891", "1", "2016-02-08 10:35:05", "45.64.213.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("25892", "8", "2016-02-08 10:58:21", "202.46.49.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("25893", "3", "2016-02-08 11:07:55", "202.46.48.89", "167");
INSERT INTO `wp_rg_form_view` VALUES("25894", "8", "2016-02-08 11:27:01", "202.46.58.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("25895", "3", "2016-02-08 12:05:14", "202.46.54.11", "152");
INSERT INTO `wp_rg_form_view` VALUES("25896", "8", "2016-02-08 12:24:21", "202.46.52.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("25897", "3", "2016-02-08 13:02:34", "202.46.54.184", "118");
INSERT INTO `wp_rg_form_view` VALUES("25898", "3", "2016-02-08 14:09:28", "202.46.58.159", "81");
INSERT INTO `wp_rg_form_view` VALUES("25899", "1", "2016-02-08 14:12:52", "104.223.72.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("25900", "8", "2016-02-08 14:57:14", "202.46.58.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("25901", "3", "2016-02-08 15:06:47", "202.46.52.61", "324");
INSERT INTO `wp_rg_form_view` VALUES("25902", "8", "2016-02-08 15:25:54", "202.46.55.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("25903", "2", "2016-02-08 15:44:25", "96.91.131.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("25904", "3", "2016-02-08 16:13:41", "202.46.50.132", "68");
INSERT INTO `wp_rg_form_view` VALUES("25905", "8", "2016-02-08 16:42:21", "202.46.55.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("25906", "3", "2016-02-08 17:01:28", "202.46.58.188", "79");
INSERT INTO `wp_rg_form_view` VALUES("25907", "8", "2016-02-08 17:20:34", "202.46.48.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("25908", "3", "2016-02-08 18:08:22", "202.46.58.193", "96");
INSERT INTO `wp_rg_form_view` VALUES("25909", "3", "2016-02-08 19:05:41", "202.46.55.90", "123");
INSERT INTO `wp_rg_form_view` VALUES("25910", "1", "2016-02-08 19:12:52", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25911", "3", "2016-02-08 20:03:02", "202.46.53.142", "79");
INSERT INTO `wp_rg_form_view` VALUES("25912", "3", "2016-02-08 21:00:21", "202.46.57.198", "200");
INSERT INTO `wp_rg_form_view` VALUES("25913", "8", "2016-02-08 21:48:08", "202.46.56.180", "3");
INSERT INTO `wp_rg_form_view` VALUES("25914", "3", "2016-02-08 22:07:14", "202.46.52.101", "117");
INSERT INTO `wp_rg_form_view` VALUES("25915", "9", "2016-02-08 22:32:43", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("25916", "3", "2016-02-08 23:04:34", "202.46.53.145", "106");
INSERT INTO `wp_rg_form_view` VALUES("25917", "8", "2016-02-08 23:04:34", "202.46.53.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("25918", "3", "2016-02-09 00:01:55", "202.46.51.138", "101");
INSERT INTO `wp_rg_form_view` VALUES("25919", "8", "2016-02-09 00:59:14", "202.46.54.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("25920", "3", "2016-02-09 01:05:03", "96.50.22.88", "98");
INSERT INTO `wp_rg_form_view` VALUES("25921", "8", "2016-02-09 01:18:21", "202.46.55.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("25922", "3", "2016-02-09 02:06:07", "202.46.56.130", "54");
INSERT INTO `wp_rg_form_view` VALUES("25923", "8", "2016-02-09 02:44:20", "202.46.50.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("25924", "3", "2016-02-09 03:03:27", "202.46.55.135", "155");
INSERT INTO `wp_rg_form_view` VALUES("25925", "3", "2016-02-09 04:00:47", "202.46.49.114", "2588");
INSERT INTO `wp_rg_form_view` VALUES("25926", "1", "2016-02-09 04:16:15", "104.131.93.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("25927", "5", "2016-02-09 04:22:55", "104.131.93.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("25928", "6", "2016-02-09 04:30:50", "104.131.93.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("25929", "8", "2016-02-09 04:39:00", "202.46.54.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("25930", "9", "2016-02-09 04:39:20", "104.131.93.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("25931", "3", "2016-02-09 05:00:00", "104.131.93.133", "1733");
INSERT INTO `wp_rg_form_view` VALUES("25932", "2", "2016-02-09 05:19:20", "104.131.93.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("25933", "8", "2016-02-09 05:32:35", "104.131.93.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("25934", "3", "2016-02-09 06:05:00", "202.46.51.178", "98");
INSERT INTO `wp_rg_form_view` VALUES("25935", "3", "2016-02-09 07:02:21", "202.46.56.195", "126");
INSERT INTO `wp_rg_form_view` VALUES("25936", "8", "2016-02-09 07:02:21", "202.46.56.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("25937", "1", "2016-02-09 07:18:55", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25938", "3", "2016-02-09 08:09:13", "202.46.49.68", "76");
INSERT INTO `wp_rg_form_view` VALUES("25939", "8", "2016-02-09 08:09:13", "202.46.49.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("25940", "3", "2016-02-09 09:06:36", "202.46.53.120", "94");
INSERT INTO `wp_rg_form_view` VALUES("25941", "3", "2016-02-09 10:03:53", "202.46.58.95", "89");
INSERT INTO `wp_rg_form_view` VALUES("25942", "8", "2016-02-09 10:38:43", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25943", "3", "2016-02-09 11:01:14", "202.46.55.19", "102");
INSERT INTO `wp_rg_form_view` VALUES("25944", "8", "2016-02-09 11:20:20", "202.46.52.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("25945", "3", "2016-02-09 12:08:06", "202.46.56.38", "705");
INSERT INTO `wp_rg_form_view` VALUES("25946", "8", "2016-02-09 12:08:06", "202.46.56.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("25947", "1", "2016-02-09 12:16:28", "213.163.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("25948", "2", "2016-02-09 12:16:52", "213.163.66.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("25949", "3", "2016-02-09 13:02:49", "46.118.116.135", "102");
INSERT INTO `wp_rg_form_view` VALUES("25950", "3", "2016-02-09 14:02:47", "202.46.53.55", "82");
INSERT INTO `wp_rg_form_view` VALUES("25951", "8", "2016-02-09 14:02:47", "202.46.53.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("25952", "3", "2016-02-09 15:00:06", "202.46.54.195", "443");
INSERT INTO `wp_rg_form_view` VALUES("25953", "2", "2016-02-09 15:28:42", "129.173.204.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("25954", "8", "2016-02-09 15:57:57", "213.163.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("25955", "9", "2016-02-09 15:57:58", "213.163.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("25956", "6", "2016-02-09 15:58:51", "213.163.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("25957", "3", "2016-02-09 16:00:08", "213.163.66.185", "361");
INSERT INTO `wp_rg_form_view` VALUES("25958", "6", "2016-02-09 16:00:26", "213.163.66.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("25959", "8", "2016-02-09 16:00:27", "213.163.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("25960", "5", "2016-02-09 16:00:34", "213.163.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("25961", "9", "2016-02-09 16:01:52", "213.163.66.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("25962", "1", "2016-02-09 16:25:23", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25963", "3", "2016-02-09 17:04:20", "202.46.49.153", "68");
INSERT INTO `wp_rg_form_view` VALUES("25964", "2", "2016-02-09 17:09:49", "46.246.44.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("25965", "8", "2016-02-09 17:52:07", "202.46.50.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("25966", "3", "2016-02-09 18:01:40", "202.46.56.90", "237");
INSERT INTO `wp_rg_form_view` VALUES("25967", "8", "2016-02-09 18:11:13", "202.46.58.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("25968", "2", "2016-02-09 18:22:02", "158.69.225.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("25969", "3", "2016-02-09 19:04:12", "213.163.66.185", "216");
INSERT INTO `wp_rg_form_view` VALUES("25970", "8", "2016-02-09 19:04:41", "213.163.66.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("25971", "9", "2016-02-09 19:05:57", "213.163.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("25972", "3", "2016-02-09 20:01:48", "68.180.229.161", "131");
INSERT INTO `wp_rg_form_view` VALUES("25973", "8", "2016-02-09 20:59:31", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("25974", "3", "2016-02-09 21:00:11", "75.157.175.3", "116");
INSERT INTO `wp_rg_form_view` VALUES("25975", "8", "2016-02-09 21:03:12", "202.46.58.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("25976", "3", "2016-02-09 22:10:11", "202.46.52.146", "56");
INSERT INTO `wp_rg_form_view` VALUES("25977", "8", "2016-02-09 22:35:25", "157.55.39.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("25978", "3", "2016-02-09 23:08:28", "157.55.39.35", "386");
INSERT INTO `wp_rg_form_view` VALUES("25979", "2", "2016-02-09 23:17:47", "64.251.182.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("25980", "3", "2016-02-10 00:15:24", "93.180.64.230", "116");
INSERT INTO `wp_rg_form_view` VALUES("25981", "3", "2016-02-10 01:02:26", "68.180.229.161", "76");
INSERT INTO `wp_rg_form_view` VALUES("25982", "8", "2016-02-10 01:31:07", "202.46.52.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("25983", "3", "2016-02-10 02:04:38", "202.46.52.160", "89");
INSERT INTO `wp_rg_form_view` VALUES("25984", "8", "2016-02-10 02:38:06", "202.46.54.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("25985", "3", "2016-02-10 03:00:35", "167.114.216.118", "98");
INSERT INTO `wp_rg_form_view` VALUES("25986", "3", "2016-02-10 04:01:08", "68.180.229.161", "86");
INSERT INTO `wp_rg_form_view` VALUES("25987", "3", "2016-02-10 05:06:56", "207.46.13.167", "109");
INSERT INTO `wp_rg_form_view` VALUES("25988", "3", "2016-02-10 06:01:25", "24.69.65.158", "74");
INSERT INTO `wp_rg_form_view` VALUES("25989", "3", "2016-02-10 07:00:59", "73.11.120.45", "58");
INSERT INTO `wp_rg_form_view` VALUES("25990", "3", "2016-02-10 08:12:59", "202.46.54.30", "83");
INSERT INTO `wp_rg_form_view` VALUES("25991", "1", "2016-02-10 09:12:27", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("25992", "3", "2016-02-10 09:12:27", "96.44.172.66", "76");
INSERT INTO `wp_rg_form_view` VALUES("25993", "3", "2016-02-10 10:01:02", "157.55.39.35", "47");
INSERT INTO `wp_rg_form_view` VALUES("25994", "8", "2016-02-10 10:26:56", "202.46.51.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("25995", "3", "2016-02-10 11:00:25", "202.46.58.99", "132");
INSERT INTO `wp_rg_form_view` VALUES("25996", "8", "2016-02-10 11:00:25", "202.46.58.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("25997", "3", "2016-02-10 12:05:24", "68.180.229.161", "65");
INSERT INTO `wp_rg_form_view` VALUES("25998", "8", "2016-02-10 12:40:54", "202.46.49.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("25999", "3", "2016-02-10 13:01:36", "157.55.39.35", "185");
INSERT INTO `wp_rg_form_view` VALUES("26000", "3", "2016-02-10 14:17:28", "207.46.13.178", "111");
INSERT INTO `wp_rg_form_view` VALUES("26001", "1", "2016-02-10 14:28:48", "192.99.166.236", "4");
INSERT INTO `wp_rg_form_view` VALUES("26002", "3", "2016-02-10 15:02:18", "68.180.229.161", "73");
INSERT INTO `wp_rg_form_view` VALUES("26003", "3", "2016-02-10 16:00:31", "85.25.201.224", "91");
INSERT INTO `wp_rg_form_view` VALUES("26004", "1", "2016-02-10 16:44:51", "107.172.235.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("26005", "3", "2016-02-10 17:08:49", "202.46.58.138", "149");
INSERT INTO `wp_rg_form_view` VALUES("26006", "8", "2016-02-10 17:42:18", "202.46.58.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("26007", "3", "2016-02-10 18:15:46", "202.46.50.120", "28");
INSERT INTO `wp_rg_form_view` VALUES("26008", "3", "2016-02-10 19:07:27", "157.55.39.35", "136");
INSERT INTO `wp_rg_form_view` VALUES("26009", "1", "2016-02-10 20:04:12", "179.61.252.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("26010", "3", "2016-02-10 20:04:12", "179.61.252.196", "122");
INSERT INTO `wp_rg_form_view` VALUES("26011", "8", "2016-02-10 20:29:43", "202.46.54.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("26012", "3", "2016-02-10 21:03:13", "202.46.58.118", "91");
INSERT INTO `wp_rg_form_view` VALUES("26013", "1", "2016-02-10 21:04:21", "192.210.176.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("26014", "3", "2016-02-10 22:10:12", "202.46.52.79", "207");
INSERT INTO `wp_rg_form_view` VALUES("26015", "2", "2016-02-10 22:27:14", "192.210.200.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("26016", "8", "2016-02-10 22:52:28", "93.180.64.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("26017", "1", "2016-02-10 23:02:36", "173.242.113.137", "4");
INSERT INTO `wp_rg_form_view` VALUES("26018", "3", "2016-02-10 23:02:36", "173.242.113.137", "145");
INSERT INTO `wp_rg_form_view` VALUES("26019", "3", "2016-02-11 00:24:09", "202.46.54.135", "39");
INSERT INTO `wp_rg_form_view` VALUES("26020", "1", "2016-02-11 00:54:25", "173.242.113.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("26021", "8", "2016-02-11 00:57:38", "202.46.53.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("26022", "8", "2016-02-11 01:04:29", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("26023", "3", "2016-02-11 01:04:29", "157.55.39.121", "112");
INSERT INTO `wp_rg_form_view` VALUES("26024", "3", "2016-02-11 02:04:36", "202.46.53.117", "106");
INSERT INTO `wp_rg_form_view` VALUES("26025", "1", "2016-02-11 02:39:36", "173.242.113.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("26026", "3", "2016-02-11 03:02:28", "96.50.108.178", "209");
INSERT INTO `wp_rg_form_view` VALUES("26027", "2", "2016-02-11 03:22:02", "69.58.178.58", "3");
INSERT INTO `wp_rg_form_view` VALUES("26028", "3", "2016-02-11 04:18:34", "202.46.56.14", "88");
INSERT INTO `wp_rg_form_view` VALUES("26029", "3", "2016-02-11 05:02:08", "68.180.229.161", "53");
INSERT INTO `wp_rg_form_view` VALUES("26030", "1", "2016-02-11 05:58:48", "198.23.188.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("26031", "3", "2016-02-11 06:07:21", "62.210.162.184", "83");
INSERT INTO `wp_rg_form_view` VALUES("26032", "2", "2016-02-11 07:14:36", "198.23.188.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("26033", "3", "2016-02-11 07:14:38", "198.23.188.204", "36");
INSERT INTO `wp_rg_form_view` VALUES("26034", "3", "2016-02-11 08:02:08", "66.249.74.106", "60");
INSERT INTO `wp_rg_form_view` VALUES("26035", "3", "2016-02-11 09:29:08", "62.210.162.184", "132");
INSERT INTO `wp_rg_form_view` VALUES("26036", "3", "2016-02-11 10:09:15", "66.249.74.104", "30");
INSERT INTO `wp_rg_form_view` VALUES("26037", "3", "2016-02-11 11:05:55", "178.73.218.37", "61");
INSERT INTO `wp_rg_form_view` VALUES("26038", "3", "2016-02-11 12:00:17", "157.55.39.35", "26");
INSERT INTO `wp_rg_form_view` VALUES("26039", "3", "2016-02-11 13:01:58", "52.36.34.170", "234");
INSERT INTO `wp_rg_form_view` VALUES("26040", "8", "2016-02-11 13:20:00", "40.77.167.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("26041", "5", "2016-02-11 13:20:12", "40.77.167.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("26042", "9", "2016-02-11 13:20:23", "157.55.39.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("26043", "3", "2016-02-11 14:02:28", "178.73.218.37", "109");
INSERT INTO `wp_rg_form_view` VALUES("26044", "2", "2016-02-11 14:44:02", "185.107.26.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("26045", "7", "2016-02-11 14:58:24", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26046", "3", "2016-02-11 15:07:46", "51.255.65.40", "56");
INSERT INTO `wp_rg_form_view` VALUES("26047", "9", "2016-02-11 15:58:34", "76.70.18.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("26048", "8", "2016-02-11 15:58:34", "76.70.18.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("26049", "2", "2016-02-11 16:10:50", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26050", "3", "2016-02-11 16:10:50", "68.180.229.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("26051", "3", "2016-02-11 17:05:27", "93.180.64.230", "90");
INSERT INTO `wp_rg_form_view` VALUES("26052", "3", "2016-02-11 18:14:29", "66.249.74.104", "88");
INSERT INTO `wp_rg_form_view` VALUES("26053", "8", "2016-02-11 18:49:16", "202.46.57.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26054", "3", "2016-02-11 19:16:31", "157.55.39.35", "186");
INSERT INTO `wp_rg_form_view` VALUES("26055", "5", "2016-02-11 20:24:08", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26056", "3", "2016-02-11 20:24:08", "68.180.229.161", "179");
INSERT INTO `wp_rg_form_view` VALUES("26057", "3", "2016-02-11 21:06:14", "23.31.24.253", "352");
INSERT INTO `wp_rg_form_view` VALUES("26058", "2", "2016-02-11 21:07:28", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("26059", "3", "2016-02-11 22:03:31", "178.137.93.235", "122");
INSERT INTO `wp_rg_form_view` VALUES("26060", "3", "2016-02-11 23:23:32", "62.210.162.184", "124");
INSERT INTO `wp_rg_form_view` VALUES("26061", "2", "2016-02-11 23:58:46", "188.166.10.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("26062", "3", "2016-02-12 00:04:55", "188.166.10.164", "97");
INSERT INTO `wp_rg_form_view` VALUES("26063", "3", "2016-02-12 01:20:32", "207.46.13.101", "31");
INSERT INTO `wp_rg_form_view` VALUES("26064", "3", "2016-02-12 02:18:52", "209.52.88.239", "243");
INSERT INTO `wp_rg_form_view` VALUES("26065", "3", "2016-02-12 03:44:42", "66.249.74.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("26066", "3", "2016-02-12 04:15:05", "66.249.74.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("26067", "3", "2016-02-12 05:14:59", "202.46.58.126", "52");
INSERT INTO `wp_rg_form_view` VALUES("26068", "3", "2016-02-12 06:05:01", "68.180.229.161", "284");
INSERT INTO `wp_rg_form_view` VALUES("26069", "2", "2016-02-12 06:30:01", "31.220.30.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("26070", "1", "2016-02-12 06:33:12", "155.94.176.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("26071", "3", "2016-02-12 07:32:17", "64.233.172.176", "41");
INSERT INTO `wp_rg_form_view` VALUES("26072", "3", "2016-02-12 08:04:52", "31.28.194.171", "73");
INSERT INTO `wp_rg_form_view` VALUES("26073", "2", "2016-02-12 08:19:48", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26074", "9", "2016-02-12 08:22:58", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26075", "1", "2016-02-12 08:57:52", "104.144.250.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("26076", "3", "2016-02-12 09:18:48", "46.118.114.111", "100");
INSERT INTO `wp_rg_form_view` VALUES("26077", "2", "2016-02-12 10:06:09", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26078", "3", "2016-02-12 10:06:09", "62.210.162.184", "149");
INSERT INTO `wp_rg_form_view` VALUES("26079", "3", "2016-02-12 11:06:56", "66.249.74.106", "83");
INSERT INTO `wp_rg_form_view` VALUES("26080", "8", "2016-02-12 11:20:40", "202.46.51.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("26081", "2", "2016-02-12 11:50:04", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26082", "3", "2016-02-12 12:23:49", "62.210.162.184", "42");
INSERT INTO `wp_rg_form_view` VALUES("26083", "3", "2016-02-12 13:51:15", "207.46.13.29", "10");
INSERT INTO `wp_rg_form_view` VALUES("26084", "3", "2016-02-12 14:07:18", "62.210.162.184", "11");
INSERT INTO `wp_rg_form_view` VALUES("26085", "1", "2016-02-12 15:40:22", "195.154.58.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("26086", "3", "2016-02-12 15:40:22", "195.154.58.134", "92");
INSERT INTO `wp_rg_form_view` VALUES("26087", "3", "2016-02-12 16:00:40", "24.69.85.51", "239");
INSERT INTO `wp_rg_form_view` VALUES("26088", "1", "2016-02-12 16:39:26", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26089", "3", "2016-02-12 17:33:30", "207.46.13.29", "91");
INSERT INTO `wp_rg_form_view` VALUES("26090", "3", "2016-02-12 18:16:45", "68.180.229.161", "31");
INSERT INTO `wp_rg_form_view` VALUES("26091", "3", "2016-02-12 19:00:29", "23.236.210.98", "138");
INSERT INTO `wp_rg_form_view` VALUES("26092", "3", "2016-02-12 20:15:37", "62.210.162.184", "396");
INSERT INTO `wp_rg_form_view` VALUES("26093", "8", "2016-02-12 20:32:37", "202.46.53.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("26094", "2", "2016-02-12 20:48:29", "68.15.6.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("26095", "3", "2016-02-12 21:01:22", "204.191.251.42", "125");
INSERT INTO `wp_rg_form_view` VALUES("26096", "3", "2016-02-12 22:24:46", "131.137.245.207", "115");
INSERT INTO `wp_rg_form_view` VALUES("26097", "3", "2016-02-12 23:02:35", "62.210.162.184", "69");
INSERT INTO `wp_rg_form_view` VALUES("26098", "3", "2016-02-13 00:10:00", "52.71.155.178", "145");
INSERT INTO `wp_rg_form_view` VALUES("26099", "3", "2016-02-13 01:06:57", "68.180.229.161", "114");
INSERT INTO `wp_rg_form_view` VALUES("26100", "8", "2016-02-13 01:29:23", "202.46.55.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("26101", "1", "2016-02-13 02:00:45", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26102", "3", "2016-02-13 02:00:45", "96.44.172.66", "340");
INSERT INTO `wp_rg_form_view` VALUES("26103", "3", "2016-02-13 03:09:05", "66.249.74.102", "121");
INSERT INTO `wp_rg_form_view` VALUES("26104", "8", "2016-02-13 03:43:20", "202.46.58.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("26105", "3", "2016-02-13 04:09:11", "157.55.39.35", "50");
INSERT INTO `wp_rg_form_view` VALUES("26106", "3", "2016-02-13 05:12:18", "66.249.74.106", "78");
INSERT INTO `wp_rg_form_view` VALUES("26107", "8", "2016-02-13 05:23:48", "202.46.48.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("26108", "3", "2016-02-13 06:25:35", "46.118.114.111", "80");
INSERT INTO `wp_rg_form_view` VALUES("26109", "3", "2016-02-13 07:02:44", "24.68.120.105", "61");
INSERT INTO `wp_rg_form_view` VALUES("26110", "3", "2016-02-13 08:24:25", "157.55.39.90", "161");
INSERT INTO `wp_rg_form_view` VALUES("26111", "3", "2016-02-13 09:05:13", "178.137.93.235", "92");
INSERT INTO `wp_rg_form_view` VALUES("26112", "3", "2016-02-13 09:05:13", "178.137.93.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("26113", "2", "2016-02-13 10:07:41", "198.23.188.239", "4");
INSERT INTO `wp_rg_form_view` VALUES("26114", "3", "2016-02-13 10:07:41", "198.23.188.239", "163");
INSERT INTO `wp_rg_form_view` VALUES("26115", "3", "2016-02-13 11:00:50", "178.137.17.196", "50");
INSERT INTO `wp_rg_form_view` VALUES("26116", "2", "2016-02-13 11:54:20", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26117", "3", "2016-02-13 12:10:20", "62.210.162.184", "64");
INSERT INTO `wp_rg_form_view` VALUES("26118", "3", "2016-02-13 13:15:36", "202.46.57.73", "60");
INSERT INTO `wp_rg_form_view` VALUES("26119", "9", "2016-02-13 13:17:05", "157.55.39.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("26120", "2", "2016-02-13 13:35:55", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26121", "1", "2016-02-13 13:51:26", "51.255.65.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("26122", "3", "2016-02-13 14:01:03", "66.249.74.106", "316");
INSERT INTO `wp_rg_form_view` VALUES("26123", "3", "2016-02-13 15:00:53", "23.236.210.98", "71");
INSERT INTO `wp_rg_form_view` VALUES("26124", "2", "2016-02-13 15:16:16", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26125", "3", "2016-02-13 16:01:07", "157.55.39.90", "403");
INSERT INTO `wp_rg_form_view` VALUES("26126", "2", "2016-02-13 16:25:03", "96.91.131.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("26127", "1", "2016-02-13 16:39:14", "107.172.237.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("26128", "3", "2016-02-13 17:07:09", "178.137.93.235", "467");
INSERT INTO `wp_rg_form_view` VALUES("26129", "9", "2016-02-13 17:32:05", "157.55.39.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("26130", "7", "2016-02-13 17:37:21", "207.46.13.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("26131", "3", "2016-02-13 18:07:41", "173.234.159.250", "52");
INSERT INTO `wp_rg_form_view` VALUES("26132", "3", "2016-02-13 19:08:52", "185.107.26.112", "176");
INSERT INTO `wp_rg_form_view` VALUES("26133", "3", "2016-02-13 20:06:24", "193.201.227.106", "106");
INSERT INTO `wp_rg_form_view` VALUES("26134", "3", "2016-02-13 21:33:01", "209.121.46.58", "60");
INSERT INTO `wp_rg_form_view` VALUES("26135", "3", "2016-02-13 22:04:29", "173.252.90.122", "41");
INSERT INTO `wp_rg_form_view` VALUES("26136", "3", "2016-02-13 23:03:12", "207.6.122.94", "97");
INSERT INTO `wp_rg_form_view` VALUES("26137", "3", "2016-02-14 00:16:41", "66.249.74.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("26138", "1", "2016-02-14 00:35:58", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26139", "3", "2016-02-14 01:08:30", "69.50.234.141", "183");
INSERT INTO `wp_rg_form_view` VALUES("26140", "3", "2016-02-14 02:10:17", "66.249.74.106", "41");
INSERT INTO `wp_rg_form_view` VALUES("26141", "3", "2016-02-14 03:17:12", "66.249.74.104", "41");
INSERT INTO `wp_rg_form_view` VALUES("26142", "3", "2016-02-14 04:12:56", "179.61.128.156", "137");
INSERT INTO `wp_rg_form_view` VALUES("26143", "3", "2016-02-14 05:03:33", "66.249.74.104", "104");
INSERT INTO `wp_rg_form_view` VALUES("26144", "6", "2016-02-14 05:50:52", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26145", "3", "2016-02-14 06:02:15", "62.210.162.184", "72");
INSERT INTO `wp_rg_form_view` VALUES("26146", "3", "2016-02-14 07:03:43", "66.249.74.104", "51");
INSERT INTO `wp_rg_form_view` VALUES("26147", "2", "2016-02-14 07:04:38", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26148", "3", "2016-02-14 08:00:24", "66.249.74.106", "192");
INSERT INTO `wp_rg_form_view` VALUES("26149", "9", "2016-02-14 08:24:17", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26150", "1", "2016-02-14 08:33:37", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26151", "3", "2016-02-14 09:10:45", "23.106.216.107", "253");
INSERT INTO `wp_rg_form_view` VALUES("26152", "3", "2016-02-14 10:28:25", "198.50.212.193", "170");
INSERT INTO `wp_rg_form_view` VALUES("26153", "3", "2016-02-14 11:07:44", "62.210.162.184", "54");
INSERT INTO `wp_rg_form_view` VALUES("26154", "3", "2016-02-14 12:45:35", "66.249.74.104", "31");
INSERT INTO `wp_rg_form_view` VALUES("26155", "3", "2016-02-14 13:22:38", "66.249.74.104", "88");
INSERT INTO `wp_rg_form_view` VALUES("26156", "8", "2016-02-14 13:45:46", "202.46.55.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("26157", "3", "2016-02-14 14:00:15", "178.137.93.235", "352");
INSERT INTO `wp_rg_form_view` VALUES("26158", "2", "2016-02-14 14:02:00", "173.8.38.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("26159", "3", "2016-02-14 15:00:50", "192.210.200.21", "138");
INSERT INTO `wp_rg_form_view` VALUES("26160", "3", "2016-02-14 16:17:37", "66.249.74.102", "61");
INSERT INTO `wp_rg_form_view` VALUES("26161", "3", "2016-02-14 17:05:32", "64.180.73.10", "125");
INSERT INTO `wp_rg_form_view` VALUES("26162", "2", "2016-02-14 17:58:49", "23.106.216.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("26163", "3", "2016-02-14 18:03:42", "157.55.39.140", "51");
INSERT INTO `wp_rg_form_view` VALUES("26164", "3", "2016-02-14 19:06:07", "155.94.170.91", "276");
INSERT INTO `wp_rg_form_view` VALUES("26165", "1", "2016-02-14 19:39:02", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26166", "3", "2016-02-14 20:08:23", "62.210.162.184", "45");
INSERT INTO `wp_rg_form_view` VALUES("26167", "8", "2016-02-14 20:49:46", "202.46.52.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("26168", "3", "2016-02-14 21:09:46", "157.55.39.245", "275");
INSERT INTO `wp_rg_form_view` VALUES("26169", "2", "2016-02-14 21:24:21", "45.32.131.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("26170", "8", "2016-02-14 21:24:45", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26171", "1", "2016-02-14 21:39:28", "173.254.235.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("26172", "3", "2016-02-14 22:08:48", "46.246.44.145", "51");
INSERT INTO `wp_rg_form_view` VALUES("26173", "3", "2016-02-14 23:23:43", "62.210.162.184", "58");
INSERT INTO `wp_rg_form_view` VALUES("26174", "3", "2016-02-15 00:13:51", "114.97.51.187", "165");
INSERT INTO `wp_rg_form_view` VALUES("26175", "3", "2016-02-15 01:03:24", "184.66.224.120", "2090");
INSERT INTO `wp_rg_form_view` VALUES("26176", "2", "2016-02-15 01:18:16", "188.143.234.155", "7");
INSERT INTO `wp_rg_form_view` VALUES("26177", "3", "2016-02-15 02:00:05", "188.143.234.155", "2626");
INSERT INTO `wp_rg_form_view` VALUES("26178", "2", "2016-02-15 02:00:49", "188.143.234.155", "8");
INSERT INTO `wp_rg_form_view` VALUES("26179", "3", "2016-02-15 03:10:25", "62.210.162.184", "261");
INSERT INTO `wp_rg_form_view` VALUES("26180", "2", "2016-02-15 03:29:02", "58.11.116.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("26181", "3", "2016-02-15 04:06:18", "51.255.65.79", "875");
INSERT INTO `wp_rg_form_view` VALUES("26182", "8", "2016-02-15 04:25:30", "188.143.234.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("26183", "9", "2016-02-15 04:25:30", "188.143.234.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("26184", "2", "2016-02-15 04:33:41", "188.143.234.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("26185", "3", "2016-02-15 05:01:23", "24.68.117.57", "199");
INSERT INTO `wp_rg_form_view` VALUES("26186", "6", "2016-02-15 05:04:36", "188.143.234.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("26187", "1", "2016-02-15 05:41:54", "201.173.152.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("26188", "3", "2016-02-15 06:04:04", "218.66.36.42", "250");
INSERT INTO `wp_rg_form_view` VALUES("26189", "8", "2016-02-15 06:04:09", "221.178.182.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("26190", "1", "2016-02-15 06:57:50", "107.173.212.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("26191", "3", "2016-02-15 07:12:12", "66.249.74.102", "30");
INSERT INTO `wp_rg_form_view` VALUES("26192", "3", "2016-02-15 08:16:06", "82.76.87.154", "342");
INSERT INTO `wp_rg_form_view` VALUES("26193", "2", "2016-02-15 08:17:05", "82.76.87.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("26194", "8", "2016-02-15 09:02:25", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26195", "3", "2016-02-15 09:02:25", "68.180.229.161", "195");
INSERT INTO `wp_rg_form_view` VALUES("26196", "1", "2016-02-15 09:13:55", "104.223.69.107", "5");
INSERT INTO `wp_rg_form_view` VALUES("26197", "3", "2016-02-15 10:00:10", "68.180.229.161", "30");
INSERT INTO `wp_rg_form_view` VALUES("26198", "1", "2016-02-15 11:03:56", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26199", "3", "2016-02-15 11:03:56", "62.210.162.184", "30");
INSERT INTO `wp_rg_form_view` VALUES("26200", "3", "2016-02-15 12:05:56", "157.55.39.19", "74");
INSERT INTO `wp_rg_form_view` VALUES("26201", "1", "2016-02-15 12:53:00", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26202", "3", "2016-02-15 13:11:37", "66.249.74.106", "34");
INSERT INTO `wp_rg_form_view` VALUES("26203", "3", "2016-02-15 14:15:10", "202.46.54.133", "75");
INSERT INTO `wp_rg_form_view` VALUES("26204", "8", "2016-02-15 14:32:17", "202.46.52.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("26205", "1", "2016-02-15 14:36:53", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26206", "3", "2016-02-15 15:24:45", "199.21.99.202", "72");
INSERT INTO `wp_rg_form_view` VALUES("26207", "3", "2016-02-15 16:02:55", "46.118.114.111", "61");
INSERT INTO `wp_rg_form_view` VALUES("26208", "3", "2016-02-15 17:27:27", "178.137.17.196", "40");
INSERT INTO `wp_rg_form_view` VALUES("26209", "7", "2016-02-15 17:35:27", "157.55.39.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("26210", "3", "2016-02-15 18:22:12", "66.249.74.104", "61");
INSERT INTO `wp_rg_form_view` VALUES("26211", "3", "2016-02-15 19:04:16", "66.249.74.104", "470");
INSERT INTO `wp_rg_form_view` VALUES("26212", "5", "2016-02-15 19:42:34", "157.55.39.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("26213", "3", "2016-02-15 20:08:47", "96.50.48.74", "211");
INSERT INTO `wp_rg_form_view` VALUES("26214", "2", "2016-02-15 20:24:12", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("26215", "3", "2016-02-15 21:02:52", "96.54.6.249", "126");
INSERT INTO `wp_rg_form_view` VALUES("26216", "8", "2016-02-15 21:59:28", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26217", "3", "2016-02-15 22:09:40", "64.114.222.250", "104");
INSERT INTO `wp_rg_form_view` VALUES("26218", "3", "2016-02-15 23:00:26", "216.232.157.182", "218");
INSERT INTO `wp_rg_form_view` VALUES("26219", "1", "2016-02-15 23:50:40", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26220", "3", "2016-02-16 00:14:31", "157.55.39.254", "342");
INSERT INTO `wp_rg_form_view` VALUES("26221", "8", "2016-02-16 00:16:39", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26222", "9", "2016-02-16 00:39:52", "157.55.39.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("26223", "3", "2016-02-16 01:47:06", "68.180.229.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("26224", "3", "2016-02-16 02:07:22", "62.210.162.184", "143");
INSERT INTO `wp_rg_form_view` VALUES("26225", "3", "2016-02-16 03:02:27", "104.168.53.152", "72");
INSERT INTO `wp_rg_form_view` VALUES("26226", "3", "2016-02-16 04:08:31", "5.255.75.32", "114");
INSERT INTO `wp_rg_form_view` VALUES("26227", "3", "2016-02-16 05:36:49", "216.232.0.232", "70");
INSERT INTO `wp_rg_form_view` VALUES("26228", "3", "2016-02-16 05:36:49", "216.232.0.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("26229", "3", "2016-02-16 06:07:18", "5.9.94.207", "110");
INSERT INTO `wp_rg_form_view` VALUES("26230", "3", "2016-02-16 07:20:47", "155.94.176.175", "44");
INSERT INTO `wp_rg_form_view` VALUES("26231", "3", "2016-02-16 08:03:17", "68.180.229.161", "84");
INSERT INTO `wp_rg_form_view` VALUES("26232", "1", "2016-02-16 08:20:02", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26233", "3", "2016-02-16 09:16:49", "207.46.13.181", "10");
INSERT INTO `wp_rg_form_view` VALUES("26234", "3", "2016-02-16 10:02:05", "66.249.74.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("26235", "3", "2016-02-16 11:10:32", "157.55.39.239", "20");
INSERT INTO `wp_rg_form_view` VALUES("26236", "3", "2016-02-16 12:42:19", "46.118.114.111", "20");
INSERT INTO `wp_rg_form_view` VALUES("26237", "3", "2016-02-16 13:01:20", "62.210.148.247", "103");
INSERT INTO `wp_rg_form_view` VALUES("26238", "9", "2016-02-16 13:01:40", "62.210.148.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("26239", "8", "2016-02-16 13:01:52", "62.210.148.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("26240", "3", "2016-02-16 14:03:17", "66.249.74.104", "294");
INSERT INTO `wp_rg_form_view` VALUES("26241", "8", "2016-02-16 14:43:37", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26242", "3", "2016-02-16 15:26:03", "202.46.51.167", "2227");
INSERT INTO `wp_rg_form_view` VALUES("26243", "1", "2016-02-16 15:37:12", "162.243.84.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("26244", "5", "2016-02-16 15:43:52", "162.243.84.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("26245", "6", "2016-02-16 15:51:58", "162.243.84.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("26246", "9", "2016-02-16 15:59:38", "162.243.84.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("26247", "3", "2016-02-16 16:00:37", "162.243.84.55", "4317");
INSERT INTO `wp_rg_form_view` VALUES("26248", "2", "2016-02-16 16:21:23", "23.31.24.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("26249", "8", "2016-02-16 16:25:37", "202.46.51.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("26250", "3", "2016-02-16 17:03:58", "202.46.50.90", "166");
INSERT INTO `wp_rg_form_view` VALUES("26251", "1", "2016-02-16 17:50:59", "206.19.211.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("26252", "3", "2016-02-16 18:02:16", "202.46.49.148", "228");
INSERT INTO `wp_rg_form_view` VALUES("26253", "8", "2016-02-16 18:58:52", "202.46.52.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("26254", "3", "2016-02-16 19:00:11", "207.46.13.181", "526");
INSERT INTO `wp_rg_form_view` VALUES("26255", "1", "2016-02-16 19:03:09", "134.87.151.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("26256", "2", "2016-02-16 19:31:48", "131.137.245.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("26257", "8", "2016-02-16 19:40:39", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26258", "3", "2016-02-16 20:04:35", "202.46.51.182", "226");
INSERT INTO `wp_rg_form_view` VALUES("26259", "8", "2016-02-16 20:21:01", "202.46.50.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("26260", "3", "2016-02-16 21:04:25", "202.46.54.108", "343");
INSERT INTO `wp_rg_form_view` VALUES("26261", "8", "2016-02-16 21:19:11", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26262", "3", "2016-02-16 22:01:12", "66.249.74.106", "247");
INSERT INTO `wp_rg_form_view` VALUES("26263", "8", "2016-02-16 22:43:01", "202.46.54.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("26264", "3", "2016-02-16 23:00:45", "185.107.26.186", "399");
INSERT INTO `wp_rg_form_view` VALUES("26265", "1", "2016-02-16 23:01:43", "99.199.3.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("26266", "8", "2016-02-16 23:37:48", "202.46.53.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("26267", "3", "2016-02-17 00:05:11", "202.46.56.90", "207");
INSERT INTO `wp_rg_form_view` VALUES("26268", "3", "2016-02-17 01:01:31", "24.69.85.51", "287");
INSERT INTO `wp_rg_form_view` VALUES("26269", "8", "2016-02-17 01:43:46", "202.46.58.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("26270", "3", "2016-02-17 02:00:12", "202.46.54.192", "272");
INSERT INTO `wp_rg_form_view` VALUES("26271", "8", "2016-02-17 02:00:12", "202.46.54.192", "2");
INSERT INTO `wp_rg_form_view` VALUES("26272", "3", "2016-02-17 03:00:27", "202.46.53.175", "366");
INSERT INTO `wp_rg_form_view` VALUES("26273", "8", "2016-02-17 03:22:21", "202.46.57.186", "2");
INSERT INTO `wp_rg_form_view` VALUES("26274", "6", "2016-02-17 03:34:16", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26275", "3", "2016-02-17 04:00:42", "202.46.53.142", "257");
INSERT INTO `wp_rg_form_view` VALUES("26276", "8", "2016-02-17 04:28:05", "202.46.51.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("26277", "3", "2016-02-17 05:02:35", "77.75.79.109", "291");
INSERT INTO `wp_rg_form_view` VALUES("26278", "1", "2016-02-17 05:06:22", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26279", "3", "2016-02-17 06:01:14", "202.46.51.89", "244");
INSERT INTO `wp_rg_form_view` VALUES("26280", "8", "2016-02-17 06:11:38", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26281", "3", "2016-02-17 07:05:13", "66.249.74.102", "276");
INSERT INTO `wp_rg_form_view` VALUES("26282", "8", "2016-02-17 07:45:17", "202.46.50.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("26283", "3", "2016-02-17 08:01:42", "202.46.52.76", "524");
INSERT INTO `wp_rg_form_view` VALUES("26284", "2", "2016-02-17 08:46:46", "70.183.228.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("26285", "3", "2016-02-17 09:03:54", "202.46.54.138", "243");
INSERT INTO `wp_rg_form_view` VALUES("26286", "3", "2016-02-17 10:01:18", "202.46.49.93", "351");
INSERT INTO `wp_rg_form_view` VALUES("26287", "8", "2016-02-17 10:12:16", "202.46.56.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("26288", "3", "2016-02-17 11:01:33", "202.46.57.170", "283");
INSERT INTO `wp_rg_form_view` VALUES("26289", "3", "2016-02-17 12:01:48", "202.46.52.44", "501");
INSERT INTO `wp_rg_form_view` VALUES("26290", "8", "2016-02-17 12:01:48", "202.46.52.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("26291", "2", "2016-02-17 12:49:28", "50.242.170.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("26292", "3", "2016-02-17 13:00:48", "62.210.162.184", "265");
INSERT INTO `wp_rg_form_view` VALUES("26293", "8", "2016-02-17 13:25:15", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26294", "3", "2016-02-17 14:00:22", "202.46.58.123", "253");
INSERT INTO `wp_rg_form_view` VALUES("26295", "1", "2016-02-17 14:35:56", "37.156.74.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("26296", "8", "2016-02-17 14:49:40", "202.46.57.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("26297", "3", "2016-02-17 15:00:37", "202.46.48.82", "618");
INSERT INTO `wp_rg_form_view` VALUES("26298", "2", "2016-02-17 15:20:23", "50.242.171.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26299", "8", "2016-02-17 15:28:00", "202.46.56.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("26300", "1", "2016-02-17 15:51:33", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26301", "3", "2016-02-17 16:00:52", "202.46.49.69", "243");
INSERT INTO `wp_rg_form_view` VALUES("26302", "3", "2016-02-17 17:01:08", "202.46.51.180", "589");
INSERT INTO `wp_rg_form_view` VALUES("26303", "8", "2016-02-17 17:05:37", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26304", "2", "2016-02-17 17:31:23", "104.236.69.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("26305", "3", "2016-02-17 18:01:22", "202.46.54.206", "362");
INSERT INTO `wp_rg_form_view` VALUES("26306", "1", "2016-02-17 18:10:35", "172.245.169.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("26307", "8", "2016-02-17 18:17:48", "202.46.48.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("26308", "3", "2016-02-17 19:01:40", "202.46.58.185", "641");
INSERT INTO `wp_rg_form_view` VALUES("26309", "2", "2016-02-17 19:13:50", "50.241.139.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("26310", "8", "2016-02-17 19:18:03", "202.46.55.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("26311", "1", "2016-02-17 19:31:47", "162.156.84.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("26312", "1", "2016-02-17 20:01:21", "123.54.1.41", "4");
INSERT INTO `wp_rg_form_view` VALUES("26313", "3", "2016-02-17 20:01:21", "123.54.1.41", "572");
INSERT INTO `wp_rg_form_view` VALUES("26314", "8", "2016-02-17 20:23:47", "202.46.55.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("26315", "3", "2016-02-17 21:02:07", "202.46.55.64", "276");
INSERT INTO `wp_rg_form_view` VALUES("26316", "3", "2016-02-17 22:02:23", "202.46.52.67", "212");
INSERT INTO `wp_rg_form_view` VALUES("26317", "8", "2016-02-17 22:18:49", "202.46.52.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("26318", "3", "2016-02-17 23:02:38", "202.46.57.79", "208");
INSERT INTO `wp_rg_form_view` VALUES("26319", "8", "2016-02-17 23:19:04", "202.46.58.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("26320", "3", "2016-02-18 00:02:55", "202.46.57.179", "208");
INSERT INTO `wp_rg_form_view` VALUES("26321", "8", "2016-02-18 00:24:47", "202.46.52.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("26322", "3", "2016-02-18 01:00:35", "66.249.74.106", "494");
INSERT INTO `wp_rg_form_view` VALUES("26323", "2", "2016-02-18 01:07:13", "70.188.114.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("26324", "8", "2016-02-18 01:16:22", "202.46.49.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("26325", "3", "2016-02-18 02:00:18", "202.46.56.90", "552");
INSERT INTO `wp_rg_form_view` VALUES("26326", "2", "2016-02-18 02:25:01", "79.116.26.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("26327", "8", "2016-02-18 02:28:33", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26328", "8", "2016-02-18 03:01:48", "202.46.50.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("26329", "3", "2016-02-18 03:01:48", "202.46.50.92", "160");
INSERT INTO `wp_rg_form_view` VALUES("26330", "3", "2016-02-18 04:02:16", "66.249.74.106", "244");
INSERT INTO `wp_rg_form_view` VALUES("26331", "8", "2016-02-18 04:29:39", "202.46.58.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("26332", "3", "2016-02-18 05:04:48", "202.46.49.63", "205");
INSERT INTO `wp_rg_form_view` VALUES("26333", "3", "2016-02-18 06:04:28", "66.249.74.104", "936");
INSERT INTO `wp_rg_form_view` VALUES("26334", "8", "2016-02-18 06:20:38", "157.55.39.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("26335", "7", "2016-02-18 06:21:24", "157.55.39.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("26336", "9", "2016-02-18 06:22:39", "207.46.13.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("26337", "3", "2016-02-18 07:02:02", "178.62.254.218", "174");
INSERT INTO `wp_rg_form_view` VALUES("26338", "3", "2016-02-18 08:00:31", "202.46.52.206", "298");
INSERT INTO `wp_rg_form_view` VALUES("26339", "8", "2016-02-18 08:59:36", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26340", "3", "2016-02-18 09:02:02", "202.46.52.107", "312");
INSERT INTO `wp_rg_form_view` VALUES("26341", "1", "2016-02-18 09:45:01", "46.105.86.213", "5");
INSERT INTO `wp_rg_form_view` VALUES("26342", "3", "2016-02-18 10:03:31", "202.46.58.85", "193");
INSERT INTO `wp_rg_form_view` VALUES("26343", "3", "2016-02-18 11:04:19", "66.249.69.45", "172");
INSERT INTO `wp_rg_form_view` VALUES("26344", "3", "2016-02-18 12:02:06", "66.249.74.102", "185");
INSERT INTO `wp_rg_form_view` VALUES("26345", "3", "2016-02-18 13:08:01", "202.46.50.125", "143");
INSERT INTO `wp_rg_form_view` VALUES("26346", "8", "2016-02-18 13:08:02", "202.46.50.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("26347", "3", "2016-02-18 14:00:46", "202.46.49.123", "570");
INSERT INTO `wp_rg_form_view` VALUES("26348", "8", "2016-02-18 14:20:23", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26349", "9", "2016-02-18 14:27:35", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("26350", "2", "2016-02-18 14:30:22", "207.46.13.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("26351", "3", "2016-02-18 15:02:15", "202.46.58.77", "190");
INSERT INTO `wp_rg_form_view` VALUES("26352", "6", "2016-02-18 15:19:40", "5.9.106.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("26353", "3", "2016-02-18 16:03:45", "202.46.48.13", "252");
INSERT INTO `wp_rg_form_view` VALUES("26354", "2", "2016-02-18 16:13:17", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26355", "9", "2016-02-18 16:54:25", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("26356", "3", "2016-02-18 17:02:18", "66.249.74.106", "277");
INSERT INTO `wp_rg_form_view` VALUES("26357", "3", "2016-02-18 18:03:01", "66.249.74.104", "344");
INSERT INTO `wp_rg_form_view` VALUES("26358", "3", "2016-02-18 19:07:47", "66.249.74.102", "214");
INSERT INTO `wp_rg_form_view` VALUES("26359", "3", "2016-02-18 20:00:58", "202.46.49.145", "279");
INSERT INTO `wp_rg_form_view` VALUES("26360", "8", "2016-02-18 20:11:17", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26361", "1", "2016-02-18 20:42:06", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26362", "3", "2016-02-18 21:00:40", "68.180.229.161", "292");
INSERT INTO `wp_rg_form_view` VALUES("26363", "1", "2016-02-18 21:15:07", "24.69.66.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("26364", "3", "2016-02-18 22:00:11", "66.249.74.106", "338");
INSERT INTO `wp_rg_form_view` VALUES("26365", "3", "2016-02-18 23:05:28", "202.46.51.18", "182");
INSERT INTO `wp_rg_form_view` VALUES("26366", "8", "2016-02-18 23:15:56", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26367", "1", "2016-02-18 23:56:45", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26368", "3", "2016-02-19 00:05:01", "66.249.74.104", "268");
INSERT INTO `wp_rg_form_view` VALUES("26369", "8", "2016-02-19 00:56:34", "202.46.51.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("26370", "3", "2016-02-19 01:02:20", "202.46.50.134", "424");
INSERT INTO `wp_rg_form_view` VALUES("26371", "8", "2016-02-19 01:42:48", "202.46.52.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("26372", "3", "2016-02-19 02:00:08", "202.46.58.14", "669");
INSERT INTO `wp_rg_form_view` VALUES("26373", "2", "2016-02-19 02:02:19", "87.16.176.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("26374", "8", "2016-02-19 02:52:09", "202.46.54.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("26375", "9", "2016-02-19 02:57:57", "202.46.56.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("26376", "3", "2016-02-19 03:00:49", "202.46.49.60", "444");
INSERT INTO `wp_rg_form_view` VALUES("26377", "8", "2016-02-19 03:38:23", "202.46.54.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26378", "3", "2016-02-19 04:01:30", "202.46.56.75", "1423");
INSERT INTO `wp_rg_form_view` VALUES("26379", "2", "2016-02-19 04:03:53", "89.144.22.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("26380", "1", "2016-02-19 04:31:07", "185.75.241.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("26381", "8", "2016-02-19 04:36:20", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("26382", "3", "2016-02-19 05:02:11", "202.46.50.74", "457");
INSERT INTO `wp_rg_form_view` VALUES("26383", "2", "2016-02-19 05:03:27", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26384", "8", "2016-02-19 05:36:52", "202.46.57.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("26385", "1", "2016-02-19 05:50:16", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26386", "3", "2016-02-19 06:00:00", "202.46.52.162", "446");
INSERT INTO `wp_rg_form_view` VALUES("26387", "8", "2016-02-19 06:14:26", "202.46.51.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("26388", "3", "2016-02-19 07:00:41", "202.46.52.208", "791");
INSERT INTO `wp_rg_form_view` VALUES("26389", "2", "2016-02-19 07:07:15", "50.254.100.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("26390", "3", "2016-02-19 08:01:21", "202.46.53.178", "171");
INSERT INTO `wp_rg_form_view` VALUES("26391", "3", "2016-02-19 09:06:08", "66.249.74.104", "249");
INSERT INTO `wp_rg_form_view` VALUES("26392", "8", "2016-02-19 09:26:04", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26393", "3", "2016-02-19 10:01:58", "202.46.51.12", "202");
INSERT INTO `wp_rg_form_view` VALUES("26394", "8", "2016-02-19 10:38:09", "202.46.55.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("26395", "3", "2016-02-19 11:01:45", "202.46.54.185", "305");
INSERT INTO `wp_rg_form_view` VALUES("26396", "3", "2016-02-19 12:00:29", "202.46.53.151", "198");
INSERT INTO `wp_rg_form_view` VALUES("26397", "3", "2016-02-19 13:01:00", "202.46.58.138", "238");
INSERT INTO `wp_rg_form_view` VALUES("26398", "3", "2016-02-19 14:01:51", "202.46.48.82", "294");
INSERT INTO `wp_rg_form_view` VALUES("26399", "8", "2016-02-19 14:13:25", "202.46.58.208", "3");
INSERT INTO `wp_rg_form_view` VALUES("26400", "1", "2016-02-19 14:40:26", "107.172.237.43", "4");
INSERT INTO `wp_rg_form_view` VALUES("26401", "3", "2016-02-19 15:01:07", "62.210.162.184", "416");
INSERT INTO `wp_rg_form_view` VALUES("26402", "1", "2016-02-19 15:13:21", "172.245.225.221", "4");
INSERT INTO `wp_rg_form_view` VALUES("26403", "3", "2016-02-19 16:00:40", "202.46.54.210", "445");
INSERT INTO `wp_rg_form_view` VALUES("26404", "8", "2016-02-19 16:41:07", "202.46.53.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("26405", "1", "2016-02-19 16:41:09", "104.144.250.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("26406", "3", "2016-02-19 17:01:20", "202.46.51.208", "377");
INSERT INTO `wp_rg_form_view` VALUES("26407", "1", "2016-02-19 17:22:15", "198.46.229.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("26408", "8", "2016-02-19 17:41:48", "202.46.55.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("26409", "3", "2016-02-19 18:02:02", "202.46.52.175", "453");
INSERT INTO `wp_rg_form_view` VALUES("26410", "1", "2016-02-19 18:41:39", "45.57.163.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("26411", "8", "2016-02-19 18:56:56", "202.46.58.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("26412", "9", "2016-02-19 18:59:39", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26413", "3", "2016-02-19 19:02:42", "202.46.55.154", "410");
INSERT INTO `wp_rg_form_view` VALUES("26414", "8", "2016-02-19 19:11:23", "202.46.56.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("26415", "1", "2016-02-19 19:19:52", "107.172.237.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("26416", "3", "2016-02-19 20:00:30", "202.46.50.82", "732");
INSERT INTO `wp_rg_form_view` VALUES("26417", "1", "2016-02-19 20:35:18", "107.172.237.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("26418", "2", "2016-02-19 20:59:32", "45.32.129.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("26419", "3", "2016-02-19 21:01:11", "202.46.57.186", "446");
INSERT INTO `wp_rg_form_view` VALUES("26420", "8", "2016-02-19 21:06:58", "202.46.52.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("26421", "1", "2016-02-19 21:15:53", "104.144.250.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("26422", "3", "2016-02-19 22:01:52", "202.46.48.190", "515");
INSERT INTO `wp_rg_form_view` VALUES("26423", "1", "2016-02-19 22:02:25", "87.98.128.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("26424", "8", "2016-02-19 22:16:21", "202.46.51.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("26425", "3", "2016-02-19 23:02:25", "72.143.225.221", "439");
INSERT INTO `wp_rg_form_view` VALUES("26426", "8", "2016-02-19 23:02:45", "202.46.51.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("26427", "3", "2016-02-20 00:00:32", "202.46.54.189", "436");
INSERT INTO `wp_rg_form_view` VALUES("26428", "8", "2016-02-20 00:15:00", "202.46.52.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("26429", "6", "2016-02-20 00:26:13", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("26430", "3", "2016-02-20 01:01:18", "202.46.54.169", "407");
INSERT INTO `wp_rg_form_view` VALUES("26431", "8", "2016-02-20 01:13:01", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26432", "3", "2016-02-20 02:02:00", "217.69.133.229", "389");
INSERT INTO `wp_rg_form_view` VALUES("26433", "8", "2016-02-20 02:46:21", "202.46.57.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("26434", "3", "2016-02-20 03:01:42", "66.249.74.104", "445");
INSERT INTO `wp_rg_form_view` VALUES("26435", "8", "2016-02-20 03:20:11", "202.46.52.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("26436", "3", "2016-02-20 04:00:47", "202.46.51.192", "425");
INSERT INTO `wp_rg_form_view` VALUES("26437", "1", "2016-02-20 04:40:29", "89.157.43.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("26438", "3", "2016-02-20 05:01:41", "202.46.58.189", "517");
INSERT INTO `wp_rg_form_view` VALUES("26439", "8", "2016-02-20 05:15:11", "202.46.57.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("26440", "1", "2016-02-20 05:37:37", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26441", "3", "2016-02-20 06:02:33", "202.46.52.100", "516");
INSERT INTO `wp_rg_form_view` VALUES("26442", "7", "2016-02-20 06:52:24", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("26443", "3", "2016-02-20 07:00:04", "202.46.52.63", "379");
INSERT INTO `wp_rg_form_view` VALUES("26444", "3", "2016-02-20 08:00:56", "202.46.54.147", "386");
INSERT INTO `wp_rg_form_view` VALUES("26445", "3", "2016-02-20 09:01:49", "202.46.54.103", "477");
INSERT INTO `wp_rg_form_view` VALUES("26446", "8", "2016-02-20 09:12:48", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26447", "3", "2016-02-20 10:02:43", "202.46.51.209", "317");
INSERT INTO `wp_rg_form_view` VALUES("26448", "8", "2016-02-20 10:06:05", "202.46.55.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("26449", "5", "2016-02-20 10:29:47", "202.46.54.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("26450", "3", "2016-02-20 11:00:13", "202.46.50.185", "419");
INSERT INTO `wp_rg_form_view` VALUES("26451", "1", "2016-02-20 11:16:04", "96.44.172.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("26452", "8", "2016-02-20 11:27:16", "202.46.54.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("26453", "3", "2016-02-20 12:01:06", "202.46.56.95", "443");
INSERT INTO `wp_rg_form_view` VALUES("26454", "8", "2016-02-20 12:07:52", "202.46.50.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("26455", "3", "2016-02-20 13:01:59", "202.46.48.122", "459");
INSERT INTO `wp_rg_form_view` VALUES("26456", "1", "2016-02-20 13:07:53", "107.172.237.43", "6");
INSERT INTO `wp_rg_form_view` VALUES("26457", "8", "2016-02-20 13:22:18", "202.46.50.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("26458", "3", "2016-02-20 14:02:52", "202.46.52.205", "361");
INSERT INTO `wp_rg_form_view` VALUES("26459", "1", "2016-02-20 14:54:53", "104.144.5.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("26460", "3", "2016-02-20 15:00:23", "202.46.51.167", "414");
INSERT INTO `wp_rg_form_view` VALUES("26461", "8", "2016-02-20 15:37:35", "202.46.52.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("26462", "3", "2016-02-20 16:01:16", "202.46.58.158", "400");
INSERT INTO `wp_rg_form_view` VALUES("26463", "8", "2016-02-20 16:18:12", "202.46.57.209", "5");
INSERT INTO `wp_rg_form_view` VALUES("26464", "1", "2016-02-20 16:38:13", "104.144.250.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("26465", "3", "2016-02-20 17:02:09", "202.46.50.131", "729");
INSERT INTO `wp_rg_form_view` VALUES("26466", "8", "2016-02-20 17:05:32", "202.46.55.130", "3");
INSERT INTO `wp_rg_form_view` VALUES("26467", "9", "2016-02-20 17:48:15", "207.46.13.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("26468", "6", "2016-02-20 17:48:38", "40.77.167.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("26469", "1", "2016-02-20 17:48:55", "40.77.167.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("26470", "2", "2016-02-20 17:48:58", "40.77.167.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("26471", "3", "2016-02-20 18:03:03", "202.46.58.95", "1199");
INSERT INTO `wp_rg_form_view` VALUES("26472", "8", "2016-02-20 18:09:48", "202.46.52.178", "5");
INSERT INTO `wp_rg_form_view` VALUES("26473", "2", "2016-02-20 18:14:21", "80.86.94.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("26474", "1", "2016-02-20 18:15:19", "80.86.94.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("26475", "9", "2016-02-20 18:17:35", "80.86.94.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("26476", "5", "2016-02-20 18:18:44", "80.86.94.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("26477", "3", "2016-02-20 19:00:33", "202.46.50.155", "383");
INSERT INTO `wp_rg_form_view` VALUES("26478", "8", "2016-02-20 19:07:18", "202.46.52.203", "3");
INSERT INTO `wp_rg_form_view` VALUES("26479", "3", "2016-02-20 20:01:26", "202.46.54.18", "792");
INSERT INTO `wp_rg_form_view` VALUES("26480", "6", "2016-02-20 20:14:23", "80.86.94.7", "3");
INSERT INTO `wp_rg_form_view` VALUES("26481", "9", "2016-02-20 20:18:32", "80.86.94.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("26482", "8", "2016-02-20 20:45:24", "202.46.52.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("26483", "3", "2016-02-20 21:02:19", "202.46.50.18", "782");
INSERT INTO `wp_rg_form_view` VALUES("26484", "8", "2016-02-20 21:22:38", "202.46.52.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("26485", "2", "2016-02-20 21:56:28", "50.241.139.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("26486", "3", "2016-02-20 22:03:12", "202.46.54.91", "494");
INSERT INTO `wp_rg_form_view` VALUES("26487", "8", "2016-02-20 22:21:51", "80.86.94.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("26488", "3", "2016-02-20 23:00:42", "202.46.55.183", "330");
INSERT INTO `wp_rg_form_view` VALUES("26489", "8", "2016-02-20 23:51:27", "202.46.50.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("26490", "3", "2016-02-21 00:01:36", "202.46.55.124", "413");
INSERT INTO `wp_rg_form_view` VALUES("26491", "8", "2016-02-21 00:28:39", "202.46.50.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("26492", "9", "2016-02-21 00:29:21", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("26493", "3", "2016-02-21 01:00:28", "202.46.56.17", "207");
INSERT INTO `wp_rg_form_view` VALUES("26494", "3", "2016-02-21 02:03:06", "202.46.50.80", "263");
INSERT INTO `wp_rg_form_view` VALUES("26495", "8", "2016-02-21 02:46:58", "202.46.52.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("26496", "3", "2016-02-21 03:01:40", "202.46.52.176", "392");
INSERT INTO `wp_rg_form_view` VALUES("26497", "8", "2016-02-21 03:16:14", "202.46.52.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("26498", "2", "2016-02-21 03:35:28", "104.156.231.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("26499", "3", "2016-02-21 04:09:28", "202.46.48.93", "264");
INSERT INTO `wp_rg_form_view` VALUES("26500", "8", "2016-02-21 04:27:45", "202.46.51.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("26501", "3", "2016-02-21 05:00:40", "202.46.53.146", "342");
INSERT INTO `wp_rg_form_view` VALUES("26502", "3", "2016-02-21 06:02:50", "202.46.56.181", "298");
INSERT INTO `wp_rg_form_view` VALUES("26503", "8", "2016-02-21 06:54:02", "202.46.58.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("26504", "3", "2016-02-21 07:01:21", "202.46.50.183", "617");
INSERT INTO `wp_rg_form_view` VALUES("26505", "8", "2016-02-21 07:08:39", "202.46.58.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("26506", "2", "2016-02-21 07:21:24", "86.123.242.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("26507", "3", "2016-02-21 08:03:30", "202.46.54.169", "299");
INSERT INTO `wp_rg_form_view` VALUES("26508", "8", "2016-02-21 08:43:43", "202.46.50.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("26509", "2", "2016-02-21 08:56:14", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26510", "3", "2016-02-21 09:02:01", "202.46.57.161", "392");
INSERT INTO `wp_rg_form_view` VALUES("26511", "3", "2016-02-21 10:00:31", "202.46.51.82", "456");
INSERT INTO `wp_rg_form_view` VALUES("26512", "8", "2016-02-21 10:55:22", "202.46.54.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("26513", "3", "2016-02-21 11:02:41", "202.46.50.90", "336");
INSERT INTO `wp_rg_form_view` VALUES("26514", "2", "2016-02-21 11:49:06", "172.245.91.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("26515", "3", "2016-02-21 12:01:11", "202.46.55.12", "349");
INSERT INTO `wp_rg_form_view` VALUES("26516", "8", "2016-02-21 12:37:45", "202.46.50.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("26517", "3", "2016-02-21 13:03:21", "202.46.49.194", "468");
INSERT INTO `wp_rg_form_view` VALUES("26518", "1", "2016-02-21 13:17:57", "192.255.101.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("26519", "8", "2016-02-21 13:39:55", "202.46.48.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("26520", "3", "2016-02-21 14:01:51", "202.46.58.188", "350");
INSERT INTO `wp_rg_form_view` VALUES("26521", "3", "2016-02-21 15:04:01", "202.46.54.159", "418");
INSERT INTO `wp_rg_form_view` VALUES("26522", "3", "2016-02-21 16:02:32", "202.46.58.150", "316");
INSERT INTO `wp_rg_form_view` VALUES("26523", "8", "2016-02-21 16:13:30", "202.46.48.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("26524", "3", "2016-02-21 17:03:03", "202.46.51.163", "251");
INSERT INTO `wp_rg_form_view` VALUES("26525", "3", "2016-02-21 18:01:34", "202.46.58.182", "264");
INSERT INTO `wp_rg_form_view` VALUES("26526", "3", "2016-02-21 19:00:04", "202.46.55.170", "446");
INSERT INTO `wp_rg_form_view` VALUES("26527", "1", "2016-02-21 19:00:27", "38.83.106.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("26528", "3", "2016-02-21 20:02:14", "202.46.53.148", "246");
INSERT INTO `wp_rg_form_view` VALUES("26529", "2", "2016-02-21 20:08:01", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26530", "8", "2016-02-21 20:35:09", "202.46.51.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("26531", "3", "2016-02-21 21:00:44", "202.46.58.161", "360");
INSERT INTO `wp_rg_form_view` VALUES("26532", "3", "2016-02-21 22:02:54", "202.46.55.134", "302");
INSERT INTO `wp_rg_form_view` VALUES("26533", "8", "2016-02-21 22:13:53", "202.46.51.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("26534", "3", "2016-02-21 23:01:25", "202.46.49.78", "410");
INSERT INTO `wp_rg_form_view` VALUES("26535", "3", "2016-02-22 00:03:35", "202.46.58.57", "334");
INSERT INTO `wp_rg_form_view` VALUES("26536", "3", "2016-02-22 01:02:05", "202.46.51.201", "442");
INSERT INTO `wp_rg_form_view` VALUES("26537", "2", "2016-02-22 01:37:18", "23.106.216.141", "4");
INSERT INTO `wp_rg_form_view` VALUES("26538", "8", "2016-02-22 01:42:19", "202.46.51.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("26539", "3", "2016-02-22 02:00:35", "202.46.58.72", "302");
INSERT INTO `wp_rg_form_view` VALUES("26540", "8", "2016-02-22 02:00:36", "202.46.58.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("26541", "3", "2016-02-22 03:02:45", "202.46.49.138", "338");
INSERT INTO `wp_rg_form_view` VALUES("26542", "2", "2016-02-22 03:24:48", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26543", "3", "2016-02-22 04:01:16", "202.46.56.13", "383");
INSERT INTO `wp_rg_form_view` VALUES("26544", "3", "2016-02-22 05:03:27", "202.46.57.198", "286");
INSERT INTO `wp_rg_form_view` VALUES("26545", "8", "2016-02-22 05:03:27", "202.46.57.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("26546", "2", "2016-02-22 05:05:17", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26547", "5", "2016-02-22 05:25:58", "51.255.65.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("26548", "3", "2016-02-22 06:00:18", "202.46.53.50", "379");
INSERT INTO `wp_rg_form_view` VALUES("26549", "8", "2016-02-22 06:44:40", "202.46.52.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("26550", "2", "2016-02-22 06:45:54", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26551", "3", "2016-02-22 07:06:37", "202.46.51.37", "562");
INSERT INTO `wp_rg_form_view` VALUES("26552", "2", "2016-02-22 07:21:47", "87.222.95.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("26553", "3", "2016-02-22 08:01:27", "202.46.52.69", "312");
INSERT INTO `wp_rg_form_view` VALUES("26554", "3", "2016-02-22 09:00:00", "202.46.53.201", "384");
INSERT INTO `wp_rg_form_view` VALUES("26555", "3", "2016-02-22 10:02:08", "202.46.53.152", "304");
INSERT INTO `wp_rg_form_view` VALUES("26556", "8", "2016-02-22 10:56:59", "202.46.58.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("26557", "3", "2016-02-22 11:00:38", "202.46.56.185", "345");
INSERT INTO `wp_rg_form_view` VALUES("26558", "8", "2016-02-22 11:04:17", "202.46.50.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("26559", "7", "2016-02-22 11:46:02", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26560", "1", "2016-02-22 11:47:21", "192.3.242.159", "4");
INSERT INTO `wp_rg_form_view` VALUES("26561", "3", "2016-02-22 12:09:11", "202.46.56.197", "226");
INSERT INTO `wp_rg_form_view` VALUES("26562", "3", "2016-02-22 13:00:23", "202.46.58.81", "362");
INSERT INTO `wp_rg_form_view` VALUES("26563", "1", "2016-02-22 13:27:16", "23.94.236.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("26564", "3", "2016-02-22 14:02:33", "202.46.54.140", "123");
INSERT INTO `wp_rg_form_view` VALUES("26565", "8", "2016-02-22 14:06:13", "202.46.55.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("26566", "3", "2016-02-22 15:05:33", "220.181.108.146", "287");
INSERT INTO `wp_rg_form_view` VALUES("26567", "1", "2016-02-22 15:11:57", "192.3.243.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("26568", "3", "2016-02-22 16:00:48", "202.46.51.210", "316");
INSERT INTO `wp_rg_form_view` VALUES("26569", "8", "2016-02-22 16:26:24", "202.46.58.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("26570", "1", "2016-02-22 16:53:36", "107.172.236.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("26571", "8", "2016-02-22 17:02:59", "202.46.53.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("26572", "3", "2016-02-22 17:02:59", "202.46.53.140", "333");
INSERT INTO `wp_rg_form_view` VALUES("26573", "3", "2016-02-22 18:01:28", "202.46.53.126", "426");
INSERT INTO `wp_rg_form_view` VALUES("26574", "3", "2016-02-22 19:00:00", "202.46.54.90", "311");
INSERT INTO `wp_rg_form_view` VALUES("26575", "3", "2016-02-22 20:02:09", "202.46.51.169", "249");
INSERT INTO `wp_rg_form_view` VALUES("26576", "8", "2016-02-22 20:51:15", "202.46.56.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("26577", "3", "2016-02-22 21:05:58", "206.116.38.103", "115");
INSERT INTO `wp_rg_form_view` VALUES("26578", "3", "2016-02-22 22:02:07", "202.46.58.90", "638");
INSERT INTO `wp_rg_form_view` VALUES("26579", "8", "2016-02-22 22:27:43", "202.46.58.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("26580", "3", "2016-02-22 23:00:37", "202.46.56.201", "207");
INSERT INTO `wp_rg_form_view` VALUES("26581", "8", "2016-02-22 23:59:49", "202.46.49.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("26582", "3", "2016-02-23 00:03:29", "202.46.58.89", "284");
INSERT INTO `wp_rg_form_view` VALUES("26583", "8", "2016-02-23 00:58:20", "202.46.51.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("26584", "3", "2016-02-23 01:01:59", "202.46.58.51", "1124");
INSERT INTO `wp_rg_form_view` VALUES("26585", "9", "2016-02-23 01:52:04", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("26586", "7", "2016-02-23 01:52:24", "157.55.39.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("26587", "8", "2016-02-23 01:52:59", "207.46.13.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("26588", "3", "2016-02-23 02:02:59", "202.46.55.154", "283");
INSERT INTO `wp_rg_form_view` VALUES("26589", "3", "2016-02-23 03:00:04", "202.46.55.143", "437");
INSERT INTO `wp_rg_form_view` VALUES("26590", "2", "2016-02-23 03:08:01", "167.114.172.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("26591", "8", "2016-02-23 03:35:44", "202.46.51.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("26592", "3", "2016-02-23 04:00:42", "202.46.58.126", "312");
INSERT INTO `wp_rg_form_view` VALUES("26593", "3", "2016-02-23 05:01:20", "202.46.48.148", "306");
INSERT INTO `wp_rg_form_view` VALUES("26594", "3", "2016-02-23 06:01:59", "202.46.55.155", "437");
INSERT INTO `wp_rg_form_view` VALUES("26595", "1", "2016-02-23 06:25:56", "192.99.166.236", "4");
INSERT INTO `wp_rg_form_view` VALUES("26596", "3", "2016-02-23 07:02:37", "202.46.57.72", "335");
INSERT INTO `wp_rg_form_view` VALUES("26597", "2", "2016-02-23 07:07:02", "23.236.210.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("26598", "9", "2016-02-23 07:45:26", "202.46.48.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("26599", "8", "2016-02-23 07:52:34", "202.46.49.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("26600", "3", "2016-02-23 08:01:51", "70.70.24.219", "294");
INSERT INTO `wp_rg_form_view` VALUES("26601", "3", "2016-02-23 09:00:20", "202.46.51.138", "287");
INSERT INTO `wp_rg_form_view` VALUES("26602", "8", "2016-02-23 09:46:47", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26603", "3", "2016-02-23 10:03:32", "202.46.55.136", "271");
INSERT INTO `wp_rg_form_view` VALUES("26604", "9", "2016-02-23 10:54:27", "104.144.137.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("26605", "3", "2016-02-23 11:04:29", "104.156.231.254", "316");
INSERT INTO `wp_rg_form_view` VALUES("26606", "2", "2016-02-23 11:04:41", "104.156.231.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("26607", "8", "2016-02-23 11:06:00", "202.46.55.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("26608", "3", "2016-02-23 12:06:37", "202.46.56.116", "203");
INSERT INTO `wp_rg_form_view` VALUES("26609", "3", "2016-02-23 13:03:33", "46.105.60.176", "602");
INSERT INTO `wp_rg_form_view` VALUES("26610", "8", "2016-02-23 13:28:17", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26611", "2", "2016-02-23 13:57:59", "86.123.242.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("26612", "3", "2016-02-23 14:00:36", "202.46.55.15", "236");
INSERT INTO `wp_rg_form_view` VALUES("26613", "3", "2016-02-23 15:07:49", "202.46.54.163", "211");
INSERT INTO `wp_rg_form_view` VALUES("26614", "3", "2016-02-23 16:02:50", "202.46.51.185", "311");
INSERT INTO `wp_rg_form_view` VALUES("26615", "3", "2016-02-23 17:03:30", "202.46.52.64", "376");
INSERT INTO `wp_rg_form_view` VALUES("26616", "2", "2016-02-23 17:35:38", "54.145.132.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("26617", "3", "2016-02-23 18:00:33", "202.46.53.177", "806");
INSERT INTO `wp_rg_form_view` VALUES("26618", "1", "2016-02-23 18:11:28", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("26619", "8", "2016-02-23 18:18:58", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26620", "6", "2016-02-23 18:38:52", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26621", "2", "2016-02-23 18:45:30", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26622", "3", "2016-02-23 19:01:11", "202.46.58.17", "361");
INSERT INTO `wp_rg_form_view` VALUES("26623", "8", "2016-02-23 19:26:09", "202.46.54.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("26624", "3", "2016-02-23 20:01:50", "202.46.56.75", "336");
INSERT INTO `wp_rg_form_view` VALUES("26625", "3", "2016-02-23 21:02:28", "202.46.49.114", "478");
INSERT INTO `wp_rg_form_view` VALUES("26626", "1", "2016-02-23 21:08:45", "23.232.145.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("26627", "8", "2016-02-23 21:13:12", "202.46.52.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("26628", "3", "2016-02-23 22:02:00", "157.55.39.216", "378");
INSERT INTO `wp_rg_form_view` VALUES("26629", "2", "2016-02-23 22:32:45", "195.154.146.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("26630", "3", "2016-02-23 23:00:17", "202.46.55.15", "718");
INSERT INTO `wp_rg_form_view` VALUES("26631", "2", "2016-02-23 23:04:53", "70.188.114.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("26632", "8", "2016-02-23 23:11:02", "202.46.51.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("26633", "3", "2016-02-24 00:00:56", "202.46.54.168", "276");
INSERT INTO `wp_rg_form_view` VALUES("26634", "8", "2016-02-24 00:47:12", "202.46.57.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("26635", "3", "2016-02-24 01:00:19", "154.20.30.203", "436");
INSERT INTO `wp_rg_form_view` VALUES("26636", "8", "2016-02-24 01:52:49", "202.46.56.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("26637", "3", "2016-02-24 02:09:46", "202.46.49.69", "204");
INSERT INTO `wp_rg_form_view` VALUES("26638", "3", "2016-02-24 03:03:25", "202.46.51.118", "988");
INSERT INTO `wp_rg_form_view` VALUES("26639", "2", "2016-02-24 03:35:05", "185.107.26.131", "6");
INSERT INTO `wp_rg_form_view` VALUES("26640", "1", "2016-02-24 03:42:31", "24.68.38.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("26641", "8", "2016-02-24 03:48:19", "202.46.58.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("26642", "3", "2016-02-24 04:02:08", "202.46.50.123", "544");
INSERT INTO `wp_rg_form_view` VALUES("26643", "2", "2016-02-24 04:30:46", "207.46.13.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("26644", "3", "2016-02-24 05:00:15", "202.46.48.124", "551");
INSERT INTO `wp_rg_form_view` VALUES("26645", "8", "2016-02-24 05:03:42", "202.46.55.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("26646", "2", "2016-02-24 05:19:52", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26647", "3", "2016-02-24 06:02:27", "202.46.51.132", "598");
INSERT INTO `wp_rg_form_view` VALUES("26648", "2", "2016-02-24 06:14:17", "195.154.226.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("26649", "2", "2016-02-24 07:00:33", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26650", "3", "2016-02-24 07:00:33", "62.210.162.184", "311");
INSERT INTO `wp_rg_form_view` VALUES("26651", "8", "2016-02-24 07:39:03", "202.46.50.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("26652", "3", "2016-02-24 08:02:53", "202.46.48.19", "280");
INSERT INTO `wp_rg_form_view` VALUES("26653", "2", "2016-02-24 08:40:57", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("26654", "3", "2016-02-24 09:02:02", "202.46.54.158", "319");
INSERT INTO `wp_rg_form_view` VALUES("26655", "8", "2016-02-24 09:46:57", "202.46.52.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("26656", "3", "2016-02-24 10:00:45", "202.46.51.112", "554");
INSERT INTO `wp_rg_form_view` VALUES("26657", "2", "2016-02-24 10:03:44", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("26658", "3", "2016-02-24 11:02:56", "202.46.49.195", "302");
INSERT INTO `wp_rg_form_view` VALUES("26659", "3", "2016-02-24 12:01:17", "66.249.74.104", "760");
INSERT INTO `wp_rg_form_view` VALUES("26660", "5", "2016-02-24 12:12:12", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26661", "8", "2016-02-24 12:27:09", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26662", "2", "2016-02-24 12:29:58", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26663", "3", "2016-02-24 13:01:46", "46.119.117.85", "388");
INSERT INTO `wp_rg_form_view` VALUES("26664", "8", "2016-02-24 13:15:18", "202.46.50.18", "3");
INSERT INTO `wp_rg_form_view` VALUES("26665", "3", "2016-02-24 14:00:12", "202.46.49.62", "294");
INSERT INTO `wp_rg_form_view` VALUES("26666", "8", "2016-02-24 14:17:29", "202.46.52.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("26667", "3", "2016-02-24 15:01:41", "202.46.53.140", "263");
INSERT INTO `wp_rg_form_view` VALUES("26668", "3", "2016-02-24 16:00:24", "202.46.57.73", "248");
INSERT INTO `wp_rg_form_view` VALUES("26669", "3", "2016-02-24 17:02:35", "202.46.54.206", "387");
INSERT INTO `wp_rg_form_view` VALUES("26670", "1", "2016-02-24 17:25:54", "107.168.10.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("26671", "3", "2016-02-24 18:01:17", "202.46.56.207", "329");
INSERT INTO `wp_rg_form_view` VALUES("26672", "8", "2016-02-24 18:11:40", "202.46.51.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("26673", "3", "2016-02-24 19:00:02", "202.46.50.210", "679");
INSERT INTO `wp_rg_form_view` VALUES("26674", "2", "2016-02-24 19:33:12", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26675", "8", "2016-02-24 19:48:14", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("26676", "3", "2016-02-24 20:02:12", "202.46.54.71", "369");
INSERT INTO `wp_rg_form_view` VALUES("26677", "8", "2016-02-24 20:22:56", "202.46.58.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("26678", "3", "2016-02-24 21:00:53", "202.46.57.175", "360");
INSERT INTO `wp_rg_form_view` VALUES("26679", "3", "2016-02-24 22:00:35", "154.20.5.227", "531");
INSERT INTO `wp_rg_form_view` VALUES("26680", "1", "2016-02-24 22:18:10", "154.20.5.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("26681", "8", "2016-02-24 22:40:46", "202.46.48.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("26682", "3", "2016-02-24 23:00:59", "154.20.5.227", "1099");
INSERT INTO `wp_rg_form_view` VALUES("26683", "1", "2016-02-24 23:01:35", "154.20.5.227", "4");
INSERT INTO `wp_rg_form_view` VALUES("26684", "8", "2016-02-24 23:04:57", "157.55.39.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("26685", "7", "2016-02-24 23:05:24", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("26686", "3", "2016-02-25 00:00:00", "202.46.56.93", "366");
INSERT INTO `wp_rg_form_view` VALUES("26687", "8", "2016-02-25 00:06:53", "202.46.53.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("26688", "3", "2016-02-25 01:01:40", "62.210.162.184", "318");
INSERT INTO `wp_rg_form_view` VALUES("26689", "8", "2016-02-25 01:51:55", "202.46.54.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("26690", "3", "2016-02-25 02:05:41", "202.46.53.195", "419");
INSERT INTO `wp_rg_form_view` VALUES("26691", "1", "2016-02-25 02:48:20", "192.255.101.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("26692", "3", "2016-02-25 03:01:57", "202.46.56.96", "328");
INSERT INTO `wp_rg_form_view` VALUES("26693", "8", "2016-02-25 03:08:53", "202.46.55.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("26694", "7", "2016-02-25 03:39:51", "202.46.54.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("26695", "3", "2016-02-25 04:00:31", "202.46.58.166", "339");
INSERT INTO `wp_rg_form_view` VALUES("26696", "1", "2016-02-25 04:25:29", "89.42.237.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("26697", "3", "2016-02-25 05:02:32", "202.46.58.15", "581");
INSERT INTO `wp_rg_form_view` VALUES("26698", "8", "2016-02-25 05:19:45", "202.46.51.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("26699", "3", "2016-02-25 06:01:06", "202.46.49.91", "629");
INSERT INTO `wp_rg_form_view` VALUES("26700", "8", "2016-02-25 06:18:20", "202.46.54.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("26701", "2", "2016-02-25 06:43:41", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26702", "9", "2016-02-25 06:52:03", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26703", "3", "2016-02-25 07:00:49", "66.249.74.102", "516");
INSERT INTO `wp_rg_form_view` VALUES("26704", "1", "2016-02-25 07:20:43", "192.99.166.236", "4");
INSERT INTO `wp_rg_form_view` VALUES("26705", "2", "2016-02-25 07:34:07", "202.46.48.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("26706", "8", "2016-02-25 07:41:00", "202.46.48.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("26707", "3", "2016-02-25 08:01:40", "202.46.55.135", "281");
INSERT INTO `wp_rg_form_view` VALUES("26708", "3", "2016-02-25 09:00:58", "157.55.39.201", "382");
INSERT INTO `wp_rg_form_view` VALUES("26709", "8", "2016-02-25 09:08:21", "202.46.50.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("26710", "3", "2016-02-25 10:00:01", "202.46.51.83", "290");
INSERT INTO `wp_rg_form_view` VALUES("26711", "2", "2016-02-25 10:05:35", "107.161.91.235", "2");
INSERT INTO `wp_rg_form_view` VALUES("26712", "3", "2016-02-25 11:01:50", "202.46.48.149", "268");
INSERT INTO `wp_rg_form_view` VALUES("26713", "3", "2016-02-25 12:02:01", "202.46.48.89", "321");
INSERT INTO `wp_rg_form_view` VALUES("26714", "8", "2016-02-25 12:12:21", "202.46.51.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("26715", "7", "2016-02-25 12:12:45", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26716", "1", "2016-02-25 12:52:40", "107.150.72.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("26717", "9", "2016-02-25 13:03:06", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26718", "3", "2016-02-25 13:09:40", "202.46.56.16", "295");
INSERT INTO `wp_rg_form_view` VALUES("26719", "8", "2016-02-25 13:29:47", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26720", "3", "2016-02-25 14:02:25", "202.46.50.94", "234");
INSERT INTO `wp_rg_form_view` VALUES("26721", "8", "2016-02-25 14:36:52", "202.46.51.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("26722", "3", "2016-02-25 15:00:59", "202.46.54.144", "312");
INSERT INTO `wp_rg_form_view` VALUES("26723", "1", "2016-02-25 15:14:54", "107.153.2.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("26724", "8", "2016-02-25 15:32:00", "202.46.50.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("26725", "3", "2016-02-25 16:03:00", "202.46.54.12", "436");
INSERT INTO `wp_rg_form_view` VALUES("26726", "8", "2016-02-25 16:03:00", "202.46.54.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("26727", "2", "2016-02-25 16:15:10", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26728", "3", "2016-02-25 17:01:34", "202.46.52.106", "1336");
INSERT INTO `wp_rg_form_view` VALUES("26729", "1", "2016-02-25 17:03:36", "192.255.101.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("26730", "2", "2016-02-25 17:05:35", "212.73.139.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("26731", "8", "2016-02-25 17:10:53", "212.73.139.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("26732", "7", "2016-02-25 17:39:30", "202.46.56.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("26733", "3", "2016-02-25 18:00:07", "202.46.54.138", "301");
INSERT INTO `wp_rg_form_view` VALUES("26734", "8", "2016-02-25 18:17:21", "202.46.54.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("26735", "3", "2016-02-25 19:02:09", "202.46.48.191", "440");
INSERT INTO `wp_rg_form_view` VALUES("26736", "8", "2016-02-25 19:36:35", "202.46.54.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("26737", "3", "2016-02-25 20:00:42", "202.46.57.179", "364");
INSERT INTO `wp_rg_form_view` VALUES("26738", "8", "2016-02-25 20:00:42", "202.46.57.179", "4");
INSERT INTO `wp_rg_form_view` VALUES("26739", "3", "2016-02-25 21:00:30", "157.55.39.158", "488");
INSERT INTO `wp_rg_form_view` VALUES("26740", "2", "2016-02-25 21:48:46", "104.131.172.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("26741", "3", "2016-02-25 22:02:11", "202.46.52.149", "338");
INSERT INTO `wp_rg_form_view` VALUES("26742", "8", "2016-02-25 22:38:55", "202.46.54.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("26743", "3", "2016-02-25 23:03:01", "202.46.54.21", "382");
INSERT INTO `wp_rg_form_view` VALUES("26744", "8", "2016-02-25 23:16:48", "202.46.48.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("26745", "3", "2016-02-26 00:01:34", "202.46.53.159", "272");
INSERT INTO `wp_rg_form_view` VALUES("26746", "1", "2016-02-26 00:13:30", "109.86.16.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("26747", "8", "2016-02-26 00:33:11", "202.46.52.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("26748", "3", "2016-02-26 01:01:49", "202.46.58.57", "154");
INSERT INTO `wp_rg_form_view` VALUES("26749", "3", "2016-02-26 02:00:18", "202.46.55.179", "388");
INSERT INTO `wp_rg_form_view` VALUES("26750", "3", "2016-02-26 03:10:34", "202.46.57.75", "292");
INSERT INTO `wp_rg_form_view` VALUES("26751", "3", "2016-02-26 04:02:27", "202.46.51.131", "333");
INSERT INTO `wp_rg_form_view` VALUES("26752", "3", "2016-02-26 05:00:01", "202.46.54.71", "568");
INSERT INTO `wp_rg_form_view` VALUES("26753", "1", "2016-02-26 05:14:04", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26754", "8", "2016-02-26 05:25:43", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("26755", "3", "2016-02-26 06:11:28", "202.46.55.87", "264");
INSERT INTO `wp_rg_form_view` VALUES("26756", "8", "2016-02-26 06:11:30", "202.46.55.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("26757", "3", "2016-02-26 07:00:34", "202.46.51.25", "409");
INSERT INTO `wp_rg_form_view` VALUES("26758", "8", "2016-02-26 07:15:49", "202.46.56.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("26759", "2", "2016-02-26 07:50:36", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26760", "3", "2016-02-26 08:01:35", "202.46.49.78", "306");
INSERT INTO `wp_rg_form_view` VALUES("26761", "3", "2016-02-26 09:14:10", "157.55.39.158", "238");
INSERT INTO `wp_rg_form_view` VALUES("26762", "3", "2016-02-26 10:00:30", "202.46.51.154", "315");
INSERT INTO `wp_rg_form_view` VALUES("26763", "8", "2016-02-26 10:18:49", "202.46.57.203", "3");
INSERT INTO `wp_rg_form_view` VALUES("26764", "3", "2016-02-26 11:00:44", "202.46.57.185", "297");
INSERT INTO `wp_rg_form_view` VALUES("26765", "2", "2016-02-26 12:01:07", "185.107.24.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("26766", "3", "2016-02-26 12:01:07", "185.107.24.20", "385");
INSERT INTO `wp_rg_form_view` VALUES("26767", "8", "2016-02-26 12:12:51", "202.46.57.203", "2");
INSERT INTO `wp_rg_form_view` VALUES("26768", "1", "2016-02-26 12:23:11", "23.247.140.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("26769", "3", "2016-02-26 13:01:40", "202.46.51.81", "354");
INSERT INTO `wp_rg_form_view` VALUES("26770", "3", "2016-02-26 14:02:42", "202.46.52.206", "198");
INSERT INTO `wp_rg_form_view` VALUES("26771", "8", "2016-02-26 14:27:06", "202.46.49.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("26772", "3", "2016-02-26 15:15:59", "202.46.56.207", "230");
INSERT INTO `wp_rg_form_view` VALUES("26773", "3", "2016-02-26 16:01:45", "202.46.56.182", "709");
INSERT INTO `wp_rg_form_view` VALUES("26774", "1", "2016-02-26 16:10:24", "40.77.167.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("26775", "9", "2016-02-26 16:10:40", "40.77.167.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("26776", "3", "2016-02-26 17:02:47", "202.46.58.193", "583");
INSERT INTO `wp_rg_form_view` VALUES("26777", "1", "2016-02-26 17:08:12", "23.247.182.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("26778", "2", "2016-02-26 17:42:33", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26779", "8", "2016-02-26 17:51:30", "202.46.55.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("26780", "3", "2016-02-26 18:00:40", "202.46.54.134", "451");
INSERT INTO `wp_rg_form_view` VALUES("26781", "3", "2016-02-26 19:01:41", "202.46.54.95", "268");
INSERT INTO `wp_rg_form_view` VALUES("26782", "8", "2016-02-26 19:16:57", "202.46.55.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("26783", "3", "2016-02-26 20:04:44", "202.46.56.111", "314");
INSERT INTO `wp_rg_form_view` VALUES("26784", "8", "2016-02-26 20:38:19", "202.46.55.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("26785", "3", "2016-02-26 21:02:42", "202.46.57.183", "456");
INSERT INTO `wp_rg_form_view` VALUES("26786", "8", "2016-02-26 21:39:19", "202.46.49.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("26787", "1", "2016-02-26 21:40:55", "111.40.197.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("26788", "3", "2016-02-26 22:00:37", "66.249.74.102", "465");
INSERT INTO `wp_rg_form_view` VALUES("26789", "2", "2016-02-26 22:35:11", "45.32.130.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("26790", "3", "2016-02-26 23:00:55", "207.194.133.9", "368");
INSERT INTO `wp_rg_form_view` VALUES("26791", "1", "2016-02-26 23:29:58", "216.232.153.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("26792", "3", "2016-02-27 00:07:48", "68.180.229.161", "167");
INSERT INTO `wp_rg_form_view` VALUES("26793", "3", "2016-02-27 01:01:57", "202.46.55.66", "232");
INSERT INTO `wp_rg_form_view` VALUES("26794", "1", "2016-02-27 01:14:37", "103.47.210.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("26795", "8", "2016-02-27 01:44:50", "202.46.52.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("26796", "3", "2016-02-27 02:00:28", "23.106.216.205", "383");
INSERT INTO `wp_rg_form_view` VALUES("26797", "8", "2016-02-27 02:10:55", "202.46.52.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("26798", "1", "2016-02-27 02:59:38", "103.47.210.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("26799", "3", "2016-02-27 03:02:37", "202.46.58.54", "337");
INSERT INTO `wp_rg_form_view` VALUES("26800", "8", "2016-02-27 03:11:17", "202.46.49.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("26801", "3", "2016-02-27 04:00:32", "202.46.53.12", "393");
INSERT INTO `wp_rg_form_view` VALUES("26802", "3", "2016-02-27 05:00:01", "24.244.23.179", "482");
INSERT INTO `wp_rg_form_view` VALUES("26803", "8", "2016-02-27 05:12:56", "202.46.57.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("26804", "1", "2016-02-27 05:17:54", "155.94.150.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("26805", "3", "2016-02-27 06:04:28", "202.46.56.136", "343");
INSERT INTO `wp_rg_form_view` VALUES("26806", "8", "2016-02-27 06:21:51", "202.46.55.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("26807", "3", "2016-02-27 07:02:03", "202.46.50.153", "187");
INSERT INTO `wp_rg_form_view` VALUES("26808", "8", "2016-02-27 07:07:50", "202.46.53.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("26809", "3", "2016-02-27 08:00:29", "202.46.58.132", "285");
INSERT INTO `wp_rg_form_view` VALUES("26810", "8", "2016-02-27 08:20:43", "202.46.58.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("26811", "3", "2016-02-27 09:05:59", "202.46.58.18", "340");
INSERT INTO `wp_rg_form_view` VALUES("26812", "8", "2016-02-27 09:29:12", "202.46.51.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26813", "3", "2016-02-27 10:01:01", "202.46.52.170", "462");
INSERT INTO `wp_rg_form_view` VALUES("26814", "8", "2016-02-27 10:03:55", "202.46.52.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("26815", "3", "2016-02-27 11:01:50", "202.46.48.80", "394");
INSERT INTO `wp_rg_form_view` VALUES("26816", "3", "2016-02-27 12:02:42", "202.46.49.139", "212");
INSERT INTO `wp_rg_form_view` VALUES("26817", "1", "2016-02-27 12:14:33", "23.247.182.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("26818", "3", "2016-02-27 13:02:21", "202.46.48.136", "224");
INSERT INTO `wp_rg_form_view` VALUES("26819", "8", "2016-02-27 13:11:02", "202.46.53.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("26820", "3", "2016-02-27 14:02:43", "46.118.114.75", "173");
INSERT INTO `wp_rg_form_view` VALUES("26821", "3", "2016-02-27 15:04:23", "202.46.57.172", "247");
INSERT INTO `wp_rg_form_view` VALUES("26822", "3", "2016-02-27 16:00:43", "202.46.49.147", "306");
INSERT INTO `wp_rg_form_view` VALUES("26823", "3", "2016-02-27 17:01:32", "202.46.51.207", "336");
INSERT INTO `wp_rg_form_view` VALUES("26824", "8", "2016-02-27 17:42:05", "202.46.51.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("26825", "3", "2016-02-27 18:02:22", "202.46.51.33", "363");
INSERT INTO `wp_rg_form_view` VALUES("26826", "3", "2016-02-27 19:00:17", "202.46.57.75", "1270");
INSERT INTO `wp_rg_form_view` VALUES("26827", "1", "2016-02-27 19:54:39", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("26828", "3", "2016-02-27 20:00:03", "104.131.164.206", "4344");
INSERT INTO `wp_rg_form_view` VALUES("26829", "5", "2016-02-27 20:01:38", "104.131.164.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("26830", "6", "2016-02-27 20:10:08", "104.131.164.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("26831", "8", "2016-02-27 20:15:35", "202.46.51.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("26832", "9", "2016-02-27 20:17:09", "104.131.164.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("26833", "2", "2016-02-27 20:57:59", "104.131.164.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("26834", "3", "2016-02-27 21:00:08", "104.131.164.206", "1280");
INSERT INTO `wp_rg_form_view` VALUES("26835", "8", "2016-02-27 21:11:44", "104.131.164.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("26836", "3", "2016-02-27 22:02:44", "202.46.58.187", "337");
INSERT INTO `wp_rg_form_view` VALUES("26837", "8", "2016-02-27 22:14:21", "202.46.49.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("26838", "3", "2016-02-27 23:00:40", "202.46.52.163", "592");
INSERT INTO `wp_rg_form_view` VALUES("26839", "2", "2016-02-27 23:06:19", "87.19.181.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("26840", "8", "2016-02-27 23:41:13", "202.46.58.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("26841", "3", "2016-02-28 00:01:29", "202.46.51.156", "292");
INSERT INTO `wp_rg_form_view` VALUES("26842", "8", "2016-02-28 00:56:31", "202.46.51.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("26843", "3", "2016-02-28 01:13:41", "202.46.57.178", "254");
INSERT INTO `wp_rg_form_view` VALUES("26844", "8", "2016-02-28 01:31:30", "202.46.48.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("26845", "3", "2016-02-28 02:01:15", "202.46.49.191", "399");
INSERT INTO `wp_rg_form_view` VALUES("26846", "8", "2016-02-28 02:02:02", "157.55.39.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("26847", "3", "2016-02-28 03:00:46", "202.46.56.96", "341");
INSERT INTO `wp_rg_form_view` VALUES("26848", "9", "2016-02-28 03:09:17", "24.67.172.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("26849", "3", "2016-02-28 04:00:16", "202.46.50.17", "326");
INSERT INTO `wp_rg_form_view` VALUES("26850", "9", "2016-02-28 04:49:03", "66.249.74.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("26851", "3", "2016-02-28 05:00:08", "202.46.57.166", "447");
INSERT INTO `wp_rg_form_view` VALUES("26852", "8", "2016-02-28 05:53:41", "202.46.48.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("26853", "3", "2016-02-28 06:02:36", "202.46.53.57", "393");
INSERT INTO `wp_rg_form_view` VALUES("26854", "3", "2016-02-28 07:02:07", "202.46.56.110", "339");
INSERT INTO `wp_rg_form_view` VALUES("26855", "3", "2016-02-28 08:01:37", "202.46.51.157", "356");
INSERT INTO `wp_rg_form_view` VALUES("26856", "3", "2016-02-28 09:01:08", "202.46.56.16", "390");
INSERT INTO `wp_rg_form_view` VALUES("26857", "3", "2016-02-28 10:00:38", "202.46.52.206", "440");
INSERT INTO `wp_rg_form_view` VALUES("26858", "8", "2016-02-28 10:36:20", "202.46.55.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("26859", "3", "2016-02-28 11:00:08", "202.46.54.101", "417");
INSERT INTO `wp_rg_form_view` VALUES("26860", "8", "2016-02-28 11:06:05", "202.46.51.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("26861", "3", "2016-02-28 12:02:37", "202.46.53.175", "275");
INSERT INTO `wp_rg_form_view` VALUES("26862", "3", "2016-02-28 13:03:50", "202.46.49.192", "348");
INSERT INTO `wp_rg_form_view` VALUES("26863", "8", "2016-02-28 13:06:50", "202.46.48.29", "3");
INSERT INTO `wp_rg_form_view` VALUES("26864", "3", "2016-02-28 14:01:35", "202.46.49.195", "218");
INSERT INTO `wp_rg_form_view` VALUES("26865", "3", "2016-02-28 15:01:41", "202.46.50.126", "320");
INSERT INTO `wp_rg_form_view` VALUES("26866", "8", "2016-02-28 15:43:55", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26867", "3", "2016-02-28 16:00:23", "157.55.39.96", "378");
INSERT INTO `wp_rg_form_view` VALUES("26868", "8", "2016-02-28 16:01:12", "202.46.58.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("26869", "3", "2016-02-28 17:00:42", "202.46.54.185", "455");
INSERT INTO `wp_rg_form_view` VALUES("26870", "8", "2016-02-28 17:30:27", "202.46.55.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("26871", "3", "2016-02-28 18:00:12", "202.46.48.15", "275");
INSERT INTO `wp_rg_form_view` VALUES("26872", "8", "2016-02-28 18:09:07", "202.46.56.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("26873", "3", "2016-02-28 19:02:41", "202.46.55.124", "1222");
INSERT INTO `wp_rg_form_view` VALUES("26874", "8", "2016-02-28 19:02:41", "202.46.55.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("26875", "9", "2016-02-28 19:52:59", "207.46.13.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("26876", "7", "2016-02-28 19:53:47", "157.55.39.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("26877", "3", "2016-02-28 20:02:11", "202.46.55.38", "388");
INSERT INTO `wp_rg_form_view` VALUES("26878", "8", "2016-02-28 20:25:59", "202.46.54.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("26879", "3", "2016-02-28 21:01:28", "66.249.74.106", "386");
INSERT INTO `wp_rg_form_view` VALUES("26880", "8", "2016-02-28 21:16:34", "202.46.48.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("26881", "3", "2016-02-28 22:01:12", "202.46.53.150", "1286");
INSERT INTO `wp_rg_form_view` VALUES("26882", "2", "2016-02-28 22:28:53", "149.91.83.211", "3");
INSERT INTO `wp_rg_form_view` VALUES("26883", "8", "2016-02-28 22:33:55", "202.46.57.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("26884", "3", "2016-02-28 23:00:00", "117.240.187.35", "653");
INSERT INTO `wp_rg_form_view` VALUES("26885", "2", "2016-02-28 23:00:56", "117.240.187.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("26886", "8", "2016-02-28 23:36:25", "202.46.55.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("26887", "3", "2016-02-29 00:00:12", "202.46.50.159", "592");
INSERT INTO `wp_rg_form_view` VALUES("26888", "1", "2016-02-29 00:29:57", "202.46.48.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("26889", "8", "2016-02-29 00:44:50", "202.46.50.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("26890", "3", "2016-02-29 01:00:24", "64.251.23.112", "379");
INSERT INTO `wp_rg_form_view` VALUES("26891", "8", "2016-02-29 01:08:39", "202.46.58.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("26892", "3", "2016-02-29 02:01:22", "68.180.229.161", "331");
INSERT INTO `wp_rg_form_view` VALUES("26893", "8", "2016-02-29 02:58:54", "202.46.57.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("26894", "3", "2016-02-29 03:01:53", "202.46.48.120", "230");
INSERT INTO `wp_rg_form_view` VALUES("26895", "8", "2016-02-29 03:01:53", "202.46.48.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("26896", "3", "2016-02-29 04:01:38", "202.46.56.181", "260");
INSERT INTO `wp_rg_form_view` VALUES("26897", "3", "2016-02-29 05:01:21", "202.46.52.60", "324");
INSERT INTO `wp_rg_form_view` VALUES("26898", "8", "2016-02-29 05:16:47", "68.180.229.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("26899", "3", "2016-02-29 06:00:38", "209.52.88.148", "417");
INSERT INTO `wp_rg_form_view` VALUES("26900", "1", "2016-02-29 06:44:59", "23.229.103.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("26901", "3", "2016-02-29 07:00:20", "202.46.57.126", "395");
INSERT INTO `wp_rg_form_view` VALUES("26902", "3", "2016-02-29 08:17:45", "202.46.49.207", "264");
INSERT INTO `wp_rg_form_view` VALUES("26903", "3", "2016-02-29 09:02:23", "202.46.56.177", "301");
INSERT INTO `wp_rg_form_view` VALUES("26904", "8", "2016-02-29 09:02:23", "202.46.56.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("26905", "3", "2016-02-29 10:00:49", "202.46.54.199", "392");
INSERT INTO `wp_rg_form_view` VALUES("26906", "8", "2016-02-29 10:15:43", "202.46.52.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("26907", "3", "2016-02-29 11:00:20", "202.46.50.91", "346");
INSERT INTO `wp_rg_form_view` VALUES("26908", "6", "2016-02-29 11:32:38", "51.255.65.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("26909", "3", "2016-02-29 12:00:23", "202.46.55.170", "219");
INSERT INTO `wp_rg_form_view` VALUES("26910", "3", "2016-02-29 13:00:20", "202.46.48.204", "391");
INSERT INTO `wp_rg_form_view` VALUES("26911", "1", "2016-02-29 13:13:27", "209.0.51.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("26912", "8", "2016-02-29 13:56:52", "202.46.50.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("26913", "3", "2016-02-29 14:02:50", "202.46.50.182", "260");
INSERT INTO `wp_rg_form_view` VALUES("26914", "8", "2016-02-29 14:17:42", "202.46.55.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("26915", "3", "2016-02-29 15:01:04", "66.249.74.106", "303");
INSERT INTO `wp_rg_form_view` VALUES("26916", "8", "2016-02-29 15:14:14", "202.46.55.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("26917", "3", "2016-02-29 16:01:50", "202.46.57.19", "286");
INSERT INTO `wp_rg_form_view` VALUES("26918", "3", "2016-02-29 17:01:20", "202.46.58.19", "345");
INSERT INTO `wp_rg_form_view` VALUES("26919", "8", "2016-02-29 17:25:09", "202.46.52.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("26920", "1", "2016-02-29 17:53:02", "167.114.197.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("26921", "3", "2016-02-29 18:00:50", "202.46.48.80", "298");
INSERT INTO `wp_rg_form_view` VALUES("26922", "8", "2016-02-29 18:06:48", "202.46.55.134", "4");
INSERT INTO `wp_rg_form_view` VALUES("26923", "3", "2016-02-29 19:00:22", "202.46.54.147", "381");
INSERT INTO `wp_rg_form_view` VALUES("26924", "8", "2016-02-29 19:36:03", "202.46.57.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("26925", "3", "2016-02-29 20:02:49", "202.46.55.195", "323");
INSERT INTO `wp_rg_form_view` VALUES("26926", "8", "2016-02-29 20:44:29", "202.46.57.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("26927", "3", "2016-02-29 21:02:21", "202.46.49.197", "377");
INSERT INTO `wp_rg_form_view` VALUES("26928", "8", "2016-02-29 21:26:08", "202.46.49.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("26929", "3", "2016-02-29 22:01:50", "202.46.52.42", "328");
INSERT INTO `wp_rg_form_view` VALUES("26930", "8", "2016-02-29 22:04:50", "202.46.55.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("26931", "3", "2016-02-29 23:01:21", "202.46.55.150", "296");
INSERT INTO `wp_rg_form_view` VALUES("26932", "8", "2016-02-29 23:54:54", "202.46.51.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("26933", "3", "2016-03-01 00:03:49", "202.46.54.32", "634");
INSERT INTO `wp_rg_form_view` VALUES("26934", "1", "2016-03-01 00:32:31", "46.105.86.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("26935", "2", "2016-03-01 00:57:43", "81.171.107.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("26936", "3", "2016-03-01 01:00:21", "202.46.50.185", "331");
INSERT INTO `wp_rg_form_view` VALUES("26937", "8", "2016-03-01 01:12:15", "202.46.49.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("26938", "2", "2016-03-01 01:53:56", "46.246.48.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("26939", "3", "2016-03-01 02:00:00", "207.46.13.91", "327");
INSERT INTO `wp_rg_form_view` VALUES("26940", "8", "2016-03-01 02:56:50", "202.46.50.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("26941", "3", "2016-03-01 03:05:33", "66.249.74.102", "342");
INSERT INTO `wp_rg_form_view` VALUES("26942", "3", "2016-03-01 04:02:14", "62.210.162.184", "261");
INSERT INTO `wp_rg_form_view` VALUES("26943", "3", "2016-03-01 05:02:11", "202.46.58.84", "367");
INSERT INTO `wp_rg_form_view` VALUES("26944", "8", "2016-03-01 05:02:11", "202.46.58.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("26945", "3", "2016-03-01 06:01:41", "202.46.54.137", "325");
INSERT INTO `wp_rg_form_view` VALUES("26946", "8", "2016-03-01 06:04:40", "202.46.57.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("26947", "3", "2016-03-01 07:01:15", "202.46.55.178", "350");
INSERT INTO `wp_rg_form_view` VALUES("26948", "8", "2016-03-01 07:01:15", "202.46.55.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("26949", "2", "2016-03-01 07:34:29", "192.240.106.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("26950", "1", "2016-03-01 07:48:48", "91.121.141.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("26951", "3", "2016-03-01 08:00:43", "202.46.49.69", "325");
INSERT INTO `wp_rg_form_view` VALUES("26952", "3", "2016-03-01 09:00:13", "202.46.51.206", "476");
INSERT INTO `wp_rg_form_view` VALUES("26953", "3", "2016-03-01 10:02:41", "202.46.52.66", "316");
INSERT INTO `wp_rg_form_view` VALUES("26954", "3", "2016-03-01 11:02:11", "202.46.53.210", "350");
INSERT INTO `wp_rg_form_view` VALUES("26955", "3", "2016-03-01 12:01:46", "202.46.50.163", "629");
INSERT INTO `wp_rg_form_view` VALUES("26956", "2", "2016-03-01 12:21:02", "79.114.248.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("26957", "3", "2016-03-01 13:01:18", "202.46.54.186", "212");
INSERT INTO `wp_rg_form_view` VALUES("26958", "3", "2016-03-01 14:06:32", "202.46.51.114", "465");
INSERT INTO `wp_rg_form_view` VALUES("26959", "8", "2016-03-01 14:38:00", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26960", "3", "2016-03-01 15:00:40", "202.46.48.198", "633");
INSERT INTO `wp_rg_form_view` VALUES("26961", "1", "2016-03-01 15:13:24", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26962", "2", "2016-03-01 15:16:35", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("26963", "5", "2016-03-01 15:31:20", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("26964", "6", "2016-03-01 15:46:18", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("26965", "3", "2016-03-01 16:00:11", "202.46.52.74", "510");
INSERT INTO `wp_rg_form_view` VALUES("26966", "1", "2016-03-01 16:40:38", "172.106.1.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("26967", "3", "2016-03-01 17:02:39", "202.46.55.182", "493");
INSERT INTO `wp_rg_form_view` VALUES("26968", "3", "2016-03-01 18:01:07", "24.108.86.97", "371");
INSERT INTO `wp_rg_form_view` VALUES("26969", "8", "2016-03-01 18:26:22", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26970", "3", "2016-03-01 19:01:40", "202.46.58.99", "496");
INSERT INTO `wp_rg_form_view` VALUES("26971", "3", "2016-03-01 20:01:10", "202.46.51.182", "493");
INSERT INTO `wp_rg_form_view` VALUES("26972", "1", "2016-03-01 20:39:26", "23.94.57.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("26973", "3", "2016-03-01 21:00:41", "202.46.53.165", "378");
INSERT INTO `wp_rg_form_view` VALUES("26974", "3", "2016-03-01 22:02:37", "202.46.50.152", "345");
INSERT INTO `wp_rg_form_view` VALUES("26975", "3", "2016-03-01 23:01:13", "202.46.49.153", "302");
INSERT INTO `wp_rg_form_view` VALUES("26976", "3", "2016-03-02 00:02:26", "66.249.74.102", "404");
INSERT INTO `wp_rg_form_view` VALUES("26977", "7", "2016-03-02 00:43:31", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26978", "3", "2016-03-02 01:02:54", "66.249.74.48", "353");
INSERT INTO `wp_rg_form_view` VALUES("26979", "3", "2016-03-02 02:00:25", "72.143.229.194", "328");
INSERT INTO `wp_rg_form_view` VALUES("26980", "3", "2016-03-02 03:00:14", "217.69.133.231", "381");
INSERT INTO `wp_rg_form_view` VALUES("26981", "3", "2016-03-02 04:00:25", "202.46.49.97", "521");
INSERT INTO `wp_rg_form_view` VALUES("26982", "3", "2016-03-02 05:00:21", "40.77.167.15", "466");
INSERT INTO `wp_rg_form_view` VALUES("26983", "3", "2016-03-02 06:02:23", "202.46.57.15", "393");
INSERT INTO `wp_rg_form_view` VALUES("26984", "3", "2016-03-02 07:01:54", "202.46.51.88", "412");
INSERT INTO `wp_rg_form_view` VALUES("26985", "9", "2016-03-02 07:15:51", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26986", "6", "2016-03-02 07:18:25", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("26987", "8", "2016-03-02 07:21:30", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("26988", "3", "2016-03-02 08:01:24", "202.46.53.190", "355");
INSERT INTO `wp_rg_form_view` VALUES("26989", "3", "2016-03-02 09:04:46", "202.46.56.191", "249");
INSERT INTO `wp_rg_form_view` VALUES("26990", "3", "2016-03-02 10:01:49", "202.46.54.17", "393");
INSERT INTO `wp_rg_form_view` VALUES("26991", "3", "2016-03-02 11:00:02", "202.46.52.175", "400");
INSERT INTO `wp_rg_form_view` VALUES("26992", "1", "2016-03-02 11:02:23", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("26993", "3", "2016-03-02 12:00:50", "202.46.57.14", "338");
INSERT INTO `wp_rg_form_view` VALUES("26994", "3", "2016-03-02 13:08:43", "202.46.49.108", "330");
INSERT INTO `wp_rg_form_view` VALUES("26995", "3", "2016-03-02 14:01:36", "202.46.57.210", "158");
INSERT INTO `wp_rg_form_view` VALUES("26996", "3", "2016-03-02 15:11:16", "202.46.56.13", "86");
INSERT INTO `wp_rg_form_view` VALUES("26997", "3", "2016-03-02 16:11:04", "202.46.54.30", "259");
INSERT INTO `wp_rg_form_view` VALUES("26998", "3", "2016-03-02 17:00:03", "51.255.65.2", "504");
INSERT INTO `wp_rg_form_view` VALUES("26999", "2", "2016-03-02 17:09:55", "91.108.178.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("27000", "3", "2016-03-02 18:02:26", "202.46.53.192", "359");
INSERT INTO `wp_rg_form_view` VALUES("27001", "3", "2016-03-02 19:00:37", "202.46.48.126", "358");
INSERT INTO `wp_rg_form_view` VALUES("27002", "1", "2016-03-02 19:28:25", "46.105.86.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("27003", "3", "2016-03-02 20:00:20", "202.46.52.63", "365");
INSERT INTO `wp_rg_form_view` VALUES("27004", "3", "2016-03-02 21:00:57", "199.21.99.202", "367");
INSERT INTO `wp_rg_form_view` VALUES("27005", "3", "2016-03-02 22:02:01", "202.46.58.155", "322");
INSERT INTO `wp_rg_form_view` VALUES("27006", "3", "2016-03-02 23:00:10", "202.46.55.16", "400");
INSERT INTO `wp_rg_form_view` VALUES("27007", "3", "2016-03-03 00:00:59", "202.46.52.208", "318");
INSERT INTO `wp_rg_form_view` VALUES("27008", "3", "2016-03-03 01:00:59", "202.46.54.102", "311");
INSERT INTO `wp_rg_form_view` VALUES("27009", "3", "2016-03-03 02:03:11", "202.46.56.179", "244");
INSERT INTO `wp_rg_form_view` VALUES("27010", "9", "2016-03-03 02:09:28", "51.255.65.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("27011", "3", "2016-03-03 03:02:27", "202.46.54.104", "273");
INSERT INTO `wp_rg_form_view` VALUES("27012", "3", "2016-03-03 04:13:15", "202.46.58.131", "350");
INSERT INTO `wp_rg_form_view` VALUES("27013", "3", "2016-03-03 05:01:39", "202.46.54.190", "852");
INSERT INTO `wp_rg_form_view` VALUES("27014", "1", "2016-03-03 05:15:28", "207.46.13.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("27015", "9", "2016-03-03 05:15:32", "207.46.13.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("27016", "3", "2016-03-03 06:02:58", "202.46.48.81", "312");
INSERT INTO `wp_rg_form_view` VALUES("27017", "3", "2016-03-03 07:01:02", "202.46.54.196", "334");
INSERT INTO `wp_rg_form_view` VALUES("27018", "3", "2016-03-03 08:04:09", "66.249.74.104", "456");
INSERT INTO `wp_rg_form_view` VALUES("27019", "3", "2016-03-03 09:00:56", "202.46.51.118", "324");
INSERT INTO `wp_rg_form_view` VALUES("27020", "3", "2016-03-03 10:02:48", "202.46.57.205", "670");
INSERT INTO `wp_rg_form_view` VALUES("27021", "2", "2016-03-03 10:31:49", "145.132.1.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("27022", "3", "2016-03-03 11:03:29", "202.46.54.138", "290");
INSERT INTO `wp_rg_form_view` VALUES("27023", "3", "2016-03-03 12:03:25", "202.46.53.157", "369");
INSERT INTO `wp_rg_form_view` VALUES("27024", "1", "2016-03-03 12:40:23", "192.240.106.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("27025", "3", "2016-03-03 13:01:17", "202.46.49.207", "223");
INSERT INTO `wp_rg_form_view` VALUES("27026", "3", "2016-03-03 14:00:25", "202.46.57.182", "334");
INSERT INTO `wp_rg_form_view` VALUES("27027", "3", "2016-03-03 15:03:21", "202.46.49.131", "189");
INSERT INTO `wp_rg_form_view` VALUES("27028", "3", "2016-03-03 16:05:13", "202.46.55.15", "280");
INSERT INTO `wp_rg_form_view` VALUES("27029", "2", "2016-03-03 16:17:59", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27030", "3", "2016-03-03 17:04:53", "202.46.51.172", "275");
INSERT INTO `wp_rg_form_view` VALUES("27031", "3", "2016-03-03 18:01:56", "202.46.58.183", "485");
INSERT INTO `wp_rg_form_view` VALUES("27032", "3", "2016-03-03 19:00:53", "202.46.54.141", "405");
INSERT INTO `wp_rg_form_view` VALUES("27033", "3", "2016-03-03 20:00:33", "184.66.227.219", "467");
INSERT INTO `wp_rg_form_view` VALUES("27034", "3", "2016-03-03 21:01:11", "202.46.56.205", "440");
INSERT INTO `wp_rg_form_view` VALUES("27035", "3", "2016-03-03 22:00:09", "202.46.53.205", "420");
INSERT INTO `wp_rg_form_view` VALUES("27036", "3", "2016-03-03 23:02:21", "202.46.52.171", "254");
INSERT INTO `wp_rg_form_view` VALUES("27037", "3", "2016-03-04 00:00:24", "202.46.51.154", "481");
INSERT INTO `wp_rg_form_view` VALUES("27038", "3", "2016-03-04 01:03:19", "207.46.13.112", "345");
INSERT INTO `wp_rg_form_view` VALUES("27039", "1", "2016-03-04 01:48:01", "188.240.141.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("27040", "3", "2016-03-04 02:04:08", "202.46.57.21", "314");
INSERT INTO `wp_rg_form_view` VALUES("27041", "3", "2016-03-04 03:00:29", "202.46.49.62", "362");
INSERT INTO `wp_rg_form_view` VALUES("27042", "3", "2016-03-04 04:09:34", "202.46.57.74", "265");
INSERT INTO `wp_rg_form_view` VALUES("27043", "3", "2016-03-04 05:00:32", "202.46.52.70", "273");
INSERT INTO `wp_rg_form_view` VALUES("27044", "3", "2016-03-04 06:00:40", "202.46.56.96", "400");
INSERT INTO `wp_rg_form_view` VALUES("27045", "2", "2016-03-04 06:29:18", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("27046", "3", "2016-03-04 07:01:47", "202.46.49.60", "291");
INSERT INTO `wp_rg_form_view` VALUES("27047", "3", "2016-03-04 08:02:09", "202.46.53.193", "265");
INSERT INTO `wp_rg_form_view` VALUES("27048", "3", "2016-03-04 09:04:24", "202.46.54.18", "366");
INSERT INTO `wp_rg_form_view` VALUES("27049", "3", "2016-03-04 10:00:00", "202.46.52.16", "380");
INSERT INTO `wp_rg_form_view` VALUES("27050", "3", "2016-03-04 11:01:18", "202.46.54.133", "342");
INSERT INTO `wp_rg_form_view` VALUES("27051", "3", "2016-03-04 12:01:48", "202.46.58.73", "271");
INSERT INTO `wp_rg_form_view` VALUES("27052", "3", "2016-03-04 13:01:59", "202.46.51.198", "323");
INSERT INTO `wp_rg_form_view` VALUES("27053", "3", "2016-03-04 14:02:14", "202.46.55.138", "205");
INSERT INTO `wp_rg_form_view` VALUES("27054", "3", "2016-03-04 15:03:03", "202.46.53.161", "388");
INSERT INTO `wp_rg_form_view` VALUES("27055", "2", "2016-03-04 15:29:42", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("27056", "3", "2016-03-04 16:02:01", "202.46.53.66", "528");
INSERT INTO `wp_rg_form_view` VALUES("27057", "2", "2016-03-04 16:31:44", "104.236.93.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("27058", "3", "2016-03-04 17:00:59", "202.46.58.72", "308");
INSERT INTO `wp_rg_form_view` VALUES("27059", "3", "2016-03-04 18:02:19", "202.46.58.20", "399");
INSERT INTO `wp_rg_form_view` VALUES("27060", "3", "2016-03-04 19:01:17", "202.46.53.45", "365");
INSERT INTO `wp_rg_form_view` VALUES("27061", "9", "2016-03-04 19:13:49", "207.46.13.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("27062", "3", "2016-03-04 20:00:16", "202.46.50.99", "426");
INSERT INTO `wp_rg_form_view` VALUES("27063", "3", "2016-03-04 21:01:37", "202.46.51.27", "377");
INSERT INTO `wp_rg_form_view` VALUES("27064", "3", "2016-03-04 22:00:23", "68.180.229.161", "402");
INSERT INTO `wp_rg_form_view` VALUES("27065", "9", "2016-03-04 23:01:28", "151.237.178.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("27066", "3", "2016-03-04 23:01:29", "151.237.178.55", "381");
INSERT INTO `wp_rg_form_view` VALUES("27067", "3", "2016-03-05 00:00:53", "202.46.57.24", "409");
INSERT INTO `wp_rg_form_view` VALUES("27068", "3", "2016-03-05 01:02:13", "202.46.50.134", "289");
INSERT INTO `wp_rg_form_view` VALUES("27069", "1", "2016-03-05 01:23:28", "202.46.58.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("27070", "3", "2016-03-05 02:04:16", "202.46.57.163", "424");
INSERT INTO `wp_rg_form_view` VALUES("27071", "3", "2016-03-05 03:00:53", "202.46.52.18", "362");
INSERT INTO `wp_rg_form_view` VALUES("27072", "3", "2016-03-05 04:01:04", "202.46.48.17", "446");
INSERT INTO `wp_rg_form_view` VALUES("27073", "3", "2016-03-05 05:00:03", "202.46.50.150", "405");
INSERT INTO `wp_rg_form_view` VALUES("27074", "3", "2016-03-05 06:05:57", "199.21.99.202", "343");
INSERT INTO `wp_rg_form_view` VALUES("27075", "3", "2016-03-05 07:00:44", "157.55.39.104", "452");
INSERT INTO `wp_rg_form_view` VALUES("27076", "1", "2016-03-05 07:40:00", "192.161.54.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("27077", "3", "2016-03-05 08:02:11", "202.46.51.201", "536");
INSERT INTO `wp_rg_form_view` VALUES("27078", "3", "2016-03-05 09:01:09", "202.46.51.199", "630");
INSERT INTO `wp_rg_form_view` VALUES("27079", "8", "2016-03-05 09:25:49", "66.249.74.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("27080", "3", "2016-03-05 10:00:14", "202.46.58.83", "521");
INSERT INTO `wp_rg_form_view` VALUES("27081", "1", "2016-03-05 10:02:59", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("27082", "2", "2016-03-05 10:07:18", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("27083", "3", "2016-03-05 11:00:27", "202.46.49.198", "455");
INSERT INTO `wp_rg_form_view` VALUES("27084", "3", "2016-03-05 12:01:34", "46.118.120.31", "434");
INSERT INTO `wp_rg_form_view` VALUES("27085", "1", "2016-03-05 12:54:11", "46.246.43.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("27086", "3", "2016-03-05 13:00:45", "202.46.56.33", "423");
INSERT INTO `wp_rg_form_view` VALUES("27087", "3", "2016-03-05 14:02:07", "202.46.54.15", "363");
INSERT INTO `wp_rg_form_view` VALUES("27088", "3", "2016-03-05 15:02:48", "202.46.52.204", "409");
INSERT INTO `wp_rg_form_view` VALUES("27089", "3", "2016-03-05 16:01:46", "202.46.51.172", "365");
INSERT INTO `wp_rg_form_view` VALUES("27090", "3", "2016-03-05 17:00:44", "202.46.58.120", "469");
INSERT INTO `wp_rg_form_view` VALUES("27091", "3", "2016-03-05 18:02:04", "202.46.57.70", "372");
INSERT INTO `wp_rg_form_view` VALUES("27092", "3", "2016-03-05 19:01:02", "202.46.49.60", "428");
INSERT INTO `wp_rg_form_view` VALUES("27093", "3", "2016-03-05 20:00:00", "202.46.51.100", "365");
INSERT INTO `wp_rg_form_view` VALUES("27094", "3", "2016-03-05 21:01:19", "202.46.48.27", "427");
INSERT INTO `wp_rg_form_view` VALUES("27095", "3", "2016-03-05 22:00:18", "202.46.50.185", "592");
INSERT INTO `wp_rg_form_view` VALUES("27096", "2", "2016-03-05 22:02:56", "199.204.185.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("27097", "1", "2016-03-05 22:13:30", "91.108.73.241", "2");
INSERT INTO `wp_rg_form_view` VALUES("27098", "3", "2016-03-05 23:01:37", "202.46.56.63", "649");
INSERT INTO `wp_rg_form_view` VALUES("27099", "2", "2016-03-05 23:18:03", "79.114.248.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("27100", "3", "2016-03-06 00:00:56", "202.46.57.124", "251");
INSERT INTO `wp_rg_form_view` VALUES("27101", "3", "2016-03-06 01:00:04", "62.210.162.184", "324");
INSERT INTO `wp_rg_form_view` VALUES("27102", "3", "2016-03-06 02:02:05", "202.46.52.73", "482");
INSERT INTO `wp_rg_form_view` VALUES("27103", "5", "2016-03-06 02:02:41", "192.240.106.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("27104", "3", "2016-03-06 03:02:41", "202.46.48.16", "355");
INSERT INTO `wp_rg_form_view` VALUES("27105", "3", "2016-03-06 04:03:20", "202.46.52.110", "325");
INSERT INTO `wp_rg_form_view` VALUES("27106", "3", "2016-03-06 05:00:30", "202.46.50.210", "714");
INSERT INTO `wp_rg_form_view` VALUES("27107", "3", "2016-03-06 06:01:04", "202.46.51.183", "437");
INSERT INTO `wp_rg_form_view` VALUES("27108", "5", "2016-03-06 06:33:38", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("27109", "3", "2016-03-06 07:00:02", "202.46.49.206", "1095");
INSERT INTO `wp_rg_form_view` VALUES("27110", "8", "2016-03-06 07:23:29", "157.55.39.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("27111", "7", "2016-03-06 07:24:31", "40.77.167.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("27112", "3", "2016-03-06 08:00:37", "202.46.52.178", "425");
INSERT INTO `wp_rg_form_view` VALUES("27113", "3", "2016-03-06 09:01:13", "202.46.52.176", "372");
INSERT INTO `wp_rg_form_view` VALUES("27114", "3", "2016-03-06 10:00:48", "202.46.48.147", "508");
INSERT INTO `wp_rg_form_view` VALUES("27115", "3", "2016-03-06 11:01:07", "68.180.229.161", "304");
INSERT INTO `wp_rg_form_view` VALUES("27116", "3", "2016-03-06 12:00:31", "202.46.55.154", "216");
INSERT INTO `wp_rg_form_view` VALUES("27117", "3", "2016-03-06 13:01:29", "202.46.53.54", "336");
INSERT INTO `wp_rg_form_view` VALUES("27118", "3", "2016-03-06 14:00:53", "202.46.49.198", "374");
INSERT INTO `wp_rg_form_view` VALUES("27119", "3", "2016-03-06 15:00:54", "202.46.53.205", "387");
INSERT INTO `wp_rg_form_view` VALUES("27120", "1", "2016-03-06 15:40:42", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27121", "3", "2016-03-06 16:01:29", "202.46.57.18", "351");
INSERT INTO `wp_rg_form_view` VALUES("27122", "6", "2016-03-06 16:33:58", "202.46.53.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("27123", "3", "2016-03-06 17:01:27", "178.137.86.150", "470");
INSERT INTO `wp_rg_form_view` VALUES("27124", "3", "2016-03-06 17:01:27", "178.137.86.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("27125", "3", "2016-03-06 18:00:29", "202.46.56.181", "485");
INSERT INTO `wp_rg_form_view` VALUES("27126", "3", "2016-03-06 19:01:05", "202.46.51.19", "358");
INSERT INTO `wp_rg_form_view` VALUES("27127", "3", "2016-03-06 20:01:39", "202.46.54.101", "418");
INSERT INTO `wp_rg_form_view` VALUES("27128", "3", "2016-03-06 21:02:15", "202.46.54.192", "384");
INSERT INTO `wp_rg_form_view` VALUES("27129", "3", "2016-03-06 22:00:40", "202.46.51.21", "462");
INSERT INTO `wp_rg_form_view` VALUES("27130", "3", "2016-03-06 23:01:16", "202.46.57.203", "462");
INSERT INTO `wp_rg_form_view` VALUES("27131", "3", "2016-03-07 00:01:50", "202.46.50.93", "419");
INSERT INTO `wp_rg_form_view` VALUES("27132", "2", "2016-03-07 00:57:27", "40.77.167.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("27133", "3", "2016-03-07 01:00:26", "207.46.13.11", "469");
INSERT INTO `wp_rg_form_view` VALUES("27134", "3", "2016-03-07 02:01:45", "91.108.178.252", "499");
INSERT INTO `wp_rg_form_view` VALUES("27135", "3", "2016-03-07 03:03:45", "202.46.51.115", "509");
INSERT INTO `wp_rg_form_view` VALUES("27136", "3", "2016-03-07 04:03:26", "202.46.55.182", "488");
INSERT INTO `wp_rg_form_view` VALUES("27137", "3", "2016-03-07 05:01:41", "202.46.52.107", "519");
INSERT INTO `wp_rg_form_view` VALUES("27138", "3", "2016-03-07 06:00:12", "202.46.57.125", "490");
INSERT INTO `wp_rg_form_view` VALUES("27139", "3", "2016-03-07 07:00:42", "202.46.53.175", "375");
INSERT INTO `wp_rg_form_view` VALUES("27140", "3", "2016-03-07 08:02:45", "202.46.53.110", "356");
INSERT INTO `wp_rg_form_view` VALUES("27141", "3", "2016-03-07 09:01:42", "202.46.56.209", "634");
INSERT INTO `wp_rg_form_view` VALUES("27142", "2", "2016-03-07 09:32:05", "40.77.167.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("27143", "3", "2016-03-07 10:03:26", "202.46.56.199", "420");
INSERT INTO `wp_rg_form_view` VALUES("27144", "3", "2016-03-07 11:02:55", "202.46.58.159", "378");
INSERT INTO `wp_rg_form_view` VALUES("27145", "3", "2016-03-07 12:05:15", "202.46.56.197", "246");
INSERT INTO `wp_rg_form_view` VALUES("27146", "3", "2016-03-07 13:00:33", "202.46.50.75", "710");
INSERT INTO `wp_rg_form_view` VALUES("27147", "3", "2016-03-07 14:01:17", "202.46.58.123", "190");
INSERT INTO `wp_rg_form_view` VALUES("27148", "3", "2016-03-07 15:02:22", "157.55.39.222", "283");
INSERT INTO `wp_rg_form_view` VALUES("27149", "3", "2016-03-07 16:00:30", "66.249.74.102", "420");
INSERT INTO `wp_rg_form_view` VALUES("27150", "3", "2016-03-07 17:00:15", "202.46.52.155", "344");
INSERT INTO `wp_rg_form_view` VALUES("27151", "3", "2016-03-07 18:00:44", "202.46.49.97", "333");
INSERT INTO `wp_rg_form_view` VALUES("27152", "3", "2016-03-07 19:00:43", "207.6.162.99", "562");
INSERT INTO `wp_rg_form_view` VALUES("27153", "3", "2016-03-07 20:01:42", "202.46.56.33", "347");
INSERT INTO `wp_rg_form_view` VALUES("27154", "3", "2016-03-07 21:00:13", "202.46.57.89", "281");
INSERT INTO `wp_rg_form_view` VALUES("27155", "3", "2016-03-07 22:00:36", "202.46.49.149", "330");
INSERT INTO `wp_rg_form_view` VALUES("27156", "3", "2016-03-07 23:00:48", "202.46.58.189", "312");
INSERT INTO `wp_rg_form_view` VALUES("27157", "3", "2016-03-08 00:01:22", "202.46.57.177", "479");
INSERT INTO `wp_rg_form_view` VALUES("27158", "3", "2016-03-08 01:01:51", "202.46.58.151", "688");
INSERT INTO `wp_rg_form_view` VALUES("27159", "2", "2016-03-08 01:39:03", "174.127.133.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("27160", "3", "2016-03-08 02:01:05", "202.46.49.63", "598");
INSERT INTO `wp_rg_form_view` VALUES("27161", "3", "2016-03-08 03:00:57", "202.46.50.14", "560");
INSERT INTO `wp_rg_form_view` VALUES("27162", "6", "2016-03-08 03:39:08", "80.82.221.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("27163", "3", "2016-03-08 04:01:25", "202.46.54.101", "381");
INSERT INTO `wp_rg_form_view` VALUES("27164", "1", "2016-03-08 04:25:00", "104.227.56.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("27165", "3", "2016-03-08 05:01:39", "202.46.51.28", "532");
INSERT INTO `wp_rg_form_view` VALUES("27166", "3", "2016-03-08 06:00:54", "202.46.51.102", "496");
INSERT INTO `wp_rg_form_view` VALUES("27167", "3", "2016-03-08 07:00:24", "202.46.57.206", "462");
INSERT INTO `wp_rg_form_view` VALUES("27168", "3", "2016-03-08 08:00:52", "202.46.48.142", "492");
INSERT INTO `wp_rg_form_view` VALUES("27169", "3", "2016-03-08 09:01:21", "202.46.54.100", "339");
INSERT INTO `wp_rg_form_view` VALUES("27170", "3", "2016-03-08 10:00:34", "202.46.57.16", "386");
INSERT INTO `wp_rg_form_view` VALUES("27171", "3", "2016-03-08 11:00:18", "202.46.51.108", "453");
INSERT INTO `wp_rg_form_view` VALUES("27172", "1", "2016-03-08 11:34:30", "96.44.178.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("27173", "3", "2016-03-08 12:00:36", "202.46.49.116", "437");
INSERT INTO `wp_rg_form_view` VALUES("27174", "3", "2016-03-08 13:01:00", "202.46.51.185", "342");
INSERT INTO `wp_rg_form_view` VALUES("27175", "3", "2016-03-08 14:00:10", "202.46.48.125", "329");
INSERT INTO `wp_rg_form_view` VALUES("27176", "3", "2016-03-08 15:00:47", "202.46.58.86", "265");
INSERT INTO `wp_rg_form_view` VALUES("27177", "3", "2016-03-08 16:00:22", "178.137.86.150", "4420");
INSERT INTO `wp_rg_form_view` VALUES("27178", "1", "2016-03-08 16:09:25", "104.236.201.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("27179", "5", "2016-03-08 16:15:54", "104.236.201.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("27180", "6", "2016-03-08 16:23:31", "104.236.201.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("27181", "9", "2016-03-08 16:30:40", "104.236.201.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("27182", "3", "2016-03-08 17:00:48", "104.236.201.44", "2296");
INSERT INTO `wp_rg_form_view` VALUES("27183", "2", "2016-03-08 17:12:56", "104.236.201.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("27184", "8", "2016-03-08 17:26:34", "104.236.201.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("27185", "3", "2016-03-08 18:00:20", "202.46.54.97", "380");
INSERT INTO `wp_rg_form_view` VALUES("27186", "3", "2016-03-08 19:00:49", "202.46.52.62", "379");
INSERT INTO `wp_rg_form_view` VALUES("27187", "3", "2016-03-08 20:01:18", "202.46.53.49", "430");
INSERT INTO `wp_rg_form_view` VALUES("27188", "3", "2016-03-08 21:01:46", "202.46.55.64", "703");
INSERT INTO `wp_rg_form_view` VALUES("27189", "2", "2016-03-08 21:47:09", "37.134.124.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("27190", "3", "2016-03-08 22:00:18", "202.46.57.170", "403");
INSERT INTO `wp_rg_form_view` VALUES("27191", "3", "2016-03-08 23:00:54", "202.46.52.141", "418");
INSERT INTO `wp_rg_form_view` VALUES("27192", "8", "2016-03-08 23:38:45", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27193", "3", "2016-03-09 00:01:16", "202.46.52.178", "460");
INSERT INTO `wp_rg_form_view` VALUES("27194", "3", "2016-03-09 01:01:45", "202.46.57.16", "304");
INSERT INTO `wp_rg_form_view` VALUES("27195", "1", "2016-03-09 01:50:36", "96.44.178.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("27196", "3", "2016-03-09 02:00:27", "202.46.57.20", "350");
INSERT INTO `wp_rg_form_view` VALUES("27197", "3", "2016-03-09 03:01:08", "202.46.55.126", "1010");
INSERT INTO `wp_rg_form_view` VALUES("27198", "9", "2016-03-09 03:20:39", "207.46.13.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("27199", "1", "2016-03-09 03:21:07", "40.77.167.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("27200", "8", "2016-03-09 03:48:39", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("27201", "3", "2016-03-09 04:01:19", "202.46.54.192", "388");
INSERT INTO `wp_rg_form_view` VALUES("27202", "3", "2016-03-09 05:08:14", "202.46.56.114", "320");
INSERT INTO `wp_rg_form_view` VALUES("27203", "3", "2016-03-09 06:05:07", "66.249.74.106", "579");
INSERT INTO `wp_rg_form_view` VALUES("27204", "2", "2016-03-09 06:07:06", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("27205", "3", "2016-03-09 07:00:18", "202.46.54.91", "650");
INSERT INTO `wp_rg_form_view` VALUES("27206", "3", "2016-03-09 08:00:22", "202.46.54.109", "495");
INSERT INTO `wp_rg_form_view` VALUES("27207", "1", "2016-03-09 08:59:05", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("27208", "3", "2016-03-09 09:00:37", "66.249.74.106", "586");
INSERT INTO `wp_rg_form_view` VALUES("27209", "3", "2016-03-09 10:00:35", "202.46.53.91", "469");
INSERT INTO `wp_rg_form_view` VALUES("27210", "3", "2016-03-09 11:00:11", "202.46.57.20", "399");
INSERT INTO `wp_rg_form_view` VALUES("27211", "8", "2016-03-09 11:07:26", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27212", "3", "2016-03-09 12:00:53", "202.46.50.126", "422");
INSERT INTO `wp_rg_form_view` VALUES("27213", "6", "2016-03-09 12:47:47", "66.249.74.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("27214", "3", "2016-03-09 13:02:10", "199.21.99.202", "420");
INSERT INTO `wp_rg_form_view` VALUES("27215", "1", "2016-03-09 13:56:44", "96.44.178.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("27216", "3", "2016-03-09 14:03:51", "202.46.54.190", "612");
INSERT INTO `wp_rg_form_view` VALUES("27217", "3", "2016-03-09 15:00:55", "202.46.58.18", "452");
INSERT INTO `wp_rg_form_view` VALUES("27218", "3", "2016-03-09 16:01:03", "202.46.55.66", "518");
INSERT INTO `wp_rg_form_view` VALUES("27219", "2", "2016-03-09 16:21:05", "96.50.18.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("27220", "1", "2016-03-09 16:56:40", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27221", "3", "2016-03-09 17:01:04", "202.46.52.158", "471");
INSERT INTO `wp_rg_form_view` VALUES("27222", "3", "2016-03-09 18:01:09", "202.46.57.177", "403");
INSERT INTO `wp_rg_form_view` VALUES("27223", "3", "2016-03-09 19:01:14", "202.46.56.181", "605");
INSERT INTO `wp_rg_form_view` VALUES("27224", "3", "2016-03-09 20:01:19", "202.46.49.152", "503");
INSERT INTO `wp_rg_form_view` VALUES("27225", "3", "2016-03-09 21:01:23", "202.46.51.80", "464");
INSERT INTO `wp_rg_form_view` VALUES("27226", "3", "2016-03-09 22:01:29", "202.46.49.140", "435");
INSERT INTO `wp_rg_form_view` VALUES("27227", "3", "2016-03-09 23:01:34", "202.46.52.70", "476");
INSERT INTO `wp_rg_form_view` VALUES("27228", "3", "2016-03-10 00:00:03", "202.46.58.188", "727");
INSERT INTO `wp_rg_form_view` VALUES("27229", "2", "2016-03-10 00:18:40", "184.69.163.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("27230", "3", "2016-03-10 01:00:08", "202.46.54.137", "481");
INSERT INTO `wp_rg_form_view` VALUES("27231", "3", "2016-03-10 02:01:17", "202.46.57.29", "505");
INSERT INTO `wp_rg_form_view` VALUES("27232", "3", "2016-03-10 03:01:23", "202.46.57.166", "645");
INSERT INTO `wp_rg_form_view` VALUES("27233", "3", "2016-03-10 04:01:18", "202.46.57.121", "593");
INSERT INTO `wp_rg_form_view` VALUES("27234", "1", "2016-03-10 04:06:39", "23.108.176.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("27235", "3", "2016-03-10 05:05:17", "202.46.53.14", "498");
INSERT INTO `wp_rg_form_view` VALUES("27236", "3", "2016-03-10 06:00:46", "202.46.48.95", "468");
INSERT INTO `wp_rg_form_view` VALUES("27237", "3", "2016-03-10 07:00:05", "202.46.54.101", "601");
INSERT INTO `wp_rg_form_view` VALUES("27238", "3", "2016-03-10 08:00:09", "202.46.49.72", "639");
INSERT INTO `wp_rg_form_view` VALUES("27239", "3", "2016-03-10 09:00:14", "202.46.49.130", "482");
INSERT INTO `wp_rg_form_view` VALUES("27240", "3", "2016-03-10 10:01:17", "202.46.49.69", "639");
INSERT INTO `wp_rg_form_view` VALUES("27241", "3", "2016-03-10 11:01:23", "202.46.57.22", "726");
INSERT INTO `wp_rg_form_view` VALUES("27242", "6", "2016-03-10 11:03:09", "167.114.235.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("27243", "9", "2016-03-10 11:03:11", "167.114.237.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("27244", "3", "2016-03-10 12:01:27", "202.46.57.206", "560");
INSERT INTO `wp_rg_form_view` VALUES("27245", "3", "2016-03-10 13:01:21", "202.46.58.186", "504");
INSERT INTO `wp_rg_form_view` VALUES("27246", "3", "2016-03-10 14:00:55", "202.46.51.104", "377");
INSERT INTO `wp_rg_form_view` VALUES("27247", "3", "2016-03-10 15:01:04", "202.46.53.124", "396");
INSERT INTO `wp_rg_form_view` VALUES("27248", "3", "2016-03-10 16:00:38", "202.46.56.180", "551");
INSERT INTO `wp_rg_form_view` VALUES("27249", "3", "2016-03-10 17:00:45", "202.46.55.130", "472");
INSERT INTO `wp_rg_form_view` VALUES("27250", "2", "2016-03-10 17:24:39", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27251", "3", "2016-03-10 18:00:48", "202.46.49.207", "606");
INSERT INTO `wp_rg_form_view` VALUES("27252", "3", "2016-03-10 19:00:53", "202.46.55.90", "444");
INSERT INTO `wp_rg_form_view` VALUES("27253", "3", "2016-03-10 20:00:58", "202.46.49.61", "493");
INSERT INTO `wp_rg_form_view` VALUES("27254", "3", "2016-03-10 21:00:00", "202.46.55.89", "508");
INSERT INTO `wp_rg_form_view` VALUES("27255", "3", "2016-03-10 22:01:17", "202.46.55.68", "559");
INSERT INTO `wp_rg_form_view` VALUES("27256", "3", "2016-03-10 23:01:28", "202.46.50.182", "522");
INSERT INTO `wp_rg_form_view` VALUES("27257", "3", "2016-03-11 00:01:04", "202.46.54.29", "557");
INSERT INTO `wp_rg_form_view` VALUES("27258", "3", "2016-03-11 01:00:51", "202.46.50.135", "639");
INSERT INTO `wp_rg_form_view` VALUES("27259", "3", "2016-03-11 02:00:37", "202.46.50.80", "502");
INSERT INTO `wp_rg_form_view` VALUES("27260", "3", "2016-03-11 03:01:53", "202.46.54.196", "673");
INSERT INTO `wp_rg_form_view` VALUES("27261", "1", "2016-03-11 03:28:19", "155.94.129.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("27262", "3", "2016-03-11 04:00:08", "202.46.51.200", "714");
INSERT INTO `wp_rg_form_view` VALUES("27263", "2", "2016-03-11 04:53:01", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("27264", "3", "2016-03-11 05:04:09", "202.46.53.154", "351");
INSERT INTO `wp_rg_form_view` VALUES("27265", "3", "2016-03-11 06:01:25", "202.46.52.43", "445");
INSERT INTO `wp_rg_form_view` VALUES("27266", "3", "2016-03-11 07:00:09", "202.46.53.117", "599");
INSERT INTO `wp_rg_form_view` VALUES("27267", "3", "2016-03-11 08:00:22", "202.46.53.150", "631");
INSERT INTO `wp_rg_form_view` VALUES("27268", "3", "2016-03-11 09:00:08", "202.46.52.178", "683");
INSERT INTO `wp_rg_form_view` VALUES("27269", "6", "2016-03-11 09:49:11", "148.251.54.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("27270", "3", "2016-03-11 10:01:25", "202.46.51.181", "789");
INSERT INTO `wp_rg_form_view` VALUES("27271", "1", "2016-03-11 10:24:11", "46.105.86.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("27272", "9", "2016-03-11 10:25:04", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("27273", "3", "2016-03-11 11:01:11", "202.46.58.17", "647");
INSERT INTO `wp_rg_form_view` VALUES("27274", "1", "2016-03-11 11:47:43", "62.210.84.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("27275", "3", "2016-03-11 12:01:24", "202.46.49.192", "688");
INSERT INTO `wp_rg_form_view` VALUES("27276", "1", "2016-03-11 12:56:40", "23.95.105.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("27277", "3", "2016-03-11 13:00:03", "202.46.51.104", "637");
INSERT INTO `wp_rg_form_view` VALUES("27278", "1", "2016-03-11 13:10:29", "23.94.185.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("27279", "3", "2016-03-11 14:00:49", "202.46.53.57", "378");
INSERT INTO `wp_rg_form_view` VALUES("27280", "3", "2016-03-11 15:02:03", "202.46.54.25", "204");
INSERT INTO `wp_rg_form_view` VALUES("27281", "3", "2016-03-11 16:00:46", "202.46.58.158", "449");
INSERT INTO `wp_rg_form_view` VALUES("27282", "3", "2016-03-11 17:00:32", "202.46.54.192", "528");
INSERT INTO `wp_rg_form_view` VALUES("27283", "3", "2016-03-11 18:00:19", "202.46.55.86", "516");
INSERT INTO `wp_rg_form_view` VALUES("27284", "7", "2016-03-11 18:09:08", "68.180.229.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27285", "3", "2016-03-11 19:00:05", "202.46.55.148", "547");
INSERT INTO `wp_rg_form_view` VALUES("27286", "3", "2016-03-11 20:01:22", "202.46.57.165", "573");
INSERT INTO `wp_rg_form_view` VALUES("27287", "3", "2016-03-11 21:00:45", "199.21.99.202", "896");
INSERT INTO `wp_rg_form_view` VALUES("27288", "3", "2016-03-11 22:01:01", "202.46.51.39", "686");
INSERT INTO `wp_rg_form_view` VALUES("27289", "1", "2016-03-11 22:35:29", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("27290", "3", "2016-03-11 23:02:37", "66.249.74.104", "445");
INSERT INTO `wp_rg_form_view` VALUES("27291", "8", "2016-03-12 00:00:09", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("27292", "3", "2016-03-12 00:00:09", "66.249.74.106", "451");
INSERT INTO `wp_rg_form_view` VALUES("27293", "3", "2016-03-12 01:00:25", "202.46.57.71", "636");
INSERT INTO `wp_rg_form_view` VALUES("27294", "3", "2016-03-12 02:00:57", "202.46.52.170", "397");
INSERT INTO `wp_rg_form_view` VALUES("27295", "3", "2016-03-12 03:00:21", "202.46.53.16", "422");
INSERT INTO `wp_rg_form_view` VALUES("27296", "3", "2016-03-12 04:00:28", "202.46.51.209", "591");
INSERT INTO `wp_rg_form_view` VALUES("27297", "3", "2016-03-12 05:00:49", "202.46.56.184", "717");
INSERT INTO `wp_rg_form_view` VALUES("27298", "3", "2016-03-12 06:00:14", "202.46.52.15", "398");
INSERT INTO `wp_rg_form_view` VALUES("27299", "3", "2016-03-12 07:00:00", "202.46.51.107", "664");
INSERT INTO `wp_rg_form_view` VALUES("27300", "1", "2016-03-12 07:37:36", "23.108.94.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("27301", "3", "2016-03-12 08:00:18", "202.46.55.84", "579");
INSERT INTO `wp_rg_form_view` VALUES("27302", "3", "2016-03-12 09:00:13", "202.46.58.188", "614");
INSERT INTO `wp_rg_form_view` VALUES("27303", "1", "2016-03-12 09:07:19", "189.219.221.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("27304", "8", "2016-03-12 09:52:58", "68.180.230.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("27305", "3", "2016-03-12 10:00:34", "202.46.57.74", "613");
INSERT INTO `wp_rg_form_view` VALUES("27306", "3", "2016-03-12 11:00:02", "202.46.54.205", "812");
INSERT INTO `wp_rg_form_view` VALUES("27307", "3", "2016-03-12 12:02:56", "199.21.99.202", "752");
INSERT INTO `wp_rg_form_view` VALUES("27308", "3", "2016-03-12 13:00:38", "202.46.50.98", "496");
INSERT INTO `wp_rg_form_view` VALUES("27309", "3", "2016-03-12 14:01:09", "202.46.51.104", "652");
INSERT INTO `wp_rg_form_view` VALUES("27310", "2", "2016-03-12 14:16:00", "104.236.196.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("27311", "3", "2016-03-12 15:09:58", "202.46.58.92", "407");
INSERT INTO `wp_rg_form_view` VALUES("27312", "2", "2016-03-12 15:37:13", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("27313", "3", "2016-03-12 16:00:29", "202.46.51.20", "896");
INSERT INTO `wp_rg_form_view` VALUES("27314", "1", "2016-03-12 16:19:06", "107.161.84.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("27315", "3", "2016-03-12 17:00:31", "202.46.48.97", "701");
INSERT INTO `wp_rg_form_view` VALUES("27316", "3", "2016-03-12 18:00:34", "202.46.54.190", "783");
INSERT INTO `wp_rg_form_view` VALUES("27317", "1", "2016-03-12 18:05:51", "107.161.84.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("27318", "3", "2016-03-12 19:01:42", "202.46.57.122", "644");
INSERT INTO `wp_rg_form_view` VALUES("27319", "1", "2016-03-12 19:50:56", "107.161.84.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("27320", "3", "2016-03-12 20:00:39", "202.46.54.70", "700");
INSERT INTO `wp_rg_form_view` VALUES("27321", "3", "2016-03-12 21:00:42", "202.46.55.17", "978");
INSERT INTO `wp_rg_form_view` VALUES("27322", "9", "2016-03-12 21:11:47", "68.180.231.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("27323", "1", "2016-03-12 21:32:41", "128.199.186.235", "3");
INSERT INTO `wp_rg_form_view` VALUES("27324", "3", "2016-03-12 22:00:45", "202.46.52.11", "706");
INSERT INTO `wp_rg_form_view` VALUES("27325", "9", "2016-03-12 22:02:59", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("27326", "3", "2016-03-12 23:00:48", "202.46.58.17", "709");
INSERT INTO `wp_rg_form_view` VALUES("27327", "3", "2016-03-13 00:00:51", "202.46.49.202", "789");
INSERT INTO `wp_rg_form_view` VALUES("27328", "3", "2016-03-13 01:00:53", "202.46.51.157", "843");
INSERT INTO `wp_rg_form_view` VALUES("27329", "3", "2016-03-13 02:00:59", "202.46.56.203", "738");
INSERT INTO `wp_rg_form_view` VALUES("27330", "2", "2016-03-13 02:53:34", "93.104.208.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("27331", "3", "2016-03-13 03:01:06", "202.46.55.139", "744");
INSERT INTO `wp_rg_form_view` VALUES("27332", "3", "2016-03-13 04:00:30", "202.46.58.135", "830");
INSERT INTO `wp_rg_form_view` VALUES("27333", "3", "2016-03-13 05:00:22", "202.46.49.94", "689");
INSERT INTO `wp_rg_form_view` VALUES("27334", "3", "2016-03-13 06:00:21", "202.46.58.26", "741");
INSERT INTO `wp_rg_form_view` VALUES("27335", "3", "2016-03-13 07:00:22", "202.46.57.71", "870");
INSERT INTO `wp_rg_form_view` VALUES("27336", "3", "2016-03-13 08:04:14", "202.46.58.57", "880");
INSERT INTO `wp_rg_form_view` VALUES("27337", "3", "2016-03-13 09:00:15", "202.46.50.162", "788");
INSERT INTO `wp_rg_form_view` VALUES("27338", "3", "2016-03-13 10:00:05", "202.46.49.147", "887");
INSERT INTO `wp_rg_form_view` VALUES("27339", "3", "2016-03-13 11:00:22", "202.46.51.108", "990");
INSERT INTO `wp_rg_form_view` VALUES("27340", "2", "2016-03-13 11:08:02", "52.90.202.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("27341", "3", "2016-03-13 12:00:28", "202.46.51.37", "803");
INSERT INTO `wp_rg_form_view` VALUES("27342", "3", "2016-03-13 13:00:34", "202.46.58.81", "614");
INSERT INTO `wp_rg_form_view` VALUES("27343", "3", "2016-03-13 14:00:03", "202.46.53.65", "520");
INSERT INTO `wp_rg_form_view` VALUES("27344", "3", "2016-03-13 15:00:30", "202.46.51.118", "670");
INSERT INTO `wp_rg_form_view` VALUES("27345", "3", "2016-03-13 16:00:32", "202.46.53.115", "622");
INSERT INTO `wp_rg_form_view` VALUES("27346", "3", "2016-03-13 17:00:39", "202.46.48.18", "638");
INSERT INTO `wp_rg_form_view` VALUES("27347", "3", "2016-03-13 18:00:45", "202.46.58.164", "622");
INSERT INTO `wp_rg_form_view` VALUES("27348", "3", "2016-03-13 19:00:51", "202.46.51.200", "637");
INSERT INTO `wp_rg_form_view` VALUES("27349", "3", "2016-03-13 20:00:58", "202.46.53.124", "714");
INSERT INTO `wp_rg_form_view` VALUES("27350", "3", "2016-03-13 21:01:03", "202.46.51.164", "675");
INSERT INTO `wp_rg_form_view` VALUES("27351", "9", "2016-03-13 21:25:39", "207.46.13.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("27352", "3", "2016-03-13 22:00:03", "202.46.58.210", "637");
INSERT INTO `wp_rg_form_view` VALUES("27353", "3", "2016-03-13 23:00:09", "202.46.48.132", "809");
INSERT INTO `wp_rg_form_view` VALUES("27354", "3", "2016-03-14 00:00:16", "202.46.52.161", "754");
INSERT INTO `wp_rg_form_view` VALUES("27355", "3", "2016-03-14 01:00:21", "202.46.56.69", "798");
INSERT INTO `wp_rg_form_view` VALUES("27356", "3", "2016-03-14 02:00:28", "202.46.56.63", "863");
INSERT INTO `wp_rg_form_view` VALUES("27357", "1", "2016-03-14 02:43:22", "184.66.6.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("27358", "3", "2016-03-14 03:00:33", "202.46.52.153", "820");
INSERT INTO `wp_rg_form_view` VALUES("27359", "9", "2016-03-14 03:30:22", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("27360", "3", "2016-03-14 04:00:48", "202.46.55.123", "821");
INSERT INTO `wp_rg_form_view` VALUES("27361", "3", "2016-03-14 05:00:16", "202.46.58.87", "964");
INSERT INTO `wp_rg_form_view` VALUES("27362", "1", "2016-03-14 05:19:16", "46.105.86.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("27363", "3", "2016-03-14 06:00:23", "202.46.55.147", "869");
INSERT INTO `wp_rg_form_view` VALUES("27364", "3", "2016-03-14 07:00:28", "202.46.51.200", "1160");
INSERT INTO `wp_rg_form_view` VALUES("27365", "3", "2016-03-14 08:00:35", "202.46.55.131", "753");
INSERT INTO `wp_rg_form_view` VALUES("27366", "3", "2016-03-14 09:00:33", "202.46.55.11", "791");
INSERT INTO `wp_rg_form_view` VALUES("27367", "3", "2016-03-14 10:00:57", "202.46.51.33", "966");
INSERT INTO `wp_rg_form_view` VALUES("27368", "1", "2016-03-14 10:03:35", "157.55.39.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("27369", "3", "2016-03-14 11:01:02", "202.46.48.19", "850");
INSERT INTO `wp_rg_form_view` VALUES("27370", "3", "2016-03-14 12:00:02", "202.46.49.201", "545");
INSERT INTO `wp_rg_form_view` VALUES("27371", "3", "2016-03-14 13:00:03", "202.46.56.142", "441");
INSERT INTO `wp_rg_form_view` VALUES("27372", "3", "2016-03-14 14:00:14", "75.154.236.242", "536");
INSERT INTO `wp_rg_form_view` VALUES("27373", "3", "2016-03-14 15:00:03", "202.46.55.138", "637");
INSERT INTO `wp_rg_form_view` VALUES("27374", "1", "2016-03-14 15:48:27", "195.154.250.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("27375", "3", "2016-03-14 16:00:10", "202.46.58.206", "558");
INSERT INTO `wp_rg_form_view` VALUES("27376", "3", "2016-03-14 17:00:03", "202.46.57.89", "686");
INSERT INTO `wp_rg_form_view` VALUES("27377", "3", "2016-03-14 18:00:09", "202.46.48.200", "714");
INSERT INTO `wp_rg_form_view` VALUES("27378", "9", "2016-03-14 18:53:06", "157.55.39.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("27379", "3", "2016-03-14 19:00:16", "202.46.56.196", "771");
INSERT INTO `wp_rg_form_view` VALUES("27380", "1", "2016-03-14 19:37:55", "23.108.176.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("27381", "3", "2016-03-14 20:00:22", "202.46.49.123", "674");
INSERT INTO `wp_rg_form_view` VALUES("27382", "3", "2016-03-14 21:00:28", "202.46.48.125", "720");
INSERT INTO `wp_rg_form_view` VALUES("27383", "3", "2016-03-14 22:00:33", "202.46.48.133", "909");
INSERT INTO `wp_rg_form_view` VALUES("27384", "2", "2016-03-14 22:54:22", "157.55.39.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("27385", "3", "2016-03-14 23:00:40", "202.46.56.186", "797");
INSERT INTO `wp_rg_form_view` VALUES("27386", "2", "2016-03-14 23:13:14", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("27387", "3", "2016-03-15 00:00:46", "202.46.58.125", "766");
INSERT INTO `wp_rg_form_view` VALUES("27388", "3", "2016-03-15 01:00:56", "202.46.50.162", "820");
INSERT INTO `wp_rg_form_view` VALUES("27389", "3", "2016-03-15 02:01:01", "202.46.51.202", "954");
INSERT INTO `wp_rg_form_view` VALUES("27390", "2", "2016-03-15 02:28:56", "223.240.113.166", "2");
INSERT INTO `wp_rg_form_view` VALUES("27391", "3", "2016-03-15 03:00:03", "202.46.53.146", "751");
INSERT INTO `wp_rg_form_view` VALUES("27392", "3", "2016-03-15 04:00:54", "202.46.55.134", "927");
INSERT INTO `wp_rg_form_view` VALUES("27393", "3", "2016-03-15 05:00:32", "202.46.55.144", "991");
INSERT INTO `wp_rg_form_view` VALUES("27394", "2", "2016-03-15 05:55:10", "192.99.150.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("27395", "3", "2016-03-15 06:00:13", "202.46.51.27", "842");
INSERT INTO `wp_rg_form_view` VALUES("27396", "3", "2016-03-15 07:00:34", "202.46.57.175", "1018");
INSERT INTO `wp_rg_form_view` VALUES("27397", "1", "2016-03-15 07:08:10", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("27398", "3", "2016-03-15 08:03:35", "202.46.48.135", "774");
INSERT INTO `wp_rg_form_view` VALUES("27399", "3", "2016-03-15 09:04:48", "202.46.51.88", "802");
INSERT INTO `wp_rg_form_view` VALUES("27400", "3", "2016-03-15 10:05:41", "202.46.51.181", "857");
INSERT INTO `wp_rg_form_view` VALUES("27401", "3", "2016-03-15 11:01:53", "202.46.50.153", "811");
INSERT INTO `wp_rg_form_view` VALUES("27402", "3", "2016-03-15 12:00:08", "202.46.54.188", "833");
INSERT INTO `wp_rg_form_view` VALUES("27403", "3", "2016-03-15 13:00:04", "202.46.51.36", "383");
INSERT INTO `wp_rg_form_view` VALUES("27404", "3", "2016-03-15 14:00:22", "202.46.52.175", "482");
INSERT INTO `wp_rg_form_view` VALUES("27405", "3", "2016-03-15 15:01:25", "202.46.49.131", "497");
INSERT INTO `wp_rg_form_view` VALUES("27406", "3", "2016-03-15 16:01:17", "223.240.113.166", "968");
INSERT INTO `wp_rg_form_view` VALUES("27407", "1", "2016-03-15 16:46:00", "107.173.192.101", "5");
INSERT INTO `wp_rg_form_view` VALUES("27408", "3", "2016-03-15 17:00:01", "202.46.51.23", "918");
INSERT INTO `wp_rg_form_view` VALUES("27409", "7", "2016-03-15 17:00:27", "223.240.113.166", "2");
INSERT INTO `wp_rg_form_view` VALUES("27410", "3", "2016-03-15 18:00:16", "202.46.48.210", "800");
INSERT INTO `wp_rg_form_view` VALUES("27411", "1", "2016-03-15 18:56:56", "23.94.179.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("27412", "3", "2016-03-15 19:00:15", "202.46.54.144", "556");
INSERT INTO `wp_rg_form_view` VALUES("27413", "3", "2016-03-15 20:00:13", "202.46.55.15", "565");
INSERT INTO `wp_rg_form_view` VALUES("27414", "1", "2016-03-15 20:51:55", "23.94.179.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("27415", "3", "2016-03-15 21:00:11", "202.46.57.186", "700");
INSERT INTO `wp_rg_form_view` VALUES("27416", "3", "2016-03-15 22:00:01", "202.46.57.185", "579");
INSERT INTO `wp_rg_form_view` VALUES("27417", "1", "2016-03-15 22:50:10", "104.223.40.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("27418", "3", "2016-03-15 23:00:18", "202.46.56.116", "716");
INSERT INTO `wp_rg_form_view` VALUES("27419", "1", "2016-03-15 23:21:09", "96.50.99.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("27420", "3", "2016-03-16 00:00:30", "202.46.58.120", "903");
INSERT INTO `wp_rg_form_view` VALUES("27421", "1", "2016-03-16 00:09:21", "45.72.28.205", "5");
INSERT INTO `wp_rg_form_view` VALUES("27422", "5", "2016-03-16 00:46:18", "68.180.228.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("27423", "3", "2016-03-16 01:01:25", "202.46.50.156", "946");
INSERT INTO `wp_rg_form_view` VALUES("27424", "2", "2016-03-16 01:55:27", "93.61.27.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("27425", "1", "2016-03-16 01:56:19", "104.218.192.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("27426", "3", "2016-03-16 02:00:50", "202.46.57.207", "656");
INSERT INTO `wp_rg_form_view` VALUES("27427", "8", "2016-03-16 02:52:05", "173.242.118.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("27428", "3", "2016-03-16 03:00:13", "202.46.54.189", "428");
INSERT INTO `wp_rg_form_view` VALUES("27429", "1", "2016-03-16 03:41:56", "89.36.65.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("27430", "3", "2016-03-16 04:00:11", "202.46.51.187", "772");
INSERT INTO `wp_rg_form_view` VALUES("27431", "3", "2016-03-16 05:00:22", "202.46.53.51", "898");
INSERT INTO `wp_rg_form_view` VALUES("27432", "1", "2016-03-16 05:24:41", "89.36.65.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("27433", "3", "2016-03-16 06:02:52", "202.46.53.116", "791");
INSERT INTO `wp_rg_form_view` VALUES("27434", "3", "2016-03-16 07:01:37", "202.46.51.24", "784");
INSERT INTO `wp_rg_form_view` VALUES("27435", "3", "2016-03-16 08:00:38", "68.180.228.23", "909");
INSERT INTO `wp_rg_form_view` VALUES("27436", "3", "2016-03-16 09:00:01", "202.46.58.208", "816");
INSERT INTO `wp_rg_form_view` VALUES("27437", "8", "2016-03-16 10:00:22", "157.55.39.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("27438", "3", "2016-03-16 10:00:22", "157.55.39.224", "796");
INSERT INTO `wp_rg_form_view` VALUES("27439", "3", "2016-03-16 11:01:25", "202.46.49.91", "924");
INSERT INTO `wp_rg_form_view` VALUES("27440", "3", "2016-03-16 12:00:04", "202.46.50.188", "875");
INSERT INTO `wp_rg_form_view` VALUES("27441", "3", "2016-03-16 13:00:15", "202.46.50.165", "675");
INSERT INTO `wp_rg_form_view` VALUES("27442", "3", "2016-03-16 14:01:52", "157.55.39.224", "486");
INSERT INTO `wp_rg_form_view` VALUES("27443", "3", "2016-03-16 15:01:00", "202.46.53.194", "832");
INSERT INTO `wp_rg_form_view` VALUES("27444", "9", "2016-03-16 15:03:58", "202.46.53.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("27445", "3", "2016-03-16 16:00:07", "202.46.52.107", "768");
INSERT INTO `wp_rg_form_view` VALUES("27446", "3", "2016-03-16 17:02:26", "202.46.48.200", "386");
INSERT INTO `wp_rg_form_view` VALUES("27447", "3", "2016-03-16 18:00:43", "202.46.53.166", "939");
INSERT INTO `wp_rg_form_view` VALUES("27448", "1", "2016-03-16 18:36:35", "66.85.131.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("27449", "3", "2016-03-16 19:00:25", "202.46.58.87", "932");
INSERT INTO `wp_rg_form_view` VALUES("27450", "3", "2016-03-16 20:00:08", "202.46.55.16", "989");
INSERT INTO `wp_rg_form_view` VALUES("27451", "3", "2016-03-16 21:00:38", "202.46.48.84", "1016");
INSERT INTO `wp_rg_form_view` VALUES("27452", "9", "2016-03-16 21:06:11", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("27453", "3", "2016-03-16 22:00:21", "202.46.52.179", "1060");
INSERT INTO `wp_rg_form_view` VALUES("27454", "3", "2016-03-16 23:00:04", "202.46.51.36", "1065");
INSERT INTO `wp_rg_form_view` VALUES("27455", "3", "2016-03-17 00:00:36", "202.46.57.163", "1005");
INSERT INTO `wp_rg_form_view` VALUES("27456", "3", "2016-03-17 01:00:08", "202.46.56.66", "1166");
INSERT INTO `wp_rg_form_view` VALUES("27457", "1", "2016-03-17 01:42:16", "104.227.77.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("27458", "3", "2016-03-17 02:00:38", "202.46.58.59", "1166");
INSERT INTO `wp_rg_form_view` VALUES("27459", "3", "2016-03-17 03:00:21", "202.46.58.131", "1010");
INSERT INTO `wp_rg_form_view` VALUES("27460", "3", "2016-03-17 04:03:39", "202.46.51.106", "206");
INSERT INTO `wp_rg_form_view` VALUES("27461", "3", "2016-03-17 05:00:56", "202.46.56.90", "111");
INSERT INTO `wp_rg_form_view` VALUES("27462", "3", "2016-03-17 06:20:00", "178.137.94.117", "70");
INSERT INTO `wp_rg_form_view` VALUES("27463", "3", "2016-03-17 07:10:14", "68.180.228.23", "21");
INSERT INTO `wp_rg_form_view` VALUES("27464", "3", "2016-03-17 08:21:00", "5.2.4.33", "2151");
INSERT INTO `wp_rg_form_view` VALUES("27465", "2", "2016-03-17 08:25:32", "5.2.4.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("27466", "1", "2016-03-17 08:50:12", "173.192.34.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("27467", "5", "2016-03-17 08:51:57", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("27468", "8", "2016-03-17 08:54:11", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("27469", "9", "2016-03-17 08:54:16", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("27470", "3", "2016-03-17 09:00:29", "202.46.48.29", "197");
INSERT INTO `wp_rg_form_view` VALUES("27471", "1", "2016-03-17 09:04:47", "23.95.241.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("27472", "3", "2016-03-17 10:28:27", "66.249.74.106", "94");
INSERT INTO `wp_rg_form_view` VALUES("27473", "2", "2016-03-17 10:48:37", "164.132.161.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("27474", "3", "2016-03-17 11:01:28", "202.46.48.143", "61");
INSERT INTO `wp_rg_form_view` VALUES("27475", "1", "2016-03-17 11:14:41", "104.223.30.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("27476", "3", "2016-03-17 12:11:51", "51.255.65.88", "104");
INSERT INTO `wp_rg_form_view` VALUES("27477", "2", "2016-03-17 12:45:57", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("27478", "1", "2016-03-17 12:55:28", "116.50.236.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("27479", "3", "2016-03-17 13:03:34", "192.40.93.107", "154");
INSERT INTO `wp_rg_form_view` VALUES("27480", "1", "2016-03-17 13:13:22", "23.95.191.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("27481", "9", "2016-03-17 13:52:07", "157.55.39.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("27482", "3", "2016-03-17 14:21:45", "217.69.133.227", "32");
INSERT INTO `wp_rg_form_view` VALUES("27483", "3", "2016-03-17 15:04:57", "75.154.236.242", "53");
INSERT INTO `wp_rg_form_view` VALUES("27484", "1", "2016-03-17 15:15:19", "23.95.191.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("27485", "3", "2016-03-17 16:03:23", "66.249.74.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("27486", "8", "2016-03-17 16:14:03", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("27487", "3", "2016-03-17 17:11:33", "68.180.228.23", "61");
INSERT INTO `wp_rg_form_view` VALUES("27488", "2", "2016-03-17 17:28:06", "68.180.228.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("27489", "3", "2016-03-17 18:14:35", "96.50.0.34", "50");
INSERT INTO `wp_rg_form_view` VALUES("27490", "8", "2016-03-17 18:56:08", "141.8.143.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("27491", "3", "2016-03-17 19:01:11", "68.180.228.23", "72");
INSERT INTO `wp_rg_form_view` VALUES("27492", "3", "2016-03-17 20:05:59", "5.34.241.2", "151");
INSERT INTO `wp_rg_form_view` VALUES("27493", "3", "2016-03-17 21:03:52", "66.249.74.102", "85");
INSERT INTO `wp_rg_form_view` VALUES("27494", "3", "2016-03-17 22:02:36", "24.244.23.148", "51");
INSERT INTO `wp_rg_form_view` VALUES("27495", "2", "2016-03-17 22:23:36", "46.246.41.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("27496", "3", "2016-03-17 23:11:34", "151.237.180.12", "239");
INSERT INTO `wp_rg_form_view` VALUES("27497", "3", "2016-03-18 00:11:37", "66.249.74.106", "31");
INSERT INTO `wp_rg_form_view` VALUES("27498", "9", "2016-03-18 00:49:27", "157.55.39.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("27499", "3", "2016-03-18 01:00:06", "154.20.40.110", "52");
INSERT INTO `wp_rg_form_view` VALUES("27500", "3", "2016-03-18 02:36:07", "141.8.143.242", "42");
INSERT INTO `wp_rg_form_view` VALUES("27501", "9", "2016-03-18 03:11:41", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("27502", "3", "2016-03-18 03:11:41", "217.69.133.229", "416");
INSERT INTO `wp_rg_form_view` VALUES("27503", "3", "2016-03-18 04:33:52", "151.237.181.253", "62");
INSERT INTO `wp_rg_form_view` VALUES("27504", "8", "2016-03-18 04:47:16", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("27505", "3", "2016-03-18 05:09:37", "85.93.89.74", "221");
INSERT INTO `wp_rg_form_view` VALUES("27506", "2", "2016-03-18 05:09:55", "85.93.89.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("27507", "3", "2016-03-18 06:16:52", "202.46.51.88", "31");
INSERT INTO `wp_rg_form_view` VALUES("27508", "3", "2016-03-18 07:16:14", "62.210.162.184", "40");
INSERT INTO `wp_rg_form_view` VALUES("27509", "3", "2016-03-18 08:11:19", "151.80.31.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("27510", "3", "2016-03-18 09:09:41", "157.55.39.70", "41");
INSERT INTO `wp_rg_form_view` VALUES("27511", "3", "2016-03-18 10:34:25", "66.249.74.104", "62");
INSERT INTO `wp_rg_form_view` VALUES("27512", "1", "2016-03-18 10:56:12", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("27513", "9", "2016-03-18 10:58:34", "68.180.230.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("27514", "3", "2016-03-18 11:09:28", "217.69.133.229", "51");
INSERT INTO `wp_rg_form_view` VALUES("27515", "3", "2016-03-18 12:40:20", "66.249.74.104", "93");
INSERT INTO `wp_rg_form_view` VALUES("27516", "1", "2016-03-18 12:54:35", "189.219.86.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("27517", "9", "2016-03-18 13:16:46", "207.46.13.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("27518", "3", "2016-03-18 13:16:47", "207.46.13.62", "72");
INSERT INTO `wp_rg_form_view` VALUES("27519", "1", "2016-03-18 13:21:35", "68.180.230.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("27520", "3", "2016-03-18 14:18:27", "51.255.65.40", "23");
INSERT INTO `wp_rg_form_view` VALUES("27521", "3", "2016-03-18 15:35:45", "40.77.167.50", "108");
INSERT INTO `wp_rg_form_view` VALUES("27522", "3", "2016-03-18 16:08:12", "46.118.119.221", "153");
INSERT INTO `wp_rg_form_view` VALUES("27523", "3", "2016-03-18 17:03:25", "66.249.74.104", "3965");
INSERT INTO `wp_rg_form_view` VALUES("27524", "1", "2016-03-18 17:10:02", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("27525", "5", "2016-03-18 17:18:35", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("27526", "6", "2016-03-18 17:23:46", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("27527", "9", "2016-03-18 17:31:02", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("27528", "3", "2016-03-18 18:00:16", "45.55.235.146", "2053");
INSERT INTO `wp_rg_form_view` VALUES("27529", "2", "2016-03-18 18:13:03", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("27530", "8", "2016-03-18 18:26:46", "45.55.235.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("27531", "3", "2016-03-18 19:06:58", "5.34.241.115", "640");
INSERT INTO `wp_rg_form_view` VALUES("27532", "7", "2016-03-18 19:31:20", "207.46.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("27533", "3", "2016-03-18 20:04:40", "24.69.57.30", "81");
INSERT INTO `wp_rg_form_view` VALUES("27534", "1", "2016-03-18 20:05:11", "176.103.56.85", "3");
INSERT INTO `wp_rg_form_view` VALUES("27535", "3", "2016-03-18 21:01:24", "24.69.131.176", "122");
INSERT INTO `wp_rg_form_view` VALUES("27536", "3", "2016-03-18 22:06:02", "68.180.230.27", "182");
INSERT INTO `wp_rg_form_view` VALUES("27537", "3", "2016-03-18 23:04:38", "199.21.99.202", "92");
INSERT INTO `wp_rg_form_view` VALUES("27538", "3", "2016-03-19 00:11:10", "37.72.190.15", "52");
INSERT INTO `wp_rg_form_view` VALUES("27539", "6", "2016-03-19 01:25:32", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("27540", "3", "2016-03-19 01:25:33", "217.69.133.228", "81");
INSERT INTO `wp_rg_form_view` VALUES("27541", "1", "2016-03-19 01:34:20", "192.99.44.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("27542", "3", "2016-03-19 02:11:45", "202.46.52.65", "172");
INSERT INTO `wp_rg_form_view` VALUES("27543", "6", "2016-03-19 03:01:06", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("27544", "3", "2016-03-19 03:01:06", "217.69.133.231", "262");
INSERT INTO `wp_rg_form_view` VALUES("27545", "1", "2016-03-19 03:24:47", "173.183.77.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("27546", "3", "2016-03-19 04:17:08", "151.237.181.205", "61");
INSERT INTO `wp_rg_form_view` VALUES("27547", "3", "2016-03-19 05:24:35", "104.160.7.64", "32");
INSERT INTO `wp_rg_form_view` VALUES("27548", "2", "2016-03-19 06:02:38", "104.160.7.82", "3");
INSERT INTO `wp_rg_form_view` VALUES("27549", "3", "2016-03-19 06:02:38", "104.160.7.82", "85");
INSERT INTO `wp_rg_form_view` VALUES("27550", "3", "2016-03-19 07:00:14", "66.249.74.102", "355");
INSERT INTO `wp_rg_form_view` VALUES("27551", "2", "2016-03-19 07:09:41", "78.159.213.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("27552", "3", "2016-03-19 08:12:31", "5.34.241.95", "74");
INSERT INTO `wp_rg_form_view` VALUES("27553", "3", "2016-03-19 09:22:25", "202.46.53.44", "71");
INSERT INTO `wp_rg_form_view` VALUES("27554", "2", "2016-03-19 09:32:25", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("27555", "3", "2016-03-19 10:00:23", "157.55.39.70", "30");
INSERT INTO `wp_rg_form_view` VALUES("27556", "3", "2016-03-19 11:18:00", "192.40.93.107", "70");
INSERT INTO `wp_rg_form_view` VALUES("27557", "2", "2016-03-19 11:19:48", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("27558", "9", "2016-03-19 11:22:07", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("27559", "3", "2016-03-19 12:33:35", "217.69.133.229", "11");
INSERT INTO `wp_rg_form_view` VALUES("27560", "3", "2016-03-19 13:19:16", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("27561", "3", "2016-03-19 14:01:39", "46.118.119.221", "152");
INSERT INTO `wp_rg_form_view` VALUES("27562", "8", "2016-03-19 14:24:54", "68.180.230.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("27563", "3", "2016-03-19 15:42:57", "217.69.133.232", "91");
INSERT INTO `wp_rg_form_view` VALUES("27564", "3", "2016-03-19 16:03:55", "91.108.178.210", "88");
INSERT INTO `wp_rg_form_view` VALUES("27565", "8", "2016-03-19 16:31:11", "207.46.13.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("27566", "3", "2016-03-19 17:17:26", "217.69.133.233", "53");
INSERT INTO `wp_rg_form_view` VALUES("27567", "3", "2016-03-19 18:16:10", "24.68.137.125", "50");
INSERT INTO `wp_rg_form_view` VALUES("27568", "3", "2016-03-19 19:04:29", "151.237.180.14", "82");
INSERT INTO `wp_rg_form_view` VALUES("27569", "3", "2016-03-19 20:44:47", "66.249.74.102", "21");
INSERT INTO `wp_rg_form_view` VALUES("27570", "3", "2016-03-19 21:00:03", "78.159.213.201", "181");
INSERT INTO `wp_rg_form_view` VALUES("27571", "2", "2016-03-19 21:08:20", "78.159.213.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("27572", "3", "2016-03-19 22:02:02", "217.69.133.232", "174");
INSERT INTO `wp_rg_form_view` VALUES("27573", "3", "2016-03-19 23:00:59", "46.246.83.172", "102");
INSERT INTO `wp_rg_form_view` VALUES("27574", "3", "2016-03-20 00:30:46", "62.210.162.184", "52");
INSERT INTO `wp_rg_form_view` VALUES("27575", "3", "2016-03-20 01:03:09", "66.249.74.106", "51");
INSERT INTO `wp_rg_form_view` VALUES("27576", "3", "2016-03-20 02:04:57", "104.160.7.82", "154");
INSERT INTO `wp_rg_form_view` VALUES("27577", "3", "2016-03-20 03:51:43", "89.163.148.58", "40");
INSERT INTO `wp_rg_form_view` VALUES("27578", "3", "2016-03-20 04:02:26", "199.21.99.202", "62");
INSERT INTO `wp_rg_form_view` VALUES("27579", "3", "2016-03-20 05:15:27", "24.68.17.97", "344");
INSERT INTO `wp_rg_form_view` VALUES("27580", "3", "2016-03-20 06:05:03", "180.150.226.116", "141");
INSERT INTO `wp_rg_form_view` VALUES("27581", "3", "2016-03-20 07:02:00", "66.249.74.104", "52");
INSERT INTO `wp_rg_form_view` VALUES("27582", "3", "2016-03-20 08:13:54", "66.249.74.106", "249");
INSERT INTO `wp_rg_form_view` VALUES("27583", "8", "2016-03-20 08:28:23", "96.50.20.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("27584", "1", "2016-03-20 08:41:13", "104.160.7.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("27585", "3", "2016-03-20 09:07:33", "217.69.133.229", "41");
INSERT INTO `wp_rg_form_view` VALUES("27586", "3", "2016-03-20 10:13:24", "5.34.241.73", "62");
INSERT INTO `wp_rg_form_view` VALUES("27587", "3", "2016-03-20 11:03:25", "46.118.119.221", "106");
INSERT INTO `wp_rg_form_view` VALUES("27588", "3", "2016-03-20 12:13:21", "178.137.88.222", "90");
INSERT INTO `wp_rg_form_view` VALUES("27589", "3", "2016-03-20 12:13:21", "178.137.88.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("27590", "3", "2016-03-20 13:18:46", "195.154.207.160", "52");
INSERT INTO `wp_rg_form_view` VALUES("27591", "6", "2016-03-20 13:52:48", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("27592", "3", "2016-03-20 14:15:25", "207.46.13.111", "333");
INSERT INTO `wp_rg_form_view` VALUES("27593", "3", "2016-03-20 15:00:21", "91.108.177.25", "284");
INSERT INTO `wp_rg_form_view` VALUES("27594", "2", "2016-03-20 15:34:25", "104.236.69.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("27595", "1", "2016-03-20 16:21:33", "104.223.30.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("27596", "3", "2016-03-20 16:21:33", "104.223.30.171", "134");
INSERT INTO `wp_rg_form_view` VALUES("27597", "2", "2016-03-20 17:02:13", "192.40.93.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("27598", "3", "2016-03-20 17:02:13", "192.40.93.149", "131");
INSERT INTO `wp_rg_form_view` VALUES("27599", "1", "2016-03-20 18:19:28", "23.95.191.180", "3");
INSERT INTO `wp_rg_form_view` VALUES("27600", "3", "2016-03-20 18:19:28", "23.95.191.180", "196");
INSERT INTO `wp_rg_form_view` VALUES("27601", "3", "2016-03-20 19:28:22", "68.180.230.27", "41");
INSERT INTO `wp_rg_form_view` VALUES("27602", "1", "2016-03-20 20:07:33", "23.94.179.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("27603", "3", "2016-03-20 20:07:33", "23.94.179.149", "20");
INSERT INTO `wp_rg_form_view` VALUES("27604", "3", "2016-03-20 21:10:18", "207.46.13.111", "155");
INSERT INTO `wp_rg_form_view` VALUES("27605", "1", "2016-03-20 22:02:56", "107.173.192.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("27606", "3", "2016-03-20 22:02:57", "107.173.192.101", "263");
INSERT INTO `wp_rg_form_view` VALUES("27607", "3", "2016-03-20 23:17:07", "46.118.119.221", "91");
INSERT INTO `wp_rg_form_view` VALUES("27608", "3", "2016-03-21 00:40:32", "62.210.162.184", "31");
INSERT INTO `wp_rg_form_view` VALUES("27609", "3", "2016-03-21 01:28:02", "157.55.39.168", "37");
INSERT INTO `wp_rg_form_view` VALUES("27610", "3", "2016-03-21 02:19:08", "216.232.152.68", "90");
INSERT INTO `wp_rg_form_view` VALUES("27611", "9", "2016-03-21 02:30:34", "68.180.230.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("27612", "3", "2016-03-21 03:00:35", "66.249.74.106", "64");
INSERT INTO `wp_rg_form_view` VALUES("27613", "3", "2016-03-21 04:30:14", "134.249.53.235", "119");
INSERT INTO `wp_rg_form_view` VALUES("27614", "3", "2016-03-21 04:30:14", "134.249.53.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("27615", "3", "2016-03-21 05:05:41", "91.108.177.113", "113");
INSERT INTO `wp_rg_form_view` VALUES("27616", "9", "2016-03-21 05:44:28", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("27617", "3", "2016-03-21 06:49:21", "82.146.36.39", "10");
INSERT INTO `wp_rg_form_view` VALUES("27618", "3", "2016-03-21 07:01:00", "66.249.74.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("27619", "3", "2016-03-21 08:04:21", "157.55.39.168", "153");
INSERT INTO `wp_rg_form_view` VALUES("27620", "3", "2016-03-21 09:31:30", "178.137.88.222", "90");
INSERT INTO `wp_rg_form_view` VALUES("27621", "8", "2016-03-21 09:39:51", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("27622", "3", "2016-03-21 10:10:51", "157.55.39.46", "62");
INSERT INTO `wp_rg_form_view` VALUES("27623", "3", "2016-03-21 11:01:46", "134.249.53.235", "80");
INSERT INTO `wp_rg_form_view` VALUES("27624", "3", "2016-03-21 12:07:57", "217.69.133.228", "60");
INSERT INTO `wp_rg_form_view` VALUES("27625", "3", "2016-03-21 13:17:21", "199.21.99.199", "98");
INSERT INTO `wp_rg_form_view` VALUES("27626", "8", "2016-03-21 13:43:03", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("27627", "6", "2016-03-21 13:43:14", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("27628", "3", "2016-03-21 15:10:03", "202.46.48.133", "82");
INSERT INTO `wp_rg_form_view` VALUES("27629", "3", "2016-03-21 16:19:53", "68.180.230.27", "31");
INSERT INTO `wp_rg_form_view` VALUES("27630", "3", "2016-03-21 17:06:18", "202.46.52.163", "60");
INSERT INTO `wp_rg_form_view` VALUES("27631", "5", "2016-03-21 17:25:10", "202.46.53.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("27632", "6", "2016-03-21 17:38:02", "202.46.49.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("27633", "3", "2016-03-21 18:07:15", "202.46.50.191", "82");
INSERT INTO `wp_rg_form_view` VALUES("27634", "3", "2016-03-21 19:04:26", "192.40.93.107", "111");
INSERT INTO `wp_rg_form_view` VALUES("27635", "3", "2016-03-21 20:01:00", "202.46.49.144", "70");
INSERT INTO `wp_rg_form_view` VALUES("27636", "3", "2016-03-21 21:01:15", "202.46.50.130", "71");
INSERT INTO `wp_rg_form_view` VALUES("27637", "3", "2016-03-21 22:05:59", "202.46.52.119", "101");
INSERT INTO `wp_rg_form_view` VALUES("27638", "2", "2016-03-21 22:08:40", "202.46.54.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("27639", "5", "2016-03-21 23:01:15", "202.46.58.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("27640", "3", "2016-03-21 23:01:15", "202.46.58.71", "103");
INSERT INTO `wp_rg_form_view` VALUES("27641", "3", "2016-03-22 00:05:37", "202.46.55.86", "41");
INSERT INTO `wp_rg_form_view` VALUES("27642", "3", "2016-03-22 01:01:58", "151.80.31.150", "72");
INSERT INTO `wp_rg_form_view` VALUES("27643", "7", "2016-03-22 01:41:03", "202.46.57.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("27644", "3", "2016-03-22 02:16:04", "202.46.53.53", "31");
INSERT INTO `wp_rg_form_view` VALUES("27645", "3", "2016-03-22 03:05:55", "192.40.93.173", "144");
INSERT INTO `wp_rg_form_view` VALUES("27646", "7", "2016-03-22 04:05:24", "202.46.55.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("27647", "3", "2016-03-22 04:05:24", "202.46.55.86", "648");
INSERT INTO `wp_rg_form_view` VALUES("27648", "9", "2016-03-22 04:24:27", "207.46.13.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("27649", "1", "2016-03-22 04:24:41", "207.46.13.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("27650", "3", "2016-03-22 05:05:18", "24.86.218.15", "130");
INSERT INTO `wp_rg_form_view` VALUES("27651", "2", "2016-03-22 05:21:48", "220.181.108.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("27652", "3", "2016-03-22 06:05:50", "68.180.230.27", "91");
INSERT INTO `wp_rg_form_view` VALUES("27653", "9", "2016-03-22 06:24:48", "202.46.54.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("27654", "3", "2016-03-22 07:01:18", "202.46.48.92", "81");
INSERT INTO `wp_rg_form_view` VALUES("27655", "3", "2016-03-22 08:15:38", "202.46.52.17", "102");
INSERT INTO `wp_rg_form_view` VALUES("27656", "3", "2016-03-22 09:03:32", "202.46.50.138", "234");
INSERT INTO `wp_rg_form_view` VALUES("27657", "1", "2016-03-22 09:17:47", "23.94.179.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("27658", "3", "2016-03-22 10:10:54", "66.249.74.104", "83");
INSERT INTO `wp_rg_form_view` VALUES("27659", "3", "2016-03-22 11:04:18", "66.249.74.102", "123");
INSERT INTO `wp_rg_form_view` VALUES("27660", "2", "2016-03-22 11:46:56", "207.46.13.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("27661", "6", "2016-03-22 11:48:27", "202.46.58.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("27662", "1", "2016-03-22 12:01:29", "23.95.241.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("27663", "3", "2016-03-22 12:01:29", "23.95.241.160", "50");
INSERT INTO `wp_rg_form_view` VALUES("27664", "3", "2016-03-22 13:06:27", "202.46.49.95", "103");
INSERT INTO `wp_rg_form_view` VALUES("27665", "1", "2016-03-22 13:52:25", "23.94.86.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("27666", "3", "2016-03-22 14:15:23", "202.46.48.199", "183");
INSERT INTO `wp_rg_form_view` VALUES("27667", "1", "2016-03-22 14:19:39", "202.46.54.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("27668", "3", "2016-03-22 15:08:19", "202.46.54.138", "253");
INSERT INTO `wp_rg_form_view` VALUES("27669", "1", "2016-03-22 15:46:53", "104.223.30.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("27670", "3", "2016-03-22 16:08:44", "202.46.58.191", "161");
INSERT INTO `wp_rg_form_view` VALUES("27671", "3", "2016-03-22 17:02:08", "154.20.41.178", "141");
INSERT INTO `wp_rg_form_view` VALUES("27672", "3", "2016-03-22 18:03:02", "68.180.228.250", "333");
INSERT INTO `wp_rg_form_view` VALUES("27673", "1", "2016-03-22 18:43:49", "104.223.40.100", "4");
INSERT INTO `wp_rg_form_view` VALUES("27674", "5", "2016-03-22 18:56:11", "202.46.50.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("27675", "3", "2016-03-22 19:17:46", "66.249.74.106", "60");
INSERT INTO `wp_rg_form_view` VALUES("27676", "10", "2016-03-22 19:17:46", "66.249.74.106", "55");
INSERT INTO `wp_rg_form_view` VALUES("27677", "7", "2016-03-22 19:55:15", "202.46.55.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("27678", "3", "2016-03-22 20:14:50", "66.249.74.106", "72");
INSERT INTO `wp_rg_form_view` VALUES("27679", "10", "2016-03-22 20:14:51", "66.249.74.106", "70");
INSERT INTO `wp_rg_form_view` VALUES("27680", "6", "2016-03-22 20:37:34", "202.46.54.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("27681", "1", "2016-03-22 20:55:49", "107.173.192.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("27682", "3", "2016-03-22 21:00:03", "202.46.56.136", "114");
INSERT INTO `wp_rg_form_view` VALUES("27683", "10", "2016-03-22 21:00:03", "202.46.56.136", "118");
INSERT INTO `wp_rg_form_view` VALUES("27684", "9", "2016-03-22 21:50:59", "202.46.58.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("27685", "3", "2016-03-22 22:16:29", "202.46.54.137", "30");
INSERT INTO `wp_rg_form_view` VALUES("27686", "10", "2016-03-22 22:16:29", "202.46.54.137", "30");
INSERT INTO `wp_rg_form_view` VALUES("27687", "2", "2016-03-22 22:37:25", "207.46.13.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("27688", "1", "2016-03-22 22:43:35", "23.94.179.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("27689", "3", "2016-03-22 23:17:18", "202.46.53.142", "52");
INSERT INTO `wp_rg_form_view` VALUES("27690", "10", "2016-03-22 23:17:19", "202.46.53.142", "50");
INSERT INTO `wp_rg_form_view` VALUES("27691", "6", "2016-03-22 23:33:33", "202.46.48.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("27692", "5", "2016-03-23 00:18:50", "202.46.57.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("27693", "3", "2016-03-23 00:18:50", "202.46.57.186", "31");
INSERT INTO `wp_rg_form_view` VALUES("27694", "10", "2016-03-23 00:18:50", "202.46.57.186", "30");
INSERT INTO `wp_rg_form_view` VALUES("27695", "1", "2016-03-23 00:28:08", "104.223.30.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("27696", "3", "2016-03-23 01:15:22", "202.46.54.139", "88");
INSERT INTO `wp_rg_form_view` VALUES("27697", "10", "2016-03-23 01:15:22", "202.46.54.139", "90");
INSERT INTO `wp_rg_form_view` VALUES("27698", "1", "2016-03-23 01:34:00", "198.46.196.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("27699", "2", "2016-03-23 01:47:50", "40.84.159.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("27700", "5", "2016-03-23 01:59:40", "207.46.13.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("27701", "3", "2016-03-23 02:19:12", "202.46.52.70", "50");
INSERT INTO `wp_rg_form_view` VALUES("27702", "10", "2016-03-23 02:19:12", "202.46.52.70", "59");
INSERT INTO `wp_rg_form_view` VALUES("27703", "3", "2016-03-23 03:01:14", "202.46.51.14", "76");
INSERT INTO `wp_rg_form_view` VALUES("27704", "10", "2016-03-23 03:01:14", "202.46.51.14", "70");
INSERT INTO `wp_rg_form_view` VALUES("27705", "1", "2016-03-23 03:39:23", "202.46.56.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("27706", "3", "2016-03-23 04:00:52", "202.46.49.190", "54");
INSERT INTO `wp_rg_form_view` VALUES("27707", "10", "2016-03-23 04:00:52", "202.46.49.190", "52");
INSERT INTO `wp_rg_form_view` VALUES("27708", "3", "2016-03-23 05:06:24", "202.46.54.131", "58");
INSERT INTO `wp_rg_form_view` VALUES("27709", "10", "2016-03-23 05:06:24", "202.46.54.131", "55");
INSERT INTO `wp_rg_form_view` VALUES("27710", "2", "2016-03-23 05:28:16", "202.46.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("27711", "3", "2016-03-23 06:17:11", "202.46.57.76", "36");
INSERT INTO `wp_rg_form_view` VALUES("27712", "10", "2016-03-23 06:17:13", "202.46.57.76", "35");
INSERT INTO `wp_rg_form_view` VALUES("27713", "3", "2016-03-23 07:00:58", "207.46.13.150", "33");
INSERT INTO `wp_rg_form_view` VALUES("27714", "10", "2016-03-23 07:00:58", "207.46.13.150", "30");
INSERT INTO `wp_rg_form_view` VALUES("27715", "3", "2016-03-23 08:30:11", "202.46.49.60", "113");
INSERT INTO `wp_rg_form_view` VALUES("27716", "10", "2016-03-23 08:30:14", "202.46.49.60", "105");
INSERT INTO `wp_rg_form_view` VALUES("27717", "1", "2016-03-23 08:35:02", "46.105.86.213", "5");
INSERT INTO `wp_rg_form_view` VALUES("27718", "3", "2016-03-23 09:01:54", "66.249.74.104", "27");
INSERT INTO `wp_rg_form_view` VALUES("27719", "10", "2016-03-23 09:01:54", "66.249.74.104", "33");
INSERT INTO `wp_rg_form_view` VALUES("27720", "3", "2016-03-23 10:00:17", "54.204.124.128", "40");
INSERT INTO `wp_rg_form_view` VALUES("27721", "10", "2016-03-23 10:00:17", "54.204.124.128", "40");
INSERT INTO `wp_rg_form_view` VALUES("27722", "2", "2016-03-23 10:00:35", "54.204.124.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("27723", "3", "2016-03-23 11:07:14", "66.249.74.102", "75");
INSERT INTO `wp_rg_form_view` VALUES("27724", "10", "2016-03-23 11:07:14", "66.249.74.102", "75");
INSERT INTO `wp_rg_form_view` VALUES("27725", "3", "2016-03-23 12:08:50", "202.46.48.87", "40");
INSERT INTO `wp_rg_form_view` VALUES("27726", "10", "2016-03-23 12:08:50", "202.46.48.87", "40");
INSERT INTO `wp_rg_form_view` VALUES("27727", "3", "2016-03-23 13:06:09", "68.180.229.244", "60");
INSERT INTO `wp_rg_form_view` VALUES("27728", "10", "2016-03-23 13:06:10", "68.180.229.244", "60");
INSERT INTO `wp_rg_form_view` VALUES("27729", "3", "2016-03-23 14:04:33", "93.61.27.184", "26");
INSERT INTO `wp_rg_form_view` VALUES("27730", "10", "2016-03-23 14:04:33", "93.61.27.184", "25");
INSERT INTO `wp_rg_form_view` VALUES("27731", "3", "2016-03-23 15:11:51", "207.46.13.20", "25");
INSERT INTO `wp_rg_form_view` VALUES("27732", "10", "2016-03-23 15:11:51", "207.46.13.20", "25");
INSERT INTO `wp_rg_form_view` VALUES("27733", "1", "2016-03-23 15:29:47", "202.46.56.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("27734", "3", "2016-03-23 16:13:53", "66.249.74.102", "27");
INSERT INTO `wp_rg_form_view` VALUES("27735", "10", "2016-03-23 16:13:53", "66.249.74.102", "25");
INSERT INTO `wp_rg_form_view` VALUES("27736", "3", "2016-03-23 17:10:14", "202.46.50.18", "6");
INSERT INTO `wp_rg_form_view` VALUES("27737", "10", "2016-03-23 17:10:14", "202.46.50.18", "5");
INSERT INTO `wp_rg_form_view` VALUES("27738", "9", "2016-03-23 18:24:46", "40.77.167.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("27739", "3", "2016-03-23 18:24:47", "40.77.167.88", "55");
INSERT INTO `wp_rg_form_view` VALUES("27740", "10", "2016-03-23 18:24:47", "40.77.167.88", "55");
INSERT INTO `wp_rg_form_view` VALUES("27741", "1", "2016-03-23 18:26:19", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("27742", "3", "2016-03-23 19:01:15", "157.55.39.151", "212");
INSERT INTO `wp_rg_form_view` VALUES("27743", "10", "2016-03-23 19:01:15", "157.55.39.151", "222");
INSERT INTO `wp_rg_form_view` VALUES("27744", "2", "2016-03-23 19:51:15", "145.133.160.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("27745", "10", "2016-03-23 20:04:41", "66.249.74.102", "31");
INSERT INTO `wp_rg_form_view` VALUES("27746", "3", "2016-03-23 20:04:42", "66.249.74.102", "30");
INSERT INTO `wp_rg_form_view` VALUES("27747", "1", "2016-03-23 20:33:02", "23.94.86.221", "3");
INSERT INTO `wp_rg_form_view` VALUES("27748", "3", "2016-03-23 21:01:03", "40.77.167.26", "27");
INSERT INTO `wp_rg_form_view` VALUES("27749", "10", "2016-03-23 21:01:03", "40.77.167.26", "25");
INSERT INTO `wp_rg_form_view` VALUES("27750", "3", "2016-03-23 22:02:09", "207.46.13.30", "35");
INSERT INTO `wp_rg_form_view` VALUES("27751", "10", "2016-03-23 22:02:09", "207.46.13.30", "36");
INSERT INTO `wp_rg_form_view` VALUES("27752", "3", "2016-03-23 23:00:22", "141.8.143.140", "40");
INSERT INTO `wp_rg_form_view` VALUES("27753", "10", "2016-03-23 23:00:22", "141.8.143.140", "40");
INSERT INTO `wp_rg_form_view` VALUES("27754", "8", "2016-03-23 23:00:57", "173.242.118.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("27755", "3", "2016-03-24 00:08:58", "5.248.253.133", "51");
INSERT INTO `wp_rg_form_view` VALUES("27756", "10", "2016-03-24 00:08:58", "5.248.253.133", "50");
INSERT INTO `wp_rg_form_view` VALUES("27757", "3", "2016-03-24 01:27:38", "68.180.229.244", "168");
INSERT INTO `wp_rg_form_view` VALUES("27758", "10", "2016-03-24 01:29:29", "96.50.77.70", "165");
INSERT INTO `wp_rg_form_view` VALUES("27759", "2", "2016-03-24 01:57:05", "50.241.139.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("27760", "3", "2016-03-24 02:14:28", "157.55.39.58", "51");
INSERT INTO `wp_rg_form_view` VALUES("27761", "10", "2016-03-24 02:14:28", "157.55.39.58", "53");
INSERT INTO `wp_rg_form_view` VALUES("27762", "8", "2016-03-24 02:48:53", "173.242.118.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("27763", "3", "2016-03-24 03:27:12", "66.249.74.102", "35");
INSERT INTO `wp_rg_form_view` VALUES("27764", "10", "2016-03-24 03:27:13", "66.249.74.102", "35");
INSERT INTO `wp_rg_form_view` VALUES("27765", "7", "2016-03-24 03:59:42", "46.246.61.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("27766", "3", "2016-03-24 04:39:24", "66.249.74.104", "36");
INSERT INTO `wp_rg_form_view` VALUES("27767", "10", "2016-03-24 04:39:25", "66.249.74.104", "35");
INSERT INTO `wp_rg_form_view` VALUES("27768", "3", "2016-03-24 05:27:00", "202.46.52.163", "26");
INSERT INTO `wp_rg_form_view` VALUES("27769", "10", "2016-03-24 05:27:00", "202.46.52.163", "25");
INSERT INTO `wp_rg_form_view` VALUES("27770", "3", "2016-03-24 06:00:28", "202.46.55.152", "16");
INSERT INTO `wp_rg_form_view` VALUES("27771", "10", "2016-03-24 06:00:28", "202.46.55.152", "15");
INSERT INTO `wp_rg_form_view` VALUES("27772", "3", "2016-03-24 07:01:16", "199.21.99.202", "188");
INSERT INTO `wp_rg_form_view` VALUES("27773", "10", "2016-03-24 07:01:18", "199.21.99.202", "186");
INSERT INTO `wp_rg_form_view` VALUES("27774", "1", "2016-03-24 07:06:01", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("27775", "2", "2016-03-24 07:07:04", "70.183.228.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("27776", "3", "2016-03-24 08:24:15", "207.46.13.145", "25");
INSERT INTO `wp_rg_form_view` VALUES("27777", "10", "2016-03-24 08:24:15", "207.46.13.145", "25");
INSERT INTO `wp_rg_form_view` VALUES("27778", "3", "2016-03-24 09:08:23", "207.46.13.145", "15");
INSERT INTO `wp_rg_form_view` VALUES("27779", "10", "2016-03-24 09:08:24", "207.46.13.145", "15");
INSERT INTO `wp_rg_form_view` VALUES("27780", "7", "2016-03-24 09:21:25", "202.46.56.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("27781", "6", "2016-03-24 10:06:47", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("27782", "3", "2016-03-24 10:06:47", "68.180.229.244", "26");
INSERT INTO `wp_rg_form_view` VALUES("27783", "10", "2016-03-24 10:06:47", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("27784", "3", "2016-03-24 11:01:52", "202.46.54.196", "22");
INSERT INTO `wp_rg_form_view` VALUES("27785", "10", "2016-03-24 11:01:52", "202.46.54.196", "21");
INSERT INTO `wp_rg_form_view` VALUES("27786", "3", "2016-03-24 12:08:51", "202.46.55.125", "31");
INSERT INTO `wp_rg_form_view` VALUES("27787", "10", "2016-03-24 12:08:52", "202.46.55.125", "32");
INSERT INTO `wp_rg_form_view` VALUES("27788", "3", "2016-03-24 13:00:46", "220.181.108.177", "187");
INSERT INTO `wp_rg_form_view` VALUES("27789", "10", "2016-03-24 13:00:46", "220.181.108.177", "187");
INSERT INTO `wp_rg_form_view` VALUES("27790", "2", "2016-03-24 13:25:52", "50.242.171.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27791", "3", "2016-03-24 14:22:49", "202.46.51.183", "46");
INSERT INTO `wp_rg_form_view` VALUES("27792", "10", "2016-03-24 14:22:49", "202.46.51.183", "47");
INSERT INTO `wp_rg_form_view` VALUES("27793", "3", "2016-03-24 15:31:02", "75.154.236.242", "11");
INSERT INTO `wp_rg_form_view` VALUES("27794", "10", "2016-03-24 15:31:05", "75.154.236.242", "10");
INSERT INTO `wp_rg_form_view` VALUES("27795", "3", "2016-03-24 16:03:16", "202.46.53.46", "65");
INSERT INTO `wp_rg_form_view` VALUES("27796", "10", "2016-03-24 16:03:16", "202.46.53.46", "65");
INSERT INTO `wp_rg_form_view` VALUES("27797", "1", "2016-03-24 17:01:31", "46.105.86.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("27798", "3", "2016-03-24 17:01:31", "46.105.86.213", "134");
INSERT INTO `wp_rg_form_view` VALUES("27799", "10", "2016-03-24 17:01:31", "46.105.86.213", "135");
INSERT INTO `wp_rg_form_view` VALUES("27800", "2", "2016-03-24 17:28:59", "68.180.229.244", "2");
INSERT INTO `wp_rg_form_view` VALUES("27801", "10", "2016-03-24 18:15:46", "96.50.93.42", "50");
INSERT INTO `wp_rg_form_view` VALUES("27802", "3", "2016-03-24 18:15:48", "96.50.93.42", "46");
INSERT INTO `wp_rg_form_view` VALUES("27803", "3", "2016-03-24 19:08:51", "167.114.237.177", "237");
INSERT INTO `wp_rg_form_view` VALUES("27804", "10", "2016-03-24 19:08:51", "167.114.237.177", "243");
INSERT INTO `wp_rg_form_view` VALUES("27805", "2", "2016-03-24 19:52:03", "70.188.114.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("27806", "3", "2016-03-24 20:00:56", "66.249.79.162", "48");
INSERT INTO `wp_rg_form_view` VALUES("27807", "10", "2016-03-24 20:00:56", "66.249.79.162", "47");
INSERT INTO `wp_rg_form_view` VALUES("27808", "3", "2016-03-24 21:04:40", "202.46.56.137", "192");
INSERT INTO `wp_rg_form_view` VALUES("27809", "10", "2016-03-24 21:04:40", "202.46.56.137", "221");
INSERT INTO `wp_rg_form_view` VALUES("27810", "10", "2016-03-24 22:02:40", "184.69.23.166", "37");
INSERT INTO `wp_rg_form_view` VALUES("27811", "3", "2016-03-24 22:02:40", "184.69.23.166", "35");
INSERT INTO `wp_rg_form_view` VALUES("27812", "3", "2016-03-24 23:00:12", "172.218.195.102", "91");
INSERT INTO `wp_rg_form_view` VALUES("27813", "10", "2016-03-24 23:00:12", "172.218.195.102", "101");
INSERT INTO `wp_rg_form_view` VALUES("27814", "1", "2016-03-24 23:52:05", "202.46.54.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("27815", "3", "2016-03-25 00:03:40", "64.251.182.26", "171");
INSERT INTO `wp_rg_form_view` VALUES("27816", "10", "2016-03-25 00:03:40", "64.251.182.26", "170");
INSERT INTO `wp_rg_form_view` VALUES("27817", "2", "2016-03-25 00:04:29", "64.251.182.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("27818", "10", "2016-03-25 01:04:28", "213.211.241.42", "11");
INSERT INTO `wp_rg_form_view` VALUES("27819", "3", "2016-03-25 01:04:28", "213.211.241.42", "10");
INSERT INTO `wp_rg_form_view` VALUES("27820", "10", "2016-03-25 02:10:27", "66.249.79.169", "1913");
INSERT INTO `wp_rg_form_view` VALUES("27821", "3", "2016-03-25 02:10:27", "66.249.79.169", "2077");
INSERT INTO `wp_rg_form_view` VALUES("27822", "2", "2016-03-25 02:13:10", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27823", "1", "2016-03-25 02:15:25", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27824", "8", "2016-03-25 02:20:17", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27825", "9", "2016-03-25 02:20:27", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27826", "5", "2016-03-25 02:21:25", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27827", "6", "2016-03-25 02:25:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27828", "3", "2016-03-25 03:01:04", "66.249.79.169", "2290");
INSERT INTO `wp_rg_form_view` VALUES("27829", "10", "2016-03-25 03:01:04", "66.249.79.169", "2132");
INSERT INTO `wp_rg_form_view` VALUES("27830", "3", "2016-03-25 04:00:00", "5.9.98.130", "3015");
INSERT INTO `wp_rg_form_view` VALUES("27831", "10", "2016-03-25 04:00:00", "5.9.98.130", "2746");
INSERT INTO `wp_rg_form_view` VALUES("27832", "10", "2016-03-25 05:00:00", "5.9.98.130", "1483");
INSERT INTO `wp_rg_form_view` VALUES("27833", "3", "2016-03-25 05:00:00", "5.9.98.130", "1984");
INSERT INTO `wp_rg_form_view` VALUES("27834", "10", "2016-03-25 06:00:00", "5.9.98.130", "3449");
INSERT INTO `wp_rg_form_view` VALUES("27835", "3", "2016-03-25 06:00:00", "5.9.98.130", "3481");
INSERT INTO `wp_rg_form_view` VALUES("27836", "10", "2016-03-25 07:00:03", "5.9.98.130", "1807");
INSERT INTO `wp_rg_form_view` VALUES("27837", "3", "2016-03-25 07:00:06", "5.9.98.130", "1959");
INSERT INTO `wp_rg_form_view` VALUES("27838", "3", "2016-03-25 08:03:03", "167.114.235.70", "1346");
INSERT INTO `wp_rg_form_view` VALUES("27839", "10", "2016-03-25 08:03:03", "167.114.235.70", "1345");
INSERT INTO `wp_rg_form_view` VALUES("27840", "9", "2016-03-25 08:23:18", "167.114.235.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("27841", "3", "2016-03-25 09:00:01", "5.9.98.130", "3565");
INSERT INTO `wp_rg_form_view` VALUES("27842", "10", "2016-03-25 09:00:01", "5.9.98.130", "2085");
INSERT INTO `wp_rg_form_view` VALUES("27843", "2", "2016-03-25 09:21:25", "202.46.48.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("27844", "3", "2016-03-25 10:00:02", "5.9.98.130", "2442");
INSERT INTO `wp_rg_form_view` VALUES("27845", "10", "2016-03-25 10:00:04", "5.9.98.130", "2086");
INSERT INTO `wp_rg_form_view` VALUES("27846", "2", "2016-03-25 10:06:43", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27847", "1", "2016-03-25 10:09:56", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27848", "8", "2016-03-25 10:15:49", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27849", "9", "2016-03-25 10:16:03", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27850", "5", "2016-03-25 10:17:15", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27851", "6", "2016-03-25 10:22:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27852", "3", "2016-03-25 11:03:41", "5.9.98.130", "2272");
INSERT INTO `wp_rg_form_view` VALUES("27853", "10", "2016-03-25 11:03:42", "5.9.98.130", "2114");
INSERT INTO `wp_rg_form_view` VALUES("27854", "3", "2016-03-25 12:01:50", "5.9.98.130", "3107");
INSERT INTO `wp_rg_form_view` VALUES("27855", "10", "2016-03-25 12:01:52", "5.9.98.130", "2795");
INSERT INTO `wp_rg_form_view` VALUES("27856", "1", "2016-03-25 12:03:29", "70.67.47.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("27857", "3", "2016-03-25 13:07:45", "157.55.39.125", "2435");
INSERT INTO `wp_rg_form_view` VALUES("27858", "10", "2016-03-25 13:07:46", "157.55.39.125", "1849");
INSERT INTO `wp_rg_form_view` VALUES("27859", "7", "2016-03-25 13:09:09", "207.46.13.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("27860", "1", "2016-03-25 13:39:37", "62.210.84.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("27861", "3", "2016-03-25 14:00:03", "5.9.98.130", "3327");
INSERT INTO `wp_rg_form_view` VALUES("27862", "10", "2016-03-25 14:00:04", "5.9.98.130", "3526");
INSERT INTO `wp_rg_form_view` VALUES("27863", "1", "2016-03-25 14:50:18", "62.210.84.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("27864", "10", "2016-03-25 15:00:03", "5.9.98.130", "1578");
INSERT INTO `wp_rg_form_view` VALUES("27865", "3", "2016-03-25 15:00:06", "5.9.98.130", "1850");
INSERT INTO `wp_rg_form_view` VALUES("27866", "3", "2016-03-25 16:21:56", "68.180.229.244", "1511");
INSERT INTO `wp_rg_form_view` VALUES("27867", "10", "2016-03-25 16:21:57", "68.180.229.244", "1509");
INSERT INTO `wp_rg_form_view` VALUES("27868", "2", "2016-03-25 16:29:22", "192.126.130.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("27869", "10", "2016-03-25 17:00:00", "5.9.98.130", "2088");
INSERT INTO `wp_rg_form_view` VALUES("27870", "3", "2016-03-25 17:00:04", "5.9.98.130", "3689");
INSERT INTO `wp_rg_form_view` VALUES("27871", "1", "2016-03-25 17:52:58", "104.160.5.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("27872", "10", "2016-03-25 18:00:00", "5.9.98.130", "2875");
INSERT INTO `wp_rg_form_view` VALUES("27873", "3", "2016-03-25 18:00:00", "5.9.98.130", "3831");
INSERT INTO `wp_rg_form_view` VALUES("27874", "2", "2016-03-25 18:24:18", "5.34.241.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("27875", "10", "2016-03-25 19:00:00", "5.9.98.130", "4255");
INSERT INTO `wp_rg_form_view` VALUES("27876", "3", "2016-03-25 19:00:00", "5.9.98.130", "2204");
INSERT INTO `wp_rg_form_view` VALUES("27877", "3", "2016-03-25 20:00:01", "5.9.98.130", "1469");
INSERT INTO `wp_rg_form_view` VALUES("27878", "10", "2016-03-25 20:00:01", "5.9.98.130", "1401");
INSERT INTO `wp_rg_form_view` VALUES("27879", "3", "2016-03-25 21:00:02", "5.9.98.130", "1744");
INSERT INTO `wp_rg_form_view` VALUES("27880", "10", "2016-03-25 21:00:02", "5.9.98.130", "1035");
INSERT INTO `wp_rg_form_view` VALUES("27881", "6", "2016-03-25 21:51:20", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("27882", "9", "2016-03-25 21:58:39", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("27883", "3", "2016-03-25 22:13:49", "68.180.229.244", "26");
INSERT INTO `wp_rg_form_view` VALUES("27884", "10", "2016-03-25 22:13:50", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("27885", "3", "2016-03-25 23:00:18", "68.180.229.244", "57");
INSERT INTO `wp_rg_form_view` VALUES("27886", "10", "2016-03-25 23:00:18", "68.180.229.244", "50");
INSERT INTO `wp_rg_form_view` VALUES("27887", "3", "2016-03-26 00:06:27", "5.34.241.73", "48");
INSERT INTO `wp_rg_form_view` VALUES("27888", "10", "2016-03-26 00:06:27", "5.34.241.73", "45");
INSERT INTO `wp_rg_form_view` VALUES("27889", "8", "2016-03-26 01:15:03", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("27890", "3", "2016-03-26 01:15:04", "68.180.229.244", "189");
INSERT INTO `wp_rg_form_view` VALUES("27891", "10", "2016-03-26 01:15:04", "68.180.229.244", "187");
INSERT INTO `wp_rg_form_view` VALUES("27892", "2", "2016-03-26 01:44:21", "93.61.27.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("27893", "3", "2016-03-26 02:15:15", "46.119.127.4", "115");
INSERT INTO `wp_rg_form_view` VALUES("27894", "10", "2016-03-26 02:15:15", "46.119.127.4", "115");
INSERT INTO `wp_rg_form_view` VALUES("27895", "9", "2016-03-26 03:43:25", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("27896", "3", "2016-03-26 03:43:25", "66.249.74.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("27897", "10", "2016-03-26 03:43:26", "66.249.74.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("27898", "3", "2016-03-26 04:17:58", "207.46.13.122", "47");
INSERT INTO `wp_rg_form_view` VALUES("27899", "10", "2016-03-26 04:17:58", "207.46.13.122", "45");
INSERT INTO `wp_rg_form_view` VALUES("27900", "10", "2016-03-26 06:11:57", "64.46.12.18", "17");
INSERT INTO `wp_rg_form_view` VALUES("27901", "3", "2016-03-26 06:11:58", "64.46.12.18", "15");
INSERT INTO `wp_rg_form_view` VALUES("27902", "3", "2016-03-26 07:08:20", "202.46.50.75", "35");
INSERT INTO `wp_rg_form_view` VALUES("27903", "10", "2016-03-26 07:08:21", "202.46.50.75", "35");
INSERT INTO `wp_rg_form_view` VALUES("27904", "3", "2016-03-26 08:03:36", "23.31.24.253", "176");
INSERT INTO `wp_rg_form_view` VALUES("27905", "10", "2016-03-26 08:03:37", "23.31.24.253", "175");
INSERT INTO `wp_rg_form_view` VALUES("27906", "2", "2016-03-26 08:05:04", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("27907", "9", "2016-03-26 08:45:33", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("27908", "3", "2016-03-26 09:01:03", "66.249.74.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("27909", "10", "2016-03-26 09:01:03", "66.249.74.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("27910", "8", "2016-03-26 09:54:46", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("27911", "3", "2016-03-26 10:24:01", "23.80.155.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("27912", "10", "2016-03-26 10:24:01", "23.80.155.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("27913", "3", "2016-03-26 11:00:07", "66.249.74.106", "42");
INSERT INTO `wp_rg_form_view` VALUES("27914", "10", "2016-03-26 11:00:08", "66.249.74.106", "40");
INSERT INTO `wp_rg_form_view` VALUES("27915", "6", "2016-03-26 11:35:45", "167.114.235.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("27916", "3", "2016-03-26 12:05:38", "167.114.237.177", "57");
INSERT INTO `wp_rg_form_view` VALUES("27917", "10", "2016-03-26 12:05:38", "167.114.237.177", "55");
INSERT INTO `wp_rg_form_view` VALUES("27918", "3", "2016-03-26 13:23:15", "46.119.121.96", "81");
INSERT INTO `wp_rg_form_view` VALUES("27919", "10", "2016-03-26 13:23:16", "46.119.121.96", "80");
INSERT INTO `wp_rg_form_view` VALUES("27920", "3", "2016-03-26 15:12:00", "66.249.74.104", "43");
INSERT INTO `wp_rg_form_view` VALUES("27921", "1", "2016-03-26 15:29:53", "46.105.86.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("27922", "10", "2016-03-26 15:29:54", "46.105.86.213", "40");
INSERT INTO `wp_rg_form_view` VALUES("27923", "3", "2016-03-26 16:13:58", "24.108.137.136", "20");
INSERT INTO `wp_rg_form_view` VALUES("27924", "10", "2016-03-26 16:13:58", "24.108.137.136", "20");
INSERT INTO `wp_rg_form_view` VALUES("27925", "9", "2016-03-26 16:33:27", "66.249.74.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("27926", "10", "2016-03-26 17:56:25", "66.249.74.102", "11");
INSERT INTO `wp_rg_form_view` VALUES("27927", "3", "2016-03-26 17:56:26", "66.249.74.102", "10");
INSERT INTO `wp_rg_form_view` VALUES("27928", "3", "2016-03-26 18:19:29", "62.210.162.209", "21");
INSERT INTO `wp_rg_form_view` VALUES("27929", "10", "2016-03-26 18:19:29", "62.210.162.209", "21");
INSERT INTO `wp_rg_form_view` VALUES("27930", "3", "2016-03-26 19:18:21", "220.181.108.187", "11");
INSERT INTO `wp_rg_form_view` VALUES("27931", "10", "2016-03-26 19:18:22", "220.181.108.187", "10");
INSERT INTO `wp_rg_form_view` VALUES("27932", "9", "2016-03-26 19:51:35", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("27933", "3", "2016-03-26 20:06:39", "202.46.57.79", "10");
INSERT INTO `wp_rg_form_view` VALUES("27934", "10", "2016-03-26 20:06:39", "202.46.57.79", "10");
INSERT INTO `wp_rg_form_view` VALUES("27935", "3", "2016-03-26 21:17:47", "66.249.74.106", "25");
INSERT INTO `wp_rg_form_view` VALUES("27936", "10", "2016-03-26 21:17:47", "66.249.74.106", "25");
INSERT INTO `wp_rg_form_view` VALUES("27937", "3", "2016-03-26 22:31:14", "66.249.84.115", "15");
INSERT INTO `wp_rg_form_view` VALUES("27938", "10", "2016-03-26 22:31:14", "66.249.84.115", "15");
INSERT INTO `wp_rg_form_view` VALUES("27939", "3", "2016-03-26 23:53:44", "114.97.54.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("27940", "10", "2016-03-26 23:53:45", "114.97.54.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("27941", "10", "2016-03-27 00:25:13", "187.204.176.28", "23");
INSERT INTO `wp_rg_form_view` VALUES("27942", "3", "2016-03-27 00:25:14", "187.204.176.28", "20");
INSERT INTO `wp_rg_form_view` VALUES("27943", "3", "2016-03-27 02:05:48", "66.249.74.106", "40");
INSERT INTO `wp_rg_form_view` VALUES("27944", "10", "2016-03-27 02:05:49", "66.249.74.106", "40");
INSERT INTO `wp_rg_form_view` VALUES("27945", "3", "2016-03-27 03:04:21", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("27946", "10", "2016-03-27 03:04:21", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("27947", "8", "2016-03-27 04:10:23", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("27948", "3", "2016-03-27 04:33:56", "66.249.74.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("27949", "10", "2016-03-27 04:33:56", "66.249.74.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("27950", "3", "2016-03-27 05:05:24", "204.79.180.61", "32");
INSERT INTO `wp_rg_form_view` VALUES("27951", "10", "2016-03-27 05:05:24", "204.79.180.61", "30");
INSERT INTO `wp_rg_form_view` VALUES("27952", "3", "2016-03-27 06:01:52", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("27953", "10", "2016-03-27 06:01:52", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("27954", "3", "2016-03-27 07:25:27", "188.214.50.150", "195");
INSERT INTO `wp_rg_form_view` VALUES("27955", "10", "2016-03-27 07:25:27", "188.214.50.150", "180");
INSERT INTO `wp_rg_form_view` VALUES("27956", "1", "2016-03-27 07:44:28", "192.99.166.236", "4");
INSERT INTO `wp_rg_form_view` VALUES("27957", "3", "2016-03-27 08:28:19", "46.246.38.148", "35");
INSERT INTO `wp_rg_form_view` VALUES("27958", "10", "2016-03-27 08:28:20", "46.246.38.148", "35");
INSERT INTO `wp_rg_form_view` VALUES("27959", "3", "2016-03-27 09:22:24", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("27960", "10", "2016-03-27 09:22:24", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("27961", "3", "2016-03-27 10:03:28", "46.246.38.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("27962", "10", "2016-03-27 10:03:28", "46.246.38.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("27963", "3", "2016-03-27 11:03:53", "62.210.162.184", "31");
INSERT INTO `wp_rg_form_view` VALUES("27964", "10", "2016-03-27 11:03:53", "62.210.162.184", "30");
INSERT INTO `wp_rg_form_view` VALUES("27965", "1", "2016-03-27 11:42:52", "198.46.201.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("27966", "3", "2016-03-27 12:06:53", "192.187.114.10", "25");
INSERT INTO `wp_rg_form_view` VALUES("27967", "10", "2016-03-27 12:06:53", "192.187.114.10", "25");
INSERT INTO `wp_rg_form_view` VALUES("27968", "3", "2016-03-27 13:24:34", "66.249.74.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("27969", "10", "2016-03-27 13:24:34", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("27970", "3", "2016-03-27 14:08:21", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("27971", "10", "2016-03-27 14:08:21", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("27972", "3", "2016-03-27 15:27:08", "66.249.74.104", "45");
INSERT INTO `wp_rg_form_view` VALUES("27973", "10", "2016-03-27 15:27:10", "66.249.74.104", "45");
INSERT INTO `wp_rg_form_view` VALUES("27974", "3", "2016-03-27 16:02:24", "66.249.74.106", "284");
INSERT INTO `wp_rg_form_view` VALUES("27975", "10", "2016-03-27 16:02:24", "66.249.74.106", "263");
INSERT INTO `wp_rg_form_view` VALUES("27976", "7", "2016-03-27 16:06:44", "207.46.13.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("27977", "6", "2016-03-27 16:10:37", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("27978", "3", "2016-03-27 17:04:01", "89.44.43.125", "345");
INSERT INTO `wp_rg_form_view` VALUES("27979", "10", "2016-03-27 17:04:01", "89.44.43.125", "320");
INSERT INTO `wp_rg_form_view` VALUES("27980", "1", "2016-03-27 17:50:08", "136.243.48.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("27981", "8", "2016-03-27 17:50:09", "136.243.48.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("27982", "2", "2016-03-27 17:50:10", "136.243.48.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("27983", "3", "2016-03-27 18:06:50", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("27984", "10", "2016-03-27 18:06:50", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("27985", "2", "2016-03-27 19:51:55", "37.72.190.239", "5");
INSERT INTO `wp_rg_form_view` VALUES("27986", "3", "2016-03-27 19:51:56", "37.72.190.239", "58");
INSERT INTO `wp_rg_form_view` VALUES("27987", "10", "2016-03-27 19:51:56", "37.72.190.239", "55");
INSERT INTO `wp_rg_form_view` VALUES("27988", "3", "2016-03-27 20:02:03", "167.114.235.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("27989", "10", "2016-03-27 20:02:03", "167.114.235.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("27990", "1", "2016-03-27 21:09:44", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("27991", "3", "2016-03-27 21:09:44", "192.99.166.236", "45");
INSERT INTO `wp_rg_form_view` VALUES("27992", "10", "2016-03-27 21:09:44", "192.99.166.236", "46");
INSERT INTO `wp_rg_form_view` VALUES("27993", "2", "2016-03-27 21:40:42", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("27994", "3", "2016-03-27 22:16:25", "66.249.74.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("27995", "10", "2016-03-27 22:16:25", "66.249.74.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("27996", "3", "2016-03-27 23:18:13", "207.46.13.27", "43");
INSERT INTO `wp_rg_form_view` VALUES("27997", "10", "2016-03-27 23:18:13", "207.46.13.27", "40");
INSERT INTO `wp_rg_form_view` VALUES("27998", "2", "2016-03-27 23:25:57", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("27999", "9", "2016-03-28 00:17:54", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("28000", "3", "2016-03-28 00:17:55", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("28001", "10", "2016-03-28 00:17:55", "199.21.99.202", "15");
INSERT INTO `wp_rg_form_view` VALUES("28002", "2", "2016-03-28 01:06:29", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("28003", "3", "2016-03-28 01:06:30", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("28004", "10", "2016-03-28 01:06:30", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("28005", "3", "2016-03-28 02:09:15", "52.37.55.27", "35");
INSERT INTO `wp_rg_form_view` VALUES("28006", "10", "2016-03-28 02:09:16", "52.37.55.27", "35");
INSERT INTO `wp_rg_form_view` VALUES("28007", "3", "2016-03-28 03:16:03", "66.249.74.104", "11");
INSERT INTO `wp_rg_form_view` VALUES("28008", "10", "2016-03-28 03:16:03", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("28009", "3", "2016-03-28 04:48:07", "207.46.13.39", "66");
INSERT INTO `wp_rg_form_view` VALUES("28010", "10", "2016-03-28 04:48:08", "207.46.13.39", "65");
INSERT INTO `wp_rg_form_view` VALUES("28011", "3", "2016-03-28 05:07:45", "66.249.74.102", "21");
INSERT INTO `wp_rg_form_view` VALUES("28012", "10", "2016-03-28 05:07:45", "66.249.74.102", "20");
INSERT INTO `wp_rg_form_view` VALUES("28013", "3", "2016-03-28 06:26:06", "202.46.53.12", "10");
INSERT INTO `wp_rg_form_view` VALUES("28014", "10", "2016-03-28 06:26:06", "202.46.53.12", "10");
INSERT INTO `wp_rg_form_view` VALUES("28015", "3", "2016-03-28 07:10:01", "66.249.74.102", "15");
INSERT INTO `wp_rg_form_view` VALUES("28016", "10", "2016-03-28 07:10:01", "66.249.74.102", "15");
INSERT INTO `wp_rg_form_view` VALUES("28017", "8", "2016-03-28 08:06:34", "202.46.51.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("28018", "3", "2016-03-28 08:06:34", "202.46.51.38", "87");
INSERT INTO `wp_rg_form_view` VALUES("28019", "10", "2016-03-28 08:06:34", "202.46.51.38", "80");
INSERT INTO `wp_rg_form_view` VALUES("28020", "3", "2016-03-28 09:06:49", "136.243.17.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("28021", "10", "2016-03-28 09:06:50", "136.243.17.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("28022", "3", "2016-03-28 10:09:27", "157.55.39.106", "40");
INSERT INTO `wp_rg_form_view` VALUES("28023", "10", "2016-03-28 10:09:28", "157.55.39.106", "40");
INSERT INTO `wp_rg_form_view` VALUES("28024", "3", "2016-03-28 11:16:08", "191.96.137.125", "162");
INSERT INTO `wp_rg_form_view` VALUES("28025", "10", "2016-03-28 11:16:09", "191.96.137.125", "155");
INSERT INTO `wp_rg_form_view` VALUES("28026", "1", "2016-03-28 11:16:40", "46.105.86.213", "4");
INSERT INTO `wp_rg_form_view` VALUES("28027", "3", "2016-03-28 12:01:08", "202.46.55.170", "37");
INSERT INTO `wp_rg_form_view` VALUES("28028", "10", "2016-03-28 12:01:08", "202.46.55.170", "35");
INSERT INTO `wp_rg_form_view` VALUES("28029", "6", "2016-03-28 12:12:08", "5.9.112.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("28030", "3", "2016-03-28 13:04:04", "62.210.162.184", "20");
INSERT INTO `wp_rg_form_view` VALUES("28031", "10", "2016-03-28 13:04:04", "62.210.162.184", "20");
INSERT INTO `wp_rg_form_view` VALUES("28032", "3", "2016-03-28 14:38:58", "66.193.165.57", "12");
INSERT INTO `wp_rg_form_view` VALUES("28033", "10", "2016-03-28 14:38:58", "66.193.165.57", "11");
INSERT INTO `wp_rg_form_view` VALUES("28034", "10", "2016-03-28 15:18:05", "66.249.84.116", "167");
INSERT INTO `wp_rg_form_view` VALUES("28035", "3", "2016-03-28 15:18:05", "66.249.84.116", "169");
INSERT INTO `wp_rg_form_view` VALUES("28036", "2", "2016-03-28 15:22:51", "104.131.115.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("28037", "2", "2016-03-28 16:20:51", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("28038", "3", "2016-03-28 16:20:52", "66.249.74.102", "52");
INSERT INTO `wp_rg_form_view` VALUES("28039", "10", "2016-03-28 16:20:52", "66.249.74.102", "50");
INSERT INTO `wp_rg_form_view` VALUES("28040", "3", "2016-03-28 17:10:35", "68.180.229.244", "32");
INSERT INTO `wp_rg_form_view` VALUES("28041", "10", "2016-03-28 17:10:37", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("28042", "3", "2016-03-28 18:03:58", "194.187.168.220", "148");
INSERT INTO `wp_rg_form_view` VALUES("28043", "10", "2016-03-28 18:03:59", "194.187.168.220", "150");
INSERT INTO `wp_rg_form_view` VALUES("28044", "3", "2016-03-28 19:20:35", "157.55.39.248", "344");
INSERT INTO `wp_rg_form_view` VALUES("28045", "10", "2016-03-28 19:20:38", "157.55.39.248", "333");
INSERT INTO `wp_rg_form_view` VALUES("28046", "9", "2016-03-28 19:55:05", "157.55.39.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("28047", "1", "2016-03-28 19:55:23", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("28048", "3", "2016-03-28 20:10:19", "27.151.63.202", "43");
INSERT INTO `wp_rg_form_view` VALUES("28049", "10", "2016-03-28 20:10:20", "27.151.63.202", "41");
INSERT INTO `wp_rg_form_view` VALUES("28050", "8", "2016-03-28 20:46:03", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("28051", "3", "2016-03-28 21:04:29", "157.55.39.5", "31");
INSERT INTO `wp_rg_form_view` VALUES("28052", "10", "2016-03-28 21:04:29", "157.55.39.5", "30");
INSERT INTO `wp_rg_form_view` VALUES("28053", "9", "2016-03-28 21:55:58", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("28054", "10", "2016-03-28 22:06:17", "66.249.74.106", "815");
INSERT INTO `wp_rg_form_view` VALUES("28055", "3", "2016-03-28 22:06:19", "66.249.74.106", "847");
INSERT INTO `wp_rg_form_view` VALUES("28056", "1", "2016-03-28 22:46:40", "159.203.100.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("28057", "5", "2016-03-28 22:52:59", "159.203.100.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("28058", "3", "2016-03-28 23:00:25", "159.203.100.118", "2119");
INSERT INTO `wp_rg_form_view` VALUES("28059", "10", "2016-03-28 23:00:25", "159.203.100.118", "1994");
INSERT INTO `wp_rg_form_view` VALUES("28060", "6", "2016-03-28 23:01:45", "159.203.100.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("28061", "9", "2016-03-28 23:10:00", "159.203.100.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("28062", "2", "2016-03-28 23:50:31", "159.203.100.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("28063", "3", "2016-03-29 00:00:05", "159.203.100.118", "177");
INSERT INTO `wp_rg_form_view` VALUES("28064", "10", "2016-03-29 00:00:05", "159.203.100.118", "166");
INSERT INTO `wp_rg_form_view` VALUES("28065", "8", "2016-03-29 00:04:44", "159.203.100.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("28066", "3", "2016-03-29 01:19:09", "157.55.39.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("28067", "10", "2016-03-29 01:19:12", "157.55.39.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("28068", "3", "2016-03-29 02:05:17", "207.46.13.0", "60");
INSERT INTO `wp_rg_form_view` VALUES("28069", "10", "2016-03-29 02:05:17", "207.46.13.0", "62");
INSERT INTO `wp_rg_form_view` VALUES("28070", "3", "2016-03-29 03:03:34", "157.55.39.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("28071", "10", "2016-03-29 03:03:34", "157.55.39.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("28072", "1", "2016-03-29 03:08:56", "69.91.198.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("28073", "3", "2016-03-29 04:09:30", "96.50.31.112", "32");
INSERT INTO `wp_rg_form_view` VALUES("28074", "10", "2016-03-29 04:09:31", "96.50.31.112", "30");
INSERT INTO `wp_rg_form_view` VALUES("28075", "6", "2016-03-29 04:49:46", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("28076", "3", "2016-03-29 05:00:01", "157.55.39.134", "42");
INSERT INTO `wp_rg_form_view` VALUES("28077", "10", "2016-03-29 05:00:01", "157.55.39.134", "41");
INSERT INTO `wp_rg_form_view` VALUES("28078", "3", "2016-03-29 06:05:18", "157.55.39.134", "16");
INSERT INTO `wp_rg_form_view` VALUES("28079", "10", "2016-03-29 06:05:19", "157.55.39.134", "15");
INSERT INTO `wp_rg_form_view` VALUES("28080", "9", "2016-03-29 06:22:45", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("28081", "3", "2016-03-29 07:44:52", "191.96.135.177", "12");
INSERT INTO `wp_rg_form_view` VALUES("28082", "10", "2016-03-29 07:44:53", "191.96.135.177", "10");
INSERT INTO `wp_rg_form_view` VALUES("28083", "3", "2016-03-29 08:05:55", "66.249.74.106", "15");
INSERT INTO `wp_rg_form_view` VALUES("28084", "10", "2016-03-29 08:05:55", "66.249.74.106", "15");
INSERT INTO `wp_rg_form_view` VALUES("28085", "9", "2016-03-29 08:20:06", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("28086", "3", "2016-03-29 09:41:14", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("28087", "10", "2016-03-29 09:41:14", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("28088", "3", "2016-03-29 10:10:49", "54.211.225.154", "30");
INSERT INTO `wp_rg_form_view` VALUES("28089", "10", "2016-03-29 10:10:49", "54.211.225.154", "30");
INSERT INTO `wp_rg_form_view` VALUES("28090", "2", "2016-03-29 10:11:12", "54.211.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("28091", "3", "2016-03-29 11:17:08", "66.249.74.104", "15");
INSERT INTO `wp_rg_form_view` VALUES("28092", "10", "2016-03-29 11:17:10", "66.249.74.104", "15");
INSERT INTO `wp_rg_form_view` VALUES("28093", "3", "2016-03-29 12:00:43", "199.21.99.202", "40");
INSERT INTO `wp_rg_form_view` VALUES("28094", "10", "2016-03-29 12:00:43", "199.21.99.202", "45");
INSERT INTO `wp_rg_form_view` VALUES("28095", "1", "2016-03-29 12:19:29", "195.154.44.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("28096", "3", "2016-03-29 13:11:54", "114.98.243.57", "10");
INSERT INTO `wp_rg_form_view` VALUES("28097", "10", "2016-03-29 13:11:54", "114.98.243.57", "10");
INSERT INTO `wp_rg_form_view` VALUES("28098", "3", "2016-03-29 14:06:07", "104.223.38.213", "54");
INSERT INTO `wp_rg_form_view` VALUES("28099", "10", "2016-03-29 14:06:07", "104.223.38.213", "50");
INSERT INTO `wp_rg_form_view` VALUES("28100", "3", "2016-03-29 15:13:25", "157.55.39.134", "50");
INSERT INTO `wp_rg_form_view` VALUES("28101", "10", "2016-03-29 15:13:26", "157.55.39.134", "51");
INSERT INTO `wp_rg_form_view` VALUES("28102", "3", "2016-03-29 16:07:37", "23.228.108.195", "140");
INSERT INTO `wp_rg_form_view` VALUES("28103", "10", "2016-03-29 16:07:37", "23.228.108.195", "141");
INSERT INTO `wp_rg_form_view` VALUES("28104", "1", "2016-03-29 16:09:48", "46.105.86.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("28105", "3", "2016-03-29 17:09:43", "157.55.39.134", "76");
INSERT INTO `wp_rg_form_view` VALUES("28106", "10", "2016-03-29 17:09:43", "157.55.39.134", "75");
INSERT INTO `wp_rg_form_view` VALUES("28107", "3", "2016-03-29 18:05:07", "157.55.39.113", "40");
INSERT INTO `wp_rg_form_view` VALUES("28108", "10", "2016-03-29 18:05:08", "157.55.39.113", "41");
INSERT INTO `wp_rg_form_view` VALUES("28109", "3", "2016-03-29 19:16:40", "96.50.86.78", "25");
INSERT INTO `wp_rg_form_view` VALUES("28110", "10", "2016-03-29 19:16:41", "96.50.86.78", "25");
INSERT INTO `wp_rg_form_view` VALUES("28111", "3", "2016-03-29 20:05:23", "51.255.65.51", "31");
INSERT INTO `wp_rg_form_view` VALUES("28112", "10", "2016-03-29 20:05:24", "51.255.65.51", "30");
INSERT INTO `wp_rg_form_view` VALUES("28113", "1", "2016-03-29 21:37:57", "172.245.113.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("28114", "3", "2016-03-29 21:37:58", "172.245.113.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("28115", "10", "2016-03-29 21:37:59", "172.245.113.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("28116", "3", "2016-03-29 22:00:11", "66.249.74.102", "43");
INSERT INTO `wp_rg_form_view` VALUES("28117", "10", "2016-03-29 22:00:11", "66.249.74.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("28118", "3", "2016-03-29 23:05:13", "157.55.39.113", "47");
INSERT INTO `wp_rg_form_view` VALUES("28119", "10", "2016-03-29 23:05:15", "157.55.39.113", "45");
INSERT INTO `wp_rg_form_view` VALUES("28120", "3", "2016-03-30 00:12:26", "51.255.65.63", "15");
INSERT INTO `wp_rg_form_view` VALUES("28121", "10", "2016-03-30 00:12:26", "51.255.65.63", "15");
INSERT INTO `wp_rg_form_view` VALUES("28122", "3", "2016-03-30 01:01:15", "46.119.127.4", "65");
INSERT INTO `wp_rg_form_view` VALUES("28123", "10", "2016-03-30 01:01:15", "46.119.127.4", "65");
INSERT INTO `wp_rg_form_view` VALUES("28124", "3", "2016-03-30 02:07:24", "66.249.74.104", "51");
INSERT INTO `wp_rg_form_view` VALUES("28125", "10", "2016-03-30 02:07:24", "66.249.74.104", "54");
INSERT INTO `wp_rg_form_view` VALUES("28126", "3", "2016-03-30 03:09:49", "51.255.65.2", "16");
INSERT INTO `wp_rg_form_view` VALUES("28127", "10", "2016-03-30 03:09:49", "51.255.65.2", "15");
INSERT INTO `wp_rg_form_view` VALUES("28128", "3", "2016-03-30 04:00:18", "96.50.73.183", "57");
INSERT INTO `wp_rg_form_view` VALUES("28129", "10", "2016-03-30 04:00:18", "96.50.73.183", "55");
INSERT INTO `wp_rg_form_view` VALUES("28130", "3", "2016-03-30 05:50:01", "141.8.143.242", "6");
INSERT INTO `wp_rg_form_view` VALUES("28131", "10", "2016-03-30 05:50:03", "141.8.143.242", "5");
INSERT INTO `wp_rg_form_view` VALUES("28132", "3", "2016-03-30 06:01:35", "66.249.74.104", "32");
INSERT INTO `wp_rg_form_view` VALUES("28133", "10", "2016-03-30 06:01:38", "66.249.74.104", "35");
INSERT INTO `wp_rg_form_view` VALUES("28134", "1", "2016-03-30 06:26:44", "23.104.184.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("28135", "3", "2016-03-30 07:20:10", "51.255.65.29", "36");
INSERT INTO `wp_rg_form_view` VALUES("28136", "10", "2016-03-30 07:51:18", "5.248.253.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("28137", "3", "2016-03-30 08:07:06", "66.249.74.106", "11");
INSERT INTO `wp_rg_form_view` VALUES("28138", "10", "2016-03-30 08:07:06", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("28139", "3", "2016-03-30 09:05:37", "89.35.198.83", "84");
INSERT INTO `wp_rg_form_view` VALUES("28140", "10", "2016-03-30 09:05:38", "89.35.198.83", "81");
INSERT INTO `wp_rg_form_view` VALUES("28141", "3", "2016-03-30 10:43:55", "216.45.57.147", "23");
INSERT INTO `wp_rg_form_view` VALUES("28142", "10", "2016-03-30 10:43:56", "216.45.57.147", "20");
INSERT INTO `wp_rg_form_view` VALUES("28143", "2", "2016-03-30 11:17:19", "104.223.38.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("28144", "3", "2016-03-30 11:17:20", "104.223.38.177", "26");
INSERT INTO `wp_rg_form_view` VALUES("28145", "10", "2016-03-30 11:17:20", "104.223.38.177", "25");
INSERT INTO `wp_rg_form_view` VALUES("28146", "3", "2016-03-30 12:24:02", "66.249.74.102", "57");
INSERT INTO `wp_rg_form_view` VALUES("28147", "10", "2016-03-30 12:24:02", "66.249.74.102", "55");
INSERT INTO `wp_rg_form_view` VALUES("28148", "1", "2016-03-30 12:39:47", "46.105.86.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("28149", "3", "2016-03-30 13:07:29", "51.255.65.57", "20");
INSERT INTO `wp_rg_form_view` VALUES("28150", "10", "2016-03-30 13:07:29", "51.255.65.57", "20");
INSERT INTO `wp_rg_form_view` VALUES("28151", "1", "2016-03-30 13:09:01", "5.231.30.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("28152", "3", "2016-03-30 14:21:31", "62.210.162.184", "75");
INSERT INTO `wp_rg_form_view` VALUES("28153", "10", "2016-03-30 14:21:31", "62.210.162.184", "75");
INSERT INTO `wp_rg_form_view` VALUES("28154", "3", "2016-03-30 15:06:31", "66.249.74.106", "52");
INSERT INTO `wp_rg_form_view` VALUES("28155", "10", "2016-03-30 15:06:31", "66.249.74.106", "53");
INSERT INTO `wp_rg_form_view` VALUES("28156", "1", "2016-03-30 15:58:15", "192.210.226.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("28157", "3", "2016-03-30 16:03:29", "80.254.150.79", "103");
INSERT INTO `wp_rg_form_view` VALUES("28158", "10", "2016-03-30 16:03:29", "80.254.150.79", "101");
INSERT INTO `wp_rg_form_view` VALUES("28159", "1", "2016-03-30 16:37:09", "188.214.50.150", "4");
INSERT INTO `wp_rg_form_view` VALUES("28160", "3", "2016-03-30 17:00:35", "64.180.72.205", "57");
INSERT INTO `wp_rg_form_view` VALUES("28161", "10", "2016-03-30 17:00:35", "64.180.72.205", "51");
INSERT INTO `wp_rg_form_view` VALUES("28162", "1", "2016-03-30 17:07:01", "207.34.170.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("28163", "3", "2016-03-30 18:09:19", "24.69.69.123", "35");
INSERT INTO `wp_rg_form_view` VALUES("28164", "10", "2016-03-30 18:09:20", "24.69.69.123", "35");
INSERT INTO `wp_rg_form_view` VALUES("28165", "1", "2016-03-30 18:25:43", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("28166", "3", "2016-03-30 19:21:29", "66.249.74.104", "31");
INSERT INTO `wp_rg_form_view` VALUES("28167", "10", "2016-03-30 19:21:29", "66.249.74.104", "32");
INSERT INTO `wp_rg_form_view` VALUES("28168", "1", "2016-03-30 20:06:27", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("28169", "3", "2016-03-30 20:06:28", "62.210.162.184", "46");
INSERT INTO `wp_rg_form_view` VALUES("28170", "10", "2016-03-30 20:06:28", "62.210.162.184", "48");
INSERT INTO `wp_rg_form_view` VALUES("28171", "3", "2016-03-30 21:00:50", "66.249.74.102", "45");
INSERT INTO `wp_rg_form_view` VALUES("28172", "10", "2016-03-30 21:00:50", "66.249.74.102", "46");
INSERT INTO `wp_rg_form_view` VALUES("28173", "7", "2016-03-30 21:37:54", "157.55.39.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("28174", "1", "2016-03-30 21:48:53", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("28175", "3", "2016-03-30 22:31:33", "134.87.160.8", "12");
INSERT INTO `wp_rg_form_view` VALUES("28176", "10", "2016-03-30 22:31:34", "134.87.160.8", "10");
INSERT INTO `wp_rg_form_view` VALUES("28177", "3", "2016-03-30 23:00:00", "134.87.160.8", "120");
INSERT INTO `wp_rg_form_view` VALUES("28178", "10", "2016-03-30 23:00:01", "134.87.160.8", "115");
INSERT INTO `wp_rg_form_view` VALUES("28179", "1", "2016-03-30 23:19:11", "46.105.86.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("28180", "3", "2016-03-31 00:19:33", "46.119.127.4", "358");
INSERT INTO `wp_rg_form_view` VALUES("28181", "10", "2016-03-31 00:19:33", "46.119.127.4", "349");
INSERT INTO `wp_rg_form_view` VALUES("28182", "9", "2016-03-31 00:27:38", "157.55.39.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("28183", "1", "2016-03-31 00:28:46", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("28184", "3", "2016-03-31 01:01:23", "46.119.117.207", "90");
INSERT INTO `wp_rg_form_view` VALUES("28185", "10", "2016-03-31 01:01:23", "46.119.117.207", "90");
INSERT INTO `wp_rg_form_view` VALUES("28186", "3", "2016-03-31 02:16:53", "157.55.39.134", "115");
INSERT INTO `wp_rg_form_view` VALUES("28187", "10", "2016-03-31 02:16:53", "157.55.39.134", "115");
INSERT INTO `wp_rg_form_view` VALUES("28188", "3", "2016-03-31 03:10:25", "173.169.34.241", "30");
INSERT INTO `wp_rg_form_view` VALUES("28189", "10", "2016-03-31 03:10:25", "173.169.34.241", "38");
INSERT INTO `wp_rg_form_view` VALUES("28190", "2", "2016-03-31 04:02:29", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("28191", "3", "2016-03-31 04:02:29", "66.249.74.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("28192", "10", "2016-03-31 04:02:29", "66.249.74.104", "26");
INSERT INTO `wp_rg_form_view` VALUES("28193", "3", "2016-03-31 05:46:07", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("28194", "10", "2016-03-31 05:46:08", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("28195", "3", "2016-03-31 06:03:45", "202.46.57.124", "11");
INSERT INTO `wp_rg_form_view` VALUES("28196", "10", "2016-03-31 06:03:45", "202.46.57.124", "10");
INSERT INTO `wp_rg_form_view` VALUES("28197", "10", "2016-03-31 07:02:40", "66.249.74.104", "46");
INSERT INTO `wp_rg_form_view` VALUES("28198", "3", "2016-03-31 07:02:43", "66.249.74.104", "36");
INSERT INTO `wp_rg_form_view` VALUES("28199", "8", "2016-03-31 07:08:32", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("28200", "3", "2016-03-31 08:28:41", "68.180.229.244", "11");
INSERT INTO `wp_rg_form_view` VALUES("28201", "10", "2016-03-31 08:28:42", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("28202", "3", "2016-03-31 09:55:35", "51.255.65.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("28203", "10", "2016-03-31 09:55:36", "51.255.65.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("28204", "3", "2016-03-31 10:12:53", "164.132.161.91", "16");
INSERT INTO `wp_rg_form_view` VALUES("28205", "10", "2016-03-31 10:12:53", "164.132.161.91", "15");
INSERT INTO `wp_rg_form_view` VALUES("28206", "3", "2016-03-31 11:28:00", "157.55.39.138", "23");
INSERT INTO `wp_rg_form_view` VALUES("28207", "10", "2016-03-31 11:28:01", "157.55.39.138", "20");
INSERT INTO `wp_rg_form_view` VALUES("28208", "1", "2016-03-31 11:53:36", "192.99.166.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("28209", "3", "2016-03-31 12:27:02", "157.55.39.215", "18");
INSERT INTO `wp_rg_form_view` VALUES("28210", "10", "2016-03-31 12:27:03", "157.55.39.215", "15");
INSERT INTO `wp_rg_form_view` VALUES("28211", "3", "2016-03-31 13:41:52", "202.46.57.183", "16");
INSERT INTO `wp_rg_form_view` VALUES("28212", "10", "2016-03-31 13:41:53", "202.46.57.183", "15");
INSERT INTO `wp_rg_form_view` VALUES("28213", "2", "2016-03-31 13:58:14", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("28214", "3", "2016-03-31 14:25:28", "157.55.39.113", "42");
INSERT INTO `wp_rg_form_view` VALUES("28215", "10", "2016-03-31 14:25:30", "157.55.39.113", "40");
INSERT INTO `wp_rg_form_view` VALUES("28216", "6", "2016-03-31 15:41:29", "66.249.74.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("28217", "3", "2016-03-31 15:41:30", "66.249.74.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("28218", "10", "2016-03-31 15:41:30", "66.249.74.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("28219", "9", "2016-03-31 16:01:30", "114.98.247.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("28220", "3", "2016-03-31 16:01:30", "114.98.247.234", "35");
INSERT INTO `wp_rg_form_view` VALUES("28221", "10", "2016-03-31 16:01:30", "114.98.247.234", "35");
INSERT INTO `wp_rg_form_view` VALUES("28222", "3", "2016-03-31 17:08:39", "207.194.133.9", "61");
INSERT INTO `wp_rg_form_view` VALUES("28223", "10", "2016-03-31 17:08:40", "207.194.133.9", "64");
INSERT INTO `wp_rg_form_view` VALUES("28224", "9", "2016-03-31 17:30:05", "66.249.74.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("28225", "2", "2016-03-31 17:31:13", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("28226", "3", "2016-03-31 18:18:34", "207.164.20.42", "47");
INSERT INTO `wp_rg_form_view` VALUES("28227", "10", "2016-03-31 18:18:35", "207.164.20.42", "47");
INSERT INTO `wp_rg_form_view` VALUES("28228", "3", "2016-03-31 19:02:48", "157.55.39.142", "44");
INSERT INTO `wp_rg_form_view` VALUES("28229", "10", "2016-03-31 19:02:49", "157.55.39.142", "40");
INSERT INTO `wp_rg_form_view` VALUES("28230", "3", "2016-03-31 20:05:09", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28231", "10", "2016-03-31 20:05:09", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("28232", "3", "2016-03-31 21:08:40", "68.180.229.244", "106");
INSERT INTO `wp_rg_form_view` VALUES("28233", "10", "2016-03-31 21:08:40", "68.180.229.244", "100");
INSERT INTO `wp_rg_form_view` VALUES("28234", "1", "2016-03-31 21:44:14", "207.46.13.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("28235", "1", "2016-03-31 22:03:43", "107.150.79.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("28236", "3", "2016-03-31 22:03:44", "107.150.79.176", "48");
INSERT INTO `wp_rg_form_view` VALUES("28237", "10", "2016-03-31 22:03:44", "107.150.79.176", "45");
INSERT INTO `wp_rg_form_view` VALUES("28238", "3", "2016-03-31 23:22:28", "5.248.253.133", "39");
INSERT INTO `wp_rg_form_view` VALUES("28239", "3", "2016-03-31 23:22:28", "5.248.253.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("28240", "10", "2016-03-31 23:22:29", "5.248.253.133", "40");
INSERT INTO `wp_rg_form_view` VALUES("28241", "10", "2016-04-01 00:15:58", "199.16.156.126", "41");
INSERT INTO `wp_rg_form_view` VALUES("28242", "3", "2016-04-01 00:15:58", "199.16.156.126", "42");
INSERT INTO `wp_rg_form_view` VALUES("28243", "1", "2016-04-01 00:41:13", "46.105.86.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("28244", "3", "2016-04-01 01:19:40", "154.20.232.23", "15");
INSERT INTO `wp_rg_form_view` VALUES("28245", "10", "2016-04-01 01:19:40", "154.20.232.23", "16");
INSERT INTO `wp_rg_form_view` VALUES("28246", "3", "2016-04-01 02:00:32", "151.80.31.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("28247", "10", "2016-04-01 02:00:33", "151.80.31.102", "40");
INSERT INTO `wp_rg_form_view` VALUES("28248", "3", "2016-04-01 03:00:28", "77.75.76.167", "301");
INSERT INTO `wp_rg_form_view` VALUES("28249", "10", "2016-04-01 03:00:29", "77.75.76.167", "281");
INSERT INTO `wp_rg_form_view` VALUES("28250", "2", "2016-04-01 03:08:46", "144.76.80.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("28251", "6", "2016-04-01 03:13:25", "157.55.39.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("28252", "9", "2016-04-01 03:13:33", "157.55.39.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("28253", "7", "2016-04-01 03:34:25", "157.55.39.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("28254", "3", "2016-04-01 04:03:57", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("28255", "10", "2016-04-01 04:03:57", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("28256", "3", "2016-04-01 05:21:48", "104.223.17.229", "37");
INSERT INTO `wp_rg_form_view` VALUES("28257", "10", "2016-04-01 05:21:49", "104.223.17.229", "35");
INSERT INTO `wp_rg_form_view` VALUES("28258", "3", "2016-04-01 06:10:24", "79.6.137.67", "177");
INSERT INTO `wp_rg_form_view` VALUES("28259", "10", "2016-04-01 06:10:25", "79.6.137.67", "175");
INSERT INTO `wp_rg_form_view` VALUES("28260", "2", "2016-04-01 06:11:21", "79.6.137.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("28261", "3", "2016-04-01 07:35:50", "202.46.55.147", "6");
INSERT INTO `wp_rg_form_view` VALUES("28262", "10", "2016-04-01 07:35:51", "202.46.55.147", "5");
INSERT INTO `wp_rg_form_view` VALUES("28263", "3", "2016-04-01 08:03:08", "157.55.39.204", "37");
INSERT INTO `wp_rg_form_view` VALUES("28264", "10", "2016-04-01 08:03:08", "157.55.39.204", "35");
INSERT INTO `wp_rg_form_view` VALUES("28265", "1", "2016-04-01 08:48:17", "46.105.86.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("28266", "3", "2016-04-01 09:00:52", "188.42.240.119", "45");
INSERT INTO `wp_rg_form_view` VALUES("28267", "10", "2016-04-01 09:00:52", "188.42.240.119", "46");
INSERT INTO `wp_rg_form_view` VALUES("28268", "2", "2016-04-01 10:46:54", "40.77.167.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("28269", "3", "2016-04-01 10:46:56", "40.77.167.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("28270", "10", "2016-04-01 10:46:56", "40.77.167.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("28271", "3", "2016-04-01 12:02:00", "68.180.229.244", "109");
INSERT INTO `wp_rg_form_view` VALUES("28272", "10", "2016-04-01 12:02:01", "68.180.229.244", "101");
INSERT INTO `wp_rg_form_view` VALUES("28273", "3", "2016-04-01 13:09:40", "68.180.229.244", "23");
INSERT INTO `wp_rg_form_view` VALUES("28274", "10", "2016-04-01 13:09:40", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("28275", "1", "2016-04-01 14:30:56", "46.105.86.213", "4");
INSERT INTO `wp_rg_form_view` VALUES("28276", "3", "2016-04-01 14:30:57", "46.105.86.213", "80");
INSERT INTO `wp_rg_form_view` VALUES("28277", "10", "2016-04-01 14:30:58", "46.105.86.213", "75");
INSERT INTO `wp_rg_form_view` VALUES("28278", "10", "2016-04-01 15:39:35", "207.194.133.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("28279", "3", "2016-04-01 15:39:37", "207.194.133.9", "10");
INSERT INTO `wp_rg_form_view` VALUES("28280", "3", "2016-04-01 16:25:22", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("28281", "10", "2016-04-01 16:25:22", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("28282", "3", "2016-04-01 17:01:53", "66.249.74.102", "30");
INSERT INTO `wp_rg_form_view` VALUES("28283", "10", "2016-04-01 17:01:53", "66.249.74.102", "30");
INSERT INTO `wp_rg_form_view` VALUES("28284", "3", "2016-04-01 18:27:59", "66.249.74.104", "71");
INSERT INTO `wp_rg_form_view` VALUES("28285", "10", "2016-04-01 18:28:00", "66.249.74.104", "70");
INSERT INTO `wp_rg_form_view` VALUES("28286", "3", "2016-04-01 19:07:07", "64.114.199.100", "17");
INSERT INTO `wp_rg_form_view` VALUES("28287", "10", "2016-04-01 19:07:07", "64.114.199.100", "20");
INSERT INTO `wp_rg_form_view` VALUES("28288", "10", "2016-04-01 20:05:52", "207.194.133.9", "81");
INSERT INTO `wp_rg_form_view` VALUES("28289", "3", "2016-04-01 20:05:52", "207.194.133.9", "83");
INSERT INTO `wp_rg_form_view` VALUES("28290", "3", "2016-04-01 21:07:59", "80.254.150.79", "78");
INSERT INTO `wp_rg_form_view` VALUES("28291", "10", "2016-04-01 21:08:00", "80.254.150.79", "75");
INSERT INTO `wp_rg_form_view` VALUES("28292", "3", "2016-04-01 22:04:46", "62.210.162.184", "93");
INSERT INTO `wp_rg_form_view` VALUES("28293", "10", "2016-04-01 22:04:46", "62.210.162.184", "92");
INSERT INTO `wp_rg_form_view` VALUES("28294", "3", "2016-04-01 23:14:26", "66.249.74.106", "57");
INSERT INTO `wp_rg_form_view` VALUES("28295", "10", "2016-04-01 23:14:32", "66.249.74.106", "55");
INSERT INTO `wp_rg_form_view` VALUES("28296", "1", "2016-04-01 23:20:40", "5.175.201.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("28297", "3", "2016-04-02 00:17:17", "220.181.108.86", "37");
INSERT INTO `wp_rg_form_view` VALUES("28298", "10", "2016-04-02 00:17:17", "220.181.108.86", "30");
INSERT INTO `wp_rg_form_view` VALUES("28299", "3", "2016-04-02 01:05:10", "66.249.74.106", "35");
INSERT INTO `wp_rg_form_view` VALUES("28300", "10", "2016-04-02 01:05:10", "66.249.74.106", "35");
INSERT INTO `wp_rg_form_view` VALUES("28301", "3", "2016-04-02 02:00:51", "62.210.162.184", "133");
INSERT INTO `wp_rg_form_view` VALUES("28302", "10", "2016-04-02 02:00:51", "62.210.162.184", "131");
INSERT INTO `wp_rg_form_view` VALUES("28303", "2", "2016-04-02 02:11:57", "86.57.167.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("28304", "3", "2016-04-02 03:25:03", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("28305", "10", "2016-04-02 03:25:04", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28306", "3", "2016-04-02 04:00:10", "164.132.161.44", "26");
INSERT INTO `wp_rg_form_view` VALUES("28307", "10", "2016-04-02 04:00:10", "164.132.161.44", "21");
INSERT INTO `wp_rg_form_view` VALUES("28308", "3", "2016-04-02 05:13:33", "108.180.119.203", "36");
INSERT INTO `wp_rg_form_view` VALUES("28309", "10", "2016-04-02 05:13:33", "108.180.119.203", "27");
INSERT INTO `wp_rg_form_view` VALUES("28310", "3", "2016-04-02 06:18:44", "40.77.167.39", "31");
INSERT INTO `wp_rg_form_view` VALUES("28311", "10", "2016-04-02 06:18:45", "40.77.167.39", "30");
INSERT INTO `wp_rg_form_view` VALUES("28312", "8", "2016-04-02 06:19:34", "202.46.51.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("28313", "1", "2016-04-02 06:41:50", "46.105.86.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("28314", "3", "2016-04-02 07:26:14", "51.255.65.59", "126");
INSERT INTO `wp_rg_form_view` VALUES("28315", "10", "2016-04-02 07:26:15", "51.255.65.59", "125");
INSERT INTO `wp_rg_form_view` VALUES("28316", "3", "2016-04-02 08:03:59", "40.77.167.77", "56");
INSERT INTO `wp_rg_form_view` VALUES("28317", "10", "2016-04-02 08:03:59", "40.77.167.77", "50");
INSERT INTO `wp_rg_form_view` VALUES("28318", "5", "2016-04-02 08:47:16", "164.132.161.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("28319", "3", "2016-04-02 09:02:40", "66.249.74.104", "56");
INSERT INTO `wp_rg_form_view` VALUES("28320", "10", "2016-04-02 09:02:40", "66.249.74.104", "55");
INSERT INTO `wp_rg_form_view` VALUES("28321", "3", "2016-04-02 11:17:32", "202.46.58.186", "6");
INSERT INTO `wp_rg_form_view` VALUES("28322", "10", "2016-04-02 11:17:34", "202.46.58.186", "5");
INSERT INTO `wp_rg_form_view` VALUES("28323", "3", "2016-04-02 12:17:20", "114.97.197.156", "65");
INSERT INTO `wp_rg_form_view` VALUES("28324", "10", "2016-04-02 12:17:20", "114.97.197.156", "60");
INSERT INTO `wp_rg_form_view` VALUES("28325", "1", "2016-04-02 12:31:51", "46.105.86.213", "4");
INSERT INTO `wp_rg_form_view` VALUES("28326", "3", "2016-04-02 13:16:40", "68.180.229.244", "67");
INSERT INTO `wp_rg_form_view` VALUES("28327", "10", "2016-04-02 13:16:41", "68.180.229.244", "60");
INSERT INTO `wp_rg_form_view` VALUES("28328", "3", "2016-04-02 14:03:12", "157.55.39.164", "25");
INSERT INTO `wp_rg_form_view` VALUES("28329", "10", "2016-04-02 14:03:12", "157.55.39.164", "25");
INSERT INTO `wp_rg_form_view` VALUES("28330", "8", "2016-04-02 14:59:05", "66.249.74.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("28331", "1", "2016-04-02 15:14:17", "46.105.86.213", "5");
INSERT INTO `wp_rg_form_view` VALUES("28332", "3", "2016-04-02 15:14:17", "46.105.86.213", "129");
INSERT INTO `wp_rg_form_view` VALUES("28333", "10", "2016-04-02 15:14:18", "46.105.86.213", "125");
INSERT INTO `wp_rg_form_view` VALUES("28334", "3", "2016-04-02 16:06:40", "207.46.13.35", "10");
INSERT INTO `wp_rg_form_view` VALUES("28335", "10", "2016-04-02 16:06:41", "207.46.13.35", "10");
INSERT INTO `wp_rg_form_view` VALUES("28336", "3", "2016-04-02 17:09:58", "108.180.31.157", "40");
INSERT INTO `wp_rg_form_view` VALUES("28337", "10", "2016-04-02 17:09:58", "108.180.31.157", "40");
INSERT INTO `wp_rg_form_view` VALUES("28338", "3", "2016-04-02 18:00:34", "66.249.74.102", "31");
INSERT INTO `wp_rg_form_view` VALUES("28339", "10", "2016-04-02 18:00:34", "66.249.74.102", "30");
INSERT INTO `wp_rg_form_view` VALUES("28340", "3", "2016-04-02 19:11:57", "164.132.161.35", "46");
INSERT INTO `wp_rg_form_view` VALUES("28341", "10", "2016-04-02 19:11:57", "164.132.161.35", "45");
INSERT INTO `wp_rg_form_view` VALUES("28342", "3", "2016-04-02 20:01:57", "220.250.25.130", "88");
INSERT INTO `wp_rg_form_view` VALUES("28343", "10", "2016-04-02 20:01:57", "220.250.25.130", "86");
INSERT INTO `wp_rg_form_view` VALUES("28344", "3", "2016-04-02 21:28:54", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28345", "10", "2016-04-02 21:28:56", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28346", "3", "2016-04-02 22:23:48", "66.249.74.106", "16");
INSERT INTO `wp_rg_form_view` VALUES("28347", "10", "2016-04-02 22:23:51", "66.249.74.106", "17");
INSERT INTO `wp_rg_form_view` VALUES("28348", "3", "2016-04-02 23:19:24", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("28349", "10", "2016-04-02 23:19:25", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("28350", "3", "2016-04-03 00:25:08", "68.180.229.244", "27");
INSERT INTO `wp_rg_form_view` VALUES("28351", "2", "2016-04-03 00:31:18", "213.5.70.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("28352", "10", "2016-04-03 00:31:18", "213.5.70.236", "25");
INSERT INTO `wp_rg_form_view` VALUES("28353", "3", "2016-04-03 01:01:36", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("28354", "10", "2016-04-03 01:01:36", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("28355", "3", "2016-04-03 02:29:27", "66.249.74.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("28356", "10", "2016-04-03 02:29:27", "66.249.74.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("28357", "1", "2016-04-03 02:43:20", "164.132.161.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("28358", "9", "2016-04-03 03:24:15", "89.44.43.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("28359", "3", "2016-04-03 03:24:16", "89.44.43.125", "35");
INSERT INTO `wp_rg_form_view` VALUES("28360", "10", "2016-04-03 03:24:16", "89.44.43.125", "35");
INSERT INTO `wp_rg_form_view` VALUES("28361", "3", "2016-04-03 04:19:39", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("28362", "10", "2016-04-03 04:19:40", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("28363", "3", "2016-04-03 05:20:30", "51.255.65.74", "71");
INSERT INTO `wp_rg_form_view` VALUES("28364", "10", "2016-04-03 05:20:30", "51.255.65.74", "70");
INSERT INTO `wp_rg_form_view` VALUES("28365", "9", "2016-04-03 06:34:14", "104.223.17.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("28366", "3", "2016-04-03 06:34:15", "104.223.17.229", "21");
INSERT INTO `wp_rg_form_view` VALUES("28367", "10", "2016-04-03 06:34:15", "104.223.17.229", "21");
INSERT INTO `wp_rg_form_view` VALUES("28368", "3", "2016-04-03 08:03:54", "68.180.229.244", "22");
INSERT INTO `wp_rg_form_view` VALUES("28369", "10", "2016-04-03 08:15:35", "51.255.65.16", "20");
INSERT INTO `wp_rg_form_view` VALUES("28370", "2", "2016-04-03 09:10:14", "216.45.60.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("28371", "3", "2016-04-03 09:10:15", "216.45.60.53", "30");
INSERT INTO `wp_rg_form_view` VALUES("28372", "10", "2016-04-03 09:10:15", "216.45.60.53", "30");
INSERT INTO `wp_rg_form_view` VALUES("28373", "3", "2016-04-03 10:15:47", "51.255.65.97", "10");
INSERT INTO `wp_rg_form_view` VALUES("28374", "10", "2016-04-03 10:15:49", "51.255.65.97", "10");
INSERT INTO `wp_rg_form_view` VALUES("28375", "1", "2016-04-03 10:34:39", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("28376", "3", "2016-04-03 12:00:01", "207.46.13.132", "25");
INSERT INTO `wp_rg_form_view` VALUES("28377", "10", "2016-04-03 12:00:02", "207.46.13.132", "26");
INSERT INTO `wp_rg_form_view` VALUES("28378", "3", "2016-04-03 13:06:27", "104.223.38.171", "27");
INSERT INTO `wp_rg_form_view` VALUES("28379", "10", "2016-04-03 13:06:28", "104.223.38.171", "26");
INSERT INTO `wp_rg_form_view` VALUES("28380", "3", "2016-04-03 14:02:27", "66.249.74.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("28381", "10", "2016-04-03 14:02:27", "66.249.74.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("28382", "3", "2016-04-03 15:16:05", "109.86.72.191", "35");
INSERT INTO `wp_rg_form_view` VALUES("28383", "10", "2016-04-03 15:16:06", "109.86.72.191", "35");
INSERT INTO `wp_rg_form_view` VALUES("28384", "9", "2016-04-03 15:43:38", "207.46.13.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("28385", "9", "2016-04-03 16:03:31", "114.98.227.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("28386", "3", "2016-04-03 16:03:31", "114.98.227.173", "40");
INSERT INTO `wp_rg_form_view` VALUES("28387", "10", "2016-04-03 16:03:31", "114.98.227.173", "40");
INSERT INTO `wp_rg_form_view` VALUES("28388", "10", "2016-04-03 17:10:24", "100.43.91.26", "57");
INSERT INTO `wp_rg_form_view` VALUES("28389", "3", "2016-04-03 17:10:26", "100.43.91.26", "56");
INSERT INTO `wp_rg_form_view` VALUES("28390", "8", "2016-04-03 17:35:46", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("28391", "3", "2016-04-03 18:22:42", "207.46.13.132", "36");
INSERT INTO `wp_rg_form_view` VALUES("28392", "10", "2016-04-03 18:22:43", "207.46.13.132", "35");
INSERT INTO `wp_rg_form_view` VALUES("28393", "1", "2016-04-03 19:24:04", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("28394", "3", "2016-04-03 19:24:05", "192.99.166.236", "26");
INSERT INTO `wp_rg_form_view` VALUES("28395", "10", "2016-04-03 19:24:05", "192.99.166.236", "25");
INSERT INTO `wp_rg_form_view` VALUES("28396", "3", "2016-04-03 20:18:09", "96.50.68.167", "31");
INSERT INTO `wp_rg_form_view` VALUES("28397", "10", "2016-04-03 20:18:09", "96.50.68.167", "30");
INSERT INTO `wp_rg_form_view` VALUES("28398", "3", "2016-04-03 21:12:04", "114.98.227.173", "15");
INSERT INTO `wp_rg_form_view` VALUES("28399", "10", "2016-04-03 21:12:04", "114.98.227.173", "15");
INSERT INTO `wp_rg_form_view` VALUES("28400", "3", "2016-04-03 22:16:31", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("28401", "10", "2016-04-03 22:16:32", "66.249.74.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("28402", "3", "2016-04-03 23:13:56", "202.46.53.120", "32");
INSERT INTO `wp_rg_form_view` VALUES("28403", "10", "2016-04-03 23:13:56", "202.46.53.120", "30");
INSERT INTO `wp_rg_form_view` VALUES("28404", "3", "2016-04-04 00:23:36", "142.4.218.201", "10");
INSERT INTO `wp_rg_form_view` VALUES("28405", "10", "2016-04-04 00:23:37", "142.4.218.201", "10");
INSERT INTO `wp_rg_form_view` VALUES("28406", "3", "2016-04-04 01:18:33", "142.4.218.201", "12");
INSERT INTO `wp_rg_form_view` VALUES("28407", "10", "2016-04-04 01:18:33", "142.4.218.201", "11");
INSERT INTO `wp_rg_form_view` VALUES("28408", "3", "2016-04-04 02:09:46", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("28409", "10", "2016-04-04 02:09:46", "66.249.74.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("28410", "3", "2016-04-04 03:02:07", "157.55.39.133", "334");
INSERT INTO `wp_rg_form_view` VALUES("28411", "10", "2016-04-04 03:02:07", "157.55.39.133", "334");
INSERT INTO `wp_rg_form_view` VALUES("28412", "9", "2016-04-04 03:53:34", "207.46.13.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("28413", "1", "2016-04-04 03:53:49", "207.46.13.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("28414", "2", "2016-04-04 04:03:37", "142.4.218.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("28415", "3", "2016-04-04 04:03:37", "142.4.218.201", "65");
INSERT INTO `wp_rg_form_view` VALUES("28416", "10", "2016-04-04 04:03:37", "142.4.218.201", "65");
INSERT INTO `wp_rg_form_view` VALUES("28417", "3", "2016-04-04 05:01:22", "164.132.161.2", "171");
INSERT INTO `wp_rg_form_view` VALUES("28418", "10", "2016-04-04 05:01:23", "164.132.161.2", "171");
INSERT INTO `wp_rg_form_view` VALUES("28419", "2", "2016-04-04 05:57:25", "64.251.182.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("28420", "3", "2016-04-04 06:02:27", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("28421", "10", "2016-04-04 06:02:27", "66.249.74.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("28422", "3", "2016-04-04 07:06:42", "157.55.39.13", "30");
INSERT INTO `wp_rg_form_view` VALUES("28423", "10", "2016-04-04 07:06:42", "157.55.39.13", "30");
INSERT INTO `wp_rg_form_view` VALUES("28424", "3", "2016-04-04 08:21:16", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28425", "10", "2016-04-04 08:21:16", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28426", "3", "2016-04-04 09:49:29", "46.119.118.112", "181");
INSERT INTO `wp_rg_form_view` VALUES("28427", "3", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("28428", "3", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("28429", "3", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("28430", "3", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("28431", "10", "2016-04-04 09:49:29", "46.119.118.112", "183");
INSERT INTO `wp_rg_form_view` VALUES("28432", "10", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("28433", "10", "2016-04-04 09:49:29", "46.119.118.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("28434", "3", "2016-04-04 10:02:05", "207.46.13.176", "16");
INSERT INTO `wp_rg_form_view` VALUES("28435", "10", "2016-04-04 10:02:05", "207.46.13.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("28436", "3", "2016-04-04 11:01:22", "109.86.72.191", "263");
INSERT INTO `wp_rg_form_view` VALUES("28437", "10", "2016-04-04 11:01:23", "109.86.72.191", "255");
INSERT INTO `wp_rg_form_view` VALUES("28438", "1", "2016-04-04 11:08:29", "62.210.84.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("28439", "2", "2016-04-04 11:39:30", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("28440", "3", "2016-04-04 12:44:28", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("28441", "10", "2016-04-04 12:44:29", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("28442", "3", "2016-04-04 13:25:34", "202.46.53.176", "68");
INSERT INTO `wp_rg_form_view` VALUES("28443", "10", "2016-04-04 13:25:34", "202.46.53.176", "65");
INSERT INTO `wp_rg_form_view` VALUES("28444", "1", "2016-04-04 13:43:37", "62.210.84.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("28445", "3", "2016-04-04 14:05:29", "114.98.227.173", "21");
INSERT INTO `wp_rg_form_view` VALUES("28446", "10", "2016-04-04 14:05:29", "114.98.227.173", "20");
INSERT INTO `wp_rg_form_view` VALUES("28447", "3", "2016-04-04 15:15:17", "109.86.72.191", "46");
INSERT INTO `wp_rg_form_view` VALUES("28448", "10", "2016-04-04 15:15:17", "109.86.72.191", "45");
INSERT INTO `wp_rg_form_view` VALUES("28449", "10", "2016-04-04 16:01:41", "24.108.147.59", "62");
INSERT INTO `wp_rg_form_view` VALUES("28450", "3", "2016-04-04 16:01:41", "24.108.147.59", "56");
INSERT INTO `wp_rg_form_view` VALUES("28451", "3", "2016-04-04 17:02:20", "184.66.235.100", "46");
INSERT INTO `wp_rg_form_view` VALUES("28452", "10", "2016-04-04 17:02:20", "184.66.235.100", "45");
INSERT INTO `wp_rg_form_view` VALUES("28453", "1", "2016-04-04 17:08:56", "184.71.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("28454", "3", "2016-04-04 18:21:55", "24.244.23.174", "45");
INSERT INTO `wp_rg_form_view` VALUES("28455", "10", "2016-04-04 18:22:02", "24.244.23.174", "45");
INSERT INTO `wp_rg_form_view` VALUES("28456", "10", "2016-04-04 19:12:03", "164.132.161.33", "103");
INSERT INTO `wp_rg_form_view` VALUES("28457", "3", "2016-04-04 19:12:04", "164.132.161.33", "106");
INSERT INTO `wp_rg_form_view` VALUES("28458", "10", "2016-04-04 20:21:04", "68.180.229.244", "23");
INSERT INTO `wp_rg_form_view` VALUES("28459", "3", "2016-04-04 20:21:07", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28460", "3", "2016-04-04 21:01:16", "24.68.41.139", "45");
INSERT INTO `wp_rg_form_view` VALUES("28461", "10", "2016-04-04 21:01:16", "24.68.41.139", "45");
INSERT INTO `wp_rg_form_view` VALUES("28462", "3", "2016-04-04 22:03:32", "220.181.108.115", "47");
INSERT INTO `wp_rg_form_view` VALUES("28463", "10", "2016-04-04 22:03:32", "220.181.108.115", "45");
INSERT INTO `wp_rg_form_view` VALUES("28464", "3", "2016-04-04 23:00:14", "62.210.162.184", "18");
INSERT INTO `wp_rg_form_view` VALUES("28465", "10", "2016-04-04 23:00:14", "62.210.162.184", "15");
INSERT INTO `wp_rg_form_view` VALUES("28466", "3", "2016-04-05 00:01:41", "46.119.123.199", "63");
INSERT INTO `wp_rg_form_view` VALUES("28467", "10", "2016-04-05 00:01:41", "46.119.123.199", "60");
INSERT INTO `wp_rg_form_view` VALUES("28468", "3", "2016-04-05 01:01:51", "114.97.48.8", "338");
INSERT INTO `wp_rg_form_view` VALUES("28469", "10", "2016-04-05 01:01:51", "114.97.48.8", "335");
INSERT INTO `wp_rg_form_view` VALUES("28470", "8", "2016-04-05 01:05:29", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("28471", "2", "2016-04-05 01:43:16", "70.183.228.32", "2");
INSERT INTO `wp_rg_form_view` VALUES("28472", "3", "2016-04-05 02:12:52", "46.118.157.172", "40");
INSERT INTO `wp_rg_form_view` VALUES("28473", "10", "2016-04-05 02:12:52", "46.118.157.172", "40");
INSERT INTO `wp_rg_form_view` VALUES("28474", "3", "2016-04-05 03:23:02", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28475", "10", "2016-04-05 03:23:02", "68.180.229.244", "17");
INSERT INTO `wp_rg_form_view` VALUES("28476", "3", "2016-04-05 04:00:11", "151.80.31.109", "35");
INSERT INTO `wp_rg_form_view` VALUES("28477", "10", "2016-04-05 04:00:12", "151.80.31.109", "35");
INSERT INTO `wp_rg_form_view` VALUES("28478", "1", "2016-04-05 04:19:35", "212.129.5.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("28479", "6", "2016-04-05 04:49:51", "66.249.79.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("28480", "8", "2016-04-05 04:55:29", "202.46.52.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("28481", "10", "2016-04-05 05:10:50", "199.21.99.202", "11");
INSERT INTO `wp_rg_form_view` VALUES("28482", "3", "2016-04-05 05:10:50", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("28483", "10", "2016-04-05 06:00:38", "173.252.122.122", "11");
INSERT INTO `wp_rg_form_view` VALUES("28484", "3", "2016-04-05 06:00:47", "173.252.122.122", "10");
INSERT INTO `wp_rg_form_view` VALUES("28485", "3", "2016-04-05 07:23:16", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("28486", "3", "2016-04-05 08:02:39", "202.46.50.185", "22");
INSERT INTO `wp_rg_form_view` VALUES("28487", "10", "2016-04-05 08:02:40", "202.46.50.185", "20");
INSERT INTO `wp_rg_form_view` VALUES("28488", "3", "2016-04-05 09:01:19", "151.80.31.178", "17");
INSERT INTO `wp_rg_form_view` VALUES("28489", "10", "2016-04-05 09:11:27", "164.132.161.38", "15");
INSERT INTO `wp_rg_form_view` VALUES("28490", "3", "2016-04-05 10:03:05", "66.249.79.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("28491", "10", "2016-04-05 10:03:05", "66.249.79.104", "15");
INSERT INTO `wp_rg_form_view` VALUES("28492", "3", "2016-04-05 11:36:00", "192.240.106.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("28493", "10", "2016-04-05 11:36:00", "192.240.106.138", "10");
INSERT INTO `wp_rg_form_view` VALUES("28494", "3", "2016-04-05 12:14:06", "77.75.77.17", "36");
INSERT INTO `wp_rg_form_view` VALUES("28495", "10", "2016-04-05 12:14:06", "77.75.77.17", "35");
INSERT INTO `wp_rg_form_view` VALUES("28496", "1", "2016-04-05 13:01:29", "188.214.14.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("28497", "3", "2016-04-05 13:01:30", "188.214.14.74", "21");
INSERT INTO `wp_rg_form_view` VALUES("28498", "10", "2016-04-05 13:01:30", "188.214.14.74", "20");
INSERT INTO `wp_rg_form_view` VALUES("28499", "3", "2016-04-05 14:12:20", "75.154.238.64", "149");
INSERT INTO `wp_rg_form_view` VALUES("28500", "10", "2016-04-05 14:12:21", "75.154.238.64", "153");
INSERT INTO `wp_rg_form_view` VALUES("28501", "2", "2016-04-05 14:53:49", "104.236.194.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("28502", "3", "2016-04-05 15:06:00", "46.119.123.199", "96");
INSERT INTO `wp_rg_form_view` VALUES("28503", "10", "2016-04-05 15:06:00", "46.119.123.199", "98");
INSERT INTO `wp_rg_form_view` VALUES("28504", "3", "2016-04-05 16:06:27", "77.75.79.36", "37");
INSERT INTO `wp_rg_form_view` VALUES("28505", "10", "2016-04-05 16:06:28", "77.75.79.36", "35");
INSERT INTO `wp_rg_form_view` VALUES("28506", "3", "2016-04-05 17:02:43", "216.232.155.66", "212");
INSERT INTO `wp_rg_form_view` VALUES("28507", "10", "2016-04-05 17:02:43", "216.232.155.66", "210");
INSERT INTO `wp_rg_form_view` VALUES("28508", "2", "2016-04-05 17:16:52", "69.58.178.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("28509", "3", "2016-04-05 18:10:18", "66.249.79.106", "25");
INSERT INTO `wp_rg_form_view` VALUES("28510", "10", "2016-04-05 18:10:18", "66.249.79.106", "27");
INSERT INTO `wp_rg_form_view` VALUES("28511", "3", "2016-04-05 19:07:52", "24.69.68.204", "66");
INSERT INTO `wp_rg_form_view` VALUES("28512", "10", "2016-04-05 19:07:52", "24.69.68.204", "66");
INSERT INTO `wp_rg_form_view` VALUES("28513", "3", "2016-04-05 21:01:56", "64.114.222.222", "197");
INSERT INTO `wp_rg_form_view` VALUES("28514", "10", "2016-04-05 21:01:56", "64.114.222.222", "195");
INSERT INTO `wp_rg_form_view` VALUES("28515", "2", "2016-04-05 21:39:02", "71.43.100.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("28516", "3", "2016-04-05 22:34:41", "89.35.198.83", "72");
INSERT INTO `wp_rg_form_view` VALUES("28517", "10", "2016-04-05 22:34:42", "89.35.198.83", "65");
INSERT INTO `wp_rg_form_view` VALUES("28518", "3", "2016-04-05 23:10:04", "134.87.159.103", "76");
INSERT INTO `wp_rg_form_view` VALUES("28519", "10", "2016-04-05 23:10:04", "134.87.159.103", "56");
INSERT INTO `wp_rg_form_view` VALUES("28520", "3", "2016-04-06 00:12:11", "104.142.126.77", "112");
INSERT INTO `wp_rg_form_view` VALUES("28521", "10", "2016-04-06 00:14:13", "104.142.126.77", "100");
INSERT INTO `wp_rg_form_view` VALUES("28522", "3", "2016-04-06 01:09:52", "68.180.229.244", "32");
INSERT INTO `wp_rg_form_view` VALUES("28523", "10", "2016-04-06 01:09:52", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("28524", "3", "2016-04-06 02:08:26", "104.223.38.133", "81");
INSERT INTO `wp_rg_form_view` VALUES("28525", "10", "2016-04-06 02:08:26", "104.223.38.133", "84");
INSERT INTO `wp_rg_form_view` VALUES("28526", "1", "2016-04-06 02:43:26", "46.105.86.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("28527", "3", "2016-04-06 03:00:12", "24.244.23.197", "46");
INSERT INTO `wp_rg_form_view` VALUES("28528", "10", "2016-04-06 03:00:12", "24.244.23.197", "45");
INSERT INTO `wp_rg_form_view` VALUES("28529", "3", "2016-04-06 04:02:53", "62.210.162.184", "26");
INSERT INTO `wp_rg_form_view` VALUES("28530", "10", "2016-04-06 04:02:53", "62.210.162.184", "25");
INSERT INTO `wp_rg_form_view` VALUES("28531", "9", "2016-04-06 05:12:57", "66.249.79.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("28532", "3", "2016-04-06 05:12:58", "66.249.79.106", "56");
INSERT INTO `wp_rg_form_view` VALUES("28533", "10", "2016-04-06 05:12:58", "66.249.79.106", "55");
INSERT INTO `wp_rg_form_view` VALUES("28534", "3", "2016-04-06 06:05:54", "24.68.142.131", "55");
INSERT INTO `wp_rg_form_view` VALUES("28535", "10", "2016-04-06 06:05:54", "24.68.142.131", "55");
INSERT INTO `wp_rg_form_view` VALUES("28536", "9", "2016-04-06 06:15:05", "164.132.161.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("28537", "3", "2016-04-06 07:18:28", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("28538", "10", "2016-04-06 07:18:28", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("28539", "10", "2016-04-06 08:00:04", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("28540", "3", "2016-04-06 08:00:05", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28541", "3", "2016-04-06 09:04:28", "66.249.79.106", "16");
INSERT INTO `wp_rg_form_view` VALUES("28542", "10", "2016-04-06 09:04:28", "66.249.79.106", "15");
INSERT INTO `wp_rg_form_view` VALUES("28543", "8", "2016-04-06 09:32:46", "207.46.13.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("28544", "3", "2016-04-06 10:05:53", "66.249.79.102", "10");
INSERT INTO `wp_rg_form_view` VALUES("28545", "10", "2016-04-06 10:05:53", "66.249.79.102", "11");
INSERT INTO `wp_rg_form_view` VALUES("28546", "3", "2016-04-06 11:11:32", "202.46.53.175", "137");
INSERT INTO `wp_rg_form_view` VALUES("28547", "10", "2016-04-06 11:11:32", "202.46.53.175", "135");
INSERT INTO `wp_rg_form_view` VALUES("28548", "1", "2016-04-06 11:44:12", "46.105.86.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("28549", "10", "2016-04-06 12:21:01", "164.132.161.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("28550", "3", "2016-04-06 12:21:01", "164.132.161.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("28551", "3", "2016-04-06 13:01:42", "107.151.152.8", "36");
INSERT INTO `wp_rg_form_view` VALUES("28552", "10", "2016-04-06 13:01:42", "107.151.152.8", "35");
INSERT INTO `wp_rg_form_view` VALUES("28553", "3", "2016-04-06 14:24:08", "75.154.238.64", "55");
INSERT INTO `wp_rg_form_view` VALUES("28554", "10", "2016-04-06 14:24:09", "75.154.238.64", "55");
INSERT INTO `wp_rg_form_view` VALUES("28555", "3", "2016-04-06 15:02:37", "68.180.229.244", "11");
INSERT INTO `wp_rg_form_view` VALUES("28556", "10", "2016-04-06 15:49:44", "202.46.51.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("28557", "10", "2016-04-06 16:01:49", "24.68.38.17", "32");
INSERT INTO `wp_rg_form_view` VALUES("28558", "3", "2016-04-06 16:01:50", "24.68.38.17", "37");
INSERT INTO `wp_rg_form_view` VALUES("28559", "3", "2016-04-06 17:24:21", "5.9.17.118", "96");
INSERT INTO `wp_rg_form_view` VALUES("28560", "10", "2016-04-06 17:24:23", "5.9.17.118", "96");
INSERT INTO `wp_rg_form_view` VALUES("28561", "3", "2016-04-06 18:22:37", "207.194.133.9", "45");
INSERT INTO `wp_rg_form_view` VALUES("28562", "10", "2016-04-06 18:22:37", "207.194.133.9", "37");
INSERT INTO `wp_rg_form_view` VALUES("28563", "10", "2016-04-06 19:02:18", "64.114.222.239", "42");
INSERT INTO `wp_rg_form_view` VALUES("28564", "3", "2016-04-06 19:02:18", "64.114.222.239", "40");
INSERT INTO `wp_rg_form_view` VALUES("28565", "3", "2016-04-06 20:21:57", "89.44.43.125", "93");
INSERT INTO `wp_rg_form_view` VALUES("28566", "10", "2016-04-06 20:21:57", "89.44.43.125", "85");
INSERT INTO `wp_rg_form_view` VALUES("28567", "3", "2016-04-06 22:02:40", "24.69.154.51", "75");
INSERT INTO `wp_rg_form_view` VALUES("28568", "10", "2016-04-06 22:02:40", "24.69.154.51", "76");
INSERT INTO `wp_rg_form_view` VALUES("28569", "1", "2016-04-06 22:03:28", "24.69.154.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("28570", "3", "2016-04-06 23:10:27", "24.108.162.39", "182");
INSERT INTO `wp_rg_form_view` VALUES("28571", "10", "2016-04-06 23:10:27", "24.108.162.39", "181");
INSERT INTO `wp_rg_form_view` VALUES("28572", "2", "2016-04-06 23:40:06", "71.43.100.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("28573", "3", "2016-04-07 00:04:04", "24.69.73.90", "73");
INSERT INTO `wp_rg_form_view` VALUES("28574", "10", "2016-04-07 00:04:04", "24.69.73.90", "71");
INSERT INTO `wp_rg_form_view` VALUES("28575", "3", "2016-04-07 01:34:08", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("28576", "10", "2016-04-07 01:34:10", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("28577", "3", "2016-04-07 02:09:17", "211.21.2.86", "156");
INSERT INTO `wp_rg_form_view` VALUES("28578", "10", "2016-04-07 02:09:17", "211.21.2.86", "155");
INSERT INTO `wp_rg_form_view` VALUES("28579", "2", "2016-04-07 02:10:10", "211.21.2.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("28580", "3", "2016-04-07 03:05:04", "66.249.79.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("28581", "10", "2016-04-07 03:05:04", "66.249.79.176", "16");
INSERT INTO `wp_rg_form_view` VALUES("28582", "3", "2016-04-07 04:14:08", "66.249.79.169", "25");
INSERT INTO `wp_rg_form_view` VALUES("28583", "10", "2016-04-07 04:14:08", "66.249.79.169", "25");
INSERT INTO `wp_rg_form_view` VALUES("28584", "2", "2016-04-07 04:31:16", "114.98.224.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("28585", "3", "2016-04-07 05:16:50", "164.132.161.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("28586", "10", "2016-04-07 05:16:50", "164.132.161.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("28587", "3", "2016-04-07 06:37:40", "24.69.65.72", "15");
INSERT INTO `wp_rg_form_view` VALUES("28588", "10", "2016-04-07 06:37:40", "24.69.65.72", "15");
INSERT INTO `wp_rg_form_view` VALUES("28589", "3", "2016-04-07 07:02:04", "207.46.13.79", "45");
INSERT INTO `wp_rg_form_view` VALUES("28590", "10", "2016-04-07 07:02:04", "207.46.13.79", "45");
INSERT INTO `wp_rg_form_view` VALUES("28591", "3", "2016-04-07 08:06:29", "194.187.168.194", "21");
INSERT INTO `wp_rg_form_view` VALUES("28592", "10", "2016-04-07 08:06:29", "194.187.168.194", "20");
INSERT INTO `wp_rg_form_view` VALUES("28593", "3", "2016-04-07 09:19:13", "199.21.99.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("28594", "10", "2016-04-07 09:19:13", "199.21.99.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("28595", "10", "2016-04-07 10:03:22", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("28596", "3", "2016-04-07 10:03:22", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("28597", "3", "2016-04-07 11:08:08", "37.156.184.250", "20");
INSERT INTO `wp_rg_form_view` VALUES("28598", "10", "2016-04-07 11:08:09", "37.156.184.250", "20");
INSERT INTO `wp_rg_form_view` VALUES("28599", "3", "2016-04-07 12:09:24", "46.119.118.112", "97");
INSERT INTO `wp_rg_form_view` VALUES("28600", "10", "2016-04-07 12:09:25", "46.119.118.112", "91");
INSERT INTO `wp_rg_form_view` VALUES("28601", "2", "2016-04-07 12:33:31", "54.90.49.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("28602", "3", "2016-04-07 13:06:37", "180.87.248.200", "40");
INSERT INTO `wp_rg_form_view` VALUES("28603", "10", "2016-04-07 13:06:38", "180.87.248.200", "40");
INSERT INTO `wp_rg_form_view` VALUES("28604", "3", "2016-04-07 14:23:17", "75.154.238.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("28605", "10", "2016-04-07 14:23:18", "75.154.238.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("28606", "3", "2016-04-07 15:08:57", "164.132.161.81", "41");
INSERT INTO `wp_rg_form_view` VALUES("28607", "10", "2016-04-07 15:08:58", "164.132.161.81", "40");
INSERT INTO `wp_rg_form_view` VALUES("28608", "3", "2016-04-07 16:18:49", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("28609", "10", "2016-04-07 16:18:49", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("28610", "3", "2016-04-07 17:01:26", "40.77.167.14", "20");
INSERT INTO `wp_rg_form_view` VALUES("28611", "10", "2016-04-07 17:01:27", "40.77.167.14", "16");
INSERT INTO `wp_rg_form_view` VALUES("28612", "2", "2016-04-07 17:33:37", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("28613", "10", "2016-04-07 18:09:22", "24.108.46.26", "54");
INSERT INTO `wp_rg_form_view` VALUES("28614", "3", "2016-04-07 18:09:23", "24.108.46.26", "53");
INSERT INTO `wp_rg_form_view` VALUES("28615", "3", "2016-04-07 19:01:25", "142.30.151.59", "189");
INSERT INTO `wp_rg_form_view` VALUES("28616", "10", "2016-04-07 19:01:25", "142.30.151.59", "190");
INSERT INTO `wp_rg_form_view` VALUES("28617", "2", "2016-04-07 19:36:39", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("28618", "3", "2016-04-07 20:30:44", "66.249.79.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("28619", "10", "2016-04-07 20:30:44", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("28620", "3", "2016-04-07 21:08:57", "66.249.79.162", "849");
INSERT INTO `wp_rg_form_view` VALUES("28621", "10", "2016-04-07 21:08:57", "66.249.79.162", "816");
INSERT INTO `wp_rg_form_view` VALUES("28622", "2", "2016-04-07 21:20:56", "174.127.133.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("28623", "1", "2016-04-07 21:42:58", "216.87.168.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("28624", "3", "2016-04-07 22:02:07", "104.204.172.147", "30");
INSERT INTO `wp_rg_form_view` VALUES("28625", "10", "2016-04-07 22:02:07", "104.204.172.147", "32");
INSERT INTO `wp_rg_form_view` VALUES("28626", "3", "2016-04-07 23:16:40", "157.55.39.76", "21");
INSERT INTO `wp_rg_form_view` VALUES("28627", "10", "2016-04-07 23:16:46", "157.55.39.76", "20");
INSERT INTO `wp_rg_form_view` VALUES("28628", "3", "2016-04-08 00:12:43", "66.249.79.169", "47");
INSERT INTO `wp_rg_form_view` VALUES("28629", "10", "2016-04-08 00:12:44", "66.249.79.169", "45");
INSERT INTO `wp_rg_form_view` VALUES("28630", "3", "2016-04-08 01:14:08", "66.249.79.176", "218");
INSERT INTO `wp_rg_form_view` VALUES("28631", "10", "2016-04-08 01:14:09", "66.249.79.176", "215");
INSERT INTO `wp_rg_form_view` VALUES("28632", "2", "2016-04-08 01:17:56", "71.43.100.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("28633", "3", "2016-04-08 02:14:10", "157.55.39.76", "31");
INSERT INTO `wp_rg_form_view` VALUES("28634", "10", "2016-04-08 02:14:12", "157.55.39.76", "30");
INSERT INTO `wp_rg_form_view` VALUES("28635", "3", "2016-04-08 03:32:37", "66.249.79.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("28636", "10", "2016-04-08 03:32:38", "66.249.79.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("28637", "8", "2016-04-08 03:36:52", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("28638", "3", "2016-04-08 04:11:27", "46.119.123.199", "1146");
INSERT INTO `wp_rg_form_view` VALUES("28639", "3", "2016-04-08 04:11:27", "46.119.123.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("28640", "10", "2016-04-08 04:11:27", "46.119.123.199", "1072");
INSERT INTO `wp_rg_form_view` VALUES("28641", "1", "2016-04-08 04:39:51", "104.236.107.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("28642", "5", "2016-04-08 04:46:35", "104.236.107.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("28643", "6", "2016-04-08 04:55:10", "104.236.107.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("28644", "3", "2016-04-08 05:00:01", "104.236.107.230", "2170");
INSERT INTO `wp_rg_form_view` VALUES("28645", "10", "2016-04-08 05:00:01", "104.236.107.230", "2024");
INSERT INTO `wp_rg_form_view` VALUES("28646", "9", "2016-04-08 05:03:15", "104.236.107.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("28647", "2", "2016-04-08 05:44:09", "104.236.107.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("28648", "8", "2016-04-08 05:57:50", "104.236.107.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("28649", "3", "2016-04-08 06:03:39", "202.46.50.131", "30");
INSERT INTO `wp_rg_form_view` VALUES("28650", "10", "2016-04-08 06:03:39", "202.46.50.131", "30");
INSERT INTO `wp_rg_form_view` VALUES("28651", "2", "2016-04-08 07:01:44", "157.55.39.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("28652", "3", "2016-04-08 07:01:44", "157.55.39.76", "15");
INSERT INTO `wp_rg_form_view` VALUES("28653", "10", "2016-04-08 07:01:45", "157.55.39.76", "16");
INSERT INTO `wp_rg_form_view` VALUES("28654", "1", "2016-04-08 07:45:36", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("28655", "8", "2016-04-08 08:17:03", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("28656", "3", "2016-04-08 08:17:06", "66.249.79.169", "16");
INSERT INTO `wp_rg_form_view` VALUES("28657", "10", "2016-04-08 08:17:06", "66.249.79.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("28658", "3", "2016-04-08 09:06:50", "66.249.79.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("28659", "10", "2016-04-08 09:06:50", "66.249.79.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("28660", "3", "2016-04-08 10:01:34", "157.55.39.222", "31");
INSERT INTO `wp_rg_form_view` VALUES("28661", "10", "2016-04-08 10:01:34", "157.55.39.222", "30");
INSERT INTO `wp_rg_form_view` VALUES("28662", "3", "2016-04-08 12:03:15", "66.249.79.169", "36");
INSERT INTO `wp_rg_form_view` VALUES("28663", "10", "2016-04-08 12:03:16", "66.249.79.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("28664", "3", "2016-04-08 13:03:14", "68.180.229.244", "41");
INSERT INTO `wp_rg_form_view` VALUES("28665", "10", "2016-04-08 13:03:15", "68.180.229.244", "40");
INSERT INTO `wp_rg_form_view` VALUES("28666", "3", "2016-04-08 14:06:29", "40.77.167.14", "1173");
INSERT INTO `wp_rg_form_view` VALUES("28667", "10", "2016-04-08 14:06:29", "40.77.167.14", "1074");
INSERT INTO `wp_rg_form_view` VALUES("28668", "2", "2016-04-08 14:11:34", "193.169.52.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("28669", "1", "2016-04-08 14:15:26", "193.169.52.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("28670", "8", "2016-04-08 14:57:08", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("28671", "9", "2016-04-08 14:57:17", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("28672", "5", "2016-04-08 14:58:14", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("28673", "10", "2016-04-08 15:00:03", "5.9.98.130", "2201");
INSERT INTO `wp_rg_form_view` VALUES("28674", "3", "2016-04-08 15:00:04", "5.9.98.130", "2666");
INSERT INTO `wp_rg_form_view` VALUES("28675", "6", "2016-04-08 15:02:39", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("28676", "3", "2016-04-08 16:00:01", "5.9.98.130", "2668");
INSERT INTO `wp_rg_form_view` VALUES("28677", "10", "2016-04-08 16:00:01", "5.9.98.130", "2156");
INSERT INTO `wp_rg_form_view` VALUES("28678", "3", "2016-04-08 17:00:01", "5.9.98.130", "1788");
INSERT INTO `wp_rg_form_view` VALUES("28679", "10", "2016-04-08 17:00:01", "5.9.98.130", "2044");
INSERT INTO `wp_rg_form_view` VALUES("28680", "3", "2016-04-08 18:00:00", "207.194.133.9", "3655");
INSERT INTO `wp_rg_form_view` VALUES("28681", "10", "2016-04-08 18:00:00", "207.194.133.9", "2375");
INSERT INTO `wp_rg_form_view` VALUES("28682", "1", "2016-04-08 18:05:35", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("28683", "3", "2016-04-08 19:00:00", "5.9.98.130", "2606");
INSERT INTO `wp_rg_form_view` VALUES("28684", "10", "2016-04-08 19:00:00", "5.9.98.130", "3468");
INSERT INTO `wp_rg_form_view` VALUES("28685", "2", "2016-04-08 19:05:44", "80.90.224.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("28686", "3", "2016-04-08 20:00:27", "207.46.13.74", "1331");
INSERT INTO `wp_rg_form_view` VALUES("28687", "10", "2016-04-08 20:00:28", "207.46.13.74", "943");
INSERT INTO `wp_rg_form_view` VALUES("28688", "9", "2016-04-08 20:19:41", "157.55.39.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("28689", "1", "2016-04-08 20:20:19", "157.55.39.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("28690", "3", "2016-04-08 21:09:34", "142.31.211.104", "2341");
INSERT INTO `wp_rg_form_view` VALUES("28691", "10", "2016-04-08 21:09:34", "142.31.211.104", "2308");
INSERT INTO `wp_rg_form_view` VALUES("28692", "8", "2016-04-08 21:47:24", "40.143.1.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("28693", "9", "2016-04-08 21:52:55", "40.143.1.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("28694", "1", "2016-04-08 21:57:06", "40.143.1.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("28695", "2", "2016-04-08 21:57:20", "40.143.1.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("28696", "6", "2016-04-08 21:58:14", "151.80.31.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("28697", "3", "2016-04-08 22:00:17", "40.143.1.4", "4515");
INSERT INTO `wp_rg_form_view` VALUES("28698", "10", "2016-04-08 22:00:17", "40.143.1.4", "2381");
INSERT INTO `wp_rg_form_view` VALUES("28699", "2", "2016-04-08 22:09:43", "202.46.49.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("28700", "3", "2016-04-08 23:00:00", "5.9.98.130", "3775");
INSERT INTO `wp_rg_form_view` VALUES("28701", "10", "2016-04-08 23:00:03", "5.9.98.130", "3231");
INSERT INTO `wp_rg_form_view` VALUES("28702", "2", "2016-04-08 23:46:12", "71.43.100.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("28703", "3", "2016-04-09 00:00:03", "5.9.98.130", "2230");
INSERT INTO `wp_rg_form_view` VALUES("28704", "10", "2016-04-09 00:00:04", "5.9.98.130", "3943");
INSERT INTO `wp_rg_form_view` VALUES("28705", "10", "2016-04-09 01:00:00", "5.9.98.130", "1482");
INSERT INTO `wp_rg_form_view` VALUES("28706", "3", "2016-04-09 01:00:00", "5.9.98.130", "1835");
INSERT INTO `wp_rg_form_view` VALUES("28707", "3", "2016-04-09 02:00:00", "5.9.98.130", "895");
INSERT INTO `wp_rg_form_view` VALUES("28708", "10", "2016-04-09 02:00:01", "5.9.98.130", "481");
INSERT INTO `wp_rg_form_view` VALUES("28709", "9", "2016-04-09 02:51:42", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("28710", "3", "2016-04-09 03:23:55", "157.55.39.61", "6");
INSERT INTO `wp_rg_form_view` VALUES("28711", "10", "2016-04-09 03:23:56", "157.55.39.61", "5");
INSERT INTO `wp_rg_form_view` VALUES("28712", "9", "2016-04-09 04:11:14", "157.55.39.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("28713", "3", "2016-04-09 04:11:15", "157.55.39.61", "26");
INSERT INTO `wp_rg_form_view` VALUES("28714", "10", "2016-04-09 04:11:15", "157.55.39.61", "25");
INSERT INTO `wp_rg_form_view` VALUES("28715", "3", "2016-04-09 05:14:31", "180.242.34.145", "22");
INSERT INTO `wp_rg_form_view` VALUES("28716", "10", "2016-04-09 05:14:31", "180.242.34.145", "25");
INSERT INTO `wp_rg_form_view` VALUES("28717", "10", "2016-04-09 06:09:51", "216.232.150.159", "31");
INSERT INTO `wp_rg_form_view` VALUES("28718", "3", "2016-04-09 06:09:52", "216.232.150.159", "34");
INSERT INTO `wp_rg_form_view` VALUES("28719", "3", "2016-04-09 07:23:55", "180.242.37.157", "63");
INSERT INTO `wp_rg_form_view` VALUES("28720", "10", "2016-04-09 07:23:55", "180.242.37.157", "55");
INSERT INTO `wp_rg_form_view` VALUES("28721", "3", "2016-04-09 08:01:15", "207.46.13.1", "21");
INSERT INTO `wp_rg_form_view` VALUES("28722", "10", "2016-04-09 08:01:16", "207.46.13.1", "20");
INSERT INTO `wp_rg_form_view` VALUES("28723", "3", "2016-04-09 09:23:29", "157.55.39.61", "15");
INSERT INTO `wp_rg_form_view` VALUES("28724", "10", "2016-04-09 09:23:29", "157.55.39.61", "15");
INSERT INTO `wp_rg_form_view` VALUES("28725", "3", "2016-04-09 10:01:29", "66.249.79.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("28726", "3", "2016-04-09 10:01:29", "173.232.125.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("28727", "10", "2016-04-09 10:01:31", "66.249.79.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("28728", "3", "2016-04-09 11:26:37", "89.32.69.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("28729", "10", "2016-04-09 11:26:38", "89.32.69.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("28730", "3", "2016-04-09 12:32:40", "104.223.38.177", "25");
INSERT INTO `wp_rg_form_view` VALUES("28731", "10", "2016-04-09 12:32:41", "104.223.38.177", "25");
INSERT INTO `wp_rg_form_view` VALUES("28732", "3", "2016-04-09 14:24:38", "184.66.238.75", "20");
INSERT INTO `wp_rg_form_view` VALUES("28733", "10", "2016-04-09 14:24:39", "184.66.238.75", "21");
INSERT INTO `wp_rg_form_view` VALUES("28734", "3", "2016-04-09 15:03:48", "66.249.79.176", "39");
INSERT INTO `wp_rg_form_view` VALUES("28735", "10", "2016-04-09 15:03:48", "66.249.79.176", "41");
INSERT INTO `wp_rg_form_view` VALUES("28736", "3", "2016-04-09 16:11:23", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("28737", "10", "2016-04-09 16:11:24", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("28738", "3", "2016-04-09 17:07:19", "216.232.157.182", "55");
INSERT INTO `wp_rg_form_view` VALUES("28739", "10", "2016-04-09 17:07:21", "216.232.157.182", "55");
INSERT INTO `wp_rg_form_view` VALUES("28740", "3", "2016-04-09 18:20:09", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("28741", "10", "2016-04-09 18:20:10", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28742", "2", "2016-04-09 18:37:19", "202.46.51.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("28743", "3", "2016-04-09 19:05:51", "207.46.13.1", "75");
INSERT INTO `wp_rg_form_view` VALUES("28744", "10", "2016-04-09 19:05:51", "207.46.13.1", "71");
INSERT INTO `wp_rg_form_view` VALUES("28745", "8", "2016-04-09 19:08:23", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("28746", "10", "2016-04-09 20:46:07", "107.155.197.107", "186");
INSERT INTO `wp_rg_form_view` VALUES("28747", "3", "2016-04-09 20:46:08", "23.226.222.44", "188");
INSERT INTO `wp_rg_form_view` VALUES("28748", "3", "2016-04-09 20:46:08", "213.179.219.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("28749", "2", "2016-04-09 20:47:09", "149.5.113.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("28750", "10", "2016-04-09 21:09:03", "24.108.150.27", "17");
INSERT INTO `wp_rg_form_view` VALUES("28751", "3", "2016-04-09 21:09:04", "24.108.150.27", "30");
INSERT INTO `wp_rg_form_view` VALUES("28752", "3", "2016-04-09 22:12:00", "24.68.38.17", "31");
INSERT INTO `wp_rg_form_view` VALUES("28753", "10", "2016-04-09 22:12:00", "24.68.38.17", "30");
INSERT INTO `wp_rg_form_view` VALUES("28754", "3", "2016-04-09 23:21:07", "68.180.229.244", "56");
INSERT INTO `wp_rg_form_view` VALUES("28755", "10", "2016-04-09 23:32:20", "157.55.39.172", "55");
INSERT INTO `wp_rg_form_view` VALUES("28756", "3", "2016-04-10 00:17:59", "66.249.79.162", "38");
INSERT INTO `wp_rg_form_view` VALUES("28757", "10", "2016-04-10 00:17:59", "66.249.79.162", "35");
INSERT INTO `wp_rg_form_view` VALUES("28758", "3", "2016-04-10 01:08:51", "68.180.229.244", "32");
INSERT INTO `wp_rg_form_view` VALUES("28759", "10", "2016-04-10 01:08:51", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("28760", "3", "2016-04-10 02:00:34", "51.255.65.82", "209");
INSERT INTO `wp_rg_form_view` VALUES("28761", "10", "2016-04-10 02:00:34", "51.255.65.82", "206");
INSERT INTO `wp_rg_form_view` VALUES("28762", "8", "2016-04-10 02:25:12", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("28763", "2", "2016-04-10 02:48:27", "71.43.100.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("28764", "3", "2016-04-10 03:17:28", "202.46.49.60", "21");
INSERT INTO `wp_rg_form_view` VALUES("28765", "10", "2016-04-10 03:17:28", "202.46.49.60", "20");
INSERT INTO `wp_rg_form_view` VALUES("28766", "3", "2016-04-10 04:42:34", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("28767", "10", "2016-04-10 05:34:49", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("28768", "3", "2016-04-10 05:37:59", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("28769", "3", "2016-04-10 06:13:26", "202.46.51.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("28770", "10", "2016-04-10 06:13:27", "202.46.51.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("28771", "3", "2016-04-10 07:05:28", "51.255.65.67", "27");
INSERT INTO `wp_rg_form_view` VALUES("28772", "10", "2016-04-10 07:05:28", "51.255.65.67", "25");
INSERT INTO `wp_rg_form_view` VALUES("28773", "3", "2016-04-10 08:06:00", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("28774", "10", "2016-04-10 08:06:00", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("28775", "3", "2016-04-10 09:32:04", "66.249.79.176", "17");
INSERT INTO `wp_rg_form_view` VALUES("28776", "10", "2016-04-10 09:32:05", "66.249.79.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("28777", "3", "2016-04-10 10:35:43", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("28778", "10", "2016-04-10 10:35:45", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("28779", "3", "2016-04-10 11:32:50", "46.118.157.172", "33");
INSERT INTO `wp_rg_form_view` VALUES("28780", "3", "2016-04-10 11:32:50", "46.118.157.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("28781", "3", "2016-04-10 11:32:50", "46.118.157.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("28782", "10", "2016-04-10 11:32:50", "46.118.157.172", "33");
INSERT INTO `wp_rg_form_view` VALUES("28783", "10", "2016-04-10 11:32:50", "46.118.157.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("28784", "10", "2016-04-10 11:32:50", "46.118.157.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("28785", "3", "2016-04-10 12:04:06", "77.75.79.119", "20");
INSERT INTO `wp_rg_form_view` VALUES("28786", "10", "2016-04-10 12:04:06", "77.75.79.119", "21");
INSERT INTO `wp_rg_form_view` VALUES("28787", "3", "2016-04-10 13:20:06", "51.255.65.84", "65");
INSERT INTO `wp_rg_form_view` VALUES("28788", "10", "2016-04-10 13:20:07", "51.255.65.84", "65");
INSERT INTO `wp_rg_form_view` VALUES("28789", "3", "2016-04-10 14:30:30", "202.46.58.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("28790", "10", "2016-04-10 14:30:30", "202.46.58.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("28791", "3", "2016-04-10 15:03:59", "202.46.58.71", "36");
INSERT INTO `wp_rg_form_view` VALUES("28792", "10", "2016-04-10 15:03:59", "202.46.58.71", "35");
INSERT INTO `wp_rg_form_view` VALUES("28793", "10", "2016-04-10 16:10:12", "82.193.127.15", "65");
INSERT INTO `wp_rg_form_view` VALUES("28794", "3", "2016-04-10 16:12:35", "82.193.127.15", "52");
INSERT INTO `wp_rg_form_view` VALUES("28795", "3", "2016-04-10 17:28:42", "110.53.183.62", "89");
INSERT INTO `wp_rg_form_view` VALUES("28796", "10", "2016-04-10 17:28:44", "110.53.183.62", "85");
INSERT INTO `wp_rg_form_view` VALUES("28797", "2", "2016-04-10 17:29:15", "110.53.183.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("28798", "3", "2016-04-10 18:12:49", "75.154.238.64", "46");
INSERT INTO `wp_rg_form_view` VALUES("28799", "10", "2016-04-10 18:12:49", "75.154.238.64", "45");
INSERT INTO `wp_rg_form_view` VALUES("28800", "3", "2016-04-10 19:04:57", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("28801", "10", "2016-04-10 19:04:57", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("28802", "3", "2016-04-10 20:00:00", "83.220.170.99", "20");
INSERT INTO `wp_rg_form_view` VALUES("28803", "10", "2016-04-10 20:00:00", "83.220.170.99", "20");
INSERT INTO `wp_rg_form_view` VALUES("28804", "3", "2016-04-10 21:06:08", "77.75.78.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("28805", "10", "2016-04-10 21:06:08", "77.75.78.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("28806", "3", "2016-04-10 22:08:18", "66.249.79.176", "38");
INSERT INTO `wp_rg_form_view` VALUES("28807", "10", "2016-04-10 22:08:19", "66.249.79.176", "40");
INSERT INTO `wp_rg_form_view` VALUES("28808", "1", "2016-04-10 22:22:21", "5.231.30.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("28809", "3", "2016-04-10 23:06:43", "46.119.118.112", "162");
INSERT INTO `wp_rg_form_view` VALUES("28810", "3", "2016-04-10 23:06:43", "46.119.118.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("28811", "3", "2016-04-10 23:06:43", "46.119.118.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("28812", "10", "2016-04-10 23:06:43", "46.119.118.112", "160");
INSERT INTO `wp_rg_form_view` VALUES("28813", "2", "2016-04-10 23:59:49", "46.229.224.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("28814", "10", "2016-04-11 00:08:01", "151.80.31.182", "26");
INSERT INTO `wp_rg_form_view` VALUES("28815", "3", "2016-04-11 00:08:01", "151.80.31.182", "30");
INSERT INTO `wp_rg_form_view` VALUES("28816", "3", "2016-04-11 01:09:28", "151.80.31.105", "71");
INSERT INTO `wp_rg_form_view` VALUES("28817", "10", "2016-04-11 01:09:28", "151.80.31.105", "70");
INSERT INTO `wp_rg_form_view` VALUES("28818", "10", "2016-04-11 02:10:21", "157.55.39.132", "11");
INSERT INTO `wp_rg_form_view` VALUES("28819", "3", "2016-04-11 02:10:22", "157.55.39.132", "10");
INSERT INTO `wp_rg_form_view` VALUES("28820", "3", "2016-04-11 03:08:13", "151.80.31.107", "62");
INSERT INTO `wp_rg_form_view` VALUES("28821", "10", "2016-04-11 03:08:14", "151.80.31.107", "61");
INSERT INTO `wp_rg_form_view` VALUES("28822", "3", "2016-04-11 04:00:21", "68.180.229.244", "26");
INSERT INTO `wp_rg_form_view` VALUES("28823", "10", "2016-04-11 04:00:22", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("28824", "10", "2016-04-11 05:06:51", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("28825", "3", "2016-04-11 05:06:52", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("28826", "1", "2016-04-11 06:35:32", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("28827", "3", "2016-04-11 06:35:32", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("28828", "10", "2016-04-11 06:35:33", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("28829", "3", "2016-04-11 07:20:08", "202.46.54.146", "40");
INSERT INTO `wp_rg_form_view` VALUES("28830", "10", "2016-04-11 07:20:10", "202.46.54.146", "40");
INSERT INTO `wp_rg_form_view` VALUES("28831", "1", "2016-04-11 07:45:57", "151.80.31.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("28832", "3", "2016-04-11 08:10:58", "198.203.31.207", "15");
INSERT INTO `wp_rg_form_view` VALUES("28833", "10", "2016-04-11 08:10:58", "198.203.31.207", "15");
INSERT INTO `wp_rg_form_view` VALUES("28834", "3", "2016-04-11 09:01:06", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("28835", "10", "2016-04-11 09:01:06", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("28836", "3", "2016-04-11 10:12:57", "66.249.79.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("28837", "10", "2016-04-11 10:12:57", "66.249.79.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("28838", "8", "2016-04-11 11:01:21", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("28839", "3", "2016-04-11 11:01:21", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("28840", "10", "2016-04-11 11:01:21", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("28841", "3", "2016-04-11 12:02:49", "207.46.13.182", "5");
INSERT INTO `wp_rg_form_view` VALUES("28842", "10", "2016-04-11 12:02:49", "207.46.13.182", "5");
INSERT INTO `wp_rg_form_view` VALUES("28843", "1", "2016-04-11 13:01:30", "106.2.239.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("28844", "3", "2016-04-11 13:01:31", "106.2.239.55", "31");
INSERT INTO `wp_rg_form_view` VALUES("28845", "10", "2016-04-11 13:01:34", "106.2.239.55", "30");
INSERT INTO `wp_rg_form_view` VALUES("28846", "3", "2016-04-11 14:03:24", "66.249.79.169", "42");
INSERT INTO `wp_rg_form_view` VALUES("28847", "10", "2016-04-11 14:03:25", "66.249.79.169", "41");
INSERT INTO `wp_rg_form_view` VALUES("28848", "3", "2016-04-11 15:02:22", "217.69.133.233", "346");
INSERT INTO `wp_rg_form_view` VALUES("28849", "10", "2016-04-11 15:02:23", "217.69.133.233", "348");
INSERT INTO `wp_rg_form_view` VALUES("28850", "9", "2016-04-11 15:10:07", "207.46.13.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("28851", "1", "2016-04-11 15:10:23", "207.46.13.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("28852", "10", "2016-04-11 16:02:45", "66.249.79.162", "56");
INSERT INTO `wp_rg_form_view` VALUES("28853", "3", "2016-04-11 16:02:45", "66.249.79.162", "56");
INSERT INTO `wp_rg_form_view` VALUES("28854", "3", "2016-04-11 17:07:51", "5.248.253.133", "67");
INSERT INTO `wp_rg_form_view` VALUES("28855", "10", "2016-04-11 17:07:51", "5.248.253.133", "66");
INSERT INTO `wp_rg_form_view` VALUES("28856", "3", "2016-04-11 18:10:37", "217.69.133.230", "110");
INSERT INTO `wp_rg_form_view` VALUES("28857", "10", "2016-04-11 18:10:37", "217.69.133.230", "105");
INSERT INTO `wp_rg_form_view` VALUES("28858", "1", "2016-04-11 18:55:59", "24.69.81.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("28859", "3", "2016-04-11 19:00:31", "142.104.50.16", "243");
INSERT INTO `wp_rg_form_view` VALUES("28860", "10", "2016-04-11 19:00:32", "142.104.50.16", "231");
INSERT INTO `wp_rg_form_view` VALUES("28861", "2", "2016-04-11 19:45:20", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("28862", "3", "2016-04-11 20:13:58", "64.114.223.8", "98");
INSERT INTO `wp_rg_form_view` VALUES("28863", "10", "2016-04-11 20:13:59", "64.114.223.8", "95");
INSERT INTO `wp_rg_form_view` VALUES("28864", "8", "2016-04-11 20:23:06", "107.182.19.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("28865", "1", "2016-04-11 20:46:01", "60.191.159.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("28866", "3", "2016-04-11 21:01:46", "68.180.229.244", "98");
INSERT INTO `wp_rg_form_view` VALUES("28867", "10", "2016-04-11 21:01:46", "68.180.229.244", "90");
INSERT INTO `wp_rg_form_view` VALUES("28868", "5", "2016-04-11 21:19:27", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("28869", "3", "2016-04-11 22:07:49", "69.58.178.56", "261");
INSERT INTO `wp_rg_form_view` VALUES("28870", "10", "2016-04-11 22:07:49", "69.58.178.56", "261");
INSERT INTO `wp_rg_form_view` VALUES("28871", "2", "2016-04-11 22:11:58", "69.58.178.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("28872", "10", "2016-04-11 23:02:29", "24.108.42.254", "35");
INSERT INTO `wp_rg_form_view` VALUES("28873", "3", "2016-04-11 23:14:37", "164.132.161.51", "29");
INSERT INTO `wp_rg_form_view` VALUES("28874", "3", "2016-04-12 00:00:03", "66.249.79.169", "102");
INSERT INTO `wp_rg_form_view` VALUES("28875", "10", "2016-04-12 00:00:03", "66.249.79.169", "95");
INSERT INTO `wp_rg_form_view` VALUES("28876", "2", "2016-04-12 00:40:36", "104.224.14.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("28877", "1", "2016-04-12 00:54:41", "192.99.166.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("28878", "3", "2016-04-12 01:25:22", "24.108.43.164", "31");
INSERT INTO `wp_rg_form_view` VALUES("28879", "10", "2016-04-12 01:25:22", "24.108.43.164", "31");
INSERT INTO `wp_rg_form_view` VALUES("28880", "3", "2016-04-12 02:01:43", "96.50.31.55", "243");
INSERT INTO `wp_rg_form_view` VALUES("28881", "10", "2016-04-12 02:01:43", "96.50.31.55", "243");
INSERT INTO `wp_rg_form_view` VALUES("28882", "2", "2016-04-12 02:46:12", "99.56.15.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("28883", "3", "2016-04-12 03:12:09", "54.203.47.4", "65");
INSERT INTO `wp_rg_form_view` VALUES("28884", "10", "2016-04-12 03:12:09", "54.203.47.4", "65");
INSERT INTO `wp_rg_form_view` VALUES("28885", "3", "2016-04-12 04:22:15", "207.46.13.68", "5");
INSERT INTO `wp_rg_form_view` VALUES("28886", "10", "2016-04-12 04:22:15", "207.46.13.68", "5");
INSERT INTO `wp_rg_form_view` VALUES("28887", "3", "2016-04-12 05:10:30", "207.216.68.18", "27");
INSERT INTO `wp_rg_form_view` VALUES("28888", "10", "2016-04-12 05:10:31", "207.216.68.18", "25");
INSERT INTO `wp_rg_form_view` VALUES("28889", "3", "2016-04-12 06:01:03", "191.96.139.105", "222");
INSERT INTO `wp_rg_form_view` VALUES("28890", "10", "2016-04-12 06:01:05", "191.96.139.105", "216");
INSERT INTO `wp_rg_form_view` VALUES("28891", "2", "2016-04-12 06:30:09", "5.79.68.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("28892", "3", "2016-04-12 07:08:30", "164.132.161.8", "10");
INSERT INTO `wp_rg_form_view` VALUES("28893", "10", "2016-04-12 07:08:31", "164.132.161.8", "10");
INSERT INTO `wp_rg_form_view` VALUES("28894", "3", "2016-04-12 08:20:26", "157.55.39.191", "30");
INSERT INTO `wp_rg_form_view` VALUES("28895", "10", "2016-04-12 08:20:27", "157.55.39.191", "30");
INSERT INTO `wp_rg_form_view` VALUES("28896", "1", "2016-04-12 08:24:21", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("28897", "8", "2016-04-12 08:24:41", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("28898", "3", "2016-04-12 09:01:31", "157.55.39.62", "15");
INSERT INTO `wp_rg_form_view` VALUES("28899", "10", "2016-04-12 09:01:31", "157.55.39.62", "15");
INSERT INTO `wp_rg_form_view` VALUES("28900", "3", "2016-04-12 10:09:23", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("28901", "10", "2016-04-12 10:09:23", "66.249.79.176", "20");
INSERT INTO `wp_rg_form_view` VALUES("28902", "3", "2016-04-12 11:00:28", "46.22.214.74", "42");
INSERT INTO `wp_rg_form_view` VALUES("28903", "10", "2016-04-12 11:00:28", "46.22.214.74", "40");
INSERT INTO `wp_rg_form_view` VALUES("28904", "8", "2016-04-12 12:09:31", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("28905", "3", "2016-04-12 12:52:58", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("28906", "10", "2016-04-12 12:52:59", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("28907", "3", "2016-04-12 13:12:51", "72.35.72.49", "259");
INSERT INTO `wp_rg_form_view` VALUES("28908", "10", "2016-04-12 13:12:51", "72.35.72.49", "250");
INSERT INTO `wp_rg_form_view` VALUES("28909", "2", "2016-04-12 13:13:03", "72.35.72.49", "2");
INSERT INTO `wp_rg_form_view` VALUES("28910", "1", "2016-04-12 13:13:42", "72.35.72.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("28911", "10", "2016-04-12 14:04:28", "24.69.80.138", "92");
INSERT INTO `wp_rg_form_view` VALUES("28912", "3", "2016-04-12 14:04:28", "24.69.80.138", "92");
INSERT INTO `wp_rg_form_view` VALUES("28913", "3", "2016-04-12 15:10:25", "24.69.81.162", "203");
INSERT INTO `wp_rg_form_view` VALUES("28914", "10", "2016-04-12 15:10:25", "24.69.81.162", "183");
INSERT INTO `wp_rg_form_view` VALUES("28915", "3", "2016-04-12 16:05:17", "66.249.79.169", "61");
INSERT INTO `wp_rg_form_view` VALUES("28916", "10", "2016-04-12 16:05:17", "66.249.79.169", "60");
INSERT INTO `wp_rg_form_view` VALUES("28917", "3", "2016-04-12 17:01:14", "164.132.161.9", "61");
INSERT INTO `wp_rg_form_view` VALUES("28918", "10", "2016-04-12 17:01:14", "164.132.161.9", "57");
INSERT INTO `wp_rg_form_view` VALUES("28919", "3", "2016-04-12 18:03:15", "79.32.20.48", "206");
INSERT INTO `wp_rg_form_view` VALUES("28920", "10", "2016-04-12 18:03:15", "79.32.20.48", "205");
INSERT INTO `wp_rg_form_view` VALUES("28921", "2", "2016-04-12 18:05:23", "79.32.20.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("28922", "3", "2016-04-12 19:29:54", "217.69.133.228", "198");
INSERT INTO `wp_rg_form_view` VALUES("28923", "10", "2016-04-12 19:29:56", "217.69.133.228", "195");
INSERT INTO `wp_rg_form_view` VALUES("28924", "2", "2016-04-12 19:58:59", "54.186.170.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("28925", "3", "2016-04-12 20:00:02", "54.186.170.17", "334");
INSERT INTO `wp_rg_form_view` VALUES("28926", "10", "2016-04-12 20:00:02", "54.186.170.17", "307");
INSERT INTO `wp_rg_form_view` VALUES("28927", "1", "2016-04-12 20:03:10", "54.186.170.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("28928", "3", "2016-04-12 21:04:12", "217.69.133.229", "5");
INSERT INTO `wp_rg_form_view` VALUES("28929", "10", "2016-04-12 21:04:12", "217.69.133.229", "5");
INSERT INTO `wp_rg_form_view` VALUES("28930", "3", "2016-04-12 22:20:33", "75.154.238.64", "65");
INSERT INTO `wp_rg_form_view` VALUES("28931", "10", "2016-04-12 22:20:34", "75.154.238.64", "67");
INSERT INTO `wp_rg_form_view` VALUES("28932", "3", "2016-04-12 23:00:54", "207.194.133.9", "166");
INSERT INTO `wp_rg_form_view` VALUES("28933", "10", "2016-04-12 23:26:16", "220.181.108.120", "155");
INSERT INTO `wp_rg_form_view` VALUES("28934", "2", "2016-04-12 23:51:43", "83.41.14.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("28935", "3", "2016-04-13 00:09:18", "162.157.97.1", "35");
INSERT INTO `wp_rg_form_view` VALUES("28936", "10", "2016-04-13 00:09:18", "162.157.97.1", "35");
INSERT INTO `wp_rg_form_view` VALUES("28937", "3", "2016-04-13 01:15:43", "46.118.157.172", "44");
INSERT INTO `wp_rg_form_view` VALUES("28938", "3", "2016-04-13 01:15:43", "46.118.157.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("28939", "10", "2016-04-13 01:15:45", "46.118.157.172", "44");
INSERT INTO `wp_rg_form_view` VALUES("28940", "10", "2016-04-13 01:15:45", "46.118.157.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("28941", "3", "2016-04-13 02:16:03", "24.68.231.154", "55");
INSERT INTO `wp_rg_form_view` VALUES("28942", "10", "2016-04-13 02:16:03", "24.68.231.154", "57");
INSERT INTO `wp_rg_form_view` VALUES("28943", "1", "2016-04-13 02:17:15", "24.68.231.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("28944", "2", "2016-04-13 02:54:42", "185.54.161.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("28945", "3", "2016-04-13 03:04:57", "66.249.79.169", "165");
INSERT INTO `wp_rg_form_view` VALUES("28946", "10", "2016-04-13 03:04:58", "66.249.79.169", "175");
INSERT INTO `wp_rg_form_view` VALUES("28947", "9", "2016-04-13 03:22:37", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("28948", "3", "2016-04-13 04:38:15", "96.50.12.218", "36");
INSERT INTO `wp_rg_form_view` VALUES("28949", "10", "2016-04-13 04:38:15", "96.50.12.218", "35");
INSERT INTO `wp_rg_form_view` VALUES("28950", "1", "2016-04-13 04:39:53", "96.50.12.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("28951", "3", "2016-04-13 05:12:13", "89.34.166.72", "61");
INSERT INTO `wp_rg_form_view` VALUES("28952", "10", "2016-04-13 05:12:14", "89.34.166.72", "60");
INSERT INTO `wp_rg_form_view` VALUES("28953", "3", "2016-04-13 06:09:33", "202.46.57.17", "49");
INSERT INTO `wp_rg_form_view` VALUES("28954", "10", "2016-04-13 06:09:34", "202.46.57.17", "52");
INSERT INTO `wp_rg_form_view` VALUES("28955", "10", "2016-04-13 07:15:35", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("28956", "3", "2016-04-13 07:15:38", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("28957", "3", "2016-04-13 08:05:40", "217.69.133.228", "15");
INSERT INTO `wp_rg_form_view` VALUES("28958", "10", "2016-04-13 08:05:41", "217.69.133.228", "15");
INSERT INTO `wp_rg_form_view` VALUES("28959", "3", "2016-04-13 09:04:06", "68.180.229.244", "142");
INSERT INTO `wp_rg_form_view` VALUES("28960", "10", "2016-04-13 09:04:11", "68.180.229.244", "135");
INSERT INTO `wp_rg_form_view` VALUES("28961", "3", "2016-04-13 10:18:45", "51.255.65.34", "15");
INSERT INTO `wp_rg_form_view` VALUES("28962", "10", "2016-04-13 10:18:45", "51.255.65.34", "15");
INSERT INTO `wp_rg_form_view` VALUES("28963", "3", "2016-04-13 11:07:36", "66.249.79.169", "38");
INSERT INTO `wp_rg_form_view` VALUES("28964", "10", "2016-04-13 11:07:38", "66.249.79.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("28965", "3", "2016-04-13 12:48:07", "217.69.133.227", "11");
INSERT INTO `wp_rg_form_view` VALUES("28966", "10", "2016-04-13 12:48:08", "217.69.133.227", "10");
INSERT INTO `wp_rg_form_view` VALUES("28967", "3", "2016-04-13 13:25:22", "157.55.39.88", "5");
INSERT INTO `wp_rg_form_view` VALUES("28968", "10", "2016-04-13 13:25:22", "157.55.39.88", "5");
INSERT INTO `wp_rg_form_view` VALUES("28969", "3", "2016-04-13 14:22:46", "217.69.133.229", "45");
INSERT INTO `wp_rg_form_view` VALUES("28970", "10", "2016-04-13 14:22:47", "217.69.133.229", "45");
INSERT INTO `wp_rg_form_view` VALUES("28971", "1", "2016-04-13 14:33:48", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("28972", "3", "2016-04-13 15:01:40", "164.132.161.16", "57");
INSERT INTO `wp_rg_form_view` VALUES("28973", "10", "2016-04-13 15:01:40", "164.132.161.16", "55");
INSERT INTO `wp_rg_form_view` VALUES("28974", "3", "2016-04-13 16:03:57", "179.110.203.188", "109");
INSERT INTO `wp_rg_form_view` VALUES("28975", "10", "2016-04-13 16:03:57", "179.110.203.188", "105");
INSERT INTO `wp_rg_form_view` VALUES("28976", "3", "2016-04-13 17:47:49", "157.55.39.132", "56");
INSERT INTO `wp_rg_form_view` VALUES("28977", "10", "2016-04-13 17:47:50", "157.55.39.132", "56");
INSERT INTO `wp_rg_form_view` VALUES("28978", "1", "2016-04-13 17:55:11", "142.167.151.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("28979", "3", "2016-04-13 18:35:22", "202.46.50.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("28980", "10", "2016-04-13 18:35:22", "202.46.50.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("28981", "3", "2016-04-13 19:17:36", "184.66.253.41", "128");
INSERT INTO `wp_rg_form_view` VALUES("28982", "10", "2016-04-13 19:17:36", "184.66.253.41", "125");
INSERT INTO `wp_rg_form_view` VALUES("28983", "2", "2016-04-13 19:50:06", "45.55.229.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("28984", "3", "2016-04-13 20:08:36", "24.69.0.170", "30");
INSERT INTO `wp_rg_form_view` VALUES("28985", "10", "2016-04-13 20:08:36", "24.69.0.170", "30");
INSERT INTO `wp_rg_form_view` VALUES("28986", "3", "2016-04-13 21:09:07", "66.249.79.169", "26");
INSERT INTO `wp_rg_form_view` VALUES("28987", "10", "2016-04-13 21:09:08", "66.249.79.169", "25");
INSERT INTO `wp_rg_form_view` VALUES("28988", "3", "2016-04-13 22:05:01", "178.137.90.202", "83");
INSERT INTO `wp_rg_form_view` VALUES("28989", "3", "2016-04-13 22:05:01", "178.137.90.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("28990", "3", "2016-04-13 22:05:01", "178.137.90.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("28991", "10", "2016-04-13 22:05:01", "178.137.90.202", "80");
INSERT INTO `wp_rg_form_view` VALUES("28992", "8", "2016-04-13 22:09:56", "66.249.79.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("28993", "3", "2016-04-13 23:07:00", "134.249.55.100", "100");
INSERT INTO `wp_rg_form_view` VALUES("28994", "3", "2016-04-13 23:07:00", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("28995", "10", "2016-04-13 23:07:01", "134.249.55.100", "106");
INSERT INTO `wp_rg_form_view` VALUES("28996", "2", "2016-04-13 23:10:27", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("28997", "3", "2016-04-14 00:02:35", "207.46.13.54", "17");
INSERT INTO `wp_rg_form_view` VALUES("28998", "10", "2016-04-14 00:02:35", "207.46.13.54", "15");
INSERT INTO `wp_rg_form_view` VALUES("28999", "3", "2016-04-14 01:36:00", "202.46.51.15", "26");
INSERT INTO `wp_rg_form_view` VALUES("29000", "10", "2016-04-14 01:36:02", "202.46.51.15", "20");
INSERT INTO `wp_rg_form_view` VALUES("29001", "3", "2016-04-14 02:08:56", "91.108.73.105", "61");
INSERT INTO `wp_rg_form_view` VALUES("29002", "10", "2016-04-14 02:08:56", "91.108.73.105", "60");
INSERT INTO `wp_rg_form_view` VALUES("29003", "3", "2016-04-14 03:00:36", "207.6.125.197", "25");
INSERT INTO `wp_rg_form_view` VALUES("29004", "10", "2016-04-14 03:00:36", "207.6.125.197", "25");
INSERT INTO `wp_rg_form_view` VALUES("29005", "1", "2016-04-14 03:57:26", "96.50.12.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("29006", "3", "2016-04-14 04:00:10", "96.50.12.218", "16");
INSERT INTO `wp_rg_form_view` VALUES("29007", "10", "2016-04-14 04:00:10", "96.50.12.218", "15");
INSERT INTO `wp_rg_form_view` VALUES("29008", "3", "2016-04-14 05:00:26", "66.249.79.169", "21");
INSERT INTO `wp_rg_form_view` VALUES("29009", "10", "2016-04-14 05:00:26", "66.249.79.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("29010", "3", "2016-04-14 06:14:04", "77.75.78.170", "67");
INSERT INTO `wp_rg_form_view` VALUES("29011", "10", "2016-04-14 06:14:07", "77.75.78.170", "65");
INSERT INTO `wp_rg_form_view` VALUES("29012", "3", "2016-04-14 07:12:35", "66.249.79.169", "54");
INSERT INTO `wp_rg_form_view` VALUES("29013", "10", "2016-04-14 07:12:35", "66.249.79.169", "50");
INSERT INTO `wp_rg_form_view` VALUES("29014", "9", "2016-04-14 07:13:38", "188.214.50.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("29015", "3", "2016-04-14 08:00:56", "202.46.52.203", "16");
INSERT INTO `wp_rg_form_view` VALUES("29016", "10", "2016-04-14 08:00:57", "202.46.52.203", "15");
INSERT INTO `wp_rg_form_view` VALUES("29017", "6", "2016-04-14 08:24:09", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29018", "3", "2016-04-14 09:23:15", "104.223.38.177", "25");
INSERT INTO `wp_rg_form_view` VALUES("29019", "10", "2016-04-14 09:23:17", "104.223.38.177", "25");
INSERT INTO `wp_rg_form_view` VALUES("29020", "3", "2016-04-14 10:37:58", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29021", "10", "2016-04-14 10:37:59", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29022", "3", "2016-04-14 11:12:39", "220.181.108.82", "5");
INSERT INTO `wp_rg_form_view` VALUES("29023", "10", "2016-04-14 11:12:39", "220.181.108.82", "5");
INSERT INTO `wp_rg_form_view` VALUES("29024", "3", "2016-04-14 12:22:19", "68.180.229.244", "341");
INSERT INTO `wp_rg_form_view` VALUES("29025", "10", "2016-04-14 12:22:20", "68.180.229.244", "338");
INSERT INTO `wp_rg_form_view` VALUES("29026", "9", "2016-04-14 12:24:37", "157.55.39.88", "3");
INSERT INTO `wp_rg_form_view` VALUES("29027", "1", "2016-04-14 12:24:53", "157.55.39.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("29028", "3", "2016-04-14 13:01:10", "66.249.79.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("29029", "10", "2016-04-14 13:02:54", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29030", "1", "2016-04-14 14:06:27", "192.161.50.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("29031", "3", "2016-04-14 14:06:28", "192.161.50.70", "55");
INSERT INTO `wp_rg_form_view` VALUES("29032", "10", "2016-04-14 14:06:28", "192.161.50.70", "50");
INSERT INTO `wp_rg_form_view` VALUES("29033", "9", "2016-04-14 14:28:14", "151.80.31.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("29034", "3", "2016-04-14 15:03:21", "66.249.79.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("29035", "10", "2016-04-14 15:03:22", "66.249.79.176", "35");
INSERT INTO `wp_rg_form_view` VALUES("29036", "3", "2016-04-14 16:11:16", "142.36.158.155", "218");
INSERT INTO `wp_rg_form_view` VALUES("29037", "10", "2016-04-14 16:11:22", "142.36.158.155", "215");
INSERT INTO `wp_rg_form_view` VALUES("29038", "1", "2016-04-14 16:23:24", "43.225.194.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("29039", "2", "2016-04-14 16:51:03", "81.68.74.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("29040", "3", "2016-04-14 17:24:46", "24.69.0.170", "30");
INSERT INTO `wp_rg_form_view` VALUES("29041", "10", "2016-04-14 17:24:48", "24.69.0.170", "31");
INSERT INTO `wp_rg_form_view` VALUES("29042", "2", "2016-04-14 17:39:34", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29043", "3", "2016-04-14 18:05:09", "52.71.155.178", "75");
INSERT INTO `wp_rg_form_view` VALUES("29044", "10", "2016-04-14 18:05:10", "52.71.155.178", "71");
INSERT INTO `wp_rg_form_view` VALUES("29045", "3", "2016-04-14 19:13:16", "66.249.79.162", "30");
INSERT INTO `wp_rg_form_view` VALUES("29046", "10", "2016-04-14 19:13:17", "66.249.79.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("29047", "11", "2016-04-14 19:15:55", "24.108.147.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("29048", "3", "2016-04-14 20:11:42", "24.69.144.96", "25");
INSERT INTO `wp_rg_form_view` VALUES("29049", "10", "2016-04-14 20:11:42", "24.69.144.96", "26");
INSERT INTO `wp_rg_form_view` VALUES("29050", "3", "2016-04-14 21:00:45", "51.255.65.16", "69");
INSERT INTO `wp_rg_form_view` VALUES("29051", "10", "2016-04-14 21:00:46", "51.255.65.16", "66");
INSERT INTO `wp_rg_form_view` VALUES("29052", "9", "2016-04-14 21:54:11", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("29053", "3", "2016-04-14 22:42:03", "77.75.76.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("29054", "10", "2016-04-14 22:42:04", "77.75.76.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("29055", "3", "2016-04-14 23:14:17", "96.50.7.9", "64");
INSERT INTO `wp_rg_form_view` VALUES("29056", "10", "2016-04-14 23:14:18", "96.50.7.9", "62");
INSERT INTO `wp_rg_form_view` VALUES("29057", "3", "2016-04-15 00:19:46", "207.46.13.4", "11");
INSERT INTO `wp_rg_form_view` VALUES("29058", "10", "2016-04-15 00:19:48", "207.46.13.4", "10");
INSERT INTO `wp_rg_form_view` VALUES("29059", "3", "2016-04-15 01:00:29", "24.108.42.254", "52");
INSERT INTO `wp_rg_form_view` VALUES("29060", "10", "2016-04-15 01:00:30", "24.108.42.254", "50");
INSERT INTO `wp_rg_form_view` VALUES("29061", "3", "2016-04-15 02:26:22", "164.132.161.28", "46");
INSERT INTO `wp_rg_form_view` VALUES("29062", "2", "2016-04-15 02:29:33", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("29063", "10", "2016-04-15 02:29:33", "74.91.26.114", "45");
INSERT INTO `wp_rg_form_view` VALUES("29064", "3", "2016-04-15 03:04:21", "202.46.51.194", "11");
INSERT INTO `wp_rg_form_view` VALUES("29065", "10", "2016-04-15 03:04:21", "202.46.51.194", "10");
INSERT INTO `wp_rg_form_view` VALUES("29066", "10", "2016-04-15 04:06:34", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("29067", "3", "2016-04-15 04:06:34", "66.249.79.176", "27");
INSERT INTO `wp_rg_form_view` VALUES("29068", "3", "2016-04-15 05:09:48", "40.77.167.71", "23");
INSERT INTO `wp_rg_form_view` VALUES("29069", "10", "2016-04-15 05:09:50", "40.77.167.71", "15");
INSERT INTO `wp_rg_form_view` VALUES("29070", "10", "2016-04-15 06:09:15", "104.142.121.52", "153");
INSERT INTO `wp_rg_form_view` VALUES("29071", "3", "2016-04-15 06:09:15", "104.142.121.52", "159");
INSERT INTO `wp_rg_form_view` VALUES("29072", "1", "2016-04-15 06:52:39", "96.50.77.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29073", "10", "2016-04-15 07:16:44", "202.46.48.123", "15");
INSERT INTO `wp_rg_form_view` VALUES("29074", "3", "2016-04-15 07:16:46", "202.46.48.123", "15");
INSERT INTO `wp_rg_form_view` VALUES("29075", "11", "2016-04-15 07:17:11", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29076", "8", "2016-04-15 08:19:02", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("29077", "10", "2016-04-15 08:19:02", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29078", "3", "2016-04-15 08:19:03", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29079", "10", "2016-04-15 10:02:40", "51.255.65.26", "20");
INSERT INTO `wp_rg_form_view` VALUES("29080", "3", "2016-04-15 10:02:41", "51.255.65.26", "21");
INSERT INTO `wp_rg_form_view` VALUES("29081", "10", "2016-04-15 11:23:34", "164.132.161.90", "16");
INSERT INTO `wp_rg_form_view` VALUES("29082", "3", "2016-04-15 11:23:36", "164.132.161.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("29083", "10", "2016-04-15 12:33:30", "40.77.167.8", "21");
INSERT INTO `wp_rg_form_view` VALUES("29084", "3", "2016-04-15 12:33:31", "40.77.167.8", "20");
INSERT INTO `wp_rg_form_view` VALUES("29085", "10", "2016-04-15 13:01:31", "199.59.148.209", "71");
INSERT INTO `wp_rg_form_view` VALUES("29086", "3", "2016-04-15 13:01:32", "199.59.148.209", "71");
INSERT INTO `wp_rg_form_view` VALUES("29087", "10", "2016-04-15 14:01:42", "77.75.76.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("29088", "3", "2016-04-15 14:01:42", "77.75.76.162", "21");
INSERT INTO `wp_rg_form_view` VALUES("29089", "2", "2016-04-15 14:29:26", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29090", "3", "2016-04-15 15:16:37", "40.77.167.8", "66");
INSERT INTO `wp_rg_form_view` VALUES("29091", "10", "2016-04-15 15:16:38", "40.77.167.8", "65");
INSERT INTO `wp_rg_form_view` VALUES("29092", "10", "2016-04-15 16:11:58", "70.78.142.206", "36");
INSERT INTO `wp_rg_form_view` VALUES("29093", "3", "2016-04-15 16:11:59", "70.78.142.206", "36");
INSERT INTO `wp_rg_form_view` VALUES("29094", "10", "2016-04-15 17:13:13", "51.255.65.28", "65");
INSERT INTO `wp_rg_form_view` VALUES("29095", "3", "2016-04-15 17:13:16", "51.255.65.28", "66");
INSERT INTO `wp_rg_form_view` VALUES("29096", "11", "2016-04-15 17:26:38", "157.55.39.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("29097", "10", "2016-04-15 18:27:53", "184.69.1.62", "20");
INSERT INTO `wp_rg_form_view` VALUES("29098", "3", "2016-04-15 18:27:54", "184.69.1.62", "21");
INSERT INTO `wp_rg_form_view` VALUES("29099", "10", "2016-04-15 19:22:33", "75.154.238.64", "58");
INSERT INTO `wp_rg_form_view` VALUES("29100", "3", "2016-04-15 19:22:35", "75.154.238.64", "56");
INSERT INTO `wp_rg_form_view` VALUES("29101", "10", "2016-04-15 20:02:47", "154.5.146.240", "85");
INSERT INTO `wp_rg_form_view` VALUES("29102", "3", "2016-04-15 20:02:47", "154.5.146.240", "92");
INSERT INTO `wp_rg_form_view` VALUES("29103", "9", "2016-04-15 20:04:06", "89.34.166.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("29104", "10", "2016-04-15 21:40:07", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29105", "3", "2016-04-15 21:40:09", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29106", "9", "2016-04-15 21:48:09", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("29107", "10", "2016-04-15 22:00:59", "68.180.229.244", "95");
INSERT INTO `wp_rg_form_view` VALUES("29108", "3", "2016-04-15 22:01:00", "68.180.229.244", "95");
INSERT INTO `wp_rg_form_view` VALUES("29109", "1", "2016-04-15 22:24:40", "24.69.20.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("29110", "10", "2016-04-15 23:02:53", "66.249.79.176", "60");
INSERT INTO `wp_rg_form_view` VALUES("29111", "3", "2016-04-15 23:02:54", "66.249.79.176", "61");
INSERT INTO `wp_rg_form_view` VALUES("29112", "9", "2016-04-15 23:28:28", "62.210.162.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("29113", "10", "2016-04-16 00:21:23", "46.118.156.3", "142");
INSERT INTO `wp_rg_form_view` VALUES("29114", "3", "2016-04-16 00:21:23", "46.118.156.3", "144");
INSERT INTO `wp_rg_form_view` VALUES("29115", "9", "2016-04-16 00:24:31", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("29116", "1", "2016-04-16 00:24:46", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("29117", "9", "2016-04-16 01:09:15", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("29118", "10", "2016-04-16 01:09:16", "62.210.162.184", "45");
INSERT INTO `wp_rg_form_view` VALUES("29119", "3", "2016-04-16 01:09:16", "62.210.162.184", "45");
INSERT INTO `wp_rg_form_view` VALUES("29120", "10", "2016-04-16 02:30:19", "96.50.68.241", "15");
INSERT INTO `wp_rg_form_view` VALUES("29121", "3", "2016-04-16 02:30:21", "96.50.68.241", "15");
INSERT INTO `wp_rg_form_view` VALUES("29122", "2", "2016-04-16 03:07:44", "104.223.42.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("29123", "10", "2016-04-16 03:07:47", "104.223.42.46", "25");
INSERT INTO `wp_rg_form_view` VALUES("29124", "3", "2016-04-16 03:07:47", "104.223.42.46", "27");
INSERT INTO `wp_rg_form_view` VALUES("29125", "1", "2016-04-16 03:56:41", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("29126", "10", "2016-04-16 04:10:09", "202.46.53.15", "94");
INSERT INTO `wp_rg_form_view` VALUES("29127", "3", "2016-04-16 04:10:10", "202.46.53.15", "94");
INSERT INTO `wp_rg_form_view` VALUES("29128", "10", "2016-04-16 05:08:00", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29129", "3", "2016-04-16 05:08:02", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29130", "10", "2016-04-16 06:30:48", "40.77.167.32", "15");
INSERT INTO `wp_rg_form_view` VALUES("29131", "3", "2016-04-16 06:30:49", "40.77.167.32", "15");
INSERT INTO `wp_rg_form_view` VALUES("29132", "10", "2016-04-16 07:24:16", "220.181.108.123", "30");
INSERT INTO `wp_rg_form_view` VALUES("29133", "3", "2016-04-16 07:24:17", "220.181.108.123", "31");
INSERT INTO `wp_rg_form_view` VALUES("29134", "10", "2016-04-16 08:00:41", "107.172.229.168", "20");
INSERT INTO `wp_rg_form_view` VALUES("29135", "3", "2016-04-16 08:00:42", "107.172.229.168", "21");
INSERT INTO `wp_rg_form_view` VALUES("29136", "10", "2016-04-16 09:29:08", "178.137.90.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("29137", "3", "2016-04-16 09:29:09", "178.137.90.202", "29");
INSERT INTO `wp_rg_form_view` VALUES("29138", "3", "2016-04-16 09:29:09", "178.137.90.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("29139", "10", "2016-04-16 10:01:56", "66.249.79.162", "145");
INSERT INTO `wp_rg_form_view` VALUES("29140", "3", "2016-04-16 10:01:56", "66.249.79.162", "157");
INSERT INTO `wp_rg_form_view` VALUES("29141", "10", "2016-04-16 11:18:49", "96.50.68.167", "78");
INSERT INTO `wp_rg_form_view` VALUES("29142", "3", "2016-04-16 11:18:51", "96.50.68.167", "86");
INSERT INTO `wp_rg_form_view` VALUES("29143", "10", "2016-04-16 12:05:38", "66.249.79.176", "21");
INSERT INTO `wp_rg_form_view` VALUES("29144", "3", "2016-04-16 12:05:38", "66.249.79.176", "20");
INSERT INTO `wp_rg_form_view` VALUES("29145", "10", "2016-04-16 13:32:46", "144.76.71.83", "15");
INSERT INTO `wp_rg_form_view` VALUES("29146", "3", "2016-04-16 13:32:49", "144.76.71.83", "16");
INSERT INTO `wp_rg_form_view` VALUES("29147", "10", "2016-04-16 14:15:17", "40.77.167.67", "10");
INSERT INTO `wp_rg_form_view` VALUES("29148", "3", "2016-04-16 14:15:18", "40.77.167.67", "10");
INSERT INTO `wp_rg_form_view` VALUES("29149", "10", "2016-04-16 15:18:33", "75.154.238.64", "20");
INSERT INTO `wp_rg_form_view` VALUES("29150", "3", "2016-04-16 15:18:34", "75.154.238.64", "21");
INSERT INTO `wp_rg_form_view` VALUES("29151", "10", "2016-04-16 16:08:08", "66.249.79.169", "100");
INSERT INTO `wp_rg_form_view` VALUES("29152", "3", "2016-04-16 16:08:09", "66.249.79.169", "102");
INSERT INTO `wp_rg_form_view` VALUES("29153", "1", "2016-04-16 16:54:26", "142.167.151.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("29154", "10", "2016-04-16 17:38:04", "66.249.79.176", "35");
INSERT INTO `wp_rg_form_view` VALUES("29155", "3", "2016-04-16 17:38:05", "66.249.79.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("29156", "10", "2016-04-16 18:30:00", "24.108.95.242", "21");
INSERT INTO `wp_rg_form_view` VALUES("29157", "3", "2016-04-16 18:30:02", "24.108.95.242", "21");
INSERT INTO `wp_rg_form_view` VALUES("29158", "11", "2016-04-16 18:33:15", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("29159", "3", "2016-04-16 19:26:57", "23.228.108.251", "18");
INSERT INTO `wp_rg_form_view` VALUES("29160", "10", "2016-04-16 19:26:58", "23.228.108.251", "15");
INSERT INTO `wp_rg_form_view` VALUES("29161", "3", "2016-04-16 20:03:13", "24.108.182.213", "26");
INSERT INTO `wp_rg_form_view` VALUES("29162", "10", "2016-04-16 20:03:13", "24.108.182.213", "25");
INSERT INTO `wp_rg_form_view` VALUES("29163", "3", "2016-04-16 21:10:10", "68.180.229.244", "26");
INSERT INTO `wp_rg_form_view` VALUES("29164", "10", "2016-04-16 21:15:19", "24.114.38.65", "28");
INSERT INTO `wp_rg_form_view` VALUES("29165", "10", "2016-04-16 22:10:01", "5.248.253.133", "35");
INSERT INTO `wp_rg_form_view` VALUES("29166", "3", "2016-04-16 22:10:02", "5.248.253.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("29167", "10", "2016-04-16 23:09:21", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("29168", "3", "2016-04-16 23:09:22", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("29169", "6", "2016-04-16 23:23:04", "51.255.65.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("29170", "3", "2016-04-17 00:10:11", "131.253.24.17", "21");
INSERT INTO `wp_rg_form_view` VALUES("29171", "10", "2016-04-17 00:10:11", "131.253.24.17", "21");
INSERT INTO `wp_rg_form_view` VALUES("29172", "3", "2016-04-17 01:07:26", "24.108.141.64", "90");
INSERT INTO `wp_rg_form_view` VALUES("29173", "10", "2016-04-17 01:07:26", "24.108.141.64", "90");
INSERT INTO `wp_rg_form_view` VALUES("29174", "3", "2016-04-17 02:10:14", "66.249.79.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("29175", "10", "2016-04-17 02:10:15", "66.249.79.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("29176", "3", "2016-04-17 03:16:41", "178.137.90.202", "51");
INSERT INTO `wp_rg_form_view` VALUES("29177", "10", "2016-04-17 03:16:42", "178.137.90.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("29178", "3", "2016-04-17 04:02:49", "68.180.229.244", "47");
INSERT INTO `wp_rg_form_view` VALUES("29179", "10", "2016-04-17 04:02:50", "68.180.229.244", "46");
INSERT INTO `wp_rg_form_view` VALUES("29180", "7", "2016-04-17 05:30:22", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29181", "3", "2016-04-17 05:30:24", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29182", "10", "2016-04-17 05:30:24", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29183", "3", "2016-04-17 06:38:01", "164.132.161.19", "11");
INSERT INTO `wp_rg_form_view` VALUES("29184", "10", "2016-04-17 06:38:02", "164.132.161.19", "10");
INSERT INTO `wp_rg_form_view` VALUES("29185", "3", "2016-04-17 07:25:34", "202.46.53.191", "6");
INSERT INTO `wp_rg_form_view` VALUES("29186", "10", "2016-04-17 07:25:35", "202.46.53.191", "5");
INSERT INTO `wp_rg_form_view` VALUES("29187", "3", "2016-04-17 08:21:15", "100.43.85.21", "58");
INSERT INTO `wp_rg_form_view` VALUES("29188", "10", "2016-04-17 08:21:18", "100.43.85.21", "56");
INSERT INTO `wp_rg_form_view` VALUES("29189", "3", "2016-04-17 09:06:37", "164.132.161.31", "38");
INSERT INTO `wp_rg_form_view` VALUES("29190", "10", "2016-04-17 09:06:38", "164.132.161.31", "35");
INSERT INTO `wp_rg_form_view` VALUES("29191", "9", "2016-04-17 09:55:38", "164.132.161.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("29192", "3", "2016-04-17 10:11:33", "62.210.162.184", "96");
INSERT INTO `wp_rg_form_view` VALUES("29193", "10", "2016-04-17 10:11:33", "62.210.162.184", "95");
INSERT INTO `wp_rg_form_view` VALUES("29194", "3", "2016-04-17 11:12:18", "89.46.89.166", "32");
INSERT INTO `wp_rg_form_view` VALUES("29195", "10", "2016-04-17 11:12:20", "89.46.89.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("29196", "3", "2016-04-17 12:18:16", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("29197", "10", "2016-04-17 12:18:17", "66.249.79.162", "21");
INSERT INTO `wp_rg_form_view` VALUES("29198", "3", "2016-04-17 13:06:31", "89.35.198.80", "27");
INSERT INTO `wp_rg_form_view` VALUES("29199", "10", "2016-04-17 13:06:32", "89.35.198.80", "25");
INSERT INTO `wp_rg_form_view` VALUES("29200", "1", "2016-04-17 13:48:03", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29201", "3", "2016-04-17 14:04:16", "66.249.79.162", "42");
INSERT INTO `wp_rg_form_view` VALUES("29202", "10", "2016-04-17 14:04:16", "66.249.79.162", "40");
INSERT INTO `wp_rg_form_view` VALUES("29203", "9", "2016-04-17 14:25:20", "93.115.135.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("29204", "10", "2016-04-17 15:39:34", "69.30.218.166", "49");
INSERT INTO `wp_rg_form_view` VALUES("29205", "3", "2016-04-17 15:40:50", "69.30.218.166", "36");
INSERT INTO `wp_rg_form_view` VALUES("29206", "3", "2016-04-17 16:08:14", "104.223.38.177", "108");
INSERT INTO `wp_rg_form_view` VALUES("29207", "10", "2016-04-17 16:08:14", "104.223.38.177", "106");
INSERT INTO `wp_rg_form_view` VALUES("29208", "6", "2016-04-17 16:56:17", "207.46.13.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("29209", "10", "2016-04-17 17:28:08", "40.77.167.91", "26");
INSERT INTO `wp_rg_form_view` VALUES("29210", "3", "2016-04-17 17:28:10", "40.77.167.91", "25");
INSERT INTO `wp_rg_form_view` VALUES("29211", "3", "2016-04-17 18:12:42", "96.50.76.81", "46");
INSERT INTO `wp_rg_form_view` VALUES("29212", "10", "2016-04-17 18:12:43", "96.50.76.81", "45");
INSERT INTO `wp_rg_form_view` VALUES("29213", "3", "2016-04-17 19:06:20", "68.180.229.244", "47");
INSERT INTO `wp_rg_form_view` VALUES("29214", "10", "2016-04-17 19:06:21", "68.180.229.244", "52");
INSERT INTO `wp_rg_form_view` VALUES("29215", "9", "2016-04-17 19:46:49", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("29216", "3", "2016-04-17 20:00:31", "73.77.79.54", "182");
INSERT INTO `wp_rg_form_view` VALUES("29217", "10", "2016-04-17 20:00:31", "73.77.79.54", "182");
INSERT INTO `wp_rg_form_view` VALUES("29218", "11", "2016-04-17 20:00:34", "73.77.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("29219", "2", "2016-04-17 20:01:20", "73.77.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("29220", "3", "2016-04-17 21:02:06", "151.80.31.107", "42");
INSERT INTO `wp_rg_form_view` VALUES("29221", "10", "2016-04-17 21:02:07", "151.80.31.107", "40");
INSERT INTO `wp_rg_form_view` VALUES("29222", "3", "2016-04-17 22:08:20", "66.249.79.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("29223", "10", "2016-04-17 22:08:21", "66.249.79.176", "33");
INSERT INTO `wp_rg_form_view` VALUES("29224", "3", "2016-04-17 23:01:17", "52.71.155.178", "69");
INSERT INTO `wp_rg_form_view` VALUES("29225", "10", "2016-04-17 23:01:17", "52.71.155.178", "67");
INSERT INTO `wp_rg_form_view` VALUES("29226", "3", "2016-04-18 00:19:45", "202.46.49.148", "31");
INSERT INTO `wp_rg_form_view` VALUES("29227", "10", "2016-04-18 00:19:46", "202.46.49.148", "31");
INSERT INTO `wp_rg_form_view` VALUES("29228", "3", "2016-04-18 01:05:48", "207.46.13.71", "28");
INSERT INTO `wp_rg_form_view` VALUES("29229", "10", "2016-04-18 01:05:49", "207.46.13.71", "32");
INSERT INTO `wp_rg_form_view` VALUES("29230", "3", "2016-04-18 02:26:20", "157.55.39.225", "51");
INSERT INTO `wp_rg_form_view` VALUES("29231", "10", "2016-04-18 02:26:21", "157.55.39.225", "50");
INSERT INTO `wp_rg_form_view` VALUES("29232", "11", "2016-04-18 02:38:20", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("29233", "10", "2016-04-18 03:04:23", "207.46.13.71", "11");
INSERT INTO `wp_rg_form_view` VALUES("29234", "3", "2016-04-18 03:04:23", "207.46.13.71", "10");
INSERT INTO `wp_rg_form_view` VALUES("29235", "3", "2016-04-18 04:14:30", "46.118.156.3", "24");
INSERT INTO `wp_rg_form_view` VALUES("29236", "3", "2016-04-18 04:14:30", "46.118.156.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("29237", "10", "2016-04-18 04:14:31", "46.118.156.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("29238", "3", "2016-04-18 05:00:11", "77.75.76.163", "10");
INSERT INTO `wp_rg_form_view` VALUES("29239", "10", "2016-04-18 05:00:11", "77.75.76.163", "10");
INSERT INTO `wp_rg_form_view` VALUES("29240", "3", "2016-04-18 06:05:20", "207.46.13.71", "628");
INSERT INTO `wp_rg_form_view` VALUES("29241", "10", "2016-04-18 06:05:30", "207.46.13.71", "595");
INSERT INTO `wp_rg_form_view` VALUES("29242", "11", "2016-04-18 06:37:49", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("29243", "2", "2016-04-18 06:37:59", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("29244", "1", "2016-04-18 06:48:14", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("29245", "8", "2016-04-18 06:55:45", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("29246", "3", "2016-04-18 07:00:01", "94.199.151.22", "238");
INSERT INTO `wp_rg_form_view` VALUES("29247", "10", "2016-04-18 07:00:19", "94.199.151.22", "225");
INSERT INTO `wp_rg_form_view` VALUES("29248", "3", "2016-04-18 08:23:19", "157.55.39.165", "17");
INSERT INTO `wp_rg_form_view` VALUES("29249", "10", "2016-04-18 08:23:20", "157.55.39.165", "16");
INSERT INTO `wp_rg_form_view` VALUES("29250", "6", "2016-04-18 08:59:41", "164.132.161.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("29251", "3", "2016-04-18 09:36:36", "68.180.229.244", "11");
INSERT INTO `wp_rg_form_view` VALUES("29252", "10", "2016-04-18 09:36:37", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("29253", "3", "2016-04-18 10:04:56", "66.249.79.162", "584");
INSERT INTO `wp_rg_form_view` VALUES("29254", "10", "2016-04-18 10:04:56", "66.249.79.162", "567");
INSERT INTO `wp_rg_form_view` VALUES("29255", "2", "2016-04-18 10:40:35", "157.55.39.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("29256", "1", "2016-04-18 10:52:36", "45.55.51.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("29257", "11", "2016-04-18 10:52:41", "45.55.51.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("29258", "5", "2016-04-18 10:58:46", "45.55.51.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("29259", "3", "2016-04-18 11:00:01", "45.55.51.193", "2113");
INSERT INTO `wp_rg_form_view` VALUES("29260", "10", "2016-04-18 11:00:02", "45.55.51.193", "1974");
INSERT INTO `wp_rg_form_view` VALUES("29261", "6", "2016-04-18 11:07:46", "45.55.51.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("29262", "9", "2016-04-18 11:16:01", "45.55.51.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("29263", "8", "2016-04-18 11:51:08", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("29264", "2", "2016-04-18 11:56:29", "45.55.51.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("29265", "3", "2016-04-18 12:00:02", "45.55.51.193", "483");
INSERT INTO `wp_rg_form_view` VALUES("29266", "10", "2016-04-18 12:00:03", "45.55.51.193", "463");
INSERT INTO `wp_rg_form_view` VALUES("29267", "8", "2016-04-18 12:10:25", "45.55.51.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("29268", "10", "2016-04-18 13:15:52", "202.46.51.100", "28");
INSERT INTO `wp_rg_form_view` VALUES("29269", "3", "2016-04-18 13:15:55", "202.46.51.100", "21");
INSERT INTO `wp_rg_form_view` VALUES("29270", "3", "2016-04-18 14:13:55", "157.55.39.225", "331");
INSERT INTO `wp_rg_form_view` VALUES("29271", "10", "2016-04-18 14:13:57", "157.55.39.225", "313");
INSERT INTO `wp_rg_form_view` VALUES("29272", "9", "2016-04-18 14:14:08", "157.55.39.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("29273", "3", "2016-04-18 15:17:32", "66.249.79.169", "96");
INSERT INTO `wp_rg_form_view` VALUES("29274", "10", "2016-04-18 15:17:34", "66.249.79.169", "97");
INSERT INTO `wp_rg_form_view` VALUES("29275", "1", "2016-04-18 15:56:27", "68.149.248.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("29276", "10", "2016-04-18 16:01:56", "157.55.39.225", "16");
INSERT INTO `wp_rg_form_view` VALUES("29277", "3", "2016-04-18 16:01:56", "157.55.39.225", "15");
INSERT INTO `wp_rg_form_view` VALUES("29278", "3", "2016-04-18 17:25:48", "66.249.79.169", "22");
INSERT INTO `wp_rg_form_view` VALUES("29279", "10", "2016-04-18 17:25:51", "66.249.79.169", "21");
INSERT INTO `wp_rg_form_view` VALUES("29280", "3", "2016-04-18 18:05:54", "220.181.108.186", "83");
INSERT INTO `wp_rg_form_view` VALUES("29281", "10", "2016-04-18 18:05:55", "220.181.108.186", "81");
INSERT INTO `wp_rg_form_view` VALUES("29282", "2", "2016-04-18 18:59:47", "46.118.115.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("29283", "3", "2016-04-18 19:00:01", "46.118.115.181", "187");
INSERT INTO `wp_rg_form_view` VALUES("29284", "10", "2016-04-18 19:00:01", "46.118.115.181", "179");
INSERT INTO `wp_rg_form_view` VALUES("29285", "3", "2016-04-18 20:24:09", "24.108.188.231", "21");
INSERT INTO `wp_rg_form_view` VALUES("29286", "10", "2016-04-18 20:24:10", "24.108.188.231", "20");
INSERT INTO `wp_rg_form_view` VALUES("29287", "3", "2016-04-18 21:08:05", "68.180.229.244", "122");
INSERT INTO `wp_rg_form_view` VALUES("29288", "10", "2016-04-18 21:08:08", "68.180.229.244", "120");
INSERT INTO `wp_rg_form_view` VALUES("29289", "3", "2016-04-18 22:13:18", "66.249.79.176", "106");
INSERT INTO `wp_rg_form_view` VALUES("29290", "10", "2016-04-18 22:13:19", "66.249.79.176", "105");
INSERT INTO `wp_rg_form_view` VALUES("29291", "3", "2016-04-18 23:01:06", "66.249.79.162", "31");
INSERT INTO `wp_rg_form_view` VALUES("29292", "10", "2016-04-18 23:01:06", "66.249.79.162", "30");
INSERT INTO `wp_rg_form_view` VALUES("29293", "3", "2016-04-19 00:02:02", "66.249.79.162", "35");
INSERT INTO `wp_rg_form_view` VALUES("29294", "10", "2016-04-19 00:02:02", "66.249.79.162", "35");
INSERT INTO `wp_rg_form_view` VALUES("29295", "3", "2016-04-19 01:00:00", "46.161.9.24", "78");
INSERT INTO `wp_rg_form_view` VALUES("29296", "10", "2016-04-19 01:00:00", "46.161.9.24", "76");
INSERT INTO `wp_rg_form_view` VALUES("29297", "3", "2016-04-19 02:07:24", "66.249.79.176", "246");
INSERT INTO `wp_rg_form_view` VALUES("29298", "10", "2016-04-19 02:07:24", "66.249.79.176", "241");
INSERT INTO `wp_rg_form_view` VALUES("29299", "11", "2016-04-19 02:08:34", "220.241.209.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("29300", "2", "2016-04-19 02:09:31", "220.241.209.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("29301", "3", "2016-04-19 03:33:52", "24.108.172.241", "20");
INSERT INTO `wp_rg_form_view` VALUES("29302", "10", "2016-04-19 03:33:53", "24.108.172.241", "20");
INSERT INTO `wp_rg_form_view` VALUES("29303", "3", "2016-04-19 04:05:43", "220.181.108.82", "31");
INSERT INTO `wp_rg_form_view` VALUES("29304", "10", "2016-04-19 04:05:43", "220.181.108.82", "31");
INSERT INTO `wp_rg_form_view` VALUES("29305", "3", "2016-04-19 05:07:25", "199.21.99.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("29306", "10", "2016-04-19 05:07:25", "199.21.99.202", "46");
INSERT INTO `wp_rg_form_view` VALUES("29307", "3", "2016-04-19 06:05:54", "62.210.162.184", "32");
INSERT INTO `wp_rg_form_view` VALUES("29308", "10", "2016-04-19 06:05:56", "62.210.162.184", "30");
INSERT INTO `wp_rg_form_view` VALUES("29309", "3", "2016-04-19 07:11:18", "184.66.242.187", "51");
INSERT INTO `wp_rg_form_view` VALUES("29310", "10", "2016-04-19 07:11:18", "184.66.242.187", "50");
INSERT INTO `wp_rg_form_view` VALUES("29311", "1", "2016-04-19 07:18:54", "184.66.242.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("29312", "3", "2016-04-19 08:16:10", "66.249.79.176", "44");
INSERT INTO `wp_rg_form_view` VALUES("29313", "10", "2016-04-19 08:16:11", "66.249.79.176", "40");
INSERT INTO `wp_rg_form_view` VALUES("29314", "3", "2016-04-19 09:06:47", "66.249.79.176", "26");
INSERT INTO `wp_rg_form_view` VALUES("29315", "10", "2016-04-19 09:06:47", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("29316", "3", "2016-04-19 10:00:10", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("29317", "10", "2016-04-19 10:00:10", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("29318", "10", "2016-04-19 11:15:59", "66.249.79.169", "47");
INSERT INTO `wp_rg_form_view` VALUES("29319", "3", "2016-04-19 11:17:27", "68.180.229.244", "46");
INSERT INTO `wp_rg_form_view` VALUES("29320", "2", "2016-04-19 11:40:09", "158.69.225.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("29321", "3", "2016-04-19 12:07:19", "68.180.229.244", "24");
INSERT INTO `wp_rg_form_view` VALUES("29322", "10", "2016-04-19 12:07:20", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29323", "10", "2016-04-19 13:11:18", "207.46.13.147", "21");
INSERT INTO `wp_rg_form_view` VALUES("29324", "3", "2016-04-19 13:11:19", "207.46.13.147", "22");
INSERT INTO `wp_rg_form_view` VALUES("29325", "3", "2016-04-19 14:22:30", "66.249.79.169", "44");
INSERT INTO `wp_rg_form_view` VALUES("29326", "10", "2016-04-19 14:22:30", "66.249.79.169", "40");
INSERT INTO `wp_rg_form_view` VALUES("29327", "3", "2016-04-19 15:00:14", "68.180.229.244", "28");
INSERT INTO `wp_rg_form_view` VALUES("29328", "10", "2016-04-19 15:00:14", "68.180.229.244", "31");
INSERT INTO `wp_rg_form_view` VALUES("29329", "3", "2016-04-19 16:13:45", "162.157.97.1", "20");
INSERT INTO `wp_rg_form_view` VALUES("29330", "10", "2016-04-19 16:13:46", "162.157.97.1", "20");
INSERT INTO `wp_rg_form_view` VALUES("29331", "10", "2016-04-19 17:01:27", "68.180.229.244", "82");
INSERT INTO `wp_rg_form_view` VALUES("29332", "3", "2016-04-19 17:01:27", "68.180.229.244", "81");
INSERT INTO `wp_rg_form_view` VALUES("29333", "12", "2016-04-19 17:59:55", "24.108.147.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("29334", "3", "2016-04-19 18:50:15", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("29335", "10", "2016-04-19 18:50:16", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("29336", "3", "2016-04-19 19:02:47", "66.249.79.169", "43");
INSERT INTO `wp_rg_form_view` VALUES("29337", "10", "2016-04-19 19:02:48", "66.249.79.169", "48");
INSERT INTO `wp_rg_form_view` VALUES("29338", "12", "2016-04-19 19:21:49", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("29339", "3", "2016-04-19 20:03:25", "173.180.113.56", "55");
INSERT INTO `wp_rg_form_view` VALUES("29340", "10", "2016-04-19 20:03:25", "173.180.113.56", "55");
INSERT INTO `wp_rg_form_view` VALUES("29341", "3", "2016-04-19 21:08:47", "184.69.23.166", "31");
INSERT INTO `wp_rg_form_view` VALUES("29342", "10", "2016-04-19 21:08:48", "184.69.23.166", "40");
INSERT INTO `wp_rg_form_view` VALUES("29343", "3", "2016-04-19 22:09:42", "66.249.79.176", "38");
INSERT INTO `wp_rg_form_view` VALUES("29344", "10", "2016-04-19 22:09:43", "66.249.79.176", "55");
INSERT INTO `wp_rg_form_view` VALUES("29345", "3", "2016-04-19 23:43:51", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("29346", "10", "2016-04-19 23:43:52", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("29347", "3", "2016-04-20 00:06:44", "164.132.161.61", "26");
INSERT INTO `wp_rg_form_view` VALUES("29348", "10", "2016-04-20 00:06:44", "164.132.161.61", "25");
INSERT INTO `wp_rg_form_view` VALUES("29349", "12", "2016-04-20 00:55:48", "207.216.68.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("29350", "3", "2016-04-20 01:05:32", "157.55.39.114", "5");
INSERT INTO `wp_rg_form_view` VALUES("29351", "10", "2016-04-20 01:05:32", "157.55.39.114", "5");
INSERT INTO `wp_rg_form_view` VALUES("29352", "3", "2016-04-20 02:05:25", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29353", "10", "2016-04-20 02:05:26", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("29354", "3", "2016-04-20 03:10:25", "68.180.229.244", "35");
INSERT INTO `wp_rg_form_view` VALUES("29355", "10", "2016-04-20 03:10:26", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("29356", "3", "2016-04-20 04:03:14", "24.68.132.183", "47");
INSERT INTO `wp_rg_form_view` VALUES("29357", "10", "2016-04-20 04:03:14", "24.68.132.183", "55");
INSERT INTO `wp_rg_form_view` VALUES("29358", "3", "2016-04-20 05:37:38", "50.65.49.151", "15");
INSERT INTO `wp_rg_form_view` VALUES("29359", "10", "2016-04-20 05:37:39", "50.65.49.151", "15");
INSERT INTO `wp_rg_form_view` VALUES("29360", "3", "2016-04-20 07:32:19", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("29361", "10", "2016-04-20 07:32:22", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("29362", "3", "2016-04-20 08:29:13", "202.46.55.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("29363", "10", "2016-04-20 08:29:16", "202.46.55.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("29364", "3", "2016-04-20 09:41:45", "66.249.79.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("29365", "10", "2016-04-20 09:41:46", "66.249.79.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("29366", "3", "2016-04-20 10:01:00", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("29367", "10", "2016-04-20 10:01:00", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29368", "3", "2016-04-20 11:13:11", "157.55.39.32", "5");
INSERT INTO `wp_rg_form_view` VALUES("29369", "10", "2016-04-20 11:13:13", "157.55.39.32", "5");
INSERT INTO `wp_rg_form_view` VALUES("29370", "3", "2016-04-20 12:31:24", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("29371", "10", "2016-04-20 12:31:27", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("29372", "10", "2016-04-20 13:02:28", "144.76.8.132", "47");
INSERT INTO `wp_rg_form_view` VALUES("29373", "3", "2016-04-20 13:02:28", "144.76.8.132", "43");
INSERT INTO `wp_rg_form_view` VALUES("29374", "10", "2016-04-20 14:11:29", "176.9.10.227", "42");
INSERT INTO `wp_rg_form_view` VALUES("29375", "3", "2016-04-20 14:11:59", "176.9.10.227", "45");
INSERT INTO `wp_rg_form_view` VALUES("29376", "3", "2016-04-20 15:11:45", "5.248.253.133", "39");
INSERT INTO `wp_rg_form_view` VALUES("29377", "3", "2016-04-20 15:11:45", "5.248.253.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("29378", "10", "2016-04-20 15:11:46", "5.248.253.133", "40");
INSERT INTO `wp_rg_form_view` VALUES("29379", "10", "2016-04-20 15:11:46", "5.248.253.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("29380", "3", "2016-04-20 16:02:32", "69.58.109.50", "113");
INSERT INTO `wp_rg_form_view` VALUES("29381", "10", "2016-04-20 16:02:32", "69.58.109.50", "117");
INSERT INTO `wp_rg_form_view` VALUES("29382", "11", "2016-04-20 16:31:34", "24.108.28.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("29383", "12", "2016-04-20 16:46:21", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("29384", "3", "2016-04-20 17:36:41", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("29385", "10", "2016-04-20 17:36:42", "66.249.79.162", "21");
INSERT INTO `wp_rg_form_view` VALUES("29386", "3", "2016-04-20 18:03:07", "207.46.13.181", "120");
INSERT INTO `wp_rg_form_view` VALUES("29387", "10", "2016-04-20 18:03:07", "207.46.13.181", "120");
INSERT INTO `wp_rg_form_view` VALUES("29388", "11", "2016-04-20 18:33:24", "205.250.212.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("29389", "3", "2016-04-20 19:01:57", "24.108.28.160", "55");
INSERT INTO `wp_rg_form_view` VALUES("29390", "10", "2016-04-20 19:01:59", "24.108.28.160", "55");
INSERT INTO `wp_rg_form_view` VALUES("29391", "11", "2016-04-20 19:48:40", "24.108.6.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("29392", "1", "2016-04-20 19:58:19", "24.108.28.160", "2");
INSERT INTO `wp_rg_form_view` VALUES("29393", "3", "2016-04-20 20:14:24", "70.67.233.215", "15");
INSERT INTO `wp_rg_form_view` VALUES("29394", "10", "2016-04-20 20:14:25", "70.67.233.215", "15");
INSERT INTO `wp_rg_form_view` VALUES("29395", "12", "2016-04-20 20:16:13", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("29396", "3", "2016-04-20 21:07:45", "164.132.161.81", "30");
INSERT INTO `wp_rg_form_view` VALUES("29397", "10", "2016-04-20 21:07:48", "164.132.161.81", "30");
INSERT INTO `wp_rg_form_view` VALUES("29398", "11", "2016-04-20 22:22:09", "202.46.53.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("29399", "3", "2016-04-20 22:22:10", "202.46.53.159", "10");
INSERT INTO `wp_rg_form_view` VALUES("29400", "10", "2016-04-20 22:22:10", "202.46.53.159", "10");
INSERT INTO `wp_rg_form_view` VALUES("29401", "3", "2016-04-20 23:01:57", "184.69.27.126", "143");
INSERT INTO `wp_rg_form_view` VALUES("29402", "10", "2016-04-20 23:01:58", "184.69.27.126", "140");
INSERT INTO `wp_rg_form_view` VALUES("29403", "3", "2016-04-21 00:07:40", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29404", "10", "2016-04-21 00:07:40", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29405", "3", "2016-04-21 01:01:05", "24.114.43.161", "45");
INSERT INTO `wp_rg_form_view` VALUES("29406", "10", "2016-04-21 01:01:09", "24.114.43.161", "45");
INSERT INTO `wp_rg_form_view` VALUES("29407", "12", "2016-04-21 01:33:37", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29408", "10", "2016-04-21 02:00:10", "51.255.65.11", "11");
INSERT INTO `wp_rg_form_view` VALUES("29409", "3", "2016-04-21 02:00:10", "51.255.65.11", "10");
INSERT INTO `wp_rg_form_view` VALUES("29410", "10", "2016-04-21 03:03:41", "68.180.229.244", "22");
INSERT INTO `wp_rg_form_view` VALUES("29411", "3", "2016-04-21 03:03:42", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("29412", "3", "2016-04-21 04:16:51", "68.180.229.244", "67");
INSERT INTO `wp_rg_form_view` VALUES("29413", "10", "2016-04-21 04:16:51", "68.180.229.244", "70");
INSERT INTO `wp_rg_form_view` VALUES("29414", "12", "2016-04-21 05:20:22", "66.249.84.212", "2");
INSERT INTO `wp_rg_form_view` VALUES("29415", "3", "2016-04-21 05:20:23", "66.249.84.212", "33");
INSERT INTO `wp_rg_form_view` VALUES("29416", "10", "2016-04-21 05:20:23", "66.249.84.212", "32");
INSERT INTO `wp_rg_form_view` VALUES("29417", "9", "2016-04-21 06:55:36", "104.223.42.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("29418", "3", "2016-04-21 06:55:37", "104.223.42.46", "16");
INSERT INTO `wp_rg_form_view` VALUES("29419", "10", "2016-04-21 06:55:37", "104.223.42.46", "15");
INSERT INTO `wp_rg_form_view` VALUES("29420", "3", "2016-04-21 07:07:25", "51.255.65.57", "12");
INSERT INTO `wp_rg_form_view` VALUES("29421", "10", "2016-04-21 07:41:42", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29422", "3", "2016-04-21 08:23:37", "68.180.229.244", "11");
INSERT INTO `wp_rg_form_view` VALUES("29423", "10", "2016-04-21 08:23:38", "68.180.229.244", "11");
INSERT INTO `wp_rg_form_view` VALUES("29424", "3", "2016-04-21 09:08:18", "51.255.65.30", "21");
INSERT INTO `wp_rg_form_view` VALUES("29425", "10", "2016-04-21 09:08:19", "51.255.65.30", "20");
INSERT INTO `wp_rg_form_view` VALUES("29426", "3", "2016-04-21 10:33:16", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29427", "10", "2016-04-21 10:33:17", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29428", "9", "2016-04-21 10:47:29", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("29429", "3", "2016-04-21 11:17:52", "202.46.49.208", "102");
INSERT INTO `wp_rg_form_view` VALUES("29430", "10", "2016-04-21 11:17:54", "202.46.49.208", "100");
INSERT INTO `wp_rg_form_view` VALUES("29431", "11", "2016-04-21 11:55:42", "1.124.49.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("29432", "3", "2016-04-21 12:08:59", "151.73.194.5", "181");
INSERT INTO `wp_rg_form_view` VALUES("29433", "10", "2016-04-21 12:09:00", "151.73.194.5", "181");
INSERT INTO `wp_rg_form_view` VALUES("29434", "11", "2016-04-21 12:09:05", "151.73.194.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("29435", "12", "2016-04-21 12:09:45", "151.73.194.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("29436", "2", "2016-04-21 12:10:32", "151.73.194.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("29437", "3", "2016-04-21 13:26:02", "51.255.51.28", "37");
INSERT INTO `wp_rg_form_view` VALUES("29438", "10", "2016-04-21 13:26:26", "51.255.51.28", "36");
INSERT INTO `wp_rg_form_view` VALUES("29439", "11", "2016-04-21 13:59:49", "81.68.74.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("29440", "3", "2016-04-21 14:00:00", "81.68.74.236", "156");
INSERT INTO `wp_rg_form_view` VALUES("29441", "10", "2016-04-21 14:00:00", "81.68.74.236", "156");
INSERT INTO `wp_rg_form_view` VALUES("29442", "12", "2016-04-21 14:00:17", "81.68.74.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("29443", "2", "2016-04-21 14:00:55", "81.68.74.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("29444", "3", "2016-04-21 15:09:48", "178.137.90.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("29445", "3", "2016-04-21 15:09:48", "178.137.90.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("29446", "10", "2016-04-21 15:09:48", "178.137.90.202", "29");
INSERT INTO `wp_rg_form_view` VALUES("29447", "10", "2016-04-21 15:09:48", "178.137.90.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("29448", "11", "2016-04-21 16:04:01", "24.68.96.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("29449", "3", "2016-04-21 16:04:08", "24.68.96.67", "75");
INSERT INTO `wp_rg_form_view` VALUES("29450", "10", "2016-04-21 16:04:08", "24.68.96.67", "75");
INSERT INTO `wp_rg_form_view` VALUES("29451", "3", "2016-04-21 17:00:39", "24.108.175.179", "77");
INSERT INTO `wp_rg_form_view` VALUES("29452", "10", "2016-04-21 17:00:40", "24.108.175.179", "76");
INSERT INTO `wp_rg_form_view` VALUES("29453", "3", "2016-04-21 18:16:26", "68.180.229.244", "26");
INSERT INTO `wp_rg_form_view` VALUES("29454", "10", "2016-04-21 18:16:28", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("29455", "3", "2016-04-21 19:05:13", "184.66.32.160", "87");
INSERT INTO `wp_rg_form_view` VALUES("29456", "10", "2016-04-21 19:05:14", "184.66.32.160", "78");
INSERT INTO `wp_rg_form_view` VALUES("29457", "3", "2016-04-21 20:20:06", "75.154.238.64", "40");
INSERT INTO `wp_rg_form_view` VALUES("29458", "10", "2016-04-21 20:20:08", "75.154.238.64", "40");
INSERT INTO `wp_rg_form_view` VALUES("29459", "10", "2016-04-21 21:00:50", "216.113.222.72", "81");
INSERT INTO `wp_rg_form_view` VALUES("29460", "3", "2016-04-21 21:00:50", "216.113.222.72", "83");
INSERT INTO `wp_rg_form_view` VALUES("29461", "3", "2016-04-21 22:12:11", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("29462", "10", "2016-04-21 22:12:12", "68.180.229.244", "27");
INSERT INTO `wp_rg_form_view` VALUES("29463", "3", "2016-04-21 23:24:23", "216.113.222.72", "88");
INSERT INTO `wp_rg_form_view` VALUES("29464", "3", "2016-04-21 23:24:23", "216.113.222.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("29465", "3", "2016-04-21 23:24:23", "216.113.222.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("29466", "10", "2016-04-21 23:24:35", "216.113.222.72", "89");
INSERT INTO `wp_rg_form_view` VALUES("29467", "10", "2016-04-21 23:24:35", "216.113.222.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("29468", "10", "2016-04-21 23:24:35", "216.113.222.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("29469", "3", "2016-04-22 01:07:41", "51.255.65.27", "21");
INSERT INTO `wp_rg_form_view` VALUES("29470", "10", "2016-04-22 01:07:46", "51.255.65.27", "15");
INSERT INTO `wp_rg_form_view` VALUES("29471", "3", "2016-04-22 02:15:12", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("29472", "10", "2016-04-22 02:15:13", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("29473", "12", "2016-04-22 03:07:16", "68.180.229.244", "2");
INSERT INTO `wp_rg_form_view` VALUES("29474", "3", "2016-04-22 03:07:18", "68.180.229.244", "176");
INSERT INTO `wp_rg_form_view` VALUES("29475", "10", "2016-04-22 03:07:18", "68.180.229.244", "176");
INSERT INTO `wp_rg_form_view` VALUES("29476", "5", "2016-04-22 03:47:55", "164.132.161.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("29477", "11", "2016-04-22 03:54:06", "86.123.245.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("29478", "2", "2016-04-22 03:55:11", "86.123.245.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("29479", "3", "2016-04-22 04:14:46", "24.69.23.114", "50");
INSERT INTO `wp_rg_form_view` VALUES("29480", "10", "2016-04-22 04:14:46", "24.69.23.114", "50");
INSERT INTO `wp_rg_form_view` VALUES("29481", "3", "2016-04-22 05:40:16", "164.132.161.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("29482", "10", "2016-04-22 07:02:14", "66.249.79.176", "65");
INSERT INTO `wp_rg_form_view` VALUES("29483", "3", "2016-04-22 07:02:15", "66.249.79.176", "66");
INSERT INTO `wp_rg_form_view` VALUES("29484", "11", "2016-04-22 07:22:45", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29485", "8", "2016-04-22 07:35:38", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("29486", "10", "2016-04-22 08:53:17", "207.46.13.119", "5");
INSERT INTO `wp_rg_form_view` VALUES("29487", "3", "2016-04-22 08:53:18", "207.46.13.119", "5");
INSERT INTO `wp_rg_form_view` VALUES("29488", "10", "2016-04-22 09:25:10", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("29489", "3", "2016-04-22 09:25:10", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("29490", "3", "2016-04-22 10:18:53", "68.180.229.244", "144");
INSERT INTO `wp_rg_form_view` VALUES("29491", "10", "2016-04-22 10:18:54", "68.180.229.244", "132");
INSERT INTO `wp_rg_form_view` VALUES("29492", "8", "2016-04-22 10:18:55", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29493", "9", "2016-04-22 10:18:55", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29494", "11", "2016-04-22 10:46:45", "104.236.239.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("29495", "12", "2016-04-22 10:46:47", "104.236.239.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("29496", "2", "2016-04-22 10:46:48", "104.236.239.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("29497", "10", "2016-04-22 11:06:34", "62.210.162.184", "15");
INSERT INTO `wp_rg_form_view` VALUES("29498", "3", "2016-04-22 11:06:34", "62.210.162.184", "15");
INSERT INTO `wp_rg_form_view` VALUES("29499", "10", "2016-04-22 12:00:55", "51.255.65.90", "85");
INSERT INTO `wp_rg_form_view` VALUES("29500", "3", "2016-04-22 12:00:56", "51.255.65.90", "88");
INSERT INTO `wp_rg_form_view` VALUES("29501", "10", "2016-04-22 13:00:18", "157.55.39.156", "40");
INSERT INTO `wp_rg_form_view` VALUES("29502", "3", "2016-04-22 13:00:19", "157.55.39.156", "41");
INSERT INTO `wp_rg_form_view` VALUES("29503", "10", "2016-04-22 14:18:12", "62.210.162.184", "16");
INSERT INTO `wp_rg_form_view` VALUES("29504", "3", "2016-04-22 14:18:13", "62.210.162.184", "15");
INSERT INTO `wp_rg_form_view` VALUES("29505", "3", "2016-04-22 15:07:22", "202.46.58.56", "287");
INSERT INTO `wp_rg_form_view` VALUES("29506", "10", "2016-04-22 15:07:25", "202.46.58.56", "275");
INSERT INTO `wp_rg_form_view` VALUES("29507", "1", "2016-04-22 15:49:57", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("29508", "9", "2016-04-22 15:50:24", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("29509", "10", "2016-04-22 16:02:00", "62.210.162.184", "631");
INSERT INTO `wp_rg_form_view` VALUES("29510", "3", "2016-04-22 16:02:01", "62.210.162.184", "653");
INSERT INTO `wp_rg_form_view` VALUES("29511", "11", "2016-04-22 16:47:02", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("29512", "2", "2016-04-22 16:47:06", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("29513", "12", "2016-04-22 16:48:56", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("29514", "1", "2016-04-22 16:49:40", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("29515", "8", "2016-04-22 16:55:08", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("29516", "9", "2016-04-22 16:55:16", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("29517", "5", "2016-04-22 16:56:06", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("29518", "10", "2016-04-22 17:00:00", "5.9.98.130", "374");
INSERT INTO `wp_rg_form_view` VALUES("29519", "3", "2016-04-22 17:00:00", "5.9.98.130", "350");
INSERT INTO `wp_rg_form_view` VALUES("29520", "6", "2016-04-22 17:00:16", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("29521", "10", "2016-04-22 18:11:01", "164.132.161.80", "16");
INSERT INTO `wp_rg_form_view` VALUES("29522", "3", "2016-04-22 18:11:02", "164.132.161.80", "15");
INSERT INTO `wp_rg_form_view` VALUES("29523", "3", "2016-04-22 19:05:10", "157.55.39.199", "21");
INSERT INTO `wp_rg_form_view` VALUES("29524", "10", "2016-04-22 19:05:11", "157.55.39.199", "20");
INSERT INTO `wp_rg_form_view` VALUES("29525", "3", "2016-04-22 20:11:35", "77.75.78.166", "35");
INSERT INTO `wp_rg_form_view` VALUES("29526", "10", "2016-04-22 20:11:37", "77.75.78.166", "31");
INSERT INTO `wp_rg_form_view` VALUES("29527", "12", "2016-04-22 20:50:49", "207.46.13.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("29528", "9", "2016-04-22 21:21:23", "51.255.65.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("29529", "10", "2016-04-22 21:21:25", "51.255.65.55", "80");
INSERT INTO `wp_rg_form_view` VALUES("29530", "3", "2016-04-22 21:21:26", "51.255.65.55", "81");
INSERT INTO `wp_rg_form_view` VALUES("29531", "10", "2016-04-22 22:24:00", "69.63.185.118", "25");
INSERT INTO `wp_rg_form_view` VALUES("29532", "3", "2016-04-22 22:24:01", "69.63.185.118", "25");
INSERT INTO `wp_rg_form_view` VALUES("29533", "1", "2016-04-22 22:27:27", "96.50.6.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29534", "5", "2016-04-22 23:23:12", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29535", "10", "2016-04-22 23:23:13", "68.180.229.244", "91");
INSERT INTO `wp_rg_form_view` VALUES("29536", "3", "2016-04-22 23:23:15", "68.180.229.244", "92");
INSERT INTO `wp_rg_form_view` VALUES("29537", "10", "2016-04-23 00:11:30", "68.180.229.244", "35");
INSERT INTO `wp_rg_form_view` VALUES("29538", "3", "2016-04-23 00:11:30", "68.180.229.244", "36");
INSERT INTO `wp_rg_form_view` VALUES("29539", "10", "2016-04-23 01:05:17", "96.50.25.109", "61");
INSERT INTO `wp_rg_form_view` VALUES("29540", "3", "2016-04-23 01:05:18", "96.50.25.109", "65");
INSERT INTO `wp_rg_form_view` VALUES("29541", "3", "2016-04-23 02:10:54", "202.46.51.204", "21");
INSERT INTO `wp_rg_form_view` VALUES("29542", "10", "2016-04-23 02:10:54", "202.46.51.204", "20");
INSERT INTO `wp_rg_form_view` VALUES("29543", "10", "2016-04-23 03:05:22", "151.80.31.161", "2706");
INSERT INTO `wp_rg_form_view` VALUES("29544", "3", "2016-04-23 03:05:22", "151.80.31.161", "2266");
INSERT INTO `wp_rg_form_view` VALUES("29545", "11", "2016-04-23 03:11:03", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("29546", "2", "2016-04-23 03:11:06", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("29547", "12", "2016-04-23 03:12:00", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("29548", "1", "2016-04-23 03:12:55", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("29549", "5", "2016-04-23 03:15:00", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("29550", "8", "2016-04-23 03:17:31", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("29551", "9", "2016-04-23 03:17:36", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("29552", "10", "2016-04-23 04:13:21", "207.46.13.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("29553", "3", "2016-04-23 04:13:23", "207.46.13.169", "16");
INSERT INTO `wp_rg_form_view` VALUES("29554", "8", "2016-04-23 05:01:51", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29555", "10", "2016-04-23 05:01:51", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29556", "3", "2016-04-23 05:01:51", "68.180.229.244", "22");
INSERT INTO `wp_rg_form_view` VALUES("29557", "3", "2016-04-23 06:31:23", "51.255.65.8", "6");
INSERT INTO `wp_rg_form_view` VALUES("29558", "10", "2016-04-23 06:39:55", "220.181.108.141", "5");
INSERT INTO `wp_rg_form_view` VALUES("29559", "10", "2016-04-23 08:04:00", "51.255.65.41", "15");
INSERT INTO `wp_rg_form_view` VALUES("29560", "3", "2016-04-23 08:04:01", "51.255.65.41", "15");
INSERT INTO `wp_rg_form_view` VALUES("29561", "8", "2016-04-23 08:52:25", "207.46.13.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("29562", "11", "2016-04-23 09:27:27", "69.30.198.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("29563", "10", "2016-04-23 09:27:30", "69.30.198.178", "70");
INSERT INTO `wp_rg_form_view` VALUES("29564", "3", "2016-04-23 09:27:31", "69.30.198.178", "70");
INSERT INTO `wp_rg_form_view` VALUES("29565", "10", "2016-04-23 11:10:44", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("29566", "3", "2016-04-23 11:10:48", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("29567", "3", "2016-04-23 12:10:21", "40.77.167.84", "11");
INSERT INTO `wp_rg_form_view` VALUES("29568", "10", "2016-04-23 12:10:21", "40.77.167.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("29569", "10", "2016-04-23 13:05:09", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("29570", "3", "2016-04-23 13:05:10", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("29571", "10", "2016-04-23 14:01:24", "89.46.89.137", "85");
INSERT INTO `wp_rg_form_view` VALUES("29572", "3", "2016-04-23 14:01:25", "89.46.89.137", "91");
INSERT INTO `wp_rg_form_view` VALUES("29573", "1", "2016-04-23 14:47:41", "182.75.235.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("29574", "10", "2016-04-23 15:05:22", "24.108.23.50", "55");
INSERT INTO `wp_rg_form_view` VALUES("29575", "3", "2016-04-23 15:05:22", "24.108.23.50", "56");
INSERT INTO `wp_rg_form_view` VALUES("29576", "1", "2016-04-23 15:26:42", "107.150.74.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("29577", "10", "2016-04-23 16:12:07", "66.249.79.162", "75");
INSERT INTO `wp_rg_form_view` VALUES("29578", "3", "2016-04-23 16:12:08", "66.249.79.162", "76");
INSERT INTO `wp_rg_form_view` VALUES("29579", "2", "2016-04-23 16:16:26", "104.223.38.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("29580", "10", "2016-04-23 17:02:30", "202.46.58.91", "47");
INSERT INTO `wp_rg_form_view` VALUES("29581", "3", "2016-04-23 17:02:31", "202.46.58.91", "52");
INSERT INTO `wp_rg_form_view` VALUES("29582", "10", "2016-04-23 18:07:52", "151.80.31.164", "60");
INSERT INTO `wp_rg_form_view` VALUES("29583", "3", "2016-04-23 18:07:52", "151.80.31.164", "60");
INSERT INTO `wp_rg_form_view` VALUES("29584", "11", "2016-04-23 18:33:31", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("29585", "3", "2016-04-23 19:05:32", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("29586", "10", "2016-04-23 19:52:24", "62.210.162.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("29587", "3", "2016-04-23 20:19:43", "154.20.37.37", "68");
INSERT INTO `wp_rg_form_view` VALUES("29588", "10", "2016-04-23 20:19:44", "154.20.37.37", "70");
INSERT INTO `wp_rg_form_view` VALUES("29589", "10", "2016-04-23 21:49:21", "134.249.55.100", "40");
INSERT INTO `wp_rg_form_view` VALUES("29590", "3", "2016-04-23 21:49:22", "134.249.55.100", "40");
INSERT INTO `wp_rg_form_view` VALUES("29591", "2", "2016-04-23 21:57:22", "52.39.107.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("29592", "10", "2016-04-23 22:31:04", "154.20.5.76", "35");
INSERT INTO `wp_rg_form_view` VALUES("29593", "3", "2016-04-23 22:31:06", "154.20.5.76", "37");
INSERT INTO `wp_rg_form_view` VALUES("29594", "10", "2016-04-23 23:04:14", "66.249.79.169", "31");
INSERT INTO `wp_rg_form_view` VALUES("29595", "3", "2016-04-23 23:04:14", "66.249.79.169", "31");
INSERT INTO `wp_rg_form_view` VALUES("29596", "10", "2016-04-24 00:10:49", "199.59.148.210", "16");
INSERT INTO `wp_rg_form_view` VALUES("29597", "3", "2016-04-24 00:10:50", "199.59.148.210", "15");
INSERT INTO `wp_rg_form_view` VALUES("29598", "3", "2016-04-24 01:02:24", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("29599", "10", "2016-04-24 01:38:01", "220.181.108.144", "5");
INSERT INTO `wp_rg_form_view` VALUES("29600", "3", "2016-04-24 02:31:11", "24.108.190.213", "30");
INSERT INTO `wp_rg_form_view` VALUES("29601", "10", "2016-04-24 02:31:12", "24.108.190.213", "30");
INSERT INTO `wp_rg_form_view` VALUES("29602", "3", "2016-04-24 03:58:12", "202.46.48.145", "10");
INSERT INTO `wp_rg_form_view` VALUES("29603", "3", "2016-04-24 03:58:12", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("29604", "10", "2016-04-24 03:58:13", "202.46.48.145", "10");
INSERT INTO `wp_rg_form_view` VALUES("29605", "3", "2016-04-24 04:02:30", "66.249.79.162", "46");
INSERT INTO `wp_rg_form_view` VALUES("29606", "10", "2016-04-24 04:02:30", "66.249.79.162", "48");
INSERT INTO `wp_rg_form_view` VALUES("29607", "9", "2016-04-24 04:30:26", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("29608", "3", "2016-04-24 05:15:52", "66.249.79.176", "70");
INSERT INTO `wp_rg_form_view` VALUES("29609", "10", "2016-04-24 05:16:01", "66.249.79.176", "71");
INSERT INTO `wp_rg_form_view` VALUES("29610", "1", "2016-04-24 05:35:41", "24.69.35.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("29611", "3", "2016-04-24 06:18:30", "77.75.79.95", "18");
INSERT INTO `wp_rg_form_view` VALUES("29612", "10", "2016-04-24 06:18:33", "77.75.79.95", "15");
INSERT INTO `wp_rg_form_view` VALUES("29613", "3", "2016-04-24 07:03:04", "77.75.79.101", "40");
INSERT INTO `wp_rg_form_view` VALUES("29614", "10", "2016-04-24 07:03:05", "77.75.79.101", "35");
INSERT INTO `wp_rg_form_view` VALUES("29615", "1", "2016-04-24 08:08:47", "107.150.85.208", "10");
INSERT INTO `wp_rg_form_view` VALUES("29616", "3", "2016-04-24 08:08:48", "107.150.85.208", "289");
INSERT INTO `wp_rg_form_view` VALUES("29617", "10", "2016-04-24 08:08:48", "107.150.85.208", "281");
INSERT INTO `wp_rg_form_view` VALUES("29618", "11", "2016-04-24 08:19:22", "73.77.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("29619", "12", "2016-04-24 08:19:49", "73.77.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("29620", "2", "2016-04-24 08:20:27", "73.77.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("29621", "3", "2016-04-24 09:01:02", "66.249.79.162", "7289");
INSERT INTO `wp_rg_form_view` VALUES("29622", "10", "2016-04-24 09:01:02", "66.249.79.162", "6935");
INSERT INTO `wp_rg_form_view` VALUES("29623", "11", "2016-04-24 09:22:28", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("29624", "2", "2016-04-24 09:22:28", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("29625", "12", "2016-04-24 09:22:54", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("29626", "1", "2016-04-24 09:23:34", "82.80.249.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("29627", "5", "2016-04-24 09:30:23", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("29628", "8", "2016-04-24 09:33:48", "82.80.249.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("29629", "6", "2016-04-24 09:36:39", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("29630", "9", "2016-04-24 09:36:40", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("29631", "3", "2016-04-24 10:00:00", "82.80.249.137", "952");
INSERT INTO `wp_rg_form_view` VALUES("29632", "10", "2016-04-24 10:00:00", "82.80.249.137", "871");
INSERT INTO `wp_rg_form_view` VALUES("29633", "8", "2016-04-24 10:06:09", "82.80.249.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("29634", "6", "2016-04-24 10:06:25", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("29635", "9", "2016-04-24 10:06:25", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("29636", "1", "2016-04-24 10:26:44", "107.150.74.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("29637", "11", "2016-04-24 10:30:18", "77.75.77.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("29638", "3", "2016-04-24 11:24:12", "46.118.156.3", "124");
INSERT INTO `wp_rg_form_view` VALUES("29639", "3", "2016-04-24 11:24:12", "46.118.156.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("29640", "10", "2016-04-24 11:24:17", "46.118.156.3", "125");
INSERT INTO `wp_rg_form_view` VALUES("29641", "11", "2016-04-24 11:30:20", "54.205.42.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("29642", "2", "2016-04-24 11:30:24", "54.205.42.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("29643", "1", "2016-04-24 11:42:36", "155.94.166.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("29644", "1", "2016-04-24 12:10:22", "104.143.28.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("29645", "3", "2016-04-24 12:10:23", "104.143.28.207", "15");
INSERT INTO `wp_rg_form_view` VALUES("29646", "10", "2016-04-24 12:10:25", "104.143.28.207", "15");
INSERT INTO `wp_rg_form_view` VALUES("29647", "3", "2016-04-24 13:02:00", "61.131.87.215", "74");
INSERT INTO `wp_rg_form_view` VALUES("29648", "10", "2016-04-24 13:02:00", "61.131.87.215", "70");
INSERT INTO `wp_rg_form_view` VALUES("29649", "1", "2016-04-24 13:23:33", "173.254.239.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("29650", "3", "2016-04-24 14:28:17", "75.154.241.209", "15");
INSERT INTO `wp_rg_form_view` VALUES("29651", "10", "2016-04-24 14:28:18", "75.154.241.209", "15");
INSERT INTO `wp_rg_form_view` VALUES("29652", "3", "2016-04-24 15:03:12", "202.46.54.204", "356");
INSERT INTO `wp_rg_form_view` VALUES("29653", "10", "2016-04-24 15:03:13", "202.46.54.204", "338");
INSERT INTO `wp_rg_form_view` VALUES("29654", "1", "2016-04-24 15:17:05", "157.55.39.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("29655", "9", "2016-04-24 15:17:21", "157.55.39.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("29656", "3", "2016-04-24 16:20:54", "70.66.30.172", "17");
INSERT INTO `wp_rg_form_view` VALUES("29657", "10", "2016-04-24 16:20:55", "70.66.30.172", "15");
INSERT INTO `wp_rg_form_view` VALUES("29658", "3", "2016-04-24 17:53:20", "207.46.13.101", "6");
INSERT INTO `wp_rg_form_view` VALUES("29659", "10", "2016-04-24 17:53:22", "207.46.13.101", "5");
INSERT INTO `wp_rg_form_view` VALUES("29660", "3", "2016-04-24 18:03:33", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("29661", "10", "2016-04-24 18:03:33", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("29662", "3", "2016-04-24 19:31:32", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("29663", "10", "2016-04-24 19:31:34", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("29664", "3", "2016-04-24 20:22:07", "202.46.57.26", "49");
INSERT INTO `wp_rg_form_view` VALUES("29665", "10", "2016-04-24 20:22:08", "202.46.57.26", "45");
INSERT INTO `wp_rg_form_view` VALUES("29666", "3", "2016-04-24 21:00:36", "24.108.23.50", "66");
INSERT INTO `wp_rg_form_view` VALUES("29667", "10", "2016-04-24 21:00:36", "24.108.23.50", "66");
INSERT INTO `wp_rg_form_view` VALUES("29668", "12", "2016-04-24 21:21:29", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("29669", "3", "2016-04-24 22:04:13", "66.249.79.169", "166");
INSERT INTO `wp_rg_form_view` VALUES("29670", "10", "2016-04-24 22:04:13", "66.249.79.169", "166");
INSERT INTO `wp_rg_form_view` VALUES("29671", "11", "2016-04-24 22:22:38", "157.55.39.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("29672", "2", "2016-04-24 22:22:48", "157.55.39.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("29673", "9", "2016-04-24 22:32:00", "157.55.39.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("29674", "10", "2016-04-24 23:05:30", "66.249.79.176", "52");
INSERT INTO `wp_rg_form_view` VALUES("29675", "3", "2016-04-24 23:05:30", "66.249.79.176", "52");
INSERT INTO `wp_rg_form_view` VALUES("29676", "3", "2016-04-25 00:00:43", "157.55.39.97", "54");
INSERT INTO `wp_rg_form_view` VALUES("29677", "10", "2016-04-25 00:00:43", "157.55.39.97", "50");
INSERT INTO `wp_rg_form_view` VALUES("29678", "5", "2016-04-25 00:19:36", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("29679", "3", "2016-04-25 01:26:15", "40.77.167.66", "26");
INSERT INTO `wp_rg_form_view` VALUES("29680", "10", "2016-04-25 01:26:17", "40.77.167.66", "25");
INSERT INTO `wp_rg_form_view` VALUES("29681", "3", "2016-04-25 02:01:36", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("29682", "10", "2016-04-25 02:01:37", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("29683", "9", "2016-04-25 02:16:46", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29684", "3", "2016-04-25 03:09:06", "66.249.79.162", "22");
INSERT INTO `wp_rg_form_view` VALUES("29685", "10", "2016-04-25 03:09:08", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("29686", "3", "2016-04-25 04:29:24", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29687", "10", "2016-04-25 04:29:26", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29688", "6", "2016-04-25 05:15:29", "164.132.161.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("29689", "3", "2016-04-25 05:15:32", "164.132.161.33", "15");
INSERT INTO `wp_rg_form_view` VALUES("29690", "10", "2016-04-25 05:15:33", "164.132.161.33", "15");
INSERT INTO `wp_rg_form_view` VALUES("29691", "3", "2016-04-25 06:30:40", "40.77.167.66", "25");
INSERT INTO `wp_rg_form_view` VALUES("29692", "10", "2016-04-25 06:30:43", "40.77.167.66", "25");
INSERT INTO `wp_rg_form_view` VALUES("29693", "9", "2016-04-25 06:38:43", "207.46.13.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("29694", "11", "2016-04-25 06:51:13", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("29695", "9", "2016-04-25 07:13:34", "40.77.167.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("29696", "3", "2016-04-25 07:13:35", "40.77.167.66", "42");
INSERT INTO `wp_rg_form_view` VALUES("29697", "10", "2016-04-25 07:13:35", "40.77.167.66", "40");
INSERT INTO `wp_rg_form_view` VALUES("29698", "3", "2016-04-25 08:56:44", "202.46.55.68", "10");
INSERT INTO `wp_rg_form_view` VALUES("29699", "10", "2016-04-25 08:56:45", "202.46.55.68", "10");
INSERT INTO `wp_rg_form_view` VALUES("29700", "3", "2016-04-25 09:57:12", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("29701", "10", "2016-04-25 09:57:14", "66.249.79.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("29702", "10", "2016-04-25 10:14:09", "192.99.101.184", "57");
INSERT INTO `wp_rg_form_view` VALUES("29703", "3", "2016-04-25 10:14:09", "192.99.101.184", "57");
INSERT INTO `wp_rg_form_view` VALUES("29704", "1", "2016-04-25 10:51:39", "107.150.74.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("29705", "3", "2016-04-25 11:24:06", "51.255.65.43", "27");
INSERT INTO `wp_rg_form_view` VALUES("29706", "10", "2016-04-25 11:24:16", "51.255.65.43", "25");
INSERT INTO `wp_rg_form_view` VALUES("29707", "3", "2016-04-25 12:03:27", "220.181.108.146", "10");
INSERT INTO `wp_rg_form_view` VALUES("29708", "10", "2016-04-25 12:03:27", "220.181.108.146", "10");
INSERT INTO `wp_rg_form_view` VALUES("29709", "3", "2016-04-25 13:38:56", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("29710", "10", "2016-04-25 13:38:58", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29711", "3", "2016-04-25 14:05:44", "207.46.13.73", "52");
INSERT INTO `wp_rg_form_view` VALUES("29712", "10", "2016-04-25 14:05:46", "207.46.13.73", "55");
INSERT INTO `wp_rg_form_view` VALUES("29713", "11", "2016-04-25 14:59:49", "78.250.190.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("29714", "3", "2016-04-25 15:00:11", "78.250.190.150", "175");
INSERT INTO `wp_rg_form_view` VALUES("29715", "10", "2016-04-25 15:00:11", "78.250.190.150", "171");
INSERT INTO `wp_rg_form_view` VALUES("29716", "12", "2016-04-25 15:02:05", "78.250.190.150", "2");
INSERT INTO `wp_rg_form_view` VALUES("29717", "2", "2016-04-25 15:08:38", "78.250.190.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("29718", "3", "2016-04-25 16:31:24", "66.249.79.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("29719", "10", "2016-04-25 16:31:27", "66.249.79.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("29720", "3", "2016-04-25 17:13:54", "24.68.134.214", "70");
INSERT INTO `wp_rg_form_view` VALUES("29721", "10", "2016-04-25 17:14:09", "24.68.134.214", "65");
INSERT INTO `wp_rg_form_view` VALUES("29722", "3", "2016-04-25 18:26:10", "136.243.17.161", "44");
INSERT INTO `wp_rg_form_view` VALUES("29723", "10", "2016-04-25 18:26:13", "136.243.17.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("29724", "3", "2016-04-25 19:00:16", "69.58.178.59", "245");
INSERT INTO `wp_rg_form_view` VALUES("29725", "10", "2016-04-25 19:00:16", "69.58.178.59", "241");
INSERT INTO `wp_rg_form_view` VALUES("29726", "11", "2016-04-25 19:00:37", "69.58.178.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("29727", "2", "2016-04-25 19:00:41", "69.58.178.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("29728", "12", "2016-04-25 19:28:58", "79.114.249.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("29729", "3", "2016-04-25 20:14:50", "24.69.158.129", "26");
INSERT INTO `wp_rg_form_view` VALUES("29730", "10", "2016-04-25 20:14:52", "24.69.158.129", "25");
INSERT INTO `wp_rg_form_view` VALUES("29731", "3", "2016-04-25 21:09:52", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("29732", "10", "2016-04-25 21:12:07", "66.249.79.176", "22");
INSERT INTO `wp_rg_form_view` VALUES("29733", "3", "2016-04-25 22:11:37", "24.69.132.110", "211");
INSERT INTO `wp_rg_form_view` VALUES("29734", "10", "2016-04-25 22:11:39", "24.69.132.110", "211");
INSERT INTO `wp_rg_form_view` VALUES("29735", "11", "2016-04-25 22:32:19", "78.250.190.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("29736", "12", "2016-04-25 22:34:36", "78.250.190.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("29737", "2", "2016-04-25 22:37:42", "78.250.190.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("29738", "3", "2016-04-25 23:18:27", "202.46.54.139", "10");
INSERT INTO `wp_rg_form_view` VALUES("29739", "10", "2016-04-25 23:18:30", "202.46.54.139", "10");
INSERT INTO `wp_rg_form_view` VALUES("29740", "3", "2016-04-26 00:08:54", "184.151.118.67", "85");
INSERT INTO `wp_rg_form_view` VALUES("29741", "10", "2016-04-26 00:08:55", "184.151.118.67", "81");
INSERT INTO `wp_rg_form_view` VALUES("29742", "12", "2016-04-26 00:25:35", "202.46.52.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("29743", "10", "2016-04-26 01:00:00", "24.68.137.108", "34");
INSERT INTO `wp_rg_form_view` VALUES("29744", "3", "2016-04-26 01:00:00", "24.68.137.108", "36");
INSERT INTO `wp_rg_form_view` VALUES("29745", "3", "2016-04-26 02:14:55", "157.55.39.88", "315");
INSERT INTO `wp_rg_form_view` VALUES("29746", "10", "2016-04-26 02:14:58", "157.55.39.88", "304");
INSERT INTO `wp_rg_form_view` VALUES("29747", "9", "2016-04-26 02:15:32", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("29748", "7", "2016-04-26 02:15:43", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("29749", "1", "2016-04-26 02:40:07", "184.66.242.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("29750", "3", "2016-04-26 03:05:22", "207.46.13.77", "736");
INSERT INTO `wp_rg_form_view` VALUES("29751", "10", "2016-04-26 03:05:22", "207.46.13.77", "678");
INSERT INTO `wp_rg_form_view` VALUES("29752", "11", "2016-04-26 03:52:42", "144.76.195.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("29753", "2", "2016-04-26 03:52:45", "144.76.195.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("29754", "12", "2016-04-26 03:53:54", "144.76.195.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("29755", "1", "2016-04-26 03:54:43", "144.76.195.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("29756", "8", "2016-04-26 03:56:33", "144.76.195.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("29757", "9", "2016-04-26 03:56:40", "144.76.195.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("29758", "5", "2016-04-26 03:57:00", "144.76.195.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("29759", "6", "2016-04-26 03:58:08", "144.76.195.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("29760", "3", "2016-04-26 04:00:09", "144.76.195.74", "74");
INSERT INTO `wp_rg_form_view` VALUES("29761", "10", "2016-04-26 04:00:09", "144.76.195.74", "70");
INSERT INTO `wp_rg_form_view` VALUES("29762", "10", "2016-04-26 05:01:49", "202.46.56.184", "36");
INSERT INTO `wp_rg_form_view` VALUES("29763", "3", "2016-04-26 05:01:51", "202.46.56.184", "35");
INSERT INTO `wp_rg_form_view` VALUES("29764", "3", "2016-04-26 06:13:47", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29765", "10", "2016-04-26 06:13:48", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29766", "3", "2016-04-26 07:35:42", "205.250.166.222", "12");
INSERT INTO `wp_rg_form_view` VALUES("29767", "10", "2016-04-26 07:35:46", "205.250.166.222", "10");
INSERT INTO `wp_rg_form_view` VALUES("29768", "3", "2016-04-26 08:16:38", "66.249.79.162", "46");
INSERT INTO `wp_rg_form_view` VALUES("29769", "10", "2016-04-26 08:16:47", "66.249.79.162", "45");
INSERT INTO `wp_rg_form_view` VALUES("29770", "3", "2016-04-26 10:00:03", "68.180.229.244", "190");
INSERT INTO `wp_rg_form_view` VALUES("29771", "10", "2016-04-26 10:00:05", "68.180.229.244", "186");
INSERT INTO `wp_rg_form_view` VALUES("29772", "11", "2016-04-26 10:26:22", "79.114.249.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("29773", "12", "2016-04-26 10:26:52", "79.114.249.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("29774", "2", "2016-04-26 10:27:29", "79.114.249.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("29775", "3", "2016-04-26 11:10:38", "77.75.76.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("29776", "10", "2016-04-26 11:10:38", "77.75.76.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("29777", "2", "2016-04-26 11:40:26", "104.140.73.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("29778", "3", "2016-04-26 12:25:17", "51.255.65.56", "11");
INSERT INTO `wp_rg_form_view` VALUES("29779", "10", "2016-04-26 12:25:19", "51.255.65.56", "10");
INSERT INTO `wp_rg_form_view` VALUES("29780", "3", "2016-04-26 13:06:52", "50.63.157.171", "494");
INSERT INTO `wp_rg_form_view` VALUES("29781", "10", "2016-04-26 13:06:55", "50.63.157.171", "475");
INSERT INTO `wp_rg_form_view` VALUES("29782", "11", "2016-04-26 13:07:12", "50.63.157.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("29783", "2", "2016-04-26 13:07:14", "50.63.157.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("29784", "12", "2016-04-26 13:08:34", "50.63.157.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("29785", "1", "2016-04-26 13:09:11", "50.63.157.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("29786", "6", "2016-04-26 13:44:39", "202.46.55.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("29787", "3", "2016-04-26 14:02:58", "154.20.5.76", "61");
INSERT INTO `wp_rg_form_view` VALUES("29788", "10", "2016-04-26 14:03:01", "154.20.5.76", "60");
INSERT INTO `wp_rg_form_view` VALUES("29789", "1", "2016-04-26 14:06:38", "104.140.73.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("29790", "2", "2016-04-26 14:51:54", "202.46.57.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("29791", "3", "2016-04-26 15:03:09", "68.180.229.244", "106");
INSERT INTO `wp_rg_form_view` VALUES("29792", "10", "2016-04-26 15:03:10", "68.180.229.244", "106");
INSERT INTO `wp_rg_form_view` VALUES("29793", "12", "2016-04-26 15:37:36", "96.50.57.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("29794", "1", "2016-04-26 15:40:38", "96.50.57.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("29795", "3", "2016-04-26 16:12:53", "96.50.57.61", "130");
INSERT INTO `wp_rg_form_view` VALUES("29796", "10", "2016-04-26 16:12:55", "96.50.57.61", "119");
INSERT INTO `wp_rg_form_view` VALUES("29797", "1", "2016-04-26 16:19:53", "107.150.74.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("29798", "12", "2016-04-26 16:24:15", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("29799", "3", "2016-04-26 17:21:39", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("29800", "10", "2016-04-26 17:21:42", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("29801", "3", "2016-04-26 18:00:08", "68.180.229.244", "12");
INSERT INTO `wp_rg_form_view` VALUES("29802", "10", "2016-04-26 18:35:07", "164.132.161.9", "10");
INSERT INTO `wp_rg_form_view` VALUES("29803", "3", "2016-04-26 19:18:43", "134.249.55.100", "91");
INSERT INTO `wp_rg_form_view` VALUES("29804", "3", "2016-04-26 19:18:43", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29805", "3", "2016-04-26 19:18:43", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29806", "3", "2016-04-26 19:18:43", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29807", "10", "2016-04-26 19:18:51", "134.249.55.100", "93");
INSERT INTO `wp_rg_form_view` VALUES("29808", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29809", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29810", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29811", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29812", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29813", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29814", "10", "2016-04-26 19:18:51", "134.249.55.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("29815", "3", "2016-04-26 20:12:42", "66.249.79.162", "31");
INSERT INTO `wp_rg_form_view` VALUES("29816", "10", "2016-04-26 20:12:44", "66.249.79.162", "30");
INSERT INTO `wp_rg_form_view` VALUES("29817", "6", "2016-04-26 21:07:58", "148.251.54.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("29818", "3", "2016-04-26 21:07:58", "148.251.54.44", "51");
INSERT INTO `wp_rg_form_view` VALUES("29819", "10", "2016-04-26 21:07:58", "148.251.54.44", "50");
INSERT INTO `wp_rg_form_view` VALUES("29820", "1", "2016-04-26 21:33:11", "151.80.40.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("29821", "3", "2016-04-26 22:01:51", "202.46.53.58", "11");
INSERT INTO `wp_rg_form_view` VALUES("29822", "10", "2016-04-26 22:01:55", "202.46.53.58", "10");
INSERT INTO `wp_rg_form_view` VALUES("29823", "3", "2016-04-26 23:03:40", "199.21.99.202", "11");
INSERT INTO `wp_rg_form_view` VALUES("29824", "10", "2016-04-26 23:03:44", "199.21.99.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("29825", "3", "2016-04-27 00:08:40", "66.249.79.162", "30");
INSERT INTO `wp_rg_form_view` VALUES("29826", "10", "2016-04-27 00:08:44", "66.249.79.162", "30");
INSERT INTO `wp_rg_form_view` VALUES("29827", "2", "2016-04-27 01:21:38", "202.46.49.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("29828", "3", "2016-04-27 01:21:43", "202.46.49.113", "5");
INSERT INTO `wp_rg_form_view` VALUES("29829", "10", "2016-04-27 01:21:43", "202.46.49.113", "5");
INSERT INTO `wp_rg_form_view` VALUES("29830", "3", "2016-04-27 02:08:45", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("29831", "10", "2016-04-27 02:08:47", "68.180.229.244", "32");
INSERT INTO `wp_rg_form_view` VALUES("29832", "3", "2016-04-27 03:06:00", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("29833", "10", "2016-04-27 03:06:00", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("29834", "3", "2016-04-27 04:23:34", "207.46.13.178", "6");
INSERT INTO `wp_rg_form_view` VALUES("29835", "10", "2016-04-27 04:23:39", "207.46.13.178", "5");
INSERT INTO `wp_rg_form_view` VALUES("29836", "3", "2016-04-27 05:03:10", "202.46.53.48", "11");
INSERT INTO `wp_rg_form_view` VALUES("29837", "10", "2016-04-27 05:03:15", "202.46.53.48", "10");
INSERT INTO `wp_rg_form_view` VALUES("29838", "10", "2016-04-27 06:58:25", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("29839", "3", "2016-04-27 06:58:26", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("29840", "3", "2016-04-27 07:08:47", "202.46.57.206", "26");
INSERT INTO `wp_rg_form_view` VALUES("29841", "10", "2016-04-27 07:08:49", "202.46.57.206", "26");
INSERT INTO `wp_rg_form_view` VALUES("29842", "3", "2016-04-27 08:15:56", "202.46.58.206", "11");
INSERT INTO `wp_rg_form_view` VALUES("29843", "10", "2016-04-27 08:16:09", "202.46.58.206", "10");
INSERT INTO `wp_rg_form_view` VALUES("29844", "3", "2016-04-27 09:34:33", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("29845", "10", "2016-04-27 09:34:34", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("29846", "3", "2016-04-27 10:25:28", "68.180.229.244", "13");
INSERT INTO `wp_rg_form_view` VALUES("29847", "10", "2016-04-27 10:25:29", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("29848", "3", "2016-04-27 12:10:59", "207.46.13.15", "18");
INSERT INTO `wp_rg_form_view` VALUES("29849", "10", "2016-04-27 12:11:02", "207.46.13.15", "15");
INSERT INTO `wp_rg_form_view` VALUES("29850", "3", "2016-04-27 13:12:47", "207.46.13.151", "21");
INSERT INTO `wp_rg_form_view` VALUES("29851", "10", "2016-04-27 13:12:47", "207.46.13.151", "26");
INSERT INTO `wp_rg_form_view` VALUES("29852", "9", "2016-04-27 13:45:33", "220.181.108.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("29853", "3", "2016-04-27 15:50:45", "216.223.78.30", "10");
INSERT INTO `wp_rg_form_view` VALUES("29854", "10", "2016-04-27 15:50:47", "216.223.78.30", "10");
INSERT INTO `wp_rg_form_view` VALUES("29855", "12", "2016-04-27 16:46:21", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("29856", "3", "2016-04-27 16:46:24", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29857", "10", "2016-04-27 16:46:24", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("29858", "11", "2016-04-27 16:52:12", "24.108.28.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("29859", "3", "2016-04-27 17:33:36", "24.68.133.51", "25");
INSERT INTO `wp_rg_form_view` VALUES("29860", "10", "2016-04-27 17:33:41", "24.68.133.51", "25");
INSERT INTO `wp_rg_form_view` VALUES("29861", "3", "2016-04-27 18:56:09", "207.46.13.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("29862", "10", "2016-04-27 18:56:10", "207.46.13.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("29863", "3", "2016-04-27 19:04:05", "207.46.13.15", "45");
INSERT INTO `wp_rg_form_view` VALUES("29864", "10", "2016-04-27 19:04:06", "207.46.13.15", "45");
INSERT INTO `wp_rg_form_view` VALUES("29865", "2", "2016-04-27 19:22:44", "202.46.51.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("29866", "1", "2016-04-27 19:51:26", "24.68.32.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("29867", "3", "2016-04-27 20:03:14", "24.68.32.78", "15");
INSERT INTO `wp_rg_form_view` VALUES("29868", "10", "2016-04-27 20:03:17", "24.68.32.78", "15");
INSERT INTO `wp_rg_form_view` VALUES("29869", "3", "2016-04-27 21:14:12", "157.55.39.208", "36");
INSERT INTO `wp_rg_form_view` VALUES("29870", "10", "2016-04-27 21:14:17", "157.55.39.208", "35");
INSERT INTO `wp_rg_form_view` VALUES("29871", "3", "2016-04-27 22:05:53", "66.249.79.176", "35");
INSERT INTO `wp_rg_form_view` VALUES("29872", "10", "2016-04-27 22:05:54", "66.249.79.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("29873", "1", "2016-04-27 23:01:47", "186.212.105.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("29874", "3", "2016-04-27 23:01:47", "186.212.105.207", "57");
INSERT INTO `wp_rg_form_view` VALUES("29875", "10", "2016-04-27 23:01:47", "186.212.105.207", "55");
INSERT INTO `wp_rg_form_view` VALUES("29876", "3", "2016-04-28 00:14:43", "51.255.65.54", "10");
INSERT INTO `wp_rg_form_view` VALUES("29877", "10", "2016-04-28 00:14:44", "51.255.65.54", "11");
INSERT INTO `wp_rg_form_view` VALUES("29878", "3", "2016-04-28 01:03:03", "64.180.75.132", "20");
INSERT INTO `wp_rg_form_view` VALUES("29879", "10", "2016-04-28 01:03:05", "64.180.75.132", "20");
INSERT INTO `wp_rg_form_view` VALUES("29880", "12", "2016-04-28 01:35:32", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29881", "3", "2016-04-28 02:15:58", "202.46.50.131", "20");
INSERT INTO `wp_rg_form_view` VALUES("29882", "10", "2016-04-28 02:16:01", "202.46.50.131", "20");
INSERT INTO `wp_rg_form_view` VALUES("29883", "10", "2016-04-28 03:07:08", "68.180.229.244", "18");
INSERT INTO `wp_rg_form_view` VALUES("29884", "3", "2016-04-28 03:07:09", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("29885", "3", "2016-04-28 04:20:20", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("29886", "10", "2016-04-28 04:20:22", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("29887", "3", "2016-04-28 05:14:50", "51.255.65.10", "10");
INSERT INTO `wp_rg_form_view` VALUES("29888", "10", "2016-04-28 05:14:52", "51.255.65.10", "10");
INSERT INTO `wp_rg_form_view` VALUES("29889", "10", "2016-04-28 06:29:38", "40.77.167.84", "16");
INSERT INTO `wp_rg_form_view` VALUES("29890", "3", "2016-04-28 06:29:40", "40.77.167.84", "15");
INSERT INTO `wp_rg_form_view` VALUES("29891", "3", "2016-04-28 07:12:04", "202.46.51.198", "18");
INSERT INTO `wp_rg_form_view` VALUES("29892", "10", "2016-04-28 07:12:07", "202.46.51.198", "16");
INSERT INTO `wp_rg_form_view` VALUES("29893", "3", "2016-04-28 08:03:31", "40.77.167.41", "16");
INSERT INTO `wp_rg_form_view` VALUES("29894", "10", "2016-04-28 08:03:32", "40.77.167.41", "15");
INSERT INTO `wp_rg_form_view` VALUES("29895", "3", "2016-04-28 09:01:47", "77.75.76.162", "29");
INSERT INTO `wp_rg_form_view` VALUES("29896", "10", "2016-04-28 09:01:48", "77.75.76.162", "26");
INSERT INTO `wp_rg_form_view` VALUES("29897", "10", "2016-04-28 10:06:28", "207.46.13.22", "26");
INSERT INTO `wp_rg_form_view` VALUES("29898", "3", "2016-04-28 10:06:36", "207.46.13.22", "26");
INSERT INTO `wp_rg_form_view` VALUES("29899", "3", "2016-04-28 11:51:18", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29900", "10", "2016-04-28 11:51:20", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29901", "3", "2016-04-28 12:19:26", "51.255.65.95", "19");
INSERT INTO `wp_rg_form_view` VALUES("29902", "10", "2016-04-28 12:19:28", "51.255.65.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("29903", "10", "2016-04-28 13:17:19", "77.75.78.164", "16");
INSERT INTO `wp_rg_form_view` VALUES("29904", "3", "2016-04-28 13:17:20", "77.75.78.164", "11");
INSERT INTO `wp_rg_form_view` VALUES("29905", "3", "2016-04-28 14:43:17", "66.249.79.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("29906", "10", "2016-04-28 14:43:18", "66.249.79.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("29907", "3", "2016-04-28 15:01:24", "202.46.55.178", "25");
INSERT INTO `wp_rg_form_view` VALUES("29908", "10", "2016-04-28 15:01:24", "202.46.55.178", "26");
INSERT INTO `wp_rg_form_view` VALUES("29909", "3", "2016-04-28 16:30:29", "141.8.143.242", "33");
INSERT INTO `wp_rg_form_view` VALUES("29910", "10", "2016-04-28 16:30:40", "141.8.143.242", "30");
INSERT INTO `wp_rg_form_view` VALUES("29911", "3", "2016-04-28 17:05:03", "162.243.3.70", "2052");
INSERT INTO `wp_rg_form_view` VALUES("29912", "10", "2016-04-28 17:05:03", "66.249.79.169", "1964");
INSERT INTO `wp_rg_form_view` VALUES("29913", "1", "2016-04-28 17:10:15", "162.243.3.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29914", "11", "2016-04-28 17:10:35", "162.243.3.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29915", "5", "2016-04-28 17:17:05", "162.243.3.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29916", "12", "2016-04-28 17:21:00", "162.243.3.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29917", "6", "2016-04-28 17:26:11", "162.243.3.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29918", "9", "2016-04-28 17:33:55", "162.243.3.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29919", "2", "2016-04-28 17:43:20", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("29920", "3", "2016-04-28 18:00:00", "162.243.3.70", "1136");
INSERT INTO `wp_rg_form_view` VALUES("29921", "10", "2016-04-28 18:00:01", "162.243.3.70", "1082");
INSERT INTO `wp_rg_form_view` VALUES("29922", "2", "2016-04-28 18:14:19", "162.243.3.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29923", "11", "2016-04-28 18:25:13", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("29924", "8", "2016-04-28 18:28:16", "162.243.3.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("29925", "3", "2016-04-28 19:04:53", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("29926", "10", "2016-04-28 19:04:53", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("29927", "3", "2016-04-28 20:04:36", "66.249.79.162", "21");
INSERT INTO `wp_rg_form_view` VALUES("29928", "10", "2016-04-28 20:04:40", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("29929", "3", "2016-04-28 21:17:51", "66.249.79.169", "45");
INSERT INTO `wp_rg_form_view` VALUES("29930", "10", "2016-04-28 21:17:53", "66.249.79.169", "46");
INSERT INTO `wp_rg_form_view` VALUES("29931", "12", "2016-04-28 21:43:49", "209.207.97.205", "2");
INSERT INTO `wp_rg_form_view` VALUES("29932", "3", "2016-04-28 22:28:21", "207.46.13.71", "8");
INSERT INTO `wp_rg_form_view` VALUES("29933", "10", "2016-04-28 22:28:23", "207.46.13.71", "5");
INSERT INTO `wp_rg_form_view` VALUES("29934", "3", "2016-04-28 23:03:58", "164.132.161.60", "33");
INSERT INTO `wp_rg_form_view` VALUES("29935", "10", "2016-04-28 23:04:02", "164.132.161.60", "30");
INSERT INTO `wp_rg_form_view` VALUES("29936", "10", "2016-04-29 00:35:02", "157.55.39.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("29937", "3", "2016-04-29 00:35:04", "157.55.39.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("29938", "3", "2016-04-29 01:00:21", "51.255.65.13", "26");
INSERT INTO `wp_rg_form_view` VALUES("29939", "10", "2016-04-29 01:00:21", "51.255.65.13", "25");
INSERT INTO `wp_rg_form_view` VALUES("29940", "3", "2016-04-29 02:18:49", "66.249.79.169", "60");
INSERT INTO `wp_rg_form_view` VALUES("29941", "10", "2016-04-29 02:18:51", "66.249.79.169", "60");
INSERT INTO `wp_rg_form_view` VALUES("29942", "9", "2016-04-29 02:48:00", "40.77.167.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("29943", "3", "2016-04-29 03:15:15", "202.46.56.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("29944", "10", "2016-04-29 03:15:17", "202.46.56.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("29945", "10", "2016-04-29 04:26:22", "164.132.161.25", "12");
INSERT INTO `wp_rg_form_view` VALUES("29946", "3", "2016-04-29 04:26:24", "164.132.161.25", "8");
INSERT INTO `wp_rg_form_view` VALUES("29947", "10", "2016-04-29 05:00:27", "66.249.79.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("29948", "3", "2016-04-29 05:00:27", "66.249.79.169", "17");
INSERT INTO `wp_rg_form_view` VALUES("29949", "3", "2016-04-29 06:06:22", "51.255.65.19", "30");
INSERT INTO `wp_rg_form_view` VALUES("29950", "10", "2016-04-29 06:06:28", "51.255.65.19", "48");
INSERT INTO `wp_rg_form_view` VALUES("29951", "3", "2016-04-29 07:05:56", "202.46.48.28", "278");
INSERT INTO `wp_rg_form_view` VALUES("29952", "10", "2016-04-29 07:05:56", "202.46.48.28", "379");
INSERT INTO `wp_rg_form_view` VALUES("29953", "11", "2016-04-29 07:24:18", "68.180.229.244", "2");
INSERT INTO `wp_rg_form_view` VALUES("29954", "9", "2016-04-29 07:38:30", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("29955", "10", "2016-04-29 08:10:40", "66.249.79.176", "24");
INSERT INTO `wp_rg_form_view` VALUES("29956", "3", "2016-04-29 08:10:41", "66.249.79.176", "14");
INSERT INTO `wp_rg_form_view` VALUES("29957", "10", "2016-04-29 09:10:09", "51.255.65.48", "42");
INSERT INTO `wp_rg_form_view` VALUES("29958", "3", "2016-04-29 09:10:11", "51.255.65.48", "28");
INSERT INTO `wp_rg_form_view` VALUES("29959", "3", "2016-04-29 10:08:55", "66.249.79.176", "19");
INSERT INTO `wp_rg_form_view` VALUES("29960", "10", "2016-04-29 10:08:56", "66.249.79.176", "24");
INSERT INTO `wp_rg_form_view` VALUES("29961", "10", "2016-04-29 12:01:06", "207.46.13.71", "12");
INSERT INTO `wp_rg_form_view` VALUES("29962", "3", "2016-04-29 12:01:08", "207.46.13.71", "8");
INSERT INTO `wp_rg_form_view` VALUES("29963", "1", "2016-04-29 12:38:11", "202.46.56.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("29964", "8", "2016-04-29 13:11:41", "202.46.48.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("29965", "10", "2016-04-29 13:11:41", "202.46.48.125", "36");
INSERT INTO `wp_rg_form_view` VALUES("29966", "3", "2016-04-29 13:11:41", "202.46.48.125", "25");
INSERT INTO `wp_rg_form_view` VALUES("29967", "7", "2016-04-29 13:45:11", "202.46.57.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("29968", "10", "2016-04-29 14:01:36", "96.54.214.215", "30");
INSERT INTO `wp_rg_form_view` VALUES("29969", "3", "2016-04-29 14:01:44", "96.54.214.215", "20");
INSERT INTO `wp_rg_form_view` VALUES("29970", "10", "2016-04-29 15:00:55", "46.118.116.239", "55");
INSERT INTO `wp_rg_form_view` VALUES("29971", "3", "2016-04-29 15:00:55", "46.118.116.239", "32");
INSERT INTO `wp_rg_form_view` VALUES("29972", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("29973", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("29974", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("29975", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("29976", "3", "2016-04-29 15:00:55", "46.118.116.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("29977", "12", "2016-04-29 15:52:48", "98.158.84.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("29978", "10", "2016-04-29 16:07:42", "199.59.148.211", "25");
INSERT INTO `wp_rg_form_view` VALUES("29979", "3", "2016-04-29 16:07:43", "199.59.148.211", "16");
INSERT INTO `wp_rg_form_view` VALUES("29980", "10", "2016-04-29 17:40:55", "207.216.13.45", "24");
INSERT INTO `wp_rg_form_view` VALUES("29981", "3", "2016-04-29 17:41:01", "207.216.13.45", "17");
INSERT INTO `wp_rg_form_view` VALUES("29982", "3", "2016-04-29 17:41:01", "207.216.13.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("29983", "10", "2016-04-29 18:03:37", "157.55.39.149", "79");
INSERT INTO `wp_rg_form_view` VALUES("29984", "3", "2016-04-29 18:03:37", "157.55.39.149", "55");
INSERT INTO `wp_rg_form_view` VALUES("29985", "10", "2016-04-29 19:03:00", "83.233.207.74", "42");
INSERT INTO `wp_rg_form_view` VALUES("29986", "3", "2016-04-29 19:03:02", "83.233.207.74", "28");
INSERT INTO `wp_rg_form_view` VALUES("29987", "10", "2016-04-29 20:21:23", "38.112.1.130", "24");
INSERT INTO `wp_rg_form_view` VALUES("29988", "3", "2016-04-29 20:21:24", "38.112.1.130", "16");
INSERT INTO `wp_rg_form_view` VALUES("29989", "12", "2016-04-29 20:27:44", "24.108.97.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("29990", "10", "2016-04-29 21:22:13", "202.46.51.178", "18");
INSERT INTO `wp_rg_form_view` VALUES("29991", "3", "2016-04-29 21:22:15", "202.46.51.178", "12");
INSERT INTO `wp_rg_form_view` VALUES("29992", "10", "2016-04-29 22:07:33", "199.21.99.202", "19");
INSERT INTO `wp_rg_form_view` VALUES("29993", "3", "2016-04-29 22:07:37", "199.21.99.202", "13");
INSERT INTO `wp_rg_form_view` VALUES("29994", "3", "2016-04-29 23:04:54", "68.180.229.244", "56");
INSERT INTO `wp_rg_form_view` VALUES("29995", "10", "2016-04-29 23:04:56", "68.180.229.244", "78");
INSERT INTO `wp_rg_form_view` VALUES("29996", "3", "2016-04-30 00:03:05", "157.55.39.9", "38");
INSERT INTO `wp_rg_form_view` VALUES("29997", "10", "2016-04-30 00:03:05", "157.55.39.9", "54");
INSERT INTO `wp_rg_form_view` VALUES("29998", "10", "2016-04-30 01:27:24", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("29999", "3", "2016-04-30 01:27:26", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("30000", "10", "2016-04-30 02:11:24", "66.249.79.176", "18");
INSERT INTO `wp_rg_form_view` VALUES("30001", "3", "2016-04-30 02:11:26", "66.249.79.176", "12");
INSERT INTO `wp_rg_form_view` VALUES("30002", "10", "2016-04-30 03:14:43", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("30003", "3", "2016-04-30 03:14:46", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("30004", "2", "2016-04-30 04:29:55", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("30005", "10", "2016-04-30 04:29:57", "74.91.26.114", "42");
INSERT INTO `wp_rg_form_view` VALUES("30006", "3", "2016-04-30 04:29:58", "74.91.26.114", "29");
INSERT INTO `wp_rg_form_view` VALUES("30007", "3", "2016-04-30 05:41:19", "66.249.79.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("30008", "10", "2016-04-30 05:41:20", "66.249.79.169", "18");
INSERT INTO `wp_rg_form_view` VALUES("30009", "10", "2016-04-30 06:03:13", "40.77.167.54", "12");
INSERT INTO `wp_rg_form_view` VALUES("30010", "3", "2016-04-30 06:03:13", "40.77.167.54", "10");
INSERT INTO `wp_rg_form_view` VALUES("30011", "10", "2016-04-30 07:09:00", "202.46.52.17", "12");
INSERT INTO `wp_rg_form_view` VALUES("30012", "3", "2016-04-30 07:09:02", "202.46.52.17", "8");
INSERT INTO `wp_rg_form_view` VALUES("30013", "10", "2016-04-30 09:08:56", "66.249.79.169", "30");
INSERT INTO `wp_rg_form_view` VALUES("30014", "3", "2016-04-30 09:08:59", "66.249.79.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("30015", "10", "2016-04-30 10:37:32", "202.46.56.63", "6");
INSERT INTO `wp_rg_form_view` VALUES("30016", "3", "2016-04-30 10:37:34", "202.46.56.63", "4");
INSERT INTO `wp_rg_form_view` VALUES("30017", "10", "2016-04-30 11:14:27", "40.77.167.54", "13");
INSERT INTO `wp_rg_form_view` VALUES("30018", "3", "2016-04-30 11:14:30", "40.77.167.54", "8");
INSERT INTO `wp_rg_form_view` VALUES("30019", "3", "2016-04-30 12:34:45", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30020", "10", "2016-04-30 13:00:28", "66.249.79.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("30021", "3", "2016-04-30 13:00:30", "66.249.79.162", "17");
INSERT INTO `wp_rg_form_view` VALUES("30022", "10", "2016-04-30 14:29:35", "51.255.65.54", "6");
INSERT INTO `wp_rg_form_view` VALUES("30023", "3", "2016-04-30 14:29:37", "51.255.65.54", "4");
INSERT INTO `wp_rg_form_view` VALUES("30024", "10", "2016-04-30 16:17:24", "157.55.39.214", "43");
INSERT INTO `wp_rg_form_view` VALUES("30025", "3", "2016-04-30 16:17:25", "157.55.39.214", "30");
INSERT INTO `wp_rg_form_view` VALUES("30026", "1", "2016-04-30 16:21:08", "89.185.219.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("30027", "10", "2016-04-30 17:01:13", "66.249.79.176", "43");
INSERT INTO `wp_rg_form_view` VALUES("30028", "3", "2016-04-30 17:01:13", "66.249.79.176", "32");
INSERT INTO `wp_rg_form_view` VALUES("30029", "1", "2016-04-30 17:53:45", "104.129.8.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("30030", "3", "2016-04-30 18:13:12", "66.249.79.169", "57");
INSERT INTO `wp_rg_form_view` VALUES("30031", "10", "2016-04-30 18:13:12", "66.249.79.169", "84");
INSERT INTO `wp_rg_form_view` VALUES("30032", "1", "2016-04-30 18:14:06", "104.129.8.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("30033", "10", "2016-04-30 19:04:35", "202.46.53.91", "42");
INSERT INTO `wp_rg_form_view` VALUES("30034", "3", "2016-04-30 19:04:37", "202.46.53.91", "28");
INSERT INTO `wp_rg_form_view` VALUES("30035", "10", "2016-04-30 20:59:38", "24.68.41.139", "6");
INSERT INTO `wp_rg_form_view` VALUES("30036", "3", "2016-04-30 20:59:39", "24.68.41.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("30037", "10", "2016-04-30 21:08:33", "40.77.167.32", "54");
INSERT INTO `wp_rg_form_view` VALUES("30038", "3", "2016-04-30 21:08:33", "40.77.167.32", "40");
INSERT INTO `wp_rg_form_view` VALUES("30039", "10", "2016-04-30 22:04:48", "66.249.79.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("30040", "3", "2016-04-30 22:04:48", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("30041", "10", "2016-04-30 23:14:57", "66.249.79.162", "36");
INSERT INTO `wp_rg_form_view` VALUES("30042", "3", "2016-04-30 23:14:59", "66.249.79.162", "33");
INSERT INTO `wp_rg_form_view` VALUES("30043", "1", "2016-04-30 23:44:46", "117.177.250.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("30044", "3", "2016-05-01 00:21:29", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("30045", "10", "2016-05-01 00:21:29", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("30046", "3", "2016-05-01 01:45:08", "107.151.152.40", "33");
INSERT INTO `wp_rg_form_view` VALUES("30047", "10", "2016-05-01 01:45:10", "107.151.152.40", "30");
INSERT INTO `wp_rg_form_view` VALUES("30048", "9", "2016-05-01 02:08:34", "40.77.167.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("30049", "3", "2016-05-01 02:08:34", "40.77.167.32", "40");
INSERT INTO `wp_rg_form_view` VALUES("30050", "10", "2016-05-01 02:08:34", "40.77.167.32", "40");
INSERT INTO `wp_rg_form_view` VALUES("30051", "3", "2016-05-01 03:04:29", "68.180.229.244", "125");
INSERT INTO `wp_rg_form_view` VALUES("30052", "10", "2016-05-01 03:04:29", "68.180.229.244", "110");
INSERT INTO `wp_rg_form_view` VALUES("30053", "10", "2016-05-01 04:20:05", "68.180.229.244", "72");
INSERT INTO `wp_rg_form_view` VALUES("30054", "3", "2016-05-01 04:20:05", "68.180.229.244", "76");
INSERT INTO `wp_rg_form_view` VALUES("30055", "3", "2016-05-01 05:08:33", "37.115.184.150", "20");
INSERT INTO `wp_rg_form_view` VALUES("30056", "10", "2016-05-01 05:08:34", "37.115.184.150", "20");
INSERT INTO `wp_rg_form_view` VALUES("30057", "3", "2016-05-01 06:07:48", "66.249.79.162", "57");
INSERT INTO `wp_rg_form_view` VALUES("30058", "10", "2016-05-01 06:07:48", "66.249.79.162", "57");
INSERT INTO `wp_rg_form_view` VALUES("30059", "11", "2016-05-01 06:38:46", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30060", "3", "2016-05-01 07:10:37", "77.75.78.170", "22");
INSERT INTO `wp_rg_form_view` VALUES("30061", "10", "2016-05-01 07:10:38", "77.75.78.170", "20");
INSERT INTO `wp_rg_form_view` VALUES("30062", "3", "2016-05-01 08:20:45", "202.46.58.191", "31");
INSERT INTO `wp_rg_form_view` VALUES("30063", "10", "2016-05-01 08:20:50", "202.46.58.191", "30");
INSERT INTO `wp_rg_form_view` VALUES("30064", "3", "2016-05-01 09:01:07", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("30065", "10", "2016-05-01 09:01:07", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("30066", "3", "2016-05-01 10:08:47", "40.77.167.41", "23");
INSERT INTO `wp_rg_form_view` VALUES("30067", "10", "2016-05-01 10:08:47", "40.77.167.41", "20");
INSERT INTO `wp_rg_form_view` VALUES("30068", "9", "2016-05-01 10:25:55", "151.80.31.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("30069", "3", "2016-05-01 11:13:12", "66.249.79.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("30070", "10", "2016-05-01 11:13:12", "66.249.79.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("30071", "11", "2016-05-01 12:54:46", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30072", "12", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30073", "3", "2016-05-01 12:54:47", "104.236.236.26", "95");
INSERT INTO `wp_rg_form_view` VALUES("30074", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30075", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30076", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30077", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30078", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30079", "10", "2016-05-01 12:54:47", "104.236.236.26", "101");
INSERT INTO `wp_rg_form_view` VALUES("30080", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30081", "3", "2016-05-01 12:54:47", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30082", "2", "2016-05-01 12:54:48", "104.236.236.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30083", "3", "2016-05-01 14:19:39", "40.77.167.72", "10");
INSERT INTO `wp_rg_form_view` VALUES("30084", "10", "2016-05-01 14:19:40", "40.77.167.72", "10");
INSERT INTO `wp_rg_form_view` VALUES("30085", "3", "2016-05-01 15:30:58", "164.132.161.71", "11");
INSERT INTO `wp_rg_form_view` VALUES("30086", "10", "2016-05-01 15:31:08", "164.132.161.71", "10");
INSERT INTO `wp_rg_form_view` VALUES("30087", "3", "2016-05-01 16:28:49", "202.46.50.137", "16");
INSERT INTO `wp_rg_form_view` VALUES("30088", "10", "2016-05-01 16:28:50", "202.46.50.137", "15");
INSERT INTO `wp_rg_form_view` VALUES("30089", "3", "2016-05-01 17:05:12", "68.180.229.244", "32");
INSERT INTO `wp_rg_form_view` VALUES("30090", "10", "2016-05-01 17:05:12", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("30091", "3", "2016-05-01 18:07:56", "220.181.108.114", "10");
INSERT INTO `wp_rg_form_view` VALUES("30092", "10", "2016-05-01 18:07:56", "220.181.108.114", "10");
INSERT INTO `wp_rg_form_view` VALUES("30093", "3", "2016-05-01 19:12:30", "209.52.88.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("30094", "10", "2016-05-01 19:12:32", "209.52.88.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("30095", "3", "2016-05-01 20:12:46", "164.132.161.29", "26");
INSERT INTO `wp_rg_form_view` VALUES("30096", "10", "2016-05-01 20:12:47", "164.132.161.29", "27");
INSERT INTO `wp_rg_form_view` VALUES("30097", "3", "2016-05-01 21:07:39", "37.115.184.150", "57");
INSERT INTO `wp_rg_form_view` VALUES("30098", "3", "2016-05-01 21:07:39", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30099", "3", "2016-05-01 21:07:39", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30100", "3", "2016-05-01 21:07:39", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30101", "10", "2016-05-01 21:07:41", "37.115.184.150", "58");
INSERT INTO `wp_rg_form_view` VALUES("30102", "10", "2016-05-01 21:07:41", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30103", "10", "2016-05-01 21:07:41", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30104", "11", "2016-05-01 21:44:09", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("30105", "3", "2016-05-01 22:26:13", "66.249.79.162", "21");
INSERT INTO `wp_rg_form_view` VALUES("30106", "10", "2016-05-01 22:26:13", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("30107", "9", "2016-05-01 23:26:37", "51.255.65.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("30108", "3", "2016-05-01 23:27:45", "202.46.51.20", "27");
INSERT INTO `wp_rg_form_view` VALUES("30109", "10", "2016-05-01 23:27:45", "202.46.51.20", "25");
INSERT INTO `wp_rg_form_view` VALUES("30110", "3", "2016-05-02 00:04:14", "24.68.17.97", "39");
INSERT INTO `wp_rg_form_view` VALUES("30111", "10", "2016-05-02 00:04:15", "24.68.17.97", "35");
INSERT INTO `wp_rg_form_view` VALUES("30112", "3", "2016-05-02 01:13:02", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("30113", "10", "2016-05-02 01:13:04", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("30114", "3", "2016-05-02 02:00:08", "66.249.79.169", "121");
INSERT INTO `wp_rg_form_view` VALUES("30115", "10", "2016-05-02 02:00:10", "66.249.79.169", "120");
INSERT INTO `wp_rg_form_view` VALUES("30116", "9", "2016-05-02 02:17:46", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("30117", "11", "2016-05-02 02:51:39", "80.86.94.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("30118", "2", "2016-05-02 02:51:50", "80.86.94.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("30119", "3", "2016-05-02 03:07:46", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("30120", "10", "2016-05-02 03:07:47", "66.249.79.162", "15");
INSERT INTO `wp_rg_form_view` VALUES("30121", "3", "2016-05-02 04:07:09", "216.232.157.185", "22");
INSERT INTO `wp_rg_form_view` VALUES("30122", "10", "2016-05-02 04:07:09", "216.232.157.185", "20");
INSERT INTO `wp_rg_form_view` VALUES("30123", "3", "2016-05-02 05:06:55", "66.249.79.176", "32");
INSERT INTO `wp_rg_form_view` VALUES("30124", "10", "2016-05-02 05:06:56", "66.249.79.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("30125", "12", "2016-05-02 06:11:27", "185.5.250.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("30126", "3", "2016-05-02 06:11:29", "185.5.250.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("30127", "10", "2016-05-02 06:11:30", "185.5.250.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("30128", "12", "2016-05-02 07:28:18", "202.46.50.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("30129", "3", "2016-05-02 07:28:21", "202.46.50.154", "16");
INSERT INTO `wp_rg_form_view` VALUES("30130", "10", "2016-05-02 07:28:21", "202.46.50.154", "15");
INSERT INTO `wp_rg_form_view` VALUES("30131", "3", "2016-05-02 08:29:59", "40.77.167.41", "390");
INSERT INTO `wp_rg_form_view` VALUES("30132", "10", "2016-05-02 08:30:02", "40.77.167.41", "385");
INSERT INTO `wp_rg_form_view` VALUES("30133", "9", "2016-05-02 08:30:05", "40.77.167.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("30134", "7", "2016-05-02 08:31:27", "157.55.39.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("30135", "3", "2016-05-02 09:06:37", "46.118.116.239", "35");
INSERT INTO `wp_rg_form_view` VALUES("30136", "3", "2016-05-02 09:06:37", "46.118.116.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("30137", "10", "2016-05-02 09:06:37", "46.118.116.239", "34");
INSERT INTO `wp_rg_form_view` VALUES("30138", "10", "2016-05-02 09:06:37", "46.118.116.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("30139", "3", "2016-05-02 10:07:06", "27.156.74.91", "77");
INSERT INTO `wp_rg_form_view` VALUES("30140", "10", "2016-05-02 10:07:06", "27.156.74.91", "71");
INSERT INTO `wp_rg_form_view` VALUES("30141", "3", "2016-05-02 11:19:50", "202.46.58.134", "26");
INSERT INTO `wp_rg_form_view` VALUES("30142", "10", "2016-05-02 11:19:51", "202.46.58.134", "25");
INSERT INTO `wp_rg_form_view` VALUES("30143", "2", "2016-05-02 11:22:00", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("30144", "3", "2016-05-02 12:11:45", "24.108.23.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("30145", "10", "2016-05-02 12:11:46", "24.108.23.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("30146", "3", "2016-05-02 13:06:26", "173.254.239.213", "229");
INSERT INTO `wp_rg_form_view` VALUES("30147", "10", "2016-05-02 13:06:28", "173.254.239.213", "230");
INSERT INTO `wp_rg_form_view` VALUES("30148", "1", "2016-05-02 13:20:32", "107.153.2.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("30149", "12", "2016-05-02 13:32:28", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("30150", "2", "2016-05-02 13:33:01", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("30151", "11", "2016-05-02 13:33:29", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("30152", "3", "2016-05-02 14:14:51", "164.132.161.38", "17");
INSERT INTO `wp_rg_form_view` VALUES("30153", "10", "2016-05-02 14:14:51", "164.132.161.38", "15");
INSERT INTO `wp_rg_form_view` VALUES("30154", "3", "2016-05-02 15:30:48", "66.249.79.176", "166");
INSERT INTO `wp_rg_form_view` VALUES("30155", "10", "2016-05-02 15:30:52", "66.249.79.176", "166");
INSERT INTO `wp_rg_form_view` VALUES("30156", "11", "2016-05-02 15:31:11", "76.72.172.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("30157", "12", "2016-05-02 15:31:46", "76.72.172.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("30158", "2", "2016-05-02 15:32:24", "76.72.172.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("30159", "3", "2016-05-02 16:36:15", "66.249.79.169", "21");
INSERT INTO `wp_rg_form_view` VALUES("30160", "10", "2016-05-02 16:36:18", "66.249.79.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("30161", "12", "2016-05-02 17:01:46", "198.103.223.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("30162", "3", "2016-05-02 17:01:46", "198.103.223.52", "51");
INSERT INTO `wp_rg_form_view` VALUES("30163", "10", "2016-05-02 17:01:46", "198.103.223.52", "50");
INSERT INTO `wp_rg_form_view` VALUES("30164", "1", "2016-05-02 17:07:35", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30165", "3", "2016-05-02 18:01:29", "51.255.65.64", "25");
INSERT INTO `wp_rg_form_view` VALUES("30166", "10", "2016-05-02 18:01:30", "51.255.65.64", "25");
INSERT INTO `wp_rg_form_view` VALUES("30167", "8", "2016-05-02 18:37:31", "164.132.161.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("30168", "10", "2016-05-02 19:08:49", "164.132.161.36", "61");
INSERT INTO `wp_rg_form_view` VALUES("30169", "3", "2016-05-02 19:08:49", "164.132.161.36", "66");
INSERT INTO `wp_rg_form_view` VALUES("30170", "3", "2016-05-02 20:02:15", "66.249.79.176", "86");
INSERT INTO `wp_rg_form_view` VALUES("30171", "10", "2016-05-02 20:02:15", "66.249.79.176", "85");
INSERT INTO `wp_rg_form_view` VALUES("30172", "6", "2016-05-02 20:14:26", "164.132.161.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("30173", "3", "2016-05-02 21:10:45", "40.77.167.72", "21");
INSERT INTO `wp_rg_form_view` VALUES("30174", "10", "2016-05-02 21:10:46", "40.77.167.72", "20");
INSERT INTO `wp_rg_form_view` VALUES("30175", "3", "2016-05-02 22:07:03", "46.118.116.239", "200");
INSERT INTO `wp_rg_form_view` VALUES("30176", "10", "2016-05-02 22:07:04", "46.118.116.239", "195");
INSERT INTO `wp_rg_form_view` VALUES("30177", "10", "2016-05-02 22:07:05", "46.118.116.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("30178", "2", "2016-05-02 22:37:41", "174.127.133.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("30179", "3", "2016-05-02 23:00:20", "174.127.133.30", "215");
INSERT INTO `wp_rg_form_view` VALUES("30180", "10", "2016-05-02 23:00:20", "174.127.133.30", "211");
INSERT INTO `wp_rg_form_view` VALUES("30181", "12", "2016-05-02 23:59:30", "184.66.33.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("30182", "3", "2016-05-03 00:00:27", "184.66.33.171", "42");
INSERT INTO `wp_rg_form_view` VALUES("30183", "10", "2016-05-03 00:00:27", "184.66.33.171", "40");
INSERT INTO `wp_rg_form_view` VALUES("30184", "3", "2016-05-03 01:05:09", "220.181.108.178", "10");
INSERT INTO `wp_rg_form_view` VALUES("30185", "10", "2016-05-03 01:05:10", "220.181.108.178", "10");
INSERT INTO `wp_rg_form_view` VALUES("30186", "3", "2016-05-03 02:06:08", "41.85.189.163", "52");
INSERT INTO `wp_rg_form_view` VALUES("30187", "10", "2016-05-03 02:06:09", "41.85.189.163", "50");
INSERT INTO `wp_rg_form_view` VALUES("30188", "8", "2016-05-03 02:33:52", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30189", "10", "2016-05-03 03:01:23", "154.5.204.182", "20");
INSERT INTO `wp_rg_form_view` VALUES("30190", "3", "2016-05-03 03:01:54", "154.5.204.182", "15");
INSERT INTO `wp_rg_form_view` VALUES("30191", "3", "2016-05-03 04:02:44", "66.249.79.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("30192", "10", "2016-05-03 04:02:46", "66.249.79.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("30193", "3", "2016-05-03 06:23:58", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("30194", "10", "2016-05-03 06:24:04", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("30195", "3", "2016-05-03 07:04:42", "40.77.167.41", "15");
INSERT INTO `wp_rg_form_view` VALUES("30196", "10", "2016-05-03 07:04:42", "40.77.167.41", "15");
INSERT INTO `wp_rg_form_view` VALUES("30197", "5", "2016-05-03 07:43:36", "40.77.167.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("30198", "3", "2016-05-03 08:05:05", "164.132.161.50", "20");
INSERT INTO `wp_rg_form_view` VALUES("30199", "10", "2016-05-03 08:05:06", "164.132.161.50", "20");
INSERT INTO `wp_rg_form_view` VALUES("30200", "9", "2016-05-03 08:17:06", "202.46.48.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("30201", "3", "2016-05-03 09:32:29", "66.249.79.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("30202", "10", "2016-05-03 09:32:31", "66.249.79.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("30203", "3", "2016-05-03 10:02:45", "68.180.229.244", "26");
INSERT INTO `wp_rg_form_view` VALUES("30204", "10", "2016-05-03 10:02:45", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("30205", "3", "2016-05-03 11:09:30", "51.255.65.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("30206", "10", "2016-05-03 11:09:30", "51.255.65.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("30207", "3", "2016-05-03 12:26:16", "77.75.79.36", "2343");
INSERT INTO `wp_rg_form_view` VALUES("30208", "10", "2016-05-03 12:26:18", "77.75.79.36", "2293");
INSERT INTO `wp_rg_form_view` VALUES("30209", "11", "2016-05-03 12:35:43", "173.192.34.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("30210", "2", "2016-05-03 12:35:45", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("30211", "12", "2016-05-03 12:36:37", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("30212", "1", "2016-05-03 12:37:30", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("30213", "5", "2016-05-03 12:39:25", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("30214", "8", "2016-05-03 12:41:55", "173.192.34.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("30215", "9", "2016-05-03 12:42:00", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("30216", "10", "2016-05-03 13:00:00", "173.192.34.95", "299");
INSERT INTO `wp_rg_form_view` VALUES("30217", "3", "2016-05-03 13:00:00", "173.192.34.95", "294");
INSERT INTO `wp_rg_form_view` VALUES("30218", "11", "2016-05-03 13:03:18", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("30219", "10", "2016-05-03 14:05:05", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("30220", "3", "2016-05-03 14:20:14", "5.9.85.4", "17");
INSERT INTO `wp_rg_form_view` VALUES("30221", "3", "2016-05-03 15:00:38", "68.180.229.244", "52");
INSERT INTO `wp_rg_form_view` VALUES("30222", "10", "2016-05-03 15:00:40", "68.180.229.244", "45");
INSERT INTO `wp_rg_form_view` VALUES("30223", "3", "2016-05-03 16:07:51", "202.46.52.61", "99");
INSERT INTO `wp_rg_form_view` VALUES("30224", "10", "2016-05-03 16:07:52", "202.46.52.61", "90");
INSERT INTO `wp_rg_form_view` VALUES("30225", "3", "2016-05-03 17:01:50", "66.249.79.176", "237");
INSERT INTO `wp_rg_form_view` VALUES("30226", "10", "2016-05-03 17:01:50", "66.249.79.176", "236");
INSERT INTO `wp_rg_form_view` VALUES("30227", "1", "2016-05-03 17:28:09", "107.168.10.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("30228", "11", "2016-05-03 17:33:02", "86.123.244.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("30229", "12", "2016-05-03 17:33:30", "86.123.244.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("30230", "2", "2016-05-03 17:34:07", "86.123.244.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("30231", "3", "2016-05-03 18:23:48", "164.132.161.68", "26");
INSERT INTO `wp_rg_form_view` VALUES("30232", "10", "2016-05-03 18:23:49", "164.132.161.68", "25");
INSERT INTO `wp_rg_form_view` VALUES("30233", "11", "2016-05-03 18:47:57", "202.46.51.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("30234", "3", "2016-05-03 19:16:37", "24.244.23.171", "48");
INSERT INTO `wp_rg_form_view` VALUES("30235", "10", "2016-05-03 19:16:40", "24.244.23.171", "40");
INSERT INTO `wp_rg_form_view` VALUES("30236", "3", "2016-05-03 20:03:33", "24.244.23.181", "86");
INSERT INTO `wp_rg_form_view` VALUES("30237", "10", "2016-05-03 20:03:33", "24.244.23.181", "75");
INSERT INTO `wp_rg_form_view` VALUES("30238", "1", "2016-05-03 20:04:58", "117.135.251.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("30239", "3", "2016-05-03 21:18:37", "164.132.161.87", "84");
INSERT INTO `wp_rg_form_view` VALUES("30240", "10", "2016-05-03 21:18:56", "164.132.161.87", "75");
INSERT INTO `wp_rg_form_view` VALUES("30241", "3", "2016-05-03 22:08:33", "68.180.229.244", "55");
INSERT INTO `wp_rg_form_view` VALUES("30242", "10", "2016-05-03 22:08:33", "68.180.229.244", "50");
INSERT INTO `wp_rg_form_view` VALUES("30243", "3", "2016-05-03 23:15:25", "68.180.229.244", "91");
INSERT INTO `wp_rg_form_view` VALUES("30244", "10", "2016-05-03 23:15:27", "68.180.229.244", "81");
INSERT INTO `wp_rg_form_view` VALUES("30245", "3", "2016-05-04 00:15:56", "24.68.41.139", "30");
INSERT INTO `wp_rg_form_view` VALUES("30246", "10", "2016-05-04 00:15:56", "24.68.41.139", "30");
INSERT INTO `wp_rg_form_view` VALUES("30247", "3", "2016-05-04 01:32:26", "67.198.206.134", "83");
INSERT INTO `wp_rg_form_view` VALUES("30248", "10", "2016-05-04 01:32:27", "67.198.206.134", "70");
INSERT INTO `wp_rg_form_view` VALUES("30249", "3", "2016-05-04 02:18:25", "67.198.206.134", "49");
INSERT INTO `wp_rg_form_view` VALUES("30250", "10", "2016-05-04 02:18:25", "67.198.206.134", "45");
INSERT INTO `wp_rg_form_view` VALUES("30251", "10", "2016-05-04 03:03:35", "68.180.229.244", "17");
INSERT INTO `wp_rg_form_view` VALUES("30252", "3", "2016-05-04 03:03:35", "68.180.229.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("30253", "3", "2016-05-04 04:31:41", "79.116.24.187", "166");
INSERT INTO `wp_rg_form_view` VALUES("30254", "10", "2016-05-04 04:31:43", "79.116.24.187", "166");
INSERT INTO `wp_rg_form_view` VALUES("30255", "11", "2016-05-04 04:31:49", "79.116.24.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("30256", "12", "2016-05-04 04:32:29", "79.116.24.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("30257", "2", "2016-05-04 04:33:21", "79.116.24.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("30258", "3", "2016-05-04 05:15:33", "68.180.229.244", "7");
INSERT INTO `wp_rg_form_view` VALUES("30259", "10", "2016-05-04 05:54:41", "96.54.206.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("30260", "3", "2016-05-04 06:55:49", "164.132.161.6", "5");
INSERT INTO `wp_rg_form_view` VALUES("30261", "10", "2016-05-04 06:55:50", "164.132.161.6", "5");
INSERT INTO `wp_rg_form_view` VALUES("30262", "3", "2016-05-04 07:04:01", "68.180.229.244", "11");
INSERT INTO `wp_rg_form_view` VALUES("30263", "10", "2016-05-04 07:04:01", "68.180.229.244", "12");
INSERT INTO `wp_rg_form_view` VALUES("30264", "3", "2016-05-04 08:02:54", "37.115.184.150", "17");
INSERT INTO `wp_rg_form_view` VALUES("30265", "3", "2016-05-04 08:02:54", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30266", "3", "2016-05-04 08:02:54", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30267", "3", "2016-05-04 08:02:54", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30268", "10", "2016-05-04 08:02:56", "37.115.184.150", "17");
INSERT INTO `wp_rg_form_view` VALUES("30269", "10", "2016-05-04 08:02:56", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30270", "10", "2016-05-04 08:02:56", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30271", "10", "2016-05-04 08:02:56", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30272", "3", "2016-05-04 09:03:02", "75.154.238.16", "27");
INSERT INTO `wp_rg_form_view` VALUES("30273", "10", "2016-05-04 09:03:13", "75.154.238.16", "25");
INSERT INTO `wp_rg_form_view` VALUES("30274", "3", "2016-05-04 10:38:00", "202.46.58.167", "15");
INSERT INTO `wp_rg_form_view` VALUES("30275", "10", "2016-05-04 10:38:02", "202.46.58.167", "15");
INSERT INTO `wp_rg_form_view` VALUES("30276", "3", "2016-05-04 11:11:29", "202.46.49.149", "21");
INSERT INTO `wp_rg_form_view` VALUES("30277", "10", "2016-05-04 11:11:31", "202.46.49.149", "20");
INSERT INTO `wp_rg_form_view` VALUES("30278", "8", "2016-05-04 11:35:54", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30279", "3", "2016-05-04 12:06:43", "66.249.69.53", "30");
INSERT INTO `wp_rg_form_view` VALUES("30280", "10", "2016-05-04 12:06:44", "66.249.69.53", "30");
INSERT INTO `wp_rg_form_view` VALUES("30281", "6", "2016-05-04 12:19:03", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30282", "3", "2016-05-04 13:40:50", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("30283", "10", "2016-05-04 13:40:51", "68.180.229.244", "5");
INSERT INTO `wp_rg_form_view` VALUES("30284", "3", "2016-05-04 14:57:44", "202.46.57.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("30285", "10", "2016-05-04 14:57:45", "202.46.57.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("30286", "3", "2016-05-04 15:15:08", "77.75.77.11", "86");
INSERT INTO `wp_rg_form_view` VALUES("30287", "10", "2016-05-04 15:15:08", "77.75.77.11", "85");
INSERT INTO `wp_rg_form_view` VALUES("30288", "3", "2016-05-04 16:02:40", "146.185.239.11", "41");
INSERT INTO `wp_rg_form_view` VALUES("30289", "10", "2016-05-04 16:02:40", "146.185.239.11", "40");
INSERT INTO `wp_rg_form_view` VALUES("30290", "3", "2016-05-04 17:04:54", "66.249.79.169", "74");
INSERT INTO `wp_rg_form_view` VALUES("30291", "10", "2016-05-04 17:04:56", "66.249.79.169", "71");
INSERT INTO `wp_rg_form_view` VALUES("30292", "1", "2016-05-04 17:25:42", "24.244.29.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("30293", "3", "2016-05-04 18:21:54", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("30294", "10", "2016-05-04 18:21:55", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("30295", "1", "2016-05-04 18:57:58", "154.20.4.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("30296", "3", "2016-05-04 19:09:26", "24.68.17.97", "28");
INSERT INTO `wp_rg_form_view` VALUES("30297", "3", "2016-05-04 19:09:26", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("30298", "3", "2016-05-04 19:09:26", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("30299", "10", "2016-05-04 19:09:26", "24.68.17.97", "28");
INSERT INTO `wp_rg_form_view` VALUES("30300", "10", "2016-05-04 19:09:26", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("30301", "10", "2016-05-04 19:09:26", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("30302", "12", "2016-05-04 20:03:25", "184.66.231.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("30303", "3", "2016-05-04 20:03:30", "184.66.231.67", "25");
INSERT INTO `wp_rg_form_view` VALUES("30304", "10", "2016-05-04 20:03:30", "184.66.231.67", "25");
INSERT INTO `wp_rg_form_view` VALUES("30305", "3", "2016-05-04 21:21:45", "220.181.108.151", "33");
INSERT INTO `wp_rg_form_view` VALUES("30306", "10", "2016-05-04 21:21:50", "220.181.108.151", "30");
INSERT INTO `wp_rg_form_view` VALUES("30307", "1", "2016-05-04 21:52:40", "24.68.17.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("30308", "3", "2016-05-04 22:38:41", "68.180.229.244", "7");
INSERT INTO `wp_rg_form_view` VALUES("30309", "10", "2016-05-04 22:47:32", "202.46.54.31", "5");
INSERT INTO `wp_rg_form_view` VALUES("30310", "3", "2016-05-04 23:37:38", "184.66.33.171", "40");
INSERT INTO `wp_rg_form_view` VALUES("30311", "10", "2016-05-04 23:37:40", "184.66.33.171", "40");
INSERT INTO `wp_rg_form_view` VALUES("30312", "3", "2016-05-05 00:16:30", "202.46.53.65", "21");
INSERT INTO `wp_rg_form_view` VALUES("30313", "10", "2016-05-05 00:16:32", "202.46.53.65", "20");
INSERT INTO `wp_rg_form_view` VALUES("30314", "3", "2016-05-05 01:37:30", "68.180.229.244", "25");
INSERT INTO `wp_rg_form_view` VALUES("30315", "10", "2016-05-05 01:37:32", "68.180.229.244", "26");
INSERT INTO `wp_rg_form_view` VALUES("30316", "12", "2016-05-05 01:40:34", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30317", "10", "2016-05-05 03:14:29", "68.180.229.244", "11");
INSERT INTO `wp_rg_form_view` VALUES("30318", "3", "2016-05-05 03:14:32", "68.180.229.244", "10");
INSERT INTO `wp_rg_form_view` VALUES("30319", "3", "2016-05-05 04:11:48", "54.83.168.98", "40");
INSERT INTO `wp_rg_form_view` VALUES("30320", "10", "2016-05-05 04:11:49", "54.83.168.98", "40");
INSERT INTO `wp_rg_form_view` VALUES("30321", "3", "2016-05-05 05:54:24", "157.55.39.213", "5");
INSERT INTO `wp_rg_form_view` VALUES("30322", "10", "2016-05-05 05:54:26", "157.55.39.213", "5");
INSERT INTO `wp_rg_form_view` VALUES("30323", "3", "2016-05-05 06:23:44", "184.66.34.145", "12");
INSERT INTO `wp_rg_form_view` VALUES("30324", "10", "2016-05-05 06:23:45", "184.66.34.145", "15");
INSERT INTO `wp_rg_form_view` VALUES("30325", "3", "2016-05-05 10:08:06", "157.55.39.213", "81");
INSERT INTO `wp_rg_form_view` VALUES("30326", "10", "2016-05-05 10:08:08", "157.55.39.213", "78");
INSERT INTO `wp_rg_form_view` VALUES("30327", "11", "2016-05-05 10:08:12", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("30328", "9", "2016-05-05 10:08:15", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("30329", "3", "2016-05-05 11:03:41", "5.9.98.130", "2193");
INSERT INTO `wp_rg_form_view` VALUES("30330", "10", "2016-05-05 11:03:41", "5.9.98.130", "2087");
INSERT INTO `wp_rg_form_view` VALUES("30331", "11", "2016-05-05 11:04:00", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30332", "2", "2016-05-05 11:04:04", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30333", "12", "2016-05-05 11:05:50", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30334", "1", "2016-05-05 11:06:28", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30335", "8", "2016-05-05 11:11:47", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30336", "9", "2016-05-05 11:11:56", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30337", "5", "2016-05-05 11:12:44", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30338", "6", "2016-05-05 11:17:05", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30339", "3", "2016-05-05 12:00:03", "5.9.98.130", "2443");
INSERT INTO `wp_rg_form_view` VALUES("30340", "10", "2016-05-05 12:00:04", "5.9.98.130", "2181");
INSERT INTO `wp_rg_form_view` VALUES("30341", "3", "2016-05-05 13:00:00", "5.9.98.130", "2201");
INSERT INTO `wp_rg_form_view` VALUES("30342", "10", "2016-05-05 13:00:00", "5.9.98.130", "2174");
INSERT INTO `wp_rg_form_view` VALUES("30343", "6", "2016-05-05 13:21:44", "202.46.55.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("30344", "3", "2016-05-05 14:04:29", "157.55.39.213", "991");
INSERT INTO `wp_rg_form_view` VALUES("30345", "10", "2016-05-05 14:04:30", "157.55.39.213", "991");
INSERT INTO `wp_rg_form_view` VALUES("30346", "11", "2016-05-05 14:10:54", "80.112.101.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30347", "12", "2016-05-05 14:11:31", "80.112.101.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30348", "2", "2016-05-05 14:12:21", "80.112.101.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30349", "9", "2016-05-05 14:29:25", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("30350", "3", "2016-05-05 15:04:51", "157.55.39.213", "20");
INSERT INTO `wp_rg_form_view` VALUES("30351", "10", "2016-05-05 15:04:54", "157.55.39.213", "20");
INSERT INTO `wp_rg_form_view` VALUES("30352", "11", "2016-05-05 16:06:33", "77.75.78.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("30353", "3", "2016-05-05 16:06:35", "77.75.78.167", "36");
INSERT INTO `wp_rg_form_view` VALUES("30354", "10", "2016-05-05 16:06:35", "77.75.78.167", "35");
INSERT INTO `wp_rg_form_view` VALUES("30355", "3", "2016-05-05 17:00:26", "198.103.184.76", "135");
INSERT INTO `wp_rg_form_view` VALUES("30356", "10", "2016-05-05 17:00:26", "198.103.184.76", "132");
INSERT INTO `wp_rg_form_view` VALUES("30357", "1", "2016-05-05 17:11:50", "198.103.184.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("30358", "2", "2016-05-05 17:46:06", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30359", "3", "2016-05-05 18:03:19", "77.75.79.95", "97");
INSERT INTO `wp_rg_form_view` VALUES("30360", "10", "2016-05-05 18:03:19", "77.75.79.95", "92");
INSERT INTO `wp_rg_form_view` VALUES("30361", "1", "2016-05-05 18:24:55", "24.244.23.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("30362", "3", "2016-05-05 19:19:31", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("30363", "10", "2016-05-05 19:19:31", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("30364", "3", "2016-05-05 20:04:46", "66.249.79.169", "21");
INSERT INTO `wp_rg_form_view` VALUES("30365", "10", "2016-05-05 20:04:46", "66.249.79.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("30366", "3", "2016-05-05 21:05:21", "24.69.21.125", "55");
INSERT INTO `wp_rg_form_view` VALUES("30367", "10", "2016-05-05 21:05:21", "24.69.21.125", "55");
INSERT INTO `wp_rg_form_view` VALUES("30368", "3", "2016-05-05 22:06:08", "142.31.111.226", "68");
INSERT INTO `wp_rg_form_view` VALUES("30369", "10", "2016-05-05 22:06:09", "142.31.111.226", "65");
INSERT INTO `wp_rg_form_view` VALUES("30370", "12", "2016-05-05 23:01:24", "184.66.32.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("30371", "3", "2016-05-05 23:01:24", "184.66.32.165", "40");
INSERT INTO `wp_rg_form_view` VALUES("30372", "10", "2016-05-05 23:01:24", "184.66.32.165", "40");
INSERT INTO `wp_rg_form_view` VALUES("30373", "11", "2016-05-05 23:27:52", "220.181.108.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("30374", "3", "2016-05-06 00:03:50", "220.181.108.114", "101");
INSERT INTO `wp_rg_form_view` VALUES("30375", "10", "2016-05-06 00:03:50", "220.181.108.114", "100");
INSERT INTO `wp_rg_form_view` VALUES("30376", "1", "2016-05-06 00:40:25", "70.67.56.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("30377", "3", "2016-05-06 01:07:52", "70.67.56.101", "42");
INSERT INTO `wp_rg_form_view` VALUES("30378", "10", "2016-05-06 01:07:52", "70.67.56.101", "41");
INSERT INTO `wp_rg_form_view` VALUES("30379", "3", "2016-05-06 03:38:36", "192.187.114.11", "25");
INSERT INTO `wp_rg_form_view` VALUES("30380", "10", "2016-05-06 03:38:38", "192.187.114.11", "25");
INSERT INTO `wp_rg_form_view` VALUES("30381", "10", "2016-05-06 04:25:31", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("30382", "3", "2016-05-06 04:25:33", "68.180.229.244", "30");
INSERT INTO `wp_rg_form_view` VALUES("30383", "10", "2016-05-06 05:03:37", "40.77.167.72", "45");
INSERT INTO `wp_rg_form_view` VALUES("30384", "3", "2016-05-06 05:03:37", "40.77.167.72", "37");
INSERT INTO `wp_rg_form_view` VALUES("30385", "10", "2016-05-06 06:01:47", "91.247.145.59", "80");
INSERT INTO `wp_rg_form_view` VALUES("30386", "3", "2016-05-06 06:01:48", "91.247.145.59", "82");
INSERT INTO `wp_rg_form_view` VALUES("30387", "3", "2016-05-06 07:06:20", "68.180.229.244", "56");
INSERT INTO `wp_rg_form_view` VALUES("30388", "10", "2016-05-06 07:06:20", "68.180.229.244", "56");
INSERT INTO `wp_rg_form_view` VALUES("30389", "11", "2016-05-06 07:32:40", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30390", "10", "2016-05-06 09:18:57", "202.46.57.172", "25");
INSERT INTO `wp_rg_form_view` VALUES("30391", "3", "2016-05-06 09:19:01", "202.46.57.172", "21");
INSERT INTO `wp_rg_form_view` VALUES("30392", "10", "2016-05-06 10:15:22", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("30393", "3", "2016-05-06 10:15:22", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("30394", "2", "2016-05-06 10:40:30", "194.187.168.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("30395", "8", "2016-05-06 10:49:56", "164.132.161.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("30396", "10", "2016-05-06 11:46:14", "77.75.79.54", "5");
INSERT INTO `wp_rg_form_view` VALUES("30397", "3", "2016-05-06 11:46:18", "77.75.79.54", "5");
INSERT INTO `wp_rg_form_view` VALUES("30398", "10", "2016-05-06 12:34:58", "37.115.184.150", "25");
INSERT INTO `wp_rg_form_view` VALUES("30399", "3", "2016-05-06 12:35:01", "37.115.184.150", "23");
INSERT INTO `wp_rg_form_view` VALUES("30400", "3", "2016-05-06 12:35:01", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30401", "3", "2016-05-06 12:35:01", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30402", "10", "2016-05-06 13:03:51", "51.255.65.12", "213");
INSERT INTO `wp_rg_form_view` VALUES("30403", "3", "2016-05-06 13:03:51", "51.255.65.12", "214");
INSERT INTO `wp_rg_form_view` VALUES("30404", "11", "2016-05-06 13:05:42", "143.176.126.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("30405", "12", "2016-05-06 13:06:31", "143.176.126.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("30406", "2", "2016-05-06 13:07:30", "143.176.126.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("30407", "10", "2016-05-06 14:04:12", "142.4.216.172", "110");
INSERT INTO `wp_rg_form_view` VALUES("30408", "3", "2016-05-06 14:04:12", "142.4.216.172", "111");
INSERT INTO `wp_rg_form_view` VALUES("30409", "11", "2016-05-06 14:04:25", "142.4.216.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("30410", "2", "2016-05-06 14:04:27", "142.4.216.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("30411", "3", "2016-05-06 15:44:37", "207.46.13.174", "16");
INSERT INTO `wp_rg_form_view` VALUES("30412", "10", "2016-05-06 15:44:39", "207.46.13.174", "15");
INSERT INTO `wp_rg_form_view` VALUES("30413", "11", "2016-05-06 15:59:37", "77.75.77.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("30414", "10", "2016-05-06 16:02:09", "51.255.65.60", "55");
INSERT INTO `wp_rg_form_view` VALUES("30415", "3", "2016-05-06 16:02:09", "51.255.65.60", "53");
INSERT INTO `wp_rg_form_view` VALUES("30416", "1", "2016-05-06 16:34:22", "23.94.65.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("30417", "10", "2016-05-06 17:03:17", "77.75.77.36", "57");
INSERT INTO `wp_rg_form_view` VALUES("30418", "3", "2016-05-06 17:03:17", "77.75.77.36", "56");
INSERT INTO `wp_rg_form_view` VALUES("30419", "1", "2016-05-06 17:03:33", "172.245.129.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("30420", "10", "2016-05-06 18:04:57", "184.175.246.146", "27");
INSERT INTO `wp_rg_form_view` VALUES("30421", "3", "2016-05-06 18:04:58", "184.175.246.146", "21");
INSERT INTO `wp_rg_form_view` VALUES("30422", "3", "2016-05-06 19:01:17", "202.46.48.18", "46");
INSERT INTO `wp_rg_form_view` VALUES("30423", "10", "2016-05-06 19:01:22", "202.46.48.18", "45");
INSERT INTO `wp_rg_form_view` VALUES("30424", "3", "2016-05-06 20:20:53", "68.180.229.244", "36");
INSERT INTO `wp_rg_form_view` VALUES("30425", "10", "2016-05-06 20:44:28", "104.142.127.170", "35");
INSERT INTO `wp_rg_form_view` VALUES("30426", "10", "2016-05-06 21:15:16", "202.46.52.145", "20");
INSERT INTO `wp_rg_form_view` VALUES("30427", "3", "2016-05-06 21:15:22", "202.46.52.145", "22");
INSERT INTO `wp_rg_form_view` VALUES("30428", "10", "2016-05-06 22:31:23", "77.75.78.160", "40");
INSERT INTO `wp_rg_form_view` VALUES("30429", "3", "2016-05-06 22:31:24", "77.75.78.160", "46");
INSERT INTO `wp_rg_form_view` VALUES("30430", "9", "2016-05-06 22:45:37", "149.202.49.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("30431", "8", "2016-05-06 22:45:56", "149.202.49.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("30432", "10", "2016-05-06 23:02:34", "176.195.103.71", "25");
INSERT INTO `wp_rg_form_view` VALUES("30433", "3", "2016-05-06 23:02:34", "176.195.103.71", "26");
INSERT INTO `wp_rg_form_view` VALUES("30434", "11", "2016-05-06 23:06:59", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("30435", "10", "2016-05-07 00:01:13", "144.76.153.198", "21");
INSERT INTO `wp_rg_form_view` VALUES("30436", "3", "2016-05-07 00:01:13", "144.76.153.198", "20");
INSERT INTO `wp_rg_form_view` VALUES("30437", "3", "2016-05-07 01:03:20", "68.180.229.244", "183");
INSERT INTO `wp_rg_form_view` VALUES("30438", "10", "2016-05-07 01:03:21", "68.180.229.244", "181");
INSERT INTO `wp_rg_form_view` VALUES("30439", "11", "2016-05-07 01:54:58", "64.251.182.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30440", "12", "2016-05-07 01:55:20", "64.251.182.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30441", "2", "2016-05-07 01:55:49", "64.251.182.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("30442", "3", "2016-05-07 02:00:08", "202.46.50.84", "27");
INSERT INTO `wp_rg_form_view` VALUES("30443", "10", "2016-05-07 02:00:08", "202.46.50.84", "25");
INSERT INTO `wp_rg_form_view` VALUES("30444", "10", "2016-05-07 03:41:34", "94.23.40.23", "357");
INSERT INTO `wp_rg_form_view` VALUES("30445", "3", "2016-05-07 03:41:34", "94.23.40.23", "361");
INSERT INTO `wp_rg_form_view` VALUES("30446", "11", "2016-05-07 03:41:57", "94.23.40.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("30447", "2", "2016-05-07 03:42:02", "94.23.40.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("30448", "12", "2016-05-07 03:44:04", "94.23.40.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("30449", "1", "2016-05-07 03:44:46", "94.23.40.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("30450", "3", "2016-05-07 05:06:38", "66.249.79.169", "26");
INSERT INTO `wp_rg_form_view` VALUES("30451", "10", "2016-05-07 05:06:40", "66.249.79.169", "25");
INSERT INTO `wp_rg_form_view` VALUES("30452", "10", "2016-05-07 06:12:29", "202.46.52.173", "10");
INSERT INTO `wp_rg_form_view` VALUES("30453", "3", "2016-05-07 06:12:29", "202.46.52.173", "10");
INSERT INTO `wp_rg_form_view` VALUES("30454", "8", "2016-05-07 07:10:36", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("30455", "10", "2016-05-07 07:10:39", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("30456", "3", "2016-05-07 07:10:39", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("30457", "10", "2016-05-07 08:48:14", "202.46.54.166", "5");
INSERT INTO `wp_rg_form_view` VALUES("30458", "3", "2016-05-07 08:48:16", "202.46.54.166", "5");
INSERT INTO `wp_rg_form_view` VALUES("30459", "10", "2016-05-07 09:21:40", "202.46.55.143", "11");
INSERT INTO `wp_rg_form_view` VALUES("30460", "3", "2016-05-07 09:21:50", "202.46.55.143", "10");
INSERT INTO `wp_rg_form_view` VALUES("30461", "9", "2016-05-07 10:32:11", "207.46.13.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("30462", "10", "2016-05-07 10:32:13", "207.46.13.109", "10");
INSERT INTO `wp_rg_form_view` VALUES("30463", "3", "2016-05-07 10:32:14", "207.46.13.109", "10");
INSERT INTO `wp_rg_form_view` VALUES("30464", "10", "2016-05-07 13:09:17", "66.249.79.176", "182");
INSERT INTO `wp_rg_form_view` VALUES("30465", "3", "2016-05-07 13:09:19", "66.249.79.176", "181");
INSERT INTO `wp_rg_form_view` VALUES("30466", "11", "2016-05-07 13:50:31", "104.160.176.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("30467", "12", "2016-05-07 13:51:26", "104.160.176.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("30468", "2", "2016-05-07 13:52:25", "104.160.176.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("30469", "10", "2016-05-07 14:43:28", "77.75.79.72", "15");
INSERT INTO `wp_rg_form_view` VALUES("30470", "3", "2016-05-07 14:43:30", "77.75.79.72", "11");
INSERT INTO `wp_rg_form_view` VALUES("30471", "10", "2016-05-07 15:06:34", "66.249.79.169", "27");
INSERT INTO `wp_rg_form_view` VALUES("30472", "3", "2016-05-07 15:06:34", "66.249.79.169", "25");
INSERT INTO `wp_rg_form_view` VALUES("30473", "10", "2016-05-07 16:00:00", "51.255.65.49", "40");
INSERT INTO `wp_rg_form_view` VALUES("30474", "3", "2016-05-07 16:00:00", "51.255.65.49", "42");
INSERT INTO `wp_rg_form_view` VALUES("30475", "3", "2016-05-07 17:10:14", "68.180.229.244", "117");
INSERT INTO `wp_rg_form_view` VALUES("30476", "10", "2016-05-07 17:10:15", "68.180.229.244", "120");
INSERT INTO `wp_rg_form_view` VALUES("30477", "11", "2016-05-07 17:34:56", "85.25.211.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("30478", "2", "2016-05-07 17:35:00", "85.25.211.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("30479", "10", "2016-05-07 18:23:41", "164.132.161.87", "10");
INSERT INTO `wp_rg_form_view` VALUES("30480", "3", "2016-05-07 18:23:43", "164.132.161.87", "11");
INSERT INTO `wp_rg_form_view` VALUES("30481", "10", "2016-05-07 19:13:24", "66.249.79.162", "60");
INSERT INTO `wp_rg_form_view` VALUES("30482", "3", "2016-05-07 19:13:24", "66.249.79.162", "60");
INSERT INTO `wp_rg_form_view` VALUES("30483", "10", "2016-05-07 20:04:07", "207.46.13.174", "15");
INSERT INTO `wp_rg_form_view` VALUES("30484", "3", "2016-05-07 20:04:07", "207.46.13.174", "15");
INSERT INTO `wp_rg_form_view` VALUES("30485", "9", "2016-05-07 21:13:08", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30486", "10", "2016-05-07 21:28:33", "66.249.79.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("30487", "3", "2016-05-07 21:28:34", "66.249.79.176", "16");
INSERT INTO `wp_rg_form_view` VALUES("30488", "10", "2016-05-07 22:36:36", "199.21.99.202", "27");
INSERT INTO `wp_rg_form_view` VALUES("30489", "3", "2016-05-07 22:36:39", "199.21.99.202", "27");
INSERT INTO `wp_rg_form_view` VALUES("30490", "10", "2016-05-07 23:01:27", "199.21.99.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("30491", "3", "2016-05-07 23:01:27", "199.21.99.202", "32");
INSERT INTO `wp_rg_form_view` VALUES("30492", "3", "2016-05-08 00:10:12", "220.181.108.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("30493", "10", "2016-05-08 00:10:13", "220.181.108.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("30494", "3", "2016-05-08 01:04:05", "66.249.79.162", "68");
INSERT INTO `wp_rg_form_view` VALUES("30495", "10", "2016-05-08 01:04:07", "66.249.79.162", "44");
INSERT INTO `wp_rg_form_view` VALUES("30496", "3", "2016-05-08 02:34:45", "51.255.65.21", "12");
INSERT INTO `wp_rg_form_view` VALUES("30497", "10", "2016-05-08 02:34:46", "51.255.65.21", "8");
INSERT INTO `wp_rg_form_view` VALUES("30498", "3", "2016-05-08 03:04:59", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("30499", "10", "2016-05-08 03:04:59", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("30500", "3", "2016-05-08 04:05:28", "202.46.57.121", "37");
INSERT INTO `wp_rg_form_view` VALUES("30501", "10", "2016-05-08 04:05:30", "202.46.57.121", "26");
INSERT INTO `wp_rg_form_view` VALUES("30502", "3", "2016-05-08 05:10:10", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("30503", "10", "2016-05-08 05:41:20", "77.75.79.36", "12");
INSERT INTO `wp_rg_form_view` VALUES("30504", "1", "2016-05-08 05:58:51", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30505", "3", "2016-05-08 06:46:35", "66.249.79.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("30506", "10", "2016-05-08 06:46:36", "66.249.79.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("30507", "3", "2016-05-08 07:02:25", "77.75.79.119", "19");
INSERT INTO `wp_rg_form_view` VALUES("30508", "10", "2016-05-08 07:02:25", "77.75.79.119", "12");
INSERT INTO `wp_rg_form_view` VALUES("30509", "3", "2016-05-08 08:03:25", "77.75.79.54", "21");
INSERT INTO `wp_rg_form_view` VALUES("30510", "10", "2016-05-08 08:03:27", "77.75.79.54", "12");
INSERT INTO `wp_rg_form_view` VALUES("30511", "9", "2016-05-08 08:57:38", "89.163.148.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("30512", "3", "2016-05-08 09:06:13", "202.46.52.11", "48");
INSERT INTO `wp_rg_form_view` VALUES("30513", "10", "2016-05-08 09:06:14", "202.46.52.11", "33");
INSERT INTO `wp_rg_form_view` VALUES("30514", "3", "2016-05-08 10:09:15", "207.46.13.174", "375");
INSERT INTO `wp_rg_form_view` VALUES("30515", "10", "2016-05-08 10:09:18", "207.46.13.174", "250");
INSERT INTO `wp_rg_form_view` VALUES("30516", "5", "2016-05-08 10:57:50", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("30517", "9", "2016-05-08 10:58:44", "207.46.13.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("30518", "3", "2016-05-08 11:00:00", "207.46.13.174", "425");
INSERT INTO `wp_rg_form_view` VALUES("30519", "10", "2016-05-08 11:00:00", "207.46.13.174", "279");
INSERT INTO `wp_rg_form_view` VALUES("30520", "7", "2016-05-08 11:00:15", "207.46.13.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("30521", "9", "2016-05-08 11:03:15", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("30522", "2", "2016-05-08 11:04:15", "157.55.39.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("30523", "1", "2016-05-08 11:04:21", "157.55.39.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("30524", "3", "2016-05-08 12:16:18", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("30525", "10", "2016-05-08 12:16:19", "68.180.229.244", "4");
INSERT INTO `wp_rg_form_view` VALUES("30526", "3", "2016-05-08 13:01:37", "46.118.116.239", "25");
INSERT INTO `wp_rg_form_view` VALUES("30527", "10", "2016-05-08 13:01:38", "46.118.116.239", "17");
INSERT INTO `wp_rg_form_view` VALUES("30528", "3", "2016-05-08 14:13:28", "40.77.167.35", "25");
INSERT INTO `wp_rg_form_view` VALUES("30529", "10", "2016-05-08 14:13:28", "40.77.167.35", "16");
INSERT INTO `wp_rg_form_view` VALUES("30530", "8", "2016-05-08 14:57:33", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30531", "11", "2016-05-08 15:08:18", "157.55.39.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("30532", "3", "2016-05-08 15:08:18", "157.55.39.63", "12");
INSERT INTO `wp_rg_form_view` VALUES("30533", "10", "2016-05-08 15:08:18", "157.55.39.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("30534", "3", "2016-05-08 16:25:50", "184.151.231.45", "30");
INSERT INTO `wp_rg_form_view` VALUES("30535", "10", "2016-05-08 16:25:54", "184.151.231.45", "19");
INSERT INTO `wp_rg_form_view` VALUES("30536", "10", "2016-05-08 16:25:54", "184.151.231.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("30537", "12", "2016-05-08 16:30:20", "220.181.108.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("30538", "3", "2016-05-08 17:03:56", "66.249.79.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("30539", "10", "2016-05-08 17:03:56", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("30540", "3", "2016-05-08 18:18:58", "207.46.13.48", "12");
INSERT INTO `wp_rg_form_view` VALUES("30541", "10", "2016-05-08 18:18:59", "207.46.13.48", "8");
INSERT INTO `wp_rg_form_view` VALUES("30542", "3", "2016-05-08 19:11:02", "207.46.13.174", "49");
INSERT INTO `wp_rg_form_view` VALUES("30543", "10", "2016-05-08 19:11:04", "207.46.13.174", "33");
INSERT INTO `wp_rg_form_view` VALUES("30544", "3", "2016-05-08 20:28:32", "93.120.132.77", "43");
INSERT INTO `wp_rg_form_view` VALUES("30545", "10", "2016-05-08 20:28:33", "93.120.132.77", "29");
INSERT INTO `wp_rg_form_view` VALUES("30546", "1", "2016-05-08 20:43:51", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("30547", "3", "2016-05-08 21:22:38", "162.243.227.220", "1568");
INSERT INTO `wp_rg_form_view` VALUES("30548", "10", "2016-05-08 21:22:41", "162.243.227.220", "1041");
INSERT INTO `wp_rg_form_view` VALUES("30549", "1", "2016-05-08 21:27:56", "162.243.227.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30550", "11", "2016-05-08 21:28:16", "162.243.227.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30551", "5", "2016-05-08 21:35:11", "162.243.227.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30552", "12", "2016-05-08 21:39:36", "162.243.227.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30553", "6", "2016-05-08 21:44:11", "162.243.227.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30554", "9", "2016-05-08 21:51:37", "162.243.227.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30555", "3", "2016-05-08 22:00:11", "162.243.227.220", "1921");
INSERT INTO `wp_rg_form_view` VALUES("30556", "10", "2016-05-08 22:00:11", "162.243.227.220", "1273");
INSERT INTO `wp_rg_form_view` VALUES("30557", "2", "2016-05-08 22:31:46", "162.243.227.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30558", "8", "2016-05-08 22:45:44", "162.243.227.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("30559", "3", "2016-05-08 23:24:52", "24.68.139.139", "66");
INSERT INTO `wp_rg_form_view` VALUES("30560", "10", "2016-05-08 23:25:05", "24.68.139.139", "44");
INSERT INTO `wp_rg_form_view` VALUES("30561", "3", "2016-05-09 00:01:06", "66.249.79.169", "44");
INSERT INTO `wp_rg_form_view` VALUES("30562", "10", "2016-05-09 00:01:06", "66.249.79.169", "28");
INSERT INTO `wp_rg_form_view` VALUES("30563", "3", "2016-05-09 01:01:21", "40.77.167.35", "25");
INSERT INTO `wp_rg_form_view` VALUES("30564", "10", "2016-05-09 01:01:25", "40.77.167.35", "16");
INSERT INTO `wp_rg_form_view` VALUES("30565", "3", "2016-05-09 02:01:49", "66.249.79.169", "79");
INSERT INTO `wp_rg_form_view` VALUES("30566", "10", "2016-05-09 02:01:49", "66.249.79.169", "53");
INSERT INTO `wp_rg_form_view` VALUES("30567", "3", "2016-05-09 03:05:43", "68.180.229.244", "43");
INSERT INTO `wp_rg_form_view` VALUES("30568", "10", "2016-05-09 03:05:43", "68.180.229.244", "28");
INSERT INTO `wp_rg_form_view` VALUES("30569", "3", "2016-05-09 04:27:58", "220.181.108.121", "32");
INSERT INTO `wp_rg_form_view` VALUES("30570", "10", "2016-05-09 04:28:03", "220.181.108.121", "20");
INSERT INTO `wp_rg_form_view` VALUES("30571", "3", "2016-05-09 05:02:57", "164.132.161.70", "49");
INSERT INTO `wp_rg_form_view` VALUES("30572", "10", "2016-05-09 05:03:06", "164.132.161.70", "32");
INSERT INTO `wp_rg_form_view` VALUES("30573", "3", "2016-05-09 06:01:18", "220.181.108.141", "30");
INSERT INTO `wp_rg_form_view` VALUES("30574", "10", "2016-05-09 06:01:18", "220.181.108.141", "20");
INSERT INTO `wp_rg_form_view` VALUES("30575", "3", "2016-05-09 07:10:49", "40.77.167.35", "50");
INSERT INTO `wp_rg_form_view` VALUES("30576", "10", "2016-05-09 07:10:49", "40.77.167.35", "32");
INSERT INTO `wp_rg_form_view` VALUES("30577", "3", "2016-05-09 08:13:17", "40.77.167.35", "42");
INSERT INTO `wp_rg_form_view` VALUES("30578", "10", "2016-05-09 08:13:22", "40.77.167.35", "29");
INSERT INTO `wp_rg_form_view` VALUES("30579", "3", "2016-05-09 09:09:06", "66.249.79.176", "50");
INSERT INTO `wp_rg_form_view` VALUES("30580", "10", "2016-05-09 09:09:06", "66.249.79.176", "33");
INSERT INTO `wp_rg_form_view` VALUES("30581", "12", "2016-05-09 09:17:07", "207.46.13.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("30582", "2", "2016-05-09 10:00:54", "157.55.39.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("30583", "3", "2016-05-09 10:00:54", "157.55.39.142", "103");
INSERT INTO `wp_rg_form_view` VALUES("30584", "10", "2016-05-09 10:00:54", "157.55.39.142", "68");
INSERT INTO `wp_rg_form_view` VALUES("30585", "8", "2016-05-09 10:40:14", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30586", "3", "2016-05-09 11:10:56", "202.46.54.102", "6");
INSERT INTO `wp_rg_form_view` VALUES("30587", "10", "2016-05-09 11:10:57", "202.46.54.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("30588", "3", "2016-05-09 12:06:20", "207.46.13.48", "50");
INSERT INTO `wp_rg_form_view` VALUES("30589", "10", "2016-05-09 12:06:22", "207.46.13.48", "33");
INSERT INTO `wp_rg_form_view` VALUES("30590", "3", "2016-05-09 13:40:24", "66.249.79.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("30591", "10", "2016-05-09 13:40:26", "66.249.79.176", "24");
INSERT INTO `wp_rg_form_view` VALUES("30592", "1", "2016-05-09 13:55:20", "157.55.39.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("30593", "3", "2016-05-09 14:00:20", "199.21.99.202", "42");
INSERT INTO `wp_rg_form_view` VALUES("30594", "10", "2016-05-09 14:00:20", "199.21.99.202", "29");
INSERT INTO `wp_rg_form_view` VALUES("30595", "12", "2016-05-09 14:11:40", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("30596", "3", "2016-05-09 15:06:42", "151.80.31.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("30597", "10", "2016-05-09 15:06:42", "151.80.31.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("30598", "3", "2016-05-09 16:02:03", "68.180.229.244", "50");
INSERT INTO `wp_rg_form_view` VALUES("30599", "10", "2016-05-09 16:02:03", "68.180.229.244", "32");
INSERT INTO `wp_rg_form_view` VALUES("30600", "3", "2016-05-09 17:24:55", "202.46.48.205", "123");
INSERT INTO `wp_rg_form_view` VALUES("30601", "10", "2016-05-09 17:24:57", "202.46.48.205", "76");
INSERT INTO `wp_rg_form_view` VALUES("30602", "12", "2016-05-09 17:53:58", "207.46.13.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("30603", "2", "2016-05-09 17:54:07", "157.55.39.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("30604", "3", "2016-05-09 18:07:21", "172.245.251.157", "38");
INSERT INTO `wp_rg_form_view` VALUES("30605", "10", "2016-05-09 18:07:21", "172.245.251.157", "24");
INSERT INTO `wp_rg_form_view` VALUES("30606", "3", "2016-05-09 19:04:50", "207.46.13.48", "57");
INSERT INTO `wp_rg_form_view` VALUES("30607", "10", "2016-05-09 19:04:52", "207.46.13.48", "36");
INSERT INTO `wp_rg_form_view` VALUES("30608", "1", "2016-05-09 19:27:31", "75.155.180.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("30609", "3", "2016-05-09 20:22:54", "202.46.48.18", "238");
INSERT INTO `wp_rg_form_view` VALUES("30610", "10", "2016-05-09 20:22:55", "202.46.48.18", "157");
INSERT INTO `wp_rg_form_view` VALUES("30611", "11", "2016-05-09 20:38:02", "92.85.160.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("30612", "12", "2016-05-09 20:38:34", "92.85.160.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("30613", "2", "2016-05-09 20:39:22", "92.85.160.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("30614", "3", "2016-05-09 21:04:17", "184.69.12.50", "32");
INSERT INTO `wp_rg_form_view` VALUES("30615", "10", "2016-05-09 21:04:17", "184.69.12.50", "24");
INSERT INTO `wp_rg_form_view` VALUES("30616", "3", "2016-05-09 22:11:36", "184.66.242.187", "86");
INSERT INTO `wp_rg_form_view` VALUES("30617", "10", "2016-05-09 22:11:37", "184.66.242.187", "56");
INSERT INTO `wp_rg_form_view` VALUES("30618", "1", "2016-05-09 22:29:53", "24.68.112.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("30619", "11", "2016-05-09 23:03:03", "24.69.140.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("30620", "3", "2016-05-09 23:03:03", "24.69.140.109", "12");
INSERT INTO `wp_rg_form_view` VALUES("30621", "10", "2016-05-09 23:03:03", "24.69.140.109", "8");
INSERT INTO `wp_rg_form_view` VALUES("30622", "3", "2016-05-10 00:05:10", "130.185.155.82", "25");
INSERT INTO `wp_rg_form_view` VALUES("30623", "10", "2016-05-10 00:05:11", "130.185.155.82", "16");
INSERT INTO `wp_rg_form_view` VALUES("30624", "3", "2016-05-10 01:10:48", "24.68.44.71", "212");
INSERT INTO `wp_rg_form_view` VALUES("30625", "10", "2016-05-10 01:10:48", "24.68.44.71", "141");
INSERT INTO `wp_rg_form_view` VALUES("30626", "11", "2016-05-10 01:50:25", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("30627", "12", "2016-05-10 01:51:04", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("30628", "2", "2016-05-10 01:51:56", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("30629", "3", "2016-05-10 02:26:09", "151.80.31.166", "207");
INSERT INTO `wp_rg_form_view` VALUES("30630", "10", "2016-05-10 02:26:11", "151.80.31.166", "137");
INSERT INTO `wp_rg_form_view` VALUES("30631", "11", "2016-05-10 02:31:23", "145.132.1.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("30632", "12", "2016-05-10 02:32:14", "145.132.1.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("30633", "2", "2016-05-10 02:33:43", "145.132.1.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("30634", "3", "2016-05-10 03:00:11", "199.21.99.202", "48");
INSERT INTO `wp_rg_form_view` VALUES("30635", "10", "2016-05-10 03:00:12", "199.21.99.202", "32");
INSERT INTO `wp_rg_form_view` VALUES("30636", "3", "2016-05-10 04:38:31", "164.132.161.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("30637", "10", "2016-05-10 04:38:32", "164.132.161.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("30638", "3", "2016-05-10 05:05:59", "24.108.177.135", "13");
INSERT INTO `wp_rg_form_view` VALUES("30639", "10", "2016-05-10 05:05:59", "24.108.177.135", "8");
INSERT INTO `wp_rg_form_view` VALUES("30640", "3", "2016-05-10 06:13:55", "66.249.79.169", "19");
INSERT INTO `wp_rg_form_view` VALUES("30641", "10", "2016-05-10 06:13:56", "66.249.79.169", "16");
INSERT INTO `wp_rg_form_view` VALUES("30642", "3", "2016-05-10 07:13:23", "199.21.99.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("30643", "10", "2016-05-10 07:13:24", "199.21.99.202", "20");
INSERT INTO `wp_rg_form_view` VALUES("30644", "3", "2016-05-10 08:00:21", "51.255.65.97", "30");
INSERT INTO `wp_rg_form_view` VALUES("30645", "10", "2016-05-10 08:00:22", "51.255.65.97", "22");
INSERT INTO `wp_rg_form_view` VALUES("30646", "9", "2016-05-10 08:21:31", "151.80.31.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("30647", "3", "2016-05-10 09:23:26", "51.255.65.91", "38");
INSERT INTO `wp_rg_form_view` VALUES("30648", "10", "2016-05-10 09:23:29", "51.255.65.91", "24");
INSERT INTO `wp_rg_form_view` VALUES("30649", "3", "2016-05-10 10:07:45", "68.180.229.244", "31");
INSERT INTO `wp_rg_form_view` VALUES("30650", "10", "2016-05-10 10:07:45", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("30651", "11", "2016-05-10 10:07:57", "164.132.161.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("30652", "3", "2016-05-10 11:18:55", "207.46.13.159", "407");
INSERT INTO `wp_rg_form_view` VALUES("30653", "10", "2016-05-10 11:18:57", "207.46.13.159", "273");
INSERT INTO `wp_rg_form_view` VALUES("30654", "2", "2016-05-10 11:19:39", "207.46.13.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("30655", "1", "2016-05-10 11:19:43", "207.46.13.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("30656", "9", "2016-05-10 11:19:48", "207.46.13.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("30657", "7", "2016-05-10 11:20:36", "207.46.13.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("30658", "3", "2016-05-10 12:04:08", "77.75.79.72", "18");
INSERT INTO `wp_rg_form_view` VALUES("30659", "10", "2016-05-10 12:04:09", "77.75.79.72", "12");
INSERT INTO `wp_rg_form_view` VALUES("30660", "3", "2016-05-10 13:16:46", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("30661", "10", "2016-05-10 13:16:50", "66.249.79.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("30662", "3", "2016-05-10 14:03:12", "77.75.78.166", "259");
INSERT INTO `wp_rg_form_view` VALUES("30663", "10", "2016-05-10 14:03:14", "77.75.78.166", "173");
INSERT INTO `wp_rg_form_view` VALUES("30664", "11", "2016-05-10 14:24:19", "173.243.112.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("30665", "12", "2016-05-10 14:24:44", "173.243.112.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("30666", "2", "2016-05-10 14:25:25", "173.243.112.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("30667", "3", "2016-05-10 15:02:48", "68.180.229.244", "36");
INSERT INTO `wp_rg_form_view` VALUES("30668", "10", "2016-05-10 15:02:50", "68.180.229.244", "24");
INSERT INTO `wp_rg_form_view` VALUES("30669", "3", "2016-05-10 16:07:17", "24.68.226.152", "39");
INSERT INTO `wp_rg_form_view` VALUES("30670", "10", "2016-05-10 16:07:19", "24.68.226.152", "24");
INSERT INTO `wp_rg_form_view` VALUES("30671", "3", "2016-05-10 17:01:59", "66.249.79.176", "24");
INSERT INTO `wp_rg_form_view` VALUES("30672", "10", "2016-05-10 17:02:01", "66.249.79.176", "16");
INSERT INTO `wp_rg_form_view` VALUES("30673", "3", "2016-05-10 18:09:25", "40.77.167.35", "52");
INSERT INTO `wp_rg_form_view` VALUES("30674", "10", "2016-05-10 18:09:26", "40.77.167.35", "32");
INSERT INTO `wp_rg_form_view` VALUES("30675", "3", "2016-05-10 19:00:20", "198.245.60.28", "30");
INSERT INTO `wp_rg_form_view` VALUES("30676", "10", "2016-05-10 19:00:27", "198.245.60.28", "20");
INSERT INTO `wp_rg_form_view` VALUES("30677", "3", "2016-05-10 20:00:01", "157.55.39.135", "98");
INSERT INTO `wp_rg_form_view` VALUES("30678", "10", "2016-05-10 20:00:06", "157.55.39.135", "69");
INSERT INTO `wp_rg_form_view` VALUES("30679", "3", "2016-05-10 21:16:04", "216.232.157.245", "26");
INSERT INTO `wp_rg_form_view` VALUES("30680", "10", "2016-05-10 21:16:05", "216.232.157.245", "16");
INSERT INTO `wp_rg_form_view` VALUES("30681", "3", "2016-05-10 22:22:17", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("30682", "10", "2016-05-10 22:22:19", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("30683", "3", "2016-05-10 23:03:49", "202.46.58.124", "12");
INSERT INTO `wp_rg_form_view` VALUES("30684", "10", "2016-05-10 23:03:52", "202.46.58.124", "8");
INSERT INTO `wp_rg_form_view` VALUES("30685", "3", "2016-05-11 00:05:51", "207.46.13.102", "37");
INSERT INTO `wp_rg_form_view` VALUES("30686", "10", "2016-05-11 00:05:54", "207.46.13.102", "24");
INSERT INTO `wp_rg_form_view` VALUES("30687", "3", "2016-05-11 01:02:44", "151.80.31.108", "12");
INSERT INTO `wp_rg_form_view` VALUES("30688", "10", "2016-05-11 01:02:44", "151.80.31.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("30689", "3", "2016-05-11 02:50:22", "40.77.167.35", "7");
INSERT INTO `wp_rg_form_view` VALUES("30690", "10", "2016-05-11 02:50:24", "40.77.167.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("30691", "10", "2016-05-11 03:06:11", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("30692", "3", "2016-05-11 03:06:11", "68.180.229.244", "32");
INSERT INTO `wp_rg_form_view` VALUES("30693", "3", "2016-05-11 04:09:00", "184.69.138.2", "40");
INSERT INTO `wp_rg_form_view` VALUES("30694", "10", "2016-05-11 04:09:00", "184.69.138.2", "24");
INSERT INTO `wp_rg_form_view` VALUES("30695", "3", "2016-05-11 05:14:57", "198.245.60.28", "18");
INSERT INTO `wp_rg_form_view` VALUES("30696", "10", "2016-05-11 05:14:57", "198.245.60.28", "12");
INSERT INTO `wp_rg_form_view` VALUES("30697", "3", "2016-05-11 06:23:30", "23.92.60.154", "19");
INSERT INTO `wp_rg_form_view` VALUES("30698", "10", "2016-05-11 06:23:31", "23.92.60.154", "13");
INSERT INTO `wp_rg_form_view` VALUES("30699", "3", "2016-05-11 07:08:37", "164.132.161.71", "13");
INSERT INTO `wp_rg_form_view` VALUES("30700", "10", "2016-05-11 07:08:37", "164.132.161.71", "8");
INSERT INTO `wp_rg_form_view` VALUES("30701", "3", "2016-05-11 09:40:30", "51.255.65.55", "19");
INSERT INTO `wp_rg_form_view` VALUES("30702", "10", "2016-05-11 09:40:31", "51.255.65.55", "12");
INSERT INTO `wp_rg_form_view` VALUES("30703", "3", "2016-05-11 10:29:38", "202.46.51.19", "30");
INSERT INTO `wp_rg_form_view` VALUES("30704", "10", "2016-05-11 10:29:38", "202.46.51.19", "20");
INSERT INTO `wp_rg_form_view` VALUES("30705", "3", "2016-05-11 11:01:19", "207.46.13.156", "12");
INSERT INTO `wp_rg_form_view` VALUES("30706", "10", "2016-05-11 11:01:19", "207.46.13.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("30707", "7", "2016-05-11 12:30:19", "207.46.13.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("30708", "3", "2016-05-11 12:30:35", "207.46.13.102", "12");
INSERT INTO `wp_rg_form_view` VALUES("30709", "10", "2016-05-11 12:30:35", "207.46.13.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("30710", "3", "2016-05-11 13:03:46", "68.180.229.244", "18");
INSERT INTO `wp_rg_form_view` VALUES("30711", "10", "2016-05-11 13:03:46", "68.180.229.244", "12");
INSERT INTO `wp_rg_form_view` VALUES("30712", "3", "2016-05-11 14:03:02", "68.180.229.244", "31");
INSERT INTO `wp_rg_form_view` VALUES("30713", "10", "2016-05-11 14:03:02", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("30714", "11", "2016-05-11 14:36:31", "157.55.39.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("30715", "3", "2016-05-11 15:00:09", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("30716", "10", "2016-05-11 15:00:09", "66.249.79.176", "16");
INSERT INTO `wp_rg_form_view` VALUES("30717", "3", "2016-05-11 16:04:27", "157.55.39.243", "377");
INSERT INTO `wp_rg_form_view` VALUES("30718", "10", "2016-05-11 16:04:27", "157.55.39.243", "249");
INSERT INTO `wp_rg_form_view` VALUES("30719", "11", "2016-05-11 16:07:18", "84.123.69.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("30720", "12", "2016-05-11 16:08:40", "84.123.69.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("30721", "2", "2016-05-11 16:09:54", "84.123.69.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("30722", "1", "2016-05-11 16:47:46", "24.68.135.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("30723", "3", "2016-05-11 17:07:35", "173.183.47.92", "57");
INSERT INTO `wp_rg_form_view` VALUES("30724", "10", "2016-05-11 17:07:36", "173.183.47.92", "36");
INSERT INTO `wp_rg_form_view` VALUES("30725", "6", "2016-05-11 17:08:52", "202.46.49.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("30726", "1", "2016-05-11 17:49:41", "130.185.159.230", "3");
INSERT INTO `wp_rg_form_view` VALUES("30727", "3", "2016-05-11 18:01:15", "216.232.3.81", "27");
INSERT INTO `wp_rg_form_view` VALUES("30728", "10", "2016-05-11 18:01:15", "216.232.3.81", "16");
INSERT INTO `wp_rg_form_view` VALUES("30729", "3", "2016-05-11 19:06:18", "178.137.83.178", "86");
INSERT INTO `wp_rg_form_view` VALUES("30730", "3", "2016-05-11 19:06:18", "178.137.83.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("30731", "10", "2016-05-11 19:06:20", "178.137.83.178", "53");
INSERT INTO `wp_rg_form_view` VALUES("30732", "10", "2016-05-11 19:06:20", "178.137.83.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("30733", "10", "2016-05-11 19:06:20", "178.137.83.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("30734", "10", "2016-05-11 19:06:20", "178.137.83.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("30735", "3", "2016-05-11 20:04:33", "66.249.79.176", "122");
INSERT INTO `wp_rg_form_view` VALUES("30736", "10", "2016-05-11 20:04:33", "66.249.79.176", "80");
INSERT INTO `wp_rg_form_view` VALUES("30737", "1", "2016-05-11 20:50:25", "24.68.146.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("30738", "3", "2016-05-11 21:13:28", "157.55.39.224", "175");
INSERT INTO `wp_rg_form_view` VALUES("30739", "10", "2016-05-11 21:13:31", "157.55.39.224", "116");
INSERT INTO `wp_rg_form_view` VALUES("30740", "11", "2016-05-11 21:17:19", "142.4.216.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("30741", "2", "2016-05-11 21:17:22", "142.4.216.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("30742", "1", "2016-05-11 22:16:25", "62.210.122.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("30743", "3", "2016-05-11 22:16:25", "62.210.122.172", "485");
INSERT INTO `wp_rg_form_view` VALUES("30744", "10", "2016-05-11 22:16:26", "62.210.122.172", "322");
INSERT INTO `wp_rg_form_view` VALUES("30745", "9", "2016-05-11 22:27:33", "207.46.13.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("30746", "7", "2016-05-11 22:28:52", "157.55.39.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("30747", "12", "2016-05-11 23:24:35", "142.31.166.243", "2");
INSERT INTO `wp_rg_form_view` VALUES("30748", "3", "2016-05-11 23:24:35", "142.31.166.243", "18");
INSERT INTO `wp_rg_form_view` VALUES("30749", "10", "2016-05-11 23:24:36", "142.31.166.243", "12");
INSERT INTO `wp_rg_form_view` VALUES("30750", "3", "2016-05-12 00:03:09", "207.46.13.129", "192");
INSERT INTO `wp_rg_form_view` VALUES("30751", "10", "2016-05-12 00:03:10", "207.46.13.129", "127");
INSERT INTO `wp_rg_form_view` VALUES("30752", "2", "2016-05-12 00:03:46", "207.46.13.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("30753", "1", "2016-05-12 00:03:49", "207.46.13.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("30754", "11", "2016-05-12 00:08:23", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("30755", "3", "2016-05-12 01:02:26", "220.181.108.82", "18");
INSERT INTO `wp_rg_form_view` VALUES("30756", "10", "2016-05-12 01:02:26", "220.181.108.82", "12");
INSERT INTO `wp_rg_form_view` VALUES("30757", "3", "2016-05-12 02:07:57", "141.8.143.242", "176");
INSERT INTO `wp_rg_form_view` VALUES("30758", "10", "2016-05-12 02:07:58", "141.8.143.242", "117");
INSERT INTO `wp_rg_form_view` VALUES("30759", "5", "2016-05-12 02:21:51", "157.55.39.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("30760", "3", "2016-05-12 03:08:58", "66.249.79.176", "12");
INSERT INTO `wp_rg_form_view` VALUES("30761", "10", "2016-05-12 03:08:58", "66.249.79.176", "8");
INSERT INTO `wp_rg_form_view` VALUES("30762", "3", "2016-05-12 04:15:38", "154.20.43.165", "26");
INSERT INTO `wp_rg_form_view` VALUES("30763", "10", "2016-05-12 04:15:39", "154.20.43.165", "16");
INSERT INTO `wp_rg_form_view` VALUES("30764", "1", "2016-05-12 04:19:37", "62.210.122.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("30765", "3", "2016-05-12 05:33:29", "164.132.161.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("30766", "10", "2016-05-12 05:33:33", "164.132.161.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("30767", "3", "2016-05-12 06:17:10", "37.115.184.150", "23");
INSERT INTO `wp_rg_form_view` VALUES("30768", "3", "2016-05-12 06:17:10", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30769", "10", "2016-05-12 06:17:11", "37.115.184.150", "15");
INSERT INTO `wp_rg_form_view` VALUES("30770", "10", "2016-05-12 06:17:11", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30771", "3", "2016-05-12 07:04:21", "184.66.240.136", "19");
INSERT INTO `wp_rg_form_view` VALUES("30772", "10", "2016-05-12 07:04:21", "184.66.240.136", "12");
INSERT INTO `wp_rg_form_view` VALUES("30773", "3", "2016-05-12 08:19:52", "202.46.53.204", "26");
INSERT INTO `wp_rg_form_view` VALUES("30774", "10", "2016-05-12 08:19:53", "202.46.53.204", "16");
INSERT INTO `wp_rg_form_view` VALUES("30775", "3", "2016-05-12 09:05:12", "104.131.190.179", "152");
INSERT INTO `wp_rg_form_view` VALUES("30776", "10", "2016-05-12 09:05:12", "104.131.190.179", "101");
INSERT INTO `wp_rg_form_view` VALUES("30777", "11", "2016-05-12 09:05:13", "104.131.190.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("30778", "12", "2016-05-12 09:05:14", "104.131.190.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("30779", "2", "2016-05-12 09:05:14", "104.131.190.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("30780", "3", "2016-05-12 10:32:52", "68.180.229.244", "12");
INSERT INTO `wp_rg_form_view` VALUES("30781", "10", "2016-05-12 10:32:53", "68.180.229.244", "8");
INSERT INTO `wp_rg_form_view` VALUES("30782", "3", "2016-05-12 11:19:52", "202.46.48.143", "12");
INSERT INTO `wp_rg_form_view` VALUES("30783", "10", "2016-05-12 11:19:54", "202.46.48.143", "8");
INSERT INTO `wp_rg_form_view` VALUES("30784", "3", "2016-05-12 12:01:01", "68.180.229.244", "18");
INSERT INTO `wp_rg_form_view` VALUES("30785", "10", "2016-05-12 12:01:01", "68.180.229.244", "12");
INSERT INTO `wp_rg_form_view` VALUES("30786", "3", "2016-05-12 13:14:30", "220.181.108.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("30787", "10", "2016-05-12 13:14:32", "220.181.108.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("30788", "3", "2016-05-12 14:24:33", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("30789", "10", "2016-05-12 14:24:34", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("30790", "3", "2016-05-12 15:20:13", "70.66.30.172", "24");
INSERT INTO `wp_rg_form_view` VALUES("30791", "10", "2016-05-12 15:20:15", "70.66.30.172", "16");
INSERT INTO `wp_rg_form_view` VALUES("30792", "3", "2016-05-12 16:04:21", "78.10.204.239", "12");
INSERT INTO `wp_rg_form_view` VALUES("30793", "10", "2016-05-12 16:04:21", "78.10.204.239", "8");
INSERT INTO `wp_rg_form_view` VALUES("30794", "3", "2016-05-12 17:08:11", "142.104.44.23", "132");
INSERT INTO `wp_rg_form_view` VALUES("30795", "10", "2016-05-12 17:08:12", "142.104.44.23", "88");
INSERT INTO `wp_rg_form_view` VALUES("30796", "2", "2016-05-12 17:23:18", "66.249.79.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("30797", "1", "2016-05-12 17:27:22", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("30798", "12", "2016-05-12 17:38:15", "70.66.166.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("30799", "3", "2016-05-12 18:01:31", "24.86.166.160", "49");
INSERT INTO `wp_rg_form_view` VALUES("30800", "10", "2016-05-12 18:01:32", "24.86.166.160", "36");
INSERT INTO `wp_rg_form_view` VALUES("30801", "3", "2016-05-12 19:23:27", "207.194.133.9", "55");
INSERT INTO `wp_rg_form_view` VALUES("30802", "10", "2016-05-12 19:23:29", "207.194.133.9", "36");
INSERT INTO `wp_rg_form_view` VALUES("30803", "3", "2016-05-12 20:42:40", "24.69.154.153", "42");
INSERT INTO `wp_rg_form_view` VALUES("30804", "10", "2016-05-12 20:42:45", "24.69.154.153", "28");
INSERT INTO `wp_rg_form_view` VALUES("30805", "1", "2016-05-12 20:45:42", "24.69.154.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("30806", "1", "2016-05-12 21:02:25", "177.74.117.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("30807", "3", "2016-05-12 21:02:25", "177.74.117.142", "24");
INSERT INTO `wp_rg_form_view` VALUES("30808", "10", "2016-05-12 21:02:25", "177.74.117.142", "16");
INSERT INTO `wp_rg_form_view` VALUES("30809", "12", "2016-05-12 22:03:00", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30810", "3", "2016-05-12 22:03:06", "68.180.229.244", "44");
INSERT INTO `wp_rg_form_view` VALUES("30811", "10", "2016-05-12 22:03:06", "68.180.229.244", "28");
INSERT INTO `wp_rg_form_view` VALUES("30812", "10", "2016-05-12 23:40:21", "199.21.99.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("30813", "3", "2016-05-12 23:40:23", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("30814", "1", "2016-05-13 00:13:14", "202.46.54.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("30815", "3", "2016-05-13 00:13:15", "202.46.54.15", "12");
INSERT INTO `wp_rg_form_view` VALUES("30816", "10", "2016-05-13 00:13:15", "202.46.54.15", "8");
INSERT INTO `wp_rg_form_view` VALUES("30817", "3", "2016-05-13 01:27:25", "75.67.55.169", "50");
INSERT INTO `wp_rg_form_view` VALUES("30818", "10", "2016-05-13 01:27:27", "75.67.55.169", "32");
INSERT INTO `wp_rg_form_view` VALUES("30819", "3", "2016-05-13 02:50:08", "24.69.69.153", "13");
INSERT INTO `wp_rg_form_view` VALUES("30820", "10", "2016-05-13 02:50:10", "24.69.69.153", "8");
INSERT INTO `wp_rg_form_view` VALUES("30821", "10", "2016-05-13 03:05:29", "220.181.108.80", "29");
INSERT INTO `wp_rg_form_view` VALUES("30822", "3", "2016-05-13 03:05:29", "220.181.108.80", "42");
INSERT INTO `wp_rg_form_view` VALUES("30823", "3", "2016-05-13 04:05:53", "46.17.97.72", "19");
INSERT INTO `wp_rg_form_view` VALUES("30824", "10", "2016-05-13 04:05:53", "46.17.97.72", "12");
INSERT INTO `wp_rg_form_view` VALUES("30825", "10", "2016-05-13 05:23:24", "199.21.99.202", "20");
INSERT INTO `wp_rg_form_view` VALUES("30826", "3", "2016-05-13 05:23:27", "199.21.99.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("30827", "10", "2016-05-13 06:06:47", "207.46.13.153", "24");
INSERT INTO `wp_rg_form_view` VALUES("30828", "3", "2016-05-13 06:06:54", "207.46.13.153", "38");
INSERT INTO `wp_rg_form_view` VALUES("30829", "11", "2016-05-13 07:35:00", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("30830", "10", "2016-05-13 07:35:01", "68.180.229.244", "9");
INSERT INTO `wp_rg_form_view` VALUES("30831", "3", "2016-05-13 07:35:01", "68.180.229.244", "13");
INSERT INTO `wp_rg_form_view` VALUES("30832", "10", "2016-05-13 08:21:10", "207.46.13.81", "5");
INSERT INTO `wp_rg_form_view` VALUES("30833", "3", "2016-05-13 08:21:16", "207.46.13.81", "7");
INSERT INTO `wp_rg_form_view` VALUES("30834", "10", "2016-05-13 09:04:17", "207.46.13.81", "12");
INSERT INTO `wp_rg_form_view` VALUES("30835", "3", "2016-05-13 09:04:17", "207.46.13.81", "18");
INSERT INTO `wp_rg_form_view` VALUES("30836", "10", "2016-05-13 10:16:58", "164.132.161.5", "17");
INSERT INTO `wp_rg_form_view` VALUES("30837", "3", "2016-05-13 10:16:59", "164.132.161.5", "25");
INSERT INTO `wp_rg_form_view` VALUES("30838", "10", "2016-05-13 11:02:15", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("30839", "3", "2016-05-13 11:02:15", "66.249.79.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("30840", "10", "2016-05-13 12:05:19", "207.46.13.81", "207");
INSERT INTO `wp_rg_form_view` VALUES("30841", "3", "2016-05-13 12:05:19", "207.46.13.81", "311");
INSERT INTO `wp_rg_form_view` VALUES("30842", "11", "2016-05-13 12:24:10", "157.55.39.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("30843", "9", "2016-05-13 12:24:12", "157.55.39.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("30844", "6", "2016-05-13 12:24:43", "157.55.39.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("30845", "10", "2016-05-13 13:32:56", "176.9.149.182", "242");
INSERT INTO `wp_rg_form_view` VALUES("30846", "3", "2016-05-13 13:32:58", "176.9.149.182", "365");
INSERT INTO `wp_rg_form_view` VALUES("30847", "11", "2016-05-13 13:33:08", "176.9.149.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("30848", "2", "2016-05-13 13:33:11", "176.9.149.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("30849", "12", "2016-05-13 13:34:27", "176.9.149.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("30850", "1", "2016-05-13 13:35:00", "176.9.149.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("30851", "10", "2016-05-13 14:11:19", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("30852", "3", "2016-05-13 14:11:20", "199.21.99.202", "19");
INSERT INTO `wp_rg_form_view` VALUES("30853", "10", "2016-05-13 15:05:48", "164.132.161.43", "8");
INSERT INTO `wp_rg_form_view` VALUES("30854", "3", "2016-05-13 15:05:49", "164.132.161.43", "12");
INSERT INTO `wp_rg_form_view` VALUES("30855", "3", "2016-05-13 16:10:43", "98.158.84.197", "20");
INSERT INTO `wp_rg_form_view` VALUES("30856", "10", "2016-05-13 16:10:43", "98.158.84.197", "12");
INSERT INTO `wp_rg_form_view` VALUES("30857", "3", "2016-05-13 17:23:40", "66.220.158.121", "68");
INSERT INTO `wp_rg_form_view` VALUES("30858", "10", "2016-05-13 17:23:43", "66.220.158.121", "44");
INSERT INTO `wp_rg_form_view` VALUES("30859", "1", "2016-05-13 17:47:15", "70.66.166.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("30860", "10", "2016-05-13 18:02:18", "70.66.166.111", "52");
INSERT INTO `wp_rg_form_view` VALUES("30861", "3", "2016-05-13 18:02:18", "70.66.166.111", "80");
INSERT INTO `wp_rg_form_view` VALUES("30862", "1", "2016-05-13 18:46:33", "24.69.16.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("30863", "10", "2016-05-13 19:25:13", "24.69.16.173", "32");
INSERT INTO `wp_rg_form_view` VALUES("30864", "3", "2016-05-13 19:25:18", "24.69.16.173", "49");
INSERT INTO `wp_rg_form_view` VALUES("30865", "11", "2016-05-13 19:28:52", "157.55.39.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("30866", "10", "2016-05-13 20:03:58", "66.249.79.169", "25");
INSERT INTO `wp_rg_form_view` VALUES("30867", "3", "2016-05-13 20:03:58", "66.249.79.169", "31");
INSERT INTO `wp_rg_form_view` VALUES("30868", "10", "2016-05-13 21:08:37", "66.249.79.176", "8");
INSERT INTO `wp_rg_form_view` VALUES("30869", "3", "2016-05-13 21:08:38", "66.249.79.176", "12");
INSERT INTO `wp_rg_form_view` VALUES("30870", "10", "2016-05-13 22:03:03", "77.75.78.169", "36");
INSERT INTO `wp_rg_form_view` VALUES("30871", "3", "2016-05-13 22:03:03", "77.75.78.169", "54");
INSERT INTO `wp_rg_form_view` VALUES("30872", "3", "2016-05-13 23:20:15", "151.80.31.102", "44");
INSERT INTO `wp_rg_form_view` VALUES("30873", "10", "2016-05-13 23:20:15", "151.80.31.102", "28");
INSERT INTO `wp_rg_form_view` VALUES("30874", "10", "2016-05-14 00:06:28", "24.108.28.160", "16");
INSERT INTO `wp_rg_form_view` VALUES("30875", "3", "2016-05-14 00:06:28", "24.108.28.160", "24");
INSERT INTO `wp_rg_form_view` VALUES("30876", "1", "2016-05-14 00:32:55", "51.255.65.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("30877", "3", "2016-05-14 01:07:46", "68.180.229.244", "27");
INSERT INTO `wp_rg_form_view` VALUES("30878", "10", "2016-05-14 01:07:47", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("30879", "3", "2016-05-14 02:07:40", "66.249.79.176", "31");
INSERT INTO `wp_rg_form_view` VALUES("30880", "10", "2016-05-14 02:07:40", "66.249.79.176", "20");
INSERT INTO `wp_rg_form_view` VALUES("30881", "10", "2016-05-14 03:12:18", "199.59.148.209", "5");
INSERT INTO `wp_rg_form_view` VALUES("30882", "3", "2016-05-14 03:12:19", "199.59.148.209", "6");
INSERT INTO `wp_rg_form_view` VALUES("30883", "10", "2016-05-14 04:18:42", "157.55.39.196", "12");
INSERT INTO `wp_rg_form_view` VALUES("30884", "3", "2016-05-14 04:18:44", "157.55.39.196", "18");
INSERT INTO `wp_rg_form_view` VALUES("30885", "1", "2016-05-14 05:05:31", "5.255.77.90", "4");
INSERT INTO `wp_rg_form_view` VALUES("30886", "10", "2016-05-14 05:05:31", "5.255.77.90", "49");
INSERT INTO `wp_rg_form_view` VALUES("30887", "3", "2016-05-14 05:05:31", "5.255.77.90", "75");
INSERT INTO `wp_rg_form_view` VALUES("30888", "12", "2016-05-14 05:27:42", "164.132.161.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("30889", "10", "2016-05-14 06:00:07", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("30890", "3", "2016-05-14 06:00:07", "199.21.99.202", "24");
INSERT INTO `wp_rg_form_view` VALUES("30891", "1", "2016-05-14 06:53:25", "89.35.199.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("30892", "10", "2016-05-14 07:06:54", "51.255.65.20", "8");
INSERT INTO `wp_rg_form_view` VALUES("30893", "3", "2016-05-14 07:06:55", "51.255.65.20", "12");
INSERT INTO `wp_rg_form_view` VALUES("30894", "1", "2016-05-14 08:34:51", "82.211.50.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("30895", "10", "2016-05-14 08:34:51", "82.211.50.171", "8");
INSERT INTO `wp_rg_form_view` VALUES("30896", "3", "2016-05-14 08:34:55", "82.211.50.171", "12");
INSERT INTO `wp_rg_form_view` VALUES("30897", "8", "2016-05-14 08:52:04", "40.77.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("30898", "10", "2016-05-14 09:15:15", "66.249.79.169", "32");
INSERT INTO `wp_rg_form_view` VALUES("30899", "3", "2016-05-14 09:15:15", "66.249.79.169", "48");
INSERT INTO `wp_rg_form_view` VALUES("30900", "2", "2016-05-14 09:23:44", "202.46.58.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("30901", "1", "2016-05-14 10:20:02", "82.211.50.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("30902", "10", "2016-05-14 10:20:03", "82.211.50.225", "9");
INSERT INTO `wp_rg_form_view` VALUES("30903", "3", "2016-05-14 10:20:03", "82.211.50.225", "12");
INSERT INTO `wp_rg_form_view` VALUES("30904", "10", "2016-05-14 11:18:33", "157.55.39.196", "12");
INSERT INTO `wp_rg_form_view` VALUES("30905", "3", "2016-05-14 11:18:37", "157.55.39.196", "18");
INSERT INTO `wp_rg_form_view` VALUES("30906", "11", "2016-05-14 11:38:01", "202.46.51.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("30907", "10", "2016-05-14 12:05:16", "220.181.108.103", "8");
INSERT INTO `wp_rg_form_view` VALUES("30908", "3", "2016-05-14 12:05:16", "220.181.108.103", "12");
INSERT INTO `wp_rg_form_view` VALUES("30909", "10", "2016-05-14 13:29:39", "220.181.108.103", "8");
INSERT INTO `wp_rg_form_view` VALUES("30910", "3", "2016-05-14 13:29:43", "220.181.108.103", "12");
INSERT INTO `wp_rg_form_view` VALUES("30911", "10", "2016-05-14 14:15:09", "207.46.13.81", "16");
INSERT INTO `wp_rg_form_view` VALUES("30912", "3", "2016-05-14 14:15:10", "207.46.13.81", "24");
INSERT INTO `wp_rg_form_view` VALUES("30913", "10", "2016-05-14 15:01:56", "178.137.83.178", "20");
INSERT INTO `wp_rg_form_view` VALUES("30914", "3", "2016-05-14 15:01:57", "178.137.83.178", "31");
INSERT INTO `wp_rg_form_view` VALUES("30915", "10", "2016-05-14 16:12:41", "77.75.77.95", "32");
INSERT INTO `wp_rg_form_view` VALUES("30916", "3", "2016-05-14 16:12:42", "77.75.77.95", "48");
INSERT INTO `wp_rg_form_view` VALUES("30917", "10", "2016-05-14 17:54:47", "96.54.209.54", "8");
INSERT INTO `wp_rg_form_view` VALUES("30918", "3", "2016-05-14 17:54:52", "96.54.209.54", "12");
INSERT INTO `wp_rg_form_view` VALUES("30919", "10", "2016-05-14 18:07:34", "66.249.79.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("30920", "3", "2016-05-14 18:07:34", "66.249.79.162", "38");
INSERT INTO `wp_rg_form_view` VALUES("30921", "11", "2016-05-14 19:52:06", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("30922", "10", "2016-05-14 19:52:09", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("30923", "3", "2016-05-14 19:52:10", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("30924", "10", "2016-05-14 20:06:44", "178.137.83.178", "20");
INSERT INTO `wp_rg_form_view` VALUES("30925", "3", "2016-05-14 20:06:45", "178.137.83.178", "30");
INSERT INTO `wp_rg_form_view` VALUES("30926", "10", "2016-05-14 21:22:57", "199.21.99.202", "20");
INSERT INTO `wp_rg_form_view` VALUES("30927", "3", "2016-05-14 21:22:58", "199.21.99.202", "31");
INSERT INTO `wp_rg_form_view` VALUES("30928", "10", "2016-05-14 22:11:28", "77.75.78.160", "24");
INSERT INTO `wp_rg_form_view` VALUES("30929", "3", "2016-05-14 22:11:31", "77.75.78.160", "40");
INSERT INTO `wp_rg_form_view` VALUES("30930", "1", "2016-05-15 00:06:53", "207.91.10.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("30931", "3", "2016-05-15 00:06:54", "207.91.10.234", "21");
INSERT INTO `wp_rg_form_view` VALUES("30932", "10", "2016-05-15 00:06:55", "207.91.10.234", "9");
INSERT INTO `wp_rg_form_view` VALUES("30933", "3", "2016-05-15 01:09:01", "51.255.65.40", "52");
INSERT INTO `wp_rg_form_view` VALUES("30934", "10", "2016-05-15 01:09:01", "51.255.65.40", "21");
INSERT INTO `wp_rg_form_view` VALUES("30935", "2", "2016-05-15 01:56:39", "202.46.48.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("30936", "3", "2016-05-15 02:07:27", "66.249.79.169", "29");
INSERT INTO `wp_rg_form_view` VALUES("30937", "10", "2016-05-15 02:07:28", "66.249.79.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("30938", "3", "2016-05-15 03:01:59", "220.181.108.75", "29");
INSERT INTO `wp_rg_form_view` VALUES("30939", "10", "2016-05-15 03:02:00", "220.181.108.75", "12");
INSERT INTO `wp_rg_form_view` VALUES("30940", "10", "2016-05-15 04:25:41", "68.180.229.244", "20");
INSERT INTO `wp_rg_form_view` VALUES("30941", "3", "2016-05-15 04:25:41", "68.180.229.244", "44");
INSERT INTO `wp_rg_form_view` VALUES("30942", "3", "2016-05-15 05:00:52", "199.21.99.202", "28");
INSERT INTO `wp_rg_form_view` VALUES("30943", "10", "2016-05-15 05:00:52", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("30944", "3", "2016-05-15 06:02:39", "37.115.184.150", "69");
INSERT INTO `wp_rg_form_view` VALUES("30945", "3", "2016-05-15 06:02:39", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30946", "10", "2016-05-15 06:02:39", "37.115.184.150", "29");
INSERT INTO `wp_rg_form_view` VALUES("30947", "10", "2016-05-15 06:02:39", "37.115.184.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("30948", "3", "2016-05-15 07:18:13", "77.75.76.162", "64");
INSERT INTO `wp_rg_form_view` VALUES("30949", "10", "2016-05-15 07:18:15", "77.75.76.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("30950", "3", "2016-05-15 08:03:51", "66.249.79.176", "22");
INSERT INTO `wp_rg_form_view` VALUES("30951", "10", "2016-05-15 08:03:51", "66.249.79.176", "9");
INSERT INTO `wp_rg_form_view` VALUES("30952", "3", "2016-05-15 10:08:59", "66.249.79.176", "21");
INSERT INTO `wp_rg_form_view` VALUES("30953", "10", "2016-05-15 10:09:00", "66.249.79.176", "9");
INSERT INTO `wp_rg_form_view` VALUES("30954", "3", "2016-05-15 11:12:55", "66.249.79.162", "14");
INSERT INTO `wp_rg_form_view` VALUES("30955", "10", "2016-05-15 11:12:55", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("30956", "3", "2016-05-15 12:53:29", "220.181.108.108", "7");
INSERT INTO `wp_rg_form_view` VALUES("30957", "10", "2016-05-15 12:53:30", "220.181.108.108", "3");
INSERT INTO `wp_rg_form_view` VALUES("30958", "3", "2016-05-15 13:51:33", "77.75.77.54", "7");
INSERT INTO `wp_rg_form_view` VALUES("30959", "10", "2016-05-15 13:51:33", "77.75.77.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("30960", "3", "2016-05-15 14:02:48", "51.255.65.65", "30");
INSERT INTO `wp_rg_form_view` VALUES("30961", "10", "2016-05-15 14:02:48", "51.255.65.65", "12");
INSERT INTO `wp_rg_form_view` VALUES("30962", "3", "2016-05-15 15:05:32", "88.198.208.69", "125");
INSERT INTO `wp_rg_form_view` VALUES("30963", "10", "2016-05-15 15:05:34", "88.198.208.69", "51");
INSERT INTO `wp_rg_form_view` VALUES("30964", "2", "2016-05-15 15:56:08", "104.207.150.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("30965", "3", "2016-05-15 16:11:14", "66.249.79.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("30966", "10", "2016-05-15 16:11:14", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("30967", "1", "2016-05-15 16:55:17", "77.75.79.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("30968", "3", "2016-05-15 17:39:43", "207.46.13.160", "8");
INSERT INTO `wp_rg_form_view` VALUES("30969", "10", "2016-05-15 17:39:43", "207.46.13.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("30970", "3", "2016-05-15 18:15:18", "5.248.253.133", "91");
INSERT INTO `wp_rg_form_view` VALUES("30971", "10", "2016-05-15 18:15:18", "5.248.253.133", "39");
INSERT INTO `wp_rg_form_view` VALUES("30972", "1", "2016-05-15 19:09:51", "198.52.240.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("30973", "3", "2016-05-15 19:09:51", "198.52.240.55", "92");
INSERT INTO `wp_rg_form_view` VALUES("30974", "10", "2016-05-15 19:09:52", "198.52.240.55", "39");
INSERT INTO `wp_rg_form_view` VALUES("30975", "3", "2016-05-15 20:06:06", "70.35.196.136", "281");
INSERT INTO `wp_rg_form_view` VALUES("30976", "10", "2016-05-15 20:06:06", "70.35.196.136", "121");
INSERT INTO `wp_rg_form_view` VALUES("30977", "11", "2016-05-15 20:06:09", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("30978", "12", "2016-05-15 20:06:35", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("30979", "2", "2016-05-15 20:07:10", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("30980", "3", "2016-05-15 21:15:35", "66.249.79.162", "29");
INSERT INTO `wp_rg_form_view` VALUES("30981", "10", "2016-05-15 21:15:36", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("30982", "10", "2016-05-15 22:00:10", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("30983", "3", "2016-05-15 22:00:10", "199.21.99.202", "35");
INSERT INTO `wp_rg_form_view` VALUES("30984", "11", "2016-05-15 22:22:12", "77.75.76.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("30985", "3", "2016-05-15 23:03:42", "68.180.229.244", "28");
INSERT INTO `wp_rg_form_view` VALUES("30986", "10", "2016-05-15 23:03:43", "68.180.229.244", "12");
INSERT INTO `wp_rg_form_view` VALUES("30987", "3", "2016-05-16 00:04:16", "51.255.65.2", "120");
INSERT INTO `wp_rg_form_view` VALUES("30988", "10", "2016-05-16 00:04:16", "51.255.65.2", "52");
INSERT INTO `wp_rg_form_view` VALUES("30989", "3", "2016-05-16 01:25:47", "157.55.39.8", "113");
INSERT INTO `wp_rg_form_view` VALUES("30990", "10", "2016-05-16 01:25:49", "157.55.39.8", "48");
INSERT INTO `wp_rg_form_view` VALUES("30991", "2", "2016-05-16 01:53:48", "45.32.131.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("30992", "3", "2016-05-16 02:52:50", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("30993", "10", "2016-05-16 02:52:52", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("30994", "3", "2016-05-16 03:20:27", "66.249.88.230", "91");
INSERT INTO `wp_rg_form_view` VALUES("30995", "10", "2016-05-16 03:20:27", "66.249.88.230", "39");
INSERT INTO `wp_rg_form_view` VALUES("30996", "3", "2016-05-16 04:08:42", "209.52.88.132", "55");
INSERT INTO `wp_rg_form_view` VALUES("30997", "3", "2016-05-16 04:08:42", "209.52.88.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("30998", "10", "2016-05-16 04:08:43", "209.52.88.132", "23");
INSERT INTO `wp_rg_form_view` VALUES("30999", "10", "2016-05-16 04:08:43", "209.52.88.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("31000", "3", "2016-05-16 05:18:52", "184.66.39.248", "21");
INSERT INTO `wp_rg_form_view` VALUES("31001", "10", "2016-05-16 05:18:55", "184.66.39.248", "9");
INSERT INTO `wp_rg_form_view` VALUES("31002", "1", "2016-05-16 05:25:50", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("31003", "3", "2016-05-16 06:26:43", "207.46.13.160", "57");
INSERT INTO `wp_rg_form_view` VALUES("31004", "10", "2016-05-16 06:26:44", "207.46.13.160", "24");
INSERT INTO `wp_rg_form_view` VALUES("31005", "3", "2016-05-16 07:18:58", "207.46.13.160", "8");
INSERT INTO `wp_rg_form_view` VALUES("31006", "10", "2016-05-16 07:18:59", "207.46.13.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("31007", "3", "2016-05-16 08:08:45", "66.249.79.169", "58");
INSERT INTO `wp_rg_form_view` VALUES("31008", "10", "2016-05-16 08:08:47", "66.249.79.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("31009", "3", "2016-05-16 09:05:54", "66.249.79.162", "28");
INSERT INTO `wp_rg_form_view` VALUES("31010", "10", "2016-05-16 09:05:54", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("31011", "9", "2016-05-16 09:51:18", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("31012", "3", "2016-05-16 10:05:45", "202.46.53.147", "282");
INSERT INTO `wp_rg_form_view` VALUES("31013", "10", "2016-05-16 10:05:45", "202.46.53.147", "121");
INSERT INTO `wp_rg_form_view` VALUES("31014", "11", "2016-05-16 10:48:07", "77.160.205.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("31015", "12", "2016-05-16 10:48:43", "77.160.205.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("31016", "2", "2016-05-16 10:49:26", "77.160.205.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("31017", "3", "2016-05-16 11:10:39", "66.249.79.169", "70");
INSERT INTO `wp_rg_form_view` VALUES("31018", "10", "2016-05-16 11:10:39", "66.249.79.169", "27");
INSERT INTO `wp_rg_form_view` VALUES("31019", "3", "2016-05-16 12:49:04", "77.75.79.11", "7");
INSERT INTO `wp_rg_form_view` VALUES("31020", "10", "2016-05-16 12:49:06", "77.75.79.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("31021", "3", "2016-05-16 13:09:48", "202.46.58.83", "36");
INSERT INTO `wp_rg_form_view` VALUES("31022", "10", "2016-05-16 13:09:48", "202.46.58.83", "15");
INSERT INTO `wp_rg_form_view` VALUES("31023", "1", "2016-05-16 13:54:13", "198.46.186.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("31024", "3", "2016-05-16 14:10:22", "199.21.99.202", "23");
INSERT INTO `wp_rg_form_view` VALUES("31025", "10", "2016-05-16 14:10:23", "199.21.99.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("31026", "3", "2016-05-16 15:08:17", "216.16.225.198", "49");
INSERT INTO `wp_rg_form_view` VALUES("31027", "10", "2016-05-16 15:08:17", "216.16.225.198", "21");
INSERT INTO `wp_rg_form_view` VALUES("31028", "3", "2016-05-16 16:18:45", "136.243.17.161", "48");
INSERT INTO `wp_rg_form_view` VALUES("31029", "10", "2016-05-16 16:18:45", "136.243.17.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("31030", "11", "2016-05-16 16:59:59", "149.154.153.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("31031", "3", "2016-05-16 17:00:00", "149.154.153.229", "469");
INSERT INTO `wp_rg_form_view` VALUES("31032", "10", "2016-05-16 17:00:07", "149.154.153.229", "201");
INSERT INTO `wp_rg_form_view` VALUES("31033", "12", "2016-05-16 17:00:41", "149.154.153.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("31034", "2", "2016-05-16 17:01:38", "149.154.153.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("31035", "11", "2016-05-16 17:43:37", "79.116.27.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31036", "3", "2016-05-16 18:00:08", "217.69.133.233", "36");
INSERT INTO `wp_rg_form_view` VALUES("31037", "10", "2016-05-16 18:00:09", "217.69.133.233", "15");
INSERT INTO `wp_rg_form_view` VALUES("31038", "3", "2016-05-16 19:12:33", "77.75.76.164", "36");
INSERT INTO `wp_rg_form_view` VALUES("31039", "10", "2016-05-16 19:12:35", "77.75.76.164", "15");
INSERT INTO `wp_rg_form_view` VALUES("31040", "3", "2016-05-16 20:04:16", "64.180.189.159", "203");
INSERT INTO `wp_rg_form_view` VALUES("31041", "10", "2016-05-16 20:04:16", "64.180.189.159", "86");
INSERT INTO `wp_rg_form_view` VALUES("31042", "3", "2016-05-16 21:21:29", "207.46.13.81", "214");
INSERT INTO `wp_rg_form_view` VALUES("31043", "10", "2016-05-16 21:21:31", "207.46.13.81", "87");
INSERT INTO `wp_rg_form_view` VALUES("31044", "9", "2016-05-16 21:39:11", "207.46.13.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("31045", "3", "2016-05-16 22:25:24", "188.166.11.109", "57");
INSERT INTO `wp_rg_form_view` VALUES("31046", "10", "2016-05-16 22:25:24", "188.166.11.109", "24");
INSERT INTO `wp_rg_form_view` VALUES("31047", "7", "2016-05-16 22:43:50", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("31048", "3", "2016-05-16 23:23:17", "24.69.16.173", "77");
INSERT INTO `wp_rg_form_view` VALUES("31049", "10", "2016-05-16 23:23:19", "24.69.16.173", "33");
INSERT INTO `wp_rg_form_view` VALUES("31050", "1", "2016-05-16 23:25:12", "24.69.16.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("31051", "3", "2016-05-17 00:06:29", "68.180.229.244", "215");
INSERT INTO `wp_rg_form_view` VALUES("31052", "10", "2016-05-17 00:06:29", "68.180.229.244", "91");
INSERT INTO `wp_rg_form_view` VALUES("31053", "9", "2016-05-17 00:17:04", "207.46.13.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("31054", "7", "2016-05-17 00:17:30", "207.46.13.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("31055", "3", "2016-05-17 01:20:56", "66.249.79.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("31056", "10", "2016-05-17 01:20:59", "66.249.79.176", "6");
INSERT INTO `wp_rg_form_view` VALUES("31057", "3", "2016-05-17 02:32:57", "184.64.13.75", "67");
INSERT INTO `wp_rg_form_view` VALUES("31058", "10", "2016-05-17 02:32:57", "184.64.13.75", "27");
INSERT INTO `wp_rg_form_view` VALUES("31059", "3", "2016-05-17 03:03:07", "40.77.167.7", "35");
INSERT INTO `wp_rg_form_view` VALUES("31060", "10", "2016-05-17 03:03:07", "40.77.167.7", "15");
INSERT INTO `wp_rg_form_view` VALUES("31061", "8", "2016-05-17 03:25:08", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("31062", "3", "2016-05-17 04:12:22", "108.180.29.94", "36");
INSERT INTO `wp_rg_form_view` VALUES("31063", "10", "2016-05-17 04:12:24", "108.180.29.94", "15");
INSERT INTO `wp_rg_form_view` VALUES("31064", "3", "2016-05-17 05:31:12", "66.249.79.169", "21");
INSERT INTO `wp_rg_form_view` VALUES("31065", "10", "2016-05-17 05:31:15", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("31066", "12", "2016-05-17 05:49:41", "209.121.44.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("31067", "3", "2016-05-17 06:13:20", "66.249.79.162", "123");
INSERT INTO `wp_rg_form_view` VALUES("31068", "10", "2016-05-17 06:13:21", "66.249.79.162", "55");
INSERT INTO `wp_rg_form_view` VALUES("31069", "3", "2016-05-17 07:14:11", "202.46.49.192", "21");
INSERT INTO `wp_rg_form_view` VALUES("31070", "10", "2016-05-17 07:14:16", "202.46.49.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("31071", "3", "2016-05-17 08:07:21", "68.180.229.244", "44");
INSERT INTO `wp_rg_form_view` VALUES("31072", "10", "2016-05-17 08:08:47", "217.69.133.233", "19");
INSERT INTO `wp_rg_form_view` VALUES("31073", "3", "2016-05-17 09:09:00", "164.132.161.49", "58");
INSERT INTO `wp_rg_form_view` VALUES("31074", "10", "2016-05-17 09:09:00", "164.132.161.49", "24");
INSERT INTO `wp_rg_form_view` VALUES("31075", "9", "2016-05-17 09:42:47", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("31076", "3", "2016-05-17 10:09:36", "207.46.13.175", "28");
INSERT INTO `wp_rg_form_view` VALUES("31077", "10", "2016-05-17 10:09:36", "207.46.13.175", "12");
INSERT INTO `wp_rg_form_view` VALUES("31078", "9", "2016-05-17 11:02:47", "68.180.229.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("31079", "3", "2016-05-17 11:02:47", "68.180.229.244", "21");
INSERT INTO `wp_rg_form_view` VALUES("31080", "10", "2016-05-17 11:02:47", "68.180.229.244", "9");
INSERT INTO `wp_rg_form_view` VALUES("31081", "3", "2016-05-17 12:11:25", "202.46.48.200", "57");
INSERT INTO `wp_rg_form_view` VALUES("31082", "10", "2016-05-17 12:11:27", "202.46.48.200", "24");
INSERT INTO `wp_rg_form_view` VALUES("31083", "3", "2016-05-17 13:18:30", "151.80.31.164", "49");
INSERT INTO `wp_rg_form_view` VALUES("31084", "10", "2016-05-17 13:18:30", "151.80.31.164", "21");
INSERT INTO `wp_rg_form_view` VALUES("31085", "3", "2016-05-17 15:05:22", "68.180.229.244", "288");
INSERT INTO `wp_rg_form_view` VALUES("31086", "10", "2016-05-17 15:05:23", "68.180.229.244", "125");
INSERT INTO `wp_rg_form_view` VALUES("31087", "11", "2016-05-17 15:57:30", "213.127.45.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("31088", "12", "2016-05-17 15:58:01", "213.127.45.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("31089", "2", "2016-05-17 15:58:50", "213.127.45.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("31090", "3", "2016-05-17 16:02:19", "217.69.133.227", "36");
INSERT INTO `wp_rg_form_view` VALUES("31091", "10", "2016-05-17 16:02:19", "217.69.133.227", "15");
INSERT INTO `wp_rg_form_view` VALUES("31092", "1", "2016-05-17 16:34:42", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("31093", "3", "2016-05-17 17:32:38", "68.180.229.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("31094", "10", "2016-05-17 17:32:42", "68.180.229.244", "6");
INSERT INTO `wp_rg_form_view` VALUES("31095", "3", "2016-05-17 18:20:24", "184.66.240.135", "29");
INSERT INTO `wp_rg_form_view` VALUES("31096", "10", "2016-05-17 18:20:26", "184.66.240.135", "12");
INSERT INTO `wp_rg_form_view` VALUES("31097", "3", "2016-05-17 19:03:00", "199.21.99.202", "53");
INSERT INTO `wp_rg_form_view` VALUES("31098", "10", "2016-05-17 19:03:00", "199.21.99.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("31099", "3", "2016-05-17 20:05:40", "202.46.57.78", "84");
INSERT INTO `wp_rg_form_view` VALUES("31100", "10", "2016-05-17 20:05:42", "202.46.57.78", "36");
INSERT INTO `wp_rg_form_view` VALUES("31101", "3", "2016-05-17 21:14:39", "40.77.167.7", "310");
INSERT INTO `wp_rg_form_view` VALUES("31102", "10", "2016-05-17 21:14:41", "40.77.167.7", "139");
INSERT INTO `wp_rg_form_view` VALUES("31103", "1", "2016-05-17 21:29:59", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("31104", "11", "2016-05-17 21:31:11", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("31105", "3", "2016-05-17 22:06:05", "142.104.37.85", "100");
INSERT INTO `wp_rg_form_view` VALUES("31106", "10", "2016-05-17 22:06:05", "142.104.37.85", "45");
INSERT INTO `wp_rg_form_view` VALUES("31107", "1", "2016-05-17 22:16:31", "142.104.37.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("31108", "3", "2016-05-17 23:00:02", "68.180.229.244", "29");
INSERT INTO `wp_rg_form_view` VALUES("31109", "10", "2016-05-17 23:00:02", "68.180.229.244", "14");
INSERT INTO `wp_rg_form_view` VALUES("31110", "3", "2016-05-18 00:07:05", "66.249.79.176", "92");
INSERT INTO `wp_rg_form_view` VALUES("31111", "10", "2016-05-18 00:07:06", "66.249.79.176", "42");
INSERT INTO `wp_rg_form_view` VALUES("31112", "3", "2016-05-18 01:04:42", "207.46.13.175", "166");
INSERT INTO `wp_rg_form_view` VALUES("31113", "10", "2016-05-18 01:04:42", "207.46.13.175", "70");
INSERT INTO `wp_rg_form_view` VALUES("31114", "3", "2016-05-18 02:30:39", "157.55.39.51", "42");
INSERT INTO `wp_rg_form_view` VALUES("31115", "10", "2016-05-18 02:30:39", "157.55.39.51", "18");
INSERT INTO `wp_rg_form_view` VALUES("31116", "10", "2016-05-18 03:08:21", "199.21.99.202", "25");
INSERT INTO `wp_rg_form_view` VALUES("31117", "3", "2016-05-18 03:08:24", "199.21.99.202", "49");
INSERT INTO `wp_rg_form_view` VALUES("31118", "12", "2016-05-18 04:17:59", "157.55.39.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31119", "3", "2016-05-18 04:18:00", "157.55.39.51", "72");
INSERT INTO `wp_rg_form_view` VALUES("31120", "10", "2016-05-18 04:18:01", "157.55.39.51", "30");
INSERT INTO `wp_rg_form_view` VALUES("31121", "9", "2016-05-18 04:29:38", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("31122", "1", "2016-05-18 04:38:27", "107.172.224.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("31123", "3", "2016-05-18 05:01:14", "68.180.229.58", "156");
INSERT INTO `wp_rg_form_view` VALUES("31124", "10", "2016-05-18 05:01:15", "68.180.229.58", "66");
INSERT INTO `wp_rg_form_view` VALUES("31125", "2", "2016-05-18 05:48:38", "50.92.248.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("31126", "3", "2016-05-18 06:05:03", "199.21.99.202", "42");
INSERT INTO `wp_rg_form_view` VALUES("31127", "10", "2016-05-18 06:05:18", "199.21.99.202", "18");
INSERT INTO `wp_rg_form_view` VALUES("31128", "3", "2016-05-18 07:17:55", "77.75.78.172", "30");
INSERT INTO `wp_rg_form_view` VALUES("31129", "10", "2016-05-18 07:17:59", "77.75.78.172", "12");
INSERT INTO `wp_rg_form_view` VALUES("31130", "9", "2016-05-18 07:42:36", "51.255.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("31131", "3", "2016-05-18 08:02:31", "202.46.53.56", "28");
INSERT INTO `wp_rg_form_view` VALUES("31132", "10", "2016-05-18 08:02:31", "202.46.53.56", "12");
INSERT INTO `wp_rg_form_view` VALUES("31133", "3", "2016-05-18 09:16:35", "46.119.58.190", "49");
INSERT INTO `wp_rg_form_view` VALUES("31134", "10", "2016-05-18 09:16:35", "46.119.58.190", "21");
INSERT INTO `wp_rg_form_view` VALUES("31135", "3", "2016-05-18 10:44:40", "202.46.56.190", "7");
INSERT INTO `wp_rg_form_view` VALUES("31136", "10", "2016-05-18 10:44:41", "202.46.56.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("31137", "3", "2016-05-18 11:18:11", "202.46.51.169", "30");
INSERT INTO `wp_rg_form_view` VALUES("31138", "10", "2016-05-18 11:18:14", "202.46.51.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("31139", "3", "2016-05-18 12:49:54", "199.21.99.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("31140", "10", "2016-05-18 12:49:55", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("31141", "3", "2016-05-18 14:01:40", "141.8.143.242", "58");
INSERT INTO `wp_rg_form_view` VALUES("31142", "10", "2016-05-18 14:01:42", "141.8.143.242", "24");
INSERT INTO `wp_rg_form_view` VALUES("31143", "3", "2016-05-18 15:01:43", "164.132.161.55", "52");
INSERT INTO `wp_rg_form_view` VALUES("31144", "10", "2016-05-18 15:07:37", "68.180.229.58", "21");
INSERT INTO `wp_rg_form_view` VALUES("31145", "12", "2016-05-18 15:52:31", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("31146", "12", "2016-05-18 16:00:27", "96.54.21.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("31147", "3", "2016-05-18 16:00:27", "96.54.21.35", "157");
INSERT INTO `wp_rg_form_view` VALUES("31148", "10", "2016-05-18 16:00:27", "96.54.21.35", "66");
INSERT INTO `wp_rg_form_view` VALUES("31149", "3", "2016-05-18 17:03:59", "209.121.23.226", "36");
INSERT INTO `wp_rg_form_view` VALUES("31150", "10", "2016-05-18 17:04:00", "209.121.23.226", "15");
INSERT INTO `wp_rg_form_view` VALUES("31151", "3", "2016-05-18 18:05:59", "64.114.222.240", "122");
INSERT INTO `wp_rg_form_view` VALUES("31152", "10", "2016-05-18 18:06:00", "64.114.222.240", "52");
INSERT INTO `wp_rg_form_view` VALUES("31153", "1", "2016-05-18 18:50:28", "64.114.222.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("31154", "10", "2016-05-18 19:10:38", "207.46.13.192", "8");
INSERT INTO `wp_rg_form_view` VALUES("31155", "3", "2016-05-18 19:10:42", "207.46.13.192", "21");
INSERT INTO `wp_rg_form_view` VALUES("31156", "6", "2016-05-18 19:37:22", "66.249.75.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("31157", "8", "2016-05-18 19:55:35", "164.132.161.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("31158", "9", "2016-05-18 19:55:35", "164.132.161.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("31159", "3", "2016-05-18 20:21:47", "202.46.52.64", "51");
INSERT INTO `wp_rg_form_view` VALUES("31160", "10", "2016-05-18 20:21:50", "202.46.52.64", "18");
INSERT INTO `wp_rg_form_view` VALUES("31161", "3", "2016-05-18 21:21:48", "192.197.253.19", "29");
INSERT INTO `wp_rg_form_view` VALUES("31162", "10", "2016-05-18 21:21:48", "192.197.253.19", "13");
INSERT INTO `wp_rg_form_view` VALUES("31163", "3", "2016-05-18 22:34:16", "157.55.39.89", "22");
INSERT INTO `wp_rg_form_view` VALUES("31164", "10", "2016-05-18 22:34:21", "157.55.39.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("31165", "5", "2016-05-18 22:43:45", "207.46.13.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("31166", "3", "2016-05-18 23:00:03", "142.104.37.76", "22");
INSERT INTO `wp_rg_form_view` VALUES("31167", "10", "2016-05-18 23:00:03", "142.104.37.76", "9");
INSERT INTO `wp_rg_form_view` VALUES("31168", "3", "2016-05-19 00:16:14", "202.46.52.164", "50");
INSERT INTO `wp_rg_form_view` VALUES("31169", "10", "2016-05-19 00:16:16", "202.46.52.164", "21");
INSERT INTO `wp_rg_form_view` VALUES("31170", "3", "2016-05-19 01:18:58", "104.131.179.5", "1997");
INSERT INTO `wp_rg_form_view` VALUES("31171", "10", "2016-05-19 01:18:58", "104.131.179.5", "874");
INSERT INTO `wp_rg_form_view` VALUES("31172", "1", "2016-05-19 01:23:17", "104.131.179.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("31173", "11", "2016-05-19 01:23:32", "104.131.179.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("31174", "5", "2016-05-19 01:28:56", "104.131.179.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("31175", "12", "2016-05-19 01:32:11", "104.131.179.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("31176", "6", "2016-05-19 01:36:27", "104.131.179.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("31177", "9", "2016-05-19 01:43:37", "104.131.179.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("31178", "2", "2016-05-19 01:56:49", "66.249.75.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("31179", "3", "2016-05-19 02:00:22", "104.131.179.5", "2084");
INSERT INTO `wp_rg_form_view` VALUES("31180", "10", "2016-05-19 02:00:22", "104.131.179.5", "910");
INSERT INTO `wp_rg_form_view` VALUES("31181", "2", "2016-05-19 02:28:08", "104.131.179.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("31182", "8", "2016-05-19 02:41:58", "104.131.179.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("31183", "3", "2016-05-19 03:21:19", "207.46.13.192", "44");
INSERT INTO `wp_rg_form_view` VALUES("31184", "10", "2016-05-19 03:21:24", "207.46.13.192", "18");
INSERT INTO `wp_rg_form_view` VALUES("31185", "11", "2016-05-19 04:01:15", "66.249.75.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("31186", "3", "2016-05-19 04:01:16", "66.249.75.180", "41");
INSERT INTO `wp_rg_form_view` VALUES("31187", "10", "2016-05-19 04:01:16", "66.249.75.180", "16");
INSERT INTO `wp_rg_form_view` VALUES("31188", "3", "2016-05-19 05:03:38", "68.180.229.58", "45");
INSERT INTO `wp_rg_form_view` VALUES("31189", "10", "2016-05-19 05:03:38", "68.180.229.58", "18");
INSERT INTO `wp_rg_form_view` VALUES("31190", "3", "2016-05-19 07:03:27", "157.55.39.51", "37");
INSERT INTO `wp_rg_form_view` VALUES("31191", "10", "2016-05-19 07:03:30", "157.55.39.51", "18");
INSERT INTO `wp_rg_form_view` VALUES("31192", "3", "2016-05-19 08:10:02", "157.55.39.51", "42");
INSERT INTO `wp_rg_form_view` VALUES("31193", "10", "2016-05-19 08:10:04", "157.55.39.51", "18");
INSERT INTO `wp_rg_form_view` VALUES("31194", "1", "2016-05-19 08:15:00", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("31195", "12", "2016-05-19 09:42:14", "157.55.39.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31196", "3", "2016-05-19 09:42:16", "157.55.39.51", "7");
INSERT INTO `wp_rg_form_view` VALUES("31197", "10", "2016-05-19 09:42:16", "157.55.39.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("31198", "3", "2016-05-19 10:01:03", "51.255.65.23", "92");
INSERT INTO `wp_rg_form_view` VALUES("31199", "10", "2016-05-19 10:01:03", "51.255.65.23", "39");
INSERT INTO `wp_rg_form_view` VALUES("31200", "3", "2016-05-19 11:02:23", "176.8.244.215", "63");
INSERT INTO `wp_rg_form_view` VALUES("31201", "10", "2016-05-19 11:02:23", "176.8.244.215", "27");
INSERT INTO `wp_rg_form_view` VALUES("31202", "1", "2016-05-19 11:06:26", "77.75.78.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("31203", "9", "2016-05-19 11:55:26", "157.55.39.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("31204", "3", "2016-05-19 12:06:06", "77.75.78.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("31205", "10", "2016-05-19 12:06:06", "77.75.78.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("31206", "3", "2016-05-19 13:12:28", "66.249.75.180", "7");
INSERT INTO `wp_rg_form_view` VALUES("31207", "10", "2016-05-19 13:12:32", "66.249.75.180", "3");
INSERT INTO `wp_rg_form_view` VALUES("31208", "3", "2016-05-19 14:54:14", "77.75.79.119", "268");
INSERT INTO `wp_rg_form_view` VALUES("31209", "10", "2016-05-19 14:54:16", "77.75.79.119", "115");
INSERT INTO `wp_rg_form_view` VALUES("31210", "11", "2016-05-19 14:58:10", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("31211", "2", "2016-05-19 14:58:12", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("31212", "12", "2016-05-19 14:59:12", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("31213", "3", "2016-05-19 15:00:00", "173.193.219.168", "3226");
INSERT INTO `wp_rg_form_view` VALUES("31214", "10", "2016-05-19 15:00:02", "173.193.219.168", "1400");
INSERT INTO `wp_rg_form_view` VALUES("31215", "1", "2016-05-19 15:00:09", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("31216", "5", "2016-05-19 15:03:51", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("31217", "8", "2016-05-19 15:05:58", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("31218", "9", "2016-05-19 15:06:04", "173.193.219.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("31219", "3", "2016-05-19 16:27:00", "66.249.65.97", "14");
INSERT INTO `wp_rg_form_view` VALUES("31220", "10", "2016-05-19 16:27:03", "66.249.65.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("31221", "3", "2016-05-19 17:03:28", "157.55.39.51", "50");
INSERT INTO `wp_rg_form_view` VALUES("31222", "10", "2016-05-19 17:03:31", "157.55.39.51", "21");
INSERT INTO `wp_rg_form_view` VALUES("31223", "3", "2016-05-19 18:14:19", "54.236.1.72", "42");
INSERT INTO `wp_rg_form_view` VALUES("31224", "10", "2016-05-19 18:14:19", "54.236.1.72", "18");
INSERT INTO `wp_rg_form_view` VALUES("31225", "11", "2016-05-19 18:34:49", "77.75.77.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("31226", "3", "2016-05-19 19:02:49", "199.21.99.202", "74");
INSERT INTO `wp_rg_form_view` VALUES("31227", "10", "2016-05-19 19:03:07", "199.21.99.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("31228", "1", "2016-05-19 19:25:38", "184.66.252.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("31229", "3", "2016-05-19 20:15:54", "207.6.183.85", "55");
INSERT INTO `wp_rg_form_view` VALUES("31230", "10", "2016-05-19 20:15:54", "207.6.183.85", "21");
INSERT INTO `wp_rg_form_view` VALUES("31231", "3", "2016-05-19 21:13:20", "204.209.209.131", "92");
INSERT INTO `wp_rg_form_view` VALUES("31232", "10", "2016-05-19 21:13:20", "204.209.209.131", "39");
INSERT INTO `wp_rg_form_view` VALUES("31233", "12", "2016-05-19 21:48:17", "54.165.151.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("31234", "5", "2016-05-19 22:14:06", "202.46.52.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("31235", "3", "2016-05-19 22:14:06", "202.46.52.17", "21");
INSERT INTO `wp_rg_form_view` VALUES("31236", "10", "2016-05-19 22:14:06", "202.46.52.17", "9");
INSERT INTO `wp_rg_form_view` VALUES("31237", "3", "2016-05-19 23:07:32", "207.46.13.192", "583");
INSERT INTO `wp_rg_form_view` VALUES("31238", "10", "2016-05-19 23:07:32", "207.46.13.192", "269");
INSERT INTO `wp_rg_form_view` VALUES("31239", "6", "2016-05-19 23:07:53", "207.46.13.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("31240", "11", "2016-05-19 23:07:56", "157.55.39.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("31241", "9", "2016-05-19 23:08:15", "157.55.39.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("31242", "12", "2016-05-19 23:32:33", "68.180.229.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("31243", "3", "2016-05-20 00:06:14", "157.55.39.89", "42");
INSERT INTO `wp_rg_form_view` VALUES("31244", "10", "2016-05-20 00:06:15", "157.55.39.89", "18");
INSERT INTO `wp_rg_form_view` VALUES("31245", "12", "2016-05-20 00:17:39", "68.180.229.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("31246", "3", "2016-05-20 01:01:35", "202.46.57.12", "14");
INSERT INTO `wp_rg_form_view` VALUES("31247", "10", "2016-05-20 01:01:35", "202.46.57.12", "6");
INSERT INTO `wp_rg_form_view` VALUES("31248", "1", "2016-05-20 01:58:18", "77.75.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("31249", "3", "2016-05-20 02:26:49", "66.249.65.100", "14");
INSERT INTO `wp_rg_form_view` VALUES("31250", "10", "2016-05-20 02:26:50", "66.249.65.100", "6");
INSERT INTO `wp_rg_form_view` VALUES("31251", "3", "2016-05-20 03:00:01", "154.5.180.134", "112");
INSERT INTO `wp_rg_form_view` VALUES("31252", "10", "2016-05-20 03:00:01", "154.5.180.134", "48");
INSERT INTO `wp_rg_form_view` VALUES("31253", "1", "2016-05-20 03:13:44", "154.5.180.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("31254", "9", "2016-05-20 03:27:16", "68.180.229.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("31255", "3", "2016-05-20 04:39:04", "207.46.13.192", "7");
INSERT INTO `wp_rg_form_view` VALUES("31256", "10", "2016-05-20 04:39:06", "207.46.13.192", "3");
INSERT INTO `wp_rg_form_view` VALUES("31257", "3", "2016-05-20 05:07:54", "46.118.152.166", "48");
INSERT INTO `wp_rg_form_view` VALUES("31258", "3", "2016-05-20 05:07:54", "46.118.152.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("31259", "10", "2016-05-20 05:07:54", "46.118.152.166", "20");
INSERT INTO `wp_rg_form_view` VALUES("31260", "10", "2016-05-20 05:07:54", "46.118.152.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("31261", "3", "2016-05-20 06:37:39", "24.69.158.129", "560");
INSERT INTO `wp_rg_form_view` VALUES("31262", "10", "2016-05-20 06:37:41", "24.69.158.129", "242");
INSERT INTO `wp_rg_form_view` VALUES("31263", "11", "2016-05-20 06:53:48", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31264", "2", "2016-05-20 06:53:53", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31265", "12", "2016-05-20 06:55:33", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31266", "1", "2016-05-20 06:56:11", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31267", "3", "2016-05-20 07:00:34", "5.9.98.130", "3516");
INSERT INTO `wp_rg_form_view` VALUES("31268", "10", "2016-05-20 07:00:34", "5.9.98.130", "1578");
INSERT INTO `wp_rg_form_view` VALUES("31269", "8", "2016-05-20 07:00:48", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31270", "9", "2016-05-20 07:00:57", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31271", "5", "2016-05-20 07:01:42", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31272", "6", "2016-05-20 07:05:42", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31273", "3", "2016-05-20 08:00:01", "5.9.98.130", "3415");
INSERT INTO `wp_rg_form_view` VALUES("31274", "10", "2016-05-20 08:00:01", "5.9.98.130", "1546");
INSERT INTO `wp_rg_form_view` VALUES("31275", "10", "2016-05-20 09:00:00", "5.9.98.130", "1017");
INSERT INTO `wp_rg_form_view` VALUES("31276", "3", "2016-05-20 09:00:00", "5.9.98.130", "2090");
INSERT INTO `wp_rg_form_view` VALUES("31277", "3", "2016-05-20 10:00:01", "5.9.98.130", "3277");
INSERT INTO `wp_rg_form_view` VALUES("31278", "10", "2016-05-20 10:00:01", "5.9.98.130", "1536");
INSERT INTO `wp_rg_form_view` VALUES("31279", "9", "2016-05-20 10:40:06", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31280", "3", "2016-05-20 11:09:09", "68.180.229.58", "15");
INSERT INTO `wp_rg_form_view` VALUES("31281", "10", "2016-05-20 11:09:10", "68.180.229.58", "6");
INSERT INTO `wp_rg_form_view` VALUES("31282", "3", "2016-05-20 14:07:31", "209.53.121.203", "126");
INSERT INTO `wp_rg_form_view` VALUES("31283", "10", "2016-05-20 14:07:32", "209.53.121.203", "54");
INSERT INTO `wp_rg_form_view` VALUES("31284", "1", "2016-05-20 14:13:53", "104.144.138.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("31285", "3", "2016-05-20 15:47:58", "206.253.224.14", "14");
INSERT INTO `wp_rg_form_view` VALUES("31286", "10", "2016-05-20 15:48:01", "206.253.224.14", "6");
INSERT INTO `wp_rg_form_view` VALUES("31287", "12", "2016-05-20 15:50:01", "41.207.249.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("31288", "3", "2016-05-20 16:00:01", "207.46.13.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("31289", "10", "2016-05-20 16:00:01", "207.46.13.144", "9");
INSERT INTO `wp_rg_form_view` VALUES("31290", "1", "2016-05-20 16:10:44", "104.218.192.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("31291", "3", "2016-05-20 17:13:06", "207.194.133.9", "57");
INSERT INTO `wp_rg_form_view` VALUES("31292", "10", "2016-05-20 17:13:16", "207.194.133.9", "23");
INSERT INTO `wp_rg_form_view` VALUES("31293", "10", "2016-05-20 17:13:16", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("31294", "8", "2016-05-20 18:30:01", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("31295", "3", "2016-05-20 18:30:02", "66.249.79.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("31296", "10", "2016-05-20 18:30:03", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("31297", "3", "2016-05-20 19:10:49", "178.137.167.51", "63");
INSERT INTO `wp_rg_form_view` VALUES("31298", "10", "2016-05-20 19:10:51", "178.137.167.51", "25");
INSERT INTO `wp_rg_form_view` VALUES("31299", "10", "2016-05-20 19:10:51", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31300", "10", "2016-05-20 19:10:51", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31301", "3", "2016-05-20 20:20:51", "68.180.229.58", "14");
INSERT INTO `wp_rg_form_view` VALUES("31302", "10", "2016-05-20 20:20:51", "68.180.229.58", "6");
INSERT INTO `wp_rg_form_view` VALUES("31303", "11", "2016-05-20 21:10:17", "77.75.78.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("31304", "3", "2016-05-20 21:10:22", "77.75.78.171", "49");
INSERT INTO `wp_rg_form_view` VALUES("31305", "10", "2016-05-20 21:10:22", "77.75.78.171", "21");
INSERT INTO `wp_rg_form_view` VALUES("31306", "1", "2016-05-20 21:34:27", "45.45.150.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("31307", "3", "2016-05-20 22:32:28", "207.46.13.6", "14");
INSERT INTO `wp_rg_form_view` VALUES("31308", "10", "2016-05-20 22:32:29", "207.46.13.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("31309", "3", "2016-05-20 23:18:17", "199.59.148.209", "15");
INSERT INTO `wp_rg_form_view` VALUES("31310", "10", "2016-05-20 23:18:19", "199.59.148.209", "7");
INSERT INTO `wp_rg_form_view` VALUES("31311", "3", "2016-05-21 00:09:43", "207.216.13.45", "29");
INSERT INTO `wp_rg_form_view` VALUES("31312", "10", "2016-05-21 00:09:43", "207.216.13.45", "12");
INSERT INTO `wp_rg_form_view` VALUES("31313", "3", "2016-05-21 01:08:26", "46.118.152.166", "42");
INSERT INTO `wp_rg_form_view` VALUES("31314", "10", "2016-05-21 01:08:26", "46.118.152.166", "18");
INSERT INTO `wp_rg_form_view` VALUES("31315", "3", "2016-05-21 02:21:43", "77.75.77.32", "29");
INSERT INTO `wp_rg_form_view` VALUES("31316", "10", "2016-05-21 02:21:44", "77.75.77.32", "12");
INSERT INTO `wp_rg_form_view` VALUES("31317", "3", "2016-05-21 03:36:34", "164.132.161.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("31318", "10", "2016-05-21 03:36:38", "164.132.161.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("31319", "3", "2016-05-21 05:14:24", "212.250.165.170", "388");
INSERT INTO `wp_rg_form_view` VALUES("31320", "10", "2016-05-21 05:14:26", "212.250.165.170", "162");
INSERT INTO `wp_rg_form_view` VALUES("31321", "10", "2016-05-21 05:14:26", "202.46.55.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("31322", "11", "2016-05-21 05:14:40", "212.250.165.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("31323", "2", "2016-05-21 05:14:45", "212.250.165.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("31324", "12", "2016-05-21 05:16:36", "212.250.165.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("31325", "1", "2016-05-21 05:17:35", "212.250.165.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("31326", "3", "2016-05-21 06:16:42", "68.180.229.58", "246");
INSERT INTO `wp_rg_form_view` VALUES("31327", "10", "2016-05-21 06:16:46", "68.180.229.58", "106");
INSERT INTO `wp_rg_form_view` VALUES("31328", "11", "2016-05-21 06:28:28", "192.95.6.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("31329", "12", "2016-05-21 06:28:59", "192.95.6.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("31330", "2", "2016-05-21 06:29:40", "192.95.6.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("31331", "3", "2016-05-21 07:10:26", "202.46.51.106", "21");
INSERT INTO `wp_rg_form_view` VALUES("31332", "10", "2016-05-21 07:10:26", "202.46.51.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("31333", "3", "2016-05-21 08:22:53", "94.23.27.166", "452");
INSERT INTO `wp_rg_form_view` VALUES("31334", "10", "2016-05-21 08:22:54", "94.23.27.166", "196");
INSERT INTO `wp_rg_form_view` VALUES("31335", "11", "2016-05-21 08:23:20", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("31336", "2", "2016-05-21 08:23:25", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("31337", "12", "2016-05-21 08:25:28", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("31338", "1", "2016-05-21 08:26:13", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("31339", "3", "2016-05-21 09:21:47", "66.249.79.162", "14");
INSERT INTO `wp_rg_form_view` VALUES("31340", "10", "2016-05-21 09:21:49", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("31341", "3", "2016-05-21 10:34:58", "141.8.143.242", "22");
INSERT INTO `wp_rg_form_view` VALUES("31342", "10", "2016-05-21 10:35:07", "141.8.143.242", "9");
INSERT INTO `wp_rg_form_view` VALUES("31343", "3", "2016-05-21 11:18:29", "51.255.65.63", "270");
INSERT INTO `wp_rg_form_view` VALUES("31344", "10", "2016-05-21 11:18:30", "51.255.65.63", "115");
INSERT INTO `wp_rg_form_view` VALUES("31345", "11", "2016-05-21 11:31:07", "79.116.27.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31346", "12", "2016-05-21 11:31:42", "79.116.27.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31347", "2", "2016-05-21 11:32:26", "79.116.27.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31348", "3", "2016-05-21 12:50:47", "68.180.229.58", "14");
INSERT INTO `wp_rg_form_view` VALUES("31349", "10", "2016-05-21 12:50:48", "68.180.229.58", "6");
INSERT INTO `wp_rg_form_view` VALUES("31350", "6", "2016-05-21 13:07:12", "164.132.161.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("31351", "3", "2016-05-21 13:07:12", "164.132.161.7", "92");
INSERT INTO `wp_rg_form_view` VALUES("31352", "10", "2016-05-21 13:07:12", "164.132.161.7", "39");
INSERT INTO `wp_rg_form_view` VALUES("31353", "3", "2016-05-21 14:15:00", "164.132.161.45", "28");
INSERT INTO `wp_rg_form_view` VALUES("31354", "10", "2016-05-21 14:15:00", "164.132.161.45", "12");
INSERT INTO `wp_rg_form_view` VALUES("31355", "1", "2016-05-21 14:16:33", "51.255.65.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("31356", "1", "2016-05-21 15:07:16", "96.50.28.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("31357", "3", "2016-05-21 15:07:17", "96.50.28.131", "35");
INSERT INTO `wp_rg_form_view` VALUES("31358", "10", "2016-05-21 15:07:17", "96.50.28.131", "15");
INSERT INTO `wp_rg_form_view` VALUES("31359", "3", "2016-05-21 16:01:15", "176.8.244.215", "71");
INSERT INTO `wp_rg_form_view` VALUES("31360", "10", "2016-05-21 16:01:15", "176.8.244.215", "30");
INSERT INTO `wp_rg_form_view` VALUES("31361", "3", "2016-05-21 17:00:52", "207.46.13.144", "164");
INSERT INTO `wp_rg_form_view` VALUES("31362", "10", "2016-05-21 17:00:52", "207.46.13.144", "70");
INSERT INTO `wp_rg_form_view` VALUES("31363", "11", "2016-05-21 17:42:35", "104.236.121.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("31364", "12", "2016-05-21 17:42:35", "104.236.121.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("31365", "2", "2016-05-21 17:42:38", "104.236.121.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("31366", "3", "2016-05-21 18:05:06", "202.46.51.109", "15");
INSERT INTO `wp_rg_form_view` VALUES("31367", "10", "2016-05-21 18:05:06", "202.46.51.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("31368", "3", "2016-05-21 19:05:45", "117.68.151.166", "36");
INSERT INTO `wp_rg_form_view` VALUES("31369", "10", "2016-05-21 19:05:52", "117.68.151.166", "15");
INSERT INTO `wp_rg_form_view` VALUES("31370", "3", "2016-05-21 20:03:00", "164.132.161.77", "15");
INSERT INTO `wp_rg_form_view` VALUES("31371", "10", "2016-05-21 20:03:00", "164.132.161.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("31372", "3", "2016-05-21 21:37:19", "96.54.197.128", "41");
INSERT INTO `wp_rg_form_view` VALUES("31373", "3", "2016-05-21 21:37:19", "96.54.197.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("31374", "10", "2016-05-21 21:37:24", "96.54.197.128", "17");
INSERT INTO `wp_rg_form_view` VALUES("31375", "10", "2016-05-21 21:37:24", "96.54.197.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("31376", "3", "2016-05-21 22:12:31", "202.46.55.137", "32");
INSERT INTO `wp_rg_form_view` VALUES("31377", "10", "2016-05-21 22:12:33", "202.46.55.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("31378", "3", "2016-05-21 23:13:49", "206.116.122.140", "28");
INSERT INTO `wp_rg_form_view` VALUES("31379", "10", "2016-05-21 23:13:53", "206.116.122.140", "13");
INSERT INTO `wp_rg_form_view` VALUES("31380", "12", "2016-05-21 23:52:58", "202.46.55.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("31381", "10", "2016-05-22 00:40:11", "207.46.13.64", "17");
INSERT INTO `wp_rg_form_view` VALUES("31382", "3", "2016-05-22 00:40:12", "207.46.13.64", "36");
INSERT INTO `wp_rg_form_view` VALUES("31383", "1", "2016-05-22 00:59:58", "202.46.58.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("31384", "3", "2016-05-22 01:10:42", "46.118.121.215", "43");
INSERT INTO `wp_rg_form_view` VALUES("31385", "10", "2016-05-22 01:10:42", "46.118.121.215", "19");
INSERT INTO `wp_rg_form_view` VALUES("31386", "3", "2016-05-22 02:27:00", "68.180.229.58", "21");
INSERT INTO `wp_rg_form_view` VALUES("31387", "10", "2016-05-22 02:27:00", "68.180.229.58", "10");
INSERT INTO `wp_rg_form_view` VALUES("31388", "10", "2016-05-22 03:08:39", "54.162.231.121", "22");
INSERT INTO `wp_rg_form_view` VALUES("31389", "3", "2016-05-22 03:08:40", "54.162.231.121", "43");
INSERT INTO `wp_rg_form_view` VALUES("31390", "3", "2016-05-22 04:29:49", "141.8.143.242", "37");
INSERT INTO `wp_rg_form_view` VALUES("31391", "10", "2016-05-22 04:29:50", "141.8.143.242", "15");
INSERT INTO `wp_rg_form_view` VALUES("31392", "3", "2016-05-22 06:10:40", "66.249.66.78", "28");
INSERT INTO `wp_rg_form_view` VALUES("31393", "10", "2016-05-22 06:10:42", "66.249.66.78", "12");
INSERT INTO `wp_rg_form_view` VALUES("31394", "3", "2016-05-22 07:04:24", "207.46.13.144", "37");
INSERT INTO `wp_rg_form_view` VALUES("31395", "10", "2016-05-22 07:04:24", "207.46.13.144", "15");
INSERT INTO `wp_rg_form_view` VALUES("31396", "3", "2016-05-22 08:20:51", "157.55.39.43", "14");
INSERT INTO `wp_rg_form_view` VALUES("31397", "10", "2016-05-22 08:20:52", "157.55.39.43", "7");
INSERT INTO `wp_rg_form_view` VALUES("31398", "3", "2016-05-22 10:09:57", "142.4.216.172", "197");
INSERT INTO `wp_rg_form_view` VALUES("31399", "10", "2016-05-22 10:09:58", "142.4.216.172", "84");
INSERT INTO `wp_rg_form_view` VALUES("31400", "11", "2016-05-22 10:10:11", "142.4.216.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("31401", "2", "2016-05-22 10:10:14", "142.4.216.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("31402", "3", "2016-05-22 11:00:14", "66.249.66.81", "106");
INSERT INTO `wp_rg_form_view` VALUES("31403", "10", "2016-05-22 11:00:14", "66.249.66.81", "45");
INSERT INTO `wp_rg_form_view` VALUES("31404", "10", "2016-05-22 12:09:40", "66.249.66.78", "13");
INSERT INTO `wp_rg_form_view` VALUES("31405", "3", "2016-05-22 12:09:42", "66.249.66.78", "29");
INSERT INTO `wp_rg_form_view` VALUES("31406", "12", "2016-05-22 12:09:58", "66.249.66.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("31407", "3", "2016-05-22 13:03:31", "66.249.66.78", "23");
INSERT INTO `wp_rg_form_view` VALUES("31408", "10", "2016-05-22 13:03:34", "66.249.66.78", "9");
INSERT INTO `wp_rg_form_view` VALUES("31409", "3", "2016-05-22 14:00:15", "66.249.66.75", "35");
INSERT INTO `wp_rg_form_view` VALUES("31410", "10", "2016-05-22 14:00:15", "66.249.66.75", "15");
INSERT INTO `wp_rg_form_view` VALUES("31411", "3", "2016-05-22 15:01:22", "68.180.229.58", "15");
INSERT INTO `wp_rg_form_view` VALUES("31412", "10", "2016-05-22 15:01:24", "68.180.229.58", "8");
INSERT INTO `wp_rg_form_view` VALUES("31413", "3", "2016-05-22 16:03:27", "40.77.167.1", "49");
INSERT INTO `wp_rg_form_view` VALUES("31414", "10", "2016-05-22 16:03:28", "40.77.167.1", "21");
INSERT INTO `wp_rg_form_view` VALUES("31415", "3", "2016-05-22 17:03:45", "220.181.108.181", "239");
INSERT INTO `wp_rg_form_view` VALUES("31416", "10", "2016-05-22 17:03:45", "220.181.108.181", "103");
INSERT INTO `wp_rg_form_view` VALUES("31417", "11", "2016-05-22 17:53:00", "88.0.105.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("31418", "12", "2016-05-22 17:53:40", "88.0.105.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("31419", "2", "2016-05-22 17:54:25", "88.0.105.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("31420", "3", "2016-05-22 18:00:54", "66.249.79.169", "19");
INSERT INTO `wp_rg_form_view` VALUES("31421", "10", "2016-05-22 18:00:54", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("31422", "3", "2016-05-22 19:04:06", "164.132.161.56", "7");
INSERT INTO `wp_rg_form_view` VALUES("31423", "10", "2016-05-22 19:04:06", "164.132.161.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("31424", "3", "2016-05-22 20:24:08", "77.75.79.17", "14");
INSERT INTO `wp_rg_form_view` VALUES("31425", "10", "2016-05-22 20:24:10", "77.75.79.17", "6");
INSERT INTO `wp_rg_form_view` VALUES("31426", "3", "2016-05-22 21:14:34", "164.132.161.76", "28");
INSERT INTO `wp_rg_form_view` VALUES("31427", "10", "2016-05-22 21:14:36", "164.132.161.76", "11");
INSERT INTO `wp_rg_form_view` VALUES("31428", "10", "2016-05-22 21:14:36", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("31429", "3", "2016-05-22 22:02:04", "77.75.78.165", "21");
INSERT INTO `wp_rg_form_view` VALUES("31430", "10", "2016-05-22 22:02:04", "77.75.78.165", "9");
INSERT INTO `wp_rg_form_view` VALUES("31431", "7", "2016-05-22 23:12:14", "202.46.55.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("31432", "3", "2016-05-22 23:12:17", "202.46.55.19", "42");
INSERT INTO `wp_rg_form_view` VALUES("31433", "10", "2016-05-22 23:12:17", "202.46.55.19", "19");
INSERT INTO `wp_rg_form_view` VALUES("31434", "3", "2016-05-23 00:36:46", "157.55.39.29", "456");
INSERT INTO `wp_rg_form_view` VALUES("31435", "10", "2016-05-23 00:36:47", "157.55.39.29", "193");
INSERT INTO `wp_rg_form_view` VALUES("31436", "9", "2016-05-23 00:46:48", "157.55.39.29", "3");
INSERT INTO `wp_rg_form_view` VALUES("31437", "7", "2016-05-23 00:47:08", "157.55.39.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("31438", "3", "2016-05-23 01:09:04", "202.46.52.179", "63");
INSERT INTO `wp_rg_form_view` VALUES("31439", "10", "2016-05-23 01:09:04", "202.46.52.179", "27");
INSERT INTO `wp_rg_form_view` VALUES("31440", "12", "2016-05-23 01:30:17", "154.20.34.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("31441", "3", "2016-05-23 02:07:22", "66.249.79.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("31442", "10", "2016-05-23 02:07:22", "66.249.79.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("31443", "3", "2016-05-23 03:23:58", "46.118.121.215", "14");
INSERT INTO `wp_rg_form_view` VALUES("31444", "10", "2016-05-23 03:24:00", "46.118.121.215", "6");
INSERT INTO `wp_rg_form_view` VALUES("31445", "3", "2016-05-23 04:14:08", "40.77.167.43", "8");
INSERT INTO `wp_rg_form_view` VALUES("31446", "10", "2016-05-23 04:14:10", "40.77.167.43", "3");
INSERT INTO `wp_rg_form_view` VALUES("31447", "3", "2016-05-23 05:12:06", "202.46.56.14", "21");
INSERT INTO `wp_rg_form_view` VALUES("31448", "10", "2016-05-23 05:12:09", "202.46.56.14", "9");
INSERT INTO `wp_rg_form_view` VALUES("31449", "3", "2016-05-23 06:01:56", "64.180.84.212", "56");
INSERT INTO `wp_rg_form_view` VALUES("31450", "10", "2016-05-23 06:02:01", "64.180.84.212", "24");
INSERT INTO `wp_rg_form_view` VALUES("31451", "3", "2016-05-23 08:35:06", "77.75.78.160", "88");
INSERT INTO `wp_rg_form_view` VALUES("31452", "10", "2016-05-23 08:35:09", "77.75.78.160", "36");
INSERT INTO `wp_rg_form_view` VALUES("31453", "1", "2016-05-23 08:47:40", "101.96.11.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("31454", "3", "2016-05-23 09:31:39", "66.249.79.162", "22");
INSERT INTO `wp_rg_form_view` VALUES("31455", "10", "2016-05-23 09:31:39", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("31456", "3", "2016-05-23 10:02:54", "66.249.79.176", "21");
INSERT INTO `wp_rg_form_view` VALUES("31457", "10", "2016-05-23 10:02:54", "66.249.79.176", "9");
INSERT INTO `wp_rg_form_view` VALUES("31458", "3", "2016-05-23 11:12:56", "5.9.145.132", "28");
INSERT INTO `wp_rg_form_view` VALUES("31459", "10", "2016-05-23 11:12:56", "5.9.145.132", "12");
INSERT INTO `wp_rg_form_view` VALUES("31460", "3", "2016-05-23 12:26:44", "157.55.39.238", "50");
INSERT INTO `wp_rg_form_view` VALUES("31461", "10", "2016-05-23 12:26:45", "157.55.39.238", "24");
INSERT INTO `wp_rg_form_view` VALUES("31462", "1", "2016-05-23 12:43:27", "172.245.82.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("31463", "3", "2016-05-23 13:13:21", "66.249.79.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("31464", "10", "2016-05-23 13:13:24", "66.249.79.176", "6");
INSERT INTO `wp_rg_form_view` VALUES("31465", "3", "2016-05-23 14:47:28", "51.255.65.11", "7");
INSERT INTO `wp_rg_form_view` VALUES("31466", "10", "2016-05-23 14:47:29", "51.255.65.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("31467", "3", "2016-05-23 15:09:50", "51.255.65.36", "7");
INSERT INTO `wp_rg_form_view` VALUES("31468", "10", "2016-05-23 15:09:53", "51.255.65.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("31469", "3", "2016-05-23 16:16:32", "62.210.148.91", "21");
INSERT INTO `wp_rg_form_view` VALUES("31470", "10", "2016-05-23 16:16:34", "62.210.148.91", "9");
INSERT INTO `wp_rg_form_view` VALUES("31471", "3", "2016-05-23 17:04:49", "96.54.197.128", "184");
INSERT INTO `wp_rg_form_view` VALUES("31472", "10", "2016-05-23 17:04:49", "96.54.197.128", "79");
INSERT INTO `wp_rg_form_view` VALUES("31473", "3", "2016-05-23 18:06:36", "164.132.161.96", "35");
INSERT INTO `wp_rg_form_view` VALUES("31474", "10", "2016-05-23 18:06:36", "164.132.161.96", "15");
INSERT INTO `wp_rg_form_view` VALUES("31475", "3", "2016-05-23 19:02:07", "202.46.51.183", "35");
INSERT INTO `wp_rg_form_view` VALUES("31476", "10", "2016-05-23 19:02:07", "202.46.51.183", "15");
INSERT INTO `wp_rg_form_view` VALUES("31477", "3", "2016-05-23 20:00:43", "151.80.31.175", "49");
INSERT INTO `wp_rg_form_view` VALUES("31478", "10", "2016-05-23 20:00:43", "151.80.31.175", "21");
INSERT INTO `wp_rg_form_view` VALUES("31479", "1", "2016-05-23 20:13:54", "184.66.44.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("31480", "3", "2016-05-23 22:08:52", "24.108.205.22", "53");
INSERT INTO `wp_rg_form_view` VALUES("31481", "10", "2016-05-23 22:08:55", "24.108.205.22", "21");
INSERT INTO `wp_rg_form_view` VALUES("31482", "3", "2016-05-23 23:38:53", "40.77.167.43", "8");
INSERT INTO `wp_rg_form_view` VALUES("31483", "10", "2016-05-23 23:38:55", "40.77.167.43", "3");
INSERT INTO `wp_rg_form_view` VALUES("31484", "3", "2016-05-24 00:09:41", "220.181.108.146", "77");
INSERT INTO `wp_rg_form_view` VALUES("31485", "10", "2016-05-24 00:09:42", "220.181.108.146", "34");
INSERT INTO `wp_rg_form_view` VALUES("31486", "3", "2016-05-24 01:12:00", "68.180.229.58", "8");
INSERT INTO `wp_rg_form_view` VALUES("31487", "10", "2016-05-24 01:12:02", "68.180.229.58", "4");
INSERT INTO `wp_rg_form_view` VALUES("31488", "3", "2016-05-24 02:31:11", "40.77.167.43", "21");
INSERT INTO `wp_rg_form_view` VALUES("31489", "10", "2016-05-24 02:31:11", "40.77.167.43", "9");
INSERT INTO `wp_rg_form_view` VALUES("31490", "3", "2016-05-24 03:06:16", "164.132.161.62", "29");
INSERT INTO `wp_rg_form_view` VALUES("31491", "10", "2016-05-24 03:06:23", "164.132.161.62", "12");
INSERT INTO `wp_rg_form_view` VALUES("31492", "8", "2016-05-24 03:47:09", "202.46.54.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("31493", "3", "2016-05-24 04:03:35", "188.40.112.210", "49");
INSERT INTO `wp_rg_form_view` VALUES("31494", "10", "2016-05-24 04:03:35", "188.40.112.210", "21");
INSERT INTO `wp_rg_form_view` VALUES("31495", "3", "2016-05-24 05:06:05", "51.255.65.57", "58");
INSERT INTO `wp_rg_form_view` VALUES("31496", "10", "2016-05-24 05:06:06", "51.255.65.57", "25");
INSERT INTO `wp_rg_form_view` VALUES("31497", "3", "2016-05-24 06:01:06", "202.46.53.125", "36");
INSERT INTO `wp_rg_form_view` VALUES("31498", "10", "2016-05-24 06:01:07", "202.46.53.125", "15");
INSERT INTO `wp_rg_form_view` VALUES("31499", "3", "2016-05-24 07:21:23", "40.77.167.43", "7");
INSERT INTO `wp_rg_form_view` VALUES("31500", "10", "2016-05-24 07:21:24", "40.77.167.43", "3");
INSERT INTO `wp_rg_form_view` VALUES("31501", "3", "2016-05-24 08:02:24", "5.153.234.154", "28");
INSERT INTO `wp_rg_form_view` VALUES("31502", "10", "2016-05-24 08:02:24", "5.153.234.154", "12");
INSERT INTO `wp_rg_form_view` VALUES("31503", "3", "2016-05-24 09:00:31", "66.249.79.169", "64");
INSERT INTO `wp_rg_form_view` VALUES("31504", "10", "2016-05-24 09:00:31", "66.249.79.169", "30");
INSERT INTO `wp_rg_form_view` VALUES("31505", "1", "2016-05-24 09:47:06", "77.75.77.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("31506", "3", "2016-05-24 10:01:03", "151.80.31.168", "193");
INSERT INTO `wp_rg_form_view` VALUES("31507", "10", "2016-05-24 10:01:03", "151.80.31.168", "82");
INSERT INTO `wp_rg_form_view` VALUES("31508", "11", "2016-05-24 10:36:59", "136.243.17.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("31509", "12", "2016-05-24 10:37:03", "136.243.17.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("31510", "3", "2016-05-24 11:02:11", "145.132.1.222", "241");
INSERT INTO `wp_rg_form_view` VALUES("31511", "10", "2016-05-24 11:02:11", "145.132.1.222", "106");
INSERT INTO `wp_rg_form_view` VALUES("31512", "11", "2016-05-24 11:02:26", "145.132.1.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("31513", "2", "2016-05-24 11:04:00", "145.132.1.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("31514", "1", "2016-05-24 11:41:55", "195.154.253.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("31515", "3", "2016-05-24 12:23:48", "66.249.79.169", "28");
INSERT INTO `wp_rg_form_view` VALUES("31516", "10", "2016-05-24 12:23:50", "66.249.79.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("31517", "3", "2016-05-24 13:01:25", "24.68.157.118", "28");
INSERT INTO `wp_rg_form_view` VALUES("31518", "10", "2016-05-24 13:01:26", "24.68.157.118", "12");
INSERT INTO `wp_rg_form_view` VALUES("31519", "2", "2016-05-24 13:51:01", "5.62.15.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("31520", "3", "2016-05-24 14:39:26", "202.46.51.18", "29");
INSERT INTO `wp_rg_form_view` VALUES("31521", "10", "2016-05-24 14:39:28", "202.46.51.18", "13");
INSERT INTO `wp_rg_form_view` VALUES("31522", "1", "2016-05-24 15:07:07", "96.50.28.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("31523", "3", "2016-05-24 15:07:07", "96.50.28.131", "105");
INSERT INTO `wp_rg_form_view` VALUES("31524", "10", "2016-05-24 15:07:07", "96.50.28.131", "45");
INSERT INTO `wp_rg_form_view` VALUES("31525", "2", "2016-05-24 15:38:49", "45.32.130.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("31526", "3", "2016-05-24 16:42:58", "142.104.153.28", "112");
INSERT INTO `wp_rg_form_view` VALUES("31527", "10", "2016-05-24 16:43:00", "142.104.153.28", "48");
INSERT INTO `wp_rg_form_view` VALUES("31528", "9", "2016-05-24 16:53:56", "207.46.13.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("31529", "3", "2016-05-24 17:02:49", "77.75.77.101", "21");
INSERT INTO `wp_rg_form_view` VALUES("31530", "10", "2016-05-24 17:02:54", "77.75.77.101", "9");
INSERT INTO `wp_rg_form_view` VALUES("31531", "3", "2016-05-24 18:06:09", "70.66.178.59", "84");
INSERT INTO `wp_rg_form_view` VALUES("31532", "10", "2016-05-24 18:06:10", "70.66.178.59", "36");
INSERT INTO `wp_rg_form_view` VALUES("31533", "3", "2016-05-24 19:01:56", "68.180.229.58", "105");
INSERT INTO `wp_rg_form_view` VALUES("31534", "10", "2016-05-24 19:01:56", "68.180.229.58", "46");
INSERT INTO `wp_rg_form_view` VALUES("31535", "2", "2016-05-24 19:45:00", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("31536", "12", "2016-05-24 19:51:50", "24.108.28.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("31537", "3", "2016-05-24 20:13:43", "173.183.78.232", "37");
INSERT INTO `wp_rg_form_view` VALUES("31538", "10", "2016-05-24 20:13:45", "173.183.78.232", "15");
INSERT INTO `wp_rg_form_view` VALUES("31539", "3", "2016-05-24 21:12:52", "209.52.88.243", "154");
INSERT INTO `wp_rg_form_view` VALUES("31540", "10", "2016-05-24 21:12:58", "209.52.88.243", "66");
INSERT INTO `wp_rg_form_view` VALUES("31541", "2", "2016-05-24 21:32:01", "69.50.234.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("31542", "1", "2016-05-24 21:52:20", "75.157.168.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("31543", "11", "2016-05-24 21:58:32", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("31544", "3", "2016-05-24 22:01:32", "51.255.65.96", "74");
INSERT INTO `wp_rg_form_view` VALUES("31545", "10", "2016-05-24 22:01:32", "51.255.65.96", "30");
INSERT INTO `wp_rg_form_view` VALUES("31546", "1", "2016-05-24 22:26:59", "184.69.183.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("31547", "12", "2016-05-24 22:28:54", "24.108.193.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("31548", "3", "2016-05-24 23:07:47", "190.213.94.120", "77");
INSERT INTO `wp_rg_form_view` VALUES("31549", "10", "2016-05-24 23:07:48", "190.213.94.120", "33");
INSERT INTO `wp_rg_form_view` VALUES("31550", "3", "2016-05-25 00:29:55", "207.46.13.38", "14");
INSERT INTO `wp_rg_form_view` VALUES("31551", "10", "2016-05-25 00:29:56", "207.46.13.38", "6");
INSERT INTO `wp_rg_form_view` VALUES("31552", "3", "2016-05-25 01:02:11", "46.17.97.73", "78");
INSERT INTO `wp_rg_form_view` VALUES("31553", "10", "2016-05-25 01:02:12", "46.17.97.73", "33");
INSERT INTO `wp_rg_form_view` VALUES("31554", "3", "2016-05-25 02:09:07", "66.249.66.78", "108");
INSERT INTO `wp_rg_form_view` VALUES("31555", "10", "2016-05-25 02:09:11", "66.249.66.78", "47");
INSERT INTO `wp_rg_form_view` VALUES("31556", "2", "2016-05-25 02:10:15", "45.32.130.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("31557", "3", "2016-05-25 03:01:43", "128.69.163.151", "87");
INSERT INTO `wp_rg_form_view` VALUES("31558", "10", "2016-05-25 03:01:44", "128.69.163.151", "36");
INSERT INTO `wp_rg_form_view` VALUES("31559", "1", "2016-05-25 03:44:40", "188.210.215.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("31560", "3", "2016-05-25 04:09:27", "51.255.65.20", "93");
INSERT INTO `wp_rg_form_view` VALUES("31561", "10", "2016-05-25 04:09:27", "51.255.65.20", "43");
INSERT INTO `wp_rg_form_view` VALUES("31562", "3", "2016-05-25 05:12:08", "207.46.13.171", "28");
INSERT INTO `wp_rg_form_view` VALUES("31563", "10", "2016-05-25 05:12:08", "207.46.13.171", "12");
INSERT INTO `wp_rg_form_view` VALUES("31564", "3", "2016-05-25 06:06:22", "202.46.54.204", "40");
INSERT INTO `wp_rg_form_view` VALUES("31565", "10", "2016-05-25 06:06:23", "202.46.54.204", "15");
INSERT INTO `wp_rg_form_view` VALUES("31566", "3", "2016-05-25 07:13:48", "66.249.66.81", "36");
INSERT INTO `wp_rg_form_view` VALUES("31567", "10", "2016-05-25 07:13:51", "66.249.66.81", "15");
INSERT INTO `wp_rg_form_view` VALUES("31568", "2", "2016-05-25 08:22:43", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("31569", "3", "2016-05-25 08:22:44", "68.180.229.224", "42");
INSERT INTO `wp_rg_form_view` VALUES("31570", "10", "2016-05-25 08:22:44", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("31571", "12", "2016-05-25 08:53:54", "202.46.57.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("31572", "3", "2016-05-25 09:16:27", "68.180.229.224", "14");
INSERT INTO `wp_rg_form_view` VALUES("31573", "10", "2016-05-25 09:16:31", "68.180.229.224", "7");
INSERT INTO `wp_rg_form_view` VALUES("31574", "3", "2016-05-25 10:19:06", "77.75.76.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("31575", "10", "2016-05-25 10:19:07", "77.75.76.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("31576", "10", "2016-05-25 11:15:35", "157.55.39.154", "10");
INSERT INTO `wp_rg_form_view` VALUES("31577", "3", "2016-05-25 11:15:36", "157.55.39.154", "21");
INSERT INTO `wp_rg_form_view` VALUES("31578", "5", "2016-05-25 12:06:14", "164.132.161.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("31579", "3", "2016-05-25 12:06:16", "164.132.161.44", "65");
INSERT INTO `wp_rg_form_view` VALUES("31580", "10", "2016-05-25 12:06:17", "164.132.161.44", "27");
INSERT INTO `wp_rg_form_view` VALUES("31581", "3", "2016-05-25 13:22:26", "202.46.52.43", "44");
INSERT INTO `wp_rg_form_view` VALUES("31582", "10", "2016-05-25 13:22:29", "202.46.52.43", "18");
INSERT INTO `wp_rg_form_view` VALUES("31583", "3", "2016-05-25 15:01:29", "68.180.229.224", "43");
INSERT INTO `wp_rg_form_view` VALUES("31584", "10", "2016-05-25 15:07:27", "209.52.88.246", "18");
INSERT INTO `wp_rg_form_view` VALUES("31585", "3", "2016-05-25 16:14:57", "77.75.76.164", "57");
INSERT INTO `wp_rg_form_view` VALUES("31586", "10", "2016-05-25 16:15:01", "77.75.76.164", "29");
INSERT INTO `wp_rg_form_view` VALUES("31587", "3", "2016-05-25 17:08:11", "157.55.39.154", "22");
INSERT INTO `wp_rg_form_view` VALUES("31588", "10", "2016-05-25 17:08:13", "157.55.39.154", "9");
INSERT INTO `wp_rg_form_view` VALUES("31589", "1", "2016-05-25 17:44:16", "198.52.240.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("31590", "3", "2016-05-25 18:05:13", "24.68.232.123", "523");
INSERT INTO `wp_rg_form_view` VALUES("31591", "10", "2016-05-25 18:05:19", "24.68.232.123", "240");
INSERT INTO `wp_rg_form_view` VALUES("31592", "9", "2016-05-25 18:42:17", "157.55.39.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("31593", "11", "2016-05-25 18:42:35", "157.55.39.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("31594", "6", "2016-05-25 18:42:50", "207.46.13.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("31595", "3", "2016-05-25 19:01:38", "68.180.229.224", "122");
INSERT INTO `wp_rg_form_view` VALUES("31596", "10", "2016-05-25 19:01:38", "68.180.229.224", "52");
INSERT INTO `wp_rg_form_view` VALUES("31597", "3", "2016-05-25 20:46:44", "199.21.99.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("31598", "10", "2016-05-25 20:46:46", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("31599", "3", "2016-05-25 21:08:19", "68.180.229.224", "43");
INSERT INTO `wp_rg_form_view` VALUES("31600", "10", "2016-05-25 21:08:23", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("31601", "3", "2016-05-25 22:14:33", "68.180.229.224", "77");
INSERT INTO `wp_rg_form_view` VALUES("31602", "10", "2016-05-25 22:14:35", "68.180.229.224", "33");
INSERT INTO `wp_rg_form_view` VALUES("31603", "3", "2016-05-25 23:15:00", "178.137.167.51", "234");
INSERT INTO `wp_rg_form_view` VALUES("31604", "3", "2016-05-25 23:15:00", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31605", "3", "2016-05-25 23:15:00", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31606", "3", "2016-05-25 23:15:00", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31607", "10", "2016-05-25 23:15:02", "178.137.167.51", "96");
INSERT INTO `wp_rg_form_view` VALUES("31608", "10", "2016-05-25 23:15:02", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31609", "10", "2016-05-25 23:15:02", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31610", "10", "2016-05-25 23:15:02", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31611", "3", "2016-05-26 00:06:15", "184.71.11.78", "65");
INSERT INTO `wp_rg_form_view` VALUES("31612", "10", "2016-05-26 00:06:15", "184.71.11.78", "27");
INSERT INTO `wp_rg_form_view` VALUES("31613", "3", "2016-05-26 01:16:47", "68.180.229.224", "106");
INSERT INTO `wp_rg_form_view` VALUES("31614", "10", "2016-05-26 01:18:54", "178.137.87.136", "44");
INSERT INTO `wp_rg_form_view` VALUES("31615", "10", "2016-05-26 01:18:54", "178.137.87.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("31616", "2", "2016-05-26 01:41:14", "223.96.148.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("31617", "3", "2016-05-26 02:24:19", "216.118.150.175", "35");
INSERT INTO `wp_rg_form_view` VALUES("31618", "10", "2016-05-26 02:24:20", "216.118.150.175", "16");
INSERT INTO `wp_rg_form_view` VALUES("31619", "12", "2016-05-26 02:24:58", "216.118.150.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("31620", "3", "2016-05-26 03:03:47", "51.255.65.92", "36");
INSERT INTO `wp_rg_form_view` VALUES("31621", "10", "2016-05-26 03:03:48", "51.255.65.92", "15");
INSERT INTO `wp_rg_form_view` VALUES("31622", "12", "2016-05-26 03:13:17", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("31623", "3", "2016-05-26 04:07:36", "75.157.168.129", "30");
INSERT INTO `wp_rg_form_view` VALUES("31624", "10", "2016-05-26 04:07:38", "75.157.168.129", "12");
INSERT INTO `wp_rg_form_view` VALUES("31625", "3", "2016-05-26 05:01:21", "68.180.229.224", "21");
INSERT INTO `wp_rg_form_view` VALUES("31626", "10", "2016-05-26 05:01:21", "68.180.229.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("31627", "3", "2016-05-26 06:44:12", "202.46.53.14", "22");
INSERT INTO `wp_rg_form_view` VALUES("31628", "10", "2016-05-26 06:44:13", "202.46.53.14", "9");
INSERT INTO `wp_rg_form_view` VALUES("31629", "12", "2016-05-26 06:59:46", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("31630", "3", "2016-05-26 07:10:43", "66.249.75.188", "28");
INSERT INTO `wp_rg_form_view` VALUES("31631", "10", "2016-05-26 07:10:43", "66.249.75.188", "12");
INSERT INTO `wp_rg_form_view` VALUES("31632", "3", "2016-05-26 08:10:32", "66.249.75.172", "66");
INSERT INTO `wp_rg_form_view` VALUES("31633", "10", "2016-05-26 08:10:35", "66.249.75.172", "30");
INSERT INTO `wp_rg_form_view` VALUES("31634", "9", "2016-05-26 08:29:52", "51.255.65.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("31635", "3", "2016-05-26 09:44:00", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("31636", "10", "2016-05-26 09:44:02", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("31637", "3", "2016-05-26 10:06:50", "66.249.75.180", "36");
INSERT INTO `wp_rg_form_view` VALUES("31638", "10", "2016-05-26 10:06:51", "66.249.75.180", "16");
INSERT INTO `wp_rg_form_view` VALUES("31639", "3", "2016-05-26 11:01:17", "68.180.229.224", "29");
INSERT INTO `wp_rg_form_view` VALUES("31640", "10", "2016-05-26 11:01:17", "68.180.229.224", "12");
INSERT INTO `wp_rg_form_view` VALUES("31641", "2", "2016-05-26 12:07:24", "40.77.167.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("31642", "3", "2016-05-26 12:07:26", "40.77.167.91", "28");
INSERT INTO `wp_rg_form_view` VALUES("31643", "10", "2016-05-26 12:07:26", "40.77.167.91", "13");
INSERT INTO `wp_rg_form_view` VALUES("31644", "3", "2016-05-26 13:40:01", "46.118.121.215", "34");
INSERT INTO `wp_rg_form_view` VALUES("31645", "3", "2016-05-26 13:40:01", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("31646", "10", "2016-05-26 13:40:04", "46.118.121.215", "14");
INSERT INTO `wp_rg_form_view` VALUES("31647", "10", "2016-05-26 13:40:04", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("31648", "3", "2016-05-26 14:15:43", "216.118.150.175", "21");
INSERT INTO `wp_rg_form_view` VALUES("31649", "10", "2016-05-26 14:15:45", "216.118.150.175", "10");
INSERT INTO `wp_rg_form_view` VALUES("31650", "11", "2016-05-26 15:21:56", "216.118.150.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("31651", "3", "2016-05-26 15:21:58", "216.118.150.175", "44");
INSERT INTO `wp_rg_form_view` VALUES("31652", "10", "2016-05-26 15:21:58", "216.118.150.175", "18");
INSERT INTO `wp_rg_form_view` VALUES("31653", "3", "2016-05-26 16:59:11", "154.5.211.28", "21");
INSERT INTO `wp_rg_form_view` VALUES("31654", "10", "2016-05-26 16:59:13", "154.5.211.28", "9");
INSERT INTO `wp_rg_form_view` VALUES("31655", "3", "2016-05-26 17:09:37", "207.46.13.27", "200");
INSERT INTO `wp_rg_form_view` VALUES("31656", "10", "2016-05-26 17:09:37", "207.46.13.27", "84");
INSERT INTO `wp_rg_form_view` VALUES("31657", "11", "2016-05-26 17:31:55", "5.9.94.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("31658", "12", "2016-05-26 17:32:01", "5.9.94.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("31659", "3", "2016-05-26 18:20:44", "216.118.150.175", "21");
INSERT INTO `wp_rg_form_view` VALUES("31660", "10", "2016-05-26 18:20:48", "216.118.150.175", "9");
INSERT INTO `wp_rg_form_view` VALUES("31661", "3", "2016-05-26 19:01:39", "68.180.229.224", "92");
INSERT INTO `wp_rg_form_view` VALUES("31662", "10", "2016-05-26 19:01:46", "68.180.229.224", "39");
INSERT INTO `wp_rg_form_view` VALUES("31663", "3", "2016-05-26 20:00:13", "202.46.57.28", "22");
INSERT INTO `wp_rg_form_view` VALUES("31664", "10", "2016-05-26 20:00:13", "202.46.57.28", "9");
INSERT INTO `wp_rg_form_view` VALUES("31665", "3", "2016-05-26 21:24:08", "209.121.249.246", "56");
INSERT INTO `wp_rg_form_view` VALUES("31666", "10", "2016-05-26 21:24:10", "209.121.249.246", "25");
INSERT INTO `wp_rg_form_view` VALUES("31667", "3", "2016-05-26 22:00:06", "96.50.40.3", "85");
INSERT INTO `wp_rg_form_view` VALUES("31668", "10", "2016-05-26 22:00:06", "96.50.40.3", "36");
INSERT INTO `wp_rg_form_view` VALUES("31669", "3", "2016-05-26 23:11:44", "24.108.105.147", "35");
INSERT INTO `wp_rg_form_view` VALUES("31670", "10", "2016-05-26 23:11:44", "24.108.105.147", "16");
INSERT INTO `wp_rg_form_view` VALUES("31671", "3", "2016-05-27 00:11:18", "46.118.121.215", "296");
INSERT INTO `wp_rg_form_view` VALUES("31672", "10", "2016-05-27 00:11:19", "46.118.121.215", "126");
INSERT INTO `wp_rg_form_view` VALUES("31673", "11", "2016-05-27 00:16:09", "145.132.1.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("31674", "12", "2016-05-27 00:16:53", "145.132.1.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("31675", "2", "2016-05-27 00:17:47", "145.132.1.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("31676", "3", "2016-05-27 01:20:03", "216.118.150.175", "7");
INSERT INTO `wp_rg_form_view` VALUES("31677", "10", "2016-05-27 01:20:06", "216.118.150.175", "3");
INSERT INTO `wp_rg_form_view` VALUES("31678", "3", "2016-05-27 02:02:14", "68.180.229.224", "35");
INSERT INTO `wp_rg_form_view` VALUES("31679", "10", "2016-05-27 02:02:16", "68.180.229.224", "15");
INSERT INTO `wp_rg_form_view` VALUES("31680", "3", "2016-05-27 03:29:01", "66.249.65.97", "15");
INSERT INTO `wp_rg_form_view` VALUES("31681", "10", "2016-05-27 03:29:02", "66.249.65.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("31682", "3", "2016-05-27 04:22:06", "216.118.150.175", "43");
INSERT INTO `wp_rg_form_view` VALUES("31683", "10", "2016-05-27 04:22:09", "216.118.150.175", "18");
INSERT INTO `wp_rg_form_view` VALUES("31684", "3", "2016-05-27 05:03:54", "216.118.150.175", "78");
INSERT INTO `wp_rg_form_view` VALUES("31685", "10", "2016-05-27 05:03:54", "216.118.150.175", "33");
INSERT INTO `wp_rg_form_view` VALUES("31686", "3", "2016-05-27 06:16:06", "68.180.229.224", "42");
INSERT INTO `wp_rg_form_view` VALUES("31687", "10", "2016-05-27 06:16:11", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("31688", "10", "2016-05-27 07:38:51", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("31689", "3", "2016-05-27 07:38:52", "68.180.229.224", "21");
INSERT INTO `wp_rg_form_view` VALUES("31690", "11", "2016-05-27 07:39:29", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("31691", "3", "2016-05-27 08:03:13", "199.21.99.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("31692", "10", "2016-05-27 08:03:13", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("31693", "3", "2016-05-27 10:06:43", "68.180.229.224", "58");
INSERT INTO `wp_rg_form_view` VALUES("31694", "10", "2016-05-27 10:06:47", "68.180.229.224", "24");
INSERT INTO `wp_rg_form_view` VALUES("31695", "6", "2016-05-27 10:14:26", "164.132.161.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("31696", "8", "2016-05-27 10:44:47", "202.46.58.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("31697", "3", "2016-05-27 11:02:52", "68.180.229.224", "45");
INSERT INTO `wp_rg_form_view` VALUES("31698", "10", "2016-05-27 11:02:55", "68.180.229.224", "19");
INSERT INTO `wp_rg_form_view` VALUES("31699", "3", "2016-05-27 12:41:26", "207.46.13.183", "14");
INSERT INTO `wp_rg_form_view` VALUES("31700", "10", "2016-05-27 12:41:27", "207.46.13.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("31701", "3", "2016-05-27 13:02:53", "202.46.58.159", "84");
INSERT INTO `wp_rg_form_view` VALUES("31702", "10", "2016-05-27 13:02:53", "202.46.58.159", "38");
INSERT INTO `wp_rg_form_view` VALUES("31703", "3", "2016-05-27 14:02:16", "51.255.65.19", "36");
INSERT INTO `wp_rg_form_view` VALUES("31704", "10", "2016-05-27 14:02:16", "51.255.65.19", "15");
INSERT INTO `wp_rg_form_view` VALUES("31705", "3", "2016-05-27 15:04:19", "64.180.20.212", "50");
INSERT INTO `wp_rg_form_view` VALUES("31706", "10", "2016-05-27 15:04:21", "64.180.20.212", "22");
INSERT INTO `wp_rg_form_view` VALUES("31707", "3", "2016-05-27 16:02:42", "207.46.13.82", "112");
INSERT INTO `wp_rg_form_view` VALUES("31708", "10", "2016-05-27 16:02:43", "207.46.13.82", "48");
INSERT INTO `wp_rg_form_view` VALUES("31709", "3", "2016-05-27 17:15:43", "178.137.87.136", "216");
INSERT INTO `wp_rg_form_view` VALUES("31710", "3", "2016-05-27 17:15:43", "178.137.87.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("31711", "10", "2016-05-27 17:15:49", "178.137.87.136", "92");
INSERT INTO `wp_rg_form_view` VALUES("31712", "10", "2016-05-27 17:15:49", "178.137.87.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("31713", "10", "2016-05-27 17:15:49", "178.137.87.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("31714", "3", "2016-05-27 18:32:21", "207.46.13.151", "410");
INSERT INTO `wp_rg_form_view` VALUES("31715", "10", "2016-05-27 18:32:22", "207.46.13.151", "188");
INSERT INTO `wp_rg_form_view` VALUES("31716", "6", "2016-05-27 18:44:38", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("31717", "9", "2016-05-27 18:46:52", "157.55.39.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("31718", "11", "2016-05-27 18:47:09", "157.55.39.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("31719", "3", "2016-05-27 19:02:37", "24.68.17.97", "51");
INSERT INTO `wp_rg_form_view` VALUES("31720", "10", "2016-05-27 19:02:37", "24.68.17.97", "21");
INSERT INTO `wp_rg_form_view` VALUES("31721", "12", "2016-05-27 19:10:52", "64.114.207.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("31722", "1", "2016-05-27 19:36:22", "104.129.8.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("31723", "3", "2016-05-27 20:03:17", "24.108.29.54", "56");
INSERT INTO `wp_rg_form_view` VALUES("31724", "3", "2016-05-27 20:03:17", "24.108.29.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("31725", "10", "2016-05-27 20:03:28", "24.108.29.54", "23");
INSERT INTO `wp_rg_form_view` VALUES("31726", "10", "2016-05-27 20:03:28", "24.108.29.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("31727", "3", "2016-05-27 21:16:07", "46.118.121.215", "54");
INSERT INTO `wp_rg_form_view` VALUES("31728", "3", "2016-05-27 21:16:07", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("31729", "3", "2016-05-27 21:16:07", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("31730", "10", "2016-05-27 21:16:09", "46.118.121.215", "22");
INSERT INTO `wp_rg_form_view` VALUES("31731", "10", "2016-05-27 21:16:09", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("31732", "10", "2016-05-27 21:16:09", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("31733", "3", "2016-05-27 22:16:52", "68.180.229.224", "209");
INSERT INTO `wp_rg_form_view` VALUES("31734", "10", "2016-05-27 22:16:52", "68.180.229.224", "95");
INSERT INTO `wp_rg_form_view` VALUES("31735", "3", "2016-05-27 23:55:38", "66.249.66.75", "8");
INSERT INTO `wp_rg_form_view` VALUES("31736", "10", "2016-05-27 23:55:39", "66.249.66.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("31737", "3", "2016-05-28 00:11:08", "66.249.66.78", "42");
INSERT INTO `wp_rg_form_view` VALUES("31738", "10", "2016-05-28 00:11:08", "66.249.66.78", "18");
INSERT INTO `wp_rg_form_view` VALUES("31739", "3", "2016-05-28 01:11:05", "68.180.229.224", "43");
INSERT INTO `wp_rg_form_view` VALUES("31740", "10", "2016-05-28 01:11:05", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("31741", "3", "2016-05-28 02:08:05", "178.137.167.51", "55");
INSERT INTO `wp_rg_form_view` VALUES("31742", "3", "2016-05-28 02:08:05", "178.137.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("31743", "10", "2016-05-28 02:08:05", "178.137.167.51", "24");
INSERT INTO `wp_rg_form_view` VALUES("31744", "3", "2016-05-28 04:18:07", "207.46.13.44", "14");
INSERT INTO `wp_rg_form_view` VALUES("31745", "10", "2016-05-28 04:18:09", "207.46.13.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("31746", "3", "2016-05-28 05:09:13", "157.55.39.156", "15");
INSERT INTO `wp_rg_form_view` VALUES("31747", "10", "2016-05-28 05:09:15", "157.55.39.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("31748", "3", "2016-05-28 06:08:31", "66.249.66.78", "22");
INSERT INTO `wp_rg_form_view` VALUES("31749", "10", "2016-05-28 06:08:43", "66.249.66.78", "9");
INSERT INTO `wp_rg_form_view` VALUES("31750", "3", "2016-05-28 07:15:14", "66.249.66.81", "14");
INSERT INTO `wp_rg_form_view` VALUES("31751", "10", "2016-05-28 07:15:16", "66.249.66.81", "6");
INSERT INTO `wp_rg_form_view` VALUES("31752", "3", "2016-05-28 08:14:33", "66.249.66.78", "21");
INSERT INTO `wp_rg_form_view` VALUES("31753", "10", "2016-05-28 08:14:39", "66.249.66.78", "9");
INSERT INTO `wp_rg_form_view` VALUES("31754", "6", "2016-05-28 08:50:56", "40.77.167.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("31755", "3", "2016-05-28 09:14:51", "66.249.66.81", "56");
INSERT INTO `wp_rg_form_view` VALUES("31756", "10", "2016-05-28 09:14:53", "66.249.66.81", "24");
INSERT INTO `wp_rg_form_view` VALUES("31757", "3", "2016-05-28 10:06:54", "66.249.66.75", "35");
INSERT INTO `wp_rg_form_view` VALUES("31758", "10", "2016-05-28 10:06:54", "66.249.66.75", "17");
INSERT INTO `wp_rg_form_view` VALUES("31759", "3", "2016-05-28 11:24:39", "207.46.13.1", "30");
INSERT INTO `wp_rg_form_view` VALUES("31760", "10", "2016-05-28 11:24:42", "207.46.13.1", "12");
INSERT INTO `wp_rg_form_view` VALUES("31761", "3", "2016-05-28 12:05:01", "202.46.51.27", "61");
INSERT INTO `wp_rg_form_view` VALUES("31762", "10", "2016-05-28 12:05:02", "202.46.51.27", "24");
INSERT INTO `wp_rg_form_view` VALUES("31763", "3", "2016-05-28 13:07:40", "68.180.229.224", "22");
INSERT INTO `wp_rg_form_view` VALUES("31764", "10", "2016-05-28 13:07:42", "68.180.229.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("31765", "3", "2016-05-28 15:02:11", "157.55.39.155", "28");
INSERT INTO `wp_rg_form_view` VALUES("31766", "10", "2016-05-28 15:02:12", "157.55.39.155", "13");
INSERT INTO `wp_rg_form_view` VALUES("31767", "6", "2016-05-28 15:09:44", "144.76.153.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("31768", "3", "2016-05-28 16:04:39", "131.253.26.250", "30");
INSERT INTO `wp_rg_form_view` VALUES("31769", "10", "2016-05-28 16:04:40", "131.253.26.250", "12");
INSERT INTO `wp_rg_form_view` VALUES("31770", "1", "2016-05-28 16:30:05", "192.249.67.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("31771", "10", "2016-05-28 17:16:41", "207.46.13.1", "17");
INSERT INTO `wp_rg_form_view` VALUES("31772", "3", "2016-05-28 17:16:51", "207.46.13.1", "35");
INSERT INTO `wp_rg_form_view` VALUES("31773", "3", "2016-05-28 18:08:45", "46.118.121.215", "84");
INSERT INTO `wp_rg_form_view` VALUES("31774", "3", "2016-05-28 18:08:45", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("31775", "10", "2016-05-28 18:08:47", "46.118.121.215", "35");
INSERT INTO `wp_rg_form_view` VALUES("31776", "10", "2016-05-28 18:08:47", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("31777", "6", "2016-05-28 19:04:06", "202.46.58.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("31778", "3", "2016-05-28 19:04:09", "202.46.58.165", "7");
INSERT INTO `wp_rg_form_view` VALUES("31779", "10", "2016-05-28 19:04:09", "202.46.58.165", "3");
INSERT INTO `wp_rg_form_view` VALUES("31780", "10", "2016-05-28 20:04:07", "199.16.156.124", "93");
INSERT INTO `wp_rg_form_view` VALUES("31781", "3", "2016-05-28 20:04:09", "199.16.156.124", "188");
INSERT INTO `wp_rg_form_view` VALUES("31782", "12", "2016-05-28 20:14:19", "24.244.23.223", "3");
INSERT INTO `wp_rg_form_view` VALUES("31783", "10", "2016-05-28 21:19:55", "184.66.254.133", "12");
INSERT INTO `wp_rg_form_view` VALUES("31784", "3", "2016-05-28 21:19:57", "184.66.254.133", "24");
INSERT INTO `wp_rg_form_view` VALUES("31785", "3", "2016-05-28 22:09:15", "66.249.79.169", "300");
INSERT INTO `wp_rg_form_view` VALUES("31786", "10", "2016-05-28 22:09:17", "66.249.79.169", "149");
INSERT INTO `wp_rg_form_view` VALUES("31787", "8", "2016-05-28 22:10:15", "157.55.39.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("31788", "9", "2016-05-28 22:10:46", "40.77.167.60", "3");
INSERT INTO `wp_rg_form_view` VALUES("31789", "7", "2016-05-28 22:11:57", "40.77.167.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("31790", "12", "2016-05-28 22:12:12", "40.77.167.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("31791", "3", "2016-05-28 23:12:15", "151.80.31.182", "17");
INSERT INTO `wp_rg_form_view` VALUES("31792", "10", "2016-05-28 23:12:21", "151.80.31.182", "7");
INSERT INTO `wp_rg_form_view` VALUES("31793", "3", "2016-05-29 00:46:22", "68.180.229.224", "6");
INSERT INTO `wp_rg_form_view` VALUES("31794", "10", "2016-05-29 00:46:24", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("31795", "3", "2016-05-29 01:13:23", "24.108.191.239", "19");
INSERT INTO `wp_rg_form_view` VALUES("31796", "10", "2016-05-29 01:13:27", "24.108.191.239", "6");
INSERT INTO `wp_rg_form_view` VALUES("31797", "3", "2016-05-29 02:30:19", "157.55.39.155", "7");
INSERT INTO `wp_rg_form_view` VALUES("31798", "10", "2016-05-29 02:30:20", "157.55.39.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("31799", "3", "2016-05-29 03:18:17", "157.55.39.155", "55");
INSERT INTO `wp_rg_form_view` VALUES("31800", "10", "2016-05-29 03:18:19", "157.55.39.155", "18");
INSERT INTO `wp_rg_form_view` VALUES("31801", "3", "2016-05-29 04:01:16", "199.21.99.202", "1858");
INSERT INTO `wp_rg_form_view` VALUES("31802", "10", "2016-05-29 04:01:16", "199.21.99.202", "638");
INSERT INTO `wp_rg_form_view` VALUES("31803", "1", "2016-05-29 04:19:03", "107.170.158.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("31804", "11", "2016-05-29 04:19:08", "107.170.158.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("31805", "5", "2016-05-29 04:24:17", "107.170.158.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("31806", "12", "2016-05-29 04:27:26", "107.170.158.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("31807", "6", "2016-05-29 04:34:19", "107.170.158.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("31808", "9", "2016-05-29 04:39:48", "107.170.158.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("31809", "3", "2016-05-29 05:00:05", "107.170.158.118", "1588");
INSERT INTO `wp_rg_form_view` VALUES("31810", "10", "2016-05-29 05:00:06", "107.170.158.118", "541");
INSERT INTO `wp_rg_form_view` VALUES("31811", "2", "2016-05-29 05:30:01", "107.170.158.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("31812", "8", "2016-05-29 05:30:37", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("31813", "3", "2016-05-29 07:08:39", "202.46.48.15", "12");
INSERT INTO `wp_rg_form_view` VALUES("31814", "10", "2016-05-29 07:08:42", "202.46.48.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("31815", "3", "2016-05-29 08:13:25", "183.160.122.104", "274");
INSERT INTO `wp_rg_form_view` VALUES("31816", "3", "2016-05-29 08:13:25", "183.160.122.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("31817", "10", "2016-05-29 08:13:25", "183.160.122.104", "90");
INSERT INTO `wp_rg_form_view` VALUES("31818", "11", "2016-05-29 08:13:27", "183.160.122.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("31819", "2", "2016-05-29 08:13:29", "183.160.122.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("31820", "12", "2016-05-29 08:13:38", "183.160.122.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("31821", "3", "2016-05-29 09:05:57", "207.46.13.167", "13");
INSERT INTO `wp_rg_form_view` VALUES("31822", "10", "2016-05-29 09:06:02", "207.46.13.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("31823", "3", "2016-05-29 10:12:03", "40.77.167.66", "25");
INSERT INTO `wp_rg_form_view` VALUES("31824", "10", "2016-05-29 10:12:04", "40.77.167.66", "8");
INSERT INTO `wp_rg_form_view` VALUES("31825", "3", "2016-05-29 11:21:05", "68.180.229.224", "6");
INSERT INTO `wp_rg_form_view` VALUES("31826", "10", "2016-05-29 11:21:10", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("31827", "3", "2016-05-29 12:11:20", "68.180.229.224", "14");
INSERT INTO `wp_rg_form_view` VALUES("31828", "10", "2016-05-29 12:11:22", "68.180.229.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("31829", "10", "2016-05-29 13:10:18", "199.16.156.124", "9");
INSERT INTO `wp_rg_form_view` VALUES("31830", "3", "2016-05-29 13:10:18", "199.16.156.124", "24");
INSERT INTO `wp_rg_form_view` VALUES("31831", "1", "2016-05-29 13:42:02", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("31832", "3", "2016-05-29 14:16:28", "68.180.229.224", "13");
INSERT INTO `wp_rg_form_view` VALUES("31833", "10", "2016-05-29 14:16:28", "68.180.229.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("31834", "3", "2016-05-29 15:26:53", "66.249.79.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("31835", "10", "2016-05-29 15:26:53", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("31836", "1", "2016-05-29 15:27:34", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("31837", "3", "2016-05-29 16:26:27", "220.181.108.187", "274");
INSERT INTO `wp_rg_form_view` VALUES("31838", "10", "2016-05-29 16:26:27", "220.181.108.187", "90");
INSERT INTO `wp_rg_form_view` VALUES("31839", "2", "2016-05-29 16:31:12", "158.69.225.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("31840", "12", "2016-05-29 16:31:28", "158.69.225.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("31841", "11", "2016-05-29 16:45:49", "95.143.36.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("31842", "3", "2016-05-29 17:09:45", "157.55.39.155", "397");
INSERT INTO `wp_rg_form_view` VALUES("31843", "10", "2016-05-29 17:09:45", "157.55.39.155", "132");
INSERT INTO `wp_rg_form_view` VALUES("31844", "1", "2016-05-29 17:18:27", "67.213.215.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("31845", "2", "2016-05-29 17:19:19", "217.18.245.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31846", "11", "2016-05-29 17:20:21", "71.212.31.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("31847", "12", "2016-05-29 17:22:00", "23.239.166.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("31848", "3", "2016-05-29 18:20:36", "101.96.11.35", "12");
INSERT INTO `wp_rg_form_view` VALUES("31849", "10", "2016-05-29 18:20:36", "101.96.11.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("31850", "10", "2016-05-29 19:38:38", "40.77.167.35", "21");
INSERT INTO `wp_rg_form_view` VALUES("31851", "3", "2016-05-29 19:38:40", "40.77.167.35", "62");
INSERT INTO `wp_rg_form_view` VALUES("31852", "3", "2016-05-29 20:24:36", "199.21.99.202", "43");
INSERT INTO `wp_rg_form_view` VALUES("31853", "10", "2016-05-29 20:24:36", "199.21.99.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("31854", "3", "2016-05-29 21:02:28", "207.46.13.64", "66");
INSERT INTO `wp_rg_form_view` VALUES("31855", "10", "2016-05-29 21:02:28", "207.46.13.64", "22");
INSERT INTO `wp_rg_form_view` VALUES("31856", "3", "2016-05-29 22:22:37", "202.46.57.184", "32");
INSERT INTO `wp_rg_form_view` VALUES("31857", "10", "2016-05-29 22:22:37", "202.46.57.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("31858", "3", "2016-05-29 23:18:22", "68.180.229.224", "31");
INSERT INTO `wp_rg_form_view` VALUES("31859", "10", "2016-05-29 23:18:22", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("31860", "3", "2016-05-30 00:33:12", "66.249.79.176", "39");
INSERT INTO `wp_rg_form_view` VALUES("31861", "10", "2016-05-30 00:33:13", "66.249.79.176", "14");
INSERT INTO `wp_rg_form_view` VALUES("31862", "3", "2016-05-30 01:11:46", "164.132.161.35", "103");
INSERT INTO `wp_rg_form_view` VALUES("31863", "10", "2016-05-30 01:11:46", "164.132.161.35", "34");
INSERT INTO `wp_rg_form_view` VALUES("31864", "10", "2016-05-30 02:42:19", "207.46.13.187", "7");
INSERT INTO `wp_rg_form_view` VALUES("31865", "3", "2016-05-30 02:42:19", "207.46.13.187", "18");
INSERT INTO `wp_rg_form_view` VALUES("31866", "3", "2016-05-30 03:03:34", "68.180.229.224", "48");
INSERT INTO `wp_rg_form_view` VALUES("31867", "10", "2016-05-30 03:03:35", "68.180.229.224", "17");
INSERT INTO `wp_rg_form_view` VALUES("31868", "3", "2016-05-30 04:15:11", "66.249.79.169", "30");
INSERT INTO `wp_rg_form_view` VALUES("31869", "10", "2016-05-30 04:15:11", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("31870", "9", "2016-05-30 04:19:42", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("31871", "3", "2016-05-30 05:33:07", "202.46.51.58", "6");
INSERT INTO `wp_rg_form_view` VALUES("31872", "10", "2016-05-30 05:33:07", "202.46.51.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("31873", "3", "2016-05-30 06:01:32", "66.249.79.162", "67");
INSERT INTO `wp_rg_form_view` VALUES("31874", "10", "2016-05-30 06:01:32", "66.249.79.162", "22");
INSERT INTO `wp_rg_form_view` VALUES("31875", "11", "2016-05-30 06:47:26", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("31876", "3", "2016-05-30 07:05:35", "66.249.79.176", "94");
INSERT INTO `wp_rg_form_view` VALUES("31877", "10", "2016-05-30 07:05:35", "66.249.79.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("31878", "3", "2016-05-30 08:05:09", "66.249.79.176", "38");
INSERT INTO `wp_rg_form_view` VALUES("31879", "10", "2016-05-30 08:05:09", "66.249.79.176", "12");
INSERT INTO `wp_rg_form_view` VALUES("31880", "3", "2016-05-30 09:06:36", "207.46.13.187", "13");
INSERT INTO `wp_rg_form_view` VALUES("31881", "10", "2016-05-30 09:06:36", "207.46.13.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("31882", "3", "2016-05-30 10:48:34", "178.137.167.51", "24");
INSERT INTO `wp_rg_form_view` VALUES("31883", "10", "2016-05-30 10:48:34", "178.137.167.51", "8");
INSERT INTO `wp_rg_form_view` VALUES("31884", "3", "2016-05-30 11:40:30", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("31885", "10", "2016-05-30 11:40:30", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("31886", "3", "2016-05-30 12:05:59", "202.46.52.143", "31");
INSERT INTO `wp_rg_form_view` VALUES("31887", "10", "2016-05-30 12:06:00", "202.46.52.143", "11");
INSERT INTO `wp_rg_form_view` VALUES("31888", "1", "2016-05-30 12:45:22", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("31889", "9", "2016-05-30 13:06:38", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("31890", "3", "2016-05-30 13:06:38", "66.249.79.162", "54");
INSERT INTO `wp_rg_form_view` VALUES("31891", "10", "2016-05-30 13:06:38", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("31892", "3", "2016-05-30 14:00:18", "157.55.39.10", "18");
INSERT INTO `wp_rg_form_view` VALUES("31893", "10", "2016-05-30 14:00:18", "157.55.39.10", "6");
INSERT INTO `wp_rg_form_view` VALUES("31894", "3", "2016-05-30 15:03:02", "87.106.143.171", "120");
INSERT INTO `wp_rg_form_view` VALUES("31895", "10", "2016-05-30 15:03:02", "87.106.143.171", "41");
INSERT INTO `wp_rg_form_view` VALUES("31896", "9", "2016-05-30 15:46:12", "131.137.245.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("31897", "3", "2016-05-30 16:02:41", "178.137.87.136", "142");
INSERT INTO `wp_rg_form_view` VALUES("31898", "10", "2016-05-30 16:02:42", "178.137.87.136", "46");
INSERT INTO `wp_rg_form_view` VALUES("31899", "12", "2016-05-30 16:48:21", "40.77.167.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("31900", "3", "2016-05-30 17:18:42", "40.77.167.68", "37");
INSERT INTO `wp_rg_form_view` VALUES("31901", "10", "2016-05-30 17:18:43", "40.77.167.68", "13");
INSERT INTO `wp_rg_form_view` VALUES("31902", "3", "2016-05-30 18:13:29", "40.77.167.35", "12");
INSERT INTO `wp_rg_form_view` VALUES("31903", "10", "2016-05-30 18:13:29", "40.77.167.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("31904", "3", "2016-05-30 19:14:35", "66.249.79.169", "32");
INSERT INTO `wp_rg_form_view` VALUES("31905", "10", "2016-05-30 19:14:35", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("31906", "10", "2016-05-30 20:01:30", "202.46.53.141", "79");
INSERT INTO `wp_rg_form_view` VALUES("31907", "3", "2016-05-30 20:01:30", "202.46.53.141", "238");
INSERT INTO `wp_rg_form_view` VALUES("31908", "11", "2016-05-30 20:31:52", "104.236.93.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("31909", "12", "2016-05-30 20:31:52", "104.236.93.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("31910", "2", "2016-05-30 20:31:53", "104.236.93.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("31911", "2", "2016-05-30 21:19:46", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("31912", "3", "2016-05-30 21:19:49", "40.77.167.35", "25");
INSERT INTO `wp_rg_form_view` VALUES("31913", "10", "2016-05-30 21:19:49", "40.77.167.35", "8");
INSERT INTO `wp_rg_form_view` VALUES("31914", "3", "2016-05-30 22:02:48", "202.46.48.17", "94");
INSERT INTO `wp_rg_form_view` VALUES("31915", "10", "2016-05-30 22:02:48", "202.46.48.17", "30");
INSERT INTO `wp_rg_form_view` VALUES("31916", "1", "2016-05-30 22:30:00", "223.240.127.49", "2");
INSERT INTO `wp_rg_form_view` VALUES("31917", "3", "2016-05-30 23:10:19", "220.181.108.182", "123");
INSERT INTO `wp_rg_form_view` VALUES("31918", "10", "2016-05-30 23:10:19", "220.181.108.182", "40");
INSERT INTO `wp_rg_form_view` VALUES("31919", "3", "2016-05-31 00:05:16", "40.77.167.75", "37");
INSERT INTO `wp_rg_form_view` VALUES("31920", "10", "2016-05-31 00:05:16", "40.77.167.75", "12");
INSERT INTO `wp_rg_form_view` VALUES("31921", "1", "2016-05-31 00:32:31", "77.75.78.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("31922", "12", "2016-05-31 01:24:23", "40.77.167.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("31923", "3", "2016-05-31 01:24:24", "40.77.167.68", "43");
INSERT INTO `wp_rg_form_view` VALUES("31924", "10", "2016-05-31 01:24:24", "40.77.167.68", "14");
INSERT INTO `wp_rg_form_view` VALUES("31925", "1", "2016-05-31 01:56:17", "54.153.92.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("31926", "3", "2016-05-31 02:04:33", "40.77.167.75", "43");
INSERT INTO `wp_rg_form_view` VALUES("31927", "10", "2016-05-31 02:04:33", "40.77.167.75", "14");
INSERT INTO `wp_rg_form_view` VALUES("31928", "3", "2016-05-31 03:10:46", "66.249.79.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("31929", "10", "2016-05-31 03:10:46", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("31930", "8", "2016-05-31 04:08:01", "157.55.39.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("31931", "3", "2016-05-31 04:08:02", "157.55.39.155", "96");
INSERT INTO `wp_rg_form_view` VALUES("31932", "10", "2016-05-31 04:08:02", "157.55.39.155", "33");
INSERT INTO `wp_rg_form_view` VALUES("31933", "3", "2016-05-31 05:39:18", "157.55.39.155", "39");
INSERT INTO `wp_rg_form_view` VALUES("31934", "10", "2016-05-31 05:39:18", "157.55.39.155", "12");
INSERT INTO `wp_rg_form_view` VALUES("31935", "3", "2016-05-31 06:22:43", "40.77.167.68", "53");
INSERT INTO `wp_rg_form_view` VALUES("31936", "10", "2016-05-31 06:22:43", "40.77.167.68", "18");
INSERT INTO `wp_rg_form_view` VALUES("31937", "3", "2016-05-31 07:03:37", "40.77.167.68", "63");
INSERT INTO `wp_rg_form_view` VALUES("31938", "10", "2016-05-31 07:03:37", "40.77.167.68", "22");
INSERT INTO `wp_rg_form_view` VALUES("31939", "3", "2016-05-31 08:25:06", "40.77.167.75", "38");
INSERT INTO `wp_rg_form_view` VALUES("31940", "10", "2016-05-31 08:25:06", "40.77.167.75", "12");
INSERT INTO `wp_rg_form_view` VALUES("31941", "3", "2016-05-31 09:02:26", "204.79.180.205", "55");
INSERT INTO `wp_rg_form_view` VALUES("31942", "10", "2016-05-31 09:02:26", "204.79.180.205", "18");
INSERT INTO `wp_rg_form_view` VALUES("31943", "3", "2016-05-31 10:03:29", "178.137.167.51", "60");
INSERT INTO `wp_rg_form_view` VALUES("31944", "10", "2016-05-31 10:03:29", "178.137.167.51", "20");
INSERT INTO `wp_rg_form_view` VALUES("31945", "3", "2016-05-31 11:20:05", "208.43.225.85", "74");
INSERT INTO `wp_rg_form_view` VALUES("31946", "10", "2016-05-31 11:20:06", "208.43.225.85", "24");
INSERT INTO `wp_rg_form_view` VALUES("31947", "3", "2016-05-31 12:11:38", "192.243.55.131", "42");
INSERT INTO `wp_rg_form_view` VALUES("31948", "10", "2016-05-31 12:11:39", "192.243.55.131", "12");
INSERT INTO `wp_rg_form_view` VALUES("31949", "3", "2016-05-31 13:01:34", "220.181.108.102", "23");
INSERT INTO `wp_rg_form_view` VALUES("31950", "10", "2016-05-31 13:01:34", "220.181.108.102", "6");
INSERT INTO `wp_rg_form_view` VALUES("31951", "11", "2016-05-31 13:58:01", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("31952", "3", "2016-05-31 14:15:49", "157.55.39.95", "25");
INSERT INTO `wp_rg_form_view` VALUES("31953", "10", "2016-05-31 14:15:49", "157.55.39.95", "8");
INSERT INTO `wp_rg_form_view` VALUES("31954", "10", "2016-05-31 15:10:47", "157.55.39.155", "13");
INSERT INTO `wp_rg_form_view` VALUES("31955", "3", "2016-05-31 15:10:48", "157.55.39.155", "36");
INSERT INTO `wp_rg_form_view` VALUES("31956", "3", "2016-05-31 16:30:15", "68.180.229.224", "26");
INSERT INTO `wp_rg_form_view` VALUES("31957", "10", "2016-05-31 16:30:16", "68.180.229.224", "8");
INSERT INTO `wp_rg_form_view` VALUES("31958", "3", "2016-05-31 17:17:46", "142.233.200.24", "30");
INSERT INTO `wp_rg_form_view` VALUES("31959", "10", "2016-05-31 17:17:46", "142.233.200.24", "10");
INSERT INTO `wp_rg_form_view` VALUES("31960", "3", "2016-05-31 18:10:01", "52.71.155.178", "72");
INSERT INTO `wp_rg_form_view` VALUES("31961", "10", "2016-05-31 18:10:03", "52.71.155.178", "24");
INSERT INTO `wp_rg_form_view` VALUES("31962", "3", "2016-05-31 19:02:33", "209.52.88.93", "78");
INSERT INTO `wp_rg_form_view` VALUES("31963", "10", "2016-05-31 19:02:33", "209.52.88.93", "26");
INSERT INTO `wp_rg_form_view` VALUES("31964", "1", "2016-05-31 19:08:42", "96.50.28.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("31965", "2", "2016-05-31 19:46:04", "99.233.161.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("31966", "3", "2016-05-31 20:10:28", "202.46.57.71", "18");
INSERT INTO `wp_rg_form_view` VALUES("31967", "10", "2016-05-31 20:10:29", "202.46.57.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("31968", "3", "2016-05-31 21:03:17", "207.46.13.169", "464");
INSERT INTO `wp_rg_form_view` VALUES("31969", "10", "2016-05-31 21:03:17", "207.46.13.169", "169");
INSERT INTO `wp_rg_form_view` VALUES("31970", "9", "2016-05-31 21:04:04", "40.77.167.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("31971", "6", "2016-05-31 21:04:35", "157.55.39.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("31972", "5", "2016-05-31 22:33:40", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("31973", "3", "2016-05-31 22:33:40", "68.180.229.224", "6");
INSERT INTO `wp_rg_form_view` VALUES("31974", "10", "2016-05-31 22:33:41", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("31975", "3", "2016-05-31 23:20:27", "195.22.127.196", "19");
INSERT INTO `wp_rg_form_view` VALUES("31976", "10", "2016-05-31 23:20:28", "195.22.127.196", "6");
INSERT INTO `wp_rg_form_view` VALUES("31977", "3", "2016-06-01 00:38:45", "96.54.196.51", "25");
INSERT INTO `wp_rg_form_view` VALUES("31978", "10", "2016-06-01 00:38:45", "96.54.196.51", "8");
INSERT INTO `wp_rg_form_view` VALUES("31979", "3", "2016-06-01 01:14:21", "68.180.229.224", "1830");
INSERT INTO `wp_rg_form_view` VALUES("31980", "10", "2016-06-01 01:14:21", "68.180.229.224", "635");
INSERT INTO `wp_rg_form_view` VALUES("31981", "11", "2016-06-01 01:27:20", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31982", "2", "2016-06-01 01:27:25", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31983", "12", "2016-06-01 01:28:58", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31984", "1", "2016-06-01 01:29:28", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31985", "8", "2016-06-01 01:33:49", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31986", "9", "2016-06-01 01:33:57", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31987", "5", "2016-06-01 01:34:41", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31988", "6", "2016-06-01 01:38:35", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31989", "3", "2016-06-01 02:00:01", "5.9.98.130", "3004");
INSERT INTO `wp_rg_form_view` VALUES("31990", "10", "2016-06-01 02:00:01", "5.9.98.130", "1022");
INSERT INTO `wp_rg_form_view` VALUES("31991", "11", "2016-06-01 02:30:27", "145.130.98.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("31992", "12", "2016-06-01 02:31:03", "145.130.98.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("31993", "2", "2016-06-01 02:31:40", "145.130.98.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("31994", "3", "2016-06-01 03:00:00", "5.9.98.130", "2040");
INSERT INTO `wp_rg_form_view` VALUES("31995", "10", "2016-06-01 03:00:01", "5.9.98.130", "754");
INSERT INTO `wp_rg_form_view` VALUES("31996", "3", "2016-06-01 04:00:00", "5.9.98.130", "4228");
INSERT INTO `wp_rg_form_view` VALUES("31997", "10", "2016-06-01 04:00:00", "5.9.98.130", "1602");
INSERT INTO `wp_rg_form_view` VALUES("31998", "9", "2016-06-01 04:54:00", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("31999", "3", "2016-06-01 05:34:40", "46.118.121.215", "48");
INSERT INTO `wp_rg_form_view` VALUES("32000", "10", "2016-06-01 05:34:41", "46.118.121.215", "15");
INSERT INTO `wp_rg_form_view` VALUES("32001", "10", "2016-06-01 05:34:41", "46.118.121.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("32002", "3", "2016-06-01 06:05:11", "192.243.55.138", "25");
INSERT INTO `wp_rg_form_view` VALUES("32003", "10", "2016-06-01 06:05:11", "192.243.55.138", "12");
INSERT INTO `wp_rg_form_view` VALUES("32004", "3", "2016-06-01 07:13:09", "204.79.180.37", "37");
INSERT INTO `wp_rg_form_view` VALUES("32005", "10", "2016-06-01 07:13:10", "204.79.180.37", "12");
INSERT INTO `wp_rg_form_view` VALUES("32006", "1", "2016-06-01 07:30:42", "54.173.182.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("32007", "3", "2016-06-01 08:17:25", "68.180.229.224", "55");
INSERT INTO `wp_rg_form_view` VALUES("32008", "10", "2016-06-01 08:17:25", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("32009", "3", "2016-06-01 09:01:15", "68.180.229.224", "38");
INSERT INTO `wp_rg_form_view` VALUES("32010", "10", "2016-06-01 09:01:15", "68.180.229.224", "14");
INSERT INTO `wp_rg_form_view` VALUES("32011", "1", "2016-06-01 09:22:41", "5.152.206.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("32012", "3", "2016-06-01 10:32:35", "77.75.78.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("32013", "10", "2016-06-01 10:32:35", "77.75.78.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("32014", "3", "2016-06-01 11:11:17", "66.249.79.162", "36");
INSERT INTO `wp_rg_form_view` VALUES("32015", "10", "2016-06-01 11:11:17", "66.249.79.162", "13");
INSERT INTO `wp_rg_form_view` VALUES("32016", "3", "2016-06-01 12:00:50", "66.249.79.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("32017", "10", "2016-06-01 12:00:51", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("32018", "3", "2016-06-01 13:03:04", "204.79.180.41", "37");
INSERT INTO `wp_rg_form_view` VALUES("32019", "10", "2016-06-01 13:03:04", "204.79.180.41", "12");
INSERT INTO `wp_rg_form_view` VALUES("32020", "3", "2016-06-01 14:09:40", "192.243.55.134", "6");
INSERT INTO `wp_rg_form_view` VALUES("32021", "10", "2016-06-01 14:09:40", "192.243.55.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("32022", "3", "2016-06-01 15:04:27", "66.249.79.169", "42");
INSERT INTO `wp_rg_form_view` VALUES("32023", "10", "2016-06-01 15:04:27", "66.249.79.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("32024", "1", "2016-06-01 15:07:44", "195.154.250.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("32025", "2", "2016-06-01 15:57:54", "202.46.57.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("32026", "3", "2016-06-01 16:05:32", "199.71.240.67", "24");
INSERT INTO `wp_rg_form_view` VALUES("32027", "10", "2016-06-01 16:05:32", "199.71.240.67", "8");
INSERT INTO `wp_rg_form_view` VALUES("32028", "3", "2016-06-01 17:14:06", "205.250.86.162", "72");
INSERT INTO `wp_rg_form_view` VALUES("32029", "10", "2016-06-01 17:14:06", "205.250.86.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("32030", "3", "2016-06-01 18:00:50", "184.66.252.127", "24");
INSERT INTO `wp_rg_form_view` VALUES("32031", "10", "2016-06-01 18:00:50", "184.66.252.127", "8");
INSERT INTO `wp_rg_form_view` VALUES("32032", "3", "2016-06-01 19:06:14", "66.249.79.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("32033", "10", "2016-06-01 19:06:14", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("32034", "3", "2016-06-01 20:04:35", "207.194.133.9", "24");
INSERT INTO `wp_rg_form_view` VALUES("32035", "10", "2016-06-01 20:04:35", "207.194.133.9", "8");
INSERT INTO `wp_rg_form_view` VALUES("32036", "3", "2016-06-01 21:05:12", "68.180.229.224", "86");
INSERT INTO `wp_rg_form_view` VALUES("32037", "10", "2016-06-01 21:05:13", "68.180.229.224", "26");
INSERT INTO `wp_rg_form_view` VALUES("32038", "3", "2016-06-01 22:26:24", "174.129.237.157", "6");
INSERT INTO `wp_rg_form_view` VALUES("32039", "10", "2016-06-01 22:26:24", "174.129.237.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("32040", "12", "2016-06-01 23:11:49", "24.108.184.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("32041", "3", "2016-06-01 23:11:49", "24.108.184.241", "69");
INSERT INTO `wp_rg_form_view` VALUES("32042", "10", "2016-06-01 23:11:49", "24.108.184.241", "22");
INSERT INTO `wp_rg_form_view` VALUES("32043", "2", "2016-06-01 23:15:50", "24.108.184.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("32044", "3", "2016-06-02 00:22:40", "199.21.99.202", "38");
INSERT INTO `wp_rg_form_view` VALUES("32045", "10", "2016-06-02 00:22:41", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("32046", "3", "2016-06-02 01:39:12", "202.46.54.96", "6");
INSERT INTO `wp_rg_form_view` VALUES("32047", "10", "2016-06-02 01:39:13", "202.46.54.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("32048", "1", "2016-06-02 02:26:00", "123.240.17.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32049", "3", "2016-06-02 02:26:00", "123.240.17.157", "54");
INSERT INTO `wp_rg_form_view` VALUES("32050", "10", "2016-06-02 02:26:00", "123.240.17.157", "18");
INSERT INTO `wp_rg_form_view` VALUES("32051", "1", "2016-06-02 03:02:05", "199.60.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("32052", "3", "2016-06-02 03:02:05", "199.60.104.18", "18");
INSERT INTO `wp_rg_form_view` VALUES("32053", "10", "2016-06-02 03:02:05", "199.60.104.18", "6");
INSERT INTO `wp_rg_form_view` VALUES("32054", "3", "2016-06-02 04:03:48", "46.118.121.215", "42");
INSERT INTO `wp_rg_form_view` VALUES("32055", "10", "2016-06-02 04:03:48", "46.118.121.215", "15");
INSERT INTO `wp_rg_form_view` VALUES("32056", "3", "2016-06-02 05:03:05", "70.67.169.7", "30");
INSERT INTO `wp_rg_form_view` VALUES("32057", "10", "2016-06-02 05:03:05", "70.67.169.7", "10");
INSERT INTO `wp_rg_form_view` VALUES("32058", "12", "2016-06-02 05:52:10", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32059", "3", "2016-06-02 06:01:44", "46.185.68.84", "48");
INSERT INTO `wp_rg_form_view` VALUES("32060", "10", "2016-06-02 06:01:45", "46.185.68.84", "16");
INSERT INTO `wp_rg_form_view` VALUES("32061", "3", "2016-06-02 07:30:26", "77.75.78.160", "24");
INSERT INTO `wp_rg_form_view` VALUES("32062", "10", "2016-06-02 07:30:28", "77.75.78.160", "8");
INSERT INTO `wp_rg_form_view` VALUES("32063", "3", "2016-06-02 08:22:37", "220.181.108.141", "39");
INSERT INTO `wp_rg_form_view` VALUES("32064", "10", "2016-06-02 08:22:37", "220.181.108.141", "12");
INSERT INTO `wp_rg_form_view` VALUES("32065", "1", "2016-06-02 08:23:27", "192.227.241.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("32066", "3", "2016-06-02 09:02:24", "144.76.80.151", "18");
INSERT INTO `wp_rg_form_view` VALUES("32067", "10", "2016-06-02 09:02:24", "144.76.80.151", "6");
INSERT INTO `wp_rg_form_view` VALUES("32068", "10", "2016-06-02 10:07:08", "68.180.229.224", "45");
INSERT INTO `wp_rg_form_view` VALUES("32069", "3", "2016-06-02 10:07:08", "68.180.229.224", "134");
INSERT INTO `wp_rg_form_view` VALUES("32070", "1", "2016-06-02 10:24:00", "5.34.246.13", "6");
INSERT INTO `wp_rg_form_view` VALUES("32071", "3", "2016-06-02 11:06:24", "178.137.87.136", "127");
INSERT INTO `wp_rg_form_view` VALUES("32072", "10", "2016-06-02 11:06:24", "178.137.87.136", "42");
INSERT INTO `wp_rg_form_view` VALUES("32073", "2", "2016-06-02 11:08:36", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32074", "1", "2016-06-02 11:29:48", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("32075", "11", "2016-06-02 11:31:40", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32076", "3", "2016-06-02 12:07:22", "51.255.65.85", "26");
INSERT INTO `wp_rg_form_view` VALUES("32077", "10", "2016-06-02 12:07:23", "51.255.65.85", "8");
INSERT INTO `wp_rg_form_view` VALUES("32078", "2", "2016-06-02 12:52:48", "202.46.50.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("32079", "3", "2016-06-02 13:45:25", "68.180.229.224", "12");
INSERT INTO `wp_rg_form_view` VALUES("32080", "10", "2016-06-02 13:45:25", "68.180.229.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("32081", "3", "2016-06-02 14:21:57", "46.118.121.215", "48");
INSERT INTO `wp_rg_form_view` VALUES("32082", "10", "2016-06-02 14:21:57", "46.118.121.215", "16");
INSERT INTO `wp_rg_form_view` VALUES("32083", "3", "2016-06-02 15:06:28", "157.55.39.155", "19");
INSERT INTO `wp_rg_form_view` VALUES("32084", "10", "2016-06-02 15:06:28", "157.55.39.155", "6");
INSERT INTO `wp_rg_form_view` VALUES("32085", "3", "2016-06-02 16:59:12", "24.108.28.160", "24");
INSERT INTO `wp_rg_form_view` VALUES("32086", "10", "2016-06-02 16:59:15", "24.108.28.160", "7");
INSERT INTO `wp_rg_form_view` VALUES("32087", "10", "2016-06-02 16:59:15", "24.108.28.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("32088", "3", "2016-06-02 17:06:58", "24.108.28.160", "60");
INSERT INTO `wp_rg_form_view` VALUES("32089", "10", "2016-06-02 17:06:58", "24.108.28.160", "20");
INSERT INTO `wp_rg_form_view` VALUES("32090", "3", "2016-06-02 18:00:24", "96.51.155.218", "30");
INSERT INTO `wp_rg_form_view` VALUES("32091", "10", "2016-06-02 18:00:24", "96.51.155.218", "12");
INSERT INTO `wp_rg_form_view` VALUES("32092", "3", "2016-06-02 19:13:17", "157.55.39.91", "18");
INSERT INTO `wp_rg_form_view` VALUES("32093", "10", "2016-06-02 19:13:18", "157.55.39.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("32094", "3", "2016-06-02 20:02:42", "45.32.129.200", "302");
INSERT INTO `wp_rg_form_view` VALUES("32095", "10", "2016-06-02 20:02:42", "45.32.129.200", "100");
INSERT INTO `wp_rg_form_view` VALUES("32096", "2", "2016-06-02 20:02:50", "45.32.129.200", "3");
INSERT INTO `wp_rg_form_view` VALUES("32097", "11", "2016-06-02 20:28:59", "24.108.180.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("32098", "3", "2016-06-02 21:00:16", "24.69.132.110", "68");
INSERT INTO `wp_rg_form_view` VALUES("32099", "10", "2016-06-02 21:00:16", "24.69.132.110", "22");
INSERT INTO `wp_rg_form_view` VALUES("32100", "1", "2016-06-02 21:16:35", "24.69.132.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("32101", "11", "2016-06-02 21:34:00", "157.55.39.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("32102", "3", "2016-06-02 22:26:55", "96.50.57.61", "24");
INSERT INTO `wp_rg_form_view` VALUES("32103", "10", "2016-06-02 22:26:55", "96.50.57.61", "8");
INSERT INTO `wp_rg_form_view` VALUES("32104", "3", "2016-06-02 23:58:11", "199.60.104.18", "6");
INSERT INTO `wp_rg_form_view` VALUES("32105", "10", "2016-06-02 23:58:12", "199.60.104.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("32106", "3", "2016-06-03 01:29:39", "157.55.39.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("32107", "10", "2016-06-03 01:29:40", "157.55.39.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("32108", "3", "2016-06-03 02:16:25", "66.249.79.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("32109", "10", "2016-06-03 02:16:25", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("32110", "3", "2016-06-03 03:25:49", "77.75.76.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("32111", "10", "2016-06-03 03:25:49", "77.75.76.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("32112", "3", "2016-06-03 04:13:26", "77.75.77.72", "98");
INSERT INTO `wp_rg_form_view` VALUES("32113", "10", "2016-06-03 04:13:26", "77.75.77.72", "32");
INSERT INTO `wp_rg_form_view` VALUES("32114", "1", "2016-06-03 04:35:04", "104.144.28.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("32115", "3", "2016-06-03 05:12:17", "40.77.167.61", "19");
INSERT INTO `wp_rg_form_view` VALUES("32116", "10", "2016-06-03 05:12:17", "40.77.167.61", "6");
INSERT INTO `wp_rg_form_view` VALUES("32117", "3", "2016-06-03 06:12:32", "99.199.0.86", "114");
INSERT INTO `wp_rg_form_view` VALUES("32118", "10", "2016-06-03 06:12:33", "99.199.0.86", "38");
INSERT INTO `wp_rg_form_view` VALUES("32119", "2", "2016-06-03 06:28:40", "45.32.129.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("32120", "3", "2016-06-03 07:04:49", "46.185.68.84", "300");
INSERT INTO `wp_rg_form_view` VALUES("32121", "10", "2016-06-03 07:04:49", "46.185.68.84", "99");
INSERT INTO `wp_rg_form_view` VALUES("32122", "2", "2016-06-03 07:22:43", "174.127.133.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("32123", "12", "2016-06-03 07:28:41", "174.127.133.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("32124", "3", "2016-06-03 08:00:11", "174.127.133.40", "92");
INSERT INTO `wp_rg_form_view` VALUES("32125", "10", "2016-06-03 08:00:11", "174.127.133.40", "35");
INSERT INTO `wp_rg_form_view` VALUES("32126", "3", "2016-06-03 09:06:40", "66.249.79.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("32127", "10", "2016-06-03 09:06:40", "66.249.79.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("32128", "3", "2016-06-03 10:08:04", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("32129", "10", "2016-06-03 10:08:04", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("32130", "12", "2016-06-03 10:35:22", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32131", "3", "2016-06-03 11:07:02", "68.180.229.224", "32");
INSERT INTO `wp_rg_form_view` VALUES("32132", "10", "2016-06-03 11:07:03", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("32133", "3", "2016-06-03 12:05:32", "184.66.32.165", "24");
INSERT INTO `wp_rg_form_view` VALUES("32134", "10", "2016-06-03 12:05:32", "184.66.32.165", "8");
INSERT INTO `wp_rg_form_view` VALUES("32135", "8", "2016-06-03 12:06:42", "40.77.167.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("32136", "3", "2016-06-03 13:43:30", "202.46.48.145", "13");
INSERT INTO `wp_rg_form_view` VALUES("32137", "10", "2016-06-03 13:43:31", "202.46.48.145", "4");
INSERT INTO `wp_rg_form_view` VALUES("32138", "3", "2016-06-03 14:50:26", "202.46.53.176", "6");
INSERT INTO `wp_rg_form_view` VALUES("32139", "10", "2016-06-03 14:50:26", "202.46.53.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("32140", "3", "2016-06-03 15:39:09", "99.199.1.80", "7");
INSERT INTO `wp_rg_form_view` VALUES("32141", "10", "2016-06-03 15:39:11", "99.199.1.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("32142", "3", "2016-06-03 16:06:51", "77.75.78.160", "48");
INSERT INTO `wp_rg_form_view` VALUES("32143", "10", "2016-06-03 16:06:51", "77.75.78.160", "16");
INSERT INTO `wp_rg_form_view` VALUES("32144", "3", "2016-06-03 17:07:55", "184.69.3.198", "13");
INSERT INTO `wp_rg_form_view` VALUES("32145", "10", "2016-06-03 17:07:57", "184.69.3.198", "4");
INSERT INTO `wp_rg_form_view` VALUES("32146", "3", "2016-06-03 18:05:06", "46.185.68.84", "36");
INSERT INTO `wp_rg_form_view` VALUES("32147", "10", "2016-06-03 18:05:06", "46.185.68.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("32148", "3", "2016-06-03 19:08:12", "77.75.76.170", "78");
INSERT INTO `wp_rg_form_view` VALUES("32149", "10", "2016-06-03 19:08:16", "77.75.76.170", "26");
INSERT INTO `wp_rg_form_view` VALUES("32150", "11", "2016-06-03 19:20:16", "70.75.241.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("32151", "3", "2016-06-03 20:13:04", "99.199.0.86", "78");
INSERT INTO `wp_rg_form_view` VALUES("32152", "10", "2016-06-03 20:13:07", "99.199.0.86", "26");
INSERT INTO `wp_rg_form_view` VALUES("32153", "11", "2016-06-03 20:21:51", "52.71.155.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("32154", "5", "2016-06-03 20:33:34", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("32155", "3", "2016-06-03 21:01:07", "40.77.167.31", "424");
INSERT INTO `wp_rg_form_view` VALUES("32156", "10", "2016-06-03 21:01:07", "40.77.167.31", "140");
INSERT INTO `wp_rg_form_view` VALUES("32157", "9", "2016-06-03 21:01:19", "40.77.167.31", "3");
INSERT INTO `wp_rg_form_view` VALUES("32158", "8", "2016-06-03 21:01:39", "40.77.167.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("32159", "5", "2016-06-03 21:02:01", "40.77.167.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("32160", "12", "2016-06-03 21:02:28", "40.77.167.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("32161", "7", "2016-06-03 21:02:54", "40.77.167.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("32162", "3", "2016-06-03 22:07:05", "207.46.13.191", "146");
INSERT INTO `wp_rg_form_view` VALUES("32163", "10", "2016-06-03 22:07:06", "207.46.13.191", "48");
INSERT INTO `wp_rg_form_view` VALUES("32164", "1", "2016-06-03 22:32:00", "82.211.50.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("32165", "11", "2016-06-03 22:36:25", "13.82.27.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("32166", "2", "2016-06-03 22:36:27", "13.82.27.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("32167", "3", "2016-06-03 23:45:11", "77.75.78.166", "12");
INSERT INTO `wp_rg_form_view` VALUES("32168", "10", "2016-06-03 23:45:11", "77.75.78.166", "4");
INSERT INTO `wp_rg_form_view` VALUES("32169", "9", "2016-06-04 00:28:23", "51.255.65.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("32170", "3", "2016-06-04 00:28:23", "51.255.65.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("32171", "10", "2016-06-04 00:28:23", "51.255.65.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("32172", "3", "2016-06-04 01:01:58", "40.77.167.41", "30");
INSERT INTO `wp_rg_form_view` VALUES("32173", "10", "2016-06-04 01:01:58", "40.77.167.41", "10");
INSERT INTO `wp_rg_form_view` VALUES("32174", "3", "2016-06-04 02:14:35", "68.180.229.224", "30");
INSERT INTO `wp_rg_form_view` VALUES("32175", "10", "2016-06-04 02:14:35", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("32176", "1", "2016-06-04 02:18:56", "23.105.159.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("32177", "8", "2016-06-04 04:08:11", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("32178", "3", "2016-06-04 04:08:13", "66.249.79.169", "42");
INSERT INTO `wp_rg_form_view` VALUES("32179", "10", "2016-06-04 04:08:14", "66.249.79.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("32180", "12", "2016-06-04 05:08:01", "40.77.167.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("32181", "3", "2016-06-04 05:08:01", "40.77.167.61", "395");
INSERT INTO `wp_rg_form_view` VALUES("32182", "10", "2016-06-04 05:08:01", "40.77.167.61", "132");
INSERT INTO `wp_rg_form_view` VALUES("32183", "11", "2016-06-04 05:35:38", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("32184", "2", "2016-06-04 05:35:42", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("32185", "1", "2016-06-04 05:38:10", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("32186", "3", "2016-06-04 06:14:23", "77.75.78.160", "36");
INSERT INTO `wp_rg_form_view` VALUES("32187", "10", "2016-06-04 06:14:24", "77.75.78.160", "12");
INSERT INTO `wp_rg_form_view` VALUES("32188", "3", "2016-06-04 07:00:58", "68.146.244.134", "24");
INSERT INTO `wp_rg_form_view` VALUES("32189", "10", "2016-06-04 07:00:58", "68.146.244.134", "8");
INSERT INTO `wp_rg_form_view` VALUES("32190", "11", "2016-06-04 07:07:46", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("32191", "2", "2016-06-04 07:45:38", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("32192", "3", "2016-06-04 08:13:40", "24.68.33.174", "110");
INSERT INTO `wp_rg_form_view` VALUES("32193", "10", "2016-06-04 08:13:40", "24.68.33.174", "36");
INSERT INTO `wp_rg_form_view` VALUES("32194", "11", "2016-06-04 08:15:50", "130.211.119.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("32195", "2", "2016-06-04 08:15:52", "130.211.119.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("32196", "3", "2016-06-04 09:02:12", "202.46.54.168", "31");
INSERT INTO `wp_rg_form_view` VALUES("32197", "10", "2016-06-04 09:02:12", "202.46.54.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("32198", "1", "2016-06-04 09:18:05", "195.154.250.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("32199", "1", "2016-06-04 10:03:32", "192.99.166.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("32200", "3", "2016-06-04 10:03:32", "192.99.166.236", "13");
INSERT INTO `wp_rg_form_view` VALUES("32201", "10", "2016-06-04 10:03:32", "192.99.166.236", "4");
INSERT INTO `wp_rg_form_view` VALUES("32202", "3", "2016-06-04 11:13:55", "130.185.155.82", "12");
INSERT INTO `wp_rg_form_view` VALUES("32203", "10", "2016-06-04 11:13:55", "130.185.155.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("32204", "3", "2016-06-04 12:03:46", "68.180.229.224", "20");
INSERT INTO `wp_rg_form_view` VALUES("32205", "10", "2016-06-04 12:03:46", "68.180.229.224", "6");
INSERT INTO `wp_rg_form_view` VALUES("32206", "3", "2016-06-04 13:03:09", "207.46.13.125", "19");
INSERT INTO `wp_rg_form_view` VALUES("32207", "10", "2016-06-04 13:03:09", "207.46.13.125", "6");
INSERT INTO `wp_rg_form_view` VALUES("32208", "10", "2016-06-04 14:12:20", "207.46.13.5", "3");
INSERT INTO `wp_rg_form_view` VALUES("32209", "3", "2016-06-04 14:12:20", "207.46.13.5", "6");
INSERT INTO `wp_rg_form_view` VALUES("32210", "3", "2016-06-04 15:03:41", "5.9.89.170", "122");
INSERT INTO `wp_rg_form_view` VALUES("32211", "10", "2016-06-04 15:03:41", "5.9.89.170", "40");
INSERT INTO `wp_rg_form_view` VALUES("32212", "12", "2016-06-04 15:29:01", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32213", "3", "2016-06-04 16:07:31", "174.129.237.157", "102");
INSERT INTO `wp_rg_form_view` VALUES("32214", "10", "2016-06-04 16:07:31", "174.129.237.157", "34");
INSERT INTO `wp_rg_form_view` VALUES("32215", "3", "2016-06-04 17:16:32", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("32216", "10", "2016-06-04 17:16:34", "68.180.229.224", "6");
INSERT INTO `wp_rg_form_view` VALUES("32217", "3", "2016-06-04 18:16:50", "157.55.39.2", "39");
INSERT INTO `wp_rg_form_view` VALUES("32218", "10", "2016-06-04 18:16:51", "157.55.39.2", "13");
INSERT INTO `wp_rg_form_view` VALUES("32219", "3", "2016-06-04 19:02:18", "178.137.19.16", "48");
INSERT INTO `wp_rg_form_view` VALUES("32220", "10", "2016-06-04 19:02:18", "178.137.19.16", "17");
INSERT INTO `wp_rg_form_view` VALUES("32221", "10", "2016-06-04 20:02:11", "157.55.39.2", "29");
INSERT INTO `wp_rg_form_view` VALUES("32222", "3", "2016-06-04 20:02:11", "157.55.39.2", "79");
INSERT INTO `wp_rg_form_view` VALUES("32223", "3", "2016-06-04 21:18:50", "202.46.54.90", "24");
INSERT INTO `wp_rg_form_view` VALUES("32224", "10", "2016-06-04 21:18:54", "202.46.54.90", "8");
INSERT INTO `wp_rg_form_view` VALUES("32225", "3", "2016-06-04 22:06:49", "68.180.229.224", "224");
INSERT INTO `wp_rg_form_view` VALUES("32226", "10", "2016-06-04 22:06:49", "68.180.229.224", "74");
INSERT INTO `wp_rg_form_view` VALUES("32227", "11", "2016-06-04 22:54:48", "79.159.251.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("32228", "12", "2016-06-04 22:55:24", "79.159.251.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("32229", "2", "2016-06-04 22:56:04", "79.159.251.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("32230", "10", "2016-06-04 23:24:26", "40.77.167.87", "5");
INSERT INTO `wp_rg_form_view` VALUES("32231", "3", "2016-06-04 23:24:26", "40.77.167.87", "12");
INSERT INTO `wp_rg_form_view` VALUES("32232", "2", "2016-06-05 00:04:23", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32233", "3", "2016-06-05 00:04:23", "68.180.229.224", "95");
INSERT INTO `wp_rg_form_view` VALUES("32234", "10", "2016-06-05 00:04:23", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("32235", "6", "2016-06-05 00:17:25", "136.243.17.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("32236", "10", "2016-06-05 01:06:54", "202.46.48.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("32237", "3", "2016-06-05 01:06:54", "202.46.48.149", "10");
INSERT INTO `wp_rg_form_view` VALUES("32238", "10", "2016-06-05 02:13:52", "202.46.52.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("32239", "3", "2016-06-05 02:13:52", "202.46.52.175", "10");
INSERT INTO `wp_rg_form_view` VALUES("32240", "3", "2016-06-05 03:17:07", "24.68.17.97", "21");
INSERT INTO `wp_rg_form_view` VALUES("32241", "10", "2016-06-05 03:17:07", "24.68.17.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("32242", "12", "2016-06-05 03:17:31", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("32243", "3", "2016-06-05 04:20:33", "40.77.167.31", "16");
INSERT INTO `wp_rg_form_view` VALUES("32244", "10", "2016-06-05 04:20:33", "40.77.167.31", "3");
INSERT INTO `wp_rg_form_view` VALUES("32245", "10", "2016-06-05 05:05:32", "46.118.125.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("32246", "3", "2016-06-05 05:05:32", "46.118.125.82", "20");
INSERT INTO `wp_rg_form_view` VALUES("32247", "3", "2016-06-05 07:07:41", "75.156.75.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("32248", "10", "2016-06-05 07:07:42", "75.156.75.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("32249", "10", "2016-06-05 08:11:12", "66.249.79.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("32250", "3", "2016-06-05 08:11:13", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("32251", "6", "2016-06-05 09:09:14", "202.46.53.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("32252", "10", "2016-06-05 09:09:14", "202.46.53.167", "3");
INSERT INTO `wp_rg_form_view` VALUES("32253", "3", "2016-06-05 09:09:14", "202.46.53.167", "15");
INSERT INTO `wp_rg_form_view` VALUES("32254", "10", "2016-06-05 10:13:57", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("32255", "3", "2016-06-05 10:13:57", "66.249.79.162", "22");
INSERT INTO `wp_rg_form_view` VALUES("32256", "10", "2016-06-05 11:17:48", "68.180.229.224", "7");
INSERT INTO `wp_rg_form_view` VALUES("32257", "3", "2016-06-05 11:17:49", "68.180.229.224", "37");
INSERT INTO `wp_rg_form_view` VALUES("32258", "3", "2016-06-05 12:09:13", "68.180.229.224", "16");
INSERT INTO `wp_rg_form_view` VALUES("32259", "10", "2016-06-05 12:09:14", "68.180.229.224", "3");
INSERT INTO `wp_rg_form_view` VALUES("32260", "10", "2016-06-05 13:36:38", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("32261", "3", "2016-06-05 13:36:38", "66.249.79.162", "10");
INSERT INTO `wp_rg_form_view` VALUES("32262", "1", "2016-06-05 13:42:11", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("32263", "10", "2016-06-05 14:22:40", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("32264", "3", "2016-06-05 14:22:41", "68.180.229.224", "50");
INSERT INTO `wp_rg_form_view` VALUES("32265", "10", "2016-06-05 15:07:16", "207.46.13.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("32266", "3", "2016-06-05 15:07:17", "207.46.13.58", "25");
INSERT INTO `wp_rg_form_view` VALUES("32267", "10", "2016-06-05 16:05:42", "202.46.48.99", "5");
INSERT INTO `wp_rg_form_view` VALUES("32268", "3", "2016-06-05 16:05:42", "202.46.48.99", "26");
INSERT INTO `wp_rg_form_view` VALUES("32269", "10", "2016-06-05 17:04:37", "199.59.148.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("32270", "3", "2016-06-05 17:04:37", "199.59.148.210", "15");
INSERT INTO `wp_rg_form_view` VALUES("32271", "10", "2016-06-05 18:01:15", "96.50.3.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("32272", "3", "2016-06-05 18:01:15", "96.50.3.227", "10");
INSERT INTO `wp_rg_form_view` VALUES("32273", "10", "2016-06-05 19:20:07", "66.249.79.162", "63");
INSERT INTO `wp_rg_form_view` VALUES("32274", "3", "2016-06-05 19:20:12", "66.249.79.162", "315");
INSERT INTO `wp_rg_form_view` VALUES("32275", "9", "2016-06-05 19:30:03", "207.46.13.136", "3");
INSERT INTO `wp_rg_form_view` VALUES("32276", "12", "2016-06-05 19:30:09", "207.46.13.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("32277", "7", "2016-06-05 19:30:34", "207.46.13.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("32278", "8", "2016-06-05 19:31:59", "207.46.13.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("32279", "5", "2016-06-05 19:32:18", "207.46.13.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("32280", "10", "2016-06-05 20:47:10", "77.75.79.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("32281", "3", "2016-06-05 20:47:17", "77.75.79.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("32282", "10", "2016-06-05 21:08:47", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("32283", "3", "2016-06-05 21:08:48", "66.249.79.162", "41");
INSERT INTO `wp_rg_form_view` VALUES("32284", "9", "2016-06-05 21:38:26", "157.55.39.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("32285", "1", "2016-06-05 21:55:36", "58.213.41.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("32286", "10", "2016-06-05 22:27:01", "96.54.244.255", "17");
INSERT INTO `wp_rg_form_view` VALUES("32287", "3", "2016-06-05 22:27:01", "96.54.244.255", "85");
INSERT INTO `wp_rg_form_view` VALUES("32288", "10", "2016-06-05 23:06:10", "178.137.90.153", "5");
INSERT INTO `wp_rg_form_view` VALUES("32289", "3", "2016-06-05 23:06:10", "178.137.90.153", "25");
INSERT INTO `wp_rg_form_view` VALUES("32290", "3", "2016-06-06 00:30:33", "66.249.79.162", "26");
INSERT INTO `wp_rg_form_view` VALUES("32291", "10", "2016-06-06 00:30:35", "66.249.79.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("32292", "10", "2016-06-06 01:10:04", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("32293", "3", "2016-06-06 01:10:04", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("32294", "3", "2016-06-06 02:00:32", "207.46.13.58", "38");
INSERT INTO `wp_rg_form_view` VALUES("32295", "10", "2016-06-06 02:00:32", "207.46.13.58", "7");
INSERT INTO `wp_rg_form_view` VALUES("32296", "10", "2016-06-06 03:08:49", "164.132.161.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("32297", "3", "2016-06-06 03:08:50", "164.132.161.84", "5");
INSERT INTO `wp_rg_form_view` VALUES("32298", "3", "2016-06-06 04:01:18", "68.180.229.224", "33");
INSERT INTO `wp_rg_form_view` VALUES("32299", "10", "2016-06-06 04:17:28", "154.5.208.128", "7");
INSERT INTO `wp_rg_form_view` VALUES("32300", "3", "2016-06-06 05:25:43", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("32301", "10", "2016-06-06 05:25:44", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("32302", "1", "2016-06-06 05:36:47", "123.240.17.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32303", "10", "2016-06-06 06:28:55", "216.232.150.26", "5");
INSERT INTO `wp_rg_form_view` VALUES("32304", "3", "2016-06-06 06:28:57", "216.232.150.26", "24");
INSERT INTO `wp_rg_form_view` VALUES("32305", "3", "2016-06-06 06:28:57", "216.232.150.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("32306", "1", "2016-06-06 07:10:35", "107.189.36.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("32307", "10", "2016-06-06 07:10:35", "107.189.36.6", "7");
INSERT INTO `wp_rg_form_view` VALUES("32308", "3", "2016-06-06 07:10:35", "107.189.36.6", "36");
INSERT INTO `wp_rg_form_view` VALUES("32309", "10", "2016-06-06 08:38:36", "51.255.65.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("32310", "3", "2016-06-06 08:38:36", "51.255.65.63", "5");
INSERT INTO `wp_rg_form_view` VALUES("32311", "10", "2016-06-06 09:21:02", "178.137.90.153", "7");
INSERT INTO `wp_rg_form_view` VALUES("32312", "3", "2016-06-06 09:21:02", "178.137.90.153", "34");
INSERT INTO `wp_rg_form_view` VALUES("32313", "3", "2016-06-06 09:21:02", "178.137.90.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("32314", "10", "2016-06-06 10:00:57", "77.75.77.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("32315", "3", "2016-06-06 10:00:57", "77.75.77.62", "23");
INSERT INTO `wp_rg_form_view` VALUES("32316", "3", "2016-06-06 11:15:40", "68.180.229.224", "21");
INSERT INTO `wp_rg_form_view` VALUES("32317", "10", "2016-06-06 11:15:41", "68.180.229.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("32318", "1", "2016-06-06 11:35:27", "123.240.17.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32319", "3", "2016-06-06 12:03:00", "157.55.39.73", "41");
INSERT INTO `wp_rg_form_view` VALUES("32320", "10", "2016-06-06 12:03:01", "157.55.39.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("32321", "3", "2016-06-06 13:14:33", "68.180.229.224", "46");
INSERT INTO `wp_rg_form_view` VALUES("32322", "10", "2016-06-06 13:14:33", "68.180.229.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("32323", "10", "2016-06-06 14:19:24", "66.249.69.250", "4");
INSERT INTO `wp_rg_form_view` VALUES("32324", "3", "2016-06-06 14:19:24", "66.249.69.250", "21");
INSERT INTO `wp_rg_form_view` VALUES("32325", "10", "2016-06-06 15:08:20", "99.199.1.80", "24");
INSERT INTO `wp_rg_form_view` VALUES("32326", "3", "2016-06-06 15:08:20", "99.199.1.80", "75");
INSERT INTO `wp_rg_form_view` VALUES("32327", "10", "2016-06-06 16:02:42", "66.249.69.250", "9");
INSERT INTO `wp_rg_form_view` VALUES("32328", "3", "2016-06-06 16:02:42", "66.249.69.250", "45");
INSERT INTO `wp_rg_form_view` VALUES("32329", "11", "2016-06-06 16:47:01", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32330", "9", "2016-06-06 17:23:05", "207.46.13.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("32331", "10", "2016-06-06 17:23:06", "207.46.13.131", "12");
INSERT INTO `wp_rg_form_view` VALUES("32332", "3", "2016-06-06 17:23:06", "207.46.13.131", "64");
INSERT INTO `wp_rg_form_view` VALUES("32333", "10", "2016-06-06 18:00:10", "202.46.57.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("32334", "3", "2016-06-06 18:00:10", "202.46.57.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("32335", "10", "2016-06-06 19:00:35", "77.75.79.62", "8");
INSERT INTO `wp_rg_form_view` VALUES("32336", "3", "2016-06-06 19:00:35", "77.75.79.62", "42");
INSERT INTO `wp_rg_form_view` VALUES("32337", "10", "2016-06-06 20:10:03", "68.180.229.224", "3");
INSERT INTO `wp_rg_form_view` VALUES("32338", "3", "2016-06-06 20:10:04", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("32339", "10", "2016-06-06 21:30:50", "68.180.229.224", "17");
INSERT INTO `wp_rg_form_view` VALUES("32340", "3", "2016-06-06 21:30:52", "68.180.229.224", "85");
INSERT INTO `wp_rg_form_view` VALUES("32341", "10", "2016-06-06 22:16:01", "207.6.162.114", "9");
INSERT INTO `wp_rg_form_view` VALUES("32342", "3", "2016-06-06 22:16:02", "207.6.162.114", "46");
INSERT INTO `wp_rg_form_view` VALUES("32343", "12", "2016-06-06 22:20:14", "207.6.162.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("32344", "10", "2016-06-06 23:03:45", "183.91.33.76", "15");
INSERT INTO `wp_rg_form_view` VALUES("32345", "3", "2016-06-06 23:03:46", "183.91.33.76", "71");
INSERT INTO `wp_rg_form_view` VALUES("32346", "10", "2016-06-07 00:04:21", "66.249.75.37", "8");
INSERT INTO `wp_rg_form_view` VALUES("32347", "3", "2016-06-07 00:04:21", "66.249.75.37", "40");
INSERT INTO `wp_rg_form_view` VALUES("32348", "11", "2016-06-07 00:18:17", "77.75.78.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("32349", "3", "2016-06-07 01:24:23", "77.75.78.172", "30");
INSERT INTO `wp_rg_form_view` VALUES("32350", "10", "2016-06-07 01:24:23", "77.75.78.172", "5");
INSERT INTO `wp_rg_form_view` VALUES("32351", "10", "2016-06-07 02:00:50", "52.71.155.178", "4");
INSERT INTO `wp_rg_form_view` VALUES("32352", "3", "2016-06-07 02:00:50", "52.71.155.178", "20");
INSERT INTO `wp_rg_form_view` VALUES("32353", "10", "2016-06-07 03:21:26", "157.55.39.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("32354", "3", "2016-06-07 03:21:27", "157.55.39.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("32355", "10", "2016-06-07 04:33:15", "164.132.161.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("32356", "3", "2016-06-07 04:33:15", "164.132.161.38", "10");
INSERT INTO `wp_rg_form_view` VALUES("32357", "1", "2016-06-07 04:39:03", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("32358", "10", "2016-06-07 05:11:36", "154.20.91.143", "13");
INSERT INTO `wp_rg_form_view` VALUES("32359", "10", "2016-06-07 05:11:36", "154.20.91.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("32360", "3", "2016-06-07 05:11:45", "154.20.91.143", "69");
INSERT INTO `wp_rg_form_view` VALUES("32361", "3", "2016-06-07 05:11:45", "154.20.91.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("32362", "10", "2016-06-07 06:03:35", "66.249.75.53", "11");
INSERT INTO `wp_rg_form_view` VALUES("32363", "3", "2016-06-07 06:03:37", "66.249.75.53", "56");
INSERT INTO `wp_rg_form_view` VALUES("32364", "12", "2016-06-07 07:03:16", "66.249.75.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("32365", "10", "2016-06-07 07:03:17", "66.249.75.37", "7");
INSERT INTO `wp_rg_form_view` VALUES("32366", "3", "2016-06-07 07:03:17", "66.249.75.37", "39");
INSERT INTO `wp_rg_form_view` VALUES("32367", "10", "2016-06-07 08:19:55", "77.75.76.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("32368", "3", "2016-06-07 08:19:56", "77.75.76.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("32369", "8", "2016-06-07 08:54:35", "151.80.31.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("32370", "10", "2016-06-07 09:24:55", "207.46.13.29", "6");
INSERT INTO `wp_rg_form_view` VALUES("32371", "3", "2016-06-07 09:24:57", "207.46.13.29", "30");
INSERT INTO `wp_rg_form_view` VALUES("32372", "10", "2016-06-07 10:17:22", "77.75.79.36", "36");
INSERT INTO `wp_rg_form_view` VALUES("32373", "3", "2016-06-07 10:17:22", "77.75.79.36", "170");
INSERT INTO `wp_rg_form_view` VALUES("32374", "9", "2016-06-07 10:28:21", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("32375", "12", "2016-06-07 10:38:35", "207.46.13.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("32376", "7", "2016-06-07 10:38:51", "207.46.13.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("32377", "10", "2016-06-07 11:32:41", "178.137.90.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("32378", "3", "2016-06-07 11:32:41", "178.137.90.153", "10");
INSERT INTO `wp_rg_form_view` VALUES("32379", "10", "2016-06-07 12:47:29", "216.171.102.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("32380", "3", "2016-06-07 12:47:29", "216.171.102.210", "5");
INSERT INTO `wp_rg_form_view` VALUES("32381", "10", "2016-06-07 13:30:42", "51.255.65.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("32382", "3", "2016-06-07 13:30:42", "51.255.65.60", "10");
INSERT INTO `wp_rg_form_view` VALUES("32383", "1", "2016-06-07 14:45:55", "67.17.36.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("32384", "10", "2016-06-07 14:45:55", "67.17.36.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("32385", "3", "2016-06-07 14:45:55", "67.17.36.228", "15");
INSERT INTO `wp_rg_form_view` VALUES("32386", "10", "2016-06-07 15:09:53", "66.249.75.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("32387", "3", "2016-06-07 15:09:53", "66.249.75.45", "20");
INSERT INTO `wp_rg_form_view` VALUES("32388", "1", "2016-06-07 16:01:27", "91.200.12.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("32389", "10", "2016-06-07 16:01:27", "91.200.12.76", "9");
INSERT INTO `wp_rg_form_view` VALUES("32390", "3", "2016-06-07 16:01:27", "91.200.12.76", "46");
INSERT INTO `wp_rg_form_view` VALUES("32391", "6", "2016-06-07 16:35:06", "5.9.112.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("32392", "10", "2016-06-07 17:03:55", "192.40.235.106", "14");
INSERT INTO `wp_rg_form_view` VALUES("32393", "3", "2016-06-07 17:03:55", "192.40.235.106", "63");
INSERT INTO `wp_rg_form_view` VALUES("32394", "3", "2016-06-07 17:03:55", "192.40.235.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("32395", "10", "2016-06-07 18:42:48", "157.55.39.194", "11");
INSERT INTO `wp_rg_form_view` VALUES("32396", "3", "2016-06-07 18:42:49", "157.55.39.194", "55");
INSERT INTO `wp_rg_form_view` VALUES("32397", "1", "2016-06-07 18:47:19", "5.189.142.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("32398", "10", "2016-06-07 19:06:17", "77.75.78.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("32399", "3", "2016-06-07 19:06:17", "77.75.78.160", "15");
INSERT INTO `wp_rg_form_view` VALUES("32400", "10", "2016-06-07 20:09:32", "40.77.167.19", "14");
INSERT INTO `wp_rg_form_view` VALUES("32401", "3", "2016-06-07 20:09:32", "40.77.167.19", "71");
INSERT INTO `wp_rg_form_view` VALUES("32402", "12", "2016-06-07 20:13:29", "70.66.245.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("32403", "10", "2016-06-07 21:07:06", "66.249.75.37", "6");
INSERT INTO `wp_rg_form_view` VALUES("32404", "3", "2016-06-07 21:07:08", "66.249.75.37", "30");
INSERT INTO `wp_rg_form_view` VALUES("32405", "3", "2016-06-07 22:35:28", "68.180.229.224", "26");
INSERT INTO `wp_rg_form_view` VALUES("32406", "10", "2016-06-07 22:35:29", "68.180.229.224", "5");
INSERT INTO `wp_rg_form_view` VALUES("32407", "11", "2016-06-07 23:07:23", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32408", "10", "2016-06-07 23:07:24", "68.180.229.224", "3");
INSERT INTO `wp_rg_form_view` VALUES("32409", "3", "2016-06-07 23:07:24", "68.180.229.224", "15");
INSERT INTO `wp_rg_form_view` VALUES("32410", "10", "2016-06-08 00:04:56", "199.21.99.202", "40");
INSERT INTO `wp_rg_form_view` VALUES("32411", "3", "2016-06-08 00:04:56", "199.21.99.202", "124");
INSERT INTO `wp_rg_form_view` VALUES("32412", "12", "2016-06-08 00:15:40", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("32413", "10", "2016-06-08 01:00:46", "202.46.50.14", "20");
INSERT INTO `wp_rg_form_view` VALUES("32414", "3", "2016-06-08 01:00:46", "202.46.50.14", "95");
INSERT INTO `wp_rg_form_view` VALUES("32415", "10", "2016-06-08 02:11:57", "66.249.69.250", "5");
INSERT INTO `wp_rg_form_view` VALUES("32416", "3", "2016-06-08 02:11:58", "66.249.69.250", "26");
INSERT INTO `wp_rg_form_view` VALUES("32417", "10", "2016-06-08 03:06:28", "24.114.42.127", "15");
INSERT INTO `wp_rg_form_view` VALUES("32418", "3", "2016-06-08 03:06:28", "24.114.42.127", "75");
INSERT INTO `wp_rg_form_view` VALUES("32419", "1", "2016-06-08 03:07:11", "24.114.42.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("32420", "10", "2016-06-08 04:05:47", "66.249.69.240", "115");
INSERT INTO `wp_rg_form_view` VALUES("32421", "3", "2016-06-08 04:05:47", "66.249.69.240", "531");
INSERT INTO `wp_rg_form_view` VALUES("32422", "2", "2016-06-08 04:20:12", "198.100.147.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("32423", "12", "2016-06-08 04:20:35", "198.100.147.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("32424", "11", "2016-06-08 04:20:45", "198.100.147.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("32425", "1", "2016-06-08 04:20:54", "198.100.147.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("32426", "10", "2016-06-08 05:03:00", "220.181.108.183", "8");
INSERT INTO `wp_rg_form_view` VALUES("32427", "3", "2016-06-08 05:03:00", "220.181.108.183", "40");
INSERT INTO `wp_rg_form_view` VALUES("32428", "10", "2016-06-08 06:01:16", "207.46.13.29", "4");
INSERT INTO `wp_rg_form_view` VALUES("32429", "3", "2016-06-08 06:01:16", "207.46.13.29", "20");
INSERT INTO `wp_rg_form_view` VALUES("32430", "10", "2016-06-08 07:01:02", "202.46.53.175", "5");
INSERT INTO `wp_rg_form_view` VALUES("32431", "3", "2016-06-08 07:01:02", "202.46.53.175", "26");
INSERT INTO `wp_rg_form_view` VALUES("32432", "3", "2016-06-08 08:14:30", "164.132.161.33", "6");
INSERT INTO `wp_rg_form_view` VALUES("32433", "10", "2016-06-08 08:14:30", "164.132.161.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("32434", "10", "2016-06-08 09:01:41", "68.180.229.224", "177");
INSERT INTO `wp_rg_form_view` VALUES("32435", "3", "2016-06-08 09:01:41", "68.180.229.224", "833");
INSERT INTO `wp_rg_form_view` VALUES("32436", "1", "2016-06-08 09:43:03", "104.236.207.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("32437", "11", "2016-06-08 09:43:12", "104.236.207.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("32438", "5", "2016-06-08 09:48:15", "104.236.207.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("32439", "12", "2016-06-08 09:51:06", "104.236.207.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("32440", "6", "2016-06-08 09:55:21", "104.236.207.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("32441", "10", "2016-06-08 10:00:02", "104.236.207.30", "386");
INSERT INTO `wp_rg_form_view` VALUES("32442", "3", "2016-06-08 10:00:02", "104.236.207.30", "1896");
INSERT INTO `wp_rg_form_view` VALUES("32443", "9", "2016-06-08 10:03:12", "104.236.207.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("32444", "2", "2016-06-08 10:47:46", "104.236.207.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("32445", "10", "2016-06-08 11:00:02", "104.236.207.30", "29");
INSERT INTO `wp_rg_form_view` VALUES("32446", "3", "2016-06-08 11:00:02", "104.236.207.30", "140");
INSERT INTO `wp_rg_form_view` VALUES("32447", "8", "2016-06-08 11:01:41", "104.236.207.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("32448", "10", "2016-06-08 12:10:43", "66.249.69.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("32449", "3", "2016-06-08 12:10:43", "66.249.69.250", "5");
INSERT INTO `wp_rg_form_view` VALUES("32450", "10", "2016-06-08 13:03:20", "66.249.69.250", "31");
INSERT INTO `wp_rg_form_view` VALUES("32451", "3", "2016-06-08 13:03:21", "66.249.69.250", "153");
INSERT INTO `wp_rg_form_view` VALUES("32452", "11", "2016-06-08 13:23:14", "104.131.25.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("32453", "12", "2016-06-08 13:23:14", "104.131.25.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("32454", "2", "2016-06-08 13:23:16", "104.131.25.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("32455", "10", "2016-06-08 14:01:26", "24.68.146.132", "10");
INSERT INTO `wp_rg_form_view` VALUES("32456", "3", "2016-06-08 14:01:26", "24.68.146.132", "51");
INSERT INTO `wp_rg_form_view` VALUES("32457", "10", "2016-06-08 15:30:03", "5.153.233.130", "6");
INSERT INTO `wp_rg_form_view` VALUES("32458", "3", "2016-06-08 15:30:03", "5.153.233.130", "31");
INSERT INTO `wp_rg_form_view` VALUES("32459", "10", "2016-06-08 16:06:42", "184.69.124.182", "6");
INSERT INTO `wp_rg_form_view` VALUES("32460", "3", "2016-06-08 16:06:42", "184.69.124.182", "32");
INSERT INTO `wp_rg_form_view` VALUES("32461", "10", "2016-06-08 17:01:42", "207.194.133.9", "19");
INSERT INTO `wp_rg_form_view` VALUES("32462", "3", "2016-06-08 17:01:44", "207.194.133.9", "99");
INSERT INTO `wp_rg_form_view` VALUES("32463", "12", "2016-06-08 17:07:13", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32464", "1", "2016-06-08 17:09:54", "63.142.161.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("32465", "10", "2016-06-08 18:35:39", "66.249.69.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("32466", "3", "2016-06-08 18:35:40", "66.249.69.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("32467", "10", "2016-06-08 19:13:13", "178.137.19.16", "10");
INSERT INTO `wp_rg_form_view` VALUES("32468", "3", "2016-06-08 19:13:13", "178.137.19.16", "55");
INSERT INTO `wp_rg_form_view` VALUES("32469", "10", "2016-06-08 20:38:24", "217.69.133.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("32470", "3", "2016-06-08 20:38:33", "217.69.133.230", "5");
INSERT INTO `wp_rg_form_view` VALUES("32471", "10", "2016-06-08 21:09:23", "75.157.25.85", "20");
INSERT INTO `wp_rg_form_view` VALUES("32472", "3", "2016-06-08 21:09:25", "75.157.25.85", "102");
INSERT INTO `wp_rg_form_view` VALUES("32473", "1", "2016-06-08 21:49:19", "77.75.77.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("32474", "10", "2016-06-08 22:12:17", "96.54.208.163", "37");
INSERT INTO `wp_rg_form_view` VALUES("32475", "3", "2016-06-08 22:12:18", "96.54.208.163", "182");
INSERT INTO `wp_rg_form_view` VALUES("32476", "11", "2016-06-08 22:28:03", "79.114.171.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("32477", "12", "2016-06-08 22:28:27", "79.114.171.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("32478", "2", "2016-06-08 22:28:53", "79.114.171.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("32479", "10", "2016-06-08 23:01:00", "184.151.231.51", "9");
INSERT INTO `wp_rg_form_view` VALUES("32480", "3", "2016-06-08 23:01:00", "184.151.231.51", "46");
INSERT INTO `wp_rg_form_view` VALUES("32481", "10", "2016-06-09 00:00:28", "202.46.53.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("32482", "3", "2016-06-09 00:00:28", "202.46.53.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("32483", "3", "2016-06-09 01:24:14", "217.69.133.227", "22");
INSERT INTO `wp_rg_form_view` VALUES("32484", "10", "2016-06-09 01:24:14", "217.69.133.227", "4");
INSERT INTO `wp_rg_form_view` VALUES("32485", "1", "2016-06-09 01:34:32", "5.189.142.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("32486", "10", "2016-06-09 02:11:50", "77.75.76.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("32487", "3", "2016-06-09 02:11:50", "77.75.76.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("32488", "10", "2016-06-09 03:00:54", "51.255.65.12", "7");
INSERT INTO `wp_rg_form_view` VALUES("32489", "3", "2016-06-09 03:00:54", "51.255.65.12", "36");
INSERT INTO `wp_rg_form_view` VALUES("32490", "10", "2016-06-09 04:04:37", "178.137.90.153", "23");
INSERT INTO `wp_rg_form_view` VALUES("32491", "3", "2016-06-09 04:04:37", "178.137.90.153", "115");
INSERT INTO `wp_rg_form_view` VALUES("32492", "11", "2016-06-09 05:02:36", "202.46.52.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("32493", "10", "2016-06-09 05:02:36", "202.46.52.62", "11");
INSERT INTO `wp_rg_form_view` VALUES("32494", "3", "2016-06-09 05:02:36", "202.46.52.62", "56");
INSERT INTO `wp_rg_form_view` VALUES("32495", "10", "2016-06-09 06:15:41", "220.181.108.101", "7");
INSERT INTO `wp_rg_form_view` VALUES("32496", "3", "2016-06-09 06:15:43", "220.181.108.101", "37");
INSERT INTO `wp_rg_form_view` VALUES("32497", "8", "2016-06-09 06:35:26", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("32498", "9", "2016-06-09 06:35:26", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("32499", "1", "2016-06-09 06:55:27", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("32500", "10", "2016-06-09 07:04:46", "66.249.79.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("32501", "3", "2016-06-09 07:04:46", "66.249.79.169", "11");
INSERT INTO `wp_rg_form_view` VALUES("32502", "10", "2016-06-09 08:18:09", "173.208.130.146", "5");
INSERT INTO `wp_rg_form_view` VALUES("32503", "3", "2016-06-09 08:18:09", "173.208.130.146", "25");
INSERT INTO `wp_rg_form_view` VALUES("32504", "10", "2016-06-09 09:23:26", "66.249.79.176", "6");
INSERT INTO `wp_rg_form_view` VALUES("32505", "3", "2016-06-09 09:23:26", "66.249.79.176", "26");
INSERT INTO `wp_rg_form_view` VALUES("32506", "10", "2016-06-09 10:26:23", "66.249.79.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("32507", "3", "2016-06-09 10:26:24", "66.249.79.162", "35");
INSERT INTO `wp_rg_form_view` VALUES("32508", "3", "2016-06-09 11:05:49", "51.255.65.30", "16");
INSERT INTO `wp_rg_form_view` VALUES("32509", "10", "2016-06-09 11:05:49", "51.255.65.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("32510", "10", "2016-06-09 12:58:12", "207.46.13.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("32511", "3", "2016-06-09 12:58:13", "207.46.13.29", "10");
INSERT INTO `wp_rg_form_view` VALUES("32512", "10", "2016-06-09 13:46:12", "192.243.55.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("32513", "3", "2016-06-09 13:46:13", "192.243.55.129", "5");
INSERT INTO `wp_rg_form_view` VALUES("32514", "10", "2016-06-09 14:16:14", "178.137.90.153", "19");
INSERT INTO `wp_rg_form_view` VALUES("32515", "3", "2016-06-09 14:16:14", "178.137.90.153", "90");
INSERT INTO `wp_rg_form_view` VALUES("32516", "10", "2016-06-09 15:06:47", "151.80.31.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("32517", "3", "2016-06-09 15:06:47", "151.80.31.157", "20");
INSERT INTO `wp_rg_form_view` VALUES("32518", "10", "2016-06-09 16:09:34", "217.69.133.228", "8");
INSERT INTO `wp_rg_form_view` VALUES("32519", "3", "2016-06-09 16:09:34", "217.69.133.228", "40");
INSERT INTO `wp_rg_form_view` VALUES("32520", "10", "2016-06-09 17:14:51", "66.249.79.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("32521", "3", "2016-06-09 17:14:52", "66.249.79.169", "27");
INSERT INTO `wp_rg_form_view` VALUES("32522", "1", "2016-06-09 18:20:01", "202.46.53.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("32523", "10", "2016-06-09 18:20:01", "202.46.53.45", "10");
INSERT INTO `wp_rg_form_view` VALUES("32524", "3", "2016-06-09 18:20:02", "202.46.53.45", "50");
INSERT INTO `wp_rg_form_view` VALUES("32525", "10", "2016-06-09 19:09:05", "50.66.122.99", "13");
INSERT INTO `wp_rg_form_view` VALUES("32526", "3", "2016-06-09 19:09:05", "50.66.122.99", "63");
INSERT INTO `wp_rg_form_view` VALUES("32527", "3", "2016-06-09 20:00:27", "202.46.58.188", "42");
INSERT INTO `wp_rg_form_view` VALUES("32528", "10", "2016-06-09 20:00:29", "202.46.58.188", "7");
INSERT INTO `wp_rg_form_view` VALUES("32529", "10", "2016-06-09 20:00:29", "46.119.113.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("32530", "7", "2016-06-09 20:32:20", "207.46.13.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("32531", "3", "2016-06-09 21:07:37", "202.46.54.142", "22");
INSERT INTO `wp_rg_form_view` VALUES("32532", "10", "2016-06-09 21:07:40", "202.46.54.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("32533", "3", "2016-06-09 22:10:15", "164.132.161.6", "38");
INSERT INTO `wp_rg_form_view` VALUES("32534", "10", "2016-06-09 22:10:16", "164.132.161.6", "8");
INSERT INTO `wp_rg_form_view` VALUES("32535", "8", "2016-06-09 22:10:16", "164.132.161.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("32536", "9", "2016-06-09 22:10:16", "164.132.161.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("32537", "10", "2016-06-09 23:08:21", "24.108.7.100", "4");
INSERT INTO `wp_rg_form_view` VALUES("32538", "3", "2016-06-09 23:08:21", "24.108.7.100", "20");
INSERT INTO `wp_rg_form_view` VALUES("32539", "10", "2016-06-10 00:19:44", "192.243.55.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("32540", "3", "2016-06-10 00:19:44", "192.243.55.130", "21");
INSERT INTO `wp_rg_form_view` VALUES("32541", "10", "2016-06-10 01:00:29", "207.46.13.107", "15");
INSERT INTO `wp_rg_form_view` VALUES("32542", "3", "2016-06-10 01:00:29", "207.46.13.107", "81");
INSERT INTO `wp_rg_form_view` VALUES("32543", "6", "2016-06-10 02:05:38", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("32544", "10", "2016-06-10 02:05:38", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("32545", "3", "2016-06-10 02:05:38", "217.69.133.227", "5");
INSERT INTO `wp_rg_form_view` VALUES("32546", "3", "2016-06-10 03:40:43", "217.69.133.233", "11");
INSERT INTO `wp_rg_form_view` VALUES("32547", "10", "2016-06-10 03:40:44", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("32548", "3", "2016-06-10 04:30:29", "40.77.167.49", "27");
INSERT INTO `wp_rg_form_view` VALUES("32549", "10", "2016-06-10 04:30:29", "40.77.167.49", "5");
INSERT INTO `wp_rg_form_view` VALUES("32550", "9", "2016-06-10 05:11:05", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("32551", "10", "2016-06-10 05:11:05", "157.55.39.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("32552", "3", "2016-06-10 05:11:05", "157.55.39.194", "26");
INSERT INTO `wp_rg_form_view` VALUES("32553", "10", "2016-06-10 06:11:24", "220.181.108.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("32554", "3", "2016-06-10 06:11:25", "220.181.108.142", "16");
INSERT INTO `wp_rg_form_view` VALUES("32555", "10", "2016-06-10 07:03:23", "66.249.79.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("32556", "3", "2016-06-10 07:03:23", "66.249.79.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("32557", "12", "2016-06-10 07:08:28", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32558", "10", "2016-06-10 08:14:36", "202.46.52.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("32559", "3", "2016-06-10 08:14:36", "202.46.52.207", "23");
INSERT INTO `wp_rg_form_view` VALUES("32560", "10", "2016-06-10 09:09:07", "192.243.55.137", "4");
INSERT INTO `wp_rg_form_view` VALUES("32561", "3", "2016-06-10 09:09:07", "192.243.55.137", "20");
INSERT INTO `wp_rg_form_view` VALUES("32562", "10", "2016-06-10 10:01:23", "77.75.76.171", "16");
INSERT INTO `wp_rg_form_view` VALUES("32563", "3", "2016-06-10 10:01:23", "77.75.76.171", "92");
INSERT INTO `wp_rg_form_view` VALUES("32564", "3", "2016-06-10 11:27:40", "178.137.19.16", "329");
INSERT INTO `wp_rg_form_view` VALUES("32565", "3", "2016-06-10 11:27:40", "178.137.19.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("32566", "10", "2016-06-10 11:27:41", "178.137.19.16", "77");
INSERT INTO `wp_rg_form_view` VALUES("32567", "10", "2016-06-10 11:27:41", "178.137.19.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("32568", "10", "2016-06-10 11:27:41", "178.137.19.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("32569", "9", "2016-06-10 11:39:37", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("32570", "6", "2016-06-10 11:40:05", "207.46.13.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("32571", "10", "2016-06-10 12:45:07", "202.46.51.21", "3");
INSERT INTO `wp_rg_form_view` VALUES("32572", "3", "2016-06-10 12:45:09", "202.46.51.21", "15");
INSERT INTO `wp_rg_form_view` VALUES("32573", "6", "2016-06-10 12:56:09", "51.255.65.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("32574", "10", "2016-06-10 13:17:02", "192.243.55.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("32575", "3", "2016-06-10 13:17:02", "192.243.55.138", "15");
INSERT INTO `wp_rg_form_view` VALUES("32576", "3", "2016-06-10 14:01:41", "192.243.55.137", "28");
INSERT INTO `wp_rg_form_view` VALUES("32577", "10", "2016-06-10 14:01:41", "192.243.55.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("32578", "10", "2016-06-10 15:03:25", "217.69.133.229", "5");
INSERT INTO `wp_rg_form_view` VALUES("32579", "3", "2016-06-10 15:03:25", "217.69.133.229", "25");
INSERT INTO `wp_rg_form_view` VALUES("32580", "10", "2016-06-10 16:04:08", "184.71.11.78", "4");
INSERT INTO `wp_rg_form_view` VALUES("32581", "3", "2016-06-10 16:04:08", "184.71.11.78", "22");
INSERT INTO `wp_rg_form_view` VALUES("32582", "10", "2016-06-10 17:10:30", "87.157.48.148", "13");
INSERT INTO `wp_rg_form_view` VALUES("32583", "3", "2016-06-10 17:10:30", "87.157.48.148", "61");
INSERT INTO `wp_rg_form_view` VALUES("32584", "2", "2016-06-10 17:10:48", "87.157.48.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("32585", "1", "2016-06-10 17:11:15", "87.157.48.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("32586", "10", "2016-06-10 18:04:00", "50.66.122.99", "33");
INSERT INTO `wp_rg_form_view` VALUES("32587", "3", "2016-06-10 18:04:00", "50.66.122.99", "174");
INSERT INTO `wp_rg_form_view` VALUES("32588", "1", "2016-06-10 18:23:05", "142.31.134.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("32589", "11", "2016-06-10 18:41:59", "220.181.108.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("32590", "10", "2016-06-10 19:00:14", "24.69.40.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("32591", "3", "2016-06-10 19:00:14", "24.69.40.28", "35");
INSERT INTO `wp_rg_form_view` VALUES("32592", "10", "2016-06-10 20:01:07", "24.68.146.132", "15");
INSERT INTO `wp_rg_form_view` VALUES("32593", "3", "2016-06-10 20:01:07", "24.68.146.132", "76");
INSERT INTO `wp_rg_form_view` VALUES("32594", "2", "2016-06-10 20:02:23", "24.68.146.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("32595", "3", "2016-06-10 21:16:44", "202.46.55.84", "17");
INSERT INTO `wp_rg_form_view` VALUES("32596", "10", "2016-06-10 21:16:45", "202.46.55.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("32597", "1", "2016-06-10 22:03:51", "104.129.41.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("32598", "10", "2016-06-10 22:03:51", "104.129.41.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("32599", "3", "2016-06-10 22:03:51", "104.129.41.161", "91");
INSERT INTO `wp_rg_form_view` VALUES("32600", "3", "2016-06-10 23:27:19", "46.185.68.84", "17");
INSERT INTO `wp_rg_form_view` VALUES("32601", "3", "2016-06-10 23:27:19", "46.185.68.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("32602", "10", "2016-06-10 23:27:20", "46.185.68.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("32603", "10", "2016-06-10 23:27:20", "46.185.68.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("32604", "10", "2016-06-10 23:27:20", "46.185.68.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("32605", "10", "2016-06-11 00:14:24", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32606", "3", "2016-06-11 00:14:25", "68.180.229.224", "5");
INSERT INTO `wp_rg_form_view` VALUES("32607", "3", "2016-06-11 01:19:46", "68.180.229.224", "11");
INSERT INTO `wp_rg_form_view` VALUES("32608", "10", "2016-06-11 01:19:48", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("32609", "12", "2016-06-11 01:22:59", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("32610", "10", "2016-06-11 02:01:51", "24.68.36.249", "8");
INSERT INTO `wp_rg_form_view` VALUES("32611", "3", "2016-06-11 02:01:52", "24.68.36.249", "42");
INSERT INTO `wp_rg_form_view` VALUES("32612", "1", "2016-06-11 02:31:01", "62.210.122.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("32613", "3", "2016-06-11 03:36:43", "178.137.19.16", "34");
INSERT INTO `wp_rg_form_view` VALUES("32614", "10", "2016-06-11 03:36:44", "178.137.19.16", "5");
INSERT INTO `wp_rg_form_view` VALUES("32615", "10", "2016-06-11 03:36:44", "178.137.19.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("32616", "3", "2016-06-11 04:29:19", "157.55.39.17", "16");
INSERT INTO `wp_rg_form_view` VALUES("32617", "10", "2016-06-11 04:29:19", "157.55.39.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("32618", "10", "2016-06-11 05:06:45", "192.243.55.132", "44");
INSERT INTO `wp_rg_form_view` VALUES("32619", "3", "2016-06-11 05:06:45", "192.243.55.132", "225");
INSERT INTO `wp_rg_form_view` VALUES("32620", "1", "2016-06-11 05:30:47", "107.161.84.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("32621", "11", "2016-06-11 05:48:41", "23.24.84.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("32622", "12", "2016-06-11 05:49:02", "23.24.84.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("32623", "2", "2016-06-11 05:49:29", "23.24.84.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("32624", "10", "2016-06-11 06:21:31", "157.55.39.33", "3");
INSERT INTO `wp_rg_form_view` VALUES("32625", "3", "2016-06-11 06:21:32", "157.55.39.33", "15");
INSERT INTO `wp_rg_form_view` VALUES("32626", "10", "2016-06-11 07:16:54", "192.243.55.136", "3");
INSERT INTO `wp_rg_form_view` VALUES("32627", "3", "2016-06-11 07:16:57", "192.243.55.136", "16");
INSERT INTO `wp_rg_form_view` VALUES("32628", "10", "2016-06-11 08:07:00", "151.80.31.163", "7");
INSERT INTO `wp_rg_form_view` VALUES("32629", "3", "2016-06-11 08:07:00", "151.80.31.163", "35");
INSERT INTO `wp_rg_form_view` VALUES("32630", "1", "2016-06-11 08:32:08", "62.210.122.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("32631", "10", "2016-06-11 09:05:06", "77.75.79.101", "5");
INSERT INTO `wp_rg_form_view` VALUES("32632", "3", "2016-06-11 09:05:06", "77.75.79.101", "28");
INSERT INTO `wp_rg_form_view` VALUES("32633", "10", "2016-06-11 10:04:26", "202.46.54.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("32634", "3", "2016-06-11 10:04:26", "202.46.54.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("32635", "1", "2016-06-11 10:24:42", "91.200.12.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("32636", "10", "2016-06-11 11:05:02", "157.55.39.194", "6");
INSERT INTO `wp_rg_form_view` VALUES("32637", "3", "2016-06-11 11:05:03", "157.55.39.194", "25");
INSERT INTO `wp_rg_form_view` VALUES("32638", "10", "2016-06-11 12:11:49", "66.249.79.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("32639", "3", "2016-06-11 12:11:50", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("32640", "10", "2016-06-11 13:16:28", "66.249.79.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("32641", "3", "2016-06-11 13:16:28", "66.249.79.169", "50");
INSERT INTO `wp_rg_form_view` VALUES("32642", "1", "2016-06-11 13:20:36", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("32643", "3", "2016-06-11 14:04:33", "68.180.229.224", "22");
INSERT INTO `wp_rg_form_view` VALUES("32644", "10", "2016-06-11 14:04:33", "68.180.229.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("32645", "10", "2016-06-11 15:05:52", "202.46.54.158", "10");
INSERT INTO `wp_rg_form_view` VALUES("32646", "3", "2016-06-11 15:05:52", "202.46.54.158", "49");
INSERT INTO `wp_rg_form_view` VALUES("32647", "10", "2016-06-11 16:26:22", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("32648", "3", "2016-06-11 16:26:22", "66.249.79.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("32649", "3", "2016-06-11 17:15:56", "188.240.132.165", "41");
INSERT INTO `wp_rg_form_view` VALUES("32650", "10", "2016-06-11 17:15:57", "188.240.132.165", "9");
INSERT INTO `wp_rg_form_view` VALUES("32651", "1", "2016-06-11 18:49:06", "24.16.143.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("32652", "10", "2016-06-11 18:49:07", "24.16.143.88", "4");
INSERT INTO `wp_rg_form_view` VALUES("32653", "3", "2016-06-11 18:49:08", "24.16.143.88", "16");
INSERT INTO `wp_rg_form_view` VALUES("32654", "10", "2016-06-11 19:08:56", "70.66.187.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("32655", "3", "2016-06-11 19:08:56", "70.66.187.146", "10");
INSERT INTO `wp_rg_form_view` VALUES("32656", "10", "2016-06-11 20:00:08", "202.46.52.207", "3");
INSERT INTO `wp_rg_form_view` VALUES("32657", "3", "2016-06-11 20:00:09", "202.46.52.207", "16");
INSERT INTO `wp_rg_form_view` VALUES("32658", "10", "2016-06-11 21:20:33", "157.55.39.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("32659", "3", "2016-06-11 21:20:35", "157.55.39.194", "10");
INSERT INTO `wp_rg_form_view` VALUES("32660", "3", "2016-06-11 22:02:02", "46.118.125.82", "61");
INSERT INTO `wp_rg_form_view` VALUES("32661", "3", "2016-06-11 22:02:02", "46.118.125.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("32662", "10", "2016-06-11 22:02:03", "46.118.125.82", "11");
INSERT INTO `wp_rg_form_view` VALUES("32663", "1", "2016-06-11 22:55:24", "46.17.57.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("32664", "10", "2016-06-11 23:04:14", "51.255.48.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("32665", "3", "2016-06-11 23:04:14", "51.255.48.152", "15");
INSERT INTO `wp_rg_form_view` VALUES("32666", "2", "2016-06-12 00:07:56", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32667", "3", "2016-06-12 00:07:57", "68.180.229.224", "43");
INSERT INTO `wp_rg_form_view` VALUES("32668", "10", "2016-06-12 00:24:22", "157.55.39.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("32669", "9", "2016-06-12 00:31:34", "157.55.39.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("32670", "3", "2016-06-12 01:15:56", "77.75.78.170", "5");
INSERT INTO `wp_rg_form_view` VALUES("32671", "3", "2016-06-12 02:22:39", "66.249.79.169", "22");
INSERT INTO `wp_rg_form_view` VALUES("32672", "10", "2016-06-12 03:12:43", "51.255.65.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("32673", "3", "2016-06-12 03:12:43", "51.255.65.4", "16");
INSERT INTO `wp_rg_form_view` VALUES("32674", "3", "2016-06-12 04:04:47", "202.46.55.153", "25");
INSERT INTO `wp_rg_form_view` VALUES("32675", "3", "2016-06-12 05:11:03", "46.185.68.84", "89");
INSERT INTO `wp_rg_form_view` VALUES("32676", "12", "2016-06-12 05:16:22", "51.255.65.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("32677", "10", "2016-06-12 06:59:20", "77.75.76.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("32678", "3", "2016-06-12 06:59:21", "77.75.76.160", "5");
INSERT INTO `wp_rg_form_view` VALUES("32679", "3", "2016-06-12 07:05:05", "157.55.39.66", "48");
INSERT INTO `wp_rg_form_view` VALUES("32680", "1", "2016-06-12 07:42:06", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32681", "3", "2016-06-12 09:11:38", "178.137.19.16", "40");
INSERT INTO `wp_rg_form_view` VALUES("32682", "3", "2016-06-12 09:11:38", "178.137.19.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("32683", "3", "2016-06-12 10:06:16", "164.132.161.46", "20");
INSERT INTO `wp_rg_form_view` VALUES("32684", "3", "2016-06-12 11:10:47", "151.80.31.163", "10");
INSERT INTO `wp_rg_form_view` VALUES("32685", "3", "2016-06-12 12:17:02", "77.75.79.32", "16");
INSERT INTO `wp_rg_form_view` VALUES("32686", "11", "2016-06-12 12:54:56", "51.255.65.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("32687", "3", "2016-06-12 13:09:44", "164.132.161.67", "5");
INSERT INTO `wp_rg_form_view` VALUES("32688", "3", "2016-06-12 14:09:44", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("32689", "3", "2016-06-12 15:23:00", "68.180.229.224", "25");
INSERT INTO `wp_rg_form_view` VALUES("32690", "3", "2016-06-12 16:13:59", "202.46.58.118", "16");
INSERT INTO `wp_rg_form_view` VALUES("32691", "3", "2016-06-12 17:04:34", "46.118.125.82", "63");
INSERT INTO `wp_rg_form_view` VALUES("32692", "3", "2016-06-12 17:04:34", "46.118.125.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("32693", "3", "2016-06-12 18:18:08", "151.80.31.182", "17");
INSERT INTO `wp_rg_form_view` VALUES("32694", "3", "2016-06-12 19:01:27", "202.46.55.39", "27");
INSERT INTO `wp_rg_form_view` VALUES("32695", "3", "2016-06-12 20:08:24", "202.46.57.89", "177");
INSERT INTO `wp_rg_form_view` VALUES("32696", "11", "2016-06-12 20:50:23", "81.169.150.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("32697", "12", "2016-06-12 20:50:56", "81.169.150.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("32698", "2", "2016-06-12 20:51:28", "81.169.150.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("32699", "11", "2016-06-12 21:10:16", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("32700", "3", "2016-06-12 21:10:17", "199.21.99.202", "54");
INSERT INTO `wp_rg_form_view` VALUES("32701", "10", "2016-06-12 21:13:09", "144.76.30.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("32702", "8", "2016-06-12 21:13:10", "144.76.30.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("32703", "9", "2016-06-12 21:13:10", "144.76.30.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("32704", "3", "2016-06-12 22:31:06", "208.43.225.85", "273");
INSERT INTO `wp_rg_form_view` VALUES("32705", "9", "2016-06-12 22:31:26", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("32706", "11", "2016-06-12 22:32:22", "208.43.225.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("32707", "10", "2016-06-12 22:32:32", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("32708", "12", "2016-06-12 22:50:51", "23.24.84.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("32709", "2", "2016-06-12 22:51:15", "23.24.84.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("32710", "3", "2016-06-12 23:01:47", "183.91.33.75", "71");
INSERT INTO `wp_rg_form_view` VALUES("32711", "1", "2016-06-12 23:18:35", "151.237.179.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("32712", "3", "2016-06-13 00:01:41", "91.200.12.114", "20");
INSERT INTO `wp_rg_form_view` VALUES("32713", "3", "2016-06-13 01:15:57", "66.249.79.169", "306");
INSERT INTO `wp_rg_form_view` VALUES("32714", "7", "2016-06-13 01:17:34", "157.55.39.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("32715", "8", "2016-06-13 01:17:36", "207.46.13.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("32716", "10", "2016-06-13 01:17:42", "157.55.39.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("32717", "12", "2016-06-13 01:17:46", "157.55.39.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("32718", "9", "2016-06-13 01:17:49", "157.55.39.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("32719", "11", "2016-06-13 01:18:00", "207.46.13.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("32720", "10", "2016-06-13 02:03:00", "199.16.156.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("32721", "3", "2016-06-13 02:03:00", "199.16.156.125", "48");
INSERT INTO `wp_rg_form_view` VALUES("32722", "3", "2016-06-13 03:23:46", "157.55.39.78", "16");
INSERT INTO `wp_rg_form_view` VALUES("32723", "1", "2016-06-13 03:46:44", "62.210.122.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("32724", "3", "2016-06-13 04:06:00", "66.249.79.162", "21");
INSERT INTO `wp_rg_form_view` VALUES("32725", "3", "2016-06-13 05:01:46", "188.208.6.21", "36");
INSERT INTO `wp_rg_form_view` VALUES("32726", "3", "2016-06-13 06:45:27", "199.21.99.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("32727", "3", "2016-06-13 07:03:15", "207.46.13.91", "10");
INSERT INTO `wp_rg_form_view` VALUES("32728", "6", "2016-06-13 08:27:51", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32729", "3", "2016-06-13 08:27:51", "68.180.229.224", "15");
INSERT INTO `wp_rg_form_view` VALUES("32730", "3", "2016-06-13 09:24:50", "66.249.79.162", "39");
INSERT INTO `wp_rg_form_view` VALUES("32731", "1", "2016-06-13 09:54:52", "62.210.122.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("32732", "3", "2016-06-13 10:10:24", "68.180.229.224", "20");
INSERT INTO `wp_rg_form_view` VALUES("32733", "3", "2016-06-13 11:14:45", "66.249.79.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("32734", "3", "2016-06-13 12:06:24", "66.249.79.162", "63");
INSERT INTO `wp_rg_form_view` VALUES("32735", "1", "2016-06-13 13:00:29", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("32736", "3", "2016-06-13 13:00:29", "66.249.79.162", "31");
INSERT INTO `wp_rg_form_view` VALUES("32737", "9", "2016-06-13 13:30:01", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("32738", "3", "2016-06-13 14:00:37", "68.180.229.224", "34");
INSERT INTO `wp_rg_form_view` VALUES("32739", "1", "2016-06-13 14:39:50", "202.46.56.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("32740", "3", "2016-06-13 15:12:30", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("32741", "3", "2016-06-13 16:04:26", "217.69.133.232", "21");
INSERT INTO `wp_rg_form_view` VALUES("32742", "3", "2016-06-13 17:06:18", "202.46.53.142", "50");
INSERT INTO `wp_rg_form_view` VALUES("32743", "5", "2016-06-13 17:52:48", "157.55.39.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("32744", "3", "2016-06-13 18:13:16", "202.46.53.165", "61");
INSERT INTO `wp_rg_form_view` VALUES("32745", "1", "2016-06-13 18:23:45", "24.68.124.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("32746", "12", "2016-06-13 18:30:10", "207.6.162.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("32747", "3", "2016-06-13 19:10:44", "66.249.79.162", "36");
INSERT INTO `wp_rg_form_view` VALUES("32748", "3", "2016-06-13 20:32:43", "157.55.39.22", "26");
INSERT INTO `wp_rg_form_view` VALUES("32749", "3", "2016-06-13 21:11:13", "24.108.20.70", "46");
INSERT INTO `wp_rg_form_view` VALUES("32750", "1", "2016-06-13 21:11:34", "24.108.20.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("32751", "11", "2016-06-13 21:15:45", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("32752", "3", "2016-06-13 22:11:09", "46.185.68.84", "23");
INSERT INTO `wp_rg_form_view` VALUES("32753", "3", "2016-06-13 23:05:08", "184.66.32.165", "72");
INSERT INTO `wp_rg_form_view` VALUES("32754", "11", "2016-06-13 23:05:27", "141.8.143.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("32755", "3", "2016-06-14 00:20:22", "46.118.125.82", "207");
INSERT INTO `wp_rg_form_view` VALUES("32756", "11", "2016-06-14 00:27:50", "173.208.184.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("32757", "12", "2016-06-14 00:28:12", "173.208.184.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("32758", "2", "2016-06-14 00:28:48", "173.208.184.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("32759", "3", "2016-06-14 01:25:26", "24.108.20.70", "56");
INSERT INTO `wp_rg_form_view` VALUES("32760", "3", "2016-06-14 02:00:19", "68.180.229.224", "75");
INSERT INTO `wp_rg_form_view` VALUES("32761", "3", "2016-06-14 03:25:54", "108.180.31.157", "20");
INSERT INTO `wp_rg_form_view` VALUES("32762", "3", "2016-06-14 04:33:18", "77.75.77.109", "5");
INSERT INTO `wp_rg_form_view` VALUES("32763", "3", "2016-06-14 05:09:21", "66.249.79.162", "32");
INSERT INTO `wp_rg_form_view` VALUES("32764", "3", "2016-06-14 07:15:21", "178.137.19.16", "75");
INSERT INTO `wp_rg_form_view` VALUES("32765", "3", "2016-06-14 07:15:21", "178.137.19.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("32766", "3", "2016-06-14 07:15:21", "178.137.19.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("32767", "1", "2016-06-14 07:54:15", "173.44.147.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("32768", "8", "2016-06-14 07:58:18", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32769", "3", "2016-06-14 08:08:46", "68.180.229.224", "15");
INSERT INTO `wp_rg_form_view` VALUES("32770", "3", "2016-06-14 09:38:01", "68.180.229.224", "12");
INSERT INTO `wp_rg_form_view` VALUES("32771", "3", "2016-06-14 10:11:31", "5.153.233.130", "35");
INSERT INTO `wp_rg_form_view` VALUES("32772", "3", "2016-06-14 11:03:08", "151.80.31.184", "41");
INSERT INTO `wp_rg_form_view` VALUES("32773", "3", "2016-06-14 12:07:08", "77.75.78.165", "26");
INSERT INTO `wp_rg_form_view` VALUES("32774", "3", "2016-06-14 15:21:58", "68.180.229.224", "25");
INSERT INTO `wp_rg_form_view` VALUES("32775", "1", "2016-06-14 15:50:59", "91.200.12.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("32776", "3", "2016-06-14 16:07:11", "70.66.161.162", "152");
INSERT INTO `wp_rg_form_view` VALUES("32777", "10", "2016-06-14 16:14:27", "70.66.161.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("32778", "8", "2016-06-14 16:47:43", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("32779", "3", "2016-06-14 17:04:14", "68.180.229.224", "31");
INSERT INTO `wp_rg_form_view` VALUES("32780", "3", "2016-06-14 18:04:04", "178.137.164.226", "29");
INSERT INTO `wp_rg_form_view` VALUES("32781", "3", "2016-06-14 19:12:01", "77.75.76.167", "21");
INSERT INTO `wp_rg_form_view` VALUES("32782", "3", "2016-06-14 20:18:47", "24.69.133.52", "51");
INSERT INTO `wp_rg_form_view` VALUES("32783", "3", "2016-06-14 21:03:07", "157.55.39.170", "28");
INSERT INTO `wp_rg_form_view` VALUES("32784", "3", "2016-06-14 22:02:48", "66.249.79.176", "66");
INSERT INTO `wp_rg_form_view` VALUES("32785", "8", "2016-06-14 22:21:10", "51.255.65.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("32786", "10", "2016-06-14 22:28:28", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("32787", "3", "2016-06-14 23:00:55", "66.249.79.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("32788", "11", "2016-06-14 23:08:54", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32789", "3", "2016-06-15 00:09:11", "66.249.79.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("32790", "2", "2016-06-15 00:48:00", "202.46.53.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("32791", "3", "2016-06-15 01:16:11", "24.68.96.136", "21");
INSERT INTO `wp_rg_form_view` VALUES("32792", "3", "2016-06-15 02:01:43", "207.46.13.90", "43");
INSERT INTO `wp_rg_form_view` VALUES("32793", "3", "2016-06-15 03:01:19", "96.50.3.41", "60");
INSERT INTO `wp_rg_form_view` VALUES("32794", "10", "2016-06-15 03:01:36", "96.50.3.41", "4");
INSERT INTO `wp_rg_form_view` VALUES("32795", "3", "2016-06-15 04:23:17", "24.68.232.76", "16");
INSERT INTO `wp_rg_form_view` VALUES("32796", "3", "2016-06-15 05:24:27", "207.46.13.90", "20");
INSERT INTO `wp_rg_form_view` VALUES("32797", "9", "2016-06-15 05:24:52", "167.114.241.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("32798", "3", "2016-06-15 06:16:49", "192.243.55.133", "58");
INSERT INTO `wp_rg_form_view` VALUES("32799", "1", "2016-06-15 06:17:35", "5.34.244.88", "3");
INSERT INTO `wp_rg_form_view` VALUES("32800", "3", "2016-06-15 07:12:41", "77.75.79.36", "22");
INSERT INTO `wp_rg_form_view` VALUES("32801", "10", "2016-06-15 08:04:31", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32802", "3", "2016-06-15 08:21:46", "192.243.55.137", "11");
INSERT INTO `wp_rg_form_view` VALUES("32803", "3", "2016-06-15 09:05:38", "178.137.164.226", "32");
INSERT INTO `wp_rg_form_view` VALUES("32804", "3", "2016-06-15 10:05:54", "77.75.79.95", "30");
INSERT INTO `wp_rg_form_view` VALUES("32805", "1", "2016-06-15 10:48:02", "62.210.122.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("32806", "3", "2016-06-15 11:09:00", "68.180.229.224", "15");
INSERT INTO `wp_rg_form_view` VALUES("32807", "3", "2016-06-15 12:12:53", "66.249.79.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("32808", "3", "2016-06-15 13:03:03", "220.181.108.86", "35");
INSERT INTO `wp_rg_form_view` VALUES("32809", "9", "2016-06-15 13:34:57", "202.46.57.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("32810", "3", "2016-06-15 14:30:37", "68.180.229.224", "11");
INSERT INTO `wp_rg_form_view` VALUES("32811", "3", "2016-06-15 15:03:28", "77.75.77.17", "50");
INSERT INTO `wp_rg_form_view` VALUES("32812", "3", "2016-06-15 16:24:42", "51.255.65.6", "21");
INSERT INTO `wp_rg_form_view` VALUES("32813", "1", "2016-06-15 17:04:20", "62.210.122.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("32814", "3", "2016-06-15 17:04:20", "62.210.122.172", "46");
INSERT INTO `wp_rg_form_view` VALUES("32815", "3", "2016-06-15 18:16:39", "77.75.76.163", "22");
INSERT INTO `wp_rg_form_view` VALUES("32816", "2", "2016-06-15 19:06:58", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("32817", "3", "2016-06-15 19:06:58", "66.249.79.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("32818", "3", "2016-06-15 20:17:31", "157.55.39.87", "25");
INSERT INTO `wp_rg_form_view` VALUES("32819", "2", "2016-06-15 20:36:50", "207.46.13.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("32820", "3", "2016-06-15 21:35:46", "178.137.164.226", "87");
INSERT INTO `wp_rg_form_view` VALUES("32821", "3", "2016-06-15 21:35:46", "178.137.164.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("32822", "3", "2016-06-15 21:35:46", "178.137.164.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("32823", "3", "2016-06-15 22:32:59", "5.9.98.130", "953");
INSERT INTO `wp_rg_form_view` VALUES("32824", "11", "2016-06-15 22:33:19", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32825", "2", "2016-06-15 22:33:23", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32826", "12", "2016-06-15 22:34:54", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32827", "1", "2016-06-15 22:35:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32828", "10", "2016-06-15 22:39:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32829", "8", "2016-06-15 22:39:46", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32830", "9", "2016-06-15 22:39:56", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32831", "5", "2016-06-15 22:40:49", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32832", "6", "2016-06-15 22:44:46", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32833", "3", "2016-06-15 23:01:25", "5.9.98.130", "2338");
INSERT INTO `wp_rg_form_view` VALUES("32834", "3", "2016-06-16 00:00:07", "5.9.98.130", "2313");
INSERT INTO `wp_rg_form_view` VALUES("32835", "3", "2016-06-16 01:00:01", "5.9.98.130", "4130");
INSERT INTO `wp_rg_form_view` VALUES("32836", "3", "2016-06-16 02:13:03", "5.9.98.130", "603");
INSERT INTO `wp_rg_form_view` VALUES("32837", "9", "2016-06-16 02:42:07", "207.46.13.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("32838", "10", "2016-06-16 02:42:14", "207.46.13.78", "2");
INSERT INTO `wp_rg_form_view` VALUES("32839", "5", "2016-06-16 02:42:43", "40.77.167.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("32840", "6", "2016-06-16 02:42:49", "40.77.167.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("32841", "8", "2016-06-16 02:43:36", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("32842", "3", "2016-06-16 03:03:59", "5.9.98.130", "2998");
INSERT INTO `wp_rg_form_view` VALUES("32843", "11", "2016-06-16 03:32:08", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32844", "2", "2016-06-16 03:32:13", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32845", "12", "2016-06-16 03:33:46", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32846", "1", "2016-06-16 03:34:19", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32847", "10", "2016-06-16 03:38:00", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32848", "8", "2016-06-16 03:38:18", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32849", "9", "2016-06-16 03:38:26", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32850", "5", "2016-06-16 03:39:10", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32851", "6", "2016-06-16 03:42:41", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32852", "3", "2016-06-16 04:00:01", "5.9.98.130", "3021");
INSERT INTO `wp_rg_form_view` VALUES("32853", "3", "2016-06-16 05:00:01", "5.9.98.130", "2115");
INSERT INTO `wp_rg_form_view` VALUES("32854", "1", "2016-06-16 05:12:02", "66.249.84.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("32855", "3", "2016-06-16 06:00:03", "5.9.98.130", "3555");
INSERT INTO `wp_rg_form_view` VALUES("32856", "3", "2016-06-16 07:00:01", "5.9.98.130", "1422");
INSERT INTO `wp_rg_form_view` VALUES("32857", "3", "2016-06-16 08:00:00", "5.9.98.130", "4946");
INSERT INTO `wp_rg_form_view` VALUES("32858", "3", "2016-06-16 09:00:00", "5.9.98.130", "2691");
INSERT INTO `wp_rg_form_view` VALUES("32859", "1", "2016-06-16 09:54:23", "149.202.151.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("32860", "3", "2016-06-16 10:01:34", "68.180.229.224", "650");
INSERT INTO `wp_rg_form_view` VALUES("32861", "3", "2016-06-16 11:03:39", "46.185.68.84", "493");
INSERT INTO `wp_rg_form_view` VALUES("32862", "3", "2016-06-16 12:00:01", "5.9.98.130", "1968");
INSERT INTO `wp_rg_form_view` VALUES("32863", "9", "2016-06-16 12:35:31", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("32864", "3", "2016-06-16 13:30:45", "51.255.65.21", "10");
INSERT INTO `wp_rg_form_view` VALUES("32865", "3", "2016-06-16 14:38:14", "207.46.13.114", "6");
INSERT INTO `wp_rg_form_view` VALUES("32866", "3", "2016-06-16 15:15:00", "37.115.187.45", "68");
INSERT INTO `wp_rg_form_view` VALUES("32867", "3", "2016-06-16 15:15:00", "37.115.187.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("32868", "10", "2016-06-16 15:30:17", "77.75.76.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("32869", "3", "2016-06-16 16:08:13", "51.255.65.24", "30");
INSERT INTO `wp_rg_form_view` VALUES("32870", "3", "2016-06-16 17:18:50", "77.75.76.165", "34");
INSERT INTO `wp_rg_form_view` VALUES("32871", "3", "2016-06-16 18:41:26", "157.55.39.73", "26");
INSERT INTO `wp_rg_form_view` VALUES("32872", "9", "2016-06-16 19:51:09", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32873", "3", "2016-06-16 19:54:26", "188.208.6.236", "28");
INSERT INTO `wp_rg_form_view` VALUES("32874", "10", "2016-06-16 19:58:28", "51.255.65.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("32875", "3", "2016-06-16 20:06:38", "157.55.39.73", "60");
INSERT INTO `wp_rg_form_view` VALUES("32876", "1", "2016-06-16 20:23:42", "193.180.244.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("32877", "3", "2016-06-16 21:24:22", "37.115.187.45", "19");
INSERT INTO `wp_rg_form_view` VALUES("32878", "3", "2016-06-16 22:10:19", "66.249.79.162", "37");
INSERT INTO `wp_rg_form_view` VALUES("32879", "3", "2016-06-16 23:15:09", "176.9.20.239", "55");
INSERT INTO `wp_rg_form_view` VALUES("32880", "11", "2016-06-16 23:19:49", "77.75.79.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("32881", "3", "2016-06-17 00:11:09", "66.249.79.169", "108");
INSERT INTO `wp_rg_form_view` VALUES("32882", "12", "2016-06-17 00:24:02", "52.90.100.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("32883", "3", "2016-06-17 01:21:28", "192.240.245.144", "135");
INSERT INTO `wp_rg_form_view` VALUES("32884", "7", "2016-06-17 02:17:18", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32885", "3", "2016-06-17 02:17:18", "68.180.229.224", "72");
INSERT INTO `wp_rg_form_view` VALUES("32886", "3", "2016-06-17 03:11:56", "178.137.164.226", "49");
INSERT INTO `wp_rg_form_view` VALUES("32887", "3", "2016-06-17 04:04:50", "68.180.229.224", "88");
INSERT INTO `wp_rg_form_view` VALUES("32888", "3", "2016-06-17 05:33:53", "184.66.248.89", "54");
INSERT INTO `wp_rg_form_view` VALUES("32889", "3", "2016-06-17 05:33:53", "184.66.248.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("32890", "12", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32891", "2", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32892", "3", "2016-06-17 06:05:49", "104.236.82.54", "226");
INSERT INTO `wp_rg_form_view` VALUES("32893", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32894", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32895", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32896", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32897", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32898", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32899", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32900", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32901", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32902", "3", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32903", "11", "2016-06-17 06:05:49", "104.236.82.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("32904", "3", "2016-06-17 07:13:11", "68.180.229.224", "54");
INSERT INTO `wp_rg_form_view` VALUES("32905", "12", "2016-06-17 07:14:25", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32906", "3", "2016-06-17 08:01:00", "202.46.49.117", "36");
INSERT INTO `wp_rg_form_view` VALUES("32907", "8", "2016-06-17 08:29:34", "207.46.13.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("32908", "3", "2016-06-17 09:08:01", "202.46.54.70", "45");
INSERT INTO `wp_rg_form_view` VALUES("32909", "1", "2016-06-17 09:27:49", "120.202.249.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("32910", "3", "2016-06-17 10:09:28", "68.180.229.224", "128");
INSERT INTO `wp_rg_form_view` VALUES("32911", "3", "2016-06-17 11:00:17", "1.124.48.205", "185");
INSERT INTO `wp_rg_form_view` VALUES("32912", "2", "2016-06-17 11:01:12", "1.124.48.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("32913", "1", "2016-06-17 11:04:11", "1.124.48.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("32914", "3", "2016-06-17 12:30:47", "66.249.79.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("32915", "3", "2016-06-17 13:47:41", "207.46.13.114", "19");
INSERT INTO `wp_rg_form_view` VALUES("32916", "5", "2016-06-17 13:54:39", "202.46.51.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("32917", "3", "2016-06-17 14:13:24", "151.80.31.172", "146");
INSERT INTO `wp_rg_form_view` VALUES("32918", "3", "2016-06-17 15:45:43", "157.55.39.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("32919", "3", "2016-06-17 16:01:55", "70.66.183.64", "28");
INSERT INTO `wp_rg_form_view` VALUES("32920", "3", "2016-06-17 17:00:09", "207.46.13.114", "54");
INSERT INTO `wp_rg_form_view` VALUES("32921", "1", "2016-06-17 17:54:40", "24.69.133.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("32922", "1", "2016-06-17 18:02:03", "91.200.12.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("32923", "3", "2016-06-17 18:02:03", "91.200.12.76", "90");
INSERT INTO `wp_rg_form_view` VALUES("32924", "1", "2016-06-17 19:12:38", "157.55.39.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("32925", "3", "2016-06-17 19:12:38", "157.55.39.48", "46");
INSERT INTO `wp_rg_form_view` VALUES("32926", "10", "2016-06-17 20:03:46", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("32927", "3", "2016-06-17 20:03:46", "40.77.167.77", "65");
INSERT INTO `wp_rg_form_view` VALUES("32928", "12", "2016-06-17 20:23:04", "220.181.108.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("32929", "3", "2016-06-17 21:12:29", "51.255.65.24", "28");
INSERT INTO `wp_rg_form_view` VALUES("32930", "3", "2016-06-17 22:10:30", "184.69.163.74", "74");
INSERT INTO `wp_rg_form_view` VALUES("32931", "3", "2016-06-17 23:11:28", "202.46.58.122", "18");
INSERT INTO `wp_rg_form_view` VALUES("32932", "3", "2016-06-18 00:58:46", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("32933", "3", "2016-06-18 01:24:22", "68.180.229.224", "19");
INSERT INTO `wp_rg_form_view` VALUES("32934", "3", "2016-06-18 02:23:31", "77.75.79.36", "27");
INSERT INTO `wp_rg_form_view` VALUES("32935", "3", "2016-06-18 03:08:09", "51.255.65.20", "123");
INSERT INTO `wp_rg_form_view` VALUES("32936", "3", "2016-06-18 04:06:08", "40.77.167.10", "1558");
INSERT INTO `wp_rg_form_view` VALUES("32937", "2", "2016-06-18 04:45:36", "72.76.243.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("32938", "12", "2016-06-18 04:46:16", "72.76.243.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("32939", "7", "2016-06-18 04:47:03", "72.76.243.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("32940", "11", "2016-06-18 04:47:24", "72.76.243.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("32941", "1", "2016-06-18 04:47:31", "72.76.243.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("32942", "5", "2016-06-18 04:48:07", "72.76.243.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("32943", "8", "2016-06-18 04:51:08", "72.76.243.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("32944", "9", "2016-06-18 04:51:57", "72.76.243.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("32945", "6", "2016-06-18 04:52:18", "72.76.243.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("32946", "10", "2016-06-18 04:54:53", "72.76.243.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("32947", "3", "2016-06-18 05:34:42", "51.255.65.53", "9");
INSERT INTO `wp_rg_form_view` VALUES("32948", "3", "2016-06-18 07:18:11", "77.75.78.163", "9");
INSERT INTO `wp_rg_form_view` VALUES("32949", "3", "2016-06-18 08:07:33", "66.249.79.176", "9");
INSERT INTO `wp_rg_form_view` VALUES("32950", "3", "2016-06-18 09:04:51", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("32951", "3", "2016-06-18 10:06:16", "66.249.79.169", "36");
INSERT INTO `wp_rg_form_view` VALUES("32952", "8", "2016-06-18 10:49:28", "202.46.54.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("32953", "3", "2016-06-18 12:05:04", "68.180.229.224", "28");
INSERT INTO `wp_rg_form_view` VALUES("32954", "12", "2016-06-18 13:50:18", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32955", "3", "2016-06-18 13:50:19", "68.180.229.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("32956", "3", "2016-06-18 14:08:12", "68.180.229.224", "46");
INSERT INTO `wp_rg_form_view` VALUES("32957", "10", "2016-06-18 15:02:10", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("32958", "3", "2016-06-18 15:02:10", "66.249.79.162", "37");
INSERT INTO `wp_rg_form_view` VALUES("32959", "3", "2016-06-18 16:20:54", "207.46.13.52", "364");
INSERT INTO `wp_rg_form_view` VALUES("32960", "10", "2016-06-18 16:20:57", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("32961", "12", "2016-06-18 16:21:01", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("32962", "9", "2016-06-18 16:21:06", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("32963", "7", "2016-06-18 16:21:14", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("32964", "8", "2016-06-18 16:21:22", "207.46.13.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("32965", "11", "2016-06-18 16:21:44", "207.46.13.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("32966", "2", "2016-06-18 16:58:48", "202.46.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("32967", "3", "2016-06-18 17:37:07", "194.225.185.5", "263");
INSERT INTO `wp_rg_form_view` VALUES("32968", "11", "2016-06-18 17:45:44", "88.11.217.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("32969", "12", "2016-06-18 17:46:13", "88.11.217.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("32970", "2", "2016-06-18 17:46:56", "88.11.217.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("32971", "3", "2016-06-18 18:04:56", "162.243.98.76", "3427");
INSERT INTO `wp_rg_form_view` VALUES("32972", "1", "2016-06-18 18:09:23", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32973", "11", "2016-06-18 18:09:48", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32974", "5", "2016-06-18 18:15:18", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32975", "12", "2016-06-18 18:19:03", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32976", "6", "2016-06-18 18:23:28", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32977", "9", "2016-06-18 18:31:18", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32978", "10", "2016-06-18 18:50:48", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32979", "3", "2016-06-18 19:01:34", "162.243.98.76", "1835");
INSERT INTO `wp_rg_form_view` VALUES("32980", "2", "2016-06-18 19:14:03", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32981", "8", "2016-06-18 19:27:58", "162.243.98.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("32982", "3", "2016-06-18 20:36:11", "66.249.79.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("32983", "3", "2016-06-18 21:15:47", "66.249.79.169", "108");
INSERT INTO `wp_rg_form_view` VALUES("32984", "3", "2016-06-18 22:00:33", "66.249.75.188", "27");
INSERT INTO `wp_rg_form_view` VALUES("32985", "3", "2016-06-18 23:03:41", "77.75.79.36", "31");
INSERT INTO `wp_rg_form_view` VALUES("32986", "2", "2016-06-19 00:10:18", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("32987", "3", "2016-06-19 00:10:19", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("32988", "3", "2016-06-19 01:27:07", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("32989", "3", "2016-06-19 02:32:17", "216.252.84.27", "18");
INSERT INTO `wp_rg_form_view` VALUES("32990", "3", "2016-06-19 03:01:47", "202.46.49.119", "13");
INSERT INTO `wp_rg_form_view` VALUES("32991", "10", "2016-06-19 04:11:53", "207.46.13.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("32992", "3", "2016-06-19 04:11:55", "207.46.13.44", "18");
INSERT INTO `wp_rg_form_view` VALUES("32993", "3", "2016-06-19 06:05:04", "66.249.79.176", "96");
INSERT INTO `wp_rg_form_view` VALUES("32994", "10", "2016-06-19 06:40:13", "51.255.65.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("32995", "3", "2016-06-19 07:04:06", "66.249.79.162", "46");
INSERT INTO `wp_rg_form_view` VALUES("32996", "10", "2016-06-19 08:10:21", "207.46.13.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("32997", "3", "2016-06-19 08:10:22", "207.46.13.114", "135");
INSERT INTO `wp_rg_form_view` VALUES("32998", "2", "2016-06-19 08:11:20", "104.156.230.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("32999", "3", "2016-06-19 09:10:08", "66.249.79.169", "46");
INSERT INTO `wp_rg_form_view` VALUES("33000", "3", "2016-06-19 10:10:40", "66.249.79.176", "37");
INSERT INTO `wp_rg_form_view` VALUES("33001", "3", "2016-06-19 11:26:31", "68.180.229.224", "39");
INSERT INTO `wp_rg_form_view` VALUES("33002", "3", "2016-06-19 12:31:42", "164.132.161.69", "28");
INSERT INTO `wp_rg_form_view` VALUES("33003", "3", "2016-06-19 13:48:30", "207.46.13.52", "18");
INSERT INTO `wp_rg_form_view` VALUES("33004", "1", "2016-06-19 14:07:54", "104.254.212.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("33005", "3", "2016-06-19 14:07:54", "104.254.212.100", "54");
INSERT INTO `wp_rg_form_view` VALUES("33006", "3", "2016-06-19 15:10:54", "195.34.78.57", "27");
INSERT INTO `wp_rg_form_view` VALUES("33007", "3", "2016-06-19 16:21:15", "77.75.79.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("33008", "1", "2016-06-19 17:09:25", "188.214.48.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("33009", "3", "2016-06-19 17:09:28", "188.214.48.145", "64");
INSERT INTO `wp_rg_form_view` VALUES("33010", "3", "2016-06-19 18:46:56", "207.46.13.52", "27");
INSERT INTO `wp_rg_form_view` VALUES("33011", "12", "2016-06-19 19:13:48", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("33012", "3", "2016-06-19 19:13:48", "66.249.79.169", "171");
INSERT INTO `wp_rg_form_view` VALUES("33013", "2", "2016-06-19 19:47:08", "45.32.130.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("33014", "3", "2016-06-19 20:01:52", "52.33.250.54", "81");
INSERT INTO `wp_rg_form_view` VALUES("33015", "3", "2016-06-19 21:07:07", "24.68.231.31", "19");
INSERT INTO `wp_rg_form_view` VALUES("33016", "3", "2016-06-19 22:04:17", "192.243.55.137", "84");
INSERT INTO `wp_rg_form_view` VALUES("33017", "12", "2016-06-19 22:47:09", "96.50.18.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("33018", "3", "2016-06-19 23:02:52", "46.185.68.84", "82");
INSERT INTO `wp_rg_form_view` VALUES("33019", "3", "2016-06-20 00:31:56", "192.243.55.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("33020", "3", "2016-06-20 01:11:21", "68.180.229.224", "57");
INSERT INTO `wp_rg_form_view` VALUES("33021", "11", "2016-06-20 01:47:38", "164.132.161.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("33022", "3", "2016-06-20 02:36:44", "207.46.13.44", "28");
INSERT INTO `wp_rg_form_view` VALUES("33023", "3", "2016-06-20 03:13:04", "134.249.54.248", "47");
INSERT INTO `wp_rg_form_view` VALUES("33024", "11", "2016-06-20 03:26:30", "207.46.13.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("33025", "3", "2016-06-20 04:34:46", "207.46.13.114", "10");
INSERT INTO `wp_rg_form_view` VALUES("33026", "3", "2016-06-20 05:29:51", "207.46.13.114", "45");
INSERT INTO `wp_rg_form_view` VALUES("33027", "5", "2016-06-20 05:43:49", "77.75.76.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("33028", "3", "2016-06-20 06:14:41", "207.46.13.114", "72");
INSERT INTO `wp_rg_form_view` VALUES("33029", "3", "2016-06-20 07:01:23", "77.75.76.169", "29");
INSERT INTO `wp_rg_form_view` VALUES("33030", "10", "2016-06-20 07:25:38", "199.59.148.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("33031", "3", "2016-06-20 08:04:49", "207.46.13.52", "66");
INSERT INTO `wp_rg_form_view` VALUES("33032", "10", "2016-06-20 08:36:34", "207.46.13.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("33033", "3", "2016-06-20 09:27:46", "199.59.148.209", "19");
INSERT INTO `wp_rg_form_view` VALUES("33034", "3", "2016-06-20 10:14:24", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("33035", "3", "2016-06-20 11:05:38", "192.243.55.132", "31");
INSERT INTO `wp_rg_form_view` VALUES("33036", "11", "2016-06-20 12:11:00", "157.55.39.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("33037", "3", "2016-06-20 12:11:01", "157.55.39.71", "73");
INSERT INTO `wp_rg_form_view` VALUES("33038", "3", "2016-06-20 13:07:28", "66.249.79.162", "75");
INSERT INTO `wp_rg_form_view` VALUES("33039", "1", "2016-06-20 13:19:49", "104.129.9.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("33040", "11", "2016-06-20 13:21:17", "157.55.39.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("33041", "3", "2016-06-20 14:09:46", "192.81.73.82", "65");
INSERT INTO `wp_rg_form_view` VALUES("33042", "3", "2016-06-20 15:07:50", "66.249.79.169", "45");
INSERT INTO `wp_rg_form_view` VALUES("33043", "2", "2016-06-20 15:20:10", "202.46.58.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("33044", "6", "2016-06-20 15:53:40", "202.46.55.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("33045", "3", "2016-06-20 16:00:34", "207.46.13.52", "45");
INSERT INTO `wp_rg_form_view` VALUES("33046", "1", "2016-06-20 16:51:37", "45.72.0.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("33047", "3", "2016-06-20 17:00:40", "202.46.54.23", "115");
INSERT INTO `wp_rg_form_view` VALUES("33048", "3", "2016-06-20 18:07:38", "202.46.58.59", "47");
INSERT INTO `wp_rg_form_view` VALUES("33049", "3", "2016-06-20 19:01:43", "164.132.161.64", "75");
INSERT INTO `wp_rg_form_view` VALUES("33050", "3", "2016-06-20 20:08:09", "192.243.55.138", "98");
INSERT INTO `wp_rg_form_view` VALUES("33051", "10", "2016-06-20 20:53:21", "164.132.161.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("33052", "3", "2016-06-20 21:01:32", "192.243.55.130", "72");
INSERT INTO `wp_rg_form_view` VALUES("33053", "3", "2016-06-20 22:02:50", "1.125.49.55", "45");
INSERT INTO `wp_rg_form_view` VALUES("33054", "1", "2016-06-20 23:10:28", "23.245.223.31", "2");
INSERT INTO `wp_rg_form_view` VALUES("33055", "3", "2016-06-20 23:10:29", "23.245.223.31", "127");
INSERT INTO `wp_rg_form_view` VALUES("33056", "11", "2016-06-20 23:13:51", "78.250.149.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("33057", "3", "2016-06-21 00:02:29", "68.180.229.224", "56");
INSERT INTO `wp_rg_form_view` VALUES("33058", "3", "2016-06-21 01:14:28", "207.46.13.114", "76");
INSERT INTO `wp_rg_form_view` VALUES("33059", "3", "2016-06-21 02:02:22", "72.143.235.130", "36");
INSERT INTO `wp_rg_form_view` VALUES("33060", "7", "2016-06-21 02:40:24", "40.77.167.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("33061", "3", "2016-06-21 03:15:02", "24.68.232.76", "523");
INSERT INTO `wp_rg_form_view` VALUES("33062", "3", "2016-06-21 03:15:02", "24.68.232.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("33063", "10", "2016-06-21 03:17:03", "157.55.39.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("33064", "6", "2016-06-21 03:51:13", "157.55.39.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("33065", "5", "2016-06-21 03:51:20", "157.55.39.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("33066", "9", "2016-06-21 03:51:50", "157.55.39.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("33067", "8", "2016-06-21 03:51:56", "40.77.167.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("33068", "3", "2016-06-21 04:10:08", "40.77.167.37", "68");
INSERT INTO `wp_rg_form_view` VALUES("33069", "3", "2016-06-21 05:01:45", "66.249.79.176", "47");
INSERT INTO `wp_rg_form_view` VALUES("33070", "3", "2016-06-21 06:05:35", "134.249.54.248", "183");
INSERT INTO `wp_rg_form_view` VALUES("33071", "3", "2016-06-21 06:05:35", "134.249.54.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("33072", "1", "2016-06-21 06:47:25", "202.6.158.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("33073", "2", "2016-06-21 07:04:52", "157.55.39.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("33074", "3", "2016-06-21 07:04:57", "157.55.39.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("33075", "3", "2016-06-21 08:14:14", "40.77.167.77", "55");
INSERT INTO `wp_rg_form_view` VALUES("33076", "12", "2016-06-21 08:30:15", "40.77.167.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("33077", "3", "2016-06-21 09:08:05", "157.55.39.133", "27");
INSERT INTO `wp_rg_form_view` VALUES("33078", "3", "2016-06-21 10:03:22", "66.249.79.162", "36");
INSERT INTO `wp_rg_form_view` VALUES("33079", "3", "2016-06-21 11:01:00", "40.77.167.37", "27");
INSERT INTO `wp_rg_form_view` VALUES("33080", "3", "2016-06-21 12:15:00", "40.77.167.37", "54");
INSERT INTO `wp_rg_form_view` VALUES("33081", "6", "2016-06-21 12:37:05", "202.46.51.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("33082", "10", "2016-06-21 12:54:25", "51.255.65.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("33083", "3", "2016-06-21 13:17:54", "77.75.79.17", "41");
INSERT INTO `wp_rg_form_view` VALUES("33084", "3", "2016-06-21 14:01:42", "157.55.39.91", "36");
INSERT INTO `wp_rg_form_view` VALUES("33085", "3", "2016-06-21 15:04:32", "157.55.39.91", "28");
INSERT INTO `wp_rg_form_view` VALUES("33086", "3", "2016-06-21 16:00:31", "66.249.79.176", "28");
INSERT INTO `wp_rg_form_view` VALUES("33087", "3", "2016-06-21 17:02:13", "24.108.36.242", "67");
INSERT INTO `wp_rg_form_view` VALUES("33088", "3", "2016-06-21 18:23:12", "134.249.54.248", "66");
INSERT INTO `wp_rg_form_view` VALUES("33089", "3", "2016-06-21 19:02:20", "207.216.13.45", "55");
INSERT INTO `wp_rg_form_view` VALUES("33090", "3", "2016-06-21 20:03:45", "5.9.112.6", "54");
INSERT INTO `wp_rg_form_view` VALUES("33091", "3", "2016-06-21 21:02:44", "66.249.79.169", "344");
INSERT INTO `wp_rg_form_view` VALUES("33092", "11", "2016-06-21 21:15:56", "196.207.151.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("33093", "12", "2016-06-21 21:16:32", "196.207.151.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("33094", "2", "2016-06-21 21:17:19", "196.207.151.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("33095", "3", "2016-06-21 22:09:03", "66.249.79.162", "63");
INSERT INTO `wp_rg_form_view` VALUES("33096", "10", "2016-06-21 22:12:18", "202.46.56.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("33097", "3", "2016-06-21 23:02:15", "96.54.55.244", "81");
INSERT INTO `wp_rg_form_view` VALUES("33098", "11", "2016-06-21 23:12:06", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33099", "3", "2016-06-22 00:07:57", "66.249.79.169", "66");
INSERT INTO `wp_rg_form_view` VALUES("33100", "3", "2016-06-22 01:07:40", "50.65.7.246", "118");
INSERT INTO `wp_rg_form_view` VALUES("33101", "12", "2016-06-22 01:51:44", "157.55.39.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("33102", "3", "2016-06-22 02:02:17", "184.66.50.161", "45");
INSERT INTO `wp_rg_form_view` VALUES("33103", "3", "2016-06-22 03:15:03", "157.55.39.93", "27");
INSERT INTO `wp_rg_form_view` VALUES("33104", "3", "2016-06-22 04:10:36", "202.46.50.185", "10");
INSERT INTO `wp_rg_form_view` VALUES("33105", "3", "2016-06-22 05:53:43", "54.149.128.167", "256");
INSERT INTO `wp_rg_form_view` VALUES("33106", "8", "2016-06-22 05:53:59", "54.149.128.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("33107", "11", "2016-06-22 05:54:45", "54.149.128.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("33108", "1", "2016-06-22 07:21:52", "24.16.143.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("33109", "3", "2016-06-22 07:21:53", "24.16.143.88", "58");
INSERT INTO `wp_rg_form_view` VALUES("33110", "10", "2016-06-22 09:03:54", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33111", "3", "2016-06-22 09:03:55", "68.180.229.224", "47");
INSERT INTO `wp_rg_form_view` VALUES("33112", "3", "2016-06-22 10:33:49", "66.249.75.180", "27");
INSERT INTO `wp_rg_form_view` VALUES("33113", "3", "2016-06-22 11:10:18", "68.180.229.224", "65");
INSERT INTO `wp_rg_form_view` VALUES("33114", "3", "2016-06-22 12:59:08", "157.55.39.165", "9");
INSERT INTO `wp_rg_form_view` VALUES("33115", "3", "2016-06-22 13:15:25", "157.55.39.205", "81");
INSERT INTO `wp_rg_form_view` VALUES("33116", "1", "2016-06-22 13:33:53", "96.54.52.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("33117", "3", "2016-06-22 14:01:16", "68.180.229.224", "58");
INSERT INTO `wp_rg_form_view` VALUES("33118", "3", "2016-06-22 15:15:27", "51.255.65.97", "197");
INSERT INTO `wp_rg_form_view` VALUES("33119", "12", "2016-06-22 15:54:16", "96.50.7.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("33120", "2", "2016-06-22 15:58:46", "96.50.7.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("33121", "3", "2016-06-22 16:08:30", "66.249.79.162", "36");
INSERT INTO `wp_rg_form_view` VALUES("33122", "1", "2016-06-22 16:54:23", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("33123", "3", "2016-06-22 17:41:49", "157.55.39.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("33124", "3", "2016-06-22 18:10:25", "66.249.79.176", "45");
INSERT INTO `wp_rg_form_view` VALUES("33125", "9", "2016-06-22 18:16:06", "66.249.79.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("33126", "3", "2016-06-22 19:07:23", "66.249.79.176", "79");
INSERT INTO `wp_rg_form_view` VALUES("33127", "3", "2016-06-22 20:01:06", "96.50.16.236", "173");
INSERT INTO `wp_rg_form_view` VALUES("33128", "8", "2016-06-22 20:17:00", "76.14.191.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("33129", "3", "2016-06-22 21:04:01", "207.46.13.28", "27");
INSERT INTO `wp_rg_form_view` VALUES("33130", "3", "2016-06-22 22:16:03", "108.62.59.248", "75");
INSERT INTO `wp_rg_form_view` VALUES("33131", "3", "2016-06-22 22:16:03", "173.234.14.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33132", "1", "2016-06-22 22:22:22", "24.16.143.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("33133", "3", "2016-06-22 23:12:42", "178.137.84.39", "65");
INSERT INTO `wp_rg_form_view` VALUES("33134", "3", "2016-06-22 23:12:42", "178.137.84.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("33135", "3", "2016-06-22 23:12:42", "178.137.84.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("33136", "3", "2016-06-22 23:12:42", "178.137.84.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("33137", "3", "2016-06-23 00:27:58", "157.55.39.93", "18");
INSERT INTO `wp_rg_form_view` VALUES("33138", "3", "2016-06-23 01:07:22", "66.249.79.169", "36");
INSERT INTO `wp_rg_form_view` VALUES("33139", "3", "2016-06-23 02:02:07", "66.249.79.176", "54");
INSERT INTO `wp_rg_form_view` VALUES("33140", "3", "2016-06-23 03:08:42", "66.249.79.169", "45");
INSERT INTO `wp_rg_form_view` VALUES("33141", "9", "2016-06-23 03:18:56", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("33142", "3", "2016-06-23 04:01:52", "68.180.229.224", "47");
INSERT INTO `wp_rg_form_view` VALUES("33143", "3", "2016-06-23 05:10:39", "68.180.229.224", "281");
INSERT INTO `wp_rg_form_view` VALUES("33144", "11", "2016-06-23 05:31:11", "92.59.49.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("33145", "12", "2016-06-23 05:33:34", "92.59.49.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("33146", "2", "2016-06-23 05:36:26", "92.59.49.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("33147", "3", "2016-06-23 06:06:46", "66.249.79.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("33148", "12", "2016-06-23 06:40:43", "157.55.39.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("33149", "3", "2016-06-23 07:40:30", "217.69.133.228", "20");
INSERT INTO `wp_rg_form_view` VALUES("33150", "10", "2016-06-23 08:16:47", "77.75.78.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("33151", "3", "2016-06-23 08:16:48", "77.75.78.167", "82");
INSERT INTO `wp_rg_form_view` VALUES("33152", "3", "2016-06-23 09:32:06", "157.55.39.205", "36");
INSERT INTO `wp_rg_form_view` VALUES("33153", "3", "2016-06-23 10:13:07", "157.55.39.93", "36");
INSERT INTO `wp_rg_form_view` VALUES("33154", "10", "2016-06-23 10:37:35", "157.55.39.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("33155", "3", "2016-06-23 11:15:03", "68.180.229.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("33156", "3", "2016-06-23 12:30:02", "202.46.55.19", "9");
INSERT INTO `wp_rg_form_view` VALUES("33157", "3", "2016-06-23 13:34:04", "66.249.79.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("33158", "3", "2016-06-23 14:05:09", "66.249.79.176", "9");
INSERT INTO `wp_rg_form_view` VALUES("33159", "3", "2016-06-23 15:04:30", "202.46.48.120", "75");
INSERT INTO `wp_rg_form_view` VALUES("33160", "3", "2016-06-23 16:14:05", "141.8.143.242", "28");
INSERT INTO `wp_rg_form_view` VALUES("33161", "3", "2016-06-23 17:08:37", "191.101.24.10", "519");
INSERT INTO `wp_rg_form_view` VALUES("33162", "9", "2016-06-23 17:35:03", "207.46.13.59", "3");
INSERT INTO `wp_rg_form_view` VALUES("33163", "10", "2016-06-23 17:35:19", "207.46.13.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("33164", "12", "2016-06-23 17:35:28", "207.46.13.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("33165", "7", "2016-06-23 17:35:30", "207.46.13.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("33166", "8", "2016-06-23 17:36:00", "157.55.39.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("33167", "1", "2016-06-23 17:36:15", "207.46.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("33168", "11", "2016-06-23 17:36:18", "207.46.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("33169", "3", "2016-06-23 18:03:52", "207.46.13.28", "19");
INSERT INTO `wp_rg_form_view` VALUES("33170", "3", "2016-06-23 19:12:30", "142.36.63.33", "99");
INSERT INTO `wp_rg_form_view` VALUES("33171", "3", "2016-06-23 20:04:55", "202.46.56.98", "71");
INSERT INTO `wp_rg_form_view` VALUES("33172", "3", "2016-06-23 21:19:35", "202.46.54.186", "48");
INSERT INTO `wp_rg_form_view` VALUES("33173", "3", "2016-06-23 22:31:40", "66.249.79.176", "56");
INSERT INTO `wp_rg_form_view` VALUES("33174", "9", "2016-06-23 22:42:37", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("33175", "3", "2016-06-23 23:13:48", "217.69.133.228", "103");
INSERT INTO `wp_rg_form_view` VALUES("33176", "3", "2016-06-24 00:12:59", "192.243.55.132", "81");
INSERT INTO `wp_rg_form_view` VALUES("33177", "3", "2016-06-24 01:14:18", "207.46.13.28", "29");
INSERT INTO `wp_rg_form_view` VALUES("33178", "3", "2016-06-24 02:12:05", "157.55.39.205", "117");
INSERT INTO `wp_rg_form_view` VALUES("33179", "10", "2016-06-24 02:24:04", "66.249.79.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("33180", "9", "2016-06-24 02:47:06", "66.249.75.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("33181", "3", "2016-06-24 03:44:15", "51.255.65.6", "20");
INSERT INTO `wp_rg_form_view` VALUES("33182", "3", "2016-06-24 04:04:36", "202.46.58.210", "58");
INSERT INTO `wp_rg_form_view` VALUES("33183", "3", "2016-06-24 05:04:22", "207.46.13.28", "37");
INSERT INTO `wp_rg_form_view` VALUES("33184", "3", "2016-06-24 06:02:01", "199.21.99.202", "29");
INSERT INTO `wp_rg_form_view` VALUES("33185", "3", "2016-06-24 07:18:52", "68.180.229.224", "27");
INSERT INTO `wp_rg_form_view` VALUES("33186", "12", "2016-06-24 07:19:35", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33187", "3", "2016-06-24 08:14:38", "207.46.13.28", "54");
INSERT INTO `wp_rg_form_view` VALUES("33188", "3", "2016-06-24 09:05:07", "194.187.170.219", "92");
INSERT INTO `wp_rg_form_view` VALUES("33189", "3", "2016-06-24 10:04:09", "194.187.170.219", "147");
INSERT INTO `wp_rg_form_view` VALUES("33190", "3", "2016-06-24 11:07:59", "194.187.170.211", "75");
INSERT INTO `wp_rg_form_view` VALUES("33191", "2", "2016-06-24 11:30:08", "194.187.170.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("33192", "3", "2016-06-24 12:15:45", "164.132.161.2", "128");
INSERT INTO `wp_rg_form_view` VALUES("33193", "3", "2016-06-24 13:04:02", "194.187.170.219", "56");
INSERT INTO `wp_rg_form_view` VALUES("33194", "3", "2016-06-24 14:05:03", "194.187.170.213", "76");
INSERT INTO `wp_rg_form_view` VALUES("33195", "10", "2016-06-24 14:57:06", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33196", "10", "2016-06-24 15:02:00", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33197", "3", "2016-06-24 15:02:00", "68.180.229.224", "116");
INSERT INTO `wp_rg_form_view` VALUES("33198", "3", "2016-06-24 16:52:00", "66.249.79.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("33199", "3", "2016-06-24 17:08:30", "79.125.111.42", "18");
INSERT INTO `wp_rg_form_view` VALUES("33200", "3", "2016-06-24 18:31:40", "131.137.245.207", "82");
INSERT INTO `wp_rg_form_view` VALUES("33201", "12", "2016-06-24 18:45:07", "24.108.43.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("33202", "3", "2016-06-24 19:01:49", "68.180.229.224", "55");
INSERT INTO `wp_rg_form_view` VALUES("33203", "3", "2016-06-24 20:02:03", "217.69.133.69", "113");
INSERT INTO `wp_rg_form_view` VALUES("33204", "3", "2016-06-24 21:15:41", "178.137.93.129", "103");
INSERT INTO `wp_rg_form_view` VALUES("33205", "1", "2016-06-24 21:35:04", "192.249.67.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("33206", "3", "2016-06-24 22:04:46", "192.243.55.132", "120");
INSERT INTO `wp_rg_form_view` VALUES("33207", "12", "2016-06-24 22:57:48", "24.69.152.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("33208", "3", "2016-06-24 23:13:32", "66.249.79.169", "137");
INSERT INTO `wp_rg_form_view` VALUES("33209", "1", "2016-06-24 23:48:56", "118.189.157.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("33210", "3", "2016-06-25 00:08:02", "178.137.83.34", "105");
INSERT INTO `wp_rg_form_view` VALUES("33211", "9", "2016-06-25 00:30:16", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("33212", "7", "2016-06-25 00:53:12", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("33213", "3", "2016-06-25 01:01:23", "68.180.229.224", "73");
INSERT INTO `wp_rg_form_view` VALUES("33214", "3", "2016-06-25 02:01:50", "192.243.55.131", "113");
INSERT INTO `wp_rg_form_view` VALUES("33215", "10", "2016-06-25 03:28:19", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33216", "3", "2016-06-25 03:28:22", "68.180.229.224", "289");
INSERT INTO `wp_rg_form_view` VALUES("33217", "12", "2016-06-25 03:44:25", "202.46.52.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("33218", "11", "2016-06-25 03:49:49", "2.51.207.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("33219", "2", "2016-06-25 03:53:22", "2.51.207.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("33220", "1", "2016-06-25 03:53:48", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("33221", "3", "2016-06-25 04:12:04", "66.249.79.162", "73");
INSERT INTO `wp_rg_form_view` VALUES("33222", "3", "2016-06-25 05:02:47", "66.249.79.169", "163");
INSERT INTO `wp_rg_form_view` VALUES("33223", "11", "2016-06-25 05:29:50", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("33224", "2", "2016-06-25 05:29:54", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("33225", "12", "2016-06-25 05:58:20", "24.108.193.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("33226", "3", "2016-06-25 06:17:14", "139.194.53.163", "9");
INSERT INTO `wp_rg_form_view` VALUES("33227", "3", "2016-06-25 07:27:49", "204.79.180.150", "55");
INSERT INTO `wp_rg_form_view` VALUES("33228", "1", "2016-06-25 07:37:39", "192.249.67.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("33229", "3", "2016-06-25 08:02:48", "192.243.55.129", "47");
INSERT INTO `wp_rg_form_view` VALUES("33230", "3", "2016-06-25 09:08:27", "192.243.55.135", "147");
INSERT INTO `wp_rg_form_view` VALUES("33231", "3", "2016-06-25 10:09:19", "66.249.79.169", "27");
INSERT INTO `wp_rg_form_view` VALUES("33232", "1", "2016-06-25 10:48:08", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33233", "3", "2016-06-25 11:07:19", "202.46.56.13", "36");
INSERT INTO `wp_rg_form_view` VALUES("33234", "3", "2016-06-25 12:06:49", "141.8.143.242", "46");
INSERT INTO `wp_rg_form_view` VALUES("33235", "3", "2016-06-25 13:13:52", "199.21.99.202", "28");
INSERT INTO `wp_rg_form_view` VALUES("33236", "10", "2016-06-25 13:15:54", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("33237", "12", "2016-06-25 13:51:40", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33238", "3", "2016-06-25 14:11:55", "68.180.229.224", "38");
INSERT INTO `wp_rg_form_view` VALUES("33239", "3", "2016-06-25 15:17:38", "68.180.229.224", "27");
INSERT INTO `wp_rg_form_view` VALUES("33240", "3", "2016-06-25 16:31:53", "66.249.75.188", "39");
INSERT INTO `wp_rg_form_view` VALUES("33241", "3", "2016-06-25 17:16:33", "157.55.39.194", "18");
INSERT INTO `wp_rg_form_view` VALUES("33242", "3", "2016-06-25 18:01:58", "66.249.79.162", "731");
INSERT INTO `wp_rg_form_view` VALUES("33243", "2", "2016-06-25 18:54:46", "5.79.68.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("33244", "12", "2016-06-25 18:55:03", "5.79.68.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("33245", "11", "2016-06-25 18:55:33", "5.79.68.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("33246", "1", "2016-06-25 18:55:51", "5.79.68.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("33247", "10", "2016-06-25 18:56:19", "5.79.68.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("33248", "3", "2016-06-25 19:44:32", "178.137.84.39", "72");
INSERT INTO `wp_rg_form_view` VALUES("33249", "3", "2016-06-25 20:10:47", "178.137.93.129", "64");
INSERT INTO `wp_rg_form_view` VALUES("33250", "12", "2016-06-25 21:20:14", "104.236.68.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("33251", "11", "2016-06-25 21:20:13", "104.236.68.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("33252", "3", "2016-06-25 21:20:14", "104.236.68.137", "209");
INSERT INTO `wp_rg_form_view` VALUES("33253", "3", "2016-06-25 21:20:14", "104.236.68.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("33254", "2", "2016-06-25 21:20:14", "104.236.68.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("33255", "3", "2016-06-25 22:25:19", "202.46.50.19", "55");
INSERT INTO `wp_rg_form_view` VALUES("33256", "1", "2016-06-25 22:56:20", "209.222.100.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("33257", "3", "2016-06-25 23:40:26", "157.55.39.63", "9");
INSERT INTO `wp_rg_form_view` VALUES("33258", "2", "2016-06-26 00:11:29", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33259", "3", "2016-06-26 00:11:29", "68.180.229.224", "56");
INSERT INTO `wp_rg_form_view` VALUES("33260", "3", "2016-06-26 01:01:01", "164.132.161.69", "18");
INSERT INTO `wp_rg_form_view` VALUES("33261", "3", "2016-06-26 03:06:50", "202.46.54.207", "18");
INSERT INTO `wp_rg_form_view` VALUES("33262", "3", "2016-06-26 04:24:04", "68.180.229.224", "13");
INSERT INTO `wp_rg_form_view` VALUES("33263", "3", "2016-06-26 05:00:50", "91.200.12.4", "63");
INSERT INTO `wp_rg_form_view` VALUES("33264", "3", "2016-06-26 06:18:10", "68.180.229.224", "19");
INSERT INTO `wp_rg_form_view` VALUES("33265", "3", "2016-06-26 07:09:23", "194.187.170.207", "146");
INSERT INTO `wp_rg_form_view` VALUES("33266", "1", "2016-06-26 07:14:56", "107.161.84.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("33267", "3", "2016-06-26 08:05:57", "107.150.78.212", "105");
INSERT INTO `wp_rg_form_view` VALUES("33268", "2", "2016-06-26 08:07:56", "194.187.170.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("33269", "3", "2016-06-26 09:01:53", "66.249.79.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("33270", "3", "2016-06-26 11:00:13", "207.46.13.25", "38");
INSERT INTO `wp_rg_form_view` VALUES("33271", "3", "2016-06-26 12:41:05", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("33272", "3", "2016-06-26 13:11:17", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("33273", "3", "2016-06-26 14:34:04", "80.147.23.181", "45");
INSERT INTO `wp_rg_form_view` VALUES("33274", "10", "2016-06-26 14:35:30", "51.255.65.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("33275", "3", "2016-06-26 15:06:32", "194.187.170.218", "91");
INSERT INTO `wp_rg_form_view` VALUES("33276", "1", "2016-06-26 15:36:43", "194.187.170.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("33277", "3", "2016-06-26 16:02:17", "194.187.170.218", "21");
INSERT INTO `wp_rg_form_view` VALUES("33278", "3", "2016-06-26 17:11:00", "66.249.79.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("33279", "3", "2016-06-26 18:15:07", "68.180.229.224", "67");
INSERT INTO `wp_rg_form_view` VALUES("33280", "3", "2016-06-26 19:05:04", "178.137.93.129", "57");
INSERT INTO `wp_rg_form_view` VALUES("33281", "3", "2016-06-26 20:35:49", "124.73.6.138", "18");
INSERT INTO `wp_rg_form_view` VALUES("33282", "3", "2016-06-26 21:00:30", "157.55.39.63", "90");
INSERT INTO `wp_rg_form_view` VALUES("33283", "10", "2016-06-26 21:08:21", "207.46.13.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("33284", "8", "2016-06-26 21:14:07", "66.249.79.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("33285", "1", "2016-06-26 21:21:40", "5.189.142.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("33286", "3", "2016-06-26 22:20:42", "124.73.6.138", "18");
INSERT INTO `wp_rg_form_view` VALUES("33287", "3", "2016-06-26 23:32:05", "68.180.229.224", "82");
INSERT INTO `wp_rg_form_view` VALUES("33288", "5", "2016-06-26 23:34:38", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33289", "3", "2016-06-27 00:02:22", "202.46.49.67", "48");
INSERT INTO `wp_rg_form_view` VALUES("33290", "3", "2016-06-27 01:02:32", "157.55.39.194", "59");
INSERT INTO `wp_rg_form_view` VALUES("33291", "1", "2016-06-27 01:29:06", "104.227.210.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33292", "3", "2016-06-27 02:54:44", "66.249.79.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("33293", "3", "2016-06-27 04:17:05", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("33294", "3", "2016-06-27 05:02:13", "157.55.39.194", "38");
INSERT INTO `wp_rg_form_view` VALUES("33295", "3", "2016-06-27 06:31:16", "51.255.65.21", "10");
INSERT INTO `wp_rg_form_view` VALUES("33296", "3", "2016-06-27 07:14:25", "178.137.83.34", "91");
INSERT INTO `wp_rg_form_view` VALUES("33297", "3", "2016-06-27 07:14:25", "178.137.83.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("33298", "3", "2016-06-27 07:14:25", "178.137.83.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("33299", "1", "2016-06-27 07:41:20", "5.189.142.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("33300", "3", "2016-06-27 08:01:54", "194.187.170.208", "103");
INSERT INTO `wp_rg_form_view` VALUES("33301", "10", "2016-06-27 08:04:07", "194.187.170.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("33302", "8", "2016-06-27 08:23:58", "194.187.170.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("33303", "3", "2016-06-27 09:13:02", "194.187.170.208", "58");
INSERT INTO `wp_rg_form_view` VALUES("33304", "3", "2016-06-27 10:21:08", "178.137.93.129", "41");
INSERT INTO `wp_rg_form_view` VALUES("33305", "3", "2016-06-27 11:40:10", "66.249.79.169", "18");
INSERT INTO `wp_rg_form_view` VALUES("33306", "3", "2016-06-27 12:35:17", "124.73.6.138", "27");
INSERT INTO `wp_rg_form_view` VALUES("33307", "3", "2016-06-27 13:13:25", "68.180.229.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("33308", "1", "2016-06-27 14:06:18", "187.161.241.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("33309", "3", "2016-06-27 14:06:19", "187.161.241.2", "28");
INSERT INTO `wp_rg_form_view` VALUES("33310", "3", "2016-06-27 15:01:48", "68.180.229.224", "57");
INSERT INTO `wp_rg_form_view` VALUES("33311", "10", "2016-06-27 15:57:39", "199.59.148.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("33312", "3", "2016-06-27 16:00:04", "70.66.170.202", "104");
INSERT INTO `wp_rg_form_view` VALUES("33313", "10", "2016-06-27 16:18:13", "194.187.170.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("33314", "8", "2016-06-27 16:41:40", "194.187.170.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("33315", "3", "2016-06-27 17:02:44", "199.16.156.124", "63");
INSERT INTO `wp_rg_form_view` VALUES("33316", "11", "2016-06-27 17:42:04", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("33317", "1", "2016-06-27 17:53:51", "202.46.56.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("33318", "3", "2016-06-27 18:09:12", "24.69.79.46", "162");
INSERT INTO `wp_rg_form_view` VALUES("33319", "3", "2016-06-27 19:00:49", "202.46.56.209", "56");
INSERT INTO `wp_rg_form_view` VALUES("33320", "3", "2016-06-27 20:30:04", "96.50.16.236", "108");
INSERT INTO `wp_rg_form_view` VALUES("33321", "3", "2016-06-27 21:05:43", "70.66.184.178", "83");
INSERT INTO `wp_rg_form_view` VALUES("33322", "1", "2016-06-27 21:33:35", "37.72.191.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("33323", "3", "2016-06-27 22:31:35", "178.137.84.39", "28");
INSERT INTO `wp_rg_form_view` VALUES("33324", "3", "2016-06-27 23:43:15", "77.75.78.169", "19");
INSERT INTO `wp_rg_form_view` VALUES("33325", "11", "2016-06-28 00:02:16", "124.73.6.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("33326", "3", "2016-06-28 00:02:16", "124.73.6.138", "167");
INSERT INTO `wp_rg_form_view` VALUES("33327", "9", "2016-06-28 00:07:55", "207.46.13.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("33328", "12", "2016-06-28 00:24:38", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("33329", "10", "2016-06-28 00:33:15", "194.187.170.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33330", "8", "2016-06-28 00:54:56", "194.187.170.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33331", "3", "2016-06-28 01:02:20", "194.187.170.221", "104");
INSERT INTO `wp_rg_form_view` VALUES("33332", "1", "2016-06-28 01:11:26", "96.54.210.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("33333", "3", "2016-06-28 02:05:30", "202.46.51.84", "474");
INSERT INTO `wp_rg_form_view` VALUES("33334", "8", "2016-06-28 02:47:07", "157.55.39.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("33335", "5", "2016-06-28 02:47:11", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("33336", "6", "2016-06-28 02:47:16", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("33337", "10", "2016-06-28 02:47:27", "157.55.39.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("33338", "9", "2016-06-28 02:47:33", "207.46.13.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("33339", "3", "2016-06-28 03:03:32", "108.180.31.157", "45");
INSERT INTO `wp_rg_form_view` VALUES("33340", "1", "2016-06-28 03:47:43", "24.68.38.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("33341", "1", "2016-06-28 04:10:16", "107.150.74.65", "6");
INSERT INTO `wp_rg_form_view` VALUES("33342", "3", "2016-06-28 04:10:17", "107.150.74.65", "149");
INSERT INTO `wp_rg_form_view` VALUES("33343", "3", "2016-06-28 05:02:07", "66.249.79.162", "102");
INSERT INTO `wp_rg_form_view` VALUES("33344", "6", "2016-06-28 05:08:28", "144.76.71.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("33345", "12", "2016-06-28 05:35:44", "24.108.193.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("33346", "1", "2016-06-28 05:58:49", "104.160.28.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("33347", "3", "2016-06-28 06:07:51", "199.21.99.202", "65");
INSERT INTO `wp_rg_form_view` VALUES("33348", "10", "2016-06-28 06:28:07", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33349", "3", "2016-06-28 07:12:05", "66.249.79.169", "58");
INSERT INTO `wp_rg_form_view` VALUES("33350", "1", "2016-06-28 07:41:25", "107.150.74.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("33351", "10", "2016-06-28 08:28:42", "202.46.58.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("33352", "3", "2016-06-28 08:28:48", "202.46.58.152", "9");
INSERT INTO `wp_rg_form_view` VALUES("33353", "3", "2016-06-28 09:01:57", "202.46.51.194", "85");
INSERT INTO `wp_rg_form_view` VALUES("33354", "1", "2016-06-28 09:28:09", "209.222.105.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("33355", "11", "2016-06-28 10:06:29", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33356", "3", "2016-06-28 10:06:30", "68.180.229.224", "36");
INSERT INTO `wp_rg_form_view` VALUES("33357", "3", "2016-06-28 11:34:18", "54.175.191.57", "56");
INSERT INTO `wp_rg_form_view` VALUES("33358", "6", "2016-06-28 11:38:04", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33359", "8", "2016-06-28 11:43:45", "194.187.170.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("33360", "10", "2016-06-28 11:48:51", "194.187.170.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("33361", "3", "2016-06-28 12:12:10", "194.187.170.220", "59");
INSERT INTO `wp_rg_form_view` VALUES("33362", "8", "2016-06-28 12:30:40", "194.187.170.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("33363", "10", "2016-06-28 12:35:27", "194.187.170.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("33364", "3", "2016-06-28 13:13:51", "66.249.79.169", "28");
INSERT INTO `wp_rg_form_view` VALUES("33365", "12", "2016-06-28 13:56:52", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33366", "3", "2016-06-28 14:33:04", "24.114.38.218", "37");
INSERT INTO `wp_rg_form_view` VALUES("33367", "3", "2016-06-28 15:01:36", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("33368", "3", "2016-06-28 16:08:14", "178.137.93.129", "50");
INSERT INTO `wp_rg_form_view` VALUES("33369", "3", "2016-06-28 16:08:14", "178.137.93.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("33370", "3", "2016-06-28 17:21:10", "178.137.93.129", "60");
INSERT INTO `wp_rg_form_view` VALUES("33371", "3", "2016-06-28 18:05:24", "178.137.93.129", "173");
INSERT INTO `wp_rg_form_view` VALUES("33372", "2", "2016-06-28 18:31:35", "54.211.205.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("33373", "10", "2016-06-28 19:05:07", "157.55.39.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("33374", "3", "2016-06-28 19:05:11", "157.55.39.246", "48");
INSERT INTO `wp_rg_form_view` VALUES("33375", "3", "2016-06-28 20:26:42", "157.55.39.90", "55");
INSERT INTO `wp_rg_form_view` VALUES("33376", "3", "2016-06-28 21:03:43", "205.250.182.195", "99");
INSERT INTO `wp_rg_form_view` VALUES("33377", "3", "2016-06-28 22:24:15", "192.243.55.129", "27");
INSERT INTO `wp_rg_form_view` VALUES("33378", "3", "2016-06-28 23:13:48", "178.137.93.129", "46");
INSERT INTO `wp_rg_form_view` VALUES("33379", "3", "2016-06-28 23:13:48", "178.137.93.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("33380", "3", "2016-06-29 00:10:39", "77.75.78.168", "80");
INSERT INTO `wp_rg_form_view` VALUES("33381", "3", "2016-06-29 01:32:52", "202.46.53.50", "9");
INSERT INTO `wp_rg_form_view` VALUES("33382", "3", "2016-06-29 02:16:01", "192.243.55.133", "27");
INSERT INTO `wp_rg_form_view` VALUES("33383", "3", "2016-06-29 03:16:00", "66.249.79.169", "2051");
INSERT INTO `wp_rg_form_view` VALUES("33384", "1", "2016-06-29 03:33:00", "104.131.118.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33385", "11", "2016-06-29 03:33:26", "104.131.118.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("33386", "5", "2016-06-29 03:39:17", "104.131.118.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33387", "12", "2016-06-29 03:42:20", "104.131.118.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33388", "6", "2016-06-29 03:47:06", "104.131.118.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33389", "9", "2016-06-29 03:54:56", "104.131.118.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33390", "3", "2016-06-29 04:00:16", "104.131.118.100", "3105");
INSERT INTO `wp_rg_form_view` VALUES("33391", "10", "2016-06-29 04:14:31", "104.131.118.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33392", "2", "2016-06-29 04:37:41", "104.131.118.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33393", "8", "2016-06-29 04:51:31", "104.131.118.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33394", "8", "2016-06-29 05:35:05", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("33395", "3", "2016-06-29 05:35:08", "66.249.79.176", "74");
INSERT INTO `wp_rg_form_view` VALUES("33396", "10", "2016-06-29 05:45:32", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("33397", "3", "2016-06-29 06:03:37", "24.68.41.139", "69");
INSERT INTO `wp_rg_form_view` VALUES("33398", "2", "2016-06-29 06:30:45", "192.243.55.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("33399", "3", "2016-06-29 07:07:19", "66.249.79.169", "28");
INSERT INTO `wp_rg_form_view` VALUES("33400", "1", "2016-06-29 08:12:03", "110.93.205.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("33401", "3", "2016-06-29 08:12:04", "110.93.205.242", "19");
INSERT INTO `wp_rg_form_view` VALUES("33402", "3", "2016-06-29 09:27:51", "51.255.65.11", "63");
INSERT INTO `wp_rg_form_view` VALUES("33403", "3", "2016-06-29 10:27:59", "157.55.39.194", "46");
INSERT INTO `wp_rg_form_view` VALUES("33404", "1", "2016-06-29 10:29:48", "182.74.209.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("33405", "3", "2016-06-29 11:15:26", "68.180.229.224", "36");
INSERT INTO `wp_rg_form_view` VALUES("33406", "3", "2016-06-29 12:02:21", "68.180.229.224", "79");
INSERT INTO `wp_rg_form_view` VALUES("33407", "1", "2016-06-29 13:17:50", "104.144.155.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("33408", "3", "2016-06-29 13:17:54", "104.144.155.143", "54");
INSERT INTO `wp_rg_form_view` VALUES("33409", "9", "2016-06-29 13:50:14", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("33410", "3", "2016-06-29 14:04:02", "68.180.229.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("33411", "3", "2016-06-29 15:18:54", "192.243.55.135", "54");
INSERT INTO `wp_rg_form_view` VALUES("33412", "1", "2016-06-29 15:31:03", "202.148.8.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("33413", "12", "2016-06-29 15:37:13", "124.73.8.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("33414", "3", "2016-06-29 16:12:55", "24.69.76.123", "56");
INSERT INTO `wp_rg_form_view` VALUES("33415", "8", "2016-06-29 17:13:15", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33416", "3", "2016-06-29 17:13:37", "194.187.170.203", "99");
INSERT INTO `wp_rg_form_view` VALUES("33417", "3", "2016-06-29 18:10:29", "24.108.28.160", "82");
INSERT INTO `wp_rg_form_view` VALUES("33418", "10", "2016-06-29 18:14:24", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("33419", "2", "2016-06-29 18:38:44", "194.187.170.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("33420", "3", "2016-06-29 19:07:09", "202.46.51.115", "73");
INSERT INTO `wp_rg_form_view` VALUES("33421", "3", "2016-06-29 20:06:59", "66.249.79.169", "36");
INSERT INTO `wp_rg_form_view` VALUES("33422", "10", "2016-06-29 20:30:10", "51.255.66.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("33423", "3", "2016-06-29 21:08:06", "66.249.79.176", "27");
INSERT INTO `wp_rg_form_view` VALUES("33424", "3", "2016-06-29 22:09:33", "72.2.46.1", "144");
INSERT INTO `wp_rg_form_view` VALUES("33425", "3", "2016-06-29 23:04:46", "108.180.150.145", "136");
INSERT INTO `wp_rg_form_view` VALUES("33426", "10", "2016-06-29 23:15:33", "77.75.78.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("33427", "3", "2016-06-30 00:03:28", "68.180.229.224", "10");
INSERT INTO `wp_rg_form_view` VALUES("33428", "3", "2016-06-30 01:00:07", "202.46.58.160", "46");
INSERT INTO `wp_rg_form_view` VALUES("33429", "3", "2016-06-30 02:07:06", "202.46.51.109", "86");
INSERT INTO `wp_rg_form_view` VALUES("33430", "11", "2016-06-30 03:17:40", "70.35.197.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("33431", "3", "2016-06-30 03:17:40", "70.35.197.138", "263");
INSERT INTO `wp_rg_form_view` VALUES("33432", "12", "2016-06-30 03:18:29", "70.35.197.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("33433", "2", "2016-06-30 03:20:07", "70.35.197.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("33434", "3", "2016-06-30 04:03:18", "68.180.229.224", "48");
INSERT INTO `wp_rg_form_view` VALUES("33435", "10", "2016-06-30 04:26:04", "199.16.156.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("33436", "3", "2016-06-30 05:10:12", "24.108.162.39", "2361");
INSERT INTO `wp_rg_form_view` VALUES("33437", "1", "2016-06-30 05:21:16", "24.108.162.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("33438", "11", "2016-06-30 05:29:25", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("33439", "2", "2016-06-30 05:29:30", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("33440", "12", "2016-06-30 05:31:12", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("33441", "9", "2016-06-30 05:33:41", "207.46.13.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("33442", "10", "2016-06-30 05:33:51", "207.46.13.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("33443", "8", "2016-06-30 05:33:59", "157.55.39.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("33444", "5", "2016-06-30 05:37:49", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("33445", "6", "2016-06-30 05:42:32", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("33446", "3", "2016-06-30 06:00:05", "5.9.98.130", "3549");
INSERT INTO `wp_rg_form_view` VALUES("33447", "3", "2016-06-30 07:02:38", "5.9.98.130", "5012");
INSERT INTO `wp_rg_form_view` VALUES("33448", "12", "2016-06-30 08:24:49", "202.46.54.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("33449", "3", "2016-06-30 08:24:51", "202.46.54.192", "3214");
INSERT INTO `wp_rg_form_view` VALUES("33450", "3", "2016-06-30 09:00:00", "5.9.98.130", "6200");
INSERT INTO `wp_rg_form_view` VALUES("33451", "1", "2016-06-30 09:06:18", "89.35.105.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("33452", "11", "2016-06-30 09:39:36", "183.15.239.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("33453", "12", "2016-06-30 09:39:37", "183.15.239.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("33454", "2", "2016-06-30 09:39:38", "183.15.239.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("33455", "3", "2016-06-30 10:00:02", "5.9.98.130", "891");
INSERT INTO `wp_rg_form_view` VALUES("33456", "1", "2016-06-30 10:27:16", "23.95.82.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("33457", "3", "2016-06-30 11:16:42", "68.180.229.224", "3007");
INSERT INTO `wp_rg_form_view` VALUES("33458", "3", "2016-06-30 12:00:00", "5.9.98.130", "6197");
INSERT INTO `wp_rg_form_view` VALUES("33459", "3", "2016-06-30 13:00:00", "5.9.98.130", "5887");
INSERT INTO `wp_rg_form_view` VALUES("33460", "12", "2016-06-30 13:42:50", "164.132.161.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("33461", "3", "2016-06-30 14:00:00", "5.9.98.130", "4797");
INSERT INTO `wp_rg_form_view` VALUES("33462", "3", "2016-06-30 15:00:02", "178.137.93.129", "56");
INSERT INTO `wp_rg_form_view` VALUES("33463", "3", "2016-06-30 16:02:05", "178.137.93.129", "37");
INSERT INTO `wp_rg_form_view` VALUES("33464", "3", "2016-06-30 17:05:38", "207.46.13.25", "131");
INSERT INTO `wp_rg_form_view` VALUES("33465", "9", "2016-06-30 17:06:45", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("33466", "3", "2016-06-30 18:04:31", "46.119.118.92", "37");
INSERT INTO `wp_rg_form_view` VALUES("33467", "3", "2016-06-30 19:15:49", "157.55.39.121", "82");
INSERT INTO `wp_rg_form_view` VALUES("33468", "3", "2016-06-30 20:01:23", "77.75.77.62", "164");
INSERT INTO `wp_rg_form_view` VALUES("33469", "2", "2016-06-30 20:12:22", "104.238.180.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("33470", "12", "2016-06-30 20:41:55", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("33471", "5", "2016-06-30 20:48:17", "77.75.79.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("33472", "3", "2016-06-30 21:19:37", "194.187.170.215", "65");
INSERT INTO `wp_rg_form_view` VALUES("33473", "1", "2016-06-30 21:49:12", "24.68.21.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("33474", "3", "2016-06-30 22:00:49", "194.187.170.215", "115");
INSERT INTO `wp_rg_form_view` VALUES("33475", "2", "2016-06-30 22:03:02", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("33476", "1", "2016-06-30 22:31:40", "194.187.170.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("33477", "3", "2016-06-30 23:18:16", "77.75.76.171", "38");
INSERT INTO `wp_rg_form_view` VALUES("33478", "3", "2016-07-01 00:04:45", "194.187.170.215", "65");
INSERT INTO `wp_rg_form_view` VALUES("33479", "10", "2016-07-01 00:49:56", "207.46.13.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("33480", "3", "2016-07-01 01:15:27", "66.249.79.169", "36");
INSERT INTO `wp_rg_form_view` VALUES("33481", "10", "2016-07-01 02:22:11", "202.46.57.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("33482", "3", "2016-07-01 02:22:12", "202.46.57.13", "66");
INSERT INTO `wp_rg_form_view` VALUES("33483", "12", "2016-07-01 02:40:48", "96.50.12.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("33484", "3", "2016-07-01 03:13:59", "77.75.76.163", "27");
INSERT INTO `wp_rg_form_view` VALUES("33485", "3", "2016-07-01 04:30:07", "40.77.167.80", "18");
INSERT INTO `wp_rg_form_view` VALUES("33486", "3", "2016-07-01 05:22:39", "66.249.79.176", "9");
INSERT INTO `wp_rg_form_view` VALUES("33487", "3", "2016-07-01 06:12:11", "202.46.52.154", "10");
INSERT INTO `wp_rg_form_view` VALUES("33488", "10", "2016-07-01 06:32:24", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33489", "3", "2016-07-01 07:23:37", "104.207.150.177", "108");
INSERT INTO `wp_rg_form_view` VALUES("33490", "2", "2016-07-01 07:23:47", "104.207.150.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("33491", "3", "2016-07-01 08:42:31", "136.243.17.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("33492", "3", "2016-07-01 09:01:58", "68.180.229.224", "48");
INSERT INTO `wp_rg_form_view` VALUES("33493", "1", "2016-07-01 09:16:06", "177.125.144.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("33494", "3", "2016-07-01 10:03:48", "66.249.79.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("33495", "12", "2016-07-01 11:05:58", "178.137.164.15", "9");
INSERT INTO `wp_rg_form_view` VALUES("33496", "3", "2016-07-01 11:05:58", "178.137.164.15", "117");
INSERT INTO `wp_rg_form_view` VALUES("33497", "3", "2016-07-01 12:40:09", "157.55.39.156", "27");
INSERT INTO `wp_rg_form_view` VALUES("33498", "3", "2016-07-01 13:16:34", "202.46.57.89", "23");
INSERT INTO `wp_rg_form_view` VALUES("33499", "3", "2016-07-01 14:04:13", "207.46.13.160", "9");
INSERT INTO `wp_rg_form_view` VALUES("33500", "1", "2016-07-01 15:31:26", "51.255.65.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("33501", "3", "2016-07-01 15:31:27", "51.255.65.47", "65");
INSERT INTO `wp_rg_form_view` VALUES("33502", "10", "2016-07-01 15:48:09", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("33503", "3", "2016-07-01 16:15:32", "178.22.145.229", "18");
INSERT INTO `wp_rg_form_view` VALUES("33504", "3", "2016-07-01 17:27:06", "202.46.51.84", "18");
INSERT INTO `wp_rg_form_view` VALUES("33505", "9", "2016-07-01 18:17:06", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33506", "3", "2016-07-01 18:17:06", "68.180.229.224", "9");
INSERT INTO `wp_rg_form_view` VALUES("33507", "3", "2016-07-01 19:02:55", "66.249.79.169", "29");
INSERT INTO `wp_rg_form_view` VALUES("33508", "3", "2016-07-01 20:32:58", "66.249.79.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("33509", "1", "2016-07-01 21:04:40", "195.154.250.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("33510", "3", "2016-07-01 21:04:41", "195.154.250.39", "99");
INSERT INTO `wp_rg_form_view` VALUES("33511", "12", "2016-07-01 21:15:42", "178.137.164.15", "5");
INSERT INTO `wp_rg_form_view` VALUES("33512", "12", "2016-07-01 21:15:42", "178.137.164.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("33513", "3", "2016-07-01 22:04:41", "66.249.79.162", "37");
INSERT INTO `wp_rg_form_view` VALUES("33514", "10", "2016-07-01 22:21:29", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33515", "3", "2016-07-01 23:01:44", "167.114.241.197", "49");
INSERT INTO `wp_rg_form_view` VALUES("33516", "3", "2016-07-02 00:08:05", "164.132.161.84", "36");
INSERT INTO `wp_rg_form_view` VALUES("33517", "3", "2016-07-02 01:19:28", "164.132.161.93", "55");
INSERT INTO `wp_rg_form_view` VALUES("33518", "12", "2016-07-02 01:37:34", "96.50.12.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("33519", "3", "2016-07-02 02:05:26", "51.255.66.158", "9");
INSERT INTO `wp_rg_form_view` VALUES("33520", "3", "2016-07-02 03:58:39", "64.180.74.37", "9");
INSERT INTO `wp_rg_form_view` VALUES("33521", "3", "2016-07-02 04:31:42", "100.43.91.1", "65");
INSERT INTO `wp_rg_form_view` VALUES("33522", "3", "2016-07-02 05:03:57", "96.50.14.120", "659");
INSERT INTO `wp_rg_form_view` VALUES("33523", "11", "2016-07-02 05:19:20", "94.23.40.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("33524", "2", "2016-07-02 05:19:26", "94.23.40.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("33525", "12", "2016-07-02 05:21:16", "94.23.40.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("33526", "1", "2016-07-02 05:21:52", "94.23.40.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("33527", "10", "2016-07-02 05:37:37", "104.142.127.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("33528", "3", "2016-07-02 06:07:57", "202.46.58.99", "47");
INSERT INTO `wp_rg_form_view` VALUES("33529", "12", "2016-07-02 06:25:30", "178.137.164.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("33530", "12", "2016-07-02 07:13:43", "46.118.159.221", "2");
INSERT INTO `wp_rg_form_view` VALUES("33531", "12", "2016-07-02 07:13:43", "46.118.159.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33532", "3", "2016-07-02 07:13:48", "46.118.159.221", "52");
INSERT INTO `wp_rg_form_view` VALUES("33533", "3", "2016-07-02 07:13:48", "46.118.159.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33534", "3", "2016-07-02 07:13:48", "46.118.159.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33535", "10", "2016-07-02 07:39:16", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33536", "8", "2016-07-02 07:53:12", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33537", "3", "2016-07-02 08:08:35", "66.249.79.176", "558");
INSERT INTO `wp_rg_form_view` VALUES("33538", "12", "2016-07-02 08:10:34", "178.137.164.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("33539", "7", "2016-07-02 08:27:14", "40.77.167.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("33540", "10", "2016-07-02 08:27:39", "40.77.167.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("33541", "1", "2016-07-02 08:27:43", "207.46.13.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("33542", "9", "2016-07-02 08:27:49", "40.77.167.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("33543", "6", "2016-07-02 08:45:07", "167.114.241.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("33544", "3", "2016-07-02 09:20:47", "68.180.229.224", "64");
INSERT INTO `wp_rg_form_view` VALUES("33545", "3", "2016-07-02 10:00:09", "167.114.241.197", "118");
INSERT INTO `wp_rg_form_view` VALUES("33546", "10", "2016-07-02 10:54:08", "207.46.13.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("33547", "6", "2016-07-02 12:05:59", "202.46.53.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("33548", "3", "2016-07-02 12:06:03", "202.46.53.66", "229");
INSERT INTO `wp_rg_form_view` VALUES("33549", "8", "2016-07-02 12:21:00", "207.46.13.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("33550", "10", "2016-07-02 12:21:09", "207.46.13.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("33551", "2", "2016-07-02 12:25:56", "158.69.225.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("33552", "12", "2016-07-02 12:26:11", "158.69.225.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("33553", "3", "2016-07-02 13:22:04", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("33554", "3", "2016-07-02 14:18:54", "157.55.39.207", "40");
INSERT INTO `wp_rg_form_view` VALUES("33555", "10", "2016-07-02 14:49:52", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33556", "3", "2016-07-02 15:29:06", "202.46.54.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("33557", "3", "2016-07-02 17:10:14", "85.93.89.74", "118");
INSERT INTO `wp_rg_form_view` VALUES("33558", "11", "2016-07-02 17:10:44", "85.93.89.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("33559", "2", "2016-07-02 17:10:48", "85.93.89.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("33560", "3", "2016-07-02 18:17:08", "77.75.78.172", "64");
INSERT INTO `wp_rg_form_view` VALUES("33561", "9", "2016-07-02 18:25:10", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33562", "3", "2016-07-02 19:57:18", "66.249.79.176", "19");
INSERT INTO `wp_rg_form_view` VALUES("33563", "3", "2016-07-02 20:02:55", "68.180.229.224", "28");
INSERT INTO `wp_rg_form_view` VALUES("33564", "3", "2016-07-02 21:12:51", "68.180.229.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("33565", "9", "2016-07-02 21:14:04", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("33566", "3", "2016-07-02 22:01:02", "66.249.79.176", "45");
INSERT INTO `wp_rg_form_view` VALUES("33567", "10", "2016-07-02 23:21:04", "40.77.167.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("33568", "3", "2016-07-02 23:21:04", "40.77.167.25", "73");
INSERT INTO `wp_rg_form_view` VALUES("33569", "2", "2016-07-03 00:14:49", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("33570", "3", "2016-07-03 00:14:50", "68.180.229.224", "271");
INSERT INTO `wp_rg_form_view` VALUES("33571", "10", "2016-07-03 00:33:09", "40.77.167.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("33572", "11", "2016-07-03 00:40:35", "104.37.184.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("33573", "12", "2016-07-03 00:40:56", "104.37.184.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("33574", "3", "2016-07-03 01:37:33", "202.46.58.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("33575", "3", "2016-07-03 02:22:08", "77.75.78.164", "18");
INSERT INTO `wp_rg_form_view` VALUES("33576", "3", "2016-07-03 03:06:14", "128.199.69.60", "19");
INSERT INTO `wp_rg_form_view` VALUES("33577", "3", "2016-07-03 04:40:03", "207.46.13.36", "18");
INSERT INTO `wp_rg_form_view` VALUES("33578", "2", "2016-07-03 04:50:53", "40.77.167.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("33579", "3", "2016-07-03 05:38:57", "164.132.161.82", "45");
INSERT INTO `wp_rg_form_view` VALUES("33580", "12", "2016-07-03 05:57:00", "37.229.252.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("33581", "12", "2016-07-03 06:04:02", "72.143.235.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("33582", "3", "2016-07-03 06:04:02", "72.143.235.176", "209");
INSERT INTO `wp_rg_form_view` VALUES("33583", "11", "2016-07-03 06:26:28", "202.46.48.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("33584", "2", "2016-07-03 06:47:37", "45.55.229.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("33585", "3", "2016-07-03 07:28:20", "51.255.65.44", "19");
INSERT INTO `wp_rg_form_view` VALUES("33586", "3", "2016-07-03 08:02:11", "1.171.178.68", "19");
INSERT INTO `wp_rg_form_view` VALUES("33587", "6", "2016-07-03 09:05:01", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("33588", "3", "2016-07-03 09:05:01", "66.249.79.162", "91");
INSERT INTO `wp_rg_form_view` VALUES("33589", "10", "2016-07-03 09:25:51", "164.132.161.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("33590", "3", "2016-07-03 11:05:46", "68.180.229.224", "29");
INSERT INTO `wp_rg_form_view` VALUES("33591", "3", "2016-07-03 12:06:20", "74.208.229.57", "333");
INSERT INTO `wp_rg_form_view` VALUES("33592", "3", "2016-07-03 12:06:20", "74.208.229.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("33593", "3", "2016-07-03 12:06:20", "74.208.229.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("33594", "3", "2016-07-03 12:06:20", "74.208.229.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("33595", "11", "2016-07-03 12:06:21", "74.208.229.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("33596", "2", "2016-07-03 12:06:21", "74.208.229.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("33597", "12", "2016-07-03 12:06:35", "74.208.229.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("33598", "9", "2016-07-03 12:06:57", "40.77.167.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("33599", "3", "2016-07-03 13:05:02", "196.196.94.201", "118");
INSERT INTO `wp_rg_form_view` VALUES("33600", "3", "2016-07-03 14:43:13", "66.249.79.176", "29");
INSERT INTO `wp_rg_form_view` VALUES("33601", "12", "2016-07-03 15:06:07", "46.118.159.221", "6");
INSERT INTO `wp_rg_form_view` VALUES("33602", "12", "2016-07-03 15:06:07", "46.118.159.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33603", "3", "2016-07-03 15:06:07", "46.118.159.221", "81");
INSERT INTO `wp_rg_form_view` VALUES("33604", "3", "2016-07-03 15:06:07", "46.118.159.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33605", "10", "2016-07-03 15:37:39", "207.46.13.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("33606", "10", "2016-07-03 16:01:36", "207.46.13.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("33607", "3", "2016-07-03 16:01:36", "207.46.13.116", "36");
INSERT INTO `wp_rg_form_view` VALUES("33608", "12", "2016-07-03 16:30:41", "178.137.164.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("33609", "3", "2016-07-03 17:34:57", "199.21.99.202", "36");
INSERT INTO `wp_rg_form_view` VALUES("33610", "1", "2016-07-03 17:55:55", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33611", "3", "2016-07-03 18:03:50", "202.46.55.153", "92");
INSERT INTO `wp_rg_form_view` VALUES("33612", "9", "2016-07-03 18:09:34", "165.231.96.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("33613", "3", "2016-07-03 19:06:50", "193.105.21.30", "64");
INSERT INTO `wp_rg_form_view` VALUES("33614", "3", "2016-07-03 20:15:18", "207.46.13.36", "37");
INSERT INTO `wp_rg_form_view` VALUES("33615", "3", "2016-07-03 21:20:35", "164.132.161.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("33616", "3", "2016-07-03 22:44:14", "220.181.108.186", "9");
INSERT INTO `wp_rg_form_view` VALUES("33617", "3", "2016-07-03 23:20:19", "202.46.50.89", "18");
INSERT INTO `wp_rg_form_view` VALUES("33618", "2", "2016-07-04 00:04:20", "151.80.31.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("33619", "3", "2016-07-04 00:04:20", "151.80.31.183", "45");
INSERT INTO `wp_rg_form_view` VALUES("33620", "9", "2016-07-04 00:50:28", "89.36.66.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("33621", "3", "2016-07-04 01:05:44", "207.46.13.119", "55");
INSERT INTO `wp_rg_form_view` VALUES("33622", "12", "2016-07-04 01:06:54", "46.118.159.221", "3");
INSERT INTO `wp_rg_form_view` VALUES("33623", "1", "2016-07-04 02:10:11", "165.231.105.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("33624", "3", "2016-07-04 02:10:12", "165.231.105.52", "9");
INSERT INTO `wp_rg_form_view` VALUES("33625", "12", "2016-07-04 03:10:56", "178.137.164.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("33626", "12", "2016-07-04 03:10:56", "178.137.164.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("33627", "3", "2016-07-04 03:11:10", "178.137.164.15", "26");
INSERT INTO `wp_rg_form_view` VALUES("33628", "3", "2016-07-04 03:11:10", "178.137.164.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("33629", "9", "2016-07-04 03:14:44", "202.46.53.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("33630", "3", "2016-07-04 04:20:33", "68.180.229.224", "244");
INSERT INTO `wp_rg_form_view` VALUES("33631", "11", "2016-07-04 04:28:53", "158.69.210.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("33632", "12", "2016-07-04 04:29:17", "158.69.210.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("33633", "2", "2016-07-04 04:29:50", "158.69.210.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("33634", "3", "2016-07-04 05:04:40", "184.66.156.180", "47");
INSERT INTO `wp_rg_form_view` VALUES("33635", "3", "2016-07-04 06:10:53", "164.132.161.94", "9");
INSERT INTO `wp_rg_form_view` VALUES("33636", "3", "2016-07-04 07:58:48", "104.151.127.3", "19");
INSERT INTO `wp_rg_form_view` VALUES("33637", "3", "2016-07-04 08:01:24", "68.180.229.224", "54");
INSERT INTO `wp_rg_form_view` VALUES("33638", "10", "2016-07-04 08:20:29", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33639", "3", "2016-07-04 09:00:44", "202.46.58.74", "10");
INSERT INTO `wp_rg_form_view` VALUES("33640", "3", "2016-07-04 10:15:03", "66.249.79.176", "73");
INSERT INTO `wp_rg_form_view` VALUES("33641", "12", "2016-07-04 10:24:31", "46.118.159.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33642", "3", "2016-07-04 11:16:15", "132.148.21.164", "45");
INSERT INTO `wp_rg_form_view` VALUES("33643", "12", "2016-07-04 12:02:53", "178.137.164.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("33644", "3", "2016-07-04 12:02:53", "178.137.164.15", "45");
INSERT INTO `wp_rg_form_view` VALUES("33645", "3", "2016-07-04 13:16:49", "66.249.79.176", "45");
INSERT INTO `wp_rg_form_view` VALUES("33646", "12", "2016-07-04 13:52:37", "178.137.164.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("33647", "3", "2016-07-04 14:25:13", "132.148.21.164", "55");
INSERT INTO `wp_rg_form_view` VALUES("33648", "10", "2016-07-04 14:40:36", "157.55.39.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("33649", "3", "2016-07-04 15:06:54", "70.66.184.178", "326");
INSERT INTO `wp_rg_form_view` VALUES("33650", "11", "2016-07-04 15:29:03", "78.159.213.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("33651", "12", "2016-07-04 15:31:50", "78.159.213.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("33652", "2", "2016-07-04 15:41:39", "78.159.213.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("33653", "3", "2016-07-04 16:01:17", "70.67.188.245", "129");
INSERT INTO `wp_rg_form_view` VALUES("33654", "3", "2016-07-04 17:26:05", "184.66.100.93", "18");
INSERT INTO `wp_rg_form_view` VALUES("33655", "1", "2016-07-04 18:07:31", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("33656", "3", "2016-07-04 18:07:33", "66.249.79.176", "27");
INSERT INTO `wp_rg_form_view` VALUES("33657", "3", "2016-07-04 19:28:36", "202.46.48.90", "28");
INSERT INTO `wp_rg_form_view` VALUES("33658", "12", "2016-07-04 20:25:23", "199.60.109.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("33659", "3", "2016-07-04 20:25:28", "199.60.109.117", "45");
INSERT INTO `wp_rg_form_view` VALUES("33660", "3", "2016-07-04 21:13:54", "207.46.13.156", "72");
INSERT INTO `wp_rg_form_view` VALUES("33661", "12", "2016-07-04 21:34:39", "37.229.252.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("33662", "12", "2016-07-04 21:34:39", "37.229.252.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("33663", "3", "2016-07-04 22:22:40", "195.154.250.39", "39");
INSERT INTO `wp_rg_form_view` VALUES("33664", "10", "2016-07-04 23:17:46", "199.16.156.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("33665", "3", "2016-07-04 23:17:47", "199.16.156.124", "25");
INSERT INTO `wp_rg_form_view` VALUES("33666", "3", "2016-07-05 00:08:20", "157.55.39.213", "50");
INSERT INTO `wp_rg_form_view` VALUES("33667", "12", "2016-07-05 00:38:07", "37.229.252.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("33668", "3", "2016-07-05 01:02:57", "202.46.54.31", "17");
INSERT INTO `wp_rg_form_view` VALUES("33669", "3", "2016-07-05 02:18:19", "202.46.49.130", "25");
INSERT INTO `wp_rg_form_view` VALUES("33670", "6", "2016-07-05 02:45:50", "51.255.66.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("33671", "3", "2016-07-05 03:01:07", "68.180.229.224", "528");
INSERT INTO `wp_rg_form_view` VALUES("33672", "5", "2016-07-05 03:32:49", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("33673", "10", "2016-07-05 03:32:57", "157.55.39.213", "4");
INSERT INTO `wp_rg_form_view` VALUES("33674", "6", "2016-07-05 03:33:14", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("33675", "9", "2016-07-05 03:33:33", "207.46.13.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("33676", "8", "2016-07-05 03:33:44", "207.46.13.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("33677", "3", "2016-07-05 04:49:02", "68.180.229.224", "16");
INSERT INTO `wp_rg_form_view` VALUES("33678", "3", "2016-07-05 06:11:16", "132.148.21.164", "48");
INSERT INTO `wp_rg_form_view` VALUES("33679", "3", "2016-07-05 07:05:26", "68.180.229.224", "32");
INSERT INTO `wp_rg_form_view` VALUES("33680", "3", "2016-07-05 08:59:47", "202.46.48.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("33681", "3", "2016-07-05 09:15:24", "77.75.77.36", "16");
INSERT INTO `wp_rg_form_view` VALUES("33682", "3", "2016-07-05 10:32:34", "207.46.13.119", "17");
INSERT INTO `wp_rg_form_view` VALUES("33683", "3", "2016-07-05 11:39:44", "68.180.229.224", "8");
INSERT INTO `wp_rg_form_view` VALUES("33684", "11", "2016-07-05 12:02:36", "68.180.229.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("33685", "3", "2016-07-05 12:02:37", "68.180.229.224", "525");
INSERT INTO `wp_rg_form_view` VALUES("33686", "10", "2016-07-05 12:22:28", "207.46.13.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("33687", "12", "2016-07-05 12:50:41", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33688", "2", "2016-07-05 12:51:41", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33689", "9", "2016-07-05 12:59:11", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33690", "6", "2016-07-05 13:00:06", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33691", "3", "2016-07-05 13:00:07", "109.169.29.30", "308");
INSERT INTO `wp_rg_form_view` VALUES("33692", "8", "2016-07-05 13:01:29", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33693", "10", "2016-07-05 13:03:13", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33694", "5", "2016-07-05 13:43:39", "77.75.76.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("33695", "3", "2016-07-05 14:18:17", "66.249.79.176", "34");
INSERT INTO `wp_rg_form_view` VALUES("33696", "3", "2016-07-05 15:00:50", "66.249.79.176", "18");
INSERT INTO `wp_rg_form_view` VALUES("33697", "2", "2016-07-05 15:04:09", "51.255.66.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("33698", "3", "2016-07-05 16:30:02", "202.46.50.198", "16");
INSERT INTO `wp_rg_form_view` VALUES("33699", "3", "2016-07-05 17:48:22", "68.180.229.224", "8");
INSERT INTO `wp_rg_form_view` VALUES("33700", "3", "2016-07-05 18:10:34", "202.46.53.166", "88");
INSERT INTO `wp_rg_form_view` VALUES("33701", "12", "2016-07-05 18:44:33", "46.118.159.221", "8");
INSERT INTO `wp_rg_form_view` VALUES("33702", "12", "2016-07-05 18:44:33", "46.118.159.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33703", "3", "2016-07-05 19:00:41", "64.141.4.162", "90");
INSERT INTO `wp_rg_form_view` VALUES("33704", "12", "2016-07-05 19:59:07", "130.63.94.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("33705", "3", "2016-07-05 20:18:25", "220.181.108.146", "18");
INSERT INTO `wp_rg_form_view` VALUES("33706", "3", "2016-07-05 21:24:08", "207.46.13.65", "147");
INSERT INTO `wp_rg_form_view` VALUES("33707", "6", "2016-07-05 21:33:55", "66.249.79.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("33708", "1", "2016-07-05 21:44:44", "199.60.109.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("33709", "3", "2016-07-05 22:21:38", "40.77.167.19", "66");
INSERT INTO `wp_rg_form_view` VALUES("33710", "12", "2016-07-05 22:39:55", "178.137.164.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("33711", "3", "2016-07-05 23:03:57", "68.180.229.224", "25");
INSERT INTO `wp_rg_form_view` VALUES("33712", "3", "2016-07-06 00:05:36", "202.46.50.183", "33");
INSERT INTO `wp_rg_form_view` VALUES("33713", "1", "2016-07-06 00:55:38", "130.204.207.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("33714", "3", "2016-07-06 01:10:16", "24.68.17.97", "229");
INSERT INTO `wp_rg_form_view` VALUES("33715", "12", "2016-07-06 01:10:37", "24.68.17.97", "3");
INSERT INTO `wp_rg_form_view` VALUES("33716", "10", "2016-07-06 01:13:23", "24.68.17.97", "8");
INSERT INTO `wp_rg_form_view` VALUES("33717", "11", "2016-07-06 01:58:05", "78.250.130.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("33718", "3", "2016-07-06 02:00:20", "78.250.130.60", "290");
INSERT INTO `wp_rg_form_view` VALUES("33719", "12", "2016-07-06 02:00:46", "78.250.130.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("33720", "2", "2016-07-06 02:04:02", "78.250.130.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("33721", "3", "2016-07-06 03:25:21", "167.114.241.197", "106");
INSERT INTO `wp_rg_form_view` VALUES("33722", "3", "2016-07-06 04:14:39", "66.249.79.162", "16");
INSERT INTO `wp_rg_form_view` VALUES("33723", "3", "2016-07-06 05:03:13", "77.75.76.170", "43");
INSERT INTO `wp_rg_form_view` VALUES("33724", "12", "2016-07-06 05:11:23", "46.118.159.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("33725", "3", "2016-07-06 06:13:52", "77.75.76.160", "24");
INSERT INTO `wp_rg_form_view` VALUES("33726", "3", "2016-07-06 07:38:00", "66.249.79.176", "8");
INSERT INTO `wp_rg_form_view` VALUES("33727", "3", "2016-07-06 09:45:47", "54.236.1.67", "8");
INSERT INTO `wp_rg_form_view` VALUES("33728", "12", "2016-07-06 10:05:46", "178.137.164.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("33729", "3", "2016-07-06 10:05:47", "178.137.164.15", "57");
INSERT INTO `wp_rg_form_view` VALUES("33730", "3", "2016-07-06 11:11:05", "207.46.13.119", "16");
INSERT INTO `wp_rg_form_view` VALUES("33731", "1", "2016-07-06 12:32:13", "198.12.97.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("33732", "3", "2016-07-06 12:32:15", "198.12.97.13", "34");
INSERT INTO `wp_rg_form_view` VALUES("33733", "3", "2016-07-06 14:01:05", "91.121.141.219", "50");
INSERT INTO `wp_rg_form_view` VALUES("33734", "12", "2016-07-06 14:39:07", "46.118.117.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("33735", "12", "2016-07-06 14:39:07", "46.118.117.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("33736", "5", "2016-07-06 16:01:00", "68.180.229.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("33737", "3", "2016-07-06 16:01:03", "68.180.229.224", "82");
INSERT INTO `wp_rg_form_view` VALUES("33738", "12", "2016-07-06 16:13:55", "178.137.154.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("33739", "3", "2016-07-06 17:03:23", "184.70.159.62", "48");
INSERT INTO `wp_rg_form_view` VALUES("33740", "2", "2016-07-06 18:09:43", "202.46.57.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("33741", "3", "2016-07-06 18:09:46", "202.46.57.15", "253");
INSERT INTO `wp_rg_form_view` VALUES("33742", "12", "2016-07-06 18:31:59", "46.119.126.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("33743", "3", "2016-07-06 19:31:32", "184.66.253.169", "65");
INSERT INTO `wp_rg_form_view` VALUES("33744", "3", "2016-07-06 20:11:43", "68.180.229.224", "123");
INSERT INTO `wp_rg_form_view` VALUES("33745", "12", "2016-07-06 20:21:10", "46.119.126.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("33746", "1", "2016-07-06 20:34:33", "172.102.204.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("33747", "3", "2016-07-06 21:01:42", "70.67.162.103", "122");
INSERT INTO `wp_rg_form_view` VALUES("33748", "1", "2016-07-06 21:45:35", "188.215.23.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("33749", "11", "2016-07-06 22:10:23", "51.255.65.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("33750", "3", "2016-07-06 22:10:44", "51.255.65.41", "262");
INSERT INTO `wp_rg_form_view` VALUES("33751", "2", "2016-07-06 22:50:24", "174.127.133.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("33752", "12", "2016-07-06 22:56:13", "174.127.133.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("33753", "3", "2016-07-06 23:00:19", "199.21.99.202", "244");
INSERT INTO `wp_rg_form_view` VALUES("33754", "12", "2016-07-06 23:18:56", "174.127.133.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("33755", "3", "2016-07-07 00:06:30", "172.102.212.186", "45");
INSERT INTO `wp_rg_form_view` VALUES("33756", "3", "2016-07-07 01:17:08", "68.180.229.224", "44");
INSERT INTO `wp_rg_form_view` VALUES("33757", "10", "2016-07-07 01:49:14", "77.75.76.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("33758", "3", "2016-07-07 02:13:27", "202.46.56.90", "37");
INSERT INTO `wp_rg_form_view` VALUES("33759", "3", "2016-07-07 03:09:10", "24.114.22.198", "35");
INSERT INTO `wp_rg_form_view` VALUES("33760", "1", "2016-07-07 03:29:10", "183.91.33.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("33761", "3", "2016-07-07 04:06:03", "64.180.74.252", "29");
INSERT INTO `wp_rg_form_view` VALUES("33762", "1", "2016-07-07 04:23:07", "66.249.79.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("33763", "12", "2016-07-07 05:07:29", "178.137.154.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("33764", "3", "2016-07-07 05:07:29", "178.137.154.56", "29");
INSERT INTO `wp_rg_form_view` VALUES("33765", "2", "2016-07-07 06:05:17", "192.237.175.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("33766", "3", "2016-07-07 06:05:19", "192.237.175.30", "49");
INSERT INTO `wp_rg_form_view` VALUES("33767", "3", "2016-07-07 07:25:31", "199.217.117.207", "7");
INSERT INTO `wp_rg_form_view` VALUES("33768", "3", "2016-07-07 08:05:46", "172.98.176.207", "36");
INSERT INTO `wp_rg_form_view` VALUES("33769", "12", "2016-07-07 08:35:11", "46.119.121.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("33770", "1", "2016-07-07 09:17:50", "192.80.115.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("33771", "3", "2016-07-07 09:17:57", "192.80.115.144", "36");
INSERT INTO `wp_rg_form_view` VALUES("33772", "3", "2016-07-07 10:00:53", "66.249.79.176", "14");
INSERT INTO `wp_rg_form_view` VALUES("33773", "9", "2016-07-07 11:10:48", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("33774", "3", "2016-07-07 11:10:55", "199.21.99.202", "29");
INSERT INTO `wp_rg_form_view` VALUES("33775", "3", "2016-07-07 12:38:21", "66.249.79.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("33776", "3", "2016-07-07 13:02:33", "172.102.204.38", "16");
INSERT INTO `wp_rg_form_view` VALUES("33777", "3", "2016-07-07 14:06:57", "199.21.99.202", "404");
INSERT INTO `wp_rg_form_view` VALUES("33778", "12", "2016-07-07 14:29:50", "207.46.13.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("33779", "9", "2016-07-07 14:29:58", "207.46.13.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("33780", "10", "2016-07-07 14:30:09", "207.46.13.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("33781", "7", "2016-07-07 14:30:17", "207.46.13.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("33782", "8", "2016-07-07 14:30:55", "157.55.39.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("33783", "3", "2016-07-07 15:52:06", "172.102.212.186", "15");
INSERT INTO `wp_rg_form_view` VALUES("33784", "3", "2016-07-07 16:09:53", "24.108.28.160", "35");
INSERT INTO `wp_rg_form_view` VALUES("33785", "3", "2016-07-07 17:22:03", "172.98.176.53", "50");
INSERT INTO `wp_rg_form_view` VALUES("33786", "1", "2016-07-07 17:50:19", "184.69.5.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("33787", "3", "2016-07-07 18:12:33", "66.249.79.169", "136");
INSERT INTO `wp_rg_form_view` VALUES("33788", "11", "2016-07-07 18:14:12", "202.46.51.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("33789", "3", "2016-07-07 19:08:25", "172.102.212.186", "53");
INSERT INTO `wp_rg_form_view` VALUES("33790", "3", "2016-07-07 20:04:42", "202.46.50.11", "123");
INSERT INTO `wp_rg_form_view` VALUES("33791", "12", "2016-07-07 21:20:57", "46.118.117.240", "4");
INSERT INTO `wp_rg_form_view` VALUES("33792", "12", "2016-07-07 21:20:57", "46.118.117.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("33793", "12", "2016-07-07 21:20:57", "46.118.117.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("33794", "3", "2016-07-07 21:20:59", "66.249.79.169", "183");
INSERT INTO `wp_rg_form_view` VALUES("33795", "12", "2016-07-07 22:07:54", "24.69.9.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("33796", "3", "2016-07-07 22:07:56", "207.81.252.22", "289");
INSERT INTO `wp_rg_form_view` VALUES("33797", "3", "2016-07-07 22:07:56", "207.81.252.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("33798", "3", "2016-07-07 22:07:56", "207.81.252.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("33799", "3", "2016-07-07 23:04:25", "138.128.66.18", "149");
INSERT INTO `wp_rg_form_view` VALUES("33800", "5", "2016-07-07 23:24:32", "202.46.58.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("33801", "12", "2016-07-08 00:05:09", "46.119.121.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("33802", "12", "2016-07-08 00:05:09", "46.119.121.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("33803", "12", "2016-07-08 00:05:09", "46.119.121.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("33804", "3", "2016-07-08 00:05:27", "46.119.121.187", "38");
INSERT INTO `wp_rg_form_view` VALUES("33805", "3", "2016-07-08 00:05:27", "46.119.121.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("33806", "3", "2016-07-08 00:05:27", "46.119.121.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("33807", "3", "2016-07-08 01:09:20", "207.46.13.76", "51");
INSERT INTO `wp_rg_form_view` VALUES("33808", "6", "2016-07-08 01:17:12", "40.77.167.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("33809", "1", "2016-07-08 01:54:00", "157.55.39.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("33810", "2", "2016-07-08 01:56:28", "202.46.51.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("33811", "3", "2016-07-08 02:21:56", "66.249.79.162", "53");
INSERT INTO `wp_rg_form_view` VALUES("33812", "3", "2016-07-08 03:03:26", "202.46.49.112", "81");
INSERT INTO `wp_rg_form_view` VALUES("33813", "12", "2016-07-08 04:04:41", "46.119.126.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("33814", "3", "2016-07-08 04:04:41", "46.119.126.56", "50");
INSERT INTO `wp_rg_form_view` VALUES("33815", "11", "2016-07-08 05:19:41", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("33816", "3", "2016-07-08 05:19:42", "70.35.196.136", "281");
INSERT INTO `wp_rg_form_view` VALUES("33817", "12", "2016-07-08 05:20:15", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("33818", "2", "2016-07-08 05:20:59", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("33819", "7", "2016-07-08 05:51:20", "202.46.53.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("33820", "3", "2016-07-08 06:20:53", "164.132.161.77", "41");
INSERT INTO `wp_rg_form_view` VALUES("33821", "10", "2016-07-08 07:04:28", "157.55.39.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("33822", "3", "2016-07-08 07:04:28", "157.55.39.33", "81");
INSERT INTO `wp_rg_form_view` VALUES("33823", "12", "2016-07-08 07:26:57", "46.118.117.240", "4");
INSERT INTO `wp_rg_form_view` VALUES("33824", "3", "2016-07-08 08:08:43", "40.77.167.48", "31");
INSERT INTO `wp_rg_form_view` VALUES("33825", "2", "2016-07-08 09:39:15", "68.180.228.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("33826", "2", "2016-07-08 09:39:15", "68.180.228.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("33827", "3", "2016-07-08 09:39:24", "68.180.228.110", "19");
INSERT INTO `wp_rg_form_view` VALUES("33828", "3", "2016-07-08 09:39:24", "68.180.228.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("33829", "3", "2016-07-08 10:21:24", "68.180.228.110", "44");
INSERT INTO `wp_rg_form_view` VALUES("33830", "3", "2016-07-08 11:06:00", "207.46.13.76", "25");
INSERT INTO `wp_rg_form_view` VALUES("33831", "3", "2016-07-08 12:10:26", "68.180.228.110", "22");
INSERT INTO `wp_rg_form_view` VALUES("33832", "6", "2016-07-08 13:41:04", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("33833", "3", "2016-07-08 13:41:07", "66.249.79.176", "21");
INSERT INTO `wp_rg_form_view` VALUES("33834", "3", "2016-07-08 14:22:40", "68.180.228.110", "52");
INSERT INTO `wp_rg_form_view` VALUES("33835", "12", "2016-07-08 14:37:40", "46.119.126.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("33836", "3", "2016-07-08 15:31:34", "24.69.13.40", "20");
INSERT INTO `wp_rg_form_view` VALUES("33837", "3", "2016-07-08 16:57:27", "75.157.27.176", "48");
INSERT INTO `wp_rg_form_view` VALUES("33838", "3", "2016-07-08 16:57:27", "75.157.27.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("33839", "3", "2016-07-08 16:57:27", "75.157.27.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("33840", "3", "2016-07-08 17:01:35", "75.157.27.176", "72");
INSERT INTO `wp_rg_form_view` VALUES("33841", "12", "2016-07-08 17:54:14", "51.255.65.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("33842", "12", "2016-07-08 18:14:06", "46.118.117.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("33843", "3", "2016-07-08 18:14:06", "46.118.117.240", "20");
INSERT INTO `wp_rg_form_view` VALUES("33844", "11", "2016-07-08 18:30:08", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("33845", "12", "2016-07-08 19:31:50", "46.119.117.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("33846", "12", "2016-07-08 19:31:50", "46.119.117.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("33847", "3", "2016-07-08 19:32:04", "46.119.117.55", "49");
INSERT INTO `wp_rg_form_view` VALUES("33848", "3", "2016-07-08 19:32:04", "46.119.117.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("33849", "3", "2016-07-08 20:33:43", "70.66.163.80", "92");
INSERT INTO `wp_rg_form_view` VALUES("33850", "12", "2016-07-08 20:42:30", "70.66.163.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("33851", "3", "2016-07-08 21:07:46", "216.13.173.60", "31");
INSERT INTO `wp_rg_form_view` VALUES("33852", "12", "2016-07-08 22:18:38", "46.119.117.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("33853", "3", "2016-07-08 22:18:38", "46.119.117.55", "30");
INSERT INTO `wp_rg_form_view` VALUES("33854", "10", "2016-07-08 23:17:19", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("33855", "3", "2016-07-08 23:17:29", "77.75.76.162", "81");
INSERT INTO `wp_rg_form_view` VALUES("33856", "12", "2016-07-08 23:27:35", "46.119.117.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("33857", "9", "2016-07-08 23:47:40", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("33858", "3", "2016-07-09 00:09:29", "64.180.190.62", "52");
INSERT INTO `wp_rg_form_view` VALUES("33859", "3", "2016-07-09 01:15:33", "68.180.228.110", "43");
INSERT INTO `wp_rg_form_view` VALUES("33860", "3", "2016-07-09 02:05:56", "77.75.78.165", "95");
INSERT INTO `wp_rg_form_view` VALUES("33861", "1", "2016-07-09 03:00:42", "202.46.49.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("33862", "3", "2016-07-09 03:00:43", "202.46.49.138", "114");
INSERT INTO `wp_rg_form_view` VALUES("33863", "12", "2016-07-09 03:22:07", "24.69.158.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("33864", "12", "2016-07-09 04:53:58", "178.137.89.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("33865", "3", "2016-07-09 04:54:00", "178.137.89.208", "10");
INSERT INTO `wp_rg_form_view` VALUES("33866", "3", "2016-07-09 05:06:13", "202.46.48.145", "102");
INSERT INTO `wp_rg_form_view` VALUES("33867", "12", "2016-07-09 05:47:09", "178.137.89.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("33868", "3", "2016-07-09 06:07:10", "66.76.113.38", "33");
INSERT INTO `wp_rg_form_view` VALUES("33869", "3", "2016-07-09 07:35:19", "202.46.49.92", "31");
INSERT INTO `wp_rg_form_view` VALUES("33870", "12", "2016-07-09 07:52:12", "207.46.13.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("33871", "3", "2016-07-09 08:06:23", "157.55.39.94", "41");
INSERT INTO `wp_rg_form_view` VALUES("33872", "3", "2016-07-09 09:03:01", "207.46.13.64", "31");
INSERT INTO `wp_rg_form_view` VALUES("33873", "3", "2016-07-09 10:41:30", "192.243.55.135", "878");
INSERT INTO `wp_rg_form_view` VALUES("33874", "1", "2016-07-09 10:55:44", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("33875", "11", "2016-07-09 10:55:54", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("33876", "3", "2016-07-09 11:00:14", "104.131.46.50", "4253");
INSERT INTO `wp_rg_form_view` VALUES("33877", "5", "2016-07-09 11:02:34", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("33878", "12", "2016-07-09 11:07:15", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("33879", "1", "2016-07-09 11:08:01", "66.249.79.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("33880", "6", "2016-07-09 11:15:50", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("33881", "9", "2016-07-09 11:24:29", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("33882", "10", "2016-07-09 11:26:23", "51.255.66.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("33883", "2", "2016-07-09 11:59:53", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("33884", "3", "2016-07-09 12:00:30", "104.131.46.50", "983");
INSERT INTO `wp_rg_form_view` VALUES("33885", "8", "2016-07-09 12:14:09", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("33886", "3", "2016-07-09 13:05:43", "51.255.65.10", "20");
INSERT INTO `wp_rg_form_view` VALUES("33887", "10", "2016-07-09 14:13:15", "68.180.228.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("33888", "3", "2016-07-09 14:13:17", "68.180.228.110", "10");
INSERT INTO `wp_rg_form_view` VALUES("33889", "3", "2016-07-09 15:00:48", "24.108.43.12", "21");
INSERT INTO `wp_rg_form_view` VALUES("33890", "3", "2016-07-09 16:08:32", "66.249.79.176", "122");
INSERT INTO `wp_rg_form_view` VALUES("33891", "2", "2016-07-09 16:54:05", "62.210.80.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("33892", "3", "2016-07-09 17:26:12", "23.254.144.254", "84");
INSERT INTO `wp_rg_form_view` VALUES("33893", "3", "2016-07-09 18:11:38", "114.97.200.204", "91");
INSERT INTO `wp_rg_form_view` VALUES("33894", "3", "2016-07-09 19:14:34", "66.249.66.140", "127");
INSERT INTO `wp_rg_form_view` VALUES("33895", "12", "2016-07-09 19:20:31", "46.185.13.226", "3");
INSERT INTO `wp_rg_form_view` VALUES("33896", "10", "2016-07-09 19:55:20", "207.46.13.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("33897", "10", "2016-07-09 20:38:20", "207.46.13.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("33898", "3", "2016-07-09 20:38:22", "207.46.13.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("33899", "3", "2016-07-09 21:23:47", "68.180.228.110", "61");
INSERT INTO `wp_rg_form_view` VALUES("33900", "10", "2016-07-09 21:26:17", "157.55.39.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("33901", "3", "2016-07-09 22:05:27", "114.97.200.204", "101");
INSERT INTO `wp_rg_form_view` VALUES("33902", "10", "2016-07-09 22:36:39", "68.180.228.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("33903", "3", "2016-07-09 23:20:03", "202.46.49.61", "20");
INSERT INTO `wp_rg_form_view` VALUES("33904", "3", "2016-07-10 00:04:27", "217.69.133.232", "90");
INSERT INTO `wp_rg_form_view` VALUES("33905", "12", "2016-07-10 00:57:36", "178.137.89.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("33906", "2", "2016-07-10 00:57:44", "46.161.9.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("33907", "12", "2016-07-10 02:05:55", "46.118.117.240", "2");
INSERT INTO `wp_rg_form_view` VALUES("33908", "12", "2016-07-10 02:05:55", "46.118.117.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("33909", "3", "2016-07-10 02:05:57", "46.118.117.240", "78");
INSERT INTO `wp_rg_form_view` VALUES("33910", "3", "2016-07-10 02:05:57", "46.118.117.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("33911", "3", "2016-07-10 02:05:57", "46.118.117.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("33912", "3", "2016-07-10 03:08:36", "192.243.55.136", "60");
INSERT INTO `wp_rg_form_view` VALUES("33913", "10", "2016-07-10 03:35:54", "40.77.167.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("33914", "3", "2016-07-10 04:28:53", "207.46.13.106", "485");
INSERT INTO `wp_rg_form_view` VALUES("33915", "10", "2016-07-10 04:29:12", "207.46.13.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("33916", "9", "2016-07-10 04:29:18", "207.46.13.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("33917", "8", "2016-07-10 04:29:23", "207.46.13.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("33918", "3", "2016-07-10 05:11:09", "194.187.170.110", "132");
INSERT INTO `wp_rg_form_view` VALUES("33919", "2", "2016-07-10 05:38:31", "46.161.9.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("33920", "3", "2016-07-10 06:00:53", "174.129.237.157", "152");
INSERT INTO `wp_rg_form_view` VALUES("33921", "10", "2016-07-10 06:29:44", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("33922", "12", "2016-07-10 06:52:00", "46.119.117.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("33923", "3", "2016-07-10 07:15:57", "194.187.170.110", "93");
INSERT INTO `wp_rg_form_view` VALUES("33924", "2", "2016-07-10 07:19:47", "192.243.55.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("33925", "11", "2016-07-10 08:03:44", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("33926", "3", "2016-07-10 08:03:45", "199.21.99.202", "72");
INSERT INTO `wp_rg_form_view` VALUES("33927", "3", "2016-07-10 09:06:00", "207.46.13.32", "62");
INSERT INTO `wp_rg_form_view` VALUES("33928", "1", "2016-07-10 09:19:16", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("33929", "3", "2016-07-10 10:15:23", "69.4.91.19", "155");
INSERT INTO `wp_rg_form_view` VALUES("33930", "12", "2016-07-10 10:34:10", "178.137.89.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("33931", "1", "2016-07-10 10:38:58", "5.189.142.153", "4");
INSERT INTO `wp_rg_form_view` VALUES("33932", "3", "2016-07-10 11:01:02", "207.46.13.64", "104");
INSERT INTO `wp_rg_form_view` VALUES("33933", "12", "2016-07-10 11:40:09", "46.118.117.240", "3");
INSERT INTO `wp_rg_form_view` VALUES("33934", "3", "2016-07-10 12:20:40", "69.4.91.19", "62");
INSERT INTO `wp_rg_form_view` VALUES("33935", "3", "2016-07-10 13:11:30", "217.69.133.230", "21");
INSERT INTO `wp_rg_form_view` VALUES("33936", "10", "2016-07-10 14:21:05", "207.46.13.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("33937", "3", "2016-07-10 14:21:07", "207.46.13.32", "61");
INSERT INTO `wp_rg_form_view` VALUES("33938", "3", "2016-07-10 16:13:23", "194.187.170.104", "147");
INSERT INTO `wp_rg_form_view` VALUES("33939", "12", "2016-07-10 16:39:12", "46.119.117.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("33940", "3", "2016-07-10 17:00:43", "194.187.170.104", "74");
INSERT INTO `wp_rg_form_view` VALUES("33941", "1", "2016-07-10 17:25:51", "194.187.170.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("33942", "3", "2016-07-10 18:10:43", "217.69.133.230", "73");
INSERT INTO `wp_rg_form_view` VALUES("33943", "3", "2016-07-10 19:07:18", "194.187.170.104", "171");
INSERT INTO `wp_rg_form_view` VALUES("33944", "12", "2016-07-10 19:25:46", "46.118.117.240", "2");
INSERT INTO `wp_rg_form_view` VALUES("33945", "1", "2016-07-10 19:29:13", "154.20.89.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("33946", "3", "2016-07-10 20:05:03", "24.68.17.97", "80");
INSERT INTO `wp_rg_form_view` VALUES("33947", "12", "2016-07-10 20:29:57", "178.137.89.208", "4");
INSERT INTO `wp_rg_form_view` VALUES("33948", "10", "2016-07-10 21:22:45", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("33949", "3", "2016-07-10 21:22:49", "217.69.133.233", "103");
INSERT INTO `wp_rg_form_view` VALUES("33950", "10", "2016-07-10 22:16:51", "207.46.13.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("33951", "3", "2016-07-10 22:16:54", "207.46.13.159", "91");
INSERT INTO `wp_rg_form_view` VALUES("33952", "3", "2016-07-10 23:00:18", "114.97.200.204", "40");
INSERT INTO `wp_rg_form_view` VALUES("33953", "3", "2016-07-11 00:01:42", "199.21.99.202", "124");
INSERT INTO `wp_rg_form_view` VALUES("33954", "12", "2016-07-11 00:03:41", "46.119.117.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("33955", "1", "2016-07-11 00:34:14", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("33956", "3", "2016-07-11 01:05:37", "114.97.200.204", "313");
INSERT INTO `wp_rg_form_view` VALUES("33957", "11", "2016-07-11 01:07:33", "78.159.213.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("33958", "12", "2016-07-11 01:08:20", "78.159.213.214", "3");
INSERT INTO `wp_rg_form_view` VALUES("33959", "2", "2016-07-11 01:09:22", "78.159.213.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("33960", "3", "2016-07-11 02:14:10", "217.69.133.69", "141");
INSERT INTO `wp_rg_form_view` VALUES("33961", "2", "2016-07-11 02:14:27", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("33962", "3", "2016-07-11 03:07:41", "194.187.170.112", "51");
INSERT INTO `wp_rg_form_view` VALUES("33963", "10", "2016-07-11 03:11:13", "194.187.170.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("33964", "3", "2016-07-11 04:16:02", "194.187.170.112", "52");
INSERT INTO `wp_rg_form_view` VALUES("33965", "3", "2016-07-11 05:21:42", "194.187.170.112", "112");
INSERT INTO `wp_rg_form_view` VALUES("33966", "12", "2016-07-11 05:26:11", "178.137.128.53", "6");
INSERT INTO `wp_rg_form_view` VALUES("33967", "12", "2016-07-11 05:26:11", "178.137.128.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("33968", "12", "2016-07-11 05:26:11", "178.137.128.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("33969", "12", "2016-07-11 05:26:11", "178.137.128.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("33970", "3", "2016-07-11 07:03:59", "164.132.161.34", "112");
INSERT INTO `wp_rg_form_view` VALUES("33971", "12", "2016-07-11 07:14:08", "178.137.89.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("33972", "2", "2016-07-11 07:14:25", "202.46.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("33973", "3", "2016-07-11 08:03:12", "66.249.66.148", "61");
INSERT INTO `wp_rg_form_view` VALUES("33974", "3", "2016-07-11 09:23:04", "66.249.66.144", "20");
INSERT INTO `wp_rg_form_view` VALUES("33975", "10", "2016-07-11 09:37:06", "40.77.167.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("33976", "12", "2016-07-11 10:10:36", "178.137.89.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("33977", "3", "2016-07-11 10:10:37", "178.137.89.208", "49");
INSERT INTO `wp_rg_form_view` VALUES("33978", "3", "2016-07-11 10:10:37", "178.137.89.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("33979", "3", "2016-07-11 17:05:28", "100.43.85.8", "298");
INSERT INTO `wp_rg_form_view` VALUES("33980", "3", "2016-07-11 17:05:28", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("33981", "3", "2016-07-11 17:05:28", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("33982", "3", "2016-07-11 18:08:02", "207.194.133.9", "309");
INSERT INTO `wp_rg_form_view` VALUES("33983", "10", "2016-07-11 18:16:48", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("33984", "3", "2016-07-11 19:14:44", "124.73.14.59", "62");
INSERT INTO `wp_rg_form_view` VALUES("33985", "5", "2016-07-11 19:56:54", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("33986", "3", "2016-07-11 20:00:29", "217.69.133.232", "180");
INSERT INTO `wp_rg_form_view` VALUES("33987", "10", "2016-07-11 20:37:13", "157.55.39.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("33988", "12", "2016-07-11 20:44:54", "46.118.238.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("33989", "3", "2016-07-11 21:00:02", "72.143.231.62", "110");
INSERT INTO `wp_rg_form_view` VALUES("33990", "3", "2016-07-11 22:00:10", "202.46.55.177", "94");
INSERT INTO `wp_rg_form_view` VALUES("33991", "1", "2016-07-11 22:52:44", "24.108.7.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("33992", "3", "2016-07-11 23:00:46", "24.108.7.33", "103");
INSERT INTO `wp_rg_form_view` VALUES("33993", "12", "2016-07-12 00:04:01", "124.73.14.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("33994", "3", "2016-07-12 00:04:01", "124.73.14.59", "372");
INSERT INTO `wp_rg_form_view` VALUES("33995", "2", "2016-07-12 00:06:32", "104.36.18.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("33996", "11", "2016-07-12 00:06:35", "104.36.18.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("33997", "1", "2016-07-12 00:29:14", "184.66.244.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("33998", "10", "2016-07-12 00:53:25", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("33999", "3", "2016-07-12 01:34:49", "66.249.79.176", "20");
INSERT INTO `wp_rg_form_view` VALUES("34000", "3", "2016-07-12 02:17:28", "202.46.53.193", "41");
INSERT INTO `wp_rg_form_view` VALUES("34001", "12", "2016-07-12 02:52:08", "178.137.89.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("34002", "3", "2016-07-12 03:02:15", "24.108.33.130", "65");
INSERT INTO `wp_rg_form_view` VALUES("34003", "12", "2016-07-12 03:07:14", "46.118.238.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("34004", "3", "2016-07-12 04:06:35", "157.55.39.233", "112");
INSERT INTO `wp_rg_form_view` VALUES("34005", "12", "2016-07-12 04:35:57", "46.118.117.240", "8");
INSERT INTO `wp_rg_form_view` VALUES("34006", "3", "2016-07-12 05:09:09", "199.21.99.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("34007", "3", "2016-07-12 06:01:13", "194.187.170.103", "47");
INSERT INTO `wp_rg_form_view` VALUES("34008", "3", "2016-07-12 07:21:05", "77.75.77.101", "10");
INSERT INTO `wp_rg_form_view` VALUES("34009", "3", "2016-07-12 08:04:39", "207.46.13.68", "32");
INSERT INTO `wp_rg_form_view` VALUES("34010", "3", "2016-07-12 09:31:37", "202.46.52.165", "11");
INSERT INTO `wp_rg_form_view` VALUES("34011", "3", "2016-07-12 10:00:49", "68.180.228.110", "46");
INSERT INTO `wp_rg_form_view` VALUES("34012", "3", "2016-07-12 11:25:45", "62.210.142.53", "54");
INSERT INTO `wp_rg_form_view` VALUES("34013", "10", "2016-07-12 11:27:53", "199.16.156.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("34014", "3", "2016-07-12 12:03:38", "202.46.55.125", "60");
INSERT INTO `wp_rg_form_view` VALUES("34015", "3", "2016-07-12 13:13:28", "66.249.79.176", "31");
INSERT INTO `wp_rg_form_view` VALUES("34016", "12", "2016-07-12 14:01:44", "46.118.117.240", "2");
INSERT INTO `wp_rg_form_view` VALUES("34017", "3", "2016-07-12 14:01:44", "46.118.117.240", "74");
INSERT INTO `wp_rg_form_view` VALUES("34018", "3", "2016-07-12 15:06:55", "77.75.78.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("34019", "3", "2016-07-12 16:07:15", "194.187.170.120", "83");
INSERT INTO `wp_rg_form_view` VALUES("34020", "8", "2016-07-12 16:43:48", "66.249.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("34021", "3", "2016-07-12 17:10:25", "67.70.66.180", "105");
INSERT INTO `wp_rg_form_view` VALUES("34022", "10", "2016-07-12 17:58:50", "46.4.32.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("34023", "3", "2016-07-12 18:02:10", "162.217.232.37", "194");
INSERT INTO `wp_rg_form_view` VALUES("34024", "3", "2016-07-12 19:14:53", "66.249.79.183", "51");
INSERT INTO `wp_rg_form_view` VALUES("34025", "3", "2016-07-12 20:12:23", "184.71.13.222", "154");
INSERT INTO `wp_rg_form_view` VALUES("34026", "12", "2016-07-12 20:22:46", "24.69.68.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("34027", "3", "2016-07-12 21:08:16", "68.180.228.110", "94");
INSERT INTO `wp_rg_form_view` VALUES("34028", "12", "2016-07-12 21:29:59", "46.118.117.240", "2");
INSERT INTO `wp_rg_form_view` VALUES("34029", "3", "2016-07-12 22:01:10", "68.180.228.110", "265");
INSERT INTO `wp_rg_form_view` VALUES("34030", "10", "2016-07-12 22:04:21", "24.68.17.97", "3");
INSERT INTO `wp_rg_form_view` VALUES("34031", "12", "2016-07-12 22:57:49", "178.137.89.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("34032", "3", "2016-07-12 23:14:10", "68.180.228.110", "41");
INSERT INTO `wp_rg_form_view` VALUES("34033", "10", "2016-07-12 23:19:37", "66.249.79.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("34034", "3", "2016-07-13 00:11:29", "68.180.228.110", "263");
INSERT INTO `wp_rg_form_view` VALUES("34035", "12", "2016-07-13 00:23:53", "104.236.119.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("34036", "2", "2016-07-13 00:23:53", "104.236.119.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("34037", "11", "2016-07-13 00:23:54", "104.236.119.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("34038", "10", "2016-07-13 00:48:46", "157.55.39.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("34039", "3", "2016-07-13 01:03:57", "52.207.226.2", "40");
INSERT INTO `wp_rg_form_view` VALUES("34040", "12", "2016-07-13 02:48:56", "66.249.79.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("34041", "3", "2016-07-13 02:48:57", "66.249.79.176", "51");
INSERT INTO `wp_rg_form_view` VALUES("34042", "3", "2016-07-13 03:18:13", "66.249.79.176", "110");
INSERT INTO `wp_rg_form_view` VALUES("34043", "3", "2016-07-13 04:30:31", "77.75.78.165", "20");
INSERT INTO `wp_rg_form_view` VALUES("34044", "3", "2016-07-13 05:02:03", "157.55.39.242", "91");
INSERT INTO `wp_rg_form_view` VALUES("34045", "3", "2016-07-13 06:36:42", "66.249.79.169", "51");
INSERT INTO `wp_rg_form_view` VALUES("34046", "3", "2016-07-13 07:00:27", "202.46.53.122", "326");
INSERT INTO `wp_rg_form_view` VALUES("34047", "11", "2016-07-13 07:30:15", "70.183.228.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("34048", "12", "2016-07-13 07:30:48", "70.183.228.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("34049", "2", "2016-07-13 07:31:31", "70.183.228.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("34050", "3", "2016-07-13 08:06:56", "194.187.170.103", "122");
INSERT INTO `wp_rg_form_view` VALUES("34051", "11", "2016-07-13 09:09:51", "194.187.170.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("34052", "3", "2016-07-13 09:09:51", "194.187.170.103", "90");
INSERT INTO `wp_rg_form_view` VALUES("34053", "12", "2016-07-13 09:21:38", "178.137.89.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("34054", "5", "2016-07-13 09:24:28", "194.187.170.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("34055", "3", "2016-07-13 10:31:49", "207.46.13.149", "22");
INSERT INTO `wp_rg_form_view` VALUES("34056", "12", "2016-07-13 11:03:01", "134.249.54.211", "3");
INSERT INTO `wp_rg_form_view` VALUES("34057", "3", "2016-07-13 11:03:01", "134.249.54.211", "80");
INSERT INTO `wp_rg_form_view` VALUES("34058", "12", "2016-07-13 12:11:16", "178.137.128.53", "10");
INSERT INTO `wp_rg_form_view` VALUES("34059", "12", "2016-07-13 12:11:16", "178.137.128.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("34060", "12", "2016-07-13 12:11:16", "178.137.128.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("34061", "3", "2016-07-13 12:11:17", "178.137.128.53", "139");
INSERT INTO `wp_rg_form_view` VALUES("34062", "3", "2016-07-13 12:11:17", "178.137.128.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("34063", "3", "2016-07-13 12:11:17", "178.137.128.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("34064", "3", "2016-07-13 13:02:44", "194.187.170.110", "21");
INSERT INTO `wp_rg_form_view` VALUES("34065", "3", "2016-07-13 14:02:05", "207.46.13.9", "60");
INSERT INTO `wp_rg_form_view` VALUES("34066", "8", "2016-07-13 14:37:13", "66.249.79.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("34067", "3", "2016-07-13 15:01:06", "24.108.189.119", "65");
INSERT INTO `wp_rg_form_view` VALUES("34068", "3", "2016-07-13 16:30:32", "51.255.65.82", "45");
INSERT INTO `wp_rg_form_view` VALUES("34069", "3", "2016-07-13 17:17:51", "142.36.224.243", "30");
INSERT INTO `wp_rg_form_view` VALUES("34070", "3", "2016-07-13 18:04:00", "194.187.170.113", "52");
INSERT INTO `wp_rg_form_view` VALUES("34071", "8", "2016-07-13 18:50:24", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("34072", "3", "2016-07-13 19:02:55", "207.46.13.0", "82");
INSERT INTO `wp_rg_form_view` VALUES("34073", "3", "2016-07-13 20:41:02", "77.75.79.11", "34");
INSERT INTO `wp_rg_form_view` VALUES("34074", "3", "2016-07-13 21:14:52", "202.46.58.204", "51");
INSERT INTO `wp_rg_form_view` VALUES("34075", "3", "2016-07-13 22:00:32", "68.180.228.110", "294");
INSERT INTO `wp_rg_form_view` VALUES("34076", "11", "2016-07-13 22:29:05", "145.133.160.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("34077", "12", "2016-07-13 22:29:31", "145.133.160.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("34078", "2", "2016-07-13 22:30:11", "145.133.160.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("34079", "3", "2016-07-13 23:02:53", "184.66.244.73", "73");
INSERT INTO `wp_rg_form_view` VALUES("34080", "3", "2016-07-14 00:09:18", "114.97.201.8", "41");
INSERT INTO `wp_rg_form_view` VALUES("34081", "3", "2016-07-14 01:02:30", "68.180.228.110", "170");
INSERT INTO `wp_rg_form_view` VALUES("34082", "2", "2016-07-14 01:16:04", "93.187.36.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("34083", "3", "2016-07-14 02:05:17", "202.46.49.208", "143");
INSERT INTO `wp_rg_form_view` VALUES("34084", "6", "2016-07-14 03:08:28", "51.255.65.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("34085", "3", "2016-07-14 03:08:28", "51.255.65.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("34086", "3", "2016-07-14 04:15:16", "68.180.228.110", "96");
INSERT INTO `wp_rg_form_view` VALUES("34087", "3", "2016-07-14 05:01:30", "164.132.161.78", "62");
INSERT INTO `wp_rg_form_view` VALUES("34088", "12", "2016-07-14 05:12:45", "46.119.112.87", "2");
INSERT INTO `wp_rg_form_view` VALUES("34089", "3", "2016-07-14 06:25:51", "194.187.170.114", "52");
INSERT INTO `wp_rg_form_view` VALUES("34090", "12", "2016-07-14 06:31:06", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34091", "3", "2016-07-14 07:00:52", "194.187.170.114", "177");
INSERT INTO `wp_rg_form_view` VALUES("34092", "9", "2016-07-14 07:56:45", "207.46.13.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("34093", "3", "2016-07-14 08:04:25", "194.187.170.114", "114");
INSERT INTO `wp_rg_form_view` VALUES("34094", "11", "2016-07-14 08:16:58", "194.187.170.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("34095", "5", "2016-07-14 08:27:24", "194.187.170.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("34096", "12", "2016-07-14 08:54:04", "194.187.170.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("34097", "3", "2016-07-14 09:01:36", "194.187.170.114", "126");
INSERT INTO `wp_rg_form_view` VALUES("34098", "2", "2016-07-14 09:06:12", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("34099", "12", "2016-07-14 09:27:42", "68.180.228.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("34100", "3", "2016-07-14 10:09:19", "196.196.90.163", "91");
INSERT INTO `wp_rg_form_view` VALUES("34101", "10", "2016-07-14 10:21:09", "157.55.39.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("34102", "1", "2016-07-14 11:01:12", "103.23.22.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("34103", "3", "2016-07-14 11:01:13", "103.23.22.221", "153");
INSERT INTO `wp_rg_form_view` VALUES("34104", "9", "2016-07-14 11:43:01", "165.231.96.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("34105", "12", "2016-07-14 11:51:23", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34106", "3", "2016-07-14 12:09:06", "68.180.228.110", "130");
INSERT INTO `wp_rg_form_view` VALUES("34107", "12", "2016-07-14 12:15:24", "134.249.53.10", "7");
INSERT INTO `wp_rg_form_view` VALUES("34108", "12", "2016-07-14 12:15:24", "134.249.53.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34109", "12", "2016-07-14 12:15:24", "134.249.53.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34110", "3", "2016-07-14 13:24:19", "65.55.218.43", "61");
INSERT INTO `wp_rg_form_view` VALUES("34111", "12", "2016-07-14 13:30:33", "46.118.156.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("34112", "12", "2016-07-14 14:27:21", "46.119.112.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("34113", "3", "2016-07-14 14:27:21", "46.119.112.87", "70");
INSERT INTO `wp_rg_form_view` VALUES("34114", "3", "2016-07-14 15:12:58", "202.46.52.146", "332");
INSERT INTO `wp_rg_form_view` VALUES("34115", "10", "2016-07-14 15:24:39", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("34116", "11", "2016-07-14 15:54:54", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("34117", "12", "2016-07-14 15:55:38", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("34118", "2", "2016-07-14 15:56:38", "23.31.24.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("34119", "3", "2016-07-14 16:18:51", "207.46.13.128", "142");
INSERT INTO `wp_rg_form_view` VALUES("34120", "12", "2016-07-14 16:20:15", "54.210.212.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("34121", "12", "2016-07-14 17:00:50", "184.151.118.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("34122", "3", "2016-07-14 17:00:50", "184.151.118.96", "21");
INSERT INTO `wp_rg_form_view` VALUES("34123", "3", "2016-07-14 18:05:05", "77.75.78.162", "166");
INSERT INTO `wp_rg_form_view` VALUES("34124", "1", "2016-07-14 18:48:53", "24.68.126.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("34125", "3", "2016-07-14 19:08:39", "164.132.161.64", "42");
INSERT INTO `wp_rg_form_view` VALUES("34126", "3", "2016-07-14 20:01:37", "202.46.58.26", "40");
INSERT INTO `wp_rg_form_view` VALUES("34127", "3", "2016-07-14 21:18:53", "194.187.170.117", "142");
INSERT INTO `wp_rg_form_view` VALUES("34128", "11", "2016-07-14 21:40:55", "151.80.31.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("34129", "12", "2016-07-14 21:42:49", "134.249.53.10", "5");
INSERT INTO `wp_rg_form_view` VALUES("34130", "3", "2016-07-14 22:00:16", "72.143.234.66", "62");
INSERT INTO `wp_rg_form_view` VALUES("34131", "3", "2016-07-14 23:01:38", "202.46.57.162", "144");
INSERT INTO `wp_rg_form_view` VALUES("34132", "3", "2016-07-15 00:02:37", "89.36.66.217", "125");
INSERT INTO `wp_rg_form_view` VALUES("34133", "12", "2016-07-15 00:37:19", "52.71.155.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("34134", "12", "2016-07-15 01:01:49", "46.119.112.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("34135", "3", "2016-07-15 01:01:49", "46.119.112.87", "186");
INSERT INTO `wp_rg_form_view` VALUES("34136", "10", "2016-07-15 01:11:04", "68.180.228.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("34137", "2", "2016-07-15 01:36:16", "104.160.31.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("34138", "3", "2016-07-15 02:02:43", "207.46.13.168", "41");
INSERT INTO `wp_rg_form_view` VALUES("34139", "1", "2016-07-15 02:10:32", "82.114.73.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("34140", "1", "2016-07-15 03:33:48", "196.196.37.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("34141", "3", "2016-07-15 03:33:49", "196.196.37.176", "82");
INSERT INTO `wp_rg_form_view` VALUES("34142", "3", "2016-07-15 04:02:59", "202.46.56.116", "123");
INSERT INTO `wp_rg_form_view` VALUES("34143", "2", "2016-07-15 04:07:55", "192.243.55.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("34144", "12", "2016-07-15 04:21:04", "68.180.228.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("34145", "3", "2016-07-15 05:02:12", "68.180.228.110", "110");
INSERT INTO `wp_rg_form_view` VALUES("34146", "12", "2016-07-15 05:37:02", "134.249.53.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("34147", "3", "2016-07-15 06:12:00", "207.46.13.152", "215");
INSERT INTO `wp_rg_form_view` VALUES("34148", "12", "2016-07-15 06:34:58", "223.240.120.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("34149", "9", "2016-07-15 07:19:17", "165.231.108.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("34150", "3", "2016-07-15 07:19:17", "165.231.108.180", "81");
INSERT INTO `wp_rg_form_view` VALUES("34151", "3", "2016-07-15 08:04:21", "66.249.79.190", "52");
INSERT INTO `wp_rg_form_view` VALUES("34152", "3", "2016-07-15 09:03:47", "220.181.108.107", "139");
INSERT INTO `wp_rg_form_view` VALUES("34153", "12", "2016-07-15 09:06:51", "46.118.156.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("34154", "2", "2016-07-15 09:59:59", "68.180.228.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("34155", "3", "2016-07-15 10:00:00", "68.180.228.110", "83");
INSERT INTO `wp_rg_form_view` VALUES("34156", "12", "2016-07-15 10:08:58", "46.119.112.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("34157", "8", "2016-07-15 11:26:44", "40.77.167.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("34158", "3", "2016-07-15 11:26:46", "40.77.167.61", "41");
INSERT INTO `wp_rg_form_view` VALUES("34159", "3", "2016-07-15 12:19:51", "68.180.228.110", "114");
INSERT INTO `wp_rg_form_view` VALUES("34160", "1", "2016-07-15 12:32:58", "5.34.241.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("34161", "12", "2016-07-15 12:47:37", "46.118.238.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("34162", "3", "2016-07-15 13:03:01", "194.187.170.105", "56");
INSERT INTO `wp_rg_form_view` VALUES("34163", "12", "2016-07-15 13:10:18", "46.119.112.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("34164", "3", "2016-07-15 14:00:09", "91.121.141.219", "82");
INSERT INTO `wp_rg_form_view` VALUES("34165", "3", "2016-07-15 15:09:57", "207.46.13.4", "42");
INSERT INTO `wp_rg_form_view` VALUES("34166", "8", "2016-07-15 15:26:27", "51.255.65.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("34167", "3", "2016-07-15 16:00:04", "157.55.39.87", "63");
INSERT INTO `wp_rg_form_view` VALUES("34168", "11", "2016-07-15 16:38:17", "220.181.108.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("34169", "3", "2016-07-15 17:00:34", "68.180.228.110", "102");
INSERT INTO `wp_rg_form_view` VALUES("34170", "3", "2016-07-15 18:21:24", "192.243.55.135", "152");
INSERT INTO `wp_rg_form_view` VALUES("34171", "2", "2016-07-15 18:58:22", "196.196.88.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("34172", "8", "2016-07-15 19:45:36", "157.55.39.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("34173", "3", "2016-07-15 19:45:37", "157.55.39.249", "50");
INSERT INTO `wp_rg_form_view` VALUES("34174", "10", "2016-07-15 20:09:45", "51.255.65.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("34175", "3", "2016-07-15 20:09:45", "51.255.65.55", "103");
INSERT INTO `wp_rg_form_view` VALUES("34176", "3", "2016-07-15 21:01:23", "68.180.228.110", "142");
INSERT INTO `wp_rg_form_view` VALUES("34177", "12", "2016-07-15 21:02:08", "46.118.238.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("34178", "3", "2016-07-15 22:06:23", "68.180.228.110", "42");
INSERT INTO `wp_rg_form_view` VALUES("34179", "3", "2016-07-15 23:03:51", "142.32.55.224", "50");
INSERT INTO `wp_rg_form_view` VALUES("34180", "3", "2016-07-16 00:18:44", "207.46.13.124", "52");
INSERT INTO `wp_rg_form_view` VALUES("34181", "12", "2016-07-16 01:02:40", "178.137.163.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("34182", "3", "2016-07-16 01:02:40", "178.137.163.41", "552");
INSERT INTO `wp_rg_form_view` VALUES("34183", "5", "2016-07-16 01:24:58", "157.55.39.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34184", "10", "2016-07-16 01:25:02", "157.55.39.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("34185", "6", "2016-07-16 01:25:22", "157.55.39.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34186", "9", "2016-07-16 01:25:33", "157.55.39.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("34187", "3", "2016-07-16 02:21:10", "68.180.228.110", "21");
INSERT INTO `wp_rg_form_view` VALUES("34188", "3", "2016-07-16 03:17:42", "5.9.145.132", "31");
INSERT INTO `wp_rg_form_view` VALUES("34189", "10", "2016-07-16 03:33:39", "202.46.53.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("34190", "1", "2016-07-16 03:39:09", "192.187.124.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("34191", "3", "2016-07-16 04:14:04", "194.187.170.119", "73");
INSERT INTO `wp_rg_form_view` VALUES("34192", "3", "2016-07-16 05:10:02", "68.180.228.110", "737");
INSERT INTO `wp_rg_form_view` VALUES("34193", "11", "2016-07-16 05:37:42", "37.187.56.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("34194", "2", "2016-07-16 05:37:48", "37.187.56.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("34195", "12", "2016-07-16 05:39:50", "37.187.56.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("34196", "1", "2016-07-16 05:40:28", "37.187.56.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("34197", "3", "2016-07-16 06:00:45", "165.231.108.107", "295");
INSERT INTO `wp_rg_form_view` VALUES("34198", "12", "2016-07-16 06:23:51", "46.119.112.87", "2");
INSERT INTO `wp_rg_form_view` VALUES("34199", "8", "2016-07-16 07:24:00", "66.249.79.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("34200", "3", "2016-07-16 07:24:01", "66.249.79.183", "46");
INSERT INTO `wp_rg_form_view` VALUES("34201", "3", "2016-07-16 08:01:49", "164.132.161.95", "54");
INSERT INTO `wp_rg_form_view` VALUES("34202", "3", "2016-07-16 09:28:30", "62.210.162.184", "22");
INSERT INTO `wp_rg_form_view` VALUES("34203", "3", "2016-07-16 10:00:09", "68.180.228.110", "102");
INSERT INTO `wp_rg_form_view` VALUES("34204", "10", "2016-07-16 10:05:50", "66.249.79.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("34205", "12", "2016-07-16 10:43:47", "46.118.156.206", "3");
INSERT INTO `wp_rg_form_view` VALUES("34206", "3", "2016-07-16 11:12:35", "62.210.162.184", "51");
INSERT INTO `wp_rg_form_view` VALUES("34207", "3", "2016-07-16 12:03:23", "68.180.228.110", "82");
INSERT INTO `wp_rg_form_view` VALUES("34208", "3", "2016-07-16 13:06:52", "196.196.90.224", "112");
INSERT INTO `wp_rg_form_view` VALUES("34209", "12", "2016-07-16 13:15:22", "178.137.163.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("34210", "3", "2016-07-16 14:05:31", "141.8.143.195", "72");
INSERT INTO `wp_rg_form_view` VALUES("34211", "3", "2016-07-16 15:26:15", "207.46.13.85", "121");
INSERT INTO `wp_rg_form_view` VALUES("34212", "2", "2016-07-16 15:44:36", "82.208.160.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("34213", "12", "2016-07-16 16:10:59", "134.249.53.10", "4");
INSERT INTO `wp_rg_form_view` VALUES("34214", "12", "2016-07-16 16:10:59", "134.249.53.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34215", "3", "2016-07-16 16:10:59", "134.249.53.10", "139");
INSERT INTO `wp_rg_form_view` VALUES("34216", "3", "2016-07-16 16:10:59", "134.249.53.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34217", "11", "2016-07-16 16:15:10", "157.55.39.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("34218", "3", "2016-07-16 17:00:32", "66.249.79.197", "144");
INSERT INTO `wp_rg_form_view` VALUES("34219", "12", "2016-07-16 17:25:36", "46.118.156.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("34220", "3", "2016-07-16 18:10:09", "157.55.39.155", "51");
INSERT INTO `wp_rg_form_view` VALUES("34221", "3", "2016-07-16 19:05:20", "151.80.31.100", "279");
INSERT INTO `wp_rg_form_view` VALUES("34222", "3", "2016-07-16 20:01:09", "68.180.228.110", "284");
INSERT INTO `wp_rg_form_view` VALUES("34223", "10", "2016-07-16 20:33:54", "207.46.13.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("34224", "3", "2016-07-16 21:05:38", "202.46.54.109", "51");
INSERT INTO `wp_rg_form_view` VALUES("34225", "9", "2016-07-16 22:07:26", "196.196.88.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("34226", "3", "2016-07-16 22:07:26", "196.196.88.176", "124");
INSERT INTO `wp_rg_form_view` VALUES("34227", "3", "2016-07-16 23:10:25", "62.210.162.184", "62");
INSERT INTO `wp_rg_form_view` VALUES("34228", "9", "2016-07-16 23:50:19", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("34229", "3", "2016-07-17 00:25:05", "207.46.13.122", "72");
INSERT INTO `wp_rg_form_view` VALUES("34230", "12", "2016-07-17 01:29:17", "46.118.156.206", "4");
INSERT INTO `wp_rg_form_view` VALUES("34231", "3", "2016-07-17 01:29:17", "46.118.156.206", "70");
INSERT INTO `wp_rg_form_view` VALUES("34232", "9", "2016-07-17 01:32:05", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("34233", "12", "2016-07-17 02:00:00", "134.249.53.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("34234", "3", "2016-07-17 02:00:00", "134.249.53.10", "60");
INSERT INTO `wp_rg_form_view` VALUES("34235", "3", "2016-07-17 03:05:48", "24.68.17.97", "207");
INSERT INTO `wp_rg_form_view` VALUES("34236", "9", "2016-07-17 03:12:55", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("34237", "12", "2016-07-17 03:21:28", "24.68.17.97", "5");
INSERT INTO `wp_rg_form_view` VALUES("34238", "12", "2016-07-17 04:12:09", "178.137.128.53", "4");
INSERT INTO `wp_rg_form_view` VALUES("34239", "3", "2016-07-17 04:12:10", "178.137.128.53", "129");
INSERT INTO `wp_rg_form_view` VALUES("34240", "3", "2016-07-17 05:14:10", "196.196.90.66", "31");
INSERT INTO `wp_rg_form_view` VALUES("34241", "3", "2016-07-17 06:05:59", "40.77.167.47", "31");
INSERT INTO `wp_rg_form_view` VALUES("34242", "3", "2016-07-17 07:12:10", "66.249.79.183", "20");
INSERT INTO `wp_rg_form_view` VALUES("34243", "3", "2016-07-17 08:04:58", "202.46.51.85", "102");
INSERT INTO `wp_rg_form_view` VALUES("34244", "9", "2016-07-17 08:22:05", "157.55.39.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("34245", "3", "2016-07-17 09:20:35", "142.0.41.2", "101");
INSERT INTO `wp_rg_form_view` VALUES("34246", "12", "2016-07-17 09:32:38", "134.249.53.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("34247", "3", "2016-07-17 10:18:10", "194.187.170.115", "126");
INSERT INTO `wp_rg_form_view` VALUES("34248", "12", "2016-07-17 10:51:27", "46.118.238.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("34249", "3", "2016-07-17 11:18:17", "194.187.170.115", "54");
INSERT INTO `wp_rg_form_view` VALUES("34250", "12", "2016-07-17 11:50:55", "46.119.112.87", "2");
INSERT INTO `wp_rg_form_view` VALUES("34251", "3", "2016-07-17 12:12:03", "199.21.99.202", "34");
INSERT INTO `wp_rg_form_view` VALUES("34252", "3", "2016-07-17 13:21:23", "68.180.228.110", "51");
INSERT INTO `wp_rg_form_view` VALUES("34253", "12", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34254", "12", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34255", "12", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34256", "3", "2016-07-17 14:06:28", "46.118.156.206", "48");
INSERT INTO `wp_rg_form_view` VALUES("34257", "3", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34258", "3", "2016-07-17 14:06:28", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34259", "3", "2016-07-17 15:05:58", "40.77.167.86", "92");
INSERT INTO `wp_rg_form_view` VALUES("34260", "6", "2016-07-17 15:45:05", "202.46.53.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("34261", "12", "2016-07-17 15:45:54", "46.119.112.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("34262", "3", "2016-07-17 16:14:23", "68.180.228.110", "141");
INSERT INTO `wp_rg_form_view` VALUES("34263", "12", "2016-07-17 16:21:27", "37.115.158.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("34264", "1", "2016-07-17 16:29:05", "198.204.231.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("34265", "11", "2016-07-17 16:56:12", "66.249.79.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("34266", "2", "2016-07-17 16:59:03", "40.77.167.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("34267", "3", "2016-07-17 17:56:30", "66.249.79.190", "10");
INSERT INTO `wp_rg_form_view` VALUES("34268", "3", "2016-07-17 18:03:33", "77.75.77.72", "113");
INSERT INTO `wp_rg_form_view` VALUES("34269", "3", "2016-07-17 19:41:12", "40.77.167.75", "30");
INSERT INTO `wp_rg_form_view` VALUES("34270", "11", "2016-07-17 19:54:24", "40.77.167.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("34271", "3", "2016-07-17 20:08:17", "62.210.162.184", "182");
INSERT INTO `wp_rg_form_view` VALUES("34272", "3", "2016-07-17 21:06:59", "66.249.79.183", "82");
INSERT INTO `wp_rg_form_view` VALUES("34273", "3", "2016-07-17 22:15:07", "157.55.39.132", "60");
INSERT INTO `wp_rg_form_view` VALUES("34274", "3", "2016-07-17 23:05:30", "66.249.79.190", "92");
INSERT INTO `wp_rg_form_view` VALUES("34275", "3", "2016-07-18 00:03:45", "157.55.39.158", "110");
INSERT INTO `wp_rg_form_view` VALUES("34276", "12", "2016-07-18 00:15:51", "178.137.163.41", "6");
INSERT INTO `wp_rg_form_view` VALUES("34277", "10", "2016-07-18 00:52:31", "77.75.78.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("34278", "3", "2016-07-18 01:14:04", "207.46.13.181", "30");
INSERT INTO `wp_rg_form_view` VALUES("34279", "3", "2016-07-18 02:01:14", "157.55.39.93", "123");
INSERT INTO `wp_rg_form_view` VALUES("34280", "11", "2016-07-18 02:20:17", "207.46.13.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("34281", "2", "2016-07-18 03:08:51", "157.55.39.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("34282", "3", "2016-07-18 03:08:51", "157.55.39.158", "40");
INSERT INTO `wp_rg_form_view` VALUES("34283", "3", "2016-07-18 04:16:43", "24.69.74.3", "21");
INSERT INTO `wp_rg_form_view` VALUES("34284", "3", "2016-07-18 05:18:13", "77.75.78.172", "447");
INSERT INTO `wp_rg_form_view` VALUES("34285", "9", "2016-07-18 05:24:43", "207.46.13.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34286", "12", "2016-07-18 05:28:35", "157.55.39.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("34287", "7", "2016-07-18 05:28:48", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("34288", "10", "2016-07-18 05:29:10", "157.55.39.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("34289", "3", "2016-07-18 06:29:16", "202.46.51.30", "189");
INSERT INTO `wp_rg_form_view` VALUES("34290", "10", "2016-07-18 07:39:36", "141.8.143.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("34291", "3", "2016-07-18 07:39:37", "141.8.143.242", "71");
INSERT INTO `wp_rg_form_view` VALUES("34292", "7", "2016-07-18 07:45:25", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("34293", "3", "2016-07-18 08:05:56", "151.80.31.163", "41");
INSERT INTO `wp_rg_form_view` VALUES("34294", "12", "2016-07-18 08:23:47", "46.119.112.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("34295", "3", "2016-07-18 09:00:53", "51.255.65.62", "60");
INSERT INTO `wp_rg_form_view` VALUES("34296", "3", "2016-07-18 10:06:48", "66.249.79.197", "3978");
INSERT INTO `wp_rg_form_view` VALUES("34297", "11", "2016-07-18 10:14:45", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34298", "2", "2016-07-18 10:14:49", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34299", "12", "2016-07-18 10:16:35", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34300", "1", "2016-07-18 10:17:19", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34301", "10", "2016-07-18 10:22:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34302", "5", "2016-07-18 10:23:31", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34303", "8", "2016-07-18 10:27:09", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34304", "9", "2016-07-18 10:27:18", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34305", "6", "2016-07-18 10:28:17", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34306", "3", "2016-07-18 11:03:34", "202.46.51.25", "3388");
INSERT INTO `wp_rg_form_view` VALUES("34307", "2", "2016-07-18 11:16:50", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("34308", "12", "2016-07-18 11:56:52", "207.46.13.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("34309", "3", "2016-07-18 12:01:00", "5.9.98.130", "6413");
INSERT INTO `wp_rg_form_view` VALUES("34310", "12", "2016-07-18 12:06:30", "178.137.163.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("34311", "2", "2016-07-18 12:48:26", "104.156.231.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("34312", "3", "2016-07-18 13:00:03", "5.9.98.130", "1743");
INSERT INTO `wp_rg_form_view` VALUES("34313", "3", "2016-07-18 14:00:01", "5.9.98.130", "6435");
INSERT INTO `wp_rg_form_view` VALUES("34314", "12", "2016-07-18 14:11:41", "154.20.44.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("34315", "3", "2016-07-18 15:00:01", "196.196.88.69", "5993");
INSERT INTO `wp_rg_form_view` VALUES("34316", "12", "2016-07-18 15:45:52", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34317", "3", "2016-07-18 16:00:03", "5.9.98.130", "151");
INSERT INTO `wp_rg_form_view` VALUES("34318", "3", "2016-07-18 17:11:47", "184.66.80.25", "3308");
INSERT INTO `wp_rg_form_view` VALUES("34319", "3", "2016-07-18 18:00:04", "5.9.98.130", "5862");
INSERT INTO `wp_rg_form_view` VALUES("34320", "3", "2016-07-18 19:00:00", "5.9.98.130", "6396");
INSERT INTO `wp_rg_form_view` VALUES("34321", "7", "2016-07-18 19:30:47", "207.46.13.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("34322", "3", "2016-07-18 20:00:00", "5.9.98.130", "6560");
INSERT INTO `wp_rg_form_view` VALUES("34323", "8", "2016-07-18 20:46:07", "66.249.79.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("34324", "3", "2016-07-18 21:00:03", "5.9.98.130", "5237");
INSERT INTO `wp_rg_form_view` VALUES("34325", "12", "2016-07-18 21:21:36", "37.115.158.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("34326", "9", "2016-07-18 21:28:00", "114.97.197.47", "2");
INSERT INTO `wp_rg_form_view` VALUES("34327", "3", "2016-07-18 22:11:25", "24.108.16.65", "425");
INSERT INTO `wp_rg_form_view` VALUES("34328", "12", "2016-07-18 22:14:03", "207.46.13.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("34329", "1", "2016-07-18 22:42:18", "104.227.191.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("34330", "2", "2016-07-18 22:56:44", "104.156.231.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("34331", "3", "2016-07-18 23:27:24", "5.9.98.130", "102");
INSERT INTO `wp_rg_form_view` VALUES("34332", "9", "2016-07-18 23:27:49", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34333", "3", "2016-07-19 00:01:53", "77.75.78.163", "40");
INSERT INTO `wp_rg_form_view` VALUES("34334", "12", "2016-07-19 00:28:34", "178.137.163.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("34335", "3", "2016-07-19 01:11:20", "202.46.52.63", "43");
INSERT INTO `wp_rg_form_view` VALUES("34336", "1", "2016-07-19 01:11:29", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34337", "12", "2016-07-19 02:00:48", "134.249.65.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("34338", "3", "2016-07-19 02:00:48", "134.249.65.218", "71");
INSERT INTO `wp_rg_form_view` VALUES("34339", "1", "2016-07-19 02:17:06", "185.107.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("34340", "3", "2016-07-19 03:08:11", "108.61.123.71", "40");
INSERT INTO `wp_rg_form_view` VALUES("34341", "3", "2016-07-19 04:04:02", "99.199.2.158", "80");
INSERT INTO `wp_rg_form_view` VALUES("34342", "12", "2016-07-19 05:10:55", "46.119.112.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("34343", "3", "2016-07-19 05:10:55", "46.119.112.87", "101");
INSERT INTO `wp_rg_form_view` VALUES("34344", "2", "2016-07-19 05:40:07", "66.249.79.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("34345", "3", "2016-07-19 06:04:09", "66.249.69.190", "50");
INSERT INTO `wp_rg_form_view` VALUES("34346", "12", "2016-07-19 06:44:33", "46.119.112.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("34347", "3", "2016-07-19 07:02:44", "66.249.79.197", "165");
INSERT INTO `wp_rg_form_view` VALUES("34348", "12", "2016-07-19 07:12:45", "46.118.156.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("34349", "12", "2016-07-19 08:02:47", "134.249.53.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("34350", "3", "2016-07-19 08:02:47", "134.249.53.10", "112");
INSERT INTO `wp_rg_form_view` VALUES("34351", "3", "2016-07-19 08:02:47", "134.249.53.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34352", "1", "2016-07-19 08:07:17", "5.34.241.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("34353", "3", "2016-07-19 09:01:42", "202.46.53.205", "52");
INSERT INTO `wp_rg_form_view` VALUES("34354", "2", "2016-07-19 09:04:00", "5.255.250.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("34355", "3", "2016-07-19 10:19:11", "157.55.39.129", "31");
INSERT INTO `wp_rg_form_view` VALUES("34356", "3", "2016-07-19 11:12:41", "62.210.162.184", "71");
INSERT INTO `wp_rg_form_view` VALUES("34357", "3", "2016-07-19 12:44:38", "68.180.229.121", "1256");
INSERT INTO `wp_rg_form_view` VALUES("34358", "1", "2016-07-19 12:50:03", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34359", "11", "2016-07-19 12:50:18", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34360", "5", "2016-07-19 12:57:38", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34361", "3", "2016-07-19 13:00:03", "104.131.46.50", "4207");
INSERT INTO `wp_rg_form_view` VALUES("34362", "12", "2016-07-19 13:01:28", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34363", "6", "2016-07-19 13:10:23", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34364", "9", "2016-07-19 13:19:08", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34365", "10", "2016-07-19 13:30:54", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34366", "2", "2016-07-19 13:54:16", "104.131.46.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34367", "3", "2016-07-19 14:00:04", "104.131.46.50", "758");
INSERT INTO `wp_rg_form_view` VALUES("34368", "3", "2016-07-19 15:05:04", "178.137.163.41", "43");
INSERT INTO `wp_rg_form_view` VALUES("34369", "12", "2016-07-19 15:08:15", "184.66.135.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("34370", "3", "2016-07-19 16:15:33", "184.66.244.73", "93");
INSERT INTO `wp_rg_form_view` VALUES("34371", "3", "2016-07-19 17:26:01", "64.180.74.162", "51");
INSERT INTO `wp_rg_form_view` VALUES("34372", "3", "2016-07-19 18:14:44", "144.228.22.150", "42");
INSERT INTO `wp_rg_form_view` VALUES("34373", "3", "2016-07-19 19:41:42", "202.46.49.139", "31");
INSERT INTO `wp_rg_form_view` VALUES("34374", "3", "2016-07-19 20:06:55", "62.210.162.184", "72");
INSERT INTO `wp_rg_form_view` VALUES("34375", "1", "2016-07-19 20:27:06", "118.172.148.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("34376", "11", "2016-07-19 21:22:11", "78.226.98.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("34377", "3", "2016-07-19 21:22:21", "78.226.98.210", "325");
INSERT INTO `wp_rg_form_view` VALUES("34378", "12", "2016-07-19 21:23:04", "78.226.98.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("34379", "8", "2016-07-19 21:23:51", "202.46.55.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("34380", "2", "2016-07-19 21:23:57", "78.226.98.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("34381", "3", "2016-07-19 22:01:37", "131.137.245.209", "60");
INSERT INTO `wp_rg_form_view` VALUES("34382", "10", "2016-07-19 23:23:51", "199.59.148.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("34383", "3", "2016-07-19 23:23:51", "199.59.148.211", "30");
INSERT INTO `wp_rg_form_view` VALUES("34384", "10", "2016-07-20 00:00:15", "77.75.77.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("34385", "3", "2016-07-20 00:00:16", "77.75.77.109", "83");
INSERT INTO `wp_rg_form_view` VALUES("34386", "3", "2016-07-20 01:00:56", "220.181.108.178", "106");
INSERT INTO `wp_rg_form_view` VALUES("34387", "3", "2016-07-20 02:04:37", "66.249.79.152", "245");
INSERT INTO `wp_rg_form_view` VALUES("34388", "9", "2016-07-20 02:27:59", "40.77.167.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("34389", "3", "2016-07-20 03:01:32", "62.210.162.184", "105");
INSERT INTO `wp_rg_form_view` VALUES("34390", "3", "2016-07-20 04:14:58", "202.46.51.103", "74");
INSERT INTO `wp_rg_form_view` VALUES("34391", "10", "2016-07-20 05:01:27", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("34392", "3", "2016-07-20 05:01:27", "66.249.79.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("34393", "3", "2016-07-20 06:20:07", "157.55.39.16", "31");
INSERT INTO `wp_rg_form_view` VALUES("34394", "3", "2016-07-20 07:08:35", "192.252.225.195", "40");
INSERT INTO `wp_rg_form_view` VALUES("34395", "3", "2016-07-20 08:09:10", "62.210.162.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("34396", "10", "2016-07-20 09:02:52", "151.80.31.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("34397", "3", "2016-07-20 09:02:58", "151.80.31.167", "60");
INSERT INTO `wp_rg_form_view` VALUES("34398", "12", "2016-07-20 09:26:08", "157.55.39.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("34399", "3", "2016-07-20 10:13:08", "51.255.65.3", "74");
INSERT INTO `wp_rg_form_view` VALUES("34400", "10", "2016-07-20 11:34:51", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34401", "3", "2016-07-20 11:34:54", "68.180.229.121", "10");
INSERT INTO `wp_rg_form_view` VALUES("34402", "3", "2016-07-20 12:01:27", "68.180.229.121", "83");
INSERT INTO `wp_rg_form_view` VALUES("34403", "9", "2016-07-20 12:03:45", "157.55.39.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("34404", "1", "2016-07-20 12:10:05", "176.9.176.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("34405", "3", "2016-07-20 13:30:37", "202.46.50.80", "77");
INSERT INTO `wp_rg_form_view` VALUES("34406", "3", "2016-07-20 14:25:24", "51.255.65.23", "20");
INSERT INTO `wp_rg_form_view` VALUES("34407", "1", "2016-07-20 15:11:05", "202.46.54.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("34408", "3", "2016-07-20 15:11:05", "202.46.54.186", "82");
INSERT INTO `wp_rg_form_view` VALUES("34409", "3", "2016-07-20 16:00:38", "5.9.145.132", "21");
INSERT INTO `wp_rg_form_view` VALUES("34410", "2", "2016-07-20 17:14:58", "40.77.167.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("34411", "3", "2016-07-20 17:14:59", "40.77.167.9", "153");
INSERT INTO `wp_rg_form_view` VALUES("34412", "12", "2016-07-20 17:33:15", "207.194.133.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("34413", "3", "2016-07-20 18:28:26", "24.108.4.138", "41");
INSERT INTO `wp_rg_form_view` VALUES("34414", "3", "2016-07-20 19:10:37", "24.68.37.191", "102");
INSERT INTO `wp_rg_form_view` VALUES("34415", "12", "2016-07-20 19:47:01", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("34416", "3", "2016-07-20 20:10:30", "23.89.63.72", "122");
INSERT INTO `wp_rg_form_view` VALUES("34417", "3", "2016-07-20 21:46:41", "157.55.39.248", "14");
INSERT INTO `wp_rg_form_view` VALUES("34418", "1", "2016-07-20 22:29:30", "172.245.129.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("34419", "3", "2016-07-20 22:29:31", "172.245.129.52", "31");
INSERT INTO `wp_rg_form_view` VALUES("34420", "3", "2016-07-20 23:05:48", "46.119.112.87", "140");
INSERT INTO `wp_rg_form_view` VALUES("34421", "3", "2016-07-21 00:04:50", "66.249.79.152", "52");
INSERT INTO `wp_rg_form_view` VALUES("34422", "3", "2016-07-21 01:14:18", "66.249.79.148", "248");
INSERT INTO `wp_rg_form_view` VALUES("34423", "1", "2016-07-21 01:41:12", "207.216.68.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("34424", "8", "2016-07-21 03:53:11", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("34425", "3", "2016-07-21 03:53:15", "157.55.39.248", "10");
INSERT INTO `wp_rg_form_view` VALUES("34426", "3", "2016-07-21 04:04:59", "77.75.77.32", "30");
INSERT INTO `wp_rg_form_view` VALUES("34427", "10", "2016-07-21 04:19:29", "51.255.65.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("34428", "3", "2016-07-21 05:13:52", "77.75.79.109", "21");
INSERT INTO `wp_rg_form_view` VALUES("34429", "3", "2016-07-21 06:18:04", "151.80.31.101", "703");
INSERT INTO `wp_rg_form_view` VALUES("34430", "8", "2016-07-21 06:50:03", "157.55.39.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("34431", "6", "2016-07-21 06:50:06", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("34432", "5", "2016-07-21 06:50:20", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("34433", "10", "2016-07-21 06:50:31", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("34434", "3", "2016-07-21 07:09:51", "165.231.99.235", "61");
INSERT INTO `wp_rg_form_view` VALUES("34435", "3", "2016-07-21 08:07:05", "66.249.79.156", "81");
INSERT INTO `wp_rg_form_view` VALUES("34436", "3", "2016-07-21 09:42:36", "142.0.41.2", "126");
INSERT INTO `wp_rg_form_view` VALUES("34437", "3", "2016-07-21 10:16:25", "62.210.162.184", "21");
INSERT INTO `wp_rg_form_view` VALUES("34438", "1", "2016-07-21 11:28:23", "104.144.183.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("34439", "3", "2016-07-21 11:28:25", "104.144.183.157", "134");
INSERT INTO `wp_rg_form_view` VALUES("34440", "10", "2016-07-21 11:36:47", "40.77.167.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("34441", "3", "2016-07-21 12:13:56", "192.243.55.132", "83");
INSERT INTO `wp_rg_form_view` VALUES("34442", "3", "2016-07-21 13:00:08", "68.180.229.121", "219");
INSERT INTO `wp_rg_form_view` VALUES("34443", "8", "2016-07-21 14:27:54", "202.46.51.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("34444", "3", "2016-07-21 14:27:56", "202.46.51.30", "21");
INSERT INTO `wp_rg_form_view` VALUES("34445", "3", "2016-07-21 15:20:43", "184.69.3.198", "53");
INSERT INTO `wp_rg_form_view` VALUES("34446", "3", "2016-07-21 16:09:53", "68.180.229.121", "325");
INSERT INTO `wp_rg_form_view` VALUES("34447", "11", "2016-07-21 16:17:06", "212.129.10.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("34448", "12", "2016-07-21 16:17:50", "212.129.10.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("34449", "2", "2016-07-21 16:18:48", "212.129.10.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("34450", "3", "2016-07-21 17:04:21", "66.249.79.156", "53");
INSERT INTO `wp_rg_form_view` VALUES("34451", "3", "2016-07-21 18:01:54", "66.249.79.152", "32");
INSERT INTO `wp_rg_form_view` VALUES("34452", "3", "2016-07-21 19:10:06", "96.50.1.180", "91");
INSERT INTO `wp_rg_form_view` VALUES("34453", "3", "2016-07-21 20:12:23", "40.77.167.9", "40");
INSERT INTO `wp_rg_form_view` VALUES("34454", "3", "2016-07-21 21:06:59", "157.55.39.248", "51");
INSERT INTO `wp_rg_form_view` VALUES("34455", "3", "2016-07-21 22:16:59", "66.249.79.156", "31");
INSERT INTO `wp_rg_form_view` VALUES("34456", "3", "2016-07-21 23:05:34", "184.69.106.198", "132");
INSERT INTO `wp_rg_form_view` VALUES("34457", "3", "2016-07-22 00:08:07", "66.249.69.188", "116");
INSERT INTO `wp_rg_form_view` VALUES("34458", "3", "2016-07-22 01:11:22", "66.249.79.152", "62");
INSERT INTO `wp_rg_form_view` VALUES("34459", "3", "2016-07-22 02:30:56", "114.98.229.135", "32");
INSERT INTO `wp_rg_form_view` VALUES("34460", "3", "2016-07-22 03:02:17", "157.55.39.189", "83");
INSERT INTO `wp_rg_form_view` VALUES("34461", "3", "2016-07-22 04:00:54", "199.21.99.202", "40");
INSERT INTO `wp_rg_form_view` VALUES("34462", "10", "2016-07-22 04:04:24", "157.55.39.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("34463", "3", "2016-07-22 05:03:36", "77.75.77.54", "20");
INSERT INTO `wp_rg_form_view` VALUES("34464", "3", "2016-07-22 06:07:57", "65.110.208.28", "31");
INSERT INTO `wp_rg_form_view` VALUES("34465", "3", "2016-07-22 07:14:23", "196.196.88.176", "64");
INSERT INTO `wp_rg_form_view` VALUES("34466", "3", "2016-07-22 08:09:59", "202.46.55.15", "65");
INSERT INTO `wp_rg_form_view` VALUES("34467", "3", "2016-07-22 09:08:59", "157.55.39.92", "21");
INSERT INTO `wp_rg_form_view` VALUES("34468", "3", "2016-07-22 10:23:42", "77.75.79.36", "224");
INSERT INTO `wp_rg_form_view` VALUES("34469", "12", "2016-07-22 10:56:22", "45.55.229.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("34470", "11", "2016-07-22 10:56:22", "45.55.229.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("34471", "2", "2016-07-22 10:56:24", "45.55.229.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("34472", "3", "2016-07-22 11:01:10", "66.249.79.148", "130");
INSERT INTO `wp_rg_form_view` VALUES("34473", "3", "2016-07-22 12:44:35", "142.0.41.2", "41");
INSERT INTO `wp_rg_form_view` VALUES("34474", "3", "2016-07-22 13:26:26", "183.91.33.43", "20");
INSERT INTO `wp_rg_form_view` VALUES("34475", "3", "2016-07-22 14:08:25", "157.55.39.92", "31");
INSERT INTO `wp_rg_form_view` VALUES("34476", "10", "2016-07-22 14:45:59", "66.249.79.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("34477", "3", "2016-07-22 15:05:20", "207.23.96.112", "21");
INSERT INTO `wp_rg_form_view` VALUES("34478", "3", "2016-07-22 16:03:20", "77.75.78.167", "221");
INSERT INTO `wp_rg_form_view` VALUES("34479", "11", "2016-07-22 16:18:39", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34480", "12", "2016-07-22 16:55:01", "24.68.46.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("34481", "3", "2016-07-22 17:07:40", "192.243.55.134", "91");
INSERT INTO `wp_rg_form_view` VALUES("34482", "3", "2016-07-22 18:16:08", "40.77.167.10", "40");
INSERT INTO `wp_rg_form_view` VALUES("34483", "1", "2016-07-22 19:03:55", "192.161.190.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("34484", "3", "2016-07-22 19:03:55", "192.161.190.85", "30");
INSERT INTO `wp_rg_form_view` VALUES("34485", "3", "2016-07-22 20:07:10", "165.231.108.107", "203");
INSERT INTO `wp_rg_form_view` VALUES("34486", "3", "2016-07-22 21:06:01", "184.151.118.53", "100");
INSERT INTO `wp_rg_form_view` VALUES("34487", "3", "2016-07-22 22:18:40", "66.249.79.148", "93");
INSERT INTO `wp_rg_form_view` VALUES("34488", "12", "2016-07-22 22:29:12", "184.69.106.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("34489", "3", "2016-07-22 23:32:06", "62.210.162.184", "20");
INSERT INTO `wp_rg_form_view` VALUES("34490", "3", "2016-07-23 00:00:41", "66.249.79.152", "62");
INSERT INTO `wp_rg_form_view` VALUES("34491", "5", "2016-07-23 00:04:20", "157.55.39.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("34492", "1", "2016-07-23 01:10:52", "139.59.225.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("34493", "3", "2016-07-23 01:10:53", "139.59.225.92", "40");
INSERT INTO `wp_rg_form_view` VALUES("34494", "3", "2016-07-23 02:09:00", "178.137.163.41", "53");
INSERT INTO `wp_rg_form_view` VALUES("34495", "12", "2016-07-23 02:23:57", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34496", "3", "2016-07-23 03:14:23", "68.180.229.121", "99");
INSERT INTO `wp_rg_form_view` VALUES("34497", "3", "2016-07-23 04:25:35", "207.46.13.89", "21");
INSERT INTO `wp_rg_form_view` VALUES("34498", "3", "2016-07-23 05:01:02", "207.46.13.60", "133");
INSERT INTO `wp_rg_form_view` VALUES("34499", "12", "2016-07-23 05:10:21", "24.69.158.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("34500", "3", "2016-07-23 06:47:09", "68.180.229.121", "52");
INSERT INTO `wp_rg_form_view` VALUES("34501", "3", "2016-07-23 07:06:05", "164.132.161.44", "52");
INSERT INTO `wp_rg_form_view` VALUES("34502", "3", "2016-07-23 08:12:18", "134.249.65.218", "64");
INSERT INTO `wp_rg_form_view` VALUES("34503", "3", "2016-07-23 09:10:28", "46.118.156.206", "56");
INSERT INTO `wp_rg_form_view` VALUES("34504", "3", "2016-07-23 10:22:25", "196.196.92.58", "102");
INSERT INTO `wp_rg_form_view` VALUES("34505", "10", "2016-07-23 10:49:42", "202.46.58.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("34506", "3", "2016-07-23 11:09:18", "68.180.229.121", "74");
INSERT INTO `wp_rg_form_view` VALUES("34507", "3", "2016-07-23 12:05:31", "192.243.55.134", "62");
INSERT INTO `wp_rg_form_view` VALUES("34508", "3", "2016-07-23 13:13:37", "192.243.55.130", "71");
INSERT INTO `wp_rg_form_view` VALUES("34509", "10", "2016-07-23 13:52:59", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("34510", "3", "2016-07-23 14:07:14", "164.132.161.84", "52");
INSERT INTO `wp_rg_form_view` VALUES("34511", "1", "2016-07-23 14:12:14", "164.132.161.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("34512", "3", "2016-07-23 15:20:12", "68.180.229.121", "62");
INSERT INTO `wp_rg_form_view` VALUES("34513", "3", "2016-07-23 16:01:47", "40.77.167.54", "30");
INSERT INTO `wp_rg_form_view` VALUES("34514", "3", "2016-07-23 17:08:38", "51.255.65.41", "30");
INSERT INTO `wp_rg_form_view` VALUES("34515", "3", "2016-07-23 18:21:04", "202.46.51.174", "11");
INSERT INTO `wp_rg_form_view` VALUES("34516", "3", "2016-07-23 19:18:31", "66.249.79.156", "41");
INSERT INTO `wp_rg_form_view` VALUES("34517", "3", "2016-07-23 20:00:18", "24.68.17.97", "40");
INSERT INTO `wp_rg_form_view` VALUES("34518", "3", "2016-07-23 21:00:37", "148.251.54.44", "60");
INSERT INTO `wp_rg_form_view` VALUES("34519", "5", "2016-07-23 21:51:55", "77.75.79.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("34520", "3", "2016-07-23 22:25:22", "202.46.52.177", "82");
INSERT INTO `wp_rg_form_view` VALUES("34521", "11", "2016-07-23 22:46:16", "77.75.78.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("34522", "3", "2016-07-23 23:08:31", "24.108.106.88", "1651");
INSERT INTO `wp_rg_form_view` VALUES("34523", "11", "2016-07-23 23:23:05", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("34524", "2", "2016-07-23 23:23:17", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("34525", "12", "2016-07-23 23:29:03", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("34526", "1", "2016-07-23 23:35:41", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("34527", "10", "2016-07-23 23:43:20", "94.199.151.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("34528", "3", "2016-07-24 00:06:25", "66.249.79.152", "98");
INSERT INTO `wp_rg_form_view` VALUES("34529", "3", "2016-07-24 01:13:02", "62.210.162.184", "64");
INSERT INTO `wp_rg_form_view` VALUES("34530", "3", "2016-07-24 02:08:40", "157.55.39.165", "30");
INSERT INTO `wp_rg_form_view` VALUES("34531", "3", "2016-07-24 03:31:57", "114.97.204.163", "73");
INSERT INTO `wp_rg_form_view` VALUES("34532", "3", "2016-07-24 04:05:37", "207.46.13.86", "779");
INSERT INTO `wp_rg_form_view` VALUES("34533", "7", "2016-07-24 04:05:47", "207.46.13.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("34534", "10", "2016-07-24 04:05:55", "207.46.13.86", "4");
INSERT INTO `wp_rg_form_view` VALUES("34535", "12", "2016-07-24 04:06:01", "207.46.13.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("34536", "9", "2016-07-24 04:06:29", "157.55.39.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("34537", "8", "2016-07-24 04:06:50", "207.46.13.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("34538", "2", "2016-07-24 04:07:29", "196.196.88.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("34539", "3", "2016-07-24 05:13:47", "46.119.112.87", "52");
INSERT INTO `wp_rg_form_view` VALUES("34540", "3", "2016-07-24 06:09:04", "66.249.79.156", "106");
INSERT INTO `wp_rg_form_view` VALUES("34541", "10", "2016-07-24 06:18:18", "68.180.229.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("34542", "3", "2016-07-24 07:00:00", "66.249.79.152", "117");
INSERT INTO `wp_rg_form_view` VALUES("34543", "3", "2016-07-24 08:07:11", "66.249.79.148", "50");
INSERT INTO `wp_rg_form_view` VALUES("34544", "10", "2016-07-24 09:15:38", "207.46.13.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("34545", "3", "2016-07-24 09:15:42", "207.46.13.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("34546", "3", "2016-07-24 10:09:40", "165.231.96.215", "42");
INSERT INTO `wp_rg_form_view` VALUES("34547", "3", "2016-07-24 11:01:10", "66.249.69.188", "30");
INSERT INTO `wp_rg_form_view` VALUES("34548", "3", "2016-07-24 12:21:50", "207.46.13.86", "31");
INSERT INTO `wp_rg_form_view` VALUES("34549", "3", "2016-07-24 14:16:21", "66.249.79.152", "72");
INSERT INTO `wp_rg_form_view` VALUES("34550", "3", "2016-07-24 15:12:00", "68.180.229.121", "63");
INSERT INTO `wp_rg_form_view` VALUES("34551", "3", "2016-07-24 16:04:18", "207.46.13.3", "151");
INSERT INTO `wp_rg_form_view` VALUES("34552", "10", "2016-07-24 16:08:26", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("34553", "3", "2016-07-24 17:06:43", "66.249.79.156", "80");
INSERT INTO `wp_rg_form_view` VALUES("34554", "3", "2016-07-24 18:00:33", "108.180.117.82", "20");
INSERT INTO `wp_rg_form_view` VALUES("34555", "2", "2016-07-24 18:38:37", "202.46.53.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("34556", "5", "2016-07-24 19:18:34", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("34557", "3", "2016-07-24 19:18:35", "217.69.133.69", "140");
INSERT INTO `wp_rg_form_view` VALUES("34558", "3", "2016-07-24 20:52:29", "217.69.133.232", "31");
INSERT INTO `wp_rg_form_view` VALUES("34559", "3", "2016-07-24 21:04:14", "134.249.53.10", "114");
INSERT INTO `wp_rg_form_view` VALUES("34560", "3", "2016-07-24 21:04:14", "134.249.53.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34561", "3", "2016-07-24 21:04:14", "134.249.53.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34562", "3", "2016-07-24 21:04:14", "134.249.53.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("34563", "3", "2016-07-24 22:30:27", "217.69.133.231", "40");
INSERT INTO `wp_rg_form_view` VALUES("34564", "3", "2016-07-24 23:05:12", "196.196.90.237", "106");
INSERT INTO `wp_rg_form_view` VALUES("34565", "3", "2016-07-25 00:04:49", "217.69.133.233", "53");
INSERT INTO `wp_rg_form_view` VALUES("34566", "3", "2016-07-25 01:31:33", "196.196.92.37", "50");
INSERT INTO `wp_rg_form_view` VALUES("34567", "3", "2016-07-25 03:03:05", "207.46.13.86", "154");
INSERT INTO `wp_rg_form_view` VALUES("34568", "11", "2016-07-25 03:56:54", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("34569", "2", "2016-07-25 03:56:57", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("34570", "3", "2016-07-25 04:26:48", "178.137.163.41", "116");
INSERT INTO `wp_rg_form_view` VALUES("34571", "10", "2016-07-25 04:50:50", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("34572", "3", "2016-07-25 05:15:34", "130.105.232.182", "5453");
INSERT INTO `wp_rg_form_view` VALUES("34573", "1", "2016-07-25 05:17:00", "157.55.39.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("34574", "11", "2016-07-25 05:23:28", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34575", "2", "2016-07-25 05:23:31", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34576", "12", "2016-07-25 05:24:56", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34577", "5", "2016-07-25 05:28:29", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34578", "3", "2016-07-25 06:15:31", "77.75.78.172", "72");
INSERT INTO `wp_rg_form_view` VALUES("34579", "10", "2016-07-25 06:24:42", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("34580", "9", "2016-07-25 06:45:09", "40.77.167.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("34581", "1", "2016-07-25 06:51:20", "23.92.121.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("34582", "3", "2016-07-25 07:01:29", "134.249.65.218", "178");
INSERT INTO `wp_rg_form_view` VALUES("34583", "3", "2016-07-25 08:24:36", "157.55.39.127", "20");
INSERT INTO `wp_rg_form_view` VALUES("34584", "3", "2016-07-25 09:02:06", "62.210.162.184", "30");
INSERT INTO `wp_rg_form_view` VALUES("34585", "11", "2016-07-25 09:43:49", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34586", "3", "2016-07-25 10:14:19", "51.255.65.83", "31");
INSERT INTO `wp_rg_form_view` VALUES("34587", "3", "2016-07-25 11:11:52", "217.69.133.233", "44");
INSERT INTO `wp_rg_form_view` VALUES("34588", "3", "2016-07-25 12:02:17", "66.249.79.152", "97");
INSERT INTO `wp_rg_form_view` VALUES("34589", "3", "2016-07-25 13:13:35", "202.46.50.14", "64");
INSERT INTO `wp_rg_form_view` VALUES("34590", "9", "2016-07-25 13:28:03", "157.55.39.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("34591", "3", "2016-07-25 14:27:00", "217.69.133.231", "20");
INSERT INTO `wp_rg_form_view` VALUES("34592", "3", "2016-07-25 15:15:09", "207.46.13.90", "94");
INSERT INTO `wp_rg_form_view` VALUES("34593", "2", "2016-07-25 15:34:08", "114.97.205.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("34594", "12", "2016-07-25 15:56:49", "207.46.13.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("34595", "3", "2016-07-25 16:09:08", "217.69.133.230", "92");
INSERT INTO `wp_rg_form_view` VALUES("34596", "3", "2016-07-25 17:02:20", "46.118.156.206", "117");
INSERT INTO `wp_rg_form_view` VALUES("34597", "3", "2016-07-25 18:00:43", "202.46.52.63", "126");
INSERT INTO `wp_rg_form_view` VALUES("34598", "2", "2016-07-25 18:34:17", "202.46.58.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("34599", "3", "2016-07-25 19:20:49", "157.55.39.70", "150");
INSERT INTO `wp_rg_form_view` VALUES("34600", "3", "2016-07-25 20:14:32", "62.210.162.184", "54");
INSERT INTO `wp_rg_form_view` VALUES("34601", "3", "2016-07-25 21:45:26", "184.66.240.8", "20");
INSERT INTO `wp_rg_form_view` VALUES("34602", "3", "2016-07-25 22:00:16", "62.210.162.184", "132");
INSERT INTO `wp_rg_form_view` VALUES("34603", "1", "2016-07-25 22:28:52", "142.36.92.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34604", "3", "2016-07-25 23:06:54", "68.180.229.121", "238");
INSERT INTO `wp_rg_form_view` VALUES("34605", "3", "2016-07-26 00:03:42", "134.249.65.218", "165");
INSERT INTO `wp_rg_form_view` VALUES("34606", "3", "2016-07-26 00:03:42", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("34607", "3", "2016-07-26 01:14:05", "157.55.39.106", "31");
INSERT INTO `wp_rg_form_view` VALUES("34608", "3", "2016-07-26 02:01:51", "217.69.133.227", "97");
INSERT INTO `wp_rg_form_view` VALUES("34609", "3", "2016-07-26 03:00:34", "66.249.79.152", "156");
INSERT INTO `wp_rg_form_view` VALUES("34610", "3", "2016-07-26 04:03:54", "68.180.229.121", "75");
INSERT INTO `wp_rg_form_view` VALUES("34611", "3", "2016-07-26 05:12:17", "68.180.229.121", "31");
INSERT INTO `wp_rg_form_view` VALUES("34612", "1", "2016-07-26 05:21:38", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("34613", "3", "2016-07-26 06:06:19", "51.255.65.85", "50");
INSERT INTO `wp_rg_form_view` VALUES("34614", "3", "2016-07-26 07:02:10", "217.69.133.232", "164");
INSERT INTO `wp_rg_form_view` VALUES("34615", "12", "2016-07-26 07:14:11", "207.216.68.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("34616", "2", "2016-07-26 07:18:57", "207.216.68.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("34617", "3", "2016-07-26 08:02:44", "202.46.51.37", "90");
INSERT INTO `wp_rg_form_view` VALUES("34618", "5", "2016-07-26 08:06:31", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("34619", "10", "2016-07-26 08:40:06", "217.69.133.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("34620", "8", "2016-07-26 09:15:09", "157.55.39.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("34621", "3", "2016-07-26 09:15:10", "157.55.39.185", "970");
INSERT INTO `wp_rg_form_view` VALUES("34622", "10", "2016-07-26 09:29:35", "157.55.39.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("34623", "9", "2016-07-26 09:30:48", "157.55.39.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("34624", "5", "2016-07-26 09:31:29", "157.55.39.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("34625", "6", "2016-07-26 09:31:34", "157.55.39.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("34626", "11", "2016-07-26 10:30:45", "77.75.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("34627", "3", "2016-07-26 10:30:48", "77.75.76.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("34628", "3", "2016-07-26 11:03:54", "66.249.79.152", "33");
INSERT INTO `wp_rg_form_view` VALUES("34629", "2", "2016-07-26 11:58:54", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34630", "3", "2016-07-26 12:09:06", "124.73.14.102", "52");
INSERT INTO `wp_rg_form_view` VALUES("34631", "3", "2016-07-26 13:33:34", "217.69.133.232", "32");
INSERT INTO `wp_rg_form_view` VALUES("34632", "1", "2016-07-26 14:25:26", "196.196.94.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("34633", "3", "2016-07-26 14:25:27", "196.196.94.176", "158");
INSERT INTO `wp_rg_form_view` VALUES("34634", "3", "2016-07-26 15:03:13", "68.180.229.121", "205");
INSERT INTO `wp_rg_form_view` VALUES("34635", "1", "2016-07-26 15:04:19", "75.154.241.186", "6");
INSERT INTO `wp_rg_form_view` VALUES("34636", "3", "2016-07-26 16:00:27", "24.108.28.160", "353");
INSERT INTO `wp_rg_form_view` VALUES("34637", "12", "2016-07-26 16:04:49", "24.108.28.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("34638", "1", "2016-07-26 16:47:38", "213.184.113.87", "4");
INSERT INTO `wp_rg_form_view` VALUES("34639", "3", "2016-07-26 17:02:41", "66.249.79.148", "41");
INSERT INTO `wp_rg_form_view` VALUES("34640", "10", "2016-07-26 17:08:58", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34641", "1", "2016-07-26 17:41:02", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("34642", "3", "2016-07-26 18:05:55", "196.196.94.247", "199");
INSERT INTO `wp_rg_form_view` VALUES("34643", "1", "2016-07-26 18:38:43", "5.34.244.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34644", "3", "2016-07-26 19:05:14", "24.108.28.160", "92");
INSERT INTO `wp_rg_form_view` VALUES("34645", "3", "2016-07-26 20:01:42", "68.180.229.121", "94");
INSERT INTO `wp_rg_form_view` VALUES("34646", "1", "2016-07-26 20:04:39", "62.210.162.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("34647", "3", "2016-07-26 21:02:29", "62.210.162.184", "43");
INSERT INTO `wp_rg_form_view` VALUES("34648", "1", "2016-07-26 22:07:14", "89.35.199.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("34649", "3", "2016-07-26 22:07:14", "89.35.199.140", "51");
INSERT INTO `wp_rg_form_view` VALUES("34650", "3", "2016-07-26 23:06:32", "151.80.31.156", "73");
INSERT INTO `wp_rg_form_view` VALUES("34651", "3", "2016-07-27 00:07:11", "62.210.162.184", "51");
INSERT INTO `wp_rg_form_view` VALUES("34652", "10", "2016-07-27 00:58:57", "199.59.148.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("34653", "3", "2016-07-27 01:48:46", "51.255.65.57", "20");
INSERT INTO `wp_rg_form_view` VALUES("34654", "1", "2016-07-27 01:59:27", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34655", "3", "2016-07-27 02:12:59", "164.132.161.79", "50");
INSERT INTO `wp_rg_form_view` VALUES("34656", "8", "2016-07-27 02:35:19", "202.46.50.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("34657", "3", "2016-07-27 03:25:06", "66.249.79.152", "10");
INSERT INTO `wp_rg_form_view` VALUES("34658", "1", "2016-07-27 04:16:10", "66.249.66.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("34659", "3", "2016-07-27 04:16:10", "66.249.66.144", "76");
INSERT INTO `wp_rg_form_view` VALUES("34660", "3", "2016-07-27 05:14:45", "202.46.51.100", "34");
INSERT INTO `wp_rg_form_view` VALUES("34661", "3", "2016-07-27 06:01:50", "66.249.66.144", "189");
INSERT INTO `wp_rg_form_view` VALUES("34662", "3", "2016-07-27 07:00:01", "96.54.202.215", "84");
INSERT INTO `wp_rg_form_view` VALUES("34663", "3", "2016-07-27 08:35:41", "202.46.53.146", "10");
INSERT INTO `wp_rg_form_view` VALUES("34664", "3", "2016-07-27 09:10:39", "66.249.66.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("34665", "1", "2016-07-27 09:15:51", "93.127.147.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("34666", "3", "2016-07-27 10:36:28", "124.73.14.102", "20");
INSERT INTO `wp_rg_form_view` VALUES("34667", "3", "2016-07-27 11:05:38", "77.75.76.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("34668", "3", "2016-07-27 12:13:06", "68.180.229.121", "64");
INSERT INTO `wp_rg_form_view` VALUES("34669", "9", "2016-07-27 12:25:30", "62.210.97.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("34670", "8", "2016-07-27 12:25:54", "62.210.97.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("34671", "3", "2016-07-27 13:15:32", "68.180.229.121", "42");
INSERT INTO `wp_rg_form_view` VALUES("34672", "3", "2016-07-27 14:04:06", "208.43.225.85", "370");
INSERT INTO `wp_rg_form_view` VALUES("34673", "11", "2016-07-27 14:07:29", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("34674", "9", "2016-07-27 14:07:59", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("34675", "3", "2016-07-27 15:34:43", "202.46.52.16", "30");
INSERT INTO `wp_rg_form_view` VALUES("34676", "3", "2016-07-27 16:08:01", "202.46.51.210", "114");
INSERT INTO `wp_rg_form_view` VALUES("34677", "12", "2016-07-27 16:15:05", "96.54.50.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("34678", "3", "2016-07-27 17:15:29", "24.69.130.28", "143");
INSERT INTO `wp_rg_form_view` VALUES("34679", "1", "2016-07-27 17:16:42", "24.69.130.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("34680", "11", "2016-07-27 18:02:35", "70.35.197.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("34681", "3", "2016-07-27 18:02:35", "70.35.197.138", "411");
INSERT INTO `wp_rg_form_view` VALUES("34682", "12", "2016-07-27 18:04:07", "70.35.197.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("34683", "2", "2016-07-27 18:07:19", "70.35.197.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("34684", "10", "2016-07-27 19:23:46", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("34685", "3", "2016-07-27 19:23:53", "66.249.79.152", "41");
INSERT INTO `wp_rg_form_view` VALUES("34686", "3", "2016-07-27 20:22:24", "134.249.65.218", "43");
INSERT INTO `wp_rg_form_view` VALUES("34687", "3", "2016-07-27 20:22:24", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("34688", "10", "2016-07-27 21:05:15", "66.249.69.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("34689", "3", "2016-07-27 21:05:17", "66.249.69.190", "51");
INSERT INTO `wp_rg_form_view` VALUES("34690", "3", "2016-07-27 22:05:11", "202.46.48.130", "72");
INSERT INTO `wp_rg_form_view` VALUES("34691", "1", "2016-07-27 22:08:54", "5.255.88.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("34692", "3", "2016-07-27 23:12:11", "202.46.57.18", "95");
INSERT INTO `wp_rg_form_view` VALUES("34693", "10", "2016-07-27 23:52:12", "51.255.65.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("34694", "3", "2016-07-28 00:22:31", "66.249.79.152", "54");
INSERT INTO `wp_rg_form_view` VALUES("34695", "3", "2016-07-28 01:02:19", "24.68.17.97", "137");
INSERT INTO `wp_rg_form_view` VALUES("34696", "12", "2016-07-28 02:23:04", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("34697", "3", "2016-07-28 02:23:05", "24.68.17.97", "111");
INSERT INTO `wp_rg_form_view` VALUES("34698", "3", "2016-07-28 03:23:00", "207.46.13.38", "41");
INSERT INTO `wp_rg_form_view` VALUES("34699", "3", "2016-07-28 04:04:22", "192.243.55.134", "62");
INSERT INTO `wp_rg_form_view` VALUES("34700", "3", "2016-07-28 05:19:20", "165.231.96.215", "73");
INSERT INTO `wp_rg_form_view` VALUES("34701", "3", "2016-07-28 06:18:12", "207.46.13.38", "41");
INSERT INTO `wp_rg_form_view` VALUES("34702", "9", "2016-07-28 06:43:20", "125.212.208.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("34703", "3", "2016-07-28 07:13:58", "134.249.65.218", "44");
INSERT INTO `wp_rg_form_view` VALUES("34704", "3", "2016-07-28 08:00:22", "96.50.96.11", "10");
INSERT INTO `wp_rg_form_view` VALUES("34705", "3", "2016-07-28 09:58:04", "45.72.132.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("34706", "3", "2016-07-28 11:56:14", "77.75.79.32", "11");
INSERT INTO `wp_rg_form_view` VALUES("34707", "3", "2016-07-28 12:20:14", "178.137.163.41", "939");
INSERT INTO `wp_rg_form_view` VALUES("34708", "2", "2016-07-28 12:31:39", "185.35.21.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("34709", "11", "2016-07-28 12:33:00", "185.15.95.192", "2");
INSERT INTO `wp_rg_form_view` VALUES("34710", "12", "2016-07-28 12:33:59", "75.34.101.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("34711", "1", "2016-07-28 12:39:26", "91.108.72.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("34712", "3", "2016-07-28 13:14:56", "68.180.229.121", "54");
INSERT INTO `wp_rg_form_view` VALUES("34713", "1", "2016-07-28 14:17:41", "107.169.224.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("34714", "3", "2016-07-28 14:17:41", "107.169.224.131", "112");
INSERT INTO `wp_rg_form_view` VALUES("34715", "3", "2016-07-28 15:19:00", "207.46.13.38", "72");
INSERT INTO `wp_rg_form_view` VALUES("34716", "12", "2016-07-28 16:10:31", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("34717", "3", "2016-07-28 16:10:31", "66.249.79.148", "53");
INSERT INTO `wp_rg_form_view` VALUES("34718", "3", "2016-07-28 17:28:15", "68.180.229.121", "51");
INSERT INTO `wp_rg_form_view` VALUES("34719", "3", "2016-07-28 18:04:42", "164.132.161.53", "251");
INSERT INTO `wp_rg_form_view` VALUES("34720", "1", "2016-07-28 18:42:05", "70.66.188.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("34721", "3", "2016-07-28 19:04:40", "70.66.188.50", "107");
INSERT INTO `wp_rg_form_view` VALUES("34722", "3", "2016-07-28 20:22:56", "188.40.112.210", "40");
INSERT INTO `wp_rg_form_view` VALUES("34723", "3", "2016-07-28 21:02:17", "66.249.79.148", "71");
INSERT INTO `wp_rg_form_view` VALUES("34724", "3", "2016-07-28 22:11:45", "192.243.55.138", "133");
INSERT INTO `wp_rg_form_view` VALUES("34725", "6", "2016-07-28 22:12:34", "202.46.48.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("34726", "3", "2016-07-28 23:06:05", "194.187.170.121", "51");
INSERT INTO `wp_rg_form_view` VALUES("34727", "3", "2016-07-29 00:02:51", "68.180.229.121", "172");
INSERT INTO `wp_rg_form_view` VALUES("34728", "11", "2016-07-29 00:33:32", "194.187.170.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34729", "12", "2016-07-29 00:54:01", "194.187.170.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34730", "3", "2016-07-29 01:01:16", "108.180.5.188", "73");
INSERT INTO `wp_rg_form_view` VALUES("34731", "12", "2016-07-29 01:40:50", "70.66.186.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("34732", "3", "2016-07-29 02:25:32", "164.132.161.6", "11");
INSERT INTO `wp_rg_form_view` VALUES("34733", "3", "2016-07-29 03:04:31", "77.75.77.11", "446");
INSERT INTO `wp_rg_form_view` VALUES("34734", "12", "2016-07-29 03:35:02", "24.69.148.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("34735", "8", "2016-07-29 03:58:06", "157.55.39.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("34736", "10", "2016-07-29 03:58:16", "157.55.39.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("34737", "9", "2016-07-29 03:58:32", "207.46.13.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("34738", "3", "2016-07-29 04:17:00", "164.132.161.5", "100");
INSERT INTO `wp_rg_form_view` VALUES("34739", "12", "2016-07-29 04:49:58", "207.81.148.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("34740", "3", "2016-07-29 05:05:10", "151.80.31.102", "30");
INSERT INTO `wp_rg_form_view` VALUES("34741", "2", "2016-07-29 05:29:21", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("34742", "3", "2016-07-29 06:26:58", "77.75.76.162", "20");
INSERT INTO `wp_rg_form_view` VALUES("34743", "3", "2016-07-29 07:20:55", "157.55.39.254", "30");
INSERT INTO `wp_rg_form_view` VALUES("34744", "3", "2016-07-29 08:12:07", "46.119.112.87", "73");
INSERT INTO `wp_rg_form_view` VALUES("34745", "3", "2016-07-29 09:02:54", "164.132.161.10", "105");
INSERT INTO `wp_rg_form_view` VALUES("34746", "6", "2016-07-29 09:34:29", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("34747", "10", "2016-07-29 10:06:50", "164.132.161.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("34748", "3", "2016-07-29 10:06:51", "164.132.161.50", "61");
INSERT INTO `wp_rg_form_view` VALUES("34749", "2", "2016-07-29 10:41:53", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34750", "3", "2016-07-29 11:08:09", "66.249.79.148", "110");
INSERT INTO `wp_rg_form_view` VALUES("34751", "3", "2016-07-29 12:01:12", "202.46.53.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("34752", "3", "2016-07-29 13:11:47", "66.249.79.152", "136");
INSERT INTO `wp_rg_form_view` VALUES("34753", "1", "2016-07-29 13:22:43", "46.161.9.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("34754", "6", "2016-07-29 13:58:43", "202.46.52.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("34755", "3", "2016-07-29 14:02:06", "192.243.55.132", "20");
INSERT INTO `wp_rg_form_view` VALUES("34756", "3", "2016-07-29 15:07:50", "77.75.79.36", "66");
INSERT INTO `wp_rg_form_view` VALUES("34757", "3", "2016-07-29 16:03:22", "69.10.52.178", "73");
INSERT INTO `wp_rg_form_view` VALUES("34758", "3", "2016-07-29 17:00:51", "192.243.55.138", "40");
INSERT INTO `wp_rg_form_view` VALUES("34759", "3", "2016-07-29 18:00:54", "68.180.229.121", "31");
INSERT INTO `wp_rg_form_view` VALUES("34760", "3", "2016-07-29 19:26:25", "66.249.79.148", "53");
INSERT INTO `wp_rg_form_view` VALUES("34761", "3", "2016-07-29 20:15:21", "70.79.104.241", "52");
INSERT INTO `wp_rg_form_view` VALUES("34762", "1", "2016-07-29 20:28:32", "62.210.111.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("34763", "3", "2016-07-29 21:21:35", "204.191.85.34", "80");
INSERT INTO `wp_rg_form_view` VALUES("34764", "3", "2016-07-29 21:21:35", "204.191.85.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("34765", "1", "2016-07-29 21:21:55", "204.191.85.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("34766", "3", "2016-07-29 22:08:45", "192.243.55.132", "54");
INSERT INTO `wp_rg_form_view` VALUES("34767", "6", "2016-07-29 23:08:22", "202.46.51.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("34768", "3", "2016-07-29 23:08:23", "202.46.51.113", "61");
INSERT INTO `wp_rg_form_view` VALUES("34769", "3", "2016-07-30 00:15:21", "202.46.51.20", "169");
INSERT INTO `wp_rg_form_view` VALUES("34770", "3", "2016-07-30 01:27:21", "136.243.17.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("34771", "3", "2016-07-30 02:02:39", "157.55.39.254", "3419");
INSERT INTO `wp_rg_form_view` VALUES("34772", "1", "2016-07-30 02:20:48", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34773", "11", "2016-07-30 02:21:03", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34774", "5", "2016-07-30 02:27:33", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34775", "12", "2016-07-30 02:32:48", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34776", "6", "2016-07-30 02:40:53", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34777", "9", "2016-07-30 02:49:39", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34778", "3", "2016-07-30 03:00:09", "104.236.216.227", "2878");
INSERT INTO `wp_rg_form_view` VALUES("34779", "10", "2016-07-30 03:02:59", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34780", "2", "2016-07-30 03:26:09", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34781", "8", "2016-07-30 03:38:06", "104.236.216.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("34782", "3", "2016-07-30 04:00:40", "23.91.143.176", "20");
INSERT INTO `wp_rg_form_view` VALUES("34783", "3", "2016-07-30 05:02:43", "199.21.99.202", "127");
INSERT INTO `wp_rg_form_view` VALUES("34784", "1", "2016-07-30 05:31:26", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("34785", "3", "2016-07-30 06:05:56", "202.46.57.177", "32");
INSERT INTO `wp_rg_form_view` VALUES("34786", "3", "2016-07-30 07:12:49", "66.249.79.156", "72");
INSERT INTO `wp_rg_form_view` VALUES("34787", "3", "2016-07-30 08:01:54", "68.180.229.121", "1753");
INSERT INTO `wp_rg_form_view` VALUES("34788", "10", "2016-07-30 08:23:22", "66.249.79.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("34789", "2", "2016-07-30 08:28:25", "72.76.221.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("34790", "7", "2016-07-30 08:29:30", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("34791", "1", "2016-07-30 08:30:08", "72.76.221.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("34792", "11", "2016-07-30 08:30:18", "72.76.221.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("34793", "12", "2016-07-30 08:30:30", "72.76.221.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("34794", "5", "2016-07-30 08:31:07", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("34795", "8", "2016-07-30 08:37:31", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("34796", "9", "2016-07-30 08:37:37", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("34797", "6", "2016-07-30 08:38:02", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("34798", "3", "2016-07-30 09:09:21", "68.180.229.121", "51");
INSERT INTO `wp_rg_form_view` VALUES("34799", "3", "2016-07-30 10:18:27", "199.21.99.202", "40");
INSERT INTO `wp_rg_form_view` VALUES("34800", "3", "2016-07-30 11:07:54", "199.21.99.202", "75");
INSERT INTO `wp_rg_form_view` VALUES("34801", "3", "2016-07-30 12:05:27", "134.249.65.218", "41");
INSERT INTO `wp_rg_form_view` VALUES("34802", "3", "2016-07-30 12:05:27", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("34803", "1", "2016-07-30 12:33:15", "89.33.68.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("34804", "3", "2016-07-30 13:00:10", "208.115.111.66", "6045");
INSERT INTO `wp_rg_form_view` VALUES("34805", "1", "2016-07-30 13:05:41", "46.161.9.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("34806", "11", "2016-07-30 13:08:36", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34807", "2", "2016-07-30 13:08:39", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34808", "12", "2016-07-30 13:10:07", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34809", "5", "2016-07-30 13:13:43", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("34810", "3", "2016-07-30 14:23:11", "96.50.6.244", "40");
INSERT INTO `wp_rg_form_view` VALUES("34811", "1", "2016-07-30 14:23:36", "96.50.6.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("34812", "3", "2016-07-30 15:08:26", "68.180.229.121", "42");
INSERT INTO `wp_rg_form_view` VALUES("34813", "3", "2016-07-30 16:33:43", "51.254.131.245", "613");
INSERT INTO `wp_rg_form_view` VALUES("34814", "8", "2016-07-30 16:34:00", "51.254.131.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("34815", "10", "2016-07-30 16:35:53", "51.254.131.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("34816", "2", "2016-07-30 16:37:30", "51.254.131.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("34817", "6", "2016-07-30 16:38:27", "51.254.131.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("34818", "3", "2016-07-30 17:46:06", "77.75.78.172", "10");
INSERT INTO `wp_rg_form_view` VALUES("34819", "3", "2016-07-30 18:14:27", "221.132.113.70", "42");
INSERT INTO `wp_rg_form_view` VALUES("34820", "3", "2016-07-30 19:13:16", "192.243.55.131", "20");
INSERT INTO `wp_rg_form_view` VALUES("34821", "3", "2016-07-30 20:11:17", "68.180.229.121", "100");
INSERT INTO `wp_rg_form_view` VALUES("34822", "3", "2016-07-30 21:32:26", "178.137.163.41", "44");
INSERT INTO `wp_rg_form_view` VALUES("34823", "3", "2016-07-30 22:16:23", "68.180.229.121", "81");
INSERT INTO `wp_rg_form_view` VALUES("34824", "1", "2016-07-30 23:38:42", "5.231.35.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("34825", "3", "2016-07-30 23:38:42", "5.231.35.0", "10");
INSERT INTO `wp_rg_form_view` VALUES("34826", "3", "2016-07-31 00:32:22", "194.187.170.105", "19");
INSERT INTO `wp_rg_form_view` VALUES("34827", "10", "2016-07-31 00:35:05", "151.80.31.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("34828", "3", "2016-07-31 01:04:33", "194.187.170.105", "11");
INSERT INTO `wp_rg_form_view` VALUES("34829", "3", "2016-07-31 02:02:57", "46.118.156.206", "41");
INSERT INTO `wp_rg_form_view` VALUES("34830", "3", "2016-07-31 02:02:57", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34831", "3", "2016-07-31 02:02:57", "46.118.156.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("34832", "3", "2016-07-31 03:20:34", "157.55.39.254", "21");
INSERT INTO `wp_rg_form_view` VALUES("34833", "3", "2016-07-31 04:01:45", "104.142.122.122", "70");
INSERT INTO `wp_rg_form_view` VALUES("34834", "10", "2016-07-31 04:50:37", "164.132.161.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("34835", "3", "2016-07-31 05:05:35", "188.40.112.210", "52");
INSERT INTO `wp_rg_form_view` VALUES("34836", "10", "2016-07-31 06:01:06", "164.132.161.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("34837", "3", "2016-07-31 06:01:06", "164.132.161.6", "70");
INSERT INTO `wp_rg_form_view` VALUES("34838", "1", "2016-07-31 06:16:19", "46.161.9.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("34839", "11", "2016-07-31 07:13:58", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("34840", "3", "2016-07-31 07:14:03", "199.21.99.202", "31");
INSERT INTO `wp_rg_form_view` VALUES("34841", "3", "2016-07-31 08:24:27", "199.21.99.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("34842", "1", "2016-07-31 08:45:04", "62.210.111.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("34843", "1", "2016-07-31 09:09:58", "62.210.111.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("34844", "3", "2016-07-31 09:09:59", "62.210.111.75", "21");
INSERT INTO `wp_rg_form_view` VALUES("34845", "5", "2016-07-31 10:00:28", "202.46.55.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("34846", "3", "2016-07-31 10:00:28", "202.46.55.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("34847", "3", "2016-07-31 11:25:00", "68.180.229.121", "73");
INSERT INTO `wp_rg_form_view` VALUES("34848", "6", "2016-07-31 11:48:50", "5.9.94.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("34849", "3", "2016-07-31 12:00:41", "194.187.170.119", "268");
INSERT INTO `wp_rg_form_view` VALUES("34850", "1", "2016-07-31 12:17:00", "194.187.170.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("34851", "2", "2016-07-31 12:45:52", "194.187.170.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("34852", "3", "2016-07-31 13:01:44", "66.249.79.152", "226");
INSERT INTO `wp_rg_form_view` VALUES("34853", "3", "2016-07-31 14:01:21", "194.187.170.119", "136");
INSERT INTO `wp_rg_form_view` VALUES("34854", "1", "2016-07-31 14:27:35", "62.210.111.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("34855", "9", "2016-07-31 14:57:11", "40.77.167.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("34856", "3", "2016-07-31 15:00:00", "199.21.99.202", "286");
INSERT INTO `wp_rg_form_view` VALUES("34857", "1", "2016-07-31 15:07:12", "62.210.111.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("34858", "12", "2016-07-31 15:59:14", "45.55.229.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("34859", "11", "2016-07-31 15:59:14", "45.55.229.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("34860", "2", "2016-07-31 15:59:15", "45.55.229.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("34861", "3", "2016-07-31 16:13:55", "68.180.229.121", "30");
INSERT INTO `wp_rg_form_view` VALUES("34862", "3", "2016-07-31 17:34:50", "134.249.65.218", "32");
INSERT INTO `wp_rg_form_view` VALUES("34863", "3", "2016-07-31 18:16:17", "68.180.229.121", "32");
INSERT INTO `wp_rg_form_view` VALUES("34864", "3", "2016-07-31 19:07:34", "202.46.54.20", "43");
INSERT INTO `wp_rg_form_view` VALUES("34865", "3", "2016-07-31 20:06:05", "199.21.99.202", "639");
INSERT INTO `wp_rg_form_view` VALUES("34866", "5", "2016-07-31 20:09:07", "207.46.13.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("34867", "6", "2016-07-31 20:09:26", "207.46.13.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("34868", "10", "2016-07-31 20:09:39", "207.46.13.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("34869", "8", "2016-07-31 20:10:04", "157.55.39.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("34870", "3", "2016-07-31 21:07:38", "199.21.99.202", "34");
INSERT INTO `wp_rg_form_view` VALUES("34871", "3", "2016-07-31 22:10:52", "66.249.79.152", "70");
INSERT INTO `wp_rg_form_view` VALUES("34872", "1", "2016-07-31 22:57:59", "46.161.9.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("34873", "3", "2016-07-31 23:06:33", "141.8.143.242", "51");
INSERT INTO `wp_rg_form_view` VALUES("34874", "3", "2016-08-01 00:15:40", "202.46.56.75", "53");
INSERT INTO `wp_rg_form_view` VALUES("34875", "3", "2016-08-01 01:08:06", "157.55.39.129", "62");
INSERT INTO `wp_rg_form_view` VALUES("34876", "10", "2016-08-01 01:48:19", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("34877", "3", "2016-08-01 02:11:30", "157.55.39.129", "21");
INSERT INTO `wp_rg_form_view` VALUES("34878", "12", "2016-08-01 03:24:15", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34879", "3", "2016-08-01 03:24:16", "68.180.229.121", "20");
INSERT INTO `wp_rg_form_view` VALUES("34880", "3", "2016-08-01 04:13:20", "75.154.239.118", "20");
INSERT INTO `wp_rg_form_view` VALUES("34881", "10", "2016-08-01 05:01:17", "157.55.39.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("34882", "3", "2016-08-01 05:01:17", "157.55.39.129", "40");
INSERT INTO `wp_rg_form_view` VALUES("34883", "3", "2016-08-01 06:08:44", "134.249.53.72", "164");
INSERT INTO `wp_rg_form_view` VALUES("34884", "7", "2016-08-01 06:16:04", "157.55.39.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("34885", "1", "2016-08-01 06:46:43", "165.231.87.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("34886", "11", "2016-08-01 07:01:02", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("34887", "3", "2016-08-01 07:01:02", "70.35.196.136", "291");
INSERT INTO `wp_rg_form_view` VALUES("34888", "12", "2016-08-01 07:01:48", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("34889", "2", "2016-08-01 07:02:45", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("34890", "3", "2016-08-01 08:30:15", "5.9.112.6", "43");
INSERT INTO `wp_rg_form_view` VALUES("34891", "3", "2016-08-01 09:17:09", "134.249.48.27", "75");
INSERT INTO `wp_rg_form_view` VALUES("34892", "3", "2016-08-01 09:17:09", "134.249.48.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("34893", "3", "2016-08-01 10:17:32", "164.132.161.61", "55");
INSERT INTO `wp_rg_form_view` VALUES("34894", "11", "2016-08-01 10:53:56", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34895", "3", "2016-08-01 11:02:30", "51.255.65.54", "31");
INSERT INTO `wp_rg_form_view` VALUES("34896", "9", "2016-08-01 11:47:03", "202.46.51.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("34897", "3", "2016-08-01 12:47:39", "136.243.17.161", "60");
INSERT INTO `wp_rg_form_view` VALUES("34898", "1", "2016-08-01 12:48:03", "107.150.76.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("34899", "3", "2016-08-01 13:19:21", "68.180.229.121", "14");
INSERT INTO `wp_rg_form_view` VALUES("34900", "3", "2016-08-01 14:01:00", "202.46.54.142", "30");
INSERT INTO `wp_rg_form_view` VALUES("34901", "3", "2016-08-01 15:40:34", "78.107.235.183", "30");
INSERT INTO `wp_rg_form_view` VALUES("34902", "12", "2016-08-01 15:44:45", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34903", "3", "2016-08-01 16:31:36", "164.132.161.43", "21");
INSERT INTO `wp_rg_form_view` VALUES("34904", "3", "2016-08-01 17:28:49", "77.75.78.171", "96");
INSERT INTO `wp_rg_form_view` VALUES("34905", "10", "2016-08-01 18:26:31", "199.59.148.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("34906", "3", "2016-08-01 18:26:33", "199.59.148.210", "31");
INSERT INTO `wp_rg_form_view` VALUES("34907", "3", "2016-08-01 19:40:26", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34908", "3", "2016-08-01 20:19:27", "68.180.229.121", "94");
INSERT INTO `wp_rg_form_view` VALUES("34909", "10", "2016-08-01 20:33:58", "157.55.39.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("34910", "12", "2016-08-01 21:03:53", "202.46.54.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("34911", "3", "2016-08-01 21:03:54", "202.46.54.97", "311");
INSERT INTO `wp_rg_form_view` VALUES("34912", "11", "2016-08-01 21:12:21", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("34913", "2", "2016-08-01 21:14:15", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("34914", "10", "2016-08-01 21:21:35", "40.77.167.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("34915", "3", "2016-08-01 22:34:53", "77.75.76.165", "20");
INSERT INTO `wp_rg_form_view` VALUES("34916", "3", "2016-08-01 23:14:41", "68.180.229.121", "73");
INSERT INTO `wp_rg_form_view` VALUES("34917", "3", "2016-08-02 00:25:18", "202.46.58.58", "61");
INSERT INTO `wp_rg_form_view` VALUES("34918", "10", "2016-08-02 00:44:13", "199.59.148.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("34919", "3", "2016-08-02 01:12:57", "207.216.249.193", "32");
INSERT INTO `wp_rg_form_view` VALUES("34920", "3", "2016-08-02 02:20:48", "68.180.229.121", "94");
INSERT INTO `wp_rg_form_view` VALUES("34921", "3", "2016-08-02 03:00:46", "157.55.39.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("34922", "9", "2016-08-02 03:12:44", "202.46.55.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("34923", "3", "2016-08-02 04:42:48", "202.46.51.172", "54");
INSERT INTO `wp_rg_form_view` VALUES("34924", "3", "2016-08-02 05:18:33", "199.21.99.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("34925", "3", "2016-08-02 06:41:37", "5.248.196.10", "33");
INSERT INTO `wp_rg_form_view` VALUES("34926", "1", "2016-08-02 07:06:15", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("34927", "3", "2016-08-02 07:06:16", "68.180.229.121", "131");
INSERT INTO `wp_rg_form_view` VALUES("34928", "11", "2016-08-02 07:27:07", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("34929", "2", "2016-08-02 07:52:37", "164.132.161.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("34930", "3", "2016-08-02 08:05:40", "157.55.39.99", "31");
INSERT INTO `wp_rg_form_view` VALUES("34931", "10", "2016-08-02 08:24:06", "194.187.170.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("34932", "3", "2016-08-02 09:11:13", "220.181.108.179", "40");
INSERT INTO `wp_rg_form_view` VALUES("34933", "3", "2016-08-02 10:09:40", "194.187.170.122", "72");
INSERT INTO `wp_rg_form_view` VALUES("34934", "3", "2016-08-02 11:01:13", "51.255.65.84", "81");
INSERT INTO `wp_rg_form_view` VALUES("34935", "3", "2016-08-02 12:04:55", "202.46.48.199", "20");
INSERT INTO `wp_rg_form_view` VALUES("34936", "1", "2016-08-02 13:02:03", "46.161.9.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("34937", "3", "2016-08-02 13:02:03", "46.161.9.34", "63");
INSERT INTO `wp_rg_form_view` VALUES("34938", "3", "2016-08-02 14:00:00", "164.132.161.73", "109");
INSERT INTO `wp_rg_form_view` VALUES("34939", "3", "2016-08-02 15:55:13", "24.68.44.111", "10");
INSERT INTO `wp_rg_form_view` VALUES("34940", "11", "2016-08-02 16:43:51", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("34941", "3", "2016-08-02 16:43:53", "199.21.99.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("34942", "3", "2016-08-02 17:04:49", "157.55.39.112", "50");
INSERT INTO `wp_rg_form_view` VALUES("34943", "3", "2016-08-02 18:02:20", "24.69.128.71", "82");
INSERT INTO `wp_rg_form_view` VALUES("34944", "1", "2016-08-02 18:29:20", "24.16.143.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("34945", "3", "2016-08-02 19:07:32", "207.194.133.9", "104");
INSERT INTO `wp_rg_form_view` VALUES("34946", "10", "2016-08-02 19:29:11", "99.239.60.228", "16");
INSERT INTO `wp_rg_form_view` VALUES("34947", "6", "2016-08-02 19:44:48", "94.154.239.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("34948", "10", "2016-08-02 20:10:54", "68.180.229.121", "26");
INSERT INTO `wp_rg_form_view` VALUES("34949", "3", "2016-08-02 20:10:56", "68.180.229.121", "68");
INSERT INTO `wp_rg_form_view` VALUES("34950", "3", "2016-08-02 21:14:37", "194.187.170.101", "117");
INSERT INTO `wp_rg_form_view` VALUES("34951", "10", "2016-08-02 21:14:39", "194.187.170.101", "28");
INSERT INTO `wp_rg_form_view` VALUES("34952", "1", "2016-08-02 21:47:02", "99.199.2.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("34953", "12", "2016-08-02 21:56:21", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("34954", "3", "2016-08-02 22:01:30", "77.75.78.170", "137");
INSERT INTO `wp_rg_form_view` VALUES("34955", "10", "2016-08-02 22:01:30", "77.75.78.170", "36");
INSERT INTO `wp_rg_form_view` VALUES("34956", "11", "2016-08-02 22:44:48", "77.75.77.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("34957", "2", "2016-08-02 22:53:30", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("34958", "3", "2016-08-02 23:01:02", "194.187.170.101", "122");
INSERT INTO `wp_rg_form_view` VALUES("34959", "10", "2016-08-02 23:04:47", "24.68.17.97", "24");
INSERT INTO `wp_rg_form_view` VALUES("34960", "1", "2016-08-02 23:13:06", "62.138.2.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("34961", "12", "2016-08-02 23:21:29", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("34962", "10", "2016-08-03 00:15:36", "207.46.13.34", "27");
INSERT INTO `wp_rg_form_view` VALUES("34963", "3", "2016-08-03 00:15:38", "207.46.13.34", "110");
INSERT INTO `wp_rg_form_view` VALUES("34964", "10", "2016-08-03 01:36:19", "207.46.13.34", "5");
INSERT INTO `wp_rg_form_view` VALUES("34965", "3", "2016-08-03 01:36:20", "207.46.13.34", "16");
INSERT INTO `wp_rg_form_view` VALUES("34966", "3", "2016-08-03 02:31:46", "68.180.229.121", "67");
INSERT INTO `wp_rg_form_view` VALUES("34967", "10", "2016-08-03 02:31:47", "68.180.229.121", "16");
INSERT INTO `wp_rg_form_view` VALUES("34968", "3", "2016-08-03 03:01:49", "68.180.229.121", "66");
INSERT INTO `wp_rg_form_view` VALUES("34969", "10", "2016-08-03 03:01:49", "68.180.229.121", "28");
INSERT INTO `wp_rg_form_view` VALUES("34970", "3", "2016-08-03 04:10:13", "134.249.65.218", "70");
INSERT INTO `wp_rg_form_view` VALUES("34971", "10", "2016-08-03 04:10:15", "134.249.65.218", "15");
INSERT INTO `wp_rg_form_view` VALUES("34972", "10", "2016-08-03 04:10:15", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("34973", "3", "2016-08-03 05:04:33", "109.169.29.30", "302");
INSERT INTO `wp_rg_form_view` VALUES("34974", "10", "2016-08-03 05:04:34", "109.169.29.30", "70");
INSERT INTO `wp_rg_form_view` VALUES("34975", "2", "2016-08-03 05:05:19", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("34976", "11", "2016-08-03 05:05:41", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("34977", "1", "2016-08-03 05:46:26", "24.16.143.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("34978", "1", "2016-08-03 06:31:26", "24.16.143.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("34979", "3", "2016-08-03 06:31:27", "24.16.143.88", "87");
INSERT INTO `wp_rg_form_view` VALUES("34980", "10", "2016-08-03 06:31:28", "24.16.143.88", "18");
INSERT INTO `wp_rg_form_view` VALUES("34981", "3", "2016-08-03 07:01:30", "24.108.37.193", "602");
INSERT INTO `wp_rg_form_view` VALUES("34982", "10", "2016-08-03 07:01:31", "24.108.37.193", "160");
INSERT INTO `wp_rg_form_view` VALUES("34983", "1", "2016-08-03 07:03:12", "24.108.37.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("34984", "9", "2016-08-03 07:04:13", "157.55.39.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("34985", "8", "2016-08-03 07:04:15", "40.77.167.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("34986", "12", "2016-08-03 07:05:19", "157.55.39.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("34987", "7", "2016-08-03 07:05:21", "157.55.39.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("34988", "3", "2016-08-03 08:08:54", "68.180.229.121", "32");
INSERT INTO `wp_rg_form_view` VALUES("34989", "10", "2016-08-03 08:08:55", "68.180.229.121", "8");
INSERT INTO `wp_rg_form_view` VALUES("34990", "3", "2016-08-03 09:43:03", "66.249.79.156", "26");
INSERT INTO `wp_rg_form_view` VALUES("34991", "10", "2016-08-03 09:43:05", "66.249.79.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("34992", "3", "2016-08-03 10:13:35", "68.180.229.121", "68");
INSERT INTO `wp_rg_form_view` VALUES("34993", "10", "2016-08-03 10:13:37", "68.180.229.121", "16");
INSERT INTO `wp_rg_form_view` VALUES("34994", "1", "2016-08-03 10:35:20", "104.129.1.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("34995", "3", "2016-08-03 11:00:45", "157.55.39.35", "35");
INSERT INTO `wp_rg_form_view` VALUES("34996", "10", "2016-08-03 11:00:46", "157.55.39.35", "8");
INSERT INTO `wp_rg_form_view` VALUES("34997", "3", "2016-08-03 12:47:09", "77.75.77.109", "8");
INSERT INTO `wp_rg_form_view` VALUES("34998", "10", "2016-08-03 12:47:10", "77.75.77.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("34999", "10", "2016-08-03 13:10:05", "66.249.79.156", "7");
INSERT INTO `wp_rg_form_view` VALUES("35000", "3", "2016-08-03 13:10:06", "66.249.79.156", "25");
INSERT INTO `wp_rg_form_view` VALUES("35001", "3", "2016-08-03 14:00:41", "68.180.229.121", "33");
INSERT INTO `wp_rg_form_view` VALUES("35002", "10", "2016-08-03 14:00:42", "68.180.229.121", "8");
INSERT INTO `wp_rg_form_view` VALUES("35003", "3", "2016-08-03 15:11:02", "142.104.25.44", "56");
INSERT INTO `wp_rg_form_view` VALUES("35004", "10", "2016-08-03 15:11:04", "142.104.25.44", "15");
INSERT INTO `wp_rg_form_view` VALUES("35005", "3", "2016-08-03 16:14:53", "163.172.49.61", "91");
INSERT INTO `wp_rg_form_view` VALUES("35006", "10", "2016-08-03 16:16:54", "24.68.17.97", "23");
INSERT INTO `wp_rg_form_view` VALUES("35007", "1", "2016-08-03 16:58:04", "128.199.95.209", "2");
INSERT INTO `wp_rg_form_view` VALUES("35008", "3", "2016-08-03 17:33:41", "68.180.229.121", "8");
INSERT INTO `wp_rg_form_view` VALUES("35009", "10", "2016-08-03 17:33:42", "68.180.229.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("35010", "3", "2016-08-03 18:12:33", "199.21.99.202", "48");
INSERT INTO `wp_rg_form_view` VALUES("35011", "10", "2016-08-03 18:12:34", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("35012", "3", "2016-08-03 19:35:14", "164.132.161.92", "17");
INSERT INTO `wp_rg_form_view` VALUES("35013", "10", "2016-08-03 19:35:21", "164.132.161.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("35014", "3", "2016-08-03 20:12:31", "164.132.161.33", "8");
INSERT INTO `wp_rg_form_view` VALUES("35015", "10", "2016-08-03 20:12:32", "164.132.161.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("35016", "3", "2016-08-03 21:31:23", "202.46.49.196", "8");
INSERT INTO `wp_rg_form_view` VALUES("35017", "10", "2016-08-03 21:31:25", "202.46.49.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("35018", "3", "2016-08-03 22:04:53", "202.46.54.96", "44");
INSERT INTO `wp_rg_form_view` VALUES("35019", "10", "2016-08-03 22:04:55", "202.46.54.96", "10");
INSERT INTO `wp_rg_form_view` VALUES("35020", "3", "2016-08-03 23:12:54", "66.249.79.156", "24");
INSERT INTO `wp_rg_form_view` VALUES("35021", "10", "2016-08-03 23:12:57", "66.249.79.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("35022", "1", "2016-08-04 00:07:58", "45.62.55.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("35023", "3", "2016-08-04 00:07:58", "45.62.55.22", "59");
INSERT INTO `wp_rg_form_view` VALUES("35024", "10", "2016-08-04 00:07:59", "45.62.55.22", "14");
INSERT INTO `wp_rg_form_view` VALUES("35025", "3", "2016-08-04 01:27:59", "68.180.229.121", "28");
INSERT INTO `wp_rg_form_view` VALUES("35026", "10", "2016-08-04 01:51:00", "134.249.65.218", "6");
INSERT INTO `wp_rg_form_view` VALUES("35027", "3", "2016-08-04 02:28:09", "46.118.158.47", "67");
INSERT INTO `wp_rg_form_view` VALUES("35028", "10", "2016-08-04 02:28:10", "46.118.158.47", "16");
INSERT INTO `wp_rg_form_view` VALUES("35029", "3", "2016-08-04 03:05:44", "94.242.246.165", "8");
INSERT INTO `wp_rg_form_view` VALUES("35030", "10", "2016-08-04 03:05:44", "94.242.246.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("35031", "3", "2016-08-04 04:15:01", "164.132.161.95", "34");
INSERT INTO `wp_rg_form_view` VALUES("35032", "10", "2016-08-04 04:15:02", "164.132.161.95", "8");
INSERT INTO `wp_rg_form_view` VALUES("35033", "3", "2016-08-04 05:43:37", "157.55.39.35", "24");
INSERT INTO `wp_rg_form_view` VALUES("35034", "10", "2016-08-04 05:43:39", "157.55.39.35", "6");
INSERT INTO `wp_rg_form_view` VALUES("35035", "3", "2016-08-04 06:18:06", "77.75.78.165", "17");
INSERT INTO `wp_rg_form_view` VALUES("35036", "10", "2016-08-04 06:18:07", "77.75.78.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("35037", "3", "2016-08-04 07:03:45", "134.249.48.27", "9");
INSERT INTO `wp_rg_form_view` VALUES("35038", "10", "2016-08-04 07:03:46", "134.249.48.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("35039", "3", "2016-08-04 08:13:10", "68.180.229.121", "9");
INSERT INTO `wp_rg_form_view` VALUES("35040", "10", "2016-08-04 08:13:12", "68.180.229.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("35041", "3", "2016-08-04 09:17:23", "194.187.170.113", "35");
INSERT INTO `wp_rg_form_view` VALUES("35042", "10", "2016-08-04 09:21:17", "194.187.170.113", "9");
INSERT INTO `wp_rg_form_view` VALUES("35043", "3", "2016-08-04 10:33:56", "194.187.170.113", "11");
INSERT INTO `wp_rg_form_view` VALUES("35044", "10", "2016-08-04 10:42:28", "157.55.39.160", "2");
INSERT INTO `wp_rg_form_view` VALUES("35045", "3", "2016-08-04 11:06:31", "194.187.170.113", "21");
INSERT INTO `wp_rg_form_view` VALUES("35046", "10", "2016-08-04 11:06:32", "194.187.170.113", "4");
INSERT INTO `wp_rg_form_view` VALUES("35047", "3", "2016-08-04 12:19:02", "202.46.56.204", "9");
INSERT INTO `wp_rg_form_view` VALUES("35048", "10", "2016-08-04 12:19:04", "202.46.56.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("35049", "3", "2016-08-04 13:44:33", "134.249.48.27", "17");
INSERT INTO `wp_rg_form_view` VALUES("35050", "10", "2016-08-04 13:44:37", "134.249.48.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("35051", "3", "2016-08-04 14:14:30", "66.249.79.156", "43");
INSERT INTO `wp_rg_form_view` VALUES("35052", "10", "2016-08-04 14:14:30", "66.249.79.156", "10");
INSERT INTO `wp_rg_form_view` VALUES("35053", "1", "2016-08-04 14:32:02", "24.16.143.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("35054", "3", "2016-08-04 15:04:48", "198.103.152.52", "58");
INSERT INTO `wp_rg_form_view` VALUES("35055", "10", "2016-08-04 15:04:49", "198.103.152.52", "12");
INSERT INTO `wp_rg_form_view` VALUES("35056", "1", "2016-08-04 15:14:44", "198.103.152.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("35057", "3", "2016-08-04 16:21:20", "75.155.183.160", "63");
INSERT INTO `wp_rg_form_view` VALUES("35058", "10", "2016-08-04 16:21:20", "75.155.183.160", "14");
INSERT INTO `wp_rg_form_view` VALUES("35059", "10", "2016-08-04 17:15:15", "24.108.4.19", "66");
INSERT INTO `wp_rg_form_view` VALUES("35060", "3", "2016-08-04 17:15:18", "24.108.4.19", "227");
INSERT INTO `wp_rg_form_view` VALUES("35061", "3", "2016-08-04 18:01:51", "46.119.118.165", "183");
INSERT INTO `wp_rg_form_view` VALUES("35062", "10", "2016-08-04 18:01:52", "46.119.118.165", "52");
INSERT INTO `wp_rg_form_view` VALUES("35063", "10", "2016-08-04 20:35:26", "184.66.245.34", "8");
INSERT INTO `wp_rg_form_view` VALUES("35064", "3", "2016-08-04 20:35:34", "184.66.245.34", "25");
INSERT INTO `wp_rg_form_view` VALUES("35065", "10", "2016-08-04 21:16:47", "184.66.243.203", "15");
INSERT INTO `wp_rg_form_view` VALUES("35066", "3", "2016-08-04 21:16:49", "184.66.243.203", "48");
INSERT INTO `wp_rg_form_view` VALUES("35067", "3", "2016-08-04 22:13:51", "157.55.39.91", "91");
INSERT INTO `wp_rg_form_view` VALUES("35068", "10", "2016-08-04 22:13:53", "157.55.39.91", "22");
INSERT INTO `wp_rg_form_view` VALUES("35069", "1", "2016-08-04 22:44:51", "46.161.9.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("35070", "10", "2016-08-04 23:25:38", "207.194.133.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("35071", "3", "2016-08-04 23:25:39", "207.194.133.9", "8");
INSERT INTO `wp_rg_form_view` VALUES("35072", "3", "2016-08-05 00:39:00", "68.180.229.121", "79");
INSERT INTO `wp_rg_form_view` VALUES("35073", "10", "2016-08-05 00:39:03", "68.180.229.121", "18");
INSERT INTO `wp_rg_form_view` VALUES("35074", "8", "2016-08-05 01:08:24", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("35075", "3", "2016-08-05 01:08:24", "207.46.13.17", "16");
INSERT INTO `wp_rg_form_view` VALUES("35076", "10", "2016-08-05 01:08:24", "207.46.13.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("35077", "3", "2016-08-05 02:13:00", "24.69.140.102", "34");
INSERT INTO `wp_rg_form_view` VALUES("35078", "10", "2016-08-05 02:13:03", "24.69.140.102", "8");
INSERT INTO `wp_rg_form_view` VALUES("35079", "3", "2016-08-05 03:03:41", "174.129.237.157", "98");
INSERT INTO `wp_rg_form_view` VALUES("35080", "10", "2016-08-05 03:03:42", "174.129.237.157", "26");
INSERT INTO `wp_rg_form_view` VALUES("35081", "1", "2016-08-05 03:34:15", "62.210.111.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("35082", "3", "2016-08-05 04:25:33", "46.119.118.165", "62");
INSERT INTO `wp_rg_form_view` VALUES("35083", "10", "2016-08-05 04:25:34", "46.119.118.165", "14");
INSERT INTO `wp_rg_form_view` VALUES("35084", "3", "2016-08-05 05:22:54", "207.46.13.17", "52");
INSERT INTO `wp_rg_form_view` VALUES("35085", "10", "2016-08-05 05:22:56", "207.46.13.17", "13");
INSERT INTO `wp_rg_form_view` VALUES("35086", "3", "2016-08-05 06:02:33", "24.68.48.249", "40");
INSERT INTO `wp_rg_form_view` VALUES("35087", "10", "2016-08-05 06:02:33", "24.68.48.249", "10");
INSERT INTO `wp_rg_form_view` VALUES("35088", "3", "2016-08-05 07:16:00", "157.55.39.91", "17");
INSERT INTO `wp_rg_form_view` VALUES("35089", "10", "2016-08-05 07:16:03", "157.55.39.91", "4");
INSERT INTO `wp_rg_form_view` VALUES("35090", "3", "2016-08-05 08:01:57", "202.46.51.182", "69");
INSERT INTO `wp_rg_form_view` VALUES("35091", "10", "2016-08-05 08:01:59", "202.46.51.182", "16");
INSERT INTO `wp_rg_form_view` VALUES("35092", "1", "2016-08-05 08:35:22", "202.46.58.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("35093", "3", "2016-08-05 09:40:48", "134.249.53.72", "9");
INSERT INTO `wp_rg_form_view` VALUES("35094", "10", "2016-08-05 09:40:56", "134.249.53.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("35095", "2", "2016-08-05 10:05:00", "223.240.115.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("35096", "3", "2016-08-05 10:05:00", "223.240.115.193", "84");
INSERT INTO `wp_rg_form_view` VALUES("35097", "10", "2016-08-05 10:05:01", "223.240.115.193", "20");
INSERT INTO `wp_rg_form_view` VALUES("35098", "3", "2016-08-05 11:45:57", "207.46.13.17", "41");
INSERT INTO `wp_rg_form_view` VALUES("35099", "10", "2016-08-05 11:45:58", "207.46.13.17", "9");
INSERT INTO `wp_rg_form_view` VALUES("35100", "10", "2016-08-05 12:00:00", "223.240.115.193", "15");
INSERT INTO `wp_rg_form_view` VALUES("35101", "3", "2016-08-05 12:00:00", "223.240.115.193", "62");
INSERT INTO `wp_rg_form_view` VALUES("35102", "3", "2016-08-05 13:05:30", "134.249.65.218", "77");
INSERT INTO `wp_rg_form_view` VALUES("35103", "10", "2016-08-05 13:05:30", "134.249.65.218", "18");
INSERT INTO `wp_rg_form_view` VALUES("35104", "11", "2016-08-05 14:25:23", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("35105", "3", "2016-08-05 14:25:25", "68.180.229.121", "34");
INSERT INTO `wp_rg_form_view` VALUES("35106", "10", "2016-08-05 14:25:26", "68.180.229.121", "8");
INSERT INTO `wp_rg_form_view` VALUES("35107", "3", "2016-08-05 15:03:17", "157.55.39.91", "57");
INSERT INTO `wp_rg_form_view` VALUES("35108", "10", "2016-08-05 15:03:17", "157.55.39.91", "16");
INSERT INTO `wp_rg_form_view` VALUES("35109", "3", "2016-08-05 16:22:40", "157.55.39.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("35110", "10", "2016-08-05 16:22:40", "157.55.39.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("35111", "3", "2016-08-05 17:05:09", "213.239.200.142", "732");
INSERT INTO `wp_rg_form_view` VALUES("35112", "10", "2016-08-05 17:05:11", "213.239.200.142", "190");
INSERT INTO `wp_rg_form_view` VALUES("35113", "11", "2016-08-05 17:06:00", "213.239.200.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("35114", "2", "2016-08-05 17:06:07", "213.239.200.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("35115", "12", "2016-08-05 17:11:58", "213.239.200.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("35116", "1", "2016-08-05 17:17:32", "213.239.200.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("35117", "3", "2016-08-05 18:05:48", "157.55.39.91", "32");
INSERT INTO `wp_rg_form_view` VALUES("35118", "10", "2016-08-05 18:05:48", "157.55.39.91", "8");
INSERT INTO `wp_rg_form_view` VALUES("35119", "3", "2016-08-05 19:19:50", "68.180.229.121", "1388");
INSERT INTO `wp_rg_form_view` VALUES("35120", "10", "2016-08-05 19:19:54", "68.180.229.121", "378");
INSERT INTO `wp_rg_form_view` VALUES("35121", "11", "2016-08-05 19:36:16", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35122", "2", "2016-08-05 19:36:27", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35123", "12", "2016-08-05 19:38:31", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35124", "1", "2016-08-05 19:39:21", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35125", "5", "2016-08-05 19:46:53", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35126", "8", "2016-08-05 19:51:27", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35127", "9", "2016-08-05 19:51:39", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35128", "6", "2016-08-05 19:52:41", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35129", "3", "2016-08-05 20:00:33", "5.9.98.130", "3569");
INSERT INTO `wp_rg_form_view` VALUES("35130", "10", "2016-08-05 20:00:34", "5.9.98.130", "1085");
INSERT INTO `wp_rg_form_view` VALUES("35131", "10", "2016-08-05 21:00:00", "5.9.98.130", "1134");
INSERT INTO `wp_rg_form_view` VALUES("35132", "3", "2016-08-05 21:00:00", "5.9.98.130", "3987");
INSERT INTO `wp_rg_form_view` VALUES("35133", "2", "2016-08-05 21:08:05", "157.55.39.82", "5");
INSERT INTO `wp_rg_form_view` VALUES("35134", "11", "2016-08-05 21:40:08", "24.108.4.19", "5");
INSERT INTO `wp_rg_form_view` VALUES("35135", "10", "2016-08-05 22:00:00", "5.9.98.130", "1681");
INSERT INTO `wp_rg_form_view` VALUES("35136", "3", "2016-08-05 22:00:00", "5.9.98.130", "5197");
INSERT INTO `wp_rg_form_view` VALUES("35137", "6", "2016-08-05 22:17:01", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("35138", "5", "2016-08-05 22:17:17", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("35139", "9", "2016-08-05 22:17:34", "157.55.39.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("35140", "11", "2016-08-05 22:37:14", "157.55.39.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("35141", "12", "2016-08-05 22:56:51", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("35142", "3", "2016-08-05 23:00:00", "5.9.98.130", "985");
INSERT INTO `wp_rg_form_view` VALUES("35143", "10", "2016-08-05 23:00:00", "5.9.98.130", "248");
INSERT INTO `wp_rg_form_view` VALUES("35144", "12", "2016-08-05 23:38:26", "157.55.39.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35145", "8", "2016-08-05 23:38:47", "157.55.39.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35146", "3", "2016-08-06 00:00:00", "5.9.98.130", "5160");
INSERT INTO `wp_rg_form_view` VALUES("35147", "10", "2016-08-06 00:00:00", "5.9.98.130", "1560");
INSERT INTO `wp_rg_form_view` VALUES("35148", "8", "2016-08-06 00:24:08", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("35149", "3", "2016-08-06 01:00:00", "5.9.98.130", "4870");
INSERT INTO `wp_rg_form_view` VALUES("35150", "10", "2016-08-06 01:00:03", "5.9.98.130", "1399");
INSERT INTO `wp_rg_form_view` VALUES("35151", "10", "2016-08-06 02:00:00", "5.9.98.130", "513");
INSERT INTO `wp_rg_form_view` VALUES("35152", "3", "2016-08-06 02:00:01", "5.9.98.130", "849");
INSERT INTO `wp_rg_form_view` VALUES("35153", "3", "2016-08-06 03:02:39", "202.46.50.137", "1265");
INSERT INTO `wp_rg_form_view` VALUES("35154", "10", "2016-08-06 03:02:40", "202.46.50.137", "316");
INSERT INTO `wp_rg_form_view` VALUES("35155", "3", "2016-08-06 04:00:01", "5.9.98.130", "4574");
INSERT INTO `wp_rg_form_view` VALUES("35156", "10", "2016-08-06 04:00:02", "5.9.98.130", "1054");
INSERT INTO `wp_rg_form_view` VALUES("35157", "3", "2016-08-06 05:00:00", "5.9.98.130", "5013");
INSERT INTO `wp_rg_form_view` VALUES("35158", "10", "2016-08-06 05:00:01", "5.9.98.130", "1664");
INSERT INTO `wp_rg_form_view` VALUES("35159", "2", "2016-08-06 05:02:45", "157.55.39.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("35160", "3", "2016-08-06 06:00:06", "5.9.98.130", "5540");
INSERT INTO `wp_rg_form_view` VALUES("35161", "10", "2016-08-06 06:00:06", "5.9.98.130", "960");
INSERT INTO `wp_rg_form_view` VALUES("35162", "3", "2016-08-06 07:00:00", "5.9.98.130", "4475");
INSERT INTO `wp_rg_form_view` VALUES("35163", "10", "2016-08-06 07:00:02", "5.9.98.130", "1720");
INSERT INTO `wp_rg_form_view` VALUES("35164", "11", "2016-08-06 07:25:11", "157.55.39.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("35165", "12", "2016-08-06 07:56:14", "40.77.167.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("35166", "3", "2016-08-06 08:00:03", "5.9.98.130", "2356");
INSERT INTO `wp_rg_form_view` VALUES("35167", "10", "2016-08-06 08:00:06", "5.9.98.130", "1592");
INSERT INTO `wp_rg_form_view` VALUES("35168", "3", "2016-08-06 09:24:39", "192.243.55.129", "56");
INSERT INTO `wp_rg_form_view` VALUES("35169", "10", "2016-08-06 09:24:42", "192.243.55.129", "12");
INSERT INTO `wp_rg_form_view` VALUES("35170", "3", "2016-08-06 10:03:32", "5.9.98.130", "88");
INSERT INTO `wp_rg_form_view` VALUES("35171", "10", "2016-08-06 10:03:32", "5.9.98.130", "22");
INSERT INTO `wp_rg_form_view` VALUES("35172", "9", "2016-08-06 10:03:45", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("35173", "11", "2016-08-06 11:30:38", "157.55.39.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("35174", "3", "2016-08-06 11:30:40", "157.55.39.203", "16");
INSERT INTO `wp_rg_form_view` VALUES("35175", "10", "2016-08-06 11:30:41", "157.55.39.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("35176", "3", "2016-08-06 12:03:03", "51.255.65.94", "17");
INSERT INTO `wp_rg_form_view` VALUES("35177", "10", "2016-08-06 12:03:04", "51.255.65.94", "4");
INSERT INTO `wp_rg_form_view` VALUES("35178", "3", "2016-08-06 13:32:34", "68.180.229.121", "25");
INSERT INTO `wp_rg_form_view` VALUES("35179", "10", "2016-08-06 13:32:38", "68.180.229.121", "6");
INSERT INTO `wp_rg_form_view` VALUES("35180", "9", "2016-08-06 13:59:46", "180.191.127.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("35181", "3", "2016-08-06 14:48:32", "157.55.39.181", "8");
INSERT INTO `wp_rg_form_view` VALUES("35182", "10", "2016-08-06 14:48:34", "157.55.39.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("35183", "10", "2016-08-06 15:02:58", "66.249.79.152", "9");
INSERT INTO `wp_rg_form_view` VALUES("35184", "3", "2016-08-06 15:02:58", "66.249.79.152", "32");
INSERT INTO `wp_rg_form_view` VALUES("35185", "3", "2016-08-06 16:02:56", "5.9.145.132", "83");
INSERT INTO `wp_rg_form_view` VALUES("35186", "10", "2016-08-06 16:02:57", "5.9.145.132", "22");
INSERT INTO `wp_rg_form_view` VALUES("35187", "12", "2016-08-06 16:18:50", "207.46.13.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("35188", "3", "2016-08-06 17:05:02", "207.46.13.15", "69");
INSERT INTO `wp_rg_form_view` VALUES("35189", "10", "2016-08-06 17:05:14", "207.46.13.15", "16");
INSERT INTO `wp_rg_form_view` VALUES("35190", "1", "2016-08-06 17:25:51", "168.0.126.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("35191", "12", "2016-08-06 17:38:15", "207.46.13.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("35192", "3", "2016-08-06 19:05:48", "202.46.54.106", "71");
INSERT INTO `wp_rg_form_view` VALUES("35193", "10", "2016-08-06 19:05:52", "202.46.54.106", "16");
INSERT INTO `wp_rg_form_view` VALUES("35194", "3", "2016-08-06 20:10:36", "207.46.13.15", "26");
INSERT INTO `wp_rg_form_view` VALUES("35195", "10", "2016-08-06 20:10:36", "207.46.13.15", "6");
INSERT INTO `wp_rg_form_view` VALUES("35196", "3", "2016-08-06 21:31:04", "207.46.13.166", "25");
INSERT INTO `wp_rg_form_view` VALUES("35197", "10", "2016-08-06 21:31:10", "207.46.13.166", "7");
INSERT INTO `wp_rg_form_view` VALUES("35198", "3", "2016-08-06 22:00:34", "66.249.79.152", "33");
INSERT INTO `wp_rg_form_view` VALUES("35199", "10", "2016-08-06 22:00:34", "66.249.79.152", "8");
INSERT INTO `wp_rg_form_view` VALUES("35200", "12", "2016-08-06 22:35:54", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("35201", "3", "2016-08-06 23:45:49", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("35202", "10", "2016-08-06 23:45:50", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("35203", "3", "2016-08-07 00:15:46", "46.119.118.165", "27");
INSERT INTO `wp_rg_form_view` VALUES("35204", "10", "2016-08-07 00:15:46", "46.119.118.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("35205", "3", "2016-08-07 01:25:28", "192.243.55.132", "49");
INSERT INTO `wp_rg_form_view` VALUES("35206", "10", "2016-08-07 01:25:30", "192.243.55.132", "12");
INSERT INTO `wp_rg_form_view` VALUES("35207", "1", "2016-08-07 01:38:39", "62.210.111.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("35208", "8", "2016-08-07 01:58:33", "207.46.13.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("35209", "3", "2016-08-07 02:30:27", "5.248.196.10", "35");
INSERT INTO `wp_rg_form_view` VALUES("35210", "10", "2016-08-07 02:30:30", "5.248.196.10", "7");
INSERT INTO `wp_rg_form_view` VALUES("35211", "10", "2016-08-07 02:30:30", "5.248.196.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("35212", "10", "2016-08-07 02:30:30", "5.248.196.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("35213", "3", "2016-08-07 03:01:41", "151.80.31.157", "100");
INSERT INTO `wp_rg_form_view` VALUES("35214", "10", "2016-08-07 03:01:41", "151.80.31.157", "23");
INSERT INTO `wp_rg_form_view` VALUES("35215", "5", "2016-08-07 03:34:31", "202.46.53.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("35216", "3", "2016-08-07 04:04:11", "68.180.229.121", "40");
INSERT INTO `wp_rg_form_view` VALUES("35217", "10", "2016-08-07 04:04:11", "68.180.229.121", "11");
INSERT INTO `wp_rg_form_view` VALUES("35218", "3", "2016-08-07 05:03:34", "66.249.79.156", "49");
INSERT INTO `wp_rg_form_view` VALUES("35219", "10", "2016-08-07 05:03:35", "66.249.79.156", "12");
INSERT INTO `wp_rg_form_view` VALUES("35220", "1", "2016-08-07 05:39:34", "62.210.111.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("35221", "1", "2016-08-07 06:01:14", "62.210.111.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("35222", "3", "2016-08-07 06:01:14", "62.210.111.75", "69");
INSERT INTO `wp_rg_form_view` VALUES("35223", "10", "2016-08-07 06:01:15", "62.210.111.75", "16");
INSERT INTO `wp_rg_form_view` VALUES("35224", "3", "2016-08-07 07:02:40", "207.46.13.73", "42");
INSERT INTO `wp_rg_form_view` VALUES("35225", "10", "2016-08-07 07:02:41", "207.46.13.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("35226", "1", "2016-08-07 07:32:26", "62.210.111.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("35227", "3", "2016-08-07 08:04:13", "134.249.48.27", "92");
INSERT INTO `wp_rg_form_view` VALUES("35228", "10", "2016-08-07 08:04:14", "134.249.48.27", "21");
INSERT INTO `wp_rg_form_view` VALUES("35229", "10", "2016-08-07 08:04:14", "134.249.48.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("35230", "1", "2016-08-07 08:46:44", "176.100.106.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("35231", "3", "2016-08-07 09:06:50", "66.249.79.156", "57");
INSERT INTO `wp_rg_form_view` VALUES("35232", "10", "2016-08-07 09:06:50", "66.249.79.156", "14");
INSERT INTO `wp_rg_form_view` VALUES("35233", "2", "2016-08-07 09:15:24", "207.46.13.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("35234", "3", "2016-08-07 10:06:37", "207.46.13.0", "9");
INSERT INTO `wp_rg_form_view` VALUES("35235", "10", "2016-08-07 10:06:38", "207.46.13.0", "2");
INSERT INTO `wp_rg_form_view` VALUES("35236", "3", "2016-08-07 11:50:34", "164.132.161.65", "9");
INSERT INTO `wp_rg_form_view` VALUES("35237", "10", "2016-08-07 11:56:03", "157.55.39.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("35238", "3", "2016-08-07 12:20:27", "46.118.158.47", "51");
INSERT INTO `wp_rg_form_view` VALUES("35239", "10", "2016-08-07 12:20:28", "46.118.158.47", "12");
INSERT INTO `wp_rg_form_view` VALUES("35240", "3", "2016-08-07 13:19:22", "157.55.39.207", "225");
INSERT INTO `wp_rg_form_view` VALUES("35241", "10", "2016-08-07 13:19:22", "157.55.39.207", "56");
INSERT INTO `wp_rg_form_view` VALUES("35242", "11", "2016-08-07 13:52:56", "212.219.81.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("35243", "12", "2016-08-07 13:54:06", "212.219.81.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("35244", "2", "2016-08-07 13:55:32", "212.219.81.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("35245", "3", "2016-08-07 14:13:17", "192.243.55.132", "26");
INSERT INTO `wp_rg_form_view` VALUES("35246", "10", "2016-08-07 14:13:18", "192.243.55.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("35247", "3", "2016-08-07 16:14:19", "208.43.225.85", "8");
INSERT INTO `wp_rg_form_view` VALUES("35248", "10", "2016-08-07 16:14:21", "208.43.225.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("35249", "3", "2016-08-07 17:01:59", "134.249.65.218", "61");
INSERT INTO `wp_rg_form_view` VALUES("35250", "3", "2016-08-07 17:01:59", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35251", "3", "2016-08-07 17:01:59", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35252", "10", "2016-08-07 17:02:01", "134.249.65.218", "13");
INSERT INTO `wp_rg_form_view` VALUES("35253", "10", "2016-08-07 17:02:01", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35254", "3", "2016-08-07 18:04:04", "68.180.229.121", "26");
INSERT INTO `wp_rg_form_view` VALUES("35255", "10", "2016-08-07 18:04:07", "68.180.229.121", "4");
INSERT INTO `wp_rg_form_view` VALUES("35256", "1", "2016-08-07 19:10:58", "213.184.105.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("35257", "3", "2016-08-07 19:10:59", "213.184.105.200", "16");
INSERT INTO `wp_rg_form_view` VALUES("35258", "10", "2016-08-07 19:10:59", "213.184.105.200", "4");
INSERT INTO `wp_rg_form_view` VALUES("35259", "10", "2016-08-07 20:06:04", "24.68.17.97", "25");
INSERT INTO `wp_rg_form_view` VALUES("35260", "3", "2016-08-07 20:06:05", "24.68.17.97", "99");
INSERT INTO `wp_rg_form_view` VALUES("35261", "11", "2016-08-07 21:39:37", "81.68.74.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("35262", "3", "2016-08-07 21:39:42", "81.68.74.236", "225");
INSERT INTO `wp_rg_form_view` VALUES("35263", "10", "2016-08-07 21:39:42", "81.68.74.236", "56");
INSERT INTO `wp_rg_form_view` VALUES("35264", "12", "2016-08-07 21:40:15", "81.68.74.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("35265", "2", "2016-08-07 21:41:03", "81.68.74.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("35266", "6", "2016-08-07 21:57:39", "192.243.55.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("35267", "10", "2016-08-07 22:31:43", "216.232.151.226", "12");
INSERT INTO `wp_rg_form_view` VALUES("35268", "3", "2016-08-07 22:31:46", "216.232.151.226", "32");
INSERT INTO `wp_rg_form_view` VALUES("35269", "3", "2016-08-07 23:11:19", "207.46.13.73", "24");
INSERT INTO `wp_rg_form_view` VALUES("35270", "10", "2016-08-07 23:11:19", "207.46.13.73", "7");
INSERT INTO `wp_rg_form_view` VALUES("35271", "11", "2016-08-07 23:18:32", "51.255.65.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("35272", "3", "2016-08-08 00:16:25", "96.54.34.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("35273", "10", "2016-08-08 00:16:26", "96.54.34.105", "5");
INSERT INTO `wp_rg_form_view` VALUES("35274", "3", "2016-08-08 01:07:15", "157.55.39.207", "59");
INSERT INTO `wp_rg_form_view` VALUES("35275", "10", "2016-08-08 01:07:15", "157.55.39.207", "24");
INSERT INTO `wp_rg_form_view` VALUES("35276", "1", "2016-08-08 02:20:34", "192.243.55.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("35277", "3", "2016-08-08 02:20:35", "192.243.55.135", "16");
INSERT INTO `wp_rg_form_view` VALUES("35278", "10", "2016-08-08 02:20:36", "192.243.55.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("35279", "8", "2016-08-08 03:04:20", "151.80.31.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("35280", "3", "2016-08-08 03:04:20", "151.80.31.108", "16");
INSERT INTO `wp_rg_form_view` VALUES("35281", "10", "2016-08-08 03:04:21", "151.80.31.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("35282", "8", "2016-08-08 04:48:10", "192.243.55.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("35283", "3", "2016-08-08 04:48:13", "192.243.55.136", "16");
INSERT INTO `wp_rg_form_view` VALUES("35284", "10", "2016-08-08 04:48:14", "192.243.55.136", "4");
INSERT INTO `wp_rg_form_view` VALUES("35285", "10", "2016-08-08 05:33:55", "75.156.98.92", "149");
INSERT INTO `wp_rg_form_view` VALUES("35286", "3", "2016-08-08 05:33:55", "75.156.98.92", "547");
INSERT INTO `wp_rg_form_view` VALUES("35287", "8", "2016-08-08 05:35:00", "157.55.39.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("35288", "9", "2016-08-08 05:35:01", "40.77.167.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("35289", "12", "2016-08-08 05:35:42", "157.55.39.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("35290", "7", "2016-08-08 05:35:44", "157.55.39.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("35291", "3", "2016-08-08 06:34:03", "157.55.39.179", "16");
INSERT INTO `wp_rg_form_view` VALUES("35292", "10", "2016-08-08 06:34:05", "157.55.39.179", "4");
INSERT INTO `wp_rg_form_view` VALUES("35293", "3", "2016-08-08 07:18:10", "46.118.158.81", "42");
INSERT INTO `wp_rg_form_view` VALUES("35294", "3", "2016-08-08 07:18:10", "46.118.158.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("35295", "10", "2016-08-08 07:18:11", "46.118.158.81", "9");
INSERT INTO `wp_rg_form_view` VALUES("35296", "10", "2016-08-08 07:18:11", "46.118.158.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("35297", "3", "2016-08-08 08:15:55", "192.243.55.129", "9");
INSERT INTO `wp_rg_form_view` VALUES("35298", "10", "2016-08-08 08:15:56", "192.243.55.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("35299", "3", "2016-08-08 09:26:20", "46.118.158.81", "27");
INSERT INTO `wp_rg_form_view` VALUES("35300", "10", "2016-08-08 09:26:22", "46.118.158.81", "6");
INSERT INTO `wp_rg_form_view` VALUES("35301", "11", "2016-08-08 10:03:25", "192.243.55.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("35302", "3", "2016-08-08 10:03:26", "192.243.55.132", "34");
INSERT INTO `wp_rg_form_view` VALUES("35303", "10", "2016-08-08 10:03:27", "192.243.55.132", "9");
INSERT INTO `wp_rg_form_view` VALUES("35304", "3", "2016-08-08 11:25:12", "192.243.55.131", "52");
INSERT INTO `wp_rg_form_view` VALUES("35305", "10", "2016-08-08 11:25:14", "192.243.55.131", "12");
INSERT INTO `wp_rg_form_view` VALUES("35306", "3", "2016-08-08 13:07:11", "91.200.12.65", "76");
INSERT INTO `wp_rg_form_view` VALUES("35307", "10", "2016-08-08 13:07:13", "91.200.12.65", "18");
INSERT INTO `wp_rg_form_view` VALUES("35308", "3", "2016-08-08 14:07:00", "40.77.167.40", "34");
INSERT INTO `wp_rg_form_view` VALUES("35309", "10", "2016-08-08 14:07:00", "40.77.167.40", "16");
INSERT INTO `wp_rg_form_view` VALUES("35310", "3", "2016-08-08 15:38:29", "157.55.39.207", "17");
INSERT INTO `wp_rg_form_view` VALUES("35311", "10", "2016-08-08 15:38:31", "157.55.39.207", "5");
INSERT INTO `wp_rg_form_view` VALUES("35312", "3", "2016-08-08 16:59:20", "199.21.99.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("35313", "10", "2016-08-08 16:59:22", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("35314", "3", "2016-08-08 17:04:19", "199.59.148.209", "65");
INSERT INTO `wp_rg_form_view` VALUES("35315", "10", "2016-08-08 17:04:19", "199.59.148.209", "19");
INSERT INTO `wp_rg_form_view` VALUES("35316", "3", "2016-08-08 18:21:41", "202.46.53.190", "76");
INSERT INTO `wp_rg_form_view` VALUES("35317", "10", "2016-08-08 18:21:44", "202.46.53.190", "21");
INSERT INTO `wp_rg_form_view` VALUES("35318", "1", "2016-08-08 18:36:21", "24.16.143.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("35319", "3", "2016-08-08 19:14:19", "24.108.4.19", "483");
INSERT INTO `wp_rg_form_view` VALUES("35320", "10", "2016-08-08 19:14:20", "24.108.4.19", "120");
INSERT INTO `wp_rg_form_view` VALUES("35321", "11", "2016-08-08 19:39:10", "24.108.4.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("35322", "2", "2016-08-08 19:39:17", "24.108.4.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("35323", "3", "2016-08-08 20:09:07", "54.236.1.77", "236");
INSERT INTO `wp_rg_form_view` VALUES("35324", "10", "2016-08-08 20:09:07", "54.236.1.77", "58");
INSERT INTO `wp_rg_form_view` VALUES("35325", "3", "2016-08-08 21:21:35", "142.104.26.78", "16");
INSERT INTO `wp_rg_form_view` VALUES("35326", "10", "2016-08-08 21:21:43", "142.104.26.78", "4");
INSERT INTO `wp_rg_form_view` VALUES("35327", "3", "2016-08-08 22:06:00", "202.46.54.192", "73");
INSERT INTO `wp_rg_form_view` VALUES("35328", "10", "2016-08-08 22:06:01", "202.46.54.192", "19");
INSERT INTO `wp_rg_form_view` VALUES("35329", "3", "2016-08-08 23:09:33", "77.75.77.54", "53");
INSERT INTO `wp_rg_form_view` VALUES("35330", "10", "2016-08-08 23:09:33", "77.75.77.54", "12");
INSERT INTO `wp_rg_form_view` VALUES("35331", "1", "2016-08-09 00:01:32", "23.95.252.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("35332", "3", "2016-08-09 00:01:37", "23.95.252.172", "34");
INSERT INTO `wp_rg_form_view` VALUES("35333", "10", "2016-08-09 00:01:43", "23.95.252.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("35334", "11", "2016-08-09 00:36:54", "77.75.76.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("35335", "3", "2016-08-09 01:15:55", "24.69.146.59", "16");
INSERT INTO `wp_rg_form_view` VALUES("35336", "10", "2016-08-09 01:15:56", "24.69.146.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("35337", "3", "2016-08-09 02:15:10", "68.180.229.121", "17");
INSERT INTO `wp_rg_form_view` VALUES("35338", "10", "2016-08-09 02:15:12", "68.180.229.121", "4");
INSERT INTO `wp_rg_form_view` VALUES("35339", "3", "2016-08-09 03:16:47", "220.181.108.110", "1543");
INSERT INTO `wp_rg_form_view` VALUES("35340", "10", "2016-08-09 03:16:49", "220.181.108.110", "480");
INSERT INTO `wp_rg_form_view` VALUES("35341", "1", "2016-08-09 03:44:49", "159.203.82.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("35342", "11", "2016-08-09 03:45:04", "159.203.82.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("35343", "12", "2016-08-09 03:56:09", "159.203.82.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("35344", "3", "2016-08-09 04:00:00", "159.203.82.238", "3325");
INSERT INTO `wp_rg_form_view` VALUES("35345", "10", "2016-08-09 04:00:01", "159.203.82.238", "904");
INSERT INTO `wp_rg_form_view` VALUES("35346", "6", "2016-08-09 04:05:44", "159.203.82.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("35347", "9", "2016-08-09 04:14:24", "159.203.82.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("35348", "2", "2016-08-09 04:48:34", "159.203.82.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("35349", "3", "2016-08-09 05:00:03", "159.203.82.238", "267");
INSERT INTO `wp_rg_form_view` VALUES("35350", "10", "2016-08-09 05:00:06", "159.203.82.238", "80");
INSERT INTO `wp_rg_form_view` VALUES("35351", "8", "2016-08-09 05:02:25", "159.203.82.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("35352", "3", "2016-08-09 06:35:03", "68.180.229.121", "18");
INSERT INTO `wp_rg_form_view` VALUES("35353", "10", "2016-08-09 06:35:23", "77.75.79.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("35354", "3", "2016-08-09 07:09:15", "51.255.65.57", "32");
INSERT INTO `wp_rg_form_view` VALUES("35355", "10", "2016-08-09 07:09:15", "51.255.65.57", "10");
INSERT INTO `wp_rg_form_view` VALUES("35356", "1", "2016-08-09 08:04:07", "23.95.233.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("35357", "3", "2016-08-09 08:04:08", "23.95.233.215", "79");
INSERT INTO `wp_rg_form_view` VALUES("35358", "10", "2016-08-09 08:04:08", "23.95.233.215", "18");
INSERT INTO `wp_rg_form_view` VALUES("35359", "12", "2016-08-09 08:25:13", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("35360", "1", "2016-08-09 09:02:10", "46.161.9.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("35361", "3", "2016-08-09 09:02:10", "46.161.9.34", "97");
INSERT INTO `wp_rg_form_view` VALUES("35362", "10", "2016-08-09 09:02:11", "46.161.9.34", "24");
INSERT INTO `wp_rg_form_view` VALUES("35363", "10", "2016-08-09 10:08:54", "68.180.229.121", "53");
INSERT INTO `wp_rg_form_view` VALUES("35364", "3", "2016-08-09 10:08:54", "68.180.229.121", "212");
INSERT INTO `wp_rg_form_view` VALUES("35365", "12", "2016-08-09 10:27:17", "104.236.211.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("35366", "11", "2016-08-09 10:27:18", "104.236.211.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("35367", "2", "2016-08-09 10:27:21", "104.236.211.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("35368", "3", "2016-08-09 11:12:33", "199.21.99.202", "24");
INSERT INTO `wp_rg_form_view` VALUES("35369", "10", "2016-08-09 11:12:33", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("35370", "3", "2016-08-09 12:07:23", "66.249.79.148", "16");
INSERT INTO `wp_rg_form_view` VALUES("35371", "10", "2016-08-09 12:07:24", "66.249.79.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("35372", "3", "2016-08-09 13:23:43", "178.137.86.253", "85");
INSERT INTO `wp_rg_form_view` VALUES("35373", "10", "2016-08-09 13:23:45", "178.137.86.253", "20");
INSERT INTO `wp_rg_form_view` VALUES("35374", "1", "2016-08-09 13:32:24", "75.156.73.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("35375", "3", "2016-08-09 14:17:46", "199.21.99.202", "32");
INSERT INTO `wp_rg_form_view` VALUES("35376", "10", "2016-08-09 14:17:47", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("35377", "10", "2016-08-09 15:15:09", "205.250.193.33", "9");
INSERT INTO `wp_rg_form_view` VALUES("35378", "3", "2016-08-09 15:15:09", "205.250.193.33", "34");
INSERT INTO `wp_rg_form_view` VALUES("35379", "3", "2016-08-09 16:32:30", "207.46.13.102", "17");
INSERT INTO `wp_rg_form_view` VALUES("35380", "10", "2016-08-09 16:32:33", "207.46.13.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("35381", "3", "2016-08-09 17:48:06", "46.119.118.165", "35");
INSERT INTO `wp_rg_form_view` VALUES("35382", "10", "2016-08-09 17:48:08", "46.119.118.165", "7");
INSERT INTO `wp_rg_form_view` VALUES("35383", "10", "2016-08-09 17:48:08", "46.119.118.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("35384", "1", "2016-08-09 17:57:41", "107.173.146.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("35385", "3", "2016-08-09 18:16:05", "202.46.53.16", "84");
INSERT INTO `wp_rg_form_view` VALUES("35386", "10", "2016-08-09 18:16:05", "202.46.53.16", "21");
INSERT INTO `wp_rg_form_view` VALUES("35387", "3", "2016-08-09 19:52:50", "174.129.237.157", "16");
INSERT INTO `wp_rg_form_view` VALUES("35388", "10", "2016-08-09 19:52:52", "174.129.237.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("35389", "3", "2016-08-09 20:02:54", "46.119.112.163", "67");
INSERT INTO `wp_rg_form_view` VALUES("35390", "10", "2016-08-09 20:02:54", "46.119.112.163", "16");
INSERT INTO `wp_rg_form_view` VALUES("35391", "3", "2016-08-09 21:02:17", "164.132.161.18", "77");
INSERT INTO `wp_rg_form_view` VALUES("35392", "10", "2016-08-09 21:02:17", "164.132.161.18", "19");
INSERT INTO `wp_rg_form_view` VALUES("35393", "3", "2016-08-09 22:09:05", "199.21.99.202", "41");
INSERT INTO `wp_rg_form_view` VALUES("35394", "10", "2016-08-09 22:09:05", "199.21.99.202", "11");
INSERT INTO `wp_rg_form_view` VALUES("35395", "3", "2016-08-09 23:15:25", "184.68.134.18", "58");
INSERT INTO `wp_rg_form_view` VALUES("35396", "3", "2016-08-09 23:15:25", "184.68.134.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("35397", "10", "2016-08-09 23:15:32", "184.68.134.18", "22");
INSERT INTO `wp_rg_form_view` VALUES("35398", "3", "2016-08-10 00:15:52", "66.249.79.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("35399", "10", "2016-08-10 00:15:53", "66.249.79.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("35400", "3", "2016-08-10 01:02:42", "164.132.161.2", "76");
INSERT INTO `wp_rg_form_view` VALUES("35401", "10", "2016-08-10 01:02:43", "164.132.161.2", "19");
INSERT INTO `wp_rg_form_view` VALUES("35402", "11", "2016-08-10 02:44:44", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("35403", "3", "2016-08-10 02:44:45", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("35404", "10", "2016-08-10 02:44:46", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("35405", "9", "2016-08-10 03:45:20", "24.68.44.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("35406", "3", "2016-08-10 03:45:22", "24.68.44.233", "25");
INSERT INTO `wp_rg_form_view` VALUES("35407", "10", "2016-08-10 03:45:22", "24.68.44.233", "6");
INSERT INTO `wp_rg_form_view` VALUES("35408", "3", "2016-08-10 04:19:33", "108.180.31.157", "65");
INSERT INTO `wp_rg_form_view` VALUES("35409", "10", "2016-08-10 04:19:33", "108.180.31.157", "16");
INSERT INTO `wp_rg_form_view` VALUES("35410", "3", "2016-08-10 05:07:06", "66.249.79.156", "24");
INSERT INTO `wp_rg_form_view` VALUES("35411", "10", "2016-08-10 05:07:06", "66.249.79.156", "7");
INSERT INTO `wp_rg_form_view` VALUES("35412", "2", "2016-08-10 06:57:30", "51.255.65.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("35413", "3", "2016-08-10 06:57:31", "51.255.65.97", "8");
INSERT INTO `wp_rg_form_view` VALUES("35414", "10", "2016-08-10 06:57:32", "51.255.65.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("35415", "3", "2016-08-10 07:02:42", "46.119.118.165", "66");
INSERT INTO `wp_rg_form_view` VALUES("35416", "3", "2016-08-10 07:02:42", "46.119.118.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("35417", "10", "2016-08-10 07:02:42", "46.119.118.165", "15");
INSERT INTO `wp_rg_form_view` VALUES("35418", "10", "2016-08-10 07:02:42", "46.119.118.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("35419", "1", "2016-08-10 07:07:33", "192.99.170.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("35420", "7", "2016-08-10 07:15:42", "202.46.58.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("35421", "3", "2016-08-10 08:17:52", "157.55.39.220", "38");
INSERT INTO `wp_rg_form_view` VALUES("35422", "10", "2016-08-10 08:17:53", "157.55.39.220", "8");
INSERT INTO `wp_rg_form_view` VALUES("35423", "3", "2016-08-10 09:22:06", "66.249.79.156", "253");
INSERT INTO `wp_rg_form_view` VALUES("35424", "10", "2016-08-10 09:22:11", "66.249.79.156", "62");
INSERT INTO `wp_rg_form_view` VALUES("35425", "11", "2016-08-10 09:27:29", "212.219.81.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("35426", "12", "2016-08-10 09:29:49", "212.219.81.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("35427", "2", "2016-08-10 09:33:39", "212.219.81.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("35428", "3", "2016-08-10 10:11:23", "51.255.65.65", "41");
INSERT INTO `wp_rg_form_view` VALUES("35429", "10", "2016-08-10 10:11:26", "51.255.65.65", "10");
INSERT INTO `wp_rg_form_view` VALUES("35430", "11", "2016-08-10 11:11:07", "66.249.79.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("35431", "3", "2016-08-10 11:11:10", "66.249.79.156", "57");
INSERT INTO `wp_rg_form_view` VALUES("35432", "10", "2016-08-10 11:11:10", "66.249.79.156", "14");
INSERT INTO `wp_rg_form_view` VALUES("35433", "3", "2016-08-10 12:23:33", "207.46.13.56", "17");
INSERT INTO `wp_rg_form_view` VALUES("35434", "10", "2016-08-10 12:23:35", "207.46.13.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("35435", "8", "2016-08-10 12:44:17", "66.249.79.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("35436", "3", "2016-08-10 13:08:49", "136.243.17.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("35437", "10", "2016-08-10 13:08:50", "136.243.17.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("35438", "3", "2016-08-10 14:27:23", "68.180.229.121", "9");
INSERT INTO `wp_rg_form_view` VALUES("35439", "10", "2016-08-10 14:27:25", "68.180.229.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("35440", "1", "2016-08-10 15:23:06", "198.12.123.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("35441", "3", "2016-08-10 15:23:07", "198.12.123.245", "127");
INSERT INTO `wp_rg_form_view` VALUES("35442", "10", "2016-08-10 15:23:10", "198.12.123.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("35443", "3", "2016-08-10 16:04:12", "96.50.29.140", "83");
INSERT INTO `wp_rg_form_view` VALUES("35444", "10", "2016-08-10 16:04:13", "96.50.29.140", "21");
INSERT INTO `wp_rg_form_view` VALUES("35445", "3", "2016-08-10 17:06:22", "174.127.133.55", "623");
INSERT INTO `wp_rg_form_view` VALUES("35446", "10", "2016-08-10 17:06:23", "174.127.133.55", "162");
INSERT INTO `wp_rg_form_view` VALUES("35447", "2", "2016-08-10 17:09:56", "174.127.133.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("35448", "11", "2016-08-10 17:14:44", "174.127.133.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("35449", "12", "2016-08-10 17:16:26", "174.127.133.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("35450", "1", "2016-08-10 17:50:45", "174.127.133.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("35451", "3", "2016-08-10 18:00:15", "66.249.79.156", "784");
INSERT INTO `wp_rg_form_view` VALUES("35452", "10", "2016-08-10 18:00:16", "66.249.79.156", "188");
INSERT INTO `wp_rg_form_view` VALUES("35453", "9", "2016-08-10 18:38:32", "157.55.39.109", "3");
INSERT INTO `wp_rg_form_view` VALUES("35454", "8", "2016-08-10 18:38:35", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("35455", "6", "2016-08-10 18:40:23", "157.55.39.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("35456", "5", "2016-08-10 18:40:32", "157.55.39.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("35457", "11", "2016-08-10 19:29:47", "100.43.90.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("35458", "3", "2016-08-10 19:29:51", "100.43.90.12", "16");
INSERT INTO `wp_rg_form_view` VALUES("35459", "10", "2016-08-10 19:29:52", "100.43.90.12", "4");
INSERT INTO `wp_rg_form_view` VALUES("35460", "3", "2016-08-10 20:20:43", "51.255.65.35", "17");
INSERT INTO `wp_rg_form_view` VALUES("35461", "10", "2016-08-10 20:20:46", "51.255.65.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("35462", "6", "2016-08-10 21:00:57", "151.80.31.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("35463", "3", "2016-08-10 21:00:57", "151.80.31.175", "67");
INSERT INTO `wp_rg_form_view` VALUES("35464", "10", "2016-08-10 21:00:58", "151.80.31.175", "16");
INSERT INTO `wp_rg_form_view` VALUES("35465", "8", "2016-08-10 21:46:26", "212.60.66.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("35466", "3", "2016-08-10 22:52:21", "178.137.86.253", "59");
INSERT INTO `wp_rg_form_view` VALUES("35467", "3", "2016-08-10 22:52:21", "178.137.86.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("35468", "3", "2016-08-10 22:52:21", "178.137.86.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("35469", "3", "2016-08-10 22:52:21", "178.137.86.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("35470", "10", "2016-08-10 22:52:25", "178.137.86.253", "14");
INSERT INTO `wp_rg_form_view` VALUES("35471", "3", "2016-08-10 23:06:04", "62.210.83.87", "51");
INSERT INTO `wp_rg_form_view` VALUES("35472", "10", "2016-08-10 23:06:05", "62.210.83.87", "13");
INSERT INTO `wp_rg_form_view` VALUES("35473", "2", "2016-08-11 00:02:58", "202.46.50.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("35474", "3", "2016-08-11 00:02:59", "202.46.50.180", "32");
INSERT INTO `wp_rg_form_view` VALUES("35475", "10", "2016-08-11 00:03:00", "202.46.50.180", "8");
INSERT INTO `wp_rg_form_view` VALUES("35476", "3", "2016-08-11 01:30:01", "66.249.79.152", "16");
INSERT INTO `wp_rg_form_view` VALUES("35477", "10", "2016-08-11 01:30:03", "66.249.79.152", "4");
INSERT INTO `wp_rg_form_view` VALUES("35478", "3", "2016-08-11 02:12:47", "202.46.54.168", "17");
INSERT INTO `wp_rg_form_view` VALUES("35479", "10", "2016-08-11 02:12:47", "202.46.54.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("35480", "3", "2016-08-11 03:33:29", "68.180.229.121", "32");
INSERT INTO `wp_rg_form_view` VALUES("35481", "10", "2016-08-11 03:33:30", "68.180.229.121", "8");
INSERT INTO `wp_rg_form_view` VALUES("35482", "3", "2016-08-11 04:23:31", "207.46.13.56", "25");
INSERT INTO `wp_rg_form_view` VALUES("35483", "10", "2016-08-11 04:23:32", "207.46.13.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("35484", "3", "2016-08-11 05:10:24", "46.119.112.163", "61");
INSERT INTO `wp_rg_form_view` VALUES("35485", "3", "2016-08-11 05:10:24", "46.119.112.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("35486", "3", "2016-08-11 05:10:24", "46.119.112.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("35487", "10", "2016-08-11 05:10:26", "46.119.112.163", "13");
INSERT INTO `wp_rg_form_view` VALUES("35488", "10", "2016-08-11 05:10:26", "46.119.112.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("35489", "3", "2016-08-11 06:26:28", "66.249.79.152", "41");
INSERT INTO `wp_rg_form_view` VALUES("35490", "10", "2016-08-11 06:26:29", "66.249.79.152", "10");
INSERT INTO `wp_rg_form_view` VALUES("35491", "8", "2016-08-11 06:42:33", "157.55.39.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("35492", "3", "2016-08-11 07:20:04", "188.208.6.236", "42");
INSERT INTO `wp_rg_form_view` VALUES("35493", "10", "2016-08-11 07:20:04", "188.208.6.236", "10");
INSERT INTO `wp_rg_form_view` VALUES("35494", "11", "2016-08-11 07:27:30", "174.129.237.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("35495", "3", "2016-08-11 08:03:25", "46.118.158.81", "73");
INSERT INTO `wp_rg_form_view` VALUES("35496", "3", "2016-08-11 08:03:25", "46.118.158.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("35497", "3", "2016-08-11 08:03:25", "46.118.158.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("35498", "10", "2016-08-11 08:03:31", "46.118.158.81", "16");
INSERT INTO `wp_rg_form_view` VALUES("35499", "10", "2016-08-11 08:03:31", "46.118.158.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("35500", "10", "2016-08-11 08:03:31", "46.118.158.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("35501", "3", "2016-08-11 09:10:03", "51.255.65.14", "53");
INSERT INTO `wp_rg_form_view` VALUES("35502", "10", "2016-08-11 09:10:04", "51.255.65.14", "12");
INSERT INTO `wp_rg_form_view` VALUES("35503", "3", "2016-08-11 10:29:31", "66.249.79.152", "9");
INSERT INTO `wp_rg_form_view` VALUES("35504", "10", "2016-08-11 10:29:34", "66.249.79.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("35505", "3", "2016-08-11 11:34:45", "66.249.79.152", "32");
INSERT INTO `wp_rg_form_view` VALUES("35506", "10", "2016-08-11 11:34:46", "66.249.79.152", "8");
INSERT INTO `wp_rg_form_view` VALUES("35507", "3", "2016-08-11 12:02:42", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("35508", "10", "2016-08-11 12:02:42", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("35509", "3", "2016-08-11 13:30:44", "68.180.229.121", "8");
INSERT INTO `wp_rg_form_view` VALUES("35510", "10", "2016-08-11 13:30:46", "68.180.229.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("35511", "1", "2016-08-11 14:05:13", "5.135.176.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("35512", "3", "2016-08-11 14:05:14", "5.135.176.41", "52");
INSERT INTO `wp_rg_form_view` VALUES("35513", "10", "2016-08-11 14:05:15", "5.135.176.41", "14");
INSERT INTO `wp_rg_form_view` VALUES("35514", "3", "2016-08-11 15:48:35", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("35515", "10", "2016-08-11 15:48:37", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("35516", "3", "2016-08-11 16:30:28", "46.118.158.81", "27");
INSERT INTO `wp_rg_form_view` VALUES("35517", "10", "2016-08-11 16:30:33", "46.118.158.81", "6");
INSERT INTO `wp_rg_form_view` VALUES("35518", "10", "2016-08-11 17:10:59", "51.255.65.7", "17");
INSERT INTO `wp_rg_form_view` VALUES("35519", "3", "2016-08-11 17:11:06", "66.249.79.148", "64");
INSERT INTO `wp_rg_form_view` VALUES("35520", "1", "2016-08-11 17:48:04", "157.55.39.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("35521", "2", "2016-08-11 18:02:56", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("35522", "3", "2016-08-11 18:02:56", "66.249.79.148", "41");
INSERT INTO `wp_rg_form_view` VALUES("35523", "10", "2016-08-11 18:02:57", "66.249.79.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("35524", "3", "2016-08-11 19:11:25", "24.108.4.19", "169");
INSERT INTO `wp_rg_form_view` VALUES("35525", "10", "2016-08-11 19:11:25", "24.108.4.19", "42");
INSERT INTO `wp_rg_form_view` VALUES("35526", "3", "2016-08-11 20:05:36", "66.249.79.148", "79");
INSERT INTO `wp_rg_form_view` VALUES("35527", "10", "2016-08-11 20:05:37", "66.249.79.148", "18");
INSERT INTO `wp_rg_form_view` VALUES("35528", "3", "2016-08-11 21:01:48", "74.91.22.74", "153");
INSERT INTO `wp_rg_form_view` VALUES("35529", "10", "2016-08-11 21:01:50", "74.91.22.74", "39");
INSERT INTO `wp_rg_form_view` VALUES("35530", "2", "2016-08-11 21:53:02", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("35531", "3", "2016-08-11 22:01:03", "74.91.22.74", "26");
INSERT INTO `wp_rg_form_view` VALUES("35532", "10", "2016-08-11 22:01:04", "74.91.22.74", "6");
INSERT INTO `wp_rg_form_view` VALUES("35533", "3", "2016-08-11 23:04:44", "52.43.205.146", "178");
INSERT INTO `wp_rg_form_view` VALUES("35534", "10", "2016-08-11 23:04:49", "52.43.205.146", "43");
INSERT INTO `wp_rg_form_view` VALUES("35535", "10", "2016-08-11 23:04:49", "52.43.205.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("35536", "3", "2016-08-12 00:00:36", "66.249.79.152", "113");
INSERT INTO `wp_rg_form_view` VALUES("35537", "10", "2016-08-12 00:00:37", "66.249.79.152", "28");
INSERT INTO `wp_rg_form_view` VALUES("35538", "3", "2016-08-12 01:00:27", "184.69.167.62", "41");
INSERT INTO `wp_rg_form_view` VALUES("35539", "10", "2016-08-12 01:00:28", "184.69.167.62", "10");
INSERT INTO `wp_rg_form_view` VALUES("35540", "3", "2016-08-12 02:22:47", "68.180.229.121", "79");
INSERT INTO `wp_rg_form_view` VALUES("35541", "10", "2016-08-12 02:22:48", "68.180.229.121", "18");
INSERT INTO `wp_rg_form_view` VALUES("35542", "3", "2016-08-12 03:30:09", "207.216.15.84", "34");
INSERT INTO `wp_rg_form_view` VALUES("35543", "10", "2016-08-12 03:30:10", "207.216.15.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("35544", "3", "2016-08-12 04:03:52", "66.249.79.156", "41");
INSERT INTO `wp_rg_form_view` VALUES("35545", "10", "2016-08-12 04:03:56", "66.249.79.156", "11");
INSERT INTO `wp_rg_form_view` VALUES("35546", "1", "2016-08-12 05:12:07", "180.169.19.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("35547", "3", "2016-08-12 05:12:08", "180.169.19.170", "34");
INSERT INTO `wp_rg_form_view` VALUES("35548", "10", "2016-08-12 05:12:12", "180.169.19.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("35549", "2", "2016-08-12 05:23:15", "202.46.52.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("35550", "3", "2016-08-12 07:03:45", "202.46.57.73", "35");
INSERT INTO `wp_rg_form_view` VALUES("35551", "10", "2016-08-12 07:03:48", "202.46.57.73", "8");
INSERT INTO `wp_rg_form_view` VALUES("35552", "3", "2016-08-12 08:40:35", "157.55.39.88", "8");
INSERT INTO `wp_rg_form_view` VALUES("35553", "10", "2016-08-12 08:40:36", "157.55.39.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("35554", "3", "2016-08-12 09:46:18", "202.46.51.158", "8");
INSERT INTO `wp_rg_form_view` VALUES("35555", "10", "2016-08-12 09:46:23", "202.46.51.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("35556", "10", "2016-08-12 10:05:53", "157.55.39.88", "10");
INSERT INTO `wp_rg_form_view` VALUES("35557", "3", "2016-08-12 10:05:53", "157.55.39.88", "32");
INSERT INTO `wp_rg_form_view` VALUES("35558", "3", "2016-08-12 11:46:00", "157.55.39.88", "9");
INSERT INTO `wp_rg_form_view` VALUES("35559", "10", "2016-08-12 11:46:01", "157.55.39.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("35560", "3", "2016-08-12 12:08:22", "46.118.158.81", "116");
INSERT INTO `wp_rg_form_view` VALUES("35561", "10", "2016-08-12 12:08:23", "46.118.158.81", "28");
INSERT INTO `wp_rg_form_view` VALUES("35562", "9", "2016-08-12 12:18:11", "157.55.39.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("35563", "3", "2016-08-12 13:00:43", "91.200.12.136", "65");
INSERT INTO `wp_rg_form_view` VALUES("35564", "10", "2016-08-12 13:00:43", "91.200.12.136", "16");
INSERT INTO `wp_rg_form_view` VALUES("35565", "3", "2016-08-12 14:11:22", "194.187.170.105", "46");
INSERT INTO `wp_rg_form_view` VALUES("35566", "10", "2016-08-12 14:11:25", "194.187.170.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("35567", "1", "2016-08-12 14:46:35", "203.186.231.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("35568", "3", "2016-08-12 15:04:32", "68.180.229.121", "9");
INSERT INTO `wp_rg_form_view` VALUES("35569", "10", "2016-08-12 15:04:34", "68.180.229.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("35570", "3", "2016-08-12 16:27:43", "157.55.39.78", "48");
INSERT INTO `wp_rg_form_view` VALUES("35571", "10", "2016-08-12 16:27:47", "157.55.39.78", "12");
INSERT INTO `wp_rg_form_view` VALUES("35572", "3", "2016-08-12 17:12:44", "202.46.50.125", "41");
INSERT INTO `wp_rg_form_view` VALUES("35573", "10", "2016-08-12 17:12:44", "202.46.50.125", "10");
INSERT INTO `wp_rg_form_view` VALUES("35574", "3", "2016-08-12 18:19:42", "202.46.51.185", "9");
INSERT INTO `wp_rg_form_view` VALUES("35575", "10", "2016-08-12 18:19:42", "202.46.51.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("35576", "3", "2016-08-12 19:00:00", "207.46.13.56", "638");
INSERT INTO `wp_rg_form_view` VALUES("35577", "10", "2016-08-12 19:00:00", "207.46.13.56", "170");
INSERT INTO `wp_rg_form_view` VALUES("35578", "12", "2016-08-12 19:00:05", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("35579", "7", "2016-08-12 19:00:38", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("35580", "9", "2016-08-12 19:00:57", "157.55.39.78", "2");
INSERT INTO `wp_rg_form_view` VALUES("35581", "8", "2016-08-12 19:02:06", "207.46.13.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("35582", "3", "2016-08-12 20:21:23", "54.197.9.96", "8");
INSERT INTO `wp_rg_form_view` VALUES("35583", "10", "2016-08-12 20:21:25", "54.197.9.96", "3");
INSERT INTO `wp_rg_form_view` VALUES("35584", "3", "2016-08-12 21:06:55", "207.46.13.56", "50");
INSERT INTO `wp_rg_form_view` VALUES("35585", "10", "2016-08-12 21:07:00", "207.46.13.56", "12");
INSERT INTO `wp_rg_form_view` VALUES("35586", "3", "2016-08-12 22:00:58", "192.243.55.129", "24");
INSERT INTO `wp_rg_form_view` VALUES("35587", "10", "2016-08-12 22:00:58", "192.243.55.129", "7");
INSERT INTO `wp_rg_form_view` VALUES("35588", "10", "2016-08-12 23:04:58", "202.46.52.152", "15");
INSERT INTO `wp_rg_form_view` VALUES("35589", "3", "2016-08-12 23:04:59", "202.46.52.152", "61");
INSERT INTO `wp_rg_form_view` VALUES("35590", "8", "2016-08-13 01:12:34", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("35591", "3", "2016-08-13 01:12:37", "66.249.79.152", "43");
INSERT INTO `wp_rg_form_view` VALUES("35592", "10", "2016-08-13 01:12:37", "66.249.79.152", "10");
INSERT INTO `wp_rg_form_view` VALUES("35593", "3", "2016-08-13 02:08:07", "66.249.79.148", "32");
INSERT INTO `wp_rg_form_view` VALUES("35594", "10", "2016-08-13 02:08:09", "66.249.79.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("35595", "3", "2016-08-13 03:15:58", "142.0.41.2", "43");
INSERT INTO `wp_rg_form_view` VALUES("35596", "10", "2016-08-13 03:15:59", "142.0.41.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("35597", "10", "2016-08-13 04:14:17", "66.249.79.156", "15");
INSERT INTO `wp_rg_form_view` VALUES("35598", "3", "2016-08-13 04:14:18", "66.249.79.156", "49");
INSERT INTO `wp_rg_form_view` VALUES("35599", "3", "2016-08-13 05:01:19", "66.249.79.152", "17");
INSERT INTO `wp_rg_form_view` VALUES("35600", "10", "2016-08-13 05:01:19", "66.249.79.152", "12");
INSERT INTO `wp_rg_form_view` VALUES("35601", "3", "2016-08-13 06:42:13", "202.46.48.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("35602", "10", "2016-08-13 06:42:14", "202.46.48.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("35603", "10", "2016-08-13 07:06:42", "207.46.13.139", "7");
INSERT INTO `wp_rg_form_view` VALUES("35604", "3", "2016-08-13 07:06:42", "207.46.13.139", "25");
INSERT INTO `wp_rg_form_view` VALUES("35605", "8", "2016-08-13 08:36:31", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("35606", "3", "2016-08-13 08:36:33", "68.180.229.121", "32");
INSERT INTO `wp_rg_form_view` VALUES("35607", "10", "2016-08-13 08:36:34", "68.180.229.121", "8");
INSERT INTO `wp_rg_form_view` VALUES("35608", "3", "2016-08-13 09:07:22", "66.249.79.156", "113");
INSERT INTO `wp_rg_form_view` VALUES("35609", "10", "2016-08-13 09:07:23", "66.249.79.156", "28");
INSERT INTO `wp_rg_form_view` VALUES("35610", "3", "2016-08-13 10:04:06", "66.249.79.152", "660");
INSERT INTO `wp_rg_form_view` VALUES("35611", "10", "2016-08-13 10:04:07", "66.249.79.152", "175");
INSERT INTO `wp_rg_form_view` VALUES("35612", "11", "2016-08-13 10:52:28", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("35613", "2", "2016-08-13 10:52:33", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("35614", "12", "2016-08-13 10:54:29", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("35615", "1", "2016-08-13 10:54:52", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("35616", "3", "2016-08-13 11:00:28", "66.249.79.156", "75");
INSERT INTO `wp_rg_form_view` VALUES("35617", "10", "2016-08-13 11:00:29", "66.249.79.156", "20");
INSERT INTO `wp_rg_form_view` VALUES("35618", "3", "2016-08-13 12:08:25", "66.249.79.152", "83");
INSERT INTO `wp_rg_form_view` VALUES("35619", "10", "2016-08-13 12:08:28", "66.249.79.152", "20");
INSERT INTO `wp_rg_form_view` VALUES("35620", "12", "2016-08-13 13:01:08", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("35621", "3", "2016-08-13 13:01:09", "66.249.79.152", "91");
INSERT INTO `wp_rg_form_view` VALUES("35622", "10", "2016-08-13 13:01:09", "66.249.79.152", "22");
INSERT INTO `wp_rg_form_view` VALUES("35623", "3", "2016-08-13 14:13:35", "192.243.55.129", "24");
INSERT INTO `wp_rg_form_view` VALUES("35624", "10", "2016-08-13 14:13:47", "192.243.55.129", "8");
INSERT INTO `wp_rg_form_view` VALUES("35625", "3", "2016-08-13 15:09:34", "66.249.79.152", "108");
INSERT INTO `wp_rg_form_view` VALUES("35626", "10", "2016-08-13 15:09:34", "66.249.79.152", "26");
INSERT INTO `wp_rg_form_view` VALUES("35627", "8", "2016-08-13 15:43:06", "202.46.51.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("35628", "3", "2016-08-13 16:13:58", "46.119.112.163", "107");
INSERT INTO `wp_rg_form_view` VALUES("35629", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("35630", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("35631", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("35632", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("35633", "3", "2016-08-13 16:13:58", "46.119.112.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("35634", "10", "2016-08-13 16:14:02", "46.119.112.163", "32");
INSERT INTO `wp_rg_form_view` VALUES("35635", "3", "2016-08-13 17:32:09", "142.0.41.2", "50");
INSERT INTO `wp_rg_form_view` VALUES("35636", "10", "2016-08-13 17:32:11", "142.0.41.2", "14");
INSERT INTO `wp_rg_form_view` VALUES("35637", "5", "2016-08-13 18:37:31", "194.187.170.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("35638", "3", "2016-08-13 18:37:32", "194.187.170.104", "34");
INSERT INTO `wp_rg_form_view` VALUES("35639", "10", "2016-08-13 18:37:33", "194.187.170.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("35640", "3", "2016-08-13 19:04:03", "66.249.79.156", "41");
INSERT INTO `wp_rg_form_view` VALUES("35641", "10", "2016-08-13 19:04:03", "66.249.79.156", "10");
INSERT INTO `wp_rg_form_view` VALUES("35642", "8", "2016-08-13 19:10:01", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("35643", "3", "2016-08-13 20:00:20", "207.46.13.104", "57");
INSERT INTO `wp_rg_form_view` VALUES("35644", "10", "2016-08-13 20:15:22", "68.180.229.121", "15");
INSERT INTO `wp_rg_form_view` VALUES("35645", "3", "2016-08-13 21:06:41", "66.249.79.156", "297");
INSERT INTO `wp_rg_form_view` VALUES("35646", "10", "2016-08-13 21:06:44", "66.249.79.156", "74");
INSERT INTO `wp_rg_form_view` VALUES("35647", "11", "2016-08-13 21:10:09", "80.14.108.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("35648", "12", "2016-08-13 21:10:48", "80.14.108.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("35649", "2", "2016-08-13 21:11:28", "80.14.108.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("35650", "3", "2016-08-13 22:32:12", "66.249.79.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("35651", "10", "2016-08-13 22:32:14", "66.249.79.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("35652", "3", "2016-08-13 23:01:31", "5.9.112.6", "16");
INSERT INTO `wp_rg_form_view` VALUES("35653", "10", "2016-08-13 23:01:31", "5.9.112.6", "4");
INSERT INTO `wp_rg_form_view` VALUES("35654", "3", "2016-08-14 00:42:38", "66.249.79.148", "17");
INSERT INTO `wp_rg_form_view` VALUES("35655", "10", "2016-08-14 00:42:40", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("35656", "3", "2016-08-14 01:21:18", "192.243.55.132", "33");
INSERT INTO `wp_rg_form_view` VALUES("35657", "10", "2016-08-14 01:21:20", "192.243.55.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("35658", "3", "2016-08-14 02:16:52", "192.243.55.135", "44");
INSERT INTO `wp_rg_form_view` VALUES("35659", "3", "2016-08-14 02:16:52", "46.119.118.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("35660", "10", "2016-08-14 02:16:53", "192.243.55.135", "10");
INSERT INTO `wp_rg_form_view` VALUES("35661", "3", "2016-08-14 03:23:22", "46.119.112.163", "36");
INSERT INTO `wp_rg_form_view` VALUES("35662", "10", "2016-08-14 03:23:25", "46.119.112.163", "8");
INSERT INTO `wp_rg_form_view` VALUES("35663", "3", "2016-08-14 05:50:11", "66.249.66.148", "34");
INSERT INTO `wp_rg_form_view` VALUES("35664", "10", "2016-08-14 05:50:13", "66.249.66.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("35665", "3", "2016-08-14 06:01:35", "66.249.66.144", "59");
INSERT INTO `wp_rg_form_view` VALUES("35666", "10", "2016-08-14 06:01:35", "66.249.66.144", "14");
INSERT INTO `wp_rg_form_view` VALUES("35667", "9", "2016-08-14 06:53:02", "207.46.13.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("35668", "3", "2016-08-14 07:15:36", "157.55.39.78", "35");
INSERT INTO `wp_rg_form_view` VALUES("35669", "10", "2016-08-14 07:15:37", "157.55.39.78", "8");
INSERT INTO `wp_rg_form_view` VALUES("35670", "3", "2016-08-14 08:06:08", "108.180.147.80", "16");
INSERT INTO `wp_rg_form_view` VALUES("35671", "10", "2016-08-14 08:06:09", "108.180.147.80", "4");
INSERT INTO `wp_rg_form_view` VALUES("35672", "3", "2016-08-14 09:02:50", "40.77.167.94", "96");
INSERT INTO `wp_rg_form_view` VALUES("35673", "10", "2016-08-14 09:02:51", "40.77.167.94", "22");
INSERT INTO `wp_rg_form_view` VALUES("35674", "9", "2016-08-14 09:39:48", "207.46.13.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("35675", "3", "2016-08-14 10:47:02", "202.46.53.123", "8");
INSERT INTO `wp_rg_form_view` VALUES("35676", "10", "2016-08-14 10:47:04", "202.46.53.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("35677", "3", "2016-08-14 11:05:57", "40.77.167.52", "117");
INSERT INTO `wp_rg_form_view` VALUES("35678", "10", "2016-08-14 11:05:57", "40.77.167.52", "34");
INSERT INTO `wp_rg_form_view` VALUES("35679", "8", "2016-08-14 11:33:12", "68.180.229.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("35680", "3", "2016-08-14 12:07:58", "66.249.66.148", "251");
INSERT INTO `wp_rg_form_view` VALUES("35681", "10", "2016-08-14 12:07:59", "66.249.66.148", "62");
INSERT INTO `wp_rg_form_view` VALUES("35682", "11", "2016-08-14 12:46:22", "64.235.39.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("35683", "12", "2016-08-14 12:46:48", "64.235.39.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("35684", "2", "2016-08-14 12:47:18", "64.235.39.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("35685", "3", "2016-08-14 13:03:38", "144.76.71.83", "82");
INSERT INTO `wp_rg_form_view` VALUES("35686", "10", "2016-08-14 13:03:39", "144.76.71.83", "20");
INSERT INTO `wp_rg_form_view` VALUES("35687", "10", "2016-08-14 14:20:32", "40.77.167.52", "11");
INSERT INTO `wp_rg_form_view` VALUES("35688", "3", "2016-08-14 14:20:33", "40.77.167.52", "43");
INSERT INTO `wp_rg_form_view` VALUES("35689", "3", "2016-08-14 15:04:00", "192.243.55.134", "57");
INSERT INTO `wp_rg_form_view` VALUES("35690", "10", "2016-08-14 15:04:00", "192.243.55.134", "14");
INSERT INTO `wp_rg_form_view` VALUES("35691", "1", "2016-08-14 15:07:18", "178.32.12.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("35692", "3", "2016-08-14 16:37:36", "37.115.155.85", "68");
INSERT INTO `wp_rg_form_view` VALUES("35693", "10", "2016-08-14 16:37:37", "37.115.155.85", "16");
INSERT INTO `wp_rg_form_view` VALUES("35694", "3", "2016-08-14 17:06:22", "207.46.13.64", "83");
INSERT INTO `wp_rg_form_view` VALUES("35695", "10", "2016-08-14 17:06:22", "207.46.13.64", "20");
INSERT INTO `wp_rg_form_view` VALUES("35696", "3", "2016-08-14 18:45:40", "207.46.13.64", "226");
INSERT INTO `wp_rg_form_view` VALUES("35697", "10", "2016-08-14 18:45:42", "207.46.13.64", "56");
INSERT INTO `wp_rg_form_view` VALUES("35698", "11", "2016-08-14 18:51:20", "199.115.228.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("35699", "12", "2016-08-14 18:52:35", "199.115.228.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("35700", "2", "2016-08-14 18:53:32", "199.115.228.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("35701", "3", "2016-08-14 19:15:39", "40.77.167.94", "25");
INSERT INTO `wp_rg_form_view` VALUES("35702", "10", "2016-08-14 19:15:39", "40.77.167.94", "6");
INSERT INTO `wp_rg_form_view` VALUES("35703", "3", "2016-08-14 20:08:16", "207.46.13.64", "59");
INSERT INTO `wp_rg_form_view` VALUES("35704", "10", "2016-08-14 20:08:18", "207.46.13.64", "12");
INSERT INTO `wp_rg_form_view` VALUES("35705", "1", "2016-08-14 20:48:03", "89.33.71.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("35706", "3", "2016-08-14 21:04:21", "192.243.55.134", "117");
INSERT INTO `wp_rg_form_view` VALUES("35707", "10", "2016-08-14 21:31:04", "68.180.229.121", "28");
INSERT INTO `wp_rg_form_view` VALUES("35708", "2", "2016-08-14 21:46:34", "167.114.172.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("35709", "12", "2016-08-14 21:46:47", "167.114.172.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("35710", "3", "2016-08-14 22:05:04", "207.46.13.64", "73");
INSERT INTO `wp_rg_form_view` VALUES("35711", "10", "2016-08-14 22:05:05", "207.46.13.64", "18");
INSERT INTO `wp_rg_form_view` VALUES("35712", "1", "2016-08-14 22:26:56", "104.168.55.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("35713", "3", "2016-08-14 23:01:39", "96.50.21.88", "81");
INSERT INTO `wp_rg_form_view` VALUES("35714", "3", "2016-08-14 23:01:39", "96.50.21.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("35715", "10", "2016-08-14 23:01:47", "96.50.21.88", "20");
INSERT INTO `wp_rg_form_view` VALUES("35716", "10", "2016-08-14 23:01:47", "96.50.21.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("35717", "11", "2016-08-14 23:04:47", "96.50.21.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("35718", "10", "2016-08-15 00:27:08", "40.77.167.94", "5");
INSERT INTO `wp_rg_form_view` VALUES("35719", "3", "2016-08-15 00:27:09", "40.77.167.94", "17");
INSERT INTO `wp_rg_form_view` VALUES("35720", "3", "2016-08-15 01:04:16", "178.137.86.253", "76");
INSERT INTO `wp_rg_form_view` VALUES("35721", "3", "2016-08-15 01:04:16", "178.137.86.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("35722", "3", "2016-08-15 01:04:16", "178.137.86.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("35723", "10", "2016-08-15 01:04:19", "178.137.86.253", "19");
INSERT INTO `wp_rg_form_view` VALUES("35724", "8", "2016-08-15 01:29:11", "207.46.13.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("35725", "5", "2016-08-15 02:13:44", "40.77.167.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("35726", "3", "2016-08-15 02:13:46", "40.77.167.94", "16");
INSERT INTO `wp_rg_form_view` VALUES("35727", "10", "2016-08-15 02:13:48", "40.77.167.94", "4");
INSERT INTO `wp_rg_form_view` VALUES("35728", "3", "2016-08-15 03:37:43", "66.249.66.148", "32");
INSERT INTO `wp_rg_form_view` VALUES("35729", "10", "2016-08-15 03:37:45", "66.249.66.148", "9");
INSERT INTO `wp_rg_form_view` VALUES("35730", "3", "2016-08-15 04:06:10", "5.9.112.6", "50");
INSERT INTO `wp_rg_form_view` VALUES("35731", "10", "2016-08-15 04:06:11", "5.9.112.6", "12");
INSERT INTO `wp_rg_form_view` VALUES("35732", "6", "2016-08-15 04:08:42", "40.77.167.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("35733", "3", "2016-08-15 05:32:00", "192.243.55.132", "26");
INSERT INTO `wp_rg_form_view` VALUES("35734", "10", "2016-08-15 05:32:01", "192.243.55.132", "6");
INSERT INTO `wp_rg_form_view` VALUES("35735", "3", "2016-08-15 06:11:03", "207.46.13.64", "24");
INSERT INTO `wp_rg_form_view` VALUES("35736", "10", "2016-08-15 06:11:05", "207.46.13.64", "7");
INSERT INTO `wp_rg_form_view` VALUES("35737", "3", "2016-08-15 07:00:13", "66.249.66.148", "91");
INSERT INTO `wp_rg_form_view` VALUES("35738", "10", "2016-08-15 07:00:13", "66.249.66.148", "35");
INSERT INTO `wp_rg_form_view` VALUES("35739", "3", "2016-08-15 08:30:20", "66.249.66.144", "26");
INSERT INTO `wp_rg_form_view` VALUES("35740", "10", "2016-08-15 08:30:22", "66.249.66.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("35741", "3", "2016-08-15 09:08:08", "68.180.229.215", "17");
INSERT INTO `wp_rg_form_view` VALUES("35742", "10", "2016-08-15 09:08:09", "68.180.229.215", "4");
INSERT INTO `wp_rg_form_view` VALUES("35743", "3", "2016-08-15 10:12:00", "207.46.13.22", "95");
INSERT INTO `wp_rg_form_view` VALUES("35744", "10", "2016-08-15 10:12:02", "207.46.13.22", "21");
INSERT INTO `wp_rg_form_view` VALUES("35745", "3", "2016-08-15 11:08:06", "207.46.13.22", "16");
INSERT INTO `wp_rg_form_view` VALUES("35746", "10", "2016-08-15 11:08:07", "207.46.13.22", "4");
INSERT INTO `wp_rg_form_view` VALUES("35747", "1", "2016-08-15 12:02:56", "62.210.111.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("35748", "3", "2016-08-15 12:02:57", "62.210.111.75", "57");
INSERT INTO `wp_rg_form_view` VALUES("35749", "10", "2016-08-15 12:02:58", "62.210.111.75", "16");
INSERT INTO `wp_rg_form_view` VALUES("35750", "3", "2016-08-15 13:06:22", "207.46.13.22", "33");
INSERT INTO `wp_rg_form_view` VALUES("35751", "10", "2016-08-15 13:06:23", "207.46.13.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("35752", "8", "2016-08-15 13:29:55", "66.249.66.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("35753", "3", "2016-08-15 14:01:42", "66.249.66.148", "75");
INSERT INTO `wp_rg_form_view` VALUES("35754", "10", "2016-08-15 14:01:42", "66.249.66.148", "19");
INSERT INTO `wp_rg_form_view` VALUES("35755", "3", "2016-08-15 15:15:39", "66.249.66.144", "93");
INSERT INTO `wp_rg_form_view` VALUES("35756", "10", "2016-08-15 15:15:40", "66.249.66.144", "22");
INSERT INTO `wp_rg_form_view` VALUES("35757", "3", "2016-08-15 16:22:28", "207.46.13.137", "58");
INSERT INTO `wp_rg_form_view` VALUES("35758", "10", "2016-08-15 16:22:45", "5.9.94.207", "14");
INSERT INTO `wp_rg_form_view` VALUES("35759", "10", "2016-08-15 16:22:45", "207.46.13.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("35760", "3", "2016-08-15 17:01:21", "96.50.28.249", "187");
INSERT INTO `wp_rg_form_view` VALUES("35761", "10", "2016-08-15 17:01:22", "96.50.28.249", "50");
INSERT INTO `wp_rg_form_view` VALUES("35762", "1", "2016-08-15 17:07:22", "104.143.27.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("35763", "3", "2016-08-15 18:14:16", "207.46.13.64", "58");
INSERT INTO `wp_rg_form_view` VALUES("35764", "10", "2016-08-15 18:14:18", "207.46.13.64", "14");
INSERT INTO `wp_rg_form_view` VALUES("35765", "3", "2016-08-15 19:05:07", "207.46.13.22", "45");
INSERT INTO `wp_rg_form_view` VALUES("35766", "10", "2016-08-15 19:05:08", "207.46.13.22", "10");
INSERT INTO `wp_rg_form_view` VALUES("35767", "3", "2016-08-15 20:04:14", "192.243.55.130", "40");
INSERT INTO `wp_rg_form_view` VALUES("35768", "10", "2016-08-15 20:04:15", "192.243.55.130", "12");
INSERT INTO `wp_rg_form_view` VALUES("35769", "9", "2016-08-15 20:26:27", "68.180.228.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("35770", "3", "2016-08-15 21:00:58", "142.31.173.37", "99");
INSERT INTO `wp_rg_form_view` VALUES("35771", "10", "2016-08-15 21:00:59", "142.31.173.37", "26");
INSERT INTO `wp_rg_form_view` VALUES("35772", "10", "2016-08-15 22:03:49", "51.255.65.12", "16");
INSERT INTO `wp_rg_form_view` VALUES("35773", "3", "2016-08-15 22:03:49", "51.255.65.12", "59");
INSERT INTO `wp_rg_form_view` VALUES("35774", "10", "2016-08-15 23:03:32", "207.46.13.22", "5");
INSERT INTO `wp_rg_form_view` VALUES("35775", "3", "2016-08-15 23:03:32", "207.46.13.22", "16");
INSERT INTO `wp_rg_form_view` VALUES("35776", "3", "2016-08-16 00:24:58", "164.132.161.64", "33");
INSERT INTO `wp_rg_form_view` VALUES("35777", "10", "2016-08-16 00:24:59", "164.132.161.64", "8");
INSERT INTO `wp_rg_form_view` VALUES("35778", "3", "2016-08-16 01:11:41", "40.77.167.52", "8");
INSERT INTO `wp_rg_form_view` VALUES("35779", "10", "2016-08-16 01:11:44", "40.77.167.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("35780", "3", "2016-08-16 02:22:50", "46.118.158.81", "110");
INSERT INTO `wp_rg_form_view` VALUES("35781", "10", "2016-08-16 02:22:52", "46.118.158.81", "28");
INSERT INTO `wp_rg_form_view` VALUES("35782", "10", "2016-08-16 03:08:22", "66.249.79.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("35783", "3", "2016-08-16 03:08:22", "66.249.79.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("35784", "3", "2016-08-16 04:03:10", "207.46.13.137", "50");
INSERT INTO `wp_rg_form_view` VALUES("35785", "10", "2016-08-16 04:03:11", "207.46.13.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("35786", "8", "2016-08-16 04:22:32", "51.255.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("35787", "3", "2016-08-16 05:04:19", "75.154.240.57", "24");
INSERT INTO `wp_rg_form_view` VALUES("35788", "10", "2016-08-16 05:04:19", "75.154.240.57", "6");
INSERT INTO `wp_rg_form_view` VALUES("35789", "3", "2016-08-16 07:09:03", "207.46.13.64", "44");
INSERT INTO `wp_rg_form_view` VALUES("35790", "10", "2016-08-16 07:09:05", "207.46.13.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("35791", "3", "2016-08-16 08:25:40", "207.46.13.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("35792", "10", "2016-08-16 08:25:44", "207.46.13.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("35793", "3", "2016-08-16 09:42:48", "46.119.116.73", "26");
INSERT INTO `wp_rg_form_view` VALUES("35794", "3", "2016-08-16 09:42:48", "46.119.116.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("35795", "10", "2016-08-16 09:42:54", "46.119.116.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("35796", "3", "2016-08-16 10:06:24", "77.75.79.54", "8");
INSERT INTO `wp_rg_form_view` VALUES("35797", "10", "2016-08-16 10:06:25", "77.75.79.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("35798", "3", "2016-08-16 11:26:37", "46.119.116.252", "82");
INSERT INTO `wp_rg_form_view` VALUES("35799", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35800", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35801", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35802", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35803", "3", "2016-08-16 11:26:37", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35804", "10", "2016-08-16 11:26:40", "46.119.116.252", "20");
INSERT INTO `wp_rg_form_view` VALUES("35805", "11", "2016-08-16 11:34:23", "151.80.31.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("35806", "3", "2016-08-16 12:15:26", "104.143.28.200", "101");
INSERT INTO `wp_rg_form_view` VALUES("35807", "10", "2016-08-16 12:15:26", "104.143.28.200", "24");
INSERT INTO `wp_rg_form_view` VALUES("35808", "8", "2016-08-16 12:18:51", "207.46.13.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("35809", "5", "2016-08-16 13:06:38", "151.80.31.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("35810", "3", "2016-08-16 13:06:39", "151.80.31.183", "25");
INSERT INTO `wp_rg_form_view` VALUES("35811", "10", "2016-08-16 13:06:44", "151.80.31.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("35812", "3", "2016-08-16 14:40:32", "134.249.65.218", "34");
INSERT INTO `wp_rg_form_view` VALUES("35813", "10", "2016-08-16 14:40:35", "134.249.65.218", "9");
INSERT INTO `wp_rg_form_view` VALUES("35814", "6", "2016-08-16 15:09:02", "68.180.230.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("35815", "3", "2016-08-16 15:09:02", "68.180.230.185", "51");
INSERT INTO `wp_rg_form_view` VALUES("35816", "10", "2016-08-16 15:09:03", "68.180.230.185", "12");
INSERT INTO `wp_rg_form_view` VALUES("35817", "3", "2016-08-16 16:05:46", "46.119.116.73", "113");
INSERT INTO `wp_rg_form_view` VALUES("35818", "10", "2016-08-16 16:05:46", "46.119.116.73", "27");
INSERT INTO `wp_rg_form_view` VALUES("35819", "3", "2016-08-16 17:15:13", "217.69.133.229", "27");
INSERT INTO `wp_rg_form_view` VALUES("35820", "10", "2016-08-16 17:15:16", "217.69.133.229", "4");
INSERT INTO `wp_rg_form_view` VALUES("35821", "10", "2016-08-16 18:08:36", "68.180.230.185", "7");
INSERT INTO `wp_rg_form_view` VALUES("35822", "3", "2016-08-16 18:08:41", "68.180.230.185", "25");
INSERT INTO `wp_rg_form_view` VALUES("35823", "3", "2016-08-16 20:22:34", "68.180.230.185", "25");
INSERT INTO `wp_rg_form_view` VALUES("35824", "10", "2016-08-16 20:22:35", "68.180.230.185", "6");
INSERT INTO `wp_rg_form_view` VALUES("35825", "3", "2016-08-16 21:26:57", "104.143.27.163", "84");
INSERT INTO `wp_rg_form_view` VALUES("35826", "10", "2016-08-16 21:26:59", "104.143.27.163", "20");
INSERT INTO `wp_rg_form_view` VALUES("35827", "3", "2016-08-16 22:05:12", "217.69.133.232", "119");
INSERT INTO `wp_rg_form_view` VALUES("35828", "10", "2016-08-16 22:05:13", "217.69.133.232", "30");
INSERT INTO `wp_rg_form_view` VALUES("35829", "1", "2016-08-16 22:36:46", "178.32.80.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("35830", "12", "2016-08-16 23:41:39", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("35831", "3", "2016-08-16 23:41:47", "217.69.133.232", "23");
INSERT INTO `wp_rg_form_view` VALUES("35832", "3", "2016-08-16 23:41:47", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("35833", "10", "2016-08-16 23:41:47", "217.69.133.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("35834", "10", "2016-08-17 00:38:46", "106.120.160.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("35835", "3", "2016-08-17 00:38:49", "106.120.160.119", "16");
INSERT INTO `wp_rg_form_view` VALUES("35836", "10", "2016-08-17 01:19:04", "217.69.133.230", "15");
INSERT INTO `wp_rg_form_view` VALUES("35837", "3", "2016-08-17 01:19:08", "217.69.133.230", "70");
INSERT INTO `wp_rg_form_view` VALUES("35838", "3", "2016-08-17 02:14:44", "5.9.145.132", "91");
INSERT INTO `wp_rg_form_view` VALUES("35839", "10", "2016-08-17 02:14:54", "5.9.145.132", "20");
INSERT INTO `wp_rg_form_view` VALUES("35840", "7", "2016-08-17 02:53:36", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("35841", "3", "2016-08-17 03:17:35", "207.46.13.64", "33");
INSERT INTO `wp_rg_form_view` VALUES("35842", "10", "2016-08-17 03:17:36", "207.46.13.64", "8");
INSERT INTO `wp_rg_form_view` VALUES("35843", "3", "2016-08-17 04:04:16", "207.46.13.64", "40");
INSERT INTO `wp_rg_form_view` VALUES("35844", "10", "2016-08-17 04:04:17", "207.46.13.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("35845", "3", "2016-08-17 05:00:52", "164.132.161.81", "16");
INSERT INTO `wp_rg_form_view` VALUES("35846", "10", "2016-08-17 05:00:55", "164.132.161.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("35847", "3", "2016-08-17 06:02:21", "202.46.48.144", "49");
INSERT INTO `wp_rg_form_view` VALUES("35848", "10", "2016-08-17 06:02:35", "202.46.48.144", "13");
INSERT INTO `wp_rg_form_view` VALUES("35849", "3", "2016-08-17 07:00:40", "40.77.167.52", "93");
INSERT INTO `wp_rg_form_view` VALUES("35850", "10", "2016-08-17 07:00:41", "40.77.167.52", "22");
INSERT INTO `wp_rg_form_view` VALUES("35851", "11", "2016-08-17 07:42:31", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("35852", "9", "2016-08-17 07:42:54", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("35853", "3", "2016-08-17 08:01:18", "199.21.99.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("35854", "10", "2016-08-17 08:01:18", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("35855", "3", "2016-08-17 09:01:24", "188.215.23.203", "157");
INSERT INTO `wp_rg_form_view` VALUES("35856", "10", "2016-08-17 09:01:25", "188.215.23.203", "38");
INSERT INTO `wp_rg_form_view` VALUES("35857", "12", "2016-08-17 09:07:45", "207.46.13.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("35858", "3", "2016-08-17 10:32:37", "207.46.13.22", "34");
INSERT INTO `wp_rg_form_view` VALUES("35859", "10", "2016-08-17 10:32:40", "207.46.13.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("35860", "6", "2016-08-17 10:53:42", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("35861", "3", "2016-08-17 11:33:56", "51.255.65.5", "17");
INSERT INTO `wp_rg_form_view` VALUES("35862", "10", "2016-08-17 11:34:03", "51.255.65.5", "4");
INSERT INTO `wp_rg_form_view` VALUES("35863", "6", "2016-08-17 12:03:21", "68.180.230.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("35864", "3", "2016-08-17 12:03:21", "68.180.230.185", "58");
INSERT INTO `wp_rg_form_view` VALUES("35865", "10", "2016-08-17 12:03:21", "68.180.230.185", "14");
INSERT INTO `wp_rg_form_view` VALUES("35866", "8", "2016-08-17 12:28:04", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("35867", "3", "2016-08-17 13:00:29", "68.180.230.185", "69");
INSERT INTO `wp_rg_form_view` VALUES("35868", "10", "2016-08-17 13:00:31", "68.180.230.185", "16");
INSERT INTO `wp_rg_form_view` VALUES("35869", "3", "2016-08-17 14:03:38", "68.180.230.185", "44");
INSERT INTO `wp_rg_form_view` VALUES("35870", "10", "2016-08-17 14:03:44", "68.180.230.185", "10");
INSERT INTO `wp_rg_form_view` VALUES("35871", "9", "2016-08-17 14:04:22", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("35872", "3", "2016-08-17 15:31:47", "151.80.31.182", "81");
INSERT INTO `wp_rg_form_view` VALUES("35873", "10", "2016-08-17 15:31:51", "151.80.31.182", "18");
INSERT INTO `wp_rg_form_view` VALUES("35874", "3", "2016-08-17 16:05:16", "68.180.230.185", "26");
INSERT INTO `wp_rg_form_view` VALUES("35875", "10", "2016-08-17 16:05:17", "68.180.230.185", "6");
INSERT INTO `wp_rg_form_view` VALUES("35876", "3", "2016-08-17 17:16:33", "217.69.133.230", "69");
INSERT INTO `wp_rg_form_view` VALUES("35877", "10", "2016-08-17 17:16:35", "217.69.133.230", "16");
INSERT INTO `wp_rg_form_view` VALUES("35878", "3", "2016-08-17 18:19:34", "66.249.79.148", "50");
INSERT INTO `wp_rg_form_view` VALUES("35879", "10", "2016-08-17 18:19:34", "66.249.79.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("35880", "6", "2016-08-17 18:53:10", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("35881", "3", "2016-08-17 19:12:16", "68.180.231.44", "58");
INSERT INTO `wp_rg_form_view` VALUES("35882", "10", "2016-08-17 19:12:17", "68.180.231.44", "14");
INSERT INTO `wp_rg_form_view` VALUES("35883", "3", "2016-08-17 20:07:45", "46.118.159.110", "147");
INSERT INTO `wp_rg_form_view` VALUES("35884", "10", "2016-08-17 20:07:47", "46.118.159.110", "35");
INSERT INTO `wp_rg_form_view` VALUES("35885", "10", "2016-08-17 20:07:47", "46.118.159.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("35886", "3", "2016-08-17 21:00:30", "68.180.231.44", "32");
INSERT INTO `wp_rg_form_view` VALUES("35887", "10", "2016-08-17 21:00:31", "68.180.231.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("35888", "3", "2016-08-17 22:05:11", "217.69.133.230", "126");
INSERT INTO `wp_rg_form_view` VALUES("35889", "10", "2016-08-17 22:05:23", "217.69.133.232", "29");
INSERT INTO `wp_rg_form_view` VALUES("35890", "10", "2016-08-17 22:05:23", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("35891", "6", "2016-08-17 22:06:48", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("35892", "12", "2016-08-17 22:48:04", "164.132.161.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("35893", "3", "2016-08-17 23:15:44", "46.119.117.90", "70");
INSERT INTO `wp_rg_form_view` VALUES("35894", "3", "2016-08-17 23:15:44", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("35895", "3", "2016-08-17 23:15:44", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("35896", "10", "2016-08-17 23:15:49", "46.119.117.90", "14");
INSERT INTO `wp_rg_form_view` VALUES("35897", "3", "2016-08-18 00:04:17", "40.77.167.52", "41");
INSERT INTO `wp_rg_form_view` VALUES("35898", "10", "2016-08-18 00:04:17", "40.77.167.52", "10");
INSERT INTO `wp_rg_form_view` VALUES("35899", "1", "2016-08-18 00:04:36", "104.227.179.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("35900", "3", "2016-08-18 01:16:24", "217.69.133.230", "76");
INSERT INTO `wp_rg_form_view` VALUES("35901", "10", "2016-08-18 01:16:31", "217.69.133.69", "19");
INSERT INTO `wp_rg_form_view` VALUES("35902", "10", "2016-08-18 01:16:31", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("35903", "2", "2016-08-18 01:54:24", "164.132.161.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("35904", "3", "2016-08-18 02:15:27", "66.249.79.148", "68");
INSERT INTO `wp_rg_form_view` VALUES("35905", "10", "2016-08-18 02:15:28", "66.249.79.148", "16");
INSERT INTO `wp_rg_form_view` VALUES("35906", "3", "2016-08-18 04:04:41", "207.46.13.137", "147");
INSERT INTO `wp_rg_form_view` VALUES("35907", "10", "2016-08-18 04:04:43", "207.46.13.137", "28");
INSERT INTO `wp_rg_form_view` VALUES("35908", "3", "2016-08-18 05:48:32", "40.77.167.52", "180");
INSERT INTO `wp_rg_form_view` VALUES("35909", "10", "2016-08-18 05:48:35", "40.77.167.52", "44");
INSERT INTO `wp_rg_form_view` VALUES("35910", "11", "2016-08-18 05:57:01", "45.55.229.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("35911", "12", "2016-08-18 05:57:01", "45.55.229.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("35912", "2", "2016-08-18 05:57:02", "45.55.229.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("35913", "3", "2016-08-18 06:04:42", "217.69.133.228", "34");
INSERT INTO `wp_rg_form_view` VALUES("35914", "10", "2016-08-18 06:04:44", "217.69.133.233", "8");
INSERT INTO `wp_rg_form_view` VALUES("35915", "3", "2016-08-18 07:01:21", "37.156.74.52", "85");
INSERT INTO `wp_rg_form_view` VALUES("35916", "10", "2016-08-18 07:01:21", "37.156.74.52", "20");
INSERT INTO `wp_rg_form_view` VALUES("35917", "3", "2016-08-18 08:20:34", "66.249.79.148", "84");
INSERT INTO `wp_rg_form_view` VALUES("35918", "10", "2016-08-18 08:20:37", "66.249.79.148", "18");
INSERT INTO `wp_rg_form_view` VALUES("35919", "3", "2016-08-18 09:13:40", "202.46.53.156", "421");
INSERT INTO `wp_rg_form_view` VALUES("35920", "10", "2016-08-18 09:13:46", "202.46.53.156", "103");
INSERT INTO `wp_rg_form_view` VALUES("35921", "6", "2016-08-18 09:17:33", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("35922", "2", "2016-08-18 09:23:21", "109.177.4.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("35923", "11", "2016-08-18 09:23:23", "109.177.4.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("35924", "3", "2016-08-18 10:13:12", "134.249.65.218", "68");
INSERT INTO `wp_rg_form_view` VALUES("35925", "3", "2016-08-18 10:13:12", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35926", "3", "2016-08-18 10:13:12", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35927", "10", "2016-08-18 10:13:16", "134.249.65.218", "14");
INSERT INTO `wp_rg_form_view` VALUES("35928", "10", "2016-08-18 10:13:16", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35929", "10", "2016-08-18 10:13:16", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("35930", "9", "2016-08-18 10:52:21", "157.55.39.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("35931", "3", "2016-08-18 11:25:57", "37.156.74.85", "60");
INSERT INTO `wp_rg_form_view` VALUES("35932", "10", "2016-08-18 11:26:01", "37.156.74.85", "14");
INSERT INTO `wp_rg_form_view` VALUES("35933", "3", "2016-08-18 12:05:22", "62.210.162.184", "105");
INSERT INTO `wp_rg_form_view` VALUES("35934", "10", "2016-08-18 12:05:22", "62.210.162.184", "24");
INSERT INTO `wp_rg_form_view` VALUES("35935", "1", "2016-08-18 12:23:44", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("35936", "3", "2016-08-18 13:00:37", "192.243.55.137", "83");
INSERT INTO `wp_rg_form_view` VALUES("35937", "10", "2016-08-18 13:00:37", "192.243.55.137", "20");
INSERT INTO `wp_rg_form_view` VALUES("35938", "3", "2016-08-18 14:05:23", "217.69.133.232", "67");
INSERT INTO `wp_rg_form_view` VALUES("35939", "10", "2016-08-18 14:05:23", "217.69.133.231", "17");
INSERT INTO `wp_rg_form_view` VALUES("35940", "3", "2016-08-18 15:14:58", "164.132.161.44", "58");
INSERT INTO `wp_rg_form_view` VALUES("35941", "10", "2016-08-18 15:14:58", "164.132.161.44", "14");
INSERT INTO `wp_rg_form_view` VALUES("35942", "6", "2016-08-18 15:15:08", "207.46.13.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("35943", "3", "2016-08-18 16:18:54", "68.180.231.44", "34");
INSERT INTO `wp_rg_form_view` VALUES("35944", "10", "2016-08-18 16:18:59", "68.180.231.44", "7");
INSERT INTO `wp_rg_form_view` VALUES("35945", "3", "2016-08-18 17:11:44", "164.132.161.97", "138");
INSERT INTO `wp_rg_form_view` VALUES("35946", "10", "2016-08-18 17:11:47", "164.132.161.97", "37");
INSERT INTO `wp_rg_form_view` VALUES("35947", "3", "2016-08-18 18:01:31", "46.118.159.110", "200");
INSERT INTO `wp_rg_form_view` VALUES("35948", "10", "2016-08-18 18:01:32", "46.118.159.110", "46");
INSERT INTO `wp_rg_form_view` VALUES("35949", "3", "2016-08-18 19:46:09", "157.55.39.5", "16");
INSERT INTO `wp_rg_form_view` VALUES("35950", "10", "2016-08-18 19:46:10", "157.55.39.5", "4");
INSERT INTO `wp_rg_form_view` VALUES("35951", "6", "2016-08-18 20:46:06", "51.255.65.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("35952", "3", "2016-08-18 20:46:10", "51.255.65.56", "17");
INSERT INTO `wp_rg_form_view` VALUES("35953", "10", "2016-08-18 20:46:10", "51.255.65.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("35954", "3", "2016-08-18 21:13:48", "202.46.50.185", "76");
INSERT INTO `wp_rg_form_view` VALUES("35955", "10", "2016-08-18 21:13:53", "202.46.50.185", "16");
INSERT INTO `wp_rg_form_view` VALUES("35956", "3", "2016-08-18 22:13:54", "207.194.133.9", "82");
INSERT INTO `wp_rg_form_view` VALUES("35957", "10", "2016-08-18 22:13:57", "207.194.133.9", "20");
INSERT INTO `wp_rg_form_view` VALUES("35958", "11", "2016-08-18 22:26:17", "68.180.231.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("35959", "3", "2016-08-18 23:09:51", "68.180.231.44", "70");
INSERT INTO `wp_rg_form_view` VALUES("35960", "10", "2016-08-18 23:09:51", "68.180.231.44", "14");
INSERT INTO `wp_rg_form_view` VALUES("35961", "3", "2016-08-19 00:14:23", "220.181.108.158", "25");
INSERT INTO `wp_rg_form_view` VALUES("35962", "10", "2016-08-19 00:14:35", "220.181.108.158", "6");
INSERT INTO `wp_rg_form_view` VALUES("35963", "3", "2016-08-19 01:02:51", "62.210.162.184", "68");
INSERT INTO `wp_rg_form_view` VALUES("35964", "10", "2016-08-19 01:02:51", "62.210.162.184", "16");
INSERT INTO `wp_rg_form_view` VALUES("35965", "3", "2016-08-19 02:06:32", "24.68.17.97", "98");
INSERT INTO `wp_rg_form_view` VALUES("35966", "10", "2016-08-19 02:06:32", "24.68.17.97", "24");
INSERT INTO `wp_rg_form_view` VALUES("35967", "1", "2016-08-19 02:07:31", "107.152.186.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("35968", "2", "2016-08-19 02:50:07", "221.133.42.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("35969", "3", "2016-08-19 03:12:29", "185.53.44.99", "41");
INSERT INTO `wp_rg_form_view` VALUES("35970", "10", "2016-08-19 03:12:31", "185.53.44.99", "10");
INSERT INTO `wp_rg_form_view` VALUES("35971", "9", "2016-08-19 03:46:55", "40.77.167.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("35972", "3", "2016-08-19 04:04:09", "185.53.44.149", "16");
INSERT INTO `wp_rg_form_view` VALUES("35973", "10", "2016-08-19 04:04:10", "185.53.44.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("35974", "3", "2016-08-19 05:04:32", "40.77.167.52", "1607");
INSERT INTO `wp_rg_form_view` VALUES("35975", "10", "2016-08-19 05:04:34", "40.77.167.52", "495");
INSERT INTO `wp_rg_form_view` VALUES("35976", "1", "2016-08-19 05:43:59", "45.55.140.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("35977", "11", "2016-08-19 05:44:25", "45.55.140.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("35978", "6", "2016-08-19 05:51:08", "192.243.55.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("35979", "12", "2016-08-19 05:55:30", "45.55.140.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("35980", "3", "2016-08-19 06:00:25", "45.55.140.153", "3238");
INSERT INTO `wp_rg_form_view` VALUES("35981", "10", "2016-08-19 06:00:27", "45.55.140.153", "894");
INSERT INTO `wp_rg_form_view` VALUES("35982", "6", "2016-08-19 06:04:45", "45.55.140.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("35983", "9", "2016-08-19 06:13:45", "45.55.140.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("35984", "2", "2016-08-19 06:48:06", "45.55.140.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("35985", "3", "2016-08-19 07:00:02", "45.55.140.153", "321");
INSERT INTO `wp_rg_form_view` VALUES("35986", "10", "2016-08-19 07:00:04", "45.55.140.153", "95");
INSERT INTO `wp_rg_form_view` VALUES("35987", "8", "2016-08-19 07:01:52", "45.55.140.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("35988", "9", "2016-08-19 07:07:40", "157.55.39.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("35989", "6", "2016-08-19 07:28:10", "207.46.13.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("35990", "3", "2016-08-19 08:14:23", "46.119.116.252", "41");
INSERT INTO `wp_rg_form_view` VALUES("35991", "3", "2016-08-19 08:14:23", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35992", "3", "2016-08-19 08:14:23", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35993", "10", "2016-08-19 08:14:26", "46.119.116.252", "8");
INSERT INTO `wp_rg_form_view` VALUES("35994", "10", "2016-08-19 08:14:26", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35995", "10", "2016-08-19 08:14:26", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("35996", "6", "2016-08-19 09:05:28", "207.46.13.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("35997", "3", "2016-08-19 09:05:29", "207.46.13.137", "98");
INSERT INTO `wp_rg_form_view` VALUES("35998", "10", "2016-08-19 09:05:29", "207.46.13.137", "34");
INSERT INTO `wp_rg_form_view` VALUES("35999", "2", "2016-08-19 09:25:17", "188.166.19.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("36000", "3", "2016-08-19 10:08:52", "157.55.39.5", "141");
INSERT INTO `wp_rg_form_view` VALUES("36001", "10", "2016-08-19 10:08:54", "157.55.39.5", "32");
INSERT INTO `wp_rg_form_view` VALUES("36002", "1", "2016-08-19 10:15:08", "192.243.55.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("36003", "3", "2016-08-19 11:06:59", "68.180.231.44", "50");
INSERT INTO `wp_rg_form_view` VALUES("36004", "10", "2016-08-19 11:07:00", "68.180.231.44", "12");
INSERT INTO `wp_rg_form_view` VALUES("36005", "3", "2016-08-19 12:12:20", "51.255.65.38", "52");
INSERT INTO `wp_rg_form_view` VALUES("36006", "10", "2016-08-19 12:12:23", "51.255.65.38", "12");
INSERT INTO `wp_rg_form_view` VALUES("36007", "8", "2016-08-19 12:19:31", "192.243.55.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("36008", "3", "2016-08-19 13:12:55", "202.46.51.84", "51");
INSERT INTO `wp_rg_form_view` VALUES("36009", "10", "2016-08-19 13:12:58", "202.46.51.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("36010", "3", "2016-08-19 14:20:05", "46.119.116.252", "61");
INSERT INTO `wp_rg_form_view` VALUES("36011", "10", "2016-08-19 14:20:06", "46.119.116.252", "14");
INSERT INTO `wp_rg_form_view` VALUES("36012", "3", "2016-08-19 15:49:08", "192.243.55.135", "9");
INSERT INTO `wp_rg_form_view` VALUES("36013", "10", "2016-08-19 15:49:11", "192.243.55.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("36014", "3", "2016-08-19 16:16:50", "46.4.32.75", "125");
INSERT INTO `wp_rg_form_view` VALUES("36015", "10", "2016-08-19 16:16:57", "46.4.32.75", "30");
INSERT INTO `wp_rg_form_view` VALUES("36016", "3", "2016-08-19 17:00:35", "46.118.159.110", "110");
INSERT INTO `wp_rg_form_view` VALUES("36017", "10", "2016-08-19 17:00:39", "46.118.159.110", "23");
INSERT INTO `wp_rg_form_view` VALUES("36018", "10", "2016-08-19 17:00:39", "46.118.159.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("36019", "11", "2016-08-19 17:27:58", "192.243.55.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("36020", "3", "2016-08-19 18:26:53", "96.54.213.145", "90");
INSERT INTO `wp_rg_form_view` VALUES("36021", "10", "2016-08-19 18:26:57", "96.54.213.145", "23");
INSERT INTO `wp_rg_form_view` VALUES("36022", "1", "2016-08-19 18:38:14", "96.54.213.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("36023", "3", "2016-08-19 19:00:14", "207.46.13.64", "85");
INSERT INTO `wp_rg_form_view` VALUES("36024", "10", "2016-08-19 19:00:15", "207.46.13.64", "20");
INSERT INTO `wp_rg_form_view` VALUES("36025", "3", "2016-08-19 20:03:49", "164.132.161.14", "58");
INSERT INTO `wp_rg_form_view` VALUES("36026", "10", "2016-08-19 20:03:52", "164.132.161.14", "14");
INSERT INTO `wp_rg_form_view` VALUES("36027", "5", "2016-08-19 20:39:14", "207.46.13.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("36028", "3", "2016-08-19 21:02:20", "157.55.39.5", "60");
INSERT INTO `wp_rg_form_view` VALUES("36029", "10", "2016-08-19 21:02:21", "157.55.39.5", "16");
INSERT INTO `wp_rg_form_view` VALUES("36030", "3", "2016-08-19 22:07:47", "207.46.13.64", "33");
INSERT INTO `wp_rg_form_view` VALUES("36031", "10", "2016-08-19 22:07:48", "207.46.13.64", "8");
INSERT INTO `wp_rg_form_view` VALUES("36032", "3", "2016-08-19 23:01:35", "157.55.39.5", "45");
INSERT INTO `wp_rg_form_view` VALUES("36033", "10", "2016-08-19 23:01:51", "157.55.39.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("36034", "3", "2016-08-20 00:03:08", "184.66.54.75", "81");
INSERT INTO `wp_rg_form_view` VALUES("36035", "10", "2016-08-20 00:03:09", "184.66.54.75", "18");
INSERT INTO `wp_rg_form_view` VALUES("36036", "10", "2016-08-20 01:33:19", "207.46.13.137", "7");
INSERT INTO `wp_rg_form_view` VALUES("36037", "3", "2016-08-20 01:33:22", "207.46.13.137", "24");
INSERT INTO `wp_rg_form_view` VALUES("36038", "3", "2016-08-20 02:20:42", "207.46.13.137", "24");
INSERT INTO `wp_rg_form_view` VALUES("36039", "10", "2016-08-20 02:20:43", "207.46.13.137", "6");
INSERT INTO `wp_rg_form_view` VALUES("36040", "3", "2016-08-20 03:19:35", "151.80.31.100", "107");
INSERT INTO `wp_rg_form_view` VALUES("36041", "10", "2016-08-20 03:19:37", "151.80.31.100", "24");
INSERT INTO `wp_rg_form_view` VALUES("36042", "3", "2016-08-20 04:32:56", "40.77.167.52", "36");
INSERT INTO `wp_rg_form_view` VALUES("36043", "10", "2016-08-20 04:32:58", "40.77.167.52", "8");
INSERT INTO `wp_rg_form_view` VALUES("36044", "3", "2016-08-20 05:12:15", "66.249.79.112", "42");
INSERT INTO `wp_rg_form_view` VALUES("36045", "10", "2016-08-20 05:12:18", "66.249.79.112", "9");
INSERT INTO `wp_rg_form_view` VALUES("36046", "3", "2016-08-20 06:19:13", "51.255.65.62", "40");
INSERT INTO `wp_rg_form_view` VALUES("36047", "10", "2016-08-20 06:19:17", "51.255.65.62", "10");
INSERT INTO `wp_rg_form_view` VALUES("36048", "11", "2016-08-20 07:09:19", "197.237.212.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("36049", "3", "2016-08-20 07:09:26", "197.237.212.73", "280");
INSERT INTO `wp_rg_form_view` VALUES("36050", "10", "2016-08-20 07:09:26", "197.237.212.73", "69");
INSERT INTO `wp_rg_form_view` VALUES("36051", "12", "2016-08-20 07:11:01", "197.237.212.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("36052", "2", "2016-08-20 07:12:47", "197.237.212.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("36053", "3", "2016-08-20 08:07:05", "51.255.65.14", "56");
INSERT INTO `wp_rg_form_view` VALUES("36054", "10", "2016-08-20 08:07:06", "51.255.65.14", "14");
INSERT INTO `wp_rg_form_view` VALUES("36055", "3", "2016-08-20 09:02:19", "157.55.39.5", "43");
INSERT INTO `wp_rg_form_view` VALUES("36056", "10", "2016-08-20 09:02:22", "157.55.39.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("36057", "3", "2016-08-20 10:40:42", "66.249.79.108", "49");
INSERT INTO `wp_rg_form_view` VALUES("36058", "10", "2016-08-20 10:40:44", "66.249.79.108", "12");
INSERT INTO `wp_rg_form_view` VALUES("36059", "3", "2016-08-20 11:15:33", "202.46.53.165", "82");
INSERT INTO `wp_rg_form_view` VALUES("36060", "10", "2016-08-20 11:15:37", "202.46.53.165", "20");
INSERT INTO `wp_rg_form_view` VALUES("36061", "3", "2016-08-20 12:01:49", "207.46.13.155", "62");
INSERT INTO `wp_rg_form_view` VALUES("36062", "10", "2016-08-20 12:01:49", "207.46.13.155", "14");
INSERT INTO `wp_rg_form_view` VALUES("36063", "1", "2016-08-20 13:04:08", "178.32.12.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("36064", "3", "2016-08-20 13:04:08", "178.32.12.117", "104");
INSERT INTO `wp_rg_form_view` VALUES("36065", "10", "2016-08-20 13:04:08", "178.32.12.117", "26");
INSERT INTO `wp_rg_form_view` VALUES("36066", "3", "2016-08-20 14:45:49", "46.119.117.90", "53");
INSERT INTO `wp_rg_form_view` VALUES("36067", "3", "2016-08-20 14:45:49", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36068", "10", "2016-08-20 14:45:52", "46.119.117.90", "12");
INSERT INTO `wp_rg_form_view` VALUES("36069", "3", "2016-08-20 15:07:28", "202.46.55.60", "87");
INSERT INTO `wp_rg_form_view` VALUES("36070", "10", "2016-08-20 15:07:29", "202.46.55.60", "29");
INSERT INTO `wp_rg_form_view` VALUES("36071", "3", "2016-08-20 16:10:52", "46.118.238.134", "52");
INSERT INTO `wp_rg_form_view` VALUES("36072", "10", "2016-08-20 16:10:52", "46.118.238.134", "13");
INSERT INTO `wp_rg_form_view` VALUES("36073", "6", "2016-08-20 16:29:10", "66.249.79.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("36074", "3", "2016-08-20 17:32:20", "51.255.65.40", "40");
INSERT INTO `wp_rg_form_view` VALUES("36075", "10", "2016-08-20 17:32:21", "51.255.65.40", "10");
INSERT INTO `wp_rg_form_view` VALUES("36076", "3", "2016-08-20 18:01:42", "68.180.231.44", "36");
INSERT INTO `wp_rg_form_view` VALUES("36077", "10", "2016-08-20 18:22:49", "46.119.116.252", "9");
INSERT INTO `wp_rg_form_view` VALUES("36078", "3", "2016-08-20 19:23:30", "51.255.65.43", "45");
INSERT INTO `wp_rg_form_view` VALUES("36079", "10", "2016-08-20 19:23:31", "51.255.65.43", "10");
INSERT INTO `wp_rg_form_view` VALUES("36080", "3", "2016-08-20 20:00:38", "68.180.231.44", "104");
INSERT INTO `wp_rg_form_view` VALUES("36081", "10", "2016-08-20 20:00:38", "68.180.231.44", "24");
INSERT INTO `wp_rg_form_view` VALUES("36082", "3", "2016-08-20 21:16:26", "51.255.65.55", "86");
INSERT INTO `wp_rg_form_view` VALUES("36083", "10", "2016-08-20 21:16:30", "51.255.65.55", "18");
INSERT INTO `wp_rg_form_view` VALUES("36084", "3", "2016-08-20 22:35:49", "66.249.79.108", "49");
INSERT INTO `wp_rg_form_view` VALUES("36085", "10", "2016-08-20 22:35:51", "66.249.79.108", "13");
INSERT INTO `wp_rg_form_view` VALUES("36086", "11", "2016-08-20 22:59:31", "220.181.108.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("36087", "3", "2016-08-20 23:19:34", "157.55.39.5", "70");
INSERT INTO `wp_rg_form_view` VALUES("36088", "10", "2016-08-20 23:19:34", "157.55.39.5", "27");
INSERT INTO `wp_rg_form_view` VALUES("36089", "3", "2016-08-21 00:16:47", "77.75.78.161", "22");
INSERT INTO `wp_rg_form_view` VALUES("36090", "10", "2016-08-21 00:16:49", "77.75.78.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("36091", "3", "2016-08-21 01:16:34", "5.9.145.132", "55");
INSERT INTO `wp_rg_form_view` VALUES("36092", "10", "2016-08-21 01:16:34", "5.9.145.132", "21");
INSERT INTO `wp_rg_form_view` VALUES("36093", "3", "2016-08-21 02:02:10", "46.118.238.134", "40");
INSERT INTO `wp_rg_form_view` VALUES("36094", "10", "2016-08-21 02:02:11", "46.118.238.134", "15");
INSERT INTO `wp_rg_form_view` VALUES("36095", "3", "2016-08-21 03:00:42", "68.180.231.44", "76");
INSERT INTO `wp_rg_form_view` VALUES("36096", "10", "2016-08-21 03:11:39", "165.231.99.11", "31");
INSERT INTO `wp_rg_form_view` VALUES("36097", "11", "2016-08-21 03:55:01", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("36098", "3", "2016-08-21 04:04:25", "202.46.54.187", "68");
INSERT INTO `wp_rg_form_view` VALUES("36099", "10", "2016-08-21 04:04:26", "202.46.54.187", "28");
INSERT INTO `wp_rg_form_view` VALUES("36100", "11", "2016-08-21 04:05:46", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("36101", "3", "2016-08-21 05:41:59", "51.255.65.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("36102", "10", "2016-08-21 05:42:00", "51.255.65.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("36103", "3", "2016-08-21 06:06:08", "199.21.99.202", "22");
INSERT INTO `wp_rg_form_view` VALUES("36104", "10", "2016-08-21 06:06:13", "199.21.99.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("36105", "3", "2016-08-21 07:22:20", "207.46.13.155", "23");
INSERT INTO `wp_rg_form_view` VALUES("36106", "10", "2016-08-21 07:22:22", "207.46.13.155", "9");
INSERT INTO `wp_rg_form_view` VALUES("36107", "3", "2016-08-21 08:45:10", "157.55.39.35", "7");
INSERT INTO `wp_rg_form_view` VALUES("36108", "10", "2016-08-21 08:45:11", "157.55.39.35", "3");
INSERT INTO `wp_rg_form_view` VALUES("36109", "1", "2016-08-21 09:29:49", "107.173.184.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("36110", "3", "2016-08-21 09:29:50", "107.173.184.188", "53");
INSERT INTO `wp_rg_form_view` VALUES("36111", "10", "2016-08-21 09:29:51", "107.173.184.188", "35");
INSERT INTO `wp_rg_form_view` VALUES("36112", "3", "2016-08-21 10:28:10", "220.181.108.100", "8");
INSERT INTO `wp_rg_form_view` VALUES("36113", "10", "2016-08-21 10:28:12", "220.181.108.100", "3");
INSERT INTO `wp_rg_form_view` VALUES("36114", "3", "2016-08-21 11:07:34", "164.132.161.16", "80");
INSERT INTO `wp_rg_form_view` VALUES("36115", "10", "2016-08-21 11:07:40", "164.132.161.16", "30");
INSERT INTO `wp_rg_form_view` VALUES("36116", "2", "2016-08-21 12:14:43", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36117", "3", "2016-08-21 12:14:44", "68.180.231.44", "30");
INSERT INTO `wp_rg_form_view` VALUES("36118", "10", "2016-08-21 12:14:45", "68.180.231.44", "12");
INSERT INTO `wp_rg_form_view` VALUES("36119", "3", "2016-08-21 13:20:24", "89.33.71.188", "30");
INSERT INTO `wp_rg_form_view` VALUES("36120", "10", "2016-08-21 13:20:27", "89.33.71.188", "13");
INSERT INTO `wp_rg_form_view` VALUES("36121", "3", "2016-08-21 14:05:34", "164.132.161.42", "28");
INSERT INTO `wp_rg_form_view` VALUES("36122", "10", "2016-08-21 14:05:35", "164.132.161.42", "12");
INSERT INTO `wp_rg_form_view` VALUES("36123", "3", "2016-08-21 15:10:46", "31.14.251.102", "112");
INSERT INTO `wp_rg_form_view` VALUES("36124", "10", "2016-08-21 15:10:47", "31.14.251.102", "46");
INSERT INTO `wp_rg_form_view` VALUES("36125", "3", "2016-08-21 16:17:02", "188.240.132.165", "45");
INSERT INTO `wp_rg_form_view` VALUES("36126", "10", "2016-08-21 16:17:03", "188.240.132.165", "24");
INSERT INTO `wp_rg_form_view` VALUES("36127", "10", "2016-08-21 17:00:51", "154.20.35.211", "11");
INSERT INTO `wp_rg_form_view` VALUES("36128", "3", "2016-08-21 17:00:51", "154.20.35.211", "21");
INSERT INTO `wp_rg_form_view` VALUES("36129", "8", "2016-08-21 18:18:08", "207.46.13.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("36130", "3", "2016-08-21 18:18:10", "207.46.13.137", "45");
INSERT INTO `wp_rg_form_view` VALUES("36131", "10", "2016-08-21 18:18:10", "207.46.13.137", "18");
INSERT INTO `wp_rg_form_view` VALUES("36132", "3", "2016-08-21 19:13:38", "31.14.251.73", "101");
INSERT INTO `wp_rg_form_view` VALUES("36133", "10", "2016-08-21 19:13:39", "31.14.251.73", "42");
INSERT INTO `wp_rg_form_view` VALUES("36134", "1", "2016-08-21 19:24:53", "24.69.151.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("36135", "3", "2016-08-21 20:19:38", "62.210.162.184", "14");
INSERT INTO `wp_rg_form_view` VALUES("36136", "10", "2016-08-21 20:19:38", "62.210.162.184", "6");
INSERT INTO `wp_rg_form_view` VALUES("36137", "3", "2016-08-21 21:07:56", "75.156.34.203", "36");
INSERT INTO `wp_rg_form_view` VALUES("36138", "10", "2016-08-21 21:07:57", "75.156.34.203", "15");
INSERT INTO `wp_rg_form_view` VALUES("36139", "3", "2016-08-21 22:05:01", "91.235.142.209", "57");
INSERT INTO `wp_rg_form_view` VALUES("36140", "10", "2016-08-21 22:05:01", "91.235.142.209", "24");
INSERT INTO `wp_rg_form_view` VALUES("36141", "1", "2016-08-21 23:37:55", "46.101.23.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("36142", "3", "2016-08-21 23:37:56", "46.101.23.211", "54");
INSERT INTO `wp_rg_form_view` VALUES("36143", "10", "2016-08-21 23:37:58", "46.101.23.211", "24");
INSERT INTO `wp_rg_form_view` VALUES("36144", "3", "2016-08-22 00:29:31", "202.46.58.73", "36");
INSERT INTO `wp_rg_form_view` VALUES("36145", "10", "2016-08-22 00:29:32", "202.46.58.73", "15");
INSERT INTO `wp_rg_form_view` VALUES("36146", "3", "2016-08-22 01:00:59", "184.66.9.62", "119");
INSERT INTO `wp_rg_form_view` VALUES("36147", "10", "2016-08-22 01:00:59", "184.66.9.62", "45");
INSERT INTO `wp_rg_form_view` VALUES("36148", "3", "2016-08-22 02:07:02", "68.180.231.44", "17");
INSERT INTO `wp_rg_form_view` VALUES("36149", "10", "2016-08-22 02:10:45", "46.166.141.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("36150", "3", "2016-08-22 04:10:43", "202.46.50.185", "52");
INSERT INTO `wp_rg_form_view` VALUES("36151", "10", "2016-08-22 04:10:45", "202.46.50.185", "18");
INSERT INTO `wp_rg_form_view` VALUES("36152", "3", "2016-08-22 05:07:20", "46.119.116.73", "52");
INSERT INTO `wp_rg_form_view` VALUES("36153", "3", "2016-08-22 05:07:20", "46.119.116.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("36154", "10", "2016-08-22 05:07:26", "46.119.116.73", "19");
INSERT INTO `wp_rg_form_view` VALUES("36155", "10", "2016-08-22 05:07:26", "46.119.116.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("36156", "10", "2016-08-22 05:07:26", "46.119.116.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("36157", "3", "2016-08-22 06:00:14", "99.199.3.106", "52");
INSERT INTO `wp_rg_form_view` VALUES("36158", "10", "2016-08-22 06:00:15", "99.199.3.106", "21");
INSERT INTO `wp_rg_form_view` VALUES("36159", "3", "2016-08-22 07:18:59", "207.46.13.155", "36");
INSERT INTO `wp_rg_form_view` VALUES("36160", "10", "2016-08-22 07:19:00", "207.46.13.155", "15");
INSERT INTO `wp_rg_form_view` VALUES("36161", "1", "2016-08-22 07:26:38", "112.181.172.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("36162", "3", "2016-08-22 08:08:22", "202.46.55.146", "30");
INSERT INTO `wp_rg_form_view` VALUES("36163", "10", "2016-08-22 08:08:23", "202.46.55.146", "12");
INSERT INTO `wp_rg_form_view` VALUES("36164", "3", "2016-08-22 09:13:20", "151.80.31.153", "105");
INSERT INTO `wp_rg_form_view` VALUES("36165", "10", "2016-08-22 09:13:25", "151.80.31.153", "43");
INSERT INTO `wp_rg_form_view` VALUES("36166", "11", "2016-08-22 09:59:52", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("36167", "3", "2016-08-22 10:00:10", "136.243.36.94", "363");
INSERT INTO `wp_rg_form_view` VALUES("36168", "10", "2016-08-22 10:00:10", "136.243.36.94", "152");
INSERT INTO `wp_rg_form_view` VALUES("36169", "2", "2016-08-22 10:01:13", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("36170", "12", "2016-08-22 10:06:01", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("36171", "3", "2016-08-22 11:03:23", "66.249.79.112", "83");
INSERT INTO `wp_rg_form_view` VALUES("36172", "10", "2016-08-22 11:03:23", "66.249.79.112", "33");
INSERT INTO `wp_rg_form_view` VALUES("36173", "3", "2016-08-22 12:01:43", "46.119.117.90", "16");
INSERT INTO `wp_rg_form_view` VALUES("36174", "10", "2016-08-22 12:01:43", "46.119.117.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("36175", "3", "2016-08-22 13:10:38", "184.66.32.17", "47");
INSERT INTO `wp_rg_form_view` VALUES("36176", "10", "2016-08-22 13:10:40", "184.66.32.17", "20");
INSERT INTO `wp_rg_form_view` VALUES("36177", "3", "2016-08-22 14:18:10", "46.119.116.252", "48");
INSERT INTO `wp_rg_form_view` VALUES("36178", "10", "2016-08-22 14:18:12", "46.119.116.252", "17");
INSERT INTO `wp_rg_form_view` VALUES("36179", "10", "2016-08-22 14:18:12", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("36180", "3", "2016-08-22 16:16:18", "64.180.85.97", "67");
INSERT INTO `wp_rg_form_view` VALUES("36181", "10", "2016-08-22 16:16:31", "64.180.85.97", "27");
INSERT INTO `wp_rg_form_view` VALUES("36182", "3", "2016-08-22 18:30:56", "202.46.54.17", "56");
INSERT INTO `wp_rg_form_view` VALUES("36183", "10", "2016-08-22 18:30:58", "202.46.54.17", "24");
INSERT INTO `wp_rg_form_view` VALUES("36184", "3", "2016-08-22 19:27:05", "207.46.13.41", "15");
INSERT INTO `wp_rg_form_view` VALUES("36185", "10", "2016-08-22 19:27:08", "207.46.13.41", "6");
INSERT INTO `wp_rg_form_view` VALUES("36186", "1", "2016-08-22 20:01:43", "104.227.92.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("36187", "3", "2016-08-22 20:01:45", "104.227.92.188", "57");
INSERT INTO `wp_rg_form_view` VALUES("36188", "10", "2016-08-22 20:01:51", "104.227.92.188", "25");
INSERT INTO `wp_rg_form_view` VALUES("36189", "5", "2016-08-22 20:34:31", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36190", "3", "2016-08-22 21:08:58", "110.10.176.58", "102");
INSERT INTO `wp_rg_form_view` VALUES("36191", "10", "2016-08-22 21:08:59", "110.10.176.58", "42");
INSERT INTO `wp_rg_form_view` VALUES("36192", "1", "2016-08-22 21:52:17", "154.5.209.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("36193", "3", "2016-08-22 22:17:36", "157.55.39.251", "35");
INSERT INTO `wp_rg_form_view` VALUES("36194", "10", "2016-08-22 22:17:37", "157.55.39.251", "15");
INSERT INTO `wp_rg_form_view` VALUES("36195", "11", "2016-08-22 22:49:00", "202.46.52.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("36196", "3", "2016-08-22 23:22:53", "207.46.13.94", "28");
INSERT INTO `wp_rg_form_view` VALUES("36197", "10", "2016-08-22 23:22:58", "207.46.13.94", "13");
INSERT INTO `wp_rg_form_view` VALUES("36198", "3", "2016-08-23 00:07:58", "202.46.54.162", "77");
INSERT INTO `wp_rg_form_view` VALUES("36199", "10", "2016-08-23 00:07:59", "202.46.54.162", "33");
INSERT INTO `wp_rg_form_view` VALUES("36200", "11", "2016-08-23 00:49:27", "68.148.152.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("36201", "3", "2016-08-23 01:35:37", "68.180.231.44", "15");
INSERT INTO `wp_rg_form_view` VALUES("36202", "10", "2016-08-23 01:35:38", "68.180.231.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("36203", "3", "2016-08-23 02:21:22", "31.14.251.73", "46");
INSERT INTO `wp_rg_form_view` VALUES("36204", "10", "2016-08-23 02:21:23", "31.14.251.73", "18");
INSERT INTO `wp_rg_form_view` VALUES("36205", "3", "2016-08-23 03:20:21", "108.180.50.249", "49");
INSERT INTO `wp_rg_form_view` VALUES("36206", "10", "2016-08-23 03:20:21", "108.180.50.249", "21");
INSERT INTO `wp_rg_form_view` VALUES("36207", "1", "2016-08-23 04:28:17", "31.7.187.225", "2");
INSERT INTO `wp_rg_form_view` VALUES("36208", "3", "2016-08-23 04:28:18", "31.7.187.225", "51");
INSERT INTO `wp_rg_form_view` VALUES("36209", "10", "2016-08-23 04:28:20", "31.7.187.225", "21");
INSERT INTO `wp_rg_form_view` VALUES("36210", "3", "2016-08-23 05:01:13", "202.46.56.137", "7");
INSERT INTO `wp_rg_form_view` VALUES("36211", "10", "2016-08-23 05:01:13", "202.46.56.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("36212", "1", "2016-08-23 07:17:08", "87.98.167.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("36213", "3", "2016-08-23 07:17:13", "87.98.167.214", "58");
INSERT INTO `wp_rg_form_view` VALUES("36214", "10", "2016-08-23 07:17:19", "87.98.167.214", "27");
INSERT INTO `wp_rg_form_view` VALUES("36215", "1", "2016-08-23 08:23:25", "202.77.57.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("36216", "3", "2016-08-23 08:23:26", "202.77.57.124", "44");
INSERT INTO `wp_rg_form_view` VALUES("36217", "10", "2016-08-23 08:23:27", "202.77.57.124", "21");
INSERT INTO `wp_rg_form_view` VALUES("36218", "3", "2016-08-23 09:01:08", "200.54.76.230", "47");
INSERT INTO `wp_rg_form_view` VALUES("36219", "10", "2016-08-23 09:01:11", "200.54.76.230", "18");
INSERT INTO `wp_rg_form_view` VALUES("36220", "3", "2016-08-23 10:56:58", "207.46.13.155", "7");
INSERT INTO `wp_rg_form_view` VALUES("36221", "10", "2016-08-23 10:57:00", "207.46.13.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("36222", "3", "2016-08-23 11:03:47", "66.249.79.104", "39");
INSERT INTO `wp_rg_form_view` VALUES("36223", "10", "2016-08-23 11:03:47", "66.249.79.104", "15");
INSERT INTO `wp_rg_form_view` VALUES("36224", "10", "2016-08-23 12:25:31", "68.180.231.44", "35");
INSERT INTO `wp_rg_form_view` VALUES("36225", "3", "2016-08-23 12:25:36", "68.180.231.44", "69");
INSERT INTO `wp_rg_form_view` VALUES("36226", "1", "2016-08-23 12:48:12", "192.240.106.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("36227", "3", "2016-08-23 14:06:46", "52.208.41.185", "21");
INSERT INTO `wp_rg_form_view` VALUES("36228", "10", "2016-08-23 14:06:47", "52.208.41.185", "10");
INSERT INTO `wp_rg_form_view` VALUES("36229", "3", "2016-08-23 15:20:34", "96.54.156.10", "53");
INSERT INTO `wp_rg_form_view` VALUES("36230", "10", "2016-08-23 15:20:37", "96.54.156.10", "23");
INSERT INTO `wp_rg_form_view` VALUES("36231", "3", "2016-08-23 16:10:11", "46.119.116.73", "38");
INSERT INTO `wp_rg_form_view` VALUES("36232", "10", "2016-08-23 16:10:12", "46.119.116.73", "15");
INSERT INTO `wp_rg_form_view` VALUES("36233", "10", "2016-08-23 17:07:10", "207.46.13.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("36234", "3", "2016-08-23 17:07:20", "207.46.13.155", "21");
INSERT INTO `wp_rg_form_view` VALUES("36235", "3", "2016-08-23 18:06:59", "78.129.163.16", "77");
INSERT INTO `wp_rg_form_view` VALUES("36236", "10", "2016-08-23 18:06:59", "78.129.163.16", "33");
INSERT INTO `wp_rg_form_view` VALUES("36237", "3", "2016-08-23 19:02:10", "46.119.116.252", "86");
INSERT INTO `wp_rg_form_view` VALUES("36238", "10", "2016-08-23 19:02:10", "46.119.116.252", "33");
INSERT INTO `wp_rg_form_view` VALUES("36239", "3", "2016-08-23 20:29:53", "46.119.117.90", "122");
INSERT INTO `wp_rg_form_view` VALUES("36240", "3", "2016-08-23 20:29:53", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36241", "10", "2016-08-23 20:29:58", "46.119.117.90", "51");
INSERT INTO `wp_rg_form_view` VALUES("36242", "1", "2016-08-23 20:47:31", "96.50.19.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("36243", "3", "2016-08-23 21:00:38", "96.50.19.46", "98");
INSERT INTO `wp_rg_form_view` VALUES("36244", "10", "2016-08-23 21:00:38", "96.50.19.46", "39");
INSERT INTO `wp_rg_form_view` VALUES("36245", "3", "2016-08-23 22:07:26", "182.255.0.60", "28");
INSERT INTO `wp_rg_form_view` VALUES("36246", "10", "2016-08-23 22:07:28", "182.255.0.60", "14");
INSERT INTO `wp_rg_form_view` VALUES("36247", "3", "2016-08-23 23:28:06", "68.180.231.44", "29");
INSERT INTO `wp_rg_form_view` VALUES("36248", "10", "2016-08-23 23:28:12", "68.180.231.44", "12");
INSERT INTO `wp_rg_form_view` VALUES("36249", "3", "2016-08-24 00:05:59", "192.243.55.130", "21");
INSERT INTO `wp_rg_form_view` VALUES("36250", "10", "2016-08-24 00:05:59", "192.243.55.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("36251", "3", "2016-08-24 01:02:09", "46.119.116.252", "38");
INSERT INTO `wp_rg_form_view` VALUES("36252", "3", "2016-08-24 01:02:09", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("36253", "10", "2016-08-24 01:02:16", "46.119.116.252", "13");
INSERT INTO `wp_rg_form_view` VALUES("36254", "10", "2016-08-24 01:02:16", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("36255", "10", "2016-08-24 01:02:16", "46.119.116.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("36256", "3", "2016-08-24 02:02:30", "108.180.146.91", "70");
INSERT INTO `wp_rg_form_view` VALUES("36257", "10", "2016-08-24 02:02:37", "108.180.146.91", "22");
INSERT INTO `wp_rg_form_view` VALUES("36258", "1", "2016-08-24 02:57:04", "212.83.173.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("36259", "3", "2016-08-24 03:07:39", "46.119.116.252", "52");
INSERT INTO `wp_rg_form_view` VALUES("36260", "10", "2016-08-24 03:07:40", "46.119.116.252", "21");
INSERT INTO `wp_rg_form_view` VALUES("36261", "8", "2016-08-24 03:32:42", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36262", "3", "2016-08-24 04:00:21", "40.77.167.37", "28");
INSERT INTO `wp_rg_form_view` VALUES("36263", "10", "2016-08-24 04:00:22", "40.77.167.37", "13");
INSERT INTO `wp_rg_form_view` VALUES("36264", "3", "2016-08-24 05:04:53", "66.249.79.108", "14");
INSERT INTO `wp_rg_form_view` VALUES("36265", "10", "2016-08-24 05:04:54", "66.249.79.108", "7");
INSERT INTO `wp_rg_form_view` VALUES("36266", "11", "2016-08-24 05:19:00", "192.243.55.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("36267", "3", "2016-08-24 06:08:32", "68.180.231.44", "29");
INSERT INTO `wp_rg_form_view` VALUES("36268", "10", "2016-08-24 06:08:34", "68.180.231.44", "12");
INSERT INTO `wp_rg_form_view` VALUES("36269", "3", "2016-08-24 07:10:56", "46.119.117.90", "50");
INSERT INTO `wp_rg_form_view` VALUES("36270", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36271", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36272", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36273", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36274", "3", "2016-08-24 07:10:56", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36275", "10", "2016-08-24 07:10:58", "46.119.117.90", "21");
INSERT INTO `wp_rg_form_view` VALUES("36276", "5", "2016-08-24 08:10:26", "77.75.79.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("36277", "3", "2016-08-24 08:10:26", "77.75.79.17", "58");
INSERT INTO `wp_rg_form_view` VALUES("36278", "10", "2016-08-24 08:10:30", "77.75.79.17", "27");
INSERT INTO `wp_rg_form_view` VALUES("36279", "1", "2016-08-24 08:19:38", "87.98.167.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("36280", "1", "2016-08-24 09:05:30", "178.32.80.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("36281", "3", "2016-08-24 09:05:31", "178.32.80.238", "45");
INSERT INTO `wp_rg_form_view` VALUES("36282", "10", "2016-08-24 09:05:31", "178.32.80.238", "21");
INSERT INTO `wp_rg_form_view` VALUES("36283", "3", "2016-08-24 10:07:27", "207.46.13.47", "42");
INSERT INTO `wp_rg_form_view` VALUES("36284", "10", "2016-08-24 10:07:27", "207.46.13.47", "18");
INSERT INTO `wp_rg_form_view` VALUES("36285", "3", "2016-08-24 11:17:57", "77.75.79.95", "28");
INSERT INTO `wp_rg_form_view` VALUES("36286", "10", "2016-08-24 11:18:01", "77.75.79.95", "12");
INSERT INTO `wp_rg_form_view` VALUES("36287", "3", "2016-08-24 12:10:06", "207.46.13.36", "76");
INSERT INTO `wp_rg_form_view` VALUES("36288", "10", "2016-08-24 12:10:07", "207.46.13.36", "30");
INSERT INTO `wp_rg_form_view` VALUES("36289", "3", "2016-08-24 13:10:38", "77.75.79.17", "773");
INSERT INTO `wp_rg_form_view` VALUES("36290", "10", "2016-08-24 13:10:38", "77.75.79.17", "317");
INSERT INTO `wp_rg_form_view` VALUES("36291", "9", "2016-08-24 13:29:55", "207.46.13.47", "4");
INSERT INTO `wp_rg_form_view` VALUES("36292", "8", "2016-08-24 13:30:06", "207.46.13.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("36293", "5", "2016-08-24 13:34:20", "207.46.13.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("36294", "6", "2016-08-24 13:34:30", "207.46.13.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("36295", "3", "2016-08-24 14:04:09", "154.20.41.178", "94");
INSERT INTO `wp_rg_form_view` VALUES("36296", "10", "2016-08-24 14:04:10", "154.20.41.178", "36");
INSERT INTO `wp_rg_form_view` VALUES("36297", "3", "2016-08-24 15:02:13", "96.48.15.59", "56");
INSERT INTO `wp_rg_form_view` VALUES("36298", "10", "2016-08-24 15:02:13", "96.48.15.59", "33");
INSERT INTO `wp_rg_form_view` VALUES("36299", "11", "2016-08-24 15:27:33", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("36300", "3", "2016-08-24 16:10:08", "50.72.54.220", "89");
INSERT INTO `wp_rg_form_view` VALUES("36301", "10", "2016-08-24 16:10:09", "50.72.54.220", "33");
INSERT INTO `wp_rg_form_view` VALUES("36302", "2", "2016-08-24 16:30:55", "192.240.106.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("36303", "3", "2016-08-24 17:20:13", "72.143.226.80", "49");
INSERT INTO `wp_rg_form_view` VALUES("36304", "10", "2016-08-24 17:20:14", "72.143.226.80", "22");
INSERT INTO `wp_rg_form_view` VALUES("36305", "3", "2016-08-24 18:12:34", "77.75.76.160", "58");
INSERT INTO `wp_rg_form_view` VALUES("36306", "10", "2016-08-24 18:12:34", "77.75.76.160", "24");
INSERT INTO `wp_rg_form_view` VALUES("36307", "3", "2016-08-24 19:01:40", "51.255.66.163", "42");
INSERT INTO `wp_rg_form_view` VALUES("36308", "10", "2016-08-24 19:01:41", "51.255.66.163", "18");
INSERT INTO `wp_rg_form_view` VALUES("36309", "3", "2016-08-24 20:14:23", "207.46.13.47", "36");
INSERT INTO `wp_rg_form_view` VALUES("36310", "10", "2016-08-24 20:14:24", "207.46.13.47", "15");
INSERT INTO `wp_rg_form_view` VALUES("36311", "3", "2016-08-24 21:03:36", "46.119.116.252", "322");
INSERT INTO `wp_rg_form_view` VALUES("36312", "10", "2016-08-24 21:03:37", "46.119.116.252", "136");
INSERT INTO `wp_rg_form_view` VALUES("36313", "1", "2016-08-24 21:20:10", "75.157.168.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("36314", "11", "2016-08-24 21:23:22", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("36315", "2", "2016-08-24 21:23:25", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("36316", "12", "2016-08-24 21:45:53", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("36317", "3", "2016-08-24 22:03:36", "24.69.222.3", "45");
INSERT INTO `wp_rg_form_view` VALUES("36318", "10", "2016-08-24 22:03:37", "24.69.222.3", "18");
INSERT INTO `wp_rg_form_view` VALUES("36319", "11", "2016-08-24 22:15:37", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("36320", "3", "2016-08-24 23:33:19", "46.118.159.110", "43");
INSERT INTO `wp_rg_form_view` VALUES("36321", "3", "2016-08-24 23:33:19", "46.118.159.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("36322", "3", "2016-08-24 23:33:19", "46.118.159.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("36323", "10", "2016-08-24 23:33:26", "46.118.159.110", "16");
INSERT INTO `wp_rg_form_view` VALUES("36324", "10", "2016-08-24 23:33:26", "46.118.159.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("36325", "10", "2016-08-24 23:33:26", "46.118.159.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("36326", "3", "2016-08-25 00:06:54", "207.216.68.242", "105");
INSERT INTO `wp_rg_form_view` VALUES("36327", "10", "2016-08-25 00:06:55", "207.216.68.242", "45");
INSERT INTO `wp_rg_form_view` VALUES("36328", "1", "2016-08-25 00:11:42", "66.249.79.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("36329", "2", "2016-08-25 00:59:23", "207.46.13.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("36330", "3", "2016-08-25 01:11:54", "207.194.133.9", "30");
INSERT INTO `wp_rg_form_view` VALUES("36331", "10", "2016-08-25 01:11:55", "207.194.133.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("36332", "3", "2016-08-25 02:14:43", "52.87.23.48", "55");
INSERT INTO `wp_rg_form_view` VALUES("36333", "10", "2016-08-25 02:14:43", "52.87.23.48", "18");
INSERT INTO `wp_rg_form_view` VALUES("36334", "1", "2016-08-25 03:02:41", "154.5.209.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("36335", "3", "2016-08-25 03:02:41", "154.5.209.196", "59");
INSERT INTO `wp_rg_form_view` VALUES("36336", "10", "2016-08-25 03:02:42", "154.5.209.196", "24");
INSERT INTO `wp_rg_form_view` VALUES("36337", "2", "2016-08-25 03:35:00", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("36338", "3", "2016-08-25 04:10:08", "40.77.167.27", "113");
INSERT INTO `wp_rg_form_view` VALUES("36339", "10", "2016-08-25 04:10:09", "40.77.167.27", "53");
INSERT INTO `wp_rg_form_view` VALUES("36340", "1", "2016-08-25 04:21:16", "192.126.168.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("36341", "3", "2016-08-25 05:07:03", "46.119.117.90", "119");
INSERT INTO `wp_rg_form_view` VALUES("36342", "10", "2016-08-25 05:07:04", "46.119.117.90", "48");
INSERT INTO `wp_rg_form_view` VALUES("36343", "11", "2016-08-25 05:53:14", "24.108.50.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("36344", "3", "2016-08-25 06:15:13", "31.210.94.25", "7");
INSERT INTO `wp_rg_form_view` VALUES("36345", "10", "2016-08-25 06:15:19", "31.210.94.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("36346", "3", "2016-08-25 07:33:52", "202.46.49.110", "15");
INSERT INTO `wp_rg_form_view` VALUES("36347", "10", "2016-08-25 07:33:54", "202.46.49.110", "7");
INSERT INTO `wp_rg_form_view` VALUES("36348", "3", "2016-08-25 09:00:12", "68.180.231.44", "15");
INSERT INTO `wp_rg_form_view` VALUES("36349", "10", "2016-08-25 09:00:15", "68.180.231.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("36350", "3", "2016-08-25 10:15:19", "78.142.63.208", "52");
INSERT INTO `wp_rg_form_view` VALUES("36351", "10", "2016-08-25 10:15:21", "78.142.63.208", "21");
INSERT INTO `wp_rg_form_view` VALUES("36352", "8", "2016-08-25 10:50:40", "192.243.55.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("36353", "3", "2016-08-25 11:05:49", "46.119.116.73", "77");
INSERT INTO `wp_rg_form_view` VALUES("36354", "10", "2016-08-25 11:05:49", "46.119.116.73", "31");
INSERT INTO `wp_rg_form_view` VALUES("36355", "1", "2016-08-25 11:26:49", "192.243.55.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("36356", "3", "2016-08-25 12:14:18", "66.249.79.108", "76");
INSERT INTO `wp_rg_form_view` VALUES("36357", "10", "2016-08-25 12:14:20", "66.249.79.108", "28");
INSERT INTO `wp_rg_form_view` VALUES("36358", "3", "2016-08-25 13:11:35", "46.119.117.90", "31");
INSERT INTO `wp_rg_form_view` VALUES("36359", "10", "2016-08-25 13:11:36", "46.119.117.90", "12");
INSERT INTO `wp_rg_form_view` VALUES("36360", "3", "2016-08-25 14:15:32", "52.208.41.185", "69");
INSERT INTO `wp_rg_form_view` VALUES("36361", "10", "2016-08-25 14:15:32", "52.208.41.185", "27");
INSERT INTO `wp_rg_form_view` VALUES("36362", "3", "2016-08-25 15:20:16", "207.46.13.96", "99");
INSERT INTO `wp_rg_form_view` VALUES("36363", "10", "2016-08-25 15:20:22", "207.46.13.96", "42");
INSERT INTO `wp_rg_form_view` VALUES("36364", "1", "2016-08-25 15:42:16", "69.157.5.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("36365", "3", "2016-08-25 16:11:38", "46.119.117.90", "90");
INSERT INTO `wp_rg_form_view` VALUES("36366", "3", "2016-08-25 16:11:38", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36367", "10", "2016-08-25 16:11:39", "46.119.117.90", "35");
INSERT INTO `wp_rg_form_view` VALUES("36368", "10", "2016-08-25 16:11:39", "46.119.117.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36369", "3", "2016-08-25 17:01:02", "96.50.19.46", "95");
INSERT INTO `wp_rg_form_view` VALUES("36370", "10", "2016-08-25 17:01:05", "96.50.19.46", "39");
INSERT INTO `wp_rg_form_view` VALUES("36371", "1", "2016-08-25 17:06:48", "96.50.2.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("36372", "3", "2016-08-25 18:00:37", "163.172.51.123", "74");
INSERT INTO `wp_rg_form_view` VALUES("36373", "10", "2016-08-25 18:00:37", "163.172.51.123", "31");
INSERT INTO `wp_rg_form_view` VALUES("36374", "3", "2016-08-25 19:01:51", "207.46.13.164", "29");
INSERT INTO `wp_rg_form_view` VALUES("36375", "10", "2016-08-25 19:01:52", "207.46.13.164", "13");
INSERT INTO `wp_rg_form_view` VALUES("36376", "3", "2016-08-25 20:23:43", "202.46.49.149", "15");
INSERT INTO `wp_rg_form_view` VALUES("36377", "10", "2016-08-25 20:23:46", "202.46.49.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("36378", "3", "2016-08-25 21:15:15", "192.243.55.130", "79");
INSERT INTO `wp_rg_form_view` VALUES("36379", "10", "2016-08-25 21:15:16", "192.243.55.130", "33");
INSERT INTO `wp_rg_form_view` VALUES("36380", "1", "2016-08-25 21:33:25", "96.50.19.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("36381", "3", "2016-08-25 22:11:00", "207.46.13.96", "50");
INSERT INTO `wp_rg_form_view` VALUES("36382", "10", "2016-08-25 22:11:02", "207.46.13.96", "21");
INSERT INTO `wp_rg_form_view` VALUES("36383", "3", "2016-08-25 23:00:51", "24.68.21.147", "84");
INSERT INTO `wp_rg_form_view` VALUES("36384", "10", "2016-08-25 23:00:51", "24.68.21.147", "38");
INSERT INTO `wp_rg_form_view` VALUES("36385", "6", "2016-08-25 23:45:44", "192.243.55.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("36386", "3", "2016-08-26 00:08:21", "24.108.13.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("36387", "10", "2016-08-26 00:08:21", "24.108.13.133", "15");
INSERT INTO `wp_rg_form_view` VALUES("36388", "3", "2016-08-26 01:18:41", "72.55.191.222", "444");
INSERT INTO `wp_rg_form_view` VALUES("36389", "10", "2016-08-26 01:18:41", "72.55.191.222", "200");
INSERT INTO `wp_rg_form_view` VALUES("36390", "8", "2016-08-26 01:32:44", "207.46.13.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("36391", "7", "2016-08-26 01:32:47", "207.46.13.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("36392", "3", "2016-08-26 02:20:05", "78.142.63.208", "35");
INSERT INTO `wp_rg_form_view` VALUES("36393", "10", "2016-08-26 02:20:07", "78.142.63.208", "15");
INSERT INTO `wp_rg_form_view` VALUES("36394", "3", "2016-08-26 03:03:37", "91.200.12.143", "35");
INSERT INTO `wp_rg_form_view` VALUES("36395", "10", "2016-08-26 03:03:37", "91.200.12.143", "15");
INSERT INTO `wp_rg_form_view` VALUES("36396", "1", "2016-08-26 04:12:30", "66.249.79.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("36397", "3", "2016-08-26 04:12:30", "66.249.79.96", "14");
INSERT INTO `wp_rg_form_view` VALUES("36398", "10", "2016-08-26 04:12:31", "66.249.79.96", "6");
INSERT INTO `wp_rg_form_view` VALUES("36399", "3", "2016-08-26 05:02:52", "77.75.76.161", "53");
INSERT INTO `wp_rg_form_view` VALUES("36400", "10", "2016-08-26 05:02:52", "77.75.76.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("36401", "10", "2016-08-26 06:03:33", "209.52.88.35", "17");
INSERT INTO `wp_rg_form_view` VALUES("36402", "3", "2016-08-26 06:03:33", "209.52.88.35", "35");
INSERT INTO `wp_rg_form_view` VALUES("36403", "3", "2016-08-26 07:10:08", "46.119.116.252", "45");
INSERT INTO `wp_rg_form_view` VALUES("36404", "10", "2016-08-26 07:10:09", "46.119.116.252", "18");
INSERT INTO `wp_rg_form_view` VALUES("36405", "1", "2016-08-26 07:58:58", "192.99.166.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("36406", "3", "2016-08-26 08:19:05", "77.75.79.119", "14");
INSERT INTO `wp_rg_form_view` VALUES("36407", "10", "2016-08-26 08:19:06", "77.75.79.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("36408", "3", "2016-08-26 09:08:38", "66.249.79.108", "61");
INSERT INTO `wp_rg_form_view` VALUES("36409", "10", "2016-08-26 09:08:41", "66.249.79.108", "24");
INSERT INTO `wp_rg_form_view` VALUES("36410", "3", "2016-08-26 10:04:41", "46.118.238.134", "54");
INSERT INTO `wp_rg_form_view` VALUES("36411", "10", "2016-08-26 10:04:42", "46.118.238.134", "24");
INSERT INTO `wp_rg_form_view` VALUES("36412", "12", "2016-08-26 10:52:13", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36413", "3", "2016-08-26 11:59:01", "66.249.79.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("36414", "10", "2016-08-26 11:59:04", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("36415", "1", "2016-08-26 12:25:47", "62.210.80.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("36416", "3", "2016-08-26 12:25:48", "62.210.80.62", "97");
INSERT INTO `wp_rg_form_view` VALUES("36417", "10", "2016-08-26 12:25:50", "62.210.80.62", "39");
INSERT INTO `wp_rg_form_view` VALUES("36418", "3", "2016-08-26 13:02:50", "207.46.13.47", "102");
INSERT INTO `wp_rg_form_view` VALUES("36419", "10", "2016-08-26 13:02:51", "207.46.13.47", "42");
INSERT INTO `wp_rg_form_view` VALUES("36420", "1", "2016-08-26 13:32:50", "192.3.182.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("36421", "11", "2016-08-26 13:58:30", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36422", "2", "2016-08-26 14:23:14", "183.11.51.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36423", "3", "2016-08-26 14:23:15", "183.11.51.90", "151");
INSERT INTO `wp_rg_form_view` VALUES("36424", "10", "2016-08-26 14:23:16", "183.11.51.90", "63");
INSERT INTO `wp_rg_form_view` VALUES("36425", "11", "2016-08-26 14:24:09", "183.11.51.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36426", "3", "2016-08-26 15:03:46", "154.20.41.178", "53");
INSERT INTO `wp_rg_form_view` VALUES("36427", "10", "2016-08-26 15:03:47", "154.20.41.178", "21");
INSERT INTO `wp_rg_form_view` VALUES("36428", "3", "2016-08-26 16:00:15", "96.50.1.173", "21");
INSERT INTO `wp_rg_form_view` VALUES("36429", "10", "2016-08-26 16:00:15", "96.50.1.173", "9");
INSERT INTO `wp_rg_form_view` VALUES("36430", "1", "2016-08-26 16:33:09", "177.220.136.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("36431", "3", "2016-08-26 17:10:24", "184.151.231.148", "85");
INSERT INTO `wp_rg_form_view` VALUES("36432", "10", "2016-08-26 17:10:25", "184.151.231.148", "33");
INSERT INTO `wp_rg_form_view` VALUES("36433", "1", "2016-08-26 18:02:22", "221.176.252.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("36434", "3", "2016-08-26 18:02:23", "221.176.252.34", "42");
INSERT INTO `wp_rg_form_view` VALUES("36435", "10", "2016-08-26 18:02:23", "221.176.252.34", "18");
INSERT INTO `wp_rg_form_view` VALUES("36436", "11", "2016-08-26 18:48:03", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("36437", "3", "2016-08-26 19:07:28", "207.194.133.9", "79");
INSERT INTO `wp_rg_form_view` VALUES("36438", "3", "2016-08-26 19:07:28", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("36439", "10", "2016-08-26 19:07:33", "207.194.133.9", "32");
INSERT INTO `wp_rg_form_view` VALUES("36440", "10", "2016-08-26 19:07:33", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("36441", "3", "2016-08-26 20:07:37", "75.157.27.1", "43");
INSERT INTO `wp_rg_form_view` VALUES("36442", "10", "2016-08-26 20:07:38", "75.157.27.1", "18");
INSERT INTO `wp_rg_form_view` VALUES("36443", "1", "2016-08-26 21:01:36", "192.99.166.236", "4");
INSERT INTO `wp_rg_form_view` VALUES("36444", "3", "2016-08-26 21:01:38", "192.99.166.236", "172");
INSERT INTO `wp_rg_form_view` VALUES("36445", "10", "2016-08-26 21:01:40", "192.99.166.236", "69");
INSERT INTO `wp_rg_form_view` VALUES("36446", "3", "2016-08-26 22:05:46", "104.236.8.231", "158");
INSERT INTO `wp_rg_form_view` VALUES("36447", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36448", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36449", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36450", "11", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36451", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36452", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36453", "3", "2016-08-26 22:05:46", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36454", "12", "2016-08-26 22:05:47", "104.236.8.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("36455", "2", "2016-08-26 22:05:47", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36456", "10", "2016-08-26 22:05:48", "104.236.8.231", "66");
INSERT INTO `wp_rg_form_view` VALUES("36457", "10", "2016-08-26 22:05:48", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36458", "10", "2016-08-26 22:05:48", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36459", "10", "2016-08-26 22:05:48", "104.236.8.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("36460", "3", "2016-08-26 23:10:13", "5.9.94.207", "165");
INSERT INTO `wp_rg_form_view` VALUES("36461", "3", "2016-08-26 23:10:13", "148.251.54.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36462", "10", "2016-08-26 23:10:21", "5.9.94.207", "69");
INSERT INTO `wp_rg_form_view` VALUES("36463", "1", "2016-08-26 23:14:38", "64.180.21.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("36464", "3", "2016-08-27 00:12:52", "24.69.158.129", "36");
INSERT INTO `wp_rg_form_view` VALUES("36465", "10", "2016-08-27 00:12:55", "24.69.158.129", "15");
INSERT INTO `wp_rg_form_view` VALUES("36466", "8", "2016-08-27 00:50:21", "207.46.13.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("36467", "3", "2016-08-27 01:23:16", "199.21.99.202", "28");
INSERT INTO `wp_rg_form_view` VALUES("36468", "10", "2016-08-27 01:23:17", "199.21.99.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("36469", "3", "2016-08-27 02:28:10", "31.210.94.25", "42");
INSERT INTO `wp_rg_form_view` VALUES("36470", "10", "2016-08-27 02:28:11", "31.210.94.25", "20");
INSERT INTO `wp_rg_form_view` VALUES("36471", "8", "2016-08-27 02:58:51", "207.46.13.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("36472", "3", "2016-08-27 03:13:44", "207.46.13.169", "35");
INSERT INTO `wp_rg_form_view` VALUES("36473", "10", "2016-08-27 03:13:45", "207.46.13.169", "15");
INSERT INTO `wp_rg_form_view` VALUES("36474", "10", "2016-08-27 04:01:26", "68.180.231.44", "244");
INSERT INTO `wp_rg_form_view` VALUES("36475", "3", "2016-08-27 04:01:27", "68.180.231.44", "556");
INSERT INTO `wp_rg_form_view` VALUES("36476", "1", "2016-08-27 04:19:45", "42.115.84.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("36477", "11", "2016-08-27 04:35:48", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("36478", "2", "2016-08-27 04:35:53", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("36479", "12", "2016-08-27 04:37:50", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("36480", "3", "2016-08-27 05:02:36", "207.46.13.169", "63");
INSERT INTO `wp_rg_form_view` VALUES("36481", "10", "2016-08-27 05:02:36", "207.46.13.169", "27");
INSERT INTO `wp_rg_form_view` VALUES("36482", "1", "2016-08-27 06:26:44", "194.1.161.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("36483", "3", "2016-08-27 06:26:45", "194.1.161.87", "39");
INSERT INTO `wp_rg_form_view` VALUES("36484", "10", "2016-08-27 06:26:49", "194.1.161.87", "12");
INSERT INTO `wp_rg_form_view` VALUES("36485", "3", "2016-08-27 07:54:57", "207.46.13.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("36486", "10", "2016-08-27 07:54:59", "207.46.13.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("36487", "3", "2016-08-27 08:08:28", "207.46.13.169", "71");
INSERT INTO `wp_rg_form_view` VALUES("36488", "10", "2016-08-27 08:08:28", "207.46.13.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("36489", "3", "2016-08-27 09:10:08", "77.75.79.101", "88");
INSERT INTO `wp_rg_form_view` VALUES("36490", "10", "2016-08-27 09:10:20", "77.75.79.101", "34");
INSERT INTO `wp_rg_form_view` VALUES("36491", "3", "2016-08-27 10:05:45", "207.241.231.147", "87");
INSERT INTO `wp_rg_form_view` VALUES("36492", "10", "2016-08-27 10:05:45", "207.241.231.147", "36");
INSERT INTO `wp_rg_form_view` VALUES("36493", "3", "2016-08-27 11:04:26", "46.118.238.134", "73");
INSERT INTO `wp_rg_form_view` VALUES("36494", "10", "2016-08-27 11:04:27", "46.118.238.134", "33");
INSERT INTO `wp_rg_form_view` VALUES("36495", "9", "2016-08-27 11:38:51", "207.46.13.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("36496", "3", "2016-08-27 12:08:22", "158.69.52.144", "71");
INSERT INTO `wp_rg_form_view` VALUES("36497", "10", "2016-08-27 12:08:22", "158.69.52.144", "30");
INSERT INTO `wp_rg_form_view` VALUES("36498", "2", "2016-08-27 12:13:59", "207.241.231.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("36499", "3", "2016-08-27 13:33:42", "207.46.13.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("36500", "10", "2016-08-27 13:33:45", "207.46.13.169", "14");
INSERT INTO `wp_rg_form_view` VALUES("36501", "8", "2016-08-27 14:08:08", "207.46.13.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("36502", "3", "2016-08-27 14:08:08", "207.46.13.47", "21");
INSERT INTO `wp_rg_form_view` VALUES("36503", "10", "2016-08-27 14:08:08", "207.46.13.47", "9");
INSERT INTO `wp_rg_form_view` VALUES("36504", "10", "2016-08-27 15:08:03", "157.55.39.224", "67");
INSERT INTO `wp_rg_form_view` VALUES("36505", "3", "2016-08-27 15:08:06", "157.55.39.224", "163");
INSERT INTO `wp_rg_form_view` VALUES("36506", "3", "2016-08-27 16:01:28", "207.241.229.51", "65");
INSERT INTO `wp_rg_form_view` VALUES("36507", "10", "2016-08-27 16:01:28", "207.241.229.51", "27");
INSERT INTO `wp_rg_form_view` VALUES("36508", "3", "2016-08-27 17:13:50", "157.55.39.224", "30");
INSERT INTO `wp_rg_form_view` VALUES("36509", "10", "2016-08-27 17:13:51", "157.55.39.224", "12");
INSERT INTO `wp_rg_form_view` VALUES("36510", "3", "2016-08-27 18:05:12", "157.55.39.224", "39");
INSERT INTO `wp_rg_form_view` VALUES("36511", "10", "2016-08-27 18:05:13", "157.55.39.224", "15");
INSERT INTO `wp_rg_form_view` VALUES("36512", "3", "2016-08-27 19:25:41", "68.180.231.44", "59");
INSERT INTO `wp_rg_form_view` VALUES("36513", "10", "2016-08-27 19:25:42", "68.180.231.44", "24");
INSERT INTO `wp_rg_form_view` VALUES("36514", "3", "2016-08-27 20:09:36", "212.79.106.127", "59");
INSERT INTO `wp_rg_form_view` VALUES("36515", "10", "2016-08-27 20:09:37", "212.79.106.127", "25");
INSERT INTO `wp_rg_form_view` VALUES("36516", "3", "2016-08-27 21:25:16", "207.46.13.169", "29");
INSERT INTO `wp_rg_form_view` VALUES("36517", "10", "2016-08-27 21:25:21", "207.46.13.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("36518", "3", "2016-08-27 22:14:50", "46.118.122.167", "80");
INSERT INTO `wp_rg_form_view` VALUES("36519", "10", "2016-08-27 22:14:54", "46.118.122.167", "32");
INSERT INTO `wp_rg_form_view` VALUES("36520", "10", "2016-08-27 22:14:54", "46.118.122.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("36521", "3", "2016-08-27 23:04:45", "51.255.65.81", "37");
INSERT INTO `wp_rg_form_view` VALUES("36522", "10", "2016-08-27 23:04:45", "51.255.65.81", "15");
INSERT INTO `wp_rg_form_view` VALUES("36523", "3", "2016-08-28 00:08:31", "184.66.148.160", "29");
INSERT INTO `wp_rg_form_view` VALUES("36524", "10", "2016-08-28 00:08:32", "184.66.148.160", "12");
INSERT INTO `wp_rg_form_view` VALUES("36525", "3", "2016-08-28 01:14:03", "51.255.65.53", "79");
INSERT INTO `wp_rg_form_view` VALUES("36526", "10", "2016-08-28 01:14:04", "51.255.65.53", "30");
INSERT INTO `wp_rg_form_view` VALUES("36527", "3", "2016-08-28 02:04:30", "178.137.163.253", "97");
INSERT INTO `wp_rg_form_view` VALUES("36528", "10", "2016-08-28 02:04:30", "178.137.163.253", "39");
INSERT INTO `wp_rg_form_view` VALUES("36529", "9", "2016-08-28 02:19:02", "207.46.13.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("36530", "3", "2016-08-28 03:00:27", "68.180.231.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("36531", "10", "2016-08-28 03:23:53", "40.77.167.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("36532", "3", "2016-08-28 04:10:33", "78.142.63.208", "38");
INSERT INTO `wp_rg_form_view` VALUES("36533", "10", "2016-08-28 04:10:35", "78.142.63.208", "15");
INSERT INTO `wp_rg_form_view` VALUES("36534", "3", "2016-08-28 05:11:59", "66.249.79.112", "83");
INSERT INTO `wp_rg_form_view` VALUES("36535", "10", "2016-08-28 05:12:01", "66.249.79.112", "33");
INSERT INTO `wp_rg_form_view` VALUES("36536", "3", "2016-08-28 06:14:14", "40.77.167.87", "14");
INSERT INTO `wp_rg_form_view` VALUES("36537", "10", "2016-08-28 06:14:15", "40.77.167.87", "6");
INSERT INTO `wp_rg_form_view` VALUES("36538", "3", "2016-08-28 07:35:18", "40.77.167.87", "37");
INSERT INTO `wp_rg_form_view` VALUES("36539", "10", "2016-08-28 07:35:18", "40.77.167.87", "15");
INSERT INTO `wp_rg_form_view` VALUES("36540", "3", "2016-08-28 08:10:54", "66.249.79.108", "56");
INSERT INTO `wp_rg_form_view` VALUES("36541", "10", "2016-08-28 08:10:55", "66.249.79.108", "18");
INSERT INTO `wp_rg_form_view` VALUES("36542", "9", "2016-08-28 08:17:05", "207.46.13.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("36543", "3", "2016-08-28 09:03:54", "207.46.13.161", "66");
INSERT INTO `wp_rg_form_view` VALUES("36544", "10", "2016-08-28 09:03:55", "207.46.13.161", "27");
INSERT INTO `wp_rg_form_view` VALUES("36545", "9", "2016-08-28 09:26:16", "207.46.13.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36546", "3", "2016-08-28 10:06:36", "207.46.13.90", "44");
INSERT INTO `wp_rg_form_view` VALUES("36547", "10", "2016-08-28 10:06:37", "207.46.13.90", "18");
INSERT INTO `wp_rg_form_view` VALUES("36548", "3", "2016-08-28 11:10:14", "207.46.13.177", "30");
INSERT INTO `wp_rg_form_view` VALUES("36549", "10", "2016-08-28 11:10:16", "207.46.13.177", "12");
INSERT INTO `wp_rg_form_view` VALUES("36550", "6", "2016-08-28 11:10:46", "207.46.13.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("36551", "3", "2016-08-28 12:11:10", "195.70.36.115", "54");
INSERT INTO `wp_rg_form_view` VALUES("36552", "10", "2016-08-28 12:11:12", "195.70.36.115", "21");
INSERT INTO `wp_rg_form_view` VALUES("36553", "2", "2016-08-28 13:00:02", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36554", "3", "2016-08-28 13:00:03", "68.180.231.44", "63");
INSERT INTO `wp_rg_form_view` VALUES("36555", "10", "2016-08-28 13:00:03", "68.180.231.44", "24");
INSERT INTO `wp_rg_form_view` VALUES("36556", "3", "2016-08-28 14:00:59", "144.76.153.198", "44");
INSERT INTO `wp_rg_form_view` VALUES("36557", "10", "2016-08-28 14:00:59", "144.76.153.198", "18");
INSERT INTO `wp_rg_form_view` VALUES("36558", "10", "2016-08-28 15:21:47", "207.46.13.90", "31");
INSERT INTO `wp_rg_form_view` VALUES("36559", "3", "2016-08-28 15:21:49", "207.46.13.90", "71");
INSERT INTO `wp_rg_form_view` VALUES("36560", "5", "2016-08-28 15:39:25", "51.255.65.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("36561", "3", "2016-08-28 16:10:15", "68.180.231.44", "59");
INSERT INTO `wp_rg_form_view` VALUES("36562", "10", "2016-08-28 16:17:32", "207.46.13.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("36563", "3", "2016-08-28 17:03:23", "46.118.238.134", "82");
INSERT INTO `wp_rg_form_view` VALUES("36564", "10", "2016-08-28 17:03:23", "46.118.238.134", "33");
INSERT INTO `wp_rg_form_view` VALUES("36565", "3", "2016-08-28 18:08:10", "68.180.231.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("36566", "10", "2016-08-28 18:08:11", "68.180.231.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("36567", "3", "2016-08-28 19:25:14", "68.180.231.44", "52");
INSERT INTO `wp_rg_form_view` VALUES("36568", "10", "2016-08-28 19:25:16", "68.180.231.44", "21");
INSERT INTO `wp_rg_form_view` VALUES("36569", "3", "2016-08-28 20:00:11", "157.55.39.120", "64");
INSERT INTO `wp_rg_form_view` VALUES("36570", "10", "2016-08-28 20:00:11", "157.55.39.120", "28");
INSERT INTO `wp_rg_form_view` VALUES("36571", "3", "2016-08-28 21:06:13", "164.132.161.52", "37");
INSERT INTO `wp_rg_form_view` VALUES("36572", "10", "2016-08-28 21:06:14", "164.132.161.52", "15");
INSERT INTO `wp_rg_form_view` VALUES("36573", "3", "2016-08-28 22:26:37", "66.249.79.112", "14");
INSERT INTO `wp_rg_form_view` VALUES("36574", "10", "2016-08-28 22:26:38", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("36575", "3", "2016-08-28 23:10:02", "164.132.161.82", "28");
INSERT INTO `wp_rg_form_view` VALUES("36576", "10", "2016-08-28 23:10:03", "164.132.161.82", "12");
INSERT INTO `wp_rg_form_view` VALUES("36577", "3", "2016-08-29 00:20:10", "68.180.231.44", "37");
INSERT INTO `wp_rg_form_view` VALUES("36578", "10", "2016-08-29 00:20:11", "68.180.231.44", "15");
INSERT INTO `wp_rg_form_view` VALUES("36579", "3", "2016-08-29 01:14:27", "164.132.161.4", "35");
INSERT INTO `wp_rg_form_view` VALUES("36580", "10", "2016-08-29 01:14:30", "164.132.161.4", "15");
INSERT INTO `wp_rg_form_view` VALUES("36581", "1", "2016-08-29 01:32:02", "207.46.13.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("36582", "3", "2016-08-29 02:04:08", "46.118.157.136", "66");
INSERT INTO `wp_rg_form_view` VALUES("36583", "10", "2016-08-29 02:04:10", "46.118.157.136", "27");
INSERT INTO `wp_rg_form_view` VALUES("36584", "3", "2016-08-29 03:00:39", "199.247.178.212", "42");
INSERT INTO `wp_rg_form_view` VALUES("36585", "10", "2016-08-29 03:00:40", "199.247.178.212", "18");
INSERT INTO `wp_rg_form_view` VALUES("36586", "12", "2016-08-29 03:05:01", "209.52.88.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("36587", "3", "2016-08-29 05:22:53", "157.55.39.58", "98");
INSERT INTO `wp_rg_form_view` VALUES("36588", "10", "2016-08-29 05:22:55", "157.55.39.58", "39");
INSERT INTO `wp_rg_form_view` VALUES("36589", "3", "2016-08-29 06:19:40", "178.137.163.253", "52");
INSERT INTO `wp_rg_form_view` VALUES("36590", "10", "2016-08-29 06:19:48", "178.137.163.253", "21");
INSERT INTO `wp_rg_form_view` VALUES("36591", "1", "2016-08-29 06:52:44", "199.21.115.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("36592", "10", "2016-08-29 07:12:42", "157.55.39.146", "1133");
INSERT INTO `wp_rg_form_view` VALUES("36593", "3", "2016-08-29 07:12:42", "157.55.39.146", "2560");
INSERT INTO `wp_rg_form_view` VALUES("36594", "1", "2016-08-29 07:18:03", "45.55.218.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("36595", "11", "2016-08-29 07:18:17", "45.55.218.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("36596", "12", "2016-08-29 07:28:36", "45.55.218.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("36597", "6", "2016-08-29 07:36:42", "45.55.218.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("36598", "9", "2016-08-29 07:45:26", "45.55.218.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("36599", "3", "2016-08-29 08:00:06", "45.55.218.67", "1855");
INSERT INTO `wp_rg_form_view` VALUES("36600", "10", "2016-08-29 08:00:08", "45.55.218.67", "826");
INSERT INTO `wp_rg_form_view` VALUES("36601", "2", "2016-08-29 08:22:39", "45.55.218.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("36602", "8", "2016-08-29 08:36:16", "45.55.218.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("36603", "12", "2016-08-29 08:59:11", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36604", "3", "2016-08-29 09:04:57", "46.118.122.167", "133");
INSERT INTO `wp_rg_form_view` VALUES("36605", "3", "2016-08-29 09:04:57", "46.118.122.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("36606", "10", "2016-08-29 09:04:58", "46.118.122.167", "51");
INSERT INTO `wp_rg_form_view` VALUES("36607", "3", "2016-08-29 10:04:13", "157.55.39.111", "7");
INSERT INTO `wp_rg_form_view` VALUES("36608", "10", "2016-08-29 10:04:13", "157.55.39.111", "3");
INSERT INTO `wp_rg_form_view` VALUES("36609", "3", "2016-08-29 11:37:15", "66.249.79.108", "50");
INSERT INTO `wp_rg_form_view` VALUES("36610", "10", "2016-08-29 11:37:16", "66.249.79.108", "21");
INSERT INTO `wp_rg_form_view` VALUES("36611", "1", "2016-08-29 11:58:32", "151.237.180.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("36612", "3", "2016-08-29 12:06:16", "220.181.108.150", "32");
INSERT INTO `wp_rg_form_view` VALUES("36613", "10", "2016-08-29 12:06:16", "220.181.108.150", "12");
INSERT INTO `wp_rg_form_view` VALUES("36614", "3", "2016-08-29 13:08:53", "68.180.231.44", "42");
INSERT INTO `wp_rg_form_view` VALUES("36615", "10", "2016-08-29 13:23:00", "66.249.79.108", "15");
INSERT INTO `wp_rg_form_view` VALUES("36616", "3", "2016-08-29 14:05:37", "178.137.94.36", "37");
INSERT INTO `wp_rg_form_view` VALUES("36617", "3", "2016-08-29 14:05:37", "178.137.94.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("36618", "10", "2016-08-29 14:05:38", "178.137.94.36", "13");
INSERT INTO `wp_rg_form_view` VALUES("36619", "10", "2016-08-29 14:05:38", "178.137.94.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("36620", "10", "2016-08-29 14:05:38", "178.137.94.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("36621", "3", "2016-08-29 15:07:52", "66.249.79.112", "58");
INSERT INTO `wp_rg_form_view` VALUES("36622", "10", "2016-08-29 15:07:52", "66.249.79.112", "24");
INSERT INTO `wp_rg_form_view` VALUES("36623", "1", "2016-08-29 15:53:33", "91.108.177.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("36624", "3", "2016-08-29 16:02:52", "164.132.161.84", "29");
INSERT INTO `wp_rg_form_view` VALUES("36625", "10", "2016-08-29 16:02:52", "164.132.161.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("36626", "6", "2016-08-29 16:18:24", "164.132.161.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("36627", "3", "2016-08-29 17:08:15", "51.255.65.27", "47");
INSERT INTO `wp_rg_form_view` VALUES("36628", "10", "2016-08-29 17:08:24", "51.255.65.27", "18");
INSERT INTO `wp_rg_form_view` VALUES("36629", "3", "2016-08-29 18:09:00", "24.108.40.251", "28");
INSERT INTO `wp_rg_form_view` VALUES("36630", "10", "2016-08-29 18:09:01", "24.108.40.251", "12");
INSERT INTO `wp_rg_form_view` VALUES("36631", "10", "2016-08-29 19:04:42", "24.108.4.19", "45");
INSERT INTO `wp_rg_form_view` VALUES("36632", "3", "2016-08-29 19:04:42", "24.108.4.19", "101");
INSERT INTO `wp_rg_form_view` VALUES("36633", "13", "2016-08-29 19:24:37", "46.118.122.167", "9");
INSERT INTO `wp_rg_form_view` VALUES("36634", "13", "2016-08-29 20:05:47", "184.66.10.118", "32");
INSERT INTO `wp_rg_form_view` VALUES("36635", "3", "2016-08-29 20:05:55", "184.66.10.118", "209");
INSERT INTO `wp_rg_form_view` VALUES("36636", "10", "2016-08-29 20:05:56", "184.66.10.118", "57");
INSERT INTO `wp_rg_form_view` VALUES("36637", "3", "2016-08-29 21:14:52", "142.36.242.175", "459");
INSERT INTO `wp_rg_form_view` VALUES("36638", "13", "2016-08-29 21:14:52", "142.36.242.175", "65");
INSERT INTO `wp_rg_form_view` VALUES("36639", "10", "2016-08-29 21:14:52", "142.36.242.175", "144");
INSERT INTO `wp_rg_form_view` VALUES("36640", "8", "2016-08-29 21:41:53", "157.55.39.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("36641", "7", "2016-08-29 21:42:38", "157.55.39.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("36642", "3", "2016-08-29 22:25:21", "66.249.79.112", "8");
INSERT INTO `wp_rg_form_view` VALUES("36643", "13", "2016-08-29 22:25:24", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("36644", "10", "2016-08-29 22:25:24", "66.249.79.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("36645", "13", "2016-08-29 23:01:46", "66.249.79.108", "16");
INSERT INTO `wp_rg_form_view` VALUES("36646", "3", "2016-08-29 23:01:47", "66.249.79.108", "98");
INSERT INTO `wp_rg_form_view` VALUES("36647", "10", "2016-08-29 23:01:48", "66.249.79.108", "28");
INSERT INTO `wp_rg_form_view` VALUES("36648", "1", "2016-08-29 23:27:52", "96.50.26.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("36649", "3", "2016-08-30 00:14:08", "178.137.163.253", "23");
INSERT INTO `wp_rg_form_view` VALUES("36650", "13", "2016-08-30 00:14:11", "178.137.163.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("36651", "10", "2016-08-30 00:14:11", "178.137.163.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("36652", "11", "2016-08-30 00:48:04", "157.55.39.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("36653", "3", "2016-08-30 01:52:21", "46.118.122.167", "24");
INSERT INTO `wp_rg_form_view` VALUES("36654", "13", "2016-08-30 01:52:24", "46.118.122.167", "3");
INSERT INTO `wp_rg_form_view` VALUES("36655", "10", "2016-08-30 01:52:24", "46.118.122.167", "5");
INSERT INTO `wp_rg_form_view` VALUES("36656", "10", "2016-08-30 01:52:24", "46.118.122.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("36657", "3", "2016-08-30 02:12:00", "66.249.79.112", "35");
INSERT INTO `wp_rg_form_view` VALUES("36658", "13", "2016-08-30 02:12:01", "66.249.79.112", "5");
INSERT INTO `wp_rg_form_view` VALUES("36659", "10", "2016-08-30 02:12:01", "66.249.79.112", "10");
INSERT INTO `wp_rg_form_view` VALUES("36660", "1", "2016-08-30 02:30:58", "154.5.209.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("36661", "12", "2016-08-30 03:20:05", "164.132.161.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("36662", "3", "2016-08-30 03:20:15", "164.132.161.81", "21");
INSERT INTO `wp_rg_form_view` VALUES("36663", "13", "2016-08-30 03:20:15", "164.132.161.81", "3");
INSERT INTO `wp_rg_form_view` VALUES("36664", "10", "2016-08-30 03:20:15", "164.132.161.81", "6");
INSERT INTO `wp_rg_form_view` VALUES("36665", "3", "2016-08-30 04:57:41", "54.243.143.219", "7");
INSERT INTO `wp_rg_form_view` VALUES("36666", "13", "2016-08-30 04:57:43", "54.243.143.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("36667", "10", "2016-08-30 04:57:43", "54.243.143.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("36668", "3", "2016-08-30 05:01:56", "68.180.231.44", "86");
INSERT INTO `wp_rg_form_view` VALUES("36669", "13", "2016-08-30 05:01:56", "68.180.231.44", "11");
INSERT INTO `wp_rg_form_view` VALUES("36670", "10", "2016-08-30 05:01:56", "68.180.231.44", "20");
INSERT INTO `wp_rg_form_view` VALUES("36671", "3", "2016-08-30 09:25:44", "68.180.231.44", "7");
INSERT INTO `wp_rg_form_view` VALUES("36672", "13", "2016-08-30 09:25:46", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36673", "10", "2016-08-30 09:25:46", "68.180.231.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("36674", "13", "2016-08-30 10:04:45", "68.180.231.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("36675", "3", "2016-08-30 10:04:46", "68.180.231.44", "58");
INSERT INTO `wp_rg_form_view` VALUES("36676", "10", "2016-08-30 10:04:46", "68.180.231.44", "16");
INSERT INTO `wp_rg_form_view` VALUES("36677", "13", "2016-08-30 11:03:15", "68.180.231.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("36678", "3", "2016-08-30 11:09:54", "178.137.163.253", "39");
INSERT INTO `wp_rg_form_view` VALUES("36679", "10", "2016-08-30 11:09:55", "178.137.163.253", "10");
INSERT INTO `wp_rg_form_view` VALUES("36680", "13", "2016-08-30 13:11:50", "66.249.79.108", "3");
INSERT INTO `wp_rg_form_view` VALUES("36681", "3", "2016-08-30 13:39:40", "157.55.39.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("36682", "10", "2016-08-30 13:39:40", "157.55.39.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("36683", "3", "2016-08-30 14:15:31", "46.118.122.167", "39");
INSERT INTO `wp_rg_form_view` VALUES("36684", "13", "2016-08-30 14:15:34", "46.118.122.167", "5");
INSERT INTO `wp_rg_form_view` VALUES("36685", "10", "2016-08-30 14:15:34", "46.118.122.167", "10");
INSERT INTO `wp_rg_form_view` VALUES("36686", "1", "2016-08-30 15:01:50", "87.98.167.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("36687", "3", "2016-08-30 15:01:50", "87.98.167.214", "124");
INSERT INTO `wp_rg_form_view` VALUES("36688", "13", "2016-08-30 15:01:51", "87.98.167.214", "17");
INSERT INTO `wp_rg_form_view` VALUES("36689", "10", "2016-08-30 15:01:51", "87.98.167.214", "34");
INSERT INTO `wp_rg_form_view` VALUES("36690", "8", "2016-08-30 15:09:13", "51.255.65.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("36691", "2", "2016-08-30 15:19:58", "54.160.223.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("36692", "3", "2016-08-30 16:18:47", "68.180.231.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("36693", "13", "2016-08-30 16:43:14", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("36694", "10", "2016-08-30 16:43:14", "66.249.79.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("36695", "3", "2016-08-30 17:11:15", "154.20.42.114", "35");
INSERT INTO `wp_rg_form_view` VALUES("36696", "13", "2016-08-30 17:11:16", "154.20.42.114", "5");
INSERT INTO `wp_rg_form_view` VALUES("36697", "10", "2016-08-30 17:11:16", "154.20.42.114", "10");
INSERT INTO `wp_rg_form_view` VALUES("36698", "3", "2016-08-30 18:05:07", "96.50.6.244", "194");
INSERT INTO `wp_rg_form_view` VALUES("36699", "13", "2016-08-30 18:05:08", "96.50.6.244", "27");
INSERT INTO `wp_rg_form_view` VALUES("36700", "10", "2016-08-30 18:05:08", "96.50.6.244", "52");
INSERT INTO `wp_rg_form_view` VALUES("36701", "9", "2016-08-30 18:52:45", "164.132.161.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("36702", "3", "2016-08-30 19:06:10", "199.21.99.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("36703", "13", "2016-08-30 19:06:10", "199.21.99.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("36704", "10", "2016-08-30 19:06:11", "199.21.99.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("36705", "11", "2016-08-30 19:38:15", "157.55.39.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("36706", "12", "2016-08-30 20:42:49", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36707", "3", "2016-08-30 20:42:54", "68.180.231.44", "21");
INSERT INTO `wp_rg_form_view` VALUES("36708", "13", "2016-08-30 20:42:54", "68.180.231.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("36709", "10", "2016-08-30 20:42:54", "68.180.231.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("36710", "3", "2016-08-30 21:11:43", "24.69.17.166", "164");
INSERT INTO `wp_rg_form_view` VALUES("36711", "13", "2016-08-30 21:11:43", "24.69.17.166", "22");
INSERT INTO `wp_rg_form_view` VALUES("36712", "10", "2016-08-30 21:11:43", "24.69.17.166", "42");
INSERT INTO `wp_rg_form_view` VALUES("36713", "3", "2016-08-30 22:11:53", "46.118.157.136", "83");
INSERT INTO `wp_rg_form_view` VALUES("36714", "13", "2016-08-30 22:11:53", "46.118.157.136", "11");
INSERT INTO `wp_rg_form_view` VALUES("36715", "10", "2016-08-30 22:11:53", "46.118.157.136", "24");
INSERT INTO `wp_rg_form_view` VALUES("36716", "3", "2016-08-30 23:14:44", "178.137.163.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("36717", "3", "2016-08-30 23:14:44", "178.137.163.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("36718", "13", "2016-08-30 23:14:46", "178.137.163.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("36719", "13", "2016-08-30 23:14:46", "178.137.163.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("36720", "10", "2016-08-30 23:14:46", "178.137.163.253", "7");
INSERT INTO `wp_rg_form_view` VALUES("36721", "10", "2016-08-30 23:14:46", "178.137.163.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("36722", "3", "2016-08-31 00:25:33", "66.249.79.112", "22");
INSERT INTO `wp_rg_form_view` VALUES("36723", "13", "2016-08-31 00:25:35", "66.249.79.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("36724", "10", "2016-08-31 00:25:35", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("36725", "3", "2016-08-31 01:13:04", "68.180.231.44", "30");
INSERT INTO `wp_rg_form_view` VALUES("36726", "13", "2016-08-31 01:13:05", "68.180.231.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("36727", "10", "2016-08-31 01:13:05", "68.180.231.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("36728", "3", "2016-08-31 02:04:05", "178.137.94.36", "60");
INSERT INTO `wp_rg_form_view` VALUES("36729", "13", "2016-08-31 02:04:06", "178.137.94.36", "8");
INSERT INTO `wp_rg_form_view` VALUES("36730", "10", "2016-08-31 02:04:06", "178.137.94.36", "17");
INSERT INTO `wp_rg_form_view` VALUES("36731", "3", "2016-08-31 03:20:24", "24.68.17.97", "44");
INSERT INTO `wp_rg_form_view` VALUES("36732", "13", "2016-08-31 03:20:28", "24.68.17.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("36733", "10", "2016-08-31 03:20:28", "24.68.17.97", "10");
INSERT INTO `wp_rg_form_view` VALUES("36734", "3", "2016-08-31 04:30:03", "77.75.77.72", "14");
INSERT INTO `wp_rg_form_view` VALUES("36735", "13", "2016-08-31 04:30:05", "77.75.77.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("36736", "10", "2016-08-31 04:30:05", "77.75.77.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("36737", "3", "2016-08-31 05:00:27", "157.55.39.9", "51");
INSERT INTO `wp_rg_form_view` VALUES("36738", "13", "2016-08-31 05:00:36", "157.55.39.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("36739", "10", "2016-08-31 05:00:37", "157.55.39.9", "14");
INSERT INTO `wp_rg_form_view` VALUES("36740", "3", "2016-08-31 06:36:30", "104.168.47.206", "21");
INSERT INTO `wp_rg_form_view` VALUES("36741", "13", "2016-08-31 06:36:32", "104.168.47.206", "3");
INSERT INTO `wp_rg_form_view` VALUES("36742", "10", "2016-08-31 06:36:32", "104.168.47.206", "6");
INSERT INTO `wp_rg_form_view` VALUES("36743", "2", "2016-08-31 07:20:09", "46.118.115.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("36744", "3", "2016-08-31 07:20:12", "46.118.115.181", "268");
INSERT INTO `wp_rg_form_view` VALUES("36745", "13", "2016-08-31 07:20:12", "46.118.115.181", "39");
INSERT INTO `wp_rg_form_view` VALUES("36746", "10", "2016-08-31 07:20:12", "46.118.115.181", "74");
INSERT INTO `wp_rg_form_view` VALUES("36747", "11", "2016-08-31 07:39:11", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("36748", "3", "2016-08-31 08:13:06", "77.75.77.32", "21");
INSERT INTO `wp_rg_form_view` VALUES("36749", "13", "2016-08-31 08:13:08", "77.75.77.32", "3");
INSERT INTO `wp_rg_form_view` VALUES("36750", "10", "2016-08-31 08:13:08", "77.75.77.32", "6");
INSERT INTO `wp_rg_form_view` VALUES("36751", "5", "2016-08-31 10:06:47", "77.75.78.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("36752", "3", "2016-08-31 10:06:50", "77.75.78.171", "78");
INSERT INTO `wp_rg_form_view` VALUES("36753", "13", "2016-08-31 10:06:52", "77.75.78.171", "10");
INSERT INTO `wp_rg_form_view` VALUES("36754", "10", "2016-08-31 10:06:52", "77.75.78.171", "18");
INSERT INTO `wp_rg_form_view` VALUES("36755", "11", "2016-08-31 10:48:53", "164.132.161.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("36756", "3", "2016-08-31 11:17:03", "157.55.39.9", "72");
INSERT INTO `wp_rg_form_view` VALUES("36757", "13", "2016-08-31 11:17:03", "157.55.39.9", "10");
INSERT INTO `wp_rg_form_view` VALUES("36758", "10", "2016-08-31 11:17:03", "157.55.39.9", "20");
INSERT INTO `wp_rg_form_view` VALUES("36759", "9", "2016-08-31 11:26:46", "157.55.39.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("36760", "1", "2016-08-31 11:47:43", "46.118.123.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("36761", "3", "2016-08-31 13:10:09", "157.55.39.9", "28");
INSERT INTO `wp_rg_form_view` VALUES("36762", "13", "2016-08-31 13:10:12", "157.55.39.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("36763", "10", "2016-08-31 13:10:12", "157.55.39.9", "8");
INSERT INTO `wp_rg_form_view` VALUES("36764", "3", "2016-08-31 14:05:54", "164.132.161.18", "51");
INSERT INTO `wp_rg_form_view` VALUES("36765", "13", "2016-08-31 14:05:55", "164.132.161.18", "8");
INSERT INTO `wp_rg_form_view` VALUES("36766", "10", "2016-08-31 14:05:55", "164.132.161.18", "16");
INSERT INTO `wp_rg_form_view` VALUES("36767", "1", "2016-08-31 14:54:51", "178.32.12.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("36768", "3", "2016-08-31 15:14:44", "157.55.39.202", "28");
INSERT INTO `wp_rg_form_view` VALUES("36769", "13", "2016-08-31 15:14:48", "157.55.39.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("36770", "10", "2016-08-31 15:14:48", "157.55.39.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("36771", "10", "2016-08-31 16:04:24", "96.50.61.173", "31");
INSERT INTO `wp_rg_form_view` VALUES("36772", "3", "2016-08-31 16:04:27", "96.50.61.173", "111");
INSERT INTO `wp_rg_form_view` VALUES("36773", "13", "2016-08-31 16:04:27", "96.50.61.173", "15");
INSERT INTO `wp_rg_form_view` VALUES("36774", "3", "2016-08-31 17:21:26", "178.137.163.253", "39");
INSERT INTO `wp_rg_form_view` VALUES("36775", "3", "2016-08-31 17:21:26", "178.137.163.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("36776", "13", "2016-08-31 17:21:30", "178.137.163.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("36777", "10", "2016-08-31 17:21:30", "178.137.163.253", "8");
INSERT INTO `wp_rg_form_view` VALUES("36778", "10", "2016-08-31 17:21:30", "178.137.163.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("36779", "10", "2016-08-31 17:21:30", "178.137.163.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("36780", "3", "2016-08-31 18:11:47", "178.137.163.253", "279");
INSERT INTO `wp_rg_form_view` VALUES("36781", "13", "2016-08-31 18:11:49", "178.137.163.253", "39");
INSERT INTO `wp_rg_form_view` VALUES("36782", "10", "2016-08-31 18:11:49", "178.137.163.253", "79");
INSERT INTO `wp_rg_form_view` VALUES("36783", "2", "2016-08-31 18:40:08", "58.221.42.254", "3");
INSERT INTO `wp_rg_form_view` VALUES("36784", "3", "2016-08-31 19:14:04", "192.171.58.118", "36");
INSERT INTO `wp_rg_form_view` VALUES("36785", "13", "2016-08-31 19:14:06", "192.171.58.118", "5");
INSERT INTO `wp_rg_form_view` VALUES("36786", "10", "2016-08-31 19:14:07", "192.171.58.118", "10");
INSERT INTO `wp_rg_form_view` VALUES("36787", "3", "2016-08-31 20:00:23", "157.55.39.9", "53");
INSERT INTO `wp_rg_form_view` VALUES("36788", "13", "2016-08-31 20:00:23", "157.55.39.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("36789", "10", "2016-08-31 20:00:23", "157.55.39.9", "14");
INSERT INTO `wp_rg_form_view` VALUES("36790", "3", "2016-08-31 21:04:40", "51.255.65.18", "52");
INSERT INTO `wp_rg_form_view` VALUES("36791", "13", "2016-08-31 21:04:41", "51.255.65.18", "7");
INSERT INTO `wp_rg_form_view` VALUES("36792", "10", "2016-08-31 21:04:41", "51.255.65.18", "15");
INSERT INTO `wp_rg_form_view` VALUES("36793", "1", "2016-08-31 21:23:34", "164.132.161.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("36794", "3", "2016-08-31 22:05:33", "157.55.39.9", "45");
INSERT INTO `wp_rg_form_view` VALUES("36795", "13", "2016-08-31 22:05:34", "157.55.39.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("36796", "10", "2016-08-31 22:05:34", "157.55.39.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("36797", "3", "2016-08-31 23:21:51", "207.46.13.185", "711");
INSERT INTO `wp_rg_form_view` VALUES("36798", "13", "2016-08-31 23:21:52", "207.46.13.185", "96");
INSERT INTO `wp_rg_form_view` VALUES("36799", "10", "2016-08-31 23:21:55", "207.46.13.185", "195");
INSERT INTO `wp_rg_form_view` VALUES("36800", "9", "2016-08-31 23:22:06", "207.46.13.185", "4");
INSERT INTO `wp_rg_form_view` VALUES("36801", "8", "2016-08-31 23:23:22", "157.55.39.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("36802", "5", "2016-08-31 23:23:32", "157.55.39.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("36803", "6", "2016-08-31 23:23:41", "157.55.39.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("36804", "3", "2016-09-01 00:07:30", "46.118.122.167", "52");
INSERT INTO `wp_rg_form_view` VALUES("36805", "13", "2016-09-01 00:07:34", "46.118.122.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("36806", "10", "2016-09-01 00:07:34", "46.118.122.167", "13");
INSERT INTO `wp_rg_form_view` VALUES("36807", "10", "2016-09-01 00:07:34", "46.118.122.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("36808", "3", "2016-09-01 01:10:33", "96.50.17.225", "28");
INSERT INTO `wp_rg_form_view` VALUES("36809", "13", "2016-09-01 01:10:33", "96.50.17.225", "4");
INSERT INTO `wp_rg_form_view` VALUES("36810", "10", "2016-09-01 01:10:33", "96.50.17.225", "8");
INSERT INTO `wp_rg_form_view` VALUES("36811", "12", "2016-09-01 02:00:59", "66.249.79.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("36812", "3", "2016-09-01 02:00:59", "66.249.79.112", "21");
INSERT INTO `wp_rg_form_view` VALUES("36813", "13", "2016-09-01 02:00:59", "66.249.79.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("36814", "10", "2016-09-01 02:00:59", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("36815", "3", "2016-09-01 03:17:58", "154.5.209.196", "62");
INSERT INTO `wp_rg_form_view` VALUES("36816", "13", "2016-09-01 03:18:01", "154.5.209.196", "8");
INSERT INTO `wp_rg_form_view` VALUES("36817", "10", "2016-09-01 03:18:01", "154.5.209.196", "16");
INSERT INTO `wp_rg_form_view` VALUES("36818", "3", "2016-09-01 04:01:47", "46.118.157.136", "55");
INSERT INTO `wp_rg_form_view` VALUES("36819", "13", "2016-09-01 04:01:47", "46.118.157.136", "7");
INSERT INTO `wp_rg_form_view` VALUES("36820", "10", "2016-09-01 04:01:47", "46.118.157.136", "14");
INSERT INTO `wp_rg_form_view` VALUES("36821", "3", "2016-09-01 05:12:50", "157.55.39.202", "31");
INSERT INTO `wp_rg_form_view` VALUES("36822", "13", "2016-09-01 05:13:00", "157.55.39.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("36823", "10", "2016-09-01 05:13:00", "157.55.39.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("36824", "1", "2016-09-01 06:07:03", "185.48.206.86", "4");
INSERT INTO `wp_rg_form_view` VALUES("36825", "3", "2016-09-01 06:07:04", "185.48.206.86", "126");
INSERT INTO `wp_rg_form_view` VALUES("36826", "13", "2016-09-01 06:07:05", "185.48.206.86", "17");
INSERT INTO `wp_rg_form_view` VALUES("36827", "10", "2016-09-01 06:07:05", "185.48.206.86", "34");
INSERT INTO `wp_rg_form_view` VALUES("36828", "3", "2016-09-01 07:39:21", "157.55.39.202", "55");
INSERT INTO `wp_rg_form_view` VALUES("36829", "13", "2016-09-01 07:39:25", "157.55.39.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("36830", "10", "2016-09-01 07:39:25", "157.55.39.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("36831", "3", "2016-09-01 08:01:47", "77.75.78.167", "30");
INSERT INTO `wp_rg_form_view` VALUES("36832", "13", "2016-09-01 08:01:47", "77.75.78.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("36833", "10", "2016-09-01 08:01:47", "77.75.78.167", "8");
INSERT INTO `wp_rg_form_view` VALUES("36834", "3", "2016-09-01 09:45:38", "40.77.167.46", "7");
INSERT INTO `wp_rg_form_view` VALUES("36835", "13", "2016-09-01 09:45:41", "40.77.167.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("36836", "10", "2016-09-01 09:45:41", "40.77.167.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("36837", "8", "2016-09-01 10:42:54", "157.55.39.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("36838", "3", "2016-09-01 10:42:55", "157.55.39.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("36839", "13", "2016-09-01 10:42:56", "157.55.39.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("36840", "10", "2016-09-01 10:42:56", "157.55.39.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("36841", "3", "2016-09-01 11:06:46", "178.137.94.36", "79");
INSERT INTO `wp_rg_form_view` VALUES("36842", "3", "2016-09-01 11:06:46", "178.137.94.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("36843", "13", "2016-09-01 11:06:48", "178.137.94.36", "11");
INSERT INTO `wp_rg_form_view` VALUES("36844", "10", "2016-09-01 11:06:48", "178.137.94.36", "22");
INSERT INTO `wp_rg_form_view` VALUES("36845", "10", "2016-09-01 11:06:48", "178.137.94.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("36846", "1", "2016-09-01 11:59:39", "178.32.80.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("36847", "3", "2016-09-01 12:13:00", "178.137.163.253", "45");
INSERT INTO `wp_rg_form_view` VALUES("36848", "13", "2016-09-01 12:13:00", "178.137.163.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("36849", "10", "2016-09-01 12:13:00", "178.137.163.253", "12");
INSERT INTO `wp_rg_form_view` VALUES("36850", "9", "2016-09-01 13:32:03", "157.55.39.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("36851", "3", "2016-09-01 13:32:04", "157.55.39.202", "15");
INSERT INTO `wp_rg_form_view` VALUES("36852", "13", "2016-09-01 13:32:04", "157.55.39.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("36853", "10", "2016-09-01 13:32:04", "157.55.39.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("36854", "6", "2016-09-01 14:10:54", "5.9.145.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("36855", "3", "2016-09-01 14:11:09", "5.9.145.132", "212");
INSERT INTO `wp_rg_form_view` VALUES("36856", "13", "2016-09-01 14:11:09", "5.9.145.132", "30");
INSERT INTO `wp_rg_form_view` VALUES("36857", "10", "2016-09-01 14:11:09", "5.9.145.132", "60");
INSERT INTO `wp_rg_form_view` VALUES("36858", "11", "2016-09-01 14:28:27", "199.115.228.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("36859", "12", "2016-09-01 14:29:02", "199.115.228.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("36860", "2", "2016-09-01 14:29:56", "199.115.228.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("36861", "9", "2016-09-01 14:56:16", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36862", "3", "2016-09-01 15:10:08", "157.55.39.9", "44");
INSERT INTO `wp_rg_form_view` VALUES("36863", "13", "2016-09-01 15:10:09", "157.55.39.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("36864", "10", "2016-09-01 15:10:09", "157.55.39.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("36865", "12", "2016-09-01 15:48:17", "157.55.39.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("36866", "10", "2016-09-01 16:03:50", "199.59.148.210", "11");
INSERT INTO `wp_rg_form_view` VALUES("36867", "3", "2016-09-01 16:03:51", "199.59.148.210", "37");
INSERT INTO `wp_rg_form_view` VALUES("36868", "13", "2016-09-01 16:03:51", "199.59.148.210", "5");
INSERT INTO `wp_rg_form_view` VALUES("36869", "2", "2016-09-01 16:13:40", "157.55.39.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("36870", "3", "2016-09-01 17:01:19", "100.43.91.14", "147");
INSERT INTO `wp_rg_form_view` VALUES("36871", "13", "2016-09-01 17:01:20", "100.43.91.14", "20");
INSERT INTO `wp_rg_form_view` VALUES("36872", "10", "2016-09-01 17:01:20", "100.43.91.14", "41");
INSERT INTO `wp_rg_form_view` VALUES("36873", "3", "2016-09-01 18:24:51", "5.255.250.69", "75");
INSERT INTO `wp_rg_form_view` VALUES("36874", "13", "2016-09-01 18:24:52", "5.255.250.69", "11");
INSERT INTO `wp_rg_form_view` VALUES("36875", "10", "2016-09-01 18:24:52", "5.255.250.69", "24");
INSERT INTO `wp_rg_form_view` VALUES("36876", "1", "2016-09-01 18:47:05", "87.98.167.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("36877", "3", "2016-09-01 19:02:50", "68.180.231.44", "44");
INSERT INTO `wp_rg_form_view` VALUES("36878", "13", "2016-09-01 19:02:50", "68.180.231.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("36879", "10", "2016-09-01 19:02:50", "68.180.231.44", "15");
INSERT INTO `wp_rg_form_view` VALUES("36880", "10", "2016-09-01 20:07:41", "209.52.88.56", "14");
INSERT INTO `wp_rg_form_view` VALUES("36881", "3", "2016-09-01 20:07:43", "209.52.88.56", "35");
INSERT INTO `wp_rg_form_view` VALUES("36882", "13", "2016-09-01 20:07:44", "209.52.88.56", "5");
INSERT INTO `wp_rg_form_view` VALUES("36883", "3", "2016-09-01 21:02:56", "107.150.83.240", "178");
INSERT INTO `wp_rg_form_view` VALUES("36884", "13", "2016-09-01 21:02:56", "107.150.83.240", "24");
INSERT INTO `wp_rg_form_view` VALUES("36885", "10", "2016-09-01 21:02:56", "107.150.83.240", "51");
INSERT INTO `wp_rg_form_view` VALUES("36886", "1", "2016-09-01 21:59:39", "199.60.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("36887", "3", "2016-09-01 22:01:37", "199.60.104.18", "182");
INSERT INTO `wp_rg_form_view` VALUES("36888", "13", "2016-09-01 22:01:37", "199.60.104.18", "25");
INSERT INTO `wp_rg_form_view` VALUES("36889", "10", "2016-09-01 22:01:38", "199.60.104.18", "51");
INSERT INTO `wp_rg_form_view` VALUES("36890", "10", "2016-09-01 23:00:51", "96.50.53.128", "22");
INSERT INTO `wp_rg_form_view` VALUES("36891", "3", "2016-09-01 23:00:51", "96.50.53.128", "75");
INSERT INTO `wp_rg_form_view` VALUES("36892", "13", "2016-09-01 23:00:51", "96.50.53.128", "10");
INSERT INTO `wp_rg_form_view` VALUES("36893", "5", "2016-09-01 23:19:26", "157.55.39.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("36894", "9", "2016-09-01 23:19:53", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("36895", "1", "2016-09-01 23:24:19", "1.160.5.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("36896", "3", "2016-09-02 00:20:41", "46.118.238.134", "78");
INSERT INTO `wp_rg_form_view` VALUES("36897", "13", "2016-09-02 00:20:42", "46.118.238.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("36898", "10", "2016-09-02 00:20:42", "46.118.238.134", "20");
INSERT INTO `wp_rg_form_view` VALUES("36899", "3", "2016-09-02 01:00:22", "77.75.78.163", "100");
INSERT INTO `wp_rg_form_view` VALUES("36900", "13", "2016-09-02 01:00:23", "77.75.78.163", "14");
INSERT INTO `wp_rg_form_view` VALUES("36901", "10", "2016-09-02 01:00:23", "77.75.78.163", "31");
INSERT INTO `wp_rg_form_view` VALUES("36902", "10", "2016-09-02 02:09:16", "216.232.151.226", "6");
INSERT INTO `wp_rg_form_view` VALUES("36903", "3", "2016-09-02 02:09:21", "216.232.151.226", "14");
INSERT INTO `wp_rg_form_view` VALUES("36904", "13", "2016-09-02 02:09:22", "216.232.151.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("36905", "8", "2016-09-02 02:11:18", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("36906", "10", "2016-09-02 03:03:04", "199.126.228.21", "28");
INSERT INTO `wp_rg_form_view` VALUES("36907", "3", "2016-09-02 03:03:08", "199.126.228.21", "93");
INSERT INTO `wp_rg_form_view` VALUES("36908", "13", "2016-09-02 03:03:08", "199.126.228.21", "14");
INSERT INTO `wp_rg_form_view` VALUES("36909", "1", "2016-09-02 03:28:13", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("36910", "12", "2016-09-02 03:31:21", "157.55.39.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("36911", "3", "2016-09-02 04:11:35", "157.55.39.202", "44");
INSERT INTO `wp_rg_form_view` VALUES("36912", "13", "2016-09-02 04:11:35", "157.55.39.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("36913", "10", "2016-09-02 04:11:35", "157.55.39.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("36914", "3", "2016-09-02 05:40:13", "40.77.167.46", "35");
INSERT INTO `wp_rg_form_view` VALUES("36915", "13", "2016-09-02 05:40:15", "40.77.167.46", "5");
INSERT INTO `wp_rg_form_view` VALUES("36916", "10", "2016-09-02 05:40:15", "40.77.167.46", "10");
INSERT INTO `wp_rg_form_view` VALUES("36917", "3", "2016-09-02 06:29:12", "157.55.39.19", "36");
INSERT INTO `wp_rg_form_view` VALUES("36918", "13", "2016-09-02 06:29:16", "157.55.39.19", "5");
INSERT INTO `wp_rg_form_view` VALUES("36919", "10", "2016-09-02 06:29:16", "157.55.39.19", "10");
INSERT INTO `wp_rg_form_view` VALUES("36920", "11", "2016-09-02 07:14:23", "157.55.39.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("36921", "3", "2016-09-02 07:14:26", "157.55.39.245", "64");
INSERT INTO `wp_rg_form_view` VALUES("36922", "13", "2016-09-02 07:14:26", "157.55.39.245", "9");
INSERT INTO `wp_rg_form_view` VALUES("36923", "10", "2016-09-02 07:14:26", "157.55.39.245", "19");
INSERT INTO `wp_rg_form_view` VALUES("36924", "1", "2016-09-02 07:34:06", "87.98.167.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("36925", "3", "2016-09-02 08:45:13", "40.77.167.75", "37");
INSERT INTO `wp_rg_form_view` VALUES("36926", "13", "2016-09-02 08:45:15", "40.77.167.75", "5");
INSERT INTO `wp_rg_form_view` VALUES("36927", "10", "2016-09-02 08:45:16", "40.77.167.75", "10");
INSERT INTO `wp_rg_form_view` VALUES("36928", "3", "2016-09-02 09:01:18", "199.21.99.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("36929", "13", "2016-09-02 09:01:18", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("36930", "10", "2016-09-02 09:01:19", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("36931", "3", "2016-09-02 10:02:12", "66.249.79.112", "39");
INSERT INTO `wp_rg_form_view` VALUES("36932", "13", "2016-09-02 10:02:23", "66.249.79.112", "5");
INSERT INTO `wp_rg_form_view` VALUES("36933", "10", "2016-09-02 10:02:23", "66.249.79.112", "10");
INSERT INTO `wp_rg_form_view` VALUES("36934", "3", "2016-09-02 11:10:17", "40.77.167.75", "38");
INSERT INTO `wp_rg_form_view` VALUES("36935", "13", "2016-09-02 11:10:21", "40.77.167.75", "6");
INSERT INTO `wp_rg_form_view` VALUES("36936", "10", "2016-09-02 11:10:21", "40.77.167.75", "18");
INSERT INTO `wp_rg_form_view` VALUES("36937", "1", "2016-09-02 12:24:15", "176.108.188.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("36938", "3", "2016-09-02 12:24:17", "176.108.188.5", "126");
INSERT INTO `wp_rg_form_view` VALUES("36939", "13", "2016-09-02 12:24:21", "176.108.188.5", "17");
INSERT INTO `wp_rg_form_view` VALUES("36940", "10", "2016-09-02 12:24:21", "176.108.188.5", "34");
INSERT INTO `wp_rg_form_view` VALUES("36941", "3", "2016-09-02 13:00:28", "157.55.39.245", "117");
INSERT INTO `wp_rg_form_view` VALUES("36942", "13", "2016-09-02 13:00:29", "157.55.39.245", "16");
INSERT INTO `wp_rg_form_view` VALUES("36943", "10", "2016-09-02 13:00:29", "157.55.39.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("36944", "1", "2016-09-02 13:39:21", "91.108.177.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("36945", "3", "2016-09-02 14:03:25", "157.55.39.129", "71");
INSERT INTO `wp_rg_form_view` VALUES("36946", "13", "2016-09-02 14:03:26", "157.55.39.129", "11");
INSERT INTO `wp_rg_form_view` VALUES("36947", "10", "2016-09-02 14:03:26", "157.55.39.129", "20");
INSERT INTO `wp_rg_form_view` VALUES("36948", "11", "2016-09-02 14:19:13", "157.55.39.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("36949", "1", "2016-09-02 15:23:35", "104.129.59.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("36950", "3", "2016-09-02 15:23:36", "104.129.59.167", "15");
INSERT INTO `wp_rg_form_view` VALUES("36951", "13", "2016-09-02 15:23:39", "104.129.59.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("36952", "10", "2016-09-02 15:23:39", "104.129.59.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("36953", "3", "2016-09-02 16:12:52", "68.180.231.44", "98");
INSERT INTO `wp_rg_form_view` VALUES("36954", "13", "2016-09-02 16:12:54", "68.180.231.44", "15");
INSERT INTO `wp_rg_form_view` VALUES("36955", "10", "2016-09-02 16:12:54", "68.180.231.44", "28");
INSERT INTO `wp_rg_form_view` VALUES("36956", "2", "2016-09-02 16:51:03", "216.244.66.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("36957", "3", "2016-09-02 17:02:22", "207.46.13.20", "36");
INSERT INTO `wp_rg_form_view` VALUES("36958", "13", "2016-09-02 17:02:23", "207.46.13.20", "5");
INSERT INTO `wp_rg_form_view` VALUES("36959", "10", "2016-09-02 17:02:23", "207.46.13.20", "10");
INSERT INTO `wp_rg_form_view` VALUES("36960", "1", "2016-09-02 17:07:51", "91.108.177.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("36961", "3", "2016-09-02 18:03:00", "178.137.163.253", "64");
INSERT INTO `wp_rg_form_view` VALUES("36962", "3", "2016-09-02 18:03:00", "178.137.163.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("36963", "13", "2016-09-02 18:03:10", "178.137.163.253", "9");
INSERT INTO `wp_rg_form_view` VALUES("36964", "10", "2016-09-02 18:03:10", "178.137.163.253", "18");
INSERT INTO `wp_rg_form_view` VALUES("36965", "2", "2016-09-02 18:19:13", "216.244.66.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("36966", "1", "2016-09-02 18:52:00", "104.129.59.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("36967", "3", "2016-09-02 19:02:42", "38.108.87.20", "89");
INSERT INTO `wp_rg_form_view` VALUES("36968", "13", "2016-09-02 19:02:42", "38.108.87.20", "12");
INSERT INTO `wp_rg_form_view` VALUES("36969", "10", "2016-09-02 19:02:42", "38.108.87.20", "25");
INSERT INTO `wp_rg_form_view` VALUES("36970", "3", "2016-09-02 20:50:03", "68.180.231.44", "29");
INSERT INTO `wp_rg_form_view` VALUES("36971", "13", "2016-09-02 20:50:12", "68.180.231.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("36972", "10", "2016-09-02 20:50:12", "68.180.231.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("36973", "1", "2016-09-02 21:13:36", "87.98.167.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("36974", "3", "2016-09-02 21:13:36", "87.98.167.214", "64");
INSERT INTO `wp_rg_form_view` VALUES("36975", "13", "2016-09-02 21:13:37", "87.98.167.214", "10");
INSERT INTO `wp_rg_form_view` VALUES("36976", "10", "2016-09-02 21:13:37", "87.98.167.214", "21");
INSERT INTO `wp_rg_form_view` VALUES("36977", "3", "2016-09-02 22:09:48", "68.180.231.44", "63");
INSERT INTO `wp_rg_form_view` VALUES("36978", "13", "2016-09-02 22:09:48", "68.180.231.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("36979", "10", "2016-09-02 22:09:48", "68.180.231.44", "16");
INSERT INTO `wp_rg_form_view` VALUES("36980", "3", "2016-09-02 23:08:15", "46.118.157.136", "24");
INSERT INTO `wp_rg_form_view` VALUES("36981", "13", "2016-09-02 23:08:16", "46.118.157.136", "3");
INSERT INTO `wp_rg_form_view` VALUES("36982", "10", "2016-09-02 23:08:16", "46.118.157.136", "5");
INSERT INTO `wp_rg_form_view` VALUES("36983", "10", "2016-09-02 23:08:16", "46.118.157.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("36984", "3", "2016-09-03 00:17:04", "68.180.231.44", "37");
INSERT INTO `wp_rg_form_view` VALUES("36985", "13", "2016-09-03 00:17:05", "68.180.231.44", "5");
INSERT INTO `wp_rg_form_view` VALUES("36986", "10", "2016-09-03 00:17:05", "68.180.231.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("36987", "3", "2016-09-03 01:19:36", "66.249.79.108", "466");
INSERT INTO `wp_rg_form_view` VALUES("36988", "13", "2016-09-03 01:19:38", "66.249.79.108", "66");
INSERT INTO `wp_rg_form_view` VALUES("36989", "10", "2016-09-03 01:19:39", "66.249.79.108", "146");
INSERT INTO `wp_rg_form_view` VALUES("36990", "8", "2016-09-03 01:25:37", "207.46.13.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("36991", "7", "2016-09-03 01:35:20", "207.46.13.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("36992", "3", "2016-09-03 02:06:18", "216.244.66.227", "46");
INSERT INTO `wp_rg_form_view` VALUES("36993", "13", "2016-09-03 02:06:21", "216.244.66.227", "6");
INSERT INTO `wp_rg_form_view` VALUES("36994", "10", "2016-09-03 02:06:21", "216.244.66.227", "21");
INSERT INTO `wp_rg_form_view` VALUES("36995", "10", "2016-09-03 03:01:02", "207.46.13.163", "13");
INSERT INTO `wp_rg_form_view` VALUES("36996", "3", "2016-09-03 03:01:02", "207.46.13.163", "44");
INSERT INTO `wp_rg_form_view` VALUES("36997", "13", "2016-09-03 03:01:03", "207.46.13.163", "6");
INSERT INTO `wp_rg_form_view` VALUES("36998", "2", "2016-09-03 03:35:11", "66.249.79.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("36999", "3", "2016-09-03 04:12:40", "51.255.65.73", "66");
INSERT INTO `wp_rg_form_view` VALUES("37000", "13", "2016-09-03 04:12:41", "51.255.65.73", "10");
INSERT INTO `wp_rg_form_view` VALUES("37001", "10", "2016-09-03 04:12:41", "51.255.65.73", "18");
INSERT INTO `wp_rg_form_view` VALUES("37002", "10", "2016-09-03 05:18:26", "51.255.65.42", "14");
INSERT INTO `wp_rg_form_view` VALUES("37003", "3", "2016-09-03 05:25:40", "198.23.145.212", "42");
INSERT INTO `wp_rg_form_view` VALUES("37004", "13", "2016-09-03 05:25:43", "198.23.145.212", "6");
INSERT INTO `wp_rg_form_view` VALUES("37005", "11", "2016-09-03 06:12:25", "212.225.203.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("37006", "3", "2016-09-03 06:12:30", "212.225.203.134", "252");
INSERT INTO `wp_rg_form_view` VALUES("37007", "13", "2016-09-03 06:12:30", "212.225.203.134", "35");
INSERT INTO `wp_rg_form_view` VALUES("37008", "10", "2016-09-03 06:12:30", "212.225.203.134", "70");
INSERT INTO `wp_rg_form_view` VALUES("37009", "12", "2016-09-03 06:13:00", "212.225.203.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("37010", "2", "2016-09-03 06:13:37", "212.225.203.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("37011", "3", "2016-09-03 07:03:42", "185.158.134.154", "50");
INSERT INTO `wp_rg_form_view` VALUES("37012", "13", "2016-09-03 07:03:43", "185.158.134.154", "7");
INSERT INTO `wp_rg_form_view` VALUES("37013", "10", "2016-09-03 07:03:43", "185.158.134.154", "14");
INSERT INTO `wp_rg_form_view` VALUES("37014", "3", "2016-09-03 08:03:52", "207.46.13.63", "15");
INSERT INTO `wp_rg_form_view` VALUES("37015", "13", "2016-09-03 08:03:57", "207.46.13.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("37016", "10", "2016-09-03 08:03:57", "207.46.13.63", "5");
INSERT INTO `wp_rg_form_view` VALUES("37017", "3", "2016-09-03 09:14:31", "77.75.77.101", "21");
INSERT INTO `wp_rg_form_view` VALUES("37018", "13", "2016-09-03 09:14:33", "77.75.77.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("37019", "10", "2016-09-03 09:14:33", "77.75.77.101", "6");
INSERT INTO `wp_rg_form_view` VALUES("37020", "3", "2016-09-03 10:04:46", "217.69.133.228", "87");
INSERT INTO `wp_rg_form_view` VALUES("37021", "13", "2016-09-03 10:04:46", "217.69.133.228", "12");
INSERT INTO `wp_rg_form_view` VALUES("37022", "10", "2016-09-03 10:04:46", "217.69.133.228", "24");
INSERT INTO `wp_rg_form_view` VALUES("37023", "3", "2016-09-03 11:04:39", "207.46.13.178", "28");
INSERT INTO `wp_rg_form_view` VALUES("37024", "13", "2016-09-03 11:04:40", "207.46.13.178", "4");
INSERT INTO `wp_rg_form_view` VALUES("37025", "10", "2016-09-03 11:04:40", "207.46.13.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("37026", "12", "2016-09-03 12:04:02", "68.180.231.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("37027", "3", "2016-09-03 12:04:02", "68.180.231.44", "14");
INSERT INTO `wp_rg_form_view` VALUES("37028", "13", "2016-09-03 12:04:03", "68.180.231.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("37029", "10", "2016-09-03 12:04:03", "68.180.231.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("37030", "3", "2016-09-03 13:54:35", "220.181.108.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("37031", "13", "2016-09-03 13:54:36", "220.181.108.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("37032", "10", "2016-09-03 13:54:36", "220.181.108.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("37033", "3", "2016-09-03 14:21:32", "66.249.79.104", "53");
INSERT INTO `wp_rg_form_view` VALUES("37034", "13", "2016-09-03 14:21:34", "66.249.79.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("37035", "10", "2016-09-03 14:21:34", "66.249.79.104", "14");
INSERT INTO `wp_rg_form_view` VALUES("37036", "3", "2016-09-03 15:07:40", "77.75.79.95", "170");
INSERT INTO `wp_rg_form_view` VALUES("37037", "13", "2016-09-03 15:07:40", "77.75.79.95", "24");
INSERT INTO `wp_rg_form_view` VALUES("37038", "10", "2016-09-03 15:07:41", "77.75.79.95", "48");
INSERT INTO `wp_rg_form_view` VALUES("37039", "12", "2016-09-03 15:44:04", "157.55.39.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("37040", "3", "2016-09-03 16:21:51", "217.69.133.232", "65");
INSERT INTO `wp_rg_form_view` VALUES("37041", "13", "2016-09-03 16:21:53", "217.69.133.232", "9");
INSERT INTO `wp_rg_form_view` VALUES("37042", "10", "2016-09-03 16:21:53", "217.69.133.232", "18");
INSERT INTO `wp_rg_form_view` VALUES("37043", "6", "2016-09-03 16:21:55", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("37044", "3", "2016-09-03 17:06:28", "178.137.163.253", "93");
INSERT INTO `wp_rg_form_view` VALUES("37045", "13", "2016-09-03 17:06:29", "178.137.163.253", "14");
INSERT INTO `wp_rg_form_view` VALUES("37046", "10", "2016-09-03 17:06:29", "178.137.163.253", "26");
INSERT INTO `wp_rg_form_view` VALUES("37047", "2", "2016-09-03 17:40:05", "45.32.131.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("37048", "3", "2016-09-03 18:13:46", "46.118.122.167", "44");
INSERT INTO `wp_rg_form_view` VALUES("37049", "13", "2016-09-03 18:13:55", "46.118.122.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("37050", "10", "2016-09-03 18:13:55", "46.118.122.167", "13");
INSERT INTO `wp_rg_form_view` VALUES("37051", "11", "2016-09-03 18:34:47", "5.255.250.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("37052", "3", "2016-09-03 19:56:26", "41.33.182.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("37053", "13", "2016-09-03 19:56:28", "41.33.182.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("37054", "10", "2016-09-03 19:56:28", "41.33.182.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("37055", "1", "2016-09-03 20:05:45", "192.99.166.236", "5");
INSERT INTO `wp_rg_form_view` VALUES("37056", "3", "2016-09-03 20:05:45", "192.99.166.236", "135");
INSERT INTO `wp_rg_form_view` VALUES("37057", "13", "2016-09-03 20:05:46", "192.99.166.236", "18");
INSERT INTO `wp_rg_form_view` VALUES("37058", "10", "2016-09-03 20:05:46", "192.99.166.236", "36");
INSERT INTO `wp_rg_form_view` VALUES("37059", "11", "2016-09-03 20:51:09", "216.244.66.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("37060", "3", "2016-09-03 21:05:26", "217.69.133.229", "8");
INSERT INTO `wp_rg_form_view` VALUES("37061", "13", "2016-09-03 21:05:28", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("37062", "10", "2016-09-03 21:05:28", "217.69.133.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("37063", "3", "2016-09-03 22:02:53", "66.249.79.108", "61");
INSERT INTO `wp_rg_form_view` VALUES("37064", "13", "2016-09-03 22:02:55", "66.249.79.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("37065", "10", "2016-09-03 22:02:55", "66.249.79.108", "16");
INSERT INTO `wp_rg_form_view` VALUES("37066", "1", "2016-09-03 22:04:28", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("37067", "3", "2016-09-03 23:07:17", "24.68.17.97", "22");
INSERT INTO `wp_rg_form_view` VALUES("37068", "13", "2016-09-03 23:07:18", "24.68.17.97", "3");
INSERT INTO `wp_rg_form_view` VALUES("37069", "10", "2016-09-03 23:07:18", "24.68.17.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("37070", "1", "2016-09-03 23:50:21", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("37071", "3", "2016-09-04 00:14:20", "217.69.133.230", "120");
INSERT INTO `wp_rg_form_view` VALUES("37072", "13", "2016-09-04 00:14:22", "217.69.133.230", "17");
INSERT INTO `wp_rg_form_view` VALUES("37073", "10", "2016-09-04 00:14:22", "217.69.133.230", "35");
INSERT INTO `wp_rg_form_view` VALUES("37074", "3", "2016-09-04 01:00:42", "207.46.13.187", "65");
INSERT INTO `wp_rg_form_view` VALUES("37075", "13", "2016-09-04 01:00:43", "207.46.13.187", "9");
INSERT INTO `wp_rg_form_view` VALUES("37076", "10", "2016-09-04 01:00:43", "207.46.13.187", "18");
INSERT INTO `wp_rg_form_view` VALUES("37077", "9", "2016-09-04 01:30:32", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("37078", "11", "2016-09-04 01:48:24", "216.244.66.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("37079", "1", "2016-09-04 01:55:52", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("37080", "3", "2016-09-04 02:51:02", "207.46.13.31", "16");
INSERT INTO `wp_rg_form_view` VALUES("37081", "13", "2016-09-04 02:51:05", "207.46.13.31", "2");
INSERT INTO `wp_rg_form_view` VALUES("37082", "10", "2016-09-04 02:51:05", "207.46.13.31", "4");
INSERT INTO `wp_rg_form_view` VALUES("37083", "10", "2016-09-04 03:00:11", "199.59.148.210", "7");
INSERT INTO `wp_rg_form_view` VALUES("37084", "3", "2016-09-04 03:00:11", "199.59.148.210", "21");
INSERT INTO `wp_rg_form_view` VALUES("37085", "13", "2016-09-04 03:00:12", "199.59.148.210", "3");
INSERT INTO `wp_rg_form_view` VALUES("37086", "9", "2016-09-04 03:22:08", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("37087", "1", "2016-09-04 04:27:06", "62.210.80.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("37088", "3", "2016-09-04 04:27:07", "62.210.80.62", "49");
INSERT INTO `wp_rg_form_view` VALUES("37089", "13", "2016-09-04 04:27:08", "62.210.80.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("37090", "10", "2016-09-04 04:27:08", "62.210.80.62", "14");
INSERT INTO `wp_rg_form_view` VALUES("37091", "3", "2016-09-04 05:27:19", "77.75.79.32", "56");
INSERT INTO `wp_rg_form_view` VALUES("37092", "13", "2016-09-04 05:27:22", "77.75.79.32", "8");
INSERT INTO `wp_rg_form_view` VALUES("37093", "10", "2016-09-04 05:27:22", "77.75.79.32", "17");
INSERT INTO `wp_rg_form_view` VALUES("37094", "3", "2016-09-04 06:34:25", "134.249.65.218", "88");
INSERT INTO `wp_rg_form_view` VALUES("37095", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("37096", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("37097", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("37098", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("37099", "3", "2016-09-04 06:34:25", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("37100", "13", "2016-09-04 06:34:29", "134.249.65.218", "12");
INSERT INTO `wp_rg_form_view` VALUES("37101", "10", "2016-09-04 06:34:29", "134.249.65.218", "24");
INSERT INTO `wp_rg_form_view` VALUES("37102", "3", "2016-09-04 07:10:46", "89.46.89.165", "37");
INSERT INTO `wp_rg_form_view` VALUES("37103", "13", "2016-09-04 07:10:48", "89.46.89.165", "5");
INSERT INTO `wp_rg_form_view` VALUES("37104", "10", "2016-09-04 07:10:48", "89.46.89.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("37105", "3", "2016-09-04 08:33:59", "68.180.231.44", "22");
INSERT INTO `wp_rg_form_view` VALUES("37106", "13", "2016-09-04 08:34:05", "68.180.231.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("37107", "10", "2016-09-04 08:34:05", "68.180.231.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("37108", "1", "2016-09-04 09:27:30", "77.75.77.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("37109", "3", "2016-09-04 09:27:30", "77.75.77.54", "21");
INSERT INTO `wp_rg_form_view` VALUES("37110", "13", "2016-09-04 09:27:31", "77.75.77.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("37111", "10", "2016-09-04 09:27:31", "77.75.77.54", "6");
INSERT INTO `wp_rg_form_view` VALUES("37112", "8", "2016-09-04 09:54:05", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("37113", "3", "2016-09-04 11:08:43", "178.137.17.180", "69");
INSERT INTO `wp_rg_form_view` VALUES("37114", "3", "2016-09-04 11:08:43", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37115", "13", "2016-09-04 11:08:46", "178.137.17.180", "10");
INSERT INTO `wp_rg_form_view` VALUES("37116", "10", "2016-09-04 11:08:46", "178.137.17.180", "20");
INSERT INTO `wp_rg_form_view` VALUES("37117", "10", "2016-09-04 11:08:46", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37118", "9", "2016-09-04 11:43:08", "157.55.39.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("37119", "3", "2016-09-04 12:07:34", "46.118.119.71", "30");
INSERT INTO `wp_rg_form_view` VALUES("37120", "13", "2016-09-04 12:07:35", "46.118.119.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("37121", "10", "2016-09-04 12:07:35", "46.118.119.71", "8");
INSERT INTO `wp_rg_form_view` VALUES("37122", "3", "2016-09-04 13:00:23", "66.249.79.104", "94");
INSERT INTO `wp_rg_form_view` VALUES("37123", "13", "2016-09-04 13:00:23", "66.249.79.104", "13");
INSERT INTO `wp_rg_form_view` VALUES("37124", "10", "2016-09-04 13:00:23", "66.249.79.104", "26");
INSERT INTO `wp_rg_form_view` VALUES("37125", "9", "2016-09-04 13:54:36", "157.55.39.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("37126", "3", "2016-09-04 14:02:05", "207.46.13.187", "61");
INSERT INTO `wp_rg_form_view` VALUES("37127", "13", "2016-09-04 14:02:05", "207.46.13.187", "9");
INSERT INTO `wp_rg_form_view` VALUES("37128", "10", "2016-09-04 14:02:05", "207.46.13.187", "17");
INSERT INTO `wp_rg_form_view` VALUES("37129", "3", "2016-09-04 15:00:34", "220.181.108.142", "29");
INSERT INTO `wp_rg_form_view` VALUES("37130", "13", "2016-09-04 15:00:35", "220.181.108.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("37131", "10", "2016-09-04 15:00:35", "220.181.108.142", "8");
INSERT INTO `wp_rg_form_view` VALUES("37132", "1", "2016-09-04 16:03:44", "213.252.247.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("37133", "3", "2016-09-04 16:03:44", "213.252.247.228", "66");
INSERT INTO `wp_rg_form_view` VALUES("37134", "13", "2016-09-04 16:03:44", "213.252.247.228", "9");
INSERT INTO `wp_rg_form_view` VALUES("37135", "10", "2016-09-04 16:03:44", "213.252.247.228", "18");
INSERT INTO `wp_rg_form_view` VALUES("37136", "3", "2016-09-04 17:00:10", "207.46.13.187", "94");
INSERT INTO `wp_rg_form_view` VALUES("37137", "13", "2016-09-04 17:00:10", "207.46.13.187", "13");
INSERT INTO `wp_rg_form_view` VALUES("37138", "10", "2016-09-04 17:00:11", "207.46.13.187", "26");
INSERT INTO `wp_rg_form_view` VALUES("37139", "1", "2016-09-04 17:24:42", "192.126.168.141", "5");
INSERT INTO `wp_rg_form_view` VALUES("37140", "5", "2016-09-04 17:28:41", "157.55.39.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("37141", "3", "2016-09-04 18:17:04", "46.118.119.71", "35");
INSERT INTO `wp_rg_form_view` VALUES("37142", "3", "2016-09-04 18:17:04", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37143", "3", "2016-09-04 18:17:04", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37144", "13", "2016-09-04 18:17:10", "46.118.119.71", "5");
INSERT INTO `wp_rg_form_view` VALUES("37145", "10", "2016-09-04 18:17:10", "46.118.119.71", "9");
INSERT INTO `wp_rg_form_view` VALUES("37146", "10", "2016-09-04 18:17:10", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37147", "3", "2016-09-04 19:02:45", "40.77.167.51", "42");
INSERT INTO `wp_rg_form_view` VALUES("37148", "13", "2016-09-04 19:02:45", "40.77.167.51", "6");
INSERT INTO `wp_rg_form_view` VALUES("37149", "10", "2016-09-04 19:02:45", "40.77.167.51", "12");
INSERT INTO `wp_rg_form_view` VALUES("37150", "1", "2016-09-04 19:31:23", "155.133.43.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("37151", "3", "2016-09-04 20:03:20", "68.180.231.44", "29");
INSERT INTO `wp_rg_form_view` VALUES("37152", "13", "2016-09-04 20:03:22", "68.180.231.44", "5");
INSERT INTO `wp_rg_form_view` VALUES("37153", "10", "2016-09-04 20:03:22", "68.180.231.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("37154", "6", "2016-09-04 20:05:52", "40.77.167.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("37155", "1", "2016-09-04 21:14:45", "168.1.47.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("37156", "3", "2016-09-04 21:14:46", "168.1.47.248", "45");
INSERT INTO `wp_rg_form_view` VALUES("37157", "13", "2016-09-04 21:14:48", "168.1.47.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("37158", "10", "2016-09-04 21:14:48", "168.1.47.248", "13");
INSERT INTO `wp_rg_form_view` VALUES("37159", "1", "2016-09-04 22:08:10", "62.210.80.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("37160", "3", "2016-09-04 22:08:11", "62.210.80.62", "57");
INSERT INTO `wp_rg_form_view` VALUES("37161", "13", "2016-09-04 22:08:11", "62.210.80.62", "8");
INSERT INTO `wp_rg_form_view` VALUES("37162", "10", "2016-09-04 22:08:11", "62.210.80.62", "16");
INSERT INTO `wp_rg_form_view` VALUES("37163", "3", "2016-09-04 23:02:50", "207.46.13.187", "28");
INSERT INTO `wp_rg_form_view` VALUES("37164", "13", "2016-09-04 23:02:50", "207.46.13.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("37165", "10", "2016-09-04 23:02:50", "207.46.13.187", "9");
INSERT INTO `wp_rg_form_view` VALUES("37166", "1", "2016-09-04 23:03:06", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("37167", "3", "2016-09-05 00:07:52", "40.77.167.49", "44");
INSERT INTO `wp_rg_form_view` VALUES("37168", "13", "2016-09-05 00:07:56", "40.77.167.49", "6");
INSERT INTO `wp_rg_form_view` VALUES("37169", "10", "2016-09-05 00:07:56", "40.77.167.49", "12");
INSERT INTO `wp_rg_form_view` VALUES("37170", "1", "2016-09-05 00:41:22", "219.65.81.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37171", "10", "2016-09-05 01:01:12", "24.108.8.18", "21");
INSERT INTO `wp_rg_form_view` VALUES("37172", "3", "2016-09-05 01:01:13", "24.108.8.18", "70");
INSERT INTO `wp_rg_form_view` VALUES("37173", "13", "2016-09-05 01:01:13", "24.108.8.18", "10");
INSERT INTO `wp_rg_form_view` VALUES("37174", "1", "2016-09-05 01:22:55", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("37175", "8", "2016-09-05 01:23:16", "207.46.13.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("37176", "10", "2016-09-05 02:02:59", "157.55.39.212", "5");
INSERT INTO `wp_rg_form_view` VALUES("37177", "3", "2016-09-05 02:03:01", "157.55.39.212", "14");
INSERT INTO `wp_rg_form_view` VALUES("37178", "13", "2016-09-05 02:03:02", "157.55.39.212", "2");
INSERT INTO `wp_rg_form_view` VALUES("37179", "1", "2016-09-05 02:25:39", "122.116.102.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("37180", "3", "2016-09-05 03:06:42", "68.180.231.44", "72");
INSERT INTO `wp_rg_form_view` VALUES("37181", "13", "2016-09-05 03:06:44", "68.180.231.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("37182", "10", "2016-09-05 03:06:44", "68.180.231.44", "20");
INSERT INTO `wp_rg_form_view` VALUES("37183", "3", "2016-09-05 04:27:09", "222.122.9.46", "42");
INSERT INTO `wp_rg_form_view` VALUES("37184", "13", "2016-09-05 04:27:11", "222.122.9.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("37185", "10", "2016-09-05 04:27:11", "222.122.9.46", "12");
INSERT INTO `wp_rg_form_view` VALUES("37186", "1", "2016-09-05 04:35:38", "24.108.4.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("37187", "10", "2016-09-05 05:03:37", "157.55.39.184", "19");
INSERT INTO `wp_rg_form_view` VALUES("37188", "3", "2016-09-05 05:03:40", "157.55.39.184", "68");
INSERT INTO `wp_rg_form_view` VALUES("37189", "13", "2016-09-05 05:03:40", "157.55.39.184", "10");
INSERT INTO `wp_rg_form_view` VALUES("37190", "3", "2016-09-05 06:17:27", "192.243.55.134", "23");
INSERT INTO `wp_rg_form_view` VALUES("37191", "13", "2016-09-05 06:17:34", "192.243.55.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("37192", "10", "2016-09-05 06:17:34", "192.243.55.134", "6");
INSERT INTO `wp_rg_form_view` VALUES("37193", "1", "2016-09-05 06:40:16", "188.27.63.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("37194", "3", "2016-09-05 07:17:24", "157.55.39.100", "29");
INSERT INTO `wp_rg_form_view` VALUES("37195", "13", "2016-09-05 07:17:27", "157.55.39.100", "4");
INSERT INTO `wp_rg_form_view` VALUES("37196", "10", "2016-09-05 07:17:27", "157.55.39.100", "8");
INSERT INTO `wp_rg_form_view` VALUES("37197", "3", "2016-09-05 08:03:47", "40.77.167.51", "110");
INSERT INTO `wp_rg_form_view` VALUES("37198", "13", "2016-09-05 08:03:48", "40.77.167.51", "15");
INSERT INTO `wp_rg_form_view` VALUES("37199", "10", "2016-09-05 08:03:50", "40.77.167.51", "29");
INSERT INTO `wp_rg_form_view` VALUES("37200", "3", "2016-09-05 09:32:37", "40.77.167.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("37201", "13", "2016-09-05 09:32:44", "40.77.167.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("37202", "10", "2016-09-05 09:32:44", "40.77.167.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("37203", "10", "2016-09-05 10:13:35", "157.55.39.100", "36");
INSERT INTO `wp_rg_form_view` VALUES("37204", "3", "2016-09-05 10:13:37", "157.55.39.100", "120");
INSERT INTO `wp_rg_form_view` VALUES("37205", "13", "2016-09-05 10:13:38", "157.55.39.100", "17");
INSERT INTO `wp_rg_form_view` VALUES("37206", "12", "2016-09-05 10:54:52", "104.250.159.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("37207", "3", "2016-09-05 11:06:07", "40.77.167.51", "92");
INSERT INTO `wp_rg_form_view` VALUES("37208", "13", "2016-09-05 11:06:08", "40.77.167.51", "13");
INSERT INTO `wp_rg_form_view` VALUES("37209", "10", "2016-09-05 11:06:08", "40.77.167.51", "27");
INSERT INTO `wp_rg_form_view` VALUES("37210", "3", "2016-09-05 12:00:46", "77.75.76.171", "126");
INSERT INTO `wp_rg_form_view` VALUES("37211", "13", "2016-09-05 12:00:47", "77.75.76.171", "17");
INSERT INTO `wp_rg_form_view` VALUES("37212", "10", "2016-09-05 12:00:47", "77.75.76.171", "34");
INSERT INTO `wp_rg_form_view` VALUES("37213", "2", "2016-09-05 12:20:02", "192.243.55.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("37214", "3", "2016-09-05 13:08:20", "40.77.167.51", "79");
INSERT INTO `wp_rg_form_view` VALUES("37215", "13", "2016-09-05 13:08:21", "40.77.167.51", "11");
INSERT INTO `wp_rg_form_view` VALUES("37216", "10", "2016-09-05 13:08:21", "40.77.167.51", "23");
INSERT INTO `wp_rg_form_view` VALUES("37217", "11", "2016-09-05 13:48:37", "194.187.170.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("37218", "3", "2016-09-05 14:38:56", "40.77.167.51", "29");
INSERT INTO `wp_rg_form_view` VALUES("37219", "13", "2016-09-05 14:38:58", "40.77.167.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("37220", "10", "2016-09-05 14:38:58", "40.77.167.51", "8");
INSERT INTO `wp_rg_form_view` VALUES("37221", "3", "2016-09-05 15:21:21", "46.118.238.134", "66");
INSERT INTO `wp_rg_form_view` VALUES("37222", "3", "2016-09-05 15:21:21", "46.118.238.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("37223", "3", "2016-09-05 15:21:21", "46.118.238.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("37224", "13", "2016-09-05 15:21:24", "46.118.238.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("37225", "10", "2016-09-05 15:21:24", "46.118.238.134", "18");
INSERT INTO `wp_rg_form_view` VALUES("37226", "3", "2016-09-05 16:00:59", "157.55.39.100", "134");
INSERT INTO `wp_rg_form_view` VALUES("37227", "13", "2016-09-05 16:01:02", "157.55.39.100", "18");
INSERT INTO `wp_rg_form_view` VALUES("37228", "10", "2016-09-05 16:01:02", "157.55.39.100", "36");
INSERT INTO `wp_rg_form_view` VALUES("37229", "7", "2016-09-05 16:11:04", "157.55.39.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("37230", "9", "2016-09-05 16:50:26", "157.55.39.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("37231", "3", "2016-09-05 17:31:20", "40.77.167.51", "14");
INSERT INTO `wp_rg_form_view` VALUES("37232", "13", "2016-09-05 17:31:23", "40.77.167.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("37233", "10", "2016-09-05 17:31:23", "40.77.167.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("37234", "3", "2016-09-05 18:19:43", "103.8.124.185", "44");
INSERT INTO `wp_rg_form_view` VALUES("37235", "13", "2016-09-05 18:19:45", "103.8.124.185", "6");
INSERT INTO `wp_rg_form_view` VALUES("37236", "10", "2016-09-05 18:19:45", "103.8.124.185", "14");
INSERT INTO `wp_rg_form_view` VALUES("37237", "3", "2016-09-05 19:02:59", "157.55.39.100", "121");
INSERT INTO `wp_rg_form_view` VALUES("37238", "13", "2016-09-05 19:03:01", "157.55.39.100", "18");
INSERT INTO `wp_rg_form_view` VALUES("37239", "10", "2016-09-05 19:03:01", "157.55.39.100", "34");
INSERT INTO `wp_rg_form_view` VALUES("37240", "1", "2016-09-05 19:18:56", "112.140.186.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("37241", "2", "2016-09-05 19:58:52", "89.234.68.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("37242", "3", "2016-09-05 20:00:59", "89.234.68.71", "114");
INSERT INTO `wp_rg_form_view` VALUES("37243", "13", "2016-09-05 20:00:59", "89.234.68.71", "16");
INSERT INTO `wp_rg_form_view` VALUES("37244", "10", "2016-09-05 20:00:59", "89.234.68.71", "32");
INSERT INTO `wp_rg_form_view` VALUES("37245", "2", "2016-09-05 20:01:10", "89.234.68.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("37246", "3", "2016-09-05 21:01:22", "40.77.167.28", "36");
INSERT INTO `wp_rg_form_view` VALUES("37247", "13", "2016-09-05 21:01:25", "40.77.167.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("37248", "10", "2016-09-05 21:01:25", "40.77.167.28", "10");
INSERT INTO `wp_rg_form_view` VALUES("37249", "3", "2016-09-05 22:09:34", "64.180.23.243", "131");
INSERT INTO `wp_rg_form_view` VALUES("37250", "13", "2016-09-05 22:09:35", "64.180.23.243", "18");
INSERT INTO `wp_rg_form_view` VALUES("37251", "10", "2016-09-05 22:09:35", "64.180.23.243", "37");
INSERT INTO `wp_rg_form_view` VALUES("37252", "3", "2016-09-05 23:11:39", "157.55.39.100", "52");
INSERT INTO `wp_rg_form_view` VALUES("37253", "13", "2016-09-05 23:11:45", "157.55.39.100", "7");
INSERT INTO `wp_rg_form_view` VALUES("37254", "10", "2016-09-05 23:11:47", "157.55.39.100", "12");
INSERT INTO `wp_rg_form_view` VALUES("37255", "3", "2016-09-06 00:04:17", "117.253.216.110", "72");
INSERT INTO `wp_rg_form_view` VALUES("37256", "13", "2016-09-06 00:04:19", "117.253.216.110", "10");
INSERT INTO `wp_rg_form_view` VALUES("37257", "10", "2016-09-06 00:04:19", "117.253.216.110", "20");
INSERT INTO `wp_rg_form_view` VALUES("37258", "3", "2016-09-06 01:19:01", "40.77.167.72", "29");
INSERT INTO `wp_rg_form_view` VALUES("37259", "13", "2016-09-06 01:19:04", "40.77.167.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("37260", "10", "2016-09-06 01:19:04", "40.77.167.72", "8");
INSERT INTO `wp_rg_form_view` VALUES("37261", "3", "2016-09-06 02:10:02", "194.187.170.107", "57");
INSERT INTO `wp_rg_form_view` VALUES("37262", "13", "2016-09-06 02:10:04", "194.187.170.107", "8");
INSERT INTO `wp_rg_form_view` VALUES("37263", "10", "2016-09-06 02:10:04", "194.187.170.107", "16");
INSERT INTO `wp_rg_form_view` VALUES("37264", "9", "2016-09-06 02:18:59", "40.77.167.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("37265", "13", "2016-09-06 03:11:43", "176.9.131.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("37266", "3", "2016-09-06 03:11:55", "176.9.131.69", "14");
INSERT INTO `wp_rg_form_view` VALUES("37267", "10", "2016-09-06 03:11:56", "176.9.131.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("37268", "1", "2016-09-06 04:09:09", "181.143.48.243", "2");
INSERT INTO `wp_rg_form_view` VALUES("37269", "3", "2016-09-06 04:09:10", "181.143.48.243", "65");
INSERT INTO `wp_rg_form_view` VALUES("37270", "13", "2016-09-06 04:09:11", "181.143.48.243", "9");
INSERT INTO `wp_rg_form_view` VALUES("37271", "10", "2016-09-06 04:09:11", "181.143.48.243", "18");
INSERT INTO `wp_rg_form_view` VALUES("37272", "12", "2016-09-06 04:20:24", "157.55.39.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("37273", "3", "2016-09-06 05:03:22", "157.55.39.100", "53");
INSERT INTO `wp_rg_form_view` VALUES("37274", "13", "2016-09-06 05:03:23", "157.55.39.100", "7");
INSERT INTO `wp_rg_form_view` VALUES("37275", "10", "2016-09-06 05:03:23", "157.55.39.100", "15");
INSERT INTO `wp_rg_form_view` VALUES("37276", "3", "2016-09-06 06:00:46", "77.75.76.161", "53");
INSERT INTO `wp_rg_form_view` VALUES("37277", "13", "2016-09-06 06:00:47", "77.75.76.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("37278", "10", "2016-09-06 06:00:48", "77.75.76.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("37279", "3", "2016-09-06 07:26:27", "40.77.167.72", "22");
INSERT INTO `wp_rg_form_view` VALUES("37280", "13", "2016-09-06 07:26:30", "40.77.167.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("37281", "10", "2016-09-06 07:26:30", "40.77.167.72", "6");
INSERT INTO `wp_rg_form_view` VALUES("37282", "6", "2016-09-06 08:12:33", "40.77.167.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("37283", "3", "2016-09-06 08:12:36", "40.77.167.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("37284", "13", "2016-09-06 08:12:37", "40.77.167.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("37285", "10", "2016-09-06 08:12:37", "40.77.167.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("37286", "3", "2016-09-06 09:02:52", "46.118.119.71", "48");
INSERT INTO `wp_rg_form_view` VALUES("37287", "3", "2016-09-06 09:02:52", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37288", "3", "2016-09-06 09:02:52", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37289", "13", "2016-09-06 09:02:59", "46.118.119.71", "7");
INSERT INTO `wp_rg_form_view` VALUES("37290", "10", "2016-09-06 09:02:59", "46.118.119.71", "12");
INSERT INTO `wp_rg_form_view` VALUES("37291", "10", "2016-09-06 09:02:59", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37292", "10", "2016-09-06 09:02:59", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37293", "2", "2016-09-06 09:03:33", "202.46.52.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("37294", "3", "2016-09-06 10:10:30", "202.46.57.185", "14");
INSERT INTO `wp_rg_form_view` VALUES("37295", "13", "2016-09-06 10:10:32", "202.46.57.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("37296", "10", "2016-09-06 10:10:32", "202.46.57.185", "4");
INSERT INTO `wp_rg_form_view` VALUES("37297", "1", "2016-09-06 10:46:25", "195.162.4.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("37298", "3", "2016-09-06 11:30:45", "192.243.55.138", "31");
INSERT INTO `wp_rg_form_view` VALUES("37299", "13", "2016-09-06 11:30:47", "192.243.55.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("37300", "10", "2016-09-06 11:30:50", "192.243.55.138", "6");
INSERT INTO `wp_rg_form_view` VALUES("37301", "3", "2016-09-06 12:19:49", "178.137.17.180", "161");
INSERT INTO `wp_rg_form_view` VALUES("37302", "3", "2016-09-06 12:19:49", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37303", "3", "2016-09-06 12:19:49", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37304", "13", "2016-09-06 12:19:51", "178.137.17.180", "22");
INSERT INTO `wp_rg_form_view` VALUES("37305", "10", "2016-09-06 12:19:51", "178.137.17.180", "42");
INSERT INTO `wp_rg_form_view` VALUES("37306", "3", "2016-09-06 13:14:56", "194.187.170.106", "90");
INSERT INTO `wp_rg_form_view` VALUES("37307", "13", "2016-09-06 13:14:58", "194.187.170.106", "12");
INSERT INTO `wp_rg_form_view` VALUES("37308", "10", "2016-09-06 13:15:00", "194.187.170.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("37309", "1", "2016-09-06 13:16:48", "194.187.170.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("37310", "3", "2016-09-06 14:02:18", "202.46.58.161", "88");
INSERT INTO `wp_rg_form_view` VALUES("37311", "13", "2016-09-06 14:02:18", "202.46.58.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("37312", "10", "2016-09-06 14:02:19", "202.46.58.161", "36");
INSERT INTO `wp_rg_form_view` VALUES("37313", "8", "2016-09-06 14:56:20", "40.77.167.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("37314", "3", "2016-09-06 15:09:22", "202.46.56.197", "30");
INSERT INTO `wp_rg_form_view` VALUES("37315", "13", "2016-09-06 15:09:24", "202.46.56.197", "5");
INSERT INTO `wp_rg_form_view` VALUES("37316", "10", "2016-09-06 15:09:24", "202.46.56.197", "6");
INSERT INTO `wp_rg_form_view` VALUES("37317", "3", "2016-09-06 16:03:47", "24.69.146.30", "58");
INSERT INTO `wp_rg_form_view` VALUES("37318", "13", "2016-09-06 16:03:52", "24.69.146.30", "9");
INSERT INTO `wp_rg_form_view` VALUES("37319", "10", "2016-09-06 16:03:52", "24.69.146.30", "16");
INSERT INTO `wp_rg_form_view` VALUES("37320", "3", "2016-09-06 17:00:03", "207.6.120.182", "52");
INSERT INTO `wp_rg_form_view` VALUES("37321", "13", "2016-09-06 17:00:09", "207.6.120.182", "7");
INSERT INTO `wp_rg_form_view` VALUES("37322", "10", "2016-09-06 17:00:09", "207.6.120.182", "14");
INSERT INTO `wp_rg_form_view` VALUES("37323", "3", "2016-09-06 18:00:24", "134.249.72.6", "134");
INSERT INTO `wp_rg_form_view` VALUES("37324", "3", "2016-09-06 18:00:24", "134.249.72.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("37325", "3", "2016-09-06 18:00:24", "134.249.72.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("37326", "13", "2016-09-06 18:00:30", "134.249.72.6", "19");
INSERT INTO `wp_rg_form_view` VALUES("37327", "10", "2016-09-06 18:00:30", "134.249.72.6", "35");
INSERT INTO `wp_rg_form_view` VALUES("37328", "10", "2016-09-06 18:00:30", "134.249.72.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("37329", "3", "2016-09-06 19:15:14", "81.24.248.1", "176");
INSERT INTO `wp_rg_form_view` VALUES("37330", "13", "2016-09-06 19:15:15", "81.24.248.1", "21");
INSERT INTO `wp_rg_form_view` VALUES("37331", "10", "2016-09-06 19:15:15", "81.24.248.1", "46");
INSERT INTO `wp_rg_form_view` VALUES("37332", "3", "2016-09-06 20:06:19", "24.68.78.102", "84");
INSERT INTO `wp_rg_form_view` VALUES("37333", "13", "2016-09-06 20:06:23", "24.68.78.102", "12");
INSERT INTO `wp_rg_form_view` VALUES("37334", "10", "2016-09-06 20:06:23", "24.68.78.102", "24");
INSERT INTO `wp_rg_form_view` VALUES("37335", "1", "2016-09-06 20:53:02", "134.87.165.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("37336", "3", "2016-09-06 21:42:30", "24.244.32.220", "27");
INSERT INTO `wp_rg_form_view` VALUES("37337", "3", "2016-09-06 21:42:30", "24.244.32.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("37338", "13", "2016-09-06 21:42:35", "24.244.32.220", "3");
INSERT INTO `wp_rg_form_view` VALUES("37339", "13", "2016-09-06 21:42:35", "24.244.32.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("37340", "10", "2016-09-06 21:42:35", "24.244.32.220", "7");
INSERT INTO `wp_rg_form_view` VALUES("37341", "10", "2016-09-06 21:42:35", "24.244.32.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("37342", "3", "2016-09-06 22:03:11", "184.71.214.138", "42");
INSERT INTO `wp_rg_form_view` VALUES("37343", "13", "2016-09-06 22:03:14", "184.71.214.138", "6");
INSERT INTO `wp_rg_form_view` VALUES("37344", "10", "2016-09-06 22:03:14", "184.71.214.138", "13");
INSERT INTO `wp_rg_form_view` VALUES("37345", "3", "2016-09-06 23:01:08", "178.137.95.240", "69");
INSERT INTO `wp_rg_form_view` VALUES("37346", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("37347", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("37348", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("37349", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("37350", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("37351", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("37352", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("37353", "3", "2016-09-06 23:01:08", "178.137.95.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("37354", "13", "2016-09-06 23:01:11", "178.137.95.240", "11");
INSERT INTO `wp_rg_form_view` VALUES("37355", "10", "2016-09-06 23:01:11", "178.137.95.240", "22");
INSERT INTO `wp_rg_form_view` VALUES("37356", "3", "2016-09-07 00:07:36", "154.20.28.146", "55");
INSERT INTO `wp_rg_form_view` VALUES("37357", "13", "2016-09-07 00:07:39", "154.20.28.146", "8");
INSERT INTO `wp_rg_form_view` VALUES("37358", "10", "2016-09-07 00:07:39", "154.20.28.146", "16");
INSERT INTO `wp_rg_form_view` VALUES("37359", "13", "2016-09-07 01:09:33", "198.154.31.4", "39");
INSERT INTO `wp_rg_form_view` VALUES("37360", "3", "2016-09-07 01:09:38", "198.154.31.4", "254");
INSERT INTO `wp_rg_form_view` VALUES("37361", "10", "2016-09-07 01:09:38", "198.154.31.4", "72");
INSERT INTO `wp_rg_form_view` VALUES("37362", "11", "2016-09-07 01:41:45", "172.245.104.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("37363", "12", "2016-09-07 01:42:42", "172.245.104.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("37364", "2", "2016-09-07 01:44:07", "172.245.104.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("37365", "3", "2016-09-07 02:14:42", "68.180.230.169", "172");
INSERT INTO `wp_rg_form_view` VALUES("37366", "13", "2016-09-07 02:14:43", "68.180.230.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("37367", "10", "2016-09-07 02:14:45", "68.180.230.169", "61");
INSERT INTO `wp_rg_form_view` VALUES("37368", "12", "2016-09-07 02:18:08", "220.181.108.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("37369", "10", "2016-09-07 03:00:38", "108.180.5.170", "46");
INSERT INTO `wp_rg_form_view` VALUES("37370", "3", "2016-09-07 03:00:38", "108.180.5.170", "145");
INSERT INTO `wp_rg_form_view` VALUES("37371", "13", "2016-09-07 03:00:38", "108.180.5.170", "20");
INSERT INTO `wp_rg_form_view` VALUES("37372", "2", "2016-09-07 03:58:46", "202.46.57.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("37373", "3", "2016-09-07 04:00:17", "209.52.88.184", "121");
INSERT INTO `wp_rg_form_view` VALUES("37374", "13", "2016-09-07 04:00:17", "209.52.88.184", "17");
INSERT INTO `wp_rg_form_view` VALUES("37375", "10", "2016-09-07 04:00:17", "209.52.88.184", "36");
INSERT INTO `wp_rg_form_view` VALUES("37376", "12", "2016-09-07 04:10:06", "194.187.170.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("37377", "9", "2016-09-07 04:10:20", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("37378", "8", "2016-09-07 04:13:28", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("37379", "3", "2016-09-07 05:00:48", "154.20.7.2", "147");
INSERT INTO `wp_rg_form_view` VALUES("37380", "13", "2016-09-07 05:00:48", "154.20.7.2", "21");
INSERT INTO `wp_rg_form_view` VALUES("37381", "10", "2016-09-07 05:00:48", "154.20.7.2", "42");
INSERT INTO `wp_rg_form_view` VALUES("37382", "3", "2016-09-07 06:15:04", "163.172.51.123", "38");
INSERT INTO `wp_rg_form_view` VALUES("37383", "13", "2016-09-07 06:15:07", "163.172.51.123", "5");
INSERT INTO `wp_rg_form_view` VALUES("37384", "10", "2016-09-07 06:15:07", "163.172.51.123", "10");
INSERT INTO `wp_rg_form_view` VALUES("37385", "10", "2016-09-07 07:25:24", "157.55.39.139", "12");
INSERT INTO `wp_rg_form_view` VALUES("37386", "3", "2016-09-07 07:25:27", "157.55.39.139", "14");
INSERT INTO `wp_rg_form_view` VALUES("37387", "13", "2016-09-07 07:25:28", "157.55.39.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("37388", "3", "2016-09-07 09:26:33", "46.118.119.71", "69");
INSERT INTO `wp_rg_form_view` VALUES("37389", "3", "2016-09-07 09:26:33", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37390", "3", "2016-09-07 09:26:33", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37391", "13", "2016-09-07 09:26:41", "46.118.119.71", "9");
INSERT INTO `wp_rg_form_view` VALUES("37392", "13", "2016-09-07 09:26:41", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37393", "10", "2016-09-07 09:26:41", "46.118.119.71", "18");
INSERT INTO `wp_rg_form_view` VALUES("37394", "10", "2016-09-07 09:26:41", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37395", "10", "2016-09-07 09:26:41", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37396", "1", "2016-09-07 09:41:41", "64.137.253.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("37397", "3", "2016-09-07 10:41:49", "207.46.13.184", "517");
INSERT INTO `wp_rg_form_view` VALUES("37398", "13", "2016-09-07 10:41:53", "207.46.13.184", "76");
INSERT INTO `wp_rg_form_view` VALUES("37399", "10", "2016-09-07 10:41:53", "207.46.13.184", "157");
INSERT INTO `wp_rg_form_view` VALUES("37400", "7", "2016-09-07 10:42:10", "207.46.13.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("37401", "8", "2016-09-07 10:42:36", "157.55.39.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("37402", "6", "2016-09-07 10:43:07", "40.77.167.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("37403", "3", "2016-09-07 11:44:55", "66.249.79.104", "21");
INSERT INTO `wp_rg_form_view` VALUES("37404", "13", "2016-09-07 11:44:59", "66.249.79.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("37405", "10", "2016-09-07 11:44:59", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("37406", "3", "2016-09-07 12:13:34", "51.255.65.37", "22");
INSERT INTO `wp_rg_form_view` VALUES("37407", "13", "2016-09-07 12:13:37", "51.255.65.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("37408", "10", "2016-09-07 12:13:37", "51.255.65.37", "6");
INSERT INTO `wp_rg_form_view` VALUES("37409", "12", "2016-09-07 12:48:15", "216.244.66.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("37410", "3", "2016-09-07 13:30:33", "202.46.55.80", "66");
INSERT INTO `wp_rg_form_view` VALUES("37411", "13", "2016-09-07 13:30:36", "202.46.55.80", "9");
INSERT INTO `wp_rg_form_view` VALUES("37412", "10", "2016-09-07 13:30:36", "202.46.55.80", "26");
INSERT INTO `wp_rg_form_view` VALUES("37413", "1", "2016-09-07 13:31:29", "166.88.120.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("37414", "1", "2016-09-07 14:03:00", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("37415", "3", "2016-09-07 14:03:00", "155.133.43.8", "135");
INSERT INTO `wp_rg_form_view` VALUES("37416", "13", "2016-09-07 14:03:01", "155.133.43.8", "19");
INSERT INTO `wp_rg_form_view` VALUES("37417", "10", "2016-09-07 14:03:01", "155.133.43.8", "38");
INSERT INTO `wp_rg_form_view` VALUES("37418", "7", "2016-09-07 14:21:12", "207.46.13.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("37419", "3", "2016-09-07 15:08:00", "96.50.6.75", "107");
INSERT INTO `wp_rg_form_view` VALUES("37420", "13", "2016-09-07 15:08:00", "96.50.6.75", "15");
INSERT INTO `wp_rg_form_view` VALUES("37421", "10", "2016-09-07 15:08:01", "96.50.6.75", "30");
INSERT INTO `wp_rg_form_view` VALUES("37422", "1", "2016-09-07 15:52:32", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("37423", "3", "2016-09-07 16:04:07", "96.50.6.75", "74");
INSERT INTO `wp_rg_form_view` VALUES("37424", "13", "2016-09-07 16:04:09", "96.50.6.75", "10");
INSERT INTO `wp_rg_form_view` VALUES("37425", "10", "2016-09-07 16:04:09", "96.50.6.75", "20");
INSERT INTO `wp_rg_form_view` VALUES("37426", "3", "2016-09-07 17:16:46", "207.194.133.9", "383");
INSERT INTO `wp_rg_form_view` VALUES("37427", "13", "2016-09-07 17:16:57", "207.194.133.9", "55");
INSERT INTO `wp_rg_form_view` VALUES("37428", "10", "2016-09-07 17:16:58", "207.194.133.9", "116");
INSERT INTO `wp_rg_form_view` VALUES("37429", "1", "2016-09-07 17:39:30", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("37430", "11", "2016-09-07 17:49:59", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("37431", "12", "2016-09-07 17:52:05", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("37432", "2", "2016-09-07 17:53:42", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("37433", "3", "2016-09-07 18:33:17", "202.46.51.113", "45");
INSERT INTO `wp_rg_form_view` VALUES("37434", "13", "2016-09-07 18:33:20", "202.46.51.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("37435", "10", "2016-09-07 18:33:20", "202.46.51.113", "12");
INSERT INTO `wp_rg_form_view` VALUES("37436", "3", "2016-09-07 19:03:35", "178.137.17.180", "52");
INSERT INTO `wp_rg_form_view` VALUES("37437", "13", "2016-09-07 19:03:36", "178.137.17.180", "7");
INSERT INTO `wp_rg_form_view` VALUES("37438", "10", "2016-09-07 19:03:36", "178.137.17.180", "12");
INSERT INTO `wp_rg_form_view` VALUES("37439", "1", "2016-09-07 19:31:47", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("37440", "10", "2016-09-07 20:08:19", "40.78.101.121", "40");
INSERT INTO `wp_rg_form_view` VALUES("37441", "3", "2016-09-07 20:08:22", "40.78.101.121", "145");
INSERT INTO `wp_rg_form_view` VALUES("37442", "13", "2016-09-07 20:08:22", "40.78.101.121", "19");
INSERT INTO `wp_rg_form_view` VALUES("37443", "3", "2016-09-07 21:09:53", "134.249.232.160", "133");
INSERT INTO `wp_rg_form_view` VALUES("37444", "3", "2016-09-07 21:09:53", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37445", "3", "2016-09-07 21:09:53", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37446", "13", "2016-09-07 21:10:00", "134.249.232.160", "22");
INSERT INTO `wp_rg_form_view` VALUES("37447", "13", "2016-09-07 21:10:00", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37448", "10", "2016-09-07 21:10:00", "134.249.232.160", "36");
INSERT INTO `wp_rg_form_view` VALUES("37449", "10", "2016-09-07 21:10:00", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37450", "10", "2016-09-07 21:10:00", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37451", "1", "2016-09-07 21:27:00", "94.249.160.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("37452", "3", "2016-09-07 22:08:00", "144.76.71.83", "206");
INSERT INTO `wp_rg_form_view` VALUES("37453", "3", "2016-09-07 22:08:00", "144.76.71.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("37454", "3", "2016-09-07 22:08:00", "144.76.71.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("37455", "12", "2016-09-07 22:08:00", "144.76.71.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("37456", "13", "2016-09-07 22:08:01", "144.76.71.83", "30");
INSERT INTO `wp_rg_form_view` VALUES("37457", "10", "2016-09-07 22:08:01", "144.76.71.83", "59");
INSERT INTO `wp_rg_form_view` VALUES("37458", "11", "2016-09-07 22:08:01", "144.76.71.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("37459", "3", "2016-09-07 23:13:57", "202.46.53.192", "532");
INSERT INTO `wp_rg_form_view` VALUES("37460", "13", "2016-09-07 23:14:04", "202.46.53.192", "75");
INSERT INTO `wp_rg_form_view` VALUES("37461", "10", "2016-09-07 23:14:04", "202.46.53.192", "172");
INSERT INTO `wp_rg_form_view` VALUES("37462", "1", "2016-09-07 23:18:07", "106.75.128.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("37463", "11", "2016-09-07 23:35:13", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("37464", "2", "2016-09-07 23:36:04", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("37465", "12", "2016-09-07 23:39:17", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("37466", "13", "2016-09-08 00:01:05", "70.66.187.147", "13");
INSERT INTO `wp_rg_form_view` VALUES("37467", "10", "2016-09-08 00:01:05", "70.66.187.147", "26");
INSERT INTO `wp_rg_form_view` VALUES("37468", "3", "2016-09-08 00:08:06", "178.137.17.180", "57");
INSERT INTO `wp_rg_form_view` VALUES("37469", "1", "2016-09-08 00:27:40", "183.46.111.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("37470", "3", "2016-09-08 01:16:53", "46.118.119.71", "77");
INSERT INTO `wp_rg_form_view` VALUES("37471", "3", "2016-09-08 01:16:53", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37472", "13", "2016-09-08 01:16:54", "46.118.119.71", "13");
INSERT INTO `wp_rg_form_view` VALUES("37473", "10", "2016-09-08 01:16:54", "46.118.119.71", "21");
INSERT INTO `wp_rg_form_view` VALUES("37474", "10", "2016-09-08 01:16:54", "46.118.119.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37475", "3", "2016-09-08 02:12:37", "202.46.55.62", "127");
INSERT INTO `wp_rg_form_view` VALUES("37476", "13", "2016-09-08 02:12:38", "202.46.55.62", "20");
INSERT INTO `wp_rg_form_view` VALUES("37477", "10", "2016-09-08 02:12:38", "202.46.55.62", "36");
INSERT INTO `wp_rg_form_view` VALUES("37478", "3", "2016-09-08 03:09:30", "157.55.39.155", "37");
INSERT INTO `wp_rg_form_view` VALUES("37479", "13", "2016-09-08 03:09:31", "157.55.39.155", "5");
INSERT INTO `wp_rg_form_view` VALUES("37480", "10", "2016-09-08 03:09:31", "157.55.39.155", "10");
INSERT INTO `wp_rg_form_view` VALUES("37481", "9", "2016-09-08 03:25:29", "164.132.161.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("37482", "1", "2016-09-08 03:58:05", "61.134.36.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("37483", "10", "2016-09-08 04:21:53", "96.50.124.53", "55");
INSERT INTO `wp_rg_form_view` VALUES("37484", "3", "2016-09-08 04:21:55", "96.50.124.53", "190");
INSERT INTO `wp_rg_form_view` VALUES("37485", "13", "2016-09-08 04:21:55", "96.50.124.53", "27");
INSERT INTO `wp_rg_form_view` VALUES("37486", "11", "2016-09-08 04:31:44", "172.245.222.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("37487", "12", "2016-09-08 04:32:20", "172.245.222.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("37488", "2", "2016-09-08 04:33:11", "172.245.222.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("37489", "1", "2016-09-08 05:02:10", "94.249.160.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("37490", "3", "2016-09-08 05:02:11", "94.249.160.216", "70");
INSERT INTO `wp_rg_form_view` VALUES("37491", "13", "2016-09-08 05:02:13", "94.249.160.216", "10");
INSERT INTO `wp_rg_form_view` VALUES("37492", "10", "2016-09-08 05:02:13", "94.249.160.216", "20");
INSERT INTO `wp_rg_form_view` VALUES("37493", "3", "2016-09-08 06:20:33", "178.137.17.180", "26");
INSERT INTO `wp_rg_form_view` VALUES("37494", "3", "2016-09-08 06:20:33", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37495", "3", "2016-09-08 06:20:33", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37496", "13", "2016-09-08 06:20:35", "178.137.17.180", "4");
INSERT INTO `wp_rg_form_view` VALUES("37497", "10", "2016-09-08 06:20:35", "178.137.17.180", "9");
INSERT INTO `wp_rg_form_view` VALUES("37498", "3", "2016-09-08 07:02:33", "192.243.55.130", "22");
INSERT INTO `wp_rg_form_view` VALUES("37499", "13", "2016-09-08 07:02:34", "192.243.55.130", "3");
INSERT INTO `wp_rg_form_view` VALUES("37500", "10", "2016-09-08 07:02:34", "192.243.55.130", "6");
INSERT INTO `wp_rg_form_view` VALUES("37501", "3", "2016-09-08 08:02:22", "66.249.79.104", "1246");
INSERT INTO `wp_rg_form_view` VALUES("37502", "13", "2016-09-08 08:02:22", "66.249.79.104", "187");
INSERT INTO `wp_rg_form_view` VALUES("37503", "10", "2016-09-08 08:02:22", "66.249.79.104", "454");
INSERT INTO `wp_rg_form_view` VALUES("37504", "1", "2016-09-08 08:46:15", "104.131.204.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("37505", "11", "2016-09-08 08:46:39", "104.131.204.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("37506", "12", "2016-09-08 08:56:39", "104.131.204.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("37507", "3", "2016-09-08 09:00:11", "157.55.39.139", "2911");
INSERT INTO `wp_rg_form_view` VALUES("37508", "13", "2016-09-08 09:00:12", "157.55.39.139", "421");
INSERT INTO `wp_rg_form_view` VALUES("37509", "10", "2016-09-08 09:00:12", "157.55.39.139", "914");
INSERT INTO `wp_rg_form_view` VALUES("37510", "6", "2016-09-08 09:04:51", "104.131.204.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("37511", "9", "2016-09-08 09:13:45", "104.131.204.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("37512", "2", "2016-09-08 09:50:40", "104.131.204.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("37513", "13", "2016-09-08 10:00:15", "104.131.204.215", "34");
INSERT INTO `wp_rg_form_view` VALUES("37514", "3", "2016-09-08 10:00:15", "104.131.204.215", "224");
INSERT INTO `wp_rg_form_view` VALUES("37515", "10", "2016-09-08 10:00:17", "104.131.204.215", "76");
INSERT INTO `wp_rg_form_view` VALUES("37516", "8", "2016-09-08 10:04:14", "104.131.204.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("37517", "3", "2016-09-08 11:01:17", "5.255.250.37", "7");
INSERT INTO `wp_rg_form_view` VALUES("37518", "13", "2016-09-08 11:01:19", "5.255.250.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("37519", "10", "2016-09-08 11:01:19", "5.255.250.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("37520", "3", "2016-09-08 12:49:48", "45.72.76.37", "81");
INSERT INTO `wp_rg_form_view` VALUES("37521", "13", "2016-09-08 12:49:50", "45.72.76.37", "11");
INSERT INTO `wp_rg_form_view` VALUES("37522", "10", "2016-09-08 12:49:50", "45.72.76.37", "22");
INSERT INTO `wp_rg_form_view` VALUES("37523", "10", "2016-09-08 13:03:14", "96.50.58.1", "10");
INSERT INTO `wp_rg_form_view` VALUES("37524", "3", "2016-09-08 13:03:14", "96.50.58.1", "28");
INSERT INTO `wp_rg_form_view` VALUES("37525", "13", "2016-09-08 13:03:15", "96.50.58.1", "4");
INSERT INTO `wp_rg_form_view` VALUES("37526", "3", "2016-09-08 14:21:11", "192.243.55.137", "29");
INSERT INTO `wp_rg_form_view` VALUES("37527", "13", "2016-09-08 14:21:15", "192.243.55.137", "4");
INSERT INTO `wp_rg_form_view` VALUES("37528", "10", "2016-09-08 14:21:15", "192.243.55.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("37529", "3", "2016-09-08 15:01:42", "163.172.66.62", "42");
INSERT INTO `wp_rg_form_view` VALUES("37530", "13", "2016-09-08 15:01:42", "163.172.66.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("37531", "10", "2016-09-08 15:01:42", "163.172.66.62", "12");
INSERT INTO `wp_rg_form_view` VALUES("37532", "1", "2016-09-08 15:23:57", "163.172.66.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("37533", "3", "2016-09-08 16:05:14", "184.69.23.82", "50");
INSERT INTO `wp_rg_form_view` VALUES("37534", "13", "2016-09-08 16:05:15", "184.69.23.82", "7");
INSERT INTO `wp_rg_form_view` VALUES("37535", "10", "2016-09-08 16:05:15", "184.69.23.82", "14");
INSERT INTO `wp_rg_form_view` VALUES("37536", "3", "2016-09-08 17:05:53", "192.243.55.134", "15");
INSERT INTO `wp_rg_form_view` VALUES("37537", "13", "2016-09-08 17:05:54", "192.243.55.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("37538", "10", "2016-09-08 17:05:54", "192.243.55.134", "4");
INSERT INTO `wp_rg_form_view` VALUES("37539", "3", "2016-09-08 18:00:28", "77.75.78.164", "29");
INSERT INTO `wp_rg_form_view` VALUES("37540", "13", "2016-09-08 18:00:29", "77.75.78.164", "5");
INSERT INTO `wp_rg_form_view` VALUES("37541", "10", "2016-09-08 18:00:29", "77.75.78.164", "17");
INSERT INTO `wp_rg_form_view` VALUES("37542", "3", "2016-09-08 19:03:43", "157.55.39.139", "117");
INSERT INTO `wp_rg_form_view` VALUES("37543", "13", "2016-09-08 19:03:45", "157.55.39.139", "16");
INSERT INTO `wp_rg_form_view` VALUES("37544", "10", "2016-09-08 19:03:45", "157.55.39.139", "33");
INSERT INTO `wp_rg_form_view` VALUES("37545", "3", "2016-09-08 20:15:43", "68.180.231.26", "43");
INSERT INTO `wp_rg_form_view` VALUES("37546", "13", "2016-09-08 20:15:43", "68.180.231.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("37547", "10", "2016-09-08 20:15:43", "68.180.231.26", "13");
INSERT INTO `wp_rg_form_view` VALUES("37548", "3", "2016-09-08 21:03:32", "77.75.78.163", "460");
INSERT INTO `wp_rg_form_view` VALUES("37549", "13", "2016-09-08 21:03:33", "77.75.78.163", "67");
INSERT INTO `wp_rg_form_view` VALUES("37550", "10", "2016-09-08 21:03:33", "77.75.78.163", "139");
INSERT INTO `wp_rg_form_view` VALUES("37551", "2", "2016-09-08 21:09:00", "174.127.133.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("37552", "3", "2016-09-08 22:12:00", "157.55.39.56", "21");
INSERT INTO `wp_rg_form_view` VALUES("37553", "13", "2016-09-08 22:12:01", "157.55.39.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("37554", "10", "2016-09-08 22:12:01", "157.55.39.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("37555", "3", "2016-09-08 23:03:25", "202.46.58.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("37556", "13", "2016-09-08 23:03:28", "202.46.58.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("37557", "10", "2016-09-08 23:03:28", "202.46.58.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("37558", "3", "2016-09-09 00:09:21", "77.75.79.62", "73");
INSERT INTO `wp_rg_form_view` VALUES("37559", "13", "2016-09-09 00:09:22", "77.75.79.62", "10");
INSERT INTO `wp_rg_form_view` VALUES("37560", "10", "2016-09-09 00:09:22", "77.75.79.62", "23");
INSERT INTO `wp_rg_form_view` VALUES("37561", "3", "2016-09-09 01:09:59", "199.21.99.202", "65");
INSERT INTO `wp_rg_form_view` VALUES("37562", "13", "2016-09-09 01:09:59", "199.21.99.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("37563", "10", "2016-09-09 01:09:59", "199.21.99.202", "18");
INSERT INTO `wp_rg_form_view` VALUES("37564", "11", "2016-09-09 01:22:28", "51.255.65.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("37565", "3", "2016-09-09 02:22:07", "178.137.17.180", "20");
INSERT INTO `wp_rg_form_view` VALUES("37566", "3", "2016-09-09 02:22:07", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37567", "13", "2016-09-09 02:22:09", "178.137.17.180", "3");
INSERT INTO `wp_rg_form_view` VALUES("37568", "10", "2016-09-09 02:22:09", "178.137.17.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("37569", "1", "2016-09-09 03:15:52", "117.253.217.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("37570", "3", "2016-09-09 03:15:53", "117.253.217.223", "49");
INSERT INTO `wp_rg_form_view` VALUES("37571", "13", "2016-09-09 03:15:53", "117.253.217.223", "7");
INSERT INTO `wp_rg_form_view` VALUES("37572", "10", "2016-09-09 03:15:53", "117.253.217.223", "14");
INSERT INTO `wp_rg_form_view` VALUES("37573", "3", "2016-09-09 04:08:48", "173.183.122.234", "28");
INSERT INTO `wp_rg_form_view` VALUES("37574", "13", "2016-09-09 04:08:48", "173.183.122.234", "4");
INSERT INTO `wp_rg_form_view` VALUES("37575", "10", "2016-09-09 04:08:48", "173.183.122.234", "8");
INSERT INTO `wp_rg_form_view` VALUES("37576", "3", "2016-09-09 05:08:04", "220.181.108.146", "7");
INSERT INTO `wp_rg_form_view` VALUES("37577", "13", "2016-09-09 05:08:05", "220.181.108.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("37578", "10", "2016-09-09 05:08:05", "220.181.108.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("37579", "3", "2016-09-09 06:49:22", "178.137.17.180", "19");
INSERT INTO `wp_rg_form_view` VALUES("37580", "3", "2016-09-09 06:49:22", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37581", "3", "2016-09-09 06:49:22", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37582", "13", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37583", "13", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37584", "13", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37585", "10", "2016-09-09 06:49:25", "178.137.17.180", "4");
INSERT INTO `wp_rg_form_view` VALUES("37586", "10", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37587", "10", "2016-09-09 06:49:25", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37588", "3", "2016-09-09 07:38:23", "202.46.53.121", "14");
INSERT INTO `wp_rg_form_view` VALUES("37589", "13", "2016-09-09 07:38:24", "202.46.53.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("37590", "10", "2016-09-09 07:38:24", "202.46.53.121", "4");
INSERT INTO `wp_rg_form_view` VALUES("37591", "3", "2016-09-09 08:05:51", "96.54.188.116", "72");
INSERT INTO `wp_rg_form_view` VALUES("37592", "13", "2016-09-09 08:05:53", "96.54.188.116", "10");
INSERT INTO `wp_rg_form_view` VALUES("37593", "10", "2016-09-09 08:05:53", "96.54.188.116", "20");
INSERT INTO `wp_rg_form_view` VALUES("37594", "1", "2016-09-09 08:21:32", "23.245.238.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("37595", "3", "2016-09-09 09:00:29", "202.46.58.122", "30");
INSERT INTO `wp_rg_form_view` VALUES("37596", "13", "2016-09-09 09:00:29", "202.46.58.122", "4");
INSERT INTO `wp_rg_form_view` VALUES("37597", "10", "2016-09-09 09:00:29", "202.46.58.122", "8");
INSERT INTO `wp_rg_form_view` VALUES("37598", "3", "2016-09-09 10:09:02", "163.172.65.38", "28");
INSERT INTO `wp_rg_form_view` VALUES("37599", "13", "2016-09-09 10:09:03", "163.172.65.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("37600", "10", "2016-09-09 10:09:03", "163.172.65.38", "8");
INSERT INTO `wp_rg_form_view` VALUES("37601", "3", "2016-09-09 11:10:36", "202.46.58.74", "49");
INSERT INTO `wp_rg_form_view` VALUES("37602", "13", "2016-09-09 11:10:36", "202.46.58.74", "7");
INSERT INTO `wp_rg_form_view` VALUES("37603", "10", "2016-09-09 11:10:36", "202.46.58.74", "14");
INSERT INTO `wp_rg_form_view` VALUES("37604", "3", "2016-09-09 12:03:35", "51.255.65.57", "76");
INSERT INTO `wp_rg_form_view` VALUES("37605", "13", "2016-09-09 12:03:36", "51.255.65.57", "10");
INSERT INTO `wp_rg_form_view` VALUES("37606", "10", "2016-09-09 12:03:36", "51.255.65.57", "20");
INSERT INTO `wp_rg_form_view` VALUES("37607", "3", "2016-09-09 13:02:12", "134.249.141.83", "33");
INSERT INTO `wp_rg_form_view` VALUES("37608", "13", "2016-09-09 13:02:12", "134.249.141.83", "5");
INSERT INTO `wp_rg_form_view` VALUES("37609", "10", "2016-09-09 13:02:12", "134.249.141.83", "10");
INSERT INTO `wp_rg_form_view` VALUES("37610", "3", "2016-09-09 14:12:59", "68.180.231.26", "79");
INSERT INTO `wp_rg_form_view` VALUES("37611", "13", "2016-09-09 14:13:00", "68.180.231.26", "11");
INSERT INTO `wp_rg_form_view` VALUES("37612", "10", "2016-09-09 14:13:00", "68.180.231.26", "23");
INSERT INTO `wp_rg_form_view` VALUES("37613", "11", "2016-09-09 14:20:55", "68.180.231.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("37614", "1", "2016-09-09 14:22:49", "154.20.7.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("37615", "3", "2016-09-09 15:10:35", "163.172.66.62", "85");
INSERT INTO `wp_rg_form_view` VALUES("37616", "13", "2016-09-09 15:10:39", "163.172.66.62", "12");
INSERT INTO `wp_rg_form_view` VALUES("37617", "10", "2016-09-09 15:10:39", "163.172.66.62", "24");
INSERT INTO `wp_rg_form_view` VALUES("37618", "10", "2016-09-09 16:11:07", "104.142.123.174", "24");
INSERT INTO `wp_rg_form_view` VALUES("37619", "3", "2016-09-09 16:11:09", "104.142.123.174", "77");
INSERT INTO `wp_rg_form_view` VALUES("37620", "13", "2016-09-09 16:11:09", "104.142.123.174", "11");
INSERT INTO `wp_rg_form_view` VALUES("37621", "11", "2016-09-09 16:49:40", "64.114.29.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("37622", "3", "2016-09-09 17:05:32", "163.172.66.83", "71");
INSERT INTO `wp_rg_form_view` VALUES("37623", "13", "2016-09-09 17:05:33", "163.172.66.83", "10");
INSERT INTO `wp_rg_form_view` VALUES("37624", "10", "2016-09-09 17:05:33", "163.172.66.83", "20");
INSERT INTO `wp_rg_form_view` VALUES("37625", "3", "2016-09-09 18:10:58", "202.46.54.184", "45");
INSERT INTO `wp_rg_form_view` VALUES("37626", "13", "2016-09-09 18:11:00", "202.46.54.184", "6");
INSERT INTO `wp_rg_form_view` VALUES("37627", "10", "2016-09-09 18:11:00", "202.46.54.184", "12");
INSERT INTO `wp_rg_form_view` VALUES("37628", "2", "2016-09-09 18:30:02", "163.172.66.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("37629", "3", "2016-09-09 19:04:19", "68.180.231.26", "31");
INSERT INTO `wp_rg_form_view` VALUES("37630", "13", "2016-09-09 19:04:22", "68.180.231.26", "4");
INSERT INTO `wp_rg_form_view` VALUES("37631", "10", "2016-09-09 19:04:22", "68.180.231.26", "8");
INSERT INTO `wp_rg_form_view` VALUES("37632", "3", "2016-09-09 20:31:54", "164.132.161.58", "7");
INSERT INTO `wp_rg_form_view` VALUES("37633", "13", "2016-09-09 20:31:56", "164.132.161.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("37634", "10", "2016-09-09 20:31:56", "164.132.161.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("37635", "3", "2016-09-09 21:19:32", "202.46.53.174", "42");
INSERT INTO `wp_rg_form_view` VALUES("37636", "13", "2016-09-09 21:19:38", "202.46.53.174", "6");
INSERT INTO `wp_rg_form_view` VALUES("37637", "10", "2016-09-09 21:19:38", "202.46.53.174", "13");
INSERT INTO `wp_rg_form_view` VALUES("37638", "3", "2016-09-09 22:01:10", "68.180.231.26", "84");
INSERT INTO `wp_rg_form_view` VALUES("37639", "13", "2016-09-09 22:01:11", "68.180.231.26", "12");
INSERT INTO `wp_rg_form_view` VALUES("37640", "10", "2016-09-09 22:01:11", "68.180.231.26", "24");
INSERT INTO `wp_rg_form_view` VALUES("37641", "3", "2016-09-09 23:14:09", "142.104.240.37", "49");
INSERT INTO `wp_rg_form_view` VALUES("37642", "13", "2016-09-09 23:14:17", "142.104.240.37", "7");
INSERT INTO `wp_rg_form_view` VALUES("37643", "10", "2016-09-09 23:14:17", "142.104.240.37", "13");
INSERT INTO `wp_rg_form_view` VALUES("37644", "10", "2016-09-09 23:14:17", "142.104.240.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("37645", "3", "2016-09-10 00:42:25", "202.46.53.158", "7");
INSERT INTO `wp_rg_form_view` VALUES("37646", "13", "2016-09-10 00:42:27", "202.46.53.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("37647", "10", "2016-09-10 00:42:27", "202.46.53.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("37648", "3", "2016-09-10 01:03:35", "68.180.231.26", "36");
INSERT INTO `wp_rg_form_view` VALUES("37649", "13", "2016-09-10 01:03:35", "68.180.231.26", "5");
INSERT INTO `wp_rg_form_view` VALUES("37650", "10", "2016-09-10 01:03:35", "68.180.231.26", "10");
INSERT INTO `wp_rg_form_view` VALUES("37651", "3", "2016-09-10 02:04:32", "157.55.39.249", "44");
INSERT INTO `wp_rg_form_view` VALUES("37652", "13", "2016-09-10 02:04:33", "157.55.39.249", "6");
INSERT INTO `wp_rg_form_view` VALUES("37653", "10", "2016-09-10 02:04:33", "157.55.39.249", "12");
INSERT INTO `wp_rg_form_view` VALUES("37654", "1", "2016-09-10 02:27:11", "154.20.7.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("37655", "3", "2016-09-10 03:08:05", "66.249.79.112", "79");
INSERT INTO `wp_rg_form_view` VALUES("37656", "13", "2016-09-10 03:08:05", "66.249.79.112", "11");
INSERT INTO `wp_rg_form_view` VALUES("37657", "10", "2016-09-10 03:08:05", "66.249.79.112", "22");
INSERT INTO `wp_rg_form_view` VALUES("37658", "1", "2016-09-10 03:23:15", "5.230.133.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("37659", "3", "2016-09-10 04:01:05", "108.180.119.62", "28");
INSERT INTO `wp_rg_form_view` VALUES("37660", "13", "2016-09-10 04:01:05", "108.180.119.62", "4");
INSERT INTO `wp_rg_form_view` VALUES("37661", "10", "2016-09-10 04:01:05", "108.180.119.62", "8");
INSERT INTO `wp_rg_form_view` VALUES("37662", "13", "2016-09-10 05:18:57", "68.180.231.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("37663", "3", "2016-09-10 05:18:59", "68.180.231.26", "36");
INSERT INTO `wp_rg_form_view` VALUES("37664", "10", "2016-09-10 05:19:00", "68.180.231.26", "10");
INSERT INTO `wp_rg_form_view` VALUES("37665", "6", "2016-09-10 05:42:33", "5.9.17.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("37666", "3", "2016-09-10 06:18:25", "163.172.66.108", "63");
INSERT INTO `wp_rg_form_view` VALUES("37667", "13", "2016-09-10 06:18:27", "163.172.66.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("37668", "10", "2016-09-10 06:18:27", "163.172.66.108", "19");
INSERT INTO `wp_rg_form_view` VALUES("37669", "3", "2016-09-10 07:30:06", "207.46.13.101", "507");
INSERT INTO `wp_rg_form_view` VALUES("37670", "13", "2016-09-10 07:30:09", "207.46.13.101", "74");
INSERT INTO `wp_rg_form_view` VALUES("37671", "10", "2016-09-10 07:30:09", "207.46.13.101", "157");
INSERT INTO `wp_rg_form_view` VALUES("37672", "11", "2016-09-10 07:48:23", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("37673", "2", "2016-09-10 07:48:28", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("37674", "12", "2016-09-10 07:50:44", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("37675", "1", "2016-09-10 07:51:09", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("37676", "3", "2016-09-10 08:13:15", "202.46.54.33", "29");
INSERT INTO `wp_rg_form_view` VALUES("37677", "13", "2016-09-10 08:13:16", "202.46.54.33", "4");
INSERT INTO `wp_rg_form_view` VALUES("37678", "10", "2016-09-10 08:13:16", "202.46.54.33", "8");
INSERT INTO `wp_rg_form_view` VALUES("37679", "3", "2016-09-10 09:02:46", "178.137.17.180", "49");
INSERT INTO `wp_rg_form_view` VALUES("37680", "3", "2016-09-10 09:02:46", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37681", "13", "2016-09-10 09:02:47", "178.137.17.180", "7");
INSERT INTO `wp_rg_form_view` VALUES("37682", "10", "2016-09-10 09:02:47", "178.137.17.180", "13");
INSERT INTO `wp_rg_form_view` VALUES("37683", "10", "2016-09-10 09:02:47", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37684", "3", "2016-09-10 10:27:18", "202.46.54.93", "14");
INSERT INTO `wp_rg_form_view` VALUES("37685", "13", "2016-09-10 10:27:20", "202.46.54.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("37686", "10", "2016-09-10 10:27:20", "202.46.54.93", "4");
INSERT INTO `wp_rg_form_view` VALUES("37687", "12", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37688", "11", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37689", "2", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37690", "3", "2016-09-10 11:23:09", "104.131.61.71", "162");
INSERT INTO `wp_rg_form_view` VALUES("37691", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37692", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37693", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37694", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37695", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37696", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37697", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37698", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37699", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37700", "3", "2016-09-10 11:23:09", "104.131.61.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("37701", "13", "2016-09-10 11:23:18", "104.131.61.71", "24");
INSERT INTO `wp_rg_form_view` VALUES("37702", "10", "2016-09-10 11:23:18", "104.131.61.71", "48");
INSERT INTO `wp_rg_form_view` VALUES("37703", "1", "2016-09-10 11:52:25", "173.254.247.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("37704", "3", "2016-09-10 12:23:03", "41.73.213.130", "14");
INSERT INTO `wp_rg_form_view` VALUES("37705", "13", "2016-09-10 12:23:05", "41.73.213.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("37706", "10", "2016-09-10 12:23:05", "41.73.213.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("37707", "3", "2016-09-10 13:08:02", "178.137.164.15", "56");
INSERT INTO `wp_rg_form_view` VALUES("37708", "3", "2016-09-10 13:08:02", "178.137.164.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("37709", "13", "2016-09-10 13:08:04", "178.137.164.15", "8");
INSERT INTO `wp_rg_form_view` VALUES("37710", "10", "2016-09-10 13:08:04", "178.137.164.15", "16");
INSERT INTO `wp_rg_form_view` VALUES("37711", "10", "2016-09-10 13:08:04", "178.137.164.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("37712", "13", "2016-09-10 14:14:58", "68.180.231.26", "4");
INSERT INTO `wp_rg_form_view` VALUES("37713", "10", "2016-09-10 14:14:58", "68.180.231.26", "7");
INSERT INTO `wp_rg_form_view` VALUES("37714", "3", "2016-09-10 14:35:39", "220.181.108.178", "22");
INSERT INTO `wp_rg_form_view` VALUES("37715", "3", "2016-09-10 15:05:36", "68.180.231.26", "219");
INSERT INTO `wp_rg_form_view` VALUES("37716", "13", "2016-09-10 15:05:37", "68.180.231.26", "31");
INSERT INTO `wp_rg_form_view` VALUES("37717", "10", "2016-09-10 15:05:37", "68.180.231.26", "61");
INSERT INTO `wp_rg_form_view` VALUES("37718", "2", "2016-09-10 15:50:25", "138.201.57.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("37719", "1", "2016-09-10 15:53:28", "138.201.57.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("37720", "11", "2016-09-10 15:57:43", "138.201.57.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("37721", "3", "2016-09-10 16:00:18", "138.201.57.139", "494");
INSERT INTO `wp_rg_form_view` VALUES("37722", "13", "2016-09-10 16:00:18", "138.201.57.139", "71");
INSERT INTO `wp_rg_form_view` VALUES("37723", "10", "2016-09-10 16:00:18", "138.201.57.139", "141");
INSERT INTO `wp_rg_form_view` VALUES("37724", "12", "2016-09-10 16:06:48", "138.201.57.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("37725", "1", "2016-09-10 16:07:23", "23.89.206.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("37726", "11", "2016-09-10 16:09:45", "138.201.57.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("37727", "13", "2016-09-10 17:11:16", "220.181.108.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("37728", "3", "2016-09-10 17:11:18", "220.181.108.77", "35");
INSERT INTO `wp_rg_form_view` VALUES("37729", "10", "2016-09-10 17:11:19", "220.181.108.77", "10");
INSERT INTO `wp_rg_form_view` VALUES("37730", "3", "2016-09-10 18:15:29", "96.50.28.110", "81");
INSERT INTO `wp_rg_form_view` VALUES("37731", "13", "2016-09-10 18:15:30", "96.50.28.110", "12");
INSERT INTO `wp_rg_form_view` VALUES("37732", "10", "2016-09-10 18:15:31", "96.50.28.110", "22");
INSERT INTO `wp_rg_form_view` VALUES("37733", "3", "2016-09-10 19:18:17", "154.20.31.141", "28");
INSERT INTO `wp_rg_form_view` VALUES("37734", "13", "2016-09-10 19:18:20", "154.20.31.141", "4");
INSERT INTO `wp_rg_form_view` VALUES("37735", "10", "2016-09-10 19:18:20", "154.20.31.141", "8");
INSERT INTO `wp_rg_form_view` VALUES("37736", "1", "2016-09-10 19:43:46", "130.204.207.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("37737", "1", "2016-09-10 20:03:38", "89.185.217.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("37738", "3", "2016-09-10 20:03:39", "89.185.217.248", "28");
INSERT INTO `wp_rg_form_view` VALUES("37739", "13", "2016-09-10 20:03:40", "89.185.217.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("37740", "10", "2016-09-10 20:03:40", "89.185.217.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("37741", "3", "2016-09-10 21:07:40", "202.46.55.175", "15");
INSERT INTO `wp_rg_form_view` VALUES("37742", "13", "2016-09-10 21:07:43", "202.46.55.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("37743", "10", "2016-09-10 21:07:43", "202.46.55.175", "4");
INSERT INTO `wp_rg_form_view` VALUES("37744", "3", "2016-09-10 22:15:54", "51.255.66.160", "43");
INSERT INTO `wp_rg_form_view` VALUES("37745", "13", "2016-09-10 22:15:56", "51.255.66.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("37746", "10", "2016-09-10 22:15:56", "51.255.66.160", "12");
INSERT INTO `wp_rg_form_view` VALUES("37747", "1", "2016-09-10 22:33:32", "68.180.231.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("37748", "3", "2016-09-10 23:32:54", "68.180.231.26", "7");
INSERT INTO `wp_rg_form_view` VALUES("37749", "13", "2016-09-10 23:32:57", "68.180.231.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("37750", "10", "2016-09-10 23:32:58", "68.180.231.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("37751", "3", "2016-09-11 00:21:43", "77.75.77.54", "43");
INSERT INTO `wp_rg_form_view` VALUES("37752", "13", "2016-09-11 00:21:46", "77.75.77.54", "6");
INSERT INTO `wp_rg_form_view` VALUES("37753", "10", "2016-09-11 00:21:46", "77.75.77.54", "12");
INSERT INTO `wp_rg_form_view` VALUES("37754", "3", "2016-09-11 01:07:12", "70.67.51.254", "114");
INSERT INTO `wp_rg_form_view` VALUES("37755", "13", "2016-09-11 01:07:13", "70.67.51.254", "15");
INSERT INTO `wp_rg_form_view` VALUES("37756", "10", "2016-09-11 01:07:13", "70.67.51.254", "30");
INSERT INTO `wp_rg_form_view` VALUES("37757", "1", "2016-09-11 01:55:01", "130.204.207.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("37758", "5", "2016-09-11 01:57:56", "77.75.76.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("37759", "3", "2016-09-11 02:47:39", "163.172.64.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("37760", "13", "2016-09-11 02:47:42", "163.172.64.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("37761", "10", "2016-09-11 02:47:42", "163.172.64.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("37762", "3", "2016-09-11 03:03:39", "217.69.133.229", "157");
INSERT INTO `wp_rg_form_view` VALUES("37763", "13", "2016-09-11 03:03:39", "217.69.133.229", "19");
INSERT INTO `wp_rg_form_view` VALUES("37764", "10", "2016-09-11 03:03:39", "217.69.133.229", "45");
INSERT INTO `wp_rg_form_view` VALUES("37765", "3", "2016-09-11 04:00:08", "134.249.232.160", "42");
INSERT INTO `wp_rg_form_view` VALUES("37766", "13", "2016-09-11 04:00:09", "134.249.232.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("37767", "10", "2016-09-11 04:00:09", "134.249.232.160", "12");
INSERT INTO `wp_rg_form_view` VALUES("37768", "1", "2016-09-11 04:53:24", "107.172.153.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("37769", "3", "2016-09-11 05:47:39", "66.249.79.112", "8");
INSERT INTO `wp_rg_form_view` VALUES("37770", "13", "2016-09-11 05:47:41", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("37771", "10", "2016-09-11 05:47:41", "66.249.79.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("37772", "3", "2016-09-11 06:04:14", "51.255.65.76", "58");
INSERT INTO `wp_rg_form_view` VALUES("37773", "13", "2016-09-11 06:04:21", "51.255.65.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("37774", "10", "2016-09-11 06:04:21", "51.255.65.76", "16");
INSERT INTO `wp_rg_form_view` VALUES("37775", "3", "2016-09-11 07:15:43", "202.46.49.76", "28");
INSERT INTO `wp_rg_form_view` VALUES("37776", "13", "2016-09-11 07:15:43", "202.46.49.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("37777", "10", "2016-09-11 07:15:43", "202.46.49.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("37778", "3", "2016-09-11 08:10:46", "134.249.232.160", "962");
INSERT INTO `wp_rg_form_view` VALUES("37779", "3", "2016-09-11 08:10:46", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37780", "3", "2016-09-11 08:10:46", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37781", "13", "2016-09-11 08:10:47", "134.249.232.160", "129");
INSERT INTO `wp_rg_form_view` VALUES("37782", "13", "2016-09-11 08:10:47", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37783", "13", "2016-09-11 08:10:47", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37784", "10", "2016-09-11 08:10:47", "134.249.232.160", "268");
INSERT INTO `wp_rg_form_view` VALUES("37785", "10", "2016-09-11 08:10:47", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37786", "10", "2016-09-11 08:10:47", "134.249.232.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("37787", "9", "2016-09-11 08:42:11", "40.77.167.46", "5");
INSERT INTO `wp_rg_form_view` VALUES("37788", "12", "2016-09-11 08:42:42", "40.77.167.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("37789", "8", "2016-09-11 08:42:50", "40.77.167.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("37790", "6", "2016-09-11 08:43:25", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("37791", "5", "2016-09-11 08:43:44", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("37792", "3", "2016-09-11 09:09:20", "164.132.161.31", "30");
INSERT INTO `wp_rg_form_view` VALUES("37793", "13", "2016-09-11 09:09:25", "164.132.161.31", "4");
INSERT INTO `wp_rg_form_view` VALUES("37794", "10", "2016-09-11 09:09:25", "164.132.161.31", "8");
INSERT INTO `wp_rg_form_view` VALUES("37795", "3", "2016-09-11 10:14:04", "46.118.119.71", "75");
INSERT INTO `wp_rg_form_view` VALUES("37796", "13", "2016-09-11 10:14:05", "46.118.119.71", "11");
INSERT INTO `wp_rg_form_view` VALUES("37797", "10", "2016-09-11 10:14:05", "46.118.119.71", "19");
INSERT INTO `wp_rg_form_view` VALUES("37798", "1", "2016-09-11 10:46:32", "94.249.160.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("37799", "3", "2016-09-11 11:18:56", "164.132.161.15", "21");
INSERT INTO `wp_rg_form_view` VALUES("37800", "13", "2016-09-11 11:19:00", "164.132.161.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("37801", "10", "2016-09-11 11:19:00", "164.132.161.15", "7");
INSERT INTO `wp_rg_form_view` VALUES("37802", "1", "2016-09-11 12:26:24", "89.185.217.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("37803", "3", "2016-09-11 12:26:24", "89.185.217.248", "22");
INSERT INTO `wp_rg_form_view` VALUES("37804", "13", "2016-09-11 12:26:25", "89.185.217.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("37805", "10", "2016-09-11 12:26:25", "89.185.217.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("37806", "3", "2016-09-11 13:27:05", "66.249.79.108", "63");
INSERT INTO `wp_rg_form_view` VALUES("37807", "13", "2016-09-11 13:27:06", "66.249.79.108", "11");
INSERT INTO `wp_rg_form_view` VALUES("37808", "10", "2016-09-11 13:27:06", "66.249.79.108", "15");
INSERT INTO `wp_rg_form_view` VALUES("37809", "3", "2016-09-11 14:31:16", "202.46.53.17", "14");
INSERT INTO `wp_rg_form_view` VALUES("37810", "13", "2016-09-11 14:31:17", "202.46.53.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("37811", "10", "2016-09-11 14:31:17", "202.46.53.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("37812", "10", "2016-09-11 15:26:11", "157.55.39.196", "13");
INSERT INTO `wp_rg_form_view` VALUES("37813", "3", "2016-09-11 15:26:15", "157.55.39.196", "43");
INSERT INTO `wp_rg_form_view` VALUES("37814", "13", "2016-09-11 15:26:16", "157.55.39.196", "6");
INSERT INTO `wp_rg_form_view` VALUES("37815", "3", "2016-09-11 16:11:47", "202.46.48.204", "21");
INSERT INTO `wp_rg_form_view` VALUES("37816", "13", "2016-09-11 16:11:50", "202.46.48.204", "3");
INSERT INTO `wp_rg_form_view` VALUES("37817", "10", "2016-09-11 16:11:50", "202.46.48.204", "6");
INSERT INTO `wp_rg_form_view` VALUES("37818", "3", "2016-09-11 17:18:46", "202.46.57.203", "36");
INSERT INTO `wp_rg_form_view` VALUES("37819", "13", "2016-09-11 17:18:50", "202.46.57.203", "5");
INSERT INTO `wp_rg_form_view` VALUES("37820", "10", "2016-09-11 17:18:50", "202.46.57.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("37821", "1", "2016-09-11 17:20:54", "155.94.245.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("37822", "3", "2016-09-11 18:11:47", "23.80.167.189", "64");
INSERT INTO `wp_rg_form_view` VALUES("37823", "13", "2016-09-11 18:11:48", "23.80.167.189", "9");
INSERT INTO `wp_rg_form_view` VALUES("37824", "10", "2016-09-11 18:11:48", "23.80.167.189", "18");
INSERT INTO `wp_rg_form_view` VALUES("37825", "1", "2016-09-11 19:02:26", "107.172.150.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("37826", "3", "2016-09-11 19:02:27", "107.172.150.44", "77");
INSERT INTO `wp_rg_form_view` VALUES("37827", "13", "2016-09-11 19:02:27", "107.172.150.44", "11");
INSERT INTO `wp_rg_form_view` VALUES("37828", "10", "2016-09-11 19:02:27", "107.172.150.44", "22");
INSERT INTO `wp_rg_form_view` VALUES("37829", "3", "2016-09-11 20:05:20", "24.108.6.187", "28");
INSERT INTO `wp_rg_form_view` VALUES("37830", "13", "2016-09-11 20:05:21", "24.108.6.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("37831", "10", "2016-09-11 20:05:21", "24.108.6.187", "8");
INSERT INTO `wp_rg_form_view` VALUES("37832", "1", "2016-09-11 20:06:52", "195.162.4.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("37833", "3", "2016-09-11 21:22:12", "68.180.231.26", "70");
INSERT INTO `wp_rg_form_view` VALUES("37834", "13", "2016-09-11 21:22:14", "68.180.231.26", "10");
INSERT INTO `wp_rg_form_view` VALUES("37835", "10", "2016-09-11 21:22:14", "68.180.231.26", "20");
INSERT INTO `wp_rg_form_view` VALUES("37836", "2", "2016-09-11 22:03:02", "68.180.231.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("37837", "3", "2016-09-11 22:03:02", "68.180.231.26", "50");
INSERT INTO `wp_rg_form_view` VALUES("37838", "13", "2016-09-11 22:03:03", "68.180.231.26", "7");
INSERT INTO `wp_rg_form_view` VALUES("37839", "10", "2016-09-11 22:03:03", "68.180.231.26", "14");
INSERT INTO `wp_rg_form_view` VALUES("37840", "10", "2016-09-11 23:00:49", "70.66.180.119", "57");
INSERT INTO `wp_rg_form_view` VALUES("37841", "3", "2016-09-11 23:00:54", "70.66.180.119", "193");
INSERT INTO `wp_rg_form_view` VALUES("37842", "13", "2016-09-11 23:00:54", "70.66.180.119", "27");
INSERT INTO `wp_rg_form_view` VALUES("37843", "1", "2016-09-11 23:08:37", "162.216.46.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("37844", "10", "2016-09-12 00:09:09", "54.211.194.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("37845", "3", "2016-09-12 00:09:11", "54.211.194.119", "14");
INSERT INTO `wp_rg_form_view` VALUES("37846", "13", "2016-09-12 00:09:11", "54.211.194.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("37847", "3", "2016-09-12 01:05:45", "154.20.30.93", "105");
INSERT INTO `wp_rg_form_view` VALUES("37848", "13", "2016-09-12 01:05:46", "154.20.30.93", "15");
INSERT INTO `wp_rg_form_view` VALUES("37849", "10", "2016-09-12 01:05:46", "154.20.30.93", "29");
INSERT INTO `wp_rg_form_view` VALUES("37850", "7", "2016-09-12 01:28:14", "68.180.231.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("37851", "8", "2016-09-12 01:30:52", "157.55.39.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("37852", "1", "2016-09-12 02:04:44", "192.99.166.236", "8");
INSERT INTO `wp_rg_form_view` VALUES("37853", "3", "2016-09-12 02:04:44", "192.99.166.236", "158");
INSERT INTO `wp_rg_form_view` VALUES("37854", "13", "2016-09-12 02:04:45", "192.99.166.236", "22");
INSERT INTO `wp_rg_form_view` VALUES("37855", "10", "2016-09-12 02:04:45", "192.99.166.236", "44");
INSERT INTO `wp_rg_form_view` VALUES("37856", "3", "2016-09-12 03:23:45", "66.249.79.104", "44");
INSERT INTO `wp_rg_form_view` VALUES("37857", "13", "2016-09-12 03:23:46", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("37858", "10", "2016-09-12 03:23:46", "66.249.79.104", "13");
INSERT INTO `wp_rg_form_view` VALUES("37859", "3", "2016-09-12 04:07:12", "178.137.17.180", "49");
INSERT INTO `wp_rg_form_view` VALUES("37860", "3", "2016-09-12 04:07:12", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37861", "3", "2016-09-12 04:07:12", "178.137.17.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("37862", "13", "2016-09-12 04:07:13", "178.137.17.180", "7");
INSERT INTO `wp_rg_form_view` VALUES("37863", "10", "2016-09-12 04:07:13", "178.137.17.180", "15");
INSERT INTO `wp_rg_form_view` VALUES("37864", "3", "2016-09-12 05:09:18", "66.249.79.112", "30");
INSERT INTO `wp_rg_form_view` VALUES("37865", "13", "2016-09-12 05:09:18", "66.249.79.112", "4");
INSERT INTO `wp_rg_form_view` VALUES("37866", "10", "2016-09-12 05:09:18", "66.249.79.112", "8");
INSERT INTO `wp_rg_form_view` VALUES("37867", "3", "2016-09-12 06:04:26", "162.217.234.153", "127");
INSERT INTO `wp_rg_form_view` VALUES("37868", "13", "2016-09-12 06:04:27", "162.217.234.153", "19");
INSERT INTO `wp_rg_form_view` VALUES("37869", "10", "2016-09-12 06:04:27", "162.217.234.153", "36");
INSERT INTO `wp_rg_form_view` VALUES("37870", "3", "2016-09-12 07:22:02", "99.199.2.129", "42");
INSERT INTO `wp_rg_form_view` VALUES("37871", "13", "2016-09-12 07:22:04", "99.199.2.129", "6");
INSERT INTO `wp_rg_form_view` VALUES("37872", "10", "2016-09-12 07:22:04", "99.199.2.129", "13");
INSERT INTO `wp_rg_form_view` VALUES("37873", "3", "2016-09-12 08:05:15", "24.68.42.124", "53");
INSERT INTO `wp_rg_form_view` VALUES("37874", "3", "2016-09-12 08:05:15", "24.68.42.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37875", "3", "2016-09-12 08:05:15", "24.68.42.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37876", "3", "2016-09-12 08:05:15", "24.68.42.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37877", "13", "2016-09-12 08:05:16", "24.68.42.124", "6");
INSERT INTO `wp_rg_form_view` VALUES("37878", "13", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37879", "13", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37880", "10", "2016-09-12 08:05:16", "24.68.42.124", "13");
INSERT INTO `wp_rg_form_view` VALUES("37881", "10", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37882", "10", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37883", "10", "2016-09-12 08:05:16", "24.68.42.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("37884", "3", "2016-09-12 09:04:33", "66.249.79.112", "43");
INSERT INTO `wp_rg_form_view` VALUES("37885", "13", "2016-09-12 09:04:34", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("37886", "10", "2016-09-12 09:04:34", "66.249.79.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("37887", "3", "2016-09-12 10:49:33", "134.249.232.160", "35");
INSERT INTO `wp_rg_form_view` VALUES("37888", "13", "2016-09-12 10:49:35", "134.249.232.160", "5");
INSERT INTO `wp_rg_form_view` VALUES("37889", "10", "2016-09-12 10:49:35", "134.249.232.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("37890", "3", "2016-09-12 11:13:51", "68.180.231.26", "48");
INSERT INTO `wp_rg_form_view` VALUES("37891", "13", "2016-09-12 11:13:52", "68.180.231.26", "8");
INSERT INTO `wp_rg_form_view` VALUES("37892", "10", "2016-09-12 11:13:52", "68.180.231.26", "16");
INSERT INTO `wp_rg_form_view` VALUES("37893", "1", "2016-09-12 11:51:32", "94.249.224.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("37894", "3", "2016-09-12 12:16:40", "68.180.231.26", "42");
INSERT INTO `wp_rg_form_view` VALUES("37895", "13", "2016-09-12 12:16:41", "68.180.231.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("37896", "10", "2016-09-12 12:16:41", "68.180.231.26", "12");
INSERT INTO `wp_rg_form_view` VALUES("37897", "2", "2016-09-12 12:45:10", "220.181.108.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("37898", "3", "2016-09-12 13:11:51", "66.249.79.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("37899", "13", "2016-09-12 13:11:51", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("37900", "10", "2016-09-12 13:11:51", "66.249.79.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("37901", "3", "2016-09-12 14:29:46", "202.46.48.97", "45");
INSERT INTO `wp_rg_form_view` VALUES("37902", "13", "2016-09-12 14:29:47", "202.46.48.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("37903", "10", "2016-09-12 14:29:47", "202.46.48.97", "12");
INSERT INTO `wp_rg_form_view` VALUES("37904", "3", "2016-09-12 15:02:59", "68.180.231.26", "56");
INSERT INTO `wp_rg_form_view` VALUES("37905", "13", "2016-09-12 15:03:02", "68.180.231.26", "9");
INSERT INTO `wp_rg_form_view` VALUES("37906", "10", "2016-09-12 15:03:02", "68.180.231.26", "16");
INSERT INTO `wp_rg_form_view` VALUES("37907", "3", "2016-09-12 16:14:36", "207.46.13.63", "30");
INSERT INTO `wp_rg_form_view` VALUES("37908", "13", "2016-09-12 16:14:44", "207.46.13.63", "4");
INSERT INTO `wp_rg_form_view` VALUES("37909", "10", "2016-09-12 16:14:44", "207.46.13.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("37910", "3", "2016-09-12 17:00:00", "163.172.66.96", "105");
INSERT INTO `wp_rg_form_view` VALUES("37911", "13", "2016-09-12 17:00:00", "163.172.66.96", "15");
INSERT INTO `wp_rg_form_view` VALUES("37912", "10", "2016-09-12 17:00:00", "163.172.66.96", "31");
INSERT INTO `wp_rg_form_view` VALUES("37913", "6", "2016-09-12 17:06:22", "207.46.13.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("37914", "3", "2016-09-12 18:05:34", "50.98.164.85", "318");
INSERT INTO `wp_rg_form_view` VALUES("37915", "13", "2016-09-12 18:05:34", "50.98.164.85", "43");
INSERT INTO `wp_rg_form_view` VALUES("37916", "10", "2016-09-12 18:05:34", "50.98.164.85", "94");
INSERT INTO `wp_rg_form_view` VALUES("37917", "1", "2016-09-12 18:49:17", "24.68.17.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("37918", "2", "2016-09-12 18:50:23", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("37919", "3", "2016-09-12 19:13:45", "184.71.24.162", "63");
INSERT INTO `wp_rg_form_view` VALUES("37920", "13", "2016-09-12 19:13:48", "184.71.24.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("37921", "10", "2016-09-12 19:13:48", "184.71.24.162", "19");
INSERT INTO `wp_rg_form_view` VALUES("37922", "1", "2016-09-12 19:14:30", "184.71.24.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("37923", "3", "2016-09-12 20:04:42", "148.251.54.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("37924", "13", "2016-09-12 20:04:43", "148.251.54.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("37925", "10", "2016-09-12 20:04:43", "148.251.54.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("37926", "3", "2016-09-12 21:00:35", "154.20.41.90", "129");
INSERT INTO `wp_rg_form_view` VALUES("37927", "13", "2016-09-12 21:00:35", "154.20.41.90", "18");
INSERT INTO `wp_rg_form_view` VALUES("37928", "10", "2016-09-12 21:00:35", "154.20.41.90", "37");
INSERT INTO `wp_rg_form_view` VALUES("37929", "3", "2016-09-12 22:04:22", "163.172.65.14", "78");
INSERT INTO `wp_rg_form_view` VALUES("37930", "13", "2016-09-12 22:04:23", "163.172.65.14", "11");
INSERT INTO `wp_rg_form_view` VALUES("37931", "10", "2016-09-12 22:04:23", "163.172.65.14", "22");
INSERT INTO `wp_rg_form_view` VALUES("37932", "6", "2016-09-12 22:35:36", "164.132.161.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("37933", "3", "2016-09-12 23:06:19", "68.180.231.25", "379");
INSERT INTO `wp_rg_form_view` VALUES("37934", "13", "2016-09-12 23:06:19", "68.180.231.25", "54");
INSERT INTO `wp_rg_form_view` VALUES("37935", "10", "2016-09-12 23:06:19", "68.180.231.25", "107");
INSERT INTO `wp_rg_form_view` VALUES("37936", "12", "2016-09-12 23:15:05", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("37937", "1", "2016-09-12 23:16:07", "208.43.225.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("37938", "5", "2016-09-13 00:04:37", "164.132.161.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("37939", "3", "2016-09-13 00:04:37", "164.132.161.5", "57");
INSERT INTO `wp_rg_form_view` VALUES("37940", "13", "2016-09-13 00:04:38", "164.132.161.5", "8");
INSERT INTO `wp_rg_form_view` VALUES("37941", "10", "2016-09-13 00:04:38", "164.132.161.5", "18");
INSERT INTO `wp_rg_form_view` VALUES("37942", "1", "2016-09-13 00:51:19", "94.249.160.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("37943", "13", "2016-09-13 01:07:36", "40.77.167.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("37944", "10", "2016-09-13 01:07:36", "40.77.167.44", "22");
INSERT INTO `wp_rg_form_view` VALUES("37945", "3", "2016-09-13 01:07:37", "40.77.167.44", "50");
INSERT INTO `wp_rg_form_view` VALUES("37946", "3", "2016-09-13 02:05:13", "123.57.230.213", "493");
INSERT INTO `wp_rg_form_view` VALUES("37947", "13", "2016-09-13 02:05:13", "123.57.230.213", "72");
INSERT INTO `wp_rg_form_view` VALUES("37948", "10", "2016-09-13 02:05:14", "123.57.230.213", "156");
INSERT INTO `wp_rg_form_view` VALUES("37949", "11", "2016-09-13 02:05:25", "123.57.230.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("37950", "2", "2016-09-13 02:05:28", "123.57.230.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("37951", "12", "2016-09-13 02:06:51", "123.57.230.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("37952", "1", "2016-09-13 02:07:15", "123.57.230.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("37953", "3", "2016-09-13 03:41:42", "163.172.65.51", "8");
INSERT INTO `wp_rg_form_view` VALUES("37954", "13", "2016-09-13 03:41:42", "163.172.65.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("37955", "10", "2016-09-13 03:41:42", "163.172.65.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("37956", "3", "2016-09-13 04:03:10", "184.66.238.60", "23");
INSERT INTO `wp_rg_form_view` VALUES("37957", "13", "2016-09-13 04:03:11", "184.66.238.60", "3");
INSERT INTO `wp_rg_form_view` VALUES("37958", "10", "2016-09-13 04:03:11", "184.66.238.60", "6");
INSERT INTO `wp_rg_form_view` VALUES("37959", "3", "2016-09-13 05:11:30", "202.46.57.125", "92");
INSERT INTO `wp_rg_form_view` VALUES("37960", "13", "2016-09-13 05:11:31", "202.46.57.125", "13");
INSERT INTO `wp_rg_form_view` VALUES("37961", "10", "2016-09-13 05:11:31", "202.46.57.125", "27");
INSERT INTO `wp_rg_form_view` VALUES("37962", "1", "2016-09-13 05:37:17", "195.162.4.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("37963", "3", "2016-09-13 06:05:46", "157.55.39.192", "29");
INSERT INTO `wp_rg_form_view` VALUES("37964", "13", "2016-09-13 06:05:50", "157.55.39.192", "4");
INSERT INTO `wp_rg_form_view` VALUES("37965", "10", "2016-09-13 06:05:50", "157.55.39.192", "8");
INSERT INTO `wp_rg_form_view` VALUES("37966", "1", "2016-09-13 06:05:55", "130.204.207.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("37967", "3", "2016-09-13 07:06:45", "77.75.79.62", "36");
INSERT INTO `wp_rg_form_view` VALUES("37968", "13", "2016-09-13 07:06:45", "77.75.79.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("37969", "10", "2016-09-13 07:06:45", "77.75.79.62", "10");
INSERT INTO `wp_rg_form_view` VALUES("37970", "3", "2016-09-13 08:17:32", "157.55.39.192", "64");
INSERT INTO `wp_rg_form_view` VALUES("37971", "13", "2016-09-13 08:17:32", "157.55.39.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("37972", "10", "2016-09-13 08:17:32", "157.55.39.192", "18");
INSERT INTO `wp_rg_form_view` VALUES("37973", "1", "2016-09-13 08:29:25", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("37974", "3", "2016-09-13 09:10:03", "157.55.39.27", "58");
INSERT INTO `wp_rg_form_view` VALUES("37975", "13", "2016-09-13 09:10:05", "157.55.39.27", "8");
INSERT INTO `wp_rg_form_view` VALUES("37976", "10", "2016-09-13 09:10:05", "157.55.39.27", "16");
INSERT INTO `wp_rg_form_view` VALUES("37977", "1", "2016-09-13 10:05:27", "77.75.77.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("37978", "3", "2016-09-13 10:05:27", "77.75.77.62", "22");
INSERT INTO `wp_rg_form_view` VALUES("37979", "13", "2016-09-13 10:05:27", "77.75.77.62", "4");
INSERT INTO `wp_rg_form_view` VALUES("37980", "10", "2016-09-13 10:05:27", "77.75.77.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("37981", "1", "2016-09-13 11:10:04", "1.179.183.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("37982", "3", "2016-09-13 11:10:04", "1.179.183.27", "14");
INSERT INTO `wp_rg_form_view` VALUES("37983", "13", "2016-09-13 11:10:04", "1.179.183.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("37984", "10", "2016-09-13 11:10:04", "1.179.183.27", "5");
INSERT INTO `wp_rg_form_view` VALUES("37985", "3", "2016-09-13 12:00:23", "54.164.147.75", "65");
INSERT INTO `wp_rg_form_view` VALUES("37986", "13", "2016-09-13 12:00:24", "54.164.147.75", "9");
INSERT INTO `wp_rg_form_view` VALUES("37987", "10", "2016-09-13 12:00:24", "54.164.147.75", "18");
INSERT INTO `wp_rg_form_view` VALUES("37988", "3", "2016-09-13 13:13:42", "207.46.13.172", "64");
INSERT INTO `wp_rg_form_view` VALUES("37989", "13", "2016-09-13 13:13:43", "207.46.13.172", "9");
INSERT INTO `wp_rg_form_view` VALUES("37990", "10", "2016-09-13 13:13:43", "207.46.13.172", "18");
INSERT INTO `wp_rg_form_view` VALUES("37991", "11", "2016-09-13 13:56:02", "141.8.143.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("37992", "3", "2016-09-13 14:01:33", "199.21.99.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("37993", "13", "2016-09-13 14:01:33", "199.21.99.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("37994", "10", "2016-09-13 14:01:34", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("37995", "1", "2016-09-13 14:11:43", "5.230.133.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("37996", "3", "2016-09-13 15:24:36", "163.172.66.53", "22");
INSERT INTO `wp_rg_form_view` VALUES("37997", "13", "2016-09-13 15:24:45", "163.172.66.53", "3");
INSERT INTO `wp_rg_form_view` VALUES("37998", "10", "2016-09-13 15:24:45", "163.172.66.53", "6");
INSERT INTO `wp_rg_form_view` VALUES("37999", "3", "2016-09-13 16:08:02", "205.250.181.27", "106");
INSERT INTO `wp_rg_form_view` VALUES("38000", "13", "2016-09-13 16:08:02", "205.250.181.27", "15");
INSERT INTO `wp_rg_form_view` VALUES("38001", "10", "2016-09-13 16:08:02", "205.250.181.27", "30");
INSERT INTO `wp_rg_form_view` VALUES("38002", "3", "2016-09-13 17:02:15", "24.69.151.169", "86");
INSERT INTO `wp_rg_form_view` VALUES("38003", "13", "2016-09-13 17:02:16", "24.69.151.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("38004", "10", "2016-09-13 17:02:16", "24.69.151.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("38005", "10", "2016-09-13 18:01:10", "157.55.39.27", "25");
INSERT INTO `wp_rg_form_view` VALUES("38006", "3", "2016-09-13 18:01:10", "157.55.39.27", "59");
INSERT INTO `wp_rg_form_view` VALUES("38007", "13", "2016-09-13 18:01:10", "157.55.39.27", "9");
INSERT INTO `wp_rg_form_view` VALUES("38008", "3", "2016-09-13 19:04:55", "184.71.15.210", "126");
INSERT INTO `wp_rg_form_view` VALUES("38009", "13", "2016-09-13 19:04:56", "184.71.15.210", "20");
INSERT INTO `wp_rg_form_view` VALUES("38010", "10", "2016-09-13 19:04:56", "184.71.15.210", "38");
INSERT INTO `wp_rg_form_view` VALUES("38011", "3", "2016-09-13 20:05:07", "24.108.4.19", "29");
INSERT INTO `wp_rg_form_view` VALUES("38012", "13", "2016-09-13 20:05:07", "24.108.4.19", "4");
INSERT INTO `wp_rg_form_view` VALUES("38013", "10", "2016-09-13 20:05:07", "24.108.4.19", "11");
INSERT INTO `wp_rg_form_view` VALUES("38014", "7", "2016-09-13 21:02:50", "157.55.39.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("38015", "3", "2016-09-13 21:02:50", "157.55.39.27", "100");
INSERT INTO `wp_rg_form_view` VALUES("38016", "13", "2016-09-13 21:02:50", "157.55.39.27", "14");
INSERT INTO `wp_rg_form_view` VALUES("38017", "10", "2016-09-13 21:02:50", "157.55.39.27", "28");
INSERT INTO `wp_rg_form_view` VALUES("38018", "3", "2016-09-13 22:08:29", "70.67.52.137", "56");
INSERT INTO `wp_rg_form_view` VALUES("38019", "13", "2016-09-13 22:08:30", "70.67.52.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("38020", "10", "2016-09-13 22:08:30", "70.67.52.137", "16");
INSERT INTO `wp_rg_form_view` VALUES("38021", "1", "2016-09-13 22:14:24", "70.67.52.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("38022", "3", "2016-09-13 23:04:54", "184.69.3.198", "72");
INSERT INTO `wp_rg_form_view` VALUES("38023", "13", "2016-09-13 23:04:54", "184.69.3.198", "11");
INSERT INTO `wp_rg_form_view` VALUES("38024", "10", "2016-09-13 23:04:54", "184.69.3.198", "20");
INSERT INTO `wp_rg_form_view` VALUES("38025", "13", "2016-09-14 00:03:59", "108.172.163.250", "48");
INSERT INTO `wp_rg_form_view` VALUES("38026", "3", "2016-09-14 00:03:59", "108.172.163.250", "318");
INSERT INTO `wp_rg_form_view` VALUES("38027", "10", "2016-09-14 00:03:59", "108.172.163.250", "91");
INSERT INTO `wp_rg_form_view` VALUES("38028", "11", "2016-09-14 00:10:37", "209.171.44.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("38029", "2", "2016-09-14 00:10:57", "209.171.44.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("38030", "1", "2016-09-14 00:47:04", "96.50.6.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("38031", "3", "2016-09-14 01:15:06", "96.50.6.244", "64");
INSERT INTO `wp_rg_form_view` VALUES("38032", "13", "2016-09-14 01:15:07", "96.50.6.244", "9");
INSERT INTO `wp_rg_form_view` VALUES("38033", "10", "2016-09-14 01:15:07", "96.50.6.244", "19");
INSERT INTO `wp_rg_form_view` VALUES("38034", "1", "2016-09-14 01:15:14", "96.50.6.244", "3");
INSERT INTO `wp_rg_form_view` VALUES("38035", "3", "2016-09-14 02:19:52", "24.108.4.13", "106");
INSERT INTO `wp_rg_form_view` VALUES("38036", "13", "2016-09-14 02:19:54", "24.108.4.13", "15");
INSERT INTO `wp_rg_form_view` VALUES("38037", "10", "2016-09-14 02:19:54", "24.108.4.13", "32");
INSERT INTO `wp_rg_form_view` VALUES("38038", "1", "2016-09-14 02:24:18", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("38039", "5", "2016-09-14 03:07:11", "202.46.58.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("38040", "3", "2016-09-14 03:07:11", "202.46.58.202", "95");
INSERT INTO `wp_rg_form_view` VALUES("38041", "13", "2016-09-14 03:07:11", "202.46.58.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("38042", "10", "2016-09-14 03:07:11", "202.46.58.202", "25");
INSERT INTO `wp_rg_form_view` VALUES("38043", "3", "2016-09-14 04:06:53", "192.243.55.137", "61");
INSERT INTO `wp_rg_form_view` VALUES("38044", "13", "2016-09-14 04:06:54", "192.243.55.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("38045", "10", "2016-09-14 04:06:54", "192.243.55.137", "16");
INSERT INTO `wp_rg_form_view` VALUES("38046", "3", "2016-09-14 05:08:27", "66.249.75.152", "48");
INSERT INTO `wp_rg_form_view` VALUES("38047", "13", "2016-09-14 05:08:27", "66.249.75.152", "7");
INSERT INTO `wp_rg_form_view` VALUES("38048", "10", "2016-09-14 05:08:27", "66.249.75.152", "13");
INSERT INTO `wp_rg_form_view` VALUES("38049", "3", "2016-09-14 06:16:45", "157.55.39.192", "15");
INSERT INTO `wp_rg_form_view` VALUES("38050", "13", "2016-09-14 06:16:46", "157.55.39.192", "2");
INSERT INTO `wp_rg_form_view` VALUES("38051", "10", "2016-09-14 06:16:46", "157.55.39.192", "4");
INSERT INTO `wp_rg_form_view` VALUES("38052", "3", "2016-09-14 07:15:57", "157.55.39.27", "30");
INSERT INTO `wp_rg_form_view` VALUES("38053", "13", "2016-09-14 07:15:58", "157.55.39.27", "5");
INSERT INTO `wp_rg_form_view` VALUES("38054", "10", "2016-09-14 07:15:58", "157.55.39.27", "9");
INSERT INTO `wp_rg_form_view` VALUES("38055", "1", "2016-09-14 07:52:48", "125.89.129.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("38056", "3", "2016-09-14 08:10:32", "157.55.39.192", "79");
INSERT INTO `wp_rg_form_view` VALUES("38057", "13", "2016-09-14 08:10:33", "157.55.39.192", "10");
INSERT INTO `wp_rg_form_view` VALUES("38058", "10", "2016-09-14 08:10:33", "157.55.39.192", "20");
INSERT INTO `wp_rg_form_view` VALUES("38059", "3", "2016-09-14 09:00:30", "207.6.238.21", "76");
INSERT INTO `wp_rg_form_view` VALUES("38060", "13", "2016-09-14 09:00:30", "207.6.238.21", "7");
INSERT INTO `wp_rg_form_view` VALUES("38061", "10", "2016-09-14 09:00:30", "207.6.238.21", "33");
INSERT INTO `wp_rg_form_view` VALUES("38062", "3", "2016-09-14 10:46:56", "5.9.17.118", "29");
INSERT INTO `wp_rg_form_view` VALUES("38063", "13", "2016-09-14 10:46:57", "5.9.17.118", "4");
INSERT INTO `wp_rg_form_view` VALUES("38064", "10", "2016-09-14 10:46:57", "5.9.17.118", "8");
INSERT INTO `wp_rg_form_view` VALUES("38065", "3", "2016-09-14 11:04:47", "77.75.78.164", "37");
INSERT INTO `wp_rg_form_view` VALUES("38066", "13", "2016-09-14 11:04:47", "77.75.78.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("38067", "10", "2016-09-14 11:04:47", "77.75.78.164", "18");
INSERT INTO `wp_rg_form_view` VALUES("38068", "8", "2016-09-14 11:12:43", "157.55.39.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("38069", "3", "2016-09-14 12:05:32", "46.118.119.71", "312");
INSERT INTO `wp_rg_form_view` VALUES("38070", "13", "2016-09-14 12:05:32", "46.118.119.71", "45");
INSERT INTO `wp_rg_form_view` VALUES("38071", "10", "2016-09-14 12:05:32", "46.118.119.71", "89");
INSERT INTO `wp_rg_form_view` VALUES("38072", "2", "2016-09-14 12:56:17", "95.143.42.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("38073", "11", "2016-09-14 12:57:03", "80.79.120.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("38074", "3", "2016-09-14 13:05:30", "157.55.39.192", "511");
INSERT INTO `wp_rg_form_view` VALUES("38075", "13", "2016-09-14 13:05:31", "157.55.39.192", "76");
INSERT INTO `wp_rg_form_view` VALUES("38076", "10", "2016-09-14 13:05:31", "157.55.39.192", "159");
INSERT INTO `wp_rg_form_view` VALUES("38077", "1", "2016-09-14 13:18:27", "178.18.246.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("38078", "2", "2016-09-14 13:19:27", "217.18.245.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("38079", "11", "2016-09-14 13:20:17", "71.222.31.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("38080", "3", "2016-09-14 14:01:50", "157.55.39.27", "38");
INSERT INTO `wp_rg_form_view` VALUES("38081", "13", "2016-09-14 14:01:51", "157.55.39.27", "5");
INSERT INTO `wp_rg_form_view` VALUES("38082", "10", "2016-09-14 14:01:51", "157.55.39.27", "10");
INSERT INTO `wp_rg_form_view` VALUES("38083", "10", "2016-09-14 15:15:51", "157.55.39.27", "9");
INSERT INTO `wp_rg_form_view` VALUES("38084", "3", "2016-09-14 15:15:51", "157.55.39.27", "29");
INSERT INTO `wp_rg_form_view` VALUES("38085", "13", "2016-09-14 15:15:52", "157.55.39.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("38086", "3", "2016-09-14 16:11:36", "75.156.96.184", "93");
INSERT INTO `wp_rg_form_view` VALUES("38087", "13", "2016-09-14 16:11:36", "75.156.96.184", "14");
INSERT INTO `wp_rg_form_view` VALUES("38088", "10", "2016-09-14 16:11:36", "75.156.96.184", "28");
INSERT INTO `wp_rg_form_view` VALUES("38089", "1", "2016-09-14 16:19:03", "104.160.0.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("38090", "3", "2016-09-14 17:19:42", "157.55.39.192", "72");
INSERT INTO `wp_rg_form_view` VALUES("38091", "13", "2016-09-14 17:35:42", "192.243.55.129", "10");
INSERT INTO `wp_rg_form_view` VALUES("38092", "10", "2016-09-14 17:35:42", "192.243.55.129", "12");
INSERT INTO `wp_rg_form_view` VALUES("38093", "3", "2016-09-14 18:05:58", "157.55.39.48", "28");
INSERT INTO `wp_rg_form_view` VALUES("38094", "13", "2016-09-14 18:05:58", "157.55.39.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("38095", "10", "2016-09-14 18:05:58", "157.55.39.48", "8");
INSERT INTO `wp_rg_form_view` VALUES("38096", "1", "2016-09-14 19:04:06", "173.234.58.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("38097", "3", "2016-09-14 19:04:07", "173.234.58.66", "50");
INSERT INTO `wp_rg_form_view` VALUES("38098", "13", "2016-09-14 19:04:07", "173.234.58.66", "7");
INSERT INTO `wp_rg_form_view` VALUES("38099", "10", "2016-09-14 19:04:07", "173.234.58.66", "14");
INSERT INTO `wp_rg_form_view` VALUES("38100", "3", "2016-09-14 20:00:15", "192.243.55.133", "21");
INSERT INTO `wp_rg_form_view` VALUES("38101", "13", "2016-09-14 20:00:16", "192.243.55.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("38102", "10", "2016-09-14 20:00:16", "192.243.55.133", "6");
INSERT INTO `wp_rg_form_view` VALUES("38103", "3", "2016-09-14 21:01:21", "157.55.39.48", "110");
INSERT INTO `wp_rg_form_view` VALUES("38104", "13", "2016-09-14 21:01:21", "157.55.39.48", "18");
INSERT INTO `wp_rg_form_view` VALUES("38105", "10", "2016-09-14 21:01:21", "157.55.39.48", "32");
INSERT INTO `wp_rg_form_view` VALUES("38106", "1", "2016-09-14 21:28:42", "23.94.228.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("38107", "3", "2016-09-14 22:02:13", "108.172.238.158", "29");
INSERT INTO `wp_rg_form_view` VALUES("38108", "13", "2016-09-14 22:02:14", "108.172.238.158", "4");
INSERT INTO `wp_rg_form_view` VALUES("38109", "10", "2016-09-14 22:02:14", "108.172.238.158", "9");
INSERT INTO `wp_rg_form_view` VALUES("38110", "6", "2016-09-14 22:07:44", "157.55.39.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("38111", "3", "2016-09-14 23:07:59", "192.243.55.135", "29");
INSERT INTO `wp_rg_form_view` VALUES("38112", "13", "2016-09-14 23:07:59", "192.243.55.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("38113", "10", "2016-09-14 23:07:59", "192.243.55.135", "8");
INSERT INTO `wp_rg_form_view` VALUES("38114", "3", "2016-09-15 00:41:26", "68.180.231.25", "7");
INSERT INTO `wp_rg_form_view` VALUES("38115", "13", "2016-09-15 00:41:28", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38116", "10", "2016-09-15 00:41:28", "68.180.231.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("38117", "3", "2016-09-15 01:05:37", "157.55.39.48", "64");
INSERT INTO `wp_rg_form_view` VALUES("38118", "13", "2016-09-15 01:05:38", "157.55.39.48", "9");
INSERT INTO `wp_rg_form_view` VALUES("38119", "10", "2016-09-15 01:05:38", "157.55.39.48", "18");
INSERT INTO `wp_rg_form_view` VALUES("38120", "3", "2016-09-15 02:05:41", "77.75.78.167", "70");
INSERT INTO `wp_rg_form_view` VALUES("38121", "13", "2016-09-15 02:05:42", "77.75.78.167", "10");
INSERT INTO `wp_rg_form_view` VALUES("38122", "10", "2016-09-15 02:05:42", "77.75.78.167", "20");
INSERT INTO `wp_rg_form_view` VALUES("38123", "13", "2016-09-15 03:02:20", "157.55.39.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("38124", "10", "2016-09-15 03:02:20", "157.55.39.48", "15");
INSERT INTO `wp_rg_form_view` VALUES("38125", "3", "2016-09-15 03:02:21", "157.55.39.48", "23");
INSERT INTO `wp_rg_form_view` VALUES("38126", "3", "2016-09-15 04:35:48", "68.180.231.25", "8");
INSERT INTO `wp_rg_form_view` VALUES("38127", "13", "2016-09-15 04:35:49", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38128", "10", "2016-09-15 04:35:49", "68.180.231.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("38129", "3", "2016-09-15 05:30:06", "68.180.231.25", "50");
INSERT INTO `wp_rg_form_view` VALUES("38130", "13", "2016-09-15 05:30:07", "68.180.231.25", "8");
INSERT INTO `wp_rg_form_view` VALUES("38131", "10", "2016-09-15 05:30:08", "68.180.231.25", "22");
INSERT INTO `wp_rg_form_view` VALUES("38132", "3", "2016-09-15 06:07:49", "68.180.231.25", "30");
INSERT INTO `wp_rg_form_view` VALUES("38133", "13", "2016-09-15 06:07:50", "68.180.231.25", "4");
INSERT INTO `wp_rg_form_view` VALUES("38134", "10", "2016-09-15 06:07:50", "68.180.231.25", "7");
INSERT INTO `wp_rg_form_view` VALUES("38135", "3", "2016-09-15 07:12:06", "51.255.65.89", "36");
INSERT INTO `wp_rg_form_view` VALUES("38136", "13", "2016-09-15 07:12:07", "51.255.65.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("38137", "10", "2016-09-15 07:12:07", "51.255.65.89", "10");
INSERT INTO `wp_rg_form_view` VALUES("38138", "3", "2016-09-15 08:35:11", "178.137.17.180", "45");
INSERT INTO `wp_rg_form_view` VALUES("38139", "13", "2016-09-15 08:35:11", "178.137.17.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("38140", "10", "2016-09-15 08:35:11", "178.137.17.180", "12");
INSERT INTO `wp_rg_form_view` VALUES("38141", "13", "2016-09-15 09:00:12", "51.255.65.10", "6");
INSERT INTO `wp_rg_form_view` VALUES("38142", "3", "2016-09-15 09:00:12", "51.255.65.10", "38");
INSERT INTO `wp_rg_form_view` VALUES("38143", "10", "2016-09-15 09:00:13", "51.255.65.10", "8");
INSERT INTO `wp_rg_form_view` VALUES("38144", "3", "2016-09-15 10:23:25", "46.119.115.28", "15");
INSERT INTO `wp_rg_form_view` VALUES("38145", "13", "2016-09-15 10:23:25", "46.119.115.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("38146", "10", "2016-09-15 10:23:25", "46.119.115.28", "4");
INSERT INTO `wp_rg_form_view` VALUES("38147", "3", "2016-09-15 11:12:02", "178.137.88.86", "20");
INSERT INTO `wp_rg_form_view` VALUES("38148", "3", "2016-09-15 11:12:02", "178.137.88.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("38149", "13", "2016-09-15 11:12:04", "178.137.88.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("38150", "10", "2016-09-15 11:12:04", "178.137.88.86", "6");
INSERT INTO `wp_rg_form_view` VALUES("38151", "3", "2016-09-15 12:20:08", "64.62.210.39", "7");
INSERT INTO `wp_rg_form_view` VALUES("38152", "13", "2016-09-15 12:20:09", "64.62.210.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("38153", "10", "2016-09-15 12:20:09", "64.62.210.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("38154", "3", "2016-09-15 13:09:26", "192.243.55.131", "22");
INSERT INTO `wp_rg_form_view` VALUES("38155", "13", "2016-09-15 13:09:26", "192.243.55.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("38156", "10", "2016-09-15 13:09:26", "192.243.55.131", "6");
INSERT INTO `wp_rg_form_view` VALUES("38157", "3", "2016-09-15 14:56:04", "46.118.112.191", "21");
INSERT INTO `wp_rg_form_view` VALUES("38158", "13", "2016-09-15 14:56:05", "46.118.112.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("38159", "10", "2016-09-15 14:56:05", "46.118.112.191", "5");
INSERT INTO `wp_rg_form_view` VALUES("38160", "10", "2016-09-15 14:56:05", "46.118.112.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("38161", "3", "2016-09-15 15:02:44", "202.46.48.205", "56");
INSERT INTO `wp_rg_form_view` VALUES("38162", "13", "2016-09-15 15:02:44", "202.46.48.205", "8");
INSERT INTO `wp_rg_form_view` VALUES("38163", "10", "2016-09-15 15:02:44", "202.46.48.205", "16");
INSERT INTO `wp_rg_form_view` VALUES("38164", "1", "2016-09-15 15:57:52", "178.32.12.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("38165", "3", "2016-09-15 16:06:16", "157.55.39.27", "154");
INSERT INTO `wp_rg_form_view` VALUES("38166", "13", "2016-09-15 16:06:16", "157.55.39.27", "22");
INSERT INTO `wp_rg_form_view` VALUES("38167", "10", "2016-09-15 16:06:16", "157.55.39.27", "43");
INSERT INTO `wp_rg_form_view` VALUES("38168", "3", "2016-09-15 17:01:46", "164.132.161.40", "57");
INSERT INTO `wp_rg_form_view` VALUES("38169", "13", "2016-09-15 17:01:47", "164.132.161.40", "9");
INSERT INTO `wp_rg_form_view` VALUES("38170", "10", "2016-09-15 17:01:47", "164.132.161.40", "16");
INSERT INTO `wp_rg_form_view` VALUES("38171", "9", "2016-09-15 17:48:57", "51.255.65.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("38172", "3", "2016-09-15 18:03:59", "134.87.168.193", "99");
INSERT INTO `wp_rg_form_view` VALUES("38173", "13", "2016-09-15 18:03:59", "134.87.168.193", "14");
INSERT INTO `wp_rg_form_view` VALUES("38174", "10", "2016-09-15 18:03:59", "134.87.168.193", "28");
INSERT INTO `wp_rg_form_view` VALUES("38175", "13", "2016-09-15 19:17:41", "24.69.132.130", "11");
INSERT INTO `wp_rg_form_view` VALUES("38176", "3", "2016-09-15 19:17:46", "24.69.132.130", "77");
INSERT INTO `wp_rg_form_view` VALUES("38177", "10", "2016-09-15 19:17:46", "24.69.132.130", "22");
INSERT INTO `wp_rg_form_view` VALUES("38178", "3", "2016-09-15 20:02:29", "134.249.232.160", "36");
INSERT INTO `wp_rg_form_view` VALUES("38179", "13", "2016-09-15 20:02:29", "134.249.232.160", "5");
INSERT INTO `wp_rg_form_view` VALUES("38180", "10", "2016-09-15 20:02:29", "134.249.232.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("38181", "3", "2016-09-15 21:04:58", "192.243.55.138", "44");
INSERT INTO `wp_rg_form_view` VALUES("38182", "13", "2016-09-15 21:04:58", "192.243.55.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("38183", "10", "2016-09-15 21:04:58", "192.243.55.138", "12");
INSERT INTO `wp_rg_form_view` VALUES("38184", "3", "2016-09-15 22:01:24", "184.66.44.32", "28");
INSERT INTO `wp_rg_form_view` VALUES("38185", "13", "2016-09-15 22:01:25", "184.66.44.32", "5");
INSERT INTO `wp_rg_form_view` VALUES("38186", "10", "2016-09-15 22:01:25", "184.66.44.32", "9");
INSERT INTO `wp_rg_form_view` VALUES("38187", "8", "2016-09-15 22:22:09", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38188", "3", "2016-09-15 23:01:53", "207.194.253.26", "52");
INSERT INTO `wp_rg_form_view` VALUES("38189", "13", "2016-09-15 23:01:53", "207.194.253.26", "7");
INSERT INTO `wp_rg_form_view` VALUES("38190", "10", "2016-09-15 23:01:53", "207.194.253.26", "14");
INSERT INTO `wp_rg_form_view` VALUES("38191", "3", "2016-09-16 00:53:57", "202.46.53.66", "28");
INSERT INTO `wp_rg_form_view` VALUES("38192", "13", "2016-09-16 00:53:59", "202.46.53.66", "4");
INSERT INTO `wp_rg_form_view` VALUES("38193", "10", "2016-09-16 00:53:59", "202.46.53.66", "11");
INSERT INTO `wp_rg_form_view` VALUES("38194", "1", "2016-09-16 01:47:51", "62.210.146.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("38195", "3", "2016-09-16 01:47:52", "62.210.146.23", "91");
INSERT INTO `wp_rg_form_view` VALUES("38196", "13", "2016-09-16 01:47:52", "62.210.146.23", "12");
INSERT INTO `wp_rg_form_view` VALUES("38197", "10", "2016-09-16 01:47:53", "62.210.146.23", "24");
INSERT INTO `wp_rg_form_view` VALUES("38198", "3", "2016-09-16 02:00:59", "178.137.160.205", "85");
INSERT INTO `wp_rg_form_view` VALUES("38199", "13", "2016-09-16 02:00:59", "178.137.160.205", "12");
INSERT INTO `wp_rg_form_view` VALUES("38200", "10", "2016-09-16 02:00:59", "178.137.160.205", "24");
INSERT INTO `wp_rg_form_view` VALUES("38201", "1", "2016-09-16 02:31:07", "207.46.13.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("38202", "3", "2016-09-16 03:00:49", "68.180.231.25", "36");
INSERT INTO `wp_rg_form_view` VALUES("38203", "13", "2016-09-16 03:00:50", "68.180.231.25", "5");
INSERT INTO `wp_rg_form_view` VALUES("38204", "10", "2016-09-16 03:00:50", "68.180.231.25", "12");
INSERT INTO `wp_rg_form_view` VALUES("38205", "10", "2016-09-16 04:09:09", "75.157.175.171", "306");
INSERT INTO `wp_rg_form_view` VALUES("38206", "3", "2016-09-16 04:09:09", "75.157.175.171", "654");
INSERT INTO `wp_rg_form_view` VALUES("38207", "13", "2016-09-16 04:09:09", "75.157.175.171", "102");
INSERT INTO `wp_rg_form_view` VALUES("38208", "9", "2016-09-16 04:29:55", "207.46.13.180", "5");
INSERT INTO `wp_rg_form_view` VALUES("38209", "12", "2016-09-16 04:30:44", "207.46.13.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("38210", "8", "2016-09-16 04:30:57", "207.46.13.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("38211", "10", "2016-09-16 05:02:43", "66.249.75.152", "43");
INSERT INTO `wp_rg_form_view` VALUES("38212", "3", "2016-09-16 05:02:44", "66.249.75.152", "87");
INSERT INTO `wp_rg_form_view` VALUES("38213", "13", "2016-09-16 05:02:44", "66.249.75.152", "16");
INSERT INTO `wp_rg_form_view` VALUES("38214", "3", "2016-09-16 06:02:01", "178.137.88.86", "29");
INSERT INTO `wp_rg_form_view` VALUES("38215", "3", "2016-09-16 06:02:01", "178.137.88.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("38216", "13", "2016-09-16 06:02:04", "178.137.88.86", "5");
INSERT INTO `wp_rg_form_view` VALUES("38217", "10", "2016-09-16 06:02:04", "178.137.88.86", "14");
INSERT INTO `wp_rg_form_view` VALUES("38218", "10", "2016-09-16 06:02:04", "178.137.88.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("38219", "3", "2016-09-16 07:00:12", "202.46.58.188", "33");
INSERT INTO `wp_rg_form_view` VALUES("38220", "13", "2016-09-16 07:00:12", "202.46.58.188", "6");
INSERT INTO `wp_rg_form_view` VALUES("38221", "10", "2016-09-16 07:00:12", "202.46.58.188", "18");
INSERT INTO `wp_rg_form_view` VALUES("38222", "3", "2016-09-16 08:04:11", "96.50.1.173", "18");
INSERT INTO `wp_rg_form_view` VALUES("38223", "13", "2016-09-16 08:04:11", "96.50.1.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("38224", "10", "2016-09-16 08:04:11", "96.50.1.173", "9");
INSERT INTO `wp_rg_form_view` VALUES("38225", "3", "2016-09-16 09:33:14", "46.118.112.191", "41");
INSERT INTO `wp_rg_form_view` VALUES("38226", "3", "2016-09-16 09:33:14", "46.118.112.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("38227", "13", "2016-09-16 09:33:15", "46.118.112.191", "7");
INSERT INTO `wp_rg_form_view` VALUES("38228", "10", "2016-09-16 09:33:15", "46.118.112.191", "21");
INSERT INTO `wp_rg_form_view` VALUES("38229", "3", "2016-09-16 10:36:46", "46.118.112.191", "12");
INSERT INTO `wp_rg_form_view` VALUES("38230", "13", "2016-09-16 10:36:47", "46.118.112.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("38231", "10", "2016-09-16 10:36:47", "46.118.112.191", "6");
INSERT INTO `wp_rg_form_view` VALUES("38232", "3", "2016-09-16 11:44:59", "164.132.161.52", "12");
INSERT INTO `wp_rg_form_view` VALUES("38233", "13", "2016-09-16 11:45:00", "164.132.161.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("38234", "10", "2016-09-16 11:45:00", "164.132.161.52", "6");
INSERT INTO `wp_rg_form_view` VALUES("38235", "2", "2016-09-16 11:52:55", "92.63.91.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("38236", "3", "2016-09-16 12:00:49", "163.172.65.107", "19");
INSERT INTO `wp_rg_form_view` VALUES("38237", "13", "2016-09-16 12:00:49", "163.172.65.107", "3");
INSERT INTO `wp_rg_form_view` VALUES("38238", "10", "2016-09-16 12:00:49", "163.172.65.107", "9");
INSERT INTO `wp_rg_form_view` VALUES("38239", "3", "2016-09-16 13:00:35", "178.137.160.205", "39");
INSERT INTO `wp_rg_form_view` VALUES("38240", "13", "2016-09-16 13:00:36", "178.137.160.205", "6");
INSERT INTO `wp_rg_form_view` VALUES("38241", "10", "2016-09-16 13:00:36", "178.137.160.205", "16");
INSERT INTO `wp_rg_form_view` VALUES("38242", "9", "2016-09-16 13:35:07", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38243", "3", "2016-09-16 14:18:53", "68.180.231.25", "50");
INSERT INTO `wp_rg_form_view` VALUES("38244", "13", "2016-09-16 14:18:53", "68.180.231.25", "8");
INSERT INTO `wp_rg_form_view` VALUES("38245", "10", "2016-09-16 14:18:53", "68.180.231.25", "25");
INSERT INTO `wp_rg_form_view` VALUES("38246", "3", "2016-09-16 15:05:27", "202.46.52.177", "97");
INSERT INTO `wp_rg_form_view` VALUES("38247", "13", "2016-09-16 15:05:27", "202.46.52.177", "16");
INSERT INTO `wp_rg_form_view` VALUES("38248", "10", "2016-09-16 15:05:27", "202.46.52.177", "49");
INSERT INTO `wp_rg_form_view` VALUES("38249", "3", "2016-09-16 16:00:38", "68.180.231.25", "66");
INSERT INTO `wp_rg_form_view` VALUES("38250", "13", "2016-09-16 16:00:38", "68.180.231.25", "12");
INSERT INTO `wp_rg_form_view` VALUES("38251", "10", "2016-09-16 16:00:38", "68.180.231.25", "36");
INSERT INTO `wp_rg_form_view` VALUES("38252", "3", "2016-09-16 17:00:52", "178.137.88.86", "220");
INSERT INTO `wp_rg_form_view` VALUES("38253", "3", "2016-09-16 17:00:52", "178.137.88.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("38254", "13", "2016-09-16 17:00:53", "178.137.88.86", "34");
INSERT INTO `wp_rg_form_view` VALUES("38255", "13", "2016-09-16 17:00:53", "178.137.88.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("38256", "10", "2016-09-16 17:00:53", "178.137.88.86", "111");
INSERT INTO `wp_rg_form_view` VALUES("38257", "10", "2016-09-16 17:00:53", "178.137.88.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("38258", "2", "2016-09-16 17:50:13", "45.32.131.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("38259", "10", "2016-09-16 18:01:45", "64.114.197.205", "37");
INSERT INTO `wp_rg_form_view` VALUES("38260", "3", "2016-09-16 18:01:45", "64.114.197.205", "78");
INSERT INTO `wp_rg_form_view` VALUES("38261", "13", "2016-09-16 18:01:45", "64.114.197.205", "12");
INSERT INTO `wp_rg_form_view` VALUES("38262", "12", "2016-09-16 18:17:21", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38263", "8", "2016-09-16 18:18:11", "202.46.58.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("38264", "11", "2016-09-16 18:24:15", "51.255.65.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("38265", "5", "2016-09-16 18:39:08", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("38266", "3", "2016-09-16 19:03:44", "99.199.2.59", "69");
INSERT INTO `wp_rg_form_view` VALUES("38267", "13", "2016-09-16 19:03:44", "99.199.2.59", "11");
INSERT INTO `wp_rg_form_view` VALUES("38268", "10", "2016-09-16 19:03:44", "99.199.2.59", "30");
INSERT INTO `wp_rg_form_view` VALUES("38269", "3", "2016-09-16 20:16:31", "46.118.112.191", "90");
INSERT INTO `wp_rg_form_view` VALUES("38270", "13", "2016-09-16 20:16:31", "46.118.112.191", "15");
INSERT INTO `wp_rg_form_view` VALUES("38271", "10", "2016-09-16 20:16:32", "46.118.112.191", "47");
INSERT INTO `wp_rg_form_view` VALUES("38272", "1", "2016-09-16 20:53:21", "62.210.80.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("38273", "3", "2016-09-16 21:00:04", "164.132.161.41", "102");
INSERT INTO `wp_rg_form_view` VALUES("38274", "13", "2016-09-16 21:00:05", "164.132.161.41", "17");
INSERT INTO `wp_rg_form_view` VALUES("38275", "10", "2016-09-16 21:00:05", "164.132.161.41", "51");
INSERT INTO `wp_rg_form_view` VALUES("38276", "3", "2016-09-16 22:03:22", "184.71.30.118", "36");
INSERT INTO `wp_rg_form_view` VALUES("38277", "13", "2016-09-16 22:03:23", "184.71.30.118", "6");
INSERT INTO `wp_rg_form_view` VALUES("38278", "10", "2016-09-16 22:03:23", "184.71.30.118", "18");
INSERT INTO `wp_rg_form_view` VALUES("38279", "11", "2016-09-16 22:53:06", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38280", "3", "2016-09-16 23:12:40", "134.249.232.160", "48");
INSERT INTO `wp_rg_form_view` VALUES("38281", "13", "2016-09-16 23:12:40", "134.249.232.160", "8");
INSERT INTO `wp_rg_form_view` VALUES("38282", "10", "2016-09-16 23:12:40", "134.249.232.160", "24");
INSERT INTO `wp_rg_form_view` VALUES("38283", "1", "2016-09-17 00:13:25", "164.132.161.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("38284", "3", "2016-09-17 00:13:25", "164.132.161.91", "36");
INSERT INTO `wp_rg_form_view` VALUES("38285", "13", "2016-09-17 00:13:26", "164.132.161.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("38286", "10", "2016-09-17 00:13:26", "164.132.161.91", "18");
INSERT INTO `wp_rg_form_view` VALUES("38287", "3", "2016-09-17 01:12:21", "46.119.115.28", "59");
INSERT INTO `wp_rg_form_view` VALUES("38288", "13", "2016-09-17 01:12:22", "46.119.115.28", "9");
INSERT INTO `wp_rg_form_view` VALUES("38289", "10", "2016-09-17 01:12:22", "46.119.115.28", "27");
INSERT INTO `wp_rg_form_view` VALUES("38290", "3", "2016-09-17 03:10:27", "216.126.102.146", "30");
INSERT INTO `wp_rg_form_view` VALUES("38291", "13", "2016-09-17 03:10:28", "216.126.102.146", "5");
INSERT INTO `wp_rg_form_view` VALUES("38292", "10", "2016-09-17 03:10:28", "216.126.102.146", "18");
INSERT INTO `wp_rg_form_view` VALUES("38293", "3", "2016-09-17 04:44:40", "68.180.231.25", "12");
INSERT INTO `wp_rg_form_view` VALUES("38294", "13", "2016-09-17 04:44:41", "68.180.231.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("38295", "10", "2016-09-17 04:44:42", "68.180.231.25", "6");
INSERT INTO `wp_rg_form_view` VALUES("38296", "3", "2016-09-17 05:11:59", "164.132.161.19", "54");
INSERT INTO `wp_rg_form_view` VALUES("38297", "13", "2016-09-17 05:11:59", "164.132.161.19", "8");
INSERT INTO `wp_rg_form_view` VALUES("38298", "10", "2016-09-17 05:12:00", "164.132.161.19", "24");
INSERT INTO `wp_rg_form_view` VALUES("38299", "3", "2016-09-17 06:08:45", "202.46.50.126", "6");
INSERT INTO `wp_rg_form_view` VALUES("38300", "13", "2016-09-17 06:08:46", "202.46.50.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("38301", "10", "2016-09-17 06:08:46", "202.46.50.126", "3");
INSERT INTO `wp_rg_form_view` VALUES("38302", "10", "2016-09-17 07:23:40", "68.180.231.25", "10");
INSERT INTO `wp_rg_form_view` VALUES("38303", "3", "2016-09-17 07:23:45", "68.180.231.25", "18");
INSERT INTO `wp_rg_form_view` VALUES("38304", "13", "2016-09-17 07:23:46", "68.180.231.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("38305", "1", "2016-09-17 08:11:36", "93.170.122.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("38306", "3", "2016-09-17 08:11:39", "93.170.122.30", "19");
INSERT INTO `wp_rg_form_view` VALUES("38307", "13", "2016-09-17 08:11:40", "93.170.122.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("38308", "10", "2016-09-17 08:11:40", "93.170.122.30", "9");
INSERT INTO `wp_rg_form_view` VALUES("38309", "3", "2016-09-17 09:08:40", "207.46.13.49", "6");
INSERT INTO `wp_rg_form_view` VALUES("38310", "13", "2016-09-17 09:08:41", "207.46.13.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("38311", "10", "2016-09-17 09:08:42", "207.46.13.49", "3");
INSERT INTO `wp_rg_form_view` VALUES("38312", "3", "2016-09-17 10:09:03", "163.172.66.65", "25");
INSERT INTO `wp_rg_form_view` VALUES("38313", "13", "2016-09-17 10:09:05", "163.172.66.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("38314", "10", "2016-09-17 10:09:05", "163.172.66.65", "12");
INSERT INTO `wp_rg_form_view` VALUES("38315", "6", "2016-09-17 10:37:09", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38316", "3", "2016-09-17 11:01:03", "178.137.160.205", "18");
INSERT INTO `wp_rg_form_view` VALUES("38317", "13", "2016-09-17 11:01:03", "178.137.160.205", "3");
INSERT INTO `wp_rg_form_view` VALUES("38318", "10", "2016-09-17 11:01:03", "178.137.160.205", "9");
INSERT INTO `wp_rg_form_view` VALUES("38319", "3", "2016-09-17 12:38:00", "68.180.231.25", "43");
INSERT INTO `wp_rg_form_view` VALUES("38320", "13", "2016-09-17 12:38:02", "68.180.231.25", "7");
INSERT INTO `wp_rg_form_view` VALUES("38321", "10", "2016-09-17 12:38:02", "68.180.231.25", "21");
INSERT INTO `wp_rg_form_view` VALUES("38322", "1", "2016-09-17 12:45:11", "23.245.238.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("38323", "3", "2016-09-17 13:10:54", "68.180.231.25", "30");
INSERT INTO `wp_rg_form_view` VALUES("38324", "13", "2016-09-17 13:10:54", "68.180.231.25", "5");
INSERT INTO `wp_rg_form_view` VALUES("38325", "10", "2016-09-17 13:10:54", "68.180.231.25", "15");
INSERT INTO `wp_rg_form_view` VALUES("38326", "12", "2016-09-17 13:33:16", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38327", "10", "2016-09-17 14:02:47", "68.180.231.25", "10");
INSERT INTO `wp_rg_form_view` VALUES("38328", "3", "2016-09-17 14:02:47", "68.180.231.25", "18");
INSERT INTO `wp_rg_form_view` VALUES("38329", "13", "2016-09-17 14:02:48", "68.180.231.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("38330", "8", "2016-09-17 15:03:50", "157.55.39.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("38331", "3", "2016-09-17 15:03:50", "157.55.39.14", "19");
INSERT INTO `wp_rg_form_view` VALUES("38332", "13", "2016-09-17 15:03:50", "157.55.39.14", "3");
INSERT INTO `wp_rg_form_view` VALUES("38333", "10", "2016-09-17 15:03:50", "157.55.39.14", "9");
INSERT INTO `wp_rg_form_view` VALUES("38334", "3", "2016-09-17 16:11:05", "202.46.53.111", "54");
INSERT INTO `wp_rg_form_view` VALUES("38335", "13", "2016-09-17 16:11:05", "202.46.53.111", "9");
INSERT INTO `wp_rg_form_view` VALUES("38336", "10", "2016-09-17 16:11:05", "202.46.53.111", "27");
INSERT INTO `wp_rg_form_view` VALUES("38337", "3", "2016-09-17 17:16:55", "154.20.43.216", "66");
INSERT INTO `wp_rg_form_view` VALUES("38338", "13", "2016-09-17 17:16:57", "154.20.43.216", "11");
INSERT INTO `wp_rg_form_view` VALUES("38339", "10", "2016-09-17 17:16:57", "154.20.43.216", "33");
INSERT INTO `wp_rg_form_view` VALUES("38340", "3", "2016-09-17 18:34:20", "163.172.66.115", "24");
INSERT INTO `wp_rg_form_view` VALUES("38341", "13", "2016-09-17 18:34:21", "163.172.66.115", "4");
INSERT INTO `wp_rg_form_view` VALUES("38342", "10", "2016-09-17 18:34:21", "163.172.66.115", "12");
INSERT INTO `wp_rg_form_view` VALUES("38343", "3", "2016-09-17 19:01:56", "51.255.65.47", "48");
INSERT INTO `wp_rg_form_view` VALUES("38344", "13", "2016-09-17 19:01:57", "51.255.65.47", "8");
INSERT INTO `wp_rg_form_view` VALUES("38345", "10", "2016-09-17 19:01:57", "51.255.65.47", "24");
INSERT INTO `wp_rg_form_view` VALUES("38346", "3", "2016-09-17 20:02:00", "66.249.75.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("38347", "13", "2016-09-17 20:02:01", "66.249.75.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("38348", "10", "2016-09-17 20:02:01", "66.249.75.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("38349", "3", "2016-09-17 21:04:44", "75.157.134.222", "220");
INSERT INTO `wp_rg_form_view` VALUES("38350", "13", "2016-09-17 21:04:45", "75.157.134.222", "37");
INSERT INTO `wp_rg_form_view` VALUES("38351", "10", "2016-09-17 21:04:46", "75.157.134.222", "115");
INSERT INTO `wp_rg_form_view` VALUES("38352", "7", "2016-09-17 21:59:46", "157.55.39.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("38353", "3", "2016-09-17 22:00:00", "157.55.39.136", "191");
INSERT INTO `wp_rg_form_view` VALUES("38354", "13", "2016-09-17 22:00:00", "157.55.39.136", "31");
INSERT INTO `wp_rg_form_view` VALUES("38355", "10", "2016-09-17 22:00:00", "157.55.39.136", "85");
INSERT INTO `wp_rg_form_view` VALUES("38356", "8", "2016-09-17 22:03:00", "207.46.13.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("38357", "3", "2016-09-17 23:10:47", "54.236.1.11", "55");
INSERT INTO `wp_rg_form_view` VALUES("38358", "13", "2016-09-17 23:10:48", "54.236.1.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("38359", "10", "2016-09-17 23:10:48", "54.236.1.11", "27");
INSERT INTO `wp_rg_form_view` VALUES("38360", "3", "2016-09-18 00:12:14", "77.75.78.166", "24");
INSERT INTO `wp_rg_form_view` VALUES("38361", "13", "2016-09-18 00:12:15", "77.75.78.166", "4");
INSERT INTO `wp_rg_form_view` VALUES("38362", "10", "2016-09-18 00:12:15", "77.75.78.166", "12");
INSERT INTO `wp_rg_form_view` VALUES("38363", "3", "2016-09-18 01:07:51", "68.180.231.25", "56");
INSERT INTO `wp_rg_form_view` VALUES("38364", "13", "2016-09-18 01:07:52", "68.180.231.25", "9");
INSERT INTO `wp_rg_form_view` VALUES("38365", "10", "2016-09-18 01:07:52", "68.180.231.25", "27");
INSERT INTO `wp_rg_form_view` VALUES("38366", "12", "2016-09-18 01:48:25", "66.249.75.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("38367", "3", "2016-09-18 02:22:36", "5.9.17.118", "36");
INSERT INTO `wp_rg_form_view` VALUES("38368", "13", "2016-09-18 02:22:36", "5.9.17.118", "6");
INSERT INTO `wp_rg_form_view` VALUES("38369", "10", "2016-09-18 02:22:36", "5.9.17.118", "19");
INSERT INTO `wp_rg_form_view` VALUES("38370", "13", "2016-09-18 03:00:07", "66.249.75.156", "28");
INSERT INTO `wp_rg_form_view` VALUES("38371", "3", "2016-09-18 03:00:08", "66.249.75.156", "152");
INSERT INTO `wp_rg_form_view` VALUES("38372", "10", "2016-09-18 03:00:08", "66.249.75.156", "75");
INSERT INTO `wp_rg_form_view` VALUES("38373", "11", "2016-09-18 03:03:03", "104.236.81.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("38374", "2", "2016-09-18 03:03:04", "104.236.81.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("38375", "3", "2016-09-18 04:02:53", "46.118.112.191", "67");
INSERT INTO `wp_rg_form_view` VALUES("38376", "13", "2016-09-18 04:02:54", "46.118.112.191", "11");
INSERT INTO `wp_rg_form_view` VALUES("38377", "10", "2016-09-18 04:02:54", "46.118.112.191", "33");
INSERT INTO `wp_rg_form_view` VALUES("38378", "3", "2016-09-18 05:18:29", "66.249.75.148", "31");
INSERT INTO `wp_rg_form_view` VALUES("38379", "13", "2016-09-18 05:18:30", "66.249.75.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("38380", "10", "2016-09-18 05:18:30", "66.249.75.148", "15");
INSERT INTO `wp_rg_form_view` VALUES("38381", "9", "2016-09-18 06:03:08", "202.46.58.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("38382", "3", "2016-09-18 06:03:08", "202.46.58.77", "78");
INSERT INTO `wp_rg_form_view` VALUES("38383", "13", "2016-09-18 06:03:08", "202.46.58.77", "13");
INSERT INTO `wp_rg_form_view` VALUES("38384", "10", "2016-09-18 06:03:08", "202.46.58.77", "39");
INSERT INTO `wp_rg_form_view` VALUES("38385", "2", "2016-09-18 06:35:03", "118.201.52.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("38386", "3", "2016-09-18 07:30:02", "154.20.32.8", "24");
INSERT INTO `wp_rg_form_view` VALUES("38387", "13", "2016-09-18 07:30:07", "154.20.32.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("38388", "13", "2016-09-18 07:30:07", "154.20.32.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("38389", "10", "2016-09-18 07:30:07", "154.20.32.8", "11");
INSERT INTO `wp_rg_form_view` VALUES("38390", "10", "2016-09-18 07:30:07", "154.20.32.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("38391", "5", "2016-09-18 07:30:54", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("38392", "3", "2016-09-18 08:00:21", "178.137.88.86", "58");
INSERT INTO `wp_rg_form_view` VALUES("38393", "13", "2016-09-18 08:00:22", "178.137.88.86", "9");
INSERT INTO `wp_rg_form_view` VALUES("38394", "10", "2016-09-18 08:00:22", "178.137.88.86", "27");
INSERT INTO `wp_rg_form_view` VALUES("38395", "13", "2016-09-18 09:35:40", "202.46.54.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("38396", "3", "2016-09-18 09:35:41", "202.46.54.130", "6");
INSERT INTO `wp_rg_form_view` VALUES("38397", "10", "2016-09-18 09:35:41", "202.46.54.130", "3");
INSERT INTO `wp_rg_form_view` VALUES("38398", "3", "2016-09-18 10:08:49", "104.131.108.241", "2367");
INSERT INTO `wp_rg_form_view` VALUES("38399", "13", "2016-09-18 10:08:51", "104.131.108.241", "395");
INSERT INTO `wp_rg_form_view` VALUES("38400", "10", "2016-09-18 10:08:51", "104.131.108.241", "1219");
INSERT INTO `wp_rg_form_view` VALUES("38401", "1", "2016-09-18 10:13:50", "104.131.108.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("38402", "11", "2016-09-18 10:14:05", "104.131.108.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("38403", "6", "2016-09-18 10:32:11", "104.131.108.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("38404", "9", "2016-09-18 10:40:55", "104.131.108.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("38405", "3", "2016-09-18 11:00:03", "104.131.108.241", "1447");
INSERT INTO `wp_rg_form_view` VALUES("38406", "13", "2016-09-18 11:00:04", "104.131.108.241", "241");
INSERT INTO `wp_rg_form_view` VALUES("38407", "10", "2016-09-18 11:00:04", "104.131.108.241", "728");
INSERT INTO `wp_rg_form_view` VALUES("38408", "2", "2016-09-18 11:18:02", "104.131.108.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("38409", "8", "2016-09-18 11:31:59", "104.131.108.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("38410", "3", "2016-09-18 12:03:12", "69.84.207.246", "49");
INSERT INTO `wp_rg_form_view` VALUES("38411", "13", "2016-09-18 12:03:12", "69.84.207.246", "8");
INSERT INTO `wp_rg_form_view` VALUES("38412", "10", "2016-09-18 12:03:12", "69.84.207.246", "24");
INSERT INTO `wp_rg_form_view` VALUES("38413", "3", "2016-09-18 13:17:43", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38414", "3", "2016-09-18 14:14:56", "46.119.115.28", "46");
INSERT INTO `wp_rg_form_view` VALUES("38415", "13", "2016-09-18 14:14:57", "46.119.115.28", "6");
INSERT INTO `wp_rg_form_view` VALUES("38416", "13", "2016-09-18 14:14:57", "46.119.115.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("38417", "10", "2016-09-18 14:14:57", "46.119.115.28", "20");
INSERT INTO `wp_rg_form_view` VALUES("38418", "10", "2016-09-18 14:14:57", "46.119.115.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("38419", "3", "2016-09-18 15:06:45", "66.249.75.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("38420", "13", "2016-09-18 15:06:45", "66.249.75.152", "5");
INSERT INTO `wp_rg_form_view` VALUES("38421", "10", "2016-09-18 15:06:45", "66.249.75.152", "15");
INSERT INTO `wp_rg_form_view` VALUES("38422", "11", "2016-09-18 15:34:28", "66.249.75.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("38423", "3", "2016-09-18 16:46:22", "157.55.39.168", "18");
INSERT INTO `wp_rg_form_view` VALUES("38424", "13", "2016-09-18 16:46:24", "157.55.39.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("38425", "10", "2016-09-18 16:46:24", "157.55.39.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("38426", "3", "2016-09-18 17:29:05", "163.172.66.92", "146");
INSERT INTO `wp_rg_form_view` VALUES("38427", "13", "2016-09-18 17:29:05", "163.172.66.92", "25");
INSERT INTO `wp_rg_form_view` VALUES("38428", "10", "2016-09-18 17:29:05", "163.172.66.92", "72");
INSERT INTO `wp_rg_form_view` VALUES("38429", "11", "2016-09-18 17:38:54", "104.131.96.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("38430", "2", "2016-09-18 17:38:54", "104.131.96.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("38431", "9", "2016-09-18 17:45:25", "167.114.234.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("38432", "1", "2016-09-18 18:09:24", "213.37.124.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("38433", "3", "2016-09-18 18:09:24", "213.37.124.118", "25");
INSERT INTO `wp_rg_form_view` VALUES("38434", "13", "2016-09-18 18:09:24", "213.37.124.118", "4");
INSERT INTO `wp_rg_form_view` VALUES("38435", "10", "2016-09-18 18:09:24", "213.37.124.118", "12");
INSERT INTO `wp_rg_form_view` VALUES("38436", "3", "2016-09-18 19:10:11", "46.119.115.28", "76");
INSERT INTO `wp_rg_form_view` VALUES("38437", "3", "2016-09-18 19:10:11", "46.119.115.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("38438", "13", "2016-09-18 19:10:11", "46.119.115.28", "11");
INSERT INTO `wp_rg_form_view` VALUES("38439", "13", "2016-09-18 19:10:11", "46.119.115.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("38440", "10", "2016-09-18 19:10:11", "46.119.115.28", "35");
INSERT INTO `wp_rg_form_view` VALUES("38441", "10", "2016-09-18 19:10:11", "46.119.115.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("38442", "3", "2016-09-18 20:34:35", "75.155.182.129", "18");
INSERT INTO `wp_rg_form_view` VALUES("38443", "13", "2016-09-18 20:34:35", "75.155.182.129", "3");
INSERT INTO `wp_rg_form_view` VALUES("38444", "10", "2016-09-18 20:34:35", "75.155.182.129", "9");
INSERT INTO `wp_rg_form_view` VALUES("38445", "3", "2016-09-18 21:04:57", "24.68.146.77", "52");
INSERT INTO `wp_rg_form_view` VALUES("38446", "13", "2016-09-18 21:04:57", "24.68.146.77", "8");
INSERT INTO `wp_rg_form_view` VALUES("38447", "10", "2016-09-18 21:04:58", "24.68.146.77", "21");
INSERT INTO `wp_rg_form_view` VALUES("38448", "3", "2016-09-18 22:06:41", "51.255.65.42", "49");
INSERT INTO `wp_rg_form_view` VALUES("38449", "13", "2016-09-18 22:06:41", "51.255.65.42", "8");
INSERT INTO `wp_rg_form_view` VALUES("38450", "10", "2016-09-18 22:06:41", "51.255.65.42", "24");
INSERT INTO `wp_rg_form_view` VALUES("38451", "2", "2016-09-18 22:38:20", "68.180.231.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("38452", "3", "2016-09-18 23:10:57", "178.137.88.86", "73");
INSERT INTO `wp_rg_form_view` VALUES("38453", "13", "2016-09-18 23:10:58", "178.137.88.86", "12");
INSERT INTO `wp_rg_form_view` VALUES("38454", "10", "2016-09-18 23:10:58", "178.137.88.86", "36");
INSERT INTO `wp_rg_form_view` VALUES("38455", "3", "2016-09-19 00:06:13", "68.180.231.25", "22");
INSERT INTO `wp_rg_form_view` VALUES("38456", "13", "2016-09-19 00:06:14", "68.180.231.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("38457", "10", "2016-09-19 00:06:14", "68.180.231.25", "9");
INSERT INTO `wp_rg_form_view` VALUES("38458", "3", "2016-09-19 01:04:08", "157.55.39.237", "48");
INSERT INTO `wp_rg_form_view` VALUES("38459", "13", "2016-09-19 01:04:08", "157.55.39.237", "8");
INSERT INTO `wp_rg_form_view` VALUES("38460", "10", "2016-09-19 01:04:08", "157.55.39.237", "24");
INSERT INTO `wp_rg_form_view` VALUES("38461", "3", "2016-09-19 02:47:05", "207.102.103.104", "22");
INSERT INTO `wp_rg_form_view` VALUES("38462", "13", "2016-09-19 02:47:06", "207.102.103.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("38463", "10", "2016-09-19 02:47:06", "207.102.103.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("38464", "3", "2016-09-19 03:00:29", "207.102.103.104", "54");
INSERT INTO `wp_rg_form_view` VALUES("38465", "13", "2016-09-19 03:00:29", "207.102.103.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("38466", "10", "2016-09-19 03:00:29", "207.102.103.104", "27");
INSERT INTO `wp_rg_form_view` VALUES("38467", "3", "2016-09-19 04:05:37", "24.68.22.108", "105");
INSERT INTO `wp_rg_form_view` VALUES("38468", "13", "2016-09-19 04:05:37", "24.68.22.108", "18");
INSERT INTO `wp_rg_form_view` VALUES("38469", "10", "2016-09-19 04:05:37", "24.68.22.108", "53");
INSERT INTO `wp_rg_form_view` VALUES("38470", "6", "2016-09-19 04:14:17", "40.77.167.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("38471", "3", "2016-09-19 05:24:55", "157.55.39.141", "73");
INSERT INTO `wp_rg_form_view` VALUES("38472", "13", "2016-09-19 05:24:56", "157.55.39.141", "11");
INSERT INTO `wp_rg_form_view` VALUES("38473", "10", "2016-09-19 05:24:56", "157.55.39.141", "30");
INSERT INTO `wp_rg_form_view` VALUES("38474", "3", "2016-09-19 06:56:06", "68.180.231.25", "12");
INSERT INTO `wp_rg_form_view` VALUES("38475", "13", "2016-09-19 06:56:07", "68.180.231.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("38476", "10", "2016-09-19 06:56:07", "68.180.231.25", "6");
INSERT INTO `wp_rg_form_view` VALUES("38477", "3", "2016-09-19 07:13:33", "202.46.57.198", "13");
INSERT INTO `wp_rg_form_view` VALUES("38478", "13", "2016-09-19 07:13:34", "202.46.57.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("38479", "10", "2016-09-19 07:13:34", "202.46.57.198", "6");
INSERT INTO `wp_rg_form_view` VALUES("38480", "3", "2016-09-19 09:50:19", "157.55.39.243", "18");
INSERT INTO `wp_rg_form_view` VALUES("38481", "13", "2016-09-19 09:50:21", "157.55.39.243", "3");
INSERT INTO `wp_rg_form_view` VALUES("38482", "10", "2016-09-19 09:50:22", "157.55.39.243", "9");
INSERT INTO `wp_rg_form_view` VALUES("38483", "3", "2016-09-19 10:04:56", "66.249.75.156", "39");
INSERT INTO `wp_rg_form_view` VALUES("38484", "13", "2016-09-19 10:04:57", "66.249.75.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("38485", "10", "2016-09-19 10:04:57", "66.249.75.156", "18");
INSERT INTO `wp_rg_form_view` VALUES("38486", "3", "2016-09-19 11:10:11", "68.180.231.25", "71");
INSERT INTO `wp_rg_form_view` VALUES("38487", "13", "2016-09-19 11:10:11", "68.180.231.25", "12");
INSERT INTO `wp_rg_form_view` VALUES("38488", "10", "2016-09-19 11:19:22", "178.137.88.86", "31");
INSERT INTO `wp_rg_form_view` VALUES("38489", "10", "2016-09-19 11:19:22", "178.137.88.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("38490", "10", "2016-09-19 11:19:22", "178.137.88.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("38491", "3", "2016-09-19 12:18:49", "202.46.48.26", "24");
INSERT INTO `wp_rg_form_view` VALUES("38492", "13", "2016-09-19 12:18:49", "202.46.48.26", "4");
INSERT INTO `wp_rg_form_view` VALUES("38493", "10", "2016-09-19 12:18:49", "202.46.48.26", "12");
INSERT INTO `wp_rg_form_view` VALUES("38494", "10", "2016-09-19 13:19:01", "157.55.39.141", "14");
INSERT INTO `wp_rg_form_view` VALUES("38495", "3", "2016-09-19 13:19:02", "157.55.39.141", "12");
INSERT INTO `wp_rg_form_view` VALUES("38496", "13", "2016-09-19 13:19:03", "157.55.39.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("38497", "9", "2016-09-19 13:33:52", "40.77.167.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("38498", "3", "2016-09-19 14:05:57", "178.137.160.205", "26");
INSERT INTO `wp_rg_form_view` VALUES("38499", "13", "2016-09-19 14:05:57", "178.137.160.205", "4");
INSERT INTO `wp_rg_form_view` VALUES("38500", "10", "2016-09-19 14:05:57", "178.137.160.205", "12");
INSERT INTO `wp_rg_form_view` VALUES("38501", "3", "2016-09-19 15:06:32", "164.132.161.24", "31");
INSERT INTO `wp_rg_form_view` VALUES("38502", "13", "2016-09-19 15:06:32", "164.132.161.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("38503", "10", "2016-09-19 15:06:32", "164.132.161.24", "15");
INSERT INTO `wp_rg_form_view` VALUES("38504", "3", "2016-09-19 16:11:01", "96.50.19.46", "74");
INSERT INTO `wp_rg_form_view` VALUES("38505", "13", "2016-09-19 16:11:01", "96.50.19.46", "12");
INSERT INTO `wp_rg_form_view` VALUES("38506", "10", "2016-09-19 16:11:02", "96.50.19.46", "36");
INSERT INTO `wp_rg_form_view` VALUES("38507", "1", "2016-09-19 16:40:31", "155.133.43.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("38508", "3", "2016-09-19 17:03:43", "134.249.65.218", "164");
INSERT INTO `wp_rg_form_view` VALUES("38509", "13", "2016-09-19 17:03:44", "134.249.65.218", "26");
INSERT INTO `wp_rg_form_view` VALUES("38510", "10", "2016-09-19 17:03:44", "134.249.65.218", "82");
INSERT INTO `wp_rg_form_view` VALUES("38511", "3", "2016-09-19 18:06:00", "207.81.225.201", "99");
INSERT INTO `wp_rg_form_view` VALUES("38512", "13", "2016-09-19 18:06:01", "207.81.225.201", "15");
INSERT INTO `wp_rg_form_view` VALUES("38513", "10", "2016-09-19 18:06:01", "207.81.225.201", "49");
INSERT INTO `wp_rg_form_view` VALUES("38514", "3", "2016-09-19 19:18:41", "194.187.170.113", "73");
INSERT INTO `wp_rg_form_view` VALUES("38515", "13", "2016-09-19 19:18:41", "194.187.170.113", "12");
INSERT INTO `wp_rg_form_view` VALUES("38516", "10", "2016-09-19 19:18:41", "194.187.170.113", "38");
INSERT INTO `wp_rg_form_view` VALUES("38517", "5", "2016-09-19 19:54:01", "40.77.167.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("38518", "9", "2016-09-19 19:55:31", "181.45.75.174", "3");
INSERT INTO `wp_rg_form_view` VALUES("38519", "10", "2016-09-19 20:08:54", "157.55.39.168", "28");
INSERT INTO `wp_rg_form_view` VALUES("38520", "3", "2016-09-19 20:08:54", "157.55.39.168", "57");
INSERT INTO `wp_rg_form_view` VALUES("38521", "13", "2016-09-19 20:08:55", "157.55.39.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("38522", "3", "2016-09-19 21:07:27", "66.249.69.112", "55");
INSERT INTO `wp_rg_form_view` VALUES("38523", "13", "2016-09-19 21:07:27", "66.249.69.112", "9");
INSERT INTO `wp_rg_form_view` VALUES("38524", "10", "2016-09-19 21:07:27", "66.249.69.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("38525", "3", "2016-09-19 22:14:40", "157.55.39.168", "79");
INSERT INTO `wp_rg_form_view` VALUES("38526", "13", "2016-09-19 22:14:41", "157.55.39.168", "13");
INSERT INTO `wp_rg_form_view` VALUES("38527", "10", "2016-09-19 22:14:41", "157.55.39.168", "44");
INSERT INTO `wp_rg_form_view` VALUES("38528", "3", "2016-09-19 23:20:19", "157.55.39.243", "101");
INSERT INTO `wp_rg_form_view` VALUES("38529", "13", "2016-09-19 23:20:20", "157.55.39.243", "16");
INSERT INTO `wp_rg_form_view` VALUES("38530", "10", "2016-09-19 23:20:20", "157.55.39.243", "51");
INSERT INTO `wp_rg_form_view` VALUES("38531", "1", "2016-09-19 23:23:23", "154.20.28.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("38532", "12", "2016-09-19 23:40:34", "202.46.52.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("38533", "6", "2016-09-19 23:42:55", "40.77.167.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("38534", "3", "2016-09-20 00:01:48", "24.108.21.91", "91");
INSERT INTO `wp_rg_form_view` VALUES("38535", "13", "2016-09-20 00:01:48", "24.108.21.91", "15");
INSERT INTO `wp_rg_form_view` VALUES("38536", "10", "2016-09-20 00:01:48", "24.108.21.91", "53");
INSERT INTO `wp_rg_form_view` VALUES("38537", "3", "2016-09-20 01:06:30", "66.249.69.104", "55");
INSERT INTO `wp_rg_form_view` VALUES("38538", "13", "2016-09-20 01:06:30", "66.249.69.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("38539", "10", "2016-09-20 01:06:30", "66.249.69.104", "28");
INSERT INTO `wp_rg_form_view` VALUES("38540", "10", "2016-09-20 02:12:57", "154.20.88.206", "38");
INSERT INTO `wp_rg_form_view` VALUES("38541", "3", "2016-09-20 02:12:57", "154.20.88.206", "74");
INSERT INTO `wp_rg_form_view` VALUES("38542", "13", "2016-09-20 02:12:58", "154.20.88.206", "12");
INSERT INTO `wp_rg_form_view` VALUES("38543", "1", "2016-09-20 02:58:20", "108.180.150.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("38544", "3", "2016-09-20 03:12:22", "220.181.108.113", "37");
INSERT INTO `wp_rg_form_view` VALUES("38545", "13", "2016-09-20 03:12:23", "220.181.108.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("38546", "10", "2016-09-20 03:12:23", "220.181.108.113", "19");
INSERT INTO `wp_rg_form_view` VALUES("38547", "3", "2016-09-20 04:00:07", "64.180.74.161", "51");
INSERT INTO `wp_rg_form_view` VALUES("38548", "13", "2016-09-20 04:00:07", "64.180.74.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("38549", "10", "2016-09-20 04:00:07", "64.180.74.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("38550", "3", "2016-09-20 05:51:34", "157.55.39.237", "7");
INSERT INTO `wp_rg_form_view` VALUES("38551", "13", "2016-09-20 05:51:36", "157.55.39.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("38552", "10", "2016-09-20 05:51:36", "157.55.39.237", "3");
INSERT INTO `wp_rg_form_view` VALUES("38553", "3", "2016-09-20 06:08:23", "66.249.69.104", "43");
INSERT INTO `wp_rg_form_view` VALUES("38554", "13", "2016-09-20 06:08:24", "66.249.69.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("38555", "10", "2016-09-20 06:08:24", "66.249.69.104", "22");
INSERT INTO `wp_rg_form_view` VALUES("38556", "3", "2016-09-20 07:12:16", "157.55.39.168", "31");
INSERT INTO `wp_rg_form_view` VALUES("38557", "13", "2016-09-20 07:12:17", "157.55.39.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("38558", "10", "2016-09-20 07:12:17", "157.55.39.168", "15");
INSERT INTO `wp_rg_form_view` VALUES("38559", "9", "2016-09-20 08:02:38", "157.55.39.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("38560", "3", "2016-09-20 08:02:38", "157.55.39.168", "24");
INSERT INTO `wp_rg_form_view` VALUES("38561", "13", "2016-09-20 08:02:38", "157.55.39.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("38562", "10", "2016-09-20 08:02:38", "157.55.39.168", "12");
INSERT INTO `wp_rg_form_view` VALUES("38563", "3", "2016-09-20 09:14:27", "220.181.108.143", "36");
INSERT INTO `wp_rg_form_view` VALUES("38564", "13", "2016-09-20 09:14:32", "220.181.108.143", "6");
INSERT INTO `wp_rg_form_view` VALUES("38565", "10", "2016-09-20 09:14:32", "220.181.108.143", "18");
INSERT INTO `wp_rg_form_view` VALUES("38566", "1", "2016-09-20 09:25:34", "157.55.39.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("38567", "1", "2016-09-20 10:12:41", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("38568", "3", "2016-09-20 10:12:41", "155.133.43.8", "26");
INSERT INTO `wp_rg_form_view` VALUES("38569", "13", "2016-09-20 10:12:42", "155.133.43.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("38570", "10", "2016-09-20 10:12:42", "155.133.43.8", "12");
INSERT INTO `wp_rg_form_view` VALUES("38571", "3", "2016-09-20 11:35:46", "194.187.170.120", "133");
INSERT INTO `wp_rg_form_view` VALUES("38572", "13", "2016-09-20 11:35:47", "194.187.170.120", "22");
INSERT INTO `wp_rg_form_view` VALUES("38573", "10", "2016-09-20 11:35:47", "194.187.170.120", "66");
INSERT INTO `wp_rg_form_view` VALUES("38574", "11", "2016-09-20 11:39:40", "94.23.0.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("38575", "2", "2016-09-20 11:39:42", "94.23.0.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("38576", "10", "2016-09-20 12:02:57", "77.75.78.165", "23");
INSERT INTO `wp_rg_form_view` VALUES("38577", "3", "2016-09-20 12:02:58", "77.75.78.165", "31");
INSERT INTO `wp_rg_form_view` VALUES("38578", "13", "2016-09-20 12:02:58", "77.75.78.165", "5");
INSERT INTO `wp_rg_form_view` VALUES("38579", "3", "2016-09-20 13:13:18", "157.55.39.237", "13");
INSERT INTO `wp_rg_form_view` VALUES("38580", "13", "2016-09-20 13:13:19", "157.55.39.237", "2");
INSERT INTO `wp_rg_form_view` VALUES("38581", "10", "2016-09-20 13:13:19", "157.55.39.237", "6");
INSERT INTO `wp_rg_form_view` VALUES("38582", "8", "2016-09-20 13:54:44", "157.55.39.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("38583", "3", "2016-09-20 14:11:29", "104.168.5.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("38584", "13", "2016-09-20 14:11:29", "104.168.5.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("38585", "10", "2016-09-20 14:11:29", "104.168.5.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("38586", "3", "2016-09-20 15:01:31", "185.71.1.156", "68");
INSERT INTO `wp_rg_form_view` VALUES("38587", "13", "2016-09-20 15:01:32", "185.71.1.156", "12");
INSERT INTO `wp_rg_form_view` VALUES("38588", "10", "2016-09-20 15:01:32", "185.71.1.156", "34");
INSERT INTO `wp_rg_form_view` VALUES("38589", "3", "2016-09-20 16:12:29", "40.77.167.37", "93");
INSERT INTO `wp_rg_form_view` VALUES("38590", "13", "2016-09-20 16:12:30", "40.77.167.37", "15");
INSERT INTO `wp_rg_form_view` VALUES("38591", "10", "2016-09-20 16:12:30", "40.77.167.37", "43");
INSERT INTO `wp_rg_form_view` VALUES("38592", "9", "2016-09-20 16:32:52", "157.55.39.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("38593", "3", "2016-09-20 17:02:04", "24.68.40.102", "230");
INSERT INTO `wp_rg_form_view` VALUES("38594", "13", "2016-09-20 17:02:05", "24.68.40.102", "38");
INSERT INTO `wp_rg_form_view` VALUES("38595", "10", "2016-09-20 17:02:05", "24.68.40.102", "115");
INSERT INTO `wp_rg_form_view` VALUES("38596", "11", "2016-09-20 17:32:24", "79.116.28.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("38597", "2", "2016-09-20 17:33:24", "79.116.28.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("38598", "3", "2016-09-20 18:17:01", "66.249.69.112", "69");
INSERT INTO `wp_rg_form_view` VALUES("38599", "13", "2016-09-20 18:17:01", "66.249.69.112", "11");
INSERT INTO `wp_rg_form_view` VALUES("38600", "10", "2016-09-20 18:17:02", "66.249.69.112", "33");
INSERT INTO `wp_rg_form_view` VALUES("38601", "1", "2016-09-20 18:56:20", "198.204.248.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("38602", "3", "2016-09-20 19:04:30", "40.77.167.37", "117");
INSERT INTO `wp_rg_form_view` VALUES("38603", "13", "2016-09-20 19:04:30", "40.77.167.37", "19");
INSERT INTO `wp_rg_form_view` VALUES("38604", "10", "2016-09-20 19:04:30", "40.77.167.37", "57");
INSERT INTO `wp_rg_form_view` VALUES("38605", "3", "2016-09-20 20:02:18", "157.55.39.168", "37");
INSERT INTO `wp_rg_form_view` VALUES("38606", "13", "2016-09-20 20:02:19", "157.55.39.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("38607", "10", "2016-09-20 20:02:19", "157.55.39.168", "18");
INSERT INTO `wp_rg_form_view` VALUES("38608", "1", "2016-09-20 20:47:49", "198.204.248.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("38609", "3", "2016-09-20 21:03:25", "64.180.23.41", "59");
INSERT INTO `wp_rg_form_view` VALUES("38610", "13", "2016-09-20 21:03:25", "64.180.23.41", "9");
INSERT INTO `wp_rg_form_view` VALUES("38611", "10", "2016-09-20 21:03:25", "64.180.23.41", "24");
INSERT INTO `wp_rg_form_view` VALUES("38612", "3", "2016-09-20 22:26:53", "64.114.204.58", "121");
INSERT INTO `wp_rg_form_view` VALUES("38613", "13", "2016-09-20 22:26:54", "64.114.204.58", "20");
INSERT INTO `wp_rg_form_view` VALUES("38614", "10", "2016-09-20 22:26:54", "64.114.204.58", "60");
INSERT INTO `wp_rg_form_view` VALUES("38615", "1", "2016-09-20 22:29:55", "198.204.248.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("38616", "3", "2016-09-20 23:18:10", "202.46.56.203", "13");
INSERT INTO `wp_rg_form_view` VALUES("38617", "13", "2016-09-20 23:18:10", "202.46.56.203", "2");
INSERT INTO `wp_rg_form_view` VALUES("38618", "10", "2016-09-20 23:18:10", "202.46.56.203", "6");
INSERT INTO `wp_rg_form_view` VALUES("38619", "1", "2016-09-21 00:13:25", "198.204.248.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("38620", "3", "2016-09-21 00:13:25", "198.204.248.186", "53");
INSERT INTO `wp_rg_form_view` VALUES("38621", "13", "2016-09-21 00:13:25", "198.204.248.186", "8");
INSERT INTO `wp_rg_form_view` VALUES("38622", "10", "2016-09-21 00:13:25", "198.204.248.186", "24");
INSERT INTO `wp_rg_form_view` VALUES("38623", "3", "2016-09-21 01:24:40", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("38624", "10", "2016-09-21 02:00:25", "164.132.161.66", "22");
INSERT INTO `wp_rg_form_view` VALUES("38625", "3", "2016-09-21 02:00:26", "164.132.161.66", "42");
INSERT INTO `wp_rg_form_view` VALUES("38626", "13", "2016-09-21 02:00:26", "164.132.161.66", "7");
INSERT INTO `wp_rg_form_view` VALUES("38627", "1", "2016-09-21 02:44:51", "155.133.43.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("38628", "3", "2016-09-21 03:04:29", "68.180.230.168", "24");
INSERT INTO `wp_rg_form_view` VALUES("38629", "13", "2016-09-21 03:04:29", "68.180.230.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("38630", "10", "2016-09-21 03:04:29", "68.180.230.168", "14");
INSERT INTO `wp_rg_form_view` VALUES("38631", "8", "2016-09-21 04:15:40", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("38632", "3", "2016-09-21 04:15:40", "68.180.230.168", "30");
INSERT INTO `wp_rg_form_view` VALUES("38633", "13", "2016-09-21 04:15:41", "68.180.230.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("38634", "10", "2016-09-21 04:15:41", "68.180.230.168", "16");
INSERT INTO `wp_rg_form_view` VALUES("38635", "3", "2016-09-21 05:11:43", "24.68.22.108", "19");
INSERT INTO `wp_rg_form_view` VALUES("38636", "13", "2016-09-21 05:11:43", "24.68.22.108", "3");
INSERT INTO `wp_rg_form_view` VALUES("38637", "10", "2016-09-21 05:11:43", "24.68.22.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("38638", "3", "2016-09-21 06:19:04", "157.55.39.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("38639", "13", "2016-09-21 06:19:05", "157.55.39.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("38640", "10", "2016-09-21 06:19:05", "157.55.39.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("38641", "3", "2016-09-21 07:32:57", "51.255.65.74", "367");
INSERT INTO `wp_rg_form_view` VALUES("38642", "13", "2016-09-21 07:32:58", "51.255.65.74", "62");
INSERT INTO `wp_rg_form_view` VALUES("38643", "10", "2016-09-21 07:32:58", "51.255.65.74", "182");
INSERT INTO `wp_rg_form_view` VALUES("38644", "11", "2016-09-21 07:52:45", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("38645", "2", "2016-09-21 07:53:19", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("38646", "12", "2016-09-21 07:56:21", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("38647", "1", "2016-09-21 07:57:13", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("38648", "3", "2016-09-21 08:00:09", "136.243.36.94", "19");
INSERT INTO `wp_rg_form_view` VALUES("38649", "13", "2016-09-21 08:00:09", "136.243.36.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("38650", "10", "2016-09-21 08:00:09", "136.243.36.94", "9");
INSERT INTO `wp_rg_form_view` VALUES("38651", "6", "2016-09-21 08:42:08", "164.132.161.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("38652", "3", "2016-09-21 09:18:15", "157.55.39.168", "7");
INSERT INTO `wp_rg_form_view` VALUES("38653", "13", "2016-09-21 09:18:15", "157.55.39.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("38654", "10", "2016-09-21 09:18:15", "157.55.39.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("38655", "3", "2016-09-21 10:14:53", "40.77.167.37", "19");
INSERT INTO `wp_rg_form_view` VALUES("38656", "13", "2016-09-21 10:14:55", "40.77.167.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("38657", "10", "2016-09-21 10:14:55", "40.77.167.37", "10");
INSERT INTO `wp_rg_form_view` VALUES("38658", "3", "2016-09-21 12:58:00", "184.66.32.165", "13");
INSERT INTO `wp_rg_form_view` VALUES("38659", "13", "2016-09-21 12:58:01", "184.66.32.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("38660", "10", "2016-09-21 12:58:01", "184.66.32.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("38661", "3", "2016-09-21 13:05:32", "66.249.69.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("38662", "13", "2016-09-21 13:05:32", "66.249.69.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("38663", "10", "2016-09-21 13:05:32", "66.249.69.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("38664", "10", "2016-09-21 14:53:36", "178.208.12.14", "8");
INSERT INTO `wp_rg_form_view` VALUES("38665", "3", "2016-09-21 14:53:38", "178.208.12.14", "12");
INSERT INTO `wp_rg_form_view` VALUES("38666", "13", "2016-09-21 14:53:38", "178.208.12.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("38667", "3", "2016-09-21 15:03:13", "67.207.207.140", "68");
INSERT INTO `wp_rg_form_view` VALUES("38668", "13", "2016-09-21 15:03:13", "67.207.207.140", "11");
INSERT INTO `wp_rg_form_view` VALUES("38669", "10", "2016-09-21 15:03:13", "67.207.207.140", "33");
INSERT INTO `wp_rg_form_view` VALUES("38670", "11", "2016-09-21 15:03:38", "67.207.207.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("38671", "3", "2016-09-21 16:15:09", "184.69.102.226", "13");
INSERT INTO `wp_rg_form_view` VALUES("38672", "13", "2016-09-21 16:15:10", "184.69.102.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("38673", "10", "2016-09-21 16:15:10", "184.69.102.226", "6");
INSERT INTO `wp_rg_form_view` VALUES("38674", "10", "2016-09-21 17:01:17", "207.194.133.9", "43");
INSERT INTO `wp_rg_form_view` VALUES("38675", "3", "2016-09-21 17:01:17", "207.194.133.9", "90");
INSERT INTO `wp_rg_form_view` VALUES("38676", "13", "2016-09-21 17:01:17", "207.194.133.9", "14");
INSERT INTO `wp_rg_form_view` VALUES("38677", "1", "2016-09-21 17:56:00", "155.133.43.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("38678", "3", "2016-09-21 18:12:01", "184.70.62.254", "32");
INSERT INTO `wp_rg_form_view` VALUES("38679", "13", "2016-09-21 18:12:02", "184.70.62.254", "5");
INSERT INTO `wp_rg_form_view` VALUES("38680", "10", "2016-09-21 18:12:02", "184.70.62.254", "15");
INSERT INTO `wp_rg_form_view` VALUES("38681", "1", "2016-09-21 19:16:50", "199.229.234.249", "2");
INSERT INTO `wp_rg_form_view` VALUES("38682", "3", "2016-09-21 19:16:51", "199.229.234.249", "2095");
INSERT INTO `wp_rg_form_view` VALUES("38683", "13", "2016-09-21 19:16:51", "199.229.234.249", "333");
INSERT INTO `wp_rg_form_view` VALUES("38684", "10", "2016-09-21 19:16:52", "199.229.234.249", "926");
INSERT INTO `wp_rg_form_view` VALUES("38685", "11", "2016-09-21 19:22:08", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38686", "2", "2016-09-21 19:22:13", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38687", "8", "2016-09-21 19:35:19", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38688", "9", "2016-09-21 19:35:28", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38689", "6", "2016-09-21 19:36:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38690", "3", "2016-09-21 20:00:03", "5.9.98.130", "2550");
INSERT INTO `wp_rg_form_view` VALUES("38691", "13", "2016-09-21 20:00:04", "5.9.98.130", "444");
INSERT INTO `wp_rg_form_view` VALUES("38692", "10", "2016-09-21 20:00:07", "5.9.98.130", "1494");
INSERT INTO `wp_rg_form_view` VALUES("38693", "3", "2016-09-21 21:00:45", "40.77.167.37", "3712");
INSERT INTO `wp_rg_form_view` VALUES("38694", "13", "2016-09-21 21:00:46", "40.77.167.37", "624");
INSERT INTO `wp_rg_form_view` VALUES("38695", "10", "2016-09-21 21:00:46", "40.77.167.37", "1720");
INSERT INTO `wp_rg_form_view` VALUES("38696", "10", "2016-09-21 22:00:02", "5.9.98.130", "955");
INSERT INTO `wp_rg_form_view` VALUES("38697", "3", "2016-09-21 22:00:04", "5.9.98.130", "1416");
INSERT INTO `wp_rg_form_view` VALUES("38698", "13", "2016-09-21 22:00:06", "5.9.98.130", "236");
INSERT INTO `wp_rg_form_view` VALUES("38699", "1", "2016-09-21 22:45:37", "24.244.32.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("38700", "3", "2016-09-21 23:00:00", "5.9.98.130", "5136");
INSERT INTO `wp_rg_form_view` VALUES("38701", "10", "2016-09-21 23:00:00", "5.9.98.130", "1579");
INSERT INTO `wp_rg_form_view` VALUES("38702", "13", "2016-09-21 23:00:05", "5.9.98.130", "746");
INSERT INTO `wp_rg_form_view` VALUES("38703", "3", "2016-09-22 00:00:00", "5.9.98.130", "2390");
INSERT INTO `wp_rg_form_view` VALUES("38704", "10", "2016-09-22 00:00:00", "5.9.98.130", "2414");
INSERT INTO `wp_rg_form_view` VALUES("38705", "13", "2016-09-22 00:00:04", "5.9.98.130", "519");
INSERT INTO `wp_rg_form_view` VALUES("38706", "3", "2016-09-22 01:10:03", "77.75.79.101", "31");
INSERT INTO `wp_rg_form_view` VALUES("38707", "13", "2016-09-22 01:10:04", "77.75.79.101", "5");
INSERT INTO `wp_rg_form_view` VALUES("38708", "10", "2016-09-22 01:10:04", "77.75.79.101", "17");
INSERT INTO `wp_rg_form_view` VALUES("38709", "3", "2016-09-22 02:03:17", "5.9.98.130", "4208");
INSERT INTO `wp_rg_form_view` VALUES("38710", "13", "2016-09-22 02:03:17", "5.9.98.130", "652");
INSERT INTO `wp_rg_form_view` VALUES("38711", "10", "2016-09-22 02:03:17", "5.9.98.130", "1661");
INSERT INTO `wp_rg_form_view` VALUES("38712", "12", "2016-09-22 02:15:23", "157.55.39.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("38713", "10", "2016-09-22 03:00:00", "5.9.98.130", "404");
INSERT INTO `wp_rg_form_view` VALUES("38714", "3", "2016-09-22 03:00:05", "5.9.98.130", "1992");
INSERT INTO `wp_rg_form_view` VALUES("38715", "13", "2016-09-22 03:00:06", "5.9.98.130", "266");
INSERT INTO `wp_rg_form_view` VALUES("38716", "3", "2016-09-22 04:06:59", "157.55.39.168", "135");
INSERT INTO `wp_rg_form_view` VALUES("38717", "13", "2016-09-22 04:07:00", "157.55.39.168", "21");
INSERT INTO `wp_rg_form_view` VALUES("38718", "10", "2016-09-22 04:07:00", "157.55.39.168", "70");
INSERT INTO `wp_rg_form_view` VALUES("38719", "6", "2016-09-22 05:07:47", "40.77.167.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("38720", "3", "2016-09-22 05:07:47", "40.77.167.37", "54");
INSERT INTO `wp_rg_form_view` VALUES("38721", "13", "2016-09-22 05:07:48", "40.77.167.37", "9");
INSERT INTO `wp_rg_form_view` VALUES("38722", "10", "2016-09-22 05:07:48", "40.77.167.37", "27");
INSERT INTO `wp_rg_form_view` VALUES("38723", "1", "2016-09-22 05:24:37", "184.66.251.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("38724", "11", "2016-09-22 06:13:43", "77.75.76.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("38725", "3", "2016-09-22 06:13:44", "77.75.76.163", "25");
INSERT INTO `wp_rg_form_view` VALUES("38726", "13", "2016-09-22 06:13:44", "77.75.76.163", "5");
INSERT INTO `wp_rg_form_view` VALUES("38727", "10", "2016-09-22 06:13:44", "77.75.76.163", "12");
INSERT INTO `wp_rg_form_view` VALUES("38728", "9", "2016-09-22 06:58:22", "157.55.39.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("38729", "3", "2016-09-22 07:06:38", "157.55.39.243", "956");
INSERT INTO `wp_rg_form_view` VALUES("38730", "13", "2016-09-22 07:06:38", "157.55.39.243", "157");
INSERT INTO `wp_rg_form_view` VALUES("38731", "10", "2016-09-22 07:06:38", "157.55.39.243", "481");
INSERT INTO `wp_rg_form_view` VALUES("38732", "11", "2016-09-22 07:42:34", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38733", "2", "2016-09-22 07:42:38", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38734", "1", "2016-09-22 07:45:04", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38735", "8", "2016-09-22 07:55:40", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38736", "9", "2016-09-22 07:55:50", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38737", "6", "2016-09-22 07:56:55", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("38738", "3", "2016-09-22 08:00:13", "5.9.98.130", "3305");
INSERT INTO `wp_rg_form_view` VALUES("38739", "13", "2016-09-22 08:00:13", "5.9.98.130", "538");
INSERT INTO `wp_rg_form_view` VALUES("38740", "10", "2016-09-22 08:00:13", "5.9.98.130", "1502");
INSERT INTO `wp_rg_form_view` VALUES("38741", "13", "2016-09-22 09:00:00", "5.9.98.130", "485");
INSERT INTO `wp_rg_form_view` VALUES("38742", "3", "2016-09-22 09:00:00", "5.9.98.130", "3194");
INSERT INTO `wp_rg_form_view` VALUES("38743", "10", "2016-09-22 09:00:02", "5.9.98.130", "1267");
INSERT INTO `wp_rg_form_view` VALUES("38744", "9", "2016-09-22 09:38:35", "157.55.39.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("38745", "3", "2016-09-22 10:00:00", "5.9.98.130", "1416");
INSERT INTO `wp_rg_form_view` VALUES("38746", "13", "2016-09-22 10:00:00", "5.9.98.130", "306");
INSERT INTO `wp_rg_form_view` VALUES("38747", "10", "2016-09-22 10:00:00", "5.9.98.130", "1398");
INSERT INTO `wp_rg_form_view` VALUES("38748", "1", "2016-09-22 10:35:39", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("38749", "3", "2016-09-22 11:04:55", "5.9.98.130", "4896");
INSERT INTO `wp_rg_form_view` VALUES("38750", "13", "2016-09-22 11:04:55", "5.9.98.130", "698");
INSERT INTO `wp_rg_form_view` VALUES("38751", "10", "2016-09-22 11:04:56", "5.9.98.130", "1383");
INSERT INTO `wp_rg_form_view` VALUES("38752", "3", "2016-09-22 12:00:00", "5.9.98.130", "3040");
INSERT INTO `wp_rg_form_view` VALUES("38753", "13", "2016-09-22 12:00:03", "5.9.98.130", "635");
INSERT INTO `wp_rg_form_view` VALUES("38754", "10", "2016-09-22 12:00:03", "5.9.98.130", "2809");
INSERT INTO `wp_rg_form_view` VALUES("38755", "3", "2016-09-22 13:00:00", "5.9.98.130", "516");
INSERT INTO `wp_rg_form_view` VALUES("38756", "13", "2016-09-22 13:00:01", "5.9.98.130", "86");
INSERT INTO `wp_rg_form_view` VALUES("38757", "10", "2016-09-22 13:00:01", "5.9.98.130", "258");
INSERT INTO `wp_rg_form_view` VALUES("38758", "1", "2016-09-22 13:38:44", "184.66.33.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("38759", "3", "2016-09-22 14:21:43", "5.9.98.130", "2615");
INSERT INTO `wp_rg_form_view` VALUES("38760", "13", "2016-09-22 14:21:45", "5.9.98.130", "436");
INSERT INTO `wp_rg_form_view` VALUES("38761", "10", "2016-09-22 14:21:45", "5.9.98.130", "1306");
INSERT INTO `wp_rg_form_view` VALUES("38762", "10", "2016-09-22 15:00:00", "5.9.98.130", "1076");
INSERT INTO `wp_rg_form_view` VALUES("38763", "3", "2016-09-22 15:00:00", "5.9.98.130", "5192");
INSERT INTO `wp_rg_form_view` VALUES("38764", "13", "2016-09-22 15:00:05", "5.9.98.130", "696");
INSERT INTO `wp_rg_form_view` VALUES("38765", "3", "2016-09-22 16:00:00", "5.9.98.130", "4566");
INSERT INTO `wp_rg_form_view` VALUES("38766", "13", "2016-09-22 16:00:02", "5.9.98.130", "700");
INSERT INTO `wp_rg_form_view` VALUES("38767", "10", "2016-09-22 16:00:06", "5.9.98.130", "1735");
INSERT INTO `wp_rg_form_view` VALUES("38768", "1", "2016-09-22 16:01:23", "96.54.196.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("38769", "3", "2016-09-22 17:00:02", "5.9.98.130", "2907");
INSERT INTO `wp_rg_form_view` VALUES("38770", "13", "2016-09-22 17:00:03", "5.9.98.130", "738");
INSERT INTO `wp_rg_form_view` VALUES("38771", "10", "2016-09-22 17:00:03", "5.9.98.130", "2999");
INSERT INTO `wp_rg_form_view` VALUES("38772", "1", "2016-09-22 17:14:42", "205.233.121.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("38773", "10", "2016-09-22 18:00:00", "5.9.98.130", "1938");
INSERT INTO `wp_rg_form_view` VALUES("38774", "3", "2016-09-22 18:00:03", "5.9.98.130", "1964");
INSERT INTO `wp_rg_form_view` VALUES("38775", "13", "2016-09-22 18:00:05", "5.9.98.130", "328");
INSERT INTO `wp_rg_form_view` VALUES("38776", "3", "2016-09-22 19:02:23", "199.21.99.202", "105");
INSERT INTO `wp_rg_form_view` VALUES("38777", "13", "2016-09-22 19:02:24", "199.21.99.202", "17");
INSERT INTO `wp_rg_form_view` VALUES("38778", "10", "2016-09-22 19:02:24", "199.21.99.202", "54");
INSERT INTO `wp_rg_form_view` VALUES("38779", "3", "2016-09-22 20:00:46", "199.21.99.202", "121");
INSERT INTO `wp_rg_form_view` VALUES("38780", "13", "2016-09-22 20:00:47", "199.21.99.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("38781", "10", "2016-09-22 20:00:47", "199.21.99.202", "61");
INSERT INTO `wp_rg_form_view` VALUES("38782", "1", "2016-09-22 20:02:48", "184.69.124.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("38783", "2", "2016-09-22 20:07:57", "167.114.65.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("38784", "5", "2016-09-22 20:13:25", "202.46.58.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("38785", "3", "2016-09-22 21:10:25", "5.9.98.130", "3283");
INSERT INTO `wp_rg_form_view` VALUES("38786", "13", "2016-09-22 21:10:25", "5.9.98.130", "547");
INSERT INTO `wp_rg_form_view` VALUES("38787", "10", "2016-09-22 21:10:25", "5.9.98.130", "1641");
INSERT INTO `wp_rg_form_view` VALUES("38788", "1", "2016-09-22 21:33:02", "198.71.87.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("38789", "3", "2016-09-22 22:00:00", "5.9.98.130", "3989");
INSERT INTO `wp_rg_form_view` VALUES("38790", "13", "2016-09-22 22:00:01", "5.9.98.130", "607");
INSERT INTO `wp_rg_form_view` VALUES("38791", "10", "2016-09-22 22:00:01", "5.9.98.130", "1481");
INSERT INTO `wp_rg_form_view` VALUES("38792", "1", "2016-09-22 22:05:23", "107.175.224.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("38793", "3", "2016-09-22 23:00:01", "5.9.98.130", "5055");
INSERT INTO `wp_rg_form_view` VALUES("38794", "13", "2016-09-22 23:00:03", "5.9.98.130", "674");
INSERT INTO `wp_rg_form_view` VALUES("38795", "10", "2016-09-22 23:00:06", "5.9.98.130", "1014");
INSERT INTO `wp_rg_form_view` VALUES("38796", "3", "2016-09-23 00:00:00", "5.9.98.130", "5198");
INSERT INTO `wp_rg_form_view` VALUES("38797", "13", "2016-09-23 00:00:00", "5.9.98.130", "695");
INSERT INTO `wp_rg_form_view` VALUES("38798", "10", "2016-09-23 00:00:04", "5.9.98.130", "1057");
INSERT INTO `wp_rg_form_view` VALUES("38799", "3", "2016-09-23 01:00:03", "5.9.98.130", "2680");
INSERT INTO `wp_rg_form_view` VALUES("38800", "13", "2016-09-23 01:00:04", "5.9.98.130", "359");
INSERT INTO `wp_rg_form_view` VALUES("38801", "10", "2016-09-23 01:00:08", "5.9.98.130", "561");
INSERT INTO `wp_rg_form_view` VALUES("38802", "3", "2016-09-23 02:19:24", "199.21.99.202", "36");
INSERT INTO `wp_rg_form_view` VALUES("38803", "13", "2016-09-23 02:19:25", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("38804", "10", "2016-09-23 02:19:25", "199.21.99.202", "18");
INSERT INTO `wp_rg_form_view` VALUES("38805", "10", "2016-09-23 03:12:31", "108.180.145.60", "46");
INSERT INTO `wp_rg_form_view` VALUES("38806", "3", "2016-09-23 03:12:31", "108.180.145.60", "87");
INSERT INTO `wp_rg_form_view` VALUES("38807", "13", "2016-09-23 03:12:31", "108.180.145.60", "15");
INSERT INTO `wp_rg_form_view` VALUES("38808", "1", "2016-09-23 03:21:43", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("38809", "3", "2016-09-23 04:24:19", "199.21.99.202", "37");
INSERT INTO `wp_rg_form_view` VALUES("38810", "13", "2016-09-23 04:24:21", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("38811", "10", "2016-09-23 04:24:21", "199.21.99.202", "19");
INSERT INTO `wp_rg_form_view` VALUES("38812", "3", "2016-09-23 05:05:11", "217.69.133.229", "87");
INSERT INTO `wp_rg_form_view` VALUES("38813", "13", "2016-09-23 05:05:12", "217.69.133.229", "14");
INSERT INTO `wp_rg_form_view` VALUES("38814", "10", "2016-09-23 05:05:12", "217.69.133.229", "43");
INSERT INTO `wp_rg_form_view` VALUES("38815", "11", "2016-09-23 05:43:54", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("38816", "1", "2016-09-23 06:02:01", "178.32.12.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("38817", "3", "2016-09-23 06:02:03", "178.32.12.117", "55");
INSERT INTO `wp_rg_form_view` VALUES("38818", "13", "2016-09-23 06:02:03", "178.32.12.117", "10");
INSERT INTO `wp_rg_form_view` VALUES("38819", "10", "2016-09-23 06:02:03", "178.32.12.117", "30");
INSERT INTO `wp_rg_form_view` VALUES("38820", "3", "2016-09-23 08:03:40", "40.77.167.37", "53");
INSERT INTO `wp_rg_form_view` VALUES("38821", "13", "2016-09-23 08:03:42", "40.77.167.37", "8");
INSERT INTO `wp_rg_form_view` VALUES("38822", "10", "2016-09-23 08:03:42", "40.77.167.37", "24");
INSERT INTO `wp_rg_form_view` VALUES("38823", "13", "2016-09-23 09:13:34", "68.180.230.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("38824", "10", "2016-09-23 09:13:34", "68.180.230.168", "14");
INSERT INTO `wp_rg_form_view` VALUES("38825", "3", "2016-09-23 09:13:35", "68.180.230.168", "33");
INSERT INTO `wp_rg_form_view` VALUES("38826", "1", "2016-09-23 09:34:54", "194.1.239.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("38827", "11", "2016-09-23 09:37:51", "207.46.13.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("38828", "3", "2016-09-23 11:52:44", "24.108.25.61", "25");
INSERT INTO `wp_rg_form_view` VALUES("38829", "13", "2016-09-23 11:52:46", "24.108.25.61", "4");
INSERT INTO `wp_rg_form_view` VALUES("38830", "10", "2016-09-23 11:52:46", "24.108.25.61", "12");
INSERT INTO `wp_rg_form_view` VALUES("38831", "10", "2016-09-23 12:14:18", "202.46.51.32", "20");
INSERT INTO `wp_rg_form_view` VALUES("38832", "3", "2016-09-23 12:14:18", "202.46.51.32", "47");
INSERT INTO `wp_rg_form_view` VALUES("38833", "13", "2016-09-23 12:14:18", "202.46.51.32", "7");
INSERT INTO `wp_rg_form_view` VALUES("38834", "10", "2016-09-23 13:11:34", "68.180.230.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("38835", "3", "2016-09-23 13:11:34", "68.180.230.168", "20");
INSERT INTO `wp_rg_form_view` VALUES("38836", "13", "2016-09-23 13:11:35", "68.180.230.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("38837", "3", "2016-09-23 14:03:10", "207.46.13.170", "24");
INSERT INTO `wp_rg_form_view` VALUES("38838", "13", "2016-09-23 14:03:11", "207.46.13.170", "4");
INSERT INTO `wp_rg_form_view` VALUES("38839", "10", "2016-09-23 14:03:11", "207.46.13.170", "12");
INSERT INTO `wp_rg_form_view` VALUES("38840", "3", "2016-09-23 15:01:12", "68.180.230.168", "25");
INSERT INTO `wp_rg_form_view` VALUES("38841", "13", "2016-09-23 15:01:13", "68.180.230.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("38842", "10", "2016-09-23 15:01:13", "68.180.230.168", "12");
INSERT INTO `wp_rg_form_view` VALUES("38843", "3", "2016-09-23 16:03:34", "64.114.222.236", "503");
INSERT INTO `wp_rg_form_view` VALUES("38844", "13", "2016-09-23 16:03:35", "64.114.222.236", "83");
INSERT INTO `wp_rg_form_view` VALUES("38845", "10", "2016-09-23 16:03:35", "64.114.222.236", "264");
INSERT INTO `wp_rg_form_view` VALUES("38846", "9", "2016-09-23 16:27:54", "207.46.13.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("38847", "7", "2016-09-23 16:28:08", "207.46.13.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("38848", "12", "2016-09-23 16:28:21", "207.46.13.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("38849", "3", "2016-09-23 17:03:07", "202.46.53.151", "88");
INSERT INTO `wp_rg_form_view` VALUES("38850", "13", "2016-09-23 17:03:08", "202.46.53.151", "14");
INSERT INTO `wp_rg_form_view` VALUES("38851", "10", "2016-09-23 17:03:08", "202.46.53.151", "43");
INSERT INTO `wp_rg_form_view` VALUES("38852", "10", "2016-09-23 18:04:24", "66.249.79.104", "17");
INSERT INTO `wp_rg_form_view` VALUES("38853", "3", "2016-09-23 18:04:25", "66.249.79.104", "30");
INSERT INTO `wp_rg_form_view` VALUES("38854", "13", "2016-09-23 18:04:25", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("38855", "3", "2016-09-23 19:10:19", "66.249.79.108", "25");
INSERT INTO `wp_rg_form_view` VALUES("38856", "13", "2016-09-23 19:10:19", "66.249.79.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("38857", "10", "2016-09-23 19:10:19", "66.249.79.108", "13");
INSERT INTO `wp_rg_form_view` VALUES("38858", "10", "2016-09-23 20:51:03", "217.69.133.233", "7");
INSERT INTO `wp_rg_form_view` VALUES("38859", "3", "2016-09-23 20:51:03", "217.69.133.233", "13");
INSERT INTO `wp_rg_form_view` VALUES("38860", "13", "2016-09-23 20:51:04", "217.69.133.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("38861", "3", "2016-09-23 21:17:09", "40.77.167.44", "175");
INSERT INTO `wp_rg_form_view` VALUES("38862", "13", "2016-09-23 21:17:10", "40.77.167.44", "28");
INSERT INTO `wp_rg_form_view` VALUES("38863", "10", "2016-09-23 21:17:10", "40.77.167.44", "81");
INSERT INTO `wp_rg_form_view` VALUES("38864", "8", "2016-09-23 21:29:31", "157.55.39.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("38865", "1", "2016-09-23 21:36:54", "155.133.43.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("38866", "3", "2016-09-23 22:09:21", "66.249.79.108", "82");
INSERT INTO `wp_rg_form_view` VALUES("38867", "13", "2016-09-23 22:09:21", "66.249.79.108", "13");
INSERT INTO `wp_rg_form_view` VALUES("38868", "10", "2016-09-23 22:09:21", "66.249.79.108", "39");
INSERT INTO `wp_rg_form_view` VALUES("38869", "3", "2016-09-23 23:07:46", "68.180.230.168", "57");
INSERT INTO `wp_rg_form_view` VALUES("38870", "13", "2016-09-23 23:07:46", "68.180.230.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("38871", "10", "2016-09-23 23:07:46", "68.180.230.168", "25");
INSERT INTO `wp_rg_form_view` VALUES("38872", "3", "2016-09-24 00:00:34", "217.69.133.231", "24");
INSERT INTO `wp_rg_form_view` VALUES("38873", "13", "2016-09-24 00:00:35", "217.69.133.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("38874", "10", "2016-09-24 00:00:35", "217.69.133.231", "12");
INSERT INTO `wp_rg_form_view` VALUES("38875", "1", "2016-09-24 00:03:40", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("38876", "10", "2016-09-24 01:08:24", "68.180.230.168", "29");
INSERT INTO `wp_rg_form_view` VALUES("38877", "3", "2016-09-24 01:08:24", "68.180.230.168", "38");
INSERT INTO `wp_rg_form_view` VALUES("38878", "13", "2016-09-24 01:08:24", "68.180.230.168", "7");
INSERT INTO `wp_rg_form_view` VALUES("38879", "3", "2016-09-24 02:04:41", "163.172.51.123", "31");
INSERT INTO `wp_rg_form_view` VALUES("38880", "13", "2016-09-24 02:04:42", "163.172.51.123", "5");
INSERT INTO `wp_rg_form_view` VALUES("38881", "10", "2016-09-24 02:04:42", "163.172.51.123", "15");
INSERT INTO `wp_rg_form_view` VALUES("38882", "3", "2016-09-24 03:07:14", "66.249.79.104", "70");
INSERT INTO `wp_rg_form_view` VALUES("38883", "13", "2016-09-24 03:07:14", "66.249.79.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("38884", "10", "2016-09-24 03:07:14", "66.249.79.104", "38");
INSERT INTO `wp_rg_form_view` VALUES("38885", "9", "2016-09-24 03:19:54", "75.154.236.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("38886", "3", "2016-09-24 04:28:36", "207.46.13.170", "26");
INSERT INTO `wp_rg_form_view` VALUES("38887", "13", "2016-09-24 04:28:38", "207.46.13.170", "4");
INSERT INTO `wp_rg_form_view` VALUES("38888", "10", "2016-09-24 04:28:38", "207.46.13.170", "12");
INSERT INTO `wp_rg_form_view` VALUES("38889", "3", "2016-09-24 05:15:05", "40.77.167.44", "18");
INSERT INTO `wp_rg_form_view` VALUES("38890", "13", "2016-09-24 05:15:05", "40.77.167.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("38891", "10", "2016-09-24 05:15:05", "40.77.167.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("38892", "3", "2016-09-24 06:11:46", "202.46.48.83", "89");
INSERT INTO `wp_rg_form_view` VALUES("38893", "13", "2016-09-24 06:11:46", "202.46.48.83", "14");
INSERT INTO `wp_rg_form_view` VALUES("38894", "10", "2016-09-24 06:11:47", "202.46.48.83", "44");
INSERT INTO `wp_rg_form_view` VALUES("38895", "3", "2016-09-24 07:38:26", "66.249.79.112", "19");
INSERT INTO `wp_rg_form_view` VALUES("38896", "13", "2016-09-24 07:38:27", "66.249.79.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("38897", "10", "2016-09-24 07:38:27", "66.249.79.112", "10");
INSERT INTO `wp_rg_form_view` VALUES("38898", "3", "2016-09-24 08:32:51", "66.249.79.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("38899", "13", "2016-09-24 08:32:51", "66.249.79.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("38900", "10", "2016-09-24 08:32:51", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("38901", "3", "2016-09-24 09:05:52", "142.4.215.116", "440");
INSERT INTO `wp_rg_form_view` VALUES("38902", "13", "2016-09-24 09:05:52", "142.4.215.116", "74");
INSERT INTO `wp_rg_form_view` VALUES("38903", "10", "2016-09-24 09:05:52", "142.4.215.116", "223");
INSERT INTO `wp_rg_form_view` VALUES("38904", "11", "2016-09-24 09:06:08", "142.4.215.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("38905", "2", "2016-09-24 09:06:12", "142.4.215.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("38906", "1", "2016-09-24 09:08:17", "142.4.215.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("38907", "3", "2016-09-24 10:11:56", "66.249.79.112", "24");
INSERT INTO `wp_rg_form_view` VALUES("38908", "13", "2016-09-24 10:11:56", "66.249.79.112", "4");
INSERT INTO `wp_rg_form_view` VALUES("38909", "10", "2016-09-24 10:11:56", "66.249.79.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("38910", "8", "2016-09-24 10:42:17", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("38911", "3", "2016-09-24 11:04:49", "217.69.133.229", "52");
INSERT INTO `wp_rg_form_view` VALUES("38912", "13", "2016-09-24 11:04:49", "217.69.133.229", "8");
INSERT INTO `wp_rg_form_view` VALUES("38913", "10", "2016-09-24 11:04:49", "217.69.133.229", "24");
INSERT INTO `wp_rg_form_view` VALUES("38914", "2", "2016-09-24 12:15:52", "202.46.52.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("38915", "3", "2016-09-24 12:15:52", "202.46.52.71", "38");
INSERT INTO `wp_rg_form_view` VALUES("38916", "13", "2016-09-24 12:15:52", "202.46.52.71", "7");
INSERT INTO `wp_rg_form_view` VALUES("38917", "10", "2016-09-24 12:15:52", "202.46.52.71", "27");
INSERT INTO `wp_rg_form_view` VALUES("38918", "3", "2016-09-24 13:05:04", "157.55.39.231", "13");
INSERT INTO `wp_rg_form_view` VALUES("38919", "13", "2016-09-24 13:05:05", "157.55.39.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("38920", "10", "2016-09-24 13:05:05", "157.55.39.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("38921", "3", "2016-09-24 15:20:30", "157.55.39.231", "26");
INSERT INTO `wp_rg_form_view` VALUES("38922", "13", "2016-09-24 15:20:30", "157.55.39.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("38923", "10", "2016-09-24 15:20:30", "157.55.39.231", "13");
INSERT INTO `wp_rg_form_view` VALUES("38924", "3", "2016-09-24 16:01:07", "64.114.223.11", "54");
INSERT INTO `wp_rg_form_view` VALUES("38925", "13", "2016-09-24 16:01:07", "64.114.223.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("38926", "10", "2016-09-24 16:01:07", "64.114.223.11", "27");
INSERT INTO `wp_rg_form_view` VALUES("38927", "1", "2016-09-24 16:48:43", "104.168.141.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("38928", "3", "2016-09-24 17:07:34", "157.55.39.231", "36");
INSERT INTO `wp_rg_form_view` VALUES("38929", "13", "2016-09-24 17:07:34", "157.55.39.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("38930", "10", "2016-09-24 17:07:34", "157.55.39.231", "18");
INSERT INTO `wp_rg_form_view` VALUES("38931", "11", "2016-09-24 18:30:54", "40.77.167.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("38932", "3", "2016-09-24 18:30:55", "40.77.167.32", "29");
INSERT INTO `wp_rg_form_view` VALUES("38933", "13", "2016-09-24 18:30:55", "40.77.167.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("38934", "10", "2016-09-24 18:30:55", "40.77.167.32", "12");
INSERT INTO `wp_rg_form_view` VALUES("38935", "3", "2016-09-24 19:02:17", "68.180.230.168", "54");
INSERT INTO `wp_rg_form_view` VALUES("38936", "13", "2016-09-24 19:02:17", "68.180.230.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("38937", "10", "2016-09-24 19:02:17", "68.180.230.168", "32");
INSERT INTO `wp_rg_form_view` VALUES("38938", "3", "2016-09-24 20:04:02", "207.46.13.108", "45");
INSERT INTO `wp_rg_form_view` VALUES("38939", "13", "2016-09-24 20:04:02", "207.46.13.108", "7");
INSERT INTO `wp_rg_form_view` VALUES("38940", "10", "2016-09-24 20:04:02", "207.46.13.108", "22");
INSERT INTO `wp_rg_form_view` VALUES("38941", "2", "2016-09-24 20:30:41", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("38942", "3", "2016-09-24 21:05:55", "77.75.78.162", "88");
INSERT INTO `wp_rg_form_view` VALUES("38943", "13", "2016-09-24 21:05:55", "77.75.78.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("38944", "10", "2016-09-24 21:05:55", "77.75.78.162", "44");
INSERT INTO `wp_rg_form_view` VALUES("38945", "3", "2016-09-24 22:03:24", "69.58.178.57", "74");
INSERT INTO `wp_rg_form_view` VALUES("38946", "13", "2016-09-24 22:03:24", "69.58.178.57", "12");
INSERT INTO `wp_rg_form_view` VALUES("38947", "10", "2016-09-24 22:03:24", "69.58.178.57", "36");
INSERT INTO `wp_rg_form_view` VALUES("38948", "11", "2016-09-24 22:03:42", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("38949", "2", "2016-09-24 22:03:45", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("38950", "6", "2016-09-24 22:16:42", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("38951", "3", "2016-09-24 23:17:25", "157.55.39.251", "26");
INSERT INTO `wp_rg_form_view` VALUES("38952", "13", "2016-09-24 23:17:28", "157.55.39.251", "4");
INSERT INTO `wp_rg_form_view` VALUES("38953", "10", "2016-09-24 23:17:28", "157.55.39.251", "12");
INSERT INTO `wp_rg_form_view` VALUES("38954", "8", "2016-09-25 00:09:56", "70.67.234.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("38955", "3", "2016-09-25 00:09:56", "70.67.234.96", "24");
INSERT INTO `wp_rg_form_view` VALUES("38956", "13", "2016-09-25 00:09:56", "70.67.234.96", "4");
INSERT INTO `wp_rg_form_view` VALUES("38957", "10", "2016-09-25 00:09:57", "70.67.234.96", "12");
INSERT INTO `wp_rg_form_view` VALUES("38958", "3", "2016-09-25 01:13:32", "66.249.79.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("38959", "13", "2016-09-25 01:13:32", "66.249.79.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("38960", "10", "2016-09-25 01:13:32", "66.249.79.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("38961", "3", "2016-09-25 02:39:34", "68.180.230.168", "19");
INSERT INTO `wp_rg_form_view` VALUES("38962", "13", "2016-09-25 02:39:36", "68.180.230.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("38963", "10", "2016-09-25 02:39:36", "68.180.230.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("38964", "10", "2016-09-25 03:00:12", "194.187.170.124", "7");
INSERT INTO `wp_rg_form_view` VALUES("38965", "3", "2016-09-25 03:15:33", "194.187.170.124", "12");
INSERT INTO `wp_rg_form_view` VALUES("38966", "13", "2016-09-25 03:15:33", "194.187.170.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("38967", "3", "2016-09-25 04:17:05", "194.187.170.124", "26");
INSERT INTO `wp_rg_form_view` VALUES("38968", "13", "2016-09-25 04:37:38", "194.187.170.124", "4");
INSERT INTO `wp_rg_form_view` VALUES("38969", "10", "2016-09-25 04:37:38", "194.187.170.124", "12");
INSERT INTO `wp_rg_form_view` VALUES("38970", "3", "2016-09-25 05:02:48", "194.187.170.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("38971", "3", "2016-09-25 06:38:25", "66.249.79.104", "18");
INSERT INTO `wp_rg_form_view` VALUES("38972", "13", "2016-09-25 06:38:26", "66.249.79.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("38973", "10", "2016-09-25 06:38:26", "66.249.79.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("38974", "3", "2016-09-25 08:22:21", "68.180.230.168", "19");
INSERT INTO `wp_rg_form_view` VALUES("38975", "13", "2016-09-25 08:22:23", "68.180.230.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("38976", "10", "2016-09-25 08:22:23", "68.180.230.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("38977", "3", "2016-09-25 09:35:42", "68.180.230.168", "13");
INSERT INTO `wp_rg_form_view` VALUES("38978", "13", "2016-09-25 09:35:42", "68.180.230.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("38979", "10", "2016-09-25 09:35:42", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("38980", "3", "2016-09-25 10:30:37", "1.125.48.174", "51");
INSERT INTO `wp_rg_form_view` VALUES("38981", "13", "2016-09-25 10:30:38", "1.125.48.174", "8");
INSERT INTO `wp_rg_form_view` VALUES("38982", "10", "2016-09-25 10:30:38", "1.125.48.174", "26");
INSERT INTO `wp_rg_form_view` VALUES("38983", "3", "2016-09-25 11:37:27", "77.75.77.17", "7");
INSERT INTO `wp_rg_form_view` VALUES("38984", "13", "2016-09-25 11:37:28", "77.75.77.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("38985", "10", "2016-09-25 11:37:28", "77.75.77.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("38986", "3", "2016-09-25 12:13:15", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("38987", "13", "2016-09-25 12:13:16", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("38988", "10", "2016-09-25 12:13:16", "66.249.79.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("38989", "3", "2016-09-25 13:12:45", "207.46.13.109", "66");
INSERT INTO `wp_rg_form_view` VALUES("38990", "13", "2016-09-25 13:12:47", "207.46.13.109", "10");
INSERT INTO `wp_rg_form_view` VALUES("38991", "10", "2016-09-25 13:12:47", "207.46.13.109", "30");
INSERT INTO `wp_rg_form_view` VALUES("38992", "3", "2016-09-25 14:21:31", "157.55.39.53", "37");
INSERT INTO `wp_rg_form_view` VALUES("38993", "13", "2016-09-25 14:21:32", "157.55.39.53", "6");
INSERT INTO `wp_rg_form_view` VALUES("38994", "10", "2016-09-25 14:21:32", "157.55.39.53", "18");
INSERT INTO `wp_rg_form_view` VALUES("38995", "3", "2016-09-25 15:04:52", "40.77.167.52", "19");
INSERT INTO `wp_rg_form_view` VALUES("38996", "13", "2016-09-25 15:04:53", "40.77.167.52", "3");
INSERT INTO `wp_rg_form_view` VALUES("38997", "10", "2016-09-25 15:04:53", "40.77.167.52", "9");
INSERT INTO `wp_rg_form_view` VALUES("38998", "3", "2016-09-25 16:04:06", "202.46.53.196", "18");
INSERT INTO `wp_rg_form_view` VALUES("38999", "13", "2016-09-25 16:04:06", "202.46.53.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("39000", "10", "2016-09-25 16:04:06", "202.46.53.196", "9");
INSERT INTO `wp_rg_form_view` VALUES("39001", "3", "2016-09-25 17:01:16", "207.46.13.109", "25");
INSERT INTO `wp_rg_form_view` VALUES("39002", "13", "2016-09-25 17:01:16", "207.46.13.109", "4");
INSERT INTO `wp_rg_form_view` VALUES("39003", "10", "2016-09-25 17:01:16", "207.46.13.109", "12");
INSERT INTO `wp_rg_form_view` VALUES("39004", "3", "2016-09-25 18:00:01", "156.57.130.255", "30");
INSERT INTO `wp_rg_form_view` VALUES("39005", "13", "2016-09-25 18:00:02", "156.57.130.255", "5");
INSERT INTO `wp_rg_form_view` VALUES("39006", "10", "2016-09-25 18:00:02", "156.57.130.255", "15");
INSERT INTO `wp_rg_form_view` VALUES("39007", "1", "2016-09-25 19:12:13", "198.46.227.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("39008", "3", "2016-09-25 19:12:14", "198.46.227.69", "20");
INSERT INTO `wp_rg_form_view` VALUES("39009", "13", "2016-09-25 19:12:16", "198.46.227.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("39010", "10", "2016-09-25 19:12:16", "198.46.227.69", "12");
INSERT INTO `wp_rg_form_view` VALUES("39011", "3", "2016-09-25 20:24:44", "96.50.8.162", "74");
INSERT INTO `wp_rg_form_view` VALUES("39012", "13", "2016-09-25 20:24:46", "96.50.8.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("39013", "10", "2016-09-25 20:24:46", "96.50.8.162", "36");
INSERT INTO `wp_rg_form_view` VALUES("39014", "1", "2016-09-25 20:38:46", "24.69.17.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("39015", "1", "2016-09-25 21:18:15", "24.69.17.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("39016", "3", "2016-09-25 21:18:16", "24.69.17.166", "349");
INSERT INTO `wp_rg_form_view` VALUES("39017", "13", "2016-09-25 21:18:16", "24.69.17.166", "55");
INSERT INTO `wp_rg_form_view` VALUES("39018", "10", "2016-09-25 21:18:16", "24.69.17.166", "162");
INSERT INTO `wp_rg_form_view` VALUES("39019", "8", "2016-09-25 21:54:53", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("39020", "9", "2016-09-25 21:55:01", "157.55.39.53", "3");
INSERT INTO `wp_rg_form_view` VALUES("39021", "3", "2016-09-25 22:07:00", "24.108.184.58", "32");
INSERT INTO `wp_rg_form_view` VALUES("39022", "13", "2016-09-25 22:07:00", "24.108.184.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("39023", "10", "2016-09-25 22:07:00", "24.108.184.58", "15");
INSERT INTO `wp_rg_form_view` VALUES("39024", "3", "2016-09-25 23:00:15", "202.46.54.196", "44");
INSERT INTO `wp_rg_form_view` VALUES("39025", "13", "2016-09-25 23:00:16", "202.46.54.196", "9");
INSERT INTO `wp_rg_form_view` VALUES("39026", "10", "2016-09-25 23:00:16", "202.46.54.196", "21");
INSERT INTO `wp_rg_form_view` VALUES("39027", "12", "2016-09-25 23:37:20", "134.249.65.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("39028", "12", "2016-09-25 23:37:20", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("39029", "3", "2016-09-26 00:07:14", "202.46.48.205", "30");
INSERT INTO `wp_rg_form_view` VALUES("39030", "13", "2016-09-26 00:07:14", "202.46.48.205", "6");
INSERT INTO `wp_rg_form_view` VALUES("39031", "10", "2016-09-26 00:07:14", "202.46.48.205", "14");
INSERT INTO `wp_rg_form_view` VALUES("39032", "3", "2016-09-26 01:09:39", "157.55.39.207", "144");
INSERT INTO `wp_rg_form_view` VALUES("39033", "13", "2016-09-26 01:09:40", "157.55.39.207", "23");
INSERT INTO `wp_rg_form_view` VALUES("39034", "10", "2016-09-26 01:09:40", "157.55.39.207", "75");
INSERT INTO `wp_rg_form_view` VALUES("39035", "6", "2016-09-26 01:14:06", "40.77.167.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("39036", "5", "2016-09-26 01:14:16", "40.77.167.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("39037", "3", "2016-09-26 02:50:43", "154.20.41.63", "24");
INSERT INTO `wp_rg_form_view` VALUES("39038", "13", "2016-09-26 02:50:45", "154.20.41.63", "4");
INSERT INTO `wp_rg_form_view` VALUES("39039", "10", "2016-09-26 02:50:45", "154.20.41.63", "12");
INSERT INTO `wp_rg_form_view` VALUES("39040", "3", "2016-09-26 03:03:54", "142.104.200.130", "24");
INSERT INTO `wp_rg_form_view` VALUES("39041", "13", "2016-09-26 03:03:54", "142.104.200.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("39042", "10", "2016-09-26 03:03:54", "142.104.200.130", "12");
INSERT INTO `wp_rg_form_view` VALUES("39043", "3", "2016-09-26 04:28:27", "202.46.54.187", "13");
INSERT INTO `wp_rg_form_view` VALUES("39044", "13", "2016-09-26 04:28:27", "202.46.54.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("39045", "10", "2016-09-26 04:28:27", "202.46.54.187", "6");
INSERT INTO `wp_rg_form_view` VALUES("39046", "3", "2016-09-26 05:01:57", "202.46.54.146", "13");
INSERT INTO `wp_rg_form_view` VALUES("39047", "13", "2016-09-26 05:01:58", "202.46.54.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("39048", "10", "2016-09-26 05:01:58", "202.46.54.146", "6");
INSERT INTO `wp_rg_form_view` VALUES("39049", "13", "2016-09-26 06:02:14", "157.55.39.53", "6");
INSERT INTO `wp_rg_form_view` VALUES("39050", "3", "2016-09-26 06:02:14", "157.55.39.53", "30");
INSERT INTO `wp_rg_form_view` VALUES("39051", "10", "2016-09-26 06:02:14", "157.55.39.53", "15");
INSERT INTO `wp_rg_form_view` VALUES("39052", "11", "2016-09-26 06:16:04", "207.46.13.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("39053", "3", "2016-09-26 07:30:56", "79.141.160.52", "27");
INSERT INTO `wp_rg_form_view` VALUES("39054", "13", "2016-09-26 07:30:57", "79.141.160.52", "5");
INSERT INTO `wp_rg_form_view` VALUES("39055", "10", "2016-09-26 07:30:57", "79.141.160.52", "15");
INSERT INTO `wp_rg_form_view` VALUES("39056", "3", "2016-09-26 08:05:44", "66.249.79.104", "18");
INSERT INTO `wp_rg_form_view` VALUES("39057", "13", "2016-09-26 08:05:45", "66.249.79.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("39058", "10", "2016-09-26 08:05:45", "66.249.79.104", "17");
INSERT INTO `wp_rg_form_view` VALUES("39059", "3", "2016-09-26 09:04:14", "68.180.230.168", "27");
INSERT INTO `wp_rg_form_view` VALUES("39060", "13", "2016-09-26 09:04:14", "68.180.230.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("39061", "10", "2016-09-26 09:04:15", "68.180.230.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("39062", "3", "2016-09-26 10:44:49", "202.46.54.11", "6");
INSERT INTO `wp_rg_form_view` VALUES("39063", "13", "2016-09-26 10:44:50", "202.46.54.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("39064", "10", "2016-09-26 10:44:50", "202.46.54.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("39065", "3", "2016-09-26 11:17:29", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("39066", "13", "2016-09-26 11:17:30", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("39067", "10", "2016-09-26 11:17:30", "66.249.79.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("39068", "3", "2016-09-26 13:11:31", "77.75.76.164", "751");
INSERT INTO `wp_rg_form_view` VALUES("39069", "13", "2016-09-26 13:11:34", "77.75.76.164", "125");
INSERT INTO `wp_rg_form_view` VALUES("39070", "10", "2016-09-26 13:11:34", "77.75.76.164", "372");
INSERT INTO `wp_rg_form_view` VALUES("39071", "11", "2016-09-26 13:53:52", "167.114.156.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("39072", "2", "2016-09-26 13:53:54", "167.114.156.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("39073", "1", "2016-09-26 13:55:39", "167.114.156.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("39074", "3", "2016-09-26 14:00:00", "167.114.156.198", "2335");
INSERT INTO `wp_rg_form_view` VALUES("39075", "13", "2016-09-26 14:00:00", "167.114.156.198", "378");
INSERT INTO `wp_rg_form_view` VALUES("39076", "10", "2016-09-26 14:00:01", "167.114.156.198", "1063");
INSERT INTO `wp_rg_form_view` VALUES("39077", "5", "2016-09-26 15:21:14", "77.75.76.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("39078", "3", "2016-09-26 15:21:15", "77.75.76.172", "19");
INSERT INTO `wp_rg_form_view` VALUES("39079", "13", "2016-09-26 15:21:16", "77.75.76.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("39080", "10", "2016-09-26 15:21:16", "77.75.76.172", "9");
INSERT INTO `wp_rg_form_view` VALUES("39081", "3", "2016-09-26 16:23:47", "124.206.47.3", "62");
INSERT INTO `wp_rg_form_view` VALUES("39082", "13", "2016-09-26 16:23:47", "124.206.47.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("39083", "10", "2016-09-26 16:23:47", "124.206.47.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("39084", "1", "2016-09-26 17:06:52", "223.255.17.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("39085", "3", "2016-09-26 17:06:52", "223.255.17.9", "104");
INSERT INTO `wp_rg_form_view` VALUES("39086", "13", "2016-09-26 17:06:52", "223.255.17.9", "16");
INSERT INTO `wp_rg_form_view` VALUES("39087", "10", "2016-09-26 17:06:52", "223.255.17.9", "50");
INSERT INTO `wp_rg_form_view` VALUES("39088", "12", "2016-09-26 17:25:18", "134.249.65.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("39089", "3", "2016-09-26 18:01:59", "194.187.170.110", "39");
INSERT INTO `wp_rg_form_view` VALUES("39090", "13", "2016-09-26 18:36:29", "24.114.38.128", "7");
INSERT INTO `wp_rg_form_view` VALUES("39091", "10", "2016-09-26 18:36:29", "24.114.38.128", "21");
INSERT INTO `wp_rg_form_view` VALUES("39092", "3", "2016-09-26 19:02:45", "194.187.170.110", "33");
INSERT INTO `wp_rg_form_view` VALUES("39093", "13", "2016-09-26 19:16:13", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("39094", "10", "2016-09-26 19:16:13", "66.249.79.104", "13");
INSERT INTO `wp_rg_form_view` VALUES("39095", "10", "2016-09-26 20:00:00", "66.249.79.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("39096", "3", "2016-09-26 20:00:00", "66.249.79.108", "41");
INSERT INTO `wp_rg_form_view` VALUES("39097", "13", "2016-09-26 20:06:48", "202.46.54.196", "6");
INSERT INTO `wp_rg_form_view` VALUES("39098", "8", "2016-09-26 20:47:01", "66.249.79.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("39099", "3", "2016-09-26 21:13:47", "202.46.53.67", "6");
INSERT INTO `wp_rg_form_view` VALUES("39100", "13", "2016-09-26 21:13:47", "202.46.53.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("39101", "10", "2016-09-26 21:13:47", "202.46.53.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("39102", "3", "2016-09-26 22:04:35", "24.69.2.165", "60");
INSERT INTO `wp_rg_form_view` VALUES("39103", "13", "2016-09-26 22:04:37", "24.69.2.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("39104", "10", "2016-09-26 22:04:37", "24.69.2.165", "30");
INSERT INTO `wp_rg_form_view` VALUES("39105", "3", "2016-09-26 23:18:01", "70.70.252.145", "60");
INSERT INTO `wp_rg_form_view` VALUES("39106", "13", "2016-09-26 23:18:02", "70.70.252.145", "10");
INSERT INTO `wp_rg_form_view` VALUES("39107", "10", "2016-09-26 23:18:02", "70.70.252.145", "30");
INSERT INTO `wp_rg_form_view` VALUES("39108", "3", "2016-09-27 00:10:53", "128.199.104.69", "87");
INSERT INTO `wp_rg_form_view` VALUES("39109", "13", "2016-09-27 00:10:53", "128.199.104.69", "14");
INSERT INTO `wp_rg_form_view` VALUES("39110", "10", "2016-09-27 00:10:53", "128.199.104.69", "43");
INSERT INTO `wp_rg_form_view` VALUES("39111", "3", "2016-09-27 01:09:08", "70.67.222.223", "42");
INSERT INTO `wp_rg_form_view` VALUES("39112", "13", "2016-09-27 01:09:08", "70.67.222.223", "7");
INSERT INTO `wp_rg_form_view` VALUES("39113", "10", "2016-09-27 01:09:08", "70.67.222.223", "21");
INSERT INTO `wp_rg_form_view` VALUES("39114", "3", "2016-09-27 02:41:08", "24.108.25.61", "37");
INSERT INTO `wp_rg_form_view` VALUES("39115", "13", "2016-09-27 02:41:09", "24.108.25.61", "6");
INSERT INTO `wp_rg_form_view` VALUES("39116", "10", "2016-09-27 02:41:09", "24.108.25.61", "18");
INSERT INTO `wp_rg_form_view` VALUES("39117", "10", "2016-09-27 03:04:11", "68.180.230.168", "16");
INSERT INTO `wp_rg_form_view` VALUES("39118", "3", "2016-09-27 03:10:12", "66.249.79.112", "31");
INSERT INTO `wp_rg_form_view` VALUES("39119", "13", "2016-09-27 03:10:13", "66.249.79.112", "5");
INSERT INTO `wp_rg_form_view` VALUES("39120", "3", "2016-09-27 04:37:01", "154.20.232.135", "24");
INSERT INTO `wp_rg_form_view` VALUES("39121", "13", "2016-09-27 04:37:02", "154.20.232.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("39122", "10", "2016-09-27 04:37:02", "154.20.232.135", "12");
INSERT INTO `wp_rg_form_view` VALUES("39123", "3", "2016-09-27 05:39:56", "202.46.48.149", "14");
INSERT INTO `wp_rg_form_view` VALUES("39124", "13", "2016-09-27 05:39:58", "202.46.48.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("39125", "10", "2016-09-27 05:39:58", "202.46.48.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("39126", "3", "2016-09-27 06:01:09", "75.156.99.163", "25");
INSERT INTO `wp_rg_form_view` VALUES("39127", "13", "2016-09-27 06:01:09", "75.156.99.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("39128", "10", "2016-09-27 06:01:09", "75.156.99.163", "12");
INSERT INTO `wp_rg_form_view` VALUES("39129", "3", "2016-09-27 07:01:00", "68.180.230.168", "24");
INSERT INTO `wp_rg_form_view` VALUES("39130", "13", "2016-09-27 07:01:00", "68.180.230.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("39131", "10", "2016-09-27 07:01:00", "68.180.230.168", "12");
INSERT INTO `wp_rg_form_view` VALUES("39132", "3", "2016-09-27 08:27:21", "202.46.57.17", "26");
INSERT INTO `wp_rg_form_view` VALUES("39133", "13", "2016-09-27 08:27:21", "202.46.57.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("39134", "10", "2016-09-27 08:27:21", "202.46.57.17", "13");
INSERT INTO `wp_rg_form_view` VALUES("39135", "3", "2016-09-27 09:08:09", "77.75.79.54", "30");
INSERT INTO `wp_rg_form_view` VALUES("39136", "13", "2016-09-27 09:08:09", "77.75.79.54", "6");
INSERT INTO `wp_rg_form_view` VALUES("39137", "10", "2016-09-27 09:08:09", "77.75.79.54", "15");
INSERT INTO `wp_rg_form_view` VALUES("39138", "2", "2016-09-27 09:35:49", "202.46.50.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("39139", "3", "2016-09-27 10:08:46", "77.75.77.11", "19");
INSERT INTO `wp_rg_form_view` VALUES("39140", "13", "2016-09-27 10:08:47", "77.75.77.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("39141", "10", "2016-09-27 10:08:47", "77.75.77.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("39142", "3", "2016-09-27 11:31:10", "207.46.13.122", "18");
INSERT INTO `wp_rg_form_view` VALUES("39143", "13", "2016-09-27 11:31:11", "207.46.13.122", "3");
INSERT INTO `wp_rg_form_view` VALUES("39144", "10", "2016-09-27 11:31:11", "207.46.13.122", "9");
INSERT INTO `wp_rg_form_view` VALUES("39145", "3", "2016-09-27 12:49:51", "202.46.52.145", "13");
INSERT INTO `wp_rg_form_view` VALUES("39146", "13", "2016-09-27 12:49:52", "202.46.52.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("39147", "10", "2016-09-27 12:49:52", "202.46.52.145", "6");
INSERT INTO `wp_rg_form_view` VALUES("39148", "3", "2016-09-27 13:17:03", "208.54.86.156", "18");
INSERT INTO `wp_rg_form_view` VALUES("39149", "13", "2016-09-27 13:17:03", "208.54.86.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("39150", "10", "2016-09-27 13:17:03", "208.54.86.156", "9");
INSERT INTO `wp_rg_form_view` VALUES("39151", "3", "2016-09-27 14:42:11", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("39152", "13", "2016-09-27 14:42:12", "66.249.79.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("39153", "10", "2016-09-27 14:42:12", "66.249.79.108", "3");
INSERT INTO `wp_rg_form_view` VALUES("39154", "3", "2016-09-27 15:07:52", "202.46.52.16", "51");
INSERT INTO `wp_rg_form_view` VALUES("39155", "13", "2016-09-27 15:07:52", "202.46.52.16", "8");
INSERT INTO `wp_rg_form_view` VALUES("39156", "10", "2016-09-27 15:07:52", "202.46.52.16", "24");
INSERT INTO `wp_rg_form_view` VALUES("39157", "3", "2016-09-27 16:01:10", "77.75.79.36", "25");
INSERT INTO `wp_rg_form_view` VALUES("39158", "13", "2016-09-27 16:01:11", "77.75.79.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("39159", "10", "2016-09-27 16:01:11", "77.75.79.36", "12");
INSERT INTO `wp_rg_form_view` VALUES("39160", "3", "2016-09-27 17:41:53", "202.46.56.15", "25");
INSERT INTO `wp_rg_form_view` VALUES("39161", "13", "2016-09-27 17:41:55", "202.46.56.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("39162", "10", "2016-09-27 17:41:55", "202.46.56.15", "12");
INSERT INTO `wp_rg_form_view` VALUES("39163", "3", "2016-09-27 19:58:14", "154.5.180.167", "12");
INSERT INTO `wp_rg_form_view` VALUES("39164", "13", "2016-09-27 19:58:16", "154.5.180.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("39165", "10", "2016-09-27 19:58:16", "154.5.180.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("39166", "3", "2016-09-27 20:05:43", "207.46.13.38", "103");
INSERT INTO `wp_rg_form_view` VALUES("39167", "13", "2016-09-27 20:05:44", "207.46.13.38", "19");
INSERT INTO `wp_rg_form_view` VALUES("39168", "10", "2016-09-27 20:05:44", "207.46.13.38", "51");
INSERT INTO `wp_rg_form_view` VALUES("39169", "1", "2016-09-27 20:28:16", "23.254.20.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("39170", "3", "2016-09-27 21:00:29", "108.181.252.145", "74");
INSERT INTO `wp_rg_form_view` VALUES("39171", "13", "2016-09-27 21:00:29", "108.181.252.145", "12");
INSERT INTO `wp_rg_form_view` VALUES("39172", "10", "2016-09-27 21:00:29", "108.181.252.145", "36");
INSERT INTO `wp_rg_form_view` VALUES("39173", "2", "2016-09-27 22:20:20", "202.46.51.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("39174", "3", "2016-09-27 22:20:23", "202.46.51.184", "50");
INSERT INTO `wp_rg_form_view` VALUES("39175", "13", "2016-09-27 22:20:23", "202.46.51.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("39176", "10", "2016-09-27 22:20:23", "202.46.51.184", "24");
INSERT INTO `wp_rg_form_view` VALUES("39177", "3", "2016-09-28 00:15:44", "207.46.13.38", "38");
INSERT INTO `wp_rg_form_view` VALUES("39178", "13", "2016-09-28 00:15:45", "207.46.13.38", "7");
INSERT INTO `wp_rg_form_view` VALUES("39179", "10", "2016-09-28 00:15:45", "207.46.13.38", "18");
INSERT INTO `wp_rg_form_view` VALUES("39180", "10", "2016-09-28 01:03:39", "184.66.158.73", "92");
INSERT INTO `wp_rg_form_view` VALUES("39181", "3", "2016-09-28 01:03:39", "184.66.158.73", "183");
INSERT INTO `wp_rg_form_view` VALUES("39182", "13", "2016-09-28 01:03:39", "184.66.158.73", "31");
INSERT INTO `wp_rg_form_view` VALUES("39183", "5", "2016-09-28 01:15:16", "77.75.76.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("39184", "11", "2016-09-28 01:42:01", "104.131.32.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("39185", "2", "2016-09-28 01:42:01", "104.131.32.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("39186", "3", "2016-09-28 02:06:57", "24.69.154.167", "99");
INSERT INTO `wp_rg_form_view` VALUES("39187", "13", "2016-09-28 02:06:58", "24.69.154.167", "16");
INSERT INTO `wp_rg_form_view` VALUES("39188", "10", "2016-09-28 02:06:58", "24.69.154.167", "53");
INSERT INTO `wp_rg_form_view` VALUES("39189", "3", "2016-09-28 03:09:50", "77.75.78.160", "603");
INSERT INTO `wp_rg_form_view` VALUES("39190", "13", "2016-09-28 03:09:50", "77.75.78.160", "97");
INSERT INTO `wp_rg_form_view` VALUES("39191", "10", "2016-09-28 03:09:50", "77.75.78.160", "298");
INSERT INTO `wp_rg_form_view` VALUES("39192", "9", "2016-09-28 03:23:33", "207.46.13.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("39193", "12", "2016-09-28 03:24:43", "157.55.39.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("39194", "7", "2016-09-28 03:24:48", "157.55.39.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("39195", "8", "2016-09-28 03:25:48", "207.46.13.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("39196", "3", "2016-09-28 04:18:11", "220.181.108.167", "12");
INSERT INTO `wp_rg_form_view` VALUES("39197", "13", "2016-09-28 04:18:12", "220.181.108.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("39198", "10", "2016-09-28 04:18:12", "220.181.108.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("39199", "3", "2016-09-28 05:20:26", "154.5.71.107", "18");
INSERT INTO `wp_rg_form_view` VALUES("39200", "13", "2016-09-28 05:20:26", "154.5.71.107", "3");
INSERT INTO `wp_rg_form_view` VALUES("39201", "10", "2016-09-28 05:20:26", "154.5.71.107", "9");
INSERT INTO `wp_rg_form_view` VALUES("39202", "3", "2016-09-28 06:38:57", "216.232.155.173", "18");
INSERT INTO `wp_rg_form_view` VALUES("39203", "13", "2016-09-28 06:39:00", "216.232.155.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("39204", "10", "2016-09-28 06:39:00", "216.232.155.173", "9");
INSERT INTO `wp_rg_form_view` VALUES("39205", "3", "2016-09-28 07:26:15", "68.180.230.168", "12");
INSERT INTO `wp_rg_form_view` VALUES("39206", "13", "2016-09-28 07:26:15", "68.180.230.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("39207", "10", "2016-09-28 07:26:15", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("39208", "13", "2016-09-28 08:01:34", "77.75.79.72", "5");
INSERT INTO `wp_rg_form_view` VALUES("39209", "10", "2016-09-28 08:01:34", "77.75.79.72", "19");
INSERT INTO `wp_rg_form_view` VALUES("39210", "3", "2016-09-28 08:01:35", "77.75.79.72", "27");
INSERT INTO `wp_rg_form_view` VALUES("39211", "3", "2016-09-28 09:44:01", "77.75.77.119", "20");
INSERT INTO `wp_rg_form_view` VALUES("39212", "13", "2016-09-28 09:44:02", "77.75.77.119", "3");
INSERT INTO `wp_rg_form_view` VALUES("39213", "10", "2016-09-28 09:44:02", "77.75.77.119", "9");
INSERT INTO `wp_rg_form_view` VALUES("39214", "3", "2016-09-28 10:44:40", "109.169.29.30", "206");
INSERT INTO `wp_rg_form_view` VALUES("39215", "13", "2016-09-28 10:44:40", "109.169.29.30", "35");
INSERT INTO `wp_rg_form_view` VALUES("39216", "10", "2016-09-28 10:44:40", "109.169.29.30", "99");
INSERT INTO `wp_rg_form_view` VALUES("39217", "2", "2016-09-28 10:46:00", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("39218", "11", "2016-09-28 10:46:33", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("39219", "10", "2016-09-28 11:10:07", "199.59.148.209", "13");
INSERT INTO `wp_rg_form_view` VALUES("39220", "3", "2016-09-28 11:10:07", "199.59.148.209", "25");
INSERT INTO `wp_rg_form_view` VALUES("39221", "13", "2016-09-28 11:10:07", "199.59.148.209", "4");
INSERT INTO `wp_rg_form_view` VALUES("39222", "3", "2016-09-28 12:53:37", "202.46.50.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("39223", "13", "2016-09-28 12:53:38", "202.46.50.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("39224", "10", "2016-09-28 12:53:38", "202.46.50.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("39225", "3", "2016-09-28 14:00:39", "202.46.56.110", "6");
INSERT INTO `wp_rg_form_view` VALUES("39226", "13", "2016-09-28 14:00:44", "202.46.56.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("39227", "10", "2016-09-28 14:00:44", "202.46.56.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("39228", "3", "2016-09-28 15:07:36", "202.46.51.37", "44");
INSERT INTO `wp_rg_form_view` VALUES("39229", "13", "2016-09-28 15:07:36", "202.46.51.37", "7");
INSERT INTO `wp_rg_form_view` VALUES("39230", "10", "2016-09-28 15:07:36", "202.46.51.37", "21");
INSERT INTO `wp_rg_form_view` VALUES("39231", "3", "2016-09-28 16:12:01", "96.50.29.134", "94");
INSERT INTO `wp_rg_form_view` VALUES("39232", "13", "2016-09-28 16:12:01", "96.50.29.134", "16");
INSERT INTO `wp_rg_form_view` VALUES("39233", "10", "2016-09-28 16:12:01", "96.50.29.134", "46");
INSERT INTO `wp_rg_form_view` VALUES("39234", "3", "2016-09-28 17:39:10", "24.68.132.30", "18");
INSERT INTO `wp_rg_form_view` VALUES("39235", "13", "2016-09-28 17:39:11", "24.68.132.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("39236", "10", "2016-09-28 17:39:12", "24.68.132.30", "9");
INSERT INTO `wp_rg_form_view` VALUES("39237", "6", "2016-09-28 18:05:49", "202.46.55.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("39238", "3", "2016-09-28 18:05:49", "202.46.55.157", "128");
INSERT INTO `wp_rg_form_view` VALUES("39239", "13", "2016-09-28 18:05:50", "202.46.55.157", "21");
INSERT INTO `wp_rg_form_view` VALUES("39240", "10", "2016-09-28 18:05:50", "202.46.55.157", "63");
INSERT INTO `wp_rg_form_view` VALUES("39241", "11", "2016-09-28 18:39:37", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("39242", "13", "2016-09-28 19:10:31", "164.132.161.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("39243", "3", "2016-09-28 19:31:54", "157.55.39.180", "25");
INSERT INTO `wp_rg_form_view` VALUES("39244", "10", "2016-09-28 19:31:54", "157.55.39.180", "17");
INSERT INTO `wp_rg_form_view` VALUES("39245", "1", "2016-09-28 19:47:08", "199.229.234.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("39246", "3", "2016-09-28 20:00:25", "194.187.170.125", "27");
INSERT INTO `wp_rg_form_view` VALUES("39247", "13", "2016-09-28 20:16:29", "184.71.14.182", "5");
INSERT INTO `wp_rg_form_view` VALUES("39248", "10", "2016-09-28 20:16:29", "184.71.14.182", "12");
INSERT INTO `wp_rg_form_view` VALUES("39249", "3", "2016-09-28 21:07:16", "69.30.198.202", "182");
INSERT INTO `wp_rg_form_view` VALUES("39250", "13", "2016-09-28 21:07:16", "69.30.198.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("39251", "10", "2016-09-28 21:07:16", "69.30.198.202", "85");
INSERT INTO `wp_rg_form_view` VALUES("39252", "3", "2016-09-28 22:00:00", "192.241.184.243", "2716");
INSERT INTO `wp_rg_form_view` VALUES("39253", "13", "2016-09-28 22:00:00", "192.241.184.243", "447");
INSERT INTO `wp_rg_form_view` VALUES("39254", "10", "2016-09-28 22:00:01", "192.241.184.243", "1339");
INSERT INTO `wp_rg_form_view` VALUES("39255", "1", "2016-09-28 22:02:50", "192.241.184.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("39256", "11", "2016-09-28 22:03:14", "192.241.184.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("39257", "6", "2016-09-28 22:21:29", "192.241.184.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("39258", "9", "2016-09-28 22:30:05", "192.241.184.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("39259", "3", "2016-09-28 23:00:20", "192.241.184.243", "979");
INSERT INTO `wp_rg_form_view` VALUES("39260", "13", "2016-09-28 23:00:21", "192.241.184.243", "163");
INSERT INTO `wp_rg_form_view` VALUES("39261", "10", "2016-09-28 23:00:21", "192.241.184.243", "495");
INSERT INTO `wp_rg_form_view` VALUES("39262", "2", "2016-09-28 23:07:29", "192.241.184.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("39263", "3", "2016-09-29 00:06:37", "68.180.230.168", "36");
INSERT INTO `wp_rg_form_view` VALUES("39264", "13", "2016-09-29 00:06:38", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("39265", "10", "2016-09-29 00:06:39", "68.180.230.168", "18");
INSERT INTO `wp_rg_form_view` VALUES("39266", "3", "2016-09-29 01:23:03", "207.6.237.211", "94");
INSERT INTO `wp_rg_form_view` VALUES("39267", "13", "2016-09-29 01:23:03", "207.6.237.211", "17");
INSERT INTO `wp_rg_form_view` VALUES("39268", "10", "2016-09-29 01:23:03", "207.6.237.211", "39");
INSERT INTO `wp_rg_form_view` VALUES("39269", "3", "2016-09-29 03:10:46", "202.46.56.193", "12");
INSERT INTO `wp_rg_form_view` VALUES("39270", "13", "2016-09-29 03:10:46", "202.46.56.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("39271", "10", "2016-09-29 03:10:47", "202.46.56.193", "6");
INSERT INTO `wp_rg_form_view` VALUES("39272", "3", "2016-09-29 04:36:39", "77.75.79.36", "18");
INSERT INTO `wp_rg_form_view` VALUES("39273", "13", "2016-09-29 04:36:39", "77.75.79.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("39274", "10", "2016-09-29 04:36:39", "77.75.79.36", "9");
INSERT INTO `wp_rg_form_view` VALUES("39275", "3", "2016-09-29 05:03:00", "199.21.99.202", "31");
INSERT INTO `wp_rg_form_view` VALUES("39276", "13", "2016-09-29 05:03:00", "199.21.99.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("39277", "10", "2016-09-29 05:03:01", "199.21.99.202", "15");
INSERT INTO `wp_rg_form_view` VALUES("39278", "3", "2016-09-29 06:26:56", "163.172.64.228", "7");
INSERT INTO `wp_rg_form_view` VALUES("39279", "13", "2016-09-29 06:26:58", "163.172.64.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("39280", "10", "2016-09-29 06:26:58", "163.172.64.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("39281", "3", "2016-09-29 07:07:29", "207.46.13.94", "20");
INSERT INTO `wp_rg_form_view` VALUES("39282", "13", "2016-09-29 07:07:29", "207.46.13.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("39283", "10", "2016-09-29 07:07:29", "207.46.13.94", "9");
INSERT INTO `wp_rg_form_view` VALUES("39284", "3", "2016-09-29 08:04:02", "77.75.76.166", "24");
INSERT INTO `wp_rg_form_view` VALUES("39285", "13", "2016-09-29 08:04:03", "77.75.76.166", "4");
INSERT INTO `wp_rg_form_view` VALUES("39286", "10", "2016-09-29 08:04:03", "77.75.76.166", "12");
INSERT INTO `wp_rg_form_view` VALUES("39287", "6", "2016-09-29 08:16:39", "157.55.39.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("39288", "3", "2016-09-29 09:02:40", "220.181.108.158", "24");
INSERT INTO `wp_rg_form_view` VALUES("39289", "13", "2016-09-29 09:02:40", "220.181.108.158", "4");
INSERT INTO `wp_rg_form_view` VALUES("39290", "10", "2016-09-29 09:02:40", "220.181.108.158", "12");
INSERT INTO `wp_rg_form_view` VALUES("39291", "1", "2016-09-29 09:52:24", "49.248.75.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("39292", "1", "2016-09-29 10:09:36", "107.173.248.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("39293", "3", "2016-09-29 10:09:36", "107.173.248.95", "19");
INSERT INTO `wp_rg_form_view` VALUES("39294", "13", "2016-09-29 10:09:36", "107.173.248.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("39295", "10", "2016-09-29 10:09:36", "107.173.248.95", "9");
INSERT INTO `wp_rg_form_view` VALUES("39296", "1", "2016-09-29 12:00:49", "172.245.214.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("39297", "3", "2016-09-29 12:00:49", "172.245.214.174", "19");
INSERT INTO `wp_rg_form_view` VALUES("39298", "13", "2016-09-29 12:00:50", "172.245.214.174", "3");
INSERT INTO `wp_rg_form_view` VALUES("39299", "10", "2016-09-29 12:00:50", "172.245.214.174", "9");
INSERT INTO `wp_rg_form_view` VALUES("39300", "3", "2016-09-29 13:11:09", "68.180.230.168", "667");
INSERT INTO `wp_rg_form_view` VALUES("39301", "13", "2016-09-29 13:11:10", "68.180.230.168", "110");
INSERT INTO `wp_rg_form_view` VALUES("39302", "10", "2016-09-29 13:11:10", "68.180.230.168", "320");
INSERT INTO `wp_rg_form_view` VALUES("39303", "11", "2016-09-29 13:35:34", "86.123.244.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("39304", "2", "2016-09-29 13:36:37", "86.123.244.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("39305", "1", "2016-09-29 13:49:55", "133.130.111.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("39306", "3", "2016-09-29 14:17:23", "157.55.39.220", "13");
INSERT INTO `wp_rg_form_view` VALUES("39307", "13", "2016-09-29 14:17:24", "157.55.39.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("39308", "10", "2016-09-29 14:17:24", "157.55.39.220", "6");
INSERT INTO `wp_rg_form_view` VALUES("39309", "3", "2016-09-29 16:20:04", "68.180.230.168", "13");
INSERT INTO `wp_rg_form_view` VALUES("39310", "13", "2016-09-29 16:20:06", "68.180.230.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("39311", "10", "2016-09-29 16:20:06", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("39312", "3", "2016-09-29 17:37:15", "184.69.173.146", "7");
INSERT INTO `wp_rg_form_view` VALUES("39313", "13", "2016-09-29 17:37:18", "184.69.173.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("39314", "10", "2016-09-29 17:37:18", "184.69.173.146", "3");
INSERT INTO `wp_rg_form_view` VALUES("39315", "3", "2016-09-29 18:04:58", "202.46.52.16", "18");
INSERT INTO `wp_rg_form_view` VALUES("39316", "13", "2016-09-29 18:04:58", "202.46.52.16", "3");
INSERT INTO `wp_rg_form_view` VALUES("39317", "10", "2016-09-29 18:04:58", "202.46.52.16", "9");
INSERT INTO `wp_rg_form_view` VALUES("39318", "1", "2016-09-29 19:00:57", "23.245.238.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("39319", "3", "2016-09-29 19:00:57", "23.245.238.109", "44");
INSERT INTO `wp_rg_form_view` VALUES("39320", "13", "2016-09-29 19:00:58", "23.245.238.109", "7");
INSERT INTO `wp_rg_form_view` VALUES("39321", "10", "2016-09-29 19:00:58", "23.245.238.109", "21");
INSERT INTO `wp_rg_form_view` VALUES("39322", "3", "2016-09-29 20:04:20", "184.151.231.130", "146");
INSERT INTO `wp_rg_form_view` VALUES("39323", "13", "2016-09-29 20:04:20", "184.151.231.130", "24");
INSERT INTO `wp_rg_form_view` VALUES("39324", "10", "2016-09-29 20:04:20", "184.151.231.130", "72");
INSERT INTO `wp_rg_form_view` VALUES("39325", "1", "2016-09-29 20:45:37", "155.133.43.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("39326", "6", "2016-09-29 20:52:24", "202.46.51.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("39327", "3", "2016-09-29 21:19:34", "184.69.170.30", "25");
INSERT INTO `wp_rg_form_view` VALUES("39328", "13", "2016-09-29 21:19:34", "184.69.170.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("39329", "10", "2016-09-29 21:19:34", "184.69.170.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("39330", "3", "2016-09-29 22:10:05", "68.180.230.168", "61");
INSERT INTO `wp_rg_form_view` VALUES("39331", "13", "2016-09-29 22:10:05", "68.180.230.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("39332", "10", "2016-09-29 22:10:05", "68.180.230.168", "30");
INSERT INTO `wp_rg_form_view` VALUES("39333", "2", "2016-09-29 22:18:46", "184.69.170.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("39334", "3", "2016-09-29 23:22:56", "164.132.161.92", "24");
INSERT INTO `wp_rg_form_view` VALUES("39335", "13", "2016-09-29 23:22:56", "164.132.161.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("39336", "10", "2016-09-29 23:22:56", "164.132.161.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("39337", "3", "2016-09-30 00:27:05", "77.75.79.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("39338", "13", "2016-09-30 00:27:05", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("39339", "10", "2016-09-30 00:27:05", "77.75.79.109", "3");
INSERT INTO `wp_rg_form_view` VALUES("39340", "13", "2016-09-30 01:32:31", "184.66.14.230", "3");
INSERT INTO `wp_rg_form_view` VALUES("39341", "3", "2016-09-30 01:32:31", "184.66.14.230", "18");
INSERT INTO `wp_rg_form_view` VALUES("39342", "10", "2016-09-30 01:32:31", "184.66.14.230", "10");
INSERT INTO `wp_rg_form_view` VALUES("39343", "3", "2016-09-30 02:12:04", "108.181.252.145", "39");
INSERT INTO `wp_rg_form_view` VALUES("39344", "13", "2016-09-30 02:12:04", "108.181.252.145", "7");
INSERT INTO `wp_rg_form_view` VALUES("39345", "10", "2016-09-30 02:12:04", "108.181.252.145", "25");
INSERT INTO `wp_rg_form_view` VALUES("39346", "1", "2016-09-30 02:25:24", "107.174.139.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("39347", "11", "2016-09-30 03:13:46", "178.175.146.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("39348", "3", "2016-09-30 03:13:46", "178.175.146.114", "404");
INSERT INTO `wp_rg_form_view` VALUES("39349", "13", "2016-09-30 03:13:46", "178.175.146.114", "68");
INSERT INTO `wp_rg_form_view` VALUES("39350", "10", "2016-09-30 03:13:46", "178.175.146.114", "200");
INSERT INTO `wp_rg_form_view` VALUES("39351", "2", "2016-09-30 03:15:06", "178.175.146.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("39352", "1", "2016-09-30 03:21:23", "178.175.146.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("39353", "3", "2016-09-30 04:16:01", "96.50.1.173", "36");
INSERT INTO `wp_rg_form_view` VALUES("39354", "13", "2016-09-30 04:16:02", "96.50.1.173", "6");
INSERT INTO `wp_rg_form_view` VALUES("39355", "10", "2016-09-30 04:16:02", "96.50.1.173", "18");
INSERT INTO `wp_rg_form_view` VALUES("39356", "3", "2016-09-30 05:20:31", "198.23.132.134", "34");
INSERT INTO `wp_rg_form_view` VALUES("39357", "13", "2016-09-30 05:20:31", "198.23.132.134", "5");
INSERT INTO `wp_rg_form_view` VALUES("39358", "10", "2016-09-30 05:20:31", "198.23.132.134", "15");
INSERT INTO `wp_rg_form_view` VALUES("39359", "3", "2016-09-30 07:15:01", "66.249.79.108", "13");
INSERT INTO `wp_rg_form_view` VALUES("39360", "13", "2016-09-30 07:15:07", "66.249.79.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("39361", "10", "2016-09-30 07:15:07", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("39362", "3", "2016-09-30 08:00:46", "164.132.161.90", "31");
INSERT INTO `wp_rg_form_view` VALUES("39363", "13", "2016-09-30 08:00:46", "164.132.161.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("39364", "10", "2016-09-30 08:00:46", "164.132.161.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("39365", "3", "2016-09-30 09:10:20", "164.132.161.87", "27");
INSERT INTO `wp_rg_form_view` VALUES("39366", "13", "2016-09-30 09:10:20", "164.132.161.87", "5");
INSERT INTO `wp_rg_form_view` VALUES("39367", "10", "2016-09-30 09:10:20", "164.132.161.87", "20");
INSERT INTO `wp_rg_form_view` VALUES("39368", "3", "2016-09-30 10:20:06", "66.249.79.104", "18");
INSERT INTO `wp_rg_form_view` VALUES("39369", "13", "2016-09-30 10:20:06", "66.249.79.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("39370", "10", "2016-09-30 10:20:06", "66.249.79.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("39371", "3", "2016-09-30 11:00:09", "66.249.84.22", "31");
INSERT INTO `wp_rg_form_view` VALUES("39372", "13", "2016-09-30 11:00:09", "66.249.84.22", "5");
INSERT INTO `wp_rg_form_view` VALUES("39373", "10", "2016-09-30 11:00:09", "66.249.84.22", "15");
INSERT INTO `wp_rg_form_view` VALUES("39374", "3", "2016-09-30 12:04:12", "66.249.79.108", "7");
INSERT INTO `wp_rg_form_view` VALUES("39375", "13", "2016-09-30 12:24:33", "163.172.65.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("39376", "10", "2016-09-30 12:24:33", "163.172.65.244", "3");
INSERT INTO `wp_rg_form_view` VALUES("39377", "3", "2016-09-30 13:01:31", "163.172.66.2", "511");
INSERT INTO `wp_rg_form_view` VALUES("39378", "13", "2016-09-30 13:01:32", "163.172.66.2", "81");
INSERT INTO `wp_rg_form_view` VALUES("39379", "10", "2016-09-30 13:01:32", "163.172.66.2", "245");
INSERT INTO `wp_rg_form_view` VALUES("39380", "6", "2016-09-30 13:32:54", "157.55.39.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("39381", "5", "2016-09-30 13:33:09", "157.55.39.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("39382", "9", "2016-09-30 13:33:34", "157.55.39.201", "3");
INSERT INTO `wp_rg_form_view` VALUES("39383", "8", "2016-09-30 13:34:44", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("39384", "3", "2016-09-30 14:29:10", "157.55.39.194", "24");
INSERT INTO `wp_rg_form_view` VALUES("39385", "13", "2016-09-30 14:29:10", "157.55.39.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("39386", "10", "2016-09-30 14:29:10", "157.55.39.194", "12");
INSERT INTO `wp_rg_form_view` VALUES("39387", "1", "2016-09-30 14:46:54", "217.125.213.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("39388", "3", "2016-09-30 15:07:23", "202.46.56.97", "87");
INSERT INTO `wp_rg_form_view` VALUES("39389", "13", "2016-09-30 15:07:24", "202.46.56.97", "14");
INSERT INTO `wp_rg_form_view` VALUES("39390", "10", "2016-09-30 15:07:24", "202.46.56.97", "42");
INSERT INTO `wp_rg_form_view` VALUES("39391", "1", "2016-09-30 15:27:03", "204.44.72.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("39392", "10", "2016-09-30 16:22:53", "68.180.230.168", "19");
INSERT INTO `wp_rg_form_view` VALUES("39393", "3", "2016-09-30 16:22:54", "68.180.230.168", "37");
INSERT INTO `wp_rg_form_view` VALUES("39394", "13", "2016-09-30 16:22:54", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("39395", "3", "2016-09-30 17:03:20", "202.46.56.90", "66");
INSERT INTO `wp_rg_form_view` VALUES("39396", "13", "2016-09-30 17:03:20", "202.46.56.90", "11");
INSERT INTO `wp_rg_form_view` VALUES("39397", "10", "2016-09-30 17:03:20", "202.46.56.90", "33");
INSERT INTO `wp_rg_form_view` VALUES("39398", "11", "2016-09-30 18:11:21", "213.127.12.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("39399", "3", "2016-09-30 18:11:23", "213.127.12.27", "163");
INSERT INTO `wp_rg_form_view` VALUES("39400", "13", "2016-09-30 18:11:23", "213.127.12.27", "27");
INSERT INTO `wp_rg_form_view` VALUES("39401", "10", "2016-09-30 18:11:23", "213.127.12.27", "81");
INSERT INTO `wp_rg_form_view` VALUES("39402", "2", "2016-09-30 18:12:38", "213.127.12.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("39403", "3", "2016-09-30 19:30:58", "51.255.65.91", "12");
INSERT INTO `wp_rg_form_view` VALUES("39404", "13", "2016-09-30 19:31:02", "51.255.65.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("39405", "10", "2016-09-30 19:31:02", "51.255.65.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("39406", "3", "2016-09-30 20:01:02", "163.172.66.101", "24");
INSERT INTO `wp_rg_form_view` VALUES("39407", "13", "2016-09-30 20:01:02", "163.172.66.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("39408", "10", "2016-09-30 20:01:02", "163.172.66.101", "12");
INSERT INTO `wp_rg_form_view` VALUES("39409", "3", "2016-09-30 21:04:59", "192.243.55.130", "29");
INSERT INTO `wp_rg_form_view` VALUES("39410", "13", "2016-09-30 21:04:59", "192.243.55.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("39411", "10", "2016-09-30 21:05:00", "192.243.55.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("39412", "12", "2016-09-30 22:02:26", "134.249.65.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("39413", "3", "2016-09-30 22:02:26", "134.249.65.218", "43");
INSERT INTO `wp_rg_form_view` VALUES("39414", "13", "2016-09-30 22:02:26", "134.249.65.218", "7");
INSERT INTO `wp_rg_form_view` VALUES("39415", "10", "2016-09-30 22:02:26", "134.249.65.218", "21");
INSERT INTO `wp_rg_form_view` VALUES("39416", "3", "2016-09-30 23:27:18", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("39417", "13", "2016-09-30 23:27:18", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("39418", "10", "2016-09-30 23:27:18", "68.180.230.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("39419", "3", "2016-10-01 00:38:43", "24.68.120.192", "6");
INSERT INTO `wp_rg_form_view` VALUES("39420", "13", "2016-10-01 00:38:43", "24.68.120.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("39421", "10", "2016-10-01 00:38:43", "24.68.120.192", "3");
INSERT INTO `wp_rg_form_view` VALUES("39422", "3", "2016-10-01 01:02:15", "68.180.230.168", "75");
INSERT INTO `wp_rg_form_view` VALUES("39423", "13", "2016-10-01 01:05:19", "107.20.99.102", "12");
INSERT INTO `wp_rg_form_view` VALUES("39424", "10", "2016-10-01 01:05:19", "107.20.99.102", "36");
INSERT INTO `wp_rg_form_view` VALUES("39425", "2", "2016-10-01 01:05:34", "107.20.99.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("39426", "3", "2016-10-01 02:06:15", "202.46.48.198", "109");
INSERT INTO `wp_rg_form_view` VALUES("39427", "13", "2016-10-01 02:06:15", "202.46.48.198", "17");
INSERT INTO `wp_rg_form_view` VALUES("39428", "10", "2016-10-01 02:06:15", "202.46.48.198", "52");
INSERT INTO `wp_rg_form_view` VALUES("39429", "2", "2016-10-01 02:17:50", "194.187.170.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("39430", "1", "2016-10-01 02:37:38", "190.238.192.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("39431", "3", "2016-10-01 03:06:50", "194.187.170.106", "31");
INSERT INTO `wp_rg_form_view` VALUES("39432", "13", "2016-10-01 03:11:23", "66.249.84.20", "5");
INSERT INTO `wp_rg_form_view` VALUES("39433", "10", "2016-10-01 03:11:23", "66.249.84.20", "15");
INSERT INTO `wp_rg_form_view` VALUES("39434", "11", "2016-10-01 03:19:54", "192.243.55.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("39435", "3", "2016-10-01 04:21:40", "163.172.65.24", "13");
INSERT INTO `wp_rg_form_view` VALUES("39436", "13", "2016-10-01 04:21:40", "163.172.65.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("39437", "10", "2016-10-01 04:21:40", "163.172.65.24", "7");
INSERT INTO `wp_rg_form_view` VALUES("39438", "3", "2016-10-01 05:05:59", "66.249.79.108", "30");
INSERT INTO `wp_rg_form_view` VALUES("39439", "13", "2016-10-01 05:06:03", "66.249.79.108", "5");
INSERT INTO `wp_rg_form_view` VALUES("39440", "10", "2016-10-01 05:06:03", "66.249.79.108", "16");
INSERT INTO `wp_rg_form_view` VALUES("39441", "3", "2016-10-01 06:04:13", "77.75.77.95", "36");
INSERT INTO `wp_rg_form_view` VALUES("39442", "13", "2016-10-01 06:04:13", "77.75.77.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("39443", "10", "2016-10-01 06:04:13", "77.75.77.95", "18");
INSERT INTO `wp_rg_form_view` VALUES("39444", "3", "2016-10-01 07:04:20", "163.172.66.55", "24");
INSERT INTO `wp_rg_form_view` VALUES("39445", "13", "2016-10-01 07:04:20", "163.172.66.55", "4");
INSERT INTO `wp_rg_form_view` VALUES("39446", "10", "2016-10-01 07:04:20", "163.172.66.55", "12");
INSERT INTO `wp_rg_form_view` VALUES("39447", "1", "2016-10-01 07:39:57", "163.172.65.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("39448", "3", "2016-10-01 08:05:06", "163.172.66.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("39449", "13", "2016-10-01 08:05:07", "163.172.66.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("39450", "10", "2016-10-01 08:05:07", "163.172.66.105", "12");
INSERT INTO `wp_rg_form_view` VALUES("39451", "2", "2016-10-01 08:49:09", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("39452", "3", "2016-10-01 09:12:18", "192.243.55.136", "24");
INSERT INTO `wp_rg_form_view` VALUES("39453", "13", "2016-10-01 09:12:18", "192.243.55.136", "4");
INSERT INTO `wp_rg_form_view` VALUES("39454", "10", "2016-10-01 09:12:18", "192.243.55.136", "12");
INSERT INTO `wp_rg_form_view` VALUES("39455", "11", "2016-10-01 09:59:25", "95.85.38.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("39456", "3", "2016-10-01 10:00:38", "95.85.38.167", "24");
INSERT INTO `wp_rg_form_view` VALUES("39457", "13", "2016-10-01 10:00:38", "95.85.38.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("39458", "10", "2016-10-01 10:00:38", "95.85.38.167", "12");
INSERT INTO `wp_rg_form_view` VALUES("39459", "11", "2016-10-01 10:28:59", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("39460", "3", "2016-10-01 11:01:16", "163.172.65.37", "57");
INSERT INTO `wp_rg_form_view` VALUES("39461", "13", "2016-10-01 11:01:16", "163.172.65.37", "9");
INSERT INTO `wp_rg_form_view` VALUES("39462", "10", "2016-10-01 11:01:16", "163.172.65.37", "27");
INSERT INTO `wp_rg_form_view` VALUES("39463", "1", "2016-10-01 11:16:04", "107.172.68.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("39464", "3", "2016-10-01 12:10:41", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("39465", "13", "2016-10-01 12:10:41", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("39466", "10", "2016-10-01 12:10:41", "66.249.79.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("39467", "3", "2016-10-01 13:20:53", "217.69.133.227", "30");
INSERT INTO `wp_rg_form_view` VALUES("39468", "13", "2016-10-01 13:20:53", "217.69.133.227", "5");
INSERT INTO `wp_rg_form_view` VALUES("39469", "10", "2016-10-01 13:20:53", "217.69.133.227", "15");
INSERT INTO `wp_rg_form_view` VALUES("39470", "3", "2016-10-01 14:15:10", "51.255.65.18", "97");
INSERT INTO `wp_rg_form_view` VALUES("39471", "13", "2016-10-01 14:15:11", "51.255.65.18", "17");
INSERT INTO `wp_rg_form_view` VALUES("39472", "10", "2016-10-01 14:15:11", "51.255.65.18", "49");
INSERT INTO `wp_rg_form_view` VALUES("39473", "2", "2016-10-01 14:32:25", "207.46.13.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("39474", "3", "2016-10-01 15:13:27", "192.243.55.134", "32");
INSERT INTO `wp_rg_form_view` VALUES("39475", "13", "2016-10-01 15:13:27", "192.243.55.134", "5");
INSERT INTO `wp_rg_form_view` VALUES("39476", "10", "2016-10-01 15:13:27", "192.243.55.134", "15");
INSERT INTO `wp_rg_form_view` VALUES("39477", "3", "2016-10-01 16:12:58", "66.249.79.112", "33");
INSERT INTO `wp_rg_form_view` VALUES("39478", "13", "2016-10-01 16:12:58", "66.249.79.112", "5");
INSERT INTO `wp_rg_form_view` VALUES("39479", "10", "2016-10-01 16:12:58", "66.249.79.112", "15");
INSERT INTO `wp_rg_form_view` VALUES("39480", "3", "2016-10-01 17:33:55", "192.243.55.129", "13");
INSERT INTO `wp_rg_form_view` VALUES("39481", "13", "2016-10-01 17:33:57", "192.243.55.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("39482", "10", "2016-10-01 17:33:57", "192.243.55.129", "6");
INSERT INTO `wp_rg_form_view` VALUES("39483", "3", "2016-10-01 18:05:45", "217.69.133.227", "38");
INSERT INTO `wp_rg_form_view` VALUES("39484", "13", "2016-10-01 18:05:45", "217.69.133.227", "6");
INSERT INTO `wp_rg_form_view` VALUES("39485", "10", "2016-10-01 18:05:45", "217.69.133.227", "18");
INSERT INTO `wp_rg_form_view` VALUES("39486", "3", "2016-10-01 19:08:54", "77.75.78.163", "19");
INSERT INTO `wp_rg_form_view` VALUES("39487", "13", "2016-10-01 19:08:54", "77.75.78.163", "3");
INSERT INTO `wp_rg_form_view` VALUES("39488", "10", "2016-10-01 19:08:54", "77.75.78.163", "9");
INSERT INTO `wp_rg_form_view` VALUES("39489", "3", "2016-10-01 20:13:51", "163.172.66.50", "26");
INSERT INTO `wp_rg_form_view` VALUES("39490", "13", "2016-10-01 20:13:52", "163.172.66.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("39491", "10", "2016-10-01 20:13:52", "163.172.66.50", "12");
INSERT INTO `wp_rg_form_view` VALUES("39492", "13", "2016-10-01 21:16:55", "217.69.133.232", "7");
INSERT INTO `wp_rg_form_view` VALUES("39493", "3", "2016-10-01 21:16:56", "217.69.133.232", "38");
INSERT INTO `wp_rg_form_view` VALUES("39494", "10", "2016-10-01 21:16:56", "217.69.133.232", "18");
INSERT INTO `wp_rg_form_view` VALUES("39495", "3", "2016-10-01 22:13:39", "198.98.110.93", "92");
INSERT INTO `wp_rg_form_view` VALUES("39496", "13", "2016-10-01 22:13:39", "198.98.110.93", "15");
INSERT INTO `wp_rg_form_view` VALUES("39497", "10", "2016-10-01 22:13:40", "198.98.110.93", "45");
INSERT INTO `wp_rg_form_view` VALUES("39498", "2", "2016-10-01 22:14:03", "45.32.130.173", "2");
INSERT INTO `wp_rg_form_view` VALUES("39499", "3", "2016-10-01 23:00:39", "184.66.232.114", "97");
INSERT INTO `wp_rg_form_view` VALUES("39500", "13", "2016-10-01 23:00:39", "184.66.232.114", "17");
INSERT INTO `wp_rg_form_view` VALUES("39501", "10", "2016-10-01 23:00:39", "184.66.232.114", "49");
INSERT INTO `wp_rg_form_view` VALUES("39502", "2", "2016-10-01 23:29:26", "207.46.13.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("39503", "3", "2016-10-02 00:45:36", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("39504", "13", "2016-10-02 00:45:37", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("39505", "10", "2016-10-02 00:45:37", "68.180.230.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("39506", "3", "2016-10-02 01:16:56", "92.222.237.39", "52");
INSERT INTO `wp_rg_form_view` VALUES("39507", "13", "2016-10-02 01:16:57", "92.222.237.39", "8");
INSERT INTO `wp_rg_form_view` VALUES("39508", "10", "2016-10-02 01:16:57", "92.222.237.39", "24");
INSERT INTO `wp_rg_form_view` VALUES("39509", "5", "2016-10-02 01:40:25", "51.255.65.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("39510", "3", "2016-10-02 02:04:01", "217.69.133.229", "38");
INSERT INTO `wp_rg_form_view` VALUES("39511", "13", "2016-10-02 02:04:01", "217.69.133.229", "6");
INSERT INTO `wp_rg_form_view` VALUES("39512", "10", "2016-10-02 02:04:01", "217.69.133.229", "18");
INSERT INTO `wp_rg_form_view` VALUES("39513", "3", "2016-10-02 03:05:24", "157.55.39.210", "110");
INSERT INTO `wp_rg_form_view` VALUES("39514", "13", "2016-10-02 03:05:24", "157.55.39.210", "18");
INSERT INTO `wp_rg_form_view` VALUES("39515", "10", "2016-10-02 03:05:24", "157.55.39.210", "54");
INSERT INTO `wp_rg_form_view` VALUES("39516", "6", "2016-10-02 03:41:05", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("39517", "1", "2016-10-02 03:58:12", "155.94.218.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("39518", "3", "2016-10-02 04:18:54", "157.55.39.210", "38");
INSERT INTO `wp_rg_form_view` VALUES("39519", "13", "2016-10-02 04:18:54", "157.55.39.210", "8");
INSERT INTO `wp_rg_form_view` VALUES("39520", "10", "2016-10-02 04:18:54", "157.55.39.210", "18");
INSERT INTO `wp_rg_form_view` VALUES("39521", "3", "2016-10-02 05:00:02", "157.55.39.210", "69");
INSERT INTO `wp_rg_form_view` VALUES("39522", "13", "2016-10-02 05:00:02", "157.55.39.210", "11");
INSERT INTO `wp_rg_form_view` VALUES("39523", "10", "2016-10-02 05:00:02", "157.55.39.210", "34");
INSERT INTO `wp_rg_form_view` VALUES("39524", "3", "2016-10-02 06:09:19", "157.55.39.194", "24");
INSERT INTO `wp_rg_form_view` VALUES("39525", "13", "2016-10-02 06:09:19", "157.55.39.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("39526", "10", "2016-10-02 06:09:19", "157.55.39.194", "12");
INSERT INTO `wp_rg_form_view` VALUES("39527", "11", "2016-10-02 06:49:04", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("39528", "3", "2016-10-02 07:23:54", "157.55.39.194", "155");
INSERT INTO `wp_rg_form_view` VALUES("39529", "13", "2016-10-02 07:23:54", "157.55.39.194", "26");
INSERT INTO `wp_rg_form_view` VALUES("39530", "10", "2016-10-02 07:23:54", "157.55.39.194", "75");
INSERT INTO `wp_rg_form_view` VALUES("39531", "11", "2016-10-02 07:37:03", "45.55.229.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("39532", "2", "2016-10-02 07:37:06", "45.55.229.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("39533", "3", "2016-10-02 08:16:16", "163.172.66.68", "56");
INSERT INTO `wp_rg_form_view` VALUES("39534", "13", "2016-10-02 08:16:16", "163.172.66.68", "9");
INSERT INTO `wp_rg_form_view` VALUES("39535", "10", "2016-10-02 08:16:16", "163.172.66.68", "27");
INSERT INTO `wp_rg_form_view` VALUES("39536", "3", "2016-10-02 09:08:38", "66.249.79.112", "24");
INSERT INTO `wp_rg_form_view` VALUES("39537", "13", "2016-10-02 09:08:38", "66.249.79.112", "4");
INSERT INTO `wp_rg_form_view` VALUES("39538", "10", "2016-10-02 09:08:38", "66.249.79.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("39539", "3", "2016-10-02 10:03:27", "40.77.167.29", "31");
INSERT INTO `wp_rg_form_view` VALUES("39540", "13", "2016-10-02 10:03:27", "40.77.167.29", "5");
INSERT INTO `wp_rg_form_view` VALUES("39541", "10", "2016-10-02 10:03:27", "40.77.167.29", "15");
INSERT INTO `wp_rg_form_view` VALUES("39542", "7", "2016-10-02 10:22:57", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("39543", "3", "2016-10-02 11:35:15", "40.77.167.26", "14");
INSERT INTO `wp_rg_form_view` VALUES("39544", "13", "2016-10-02 11:35:16", "40.77.167.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("39545", "10", "2016-10-02 11:35:16", "40.77.167.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("39546", "3", "2016-10-02 12:07:06", "202.46.55.66", "21");
INSERT INTO `wp_rg_form_view` VALUES("39547", "13", "2016-10-02 12:07:06", "202.46.55.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("39548", "10", "2016-10-02 12:07:06", "202.46.55.66", "9");
INSERT INTO `wp_rg_form_view` VALUES("39549", "3", "2016-10-02 13:05:54", "40.77.167.29", "115");
INSERT INTO `wp_rg_form_view` VALUES("39550", "13", "2016-10-02 13:10:36", "157.55.39.194", "18");
INSERT INTO `wp_rg_form_view` VALUES("39551", "10", "2016-10-02 13:10:36", "157.55.39.194", "54");
INSERT INTO `wp_rg_form_view` VALUES("39552", "1", "2016-10-02 13:36:19", "107.174.139.5", "3");
INSERT INTO `wp_rg_form_view` VALUES("39553", "11", "2016-10-02 13:38:39", "213.239.205.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("39554", "2", "2016-10-02 13:38:42", "213.239.205.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("39555", "3", "2016-10-02 14:02:59", "157.55.39.194", "31");
INSERT INTO `wp_rg_form_view` VALUES("39556", "13", "2016-10-02 14:03:00", "157.55.39.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("39557", "10", "2016-10-02 14:03:00", "157.55.39.194", "16");
INSERT INTO `wp_rg_form_view` VALUES("39558", "3", "2016-10-02 15:02:04", "202.46.58.50", "32");
INSERT INTO `wp_rg_form_view` VALUES("39559", "13", "2016-10-02 15:02:04", "202.46.58.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("39560", "10", "2016-10-02 15:02:05", "202.46.58.50", "12");
INSERT INTO `wp_rg_form_view` VALUES("39561", "3", "2016-10-02 16:06:22", "192.243.55.133", "108");
INSERT INTO `wp_rg_form_view` VALUES("39562", "13", "2016-10-02 16:06:22", "192.243.55.133", "18");
INSERT INTO `wp_rg_form_view` VALUES("39563", "10", "2016-10-02 16:06:22", "192.243.55.133", "57");
INSERT INTO `wp_rg_form_view` VALUES("39564", "9", "2016-10-02 16:43:15", "163.172.65.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("39565", "6", "2016-10-02 16:59:52", "192.243.55.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("39566", "3", "2016-10-02 17:12:45", "40.77.167.29", "100");
INSERT INTO `wp_rg_form_view` VALUES("39567", "13", "2016-10-02 17:12:46", "40.77.167.29", "17");
INSERT INTO `wp_rg_form_view` VALUES("39568", "10", "2016-10-02 17:12:46", "40.77.167.29", "55");
INSERT INTO `wp_rg_form_view` VALUES("39569", "12", "2016-10-02 17:24:24", "157.55.39.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("39570", "3", "2016-10-02 18:10:20", "217.69.133.231", "14");
INSERT INTO `wp_rg_form_view` VALUES("39571", "13", "2016-10-02 18:10:20", "217.69.133.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("39572", "10", "2016-10-02 18:10:20", "217.69.133.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("39573", "3", "2016-10-02 19:02:54", "96.50.16.206", "86");
INSERT INTO `wp_rg_form_view` VALUES("39574", "13", "2016-10-02 19:02:54", "96.50.16.206", "14");
INSERT INTO `wp_rg_form_view` VALUES("39575", "10", "2016-10-02 19:02:54", "96.50.16.206", "45");
INSERT INTO `wp_rg_form_view` VALUES("39576", "3", "2016-10-02 20:09:07", "68.180.230.168", "46");
INSERT INTO `wp_rg_form_view` VALUES("39577", "13", "2016-10-02 20:09:07", "68.180.230.168", "8");
INSERT INTO `wp_rg_form_view` VALUES("39578", "10", "2016-10-02 20:09:07", "68.180.230.168", "29");
INSERT INTO `wp_rg_form_view` VALUES("39579", "3", "2016-10-02 21:01:26", "157.55.39.194", "78");
INSERT INTO `wp_rg_form_view` VALUES("39580", "13", "2016-10-02 21:01:26", "157.55.39.194", "12");
INSERT INTO `wp_rg_form_view` VALUES("39581", "10", "2016-10-02 21:01:26", "157.55.39.194", "36");
INSERT INTO `wp_rg_form_view` VALUES("39582", "6", "2016-10-02 21:23:27", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("39583", "3", "2016-10-02 22:04:54", "192.243.55.130", "67");
INSERT INTO `wp_rg_form_view` VALUES("39584", "13", "2016-10-02 22:04:54", "192.243.55.130", "11");
INSERT INTO `wp_rg_form_view` VALUES("39585", "10", "2016-10-02 22:04:54", "192.243.55.130", "33");
INSERT INTO `wp_rg_form_view` VALUES("39586", "1", "2016-10-02 22:53:38", "200.54.180.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("39587", "3", "2016-10-02 23:00:17", "157.55.39.210", "33");
INSERT INTO `wp_rg_form_view` VALUES("39588", "13", "2016-10-02 23:00:17", "157.55.39.210", "5");
INSERT INTO `wp_rg_form_view` VALUES("39589", "10", "2016-10-02 23:00:18", "157.55.39.210", "15");
INSERT INTO `wp_rg_form_view` VALUES("39590", "2", "2016-10-02 23:07:48", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("39591", "3", "2016-10-03 00:01:07", "77.75.78.165", "31");
INSERT INTO `wp_rg_form_view` VALUES("39592", "13", "2016-10-03 00:01:08", "77.75.78.165", "5");
INSERT INTO `wp_rg_form_view` VALUES("39593", "10", "2016-10-03 00:01:08", "77.75.78.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("39594", "3", "2016-10-03 01:07:26", "51.255.65.68", "35");
INSERT INTO `wp_rg_form_view` VALUES("39595", "13", "2016-10-03 01:07:26", "51.255.65.68", "6");
INSERT INTO `wp_rg_form_view` VALUES("39596", "10", "2016-10-03 01:07:26", "51.255.65.68", "15");
INSERT INTO `wp_rg_form_view` VALUES("39597", "3", "2016-10-03 02:02:51", "164.132.161.43", "43");
INSERT INTO `wp_rg_form_view` VALUES("39598", "13", "2016-10-03 02:02:51", "164.132.161.43", "7");
INSERT INTO `wp_rg_form_view` VALUES("39599", "10", "2016-10-03 02:02:51", "164.132.161.43", "21");
INSERT INTO `wp_rg_form_view` VALUES("39600", "2", "2016-10-03 03:05:46", "40.77.167.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("39601", "3", "2016-10-03 03:05:46", "40.77.167.57", "23");
INSERT INTO `wp_rg_form_view` VALUES("39602", "13", "2016-10-03 03:05:46", "40.77.167.57", "4");
INSERT INTO `wp_rg_form_view` VALUES("39603", "10", "2016-10-03 03:05:46", "40.77.167.57", "10");
INSERT INTO `wp_rg_form_view` VALUES("39604", "3", "2016-10-03 04:02:35", "40.77.167.57", "37");
INSERT INTO `wp_rg_form_view` VALUES("39605", "13", "2016-10-03 04:02:35", "40.77.167.57", "7");
INSERT INTO `wp_rg_form_view` VALUES("39606", "10", "2016-10-03 04:02:36", "40.77.167.57", "18");
INSERT INTO `wp_rg_form_view` VALUES("39607", "3", "2016-10-03 05:02:30", "164.132.161.9", "55");
INSERT INTO `wp_rg_form_view` VALUES("39608", "13", "2016-10-03 05:02:30", "164.132.161.9", "9");
INSERT INTO `wp_rg_form_view` VALUES("39609", "10", "2016-10-03 05:02:30", "164.132.161.9", "27");
INSERT INTO `wp_rg_form_view` VALUES("39610", "3", "2016-10-03 06:03:17", "96.48.56.101", "48");
INSERT INTO `wp_rg_form_view` VALUES("39611", "13", "2016-10-03 06:03:17", "96.48.56.101", "9");
INSERT INTO `wp_rg_form_view` VALUES("39612", "10", "2016-10-03 06:03:17", "96.48.56.101", "24");
INSERT INTO `wp_rg_form_view` VALUES("39613", "6", "2016-10-03 06:57:33", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("39614", "3", "2016-10-03 07:32:07", "157.55.39.210", "26");
INSERT INTO `wp_rg_form_view` VALUES("39615", "13", "2016-10-03 07:32:07", "157.55.39.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("39616", "10", "2016-10-03 07:32:07", "157.55.39.210", "12");
INSERT INTO `wp_rg_form_view` VALUES("39617", "3", "2016-10-03 08:21:59", "68.180.230.168", "8");
INSERT INTO `wp_rg_form_view` VALUES("39618", "13", "2016-10-03 08:34:23", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("39619", "10", "2016-10-03 08:34:23", "217.69.133.229", "3");
INSERT INTO `wp_rg_form_view` VALUES("39620", "3", "2016-10-03 09:03:29", "192.243.55.134", "39");
INSERT INTO `wp_rg_form_view` VALUES("39621", "13", "2016-10-03 09:03:29", "192.243.55.134", "6");
INSERT INTO `wp_rg_form_view` VALUES("39622", "10", "2016-10-03 09:03:29", "192.243.55.134", "18");
INSERT INTO `wp_rg_form_view` VALUES("39623", "3", "2016-10-03 10:09:22", "217.69.133.233", "20");
INSERT INTO `wp_rg_form_view` VALUES("39624", "13", "2016-10-03 10:09:22", "217.69.133.233", "3");
INSERT INTO `wp_rg_form_view` VALUES("39625", "10", "2016-10-03 10:09:22", "217.69.133.233", "9");
INSERT INTO `wp_rg_form_view` VALUES("39626", "3", "2016-10-03 11:00:15", "68.180.230.168", "50");
INSERT INTO `wp_rg_form_view` VALUES("39627", "13", "2016-10-03 11:00:16", "68.180.230.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("39628", "10", "2016-10-03 11:00:16", "68.180.230.168", "24");
INSERT INTO `wp_rg_form_view` VALUES("39629", "1", "2016-10-03 12:33:24", "190.52.39.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("39630", "3", "2016-10-03 12:33:27", "190.52.39.238", "50");
INSERT INTO `wp_rg_form_view` VALUES("39631", "13", "2016-10-03 12:33:28", "190.52.39.238", "9");
INSERT INTO `wp_rg_form_view` VALUES("39632", "10", "2016-10-03 12:33:29", "190.52.39.238", "22");
INSERT INTO `wp_rg_form_view` VALUES("39633", "3", "2016-10-03 13:03:28", "66.249.79.112", "81");
INSERT INTO `wp_rg_form_view` VALUES("39634", "13", "2016-10-03 13:03:28", "66.249.79.112", "13");
INSERT INTO `wp_rg_form_view` VALUES("39635", "10", "2016-10-03 13:03:28", "66.249.79.112", "41");
INSERT INTO `wp_rg_form_view` VALUES("39636", "1", "2016-10-03 13:30:11", "46.17.99.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("39637", "13", "2016-10-03 14:01:28", "157.55.39.194", "14");
INSERT INTO `wp_rg_form_view` VALUES("39638", "3", "2016-10-03 14:01:28", "157.55.39.194", "75");
INSERT INTO `wp_rg_form_view` VALUES("39639", "10", "2016-10-03 14:01:28", "157.55.39.194", "36");
INSERT INTO `wp_rg_form_view` VALUES("39640", "3", "2016-10-03 15:09:27", "68.180.230.168", "62");
INSERT INTO `wp_rg_form_view` VALUES("39641", "13", "2016-10-03 15:09:27", "68.180.230.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("39642", "10", "2016-10-03 15:09:27", "68.180.230.168", "30");
INSERT INTO `wp_rg_form_view` VALUES("39643", "1", "2016-10-03 15:43:13", "23.108.93.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("39644", "3", "2016-10-03 16:01:23", "202.46.56.116", "38");
INSERT INTO `wp_rg_form_view` VALUES("39645", "13", "2016-10-03 16:01:23", "202.46.56.116", "6");
INSERT INTO `wp_rg_form_view` VALUES("39646", "10", "2016-10-03 16:01:23", "202.46.56.116", "18");
INSERT INTO `wp_rg_form_view` VALUES("39647", "8", "2016-10-03 16:03:15", "192.243.55.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("39648", "9", "2016-10-03 16:20:27", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("39649", "10", "2016-10-03 17:13:06", "157.55.39.210", "37");
INSERT INTO `wp_rg_form_view` VALUES("39650", "3", "2016-10-03 17:13:08", "157.55.39.210", "75");
INSERT INTO `wp_rg_form_view` VALUES("39651", "13", "2016-10-03 17:13:08", "157.55.39.210", "12");
INSERT INTO `wp_rg_form_view` VALUES("39652", "3", "2016-10-03 18:20:47", "199.60.104.18", "51");
INSERT INTO `wp_rg_form_view` VALUES("39653", "13", "2016-10-03 18:20:47", "199.60.104.18", "8");
INSERT INTO `wp_rg_form_view` VALUES("39654", "10", "2016-10-03 18:20:47", "199.60.104.18", "24");
INSERT INTO `wp_rg_form_view` VALUES("39655", "1", "2016-10-03 18:35:16", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("39656", "3", "2016-10-03 19:01:26", "157.55.39.210", "103");
INSERT INTO `wp_rg_form_view` VALUES("39657", "13", "2016-10-03 19:01:27", "157.55.39.210", "17");
INSERT INTO `wp_rg_form_view` VALUES("39658", "10", "2016-10-03 19:01:27", "157.55.39.210", "50");
INSERT INTO `wp_rg_form_view` VALUES("39659", "1", "2016-10-03 19:01:37", "155.133.43.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("39660", "3", "2016-10-03 20:05:28", "40.77.167.25", "38");
INSERT INTO `wp_rg_form_view` VALUES("39661", "13", "2016-10-03 20:05:28", "40.77.167.25", "6");
INSERT INTO `wp_rg_form_view` VALUES("39662", "10", "2016-10-03 20:05:28", "40.77.167.25", "18");
INSERT INTO `wp_rg_form_view` VALUES("39663", "1", "2016-10-03 20:59:21", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("39664", "10", "2016-10-03 21:02:43", "164.132.161.82", "25");
INSERT INTO `wp_rg_form_view` VALUES("39665", "3", "2016-10-03 21:02:43", "164.132.161.82", "52");
INSERT INTO `wp_rg_form_view` VALUES("39666", "13", "2016-10-03 21:02:44", "164.132.161.82", "8");
INSERT INTO `wp_rg_form_view` VALUES("39667", "3", "2016-10-03 22:15:15", "157.55.39.210", "70");
INSERT INTO `wp_rg_form_view` VALUES("39668", "13", "2016-10-03 22:15:16", "157.55.39.210", "11");
INSERT INTO `wp_rg_form_view` VALUES("39669", "10", "2016-10-03 22:15:16", "157.55.39.210", "32");
INSERT INTO `wp_rg_form_view` VALUES("39670", "1", "2016-10-03 22:42:16", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("39671", "12", "2016-10-03 22:50:02", "134.249.65.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("39672", "3", "2016-10-03 23:05:39", "207.46.13.166", "92");
INSERT INTO `wp_rg_form_view` VALUES("39673", "13", "2016-10-03 23:05:39", "207.46.13.166", "17");
INSERT INTO `wp_rg_form_view` VALUES("39674", "10", "2016-10-03 23:05:39", "207.46.13.166", "46");
INSERT INTO `wp_rg_form_view` VALUES("39675", "1", "2016-10-04 00:00:32", "184.69.26.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("39676", "3", "2016-10-04 00:00:32", "184.69.26.206", "71");
INSERT INTO `wp_rg_form_view` VALUES("39677", "13", "2016-10-04 00:00:32", "184.69.26.206", "12");
INSERT INTO `wp_rg_form_view` VALUES("39678", "10", "2016-10-04 00:00:32", "184.69.26.206", "33");
INSERT INTO `wp_rg_form_view` VALUES("39679", "3", "2016-10-04 01:01:01", "157.55.39.65", "93");
INSERT INTO `wp_rg_form_view` VALUES("39680", "13", "2016-10-04 01:01:02", "157.55.39.65", "15");
INSERT INTO `wp_rg_form_view` VALUES("39681", "10", "2016-10-04 01:01:02", "157.55.39.65", "47");
INSERT INTO `wp_rg_form_view` VALUES("39682", "1", "2016-10-04 01:32:03", "157.55.39.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("39683", "3", "2016-10-04 02:32:41", "207.46.13.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("39684", "13", "2016-10-04 02:32:42", "207.46.13.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("39685", "10", "2016-10-04 02:32:42", "207.46.13.166", "3");
INSERT INTO `wp_rg_form_view` VALUES("39686", "3", "2016-10-04 03:16:25", "157.55.39.210", "268");
INSERT INTO `wp_rg_form_view` VALUES("39687", "13", "2016-10-04 03:16:25", "157.55.39.210", "46");
INSERT INTO `wp_rg_form_view` VALUES("39688", "10", "2016-10-04 03:16:25", "157.55.39.210", "133");
INSERT INTO `wp_rg_form_view` VALUES("39689", "2", "2016-10-04 03:32:13", "5.79.68.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("39690", "11", "2016-10-04 03:33:02", "5.79.68.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("39691", "3", "2016-10-04 04:35:48", "24.68.25.82", "36");
INSERT INTO `wp_rg_form_view` VALUES("39692", "13", "2016-10-04 04:35:49", "24.68.25.82", "6");
INSERT INTO `wp_rg_form_view` VALUES("39693", "10", "2016-10-04 04:35:49", "24.68.25.82", "18");
INSERT INTO `wp_rg_form_view` VALUES("39694", "3", "2016-10-04 05:10:13", "108.180.118.95", "25");
INSERT INTO `wp_rg_form_view` VALUES("39695", "13", "2016-10-04 05:10:13", "108.180.118.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("39696", "10", "2016-10-04 05:10:13", "108.180.118.95", "12");
INSERT INTO `wp_rg_form_view` VALUES("39697", "3", "2016-10-04 06:22:11", "157.55.39.65", "25");
INSERT INTO `wp_rg_form_view` VALUES("39698", "13", "2016-10-04 06:22:15", "157.55.39.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("39699", "10", "2016-10-04 06:22:15", "157.55.39.65", "13");
INSERT INTO `wp_rg_form_view` VALUES("39700", "3", "2016-10-04 07:00:36", "68.180.230.168", "55");
INSERT INTO `wp_rg_form_view` VALUES("39701", "13", "2016-10-04 07:00:36", "68.180.230.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("39702", "10", "2016-10-04 07:00:36", "68.180.230.168", "27");
INSERT INTO `wp_rg_form_view` VALUES("39703", "1", "2016-10-04 07:22:35", "68.180.230.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("39704", "3", "2016-10-04 08:37:51", "66.249.79.104", "18");
INSERT INTO `wp_rg_form_view` VALUES("39705", "13", "2016-10-04 08:37:52", "66.249.79.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("39706", "10", "2016-10-04 08:37:52", "66.249.79.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("39707", "3", "2016-10-04 09:40:30", "194.187.170.124", "6");
INSERT INTO `wp_rg_form_view` VALUES("39708", "13", "2016-10-04 09:40:35", "194.187.170.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("39709", "10", "2016-10-04 09:40:35", "194.187.170.124", "3");
INSERT INTO `wp_rg_form_view` VALUES("39710", "3", "2016-10-04 10:07:06", "194.187.170.124", "55");
INSERT INTO `wp_rg_form_view` VALUES("39711", "13", "2016-10-04 10:07:06", "194.187.170.124", "9");
INSERT INTO `wp_rg_form_view` VALUES("39712", "10", "2016-10-04 10:07:06", "194.187.170.124", "27");
INSERT INTO `wp_rg_form_view` VALUES("39713", "11", "2016-10-04 10:30:57", "194.187.170.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("39714", "12", "2016-10-04 11:14:26", "134.249.65.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("39715", "12", "2016-10-04 11:14:26", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("39716", "3", "2016-10-04 11:14:29", "134.249.65.218", "49");
INSERT INTO `wp_rg_form_view` VALUES("39717", "3", "2016-10-04 11:14:29", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("39718", "3", "2016-10-04 11:14:29", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("39719", "13", "2016-10-04 11:14:29", "134.249.65.218", "7");
INSERT INTO `wp_rg_form_view` VALUES("39720", "13", "2016-10-04 11:14:29", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("39721", "13", "2016-10-04 11:14:29", "134.249.65.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("39722", "10", "2016-10-04 11:14:29", "134.249.65.218", "30");
INSERT INTO `wp_rg_form_view` VALUES("39723", "3", "2016-10-04 12:01:08", "70.67.232.58", "116");
INSERT INTO `wp_rg_form_view` VALUES("39724", "13", "2016-10-04 12:01:08", "70.67.232.58", "19");
INSERT INTO `wp_rg_form_view` VALUES("39725", "10", "2016-10-04 12:01:08", "70.67.232.58", "58");
INSERT INTO `wp_rg_form_view` VALUES("39726", "1", "2016-10-04 12:03:25", "70.67.232.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("39727", "12", "2016-10-04 12:06:40", "134.249.65.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("39728", "11", "2016-10-04 12:28:23", "61.174.160.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("39729", "3", "2016-10-04 13:03:17", "66.249.79.108", "31");
INSERT INTO `wp_rg_form_view` VALUES("39730", "13", "2016-10-04 13:03:17", "66.249.79.108", "5");
INSERT INTO `wp_rg_form_view` VALUES("39731", "10", "2016-10-04 13:03:17", "66.249.79.108", "17");
INSERT INTO `wp_rg_form_view` VALUES("39732", "3", "2016-10-04 14:40:44", "164.132.161.67", "7");
INSERT INTO `wp_rg_form_view` VALUES("39733", "13", "2016-10-04 14:40:46", "164.132.161.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("39734", "10", "2016-10-04 14:40:46", "164.132.161.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("39735", "3", "2016-10-04 15:04:54", "184.66.142.245", "45");
INSERT INTO `wp_rg_form_view` VALUES("39736", "13", "2016-10-04 15:04:55", "184.66.142.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("39737", "10", "2016-10-04 15:04:55", "184.66.142.245", "21");
INSERT INTO `wp_rg_form_view` VALUES("39738", "1", "2016-10-04 15:36:55", "189.146.196.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("39739", "10", "2016-10-04 16:06:31", "24.69.77.172", "17");
INSERT INTO `wp_rg_form_view` VALUES("39740", "3", "2016-10-04 16:06:31", "24.69.77.172", "30");
INSERT INTO `wp_rg_form_view` VALUES("39741", "13", "2016-10-04 16:06:31", "24.69.77.172", "5");
INSERT INTO `wp_rg_form_view` VALUES("39742", "3", "2016-10-04 17:04:52", "66.249.79.112", "42");
INSERT INTO `wp_rg_form_view` VALUES("39743", "13", "2016-10-04 17:04:52", "66.249.79.112", "7");
INSERT INTO `wp_rg_form_view` VALUES("39744", "10", "2016-10-04 17:04:52", "66.249.79.112", "21");
INSERT INTO `wp_rg_form_view` VALUES("39745", "3", "2016-10-04 18:05:17", "66.249.79.108", "56");
INSERT INTO `wp_rg_form_view` VALUES("39746", "13", "2016-10-04 18:05:18", "66.249.79.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("39747", "10", "2016-10-04 18:05:18", "66.249.79.108", "28");
INSERT INTO `wp_rg_form_view` VALUES("39748", "1", "2016-10-04 18:45:55", "78.58.208.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("39749", "3", "2016-10-04 19:22:29", "207.46.13.166", "61");
INSERT INTO `wp_rg_form_view` VALUES("39750", "13", "2016-10-04 19:22:29", "207.46.13.166", "10");
INSERT INTO `wp_rg_form_view` VALUES("39751", "10", "2016-10-04 19:22:29", "207.46.13.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("39752", "1", "2016-10-04 19:45:38", "75.157.27.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("39753", "3", "2016-10-04 20:44:18", "194.187.170.123", "20");
INSERT INTO `wp_rg_form_view` VALUES("39754", "13", "2016-10-04 20:44:20", "194.187.170.123", "3");
INSERT INTO `wp_rg_form_view` VALUES("39755", "10", "2016-10-04 20:44:20", "194.187.170.123", "9");
INSERT INTO `wp_rg_form_view` VALUES("39756", "3", "2016-10-04 21:10:16", "24.68.44.35", "131");
INSERT INTO `wp_rg_form_view` VALUES("39757", "13", "2016-10-04 21:10:16", "24.68.44.35", "24");
INSERT INTO `wp_rg_form_view` VALUES("39758", "10", "2016-10-04 21:10:16", "24.68.44.35", "63");
INSERT INTO `wp_rg_form_view` VALUES("39759", "11", "2016-10-04 21:59:40", "96.50.19.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("39760", "3", "2016-10-04 22:00:10", "96.50.19.46", "102");
INSERT INTO `wp_rg_form_view` VALUES("39761", "13", "2016-10-04 22:00:11", "96.50.19.46", "15");
INSERT INTO `wp_rg_form_view` VALUES("39762", "10", "2016-10-04 22:00:11", "96.50.19.46", "39");
INSERT INTO `wp_rg_form_view` VALUES("39763", "3", "2016-10-04 23:42:34", "207.46.13.166", "20");
INSERT INTO `wp_rg_form_view` VALUES("39764", "13", "2016-10-04 23:42:35", "207.46.13.166", "3");
INSERT INTO `wp_rg_form_view` VALUES("39765", "10", "2016-10-04 23:42:37", "207.46.13.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("39766", "3", "2016-10-05 00:15:03", "157.55.39.65", "28");
INSERT INTO `wp_rg_form_view` VALUES("39767", "13", "2016-10-05 00:15:03", "157.55.39.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("39768", "10", "2016-10-05 00:15:03", "157.55.39.65", "9");
INSERT INTO `wp_rg_form_view` VALUES("39769", "3", "2016-10-05 01:05:41", "51.255.65.12", "19");
INSERT INTO `wp_rg_form_view` VALUES("39770", "13", "2016-10-05 01:05:42", "51.255.65.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("39771", "10", "2016-10-05 01:05:42", "51.255.65.12", "9");
INSERT INTO `wp_rg_form_view` VALUES("39772", "10", "2016-10-05 02:18:24", "216.232.157.181", "13");
INSERT INTO `wp_rg_form_view` VALUES("39773", "3", "2016-10-05 02:18:25", "216.232.157.181", "25");
INSERT INTO `wp_rg_form_view` VALUES("39774", "13", "2016-10-05 02:18:25", "216.232.157.181", "5");
INSERT INTO `wp_rg_form_view` VALUES("39775", "3", "2016-10-05 03:27:48", "24.108.165.31", "25");
INSERT INTO `wp_rg_form_view` VALUES("39776", "13", "2016-10-05 03:27:48", "24.108.165.31", "4");
INSERT INTO `wp_rg_form_view` VALUES("39777", "10", "2016-10-05 03:27:48", "24.108.165.31", "12");
INSERT INTO `wp_rg_form_view` VALUES("39778", "12", "2016-10-05 03:30:46", "51.255.65.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("39779", "3", "2016-10-05 04:13:53", "68.180.230.168", "24");
INSERT INTO `wp_rg_form_view` VALUES("39780", "13", "2016-10-05 04:13:53", "68.180.230.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("39781", "10", "2016-10-05 04:13:53", "68.180.230.168", "14");
INSERT INTO `wp_rg_form_view` VALUES("39782", "3", "2016-10-05 05:04:09", "134.249.65.218", "25");
INSERT INTO `wp_rg_form_view` VALUES("39783", "13", "2016-10-05 05:04:09", "134.249.65.218", "4");
INSERT INTO `wp_rg_form_view` VALUES("39784", "10", "2016-10-05 05:04:09", "134.249.65.218", "12");
INSERT INTO `wp_rg_form_view` VALUES("39785", "11", "2016-10-05 05:59:46", "51.255.65.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("39786", "3", "2016-10-05 06:28:12", "202.46.51.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("39787", "13", "2016-10-05 06:28:13", "202.46.51.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("39788", "10", "2016-10-05 06:28:14", "202.46.51.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("39789", "3", "2016-10-05 07:35:09", "202.46.58.70", "12");
INSERT INTO `wp_rg_form_view` VALUES("39790", "13", "2016-10-05 07:35:10", "202.46.58.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("39791", "10", "2016-10-05 07:35:10", "202.46.58.70", "6");
INSERT INTO `wp_rg_form_view` VALUES("39792", "3", "2016-10-05 08:50:11", "194.187.170.140", "20");
INSERT INTO `wp_rg_form_view` VALUES("39793", "13", "2016-10-05 08:50:12", "194.187.170.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("39794", "10", "2016-10-05 08:50:13", "194.187.170.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("39795", "3", "2016-10-05 09:04:11", "194.187.170.140", "139");
INSERT INTO `wp_rg_form_view` VALUES("39796", "13", "2016-10-05 09:04:11", "194.187.170.140", "21");
INSERT INTO `wp_rg_form_view` VALUES("39797", "10", "2016-10-05 09:04:12", "194.187.170.140", "61");
INSERT INTO `wp_rg_form_view` VALUES("39798", "1", "2016-10-05 09:05:24", "194.187.170.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("39799", "3", "2016-10-05 10:02:50", "88.3.86.69", "700");
INSERT INTO `wp_rg_form_view` VALUES("39800", "13", "2016-10-05 10:02:50", "88.3.86.69", "110");
INSERT INTO `wp_rg_form_view` VALUES("39801", "10", "2016-10-05 10:02:50", "88.3.86.69", "333");
INSERT INTO `wp_rg_form_view` VALUES("39802", "8", "2016-10-05 10:06:57", "157.55.39.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("39803", "5", "2016-10-05 10:07:21", "207.46.13.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("39804", "6", "2016-10-05 10:07:29", "207.46.13.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("39805", "9", "2016-10-05 10:08:00", "157.55.39.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("39806", "1", "2016-10-05 10:08:46", "157.55.39.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("39807", "2", "2016-10-05 10:08:47", "157.55.39.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("39808", "12", "2016-10-05 10:42:07", "194.187.170.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("39809", "3", "2016-10-05 11:02:36", "157.55.39.65", "20");
INSERT INTO `wp_rg_form_view` VALUES("39810", "13", "2016-10-05 11:02:37", "157.55.39.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("39811", "10", "2016-10-05 11:02:37", "157.55.39.65", "9");
INSERT INTO `wp_rg_form_view` VALUES("39812", "3", "2016-10-05 12:12:15", "202.46.57.19", "13");
INSERT INTO `wp_rg_form_view` VALUES("39813", "13", "2016-10-05 12:12:16", "202.46.57.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("39814", "10", "2016-10-05 12:12:16", "202.46.57.19", "6");
INSERT INTO `wp_rg_form_view` VALUES("39815", "3", "2016-10-05 13:15:40", "68.180.230.168", "34");
INSERT INTO `wp_rg_form_view` VALUES("39816", "13", "2016-10-05 13:15:40", "68.180.230.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("39817", "10", "2016-10-05 13:15:41", "68.180.230.168", "13");
INSERT INTO `wp_rg_form_view` VALUES("39818", "3", "2016-10-05 14:14:18", "51.255.65.8", "12");
INSERT INTO `wp_rg_form_view` VALUES("39819", "13", "2016-10-05 14:14:18", "51.255.65.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("39820", "10", "2016-10-05 14:14:18", "51.255.65.8", "6");
INSERT INTO `wp_rg_form_view` VALUES("39821", "3", "2016-10-05 15:19:26", "68.180.230.168", "31");
INSERT INTO `wp_rg_form_view` VALUES("39822", "13", "2016-10-05 15:19:32", "68.180.230.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("39823", "10", "2016-10-05 15:19:32", "68.180.230.168", "15");
INSERT INTO `wp_rg_form_view` VALUES("39824", "1", "2016-10-05 15:28:09", "172.245.73.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("39825", "3", "2016-10-05 16:23:00", "68.180.230.168", "12");
INSERT INTO `wp_rg_form_view` VALUES("39826", "13", "2016-10-05 16:23:00", "68.180.230.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("39827", "10", "2016-10-05 16:23:00", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("39828", "1", "2016-10-05 17:02:17", "192.227.171.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("39829", "3", "2016-10-05 17:02:21", "192.227.171.41", "54");
INSERT INTO `wp_rg_form_view` VALUES("39830", "13", "2016-10-05 17:02:27", "192.227.171.41", "9");
INSERT INTO `wp_rg_form_view` VALUES("39831", "10", "2016-10-05 17:02:27", "192.227.171.41", "28");
INSERT INTO `wp_rg_form_view` VALUES("39832", "3", "2016-10-05 18:00:08", "68.180.230.168", "109");
INSERT INTO `wp_rg_form_view` VALUES("39833", "13", "2016-10-05 18:00:08", "68.180.230.168", "22");
INSERT INTO `wp_rg_form_view` VALUES("39834", "10", "2016-10-05 18:00:08", "68.180.230.168", "56");
INSERT INTO `wp_rg_form_view` VALUES("39835", "1", "2016-10-05 18:15:29", "212.83.173.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("39836", "3", "2016-10-05 19:59:25", "77.75.76.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("39837", "13", "2016-10-05 19:59:26", "77.75.76.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("39838", "10", "2016-10-05 19:59:26", "77.75.76.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("39839", "5", "2016-10-05 20:57:41", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("39840", "3", "2016-10-05 20:57:42", "77.75.78.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("39841", "13", "2016-10-05 20:57:42", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("39842", "10", "2016-10-05 20:57:42", "77.75.78.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("39843", "1", "2016-10-05 21:18:32", "104.144.187.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("39844", "3", "2016-10-05 21:18:33", "104.144.187.125", "90");
INSERT INTO `wp_rg_form_view` VALUES("39845", "13", "2016-10-05 21:18:33", "104.144.187.125", "14");
INSERT INTO `wp_rg_form_view` VALUES("39846", "10", "2016-10-05 21:18:33", "104.144.187.125", "42");
INSERT INTO `wp_rg_form_view` VALUES("39847", "3", "2016-10-05 22:14:39", "77.75.76.165", "48");
INSERT INTO `wp_rg_form_view` VALUES("39848", "13", "2016-10-05 22:14:40", "77.75.76.165", "8");
INSERT INTO `wp_rg_form_view` VALUES("39849", "10", "2016-10-05 22:14:40", "77.75.76.165", "25");
INSERT INTO `wp_rg_form_view` VALUES("39850", "3", "2016-10-05 23:06:16", "108.181.252.145", "12");
INSERT INTO `wp_rg_form_view` VALUES("39851", "13", "2016-10-05 23:06:17", "108.181.252.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("39852", "10", "2016-10-05 23:06:17", "108.181.252.145", "6");
INSERT INTO `wp_rg_form_view` VALUES("39853", "3", "2016-10-06 00:01:44", "157.55.39.65", "110");
INSERT INTO `wp_rg_form_view` VALUES("39854", "13", "2016-10-06 00:01:45", "157.55.39.65", "18");
INSERT INTO `wp_rg_form_view` VALUES("39855", "10", "2016-10-06 00:01:45", "157.55.39.65", "55");
INSERT INTO `wp_rg_form_view` VALUES("39856", "1", "2016-10-06 00:08:56", "154.20.39.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("39857", "12", "2016-10-06 00:19:02", "134.249.65.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("39858", "3", "2016-10-06 01:06:21", "163.172.66.40", "32");
INSERT INTO `wp_rg_form_view` VALUES("39859", "13", "2016-10-06 01:06:21", "163.172.66.40", "5");
INSERT INTO `wp_rg_form_view` VALUES("39860", "10", "2016-10-06 01:06:21", "163.172.66.40", "16");
INSERT INTO `wp_rg_form_view` VALUES("39861", "3", "2016-10-06 02:01:21", "46.246.42.142", "33");
INSERT INTO `wp_rg_form_view` VALUES("39862", "13", "2016-10-06 02:01:21", "46.246.42.142", "5");
INSERT INTO `wp_rg_form_view` VALUES("39863", "10", "2016-10-06 02:01:21", "46.246.42.142", "15");
INSERT INTO `wp_rg_form_view` VALUES("39864", "3", "2016-10-06 03:01:26", "68.180.230.168", "43");
INSERT INTO `wp_rg_form_view` VALUES("39865", "1", "2016-10-06 03:01:32", "202.46.53.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("39866", "13", "2016-10-06 03:01:32", "202.46.53.142", "7");
INSERT INTO `wp_rg_form_view` VALUES("39867", "10", "2016-10-06 03:01:32", "202.46.53.142", "21");
INSERT INTO `wp_rg_form_view` VALUES("39868", "11", "2016-10-06 03:46:49", "77.75.77.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("39869", "3", "2016-10-06 04:52:57", "96.50.19.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("39870", "13", "2016-10-06 04:52:57", "96.50.19.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("39871", "10", "2016-10-06 04:52:57", "96.50.19.46", "3");
INSERT INTO `wp_rg_form_view` VALUES("39872", "3", "2016-10-06 05:05:09", "24.68.25.82", "42");
INSERT INTO `wp_rg_form_view` VALUES("39873", "13", "2016-10-06 05:05:09", "24.68.25.82", "7");
INSERT INTO `wp_rg_form_view` VALUES("39874", "10", "2016-10-06 05:05:09", "24.68.25.82", "21");
INSERT INTO `wp_rg_form_view` VALUES("39875", "1", "2016-10-06 05:18:32", "192.227.171.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("39876", "3", "2016-10-06 06:52:55", "77.75.79.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("39877", "13", "2016-10-06 06:52:57", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("39878", "10", "2016-10-06 06:52:57", "77.75.79.109", "3");
INSERT INTO `wp_rg_form_view` VALUES("39879", "3", "2016-10-06 07:42:23", "154.5.71.204", "31");
INSERT INTO `wp_rg_form_view` VALUES("39880", "13", "2016-10-06 07:42:24", "154.5.71.204", "5");
INSERT INTO `wp_rg_form_view` VALUES("39881", "10", "2016-10-06 07:42:24", "154.5.71.204", "16");
INSERT INTO `wp_rg_form_view` VALUES("39882", "3", "2016-10-06 08:16:11", "68.180.230.168", "39");
INSERT INTO `wp_rg_form_view` VALUES("39883", "13", "2016-10-06 08:16:12", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("39884", "10", "2016-10-06 08:16:15", "68.180.230.168", "15");
INSERT INTO `wp_rg_form_view` VALUES("39885", "12", "2016-10-06 08:20:57", "163.172.64.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("39886", "3", "2016-10-06 09:41:58", "194.187.170.103", "32");
INSERT INTO `wp_rg_form_view` VALUES("39887", "13", "2016-10-06 09:50:27", "77.75.76.164", "5");
INSERT INTO `wp_rg_form_view` VALUES("39888", "10", "2016-10-06 09:50:27", "77.75.76.164", "15");
INSERT INTO `wp_rg_form_view` VALUES("39889", "12", "2016-10-06 09:50:29", "134.249.65.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("39890", "10", "2016-10-06 10:16:59", "68.180.230.168", "26");
INSERT INTO `wp_rg_form_view` VALUES("39891", "13", "2016-10-06 10:16:59", "197.231.239.57", "10");
INSERT INTO `wp_rg_form_view` VALUES("39892", "3", "2016-10-06 10:17:00", "68.180.230.168", "49");
INSERT INTO `wp_rg_form_view` VALUES("39893", "3", "2016-10-06 10:17:00", "197.231.239.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("39894", "3", "2016-10-06 11:13:06", "202.46.56.17", "24");
INSERT INTO `wp_rg_form_view` VALUES("39895", "13", "2016-10-06 11:13:06", "202.46.56.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("39896", "10", "2016-10-06 11:13:06", "202.46.56.17", "12");
INSERT INTO `wp_rg_form_view` VALUES("39897", "3", "2016-10-06 12:05:05", "66.249.79.112", "37");
INSERT INTO `wp_rg_form_view` VALUES("39898", "13", "2016-10-06 12:05:05", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("39899", "10", "2016-10-06 12:05:05", "66.249.79.112", "18");
INSERT INTO `wp_rg_form_view` VALUES("39900", "3", "2016-10-06 13:39:18", "66.249.79.112", "24");
INSERT INTO `wp_rg_form_view` VALUES("39901", "13", "2016-10-06 13:39:18", "66.249.79.112", "4");
INSERT INTO `wp_rg_form_view` VALUES("39902", "10", "2016-10-06 13:39:18", "66.249.79.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("39903", "3", "2016-10-06 14:13:06", "192.243.55.136", "33");
INSERT INTO `wp_rg_form_view` VALUES("39904", "13", "2016-10-06 14:18:02", "157.55.39.65", "5");
INSERT INTO `wp_rg_form_view` VALUES("39905", "10", "2016-10-06 14:18:02", "157.55.39.65", "16");
INSERT INTO `wp_rg_form_view` VALUES("39906", "3", "2016-10-06 15:00:18", "157.55.39.65", "39");
INSERT INTO `wp_rg_form_view` VALUES("39907", "13", "2016-10-06 15:00:18", "157.55.39.65", "6");
INSERT INTO `wp_rg_form_view` VALUES("39908", "10", "2016-10-06 15:00:18", "157.55.39.65", "18");
INSERT INTO `wp_rg_form_view` VALUES("39909", "8", "2016-10-06 15:55:46", "108.180.49.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("39910", "13", "2016-10-06 16:02:11", "108.180.49.208", "10");
INSERT INTO `wp_rg_form_view` VALUES("39911", "3", "2016-10-06 16:02:11", "108.180.49.208", "53");
INSERT INTO `wp_rg_form_view` VALUES("39912", "10", "2016-10-06 16:02:11", "108.180.49.208", "31");
INSERT INTO `wp_rg_form_view` VALUES("39913", "3", "2016-10-06 17:04:36", "66.249.79.104", "36");
INSERT INTO `wp_rg_form_view` VALUES("39914", "13", "2016-10-06 17:04:36", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("39915", "10", "2016-10-06 17:04:36", "66.249.79.104", "19");
INSERT INTO `wp_rg_form_view` VALUES("39916", "3", "2016-10-06 18:04:39", "216.232.157.181", "74");
INSERT INTO `wp_rg_form_view` VALUES("39917", "13", "2016-10-06 18:05:01", "216.232.157.181", "13");
INSERT INTO `wp_rg_form_view` VALUES("39918", "10", "2016-10-06 18:05:02", "216.232.157.181", "37");
INSERT INTO `wp_rg_form_view` VALUES("39919", "10", "2016-10-06 19:01:30", "157.55.39.65", "74");
INSERT INTO `wp_rg_form_view` VALUES("39920", "3", "2016-10-06 19:01:30", "157.55.39.65", "146");
INSERT INTO `wp_rg_form_view` VALUES("39921", "13", "2016-10-06 19:01:30", "157.55.39.65", "24");
INSERT INTO `wp_rg_form_view` VALUES("39922", "2", "2016-10-06 19:07:36", "111.250.109.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("39923", "3", "2016-10-06 20:16:58", "157.55.39.115", "153");
INSERT INTO `wp_rg_form_view` VALUES("39924", "13", "2016-10-06 20:16:58", "157.55.39.115", "26");
INSERT INTO `wp_rg_form_view` VALUES("39925", "10", "2016-10-06 20:16:58", "157.55.39.115", "75");
INSERT INTO `wp_rg_form_view` VALUES("39926", "11", "2016-10-06 20:30:08", "104.236.227.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("39927", "2", "2016-10-06 20:30:09", "104.236.227.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("39928", "3", "2016-10-06 21:10:50", "184.66.37.111", "349");
INSERT INTO `wp_rg_form_view` VALUES("39929", "13", "2016-10-06 21:10:51", "184.66.37.111", "58");
INSERT INTO `wp_rg_form_view` VALUES("39930", "10", "2016-10-06 21:10:51", "184.66.37.111", "169");
INSERT INTO `wp_rg_form_view` VALUES("39931", "2", "2016-10-06 21:16:33", "174.127.133.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("39932", "11", "2016-10-06 21:20:01", "174.127.133.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("39933", "5", "2016-10-06 21:44:12", "66.249.79.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("39934", "1", "2016-10-06 21:53:24", "174.127.133.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("39935", "3", "2016-10-06 22:06:45", "207.46.13.19", "40");
INSERT INTO `wp_rg_form_view` VALUES("39936", "13", "2016-10-06 22:06:45", "207.46.13.19", "7");
INSERT INTO `wp_rg_form_view` VALUES("39937", "10", "2016-10-06 22:06:45", "207.46.13.19", "24");
INSERT INTO `wp_rg_form_view` VALUES("39938", "3", "2016-10-06 23:21:28", "24.68.143.210", "20");
INSERT INTO `wp_rg_form_view` VALUES("39939", "13", "2016-10-06 23:21:34", "24.68.143.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("39940", "10", "2016-10-06 23:21:34", "24.68.143.210", "16");
INSERT INTO `wp_rg_form_view` VALUES("39941", "1", "2016-10-06 23:54:09", "192.227.179.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("39942", "3", "2016-10-07 00:03:40", "66.249.79.112", "23");
INSERT INTO `wp_rg_form_view` VALUES("39943", "13", "2016-10-07 00:03:40", "66.249.79.112", "4");
INSERT INTO `wp_rg_form_view` VALUES("39944", "10", "2016-10-07 00:03:40", "66.249.79.112", "17");
INSERT INTO `wp_rg_form_view` VALUES("39945", "8", "2016-10-07 00:29:01", "207.46.13.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("39946", "3", "2016-10-07 01:10:24", "66.249.79.108", "32");
INSERT INTO `wp_rg_form_view` VALUES("39947", "13", "2016-10-07 01:10:24", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("39948", "10", "2016-10-07 01:10:24", "66.249.79.108", "24");
INSERT INTO `wp_rg_form_view` VALUES("39949", "2", "2016-10-07 01:14:12", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("39950", "1", "2016-10-07 02:03:11", "198.52.240.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("39951", "3", "2016-10-07 02:03:12", "198.52.240.41", "71");
INSERT INTO `wp_rg_form_view` VALUES("39952", "13", "2016-10-07 02:03:12", "198.52.240.41", "13");
INSERT INTO `wp_rg_form_view` VALUES("39953", "10", "2016-10-07 02:03:12", "198.52.240.41", "52");
INSERT INTO `wp_rg_form_view` VALUES("39954", "3", "2016-10-07 03:02:35", "144.76.29.66", "85");
INSERT INTO `wp_rg_form_view` VALUES("39955", "13", "2016-10-07 03:02:36", "144.76.29.66", "16");
INSERT INTO `wp_rg_form_view` VALUES("39956", "10", "2016-10-07 03:02:36", "144.76.29.66", "72");
INSERT INTO `wp_rg_form_view` VALUES("39957", "5", "2016-10-07 03:31:06", "77.75.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("39958", "3", "2016-10-07 04:04:42", "157.55.39.65", "27");
INSERT INTO `wp_rg_form_view` VALUES("39959", "13", "2016-10-07 04:04:42", "157.55.39.65", "5");
INSERT INTO `wp_rg_form_view` VALUES("39960", "10", "2016-10-07 04:04:42", "157.55.39.65", "21");
INSERT INTO `wp_rg_form_view` VALUES("39961", "3", "2016-10-07 05:24:16", "66.249.79.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("39962", "13", "2016-10-07 05:24:16", "66.249.79.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("39963", "10", "2016-10-07 05:24:16", "66.249.79.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("39964", "3", "2016-10-07 06:09:41", "157.55.39.65", "73");
INSERT INTO `wp_rg_form_view` VALUES("39965", "13", "2016-10-07 06:09:44", "157.55.39.65", "13");
INSERT INTO `wp_rg_form_view` VALUES("39966", "10", "2016-10-07 06:09:44", "157.55.39.65", "53");
INSERT INTO `wp_rg_form_view` VALUES("39967", "12", "2016-10-07 06:13:18", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("39968", "3", "2016-10-07 07:19:54", "202.46.54.116", "22");
INSERT INTO `wp_rg_form_view` VALUES("39969", "13", "2016-10-07 07:19:54", "202.46.54.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("39970", "10", "2016-10-07 07:19:54", "202.46.54.116", "12");
INSERT INTO `wp_rg_form_view` VALUES("39971", "3", "2016-10-07 08:26:53", "202.46.58.137", "21");
INSERT INTO `wp_rg_form_view` VALUES("39972", "13", "2016-10-07 08:26:53", "202.46.58.137", "4");
INSERT INTO `wp_rg_form_view` VALUES("39973", "10", "2016-10-07 08:26:53", "202.46.58.137", "16");
INSERT INTO `wp_rg_form_view` VALUES("39974", "8", "2016-10-07 09:00:22", "202.46.50.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("39975", "3", "2016-10-07 09:00:22", "202.46.50.150", "45");
INSERT INTO `wp_rg_form_view` VALUES("39976", "13", "2016-10-07 09:00:22", "202.46.50.150", "9");
INSERT INTO `wp_rg_form_view` VALUES("39977", "10", "2016-10-07 09:00:22", "202.46.50.150", "36");
INSERT INTO `wp_rg_form_view` VALUES("39978", "3", "2016-10-07 10:05:46", "5.9.112.6", "31");
INSERT INTO `wp_rg_form_view` VALUES("39979", "13", "2016-10-07 10:05:46", "5.9.112.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("39980", "10", "2016-10-07 10:05:46", "5.9.112.6", "24");
INSERT INTO `wp_rg_form_view` VALUES("39981", "2", "2016-10-07 10:08:14", "120.52.73.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("39982", "3", "2016-10-07 11:05:03", "157.55.39.65", "20");
INSERT INTO `wp_rg_form_view` VALUES("39983", "13", "2016-10-07 11:05:03", "157.55.39.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("39984", "10", "2016-10-07 11:05:03", "157.55.39.65", "16");
INSERT INTO `wp_rg_form_view` VALUES("39985", "3", "2016-10-07 12:04:50", "51.255.65.38", "27");
INSERT INTO `wp_rg_form_view` VALUES("39986", "13", "2016-10-07 12:04:50", "51.255.65.38", "5");
INSERT INTO `wp_rg_form_view` VALUES("39987", "10", "2016-10-07 12:04:50", "51.255.65.38", "21");
INSERT INTO `wp_rg_form_view` VALUES("39988", "3", "2016-10-07 13:01:38", "192.243.55.129", "30");
INSERT INTO `wp_rg_form_view` VALUES("39989", "13", "2016-10-07 13:01:38", "192.243.55.129", "6");
INSERT INTO `wp_rg_form_view` VALUES("39990", "10", "2016-10-07 13:01:38", "192.243.55.129", "25");
INSERT INTO `wp_rg_form_view` VALUES("39991", "3", "2016-10-07 14:12:45", "163.172.51.216", "64");
INSERT INTO `wp_rg_form_view` VALUES("39992", "13", "2016-10-07 14:12:45", "163.172.51.216", "12");
INSERT INTO `wp_rg_form_view` VALUES("39993", "10", "2016-10-07 14:12:45", "163.172.51.216", "44");
INSERT INTO `wp_rg_form_view` VALUES("39994", "3", "2016-10-07 15:06:45", "45.32.129.200", "75");
INSERT INTO `wp_rg_form_view` VALUES("39995", "13", "2016-10-07 15:06:47", "45.32.129.200", "15");
INSERT INTO `wp_rg_form_view` VALUES("39996", "10", "2016-10-07 15:06:47", "45.32.129.200", "60");
INSERT INTO `wp_rg_form_view` VALUES("39997", "2", "2016-10-07 15:06:56", "45.32.129.200", "3");
INSERT INTO `wp_rg_form_view` VALUES("39998", "3", "2016-10-07 16:08:03", "66.249.79.108", "31");
INSERT INTO `wp_rg_form_view` VALUES("39999", "13", "2016-10-07 16:08:03", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("40000", "10", "2016-10-07 16:08:03", "66.249.79.108", "24");
INSERT INTO `wp_rg_form_view` VALUES("40001", "12", "2016-10-07 16:12:19", "157.55.39.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("40002", "3", "2016-10-07 17:09:15", "68.180.230.168", "75");
INSERT INTO `wp_rg_form_view` VALUES("40003", "13", "2016-10-07 17:09:15", "68.180.230.168", "15");
INSERT INTO `wp_rg_form_view` VALUES("40004", "10", "2016-10-07 17:09:15", "68.180.230.168", "60");
INSERT INTO `wp_rg_form_view` VALUES("40005", "1", "2016-10-07 17:20:38", "162.156.84.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("40006", "3", "2016-10-07 18:14:00", "192.243.55.137", "15");
INSERT INTO `wp_rg_form_view` VALUES("40007", "13", "2016-10-07 18:14:00", "192.243.55.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("40008", "10", "2016-10-07 18:14:00", "192.243.55.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("40009", "3", "2016-10-07 19:01:51", "207.46.13.19", "64");
INSERT INTO `wp_rg_form_view` VALUES("40010", "13", "2016-10-07 19:01:52", "207.46.13.19", "12");
INSERT INTO `wp_rg_form_view` VALUES("40011", "10", "2016-10-07 19:01:52", "207.46.13.19", "48");
INSERT INTO `wp_rg_form_view` VALUES("40012", "12", "2016-10-07 19:31:54", "202.46.50.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("40013", "1", "2016-10-07 19:48:58", "23.94.52.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("40014", "3", "2016-10-07 20:15:44", "207.46.13.19", "5");
INSERT INTO `wp_rg_form_view` VALUES("40015", "13", "2016-10-07 20:15:44", "207.46.13.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("40016", "10", "2016-10-07 20:15:44", "207.46.13.19", "4");
INSERT INTO `wp_rg_form_view` VALUES("40017", "10", "2016-10-07 21:23:23", "207.46.13.19", "22");
INSERT INTO `wp_rg_form_view` VALUES("40018", "3", "2016-10-07 21:23:29", "207.46.13.19", "26");
INSERT INTO `wp_rg_form_view` VALUES("40019", "13", "2016-10-07 21:23:29", "207.46.13.19", "5");
INSERT INTO `wp_rg_form_view` VALUES("40020", "3", "2016-10-07 22:20:31", "192.243.55.129", "27");
INSERT INTO `wp_rg_form_view` VALUES("40021", "13", "2016-10-07 22:20:33", "192.243.55.129", "5");
INSERT INTO `wp_rg_form_view` VALUES("40022", "10", "2016-10-07 22:20:33", "192.243.55.129", "21");
INSERT INTO `wp_rg_form_view` VALUES("40023", "3", "2016-10-07 23:33:28", "68.180.230.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("40024", "13", "2016-10-07 23:33:28", "68.180.230.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("40025", "10", "2016-10-07 23:33:28", "68.180.230.168", "8");
INSERT INTO `wp_rg_form_view` VALUES("40026", "10", "2016-10-08 00:39:33", "157.55.39.65", "53");
INSERT INTO `wp_rg_form_view` VALUES("40027", "3", "2016-10-08 00:39:34", "157.55.39.65", "67");
INSERT INTO `wp_rg_form_view` VALUES("40028", "13", "2016-10-08 00:39:35", "157.55.39.65", "13");
INSERT INTO `wp_rg_form_view` VALUES("40029", "3", "2016-10-08 01:31:30", "149.56.135.240", "10");
INSERT INTO `wp_rg_form_view` VALUES("40030", "13", "2016-10-08 01:31:30", "149.56.135.240", "2");
INSERT INTO `wp_rg_form_view` VALUES("40031", "10", "2016-10-08 01:31:30", "149.56.135.240", "8");
INSERT INTO `wp_rg_form_view` VALUES("40032", "3", "2016-10-08 02:08:11", "163.172.66.167", "28");
INSERT INTO `wp_rg_form_view` VALUES("40033", "13", "2016-10-08 02:08:11", "163.172.66.167", "5");
INSERT INTO `wp_rg_form_view` VALUES("40034", "10", "2016-10-08 02:08:11", "163.172.66.167", "20");
INSERT INTO `wp_rg_form_view` VALUES("40035", "3", "2016-10-08 03:39:43", "207.46.13.19", "22");
INSERT INTO `wp_rg_form_view` VALUES("40036", "13", "2016-10-08 03:39:44", "207.46.13.19", "4");
INSERT INTO `wp_rg_form_view` VALUES("40037", "10", "2016-10-08 03:39:44", "207.46.13.19", "16");
INSERT INTO `wp_rg_form_view` VALUES("40038", "3", "2016-10-08 04:04:28", "157.55.39.65", "49");
INSERT INTO `wp_rg_form_view` VALUES("40039", "13", "2016-10-08 04:04:28", "157.55.39.65", "9");
INSERT INTO `wp_rg_form_view` VALUES("40040", "10", "2016-10-08 04:04:28", "157.55.39.65", "36");
INSERT INTO `wp_rg_form_view` VALUES("40041", "13", "2016-10-08 05:07:08", "66.249.79.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("40042", "10", "2016-10-08 05:07:08", "66.249.79.108", "43");
INSERT INTO `wp_rg_form_view` VALUES("40043", "3", "2016-10-08 05:07:08", "66.249.79.108", "49");
INSERT INTO `wp_rg_form_view` VALUES("40044", "9", "2016-10-08 05:19:05", "157.55.39.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("40045", "3", "2016-10-08 06:01:59", "157.55.39.65", "31");
INSERT INTO `wp_rg_form_view` VALUES("40046", "13", "2016-10-08 06:01:59", "157.55.39.65", "6");
INSERT INTO `wp_rg_form_view` VALUES("40047", "10", "2016-10-08 06:02:00", "157.55.39.65", "24");
INSERT INTO `wp_rg_form_view` VALUES("40048", "3", "2016-10-08 07:05:09", "192.243.55.137", "10");
INSERT INTO `wp_rg_form_view` VALUES("40049", "13", "2016-10-08 07:05:09", "192.243.55.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("40050", "10", "2016-10-08 07:05:09", "192.243.55.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("40051", "3", "2016-10-08 08:08:19", "220.181.108.107", "32");
INSERT INTO `wp_rg_form_view` VALUES("40052", "13", "2016-10-08 08:08:19", "220.181.108.107", "6");
INSERT INTO `wp_rg_form_view` VALUES("40053", "10", "2016-10-08 08:08:19", "220.181.108.107", "24");
INSERT INTO `wp_rg_form_view` VALUES("40054", "3", "2016-10-08 09:06:04", "163.172.65.183", "26");
INSERT INTO `wp_rg_form_view` VALUES("40055", "13", "2016-10-08 09:06:04", "163.172.65.183", "5");
INSERT INTO `wp_rg_form_view` VALUES("40056", "10", "2016-10-08 09:06:04", "163.172.65.183", "20");
INSERT INTO `wp_rg_form_view` VALUES("40057", "9", "2016-10-08 09:43:47", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("40058", "3", "2016-10-08 10:54:01", "77.75.76.172", "5");
INSERT INTO `wp_rg_form_view` VALUES("40059", "13", "2016-10-08 10:54:02", "77.75.76.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("40060", "10", "2016-10-08 10:54:02", "77.75.76.172", "4");
INSERT INTO `wp_rg_form_view` VALUES("40061", "3", "2016-10-08 11:01:35", "151.80.31.154", "48");
INSERT INTO `wp_rg_form_view` VALUES("40062", "13", "2016-10-08 11:01:35", "151.80.31.154", "9");
INSERT INTO `wp_rg_form_view` VALUES("40063", "10", "2016-10-08 11:01:35", "151.80.31.154", "37");
INSERT INTO `wp_rg_form_view` VALUES("40064", "11", "2016-10-08 11:11:14", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("40065", "10", "2016-10-08 12:08:28", "157.55.39.26", "37");
INSERT INTO `wp_rg_form_view` VALUES("40066", "3", "2016-10-08 12:08:29", "157.55.39.26", "48");
INSERT INTO `wp_rg_form_view` VALUES("40067", "13", "2016-10-08 12:08:29", "157.55.39.26", "9");
INSERT INTO `wp_rg_form_view` VALUES("40068", "7", "2016-10-08 13:20:22", "157.55.39.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("40069", "3", "2016-10-08 13:20:23", "157.55.39.26", "497");
INSERT INTO `wp_rg_form_view` VALUES("40070", "13", "2016-10-08 13:20:23", "157.55.39.26", "100");
INSERT INTO `wp_rg_form_view` VALUES("40071", "10", "2016-10-08 13:20:23", "157.55.39.26", "388");
INSERT INTO `wp_rg_form_view` VALUES("40072", "2", "2016-10-08 13:53:35", "54.149.128.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("40073", "11", "2016-10-08 13:54:31", "54.149.128.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("40074", "10", "2016-10-08 14:00:14", "194.187.170.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("40075", "3", "2016-10-08 14:00:14", "194.187.170.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("40076", "13", "2016-10-08 14:00:14", "194.187.170.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("40077", "10", "2016-10-08 15:23:33", "164.132.161.75", "10");
INSERT INTO `wp_rg_form_view` VALUES("40078", "3", "2016-10-08 15:23:35", "164.132.161.75", "10");
INSERT INTO `wp_rg_form_view` VALUES("40079", "13", "2016-10-08 15:23:35", "164.132.161.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("40080", "13", "2016-10-08 16:10:31", "207.46.13.19", "3");
INSERT INTO `wp_rg_form_view` VALUES("40081", "3", "2016-10-08 16:10:31", "207.46.13.19", "11");
INSERT INTO `wp_rg_form_view` VALUES("40082", "10", "2016-10-08 16:10:32", "207.46.13.19", "8");
INSERT INTO `wp_rg_form_view` VALUES("40083", "3", "2016-10-08 17:08:04", "66.249.79.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("40084", "13", "2016-10-08 17:08:04", "66.249.79.112", "5");
INSERT INTO `wp_rg_form_view` VALUES("40085", "10", "2016-10-08 17:08:04", "66.249.79.112", "20");
INSERT INTO `wp_rg_form_view` VALUES("40086", "3", "2016-10-08 18:03:30", "68.180.230.168", "42");
INSERT INTO `wp_rg_form_view` VALUES("40087", "13", "2016-10-08 18:03:31", "68.180.230.168", "8");
INSERT INTO `wp_rg_form_view` VALUES("40088", "10", "2016-10-08 18:03:31", "68.180.230.168", "32");
INSERT INTO `wp_rg_form_view` VALUES("40089", "13", "2016-10-08 19:05:02", "220.181.108.122", "8");
INSERT INTO `wp_rg_form_view` VALUES("40090", "3", "2016-10-08 19:05:03", "220.181.108.122", "36");
INSERT INTO `wp_rg_form_view` VALUES("40091", "10", "2016-10-08 19:05:03", "220.181.108.122", "25");
INSERT INTO `wp_rg_form_view` VALUES("40092", "1", "2016-10-08 19:11:49", "104.168.92.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("40093", "3", "2016-10-08 20:21:07", "157.55.39.103", "27");
INSERT INTO `wp_rg_form_view` VALUES("40094", "13", "2016-10-08 20:21:07", "157.55.39.103", "5");
INSERT INTO `wp_rg_form_view` VALUES("40095", "10", "2016-10-08 20:21:07", "157.55.39.103", "20");
INSERT INTO `wp_rg_form_view` VALUES("40096", "3", "2016-10-08 21:02:26", "66.249.79.108", "98");
INSERT INTO `wp_rg_form_view` VALUES("40097", "13", "2016-10-08 21:02:26", "66.249.79.108", "19");
INSERT INTO `wp_rg_form_view` VALUES("40098", "10", "2016-10-08 21:02:26", "66.249.79.108", "77");
INSERT INTO `wp_rg_form_view` VALUES("40099", "1", "2016-10-08 21:16:34", "192.210.195.119", "3");
INSERT INTO `wp_rg_form_view` VALUES("40100", "3", "2016-10-08 22:40:46", "66.249.79.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("40101", "13", "2016-10-08 22:40:47", "66.249.79.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("40102", "10", "2016-10-08 22:40:47", "66.249.79.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("40103", "3", "2016-10-08 23:22:49", "207.46.13.19", "16");
INSERT INTO `wp_rg_form_view` VALUES("40104", "13", "2016-10-08 23:22:49", "207.46.13.19", "3");
INSERT INTO `wp_rg_form_view` VALUES("40105", "10", "2016-10-08 23:22:50", "207.46.13.19", "12");
INSERT INTO `wp_rg_form_view` VALUES("40106", "6", "2016-10-08 23:31:06", "207.46.13.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("40107", "3", "2016-10-09 00:13:18", "40.77.167.94", "31");
INSERT INTO `wp_rg_form_view` VALUES("40108", "13", "2016-10-09 00:31:19", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("40109", "10", "2016-10-09 00:31:19", "66.249.79.104", "24");
INSERT INTO `wp_rg_form_view` VALUES("40110", "3", "2016-10-09 01:02:09", "51.254.32.77", "60");
INSERT INTO `wp_rg_form_view` VALUES("40111", "13", "2016-10-09 01:02:27", "51.254.32.77", "11");
INSERT INTO `wp_rg_form_view` VALUES("40112", "10", "2016-10-09 01:02:27", "51.254.32.77", "44");
INSERT INTO `wp_rg_form_view` VALUES("40113", "3", "2016-10-09 02:22:00", "40.77.167.94", "56");
INSERT INTO `wp_rg_form_view` VALUES("40114", "13", "2016-10-09 02:22:01", "40.77.167.94", "11");
INSERT INTO `wp_rg_form_view` VALUES("40115", "10", "2016-10-09 02:22:01", "40.77.167.94", "44");
INSERT INTO `wp_rg_form_view` VALUES("40116", "1", "2016-10-09 02:45:47", "108.172.100.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("40117", "5", "2016-10-09 03:36:32", "62.210.143.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("40118", "3", "2016-10-09 03:36:33", "62.210.143.245", "22");
INSERT INTO `wp_rg_form_view` VALUES("40119", "13", "2016-10-09 03:36:33", "62.210.143.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("40120", "10", "2016-10-09 03:36:34", "62.210.143.245", "16");
INSERT INTO `wp_rg_form_view` VALUES("40121", "10", "2016-10-09 04:46:17", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("40122", "3", "2016-10-09 04:51:51", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("40123", "13", "2016-10-09 04:51:51", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("40124", "3", "2016-10-09 05:09:31", "66.249.79.104", "25");
INSERT INTO `wp_rg_form_view` VALUES("40125", "13", "2016-10-09 05:09:32", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("40126", "10", "2016-10-09 05:09:32", "66.249.79.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("40127", "10", "2016-10-09 06:04:57", "66.249.79.108", "33");
INSERT INTO `wp_rg_form_view` VALUES("40128", "3", "2016-10-09 06:04:58", "66.249.79.108", "43");
INSERT INTO `wp_rg_form_view` VALUES("40129", "13", "2016-10-09 06:04:58", "66.249.79.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("40130", "3", "2016-10-09 07:11:10", "202.46.56.134", "15");
INSERT INTO `wp_rg_form_view` VALUES("40131", "13", "2016-10-09 07:11:11", "202.46.56.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("40132", "10", "2016-10-09 07:11:11", "202.46.56.134", "12");
INSERT INTO `wp_rg_form_view` VALUES("40133", "3", "2016-10-09 08:00:50", "68.180.230.168", "11");
INSERT INTO `wp_rg_form_view` VALUES("40134", "13", "2016-10-09 08:00:50", "68.180.230.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("40135", "10", "2016-10-09 08:00:50", "68.180.230.168", "8");
INSERT INTO `wp_rg_form_view` VALUES("40136", "3", "2016-10-09 09:01:07", "163.172.66.100", "15");
INSERT INTO `wp_rg_form_view` VALUES("40137", "13", "2016-10-09 09:01:07", "163.172.66.100", "3");
INSERT INTO `wp_rg_form_view` VALUES("40138", "10", "2016-10-09 09:01:07", "163.172.66.100", "12");
INSERT INTO `wp_rg_form_view` VALUES("40139", "3", "2016-10-09 10:00:04", "68.180.230.168", "26");
INSERT INTO `wp_rg_form_view` VALUES("40140", "13", "2016-10-09 10:00:04", "68.180.230.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("40141", "10", "2016-10-09 10:00:04", "68.180.230.168", "22");
INSERT INTO `wp_rg_form_view` VALUES("40142", "1", "2016-10-09 10:30:23", "46.246.43.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("40143", "3", "2016-10-09 11:37:57", "66.249.79.108", "25");
INSERT INTO `wp_rg_form_view` VALUES("40144", "13", "2016-10-09 11:37:57", "66.249.79.108", "5");
INSERT INTO `wp_rg_form_view` VALUES("40145", "10", "2016-10-09 11:37:57", "66.249.79.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("40146", "12", "2016-10-09 11:59:41", "202.46.56.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("40147", "3", "2016-10-09 12:02:13", "51.255.65.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("40148", "13", "2016-10-09 12:02:13", "51.255.65.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("40149", "10", "2016-10-09 12:02:13", "51.255.65.5", "8");
INSERT INTO `wp_rg_form_view` VALUES("40150", "5", "2016-10-09 12:49:24", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("40151", "3", "2016-10-09 13:35:55", "66.249.79.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("40152", "13", "2016-10-09 13:35:55", "66.249.79.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("40153", "10", "2016-10-09 13:35:55", "66.249.79.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("40154", "3", "2016-10-09 14:43:06", "207.46.13.68", "6");
INSERT INTO `wp_rg_form_view` VALUES("40155", "13", "2016-10-09 14:43:07", "207.46.13.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("40156", "10", "2016-10-09 14:43:07", "207.46.13.68", "4");
INSERT INTO `wp_rg_form_view` VALUES("40157", "3", "2016-10-09 15:24:33", "202.46.58.135", "27");
INSERT INTO `wp_rg_form_view` VALUES("40158", "13", "2016-10-09 15:24:33", "202.46.58.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("40159", "10", "2016-10-09 15:24:33", "202.46.58.135", "20");
INSERT INTO `wp_rg_form_view` VALUES("40160", "3", "2016-10-09 16:16:59", "51.255.65.39", "22");
INSERT INTO `wp_rg_form_view` VALUES("40161", "13", "2016-10-09 16:16:59", "51.255.65.39", "4");
INSERT INTO `wp_rg_form_view` VALUES("40162", "10", "2016-10-09 16:16:59", "51.255.65.39", "16");
INSERT INTO `wp_rg_form_view` VALUES("40163", "3", "2016-10-09 17:38:31", "202.46.52.172", "16");
INSERT INTO `wp_rg_form_view` VALUES("40164", "13", "2016-10-09 17:38:33", "202.46.52.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("40165", "10", "2016-10-09 17:38:33", "202.46.52.172", "12");
INSERT INTO `wp_rg_form_view` VALUES("40166", "3", "2016-10-09 18:16:04", "194.187.170.106", "23");
INSERT INTO `wp_rg_form_view` VALUES("40167", "13", "2016-10-09 18:16:04", "194.187.170.106", "4");
INSERT INTO `wp_rg_form_view` VALUES("40168", "10", "2016-10-09 18:16:04", "194.187.170.106", "16");
INSERT INTO `wp_rg_form_view` VALUES("40169", "3", "2016-10-09 19:28:44", "202.46.51.23", "26");
INSERT INTO `wp_rg_form_view` VALUES("40170", "13", "2016-10-09 19:28:44", "202.46.51.23", "7");
INSERT INTO `wp_rg_form_view` VALUES("40171", "10", "2016-10-09 19:28:45", "202.46.51.23", "20");
INSERT INTO `wp_rg_form_view` VALUES("40172", "5", "2016-10-09 19:57:24", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("40173", "3", "2016-10-09 20:10:15", "194.187.170.106", "13");
INSERT INTO `wp_rg_form_view` VALUES("40174", "13", "2016-10-09 20:10:15", "194.187.170.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("40175", "10", "2016-10-09 20:10:15", "194.187.170.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("40176", "3", "2016-10-09 21:10:36", "164.132.161.46", "25");
INSERT INTO `wp_rg_form_view` VALUES("40177", "13", "2016-10-09 21:10:36", "164.132.161.46", "5");
INSERT INTO `wp_rg_form_view` VALUES("40178", "10", "2016-10-09 21:10:36", "164.132.161.46", "20");
INSERT INTO `wp_rg_form_view` VALUES("40179", "3", "2016-10-09 22:09:29", "24.108.185.25", "16");
INSERT INTO `wp_rg_form_view` VALUES("40180", "13", "2016-10-09 22:09:29", "24.108.185.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("40181", "10", "2016-10-09 22:09:29", "24.108.185.25", "12");
INSERT INTO `wp_rg_form_view` VALUES("40182", "3", "2016-10-09 23:02:46", "163.172.64.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("40183", "13", "2016-10-09 23:02:46", "163.172.64.244", "3");
INSERT INTO `wp_rg_form_view` VALUES("40184", "10", "2016-10-09 23:02:46", "163.172.64.244", "12");
INSERT INTO `wp_rg_form_view` VALUES("40185", "3", "2016-10-10 00:10:58", "220.181.108.79", "40");
INSERT INTO `wp_rg_form_view` VALUES("40186", "13", "2016-10-10 00:10:58", "220.181.108.79", "8");
INSERT INTO `wp_rg_form_view` VALUES("40187", "10", "2016-10-10 00:10:58", "220.181.108.79", "32");
INSERT INTO `wp_rg_form_view` VALUES("40188", "3", "2016-10-10 01:41:58", "220.181.108.101", "10");
INSERT INTO `wp_rg_form_view` VALUES("40189", "13", "2016-10-10 01:41:58", "220.181.108.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("40190", "10", "2016-10-10 01:41:58", "220.181.108.101", "8");
INSERT INTO `wp_rg_form_view` VALUES("40191", "3", "2016-10-10 02:13:44", "217.69.133.229", "16");
INSERT INTO `wp_rg_form_view` VALUES("40192", "13", "2016-10-10 02:13:44", "217.69.133.229", "3");
INSERT INTO `wp_rg_form_view` VALUES("40193", "10", "2016-10-10 02:13:44", "217.69.133.229", "12");
INSERT INTO `wp_rg_form_view` VALUES("40194", "3", "2016-10-10 03:06:49", "108.172.100.97", "419");
INSERT INTO `wp_rg_form_view` VALUES("40195", "13", "2016-10-10 03:06:49", "108.172.100.97", "80");
INSERT INTO `wp_rg_form_view` VALUES("40196", "10", "2016-10-10 03:06:49", "108.172.100.97", "321");
INSERT INTO `wp_rg_form_view` VALUES("40197", "9", "2016-10-10 03:49:29", "157.55.39.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("40198", "8", "2016-10-10 03:49:49", "157.55.39.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("40199", "1", "2016-10-10 03:49:54", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("40200", "2", "2016-10-10 03:49:56", "157.55.39.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("40201", "5", "2016-10-10 03:50:40", "40.77.167.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("40202", "6", "2016-10-10 03:51:02", "40.77.167.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("40203", "11", "2016-10-10 03:57:24", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("40204", "3", "2016-10-10 04:02:45", "68.180.230.168", "187");
INSERT INTO `wp_rg_form_view` VALUES("40205", "13", "2016-10-10 04:02:45", "68.180.230.168", "35");
INSERT INTO `wp_rg_form_view` VALUES("40206", "10", "2016-10-10 04:02:45", "68.180.230.168", "130");
INSERT INTO `wp_rg_form_view` VALUES("40207", "9", "2016-10-10 04:28:54", "40.77.167.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("40208", "3", "2016-10-10 05:22:30", "217.69.133.232", "47");
INSERT INTO `wp_rg_form_view` VALUES("40209", "13", "2016-10-10 05:22:31", "217.69.133.232", "9");
INSERT INTO `wp_rg_form_view` VALUES("40210", "10", "2016-10-10 05:22:31", "217.69.133.232", "37");
INSERT INTO `wp_rg_form_view` VALUES("40211", "1", "2016-10-10 05:35:46", "181.174.186.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("40212", "3", "2016-10-10 06:13:03", "202.46.55.88", "47");
INSERT INTO `wp_rg_form_view` VALUES("40213", "13", "2016-10-10 06:13:04", "202.46.55.88", "9");
INSERT INTO `wp_rg_form_view` VALUES("40214", "10", "2016-10-10 06:13:04", "202.46.55.88", "36");
INSERT INTO `wp_rg_form_view` VALUES("40215", "2", "2016-10-10 06:47:53", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("40216", "3", "2016-10-10 07:20:50", "66.249.79.104", "36");
INSERT INTO `wp_rg_form_view` VALUES("40217", "13", "2016-10-10 07:20:51", "66.249.79.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("40218", "10", "2016-10-10 07:20:51", "66.249.79.104", "28");
INSERT INTO `wp_rg_form_view` VALUES("40219", "3", "2016-10-10 08:06:17", "66.249.79.108", "30");
INSERT INTO `wp_rg_form_view` VALUES("40220", "13", "2016-10-10 08:06:17", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("40221", "10", "2016-10-10 08:06:17", "66.249.79.108", "24");
INSERT INTO `wp_rg_form_view` VALUES("40222", "3", "2016-10-10 09:15:25", "66.249.79.112", "30");
INSERT INTO `wp_rg_form_view` VALUES("40223", "13", "2016-10-10 09:15:25", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("40224", "10", "2016-10-10 09:15:25", "66.249.79.112", "24");
INSERT INTO `wp_rg_form_view` VALUES("40225", "3", "2016-10-10 10:04:45", "217.69.133.228", "57");
INSERT INTO `wp_rg_form_view` VALUES("40226", "13", "2016-10-10 10:04:45", "217.69.133.228", "12");
INSERT INTO `wp_rg_form_view` VALUES("40227", "10", "2016-10-10 10:04:45", "217.69.133.228", "52");
INSERT INTO `wp_rg_form_view` VALUES("40228", "3", "2016-10-10 11:38:40", "217.69.133.232", "16");
INSERT INTO `wp_rg_form_view` VALUES("40229", "13", "2016-10-10 11:38:40", "217.69.133.232", "3");
INSERT INTO `wp_rg_form_view` VALUES("40230", "10", "2016-10-10 11:38:40", "217.69.133.232", "12");
INSERT INTO `wp_rg_form_view` VALUES("40231", "3", "2016-10-10 12:02:28", "157.55.39.248", "41");
INSERT INTO `wp_rg_form_view` VALUES("40232", "13", "2016-10-10 12:02:29", "157.55.39.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("40233", "10", "2016-10-10 12:02:29", "157.55.39.248", "32");
INSERT INTO `wp_rg_form_view` VALUES("40234", "3", "2016-10-10 13:12:56", "217.69.133.69", "26");
INSERT INTO `wp_rg_form_view` VALUES("40235", "13", "2016-10-10 13:12:56", "217.69.133.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("40236", "10", "2016-10-10 13:12:56", "217.69.133.69", "20");
INSERT INTO `wp_rg_form_view` VALUES("40237", "3", "2016-10-10 14:33:09", "36.84.1.254", "15");
INSERT INTO `wp_rg_form_view` VALUES("40238", "13", "2016-10-10 14:33:11", "36.84.1.254", "3");
INSERT INTO `wp_rg_form_view` VALUES("40239", "10", "2016-10-10 14:33:11", "36.84.1.254", "12");
INSERT INTO `wp_rg_form_view` VALUES("40240", "3", "2016-10-10 15:40:10", "66.249.79.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("40241", "13", "2016-10-10 15:40:10", "66.249.79.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("40242", "10", "2016-10-10 15:40:10", "66.249.79.108", "16");
INSERT INTO `wp_rg_form_view` VALUES("40243", "3", "2016-10-10 16:06:34", "68.180.230.168", "33");
INSERT INTO `wp_rg_form_view` VALUES("40244", "13", "2016-10-10 16:06:34", "68.180.230.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("40245", "10", "2016-10-10 16:06:34", "68.180.230.168", "24");
INSERT INTO `wp_rg_form_view` VALUES("40246", "5", "2016-10-10 16:13:50", "164.132.161.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("40247", "3", "2016-10-10 17:09:18", "66.249.79.112", "42");
INSERT INTO `wp_rg_form_view` VALUES("40248", "13", "2016-10-10 17:09:19", "66.249.79.112", "8");
INSERT INTO `wp_rg_form_view` VALUES("40249", "10", "2016-10-10 17:09:19", "66.249.79.112", "32");
INSERT INTO `wp_rg_form_view` VALUES("40250", "11", "2016-10-10 17:56:01", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("40251", "2", "2016-10-10 17:56:26", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("40252", "3", "2016-10-10 18:06:00", "144.76.30.236", "34");
INSERT INTO `wp_rg_form_view` VALUES("40253", "13", "2016-10-10 18:30:28", "46.166.162.96", "6");
INSERT INTO `wp_rg_form_view` VALUES("40254", "10", "2016-10-10 18:30:28", "46.166.162.96", "24");
INSERT INTO `wp_rg_form_view` VALUES("40255", "3", "2016-10-10 19:03:14", "70.67.120.74", "10");
INSERT INTO `wp_rg_form_view` VALUES("40256", "13", "2016-10-10 19:03:14", "70.67.120.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("40257", "10", "2016-10-10 19:03:14", "70.67.120.74", "8");
INSERT INTO `wp_rg_form_view` VALUES("40258", "3", "2016-10-10 21:04:22", "217.69.133.69", "30");
INSERT INTO `wp_rg_form_view` VALUES("40259", "13", "2016-10-10 21:04:24", "217.69.133.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("40260", "10", "2016-10-10 21:04:24", "217.69.133.69", "24");
INSERT INTO `wp_rg_form_view` VALUES("40261", "3", "2016-10-10 22:16:43", "68.180.230.168", "35");
INSERT INTO `wp_rg_form_view` VALUES("40262", "13", "2016-10-10 22:16:45", "68.180.230.168", "7");
INSERT INTO `wp_rg_form_view` VALUES("40263", "10", "2016-10-10 22:16:45", "68.180.230.168", "29");
INSERT INTO `wp_rg_form_view` VALUES("40264", "1", "2016-10-10 22:37:54", "96.50.19.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("40265", "3", "2016-10-10 23:04:51", "77.75.76.161", "37");
INSERT INTO `wp_rg_form_view` VALUES("40266", "13", "2016-10-10 23:04:51", "77.75.76.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("40267", "10", "2016-10-10 23:04:51", "77.75.76.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("40268", "12", "2016-10-10 23:28:04", "157.55.39.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("40269", "9", "2016-10-10 23:31:31", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("40270", "3", "2016-10-11 00:12:06", "217.69.133.69", "27");
INSERT INTO `wp_rg_form_view` VALUES("40271", "13", "2016-10-11 00:12:08", "217.69.133.69", "7");
INSERT INTO `wp_rg_form_view` VALUES("40272", "10", "2016-10-11 00:12:08", "217.69.133.69", "21");
INSERT INTO `wp_rg_form_view` VALUES("40273", "5", "2016-10-11 00:50:14", "62.210.97.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("40274", "13", "2016-10-11 01:15:31", "194.187.170.143", "13");
INSERT INTO `wp_rg_form_view` VALUES("40275", "3", "2016-10-11 01:41:51", "24.68.30.24", "61");
INSERT INTO `wp_rg_form_view` VALUES("40276", "10", "2016-10-11 01:41:51", "24.68.30.24", "48");
INSERT INTO `wp_rg_form_view` VALUES("40277", "1", "2016-10-11 01:47:24", "24.68.30.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("40278", "3", "2016-10-11 02:00:36", "194.187.170.143", "22");
INSERT INTO `wp_rg_form_view` VALUES("40279", "13", "2016-10-11 02:13:31", "173.252.90.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("40280", "10", "2016-10-11 02:13:31", "173.252.90.116", "16");
INSERT INTO `wp_rg_form_view` VALUES("40281", "3", "2016-10-11 03:08:38", "66.249.79.104", "12");
INSERT INTO `wp_rg_form_view` VALUES("40282", "13", "2016-10-11 03:08:39", "66.249.79.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("40283", "10", "2016-10-11 03:08:39", "66.249.79.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("40284", "3", "2016-10-11 04:09:52", "157.55.39.18", "61");
INSERT INTO `wp_rg_form_view` VALUES("40285", "13", "2016-10-11 04:09:52", "157.55.39.18", "11");
INSERT INTO `wp_rg_form_view` VALUES("40286", "10", "2016-10-11 04:09:52", "157.55.39.18", "40");
INSERT INTO `wp_rg_form_view` VALUES("40287", "3", "2016-10-11 05:08:31", "77.75.78.172", "11");
INSERT INTO `wp_rg_form_view` VALUES("40288", "13", "2016-10-11 05:08:31", "77.75.78.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("40289", "10", "2016-10-11 05:08:31", "77.75.78.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("40290", "3", "2016-10-11 06:02:09", "202.46.53.64", "193");
INSERT INTO `wp_rg_form_view` VALUES("40291", "13", "2016-10-11 06:02:10", "202.46.53.64", "39");
INSERT INTO `wp_rg_form_view` VALUES("40292", "10", "2016-10-11 06:02:10", "202.46.53.64", "153");
INSERT INTO `wp_rg_form_view` VALUES("40293", "11", "2016-10-11 06:35:49", "192.99.30.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("40294", "2", "2016-10-11 06:35:52", "192.99.30.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("40295", "3", "2016-10-11 07:04:20", "77.75.76.160", "35");
INSERT INTO `wp_rg_form_view` VALUES("40296", "13", "2016-10-11 07:04:20", "77.75.76.160", "7");
INSERT INTO `wp_rg_form_view` VALUES("40297", "10", "2016-10-11 07:04:20", "77.75.76.160", "28");
INSERT INTO `wp_rg_form_view` VALUES("40298", "3", "2016-10-11 08:02:50", "217.69.133.233", "5");
INSERT INTO `wp_rg_form_view` VALUES("40299", "13", "2016-10-11 08:02:51", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("40300", "10", "2016-10-11 08:02:51", "217.69.133.233", "4");
INSERT INTO `wp_rg_form_view` VALUES("40301", "3", "2016-10-11 09:26:00", "46.4.123.172", "30");
INSERT INTO `wp_rg_form_view` VALUES("40302", "13", "2016-10-11 09:26:00", "46.4.123.172", "6");
INSERT INTO `wp_rg_form_view` VALUES("40303", "10", "2016-10-11 09:26:01", "46.4.123.172", "25");
INSERT INTO `wp_rg_form_view` VALUES("40304", "3", "2016-10-11 10:10:18", "194.187.170.148", "17");
INSERT INTO `wp_rg_form_view` VALUES("40305", "13", "2016-10-11 10:10:19", "194.187.170.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("40306", "10", "2016-10-11 10:10:19", "194.187.170.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("40307", "3", "2016-10-11 11:02:30", "40.77.167.7", "140");
INSERT INTO `wp_rg_form_view` VALUES("40308", "13", "2016-10-11 11:02:30", "40.77.167.7", "28");
INSERT INTO `wp_rg_form_view` VALUES("40309", "10", "2016-10-11 11:02:30", "40.77.167.7", "108");
INSERT INTO `wp_rg_form_view` VALUES("40310", "2", "2016-10-11 11:49:32", "104.236.194.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("40311", "11", "2016-10-11 11:49:33", "104.236.194.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("40312", "13", "2016-10-11 12:17:55", "157.55.39.35", "5");
INSERT INTO `wp_rg_form_view` VALUES("40313", "10", "2016-10-11 12:17:55", "157.55.39.35", "23");
INSERT INTO `wp_rg_form_view` VALUES("40314", "3", "2016-10-11 12:17:55", "157.55.39.35", "22");
INSERT INTO `wp_rg_form_view` VALUES("40315", "3", "2016-10-11 13:26:15", "157.55.39.35", "42");
INSERT INTO `wp_rg_form_view` VALUES("40316", "1", "2016-10-11 13:44:17", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("40317", "13", "2016-10-11 13:44:18", "68.180.230.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("40318", "10", "2016-10-11 13:44:18", "68.180.230.168", "42");
INSERT INTO `wp_rg_form_view` VALUES("40319", "10", "2016-10-11 14:02:29", "157.55.39.156", "17");
INSERT INTO `wp_rg_form_view` VALUES("40320", "3", "2016-10-11 14:02:29", "157.55.39.156", "21");
INSERT INTO `wp_rg_form_view` VALUES("40321", "13", "2016-10-11 14:02:29", "157.55.39.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("40322", "3", "2016-10-11 15:07:01", "202.46.51.20", "52");
INSERT INTO `wp_rg_form_view` VALUES("40323", "13", "2016-10-11 15:07:01", "202.46.51.20", "10");
INSERT INTO `wp_rg_form_view` VALUES("40324", "10", "2016-10-11 15:07:01", "202.46.51.20", "41");
INSERT INTO `wp_rg_form_view` VALUES("40325", "3", "2016-10-11 16:13:58", "202.46.49.131", "26");
INSERT INTO `wp_rg_form_view` VALUES("40326", "13", "2016-10-11 16:13:58", "202.46.49.131", "5");
INSERT INTO `wp_rg_form_view` VALUES("40327", "10", "2016-10-11 16:13:58", "202.46.49.131", "20");
INSERT INTO `wp_rg_form_view` VALUES("40328", "3", "2016-10-11 17:20:57", "202.46.48.84", "33");
INSERT INTO `wp_rg_form_view` VALUES("40329", "13", "2016-10-11 17:20:57", "202.46.48.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("40330", "10", "2016-10-11 17:20:58", "202.46.48.84", "24");
INSERT INTO `wp_rg_form_view` VALUES("40331", "1", "2016-10-11 17:25:26", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("40332", "3", "2016-10-11 18:06:54", "157.55.39.156", "66");
INSERT INTO `wp_rg_form_view` VALUES("40333", "13", "2016-10-11 18:06:54", "157.55.39.156", "13");
INSERT INTO `wp_rg_form_view` VALUES("40334", "10", "2016-10-11 18:06:54", "157.55.39.156", "47");
INSERT INTO `wp_rg_form_view` VALUES("40335", "3", "2016-10-11 19:08:43", "157.55.39.156", "50");
INSERT INTO `wp_rg_form_view` VALUES("40336", "13", "2016-10-11 19:08:43", "157.55.39.156", "10");
INSERT INTO `wp_rg_form_view` VALUES("40337", "10", "2016-10-11 19:08:43", "157.55.39.156", "41");
INSERT INTO `wp_rg_form_view` VALUES("40338", "1", "2016-10-11 20:00:28", "24.108.185.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("40339", "3", "2016-10-11 20:00:28", "24.108.185.106", "61");
INSERT INTO `wp_rg_form_view` VALUES("40340", "13", "2016-10-11 20:00:28", "24.108.185.106", "13");
INSERT INTO `wp_rg_form_view` VALUES("40341", "10", "2016-10-11 20:00:28", "24.108.185.106", "48");
INSERT INTO `wp_rg_form_view` VALUES("40342", "3", "2016-10-11 21:00:31", "77.75.79.36", "57");
INSERT INTO `wp_rg_form_view` VALUES("40343", "13", "2016-10-11 21:00:31", "77.75.79.36", "11");
INSERT INTO `wp_rg_form_view` VALUES("40344", "10", "2016-10-11 21:00:31", "77.75.79.36", "45");
INSERT INTO `wp_rg_form_view` VALUES("40345", "3", "2016-10-11 22:03:17", "77.75.79.72", "23");
INSERT INTO `wp_rg_form_view` VALUES("40346", "13", "2016-10-11 22:03:17", "77.75.79.72", "5");
INSERT INTO `wp_rg_form_view` VALUES("40347", "10", "2016-10-11 22:03:17", "77.75.79.72", "23");
INSERT INTO `wp_rg_form_view` VALUES("40348", "3", "2016-10-11 23:05:17", "77.75.76.169", "46");
INSERT INTO `wp_rg_form_view` VALUES("40349", "13", "2016-10-11 23:05:18", "77.75.76.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("40350", "10", "2016-10-11 23:05:18", "77.75.76.169", "32");
INSERT INTO `wp_rg_form_view` VALUES("40351", "3", "2016-10-12 00:15:41", "77.75.79.101", "64");
INSERT INTO `wp_rg_form_view` VALUES("40352", "13", "2016-10-12 00:15:42", "77.75.79.101", "12");
INSERT INTO `wp_rg_form_view` VALUES("40353", "10", "2016-10-12 00:15:42", "77.75.79.101", "49");
INSERT INTO `wp_rg_form_view` VALUES("40354", "1", "2016-10-12 01:03:33", "113.161.68.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("40355", "3", "2016-10-12 01:03:33", "113.161.68.146", "76");
INSERT INTO `wp_rg_form_view` VALUES("40356", "13", "2016-10-12 01:03:33", "113.161.68.146", "15");
INSERT INTO `wp_rg_form_view` VALUES("40357", "10", "2016-10-12 01:03:33", "113.161.68.146", "63");
INSERT INTO `wp_rg_form_view` VALUES("40358", "10", "2016-10-12 02:08:57", "207.46.13.60", "54");
INSERT INTO `wp_rg_form_view` VALUES("40359", "3", "2016-10-12 02:08:57", "207.46.13.60", "67");
INSERT INTO `wp_rg_form_view` VALUES("40360", "13", "2016-10-12 02:08:57", "207.46.13.60", "13");
INSERT INTO `wp_rg_form_view` VALUES("40361", "1", "2016-10-12 02:51:30", "12.205.66.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("40362", "3", "2016-10-12 03:00:04", "69.165.253.145", "143");
INSERT INTO `wp_rg_form_view` VALUES("40363", "13", "2016-10-12 03:00:04", "69.165.253.145", "29");
INSERT INTO `wp_rg_form_view` VALUES("40364", "10", "2016-10-12 03:00:05", "69.165.253.145", "114");
INSERT INTO `wp_rg_form_view` VALUES("40365", "5", "2016-10-12 03:26:12", "77.75.79.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("40366", "3", "2016-10-12 04:13:38", "157.55.39.156", "42");
INSERT INTO `wp_rg_form_view` VALUES("40367", "13", "2016-10-12 04:13:44", "157.55.39.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("40368", "10", "2016-10-12 04:13:44", "157.55.39.156", "28");
INSERT INTO `wp_rg_form_view` VALUES("40369", "3", "2016-10-12 05:01:04", "40.77.167.67", "136");
INSERT INTO `wp_rg_form_view` VALUES("40370", "13", "2016-10-12 05:01:04", "40.77.167.67", "27");
INSERT INTO `wp_rg_form_view` VALUES("40371", "10", "2016-10-12 05:01:04", "40.77.167.67", "109");
INSERT INTO `wp_rg_form_view` VALUES("40372", "2", "2016-10-12 05:58:25", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("40373", "3", "2016-10-12 06:00:17", "72.76.221.220", "887");
INSERT INTO `wp_rg_form_view` VALUES("40374", "13", "2016-10-12 06:00:17", "72.76.221.220", "178");
INSERT INTO `wp_rg_form_view` VALUES("40375", "10", "2016-10-12 06:00:17", "72.76.221.220", "698");
INSERT INTO `wp_rg_form_view` VALUES("40376", "7", "2016-10-12 06:00:55", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("40377", "11", "2016-10-12 06:01:30", "72.76.221.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("40378", "1", "2016-10-12 06:01:40", "72.76.221.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("40379", "5", "2016-10-12 06:02:20", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("40380", "2", "2016-10-12 06:04:43", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("40381", "8", "2016-10-12 06:12:52", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("40382", "9", "2016-10-12 06:13:05", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("40383", "6", "2016-10-12 06:13:15", "72.76.221.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("40384", "6", "2016-10-12 07:14:49", "202.46.53.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("40385", "3", "2016-10-12 07:14:50", "202.46.53.196", "182");
INSERT INTO `wp_rg_form_view` VALUES("40386", "13", "2016-10-12 07:14:50", "202.46.53.196", "36");
INSERT INTO `wp_rg_form_view` VALUES("40387", "10", "2016-10-12 07:14:50", "202.46.53.196", "144");
INSERT INTO `wp_rg_form_view` VALUES("40388", "11", "2016-10-12 07:15:47", "62.141.38.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("40389", "2", "2016-10-12 07:16:35", "62.141.38.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("40390", "3", "2016-10-12 08:01:52", "157.55.39.35", "32");
INSERT INTO `wp_rg_form_view` VALUES("40391", "13", "2016-10-12 08:01:52", "157.55.39.35", "6");
INSERT INTO `wp_rg_form_view` VALUES("40392", "10", "2016-10-12 08:01:52", "157.55.39.35", "24");
INSERT INTO `wp_rg_form_view` VALUES("40393", "3", "2016-10-12 09:02:40", "86.92.137.47", "161");
INSERT INTO `wp_rg_form_view` VALUES("40394", "13", "2016-10-12 09:02:40", "86.92.137.47", "32");
INSERT INTO `wp_rg_form_view` VALUES("40395", "10", "2016-10-12 09:02:40", "86.92.137.47", "128");
INSERT INTO `wp_rg_form_view` VALUES("40396", "11", "2016-10-12 09:02:43", "86.92.137.47", "2");
INSERT INTO `wp_rg_form_view` VALUES("40397", "2", "2016-10-12 09:03:36", "86.92.137.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("40398", "3", "2016-10-12 10:04:51", "157.55.39.35", "50");
INSERT INTO `wp_rg_form_view` VALUES("40399", "13", "2016-10-12 10:04:51", "157.55.39.35", "10");
INSERT INTO `wp_rg_form_view` VALUES("40400", "10", "2016-10-12 10:04:51", "157.55.39.35", "43");
INSERT INTO `wp_rg_form_view` VALUES("40401", "12", "2016-10-12 10:48:56", "157.55.39.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("40402", "3", "2016-10-12 11:03:28", "66.249.79.112", "36");
INSERT INTO `wp_rg_form_view` VALUES("40403", "13", "2016-10-12 11:03:28", "66.249.79.112", "7");
INSERT INTO `wp_rg_form_view` VALUES("40404", "10", "2016-10-12 11:03:28", "66.249.79.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("40405", "3", "2016-10-12 12:02:12", "198.166.214.5", "63");
INSERT INTO `wp_rg_form_view` VALUES("40406", "13", "2016-10-12 12:02:12", "198.166.214.5", "12");
INSERT INTO `wp_rg_form_view` VALUES("40407", "10", "2016-10-12 12:02:12", "198.166.214.5", "48");
INSERT INTO `wp_rg_form_view` VALUES("40408", "3", "2016-10-12 13:09:35", "157.55.39.27", "20");
INSERT INTO `wp_rg_form_view` VALUES("40409", "10", "2016-10-12 13:29:28", "157.55.39.35", "13");
INSERT INTO `wp_rg_form_view` VALUES("40410", "13", "2016-10-12 13:29:28", "157.55.39.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("40411", "3", "2016-10-12 14:05:58", "66.249.79.104", "36");
INSERT INTO `wp_rg_form_view` VALUES("40412", "13", "2016-10-12 14:05:58", "66.249.79.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("40413", "10", "2016-10-12 14:05:59", "66.249.79.104", "28");
INSERT INTO `wp_rg_form_view` VALUES("40414", "3", "2016-10-12 15:00:17", "157.55.39.27", "76");
INSERT INTO `wp_rg_form_view` VALUES("40415", "13", "2016-10-12 15:00:17", "157.55.39.27", "15");
INSERT INTO `wp_rg_form_view` VALUES("40416", "10", "2016-10-12 15:00:17", "157.55.39.27", "61");
INSERT INTO `wp_rg_form_view` VALUES("40417", "2", "2016-10-12 15:38:23", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("40418", "6", "2016-10-12 15:52:25", "157.55.39.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("40419", "3", "2016-10-12 16:16:01", "184.66.135.78", "66");
INSERT INTO `wp_rg_form_view` VALUES("40420", "13", "2016-10-12 16:16:03", "184.66.135.78", "13");
INSERT INTO `wp_rg_form_view` VALUES("40421", "10", "2016-10-12 16:16:03", "184.66.135.78", "52");
INSERT INTO `wp_rg_form_view` VALUES("40422", "1", "2016-10-12 16:23:59", "184.66.135.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("40423", "3", "2016-10-12 17:01:57", "157.55.39.27", "77");
INSERT INTO `wp_rg_form_view` VALUES("40424", "13", "2016-10-12 17:01:57", "157.55.39.27", "15");
INSERT INTO `wp_rg_form_view` VALUES("40425", "10", "2016-10-12 17:01:57", "157.55.39.27", "60");
INSERT INTO `wp_rg_form_view` VALUES("40426", "2", "2016-10-12 17:35:32", "88.198.208.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("40427", "3", "2016-10-12 18:08:56", "157.55.39.27", "46");
INSERT INTO `wp_rg_form_view` VALUES("40428", "13", "2016-10-12 18:08:56", "157.55.39.27", "9");
INSERT INTO `wp_rg_form_view` VALUES("40429", "10", "2016-10-12 18:08:56", "157.55.39.27", "36");
INSERT INTO `wp_rg_form_view` VALUES("40430", "3", "2016-10-12 19:05:58", "202.46.54.161", "25");
INSERT INTO `wp_rg_form_view` VALUES("40431", "13", "2016-10-12 19:05:58", "202.46.54.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("40432", "10", "2016-10-12 19:05:58", "202.46.54.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("40433", "13", "2016-10-12 20:03:40", "24.69.69.178", "17");
INSERT INTO `wp_rg_form_view` VALUES("40434", "3", "2016-10-12 20:03:41", "24.69.69.178", "73");
INSERT INTO `wp_rg_form_view` VALUES("40435", "10", "2016-10-12 20:03:41", "24.69.69.178", "53");
INSERT INTO `wp_rg_form_view` VALUES("40436", "3", "2016-10-12 21:06:25", "157.55.39.35", "32");
INSERT INTO `wp_rg_form_view` VALUES("40437", "13", "2016-10-12 21:06:25", "157.55.39.35", "6");
INSERT INTO `wp_rg_form_view` VALUES("40438", "10", "2016-10-12 21:06:25", "157.55.39.35", "25");
INSERT INTO `wp_rg_form_view` VALUES("40439", "2", "2016-10-12 21:42:51", "220.181.108.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("40440", "3", "2016-10-12 22:05:50", "207.46.13.29", "31");
INSERT INTO `wp_rg_form_view` VALUES("40441", "13", "2016-10-12 22:05:51", "207.46.13.29", "6");
INSERT INTO `wp_rg_form_view` VALUES("40442", "10", "2016-10-12 22:05:51", "207.46.13.29", "24");
INSERT INTO `wp_rg_form_view` VALUES("40443", "1", "2016-10-12 22:50:24", "24.69.140.243", "2");
INSERT INTO `wp_rg_form_view` VALUES("40444", "3", "2016-10-12 23:22:03", "24.68.227.211", "31");
INSERT INTO `wp_rg_form_view` VALUES("40445", "13", "2016-10-12 23:22:03", "24.68.227.211", "6");
INSERT INTO `wp_rg_form_view` VALUES("40446", "10", "2016-10-12 23:22:03", "24.68.227.211", "25");
INSERT INTO `wp_rg_form_view` VALUES("40447", "1", "2016-10-12 23:23:28", "24.68.227.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("40448", "3", "2016-10-13 00:15:17", "51.255.66.146", "37");
INSERT INTO `wp_rg_form_view` VALUES("40449", "13", "2016-10-13 00:15:17", "51.255.66.146", "8");
INSERT INTO `wp_rg_form_view` VALUES("40450", "10", "2016-10-13 00:15:17", "51.255.66.146", "36");
INSERT INTO `wp_rg_form_view` VALUES("40451", "3", "2016-10-13 01:04:09", "157.55.39.156", "144");
INSERT INTO `wp_rg_form_view` VALUES("40452", "13", "2016-10-13 01:04:09", "157.55.39.156", "28");
INSERT INTO `wp_rg_form_view` VALUES("40453", "10", "2016-10-13 01:04:09", "157.55.39.156", "112");
INSERT INTO `wp_rg_form_view` VALUES("40454", "1", "2016-10-13 01:34:16", "113.255.210.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("40455", "3", "2016-10-13 02:08:52", "77.75.76.161", "57");
INSERT INTO `wp_rg_form_view` VALUES("40456", "13", "2016-10-13 02:08:52", "77.75.76.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("40457", "10", "2016-10-13 02:08:52", "77.75.76.161", "44");
INSERT INTO `wp_rg_form_view` VALUES("40458", "3", "2016-10-13 03:16:06", "157.55.39.156", "10");
INSERT INTO `wp_rg_form_view` VALUES("40459", "13", "2016-10-13 03:16:06", "157.55.39.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("40460", "10", "2016-10-13 03:16:06", "157.55.39.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("40461", "3", "2016-10-13 04:04:38", "77.75.78.163", "47");
INSERT INTO `wp_rg_form_view` VALUES("40462", "13", "2016-10-13 04:04:38", "77.75.78.163", "11");
INSERT INTO `wp_rg_form_view` VALUES("40463", "10", "2016-10-13 04:04:38", "77.75.78.163", "40");
INSERT INTO `wp_rg_form_view` VALUES("40464", "1", "2016-10-13 04:20:28", "178.32.12.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("40465", "3", "2016-10-13 05:00:08", "77.75.78.171", "25");
INSERT INTO `wp_rg_form_view` VALUES("40466", "13", "2016-10-13 05:00:08", "77.75.78.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("40467", "10", "2016-10-13 05:00:08", "77.75.78.171", "20");
INSERT INTO `wp_rg_form_view` VALUES("40468", "3", "2016-10-13 06:02:17", "157.55.39.156", "41");
INSERT INTO `wp_rg_form_view` VALUES("40469", "13", "2016-10-13 06:02:18", "157.55.39.156", "10");
INSERT INTO `wp_rg_form_view` VALUES("40470", "10", "2016-10-13 06:02:18", "157.55.39.156", "32");
INSERT INTO `wp_rg_form_view` VALUES("40471", "8", "2016-10-13 06:27:21", "157.55.39.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("40472", "3", "2016-10-13 07:04:03", "157.55.39.35", "55");
INSERT INTO `wp_rg_form_view` VALUES("40473", "13", "2016-10-13 07:04:03", "157.55.39.35", "11");
INSERT INTO `wp_rg_form_view` VALUES("40474", "10", "2016-10-13 07:04:03", "157.55.39.35", "45");
INSERT INTO `wp_rg_form_view` VALUES("40475", "1", "2016-10-13 07:09:31", "208.99.185.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("40476", "3", "2016-10-13 08:14:04", "157.55.39.27", "69");
INSERT INTO `wp_rg_form_view` VALUES("40477", "13", "2016-10-13 08:14:04", "157.55.39.27", "14");
INSERT INTO `wp_rg_form_view` VALUES("40478", "10", "2016-10-13 08:14:04", "157.55.39.27", "52");
INSERT INTO `wp_rg_form_view` VALUES("40479", "3", "2016-10-13 09:47:40", "192.243.55.129", "10");
INSERT INTO `wp_rg_form_view` VALUES("40480", "13", "2016-10-13 09:47:42", "192.243.55.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("40481", "10", "2016-10-13 09:47:42", "192.243.55.129", "9");
INSERT INTO `wp_rg_form_view` VALUES("40482", "3", "2016-10-13 10:17:25", "157.55.39.27", "38");
INSERT INTO `wp_rg_form_view` VALUES("40483", "13", "2016-10-13 10:17:25", "157.55.39.27", "7");
INSERT INTO `wp_rg_form_view` VALUES("40484", "10", "2016-10-13 10:17:25", "157.55.39.27", "30");
INSERT INTO `wp_rg_form_view` VALUES("40485", "11", "2016-10-13 10:58:10", "157.55.39.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("40486", "3", "2016-10-13 12:09:52", "204.79.180.17", "23");
INSERT INTO `wp_rg_form_view` VALUES("40487", "13", "2016-10-13 12:09:52", "204.79.180.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("40488", "10", "2016-10-13 12:09:53", "204.79.180.17", "16");
INSERT INTO `wp_rg_form_view` VALUES("40489", "13", "2016-10-13 13:09:09", "66.249.79.112", "11");
INSERT INTO `wp_rg_form_view` VALUES("40490", "3", "2016-10-13 13:09:09", "66.249.79.112", "51");
INSERT INTO `wp_rg_form_view` VALUES("40491", "10", "2016-10-13 13:09:09", "66.249.79.112", "36");
INSERT INTO `wp_rg_form_view` VALUES("40492", "3", "2016-10-13 14:00:56", "157.55.39.156", "139");
INSERT INTO `wp_rg_form_view` VALUES("40493", "13", "2016-10-13 14:00:57", "157.55.39.156", "28");
INSERT INTO `wp_rg_form_view` VALUES("40494", "10", "2016-10-13 14:00:57", "157.55.39.156", "108");
INSERT INTO `wp_rg_form_view` VALUES("40495", "11", "2016-10-13 14:24:24", "104.236.244.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("40496", "2", "2016-10-13 14:24:25", "104.236.244.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("40497", "3", "2016-10-13 15:18:45", "202.46.48.190", "52");
INSERT INTO `wp_rg_form_view` VALUES("40498", "13", "2016-10-13 15:18:45", "202.46.48.190", "10");
INSERT INTO `wp_rg_form_view` VALUES("40499", "10", "2016-10-13 15:18:46", "202.46.48.190", "42");
INSERT INTO `wp_rg_form_view` VALUES("40500", "10", "2016-10-13 16:32:28", "192.243.55.137", "23");
INSERT INTO `wp_rg_form_view` VALUES("40501", "3", "2016-10-13 16:32:28", "192.243.55.137", "25");
INSERT INTO `wp_rg_form_view` VALUES("40502", "13", "2016-10-13 16:32:28", "192.243.55.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("40503", "3", "2016-10-13 17:01:48", "157.55.39.217", "44");
INSERT INTO `wp_rg_form_view` VALUES("40504", "13", "2016-10-13 17:01:48", "157.55.39.217", "9");
INSERT INTO `wp_rg_form_view` VALUES("40505", "10", "2016-10-13 17:01:48", "157.55.39.217", "42");
INSERT INTO `wp_rg_form_view` VALUES("40506", "13", "2016-10-13 18:06:39", "68.180.230.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("40507", "3", "2016-10-13 18:11:26", "157.55.39.222", "40");
INSERT INTO `wp_rg_form_view` VALUES("40508", "10", "2016-10-13 18:11:26", "157.55.39.222", "32");
INSERT INTO `wp_rg_form_view` VALUES("40509", "3", "2016-10-13 19:00:16", "157.55.39.156", "115");
INSERT INTO `wp_rg_form_view` VALUES("40510", "13", "2016-10-13 19:00:16", "157.55.39.156", "23");
INSERT INTO `wp_rg_form_view` VALUES("40511", "10", "2016-10-13 19:00:16", "157.55.39.156", "90");
INSERT INTO `wp_rg_form_view` VALUES("40512", "3", "2016-10-13 20:10:44", "157.55.39.156", "33");
INSERT INTO `wp_rg_form_view` VALUES("40513", "13", "2016-10-13 20:10:44", "157.55.39.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("40514", "10", "2016-10-13 20:10:44", "157.55.39.156", "31");
INSERT INTO `wp_rg_form_view` VALUES("40515", "1", "2016-10-13 20:40:41", "87.202.164.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("40516", "3", "2016-10-13 21:05:29", "157.55.39.217", "44");
INSERT INTO `wp_rg_form_view` VALUES("40517", "13", "2016-10-13 21:24:25", "40.77.167.27", "8");
INSERT INTO `wp_rg_form_view` VALUES("40518", "10", "2016-10-13 21:24:25", "40.77.167.27", "32");
INSERT INTO `wp_rg_form_view` VALUES("40519", "3", "2016-10-13 22:22:29", "24.69.72.172", "187");
INSERT INTO `wp_rg_form_view` VALUES("40520", "13", "2016-10-13 22:22:30", "24.69.72.172", "37");
INSERT INTO `wp_rg_form_view` VALUES("40521", "10", "2016-10-13 22:22:30", "24.69.72.172", "148");
INSERT INTO `wp_rg_form_view` VALUES("40522", "11", "2016-10-13 22:23:43", "89.123.19.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("40523", "2", "2016-10-13 22:24:42", "89.123.19.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("40524", "3", "2016-10-13 23:04:33", "192.243.55.130", "31");
INSERT INTO `wp_rg_form_view` VALUES("40525", "13", "2016-10-13 23:04:33", "192.243.55.130", "6");
INSERT INTO `wp_rg_form_view` VALUES("40526", "10", "2016-10-13 23:04:33", "192.243.55.130", "25");
INSERT INTO `wp_rg_form_view` VALUES("40527", "9", "2016-10-13 23:23:27", "157.55.39.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("40528", "3", "2016-10-14 00:00:44", "40.77.167.27", "61");
INSERT INTO `wp_rg_form_view` VALUES("40529", "13", "2016-10-14 00:00:44", "40.77.167.27", "12");
INSERT INTO `wp_rg_form_view` VALUES("40530", "10", "2016-10-14 00:00:44", "40.77.167.27", "49");
INSERT INTO `wp_rg_form_view` VALUES("40531", "1", "2016-10-14 00:04:44", "24.68.152.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("40532", "3", "2016-10-14 01:09:48", "24.70.50.66", "42");
INSERT INTO `wp_rg_form_view` VALUES("40533", "13", "2016-10-14 01:09:48", "24.70.50.66", "8");
INSERT INTO `wp_rg_form_view` VALUES("40534", "10", "2016-10-14 01:09:48", "24.70.50.66", "32");
INSERT INTO `wp_rg_form_view` VALUES("40535", "12", "2016-10-14 01:45:52", "68.180.230.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("40536", "3", "2016-10-14 02:15:42", "66.249.79.104", "44");
INSERT INTO `wp_rg_form_view` VALUES("40537", "13", "2016-10-14 02:15:42", "66.249.79.104", "8");
INSERT INTO `wp_rg_form_view` VALUES("40538", "10", "2016-10-14 02:15:42", "66.249.79.104", "32");
INSERT INTO `wp_rg_form_view` VALUES("40539", "1", "2016-10-14 02:22:02", "123.16.189.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("40540", "3", "2016-10-14 03:33:59", "202.46.51.163", "37");
INSERT INTO `wp_rg_form_view` VALUES("40541", "13", "2016-10-14 03:33:59", "202.46.51.163", "7");
INSERT INTO `wp_rg_form_view` VALUES("40542", "10", "2016-10-14 03:33:59", "202.46.51.163", "28");
INSERT INTO `wp_rg_form_view` VALUES("40543", "3", "2016-10-14 04:00:02", "192.243.55.134", "12");
INSERT INTO `wp_rg_form_view` VALUES("40544", "13", "2016-10-14 04:00:03", "192.243.55.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("40545", "10", "2016-10-14 04:00:03", "192.243.55.134", "8");
INSERT INTO `wp_rg_form_view` VALUES("40546", "13", "2016-10-14 05:01:13", "202.46.58.95", "41");
INSERT INTO `wp_rg_form_view` VALUES("40547", "10", "2016-10-14 05:01:17", "202.46.58.95", "161");
INSERT INTO `wp_rg_form_view` VALUES("40548", "3", "2016-10-14 05:01:18", "202.46.58.95", "204");
INSERT INTO `wp_rg_form_view` VALUES("40549", "2", "2016-10-14 05:30:24", "157.55.39.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("40550", "11", "2016-10-14 05:41:09", "157.55.39.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("40551", "13", "2016-10-14 06:07:23", "192.243.55.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("40552", "3", "2016-10-14 06:07:23", "192.243.55.134", "59");
INSERT INTO `wp_rg_form_view` VALUES("40553", "10", "2016-10-14 06:07:24", "192.243.55.134", "28");
INSERT INTO `wp_rg_form_view` VALUES("40554", "11", "2016-10-14 07:13:36", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("40555", "13", "2016-10-14 07:13:36", "136.243.36.94", "108");
INSERT INTO `wp_rg_form_view` VALUES("40556", "10", "2016-10-14 07:13:36", "136.243.36.94", "422");
INSERT INTO `wp_rg_form_view` VALUES("40557", "3", "2016-10-14 07:13:36", "136.243.36.94", "551");
INSERT INTO `wp_rg_form_view` VALUES("40558", "2", "2016-10-14 07:14:58", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("40559", "12", "2016-10-14 07:20:06", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("40560", "1", "2016-10-14 07:25:29", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("40561", "13", "2016-10-14 08:03:50", "204.79.180.233", "4");
INSERT INTO `wp_rg_form_view` VALUES("40562", "10", "2016-10-14 08:03:50", "204.79.180.233", "16");
INSERT INTO `wp_rg_form_view` VALUES("40563", "3", "2016-10-14 08:03:50", "204.79.180.233", "20");
INSERT INTO `wp_rg_form_view` VALUES("40564", "13", "2016-10-14 09:06:49", "66.249.79.108", "5");
INSERT INTO `wp_rg_form_view` VALUES("40565", "10", "2016-10-14 09:06:49", "66.249.79.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("40566", "3", "2016-10-14 09:06:49", "66.249.79.108", "27");
INSERT INTO `wp_rg_form_view` VALUES("40567", "13", "2016-10-14 10:42:07", "66.249.79.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("40568", "10", "2016-10-14 10:42:07", "66.249.79.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("40569", "3", "2016-10-14 10:42:07", "66.249.79.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("40570", "13", "2016-10-14 11:18:44", "146.185.223.44", "5");
INSERT INTO `wp_rg_form_view` VALUES("40571", "10", "2016-10-14 11:18:44", "146.185.223.44", "20");
INSERT INTO `wp_rg_form_view` VALUES("40572", "3", "2016-10-14 11:18:45", "146.185.223.44", "25");
INSERT INTO `wp_rg_form_view` VALUES("40573", "13", "2016-10-14 12:10:18", "163.172.66.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("40574", "10", "2016-10-14 12:10:19", "163.172.66.161", "29");
INSERT INTO `wp_rg_form_view` VALUES("40575", "3", "2016-10-14 12:10:19", "163.172.66.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("40576", "11", "2016-10-14 12:24:56", "62.210.148.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("40577", "12", "2016-10-14 12:25:22", "62.210.148.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("40578", "1", "2016-10-14 13:16:40", "122.155.3.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("40579", "13", "2016-10-14 13:16:41", "122.155.3.143", "6");
INSERT INTO `wp_rg_form_view` VALUES("40580", "10", "2016-10-14 13:16:43", "122.155.3.143", "25");
INSERT INTO `wp_rg_form_view` VALUES("40581", "3", "2016-10-14 13:16:43", "122.155.3.143", "32");
INSERT INTO `wp_rg_form_view` VALUES("40582", "3", "2016-10-14 14:45:10", "163.172.66.173", "6");
INSERT INTO `wp_rg_form_view` VALUES("40583", "13", "2016-10-14 14:45:10", "163.172.66.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("40584", "10", "2016-10-14 14:45:10", "163.172.66.173", "4");
INSERT INTO `wp_rg_form_view` VALUES("40585", "13", "2016-10-14 15:02:32", "31.16.45.249", "5");
INSERT INTO `wp_rg_form_view` VALUES("40586", "10", "2016-10-14 15:02:32", "31.16.45.249", "20");
INSERT INTO `wp_rg_form_view` VALUES("40587", "3", "2016-10-14 15:02:32", "31.16.45.249", "25");
INSERT INTO `wp_rg_form_view` VALUES("40588", "13", "2016-10-14 16:53:11", "24.68.25.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("40589", "10", "2016-10-14 16:53:20", "24.68.25.82", "8");
INSERT INTO `wp_rg_form_view` VALUES("40590", "3", "2016-10-14 16:53:22", "24.68.25.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("40591", "13", "2016-10-14 17:06:30", "66.249.79.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("40592", "10", "2016-10-14 17:06:30", "66.249.79.108", "32");
INSERT INTO `wp_rg_form_view` VALUES("40593", "3", "2016-10-14 17:06:30", "66.249.79.108", "42");
INSERT INTO `wp_rg_form_view` VALUES("40594", "1", "2016-10-14 17:34:36", "197.5.128.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("40595", "1", "2016-10-14 18:22:38", "5.196.140.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("40596", "13", "2016-10-14 18:22:38", "5.196.140.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("40597", "10", "2016-10-14 18:22:39", "5.196.140.231", "17");
INSERT INTO `wp_rg_form_view` VALUES("40598", "3", "2016-10-14 18:22:39", "5.196.140.231", "21");
INSERT INTO `wp_rg_form_view` VALUES("40599", "13", "2016-10-14 19:00:08", "96.54.198.114", "9");
INSERT INTO `wp_rg_form_view` VALUES("40600", "10", "2016-10-14 19:00:08", "96.54.198.114", "36");
INSERT INTO `wp_rg_form_view` VALUES("40601", "3", "2016-10-14 19:00:08", "96.54.198.114", "48");
INSERT INTO `wp_rg_form_view` VALUES("40602", "13", "2016-10-14 20:02:21", "77.75.76.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("40603", "10", "2016-10-14 20:02:21", "77.75.76.169", "36");
INSERT INTO `wp_rg_form_view` VALUES("40604", "3", "2016-10-14 20:02:21", "77.75.76.169", "45");
INSERT INTO `wp_rg_form_view` VALUES("40605", "1", "2016-10-14 20:03:44", "137.74.46.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("40606", "12", "2016-10-14 21:36:15", "51.255.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("40607", "13", "2016-10-14 21:36:18", "51.255.65.33", "5");
INSERT INTO `wp_rg_form_view` VALUES("40608", "10", "2016-10-14 21:36:19", "51.255.65.33", "20");
INSERT INTO `wp_rg_form_view` VALUES("40609", "3", "2016-10-14 21:36:20", "51.255.65.33", "25");
INSERT INTO `wp_rg_form_view` VALUES("40610", "1", "2016-10-14 21:39:59", "195.155.196.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("40611", "13", "2016-10-14 22:00:26", "163.172.64.183", "13");
INSERT INTO `wp_rg_form_view` VALUES("40612", "10", "2016-10-14 22:00:26", "163.172.64.183", "52");
INSERT INTO `wp_rg_form_view` VALUES("40613", "3", "2016-10-14 22:00:26", "163.172.64.183", "62");
INSERT INTO `wp_rg_form_view` VALUES("40614", "1", "2016-10-14 22:07:38", "46.4.84.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("40615", "13", "2016-10-14 23:00:15", "77.75.77.17", "28");
INSERT INTO `wp_rg_form_view` VALUES("40616", "10", "2016-10-14 23:00:15", "77.75.77.17", "106");
INSERT INTO `wp_rg_form_view` VALUES("40617", "3", "2016-10-14 23:00:15", "77.75.77.17", "138");
INSERT INTO `wp_rg_form_view` VALUES("40618", "13", "2016-10-15 00:39:10", "66.249.84.20", "3");
INSERT INTO `wp_rg_form_view` VALUES("40619", "10", "2016-10-15 00:39:11", "66.249.84.20", "12");
INSERT INTO `wp_rg_form_view` VALUES("40620", "3", "2016-10-15 00:39:11", "66.249.84.20", "16");
INSERT INTO `wp_rg_form_view` VALUES("40621", "12", "2016-10-15 01:03:02", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("40622", "13", "2016-10-15 01:03:02", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("40623", "10", "2016-10-15 01:03:02", "68.180.228.30", "48");
INSERT INTO `wp_rg_form_view` VALUES("40624", "3", "2016-10-15 01:03:02", "68.180.228.30", "67");
INSERT INTO `wp_rg_form_view` VALUES("40625", "13", "2016-10-15 02:13:51", "157.55.39.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("40626", "10", "2016-10-15 02:13:51", "157.55.39.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("40627", "3", "2016-10-15 02:13:51", "157.55.39.156", "5");
INSERT INTO `wp_rg_form_view` VALUES("40628", "13", "2016-10-15 03:40:25", "24.68.4.127", "82");
INSERT INTO `wp_rg_form_view` VALUES("40629", "10", "2016-10-15 03:40:26", "24.68.4.127", "329");
INSERT INTO `wp_rg_form_view` VALUES("40630", "3", "2016-10-15 03:40:27", "24.68.4.127", "435");
INSERT INTO `wp_rg_form_view` VALUES("40631", "9", "2016-10-15 03:46:19", "157.55.39.217", "3");
INSERT INTO `wp_rg_form_view` VALUES("40632", "2", "2016-10-15 03:47:13", "207.46.13.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("40633", "6", "2016-10-15 03:47:35", "157.55.39.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("40634", "5", "2016-10-15 03:47:44", "157.55.39.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("40635", "13", "2016-10-15 04:22:09", "68.180.228.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("40636", "10", "2016-10-15 04:22:09", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("40637", "3", "2016-10-15 04:22:09", "68.180.228.30", "15");
INSERT INTO `wp_rg_form_view` VALUES("40638", "13", "2016-10-15 05:03:41", "154.5.181.100", "11");
INSERT INTO `wp_rg_form_view` VALUES("40639", "10", "2016-10-15 05:03:41", "154.5.181.100", "52");
INSERT INTO `wp_rg_form_view` VALUES("40640", "3", "2016-10-15 05:03:41", "154.5.181.100", "57");
INSERT INTO `wp_rg_form_view` VALUES("40641", "13", "2016-10-15 06:10:25", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("40642", "10", "2016-10-15 06:10:26", "68.180.228.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("40643", "3", "2016-10-15 06:10:26", "68.180.228.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("40644", "13", "2016-10-15 07:19:20", "66.249.79.112", "24");
INSERT INTO `wp_rg_form_view` VALUES("40645", "10", "2016-10-15 07:19:22", "66.249.79.112", "93");
INSERT INTO `wp_rg_form_view` VALUES("40646", "3", "2016-10-15 07:19:22", "66.249.79.112", "128");
INSERT INTO `wp_rg_form_view` VALUES("40647", "8", "2016-10-15 07:29:38", "157.55.39.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("40648", "9", "2016-10-15 07:29:48", "157.55.39.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("40649", "3", "2016-10-15 08:22:07", "202.46.55.170", "11");
INSERT INTO `wp_rg_form_view` VALUES("40650", "13", "2016-10-15 08:22:07", "202.46.55.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("40651", "10", "2016-10-15 08:22:07", "202.46.55.170", "8");
INSERT INTO `wp_rg_form_view` VALUES("40652", "13", "2016-10-15 09:12:54", "66.249.79.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("40653", "10", "2016-10-15 09:12:54", "66.249.79.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("40654", "3", "2016-10-15 09:12:54", "66.249.79.112", "15");
INSERT INTO `wp_rg_form_view` VALUES("40655", "13", "2016-10-15 10:02:34", "202.46.58.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("40656", "10", "2016-10-15 10:02:34", "202.46.58.90", "39");
INSERT INTO `wp_rg_form_view` VALUES("40657", "3", "2016-10-15 10:02:35", "202.46.58.90", "43");
INSERT INTO `wp_rg_form_view` VALUES("40658", "13", "2016-10-15 11:01:27", "66.249.79.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("40659", "10", "2016-10-15 11:01:27", "66.249.79.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("40660", "3", "2016-10-15 11:01:27", "66.249.79.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("40661", "11", "2016-10-15 11:56:45", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("40662", "13", "2016-10-15 12:02:13", "66.249.79.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("40663", "10", "2016-10-15 12:02:15", "66.249.79.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("40664", "3", "2016-10-15 12:02:15", "66.249.79.108", "11");
INSERT INTO `wp_rg_form_view` VALUES("40665", "13", "2016-10-15 13:01:37", "68.180.228.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("40666", "10", "2016-10-15 13:01:37", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("40667", "3", "2016-10-15 13:01:37", "68.180.228.30", "16");
INSERT INTO `wp_rg_form_view` VALUES("40668", "1", "2016-10-15 14:37:35", "104.250.226.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("40669", "13", "2016-10-15 14:37:36", "104.250.226.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("40670", "10", "2016-10-15 14:37:38", "104.250.226.31", "4");
INSERT INTO `wp_rg_form_view` VALUES("40671", "3", "2016-10-15 14:37:38", "104.250.226.31", "5");
INSERT INTO `wp_rg_form_view` VALUES("40672", "13", "2016-10-15 15:20:27", "66.249.79.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("40673", "10", "2016-10-15 15:20:27", "66.249.79.104", "28");
INSERT INTO `wp_rg_form_view` VALUES("40674", "3", "2016-10-15 15:20:27", "66.249.79.104", "35");
INSERT INTO `wp_rg_form_view` VALUES("40675", "1", "2016-10-15 15:58:07", "85.140.173.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("40676", "13", "2016-10-15 16:27:43", "173.234.153.122", "13");
INSERT INTO `wp_rg_form_view` VALUES("40677", "10", "2016-10-15 16:27:43", "173.234.153.122", "49");
INSERT INTO `wp_rg_form_view` VALUES("40678", "3", "2016-10-15 16:27:43", "173.234.153.122", "66");
INSERT INTO `wp_rg_form_view` VALUES("40679", "10", "2016-10-15 17:58:43", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("40680", "13", "2016-10-15 17:58:44", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("40681", "3", "2016-10-15 17:58:44", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("40682", "3", "2016-10-15 18:10:00", "69.30.213.202", "103");
INSERT INTO `wp_rg_form_view` VALUES("40683", "13", "2016-10-15 18:10:00", "69.30.213.202", "20");
INSERT INTO `wp_rg_form_view` VALUES("40684", "10", "2016-10-15 18:10:00", "69.30.213.202", "77");
INSERT INTO `wp_rg_form_view` VALUES("40685", "13", "2016-10-15 19:01:01", "66.249.79.88", "23");
INSERT INTO `wp_rg_form_view` VALUES("40686", "10", "2016-10-15 19:01:01", "66.249.79.88", "92");
INSERT INTO `wp_rg_form_view` VALUES("40687", "3", "2016-10-15 19:01:01", "66.249.79.88", "116");
INSERT INTO `wp_rg_form_view` VALUES("40688", "13", "2016-10-15 20:41:04", "66.249.79.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("40689", "10", "2016-10-15 20:41:04", "66.249.79.108", "16");
INSERT INTO `wp_rg_form_view` VALUES("40690", "3", "2016-10-15 20:41:04", "66.249.79.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("40691", "13", "2016-10-15 21:00:24", "41.66.12.8", "9");
INSERT INTO `wp_rg_form_view` VALUES("40692", "10", "2016-10-15 21:00:24", "41.66.12.8", "34");
INSERT INTO `wp_rg_form_view` VALUES("40693", "3", "2016-10-15 21:00:24", "41.66.12.8", "40");
INSERT INTO `wp_rg_form_view` VALUES("40694", "13", "2016-10-15 22:32:41", "66.249.79.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("40695", "10", "2016-10-15 22:32:43", "66.249.79.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("40696", "3", "2016-10-15 22:32:43", "66.249.79.108", "5");
INSERT INTO `wp_rg_form_view` VALUES("40697", "13", "2016-10-15 23:07:55", "70.66.52.88", "5");
INSERT INTO `wp_rg_form_view` VALUES("40698", "10", "2016-10-15 23:07:56", "70.66.52.88", "20");
INSERT INTO `wp_rg_form_view` VALUES("40699", "3", "2016-10-15 23:07:56", "70.66.52.88", "26");
INSERT INTO `wp_rg_form_view` VALUES("40700", "13", "2016-10-16 00:02:42", "96.54.196.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("40701", "10", "2016-10-16 00:02:42", "96.54.196.51", "13");
INSERT INTO `wp_rg_form_view` VALUES("40702", "3", "2016-10-16 00:02:42", "96.54.196.51", "15");
INSERT INTO `wp_rg_form_view` VALUES("40703", "1", "2016-10-16 01:13:56", "84.194.127.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("40704", "13", "2016-10-16 01:13:57", "84.194.127.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("40705", "10", "2016-10-16 01:13:57", "84.194.127.80", "12");
INSERT INTO `wp_rg_form_view` VALUES("40706", "3", "2016-10-16 01:13:57", "84.194.127.80", "15");
INSERT INTO `wp_rg_form_view` VALUES("40707", "13", "2016-10-16 02:00:02", "108.63.59.7", "9");
INSERT INTO `wp_rg_form_view` VALUES("40708", "10", "2016-10-16 02:00:02", "108.63.59.7", "37");
INSERT INTO `wp_rg_form_view` VALUES("40709", "3", "2016-10-16 02:00:02", "108.63.59.7", "46");
INSERT INTO `wp_rg_form_view` VALUES("40710", "13", "2016-10-16 03:19:51", "202.46.53.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("40711", "10", "2016-10-16 03:19:52", "202.46.53.197", "4");
INSERT INTO `wp_rg_form_view` VALUES("40712", "3", "2016-10-16 03:19:52", "202.46.53.197", "5");
INSERT INTO `wp_rg_form_view` VALUES("40713", "13", "2016-10-16 04:11:19", "51.255.65.87", "7");
INSERT INTO `wp_rg_form_view` VALUES("40714", "10", "2016-10-16 04:11:19", "51.255.65.87", "28");
INSERT INTO `wp_rg_form_view` VALUES("40715", "3", "2016-10-16 04:11:20", "51.255.65.87", "36");
INSERT INTO `wp_rg_form_view` VALUES("40716", "1", "2016-10-16 04:54:20", "207.216.68.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("40717", "13", "2016-10-16 05:00:19", "202.46.54.189", "7");
INSERT INTO `wp_rg_form_view` VALUES("40718", "10", "2016-10-16 05:00:19", "202.46.54.189", "29");
INSERT INTO `wp_rg_form_view` VALUES("40719", "3", "2016-10-16 05:00:19", "202.46.54.189", "35");
INSERT INTO `wp_rg_form_view` VALUES("40720", "1", "2016-10-16 05:18:05", "207.216.68.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("40721", "13", "2016-10-16 06:07:20", "202.46.58.156", "13");
INSERT INTO `wp_rg_form_view` VALUES("40722", "10", "2016-10-16 06:07:20", "202.46.58.156", "52");
INSERT INTO `wp_rg_form_view` VALUES("40723", "3", "2016-10-16 06:07:21", "202.46.58.156", "69");
INSERT INTO `wp_rg_form_view` VALUES("40724", "9", "2016-10-16 06:39:48", "51.254.32.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("40725", "8", "2016-10-16 06:40:01", "51.254.32.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("40726", "13", "2016-10-16 07:03:30", "66.249.79.108", "12");
INSERT INTO `wp_rg_form_view` VALUES("40727", "10", "2016-10-16 07:03:30", "66.249.79.108", "44");
INSERT INTO `wp_rg_form_view` VALUES("40728", "3", "2016-10-16 07:03:30", "66.249.79.108", "57");
INSERT INTO `wp_rg_form_view` VALUES("40729", "5", "2016-10-16 07:45:05", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("40730", "13", "2016-10-16 08:01:27", "70.67.53.106", "4");
INSERT INTO `wp_rg_form_view` VALUES("40731", "10", "2016-10-16 08:01:27", "70.67.53.106", "16");
INSERT INTO `wp_rg_form_view` VALUES("40732", "3", "2016-10-16 08:01:28", "70.67.53.106", "20");
INSERT INTO `wp_rg_form_view` VALUES("40733", "13", "2016-10-16 09:08:03", "66.249.79.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("40734", "10", "2016-10-16 09:08:03", "66.249.79.112", "13");
INSERT INTO `wp_rg_form_view` VALUES("40735", "3", "2016-10-16 09:08:03", "66.249.79.112", "15");
INSERT INTO `wp_rg_form_view` VALUES("40736", "13", "2016-10-16 10:00:06", "68.180.228.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("40737", "10", "2016-10-16 10:00:06", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("40738", "3", "2016-10-16 10:00:06", "68.180.228.30", "15");
INSERT INTO `wp_rg_form_view` VALUES("40739", "13", "2016-10-16 11:10:31", "202.46.56.110", "4");
INSERT INTO `wp_rg_form_view` VALUES("40740", "10", "2016-10-16 11:10:31", "202.46.56.110", "16");
INSERT INTO `wp_rg_form_view` VALUES("40741", "3", "2016-10-16 11:10:31", "202.46.56.110", "20");
INSERT INTO `wp_rg_form_view` VALUES("40742", "13", "2016-10-16 12:01:26", "66.249.79.108", "12");
INSERT INTO `wp_rg_form_view` VALUES("40743", "10", "2016-10-16 12:01:26", "66.249.79.108", "48");
INSERT INTO `wp_rg_form_view` VALUES("40744", "3", "2016-10-16 12:01:26", "66.249.79.108", "61");
INSERT INTO `wp_rg_form_view` VALUES("40745", "13", "2016-10-16 13:28:48", "202.46.51.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("40746", "10", "2016-10-16 13:28:49", "202.46.51.39", "8");
INSERT INTO `wp_rg_form_view` VALUES("40747", "3", "2016-10-16 13:28:49", "202.46.51.39", "10");
INSERT INTO `wp_rg_form_view` VALUES("40748", "13", "2016-10-16 15:14:37", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("40749", "10", "2016-10-16 15:14:39", "66.249.79.108", "26");
INSERT INTO `wp_rg_form_view` VALUES("40750", "3", "2016-10-16 15:14:39", "66.249.79.108", "30");
INSERT INTO `wp_rg_form_view` VALUES("40751", "13", "2016-10-16 16:04:28", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("40752", "10", "2016-10-16 16:04:28", "66.249.79.104", "24");
INSERT INTO `wp_rg_form_view` VALUES("40753", "3", "2016-10-16 16:04:28", "66.249.79.104", "30");
INSERT INTO `wp_rg_form_view` VALUES("40754", "3", "2016-10-16 17:04:11", "164.132.161.92", "49");
INSERT INTO `wp_rg_form_view` VALUES("40755", "13", "2016-10-16 17:04:11", "164.132.161.92", "9");
INSERT INTO `wp_rg_form_view` VALUES("40756", "10", "2016-10-16 17:04:11", "164.132.161.92", "36");
INSERT INTO `wp_rg_form_view` VALUES("40757", "9", "2016-10-16 17:37:51", "173.208.157.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("40758", "8", "2016-10-16 17:37:59", "173.208.157.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("40759", "1", "2016-10-16 17:52:42", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("40760", "13", "2016-10-16 18:03:17", "176.9.10.227", "14");
INSERT INTO `wp_rg_form_view` VALUES("40761", "10", "2016-10-16 18:03:18", "176.9.10.227", "56");
INSERT INTO `wp_rg_form_view` VALUES("40762", "3", "2016-10-16 18:03:18", "176.9.10.227", "72");
INSERT INTO `wp_rg_form_view` VALUES("40763", "13", "2016-10-16 19:05:00", "24.68.144.200", "10");
INSERT INTO `wp_rg_form_view` VALUES("40764", "10", "2016-10-16 19:05:00", "24.68.144.200", "40");
INSERT INTO `wp_rg_form_view` VALUES("40765", "3", "2016-10-16 19:05:00", "24.68.144.200", "50");
INSERT INTO `wp_rg_form_view` VALUES("40766", "13", "2016-10-16 20:10:02", "66.249.79.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("40767", "10", "2016-10-16 20:10:03", "66.249.79.112", "8");
INSERT INTO `wp_rg_form_view` VALUES("40768", "3", "2016-10-16 20:10:03", "66.249.79.112", "10");
INSERT INTO `wp_rg_form_view` VALUES("40769", "11", "2016-10-16 20:30:39", "202.46.54.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("40770", "13", "2016-10-16 21:00:55", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("40771", "10", "2016-10-16 21:00:56", "66.249.79.108", "28");
INSERT INTO `wp_rg_form_view` VALUES("40772", "3", "2016-10-16 21:00:56", "66.249.79.108", "38");
INSERT INTO `wp_rg_form_view` VALUES("40773", "13", "2016-10-16 22:11:09", "202.46.51.180", "3");
INSERT INTO `wp_rg_form_view` VALUES("40774", "10", "2016-10-16 22:11:10", "202.46.51.180", "8");
INSERT INTO `wp_rg_form_view` VALUES("40775", "3", "2016-10-16 22:11:11", "202.46.51.180", "10");
INSERT INTO `wp_rg_form_view` VALUES("40776", "13", "2016-10-16 23:01:01", "163.172.68.133", "7");
INSERT INTO `wp_rg_form_view` VALUES("40777", "10", "2016-10-16 23:01:02", "163.172.68.133", "28");
INSERT INTO `wp_rg_form_view` VALUES("40778", "3", "2016-10-16 23:01:03", "163.172.68.133", "35");
INSERT INTO `wp_rg_form_view` VALUES("40779", "3", "2016-10-17 00:04:22", "77.75.78.164", "312");
INSERT INTO `wp_rg_form_view` VALUES("40780", "13", "2016-10-17 00:04:22", "77.75.78.164", "59");
INSERT INTO `wp_rg_form_view` VALUES("40781", "10", "2016-10-17 00:04:22", "77.75.78.164", "236");
INSERT INTO `wp_rg_form_view` VALUES("40782", "6", "2016-10-17 00:14:46", "157.55.39.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("40783", "5", "2016-10-17 00:14:54", "157.55.39.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("40784", "9", "2016-10-17 00:15:28", "157.55.39.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("40785", "3", "2016-10-17 01:54:33", "66.249.79.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("40786", "13", "2016-10-17 01:54:34", "66.249.79.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("40787", "10", "2016-10-17 01:54:34", "66.249.79.112", "8");
INSERT INTO `wp_rg_form_view` VALUES("40788", "13", "2016-10-17 02:01:44", "96.54.157.64", "5");
INSERT INTO `wp_rg_form_view` VALUES("40789", "10", "2016-10-17 02:01:45", "96.54.157.64", "20");
INSERT INTO `wp_rg_form_view` VALUES("40790", "3", "2016-10-17 02:01:45", "96.54.157.64", "25");
INSERT INTO `wp_rg_form_view` VALUES("40791", "13", "2016-10-17 03:31:04", "24.68.234.166", "3");
INSERT INTO `wp_rg_form_view` VALUES("40792", "10", "2016-10-17 03:31:05", "24.68.234.166", "13");
INSERT INTO `wp_rg_form_view` VALUES("40793", "3", "2016-10-17 03:31:06", "24.68.234.166", "15");
INSERT INTO `wp_rg_form_view` VALUES("40794", "3", "2016-10-17 04:07:45", "68.180.228.30", "26");
INSERT INTO `wp_rg_form_view` VALUES("40795", "13", "2016-10-17 04:07:45", "68.180.228.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("40796", "10", "2016-10-17 04:07:46", "68.180.228.30", "20");
INSERT INTO `wp_rg_form_view` VALUES("40797", "13", "2016-10-17 05:00:53", "66.249.79.112", "8");
INSERT INTO `wp_rg_form_view` VALUES("40798", "10", "2016-10-17 05:00:53", "66.249.79.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("40799", "3", "2016-10-17 05:00:53", "66.249.79.112", "38");
INSERT INTO `wp_rg_form_view` VALUES("40800", "13", "2016-10-17 06:13:19", "24.68.156.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("40801", "10", "2016-10-17 06:13:20", "24.68.156.15", "12");
INSERT INTO `wp_rg_form_view` VALUES("40802", "3", "2016-10-17 06:13:21", "24.68.156.15", "15");
INSERT INTO `wp_rg_form_view` VALUES("40803", "13", "2016-10-17 07:07:25", "70.66.168.88", "39");
INSERT INTO `wp_rg_form_view` VALUES("40804", "10", "2016-10-17 07:07:30", "70.66.168.88", "159");
INSERT INTO `wp_rg_form_view` VALUES("40805", "3", "2016-10-17 07:07:31", "70.66.168.88", "200");
INSERT INTO `wp_rg_form_view` VALUES("40806", "11", "2016-10-17 07:40:36", "62.151.181.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("40807", "2", "2016-10-17 07:41:19", "62.151.181.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("40808", "3", "2016-10-17 08:00:29", "45.59.156.175", "32");
INSERT INTO `wp_rg_form_view` VALUES("40809", "13", "2016-10-17 08:00:29", "45.59.156.175", "6");
INSERT INTO `wp_rg_form_view` VALUES("40810", "10", "2016-10-17 08:00:29", "45.59.156.175", "24");
INSERT INTO `wp_rg_form_view` VALUES("40811", "13", "2016-10-17 09:18:14", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("40812", "10", "2016-10-17 09:18:14", "66.249.79.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("40813", "3", "2016-10-17 09:18:15", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("40814", "13", "2016-10-17 10:06:37", "54.162.220.186", "8");
INSERT INTO `wp_rg_form_view` VALUES("40815", "10", "2016-10-17 10:06:37", "54.162.220.186", "33");
INSERT INTO `wp_rg_form_view` VALUES("40816", "3", "2016-10-17 10:06:37", "54.162.220.186", "41");
INSERT INTO `wp_rg_form_view` VALUES("40817", "2", "2016-10-17 10:33:31", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("40818", "13", "2016-10-17 11:11:13", "163.172.65.54", "5");
INSERT INTO `wp_rg_form_view` VALUES("40819", "10", "2016-10-17 11:11:13", "163.172.65.54", "20");
INSERT INTO `wp_rg_form_view` VALUES("40820", "3", "2016-10-17 11:11:13", "163.172.65.54", "25");
INSERT INTO `wp_rg_form_view` VALUES("40821", "1", "2016-10-17 11:46:35", "156.208.226.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("40822", "13", "2016-10-17 12:03:14", "66.249.79.112", "11");
INSERT INTO `wp_rg_form_view` VALUES("40823", "10", "2016-10-17 12:03:15", "66.249.79.112", "44");
INSERT INTO `wp_rg_form_view` VALUES("40824", "3", "2016-10-17 12:03:15", "66.249.79.112", "57");
INSERT INTO `wp_rg_form_view` VALUES("40825", "1", "2016-10-17 13:34:48", "41.33.238.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("40826", "13", "2016-10-17 13:34:49", "41.33.238.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("40827", "10", "2016-10-17 13:34:49", "41.33.238.168", "12");
INSERT INTO `wp_rg_form_view` VALUES("40828", "3", "2016-10-17 13:34:49", "41.33.238.168", "16");
INSERT INTO `wp_rg_form_view` VALUES("40829", "13", "2016-10-17 14:03:11", "164.132.161.9", "5");
INSERT INTO `wp_rg_form_view` VALUES("40830", "10", "2016-10-17 14:03:11", "164.132.161.9", "20");
INSERT INTO `wp_rg_form_view` VALUES("40831", "3", "2016-10-17 14:03:12", "164.132.161.9", "25");
INSERT INTO `wp_rg_form_view` VALUES("40832", "13", "2016-10-17 15:07:41", "68.180.228.30", "15");
INSERT INTO `wp_rg_form_view` VALUES("40833", "10", "2016-10-17 15:07:42", "68.180.228.30", "56");
INSERT INTO `wp_rg_form_view` VALUES("40834", "3", "2016-10-17 15:07:42", "68.180.228.30", "70");
INSERT INTO `wp_rg_form_view` VALUES("40835", "1", "2016-10-17 15:25:07", "120.52.72.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("40836", "11", "2016-10-17 16:05:42", "220.181.108.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("40837", "13", "2016-10-17 16:05:43", "220.181.108.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("40838", "10", "2016-10-17 16:05:43", "220.181.108.187", "12");
INSERT INTO `wp_rg_form_view` VALUES("40839", "3", "2016-10-17 16:05:43", "220.181.108.187", "16");
INSERT INTO `wp_rg_form_view` VALUES("40840", "13", "2016-10-17 17:33:04", "202.46.58.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("40841", "10", "2016-10-17 17:33:05", "202.46.58.98", "4");
INSERT INTO `wp_rg_form_view` VALUES("40842", "3", "2016-10-17 17:33:06", "202.46.58.98", "5");
INSERT INTO `wp_rg_form_view` VALUES("40843", "13", "2016-10-17 18:05:36", "184.66.26.145", "9");
INSERT INTO `wp_rg_form_view` VALUES("40844", "10", "2016-10-17 18:05:36", "184.66.26.145", "36");
INSERT INTO `wp_rg_form_view` VALUES("40845", "3", "2016-10-17 18:05:36", "184.66.26.145", "45");
INSERT INTO `wp_rg_form_view` VALUES("40846", "13", "2016-10-17 19:12:44", "24.68.20.158", "5");
INSERT INTO `wp_rg_form_view` VALUES("40847", "10", "2016-10-17 19:12:44", "24.68.20.158", "20");
INSERT INTO `wp_rg_form_view` VALUES("40848", "3", "2016-10-17 19:12:44", "24.68.20.158", "25");
INSERT INTO `wp_rg_form_view` VALUES("40849", "1", "2016-10-17 19:54:04", "207.216.68.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("40850", "13", "2016-10-17 20:17:22", "164.132.161.51", "5");
INSERT INTO `wp_rg_form_view` VALUES("40851", "10", "2016-10-17 20:17:33", "164.132.161.51", "20");
INSERT INTO `wp_rg_form_view` VALUES("40852", "3", "2016-10-17 20:17:35", "164.132.161.51", "26");
INSERT INTO `wp_rg_form_view` VALUES("40853", "3", "2016-10-17 21:12:00", "68.180.228.30", "44");
INSERT INTO `wp_rg_form_view` VALUES("40854", "11", "2016-10-17 21:23:02", "202.46.51.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("40855", "13", "2016-10-17 21:23:03", "202.46.51.166", "9");
INSERT INTO `wp_rg_form_view` VALUES("40856", "10", "2016-10-17 21:23:03", "202.46.51.166", "33");
INSERT INTO `wp_rg_form_view` VALUES("40857", "13", "2016-10-17 22:38:58", "68.180.228.30", "18");
INSERT INTO `wp_rg_form_view` VALUES("40858", "3", "2016-10-17 22:39:00", "68.180.228.30", "100");
INSERT INTO `wp_rg_form_view` VALUES("40859", "10", "2016-10-17 22:39:02", "68.180.228.30", "64");
INSERT INTO `wp_rg_form_view` VALUES("40860", "13", "2016-10-17 23:00:05", "62.212.73.211", "8");
INSERT INTO `wp_rg_form_view` VALUES("40861", "10", "2016-10-17 23:00:05", "62.212.73.211", "32");
INSERT INTO `wp_rg_form_view` VALUES("40862", "3", "2016-10-17 23:00:05", "62.212.73.211", "42");
INSERT INTO `wp_rg_form_view` VALUES("40863", "1", "2016-10-17 23:17:07", "24.68.135.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("40864", "13", "2016-10-18 00:12:49", "184.71.21.34", "3");
INSERT INTO `wp_rg_form_view` VALUES("40865", "10", "2016-10-18 00:12:50", "184.71.21.34", "12");
INSERT INTO `wp_rg_form_view` VALUES("40866", "3", "2016-10-18 00:12:50", "184.71.21.34", "15");
INSERT INTO `wp_rg_form_view` VALUES("40867", "13", "2016-10-18 01:15:08", "202.46.53.145", "15");
INSERT INTO `wp_rg_form_view` VALUES("40868", "10", "2016-10-18 01:15:09", "202.46.53.145", "60");
INSERT INTO `wp_rg_form_view` VALUES("40869", "3", "2016-10-18 01:15:09", "202.46.53.145", "80");
INSERT INTO `wp_rg_form_view` VALUES("40870", "10", "2016-10-18 02:17:04", "68.180.228.30", "21");
INSERT INTO `wp_rg_form_view` VALUES("40871", "13", "2016-10-18 02:17:04", "68.180.228.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("40872", "3", "2016-10-18 02:17:04", "68.180.228.30", "26");
INSERT INTO `wp_rg_form_view` VALUES("40873", "3", "2016-10-18 03:09:29", "77.75.76.162", "41");
INSERT INTO `wp_rg_form_view` VALUES("40874", "13", "2016-10-18 03:09:30", "77.75.76.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("40875", "10", "2016-10-18 03:09:30", "77.75.76.162", "33");
INSERT INTO `wp_rg_form_view` VALUES("40876", "1", "2016-10-18 03:38:27", "70.66.162.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("40877", "13", "2016-10-18 04:08:31", "77.75.77.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("40878", "10", "2016-10-18 04:08:31", "77.75.77.17", "12");
INSERT INTO `wp_rg_form_view` VALUES("40879", "3", "2016-10-18 04:08:32", "77.75.77.17", "15");
INSERT INTO `wp_rg_form_view` VALUES("40880", "9", "2016-10-18 04:11:28", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("40881", "5", "2016-10-18 05:06:52", "77.75.78.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("40882", "13", "2016-10-18 05:06:52", "77.75.78.165", "3");
INSERT INTO `wp_rg_form_view` VALUES("40883", "10", "2016-10-18 05:06:52", "77.75.78.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("40884", "3", "2016-10-18 05:06:52", "77.75.78.165", "15");
INSERT INTO `wp_rg_form_view` VALUES("40885", "13", "2016-10-18 06:00:19", "66.249.79.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("40886", "13", "2016-10-18 06:00:19", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("40887", "10", "2016-10-18 06:00:19", "77.75.79.72", "15");
INSERT INTO `wp_rg_form_view` VALUES("40888", "10", "2016-10-18 06:00:19", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("40889", "3", "2016-10-18 06:00:19", "77.75.79.72", "19");
INSERT INTO `wp_rg_form_view` VALUES("40890", "3", "2016-10-18 06:00:19", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("40891", "13", "2016-10-18 07:14:49", "77.75.78.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("40892", "10", "2016-10-18 07:14:49", "77.75.78.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("40893", "3", "2016-10-18 07:14:49", "77.75.78.161", "31");
INSERT INTO `wp_rg_form_view` VALUES("40894", "1", "2016-10-18 07:39:43", "62.210.111.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("40895", "10", "2016-10-18 08:20:57", "68.180.228.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("40896", "13", "2016-10-18 08:20:57", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("40897", "3", "2016-10-18 08:20:57", "68.180.228.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("40898", "13", "2016-10-18 09:01:27", "202.46.58.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("40899", "10", "2016-10-18 09:01:28", "202.46.58.73", "22");
INSERT INTO `wp_rg_form_view` VALUES("40900", "3", "2016-10-18 09:01:29", "202.46.58.73", "33");
INSERT INTO `wp_rg_form_view` VALUES("40901", "13", "2016-10-18 10:02:04", "77.75.78.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("40902", "10", "2016-10-18 10:02:04", "77.75.78.163", "8");
INSERT INTO `wp_rg_form_view` VALUES("40903", "3", "2016-10-18 10:02:05", "77.75.78.163", "10");
INSERT INTO `wp_rg_form_view` VALUES("40904", "3", "2016-10-18 11:42:57", "157.55.39.79", "23");
INSERT INTO `wp_rg_form_view` VALUES("40905", "13", "2016-10-18 11:43:00", "157.55.39.79", "4");
INSERT INTO `wp_rg_form_view` VALUES("40906", "10", "2016-10-18 11:43:00", "157.55.39.79", "16");
INSERT INTO `wp_rg_form_view` VALUES("40907", "13", "2016-10-18 12:06:03", "46.4.116.197", "4");
INSERT INTO `wp_rg_form_view` VALUES("40908", "10", "2016-10-18 12:06:03", "46.4.116.197", "25");
INSERT INTO `wp_rg_form_view` VALUES("40909", "3", "2016-10-18 12:06:04", "46.4.116.197", "26");
INSERT INTO `wp_rg_form_view` VALUES("40910", "10", "2016-10-18 13:13:59", "164.132.161.55", "17");
INSERT INTO `wp_rg_form_view` VALUES("40911", "13", "2016-10-18 13:14:00", "164.132.161.55", "4");
INSERT INTO `wp_rg_form_view` VALUES("40912", "3", "2016-10-18 13:14:00", "164.132.161.55", "21");
INSERT INTO `wp_rg_form_view` VALUES("40913", "1", "2016-10-18 14:01:10", "197.113.54.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("40914", "13", "2016-10-18 14:01:10", "197.113.54.201", "14");
INSERT INTO `wp_rg_form_view` VALUES("40915", "10", "2016-10-18 14:01:10", "197.113.54.201", "66");
INSERT INTO `wp_rg_form_view` VALUES("40916", "3", "2016-10-18 14:01:10", "197.113.54.201", "62");
INSERT INTO `wp_rg_form_view` VALUES("40917", "13", "2016-10-18 15:10:32", "157.55.39.79", "6");
INSERT INTO `wp_rg_form_view` VALUES("40918", "10", "2016-10-18 15:10:33", "157.55.39.79", "20");
INSERT INTO `wp_rg_form_view` VALUES("40919", "3", "2016-10-18 15:10:34", "157.55.39.79", "25");
INSERT INTO `wp_rg_form_view` VALUES("40920", "13", "2016-10-18 16:07:20", "202.46.56.91", "11");
INSERT INTO `wp_rg_form_view` VALUES("40921", "10", "2016-10-18 16:07:21", "202.46.56.91", "51");
INSERT INTO `wp_rg_form_view` VALUES("40922", "3", "2016-10-18 16:07:21", "202.46.56.91", "52");
INSERT INTO `wp_rg_form_view` VALUES("40923", "13", "2016-10-18 17:07:02", "163.172.65.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("40924", "10", "2016-10-18 17:07:02", "163.172.65.130", "21");
INSERT INTO `wp_rg_form_view` VALUES("40925", "3", "2016-10-18 17:07:03", "163.172.65.130", "25");
INSERT INTO `wp_rg_form_view` VALUES("40926", "2", "2016-10-18 17:33:42", "74.91.26.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("40927", "13", "2016-10-18 18:02:26", "51.255.65.96", "6");
INSERT INTO `wp_rg_form_view` VALUES("40928", "10", "2016-10-18 18:02:26", "51.255.65.96", "24");
INSERT INTO `wp_rg_form_view` VALUES("40929", "3", "2016-10-18 18:02:26", "51.255.65.96", "32");
INSERT INTO `wp_rg_form_view` VALUES("40930", "13", "2016-10-18 19:04:53", "157.55.39.79", "36");
INSERT INTO `wp_rg_form_view` VALUES("40931", "10", "2016-10-18 19:04:54", "157.55.39.79", "140");
INSERT INTO `wp_rg_form_view` VALUES("40932", "3", "2016-10-18 19:04:55", "157.55.39.79", "182");
INSERT INTO `wp_rg_form_view` VALUES("40933", "11", "2016-10-18 19:06:36", "45.55.229.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("40934", "2", "2016-10-18 19:06:37", "45.55.229.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("40935", "3", "2016-10-18 20:04:56", "75.157.27.1", "108");
INSERT INTO `wp_rg_form_view` VALUES("40936", "13", "2016-10-18 20:04:57", "75.157.27.1", "21");
INSERT INTO `wp_rg_form_view` VALUES("40937", "10", "2016-10-18 20:04:57", "75.157.27.1", "84");
INSERT INTO `wp_rg_form_view` VALUES("40938", "11", "2016-10-18 20:30:08", "80.82.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("40939", "2", "2016-10-18 20:30:09", "80.82.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("40940", "13", "2016-10-18 21:05:23", "104.156.231.254", "32");
INSERT INTO `wp_rg_form_view` VALUES("40941", "10", "2016-10-18 21:05:23", "104.156.231.254", "125");
INSERT INTO `wp_rg_form_view` VALUES("40942", "3", "2016-10-18 21:05:23", "104.156.231.254", "160");
INSERT INTO `wp_rg_form_view` VALUES("40943", "2", "2016-10-18 21:05:29", "104.156.231.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("40944", "1", "2016-10-18 21:16:44", "62.210.111.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("40945", "11", "2016-10-18 21:57:13", "192.243.55.132", "3");
INSERT INTO `wp_rg_form_view` VALUES("40946", "13", "2016-10-18 22:33:40", "66.249.79.104", "26");
INSERT INTO `wp_rg_form_view` VALUES("40947", "10", "2016-10-18 22:33:41", "66.249.79.104", "104");
INSERT INTO `wp_rg_form_view` VALUES("40948", "3", "2016-10-18 22:33:42", "66.249.79.104", "132");
INSERT INTO `wp_rg_form_view` VALUES("40949", "5", "2016-10-18 22:53:37", "163.172.66.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("40950", "3", "2016-10-18 23:02:49", "157.55.39.59", "137");
INSERT INTO `wp_rg_form_view` VALUES("40951", "13", "2016-10-18 23:02:49", "157.55.39.59", "27");
INSERT INTO `wp_rg_form_view` VALUES("40952", "10", "2016-10-18 23:02:49", "157.55.39.59", "109");
INSERT INTO `wp_rg_form_view` VALUES("40953", "1", "2016-10-18 23:05:02", "62.210.111.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("40954", "10", "2016-10-19 00:12:51", "62.210.143.245", "38");
INSERT INTO `wp_rg_form_view` VALUES("40955", "13", "2016-10-19 00:12:51", "62.210.143.245", "9");
INSERT INTO `wp_rg_form_view` VALUES("40956", "3", "2016-10-19 00:12:51", "62.210.143.245", "48");
INSERT INTO `wp_rg_form_view` VALUES("40957", "1", "2016-10-19 00:47:16", "62.210.111.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("40958", "13", "2016-10-19 01:01:49", "66.249.79.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("40959", "10", "2016-10-19 01:01:50", "66.249.79.104", "16");
INSERT INTO `wp_rg_form_view` VALUES("40960", "3", "2016-10-19 01:01:50", "66.249.79.104", "22");
INSERT INTO `wp_rg_form_view` VALUES("40961", "13", "2016-10-19 02:00:05", "24.69.73.90", "21");
INSERT INTO `wp_rg_form_view` VALUES("40962", "10", "2016-10-19 02:00:06", "24.69.73.90", "80");
INSERT INTO `wp_rg_form_view` VALUES("40963", "3", "2016-10-19 02:00:06", "24.69.73.90", "104");
INSERT INTO `wp_rg_form_view` VALUES("40964", "1", "2016-10-19 02:30:47", "62.210.111.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("40965", "13", "2016-10-19 03:02:12", "163.172.66.145", "22");
INSERT INTO `wp_rg_form_view` VALUES("40966", "3", "2016-10-19 03:02:12", "163.172.66.145", "114");
INSERT INTO `wp_rg_form_view` VALUES("40967", "10", "2016-10-19 03:02:13", "163.172.66.145", "86");
INSERT INTO `wp_rg_form_view` VALUES("40968", "1", "2016-10-19 03:57:36", "62.210.111.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("40969", "3", "2016-10-19 04:00:13", "24.68.30.24", "97");
INSERT INTO `wp_rg_form_view` VALUES("40970", "10", "2016-10-19 04:00:13", "24.68.30.24", "78");
INSERT INTO `wp_rg_form_view` VALUES("40971", "13", "2016-10-19 04:04:40", "96.50.19.46", "18");
INSERT INTO `wp_rg_form_view` VALUES("40972", "6", "2016-10-19 04:48:30", "162.210.196.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("40973", "10", "2016-10-19 05:00:24", "207.46.13.136", "29");
INSERT INTO `wp_rg_form_view` VALUES("40974", "13", "2016-10-19 05:00:24", "207.46.13.136", "7");
INSERT INTO `wp_rg_form_view` VALUES("40975", "3", "2016-10-19 05:00:24", "207.46.13.136", "35");
INSERT INTO `wp_rg_form_view` VALUES("40976", "6", "2016-10-19 05:25:04", "164.132.161.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("40977", "13", "2016-10-19 06:01:37", "50.98.2.190", "10");
INSERT INTO `wp_rg_form_view` VALUES("40978", "10", "2016-10-19 06:01:37", "50.98.2.190", "40");
INSERT INTO `wp_rg_form_view` VALUES("40979", "3", "2016-10-19 06:01:37", "50.98.2.190", "50");
INSERT INTO `wp_rg_form_view` VALUES("40980", "13", "2016-10-19 07:01:24", "66.249.79.108", "27");
INSERT INTO `wp_rg_form_view` VALUES("40981", "10", "2016-10-19 07:01:24", "66.249.79.108", "109");
INSERT INTO `wp_rg_form_view` VALUES("40982", "3", "2016-10-19 07:01:24", "66.249.79.108", "136");
INSERT INTO `wp_rg_form_view` VALUES("40983", "2", "2016-10-19 07:17:50", "163.172.68.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("40984", "13", "2016-10-19 08:04:03", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("40985", "10", "2016-10-19 08:04:03", "66.249.79.112", "24");
INSERT INTO `wp_rg_form_view` VALUES("40986", "3", "2016-10-19 08:04:03", "66.249.79.112", "31");
INSERT INTO `wp_rg_form_view` VALUES("40987", "3", "2016-10-19 09:09:03", "66.249.79.104", "30");
INSERT INTO `wp_rg_form_view` VALUES("40988", "13", "2016-10-19 09:09:04", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("40989", "10", "2016-10-19 09:09:04", "66.249.79.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("40990", "1", "2016-10-19 09:14:10", "202.46.58.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("40991", "13", "2016-10-19 10:03:22", "51.255.65.91", "12");
INSERT INTO `wp_rg_form_view` VALUES("40992", "10", "2016-10-19 10:03:22", "51.255.65.91", "40");
INSERT INTO `wp_rg_form_view` VALUES("40993", "3", "2016-10-19 10:03:22", "51.255.65.91", "52");
INSERT INTO `wp_rg_form_view` VALUES("40994", "10", "2016-10-19 11:45:51", "157.55.39.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("40995", "13", "2016-10-19 11:45:54", "157.55.39.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("40996", "3", "2016-10-19 11:45:55", "157.55.39.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("40997", "13", "2016-10-19 12:10:00", "77.75.77.36", "11");
INSERT INTO `wp_rg_form_view` VALUES("40998", "10", "2016-10-19 12:10:00", "77.75.77.36", "46");
INSERT INTO `wp_rg_form_view` VALUES("40999", "3", "2016-10-19 12:10:01", "77.75.77.36", "56");
INSERT INTO `wp_rg_form_view` VALUES("41000", "12", "2016-10-19 12:13:18", "157.55.39.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41001", "3", "2016-10-19 13:03:57", "157.55.39.62", "55");
INSERT INTO `wp_rg_form_view` VALUES("41002", "13", "2016-10-19 13:03:57", "157.55.39.62", "10");
INSERT INTO `wp_rg_form_view` VALUES("41003", "10", "2016-10-19 13:03:57", "157.55.39.62", "40");
INSERT INTO `wp_rg_form_view` VALUES("41004", "1", "2016-10-19 13:06:07", "62.210.111.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("41005", "6", "2016-10-19 13:36:26", "192.243.55.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("41006", "13", "2016-10-19 14:28:16", "207.46.13.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("41007", "3", "2016-10-19 14:28:17", "207.46.13.136", "27");
INSERT INTO `wp_rg_form_view` VALUES("41008", "10", "2016-10-19 14:28:18", "207.46.13.136", "17");
INSERT INTO `wp_rg_form_view` VALUES("41009", "3", "2016-10-19 15:04:28", "202.46.50.165", "81");
INSERT INTO `wp_rg_form_view` VALUES("41010", "13", "2016-10-19 15:04:28", "202.46.50.165", "16");
INSERT INTO `wp_rg_form_view` VALUES("41011", "10", "2016-10-19 15:04:28", "202.46.50.165", "68");
INSERT INTO `wp_rg_form_view` VALUES("41012", "3", "2016-10-19 16:13:18", "66.249.79.108", "48");
INSERT INTO `wp_rg_form_view` VALUES("41013", "13", "2016-10-19 16:13:19", "66.249.79.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("41014", "10", "2016-10-19 16:13:19", "66.249.79.108", "36");
INSERT INTO `wp_rg_form_view` VALUES("41015", "10", "2016-10-19 17:07:57", "51.255.65.49", "109");
INSERT INTO `wp_rg_form_view` VALUES("41016", "13", "2016-10-19 17:08:00", "51.255.65.49", "28");
INSERT INTO `wp_rg_form_view` VALUES("41017", "3", "2016-10-19 17:08:00", "51.255.65.49", "146");
INSERT INTO `wp_rg_form_view` VALUES("41018", "13", "2016-10-19 18:00:20", "192.243.55.129", "33");
INSERT INTO `wp_rg_form_view` VALUES("41019", "3", "2016-10-19 18:00:20", "192.243.55.129", "167");
INSERT INTO `wp_rg_form_view` VALUES("41020", "10", "2016-10-19 18:00:21", "192.243.55.129", "136");
INSERT INTO `wp_rg_form_view` VALUES("41021", "11", "2016-10-19 18:58:52", "202.46.55.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("41022", "1", "2016-10-19 19:12:34", "62.210.80.62", "4");
INSERT INTO `wp_rg_form_view` VALUES("41023", "13", "2016-10-19 19:12:34", "62.210.80.62", "14");
INSERT INTO `wp_rg_form_view` VALUES("41024", "13", "2016-10-19 19:12:34", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41025", "10", "2016-10-19 19:12:34", "62.210.80.62", "55");
INSERT INTO `wp_rg_form_view` VALUES("41026", "10", "2016-10-19 19:12:34", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41027", "3", "2016-10-19 19:12:34", "62.210.80.62", "77");
INSERT INTO `wp_rg_form_view` VALUES("41028", "3", "2016-10-19 19:12:34", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41029", "10", "2016-10-19 20:03:04", "207.46.13.136", "60");
INSERT INTO `wp_rg_form_view` VALUES("41030", "13", "2016-10-19 20:03:05", "207.46.13.136", "13");
INSERT INTO `wp_rg_form_view` VALUES("41031", "3", "2016-10-19 20:03:05", "207.46.13.136", "68");
INSERT INTO `wp_rg_form_view` VALUES("41032", "9", "2016-10-19 20:20:20", "24.108.37.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("41033", "8", "2016-10-19 21:00:45", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("41034", "13", "2016-10-19 21:00:46", "217.69.133.229", "7");
INSERT INTO `wp_rg_form_view` VALUES("41035", "10", "2016-10-19 21:00:46", "217.69.133.229", "28");
INSERT INTO `wp_rg_form_view` VALUES("41036", "3", "2016-10-19 21:00:46", "217.69.133.229", "36");
INSERT INTO `wp_rg_form_view` VALUES("41037", "13", "2016-10-19 22:01:41", "66.249.79.148", "26");
INSERT INTO `wp_rg_form_view` VALUES("41038", "10", "2016-10-19 22:01:41", "66.249.79.148", "99");
INSERT INTO `wp_rg_form_view` VALUES("41039", "3", "2016-10-19 22:01:41", "66.249.79.148", "118");
INSERT INTO `wp_rg_form_view` VALUES("41040", "13", "2016-10-19 23:12:50", "192.243.55.138", "22");
INSERT INTO `wp_rg_form_view` VALUES("41041", "10", "2016-10-19 23:12:50", "192.243.55.138", "88");
INSERT INTO `wp_rg_form_view` VALUES("41042", "3", "2016-10-19 23:12:51", "192.243.55.138", "112");
INSERT INTO `wp_rg_form_view` VALUES("41043", "1", "2016-10-20 00:04:49", "157.55.39.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("41044", "13", "2016-10-20 00:04:49", "157.55.39.59", "7");
INSERT INTO `wp_rg_form_view` VALUES("41045", "10", "2016-10-20 00:04:49", "157.55.39.59", "28");
INSERT INTO `wp_rg_form_view` VALUES("41046", "3", "2016-10-20 00:04:49", "157.55.39.59", "37");
INSERT INTO `wp_rg_form_view` VALUES("41047", "8", "2016-10-20 01:09:31", "192.243.55.130", "3");
INSERT INTO `wp_rg_form_view` VALUES("41048", "13", "2016-10-20 01:09:32", "192.243.55.130", "14");
INSERT INTO `wp_rg_form_view` VALUES("41049", "10", "2016-10-20 01:09:32", "192.243.55.130", "57");
INSERT INTO `wp_rg_form_view` VALUES("41050", "3", "2016-10-20 01:09:32", "192.243.55.130", "70");
INSERT INTO `wp_rg_form_view` VALUES("41051", "1", "2016-10-20 01:16:17", "24.69.82.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("41052", "10", "2016-10-20 02:29:21", "192.243.55.129", "42");
INSERT INTO `wp_rg_form_view` VALUES("41053", "13", "2016-10-20 02:29:22", "192.243.55.129", "9");
INSERT INTO `wp_rg_form_view` VALUES("41054", "3", "2016-10-20 02:29:23", "192.243.55.129", "42");
INSERT INTO `wp_rg_form_view` VALUES("41055", "8", "2016-10-20 02:45:49", "207.46.13.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("41056", "1", "2016-10-20 02:46:42", "5.196.140.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("41057", "3", "2016-10-20 03:02:53", "192.243.55.131", "136");
INSERT INTO `wp_rg_form_view` VALUES("41058", "13", "2016-10-20 03:02:53", "192.243.55.131", "24");
INSERT INTO `wp_rg_form_view` VALUES("41059", "10", "2016-10-20 03:02:53", "192.243.55.131", "79");
INSERT INTO `wp_rg_form_view` VALUES("41060", "3", "2016-10-20 04:07:25", "192.243.55.135", "93");
INSERT INTO `wp_rg_form_view` VALUES("41061", "13", "2016-10-20 04:07:25", "192.243.55.135", "18");
INSERT INTO `wp_rg_form_view` VALUES("41062", "10", "2016-10-20 04:07:26", "192.243.55.135", "73");
INSERT INTO `wp_rg_form_view` VALUES("41063", "1", "2016-10-20 04:28:45", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("41064", "10", "2016-10-20 05:01:47", "192.243.55.138", "19");
INSERT INTO `wp_rg_form_view` VALUES("41065", "13", "2016-10-20 05:01:47", "192.243.55.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("41066", "3", "2016-10-20 05:01:47", "192.243.55.138", "20");
INSERT INTO `wp_rg_form_view` VALUES("41067", "13", "2016-10-20 06:07:53", "66.249.79.148", "13");
INSERT INTO `wp_rg_form_view` VALUES("41068", "10", "2016-10-20 06:07:54", "66.249.79.148", "48");
INSERT INTO `wp_rg_form_view` VALUES("41069", "3", "2016-10-20 06:07:54", "66.249.79.148", "67");
INSERT INTO `wp_rg_form_view` VALUES("41070", "1", "2016-10-20 07:00:10", "192.243.55.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("41071", "13", "2016-10-20 07:00:10", "192.243.55.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("41072", "10", "2016-10-20 07:00:10", "192.243.55.137", "48");
INSERT INTO `wp_rg_form_view` VALUES("41073", "3", "2016-10-20 07:00:10", "192.243.55.137", "63");
INSERT INTO `wp_rg_form_view` VALUES("41074", "3", "2016-10-20 08:30:25", "207.46.13.136", "47");
INSERT INTO `wp_rg_form_view` VALUES("41075", "13", "2016-10-20 08:30:26", "207.46.13.136", "9");
INSERT INTO `wp_rg_form_view` VALUES("41076", "10", "2016-10-20 08:30:26", "207.46.13.136", "36");
INSERT INTO `wp_rg_form_view` VALUES("41077", "1", "2016-10-20 08:37:51", "62.210.80.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("41078", "1", "2016-10-20 08:37:51", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41079", "1", "2016-10-20 08:37:51", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41080", "13", "2016-10-20 09:33:07", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("41081", "10", "2016-10-20 09:33:08", "66.249.79.148", "16");
INSERT INTO `wp_rg_form_view` VALUES("41082", "3", "2016-10-20 09:33:08", "66.249.79.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("41083", "13", "2016-10-20 10:00:30", "157.55.39.59", "6");
INSERT INTO `wp_rg_form_view` VALUES("41084", "10", "2016-10-20 10:00:30", "157.55.39.59", "25");
INSERT INTO `wp_rg_form_view` VALUES("41085", "3", "2016-10-20 10:00:30", "157.55.39.59", "31");
INSERT INTO `wp_rg_form_view` VALUES("41086", "13", "2016-10-20 11:00:42", "207.216.84.115", "8");
INSERT INTO `wp_rg_form_view` VALUES("41087", "10", "2016-10-20 11:00:42", "207.216.84.115", "32");
INSERT INTO `wp_rg_form_view` VALUES("41088", "3", "2016-10-20 11:00:42", "207.216.84.115", "41");
INSERT INTO `wp_rg_form_view` VALUES("41089", "11", "2016-10-20 11:06:33", "157.55.39.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("41090", "3", "2016-10-20 12:19:39", "68.180.228.30", "16");
INSERT INTO `wp_rg_form_view` VALUES("41091", "13", "2016-10-20 12:19:40", "68.180.228.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("41092", "10", "2016-10-20 12:19:40", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("41093", "3", "2016-10-20 13:10:03", "40.77.167.35", "36");
INSERT INTO `wp_rg_form_view` VALUES("41094", "13", "2016-10-20 13:10:03", "40.77.167.35", "7");
INSERT INTO `wp_rg_form_view` VALUES("41095", "10", "2016-10-20 13:10:03", "40.77.167.35", "28");
INSERT INTO `wp_rg_form_view` VALUES("41096", "5", "2016-10-20 14:15:46", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("41097", "13", "2016-10-20 14:15:46", "77.75.78.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("41098", "10", "2016-10-20 14:15:48", "77.75.78.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("41099", "3", "2016-10-20 14:15:48", "77.75.78.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("41100", "3", "2016-10-20 15:17:05", "68.180.228.30", "29");
INSERT INTO `wp_rg_form_view` VALUES("41101", "13", "2016-10-20 15:29:54", "24.244.32.23", "5");
INSERT INTO `wp_rg_form_view` VALUES("41102", "10", "2016-10-20 15:29:54", "24.244.32.23", "20");
INSERT INTO `wp_rg_form_view` VALUES("41103", "3", "2016-10-20 16:00:09", "157.55.39.62", "21");
INSERT INTO `wp_rg_form_view` VALUES("41104", "13", "2016-10-20 16:00:09", "157.55.39.62", "4");
INSERT INTO `wp_rg_form_view` VALUES("41105", "10", "2016-10-20 16:00:09", "157.55.39.62", "16");
INSERT INTO `wp_rg_form_view` VALUES("41106", "1", "2016-10-20 16:57:36", "24.87.28.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("41107", "3", "2016-10-20 17:29:00", "157.55.39.59", "42");
INSERT INTO `wp_rg_form_view` VALUES("41108", "13", "2016-10-20 17:29:05", "157.55.39.59", "9");
INSERT INTO `wp_rg_form_view` VALUES("41109", "10", "2016-10-20 17:29:05", "157.55.39.59", "32");
INSERT INTO `wp_rg_form_view` VALUES("41110", "1", "2016-10-20 17:33:52", "101.109.106.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("41111", "13", "2016-10-20 18:03:28", "96.50.1.173", "17");
INSERT INTO `wp_rg_form_view` VALUES("41112", "10", "2016-10-20 18:03:29", "96.50.1.173", "68");
INSERT INTO `wp_rg_form_view` VALUES("41113", "3", "2016-10-20 18:03:29", "96.50.1.173", "90");
INSERT INTO `wp_rg_form_view` VALUES("41114", "1", "2016-10-20 18:11:12", "192.186.159.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("41115", "6", "2016-10-20 18:29:03", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("41116", "3", "2016-10-20 19:01:42", "66.249.79.152", "41");
INSERT INTO `wp_rg_form_view` VALUES("41117", "13", "2016-10-20 19:01:43", "66.249.79.152", "8");
INSERT INTO `wp_rg_form_view` VALUES("41118", "10", "2016-10-20 19:01:43", "66.249.79.152", "32");
INSERT INTO `wp_rg_form_view` VALUES("41119", "8", "2016-10-20 20:11:33", "207.46.13.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("41120", "13", "2016-10-20 20:11:34", "207.46.13.136", "11");
INSERT INTO `wp_rg_form_view` VALUES("41121", "10", "2016-10-20 20:11:35", "207.46.13.136", "45");
INSERT INTO `wp_rg_form_view` VALUES("41122", "3", "2016-10-20 20:11:35", "207.46.13.136", "55");
INSERT INTO `wp_rg_form_view` VALUES("41123", "1", "2016-10-20 20:13:46", "125.27.94.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("41124", "13", "2016-10-20 21:24:04", "207.46.13.136", "8");
INSERT INTO `wp_rg_form_view` VALUES("41125", "10", "2016-10-20 21:24:06", "207.46.13.136", "31");
INSERT INTO `wp_rg_form_view` VALUES("41126", "3", "2016-10-20 21:24:06", "207.46.13.136", "32");
INSERT INTO `wp_rg_form_view` VALUES("41127", "1", "2016-10-20 21:56:23", "62.210.80.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41128", "13", "2016-10-20 22:06:36", "157.55.39.62", "10");
INSERT INTO `wp_rg_form_view` VALUES("41129", "10", "2016-10-20 22:06:36", "157.55.39.62", "40");
INSERT INTO `wp_rg_form_view` VALUES("41130", "3", "2016-10-20 22:06:37", "157.55.39.62", "54");
INSERT INTO `wp_rg_form_view` VALUES("41131", "13", "2016-10-20 23:00:23", "202.46.51.117", "12");
INSERT INTO `wp_rg_form_view` VALUES("41132", "10", "2016-10-20 23:00:23", "202.46.51.117", "50");
INSERT INTO `wp_rg_form_view` VALUES("41133", "3", "2016-10-20 23:00:23", "202.46.51.117", "60");
INSERT INTO `wp_rg_form_view` VALUES("41134", "6", "2016-10-20 23:19:36", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("41135", "10", "2016-10-21 00:19:10", "51.255.65.39", "17");
INSERT INTO `wp_rg_form_view` VALUES("41136", "13", "2016-10-21 00:19:11", "51.255.65.39", "4");
INSERT INTO `wp_rg_form_view` VALUES("41137", "3", "2016-10-21 00:19:11", "51.255.65.39", "22");
INSERT INTO `wp_rg_form_view` VALUES("41138", "13", "2016-10-21 01:06:46", "24.68.120.95", "7");
INSERT INTO `wp_rg_form_view` VALUES("41139", "10", "2016-10-21 01:06:46", "24.68.120.95", "28");
INSERT INTO `wp_rg_form_view` VALUES("41140", "3", "2016-10-21 01:06:47", "24.68.120.95", "38");
INSERT INTO `wp_rg_form_view` VALUES("41141", "13", "2016-10-21 02:00:02", "96.54.193.217", "8");
INSERT INTO `wp_rg_form_view` VALUES("41142", "10", "2016-10-21 02:00:02", "96.54.193.217", "32");
INSERT INTO `wp_rg_form_view` VALUES("41143", "3", "2016-10-21 02:00:02", "96.54.193.217", "40");
INSERT INTO `wp_rg_form_view` VALUES("41144", "1", "2016-10-21 02:04:31", "24.68.130.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("41145", "2", "2016-10-21 02:28:06", "107.153.110.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("41146", "13", "2016-10-21 03:08:52", "202.46.51.190", "9");
INSERT INTO `wp_rg_form_view` VALUES("41147", "10", "2016-10-21 03:08:52", "202.46.51.190", "37");
INSERT INTO `wp_rg_form_view` VALUES("41148", "3", "2016-10-21 03:08:52", "202.46.51.190", "45");
INSERT INTO `wp_rg_form_view` VALUES("41149", "13", "2016-10-21 04:22:32", "24.244.32.200", "6");
INSERT INTO `wp_rg_form_view` VALUES("41150", "10", "2016-10-21 04:22:33", "24.244.32.200", "24");
INSERT INTO `wp_rg_form_view` VALUES("41151", "3", "2016-10-21 04:22:34", "24.244.32.200", "33");
INSERT INTO `wp_rg_form_view` VALUES("41152", "9", "2016-10-21 04:53:24", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41153", "13", "2016-10-21 05:10:15", "157.55.39.59", "42");
INSERT INTO `wp_rg_form_view` VALUES("41154", "10", "2016-10-21 05:10:15", "157.55.39.59", "176");
INSERT INTO `wp_rg_form_view` VALUES("41155", "3", "2016-10-21 05:10:15", "157.55.39.59", "211");
INSERT INTO `wp_rg_form_view` VALUES("41156", "11", "2016-10-21 05:19:13", "62.151.181.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("41157", "2", "2016-10-21 05:19:58", "62.151.181.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("41158", "13", "2016-10-21 06:05:41", "40.77.167.35", "23");
INSERT INTO `wp_rg_form_view` VALUES("41159", "10", "2016-10-21 06:05:42", "40.77.167.35", "92");
INSERT INTO `wp_rg_form_view` VALUES("41160", "3", "2016-10-21 06:05:42", "40.77.167.35", "116");
INSERT INTO `wp_rg_form_view` VALUES("41161", "1", "2016-10-21 06:10:59", "89.40.126.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("41162", "13", "2016-10-21 07:03:50", "157.55.39.214", "6");
INSERT INTO `wp_rg_form_view` VALUES("41163", "10", "2016-10-21 07:03:50", "157.55.39.214", "24");
INSERT INTO `wp_rg_form_view` VALUES("41164", "3", "2016-10-21 07:03:50", "157.55.39.214", "32");
INSERT INTO `wp_rg_form_view` VALUES("41165", "1", "2016-10-21 07:05:14", "190.120.123.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("41166", "1", "2016-10-21 08:29:10", "1.20.217.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("41167", "13", "2016-10-21 08:29:10", "1.20.217.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("41168", "10", "2016-10-21 08:29:10", "1.20.217.17", "12");
INSERT INTO `wp_rg_form_view` VALUES("41169", "3", "2016-10-21 08:29:10", "1.20.217.17", "16");
INSERT INTO `wp_rg_form_view` VALUES("41170", "12", "2016-10-21 09:07:42", "157.55.39.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41171", "13", "2016-10-21 09:07:43", "157.55.39.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("41172", "10", "2016-10-21 09:07:43", "157.55.39.62", "30");
INSERT INTO `wp_rg_form_view` VALUES("41173", "3", "2016-10-21 09:07:43", "157.55.39.62", "36");
INSERT INTO `wp_rg_form_view` VALUES("41174", "1", "2016-10-21 10:15:41", "113.53.62.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("41175", "13", "2016-10-21 10:15:42", "113.53.62.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("41176", "10", "2016-10-21 10:15:42", "113.53.62.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("41177", "3", "2016-10-21 10:15:43", "113.53.62.248", "5");
INSERT INTO `wp_rg_form_view` VALUES("41178", "13", "2016-10-21 11:02:30", "40.77.167.35", "20");
INSERT INTO `wp_rg_form_view` VALUES("41179", "10", "2016-10-21 11:02:30", "40.77.167.35", "80");
INSERT INTO `wp_rg_form_view` VALUES("41180", "3", "2016-10-21 11:02:31", "40.77.167.35", "108");
INSERT INTO `wp_rg_form_view` VALUES("41181", "1", "2016-10-21 11:45:24", "192.3.246.175", "4");
INSERT INTO `wp_rg_form_view` VALUES("41182", "3", "2016-10-21 12:00:37", "192.243.55.130", "39");
INSERT INTO `wp_rg_form_view` VALUES("41183", "1", "2016-10-21 12:01:28", "125.27.41.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("41184", "13", "2016-10-21 12:01:28", "125.27.41.103", "9");
INSERT INTO `wp_rg_form_view` VALUES("41185", "10", "2016-10-21 12:01:28", "125.27.41.103", "32");
INSERT INTO `wp_rg_form_view` VALUES("41186", "13", "2016-10-21 13:07:35", "157.55.39.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("41187", "10", "2016-10-21 13:07:36", "157.55.39.62", "20");
INSERT INTO `wp_rg_form_view` VALUES("41188", "3", "2016-10-21 13:07:36", "157.55.39.62", "27");
INSERT INTO `wp_rg_form_view` VALUES("41189", "13", "2016-10-21 14:27:47", "40.77.167.35", "7");
INSERT INTO `wp_rg_form_view` VALUES("41190", "10", "2016-10-21 14:27:48", "40.77.167.35", "28");
INSERT INTO `wp_rg_form_view` VALUES("41191", "3", "2016-10-21 14:27:49", "40.77.167.35", "36");
INSERT INTO `wp_rg_form_view` VALUES("41192", "3", "2016-10-21 15:00:09", "192.243.55.129", "65");
INSERT INTO `wp_rg_form_view` VALUES("41193", "13", "2016-10-21 15:00:09", "192.243.55.129", "12");
INSERT INTO `wp_rg_form_view` VALUES("41194", "10", "2016-10-21 15:00:10", "192.243.55.129", "48");
INSERT INTO `wp_rg_form_view` VALUES("41195", "7", "2016-10-21 15:19:38", "157.55.39.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41196", "13", "2016-10-21 16:05:07", "207.6.239.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("41197", "10", "2016-10-21 16:05:08", "207.6.239.173", "12");
INSERT INTO `wp_rg_form_view` VALUES("41198", "3", "2016-10-21 16:05:08", "207.6.239.173", "16");
INSERT INTO `wp_rg_form_view` VALUES("41199", "13", "2016-10-21 17:09:42", "108.180.146.104", "17");
INSERT INTO `wp_rg_form_view` VALUES("41200", "10", "2016-10-21 17:09:44", "108.180.146.104", "67");
INSERT INTO `wp_rg_form_view` VALUES("41201", "3", "2016-10-21 17:09:46", "108.180.146.104", "82");
INSERT INTO `wp_rg_form_view` VALUES("41202", "1", "2016-10-21 17:22:47", "157.55.39.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("41203", "8", "2016-10-21 17:41:27", "207.46.13.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("41204", "6", "2016-10-21 17:43:18", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("41205", "10", "2016-10-21 18:01:00", "202.46.54.108", "41");
INSERT INTO `wp_rg_form_view` VALUES("41206", "13", "2016-10-21 18:01:00", "202.46.54.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("41207", "3", "2016-10-21 18:01:00", "202.46.54.108", "50");
INSERT INTO `wp_rg_form_view` VALUES("41208", "6", "2016-10-21 18:09:48", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("41209", "10", "2016-10-21 19:07:43", "157.55.39.62", "73");
INSERT INTO `wp_rg_form_view` VALUES("41210", "13", "2016-10-21 19:07:43", "157.55.39.62", "18");
INSERT INTO `wp_rg_form_view` VALUES("41211", "3", "2016-10-21 19:07:43", "157.55.39.62", "90");
INSERT INTO `wp_rg_form_view` VALUES("41212", "5", "2016-10-21 20:21:21", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("41213", "13", "2016-10-21 20:21:22", "77.75.76.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("41214", "10", "2016-10-21 20:21:22", "77.75.76.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("41215", "3", "2016-10-21 20:21:22", "77.75.76.162", "11");
INSERT INTO `wp_rg_form_view` VALUES("41216", "13", "2016-10-21 21:02:15", "184.66.134.122", "28");
INSERT INTO `wp_rg_form_view` VALUES("41217", "10", "2016-10-21 21:02:18", "184.66.134.122", "108");
INSERT INTO `wp_rg_form_view` VALUES("41218", "3", "2016-10-21 21:02:19", "184.66.134.122", "142");
INSERT INTO `wp_rg_form_view` VALUES("41219", "13", "2016-10-21 22:16:42", "66.249.79.148", "59");
INSERT INTO `wp_rg_form_view` VALUES("41220", "10", "2016-10-21 22:16:42", "66.249.79.148", "233");
INSERT INTO `wp_rg_form_view` VALUES("41221", "3", "2016-10-21 22:16:42", "66.249.79.148", "296");
INSERT INTO `wp_rg_form_view` VALUES("41222", "2", "2016-10-21 22:51:08", "52.45.154.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("41223", "11", "2016-10-21 22:51:18", "52.55.215.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("41224", "13", "2016-10-21 23:09:00", "207.46.13.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("41225", "10", "2016-10-21 23:09:00", "207.46.13.136", "8");
INSERT INTO `wp_rg_form_view` VALUES("41226", "3", "2016-10-21 23:09:00", "207.46.13.136", "11");
INSERT INTO `wp_rg_form_view` VALUES("41227", "13", "2016-10-22 00:23:17", "157.55.39.214", "14");
INSERT INTO `wp_rg_form_view` VALUES("41228", "10", "2016-10-22 00:23:17", "157.55.39.214", "56");
INSERT INTO `wp_rg_form_view` VALUES("41229", "3", "2016-10-22 00:23:17", "157.55.39.214", "71");
INSERT INTO `wp_rg_form_view` VALUES("41230", "13", "2016-10-22 01:17:24", "66.249.79.152", "6");
INSERT INTO `wp_rg_form_view` VALUES("41231", "10", "2016-10-22 01:17:24", "66.249.79.152", "25");
INSERT INTO `wp_rg_form_view` VALUES("41232", "3", "2016-10-22 01:17:24", "66.249.79.152", "31");
INSERT INTO `wp_rg_form_view` VALUES("41233", "13", "2016-10-22 02:02:53", "68.180.228.30", "17");
INSERT INTO `wp_rg_form_view` VALUES("41234", "10", "2016-10-22 02:02:54", "68.180.228.30", "68");
INSERT INTO `wp_rg_form_view` VALUES("41235", "3", "2016-10-22 02:02:54", "68.180.228.30", "85");
INSERT INTO `wp_rg_form_view` VALUES("41236", "3", "2016-10-22 04:25:19", "157.55.39.62", "31");
INSERT INTO `wp_rg_form_view` VALUES("41237", "13", "2016-10-22 04:25:21", "157.55.39.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("41238", "10", "2016-10-22 04:25:21", "157.55.39.62", "16");
INSERT INTO `wp_rg_form_view` VALUES("41239", "13", "2016-10-22 05:00:02", "5.9.87.111", "81");
INSERT INTO `wp_rg_form_view` VALUES("41240", "10", "2016-10-22 05:00:02", "5.9.87.111", "314");
INSERT INTO `wp_rg_form_view` VALUES("41241", "3", "2016-10-22 05:00:02", "5.9.87.111", "401");
INSERT INTO `wp_rg_form_view` VALUES("41242", "1", "2016-10-22 05:00:09", "5.9.87.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("41243", "11", "2016-10-22 05:23:07", "198.27.80.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("41244", "2", "2016-10-22 05:23:11", "198.27.80.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("41245", "13", "2016-10-22 06:10:45", "77.75.78.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("41246", "10", "2016-10-22 06:10:45", "77.75.78.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("41247", "3", "2016-10-22 06:10:46", "77.75.78.165", "15");
INSERT INTO `wp_rg_form_view` VALUES("41248", "13", "2016-10-22 07:04:10", "204.79.180.184", "36");
INSERT INTO `wp_rg_form_view` VALUES("41249", "10", "2016-10-22 07:04:10", "204.79.180.184", "144");
INSERT INTO `wp_rg_form_view` VALUES("41250", "3", "2016-10-22 07:04:10", "204.79.180.184", "181");
INSERT INTO `wp_rg_form_view` VALUES("41251", "11", "2016-10-22 07:32:42", "142.0.42.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("41252", "2", "2016-10-22 07:33:32", "142.0.42.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("41253", "13", "2016-10-22 08:12:21", "77.75.79.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("41254", "10", "2016-10-22 08:12:22", "77.75.79.72", "8");
INSERT INTO `wp_rg_form_view` VALUES("41255", "3", "2016-10-22 08:12:22", "77.75.79.72", "10");
INSERT INTO `wp_rg_form_view` VALUES("41256", "3", "2016-10-22 09:01:49", "68.180.228.30", "41");
INSERT INTO `wp_rg_form_view` VALUES("41257", "13", "2016-10-22 09:01:49", "68.180.228.30", "8");
INSERT INTO `wp_rg_form_view` VALUES("41258", "10", "2016-10-22 09:01:49", "68.180.228.30", "32");
INSERT INTO `wp_rg_form_view` VALUES("41259", "7", "2016-10-22 09:58:08", "66.249.79.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("41260", "13", "2016-10-22 10:06:20", "163.172.65.34", "4");
INSERT INTO `wp_rg_form_view` VALUES("41261", "10", "2016-10-22 10:06:20", "163.172.65.34", "16");
INSERT INTO `wp_rg_form_view` VALUES("41262", "3", "2016-10-22 10:06:20", "163.172.65.34", "21");
INSERT INTO `wp_rg_form_view` VALUES("41263", "13", "2016-10-22 11:01:44", "68.180.228.30", "7");
INSERT INTO `wp_rg_form_view` VALUES("41264", "10", "2016-10-22 11:01:44", "68.180.228.30", "28");
INSERT INTO `wp_rg_form_view` VALUES("41265", "3", "2016-10-22 11:01:45", "68.180.228.30", "36");
INSERT INTO `wp_rg_form_view` VALUES("41266", "11", "2016-10-22 11:06:32", "77.75.76.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("41267", "13", "2016-10-22 12:12:12", "77.75.77.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("41268", "10", "2016-10-22 12:12:16", "77.75.77.72", "12");
INSERT INTO `wp_rg_form_view` VALUES("41269", "3", "2016-10-22 12:12:16", "77.75.77.72", "15");
INSERT INTO `wp_rg_form_view` VALUES("41270", "8", "2016-10-22 12:51:37", "204.79.180.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("41271", "13", "2016-10-22 13:39:08", "207.46.13.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("41272", "10", "2016-10-22 13:39:08", "207.46.13.136", "9");
INSERT INTO `wp_rg_form_view` VALUES("41273", "3", "2016-10-22 13:39:09", "207.46.13.136", "10");
INSERT INTO `wp_rg_form_view` VALUES("41274", "10", "2016-10-22 14:06:58", "68.180.228.30", "13");
INSERT INTO `wp_rg_form_view` VALUES("41275", "8", "2016-10-22 14:12:05", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("41276", "13", "2016-10-22 14:12:05", "66.249.79.152", "4");
INSERT INTO `wp_rg_form_view` VALUES("41277", "3", "2016-10-22 14:12:05", "66.249.79.152", "15");
INSERT INTO `wp_rg_form_view` VALUES("41278", "13", "2016-10-22 15:00:19", "68.180.228.30", "6");
INSERT INTO `wp_rg_form_view` VALUES("41279", "10", "2016-10-22 15:00:19", "68.180.228.30", "24");
INSERT INTO `wp_rg_form_view` VALUES("41280", "3", "2016-10-22 15:00:19", "68.180.228.30", "31");
INSERT INTO `wp_rg_form_view` VALUES("41281", "8", "2016-10-22 15:34:06", "207.46.13.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("41282", "3", "2016-10-22 16:16:53", "68.180.228.30", "21");
INSERT INTO `wp_rg_form_view` VALUES("41283", "13", "2016-10-22 16:16:53", "68.180.228.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("41284", "10", "2016-10-22 16:16:53", "68.180.228.30", "16");
INSERT INTO `wp_rg_form_view` VALUES("41285", "1", "2016-10-22 16:17:27", "112.29.141.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("41286", "13", "2016-10-22 17:14:28", "68.180.228.30", "6");
INSERT INTO `wp_rg_form_view` VALUES("41287", "10", "2016-10-22 17:14:32", "68.180.228.30", "20");
INSERT INTO `wp_rg_form_view` VALUES("41288", "3", "2016-10-22 17:14:33", "68.180.228.30", "27");
INSERT INTO `wp_rg_form_view` VALUES("41289", "3", "2016-10-22 17:14:33", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41290", "13", "2016-10-22 18:03:20", "68.180.228.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("41291", "10", "2016-10-22 18:03:20", "68.180.228.30", "29");
INSERT INTO `wp_rg_form_view` VALUES("41292", "3", "2016-10-22 18:03:21", "68.180.228.30", "38");
INSERT INTO `wp_rg_form_view` VALUES("41293", "13", "2016-10-22 19:02:06", "94.199.151.22", "95");
INSERT INTO `wp_rg_form_view` VALUES("41294", "10", "2016-10-22 19:02:07", "94.199.151.22", "354");
INSERT INTO `wp_rg_form_view` VALUES("41295", "3", "2016-10-22 19:02:08", "94.199.151.22", "463");
INSERT INTO `wp_rg_form_view` VALUES("41296", "11", "2016-10-22 19:03:51", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("41297", "2", "2016-10-22 19:04:32", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("41298", "1", "2016-10-22 19:21:12", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("41299", "3", "2016-10-22 20:09:55", "163.172.64.183", "16");
INSERT INTO `wp_rg_form_view` VALUES("41300", "13", "2016-10-22 20:09:55", "163.172.64.183", "3");
INSERT INTO `wp_rg_form_view` VALUES("41301", "10", "2016-10-22 20:09:55", "163.172.64.183", "12");
INSERT INTO `wp_rg_form_view` VALUES("41302", "13", "2016-10-22 21:27:56", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41303", "10", "2016-10-22 21:27:58", "68.180.228.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("41304", "3", "2016-10-22 21:27:58", "68.180.228.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("41305", "13", "2016-10-22 22:03:17", "68.180.228.30", "6");
INSERT INTO `wp_rg_form_view` VALUES("41306", "10", "2016-10-22 22:03:17", "68.180.228.30", "20");
INSERT INTO `wp_rg_form_view` VALUES("41307", "3", "2016-10-22 22:03:17", "68.180.228.30", "30");
INSERT INTO `wp_rg_form_view` VALUES("41308", "13", "2016-10-22 23:09:10", "68.180.228.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("41309", "10", "2016-10-22 23:09:11", "68.180.228.30", "379");
INSERT INTO `wp_rg_form_view` VALUES("41310", "3", "2016-10-22 23:09:11", "68.180.228.30", "589");
INSERT INTO `wp_rg_form_view` VALUES("41311", "1", "2016-10-22 23:24:02", "130.185.159.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("41312", "2", "2016-10-22 23:56:17", "207.46.13.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("41313", "8", "2016-10-22 23:56:22", "157.55.39.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("41314", "9", "2016-10-22 23:56:25", "207.46.13.98", "4");
INSERT INTO `wp_rg_form_view` VALUES("41315", "5", "2016-10-22 23:57:22", "207.46.13.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("41316", "6", "2016-10-22 23:57:34", "207.46.13.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("41317", "10", "2016-10-23 00:01:25", "202.46.50.181", "100");
INSERT INTO `wp_rg_form_view` VALUES("41318", "3", "2016-10-23 00:01:25", "202.46.50.181", "152");
INSERT INTO `wp_rg_form_view` VALUES("41319", "1", "2016-10-23 00:30:54", "120.52.73.97", "3");
INSERT INTO `wp_rg_form_view` VALUES("41320", "12", "2016-10-23 01:15:58", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("41321", "10", "2016-10-23 01:16:01", "66.249.79.152", "8");
INSERT INTO `wp_rg_form_view` VALUES("41322", "3", "2016-10-23 01:16:01", "66.249.79.152", "12");
INSERT INTO `wp_rg_form_view` VALUES("41323", "1", "2016-10-23 02:16:27", "110.5.96.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("41324", "10", "2016-10-23 02:16:29", "110.5.96.202", "63");
INSERT INTO `wp_rg_form_view` VALUES("41325", "3", "2016-10-23 02:16:35", "110.5.96.202", "97");
INSERT INTO `wp_rg_form_view` VALUES("41326", "12", "2016-10-23 02:44:09", "163.172.66.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("41327", "10", "2016-10-23 03:08:46", "164.132.161.68", "8");
INSERT INTO `wp_rg_form_view` VALUES("41328", "3", "2016-10-23 03:08:46", "164.132.161.68", "12");
INSERT INTO `wp_rg_form_view` VALUES("41329", "10", "2016-10-23 04:01:18", "77.75.78.168", "58");
INSERT INTO `wp_rg_form_view` VALUES("41330", "3", "2016-10-23 04:01:18", "77.75.78.168", "90");
INSERT INTO `wp_rg_form_view` VALUES("41331", "13", "2016-10-23 04:17:39", "66.249.79.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("41332", "1", "2016-10-23 04:24:51", "142.0.10.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("41333", "10", "2016-10-23 05:19:00", "66.249.79.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("41334", "3", "2016-10-23 05:19:04", "66.249.79.148", "30");
INSERT INTO `wp_rg_form_view` VALUES("41335", "1", "2016-10-23 05:29:29", "46.246.45.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("41336", "10", "2016-10-23 06:39:32", "164.132.161.35", "12");
INSERT INTO `wp_rg_form_view` VALUES("41337", "3", "2016-10-23 06:39:34", "164.132.161.35", "18");
INSERT INTO `wp_rg_form_view` VALUES("41338", "3", "2016-10-23 07:13:32", "68.180.228.30", "61");
INSERT INTO `wp_rg_form_view` VALUES("41339", "10", "2016-10-23 07:13:32", "68.180.228.30", "40");
INSERT INTO `wp_rg_form_view` VALUES("41340", "1", "2016-10-23 08:01:57", "103.42.1.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("41341", "10", "2016-10-23 08:01:57", "103.42.1.56", "28");
INSERT INTO `wp_rg_form_view` VALUES("41342", "3", "2016-10-23 08:01:57", "103.42.1.56", "43");
INSERT INTO `wp_rg_form_view` VALUES("41343", "10", "2016-10-23 09:41:21", "178.137.167.230", "42");
INSERT INTO `wp_rg_form_view` VALUES("41344", "10", "2016-10-23 09:41:21", "178.137.167.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("41345", "10", "2016-10-23 09:41:21", "178.137.167.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("41346", "3", "2016-10-23 09:41:22", "178.137.167.230", "65");
INSERT INTO `wp_rg_form_view` VALUES("41347", "3", "2016-10-23 09:41:22", "178.137.167.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("41348", "3", "2016-10-23 09:41:22", "178.137.167.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("41349", "1", "2016-10-23 09:42:45", "45.55.62.222", "3");
INSERT INTO `wp_rg_form_view` VALUES("41350", "10", "2016-10-23 10:18:29", "77.75.79.36", "9");
INSERT INTO `wp_rg_form_view` VALUES("41351", "3", "2016-10-23 10:18:29", "77.75.79.36", "12");
INSERT INTO `wp_rg_form_view` VALUES("41352", "3", "2016-10-23 11:01:27", "45.55.229.117", "144");
INSERT INTO `wp_rg_form_view` VALUES("41353", "10", "2016-10-23 11:01:27", "45.55.229.117", "92");
INSERT INTO `wp_rg_form_view` VALUES("41354", "11", "2016-10-23 11:01:28", "45.55.229.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("41355", "13", "2016-10-23 11:01:28", "45.55.229.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("41356", "2", "2016-10-23 11:01:28", "45.55.229.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("41357", "1", "2016-10-23 11:26:52", "176.123.129.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("41358", "10", "2016-10-23 12:19:43", "70.66.160.106", "48");
INSERT INTO `wp_rg_form_view` VALUES("41359", "3", "2016-10-23 12:19:45", "70.66.160.106", "80");
INSERT INTO `wp_rg_form_view` VALUES("41360", "5", "2016-10-23 12:49:08", "202.46.52.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("41361", "10", "2016-10-23 13:22:36", "204.79.180.70", "16");
INSERT INTO `wp_rg_form_view` VALUES("41362", "3", "2016-10-23 13:22:36", "204.79.180.70", "25");
INSERT INTO `wp_rg_form_view` VALUES("41363", "10", "2016-10-23 14:13:49", "77.75.79.11", "40");
INSERT INTO `wp_rg_form_view` VALUES("41364", "3", "2016-10-23 14:13:49", "77.75.79.11", "61");
INSERT INTO `wp_rg_form_view` VALUES("41365", "10", "2016-10-23 15:03:05", "202.46.55.121", "12");
INSERT INTO `wp_rg_form_view` VALUES("41366", "3", "2016-10-23 15:03:06", "202.46.55.121", "18");
INSERT INTO `wp_rg_form_view` VALUES("41367", "3", "2016-10-23 17:33:59", "66.249.79.148", "31");
INSERT INTO `wp_rg_form_view` VALUES("41368", "10", "2016-10-23 17:36:06", "162.210.196.100", "22");
INSERT INTO `wp_rg_form_view` VALUES("41369", "10", "2016-10-23 19:45:38", "66.249.79.152", "8");
INSERT INTO `wp_rg_form_view` VALUES("41370", "3", "2016-10-23 19:45:40", "66.249.79.152", "12");
INSERT INTO `wp_rg_form_view` VALUES("41371", "10", "2016-10-23 20:05:10", "70.35.202.173", "126");
INSERT INTO `wp_rg_form_view` VALUES("41372", "3", "2016-10-23 20:05:10", "70.35.202.173", "194");
INSERT INTO `wp_rg_form_view` VALUES("41373", "11", "2016-10-23 20:05:13", "70.35.202.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("41374", "2", "2016-10-23 20:05:57", "70.35.202.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("41375", "13", "2016-10-23 20:29:32", "163.172.66.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("41376", "10", "2016-10-23 21:02:26", "46.118.155.22", "40");
INSERT INTO `wp_rg_form_view` VALUES("41377", "3", "2016-10-23 21:02:27", "46.118.155.22", "60");
INSERT INTO `wp_rg_form_view` VALUES("41378", "1", "2016-10-23 22:29:23", "173.254.240.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("41379", "10", "2016-10-23 22:29:25", "173.254.240.250", "24");
INSERT INTO `wp_rg_form_view` VALUES("41380", "3", "2016-10-23 22:29:26", "173.254.240.250", "32");
INSERT INTO `wp_rg_form_view` VALUES("41381", "10", "2016-10-23 23:06:37", "104.142.127.7", "12");
INSERT INTO `wp_rg_form_view` VALUES("41382", "3", "2016-10-23 23:06:37", "104.142.127.7", "18");
INSERT INTO `wp_rg_form_view` VALUES("41383", "1", "2016-10-23 23:27:12", "207.46.13.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("41384", "3", "2016-10-24 01:11:45", "68.180.228.30", "13");
INSERT INTO `wp_rg_form_view` VALUES("41385", "10", "2016-10-24 01:11:46", "68.180.228.30", "9");
INSERT INTO `wp_rg_form_view` VALUES("41386", "10", "2016-10-24 02:03:28", "46.118.155.22", "72");
INSERT INTO `wp_rg_form_view` VALUES("41387", "3", "2016-10-24 02:03:28", "46.118.155.22", "108");
INSERT INTO `wp_rg_form_view` VALUES("41388", "10", "2016-10-24 03:19:39", "202.46.54.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("41389", "3", "2016-10-24 03:19:40", "202.46.54.108", "12");
INSERT INTO `wp_rg_form_view` VALUES("41390", "10", "2016-10-24 04:15:45", "24.68.17.97", "40");
INSERT INTO `wp_rg_form_view` VALUES("41391", "3", "2016-10-24 04:15:46", "24.68.17.97", "60");
INSERT INTO `wp_rg_form_view` VALUES("41392", "11", "2016-10-24 04:16:05", "164.132.161.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("41393", "1", "2016-10-24 04:43:26", "51.255.65.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("41394", "10", "2016-10-24 05:11:41", "96.44.120.239", "112");
INSERT INTO `wp_rg_form_view` VALUES("41395", "3", "2016-10-24 05:11:41", "96.44.120.239", "160");
INSERT INTO `wp_rg_form_view` VALUES("41396", "1", "2016-10-24 05:50:26", "104.223.30.63", "3");
INSERT INTO `wp_rg_form_view` VALUES("41397", "10", "2016-10-24 06:03:35", "66.249.79.148", "53");
INSERT INTO `wp_rg_form_view` VALUES("41398", "3", "2016-10-24 06:03:35", "66.249.79.148", "82");
INSERT INTO `wp_rg_form_view` VALUES("41399", "11", "2016-10-24 06:04:52", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41400", "1", "2016-10-24 06:05:06", "104.223.40.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("41401", "10", "2016-10-24 07:20:13", "66.249.79.152", "12");
INSERT INTO `wp_rg_form_view` VALUES("41402", "3", "2016-10-24 07:20:13", "66.249.79.152", "18");
INSERT INTO `wp_rg_form_view` VALUES("41403", "1", "2016-10-24 07:47:25", "172.93.188.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("41404", "10", "2016-10-24 08:06:39", "68.180.228.30", "20");
INSERT INTO `wp_rg_form_view` VALUES("41405", "3", "2016-10-24 08:06:39", "68.180.228.30", "30");
INSERT INTO `wp_rg_form_view` VALUES("41406", "10", "2016-10-24 10:08:18", "176.123.5.7", "1559");
INSERT INTO `wp_rg_form_view` VALUES("41407", "3", "2016-10-24 10:08:20", "176.123.5.7", "2365");
INSERT INTO `wp_rg_form_view` VALUES("41408", "1", "2016-10-24 10:14:45", "104.236.219.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("41409", "11", "2016-10-24 10:15:09", "104.236.219.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("41410", "6", "2016-10-24 10:36:20", "104.236.219.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("41411", "9", "2016-10-24 10:45:09", "104.236.219.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("41412", "3", "2016-10-24 11:00:15", "104.236.219.199", "1308");
INSERT INTO `wp_rg_form_view` VALUES("41413", "10", "2016-10-24 11:00:15", "104.236.219.199", "855");
INSERT INTO `wp_rg_form_view` VALUES("41414", "2", "2016-10-24 11:19:16", "104.236.219.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("41415", "1", "2016-10-24 11:20:09", "107.183.94.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("41416", "13", "2016-10-24 11:28:38", "104.236.219.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("41417", "8", "2016-10-24 11:32:26", "104.236.219.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("41418", "3", "2016-10-24 13:04:27", "77.75.78.169", "42");
INSERT INTO `wp_rg_form_view` VALUES("41419", "10", "2016-10-24 13:04:30", "77.75.78.169", "24");
INSERT INTO `wp_rg_form_view` VALUES("41420", "10", "2016-10-24 14:26:31", "77.75.79.32", "32");
INSERT INTO `wp_rg_form_view` VALUES("41421", "3", "2016-10-24 14:26:32", "77.75.79.32", "48");
INSERT INTO `wp_rg_form_view` VALUES("41422", "10", "2016-10-24 15:12:28", "77.75.76.167", "32");
INSERT INTO `wp_rg_form_view` VALUES("41423", "3", "2016-10-24 15:12:29", "77.75.76.167", "48");
INSERT INTO `wp_rg_form_view` VALUES("41424", "5", "2016-10-24 15:34:35", "202.46.49.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("41425", "1", "2016-10-24 16:01:52", "104.129.15.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("41426", "10", "2016-10-24 16:01:53", "104.129.15.168", "104");
INSERT INTO `wp_rg_form_view` VALUES("41427", "3", "2016-10-24 16:01:53", "104.129.15.168", "157");
INSERT INTO `wp_rg_form_view` VALUES("41428", "10", "2016-10-24 17:01:16", "192.95.21.152", "61");
INSERT INTO `wp_rg_form_view` VALUES("41429", "3", "2016-10-24 17:01:16", "192.95.21.152", "101");
INSERT INTO `wp_rg_form_view` VALUES("41430", "2", "2016-10-24 17:45:43", "192.243.55.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("41431", "10", "2016-10-24 18:02:03", "66.249.79.108", "22");
INSERT INTO `wp_rg_form_view` VALUES("41432", "3", "2016-10-24 18:22:03", "202.46.52.63", "30");
INSERT INTO `wp_rg_form_view` VALUES("41433", "3", "2016-10-24 19:00:40", "66.249.79.112", "77");
INSERT INTO `wp_rg_form_view` VALUES("41434", "10", "2016-10-24 19:00:40", "66.249.79.112", "42");
INSERT INTO `wp_rg_form_view` VALUES("41435", "10", "2016-10-24 20:01:23", "24.68.142.48", "32");
INSERT INTO `wp_rg_form_view` VALUES("41436", "3", "2016-10-24 20:01:24", "24.68.142.48", "48");
INSERT INTO `wp_rg_form_view` VALUES("41437", "3", "2016-10-24 21:02:47", "202.46.58.184", "131");
INSERT INTO `wp_rg_form_view` VALUES("41438", "10", "2016-10-24 21:02:47", "202.46.58.184", "87");
INSERT INTO `wp_rg_form_view` VALUES("41439", "2", "2016-10-24 21:31:29", "68.180.228.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("41440", "13", "2016-10-24 21:52:10", "209.52.88.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("41441", "11", "2016-10-24 21:59:53", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("41442", "3", "2016-10-24 22:00:00", "69.58.178.59", "80");
INSERT INTO `wp_rg_form_view` VALUES("41443", "10", "2016-10-24 22:00:00", "69.58.178.59", "49");
INSERT INTO `wp_rg_form_view` VALUES("41444", "3", "2016-10-24 23:13:01", "192.243.55.135", "38");
INSERT INTO `wp_rg_form_view` VALUES("41445", "10", "2016-10-24 23:13:03", "192.243.55.135", "24");
INSERT INTO `wp_rg_form_view` VALUES("41446", "10", "2016-10-25 00:00:47", "154.20.29.163", "52");
INSERT INTO `wp_rg_form_view` VALUES("41447", "3", "2016-10-25 00:00:47", "154.20.29.163", "78");
INSERT INTO `wp_rg_form_view` VALUES("41448", "10", "2016-10-25 01:00:48", "184.66.239.224", "16");
INSERT INTO `wp_rg_form_view` VALUES("41449", "3", "2016-10-25 01:00:49", "184.66.239.224", "24");
INSERT INTO `wp_rg_form_view` VALUES("41450", "10", "2016-10-25 02:03:48", "68.180.228.30", "29");
INSERT INTO `wp_rg_form_view` VALUES("41451", "3", "2016-10-25 02:03:49", "68.180.228.30", "45");
INSERT INTO `wp_rg_form_view` VALUES("41452", "10", "2016-10-25 03:42:35", "192.243.55.135", "42");
INSERT INTO `wp_rg_form_view` VALUES("41453", "3", "2016-10-25 03:42:37", "192.243.55.135", "60");
INSERT INTO `wp_rg_form_view` VALUES("41454", "10", "2016-10-25 04:22:09", "66.249.79.108", "51");
INSERT INTO `wp_rg_form_view` VALUES("41455", "3", "2016-10-25 04:22:10", "66.249.79.108", "74");
INSERT INTO `wp_rg_form_view` VALUES("41456", "10", "2016-10-25 05:05:08", "40.77.167.39", "32");
INSERT INTO `wp_rg_form_view` VALUES("41457", "3", "2016-10-25 05:05:08", "40.77.167.39", "56");
INSERT INTO `wp_rg_form_view` VALUES("41458", "1", "2016-10-25 05:14:27", "172.245.129.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("41459", "10", "2016-10-25 06:04:21", "96.50.18.6", "64");
INSERT INTO `wp_rg_form_view` VALUES("41460", "3", "2016-10-25 06:04:21", "96.50.18.6", "100");
INSERT INTO `wp_rg_form_view` VALUES("41461", "3", "2016-10-25 07:06:27", "164.132.161.97", "20");
INSERT INTO `wp_rg_form_view` VALUES("41462", "10", "2016-10-25 07:06:27", "164.132.161.97", "12");
INSERT INTO `wp_rg_form_view` VALUES("41463", "1", "2016-10-25 07:36:59", "175.141.168.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("41464", "10", "2016-10-25 08:02:53", "66.249.79.156", "32");
INSERT INTO `wp_rg_form_view` VALUES("41465", "3", "2016-10-25 08:02:54", "66.249.79.156", "49");
INSERT INTO `wp_rg_form_view` VALUES("41466", "10", "2016-10-25 09:01:15", "157.55.39.223", "50");
INSERT INTO `wp_rg_form_view` VALUES("41467", "3", "2016-10-25 09:01:15", "157.55.39.223", "72");
INSERT INTO `wp_rg_form_view` VALUES("41468", "13", "2016-10-25 09:05:30", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("41469", "10", "2016-10-25 10:00:54", "157.55.39.36", "514");
INSERT INTO `wp_rg_form_view` VALUES("41470", "3", "2016-10-25 10:00:55", "157.55.39.36", "783");
INSERT INTO `wp_rg_form_view` VALUES("41471", "10", "2016-10-25 11:01:05", "157.55.39.36", "108");
INSERT INTO `wp_rg_form_view` VALUES("41472", "3", "2016-10-25 11:01:06", "157.55.39.36", "174");
INSERT INTO `wp_rg_form_view` VALUES("41473", "9", "2016-10-25 11:08:04", "157.55.39.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("41474", "8", "2016-10-25 11:08:04", "157.55.39.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("41475", "10", "2016-10-25 12:06:32", "207.46.13.82", "49");
INSERT INTO `wp_rg_form_view` VALUES("41476", "3", "2016-10-25 12:06:32", "207.46.13.82", "75");
INSERT INTO `wp_rg_form_view` VALUES("41477", "2", "2016-10-25 12:18:36", "202.46.53.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("41478", "13", "2016-10-25 12:31:57", "207.46.13.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("41479", "10", "2016-10-25 13:08:21", "68.180.228.30", "32");
INSERT INTO `wp_rg_form_view` VALUES("41480", "3", "2016-10-25 13:08:21", "68.180.228.30", "54");
INSERT INTO `wp_rg_form_view` VALUES("41481", "10", "2016-10-25 14:16:56", "163.172.66.143", "4");
INSERT INTO `wp_rg_form_view` VALUES("41482", "3", "2016-10-25 14:16:59", "163.172.66.143", "6");
INSERT INTO `wp_rg_form_view` VALUES("41483", "10", "2016-10-25 15:04:53", "157.55.39.36", "12");
INSERT INTO `wp_rg_form_view` VALUES("41484", "3", "2016-10-25 15:04:54", "157.55.39.36", "20");
INSERT INTO `wp_rg_form_view` VALUES("41485", "10", "2016-10-25 16:13:04", "24.68.28.31", "48");
INSERT INTO `wp_rg_form_view` VALUES("41486", "3", "2016-10-25 16:13:04", "24.68.28.31", "72");
INSERT INTO `wp_rg_form_view` VALUES("41487", "1", "2016-10-25 16:26:26", "74.202.28.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("41488", "10", "2016-10-25 17:14:40", "46.119.119.89", "64");
INSERT INTO `wp_rg_form_view` VALUES("41489", "10", "2016-10-25 17:14:40", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41490", "3", "2016-10-25 17:14:45", "46.119.119.89", "86");
INSERT INTO `wp_rg_form_view` VALUES("41491", "3", "2016-10-25 17:14:45", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41492", "1", "2016-10-25 17:52:16", "96.50.6.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("41493", "5", "2016-10-25 17:59:46", "77.75.78.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("41494", "10", "2016-10-25 18:00:44", "202.46.51.201", "24");
INSERT INTO `wp_rg_form_view` VALUES("41495", "3", "2016-10-25 18:00:45", "202.46.51.201", "37");
INSERT INTO `wp_rg_form_view` VALUES("41496", "9", "2016-10-25 18:23:44", "157.55.39.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("41497", "3", "2016-10-25 19:18:05", "192.243.55.138", "112");
INSERT INTO `wp_rg_form_view` VALUES("41498", "10", "2016-10-25 19:18:08", "192.243.55.138", "68");
INSERT INTO `wp_rg_form_view` VALUES("41499", "13", "2016-10-25 19:52:10", "184.71.28.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("41500", "1", "2016-10-25 20:00:52", "155.94.179.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("41501", "10", "2016-10-25 20:00:52", "155.94.179.8", "72");
INSERT INTO `wp_rg_form_view` VALUES("41502", "3", "2016-10-25 20:00:52", "155.94.179.8", "111");
INSERT INTO `wp_rg_form_view` VALUES("41503", "3", "2016-10-25 21:02:42", "207.46.13.82", "64");
INSERT INTO `wp_rg_form_view` VALUES("41504", "10", "2016-10-25 21:02:42", "207.46.13.82", "40");
INSERT INTO `wp_rg_form_view` VALUES("41505", "10", "2016-10-25 22:13:24", "163.172.66.118", "68");
INSERT INTO `wp_rg_form_view` VALUES("41506", "3", "2016-10-25 22:13:24", "163.172.66.118", "134");
INSERT INTO `wp_rg_form_view` VALUES("41507", "10", "2016-10-25 23:15:38", "157.55.39.119", "16");
INSERT INTO `wp_rg_form_view` VALUES("41508", "3", "2016-10-25 23:15:40", "157.55.39.119", "25");
INSERT INTO `wp_rg_form_view` VALUES("41509", "10", "2016-10-26 00:05:29", "77.75.79.72", "60");
INSERT INTO `wp_rg_form_view` VALUES("41510", "3", "2016-10-26 00:05:29", "77.75.79.72", "92");
INSERT INTO `wp_rg_form_view` VALUES("41511", "3", "2016-10-26 01:19:50", "202.46.58.181", "51");
INSERT INTO `wp_rg_form_view` VALUES("41512", "10", "2016-10-26 01:19:53", "202.46.58.181", "32");
INSERT INTO `wp_rg_form_view` VALUES("41513", "10", "2016-10-26 02:13:55", "24.108.187.235", "31");
INSERT INTO `wp_rg_form_view` VALUES("41514", "3", "2016-10-26 02:13:55", "24.108.187.235", "54");
INSERT INTO `wp_rg_form_view` VALUES("41515", "10", "2016-10-26 03:00:04", "99.199.2.56", "32");
INSERT INTO `wp_rg_form_view` VALUES("41516", "3", "2016-10-26 03:00:04", "99.199.2.56", "48");
INSERT INTO `wp_rg_form_view` VALUES("41517", "12", "2016-10-26 03:32:45", "207.46.13.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("41518", "10", "2016-10-26 04:03:19", "207.46.13.82", "33");
INSERT INTO `wp_rg_form_view` VALUES("41519", "3", "2016-10-26 04:03:19", "207.46.13.82", "50");
INSERT INTO `wp_rg_form_view` VALUES("41520", "10", "2016-10-26 05:05:19", "178.137.95.202", "59");
INSERT INTO `wp_rg_form_view` VALUES("41521", "10", "2016-10-26 05:05:19", "178.137.95.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("41522", "3", "2016-10-26 05:05:20", "178.137.95.202", "92");
INSERT INTO `wp_rg_form_view` VALUES("41523", "3", "2016-10-26 05:05:20", "178.137.95.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("41524", "13", "2016-10-26 05:56:28", "163.172.65.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("41525", "3", "2016-10-26 06:05:02", "157.55.39.222", "37");
INSERT INTO `wp_rg_form_view` VALUES("41526", "10", "2016-10-26 06:05:02", "157.55.39.222", "24");
INSERT INTO `wp_rg_form_view` VALUES("41527", "10", "2016-10-26 07:03:43", "207.46.13.82", "56");
INSERT INTO `wp_rg_form_view` VALUES("41528", "3", "2016-10-26 07:03:43", "207.46.13.82", "86");
INSERT INTO `wp_rg_form_view` VALUES("41529", "3", "2016-10-26 08:28:04", "157.55.39.36", "14");
INSERT INTO `wp_rg_form_view` VALUES("41530", "10", "2016-10-26 08:28:06", "157.55.39.36", "8");
INSERT INTO `wp_rg_form_view` VALUES("41531", "10", "2016-10-26 09:40:32", "207.46.13.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("41532", "3", "2016-10-26 09:40:35", "207.46.13.82", "6");
INSERT INTO `wp_rg_form_view` VALUES("41533", "3", "2016-10-26 10:33:05", "207.46.13.82", "71");
INSERT INTO `wp_rg_form_view` VALUES("41534", "10", "2016-10-26 10:33:06", "207.46.13.82", "44");
INSERT INTO `wp_rg_form_view` VALUES("41535", "1", "2016-10-26 10:49:45", "62.183.105.230", "3");
INSERT INTO `wp_rg_form_view` VALUES("41536", "10", "2016-10-26 11:05:18", "5.196.140.232", "17");
INSERT INTO `wp_rg_form_view` VALUES("41537", "3", "2016-10-26 11:05:18", "5.196.140.232", "24");
INSERT INTO `wp_rg_form_view` VALUES("41538", "1", "2016-10-26 11:11:01", "120.92.3.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("41539", "10", "2016-10-26 12:20:18", "109.169.29.30", "190");
INSERT INTO `wp_rg_form_view` VALUES("41540", "3", "2016-10-26 12:20:19", "109.169.29.30", "299");
INSERT INTO `wp_rg_form_view` VALUES("41541", "2", "2016-10-26 12:21:00", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41542", "11", "2016-10-26 12:21:27", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41543", "13", "2016-10-26 12:23:29", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41544", "10", "2016-10-26 13:04:20", "24.108.24.40", "41");
INSERT INTO `wp_rg_form_view` VALUES("41545", "3", "2016-10-26 13:04:21", "24.108.24.40", "72");
INSERT INTO `wp_rg_form_view` VALUES("41546", "3", "2016-10-26 14:12:25", "207.46.13.33", "37");
INSERT INTO `wp_rg_form_view` VALUES("41547", "10", "2016-10-26 14:12:25", "207.46.13.33", "24");
INSERT INTO `wp_rg_form_view` VALUES("41548", "1", "2016-10-26 14:39:06", "120.52.73.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("41549", "2", "2016-10-26 14:41:43", "202.46.55.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("41550", "3", "2016-10-26 15:02:56", "157.55.39.36", "56");
INSERT INTO `wp_rg_form_view` VALUES("41551", "10", "2016-10-26 15:02:56", "157.55.39.36", "36");
INSERT INTO `wp_rg_form_view` VALUES("41552", "8", "2016-10-26 15:24:10", "67.213.99.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("41553", "10", "2016-10-26 16:15:56", "157.55.39.222", "75");
INSERT INTO `wp_rg_form_view` VALUES("41554", "10", "2016-10-26 16:15:56", "178.137.95.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("41555", "3", "2016-10-26 16:15:56", "178.137.95.202", "105");
INSERT INTO `wp_rg_form_view` VALUES("41556", "1", "2016-10-26 16:23:11", "192.3.29.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("41557", "10", "2016-10-26 17:03:13", "163.172.65.247", "37");
INSERT INTO `wp_rg_form_view` VALUES("41558", "3", "2016-10-26 17:03:15", "163.172.65.247", "57");
INSERT INTO `wp_rg_form_view` VALUES("41559", "10", "2016-10-26 18:05:55", "192.240.106.138", "84");
INSERT INTO `wp_rg_form_view` VALUES("41560", "3", "2016-10-26 18:05:55", "192.240.106.138", "129");
INSERT INTO `wp_rg_form_view` VALUES("41561", "10", "2016-10-26 19:34:29", "157.55.39.36", "25");
INSERT INTO `wp_rg_form_view` VALUES("41562", "3", "2016-10-26 19:34:31", "157.55.39.36", "38");
INSERT INTO `wp_rg_form_view` VALUES("41563", "3", "2016-10-26 20:02:54", "207.46.13.33", "79");
INSERT INTO `wp_rg_form_view` VALUES("41564", "10", "2016-10-26 20:02:54", "207.46.13.33", "49");
INSERT INTO `wp_rg_form_view` VALUES("41565", "5", "2016-10-26 20:12:09", "163.172.66.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("41566", "11", "2016-10-26 20:58:45", "40.77.167.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("41567", "10", "2016-10-26 21:04:52", "184.71.30.118", "25");
INSERT INTO `wp_rg_form_view` VALUES("41568", "3", "2016-10-26 21:04:52", "184.71.30.118", "37");
INSERT INTO `wp_rg_form_view` VALUES("41569", "3", "2016-10-26 22:08:37", "157.55.39.36", "65");
INSERT INTO `wp_rg_form_view` VALUES("41570", "10", "2016-10-26 22:08:39", "157.55.39.36", "48");
INSERT INTO `wp_rg_form_view` VALUES("41571", "10", "2016-10-26 23:36:38", "207.46.13.82", "252");
INSERT INTO `wp_rg_form_view` VALUES("41572", "3", "2016-10-26 23:36:39", "207.46.13.82", "380");
INSERT INTO `wp_rg_form_view` VALUES("41573", "11", "2016-10-26 23:39:42", "62.151.181.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("41574", "2", "2016-10-26 23:40:27", "62.151.181.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("41575", "10", "2016-10-27 00:04:57", "163.172.65.15", "36");
INSERT INTO `wp_rg_form_view` VALUES("41576", "3", "2016-10-27 00:04:57", "163.172.65.15", "54");
INSERT INTO `wp_rg_form_view` VALUES("41577", "10", "2016-10-27 01:06:27", "68.180.228.30", "25");
INSERT INTO `wp_rg_form_view` VALUES("41578", "3", "2016-10-27 01:06:27", "68.180.228.30", "38");
INSERT INTO `wp_rg_form_view` VALUES("41579", "6", "2016-10-27 01:31:12", "164.132.161.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("41580", "10", "2016-10-27 02:02:10", "68.180.228.30", "28");
INSERT INTO `wp_rg_form_view` VALUES("41581", "3", "2016-10-27 02:02:10", "68.180.228.30", "42");
INSERT INTO `wp_rg_form_view` VALUES("41582", "10", "2016-10-27 03:25:24", "207.46.13.82", "17");
INSERT INTO `wp_rg_form_view` VALUES("41583", "3", "2016-10-27 03:25:25", "207.46.13.82", "24");
INSERT INTO `wp_rg_form_view` VALUES("41584", "10", "2016-10-27 04:14:53", "5.9.112.6", "47");
INSERT INTO `wp_rg_form_view` VALUES("41585", "3", "2016-10-27 04:14:55", "5.9.112.6", "67");
INSERT INTO `wp_rg_form_view` VALUES("41586", "3", "2016-10-27 05:17:02", "66.249.79.112", "53");
INSERT INTO `wp_rg_form_view` VALUES("41587", "10", "2016-10-27 05:17:03", "66.249.79.112", "32");
INSERT INTO `wp_rg_form_view` VALUES("41588", "10", "2016-10-27 06:13:19", "207.46.13.33", "28");
INSERT INTO `wp_rg_form_view` VALUES("41589", "3", "2016-10-27 06:13:20", "207.46.13.33", "43");
INSERT INTO `wp_rg_form_view` VALUES("41590", "8", "2016-10-27 07:18:06", "207.46.13.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("41591", "10", "2016-10-27 07:18:06", "207.46.13.33", "36");
INSERT INTO `wp_rg_form_view` VALUES("41592", "3", "2016-10-27 07:18:06", "207.46.13.33", "56");
INSERT INTO `wp_rg_form_view` VALUES("41593", "1", "2016-10-27 07:31:43", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("41594", "10", "2016-10-27 08:22:26", "66.249.79.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("41595", "3", "2016-10-27 08:22:26", "66.249.79.108", "12");
INSERT INTO `wp_rg_form_view` VALUES("41596", "10", "2016-10-27 10:17:02", "66.249.79.112", "4");
INSERT INTO `wp_rg_form_view` VALUES("41597", "3", "2016-10-27 10:17:04", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("41598", "10", "2016-10-27 11:02:47", "207.46.13.33", "36");
INSERT INTO `wp_rg_form_view` VALUES("41599", "3", "2016-10-27 11:02:47", "207.46.13.33", "55");
INSERT INTO `wp_rg_form_view` VALUES("41600", "10", "2016-10-27 12:03:37", "157.55.39.210", "61");
INSERT INTO `wp_rg_form_view` VALUES("41601", "3", "2016-10-27 12:03:38", "157.55.39.210", "92");
INSERT INTO `wp_rg_form_view` VALUES("41602", "10", "2016-10-27 13:20:00", "46.119.118.233", "20");
INSERT INTO `wp_rg_form_view` VALUES("41603", "3", "2016-10-27 13:20:01", "46.119.118.233", "30");
INSERT INTO `wp_rg_form_view` VALUES("41604", "10", "2016-10-27 14:05:08", "40.77.167.20", "25");
INSERT INTO `wp_rg_form_view` VALUES("41605", "3", "2016-10-27 14:05:12", "40.77.167.20", "37");
INSERT INTO `wp_rg_form_view` VALUES("41606", "13", "2016-10-27 15:00:14", "40.77.167.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("41607", "10", "2016-10-27 15:00:15", "40.77.167.91", "24");
INSERT INTO `wp_rg_form_view` VALUES("41608", "3", "2016-10-27 15:00:15", "40.77.167.91", "37");
INSERT INTO `wp_rg_form_view` VALUES("41609", "10", "2016-10-27 16:02:34", "193.182.189.194", "32");
INSERT INTO `wp_rg_form_view` VALUES("41610", "3", "2016-10-27 16:02:34", "193.182.189.194", "48");
INSERT INTO `wp_rg_form_view` VALUES("41611", "10", "2016-10-27 17:06:01", "207.6.239.173", "16");
INSERT INTO `wp_rg_form_view` VALUES("41612", "3", "2016-10-27 17:06:02", "207.6.239.173", "24");
INSERT INTO `wp_rg_form_view` VALUES("41613", "8", "2016-10-27 17:41:26", "192.243.55.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("41614", "3", "2016-10-27 18:04:21", "68.180.228.30", "28");
INSERT INTO `wp_rg_form_view` VALUES("41615", "10", "2016-10-27 18:04:22", "68.180.228.30", "16");
INSERT INTO `wp_rg_form_view` VALUES("41616", "10", "2016-10-27 19:48:54", "202.46.52.118", "4");
INSERT INTO `wp_rg_form_view` VALUES("41617", "3", "2016-10-27 19:48:56", "202.46.52.118", "6");
INSERT INTO `wp_rg_form_view` VALUES("41618", "10", "2016-10-27 20:00:38", "157.55.39.219", "40");
INSERT INTO `wp_rg_form_view` VALUES("41619", "3", "2016-10-27 20:00:39", "157.55.39.219", "63");
INSERT INTO `wp_rg_form_view` VALUES("41620", "10", "2016-10-27 21:07:52", "69.90.78.198", "24");
INSERT INTO `wp_rg_form_view` VALUES("41621", "3", "2016-10-27 21:07:52", "69.90.78.198", "37");
INSERT INTO `wp_rg_form_view` VALUES("41622", "10", "2016-10-27 22:37:12", "46.119.119.89", "43");
INSERT INTO `wp_rg_form_view` VALUES("41623", "10", "2016-10-27 22:37:12", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41624", "3", "2016-10-27 22:37:15", "46.119.119.89", "64");
INSERT INTO `wp_rg_form_view` VALUES("41625", "3", "2016-10-27 22:37:15", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41626", "3", "2016-10-27 22:37:15", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41627", "1", "2016-10-27 22:50:26", "65.31.85.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("41628", "10", "2016-10-27 23:02:03", "46.119.118.233", "44");
INSERT INTO `wp_rg_form_view` VALUES("41629", "3", "2016-10-27 23:02:03", "46.119.118.233", "66");
INSERT INTO `wp_rg_form_view` VALUES("41630", "1", "2016-10-28 00:34:40", "105.108.151.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("41631", "10", "2016-10-28 00:34:41", "105.108.151.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("41632", "3", "2016-10-28 00:34:42", "105.108.151.51", "6");
INSERT INTO `wp_rg_form_view` VALUES("41633", "10", "2016-10-28 01:04:14", "157.55.39.157", "12");
INSERT INTO `wp_rg_form_view` VALUES("41634", "3", "2016-10-28 01:04:15", "157.55.39.157", "19");
INSERT INTO `wp_rg_form_view` VALUES("41635", "13", "2016-10-28 02:02:23", "105.112.32.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("41636", "10", "2016-10-28 02:02:23", "105.112.32.200", "16");
INSERT INTO `wp_rg_form_view` VALUES("41637", "3", "2016-10-28 02:02:23", "105.112.32.200", "24");
INSERT INTO `wp_rg_form_view` VALUES("41638", "11", "2016-10-28 02:05:44", "105.112.32.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("41639", "10", "2016-10-28 03:29:24", "24.68.17.97", "7");
INSERT INTO `wp_rg_form_view` VALUES("41640", "10", "2016-10-28 03:29:24", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("41641", "3", "2016-10-28 03:29:26", "24.68.17.97", "11");
INSERT INTO `wp_rg_form_view` VALUES("41642", "3", "2016-10-28 03:29:26", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("41643", "10", "2016-10-28 04:20:55", "68.180.228.30", "92");
INSERT INTO `wp_rg_form_view` VALUES("41644", "3", "2016-10-28 04:20:56", "68.180.228.30", "142");
INSERT INTO `wp_rg_form_view` VALUES("41645", "2", "2016-10-28 04:22:25", "45.55.232.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("41646", "11", "2016-10-28 04:22:25", "45.55.232.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("41647", "10", "2016-10-28 05:20:37", "5.248.253.78", "55");
INSERT INTO `wp_rg_form_view` VALUES("41648", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41649", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41650", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41651", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41652", "10", "2016-10-28 05:20:37", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41653", "3", "2016-10-28 05:20:39", "5.248.253.78", "85");
INSERT INTO `wp_rg_form_view` VALUES("41654", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41655", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41656", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41657", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41658", "3", "2016-10-28 05:20:39", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("41659", "10", "2016-10-28 06:09:39", "66.249.79.112", "13");
INSERT INTO `wp_rg_form_view` VALUES("41660", "3", "2016-10-28 06:09:41", "66.249.79.112", "19");
INSERT INTO `wp_rg_form_view` VALUES("41661", "10", "2016-10-28 07:16:39", "46.119.119.89", "26");
INSERT INTO `wp_rg_form_view` VALUES("41662", "10", "2016-10-28 07:16:39", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41663", "10", "2016-10-28 07:16:39", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41664", "3", "2016-10-28 07:16:41", "46.119.119.89", "40");
INSERT INTO `wp_rg_form_view` VALUES("41665", "3", "2016-10-28 07:16:41", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41666", "3", "2016-10-28 07:16:41", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41667", "3", "2016-10-28 08:05:20", "66.249.79.108", "63");
INSERT INTO `wp_rg_form_view` VALUES("41668", "10", "2016-10-28 08:05:22", "66.249.79.108", "40");
INSERT INTO `wp_rg_form_view` VALUES("41669", "13", "2016-10-28 08:56:26", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41670", "10", "2016-10-28 09:39:56", "202.46.58.84", "128");
INSERT INTO `wp_rg_form_view` VALUES("41671", "3", "2016-10-28 09:39:56", "202.46.58.84", "193");
INSERT INTO `wp_rg_form_view` VALUES("41672", "11", "2016-10-28 09:50:08", "70.35.199.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("41673", "2", "2016-10-28 09:50:56", "70.35.199.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("41674", "10", "2016-10-28 10:25:40", "68.180.228.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("41675", "3", "2016-10-28 10:25:41", "68.180.228.30", "6");
INSERT INTO `wp_rg_form_view` VALUES("41676", "1", "2016-10-28 11:11:54", "183.80.55.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("41677", "10", "2016-10-28 11:11:56", "183.80.55.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("41678", "3", "2016-10-28 11:12:03", "183.80.55.178", "12");
INSERT INTO `wp_rg_form_view` VALUES("41679", "10", "2016-10-28 12:21:04", "202.46.50.83", "4");
INSERT INTO `wp_rg_form_view` VALUES("41680", "3", "2016-10-28 12:21:06", "202.46.50.83", "6");
INSERT INTO `wp_rg_form_view` VALUES("41681", "10", "2016-10-28 13:53:39", "40.77.167.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("41682", "3", "2016-10-28 13:53:41", "40.77.167.20", "6");
INSERT INTO `wp_rg_form_view` VALUES("41683", "3", "2016-10-28 14:06:20", "192.243.55.132", "18");
INSERT INTO `wp_rg_form_view` VALUES("41684", "10", "2016-10-28 14:06:21", "192.243.55.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("41685", "10", "2016-10-28 16:02:41", "192.243.55.136", "16");
INSERT INTO `wp_rg_form_view` VALUES("41686", "3", "2016-10-28 16:02:43", "192.243.55.136", "24");
INSERT INTO `wp_rg_form_view` VALUES("41687", "9", "2016-10-28 16:59:25", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("41688", "10", "2016-10-28 17:11:54", "199.59.148.209", "8");
INSERT INTO `wp_rg_form_view` VALUES("41689", "3", "2016-10-28 17:11:54", "199.59.148.209", "12");
INSERT INTO `wp_rg_form_view` VALUES("41690", "6", "2016-10-28 17:40:46", "202.46.51.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("41691", "1", "2016-10-28 18:02:22", "192.243.55.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("41692", "10", "2016-10-28 18:02:24", "192.243.55.131", "76");
INSERT INTO `wp_rg_form_view` VALUES("41693", "3", "2016-10-28 18:02:25", "192.243.55.131", "106");
INSERT INTO `wp_rg_form_view` VALUES("41694", "3", "2016-10-28 19:03:30", "207.194.133.9", "87");
INSERT INTO `wp_rg_form_view` VALUES("41695", "10", "2016-10-28 19:03:32", "207.194.133.9", "56");
INSERT INTO `wp_rg_form_view` VALUES("41696", "10", "2016-10-28 20:23:01", "66.249.79.104", "223");
INSERT INTO `wp_rg_form_view` VALUES("41697", "3", "2016-10-28 20:23:01", "66.249.79.104", "351");
INSERT INTO `wp_rg_form_view` VALUES("41698", "9", "2016-10-28 20:25:10", "157.55.39.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("41699", "2", "2016-10-28 20:25:24", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("41700", "10", "2016-10-28 21:03:53", "68.231.178.113", "20");
INSERT INTO `wp_rg_form_view` VALUES("41701", "3", "2016-10-28 21:03:57", "68.231.178.113", "31");
INSERT INTO `wp_rg_form_view` VALUES("41702", "3", "2016-10-28 22:15:16", "68.180.228.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("41703", "10", "2016-10-28 23:16:45", "192.243.55.136", "5");
INSERT INTO `wp_rg_form_view` VALUES("41704", "3", "2016-10-28 23:16:49", "192.243.55.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("41705", "1", "2016-10-29 00:45:54", "107.150.79.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("41706", "10", "2016-10-29 00:45:56", "107.150.79.60", "12");
INSERT INTO `wp_rg_form_view` VALUES("41707", "3", "2016-10-29 00:45:59", "107.150.79.60", "18");
INSERT INTO `wp_rg_form_view` VALUES("41708", "10", "2016-10-29 01:27:39", "46.119.119.89", "38");
INSERT INTO `wp_rg_form_view` VALUES("41709", "10", "2016-10-29 01:27:39", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41710", "10", "2016-10-29 01:27:39", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41711", "3", "2016-10-29 01:27:40", "46.119.119.89", "59");
INSERT INTO `wp_rg_form_view` VALUES("41712", "3", "2016-10-29 01:27:40", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41713", "3", "2016-10-29 01:27:40", "46.119.119.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("41714", "1", "2016-10-29 01:38:05", "83.233.99.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("41715", "3", "2016-10-29 02:00:48", "192.243.55.136", "19");
INSERT INTO `wp_rg_form_view` VALUES("41716", "10", "2016-10-29 02:00:49", "192.243.55.136", "12");
INSERT INTO `wp_rg_form_view` VALUES("41717", "6", "2016-10-29 02:30:24", "192.243.55.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("41718", "3", "2016-10-29 03:19:47", "66.249.79.112", "77");
INSERT INTO `wp_rg_form_view` VALUES("41719", "10", "2016-10-29 03:19:51", "66.249.79.112", "48");
INSERT INTO `wp_rg_form_view` VALUES("41720", "11", "2016-10-29 03:45:18", "104.154.65.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("41721", "2", "2016-10-29 03:45:19", "104.154.65.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("41722", "10", "2016-10-29 04:28:27", "202.46.56.96", "16");
INSERT INTO `wp_rg_form_view` VALUES("41723", "3", "2016-10-29 04:28:28", "202.46.56.96", "25");
INSERT INTO `wp_rg_form_view` VALUES("41724", "9", "2016-10-29 04:35:45", "163.172.65.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("41725", "10", "2016-10-29 05:14:21", "184.66.154.17", "29");
INSERT INTO `wp_rg_form_view` VALUES("41726", "3", "2016-10-29 05:14:21", "184.66.154.17", "45");
INSERT INTO `wp_rg_form_view` VALUES("41727", "10", "2016-10-29 06:07:01", "66.249.79.108", "65");
INSERT INTO `wp_rg_form_view` VALUES("41728", "3", "2016-10-29 06:07:03", "66.249.79.108", "97");
INSERT INTO `wp_rg_form_view` VALUES("41729", "11", "2016-10-29 06:57:55", "70.35.207.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("41730", "10", "2016-10-29 07:00:02", "70.35.207.61", "88");
INSERT INTO `wp_rg_form_view` VALUES("41731", "3", "2016-10-29 07:00:02", "70.35.207.61", "135");
INSERT INTO `wp_rg_form_view` VALUES("41732", "2", "2016-10-29 07:00:24", "70.35.207.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("41733", "3", "2016-10-29 08:10:08", "164.132.161.56", "67");
INSERT INTO `wp_rg_form_view` VALUES("41734", "10", "2016-10-29 08:10:09", "164.132.161.56", "44");
INSERT INTO `wp_rg_form_view` VALUES("41735", "10", "2016-10-29 09:18:10", "54.146.148.233", "143");
INSERT INTO `wp_rg_form_view` VALUES("41736", "10", "2016-10-29 09:18:10", "54.146.148.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("41737", "3", "2016-10-29 09:18:12", "54.146.148.233", "216");
INSERT INTO `wp_rg_form_view` VALUES("41738", "3", "2016-10-29 09:18:12", "54.146.148.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("41739", "11", "2016-10-29 09:18:20", "54.146.148.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("41740", "2", "2016-10-29 09:18:22", "54.146.148.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("41741", "3", "2016-10-29 11:25:04", "192.243.55.129", "25");
INSERT INTO `wp_rg_form_view` VALUES("41742", "10", "2016-10-29 11:25:06", "192.243.55.129", "17");
INSERT INTO `wp_rg_form_view` VALUES("41743", "10", "2016-10-29 12:46:29", "66.249.79.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("41744", "3", "2016-10-29 12:46:32", "66.249.79.108", "7");
INSERT INTO `wp_rg_form_view` VALUES("41745", "12", "2016-10-29 13:03:59", "207.46.13.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("41746", "10", "2016-10-29 13:03:59", "207.46.13.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("41747", "3", "2016-10-29 13:03:59", "207.46.13.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("41748", "3", "2016-10-29 14:01:17", "192.243.55.129", "19");
INSERT INTO `wp_rg_form_view` VALUES("41749", "10", "2016-10-29 14:01:17", "192.243.55.129", "13");
INSERT INTO `wp_rg_form_view` VALUES("41750", "10", "2016-10-29 16:02:52", "157.55.39.251", "21");
INSERT INTO `wp_rg_form_view` VALUES("41751", "3", "2016-10-29 16:02:55", "157.55.39.251", "31");
INSERT INTO `wp_rg_form_view` VALUES("41752", "10", "2016-10-29 17:01:39", "46.119.118.233", "56");
INSERT INTO `wp_rg_form_view` VALUES("41753", "3", "2016-10-29 17:01:39", "46.119.118.233", "86");
INSERT INTO `wp_rg_form_view` VALUES("41754", "10", "2016-10-29 18:03:06", "66.249.79.112", "19");
INSERT INTO `wp_rg_form_view` VALUES("41755", "3", "2016-10-29 18:03:06", "66.249.79.112", "21");
INSERT INTO `wp_rg_form_view` VALUES("41756", "10", "2016-10-29 19:01:47", "163.172.65.22", "24");
INSERT INTO `wp_rg_form_view` VALUES("41757", "3", "2016-10-29 19:01:49", "163.172.65.22", "40");
INSERT INTO `wp_rg_form_view` VALUES("41758", "1", "2016-10-29 19:02:32", "85.24.135.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("41759", "11", "2016-10-29 19:27:39", "192.243.55.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("41760", "10", "2016-10-29 20:32:22", "157.55.39.251", "44");
INSERT INTO `wp_rg_form_view` VALUES("41761", "3", "2016-10-29 20:32:24", "157.55.39.251", "69");
INSERT INTO `wp_rg_form_view` VALUES("41762", "1", "2016-10-29 20:46:52", "103.253.145.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("41763", "10", "2016-10-29 21:24:07", "66.249.79.108", "32");
INSERT INTO `wp_rg_form_view` VALUES("41764", "3", "2016-10-29 21:24:08", "66.249.79.108", "48");
INSERT INTO `wp_rg_form_view` VALUES("41765", "10", "2016-10-29 22:08:51", "68.180.228.30", "17");
INSERT INTO `wp_rg_form_view` VALUES("41766", "3", "2016-10-29 22:08:51", "68.180.228.30", "24");
INSERT INTO `wp_rg_form_view` VALUES("41767", "10", "2016-10-29 23:05:35", "184.66.32.165", "8");
INSERT INTO `wp_rg_form_view` VALUES("41768", "3", "2016-10-29 23:05:35", "184.66.32.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("41769", "3", "2016-10-30 00:01:58", "66.249.79.108", "83");
INSERT INTO `wp_rg_form_view` VALUES("41770", "10", "2016-10-30 00:04:28", "24.244.32.148", "52");
INSERT INTO `wp_rg_form_view` VALUES("41771", "1", "2016-10-30 00:37:14", "68.170.111.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("41772", "3", "2016-10-30 01:12:52", "202.46.55.123", "68");
INSERT INTO `wp_rg_form_view` VALUES("41773", "10", "2016-10-30 01:12:52", "202.46.55.123", "44");
INSERT INTO `wp_rg_form_view` VALUES("41774", "1", "2016-10-30 01:58:01", "108.180.150.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("41775", "3", "2016-10-30 02:00:23", "108.180.150.101", "60");
INSERT INTO `wp_rg_form_view` VALUES("41776", "10", "2016-10-30 02:00:24", "108.180.150.101", "40");
INSERT INTO `wp_rg_form_view` VALUES("41777", "3", "2016-10-30 03:00:49", "163.172.64.233", "74");
INSERT INTO `wp_rg_form_view` VALUES("41778", "10", "2016-10-30 03:00:49", "163.172.64.233", "48");
INSERT INTO `wp_rg_form_view` VALUES("41779", "3", "2016-10-30 04:00:17", "202.46.51.199", "73");
INSERT INTO `wp_rg_form_view` VALUES("41780", "10", "2016-10-30 04:00:17", "202.46.51.199", "48");
INSERT INTO `wp_rg_form_view` VALUES("41781", "2", "2016-10-30 04:34:25", "167.114.209.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("41782", "1", "2016-10-30 04:51:18", "112.200.86.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("41783", "1", "2016-10-30 05:22:09", "91.138.103.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("41784", "3", "2016-10-30 05:22:10", "91.138.103.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("41785", "10", "2016-10-30 05:22:10", "91.138.103.113", "4");
INSERT INTO `wp_rg_form_view` VALUES("41786", "3", "2016-10-30 06:01:07", "64.180.191.88", "42");
INSERT INTO `wp_rg_form_view` VALUES("41787", "10", "2016-10-30 06:01:07", "64.180.191.88", "28");
INSERT INTO `wp_rg_form_view` VALUES("41788", "1", "2016-10-30 06:24:23", "70.68.244.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("41789", "10", "2016-10-30 09:37:01", "157.55.39.251", "5");
INSERT INTO `wp_rg_form_view` VALUES("41790", "3", "2016-10-30 09:37:03", "157.55.39.251", "6");
INSERT INTO `wp_rg_form_view` VALUES("41791", "10", "2016-10-30 10:20:48", "68.180.228.30", "33");
INSERT INTO `wp_rg_form_view` VALUES("41792", "3", "2016-10-30 10:20:49", "68.180.228.30", "49");
INSERT INTO `wp_rg_form_view` VALUES("41793", "3", "2016-10-30 11:06:48", "202.46.50.153", "17");
INSERT INTO `wp_rg_form_view` VALUES("41794", "10", "2016-10-30 11:06:49", "202.46.50.153", "8");
INSERT INTO `wp_rg_form_view` VALUES("41795", "10", "2016-10-30 12:12:10", "68.180.228.30", "23");
INSERT INTO `wp_rg_form_view` VALUES("41796", "3", "2016-10-30 12:12:12", "68.180.228.30", "26");
INSERT INTO `wp_rg_form_view` VALUES("41797", "3", "2016-10-30 14:17:47", "66.249.79.112", "18");
INSERT INTO `wp_rg_form_view` VALUES("41798", "10", "2016-10-30 14:17:48", "66.249.79.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("41799", "3", "2016-10-30 15:48:47", "157.55.39.251", "6");
INSERT INTO `wp_rg_form_view` VALUES("41800", "10", "2016-10-30 15:48:49", "157.55.39.251", "4");
INSERT INTO `wp_rg_form_view` VALUES("41801", "3", "2016-10-30 16:08:27", "46.119.119.89", "37");
INSERT INTO `wp_rg_form_view` VALUES("41802", "10", "2016-10-30 16:08:27", "46.119.119.89", "24");
INSERT INTO `wp_rg_form_view` VALUES("41803", "3", "2016-10-30 17:01:43", "157.55.39.81", "6");
INSERT INTO `wp_rg_form_view` VALUES("41804", "10", "2016-10-30 17:01:43", "157.55.39.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("41805", "3", "2016-10-30 18:35:25", "202.46.52.60", "6");
INSERT INTO `wp_rg_form_view` VALUES("41806", "10", "2016-10-30 18:35:26", "202.46.52.60", "4");
INSERT INTO `wp_rg_form_view` VALUES("41807", "3", "2016-10-30 21:04:56", "154.20.28.177", "12");
INSERT INTO `wp_rg_form_view` VALUES("41808", "10", "2016-10-30 21:04:57", "154.20.28.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("41809", "10", "2016-10-30 22:00:08", "68.180.228.30", "78");
INSERT INTO `wp_rg_form_view` VALUES("41810", "3", "2016-10-30 22:00:10", "68.180.228.30", "117");
INSERT INTO `wp_rg_form_view` VALUES("41811", "3", "2016-10-30 23:05:09", "68.180.228.30", "31");
INSERT INTO `wp_rg_form_view` VALUES("41812", "10", "2016-10-30 23:05:09", "68.180.228.30", "17");
INSERT INTO `wp_rg_form_view` VALUES("41813", "3", "2016-10-31 00:08:53", "157.55.39.251", "36");
INSERT INTO `wp_rg_form_view` VALUES("41814", "10", "2016-10-31 00:08:53", "157.55.39.251", "24");
INSERT INTO `wp_rg_form_view` VALUES("41815", "13", "2016-10-31 01:11:15", "164.132.161.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("41816", "3", "2016-10-31 01:11:15", "164.132.161.70", "12");
INSERT INTO `wp_rg_form_view` VALUES("41817", "10", "2016-10-31 01:11:15", "164.132.161.70", "8");
INSERT INTO `wp_rg_form_view` VALUES("41818", "1", "2016-10-31 01:28:42", "184.151.118.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("41819", "3", "2016-10-31 02:07:45", "178.137.95.202", "91");
INSERT INTO `wp_rg_form_view` VALUES("41820", "10", "2016-10-31 02:07:45", "178.137.95.202", "60");
INSERT INTO `wp_rg_form_view` VALUES("41821", "3", "2016-10-31 03:01:02", "24.69.72.2", "24");
INSERT INTO `wp_rg_form_view` VALUES("41822", "10", "2016-10-31 03:01:02", "24.69.72.2", "17");
INSERT INTO `wp_rg_form_view` VALUES("41823", "3", "2016-10-31 04:33:48", "202.46.54.162", "17");
INSERT INTO `wp_rg_form_view` VALUES("41824", "10", "2016-10-31 04:33:50", "202.46.54.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("41825", "3", "2016-10-31 05:05:15", "157.55.39.169", "33");
INSERT INTO `wp_rg_form_view` VALUES("41826", "10", "2016-10-31 05:05:17", "157.55.39.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("41827", "3", "2016-10-31 06:28:17", "202.46.49.76", "24");
INSERT INTO `wp_rg_form_view` VALUES("41828", "10", "2016-10-31 06:28:18", "202.46.49.76", "17");
INSERT INTO `wp_rg_form_view` VALUES("41829", "3", "2016-10-31 07:06:42", "62.210.177.34", "54");
INSERT INTO `wp_rg_form_view` VALUES("41830", "10", "2016-10-31 07:06:42", "62.210.177.34", "36");
INSERT INTO `wp_rg_form_view` VALUES("41831", "11", "2016-10-31 07:13:45", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41832", "3", "2016-10-31 08:10:54", "202.46.55.132", "38");
INSERT INTO `wp_rg_form_view` VALUES("41833", "10", "2016-10-31 08:10:54", "202.46.55.132", "20");
INSERT INTO `wp_rg_form_view` VALUES("41834", "12", "2016-10-31 08:33:27", "157.55.39.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("41835", "3", "2016-10-31 09:05:44", "220.181.108.165", "42");
INSERT INTO `wp_rg_form_view` VALUES("41836", "10", "2016-10-31 09:05:44", "220.181.108.165", "28");
INSERT INTO `wp_rg_form_view` VALUES("41837", "3", "2016-10-31 10:12:55", "164.132.161.32", "12");
INSERT INTO `wp_rg_form_view` VALUES("41838", "10", "2016-10-31 10:12:56", "164.132.161.32", "8");
INSERT INTO `wp_rg_form_view` VALUES("41839", "3", "2016-10-31 11:15:23", "66.249.79.108", "18");
INSERT INTO `wp_rg_form_view` VALUES("41840", "10", "2016-10-31 11:15:24", "66.249.79.108", "13");
INSERT INTO `wp_rg_form_view` VALUES("41841", "3", "2016-10-31 12:09:28", "68.180.228.30", "18");
INSERT INTO `wp_rg_form_view` VALUES("41842", "10", "2016-10-31 12:09:29", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("41843", "3", "2016-10-31 13:11:29", "178.137.95.202", "73");
INSERT INTO `wp_rg_form_view` VALUES("41844", "10", "2016-10-31 13:11:29", "178.137.95.202", "48");
INSERT INTO `wp_rg_form_view` VALUES("41845", "3", "2016-10-31 14:41:48", "163.172.65.241", "6");
INSERT INTO `wp_rg_form_view` VALUES("41846", "10", "2016-10-31 14:41:50", "163.172.65.241", "4");
INSERT INTO `wp_rg_form_view` VALUES("41847", "3", "2016-10-31 15:05:37", "64.180.191.88", "823");
INSERT INTO `wp_rg_form_view` VALUES("41848", "10", "2016-10-31 15:05:37", "64.180.191.88", "536");
INSERT INTO `wp_rg_form_view` VALUES("41849", "1", "2016-10-31 15:11:26", "157.55.39.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("41850", "11", "2016-10-31 15:11:35", "157.55.39.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("41851", "13", "2016-10-31 15:11:38", "157.55.39.91", "3");
INSERT INTO `wp_rg_form_view` VALUES("41852", "9", "2016-10-31 15:12:27", "157.55.39.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("41853", "8", "2016-10-31 15:12:51", "207.46.13.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("41854", "12", "2016-10-31 15:13:23", "157.55.39.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("41855", "3", "2016-10-31 16:06:45", "74.202.28.8", "24");
INSERT INTO `wp_rg_form_view` VALUES("41856", "10", "2016-10-31 16:06:45", "74.202.28.8", "16");
INSERT INTO `wp_rg_form_view` VALUES("41857", "3", "2016-10-31 17:15:25", "66.249.79.108", "56");
INSERT INTO `wp_rg_form_view` VALUES("41858", "10", "2016-10-31 17:15:27", "66.249.79.108", "36");
INSERT INTO `wp_rg_form_view` VALUES("41859", "3", "2016-10-31 18:10:39", "184.66.37.147", "36");
INSERT INTO `wp_rg_form_view` VALUES("41860", "10", "2016-10-31 18:10:51", "184.66.37.147", "24");
INSERT INTO `wp_rg_form_view` VALUES("41861", "3", "2016-10-31 19:12:02", "68.180.228.30", "91");
INSERT INTO `wp_rg_form_view` VALUES("41862", "10", "2016-10-31 19:32:06", "37.187.171.167", "60");
INSERT INTO `wp_rg_form_view` VALUES("41863", "2", "2016-10-31 19:52:15", "45.32.129.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("41864", "3", "2016-10-31 20:01:11", "202.46.56.110", "90");
INSERT INTO `wp_rg_form_view` VALUES("41865", "10", "2016-10-31 20:01:11", "202.46.56.110", "60");
INSERT INTO `wp_rg_form_view` VALUES("41866", "1", "2016-10-31 20:52:01", "207.23.96.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("41867", "3", "2016-10-31 21:02:57", "163.172.64.188", "91");
INSERT INTO `wp_rg_form_view` VALUES("41868", "10", "2016-10-31 21:02:57", "163.172.64.188", "60");
INSERT INTO `wp_rg_form_view` VALUES("41869", "1", "2016-10-31 21:14:57", "73.154.200.88", "4");
INSERT INTO `wp_rg_form_view` VALUES("41870", "2", "2016-10-31 21:52:56", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41871", "3", "2016-10-31 22:09:19", "75.157.239.7", "92");
INSERT INTO `wp_rg_form_view` VALUES("41872", "10", "2016-10-31 22:09:19", "75.157.239.7", "60");
INSERT INTO `wp_rg_form_view` VALUES("41873", "3", "2016-10-31 23:24:13", "207.46.13.41", "73");
INSERT INTO `wp_rg_form_view` VALUES("41874", "10", "2016-10-31 23:24:16", "207.46.13.41", "48");
INSERT INTO `wp_rg_form_view` VALUES("41875", "2", "2016-10-31 23:55:13", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("41876", "11", "2016-10-31 23:58:56", "40.77.167.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("41877", "3", "2016-11-01 00:05:52", "54.193.8.140", "60");
INSERT INTO `wp_rg_form_view` VALUES("41878", "10", "2016-11-01 00:05:52", "54.193.8.140", "40");
INSERT INTO `wp_rg_form_view` VALUES("41879", "2", "2016-11-01 00:06:04", "54.193.8.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("41880", "1", "2016-11-01 00:06:11", "54.193.8.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("41881", "3", "2016-11-01 01:01:09", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("41882", "10", "2016-11-01 01:01:09", "66.249.79.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("41883", "3", "2016-11-01 02:23:15", "68.180.228.30", "75");
INSERT INTO `wp_rg_form_view` VALUES("41884", "10", "2016-11-01 02:23:17", "68.180.228.30", "48");
INSERT INTO `wp_rg_form_view` VALUES("41885", "3", "2016-11-01 03:00:19", "207.46.13.170", "153");
INSERT INTO `wp_rg_form_view` VALUES("41886", "10", "2016-11-01 03:00:19", "207.46.13.170", "102");
INSERT INTO `wp_rg_form_view` VALUES("41887", "11", "2016-11-01 03:00:21", "207.46.13.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("41888", "2", "2016-11-01 03:08:29", "207.46.13.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("41889", "3", "2016-11-01 04:01:08", "96.50.0.55", "54");
INSERT INTO `wp_rg_form_view` VALUES("41890", "10", "2016-11-01 04:01:08", "96.50.0.55", "36");
INSERT INTO `wp_rg_form_view` VALUES("41891", "3", "2016-11-01 05:13:34", "66.249.79.108", "73");
INSERT INTO `wp_rg_form_view` VALUES("41892", "10", "2016-11-01 05:13:37", "66.249.79.108", "48");
INSERT INTO `wp_rg_form_view` VALUES("41893", "3", "2016-11-01 06:13:17", "24.108.0.212", "38");
INSERT INTO `wp_rg_form_view` VALUES("41894", "10", "2016-11-01 06:13:18", "24.108.0.212", "24");
INSERT INTO `wp_rg_form_view` VALUES("41895", "1", "2016-11-01 07:17:39", "104.144.83.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("41896", "3", "2016-11-01 07:17:40", "104.144.83.153", "37");
INSERT INTO `wp_rg_form_view` VALUES("41897", "10", "2016-11-01 07:17:42", "104.144.83.153", "24");
INSERT INTO `wp_rg_form_view` VALUES("41898", "3", "2016-11-01 08:11:35", "163.172.66.52", "36");
INSERT INTO `wp_rg_form_view` VALUES("41899", "10", "2016-11-01 08:11:36", "163.172.66.52", "24");
INSERT INTO `wp_rg_form_view` VALUES("41900", "3", "2016-11-01 09:03:31", "66.249.79.112", "72");
INSERT INTO `wp_rg_form_view` VALUES("41901", "10", "2016-11-01 09:03:32", "66.249.79.112", "48");
INSERT INTO `wp_rg_form_view` VALUES("41902", "3", "2016-11-01 10:12:58", "66.249.79.104", "31");
INSERT INTO `wp_rg_form_view` VALUES("41903", "10", "2016-11-01 10:12:59", "66.249.79.104", "20");
INSERT INTO `wp_rg_form_view` VALUES("41904", "3", "2016-11-01 11:07:07", "68.180.228.30", "93");
INSERT INTO `wp_rg_form_view` VALUES("41905", "10", "2016-11-01 11:07:07", "68.180.228.30", "60");
INSERT INTO `wp_rg_form_view` VALUES("41906", "10", "2016-11-01 12:19:24", "68.180.228.30", "372");
INSERT INTO `wp_rg_form_view` VALUES("41907", "3", "2016-11-01 12:19:31", "68.180.228.30", "562");
INSERT INTO `wp_rg_form_view` VALUES("41908", "1", "2016-11-01 12:26:41", "192.3.247.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("41909", "2", "2016-11-01 12:39:37", "207.46.13.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("41910", "11", "2016-11-01 12:46:58", "207.46.13.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("41911", "3", "2016-11-01 13:00:05", "5.9.98.130", "2103");
INSERT INTO `wp_rg_form_view` VALUES("41912", "10", "2016-11-01 13:00:05", "5.9.98.130", "1314");
INSERT INTO `wp_rg_form_view` VALUES("41913", "13", "2016-11-01 13:03:12", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41914", "8", "2016-11-01 13:10:11", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41915", "9", "2016-11-01 13:10:22", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41916", "6", "2016-11-01 13:11:42", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41917", "3", "2016-11-01 14:03:48", "66.249.79.104", "2090");
INSERT INTO `wp_rg_form_view` VALUES("41918", "10", "2016-11-01 14:03:48", "66.249.79.104", "1309");
INSERT INTO `wp_rg_form_view` VALUES("41919", "12", "2016-11-01 14:27:44", "202.46.55.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("41920", "1", "2016-11-01 14:29:34", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("41921", "13", "2016-11-01 14:50:29", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("41922", "3", "2016-11-01 15:01:15", "202.46.55.171", "3048");
INSERT INTO `wp_rg_form_view` VALUES("41923", "10", "2016-11-01 15:01:15", "202.46.55.171", "1612");
INSERT INTO `wp_rg_form_view` VALUES("41924", "10", "2016-11-01 16:00:14", "5.9.98.130", "940");
INSERT INTO `wp_rg_form_view` VALUES("41925", "3", "2016-11-01 16:00:15", "5.9.98.130", "1038");
INSERT INTO `wp_rg_form_view` VALUES("41926", "3", "2016-11-01 17:16:52", "220.181.108.95", "1817");
INSERT INTO `wp_rg_form_view` VALUES("41927", "10", "2016-11-01 17:17:11", "220.181.108.95", "1040");
INSERT INTO `wp_rg_form_view` VALUES("41928", "3", "2016-11-01 18:02:41", "134.87.171.64", "3851");
INSERT INTO `wp_rg_form_view` VALUES("41929", "10", "2016-11-01 18:02:41", "134.87.171.64", "1705");
INSERT INTO `wp_rg_form_view` VALUES("41930", "1", "2016-11-01 18:28:44", "24.68.142.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("41931", "10", "2016-11-01 19:00:00", "5.9.98.130", "2111");
INSERT INTO `wp_rg_form_view` VALUES("41932", "3", "2016-11-01 19:00:00", "5.9.98.130", "1957");
INSERT INTO `wp_rg_form_view` VALUES("41933", "1", "2016-11-01 19:27:19", "155.133.43.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("41934", "3", "2016-11-01 20:00:00", "155.133.43.8", "619");
INSERT INTO `wp_rg_form_view` VALUES("41935", "10", "2016-11-01 20:00:00", "155.133.43.8", "284");
INSERT INTO `wp_rg_form_view` VALUES("41936", "1", "2016-11-01 20:00:08", "155.133.43.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("41937", "3", "2016-11-01 21:00:51", "66.249.79.112", "596");
INSERT INTO `wp_rg_form_view` VALUES("41938", "10", "2016-11-01 21:00:51", "66.249.79.112", "396");
INSERT INTO `wp_rg_form_view` VALUES("41939", "1", "2016-11-01 21:50:56", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("41940", "10", "2016-11-01 22:00:00", "5.9.98.130", "1748");
INSERT INTO `wp_rg_form_view` VALUES("41941", "3", "2016-11-01 22:00:00", "5.9.98.130", "3077");
INSERT INTO `wp_rg_form_view` VALUES("41942", "3", "2016-11-01 23:00:02", "5.9.98.130", "3423");
INSERT INTO `wp_rg_form_view` VALUES("41943", "10", "2016-11-01 23:00:05", "5.9.98.130", "1176");
INSERT INTO `wp_rg_form_view` VALUES("41944", "1", "2016-11-01 23:40:16", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("41945", "3", "2016-11-02 00:00:02", "5.9.98.130", "3902");
INSERT INTO `wp_rg_form_view` VALUES("41946", "10", "2016-11-02 00:00:03", "5.9.98.130", "1832");
INSERT INTO `wp_rg_form_view` VALUES("41947", "10", "2016-11-02 01:00:02", "5.9.98.130", "3049");
INSERT INTO `wp_rg_form_view` VALUES("41948", "3", "2016-11-02 01:00:02", "5.9.98.130", "2560");
INSERT INTO `wp_rg_form_view` VALUES("41949", "1", "2016-11-02 01:40:00", "155.133.43.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("41950", "10", "2016-11-02 02:00:00", "5.9.98.130", "1532");
INSERT INTO `wp_rg_form_view` VALUES("41951", "3", "2016-11-02 02:00:00", "5.9.98.130", "1715");
INSERT INTO `wp_rg_form_view` VALUES("41952", "2", "2016-11-02 02:07:51", "104.131.8.192", "2");
INSERT INTO `wp_rg_form_view` VALUES("41953", "11", "2016-11-02 02:07:55", "104.131.8.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("41954", "3", "2016-11-02 03:00:25", "174.129.237.157", "1279");
INSERT INTO `wp_rg_form_view` VALUES("41955", "10", "2016-11-02 03:00:25", "174.129.237.157", "596");
INSERT INTO `wp_rg_form_view` VALUES("41956", "2", "2016-11-02 03:23:06", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("41957", "11", "2016-11-02 03:23:12", "24.69.72.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("41958", "2", "2016-11-02 04:04:33", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("41959", "3", "2016-11-02 04:04:33", "66.249.79.104", "42");
INSERT INTO `wp_rg_form_view` VALUES("41960", "10", "2016-11-02 04:04:33", "66.249.79.104", "28");
INSERT INTO `wp_rg_form_view` VALUES("41961", "3", "2016-11-02 05:48:16", "68.180.228.30", "24");
INSERT INTO `wp_rg_form_view` VALUES("41962", "10", "2016-11-02 05:48:17", "68.180.228.30", "16");
INSERT INTO `wp_rg_form_view` VALUES("41963", "1", "2016-11-02 05:48:42", "23.250.79.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("41964", "3", "2016-11-02 06:09:00", "5.9.98.130", "2070");
INSERT INTO `wp_rg_form_view` VALUES("41965", "10", "2016-11-02 06:09:02", "5.9.98.130", "1194");
INSERT INTO `wp_rg_form_view` VALUES("41966", "11", "2016-11-02 06:09:18", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41967", "2", "2016-11-02 06:09:22", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41968", "1", "2016-11-02 06:11:31", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41969", "13", "2016-11-02 06:17:53", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41970", "8", "2016-11-02 06:24:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41971", "9", "2016-11-02 06:24:41", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41972", "6", "2016-11-02 06:26:01", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("41973", "10", "2016-11-02 07:00:03", "5.9.98.130", "1618");
INSERT INTO `wp_rg_form_view` VALUES("41974", "3", "2016-11-02 07:00:03", "5.9.98.130", "2423");
INSERT INTO `wp_rg_form_view` VALUES("41975", "3", "2016-11-02 08:02:28", "207.46.13.180", "3067");
INSERT INTO `wp_rg_form_view` VALUES("41976", "10", "2016-11-02 08:02:28", "207.46.13.180", "1656");
INSERT INTO `wp_rg_form_view` VALUES("41977", "10", "2016-11-02 09:00:02", "5.9.98.130", "870");
INSERT INTO `wp_rg_form_view` VALUES("41978", "3", "2016-11-02 09:00:02", "5.9.98.130", "982");
INSERT INTO `wp_rg_form_view` VALUES("41979", "3", "2016-11-02 10:02:25", "5.9.98.130", "3955");
INSERT INTO `wp_rg_form_view` VALUES("41980", "10", "2016-11-02 10:02:26", "5.9.98.130", "1756");
INSERT INTO `wp_rg_form_view` VALUES("41981", "3", "2016-11-02 11:00:04", "5.9.98.130", "3076");
INSERT INTO `wp_rg_form_view` VALUES("41982", "10", "2016-11-02 11:00:07", "5.9.98.130", "2716");
INSERT INTO `wp_rg_form_view` VALUES("41983", "3", "2016-11-02 12:00:10", "5.9.98.130", "979");
INSERT INTO `wp_rg_form_view` VALUES("41984", "10", "2016-11-02 12:00:10", "5.9.98.130", "524");
INSERT INTO `wp_rg_form_view` VALUES("41985", "3", "2016-11-02 13:02:22", "178.137.86.68", "1560");
INSERT INTO `wp_rg_form_view` VALUES("41986", "10", "2016-11-02 13:02:23", "178.137.86.68", "1039");
INSERT INTO `wp_rg_form_view` VALUES("41987", "10", "2016-11-02 13:02:23", "178.137.86.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("41988", "3", "2016-11-02 14:00:00", "5.9.98.130", "3750");
INSERT INTO `wp_rg_form_view` VALUES("41989", "10", "2016-11-02 14:00:00", "5.9.98.130", "1593");
INSERT INTO `wp_rg_form_view` VALUES("41990", "1", "2016-11-02 14:44:09", "67.78.176.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("41991", "3", "2016-11-02 15:00:00", "5.9.98.130", "4438");
INSERT INTO `wp_rg_form_view` VALUES("41992", "10", "2016-11-02 15:00:01", "5.9.98.130", "1670");
INSERT INTO `wp_rg_form_view` VALUES("41993", "3", "2016-11-02 16:00:00", "5.9.98.130", "3061");
INSERT INTO `wp_rg_form_view` VALUES("41994", "10", "2016-11-02 16:00:00", "5.9.98.130", "2917");
INSERT INTO `wp_rg_form_view` VALUES("41995", "10", "2016-11-02 17:00:00", "5.9.98.130", "2337");
INSERT INTO `wp_rg_form_view` VALUES("41996", "3", "2016-11-02 17:00:05", "5.9.98.130", "2178");
INSERT INTO `wp_rg_form_view` VALUES("41997", "3", "2016-11-02 18:02:17", "46.118.124.241", "786");
INSERT INTO `wp_rg_form_view` VALUES("41998", "10", "2016-11-02 18:02:17", "46.118.124.241", "373");
INSERT INTO `wp_rg_form_view` VALUES("41999", "3", "2016-11-02 19:00:03", "5.9.98.130", "577");
INSERT INTO `wp_rg_form_view` VALUES("42000", "10", "2016-11-02 19:00:04", "5.9.98.130", "271");
INSERT INTO `wp_rg_form_view` VALUES("42001", "1", "2016-11-02 20:04:00", "46.109.42.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("42002", "3", "2016-11-02 20:04:01", "46.109.42.47", "131");
INSERT INTO `wp_rg_form_view` VALUES("42003", "10", "2016-11-02 20:04:03", "46.109.42.47", "90");
INSERT INTO `wp_rg_form_view` VALUES("42004", "3", "2016-11-02 21:02:25", "5.9.98.130", "3230");
INSERT INTO `wp_rg_form_view` VALUES("42005", "10", "2016-11-02 21:02:26", "5.9.98.130", "2153");
INSERT INTO `wp_rg_form_view` VALUES("42006", "1", "2016-11-02 21:13:54", "23.95.185.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("42007", "13", "2016-11-02 21:55:14", "184.71.2.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("42008", "3", "2016-11-02 22:00:03", "5.9.98.130", "3321");
INSERT INTO `wp_rg_form_view` VALUES("42009", "10", "2016-11-02 22:00:03", "5.9.98.130", "1813");
INSERT INTO `wp_rg_form_view` VALUES("42010", "10", "2016-11-02 23:00:00", "5.9.98.130", "1279");
INSERT INTO `wp_rg_form_view` VALUES("42011", "3", "2016-11-02 23:00:00", "5.9.98.130", "4045");
INSERT INTO `wp_rg_form_view` VALUES("42012", "11", "2016-11-02 23:53:33", "77.75.77.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("42013", "3", "2016-11-03 00:00:02", "5.9.98.130", "4332");
INSERT INTO `wp_rg_form_view` VALUES("42014", "10", "2016-11-03 00:00:04", "5.9.98.130", "1556");
INSERT INTO `wp_rg_form_view` VALUES("42015", "3", "2016-11-03 01:00:11", "5.9.98.130", "3720");
INSERT INTO `wp_rg_form_view` VALUES("42016", "10", "2016-11-03 01:00:14", "5.9.98.130", "1242");
INSERT INTO `wp_rg_form_view` VALUES("42017", "3", "2016-11-03 02:17:10", "157.55.39.3", "223");
INSERT INTO `wp_rg_form_view` VALUES("42018", "10", "2016-11-03 02:17:11", "157.55.39.3", "148");
INSERT INTO `wp_rg_form_view` VALUES("42019", "11", "2016-11-03 02:18:22", "69.87.223.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("42020", "2", "2016-11-03 02:22:09", "69.87.223.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("42021", "3", "2016-11-03 03:16:13", "77.75.76.161", "805");
INSERT INTO `wp_rg_form_view` VALUES("42022", "10", "2016-11-03 03:16:15", "77.75.76.161", "524");
INSERT INTO `wp_rg_form_view` VALUES("42023", "13", "2016-11-03 03:48:09", "207.46.13.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("42024", "1", "2016-11-03 03:49:01", "157.55.39.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("42025", "11", "2016-11-03 03:49:10", "157.55.39.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("42026", "8", "2016-11-03 03:49:18", "207.46.13.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("42027", "12", "2016-11-03 03:49:42", "207.46.13.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("42028", "9", "2016-11-03 03:50:52", "157.55.39.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("42029", "1", "2016-11-03 04:01:51", "72.201.160.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("42030", "3", "2016-11-03 04:01:51", "72.201.160.172", "12");
INSERT INTO `wp_rg_form_view` VALUES("42031", "10", "2016-11-03 04:01:51", "72.201.160.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("42032", "3", "2016-11-03 05:11:32", "178.137.165.59", "85");
INSERT INTO `wp_rg_form_view` VALUES("42033", "3", "2016-11-03 05:11:32", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42034", "3", "2016-11-03 05:11:32", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42035", "10", "2016-11-03 05:11:34", "178.137.165.59", "54");
INSERT INTO `wp_rg_form_view` VALUES("42036", "10", "2016-11-03 05:11:34", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42037", "10", "2016-11-03 05:11:34", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42038", "3", "2016-11-03 06:01:17", "178.137.165.57", "49");
INSERT INTO `wp_rg_form_view` VALUES("42039", "10", "2016-11-03 06:01:17", "178.137.165.57", "32");
INSERT INTO `wp_rg_form_view` VALUES("42040", "3", "2016-11-03 07:39:42", "68.180.228.30", "7");
INSERT INTO `wp_rg_form_view` VALUES("42041", "10", "2016-11-03 07:39:44", "68.180.228.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("42042", "3", "2016-11-03 08:04:25", "5.248.253.78", "41");
INSERT INTO `wp_rg_form_view` VALUES("42043", "3", "2016-11-03 08:04:25", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42044", "10", "2016-11-03 08:04:26", "5.248.253.78", "26");
INSERT INTO `wp_rg_form_view` VALUES("42045", "10", "2016-11-03 08:04:26", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42046", "10", "2016-11-03 08:04:26", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42047", "3", "2016-11-03 09:05:44", "43.239.204.150", "12");
INSERT INTO `wp_rg_form_view` VALUES("42048", "10", "2016-11-03 09:05:46", "43.239.204.150", "8");
INSERT INTO `wp_rg_form_view` VALUES("42049", "1", "2016-11-03 10:47:19", "50.206.36.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("42050", "3", "2016-11-03 10:47:21", "50.206.36.214", "20");
INSERT INTO `wp_rg_form_view` VALUES("42051", "10", "2016-11-03 10:47:23", "50.206.36.214", "12");
INSERT INTO `wp_rg_form_view` VALUES("42052", "10", "2016-11-03 11:17:22", "77.75.76.167", "13");
INSERT INTO `wp_rg_form_view` VALUES("42053", "3", "2016-11-03 11:17:29", "77.75.76.167", "18");
INSERT INTO `wp_rg_form_view` VALUES("42054", "3", "2016-11-03 12:17:14", "202.46.56.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("42055", "10", "2016-11-03 12:17:15", "202.46.56.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("42056", "3", "2016-11-03 13:25:30", "77.75.76.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("42057", "10", "2016-11-03 13:25:32", "77.75.76.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("42058", "3", "2016-11-03 14:17:12", "68.180.228.30", "49");
INSERT INTO `wp_rg_form_view` VALUES("42059", "10", "2016-11-03 14:17:13", "68.180.228.30", "32");
INSERT INTO `wp_rg_form_view` VALUES("42060", "3", "2016-11-03 15:03:00", "77.75.78.161", "57");
INSERT INTO `wp_rg_form_view` VALUES("42061", "10", "2016-11-03 15:03:00", "77.75.78.161", "37");
INSERT INTO `wp_rg_form_view` VALUES("42062", "1", "2016-11-03 15:13:46", "77.120.224.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("42063", "3", "2016-11-03 16:20:00", "24.69.139.130", "105");
INSERT INTO `wp_rg_form_view` VALUES("42064", "10", "2016-11-03 16:20:01", "24.69.139.130", "65");
INSERT INTO `wp_rg_form_view` VALUES("42065", "12", "2016-11-03 16:31:55", "82.196.7.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("42066", "3", "2016-11-03 17:08:37", "66.249.79.104", "81");
INSERT INTO `wp_rg_form_view` VALUES("42067", "10", "2016-11-03 17:08:38", "66.249.79.104", "52");
INSERT INTO `wp_rg_form_view` VALUES("42068", "1", "2016-11-03 17:12:14", "190.152.59.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("42069", "3", "2016-11-03 18:05:32", "184.66.142.114", "139");
INSERT INTO `wp_rg_form_view` VALUES("42070", "10", "2016-11-03 18:05:33", "184.66.142.114", "87");
INSERT INTO `wp_rg_form_view` VALUES("42071", "3", "2016-11-03 19:00:16", "207.6.182.55", "43");
INSERT INTO `wp_rg_form_view` VALUES("42072", "10", "2016-11-03 19:00:16", "207.6.182.55", "28");
INSERT INTO `wp_rg_form_view` VALUES("42073", "1", "2016-11-03 20:10:31", "61.238.32.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("42074", "3", "2016-11-03 20:10:31", "61.238.32.69", "90");
INSERT INTO `wp_rg_form_view` VALUES("42075", "10", "2016-11-03 20:10:31", "61.238.32.69", "60");
INSERT INTO `wp_rg_form_view` VALUES("42076", "3", "2016-11-03 21:04:50", "202.46.51.102", "35");
INSERT INTO `wp_rg_form_view` VALUES("42077", "10", "2016-11-03 21:04:51", "202.46.51.102", "20");
INSERT INTO `wp_rg_form_view` VALUES("42078", "1", "2016-11-03 21:46:16", "198.8.80.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("42079", "3", "2016-11-03 22:04:52", "192.243.55.130", "21");
INSERT INTO `wp_rg_form_view` VALUES("42080", "10", "2016-11-03 22:04:52", "192.243.55.130", "12");
INSERT INTO `wp_rg_form_view` VALUES("42081", "3", "2016-11-03 23:29:36", "178.137.165.57", "49");
INSERT INTO `wp_rg_form_view` VALUES("42082", "3", "2016-11-03 23:29:36", "178.137.165.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42083", "10", "2016-11-03 23:29:37", "178.137.165.57", "30");
INSERT INTO `wp_rg_form_view` VALUES("42084", "10", "2016-11-03 23:29:37", "178.137.165.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42085", "10", "2016-11-03 23:29:37", "178.137.165.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42086", "3", "2016-11-04 00:06:02", "40.77.167.17", "2351");
INSERT INTO `wp_rg_form_view` VALUES("42087", "10", "2016-11-04 00:06:02", "40.77.167.17", "1465");
INSERT INTO `wp_rg_form_view` VALUES("42088", "1", "2016-11-04 00:23:37", "104.131.45.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("42089", "11", "2016-11-04 00:23:42", "104.131.45.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("42090", "2", "2016-11-04 00:45:05", "104.131.45.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("42091", "6", "2016-11-04 00:57:37", "104.131.45.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("42092", "3", "2016-11-04 01:00:22", "104.131.45.88", "1531");
INSERT INTO `wp_rg_form_view` VALUES("42093", "10", "2016-11-04 01:00:22", "104.131.45.88", "1009");
INSERT INTO `wp_rg_form_view` VALUES("42094", "9", "2016-11-04 01:06:17", "104.131.45.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("42095", "13", "2016-11-04 01:40:22", "104.131.45.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("42096", "8", "2016-11-04 01:40:32", "104.131.45.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("42097", "1", "2016-11-04 01:52:26", "192.3.247.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("42098", "3", "2016-11-04 02:09:11", "66.249.79.112", "10");
INSERT INTO `wp_rg_form_view` VALUES("42099", "10", "2016-11-04 02:09:11", "66.249.79.112", "5");
INSERT INTO `wp_rg_form_view` VALUES("42100", "3", "2016-11-04 03:33:24", "192.243.55.130", "158");
INSERT INTO `wp_rg_form_view` VALUES("42101", "10", "2016-11-04 03:39:31", "174.127.133.79", "104");
INSERT INTO `wp_rg_form_view` VALUES("42102", "2", "2016-11-04 03:42:58", "174.127.133.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("42103", "11", "2016-11-04 03:46:52", "174.127.133.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("42104", "10", "2016-11-04 04:04:17", "174.127.133.77", "90");
INSERT INTO `wp_rg_form_view` VALUES("42105", "3", "2016-11-04 04:04:17", "174.127.133.77", "140");
INSERT INTO `wp_rg_form_view` VALUES("42106", "1", "2016-11-04 04:20:46", "174.127.133.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("42107", "10", "2016-11-04 05:45:38", "134.249.53.114", "24");
INSERT INTO `wp_rg_form_view` VALUES("42108", "3", "2016-11-04 05:45:39", "134.249.53.114", "35");
INSERT INTO `wp_rg_form_view` VALUES("42109", "3", "2016-11-04 05:45:39", "134.249.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42110", "10", "2016-11-04 07:23:26", "198.27.127.63", "4");
INSERT INTO `wp_rg_form_view` VALUES("42111", "3", "2016-11-04 07:23:30", "198.27.127.63", "6");
INSERT INTO `wp_rg_form_view` VALUES("42112", "10", "2016-11-04 08:15:11", "24.108.184.129", "12");
INSERT INTO `wp_rg_form_view` VALUES("42113", "3", "2016-11-04 08:15:13", "24.108.184.129", "19");
INSERT INTO `wp_rg_form_view` VALUES("42114", "10", "2016-11-04 09:14:51", "220.181.108.99", "12");
INSERT INTO `wp_rg_form_view` VALUES("42115", "3", "2016-11-04 09:14:54", "220.181.108.99", "18");
INSERT INTO `wp_rg_form_view` VALUES("42116", "10", "2016-11-04 10:02:59", "207.6.162.206", "417");
INSERT INTO `wp_rg_form_view` VALUES("42117", "3", "2016-11-04 10:02:59", "207.6.162.206", "649");
INSERT INTO `wp_rg_form_view` VALUES("42118", "9", "2016-11-04 10:29:16", "157.55.39.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("42119", "2", "2016-11-04 10:29:27", "157.55.39.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("42120", "6", "2016-11-04 10:29:55", "157.55.39.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("42121", "5", "2016-11-04 10:30:08", "157.55.39.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("42122", "13", "2016-11-04 10:30:21", "157.55.39.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("42123", "8", "2016-11-04 10:30:50", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("42124", "10", "2016-11-04 11:41:56", "178.137.165.59", "40");
INSERT INTO `wp_rg_form_view` VALUES("42125", "3", "2016-11-04 11:42:01", "178.137.165.59", "61");
INSERT INTO `wp_rg_form_view` VALUES("42126", "3", "2016-11-04 11:42:01", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42127", "3", "2016-11-04 11:42:01", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42128", "2", "2016-11-04 12:19:17", "192.243.55.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("42129", "10", "2016-11-04 12:19:17", "192.243.55.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("42130", "3", "2016-11-04 12:19:17", "192.243.55.138", "6");
INSERT INTO `wp_rg_form_view` VALUES("42131", "10", "2016-11-04 13:44:54", "202.46.48.95", "28");
INSERT INTO `wp_rg_form_view` VALUES("42132", "3", "2016-11-04 13:44:56", "202.46.48.95", "42");
INSERT INTO `wp_rg_form_view` VALUES("42133", "10", "2016-11-04 14:18:09", "75.156.32.189", "54");
INSERT INTO `wp_rg_form_view` VALUES("42134", "3", "2016-11-04 14:18:09", "75.156.32.189", "78");
INSERT INTO `wp_rg_form_view` VALUES("42135", "1", "2016-11-04 15:13:26", "76.73.241.175", "6");
INSERT INTO `wp_rg_form_view` VALUES("42136", "10", "2016-11-04 15:13:26", "76.73.241.175", "72");
INSERT INTO `wp_rg_form_view` VALUES("42137", "3", "2016-11-04 15:13:26", "76.73.241.175", "112");
INSERT INTO `wp_rg_form_view` VALUES("42138", "10", "2016-11-04 16:13:59", "163.172.64.244", "16");
INSERT INTO `wp_rg_form_view` VALUES("42139", "3", "2016-11-04 16:14:02", "163.172.64.244", "27");
INSERT INTO `wp_rg_form_view` VALUES("42140", "10", "2016-11-04 17:00:29", "46.118.124.241", "60");
INSERT INTO `wp_rg_form_view` VALUES("42141", "10", "2016-11-04 17:00:29", "46.118.124.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("42142", "3", "2016-11-04 17:00:35", "46.118.124.241", "89");
INSERT INTO `wp_rg_form_view` VALUES("42143", "3", "2016-11-04 17:00:35", "46.118.124.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("42144", "10", "2016-11-04 18:08:18", "40.143.1.4", "786");
INSERT INTO `wp_rg_form_view` VALUES("42145", "3", "2016-11-04 18:08:18", "40.143.1.4", "1037");
INSERT INTO `wp_rg_form_view` VALUES("42146", "13", "2016-11-04 18:13:38", "40.143.1.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("42147", "1", "2016-11-04 18:25:17", "40.143.1.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("42148", "11", "2016-11-04 18:25:29", "40.143.1.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("42149", "2", "2016-11-04 18:25:44", "40.143.1.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("42150", "10", "2016-11-04 19:02:25", "192.243.55.132", "68");
INSERT INTO `wp_rg_form_view` VALUES("42151", "3", "2016-11-04 19:02:25", "192.243.55.132", "102");
INSERT INTO `wp_rg_form_view` VALUES("42152", "11", "2016-11-04 19:41:06", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42153", "2", "2016-11-04 19:41:43", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42154", "3", "2016-11-04 20:03:29", "68.180.228.30", "38");
INSERT INTO `wp_rg_form_view` VALUES("42155", "10", "2016-11-04 20:03:29", "68.180.228.30", "24");
INSERT INTO `wp_rg_form_view` VALUES("42156", "10", "2016-11-04 21:03:14", "207.46.13.27", "40");
INSERT INTO `wp_rg_form_view` VALUES("42157", "3", "2016-11-04 21:03:14", "207.46.13.27", "62");
INSERT INTO `wp_rg_form_view` VALUES("42158", "1", "2016-11-04 21:12:04", "107.150.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("42159", "2", "2016-11-04 22:34:07", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("42160", "10", "2016-11-04 22:34:09", "68.180.228.30", "8");
INSERT INTO `wp_rg_form_view` VALUES("42161", "3", "2016-11-04 22:34:10", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("42162", "3", "2016-11-04 23:02:26", "24.108.0.212", "31");
INSERT INTO `wp_rg_form_view` VALUES("42163", "10", "2016-11-04 23:02:26", "24.108.0.212", "20");
INSERT INTO `wp_rg_form_view` VALUES("42164", "10", "2016-11-05 00:22:38", "96.50.63.233", "16");
INSERT INTO `wp_rg_form_view` VALUES("42165", "3", "2016-11-05 00:22:40", "96.50.63.233", "24");
INSERT INTO `wp_rg_form_view` VALUES("42166", "10", "2016-11-05 01:01:44", "134.249.53.114", "66");
INSERT INTO `wp_rg_form_view` VALUES("42167", "10", "2016-11-05 01:01:44", "134.249.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42168", "10", "2016-11-05 01:01:44", "134.249.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42169", "3", "2016-11-05 01:01:45", "134.249.53.114", "100");
INSERT INTO `wp_rg_form_view` VALUES("42170", "3", "2016-11-05 01:01:45", "134.249.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42171", "3", "2016-11-05 01:01:45", "134.249.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42172", "3", "2016-11-05 01:01:45", "134.249.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42173", "1", "2016-11-05 02:04:51", "97.77.104.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("42174", "10", "2016-11-05 02:04:51", "97.77.104.22", "56");
INSERT INTO `wp_rg_form_view` VALUES("42175", "3", "2016-11-05 02:04:51", "97.77.104.22", "84");
INSERT INTO `wp_rg_form_view` VALUES("42176", "1", "2016-11-05 03:09:58", "104.129.13.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("42177", "10", "2016-11-05 03:09:58", "104.129.13.96", "32");
INSERT INTO `wp_rg_form_view` VALUES("42178", "3", "2016-11-05 03:09:58", "104.129.13.96", "45");
INSERT INTO `wp_rg_form_view` VALUES("42179", "10", "2016-11-05 04:34:00", "178.137.165.59", "24");
INSERT INTO `wp_rg_form_view` VALUES("42180", "3", "2016-11-05 04:34:01", "178.137.165.59", "36");
INSERT INTO `wp_rg_form_view` VALUES("42181", "9", "2016-11-05 05:00:27", "68.180.228.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("42182", "10", "2016-11-05 05:00:27", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("42183", "3", "2016-11-05 05:00:27", "68.180.228.30", "19");
INSERT INTO `wp_rg_form_view` VALUES("42184", "10", "2016-11-05 06:14:30", "202.46.50.78", "16");
INSERT INTO `wp_rg_form_view` VALUES("42185", "3", "2016-11-05 06:14:31", "202.46.50.78", "25");
INSERT INTO `wp_rg_form_view` VALUES("42186", "13", "2016-11-05 07:19:22", "68.180.228.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("42187", "10", "2016-11-05 07:19:22", "68.180.228.30", "68");
INSERT INTO `wp_rg_form_view` VALUES("42188", "3", "2016-11-05 07:19:23", "68.180.228.30", "103");
INSERT INTO `wp_rg_form_view` VALUES("42189", "10", "2016-11-05 08:05:40", "5.248.253.78", "32");
INSERT INTO `wp_rg_form_view` VALUES("42190", "3", "2016-11-05 08:05:41", "5.248.253.78", "48");
INSERT INTO `wp_rg_form_view` VALUES("42191", "10", "2016-11-05 09:49:16", "163.172.66.27", "8");
INSERT INTO `wp_rg_form_view` VALUES("42192", "3", "2016-11-05 09:49:18", "163.172.66.27", "13");
INSERT INTO `wp_rg_form_view` VALUES("42193", "10", "2016-11-05 10:08:55", "202.46.49.198", "12");
INSERT INTO `wp_rg_form_view` VALUES("42194", "3", "2016-11-05 10:08:55", "202.46.49.198", "19");
INSERT INTO `wp_rg_form_view` VALUES("42195", "10", "2016-11-05 11:28:21", "5.9.145.132", "32");
INSERT INTO `wp_rg_form_view` VALUES("42196", "3", "2016-11-05 11:28:22", "5.9.145.132", "50");
INSERT INTO `wp_rg_form_view` VALUES("42197", "10", "2016-11-05 13:00:13", "192.243.55.131", "12");
INSERT INTO `wp_rg_form_view` VALUES("42198", "3", "2016-11-05 13:00:14", "192.243.55.131", "19");
INSERT INTO `wp_rg_form_view` VALUES("42199", "3", "2016-11-05 14:02:28", "58.62.235.242", "44");
INSERT INTO `wp_rg_form_view` VALUES("42200", "10", "2016-11-05 14:02:28", "58.62.235.242", "32");
INSERT INTO `wp_rg_form_view` VALUES("42201", "10", "2016-11-05 15:24:24", "68.180.228.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("42202", "3", "2016-11-05 15:24:28", "68.180.228.30", "6");
INSERT INTO `wp_rg_form_view` VALUES("42203", "3", "2016-11-05 17:02:17", "5.9.88.103", "62");
INSERT INTO `wp_rg_form_view` VALUES("42204", "10", "2016-11-05 17:02:20", "5.9.88.103", "46");
INSERT INTO `wp_rg_form_view` VALUES("42205", "10", "2016-11-05 18:20:17", "157.55.39.16", "36");
INSERT INTO `wp_rg_form_view` VALUES("42206", "3", "2016-11-05 18:20:18", "157.55.39.16", "63");
INSERT INTO `wp_rg_form_view` VALUES("42207", "5", "2016-11-05 18:23:21", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("42208", "10", "2016-11-05 19:03:21", "202.46.52.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("42209", "3", "2016-11-05 19:03:21", "202.46.52.108", "30");
INSERT INTO `wp_rg_form_view` VALUES("42210", "10", "2016-11-05 20:10:04", "184.66.32.165", "16");
INSERT INTO `wp_rg_form_view` VALUES("42211", "3", "2016-11-05 20:10:04", "184.66.32.165", "24");
INSERT INTO `wp_rg_form_view` VALUES("42212", "12", "2016-11-05 20:10:19", "202.46.54.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("42213", "10", "2016-11-05 21:49:41", "96.50.19.46", "20");
INSERT INTO `wp_rg_form_view` VALUES("42214", "3", "2016-11-05 21:49:42", "96.50.19.46", "31");
INSERT INTO `wp_rg_form_view` VALUES("42215", "10", "2016-11-05 22:34:25", "77.75.78.167", "21");
INSERT INTO `wp_rg_form_view` VALUES("42216", "3", "2016-11-05 22:34:29", "77.75.78.167", "30");
INSERT INTO `wp_rg_form_view` VALUES("42217", "10", "2016-11-05 23:08:36", "192.243.55.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("42218", "3", "2016-11-05 23:08:36", "192.243.55.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("42219", "3", "2016-11-06 00:04:46", "202.46.51.84", "121");
INSERT INTO `wp_rg_form_view` VALUES("42220", "10", "2016-11-06 00:04:46", "202.46.51.84", "80");
INSERT INTO `wp_rg_form_view` VALUES("42221", "9", "2016-11-06 01:39:58", "163.172.66.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("42222", "3", "2016-11-06 01:39:59", "163.172.66.49", "6");
INSERT INTO `wp_rg_form_view` VALUES("42223", "10", "2016-11-06 01:40:00", "163.172.66.49", "4");
INSERT INTO `wp_rg_form_view` VALUES("42224", "3", "2016-11-06 02:05:37", "66.249.79.112", "18");
INSERT INTO `wp_rg_form_view` VALUES("42225", "10", "2016-11-06 02:05:38", "66.249.79.112", "12");
INSERT INTO `wp_rg_form_view` VALUES("42226", "3", "2016-11-06 03:07:58", "77.75.76.168", "62");
INSERT INTO `wp_rg_form_view` VALUES("42227", "10", "2016-11-06 03:08:00", "77.75.76.168", "40");
INSERT INTO `wp_rg_form_view` VALUES("42228", "3", "2016-11-06 04:15:03", "154.20.41.18", "55");
INSERT INTO `wp_rg_form_view` VALUES("42229", "10", "2016-11-06 04:15:04", "154.20.41.18", "32");
INSERT INTO `wp_rg_form_view` VALUES("42230", "13", "2016-11-06 04:29:49", "5.248.253.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("42231", "3", "2016-11-06 05:04:37", "66.249.79.108", "31");
INSERT INTO `wp_rg_form_view` VALUES("42232", "10", "2016-11-06 05:04:38", "66.249.79.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("42233", "1", "2016-11-06 06:02:04", "155.133.43.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("42234", "3", "2016-11-06 06:02:05", "155.133.43.8", "42");
INSERT INTO `wp_rg_form_view` VALUES("42235", "10", "2016-11-06 06:02:07", "155.133.43.8", "28");
INSERT INTO `wp_rg_form_view` VALUES("42236", "3", "2016-11-06 07:02:09", "77.75.76.164", "43");
INSERT INTO `wp_rg_form_view` VALUES("42237", "10", "2016-11-06 07:02:09", "77.75.76.164", "28");
INSERT INTO `wp_rg_form_view` VALUES("42238", "3", "2016-11-06 08:50:18", "163.172.66.109", "7");
INSERT INTO `wp_rg_form_view` VALUES("42239", "10", "2016-11-06 08:50:21", "163.172.66.109", "4");
INSERT INTO `wp_rg_form_view` VALUES("42240", "3", "2016-11-06 09:07:17", "134.249.53.114", "53");
INSERT INTO `wp_rg_form_view` VALUES("42241", "3", "2016-11-06 09:07:17", "134.249.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42242", "10", "2016-11-06 09:07:18", "134.249.53.114", "36");
INSERT INTO `wp_rg_form_view` VALUES("42243", "1", "2016-11-06 09:51:48", "108.63.250.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("42244", "13", "2016-11-06 10:08:29", "5.248.253.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("42245", "3", "2016-11-06 10:08:30", "5.248.253.78", "40");
INSERT INTO `wp_rg_form_view` VALUES("42246", "3", "2016-11-06 10:08:30", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42247", "3", "2016-11-06 10:08:30", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42248", "10", "2016-11-06 10:08:30", "5.248.253.78", "26");
INSERT INTO `wp_rg_form_view` VALUES("42249", "10", "2016-11-06 10:08:30", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42250", "10", "2016-11-06 10:08:30", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42251", "3", "2016-11-06 11:47:00", "163.172.66.40", "6");
INSERT INTO `wp_rg_form_view` VALUES("42252", "10", "2016-11-06 11:47:02", "163.172.66.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("42253", "3", "2016-11-06 12:18:07", "68.180.228.30", "18");
INSERT INTO `wp_rg_form_view` VALUES("42254", "10", "2016-11-06 12:18:07", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("42255", "3", "2016-11-06 13:08:33", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("42256", "10", "2016-11-06 13:08:33", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("42257", "3", "2016-11-06 14:06:20", "202.46.58.12", "31");
INSERT INTO `wp_rg_form_view` VALUES("42258", "10", "2016-11-06 14:06:23", "202.46.58.12", "20");
INSERT INTO `wp_rg_form_view` VALUES("42259", "3", "2016-11-06 15:30:33", "24.68.17.97", "12");
INSERT INTO `wp_rg_form_view` VALUES("42260", "10", "2016-11-06 15:30:33", "24.68.17.97", "8");
INSERT INTO `wp_rg_form_view` VALUES("42261", "3", "2016-11-06 16:34:33", "217.23.2.194", "53");
INSERT INTO `wp_rg_form_view` VALUES("42262", "10", "2016-11-06 16:34:35", "217.23.2.194", "32");
INSERT INTO `wp_rg_form_view` VALUES("42263", "3", "2016-11-06 17:22:12", "163.172.65.208", "30");
INSERT INTO `wp_rg_form_view` VALUES("42264", "10", "2016-11-06 17:22:19", "163.172.65.208", "20");
INSERT INTO `wp_rg_form_view` VALUES("42265", "13", "2016-11-06 17:23:50", "178.137.165.59", "3");
INSERT INTO `wp_rg_form_view` VALUES("42266", "3", "2016-11-06 18:01:31", "68.180.228.30", "24");
INSERT INTO `wp_rg_form_view` VALUES("42267", "10", "2016-11-06 18:01:32", "68.180.228.30", "18");
INSERT INTO `wp_rg_form_view` VALUES("42268", "3", "2016-11-06 19:12:15", "163.172.65.10", "12");
INSERT INTO `wp_rg_form_view` VALUES("42269", "10", "2016-11-06 19:12:16", "163.172.65.10", "8");
INSERT INTO `wp_rg_form_view` VALUES("42270", "3", "2016-11-06 20:12:45", "163.172.66.107", "73");
INSERT INTO `wp_rg_form_view` VALUES("42271", "10", "2016-11-06 20:12:45", "163.172.66.107", "48");
INSERT INTO `wp_rg_form_view` VALUES("42272", "1", "2016-11-06 20:21:54", "23.250.52.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("42273", "3", "2016-11-06 21:02:47", "163.172.64.179", "30");
INSERT INTO `wp_rg_form_view` VALUES("42274", "10", "2016-11-06 21:02:47", "163.172.64.179", "20");
INSERT INTO `wp_rg_form_view` VALUES("42275", "3", "2016-11-06 22:08:25", "68.180.228.30", "42");
INSERT INTO `wp_rg_form_view` VALUES("42276", "10", "2016-11-06 22:08:25", "68.180.228.30", "28");
INSERT INTO `wp_rg_form_view` VALUES("42277", "13", "2016-11-06 22:21:22", "178.137.165.57", "6");
INSERT INTO `wp_rg_form_view` VALUES("42278", "13", "2016-11-06 23:29:39", "178.137.165.59", "5");
INSERT INTO `wp_rg_form_view` VALUES("42279", "3", "2016-11-06 23:29:41", "178.137.165.59", "47");
INSERT INTO `wp_rg_form_view` VALUES("42280", "3", "2016-11-06 23:29:41", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42281", "10", "2016-11-06 23:29:42", "178.137.165.59", "31");
INSERT INTO `wp_rg_form_view` VALUES("42282", "10", "2016-11-06 23:29:42", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42283", "3", "2016-11-07 00:11:54", "157.55.39.223", "6");
INSERT INTO `wp_rg_form_view` VALUES("42284", "10", "2016-11-07 00:11:54", "157.55.39.223", "4");
INSERT INTO `wp_rg_form_view` VALUES("42285", "3", "2016-11-07 01:43:53", "202.46.58.72", "6");
INSERT INTO `wp_rg_form_view` VALUES("42286", "10", "2016-11-07 01:43:55", "202.46.58.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("42287", "3", "2016-11-07 02:28:18", "157.55.39.16", "6");
INSERT INTO `wp_rg_form_view` VALUES("42288", "10", "2016-11-07 02:28:21", "157.55.39.16", "4");
INSERT INTO `wp_rg_form_view` VALUES("42289", "3", "2016-11-07 03:15:35", "163.172.65.182", "55");
INSERT INTO `wp_rg_form_view` VALUES("42290", "10", "2016-11-07 03:15:38", "163.172.65.182", "36");
INSERT INTO `wp_rg_form_view` VALUES("42291", "11", "2016-11-07 03:31:21", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("42292", "3", "2016-11-07 05:51:40", "202.46.53.117", "6");
INSERT INTO `wp_rg_form_view` VALUES("42293", "10", "2016-11-07 05:51:47", "202.46.53.117", "4");
INSERT INTO `wp_rg_form_view` VALUES("42294", "3", "2016-11-07 06:48:52", "68.180.228.30", "134");
INSERT INTO `wp_rg_form_view` VALUES("42295", "10", "2016-11-07 06:48:53", "68.180.228.30", "88");
INSERT INTO `wp_rg_form_view` VALUES("42296", "11", "2016-11-07 06:54:26", "104.131.43.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("42297", "2", "2016-11-07 06:54:27", "104.131.43.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("42298", "3", "2016-11-07 08:02:58", "202.46.58.153", "49");
INSERT INTO `wp_rg_form_view` VALUES("42299", "10", "2016-11-07 08:02:59", "202.46.58.153", "33");
INSERT INTO `wp_rg_form_view` VALUES("42300", "13", "2016-11-07 08:54:43", "134.249.53.114", "3");
INSERT INTO `wp_rg_form_view` VALUES("42301", "3", "2016-11-07 09:17:36", "207.46.13.85", "816");
INSERT INTO `wp_rg_form_view` VALUES("42302", "10", "2016-11-07 09:17:38", "207.46.13.85", "532");
INSERT INTO `wp_rg_form_view` VALUES("42303", "13", "2016-11-07 09:18:04", "207.46.13.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("42304", "8", "2016-11-07 09:18:06", "207.46.13.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("42305", "9", "2016-11-07 09:18:37", "157.55.39.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("42306", "1", "2016-11-07 09:19:21", "207.46.13.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("42307", "11", "2016-11-07 09:19:23", "207.46.13.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("42308", "12", "2016-11-07 09:19:47", "157.55.39.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("42309", "5", "2016-11-07 09:24:14", "77.75.79.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("42310", "3", "2016-11-07 10:03:25", "199.21.99.202", "18");
INSERT INTO `wp_rg_form_view` VALUES("42311", "10", "2016-11-07 10:03:25", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("42312", "1", "2016-11-07 10:58:46", "77.75.76.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("42313", "3", "2016-11-07 11:33:32", "207.46.13.193", "12");
INSERT INTO `wp_rg_form_view` VALUES("42314", "10", "2016-11-07 11:33:34", "207.46.13.193", "8");
INSERT INTO `wp_rg_form_view` VALUES("42315", "3", "2016-11-07 12:03:44", "77.75.77.62", "12");
INSERT INTO `wp_rg_form_view` VALUES("42316", "10", "2016-11-07 12:03:44", "77.75.77.62", "8");
INSERT INTO `wp_rg_form_view` VALUES("42317", "3", "2016-11-07 13:01:51", "77.75.79.119", "18");
INSERT INTO `wp_rg_form_view` VALUES("42318", "10", "2016-11-07 13:01:52", "77.75.79.119", "12");
INSERT INTO `wp_rg_form_view` VALUES("42319", "13", "2016-11-07 14:02:41", "178.137.165.57", "4");
INSERT INTO `wp_rg_form_view` VALUES("42320", "13", "2016-11-07 14:02:41", "178.137.165.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42321", "3", "2016-11-07 14:02:41", "178.137.165.57", "75");
INSERT INTO `wp_rg_form_view` VALUES("42322", "3", "2016-11-07 14:02:41", "178.137.165.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42323", "10", "2016-11-07 14:02:41", "178.137.165.57", "47");
INSERT INTO `wp_rg_form_view` VALUES("42324", "10", "2016-11-07 14:02:41", "178.137.165.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42325", "3", "2016-11-07 15:03:44", "77.75.78.168", "51");
INSERT INTO `wp_rg_form_view` VALUES("42326", "10", "2016-11-07 15:03:46", "77.75.78.168", "32");
INSERT INTO `wp_rg_form_view` VALUES("42327", "3", "2016-11-07 16:19:37", "69.171.109.102", "76");
INSERT INTO `wp_rg_form_view` VALUES("42328", "10", "2016-11-07 16:19:38", "69.171.109.102", "50");
INSERT INTO `wp_rg_form_view` VALUES("42329", "13", "2016-11-07 16:46:40", "178.137.165.59", "3");
INSERT INTO `wp_rg_form_view` VALUES("42330", "13", "2016-11-07 16:46:40", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42331", "13", "2016-11-07 16:46:40", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42332", "13", "2016-11-07 16:46:40", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42333", "1", "2016-11-07 17:50:32", "192.3.247.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("42334", "3", "2016-11-07 17:50:35", "192.3.247.140", "39");
INSERT INTO `wp_rg_form_view` VALUES("42335", "10", "2016-11-07 17:50:43", "192.3.247.140", "24");
INSERT INTO `wp_rg_form_view` VALUES("42336", "3", "2016-11-07 18:02:27", "184.71.27.166", "179");
INSERT INTO `wp_rg_form_view` VALUES("42337", "10", "2016-11-07 18:02:27", "184.71.27.166", "119");
INSERT INTO `wp_rg_form_view` VALUES("42338", "13", "2016-11-07 18:28:12", "24.108.191.239", "2");
INSERT INTO `wp_rg_form_view` VALUES("42339", "1", "2016-11-07 18:58:19", "63.142.161.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("42340", "3", "2016-11-07 19:03:35", "174.4.167.6", "43");
INSERT INTO `wp_rg_form_view` VALUES("42341", "10", "2016-11-07 19:03:38", "174.4.167.6", "28");
INSERT INTO `wp_rg_form_view` VALUES("42342", "13", "2016-11-07 19:51:19", "5.248.253.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("42343", "3", "2016-11-07 20:00:10", "202.46.58.161", "60");
INSERT INTO `wp_rg_form_view` VALUES("42344", "10", "2016-11-07 20:00:10", "202.46.58.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("42345", "3", "2016-11-07 21:01:21", "24.108.37.193", "61");
INSERT INTO `wp_rg_form_view` VALUES("42346", "10", "2016-11-07 21:01:21", "24.108.37.193", "40");
INSERT INTO `wp_rg_form_view` VALUES("42347", "12", "2016-11-07 21:07:09", "202.46.51.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("42348", "13", "2016-11-07 21:41:46", "5.248.253.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("42349", "3", "2016-11-07 22:15:58", "68.180.228.30", "53");
INSERT INTO `wp_rg_form_view` VALUES("42350", "10", "2016-11-07 22:16:01", "68.180.228.30", "28");
INSERT INTO `wp_rg_form_view` VALUES("42351", "1", "2016-11-07 22:19:55", "207.102.102.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("42352", "3", "2016-11-07 23:02:46", "84.200.172.114", "54");
INSERT INTO `wp_rg_form_view` VALUES("42353", "3", "2016-11-07 23:02:46", "84.200.172.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42354", "10", "2016-11-07 23:02:47", "84.200.172.114", "35");
INSERT INTO `wp_rg_form_view` VALUES("42355", "10", "2016-11-07 23:02:47", "84.200.172.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42356", "13", "2016-11-07 23:39:25", "178.137.165.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("42357", "3", "2016-11-08 00:44:09", "184.151.231.88", "19");
INSERT INTO `wp_rg_form_view` VALUES("42358", "10", "2016-11-08 00:44:12", "184.151.231.88", "12");
INSERT INTO `wp_rg_form_view` VALUES("42359", "3", "2016-11-08 01:06:03", "73.96.105.34", "25");
INSERT INTO `wp_rg_form_view` VALUES("42360", "10", "2016-11-08 01:06:04", "73.96.105.34", "16");
INSERT INTO `wp_rg_form_view` VALUES("42361", "13", "2016-11-08 01:56:24", "134.249.53.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("42362", "3", "2016-11-08 02:04:40", "220.181.108.120", "57");
INSERT INTO `wp_rg_form_view` VALUES("42363", "10", "2016-11-08 02:04:40", "220.181.108.120", "38");
INSERT INTO `wp_rg_form_view` VALUES("42364", "3", "2016-11-08 03:01:34", "96.50.63.233", "61");
INSERT INTO `wp_rg_form_view` VALUES("42365", "10", "2016-11-08 03:01:34", "96.50.63.233", "41");
INSERT INTO `wp_rg_form_view` VALUES("42366", "1", "2016-11-08 03:27:41", "24.68.158.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("42367", "3", "2016-11-08 04:37:26", "75.155.141.49", "74");
INSERT INTO `wp_rg_form_view` VALUES("42368", "10", "2016-11-08 04:37:28", "75.155.141.49", "48");
INSERT INTO `wp_rg_form_view` VALUES("42369", "13", "2016-11-08 04:39:53", "46.118.124.241", "8");
INSERT INTO `wp_rg_form_view` VALUES("42370", "13", "2016-11-08 04:39:53", "46.118.124.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("42371", "3", "2016-11-08 05:07:38", "66.249.79.152", "25");
INSERT INTO `wp_rg_form_view` VALUES("42372", "10", "2016-11-08 05:07:38", "66.249.79.152", "16");
INSERT INTO `wp_rg_form_view` VALUES("42373", "3", "2016-11-08 06:18:27", "50.92.113.207", "43");
INSERT INTO `wp_rg_form_view` VALUES("42374", "10", "2016-11-08 06:18:28", "50.92.113.207", "29");
INSERT INTO `wp_rg_form_view` VALUES("42375", "9", "2016-11-08 06:21:53", "207.46.13.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("42376", "3", "2016-11-08 07:26:41", "54.208.63.135", "30");
INSERT INTO `wp_rg_form_view` VALUES("42377", "10", "2016-11-08 07:26:43", "54.208.63.135", "20");
INSERT INTO `wp_rg_form_view` VALUES("42378", "1", "2016-11-08 08:18:10", "153.149.155.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("42379", "3", "2016-11-08 08:18:10", "153.149.155.232", "18");
INSERT INTO `wp_rg_form_view` VALUES("42380", "10", "2016-11-08 08:18:11", "153.149.155.232", "12");
INSERT INTO `wp_rg_form_view` VALUES("42381", "3", "2016-11-08 09:03:06", "220.181.108.139", "6");
INSERT INTO `wp_rg_form_view` VALUES("42382", "10", "2016-11-08 09:03:10", "220.181.108.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("42383", "10", "2016-11-08 10:04:12", "202.46.52.140", "26");
INSERT INTO `wp_rg_form_view` VALUES("42384", "3", "2016-11-08 10:04:15", "202.46.52.140", "45");
INSERT INTO `wp_rg_form_view` VALUES("42385", "13", "2016-11-08 10:33:04", "178.137.165.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("42386", "13", "2016-11-08 10:33:04", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42387", "13", "2016-11-08 11:01:23", "178.137.165.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("42388", "3", "2016-11-08 11:01:23", "178.137.165.57", "25");
INSERT INTO `wp_rg_form_view` VALUES("42389", "10", "2016-11-08 11:01:23", "178.137.165.57", "16");
INSERT INTO `wp_rg_form_view` VALUES("42390", "3", "2016-11-08 12:06:45", "68.180.228.30", "18");
INSERT INTO `wp_rg_form_view` VALUES("42391", "10", "2016-11-08 12:06:46", "68.180.228.30", "12");
INSERT INTO `wp_rg_form_view` VALUES("42392", "10", "2016-11-08 14:25:12", "66.249.79.152", "21");
INSERT INTO `wp_rg_form_view` VALUES("42393", "3", "2016-11-08 14:25:15", "66.249.79.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("42394", "3", "2016-11-08 15:03:17", "66.249.79.156", "72");
INSERT INTO `wp_rg_form_view` VALUES("42395", "10", "2016-11-08 15:03:18", "66.249.79.156", "49");
INSERT INTO `wp_rg_form_view` VALUES("42396", "13", "2016-11-08 15:31:18", "134.249.55.72", "5");
INSERT INTO `wp_rg_form_view` VALUES("42397", "13", "2016-11-08 15:31:18", "134.249.55.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("42398", "3", "2016-11-08 16:01:05", "202.46.53.120", "37");
INSERT INTO `wp_rg_form_view` VALUES("42399", "10", "2016-11-08 16:01:09", "202.46.53.120", "24");
INSERT INTO `wp_rg_form_view` VALUES("42400", "13", "2016-11-08 16:35:53", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42401", "13", "2016-11-08 16:35:53", "178.137.165.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("42402", "3", "2016-11-08 17:09:14", "220.181.108.146", "23");
INSERT INTO `wp_rg_form_view` VALUES("42403", "10", "2016-11-08 17:09:18", "220.181.108.146", "13");
INSERT INTO `wp_rg_form_view` VALUES("42404", "3", "2016-11-08 18:00:46", "66.249.79.156", "31");
INSERT INTO `wp_rg_form_view` VALUES("42405", "10", "2016-11-08 18:00:46", "66.249.79.156", "20");
INSERT INTO `wp_rg_form_view` VALUES("42406", "3", "2016-11-08 19:02:06", "77.75.77.54", "5446");
INSERT INTO `wp_rg_form_view` VALUES("42407", "10", "2016-11-08 19:02:07", "77.75.77.54", "3199");
INSERT INTO `wp_rg_form_view` VALUES("42408", "11", "2016-11-08 19:41:26", "82.80.249.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("42409", "2", "2016-11-08 19:41:27", "82.80.249.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("42410", "1", "2016-11-08 19:42:29", "82.80.249.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("42411", "13", "2016-11-08 19:43:17", "82.80.249.192", "3");
INSERT INTO `wp_rg_form_view` VALUES("42412", "6", "2016-11-08 19:59:44", "82.80.249.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("42413", "9", "2016-11-08 19:59:45", "82.80.249.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("42414", "10", "2016-11-08 20:00:00", "82.80.249.192", "2856");
INSERT INTO `wp_rg_form_view` VALUES("42415", "3", "2016-11-08 20:00:00", "82.80.249.192", "4492");
INSERT INTO `wp_rg_form_view` VALUES("42416", "13", "2016-11-08 20:01:05", "82.80.249.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("42417", "8", "2016-11-08 20:08:10", "82.80.249.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("42418", "1", "2016-11-08 20:11:10", "95.41.30.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("42419", "3", "2016-11-08 21:04:57", "66.249.79.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("42420", "10", "2016-11-08 21:06:46", "66.249.79.152", "20");
INSERT INTO `wp_rg_form_view` VALUES("42421", "3", "2016-11-08 22:08:20", "163.172.65.230", "130");
INSERT INTO `wp_rg_form_view` VALUES("42422", "10", "2016-11-08 22:08:21", "163.172.65.230", "80");
INSERT INTO `wp_rg_form_view` VALUES("42423", "1", "2016-11-08 22:15:53", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("42424", "8", "2016-11-08 22:38:34", "157.55.39.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("42425", "3", "2016-11-08 23:28:47", "199.21.99.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("42426", "10", "2016-11-08 23:28:47", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("42427", "3", "2016-11-09 00:04:10", "75.155.250.134", "25");
INSERT INTO `wp_rg_form_view` VALUES("42428", "10", "2016-11-09 00:04:10", "75.155.250.134", "17");
INSERT INTO `wp_rg_form_view` VALUES("42429", "13", "2016-11-09 01:13:57", "134.249.55.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("42430", "13", "2016-11-09 01:13:57", "134.249.55.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("42431", "3", "2016-11-09 01:13:59", "134.249.55.72", "22");
INSERT INTO `wp_rg_form_view` VALUES("42432", "3", "2016-11-09 01:13:59", "134.249.55.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("42433", "3", "2016-11-09 01:13:59", "134.249.55.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("42434", "10", "2016-11-09 01:14:00", "134.249.55.72", "15");
INSERT INTO `wp_rg_form_view` VALUES("42435", "10", "2016-11-09 01:14:00", "134.249.55.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("42436", "3", "2016-11-09 03:36:49", "220.181.108.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("42437", "10", "2016-11-09 03:36:50", "220.181.108.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("42438", "3", "2016-11-09 04:06:42", "68.180.229.90", "11");
INSERT INTO `wp_rg_form_view` VALUES("42439", "10", "2016-11-09 04:06:42", "68.180.229.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("42440", "13", "2016-11-09 05:01:01", "5.248.253.78", "9");
INSERT INTO `wp_rg_form_view` VALUES("42441", "3", "2016-11-09 05:01:01", "5.248.253.78", "70");
INSERT INTO `wp_rg_form_view` VALUES("42442", "10", "2016-11-09 05:01:02", "5.248.253.78", "70");
INSERT INTO `wp_rg_form_view` VALUES("42443", "9", "2016-11-09 05:07:02", "66.249.79.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("42444", "1", "2016-11-09 05:45:05", "212.83.175.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("42445", "3", "2016-11-09 06:13:58", "202.46.53.144", "20");
INSERT INTO `wp_rg_form_view` VALUES("42446", "10", "2016-11-09 06:13:58", "202.46.53.144", "20");
INSERT INTO `wp_rg_form_view` VALUES("42447", "3", "2016-11-09 07:27:41", "199.21.99.202", "537");
INSERT INTO `wp_rg_form_view` VALUES("42448", "10", "2016-11-09 07:27:45", "199.21.99.202", "510");
INSERT INTO `wp_rg_form_view` VALUES("42449", "1", "2016-11-09 07:39:57", "178.135.49.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("42450", "9", "2016-11-09 07:47:59", "157.55.39.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("42451", "13", "2016-11-09 07:48:34", "207.46.13.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("42452", "8", "2016-11-09 07:48:36", "207.46.13.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("42453", "12", "2016-11-09 07:48:37", "157.55.39.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("42454", "3", "2016-11-09 08:08:09", "77.75.76.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("42455", "10", "2016-11-09 08:08:09", "77.75.76.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("42456", "1", "2016-11-09 08:28:23", "108.61.226.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("42457", "3", "2016-11-09 09:40:37", "199.21.99.202", "54");
INSERT INTO `wp_rg_form_view` VALUES("42458", "10", "2016-11-09 09:40:39", "199.21.99.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("42459", "1", "2016-11-09 09:46:12", "107.174.254.99", "4");
INSERT INTO `wp_rg_form_view` VALUES("42460", "3", "2016-11-09 10:40:42", "68.180.229.90", "11");
INSERT INTO `wp_rg_form_view` VALUES("42461", "10", "2016-11-09 10:40:43", "68.180.229.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("42462", "3", "2016-11-09 11:01:10", "199.21.99.202", "23");
INSERT INTO `wp_rg_form_view` VALUES("42463", "10", "2016-11-09 11:01:10", "199.21.99.202", "20");
INSERT INTO `wp_rg_form_view` VALUES("42464", "1", "2016-11-09 11:35:10", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("42465", "3", "2016-11-09 12:14:27", "207.46.13.99", "31");
INSERT INTO `wp_rg_form_view` VALUES("42466", "10", "2016-11-09 12:14:27", "207.46.13.99", "30");
INSERT INTO `wp_rg_form_view` VALUES("42467", "1", "2016-11-09 12:20:56", "155.94.179.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("42468", "1", "2016-11-09 13:22:17", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("42469", "3", "2016-11-09 13:22:18", "188.212.23.135", "11");
INSERT INTO `wp_rg_form_view` VALUES("42470", "10", "2016-11-09 13:22:18", "188.212.23.135", "10");
INSERT INTO `wp_rg_form_view` VALUES("42471", "10", "2016-11-09 14:06:00", "68.180.229.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("42472", "3", "2016-11-09 14:15:42", "199.21.99.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("42473", "3", "2016-11-09 15:01:43", "202.46.57.78", "40");
INSERT INTO `wp_rg_form_view` VALUES("42474", "10", "2016-11-09 15:01:43", "202.46.57.78", "40");
INSERT INTO `wp_rg_form_view` VALUES("42475", "1", "2016-11-09 15:07:38", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("42476", "13", "2016-11-09 15:44:43", "178.137.165.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("42477", "3", "2016-11-09 16:32:40", "154.20.32.217", "26");
INSERT INTO `wp_rg_form_view` VALUES("42478", "10", "2016-11-09 16:32:42", "154.20.32.217", "25");
INSERT INTO `wp_rg_form_view` VALUES("42479", "1", "2016-11-09 16:33:33", "78.95.48.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("42480", "3", "2016-11-09 17:06:21", "192.243.55.129", "35");
INSERT INTO `wp_rg_form_view` VALUES("42481", "10", "2016-11-09 17:06:21", "192.243.55.129", "36");
INSERT INTO `wp_rg_form_view` VALUES("42482", "3", "2016-11-09 18:40:07", "184.66.37.93", "20");
INSERT INTO `wp_rg_form_view` VALUES("42483", "10", "2016-11-09 18:40:07", "184.66.37.93", "20");
INSERT INTO `wp_rg_form_view` VALUES("42484", "3", "2016-11-09 19:07:54", "154.5.211.239", "10");
INSERT INTO `wp_rg_form_view` VALUES("42485", "10", "2016-11-09 19:07:54", "154.5.211.239", "10");
INSERT INTO `wp_rg_form_view` VALUES("42486", "3", "2016-11-09 21:03:53", "66.249.79.112", "85");
INSERT INTO `wp_rg_form_view` VALUES("42487", "10", "2016-11-09 21:03:56", "66.249.79.112", "76");
INSERT INTO `wp_rg_form_view` VALUES("42488", "3", "2016-11-09 22:07:07", "216.232.150.8", "110");
INSERT INTO `wp_rg_form_view` VALUES("42489", "10", "2016-11-09 22:07:07", "216.232.150.8", "110");
INSERT INTO `wp_rg_form_view` VALUES("42490", "1", "2016-11-09 22:07:22", "216.232.150.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("42491", "2", "2016-11-09 22:17:17", "45.32.129.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("42492", "13", "2016-11-09 22:18:26", "178.137.162.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("42493", "3", "2016-11-09 23:09:35", "35.160.30.183", "40");
INSERT INTO `wp_rg_form_view` VALUES("42494", "10", "2016-11-09 23:09:35", "35.160.30.183", "40");
INSERT INTO `wp_rg_form_view` VALUES("42495", "13", "2016-11-10 01:37:09", "5.248.253.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("42496", "3", "2016-11-10 01:37:11", "5.248.253.78", "19");
INSERT INTO `wp_rg_form_view` VALUES("42497", "3", "2016-11-10 01:37:11", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42498", "10", "2016-11-10 01:37:11", "5.248.253.78", "18");
INSERT INTO `wp_rg_form_view` VALUES("42499", "10", "2016-11-10 01:37:11", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42500", "10", "2016-11-10 01:37:11", "5.248.253.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("42501", "3", "2016-11-10 02:00:06", "202.46.51.100", "11");
INSERT INTO `wp_rg_form_view` VALUES("42502", "10", "2016-11-10 02:00:06", "202.46.51.100", "10");
INSERT INTO `wp_rg_form_view` VALUES("42503", "13", "2016-11-10 03:40:08", "178.137.165.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("42504", "3", "2016-11-10 03:40:09", "178.137.165.57", "30");
INSERT INTO `wp_rg_form_view` VALUES("42505", "10", "2016-11-10 03:40:09", "178.137.165.57", "30");
INSERT INTO `wp_rg_form_view` VALUES("42506", "13", "2016-11-10 04:04:44", "46.118.124.241", "6");
INSERT INTO `wp_rg_form_view` VALUES("42507", "3", "2016-11-10 04:04:44", "46.118.124.241", "79");
INSERT INTO `wp_rg_form_view` VALUES("42508", "3", "2016-11-10 04:04:44", "46.118.124.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("42509", "10", "2016-11-10 04:04:44", "46.118.124.241", "49");
INSERT INTO `wp_rg_form_view` VALUES("42510", "10", "2016-11-10 04:04:44", "46.118.124.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("42511", "3", "2016-11-10 05:17:16", "192.243.55.133", "91");
INSERT INTO `wp_rg_form_view` VALUES("42512", "10", "2016-11-10 05:17:18", "192.243.55.133", "86");
INSERT INTO `wp_rg_form_view` VALUES("42513", "1", "2016-11-10 05:30:36", "61.238.32.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("42514", "3", "2016-11-10 06:00:43", "62.173.145.45", "40");
INSERT INTO `wp_rg_form_view` VALUES("42515", "10", "2016-11-10 06:00:43", "62.173.145.45", "35");
INSERT INTO `wp_rg_form_view` VALUES("42516", "1", "2016-11-10 06:22:13", "92.43.104.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("42517", "3", "2016-11-10 07:27:19", "54.174.90.149", "41");
INSERT INTO `wp_rg_form_view` VALUES("42518", "10", "2016-11-10 07:27:21", "54.174.90.149", "40");
INSERT INTO `wp_rg_form_view` VALUES("42519", "3", "2016-11-10 08:22:46", "192.243.55.138", "35");
INSERT INTO `wp_rg_form_view` VALUES("42520", "10", "2016-11-10 08:22:46", "192.243.55.138", "35");
INSERT INTO `wp_rg_form_view` VALUES("42521", "1", "2016-11-10 09:03:14", "200.54.180.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("42522", "3", "2016-11-10 09:03:15", "200.54.180.226", "10");
INSERT INTO `wp_rg_form_view` VALUES("42523", "10", "2016-11-10 09:03:15", "200.54.180.226", "10");
INSERT INTO `wp_rg_form_view` VALUES("42524", "6", "2016-11-10 09:55:23", "40.77.167.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("42525", "3", "2016-11-10 10:12:09", "192.243.55.133", "466");
INSERT INTO `wp_rg_form_view` VALUES("42526", "10", "2016-11-10 10:12:09", "192.243.55.133", "427");
INSERT INTO `wp_rg_form_view` VALUES("42527", "13", "2016-11-10 10:44:26", "178.137.162.10", "4");
INSERT INTO `wp_rg_form_view` VALUES("42528", "13", "2016-11-10 10:44:26", "178.137.162.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("42529", "1", "2016-11-10 10:45:21", "120.52.73.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("42530", "9", "2016-11-10 10:46:33", "40.77.167.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("42531", "8", "2016-11-10 10:47:20", "40.77.167.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("42532", "3", "2016-11-10 11:45:53", "207.46.13.154", "5");
INSERT INTO `wp_rg_form_view` VALUES("42533", "10", "2016-11-10 11:45:53", "207.46.13.154", "5");
INSERT INTO `wp_rg_form_view` VALUES("42534", "3", "2016-11-10 12:13:49", "77.75.78.165", "45");
INSERT INTO `wp_rg_form_view` VALUES("42535", "10", "2016-11-10 12:13:49", "77.75.78.165", "45");
INSERT INTO `wp_rg_form_view` VALUES("42536", "3", "2016-11-10 13:01:57", "40.77.167.12", "159");
INSERT INTO `wp_rg_form_view` VALUES("42537", "10", "2016-11-10 13:01:57", "40.77.167.12", "153");
INSERT INTO `wp_rg_form_view` VALUES("42538", "6", "2016-11-10 13:02:14", "40.77.167.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("42539", "13", "2016-11-10 13:33:58", "40.77.167.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("42540", "5", "2016-11-10 13:34:04", "40.77.167.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("42541", "3", "2016-11-10 14:34:42", "192.243.55.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("42542", "10", "2016-11-10 14:34:42", "192.243.55.133", "35");
INSERT INTO `wp_rg_form_view` VALUES("42543", "3", "2016-11-10 15:02:22", "163.172.66.6", "89");
INSERT INTO `wp_rg_form_view` VALUES("42544", "10", "2016-11-10 15:02:22", "163.172.66.6", "85");
INSERT INTO `wp_rg_form_view` VALUES("42545", "13", "2016-11-10 15:43:15", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("42546", "3", "2016-11-10 16:49:39", "192.243.55.137", "25");
INSERT INTO `wp_rg_form_view` VALUES("42547", "10", "2016-11-10 16:49:40", "192.243.55.137", "25");
INSERT INTO `wp_rg_form_view` VALUES("42548", "3", "2016-11-10 17:12:59", "66.249.79.104", "18");
INSERT INTO `wp_rg_form_view` VALUES("42549", "10", "2016-11-10 17:12:59", "66.249.79.104", "15");
INSERT INTO `wp_rg_form_view` VALUES("42550", "3", "2016-11-10 18:02:07", "192.243.55.130", "50");
INSERT INTO `wp_rg_form_view` VALUES("42551", "10", "2016-11-10 18:02:08", "192.243.55.130", "50");
INSERT INTO `wp_rg_form_view` VALUES("42552", "13", "2016-11-10 18:13:13", "134.249.74.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("42553", "5", "2016-11-10 19:01:24", "202.46.49.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("42554", "3", "2016-11-10 19:01:24", "202.46.49.73", "84");
INSERT INTO `wp_rg_form_view` VALUES("42555", "10", "2016-11-10 19:01:24", "202.46.49.73", "80");
INSERT INTO `wp_rg_form_view` VALUES("42556", "13", "2016-11-10 19:48:30", "46.118.124.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("42557", "13", "2016-11-10 19:48:30", "46.118.124.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("42558", "13", "2016-11-10 20:44:14", "178.137.162.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("42559", "3", "2016-11-10 20:44:15", "178.137.162.10", "20");
INSERT INTO `wp_rg_form_view` VALUES("42560", "10", "2016-11-10 20:44:15", "178.137.162.10", "20");
INSERT INTO `wp_rg_form_view` VALUES("42561", "3", "2016-11-10 21:18:18", "154.5.211.239", "20");
INSERT INTO `wp_rg_form_view` VALUES("42562", "10", "2016-11-10 21:18:18", "154.5.211.239", "21");
INSERT INTO `wp_rg_form_view` VALUES("42563", "3", "2016-11-10 22:15:16", "68.32.124.143", "107");
INSERT INTO `wp_rg_form_view` VALUES("42564", "10", "2016-11-10 22:15:18", "68.32.124.143", "100");
INSERT INTO `wp_rg_form_view` VALUES("42565", "13", "2016-11-10 22:22:58", "178.137.165.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("42566", "3", "2016-11-10 23:01:51", "75.155.250.134", "42");
INSERT INTO `wp_rg_form_view` VALUES("42567", "10", "2016-11-10 23:01:51", "75.155.250.134", "40");
INSERT INTO `wp_rg_form_view` VALUES("42568", "3", "2016-11-11 00:09:32", "207.194.133.9", "116");
INSERT INTO `wp_rg_form_view` VALUES("42569", "10", "2016-11-11 00:09:32", "207.194.133.9", "115");
INSERT INTO `wp_rg_form_view` VALUES("42570", "1", "2016-11-11 00:28:31", "192.3.8.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("42571", "3", "2016-11-11 01:02:13", "35.162.50.153", "50");
INSERT INTO `wp_rg_form_view` VALUES("42572", "10", "2016-11-11 01:02:13", "35.162.50.153", "53");
INSERT INTO `wp_rg_form_view` VALUES("42573", "3", "2016-11-11 02:02:53", "35.163.101.16", "40");
INSERT INTO `wp_rg_form_view` VALUES("42574", "10", "2016-11-11 02:02:53", "35.163.101.16", "40");
INSERT INTO `wp_rg_form_view` VALUES("42575", "3", "2016-11-11 03:05:40", "163.172.65.54", "72");
INSERT INTO `wp_rg_form_view` VALUES("42576", "10", "2016-11-11 03:05:41", "163.172.65.54", "70");
INSERT INTO `wp_rg_form_view` VALUES("42577", "3", "2016-11-11 04:08:15", "192.243.55.129", "20");
INSERT INTO `wp_rg_form_view` VALUES("42578", "10", "2016-11-11 04:08:15", "192.243.55.129", "20");
INSERT INTO `wp_rg_form_view` VALUES("42579", "1", "2016-11-11 04:49:28", "40.77.167.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("42580", "3", "2016-11-11 05:17:54", "68.180.229.90", "20");
INSERT INTO `wp_rg_form_view` VALUES("42581", "10", "2016-11-11 05:17:55", "68.180.229.90", "20");
INSERT INTO `wp_rg_form_view` VALUES("42582", "10", "2016-11-11 06:18:06", "50.92.250.233", "80");
INSERT INTO `wp_rg_form_view` VALUES("42583", "3", "2016-11-11 06:18:06", "50.92.250.233", "80");
INSERT INTO `wp_rg_form_view` VALUES("42584", "1", "2016-11-11 06:19:05", "50.92.250.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("42585", "13", "2016-11-11 06:59:03", "178.137.164.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("42586", "13", "2016-11-11 06:59:03", "178.137.164.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("42587", "10", "2016-11-11 07:29:19", "54.227.125.123", "10");
INSERT INTO `wp_rg_form_view` VALUES("42588", "3", "2016-11-11 07:29:20", "54.227.125.123", "10");
INSERT INTO `wp_rg_form_view` VALUES("42589", "1", "2016-11-11 07:49:00", "212.83.175.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("42590", "3", "2016-11-11 08:08:44", "104.202.102.20", "26");
INSERT INTO `wp_rg_form_view` VALUES("42591", "10", "2016-11-11 08:08:44", "104.202.102.20", "25");
INSERT INTO `wp_rg_form_view` VALUES("42592", "13", "2016-11-11 08:56:38", "178.137.165.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("42593", "3", "2016-11-11 09:38:56", "5.255.250.87", "6");
INSERT INTO `wp_rg_form_view` VALUES("42594", "10", "2016-11-11 09:39:01", "5.255.250.87", "5");
INSERT INTO `wp_rg_form_view` VALUES("42595", "10", "2016-11-11 10:00:26", "163.172.65.57", "15");
INSERT INTO `wp_rg_form_view` VALUES("42596", "3", "2016-11-11 10:00:27", "163.172.65.57", "15");
INSERT INTO `wp_rg_form_view` VALUES("42597", "10", "2016-11-11 11:02:38", "66.249.79.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("42598", "3", "2016-11-11 11:02:38", "66.249.79.108", "10");
INSERT INTO `wp_rg_form_view` VALUES("42599", "10", "2016-11-11 12:40:42", "54.221.64.226", "34");
INSERT INTO `wp_rg_form_view` VALUES("42600", "10", "2016-11-11 12:40:42", "54.221.64.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("42601", "3", "2016-11-11 12:40:49", "54.221.64.226", "33");
INSERT INTO `wp_rg_form_view` VALUES("42602", "3", "2016-11-11 12:40:49", "54.221.64.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("42603", "3", "2016-11-11 12:40:49", "54.221.64.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("42604", "10", "2016-11-11 13:44:21", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("42605", "3", "2016-11-11 13:44:21", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("42606", "10", "2016-11-11 14:24:55", "66.249.79.108", "26");
INSERT INTO `wp_rg_form_view` VALUES("42607", "3", "2016-11-11 14:24:55", "66.249.79.108", "27");
INSERT INTO `wp_rg_form_view` VALUES("42608", "3", "2016-11-11 15:34:23", "202.46.56.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("42609", "10", "2016-11-11 15:34:24", "202.46.56.95", "15");
INSERT INTO `wp_rg_form_view` VALUES("42610", "5", "2016-11-11 15:55:30", "77.75.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("42611", "10", "2016-11-11 16:07:50", "202.46.56.135", "30");
INSERT INTO `wp_rg_form_view` VALUES("42612", "3", "2016-11-11 16:07:50", "202.46.56.135", "30");
INSERT INTO `wp_rg_form_view` VALUES("42613", "10", "2016-11-11 17:30:06", "209.153.252.13", "35");
INSERT INTO `wp_rg_form_view` VALUES("42614", "3", "2016-11-11 17:30:06", "209.153.252.13", "37");
INSERT INTO `wp_rg_form_view` VALUES("42615", "10", "2016-11-11 18:13:40", "66.249.79.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("42616", "3", "2016-11-11 18:13:40", "66.249.79.112", "5");
INSERT INTO `wp_rg_form_view` VALUES("42617", "3", "2016-11-11 19:18:32", "157.55.39.230", "22");
INSERT INTO `wp_rg_form_view` VALUES("42618", "10", "2016-11-11 19:18:34", "157.55.39.230", "20");
INSERT INTO `wp_rg_form_view` VALUES("42619", "13", "2016-11-11 19:55:39", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("42620", "10", "2016-11-11 20:09:02", "192.99.147.201", "21");
INSERT INTO `wp_rg_form_view` VALUES("42621", "3", "2016-11-11 20:09:03", "192.99.147.201", "15");
INSERT INTO `wp_rg_form_view` VALUES("42622", "10", "2016-11-11 21:26:25", "108.180.150.109", "30");
INSERT INTO `wp_rg_form_view` VALUES("42623", "3", "2016-11-11 21:26:27", "108.180.150.109", "31");
INSERT INTO `wp_rg_form_view` VALUES("42624", "10", "2016-11-11 22:08:14", "23.106.26.93", "30");
INSERT INTO `wp_rg_form_view` VALUES("42625", "3", "2016-11-11 22:08:15", "23.106.26.93", "30");
INSERT INTO `wp_rg_form_view` VALUES("42626", "13", "2016-11-11 22:45:03", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("42627", "10", "2016-11-11 23:08:18", "216.126.100.25", "80");
INSERT INTO `wp_rg_form_view` VALUES("42628", "3", "2016-11-11 23:08:18", "216.126.100.25", "84");
INSERT INTO `wp_rg_form_view` VALUES("42629", "1", "2016-11-11 23:11:33", "120.52.72.58", "4");
INSERT INTO `wp_rg_form_view` VALUES("42630", "10", "2016-11-12 00:05:10", "162.243.186.79", "135");
INSERT INTO `wp_rg_form_view` VALUES("42631", "3", "2016-11-12 00:05:10", "162.243.186.79", "136");
INSERT INTO `wp_rg_form_view` VALUES("42632", "11", "2016-11-12 00:05:11", "162.243.186.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("42633", "2", "2016-11-12 00:05:11", "162.243.186.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("42634", "10", "2016-11-12 01:23:32", "24.108.50.66", "75");
INSERT INTO `wp_rg_form_view` VALUES("42635", "3", "2016-11-12 01:23:32", "24.108.50.66", "76");
INSERT INTO `wp_rg_form_view` VALUES("42636", "13", "2016-11-12 01:41:29", "178.137.89.246", "8");
INSERT INTO `wp_rg_form_view` VALUES("42637", "2", "2016-11-12 02:00:13", "23.81.251.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("42638", "10", "2016-11-12 02:00:13", "23.81.251.66", "75");
INSERT INTO `wp_rg_form_view` VALUES("42639", "3", "2016-11-12 02:00:13", "23.81.251.66", "76");
INSERT INTO `wp_rg_form_view` VALUES("42640", "13", "2016-11-12 02:28:47", "46.118.155.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("42641", "13", "2016-11-12 03:11:50", "46.119.127.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("42642", "10", "2016-11-12 03:11:50", "46.119.127.117", "20");
INSERT INTO `wp_rg_form_view` VALUES("42643", "3", "2016-11-12 03:11:50", "46.119.127.117", "20");
INSERT INTO `wp_rg_form_view` VALUES("42644", "10", "2016-11-12 04:01:46", "5.255.250.56", "30");
INSERT INTO `wp_rg_form_view` VALUES("42645", "3", "2016-11-12 04:01:46", "5.255.250.56", "32");
INSERT INTO `wp_rg_form_view` VALUES("42646", "3", "2016-11-12 05:00:46", "199.21.99.202", "96");
INSERT INTO `wp_rg_form_view` VALUES("42647", "10", "2016-11-12 05:00:46", "199.21.99.202", "95");
INSERT INTO `wp_rg_form_view` VALUES("42648", "2", "2016-11-12 05:02:07", "128.177.10.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("42649", "13", "2016-11-12 05:18:27", "134.249.74.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("42650", "10", "2016-11-12 06:00:41", "66.249.79.108", "15");
INSERT INTO `wp_rg_form_view` VALUES("42651", "3", "2016-11-12 06:00:41", "66.249.79.108", "15");
INSERT INTO `wp_rg_form_view` VALUES("42652", "3", "2016-11-12 07:21:52", "157.55.39.230", "576");
INSERT INTO `wp_rg_form_view` VALUES("42653", "10", "2016-11-12 07:21:54", "157.55.39.230", "535");
INSERT INTO `wp_rg_form_view` VALUES("42654", "6", "2016-11-12 07:21:58", "157.55.39.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("42655", "13", "2016-11-12 07:22:21", "157.55.39.230", "4");
INSERT INTO `wp_rg_form_view` VALUES("42656", "5", "2016-11-12 07:22:23", "157.55.39.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("42657", "9", "2016-11-12 07:23:09", "40.77.167.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("42658", "8", "2016-11-12 07:23:55", "40.77.167.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("42659", "1", "2016-11-12 07:57:13", "104.129.15.174", "2");
INSERT INTO `wp_rg_form_view` VALUES("42660", "10", "2016-11-12 08:03:04", "66.249.79.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("42661", "3", "2016-11-12 08:03:04", "66.249.79.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("42662", "10", "2016-11-12 09:01:19", "66.249.79.108", "165");
INSERT INTO `wp_rg_form_view` VALUES("42663", "3", "2016-11-12 09:01:20", "66.249.79.108", "166");
INSERT INTO `wp_rg_form_view` VALUES("42664", "11", "2016-11-12 09:56:11", "149.91.123.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("42665", "2", "2016-11-12 09:57:13", "149.91.123.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("42666", "10", "2016-11-12 10:25:23", "220.181.108.99", "70");
INSERT INTO `wp_rg_form_view` VALUES("42667", "3", "2016-11-12 10:25:24", "220.181.108.99", "74");
INSERT INTO `wp_rg_form_view` VALUES("42668", "1", "2016-11-12 10:46:11", "104.129.13.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("42669", "10", "2016-11-12 11:08:04", "40.77.167.66", "10");
INSERT INTO `wp_rg_form_view` VALUES("42670", "3", "2016-11-12 11:08:04", "40.77.167.66", "10");
INSERT INTO `wp_rg_form_view` VALUES("42671", "13", "2016-11-12 12:04:07", "46.119.127.117", "8");
INSERT INTO `wp_rg_form_view` VALUES("42672", "10", "2016-11-12 12:04:07", "46.119.127.117", "40");
INSERT INTO `wp_rg_form_view` VALUES("42673", "3", "2016-11-12 12:04:07", "46.119.127.117", "40");
INSERT INTO `wp_rg_form_view` VALUES("42674", "10", "2016-11-12 13:03:06", "68.180.229.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("42675", "3", "2016-11-12 13:03:07", "68.180.229.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("42676", "3", "2016-11-12 14:29:35", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("42677", "10", "2016-11-12 14:29:36", "66.249.79.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("42678", "10", "2016-11-12 15:52:45", "66.249.79.104", "35");
INSERT INTO `wp_rg_form_view` VALUES("42679", "3", "2016-11-12 15:52:46", "66.249.79.104", "39");
INSERT INTO `wp_rg_form_view` VALUES("42680", "10", "2016-11-12 16:07:40", "68.180.229.90", "20");
INSERT INTO `wp_rg_form_view` VALUES("42681", "3", "2016-11-12 16:07:41", "68.180.229.90", "21");
INSERT INTO `wp_rg_form_view` VALUES("42682", "13", "2016-11-12 17:08:04", "68.180.229.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("42683", "10", "2016-11-12 17:08:04", "68.180.229.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("42684", "3", "2016-11-12 17:08:04", "68.180.229.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("42685", "10", "2016-11-12 18:44:24", "70.66.183.0", "10");
INSERT INTO `wp_rg_form_view` VALUES("42686", "3", "2016-11-12 18:44:24", "70.66.183.0", "10");
INSERT INTO `wp_rg_form_view` VALUES("42687", "3", "2016-11-12 19:12:39", "68.180.229.90", "11");
INSERT INTO `wp_rg_form_view` VALUES("42688", "10", "2016-11-12 19:12:40", "68.180.229.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("42689", "10", "2016-11-12 20:16:45", "66.249.79.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("42690", "3", "2016-11-12 20:16:45", "66.249.79.108", "22");
INSERT INTO `wp_rg_form_view` VALUES("42691", "10", "2016-11-12 21:02:07", "24.224.166.227", "16");
INSERT INTO `wp_rg_form_view` VALUES("42692", "3", "2016-11-12 21:02:07", "24.224.166.227", "15");
INSERT INTO `wp_rg_form_view` VALUES("42693", "13", "2016-11-12 22:12:38", "46.118.116.7", "6");
INSERT INTO `wp_rg_form_view` VALUES("42694", "13", "2016-11-12 22:12:38", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("42695", "10", "2016-11-12 22:12:48", "46.118.116.7", "44");
INSERT INTO `wp_rg_form_view` VALUES("42696", "10", "2016-11-12 22:12:48", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("42697", "3", "2016-11-12 22:12:49", "46.118.116.7", "44");
INSERT INTO `wp_rg_form_view` VALUES("42698", "3", "2016-11-12 22:12:49", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("42699", "10", "2016-11-12 23:13:09", "68.180.229.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("42700", "3", "2016-11-12 23:13:09", "68.180.229.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("42701", "10", "2016-11-13 00:08:40", "207.46.13.41", "5");
INSERT INTO `wp_rg_form_view` VALUES("42702", "3", "2016-11-13 00:08:41", "207.46.13.41", "5");
INSERT INTO `wp_rg_form_view` VALUES("42703", "3", "2016-11-13 01:30:00", "157.55.39.254", "24");
INSERT INTO `wp_rg_form_view` VALUES("42704", "10", "2016-11-13 01:30:03", "157.55.39.254", "16");
INSERT INTO `wp_rg_form_view` VALUES("42705", "3", "2016-11-13 02:50:03", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("42706", "10", "2016-11-13 02:50:04", "66.249.79.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("42707", "3", "2016-11-13 03:08:14", "174.129.237.157", "30");
INSERT INTO `wp_rg_form_view` VALUES("42708", "10", "2016-11-13 03:08:14", "174.129.237.157", "20");
INSERT INTO `wp_rg_form_view` VALUES("42709", "3", "2016-11-13 05:09:12", "77.75.79.36", "12");
INSERT INTO `wp_rg_form_view` VALUES("42710", "10", "2016-11-13 05:09:14", "77.75.79.36", "8");
INSERT INTO `wp_rg_form_view` VALUES("42711", "3", "2016-11-13 06:02:21", "77.75.76.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("42712", "10", "2016-11-13 06:02:22", "77.75.76.166", "20");
INSERT INTO `wp_rg_form_view` VALUES("42713", "13", "2016-11-13 06:38:12", "178.137.89.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("42714", "13", "2016-11-13 06:38:12", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42715", "3", "2016-11-13 07:06:04", "202.46.50.99", "20");
INSERT INTO `wp_rg_form_view` VALUES("42716", "10", "2016-11-13 07:06:05", "202.46.50.99", "12");
INSERT INTO `wp_rg_form_view` VALUES("42717", "3", "2016-11-13 08:06:52", "40.77.167.28", "13");
INSERT INTO `wp_rg_form_view` VALUES("42718", "10", "2016-11-13 08:06:53", "40.77.167.28", "8");
INSERT INTO `wp_rg_form_view` VALUES("42719", "3", "2016-11-13 09:38:16", "68.180.229.90", "406");
INSERT INTO `wp_rg_form_view` VALUES("42720", "10", "2016-11-13 09:38:18", "68.180.229.90", "258");
INSERT INTO `wp_rg_form_view` VALUES("42721", "9", "2016-11-13 09:47:49", "207.46.13.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("42722", "13", "2016-11-13 09:48:02", "157.55.39.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("42723", "8", "2016-11-13 09:48:17", "157.55.39.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("42724", "3", "2016-11-13 10:17:47", "68.180.229.90", "38");
INSERT INTO `wp_rg_form_view` VALUES("42725", "10", "2016-11-13 10:17:47", "68.180.229.90", "24");
INSERT INTO `wp_rg_form_view` VALUES("42726", "3", "2016-11-13 12:36:27", "66.249.79.104", "54");
INSERT INTO `wp_rg_form_view` VALUES("42727", "10", "2016-11-13 12:36:27", "66.249.79.104", "36");
INSERT INTO `wp_rg_form_view` VALUES("42728", "3", "2016-11-13 13:02:40", "207.46.13.53", "12");
INSERT INTO `wp_rg_form_view` VALUES("42729", "10", "2016-11-13 13:02:40", "207.46.13.53", "8");
INSERT INTO `wp_rg_form_view` VALUES("42730", "3", "2016-11-13 14:29:19", "202.46.52.158", "6");
INSERT INTO `wp_rg_form_view` VALUES("42731", "10", "2016-11-13 14:29:20", "202.46.52.158", "4");
INSERT INTO `wp_rg_form_view` VALUES("42732", "3", "2016-11-13 15:21:03", "68.180.229.90", "36");
INSERT INTO `wp_rg_form_view` VALUES("42733", "10", "2016-11-13 15:21:03", "68.180.229.90", "24");
INSERT INTO `wp_rg_form_view` VALUES("42734", "13", "2016-11-13 15:41:49", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("42735", "3", "2016-11-13 16:00:28", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("42736", "10", "2016-11-13 16:00:28", "66.249.79.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("42737", "3", "2016-11-13 17:16:47", "202.46.50.162", "68");
INSERT INTO `wp_rg_form_view` VALUES("42738", "10", "2016-11-13 17:16:55", "202.46.50.162", "44");
INSERT INTO `wp_rg_form_view` VALUES("42739", "1", "2016-11-13 17:21:44", "196.40.117.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("42740", "11", "2016-11-13 17:45:59", "77.75.77.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("42741", "13", "2016-11-13 18:12:33", "134.249.74.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("42742", "3", "2016-11-13 18:12:34", "134.249.74.95", "37");
INSERT INTO `wp_rg_form_view` VALUES("42743", "10", "2016-11-13 18:12:34", "134.249.74.95", "24");
INSERT INTO `wp_rg_form_view` VALUES("42744", "1", "2016-11-13 18:22:18", "153.149.155.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("42745", "13", "2016-11-13 19:08:10", "46.118.155.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("42746", "3", "2016-11-13 19:08:11", "46.118.155.149", "43");
INSERT INTO `wp_rg_form_view` VALUES("42747", "10", "2016-11-13 19:08:11", "46.118.155.149", "28");
INSERT INTO `wp_rg_form_view` VALUES("42748", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42749", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42750", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42751", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42752", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42753", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42754", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42755", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42756", "13", "2016-11-13 20:04:15", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42757", "3", "2016-11-13 20:04:25", "178.137.89.246", "65");
INSERT INTO `wp_rg_form_view` VALUES("42758", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42759", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42760", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42761", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42762", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42763", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42764", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42765", "3", "2016-11-13 20:04:25", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42766", "10", "2016-11-13 20:04:26", "178.137.89.246", "40");
INSERT INTO `wp_rg_form_view` VALUES("42767", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42768", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42769", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42770", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42771", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42772", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42773", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42774", "10", "2016-11-13 20:04:26", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("42775", "3", "2016-11-13 21:06:03", "94.189.220.72", "66");
INSERT INTO `wp_rg_form_view` VALUES("42776", "10", "2016-11-13 21:06:04", "94.189.220.72", "45");
INSERT INTO `wp_rg_form_view` VALUES("42777", "13", "2016-11-13 21:43:57", "46.119.127.117", "9");
INSERT INTO `wp_rg_form_view` VALUES("42778", "3", "2016-11-13 22:25:37", "202.46.51.169", "6");
INSERT INTO `wp_rg_form_view` VALUES("42779", "10", "2016-11-13 22:25:37", "202.46.51.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("42780", "3", "2016-11-13 23:07:35", "207.46.13.151", "37");
INSERT INTO `wp_rg_form_view` VALUES("42781", "10", "2016-11-13 23:07:38", "207.46.13.151", "24");
INSERT INTO `wp_rg_form_view` VALUES("42782", "13", "2016-11-13 23:31:20", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("42783", "11", "2016-11-14 00:33:36", "163.172.66.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("42784", "3", "2016-11-14 00:33:36", "163.172.66.127", "8");
INSERT INTO `wp_rg_form_view` VALUES("42785", "10", "2016-11-14 00:33:36", "163.172.66.127", "5");
INSERT INTO `wp_rg_form_view` VALUES("42786", "3", "2016-11-14 01:07:05", "207.46.13.151", "57");
INSERT INTO `wp_rg_form_view` VALUES("42787", "10", "2016-11-14 01:07:05", "207.46.13.151", "33");
INSERT INTO `wp_rg_form_view` VALUES("42788", "10", "2016-11-14 02:00:42", "199.59.148.211", "18");
INSERT INTO `wp_rg_form_view` VALUES("42789", "3", "2016-11-14 02:00:42", "199.59.148.211", "25");
INSERT INTO `wp_rg_form_view` VALUES("42790", "3", "2016-11-14 03:05:31", "163.172.65.234", "38");
INSERT INTO `wp_rg_form_view` VALUES("42791", "10", "2016-11-14 03:05:31", "163.172.65.234", "24");
INSERT INTO `wp_rg_form_view` VALUES("42792", "10", "2016-11-14 04:05:23", "68.180.229.90", "26");
INSERT INTO `wp_rg_form_view` VALUES("42793", "3", "2016-11-14 04:05:23", "68.180.229.90", "37");
INSERT INTO `wp_rg_form_view` VALUES("42794", "3", "2016-11-14 05:03:47", "24.108.39.134", "54");
INSERT INTO `wp_rg_form_view` VALUES("42795", "10", "2016-11-14 05:03:47", "24.108.39.134", "36");
INSERT INTO `wp_rg_form_view` VALUES("42796", "13", "2016-11-14 05:07:02", "46.118.116.7", "3");
INSERT INTO `wp_rg_form_view` VALUES("42797", "13", "2016-11-14 05:07:02", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("42798", "3", "2016-11-14 06:01:43", "68.180.229.90", "19");
INSERT INTO `wp_rg_form_view` VALUES("42799", "10", "2016-11-14 06:03:31", "77.75.77.95", "12");
INSERT INTO `wp_rg_form_view` VALUES("42800", "3", "2016-11-14 07:26:04", "163.172.66.102", "31");
INSERT INTO `wp_rg_form_view` VALUES("42801", "10", "2016-11-14 07:26:07", "163.172.66.102", "21");
INSERT INTO `wp_rg_form_view` VALUES("42802", "3", "2016-11-14 08:06:32", "77.75.76.165", "36");
INSERT INTO `wp_rg_form_view` VALUES("42803", "10", "2016-11-14 08:06:32", "77.75.76.165", "24");
INSERT INTO `wp_rg_form_view` VALUES("42804", "3", "2016-11-14 09:01:51", "202.46.57.20", "12");
INSERT INTO `wp_rg_form_view` VALUES("42805", "10", "2016-11-14 09:01:51", "202.46.57.20", "8");
INSERT INTO `wp_rg_form_view` VALUES("42806", "3", "2016-11-14 10:00:04", "77.75.78.167", "25");
INSERT INTO `wp_rg_form_view` VALUES("42807", "10", "2016-11-14 10:00:04", "77.75.78.167", "16");
INSERT INTO `wp_rg_form_view` VALUES("42808", "13", "2016-11-14 10:11:53", "207.46.13.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("42809", "10", "2016-11-14 11:07:23", "157.55.39.156", "9");
INSERT INTO `wp_rg_form_view` VALUES("42810", "3", "2016-11-14 11:07:23", "157.55.39.156", "12");
INSERT INTO `wp_rg_form_view` VALUES("42811", "3", "2016-11-14 12:32:25", "157.55.39.234", "13");
INSERT INTO `wp_rg_form_view` VALUES("42812", "10", "2016-11-14 12:32:26", "157.55.39.234", "8");
INSERT INTO `wp_rg_form_view` VALUES("42813", "3", "2016-11-14 13:13:34", "66.249.79.108", "19");
INSERT INTO `wp_rg_form_view` VALUES("42814", "10", "2016-11-14 13:13:34", "66.249.79.108", "12");
INSERT INTO `wp_rg_form_view` VALUES("42815", "3", "2016-11-14 14:04:49", "77.75.76.172", "25");
INSERT INTO `wp_rg_form_view` VALUES("42816", "10", "2016-11-14 14:04:49", "77.75.76.172", "16");
INSERT INTO `wp_rg_form_view` VALUES("42817", "13", "2016-11-14 14:30:52", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("42818", "1", "2016-11-14 14:51:22", "77.75.79.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("42819", "3", "2016-11-14 15:04:58", "157.55.39.156", "43");
INSERT INTO `wp_rg_form_view` VALUES("42820", "10", "2016-11-14 15:04:59", "157.55.39.156", "29");
INSERT INTO `wp_rg_form_view` VALUES("42821", "3", "2016-11-14 16:34:15", "45.55.149.85", "1412");
INSERT INTO `wp_rg_form_view` VALUES("42822", "10", "2016-11-14 16:34:16", "45.55.149.85", "768");
INSERT INTO `wp_rg_form_view` VALUES("42823", "1", "2016-11-14 16:39:46", "45.55.149.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("42824", "11", "2016-11-14 16:40:16", "45.55.149.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("42825", "6", "2016-11-14 16:57:21", "45.55.149.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("42826", "3", "2016-11-14 17:00:11", "45.55.149.85", "2591");
INSERT INTO `wp_rg_form_view` VALUES("42827", "10", "2016-11-14 17:00:11", "45.55.149.85", "1562");
INSERT INTO `wp_rg_form_view` VALUES("42828", "9", "2016-11-14 17:06:01", "45.55.149.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("42829", "13", "2016-11-14 17:26:23", "46.118.155.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("42830", "2", "2016-11-14 17:44:29", "45.55.149.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("42831", "8", "2016-11-14 17:57:17", "45.55.149.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("42832", "3", "2016-11-14 18:22:13", "24.108.185.106", "38");
INSERT INTO `wp_rg_form_view` VALUES("42833", "10", "2016-11-14 18:22:19", "24.108.185.106", "24");
INSERT INTO `wp_rg_form_view` VALUES("42834", "1", "2016-11-14 18:52:35", "23.94.213.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("42835", "3", "2016-11-14 19:13:36", "163.172.64.235", "40");
INSERT INTO `wp_rg_form_view` VALUES("42836", "10", "2016-11-14 19:13:36", "163.172.64.235", "30");
INSERT INTO `wp_rg_form_view` VALUES("42837", "3", "2016-11-14 20:24:50", "202.46.58.186", "39");
INSERT INTO `wp_rg_form_view` VALUES("42838", "10", "2016-11-14 20:24:52", "202.46.58.186", "24");
INSERT INTO `wp_rg_form_view` VALUES("42839", "3", "2016-11-14 21:01:00", "184.71.23.2", "76");
INSERT INTO `wp_rg_form_view` VALUES("42840", "10", "2016-11-14 21:01:00", "184.71.23.2", "45");
INSERT INTO `wp_rg_form_view` VALUES("42841", "10", "2016-11-14 22:23:29", "199.21.99.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("42842", "3", "2016-11-14 22:23:35", "199.21.99.202", "25");
INSERT INTO `wp_rg_form_view` VALUES("42843", "2", "2016-11-14 22:23:49", "68.180.229.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("42844", "3", "2016-11-15 00:05:38", "64.180.75.201", "67");
INSERT INTO `wp_rg_form_view` VALUES("42845", "10", "2016-11-15 00:05:40", "64.180.75.201", "44");
INSERT INTO `wp_rg_form_view` VALUES("42846", "13", "2016-11-15 00:25:28", "134.249.74.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("42847", "11", "2016-11-15 00:28:14", "77.75.78.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("42848", "3", "2016-11-15 01:05:59", "108.172.118.190", "25");
INSERT INTO `wp_rg_form_view` VALUES("42849", "10", "2016-11-15 01:05:59", "108.172.118.190", "17");
INSERT INTO `wp_rg_form_view` VALUES("42850", "3", "2016-11-15 02:30:50", "163.172.66.17", "25");
INSERT INTO `wp_rg_form_view` VALUES("42851", "10", "2016-11-15 02:30:51", "163.172.66.17", "16");
INSERT INTO `wp_rg_form_view` VALUES("42852", "3", "2016-11-15 03:00:26", "99.199.0.37", "37");
INSERT INTO `wp_rg_form_view` VALUES("42853", "10", "2016-11-15 03:00:26", "99.199.0.37", "24");
INSERT INTO `wp_rg_form_view` VALUES("42854", "1", "2016-11-15 03:27:31", "212.83.175.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("42855", "3", "2016-11-15 04:00:31", "68.180.229.90", "19");
INSERT INTO `wp_rg_form_view` VALUES("42856", "10", "2016-11-15 04:00:31", "68.180.229.90", "12");
INSERT INTO `wp_rg_form_view` VALUES("42857", "3", "2016-11-15 06:14:48", "199.21.99.202", "25");
INSERT INTO `wp_rg_form_view` VALUES("42858", "10", "2016-11-15 06:14:49", "199.21.99.202", "17");
INSERT INTO `wp_rg_form_view` VALUES("42859", "3", "2016-11-15 07:21:47", "66.249.79.156", "26");
INSERT INTO `wp_rg_form_view` VALUES("42860", "10", "2016-11-15 07:21:55", "66.249.79.156", "16");
INSERT INTO `wp_rg_form_view` VALUES("42861", "13", "2016-11-15 08:05:57", "134.249.74.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("42862", "3", "2016-11-15 08:05:58", "134.249.74.95", "24");
INSERT INTO `wp_rg_form_view` VALUES("42863", "3", "2016-11-15 08:05:58", "134.249.74.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("42864", "10", "2016-11-15 08:05:59", "134.249.74.95", "15");
INSERT INTO `wp_rg_form_view` VALUES("42865", "10", "2016-11-15 08:05:59", "134.249.74.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("42866", "3", "2016-11-15 09:46:51", "202.46.52.72", "19");
INSERT INTO `wp_rg_form_view` VALUES("42867", "10", "2016-11-15 09:46:51", "173.234.159.250", "14");
INSERT INTO `wp_rg_form_view` VALUES("42868", "3", "2016-11-15 10:02:34", "163.172.65.61", "36");
INSERT INTO `wp_rg_form_view` VALUES("42869", "10", "2016-11-15 10:02:34", "163.172.65.61", "24");
INSERT INTO `wp_rg_form_view` VALUES("42870", "13", "2016-11-15 10:25:23", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("42871", "3", "2016-11-15 11:25:46", "68.180.229.90", "43");
INSERT INTO `wp_rg_form_view` VALUES("42872", "10", "2016-11-15 11:25:46", "68.180.229.90", "28");
INSERT INTO `wp_rg_form_view` VALUES("42873", "3", "2016-11-15 12:26:35", "66.249.79.152", "37");
INSERT INTO `wp_rg_form_view` VALUES("42874", "10", "2016-11-15 12:26:35", "66.249.79.152", "27");
INSERT INTO `wp_rg_form_view` VALUES("42875", "1", "2016-11-15 12:37:04", "155.94.179.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("42876", "3", "2016-11-15 13:07:56", "66.249.79.148", "52");
INSERT INTO `wp_rg_form_view` VALUES("42877", "10", "2016-11-15 13:07:57", "66.249.79.148", "33");
INSERT INTO `wp_rg_form_view` VALUES("42878", "13", "2016-11-15 13:16:03", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("42879", "3", "2016-11-15 14:07:11", "66.249.79.152", "18");
INSERT INTO `wp_rg_form_view` VALUES("42880", "10", "2016-11-15 14:07:12", "66.249.79.152", "12");
INSERT INTO `wp_rg_form_view` VALUES("42881", "11", "2016-11-15 15:13:22", "68.180.229.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("42882", "3", "2016-11-15 15:13:23", "68.180.229.90", "176");
INSERT INTO `wp_rg_form_view` VALUES("42883", "10", "2016-11-15 15:13:23", "68.180.229.90", "117");
INSERT INTO `wp_rg_form_view` VALUES("42884", "8", "2016-11-15 15:23:28", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("42885", "1", "2016-11-15 15:33:32", "179.61.164.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("42886", "2", "2016-11-15 15:42:21", "45.55.206.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("42887", "3", "2016-11-15 16:28:09", "66.249.79.152", "37");
INSERT INTO `wp_rg_form_view` VALUES("42888", "10", "2016-11-15 16:28:09", "66.249.79.152", "25");
INSERT INTO `wp_rg_form_view` VALUES("42889", "13", "2016-11-15 16:42:12", "199.21.99.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("42890", "3", "2016-11-15 17:14:32", "199.21.99.202", "103");
INSERT INTO `wp_rg_form_view` VALUES("42891", "13", "2016-11-15 17:15:47", "46.119.127.117", "9");
INSERT INTO `wp_rg_form_view` VALUES("42892", "10", "2016-11-15 17:15:48", "46.119.127.117", "69");
INSERT INTO `wp_rg_form_view` VALUES("42893", "6", "2016-11-15 17:51:00", "192.243.55.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("42894", "3", "2016-11-15 18:00:54", "207.194.133.9", "80");
INSERT INTO `wp_rg_form_view` VALUES("42895", "10", "2016-11-15 18:00:54", "207.194.133.9", "52");
INSERT INTO `wp_rg_form_view` VALUES("42896", "13", "2016-11-15 18:47:39", "46.119.127.117", "5");
INSERT INTO `wp_rg_form_view` VALUES("42897", "13", "2016-11-15 18:47:39", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("42898", "3", "2016-11-15 19:01:30", "24.108.183.218", "54");
INSERT INTO `wp_rg_form_view` VALUES("42899", "10", "2016-11-15 19:01:30", "24.108.183.218", "36");
INSERT INTO `wp_rg_form_view` VALUES("42900", "3", "2016-11-15 20:08:29", "66.249.79.156", "61");
INSERT INTO `wp_rg_form_view` VALUES("42901", "10", "2016-11-15 20:08:30", "66.249.79.156", "40");
INSERT INTO `wp_rg_form_view` VALUES("42902", "2", "2016-11-15 20:58:27", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("42903", "3", "2016-11-15 21:07:56", "142.58.139.118", "104");
INSERT INTO `wp_rg_form_view` VALUES("42904", "3", "2016-11-15 21:07:56", "142.58.139.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("42905", "3", "2016-11-15 21:07:56", "142.58.139.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("42906", "3", "2016-11-15 21:07:56", "142.58.139.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("42907", "10", "2016-11-15 21:08:07", "142.58.139.118", "51");
INSERT INTO `wp_rg_form_view` VALUES("42908", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("42909", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("42910", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("42911", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("42912", "10", "2016-11-15 21:08:07", "142.58.139.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("42913", "3", "2016-11-15 22:00:39", "66.249.79.152", "147");
INSERT INTO `wp_rg_form_view` VALUES("42914", "10", "2016-11-15 22:00:40", "66.249.79.152", "96");
INSERT INTO `wp_rg_form_view` VALUES("42915", "13", "2016-11-15 22:30:39", "66.249.79.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("42916", "3", "2016-11-15 23:04:59", "192.243.55.130", "54");
INSERT INTO `wp_rg_form_view` VALUES("42917", "10", "2016-11-15 23:04:59", "192.243.55.130", "36");
INSERT INTO `wp_rg_form_view` VALUES("42918", "11", "2016-11-16 00:19:47", "202.46.50.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("42919", "3", "2016-11-16 00:19:48", "202.46.50.88", "55");
INSERT INTO `wp_rg_form_view` VALUES("42920", "10", "2016-11-16 00:19:48", "202.46.50.88", "36");
INSERT INTO `wp_rg_form_view` VALUES("42921", "3", "2016-11-16 01:00:24", "199.21.99.202", "105");
INSERT INTO `wp_rg_form_view` VALUES("42922", "10", "2016-11-16 01:00:24", "199.21.99.202", "69");
INSERT INTO `wp_rg_form_view` VALUES("42923", "13", "2016-11-16 01:48:19", "66.249.79.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("42924", "3", "2016-11-16 02:07:29", "163.172.66.31", "93");
INSERT INTO `wp_rg_form_view` VALUES("42925", "10", "2016-11-16 02:07:38", "163.172.66.31", "60");
INSERT INTO `wp_rg_form_view` VALUES("42926", "12", "2016-11-16 02:13:04", "66.249.79.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("42927", "10", "2016-11-16 03:00:43", "100.43.91.1", "368");
INSERT INTO `wp_rg_form_view` VALUES("42928", "3", "2016-11-16 03:00:44", "100.43.91.1", "585");
INSERT INTO `wp_rg_form_view` VALUES("42929", "9", "2016-11-16 03:06:44", "40.77.167.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("42930", "8", "2016-11-16 03:09:13", "207.46.13.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("42931", "11", "2016-11-16 03:48:55", "192.243.55.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("42932", "3", "2016-11-16 04:03:29", "192.243.55.134", "43");
INSERT INTO `wp_rg_form_view` VALUES("42933", "10", "2016-11-16 04:03:29", "192.243.55.134", "28");
INSERT INTO `wp_rg_form_view` VALUES("42934", "14", "2016-11-16 05:15:15", "179.61.168.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("42935", "3", "2016-11-16 05:15:19", "179.61.168.8", "61");
INSERT INTO `wp_rg_form_view` VALUES("42936", "10", "2016-11-16 05:15:19", "179.61.168.8", "43");
INSERT INTO `wp_rg_form_view` VALUES("42937", "10", "2016-11-16 06:22:32", "192.243.55.133", "44");
INSERT INTO `wp_rg_form_view` VALUES("42938", "3", "2016-11-16 06:22:32", "192.243.55.133", "63");
INSERT INTO `wp_rg_form_view` VALUES("42939", "13", "2016-11-16 07:00:38", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("42940", "3", "2016-11-16 07:00:38", "199.21.99.202", "49");
INSERT INTO `wp_rg_form_view` VALUES("42941", "10", "2016-11-16 07:00:38", "199.21.99.202", "32");
INSERT INTO `wp_rg_form_view` VALUES("42942", "14", "2016-11-16 07:42:29", "37.59.37.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("42943", "3", "2016-11-16 08:01:23", "163.172.66.113", "66");
INSERT INTO `wp_rg_form_view` VALUES("42944", "10", "2016-11-16 08:01:23", "163.172.66.113", "44");
INSERT INTO `wp_rg_form_view` VALUES("42945", "13", "2016-11-16 08:44:12", "66.249.79.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("42946", "3", "2016-11-16 09:02:34", "66.249.79.152", "63");
INSERT INTO `wp_rg_form_view` VALUES("42947", "10", "2016-11-16 09:02:35", "66.249.79.152", "40");
INSERT INTO `wp_rg_form_view` VALUES("42948", "3", "2016-11-16 10:11:10", "207.46.13.28", "42");
INSERT INTO `wp_rg_form_view` VALUES("42949", "10", "2016-11-16 10:11:11", "207.46.13.28", "28");
INSERT INTO `wp_rg_form_view` VALUES("42950", "13", "2016-11-16 10:17:26", "178.137.89.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("42951", "3", "2016-11-16 11:14:55", "66.249.79.156", "36");
INSERT INTO `wp_rg_form_view` VALUES("42952", "10", "2016-11-16 11:14:56", "66.249.79.156", "24");
INSERT INTO `wp_rg_form_view` VALUES("42953", "13", "2016-11-16 11:54:07", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("42954", "13", "2016-11-16 12:02:54", "46.118.155.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("42955", "13", "2016-11-16 12:02:54", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("42956", "3", "2016-11-16 12:02:54", "46.118.155.149", "77");
INSERT INTO `wp_rg_form_view` VALUES("42957", "3", "2016-11-16 12:02:54", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("42958", "10", "2016-11-16 12:02:54", "46.118.155.149", "51");
INSERT INTO `wp_rg_form_view` VALUES("42959", "10", "2016-11-16 12:02:54", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("42960", "3", "2016-11-16 13:00:54", "213.174.147.10", "87");
INSERT INTO `wp_rg_form_view` VALUES("42961", "10", "2016-11-16 13:00:54", "213.174.147.10", "56");
INSERT INTO `wp_rg_form_view` VALUES("42962", "14", "2016-11-16 13:56:48", "192.243.55.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("42963", "3", "2016-11-16 14:15:50", "66.249.79.156", "30");
INSERT INTO `wp_rg_form_view` VALUES("42964", "10", "2016-11-16 14:15:50", "66.249.79.156", "22");
INSERT INTO `wp_rg_form_view` VALUES("42965", "10", "2016-11-16 15:12:12", "66.249.79.156", "40");
INSERT INTO `wp_rg_form_view` VALUES("42966", "3", "2016-11-16 15:12:12", "66.249.79.156", "55");
INSERT INTO `wp_rg_form_view` VALUES("42967", "2", "2016-11-16 15:51:49", "40.77.167.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("42968", "10", "2016-11-16 16:00:42", "66.249.79.148", "44");
INSERT INTO `wp_rg_form_view` VALUES("42969", "3", "2016-11-16 16:00:42", "66.249.79.148", "63");
INSERT INTO `wp_rg_form_view` VALUES("42970", "10", "2016-11-16 17:01:20", "66.249.79.156", "57");
INSERT INTO `wp_rg_form_view` VALUES("42971", "3", "2016-11-16 17:01:21", "66.249.79.156", "84");
INSERT INTO `wp_rg_form_view` VALUES("42972", "13", "2016-11-16 17:49:39", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("42973", "8", "2016-11-16 18:02:18", "192.243.55.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("42974", "10", "2016-11-16 18:02:18", "192.243.55.133", "36");
INSERT INTO `wp_rg_form_view` VALUES("42975", "3", "2016-11-16 18:02:18", "192.243.55.133", "54");
INSERT INTO `wp_rg_form_view` VALUES("42976", "10", "2016-11-16 19:06:05", "192.243.55.133", "88");
INSERT INTO `wp_rg_form_view` VALUES("42977", "3", "2016-11-16 19:06:05", "192.243.55.133", "133");
INSERT INTO `wp_rg_form_view` VALUES("42978", "13", "2016-11-16 19:14:36", "134.249.66.185", "5");
INSERT INTO `wp_rg_form_view` VALUES("42979", "13", "2016-11-16 19:14:36", "134.249.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("42980", "10", "2016-11-16 20:08:26", "5.135.164.181", "16");
INSERT INTO `wp_rg_form_view` VALUES("42981", "3", "2016-11-16 20:08:26", "5.135.164.181", "24");
INSERT INTO `wp_rg_form_view` VALUES("42982", "3", "2016-11-16 21:22:12", "192.243.55.134", "87");
INSERT INTO `wp_rg_form_view` VALUES("42983", "10", "2016-11-16 21:22:15", "192.243.55.134", "56");
INSERT INTO `wp_rg_form_view` VALUES("42984", "13", "2016-11-16 21:27:30", "46.118.116.7", "3");
INSERT INTO `wp_rg_form_view` VALUES("42985", "14", "2016-11-16 21:48:55", "24.69.18.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("42986", "10", "2016-11-16 22:05:55", "163.172.66.81", "40");
INSERT INTO `wp_rg_form_view` VALUES("42987", "3", "2016-11-16 22:05:56", "163.172.66.81", "61");
INSERT INTO `wp_rg_form_view` VALUES("42988", "13", "2016-11-16 22:35:02", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("42989", "14", "2016-11-16 22:57:29", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("42990", "10", "2016-11-16 23:00:52", "68.180.229.90", "33");
INSERT INTO `wp_rg_form_view` VALUES("42991", "3", "2016-11-16 23:00:52", "68.180.229.90", "48");
INSERT INTO `wp_rg_form_view` VALUES("42992", "3", "2016-11-16 23:00:52", "68.180.229.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("42993", "3", "2016-11-17 00:03:10", "192.243.55.133", "79");
INSERT INTO `wp_rg_form_view` VALUES("42994", "10", "2016-11-17 00:03:11", "192.243.55.133", "40");
INSERT INTO `wp_rg_form_view` VALUES("42995", "10", "2016-11-17 01:16:53", "66.249.79.148", "33");
INSERT INTO `wp_rg_form_view` VALUES("42996", "3", "2016-11-17 01:16:56", "66.249.79.148", "53");
INSERT INTO `wp_rg_form_view` VALUES("42997", "10", "2016-11-17 02:10:22", "54.162.75.53", "44");
INSERT INTO `wp_rg_form_view` VALUES("42998", "3", "2016-11-17 02:10:23", "54.162.75.53", "66");
INSERT INTO `wp_rg_form_view` VALUES("42999", "2", "2016-11-17 02:10:37", "54.162.75.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("43000", "10", "2016-11-17 03:01:46", "66.249.79.152", "13");
INSERT INTO `wp_rg_form_view` VALUES("43001", "3", "2016-11-17 03:01:47", "66.249.79.152", "19");
INSERT INTO `wp_rg_form_view` VALUES("43002", "10", "2016-11-17 04:01:29", "24.244.32.171", "41");
INSERT INTO `wp_rg_form_view` VALUES("43003", "3", "2016-11-17 04:01:29", "24.244.32.171", "61");
INSERT INTO `wp_rg_form_view` VALUES("43004", "10", "2016-11-17 05:00:41", "24.68.17.97", "48");
INSERT INTO `wp_rg_form_view` VALUES("43005", "3", "2016-11-17 05:00:41", "24.68.17.97", "72");
INSERT INTO `wp_rg_form_view` VALUES("43006", "13", "2016-11-17 05:33:44", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("43007", "10", "2016-11-17 06:08:50", "66.249.79.156", "32");
INSERT INTO `wp_rg_form_view` VALUES("43008", "3", "2016-11-17 06:08:50", "66.249.79.156", "48");
INSERT INTO `wp_rg_form_view` VALUES("43009", "10", "2016-11-17 07:05:21", "207.46.13.28", "16");
INSERT INTO `wp_rg_form_view` VALUES("43010", "3", "2016-11-17 07:05:22", "207.46.13.28", "24");
INSERT INTO `wp_rg_form_view` VALUES("43011", "13", "2016-11-17 08:00:28", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("43012", "13", "2016-11-17 08:00:28", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("43013", "10", "2016-11-17 08:00:29", "46.118.155.149", "19");
INSERT INTO `wp_rg_form_view` VALUES("43014", "10", "2016-11-17 08:00:29", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("43015", "3", "2016-11-17 08:00:29", "46.118.155.149", "29");
INSERT INTO `wp_rg_form_view` VALUES("43016", "3", "2016-11-17 08:00:29", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("43017", "5", "2016-11-17 08:13:16", "68.180.229.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("43018", "13", "2016-11-17 09:09:18", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43019", "13", "2016-11-17 09:09:18", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43020", "13", "2016-11-17 09:09:18", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43021", "10", "2016-11-17 09:09:21", "46.118.116.7", "130");
INSERT INTO `wp_rg_form_view` VALUES("43022", "10", "2016-11-17 09:09:21", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43023", "10", "2016-11-17 09:09:21", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43024", "3", "2016-11-17 09:09:22", "46.118.116.7", "197");
INSERT INTO `wp_rg_form_view` VALUES("43025", "3", "2016-11-17 09:09:22", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43026", "3", "2016-11-17 09:09:22", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43027", "11", "2016-11-17 09:44:16", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("43028", "2", "2016-11-17 09:46:17", "70.35.196.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("43029", "13", "2016-11-17 10:08:34", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("43030", "10", "2016-11-17 10:08:34", "46.118.155.149", "32");
INSERT INTO `wp_rg_form_view` VALUES("43031", "3", "2016-11-17 10:08:34", "46.118.155.149", "48");
INSERT INTO `wp_rg_form_view` VALUES("43032", "10", "2016-11-17 11:11:54", "66.249.79.152", "44");
INSERT INTO `wp_rg_form_view` VALUES("43033", "3", "2016-11-17 11:11:54", "66.249.79.152", "66");
INSERT INTO `wp_rg_form_view` VALUES("43034", "5", "2016-11-17 11:15:59", "77.75.79.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("43035", "3", "2016-11-17 12:03:41", "66.249.79.152", "67");
INSERT INTO `wp_rg_form_view` VALUES("43036", "10", "2016-11-17 12:03:41", "66.249.79.152", "44");
INSERT INTO `wp_rg_form_view` VALUES("43037", "10", "2016-11-17 13:06:58", "66.249.79.152", "48");
INSERT INTO `wp_rg_form_view` VALUES("43038", "3", "2016-11-17 13:06:59", "66.249.79.152", "75");
INSERT INTO `wp_rg_form_view` VALUES("43039", "3", "2016-11-17 14:03:33", "68.180.229.90", "49");
INSERT INTO `wp_rg_form_view` VALUES("43040", "10", "2016-11-17 14:10:03", "66.249.79.152", "32");
INSERT INTO `wp_rg_form_view` VALUES("43041", "13", "2016-11-17 14:43:35", "46.119.127.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("43042", "13", "2016-11-17 15:25:05", "178.137.89.246", "10");
INSERT INTO `wp_rg_form_view` VALUES("43043", "13", "2016-11-17 15:25:05", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("43044", "10", "2016-11-17 15:25:06", "178.137.89.246", "75");
INSERT INTO `wp_rg_form_view` VALUES("43045", "10", "2016-11-17 15:25:06", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("43046", "3", "2016-11-17 15:25:06", "178.137.89.246", "113");
INSERT INTO `wp_rg_form_view` VALUES("43047", "3", "2016-11-17 15:25:06", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("43048", "10", "2016-11-17 16:04:43", "66.249.79.148", "32");
INSERT INTO `wp_rg_form_view` VALUES("43049", "3", "2016-11-17 16:04:43", "66.249.79.148", "51");
INSERT INTO `wp_rg_form_view` VALUES("43050", "5", "2016-11-17 17:22:50", "163.172.66.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("43051", "10", "2016-11-17 17:22:50", "163.172.66.125", "224");
INSERT INTO `wp_rg_form_view` VALUES("43052", "3", "2016-11-17 17:22:51", "163.172.66.125", "337");
INSERT INTO `wp_rg_form_view` VALUES("43053", "11", "2016-11-17 17:47:16", "192.210.203.166", "3");
INSERT INTO `wp_rg_form_view` VALUES("43054", "2", "2016-11-17 17:51:11", "74.221.210.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("43055", "10", "2016-11-17 18:41:58", "96.50.18.183", "58");
INSERT INTO `wp_rg_form_view` VALUES("43056", "10", "2016-11-17 18:41:58", "96.50.18.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("43057", "10", "2016-11-17 18:41:58", "96.50.18.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("43058", "3", "2016-11-17 18:42:00", "96.50.18.183", "88");
INSERT INTO `wp_rg_form_view` VALUES("43059", "3", "2016-11-17 18:42:00", "96.50.18.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("43060", "3", "2016-11-17 18:42:00", "96.50.18.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("43061", "2", "2016-11-17 18:58:03", "54.67.5.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("43062", "10", "2016-11-17 19:19:38", "184.71.25.94", "8");
INSERT INTO `wp_rg_form_view` VALUES("43063", "3", "2016-11-17 19:19:39", "184.71.25.94", "12");
INSERT INTO `wp_rg_form_view` VALUES("43064", "13", "2016-11-17 20:06:55", "178.137.89.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("43065", "10", "2016-11-17 20:06:55", "178.137.89.246", "32");
INSERT INTO `wp_rg_form_view` VALUES("43066", "3", "2016-11-17 20:06:55", "178.137.89.246", "51");
INSERT INTO `wp_rg_form_view` VALUES("43067", "10", "2016-11-17 21:00:39", "184.66.234.64", "36");
INSERT INTO `wp_rg_form_view` VALUES("43068", "3", "2016-11-17 21:00:39", "184.66.234.64", "56");
INSERT INTO `wp_rg_form_view` VALUES("43069", "14", "2016-11-17 21:33:03", "163.172.65.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("43070", "3", "2016-11-17 22:13:19", "66.249.79.148", "73");
INSERT INTO `wp_rg_form_view` VALUES("43071", "10", "2016-11-17 22:13:21", "66.249.79.148", "49");
INSERT INTO `wp_rg_form_view` VALUES("43072", "10", "2016-11-17 23:00:03", "66.249.79.156", "44");
INSERT INTO `wp_rg_form_view` VALUES("43073", "3", "2016-11-17 23:00:03", "66.249.79.156", "72");
INSERT INTO `wp_rg_form_view` VALUES("43074", "14", "2016-11-17 23:06:19", "68.180.229.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("43075", "10", "2016-11-18 00:10:29", "66.249.79.152", "8");
INSERT INTO `wp_rg_form_view` VALUES("43076", "3", "2016-11-18 00:10:29", "66.249.79.152", "12");
INSERT INTO `wp_rg_form_view` VALUES("43077", "13", "2016-11-18 01:08:14", "46.119.127.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("43078", "10", "2016-11-18 01:08:15", "46.119.127.117", "19");
INSERT INTO `wp_rg_form_view` VALUES("43079", "10", "2016-11-18 01:08:15", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("43080", "3", "2016-11-18 01:08:16", "46.119.127.117", "31");
INSERT INTO `wp_rg_form_view` VALUES("43081", "10", "2016-11-18 02:01:02", "70.67.125.186", "40");
INSERT INTO `wp_rg_form_view` VALUES("43082", "3", "2016-11-18 02:01:03", "70.67.125.186", "61");
INSERT INTO `wp_rg_form_view` VALUES("43083", "14", "2016-11-18 02:11:06", "70.67.125.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("43084", "10", "2016-11-18 03:05:38", "66.249.79.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("43085", "3", "2016-11-18 03:05:38", "66.249.79.156", "12");
INSERT INTO `wp_rg_form_view` VALUES("43086", "3", "2016-11-18 04:06:09", "66.249.79.156", "87");
INSERT INTO `wp_rg_form_view` VALUES("43087", "10", "2016-11-18 04:06:10", "66.249.79.156", "56");
INSERT INTO `wp_rg_form_view` VALUES("43088", "14", "2016-11-18 04:45:26", "191.101.103.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("43089", "10", "2016-11-18 05:16:10", "66.249.79.152", "20");
INSERT INTO `wp_rg_form_view` VALUES("43090", "3", "2016-11-18 05:16:10", "66.249.79.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("43091", "3", "2016-11-18 06:01:08", "5.9.123.116", "90");
INSERT INTO `wp_rg_form_view` VALUES("43092", "13", "2016-11-18 06:13:03", "134.249.66.185", "5");
INSERT INTO `wp_rg_form_view` VALUES("43093", "13", "2016-11-18 06:13:03", "134.249.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("43094", "10", "2016-11-18 06:13:03", "134.249.66.185", "55");
INSERT INTO `wp_rg_form_view` VALUES("43095", "10", "2016-11-18 06:13:03", "134.249.66.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("43096", "10", "2016-11-18 07:07:07", "207.46.13.54", "20");
INSERT INTO `wp_rg_form_view` VALUES("43097", "3", "2016-11-18 07:07:07", "207.46.13.54", "30");
INSERT INTO `wp_rg_form_view` VALUES("43098", "13", "2016-11-18 08:06:40", "178.137.89.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("43099", "13", "2016-11-18 08:06:40", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("43100", "10", "2016-11-18 08:06:40", "178.137.89.246", "11");
INSERT INTO `wp_rg_form_view` VALUES("43101", "10", "2016-11-18 08:06:40", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("43102", "3", "2016-11-18 08:06:41", "178.137.89.246", "17");
INSERT INTO `wp_rg_form_view` VALUES("43103", "3", "2016-11-18 08:06:41", "178.137.89.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("43104", "10", "2016-11-18 09:34:41", "77.75.79.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("43105", "3", "2016-11-18 09:34:46", "77.75.79.11", "12");
INSERT INTO `wp_rg_form_view` VALUES("43106", "14", "2016-11-18 10:41:54", "179.61.161.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("43107", "10", "2016-11-18 10:41:55", "179.61.161.28", "4");
INSERT INTO `wp_rg_form_view` VALUES("43108", "3", "2016-11-18 10:41:56", "179.61.161.28", "6");
INSERT INTO `wp_rg_form_view` VALUES("43109", "10", "2016-11-18 11:01:08", "202.46.53.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("43110", "3", "2016-11-18 11:01:08", "202.46.53.164", "19");
INSERT INTO `wp_rg_form_view` VALUES("43111", "10", "2016-11-18 12:29:16", "207.46.13.166", "16");
INSERT INTO `wp_rg_form_view` VALUES("43112", "3", "2016-11-18 12:29:17", "207.46.13.166", "24");
INSERT INTO `wp_rg_form_view` VALUES("43113", "13", "2016-11-18 12:46:08", "134.249.66.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("43114", "10", "2016-11-18 13:04:41", "163.172.64.180", "20");
INSERT INTO `wp_rg_form_view` VALUES("43115", "3", "2016-11-18 13:04:42", "163.172.64.180", "30");
INSERT INTO `wp_rg_form_view` VALUES("43116", "10", "2016-11-18 14:58:36", "199.58.86.211", "8");
INSERT INTO `wp_rg_form_view` VALUES("43117", "3", "2016-11-18 14:58:37", "199.58.86.211", "12");
INSERT INTO `wp_rg_form_view` VALUES("43118", "3", "2016-11-18 15:13:19", "66.249.79.148", "13");
INSERT INTO `wp_rg_form_view` VALUES("43119", "10", "2016-11-18 15:13:19", "66.249.79.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("43120", "10", "2016-11-18 16:04:20", "120.52.73.97", "12");
INSERT INTO `wp_rg_form_view` VALUES("43121", "3", "2016-11-18 16:04:21", "120.52.73.97", "19");
INSERT INTO `wp_rg_form_view` VALUES("43122", "10", "2016-11-18 17:04:33", "202.46.53.145", "16");
INSERT INTO `wp_rg_form_view` VALUES("43123", "3", "2016-11-18 17:04:35", "202.46.53.145", "25");
INSERT INTO `wp_rg_form_view` VALUES("43124", "14", "2016-11-18 17:51:49", "191.103.3.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("43125", "10", "2016-11-18 18:23:52", "24.68.6.182", "24");
INSERT INTO `wp_rg_form_view` VALUES("43126", "3", "2016-11-18 18:23:54", "24.68.6.182", "37");
INSERT INTO `wp_rg_form_view` VALUES("43127", "10", "2016-11-18 19:05:34", "207.46.13.28", "33");
INSERT INTO `wp_rg_form_view` VALUES("43128", "3", "2016-11-18 19:05:36", "207.46.13.28", "58");
INSERT INTO `wp_rg_form_view` VALUES("43129", "13", "2016-11-18 19:57:26", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43130", "13", "2016-11-18 19:57:26", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43131", "13", "2016-11-18 19:57:26", "46.118.116.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("43132", "10", "2016-11-18 20:02:57", "140.184.137.21", "12");
INSERT INTO `wp_rg_form_view` VALUES("43133", "3", "2016-11-18 20:02:57", "140.184.137.21", "18");
INSERT INTO `wp_rg_form_view` VALUES("43134", "10", "2016-11-18 21:00:06", "163.172.65.229", "57");
INSERT INTO `wp_rg_form_view` VALUES("43135", "3", "2016-11-18 21:00:08", "163.172.65.229", "86");
INSERT INTO `wp_rg_form_view` VALUES("43136", "3", "2016-11-18 22:07:06", "68.180.229.90", "13");
INSERT INTO `wp_rg_form_view` VALUES("43137", "10", "2016-11-18 22:07:06", "68.180.229.90", "8");
INSERT INTO `wp_rg_form_view` VALUES("43138", "10", "2016-11-18 23:21:28", "59.75.128.205", "36");
INSERT INTO `wp_rg_form_view` VALUES("43139", "3", "2016-11-18 23:21:29", "59.75.128.205", "53");
INSERT INTO `wp_rg_form_view` VALUES("43140", "13", "2016-11-18 23:56:22", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("43141", "13", "2016-11-19 00:02:10", "46.118.116.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("43142", "10", "2016-11-19 00:02:10", "46.118.116.7", "108");
INSERT INTO `wp_rg_form_view` VALUES("43143", "3", "2016-11-19 00:02:10", "46.118.116.7", "163");
INSERT INTO `wp_rg_form_view` VALUES("43144", "11", "2016-11-19 00:35:43", "45.55.69.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("43145", "2", "2016-11-19 00:35:44", "45.55.69.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("43146", "3", "2016-11-19 01:30:19", "68.180.229.90", "25");
INSERT INTO `wp_rg_form_view` VALUES("43147", "10", "2016-11-19 01:30:19", "68.180.229.90", "16");
INSERT INTO `wp_rg_form_view` VALUES("43148", "13", "2016-11-19 01:52:07", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("43149", "10", "2016-11-19 02:00:02", "207.46.13.54", "24");
INSERT INTO `wp_rg_form_view` VALUES("43150", "3", "2016-11-19 02:00:03", "207.46.13.54", "37");
INSERT INTO `wp_rg_form_view` VALUES("43151", "10", "2016-11-19 03:13:19", "136.243.36.94", "147");
INSERT INTO `wp_rg_form_view` VALUES("43152", "3", "2016-11-19 03:13:49", "136.243.36.94", "232");
INSERT INTO `wp_rg_form_view` VALUES("43153", "6", "2016-11-19 03:15:45", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("43154", "9", "2016-11-19 03:16:27", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("43155", "8", "2016-11-19 03:30:08", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("43156", "14", "2016-11-19 03:49:58", "101.255.64.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("43157", "10", "2016-11-19 04:09:22", "68.180.229.90", "24");
INSERT INTO `wp_rg_form_view` VALUES("43158", "3", "2016-11-19 04:09:22", "68.180.229.90", "36");
INSERT INTO `wp_rg_form_view` VALUES("43159", "13", "2016-11-19 04:18:51", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("43160", "5", "2016-11-19 04:23:35", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("43161", "3", "2016-11-19 05:08:53", "40.77.167.104", "44");
INSERT INTO `wp_rg_form_view` VALUES("43162", "10", "2016-11-19 05:08:58", "40.77.167.104", "28");
INSERT INTO `wp_rg_form_view` VALUES("43163", "3", "2016-11-19 06:16:36", "66.249.79.156", "424");
INSERT INTO `wp_rg_form_view` VALUES("43164", "10", "2016-11-19 06:16:36", "66.249.79.156", "268");
INSERT INTO `wp_rg_form_view` VALUES("43165", "11", "2016-11-19 06:25:41", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("43166", "2", "2016-11-19 06:25:46", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("43167", "14", "2016-11-19 06:28:04", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("43168", "10", "2016-11-19 07:07:35", "163.172.65.234", "13");
INSERT INTO `wp_rg_form_view` VALUES("43169", "3", "2016-11-19 07:07:45", "163.172.65.234", "19");
INSERT INTO `wp_rg_form_view` VALUES("43170", "10", "2016-11-19 09:23:43", "163.172.66.7", "13");
INSERT INTO `wp_rg_form_view` VALUES("43171", "3", "2016-11-19 09:23:46", "163.172.66.7", "18");
INSERT INTO `wp_rg_form_view` VALUES("43172", "10", "2016-11-19 10:31:55", "218.104.228.180", "21");
INSERT INTO `wp_rg_form_view` VALUES("43173", "3", "2016-11-19 10:31:56", "218.104.228.180", "30");
INSERT INTO `wp_rg_form_view` VALUES("43174", "10", "2016-11-19 11:19:26", "163.172.65.69", "20");
INSERT INTO `wp_rg_form_view` VALUES("43175", "3", "2016-11-19 11:19:27", "163.172.65.69", "25");
INSERT INTO `wp_rg_form_view` VALUES("43176", "13", "2016-11-19 12:08:54", "46.119.127.117", "8");
INSERT INTO `wp_rg_form_view` VALUES("43177", "13", "2016-11-19 12:08:54", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("43178", "10", "2016-11-19 12:08:55", "46.119.127.117", "40");
INSERT INTO `wp_rg_form_view` VALUES("43179", "10", "2016-11-19 12:08:55", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("43180", "3", "2016-11-19 12:08:55", "46.119.127.117", "60");
INSERT INTO `wp_rg_form_view` VALUES("43181", "10", "2016-11-19 13:20:38", "163.172.65.119", "44");
INSERT INTO `wp_rg_form_view` VALUES("43182", "3", "2016-11-19 13:20:38", "163.172.65.119", "66");
INSERT INTO `wp_rg_form_view` VALUES("43183", "13", "2016-11-19 13:57:57", "134.249.66.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("43184", "14", "2016-11-19 14:07:37", "198.98.96.203", "2");
INSERT INTO `wp_rg_form_view` VALUES("43185", "10", "2016-11-19 14:07:37", "198.98.96.203", "28");
INSERT INTO `wp_rg_form_view` VALUES("43186", "3", "2016-11-19 14:07:37", "198.98.96.203", "43");
INSERT INTO `wp_rg_form_view` VALUES("43187", "10", "2016-11-19 15:21:59", "66.249.79.156", "40");
INSERT INTO `wp_rg_form_view` VALUES("43188", "3", "2016-11-19 15:21:59", "66.249.79.156", "60");
INSERT INTO `wp_rg_form_view` VALUES("43189", "13", "2016-11-19 15:22:44", "46.118.116.7", "3");
INSERT INTO `wp_rg_form_view` VALUES("43190", "12", "2016-11-19 15:22:45", "68.180.229.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("43191", "10", "2016-11-19 16:11:34", "66.102.6.93", "288");
INSERT INTO `wp_rg_form_view` VALUES("43192", "3", "2016-11-19 16:11:35", "66.102.6.93", "444");
INSERT INTO `wp_rg_form_view` VALUES("43193", "9", "2016-11-19 16:30:39", "207.46.13.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("43194", "8", "2016-11-19 16:31:45", "207.46.13.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("43195", "13", "2016-11-19 16:31:48", "207.46.13.54", "4");
INSERT INTO `wp_rg_form_view` VALUES("43196", "14", "2016-11-19 17:02:15", "202.46.53.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("43197", "10", "2016-11-19 17:02:15", "202.46.53.178", "45");
INSERT INTO `wp_rg_form_view` VALUES("43198", "3", "2016-11-19 17:02:16", "202.46.53.178", "68");
INSERT INTO `wp_rg_form_view` VALUES("43199", "10", "2016-11-19 18:20:33", "5.255.250.72", "115");
INSERT INTO `wp_rg_form_view` VALUES("43200", "3", "2016-11-19 18:20:33", "5.255.250.72", "175");
INSERT INTO `wp_rg_form_view` VALUES("43201", "9", "2016-11-19 18:25:04", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("43202", "12", "2016-11-19 18:26:52", "40.77.167.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("43203", "3", "2016-11-19 19:00:36", "66.249.79.152", "122");
INSERT INTO `wp_rg_form_view` VALUES("43204", "10", "2016-11-19 19:00:37", "66.249.79.152", "80");
INSERT INTO `wp_rg_form_view` VALUES("43205", "13", "2016-11-19 19:20:37", "40.77.167.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("43206", "10", "2016-11-19 20:44:22", "40.77.167.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("43207", "3", "2016-11-19 20:44:26", "40.77.167.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("43208", "10", "2016-11-19 21:12:16", "163.172.65.199", "13");
INSERT INTO `wp_rg_form_view` VALUES("43209", "3", "2016-11-19 21:12:18", "163.172.65.199", "18");
INSERT INTO `wp_rg_form_view` VALUES("43210", "13", "2016-11-19 22:24:48", "46.119.127.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("43211", "13", "2016-11-19 22:24:48", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("43212", "10", "2016-11-19 22:24:49", "46.119.127.117", "26");
INSERT INTO `wp_rg_form_view` VALUES("43213", "10", "2016-11-19 22:24:49", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("43214", "10", "2016-11-19 22:24:49", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("43215", "3", "2016-11-19 22:24:50", "46.119.127.117", "41");
INSERT INTO `wp_rg_form_view` VALUES("43216", "3", "2016-11-19 22:24:50", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("43217", "3", "2016-11-19 22:24:50", "46.119.127.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("43218", "6", "2016-11-19 22:35:20", "202.46.52.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("43219", "14", "2016-11-19 23:06:17", "165.231.103.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("43220", "10", "2016-11-19 23:06:17", "165.231.103.135", "20");
INSERT INTO `wp_rg_form_view` VALUES("43221", "3", "2016-11-19 23:06:18", "165.231.103.135", "31");
INSERT INTO `wp_rg_form_view` VALUES("43222", "10", "2016-11-20 00:05:35", "68.180.229.90", "30");
INSERT INTO `wp_rg_form_view` VALUES("43223", "3", "2016-11-20 00:05:36", "68.180.229.90", "60");
INSERT INTO `wp_rg_form_view` VALUES("43224", "2", "2016-11-20 00:28:11", "163.172.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("43225", "13", "2016-11-20 00:43:28", "46.118.155.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("43226", "13", "2016-11-20 01:20:28", "178.137.89.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("43227", "10", "2016-11-20 01:20:29", "178.137.89.246", "9");
INSERT INTO `wp_rg_form_view` VALUES("43228", "3", "2016-11-20 01:20:29", "178.137.89.246", "21");
INSERT INTO `wp_rg_form_view` VALUES("43229", "3", "2016-11-20 02:30:58", "163.172.65.185", "36");
INSERT INTO `wp_rg_form_view` VALUES("43230", "10", "2016-11-20 02:30:58", "163.172.65.185", "17");
INSERT INTO `wp_rg_form_view` VALUES("43231", "14", "2016-11-20 03:28:00", "104.129.15.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("43232", "10", "2016-11-20 03:28:00", "104.129.15.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("43233", "3", "2016-11-20 03:28:00", "104.129.15.168", "7");
INSERT INTO `wp_rg_form_view` VALUES("43234", "13", "2016-11-20 04:21:28", "178.137.89.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("43235", "10", "2016-11-20 04:21:29", "178.137.89.246", "12");
INSERT INTO `wp_rg_form_view` VALUES("43236", "3", "2016-11-20 04:21:29", "178.137.89.246", "28");
INSERT INTO `wp_rg_form_view` VALUES("43237", "3", "2016-11-20 05:12:39", "163.172.66.150", "34");
INSERT INTO `wp_rg_form_view` VALUES("43238", "10", "2016-11-20 05:12:40", "163.172.66.150", "13");
INSERT INTO `wp_rg_form_view` VALUES("43239", "10", "2016-11-20 07:41:27", "68.180.229.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("43240", "3", "2016-11-20 07:41:29", "68.180.229.90", "14");
INSERT INTO `wp_rg_form_view` VALUES("43241", "10", "2016-11-20 08:28:07", "120.25.105.45", "21");
INSERT INTO `wp_rg_form_view` VALUES("43242", "3", "2016-11-20 08:28:08", "120.25.105.45", "50");
INSERT INTO `wp_rg_form_view` VALUES("43243", "10", "2016-11-20 09:37:35", "68.180.229.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("43244", "3", "2016-11-20 09:37:36", "68.180.229.90", "22");
INSERT INTO `wp_rg_form_view` VALUES("43245", "10", "2016-11-20 10:15:01", "68.180.229.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("43246", "3", "2016-11-20 10:15:03", "68.180.229.90", "21");
INSERT INTO `wp_rg_form_view` VALUES("43247", "14", "2016-11-20 10:39:28", "104.129.15.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("43248", "10", "2016-11-20 11:11:05", "188.213.136.166", "12");
INSERT INTO `wp_rg_form_view` VALUES("43249", "3", "2016-11-20 11:11:05", "188.213.136.166", "22");
INSERT INTO `wp_rg_form_view` VALUES("43250", "10", "2016-11-20 12:13:34", "163.172.65.21", "15");
INSERT INTO `wp_rg_form_view` VALUES("43251", "3", "2016-11-20 12:13:35", "163.172.65.21", "35");
INSERT INTO `wp_rg_form_view` VALUES("43252", "13", "2016-11-20 12:17:08", "46.118.116.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("43253", "10", "2016-11-20 13:06:13", "68.180.229.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("43254", "3", "2016-11-20 13:06:13", "68.180.229.90", "21");
INSERT INTO `wp_rg_form_view` VALUES("43255", "12", "2016-11-20 13:44:04", "157.55.39.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("43256", "10", "2016-11-20 14:44:22", "68.180.229.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("43257", "3", "2016-11-20 14:44:22", "68.180.229.90", "7");
INSERT INTO `wp_rg_form_view` VALUES("43258", "10", "2016-11-20 15:06:35", "202.46.50.154", "9");
INSERT INTO `wp_rg_form_view` VALUES("43259", "3", "2016-11-20 15:06:35", "202.46.50.154", "21");
INSERT INTO `wp_rg_form_view` VALUES("43260", "3", "2016-11-20 16:05:04", "68.180.229.90", "46");
INSERT INTO `wp_rg_form_view` VALUES("43261", "10", "2016-11-20 16:05:05", "68.180.229.90", "18");
INSERT INTO `wp_rg_form_view` VALUES("43262", "13", "2016-11-20 16:24:36", "46.118.116.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("43263", "13", "2016-11-20 17:39:56", "46.118.155.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("43264", "10", "2016-11-20 17:39:58", "46.118.155.149", "8");
INSERT INTO `wp_rg_form_view` VALUES("43265", "10", "2016-11-20 17:39:58", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("43266", "3", "2016-11-20 17:39:58", "46.118.155.149", "20");
INSERT INTO `wp_rg_form_view` VALUES("43267", "3", "2016-11-20 17:39:58", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("43268", "10", "2016-11-20 18:30:24", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("43269", "3", "2016-11-20 18:30:24", "66.249.79.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("43270", "10", "2016-11-20 19:06:52", "77.75.76.170", "9");
INSERT INTO `wp_rg_form_view` VALUES("43271", "3", "2016-11-20 19:06:52", "77.75.76.170", "21");
INSERT INTO `wp_rg_form_view` VALUES("43272", "13", "2016-11-20 19:20:26", "46.118.155.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("43273", "14", "2016-11-20 19:24:01", "212.83.175.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43274", "10", "2016-11-20 20:17:17", "104.154.65.11", "6");
INSERT INTO `wp_rg_form_view` VALUES("43275", "3", "2016-11-20 20:17:19", "104.154.65.11", "14");
INSERT INTO `wp_rg_form_view` VALUES("43276", "10", "2016-11-20 21:46:39", "68.180.229.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("43277", "3", "2016-11-20 21:46:41", "68.180.229.90", "21");
INSERT INTO `wp_rg_form_view` VALUES("43278", "10", "2016-11-20 22:17:03", "66.249.79.148", "15");
INSERT INTO `wp_rg_form_view` VALUES("43279", "3", "2016-11-20 22:17:03", "66.249.79.148", "36");
INSERT INTO `wp_rg_form_view` VALUES("43280", "10", "2016-11-20 23:14:22", "77.75.79.72", "21");
INSERT INTO `wp_rg_form_view` VALUES("43281", "3", "2016-11-20 23:14:23", "77.75.79.72", "51");
INSERT INTO `wp_rg_form_view` VALUES("43282", "10", "2016-11-21 00:45:28", "202.46.51.119", "10");
INSERT INTO `wp_rg_form_view` VALUES("43283", "3", "2016-11-21 00:45:30", "202.46.51.119", "21");
INSERT INTO `wp_rg_form_view` VALUES("43284", "10", "2016-11-21 01:13:40", "68.180.229.90", "21");
INSERT INTO `wp_rg_form_view` VALUES("43285", "3", "2016-11-21 01:13:41", "68.180.229.90", "51");
INSERT INTO `wp_rg_form_view` VALUES("43286", "3", "2016-11-21 02:48:27", "68.180.229.90", "8");
INSERT INTO `wp_rg_form_view` VALUES("43287", "10", "2016-11-21 02:48:27", "68.180.229.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("43288", "3", "2016-11-21 03:17:19", "202.46.48.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("43289", "10", "2016-11-21 03:17:19", "202.46.48.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("43290", "10", "2016-11-21 04:51:42", "77.75.76.171", "3");
INSERT INTO `wp_rg_form_view` VALUES("43291", "3", "2016-11-21 04:51:44", "77.75.76.171", "7");
INSERT INTO `wp_rg_form_view` VALUES("43292", "10", "2016-11-21 05:41:09", "66.249.79.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("43293", "3", "2016-11-21 05:41:10", "66.249.79.156", "7");
INSERT INTO `wp_rg_form_view` VALUES("43294", "10", "2016-11-21 06:02:26", "77.75.79.72", "15");
INSERT INTO `wp_rg_form_view` VALUES("43295", "3", "2016-11-21 06:02:26", "77.75.79.72", "35");
INSERT INTO `wp_rg_form_view` VALUES("43296", "10", "2016-11-21 07:04:24", "77.75.76.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("43297", "3", "2016-11-21 07:04:34", "77.75.76.165", "15");
INSERT INTO `wp_rg_form_view` VALUES("43298", "10", "2016-11-21 08:15:58", "77.75.76.171", "6");
INSERT INTO `wp_rg_form_view` VALUES("43299", "3", "2016-11-21 08:16:00", "77.75.76.171", "14");
INSERT INTO `wp_rg_form_view` VALUES("43300", "10", "2016-11-21 09:40:56", "66.249.79.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("43301", "3", "2016-11-21 09:40:58", "66.249.79.152", "7");
INSERT INTO `wp_rg_form_view` VALUES("43302", "10", "2016-11-21 10:33:03", "199.16.157.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("43303", "3", "2016-11-21 10:33:04", "199.16.157.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("43304", "3", "2016-11-21 11:59:38", "40.77.167.50", "8");
INSERT INTO `wp_rg_form_view` VALUES("43305", "10", "2016-11-21 11:59:40", "40.77.167.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("43306", "3", "2016-11-21 12:05:49", "157.55.39.249", "78");
INSERT INTO `wp_rg_form_view` VALUES("43307", "10", "2016-11-21 12:05:49", "157.55.39.249", "33");
INSERT INTO `wp_rg_form_view` VALUES("43308", "9", "2016-11-21 12:11:27", "157.55.39.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("43309", "10", "2016-11-21 13:09:42", "157.55.39.249", "345");
INSERT INTO `wp_rg_form_view` VALUES("43310", "3", "2016-11-21 13:09:42", "157.55.39.249", "1308");
INSERT INTO `wp_rg_form_view` VALUES("43311", "2", "2016-11-21 13:42:57", "209.190.113.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("43312", "11", "2016-11-21 13:42:58", "209.190.113.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("43313", "14", "2016-11-21 13:44:17", "209.190.113.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("43314", "5", "2016-11-21 13:58:28", "207.46.13.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("43315", "10", "2016-11-21 14:17:26", "108.180.150.216", "9");
INSERT INTO `wp_rg_form_view` VALUES("43316", "3", "2016-11-21 14:17:27", "108.180.150.216", "22");
INSERT INTO `wp_rg_form_view` VALUES("43317", "10", "2016-11-21 15:04:21", "163.172.65.47", "9");
INSERT INTO `wp_rg_form_view` VALUES("43318", "3", "2016-11-21 15:04:21", "163.172.65.47", "22");
INSERT INTO `wp_rg_form_view` VALUES("43319", "10", "2016-11-21 16:16:29", "40.77.167.27", "24");
INSERT INTO `wp_rg_form_view` VALUES("43320", "3", "2016-11-21 16:16:30", "40.77.167.27", "58");
INSERT INTO `wp_rg_form_view` VALUES("43321", "14", "2016-11-21 17:02:20", "37.139.9.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("43322", "10", "2016-11-21 17:02:23", "37.139.9.11", "52");
INSERT INTO `wp_rg_form_view` VALUES("43323", "3", "2016-11-21 17:02:23", "37.139.9.11", "121");
INSERT INTO `wp_rg_form_view` VALUES("43324", "13", "2016-11-21 17:24:33", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43325", "10", "2016-11-21 18:09:21", "68.180.229.90", "24");
INSERT INTO `wp_rg_form_view` VALUES("43326", "3", "2016-11-21 18:09:21", "68.180.229.90", "56");
INSERT INTO `wp_rg_form_view` VALUES("43327", "13", "2016-11-21 19:04:51", "207.46.13.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("43328", "10", "2016-11-21 19:04:52", "207.46.13.60", "36");
INSERT INTO `wp_rg_form_view` VALUES("43329", "3", "2016-11-21 19:04:52", "207.46.13.60", "87");
INSERT INTO `wp_rg_form_view` VALUES("43330", "10", "2016-11-21 20:09:27", "157.208.128.5", "18");
INSERT INTO `wp_rg_form_view` VALUES("43331", "3", "2016-11-21 20:09:27", "157.208.128.5", "43");
INSERT INTO `wp_rg_form_view` VALUES("43332", "6", "2016-11-21 20:18:24", "88.99.27.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("43333", "13", "2016-11-21 20:54:25", "46.118.115.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("43334", "13", "2016-11-21 20:54:25", "46.118.115.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("43335", "3", "2016-11-21 21:08:02", "40.77.167.27", "94");
INSERT INTO `wp_rg_form_view` VALUES("43336", "10", "2016-11-21 21:08:02", "40.77.167.27", "39");
INSERT INTO `wp_rg_form_view` VALUES("43337", "13", "2016-11-21 21:17:27", "46.118.119.54", "8");
INSERT INTO `wp_rg_form_view` VALUES("43338", "13", "2016-11-21 21:17:27", "46.118.119.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("43339", "3", "2016-11-21 22:07:30", "40.77.167.50", "22");
INSERT INTO `wp_rg_form_view` VALUES("43340", "10", "2016-11-21 22:07:30", "40.77.167.50", "9");
INSERT INTO `wp_rg_form_view` VALUES("43341", "2", "2016-11-21 23:08:27", "68.180.229.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("43342", "10", "2016-11-21 23:08:27", "68.180.229.90", "27");
INSERT INTO `wp_rg_form_view` VALUES("43343", "3", "2016-11-21 23:08:27", "68.180.229.90", "68");
INSERT INTO `wp_rg_form_view` VALUES("43344", "14", "2016-11-21 23:33:06", "184.71.13.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("43345", "3", "2016-11-22 00:04:03", "163.172.64.187", "72");
INSERT INTO `wp_rg_form_view` VALUES("43346", "10", "2016-11-22 00:04:04", "163.172.64.187", "30");
INSERT INTO `wp_rg_form_view` VALUES("43347", "13", "2016-11-22 00:38:18", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43348", "8", "2016-11-22 00:41:36", "157.55.39.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("43349", "10", "2016-11-22 01:07:53", "5.9.94.207", "6");
INSERT INTO `wp_rg_form_view` VALUES("43350", "3", "2016-11-22 01:07:53", "5.9.94.207", "14");
INSERT INTO `wp_rg_form_view` VALUES("43351", "10", "2016-11-22 02:03:51", "184.151.231.175", "47");
INSERT INTO `wp_rg_form_view` VALUES("43352", "3", "2016-11-22 02:03:51", "184.151.231.175", "105");
INSERT INTO `wp_rg_form_view` VALUES("43353", "13", "2016-11-22 02:52:09", "46.118.115.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("43354", "10", "2016-11-22 03:12:44", "40.77.167.50", "58");
INSERT INTO `wp_rg_form_view` VALUES("43355", "3", "2016-11-22 03:12:44", "40.77.167.50", "134");
INSERT INTO `wp_rg_form_view` VALUES("43356", "13", "2016-11-22 03:39:53", "46.118.119.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("43357", "10", "2016-11-22 04:04:36", "157.55.39.39", "18");
INSERT INTO `wp_rg_form_view` VALUES("43358", "3", "2016-11-22 04:04:36", "157.55.39.39", "40");
INSERT INTO `wp_rg_form_view` VALUES("43359", "10", "2016-11-22 05:08:01", "157.55.39.249", "336");
INSERT INTO `wp_rg_form_view` VALUES("43360", "3", "2016-11-22 05:08:01", "157.55.39.249", "833");
INSERT INTO `wp_rg_form_view` VALUES("43361", "13", "2016-11-22 05:10:47", "178.137.90.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("43362", "11", "2016-11-22 05:28:51", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("43363", "2", "2016-11-22 05:29:04", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("43364", "14", "2016-11-22 05:33:55", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("43365", "10", "2016-11-22 06:01:04", "5.9.98.130", "447");
INSERT INTO `wp_rg_form_view` VALUES("43366", "3", "2016-11-22 06:01:05", "5.9.98.130", "1089");
INSERT INTO `wp_rg_form_view` VALUES("43367", "8", "2016-11-22 06:02:08", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("43368", "9", "2016-11-22 06:02:31", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("43369", "6", "2016-11-22 06:04:34", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("43370", "10", "2016-11-22 07:00:18", "5.9.98.130", "438");
INSERT INTO `wp_rg_form_view` VALUES("43371", "3", "2016-11-22 07:00:19", "5.9.98.130", "1184");
INSERT INTO `wp_rg_form_view` VALUES("43372", "10", "2016-11-22 08:00:04", "5.9.98.130", "750");
INSERT INTO `wp_rg_form_view` VALUES("43373", "3", "2016-11-22 08:00:04", "5.9.98.130", "2003");
INSERT INTO `wp_rg_form_view` VALUES("43374", "10", "2016-11-22 09:48:22", "5.9.98.130", "165");
INSERT INTO `wp_rg_form_view` VALUES("43375", "3", "2016-11-22 09:48:24", "5.9.98.130", "386");
INSERT INTO `wp_rg_form_view` VALUES("43376", "10", "2016-11-22 10:00:00", "5.9.98.130", "933");
INSERT INTO `wp_rg_form_view` VALUES("43377", "3", "2016-11-22 10:00:00", "5.9.98.130", "1778");
INSERT INTO `wp_rg_form_view` VALUES("43378", "11", "2016-11-22 10:45:22", "163.172.65.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("43379", "3", "2016-11-22 11:00:05", "5.9.98.130", "2329");
INSERT INTO `wp_rg_form_view` VALUES("43380", "10", "2016-11-22 11:00:06", "5.9.98.130", "618");
INSERT INTO `wp_rg_form_view` VALUES("43381", "13", "2016-11-22 11:48:56", "46.119.121.206", "4");
INSERT INTO `wp_rg_form_view` VALUES("43382", "10", "2016-11-22 12:19:04", "68.180.229.90", "12");
INSERT INTO `wp_rg_form_view` VALUES("43383", "3", "2016-11-22 12:19:05", "68.180.229.90", "29");
INSERT INTO `wp_rg_form_view` VALUES("43384", "3", "2016-11-22 13:09:22", "157.55.39.39", "1595");
INSERT INTO `wp_rg_form_view` VALUES("43385", "10", "2016-11-22 13:09:22", "157.55.39.39", "690");
INSERT INTO `wp_rg_form_view` VALUES("43386", "10", "2016-11-22 14:00:01", "5.9.98.130", "1234");
INSERT INTO `wp_rg_form_view` VALUES("43387", "3", "2016-11-22 14:00:02", "5.9.98.130", "2362");
INSERT INTO `wp_rg_form_view` VALUES("43388", "14", "2016-11-22 14:07:06", "216.126.100.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("43389", "10", "2016-11-22 15:00:15", "5.9.98.130", "732");
INSERT INTO `wp_rg_form_view` VALUES("43390", "3", "2016-11-22 15:00:17", "5.9.98.130", "2473");
INSERT INTO `wp_rg_form_view` VALUES("43391", "14", "2016-11-22 15:14:30", "104.129.15.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("43392", "11", "2016-11-22 15:44:36", "68.180.229.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("43393", "3", "2016-11-22 16:00:13", "5.9.98.130", "2319");
INSERT INTO `wp_rg_form_view` VALUES("43394", "10", "2016-11-22 16:00:13", "5.9.98.130", "684");
INSERT INTO `wp_rg_form_view` VALUES("43395", "10", "2016-11-22 17:00:07", "5.9.98.130", "141");
INSERT INTO `wp_rg_form_view` VALUES("43396", "3", "2016-11-22 17:00:07", "5.9.98.130", "330");
INSERT INTO `wp_rg_form_view` VALUES("43397", "13", "2016-11-22 17:27:41", "46.118.154.190", "5");
INSERT INTO `wp_rg_form_view` VALUES("43398", "9", "2016-11-22 18:00:27", "40.77.167.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("43399", "10", "2016-11-22 18:00:27", "40.77.167.50", "45");
INSERT INTO `wp_rg_form_view` VALUES("43400", "3", "2016-11-22 18:00:27", "40.77.167.50", "106");
INSERT INTO `wp_rg_form_view` VALUES("43401", "2", "2016-11-22 18:42:55", "194.187.170.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("43402", "14", "2016-11-22 18:54:43", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("43403", "10", "2016-11-22 19:01:07", "184.66.49.231", "364");
INSERT INTO `wp_rg_form_view` VALUES("43404", "3", "2016-11-22 19:01:08", "184.66.49.231", "843");
INSERT INTO `wp_rg_form_view` VALUES("43405", "11", "2016-11-22 19:05:31", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("43406", "2", "2016-11-22 19:05:59", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43407", "14", "2016-11-22 19:23:37", "96.54.203.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("43408", "6", "2016-11-22 19:38:41", "157.55.39.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("43409", "13", "2016-11-22 19:43:33", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("43410", "10", "2016-11-22 20:00:00", "5.9.98.130", "911");
INSERT INTO `wp_rg_form_view` VALUES("43411", "3", "2016-11-22 20:00:00", "5.9.98.130", "2128");
INSERT INTO `wp_rg_form_view` VALUES("43412", "10", "2016-11-22 21:00:00", "5.9.98.130", "864");
INSERT INTO `wp_rg_form_view` VALUES("43413", "3", "2016-11-22 21:00:00", "5.9.98.130", "1605");
INSERT INTO `wp_rg_form_view` VALUES("43414", "13", "2016-11-22 21:28:04", "37.115.113.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("43415", "10", "2016-11-22 22:00:00", "5.9.98.130", "756");
INSERT INTO `wp_rg_form_view` VALUES("43416", "3", "2016-11-22 22:00:00", "5.9.98.130", "1664");
INSERT INTO `wp_rg_form_view` VALUES("43417", "10", "2016-11-22 23:00:23", "5.9.98.130", "1035");
INSERT INTO `wp_rg_form_view` VALUES("43418", "3", "2016-11-22 23:00:24", "5.9.98.130", "2051");
INSERT INTO `wp_rg_form_view` VALUES("43419", "14", "2016-11-22 23:43:22", "120.52.73.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("43420", "11", "2016-11-22 23:56:31", "176.32.16.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("43421", "2", "2016-11-22 23:57:52", "176.32.16.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("43422", "3", "2016-11-23 00:00:00", "5.9.98.130", "3353");
INSERT INTO `wp_rg_form_view` VALUES("43423", "10", "2016-11-23 00:00:05", "5.9.98.130", "1191");
INSERT INTO `wp_rg_form_view` VALUES("43424", "3", "2016-11-23 01:00:02", "5.9.98.130", "3203");
INSERT INTO `wp_rg_form_view` VALUES("43425", "10", "2016-11-23 01:00:04", "5.9.98.130", "814");
INSERT INTO `wp_rg_form_view` VALUES("43426", "14", "2016-11-23 01:31:38", "202.21.116.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("43427", "3", "2016-11-23 02:00:04", "5.9.98.130", "3012");
INSERT INTO `wp_rg_form_view` VALUES("43428", "10", "2016-11-23 02:00:06", "5.9.98.130", "911");
INSERT INTO `wp_rg_form_view` VALUES("43429", "10", "2016-11-23 03:00:03", "5.9.98.130", "241");
INSERT INTO `wp_rg_form_view` VALUES("43430", "3", "2016-11-23 03:00:04", "5.9.98.130", "560");
INSERT INTO `wp_rg_form_view` VALUES("43431", "13", "2016-11-23 03:09:03", "37.115.113.73", "5");
INSERT INTO `wp_rg_form_view` VALUES("43432", "10", "2016-11-23 04:06:38", "77.75.79.54", "19");
INSERT INTO `wp_rg_form_view` VALUES("43433", "3", "2016-11-23 04:06:39", "77.75.79.54", "42");
INSERT INTO `wp_rg_form_view` VALUES("43434", "14", "2016-11-23 04:59:45", "88.81.214.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("43435", "10", "2016-11-23 05:16:51", "66.249.79.152", "34");
INSERT INTO `wp_rg_form_view` VALUES("43436", "3", "2016-11-23 05:16:52", "66.249.79.152", "77");
INSERT INTO `wp_rg_form_view` VALUES("43437", "14", "2016-11-23 05:53:25", "96.50.63.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("43438", "14", "2016-11-23 06:00:04", "96.50.63.233", "4");
INSERT INTO `wp_rg_form_view` VALUES("43439", "10", "2016-11-23 06:00:04", "96.50.63.233", "39");
INSERT INTO `wp_rg_form_view` VALUES("43440", "3", "2016-11-23 06:00:04", "96.50.63.233", "92");
INSERT INTO `wp_rg_form_view` VALUES("43441", "14", "2016-11-23 07:00:35", "96.50.63.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("43442", "10", "2016-11-23 07:00:35", "96.50.63.233", "25");
INSERT INTO `wp_rg_form_view` VALUES("43443", "3", "2016-11-23 07:00:35", "96.50.63.233", "57");
INSERT INTO `wp_rg_form_view` VALUES("43444", "10", "2016-11-23 08:02:55", "40.77.167.50", "229");
INSERT INTO `wp_rg_form_view` VALUES("43445", "3", "2016-11-23 08:02:56", "40.77.167.50", "532");
INSERT INTO `wp_rg_form_view` VALUES("43446", "10", "2016-11-23 09:00:17", "5.9.98.130", "942");
INSERT INTO `wp_rg_form_view` VALUES("43447", "3", "2016-11-23 09:00:17", "5.9.98.130", "2198");
INSERT INTO `wp_rg_form_view` VALUES("43448", "9", "2016-11-23 09:17:25", "157.55.39.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("43449", "13", "2016-11-23 09:23:35", "46.118.154.190", "4");
INSERT INTO `wp_rg_form_view` VALUES("43450", "13", "2016-11-23 09:23:35", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43451", "10", "2016-11-23 10:00:11", "5.9.98.130", "1159");
INSERT INTO `wp_rg_form_view` VALUES("43452", "3", "2016-11-23 10:00:12", "5.9.98.130", "2703");
INSERT INTO `wp_rg_form_view` VALUES("43453", "10", "2016-11-23 11:00:01", "5.9.98.130", "1086");
INSERT INTO `wp_rg_form_view` VALUES("43454", "3", "2016-11-23 11:00:01", "5.9.98.130", "2063");
INSERT INTO `wp_rg_form_view` VALUES("43455", "13", "2016-11-23 11:19:11", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("43456", "3", "2016-11-23 12:00:00", "5.9.98.130", "2045");
INSERT INTO `wp_rg_form_view` VALUES("43457", "10", "2016-11-23 12:00:00", "5.9.98.130", "1116");
INSERT INTO `wp_rg_form_view` VALUES("43458", "13", "2016-11-23 12:26:24", "178.137.161.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("43459", "3", "2016-11-23 13:00:00", "5.9.98.130", "2332");
INSERT INTO `wp_rg_form_view` VALUES("43460", "10", "2016-11-23 13:00:14", "5.9.98.130", "999");
INSERT INTO `wp_rg_form_view` VALUES("43461", "3", "2016-11-23 14:00:00", "5.9.98.130", "1915");
INSERT INTO `wp_rg_form_view` VALUES("43462", "10", "2016-11-23 14:00:02", "5.9.98.130", "924");
INSERT INTO `wp_rg_form_view` VALUES("43463", "13", "2016-11-23 14:17:57", "194.187.170.109", "5");
INSERT INTO `wp_rg_form_view` VALUES("43464", "10", "2016-11-23 15:00:35", "5.9.98.130", "1089");
INSERT INTO `wp_rg_form_view` VALUES("43465", "3", "2016-11-23 15:00:35", "5.9.98.130", "2071");
INSERT INTO `wp_rg_form_view` VALUES("43466", "2", "2016-11-23 15:35:22", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("43467", "11", "2016-11-23 15:35:54", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("43468", "10", "2016-11-23 16:00:11", "5.9.98.130", "1128");
INSERT INTO `wp_rg_form_view` VALUES("43469", "3", "2016-11-23 16:00:12", "5.9.98.130", "1368");
INSERT INTO `wp_rg_form_view` VALUES("43470", "2", "2016-11-23 16:40:39", "104.245.102.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("43471", "3", "2016-11-23 17:00:00", "5.9.98.130", "2176");
INSERT INTO `wp_rg_form_view` VALUES("43472", "10", "2016-11-23 17:00:15", "5.9.98.130", "633");
INSERT INTO `wp_rg_form_view` VALUES("43473", "3", "2016-11-23 18:00:14", "5.9.98.130", "1647");
INSERT INTO `wp_rg_form_view` VALUES("43474", "10", "2016-11-23 18:00:16", "5.9.98.130", "339");
INSERT INTO `wp_rg_form_view` VALUES("43475", "13", "2016-11-23 18:26:33", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43476", "13", "2016-11-23 18:26:33", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43477", "10", "2016-11-23 19:20:22", "184.71.26.18", "42");
INSERT INTO `wp_rg_form_view` VALUES("43478", "3", "2016-11-23 19:20:37", "184.71.26.18", "100");
INSERT INTO `wp_rg_form_view` VALUES("43479", "3", "2016-11-23 19:20:37", "184.71.26.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("43480", "10", "2016-11-23 20:02:41", "68.180.229.172", "57");
INSERT INTO `wp_rg_form_view` VALUES("43481", "3", "2016-11-23 20:02:41", "68.180.229.172", "134");
INSERT INTO `wp_rg_form_view` VALUES("43482", "14", "2016-11-23 20:55:41", "36.73.144.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("43483", "13", "2016-11-23 20:59:19", "134.249.51.255", "3");
INSERT INTO `wp_rg_form_view` VALUES("43484", "10", "2016-11-23 21:12:06", "184.146.156.244", "15");
INSERT INTO `wp_rg_form_view` VALUES("43485", "3", "2016-11-23 21:12:06", "184.146.156.244", "35");
INSERT INTO `wp_rg_form_view` VALUES("43486", "13", "2016-11-23 21:37:21", "157.55.39.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("43487", "10", "2016-11-23 22:16:49", "77.75.78.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("43488", "3", "2016-11-23 22:16:50", "77.75.78.162", "42");
INSERT INTO `wp_rg_form_view` VALUES("43489", "10", "2016-11-23 23:08:39", "5.255.250.72", "34");
INSERT INTO `wp_rg_form_view` VALUES("43490", "3", "2016-11-23 23:08:40", "5.255.250.72", "73");
INSERT INTO `wp_rg_form_view` VALUES("43491", "10", "2016-11-24 00:08:52", "184.69.163.74", "36");
INSERT INTO `wp_rg_form_view` VALUES("43492", "3", "2016-11-24 00:08:54", "184.69.163.74", "84");
INSERT INTO `wp_rg_form_view` VALUES("43493", "13", "2016-11-24 00:08:58", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("43494", "8", "2016-11-24 00:13:18", "157.55.39.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("43495", "10", "2016-11-24 01:13:00", "202.46.50.122", "18");
INSERT INTO `wp_rg_form_view` VALUES("43496", "3", "2016-11-24 01:13:01", "202.46.50.122", "42");
INSERT INTO `wp_rg_form_view` VALUES("43497", "13", "2016-11-24 01:59:54", "178.137.163.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("43498", "10", "2016-11-24 02:13:05", "157.55.39.176", "25");
INSERT INTO `wp_rg_form_view` VALUES("43499", "3", "2016-11-24 02:13:05", "157.55.39.176", "56");
INSERT INTO `wp_rg_form_view` VALUES("43500", "10", "2016-11-24 03:47:14", "202.46.56.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("43501", "3", "2016-11-24 03:47:15", "202.46.56.191", "7");
INSERT INTO `wp_rg_form_view` VALUES("43502", "10", "2016-11-24 05:18:18", "157.55.39.176", "27");
INSERT INTO `wp_rg_form_view` VALUES("43503", "3", "2016-11-24 05:18:23", "157.55.39.176", "64");
INSERT INTO `wp_rg_form_view` VALUES("43504", "2", "2016-11-24 05:48:55", "192.243.55.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("43505", "10", "2016-11-24 07:24:01", "24.108.186.103", "33");
INSERT INTO `wp_rg_form_view` VALUES("43506", "3", "2016-11-24 07:24:04", "24.108.186.103", "77");
INSERT INTO `wp_rg_form_view` VALUES("43507", "10", "2016-11-24 08:13:43", "157.55.39.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("43508", "3", "2016-11-24 08:13:43", "157.55.39.176", "71");
INSERT INTO `wp_rg_form_view` VALUES("43509", "13", "2016-11-24 08:50:49", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("43510", "3", "2016-11-24 09:32:01", "157.55.39.42", "51");
INSERT INTO `wp_rg_form_view` VALUES("43511", "10", "2016-11-24 09:32:03", "157.55.39.42", "22");
INSERT INTO `wp_rg_form_view` VALUES("43512", "13", "2016-11-24 09:45:47", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43513", "10", "2016-11-24 10:04:43", "192.243.55.132", "40");
INSERT INTO `wp_rg_form_view` VALUES("43514", "3", "2016-11-24 10:04:43", "192.243.55.132", "94");
INSERT INTO `wp_rg_form_view` VALUES("43515", "14", "2016-11-24 10:08:52", "5.196.140.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("43516", "5", "2016-11-24 10:11:09", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("43517", "13", "2016-11-24 10:25:44", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("43518", "3", "2016-11-24 11:22:03", "40.77.167.50", "22");
INSERT INTO `wp_rg_form_view` VALUES("43519", "10", "2016-11-24 11:22:04", "40.77.167.50", "9");
INSERT INTO `wp_rg_form_view` VALUES("43520", "6", "2016-11-24 11:29:30", "157.55.39.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("43521", "10", "2016-11-24 12:00:27", "157.55.39.42", "12");
INSERT INTO `wp_rg_form_view` VALUES("43522", "3", "2016-11-24 12:00:28", "157.55.39.42", "29");
INSERT INTO `wp_rg_form_view` VALUES("43523", "10", "2016-11-24 13:31:19", "150.161.21.204", "27");
INSERT INTO `wp_rg_form_view` VALUES("43524", "3", "2016-11-24 13:31:20", "150.161.21.204", "63");
INSERT INTO `wp_rg_form_view` VALUES("43525", "13", "2016-11-24 13:57:17", "134.249.51.255", "3");
INSERT INTO `wp_rg_form_view` VALUES("43526", "10", "2016-11-24 14:20:35", "157.55.39.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("43527", "3", "2016-11-24 14:20:35", "157.55.39.42", "7");
INSERT INTO `wp_rg_form_view` VALUES("43528", "3", "2016-11-24 15:04:49", "192.243.55.134", "72");
INSERT INTO `wp_rg_form_view` VALUES("43529", "10", "2016-11-24 15:04:53", "192.243.55.134", "27");
INSERT INTO `wp_rg_form_view` VALUES("43530", "13", "2016-11-24 15:52:03", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43531", "10", "2016-11-24 16:11:16", "163.172.66.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("43532", "3", "2016-11-24 16:11:16", "163.172.66.105", "35");
INSERT INTO `wp_rg_form_view` VALUES("43533", "10", "2016-11-24 17:01:55", "24.108.180.144", "78");
INSERT INTO `wp_rg_form_view` VALUES("43534", "3", "2016-11-24 17:01:55", "24.108.180.144", "189");
INSERT INTO `wp_rg_form_view` VALUES("43535", "14", "2016-11-24 17:19:43", "75.157.169.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("43536", "11", "2016-11-24 17:41:17", "5.255.250.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("43537", "3", "2016-11-24 18:01:41", "192.243.55.129", "132");
INSERT INTO `wp_rg_form_view` VALUES("43538", "10", "2016-11-24 18:01:41", "192.243.55.129", "55");
INSERT INTO `wp_rg_form_view` VALUES("43539", "14", "2016-11-24 18:14:46", "96.50.29.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("43540", "13", "2016-11-24 18:58:51", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43541", "13", "2016-11-24 18:58:51", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43542", "13", "2016-11-24 18:58:51", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43543", "10", "2016-11-24 19:06:51", "24.68.17.83", "19");
INSERT INTO `wp_rg_form_view` VALUES("43544", "3", "2016-11-24 19:06:51", "24.68.17.83", "43");
INSERT INTO `wp_rg_form_view` VALUES("43545", "10", "2016-11-24 20:03:09", "40.77.167.50", "43");
INSERT INTO `wp_rg_form_view` VALUES("43546", "3", "2016-11-24 20:03:09", "40.77.167.50", "99");
INSERT INTO `wp_rg_form_view` VALUES("43547", "9", "2016-11-24 20:05:57", "157.55.39.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("43548", "5", "2016-11-24 21:05:53", "77.75.78.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("43549", "10", "2016-11-24 21:05:53", "77.75.78.169", "33");
INSERT INTO `wp_rg_form_view` VALUES("43550", "3", "2016-11-24 21:05:54", "77.75.78.169", "84");
INSERT INTO `wp_rg_form_view` VALUES("43551", "14", "2016-11-24 22:04:18", "216.212.232.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("43552", "10", "2016-11-24 22:04:19", "216.212.232.54", "51");
INSERT INTO `wp_rg_form_view` VALUES("43553", "3", "2016-11-24 22:04:19", "216.212.232.54", "120");
INSERT INTO `wp_rg_form_view` VALUES("43554", "11", "2016-11-24 22:19:05", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("43555", "2", "2016-11-24 22:19:09", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("43556", "10", "2016-11-24 23:04:41", "91.200.12.33", "31");
INSERT INTO `wp_rg_form_view` VALUES("43557", "3", "2016-11-24 23:04:42", "91.200.12.33", "70");
INSERT INTO `wp_rg_form_view` VALUES("43558", "14", "2016-11-24 23:36:15", "103.233.157.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("43559", "9", "2016-11-25 00:06:29", "157.55.39.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("43560", "10", "2016-11-25 00:06:30", "157.55.39.176", "6");
INSERT INTO `wp_rg_form_view` VALUES("43561", "3", "2016-11-25 00:06:30", "157.55.39.176", "15");
INSERT INTO `wp_rg_form_view` VALUES("43562", "13", "2016-11-25 01:03:34", "178.137.161.77", "7");
INSERT INTO `wp_rg_form_view` VALUES("43563", "10", "2016-11-25 01:03:35", "178.137.161.77", "34");
INSERT INTO `wp_rg_form_view` VALUES("43564", "3", "2016-11-25 01:03:36", "178.137.161.77", "78");
INSERT INTO `wp_rg_form_view` VALUES("43565", "10", "2016-11-25 02:02:41", "66.249.79.156", "55");
INSERT INTO `wp_rg_form_view` VALUES("43566", "3", "2016-11-25 02:02:42", "66.249.79.156", "126");
INSERT INTO `wp_rg_form_view` VALUES("43567", "13", "2016-11-25 02:20:05", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43568", "13", "2016-11-25 02:20:05", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43569", "14", "2016-11-25 02:48:32", "209.52.88.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("43570", "10", "2016-11-25 03:14:16", "24.68.28.15", "12");
INSERT INTO `wp_rg_form_view` VALUES("43571", "3", "2016-11-25 03:14:16", "24.68.28.15", "28");
INSERT INTO `wp_rg_form_view` VALUES("43572", "10", "2016-11-25 04:10:09", "202.46.51.207", "36");
INSERT INTO `wp_rg_form_view` VALUES("43573", "3", "2016-11-25 04:10:09", "202.46.51.207", "84");
INSERT INTO `wp_rg_form_view` VALUES("43574", "14", "2016-11-25 04:23:39", "206.87.173.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("43575", "10", "2016-11-25 05:28:50", "24.114.26.230", "12");
INSERT INTO `wp_rg_form_view` VALUES("43576", "3", "2016-11-25 05:28:52", "24.114.26.230", "28");
INSERT INTO `wp_rg_form_view` VALUES("43577", "10", "2016-11-25 06:00:37", "163.172.64.225", "3");
INSERT INTO `wp_rg_form_view` VALUES("43578", "3", "2016-11-25 06:00:37", "163.172.64.225", "7");
INSERT INTO `wp_rg_form_view` VALUES("43579", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43580", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43581", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43582", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43583", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43584", "13", "2016-11-25 07:13:35", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43585", "10", "2016-11-25 07:13:39", "178.137.161.77", "79");
INSERT INTO `wp_rg_form_view` VALUES("43586", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43587", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43588", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43589", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43590", "10", "2016-11-25 07:13:39", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43591", "3", "2016-11-25 07:13:40", "178.137.161.77", "195");
INSERT INTO `wp_rg_form_view` VALUES("43592", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43593", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43594", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43595", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43596", "3", "2016-11-25 07:13:40", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43597", "11", "2016-11-25 07:22:40", "104.214.111.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("43598", "2", "2016-11-25 07:22:42", "104.214.111.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("43599", "13", "2016-11-25 08:08:47", "134.249.51.255", "5");
INSERT INTO `wp_rg_form_view` VALUES("43600", "13", "2016-11-25 08:08:47", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("43601", "10", "2016-11-25 08:08:47", "134.249.51.255", "27");
INSERT INTO `wp_rg_form_view` VALUES("43602", "3", "2016-11-25 08:08:47", "134.249.51.255", "63");
INSERT INTO `wp_rg_form_view` VALUES("43603", "14", "2016-11-25 08:26:26", "91.233.60.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("43604", "10", "2016-11-25 09:47:09", "68.180.229.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("43605", "3", "2016-11-25 09:47:10", "68.180.229.172", "7");
INSERT INTO `wp_rg_form_view` VALUES("43606", "10", "2016-11-25 11:27:51", "157.55.39.213", "303");
INSERT INTO `wp_rg_form_view` VALUES("43607", "3", "2016-11-25 11:27:55", "157.55.39.213", "797");
INSERT INTO `wp_rg_form_view` VALUES("43608", "8", "2016-11-25 11:49:04", "5.255.250.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("43609", "14", "2016-11-25 11:52:41", "107.170.113.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43610", "11", "2016-11-25 11:53:02", "107.170.113.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43611", "10", "2016-11-25 12:00:03", "107.170.113.231", "1178");
INSERT INTO `wp_rg_form_view` VALUES("43612", "3", "2016-11-25 12:00:04", "107.170.113.231", "2894");
INSERT INTO `wp_rg_form_view` VALUES("43613", "6", "2016-11-25 12:09:47", "107.170.113.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43614", "9", "2016-11-25 12:18:37", "107.170.113.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43615", "2", "2016-11-25 12:57:04", "107.170.113.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43616", "10", "2016-11-25 13:00:02", "107.170.113.231", "234");
INSERT INTO `wp_rg_form_view` VALUES("43617", "3", "2016-11-25 13:00:02", "107.170.113.231", "575");
INSERT INTO `wp_rg_form_view` VALUES("43618", "13", "2016-11-25 13:06:27", "107.170.113.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43619", "8", "2016-11-25 13:10:15", "107.170.113.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43620", "10", "2016-11-25 14:06:44", "192.243.55.133", "23");
INSERT INTO `wp_rg_form_view` VALUES("43621", "3", "2016-11-25 14:06:45", "192.243.55.133", "59");
INSERT INTO `wp_rg_form_view` VALUES("43622", "10", "2016-11-25 15:20:51", "157.55.39.213", "13");
INSERT INTO `wp_rg_form_view` VALUES("43623", "3", "2016-11-25 15:20:51", "157.55.39.213", "37");
INSERT INTO `wp_rg_form_view` VALUES("43624", "3", "2016-11-25 16:07:31", "194.187.170.124", "22");
INSERT INTO `wp_rg_form_view` VALUES("43625", "10", "2016-11-25 16:07:32", "194.187.170.124", "6");
INSERT INTO `wp_rg_form_view` VALUES("43626", "10", "2016-11-25 17:05:06", "66.249.79.152", "18");
INSERT INTO `wp_rg_form_view` VALUES("43627", "3", "2016-11-25 17:05:13", "66.249.79.152", "42");
INSERT INTO `wp_rg_form_view` VALUES("43628", "12", "2016-11-25 17:10:23", "68.180.229.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("43629", "13", "2016-11-25 17:42:40", "178.137.161.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("43630", "13", "2016-11-25 17:42:40", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43631", "13", "2016-11-25 17:42:40", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43632", "10", "2016-11-25 18:24:56", "192.243.55.138", "9");
INSERT INTO `wp_rg_form_view` VALUES("43633", "3", "2016-11-25 18:25:10", "192.243.55.138", "20");
INSERT INTO `wp_rg_form_view` VALUES("43634", "3", "2016-11-25 18:25:10", "192.243.55.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("43635", "10", "2016-11-25 19:18:30", "24.108.7.246", "8");
INSERT INTO `wp_rg_form_view` VALUES("43636", "10", "2016-11-25 19:18:30", "24.108.7.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("43637", "3", "2016-11-25 19:18:33", "24.108.7.246", "20");
INSERT INTO `wp_rg_form_view` VALUES("43638", "3", "2016-11-25 19:18:33", "24.108.7.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("43639", "13", "2016-11-25 20:22:31", "37.115.113.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("43640", "13", "2016-11-25 20:22:31", "37.115.113.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("43641", "10", "2016-11-25 20:22:34", "37.115.113.73", "40");
INSERT INTO `wp_rg_form_view` VALUES("43642", "10", "2016-11-25 20:22:34", "37.115.113.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("43643", "10", "2016-11-25 20:22:34", "37.115.113.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("43644", "3", "2016-11-25 20:22:35", "37.115.113.73", "82");
INSERT INTO `wp_rg_form_view` VALUES("43645", "3", "2016-11-25 20:22:35", "37.115.113.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("43646", "3", "2016-11-25 20:22:35", "37.115.113.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("43647", "10", "2016-11-25 21:19:04", "66.249.79.156", "33");
INSERT INTO `wp_rg_form_view` VALUES("43648", "3", "2016-11-25 21:19:05", "66.249.79.156", "78");
INSERT INTO `wp_rg_form_view` VALUES("43649", "3", "2016-11-25 22:00:00", "173.180.220.36", "63");
INSERT INTO `wp_rg_form_view` VALUES("43650", "10", "2016-11-25 22:15:27", "24.65.50.101", "25");
INSERT INTO `wp_rg_form_view` VALUES("43651", "14", "2016-11-25 22:18:50", "163.172.65.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("43652", "10", "2016-11-25 23:16:38", "220.181.108.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("43653", "3", "2016-11-25 23:16:39", "220.181.108.105", "7");
INSERT INTO `wp_rg_form_view` VALUES("43654", "3", "2016-11-26 00:04:43", "194.187.170.107", "46");
INSERT INTO `wp_rg_form_view` VALUES("43655", "10", "2016-11-26 00:04:44", "194.187.170.107", "19");
INSERT INTO `wp_rg_form_view` VALUES("43656", "14", "2016-11-26 00:29:05", "194.187.170.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("43657", "13", "2016-11-26 01:01:21", "46.118.154.190", "6");
INSERT INTO `wp_rg_form_view` VALUES("43658", "10", "2016-11-26 01:01:21", "46.118.154.190", "384");
INSERT INTO `wp_rg_form_view` VALUES("43659", "3", "2016-11-26 01:01:21", "46.118.154.190", "884");
INSERT INTO `wp_rg_form_view` VALUES("43660", "12", "2016-11-26 01:53:43", "157.55.39.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("43661", "14", "2016-11-26 01:54:43", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("43662", "11", "2016-11-26 01:54:44", "157.55.39.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("43663", "9", "2016-11-26 01:55:20", "157.55.39.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("43664", "2", "2016-11-26 01:59:25", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("43665", "3", "2016-11-26 02:00:03", "216.220.37.161", "103");
INSERT INTO `wp_rg_form_view` VALUES("43666", "10", "2016-11-26 02:00:03", "216.220.37.161", "42");
INSERT INTO `wp_rg_form_view` VALUES("43667", "13", "2016-11-26 02:00:54", "68.180.229.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("43668", "10", "2016-11-26 03:21:12", "66.249.79.148", "42");
INSERT INTO `wp_rg_form_view` VALUES("43669", "3", "2016-11-26 03:21:13", "66.249.79.148", "97");
INSERT INTO `wp_rg_form_view` VALUES("43670", "13", "2016-11-26 03:30:55", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("43671", "10", "2016-11-26 04:01:17", "192.243.55.133", "75");
INSERT INTO `wp_rg_form_view` VALUES("43672", "3", "2016-11-26 04:01:17", "192.243.55.133", "176");
INSERT INTO `wp_rg_form_view` VALUES("43673", "2", "2016-11-26 04:41:16", "104.236.52.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("43674", "11", "2016-11-26 04:41:16", "104.236.52.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("43675", "5", "2016-11-26 05:52:19", "77.75.79.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("43676", "10", "2016-11-26 05:52:20", "77.75.79.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("43677", "3", "2016-11-26 05:52:20", "77.75.79.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("43678", "13", "2016-11-26 06:01:38", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43679", "10", "2016-11-26 06:01:38", "37.115.113.73", "13");
INSERT INTO `wp_rg_form_view` VALUES("43680", "3", "2016-11-26 06:01:38", "37.115.113.73", "28");
INSERT INTO `wp_rg_form_view` VALUES("43681", "10", "2016-11-26 07:01:34", "68.180.229.172", "6");
INSERT INTO `wp_rg_form_view` VALUES("43682", "3", "2016-11-26 07:01:38", "68.180.229.172", "14");
INSERT INTO `wp_rg_form_view` VALUES("43683", "10", "2016-11-26 08:20:21", "157.55.39.198", "3");
INSERT INTO `wp_rg_form_view` VALUES("43684", "3", "2016-11-26 08:20:21", "157.55.39.198", "7");
INSERT INTO `wp_rg_form_view` VALUES("43685", "3", "2016-11-26 09:17:59", "192.243.55.133", "46");
INSERT INTO `wp_rg_form_view` VALUES("43686", "10", "2016-11-26 09:18:05", "192.243.55.133", "18");
INSERT INTO `wp_rg_form_view` VALUES("43687", "8", "2016-11-26 09:36:13", "157.55.39.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("43688", "3", "2016-11-26 10:30:48", "202.46.51.20", "8");
INSERT INTO `wp_rg_form_view` VALUES("43689", "10", "2016-11-26 10:30:50", "202.46.51.20", "3");
INSERT INTO `wp_rg_form_view` VALUES("43690", "3", "2016-11-26 11:01:30", "192.243.55.133", "32");
INSERT INTO `wp_rg_form_view` VALUES("43691", "10", "2016-11-26 11:01:31", "192.243.55.133", "12");
INSERT INTO `wp_rg_form_view` VALUES("43692", "10", "2016-11-26 12:01:40", "66.249.79.148", "21");
INSERT INTO `wp_rg_form_view` VALUES("43693", "3", "2016-11-26 12:01:43", "66.249.79.148", "48");
INSERT INTO `wp_rg_form_view` VALUES("43694", "13", "2016-11-26 12:25:04", "178.137.163.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("43695", "13", "2016-11-26 13:07:50", "134.249.51.255", "3");
INSERT INTO `wp_rg_form_view` VALUES("43696", "10", "2016-11-26 13:07:50", "134.249.51.255", "27");
INSERT INTO `wp_rg_form_view` VALUES("43697", "3", "2016-11-26 13:07:50", "134.249.51.255", "64");
INSERT INTO `wp_rg_form_view` VALUES("43698", "3", "2016-11-26 14:15:46", "202.46.58.19", "29");
INSERT INTO `wp_rg_form_view` VALUES("43699", "10", "2016-11-26 14:15:47", "202.46.58.19", "12");
INSERT INTO `wp_rg_form_view` VALUES("43700", "10", "2016-11-26 15:20:05", "184.66.37.93", "114");
INSERT INTO `wp_rg_form_view` VALUES("43701", "3", "2016-11-26 15:20:06", "184.66.37.93", "267");
INSERT INTO `wp_rg_form_view` VALUES("43702", "13", "2016-11-26 15:45:32", "178.137.161.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("43703", "11", "2016-11-26 15:53:38", "79.116.26.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("43704", "2", "2016-11-26 15:54:35", "79.116.26.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("43705", "13", "2016-11-26 16:30:19", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("43706", "10", "2016-11-26 16:30:23", "46.118.154.190", "7");
INSERT INTO `wp_rg_form_view` VALUES("43707", "10", "2016-11-26 16:30:23", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43708", "10", "2016-11-26 16:30:23", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43709", "3", "2016-11-26 16:30:24", "46.118.154.190", "19");
INSERT INTO `wp_rg_form_view` VALUES("43710", "3", "2016-11-26 16:30:24", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43711", "3", "2016-11-26 16:30:24", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43712", "10", "2016-11-26 17:11:23", "66.249.79.156", "15");
INSERT INTO `wp_rg_form_view` VALUES("43713", "3", "2016-11-26 17:11:24", "66.249.79.156", "35");
INSERT INTO `wp_rg_form_view` VALUES("43714", "10", "2016-11-26 18:02:52", "24.108.197.11", "39");
INSERT INTO `wp_rg_form_view` VALUES("43715", "3", "2016-11-26 18:02:53", "24.108.197.11", "91");
INSERT INTO `wp_rg_form_view` VALUES("43716", "13", "2016-11-26 19:13:02", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43717", "13", "2016-11-26 19:13:02", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43718", "10", "2016-11-26 19:13:04", "178.137.163.110", "20");
INSERT INTO `wp_rg_form_view` VALUES("43719", "10", "2016-11-26 19:13:04", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43720", "3", "2016-11-26 19:13:04", "178.137.163.110", "44");
INSERT INTO `wp_rg_form_view` VALUES("43721", "3", "2016-11-26 19:13:04", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43722", "10", "2016-11-26 20:52:43", "163.172.65.35", "3");
INSERT INTO `wp_rg_form_view` VALUES("43723", "3", "2016-11-26 20:52:44", "163.172.65.35", "7");
INSERT INTO `wp_rg_form_view` VALUES("43724", "10", "2016-11-26 21:27:55", "75.157.134.169", "48");
INSERT INTO `wp_rg_form_view` VALUES("43725", "3", "2016-11-26 21:27:56", "75.157.134.169", "120");
INSERT INTO `wp_rg_form_view` VALUES("43726", "12", "2016-11-26 21:44:45", "194.187.170.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("43727", "13", "2016-11-26 21:56:22", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("43728", "13", "2016-11-26 22:02:37", "178.137.161.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("43729", "10", "2016-11-26 22:02:37", "178.137.161.77", "18");
INSERT INTO `wp_rg_form_view` VALUES("43730", "3", "2016-11-26 22:02:37", "178.137.161.77", "42");
INSERT INTO `wp_rg_form_view` VALUES("43731", "13", "2016-11-26 23:26:58", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("43732", "10", "2016-11-26 23:26:59", "46.118.154.190", "17");
INSERT INTO `wp_rg_form_view` VALUES("43733", "10", "2016-11-26 23:26:59", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43734", "3", "2016-11-26 23:27:00", "46.118.154.190", "41");
INSERT INTO `wp_rg_form_view` VALUES("43735", "3", "2016-11-26 23:27:00", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43736", "14", "2016-11-27 00:33:39", "120.52.73.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("43737", "10", "2016-11-27 00:33:39", "120.52.73.97", "12");
INSERT INTO `wp_rg_form_view` VALUES("43738", "3", "2016-11-27 00:33:39", "120.52.73.97", "29");
INSERT INTO `wp_rg_form_view` VALUES("43739", "10", "2016-11-27 01:12:16", "163.172.65.22", "22");
INSERT INTO `wp_rg_form_view` VALUES("43740", "3", "2016-11-27 01:12:16", "163.172.65.22", "88");
INSERT INTO `wp_rg_form_view` VALUES("43741", "13", "2016-11-27 01:24:20", "134.249.51.255", "8");
INSERT INTO `wp_rg_form_view` VALUES("43742", "13", "2016-11-27 01:24:20", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("43743", "13", "2016-11-27 02:14:07", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43744", "10", "2016-11-27 02:14:07", "37.115.113.73", "11");
INSERT INTO `wp_rg_form_view` VALUES("43745", "3", "2016-11-27 02:14:07", "37.115.113.73", "41");
INSERT INTO `wp_rg_form_view` VALUES("43746", "10", "2016-11-27 03:03:14", "24.69.77.172", "22");
INSERT INTO `wp_rg_form_view` VALUES("43747", "3", "2016-11-27 03:03:15", "24.69.77.172", "89");
INSERT INTO `wp_rg_form_view` VALUES("43748", "3", "2016-11-27 04:11:02", "202.46.52.174", "65");
INSERT INTO `wp_rg_form_view` VALUES("43749", "10", "2016-11-27 04:11:02", "202.46.52.174", "16");
INSERT INTO `wp_rg_form_view` VALUES("43750", "10", "2016-11-27 05:08:10", "66.249.79.156", "82");
INSERT INTO `wp_rg_form_view` VALUES("43751", "3", "2016-11-27 05:08:10", "66.249.79.156", "331");
INSERT INTO `wp_rg_form_view` VALUES("43752", "11", "2016-11-27 05:12:17", "73.219.102.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("43753", "2", "2016-11-27 05:13:44", "73.219.102.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("43754", "10", "2016-11-27 06:07:07", "64.114.25.211", "16");
INSERT INTO `wp_rg_form_view` VALUES("43755", "3", "2016-11-27 06:07:07", "64.114.25.211", "66");
INSERT INTO `wp_rg_form_view` VALUES("43756", "10", "2016-11-27 07:11:41", "194.187.170.137", "6");
INSERT INTO `wp_rg_form_view` VALUES("43757", "3", "2016-11-27 07:11:46", "194.187.170.137", "24");
INSERT INTO `wp_rg_form_view` VALUES("43758", "10", "2016-11-27 08:30:00", "68.180.229.172", "13");
INSERT INTO `wp_rg_form_view` VALUES("43759", "3", "2016-11-27 08:30:01", "68.180.229.172", "49");
INSERT INTO `wp_rg_form_view` VALUES("43760", "6", "2016-11-27 08:38:45", "202.46.52.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("43761", "13", "2016-11-27 08:46:00", "178.137.161.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("43762", "11", "2016-11-27 10:35:20", "77.75.77.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("43763", "10", "2016-11-27 10:35:22", "77.75.77.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("43764", "3", "2016-11-27 10:35:23", "77.75.77.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("43765", "11", "2016-11-27 11:27:57", "77.75.79.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("43766", "10", "2016-11-27 11:27:57", "77.75.79.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("43767", "3", "2016-11-27 11:27:58", "77.75.79.32", "17");
INSERT INTO `wp_rg_form_view` VALUES("43768", "10", "2016-11-27 14:20:50", "109.103.51.151", "65");
INSERT INTO `wp_rg_form_view` VALUES("43769", "3", "2016-11-27 14:20:51", "109.103.51.151", "257");
INSERT INTO `wp_rg_form_view` VALUES("43770", "11", "2016-11-27 14:20:55", "109.103.51.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("43771", "2", "2016-11-27 14:21:52", "109.103.51.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("43772", "10", "2016-11-27 15:06:16", "40.77.167.3", "14");
INSERT INTO `wp_rg_form_view` VALUES("43773", "3", "2016-11-27 15:06:16", "40.77.167.3", "56");
INSERT INTO `wp_rg_form_view` VALUES("43774", "10", "2016-11-27 16:21:46", "202.46.56.210", "8");
INSERT INTO `wp_rg_form_view` VALUES("43775", "3", "2016-11-27 16:21:46", "202.46.56.210", "33");
INSERT INTO `wp_rg_form_view` VALUES("43776", "14", "2016-11-27 16:57:31", "116.90.211.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("43777", "13", "2016-11-27 17:15:31", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43778", "10", "2016-11-27 17:15:31", "37.115.113.73", "12");
INSERT INTO `wp_rg_form_view` VALUES("43779", "3", "2016-11-27 17:15:31", "37.115.113.73", "48");
INSERT INTO `wp_rg_form_view` VALUES("43780", "10", "2016-11-27 18:29:15", "24.68.4.127", "10");
INSERT INTO `wp_rg_form_view` VALUES("43781", "3", "2016-11-27 18:29:17", "24.68.4.127", "41");
INSERT INTO `wp_rg_form_view` VALUES("43782", "13", "2016-11-27 18:42:07", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("43783", "2", "2016-11-27 19:25:03", "163.172.65.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("43784", "10", "2016-11-27 19:25:04", "163.172.65.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("43785", "3", "2016-11-27 19:25:05", "163.172.65.14", "17");
INSERT INTO `wp_rg_form_view` VALUES("43786", "10", "2016-11-27 20:16:23", "66.249.79.152", "18");
INSERT INTO `wp_rg_form_view` VALUES("43787", "3", "2016-11-27 20:16:24", "66.249.79.152", "73");
INSERT INTO `wp_rg_form_view` VALUES("43788", "13", "2016-11-27 21:23:33", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43789", "10", "2016-11-27 21:23:35", "178.137.163.110", "4");
INSERT INTO `wp_rg_form_view` VALUES("43790", "3", "2016-11-27 21:23:35", "178.137.163.110", "16");
INSERT INTO `wp_rg_form_view` VALUES("43791", "3", "2016-11-27 22:07:05", "68.180.229.172", "33");
INSERT INTO `wp_rg_form_view` VALUES("43792", "10", "2016-11-27 22:13:30", "68.180.229.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("43793", "13", "2016-11-27 23:14:47", "109.235.53.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("43794", "10", "2016-11-27 23:14:48", "109.235.53.100", "8");
INSERT INTO `wp_rg_form_view` VALUES("43795", "3", "2016-11-27 23:14:49", "109.235.53.100", "32");
INSERT INTO `wp_rg_form_view` VALUES("43796", "10", "2016-11-28 00:02:42", "66.249.79.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("43797", "3", "2016-11-28 00:02:42", "66.249.79.156", "16");
INSERT INTO `wp_rg_form_view` VALUES("43798", "13", "2016-11-28 01:05:55", "178.137.163.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("43799", "10", "2016-11-28 01:05:58", "178.137.163.110", "9");
INSERT INTO `wp_rg_form_view` VALUES("43800", "10", "2016-11-28 01:05:58", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43801", "3", "2016-11-28 01:05:59", "178.137.163.110", "42");
INSERT INTO `wp_rg_form_view` VALUES("43802", "3", "2016-11-28 01:05:59", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43803", "3", "2016-11-28 02:10:43", "194.187.170.122", "42");
INSERT INTO `wp_rg_form_view` VALUES("43804", "10", "2016-11-28 02:10:43", "194.187.170.122", "11");
INSERT INTO `wp_rg_form_view` VALUES("43805", "10", "2016-11-28 03:34:24", "66.249.79.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("43806", "3", "2016-11-28 03:34:25", "66.249.79.148", "49");
INSERT INTO `wp_rg_form_view` VALUES("43807", "10", "2016-11-28 04:06:34", "194.187.170.122", "16");
INSERT INTO `wp_rg_form_view` VALUES("43808", "3", "2016-11-28 04:06:34", "194.187.170.122", "67");
INSERT INTO `wp_rg_form_view` VALUES("43809", "10", "2016-11-28 05:08:14", "64.114.25.211", "6");
INSERT INTO `wp_rg_form_view` VALUES("43810", "3", "2016-11-28 05:08:14", "64.114.25.211", "24");
INSERT INTO `wp_rg_form_view` VALUES("43811", "5", "2016-11-28 06:03:15", "157.55.39.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("43812", "10", "2016-11-28 06:03:16", "157.55.39.159", "32");
INSERT INTO `wp_rg_form_view` VALUES("43813", "3", "2016-11-28 06:03:16", "157.55.39.159", "120");
INSERT INTO `wp_rg_form_view` VALUES("43814", "13", "2016-11-28 06:25:43", "178.137.161.77", "9");
INSERT INTO `wp_rg_form_view` VALUES("43815", "9", "2016-11-28 06:41:52", "157.55.39.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("43816", "6", "2016-11-28 07:13:10", "202.46.54.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("43817", "10", "2016-11-28 07:13:13", "202.46.54.147", "20");
INSERT INTO `wp_rg_form_view` VALUES("43818", "3", "2016-11-28 07:13:14", "202.46.54.147", "83");
INSERT INTO `wp_rg_form_view` VALUES("43819", "3", "2016-11-28 08:03:39", "207.46.13.46", "57");
INSERT INTO `wp_rg_form_view` VALUES("43820", "10", "2016-11-28 08:03:39", "207.46.13.46", "14");
INSERT INTO `wp_rg_form_view` VALUES("43821", "10", "2016-11-28 09:03:01", "66.102.6.116", "27");
INSERT INTO `wp_rg_form_view` VALUES("43822", "3", "2016-11-28 09:03:02", "66.102.6.116", "104");
INSERT INTO `wp_rg_form_view` VALUES("43823", "11", "2016-11-28 09:13:19", "66.102.6.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("43824", "10", "2016-11-28 10:02:00", "220.181.51.94", "4");
INSERT INTO `wp_rg_form_view` VALUES("43825", "3", "2016-11-28 10:02:00", "220.181.51.94", "17");
INSERT INTO `wp_rg_form_view` VALUES("43826", "10", "2016-11-28 11:25:03", "207.46.13.46", "12");
INSERT INTO `wp_rg_form_view` VALUES("43827", "3", "2016-11-28 11:25:06", "207.46.13.46", "50");
INSERT INTO `wp_rg_form_view` VALUES("43828", "9", "2016-11-28 11:50:06", "207.46.13.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("43829", "10", "2016-11-28 12:20:56", "77.75.78.168", "23");
INSERT INTO `wp_rg_form_view` VALUES("43830", "3", "2016-11-28 12:20:56", "77.75.78.168", "88");
INSERT INTO `wp_rg_form_view` VALUES("43831", "13", "2016-11-28 12:50:00", "178.137.161.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("43832", "13", "2016-11-28 12:50:00", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43833", "10", "2016-11-28 13:05:57", "40.77.167.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("43834", "3", "2016-11-28 13:05:58", "40.77.167.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("43835", "10", "2016-11-28 14:19:26", "77.75.76.172", "13");
INSERT INTO `wp_rg_form_view` VALUES("43836", "3", "2016-11-28 14:19:27", "77.75.76.172", "48");
INSERT INTO `wp_rg_form_view` VALUES("43837", "13", "2016-11-28 14:22:18", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43838", "10", "2016-11-28 15:21:25", "77.75.79.36", "6");
INSERT INTO `wp_rg_form_view` VALUES("43839", "3", "2016-11-28 15:21:26", "77.75.79.36", "19");
INSERT INTO `wp_rg_form_view` VALUES("43840", "10", "2016-11-28 16:08:05", "66.249.79.156", "20");
INSERT INTO `wp_rg_form_view` VALUES("43841", "3", "2016-11-28 16:08:16", "66.249.79.156", "81");
INSERT INTO `wp_rg_form_view` VALUES("43842", "13", "2016-11-28 16:43:21", "46.118.154.190", "6");
INSERT INTO `wp_rg_form_view` VALUES("43843", "3", "2016-11-28 17:25:14", "207.46.13.46", "58");
INSERT INTO `wp_rg_form_view` VALUES("43844", "10", "2016-11-28 17:25:16", "207.46.13.46", "15");
INSERT INTO `wp_rg_form_view` VALUES("43845", "10", "2016-11-28 18:00:00", "184.151.118.127", "20");
INSERT INTO `wp_rg_form_view` VALUES("43846", "3", "2016-11-28 18:00:00", "184.151.118.127", "80");
INSERT INTO `wp_rg_form_view` VALUES("43847", "14", "2016-11-28 18:55:56", "66.249.84.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("43848", "10", "2016-11-28 19:04:24", "202.46.58.120", "56");
INSERT INTO `wp_rg_form_view` VALUES("43849", "3", "2016-11-28 19:04:24", "202.46.58.120", "227");
INSERT INTO `wp_rg_form_view` VALUES("43850", "13", "2016-11-28 19:05:11", "134.249.51.255", "5");
INSERT INTO `wp_rg_form_view` VALUES("43851", "13", "2016-11-28 19:05:11", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("43852", "10", "2016-11-28 20:02:34", "207.46.13.83", "21");
INSERT INTO `wp_rg_form_view` VALUES("43853", "3", "2016-11-28 20:02:35", "207.46.13.83", "81");
INSERT INTO `wp_rg_form_view` VALUES("43854", "13", "2016-11-28 20:45:40", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("43855", "10", "2016-11-28 21:01:30", "154.20.90.2", "21");
INSERT INTO `wp_rg_form_view` VALUES("43856", "3", "2016-11-28 21:01:30", "154.20.90.2", "74");
INSERT INTO `wp_rg_form_view` VALUES("43857", "13", "2016-11-28 21:18:22", "202.46.51.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("43858", "14", "2016-11-28 21:28:09", "104.168.75.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("43859", "11", "2016-11-28 22:19:24", "220.181.108.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("43860", "10", "2016-11-28 22:19:25", "220.181.108.144", "28");
INSERT INTO `wp_rg_form_view` VALUES("43861", "3", "2016-11-28 22:19:25", "220.181.108.144", "115");
INSERT INTO `wp_rg_form_view` VALUES("43862", "13", "2016-11-28 22:20:16", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("43863", "14", "2016-11-28 22:51:58", "192.198.127.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("43864", "10", "2016-11-28 23:02:02", "70.66.167.30", "34");
INSERT INTO `wp_rg_form_view` VALUES("43865", "3", "2016-11-28 23:02:02", "70.66.167.30", "129");
INSERT INTO `wp_rg_form_view` VALUES("43866", "10", "2016-11-29 00:08:14", "24.244.32.209", "20");
INSERT INTO `wp_rg_form_view` VALUES("43867", "3", "2016-11-29 00:08:15", "24.244.32.209", "81");
INSERT INTO `wp_rg_form_view` VALUES("43868", "13", "2016-11-29 00:27:17", "178.137.161.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("43869", "10", "2016-11-29 01:01:20", "77.75.76.163", "6");
INSERT INTO `wp_rg_form_view` VALUES("43870", "3", "2016-11-29 01:01:20", "77.75.76.163", "24");
INSERT INTO `wp_rg_form_view` VALUES("43871", "10", "2016-11-29 02:13:40", "99.224.200.26", "22");
INSERT INTO `wp_rg_form_view` VALUES("43872", "3", "2016-11-29 02:13:40", "99.224.200.26", "90");
INSERT INTO `wp_rg_form_view` VALUES("43873", "10", "2016-11-29 03:04:11", "217.69.133.230", "25");
INSERT INTO `wp_rg_form_view` VALUES("43874", "3", "2016-11-29 03:04:11", "217.69.133.230", "102");
INSERT INTO `wp_rg_form_view` VALUES("43875", "14", "2016-11-29 03:20:43", "66.249.84.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("43876", "10", "2016-11-29 04:13:02", "220.181.108.153", "14");
INSERT INTO `wp_rg_form_view` VALUES("43877", "3", "2016-11-29 04:13:03", "220.181.108.153", "59");
INSERT INTO `wp_rg_form_view` VALUES("43878", "13", "2016-11-29 04:25:31", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("43879", "6", "2016-11-29 05:14:42", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("43880", "10", "2016-11-29 05:14:43", "207.46.13.17", "21");
INSERT INTO `wp_rg_form_view` VALUES("43881", "3", "2016-11-29 05:14:43", "207.46.13.17", "88");
INSERT INTO `wp_rg_form_view` VALUES("43882", "13", "2016-11-29 05:54:10", "37.115.113.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("43883", "10", "2016-11-29 06:02:01", "207.46.13.77", "12");
INSERT INTO `wp_rg_form_view` VALUES("43884", "3", "2016-11-29 06:02:01", "207.46.13.77", "51");
INSERT INTO `wp_rg_form_view` VALUES("43885", "14", "2016-11-29 06:28:02", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43886", "10", "2016-11-29 07:03:52", "68.180.229.172", "14");
INSERT INTO `wp_rg_form_view` VALUES("43887", "3", "2016-11-29 07:03:57", "68.180.229.172", "49");
INSERT INTO `wp_rg_form_view` VALUES("43888", "10", "2016-11-29 08:17:29", "207.46.13.17", "6");
INSERT INTO `wp_rg_form_view` VALUES("43889", "3", "2016-11-29 08:17:30", "207.46.13.17", "24");
INSERT INTO `wp_rg_form_view` VALUES("43890", "9", "2016-11-29 08:33:08", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43891", "10", "2016-11-29 09:00:07", "207.46.13.83", "14");
INSERT INTO `wp_rg_form_view` VALUES("43892", "3", "2016-11-29 09:00:07", "207.46.13.83", "59");
INSERT INTO `wp_rg_form_view` VALUES("43893", "10", "2016-11-29 10:17:04", "157.55.39.27", "14");
INSERT INTO `wp_rg_form_view` VALUES("43894", "3", "2016-11-29 10:17:04", "157.55.39.27", "60");
INSERT INTO `wp_rg_form_view` VALUES("43895", "10", "2016-11-29 11:12:52", "202.46.54.192", "6");
INSERT INTO `wp_rg_form_view` VALUES("43896", "3", "2016-11-29 11:12:52", "202.46.54.192", "24");
INSERT INTO `wp_rg_form_view` VALUES("43897", "13", "2016-11-29 12:08:38", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("43898", "13", "2016-11-29 12:08:38", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43899", "10", "2016-11-29 12:08:39", "46.118.154.190", "30");
INSERT INTO `wp_rg_form_view` VALUES("43900", "10", "2016-11-29 12:08:39", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43901", "3", "2016-11-29 12:08:39", "46.118.154.190", "114");
INSERT INTO `wp_rg_form_view` VALUES("43902", "3", "2016-11-29 12:08:39", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("43903", "14", "2016-11-29 12:36:15", "206.221.180.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("43904", "10", "2016-11-29 13:01:31", "68.180.229.172", "74");
INSERT INTO `wp_rg_form_view` VALUES("43905", "3", "2016-11-29 13:01:31", "68.180.229.172", "291");
INSERT INTO `wp_rg_form_view` VALUES("43906", "11", "2016-11-29 13:26:23", "158.69.228.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("43907", "2", "2016-11-29 13:26:28", "158.69.228.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("43908", "3", "2016-11-29 14:08:15", "217.69.133.233", "49");
INSERT INTO `wp_rg_form_view` VALUES("43909", "10", "2016-11-29 14:08:15", "217.69.133.233", "13");
INSERT INTO `wp_rg_form_view` VALUES("43910", "13", "2016-11-29 14:34:16", "178.137.163.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("43911", "10", "2016-11-29 15:02:14", "157.55.39.27", "23");
INSERT INTO `wp_rg_form_view` VALUES("43912", "3", "2016-11-29 15:02:14", "157.55.39.27", "100");
INSERT INTO `wp_rg_form_view` VALUES("43913", "9", "2016-11-29 15:42:54", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("43914", "10", "2016-11-29 16:37:37", "66.249.79.156", "71");
INSERT INTO `wp_rg_form_view` VALUES("43915", "3", "2016-11-29 16:37:38", "66.249.79.156", "281");
INSERT INTO `wp_rg_form_view` VALUES("43916", "11", "2016-11-29 16:37:46", "149.91.123.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("43917", "2", "2016-11-29 16:39:19", "149.91.123.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("43918", "10", "2016-11-29 17:03:51", "209.89.230.147", "31");
INSERT INTO `wp_rg_form_view` VALUES("43919", "3", "2016-11-29 17:03:51", "209.89.230.147", "121");
INSERT INTO `wp_rg_form_view` VALUES("43920", "13", "2016-11-29 17:56:27", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43921", "10", "2016-11-29 18:00:51", "24.108.8.252", "39");
INSERT INTO `wp_rg_form_view` VALUES("43922", "10", "2016-11-29 18:00:51", "24.108.8.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("43923", "3", "2016-11-29 18:00:51", "24.108.8.252", "172");
INSERT INTO `wp_rg_form_view` VALUES("43924", "14", "2016-11-29 18:18:25", "24.68.157.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("43925", "10", "2016-11-29 19:11:51", "157.55.39.27", "17");
INSERT INTO `wp_rg_form_view` VALUES("43926", "3", "2016-11-29 19:11:51", "157.55.39.27", "64");
INSERT INTO `wp_rg_form_view` VALUES("43927", "10", "2016-11-29 20:08:12", "70.67.53.106", "23");
INSERT INTO `wp_rg_form_view` VALUES("43928", "3", "2016-11-29 20:08:12", "70.67.53.106", "89");
INSERT INTO `wp_rg_form_view` VALUES("43929", "8", "2016-11-29 20:26:36", "217.69.133.232", "2");
INSERT INTO `wp_rg_form_view` VALUES("43930", "13", "2016-11-29 20:26:55", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("43931", "3", "2016-11-29 21:07:45", "207.46.13.77", "105");
INSERT INTO `wp_rg_form_view` VALUES("43932", "10", "2016-11-29 21:07:46", "207.46.13.77", "24");
INSERT INTO `wp_rg_form_view` VALUES("43933", "13", "2016-11-29 21:25:07", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43934", "3", "2016-11-29 22:01:07", "217.69.133.230", "55");
INSERT INTO `wp_rg_form_view` VALUES("43935", "10", "2016-11-29 22:01:08", "217.69.133.230", "14");
INSERT INTO `wp_rg_form_view` VALUES("43936", "13", "2016-11-29 22:23:41", "178.137.163.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("43937", "13", "2016-11-29 22:23:41", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("43938", "10", "2016-11-29 23:00:20", "157.55.39.27", "18");
INSERT INTO `wp_rg_form_view` VALUES("43939", "3", "2016-11-29 23:00:20", "157.55.39.27", "65");
INSERT INTO `wp_rg_form_view` VALUES("43940", "7", "2016-11-29 23:35:57", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("43941", "12", "2016-11-29 23:36:07", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("43942", "10", "2016-11-30 00:04:56", "207.194.133.9", "14");
INSERT INTO `wp_rg_form_view` VALUES("43943", "3", "2016-11-30 00:04:56", "207.194.133.9", "56");
INSERT INTO `wp_rg_form_view` VALUES("43944", "13", "2016-11-30 00:08:36", "37.115.113.73", "4");
INSERT INTO `wp_rg_form_view` VALUES("43945", "10", "2016-11-30 01:11:06", "217.69.133.229", "66");
INSERT INTO `wp_rg_form_view` VALUES("43946", "3", "2016-11-30 01:11:06", "217.69.133.229", "228");
INSERT INTO `wp_rg_form_view` VALUES("43947", "14", "2016-11-30 01:17:11", "129.42.8.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("43948", "13", "2016-11-30 01:55:51", "24.68.17.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("43949", "10", "2016-11-30 02:03:31", "202.46.52.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("43950", "3", "2016-11-30 02:03:31", "202.46.52.106", "40");
INSERT INTO `wp_rg_form_view` VALUES("43951", "13", "2016-11-30 03:04:21", "134.249.51.255", "3");
INSERT INTO `wp_rg_form_view` VALUES("43952", "10", "2016-11-30 03:04:22", "134.249.51.255", "12");
INSERT INTO `wp_rg_form_view` VALUES("43953", "3", "2016-11-30 03:04:22", "134.249.51.255", "48");
INSERT INTO `wp_rg_form_view` VALUES("43954", "9", "2016-11-30 03:55:04", "207.46.13.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("43955", "10", "2016-11-30 04:00:50", "163.172.65.127", "64");
INSERT INTO `wp_rg_form_view` VALUES("43956", "3", "2016-11-30 04:00:50", "163.172.65.127", "257");
INSERT INTO `wp_rg_form_view` VALUES("43957", "13", "2016-11-30 04:16:42", "178.137.161.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("43958", "13", "2016-11-30 04:16:42", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43959", "2", "2016-11-30 04:58:34", "104.131.107.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("43960", "11", "2016-11-30 04:58:35", "104.131.107.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("43961", "10", "2016-11-30 05:14:18", "220.181.108.79", "22");
INSERT INTO `wp_rg_form_view` VALUES("43962", "3", "2016-11-30 05:14:18", "220.181.108.79", "89");
INSERT INTO `wp_rg_form_view` VALUES("43963", "13", "2016-11-30 05:15:51", "178.137.163.110", "6");
INSERT INTO `wp_rg_form_view` VALUES("43964", "10", "2016-11-30 06:30:51", "70.66.168.103", "15");
INSERT INTO `wp_rg_form_view` VALUES("43965", "3", "2016-11-30 06:30:52", "70.66.168.103", "56");
INSERT INTO `wp_rg_form_view` VALUES("43966", "9", "2016-11-30 06:53:06", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43967", "10", "2016-11-30 07:25:53", "52.207.240.119", "8");
INSERT INTO `wp_rg_form_view` VALUES("43968", "3", "2016-11-30 07:25:54", "52.207.240.119", "32");
INSERT INTO `wp_rg_form_view` VALUES("43969", "10", "2016-11-30 08:05:03", "87.10.41.232", "70");
INSERT INTO `wp_rg_form_view` VALUES("43970", "3", "2016-11-30 08:05:03", "87.10.41.232", "284");
INSERT INTO `wp_rg_form_view` VALUES("43971", "11", "2016-11-30 08:05:09", "87.10.41.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("43972", "2", "2016-11-30 08:06:25", "87.10.41.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("43973", "10", "2016-11-30 09:06:41", "40.77.167.87", "10");
INSERT INTO `wp_rg_form_view` VALUES("43974", "3", "2016-11-30 09:06:41", "40.77.167.87", "32");
INSERT INTO `wp_rg_form_view` VALUES("43975", "14", "2016-11-30 09:19:42", "5.196.140.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("43976", "13", "2016-11-30 10:02:27", "46.118.154.190", "5");
INSERT INTO `wp_rg_form_view` VALUES("43977", "10", "2016-11-30 10:02:28", "46.118.154.190", "22");
INSERT INTO `wp_rg_form_view` VALUES("43978", "3", "2016-11-30 10:02:28", "46.118.154.190", "96");
INSERT INTO `wp_rg_form_view` VALUES("43979", "3", "2016-11-30 11:00:44", "68.180.229.172", "9");
INSERT INTO `wp_rg_form_view` VALUES("43980", "10", "2016-11-30 11:00:44", "68.180.229.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("43981", "10", "2016-11-30 12:09:44", "77.75.79.36", "20");
INSERT INTO `wp_rg_form_view` VALUES("43982", "3", "2016-11-30 12:09:48", "77.75.79.36", "73");
INSERT INTO `wp_rg_form_view` VALUES("43983", "5", "2016-11-30 12:21:19", "207.46.13.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("43984", "13", "2016-11-30 13:06:41", "134.249.51.255", "5");
INSERT INTO `wp_rg_form_view` VALUES("43985", "13", "2016-11-30 13:06:41", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("43986", "10", "2016-11-30 13:06:41", "134.249.51.255", "34");
INSERT INTO `wp_rg_form_view` VALUES("43987", "3", "2016-11-30 13:06:41", "134.249.51.255", "130");
INSERT INTO `wp_rg_form_view` VALUES("43988", "10", "2016-11-30 14:01:03", "77.85.14.21", "114");
INSERT INTO `wp_rg_form_view` VALUES("43989", "3", "2016-11-30 14:01:03", "77.85.14.21", "467");
INSERT INTO `wp_rg_form_view` VALUES("43990", "11", "2016-11-30 14:05:56", "77.75.76.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("43991", "14", "2016-11-30 14:10:13", "77.85.14.21", "3");
INSERT INTO `wp_rg_form_view` VALUES("43992", "2", "2016-11-30 14:11:35", "77.85.14.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("43993", "10", "2016-11-30 15:02:39", "77.75.78.164", "26");
INSERT INTO `wp_rg_form_view` VALUES("43994", "3", "2016-11-30 15:02:39", "77.75.78.164", "99");
INSERT INTO `wp_rg_form_view` VALUES("43995", "14", "2016-11-30 15:07:25", "213.184.99.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("43996", "13", "2016-11-30 15:24:20", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("43997", "8", "2016-11-30 15:47:37", "163.172.66.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("43998", "3", "2016-11-30 16:29:20", "207.46.13.83", "26");
INSERT INTO `wp_rg_form_view` VALUES("43999", "10", "2016-11-30 16:29:20", "207.46.13.83", "6");
INSERT INTO `wp_rg_form_view` VALUES("44000", "3", "2016-11-30 17:08:37", "207.46.13.83", "9");
INSERT INTO `wp_rg_form_view` VALUES("44001", "10", "2016-11-30 17:08:37", "207.46.13.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("44002", "10", "2016-11-30 18:18:37", "207.46.13.69", "17");
INSERT INTO `wp_rg_form_view` VALUES("44003", "3", "2016-11-30 18:18:39", "207.46.13.69", "64");
INSERT INTO `wp_rg_form_view` VALUES("44004", "10", "2016-11-30 19:00:20", "184.68.134.18", "43");
INSERT INTO `wp_rg_form_view` VALUES("44005", "3", "2016-11-30 19:00:21", "184.68.134.18", "168");
INSERT INTO `wp_rg_form_view` VALUES("44006", "14", "2016-11-30 19:15:59", "184.68.134.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("44007", "10", "2016-11-30 20:04:23", "77.75.79.17", "17");
INSERT INTO `wp_rg_form_view` VALUES("44008", "3", "2016-11-30 20:04:23", "77.75.79.17", "64");
INSERT INTO `wp_rg_form_view` VALUES("44009", "10", "2016-11-30 21:01:56", "77.75.78.164", "19");
INSERT INTO `wp_rg_form_view` VALUES("44010", "3", "2016-11-30 21:01:56", "77.75.78.164", "73");
INSERT INTO `wp_rg_form_view` VALUES("44011", "10", "2016-11-30 22:00:43", "184.71.26.186", "22");
INSERT INTO `wp_rg_form_view` VALUES("44012", "3", "2016-11-30 22:00:43", "184.71.26.186", "89");
INSERT INTO `wp_rg_form_view` VALUES("44013", "13", "2016-11-30 22:05:37", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44014", "10", "2016-11-30 23:01:40", "68.180.229.56", "10");
INSERT INTO `wp_rg_form_view` VALUES("44015", "3", "2016-11-30 23:01:40", "68.180.229.56", "41");
INSERT INTO `wp_rg_form_view` VALUES("44016", "10", "2016-12-01 00:29:22", "207.46.13.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("44017", "3", "2016-12-01 00:29:23", "207.46.13.69", "8");
INSERT INTO `wp_rg_form_view` VALUES("44018", "14", "2016-12-01 01:40:23", "39.40.226.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("44019", "10", "2016-12-01 01:40:25", "39.40.226.17", "8");
INSERT INTO `wp_rg_form_view` VALUES("44020", "3", "2016-12-01 01:40:26", "39.40.226.17", "32");
INSERT INTO `wp_rg_form_view` VALUES("44021", "10", "2016-12-01 02:05:07", "77.75.78.170", "8");
INSERT INTO `wp_rg_form_view` VALUES("44022", "3", "2016-12-01 02:05:08", "77.75.78.170", "33");
INSERT INTO `wp_rg_form_view` VALUES("44023", "10", "2016-12-01 03:20:49", "64.114.25.211", "8");
INSERT INTO `wp_rg_form_view` VALUES("44024", "3", "2016-12-01 03:20:49", "64.114.25.211", "37");
INSERT INTO `wp_rg_form_view` VALUES("44025", "3", "2016-12-01 04:31:06", "202.46.53.190", "9");
INSERT INTO `wp_rg_form_view` VALUES("44026", "10", "2016-12-01 04:31:06", "202.46.53.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("44027", "13", "2016-12-01 05:31:03", "184.147.18.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("44028", "10", "2016-12-01 05:31:04", "184.147.18.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("44029", "3", "2016-12-01 05:31:05", "184.147.18.251", "8");
INSERT INTO `wp_rg_form_view` VALUES("44030", "10", "2016-12-01 06:07:11", "199.16.157.183", "13");
INSERT INTO `wp_rg_form_view` VALUES("44031", "10", "2016-12-01 06:07:11", "199.16.157.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("44032", "3", "2016-12-01 06:07:16", "199.16.157.181", "47");
INSERT INTO `wp_rg_form_view` VALUES("44033", "3", "2016-12-01 06:07:16", "199.16.157.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("44034", "13", "2016-12-01 06:08:12", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44035", "3", "2016-12-01 07:03:04", "68.180.229.56", "57");
INSERT INTO `wp_rg_form_view` VALUES("44036", "10", "2016-12-01 07:03:07", "68.180.229.56", "14");
INSERT INTO `wp_rg_form_view` VALUES("44037", "3", "2016-12-01 08:04:27", "40.77.167.87", "84");
INSERT INTO `wp_rg_form_view` VALUES("44038", "10", "2016-12-01 08:04:27", "40.77.167.87", "20");
INSERT INTO `wp_rg_form_view` VALUES("44039", "13", "2016-12-01 08:27:11", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44040", "3", "2016-12-01 09:13:50", "202.46.49.202", "17");
INSERT INTO `wp_rg_form_view` VALUES("44041", "10", "2016-12-01 09:13:56", "202.46.49.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("44042", "10", "2016-12-01 10:11:07", "66.249.79.140", "62");
INSERT INTO `wp_rg_form_view` VALUES("44043", "3", "2016-12-01 10:11:09", "66.249.79.140", "249");
INSERT INTO `wp_rg_form_view` VALUES("44044", "11", "2016-12-01 10:57:10", "50.163.68.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44045", "2", "2016-12-01 10:58:36", "50.163.68.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44046", "10", "2016-12-01 11:00:02", "50.163.68.110", "87");
INSERT INTO `wp_rg_form_view` VALUES("44047", "3", "2016-12-01 11:00:03", "50.163.68.110", "349");
INSERT INTO `wp_rg_form_view` VALUES("44048", "11", "2016-12-01 11:37:27", "38.111.147.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("44049", "13", "2016-12-01 11:42:22", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44050", "2", "2016-12-01 11:45:13", "38.111.147.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("44051", "12", "2016-12-01 11:47:52", "38.111.147.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("44052", "10", "2016-12-01 12:10:21", "163.172.64.222", "13");
INSERT INTO `wp_rg_form_view` VALUES("44053", "3", "2016-12-01 12:10:21", "163.172.64.222", "54");
INSERT INTO `wp_rg_form_view` VALUES("44054", "13", "2016-12-01 13:14:16", "5.248.253.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("44055", "10", "2016-12-01 13:14:17", "5.248.253.186", "8");
INSERT INTO `wp_rg_form_view` VALUES("44056", "3", "2016-12-01 13:14:17", "5.248.253.186", "32");
INSERT INTO `wp_rg_form_view` VALUES("44057", "10", "2016-12-01 14:22:53", "46.229.168.74", "18");
INSERT INTO `wp_rg_form_view` VALUES("44058", "3", "2016-12-01 14:22:55", "46.229.168.74", "72");
INSERT INTO `wp_rg_form_view` VALUES("44059", "10", "2016-12-01 15:02:16", "24.68.132.30", "34");
INSERT INTO `wp_rg_form_view` VALUES("44060", "3", "2016-12-01 15:02:16", "24.68.132.30", "141");
INSERT INTO `wp_rg_form_view` VALUES("44061", "13", "2016-12-01 16:15:25", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44062", "10", "2016-12-01 16:15:26", "178.137.163.110", "15");
INSERT INTO `wp_rg_form_view` VALUES("44063", "10", "2016-12-01 16:15:26", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44064", "3", "2016-12-01 16:15:26", "178.137.163.110", "68");
INSERT INTO `wp_rg_form_view` VALUES("44065", "3", "2016-12-01 16:15:26", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44066", "13", "2016-12-01 17:11:00", "178.137.161.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("44067", "10", "2016-12-01 17:11:02", "178.137.161.77", "47");
INSERT INTO `wp_rg_form_view` VALUES("44068", "10", "2016-12-01 17:11:02", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("44069", "3", "2016-12-01 17:11:03", "178.137.161.77", "176");
INSERT INTO `wp_rg_form_view` VALUES("44070", "14", "2016-12-01 17:43:27", "39.40.215.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("44071", "10", "2016-12-01 18:41:31", "142.31.70.50", "7");
INSERT INTO `wp_rg_form_view` VALUES("44072", "3", "2016-12-01 18:41:33", "142.31.70.50", "24");
INSERT INTO `wp_rg_form_view` VALUES("44073", "10", "2016-12-01 19:00:07", "142.31.70.50", "19");
INSERT INTO `wp_rg_form_view` VALUES("44074", "3", "2016-12-01 19:00:08", "142.31.70.50", "74");
INSERT INTO `wp_rg_form_view` VALUES("44075", "13", "2016-12-01 19:54:43", "5.248.253.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("44076", "10", "2016-12-01 20:07:00", "46.229.168.69", "12");
INSERT INTO `wp_rg_form_view` VALUES("44077", "3", "2016-12-01 20:07:00", "46.229.168.69", "48");
INSERT INTO `wp_rg_form_view` VALUES("44078", "10", "2016-12-01 21:10:47", "184.69.27.226", "20");
INSERT INTO `wp_rg_form_view` VALUES("44079", "3", "2016-12-01 21:10:50", "184.69.27.226", "84");
INSERT INTO `wp_rg_form_view` VALUES("44080", "10", "2016-12-01 22:10:22", "46.229.168.65", "16");
INSERT INTO `wp_rg_form_view` VALUES("44081", "3", "2016-12-01 22:10:22", "46.229.168.65", "65");
INSERT INTO `wp_rg_form_view` VALUES("44082", "13", "2016-12-01 23:06:33", "178.137.163.110", "5");
INSERT INTO `wp_rg_form_view` VALUES("44083", "10", "2016-12-01 23:06:34", "178.137.163.110", "61");
INSERT INTO `wp_rg_form_view` VALUES("44084", "10", "2016-12-01 23:06:34", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44085", "3", "2016-12-01 23:06:34", "178.137.163.110", "250");
INSERT INTO `wp_rg_form_view` VALUES("44086", "3", "2016-12-01 23:06:34", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44087", "10", "2016-12-02 00:14:55", "199.59.150.182", "239");
INSERT INTO `wp_rg_form_view` VALUES("44088", "3", "2016-12-02 00:14:56", "199.59.150.182", "902");
INSERT INTO `wp_rg_form_view` VALUES("44089", "9", "2016-12-02 00:31:16", "207.46.13.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("44090", "11", "2016-12-02 00:31:31", "207.46.13.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("44091", "8", "2016-12-02 00:33:18", "157.55.39.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("44092", "13", "2016-12-02 00:33:54", "157.55.39.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("44093", "12", "2016-12-02 00:35:08", "207.46.13.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("44094", "10", "2016-12-02 01:00:12", "64.233.172.140", "104");
INSERT INTO `wp_rg_form_view` VALUES("44095", "3", "2016-12-02 01:00:12", "64.233.172.140", "389");
INSERT INTO `wp_rg_form_view` VALUES("44096", "13", "2016-12-02 01:02:27", "178.137.161.77", "10");
INSERT INTO `wp_rg_form_view` VALUES("44097", "12", "2016-12-02 01:40:07", "207.46.13.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("44098", "10", "2016-12-02 02:10:39", "202.46.52.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("44099", "3", "2016-12-02 02:10:40", "202.46.52.112", "24");
INSERT INTO `wp_rg_form_view` VALUES("44100", "10", "2016-12-02 03:17:38", "202.46.53.146", "4");
INSERT INTO `wp_rg_form_view` VALUES("44101", "3", "2016-12-02 03:17:38", "202.46.53.146", "16");
INSERT INTO `wp_rg_form_view` VALUES("44102", "14", "2016-12-02 03:44:02", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44103", "10", "2016-12-02 04:07:03", "96.50.63.233", "8");
INSERT INTO `wp_rg_form_view` VALUES("44104", "3", "2016-12-02 04:07:03", "96.50.63.233", "32");
INSERT INTO `wp_rg_form_view` VALUES("44105", "13", "2016-12-02 05:01:33", "207.46.13.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("44106", "10", "2016-12-02 05:01:34", "207.46.13.179", "8");
INSERT INTO `wp_rg_form_view` VALUES("44107", "3", "2016-12-02 05:01:34", "207.46.13.179", "34");
INSERT INTO `wp_rg_form_view` VALUES("44108", "13", "2016-12-02 06:48:46", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("44109", "10", "2016-12-02 06:48:50", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44110", "10", "2016-12-02 06:48:50", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44111", "3", "2016-12-02 06:48:51", "46.118.154.190", "15");
INSERT INTO `wp_rg_form_view` VALUES("44112", "3", "2016-12-02 06:48:51", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44113", "10", "2016-12-02 07:02:26", "184.66.128.52", "26");
INSERT INTO `wp_rg_form_view` VALUES("44114", "3", "2016-12-02 07:02:26", "184.66.128.52", "104");
INSERT INTO `wp_rg_form_view` VALUES("44115", "14", "2016-12-02 07:04:17", "184.66.128.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("44116", "13", "2016-12-02 08:21:08", "134.249.51.255", "3");
INSERT INTO `wp_rg_form_view` VALUES("44117", "10", "2016-12-02 08:21:09", "134.249.51.255", "27");
INSERT INTO `wp_rg_form_view` VALUES("44118", "10", "2016-12-02 08:21:09", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44119", "3", "2016-12-02 08:21:09", "134.249.51.255", "111");
INSERT INTO `wp_rg_form_view` VALUES("44120", "3", "2016-12-02 08:21:09", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44121", "10", "2016-12-02 09:14:17", "207.46.13.69", "20");
INSERT INTO `wp_rg_form_view` VALUES("44122", "3", "2016-12-02 09:14:19", "207.46.13.69", "73");
INSERT INTO `wp_rg_form_view` VALUES("44123", "10", "2016-12-02 10:06:39", "77.75.76.170", "76");
INSERT INTO `wp_rg_form_view` VALUES("44124", "3", "2016-12-02 10:06:39", "77.75.76.170", "305");
INSERT INTO `wp_rg_form_view` VALUES("44125", "11", "2016-12-02 10:35:15", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("44126", "2", "2016-12-02 10:36:44", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("44127", "13", "2016-12-02 10:37:03", "134.249.51.255", "6");
INSERT INTO `wp_rg_form_view` VALUES("44128", "10", "2016-12-02 11:23:17", "46.229.168.71", "30");
INSERT INTO `wp_rg_form_view` VALUES("44129", "3", "2016-12-02 11:23:17", "46.229.168.71", "128");
INSERT INTO `wp_rg_form_view` VALUES("44130", "3", "2016-12-02 12:03:22", "66.249.79.140", "25");
INSERT INTO `wp_rg_form_view` VALUES("44131", "10", "2016-12-02 12:15:42", "207.46.13.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("44132", "13", "2016-12-02 12:31:15", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("44133", "10", "2016-12-02 14:41:23", "202.46.48.205", "8");
INSERT INTO `wp_rg_form_view` VALUES("44134", "3", "2016-12-02 14:41:25", "202.46.48.205", "32");
INSERT INTO `wp_rg_form_view` VALUES("44135", "10", "2016-12-02 15:01:19", "24.68.138.239", "75");
INSERT INTO `wp_rg_form_view` VALUES("44136", "3", "2016-12-02 15:01:19", "24.68.138.239", "297");
INSERT INTO `wp_rg_form_view` VALUES("44137", "11", "2016-12-02 15:05:49", "85.148.42.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("44138", "2", "2016-12-02 15:06:57", "85.148.42.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("44139", "10", "2016-12-02 16:26:47", "23.227.199.72", "62");
INSERT INTO `wp_rg_form_view` VALUES("44140", "3", "2016-12-02 16:26:48", "23.227.199.72", "249");
INSERT INTO `wp_rg_form_view` VALUES("44141", "11", "2016-12-02 16:26:54", "23.227.199.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("44142", "2", "2016-12-02 16:28:27", "23.227.199.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("44143", "10", "2016-12-02 17:19:10", "202.46.53.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("44144", "3", "2016-12-02 17:19:22", "202.46.53.90", "8");
INSERT INTO `wp_rg_form_view` VALUES("44145", "10", "2016-12-02 18:12:31", "142.36.122.76", "35");
INSERT INTO `wp_rg_form_view` VALUES("44146", "3", "2016-12-02 18:12:32", "142.36.122.76", "137");
INSERT INTO `wp_rg_form_view` VALUES("44147", "14", "2016-12-02 18:13:29", "142.36.122.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("44148", "13", "2016-12-02 18:40:53", "46.118.154.190", "5");
INSERT INTO `wp_rg_form_view` VALUES("44149", "10", "2016-12-02 19:34:28", "64.141.84.46", "79");
INSERT INTO `wp_rg_form_view` VALUES("44150", "3", "2016-12-02 19:34:31", "64.141.84.46", "310");
INSERT INTO `wp_rg_form_view` VALUES("44151", "13", "2016-12-02 19:45:00", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44152", "6", "2016-12-02 19:47:03", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44153", "9", "2016-12-02 19:49:17", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44154", "8", "2016-12-02 19:55:59", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44155", "10", "2016-12-02 20:00:05", "136.243.36.94", "78");
INSERT INTO `wp_rg_form_view` VALUES("44156", "3", "2016-12-02 20:00:06", "136.243.36.94", "331");
INSERT INTO `wp_rg_form_view` VALUES("44157", "9", "2016-12-02 20:04:44", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("44158", "8", "2016-12-02 20:05:17", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("44159", "6", "2016-12-02 20:09:06", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("44160", "13", "2016-12-02 20:46:48", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("44161", "14", "2016-12-02 21:04:36", "70.170.44.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("44162", "10", "2016-12-02 21:04:37", "70.170.44.69", "16");
INSERT INTO `wp_rg_form_view` VALUES("44163", "3", "2016-12-02 21:04:37", "70.170.44.69", "66");
INSERT INTO `wp_rg_form_view` VALUES("44164", "13", "2016-12-02 21:38:51", "178.137.161.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("44165", "10", "2016-12-02 22:05:37", "209.52.88.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("44166", "3", "2016-12-02 22:05:37", "209.52.88.109", "25");
INSERT INTO `wp_rg_form_view` VALUES("44167", "3", "2016-12-02 23:04:31", "185.158.119.133", "115");
INSERT INTO `wp_rg_form_view` VALUES("44168", "10", "2016-12-02 23:04:33", "185.158.119.133", "29");
INSERT INTO `wp_rg_form_view` VALUES("44169", "2", "2016-12-02 23:46:20", "213.133.166.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("44170", "10", "2016-12-03 00:28:23", "5.149.255.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("44171", "3", "2016-12-03 00:28:24", "5.149.255.131", "16");
INSERT INTO `wp_rg_form_view` VALUES("44172", "10", "2016-12-03 01:02:09", "202.46.55.154", "4");
INSERT INTO `wp_rg_form_view` VALUES("44173", "3", "2016-12-03 01:02:09", "202.46.55.154", "16");
INSERT INTO `wp_rg_form_view` VALUES("44174", "10", "2016-12-03 02:11:48", "66.249.79.144", "26");
INSERT INTO `wp_rg_form_view` VALUES("44175", "3", "2016-12-03 02:11:50", "66.249.79.144", "105");
INSERT INTO `wp_rg_form_view` VALUES("44176", "13", "2016-12-03 02:35:54", "5.248.253.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("44177", "14", "2016-12-03 02:41:40", "107.150.79.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("44178", "10", "2016-12-03 03:06:50", "68.180.229.56", "14");
INSERT INTO `wp_rg_form_view` VALUES("44179", "3", "2016-12-03 03:06:50", "68.180.229.56", "56");
INSERT INTO `wp_rg_form_view` VALUES("44180", "13", "2016-12-03 03:29:58", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("44181", "10", "2016-12-03 04:03:18", "50.92.248.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("44182", "3", "2016-12-03 04:03:18", "50.92.248.98", "8");
INSERT INTO `wp_rg_form_view` VALUES("44183", "10", "2016-12-03 05:28:51", "64.114.25.211", "10");
INSERT INTO `wp_rg_form_view` VALUES("44184", "3", "2016-12-03 05:28:53", "64.114.25.211", "32");
INSERT INTO `wp_rg_form_view` VALUES("44185", "10", "2016-12-03 06:03:17", "212.121.106.45", "12");
INSERT INTO `wp_rg_form_view` VALUES("44186", "3", "2016-12-03 06:03:17", "212.121.106.45", "49");
INSERT INTO `wp_rg_form_view` VALUES("44187", "13", "2016-12-03 06:15:22", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44188", "10", "2016-12-03 07:00:29", "46.229.168.67", "16");
INSERT INTO `wp_rg_form_view` VALUES("44189", "3", "2016-12-03 07:00:29", "46.229.168.67", "64");
INSERT INTO `wp_rg_form_view` VALUES("44190", "14", "2016-12-03 08:36:17", "90.154.127.19", "4");
INSERT INTO `wp_rg_form_view` VALUES("44191", "10", "2016-12-03 08:36:19", "90.154.127.19", "32");
INSERT INTO `wp_rg_form_view` VALUES("44192", "3", "2016-12-03 08:36:20", "90.154.127.19", "135");
INSERT INTO `wp_rg_form_view` VALUES("44193", "13", "2016-12-03 08:50:05", "178.137.161.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("44194", "13", "2016-12-03 09:07:36", "178.137.163.110", "4");
INSERT INTO `wp_rg_form_view` VALUES("44195", "10", "2016-12-03 09:07:36", "178.137.163.110", "18");
INSERT INTO `wp_rg_form_view` VALUES("44196", "3", "2016-12-03 09:07:37", "178.137.163.110", "74");
INSERT INTO `wp_rg_form_view` VALUES("44197", "3", "2016-12-03 10:02:40", "46.229.168.65", "67");
INSERT INTO `wp_rg_form_view` VALUES("44198", "10", "2016-12-03 10:02:40", "46.229.168.65", "14");
INSERT INTO `wp_rg_form_view` VALUES("44199", "13", "2016-12-03 10:30:20", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44200", "10", "2016-12-03 11:17:46", "77.75.77.72", "10");
INSERT INTO `wp_rg_form_view` VALUES("44201", "3", "2016-12-03 11:17:47", "77.75.77.72", "43");
INSERT INTO `wp_rg_form_view` VALUES("44202", "3", "2016-12-03 12:05:02", "68.180.229.56", "41");
INSERT INTO `wp_rg_form_view` VALUES("44203", "10", "2016-12-03 12:05:03", "68.180.229.56", "10");
INSERT INTO `wp_rg_form_view` VALUES("44204", "13", "2016-12-03 12:42:46", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44205", "10", "2016-12-03 13:16:32", "77.75.78.167", "14");
INSERT INTO `wp_rg_form_view` VALUES("44206", "3", "2016-12-03 13:16:33", "77.75.78.167", "60");
INSERT INTO `wp_rg_form_view` VALUES("44207", "14", "2016-12-03 13:56:28", "163.172.65.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("44208", "10", "2016-12-03 14:01:00", "66.249.79.140", "14");
INSERT INTO `wp_rg_form_view` VALUES("44209", "3", "2016-12-03 14:01:00", "66.249.79.140", "59");
INSERT INTO `wp_rg_form_view` VALUES("44210", "10", "2016-12-03 15:03:09", "202.46.48.92", "12");
INSERT INTO `wp_rg_form_view` VALUES("44211", "3", "2016-12-03 15:03:10", "202.46.48.92", "48");
INSERT INTO `wp_rg_form_view` VALUES("44212", "11", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44213", "3", "2016-12-03 16:24:44", "104.236.91.249", "178");
INSERT INTO `wp_rg_form_view` VALUES("44214", "10", "2016-12-03 16:24:44", "104.236.91.249", "30");
INSERT INTO `wp_rg_form_view` VALUES("44215", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44216", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44217", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44218", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44219", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44220", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44221", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44222", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44223", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44224", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44225", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44226", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44227", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44228", "10", "2016-12-03 16:24:44", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44229", "2", "2016-12-03 16:24:45", "104.236.91.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("44230", "3", "2016-12-03 17:11:23", "46.229.168.72", "209");
INSERT INTO `wp_rg_form_view` VALUES("44231", "10", "2016-12-03 17:17:36", "207.6.120.73", "52");
INSERT INTO `wp_rg_form_view` VALUES("44232", "13", "2016-12-03 17:18:08", "178.137.161.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("44233", "13", "2016-12-03 17:18:08", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("44234", "13", "2016-12-03 17:18:08", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("44235", "10", "2016-12-03 18:16:07", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("44236", "3", "2016-12-03 18:16:08", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("44237", "10", "2016-12-03 19:20:22", "144.76.80.151", "14");
INSERT INTO `wp_rg_form_view` VALUES("44238", "3", "2016-12-03 19:20:28", "144.76.80.151", "59");
INSERT INTO `wp_rg_form_view` VALUES("44239", "10", "2016-12-03 20:43:05", "202.46.58.124", "16");
INSERT INTO `wp_rg_form_view` VALUES("44240", "3", "2016-12-03 20:43:06", "202.46.58.124", "64");
INSERT INTO `wp_rg_form_view` VALUES("44241", "13", "2016-12-03 20:52:37", "134.249.51.255", "5");
INSERT INTO `wp_rg_form_view` VALUES("44242", "13", "2016-12-03 20:52:37", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44243", "10", "2016-12-03 21:20:47", "68.180.229.56", "11");
INSERT INTO `wp_rg_form_view` VALUES("44244", "3", "2016-12-03 21:30:09", "149.91.80.132", "36");
INSERT INTO `wp_rg_form_view` VALUES("44245", "10", "2016-12-03 22:56:25", "207.46.13.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("44246", "3", "2016-12-03 22:56:26", "207.46.13.71", "17");
INSERT INTO `wp_rg_form_view` VALUES("44247", "10", "2016-12-03 23:16:30", "207.46.13.69", "10");
INSERT INTO `wp_rg_form_view` VALUES("44248", "3", "2016-12-03 23:16:30", "207.46.13.69", "40");
INSERT INTO `wp_rg_form_view` VALUES("44249", "10", "2016-12-04 00:06:09", "66.249.79.140", "9");
INSERT INTO `wp_rg_form_view` VALUES("44250", "3", "2016-12-04 00:06:09", "66.249.79.140", "56");
INSERT INTO `wp_rg_form_view` VALUES("44251", "2", "2016-12-04 00:23:10", "54.161.86.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("44252", "10", "2016-12-04 01:02:43", "66.249.79.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("44253", "3", "2016-12-04 01:02:43", "66.249.79.144", "48");
INSERT INTO `wp_rg_form_view` VALUES("44254", "13", "2016-12-04 01:10:32", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44255", "10", "2016-12-04 02:11:32", "68.180.229.56", "9");
INSERT INTO `wp_rg_form_view` VALUES("44256", "3", "2016-12-04 02:11:33", "68.180.229.56", "73");
INSERT INTO `wp_rg_form_view` VALUES("44257", "10", "2016-12-04 03:00:24", "216.220.37.161", "38");
INSERT INTO `wp_rg_form_view` VALUES("44258", "3", "2016-12-04 03:00:24", "216.220.37.161", "315");
INSERT INTO `wp_rg_form_view` VALUES("44259", "11", "2016-12-04 03:00:30", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("44260", "2", "2016-12-04 03:02:11", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("44261", "13", "2016-12-04 03:45:56", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44262", "13", "2016-12-04 04:26:26", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44263", "13", "2016-12-04 04:26:26", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44264", "13", "2016-12-04 04:26:26", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44265", "10", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44266", "10", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44267", "10", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44268", "3", "2016-12-04 04:26:27", "134.249.51.255", "22");
INSERT INTO `wp_rg_form_view` VALUES("44269", "3", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44270", "3", "2016-12-04 04:26:27", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44271", "14", "2016-12-04 06:11:37", "103.58.74.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("44272", "10", "2016-12-04 06:11:39", "103.58.74.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("44273", "3", "2016-12-04 06:11:40", "103.58.74.138", "65");
INSERT INTO `wp_rg_form_view` VALUES("44274", "13", "2016-12-04 06:41:25", "134.249.51.255", "2");
INSERT INTO `wp_rg_form_view` VALUES("44275", "13", "2016-12-04 06:41:25", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44276", "10", "2016-12-04 07:12:09", "204.79.180.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("44277", "3", "2016-12-04 07:12:12", "204.79.180.247", "56");
INSERT INTO `wp_rg_form_view` VALUES("44278", "10", "2016-12-04 08:12:07", "199.16.157.181", "12");
INSERT INTO `wp_rg_form_view` VALUES("44279", "3", "2016-12-04 08:12:08", "199.16.157.181", "80");
INSERT INTO `wp_rg_form_view` VALUES("44280", "3", "2016-12-04 09:01:43", "202.46.50.92", "17");
INSERT INTO `wp_rg_form_view` VALUES("44281", "10", "2016-12-04 09:01:43", "202.46.50.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("44282", "10", "2016-12-04 10:23:09", "37.203.209.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("44283", "3", "2016-12-04 10:23:10", "37.203.209.18", "16");
INSERT INTO `wp_rg_form_view` VALUES("44284", "10", "2016-12-04 11:00:59", "68.180.229.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("44285", "3", "2016-12-04 11:00:59", "68.180.229.56", "33");
INSERT INTO `wp_rg_form_view` VALUES("44286", "10", "2016-12-04 12:06:34", "54.161.88.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("44287", "3", "2016-12-04 12:06:34", "54.161.88.167", "16");
INSERT INTO `wp_rg_form_view` VALUES("44288", "10", "2016-12-04 13:19:37", "68.180.229.56", "9");
INSERT INTO `wp_rg_form_view` VALUES("44289", "3", "2016-12-04 13:19:38", "68.180.229.56", "57");
INSERT INTO `wp_rg_form_view` VALUES("44290", "14", "2016-12-04 13:46:08", "104.223.52.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("44291", "10", "2016-12-04 14:06:01", "68.180.229.56", "7");
INSERT INTO `wp_rg_form_view` VALUES("44292", "3", "2016-12-04 14:06:02", "68.180.229.56", "57");
INSERT INTO `wp_rg_form_view` VALUES("44293", "13", "2016-12-04 14:29:43", "178.137.161.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("44294", "5", "2016-12-04 15:23:18", "77.75.76.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("44295", "10", "2016-12-04 15:23:19", "77.75.76.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("44296", "3", "2016-12-04 15:23:21", "77.75.76.171", "40");
INSERT INTO `wp_rg_form_view` VALUES("44297", "13", "2016-12-04 16:19:19", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44298", "13", "2016-12-04 16:19:19", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44299", "10", "2016-12-04 16:19:19", "46.118.154.190", "5");
INSERT INTO `wp_rg_form_view` VALUES("44300", "10", "2016-12-04 16:19:19", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44301", "3", "2016-12-04 16:19:20", "46.118.154.190", "50");
INSERT INTO `wp_rg_form_view` VALUES("44302", "3", "2016-12-04 16:19:20", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44303", "10", "2016-12-04 17:10:53", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("44304", "3", "2016-12-04 17:10:54", "66.249.79.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("44305", "3", "2016-12-04 18:03:56", "68.180.229.56", "53");
INSERT INTO `wp_rg_form_view` VALUES("44306", "10", "2016-12-04 18:03:57", "68.180.229.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("44307", "13", "2016-12-04 18:59:46", "46.118.230.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("44308", "10", "2016-12-04 19:04:54", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("44309", "3", "2016-12-04 19:04:54", "66.249.79.148", "48");
INSERT INTO `wp_rg_form_view` VALUES("44310", "10", "2016-12-04 20:00:50", "202.46.53.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("44311", "3", "2016-12-04 20:00:50", "202.46.53.117", "16");
INSERT INTO `wp_rg_form_view` VALUES("44312", "10", "2016-12-04 22:17:39", "192.169.136.72", "7");
INSERT INTO `wp_rg_form_view` VALUES("44313", "3", "2016-12-04 22:17:47", "199.21.99.202", "62");
INSERT INTO `wp_rg_form_view` VALUES("44314", "3", "2016-12-04 22:17:47", "192.169.136.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("44315", "10", "2016-12-04 23:05:08", "5.9.94.207", "17");
INSERT INTO `wp_rg_form_view` VALUES("44316", "3", "2016-12-04 23:05:08", "5.9.94.207", "134");
INSERT INTO `wp_rg_form_view` VALUES("44317", "14", "2016-12-05 00:21:44", "104.168.75.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("44318", "10", "2016-12-05 00:21:45", "104.168.75.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("44319", "3", "2016-12-05 00:21:45", "104.168.75.3", "99");
INSERT INTO `wp_rg_form_view` VALUES("44320", "13", "2016-12-05 00:58:06", "178.137.161.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("44321", "13", "2016-12-05 01:13:28", "46.118.154.190", "5");
INSERT INTO `wp_rg_form_view` VALUES("44322", "10", "2016-12-05 01:13:28", "46.118.154.190", "9");
INSERT INTO `wp_rg_form_view` VALUES("44323", "3", "2016-12-05 01:13:28", "46.118.154.190", "73");
INSERT INTO `wp_rg_form_view` VALUES("44324", "10", "2016-12-05 02:08:20", "109.173.125.248", "101");
INSERT INTO `wp_rg_form_view` VALUES("44325", "3", "2016-12-05 02:08:21", "109.173.125.248", "725");
INSERT INTO `wp_rg_form_view` VALUES("44326", "14", "2016-12-05 02:10:53", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("44327", "13", "2016-12-05 02:37:36", "46.118.230.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("44328", "7", "2016-12-05 02:58:37", "207.46.13.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("44329", "9", "2016-12-05 02:58:41", "40.77.167.47", "4");
INSERT INTO `wp_rg_form_view` VALUES("44330", "8", "2016-12-05 02:59:26", "207.46.13.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("44331", "5", "2016-12-05 02:59:52", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("44332", "3", "2016-12-05 03:00:00", "207.46.13.71", "135");
INSERT INTO `wp_rg_form_view` VALUES("44333", "6", "2016-12-05 03:00:01", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("44334", "10", "2016-12-05 03:00:01", "207.46.13.71", "18");
INSERT INTO `wp_rg_form_view` VALUES("44335", "13", "2016-12-05 03:00:15", "207.46.13.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("44336", "14", "2016-12-05 03:53:52", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("44337", "3", "2016-12-05 04:09:33", "163.172.66.160", "35");
INSERT INTO `wp_rg_form_view` VALUES("44338", "10", "2016-12-05 04:09:34", "163.172.66.160", "5");
INSERT INTO `wp_rg_form_view` VALUES("44339", "13", "2016-12-05 05:21:03", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44340", "10", "2016-12-05 05:21:06", "178.137.163.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("44341", "10", "2016-12-05 05:21:06", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44342", "10", "2016-12-05 05:21:06", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44343", "3", "2016-12-05 05:21:07", "178.137.163.110", "30");
INSERT INTO `wp_rg_form_view` VALUES("44344", "3", "2016-12-05 05:21:07", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44345", "3", "2016-12-05 05:21:07", "178.137.163.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44346", "14", "2016-12-05 05:33:56", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("44347", "10", "2016-12-05 06:42:09", "24.68.2.22", "5");
INSERT INTO `wp_rg_form_view` VALUES("44348", "3", "2016-12-05 06:42:10", "24.68.2.22", "32");
INSERT INTO `wp_rg_form_view` VALUES("44349", "13", "2016-12-05 07:03:17", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44350", "10", "2016-12-05 07:03:20", "68.180.229.56", "8");
INSERT INTO `wp_rg_form_view` VALUES("44351", "3", "2016-12-05 07:03:23", "68.180.229.56", "48");
INSERT INTO `wp_rg_form_view` VALUES("44352", "9", "2016-12-05 07:21:55", "163.172.66.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("44353", "10", "2016-12-05 08:05:18", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("44354", "3", "2016-12-05 08:05:19", "66.249.79.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("44355", "10", "2016-12-05 09:44:28", "163.172.65.46", "3");
INSERT INTO `wp_rg_form_view` VALUES("44356", "3", "2016-12-05 09:44:30", "163.172.65.46", "25");
INSERT INTO `wp_rg_form_view` VALUES("44357", "13", "2016-12-05 10:11:52", "46.118.230.189", "11");
INSERT INTO `wp_rg_form_view` VALUES("44358", "10", "2016-12-05 10:11:52", "46.118.230.189", "11");
INSERT INTO `wp_rg_form_view` VALUES("44359", "3", "2016-12-05 10:11:52", "46.118.230.189", "88");
INSERT INTO `wp_rg_form_view` VALUES("44360", "13", "2016-12-05 11:22:28", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44361", "10", "2016-12-05 11:22:28", "178.137.163.110", "23");
INSERT INTO `wp_rg_form_view` VALUES("44362", "3", "2016-12-05 11:22:29", "178.137.163.110", "184");
INSERT INTO `wp_rg_form_view` VALUES("44363", "11", "2016-12-05 11:51:15", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44364", "2", "2016-12-05 11:57:24", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44365", "10", "2016-12-05 12:00:22", "136.243.36.94", "61");
INSERT INTO `wp_rg_form_view` VALUES("44366", "3", "2016-12-05 12:00:22", "136.243.36.94", "480");
INSERT INTO `wp_rg_form_view` VALUES("44367", "13", "2016-12-05 12:05:22", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44368", "6", "2016-12-05 12:10:31", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44369", "9", "2016-12-05 12:10:38", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44370", "8", "2016-12-05 12:13:22", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44371", "3", "2016-12-05 13:27:32", "68.180.229.56", "9");
INSERT INTO `wp_rg_form_view` VALUES("44372", "10", "2016-12-05 13:37:59", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("44373", "10", "2016-12-05 14:59:56", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("44374", "3", "2016-12-05 14:59:58", "77.75.79.109", "8");
INSERT INTO `wp_rg_form_view` VALUES("44375", "10", "2016-12-05 15:17:08", "163.172.65.190", "6");
INSERT INTO `wp_rg_form_view` VALUES("44376", "3", "2016-12-05 15:17:08", "163.172.65.190", "48");
INSERT INTO `wp_rg_form_view` VALUES("44377", "6", "2016-12-05 15:47:07", "167.114.234.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("44378", "10", "2016-12-05 17:27:26", "70.66.169.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("44379", "3", "2016-12-05 17:27:28", "70.66.169.48", "40");
INSERT INTO `wp_rg_form_view` VALUES("44380", "10", "2016-12-05 18:34:41", "163.172.64.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("44381", "3", "2016-12-05 18:34:45", "163.172.64.182", "38");
INSERT INTO `wp_rg_form_view` VALUES("44382", "10", "2016-12-05 19:43:31", "96.50.98.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("44383", "3", "2016-12-05 19:43:34", "96.50.98.58", "17");
INSERT INTO `wp_rg_form_view` VALUES("44384", "10", "2016-12-05 20:01:57", "154.5.211.239", "5");
INSERT INTO `wp_rg_form_view` VALUES("44385", "3", "2016-12-05 20:01:57", "154.5.211.239", "32");
INSERT INTO `wp_rg_form_view` VALUES("44386", "13", "2016-12-05 21:08:37", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44387", "13", "2016-12-05 21:08:37", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44388", "10", "2016-12-05 21:08:38", "134.249.51.255", "27");
INSERT INTO `wp_rg_form_view` VALUES("44389", "10", "2016-12-05 21:08:38", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44390", "3", "2016-12-05 21:08:39", "134.249.51.255", "228");
INSERT INTO `wp_rg_form_view` VALUES("44391", "3", "2016-12-05 21:08:39", "134.249.51.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("44392", "10", "2016-12-05 22:01:04", "202.46.57.174", "8");
INSERT INTO `wp_rg_form_view` VALUES("44393", "3", "2016-12-05 22:01:04", "202.46.57.174", "64");
INSERT INTO `wp_rg_form_view` VALUES("44394", "11", "2016-12-05 22:28:06", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("44395", "13", "2016-12-05 22:56:35", "134.249.51.255", "2");
INSERT INTO `wp_rg_form_view` VALUES("44396", "10", "2016-12-05 23:01:56", "142.36.127.147", "6");
INSERT INTO `wp_rg_form_view` VALUES("44397", "3", "2016-12-05 23:01:56", "142.36.127.147", "49");
INSERT INTO `wp_rg_form_view` VALUES("44398", "2", "2016-12-05 23:54:36", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44399", "10", "2016-12-06 00:01:58", "96.50.19.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("44400", "3", "2016-12-06 00:01:58", "96.50.19.46", "17");
INSERT INTO `wp_rg_form_view` VALUES("44401", "10", "2016-12-06 01:14:10", "68.180.229.56", "7");
INSERT INTO `wp_rg_form_view` VALUES("44402", "3", "2016-12-06 01:14:10", "68.180.229.56", "56");
INSERT INTO `wp_rg_form_view` VALUES("44403", "13", "2016-12-06 01:36:56", "134.249.51.255", "6");
INSERT INTO `wp_rg_form_view` VALUES("44404", "10", "2016-12-06 02:05:09", "70.35.197.223", "38");
INSERT INTO `wp_rg_form_view` VALUES("44405", "3", "2016-12-06 02:05:09", "70.35.197.223", "306");
INSERT INTO `wp_rg_form_view` VALUES("44406", "11", "2016-12-06 02:05:12", "70.35.197.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("44407", "2", "2016-12-06 02:07:19", "70.35.197.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("44408", "10", "2016-12-06 03:01:53", "50.64.190.171", "117");
INSERT INTO `wp_rg_form_view` VALUES("44409", "10", "2016-12-06 03:01:53", "50.64.190.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("44410", "3", "2016-12-06 03:01:53", "50.64.190.171", "960");
INSERT INTO `wp_rg_form_view` VALUES("44411", "3", "2016-12-06 03:01:53", "50.64.190.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("44412", "11", "2016-12-06 03:01:58", "50.64.190.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("44413", "2", "2016-12-06 03:02:10", "50.64.190.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("44414", "6", "2016-12-06 03:02:19", "50.64.190.171", "3");
INSERT INTO `wp_rg_form_view` VALUES("44415", "13", "2016-12-06 03:02:45", "50.64.190.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("44416", "14", "2016-12-06 03:02:57", "50.64.190.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("44417", "10", "2016-12-06 04:03:53", "167.114.224.218", "5");
INSERT INTO `wp_rg_form_view` VALUES("44418", "3", "2016-12-06 04:03:53", "167.114.224.218", "41");
INSERT INTO `wp_rg_form_view` VALUES("44419", "14", "2016-12-06 04:41:33", "24.68.37.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("44420", "10", "2016-12-06 05:26:58", "99.199.3.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("44421", "3", "2016-12-06 05:26:59", "99.199.3.224", "16");
INSERT INTO `wp_rg_form_view` VALUES("44422", "10", "2016-12-06 06:11:04", "80.248.225.154", "57");
INSERT INTO `wp_rg_form_view` VALUES("44423", "10", "2016-12-06 06:11:04", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44424", "10", "2016-12-06 06:11:04", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44425", "10", "2016-12-06 06:11:04", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44426", "10", "2016-12-06 06:11:04", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44427", "3", "2016-12-06 06:11:05", "80.248.225.154", "482");
INSERT INTO `wp_rg_form_view` VALUES("44428", "3", "2016-12-06 06:11:05", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44429", "3", "2016-12-06 06:11:05", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44430", "3", "2016-12-06 06:11:05", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44431", "3", "2016-12-06 06:11:05", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44432", "2", "2016-12-06 06:14:35", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44433", "11", "2016-12-06 06:18:27", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44434", "14", "2016-12-06 06:19:25", "80.248.225.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("44435", "13", "2016-12-06 07:02:17", "46.118.230.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("44436", "10", "2016-12-06 07:02:21", "46.118.230.189", "222");
INSERT INTO `wp_rg_form_view` VALUES("44437", "10", "2016-12-06 07:02:21", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44438", "10", "2016-12-06 07:02:21", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44439", "3", "2016-12-06 07:02:21", "46.118.230.189", "1900");
INSERT INTO `wp_rg_form_view` VALUES("44440", "3", "2016-12-06 07:02:21", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44441", "3", "2016-12-06 07:02:21", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44442", "14", "2016-12-06 07:36:36", "45.55.163.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("44443", "11", "2016-12-06 07:36:51", "45.55.163.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("44444", "6", "2016-12-06 07:54:16", "45.55.163.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("44445", "5", "2016-12-06 07:58:12", "77.75.76.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("44446", "10", "2016-12-06 08:00:16", "45.55.163.54", "351");
INSERT INTO `wp_rg_form_view` VALUES("44447", "3", "2016-12-06 08:00:17", "45.55.163.54", "2898");
INSERT INTO `wp_rg_form_view` VALUES("44448", "9", "2016-12-06 08:03:06", "45.55.163.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("44449", "11", "2016-12-06 08:14:12", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("44450", "2", "2016-12-06 08:40:56", "45.55.163.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("44451", "13", "2016-12-06 08:50:36", "45.55.163.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("44452", "3", "2016-12-06 09:48:15", "207.46.13.34", "9");
INSERT INTO `wp_rg_form_view` VALUES("44453", "10", "2016-12-06 09:48:19", "207.46.13.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("44454", "10", "2016-12-06 10:55:24", "136.243.17.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("44455", "3", "2016-12-06 10:55:26", "136.243.17.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("44456", "10", "2016-12-06 11:13:50", "77.75.77.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("44457", "3", "2016-12-06 11:13:50", "77.75.77.72", "17");
INSERT INTO `wp_rg_form_view` VALUES("44458", "10", "2016-12-06 12:07:00", "66.249.79.144", "5");
INSERT INTO `wp_rg_form_view` VALUES("44459", "3", "2016-12-06 12:07:01", "66.249.79.144", "41");
INSERT INTO `wp_rg_form_view` VALUES("44460", "10", "2016-12-06 13:03:23", "77.75.79.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("44461", "3", "2016-12-06 13:03:23", "77.75.79.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("44462", "13", "2016-12-06 14:12:58", "46.118.230.189", "9");
INSERT INTO `wp_rg_form_view` VALUES("44463", "10", "2016-12-06 14:12:58", "46.118.230.189", "11");
INSERT INTO `wp_rg_form_view` VALUES("44464", "3", "2016-12-06 14:12:59", "46.118.230.189", "89");
INSERT INTO `wp_rg_form_view` VALUES("44465", "10", "2016-12-06 15:09:50", "77.75.78.165", "11");
INSERT INTO `wp_rg_form_view` VALUES("44466", "3", "2016-12-06 15:09:51", "77.75.78.165", "72");
INSERT INTO `wp_rg_form_view` VALUES("44467", "13", "2016-12-06 15:44:17", "134.249.51.255", "2");
INSERT INTO `wp_rg_form_view` VALUES("44468", "10", "2016-12-06 16:00:48", "68.180.229.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("44469", "3", "2016-12-06 16:00:56", "68.180.229.56", "40");
INSERT INTO `wp_rg_form_view` VALUES("44470", "11", "2016-12-06 16:26:56", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44471", "13", "2016-12-06 16:59:35", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("44472", "10", "2016-12-06 17:02:57", "96.50.1.71", "12");
INSERT INTO `wp_rg_form_view` VALUES("44473", "3", "2016-12-06 17:02:57", "96.50.1.71", "106");
INSERT INTO `wp_rg_form_view` VALUES("44474", "14", "2016-12-06 17:04:25", "96.50.1.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("44475", "13", "2016-12-06 17:36:59", "178.137.163.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("44476", "10", "2016-12-06 18:34:11", "195.154.253.152", "4");
INSERT INTO `wp_rg_form_view` VALUES("44477", "3", "2016-12-06 18:34:11", "195.154.253.152", "32");
INSERT INTO `wp_rg_form_view` VALUES("44478", "10", "2016-12-06 19:02:13", "77.75.76.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("44479", "3", "2016-12-06 19:02:13", "77.75.76.168", "65");
INSERT INTO `wp_rg_form_view` VALUES("44480", "10", "2016-12-06 20:09:34", "77.75.79.101", "18");
INSERT INTO `wp_rg_form_view` VALUES("44481", "3", "2016-12-06 20:09:35", "77.75.79.101", "136");
INSERT INTO `wp_rg_form_view` VALUES("44482", "13", "2016-12-06 20:34:33", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44483", "14", "2016-12-06 20:57:53", "184.66.231.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("44484", "10", "2016-12-06 21:02:11", "184.66.231.48", "10");
INSERT INTO `wp_rg_form_view` VALUES("44485", "3", "2016-12-06 21:02:11", "184.66.231.48", "64");
INSERT INTO `wp_rg_form_view` VALUES("44486", "10", "2016-12-06 22:04:04", "77.75.79.95", "26");
INSERT INTO `wp_rg_form_view` VALUES("44487", "3", "2016-12-06 22:04:04", "77.75.79.95", "212");
INSERT INTO `wp_rg_form_view` VALUES("44488", "13", "2016-12-06 22:49:40", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44489", "3", "2016-12-06 23:08:32", "77.75.78.166", "83");
INSERT INTO `wp_rg_form_view` VALUES("44490", "10", "2016-12-06 23:08:33", "77.75.78.166", "9");
INSERT INTO `wp_rg_form_view` VALUES("44491", "14", "2016-12-06 23:41:29", "75.157.56.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("44492", "12", "2016-12-07 00:41:10", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44493", "10", "2016-12-07 00:41:10", "68.180.229.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("44494", "3", "2016-12-07 00:41:10", "68.180.229.56", "33");
INSERT INTO `wp_rg_form_view` VALUES("44495", "14", "2016-12-07 00:51:19", "107.150.79.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("44496", "10", "2016-12-07 01:29:43", "66.249.79.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("44497", "3", "2016-12-07 01:29:43", "66.249.79.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("44498", "10", "2016-12-07 02:06:54", "202.46.53.198", "7");
INSERT INTO `wp_rg_form_view` VALUES("44499", "3", "2016-12-07 02:06:55", "202.46.53.198", "56");
INSERT INTO `wp_rg_form_view` VALUES("44500", "13", "2016-12-07 02:13:23", "178.137.161.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("44501", "13", "2016-12-07 02:13:23", "178.137.161.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("44502", "11", "2016-12-07 03:22:50", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44503", "2", "2016-12-07 03:22:50", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44504", "3", "2016-12-07 03:22:51", "104.236.61.18", "169");
INSERT INTO `wp_rg_form_view` VALUES("44505", "10", "2016-12-07 03:22:51", "104.236.61.18", "5");
INSERT INTO `wp_rg_form_view` VALUES("44506", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44507", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44508", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44509", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44510", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44511", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44512", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44513", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44514", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44515", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44516", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44517", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44518", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44519", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44520", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44521", "10", "2016-12-07 03:22:51", "104.236.61.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44522", "13", "2016-12-07 04:02:17", "178.137.163.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("44523", "10", "2016-12-07 04:02:17", "178.137.163.110", "4");
INSERT INTO `wp_rg_form_view` VALUES("44524", "3", "2016-12-07 04:02:17", "178.137.163.110", "32");
INSERT INTO `wp_rg_form_view` VALUES("44525", "10", "2016-12-07 05:04:52", "163.172.64.222", "3");
INSERT INTO `wp_rg_form_view` VALUES("44526", "3", "2016-12-07 05:04:53", "163.172.64.222", "24");
INSERT INTO `wp_rg_form_view` VALUES("44527", "10", "2016-12-07 06:07:53", "96.50.1.71", "15");
INSERT INTO `wp_rg_form_view` VALUES("44528", "3", "2016-12-07 06:07:53", "96.50.1.71", "114");
INSERT INTO `wp_rg_form_view` VALUES("44529", "10", "2016-12-07 07:22:25", "24.108.169.139", "8");
INSERT INTO `wp_rg_form_view` VALUES("44530", "3", "2016-12-07 07:22:27", "24.108.169.139", "64");
INSERT INTO `wp_rg_form_view` VALUES("44531", "3", "2016-12-07 08:09:11", "207.46.13.174", "27");
INSERT INTO `wp_rg_form_view` VALUES("44532", "10", "2016-12-07 08:09:14", "207.46.13.174", "3");
INSERT INTO `wp_rg_form_view` VALUES("44533", "10", "2016-12-07 09:07:22", "163.172.66.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("44534", "3", "2016-12-07 09:07:23", "163.172.66.79", "24");
INSERT INTO `wp_rg_form_view` VALUES("44535", "10", "2016-12-07 10:33:17", "5.9.145.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("44536", "3", "2016-12-07 10:33:18", "5.9.145.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("44537", "10", "2016-12-07 11:56:16", "207.46.13.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44538", "3", "2016-12-07 11:56:18", "207.46.13.15", "8");
INSERT INTO `wp_rg_form_view` VALUES("44539", "10", "2016-12-07 13:26:08", "163.172.66.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("44540", "3", "2016-12-07 13:26:11", "163.172.66.24", "33");
INSERT INTO `wp_rg_form_view` VALUES("44541", "10", "2016-12-07 14:04:45", "157.55.39.160", "7");
INSERT INTO `wp_rg_form_view` VALUES("44542", "3", "2016-12-07 14:04:45", "157.55.39.160", "40");
INSERT INTO `wp_rg_form_view` VALUES("44543", "3", "2016-12-07 15:03:49", "207.46.13.155", "900");
INSERT INTO `wp_rg_form_view` VALUES("44544", "10", "2016-12-07 15:03:49", "207.46.13.155", "133");
INSERT INTO `wp_rg_form_view` VALUES("44545", "11", "2016-12-07 15:04:09", "207.46.13.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("44546", "12", "2016-12-07 15:04:45", "157.55.39.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("44547", "13", "2016-12-07 15:04:56", "157.55.39.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("44548", "9", "2016-12-07 15:05:27", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("44549", "8", "2016-12-07 15:06:01", "207.46.13.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44550", "10", "2016-12-07 16:02:34", "207.46.13.15", "9");
INSERT INTO `wp_rg_form_view` VALUES("44551", "3", "2016-12-07 16:02:34", "207.46.13.15", "64");
INSERT INTO `wp_rg_form_view` VALUES("44552", "10", "2016-12-07 17:44:20", "64.62.210.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("44553", "3", "2016-12-07 17:44:22", "64.62.210.39", "8");
INSERT INTO `wp_rg_form_view` VALUES("44554", "10", "2016-12-07 18:27:40", "24.68.20.29", "26");
INSERT INTO `wp_rg_form_view` VALUES("44555", "3", "2016-12-07 18:27:40", "24.68.20.29", "210");
INSERT INTO `wp_rg_form_view` VALUES("44556", "2", "2016-12-07 18:39:03", "174.127.133.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44557", "11", "2016-12-07 18:43:11", "174.127.133.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44558", "10", "2016-12-07 19:08:12", "174.127.133.34", "108");
INSERT INTO `wp_rg_form_view` VALUES("44559", "3", "2016-12-07 19:08:15", "174.127.133.34", "896");
INSERT INTO `wp_rg_form_view` VALUES("44560", "14", "2016-12-07 19:23:38", "174.127.133.35", "3");
INSERT INTO `wp_rg_form_view` VALUES("44561", "13", "2016-12-07 19:28:39", "178.137.92.36", "11");
INSERT INTO `wp_rg_form_view` VALUES("44562", "11", "2016-12-07 19:29:49", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44563", "2", "2016-12-07 19:30:50", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44564", "6", "2016-12-07 19:59:35", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44565", "9", "2016-12-07 19:59:50", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44566", "10", "2016-12-07 20:00:01", "136.243.36.94", "38");
INSERT INTO `wp_rg_form_view` VALUES("44567", "3", "2016-12-07 20:00:01", "136.243.36.94", "379");
INSERT INTO `wp_rg_form_view` VALUES("44568", "8", "2016-12-07 20:08:07", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("44569", "9", "2016-12-07 20:11:16", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("44570", "13", "2016-12-07 20:26:14", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44571", "10", "2016-12-07 21:22:51", "207.194.133.9", "11");
INSERT INTO `wp_rg_form_view` VALUES("44572", "3", "2016-12-07 21:22:59", "207.194.133.9", "101");
INSERT INTO `wp_rg_form_view` VALUES("44573", "3", "2016-12-07 21:22:59", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("44574", "13", "2016-12-07 21:53:04", "46.118.118.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("44575", "10", "2016-12-07 22:02:06", "163.172.66.33", "36");
INSERT INTO `wp_rg_form_view` VALUES("44576", "3", "2016-12-07 22:02:06", "163.172.66.33", "335");
INSERT INTO `wp_rg_form_view` VALUES("44577", "11", "2016-12-07 22:03:32", "50.163.68.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44578", "2", "2016-12-07 22:04:52", "50.163.68.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44579", "11", "2016-12-07 23:05:52", "163.172.66.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("44580", "10", "2016-12-07 23:05:53", "163.172.66.70", "5");
INSERT INTO `wp_rg_form_view` VALUES("44581", "3", "2016-12-07 23:05:53", "163.172.66.70", "45");
INSERT INTO `wp_rg_form_view` VALUES("44582", "10", "2016-12-08 00:02:41", "163.172.66.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("44583", "3", "2016-12-08 00:02:41", "163.172.66.162", "46");
INSERT INTO `wp_rg_form_view` VALUES("44584", "10", "2016-12-08 01:05:14", "69.58.178.59", "12");
INSERT INTO `wp_rg_form_view` VALUES("44585", "3", "2016-12-08 01:05:14", "69.58.178.59", "108");
INSERT INTO `wp_rg_form_view` VALUES("44586", "11", "2016-12-08 01:09:28", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("44587", "2", "2016-12-08 01:10:11", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("44588", "14", "2016-12-08 01:49:14", "187.94.99.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("44589", "3", "2016-12-08 03:00:22", "68.180.229.56", "102");
INSERT INTO `wp_rg_form_view` VALUES("44590", "10", "2016-12-08 03:08:33", "96.50.1.89", "11");
INSERT INTO `wp_rg_form_view` VALUES("44591", "13", "2016-12-08 03:30:19", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44592", "13", "2016-12-08 03:30:19", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44593", "13", "2016-12-08 03:30:19", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44594", "10", "2016-12-08 04:16:31", "108.6.8.158", "35");
INSERT INTO `wp_rg_form_view` VALUES("44595", "3", "2016-12-08 04:16:31", "108.6.8.158", "299");
INSERT INTO `wp_rg_form_view` VALUES("44596", "11", "2016-12-08 04:25:27", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("44597", "10", "2016-12-08 05:30:03", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("44598", "3", "2016-12-08 05:30:06", "66.249.79.148", "18");
INSERT INTO `wp_rg_form_view` VALUES("44599", "10", "2016-12-08 06:05:07", "202.46.58.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("44600", "3", "2016-12-08 06:05:07", "202.46.58.183", "36");
INSERT INTO `wp_rg_form_view` VALUES("44601", "10", "2016-12-08 07:00:59", "66.249.79.148", "9");
INSERT INTO `wp_rg_form_view` VALUES("44602", "3", "2016-12-08 07:00:59", "66.249.79.148", "82");
INSERT INTO `wp_rg_form_view` VALUES("44603", "13", "2016-12-08 07:29:20", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44604", "10", "2016-12-08 08:05:04", "66.249.79.140", "5");
INSERT INTO `wp_rg_form_view` VALUES("44605", "3", "2016-12-08 08:05:04", "66.249.79.140", "45");
INSERT INTO `wp_rg_form_view` VALUES("44606", "2", "2016-12-08 08:24:05", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("44607", "10", "2016-12-08 09:02:01", "195.22.127.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("44608", "3", "2016-12-08 09:02:01", "195.22.127.140", "37");
INSERT INTO `wp_rg_form_view` VALUES("44609", "13", "2016-12-08 10:02:12", "163.172.66.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("44610", "10", "2016-12-08 10:02:12", "163.172.66.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("44611", "3", "2016-12-08 10:02:13", "163.172.66.179", "18");
INSERT INTO `wp_rg_form_view` VALUES("44612", "10", "2016-12-08 11:18:05", "163.172.64.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("44613", "3", "2016-12-08 11:18:08", "163.172.64.244", "9");
INSERT INTO `wp_rg_form_view` VALUES("44614", "3", "2016-12-08 12:34:49", "163.172.64.250", "10");
INSERT INTO `wp_rg_form_view` VALUES("44615", "10", "2016-12-08 12:34:50", "163.172.64.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("44616", "3", "2016-12-08 13:20:06", "68.180.229.56", "244");
INSERT INTO `wp_rg_form_view` VALUES("44617", "8", "2016-12-08 13:34:35", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("44618", "9", "2016-12-08 13:39:53", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44619", "10", "2016-12-08 13:39:53", "68.180.229.56", "26");
INSERT INTO `wp_rg_form_view` VALUES("44620", "6", "2016-12-08 13:41:55", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("44621", "13", "2016-12-08 14:20:26", "46.118.118.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("44622", "10", "2016-12-08 14:20:28", "46.118.118.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("44623", "10", "2016-12-08 14:20:28", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44624", "3", "2016-12-08 14:20:28", "46.118.118.15", "26");
INSERT INTO `wp_rg_form_view` VALUES("44625", "3", "2016-12-08 14:20:28", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44626", "10", "2016-12-08 15:08:33", "66.249.79.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("44627", "3", "2016-12-08 15:08:34", "66.249.79.148", "45");
INSERT INTO `wp_rg_form_view` VALUES("44628", "13", "2016-12-08 15:32:27", "46.118.118.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("44629", "10", "2016-12-08 16:15:11", "66.249.79.140", "9");
INSERT INTO `wp_rg_form_view` VALUES("44630", "3", "2016-12-08 16:15:11", "66.249.79.140", "83");
INSERT INTO `wp_rg_form_view` VALUES("44631", "13", "2016-12-08 16:38:16", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44632", "13", "2016-12-08 16:38:16", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44633", "10", "2016-12-08 17:02:14", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("44634", "3", "2016-12-08 17:02:14", "66.249.79.144", "36");
INSERT INTO `wp_rg_form_view` VALUES("44635", "2", "2016-12-08 17:41:09", "163.172.66.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("44636", "10", "2016-12-08 18:02:36", "207.46.13.54", "7");
INSERT INTO `wp_rg_form_view` VALUES("44637", "3", "2016-12-08 18:02:36", "207.46.13.54", "65");
INSERT INTO `wp_rg_form_view` VALUES("44638", "3", "2016-12-08 19:04:09", "202.46.54.147", "100");
INSERT INTO `wp_rg_form_view` VALUES("44639", "10", "2016-12-08 19:04:10", "202.46.54.147", "12");
INSERT INTO `wp_rg_form_view` VALUES("44640", "10", "2016-12-08 20:00:56", "184.69.120.138", "16");
INSERT INTO `wp_rg_form_view` VALUES("44641", "3", "2016-12-08 20:00:56", "184.69.120.138", "142");
INSERT INTO `wp_rg_form_view` VALUES("44642", "3", "2016-12-08 21:15:10", "202.46.50.74", "119");
INSERT INTO `wp_rg_form_view` VALUES("44643", "10", "2016-12-08 21:15:26", "202.46.50.74", "13");
INSERT INTO `wp_rg_form_view` VALUES("44644", "13", "2016-12-08 21:47:00", "46.118.118.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("44645", "10", "2016-12-08 22:02:01", "131.253.26.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("44646", "3", "2016-12-08 22:02:01", "131.253.26.245", "135");
INSERT INTO `wp_rg_form_view` VALUES("44647", "13", "2016-12-08 22:10:44", "178.137.90.14", "6");
INSERT INTO `wp_rg_form_view` VALUES("44648", "10", "2016-12-08 23:04:15", "108.180.6.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("44649", "3", "2016-12-08 23:04:15", "108.180.6.207", "18");
INSERT INTO `wp_rg_form_view` VALUES("44650", "10", "2016-12-09 00:10:56", "163.172.66.33", "8");
INSERT INTO `wp_rg_form_view` VALUES("44651", "3", "2016-12-09 00:10:56", "163.172.66.33", "73");
INSERT INTO `wp_rg_form_view` VALUES("44652", "14", "2016-12-09 02:12:02", "213.241.204.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("44653", "10", "2016-12-09 02:12:07", "213.241.204.236", "5");
INSERT INTO `wp_rg_form_view` VALUES("44654", "3", "2016-12-09 02:12:07", "213.241.204.236", "47");
INSERT INTO `wp_rg_form_view` VALUES("44655", "10", "2016-12-09 03:07:44", "163.172.65.215", "4");
INSERT INTO `wp_rg_form_view` VALUES("44656", "3", "2016-12-09 03:07:45", "163.172.65.215", "38");
INSERT INTO `wp_rg_form_view` VALUES("44657", "10", "2016-12-09 04:28:02", "68.180.229.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("44658", "3", "2016-12-09 04:28:03", "68.180.229.56", "13");
INSERT INTO `wp_rg_form_view` VALUES("44659", "13", "2016-12-09 05:09:10", "178.137.92.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("44660", "13", "2016-12-09 05:09:10", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44661", "10", "2016-12-09 05:09:10", "178.137.92.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("44662", "10", "2016-12-09 05:09:10", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44663", "3", "2016-12-09 05:09:10", "178.137.92.36", "36");
INSERT INTO `wp_rg_form_view` VALUES("44664", "3", "2016-12-09 05:09:10", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44665", "13", "2016-12-09 06:06:23", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("44666", "10", "2016-12-09 06:06:25", "46.118.154.190", "6");
INSERT INTO `wp_rg_form_view` VALUES("44667", "10", "2016-12-09 06:06:25", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44668", "3", "2016-12-09 06:06:25", "46.118.154.190", "53");
INSERT INTO `wp_rg_form_view` VALUES("44669", "3", "2016-12-09 06:06:25", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44670", "14", "2016-12-09 06:55:56", "202.46.56.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("44671", "10", "2016-12-09 07:22:47", "207.46.13.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("44672", "3", "2016-12-09 07:22:48", "207.46.13.54", "9");
INSERT INTO `wp_rg_form_view` VALUES("44673", "3", "2016-12-09 08:18:26", "163.172.65.13", "20");
INSERT INTO `wp_rg_form_view` VALUES("44674", "10", "2016-12-09 08:18:27", "163.172.65.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("44675", "3", "2016-12-09 10:12:57", "202.46.49.195", "308");
INSERT INTO `wp_rg_form_view` VALUES("44676", "10", "2016-12-09 10:13:00", "202.46.49.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("44677", "11", "2016-12-09 10:26:38", "79.116.27.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("44678", "2", "2016-12-09 10:27:40", "79.116.27.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("44679", "10", "2016-12-09 11:00:06", "68.180.229.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("44680", "3", "2016-12-09 11:00:06", "68.180.229.56", "30");
INSERT INTO `wp_rg_form_view` VALUES("44681", "10", "2016-12-09 12:10:34", "163.172.66.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("44682", "3", "2016-12-09 12:10:38", "163.172.66.100", "9");
INSERT INTO `wp_rg_form_view` VALUES("44683", "10", "2016-12-09 13:16:53", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("44684", "3", "2016-12-09 13:16:55", "66.249.79.148", "9");
INSERT INTO `wp_rg_form_view` VALUES("44685", "13", "2016-12-09 15:22:42", "178.137.90.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("44686", "13", "2016-12-09 15:22:42", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44687", "13", "2016-12-09 15:22:42", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44688", "13", "2016-12-09 15:22:42", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44689", "13", "2016-12-09 15:22:42", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44690", "13", "2016-12-09 15:22:42", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44691", "13", "2016-12-09 15:22:42", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44692", "13", "2016-12-09 15:22:42", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44693", "10", "2016-12-09 15:22:46", "178.137.92.36", "11");
INSERT INTO `wp_rg_form_view` VALUES("44694", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44695", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44696", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44697", "10", "2016-12-09 15:22:46", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44698", "10", "2016-12-09 15:22:46", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44699", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44700", "10", "2016-12-09 15:22:46", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44701", "3", "2016-12-09 15:22:47", "178.137.92.36", "155");
INSERT INTO `wp_rg_form_view` VALUES("44702", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44703", "3", "2016-12-09 15:22:47", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44704", "3", "2016-12-09 15:22:47", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44705", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44706", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44707", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44708", "3", "2016-12-09 15:22:47", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44709", "14", "2016-12-09 16:22:07", "192.227.169.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("44710", "10", "2016-12-09 16:22:10", "192.227.169.92", "5");
INSERT INTO `wp_rg_form_view` VALUES("44711", "3", "2016-12-09 16:22:10", "192.227.169.92", "48");
INSERT INTO `wp_rg_form_view` VALUES("44712", "10", "2016-12-09 17:35:17", "154.20.45.235", "3");
INSERT INTO `wp_rg_form_view` VALUES("44713", "3", "2016-12-09 17:35:24", "154.20.45.235", "27");
INSERT INTO `wp_rg_form_view` VALUES("44714", "10", "2016-12-09 18:31:06", "50.98.167.224", "3");
INSERT INTO `wp_rg_form_view` VALUES("44715", "3", "2016-12-09 18:31:08", "50.98.167.224", "27");
INSERT INTO `wp_rg_form_view` VALUES("44716", "10", "2016-12-09 19:13:58", "157.55.39.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("44717", "3", "2016-12-09 19:14:02", "157.55.39.72", "9");
INSERT INTO `wp_rg_form_view` VALUES("44718", "13", "2016-12-09 20:04:33", "46.118.230.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("44719", "13", "2016-12-09 20:04:33", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44720", "10", "2016-12-09 20:04:36", "46.118.230.189", "11");
INSERT INTO `wp_rg_form_view` VALUES("44721", "10", "2016-12-09 20:04:36", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44722", "10", "2016-12-09 20:04:36", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44723", "3", "2016-12-09 20:04:36", "46.118.230.189", "116");
INSERT INTO `wp_rg_form_view` VALUES("44724", "3", "2016-12-09 20:04:36", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44725", "3", "2016-12-09 20:04:36", "46.118.230.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("44726", "2", "2016-12-09 20:14:57", "142.4.218.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("44727", "10", "2016-12-09 21:10:27", "24.68.42.249", "2");
INSERT INTO `wp_rg_form_view` VALUES("44728", "3", "2016-12-09 21:10:39", "24.68.42.249", "18");
INSERT INTO `wp_rg_form_view` VALUES("44729", "10", "2016-12-09 22:18:12", "77.75.79.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("44730", "3", "2016-12-09 22:18:12", "77.75.79.17", "37");
INSERT INTO `wp_rg_form_view` VALUES("44731", "13", "2016-12-09 22:52:23", "163.172.65.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("44732", "10", "2016-12-09 23:08:09", "66.249.79.144", "11");
INSERT INTO `wp_rg_form_view` VALUES("44733", "3", "2016-12-09 23:08:09", "66.249.79.144", "99");
INSERT INTO `wp_rg_form_view` VALUES("44734", "5", "2016-12-09 23:33:03", "163.172.66.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("44735", "13", "2016-12-09 23:48:28", "178.137.90.14", "5");
INSERT INTO `wp_rg_form_view` VALUES("44736", "13", "2016-12-09 23:48:28", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44737", "10", "2016-12-10 00:08:51", "77.75.77.32", "32");
INSERT INTO `wp_rg_form_view` VALUES("44738", "3", "2016-12-10 00:08:51", "77.75.77.32", "289");
INSERT INTO `wp_rg_form_view` VALUES("44739", "11", "2016-12-10 00:31:11", "74.208.157.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("44740", "2", "2016-12-10 00:32:01", "74.208.157.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("44741", "10", "2016-12-10 01:12:28", "77.75.79.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("44742", "3", "2016-12-10 01:14:00", "77.75.79.101", "18");
INSERT INTO `wp_rg_form_view` VALUES("44743", "13", "2016-12-10 02:31:38", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44744", "10", "2016-12-10 02:32:42", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44745", "3", "2016-12-10 02:32:50", "46.118.154.190", "9");
INSERT INTO `wp_rg_form_view` VALUES("44746", "10", "2016-12-10 03:56:58", "157.55.39.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("44747", "10", "2016-12-10 03:56:58", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44748", "10", "2016-12-10 03:56:58", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44749", "3", "2016-12-10 03:57:55", "68.180.229.56", "18");
INSERT INTO `wp_rg_form_view` VALUES("44750", "3", "2016-12-10 03:57:55", "157.55.39.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("44751", "3", "2016-12-10 03:57:55", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44752", "3", "2016-12-10 03:57:55", "68.180.229.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("44753", "3", "2016-12-10 04:27:07", "157.55.39.119", "780");
INSERT INTO `wp_rg_form_view` VALUES("44754", "3", "2016-12-10 04:27:07", "157.55.39.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("44755", "3", "2016-12-10 04:27:07", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("44756", "3", "2016-12-10 04:27:07", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("44757", "10", "2016-12-10 04:27:07", "157.55.39.82", "98");
INSERT INTO `wp_rg_form_view` VALUES("44758", "3", "2016-12-10 04:27:07", "157.55.39.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("44759", "10", "2016-12-10 04:27:07", "157.55.39.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("44760", "5", "2016-12-10 04:28:23", "157.55.39.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("44761", "8", "2016-12-10 04:28:41", "157.55.39.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("44762", "7", "2016-12-10 04:28:45", "157.55.39.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("44763", "9", "2016-12-10 04:29:29", "157.55.39.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("44764", "6", "2016-12-10 04:29:38", "157.55.39.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("44765", "5", "2016-12-10 05:01:01", "157.55.39.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("44766", "10", "2016-12-10 05:01:02", "157.55.39.119", "20");
INSERT INTO `wp_rg_form_view` VALUES("44767", "3", "2016-12-10 05:01:05", "157.55.39.119", "186");
INSERT INTO `wp_rg_form_view` VALUES("44768", "14", "2016-12-10 05:17:13", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("44769", "6", "2016-12-10 05:28:22", "46.229.168.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("44770", "10", "2016-12-10 06:08:36", "163.172.64.177", "4");
INSERT INTO `wp_rg_form_view` VALUES("44771", "3", "2016-12-10 06:08:38", "163.172.64.177", "27");
INSERT INTO `wp_rg_form_view` VALUES("44772", "14", "2016-12-10 06:44:13", "155.133.64.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44773", "8", "2016-12-10 07:02:10", "46.229.168.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("44774", "10", "2016-12-10 07:02:25", "46.229.168.70", "34");
INSERT INTO `wp_rg_form_view` VALUES("44775", "10", "2016-12-10 07:02:26", "46.229.168.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("44776", "3", "2016-12-10 07:02:26", "46.229.168.70", "317");
INSERT INTO `wp_rg_form_view` VALUES("44777", "3", "2016-12-10 07:02:26", "46.229.168.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("44778", "13", "2016-12-10 07:35:01", "46.118.118.15", "5");
INSERT INTO `wp_rg_form_view` VALUES("44779", "13", "2016-12-10 07:35:01", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44780", "11", "2016-12-10 07:49:06", "45.55.229.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("44781", "2", "2016-12-10 07:49:09", "45.55.229.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("44782", "10", "2016-12-10 08:07:25", "207.46.13.166", "5");
INSERT INTO `wp_rg_form_view` VALUES("44783", "3", "2016-12-10 08:07:26", "207.46.13.166", "46");
INSERT INTO `wp_rg_form_view` VALUES("44784", "13", "2016-12-10 08:21:33", "46.118.118.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("44785", "10", "2016-12-10 09:11:13", "163.172.65.65", "5");
INSERT INTO `wp_rg_form_view` VALUES("44786", "3", "2016-12-10 09:11:14", "163.172.65.65", "45");
INSERT INTO `wp_rg_form_view` VALUES("44787", "13", "2016-12-10 09:34:49", "178.137.92.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("44788", "10", "2016-12-10 10:25:55", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("44789", "3", "2016-12-10 10:25:56", "199.21.99.202", "64");
INSERT INTO `wp_rg_form_view` VALUES("44790", "10", "2016-12-10 11:27:13", "202.46.51.81", "8");
INSERT INTO `wp_rg_form_view` VALUES("44791", "3", "2016-12-10 11:27:14", "202.46.51.81", "72");
INSERT INTO `wp_rg_form_view` VALUES("44792", "10", "2016-12-10 12:00:40", "202.46.50.132", "37");
INSERT INTO `wp_rg_form_view` VALUES("44793", "3", "2016-12-10 12:00:40", "202.46.50.132", "335");
INSERT INTO `wp_rg_form_view` VALUES("44794", "11", "2016-12-10 12:37:07", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("44795", "2", "2016-12-10 12:38:13", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("44796", "10", "2016-12-10 13:16:39", "202.46.51.110", "15");
INSERT INTO `wp_rg_form_view` VALUES("44797", "3", "2016-12-10 13:16:39", "202.46.51.110", "109");
INSERT INTO `wp_rg_form_view` VALUES("44798", "13", "2016-12-10 13:40:35", "46.118.230.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("44799", "13", "2016-12-10 14:12:52", "46.118.118.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("44800", "10", "2016-12-10 14:12:52", "46.118.118.15", "14");
INSERT INTO `wp_rg_form_view` VALUES("44801", "3", "2016-12-10 14:12:52", "46.118.118.15", "129");
INSERT INTO `wp_rg_form_view` VALUES("44802", "10", "2016-12-10 15:07:18", "184.66.245.16", "7");
INSERT INTO `wp_rg_form_view` VALUES("44803", "3", "2016-12-10 15:07:18", "184.66.245.16", "63");
INSERT INTO `wp_rg_form_view` VALUES("44804", "13", "2016-12-10 15:52:47", "178.137.90.14", "3");
INSERT INTO `wp_rg_form_view` VALUES("44805", "10", "2016-12-10 16:04:10", "100.43.91.1", "7");
INSERT INTO `wp_rg_form_view` VALUES("44806", "3", "2016-12-10 16:04:10", "100.43.91.1", "67");
INSERT INTO `wp_rg_form_view` VALUES("44807", "3", "2016-12-10 17:09:51", "68.180.229.56", "60");
INSERT INTO `wp_rg_form_view` VALUES("44808", "13", "2016-12-10 17:10:20", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("44809", "13", "2016-12-10 17:10:20", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44810", "10", "2016-12-10 17:10:20", "46.118.154.190", "5");
INSERT INTO `wp_rg_form_view` VALUES("44811", "10", "2016-12-10 17:10:20", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44812", "8", "2016-12-10 18:15:31", "202.46.53.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("44813", "10", "2016-12-10 18:15:33", "202.46.53.203", "8");
INSERT INTO `wp_rg_form_view` VALUES("44814", "3", "2016-12-10 18:15:33", "202.46.53.203", "72");
INSERT INTO `wp_rg_form_view` VALUES("44815", "14", "2016-12-10 18:18:51", "190.119.255.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("44816", "3", "2016-12-10 19:02:12", "46.229.168.71", "132");
INSERT INTO `wp_rg_form_view` VALUES("44817", "10", "2016-12-10 19:02:14", "46.229.168.71", "15");
INSERT INTO `wp_rg_form_view` VALUES("44818", "11", "2016-12-10 20:15:12", "46.229.168.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("44819", "10", "2016-12-10 20:15:13", "46.229.168.72", "11");
INSERT INTO `wp_rg_form_view` VALUES("44820", "3", "2016-12-10 20:15:13", "46.229.168.72", "99");
INSERT INTO `wp_rg_form_view` VALUES("44821", "10", "2016-12-10 21:59:45", "176.9.20.239", "2");
INSERT INTO `wp_rg_form_view` VALUES("44822", "3", "2016-12-10 21:59:47", "176.9.20.239", "18");
INSERT INTO `wp_rg_form_view` VALUES("44823", "10", "2016-12-10 22:17:05", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("44824", "3", "2016-12-10 22:17:06", "157.55.39.121", "9");
INSERT INTO `wp_rg_form_view` VALUES("44825", "10", "2016-12-10 23:08:09", "163.172.66.127", "8");
INSERT INTO `wp_rg_form_view` VALUES("44826", "3", "2016-12-10 23:08:15", "163.172.66.127", "54");
INSERT INTO `wp_rg_form_view` VALUES("44827", "13", "2016-12-10 23:16:52", "178.137.92.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("44828", "3", "2016-12-11 00:07:36", "77.75.77.119", "31");
INSERT INTO `wp_rg_form_view` VALUES("44829", "10", "2016-12-11 00:07:36", "77.75.77.119", "3");
INSERT INTO `wp_rg_form_view` VALUES("44830", "3", "2016-12-11 01:03:50", "212.129.61.241", "131");
INSERT INTO `wp_rg_form_view` VALUES("44831", "3", "2016-12-11 01:03:50", "212.129.61.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("44832", "13", "2016-12-11 01:21:13", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44833", "3", "2016-12-11 02:06:50", "77.75.76.166", "91");
INSERT INTO `wp_rg_form_view` VALUES("44834", "3", "2016-12-11 03:02:35", "66.249.79.144", "91");
INSERT INTO `wp_rg_form_view` VALUES("44835", "12", "2016-12-11 03:56:47", "207.46.13.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("44836", "3", "2016-12-11 04:43:53", "207.46.13.178", "334");
INSERT INTO `wp_rg_form_view` VALUES("44837", "2", "2016-12-11 04:49:20", "207.46.13.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("44838", "11", "2016-12-11 04:54:00", "207.46.13.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("44839", "14", "2016-12-11 06:23:48", "5.34.244.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("44840", "3", "2016-12-11 06:23:50", "5.34.244.51", "10");
INSERT INTO `wp_rg_form_view` VALUES("44841", "3", "2016-12-11 07:02:40", "157.55.39.85", "40");
INSERT INTO `wp_rg_form_view` VALUES("44842", "3", "2016-12-11 08:20:09", "207.46.13.113", "21");
INSERT INTO `wp_rg_form_view` VALUES("44843", "10", "2016-12-11 08:51:33", "157.55.39.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("44844", "3", "2016-12-11 09:15:57", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("44845", "3", "2016-12-11 10:04:44", "80.82.65.82", "178");
INSERT INTO `wp_rg_form_view` VALUES("44846", "3", "2016-12-11 10:04:44", "80.82.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("44847", "3", "2016-12-11 10:04:44", "80.82.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("44848", "11", "2016-12-11 10:04:46", "80.82.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("44849", "2", "2016-12-11 10:04:48", "80.82.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("44850", "13", "2016-12-11 10:12:53", "178.137.90.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("44851", "13", "2016-12-11 10:12:53", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44852", "13", "2016-12-11 10:12:53", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44853", "13", "2016-12-11 10:12:53", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44854", "13", "2016-12-11 10:12:53", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44855", "13", "2016-12-11 10:12:53", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44856", "3", "2016-12-11 11:08:55", "199.21.99.202", "116");
INSERT INTO `wp_rg_form_view` VALUES("44857", "13", "2016-12-11 11:16:29", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44858", "3", "2016-12-11 12:27:52", "66.249.79.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("44859", "3", "2016-12-11 13:15:44", "198.241.46.169", "40");
INSERT INTO `wp_rg_form_view` VALUES("44860", "13", "2016-12-11 13:28:08", "5.248.196.220", "3");
INSERT INTO `wp_rg_form_view` VALUES("44861", "3", "2016-12-11 14:21:16", "66.249.79.140", "21");
INSERT INTO `wp_rg_form_view` VALUES("44862", "3", "2016-12-11 15:17:16", "163.172.66.22", "51");
INSERT INTO `wp_rg_form_view` VALUES("44863", "14", "2016-12-11 15:57:53", "36.250.174.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("44864", "3", "2016-12-11 16:52:41", "68.180.228.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("44865", "3", "2016-12-11 17:48:13", "104.251.219.86", "10");
INSERT INTO `wp_rg_form_view` VALUES("44866", "3", "2016-12-11 18:17:41", "68.180.228.44", "81");
INSERT INTO `wp_rg_form_view` VALUES("44867", "13", "2016-12-11 18:20:03", "178.137.92.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("44868", "3", "2016-12-11 19:03:56", "120.52.73.98", "43");
INSERT INTO `wp_rg_form_view` VALUES("44869", "5", "2016-12-11 19:11:12", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("44870", "3", "2016-12-11 20:27:59", "68.180.228.44", "11");
INSERT INTO `wp_rg_form_view` VALUES("44871", "3", "2016-12-11 21:13:40", "68.180.228.44", "60");
INSERT INTO `wp_rg_form_view` VALUES("44872", "13", "2016-12-11 21:29:58", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("44873", "3", "2016-12-11 22:36:23", "199.21.99.202", "40");
INSERT INTO `wp_rg_form_view` VALUES("44874", "11", "2016-12-11 22:38:22", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("44875", "13", "2016-12-12 00:18:24", "46.118.118.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("44876", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44877", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44878", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44879", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44880", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44881", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44882", "13", "2016-12-12 00:18:24", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44883", "3", "2016-12-12 00:18:26", "46.118.118.15", "102");
INSERT INTO `wp_rg_form_view` VALUES("44884", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44885", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44886", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44887", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44888", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44889", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44890", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44891", "3", "2016-12-12 00:18:26", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44892", "3", "2016-12-12 01:18:04", "70.165.29.11", "351");
INSERT INTO `wp_rg_form_view` VALUES("44893", "11", "2016-12-12 01:18:18", "70.165.29.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("44894", "2", "2016-12-12 01:19:51", "70.165.29.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("44895", "3", "2016-12-12 02:03:18", "108.59.8.80", "30");
INSERT INTO `wp_rg_form_view` VALUES("44896", "3", "2016-12-12 03:14:45", "66.249.79.144", "60");
INSERT INTO `wp_rg_form_view` VALUES("44897", "13", "2016-12-12 03:46:04", "178.137.92.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("44898", "3", "2016-12-12 04:41:36", "157.55.39.134", "50");
INSERT INTO `wp_rg_form_view` VALUES("44899", "3", "2016-12-12 05:08:38", "184.66.232.102", "90");
INSERT INTO `wp_rg_form_view` VALUES("44900", "13", "2016-12-12 06:12:08", "46.118.118.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("44901", "3", "2016-12-12 06:12:09", "46.118.118.15", "40");
INSERT INTO `wp_rg_form_view` VALUES("44902", "3", "2016-12-12 07:05:57", "163.172.65.189", "112");
INSERT INTO `wp_rg_form_view` VALUES("44903", "13", "2016-12-12 07:32:43", "5.248.196.220", "5");
INSERT INTO `wp_rg_form_view` VALUES("44904", "13", "2016-12-12 07:32:43", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("44905", "3", "2016-12-12 08:30:45", "202.46.49.145", "10");
INSERT INTO `wp_rg_form_view` VALUES("44906", "3", "2016-12-12 09:14:34", "68.180.228.44", "32");
INSERT INTO `wp_rg_form_view` VALUES("44907", "13", "2016-12-12 10:09:25", "46.118.154.190", "4");
INSERT INTO `wp_rg_form_view` VALUES("44908", "13", "2016-12-12 10:09:25", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44909", "13", "2016-12-12 10:09:25", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44910", "3", "2016-12-12 10:09:28", "46.118.154.190", "58");
INSERT INTO `wp_rg_form_view` VALUES("44911", "3", "2016-12-12 10:09:28", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44912", "3", "2016-12-12 10:09:28", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44913", "3", "2016-12-12 11:07:59", "207.46.13.152", "41");
INSERT INTO `wp_rg_form_view` VALUES("44914", "3", "2016-12-12 12:30:38", "199.21.99.202", "60");
INSERT INTO `wp_rg_form_view` VALUES("44915", "3", "2016-12-12 13:12:57", "66.249.79.148", "43");
INSERT INTO `wp_rg_form_view` VALUES("44916", "3", "2016-12-12 15:28:54", "199.21.99.202", "11");
INSERT INTO `wp_rg_form_view` VALUES("44917", "3", "2016-12-12 16:27:17", "202.46.58.183", "40");
INSERT INTO `wp_rg_form_view` VALUES("44918", "3", "2016-12-12 17:02:35", "163.172.66.5", "60");
INSERT INTO `wp_rg_form_view` VALUES("44919", "13", "2016-12-12 17:38:04", "178.137.92.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("44920", "13", "2016-12-12 17:38:04", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44921", "3", "2016-12-12 18:14:26", "77.75.77.32", "90");
INSERT INTO `wp_rg_form_view` VALUES("44922", "13", "2016-12-12 18:19:49", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("44923", "3", "2016-12-12 19:01:05", "77.75.79.54", "1461");
INSERT INTO `wp_rg_form_view` VALUES("44924", "10", "2016-12-12 19:02:37", "40.77.167.93", "24");
INSERT INTO `wp_rg_form_view` VALUES("44925", "9", "2016-12-12 19:02:40", "40.77.167.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("44926", "14", "2016-12-12 19:03:15", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("44927", "8", "2016-12-12 19:03:22", "40.77.167.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("44928", "11", "2016-12-12 19:03:33", "40.77.167.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("44929", "13", "2016-12-12 19:03:53", "40.77.167.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("44930", "2", "2016-12-12 19:27:07", "75.149.202.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("44931", "3", "2016-12-12 20:10:14", "66.249.84.202", "263");
INSERT INTO `wp_rg_form_view` VALUES("44932", "11", "2016-12-12 20:45:22", "138.197.47.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("44933", "2", "2016-12-12 20:45:25", "138.197.47.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("44934", "3", "2016-12-12 21:12:07", "77.75.79.72", "24");
INSERT INTO `wp_rg_form_view` VALUES("44935", "3", "2016-12-12 22:02:09", "77.75.76.171", "41");
INSERT INTO `wp_rg_form_view` VALUES("44936", "3", "2016-12-12 23:19:58", "68.180.228.44", "80");
INSERT INTO `wp_rg_form_view` VALUES("44937", "3", "2016-12-13 00:40:40", "31.184.194.91", "10");
INSERT INTO `wp_rg_form_view` VALUES("44938", "3", "2016-12-13 01:49:15", "77.75.76.167", "10");
INSERT INTO `wp_rg_form_view` VALUES("44939", "3", "2016-12-13 02:05:05", "68.180.228.44", "322");
INSERT INTO `wp_rg_form_view` VALUES("44940", "11", "2016-12-13 02:11:32", "50.163.68.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44941", "2", "2016-12-13 02:14:01", "50.163.68.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44942", "13", "2016-12-13 03:58:05", "178.137.92.36", "8");
INSERT INTO `wp_rg_form_view` VALUES("44943", "3", "2016-12-13 03:58:08", "178.137.90.14", "96");
INSERT INTO `wp_rg_form_view` VALUES("44944", "3", "2016-12-13 03:58:08", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44945", "3", "2016-12-13 03:58:08", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44946", "3", "2016-12-13 03:58:08", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("44947", "3", "2016-12-13 03:58:08", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("44948", "3", "2016-12-13 04:07:19", "68.180.228.44", "52");
INSERT INTO `wp_rg_form_view` VALUES("44949", "3", "2016-12-13 05:02:50", "202.46.53.116", "50");
INSERT INTO `wp_rg_form_view` VALUES("44950", "3", "2016-12-13 06:05:59", "163.172.66.168", "136");
INSERT INTO `wp_rg_form_view` VALUES("44951", "5", "2016-12-13 06:13:20", "77.75.76.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("44952", "14", "2016-12-13 06:41:16", "94.249.160.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("44953", "3", "2016-12-13 07:57:42", "163.172.66.8", "10");
INSERT INTO `wp_rg_form_view` VALUES("44954", "3", "2016-12-13 08:01:13", "77.75.79.11", "71");
INSERT INTO `wp_rg_form_view` VALUES("44955", "8", "2016-12-13 08:15:33", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("44956", "3", "2016-12-13 09:17:47", "202.46.55.86", "137");
INSERT INTO `wp_rg_form_view` VALUES("44957", "14", "2016-12-13 09:32:09", "75.157.131.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("44958", "12", "2016-12-13 10:03:13", "163.172.65.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("44959", "3", "2016-12-13 10:03:13", "163.172.65.18", "20");
INSERT INTO `wp_rg_form_view` VALUES("44960", "11", "2016-12-13 10:28:52", "77.75.78.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("44961", "3", "2016-12-13 11:10:54", "83.39.247.112", "91");
INSERT INTO `wp_rg_form_view` VALUES("44962", "13", "2016-12-13 11:19:39", "178.137.92.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("44963", "3", "2016-12-13 12:07:55", "163.172.65.111", "30");
INSERT INTO `wp_rg_form_view` VALUES("44964", "3", "2016-12-13 13:37:17", "68.180.228.44", "162");
INSERT INTO `wp_rg_form_view` VALUES("44965", "13", "2016-12-13 13:42:04", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("44966", "13", "2016-12-13 13:42:04", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("44967", "14", "2016-12-13 13:45:38", "24.68.158.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("44968", "3", "2016-12-13 14:12:09", "202.46.48.11", "354");
INSERT INTO `wp_rg_form_view` VALUES("44969", "11", "2016-12-13 14:21:00", "74.208.88.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("44970", "2", "2016-12-13 14:21:48", "74.208.88.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("44971", "3", "2016-12-13 15:14:11", "96.50.18.191", "76");
INSERT INTO `wp_rg_form_view` VALUES("44972", "12", "2016-12-13 15:39:18", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("44973", "3", "2016-12-13 16:10:19", "66.249.79.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("44974", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44975", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44976", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44977", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44978", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44979", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44980", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44981", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44982", "13", "2016-12-13 17:07:35", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44983", "3", "2016-12-13 17:07:37", "46.118.118.15", "152");
INSERT INTO `wp_rg_form_view` VALUES("44984", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44985", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44986", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44987", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44988", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44989", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44990", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44991", "3", "2016-12-13 17:07:37", "46.118.118.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("44992", "14", "2016-12-13 17:45:27", "68.180.228.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("44993", "14", "2016-12-13 17:45:27", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("44994", "10", "2016-12-13 17:55:03", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("44995", "3", "2016-12-13 18:00:50", "163.172.64.185", "171");
INSERT INTO `wp_rg_form_view` VALUES("44996", "3", "2016-12-13 19:00:27", "205.233.121.29", "432");
INSERT INTO `wp_rg_form_view` VALUES("44997", "11", "2016-12-13 19:56:46", "47.145.172.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44998", "2", "2016-12-13 19:57:38", "47.145.172.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("44999", "3", "2016-12-13 20:09:37", "96.54.195.123", "163");
INSERT INTO `wp_rg_form_view` VALUES("45000", "9", "2016-12-13 20:34:09", "163.172.66.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("45001", "14", "2016-12-13 20:39:02", "155.94.141.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("45002", "3", "2016-12-13 21:01:04", "205.233.121.29", "91");
INSERT INTO `wp_rg_form_view` VALUES("45003", "13", "2016-12-13 21:35:52", "178.137.92.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("45004", "10", "2016-12-13 21:42:19", "163.172.64.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("45005", "3", "2016-12-13 22:00:45", "70.66.179.52", "130");
INSERT INTO `wp_rg_form_view` VALUES("45006", "3", "2016-12-13 23:14:29", "163.172.65.15", "121");
INSERT INTO `wp_rg_form_view` VALUES("45007", "13", "2016-12-13 23:37:09", "46.118.118.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("45008", "14", "2016-12-13 23:53:32", "81.201.58.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("45009", "3", "2016-12-14 00:09:00", "163.172.65.208", "100");
INSERT INTO `wp_rg_form_view` VALUES("45010", "3", "2016-12-14 01:12:18", "96.50.0.55", "30");
INSERT INTO `wp_rg_form_view` VALUES("45011", "3", "2016-12-14 02:08:15", "68.180.228.44", "60");
INSERT INTO `wp_rg_form_view` VALUES("45012", "13", "2016-12-14 02:24:55", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45013", "3", "2016-12-14 04:03:42", "157.55.39.170", "30");
INSERT INTO `wp_rg_form_view` VALUES("45014", "3", "2016-12-14 05:36:43", "74.208.156.122", "311");
INSERT INTO `wp_rg_form_view` VALUES("45015", "11", "2016-12-14 05:36:46", "74.208.156.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("45016", "2", "2016-12-14 05:37:35", "74.208.156.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("45017", "3", "2016-12-14 06:25:51", "184.66.245.16", "20");
INSERT INTO `wp_rg_form_view` VALUES("45018", "3", "2016-12-14 07:24:56", "199.21.99.202", "20");
INSERT INTO `wp_rg_form_view` VALUES("45019", "3", "2016-12-14 08:32:17", "202.46.57.12", "10");
INSERT INTO `wp_rg_form_view` VALUES("45020", "13", "2016-12-14 09:20:43", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45021", "3", "2016-12-14 09:20:44", "46.118.154.190", "30");
INSERT INTO `wp_rg_form_view` VALUES("45022", "13", "2016-12-14 10:25:26", "5.248.196.220", "3");
INSERT INTO `wp_rg_form_view` VALUES("45023", "13", "2016-12-14 10:25:26", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45024", "13", "2016-12-14 10:25:26", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45025", "13", "2016-12-14 10:25:26", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45026", "3", "2016-12-14 10:25:29", "5.248.196.220", "55");
INSERT INTO `wp_rg_form_view` VALUES("45027", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45028", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45029", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45030", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45031", "3", "2016-12-14 10:25:29", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45032", "13", "2016-12-14 11:09:27", "178.137.92.36", "8");
INSERT INTO `wp_rg_form_view` VALUES("45033", "13", "2016-12-14 11:09:27", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("45034", "3", "2016-12-14 11:09:28", "178.137.92.36", "260");
INSERT INTO `wp_rg_form_view` VALUES("45035", "3", "2016-12-14 11:09:28", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("45036", "11", "2016-12-14 11:41:10", "52.184.165.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("45037", "2", "2016-12-14 11:41:10", "52.184.165.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("45038", "3", "2016-12-14 12:25:16", "68.180.228.44", "32");
INSERT INTO `wp_rg_form_view` VALUES("45039", "3", "2016-12-14 13:06:07", "64.180.188.206", "61");
INSERT INTO `wp_rg_form_view` VALUES("45040", "3", "2016-12-14 14:06:50", "202.46.48.137", "21");
INSERT INTO `wp_rg_form_view` VALUES("45041", "10", "2016-12-14 14:10:57", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45042", "3", "2016-12-14 15:32:12", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("45043", "10", "2016-12-14 16:01:58", "162.210.196.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("45044", "3", "2016-12-14 16:01:58", "162.210.196.98", "30");
INSERT INTO `wp_rg_form_view` VALUES("45045", "3", "2016-12-14 17:04:56", "81.37.113.248", "341");
INSERT INTO `wp_rg_form_view` VALUES("45046", "11", "2016-12-14 17:05:15", "81.37.113.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("45047", "2", "2016-12-14 17:08:47", "81.37.113.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("45048", "3", "2016-12-14 18:02:43", "207.194.133.9", "50");
INSERT INTO `wp_rg_form_view` VALUES("45049", "3", "2016-12-14 19:02:16", "68.180.228.44", "83");
INSERT INTO `wp_rg_form_view` VALUES("45050", "3", "2016-12-14 20:12:09", "68.180.228.44", "352");
INSERT INTO `wp_rg_form_view` VALUES("45051", "11", "2016-12-14 20:34:59", "79.116.26.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("45052", "2", "2016-12-14 20:36:05", "79.116.26.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("45053", "3", "2016-12-14 21:04:14", "207.194.133.9", "61");
INSERT INTO `wp_rg_form_view` VALUES("45054", "13", "2016-12-14 22:36:29", "178.137.92.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("45055", "13", "2016-12-14 22:36:29", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("45056", "3", "2016-12-14 22:36:32", "178.137.92.36", "41");
INSERT INTO `wp_rg_form_view` VALUES("45057", "3", "2016-12-14 22:36:32", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("45058", "3", "2016-12-14 22:36:32", "178.137.92.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("45059", "3", "2016-12-14 23:11:40", "67.78.163.190", "411");
INSERT INTO `wp_rg_form_view` VALUES("45060", "11", "2016-12-14 23:12:01", "67.78.163.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45061", "2", "2016-12-14 23:17:48", "67.78.163.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45062", "14", "2016-12-14 23:25:37", "155.94.141.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("45063", "3", "2016-12-15 00:00:02", "70.66.179.52", "80");
INSERT INTO `wp_rg_form_view` VALUES("45064", "10", "2016-12-15 00:12:07", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45065", "3", "2016-12-15 01:14:08", "68.180.228.44", "31");
INSERT INTO `wp_rg_form_view` VALUES("45066", "3", "2016-12-15 02:06:53", "216.126.45.8", "31");
INSERT INTO `wp_rg_form_view` VALUES("45067", "3", "2016-12-15 03:36:44", "96.50.1.183", "40");
INSERT INTO `wp_rg_form_view` VALUES("45068", "10", "2016-12-15 03:38:59", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45069", "3", "2016-12-15 05:01:05", "157.55.39.104", "329");
INSERT INTO `wp_rg_form_view` VALUES("45070", "10", "2016-12-15 05:01:19", "157.55.39.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("45071", "6", "2016-12-15 05:01:45", "207.46.13.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("45072", "5", "2016-12-15 05:01:54", "207.46.13.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("45073", "14", "2016-12-15 05:22:23", "191.96.135.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("45074", "3", "2016-12-15 06:15:47", "68.180.228.44", "190");
INSERT INTO `wp_rg_form_view` VALUES("45075", "13", "2016-12-15 06:24:57", "178.137.90.14", "8");
INSERT INTO `wp_rg_form_view` VALUES("45076", "13", "2016-12-15 06:24:57", "178.137.90.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("45077", "14", "2016-12-15 06:28:43", "24.108.212.111", "3");
INSERT INTO `wp_rg_form_view` VALUES("45078", "3", "2016-12-15 07:51:09", "173.252.74.100", "40");
INSERT INTO `wp_rg_form_view` VALUES("45079", "3", "2016-12-15 07:51:09", "24.68.37.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("45080", "3", "2016-12-15 08:13:13", "207.46.13.151", "529");
INSERT INTO `wp_rg_form_view` VALUES("45081", "10", "2016-12-15 08:13:24", "207.46.13.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("45082", "9", "2016-12-15 08:13:28", "207.46.13.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("45083", "8", "2016-12-15 08:49:59", "207.46.13.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("45084", "7", "2016-12-15 08:50:19", "207.46.13.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("45085", "8", "2016-12-15 09:14:37", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("45086", "3", "2016-12-15 09:14:37", "66.249.79.144", "41");
INSERT INTO `wp_rg_form_view` VALUES("45087", "3", "2016-12-15 10:06:45", "77.75.78.169", "59");
INSERT INTO `wp_rg_form_view` VALUES("45088", "3", "2016-12-15 11:03:44", "202.46.57.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("45089", "13", "2016-12-15 12:25:35", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("45090", "13", "2016-12-15 12:25:35", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45091", "3", "2016-12-15 12:25:38", "46.118.154.190", "28");
INSERT INTO `wp_rg_form_view` VALUES("45092", "3", "2016-12-15 12:25:38", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45093", "3", "2016-12-15 12:25:38", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45094", "13", "2016-12-15 13:23:15", "178.137.18.127", "5");
INSERT INTO `wp_rg_form_view` VALUES("45095", "13", "2016-12-15 13:23:15", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45096", "3", "2016-12-15 13:23:16", "178.137.18.127", "57");
INSERT INTO `wp_rg_form_view` VALUES("45097", "3", "2016-12-15 13:23:16", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45098", "3", "2016-12-15 13:23:16", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45099", "3", "2016-12-15 13:23:16", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45100", "13", "2016-12-15 14:06:01", "46.119.116.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("45101", "3", "2016-12-15 14:06:02", "46.119.116.116", "372");
INSERT INTO `wp_rg_form_view` VALUES("45102", "3", "2016-12-15 14:06:02", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45103", "11", "2016-12-15 14:11:49", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45104", "2", "2016-12-15 14:13:37", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45105", "3", "2016-12-15 15:50:50", "202.46.50.125", "11");
INSERT INTO `wp_rg_form_view` VALUES("45106", "13", "2016-12-15 16:13:06", "178.137.93.117", "6");
INSERT INTO `wp_rg_form_view` VALUES("45107", "3", "2016-12-15 16:13:06", "178.137.93.117", "60");
INSERT INTO `wp_rg_form_view` VALUES("45108", "3", "2016-12-15 18:19:23", "202.46.56.182", "62");
INSERT INTO `wp_rg_form_view` VALUES("45109", "3", "2016-12-15 19:59:54", "202.46.55.65", "11");
INSERT INTO `wp_rg_form_view` VALUES("45110", "3", "2016-12-15 20:33:20", "202.46.49.194", "10");
INSERT INTO `wp_rg_form_view` VALUES("45111", "10", "2016-12-15 21:03:31", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45112", "3", "2016-12-15 21:40:00", "51.254.143.240", "51");
INSERT INTO `wp_rg_form_view` VALUES("45113", "3", "2016-12-15 22:06:03", "68.180.228.44", "70");
INSERT INTO `wp_rg_form_view` VALUES("45114", "13", "2016-12-15 22:18:15", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("45115", "3", "2016-12-15 23:20:29", "207.194.133.9", "90");
INSERT INTO `wp_rg_form_view` VALUES("45116", "3", "2016-12-16 00:11:36", "176.120.119.241", "31");
INSERT INTO `wp_rg_form_view` VALUES("45117", "10", "2016-12-16 00:48:38", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45118", "3", "2016-12-16 01:13:46", "207.46.13.151", "10");
INSERT INTO `wp_rg_form_view` VALUES("45119", "3", "2016-12-16 02:33:47", "24.68.17.97", "48");
INSERT INTO `wp_rg_form_view` VALUES("45120", "10", "2016-12-16 03:19:55", "202.46.48.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("45121", "3", "2016-12-16 03:19:56", "202.46.48.148", "222");
INSERT INTO `wp_rg_form_view` VALUES("45122", "11", "2016-12-16 03:44:27", "45.55.141.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("45123", "2", "2016-12-16 03:44:28", "45.55.141.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("45124", "3", "2016-12-16 04:18:51", "24.68.137.145", "40");
INSERT INTO `wp_rg_form_view` VALUES("45125", "13", "2016-12-16 05:02:34", "46.119.116.116", "9");
INSERT INTO `wp_rg_form_view` VALUES("45126", "3", "2016-12-16 05:02:35", "46.119.116.116", "110");
INSERT INTO `wp_rg_form_view` VALUES("45127", "3", "2016-12-16 06:06:52", "66.102.6.93", "31");
INSERT INTO `wp_rg_form_view` VALUES("45128", "2", "2016-12-16 06:46:10", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45129", "3", "2016-12-16 07:28:13", "68.180.228.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("45130", "3", "2016-12-16 08:33:18", "198.46.199.160", "42");
INSERT INTO `wp_rg_form_view` VALUES("45131", "13", "2016-12-16 09:06:26", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("45132", "13", "2016-12-16 09:06:26", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45133", "3", "2016-12-16 09:06:26", "46.118.154.190", "31");
INSERT INTO `wp_rg_form_view` VALUES("45134", "3", "2016-12-16 09:06:26", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45135", "3", "2016-12-16 10:07:59", "40.77.167.2", "42");
INSERT INTO `wp_rg_form_view` VALUES("45136", "3", "2016-12-16 12:20:13", "207.46.13.151", "11");
INSERT INTO `wp_rg_form_view` VALUES("45137", "3", "2016-12-16 13:33:08", "220.181.108.100", "20");
INSERT INTO `wp_rg_form_view` VALUES("45138", "3", "2016-12-16 14:23:11", "207.46.13.151", "321");
INSERT INTO `wp_rg_form_view` VALUES("45139", "11", "2016-12-16 14:43:17", "70.35.199.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("45140", "2", "2016-12-16 14:44:01", "70.35.199.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("45141", "3", "2016-12-16 15:06:11", "108.179.33.140", "311");
INSERT INTO `wp_rg_form_view` VALUES("45142", "11", "2016-12-16 15:06:23", "108.179.33.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45143", "2", "2016-12-16 15:08:42", "108.179.33.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45144", "3", "2016-12-16 16:20:43", "68.180.228.44", "61");
INSERT INTO `wp_rg_form_view` VALUES("45145", "11", "2016-12-16 16:25:28", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45146", "7", "2016-12-16 16:41:26", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45147", "3", "2016-12-16 17:03:44", "40.77.167.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("45148", "3", "2016-12-16 18:12:08", "94.253.142.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("45149", "3", "2016-12-16 19:25:39", "163.172.66.3", "160");
INSERT INTO `wp_rg_form_view` VALUES("45150", "3", "2016-12-16 20:07:19", "163.172.65.181", "10");
INSERT INTO `wp_rg_form_view` VALUES("45151", "3", "2016-12-16 21:32:30", "40.77.167.15", "70");
INSERT INTO `wp_rg_form_view` VALUES("45152", "14", "2016-12-16 21:36:31", "23.80.153.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("45153", "10", "2016-12-16 21:56:07", "163.172.65.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("45154", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45155", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45156", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45157", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45158", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45159", "13", "2016-12-16 22:25:14", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45160", "3", "2016-12-16 22:25:15", "46.119.116.116", "65");
INSERT INTO `wp_rg_form_view` VALUES("45161", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45162", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45163", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45164", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45165", "3", "2016-12-16 22:25:15", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45166", "3", "2016-12-16 23:22:31", "96.50.107.46", "31");
INSERT INTO `wp_rg_form_view` VALUES("45167", "3", "2016-12-17 00:07:30", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("45168", "10", "2016-12-17 00:31:30", "163.172.65.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("45169", "3", "2016-12-17 01:07:17", "163.172.64.241", "42");
INSERT INTO `wp_rg_form_view` VALUES("45170", "3", "2016-12-17 02:05:35", "66.249.79.140", "23");
INSERT INTO `wp_rg_form_view` VALUES("45171", "3", "2016-12-17 03:26:03", "68.180.228.44", "31");
INSERT INTO `wp_rg_form_view` VALUES("45172", "10", "2016-12-17 03:47:27", "163.172.64.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("45173", "2", "2016-12-17 04:08:18", "163.172.64.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("45174", "3", "2016-12-17 04:08:19", "163.172.64.216", "81");
INSERT INTO `wp_rg_form_view` VALUES("45175", "13", "2016-12-17 04:12:33", "46.119.116.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("45176", "3", "2016-12-17 05:00:06", "40.77.167.38", "131");
INSERT INTO `wp_rg_form_view` VALUES("45177", "13", "2016-12-17 05:21:08", "178.137.18.127", "7");
INSERT INTO `wp_rg_form_view` VALUES("45178", "13", "2016-12-17 05:21:08", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45179", "13", "2016-12-17 05:21:08", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45180", "13", "2016-12-17 06:06:24", "178.137.93.117", "8");
INSERT INTO `wp_rg_form_view` VALUES("45181", "3", "2016-12-17 06:06:24", "178.137.93.117", "1796");
INSERT INTO `wp_rg_form_view` VALUES("45182", "14", "2016-12-17 06:45:38", "104.236.226.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("45183", "11", "2016-12-17 06:45:59", "104.236.226.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("45184", "3", "2016-12-17 07:00:14", "104.236.226.64", "3959");
INSERT INTO `wp_rg_form_view` VALUES("45185", "6", "2016-12-17 07:03:14", "104.236.226.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("45186", "9", "2016-12-17 07:11:47", "104.236.226.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("45187", "10", "2016-12-17 07:26:17", "104.236.226.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("45188", "2", "2016-12-17 07:52:31", "104.236.226.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("45189", "3", "2016-12-17 08:00:04", "104.236.226.64", "351");
INSERT INTO `wp_rg_form_view` VALUES("45190", "13", "2016-12-17 08:02:11", "104.236.226.64", "4");
INSERT INTO `wp_rg_form_view` VALUES("45191", "10", "2016-12-17 09:15:45", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("45192", "3", "2016-12-17 09:15:46", "46.229.168.71", "520");
INSERT INTO `wp_rg_form_view` VALUES("45193", "11", "2016-12-17 09:19:41", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("45194", "2", "2016-12-17 09:21:32", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("45195", "3", "2016-12-17 10:28:27", "68.180.228.44", "116");
INSERT INTO `wp_rg_form_view` VALUES("45196", "9", "2016-12-17 10:30:59", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45197", "3", "2016-12-17 11:06:58", "46.229.168.70", "134");
INSERT INTO `wp_rg_form_view` VALUES("45198", "10", "2016-12-17 11:25:43", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("45199", "3", "2016-12-17 12:07:03", "46.229.168.70", "94");
INSERT INTO `wp_rg_form_view` VALUES("45200", "10", "2016-12-17 12:17:28", "40.77.167.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("45201", "14", "2016-12-17 13:12:17", "202.46.51.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("45202", "3", "2016-12-17 13:12:18", "202.46.51.168", "73");
INSERT INTO `wp_rg_form_view` VALUES("45203", "3", "2016-12-17 14:12:17", "46.229.168.68", "1335");
INSERT INTO `wp_rg_form_view` VALUES("45204", "10", "2016-12-17 14:41:20", "207.46.13.151", "32");
INSERT INTO `wp_rg_form_view` VALUES("45205", "9", "2016-12-17 14:42:08", "207.46.13.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("45206", "13", "2016-12-17 14:42:30", "40.77.167.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("45207", "12", "2016-12-17 14:43:08", "40.77.167.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("45208", "11", "2016-12-17 14:43:26", "40.77.167.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("45209", "3", "2016-12-17 15:07:55", "202.46.51.197", "34");
INSERT INTO `wp_rg_form_view` VALUES("45210", "3", "2016-12-17 16:01:33", "66.102.6.93", "123");
INSERT INTO `wp_rg_form_view` VALUES("45211", "3", "2016-12-17 17:03:45", "66.249.79.144", "478");
INSERT INTO `wp_rg_form_view` VALUES("45212", "10", "2016-12-17 17:20:04", "46.229.168.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("45213", "11", "2016-12-17 17:23:37", "70.165.29.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("45214", "2", "2016-12-17 17:24:58", "70.165.29.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("45215", "13", "2016-12-17 17:56:07", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45216", "3", "2016-12-17 18:15:53", "46.229.168.67", "81");
INSERT INTO `wp_rg_form_view` VALUES("45217", "14", "2016-12-17 18:41:19", "60.53.130.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("45218", "3", "2016-12-17 19:06:21", "50.92.126.149", "200");
INSERT INTO `wp_rg_form_view` VALUES("45219", "3", "2016-12-17 20:11:33", "68.180.228.44", "130");
INSERT INTO `wp_rg_form_view` VALUES("45220", "13", "2016-12-17 20:25:04", "5.248.196.220", "4");
INSERT INTO `wp_rg_form_view` VALUES("45221", "13", "2016-12-17 20:25:04", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45222", "13", "2016-12-17 20:25:04", "5.248.196.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("45223", "3", "2016-12-17 21:06:05", "46.229.168.70", "235");
INSERT INTO `wp_rg_form_view` VALUES("45224", "13", "2016-12-17 21:20:16", "46.119.116.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("45225", "2", "2016-12-17 21:40:37", "46.229.168.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("45226", "3", "2016-12-17 22:08:55", "24.68.141.229", "93");
INSERT INTO `wp_rg_form_view` VALUES("45227", "3", "2016-12-17 23:00:10", "40.77.167.15", "51");
INSERT INTO `wp_rg_form_view` VALUES("45228", "3", "2016-12-18 00:09:16", "202.46.55.155", "52");
INSERT INTO `wp_rg_form_view` VALUES("45229", "13", "2016-12-18 00:36:51", "163.172.64.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("45230", "13", "2016-12-18 01:14:15", "46.118.154.190", "6");
INSERT INTO `wp_rg_form_view` VALUES("45231", "3", "2016-12-18 01:14:15", "46.118.154.190", "110");
INSERT INTO `wp_rg_form_view` VALUES("45232", "7", "2016-12-18 01:16:13", "202.46.56.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("45233", "14", "2016-12-18 01:17:05", "23.250.56.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("45234", "3", "2016-12-18 03:00:23", "50.92.126.149", "40");
INSERT INTO `wp_rg_form_view` VALUES("45235", "3", "2016-12-18 04:34:00", "98.249.103.86", "20");
INSERT INTO `wp_rg_form_view` VALUES("45236", "13", "2016-12-18 05:27:36", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45237", "13", "2016-12-18 05:27:36", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45238", "13", "2016-12-18 05:27:36", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45239", "3", "2016-12-18 05:27:40", "46.118.154.190", "38");
INSERT INTO `wp_rg_form_view` VALUES("45240", "3", "2016-12-18 05:27:40", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45241", "3", "2016-12-18 05:27:40", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45242", "3", "2016-12-18 06:38:13", "163.172.65.8", "30");
INSERT INTO `wp_rg_form_view` VALUES("45243", "10", "2016-12-18 06:42:06", "52.3.127.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("45244", "3", "2016-12-18 07:30:53", "52.91.146.199", "40");
INSERT INTO `wp_rg_form_view` VALUES("45245", "13", "2016-12-18 07:55:22", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("45246", "13", "2016-12-18 07:55:22", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45247", "14", "2016-12-18 09:41:45", "163.172.64.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("45248", "3", "2016-12-18 09:41:47", "163.172.64.243", "10");
INSERT INTO `wp_rg_form_view` VALUES("45249", "3", "2016-12-18 11:04:03", "68.180.228.44", "653");
INSERT INTO `wp_rg_form_view` VALUES("45250", "11", "2016-12-18 11:30:53", "185.144.83.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("45251", "2", "2016-12-18 11:31:53", "185.144.83.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("45252", "3", "2016-12-18 12:01:43", "40.77.167.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("45253", "3", "2016-12-18 13:38:43", "163.172.66.67", "30");
INSERT INTO `wp_rg_form_view` VALUES("45254", "10", "2016-12-18 13:50:54", "199.59.150.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("45255", "3", "2016-12-18 14:01:27", "40.77.167.15", "10");
INSERT INTO `wp_rg_form_view` VALUES("45256", "3", "2016-12-18 15:01:58", "202.46.54.161", "40");
INSERT INTO `wp_rg_form_view` VALUES("45257", "13", "2016-12-18 15:43:54", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45258", "3", "2016-12-18 16:19:32", "68.180.228.44", "362");
INSERT INTO `wp_rg_form_view` VALUES("45259", "11", "2016-12-18 16:31:40", "74.208.88.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("45260", "2", "2016-12-18 16:32:48", "74.208.88.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("45261", "3", "2016-12-18 18:18:37", "163.172.66.148", "71");
INSERT INTO `wp_rg_form_view` VALUES("45262", "3", "2016-12-18 19:52:04", "174.227.10.212", "53");
INSERT INTO `wp_rg_form_view` VALUES("45263", "3", "2016-12-18 19:52:04", "174.227.10.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("45264", "3", "2016-12-18 20:03:23", "24.68.36.249", "42");
INSERT INTO `wp_rg_form_view` VALUES("45265", "13", "2016-12-18 21:25:11", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45266", "13", "2016-12-18 21:25:11", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45267", "13", "2016-12-18 21:25:11", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45268", "3", "2016-12-18 21:25:18", "46.119.116.116", "28");
INSERT INTO `wp_rg_form_view` VALUES("45269", "3", "2016-12-18 21:25:18", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45270", "3", "2016-12-18 21:25:18", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45271", "3", "2016-12-18 23:13:01", "68.180.228.44", "82");
INSERT INTO `wp_rg_form_view` VALUES("45272", "13", "2016-12-19 00:22:25", "46.119.116.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("45273", "3", "2016-12-19 00:22:25", "46.119.116.116", "30");
INSERT INTO `wp_rg_form_view` VALUES("45274", "3", "2016-12-19 01:11:21", "163.172.66.55", "10");
INSERT INTO `wp_rg_form_view` VALUES("45275", "3", "2016-12-19 02:36:34", "70.67.46.196", "20");
INSERT INTO `wp_rg_form_view` VALUES("45276", "3", "2016-12-19 03:34:29", "68.180.228.44", "119");
INSERT INTO `wp_rg_form_view` VALUES("45277", "13", "2016-12-19 03:44:30", "178.137.93.117", "7");
INSERT INTO `wp_rg_form_view` VALUES("45278", "13", "2016-12-19 03:44:30", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45279", "13", "2016-12-19 03:44:30", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45280", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45281", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45282", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45283", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45284", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45285", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45286", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45287", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45288", "13", "2016-12-19 04:22:35", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45289", "3", "2016-12-19 04:22:55", "178.137.18.127", "92");
INSERT INTO `wp_rg_form_view` VALUES("45290", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45291", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45292", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45293", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45294", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45295", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45296", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45297", "3", "2016-12-19 04:22:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45298", "3", "2016-12-19 05:06:50", "50.252.229.141", "523");
INSERT INTO `wp_rg_form_view` VALUES("45299", "11", "2016-12-19 05:06:55", "50.252.229.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("45300", "2", "2016-12-19 05:08:28", "50.252.229.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("45301", "3", "2016-12-19 06:25:58", "144.76.30.236", "90");
INSERT INTO `wp_rg_form_view` VALUES("45302", "2", "2016-12-19 06:29:31", "220.181.108.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("45303", "13", "2016-12-19 06:48:29", "5.248.196.220", "3");
INSERT INTO `wp_rg_form_view` VALUES("45304", "13", "2016-12-19 07:15:44", "178.137.18.127", "4");
INSERT INTO `wp_rg_form_view` VALUES("45305", "13", "2016-12-19 07:15:44", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45306", "13", "2016-12-19 07:15:44", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45307", "3", "2016-12-19 07:15:47", "178.137.18.127", "58");
INSERT INTO `wp_rg_form_view` VALUES("45308", "3", "2016-12-19 07:15:47", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45309", "3", "2016-12-19 07:15:47", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45310", "3", "2016-12-19 09:40:01", "202.46.51.14", "21");
INSERT INTO `wp_rg_form_view` VALUES("45311", "3", "2016-12-19 10:13:33", "202.46.52.161", "30");
INSERT INTO `wp_rg_form_view` VALUES("45312", "3", "2016-12-19 11:02:14", "163.172.66.29", "31");
INSERT INTO `wp_rg_form_view` VALUES("45313", "3", "2016-12-19 12:23:41", "68.180.228.44", "32");
INSERT INTO `wp_rg_form_view` VALUES("45314", "3", "2016-12-19 13:02:34", "163.172.66.94", "50");
INSERT INTO `wp_rg_form_view` VALUES("45315", "3", "2016-12-19 14:13:34", "163.172.65.123", "60");
INSERT INTO `wp_rg_form_view` VALUES("45316", "13", "2016-12-19 14:28:51", "46.118.154.190", "4");
INSERT INTO `wp_rg_form_view` VALUES("45317", "13", "2016-12-19 15:00:18", "46.119.116.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("45318", "3", "2016-12-19 15:00:18", "46.119.116.116", "50");
INSERT INTO `wp_rg_form_view` VALUES("45319", "3", "2016-12-19 17:38:02", "202.46.54.195", "51");
INSERT INTO `wp_rg_form_view` VALUES("45320", "3", "2016-12-19 18:03:24", "70.67.56.125", "130");
INSERT INTO `wp_rg_form_view` VALUES("45321", "10", "2016-12-19 18:10:45", "163.172.65.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("45322", "14", "2016-12-19 18:20:47", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("45323", "3", "2016-12-19 19:11:21", "173.183.79.220", "130");
INSERT INTO `wp_rg_form_view` VALUES("45324", "10", "2016-12-19 19:39:17", "163.172.66.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("45325", "13", "2016-12-19 20:35:48", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("45326", "13", "2016-12-19 20:35:48", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45327", "3", "2016-12-19 20:35:51", "46.118.154.190", "58");
INSERT INTO `wp_rg_form_view` VALUES("45328", "3", "2016-12-19 20:35:51", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45329", "3", "2016-12-19 20:35:51", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45330", "14", "2016-12-19 20:49:46", "96.53.5.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("45331", "3", "2016-12-19 21:35:23", "184.67.160.26", "21");
INSERT INTO `wp_rg_form_view` VALUES("45332", "3", "2016-12-19 22:36:21", "163.172.66.134", "20");
INSERT INTO `wp_rg_form_view` VALUES("45333", "3", "2016-12-19 23:03:02", "66.249.79.144", "40");
INSERT INTO `wp_rg_form_view` VALUES("45334", "13", "2016-12-19 23:12:37", "178.137.93.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("45335", "13", "2016-12-19 23:12:37", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45336", "3", "2016-12-20 00:10:58", "202.46.49.157", "60");
INSERT INTO `wp_rg_form_view` VALUES("45337", "13", "2016-12-20 00:12:16", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("45338", "2", "2016-12-20 00:17:55", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45339", "11", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45340", "2", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45341", "3", "2016-12-20 01:08:41", "45.55.82.223", "202");
INSERT INTO `wp_rg_form_view` VALUES("45342", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45343", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45344", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45345", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45346", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45347", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45348", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45349", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45350", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45351", "3", "2016-12-20 01:08:41", "45.55.82.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("45352", "3", "2016-12-20 02:42:41", "68.180.228.44", "21");
INSERT INTO `wp_rg_form_view` VALUES("45353", "3", "2016-12-20 03:32:05", "202.46.54.210", "32");
INSERT INTO `wp_rg_form_view` VALUES("45354", "3", "2016-12-20 04:09:12", "40.77.167.44", "11");
INSERT INTO `wp_rg_form_view` VALUES("45355", "8", "2016-12-20 05:07:55", "163.172.66.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("45356", "3", "2016-12-20 05:07:55", "163.172.66.160", "20");
INSERT INTO `wp_rg_form_view` VALUES("45357", "3", "2016-12-20 06:43:12", "68.180.228.44", "40");
INSERT INTO `wp_rg_form_view` VALUES("45358", "3", "2016-12-20 07:24:29", "209.200.253.147", "60");
INSERT INTO `wp_rg_form_view` VALUES("45359", "14", "2016-12-20 07:35:16", "40.77.167.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45360", "13", "2016-12-20 07:56:26", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45361", "3", "2016-12-20 08:12:58", "163.172.66.150", "10");
INSERT INTO `wp_rg_form_view` VALUES("45362", "3", "2016-12-20 09:09:40", "68.180.228.44", "30");
INSERT INTO `wp_rg_form_view` VALUES("45363", "11", "2016-12-20 09:32:17", "163.172.66.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("45364", "2", "2016-12-20 10:36:14", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45365", "3", "2016-12-20 10:36:14", "46.119.116.116", "20");
INSERT INTO `wp_rg_form_view` VALUES("45366", "2", "2016-12-20 11:03:45", "178.137.18.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("45367", "3", "2016-12-20 11:03:45", "178.137.18.127", "20");
INSERT INTO `wp_rg_form_view` VALUES("45368", "3", "2016-12-20 13:31:56", "52.3.127.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("45369", "3", "2016-12-20 14:02:51", "68.180.228.44", "20");
INSERT INTO `wp_rg_form_view` VALUES("45370", "13", "2016-12-20 14:45:18", "202.46.54.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("45371", "3", "2016-12-20 15:52:48", "40.77.167.38", "10");
INSERT INTO `wp_rg_form_view` VALUES("45372", "3", "2016-12-20 16:27:05", "220.181.108.81", "50");
INSERT INTO `wp_rg_form_view` VALUES("45373", "8", "2016-12-20 16:45:23", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45374", "3", "2016-12-20 17:32:45", "202.46.50.13", "132");
INSERT INTO `wp_rg_form_view` VALUES("45375", "10", "2016-12-20 17:54:57", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("45376", "3", "2016-12-20 18:09:30", "163.172.65.123", "141");
INSERT INTO `wp_rg_form_view` VALUES("45377", "11", "2016-12-20 18:49:16", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("45378", "3", "2016-12-20 19:09:54", "107.170.92.161", "100");
INSERT INTO `wp_rg_form_view` VALUES("45379", "14", "2016-12-20 19:39:05", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("45380", "2", "2016-12-20 19:49:29", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45381", "3", "2016-12-20 20:01:22", "24.108.168.20", "113");
INSERT INTO `wp_rg_form_view` VALUES("45382", "2", "2016-12-20 20:35:15", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45383", "3", "2016-12-20 21:40:08", "163.172.65.216", "659");
INSERT INTO `wp_rg_form_view` VALUES("45384", "10", "2016-12-20 21:51:00", "207.46.13.151", "14");
INSERT INTO `wp_rg_form_view` VALUES("45385", "9", "2016-12-20 21:51:44", "207.46.13.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("45386", "13", "2016-12-20 21:52:21", "157.55.39.166", "2");
INSERT INTO `wp_rg_form_view` VALUES("45387", "3", "2016-12-20 23:11:09", "184.71.1.246", "70");
INSERT INTO `wp_rg_form_view` VALUES("45388", "9", "2016-12-20 23:11:13", "167.114.234.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("45389", "2", "2016-12-20 23:37:47", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45390", "11", "2016-12-20 23:57:07", "68.180.228.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45391", "3", "2016-12-21 00:05:54", "163.172.66.164", "127");
INSERT INTO `wp_rg_form_view` VALUES("45392", "3", "2016-12-21 01:00:00", "80.248.225.157", "713");
INSERT INTO `wp_rg_form_view` VALUES("45393", "2", "2016-12-21 01:01:59", "80.248.225.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("45394", "11", "2016-12-21 01:05:15", "80.248.225.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("45395", "14", "2016-12-21 01:05:45", "80.248.225.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("45396", "13", "2016-12-21 01:09:30", "80.248.225.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("45397", "2", "2016-12-21 02:23:21", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45398", "3", "2016-12-21 02:23:22", "46.119.116.116", "89");
INSERT INTO `wp_rg_form_view` VALUES("45399", "3", "2016-12-21 02:23:22", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45400", "12", "2016-12-21 02:36:16", "163.172.65.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("45401", "3", "2016-12-21 03:17:56", "68.180.228.105", "71");
INSERT INTO `wp_rg_form_view` VALUES("45402", "2", "2016-12-21 03:49:25", "178.137.18.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("45403", "2", "2016-12-21 03:49:25", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45404", "3", "2016-12-21 04:07:15", "202.46.58.91", "40");
INSERT INTO `wp_rg_form_view` VALUES("45405", "3", "2016-12-21 05:12:59", "163.172.66.100", "51");
INSERT INTO `wp_rg_form_view` VALUES("45406", "14", "2016-12-21 05:18:56", "24.108.194.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45407", "10", "2016-12-21 06:14:28", "46.229.168.68", "4");
INSERT INTO `wp_rg_form_view` VALUES("45408", "3", "2016-12-21 06:14:28", "46.229.168.68", "260");
INSERT INTO `wp_rg_form_view` VALUES("45409", "3", "2016-12-21 07:02:26", "40.77.167.44", "119");
INSERT INTO `wp_rg_form_view` VALUES("45410", "10", "2016-12-21 07:53:02", "213.239.205.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("45411", "2", "2016-12-21 08:07:26", "178.137.93.117", "21");
INSERT INTO `wp_rg_form_view` VALUES("45412", "3", "2016-12-21 08:07:26", "178.137.93.117", "323");
INSERT INTO `wp_rg_form_view` VALUES("45413", "3", "2016-12-21 08:07:26", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45414", "10", "2016-12-21 08:09:54", "46.229.168.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("45415", "10", "2016-12-21 09:07:03", "46.229.168.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("45416", "3", "2016-12-21 09:07:04", "46.229.168.72", "466");
INSERT INTO `wp_rg_form_view` VALUES("45417", "5", "2016-12-21 09:49:13", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("45418", "11", "2016-12-21 09:51:03", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("45419", "2", "2016-12-21 09:51:08", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("45420", "3", "2016-12-21 10:25:49", "46.229.168.71", "103");
INSERT INTO `wp_rg_form_view` VALUES("45421", "3", "2016-12-21 11:12:33", "66.249.79.140", "62");
INSERT INTO `wp_rg_form_view` VALUES("45422", "13", "2016-12-21 11:20:49", "163.172.65.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("45423", "10", "2016-12-21 11:20:49", "163.172.65.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("45424", "3", "2016-12-21 12:07:19", "157.55.39.117", "114");
INSERT INTO `wp_rg_form_view` VALUES("45425", "3", "2016-12-21 13:07:36", "46.229.168.68", "197");
INSERT INTO `wp_rg_form_view` VALUES("45426", "10", "2016-12-21 13:29:38", "46.229.168.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("45427", "3", "2016-12-21 14:00:04", "66.249.79.140", "70");
INSERT INTO `wp_rg_form_view` VALUES("45428", "3", "2016-12-21 15:13:12", "46.229.168.65", "159");
INSERT INTO `wp_rg_form_view` VALUES("45429", "3", "2016-12-21 16:15:06", "46.229.168.71", "103");
INSERT INTO `wp_rg_form_view` VALUES("45430", "3", "2016-12-21 17:01:47", "68.180.228.105", "165");
INSERT INTO `wp_rg_form_view` VALUES("45431", "2", "2016-12-21 17:33:27", "46.229.168.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("45432", "3", "2016-12-21 18:00:21", "24.108.24.101", "124");
INSERT INTO `wp_rg_form_view` VALUES("45433", "6", "2016-12-21 18:18:15", "202.46.48.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("45434", "3", "2016-12-21 19:01:42", "207.194.133.9", "371");
INSERT INTO `wp_rg_form_view` VALUES("45435", "11", "2016-12-21 19:48:07", "62.195.2.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("45436", "2", "2016-12-21 19:49:37", "62.195.2.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("45437", "6", "2016-12-21 19:56:13", "202.46.51.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("45438", "3", "2016-12-21 20:02:12", "142.231.110.50", "41");
INSERT INTO `wp_rg_form_view` VALUES("45439", "8", "2016-12-21 21:02:19", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45440", "3", "2016-12-21 21:02:19", "68.180.228.105", "40");
INSERT INTO `wp_rg_form_view` VALUES("45441", "2", "2016-12-21 22:18:50", "5.248.196.220", "3");
INSERT INTO `wp_rg_form_view` VALUES("45442", "3", "2016-12-21 22:18:50", "5.248.196.220", "30");
INSERT INTO `wp_rg_form_view` VALUES("45443", "3", "2016-12-21 23:54:14", "163.172.65.54", "10");
INSERT INTO `wp_rg_form_view` VALUES("45444", "3", "2016-12-22 00:24:55", "163.172.65.106", "11");
INSERT INTO `wp_rg_form_view` VALUES("45445", "3", "2016-12-22 01:23:17", "70.31.77.209", "51");
INSERT INTO `wp_rg_form_view` VALUES("45446", "12", "2016-12-22 01:28:07", "202.46.51.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("45447", "3", "2016-12-22 02:07:14", "163.172.66.78", "53");
INSERT INTO `wp_rg_form_view` VALUES("45448", "14", "2016-12-22 02:31:02", "190.52.72.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("45449", "3", "2016-12-22 03:03:52", "40.77.167.38", "31");
INSERT INTO `wp_rg_form_view` VALUES("45450", "13", "2016-12-22 03:32:41", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45451", "3", "2016-12-22 05:06:07", "68.180.228.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("45452", "3", "2016-12-22 06:42:43", "68.180.228.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("45453", "3", "2016-12-22 07:28:58", "52.91.170.190", "20");
INSERT INTO `wp_rg_form_view` VALUES("45454", "14", "2016-12-22 07:44:22", "223.25.99.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("45455", "3", "2016-12-22 08:05:39", "163.172.66.14", "62");
INSERT INTO `wp_rg_form_view` VALUES("45456", "2", "2016-12-22 09:29:08", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45457", "3", "2016-12-22 09:29:08", "46.119.116.116", "10");
INSERT INTO `wp_rg_form_view` VALUES("45458", "3", "2016-12-22 10:41:49", "68.180.228.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("45459", "3", "2016-12-22 11:04:47", "66.249.79.148", "30");
INSERT INTO `wp_rg_form_view` VALUES("45460", "2", "2016-12-22 12:07:48", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45461", "3", "2016-12-22 12:07:48", "178.137.18.127", "10");
INSERT INTO `wp_rg_form_view` VALUES("45462", "3", "2016-12-22 13:16:00", "68.180.228.105", "41");
INSERT INTO `wp_rg_form_view` VALUES("45463", "2", "2016-12-22 13:29:27", "5.248.196.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("45464", "3", "2016-12-22 14:19:46", "163.172.66.40", "21");
INSERT INTO `wp_rg_form_view` VALUES("45465", "3", "2016-12-22 15:02:01", "163.172.66.38", "20");
INSERT INTO `wp_rg_form_view` VALUES("45466", "10", "2016-12-22 15:36:34", "163.172.65.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("45467", "3", "2016-12-22 16:13:05", "163.172.65.31", "392");
INSERT INTO `wp_rg_form_view` VALUES("45468", "10", "2016-12-22 16:13:49", "163.172.66.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("45469", "11", "2016-12-22 16:24:49", "75.149.202.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45470", "2", "2016-12-22 16:25:53", "75.149.202.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45471", "3", "2016-12-22 17:01:36", "205.250.86.162", "60");
INSERT INTO `wp_rg_form_view` VALUES("45472", "3", "2016-12-22 18:07:11", "24.69.81.117", "100");
INSERT INTO `wp_rg_form_view` VALUES("45473", "10", "2016-12-22 18:44:34", "163.172.66.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("45474", "3", "2016-12-22 19:12:49", "66.249.79.144", "135");
INSERT INTO `wp_rg_form_view` VALUES("45475", "2", "2016-12-22 19:20:22", "46.119.116.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("45476", "3", "2016-12-22 20:00:01", "50.69.7.64", "60");
INSERT INTO `wp_rg_form_view` VALUES("45477", "14", "2016-12-22 20:02:24", "62.141.36.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("45478", "3", "2016-12-22 21:20:26", "132.156.2.2", "184");
INSERT INTO `wp_rg_form_view` VALUES("45479", "14", "2016-12-22 21:20:39", "132.156.2.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("45480", "10", "2016-12-22 21:40:58", "163.172.66.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("45481", "2", "2016-12-22 21:52:43", "178.137.18.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("45482", "5", "2016-12-22 21:59:47", "202.46.50.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("45483", "3", "2016-12-22 22:08:16", "207.194.133.9", "50");
INSERT INTO `wp_rg_form_view` VALUES("45484", "10", "2016-12-23 00:30:26", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45485", "3", "2016-12-23 00:30:31", "68.180.228.105", "40");
INSERT INTO `wp_rg_form_view` VALUES("45486", "2", "2016-12-23 00:36:29", "46.119.116.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("45487", "2", "2016-12-23 01:47:11", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45488", "2", "2016-12-23 01:47:11", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45489", "3", "2016-12-23 01:47:13", "46.119.116.116", "28");
INSERT INTO `wp_rg_form_view` VALUES("45490", "3", "2016-12-23 01:47:13", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45491", "3", "2016-12-23 01:47:13", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45492", "6", "2016-12-23 02:15:56", "163.172.65.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("45493", "3", "2016-12-23 02:15:56", "163.172.65.58", "31");
INSERT INTO `wp_rg_form_view` VALUES("45494", "2", "2016-12-23 03:54:35", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45495", "3", "2016-12-23 03:54:35", "68.180.228.105", "21");
INSERT INTO `wp_rg_form_view` VALUES("45496", "3", "2016-12-23 04:28:47", "77.75.76.165", "50");
INSERT INTO `wp_rg_form_view` VALUES("45497", "11", "2016-12-23 05:03:00", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("45498", "3", "2016-12-23 05:03:00", "136.243.36.94", "435");
INSERT INTO `wp_rg_form_view` VALUES("45499", "2", "2016-12-23 05:04:29", "136.243.36.94", "7");
INSERT INTO `wp_rg_form_view` VALUES("45500", "2", "2016-12-23 06:39:49", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45501", "3", "2016-12-23 06:39:50", "46.118.154.190", "50");
INSERT INTO `wp_rg_form_view` VALUES("45502", "14", "2016-12-23 06:48:43", "120.52.73.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("45503", "3", "2016-12-23 08:10:17", "68.180.228.105", "60");
INSERT INTO `wp_rg_form_view` VALUES("45504", "3", "2016-12-23 09:09:25", "202.46.49.138", "1106");
INSERT INTO `wp_rg_form_view` VALUES("45505", "10", "2016-12-23 09:47:31", "40.77.167.38", "25");
INSERT INTO `wp_rg_form_view` VALUES("45506", "12", "2016-12-23 09:47:34", "40.77.167.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("45507", "13", "2016-12-23 09:48:33", "157.55.39.16", "3");
INSERT INTO `wp_rg_form_view` VALUES("45508", "11", "2016-12-23 09:49:10", "40.77.167.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("45509", "2", "2016-12-23 09:58:37", "45.55.229.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("45510", "3", "2016-12-23 10:58:49", "202.46.51.80", "10");
INSERT INTO `wp_rg_form_view` VALUES("45511", "3", "2016-12-23 11:25:37", "80.78.250.103", "21");
INSERT INTO `wp_rg_form_view` VALUES("45512", "14", "2016-12-23 12:11:34", "158.222.8.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("45513", "3", "2016-12-23 12:11:36", "158.222.8.42", "42");
INSERT INTO `wp_rg_form_view` VALUES("45514", "2", "2016-12-23 13:01:07", "178.137.93.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("45515", "2", "2016-12-23 13:01:07", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45516", "2", "2016-12-23 13:01:07", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45517", "2", "2016-12-23 13:01:07", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45518", "3", "2016-12-23 13:01:08", "178.137.93.117", "57");
INSERT INTO `wp_rg_form_view` VALUES("45519", "3", "2016-12-23 13:01:08", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45520", "3", "2016-12-23 13:01:08", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45521", "3", "2016-12-23 13:01:08", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45522", "2", "2016-12-23 15:11:13", "178.137.93.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("45523", "2", "2016-12-23 15:11:13", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45524", "3", "2016-12-23 15:11:22", "178.137.93.117", "48");
INSERT INTO `wp_rg_form_view` VALUES("45525", "3", "2016-12-23 15:11:22", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45526", "3", "2016-12-23 15:11:22", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45527", "2", "2016-12-23 16:23:11", "46.118.154.190", "4");
INSERT INTO `wp_rg_form_view` VALUES("45528", "3", "2016-12-23 16:23:11", "46.118.154.190", "50");
INSERT INTO `wp_rg_form_view` VALUES("45529", "3", "2016-12-23 17:35:20", "66.102.6.95", "20");
INSERT INTO `wp_rg_form_view` VALUES("45530", "10", "2016-12-23 18:15:18", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("45531", "3", "2016-12-23 18:15:22", "66.249.79.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("45532", "3", "2016-12-23 20:07:39", "64.114.25.211", "40");
INSERT INTO `wp_rg_form_view` VALUES("45533", "2", "2016-12-23 21:08:43", "5.248.196.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("45534", "3", "2016-12-23 21:08:50", "5.248.196.252", "68");
INSERT INTO `wp_rg_form_view` VALUES("45535", "3", "2016-12-23 21:08:50", "5.248.196.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("45536", "3", "2016-12-23 21:08:50", "5.248.196.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("45537", "10", "2016-12-23 22:02:40", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("45538", "3", "2016-12-23 22:02:40", "217.69.133.227", "20");
INSERT INTO `wp_rg_form_view` VALUES("45539", "3", "2016-12-23 23:03:27", "66.249.79.148", "75");
INSERT INTO `wp_rg_form_view` VALUES("45540", "6", "2016-12-23 23:35:24", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("45541", "14", "2016-12-23 23:36:52", "5.189.170.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("45542", "3", "2016-12-24 00:50:34", "40.77.167.44", "20");
INSERT INTO `wp_rg_form_view` VALUES("45543", "13", "2016-12-24 00:53:50", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45544", "3", "2016-12-24 01:10:45", "217.69.133.229", "31");
INSERT INTO `wp_rg_form_view` VALUES("45545", "3", "2016-12-24 02:17:19", "68.180.228.105", "19");
INSERT INTO `wp_rg_form_view` VALUES("45546", "3", "2016-12-24 03:26:16", "68.180.228.105", "20");
INSERT INTO `wp_rg_form_view` VALUES("45547", "10", "2016-12-24 03:37:38", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45548", "14", "2016-12-24 04:13:34", "128.199.204.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("45549", "3", "2016-12-24 04:13:34", "128.199.204.44", "21");
INSERT INTO `wp_rg_form_view` VALUES("45550", "2", "2016-12-24 05:03:58", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45551", "3", "2016-12-24 05:03:58", "46.118.154.190", "40");
INSERT INTO `wp_rg_form_view` VALUES("45552", "10", "2016-12-24 05:56:12", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("45553", "3", "2016-12-24 06:35:23", "40.77.167.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("45554", "3", "2016-12-24 07:32:38", "217.69.133.230", "11");
INSERT INTO `wp_rg_form_view` VALUES("45555", "2", "2016-12-24 09:04:44", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45556", "2", "2016-12-24 09:04:44", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45557", "3", "2016-12-24 09:04:46", "46.119.116.116", "138");
INSERT INTO `wp_rg_form_view` VALUES("45558", "3", "2016-12-24 09:04:46", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45559", "10", "2016-12-24 09:08:32", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("45560", "3", "2016-12-24 10:00:12", "202.46.51.58", "50");
INSERT INTO `wp_rg_form_view` VALUES("45561", "2", "2016-12-24 10:55:43", "178.137.93.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("45562", "3", "2016-12-24 11:44:16", "68.180.228.105", "29");
INSERT INTO `wp_rg_form_view` VALUES("45563", "3", "2016-12-24 12:19:54", "217.69.133.228", "20");
INSERT INTO `wp_rg_form_view` VALUES("45564", "3", "2016-12-24 13:43:46", "163.172.66.59", "21");
INSERT INTO `wp_rg_form_view` VALUES("45565", "3", "2016-12-24 14:40:12", "68.180.228.105", "22");
INSERT INTO `wp_rg_form_view` VALUES("45566", "3", "2016-12-24 15:13:16", "202.46.52.60", "41");
INSERT INTO `wp_rg_form_view` VALUES("45567", "2", "2016-12-24 16:06:59", "178.137.18.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("45568", "3", "2016-12-24 16:06:59", "178.137.18.127", "30");
INSERT INTO `wp_rg_form_view` VALUES("45569", "3", "2016-12-24 18:21:20", "202.46.55.154", "41");
INSERT INTO `wp_rg_form_view` VALUES("45570", "10", "2016-12-24 18:34:21", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("45571", "2", "2016-12-24 18:55:54", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45572", "3", "2016-12-24 19:20:34", "66.249.79.140", "346");
INSERT INTO `wp_rg_form_view` VALUES("45573", "11", "2016-12-24 19:40:38", "173.9.55.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("45574", "2", "2016-12-24 19:41:39", "173.9.55.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("45575", "3", "2016-12-24 20:01:52", "202.46.51.132", "41");
INSERT INTO `wp_rg_form_view` VALUES("45576", "3", "2016-12-24 21:10:20", "66.249.79.140", "60");
INSERT INTO `wp_rg_form_view` VALUES("45577", "10", "2016-12-24 21:28:58", "163.172.65.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("45578", "3", "2016-12-24 22:13:45", "202.46.48.17", "142");
INSERT INTO `wp_rg_form_view` VALUES("45579", "11", "2016-12-24 22:22:52", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("45580", "2", "2016-12-24 22:22:55", "69.58.178.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("45581", "3", "2016-12-24 23:04:52", "207.46.13.51", "81");
INSERT INTO `wp_rg_form_view` VALUES("45582", "10", "2016-12-24 23:28:46", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("45583", "2", "2016-12-24 23:55:36", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45584", "10", "2016-12-25 00:01:18", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45585", "3", "2016-12-25 00:01:18", "68.180.228.105", "41");
INSERT INTO `wp_rg_form_view` VALUES("45586", "2", "2016-12-25 01:01:16", "46.119.116.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("45587", "3", "2016-12-25 01:01:16", "46.119.116.116", "82");
INSERT INTO `wp_rg_form_view` VALUES("45588", "10", "2016-12-25 01:01:29", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("45589", "3", "2016-12-25 02:51:47", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("45590", "3", "2016-12-25 03:52:25", "163.172.65.185", "11");
INSERT INTO `wp_rg_form_view` VALUES("45591", "3", "2016-12-25 04:12:23", "217.69.133.230", "40");
INSERT INTO `wp_rg_form_view` VALUES("45592", "3", "2016-12-25 05:39:42", "163.172.64.226", "30");
INSERT INTO `wp_rg_form_view` VALUES("45593", "14", "2016-12-25 07:01:18", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("45594", "3", "2016-12-25 07:01:36", "66.249.79.144", "101");
INSERT INTO `wp_rg_form_view` VALUES("45595", "10", "2016-12-25 07:23:11", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("45596", "2", "2016-12-25 07:46:01", "5.248.196.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("45597", "2", "2016-12-25 08:22:18", "178.137.18.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("45598", "3", "2016-12-25 08:22:19", "178.137.18.127", "41");
INSERT INTO `wp_rg_form_view` VALUES("45599", "3", "2016-12-25 09:02:45", "66.249.79.148", "632");
INSERT INTO `wp_rg_form_view` VALUES("45600", "11", "2016-12-25 09:14:22", "50.163.68.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("45601", "2", "2016-12-25 09:15:44", "50.163.68.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("45602", "3", "2016-12-25 10:04:08", "50.252.229.141", "352");
INSERT INTO `wp_rg_form_view` VALUES("45603", "11", "2016-12-25 10:04:14", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45604", "2", "2016-12-25 10:05:55", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45605", "3", "2016-12-25 11:17:22", "163.172.65.184", "20");
INSERT INTO `wp_rg_form_view` VALUES("45606", "3", "2016-12-25 12:13:30", "68.180.228.105", "21");
INSERT INTO `wp_rg_form_view` VALUES("45607", "3", "2016-12-25 13:08:15", "195.154.225.48", "40");
INSERT INTO `wp_rg_form_view` VALUES("45608", "10", "2016-12-25 13:43:42", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("45609", "10", "2016-12-25 14:16:43", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45610", "3", "2016-12-25 14:16:46", "66.249.79.140", "10");
INSERT INTO `wp_rg_form_view` VALUES("45611", "3", "2016-12-25 15:20:27", "217.69.133.227", "32");
INSERT INTO `wp_rg_form_view` VALUES("45612", "3", "2016-12-25 16:35:03", "50.98.66.76", "121");
INSERT INTO `wp_rg_form_view` VALUES("45613", "2", "2016-12-25 16:42:35", "178.137.93.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("45614", "3", "2016-12-25 17:09:52", "68.180.228.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("45615", "2", "2016-12-25 18:19:33", "178.137.93.117", "4");
INSERT INTO `wp_rg_form_view` VALUES("45616", "3", "2016-12-25 18:19:33", "178.137.93.117", "50");
INSERT INTO `wp_rg_form_view` VALUES("45617", "13", "2016-12-25 18:31:01", "217.69.133.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("45618", "2", "2016-12-25 19:06:34", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45619", "3", "2016-12-25 19:06:35", "46.118.154.190", "331");
INSERT INTO `wp_rg_form_view` VALUES("45620", "11", "2016-12-25 19:49:49", "70.165.29.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("45621", "7", "2016-12-25 20:00:28", "207.46.13.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("45622", "3", "2016-12-25 20:00:28", "207.46.13.146", "51");
INSERT INTO `wp_rg_form_view` VALUES("45623", "11", "2016-12-25 20:55:17", "202.46.50.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("45624", "3", "2016-12-25 21:16:43", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("45625", "3", "2016-12-25 22:07:47", "68.145.232.139", "1273");
INSERT INTO `wp_rg_form_view` VALUES("45626", "9", "2016-12-25 22:10:45", "157.55.39.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("45627", "10", "2016-12-25 22:42:33", "40.77.167.5", "32");
INSERT INTO `wp_rg_form_view` VALUES("45628", "11", "2016-12-25 22:43:32", "157.55.39.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("45629", "12", "2016-12-25 22:44:07", "207.46.13.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("45630", "13", "2016-12-25 22:44:11", "207.46.13.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("45631", "3", "2016-12-25 23:19:15", "217.69.133.69", "51");
INSERT INTO `wp_rg_form_view` VALUES("45632", "13", "2016-12-25 23:19:24", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("45633", "2", "2016-12-25 23:48:07", "178.137.93.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("45634", "2", "2016-12-25 23:48:07", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45635", "3", "2016-12-26 00:15:37", "68.180.228.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("45636", "3", "2016-12-26 01:43:02", "206.221.180.50", "22");
INSERT INTO `wp_rg_form_view` VALUES("45637", "14", "2016-12-26 02:48:04", "75.127.5.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("45638", "3", "2016-12-26 02:48:05", "75.127.5.236", "93");
INSERT INTO `wp_rg_form_view` VALUES("45639", "3", "2016-12-26 03:56:21", "74.142.132.154", "155");
INSERT INTO `wp_rg_form_view` VALUES("45640", "11", "2016-12-26 03:56:30", "74.142.132.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("45641", "2", "2016-12-26 03:59:59", "74.142.132.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("45642", "3", "2016-12-26 04:00:00", "74.142.132.154", "166");
INSERT INTO `wp_rg_form_view` VALUES("45643", "3", "2016-12-26 05:10:17", "202.46.49.196", "202");
INSERT INTO `wp_rg_form_view` VALUES("45644", "2", "2016-12-26 05:51:16", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45645", "3", "2016-12-26 06:00:04", "46.229.168.75", "142");
INSERT INTO `wp_rg_form_view` VALUES("45646", "2", "2016-12-26 07:00:02", "46.118.154.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("45647", "3", "2016-12-26 07:00:02", "46.118.154.190", "295");
INSERT INTO `wp_rg_form_view` VALUES("45648", "11", "2016-12-26 07:26:35", "45.55.191.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("45649", "3", "2016-12-26 08:31:32", "46.229.168.74", "70");
INSERT INTO `wp_rg_form_view` VALUES("45650", "13", "2016-12-26 08:43:21", "207.46.13.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("45651", "3", "2016-12-26 09:03:09", "70.35.196.136", "789");
INSERT INTO `wp_rg_form_view` VALUES("45652", "11", "2016-12-26 09:03:12", "70.35.196.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("45653", "2", "2016-12-26 09:03:59", "70.35.196.136", "3");
INSERT INTO `wp_rg_form_view` VALUES("45654", "10", "2016-12-26 09:32:34", "46.229.168.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("45655", "3", "2016-12-26 10:31:58", "46.229.168.72", "81");
INSERT INTO `wp_rg_form_view` VALUES("45656", "3", "2016-12-26 11:07:12", "46.229.168.65", "71");
INSERT INTO `wp_rg_form_view` VALUES("45657", "3", "2016-12-26 12:26:13", "46.229.168.70", "121");
INSERT INTO `wp_rg_form_view` VALUES("45658", "3", "2016-12-26 13:03:34", "46.229.168.70", "313");
INSERT INTO `wp_rg_form_view` VALUES("45659", "3", "2016-12-26 14:11:58", "66.249.79.140", "20");
INSERT INTO `wp_rg_form_view` VALUES("45660", "3", "2016-12-26 15:01:22", "46.229.168.70", "70");
INSERT INTO `wp_rg_form_view` VALUES("45661", "2", "2016-12-26 15:20:56", "178.137.93.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("45662", "3", "2016-12-26 17:05:50", "68.180.228.105", "91");
INSERT INTO `wp_rg_form_view` VALUES("45663", "2", "2016-12-26 17:05:54", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45664", "3", "2016-12-26 18:09:54", "66.249.79.148", "322");
INSERT INTO `wp_rg_form_view` VALUES("45665", "11", "2016-12-26 18:56:35", "86.123.246.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("45666", "2", "2016-12-26 18:57:45", "86.123.246.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("45667", "2", "2016-12-26 19:37:42", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45668", "3", "2016-12-26 19:37:43", "178.137.18.127", "10");
INSERT INTO `wp_rg_form_view` VALUES("45669", "2", "2016-12-26 20:10:33", "46.119.116.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("45670", "3", "2016-12-26 20:10:33", "46.119.116.116", "70");
INSERT INTO `wp_rg_form_view` VALUES("45671", "14", "2016-12-26 20:24:10", "202.56.203.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("45672", "3", "2016-12-26 21:10:41", "108.179.33.140", "543");
INSERT INTO `wp_rg_form_view` VALUES("45673", "11", "2016-12-26 21:10:49", "108.179.33.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("45674", "2", "2016-12-26 21:14:00", "108.179.33.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45675", "10", "2016-12-26 21:37:21", "77.75.79.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("45676", "5", "2016-12-26 21:37:37", "77.75.79.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("45677", "14", "2016-12-26 21:38:43", "77.75.79.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("45678", "3", "2016-12-26 22:01:24", "163.172.66.172", "40");
INSERT INTO `wp_rg_form_view` VALUES("45679", "3", "2016-12-26 23:07:04", "66.249.79.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("45680", "2", "2016-12-27 00:39:27", "68.180.228.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("45681", "3", "2016-12-27 00:39:28", "68.180.228.105", "100");
INSERT INTO `wp_rg_form_view` VALUES("45682", "11", "2016-12-27 00:43:20", "80.82.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("45683", "2", "2016-12-27 01:34:36", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45684", "3", "2016-12-27 01:34:37", "46.119.116.116", "62");
INSERT INTO `wp_rg_form_view` VALUES("45685", "3", "2016-12-27 02:10:05", "68.180.228.105", "30");
INSERT INTO `wp_rg_form_view` VALUES("45686", "2", "2016-12-27 02:30:40", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45687", "3", "2016-12-27 03:11:03", "68.180.228.105", "31");
INSERT INTO `wp_rg_form_view` VALUES("45688", "2", "2016-12-27 05:04:32", "178.137.18.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("45689", "3", "2016-12-27 05:04:32", "178.137.18.127", "171");
INSERT INTO `wp_rg_form_view` VALUES("45690", "3", "2016-12-27 06:09:08", "163.172.65.12", "40");
INSERT INTO `wp_rg_form_view` VALUES("45691", "3", "2016-12-27 09:15:52", "68.180.228.105", "21");
INSERT INTO `wp_rg_form_view` VALUES("45692", "3", "2016-12-27 10:42:36", "77.75.78.166", "10");
INSERT INTO `wp_rg_form_view` VALUES("45693", "3", "2016-12-27 11:39:36", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("45694", "2", "2016-12-27 12:04:46", "178.137.18.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("45695", "3", "2016-12-27 12:04:47", "178.137.18.127", "20");
INSERT INTO `wp_rg_form_view` VALUES("45696", "10", "2016-12-27 13:44:53", "77.75.78.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("45697", "3", "2016-12-27 13:44:55", "77.75.78.171", "30");
INSERT INTO `wp_rg_form_view` VALUES("45698", "3", "2016-12-27 14:11:26", "66.249.79.140", "50");
INSERT INTO `wp_rg_form_view` VALUES("45699", "14", "2016-12-27 14:12:10", "209.95.50.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("45700", "3", "2016-12-27 15:28:26", "70.67.92.159", "60");
INSERT INTO `wp_rg_form_view` VALUES("45701", "3", "2016-12-27 16:00:56", "62.210.177.34", "50");
INSERT INTO `wp_rg_form_view` VALUES("45702", "14", "2016-12-27 16:37:32", "77.75.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("45703", "3", "2016-12-27 17:09:57", "66.249.79.148", "50");
INSERT INTO `wp_rg_form_view` VALUES("45704", "14", "2016-12-27 17:22:09", "5.189.170.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("45705", "3", "2016-12-27 18:36:17", "68.180.228.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("45706", "3", "2016-12-27 19:11:56", "66.249.79.148", "30");
INSERT INTO `wp_rg_form_view` VALUES("45707", "3", "2016-12-27 20:18:16", "68.180.228.105", "51");
INSERT INTO `wp_rg_form_view` VALUES("45708", "14", "2016-12-27 20:56:19", "23.106.195.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("45709", "3", "2016-12-27 21:21:34", "66.249.79.148", "30");
INSERT INTO `wp_rg_form_view` VALUES("45710", "2", "2016-12-27 21:39:09", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45711", "2", "2016-12-27 22:06:31", "46.118.154.190", "5");
INSERT INTO `wp_rg_form_view` VALUES("45712", "3", "2016-12-27 22:06:31", "46.118.154.190", "72");
INSERT INTO `wp_rg_form_view` VALUES("45713", "3", "2016-12-27 23:08:24", "66.249.79.140", "62");
INSERT INTO `wp_rg_form_view` VALUES("45714", "2", "2016-12-27 23:13:30", "178.137.93.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("45715", "12", "2016-12-27 23:26:41", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("45716", "11", "2016-12-28 00:18:51", "68.180.228.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("45717", "3", "2016-12-28 00:18:51", "68.180.228.105", "40");
INSERT INTO `wp_rg_form_view` VALUES("45718", "3", "2016-12-28 01:04:10", "66.249.79.140", "194");
INSERT INTO `wp_rg_form_view` VALUES("45719", "10", "2016-12-28 01:51:58", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("45720", "3", "2016-12-28 02:06:32", "157.55.39.65", "10");
INSERT INTO `wp_rg_form_view` VALUES("45721", "11", "2016-12-28 03:00:31", "163.172.66.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("45722", "3", "2016-12-28 03:00:32", "163.172.66.109", "80");
INSERT INTO `wp_rg_form_view` VALUES("45723", "14", "2016-12-28 03:01:45", "24.108.11.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("45724", "2", "2016-12-28 04:27:53", "178.137.93.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("45725", "3", "2016-12-28 04:27:53", "178.137.93.117", "50");
INSERT INTO `wp_rg_form_view` VALUES("45726", "3", "2016-12-28 05:01:25", "138.197.80.102", "4248");
INSERT INTO `wp_rg_form_view` VALUES("45727", "14", "2016-12-28 05:07:08", "138.197.80.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("45728", "11", "2016-12-28 05:07:13", "138.197.80.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("45729", "6", "2016-12-28 05:25:03", "138.197.80.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("45730", "2", "2016-12-28 05:29:23", "5.248.196.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("45731", "9", "2016-12-28 05:33:33", "138.197.80.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("45732", "10", "2016-12-28 05:49:13", "138.197.80.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("45733", "3", "2016-12-28 06:00:58", "138.197.80.102", "2055");
INSERT INTO `wp_rg_form_view` VALUES("45734", "2", "2016-12-28 06:13:47", "138.197.80.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("45735", "13", "2016-12-28 06:23:28", "138.197.80.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("45736", "11", "2016-12-28 06:49:54", "174.79.163.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("45737", "3", "2016-12-28 07:07:21", "207.46.13.31", "40");
INSERT INTO `wp_rg_form_view` VALUES("45738", "3", "2016-12-28 08:03:28", "66.249.79.140", "79");
INSERT INTO `wp_rg_form_view` VALUES("45739", "13", "2016-12-28 08:37:53", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45740", "10", "2016-12-28 08:37:53", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45741", "2", "2016-12-28 08:54:12", "5.248.196.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("45742", "2", "2016-12-28 09:07:31", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45743", "3", "2016-12-28 09:07:32", "46.118.154.190", "71");
INSERT INTO `wp_rg_form_view` VALUES("45744", "2", "2016-12-28 10:02:41", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45745", "3", "2016-12-28 10:02:41", "46.119.116.116", "61");
INSERT INTO `wp_rg_form_view` VALUES("45746", "3", "2016-12-28 11:11:28", "162.217.250.69", "80");
INSERT INTO `wp_rg_form_view` VALUES("45747", "3", "2016-12-28 12:03:41", "77.75.76.165", "50");
INSERT INTO `wp_rg_form_view` VALUES("45748", "5", "2016-12-28 13:09:37", "77.75.78.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("45749", "3", "2016-12-28 13:09:37", "77.75.78.163", "30");
INSERT INTO `wp_rg_form_view` VALUES("45750", "3", "2016-12-28 14:19:54", "77.75.78.169", "91");
INSERT INTO `wp_rg_form_view` VALUES("45751", "13", "2016-12-28 14:43:36", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45752", "3", "2016-12-28 15:16:05", "77.75.77.17", "60");
INSERT INTO `wp_rg_form_view` VALUES("45753", "14", "2016-12-28 15:22:54", "216.197.171.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("45754", "3", "2016-12-28 16:11:59", "202.46.52.12", "578");
INSERT INTO `wp_rg_form_view` VALUES("45755", "10", "2016-12-28 16:52:50", "46.229.168.70", "9");
INSERT INTO `wp_rg_form_view` VALUES("45756", "14", "2016-12-28 16:53:15", "46.229.168.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("45757", "6", "2016-12-28 16:54:07", "46.229.168.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("45758", "3", "2016-12-28 17:00:56", "77.75.79.72", "1118");
INSERT INTO `wp_rg_form_view` VALUES("45759", "10", "2016-12-28 17:06:19", "207.46.13.158", "23");
INSERT INTO `wp_rg_form_view` VALUES("45760", "11", "2016-12-28 17:06:54", "207.46.13.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("45761", "9", "2016-12-28 17:07:49", "207.46.13.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("45762", "14", "2016-12-28 17:12:43", "24.68.50.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("45763", "13", "2016-12-28 17:36:20", "207.46.13.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("45764", "2", "2016-12-28 18:03:05", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45765", "2", "2016-12-28 18:03:05", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45766", "3", "2016-12-28 18:03:05", "178.137.93.117", "19");
INSERT INTO `wp_rg_form_view` VALUES("45767", "3", "2016-12-28 18:03:05", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45768", "2", "2016-12-28 19:20:58", "46.119.116.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("45769", "3", "2016-12-28 19:21:00", "46.119.116.116", "99");
INSERT INTO `wp_rg_form_view` VALUES("45770", "3", "2016-12-28 19:21:00", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45771", "2", "2016-12-28 20:12:08", "178.137.18.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("45772", "3", "2016-12-28 20:12:08", "178.137.18.127", "91");
INSERT INTO `wp_rg_form_view` VALUES("45773", "3", "2016-12-28 21:00:22", "75.154.238.38", "80");
INSERT INTO `wp_rg_form_view` VALUES("45774", "3", "2016-12-28 22:07:58", "77.75.76.165", "61");
INSERT INTO `wp_rg_form_view` VALUES("45775", "2", "2016-12-28 22:33:21", "5.248.196.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("45776", "3", "2016-12-28 23:31:40", "24.68.17.97", "20");
INSERT INTO `wp_rg_form_view` VALUES("45777", "2", "2016-12-28 23:53:58", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45778", "14", "2016-12-29 00:11:53", "77.75.79.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("45779", "3", "2016-12-29 00:11:53", "77.75.79.119", "40");
INSERT INTO `wp_rg_form_view` VALUES("45780", "2", "2016-12-29 00:21:04", "46.119.116.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("45781", "12", "2016-12-29 01:35:17", "163.172.66.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("45782", "3", "2016-12-29 01:35:18", "163.172.66.85", "10");
INSERT INTO `wp_rg_form_view` VALUES("45783", "3", "2016-12-29 02:15:40", "24.68.12.190", "263");
INSERT INTO `wp_rg_form_view` VALUES("45784", "11", "2016-12-29 02:38:50", "77.75.78.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("45785", "2", "2016-12-29 02:48:14", "45.55.233.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("45786", "3", "2016-12-29 04:01:51", "66.249.79.144", "141");
INSERT INTO `wp_rg_form_view` VALUES("45787", "13", "2016-12-29 04:17:36", "24.69.18.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("45788", "2", "2016-12-29 04:36:28", "178.137.18.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("45789", "3", "2016-12-29 05:18:35", "77.75.78.165", "23");
INSERT INTO `wp_rg_form_view` VALUES("45790", "3", "2016-12-29 06:13:32", "24.68.28.15", "20");
INSERT INTO `wp_rg_form_view` VALUES("45791", "3", "2016-12-29 07:29:53", "54.226.230.44", "10");
INSERT INTO `wp_rg_form_view` VALUES("45792", "2", "2016-12-29 08:02:47", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45793", "3", "2016-12-29 08:02:47", "66.249.79.140", "50");
INSERT INTO `wp_rg_form_view` VALUES("45794", "11", "2016-12-29 08:03:08", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45795", "3", "2016-12-29 10:19:05", "202.46.54.191", "51");
INSERT INTO `wp_rg_form_view` VALUES("45796", "10", "2016-12-29 10:57:59", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("45797", "2", "2016-12-29 11:08:17", "178.137.18.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("45798", "3", "2016-12-29 11:08:17", "178.137.18.127", "30");
INSERT INTO `wp_rg_form_view` VALUES("45799", "3", "2016-12-29 12:01:44", "207.46.13.31", "291");
INSERT INTO `wp_rg_form_view` VALUES("45800", "11", "2016-12-29 12:58:05", "82.39.62.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("45801", "2", "2016-12-29 12:59:11", "82.39.62.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("45802", "3", "2016-12-29 13:00:02", "82.39.62.52", "71");
INSERT INTO `wp_rg_form_view` VALUES("45803", "3", "2016-12-29 14:30:04", "66.249.79.148", "42");
INSERT INTO `wp_rg_form_view` VALUES("45804", "10", "2016-12-29 14:30:44", "207.46.13.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("45805", "3", "2016-12-29 15:28:42", "207.46.13.156", "20");
INSERT INTO `wp_rg_form_view` VALUES("45806", "2", "2016-12-29 15:37:23", "207.46.13.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("45807", "3", "2016-12-29 16:20:49", "77.75.78.160", "20");
INSERT INTO `wp_rg_form_view` VALUES("45808", "10", "2016-12-29 17:29:32", "207.46.13.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("45809", "3", "2016-12-29 17:29:32", "207.46.13.31", "90");
INSERT INTO `wp_rg_form_view` VALUES("45810", "3", "2016-12-29 18:11:32", "96.50.61.173", "122");
INSERT INTO `wp_rg_form_view` VALUES("45811", "2", "2016-12-29 18:53:24", "5.248.196.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("45812", "3", "2016-12-29 19:15:31", "202.46.53.197", "50");
INSERT INTO `wp_rg_form_view` VALUES("45813", "3", "2016-12-29 20:11:05", "24.68.130.95", "101");
INSERT INTO `wp_rg_form_view` VALUES("45814", "2", "2016-12-29 20:54:55", "178.137.18.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("45815", "3", "2016-12-29 21:38:37", "154.5.147.41", "40");
INSERT INTO `wp_rg_form_view` VALUES("45816", "3", "2016-12-29 22:02:58", "202.46.52.143", "405");
INSERT INTO `wp_rg_form_view` VALUES("45817", "2", "2016-12-29 22:19:53", "178.137.93.117", "5");
INSERT INTO `wp_rg_form_view` VALUES("45818", "11", "2016-12-29 22:51:24", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("45819", "3", "2016-12-29 23:00:04", "136.243.36.94", "418");
INSERT INTO `wp_rg_form_view` VALUES("45820", "5", "2016-12-29 23:10:00", "77.75.78.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("45821", "14", "2016-12-29 23:13:21", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("45822", "3", "2016-12-30 00:16:55", "202.46.49.191", "61");
INSERT INTO `wp_rg_form_view` VALUES("45823", "2", "2016-12-30 00:40:26", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45824", "3", "2016-12-30 01:01:52", "69.50.234.141", "134");
INSERT INTO `wp_rg_form_view` VALUES("45825", "2", "2016-12-30 01:01:58", "69.50.234.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45826", "11", "2016-12-30 01:02:11", "69.50.234.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45827", "10", "2016-12-30 01:57:25", "202.46.56.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("45828", "3", "2016-12-30 02:30:54", "202.46.51.191", "11");
INSERT INTO `wp_rg_form_view` VALUES("45829", "3", "2016-12-30 03:04:22", "202.46.51.191", "81");
INSERT INTO `wp_rg_form_view` VALUES("45830", "14", "2016-12-30 03:47:36", "50.92.126.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("45831", "10", "2016-12-30 03:55:13", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45832", "3", "2016-12-30 04:01:24", "50.92.126.11", "40");
INSERT INTO `wp_rg_form_view` VALUES("45833", "14", "2016-12-30 04:11:20", "202.46.52.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("45834", "3", "2016-12-30 05:18:20", "202.46.52.42", "101");
INSERT INTO `wp_rg_form_view` VALUES("45835", "2", "2016-12-30 05:21:29", "178.137.93.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("45836", "3", "2016-12-30 06:02:50", "75.155.182.69", "107");
INSERT INTO `wp_rg_form_view` VALUES("45837", "3", "2016-12-30 07:06:33", "96.50.31.43", "114");
INSERT INTO `wp_rg_form_view` VALUES("45838", "5", "2016-12-30 07:36:20", "5.9.62.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("45839", "3", "2016-12-30 08:05:45", "202.46.58.192", "30");
INSERT INTO `wp_rg_form_view` VALUES("45840", "2", "2016-12-30 08:35:06", "46.119.116.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("45841", "3", "2016-12-30 09:12:45", "202.46.55.61", "31");
INSERT INTO `wp_rg_form_view` VALUES("45842", "10", "2016-12-30 09:13:03", "207.46.13.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("45843", "3", "2016-12-30 10:19:45", "202.46.58.72", "30");
INSERT INTO `wp_rg_form_view` VALUES("45844", "13", "2016-12-30 10:53:13", "202.46.49.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("45845", "3", "2016-12-30 11:02:26", "40.77.167.60", "102");
INSERT INTO `wp_rg_form_view` VALUES("45846", "14", "2016-12-30 11:44:43", "188.213.175.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("45847", "2", "2016-12-30 11:56:11", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45848", "2", "2016-12-30 11:56:11", "46.118.154.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("45849", "3", "2016-12-30 12:00:11", "202.46.55.63", "22");
INSERT INTO `wp_rg_form_view` VALUES("45850", "3", "2016-12-30 13:07:13", "202.46.55.81", "234");
INSERT INTO `wp_rg_form_view` VALUES("45851", "14", "2016-12-30 13:37:05", "180.250.32.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("45852", "11", "2016-12-30 14:00:10", "207.46.13.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("45853", "3", "2016-12-30 14:00:10", "207.46.13.158", "198");
INSERT INTO `wp_rg_form_view` VALUES("45854", "2", "2016-12-30 14:06:52", "207.46.13.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("45855", "14", "2016-12-30 15:19:44", "119.177.15.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("45856", "3", "2016-12-30 15:19:44", "119.177.15.75", "50");
INSERT INTO `wp_rg_form_view` VALUES("45857", "3", "2016-12-30 16:10:11", "68.180.228.105", "21");
INSERT INTO `wp_rg_form_view` VALUES("45858", "3", "2016-12-30 17:01:36", "202.46.53.206", "81");
INSERT INTO `wp_rg_form_view` VALUES("45859", "2", "2016-12-30 17:25:28", "54.205.192.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("45860", "3", "2016-12-30 18:02:25", "77.75.79.95", "81");
INSERT INTO `wp_rg_form_view` VALUES("45861", "2", "2016-12-30 18:12:46", "46.119.116.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("45862", "3", "2016-12-30 20:15:19", "66.249.79.144", "32");
INSERT INTO `wp_rg_form_view` VALUES("45863", "3", "2016-12-30 21:04:05", "202.46.54.162", "83");
INSERT INTO `wp_rg_form_view` VALUES("45864", "3", "2016-12-30 22:00:14", "40.77.167.60", "273");
INSERT INTO `wp_rg_form_view` VALUES("45865", "2", "2016-12-30 22:10:48", "40.77.167.89", "7");
INSERT INTO `wp_rg_form_view` VALUES("45866", "3", "2016-12-30 23:34:47", "66.249.79.144", "22");
INSERT INTO `wp_rg_form_view` VALUES("45867", "3", "2016-12-31 00:09:25", "5.9.145.132", "50");
INSERT INTO `wp_rg_form_view` VALUES("45868", "3", "2016-12-31 01:27:57", "68.180.228.105", "103");
INSERT INTO `wp_rg_form_view` VALUES("45869", "3", "2016-12-31 02:17:10", "77.75.77.119", "40");
INSERT INTO `wp_rg_form_view` VALUES("45870", "14", "2016-12-31 03:04:59", "192.161.59.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("45871", "3", "2016-12-31 03:04:59", "192.161.59.198", "61");
INSERT INTO `wp_rg_form_view` VALUES("45872", "3", "2016-12-31 04:26:53", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("45873", "3", "2016-12-31 05:14:18", "208.184.112.74", "790");
INSERT INTO `wp_rg_form_view` VALUES("45874", "3", "2016-12-31 05:14:18", "107.178.194.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("45875", "11", "2016-12-31 05:29:03", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("45876", "2", "2016-12-31 05:29:08", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("45877", "14", "2016-12-31 05:31:40", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("45878", "3", "2016-12-31 06:09:29", "202.46.49.77", "40");
INSERT INTO `wp_rg_form_view` VALUES("45879", "3", "2016-12-31 07:20:49", "107.158.199.103", "20");
INSERT INTO `wp_rg_form_view` VALUES("45880", "3", "2016-12-31 09:12:20", "207.46.13.43", "43");
INSERT INTO `wp_rg_form_view` VALUES("45881", "3", "2016-12-31 10:34:11", "202.46.48.147", "488");
INSERT INTO `wp_rg_form_view` VALUES("45882", "10", "2016-12-31 10:58:51", "40.77.167.60", "16");
INSERT INTO `wp_rg_form_view` VALUES("45883", "12", "2016-12-31 10:58:56", "40.77.167.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("45884", "13", "2016-12-31 10:59:49", "40.77.167.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("45885", "3", "2016-12-31 11:00:00", "40.77.167.60", "795");
INSERT INTO `wp_rg_form_view` VALUES("45886", "10", "2016-12-31 11:00:15", "40.77.167.60", "16");
INSERT INTO `wp_rg_form_view` VALUES("45887", "9", "2016-12-31 11:00:24", "207.46.13.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("45888", "11", "2016-12-31 11:01:18", "40.77.167.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("45889", "13", "2016-12-31 11:01:30", "207.46.13.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("45890", "2", "2016-12-31 12:21:59", "5.248.196.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("45891", "2", "2016-12-31 12:21:59", "5.248.196.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("45892", "3", "2016-12-31 12:22:02", "5.248.196.252", "28");
INSERT INTO `wp_rg_form_view` VALUES("45893", "3", "2016-12-31 12:22:02", "5.248.196.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("45894", "3", "2016-12-31 12:22:02", "5.248.196.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("45895", "3", "2016-12-31 13:14:50", "68.180.228.105", "81");
INSERT INTO `wp_rg_form_view` VALUES("45896", "2", "2016-12-31 13:59:41", "178.137.18.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("45897", "3", "2016-12-31 14:30:39", "50.252.229.141", "342");
INSERT INTO `wp_rg_form_view` VALUES("45898", "11", "2016-12-31 14:30:45", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45899", "2", "2016-12-31 14:32:05", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("45900", "10", "2016-12-31 14:57:59", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("45901", "14", "2016-12-31 15:04:06", "23.80.151.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("45902", "3", "2016-12-31 15:04:06", "23.80.151.70", "62");
INSERT INTO `wp_rg_form_view` VALUES("45903", "3", "2016-12-31 16:05:12", "66.249.79.140", "33");
INSERT INTO `wp_rg_form_view` VALUES("45904", "9", "2016-12-31 16:48:10", "167.114.224.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("45905", "3", "2016-12-31 17:26:57", "24.68.16.105", "21");
INSERT INTO `wp_rg_form_view` VALUES("45906", "3", "2016-12-31 18:08:02", "174.7.128.81", "90");
INSERT INTO `wp_rg_form_view` VALUES("45907", "2", "2016-12-31 18:21:56", "178.137.93.117", "6");
INSERT INTO `wp_rg_form_view` VALUES("45908", "3", "2016-12-31 19:00:35", "64.180.189.14", "122");
INSERT INTO `wp_rg_form_view` VALUES("45909", "14", "2016-12-31 19:02:17", "64.180.189.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("45910", "14", "2016-12-31 20:07:02", "62.210.111.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("45911", "3", "2016-12-31 20:07:03", "62.210.111.43", "60");
INSERT INTO `wp_rg_form_view` VALUES("45912", "3", "2016-12-31 21:02:40", "40.77.167.60", "60");
INSERT INTO `wp_rg_form_view` VALUES("45913", "10", "2016-12-31 21:31:58", "162.210.196.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("45914", "3", "2016-12-31 22:04:43", "24.69.201.30", "124");
INSERT INTO `wp_rg_form_view` VALUES("45915", "8", "2016-12-31 22:52:06", "207.46.13.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("45916", "3", "2016-12-31 23:03:05", "68.180.228.105", "32");
INSERT INTO `wp_rg_form_view` VALUES("45917", "3", "2017-01-01 00:08:15", "66.249.79.144", "83");
INSERT INTO `wp_rg_form_view` VALUES("45918", "2", "2017-01-01 00:46:48", "178.137.18.127", "6");
INSERT INTO `wp_rg_form_view` VALUES("45919", "2", "2017-01-01 01:16:14", "178.137.93.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("45920", "2", "2017-01-01 01:16:14", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45921", "3", "2017-01-01 01:16:15", "178.137.93.117", "71");
INSERT INTO `wp_rg_form_view` VALUES("45922", "3", "2017-01-01 01:16:15", "178.137.93.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("45923", "10", "2017-01-01 01:34:12", "77.75.79.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("45924", "3", "2017-01-01 02:28:43", "68.180.228.105", "282");
INSERT INTO `wp_rg_form_view` VALUES("45925", "2", "2017-01-01 02:29:05", "46.118.154.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("45926", "11", "2017-01-01 02:39:22", "138.197.2.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("45927", "3", "2017-01-01 03:00:58", "66.249.79.140", "84");
INSERT INTO `wp_rg_form_view` VALUES("45928", "3", "2017-01-01 04:24:39", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("45929", "13", "2017-01-01 05:30:40", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("45930", "3", "2017-01-01 05:30:40", "66.249.79.148", "31");
INSERT INTO `wp_rg_form_view` VALUES("45931", "3", "2017-01-01 06:02:20", "96.50.13.216", "41");
INSERT INTO `wp_rg_form_view` VALUES("45932", "3", "2017-01-01 07:20:59", "104.142.122.93", "51");
INSERT INTO `wp_rg_form_view` VALUES("45933", "2", "2017-01-01 08:13:07", "178.137.93.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("45934", "3", "2017-01-01 08:13:08", "178.137.93.117", "50");
INSERT INTO `wp_rg_form_view` VALUES("45935", "14", "2017-01-01 08:13:52", "77.243.183.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("45936", "3", "2017-01-01 09:03:59", "199.21.99.202", "175");
INSERT INTO `wp_rg_form_view` VALUES("45937", "13", "2017-01-01 09:07:52", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("45938", "3", "2017-01-01 10:02:52", "141.8.143.242", "332");
INSERT INTO `wp_rg_form_view` VALUES("45939", "11", "2017-01-01 10:43:49", "96.56.24.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("45940", "2", "2017-01-01 10:44:34", "96.56.24.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("45941", "3", "2017-01-01 12:14:46", "23.229.52.123", "62");
INSERT INTO `wp_rg_form_view` VALUES("45942", "3", "2017-01-01 13:14:49", "68.180.228.105", "71");
INSERT INTO `wp_rg_form_view` VALUES("45943", "2", "2017-01-01 13:55:52", "178.137.18.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("45944", "2", "2017-01-01 13:55:52", "178.137.18.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("45945", "3", "2017-01-01 14:12:06", "199.21.99.202", "63");
INSERT INTO `wp_rg_form_view` VALUES("45946", "3", "2017-01-01 15:52:49", "66.249.79.148", "21");
INSERT INTO `wp_rg_form_view` VALUES("45947", "3", "2017-01-01 16:11:36", "202.46.51.14", "20");
INSERT INTO `wp_rg_form_view` VALUES("45948", "3", "2017-01-01 17:02:03", "207.46.13.68", "362");
INSERT INTO `wp_rg_form_view` VALUES("45949", "11", "2017-01-01 17:29:26", "24.249.157.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("45950", "2", "2017-01-01 17:30:30", "24.249.157.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("45951", "3", "2017-01-01 18:12:25", "68.180.228.105", "50");
INSERT INTO `wp_rg_form_view` VALUES("45952", "10", "2017-01-01 18:21:52", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("45953", "3", "2017-01-01 19:00:19", "96.50.57.45", "135");
INSERT INTO `wp_rg_form_view` VALUES("45954", "14", "2017-01-01 19:02:39", "96.50.57.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("45955", "11", "2017-01-01 19:25:57", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("45956", "3", "2017-01-01 20:44:05", "199.21.99.202", "20");
INSERT INTO `wp_rg_form_view` VALUES("45957", "2", "2017-01-01 21:42:41", "134.249.50.153", "5");
INSERT INTO `wp_rg_form_view` VALUES("45958", "2", "2017-01-01 21:42:41", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("45959", "3", "2017-01-01 21:42:42", "134.249.50.153", "79");
INSERT INTO `wp_rg_form_view` VALUES("45960", "3", "2017-01-01 21:42:42", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("45961", "2", "2017-01-01 22:11:31", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("45962", "3", "2017-01-01 22:11:31", "134.249.50.153", "135");
INSERT INTO `wp_rg_form_view` VALUES("45963", "3", "2017-01-01 23:16:12", "66.249.79.148", "30");
INSERT INTO `wp_rg_form_view` VALUES("45964", "3", "2017-01-02 00:00:08", "108.180.242.157", "40");
INSERT INTO `wp_rg_form_view` VALUES("45965", "3", "2017-01-02 01:10:15", "202.46.51.11", "40");
INSERT INTO `wp_rg_form_view` VALUES("45966", "10", "2017-01-02 01:11:31", "162.210.196.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("45967", "14", "2017-01-02 02:50:46", "202.46.58.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("45968", "3", "2017-01-02 02:50:47", "202.46.58.83", "10");
INSERT INTO `wp_rg_form_view` VALUES("45969", "3", "2017-01-02 03:44:44", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("45970", "3", "2017-01-02 04:18:35", "68.180.228.105", "41");
INSERT INTO `wp_rg_form_view` VALUES("45971", "13", "2017-01-02 04:30:05", "202.46.49.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("45972", "3", "2017-01-02 05:37:03", "202.46.53.164", "43");
INSERT INTO `wp_rg_form_view` VALUES("45973", "3", "2017-01-02 06:01:16", "24.69.13.21", "552");
INSERT INTO `wp_rg_form_view` VALUES("45974", "10", "2017-01-02 06:52:51", "157.55.39.125", "5");
INSERT INTO `wp_rg_form_view` VALUES("45975", "9", "2017-01-02 06:53:19", "157.55.39.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("45976", "5", "2017-01-02 06:53:21", "207.46.13.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("45977", "14", "2017-01-02 06:53:29", "157.55.39.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("45978", "8", "2017-01-02 06:53:32", "207.46.13.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("45979", "6", "2017-01-02 06:53:46", "207.46.13.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("45980", "3", "2017-01-02 07:14:19", "40.77.167.92", "291");
INSERT INTO `wp_rg_form_view` VALUES("45981", "10", "2017-01-02 07:14:56", "40.77.167.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("45982", "9", "2017-01-02 07:15:01", "40.77.167.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("45983", "11", "2017-01-02 08:24:16", "94.154.239.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("45984", "3", "2017-01-02 08:24:16", "94.154.239.69", "80");
INSERT INTO `wp_rg_form_view` VALUES("45985", "12", "2017-01-02 08:24:49", "94.154.239.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("45986", "10", "2017-01-02 08:24:56", "94.154.239.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("45987", "3", "2017-01-02 09:19:45", "202.46.58.18", "11");
INSERT INTO `wp_rg_form_view` VALUES("45988", "3", "2017-01-02 10:28:52", "66.249.79.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("45989", "3", "2017-01-02 12:35:54", "163.172.65.236", "20");
INSERT INTO `wp_rg_form_view` VALUES("45990", "3", "2017-01-02 13:07:01", "66.249.79.148", "71");
INSERT INTO `wp_rg_form_view` VALUES("45991", "14", "2017-01-02 13:50:18", "107.161.83.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("45992", "10", "2017-01-02 13:53:15", "40.77.167.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("45993", "3", "2017-01-02 14:11:14", "40.77.167.60", "30");
INSERT INTO `wp_rg_form_view` VALUES("45994", "2", "2017-01-02 14:46:57", "178.137.16.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("45995", "12", "2017-01-02 15:14:15", "40.77.167.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("45996", "3", "2017-01-02 15:14:16", "40.77.167.60", "41");
INSERT INTO `wp_rg_form_view` VALUES("45997", "3", "2017-01-02 16:14:59", "68.180.228.105", "32");
INSERT INTO `wp_rg_form_view` VALUES("45998", "3", "2017-01-02 17:01:01", "70.67.92.159", "30");
INSERT INTO `wp_rg_form_view` VALUES("45999", "3", "2017-01-02 18:00:53", "77.75.78.160", "31");
INSERT INTO `wp_rg_form_view` VALUES("46000", "2", "2017-01-02 18:02:05", "178.137.16.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("46001", "3", "2017-01-02 19:12:04", "24.108.212.9", "130");
INSERT INTO `wp_rg_form_view` VALUES("46002", "10", "2017-01-02 19:23:47", "163.172.66.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("46003", "3", "2017-01-02 20:14:11", "202.46.55.155", "62");
INSERT INTO `wp_rg_form_view` VALUES("46004", "2", "2017-01-02 20:23:39", "178.137.18.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("46005", "3", "2017-01-02 21:10:04", "5.9.106.81", "50");
INSERT INTO `wp_rg_form_view` VALUES("46006", "3", "2017-01-02 22:13:08", "207.81.136.51", "52");
INSERT INTO `wp_rg_form_view` VALUES("46007", "3", "2017-01-02 23:00:50", "68.180.228.105", "70");
INSERT INTO `wp_rg_form_view` VALUES("46008", "2", "2017-01-02 23:05:04", "178.137.16.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("46009", "10", "2017-01-02 23:18:27", "163.172.66.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("46010", "3", "2017-01-03 00:23:32", "70.66.223.204", "91");
INSERT INTO `wp_rg_form_view` VALUES("46011", "5", "2017-01-03 00:57:42", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("46012", "3", "2017-01-03 01:08:52", "184.151.231.159", "104");
INSERT INTO `wp_rg_form_view` VALUES("46013", "3", "2017-01-03 02:00:52", "163.172.64.250", "71");
INSERT INTO `wp_rg_form_view` VALUES("46014", "5", "2017-01-03 02:17:05", "77.75.76.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("46015", "3", "2017-01-03 03:09:47", "77.75.78.160", "479");
INSERT INTO `wp_rg_form_view` VALUES("46016", "14", "2017-01-03 03:24:27", "64.251.72.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("46017", "2", "2017-01-03 03:27:50", "178.137.161.236", "5");
INSERT INTO `wp_rg_form_view` VALUES("46018", "11", "2017-01-03 03:34:14", "85.148.42.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("46019", "3", "2017-01-03 04:12:57", "77.75.78.167", "102");
INSERT INTO `wp_rg_form_view` VALUES("46020", "3", "2017-01-03 05:05:49", "77.75.79.119", "92");
INSERT INTO `wp_rg_form_view` VALUES("46021", "2", "2017-01-03 05:41:52", "178.137.18.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("46022", "14", "2017-01-03 06:04:24", "5.135.209.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("46023", "3", "2017-01-03 06:04:24", "5.135.209.60", "30");
INSERT INTO `wp_rg_form_view` VALUES("46024", "2", "2017-01-03 06:35:38", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("46025", "3", "2017-01-03 07:01:56", "68.180.228.105", "61");
INSERT INTO `wp_rg_form_view` VALUES("46026", "12", "2017-01-03 07:29:50", "202.46.53.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("46027", "3", "2017-01-03 08:14:45", "66.249.79.144", "20");
INSERT INTO `wp_rg_form_view` VALUES("46028", "3", "2017-01-03 09:03:49", "163.172.64.228", "23");
INSERT INTO `wp_rg_form_view` VALUES("46029", "14", "2017-01-03 09:19:27", "5.135.209.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("46030", "2", "2017-01-03 10:09:50", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46031", "2", "2017-01-03 10:09:50", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46032", "3", "2017-01-03 10:09:52", "178.137.161.236", "50");
INSERT INTO `wp_rg_form_view` VALUES("46033", "3", "2017-01-03 10:09:52", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46034", "3", "2017-01-03 11:18:52", "5.189.176.182", "148");
INSERT INTO `wp_rg_form_view` VALUES("46035", "13", "2017-01-03 11:19:47", "5.189.176.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("46036", "10", "2017-01-03 11:19:47", "5.189.176.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("46037", "3", "2017-01-03 12:21:44", "202.46.57.24", "30");
INSERT INTO `wp_rg_form_view` VALUES("46038", "3", "2017-01-03 13:40:32", "202.46.51.190", "20");
INSERT INTO `wp_rg_form_view` VALUES("46039", "3", "2017-01-03 14:14:01", "202.46.51.114", "212");
INSERT INTO `wp_rg_form_view` VALUES("46040", "13", "2017-01-03 14:35:49", "54.212.206.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("46041", "10", "2017-01-03 14:35:49", "54.212.206.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("46042", "3", "2017-01-03 16:28:58", "69.30.221.250", "50");
INSERT INTO `wp_rg_form_view` VALUES("46043", "3", "2017-01-03 17:06:00", "163.172.65.225", "87");
INSERT INTO `wp_rg_form_view` VALUES("46044", "2", "2017-01-03 17:44:50", "178.137.18.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("46045", "3", "2017-01-03 18:18:58", "24.68.145.205", "160");
INSERT INTO `wp_rg_form_view` VALUES("46046", "2", "2017-01-03 18:43:08", "134.249.50.153", "11");
INSERT INTO `wp_rg_form_view` VALUES("46047", "3", "2017-01-03 19:14:43", "202.46.50.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("46048", "3", "2017-01-03 20:44:38", "77.75.76.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("46049", "3", "2017-01-03 21:00:24", "119.224.41.204", "100");
INSERT INTO `wp_rg_form_view` VALUES("46050", "3", "2017-01-03 22:10:47", "68.180.228.105", "328");
INSERT INTO `wp_rg_form_view` VALUES("46051", "11", "2017-01-03 22:14:19", "45.55.213.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("46052", "2", "2017-01-03 22:14:20", "45.55.213.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("46053", "10", "2017-01-03 22:20:15", "40.77.167.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("46054", "3", "2017-01-03 23:41:10", "40.77.167.60", "10");
INSERT INTO `wp_rg_form_view` VALUES("46055", "3", "2017-01-04 00:01:36", "163.172.65.16", "203");
INSERT INTO `wp_rg_form_view` VALUES("46056", "3", "2017-01-04 01:14:25", "202.46.51.171", "10");
INSERT INTO `wp_rg_form_view` VALUES("46057", "3", "2017-01-04 02:11:28", "77.75.78.160", "295");
INSERT INTO `wp_rg_form_view` VALUES("46058", "2", "2017-01-04 02:38:29", "174.127.133.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("46059", "3", "2017-01-04 03:05:17", "174.127.133.51", "312");
INSERT INTO `wp_rg_form_view` VALUES("46060", "8", "2017-01-04 03:07:40", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("46061", "14", "2017-01-04 03:19:52", "174.127.133.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("46062", "10", "2017-01-04 03:23:44", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("46063", "14", "2017-01-04 04:11:04", "172.245.193.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("46064", "3", "2017-01-04 04:11:05", "172.245.193.226", "20");
INSERT INTO `wp_rg_form_view` VALUES("46065", "14", "2017-01-04 05:11:34", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("46066", "3", "2017-01-04 05:11:38", "66.249.79.140", "83");
INSERT INTO `wp_rg_form_view` VALUES("46067", "3", "2017-01-04 06:37:50", "163.172.65.108", "13");
INSERT INTO `wp_rg_form_view` VALUES("46068", "3", "2017-01-04 07:01:13", "66.249.79.144", "70");
INSERT INTO `wp_rg_form_view` VALUES("46069", "3", "2017-01-04 08:13:53", "163.172.66.125", "45");
INSERT INTO `wp_rg_form_view` VALUES("46070", "3", "2017-01-04 09:06:14", "92.238.226.245", "81");
INSERT INTO `wp_rg_form_view` VALUES("46071", "9", "2017-01-04 09:06:27", "92.238.226.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("46072", "8", "2017-01-04 09:06:41", "92.238.226.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("46073", "3", "2017-01-04 10:01:09", "163.172.66.170", "50");
INSERT INTO `wp_rg_form_view` VALUES("46074", "3", "2017-01-04 11:02:15", "52.23.152.191", "406");
INSERT INTO `wp_rg_form_view` VALUES("46075", "11", "2017-01-04 11:03:44", "52.23.152.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("46076", "2", "2017-01-04 11:04:07", "52.23.152.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("46077", "2", "2017-01-04 12:02:26", "163.172.142.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("46078", "3", "2017-01-04 12:02:26", "163.172.142.133", "91");
INSERT INTO `wp_rg_form_view` VALUES("46079", "3", "2017-01-04 13:18:18", "68.180.228.105", "50");
INSERT INTO `wp_rg_form_view` VALUES("46080", "10", "2017-01-04 13:50:17", "163.172.64.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("46081", "3", "2017-01-04 14:00:56", "163.172.65.185", "80");
INSERT INTO `wp_rg_form_view` VALUES("46082", "13", "2017-01-04 14:20:22", "68.180.228.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("46083", "3", "2017-01-04 15:10:42", "68.180.228.105", "181");
INSERT INTO `wp_rg_form_view` VALUES("46084", "2", "2017-01-04 15:40:43", "24.199.202.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("46085", "3", "2017-01-04 16:14:57", "96.54.168.86", "70");
INSERT INTO `wp_rg_form_view` VALUES("46086", "10", "2017-01-04 16:57:50", "163.172.66.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("46087", "3", "2017-01-04 17:00:35", "66.249.79.148", "81");
INSERT INTO `wp_rg_form_view` VALUES("46088", "2", "2017-01-04 17:18:26", "178.137.16.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("46089", "3", "2017-01-04 18:13:15", "50.92.125.65", "140");
INSERT INTO `wp_rg_form_view` VALUES("46090", "11", "2017-01-04 18:56:57", "163.172.66.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("46091", "3", "2017-01-04 19:11:50", "66.249.79.140", "121");
INSERT INTO `wp_rg_form_view` VALUES("46092", "14", "2017-01-04 19:23:13", "142.104.9.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("46093", "2", "2017-01-04 19:41:36", "178.137.16.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("46094", "10", "2017-01-04 19:53:04", "77.75.78.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("46095", "3", "2017-01-04 20:01:31", "108.172.163.250", "106");
INSERT INTO `wp_rg_form_view` VALUES("46096", "14", "2017-01-04 20:27:58", "5.135.209.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("46097", "3", "2017-01-04 21:23:26", "68.180.228.164", "141");
INSERT INTO `wp_rg_form_view` VALUES("46098", "14", "2017-01-04 21:51:28", "132.156.2.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("46099", "3", "2017-01-04 22:07:37", "132.156.2.2", "102");
INSERT INTO `wp_rg_form_view` VALUES("46100", "3", "2017-01-04 23:06:47", "207.194.65.204", "192");
INSERT INTO `wp_rg_form_view` VALUES("46101", "14", "2017-01-04 23:54:50", "24.108.188.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("46102", "3", "2017-01-05 00:06:38", "24.108.166.216", "172");
INSERT INTO `wp_rg_form_view` VALUES("46103", "2", "2017-01-05 00:47:37", "178.137.161.236", "4");
INSERT INTO `wp_rg_form_view` VALUES("46104", "13", "2017-01-05 00:52:55", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46105", "2", "2017-01-05 01:03:55", "178.137.16.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("46106", "3", "2017-01-05 01:03:55", "178.137.16.194", "189");
INSERT INTO `wp_rg_form_view` VALUES("46107", "3", "2017-01-05 01:03:55", "178.137.16.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("46108", "14", "2017-01-05 01:38:26", "96.50.22.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("46109", "3", "2017-01-05 02:07:33", "163.172.65.226", "70");
INSERT INTO `wp_rg_form_view` VALUES("46110", "3", "2017-01-05 03:01:57", "68.180.228.164", "852");
INSERT INTO `wp_rg_form_view` VALUES("46111", "10", "2017-01-05 03:21:27", "207.46.13.107", "15");
INSERT INTO `wp_rg_form_view` VALUES("46112", "13", "2017-01-05 03:21:54", "207.46.13.107", "4");
INSERT INTO `wp_rg_form_view` VALUES("46113", "12", "2017-01-05 03:22:39", "40.77.167.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("46114", "9", "2017-01-05 03:32:52", "88.198.16.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("46115", "8", "2017-01-05 03:56:09", "163.172.68.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("46116", "3", "2017-01-05 04:07:08", "154.20.33.172", "278");
INSERT INTO `wp_rg_form_view` VALUES("46117", "10", "2017-01-05 04:20:33", "40.77.167.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("46118", "11", "2017-01-05 04:21:03", "40.77.167.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("46119", "13", "2017-01-05 04:49:58", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46120", "3", "2017-01-05 05:05:30", "68.180.228.164", "53");
INSERT INTO `wp_rg_form_view` VALUES("46121", "10", "2017-01-05 05:52:19", "199.16.157.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("46122", "3", "2017-01-05 06:14:40", "66.249.79.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("46123", "3", "2017-01-05 07:03:31", "202.46.51.11", "49");
INSERT INTO `wp_rg_form_view` VALUES("46124", "3", "2017-01-05 08:00:30", "70.67.48.204", "150");
INSERT INTO `wp_rg_form_view` VALUES("46125", "14", "2017-01-05 08:01:17", "70.67.48.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("46126", "11", "2017-01-05 08:23:12", "77.75.76.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("46127", "2", "2017-01-05 08:45:01", "178.137.161.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("46128", "5", "2017-01-05 09:07:21", "77.75.78.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("46129", "3", "2017-01-05 09:07:21", "77.75.78.163", "41");
INSERT INTO `wp_rg_form_view` VALUES("46130", "10", "2017-01-05 09:21:40", "163.172.65.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("46131", "3", "2017-01-05 10:11:47", "77.75.76.161", "81");
INSERT INTO `wp_rg_form_view` VALUES("46132", "3", "2017-01-05 11:03:41", "69.195.124.87", "71");
INSERT INTO `wp_rg_form_view` VALUES("46133", "3", "2017-01-05 12:14:04", "163.172.66.45", "32");
INSERT INTO `wp_rg_form_view` VALUES("46134", "11", "2017-01-05 13:06:40", "207.46.13.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("46135", "3", "2017-01-05 13:06:40", "207.46.13.176", "51");
INSERT INTO `wp_rg_form_view` VALUES("46136", "2", "2017-01-05 13:32:19", "178.137.18.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("46137", "3", "2017-01-05 14:51:23", "163.172.66.125", "20");
INSERT INTO `wp_rg_form_view` VALUES("46138", "10", "2017-01-05 15:09:23", "77.75.77.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("46139", "3", "2017-01-05 15:09:23", "77.75.77.32", "40");
INSERT INTO `wp_rg_form_view` VALUES("46140", "2", "2017-01-05 15:44:37", "178.137.161.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("46141", "3", "2017-01-05 16:12:26", "66.249.79.144", "61");
INSERT INTO `wp_rg_form_view` VALUES("46142", "2", "2017-01-05 16:49:56", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46143", "14", "2017-01-05 16:50:41", "5.135.209.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("46144", "3", "2017-01-05 17:08:16", "68.180.228.164", "112");
INSERT INTO `wp_rg_form_view` VALUES("46145", "14", "2017-01-05 17:12:13", "45.20.214.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("46146", "3", "2017-01-05 18:10:47", "216.232.157.181", "20");
INSERT INTO `wp_rg_form_view` VALUES("46147", "3", "2017-01-05 19:20:10", "205.250.86.162", "90");
INSERT INTO `wp_rg_form_view` VALUES("46148", "3", "2017-01-05 20:09:12", "202.46.54.105", "112");
INSERT INTO `wp_rg_form_view` VALUES("46149", "3", "2017-01-05 21:16:10", "202.46.49.72", "20");
INSERT INTO `wp_rg_form_view` VALUES("46150", "14", "2017-01-05 22:06:52", "5.135.209.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("46151", "3", "2017-01-05 22:06:55", "5.135.209.60", "83");
INSERT INTO `wp_rg_form_view` VALUES("46152", "10", "2017-01-05 22:46:35", "144.76.4.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("46153", "13", "2017-01-05 22:46:41", "144.76.4.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("46154", "3", "2017-01-05 23:09:36", "104.128.253.238", "61");
INSERT INTO `wp_rg_form_view` VALUES("46155", "3", "2017-01-06 00:11:01", "207.46.13.107", "110");
INSERT INTO `wp_rg_form_view` VALUES("46156", "2", "2017-01-06 00:22:22", "134.249.50.153", "6");
INSERT INTO `wp_rg_form_view` VALUES("46157", "10", "2017-01-06 00:26:51", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46158", "14", "2017-01-06 01:32:32", "5.135.209.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("46159", "3", "2017-01-06 01:32:33", "5.135.209.60", "40");
INSERT INTO `wp_rg_form_view` VALUES("46160", "3", "2017-01-06 02:02:28", "163.172.66.148", "24");
INSERT INTO `wp_rg_form_view` VALUES("46161", "3", "2017-01-06 03:17:50", "163.172.65.206", "31");
INSERT INTO `wp_rg_form_view` VALUES("46162", "10", "2017-01-06 03:37:33", "163.172.64.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("46163", "2", "2017-01-06 04:03:01", "5.248.196.252", "4");
INSERT INTO `wp_rg_form_view` VALUES("46164", "3", "2017-01-06 04:03:01", "5.248.196.252", "51");
INSERT INTO `wp_rg_form_view` VALUES("46165", "3", "2017-01-06 05:25:40", "199.21.99.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("46166", "3", "2017-01-06 06:05:59", "207.46.13.48", "26");
INSERT INTO `wp_rg_form_view` VALUES("46167", "3", "2017-01-06 07:00:24", "77.75.77.54", "96");
INSERT INTO `wp_rg_form_view` VALUES("46168", "3", "2017-01-06 08:44:15", "68.180.228.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("46169", "10", "2017-01-06 08:48:56", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46170", "10", "2017-01-06 09:01:00", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("46171", "3", "2017-01-06 09:01:00", "66.249.79.144", "316");
INSERT INTO `wp_rg_form_view` VALUES("46172", "2", "2017-01-06 09:41:23", "178.137.18.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("46173", "14", "2017-01-06 09:53:53", "202.46.52.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("46174", "3", "2017-01-06 10:04:56", "154.5.138.131", "63");
INSERT INTO `wp_rg_form_view` VALUES("46175", "2", "2017-01-06 10:16:48", "178.137.161.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("46176", "3", "2017-01-06 11:37:49", "163.172.66.71", "11");
INSERT INTO `wp_rg_form_view` VALUES("46177", "3", "2017-01-06 12:02:20", "68.180.228.164", "87");
INSERT INTO `wp_rg_form_view` VALUES("46178", "2", "2017-01-06 12:30:33", "178.137.18.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("46179", "2", "2017-01-06 12:30:33", "178.137.18.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("46180", "3", "2017-01-06 13:27:06", "172.218.195.65", "260");
INSERT INTO `wp_rg_form_view` VALUES("46181", "3", "2017-01-06 14:04:45", "163.172.66.121", "40");
INSERT INTO `wp_rg_form_view` VALUES("46182", "3", "2017-01-06 15:17:34", "163.172.66.58", "80");
INSERT INTO `wp_rg_form_view` VALUES("46183", "14", "2017-01-06 15:29:19", "50.92.126.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("46184", "3", "2017-01-06 16:25:16", "68.180.228.164", "20");
INSERT INTO `wp_rg_form_view` VALUES("46185", "2", "2017-01-06 17:33:40", "163.172.66.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("46186", "3", "2017-01-06 17:35:55", "163.172.66.13", "10");
INSERT INTO `wp_rg_form_view` VALUES("46187", "10", "2017-01-06 18:12:25", "163.172.64.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("46188", "3", "2017-01-06 18:12:44", "163.172.64.178", "50");
INSERT INTO `wp_rg_form_view` VALUES("46189", "10", "2017-01-06 19:03:23", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46190", "3", "2017-01-06 19:03:23", "68.180.228.164", "112");
INSERT INTO `wp_rg_form_view` VALUES("46191", "3", "2017-01-06 20:01:55", "68.180.228.164", "92");
INSERT INTO `wp_rg_form_view` VALUES("46192", "14", "2017-01-06 20:06:47", "205.250.214.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("46193", "3", "2017-01-06 21:28:47", "163.172.65.65", "47");
INSERT INTO `wp_rg_form_view` VALUES("46194", "3", "2017-01-06 22:13:04", "184.66.60.46", "93");
INSERT INTO `wp_rg_form_view` VALUES("46195", "3", "2017-01-06 23:08:59", "207.46.13.107", "630");
INSERT INTO `wp_rg_form_view` VALUES("46196", "10", "2017-01-06 23:09:09", "207.46.13.107", "14");
INSERT INTO `wp_rg_form_view` VALUES("46197", "13", "2017-01-06 23:09:36", "207.46.13.107", "3");
INSERT INTO `wp_rg_form_view` VALUES("46198", "12", "2017-01-06 23:10:20", "157.55.39.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("46199", "3", "2017-01-07 00:09:09", "163.172.66.125", "167");
INSERT INTO `wp_rg_form_view` VALUES("46200", "8", "2017-01-07 00:46:34", "202.46.50.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("46201", "2", "2017-01-07 00:59:50", "178.137.16.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("46202", "3", "2017-01-07 01:09:42", "54.92.155.125", "100");
INSERT INTO `wp_rg_form_view` VALUES("46203", "3", "2017-01-07 02:27:52", "54.91.249.231", "111");
INSERT INTO `wp_rg_form_view` VALUES("46204", "3", "2017-01-07 03:22:38", "202.46.52.12", "659");
INSERT INTO `wp_rg_form_view` VALUES("46205", "2", "2017-01-07 03:33:32", "178.137.16.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("46206", "14", "2017-01-07 03:59:12", "104.131.25.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("46207", "11", "2017-01-07 03:59:37", "104.131.25.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("46208", "3", "2017-01-07 04:00:32", "104.131.25.122", "4101");
INSERT INTO `wp_rg_form_view` VALUES("46209", "6", "2017-01-07 04:17:57", "104.131.25.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("46210", "9", "2017-01-07 04:25:37", "104.131.25.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("46211", "10", "2017-01-07 04:41:07", "104.131.25.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("46212", "3", "2017-01-07 05:00:02", "104.131.25.122", "1232");
INSERT INTO `wp_rg_form_view` VALUES("46213", "2", "2017-01-07 05:05:38", "104.131.25.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("46214", "13", "2017-01-07 05:15:27", "104.131.25.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("46215", "8", "2017-01-07 05:16:47", "104.131.25.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("46216", "3", "2017-01-07 06:32:25", "202.46.54.187", "31");
INSERT INTO `wp_rg_form_view` VALUES("46217", "10", "2017-01-07 07:07:18", "77.75.78.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("46218", "3", "2017-01-07 07:07:26", "77.75.78.168", "91");
INSERT INTO `wp_rg_form_view` VALUES("46219", "14", "2017-01-07 07:08:28", "125.212.122.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("46220", "3", "2017-01-07 08:39:58", "144.76.29.66", "221");
INSERT INTO `wp_rg_form_view` VALUES("46221", "2", "2017-01-07 08:40:08", "144.76.29.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("46222", "6", "2017-01-07 08:40:58", "144.76.29.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("46223", "6", "2017-01-07 08:40:58", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("46224", "9", "2017-01-07 08:56:36", "163.172.66.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("46225", "3", "2017-01-07 09:06:04", "116.31.225.137", "30");
INSERT INTO `wp_rg_form_view` VALUES("46226", "2", "2017-01-07 10:28:35", "178.137.16.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("46227", "2", "2017-01-07 10:28:35", "178.137.16.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("46228", "3", "2017-01-07 10:28:38", "178.137.16.194", "47");
INSERT INTO `wp_rg_form_view` VALUES("46229", "3", "2017-01-07 10:28:38", "178.137.16.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("46230", "3", "2017-01-07 10:28:38", "178.137.16.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("46231", "3", "2017-01-07 10:28:38", "178.137.16.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("46232", "10", "2017-01-07 10:35:49", "163.172.65.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("46233", "3", "2017-01-07 11:02:45", "163.172.65.206", "82");
INSERT INTO `wp_rg_form_view` VALUES("46234", "14", "2017-01-07 11:46:55", "192.227.135.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("46235", "2", "2017-01-07 11:50:00", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("46236", "3", "2017-01-07 12:03:40", "24.249.157.233", "383");
INSERT INTO `wp_rg_form_view` VALUES("46237", "11", "2017-01-07 12:03:45", "24.249.157.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("46238", "2", "2017-01-07 12:04:57", "24.249.157.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("46239", "10", "2017-01-07 13:01:08", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("46240", "3", "2017-01-07 13:01:08", "207.46.13.107", "20");
INSERT INTO `wp_rg_form_view` VALUES("46241", "3", "2017-01-07 14:17:23", "207.46.13.107", "11");
INSERT INTO `wp_rg_form_view` VALUES("46242", "3", "2017-01-07 15:06:13", "157.55.39.121", "80");
INSERT INTO `wp_rg_form_view` VALUES("46243", "2", "2017-01-07 15:11:59", "178.137.161.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("46244", "3", "2017-01-07 16:44:14", "68.180.228.164", "20");
INSERT INTO `wp_rg_form_view` VALUES("46245", "3", "2017-01-07 17:22:20", "144.76.29.66", "23");
INSERT INTO `wp_rg_form_view` VALUES("46246", "3", "2017-01-07 18:10:43", "104.192.169.238", "262");
INSERT INTO `wp_rg_form_view` VALUES("46247", "11", "2017-01-07 18:11:04", "104.192.169.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("46248", "2", "2017-01-07 18:11:09", "104.192.169.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("46249", "3", "2017-01-07 19:28:58", "163.172.66.18", "165");
INSERT INTO `wp_rg_form_view` VALUES("46250", "11", "2017-01-07 19:32:12", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("46251", "13", "2017-01-07 19:47:11", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("46252", "12", "2017-01-07 19:56:31", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("46253", "10", "2017-01-07 19:59:43", "163.172.66.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("46254", "3", "2017-01-07 20:30:24", "88.99.27.172", "112");
INSERT INTO `wp_rg_form_view` VALUES("46255", "14", "2017-01-07 20:30:35", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("46256", "10", "2017-01-07 20:36:07", "40.77.167.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("46257", "2", "2017-01-07 20:51:11", "178.137.18.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("46258", "3", "2017-01-07 21:10:01", "157.55.39.121", "51");
INSERT INTO `wp_rg_form_view` VALUES("46259", "3", "2017-01-07 22:04:55", "69.30.213.82", "93");
INSERT INTO `wp_rg_form_view` VALUES("46260", "3", "2017-01-07 23:05:19", "157.55.39.121", "151");
INSERT INTO `wp_rg_form_view` VALUES("46261", "10", "2017-01-07 23:08:14", "163.172.66.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("46262", "2", "2017-01-07 23:28:33", "5.248.196.252", "6");
INSERT INTO `wp_rg_form_view` VALUES("46263", "14", "2017-01-07 23:52:51", "191.101.115.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("46264", "3", "2017-01-08 00:09:28", "66.102.6.95", "90");
INSERT INTO `wp_rg_form_view` VALUES("46265", "14", "2017-01-08 00:15:25", "24.108.14.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("46266", "3", "2017-01-08 01:02:54", "96.50.57.45", "100");
INSERT INTO `wp_rg_form_view` VALUES("46267", "3", "2017-01-08 02:10:38", "77.75.78.168", "104");
INSERT INTO `wp_rg_form_view` VALUES("46268", "9", "2017-01-08 02:22:01", "207.46.13.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("46269", "3", "2017-01-08 03:09:57", "77.75.76.172", "20");
INSERT INTO `wp_rg_form_view` VALUES("46270", "10", "2017-01-08 03:16:31", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("46271", "3", "2017-01-08 04:04:42", "77.75.78.170", "62");
INSERT INTO `wp_rg_form_view` VALUES("46272", "14", "2017-01-08 04:54:28", "163.172.65.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("46273", "3", "2017-01-08 05:04:12", "96.50.19.46", "112");
INSERT INTO `wp_rg_form_view` VALUES("46274", "14", "2017-01-08 05:20:25", "120.27.216.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("46275", "3", "2017-01-08 06:00:39", "77.75.78.166", "142");
INSERT INTO `wp_rg_form_view` VALUES("46276", "2", "2017-01-08 06:01:58", "178.137.18.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("46277", "14", "2017-01-08 06:59:53", "46.166.141.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("46278", "3", "2017-01-08 07:03:26", "163.172.71.24", "92");
INSERT INTO `wp_rg_form_view` VALUES("46279", "13", "2017-01-08 07:24:54", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("46280", "2", "2017-01-08 07:46:10", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46281", "2", "2017-01-08 07:46:10", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46282", "2", "2017-01-08 07:46:10", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46283", "3", "2017-01-08 08:03:56", "68.180.228.164", "47");
INSERT INTO `wp_rg_form_view` VALUES("46284", "3", "2017-01-08 09:34:19", "207.46.13.8", "51");
INSERT INTO `wp_rg_form_view` VALUES("46285", "14", "2017-01-08 09:35:43", "185.101.238.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("46286", "3", "2017-01-08 10:53:09", "163.172.64.234", "10");
INSERT INTO `wp_rg_form_view` VALUES("46287", "3", "2017-01-08 11:04:13", "207.46.13.107", "80");
INSERT INTO `wp_rg_form_view` VALUES("46288", "10", "2017-01-08 11:09:13", "207.46.13.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("46289", "14", "2017-01-08 11:22:44", "27.131.47.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("46290", "2", "2017-01-08 11:50:16", "134.249.50.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("46291", "2", "2017-01-08 11:50:16", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("46292", "2", "2017-01-08 11:50:16", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("46293", "3", "2017-01-08 12:09:36", "107.178.194.29", "161");
INSERT INTO `wp_rg_form_view` VALUES("46294", "3", "2017-01-08 12:09:36", "208.184.112.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("46295", "6", "2017-01-08 12:31:26", "68.180.228.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("46296", "10", "2017-01-08 12:54:21", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("46297", "14", "2017-01-08 13:06:36", "103.58.117.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("46298", "3", "2017-01-08 13:06:36", "103.58.117.226", "69");
INSERT INTO `wp_rg_form_view` VALUES("46299", "3", "2017-01-08 14:26:06", "207.46.13.107", "31");
INSERT INTO `wp_rg_form_view` VALUES("46300", "3", "2017-01-08 15:09:49", "207.46.13.107", "110");
INSERT INTO `wp_rg_form_view` VALUES("46301", "11", "2017-01-08 15:47:43", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("46302", "2", "2017-01-08 15:47:46", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("46303", "10", "2017-01-08 16:01:15", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("46304", "3", "2017-01-08 16:01:16", "157.55.39.121", "40");
INSERT INTO `wp_rg_form_view` VALUES("46305", "3", "2017-01-08 17:18:07", "207.46.13.8", "60");
INSERT INTO `wp_rg_form_view` VALUES("46306", "10", "2017-01-08 17:43:24", "77.75.78.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("46307", "10", "2017-01-08 18:05:21", "207.46.13.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("46308", "3", "2017-01-08 18:05:21", "207.46.13.8", "56");
INSERT INTO `wp_rg_form_view` VALUES("46309", "3", "2017-01-08 19:00:43", "207.46.13.8", "50");
INSERT INTO `wp_rg_form_view` VALUES("46310", "10", "2017-01-08 20:05:42", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("46311", "3", "2017-01-08 20:05:42", "157.55.39.111", "46");
INSERT INTO `wp_rg_form_view` VALUES("46312", "8", "2017-01-08 20:11:54", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("46313", "5", "2017-01-08 21:06:07", "77.75.76.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("46314", "3", "2017-01-08 21:06:09", "77.75.76.160", "60");
INSERT INTO `wp_rg_form_view` VALUES("46315", "2", "2017-01-08 21:16:41", "178.137.18.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("46316", "10", "2017-01-08 21:34:16", "163.172.66.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("46317", "3", "2017-01-08 22:02:51", "163.172.66.136", "32");
INSERT INTO `wp_rg_form_view` VALUES("46318", "3", "2017-01-08 23:06:09", "174.7.172.23", "30");
INSERT INTO `wp_rg_form_view` VALUES("46319", "10", "2017-01-09 00:10:29", "163.172.66.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("46320", "3", "2017-01-09 00:10:30", "163.172.66.117", "50");
INSERT INTO `wp_rg_form_view` VALUES("46321", "2", "2017-01-09 00:16:23", "178.137.161.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("46322", "3", "2017-01-09 01:20:48", "77.75.76.162", "50");
INSERT INTO `wp_rg_form_view` VALUES("46323", "3", "2017-01-09 02:10:23", "198.2.75.104", "142");
INSERT INTO `wp_rg_form_view` VALUES("46324", "10", "2017-01-09 02:16:04", "157.55.39.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("46325", "2", "2017-01-09 02:20:10", "178.137.18.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("46326", "14", "2017-01-09 02:58:37", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("46327", "3", "2017-01-09 03:14:35", "157.55.39.111", "101");
INSERT INTO `wp_rg_form_view` VALUES("46328", "3", "2017-01-09 04:08:59", "24.114.27.54", "50");
INSERT INTO `wp_rg_form_view` VALUES("46329", "14", "2017-01-09 04:17:25", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("46330", "10", "2017-01-09 04:53:16", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("46331", "9", "2017-01-09 04:59:37", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("46332", "11", "2017-01-09 05:11:19", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("46333", "3", "2017-01-09 05:11:19", "66.249.79.140", "173");
INSERT INTO `wp_rg_form_view` VALUES("46334", "14", "2017-01-09 05:13:04", "62.210.111.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("46335", "13", "2017-01-09 05:22:21", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("46336", "2", "2017-01-09 05:27:29", "178.137.18.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("46337", "12", "2017-01-09 05:31:25", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("46338", "10", "2017-01-09 06:22:43", "202.46.52.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("46339", "3", "2017-01-09 06:22:44", "202.46.52.178", "30");
INSERT INTO `wp_rg_form_view` VALUES("46340", "3", "2017-01-09 07:00:21", "207.46.13.8", "123");
INSERT INTO `wp_rg_form_view` VALUES("46341", "10", "2017-01-09 07:02:04", "207.46.13.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("46342", "9", "2017-01-09 07:48:42", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("46343", "11", "2017-01-09 08:03:33", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46344", "3", "2017-01-09 08:03:33", "136.243.36.94", "680");
INSERT INTO `wp_rg_form_view` VALUES("46345", "2", "2017-01-09 08:07:21", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46346", "10", "2017-01-09 08:13:56", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46347", "14", "2017-01-09 08:17:50", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46348", "13", "2017-01-09 08:23:44", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46349", "3", "2017-01-09 09:20:01", "77.75.79.11", "30");
INSERT INTO `wp_rg_form_view` VALUES("46350", "3", "2017-01-09 10:16:14", "207.46.13.107", "102");
INSERT INTO `wp_rg_form_view` VALUES("46351", "2", "2017-01-09 10:25:46", "192.99.44.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("46352", "3", "2017-01-09 11:50:17", "157.55.39.121", "17");
INSERT INTO `wp_rg_form_view` VALUES("46353", "10", "2017-01-09 12:10:23", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("46354", "3", "2017-01-09 12:10:23", "157.55.39.121", "92");
INSERT INTO `wp_rg_form_view` VALUES("46355", "9", "2017-01-09 12:29:08", "157.55.39.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("46356", "2", "2017-01-09 12:43:49", "178.137.16.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("46357", "3", "2017-01-09 13:01:43", "77.75.76.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("46358", "10", "2017-01-09 13:19:14", "207.46.13.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("46359", "3", "2017-01-09 14:41:05", "66.249.79.140", "10");
INSERT INTO `wp_rg_form_view` VALUES("46360", "3", "2017-01-09 15:00:01", "77.75.78.160", "120");
INSERT INTO `wp_rg_form_view` VALUES("46361", "2", "2017-01-09 15:06:28", "178.137.16.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("46362", "10", "2017-01-09 16:01:22", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("46363", "3", "2017-01-09 16:01:22", "207.46.13.107", "31");
INSERT INTO `wp_rg_form_view` VALUES("46364", "3", "2017-01-09 17:34:48", "184.71.13.222", "60");
INSERT INTO `wp_rg_form_view` VALUES("46365", "3", "2017-01-09 18:13:35", "157.55.39.121", "58");
INSERT INTO `wp_rg_form_view` VALUES("46366", "3", "2017-01-09 19:01:21", "207.46.13.8", "61");
INSERT INTO `wp_rg_form_view` VALUES("46367", "2", "2017-01-09 19:37:56", "202.46.50.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("46368", "3", "2017-01-09 20:06:15", "184.66.34.24", "216");
INSERT INTO `wp_rg_form_view` VALUES("46369", "14", "2017-01-09 20:48:23", "24.69.142.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("46370", "3", "2017-01-09 21:01:00", "24.69.142.134", "71");
INSERT INTO `wp_rg_form_view` VALUES("46371", "10", "2017-01-09 21:11:49", "207.46.13.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("46372", "3", "2017-01-09 22:00:52", "207.46.13.107", "222");
INSERT INTO `wp_rg_form_view` VALUES("46373", "14", "2017-01-09 22:24:13", "24.68.14.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("46374", "2", "2017-01-09 22:29:07", "178.137.16.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("46375", "3", "2017-01-09 23:03:43", "77.75.78.168", "80");
INSERT INTO `wp_rg_form_view` VALUES("46376", "2", "2017-01-09 23:45:44", "134.249.50.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("46377", "3", "2017-01-10 00:30:02", "207.46.13.8", "21");
INSERT INTO `wp_rg_form_view` VALUES("46378", "3", "2017-01-10 01:03:02", "163.172.66.45", "102");
INSERT INTO `wp_rg_form_view` VALUES("46379", "10", "2017-01-10 01:37:51", "157.55.39.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("46380", "3", "2017-01-10 02:48:09", "207.46.13.8", "20");
INSERT INTO `wp_rg_form_view` VALUES("46381", "3", "2017-01-10 03:09:54", "207.46.13.107", "44");
INSERT INTO `wp_rg_form_view` VALUES("46382", "3", "2017-01-10 04:16:52", "77.75.78.165", "103");
INSERT INTO `wp_rg_form_view` VALUES("46383", "2", "2017-01-10 04:32:45", "178.137.161.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("46384", "2", "2017-01-10 04:32:45", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46385", "3", "2017-01-10 05:04:48", "157.55.39.143", "60");
INSERT INTO `wp_rg_form_view` VALUES("46386", "14", "2017-01-10 05:40:30", "69.30.205.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("46387", "3", "2017-01-10 06:09:30", "77.75.79.11", "103");
INSERT INTO `wp_rg_form_view` VALUES("46388", "10", "2017-01-10 06:16:15", "207.46.13.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("46389", "2", "2017-01-10 06:25:49", "5.248.196.252", "4");
INSERT INTO `wp_rg_form_view` VALUES("46390", "3", "2017-01-10 07:12:17", "202.46.53.15", "30");
INSERT INTO `wp_rg_form_view` VALUES("46391", "3", "2017-01-10 09:06:16", "68.180.228.164", "321");
INSERT INTO `wp_rg_form_view` VALUES("46392", "11", "2017-01-10 09:29:01", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("46393", "2", "2017-01-10 09:30:59", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("46394", "3", "2017-01-10 11:32:21", "202.46.51.36", "10");
INSERT INTO `wp_rg_form_view` VALUES("46395", "3", "2017-01-10 12:25:07", "207.46.13.8", "15");
INSERT INTO `wp_rg_form_view` VALUES("46396", "2", "2017-01-10 13:10:08", "178.137.161.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("46397", "3", "2017-01-10 13:10:13", "178.137.161.236", "39");
INSERT INTO `wp_rg_form_view` VALUES("46398", "3", "2017-01-10 13:10:13", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46399", "3", "2017-01-10 14:49:09", "68.180.228.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("46400", "3", "2017-01-10 15:13:53", "163.172.65.110", "11");
INSERT INTO `wp_rg_form_view` VALUES("46401", "3", "2017-01-10 16:17:36", "163.172.66.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("46402", "3", "2017-01-10 17:23:20", "24.68.37.174", "226");
INSERT INTO `wp_rg_form_view` VALUES("46403", "10", "2017-01-10 17:45:32", "46.161.9.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("46404", "3", "2017-01-10 18:08:31", "74.121.35.59", "71");
INSERT INTO `wp_rg_form_view` VALUES("46405", "3", "2017-01-10 19:21:12", "163.172.66.163", "62");
INSERT INTO `wp_rg_form_view` VALUES("46406", "3", "2017-01-10 20:24:18", "50.98.58.82", "46");
INSERT INTO `wp_rg_form_view` VALUES("46407", "2", "2017-01-10 20:28:53", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46408", "15", "2017-01-10 20:58:29", "157.55.39.209", "4");
INSERT INTO `wp_rg_form_view` VALUES("46409", "3", "2017-01-10 21:16:55", "207.46.13.8", "88");
INSERT INTO `wp_rg_form_view` VALUES("46410", "15", "2017-01-10 21:16:56", "207.46.13.8", "22");
INSERT INTO `wp_rg_form_view` VALUES("46411", "2", "2017-01-10 21:44:06", "178.137.161.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("46412", "3", "2017-01-10 22:04:30", "24.108.18.240", "80");
INSERT INTO `wp_rg_form_view` VALUES("46413", "15", "2017-01-10 22:04:31", "24.108.18.240", "20");
INSERT INTO `wp_rg_form_view` VALUES("46414", "2", "2017-01-10 22:32:34", "178.137.18.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("46415", "3", "2017-01-10 23:04:53", "68.180.228.164", "65");
INSERT INTO `wp_rg_form_view` VALUES("46416", "15", "2017-01-10 23:13:47", "99.224.212.74", "16");
INSERT INTO `wp_rg_form_view` VALUES("46417", "3", "2017-01-11 00:12:54", "24.108.188.226", "136");
INSERT INTO `wp_rg_form_view` VALUES("46418", "15", "2017-01-11 00:12:55", "24.108.188.226", "39");
INSERT INTO `wp_rg_form_view` VALUES("46419", "11", "2017-01-11 00:51:21", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46420", "3", "2017-01-11 01:03:53", "24.68.157.245", "128");
INSERT INTO `wp_rg_form_view` VALUES("46421", "15", "2017-01-11 01:03:53", "24.68.157.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("46422", "2", "2017-01-11 01:09:02", "134.249.50.153", "7");
INSERT INTO `wp_rg_form_view` VALUES("46423", "2", "2017-01-11 01:09:02", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("46424", "2", "2017-01-11 01:09:02", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("46425", "3", "2017-01-11 02:25:06", "184.66.142.188", "8");
INSERT INTO `wp_rg_form_view` VALUES("46426", "15", "2017-01-11 02:25:07", "184.66.142.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("46427", "3", "2017-01-11 03:03:56", "67.1.155.185", "41");
INSERT INTO `wp_rg_form_view` VALUES("46428", "15", "2017-01-11 03:03:58", "67.1.155.185", "10");
INSERT INTO `wp_rg_form_view` VALUES("46429", "3", "2017-01-11 04:00:48", "66.102.6.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("46430", "15", "2017-01-11 04:00:49", "66.102.6.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("46431", "3", "2017-01-11 05:21:31", "163.172.66.162", "25");
INSERT INTO `wp_rg_form_view` VALUES("46432", "15", "2017-01-11 05:21:32", "163.172.66.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("46433", "3", "2017-01-11 06:07:18", "202.46.55.182", "8");
INSERT INTO `wp_rg_form_view` VALUES("46434", "15", "2017-01-11 06:07:19", "202.46.55.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("46435", "3", "2017-01-11 07:01:56", "64.180.87.3", "87");
INSERT INTO `wp_rg_form_view` VALUES("46436", "3", "2017-01-11 07:01:56", "64.180.87.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("46437", "3", "2017-01-11 07:01:56", "64.180.87.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("46438", "15", "2017-01-11 07:02:09", "64.180.87.3", "22");
INSERT INTO `wp_rg_form_view` VALUES("46439", "3", "2017-01-11 08:14:49", "68.180.228.164", "49");
INSERT INTO `wp_rg_form_view` VALUES("46440", "15", "2017-01-11 08:14:49", "68.180.228.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("46441", "3", "2017-01-11 09:36:50", "66.249.79.148", "74");
INSERT INTO `wp_rg_form_view` VALUES("46442", "15", "2017-01-11 09:36:51", "66.249.79.148", "18");
INSERT INTO `wp_rg_form_view` VALUES("46443", "13", "2017-01-11 09:49:28", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("46444", "12", "2017-01-11 09:57:45", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("46445", "15", "2017-01-11 11:19:57", "40.77.167.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("46446", "3", "2017-01-11 11:20:01", "40.77.167.3", "24");
INSERT INTO `wp_rg_form_view` VALUES("46447", "13", "2017-01-11 11:49:06", "91.216.245.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("46448", "5", "2017-01-11 12:28:04", "77.75.77.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("46449", "3", "2017-01-11 12:28:05", "77.75.77.72", "16");
INSERT INTO `wp_rg_form_view` VALUES("46450", "15", "2017-01-11 12:28:06", "77.75.77.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("46451", "3", "2017-01-11 13:14:43", "77.75.77.54", "56");
INSERT INTO `wp_rg_form_view` VALUES("46452", "15", "2017-01-11 13:14:43", "77.75.77.54", "24");
INSERT INTO `wp_rg_form_view` VALUES("46453", "3", "2017-01-11 14:21:43", "68.180.228.164", "57");
INSERT INTO `wp_rg_form_view` VALUES("46454", "15", "2017-01-11 14:21:43", "68.180.228.164", "22");
INSERT INTO `wp_rg_form_view` VALUES("46455", "3", "2017-01-11 15:39:13", "77.75.77.95", "8");
INSERT INTO `wp_rg_form_view` VALUES("46456", "15", "2017-01-11 15:39:18", "77.75.77.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("46457", "15", "2017-01-11 16:02:13", "24.68.2.22", "25");
INSERT INTO `wp_rg_form_view` VALUES("46458", "3", "2017-01-11 16:02:13", "24.68.2.22", "80");
INSERT INTO `wp_rg_form_view` VALUES("46459", "2", "2017-01-11 16:08:20", "178.137.161.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("46460", "3", "2017-01-11 17:46:24", "207.6.237.138", "48");
INSERT INTO `wp_rg_form_view` VALUES("46461", "15", "2017-01-11 17:46:55", "207.6.237.138", "13");
INSERT INTO `wp_rg_form_view` VALUES("46462", "3", "2017-01-11 18:06:58", "202.46.58.209", "72");
INSERT INTO `wp_rg_form_view` VALUES("46463", "15", "2017-01-11 18:06:58", "202.46.58.209", "22");
INSERT INTO `wp_rg_form_view` VALUES("46464", "2", "2017-01-11 18:43:38", "178.137.18.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("46465", "11", "2017-01-11 18:46:27", "77.75.78.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("46466", "3", "2017-01-11 19:13:56", "202.46.52.119", "106");
INSERT INTO `wp_rg_form_view` VALUES("46467", "15", "2017-01-11 19:13:57", "202.46.52.119", "29");
INSERT INTO `wp_rg_form_view` VALUES("46468", "2", "2017-01-11 19:23:06", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("46469", "13", "2017-01-11 19:23:28", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("46470", "15", "2017-01-11 20:11:39", "184.66.248.195", "42");
INSERT INTO `wp_rg_form_view` VALUES("46471", "3", "2017-01-11 20:12:09", "184.66.248.195", "162");
INSERT INTO `wp_rg_form_view` VALUES("46472", "3", "2017-01-11 21:01:06", "207.194.133.9", "208");
INSERT INTO `wp_rg_form_view` VALUES("46473", "15", "2017-01-11 21:01:27", "207.194.133.9", "52");
INSERT INTO `wp_rg_form_view` VALUES("46474", "14", "2017-01-11 21:37:23", "184.66.3.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("46475", "15", "2017-01-11 22:07:54", "154.20.29.44", "45");
INSERT INTO `wp_rg_form_view` VALUES("46476", "3", "2017-01-11 22:08:04", "154.20.29.44", "179");
INSERT INTO `wp_rg_form_view` VALUES("46477", "3", "2017-01-11 23:08:48", "66.249.79.108", "48");
INSERT INTO `wp_rg_form_view` VALUES("46478", "15", "2017-01-11 23:08:49", "66.249.79.108", "13");
INSERT INTO `wp_rg_form_view` VALUES("46479", "10", "2017-01-11 23:17:29", "163.172.66.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("46480", "2", "2017-01-12 00:08:13", "5.248.196.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("46481", "3", "2017-01-12 00:08:13", "5.248.196.252", "80");
INSERT INTO `wp_rg_form_view` VALUES("46482", "15", "2017-01-12 00:08:14", "5.248.196.252", "21");
INSERT INTO `wp_rg_form_view` VALUES("46483", "11", "2017-01-12 00:29:39", "66.249.79.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("46484", "2", "2017-01-12 01:01:35", "178.137.16.194", "7");
INSERT INTO `wp_rg_form_view` VALUES("46485", "3", "2017-01-12 01:01:35", "178.137.16.194", "243");
INSERT INTO `wp_rg_form_view` VALUES("46486", "15", "2017-01-12 01:01:36", "178.137.16.194", "60");
INSERT INTO `wp_rg_form_view` VALUES("46487", "14", "2017-01-12 01:41:40", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("46488", "3", "2017-01-12 02:14:25", "68.180.228.164", "192");
INSERT INTO `wp_rg_form_view` VALUES("46489", "15", "2017-01-12 02:14:26", "68.180.228.164", "51");
INSERT INTO `wp_rg_form_view` VALUES("46490", "2", "2017-01-12 02:52:22", "178.137.16.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("46491", "3", "2017-01-12 03:15:47", "217.69.133.232", "40");
INSERT INTO `wp_rg_form_view` VALUES("46492", "15", "2017-01-12 03:15:48", "217.69.133.232", "10");
INSERT INTO `wp_rg_form_view` VALUES("46493", "3", "2017-01-12 04:11:07", "40.77.167.75", "80");
INSERT INTO `wp_rg_form_view` VALUES("46494", "15", "2017-01-12 04:11:08", "40.77.167.75", "18");
INSERT INTO `wp_rg_form_view` VALUES("46495", "2", "2017-01-12 04:37:03", "216.232.144.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("46496", "3", "2017-01-12 05:00:06", "24.108.216.76", "433");
INSERT INTO `wp_rg_form_view` VALUES("46497", "15", "2017-01-12 05:00:06", "24.108.216.76", "120");
INSERT INTO `wp_rg_form_view` VALUES("46498", "14", "2017-01-12 05:03:29", "24.108.216.76", "6");
INSERT INTO `wp_rg_form_view` VALUES("46499", "11", "2017-01-12 05:04:14", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("46500", "2", "2017-01-12 05:05:56", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("46501", "3", "2017-01-12 06:25:57", "217.69.133.229", "48");
INSERT INTO `wp_rg_form_view` VALUES("46502", "15", "2017-01-12 06:25:58", "217.69.133.229", "12");
INSERT INTO `wp_rg_form_view` VALUES("46503", "2", "2017-01-12 06:38:26", "178.137.18.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("46504", "3", "2017-01-12 07:54:45", "163.172.66.107", "8");
INSERT INTO `wp_rg_form_view` VALUES("46505", "15", "2017-01-12 07:54:51", "163.172.66.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("46506", "3", "2017-01-12 08:00:14", "217.69.133.231", "24");
INSERT INTO `wp_rg_form_view` VALUES("46507", "15", "2017-01-12 08:00:14", "217.69.133.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("46508", "3", "2017-01-12 09:10:00", "204.9.143.25", "105");
INSERT INTO `wp_rg_form_view` VALUES("46509", "15", "2017-01-12 09:10:05", "204.9.143.25", "26");
INSERT INTO `wp_rg_form_view` VALUES("46510", "10", "2017-01-12 09:33:52", "217.69.133.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("46511", "2", "2017-01-12 09:43:49", "178.137.16.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("46512", "3", "2017-01-12 11:09:10", "217.69.133.230", "43");
INSERT INTO `wp_rg_form_view` VALUES("46513", "15", "2017-01-12 11:09:12", "217.69.133.230", "10");
INSERT INTO `wp_rg_form_view` VALUES("46514", "3", "2017-01-12 12:14:46", "68.180.228.164", "34");
INSERT INTO `wp_rg_form_view` VALUES("46515", "15", "2017-01-12 12:14:48", "68.180.228.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("46516", "5", "2017-01-12 12:43:46", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("46517", "3", "2017-01-12 13:50:01", "68.180.228.164", "11");
INSERT INTO `wp_rg_form_view` VALUES("46518", "15", "2017-01-12 13:50:04", "68.180.228.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("46519", "3", "2017-01-12 14:17:47", "217.69.133.69", "72");
INSERT INTO `wp_rg_form_view` VALUES("46520", "15", "2017-01-12 14:17:47", "217.69.133.69", "20");
INSERT INTO `wp_rg_form_view` VALUES("46521", "15", "2017-01-12 15:02:50", "66.249.79.112", "18");
INSERT INTO `wp_rg_form_view` VALUES("46522", "3", "2017-01-12 15:02:50", "66.249.79.112", "71");
INSERT INTO `wp_rg_form_view` VALUES("46523", "15", "2017-01-12 16:22:39", "46.4.27.199", "13");
INSERT INTO `wp_rg_form_view` VALUES("46524", "3", "2017-01-12 16:22:47", "46.4.27.199", "40");
INSERT INTO `wp_rg_form_view` VALUES("46525", "3", "2017-01-12 17:00:31", "77.75.76.166", "123");
INSERT INTO `wp_rg_form_view` VALUES("46526", "15", "2017-01-12 17:00:31", "77.75.76.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("46527", "3", "2017-01-12 18:22:20", "77.75.77.62", "96");
INSERT INTO `wp_rg_form_view` VALUES("46528", "15", "2017-01-12 18:22:35", "77.75.77.62", "41");
INSERT INTO `wp_rg_form_view` VALUES("46529", "3", "2017-01-12 19:00:59", "209.52.88.124", "89");
INSERT INTO `wp_rg_form_view` VALUES("46530", "15", "2017-01-12 19:01:00", "209.52.88.124", "22");
INSERT INTO `wp_rg_form_view` VALUES("46531", "14", "2017-01-12 19:12:08", "184.66.234.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("46532", "3", "2017-01-12 20:08:51", "176.68.145.150", "59");
INSERT INTO `wp_rg_form_view` VALUES("46533", "15", "2017-01-12 20:08:53", "176.68.145.150", "16");
INSERT INTO `wp_rg_form_view` VALUES("46534", "10", "2017-01-12 20:29:00", "77.75.78.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("46535", "3", "2017-01-12 21:08:42", "70.67.51.254", "166");
INSERT INTO `wp_rg_form_view` VALUES("46536", "15", "2017-01-12 21:08:43", "70.67.51.254", "50");
INSERT INTO `wp_rg_form_view` VALUES("46537", "14", "2017-01-12 21:47:33", "70.66.168.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("46538", "3", "2017-01-12 22:06:08", "66.249.79.112", "98");
INSERT INTO `wp_rg_form_view` VALUES("46539", "15", "2017-01-12 22:06:09", "66.249.79.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("46540", "3", "2017-01-12 23:00:39", "68.180.228.164", "32");
INSERT INTO `wp_rg_form_view` VALUES("46541", "15", "2017-01-12 23:00:40", "68.180.228.164", "9");
INSERT INTO `wp_rg_form_view` VALUES("46542", "11", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46543", "3", "2017-01-13 00:53:18", "148.251.75.46", "189");
INSERT INTO `wp_rg_form_view` VALUES("46544", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46545", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46546", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46547", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46548", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46549", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46550", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46551", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46552", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46553", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46554", "3", "2017-01-13 00:53:18", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46555", "3", "2017-01-13 00:53:19", "148.251.75.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("46556", "15", "2017-01-13 00:53:19", "148.251.75.46", "87");
INSERT INTO `wp_rg_form_view` VALUES("46557", "3", "2017-01-13 01:03:03", "108.180.5.29", "21");
INSERT INTO `wp_rg_form_view` VALUES("46558", "15", "2017-01-13 01:03:04", "108.180.5.29", "9");
INSERT INTO `wp_rg_form_view` VALUES("46559", "3", "2017-01-13 02:11:32", "66.102.6.94", "110");
INSERT INTO `wp_rg_form_view` VALUES("46560", "15", "2017-01-13 02:11:32", "66.102.6.94", "45");
INSERT INTO `wp_rg_form_view` VALUES("46561", "14", "2017-01-13 02:33:57", "118.97.192.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("46562", "5", "2017-01-13 03:48:25", "77.75.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("46563", "3", "2017-01-13 03:48:26", "77.75.76.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("46564", "15", "2017-01-13 03:48:26", "77.75.76.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("46565", "15", "2017-01-13 04:02:16", "184.66.252.175", "11");
INSERT INTO `wp_rg_form_view` VALUES("46566", "3", "2017-01-13 04:02:16", "184.66.252.175", "22");
INSERT INTO `wp_rg_form_view` VALUES("46567", "3", "2017-01-13 05:01:02", "163.172.65.249", "71");
INSERT INTO `wp_rg_form_view` VALUES("46568", "15", "2017-01-13 05:01:03", "163.172.65.249", "31");
INSERT INTO `wp_rg_form_view` VALUES("46569", "2", "2017-01-13 05:39:49", "134.249.50.153", "4");
INSERT INTO `wp_rg_form_view` VALUES("46570", "2", "2017-01-13 05:39:49", "134.249.50.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("46571", "3", "2017-01-13 06:01:57", "217.69.133.228", "217");
INSERT INTO `wp_rg_form_view` VALUES("46572", "15", "2017-01-13 06:01:58", "217.69.133.228", "93");
INSERT INTO `wp_rg_form_view` VALUES("46573", "10", "2017-01-13 06:57:37", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46574", "11", "2017-01-13 06:57:48", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46575", "2", "2017-01-13 06:58:49", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46576", "3", "2017-01-13 07:00:09", "136.243.36.94", "671");
INSERT INTO `wp_rg_form_view` VALUES("46577", "15", "2017-01-13 07:00:10", "136.243.36.94", "270");
INSERT INTO `wp_rg_form_view` VALUES("46578", "2", "2017-01-13 07:12:28", "178.137.161.236", "5");
INSERT INTO `wp_rg_form_view` VALUES("46579", "2", "2017-01-13 07:12:28", "178.137.161.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46580", "10", "2017-01-13 07:18:32", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("46581", "14", "2017-01-13 07:27:58", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46582", "13", "2017-01-13 07:42:16", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46583", "3", "2017-01-13 08:14:11", "195.154.187.40", "78");
INSERT INTO `wp_rg_form_view` VALUES("46584", "15", "2017-01-13 08:14:11", "195.154.187.40", "35");
INSERT INTO `wp_rg_form_view` VALUES("46585", "3", "2017-01-13 09:11:38", "217.69.133.228", "21");
INSERT INTO `wp_rg_form_view` VALUES("46586", "15", "2017-01-13 09:11:39", "217.69.133.228", "9");
INSERT INTO `wp_rg_form_view` VALUES("46587", "3", "2017-01-13 10:20:29", "68.180.228.164", "35");
INSERT INTO `wp_rg_form_view` VALUES("46588", "15", "2017-01-13 10:20:29", "68.180.228.164", "15");
INSERT INTO `wp_rg_form_view` VALUES("46589", "3", "2017-01-13 11:43:20", "5.164.189.210", "35");
INSERT INTO `wp_rg_form_view` VALUES("46590", "15", "2017-01-13 11:43:20", "5.164.189.210", "15");
INSERT INTO `wp_rg_form_view` VALUES("46591", "3", "2017-01-13 12:19:56", "217.69.133.229", "36");
INSERT INTO `wp_rg_form_view` VALUES("46592", "15", "2017-01-13 12:19:59", "217.69.133.229", "16");
INSERT INTO `wp_rg_form_view` VALUES("46593", "3", "2017-01-13 13:09:22", "204.44.94.177", "65");
INSERT INTO `wp_rg_form_view` VALUES("46594", "15", "2017-01-13 13:09:23", "204.44.94.177", "27");
INSERT INTO `wp_rg_form_view` VALUES("46595", "14", "2017-01-13 13:59:07", "173.254.226.184", "3");
INSERT INTO `wp_rg_form_view` VALUES("46596", "14", "2017-01-13 14:01:19", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("46597", "3", "2017-01-13 14:01:19", "188.212.23.135", "21");
INSERT INTO `wp_rg_form_view` VALUES("46598", "15", "2017-01-13 14:01:20", "188.212.23.135", "9");
INSERT INTO `wp_rg_form_view` VALUES("46599", "3", "2017-01-13 15:04:42", "104.144.228.45", "82");
INSERT INTO `wp_rg_form_view` VALUES("46600", "15", "2017-01-13 15:04:43", "104.144.228.45", "33");
INSERT INTO `wp_rg_form_view` VALUES("46601", "10", "2017-01-13 15:28:32", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("46602", "14", "2017-01-13 15:45:40", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("46603", "15", "2017-01-13 16:00:41", "70.66.171.39", "7");
INSERT INTO `wp_rg_form_view` VALUES("46604", "3", "2017-01-13 16:00:43", "70.66.171.39", "14");
INSERT INTO `wp_rg_form_view` VALUES("46605", "3", "2017-01-13 17:03:38", "163.172.65.50", "50");
INSERT INTO `wp_rg_form_view` VALUES("46606", "15", "2017-01-13 17:04:22", "217.69.133.229", "21");
INSERT INTO `wp_rg_form_view` VALUES("46607", "14", "2017-01-13 17:34:14", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("46608", "3", "2017-01-13 18:18:10", "207.194.94.204", "7");
INSERT INTO `wp_rg_form_view` VALUES("46609", "15", "2017-01-13 18:18:19", "207.194.94.204", "3");
INSERT INTO `wp_rg_form_view` VALUES("46610", "3", "2017-01-13 19:01:15", "199.21.99.202", "35");
INSERT INTO `wp_rg_form_view` VALUES("46611", "15", "2017-01-13 19:01:29", "199.21.99.202", "15");
INSERT INTO `wp_rg_form_view` VALUES("46612", "14", "2017-01-13 19:41:05", "188.212.23.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("46613", "3", "2017-01-13 20:07:53", "199.21.99.202", "42");
INSERT INTO `wp_rg_form_view` VALUES("46614", "15", "2017-01-13 20:08:11", "199.21.99.202", "18");
INSERT INTO `wp_rg_form_view` VALUES("46615", "3", "2017-01-13 22:18:17", "74.208.88.98", "260");
INSERT INTO `wp_rg_form_view` VALUES("46616", "15", "2017-01-13 22:18:25", "74.208.88.98", "114");
INSERT INTO `wp_rg_form_view` VALUES("46617", "11", "2017-01-13 22:18:30", "74.208.88.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("46618", "2", "2017-01-13 22:19:38", "74.208.88.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("46619", "13", "2017-01-13 23:24:20", "69.157.253.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("46620", "3", "2017-01-13 23:24:25", "69.157.253.213", "87");
INSERT INTO `wp_rg_form_view` VALUES("46621", "15", "2017-01-13 23:24:25", "69.157.253.213", "30");
INSERT INTO `wp_rg_form_view` VALUES("46622", "3", "2017-01-14 00:09:27", "68.180.228.164", "15");
INSERT INTO `wp_rg_form_view` VALUES("46623", "15", "2017-01-14 00:09:28", "68.180.228.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("46624", "14", "2017-01-14 00:24:38", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46625", "3", "2017-01-14 01:04:54", "202.46.55.89", "282");
INSERT INTO `wp_rg_form_view` VALUES("46626", "15", "2017-01-14 01:04:54", "202.46.55.89", "111");
INSERT INTO `wp_rg_form_view` VALUES("46627", "13", "2017-01-14 01:46:29", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("46628", "6", "2017-01-14 01:47:14", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46629", "9", "2017-01-14 01:47:25", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46630", "8", "2017-01-14 01:55:03", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46631", "10", "2017-01-14 01:55:50", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46632", "3", "2017-01-14 03:11:19", "154.20.32.181", "21");
INSERT INTO `wp_rg_form_view` VALUES("46633", "15", "2017-01-14 03:11:19", "154.20.32.181", "9");
INSERT INTO `wp_rg_form_view` VALUES("46634", "3", "2017-01-14 04:18:51", "68.180.228.164", "22");
INSERT INTO `wp_rg_form_view` VALUES("46635", "15", "2017-01-14 04:18:57", "68.180.228.164", "9");
INSERT INTO `wp_rg_form_view` VALUES("46636", "3", "2017-01-14 05:21:21", "198.251.79.137", "233");
INSERT INTO `wp_rg_form_view` VALUES("46637", "15", "2017-01-14 05:21:22", "198.251.79.137", "102");
INSERT INTO `wp_rg_form_view` VALUES("46638", "11", "2017-01-14 05:21:25", "198.251.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("46639", "2", "2017-01-14 05:22:43", "198.251.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("46640", "3", "2017-01-14 06:01:30", "77.75.76.169", "28");
INSERT INTO `wp_rg_form_view` VALUES("46641", "15", "2017-01-14 06:01:30", "77.75.76.169", "12");
INSERT INTO `wp_rg_form_view` VALUES("46642", "15", "2017-01-14 07:05:14", "68.180.228.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("46643", "3", "2017-01-14 07:32:32", "54.89.241.236", "21");
INSERT INTO `wp_rg_form_view` VALUES("46644", "11", "2017-01-14 08:08:53", "77.75.76.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("46645", "3", "2017-01-14 08:08:53", "77.75.76.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("46646", "15", "2017-01-14 08:08:53", "77.75.76.167", "3");
INSERT INTO `wp_rg_form_view` VALUES("46647", "3", "2017-01-14 09:01:07", "77.75.78.172", "21");
INSERT INTO `wp_rg_form_view` VALUES("46648", "15", "2017-01-14 09:01:09", "77.75.78.172", "9");
INSERT INTO `wp_rg_form_view` VALUES("46649", "3", "2017-01-14 10:15:12", "68.180.228.164", "30");
INSERT INTO `wp_rg_form_view` VALUES("46650", "15", "2017-01-14 10:28:44", "220.181.108.153", "12");
INSERT INTO `wp_rg_form_view` VALUES("46651", "3", "2017-01-14 11:35:25", "220.181.108.169", "7");
INSERT INTO `wp_rg_form_view` VALUES("46652", "15", "2017-01-14 11:35:25", "220.181.108.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("46653", "3", "2017-01-14 12:11:04", "68.180.228.164", "7");
INSERT INTO `wp_rg_form_view` VALUES("46654", "15", "2017-01-14 12:11:04", "68.180.228.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("46655", "3", "2017-01-14 13:06:07", "163.172.65.216", "34");
INSERT INTO `wp_rg_form_view` VALUES("46656", "15", "2017-01-14 13:06:08", "163.172.65.216", "12");
INSERT INTO `wp_rg_form_view` VALUES("46657", "2", "2017-01-14 13:17:54", "202.46.50.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("46658", "3", "2017-01-14 14:27:11", "37.187.56.81", "519");
INSERT INTO `wp_rg_form_view` VALUES("46659", "15", "2017-01-14 14:27:13", "37.187.56.81", "226");
INSERT INTO `wp_rg_form_view` VALUES("46660", "11", "2017-01-14 14:27:33", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("46661", "2", "2017-01-14 14:27:38", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("46662", "14", "2017-01-14 14:30:16", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("46663", "3", "2017-01-14 15:32:35", "163.172.64.217", "16");
INSERT INTO `wp_rg_form_view` VALUES("46664", "15", "2017-01-14 15:32:35", "163.172.64.217", "6");
INSERT INTO `wp_rg_form_view` VALUES("46665", "3", "2017-01-14 16:16:31", "163.172.65.10", "22");
INSERT INTO `wp_rg_form_view` VALUES("46666", "15", "2017-01-14 16:16:32", "163.172.65.10", "9");
INSERT INTO `wp_rg_form_view` VALUES("46667", "2", "2017-01-14 16:17:46", "163.172.65.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("46668", "3", "2017-01-14 17:15:05", "68.180.228.164", "7");
INSERT INTO `wp_rg_form_view` VALUES("46669", "15", "2017-01-14 17:15:06", "68.180.228.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("46670", "3", "2017-01-14 18:39:05", "68.180.228.164", "14");
INSERT INTO `wp_rg_form_view` VALUES("46671", "15", "2017-01-14 18:39:07", "68.180.228.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("46672", "3", "2017-01-14 19:04:56", "199.21.99.202", "80");
INSERT INTO `wp_rg_form_view` VALUES("46673", "15", "2017-01-14 19:04:56", "199.21.99.202", "33");
INSERT INTO `wp_rg_form_view` VALUES("46674", "3", "2017-01-14 20:00:27", "184.66.238.122", "49");
INSERT INTO `wp_rg_form_view` VALUES("46675", "15", "2017-01-14 20:00:27", "184.66.238.122", "21");
INSERT INTO `wp_rg_form_view` VALUES("46676", "14", "2017-01-14 20:11:13", "209.107.216.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("46677", "3", "2017-01-14 21:47:23", "40.77.167.75", "22");
INSERT INTO `wp_rg_form_view` VALUES("46678", "15", "2017-01-14 21:47:25", "40.77.167.75", "9");
INSERT INTO `wp_rg_form_view` VALUES("46679", "10", "2017-01-14 21:52:01", "163.172.66.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("46680", "3", "2017-01-14 22:13:58", "202.46.53.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("46681", "15", "2017-01-14 22:13:58", "202.46.53.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("46682", "3", "2017-01-14 23:42:32", "163.172.64.252", "7");
INSERT INTO `wp_rg_form_view` VALUES("46683", "15", "2017-01-14 23:42:32", "163.172.64.252", "3");
INSERT INTO `wp_rg_form_view` VALUES("46684", "3", "2017-01-15 00:23:00", "202.46.51.86", "43");
INSERT INTO `wp_rg_form_view` VALUES("46685", "15", "2017-01-15 00:23:01", "202.46.51.86", "18");
INSERT INTO `wp_rg_form_view` VALUES("46686", "3", "2017-01-15 01:07:31", "68.180.228.164", "30");
INSERT INTO `wp_rg_form_view` VALUES("46687", "15", "2017-01-15 01:07:31", "68.180.228.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("46688", "3", "2017-01-15 02:34:34", "208.114.165.70", "45");
INSERT INTO `wp_rg_form_view` VALUES("46689", "15", "2017-01-15 02:34:37", "208.114.165.70", "18");
INSERT INTO `wp_rg_form_view` VALUES("46690", "3", "2017-01-15 03:24:52", "163.172.66.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("46691", "15", "2017-01-15 03:24:52", "163.172.66.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("46692", "15", "2017-01-15 04:33:35", "66.249.79.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("46693", "3", "2017-01-15 04:33:35", "66.249.79.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("46694", "3", "2017-01-15 05:04:18", "202.46.53.147", "21");
INSERT INTO `wp_rg_form_view` VALUES("46695", "15", "2017-01-15 05:04:18", "202.46.53.147", "9");
INSERT INTO `wp_rg_form_view` VALUES("46696", "3", "2017-01-15 06:02:43", "220.181.108.102", "278");
INSERT INTO `wp_rg_form_view` VALUES("46697", "15", "2017-01-15 06:02:43", "220.181.108.102", "117");
INSERT INTO `wp_rg_form_view` VALUES("46698", "10", "2017-01-15 06:04:31", "199.59.150.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("46699", "11", "2017-01-15 06:16:48", "173.167.63.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("46700", "2", "2017-01-15 06:18:35", "173.167.63.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("46701", "3", "2017-01-15 07:32:09", "52.201.245.104", "45");
INSERT INTO `wp_rg_form_view` VALUES("46702", "15", "2017-01-15 07:32:11", "52.201.245.104", "21");
INSERT INTO `wp_rg_form_view` VALUES("46703", "3", "2017-01-15 08:11:14", "66.249.79.140", "21");
INSERT INTO `wp_rg_form_view` VALUES("46704", "15", "2017-01-15 08:11:15", "66.249.79.140", "9");
INSERT INTO `wp_rg_form_view` VALUES("46705", "9", "2017-01-15 08:59:57", "163.172.66.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("46706", "3", "2017-01-15 10:47:35", "68.180.228.50", "8");
INSERT INTO `wp_rg_form_view` VALUES("46707", "15", "2017-01-15 10:47:37", "68.180.228.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("46708", "3", "2017-01-15 11:21:34", "66.249.79.144", "44");
INSERT INTO `wp_rg_form_view` VALUES("46709", "15", "2017-01-15 11:21:35", "66.249.79.144", "18");
INSERT INTO `wp_rg_form_view` VALUES("46710", "14", "2017-01-15 11:32:05", "82.165.151.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("46711", "3", "2017-01-15 12:38:09", "66.249.79.144", "7");
INSERT INTO `wp_rg_form_view` VALUES("46712", "15", "2017-01-15 12:38:10", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("46713", "3", "2017-01-15 13:16:50", "68.180.228.164", "16");
INSERT INTO `wp_rg_form_view` VALUES("46714", "15", "2017-01-15 13:16:51", "68.180.228.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("46715", "3", "2017-01-15 14:03:08", "163.172.66.77", "31");
INSERT INTO `wp_rg_form_view` VALUES("46716", "15", "2017-01-15 14:03:08", "163.172.66.77", "12");
INSERT INTO `wp_rg_form_view` VALUES("46717", "3", "2017-01-15 15:40:48", "195.154.187.40", "30");
INSERT INTO `wp_rg_form_view` VALUES("46718", "15", "2017-01-15 15:40:48", "195.154.187.40", "12");
INSERT INTO `wp_rg_form_view` VALUES("46719", "3", "2017-01-15 16:10:27", "68.180.228.164", "265");
INSERT INTO `wp_rg_form_view` VALUES("46720", "15", "2017-01-15 16:10:27", "68.180.228.164", "111");
INSERT INTO `wp_rg_form_view` VALUES("46721", "3", "2017-01-15 18:24:18", "202.46.56.14", "36");
INSERT INTO `wp_rg_form_view` VALUES("46722", "15", "2017-01-15 18:24:28", "202.46.56.14", "15");
INSERT INTO `wp_rg_form_view` VALUES("46723", "3", "2017-01-15 19:40:14", "96.50.97.214", "14");
INSERT INTO `wp_rg_form_view` VALUES("46724", "15", "2017-01-15 19:40:26", "96.50.97.214", "6");
INSERT INTO `wp_rg_form_view` VALUES("46725", "3", "2017-01-15 20:14:29", "68.180.228.164", "253");
INSERT INTO `wp_rg_form_view` VALUES("46726", "15", "2017-01-15 20:14:29", "68.180.228.164", "108");
INSERT INTO `wp_rg_form_view` VALUES("46727", "11", "2017-01-15 20:22:12", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("46728", "2", "2017-01-15 20:23:43", "50.252.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("46729", "3", "2017-01-15 21:27:59", "163.172.65.43", "233");
INSERT INTO `wp_rg_form_view` VALUES("46730", "15", "2017-01-15 21:28:04", "163.172.65.43", "99");
INSERT INTO `wp_rg_form_view` VALUES("46731", "11", "2017-01-15 21:52:16", "164.77.43.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("46732", "2", "2017-01-15 21:53:17", "164.77.43.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("46733", "3", "2017-01-15 22:04:47", "35.167.171.157", "42");
INSERT INTO `wp_rg_form_view` VALUES("46734", "15", "2017-01-15 22:04:48", "35.167.171.157", "18");
INSERT INTO `wp_rg_form_view` VALUES("46735", "3", "2017-01-15 23:13:13", "96.50.5.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("46736", "15", "2017-01-15 23:13:16", "96.50.5.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("46737", "3", "2017-01-16 00:45:00", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46738", "3", "2017-01-16 03:01:13", "66.249.79.140", "7");
INSERT INTO `wp_rg_form_view` VALUES("46739", "15", "2017-01-16 03:01:15", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("46740", "3", "2017-01-16 04:06:03", "23.231.110.169", "43");
INSERT INTO `wp_rg_form_view` VALUES("46741", "15", "2017-01-16 04:06:03", "23.231.110.169", "18");
INSERT INTO `wp_rg_form_view` VALUES("46742", "3", "2017-01-16 05:20:12", "176.104.53.131", "56");
INSERT INTO `wp_rg_form_view` VALUES("46743", "15", "2017-01-16 05:20:15", "176.104.53.131", "24");
INSERT INTO `wp_rg_form_view` VALUES("46744", "3", "2017-01-16 06:33:59", "24.108.188.211", "31");
INSERT INTO `wp_rg_form_view` VALUES("46745", "15", "2017-01-16 06:34:00", "24.108.188.211", "12");
INSERT INTO `wp_rg_form_view` VALUES("46746", "14", "2017-01-16 06:57:45", "163.172.65.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("46747", "3", "2017-01-16 07:07:11", "136.243.36.94", "663");
INSERT INTO `wp_rg_form_view` VALUES("46748", "15", "2017-01-16 07:07:14", "136.243.36.94", "285");
INSERT INTO `wp_rg_form_view` VALUES("46749", "2", "2017-01-16 07:08:14", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46750", "14", "2017-01-16 07:18:49", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46751", "13", "2017-01-16 07:24:17", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46752", "6", "2017-01-16 07:26:24", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46753", "9", "2017-01-16 07:28:25", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46754", "8", "2017-01-16 07:39:57", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46755", "10", "2017-01-16 07:41:02", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("46756", "3", "2017-01-16 08:14:46", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("46757", "15", "2017-01-16 08:14:47", "66.249.79.144", "9");
INSERT INTO `wp_rg_form_view` VALUES("46758", "10", "2017-01-16 08:43:51", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46759", "3", "2017-01-16 09:41:44", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46760", "3", "2017-01-16 10:06:02", "70.35.194.235", "218");
INSERT INTO `wp_rg_form_view` VALUES("46761", "15", "2017-01-16 10:06:02", "70.35.194.235", "93");
INSERT INTO `wp_rg_form_view` VALUES("46762", "11", "2017-01-16 10:06:05", "70.35.194.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("46763", "2", "2017-01-16 10:06:57", "70.35.194.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("46764", "3", "2017-01-16 11:40:27", "202.46.54.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("46765", "15", "2017-01-16 11:40:28", "202.46.54.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("46766", "3", "2017-01-16 12:54:37", "54.174.154.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("46767", "15", "2017-01-16 12:54:37", "54.174.154.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("46768", "3", "2017-01-16 13:07:31", "52.0.137.234", "77");
INSERT INTO `wp_rg_form_view` VALUES("46769", "15", "2017-01-16 13:07:32", "52.0.137.234", "33");
INSERT INTO `wp_rg_form_view` VALUES("46770", "2", "2017-01-16 13:07:40", "52.0.137.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("46771", "11", "2017-01-16 13:08:01", "162.217.145.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("46772", "3", "2017-01-16 14:16:12", "207.46.13.118", "22");
INSERT INTO `wp_rg_form_view` VALUES("46773", "15", "2017-01-16 14:16:15", "207.46.13.118", "9");
INSERT INTO `wp_rg_form_view` VALUES("46774", "3", "2017-01-16 15:32:08", "96.54.51.42", "49");
INSERT INTO `wp_rg_form_view` VALUES("46775", "15", "2017-01-16 15:32:11", "96.54.51.42", "21");
INSERT INTO `wp_rg_form_view` VALUES("46776", "10", "2017-01-16 15:51:05", "163.172.66.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("46777", "3", "2017-01-16 16:21:15", "68.180.228.164", "34");
INSERT INTO `wp_rg_form_view` VALUES("46778", "15", "2017-01-16 16:21:15", "68.180.228.164", "16");
INSERT INTO `wp_rg_form_view` VALUES("46779", "3", "2017-01-16 17:18:06", "66.249.79.140", "37");
INSERT INTO `wp_rg_form_view` VALUES("46780", "15", "2017-01-16 17:18:13", "66.249.79.140", "15");
INSERT INTO `wp_rg_form_view` VALUES("46781", "9", "2017-01-16 17:56:57", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46782", "3", "2017-01-16 18:03:21", "209.52.88.70", "29");
INSERT INTO `wp_rg_form_view` VALUES("46783", "15", "2017-01-16 18:03:21", "209.52.88.70", "12");
INSERT INTO `wp_rg_form_view` VALUES("46784", "3", "2017-01-16 19:04:23", "72.2.0.130", "98");
INSERT INTO `wp_rg_form_view` VALUES("46785", "15", "2017-01-16 19:04:28", "72.2.0.130", "43");
INSERT INTO `wp_rg_form_view` VALUES("46786", "3", "2017-01-16 20:02:55", "54.243.142.136", "28");
INSERT INTO `wp_rg_form_view` VALUES("46787", "15", "2017-01-16 20:02:55", "54.243.142.136", "12");
INSERT INTO `wp_rg_form_view` VALUES("46788", "3", "2017-01-16 21:06:04", "192.151.178.180", "49");
INSERT INTO `wp_rg_form_view` VALUES("46789", "15", "2017-01-16 21:06:05", "192.151.178.180", "21");
INSERT INTO `wp_rg_form_view` VALUES("46790", "3", "2017-01-16 22:49:59", "104.131.217.20", "598");
INSERT INTO `wp_rg_form_view` VALUES("46791", "15", "2017-01-16 22:50:01", "104.131.217.20", "275");
INSERT INTO `wp_rg_form_view` VALUES("46792", "14", "2017-01-16 22:55:33", "104.131.217.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("46793", "11", "2017-01-16 22:55:43", "104.131.217.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("46794", "15", "2017-01-16 23:00:00", "104.131.217.20", "1371");
INSERT INTO `wp_rg_form_view` VALUES("46795", "3", "2017-01-16 23:00:04", "104.131.217.20", "3106");
INSERT INTO `wp_rg_form_view` VALUES("46796", "6", "2017-01-16 23:13:39", "104.131.217.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("46797", "9", "2017-01-16 23:22:29", "104.131.217.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("46798", "10", "2017-01-16 23:37:09", "104.131.217.20", "6");
INSERT INTO `wp_rg_form_view` VALUES("46799", "3", "2017-01-17 00:00:04", "202.46.53.55", "733");
INSERT INTO `wp_rg_form_view` VALUES("46800", "15", "2017-01-17 00:00:05", "202.46.53.55", "321");
INSERT INTO `wp_rg_form_view` VALUES("46801", "2", "2017-01-17 00:04:07", "104.131.217.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("46802", "13", "2017-01-17 00:13:06", "104.131.217.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("46803", "14", "2017-01-17 00:14:02", "37.59.37.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("46804", "3", "2017-01-17 01:20:07", "205.250.86.162", "58");
INSERT INTO `wp_rg_form_view` VALUES("46805", "15", "2017-01-17 01:20:07", "205.250.86.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("46806", "14", "2017-01-17 01:56:26", "103.58.117.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("46807", "3", "2017-01-17 02:01:52", "24.108.18.195", "192");
INSERT INTO `wp_rg_form_view` VALUES("46808", "15", "2017-01-17 02:01:52", "24.108.18.195", "82");
INSERT INTO `wp_rg_form_view` VALUES("46809", "14", "2017-01-17 02:02:52", "24.108.18.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("46810", "3", "2017-01-17 03:29:52", "205.250.180.14", "134");
INSERT INTO `wp_rg_form_view` VALUES("46811", "15", "2017-01-17 03:29:53", "205.250.180.14", "57");
INSERT INTO `wp_rg_form_view` VALUES("46812", "14", "2017-01-17 03:34:13", "24.68.113.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("46813", "3", "2017-01-17 05:15:55", "207.46.13.118", "35");
INSERT INTO `wp_rg_form_view` VALUES("46814", "15", "2017-01-17 05:15:58", "207.46.13.118", "16");
INSERT INTO `wp_rg_form_view` VALUES("46815", "14", "2017-01-17 05:23:46", "188.166.179.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("46816", "3", "2017-01-17 06:42:33", "184.66.142.188", "21");
INSERT INTO `wp_rg_form_view` VALUES("46817", "15", "2017-01-17 06:42:34", "184.66.142.188", "9");
INSERT INTO `wp_rg_form_view` VALUES("46818", "3", "2017-01-17 07:14:38", "207.194.94.23", "208");
INSERT INTO `wp_rg_form_view` VALUES("46819", "15", "2017-01-17 07:14:47", "207.194.94.23", "76");
INSERT INTO `wp_rg_form_view` VALUES("46820", "2", "2017-01-17 07:23:05", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46821", "9", "2017-01-17 07:39:34", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("46822", "8", "2017-01-17 07:40:03", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("46823", "10", "2017-01-17 07:43:23", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("46824", "6", "2017-01-17 07:50:07", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("46825", "3", "2017-01-17 09:42:46", "66.249.79.140", "14");
INSERT INTO `wp_rg_form_view` VALUES("46826", "15", "2017-01-17 09:42:49", "66.249.79.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("46827", "14", "2017-01-17 10:13:18", "201.90.120.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("46828", "3", "2017-01-17 10:13:18", "201.90.120.194", "7");
INSERT INTO `wp_rg_form_view` VALUES("46829", "15", "2017-01-17 10:13:19", "201.90.120.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("46830", "3", "2017-01-17 11:04:22", "204.79.180.221", "14");
INSERT INTO `wp_rg_form_view` VALUES("46831", "15", "2017-01-17 11:04:28", "204.79.180.221", "6");
INSERT INTO `wp_rg_form_view` VALUES("46832", "3", "2017-01-17 12:10:21", "194.187.170.126", "35");
INSERT INTO `wp_rg_form_view` VALUES("46833", "15", "2017-01-17 12:10:21", "194.187.170.126", "15");
INSERT INTO `wp_rg_form_view` VALUES("46834", "3", "2017-01-17 13:03:41", "68.180.228.164", "28");
INSERT INTO `wp_rg_form_view` VALUES("46835", "15", "2017-01-17 13:03:41", "68.180.228.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("46836", "3", "2017-01-17 14:41:27", "157.55.39.99", "7");
INSERT INTO `wp_rg_form_view` VALUES("46837", "15", "2017-01-17 14:41:29", "157.55.39.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("46838", "3", "2017-01-17 15:14:40", "66.249.79.144", "7");
INSERT INTO `wp_rg_form_view` VALUES("46839", "15", "2017-01-17 15:14:40", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("46840", "3", "2017-01-17 16:11:50", "50.92.249.152", "91");
INSERT INTO `wp_rg_form_view` VALUES("46841", "15", "2017-01-17 16:11:51", "50.92.249.152", "40");
INSERT INTO `wp_rg_form_view` VALUES("46842", "14", "2017-01-17 16:14:36", "50.92.249.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("46843", "3", "2017-01-17 17:11:07", "68.180.228.164", "36");
INSERT INTO `wp_rg_form_view` VALUES("46844", "15", "2017-01-17 17:46:26", "154.5.138.57", "15");
INSERT INTO `wp_rg_form_view` VALUES("46845", "3", "2017-01-17 18:09:08", "163.172.66.39", "345");
INSERT INTO `wp_rg_form_view` VALUES("46846", "15", "2017-01-17 18:09:08", "163.172.66.39", "155");
INSERT INTO `wp_rg_form_view` VALUES("46847", "2", "2017-01-17 18:11:03", "5.248.196.252", "4");
INSERT INTO `wp_rg_form_view` VALUES("46848", "14", "2017-01-17 18:50:37", "172.246.85.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("46849", "11", "2017-01-17 18:51:09", "85.148.42.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("46850", "3", "2017-01-17 19:06:22", "184.151.231.206", "42");
INSERT INTO `wp_rg_form_view` VALUES("46851", "15", "2017-01-17 19:06:23", "184.151.231.206", "18");
INSERT INTO `wp_rg_form_view` VALUES("46852", "14", "2017-01-17 19:50:28", "64.66.23.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("46853", "3", "2017-01-17 20:15:17", "68.180.228.164", "43");
INSERT INTO `wp_rg_form_view` VALUES("46854", "15", "2017-01-17 20:15:17", "68.180.228.164", "19");
INSERT INTO `wp_rg_form_view` VALUES("46855", "3", "2017-01-17 21:01:30", "131.137.245.206", "51");
INSERT INTO `wp_rg_form_view` VALUES("46856", "15", "2017-01-17 21:01:31", "131.137.245.206", "21");
INSERT INTO `wp_rg_form_view` VALUES("46857", "3", "2017-01-17 22:03:13", "207.46.13.182", "106");
INSERT INTO `wp_rg_form_view` VALUES("46858", "15", "2017-01-17 22:03:14", "207.46.13.182", "45");
INSERT INTO `wp_rg_form_view` VALUES("46859", "3", "2017-01-17 23:20:09", "88.99.27.172", "57");
INSERT INTO `wp_rg_form_view` VALUES("46860", "15", "2017-01-17 23:20:25", "88.99.27.172", "24");
INSERT INTO `wp_rg_form_view` VALUES("46861", "3", "2017-01-18 00:00:17", "163.172.66.20", "37");
INSERT INTO `wp_rg_form_view` VALUES("46862", "15", "2017-01-18 00:00:18", "163.172.66.20", "15");
INSERT INTO `wp_rg_form_view` VALUES("46863", "3", "2017-01-18 01:05:31", "199.21.99.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("46864", "15", "2017-01-18 01:05:32", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("46865", "3", "2017-01-18 02:00:10", "24.108.212.9", "35");
INSERT INTO `wp_rg_form_view` VALUES("46866", "15", "2017-01-18 02:00:10", "24.108.212.9", "15");
INSERT INTO `wp_rg_form_view` VALUES("46867", "3", "2017-01-18 03:04:25", "163.172.66.74", "1121");
INSERT INTO `wp_rg_form_view` VALUES("46868", "15", "2017-01-18 03:04:26", "163.172.66.74", "463");
INSERT INTO `wp_rg_form_view` VALUES("46869", "2", "2017-01-18 03:16:23", "216.146.135.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("46870", "11", "2017-01-18 03:16:54", "91.223.159.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("46871", "10", "2017-01-18 03:31:24", "157.55.39.99", "21");
INSERT INTO `wp_rg_form_view` VALUES("46872", "13", "2017-01-18 03:31:31", "157.55.39.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("46873", "9", "2017-01-18 03:33:07", "207.46.13.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("46874", "8", "2017-01-18 03:34:08", "207.46.13.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("46875", "7", "2017-01-18 03:34:19", "207.46.13.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("46876", "12", "2017-01-18 03:34:31", "207.46.13.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("46877", "3", "2017-01-18 04:08:12", "96.50.8.42", "50");
INSERT INTO `wp_rg_form_view` VALUES("46878", "15", "2017-01-18 04:08:12", "96.50.8.42", "21");
INSERT INTO `wp_rg_form_view` VALUES("46879", "11", "2017-01-18 04:57:41", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46880", "3", "2017-01-18 05:06:35", "68.180.228.164", "75");
INSERT INTO `wp_rg_form_view` VALUES("46881", "15", "2017-01-18 05:06:35", "68.180.228.164", "33");
INSERT INTO `wp_rg_form_view` VALUES("46882", "3", "2017-01-18 06:17:49", "68.180.228.164", "56");
INSERT INTO `wp_rg_form_view` VALUES("46883", "15", "2017-01-18 06:17:49", "68.180.228.164", "24");
INSERT INTO `wp_rg_form_view` VALUES("46884", "3", "2017-01-18 08:22:51", "163.172.65.222", "50");
INSERT INTO `wp_rg_form_view` VALUES("46885", "15", "2017-01-18 08:22:52", "163.172.65.222", "21");
INSERT INTO `wp_rg_form_view` VALUES("46886", "3", "2017-01-18 09:24:23", "68.180.228.164", "61");
INSERT INTO `wp_rg_form_view` VALUES("46887", "15", "2017-01-18 09:24:23", "68.180.228.164", "25");
INSERT INTO `wp_rg_form_view` VALUES("46888", "3", "2017-01-18 10:01:10", "207.46.13.84", "28");
INSERT INTO `wp_rg_form_view` VALUES("46889", "15", "2017-01-18 10:01:11", "207.46.13.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("46890", "3", "2017-01-18 11:05:24", "199.21.99.202", "64");
INSERT INTO `wp_rg_form_view` VALUES("46891", "15", "2017-01-18 11:05:24", "199.21.99.202", "27");
INSERT INTO `wp_rg_form_view` VALUES("46892", "2", "2017-01-18 12:03:37", "194.187.170.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("46893", "3", "2017-01-18 12:03:42", "194.187.170.141", "142");
INSERT INTO `wp_rg_form_view` VALUES("46894", "15", "2017-01-18 12:03:42", "194.187.170.141", "60");
INSERT INTO `wp_rg_form_view` VALUES("46895", "14", "2017-01-18 12:19:15", "125.22.105.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("46896", "10", "2017-01-18 12:30:46", "157.55.39.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46897", "11", "2017-01-18 13:08:13", "194.187.170.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("46898", "3", "2017-01-18 13:08:13", "194.187.170.141", "70");
INSERT INTO `wp_rg_form_view` VALUES("46899", "15", "2017-01-18 13:08:14", "194.187.170.141", "31");
INSERT INTO `wp_rg_form_view` VALUES("46900", "3", "2017-01-18 14:17:48", "68.180.228.164", "28");
INSERT INTO `wp_rg_form_view` VALUES("46901", "15", "2017-01-18 14:17:48", "68.180.228.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("46902", "3", "2017-01-18 15:09:54", "68.180.228.164", "29");
INSERT INTO `wp_rg_form_view` VALUES("46903", "15", "2017-01-18 15:09:55", "68.180.228.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("46904", "10", "2017-01-18 15:46:35", "157.55.39.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46905", "3", "2017-01-18 16:08:21", "163.172.66.98", "44");
INSERT INTO `wp_rg_form_view` VALUES("46906", "15", "2017-01-18 16:08:21", "163.172.66.98", "18");
INSERT INTO `wp_rg_form_view` VALUES("46907", "6", "2017-01-18 16:08:43", "202.46.54.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("46908", "15", "2017-01-18 17:47:45", "66.249.79.144", "7");
INSERT INTO `wp_rg_form_view` VALUES("46909", "3", "2017-01-18 17:47:47", "66.249.79.144", "15");
INSERT INTO `wp_rg_form_view` VALUES("46910", "3", "2017-01-18 18:03:31", "207.46.13.84", "21");
INSERT INTO `wp_rg_form_view` VALUES("46911", "15", "2017-01-18 18:03:32", "207.46.13.84", "10");
INSERT INTO `wp_rg_form_view` VALUES("46912", "3", "2017-01-18 19:03:06", "144.76.96.86", "130");
INSERT INTO `wp_rg_form_view` VALUES("46913", "15", "2017-01-18 19:03:08", "144.76.96.86", "41");
INSERT INTO `wp_rg_form_view` VALUES("46914", "3", "2017-01-18 20:01:03", "157.55.39.99", "50");
INSERT INTO `wp_rg_form_view` VALUES("46915", "15", "2017-01-18 20:01:04", "157.55.39.99", "21");
INSERT INTO `wp_rg_form_view` VALUES("46916", "13", "2017-01-18 20:53:10", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46917", "3", "2017-01-18 21:44:37", "66.249.79.140", "15");
INSERT INTO `wp_rg_form_view` VALUES("46918", "15", "2017-01-18 21:44:38", "66.249.79.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("46919", "3", "2017-01-18 22:14:32", "194.187.170.146", "29");
INSERT INTO `wp_rg_form_view` VALUES("46920", "15", "2017-01-18 22:14:39", "194.187.170.146", "12");
INSERT INTO `wp_rg_form_view` VALUES("46921", "10", "2017-01-18 22:42:16", "194.187.170.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("46922", "3", "2017-01-18 23:00:31", "70.67.51.254", "58");
INSERT INTO `wp_rg_form_view` VALUES("46923", "15", "2017-01-18 23:00:31", "70.67.51.254", "24");
INSERT INTO `wp_rg_form_view` VALUES("46924", "13", "2017-01-18 23:26:53", "194.187.170.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("46925", "10", "2017-01-18 23:35:21", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46926", "3", "2017-01-19 00:00:49", "184.69.99.230", "28");
INSERT INTO `wp_rg_form_view` VALUES("46927", "15", "2017-01-19 00:00:49", "184.69.99.230", "12");
INSERT INTO `wp_rg_form_view` VALUES("46928", "3", "2017-01-19 01:09:01", "207.46.13.84", "285");
INSERT INTO `wp_rg_form_view` VALUES("46929", "15", "2017-01-19 01:09:01", "207.46.13.84", "117");
INSERT INTO `wp_rg_form_view` VALUES("46930", "2", "2017-01-19 01:14:16", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("46931", "11", "2017-01-19 01:15:04", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("46932", "3", "2017-01-19 02:11:40", "66.249.79.140", "36");
INSERT INTO `wp_rg_form_view` VALUES("46933", "15", "2017-01-19 02:11:42", "66.249.79.140", "15");
INSERT INTO `wp_rg_form_view` VALUES("46934", "3", "2017-01-19 03:22:09", "163.172.64.217", "85");
INSERT INTO `wp_rg_form_view` VALUES("46935", "15", "2017-01-19 03:22:09", "163.172.64.217", "36");
INSERT INTO `wp_rg_form_view` VALUES("46936", "14", "2017-01-19 03:45:04", "24.69.75.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("46937", "3", "2017-01-19 04:21:03", "77.75.76.170", "22");
INSERT INTO `wp_rg_form_view` VALUES("46938", "15", "2017-01-19 04:21:03", "77.75.76.170", "10");
INSERT INTO `wp_rg_form_view` VALUES("46939", "3", "2017-01-19 05:02:27", "68.180.228.164", "35");
INSERT INTO `wp_rg_form_view` VALUES("46940", "15", "2017-01-19 05:02:27", "68.180.228.164", "15");
INSERT INTO `wp_rg_form_view` VALUES("46941", "3", "2017-01-19 06:08:01", "24.68.113.67", "92");
INSERT INTO `wp_rg_form_view` VALUES("46942", "15", "2017-01-19 06:08:01", "24.68.113.67", "40");
INSERT INTO `wp_rg_form_view` VALUES("46943", "3", "2017-01-19 07:20:53", "202.46.51.176", "63");
INSERT INTO `wp_rg_form_view` VALUES("46944", "15", "2017-01-19 07:20:56", "202.46.51.176", "27");
INSERT INTO `wp_rg_form_view` VALUES("46945", "3", "2017-01-19 08:31:45", "194.187.170.126", "43");
INSERT INTO `wp_rg_form_view` VALUES("46946", "15", "2017-01-19 08:31:47", "194.187.170.126", "18");
INSERT INTO `wp_rg_form_view` VALUES("46947", "3", "2017-01-19 09:20:53", "194.187.170.126", "27");
INSERT INTO `wp_rg_form_view` VALUES("46948", "15", "2017-01-19 09:20:53", "194.187.170.126", "13");
INSERT INTO `wp_rg_form_view` VALUES("46949", "10", "2017-01-19 09:46:28", "163.172.64.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("46950", "3", "2017-01-19 10:44:04", "157.55.39.236", "20");
INSERT INTO `wp_rg_form_view` VALUES("46951", "15", "2017-01-19 10:44:13", "157.55.39.236", "10");
INSERT INTO `wp_rg_form_view` VALUES("46952", "3", "2017-01-19 11:00:59", "66.249.79.148", "85");
INSERT INTO `wp_rg_form_view` VALUES("46953", "15", "2017-01-19 11:00:59", "66.249.79.148", "44");
INSERT INTO `wp_rg_form_view` VALUES("46954", "3", "2017-01-19 12:27:21", "66.249.79.140", "48");
INSERT INTO `wp_rg_form_view` VALUES("46955", "15", "2017-01-19 12:27:22", "66.249.79.140", "18");
INSERT INTO `wp_rg_form_view` VALUES("46956", "10", "2017-01-19 12:34:09", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("46957", "14", "2017-01-19 12:34:18", "104.223.28.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("46958", "3", "2017-01-19 13:11:00", "68.180.228.164", "26");
INSERT INTO `wp_rg_form_view` VALUES("46959", "15", "2017-01-19 13:11:02", "68.180.228.164", "9");
INSERT INTO `wp_rg_form_view` VALUES("46960", "3", "2017-01-19 14:09:45", "207.46.13.1", "111");
INSERT INTO `wp_rg_form_view` VALUES("46961", "15", "2017-01-19 14:09:46", "207.46.13.1", "45");
INSERT INTO `wp_rg_form_view` VALUES("46962", "9", "2017-01-19 14:36:59", "157.55.39.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46963", "3", "2017-01-19 15:04:53", "66.220.158.103", "59");
INSERT INTO `wp_rg_form_view` VALUES("46964", "15", "2017-01-19 15:04:53", "66.220.158.103", "25");
INSERT INTO `wp_rg_form_view` VALUES("46965", "3", "2017-01-19 16:00:40", "142.31.227.169", "72");
INSERT INTO `wp_rg_form_view` VALUES("46966", "15", "2017-01-19 16:00:40", "142.31.227.169", "30");
INSERT INTO `wp_rg_form_view` VALUES("46967", "10", "2017-01-19 16:46:32", "157.55.39.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("46968", "3", "2017-01-19 17:22:02", "24.108.184.241", "22");
INSERT INTO `wp_rg_form_view` VALUES("46969", "15", "2017-01-19 17:22:10", "24.108.184.241", "9");
INSERT INTO `wp_rg_form_view` VALUES("46970", "10", "2017-01-19 17:34:55", "46.165.197.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("46971", "14", "2017-01-19 18:00:57", "123.30.130.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("46972", "3", "2017-01-19 18:00:57", "123.30.130.215", "90");
INSERT INTO `wp_rg_form_view` VALUES("46973", "15", "2017-01-19 18:00:57", "123.30.130.215", "36");
INSERT INTO `wp_rg_form_view` VALUES("46974", "2", "2017-01-19 18:27:19", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("46975", "3", "2017-01-19 19:17:37", "24.108.184.241", "64");
INSERT INTO `wp_rg_form_view` VALUES("46976", "15", "2017-01-19 19:17:39", "24.108.184.241", "24");
INSERT INTO `wp_rg_form_view` VALUES("46977", "10", "2017-01-19 19:45:40", "207.46.13.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("46978", "3", "2017-01-19 20:07:33", "66.249.79.144", "71");
INSERT INTO `wp_rg_form_view` VALUES("46979", "15", "2017-01-19 20:07:33", "66.249.79.144", "30");
INSERT INTO `wp_rg_form_view` VALUES("46980", "3", "2017-01-19 21:24:29", "158.222.12.219", "38");
INSERT INTO `wp_rg_form_view` VALUES("46981", "15", "2017-01-19 21:24:49", "158.222.12.219", "15");
INSERT INTO `wp_rg_form_view` VALUES("46982", "3", "2017-01-19 22:08:26", "207.194.133.9", "35");
INSERT INTO `wp_rg_form_view` VALUES("46983", "15", "2017-01-19 22:08:31", "207.194.133.9", "15");
INSERT INTO `wp_rg_form_view` VALUES("46984", "10", "2017-01-19 22:13:33", "157.55.39.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46985", "14", "2017-01-19 22:47:45", "144.76.96.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("46986", "3", "2017-01-19 23:16:24", "207.46.13.180", "87");
INSERT INTO `wp_rg_form_view` VALUES("46987", "15", "2017-01-19 23:16:25", "207.46.13.180", "36");
INSERT INTO `wp_rg_form_view` VALUES("46988", "3", "2017-01-20 00:04:31", "207.46.13.180", "44");
INSERT INTO `wp_rg_form_view` VALUES("46989", "15", "2017-01-20 00:04:31", "207.46.13.180", "21");
INSERT INTO `wp_rg_form_view` VALUES("46990", "3", "2017-01-20 01:39:42", "146.185.223.111", "49");
INSERT INTO `wp_rg_form_view` VALUES("46991", "15", "2017-01-20 01:39:43", "146.185.223.111", "21");
INSERT INTO `wp_rg_form_view` VALUES("46992", "13", "2017-01-20 01:45:50", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("46993", "3", "2017-01-20 02:07:31", "96.50.26.169", "64");
INSERT INTO `wp_rg_form_view` VALUES("46994", "15", "2017-01-20 02:07:32", "96.50.26.169", "27");
INSERT INTO `wp_rg_form_view` VALUES("46995", "14", "2017-01-20 02:11:32", "154.20.34.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("46996", "10", "2017-01-20 02:54:10", "157.55.39.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("46997", "3", "2017-01-20 03:06:45", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("46998", "15", "2017-01-20 03:06:46", "66.249.79.144", "9");
INSERT INTO `wp_rg_form_view` VALUES("46999", "3", "2017-01-20 04:12:17", "207.46.13.1", "35");
INSERT INTO `wp_rg_form_view` VALUES("47000", "15", "2017-01-20 04:12:19", "207.46.13.1", "15");
INSERT INTO `wp_rg_form_view` VALUES("47001", "14", "2017-01-20 04:34:55", "194.187.170.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("47002", "3", "2017-01-20 05:01:36", "207.46.13.1", "50");
INSERT INTO `wp_rg_form_view` VALUES("47003", "15", "2017-01-20 05:01:37", "207.46.13.1", "21");
INSERT INTO `wp_rg_form_view` VALUES("47004", "10", "2017-01-20 05:03:44", "194.187.170.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("47005", "13", "2017-01-20 05:16:52", "194.187.170.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("47006", "9", "2017-01-20 05:36:11", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("47007", "6", "2017-01-20 06:07:40", "202.46.51.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("47008", "3", "2017-01-20 06:07:43", "202.46.51.158", "144");
INSERT INTO `wp_rg_form_view` VALUES("47009", "15", "2017-01-20 06:07:43", "202.46.51.158", "62");
INSERT INTO `wp_rg_form_view` VALUES("47010", "14", "2017-01-20 06:16:35", "64.180.75.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("47011", "3", "2017-01-20 07:10:06", "66.249.79.144", "35");
INSERT INTO `wp_rg_form_view` VALUES("47012", "15", "2017-01-20 07:10:07", "66.249.79.144", "15");
INSERT INTO `wp_rg_form_view` VALUES("47013", "7", "2017-01-20 08:31:29", "134.249.50.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("47014", "3", "2017-01-20 08:31:31", "134.249.50.136", "14");
INSERT INTO `wp_rg_form_view` VALUES("47015", "15", "2017-01-20 08:31:31", "134.249.50.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("47016", "3", "2017-01-20 09:12:09", "144.76.96.86", "43");
INSERT INTO `wp_rg_form_view` VALUES("47017", "15", "2017-01-20 09:12:13", "144.76.96.86", "18");
INSERT INTO `wp_rg_form_view` VALUES("47018", "5", "2017-01-20 09:32:14", "157.55.39.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("47019", "3", "2017-01-20 10:15:07", "66.249.79.156", "15");
INSERT INTO `wp_rg_form_view` VALUES("47020", "15", "2017-01-20 10:15:08", "66.249.79.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("47021", "3", "2017-01-20 11:16:02", "157.55.39.99", "14");
INSERT INTO `wp_rg_form_view` VALUES("47022", "15", "2017-01-20 11:16:02", "157.55.39.99", "6");
INSERT INTO `wp_rg_form_view` VALUES("47023", "14", "2017-01-20 11:24:15", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("47024", "3", "2017-01-20 12:07:21", "157.55.39.99", "36");
INSERT INTO `wp_rg_form_view` VALUES("47025", "15", "2017-01-20 12:07:22", "157.55.39.99", "16");
INSERT INTO `wp_rg_form_view` VALUES("47026", "2", "2017-01-20 12:27:35", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("47027", "10", "2017-01-20 13:02:43", "77.75.77.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("47028", "3", "2017-01-20 13:02:43", "77.75.77.72", "50");
INSERT INTO `wp_rg_form_view` VALUES("47029", "15", "2017-01-20 13:02:43", "77.75.77.72", "21");
INSERT INTO `wp_rg_form_view` VALUES("47030", "3", "2017-01-20 14:21:31", "220.181.108.77", "42");
INSERT INTO `wp_rg_form_view` VALUES("47031", "15", "2017-01-20 14:21:31", "220.181.108.77", "18");
INSERT INTO `wp_rg_form_view` VALUES("47032", "14", "2017-01-20 14:47:13", "104.223.89.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("47033", "5", "2017-01-20 15:20:04", "104.223.89.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("47034", "3", "2017-01-20 15:20:05", "104.223.89.212", "28");
INSERT INTO `wp_rg_form_view` VALUES("47035", "15", "2017-01-20 15:20:05", "104.223.89.212", "12");
INSERT INTO `wp_rg_form_view` VALUES("47036", "3", "2017-01-20 16:26:22", "207.194.133.9", "134");
INSERT INTO `wp_rg_form_view` VALUES("47037", "15", "2017-01-20 16:26:25", "207.194.133.9", "57");
INSERT INTO `wp_rg_form_view` VALUES("47038", "3", "2017-01-20 17:04:19", "207.46.13.1", "214");
INSERT INTO `wp_rg_form_view` VALUES("47039", "15", "2017-01-20 17:04:19", "207.46.13.1", "91");
INSERT INTO `wp_rg_form_view` VALUES("47040", "2", "2017-01-20 17:04:37", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("47041", "11", "2017-01-20 17:05:28", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("47042", "3", "2017-01-20 18:11:09", "207.46.13.180", "50");
INSERT INTO `wp_rg_form_view` VALUES("47043", "15", "2017-01-20 18:11:10", "207.46.13.180", "21");
INSERT INTO `wp_rg_form_view` VALUES("47044", "10", "2017-01-20 18:32:00", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("47045", "14", "2017-01-20 18:51:08", "194.187.170.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("47046", "3", "2017-01-20 19:02:21", "199.21.99.202", "126");
INSERT INTO `wp_rg_form_view` VALUES("47047", "15", "2017-01-20 19:02:21", "199.21.99.202", "54");
INSERT INTO `wp_rg_form_view` VALUES("47048", "13", "2017-01-20 19:55:26", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("47049", "11", "2017-01-20 19:59:09", "173.167.63.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("47050", "3", "2017-01-20 20:00:08", "173.167.63.209", "225");
INSERT INTO `wp_rg_form_view` VALUES("47051", "15", "2017-01-20 20:00:08", "173.167.63.209", "97");
INSERT INTO `wp_rg_form_view` VALUES("47052", "2", "2017-01-20 20:00:59", "173.167.63.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("47053", "10", "2017-01-20 20:36:46", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("47054", "3", "2017-01-20 21:30:01", "96.54.46.28", "40");
INSERT INTO `wp_rg_form_view` VALUES("47055", "15", "2017-01-20 21:30:02", "96.54.46.28", "15");
INSERT INTO `wp_rg_form_view` VALUES("47056", "10", "2017-01-20 21:33:32", "157.55.39.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("47057", "3", "2017-01-20 22:03:19", "207.46.13.1", "79");
INSERT INTO `wp_rg_form_view` VALUES("47058", "15", "2017-01-20 22:03:19", "207.46.13.1", "33");
INSERT INTO `wp_rg_form_view` VALUES("47059", "3", "2017-01-20 23:04:04", "207.216.0.206", "50");
INSERT INTO `wp_rg_form_view` VALUES("47060", "15", "2017-01-20 23:04:04", "207.216.0.206", "21");
INSERT INTO `wp_rg_form_view` VALUES("47061", "3", "2017-01-21 00:27:02", "68.180.228.164", "1022");
INSERT INTO `wp_rg_form_view` VALUES("47062", "15", "2017-01-21 00:27:02", "68.180.228.164", "451");
INSERT INTO `wp_rg_form_view` VALUES("47063", "11", "2017-01-21 00:44:42", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47064", "2", "2017-01-21 00:44:46", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47065", "14", "2017-01-21 00:47:11", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47066", "13", "2017-01-21 00:53:22", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47067", "10", "2017-01-21 00:53:27", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("47068", "8", "2017-01-21 00:58:38", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47069", "9", "2017-01-21 00:58:48", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47070", "3", "2017-01-21 01:00:04", "5.9.98.130", "3073");
INSERT INTO `wp_rg_form_view` VALUES("47071", "15", "2017-01-21 01:00:05", "5.9.98.130", "1333");
INSERT INTO `wp_rg_form_view` VALUES("47072", "6", "2017-01-21 01:00:08", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47073", "8", "2017-01-21 01:04:00", "207.46.13.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("47074", "3", "2017-01-21 02:00:02", "5.9.98.130", "2898");
INSERT INTO `wp_rg_form_view` VALUES("47075", "15", "2017-01-21 02:00:03", "5.9.98.130", "1350");
INSERT INTO `wp_rg_form_view` VALUES("47076", "2", "2017-01-21 02:48:23", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47077", "3", "2017-01-21 03:00:00", "5.9.98.130", "4006");
INSERT INTO `wp_rg_form_view` VALUES("47078", "15", "2017-01-21 03:00:01", "5.9.98.130", "1920");
INSERT INTO `wp_rg_form_view` VALUES("47079", "14", "2017-01-21 03:07:01", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47080", "13", "2017-01-21 03:12:31", "136.243.36.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("47081", "6", "2017-01-21 03:20:05", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47082", "9", "2017-01-21 03:20:17", "136.243.36.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("47083", "3", "2017-01-21 04:00:00", "5.9.98.130", "2103");
INSERT INTO `wp_rg_form_view` VALUES("47084", "15", "2017-01-21 04:00:02", "5.9.98.130", "819");
INSERT INTO `wp_rg_form_view` VALUES("47085", "14", "2017-01-21 04:13:04", "70.66.186.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("47086", "3", "2017-01-21 05:00:03", "5.9.98.130", "4749");
INSERT INTO `wp_rg_form_view` VALUES("47087", "15", "2017-01-21 05:00:04", "5.9.98.130", "1765");
INSERT INTO `wp_rg_form_view` VALUES("47088", "10", "2017-01-21 05:16:31", "194.187.170.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("47089", "13", "2017-01-21 05:28:35", "194.187.170.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("47090", "3", "2017-01-21 06:00:00", "5.9.98.130", "2535");
INSERT INTO `wp_rg_form_view` VALUES("47091", "15", "2017-01-21 06:00:01", "5.9.98.130", "1939");
INSERT INTO `wp_rg_form_view` VALUES("47092", "3", "2017-01-21 07:00:10", "77.75.78.168", "1144");
INSERT INTO `wp_rg_form_view` VALUES("47093", "15", "2017-01-21 07:00:15", "77.75.78.168", "216");
INSERT INTO `wp_rg_form_view` VALUES("47094", "10", "2017-01-21 07:03:45", "207.46.13.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("47095", "3", "2017-01-21 08:16:23", "207.46.13.187", "2927");
INSERT INTO `wp_rg_form_view` VALUES("47096", "15", "2017-01-21 08:16:24", "207.46.13.187", "1254");
INSERT INTO `wp_rg_form_view` VALUES("47097", "11", "2017-01-21 08:19:14", "77.75.78.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("47098", "14", "2017-01-21 08:41:23", "69.16.147.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("47099", "3", "2017-01-21 09:00:02", "5.9.98.130", "4129");
INSERT INTO `wp_rg_form_view` VALUES("47100", "15", "2017-01-21 09:00:03", "5.9.98.130", "1690");
INSERT INTO `wp_rg_form_view` VALUES("47101", "6", "2017-01-21 09:19:07", "202.46.54.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("47102", "12", "2017-01-21 09:50:14", "163.172.66.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("47103", "5", "2017-01-21 09:55:56", "104.223.89.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("47104", "3", "2017-01-21 10:00:00", "5.9.98.130", "4535");
INSERT INTO `wp_rg_form_view` VALUES("47105", "15", "2017-01-21 10:00:02", "5.9.98.130", "1775");
INSERT INTO `wp_rg_form_view` VALUES("47106", "11", "2017-01-21 10:32:03", "50.250.216.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("47107", "2", "2017-01-21 10:36:10", "50.250.216.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("47108", "10", "2017-01-21 10:51:37", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("47109", "3", "2017-01-21 11:00:03", "5.9.98.130", "4549");
INSERT INTO `wp_rg_form_view` VALUES("47110", "15", "2017-01-21 11:00:06", "5.9.98.130", "2036");
INSERT INTO `wp_rg_form_view` VALUES("47111", "6", "2017-01-21 11:53:17", "46.229.168.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("47112", "14", "2017-01-21 11:53:48", "46.229.168.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("47113", "10", "2017-01-21 11:54:53", "46.229.168.66", "9");
INSERT INTO `wp_rg_form_view` VALUES("47114", "15", "2017-01-21 12:00:01", "5.9.98.130", "2406");
INSERT INTO `wp_rg_form_view` VALUES("47115", "3", "2017-01-21 12:00:03", "5.9.98.130", "2540");
INSERT INTO `wp_rg_form_view` VALUES("47116", "5", "2017-01-21 12:07:05", "77.75.79.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("47117", "3", "2017-01-21 13:03:12", "77.75.78.163", "2225");
INSERT INTO `wp_rg_form_view` VALUES("47118", "15", "2017-01-21 13:03:14", "77.75.78.163", "405");
INSERT INTO `wp_rg_form_view` VALUES("47119", "13", "2017-01-21 13:39:08", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("47120", "3", "2017-01-21 14:01:17", "77.75.79.62", "51");
INSERT INTO `wp_rg_form_view` VALUES("47121", "15", "2017-01-21 14:01:19", "77.75.79.62", "21");
INSERT INTO `wp_rg_form_view` VALUES("47122", "3", "2017-01-21 15:20:50", "194.187.170.142", "381");
INSERT INTO `wp_rg_form_view` VALUES("47123", "15", "2017-01-21 15:20:50", "194.187.170.142", "162");
INSERT INTO `wp_rg_form_view` VALUES("47124", "3", "2017-01-21 16:00:04", "5.9.98.130", "3768");
INSERT INTO `wp_rg_form_view` VALUES("47125", "15", "2017-01-21 16:00:04", "5.9.98.130", "1614");
INSERT INTO `wp_rg_form_view` VALUES("47126", "14", "2017-01-21 16:21:21", "191.96.137.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("47127", "10", "2017-01-21 16:23:27", "207.46.13.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("47128", "12", "2017-01-21 16:40:09", "207.46.13.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("47129", "9", "2017-01-21 16:52:39", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47130", "3", "2017-01-21 17:14:03", "207.46.13.62", "51");
INSERT INTO `wp_rg_form_view` VALUES("47131", "15", "2017-01-21 17:14:06", "207.46.13.62", "21");
INSERT INTO `wp_rg_form_view` VALUES("47132", "3", "2017-01-21 18:01:22", "65.95.251.239", "276");
INSERT INTO `wp_rg_form_view` VALUES("47133", "15", "2017-01-21 18:01:23", "65.95.251.239", "118");
INSERT INTO `wp_rg_form_view` VALUES("47134", "11", "2017-01-21 18:45:58", "164.77.43.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("47135", "2", "2017-01-21 18:47:09", "164.77.43.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("47136", "3", "2017-01-21 19:00:06", "136.243.36.94", "244");
INSERT INTO `wp_rg_form_view` VALUES("47137", "15", "2017-01-21 19:00:06", "136.243.36.94", "99");
INSERT INTO `wp_rg_form_view` VALUES("47138", "8", "2017-01-21 19:05:58", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47139", "10", "2017-01-21 19:07:02", "136.243.36.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("47140", "3", "2017-01-21 20:10:56", "66.249.79.144", "420");
INSERT INTO `wp_rg_form_view` VALUES("47141", "15", "2017-01-21 20:10:56", "66.249.79.144", "180");
INSERT INTO `wp_rg_form_view` VALUES("47142", "3", "2017-01-21 21:02:59", "157.55.39.236", "48");
INSERT INTO `wp_rg_form_view` VALUES("47143", "15", "2017-01-21 21:03:00", "157.55.39.236", "18");
INSERT INTO `wp_rg_form_view` VALUES("47144", "14", "2017-01-21 21:35:35", "107.173.71.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("47145", "3", "2017-01-21 22:06:42", "50.92.30.16", "78");
INSERT INTO `wp_rg_form_view` VALUES("47146", "15", "2017-01-21 22:06:43", "50.92.30.16", "33");
INSERT INTO `wp_rg_form_view` VALUES("47147", "6", "2017-01-21 22:10:17", "163.172.65.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("47148", "3", "2017-01-21 23:12:26", "54.161.224.41", "246");
INSERT INTO `wp_rg_form_view` VALUES("47149", "15", "2017-01-21 23:12:26", "54.161.224.41", "105");
INSERT INTO `wp_rg_form_view` VALUES("47150", "11", "2017-01-21 23:32:19", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("47151", "2", "2017-01-21 23:34:06", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("47152", "3", "2017-01-22 00:49:23", "194.187.170.101", "8");
INSERT INTO `wp_rg_form_view` VALUES("47153", "15", "2017-01-22 00:49:24", "194.187.170.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("47154", "3", "2017-01-22 01:12:20", "66.249.79.144", "79");
INSERT INTO `wp_rg_form_view` VALUES("47155", "15", "2017-01-22 01:12:20", "66.249.79.144", "33");
INSERT INTO `wp_rg_form_view` VALUES("47156", "10", "2017-01-22 01:56:44", "40.77.167.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("47157", "10", "2017-01-22 02:29:12", "194.187.170.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("47158", "3", "2017-01-22 02:29:14", "194.187.170.101", "35");
INSERT INTO `wp_rg_form_view` VALUES("47159", "15", "2017-01-22 02:29:14", "194.187.170.101", "15");
INSERT INTO `wp_rg_form_view` VALUES("47160", "14", "2017-01-22 03:35:58", "107.150.75.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("47161", "3", "2017-01-22 03:36:00", "107.150.75.223", "29");
INSERT INTO `wp_rg_form_view` VALUES("47162", "15", "2017-01-22 03:36:00", "107.150.75.223", "12");
INSERT INTO `wp_rg_form_view` VALUES("47163", "10", "2017-01-22 04:21:13", "207.46.13.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("47164", "3", "2017-01-22 04:21:16", "207.46.13.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("47165", "15", "2017-01-22 04:21:17", "207.46.13.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("47166", "14", "2017-01-22 05:03:14", "158.222.6.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("47167", "3", "2017-01-22 05:03:25", "158.222.6.196", "49");
INSERT INTO `wp_rg_form_view` VALUES("47168", "15", "2017-01-22 05:03:25", "158.222.6.196", "22");
INSERT INTO `wp_rg_form_view` VALUES("47169", "3", "2017-01-22 06:01:46", "163.172.66.172", "84");
INSERT INTO `wp_rg_form_view` VALUES("47170", "15", "2017-01-22 06:01:46", "163.172.66.172", "36");
INSERT INTO `wp_rg_form_view` VALUES("47171", "3", "2017-01-22 07:29:58", "54.174.128.209", "20");
INSERT INTO `wp_rg_form_view` VALUES("47172", "3", "2017-01-22 07:29:58", "54.174.128.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("47173", "15", "2017-01-22 07:30:41", "54.174.128.209", "9");
INSERT INTO `wp_rg_form_view` VALUES("47174", "3", "2017-01-22 08:29:27", "199.21.99.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("47175", "15", "2017-01-22 08:29:27", "199.21.99.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("47176", "3", "2017-01-22 09:02:34", "5.9.145.132", "29");
INSERT INTO `wp_rg_form_view` VALUES("47177", "15", "2017-01-22 09:02:35", "5.9.145.132", "12");
INSERT INTO `wp_rg_form_view` VALUES("47178", "15", "2017-01-22 10:07:11", "163.172.66.20", "10");
INSERT INTO `wp_rg_form_view` VALUES("47179", "3", "2017-01-22 10:07:13", "163.172.66.20", "28");
INSERT INTO `wp_rg_form_view` VALUES("47180", "13", "2017-01-22 10:07:13", "163.172.66.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("47181", "10", "2017-01-22 10:07:13", "163.172.66.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("47182", "10", "2017-01-22 11:26:02", "77.75.77.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("47183", "3", "2017-01-22 11:26:04", "77.75.77.72", "7");
INSERT INTO `wp_rg_form_view` VALUES("47184", "15", "2017-01-22 11:26:04", "77.75.77.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("47185", "3", "2017-01-22 12:23:07", "40.77.167.34", "35");
INSERT INTO `wp_rg_form_view` VALUES("47186", "15", "2017-01-22 12:23:08", "40.77.167.34", "15");
INSERT INTO `wp_rg_form_view` VALUES("47187", "12", "2017-01-22 13:07:24", "194.187.170.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("47188", "3", "2017-01-22 13:07:24", "194.187.170.131", "21");
INSERT INTO `wp_rg_form_view` VALUES("47189", "15", "2017-01-22 13:07:24", "194.187.170.131", "9");
INSERT INTO `wp_rg_form_view` VALUES("47190", "10", "2017-01-22 13:42:07", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47191", "3", "2017-01-22 14:13:04", "157.55.39.25", "35");
INSERT INTO `wp_rg_form_view` VALUES("47192", "15", "2017-01-22 14:13:05", "157.55.39.25", "15");
INSERT INTO `wp_rg_form_view` VALUES("47193", "8", "2017-01-22 14:31:48", "163.172.64.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("47194", "3", "2017-01-22 15:17:03", "68.180.228.164", "56");
INSERT INTO `wp_rg_form_view` VALUES("47195", "15", "2017-01-22 15:22:21", "40.77.167.64", "21");
INSERT INTO `wp_rg_form_view` VALUES("47196", "3", "2017-01-22 16:42:44", "68.180.228.164", "8");
INSERT INTO `wp_rg_form_view` VALUES("47197", "15", "2017-01-22 16:42:47", "68.180.228.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("47198", "3", "2017-01-22 17:24:41", "163.172.65.127", "44");
INSERT INTO `wp_rg_form_view` VALUES("47199", "15", "2017-01-22 17:24:44", "163.172.65.127", "18");
INSERT INTO `wp_rg_form_view` VALUES("47200", "3", "2017-01-22 18:13:33", "77.75.79.119", "33");
INSERT INTO `wp_rg_form_view` VALUES("47201", "15", "2017-01-22 18:13:34", "77.75.79.119", "12");
INSERT INTO `wp_rg_form_view` VALUES("47202", "3", "2017-01-22 19:09:14", "77.75.76.170", "21");
INSERT INTO `wp_rg_form_view` VALUES("47203", "15", "2017-01-22 19:09:15", "77.75.76.170", "9");
INSERT INTO `wp_rg_form_view` VALUES("47204", "10", "2017-01-22 19:47:59", "40.77.167.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("47205", "3", "2017-01-22 20:33:37", "146.185.134.39", "34");
INSERT INTO `wp_rg_form_view` VALUES("47206", "15", "2017-01-22 20:33:40", "146.185.134.39", "12");
INSERT INTO `wp_rg_form_view` VALUES("47207", "3", "2017-01-22 21:09:11", "202.46.56.97", "119");
INSERT INTO `wp_rg_form_view` VALUES("47208", "15", "2017-01-22 21:09:14", "202.46.56.97", "46");
INSERT INTO `wp_rg_form_view` VALUES("47209", "3", "2017-01-22 22:09:11", "77.75.78.168", "36");
INSERT INTO `wp_rg_form_view` VALUES("47210", "15", "2017-01-22 22:09:11", "77.75.78.168", "15");
INSERT INTO `wp_rg_form_view` VALUES("47211", "3", "2017-01-22 23:24:40", "202.46.49.139", "36");
INSERT INTO `wp_rg_form_view` VALUES("47212", "15", "2017-01-22 23:24:40", "202.46.49.139", "15");
INSERT INTO `wp_rg_form_view` VALUES("47213", "14", "2017-01-22 23:48:54", "191.101.113.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("47214", "3", "2017-01-23 00:02:02", "40.77.167.64", "28");
INSERT INTO `wp_rg_form_view` VALUES("47215", "15", "2017-01-23 00:02:02", "40.77.167.64", "12");
INSERT INTO `wp_rg_form_view` VALUES("47216", "3", "2017-01-23 01:05:02", "40.77.167.29", "42");
INSERT INTO `wp_rg_form_view` VALUES("47217", "15", "2017-01-23 01:05:03", "40.77.167.29", "18");
INSERT INTO `wp_rg_form_view` VALUES("47218", "3", "2017-01-23 02:01:10", "40.77.167.29", "42");
INSERT INTO `wp_rg_form_view` VALUES("47219", "15", "2017-01-23 02:01:10", "40.77.167.29", "18");
INSERT INTO `wp_rg_form_view` VALUES("47220", "3", "2017-01-23 03:07:43", "24.69.153.40", "42");
INSERT INTO `wp_rg_form_view` VALUES("47221", "15", "2017-01-23 03:07:43", "24.69.153.40", "18");
INSERT INTO `wp_rg_form_view` VALUES("47222", "9", "2017-01-23 03:43:49", "207.46.13.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("47223", "3", "2017-01-23 04:04:45", "40.77.167.29", "30");
INSERT INTO `wp_rg_form_view` VALUES("47224", "15", "2017-01-23 04:04:45", "40.77.167.29", "12");
INSERT INTO `wp_rg_form_view` VALUES("47225", "15", "2017-01-23 05:56:47", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("47226", "3", "2017-01-23 06:32:25", "40.77.167.22", "7");
INSERT INTO `wp_rg_form_view` VALUES("47227", "15", "2017-01-23 06:32:27", "40.77.167.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("47228", "15", "2017-01-23 07:24:06", "194.187.170.114", "29");
INSERT INTO `wp_rg_form_view` VALUES("47229", "3", "2017-01-23 07:24:12", "194.187.170.114", "49");
INSERT INTO `wp_rg_form_view` VALUES("47230", "3", "2017-01-23 08:09:45", "194.187.170.114", "28");
INSERT INTO `wp_rg_form_view` VALUES("47231", "15", "2017-01-23 08:09:45", "194.187.170.114", "12");
INSERT INTO `wp_rg_form_view` VALUES("47232", "3", "2017-01-23 09:03:39", "194.187.170.114", "21");
INSERT INTO `wp_rg_form_view` VALUES("47233", "15", "2017-01-23 09:03:40", "194.187.170.114", "9");
INSERT INTO `wp_rg_form_view` VALUES("47234", "3", "2017-01-23 10:18:10", "50.245.196.61", "148");
INSERT INTO `wp_rg_form_view` VALUES("47235", "15", "2017-01-23 10:18:11", "50.245.196.61", "63");
INSERT INTO `wp_rg_form_view` VALUES("47236", "11", "2017-01-23 10:18:30", "50.245.196.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("47237", "2", "2017-01-23 10:26:27", "50.245.196.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("47238", "3", "2017-01-23 11:13:54", "163.172.66.23", "212");
INSERT INTO `wp_rg_form_view` VALUES("47239", "15", "2017-01-23 11:13:57", "163.172.66.23", "90");
INSERT INTO `wp_rg_form_view` VALUES("47240", "10", "2017-01-23 12:15:14", "40.77.167.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("47241", "3", "2017-01-23 12:15:15", "40.77.167.29", "22");
INSERT INTO `wp_rg_form_view` VALUES("47242", "15", "2017-01-23 12:15:16", "40.77.167.29", "17");
INSERT INTO `wp_rg_form_view` VALUES("47243", "9", "2017-01-23 12:22:37", "163.172.65.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("47244", "14", "2017-01-23 13:07:27", "23.94.77.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("47245", "3", "2017-01-23 13:07:28", "23.94.77.17", "29");
INSERT INTO `wp_rg_form_view` VALUES("47246", "15", "2017-01-23 13:07:28", "23.94.77.17", "12");
INSERT INTO `wp_rg_form_view` VALUES("47247", "3", "2017-01-23 14:43:09", "207.46.13.4", "21");
INSERT INTO `wp_rg_form_view` VALUES("47248", "15", "2017-01-23 14:43:13", "207.46.13.4", "6");
INSERT INTO `wp_rg_form_view` VALUES("47249", "9", "2017-01-23 15:13:31", "40.77.167.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("47250", "3", "2017-01-23 15:13:32", "40.77.167.11", "35");
INSERT INTO `wp_rg_form_view` VALUES("47251", "15", "2017-01-23 15:13:33", "40.77.167.11", "15");
INSERT INTO `wp_rg_form_view` VALUES("47252", "3", "2017-01-23 16:25:59", "202.46.48.202", "65");
INSERT INTO `wp_rg_form_view` VALUES("47253", "15", "2017-01-23 16:26:01", "202.46.48.202", "27");
INSERT INTO `wp_rg_form_view` VALUES("47254", "13", "2017-01-23 17:07:42", "163.172.66.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("47255", "3", "2017-01-23 17:07:43", "163.172.66.98", "7");
INSERT INTO `wp_rg_form_view` VALUES("47256", "15", "2017-01-23 17:07:44", "163.172.66.98", "3");
INSERT INTO `wp_rg_form_view` VALUES("47257", "3", "2017-01-23 18:01:22", "207.194.94.2", "45");
INSERT INTO `wp_rg_form_view` VALUES("47258", "15", "2017-01-23 18:01:26", "207.194.94.2", "16");
INSERT INTO `wp_rg_form_view` VALUES("47259", "10", "2017-01-23 18:42:59", "40.77.167.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("47260", "3", "2017-01-23 19:01:07", "163.172.66.136", "130");
INSERT INTO `wp_rg_form_view` VALUES("47261", "15", "2017-01-23 19:01:08", "163.172.66.136", "32");
INSERT INTO `wp_rg_form_view` VALUES("47262", "2", "2017-01-23 20:01:59", "220.181.108.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("47263", "3", "2017-01-23 20:02:09", "220.181.108.109", "66");
INSERT INTO `wp_rg_form_view` VALUES("47264", "15", "2017-01-23 20:02:10", "220.181.108.109", "18");
INSERT INTO `wp_rg_form_view` VALUES("47265", "2", "2017-01-23 21:00:26", "209.52.88.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("47266", "3", "2017-01-23 21:00:31", "209.52.88.73", "32");
INSERT INTO `wp_rg_form_view` VALUES("47267", "15", "2017-01-23 21:00:31", "209.52.88.73", "8");
INSERT INTO `wp_rg_form_view` VALUES("47268", "14", "2017-01-23 21:01:22", "209.52.88.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("47269", "3", "2017-01-23 22:12:18", "77.75.76.167", "32");
INSERT INTO `wp_rg_form_view` VALUES("47270", "15", "2017-01-23 22:12:40", "77.75.76.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("47271", "15", "2017-01-23 22:12:40", "77.75.76.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("47272", "3", "2017-01-23 23:06:21", "202.46.50.126", "59");
INSERT INTO `wp_rg_form_view` VALUES("47273", "15", "2017-01-23 23:06:40", "202.46.50.126", "14");
INSERT INTO `wp_rg_form_view` VALUES("47274", "14", "2017-01-23 23:59:47", "199.60.109.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("47275", "3", "2017-01-24 00:00:06", "199.60.109.155", "130");
INSERT INTO `wp_rg_form_view` VALUES("47276", "15", "2017-01-24 00:00:06", "199.60.109.155", "36");
INSERT INTO `wp_rg_form_view` VALUES("47277", "3", "2017-01-24 01:27:17", "192.187.31.224", "16");
INSERT INTO `wp_rg_form_view` VALUES("47278", "15", "2017-01-24 01:27:22", "192.187.31.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("47279", "3", "2017-01-24 02:05:14", "66.249.79.140", "51");
INSERT INTO `wp_rg_form_view` VALUES("47280", "15", "2017-01-24 02:05:14", "66.249.79.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("47281", "3", "2017-01-24 03:42:33", "66.249.79.144", "33");
INSERT INTO `wp_rg_form_view` VALUES("47282", "15", "2017-01-24 03:42:35", "66.249.79.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("47283", "3", "2017-01-24 04:00:50", "66.249.79.140", "16");
INSERT INTO `wp_rg_form_view` VALUES("47284", "15", "2017-01-24 04:00:51", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("47285", "3", "2017-01-24 05:37:35", "24.68.17.97", "16");
INSERT INTO `wp_rg_form_view` VALUES("47286", "15", "2017-01-24 05:37:36", "24.68.17.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("47287", "3", "2017-01-24 06:13:45", "217.73.227.60", "26");
INSERT INTO `wp_rg_form_view` VALUES("47288", "15", "2017-01-24 06:13:46", "217.73.227.60", "6");
INSERT INTO `wp_rg_form_view` VALUES("47289", "3", "2017-01-24 07:01:13", "204.79.180.240", "56");
INSERT INTO `wp_rg_form_view` VALUES("47290", "15", "2017-01-24 07:01:14", "204.79.180.240", "14");
INSERT INTO `wp_rg_form_view` VALUES("47291", "2", "2017-01-24 07:02:57", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47292", "3", "2017-01-24 08:32:58", "66.249.79.144", "33");
INSERT INTO `wp_rg_form_view` VALUES("47293", "15", "2017-01-24 08:33:02", "66.249.79.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("47294", "3", "2017-01-24 09:10:02", "40.77.167.29", "16");
INSERT INTO `wp_rg_form_view` VALUES("47295", "15", "2017-01-24 09:10:03", "40.77.167.29", "4");
INSERT INTO `wp_rg_form_view` VALUES("47296", "3", "2017-01-24 10:02:09", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("47297", "15", "2017-01-24 10:02:10", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("47298", "3", "2017-01-24 11:29:35", "68.180.228.164", "9");
INSERT INTO `wp_rg_form_view` VALUES("47299", "15", "2017-01-24 11:45:14", "185.93.183.221", "2");
INSERT INTO `wp_rg_form_view` VALUES("47300", "3", "2017-01-24 12:31:01", "46.231.214.166", "86");
INSERT INTO `wp_rg_form_view` VALUES("47301", "15", "2017-01-24 12:31:04", "46.231.214.166", "20");
INSERT INTO `wp_rg_form_view` VALUES("47302", "3", "2017-01-24 13:03:53", "199.21.99.202", "49");
INSERT INTO `wp_rg_form_view` VALUES("47303", "15", "2017-01-24 13:03:53", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("47304", "9", "2017-01-24 13:26:22", "163.172.65.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("47305", "3", "2017-01-24 14:21:15", "66.249.79.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("47306", "15", "2017-01-24 14:21:16", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("47307", "3", "2017-01-24 15:10:29", "199.21.99.202", "309");
INSERT INTO `wp_rg_form_view` VALUES("47308", "15", "2017-01-24 15:10:29", "199.21.99.202", "77");
INSERT INTO `wp_rg_form_view` VALUES("47309", "2", "2017-01-24 15:47:42", "40.77.167.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("47310", "11", "2017-01-24 15:47:45", "40.77.167.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("47311", "3", "2017-01-24 16:13:44", "163.172.65.202", "97");
INSERT INTO `wp_rg_form_view` VALUES("47312", "15", "2017-01-24 16:13:47", "163.172.65.202", "25");
INSERT INTO `wp_rg_form_view` VALUES("47313", "13", "2017-01-24 16:31:59", "142.36.249.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("47314", "3", "2017-01-24 17:07:05", "66.249.79.144", "50");
INSERT INTO `wp_rg_form_view` VALUES("47315", "15", "2017-01-24 17:07:06", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("47316", "3", "2017-01-24 18:09:19", "77.75.78.165", "58");
INSERT INTO `wp_rg_form_view` VALUES("47317", "15", "2017-01-24 18:09:19", "77.75.78.165", "16");
INSERT INTO `wp_rg_form_view` VALUES("47318", "3", "2017-01-24 19:00:33", "24.244.32.211", "84");
INSERT INTO `wp_rg_form_view` VALUES("47319", "15", "2017-01-24 19:00:34", "24.244.32.211", "28");
INSERT INTO `wp_rg_form_view` VALUES("47320", "3", "2017-01-24 20:00:36", "184.66.49.231", "67");
INSERT INTO `wp_rg_form_view` VALUES("47321", "15", "2017-01-24 20:00:36", "184.66.49.231", "16");
INSERT INTO `wp_rg_form_view` VALUES("47322", "9", "2017-01-24 21:06:17", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47323", "3", "2017-01-24 21:06:20", "68.180.228.164", "89");
INSERT INTO `wp_rg_form_view` VALUES("47324", "15", "2017-01-24 21:06:20", "68.180.228.164", "22");
INSERT INTO `wp_rg_form_view` VALUES("47325", "2", "2017-01-24 21:46:57", "209.52.88.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47326", "3", "2017-01-24 22:16:23", "68.180.228.164", "85");
INSERT INTO `wp_rg_form_view` VALUES("47327", "15", "2017-01-24 22:16:23", "68.180.228.164", "21");
INSERT INTO `wp_rg_form_view` VALUES("47328", "11", "2017-01-24 22:22:54", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("47329", "2", "2017-01-24 22:22:57", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("47330", "3", "2017-01-24 23:00:20", "24.69.81.140", "595");
INSERT INTO `wp_rg_form_view` VALUES("47331", "15", "2017-01-24 23:00:21", "24.69.81.140", "159");
INSERT INTO `wp_rg_form_view` VALUES("47332", "10", "2017-01-24 23:46:10", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47333", "2", "2017-01-24 23:46:46", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47334", "11", "2017-01-24 23:53:56", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47335", "14", "2017-01-24 23:55:17", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47336", "13", "2017-01-24 23:56:54", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47337", "3", "2017-01-25 00:00:09", "136.243.36.94", "329");
INSERT INTO `wp_rg_form_view` VALUES("47338", "15", "2017-01-25 00:00:10", "136.243.36.94", "78");
INSERT INTO `wp_rg_form_view` VALUES("47339", "6", "2017-01-25 00:01:37", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47340", "9", "2017-01-25 00:01:53", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47341", "8", "2017-01-25 00:06:33", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47342", "10", "2017-01-25 00:07:06", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("47343", "3", "2017-01-25 01:11:18", "202.46.54.99", "26");
INSERT INTO `wp_rg_form_view` VALUES("47344", "15", "2017-01-25 01:11:19", "202.46.54.99", "6");
INSERT INTO `wp_rg_form_view` VALUES("47345", "3", "2017-01-25 02:09:20", "104.160.9.90", "50");
INSERT INTO `wp_rg_form_view` VALUES("47346", "15", "2017-01-25 02:09:21", "104.160.9.90", "12");
INSERT INTO `wp_rg_form_view` VALUES("47347", "2", "2017-01-25 03:05:24", "163.172.66.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("47348", "3", "2017-01-25 03:05:28", "163.172.66.91", "25");
INSERT INTO `wp_rg_form_view` VALUES("47349", "15", "2017-01-25 03:05:28", "163.172.66.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("47350", "3", "2017-01-25 04:21:47", "40.77.167.64", "26");
INSERT INTO `wp_rg_form_view` VALUES("47351", "15", "2017-01-25 04:21:48", "40.77.167.64", "6");
INSERT INTO `wp_rg_form_view` VALUES("47352", "11", "2017-01-25 05:24:06", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47353", "3", "2017-01-25 05:24:15", "68.180.228.164", "17");
INSERT INTO `wp_rg_form_view` VALUES("47354", "15", "2017-01-25 05:24:15", "68.180.228.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("47355", "3", "2017-01-25 06:22:04", "163.172.65.231", "16");
INSERT INTO `wp_rg_form_view` VALUES("47356", "15", "2017-01-25 06:22:05", "163.172.65.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("47357", "3", "2017-01-25 07:00:13", "24.69.149.105", "101");
INSERT INTO `wp_rg_form_view` VALUES("47358", "15", "2017-01-25 07:00:14", "24.69.149.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("47359", "13", "2017-01-25 07:57:59", "163.172.66.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("47360", "3", "2017-01-25 08:03:18", "77.75.76.168", "42");
INSERT INTO `wp_rg_form_view` VALUES("47361", "15", "2017-01-25 08:03:18", "77.75.76.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("47362", "11", "2017-01-25 08:12:29", "207.46.13.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("47363", "14", "2017-01-25 09:00:51", "202.46.58.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("47364", "3", "2017-01-25 09:00:54", "202.46.58.200", "32");
INSERT INTO `wp_rg_form_view` VALUES("47365", "15", "2017-01-25 09:00:54", "202.46.58.200", "16");
INSERT INTO `wp_rg_form_view` VALUES("47366", "3", "2017-01-25 10:43:11", "68.180.228.164", "8");
INSERT INTO `wp_rg_form_view` VALUES("47367", "15", "2017-01-25 10:43:13", "68.180.228.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("47368", "3", "2017-01-25 11:12:05", "141.8.143.214", "21");
INSERT INTO `wp_rg_form_view` VALUES("47369", "15", "2017-01-25 11:12:07", "141.8.143.214", "4");
INSERT INTO `wp_rg_form_view` VALUES("47370", "3", "2017-01-25 12:33:19", "202.46.53.198", "8");
INSERT INTO `wp_rg_form_view` VALUES("47371", "15", "2017-01-25 12:33:21", "202.46.53.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("47372", "3", "2017-01-25 13:17:27", "68.180.228.164", "25");
INSERT INTO `wp_rg_form_view` VALUES("47373", "15", "2017-01-25 13:17:28", "68.180.228.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("47374", "3", "2017-01-25 14:08:05", "66.249.79.140", "16");
INSERT INTO `wp_rg_form_view` VALUES("47375", "15", "2017-01-25 14:08:06", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("47376", "3", "2017-01-25 15:13:38", "184.66.41.173", "56");
INSERT INTO `wp_rg_form_view` VALUES("47377", "15", "2017-01-25 15:13:40", "184.66.41.173", "15");
INSERT INTO `wp_rg_form_view` VALUES("47378", "3", "2017-01-25 16:09:56", "24.68.113.67", "8");
INSERT INTO `wp_rg_form_view` VALUES("47379", "15", "2017-01-25 16:09:57", "24.68.113.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("47380", "3", "2017-01-25 17:06:04", "207.194.133.9", "169");
INSERT INTO `wp_rg_form_view` VALUES("47381", "15", "2017-01-25 17:06:11", "207.194.133.9", "40");
INSERT INTO `wp_rg_form_view` VALUES("47382", "14", "2017-01-25 17:09:53", "78.97.84.130", "3");
INSERT INTO `wp_rg_form_view` VALUES("47383", "15", "2017-01-25 18:22:37", "24.114.36.75", "15");
INSERT INTO `wp_rg_form_view` VALUES("47384", "3", "2017-01-25 18:22:40", "24.114.36.75", "56");
INSERT INTO `wp_rg_form_view` VALUES("47385", "3", "2017-01-25 19:52:46", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("47386", "15", "2017-01-25 19:52:48", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("47387", "14", "2017-01-25 20:10:18", "216.151.180.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("47388", "3", "2017-01-25 20:10:19", "216.151.180.185", "97");
INSERT INTO `wp_rg_form_view` VALUES("47389", "15", "2017-01-25 20:10:19", "216.151.180.185", "24");
INSERT INTO `wp_rg_form_view` VALUES("47390", "3", "2017-01-25 21:13:56", "202.46.49.75", "82");
INSERT INTO `wp_rg_form_view` VALUES("47391", "15", "2017-01-25 21:14:13", "202.46.49.75", "20");
INSERT INTO `wp_rg_form_view` VALUES("47392", "14", "2017-01-25 21:25:24", "142.36.26.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("47393", "3", "2017-01-25 22:02:56", "66.249.79.148", "25");
INSERT INTO `wp_rg_form_view` VALUES("47394", "15", "2017-01-25 22:02:56", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("47395", "3", "2017-01-25 23:00:52", "207.194.133.9", "128");
INSERT INTO `wp_rg_form_view` VALUES("47396", "15", "2017-01-25 23:00:52", "207.194.133.9", "32");
INSERT INTO `wp_rg_form_view` VALUES("47397", "10", "2017-01-25 23:45:52", "163.172.65.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("47398", "3", "2017-01-26 00:05:02", "199.21.99.202", "24");
INSERT INTO `wp_rg_form_view` VALUES("47399", "15", "2017-01-26 00:05:03", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("47400", "3", "2017-01-26 01:00:52", "77.75.78.160", "49");
INSERT INTO `wp_rg_form_view` VALUES("47401", "15", "2017-01-26 01:00:56", "77.75.78.160", "12");
INSERT INTO `wp_rg_form_view` VALUES("47402", "10", "2017-01-26 02:30:15", "77.75.78.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("47403", "3", "2017-01-26 02:30:20", "77.75.78.172", "24");
INSERT INTO `wp_rg_form_view` VALUES("47404", "15", "2017-01-26 02:30:20", "77.75.78.172", "6");
INSERT INTO `wp_rg_form_view` VALUES("47405", "3", "2017-01-26 03:06:30", "202.46.48.139", "42");
INSERT INTO `wp_rg_form_view` VALUES("47406", "15", "2017-01-26 03:06:30", "202.46.48.139", "10");
INSERT INTO `wp_rg_form_view` VALUES("47407", "10", "2017-01-26 03:08:42", "23.233.88.221", "2");
INSERT INTO `wp_rg_form_view` VALUES("47408", "3", "2017-01-26 04:21:08", "77.75.78.165", "40");
INSERT INTO `wp_rg_form_view` VALUES("47409", "15", "2017-01-26 04:21:10", "77.75.78.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("47410", "14", "2017-01-26 04:59:20", "104.202.144.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("47411", "3", "2017-01-26 05:04:32", "220.181.108.144", "96");
INSERT INTO `wp_rg_form_view` VALUES("47412", "15", "2017-01-26 05:04:32", "220.181.108.144", "24");
INSERT INTO `wp_rg_form_view` VALUES("47413", "14", "2017-01-26 05:19:36", "191.101.113.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("47414", "3", "2017-01-26 06:03:41", "68.180.228.164", "49");
INSERT INTO `wp_rg_form_view` VALUES("47415", "15", "2017-01-26 06:03:42", "68.180.228.164", "13");
INSERT INTO `wp_rg_form_view` VALUES("47416", "14", "2017-01-26 06:07:54", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("47417", "3", "2017-01-26 07:05:53", "77.75.78.163", "40");
INSERT INTO `wp_rg_form_view` VALUES("47418", "15", "2017-01-26 07:05:53", "77.75.78.163", "10");
INSERT INTO `wp_rg_form_view` VALUES("47419", "5", "2017-01-26 07:54:23", "77.75.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("47420", "3", "2017-01-26 08:23:11", "202.46.53.144", "16");
INSERT INTO `wp_rg_form_view` VALUES("47421", "15", "2017-01-26 08:23:11", "202.46.53.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("47422", "3", "2017-01-26 09:30:31", "202.46.53.204", "16");
INSERT INTO `wp_rg_form_view` VALUES("47423", "15", "2017-01-26 09:30:37", "202.46.53.204", "4");
INSERT INTO `wp_rg_form_view` VALUES("47424", "3", "2017-01-26 10:03:55", "77.75.79.72", "38");
INSERT INTO `wp_rg_form_view` VALUES("47425", "15", "2017-01-26 10:03:56", "77.75.79.72", "8");
INSERT INTO `wp_rg_form_view` VALUES("47426", "2", "2017-01-26 10:56:20", "46.211.196.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("47427", "2", "2017-01-26 10:56:20", "46.211.196.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("47428", "2", "2017-01-26 10:56:20", "46.211.196.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("47429", "11", "2017-01-26 11:04:33", "77.75.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("47430", "3", "2017-01-26 11:04:33", "77.75.76.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("47431", "15", "2017-01-26 11:04:33", "77.75.76.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("47432", "3", "2017-01-26 12:07:51", "77.75.78.163", "8");
INSERT INTO `wp_rg_form_view` VALUES("47433", "15", "2017-01-26 12:07:54", "77.75.78.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("47434", "3", "2017-01-26 14:06:43", "194.187.170.110", "58");
INSERT INTO `wp_rg_form_view` VALUES("47435", "15", "2017-01-26 14:06:57", "194.187.170.110", "14");
INSERT INTO `wp_rg_form_view` VALUES("47436", "10", "2017-01-26 14:09:01", "194.187.170.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("47437", "3", "2017-01-26 15:02:54", "199.21.99.202", "169");
INSERT INTO `wp_rg_form_view` VALUES("47438", "15", "2017-01-26 15:02:55", "199.21.99.202", "42");
INSERT INTO `wp_rg_form_view` VALUES("47439", "3", "2017-01-26 16:01:55", "194.187.170.110", "84");
INSERT INTO `wp_rg_form_view` VALUES("47440", "15", "2017-01-26 16:01:55", "194.187.170.110", "20");
INSERT INTO `wp_rg_form_view` VALUES("47441", "5", "2017-01-26 16:23:04", "194.187.170.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("47442", "3", "2017-01-26 17:10:08", "184.66.250.66", "209");
INSERT INTO `wp_rg_form_view` VALUES("47443", "15", "2017-01-26 17:10:10", "184.66.250.66", "52");
INSERT INTO `wp_rg_form_view` VALUES("47444", "14", "2017-01-26 17:14:50", "184.66.250.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("47445", "11", "2017-01-26 17:20:07", "184.66.250.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("47446", "2", "2017-01-26 17:20:15", "184.66.250.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("47447", "3", "2017-01-26 18:00:34", "70.66.184.208", "41");
INSERT INTO `wp_rg_form_view` VALUES("47448", "15", "2017-01-26 18:00:34", "70.66.184.208", "10");
INSERT INTO `wp_rg_form_view` VALUES("47449", "14", "2017-01-26 18:17:06", "91.108.73.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("47450", "3", "2017-01-26 19:05:08", "199.21.99.202", "42");
INSERT INTO `wp_rg_form_view` VALUES("47451", "15", "2017-01-26 19:05:09", "199.21.99.202", "11");
INSERT INTO `wp_rg_form_view` VALUES("47452", "3", "2017-01-26 20:05:13", "77.75.77.109", "40");
INSERT INTO `wp_rg_form_view` VALUES("47453", "15", "2017-01-26 20:05:14", "77.75.77.109", "10");
INSERT INTO `wp_rg_form_view` VALUES("47454", "3", "2017-01-26 21:12:15", "184.66.49.231", "89");
INSERT INTO `wp_rg_form_view` VALUES("47455", "15", "2017-01-26 21:12:35", "184.66.49.231", "22");
INSERT INTO `wp_rg_form_view` VALUES("47456", "3", "2017-01-26 22:11:02", "68.180.228.164", "25");
INSERT INTO `wp_rg_form_view` VALUES("47457", "15", "2017-01-26 22:11:02", "68.180.228.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("47458", "6", "2017-01-26 23:20:58", "202.46.54.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("47459", "3", "2017-01-26 23:21:04", "202.46.54.180", "65");
INSERT INTO `wp_rg_form_view` VALUES("47460", "15", "2017-01-26 23:21:04", "202.46.54.180", "16");
INSERT INTO `wp_rg_form_view` VALUES("47461", "3", "2017-01-27 00:20:18", "70.71.125.9", "48");
INSERT INTO `wp_rg_form_view` VALUES("47462", "15", "2017-01-27 00:20:18", "70.71.125.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("47463", "3", "2017-01-27 01:01:25", "202.46.48.144", "41");
INSERT INTO `wp_rg_form_view` VALUES("47464", "15", "2017-01-27 01:01:28", "202.46.48.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("47465", "3", "2017-01-27 02:08:26", "199.21.99.202", "64");
INSERT INTO `wp_rg_form_view` VALUES("47466", "15", "2017-01-27 02:08:27", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("47467", "14", "2017-01-27 02:30:10", "130.204.207.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("47468", "3", "2017-01-27 03:06:16", "64.114.52.110", "16");
INSERT INTO `wp_rg_form_view` VALUES("47469", "15", "2017-01-27 03:06:17", "64.114.52.110", "4");
INSERT INTO `wp_rg_form_view` VALUES("47470", "3", "2017-01-27 04:06:33", "40.77.167.29", "66");
INSERT INTO `wp_rg_form_view` VALUES("47471", "15", "2017-01-27 04:06:33", "40.77.167.29", "16");
INSERT INTO `wp_rg_form_view` VALUES("47472", "3", "2017-01-27 05:16:20", "66.249.79.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("47473", "15", "2017-01-27 05:16:23", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("47474", "3", "2017-01-27 06:21:22", "104.160.9.90", "78");
INSERT INTO `wp_rg_form_view` VALUES("47475", "15", "2017-01-27 06:21:24", "104.160.9.90", "18");
INSERT INTO `wp_rg_form_view` VALUES("47476", "3", "2017-01-27 07:29:39", "52.90.125.141", "24");
INSERT INTO `wp_rg_form_view` VALUES("47477", "15", "2017-01-27 07:29:48", "52.90.125.141", "6");
INSERT INTO `wp_rg_form_view` VALUES("47478", "3", "2017-01-27 08:00:44", "66.249.79.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("47479", "15", "2017-01-27 08:00:45", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("47480", "3", "2017-01-27 09:46:38", "207.46.13.45", "8");
INSERT INTO `wp_rg_form_view` VALUES("47481", "15", "2017-01-27 09:46:40", "207.46.13.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("47482", "3", "2017-01-27 10:23:20", "68.180.228.164", "139");
INSERT INTO `wp_rg_form_view` VALUES("47483", "15", "2017-01-27 10:23:20", "68.180.228.164", "32");
INSERT INTO `wp_rg_form_view` VALUES("47484", "3", "2017-01-27 11:05:24", "202.46.56.202", "24");
INSERT INTO `wp_rg_form_view` VALUES("47485", "15", "2017-01-27 11:05:25", "202.46.56.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("47486", "3", "2017-01-27 12:05:44", "77.75.78.165", "8");
INSERT INTO `wp_rg_form_view` VALUES("47487", "15", "2017-01-27 12:05:45", "77.75.78.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("47488", "3", "2017-01-27 13:03:02", "163.172.65.5", "41");
INSERT INTO `wp_rg_form_view` VALUES("47489", "15", "2017-01-27 13:03:10", "163.172.65.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("47490", "3", "2017-01-27 14:14:09", "77.75.79.101", "33");
INSERT INTO `wp_rg_form_view` VALUES("47491", "15", "2017-01-27 14:14:11", "77.75.79.101", "8");
INSERT INTO `wp_rg_form_view` VALUES("47492", "3", "2017-01-27 15:13:35", "141.8.143.242", "16");
INSERT INTO `wp_rg_form_view` VALUES("47493", "15", "2017-01-27 15:13:35", "141.8.143.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("47494", "10", "2017-01-27 15:16:54", "163.172.64.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("47495", "3", "2017-01-27 16:11:06", "68.180.228.164", "47");
INSERT INTO `wp_rg_form_view` VALUES("47496", "15", "2017-01-27 16:11:09", "68.180.228.164", "13");
INSERT INTO `wp_rg_form_view` VALUES("47497", "3", "2017-01-27 17:46:27", "141.8.143.242", "30");
INSERT INTO `wp_rg_form_view` VALUES("47498", "15", "2017-01-27 17:46:29", "141.8.143.242", "6");
INSERT INTO `wp_rg_form_view` VALUES("47499", "3", "2017-01-27 18:11:32", "202.46.53.66", "93");
INSERT INTO `wp_rg_form_view` VALUES("47500", "15", "2017-01-27 18:11:44", "202.46.53.66", "19");
INSERT INTO `wp_rg_form_view` VALUES("47501", "3", "2017-01-27 20:04:29", "68.180.228.164", "56");
INSERT INTO `wp_rg_form_view` VALUES("47502", "15", "2017-01-27 20:04:33", "68.180.228.164", "14");
INSERT INTO `wp_rg_form_view` VALUES("47503", "3", "2017-01-27 21:05:31", "66.249.79.144", "48");
INSERT INTO `wp_rg_form_view` VALUES("47504", "15", "2017-01-27 21:05:32", "66.249.79.144", "12");
INSERT INTO `wp_rg_form_view` VALUES("47505", "3", "2017-01-27 22:12:49", "24.108.188.201", "116");
INSERT INTO `wp_rg_form_view` VALUES("47506", "15", "2017-01-27 22:12:49", "24.108.188.201", "28");
INSERT INTO `wp_rg_form_view` VALUES("47507", "10", "2017-01-27 22:23:56", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47508", "3", "2017-01-27 23:09:29", "157.55.39.81", "16");
INSERT INTO `wp_rg_form_view` VALUES("47509", "15", "2017-01-27 23:09:31", "157.55.39.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("47510", "3", "2017-01-28 00:42:11", "184.66.49.231", "9");
INSERT INTO `wp_rg_form_view` VALUES("47511", "15", "2017-01-28 00:42:13", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("47512", "3", "2017-01-28 01:07:13", "157.55.39.81", "53");
INSERT INTO `wp_rg_form_view` VALUES("47513", "15", "2017-01-28 01:07:13", "157.55.39.81", "12");
INSERT INTO `wp_rg_form_view` VALUES("47514", "3", "2017-01-28 02:05:39", "68.180.228.164", "41");
INSERT INTO `wp_rg_form_view` VALUES("47515", "15", "2017-01-28 02:05:40", "68.180.228.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("47516", "3", "2017-01-28 03:00:59", "68.180.228.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("47517", "15", "2017-01-28 03:55:28", "202.46.53.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("47518", "3", "2017-01-28 04:20:51", "195.154.199.154", "64");
INSERT INTO `wp_rg_form_view` VALUES("47519", "15", "2017-01-28 04:20:51", "195.154.199.154", "16");
INSERT INTO `wp_rg_form_view` VALUES("47520", "10", "2017-01-28 05:17:02", "77.75.79.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("47521", "3", "2017-01-28 05:17:02", "77.75.79.36", "25");
INSERT INTO `wp_rg_form_view` VALUES("47522", "15", "2017-01-28 05:17:02", "77.75.79.36", "6");
INSERT INTO `wp_rg_form_view` VALUES("47523", "3", "2017-01-28 06:11:14", "77.75.79.62", "88");
INSERT INTO `wp_rg_form_view` VALUES("47524", "15", "2017-01-28 06:11:14", "77.75.79.62", "22");
INSERT INTO `wp_rg_form_view` VALUES("47525", "10", "2017-01-28 06:33:25", "45.55.169.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("47526", "14", "2017-01-28 06:42:37", "154.20.33.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("47527", "3", "2017-01-28 07:07:15", "77.75.79.32", "48");
INSERT INTO `wp_rg_form_view` VALUES("47528", "15", "2017-01-28 07:07:23", "77.75.79.32", "12");
INSERT INTO `wp_rg_form_view` VALUES("47529", "6", "2017-01-28 07:29:13", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47530", "3", "2017-01-28 08:42:38", "202.46.56.98", "8");
INSERT INTO `wp_rg_form_view` VALUES("47531", "15", "2017-01-28 08:42:40", "202.46.56.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("47532", "3", "2017-01-28 11:14:32", "40.77.167.29", "24");
INSERT INTO `wp_rg_form_view` VALUES("47533", "15", "2017-01-28 11:14:36", "40.77.167.29", "6");
INSERT INTO `wp_rg_form_view` VALUES("47534", "3", "2017-01-28 12:00:03", "37.59.55.128", "599");
INSERT INTO `wp_rg_form_view` VALUES("47535", "15", "2017-01-28 12:00:03", "37.59.55.128", "159");
INSERT INTO `wp_rg_form_view` VALUES("47536", "11", "2017-01-28 12:00:11", "37.59.55.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("47537", "2", "2017-01-28 12:00:16", "37.59.55.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("47538", "14", "2017-01-28 12:02:34", "37.59.55.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("47539", "10", "2017-01-28 12:39:36", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("47540", "3", "2017-01-28 13:13:54", "202.46.53.11", "41");
INSERT INTO `wp_rg_form_view` VALUES("47541", "15", "2017-01-28 13:13:55", "202.46.53.11", "10");
INSERT INTO `wp_rg_form_view` VALUES("47542", "3", "2017-01-28 14:07:52", "66.249.79.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("47543", "15", "2017-01-28 14:07:56", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("47544", "10", "2017-01-28 14:13:00", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("47545", "3", "2017-01-28 15:40:25", "68.180.228.164", "17");
INSERT INTO `wp_rg_form_view` VALUES("47546", "15", "2017-01-28 15:40:28", "68.180.228.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("47547", "3", "2017-01-28 16:18:12", "24.68.245.23", "16");
INSERT INTO `wp_rg_form_view` VALUES("47548", "15", "2017-01-28 16:18:12", "24.68.245.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("47549", "14", "2017-01-28 16:18:34", "24.68.245.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("47550", "3", "2017-01-28 17:32:09", "202.46.58.112", "8");
INSERT INTO `wp_rg_form_view` VALUES("47551", "15", "2017-01-28 17:32:51", "202.46.58.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("47552", "15", "2017-01-28 18:34:03", "202.46.53.158", "11");
INSERT INTO `wp_rg_form_view` VALUES("47553", "3", "2017-01-28 18:34:04", "202.46.53.158", "41");
INSERT INTO `wp_rg_form_view` VALUES("47554", "10", "2017-01-28 18:54:12", "217.69.133.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("47555", "3", "2017-01-28 19:07:31", "202.46.51.23", "33");
INSERT INTO `wp_rg_form_view` VALUES("47556", "15", "2017-01-28 19:07:31", "202.46.51.23", "8");
INSERT INTO `wp_rg_form_view` VALUES("47557", "10", "2017-01-28 19:47:25", "77.75.76.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("47558", "3", "2017-01-28 20:30:56", "68.180.228.164", "36");
INSERT INTO `wp_rg_form_view` VALUES("47559", "15", "2017-01-28 20:30:56", "68.180.228.164", "14");
INSERT INTO `wp_rg_form_view` VALUES("47560", "3", "2017-01-28 21:06:21", "202.46.58.87", "204");
INSERT INTO `wp_rg_form_view` VALUES("47561", "15", "2017-01-28 21:06:22", "202.46.58.87", "87");
INSERT INTO `wp_rg_form_view` VALUES("47562", "11", "2017-01-28 21:33:42", "89.123.52.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("47563", "2", "2017-01-28 21:34:55", "89.123.52.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("47564", "10", "2017-01-28 21:59:46", "217.69.133.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("47565", "3", "2017-01-28 23:17:15", "141.8.143.242", "29");
INSERT INTO `wp_rg_form_view` VALUES("47566", "15", "2017-01-28 23:17:21", "141.8.143.242", "12");
INSERT INTO `wp_rg_form_view` VALUES("47567", "3", "2017-01-29 00:10:01", "5.255.250.69", "14");
INSERT INTO `wp_rg_form_view` VALUES("47568", "15", "2017-01-29 00:10:01", "5.255.250.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("47569", "3", "2017-01-29 01:07:59", "217.69.133.231", "37");
INSERT INTO `wp_rg_form_view` VALUES("47570", "15", "2017-01-29 01:07:59", "217.69.133.231", "15");
INSERT INTO `wp_rg_form_view` VALUES("47571", "10", "2017-01-29 01:08:03", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("47572", "12", "2017-01-29 02:02:25", "202.46.57.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("47573", "3", "2017-01-29 02:02:26", "202.46.57.198", "37");
INSERT INTO `wp_rg_form_view` VALUES("47574", "15", "2017-01-29 02:02:26", "202.46.57.198", "15");
INSERT INTO `wp_rg_form_view` VALUES("47575", "3", "2017-01-29 03:02:30", "199.21.99.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("47576", "15", "2017-01-29 03:02:31", "199.21.99.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("47577", "3", "2017-01-29 04:05:14", "68.180.228.164", "76");
INSERT INTO `wp_rg_form_view` VALUES("47578", "15", "2017-01-29 04:16:48", "217.69.133.233", "30");
INSERT INTO `wp_rg_form_view` VALUES("47579", "3", "2017-01-29 05:15:59", "144.76.96.86", "15");
INSERT INTO `wp_rg_form_view` VALUES("47580", "15", "2017-01-29 05:16:00", "144.76.96.86", "6");
INSERT INTO `wp_rg_form_view` VALUES("47581", "14", "2017-01-29 06:31:45", "130.204.207.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("47582", "3", "2017-01-29 06:31:45", "130.204.207.179", "7");
INSERT INTO `wp_rg_form_view` VALUES("47583", "15", "2017-01-29 06:31:46", "130.204.207.179", "3");
INSERT INTO `wp_rg_form_view` VALUES("47584", "3", "2017-01-29 07:24:06", "217.69.133.232", "29");
INSERT INTO `wp_rg_form_view` VALUES("47585", "15", "2017-01-29 07:24:15", "217.69.133.232", "12");
INSERT INTO `wp_rg_form_view` VALUES("47586", "10", "2017-01-29 07:24:15", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("47587", "3", "2017-01-29 08:55:47", "40.77.167.64", "23");
INSERT INTO `wp_rg_form_view` VALUES("47588", "15", "2017-01-29 08:55:48", "40.77.167.64", "9");
INSERT INTO `wp_rg_form_view` VALUES("47589", "3", "2017-01-29 09:13:32", "77.75.79.62", "49");
INSERT INTO `wp_rg_form_view` VALUES("47590", "15", "2017-01-29 09:13:32", "77.75.79.62", "21");
INSERT INTO `wp_rg_form_view` VALUES("47591", "14", "2017-01-29 09:31:19", "24.68.100.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("47592", "3", "2017-01-29 10:05:36", "100.43.91.14", "43");
INSERT INTO `wp_rg_form_view` VALUES("47593", "15", "2017-01-29 10:05:36", "100.43.91.14", "18");
INSERT INTO `wp_rg_form_view` VALUES("47594", "10", "2017-01-29 10:32:09", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("47595", "3", "2017-01-29 11:17:50", "66.249.79.144", "28");
INSERT INTO `wp_rg_form_view` VALUES("47596", "15", "2017-01-29 11:17:50", "66.249.79.144", "12");
INSERT INTO `wp_rg_form_view` VALUES("47597", "3", "2017-01-29 12:06:10", "217.69.133.230", "15");
INSERT INTO `wp_rg_form_view` VALUES("47598", "15", "2017-01-29 12:06:11", "217.69.133.230", "6");
INSERT INTO `wp_rg_form_view` VALUES("47599", "10", "2017-01-29 12:06:14", "217.69.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("47600", "3", "2017-01-29 13:03:24", "77.75.76.166", "29");
INSERT INTO `wp_rg_form_view` VALUES("47601", "15", "2017-01-29 13:03:28", "77.75.76.166", "9");
INSERT INTO `wp_rg_form_view` VALUES("47602", "15", "2017-01-29 14:07:18", "202.46.58.151", "18");
INSERT INTO `wp_rg_form_view` VALUES("47603", "3", "2017-01-29 14:07:19", "202.46.58.151", "21");
INSERT INTO `wp_rg_form_view` VALUES("47604", "3", "2017-01-29 15:09:49", "163.172.66.83", "30");
INSERT INTO `wp_rg_form_view` VALUES("47605", "15", "2017-01-29 15:09:49", "163.172.66.83", "12");
INSERT INTO `wp_rg_form_view` VALUES("47606", "14", "2017-01-29 15:17:24", "207.46.13.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("47607", "3", "2017-01-29 16:08:15", "77.75.76.166", "47");
INSERT INTO `wp_rg_form_view` VALUES("47608", "15", "2017-01-29 16:08:15", "77.75.76.166", "15");
INSERT INTO `wp_rg_form_view` VALUES("47609", "3", "2017-01-29 17:34:30", "77.88.47.114", "112");
INSERT INTO `wp_rg_form_view` VALUES("47610", "15", "2017-01-29 17:34:31", "77.88.47.114", "48");
INSERT INTO `wp_rg_form_view` VALUES("47611", "3", "2017-01-29 18:23:43", "188.163.110.111", "21");
INSERT INTO `wp_rg_form_view` VALUES("47612", "15", "2017-01-29 18:23:44", "188.163.110.111", "9");
INSERT INTO `wp_rg_form_view` VALUES("47613", "10", "2017-01-29 18:26:12", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47614", "3", "2017-01-29 19:16:38", "163.172.65.49", "16");
INSERT INTO `wp_rg_form_view` VALUES("47615", "15", "2017-01-29 19:16:41", "163.172.65.49", "6");
INSERT INTO `wp_rg_form_view` VALUES("47616", "3", "2017-01-29 20:16:20", "202.46.50.182", "27");
INSERT INTO `wp_rg_form_view` VALUES("47617", "15", "2017-01-29 20:16:23", "202.46.50.182", "9");
INSERT INTO `wp_rg_form_view` VALUES("47618", "3", "2017-01-29 21:02:10", "77.75.78.161", "71");
INSERT INTO `wp_rg_form_view` VALUES("47619", "15", "2017-01-29 21:02:10", "77.75.78.161", "30");
INSERT INTO `wp_rg_form_view` VALUES("47620", "14", "2017-01-29 21:36:48", "67.195.42.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("47621", "3", "2017-01-29 22:15:54", "99.236.212.46", "21");
INSERT INTO `wp_rg_form_view` VALUES("47622", "15", "2017-01-29 22:15:55", "99.236.212.46", "9");
INSERT INTO `wp_rg_form_view` VALUES("47623", "3", "2017-01-29 23:01:44", "217.69.133.228", "22");
INSERT INTO `wp_rg_form_view` VALUES("47624", "15", "2017-01-29 23:01:45", "217.69.133.228", "9");
INSERT INTO `wp_rg_form_view` VALUES("47625", "3", "2017-01-30 00:34:58", "217.69.133.230", "16");
INSERT INTO `wp_rg_form_view` VALUES("47626", "15", "2017-01-30 00:34:58", "217.69.133.230", "6");
INSERT INTO `wp_rg_form_view` VALUES("47627", "3", "2017-01-30 02:01:42", "184.66.32.165", "43");
INSERT INTO `wp_rg_form_view` VALUES("47628", "15", "2017-01-30 02:01:46", "184.66.32.165", "18");
INSERT INTO `wp_rg_form_view` VALUES("47629", "10", "2017-01-30 02:08:45", "217.69.133.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("47630", "8", "2017-01-30 02:45:24", "163.172.65.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("47631", "3", "2017-01-30 03:07:49", "68.180.228.164", "135");
INSERT INTO `wp_rg_form_view` VALUES("47632", "15", "2017-01-30 03:07:49", "68.180.228.164", "57");
INSERT INTO `wp_rg_form_view` VALUES("47633", "10", "2017-01-30 03:41:40", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("47634", "14", "2017-01-30 03:44:05", "184.66.45.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("47635", "3", "2017-01-30 04:19:52", "24.108.10.244", "28");
INSERT INTO `wp_rg_form_view` VALUES("47636", "15", "2017-01-30 04:19:52", "24.108.10.244", "12");
INSERT INTO `wp_rg_form_view` VALUES("47637", "3", "2017-01-30 05:02:30", "96.50.59.185", "43");
INSERT INTO `wp_rg_form_view` VALUES("47638", "15", "2017-01-30 05:02:30", "96.50.59.185", "18");
INSERT INTO `wp_rg_form_view` VALUES("47639", "3", "2017-01-30 06:14:26", "202.46.55.170", "7");
INSERT INTO `wp_rg_form_view` VALUES("47640", "15", "2017-01-30 06:14:26", "202.46.55.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("47641", "3", "2017-01-30 07:31:50", "52.202.240.20", "14");
INSERT INTO `wp_rg_form_view` VALUES("47642", "15", "2017-01-30 07:31:55", "52.202.240.20", "6");
INSERT INTO `wp_rg_form_view` VALUES("47643", "3", "2017-01-30 08:00:11", "157.55.39.36", "82");
INSERT INTO `wp_rg_form_view` VALUES("47644", "15", "2017-01-30 08:00:11", "157.55.39.36", "33");
INSERT INTO `wp_rg_form_view` VALUES("47645", "14", "2017-01-30 08:07:18", "119.190.142.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("47646", "10", "2017-01-30 08:51:53", "157.55.39.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("47647", "3", "2017-01-30 09:06:37", "40.77.167.29", "28");
INSERT INTO `wp_rg_form_view` VALUES("47648", "15", "2017-01-30 09:06:37", "40.77.167.29", "12");
INSERT INTO `wp_rg_form_view` VALUES("47649", "10", "2017-01-30 09:55:58", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("47650", "3", "2017-01-30 10:09:44", "163.172.66.152", "23");
INSERT INTO `wp_rg_form_view` VALUES("47651", "15", "2017-01-30 10:09:44", "163.172.66.152", "9");
INSERT INTO `wp_rg_form_view` VALUES("47652", "3", "2017-01-30 12:20:57", "199.21.99.202", "14");
INSERT INTO `wp_rg_form_view` VALUES("47653", "15", "2017-01-30 12:21:00", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("47654", "3", "2017-01-30 13:27:48", "202.46.57.78", "7");
INSERT INTO `wp_rg_form_view` VALUES("47655", "15", "2017-01-30 13:27:49", "202.46.57.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("47656", "9", "2017-01-30 14:08:51", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("47657", "3", "2017-01-30 14:08:51", "66.249.79.144", "28");
INSERT INTO `wp_rg_form_view` VALUES("47658", "15", "2017-01-30 14:08:51", "66.249.79.144", "12");
INSERT INTO `wp_rg_form_view` VALUES("47659", "3", "2017-01-30 15:00:27", "202.46.54.143", "29");
INSERT INTO `wp_rg_form_view` VALUES("47660", "15", "2017-01-30 15:00:27", "202.46.54.143", "12");
INSERT INTO `wp_rg_form_view` VALUES("47661", "14", "2017-01-30 15:06:13", "93.127.138.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("47662", "3", "2017-01-30 16:05:09", "66.249.79.148", "74");
INSERT INTO `wp_rg_form_view` VALUES("47663", "15", "2017-01-30 16:08:34", "154.20.198.180", "27");
INSERT INTO `wp_rg_form_view` VALUES("47664", "10", "2017-01-30 17:45:23", "75.154.240.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("47665", "3", "2017-01-30 17:45:26", "75.154.240.57", "15");
INSERT INTO `wp_rg_form_view` VALUES("47666", "15", "2017-01-30 17:45:26", "75.154.240.57", "6");
INSERT INTO `wp_rg_form_view` VALUES("47667", "15", "2017-01-30 18:00:06", "68.180.228.164", "32");
INSERT INTO `wp_rg_form_view` VALUES("47668", "3", "2017-01-30 18:00:07", "68.180.228.164", "49");
INSERT INTO `wp_rg_form_view` VALUES("47669", "3", "2017-01-30 19:05:37", "24.68.199.127", "67");
INSERT INTO `wp_rg_form_view` VALUES("47670", "3", "2017-01-30 19:05:37", "24.68.199.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("47671", "15", "2017-01-30 19:05:37", "24.68.199.127", "27");
INSERT INTO `wp_rg_form_view` VALUES("47672", "3", "2017-01-30 21:12:43", "24.68.100.59", "49");
INSERT INTO `wp_rg_form_view` VALUES("47673", "15", "2017-01-30 21:12:46", "24.68.100.59", "22");
INSERT INTO `wp_rg_form_view` VALUES("47674", "3", "2017-01-30 22:43:44", "202.46.58.119", "102");
INSERT INTO `wp_rg_form_view` VALUES("47675", "15", "2017-01-30 22:43:47", "202.46.58.119", "42");
INSERT INTO `wp_rg_form_view` VALUES("47676", "14", "2017-01-30 22:44:41", "154.16.47.96", "5");
INSERT INTO `wp_rg_form_view` VALUES("47677", "3", "2017-01-30 23:06:22", "40.77.167.64", "50");
INSERT INTO `wp_rg_form_view` VALUES("47678", "15", "2017-01-30 23:06:23", "40.77.167.64", "22");
INSERT INTO `wp_rg_form_view` VALUES("47679", "3", "2017-01-31 00:18:23", "216.244.66.237", "27");
INSERT INTO `wp_rg_form_view` VALUES("47680", "15", "2017-01-31 00:18:24", "216.244.66.237", "9");
INSERT INTO `wp_rg_form_view` VALUES("47681", "13", "2017-01-31 00:24:11", "202.46.48.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("47682", "3", "2017-01-31 01:04:45", "40.77.167.29", "417");
INSERT INTO `wp_rg_form_view` VALUES("47683", "15", "2017-01-31 01:04:46", "40.77.167.29", "181");
INSERT INTO `wp_rg_form_view` VALUES("47684", "10", "2017-01-31 01:05:20", "157.55.39.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("47685", "6", "2017-01-31 01:05:56", "40.77.167.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("47686", "3", "2017-01-31 02:16:25", "24.108.26.214", "22");
INSERT INTO `wp_rg_form_view` VALUES("47687", "15", "2017-01-31 02:16:27", "24.108.26.214", "9");
INSERT INTO `wp_rg_form_view` VALUES("47688", "3", "2017-01-31 03:33:52", "68.180.228.164", "28");
INSERT INTO `wp_rg_form_view` VALUES("47689", "15", "2017-01-31 03:33:52", "68.180.228.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("47690", "10", "2017-01-31 03:43:24", "77.75.76.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47691", "3", "2017-01-31 04:11:54", "70.66.168.98", "51");
INSERT INTO `wp_rg_form_view` VALUES("47692", "15", "2017-01-31 04:11:54", "70.66.168.98", "21");
INSERT INTO `wp_rg_form_view` VALUES("47693", "3", "2017-01-31 05:09:54", "184.66.48.13", "70");
INSERT INTO `wp_rg_form_view` VALUES("47694", "15", "2017-01-31 05:09:55", "184.66.48.13", "30");
INSERT INTO `wp_rg_form_view` VALUES("47695", "10", "2017-01-31 06:11:03", "77.75.76.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("47696", "3", "2017-01-31 06:11:04", "77.75.76.170", "30");
INSERT INTO `wp_rg_form_view` VALUES("47697", "15", "2017-01-31 06:11:04", "77.75.76.170", "12");
INSERT INTO `wp_rg_form_view` VALUES("47698", "2", "2017-01-31 07:59:37", "68.180.228.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("47699", "3", "2017-01-31 07:59:41", "68.180.228.164", "7");
INSERT INTO `wp_rg_form_view` VALUES("47700", "15", "2017-01-31 07:59:41", "68.180.228.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("47701", "3", "2017-01-31 08:03:59", "202.46.56.91", "14");
INSERT INTO `wp_rg_form_view` VALUES("47702", "15", "2017-01-31 08:03:59", "202.46.56.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("47703", "8", "2017-01-31 08:37:28", "202.46.57.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("47704", "3", "2017-01-31 09:03:01", "77.75.78.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("47705", "15", "2017-01-31 09:03:01", "77.75.78.161", "18");
INSERT INTO `wp_rg_form_view` VALUES("47706", "15", "2017-01-31 10:07:56", "68.180.228.164", "16");
INSERT INTO `wp_rg_form_view` VALUES("47707", "3", "2017-01-31 10:07:56", "68.180.228.164", "35");
INSERT INTO `wp_rg_form_view` VALUES("47708", "11", "2017-01-31 11:24:55", "202.46.55.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("47709", "3", "2017-01-31 11:24:56", "202.46.55.173", "35");
INSERT INTO `wp_rg_form_view` VALUES("47710", "15", "2017-01-31 11:24:56", "202.46.55.173", "15");
INSERT INTO `wp_rg_form_view` VALUES("47711", "3", "2017-01-31 12:15:01", "199.21.99.202", "21");
INSERT INTO `wp_rg_form_view` VALUES("47712", "15", "2017-01-31 12:15:01", "199.21.99.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("47713", "3", "2017-01-31 13:05:23", "202.46.54.93", "43");
INSERT INTO `wp_rg_form_view` VALUES("47714", "15", "2017-01-31 13:05:23", "202.46.54.93", "18");
INSERT INTO `wp_rg_form_view` VALUES("47715", "3", "2017-01-31 14:01:16", "109.163.234.5", "56");
INSERT INTO `wp_rg_form_view` VALUES("47716", "15", "2017-01-31 14:01:17", "109.163.234.5", "24");
INSERT INTO `wp_rg_form_view` VALUES("47717", "3", "2017-01-31 15:19:17", "77.75.79.11", "7");
INSERT INTO `wp_rg_form_view` VALUES("47718", "15", "2017-01-31 15:19:18", "77.75.79.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("47719", "3", "2017-01-31 16:23:18", "77.75.78.162", "56");
INSERT INTO `wp_rg_form_view` VALUES("47720", "15", "2017-01-31 16:23:20", "77.75.78.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("47721", "11", "2017-01-31 16:59:04", "202.46.48.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("47722", "3", "2017-01-31 17:07:39", "77.75.76.165", "142");
INSERT INTO `wp_rg_form_view` VALUES("47723", "15", "2017-01-31 17:07:40", "77.75.76.165", "67");
INSERT INTO `wp_rg_form_view` VALUES("47724", "14", "2017-01-31 17:55:35", "24.108.181.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("47725", "3", "2017-01-31 18:39:06", "173.34.226.26", "15");
INSERT INTO `wp_rg_form_view` VALUES("47726", "15", "2017-01-31 18:39:06", "173.34.226.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("47727", "3", "2017-01-31 19:07:00", "64.114.222.220", "28");
INSERT INTO `wp_rg_form_view` VALUES("47728", "15", "2017-01-31 19:07:00", "64.114.222.220", "12");
INSERT INTO `wp_rg_form_view` VALUES("47729", "8", "2017-01-31 19:46:59", "202.46.53.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("47730", "3", "2017-01-31 20:08:18", "70.67.182.91", "45");
INSERT INTO `wp_rg_form_view` VALUES("47731", "15", "2017-01-31 20:08:18", "70.67.182.91", "18");
INSERT INTO `wp_rg_form_view` VALUES("47732", "3", "2017-01-31 21:14:40", "184.66.252.209", "76");
INSERT INTO `wp_rg_form_view` VALUES("47733", "15", "2017-01-31 21:14:41", "184.66.252.209", "34");
INSERT INTO `wp_rg_form_view` VALUES("47734", "14", "2017-01-31 21:54:55", "202.129.29.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("47735", "15", "2017-01-31 22:06:40", "68.180.228.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("47736", "3", "2017-01-31 22:06:40", "68.180.228.164", "7");
INSERT INTO `wp_rg_form_view` VALUES("47737", "3", "2017-01-31 23:00:42", "77.75.78.161", "70");
INSERT INTO `wp_rg_form_view` VALUES("47738", "15", "2017-01-31 23:00:43", "77.75.78.161", "30");
INSERT INTO `wp_rg_form_view` VALUES("47739", "3", "2017-02-01 00:00:03", "142.36.27.82", "106");
INSERT INTO `wp_rg_form_view` VALUES("47740", "15", "2017-02-01 00:00:03", "142.36.27.82", "42");
INSERT INTO `wp_rg_form_view` VALUES("47741", "14", "2017-02-01 00:00:09", "142.36.27.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("47742", "10", "2017-02-01 00:00:27", "157.55.39.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("47743", "12", "2017-02-01 00:07:15", "202.46.55.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("47744", "3", "2017-02-01 01:01:00", "212.109.201.73", "49");
INSERT INTO `wp_rg_form_view` VALUES("47745", "15", "2017-02-01 01:01:00", "212.109.201.73", "21");
INSERT INTO `wp_rg_form_view` VALUES("47746", "10", "2017-02-01 02:11:08", "5.35.25.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("47747", "3", "2017-02-01 02:11:08", "5.35.25.103", "35");
INSERT INTO `wp_rg_form_view` VALUES("47748", "15", "2017-02-01 02:11:08", "5.35.25.103", "15");
INSERT INTO `wp_rg_form_view` VALUES("47749", "3", "2017-02-01 03:08:02", "216.244.66.237", "15");
INSERT INTO `wp_rg_form_view` VALUES("47750", "15", "2017-02-01 03:08:02", "216.244.66.237", "6");
INSERT INTO `wp_rg_form_view` VALUES("47751", "3", "2017-02-01 04:01:40", "202.46.57.166", "14");
INSERT INTO `wp_rg_form_view` VALUES("47752", "15", "2017-02-01 04:01:40", "202.46.57.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("47753", "3", "2017-02-01 05:22:50", "68.180.228.164", "22");
INSERT INTO `wp_rg_form_view` VALUES("47754", "15", "2017-02-01 05:22:50", "68.180.228.164", "9");
INSERT INTO `wp_rg_form_view` VALUES("47755", "13", "2017-02-01 05:42:10", "202.46.48.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("47756", "3", "2017-02-01 06:32:58", "206.87.156.224", "28");
INSERT INTO `wp_rg_form_view` VALUES("47757", "15", "2017-02-01 06:32:58", "206.87.156.224", "12");
INSERT INTO `wp_rg_form_view` VALUES("47758", "14", "2017-02-01 07:14:42", "93.127.138.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("47759", "3", "2017-02-01 07:14:45", "93.127.138.59", "21");
INSERT INTO `wp_rg_form_view` VALUES("47760", "15", "2017-02-01 07:14:45", "93.127.138.59", "9");
INSERT INTO `wp_rg_form_view` VALUES("47761", "3", "2017-02-01 08:10:37", "66.249.79.140", "142");
INSERT INTO `wp_rg_form_view` VALUES("47762", "15", "2017-02-01 08:10:37", "66.249.79.140", "60");
INSERT INTO `wp_rg_form_view` VALUES("47763", "3", "2017-02-01 09:01:18", "68.180.228.164", "30");
INSERT INTO `wp_rg_form_view` VALUES("47764", "15", "2017-02-01 09:28:52", "157.55.39.233", "12");
INSERT INTO `wp_rg_form_view` VALUES("47765", "10", "2017-02-01 09:48:06", "157.55.39.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("47766", "3", "2017-02-01 10:22:37", "68.180.228.164", "63");
INSERT INTO `wp_rg_form_view` VALUES("47767", "15", "2017-02-01 10:22:41", "68.180.228.164", "27");
INSERT INTO `wp_rg_form_view` VALUES("47768", "2", "2017-02-01 10:27:00", "54.183.137.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("47769", "14", "2017-02-01 10:27:04", "54.183.137.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("47770", "3", "2017-02-01 11:05:00", "66.249.79.140", "35");
INSERT INTO `wp_rg_form_view` VALUES("47771", "15", "2017-02-01 11:05:00", "66.249.79.140", "15");
INSERT INTO `wp_rg_form_view` VALUES("47772", "3", "2017-02-01 12:41:08", "157.55.39.56", "7");
INSERT INTO `wp_rg_form_view` VALUES("47773", "15", "2017-02-01 12:41:08", "157.55.39.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("47774", "3", "2017-02-01 13:12:16", "157.55.39.182", "42");
INSERT INTO `wp_rg_form_view` VALUES("47775", "15", "2017-02-01 13:12:16", "157.55.39.182", "18");
INSERT INTO `wp_rg_form_view` VALUES("47776", "3", "2017-02-01 14:25:21", "202.46.58.167", "28");
INSERT INTO `wp_rg_form_view` VALUES("47777", "15", "2017-02-01 14:25:21", "202.46.58.167", "12");
INSERT INTO `wp_rg_form_view` VALUES("47778", "3", "2017-02-01 15:25:23", "68.180.228.164", "14");
INSERT INTO `wp_rg_form_view` VALUES("47779", "15", "2017-02-01 15:25:23", "68.180.228.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("47780", "3", "2017-02-01 16:05:49", "202.46.55.139", "116");
INSERT INTO `wp_rg_form_view` VALUES("47781", "15", "2017-02-01 16:05:50", "202.46.55.139", "42");
INSERT INTO `wp_rg_form_view` VALUES("47782", "3", "2017-02-01 17:02:40", "154.20.56.175", "128");
INSERT INTO `wp_rg_form_view` VALUES("47783", "15", "2017-02-01 17:02:40", "154.20.56.175", "54");
INSERT INTO `wp_rg_form_view` VALUES("47784", "15", "2017-02-01 18:16:17", "142.104.37.87", "38");
INSERT INTO `wp_rg_form_view` VALUES("47785", "3", "2017-02-01 18:16:18", "142.104.37.87", "76");
INSERT INTO `wp_rg_form_view` VALUES("47786", "14", "2017-02-01 18:22:47", "142.36.123.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("47787", "3", "2017-02-01 19:02:53", "202.46.56.68", "14");
INSERT INTO `wp_rg_form_view` VALUES("47788", "15", "2017-02-01 19:02:53", "202.46.56.68", "7");
INSERT INTO `wp_rg_form_view` VALUES("47789", "14", "2017-02-01 20:00:25", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("47790", "3", "2017-02-01 20:00:26", "68.180.229.247", "42");
INSERT INTO `wp_rg_form_view` VALUES("47791", "15", "2017-02-01 20:00:27", "68.180.229.247", "19");
INSERT INTO `wp_rg_form_view` VALUES("47792", "10", "2017-02-01 20:43:21", "202.46.52.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("47793", "15", "2017-02-01 21:05:41", "108.172.115.133", "52");
INSERT INTO `wp_rg_form_view` VALUES("47794", "3", "2017-02-01 21:05:41", "108.172.115.133", "119");
INSERT INTO `wp_rg_form_view` VALUES("47795", "14", "2017-02-01 21:29:16", "108.172.115.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("47796", "3", "2017-02-01 22:10:00", "184.69.173.146", "29");
INSERT INTO `wp_rg_form_view` VALUES("47797", "15", "2017-02-01 22:10:01", "184.69.173.146", "13");
INSERT INTO `wp_rg_form_view` VALUES("47798", "3", "2017-02-01 23:30:48", "202.46.57.18", "7");
INSERT INTO `wp_rg_form_view` VALUES("47799", "15", "2017-02-01 23:30:48", "202.46.57.18", "3");
INSERT INTO `wp_rg_form_view` VALUES("47800", "3", "2017-02-02 00:04:17", "202.46.52.102", "528");
INSERT INTO `wp_rg_form_view` VALUES("47801", "15", "2017-02-02 00:04:18", "202.46.52.102", "224");
INSERT INTO `wp_rg_form_view` VALUES("47802", "14", "2017-02-02 00:10:48", "96.50.25.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("47803", "2", "2017-02-02 00:15:22", "174.127.133.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("47804", "11", "2017-02-02 00:19:22", "174.127.133.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("47805", "10", "2017-02-02 00:43:14", "174.127.133.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("47806", "3", "2017-02-02 01:11:16", "202.46.50.134", "22");
INSERT INTO `wp_rg_form_view` VALUES("47807", "15", "2017-02-02 01:11:16", "202.46.50.134", "9");
INSERT INTO `wp_rg_form_view` VALUES("47808", "3", "2017-02-02 02:30:12", "42.122.1.54", "16");
INSERT INTO `wp_rg_form_view` VALUES("47809", "15", "2017-02-02 02:30:12", "42.122.1.54", "6");
INSERT INTO `wp_rg_form_view` VALUES("47810", "3", "2017-02-02 03:01:24", "207.46.13.184", "2139");
INSERT INTO `wp_rg_form_view` VALUES("47811", "15", "2017-02-02 03:01:25", "207.46.13.184", "960");
INSERT INTO `wp_rg_form_view` VALUES("47812", "14", "2017-02-02 03:25:59", "138.197.19.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("47813", "11", "2017-02-02 03:26:20", "138.197.19.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("47814", "6", "2017-02-02 03:45:35", "138.197.19.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("47815", "9", "2017-02-02 03:52:50", "138.197.19.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("47816", "3", "2017-02-02 04:00:06", "138.197.19.14", "2066");
INSERT INTO `wp_rg_form_view` VALUES("47817", "15", "2017-02-02 04:00:06", "138.197.19.14", "909");
INSERT INTO `wp_rg_form_view` VALUES("47818", "10", "2017-02-02 04:08:06", "138.197.19.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("47819", "2", "2017-02-02 04:32:52", "138.197.19.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("47820", "13", "2017-02-02 04:42:50", "138.197.19.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("47821", "3", "2017-02-02 05:06:16", "207.46.13.184", "31");
INSERT INTO `wp_rg_form_view` VALUES("47822", "15", "2017-02-02 05:06:17", "207.46.13.184", "12");
INSERT INTO `wp_rg_form_view` VALUES("47823", "3", "2017-02-02 06:05:49", "207.46.13.127", "78");
INSERT INTO `wp_rg_form_view` VALUES("47824", "15", "2017-02-02 06:05:49", "207.46.13.127", "33");
INSERT INTO `wp_rg_form_view` VALUES("47825", "10", "2017-02-02 06:07:55", "207.46.13.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("47826", "3", "2017-02-02 07:13:48", "202.46.49.69", "28");
INSERT INTO `wp_rg_form_view` VALUES("47827", "15", "2017-02-02 07:13:55", "202.46.49.69", "14");
INSERT INTO `wp_rg_form_view` VALUES("47828", "13", "2017-02-02 07:19:19", "207.46.13.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("47829", "10", "2017-02-02 07:35:34", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("47830", "3", "2017-02-02 08:16:41", "68.180.229.247", "21");
INSERT INTO `wp_rg_form_view` VALUES("47831", "15", "2017-02-02 08:16:42", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("47832", "10", "2017-02-02 08:34:38", "40.77.167.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("47833", "10", "2017-02-02 09:10:00", "207.46.13.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("47834", "3", "2017-02-02 09:10:01", "207.46.13.184", "35");
INSERT INTO `wp_rg_form_view` VALUES("47835", "15", "2017-02-02 09:10:01", "207.46.13.184", "15");
INSERT INTO `wp_rg_form_view` VALUES("47836", "7", "2017-02-02 09:29:43", "207.46.13.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("47837", "3", "2017-02-02 10:51:07", "207.46.13.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("47838", "15", "2017-02-02 10:51:07", "207.46.13.184", "3");
INSERT INTO `wp_rg_form_view` VALUES("47839", "10", "2017-02-02 11:12:52", "40.77.167.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("47840", "3", "2017-02-02 11:12:52", "40.77.167.45", "21");
INSERT INTO `wp_rg_form_view` VALUES("47841", "15", "2017-02-02 11:12:53", "40.77.167.45", "9");
INSERT INTO `wp_rg_form_view` VALUES("47842", "3", "2017-02-02 12:04:04", "157.55.39.53", "28");
INSERT INTO `wp_rg_form_view` VALUES("47843", "15", "2017-02-02 12:04:05", "157.55.39.53", "20");
INSERT INTO `wp_rg_form_view` VALUES("47844", "9", "2017-02-02 12:14:52", "202.46.50.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("47845", "3", "2017-02-02 13:00:40", "66.249.79.148", "56");
INSERT INTO `wp_rg_form_view` VALUES("47846", "15", "2017-02-02 13:00:40", "66.249.79.148", "21");
INSERT INTO `wp_rg_form_view` VALUES("47847", "10", "2017-02-02 13:21:13", "207.46.13.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("47848", "10", "2017-02-02 14:08:13", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("47849", "3", "2017-02-02 14:08:13", "157.55.39.53", "35");
INSERT INTO `wp_rg_form_view` VALUES("47850", "15", "2017-02-02 14:08:14", "157.55.39.53", "15");
INSERT INTO `wp_rg_form_view` VALUES("47851", "14", "2017-02-02 14:22:50", "38.102.226.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("47852", "10", "2017-02-02 15:02:47", "207.46.13.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("47853", "3", "2017-02-02 15:02:47", "207.46.13.127", "35");
INSERT INTO `wp_rg_form_view` VALUES("47854", "15", "2017-02-02 15:02:48", "207.46.13.127", "15");
INSERT INTO `wp_rg_form_view` VALUES("47855", "3", "2017-02-02 16:09:17", "202.46.58.54", "14");
INSERT INTO `wp_rg_form_view` VALUES("47856", "15", "2017-02-02 16:09:17", "202.46.58.54", "6");
INSERT INTO `wp_rg_form_view` VALUES("47857", "3", "2017-02-02 17:06:20", "77.75.78.163", "50");
INSERT INTO `wp_rg_form_view` VALUES("47858", "15", "2017-02-02 17:06:20", "77.75.78.163", "21");
INSERT INTO `wp_rg_form_view` VALUES("47859", "2", "2017-02-02 17:21:36", "40.77.167.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("47860", "3", "2017-02-02 18:00:02", "70.66.211.204", "14");
INSERT INTO `wp_rg_form_view` VALUES("47861", "15", "2017-02-02 18:00:02", "70.66.211.204", "6");
INSERT INTO `wp_rg_form_view` VALUES("47862", "3", "2017-02-02 19:01:06", "77.75.78.170", "52");
INSERT INTO `wp_rg_form_view` VALUES("47863", "15", "2017-02-02 19:01:07", "77.75.78.170", "22");
INSERT INTO `wp_rg_form_view` VALUES("47864", "14", "2017-02-02 19:36:27", "143.202.155.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("47865", "3", "2017-02-02 20:03:44", "202.46.52.109", "80");
INSERT INTO `wp_rg_form_view` VALUES("47866", "15", "2017-02-02 20:03:44", "202.46.52.109", "33");
INSERT INTO `wp_rg_form_view` VALUES("47867", "14", "2017-02-02 20:24:58", "24.67.72.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("47868", "10", "2017-02-02 21:06:49", "40.77.167.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("47869", "3", "2017-02-02 21:06:49", "40.77.167.42", "36");
INSERT INTO `wp_rg_form_view` VALUES("47870", "15", "2017-02-02 21:06:49", "40.77.167.42", "16");
INSERT INTO `wp_rg_form_view` VALUES("47871", "3", "2017-02-02 22:11:49", "46.229.168.72", "85");
INSERT INTO `wp_rg_form_view` VALUES("47872", "15", "2017-02-02 22:11:54", "46.229.168.72", "33");
INSERT INTO `wp_rg_form_view` VALUES("47873", "3", "2017-02-02 23:08:51", "66.249.79.148", "105");
INSERT INTO `wp_rg_form_view` VALUES("47874", "15", "2017-02-02 23:08:51", "66.249.79.148", "45");
INSERT INTO `wp_rg_form_view` VALUES("47875", "2", "2017-02-02 23:51:44", "34.197.199.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("47876", "11", "2017-02-02 23:51:53", "66.34.215.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("47877", "3", "2017-02-03 00:28:50", "68.180.229.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("47878", "15", "2017-02-03 00:28:51", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("47879", "10", "2017-02-03 01:09:18", "77.75.78.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("47880", "3", "2017-02-03 01:09:18", "77.75.78.162", "43");
INSERT INTO `wp_rg_form_view` VALUES("47881", "15", "2017-02-03 01:09:18", "77.75.78.162", "18");
INSERT INTO `wp_rg_form_view` VALUES("47882", "3", "2017-02-03 02:13:22", "163.172.65.20", "32");
INSERT INTO `wp_rg_form_view` VALUES("47883", "15", "2017-02-03 02:13:23", "163.172.65.20", "12");
INSERT INTO `wp_rg_form_view` VALUES("47884", "10", "2017-02-03 02:41:45", "157.55.39.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("47885", "3", "2017-02-03 03:23:12", "24.68.234.221", "66");
INSERT INTO `wp_rg_form_view` VALUES("47886", "15", "2017-02-03 03:23:13", "24.68.234.221", "27");
INSERT INTO `wp_rg_form_view` VALUES("47887", "14", "2017-02-03 03:44:33", "176.31.96.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("47888", "14", "2017-02-03 04:23:00", "93.127.138.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("47889", "3", "2017-02-03 04:23:00", "93.127.138.119", "7");
INSERT INTO `wp_rg_form_view` VALUES("47890", "15", "2017-02-03 04:23:00", "93.127.138.119", "3");
INSERT INTO `wp_rg_form_view` VALUES("47891", "3", "2017-02-03 05:03:14", "68.180.229.247", "58");
INSERT INTO `wp_rg_form_view` VALUES("47892", "15", "2017-02-03 05:03:15", "68.180.229.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("47893", "11", "2017-02-03 05:53:44", "93.180.64.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("47894", "3", "2017-02-03 06:15:47", "163.172.65.132", "7");
INSERT INTO `wp_rg_form_view` VALUES("47895", "15", "2017-02-03 06:15:48", "163.172.65.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("47896", "3", "2017-02-03 07:07:14", "40.77.167.35", "67");
INSERT INTO `wp_rg_form_view` VALUES("47897", "15", "2017-02-03 07:07:14", "40.77.167.35", "44");
INSERT INTO `wp_rg_form_view` VALUES("47898", "14", "2017-02-03 07:31:27", "89.47.22.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("47899", "10", "2017-02-03 07:53:57", "163.172.65.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("47900", "2", "2017-02-03 07:57:38", "182.74.23.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("47901", "13", "2017-02-03 08:05:08", "40.77.167.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("47902", "3", "2017-02-03 08:05:09", "40.77.167.63", "26");
INSERT INTO `wp_rg_form_view` VALUES("47903", "15", "2017-02-03 08:05:09", "40.77.167.63", "16");
INSERT INTO `wp_rg_form_view` VALUES("47904", "14", "2017-02-03 08:29:39", "104.160.11.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("47905", "3", "2017-02-03 09:38:31", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("47906", "15", "2017-02-03 09:38:32", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("47907", "3", "2017-02-03 10:12:49", "68.180.229.247", "40");
INSERT INTO `wp_rg_form_view` VALUES("47908", "15", "2017-02-03 10:12:50", "68.180.229.247", "24");
INSERT INTO `wp_rg_form_view` VALUES("47909", "2", "2017-02-03 10:36:17", "62.210.80.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("47910", "3", "2017-02-03 11:07:48", "163.172.66.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("47911", "15", "2017-02-03 11:07:48", "163.172.66.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("47912", "3", "2017-02-03 12:06:23", "40.77.167.8", "26");
INSERT INTO `wp_rg_form_view` VALUES("47913", "15", "2017-02-03 12:06:23", "40.77.167.8", "16");
INSERT INTO `wp_rg_form_view` VALUES("47914", "10", "2017-02-03 12:54:03", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("47915", "9", "2017-02-03 13:01:21", "202.46.53.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("47916", "3", "2017-02-03 13:01:21", "202.46.53.146", "18");
INSERT INTO `wp_rg_form_view` VALUES("47917", "15", "2017-02-03 13:01:21", "202.46.53.146", "12");
INSERT INTO `wp_rg_form_view` VALUES("47918", "10", "2017-02-03 13:49:58", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("47919", "3", "2017-02-03 14:08:18", "202.46.52.201", "87");
INSERT INTO `wp_rg_form_view` VALUES("47920", "15", "2017-02-03 14:08:18", "202.46.52.201", "52");
INSERT INTO `wp_rg_form_view` VALUES("47921", "14", "2017-02-03 14:38:13", "78.97.84.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("47922", "3", "2017-02-03 15:08:56", "163.172.66.3", "242");
INSERT INTO `wp_rg_form_view` VALUES("47923", "15", "2017-02-03 15:08:56", "163.172.66.3", "157");
INSERT INTO `wp_rg_form_view` VALUES("47924", "11", "2017-02-03 15:34:39", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("47925", "10", "2017-02-03 15:34:51", "208.43.225.85", "3");
INSERT INTO `wp_rg_form_view` VALUES("47926", "3", "2017-02-03 17:24:29", "157.55.39.53", "81");
INSERT INTO `wp_rg_form_view` VALUES("47927", "15", "2017-02-03 17:24:33", "157.55.39.53", "53");
INSERT INTO `wp_rg_form_view` VALUES("47928", "10", "2017-02-03 18:20:27", "157.55.39.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("47929", "3", "2017-02-03 18:20:27", "157.55.39.53", "60");
INSERT INTO `wp_rg_form_view` VALUES("47930", "15", "2017-02-03 18:20:28", "157.55.39.53", "40");
INSERT INTO `wp_rg_form_view` VALUES("47931", "14", "2017-02-03 18:42:04", "24.69.158.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("47932", "5", "2017-02-03 19:13:37", "207.46.13.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("47933", "3", "2017-02-03 19:13:38", "207.46.13.153", "18");
INSERT INTO `wp_rg_form_view` VALUES("47934", "15", "2017-02-03 19:13:38", "207.46.13.153", "12");
INSERT INTO `wp_rg_form_view` VALUES("47935", "3", "2017-02-03 20:13:19", "157.55.39.53", "19");
INSERT INTO `wp_rg_form_view` VALUES("47936", "15", "2017-02-03 20:13:21", "157.55.39.53", "12");
INSERT INTO `wp_rg_form_view` VALUES("47937", "10", "2017-02-03 20:25:49", "202.46.52.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("47938", "15", "2017-02-03 21:13:55", "163.172.66.165", "38");
INSERT INTO `wp_rg_form_view` VALUES("47939", "3", "2017-02-03 21:14:00", "163.172.66.165", "55");
INSERT INTO `wp_rg_form_view` VALUES("47940", "10", "2017-02-03 21:32:48", "202.46.50.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("47941", "3", "2017-02-03 22:06:19", "202.46.55.60", "58");
INSERT INTO `wp_rg_form_view` VALUES("47942", "15", "2017-02-03 22:06:21", "202.46.55.60", "36");
INSERT INTO `wp_rg_form_view` VALUES("47943", "3", "2017-02-03 23:13:17", "202.46.49.205", "38");
INSERT INTO `wp_rg_form_view` VALUES("47944", "15", "2017-02-03 23:13:18", "202.46.49.205", "24");
INSERT INTO `wp_rg_form_view` VALUES("47945", "6", "2017-02-04 00:20:16", "202.46.58.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("47946", "3", "2017-02-04 00:20:16", "202.46.58.123", "19");
INSERT INTO `wp_rg_form_view` VALUES("47947", "15", "2017-02-04 00:20:16", "202.46.58.123", "12");
INSERT INTO `wp_rg_form_view` VALUES("47948", "3", "2017-02-04 01:16:38", "163.172.66.22", "43");
INSERT INTO `wp_rg_form_view` VALUES("47949", "15", "2017-02-04 01:16:38", "163.172.66.22", "28");
INSERT INTO `wp_rg_form_view` VALUES("47950", "10", "2017-02-04 01:27:23", "207.46.13.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("47951", "3", "2017-02-04 02:01:24", "66.249.79.144", "37");
INSERT INTO `wp_rg_form_view` VALUES("47952", "15", "2017-02-04 02:01:24", "66.249.79.144", "24");
INSERT INTO `wp_rg_form_view` VALUES("47953", "2", "2017-02-04 02:23:16", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("47954", "10", "2017-02-04 03:04:27", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("47955", "3", "2017-02-04 03:04:27", "66.249.79.140", "24");
INSERT INTO `wp_rg_form_view` VALUES("47956", "15", "2017-02-04 03:04:28", "66.249.79.140", "16");
INSERT INTO `wp_rg_form_view` VALUES("47957", "8", "2017-02-04 03:32:45", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("47958", "3", "2017-02-04 04:18:09", "207.46.13.153", "12");
INSERT INTO `wp_rg_form_view` VALUES("47959", "15", "2017-02-04 04:18:09", "207.46.13.153", "8");
INSERT INTO `wp_rg_form_view` VALUES("47960", "9", "2017-02-04 05:29:56", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("47961", "3", "2017-02-04 05:29:56", "157.55.39.53", "43");
INSERT INTO `wp_rg_form_view` VALUES("47962", "15", "2017-02-04 05:29:57", "157.55.39.53", "28");
INSERT INTO `wp_rg_form_view` VALUES("47963", "3", "2017-02-04 06:16:36", "202.46.57.169", "27");
INSERT INTO `wp_rg_form_view` VALUES("47964", "15", "2017-02-04 06:16:36", "202.46.57.169", "16");
INSERT INTO `wp_rg_form_view` VALUES("47965", "3", "2017-02-04 07:12:50", "207.46.13.187", "26");
INSERT INTO `wp_rg_form_view` VALUES("47966", "15", "2017-02-04 07:12:51", "207.46.13.187", "16");
INSERT INTO `wp_rg_form_view` VALUES("47967", "3", "2017-02-04 08:02:30", "76.68.47.125", "57");
INSERT INTO `wp_rg_form_view` VALUES("47968", "15", "2017-02-04 08:02:30", "76.68.47.125", "36");
INSERT INTO `wp_rg_form_view` VALUES("47969", "14", "2017-02-04 08:27:49", "191.101.67.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("47970", "3", "2017-02-04 09:08:16", "68.180.229.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("47971", "15", "2017-02-04 09:08:17", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("47972", "3", "2017-02-04 10:50:50", "202.46.58.14", "13");
INSERT INTO `wp_rg_form_view` VALUES("47973", "15", "2017-02-04 10:50:51", "202.46.58.14", "8");
INSERT INTO `wp_rg_form_view` VALUES("47974", "10", "2017-02-04 10:57:19", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("47975", "3", "2017-02-04 11:25:28", "95.165.9.72", "18");
INSERT INTO `wp_rg_form_view` VALUES("47976", "15", "2017-02-04 11:25:28", "95.165.9.72", "12");
INSERT INTO `wp_rg_form_view` VALUES("47977", "3", "2017-02-04 12:12:38", "157.55.39.53", "57");
INSERT INTO `wp_rg_form_view` VALUES("47978", "15", "2017-02-04 12:12:38", "157.55.39.53", "36");
INSERT INTO `wp_rg_form_view` VALUES("47979", "10", "2017-02-04 12:42:03", "5.35.16.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("47980", "3", "2017-02-04 13:01:42", "66.249.79.144", "12");
INSERT INTO `wp_rg_form_view` VALUES("47981", "15", "2017-02-04 13:01:42", "66.249.79.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("47982", "3", "2017-02-04 14:26:32", "50.69.12.176", "42");
INSERT INTO `wp_rg_form_view` VALUES("47983", "15", "2017-02-04 14:26:32", "50.69.12.176", "28");
INSERT INTO `wp_rg_form_view` VALUES("47984", "3", "2017-02-04 15:22:08", "207.46.13.187", "24");
INSERT INTO `wp_rg_form_view` VALUES("47985", "15", "2017-02-04 15:22:09", "207.46.13.187", "16");
INSERT INTO `wp_rg_form_view` VALUES("47986", "3", "2017-02-04 16:03:47", "93.180.64.230", "67");
INSERT INTO `wp_rg_form_view` VALUES("47987", "15", "2017-02-04 16:03:47", "93.180.64.230", "45");
INSERT INTO `wp_rg_form_view` VALUES("47988", "10", "2017-02-04 16:25:09", "163.172.66.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("47989", "15", "2017-02-04 17:04:52", "66.249.79.140", "150");
INSERT INTO `wp_rg_form_view` VALUES("47990", "3", "2017-02-04 17:04:52", "66.249.79.140", "226");
INSERT INTO `wp_rg_form_view` VALUES("47991", "11", "2017-02-04 17:41:18", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("47992", "2", "2017-02-04 17:41:24", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("47993", "3", "2017-02-04 18:07:21", "68.180.229.247", "19");
INSERT INTO `wp_rg_form_view` VALUES("47994", "15", "2017-02-04 18:07:22", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("47995", "5", "2017-02-04 18:48:26", "207.46.13.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("47996", "14", "2017-02-04 19:07:51", "54.153.127.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("47997", "3", "2017-02-04 19:07:53", "54.153.127.129", "93");
INSERT INTO `wp_rg_form_view` VALUES("47998", "15", "2017-02-04 19:07:53", "54.153.127.129", "60");
INSERT INTO `wp_rg_form_view` VALUES("47999", "3", "2017-02-04 20:03:58", "163.172.65.38", "31");
INSERT INTO `wp_rg_form_view` VALUES("48000", "15", "2017-02-04 20:03:58", "163.172.65.38", "21");
INSERT INTO `wp_rg_form_view` VALUES("48001", "10", "2017-02-04 20:18:35", "202.46.54.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("48002", "3", "2017-02-04 21:03:40", "207.46.13.187", "19");
INSERT INTO `wp_rg_form_view` VALUES("48003", "15", "2017-02-04 21:03:49", "207.46.13.187", "12");
INSERT INTO `wp_rg_form_view` VALUES("48004", "3", "2017-02-04 23:12:25", "202.46.55.176", "7");
INSERT INTO `wp_rg_form_view` VALUES("48005", "15", "2017-02-04 23:12:28", "202.46.55.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("48006", "3", "2017-02-05 00:19:25", "202.46.49.144", "13");
INSERT INTO `wp_rg_form_view` VALUES("48007", "15", "2017-02-05 00:19:26", "202.46.49.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("48008", "14", "2017-02-05 01:10:11", "107.175.71.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("48009", "3", "2017-02-05 01:10:11", "107.175.71.254", "37");
INSERT INTO `wp_rg_form_view` VALUES("48010", "15", "2017-02-05 01:10:12", "107.175.71.254", "24");
INSERT INTO `wp_rg_form_view` VALUES("48011", "3", "2017-02-05 02:33:21", "202.46.56.98", "6");
INSERT INTO `wp_rg_form_view` VALUES("48012", "15", "2017-02-05 02:33:21", "202.46.56.98", "4");
INSERT INTO `wp_rg_form_view` VALUES("48013", "3", "2017-02-05 03:06:49", "202.46.57.89", "25");
INSERT INTO `wp_rg_form_view` VALUES("48014", "15", "2017-02-05 03:06:50", "202.46.57.89", "16");
INSERT INTO `wp_rg_form_view` VALUES("48015", "14", "2017-02-05 03:41:56", "24.68.227.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("48016", "8", "2017-02-05 03:52:05", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("48017", "3", "2017-02-05 04:47:19", "202.46.57.12", "6");
INSERT INTO `wp_rg_form_view` VALUES("48018", "15", "2017-02-05 04:47:21", "202.46.57.12", "4");
INSERT INTO `wp_rg_form_view` VALUES("48019", "3", "2017-02-05 05:00:30", "24.68.113.67", "42");
INSERT INTO `wp_rg_form_view` VALUES("48020", "15", "2017-02-05 05:00:30", "24.68.113.67", "28");
INSERT INTO `wp_rg_form_view` VALUES("48021", "3", "2017-02-05 06:05:37", "157.55.39.53", "30");
INSERT INTO `wp_rg_form_view` VALUES("48022", "15", "2017-02-05 06:05:37", "157.55.39.53", "20");
INSERT INTO `wp_rg_form_view` VALUES("48023", "3", "2017-02-05 07:32:03", "54.91.28.215", "12");
INSERT INTO `wp_rg_form_view` VALUES("48024", "15", "2017-02-05 07:32:04", "54.91.28.215", "8");
INSERT INTO `wp_rg_form_view` VALUES("48025", "3", "2017-02-05 08:02:04", "202.46.49.116", "30");
INSERT INTO `wp_rg_form_view` VALUES("48026", "15", "2017-02-05 08:02:04", "202.46.49.116", "20");
INSERT INTO `wp_rg_form_view` VALUES("48027", "14", "2017-02-05 09:01:50", "64.145.76.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("48028", "3", "2017-02-05 09:01:51", "64.145.76.68", "36");
INSERT INTO `wp_rg_form_view` VALUES("48029", "15", "2017-02-05 09:01:51", "64.145.76.68", "24");
INSERT INTO `wp_rg_form_view` VALUES("48030", "8", "2017-02-05 09:16:33", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("48031", "10", "2017-02-05 09:53:20", "199.16.157.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("48032", "3", "2017-02-05 10:16:02", "202.46.55.143", "30");
INSERT INTO `wp_rg_form_view` VALUES("48033", "15", "2017-02-05 10:16:02", "202.46.55.143", "20");
INSERT INTO `wp_rg_form_view` VALUES("48034", "14", "2017-02-05 10:46:01", "204.152.206.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("48035", "3", "2017-02-05 11:04:35", "31.187.76.10", "66");
INSERT INTO `wp_rg_form_view` VALUES("48036", "15", "2017-02-05 11:04:36", "31.187.76.10", "40");
INSERT INTO `wp_rg_form_view` VALUES("48037", "14", "2017-02-05 11:32:13", "54.172.126.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("48038", "3", "2017-02-05 12:03:14", "68.180.229.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("48039", "15", "2017-02-05 12:03:14", "68.180.229.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("48040", "14", "2017-02-05 12:13:40", "107.173.195.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("48041", "3", "2017-02-05 13:07:40", "66.249.79.148", "48");
INSERT INTO `wp_rg_form_view` VALUES("48042", "15", "2017-02-05 13:07:41", "66.249.79.148", "32");
INSERT INTO `wp_rg_form_view` VALUES("48043", "3", "2017-02-05 14:10:14", "40.77.167.32", "26");
INSERT INTO `wp_rg_form_view` VALUES("48044", "15", "2017-02-05 14:10:15", "40.77.167.32", "16");
INSERT INTO `wp_rg_form_view` VALUES("48045", "14", "2017-02-05 14:52:46", "107.175.148.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("48046", "6", "2017-02-05 15:10:18", "163.172.66.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("48047", "3", "2017-02-05 15:10:18", "163.172.66.68", "19");
INSERT INTO `wp_rg_form_view` VALUES("48048", "15", "2017-02-05 15:10:18", "163.172.66.68", "12");
INSERT INTO `wp_rg_form_view` VALUES("48049", "3", "2017-02-05 16:04:52", "68.180.229.247", "29");
INSERT INTO `wp_rg_form_view` VALUES("48050", "15", "2017-02-05 16:04:52", "68.180.229.247", "17");
INSERT INTO `wp_rg_form_view` VALUES("48051", "10", "2017-02-05 17:00:24", "163.172.66.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("48052", "3", "2017-02-05 17:00:24", "163.172.66.57", "26");
INSERT INTO `wp_rg_form_view` VALUES("48053", "15", "2017-02-05 17:00:24", "163.172.66.57", "16");
INSERT INTO `wp_rg_form_view` VALUES("48054", "3", "2017-02-05 18:19:48", "66.249.79.144", "30");
INSERT INTO `wp_rg_form_view` VALUES("48055", "15", "2017-02-05 18:19:48", "66.249.79.144", "20");
INSERT INTO `wp_rg_form_view` VALUES("48056", "10", "2017-02-05 18:36:52", "108.59.8.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("48057", "3", "2017-02-05 19:33:33", "207.194.133.9", "24");
INSERT INTO `wp_rg_form_view` VALUES("48058", "15", "2017-02-05 19:33:34", "207.194.133.9", "16");
INSERT INTO `wp_rg_form_view` VALUES("48059", "14", "2017-02-05 19:37:29", "77.75.78.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("48060", "3", "2017-02-05 20:02:21", "163.172.65.129", "55");
INSERT INTO `wp_rg_form_view` VALUES("48061", "15", "2017-02-05 20:02:21", "163.172.65.129", "38");
INSERT INTO `wp_rg_form_view` VALUES("48062", "3", "2017-02-05 21:16:15", "163.172.66.115", "45");
INSERT INTO `wp_rg_form_view` VALUES("48063", "15", "2017-02-05 21:16:15", "163.172.66.115", "28");
INSERT INTO `wp_rg_form_view` VALUES("48064", "14", "2017-02-05 21:48:59", "104.140.4.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("48065", "3", "2017-02-05 22:03:08", "184.66.243.207", "75");
INSERT INTO `wp_rg_form_view` VALUES("48066", "15", "2017-02-05 22:03:08", "184.66.243.207", "48");
INSERT INTO `wp_rg_form_view` VALUES("48067", "14", "2017-02-05 22:05:42", "173.234.249.238", "3");
INSERT INTO `wp_rg_form_view` VALUES("48068", "2", "2017-02-05 22:26:50", "40.77.167.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("48069", "3", "2017-02-05 23:02:16", "66.249.79.148", "61");
INSERT INTO `wp_rg_form_view` VALUES("48070", "15", "2017-02-05 23:02:17", "66.249.79.148", "41");
INSERT INTO `wp_rg_form_view` VALUES("48071", "7", "2017-02-05 23:53:14", "202.46.51.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("48072", "3", "2017-02-06 00:22:58", "68.180.229.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("48073", "15", "2017-02-06 00:26:45", "202.46.52.40", "20");
INSERT INTO `wp_rg_form_view` VALUES("48074", "3", "2017-02-06 01:00:14", "202.46.58.95", "36");
INSERT INTO `wp_rg_form_view` VALUES("48075", "15", "2017-02-06 01:00:14", "202.46.58.95", "25");
INSERT INTO `wp_rg_form_view` VALUES("48076", "3", "2017-02-06 02:07:13", "202.46.57.171", "50");
INSERT INTO `wp_rg_form_view` VALUES("48077", "15", "2017-02-06 02:07:14", "202.46.57.171", "32");
INSERT INTO `wp_rg_form_view` VALUES("48078", "3", "2017-02-06 03:14:10", "202.46.51.102", "103");
INSERT INTO `wp_rg_form_view` VALUES("48079", "15", "2017-02-06 03:14:11", "202.46.51.102", "65");
INSERT INTO `wp_rg_form_view` VALUES("48080", "3", "2017-02-06 04:21:11", "202.46.49.115", "47");
INSERT INTO `wp_rg_form_view` VALUES("48081", "15", "2017-02-06 04:21:11", "202.46.49.115", "29");
INSERT INTO `wp_rg_form_view` VALUES("48082", "8", "2017-02-06 04:44:56", "207.46.13.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("48083", "13", "2017-02-06 05:25:47", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("48084", "3", "2017-02-06 05:25:47", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("48085", "15", "2017-02-06 05:25:48", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("48086", "3", "2017-02-06 06:35:08", "202.46.48.84", "12");
INSERT INTO `wp_rg_form_view` VALUES("48087", "15", "2017-02-06 06:35:08", "202.46.48.84", "8");
INSERT INTO `wp_rg_form_view` VALUES("48088", "3", "2017-02-06 07:08:45", "202.46.53.161", "58");
INSERT INTO `wp_rg_form_view` VALUES("48089", "15", "2017-02-06 07:08:52", "202.46.53.161", "50");
INSERT INTO `wp_rg_form_view` VALUES("48090", "3", "2017-02-06 08:42:52", "40.77.167.16", "12");
INSERT INTO `wp_rg_form_view` VALUES("48091", "15", "2017-02-06 08:42:52", "40.77.167.16", "8");
INSERT INTO `wp_rg_form_view` VALUES("48092", "3", "2017-02-06 09:21:54", "202.46.55.124", "12");
INSERT INTO `wp_rg_form_view` VALUES("48093", "15", "2017-02-06 09:21:54", "202.46.55.124", "8");
INSERT INTO `wp_rg_form_view` VALUES("48094", "3", "2017-02-06 10:28:14", "93.180.64.230", "31");
INSERT INTO `wp_rg_form_view` VALUES("48095", "15", "2017-02-06 10:28:14", "93.180.64.230", "20");
INSERT INTO `wp_rg_form_view` VALUES("48096", "3", "2017-02-06 11:11:30", "195.22.127.140", "48");
INSERT INTO `wp_rg_form_view` VALUES("48097", "15", "2017-02-06 11:11:31", "195.22.127.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("48098", "12", "2017-02-06 11:38:26", "163.172.64.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("48099", "3", "2017-02-06 12:08:55", "40.77.167.76", "32");
INSERT INTO `wp_rg_form_view` VALUES("48100", "15", "2017-02-06 12:08:55", "40.77.167.76", "20");
INSERT INTO `wp_rg_form_view` VALUES("48101", "10", "2017-02-06 13:15:50", "77.75.78.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("48102", "3", "2017-02-06 13:15:54", "77.75.78.171", "18");
INSERT INTO `wp_rg_form_view` VALUES("48103", "15", "2017-02-06 13:15:55", "77.75.78.171", "12");
INSERT INTO `wp_rg_form_view` VALUES("48104", "12", "2017-02-06 13:27:27", "202.46.52.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("48105", "3", "2017-02-06 14:05:25", "68.180.229.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("48106", "12", "2017-02-06 14:10:40", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("48107", "15", "2017-02-06 14:10:41", "66.249.79.140", "20");
INSERT INTO `wp_rg_form_view` VALUES("48108", "14", "2017-02-06 14:32:57", "163.172.65.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("48109", "3", "2017-02-06 15:06:47", "52.205.194.185", "12");
INSERT INTO `wp_rg_form_view` VALUES("48110", "15", "2017-02-06 15:06:47", "52.205.194.185", "8");
INSERT INTO `wp_rg_form_view` VALUES("48111", "3", "2017-02-06 16:08:08", "220.181.108.181", "19");
INSERT INTO `wp_rg_form_view` VALUES("48112", "15", "2017-02-06 16:08:08", "220.181.108.181", "12");
INSERT INTO `wp_rg_form_view` VALUES("48113", "3", "2017-02-06 17:05:28", "77.75.79.72", "6");
INSERT INTO `wp_rg_form_view` VALUES("48114", "15", "2017-02-06 17:05:28", "77.75.79.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("48115", "3", "2017-02-06 18:01:46", "40.77.167.76", "26");
INSERT INTO `wp_rg_form_view` VALUES("48116", "15", "2017-02-06 18:01:51", "40.77.167.76", "16");
INSERT INTO `wp_rg_form_view` VALUES("48117", "3", "2017-02-06 19:13:56", "202.46.58.197", "49");
INSERT INTO `wp_rg_form_view` VALUES("48118", "15", "2017-02-06 19:14:26", "202.46.58.197", "32");
INSERT INTO `wp_rg_form_view` VALUES("48119", "14", "2017-02-06 19:35:51", "24.69.158.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("48120", "3", "2017-02-06 20:10:09", "77.75.78.160", "18");
INSERT INTO `wp_rg_form_view` VALUES("48121", "15", "2017-02-06 20:10:09", "77.75.78.160", "12");
INSERT INTO `wp_rg_form_view` VALUES("48122", "3", "2017-02-06 21:07:02", "202.46.48.133", "69");
INSERT INTO `wp_rg_form_view` VALUES("48123", "15", "2017-02-06 21:07:03", "202.46.48.133", "48");
INSERT INTO `wp_rg_form_view` VALUES("48124", "8", "2017-02-06 21:15:08", "163.172.65.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("48125", "14", "2017-02-06 21:17:35", "217.91.64.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("48126", "3", "2017-02-06 22:06:56", "163.172.64.193", "31");
INSERT INTO `wp_rg_form_view` VALUES("48127", "15", "2017-02-06 22:06:58", "163.172.64.193", "20");
INSERT INTO `wp_rg_form_view` VALUES("48128", "3", "2017-02-06 23:05:00", "217.69.133.231", "31");
INSERT INTO `wp_rg_form_view` VALUES("48129", "15", "2017-02-06 23:05:00", "217.69.133.231", "20");
INSERT INTO `wp_rg_form_view` VALUES("48130", "3", "2017-02-07 00:23:24", "77.75.79.109", "17");
INSERT INTO `wp_rg_form_view` VALUES("48131", "15", "2017-02-07 00:23:25", "77.75.79.109", "8");
INSERT INTO `wp_rg_form_view` VALUES("48132", "3", "2017-02-07 01:04:18", "77.75.76.166", "36");
INSERT INTO `wp_rg_form_view` VALUES("48133", "15", "2017-02-07 01:04:18", "77.75.76.166", "24");
INSERT INTO `wp_rg_form_view` VALUES("48134", "14", "2017-02-07 01:39:05", "24.69.159.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48135", "3", "2017-02-07 02:11:07", "77.75.78.164", "18");
INSERT INTO `wp_rg_form_view` VALUES("48136", "15", "2017-02-07 02:11:08", "77.75.78.164", "13");
INSERT INTO `wp_rg_form_view` VALUES("48137", "3", "2017-02-07 03:37:04", "163.172.66.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("48138", "15", "2017-02-07 03:37:04", "163.172.66.164", "8");
INSERT INTO `wp_rg_form_view` VALUES("48139", "3", "2017-02-07 04:52:28", "163.172.64.192", "12");
INSERT INTO `wp_rg_form_view` VALUES("48140", "15", "2017-02-07 04:52:28", "163.172.64.192", "8");
INSERT INTO `wp_rg_form_view` VALUES("48141", "5", "2017-02-07 05:04:03", "163.172.65.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("48142", "3", "2017-02-07 05:04:03", "163.172.65.128", "66");
INSERT INTO `wp_rg_form_view` VALUES("48143", "15", "2017-02-07 05:04:03", "163.172.65.128", "44");
INSERT INTO `wp_rg_form_view` VALUES("48144", "2", "2017-02-07 05:51:22", "163.172.65.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("48145", "3", "2017-02-07 06:46:20", "217.69.133.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("48146", "15", "2017-02-07 06:46:20", "217.69.133.228", "4");
INSERT INTO `wp_rg_form_view` VALUES("48147", "3", "2017-02-07 07:08:23", "202.46.49.139", "18");
INSERT INTO `wp_rg_form_view` VALUES("48148", "15", "2017-02-07 07:08:24", "202.46.49.139", "12");
INSERT INTO `wp_rg_form_view` VALUES("48149", "6", "2017-02-07 07:41:48", "202.46.56.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("48150", "3", "2017-02-07 08:16:28", "163.172.66.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("48151", "15", "2017-02-07 08:16:28", "163.172.66.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("48152", "3", "2017-02-07 09:14:09", "92.51.145.173", "25");
INSERT INTO `wp_rg_form_view` VALUES("48153", "15", "2017-02-07 09:14:11", "92.51.145.173", "16");
INSERT INTO `wp_rg_form_view` VALUES("48154", "3", "2017-02-07 10:34:11", "163.172.66.38", "19");
INSERT INTO `wp_rg_form_view` VALUES("48155", "15", "2017-02-07 10:34:11", "163.172.66.38", "12");
INSERT INTO `wp_rg_form_view` VALUES("48156", "3", "2017-02-07 11:56:48", "185.20.99.141", "6");
INSERT INTO `wp_rg_form_view` VALUES("48157", "15", "2017-02-07 11:56:48", "185.20.99.141", "4");
INSERT INTO `wp_rg_form_view` VALUES("48158", "3", "2017-02-07 12:06:33", "202.46.56.136", "19");
INSERT INTO `wp_rg_form_view` VALUES("48159", "15", "2017-02-07 12:06:33", "202.46.56.136", "12");
INSERT INTO `wp_rg_form_view` VALUES("48160", "10", "2017-02-07 12:36:11", "163.172.64.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("48161", "3", "2017-02-07 13:30:38", "66.249.79.144", "18");
INSERT INTO `wp_rg_form_view` VALUES("48162", "15", "2017-02-07 13:30:38", "66.249.79.144", "12");
INSERT INTO `wp_rg_form_view` VALUES("48163", "3", "2017-02-07 14:37:50", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("48164", "15", "2017-02-07 14:37:50", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("48165", "3", "2017-02-07 15:02:41", "45.20.214.1", "70");
INSERT INTO `wp_rg_form_view` VALUES("48166", "15", "2017-02-07 15:02:41", "45.20.214.1", "44");
INSERT INTO `wp_rg_form_view` VALUES("48167", "10", "2017-02-07 15:11:58", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48168", "3", "2017-02-07 16:02:06", "202.46.57.177", "43");
INSERT INTO `wp_rg_form_view` VALUES("48169", "15", "2017-02-07 16:02:06", "202.46.57.177", "28");
INSERT INTO `wp_rg_form_view` VALUES("48170", "3", "2017-02-07 17:09:06", "202.46.48.124", "25");
INSERT INTO `wp_rg_form_view` VALUES("48171", "15", "2017-02-07 17:09:06", "202.46.48.124", "16");
INSERT INTO `wp_rg_form_view` VALUES("48172", "14", "2017-02-07 18:27:15", "198.23.216.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("48173", "3", "2017-02-07 18:27:27", "198.23.216.201", "30");
INSERT INTO `wp_rg_form_view` VALUES("48174", "15", "2017-02-07 18:27:27", "198.23.216.201", "20");
INSERT INTO `wp_rg_form_view` VALUES("48175", "3", "2017-02-07 19:18:29", "184.66.49.231", "19");
INSERT INTO `wp_rg_form_view` VALUES("48176", "15", "2017-02-07 19:18:42", "184.66.49.231", "12");
INSERT INTO `wp_rg_form_view` VALUES("48177", "3", "2017-02-07 20:05:31", "54.224.31.74", "73");
INSERT INTO `wp_rg_form_view` VALUES("48178", "15", "2017-02-07 20:05:32", "54.224.31.74", "48");
INSERT INTO `wp_rg_form_view` VALUES("48179", "2", "2017-02-07 20:05:47", "54.224.31.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("48180", "3", "2017-02-07 21:00:37", "202.46.57.88", "17");
INSERT INTO `wp_rg_form_view` VALUES("48181", "15", "2017-02-07 21:00:37", "202.46.57.88", "8");
INSERT INTO `wp_rg_form_view` VALUES("48182", "15", "2017-02-07 22:13:47", "104.142.127.99", "25");
INSERT INTO `wp_rg_form_view` VALUES("48183", "3", "2017-02-07 22:13:48", "104.142.127.99", "37");
INSERT INTO `wp_rg_form_view` VALUES("48184", "3", "2017-02-07 23:07:32", "137.122.64.16", "39");
INSERT INTO `wp_rg_form_view` VALUES("48185", "15", "2017-02-07 23:07:50", "137.122.64.16", "26");
INSERT INTO `wp_rg_form_view` VALUES("48186", "3", "2017-02-08 00:00:00", "157.55.39.105", "231");
INSERT INTO `wp_rg_form_view` VALUES("48187", "15", "2017-02-08 00:00:00", "157.55.39.105", "151");
INSERT INTO `wp_rg_form_view` VALUES("48188", "11", "2017-02-08 00:17:16", "85.145.16.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("48189", "2", "2017-02-08 00:18:17", "85.145.16.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("48190", "14", "2017-02-08 00:34:43", "77.75.78.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48191", "3", "2017-02-08 01:04:11", "70.66.211.204", "66");
INSERT INTO `wp_rg_form_view` VALUES("48192", "15", "2017-02-08 01:04:12", "70.66.211.204", "45");
INSERT INTO `wp_rg_form_view` VALUES("48193", "3", "2017-02-08 02:06:22", "24.69.159.172", "31");
INSERT INTO `wp_rg_form_view` VALUES("48194", "15", "2017-02-08 02:06:22", "24.69.159.172", "20");
INSERT INTO `wp_rg_form_view` VALUES("48195", "3", "2017-02-08 03:58:57", "202.46.48.80", "7");
INSERT INTO `wp_rg_form_view` VALUES("48196", "15", "2017-02-08 03:58:58", "202.46.48.80", "4");
INSERT INTO `wp_rg_form_view` VALUES("48197", "3", "2017-02-08 04:05:08", "154.20.232.17", "45");
INSERT INTO `wp_rg_form_view` VALUES("48198", "15", "2017-02-08 04:05:09", "154.20.232.17", "32");
INSERT INTO `wp_rg_form_view` VALUES("48199", "3", "2017-02-08 05:05:54", "202.46.50.18", "66");
INSERT INTO `wp_rg_form_view` VALUES("48200", "15", "2017-02-08 05:05:54", "202.46.50.18", "40");
INSERT INTO `wp_rg_form_view` VALUES("48201", "6", "2017-02-08 05:46:13", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("48202", "11", "2017-02-08 05:54:54", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48203", "3", "2017-02-08 06:10:53", "77.75.78.166", "36");
INSERT INTO `wp_rg_form_view` VALUES("48204", "15", "2017-02-08 06:10:54", "77.75.78.166", "24");
INSERT INTO `wp_rg_form_view` VALUES("48205", "14", "2017-02-08 06:34:49", "96.54.246.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("48206", "3", "2017-02-08 07:32:06", "54.210.214.243", "146");
INSERT INTO `wp_rg_form_view` VALUES("48207", "15", "2017-02-08 07:32:08", "54.210.214.243", "97");
INSERT INTO `wp_rg_form_view` VALUES("48208", "11", "2017-02-08 07:46:27", "138.197.111.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("48209", "2", "2017-02-08 07:46:27", "138.197.111.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("48210", "3", "2017-02-08 08:43:46", "77.75.77.62", "18");
INSERT INTO `wp_rg_form_view` VALUES("48211", "15", "2017-02-08 08:43:46", "77.75.77.62", "12");
INSERT INTO `wp_rg_form_view` VALUES("48212", "3", "2017-02-08 09:10:22", "163.172.65.180", "25");
INSERT INTO `wp_rg_form_view` VALUES("48213", "15", "2017-02-08 09:10:23", "163.172.65.180", "16");
INSERT INTO `wp_rg_form_view` VALUES("48214", "3", "2017-02-08 10:21:30", "100.43.91.1", "42");
INSERT INTO `wp_rg_form_view` VALUES("48215", "15", "2017-02-08 10:21:30", "100.43.91.1", "29");
INSERT INTO `wp_rg_form_view` VALUES("48216", "3", "2017-02-08 11:03:43", "142.4.218.156", "72");
INSERT INTO `wp_rg_form_view` VALUES("48217", "15", "2017-02-08 11:03:44", "142.4.218.156", "48");
INSERT INTO `wp_rg_form_view` VALUES("48218", "2", "2017-02-08 11:03:47", "142.4.218.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("48219", "3", "2017-02-08 12:06:54", "163.172.66.28", "32");
INSERT INTO `wp_rg_form_view` VALUES("48220", "15", "2017-02-08 12:06:55", "163.172.66.28", "20");
INSERT INTO `wp_rg_form_view` VALUES("48221", "3", "2017-02-08 13:00:59", "77.75.77.11", "32");
INSERT INTO `wp_rg_form_view` VALUES("48222", "15", "2017-02-08 13:00:59", "77.75.77.11", "20");
INSERT INTO `wp_rg_form_view` VALUES("48223", "5", "2017-02-08 14:12:25", "202.46.58.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("48224", "3", "2017-02-08 14:12:25", "202.46.58.189", "37");
INSERT INTO `wp_rg_form_view` VALUES("48225", "15", "2017-02-08 14:12:26", "202.46.58.189", "25");
INSERT INTO `wp_rg_form_view` VALUES("48226", "3", "2017-02-08 15:05:25", "163.172.64.192", "44");
INSERT INTO `wp_rg_form_view` VALUES("48227", "15", "2017-02-08 15:05:25", "163.172.64.192", "41");
INSERT INTO `wp_rg_form_view` VALUES("48228", "3", "2017-02-08 16:00:38", "68.180.229.247", "60");
INSERT INTO `wp_rg_form_view` VALUES("48229", "15", "2017-02-08 16:00:38", "68.180.229.247", "40");
INSERT INTO `wp_rg_form_view` VALUES("48230", "13", "2017-02-08 16:04:54", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("48231", "15", "2017-02-08 17:01:18", "68.180.229.247", "17");
INSERT INTO `wp_rg_form_view` VALUES("48232", "3", "2017-02-08 17:01:18", "68.180.229.247", "27");
INSERT INTO `wp_rg_form_view` VALUES("48233", "3", "2017-02-08 18:06:50", "202.46.56.201", "45");
INSERT INTO `wp_rg_form_view` VALUES("48234", "15", "2017-02-08 18:06:50", "202.46.56.201", "28");
INSERT INTO `wp_rg_form_view` VALUES("48235", "3", "2017-02-08 19:16:12", "154.5.139.130", "66");
INSERT INTO `wp_rg_form_view` VALUES("48236", "15", "2017-02-08 19:16:12", "154.5.139.130", "46");
INSERT INTO `wp_rg_form_view` VALUES("48237", "3", "2017-02-08 20:11:39", "64.233.172.138", "42");
INSERT INTO `wp_rg_form_view` VALUES("48238", "15", "2017-02-08 20:11:39", "64.233.172.138", "29");
INSERT INTO `wp_rg_form_view` VALUES("48239", "15", "2017-02-08 21:03:43", "68.180.229.247", "25");
INSERT INTO `wp_rg_form_view` VALUES("48240", "3", "2017-02-08 21:03:43", "68.180.229.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("48241", "3", "2017-02-08 22:01:16", "202.46.57.208", "28");
INSERT INTO `wp_rg_form_view` VALUES("48242", "15", "2017-02-08 22:01:16", "202.46.57.208", "17");
INSERT INTO `wp_rg_form_view` VALUES("48243", "10", "2017-02-08 22:19:27", "163.172.64.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("48244", "3", "2017-02-08 23:06:01", "93.180.64.230", "85");
INSERT INTO `wp_rg_form_view` VALUES("48245", "15", "2017-02-08 23:06:04", "93.180.64.230", "52");
INSERT INTO `wp_rg_form_view` VALUES("48246", "3", "2017-02-09 00:41:30", "24.108.60.175", "18");
INSERT INTO `wp_rg_form_view` VALUES("48247", "15", "2017-02-09 00:41:30", "24.108.60.175", "12");
INSERT INTO `wp_rg_form_view` VALUES("48248", "3", "2017-02-09 01:04:11", "157.55.39.105", "194");
INSERT INTO `wp_rg_form_view` VALUES("48249", "15", "2017-02-09 01:04:11", "157.55.39.105", "129");
INSERT INTO `wp_rg_form_view` VALUES("48250", "11", "2017-02-09 01:08:17", "89.123.45.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("48251", "2", "2017-02-09 01:09:35", "89.123.45.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("48252", "3", "2017-02-09 02:05:23", "207.46.13.161", "43");
INSERT INTO `wp_rg_form_view` VALUES("48253", "15", "2017-02-09 02:05:23", "207.46.13.161", "28");
INSERT INTO `wp_rg_form_view` VALUES("48254", "3", "2017-02-09 03:01:58", "5.9.98.130", "2607");
INSERT INTO `wp_rg_form_view` VALUES("48255", "15", "2017-02-09 03:01:58", "5.9.98.130", "1661");
INSERT INTO `wp_rg_form_view` VALUES("48256", "11", "2017-02-09 03:02:14", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48257", "2", "2017-02-09 03:02:18", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48258", "14", "2017-02-09 03:04:24", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48259", "13", "2017-02-09 03:10:11", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48260", "10", "2017-02-09 03:10:16", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("48261", "8", "2017-02-09 03:15:53", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48262", "9", "2017-02-09 03:16:07", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48263", "6", "2017-02-09 03:17:07", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48264", "3", "2017-02-09 04:00:56", "24.69.143.208", "2567");
INSERT INTO `wp_rg_form_view` VALUES("48265", "15", "2017-02-09 04:00:56", "24.69.143.208", "1646");
INSERT INTO `wp_rg_form_view` VALUES("48266", "14", "2017-02-09 04:02:13", "24.69.143.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("48267", "10", "2017-02-09 04:03:10", "163.172.64.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("48268", "3", "2017-02-09 05:00:00", "5.9.98.130", "3986");
INSERT INTO `wp_rg_form_view` VALUES("48269", "15", "2017-02-09 05:00:00", "5.9.98.130", "2551");
INSERT INTO `wp_rg_form_view` VALUES("48270", "11", "2017-02-09 05:49:25", "138.197.64.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("48271", "2", "2017-02-09 05:49:26", "138.197.64.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("48272", "10", "2017-02-09 06:09:15", "157.55.39.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("48273", "3", "2017-02-09 06:09:15", "157.55.39.108", "1484");
INSERT INTO `wp_rg_form_view` VALUES("48274", "15", "2017-02-09 06:09:16", "157.55.39.108", "968");
INSERT INTO `wp_rg_form_view` VALUES("48275", "3", "2017-02-09 07:00:01", "5.9.98.130", "4413");
INSERT INTO `wp_rg_form_view` VALUES("48276", "15", "2017-02-09 07:00:01", "5.9.98.130", "2214");
INSERT INTO `wp_rg_form_view` VALUES("48277", "14", "2017-02-09 07:51:12", "176.193.201.232", "2");
INSERT INTO `wp_rg_form_view` VALUES("48278", "3", "2017-02-09 08:00:00", "5.9.98.130", "3137");
INSERT INTO `wp_rg_form_view` VALUES("48279", "15", "2017-02-09 08:00:00", "5.9.98.130", "2603");
INSERT INTO `wp_rg_form_view` VALUES("48280", "2", "2017-02-09 08:19:30", "174.127.133.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("48281", "3", "2017-02-09 09:00:02", "174.127.133.83", "478");
INSERT INTO `wp_rg_form_view` VALUES("48282", "15", "2017-02-09 09:00:03", "174.127.133.83", "276");
INSERT INTO `wp_rg_form_view` VALUES("48283", "14", "2017-02-09 09:37:19", "195.22.127.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("48284", "3", "2017-02-09 10:14:54", "5.9.98.130", "2886");
INSERT INTO `wp_rg_form_view` VALUES("48285", "15", "2017-02-09 10:14:55", "5.9.98.130", "1920");
INSERT INTO `wp_rg_form_view` VALUES("48286", "14", "2017-02-09 10:37:54", "191.101.117.147", "5");
INSERT INTO `wp_rg_form_view` VALUES("48287", "3", "2017-02-09 11:00:02", "5.9.98.130", "4341");
INSERT INTO `wp_rg_form_view` VALUES("48288", "15", "2017-02-09 11:00:03", "5.9.98.130", "1744");
INSERT INTO `wp_rg_form_view` VALUES("48289", "3", "2017-02-09 12:00:00", "5.9.98.130", "3870");
INSERT INTO `wp_rg_form_view` VALUES("48290", "15", "2017-02-09 12:00:01", "5.9.98.130", "2285");
INSERT INTO `wp_rg_form_view` VALUES("48291", "15", "2017-02-09 13:00:00", "5.9.98.130", "3627");
INSERT INTO `wp_rg_form_view` VALUES("48292", "3", "2017-02-09 13:00:00", "5.9.98.130", "2736");
INSERT INTO `wp_rg_form_view` VALUES("48293", "15", "2017-02-09 14:00:00", "5.9.98.130", "1176");
INSERT INTO `wp_rg_form_view` VALUES("48294", "3", "2017-02-09 14:00:01", "5.9.98.130", "2930");
INSERT INTO `wp_rg_form_view` VALUES("48295", "11", "2017-02-09 14:40:48", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("48296", "2", "2017-02-09 14:40:54", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("48297", "3", "2017-02-09 16:11:43", "5.9.98.130", "912");
INSERT INTO `wp_rg_form_view` VALUES("48298", "15", "2017-02-09 16:11:48", "5.9.98.130", "520");
INSERT INTO `wp_rg_form_view` VALUES("48299", "10", "2017-02-09 16:47:27", "157.55.39.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("48300", "3", "2017-02-09 17:34:22", "163.172.66.105", "1717");
INSERT INTO `wp_rg_form_view` VALUES("48301", "15", "2017-02-09 17:34:41", "163.172.66.105", "1142");
INSERT INTO `wp_rg_form_view` VALUES("48302", "3", "2017-02-09 18:00:00", "5.9.98.130", "2900");
INSERT INTO `wp_rg_form_view` VALUES("48303", "15", "2017-02-09 18:00:00", "5.9.98.130", "1934");
INSERT INTO `wp_rg_form_view` VALUES("48304", "9", "2017-02-09 18:53:54", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48305", "3", "2017-02-09 19:10:14", "24.69.128.33", "285");
INSERT INTO `wp_rg_form_view` VALUES("48306", "15", "2017-02-09 19:10:16", "24.69.128.33", "200");
INSERT INTO `wp_rg_form_view` VALUES("48307", "14", "2017-02-09 19:49:53", "46.229.168.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("48308", "6", "2017-02-09 19:50:04", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("48309", "10", "2017-02-09 19:50:21", "46.229.168.74", "9");
INSERT INTO `wp_rg_form_view` VALUES("48310", "3", "2017-02-09 20:00:40", "163.172.66.141", "37");
INSERT INTO `wp_rg_form_view` VALUES("48311", "15", "2017-02-09 20:00:40", "163.172.66.141", "24");
INSERT INTO `wp_rg_form_view` VALUES("48312", "3", "2017-02-09 21:30:04", "66.249.79.144", "54");
INSERT INTO `wp_rg_form_view` VALUES("48313", "15", "2017-02-09 21:30:04", "66.249.79.144", "36");
INSERT INTO `wp_rg_form_view` VALUES("48314", "3", "2017-02-09 22:09:41", "202.46.58.182", "18");
INSERT INTO `wp_rg_form_view` VALUES("48315", "15", "2017-02-09 22:09:41", "202.46.58.182", "12");
INSERT INTO `wp_rg_form_view` VALUES("48316", "9", "2017-02-09 22:57:22", "157.55.39.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("48317", "3", "2017-02-09 23:28:45", "173.183.120.200", "48");
INSERT INTO `wp_rg_form_view` VALUES("48318", "15", "2017-02-09 23:28:46", "173.183.120.200", "32");
INSERT INTO `wp_rg_form_view` VALUES("48319", "11", "2017-02-09 23:50:09", "202.46.58.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("48320", "3", "2017-02-10 00:05:37", "220.181.108.79", "48");
INSERT INTO `wp_rg_form_view` VALUES("48321", "15", "2017-02-10 00:05:37", "220.181.108.79", "32");
INSERT INTO `wp_rg_form_view` VALUES("48322", "15", "2017-02-10 01:11:17", "66.249.79.144", "33");
INSERT INTO `wp_rg_form_view` VALUES("48323", "3", "2017-02-10 01:11:17", "66.249.79.144", "53");
INSERT INTO `wp_rg_form_view` VALUES("48324", "3", "2017-02-10 02:20:31", "163.172.65.230", "37");
INSERT INTO `wp_rg_form_view` VALUES("48325", "15", "2017-02-10 02:20:31", "163.172.65.230", "24");
INSERT INTO `wp_rg_form_view` VALUES("48326", "3", "2017-02-10 03:06:24", "202.46.56.182", "148");
INSERT INTO `wp_rg_form_view` VALUES("48327", "15", "2017-02-10 03:06:24", "202.46.56.182", "97");
INSERT INTO `wp_rg_form_view` VALUES("48328", "2", "2017-02-10 03:57:23", "138.197.3.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("48329", "11", "2017-02-10 03:57:24", "138.197.3.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("48330", "3", "2017-02-10 04:31:18", "24.244.32.231", "36");
INSERT INTO `wp_rg_form_view` VALUES("48331", "15", "2017-02-10 04:31:19", "24.244.32.231", "24");
INSERT INTO `wp_rg_form_view` VALUES("48332", "14", "2017-02-10 05:33:53", "23.245.152.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("48333", "3", "2017-02-10 05:33:56", "23.245.152.181", "30");
INSERT INTO `wp_rg_form_view` VALUES("48334", "15", "2017-02-10 05:33:56", "23.245.152.181", "20");
INSERT INTO `wp_rg_form_view` VALUES("48335", "3", "2017-02-10 07:15:35", "207.46.13.161", "44");
INSERT INTO `wp_rg_form_view` VALUES("48336", "15", "2017-02-10 07:15:51", "207.46.13.161", "28");
INSERT INTO `wp_rg_form_view` VALUES("48337", "3", "2017-02-10 08:25:12", "202.46.48.134", "25");
INSERT INTO `wp_rg_form_view` VALUES("48338", "15", "2017-02-10 08:25:12", "202.46.48.134", "16");
INSERT INTO `wp_rg_form_view` VALUES("48339", "3", "2017-02-10 10:41:25", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("48340", "15", "2017-02-10 10:41:27", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("48341", "3", "2017-02-10 11:20:05", "202.46.52.165", "19");
INSERT INTO `wp_rg_form_view` VALUES("48342", "15", "2017-02-10 11:20:05", "202.46.52.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("48343", "14", "2017-02-10 11:24:12", "158.222.8.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("48344", "10", "2017-02-10 12:07:23", "163.172.66.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("48345", "3", "2017-02-10 12:07:23", "163.172.66.157", "18");
INSERT INTO `wp_rg_form_view` VALUES("48346", "15", "2017-02-10 12:07:23", "163.172.66.157", "12");
INSERT INTO `wp_rg_form_view` VALUES("48347", "3", "2017-02-10 13:03:32", "24.22.14.133", "37");
INSERT INTO `wp_rg_form_view` VALUES("48348", "15", "2017-02-10 13:03:32", "24.22.14.133", "24");
INSERT INTO `wp_rg_form_view` VALUES("48349", "13", "2017-02-10 13:05:25", "24.22.14.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("48350", "3", "2017-02-10 14:02:16", "163.172.66.158", "32");
INSERT INTO `wp_rg_form_view` VALUES("48351", "15", "2017-02-10 14:02:16", "163.172.66.158", "20");
INSERT INTO `wp_rg_form_view` VALUES("48352", "14", "2017-02-10 14:53:06", "104.160.31.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("48353", "3", "2017-02-10 15:06:12", "109.173.125.248", "43");
INSERT INTO `wp_rg_form_view` VALUES("48354", "15", "2017-02-10 15:06:13", "109.173.125.248", "28");
INSERT INTO `wp_rg_form_view` VALUES("48355", "10", "2017-02-10 16:41:29", "163.172.65.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("48356", "3", "2017-02-10 16:41:33", "163.172.65.51", "24");
INSERT INTO `wp_rg_form_view` VALUES("48357", "15", "2017-02-10 16:41:33", "163.172.65.51", "16");
INSERT INTO `wp_rg_form_view` VALUES("48358", "14", "2017-02-10 16:47:02", "184.69.180.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("48359", "3", "2017-02-10 17:09:05", "202.46.48.19", "19");
INSERT INTO `wp_rg_form_view` VALUES("48360", "15", "2017-02-10 17:09:05", "202.46.48.19", "12");
INSERT INTO `wp_rg_form_view` VALUES("48361", "3", "2017-02-10 18:05:40", "163.172.66.167", "19");
INSERT INTO `wp_rg_form_view` VALUES("48362", "15", "2017-02-10 18:05:41", "163.172.66.167", "12");
INSERT INTO `wp_rg_form_view` VALUES("48363", "3", "2017-02-10 19:21:14", "163.172.64.192", "13");
INSERT INTO `wp_rg_form_view` VALUES("48364", "15", "2017-02-10 19:21:18", "163.172.64.192", "8");
INSERT INTO `wp_rg_form_view` VALUES("48365", "3", "2017-02-10 20:07:37", "107.173.204.176", "131");
INSERT INTO `wp_rg_form_view` VALUES("48366", "15", "2017-02-10 20:07:39", "107.173.204.176", "84");
INSERT INTO `wp_rg_form_view` VALUES("48367", "10", "2017-02-10 20:13:00", "163.172.66.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("48368", "14", "2017-02-10 20:31:20", "198.71.87.205", "5");
INSERT INTO `wp_rg_form_view` VALUES("48369", "3", "2017-02-10 21:11:03", "54.237.200.36", "78");
INSERT INTO `wp_rg_form_view` VALUES("48370", "15", "2017-02-10 21:11:03", "54.237.200.36", "52");
INSERT INTO `wp_rg_form_view` VALUES("48371", "3", "2017-02-10 22:04:02", "24.108.188.201", "78");
INSERT INTO `wp_rg_form_view` VALUES("48372", "15", "2017-02-10 22:04:02", "24.108.188.201", "52");
INSERT INTO `wp_rg_form_view` VALUES("48373", "14", "2017-02-10 22:33:48", "184.69.106.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("48374", "10", "2017-02-10 22:37:09", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("48375", "3", "2017-02-10 23:01:12", "202.46.53.13", "36");
INSERT INTO `wp_rg_form_view` VALUES("48376", "15", "2017-02-10 23:01:12", "202.46.53.13", "24");
INSERT INTO `wp_rg_form_view` VALUES("48377", "14", "2017-02-10 23:16:35", "184.66.245.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("48378", "3", "2017-02-11 00:08:11", "202.46.56.69", "7");
INSERT INTO `wp_rg_form_view` VALUES("48379", "15", "2017-02-11 00:08:11", "202.46.56.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("48380", "3", "2017-02-11 01:20:07", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("48381", "15", "2017-02-11 01:20:10", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("48382", "3", "2017-02-11 02:24:33", "157.55.39.105", "147");
INSERT INTO `wp_rg_form_view` VALUES("48383", "15", "2017-02-11 02:24:34", "157.55.39.105", "97");
INSERT INTO `wp_rg_form_view` VALUES("48384", "2", "2017-02-11 02:56:27", "138.197.7.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("48385", "11", "2017-02-11 02:56:27", "138.197.7.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("48386", "3", "2017-02-11 03:59:03", "207.46.13.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("48387", "15", "2017-02-11 03:59:04", "207.46.13.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("48388", "3", "2017-02-11 04:02:35", "202.46.49.190", "7");
INSERT INTO `wp_rg_form_view` VALUES("48389", "15", "2017-02-11 04:02:35", "202.46.49.190", "4");
INSERT INTO `wp_rg_form_view` VALUES("48390", "7", "2017-02-11 05:04:54", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("48391", "3", "2017-02-11 05:04:56", "157.55.39.105", "12");
INSERT INTO `wp_rg_form_view` VALUES("48392", "15", "2017-02-11 05:04:56", "157.55.39.105", "8");
INSERT INTO `wp_rg_form_view` VALUES("48393", "3", "2017-02-11 07:05:20", "202.46.58.187", "19");
INSERT INTO `wp_rg_form_view` VALUES("48394", "15", "2017-02-11 07:05:26", "202.46.58.187", "12");
INSERT INTO `wp_rg_form_view` VALUES("48395", "3", "2017-02-11 08:02:32", "68.180.229.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("48396", "15", "2017-02-11 08:02:33", "68.180.229.247", "16");
INSERT INTO `wp_rg_form_view` VALUES("48397", "3", "2017-02-11 09:01:57", "164.132.161.30", "443");
INSERT INTO `wp_rg_form_view` VALUES("48398", "15", "2017-02-11 09:01:57", "164.132.161.30", "295");
INSERT INTO `wp_rg_form_view` VALUES("48399", "11", "2017-02-11 09:30:27", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("48400", "2", "2017-02-11 09:30:32", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("48401", "14", "2017-02-11 09:32:40", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("48402", "3", "2017-02-11 10:49:20", "163.172.65.126", "6");
INSERT INTO `wp_rg_form_view` VALUES("48403", "15", "2017-02-11 10:49:21", "163.172.65.126", "4");
INSERT INTO `wp_rg_form_view` VALUES("48404", "3", "2017-02-11 11:04:39", "220.181.108.108", "50");
INSERT INTO `wp_rg_form_view` VALUES("48405", "15", "2017-02-11 11:04:39", "220.181.108.108", "32");
INSERT INTO `wp_rg_form_view` VALUES("48406", "3", "2017-02-11 12:04:20", "108.180.241.100", "36");
INSERT INTO `wp_rg_form_view` VALUES("48407", "15", "2017-02-11 12:04:20", "108.180.241.100", "32");
INSERT INTO `wp_rg_form_view` VALUES("48408", "14", "2017-02-11 12:25:02", "164.132.42.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("48409", "3", "2017-02-11 13:01:36", "93.180.64.230", "288");
INSERT INTO `wp_rg_form_view` VALUES("48410", "15", "2017-02-11 13:01:36", "93.180.64.230", "197");
INSERT INTO `wp_rg_form_view` VALUES("48411", "2", "2017-02-11 13:12:02", "97.77.104.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("48412", "11", "2017-02-11 13:12:06", "157.55.39.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("48413", "3", "2017-02-11 14:19:48", "202.46.48.99", "18");
INSERT INTO `wp_rg_form_view` VALUES("48414", "15", "2017-02-11 14:19:49", "202.46.48.99", "12");
INSERT INTO `wp_rg_form_view` VALUES("48415", "3", "2017-02-11 15:04:52", "104.196.224.90", "31");
INSERT INTO `wp_rg_form_view` VALUES("48416", "15", "2017-02-11 15:04:52", "104.196.224.90", "20");
INSERT INTO `wp_rg_form_view` VALUES("48417", "3", "2017-02-11 16:02:42", "138.197.27.183", "2506");
INSERT INTO `wp_rg_form_view` VALUES("48418", "15", "2017-02-11 16:02:42", "138.197.27.183", "1680");
INSERT INTO `wp_rg_form_view` VALUES("48419", "14", "2017-02-11 16:08:19", "138.197.27.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48420", "11", "2017-02-11 16:08:28", "138.197.27.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48421", "6", "2017-02-11 16:29:03", "138.197.27.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48422", "9", "2017-02-11 16:36:14", "138.197.27.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48423", "10", "2017-02-11 16:49:59", "138.197.27.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48424", "3", "2017-02-11 17:00:04", "138.197.27.183", "1062");
INSERT INTO `wp_rg_form_view` VALUES("48425", "15", "2017-02-11 17:00:04", "138.197.27.183", "714");
INSERT INTO `wp_rg_form_view` VALUES("48426", "10", "2017-02-11 17:02:08", "138.197.27.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48427", "2", "2017-02-11 17:16:59", "138.197.27.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48428", "3", "2017-02-11 18:23:50", "207.46.13.48", "496");
INSERT INTO `wp_rg_form_view` VALUES("48429", "15", "2017-02-11 18:23:51", "207.46.13.48", "328");
INSERT INTO `wp_rg_form_view` VALUES("48430", "10", "2017-02-11 18:24:00", "207.46.13.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("48431", "6", "2017-02-11 18:24:31", "207.46.13.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("48432", "5", "2017-02-11 18:24:40", "207.46.13.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("48433", "9", "2017-02-11 18:24:42", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("48434", "11", "2017-02-11 18:25:07", "157.55.39.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("48435", "3", "2017-02-11 19:13:01", "157.55.39.108", "18");
INSERT INTO `wp_rg_form_view` VALUES("48436", "15", "2017-02-11 19:13:01", "157.55.39.108", "12");
INSERT INTO `wp_rg_form_view` VALUES("48437", "3", "2017-02-11 20:18:50", "157.55.39.105", "54");
INSERT INTO `wp_rg_form_view` VALUES("48438", "15", "2017-02-11 20:18:50", "157.55.39.105", "36");
INSERT INTO `wp_rg_form_view` VALUES("48439", "5", "2017-02-11 20:33:27", "77.75.78.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("48440", "3", "2017-02-11 21:05:37", "202.46.52.70", "37");
INSERT INTO `wp_rg_form_view` VALUES("48441", "15", "2017-02-11 21:05:38", "202.46.52.70", "24");
INSERT INTO `wp_rg_form_view` VALUES("48442", "14", "2017-02-11 22:00:19", "167.114.10.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("48443", "3", "2017-02-11 22:00:20", "167.114.10.8", "216");
INSERT INTO `wp_rg_form_view` VALUES("48444", "15", "2017-02-11 22:00:20", "167.114.10.8", "136");
INSERT INTO `wp_rg_form_view` VALUES("48445", "11", "2017-02-11 22:25:37", "81.202.183.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("48446", "2", "2017-02-11 22:27:27", "81.202.183.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("48447", "3", "2017-02-11 23:01:07", "108.180.145.61", "1023");
INSERT INTO `wp_rg_form_view` VALUES("48448", "15", "2017-02-11 23:01:07", "108.180.145.61", "669");
INSERT INTO `wp_rg_form_view` VALUES("48449", "11", "2017-02-11 23:14:15", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("48450", "2", "2017-02-11 23:14:32", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("48451", "14", "2017-02-11 23:26:39", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("48452", "10", "2017-02-11 23:35:50", "94.199.151.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("48453", "3", "2017-02-12 00:07:59", "163.172.66.33", "13");
INSERT INTO `wp_rg_form_view` VALUES("48454", "15", "2017-02-12 00:08:01", "163.172.66.33", "8");
INSERT INTO `wp_rg_form_view` VALUES("48455", "9", "2017-02-12 00:35:03", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48456", "3", "2017-02-12 02:29:34", "164.132.161.55", "18");
INSERT INTO `wp_rg_form_view` VALUES("48457", "15", "2017-02-12 02:29:36", "164.132.161.55", "12");
INSERT INTO `wp_rg_form_view` VALUES("48458", "3", "2017-02-12 03:58:31", "202.46.54.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("48459", "15", "2017-02-12 03:58:32", "202.46.54.106", "10");
INSERT INTO `wp_rg_form_view` VALUES("48460", "3", "2017-02-12 04:16:41", "66.249.79.148", "22");
INSERT INTO `wp_rg_form_view` VALUES("48461", "15", "2017-02-12 04:16:41", "66.249.79.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("48462", "3", "2017-02-12 05:29:03", "66.249.79.140", "73");
INSERT INTO `wp_rg_form_view` VALUES("48463", "15", "2017-02-12 05:29:04", "66.249.79.140", "48");
INSERT INTO `wp_rg_form_view` VALUES("48464", "3", "2017-02-12 06:12:44", "77.75.79.101", "204");
INSERT INTO `wp_rg_form_view` VALUES("48465", "15", "2017-02-12 06:12:44", "77.75.79.101", "132");
INSERT INTO `wp_rg_form_view` VALUES("48466", "10", "2017-02-12 06:20:53", "163.172.66.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("48467", "11", "2017-02-12 06:28:23", "70.35.194.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("48468", "2", "2017-02-12 06:29:16", "70.35.194.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("48469", "3", "2017-02-12 07:29:46", "52.87.163.17", "30");
INSERT INTO `wp_rg_form_view` VALUES("48470", "15", "2017-02-12 07:29:51", "52.87.163.17", "20");
INSERT INTO `wp_rg_form_view` VALUES("48471", "14", "2017-02-12 07:46:08", "93.127.146.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("48472", "3", "2017-02-12 08:17:10", "66.249.79.144", "38");
INSERT INTO `wp_rg_form_view` VALUES("48473", "15", "2017-02-12 08:17:10", "66.249.79.144", "24");
INSERT INTO `wp_rg_form_view` VALUES("48474", "14", "2017-02-12 09:11:26", "104.140.4.65", "2");
INSERT INTO `wp_rg_form_view` VALUES("48475", "3", "2017-02-12 09:11:26", "104.140.4.65", "55");
INSERT INTO `wp_rg_form_view` VALUES("48476", "15", "2017-02-12 09:11:26", "104.140.4.65", "36");
INSERT INTO `wp_rg_form_view` VALUES("48477", "3", "2017-02-12 10:33:18", "104.199.45.62", "24");
INSERT INTO `wp_rg_form_view` VALUES("48478", "15", "2017-02-12 10:33:19", "104.199.45.62", "16");
INSERT INTO `wp_rg_form_view` VALUES("48479", "10", "2017-02-12 10:58:15", "199.16.157.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("48480", "3", "2017-02-12 11:20:36", "202.46.58.51", "6");
INSERT INTO `wp_rg_form_view` VALUES("48481", "15", "2017-02-12 11:20:36", "202.46.58.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("48482", "3", "2017-02-12 12:30:32", "66.249.79.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("48483", "15", "2017-02-12 12:30:33", "66.249.79.140", "24");
INSERT INTO `wp_rg_form_view` VALUES("48484", "15", "2017-02-12 13:01:09", "202.46.53.147", "24");
INSERT INTO `wp_rg_form_view` VALUES("48485", "3", "2017-02-12 13:01:09", "202.46.53.147", "26");
INSERT INTO `wp_rg_form_view` VALUES("48486", "14", "2017-02-12 13:51:40", "167.114.10.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("48487", "3", "2017-02-12 14:46:53", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("48488", "15", "2017-02-12 14:46:53", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("48489", "3", "2017-02-12 15:16:54", "68.180.229.247", "140");
INSERT INTO `wp_rg_form_view` VALUES("48490", "15", "2017-02-12 15:16:54", "68.180.229.247", "93");
INSERT INTO `wp_rg_form_view` VALUES("48491", "11", "2017-02-12 15:40:53", "138.197.67.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("48492", "2", "2017-02-12 15:40:54", "138.197.67.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("48493", "3", "2017-02-12 16:23:35", "40.77.167.47", "6");
INSERT INTO `wp_rg_form_view` VALUES("48494", "15", "2017-02-12 16:23:35", "40.77.167.47", "4");
INSERT INTO `wp_rg_form_view` VALUES("48495", "3", "2017-02-12 17:19:34", "199.21.99.202", "19");
INSERT INTO `wp_rg_form_view` VALUES("48496", "15", "2017-02-12 17:19:37", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("48497", "10", "2017-02-12 17:28:29", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48498", "3", "2017-02-12 18:15:26", "96.54.240.249", "55");
INSERT INTO `wp_rg_form_view` VALUES("48499", "15", "2017-02-12 18:15:26", "96.54.240.249", "36");
INSERT INTO `wp_rg_form_view` VALUES("48500", "3", "2017-02-12 19:11:09", "66.249.79.140", "18");
INSERT INTO `wp_rg_form_view` VALUES("48501", "15", "2017-02-12 19:11:09", "66.249.79.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("48502", "3", "2017-02-12 20:11:53", "163.172.66.96", "54");
INSERT INTO `wp_rg_form_view` VALUES("48503", "15", "2017-02-12 20:11:53", "163.172.66.96", "36");
INSERT INTO `wp_rg_form_view` VALUES("48504", "3", "2017-02-12 21:07:59", "66.249.79.148", "18");
INSERT INTO `wp_rg_form_view` VALUES("48505", "15", "2017-02-12 21:08:00", "66.249.79.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("48506", "3", "2017-02-12 22:34:05", "202.46.49.112", "25");
INSERT INTO `wp_rg_form_view` VALUES("48507", "15", "2017-02-12 22:34:06", "202.46.49.112", "16");
INSERT INTO `wp_rg_form_view` VALUES("48508", "3", "2017-02-12 23:33:48", "24.69.184.146", "38");
INSERT INTO `wp_rg_form_view` VALUES("48509", "15", "2017-02-12 23:33:48", "24.69.184.146", "24");
INSERT INTO `wp_rg_form_view` VALUES("48510", "3", "2017-02-13 00:03:11", "66.249.79.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("48511", "15", "2017-02-13 00:03:11", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("48512", "3", "2017-02-13 01:26:59", "163.172.66.147", "12");
INSERT INTO `wp_rg_form_view` VALUES("48513", "15", "2017-02-13 01:27:00", "163.172.66.147", "8");
INSERT INTO `wp_rg_form_view` VALUES("48514", "10", "2017-02-13 01:37:22", "202.46.48.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("48515", "3", "2017-02-13 02:44:24", "202.46.52.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("48516", "15", "2017-02-13 02:44:25", "202.46.52.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("48517", "3", "2017-02-13 03:03:20", "68.180.229.247", "25");
INSERT INTO `wp_rg_form_view` VALUES("48518", "15", "2017-02-13 03:03:20", "68.180.229.247", "16");
INSERT INTO `wp_rg_form_view` VALUES("48519", "3", "2017-02-13 04:40:00", "68.180.229.247", "16");
INSERT INTO `wp_rg_form_view` VALUES("48520", "15", "2017-02-13 04:40:02", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("48521", "10", "2017-02-13 05:16:18", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48522", "3", "2017-02-13 05:16:20", "68.180.229.247", "37");
INSERT INTO `wp_rg_form_view` VALUES("48523", "15", "2017-02-13 05:16:21", "68.180.229.247", "24");
INSERT INTO `wp_rg_form_view` VALUES("48524", "14", "2017-02-13 06:06:52", "62.210.111.117", "5");
INSERT INTO `wp_rg_form_view` VALUES("48525", "3", "2017-02-13 06:06:53", "62.210.111.117", "82");
INSERT INTO `wp_rg_form_view` VALUES("48526", "15", "2017-02-13 06:06:53", "62.210.111.117", "60");
INSERT INTO `wp_rg_form_view` VALUES("48527", "3", "2017-02-13 07:17:03", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("48528", "15", "2017-02-13 07:17:08", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("48529", "3", "2017-02-13 08:01:12", "66.249.79.140", "24");
INSERT INTO `wp_rg_form_view` VALUES("48530", "15", "2017-02-13 08:01:12", "66.249.79.140", "16");
INSERT INTO `wp_rg_form_view` VALUES("48531", "5", "2017-02-13 08:52:39", "77.75.79.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("48532", "3", "2017-02-13 09:27:59", "199.21.99.202", "37");
INSERT INTO `wp_rg_form_view` VALUES("48533", "3", "2017-02-13 09:27:59", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("48534", "15", "2017-02-13 09:28:02", "77.75.77.101", "31");
INSERT INTO `wp_rg_form_view` VALUES("48535", "15", "2017-02-13 09:28:02", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("48536", "2", "2017-02-13 10:04:34", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("48537", "3", "2017-02-13 10:04:34", "66.249.79.144", "30");
INSERT INTO `wp_rg_form_view` VALUES("48538", "15", "2017-02-13 10:04:34", "66.249.79.144", "20");
INSERT INTO `wp_rg_form_view` VALUES("48539", "13", "2017-02-13 10:30:45", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("48540", "3", "2017-02-13 11:03:26", "66.249.66.39", "18");
INSERT INTO `wp_rg_form_view` VALUES("48541", "15", "2017-02-13 11:03:29", "66.249.66.39", "12");
INSERT INTO `wp_rg_form_view` VALUES("48542", "3", "2017-02-13 12:17:59", "164.132.161.61", "19");
INSERT INTO `wp_rg_form_view` VALUES("48543", "15", "2017-02-13 12:18:02", "164.132.161.61", "12");
INSERT INTO `wp_rg_form_view` VALUES("48544", "3", "2017-02-13 13:16:26", "68.180.229.247", "27");
INSERT INTO `wp_rg_form_view` VALUES("48545", "15", "2017-02-13 13:16:27", "68.180.229.247", "16");
INSERT INTO `wp_rg_form_view` VALUES("48546", "12", "2017-02-13 13:29:47", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("48547", "3", "2017-02-13 14:25:45", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("48548", "15", "2017-02-13 14:25:45", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("48549", "3", "2017-02-13 15:06:06", "104.249.192.116", "66");
INSERT INTO `wp_rg_form_view` VALUES("48550", "15", "2017-02-13 15:06:07", "104.249.192.116", "32");
INSERT INTO `wp_rg_form_view` VALUES("48551", "10", "2017-02-13 15:07:03", "104.249.192.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("48552", "11", "2017-02-13 16:24:13", "77.75.79.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("48553", "3", "2017-02-13 16:24:15", "77.75.79.62", "12");
INSERT INTO `wp_rg_form_view` VALUES("48554", "15", "2017-02-13 16:24:15", "77.75.79.62", "8");
INSERT INTO `wp_rg_form_view` VALUES("48555", "3", "2017-02-13 17:11:56", "24.108.22.208", "33");
INSERT INTO `wp_rg_form_view` VALUES("48556", "15", "2017-02-13 17:11:57", "24.108.22.208", "21");
INSERT INTO `wp_rg_form_view` VALUES("48557", "3", "2017-02-13 18:09:55", "52.240.150.234", "230");
INSERT INTO `wp_rg_form_view` VALUES("48558", "3", "2017-02-13 18:09:55", "52.240.150.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("48559", "3", "2017-02-13 18:09:55", "52.240.150.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("48560", "15", "2017-02-13 18:09:55", "52.240.150.234", "153");
INSERT INTO `wp_rg_form_view` VALUES("48561", "11", "2017-02-13 18:09:57", "52.240.150.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("48562", "2", "2017-02-13 18:09:58", "52.240.150.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("48563", "3", "2017-02-13 19:54:08", "199.58.86.209", "26");
INSERT INTO `wp_rg_form_view` VALUES("48564", "15", "2017-02-13 19:54:09", "199.58.86.209", "16");
INSERT INTO `wp_rg_form_view` VALUES("48565", "3", "2017-02-13 20:05:59", "77.75.76.160", "18");
INSERT INTO `wp_rg_form_view` VALUES("48566", "15", "2017-02-13 20:05:59", "77.75.76.160", "12");
INSERT INTO `wp_rg_form_view` VALUES("48567", "3", "2017-02-13 21:01:44", "202.46.52.104", "56");
INSERT INTO `wp_rg_form_view` VALUES("48568", "15", "2017-02-13 21:01:44", "202.46.52.104", "36");
INSERT INTO `wp_rg_form_view` VALUES("48569", "10", "2017-02-13 21:06:33", "199.216.105.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("48570", "3", "2017-02-13 22:07:59", "157.55.39.105", "19");
INSERT INTO `wp_rg_form_view` VALUES("48571", "15", "2017-02-13 22:08:00", "157.55.39.105", "12");
INSERT INTO `wp_rg_form_view` VALUES("48572", "2", "2017-02-13 22:18:58", "202.46.56.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("48573", "3", "2017-02-13 23:25:59", "202.46.58.53", "19");
INSERT INTO `wp_rg_form_view` VALUES("48574", "15", "2017-02-13 23:26:00", "202.46.58.53", "12");
INSERT INTO `wp_rg_form_view` VALUES("48575", "3", "2017-02-14 00:18:06", "164.132.161.49", "19");
INSERT INTO `wp_rg_form_view` VALUES("48576", "15", "2017-02-14 00:18:07", "164.132.161.49", "12");
INSERT INTO `wp_rg_form_view` VALUES("48577", "3", "2017-02-14 01:09:47", "209.52.88.36", "30");
INSERT INTO `wp_rg_form_view` VALUES("48578", "15", "2017-02-14 01:09:47", "209.52.88.36", "20");
INSERT INTO `wp_rg_form_view` VALUES("48579", "3", "2017-02-14 02:01:34", "68.180.229.247", "19");
INSERT INTO `wp_rg_form_view` VALUES("48580", "15", "2017-02-14 02:01:35", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("48581", "8", "2017-02-14 02:58:29", "163.172.66.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("48582", "3", "2017-02-14 03:12:18", "202.46.50.182", "72");
INSERT INTO `wp_rg_form_view` VALUES("48583", "15", "2017-02-14 03:12:19", "202.46.50.182", "48");
INSERT INTO `wp_rg_form_view` VALUES("48584", "2", "2017-02-14 03:31:35", "93.180.64.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("48585", "12", "2017-02-14 03:44:20", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48586", "3", "2017-02-14 04:38:35", "70.66.188.50", "92");
INSERT INTO `wp_rg_form_view` VALUES("48587", "15", "2017-02-14 04:38:35", "70.66.188.50", "62");
INSERT INTO `wp_rg_form_view` VALUES("48588", "3", "2017-02-14 05:01:02", "70.66.188.50", "192");
INSERT INTO `wp_rg_form_view` VALUES("48589", "15", "2017-02-14 05:01:02", "70.66.188.50", "128");
INSERT INTO `wp_rg_form_view` VALUES("48590", "14", "2017-02-14 05:25:44", "70.66.188.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("48591", "11", "2017-02-14 05:32:51", "157.55.39.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("48592", "14", "2017-02-14 06:20:15", "202.46.48.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("48593", "3", "2017-02-14 06:20:16", "202.46.48.85", "54");
INSERT INTO `wp_rg_form_view` VALUES("48594", "15", "2017-02-14 06:20:16", "202.46.48.85", "36");
INSERT INTO `wp_rg_form_view` VALUES("48595", "3", "2017-02-14 07:51:59", "157.55.39.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("48596", "15", "2017-02-14 07:52:00", "157.55.39.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("48597", "3", "2017-02-14 08:18:51", "77.75.78.168", "44");
INSERT INTO `wp_rg_form_view` VALUES("48598", "15", "2017-02-14 08:18:51", "77.75.78.168", "28");
INSERT INTO `wp_rg_form_view` VALUES("48599", "2", "2017-02-14 08:21:16", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48600", "3", "2017-02-14 09:35:21", "77.75.79.95", "18");
INSERT INTO `wp_rg_form_view` VALUES("48601", "15", "2017-02-14 09:35:21", "77.75.79.95", "12");
INSERT INTO `wp_rg_form_view` VALUES("48602", "3", "2017-02-14 10:13:33", "207.46.13.48", "18");
INSERT INTO `wp_rg_form_view` VALUES("48603", "15", "2017-02-14 10:13:33", "207.46.13.48", "12");
INSERT INTO `wp_rg_form_view` VALUES("48604", "14", "2017-02-14 10:31:34", "195.22.127.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("48605", "3", "2017-02-14 11:00:25", "66.249.66.33", "19");
INSERT INTO `wp_rg_form_view` VALUES("48606", "15", "2017-02-14 11:00:26", "66.249.66.33", "12");
INSERT INTO `wp_rg_form_view` VALUES("48607", "3", "2017-02-14 12:03:33", "77.75.79.32", "21");
INSERT INTO `wp_rg_form_view` VALUES("48608", "15", "2017-02-14 12:03:33", "77.75.79.32", "12");
INSERT INTO `wp_rg_form_view` VALUES("48609", "3", "2017-02-14 13:12:44", "77.75.79.11", "24");
INSERT INTO `wp_rg_form_view` VALUES("48610", "15", "2017-02-14 13:12:47", "77.75.79.11", "16");
INSERT INTO `wp_rg_form_view` VALUES("48611", "11", "2017-02-14 13:51:16", "66.249.66.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("48612", "3", "2017-02-14 14:08:05", "51.255.65.15", "18");
INSERT INTO `wp_rg_form_view` VALUES("48613", "15", "2017-02-14 14:08:09", "51.255.65.15", "12");
INSERT INTO `wp_rg_form_view` VALUES("48614", "3", "2017-02-14 15:37:44", "202.46.52.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("48615", "15", "2017-02-14 15:37:45", "202.46.52.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("48616", "12", "2017-02-14 15:41:23", "51.255.65.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("48617", "3", "2017-02-14 16:00:16", "163.172.65.127", "19");
INSERT INTO `wp_rg_form_view` VALUES("48618", "15", "2017-02-14 16:00:16", "163.172.65.127", "12");
INSERT INTO `wp_rg_form_view` VALUES("48619", "15", "2017-02-14 17:28:09", "157.55.39.68", "21");
INSERT INTO `wp_rg_form_view` VALUES("48620", "3", "2017-02-14 17:28:15", "157.55.39.68", "32");
INSERT INTO `wp_rg_form_view` VALUES("48621", "3", "2017-02-14 18:01:50", "24.68.248.211", "76");
INSERT INTO `wp_rg_form_view` VALUES("48622", "15", "2017-02-14 18:01:50", "24.68.248.211", "48");
INSERT INTO `wp_rg_form_view` VALUES("48623", "2", "2017-02-14 18:31:43", "54.87.17.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("48624", "3", "2017-02-14 19:17:05", "184.69.4.226", "62");
INSERT INTO `wp_rg_form_view` VALUES("48625", "15", "2017-02-14 19:17:17", "184.69.4.226", "39");
INSERT INTO `wp_rg_form_view` VALUES("48626", "15", "2017-02-14 19:17:17", "184.69.4.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("48627", "14", "2017-02-14 20:29:12", "202.46.53.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("48628", "3", "2017-02-14 20:29:52", "202.46.53.66", "22");
INSERT INTO `wp_rg_form_view` VALUES("48629", "15", "2017-02-14 20:29:52", "202.46.53.66", "12");
INSERT INTO `wp_rg_form_view` VALUES("48630", "3", "2017-02-14 21:02:03", "202.46.54.167", "66");
INSERT INTO `wp_rg_form_view` VALUES("48631", "15", "2017-02-14 21:02:06", "202.46.54.167", "44");
INSERT INTO `wp_rg_form_view` VALUES("48632", "3", "2017-02-14 22:03:18", "163.172.65.206", "18");
INSERT INTO `wp_rg_form_view` VALUES("48633", "15", "2017-02-14 22:03:18", "163.172.65.206", "12");
INSERT INTO `wp_rg_form_view` VALUES("48634", "3", "2017-02-14 23:12:55", "216.232.145.242", "200");
INSERT INTO `wp_rg_form_view` VALUES("48635", "15", "2017-02-14 23:12:55", "216.232.145.242", "133");
INSERT INTO `wp_rg_form_view` VALUES("48636", "11", "2017-02-14 23:22:45", "138.197.111.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48637", "2", "2017-02-14 23:22:46", "138.197.111.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48638", "3", "2017-02-15 00:04:34", "162.156.7.227", "12");
INSERT INTO `wp_rg_form_view` VALUES("48639", "15", "2017-02-15 00:04:34", "162.156.7.227", "8");
INSERT INTO `wp_rg_form_view` VALUES("48640", "3", "2017-02-15 01:40:40", "163.172.65.120", "24");
INSERT INTO `wp_rg_form_view` VALUES("48641", "15", "2017-02-15 01:40:40", "163.172.65.120", "16");
INSERT INTO `wp_rg_form_view` VALUES("48642", "3", "2017-02-15 02:00:38", "217.33.216.114", "49");
INSERT INTO `wp_rg_form_view` VALUES("48643", "15", "2017-02-15 02:00:38", "217.33.216.114", "32");
INSERT INTO `wp_rg_form_view` VALUES("48644", "2", "2017-02-15 02:36:55", "163.172.66.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("48645", "14", "2017-02-15 02:44:18", "184.66.246.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("48646", "3", "2017-02-15 03:00:40", "24.108.197.69", "31");
INSERT INTO `wp_rg_form_view` VALUES("48647", "15", "2017-02-15 03:00:40", "24.108.197.69", "20");
INSERT INTO `wp_rg_form_view` VALUES("48648", "3", "2017-02-15 04:00:55", "51.255.65.36", "38");
INSERT INTO `wp_rg_form_view` VALUES("48649", "15", "2017-02-15 04:00:55", "51.255.65.36", "24");
INSERT INTO `wp_rg_form_view` VALUES("48650", "10", "2017-02-15 04:30:55", "5.188.211.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("48651", "15", "2017-02-15 05:13:53", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("48652", "3", "2017-02-15 05:13:58", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("48653", "14", "2017-02-15 06:02:47", "89.47.22.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("48654", "3", "2017-02-15 06:02:50", "89.47.22.246", "124");
INSERT INTO `wp_rg_form_view` VALUES("48655", "15", "2017-02-15 06:02:50", "89.47.22.246", "80");
INSERT INTO `wp_rg_form_view` VALUES("48656", "11", "2017-02-15 06:04:11", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("48657", "2", "2017-02-15 06:17:40", "5.188.211.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("48658", "10", "2017-02-15 06:19:52", "164.132.161.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("48659", "3", "2017-02-15 07:12:50", "70.66.168.98", "36");
INSERT INTO `wp_rg_form_view` VALUES("48660", "15", "2017-02-15 07:12:52", "70.66.168.98", "24");
INSERT INTO `wp_rg_form_view` VALUES("48661", "3", "2017-02-15 08:30:16", "202.46.53.65", "18");
INSERT INTO `wp_rg_form_view` VALUES("48662", "15", "2017-02-15 08:30:17", "202.46.53.65", "12");
INSERT INTO `wp_rg_form_view` VALUES("48663", "3", "2017-02-15 09:03:34", "202.46.51.101", "32");
INSERT INTO `wp_rg_form_view` VALUES("48664", "15", "2017-02-15 09:03:34", "202.46.51.101", "20");
INSERT INTO `wp_rg_form_view` VALUES("48665", "3", "2017-02-15 10:14:02", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("48666", "15", "2017-02-15 10:14:04", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("48667", "3", "2017-02-15 11:50:17", "202.46.58.72", "12");
INSERT INTO `wp_rg_form_view` VALUES("48668", "15", "2017-02-15 11:50:18", "202.46.58.72", "8");
INSERT INTO `wp_rg_form_view` VALUES("48669", "3", "2017-02-15 12:23:40", "202.46.55.172", "90");
INSERT INTO `wp_rg_form_view` VALUES("48670", "15", "2017-02-15 12:23:40", "202.46.55.172", "60");
INSERT INTO `wp_rg_form_view` VALUES("48671", "11", "2017-02-15 12:46:45", "116.24.171.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("48672", "2", "2017-02-15 12:46:46", "116.24.171.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("48673", "14", "2017-02-15 13:38:03", "195.22.127.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("48674", "3", "2017-02-15 13:38:03", "195.22.127.251", "12");
INSERT INTO `wp_rg_form_view` VALUES("48675", "15", "2017-02-15 13:38:03", "195.22.127.251", "8");
INSERT INTO `wp_rg_form_view` VALUES("48676", "3", "2017-02-15 14:03:35", "202.46.57.178", "115");
INSERT INTO `wp_rg_form_view` VALUES("48677", "15", "2017-02-15 14:03:36", "202.46.57.178", "77");
INSERT INTO `wp_rg_form_view` VALUES("48678", "2", "2017-02-15 14:16:44", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("48679", "11", "2017-02-15 14:17:17", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("48680", "3", "2017-02-15 15:01:11", "157.55.39.118", "31");
INSERT INTO `wp_rg_form_view` VALUES("48681", "15", "2017-02-15 15:01:11", "157.55.39.118", "20");
INSERT INTO `wp_rg_form_view` VALUES("48682", "9", "2017-02-15 15:43:36", "202.46.50.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("48683", "15", "2017-02-15 16:30:03", "24.108.168.20", "34");
INSERT INTO `wp_rg_form_view` VALUES("48684", "3", "2017-02-15 16:30:07", "24.108.168.20", "48");
INSERT INTO `wp_rg_form_view` VALUES("48685", "15", "2017-02-15 17:27:13", "68.180.229.247", "30");
INSERT INTO `wp_rg_form_view` VALUES("48686", "3", "2017-02-15 17:27:31", "68.180.229.247", "42");
INSERT INTO `wp_rg_form_view` VALUES("48687", "14", "2017-02-15 17:44:37", "157.55.39.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("48688", "10", "2017-02-15 17:44:50", "157.55.39.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("48689", "3", "2017-02-15 18:19:34", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("48690", "15", "2017-02-15 18:19:34", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("48691", "3", "2017-02-15 19:15:21", "207.194.133.9", "24");
INSERT INTO `wp_rg_form_view` VALUES("48692", "15", "2017-02-15 19:15:25", "207.194.133.9", "16");
INSERT INTO `wp_rg_form_view` VALUES("48693", "3", "2017-02-15 20:13:36", "68.180.228.61", "30");
INSERT INTO `wp_rg_form_view` VALUES("48694", "15", "2017-02-15 20:13:50", "68.180.228.61", "20");
INSERT INTO `wp_rg_form_view` VALUES("48695", "3", "2017-02-15 21:23:20", "66.38.235.7", "43");
INSERT INTO `wp_rg_form_view` VALUES("48696", "15", "2017-02-15 21:23:24", "66.38.235.7", "28");
INSERT INTO `wp_rg_form_view` VALUES("48697", "3", "2017-02-15 22:12:49", "202.46.58.132", "43");
INSERT INTO `wp_rg_form_view` VALUES("48698", "15", "2017-02-15 22:12:50", "202.46.58.132", "28");
INSERT INTO `wp_rg_form_view` VALUES("48699", "3", "2017-02-15 23:17:15", "75.155.181.154", "1107");
INSERT INTO `wp_rg_form_view` VALUES("48700", "15", "2017-02-15 23:17:17", "75.155.181.154", "750");
INSERT INTO `wp_rg_form_view` VALUES("48701", "15", "2017-02-15 23:17:17", "75.155.181.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("48702", "2", "2017-02-15 23:20:08", "72.79.57.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("48703", "7", "2017-02-15 23:21:04", "72.79.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48704", "14", "2017-02-15 23:21:34", "72.79.57.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("48705", "11", "2017-02-15 23:21:37", "72.79.57.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("48706", "5", "2017-02-15 23:22:28", "72.79.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48707", "13", "2017-02-15 23:26:04", "72.79.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48708", "8", "2017-02-15 23:26:20", "72.79.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48709", "9", "2017-02-15 23:26:34", "72.79.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48710", "6", "2017-02-15 23:26:56", "72.79.57.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48711", "10", "2017-02-15 23:27:16", "72.79.57.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("48712", "3", "2017-02-16 00:09:21", "202.46.53.164", "12");
INSERT INTO `wp_rg_form_view` VALUES("48713", "15", "2017-02-16 00:09:21", "202.46.53.164", "8");
INSERT INTO `wp_rg_form_view` VALUES("48714", "3", "2017-02-16 01:18:01", "173.234.62.70", "206");
INSERT INTO `wp_rg_form_view` VALUES("48715", "15", "2017-02-16 01:18:02", "173.234.62.70", "136");
INSERT INTO `wp_rg_form_view` VALUES("48716", "11", "2017-02-16 01:18:13", "75.159.185.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("48717", "2", "2017-02-16 01:20:22", "173.255.138.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("48718", "11", "2017-02-16 02:16:40", "80.248.225.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("48719", "3", "2017-02-16 02:16:42", "80.248.225.146", "40");
INSERT INTO `wp_rg_form_view` VALUES("48720", "3", "2017-02-16 02:16:42", "80.248.225.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("48721", "3", "2017-02-16 02:16:42", "80.248.225.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("48722", "2", "2017-02-16 02:16:42", "80.248.225.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("48723", "15", "2017-02-16 02:16:45", "80.248.225.146", "28");
INSERT INTO `wp_rg_form_view` VALUES("48724", "5", "2017-02-16 02:28:50", "77.75.77.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("48725", "3", "2017-02-16 03:10:13", "184.69.106.198", "30");
INSERT INTO `wp_rg_form_view` VALUES("48726", "15", "2017-02-16 03:10:13", "184.69.106.198", "20");
INSERT INTO `wp_rg_form_view` VALUES("48727", "14", "2017-02-16 03:34:17", "162.212.170.31", "2");
INSERT INTO `wp_rg_form_view` VALUES("48728", "3", "2017-02-16 04:04:26", "163.172.66.105", "49");
INSERT INTO `wp_rg_form_view` VALUES("48729", "15", "2017-02-16 04:04:27", "163.172.66.105", "32");
INSERT INTO `wp_rg_form_view` VALUES("48730", "10", "2017-02-16 04:23:26", "163.172.65.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("48731", "3", "2017-02-16 05:30:44", "154.20.46.216", "50");
INSERT INTO `wp_rg_form_view` VALUES("48732", "15", "2017-02-16 05:30:46", "154.20.46.216", "32");
INSERT INTO `wp_rg_form_view` VALUES("48733", "3", "2017-02-16 06:02:01", "46.229.168.72", "51");
INSERT INTO `wp_rg_form_view` VALUES("48734", "15", "2017-02-16 06:02:01", "46.229.168.72", "32");
INSERT INTO `wp_rg_form_view` VALUES("48735", "10", "2017-02-16 06:21:14", "5.188.211.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("48736", "3", "2017-02-16 07:04:44", "163.172.66.101", "18");
INSERT INTO `wp_rg_form_view` VALUES("48737", "15", "2017-02-16 07:04:44", "163.172.66.101", "12");
INSERT INTO `wp_rg_form_view` VALUES("48738", "3", "2017-02-16 08:28:04", "202.46.54.210", "12");
INSERT INTO `wp_rg_form_view` VALUES("48739", "15", "2017-02-16 08:28:05", "202.46.54.210", "8");
INSERT INTO `wp_rg_form_view` VALUES("48740", "3", "2017-02-16 09:32:00", "163.172.65.240", "18");
INSERT INTO `wp_rg_form_view` VALUES("48741", "15", "2017-02-16 09:32:03", "163.172.65.240", "12");
INSERT INTO `wp_rg_form_view` VALUES("48742", "3", "2017-02-16 10:03:43", "163.172.65.45", "21");
INSERT INTO `wp_rg_form_view` VALUES("48743", "15", "2017-02-16 10:03:43", "163.172.65.45", "12");
INSERT INTO `wp_rg_form_view` VALUES("48744", "3", "2017-02-16 11:07:53", "66.249.79.148", "55");
INSERT INTO `wp_rg_form_view` VALUES("48745", "15", "2017-02-16 11:07:54", "66.249.79.148", "36");
INSERT INTO `wp_rg_form_view` VALUES("48746", "5", "2017-02-16 11:40:02", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48747", "3", "2017-02-16 12:31:33", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("48748", "15", "2017-02-16 12:31:36", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("48749", "6", "2017-02-16 13:36:44", "202.46.58.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("48750", "3", "2017-02-16 13:36:48", "202.46.58.93", "12");
INSERT INTO `wp_rg_form_view` VALUES("48751", "15", "2017-02-16 13:36:48", "202.46.58.93", "8");
INSERT INTO `wp_rg_form_view` VALUES("48752", "3", "2017-02-16 14:10:13", "202.46.51.200", "6");
INSERT INTO `wp_rg_form_view` VALUES("48753", "15", "2017-02-16 14:10:14", "202.46.51.200", "4");
INSERT INTO `wp_rg_form_view` VALUES("48754", "3", "2017-02-16 15:08:05", "157.55.39.118", "222");
INSERT INTO `wp_rg_form_view` VALUES("48755", "15", "2017-02-16 15:08:13", "157.55.39.118", "145");
INSERT INTO `wp_rg_form_view` VALUES("48756", "2", "2017-02-16 15:10:40", "138.197.71.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("48757", "11", "2017-02-16 15:10:40", "138.197.71.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("48758", "14", "2017-02-16 15:32:41", "198.24.172.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("48759", "3", "2017-02-16 16:19:02", "24.108.212.9", "20");
INSERT INTO `wp_rg_form_view` VALUES("48760", "15", "2017-02-16 16:19:03", "24.108.212.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("48761", "3", "2017-02-16 17:10:05", "106.120.188.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("48762", "15", "2017-02-16 17:10:08", "106.120.188.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("48763", "3", "2017-02-16 18:10:45", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("48764", "15", "2017-02-16 18:10:48", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("48765", "3", "2017-02-16 19:06:40", "184.69.184.90", "217");
INSERT INTO `wp_rg_form_view` VALUES("48766", "15", "2017-02-16 19:06:41", "184.69.184.90", "145");
INSERT INTO `wp_rg_form_view` VALUES("48767", "3", "2017-02-16 20:04:23", "202.46.49.70", "50");
INSERT INTO `wp_rg_form_view` VALUES("48768", "15", "2017-02-16 20:04:23", "202.46.49.70", "37");
INSERT INTO `wp_rg_form_view` VALUES("48769", "14", "2017-02-16 20:56:45", "179.43.132.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("48770", "14", "2017-02-16 21:27:44", "104.223.20.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("48771", "3", "2017-02-16 21:27:54", "104.223.20.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("48772", "15", "2017-02-16 21:27:55", "104.223.20.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("48773", "3", "2017-02-16 22:07:22", "77.75.78.169", "13");
INSERT INTO `wp_rg_form_view` VALUES("48774", "15", "2017-02-16 22:07:31", "77.75.78.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("48775", "3", "2017-02-16 23:14:34", "70.67.186.223", "25");
INSERT INTO `wp_rg_form_view` VALUES("48776", "15", "2017-02-16 23:14:40", "70.67.186.223", "16");
INSERT INTO `wp_rg_form_view` VALUES("48777", "3", "2017-02-17 00:15:21", "199.21.99.202", "55");
INSERT INTO `wp_rg_form_view` VALUES("48778", "15", "2017-02-17 00:15:21", "199.21.99.202", "36");
INSERT INTO `wp_rg_form_view` VALUES("48779", "3", "2017-02-17 01:51:08", "88.198.208.67", "6");
INSERT INTO `wp_rg_form_view` VALUES("48780", "15", "2017-02-17 01:51:09", "88.198.208.67", "4");
INSERT INTO `wp_rg_form_view` VALUES("48781", "3", "2017-02-17 02:05:29", "154.5.209.209", "24");
INSERT INTO `wp_rg_form_view` VALUES("48782", "15", "2017-02-17 02:05:29", "154.5.209.209", "16");
INSERT INTO `wp_rg_form_view` VALUES("48783", "14", "2017-02-17 03:20:27", "173.44.230.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("48784", "3", "2017-02-17 03:20:28", "173.44.230.74", "26");
INSERT INTO `wp_rg_form_view` VALUES("48785", "15", "2017-02-17 03:20:28", "173.44.230.74", "20");
INSERT INTO `wp_rg_form_view` VALUES("48786", "3", "2017-02-17 04:18:08", "24.68.42.124", "43");
INSERT INTO `wp_rg_form_view` VALUES("48787", "15", "2017-02-17 04:18:08", "24.68.42.124", "28");
INSERT INTO `wp_rg_form_view` VALUES("48788", "15", "2017-02-17 06:07:20", "24.108.192.79", "25");
INSERT INTO `wp_rg_form_view` VALUES("48789", "3", "2017-02-17 06:07:22", "24.108.192.79", "26");
INSERT INTO `wp_rg_form_view` VALUES("48790", "2", "2017-02-17 06:45:31", "88.198.208.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("48791", "15", "2017-02-17 07:23:26", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("48792", "3", "2017-02-17 07:23:41", "66.249.79.144", "20");
INSERT INTO `wp_rg_form_view` VALUES("48793", "6", "2017-02-17 07:55:58", "202.46.58.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("48794", "3", "2017-02-17 08:29:49", "157.55.39.105", "6");
INSERT INTO `wp_rg_form_view` VALUES("48795", "15", "2017-02-17 08:29:50", "157.55.39.105", "5");
INSERT INTO `wp_rg_form_view` VALUES("48796", "3", "2017-02-17 09:02:57", "202.46.51.37", "32");
INSERT INTO `wp_rg_form_view` VALUES("48797", "15", "2017-02-17 09:02:57", "202.46.51.37", "31");
INSERT INTO `wp_rg_form_view` VALUES("48798", "10", "2017-02-17 09:15:53", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("48799", "15", "2017-02-17 10:38:58", "207.46.13.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("48800", "3", "2017-02-17 10:39:03", "207.46.13.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("48801", "15", "2017-02-17 11:07:27", "202.46.51.16", "25");
INSERT INTO `wp_rg_form_view` VALUES("48802", "3", "2017-02-17 11:07:28", "202.46.51.16", "25");
INSERT INTO `wp_rg_form_view` VALUES("48803", "15", "2017-02-17 12:23:20", "51.255.65.90", "20");
INSERT INTO `wp_rg_form_view` VALUES("48804", "3", "2017-02-17 12:23:21", "51.255.65.90", "23");
INSERT INTO `wp_rg_form_view` VALUES("48805", "14", "2017-02-17 12:47:53", "202.46.48.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("48806", "15", "2017-02-17 13:21:23", "202.46.58.85", "10");
INSERT INTO `wp_rg_form_view` VALUES("48807", "3", "2017-02-17 13:21:23", "202.46.58.85", "10");
INSERT INTO `wp_rg_form_view` VALUES("48808", "3", "2017-02-17 14:05:27", "157.55.39.118", "11");
INSERT INTO `wp_rg_form_view` VALUES("48809", "15", "2017-02-17 14:05:30", "157.55.39.118", "10");
INSERT INTO `wp_rg_form_view` VALUES("48810", "15", "2017-02-17 15:00:08", "207.81.136.51", "15");
INSERT INTO `wp_rg_form_view` VALUES("48811", "3", "2017-02-17 15:00:08", "207.81.136.51", "15");
INSERT INTO `wp_rg_form_view` VALUES("48812", "10", "2017-02-17 15:32:08", "51.255.65.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("48813", "15", "2017-02-17 16:05:02", "164.132.161.7", "53");
INSERT INTO `wp_rg_form_view` VALUES("48814", "3", "2017-02-17 16:05:02", "164.132.161.7", "50");
INSERT INTO `wp_rg_form_view` VALUES("48815", "14", "2017-02-17 16:27:18", "173.208.146.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("48816", "15", "2017-02-17 17:15:51", "202.46.55.177", "15");
INSERT INTO `wp_rg_form_view` VALUES("48817", "3", "2017-02-17 17:16:09", "202.46.55.177", "17");
INSERT INTO `wp_rg_form_view` VALUES("48818", "3", "2017-02-17 18:19:45", "46.166.171.222", "11");
INSERT INTO `wp_rg_form_view` VALUES("48819", "15", "2017-02-17 18:19:47", "46.166.171.222", "10");
INSERT INTO `wp_rg_form_view` VALUES("48820", "6", "2017-02-17 18:36:55", "88.99.27.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("48821", "15", "2017-02-17 19:49:03", "216.232.157.49", "20");
INSERT INTO `wp_rg_form_view` VALUES("48822", "3", "2017-02-17 19:49:05", "216.232.157.49", "20");
INSERT INTO `wp_rg_form_view` VALUES("48823", "15", "2017-02-17 20:25:45", "196.186.192.178", "20");
INSERT INTO `wp_rg_form_view` VALUES("48824", "3", "2017-02-17 20:25:47", "196.186.192.178", "21");
INSERT INTO `wp_rg_form_view` VALUES("48825", "14", "2017-02-17 20:47:17", "107.174.5.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("48826", "15", "2017-02-17 21:07:08", "66.249.79.148", "35");
INSERT INTO `wp_rg_form_view` VALUES("48827", "3", "2017-02-17 21:07:09", "66.249.79.148", "35");
INSERT INTO `wp_rg_form_view` VALUES("48828", "14", "2017-02-17 21:34:01", "162.223.88.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("48829", "3", "2017-02-17 22:07:27", "51.255.65.35", "43");
INSERT INTO `wp_rg_form_view` VALUES("48830", "15", "2017-02-17 22:07:27", "51.255.65.35", "40");
INSERT INTO `wp_rg_form_view` VALUES("48831", "15", "2017-02-17 23:01:27", "207.46.13.48", "40");
INSERT INTO `wp_rg_form_view` VALUES("48832", "3", "2017-02-17 23:01:29", "207.46.13.48", "40");
INSERT INTO `wp_rg_form_view` VALUES("48833", "15", "2017-02-18 00:17:28", "68.180.229.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("48834", "3", "2017-02-18 00:17:33", "68.180.229.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("48835", "15", "2017-02-18 01:08:11", "66.249.79.148", "40");
INSERT INTO `wp_rg_form_view` VALUES("48836", "3", "2017-02-18 01:08:11", "66.249.79.148", "42");
INSERT INTO `wp_rg_form_view` VALUES("48837", "3", "2017-02-18 02:02:44", "68.180.229.247", "26");
INSERT INTO `wp_rg_form_view` VALUES("48838", "15", "2017-02-18 02:02:47", "68.180.229.247", "25");
INSERT INTO `wp_rg_form_view` VALUES("48839", "15", "2017-02-18 03:06:50", "77.75.77.54", "50");
INSERT INTO `wp_rg_form_view` VALUES("48840", "3", "2017-02-18 03:06:50", "77.75.77.54", "50");
INSERT INTO `wp_rg_form_view` VALUES("48841", "11", "2017-02-18 03:47:40", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("48842", "15", "2017-02-18 04:10:17", "66.249.79.144", "166");
INSERT INTO `wp_rg_form_view` VALUES("48843", "3", "2017-02-18 04:10:17", "66.249.79.144", "166");
INSERT INTO `wp_rg_form_view` VALUES("48844", "14", "2017-02-18 04:35:34", "216.232.157.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("48845", "3", "2017-02-18 05:00:38", "202.46.54.21", "163");
INSERT INTO `wp_rg_form_view` VALUES("48846", "15", "2017-02-18 05:00:45", "202.46.54.21", "162");
INSERT INTO `wp_rg_form_view` VALUES("48847", "11", "2017-02-18 05:13:10", "138.197.69.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("48848", "2", "2017-02-18 05:13:10", "138.197.69.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("48849", "13", "2017-02-18 05:38:01", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("48850", "15", "2017-02-18 06:01:42", "108.180.6.164", "55");
INSERT INTO `wp_rg_form_view` VALUES("48851", "3", "2017-02-18 06:01:42", "108.180.6.164", "58");
INSERT INTO `wp_rg_form_view` VALUES("48852", "15", "2017-02-18 07:13:53", "66.249.79.148", "35");
INSERT INTO `wp_rg_form_view` VALUES("48853", "3", "2017-02-18 07:14:04", "66.249.79.148", "35");
INSERT INTO `wp_rg_form_view` VALUES("48854", "14", "2017-02-18 07:14:30", "202.46.58.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("48855", "15", "2017-02-18 08:18:38", "51.255.65.17", "10");
INSERT INTO `wp_rg_form_view` VALUES("48856", "3", "2017-02-18 08:18:38", "51.255.65.17", "10");
INSERT INTO `wp_rg_form_view` VALUES("48857", "15", "2017-02-18 09:06:08", "51.255.65.74", "30");
INSERT INTO `wp_rg_form_view` VALUES("48858", "3", "2017-02-18 09:06:08", "51.255.65.74", "31");
INSERT INTO `wp_rg_form_view` VALUES("48859", "15", "2017-02-18 10:01:00", "77.75.77.72", "25");
INSERT INTO `wp_rg_form_view` VALUES("48860", "3", "2017-02-18 10:01:00", "77.75.77.72", "25");
INSERT INTO `wp_rg_form_view` VALUES("48861", "15", "2017-02-18 11:36:12", "66.249.79.140", "10");
INSERT INTO `wp_rg_form_view` VALUES("48862", "3", "2017-02-18 11:36:13", "66.249.79.140", "10");
INSERT INTO `wp_rg_form_view` VALUES("48863", "15", "2017-02-18 12:15:58", "66.249.79.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("48864", "3", "2017-02-18 12:15:59", "66.249.79.148", "22");
INSERT INTO `wp_rg_form_view` VALUES("48865", "6", "2017-02-18 12:28:51", "202.46.51.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("48866", "14", "2017-02-18 13:29:59", "46.17.99.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("48867", "15", "2017-02-18 13:29:59", "46.17.99.155", "15");
INSERT INTO `wp_rg_form_view` VALUES("48868", "3", "2017-02-18 13:30:00", "46.17.99.155", "15");
INSERT INTO `wp_rg_form_view` VALUES("48869", "14", "2017-02-18 14:09:20", "202.46.50.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("48870", "15", "2017-02-18 14:09:20", "202.46.50.12", "10");
INSERT INTO `wp_rg_form_view` VALUES("48871", "3", "2017-02-18 14:09:21", "202.46.50.12", "10");
INSERT INTO `wp_rg_form_view` VALUES("48872", "15", "2017-02-18 15:23:32", "66.249.79.144", "5");
INSERT INTO `wp_rg_form_view` VALUES("48873", "3", "2017-02-18 15:23:32", "66.249.79.144", "5");
INSERT INTO `wp_rg_form_view` VALUES("48874", "15", "2017-02-18 16:23:11", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("48875", "3", "2017-02-18 16:23:14", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("48876", "10", "2017-02-18 17:01:32", "164.132.161.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("48877", "15", "2017-02-18 17:01:32", "164.132.161.69", "41");
INSERT INTO `wp_rg_form_view` VALUES("48878", "3", "2017-02-18 17:01:32", "164.132.161.69", "40");
INSERT INTO `wp_rg_form_view` VALUES("48879", "14", "2017-02-18 17:12:42", "104.160.6.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("48880", "15", "2017-02-18 18:16:24", "68.180.229.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("48881", "3", "2017-02-18 18:16:24", "68.180.229.247", "23");
INSERT INTO `wp_rg_form_view` VALUES("48882", "15", "2017-02-18 19:10:02", "68.180.229.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("48883", "3", "2017-02-18 19:10:02", "68.180.229.247", "21");
INSERT INTO `wp_rg_form_view` VALUES("48884", "15", "2017-02-18 20:18:19", "50.7.151.30", "10");
INSERT INTO `wp_rg_form_view` VALUES("48885", "3", "2017-02-18 20:18:20", "50.7.151.30", "10");
INSERT INTO `wp_rg_form_view` VALUES("48886", "15", "2017-02-18 21:04:50", "77.75.79.119", "15");
INSERT INTO `wp_rg_form_view` VALUES("48887", "3", "2017-02-18 21:04:50", "77.75.79.119", "15");
INSERT INTO `wp_rg_form_view` VALUES("48888", "15", "2017-02-18 22:28:15", "77.75.77.95", "15");
INSERT INTO `wp_rg_form_view` VALUES("48889", "3", "2017-02-18 22:28:18", "77.75.77.95", "15");
INSERT INTO `wp_rg_form_view` VALUES("48890", "14", "2017-02-18 22:43:36", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("48891", "15", "2017-02-18 23:18:37", "202.46.51.194", "10");
INSERT INTO `wp_rg_form_view` VALUES("48892", "3", "2017-02-18 23:18:41", "202.46.51.194", "10");
INSERT INTO `wp_rg_form_view` VALUES("48893", "14", "2017-02-18 23:44:25", "173.208.146.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("48894", "3", "2017-02-19 00:12:31", "51.255.65.84", "22");
INSERT INTO `wp_rg_form_view` VALUES("48895", "15", "2017-02-19 00:12:33", "51.255.65.84", "19");
INSERT INTO `wp_rg_form_view` VALUES("48896", "3", "2017-02-19 01:03:46", "24.68.254.251", "62");
INSERT INTO `wp_rg_form_view` VALUES("48897", "15", "2017-02-19 01:03:46", "24.68.254.251", "40");
INSERT INTO `wp_rg_form_view` VALUES("48898", "6", "2017-02-19 01:41:53", "202.46.49.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("48899", "10", "2017-02-19 01:50:44", "51.255.65.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("48900", "3", "2017-02-19 02:31:30", "66.249.79.144", "27");
INSERT INTO `wp_rg_form_view` VALUES("48901", "15", "2017-02-19 02:31:31", "66.249.79.144", "23");
INSERT INTO `wp_rg_form_view` VALUES("48902", "11", "2017-02-19 02:44:47", "164.132.161.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("48903", "3", "2017-02-19 03:03:43", "164.132.161.49", "53");
INSERT INTO `wp_rg_form_view` VALUES("48904", "15", "2017-02-19 03:03:43", "164.132.161.49", "32");
INSERT INTO `wp_rg_form_view` VALUES("48905", "11", "2017-02-19 03:58:00", "77.75.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("48906", "3", "2017-02-19 04:46:34", "154.5.209.209", "30");
INSERT INTO `wp_rg_form_view` VALUES("48907", "15", "2017-02-19 04:46:35", "154.5.209.209", "20");
INSERT INTO `wp_rg_form_view` VALUES("48908", "3", "2017-02-19 05:09:17", "202.46.54.186", "43");
INSERT INTO `wp_rg_form_view` VALUES("48909", "15", "2017-02-19 05:09:17", "202.46.54.186", "29");
INSERT INTO `wp_rg_form_view` VALUES("48910", "14", "2017-02-19 05:35:31", "70.67.50.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("48911", "3", "2017-02-19 06:10:04", "68.180.229.247", "30");
INSERT INTO `wp_rg_form_view` VALUES("48912", "15", "2017-02-19 06:10:04", "68.180.229.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("48913", "3", "2017-02-19 07:13:46", "5.188.211.22", "335");
INSERT INTO `wp_rg_form_view` VALUES("48914", "15", "2017-02-19 07:13:48", "5.188.211.22", "241");
INSERT INTO `wp_rg_form_view` VALUES("48915", "3", "2017-02-19 08:17:28", "66.249.79.144", "19");
INSERT INTO `wp_rg_form_view` VALUES("48916", "15", "2017-02-19 08:17:28", "66.249.79.144", "12");
INSERT INTO `wp_rg_form_view` VALUES("48917", "3", "2017-02-19 09:07:41", "24.68.4.213", "102");
INSERT INTO `wp_rg_form_view` VALUES("48918", "15", "2017-02-19 09:07:41", "24.68.4.213", "68");
INSERT INTO `wp_rg_form_view` VALUES("48919", "10", "2017-02-19 09:47:26", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48920", "3", "2017-02-19 10:08:21", "66.249.79.140", "194");
INSERT INTO `wp_rg_form_view` VALUES("48921", "15", "2017-02-19 10:08:21", "66.249.79.140", "128");
INSERT INTO `wp_rg_form_view` VALUES("48922", "11", "2017-02-19 10:26:58", "96.56.24.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48923", "2", "2017-02-19 10:28:01", "96.56.24.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("48924", "3", "2017-02-19 11:34:00", "199.16.157.183", "19");
INSERT INTO `wp_rg_form_view` VALUES("48925", "3", "2017-02-19 11:34:00", "199.16.157.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("48926", "15", "2017-02-19 11:34:03", "199.16.157.183", "12");
INSERT INTO `wp_rg_form_view` VALUES("48927", "3", "2017-02-19 12:15:06", "66.249.79.140", "19");
INSERT INTO `wp_rg_form_view` VALUES("48928", "15", "2017-02-19 12:15:11", "66.249.79.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("48929", "3", "2017-02-19 13:47:14", "51.255.65.10", "12");
INSERT INTO `wp_rg_form_view` VALUES("48930", "15", "2017-02-19 13:47:16", "51.255.65.10", "8");
INSERT INTO `wp_rg_form_view` VALUES("48931", "10", "2017-02-19 14:06:07", "5.188.211.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("48932", "3", "2017-02-19 14:06:07", "5.188.211.15", "334");
INSERT INTO `wp_rg_form_view` VALUES("48933", "15", "2017-02-19 14:06:07", "5.188.211.15", "237");
INSERT INTO `wp_rg_form_view` VALUES("48934", "11", "2017-02-19 14:11:04", "173.242.126.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("48935", "2", "2017-02-19 14:11:59", "173.242.126.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("48936", "10", "2017-02-19 15:04:34", "199.16.157.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("48937", "3", "2017-02-19 15:04:35", "199.16.157.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("48938", "15", "2017-02-19 15:04:35", "199.16.157.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("48939", "3", "2017-02-19 16:07:01", "220.181.108.110", "63");
INSERT INTO `wp_rg_form_view` VALUES("48940", "15", "2017-02-19 16:07:03", "220.181.108.110", "40");
INSERT INTO `wp_rg_form_view` VALUES("48941", "2", "2017-02-19 16:52:30", "96.54.240.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("48942", "3", "2017-02-19 17:19:50", "51.255.65.42", "477");
INSERT INTO `wp_rg_form_view` VALUES("48943", "15", "2017-02-19 17:19:56", "51.255.65.42", "322");
INSERT INTO `wp_rg_form_view` VALUES("48944", "10", "2017-02-19 17:53:20", "207.46.13.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("48945", "11", "2017-02-19 17:53:30", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("48946", "6", "2017-02-19 17:53:53", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("48947", "9", "2017-02-19 17:54:21", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("48948", "5", "2017-02-19 17:54:46", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("48949", "3", "2017-02-19 18:44:18", "164.132.161.18", "12");
INSERT INTO `wp_rg_form_view` VALUES("48950", "15", "2017-02-19 18:44:19", "164.132.161.18", "8");
INSERT INTO `wp_rg_form_view` VALUES("48951", "3", "2017-02-19 19:13:13", "216.232.152.160", "67");
INSERT INTO `wp_rg_form_view` VALUES("48952", "15", "2017-02-19 19:13:14", "216.232.152.160", "44");
INSERT INTO `wp_rg_form_view` VALUES("48953", "11", "2017-02-19 19:59:40", "24.108.168.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("48954", "3", "2017-02-19 20:00:10", "24.108.168.103", "189");
INSERT INTO `wp_rg_form_view` VALUES("48955", "15", "2017-02-19 20:00:10", "24.108.168.103", "125");
INSERT INTO `wp_rg_form_view` VALUES("48956", "11", "2017-02-19 20:15:13", "138.197.111.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("48957", "2", "2017-02-19 20:15:14", "138.197.111.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("48958", "14", "2017-02-19 20:36:26", "210.91.48.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("48959", "3", "2017-02-19 21:18:54", "66.249.79.144", "66");
INSERT INTO `wp_rg_form_view` VALUES("48960", "15", "2017-02-19 21:19:03", "66.249.79.144", "44");
INSERT INTO `wp_rg_form_view` VALUES("48961", "14", "2017-02-19 21:29:23", "216.232.152.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("48962", "3", "2017-02-19 22:01:38", "66.249.79.140", "33");
INSERT INTO `wp_rg_form_view` VALUES("48963", "15", "2017-02-19 22:01:38", "66.249.79.140", "27");
INSERT INTO `wp_rg_form_view` VALUES("48964", "10", "2017-02-19 22:32:27", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48965", "3", "2017-02-19 23:11:22", "107.170.16.250", "68");
INSERT INTO `wp_rg_form_view` VALUES("48966", "15", "2017-02-19 23:11:28", "107.170.16.250", "44");
INSERT INTO `wp_rg_form_view` VALUES("48967", "3", "2017-02-20 00:18:55", "157.55.39.128", "13");
INSERT INTO `wp_rg_form_view` VALUES("48968", "15", "2017-02-20 00:18:56", "66.249.79.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("48969", "15", "2017-02-20 00:18:56", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("48970", "3", "2017-02-20 01:15:32", "202.46.52.172", "55");
INSERT INTO `wp_rg_form_view` VALUES("48971", "15", "2017-02-20 01:15:36", "202.46.52.172", "36");
INSERT INTO `wp_rg_form_view` VALUES("48972", "3", "2017-02-20 02:01:03", "77.75.79.109", "24");
INSERT INTO `wp_rg_form_view` VALUES("48973", "15", "2017-02-20 02:01:04", "77.75.79.109", "16");
INSERT INTO `wp_rg_form_view` VALUES("48974", "14", "2017-02-20 03:05:42", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("48975", "3", "2017-02-20 03:05:43", "68.180.229.247", "48");
INSERT INTO `wp_rg_form_view` VALUES("48976", "3", "2017-02-20 03:05:43", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48977", "15", "2017-02-20 03:05:44", "68.180.229.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("48978", "15", "2017-02-20 03:05:44", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("48979", "3", "2017-02-20 04:15:56", "77.75.79.101", "25");
INSERT INTO `wp_rg_form_view` VALUES("48980", "15", "2017-02-20 04:15:58", "77.75.79.101", "17");
INSERT INTO `wp_rg_form_view` VALUES("48981", "3", "2017-02-20 05:18:03", "207.46.13.48", "25");
INSERT INTO `wp_rg_form_view` VALUES("48982", "15", "2017-02-20 05:26:04", "77.75.79.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("48983", "13", "2017-02-20 06:07:34", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("48984", "3", "2017-02-20 06:10:53", "207.46.13.48", "25");
INSERT INTO `wp_rg_form_view` VALUES("48985", "15", "2017-02-20 06:10:54", "207.46.13.48", "16");
INSERT INTO `wp_rg_form_view` VALUES("48986", "10", "2017-02-20 07:16:41", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("48987", "3", "2017-02-20 07:16:51", "207.46.13.48", "37");
INSERT INTO `wp_rg_form_view` VALUES("48988", "15", "2017-02-20 07:16:51", "207.46.13.48", "24");
INSERT INTO `wp_rg_form_view` VALUES("48989", "3", "2017-02-20 08:19:05", "66.249.79.140", "25");
INSERT INTO `wp_rg_form_view` VALUES("48990", "15", "2017-02-20 08:19:06", "66.249.79.140", "23");
INSERT INTO `wp_rg_form_view` VALUES("48991", "3", "2017-02-20 09:04:48", "157.55.39.128", "40");
INSERT INTO `wp_rg_form_view` VALUES("48992", "15", "2017-02-20 09:04:48", "157.55.39.128", "31");
INSERT INTO `wp_rg_form_view` VALUES("48993", "3", "2017-02-20 10:13:39", "66.249.79.148", "15");
INSERT INTO `wp_rg_form_view` VALUES("48994", "15", "2017-02-20 10:13:40", "66.249.79.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("48995", "3", "2017-02-20 11:01:54", "66.249.79.148", "36");
INSERT INTO `wp_rg_form_view` VALUES("48996", "15", "2017-02-20 11:01:54", "66.249.79.148", "24");
INSERT INTO `wp_rg_form_view` VALUES("48997", "3", "2017-02-20 12:02:34", "157.55.39.128", "33");
INSERT INTO `wp_rg_form_view` VALUES("48998", "15", "2017-02-20 12:02:35", "157.55.39.128", "20");
INSERT INTO `wp_rg_form_view` VALUES("48999", "3", "2017-02-20 13:11:26", "207.46.13.48", "28");
INSERT INTO `wp_rg_form_view` VALUES("49000", "15", "2017-02-20 13:11:26", "207.46.13.48", "16");
INSERT INTO `wp_rg_form_view` VALUES("49001", "3", "2017-02-20 14:09:08", "207.46.13.48", "22");
INSERT INTO `wp_rg_form_view` VALUES("49002", "15", "2017-02-20 14:09:09", "207.46.13.48", "19");
INSERT INTO `wp_rg_form_view` VALUES("49003", "3", "2017-02-20 15:35:09", "66.249.79.140", "30");
INSERT INTO `wp_rg_form_view` VALUES("49004", "15", "2017-02-20 15:35:09", "66.249.79.140", "20");
INSERT INTO `wp_rg_form_view` VALUES("49005", "2", "2017-02-20 15:51:51", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49006", "3", "2017-02-20 16:11:58", "207.46.13.48", "68");
INSERT INTO `wp_rg_form_view` VALUES("49007", "15", "2017-02-20 16:12:00", "207.46.13.48", "44");
INSERT INTO `wp_rg_form_view` VALUES("49008", "13", "2017-02-20 16:56:53", "46.118.233.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("49009", "3", "2017-02-20 17:04:12", "66.249.79.140", "70");
INSERT INTO `wp_rg_form_view` VALUES("49010", "15", "2017-02-20 17:04:13", "66.249.79.140", "46");
INSERT INTO `wp_rg_form_view` VALUES("49011", "3", "2017-02-20 18:10:32", "66.249.79.148", "49");
INSERT INTO `wp_rg_form_view` VALUES("49012", "15", "2017-02-20 18:11:03", "66.249.79.148", "32");
INSERT INTO `wp_rg_form_view` VALUES("49013", "3", "2017-02-20 19:21:15", "68.180.229.247", "43");
INSERT INTO `wp_rg_form_view` VALUES("49014", "15", "2017-02-20 19:21:16", "68.180.229.247", "28");
INSERT INTO `wp_rg_form_view` VALUES("49015", "3", "2017-02-20 20:05:06", "66.249.79.144", "72");
INSERT INTO `wp_rg_form_view` VALUES("49016", "15", "2017-02-20 20:05:08", "66.249.79.144", "41");
INSERT INTO `wp_rg_form_view` VALUES("49017", "14", "2017-02-20 20:27:51", "24.69.158.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("49018", "3", "2017-02-20 21:07:30", "202.46.53.55", "50");
INSERT INTO `wp_rg_form_view` VALUES("49019", "8", "2017-02-20 22:08:03", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("49020", "3", "2017-02-20 22:08:05", "66.249.79.144", "82");
INSERT INTO `wp_rg_form_view` VALUES("49021", "10", "2017-02-20 22:18:59", "51.255.65.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("49022", "3", "2017-02-20 23:06:29", "66.249.79.148", "84");
INSERT INTO `wp_rg_form_view` VALUES("49023", "10", "2017-02-20 23:41:00", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49024", "3", "2017-02-21 00:21:55", "164.132.161.41", "91");
INSERT INTO `wp_rg_form_view` VALUES("49025", "14", "2017-02-21 00:33:17", "195.22.127.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("49026", "3", "2017-02-21 01:00:52", "202.46.58.151", "41");
INSERT INTO `wp_rg_form_view` VALUES("49027", "3", "2017-02-21 02:14:49", "37.187.174.89", "114");
INSERT INTO `wp_rg_form_view` VALUES("49028", "7", "2017-02-21 02:32:33", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("49029", "3", "2017-02-21 03:01:27", "157.55.39.105", "60");
INSERT INTO `wp_rg_form_view` VALUES("49030", "10", "2017-02-21 03:46:00", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("49031", "10", "2017-02-21 04:02:59", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("49032", "3", "2017-02-21 04:02:59", "66.249.79.144", "1086");
INSERT INTO `wp_rg_form_view` VALUES("49033", "14", "2017-02-21 04:51:30", "45.55.149.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("49034", "11", "2017-02-21 04:51:54", "45.55.149.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("49035", "3", "2017-02-21 05:00:39", "45.55.149.151", "3888");
INSERT INTO `wp_rg_form_view` VALUES("49036", "6", "2017-02-21 05:10:10", "45.55.149.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("49037", "9", "2017-02-21 05:18:04", "45.55.149.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("49038", "13", "2017-02-21 05:20:55", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("49039", "10", "2017-02-21 05:25:19", "157.55.39.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("49040", "2", "2017-02-21 05:58:24", "45.55.149.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("49041", "3", "2017-02-21 06:00:10", "45.55.149.151", "737");
INSERT INTO `wp_rg_form_view` VALUES("49042", "10", "2017-02-21 06:05:40", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("49043", "13", "2017-02-21 06:08:30", "45.55.149.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("49044", "8", "2017-02-21 06:09:34", "45.55.149.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("49045", "3", "2017-02-21 07:21:59", "202.46.53.17", "51");
INSERT INTO `wp_rg_form_view` VALUES("49046", "3", "2017-02-21 08:12:41", "24.69.174.160", "333");
INSERT INTO `wp_rg_form_view` VALUES("49047", "2", "2017-02-21 08:35:25", "23.20.31.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("49048", "11", "2017-02-21 08:41:49", "138.197.111.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("49049", "13", "2017-02-21 08:54:50", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("49050", "3", "2017-02-21 09:09:22", "66.249.79.148", "74");
INSERT INTO `wp_rg_form_view` VALUES("49051", "9", "2017-02-21 10:06:48", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49052", "10", "2017-02-21 10:23:57", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("49053", "3", "2017-02-21 10:23:58", "157.55.39.128", "61");
INSERT INTO `wp_rg_form_view` VALUES("49054", "3", "2017-02-21 11:00:04", "178.165.88.182", "51");
INSERT INTO `wp_rg_form_view` VALUES("49055", "3", "2017-02-21 12:18:30", "157.55.39.128", "72");
INSERT INTO `wp_rg_form_view` VALUES("49056", "3", "2017-02-21 12:18:30", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("49057", "8", "2017-02-21 12:43:22", "163.172.66.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("49058", "10", "2017-02-21 12:47:07", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("49059", "3", "2017-02-21 13:10:06", "66.249.79.148", "31");
INSERT INTO `wp_rg_form_view` VALUES("49060", "3", "2017-02-21 14:07:32", "66.249.79.140", "163");
INSERT INTO `wp_rg_form_view` VALUES("49061", "10", "2017-02-21 14:14:32", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("49062", "13", "2017-02-21 14:47:06", "163.172.66.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("49063", "3", "2017-02-21 15:06:01", "66.249.79.140", "51");
INSERT INTO `wp_rg_form_view` VALUES("49064", "3", "2017-02-21 16:18:02", "66.249.79.140", "82");
INSERT INTO `wp_rg_form_view` VALUES("49065", "10", "2017-02-21 17:20:47", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49066", "3", "2017-02-21 17:21:16", "207.46.13.48", "21");
INSERT INTO `wp_rg_form_view` VALUES("49067", "3", "2017-02-21 18:02:18", "203.96.149.247", "174");
INSERT INTO `wp_rg_form_view` VALUES("49068", "3", "2017-02-21 18:02:18", "203.96.149.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49069", "15", "2017-02-21 18:43:10", "70.67.53.250", "15");
INSERT INTO `wp_rg_form_view` VALUES("49070", "10", "2017-02-21 18:43:10", "70.67.53.250", "16");
INSERT INTO `wp_rg_form_view` VALUES("49071", "14", "2017-02-21 18:44:04", "70.67.53.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("49072", "15", "2017-02-21 19:00:29", "66.249.79.144", "28");
INSERT INTO `wp_rg_form_view` VALUES("49073", "3", "2017-02-21 19:00:29", "66.249.79.144", "137");
INSERT INTO `wp_rg_form_view` VALUES("49074", "10", "2017-02-21 19:00:30", "66.249.79.144", "22");
INSERT INTO `wp_rg_form_view` VALUES("49075", "14", "2017-02-21 20:02:12", "209.197.20.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("49076", "3", "2017-02-21 20:02:12", "209.197.20.197", "74");
INSERT INTO `wp_rg_form_view` VALUES("49077", "15", "2017-02-21 20:02:13", "209.197.20.197", "12");
INSERT INTO `wp_rg_form_view` VALUES("49078", "10", "2017-02-21 20:02:13", "209.197.20.197", "9");
INSERT INTO `wp_rg_form_view` VALUES("49079", "3", "2017-02-21 21:01:41", "184.66.246.177", "221");
INSERT INTO `wp_rg_form_view` VALUES("49080", "15", "2017-02-21 21:01:41", "184.66.246.177", "27");
INSERT INTO `wp_rg_form_view` VALUES("49081", "10", "2017-02-21 21:01:41", "184.66.246.177", "29");
INSERT INTO `wp_rg_form_view` VALUES("49082", "8", "2017-02-21 21:03:02", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49083", "13", "2017-02-21 21:03:03", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("49084", "14", "2017-02-21 21:05:34", "184.66.246.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("49085", "3", "2017-02-21 22:03:16", "66.249.79.148", "114");
INSERT INTO `wp_rg_form_view` VALUES("49086", "15", "2017-02-21 22:03:17", "66.249.79.148", "19");
INSERT INTO `wp_rg_form_view` VALUES("49087", "10", "2017-02-21 22:03:17", "66.249.79.148", "18");
INSERT INTO `wp_rg_form_view` VALUES("49088", "10", "2017-02-21 23:03:09", "64.74.215.59", "16");
INSERT INTO `wp_rg_form_view` VALUES("49089", "3", "2017-02-21 23:03:09", "64.74.215.59", "120");
INSERT INTO `wp_rg_form_view` VALUES("49090", "15", "2017-02-21 23:03:10", "64.74.215.59", "18");
INSERT INTO `wp_rg_form_view` VALUES("49091", "3", "2017-02-22 00:08:20", "77.75.77.119", "67");
INSERT INTO `wp_rg_form_view` VALUES("49092", "15", "2017-02-22 00:08:21", "77.75.77.119", "8");
INSERT INTO `wp_rg_form_view` VALUES("49093", "10", "2017-02-22 00:08:21", "77.75.77.119", "9");
INSERT INTO `wp_rg_form_view` VALUES("49094", "9", "2017-02-22 00:51:19", "163.172.65.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("49095", "3", "2017-02-22 01:04:52", "157.55.39.128", "121");
INSERT INTO `wp_rg_form_view` VALUES("49096", "15", "2017-02-22 01:04:56", "157.55.39.128", "18");
INSERT INTO `wp_rg_form_view` VALUES("49097", "10", "2017-02-22 01:04:56", "157.55.39.128", "18");
INSERT INTO `wp_rg_form_view` VALUES("49098", "10", "2017-02-22 02:00:16", "75.154.240.57", "39");
INSERT INTO `wp_rg_form_view` VALUES("49099", "3", "2017-02-22 02:00:16", "75.154.240.57", "310");
INSERT INTO `wp_rg_form_view` VALUES("49100", "15", "2017-02-22 02:00:17", "75.154.240.57", "43");
INSERT INTO `wp_rg_form_view` VALUES("49101", "14", "2017-02-22 02:29:38", "154.20.39.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("49102", "2", "2017-02-22 02:35:32", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49103", "3", "2017-02-22 03:01:50", "154.20.41.244", "96");
INSERT INTO `wp_rg_form_view` VALUES("49104", "10", "2017-02-22 03:01:50", "154.20.41.244", "14");
INSERT INTO `wp_rg_form_view` VALUES("49105", "15", "2017-02-22 03:02:42", "154.20.39.22", "12");
INSERT INTO `wp_rg_form_view` VALUES("49106", "3", "2017-02-22 04:00:04", "207.6.123.224", "146");
INSERT INTO `wp_rg_form_view` VALUES("49107", "15", "2017-02-22 04:00:05", "207.6.123.224", "20");
INSERT INTO `wp_rg_form_view` VALUES("49108", "10", "2017-02-22 04:00:05", "207.6.123.224", "18");
INSERT INTO `wp_rg_form_view` VALUES("49109", "14", "2017-02-22 04:00:42", "207.6.123.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("49110", "6", "2017-02-22 04:31:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49111", "9", "2017-02-22 04:31:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49112", "8", "2017-02-22 04:31:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49113", "13", "2017-02-22 04:31:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49114", "5", "2017-02-22 04:49:24", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("49115", "15", "2017-02-22 05:09:49", "207.6.125.244", "23");
INSERT INTO `wp_rg_form_view` VALUES("49116", "3", "2017-02-22 05:10:20", "207.6.125.244", "137");
INSERT INTO `wp_rg_form_view` VALUES("49117", "10", "2017-02-22 05:10:21", "207.6.125.244", "19");
INSERT INTO `wp_rg_form_view` VALUES("49118", "11", "2017-02-22 05:33:05", "217.69.133.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("49119", "15", "2017-02-22 06:00:52", "70.66.52.163", "25");
INSERT INTO `wp_rg_form_view` VALUES("49120", "3", "2017-02-22 06:00:52", "70.66.52.163", "128");
INSERT INTO `wp_rg_form_view` VALUES("49121", "10", "2017-02-22 06:00:53", "70.66.52.163", "17");
INSERT INTO `wp_rg_form_view` VALUES("49122", "11", "2017-02-22 06:32:30", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49123", "14", "2017-02-22 06:46:03", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49124", "3", "2017-02-22 07:09:02", "77.75.78.161", "107");
INSERT INTO `wp_rg_form_view` VALUES("49125", "15", "2017-02-22 07:09:05", "77.75.78.161", "17");
INSERT INTO `wp_rg_form_view` VALUES("49126", "10", "2017-02-22 07:09:05", "77.75.78.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("49127", "14", "2017-02-22 07:38:35", "163.172.66.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("49128", "3", "2017-02-22 08:00:53", "157.55.39.128", "159");
INSERT INTO `wp_rg_form_view` VALUES("49129", "15", "2017-02-22 08:07:07", "68.180.229.247", "25");
INSERT INTO `wp_rg_form_view` VALUES("49130", "10", "2017-02-22 08:07:07", "68.180.229.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("49131", "14", "2017-02-22 08:12:44", "188.208.0.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("49132", "3", "2017-02-22 09:16:10", "157.55.39.128", "32");
INSERT INTO `wp_rg_form_view` VALUES("49133", "15", "2017-02-22 09:16:11", "157.55.39.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("49134", "10", "2017-02-22 09:16:11", "157.55.39.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("49135", "3", "2017-02-22 10:01:50", "207.46.13.48", "51");
INSERT INTO `wp_rg_form_view` VALUES("49136", "15", "2017-02-22 10:01:51", "207.46.13.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("49137", "10", "2017-02-22 10:01:51", "207.46.13.48", "10");
INSERT INTO `wp_rg_form_view` VALUES("49138", "3", "2017-02-22 11:17:24", "202.46.48.82", "74");
INSERT INTO `wp_rg_form_view` VALUES("49139", "15", "2017-02-22 11:17:28", "202.46.48.82", "11");
INSERT INTO `wp_rg_form_view` VALUES("49140", "10", "2017-02-22 11:17:28", "202.46.48.82", "9");
INSERT INTO `wp_rg_form_view` VALUES("49141", "9", "2017-02-22 12:01:06", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("49142", "3", "2017-02-22 12:01:06", "207.46.13.48", "115");
INSERT INTO `wp_rg_form_view` VALUES("49143", "15", "2017-02-22 12:01:06", "207.46.13.48", "13");
INSERT INTO `wp_rg_form_view` VALUES("49144", "10", "2017-02-22 12:01:07", "207.46.13.48", "17");
INSERT INTO `wp_rg_form_view` VALUES("49145", "6", "2017-02-22 12:15:09", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49146", "8", "2017-02-22 12:15:10", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49147", "13", "2017-02-22 12:15:11", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("49148", "3", "2017-02-22 13:02:53", "66.249.79.144", "113");
INSERT INTO `wp_rg_form_view` VALUES("49149", "15", "2017-02-22 13:02:54", "66.249.79.144", "16");
INSERT INTO `wp_rg_form_view` VALUES("49150", "10", "2017-02-22 13:02:54", "66.249.79.144", "15");
INSERT INTO `wp_rg_form_view` VALUES("49151", "3", "2017-02-22 14:10:09", "66.249.79.148", "267");
INSERT INTO `wp_rg_form_view` VALUES("49152", "15", "2017-02-22 14:10:10", "66.249.79.148", "34");
INSERT INTO `wp_rg_form_view` VALUES("49153", "10", "2017-02-22 14:10:10", "66.249.79.148", "33");
INSERT INTO `wp_rg_form_view` VALUES("49154", "12", "2017-02-22 14:40:23", "163.172.64.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("49155", "11", "2017-02-22 14:55:01", "94.221.81.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("49156", "2", "2017-02-22 14:56:07", "94.221.81.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("49157", "15", "2017-02-22 15:06:23", "184.66.224.168", "19");
INSERT INTO `wp_rg_form_view` VALUES("49158", "3", "2017-02-22 15:06:24", "184.66.224.168", "97");
INSERT INTO `wp_rg_form_view` VALUES("49159", "10", "2017-02-22 15:06:24", "184.66.224.168", "13");
INSERT INTO `wp_rg_form_view` VALUES("49160", "15", "2017-02-22 16:01:40", "154.5.180.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("49161", "3", "2017-02-22 16:01:41", "154.5.180.3", "260");
INSERT INTO `wp_rg_form_view` VALUES("49162", "10", "2017-02-22 16:01:41", "154.5.180.3", "36");
INSERT INTO `wp_rg_form_view` VALUES("49163", "14", "2017-02-22 16:12:05", "24.108.188.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("49164", "6", "2017-02-22 16:20:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49165", "9", "2017-02-22 16:20:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49166", "8", "2017-02-22 16:20:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49167", "13", "2017-02-22 16:20:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("49168", "2", "2017-02-22 16:46:14", "173.212.216.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("49169", "3", "2017-02-22 17:00:14", "62.173.145.28", "129");
INSERT INTO `wp_rg_form_view` VALUES("49170", "15", "2017-02-22 17:00:16", "62.173.145.28", "23");
INSERT INTO `wp_rg_form_view` VALUES("49171", "10", "2017-02-22 17:00:17", "62.173.145.28", "18");
INSERT INTO `wp_rg_form_view` VALUES("49172", "15", "2017-02-22 18:00:30", "24.244.32.206", "31");
INSERT INTO `wp_rg_form_view` VALUES("49173", "3", "2017-02-22 18:00:30", "24.244.32.206", "186");
INSERT INTO `wp_rg_form_view` VALUES("49174", "10", "2017-02-22 18:00:31", "24.244.32.206", "28");
INSERT INTO `wp_rg_form_view` VALUES("49175", "11", "2017-02-22 18:27:24", "184.66.134.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("49176", "14", "2017-02-22 18:34:31", "184.66.134.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("49177", "3", "2017-02-22 19:03:46", "184.69.174.226", "17");
INSERT INTO `wp_rg_form_view` VALUES("49178", "15", "2017-02-22 19:03:46", "184.69.174.226", "8");
INSERT INTO `wp_rg_form_view` VALUES("49179", "10", "2017-02-22 19:03:46", "184.69.174.226", "11");
INSERT INTO `wp_rg_form_view` VALUES("49180", "15", "2017-02-22 20:37:35", "24.244.32.181", "7");
INSERT INTO `wp_rg_form_view` VALUES("49181", "3", "2017-02-22 20:37:55", "24.244.32.181", "15");
INSERT INTO `wp_rg_form_view` VALUES("49182", "10", "2017-02-22 20:37:56", "24.244.32.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("49183", "11", "2017-02-22 20:48:02", "138.197.104.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("49184", "2", "2017-02-22 20:48:05", "138.197.104.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("49185", "14", "2017-02-22 21:34:21", "71.19.247.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("49186", "3", "2017-02-22 21:34:25", "71.19.247.41", "7");
INSERT INTO `wp_rg_form_view` VALUES("49187", "15", "2017-02-22 21:34:25", "71.19.247.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("49188", "10", "2017-02-22 21:34:25", "71.19.247.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("49189", "3", "2017-02-22 22:10:26", "202.46.50.94", "11");
INSERT INTO `wp_rg_form_view` VALUES("49190", "15", "2017-02-22 22:10:45", "207.46.13.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("49191", "15", "2017-02-22 22:10:45", "202.46.50.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("49192", "10", "2017-02-22 22:10:46", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("49193", "10", "2017-02-22 22:10:46", "202.46.50.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("49194", "3", "2017-02-22 23:06:17", "66.249.79.140", "27");
INSERT INTO `wp_rg_form_view` VALUES("49195", "15", "2017-02-22 23:06:26", "66.249.79.140", "13");
INSERT INTO `wp_rg_form_view` VALUES("49196", "10", "2017-02-22 23:06:26", "66.249.79.140", "13");
INSERT INTO `wp_rg_form_view` VALUES("49197", "12", "2017-02-22 23:50:37", "202.46.48.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("49198", "3", "2017-02-23 00:01:47", "157.55.39.105", "22");
INSERT INTO `wp_rg_form_view` VALUES("49199", "15", "2017-02-23 00:01:52", "157.55.39.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("49200", "10", "2017-02-23 00:01:52", "157.55.39.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("49201", "14", "2017-02-23 00:58:59", "154.20.39.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("49202", "15", "2017-02-23 01:02:33", "24.68.154.5", "11");
INSERT INTO `wp_rg_form_view` VALUES("49203", "3", "2017-02-23 01:02:33", "24.68.154.5", "18");
INSERT INTO `wp_rg_form_view` VALUES("49204", "10", "2017-02-23 01:02:34", "24.68.154.5", "8");
INSERT INTO `wp_rg_form_view` VALUES("49205", "3", "2017-02-23 02:30:08", "68.180.229.247", "27");
INSERT INTO `wp_rg_form_view` VALUES("49206", "15", "2017-02-23 02:30:09", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("49207", "10", "2017-02-23 02:30:09", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("49208", "2", "2017-02-23 02:31:15", "163.172.64.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("49209", "13", "2017-02-23 02:53:49", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49210", "8", "2017-02-23 03:26:34", "202.46.56.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("49211", "3", "2017-02-23 03:26:35", "202.46.56.38", "32");
INSERT INTO `wp_rg_form_view` VALUES("49212", "15", "2017-02-23 03:26:35", "202.46.56.38", "6");
INSERT INTO `wp_rg_form_view` VALUES("49213", "10", "2017-02-23 03:26:35", "202.46.56.38", "6");
INSERT INTO `wp_rg_form_view` VALUES("49214", "6", "2017-02-23 03:59:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49215", "9", "2017-02-23 03:59:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49216", "13", "2017-02-23 03:59:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49217", "3", "2017-02-23 04:11:00", "207.46.13.48", "13");
INSERT INTO `wp_rg_form_view` VALUES("49218", "15", "2017-02-23 04:11:00", "207.46.13.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("49219", "10", "2017-02-23 04:11:00", "207.46.13.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("49220", "3", "2017-02-23 05:02:32", "51.255.65.87", "6");
INSERT INTO `wp_rg_form_view` VALUES("49221", "15", "2017-02-23 05:02:32", "51.255.65.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("49222", "10", "2017-02-23 05:02:32", "51.255.65.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("49223", "10", "2017-02-23 06:02:54", "66.249.79.140", "11");
INSERT INTO `wp_rg_form_view` VALUES("49224", "3", "2017-02-23 06:02:58", "66.249.79.140", "20");
INSERT INTO `wp_rg_form_view` VALUES("49225", "15", "2017-02-23 06:02:58", "66.249.79.140", "9");
INSERT INTO `wp_rg_form_view` VALUES("49226", "14", "2017-02-23 06:41:22", "185.128.36.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("49227", "9", "2017-02-23 06:46:43", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49228", "15", "2017-02-23 07:19:11", "154.5.209.227", "3");
INSERT INTO `wp_rg_form_view` VALUES("49229", "3", "2017-02-23 07:19:31", "154.5.209.227", "4");
INSERT INTO `wp_rg_form_view` VALUES("49230", "10", "2017-02-23 07:19:31", "154.5.209.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("49231", "3", "2017-02-23 08:00:32", "157.55.39.128", "7");
INSERT INTO `wp_rg_form_view` VALUES("49232", "10", "2017-02-23 08:07:25", "207.46.13.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("49233", "15", "2017-02-23 08:07:26", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("49234", "14", "2017-02-23 08:24:54", "125.141.200.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("49235", "3", "2017-02-23 09:18:38", "165.231.80.96", "9");
INSERT INTO `wp_rg_form_view` VALUES("49236", "15", "2017-02-23 09:18:43", "165.231.80.96", "7");
INSERT INTO `wp_rg_form_view` VALUES("49237", "10", "2017-02-23 09:18:44", "165.231.80.96", "7");
INSERT INTO `wp_rg_form_view` VALUES("49238", "3", "2017-02-23 10:11:09", "157.55.39.128", "8");
INSERT INTO `wp_rg_form_view` VALUES("49239", "15", "2017-02-23 10:11:09", "157.55.39.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("49240", "10", "2017-02-23 10:11:10", "157.55.39.128", "5");
INSERT INTO `wp_rg_form_view` VALUES("49241", "3", "2017-02-23 11:06:53", "202.46.49.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("49242", "15", "2017-02-23 11:06:54", "202.46.49.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("49243", "10", "2017-02-23 11:06:54", "202.46.49.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("49244", "14", "2017-02-23 11:51:28", "210.120.128.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("49245", "3", "2017-02-23 12:31:09", "207.46.13.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("49246", "15", "2017-02-23 12:31:19", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("49247", "10", "2017-02-23 12:31:19", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("49248", "3", "2017-02-23 13:25:46", "163.172.65.33", "37");
INSERT INTO `wp_rg_form_view` VALUES("49249", "15", "2017-02-23 13:25:48", "163.172.65.33", "6");
INSERT INTO `wp_rg_form_view` VALUES("49250", "10", "2017-02-23 13:25:48", "163.172.65.33", "9");
INSERT INTO `wp_rg_form_view` VALUES("49251", "6", "2017-02-23 13:48:17", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49252", "9", "2017-02-23 13:48:17", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49253", "8", "2017-02-23 13:48:17", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49254", "13", "2017-02-23 13:48:18", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49255", "3", "2017-02-23 14:10:34", "157.55.39.105", "36");
INSERT INTO `wp_rg_form_view` VALUES("49256", "15", "2017-02-23 14:10:39", "157.55.39.105", "6");
INSERT INTO `wp_rg_form_view` VALUES("49257", "10", "2017-02-23 14:10:39", "157.55.39.105", "8");
INSERT INTO `wp_rg_form_view` VALUES("49258", "8", "2017-02-23 14:30:15", "157.55.39.128", "2");
INSERT INTO `wp_rg_form_view` VALUES("49259", "6", "2017-02-23 14:43:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49260", "9", "2017-02-23 14:43:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49261", "13", "2017-02-23 14:43:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49262", "15", "2017-02-23 15:09:58", "108.172.162.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("49263", "3", "2017-02-23 15:10:00", "108.172.162.135", "9");
INSERT INTO `wp_rg_form_view` VALUES("49264", "10", "2017-02-23 15:10:00", "108.172.162.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("49265", "11", "2017-02-23 15:51:39", "202.46.58.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("49266", "3", "2017-02-23 16:17:16", "66.249.79.140", "14");
INSERT INTO `wp_rg_form_view` VALUES("49267", "15", "2017-02-23 16:17:17", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("49268", "10", "2017-02-23 16:17:17", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("49269", "3", "2017-02-23 17:08:08", "184.69.169.154", "44");
INSERT INTO `wp_rg_form_view` VALUES("49270", "3", "2017-02-23 17:08:08", "184.69.169.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("49271", "15", "2017-02-23 17:08:40", "184.69.169.154", "23");
INSERT INTO `wp_rg_form_view` VALUES("49272", "10", "2017-02-23 17:08:40", "184.69.169.154", "17");
INSERT INTO `wp_rg_form_view` VALUES("49273", "10", "2017-02-23 17:08:40", "184.69.169.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("49274", "10", "2017-02-23 17:08:40", "184.69.169.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("49275", "10", "2017-02-23 17:08:40", "184.69.169.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("49276", "8", "2017-02-23 17:23:12", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49277", "13", "2017-02-23 17:23:14", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49278", "10", "2017-02-23 18:04:41", "157.55.39.105", "20");
INSERT INTO `wp_rg_form_view` VALUES("49279", "3", "2017-02-23 18:04:43", "157.55.39.105", "37");
INSERT INTO `wp_rg_form_view` VALUES("49280", "15", "2017-02-23 18:04:43", "157.55.39.105", "22");
INSERT INTO `wp_rg_form_view` VALUES("49281", "12", "2017-02-23 18:05:47", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("49282", "8", "2017-02-23 18:30:03", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("49283", "3", "2017-02-23 19:00:37", "68.180.229.247", "19");
INSERT INTO `wp_rg_form_view` VALUES("49284", "15", "2017-02-23 19:00:37", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("49285", "10", "2017-02-23 19:00:37", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("49286", "13", "2017-02-23 19:38:36", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("49287", "3", "2017-02-23 20:01:30", "207.46.13.48", "27");
INSERT INTO `wp_rg_form_view` VALUES("49288", "8", "2017-02-23 20:01:31", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49289", "10", "2017-02-23 20:01:32", "207.46.13.48", "8");
INSERT INTO `wp_rg_form_view` VALUES("49290", "13", "2017-02-23 20:01:32", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49291", "15", "2017-02-23 20:01:32", "207.46.13.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("49292", "12", "2017-02-23 20:36:30", "202.46.56.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("49293", "3", "2017-02-23 21:20:41", "163.172.66.95", "13");
INSERT INTO `wp_rg_form_view` VALUES("49294", "15", "2017-02-23 21:20:48", "163.172.66.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("49295", "10", "2017-02-23 21:20:48", "163.172.66.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("49296", "10", "2017-02-23 22:10:20", "184.66.50.109", "11");
INSERT INTO `wp_rg_form_view` VALUES("49297", "3", "2017-02-23 22:10:31", "184.66.50.109", "19");
INSERT INTO `wp_rg_form_view` VALUES("49298", "15", "2017-02-23 22:10:31", "184.66.50.109", "9");
INSERT INTO `wp_rg_form_view` VALUES("49299", "10", "2017-02-23 23:01:54", "207.46.13.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("49300", "3", "2017-02-23 23:01:55", "207.46.13.48", "8");
INSERT INTO `wp_rg_form_view` VALUES("49301", "15", "2017-02-23 23:01:55", "207.46.13.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("49302", "3", "2017-02-24 00:00:11", "164.132.161.32", "20");
INSERT INTO `wp_rg_form_view` VALUES("49303", "15", "2017-02-24 00:00:11", "164.132.161.32", "9");
INSERT INTO `wp_rg_form_view` VALUES("49304", "10", "2017-02-24 00:00:12", "164.132.161.32", "11");
INSERT INTO `wp_rg_form_view` VALUES("49305", "3", "2017-02-24 01:05:35", "163.172.66.62", "39");
INSERT INTO `wp_rg_form_view` VALUES("49306", "15", "2017-02-24 01:05:35", "163.172.66.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("49307", "10", "2017-02-24 01:05:35", "163.172.66.62", "11");
INSERT INTO `wp_rg_form_view` VALUES("49308", "6", "2017-02-24 01:59:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49309", "9", "2017-02-24 01:59:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49310", "8", "2017-02-24 01:59:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49311", "13", "2017-02-24 01:59:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49312", "3", "2017-02-24 02:12:59", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("49313", "3", "2017-02-24 03:20:05", "207.46.13.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("49314", "15", "2017-02-24 03:20:09", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("49315", "10", "2017-02-24 03:20:09", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("49316", "3", "2017-02-24 04:04:32", "207.46.13.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("49317", "15", "2017-02-24 04:04:32", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("49318", "10", "2017-02-24 04:04:32", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("49319", "3", "2017-02-24 05:19:21", "157.55.39.105", "9");
INSERT INTO `wp_rg_form_view` VALUES("49320", "15", "2017-02-24 05:53:06", "207.228.78.138", "7");
INSERT INTO `wp_rg_form_view` VALUES("49321", "15", "2017-02-24 05:53:06", "207.228.78.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("49322", "10", "2017-02-24 05:53:35", "207.228.78.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("49323", "10", "2017-02-24 05:53:35", "207.228.78.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("49324", "10", "2017-02-24 05:53:35", "207.228.78.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("49325", "3", "2017-02-24 06:17:50", "207.46.13.48", "8");
INSERT INTO `wp_rg_form_view` VALUES("49326", "14", "2017-02-24 06:33:25", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49327", "15", "2017-02-24 06:33:27", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("49328", "10", "2017-02-24 06:33:27", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("49329", "14", "2017-02-24 07:01:57", "179.43.131.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("49330", "3", "2017-02-24 07:02:30", "179.43.131.197", "17");
INSERT INTO `wp_rg_form_view` VALUES("49331", "15", "2017-02-24 07:02:32", "179.43.131.197", "6");
INSERT INTO `wp_rg_form_view` VALUES("49332", "10", "2017-02-24 07:02:32", "179.43.131.197", "8");
INSERT INTO `wp_rg_form_view` VALUES("49333", "8", "2017-02-24 07:31:16", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("49334", "13", "2017-02-24 07:31:18", "157.55.39.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("49335", "11", "2017-02-24 08:00:10", "77.75.78.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("49336", "3", "2017-02-24 08:05:15", "202.46.49.157", "30");
INSERT INTO `wp_rg_form_view` VALUES("49337", "15", "2017-02-24 08:05:16", "202.46.49.157", "13");
INSERT INTO `wp_rg_form_view` VALUES("49338", "10", "2017-02-24 08:05:16", "202.46.49.157", "12");
INSERT INTO `wp_rg_form_view` VALUES("49339", "2", "2017-02-24 08:24:25", "138.197.96.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("49340", "3", "2017-02-24 09:08:03", "66.249.79.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("49341", "15", "2017-02-24 09:08:03", "66.249.79.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("49342", "10", "2017-02-24 09:08:03", "66.249.79.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("49343", "13", "2017-02-24 09:52:49", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("49344", "3", "2017-02-24 10:01:02", "157.55.39.128", "21");
INSERT INTO `wp_rg_form_view` VALUES("49345", "15", "2017-02-24 10:01:03", "157.55.39.128", "8");
INSERT INTO `wp_rg_form_view` VALUES("49346", "10", "2017-02-24 10:01:03", "157.55.39.128", "9");
INSERT INTO `wp_rg_form_view` VALUES("49347", "3", "2017-02-24 11:07:09", "207.46.13.48", "16");
INSERT INTO `wp_rg_form_view` VALUES("49348", "15", "2017-02-24 11:07:09", "207.46.13.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("49349", "10", "2017-02-24 11:07:09", "207.46.13.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("49350", "14", "2017-02-24 11:58:23", "173.208.146.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("49351", "3", "2017-02-24 12:02:20", "66.249.79.140", "17");
INSERT INTO `wp_rg_form_view` VALUES("49352", "15", "2017-02-24 12:02:20", "66.249.79.140", "7");
INSERT INTO `wp_rg_form_view` VALUES("49353", "10", "2017-02-24 12:02:20", "66.249.79.140", "7");
INSERT INTO `wp_rg_form_view` VALUES("49354", "2", "2017-02-24 12:30:58", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("49355", "14", "2017-02-24 12:32:47", "195.22.127.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("49356", "12", "2017-02-24 12:54:53", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("49357", "3", "2017-02-24 13:04:35", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("49358", "6", "2017-02-24 13:04:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49359", "9", "2017-02-24 13:04:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49360", "8", "2017-02-24 13:04:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49361", "10", "2017-02-24 13:04:37", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("49362", "13", "2017-02-24 13:04:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49363", "15", "2017-02-24 13:04:38", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("49364", "10", "2017-02-24 14:03:11", "157.55.39.105", "7");
INSERT INTO `wp_rg_form_view` VALUES("49365", "3", "2017-02-24 14:03:40", "157.55.39.105", "11");
INSERT INTO `wp_rg_form_view` VALUES("49366", "15", "2017-02-24 14:03:41", "157.55.39.105", "5");
INSERT INTO `wp_rg_form_view` VALUES("49367", "13", "2017-02-24 14:13:53", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("49368", "3", "2017-02-24 15:12:17", "207.46.13.48", "13");
INSERT INTO `wp_rg_form_view` VALUES("49369", "15", "2017-02-24 15:12:17", "207.46.13.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("49370", "10", "2017-02-24 15:12:17", "207.46.13.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("49371", "10", "2017-02-24 16:03:32", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("49372", "3", "2017-02-24 16:03:47", "68.180.229.247", "15");
INSERT INTO `wp_rg_form_view` VALUES("49373", "3", "2017-02-24 16:03:47", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49374", "15", "2017-02-24 16:03:47", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("49375", "10", "2017-02-24 17:01:18", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("49376", "3", "2017-02-24 17:01:37", "207.46.13.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("49377", "15", "2017-02-24 17:01:37", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("49378", "10", "2017-02-24 18:01:01", "184.71.26.18", "13");
INSERT INTO `wp_rg_form_view` VALUES("49379", "3", "2017-02-24 18:01:21", "184.71.26.18", "27");
INSERT INTO `wp_rg_form_view` VALUES("49380", "15", "2017-02-24 18:01:21", "184.71.26.18", "11");
INSERT INTO `wp_rg_form_view` VALUES("49381", "3", "2017-02-24 19:00:36", "163.172.66.94", "9");
INSERT INTO `wp_rg_form_view` VALUES("49382", "15", "2017-02-24 19:01:32", "163.172.66.94", "4");
INSERT INTO `wp_rg_form_view` VALUES("49383", "10", "2017-02-24 19:01:33", "163.172.66.94", "5");
INSERT INTO `wp_rg_form_view` VALUES("49384", "3", "2017-02-24 20:04:45", "40.77.167.83", "5");
INSERT INTO `wp_rg_form_view` VALUES("49385", "15", "2017-02-24 20:05:41", "40.77.167.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("49386", "10", "2017-02-24 20:05:42", "40.77.167.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("49387", "3", "2017-02-24 21:15:49", "163.172.66.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("49388", "3", "2017-02-24 22:30:12", "202.46.48.207", "10");
INSERT INTO `wp_rg_form_view` VALUES("49389", "15", "2017-02-24 22:31:25", "202.46.48.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("49390", "10", "2017-02-24 22:31:28", "202.46.48.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("49391", "14", "2017-02-24 22:50:05", "89.43.115.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("49392", "9", "2017-02-24 22:51:27", "163.172.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("49393", "3", "2017-02-24 23:28:24", "163.172.66.84", "18");
INSERT INTO `wp_rg_form_view` VALUES("49394", "15", "2017-02-24 23:29:12", "163.172.66.84", "9");
INSERT INTO `wp_rg_form_view` VALUES("49395", "10", "2017-02-24 23:29:13", "163.172.66.84", "9");
INSERT INTO `wp_rg_form_view` VALUES("49396", "15", "2017-02-25 00:11:42", "163.172.66.37", "5");
INSERT INTO `wp_rg_form_view` VALUES("49397", "3", "2017-02-25 00:11:48", "163.172.66.37", "32");
INSERT INTO `wp_rg_form_view` VALUES("49398", "10", "2017-02-25 00:11:48", "163.172.66.37", "6");
INSERT INTO `wp_rg_form_view` VALUES("49399", "6", "2017-02-25 00:30:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49400", "9", "2017-02-25 00:30:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49401", "8", "2017-02-25 00:30:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49402", "13", "2017-02-25 00:30:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49403", "3", "2017-02-25 01:12:25", "202.46.56.67", "9");
INSERT INTO `wp_rg_form_view` VALUES("49404", "15", "2017-02-25 01:12:26", "202.46.56.67", "4");
INSERT INTO `wp_rg_form_view` VALUES("49405", "10", "2017-02-25 01:12:26", "202.46.56.67", "5");
INSERT INTO `wp_rg_form_view` VALUES("49406", "3", "2017-02-25 02:15:42", "164.132.161.42", "11");
INSERT INTO `wp_rg_form_view` VALUES("49407", "15", "2017-02-25 02:15:57", "164.132.161.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("49408", "10", "2017-02-25 02:15:57", "164.132.161.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("49409", "13", "2017-02-25 02:33:33", "163.172.65.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("49410", "3", "2017-02-25 03:05:45", "37.187.56.81", "96");
INSERT INTO `wp_rg_form_view` VALUES("49411", "15", "2017-02-25 03:05:46", "37.187.56.81", "43");
INSERT INTO `wp_rg_form_view` VALUES("49412", "10", "2017-02-25 03:05:46", "37.187.56.81", "44");
INSERT INTO `wp_rg_form_view` VALUES("49413", "11", "2017-02-25 03:06:04", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("49414", "2", "2017-02-25 03:06:09", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("49415", "14", "2017-02-25 03:08:10", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("49416", "13", "2017-02-25 03:10:42", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("49417", "10", "2017-02-25 04:05:52", "163.172.65.20", "5");
INSERT INTO `wp_rg_form_view` VALUES("49418", "3", "2017-02-25 04:05:53", "163.172.65.20", "10");
INSERT INTO `wp_rg_form_view` VALUES("49419", "15", "2017-02-25 04:05:53", "163.172.65.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("49420", "14", "2017-02-25 05:23:33", "191.101.116.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("49421", "3", "2017-02-25 05:23:47", "191.101.116.171", "11");
INSERT INTO `wp_rg_form_view` VALUES("49422", "15", "2017-02-25 05:23:47", "191.101.116.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("49423", "10", "2017-02-25 05:23:47", "191.101.116.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("49424", "14", "2017-02-25 06:19:27", "45.45.150.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("49425", "3", "2017-02-25 06:19:29", "45.45.150.173", "7");
INSERT INTO `wp_rg_form_view` VALUES("49426", "15", "2017-02-25 06:19:29", "45.45.150.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("49427", "10", "2017-02-25 06:19:29", "45.45.150.173", "3");
INSERT INTO `wp_rg_form_view` VALUES("49428", "3", "2017-02-25 07:25:05", "69.58.178.57", "12");
INSERT INTO `wp_rg_form_view` VALUES("49429", "15", "2017-02-25 07:25:07", "69.58.178.57", "5");
INSERT INTO `wp_rg_form_view` VALUES("49430", "10", "2017-02-25 07:25:07", "69.58.178.57", "5");
INSERT INTO `wp_rg_form_view` VALUES("49431", "11", "2017-02-25 07:25:25", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("49432", "2", "2017-02-25 07:25:29", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("49433", "3", "2017-02-25 08:02:12", "66.249.79.144", "39");
INSERT INTO `wp_rg_form_view` VALUES("49434", "15", "2017-02-25 08:02:31", "66.249.79.144", "16");
INSERT INTO `wp_rg_form_view` VALUES("49435", "10", "2017-02-25 08:02:32", "66.249.79.144", "16");
INSERT INTO `wp_rg_form_view` VALUES("49436", "11", "2017-02-25 08:27:33", "213.127.54.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("49437", "2", "2017-02-25 08:28:38", "213.127.54.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("49438", "13", "2017-02-25 08:29:40", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("49439", "3", "2017-02-25 09:31:14", "163.172.65.11", "12");
INSERT INTO `wp_rg_form_view` VALUES("49440", "15", "2017-02-25 09:31:39", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49441", "10", "2017-02-25 09:31:39", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49442", "9", "2017-02-25 09:48:51", "202.46.52.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("49443", "3", "2017-02-25 10:08:02", "66.249.79.148", "20");
INSERT INTO `wp_rg_form_view` VALUES("49444", "15", "2017-02-25 10:08:02", "66.249.79.148", "9");
INSERT INTO `wp_rg_form_view` VALUES("49445", "10", "2017-02-25 10:08:02", "66.249.79.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("49446", "3", "2017-02-25 11:05:45", "51.255.65.58", "30");
INSERT INTO `wp_rg_form_view` VALUES("49447", "15", "2017-02-25 11:05:47", "51.255.65.58", "3");
INSERT INTO `wp_rg_form_view` VALUES("49448", "10", "2017-02-25 11:05:47", "51.255.65.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("49449", "6", "2017-02-25 11:22:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49450", "9", "2017-02-25 11:22:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49451", "8", "2017-02-25 11:22:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49452", "13", "2017-02-25 11:22:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49453", "3", "2017-02-25 12:03:07", "202.46.49.146", "12");
INSERT INTO `wp_rg_form_view` VALUES("49454", "15", "2017-02-25 12:03:31", "202.46.49.146", "5");
INSERT INTO `wp_rg_form_view` VALUES("49455", "10", "2017-02-25 12:03:32", "202.46.49.146", "5");
INSERT INTO `wp_rg_form_view` VALUES("49456", "3", "2017-02-25 13:14:41", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49457", "15", "2017-02-25 13:14:45", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("49458", "10", "2017-02-25 13:14:46", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("49459", "3", "2017-02-25 14:12:41", "51.255.65.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("49460", "15", "2017-02-25 14:12:44", "51.255.65.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("49461", "10", "2017-02-25 14:12:45", "51.255.65.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("49462", "10", "2017-02-25 15:25:27", "157.55.39.64", "42");
INSERT INTO `wp_rg_form_view` VALUES("49463", "3", "2017-02-25 15:25:35", "157.55.39.64", "90");
INSERT INTO `wp_rg_form_view` VALUES("49464", "15", "2017-02-25 15:25:36", "157.55.39.64", "37");
INSERT INTO `wp_rg_form_view` VALUES("49465", "9", "2017-02-25 15:26:00", "157.55.39.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("49466", "3", "2017-02-25 16:03:05", "202.46.50.164", "19");
INSERT INTO `wp_rg_form_view` VALUES("49467", "15", "2017-02-25 16:03:05", "202.46.50.164", "8");
INSERT INTO `wp_rg_form_view` VALUES("49468", "10", "2017-02-25 16:03:05", "202.46.50.164", "8");
INSERT INTO `wp_rg_form_view` VALUES("49469", "11", "2017-02-25 16:23:53", "138.197.73.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("49470", "2", "2017-02-25 16:23:54", "138.197.73.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("49471", "3", "2017-02-25 17:10:35", "66.249.79.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("49472", "15", "2017-02-25 17:10:47", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("49473", "10", "2017-02-25 17:10:47", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49474", "3", "2017-02-25 18:14:03", "40.77.167.116", "9");
INSERT INTO `wp_rg_form_view` VALUES("49475", "15", "2017-02-25 18:14:03", "40.77.167.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("49476", "10", "2017-02-25 18:14:04", "40.77.167.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("49477", "6", "2017-02-25 19:26:19", "202.46.52.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("49478", "3", "2017-02-25 19:26:24", "202.46.52.119", "5");
INSERT INTO `wp_rg_form_view` VALUES("49479", "15", "2017-02-25 19:26:25", "202.46.52.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("49480", "10", "2017-02-25 19:26:25", "202.46.52.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("49481", "10", "2017-02-25 20:17:44", "199.58.86.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("49482", "3", "2017-02-25 20:17:48", "199.58.86.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("49483", "15", "2017-02-25 20:17:48", "199.58.86.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("49484", "14", "2017-02-25 21:04:22", "173.208.146.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("49485", "3", "2017-02-25 21:04:28", "173.208.146.202", "13");
INSERT INTO `wp_rg_form_view` VALUES("49486", "15", "2017-02-25 21:04:29", "173.208.146.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("49487", "10", "2017-02-25 21:04:29", "173.208.146.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("49488", "2", "2017-02-25 21:44:01", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("49489", "3", "2017-02-25 22:03:24", "202.46.51.114", "34");
INSERT INTO `wp_rg_form_view` VALUES("49490", "15", "2017-02-25 22:03:24", "202.46.51.114", "5");
INSERT INTO `wp_rg_form_view` VALUES("49491", "10", "2017-02-25 22:03:24", "202.46.51.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("49492", "6", "2017-02-25 22:23:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49493", "9", "2017-02-25 22:23:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49494", "8", "2017-02-25 22:23:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49495", "13", "2017-02-25 22:23:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49496", "10", "2017-02-25 23:05:55", "77.75.78.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("49497", "3", "2017-02-25 23:05:56", "77.75.78.162", "12");
INSERT INTO `wp_rg_form_view` VALUES("49498", "15", "2017-02-25 23:05:56", "77.75.78.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("49499", "14", "2017-02-25 23:48:52", "184.66.17.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("49500", "3", "2017-02-26 00:14:15", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49501", "15", "2017-02-26 00:14:15", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("49502", "10", "2017-02-26 00:14:15", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("49503", "3", "2017-02-26 01:31:21", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("49504", "15", "2017-02-26 01:31:22", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("49505", "10", "2017-02-26 01:31:22", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("49506", "6", "2017-02-26 01:39:06", "163.172.64.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("49507", "3", "2017-02-26 02:00:27", "77.75.76.164", "7");
INSERT INTO `wp_rg_form_view` VALUES("49508", "15", "2017-02-26 02:00:27", "77.75.76.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("49509", "10", "2017-02-26 02:00:27", "77.75.76.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("49510", "3", "2017-02-26 03:04:47", "202.46.56.111", "12");
INSERT INTO `wp_rg_form_view` VALUES("49511", "15", "2017-02-26 03:04:48", "202.46.56.111", "5");
INSERT INTO `wp_rg_form_view` VALUES("49512", "10", "2017-02-26 03:04:48", "202.46.56.111", "5");
INSERT INTO `wp_rg_form_view` VALUES("49513", "14", "2017-02-26 03:45:58", "177.7.193.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("49514", "3", "2017-02-26 04:12:49", "202.46.48.195", "15");
INSERT INTO `wp_rg_form_view` VALUES("49515", "15", "2017-02-26 04:12:50", "202.46.48.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("49516", "10", "2017-02-26 04:12:50", "202.46.48.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("49517", "3", "2017-02-26 05:06:05", "77.75.79.101", "19");
INSERT INTO `wp_rg_form_view` VALUES("49518", "15", "2017-02-26 05:06:06", "77.75.79.101", "7");
INSERT INTO `wp_rg_form_view` VALUES("49519", "10", "2017-02-26 05:06:06", "77.75.79.101", "8");
INSERT INTO `wp_rg_form_view` VALUES("49520", "3", "2017-02-26 06:13:23", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("49521", "15", "2017-02-26 06:13:24", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("49522", "10", "2017-02-26 06:13:24", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("49523", "11", "2017-02-26 06:36:39", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49524", "3", "2017-02-26 07:21:55", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("49525", "15", "2017-02-26 07:21:58", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("49526", "10", "2017-02-26 07:21:58", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("49527", "10", "2017-02-26 08:02:01", "5.9.80.133", "5");
INSERT INTO `wp_rg_form_view` VALUES("49528", "3", "2017-02-26 08:09:32", "163.172.66.54", "5");
INSERT INTO `wp_rg_form_view` VALUES("49529", "15", "2017-02-26 08:09:33", "163.172.66.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("49530", "3", "2017-02-26 09:32:04", "66.249.79.144", "31");
INSERT INTO `wp_rg_form_view` VALUES("49531", "15", "2017-02-26 09:32:08", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("49532", "10", "2017-02-26 09:32:08", "66.249.79.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("49533", "6", "2017-02-26 09:44:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49534", "9", "2017-02-26 09:44:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49535", "8", "2017-02-26 09:44:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49536", "13", "2017-02-26 09:44:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49537", "3", "2017-02-26 10:37:55", "66.249.79.144", "9");
INSERT INTO `wp_rg_form_view` VALUES("49538", "15", "2017-02-26 10:37:58", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49539", "10", "2017-02-26 10:37:58", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49540", "14", "2017-02-26 11:34:39", "202.46.50.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("49541", "3", "2017-02-26 11:34:48", "202.46.50.181", "7");
INSERT INTO `wp_rg_form_view` VALUES("49542", "15", "2017-02-26 11:34:48", "202.46.50.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("49543", "10", "2017-02-26 11:34:48", "202.46.50.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("49544", "3", "2017-02-26 12:07:39", "66.249.79.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("49545", "15", "2017-02-26 12:07:41", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("49546", "10", "2017-02-26 12:07:41", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("49547", "3", "2017-02-26 13:02:41", "66.249.79.140", "13");
INSERT INTO `wp_rg_form_view` VALUES("49548", "15", "2017-02-26 13:02:43", "66.249.79.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("49549", "10", "2017-02-26 13:02:43", "66.249.79.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("49550", "3", "2017-02-26 14:16:04", "66.249.79.140", "5");
INSERT INTO `wp_rg_form_view` VALUES("49551", "15", "2017-02-26 14:16:09", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49552", "10", "2017-02-26 14:16:09", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("49553", "3", "2017-02-26 15:04:38", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("49554", "15", "2017-02-26 15:12:32", "192.254.152.35", "5");
INSERT INTO `wp_rg_form_view` VALUES("49555", "10", "2017-02-26 15:12:32", "192.254.152.35", "5");
INSERT INTO `wp_rg_form_view` VALUES("49556", "3", "2017-02-26 16:09:54", "66.249.79.144", "13");
INSERT INTO `wp_rg_form_view` VALUES("49557", "15", "2017-02-26 16:09:55", "66.249.79.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("49558", "10", "2017-02-26 16:09:55", "66.249.79.144", "7");
INSERT INTO `wp_rg_form_view` VALUES("49559", "11", "2017-02-26 16:30:58", "164.132.161.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("49560", "13", "2017-02-26 16:35:59", "202.46.51.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("49561", "14", "2017-02-26 17:09:28", "202.46.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("49562", "3", "2017-02-26 17:09:32", "202.46.53.114", "9");
INSERT INTO `wp_rg_form_view` VALUES("49563", "15", "2017-02-26 17:09:32", "202.46.53.114", "6");
INSERT INTO `wp_rg_form_view` VALUES("49564", "10", "2017-02-26 17:09:32", "202.46.53.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("49565", "3", "2017-02-26 18:16:32", "202.46.53.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("49566", "15", "2017-02-26 18:16:36", "202.46.53.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("49567", "10", "2017-02-26 18:16:36", "202.46.53.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("49568", "3", "2017-02-26 19:10:34", "164.132.161.47", "8");
INSERT INTO `wp_rg_form_view` VALUES("49569", "15", "2017-02-26 19:10:35", "164.132.161.47", "2");
INSERT INTO `wp_rg_form_view` VALUES("49570", "10", "2017-02-26 19:10:35", "164.132.161.47", "2");
INSERT INTO `wp_rg_form_view` VALUES("49571", "3", "2017-02-26 20:26:26", "163.172.65.107", "39");
INSERT INTO `wp_rg_form_view` VALUES("49572", "15", "2017-02-26 20:26:28", "163.172.65.107", "7");
INSERT INTO `wp_rg_form_view` VALUES("49573", "10", "2017-02-26 20:26:28", "163.172.65.107", "9");
INSERT INTO `wp_rg_form_view` VALUES("49574", "6", "2017-02-26 20:51:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49575", "9", "2017-02-26 20:51:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49576", "8", "2017-02-26 20:51:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49577", "13", "2017-02-26 20:51:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49578", "10", "2017-02-26 21:00:32", "66.249.79.144", "7");
INSERT INTO `wp_rg_form_view` VALUES("49579", "3", "2017-02-26 21:00:32", "66.249.79.144", "12");
INSERT INTO `wp_rg_form_view` VALUES("49580", "15", "2017-02-26 21:00:32", "66.249.79.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("49581", "2", "2017-02-26 21:45:22", "173.212.216.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("49582", "3", "2017-02-26 22:03:28", "68.180.229.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("49583", "15", "2017-02-26 22:03:32", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("49584", "10", "2017-02-26 22:03:32", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("49585", "5", "2017-02-26 22:03:46", "163.172.65.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("49586", "3", "2017-02-26 23:20:44", "202.46.57.177", "17");
INSERT INTO `wp_rg_form_view` VALUES("49587", "15", "2017-02-26 23:20:46", "202.46.57.177", "9");
INSERT INTO `wp_rg_form_view` VALUES("49588", "10", "2017-02-26 23:20:46", "202.46.57.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("49589", "14", "2017-02-26 23:47:49", "185.141.165.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("49590", "13", "2017-02-27 00:11:10", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49591", "3", "2017-02-27 00:11:10", "66.249.79.140", "7");
INSERT INTO `wp_rg_form_view` VALUES("49592", "15", "2017-02-27 00:11:11", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("49593", "10", "2017-02-27 00:11:11", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("49594", "3", "2017-02-27 01:04:11", "66.249.79.140", "34");
INSERT INTO `wp_rg_form_view` VALUES("49595", "6", "2017-02-27 01:04:12", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49596", "9", "2017-02-27 01:04:13", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49597", "8", "2017-02-27 01:04:13", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49598", "10", "2017-02-27 01:04:13", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("49599", "13", "2017-02-27 01:04:13", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49600", "15", "2017-02-27 01:04:14", "66.249.79.140", "5");
INSERT INTO `wp_rg_form_view` VALUES("49601", "3", "2017-02-27 02:15:36", "23.16.35.134", "14");
INSERT INTO `wp_rg_form_view` VALUES("49602", "15", "2017-02-27 02:15:37", "23.16.35.134", "6");
INSERT INTO `wp_rg_form_view` VALUES("49603", "10", "2017-02-27 02:15:37", "23.16.35.134", "6");
INSERT INTO `wp_rg_form_view` VALUES("49604", "3", "2017-02-27 03:48:10", "202.46.52.178", "3");
INSERT INTO `wp_rg_form_view` VALUES("49605", "15", "2017-02-27 03:48:14", "202.46.52.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("49606", "10", "2017-02-27 03:48:14", "202.46.52.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("49607", "3", "2017-02-27 04:02:32", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("49608", "15", "2017-02-27 04:02:32", "66.249.79.144", "5");
INSERT INTO `wp_rg_form_view` VALUES("49609", "10", "2017-02-27 04:02:32", "66.249.79.144", "5");
INSERT INTO `wp_rg_form_view` VALUES("49610", "3", "2017-02-27 05:06:31", "202.46.50.93", "11");
INSERT INTO `wp_rg_form_view` VALUES("49611", "15", "2017-02-27 05:06:34", "202.46.50.93", "5");
INSERT INTO `wp_rg_form_view` VALUES("49612", "10", "2017-02-27 05:06:34", "202.46.50.93", "6");
INSERT INTO `wp_rg_form_view` VALUES("49613", "3", "2017-02-27 06:28:57", "108.180.145.5", "13");
INSERT INTO `wp_rg_form_view` VALUES("49614", "15", "2017-02-27 06:28:59", "108.180.145.5", "5");
INSERT INTO `wp_rg_form_view` VALUES("49615", "10", "2017-02-27 06:28:59", "108.180.145.5", "5");
INSERT INTO `wp_rg_form_view` VALUES("49616", "3", "2017-02-27 07:20:32", "202.46.52.61", "8");
INSERT INTO `wp_rg_form_view` VALUES("49617", "15", "2017-02-27 07:20:42", "202.46.52.61", "3");
INSERT INTO `wp_rg_form_view` VALUES("49618", "10", "2017-02-27 07:20:42", "202.46.52.61", "3");
INSERT INTO `wp_rg_form_view` VALUES("49619", "10", "2017-02-27 08:02:40", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("49620", "3", "2017-02-27 08:02:40", "66.249.79.148", "29");
INSERT INTO `wp_rg_form_view` VALUES("49621", "15", "2017-02-27 08:02:40", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("49622", "6", "2017-02-27 08:15:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49623", "9", "2017-02-27 08:15:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49624", "8", "2017-02-27 08:15:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49625", "13", "2017-02-27 08:15:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49626", "3", "2017-02-27 09:07:07", "66.249.79.144", "23");
INSERT INTO `wp_rg_form_view` VALUES("49627", "15", "2017-02-27 09:07:09", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("49628", "10", "2017-02-27 09:07:09", "66.249.79.144", "14");
INSERT INTO `wp_rg_form_view` VALUES("49629", "3", "2017-02-27 10:23:38", "163.172.66.80", "80");
INSERT INTO `wp_rg_form_view` VALUES("49630", "15", "2017-02-27 10:23:40", "163.172.66.80", "33");
INSERT INTO `wp_rg_form_view` VALUES("49631", "10", "2017-02-27 10:23:40", "163.172.66.80", "37");
INSERT INTO `wp_rg_form_view` VALUES("49632", "6", "2017-02-27 10:40:08", "40.77.167.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("49633", "5", "2017-02-27 10:40:16", "40.77.167.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("49634", "3", "2017-02-27 11:12:41", "163.172.65.43", "12");
INSERT INTO `wp_rg_form_view` VALUES("49635", "15", "2017-02-27 11:12:43", "163.172.65.43", "5");
INSERT INTO `wp_rg_form_view` VALUES("49636", "10", "2017-02-27 11:12:43", "163.172.65.43", "5");
INSERT INTO `wp_rg_form_view` VALUES("49637", "3", "2017-02-27 12:54:35", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("49638", "15", "2017-02-27 12:54:37", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49639", "10", "2017-02-27 12:54:37", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49640", "3", "2017-02-27 13:39:41", "104.160.10.18", "3");
INSERT INTO `wp_rg_form_view` VALUES("49641", "14", "2017-02-27 13:48:46", "191.101.116.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("49642", "15", "2017-02-27 13:48:48", "191.101.116.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("49643", "10", "2017-02-27 13:48:48", "191.101.116.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("49644", "3", "2017-02-27 14:11:07", "40.77.167.83", "62");
INSERT INTO `wp_rg_form_view` VALUES("49645", "15", "2017-02-27 14:11:09", "40.77.167.83", "25");
INSERT INTO `wp_rg_form_view` VALUES("49646", "10", "2017-02-27 14:11:09", "40.77.167.83", "27");
INSERT INTO `wp_rg_form_view` VALUES("49647", "9", "2017-02-27 14:58:00", "157.55.39.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("49648", "10", "2017-02-27 15:09:30", "66.249.79.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("49649", "3", "2017-02-27 15:09:30", "66.249.79.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("49650", "15", "2017-02-27 15:09:30", "66.249.79.140", "5");
INSERT INTO `wp_rg_form_view` VALUES("49651", "13", "2017-02-27 15:29:05", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("49652", "2", "2017-02-27 15:48:01", "173.212.216.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("49653", "3", "2017-02-27 16:13:12", "77.75.78.171", "4");
INSERT INTO `wp_rg_form_view` VALUES("49654", "15", "2017-02-27 16:13:16", "77.75.78.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("49655", "10", "2017-02-27 16:13:16", "77.75.78.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("49656", "13", "2017-02-27 16:49:09", "164.132.161.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("49657", "3", "2017-02-27 17:23:50", "77.75.78.162", "13");
INSERT INTO `wp_rg_form_view` VALUES("49658", "15", "2017-02-27 17:23:52", "77.75.78.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("49659", "10", "2017-02-27 17:23:52", "77.75.78.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("49660", "14", "2017-02-27 17:38:58", "24.108.171.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("49661", "10", "2017-02-27 18:22:27", "164.132.161.96", "6");
INSERT INTO `wp_rg_form_view` VALUES("49662", "3", "2017-02-27 18:22:29", "164.132.161.96", "8");
INSERT INTO `wp_rg_form_view` VALUES("49663", "15", "2017-02-27 18:22:29", "164.132.161.96", "4");
INSERT INTO `wp_rg_form_view` VALUES("49664", "3", "2017-02-27 19:15:44", "202.46.57.122", "37");
INSERT INTO `wp_rg_form_view` VALUES("49665", "15", "2017-02-27 19:15:45", "202.46.57.122", "6");
INSERT INTO `wp_rg_form_view` VALUES("49666", "10", "2017-02-27 19:15:45", "202.46.57.122", "8");
INSERT INTO `wp_rg_form_view` VALUES("49667", "6", "2017-02-27 19:49:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49668", "9", "2017-02-27 19:49:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49669", "8", "2017-02-27 19:49:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49670", "13", "2017-02-27 19:49:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49671", "3", "2017-02-27 20:54:23", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("49672", "15", "2017-02-27 20:54:42", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("49673", "10", "2017-02-27 20:54:42", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("49674", "14", "2017-02-27 21:02:44", "202.46.48.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("49675", "3", "2017-02-27 21:02:58", "202.46.48.193", "6");
INSERT INTO `wp_rg_form_view` VALUES("49676", "15", "2017-02-27 21:02:59", "202.46.48.193", "3");
INSERT INTO `wp_rg_form_view` VALUES("49677", "10", "2017-02-27 21:02:59", "202.46.48.193", "4");
INSERT INTO `wp_rg_form_view` VALUES("49678", "2", "2017-02-27 21:26:48", "202.46.57.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("49679", "9", "2017-02-27 21:51:12", "202.46.53.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("49680", "3", "2017-02-27 22:24:08", "70.66.187.147", "16");
INSERT INTO `wp_rg_form_view` VALUES("49681", "15", "2017-02-27 22:24:21", "70.66.187.147", "8");
INSERT INTO `wp_rg_form_view` VALUES("49682", "10", "2017-02-27 22:24:22", "70.66.187.147", "8");
INSERT INTO `wp_rg_form_view` VALUES("49683", "14", "2017-02-27 22:39:23", "202.29.178.234", "3");
INSERT INTO `wp_rg_form_view` VALUES("49684", "3", "2017-02-27 23:34:14", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("49685", "15", "2017-02-27 23:34:26", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49686", "10", "2017-02-27 23:34:27", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49687", "3", "2017-02-28 01:17:01", "64.141.44.235", "6");
INSERT INTO `wp_rg_form_view` VALUES("49688", "15", "2017-02-28 01:17:09", "64.141.44.235", "3");
INSERT INTO `wp_rg_form_view` VALUES("49689", "10", "2017-02-28 01:17:09", "64.141.44.235", "3");
INSERT INTO `wp_rg_form_view` VALUES("49690", "3", "2017-02-28 02:29:20", "202.46.50.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("49691", "15", "2017-02-28 02:29:21", "202.46.50.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("49692", "10", "2017-02-28 02:29:21", "202.46.50.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("49693", "3", "2017-02-28 03:08:11", "204.13.201.137", "28");
INSERT INTO `wp_rg_form_view` VALUES("49694", "3", "2017-02-28 03:08:11", "107.178.194.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("49695", "15", "2017-02-28 03:08:12", "107.178.194.74", "12");
INSERT INTO `wp_rg_form_view` VALUES("49696", "15", "2017-02-28 03:08:12", "204.13.201.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("49697", "10", "2017-02-28 03:08:12", "204.13.201.137", "12");
INSERT INTO `wp_rg_form_view` VALUES("49698", "10", "2017-02-28 03:08:12", "107.178.194.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("49699", "14", "2017-02-28 03:23:10", "158.222.6.215", "4");
INSERT INTO `wp_rg_form_view` VALUES("49700", "3", "2017-02-28 04:01:22", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("49701", "15", "2017-02-28 04:01:30", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("49702", "10", "2017-02-28 04:01:30", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("49703", "14", "2017-02-28 05:07:45", "62.210.111.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("49704", "3", "2017-02-28 05:07:49", "62.210.111.55", "15");
INSERT INTO `wp_rg_form_view` VALUES("49705", "15", "2017-02-28 05:07:50", "62.210.111.55", "7");
INSERT INTO `wp_rg_form_view` VALUES("49706", "10", "2017-02-28 05:07:50", "62.210.111.55", "7");
INSERT INTO `wp_rg_form_view` VALUES("49707", "3", "2017-02-28 06:26:33", "157.55.39.94", "8");
INSERT INTO `wp_rg_form_view` VALUES("49708", "15", "2017-02-28 06:26:34", "157.55.39.94", "4");
INSERT INTO `wp_rg_form_view` VALUES("49709", "10", "2017-02-28 06:26:34", "157.55.39.94", "5");
INSERT INTO `wp_rg_form_view` VALUES("49710", "14", "2017-02-28 06:48:04", "62.210.111.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("49711", "3", "2017-02-28 07:15:29", "202.46.54.36", "29");
INSERT INTO `wp_rg_form_view` VALUES("49712", "15", "2017-02-28 07:15:32", "202.46.54.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("49713", "10", "2017-02-28 07:15:33", "202.46.54.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("49714", "6", "2017-02-28 07:18:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49715", "9", "2017-02-28 07:18:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49716", "8", "2017-02-28 07:18:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49717", "13", "2017-02-28 07:18:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49718", "3", "2017-02-28 08:00:31", "66.249.79.148", "19");
INSERT INTO `wp_rg_form_view` VALUES("49719", "15", "2017-02-28 08:00:31", "66.249.79.148", "9");
INSERT INTO `wp_rg_form_view` VALUES("49720", "10", "2017-02-28 08:00:31", "66.249.79.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("49721", "14", "2017-02-28 08:02:28", "188.208.0.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("49722", "3", "2017-02-28 09:00:29", "66.249.79.148", "14");
INSERT INTO `wp_rg_form_view` VALUES("49723", "15", "2017-02-28 09:00:29", "66.249.79.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("49724", "10", "2017-02-28 09:00:29", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("49725", "13", "2017-02-28 09:15:27", "202.46.57.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("49726", "12", "2017-02-28 09:40:47", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49727", "3", "2017-02-28 10:03:39", "202.46.52.149", "12");
INSERT INTO `wp_rg_form_view` VALUES("49728", "15", "2017-02-28 10:03:42", "202.46.52.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("49729", "10", "2017-02-28 10:03:42", "202.46.52.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("49730", "3", "2017-02-28 11:10:36", "163.172.64.241", "25");
INSERT INTO `wp_rg_form_view` VALUES("49731", "15", "2017-02-28 11:10:39", "163.172.64.241", "10");
INSERT INTO `wp_rg_form_view` VALUES("49732", "10", "2017-02-28 11:10:39", "163.172.64.241", "10");
INSERT INTO `wp_rg_form_view` VALUES("49733", "11", "2017-02-28 11:11:24", "108.175.2.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49734", "2", "2017-02-28 11:13:17", "108.175.2.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49735", "10", "2017-02-28 12:20:41", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49736", "3", "2017-02-28 12:20:44", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49737", "15", "2017-02-28 12:20:45", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49738", "3", "2017-02-28 14:56:23", "202.46.49.193", "2");
INSERT INTO `wp_rg_form_view` VALUES("49739", "15", "2017-02-28 14:56:24", "202.46.49.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("49740", "10", "2017-02-28 14:56:25", "202.46.49.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("49741", "3", "2017-02-28 15:09:24", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("49742", "15", "2017-02-28 15:09:24", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("49743", "10", "2017-02-28 15:09:24", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("49744", "3", "2017-02-28 16:10:11", "66.249.79.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("49745", "15", "2017-02-28 16:10:13", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49746", "10", "2017-02-28 16:10:13", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("49747", "14", "2017-02-28 16:18:36", "191.101.116.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("49748", "14", "2017-02-28 17:11:18", "64.114.197.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("49749", "3", "2017-02-28 17:11:24", "64.114.197.158", "5");
INSERT INTO `wp_rg_form_view` VALUES("49750", "15", "2017-02-28 17:11:24", "64.114.197.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("49751", "10", "2017-02-28 17:11:24", "64.114.197.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("49752", "3", "2017-02-28 18:04:32", "66.249.79.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("49753", "15", "2017-02-28 18:04:35", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("49754", "10", "2017-02-28 18:04:35", "66.249.79.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("49755", "6", "2017-02-28 18:55:36", "163.172.65.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("49756", "9", "2017-02-28 18:55:38", "163.172.65.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("49757", "8", "2017-02-28 18:55:39", "163.172.65.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("49758", "13", "2017-02-28 18:55:41", "163.172.65.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("49759", "3", "2017-02-28 19:04:18", "208.43.225.85", "66");
INSERT INTO `wp_rg_form_view` VALUES("49760", "15", "2017-02-28 19:04:20", "208.43.225.85", "20");
INSERT INTO `wp_rg_form_view` VALUES("49761", "10", "2017-02-28 19:04:20", "208.43.225.85", "23");
INSERT INTO `wp_rg_form_view` VALUES("49762", "11", "2017-02-28 19:05:15", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("49763", "6", "2017-02-28 19:13:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49764", "9", "2017-02-28 19:13:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49765", "8", "2017-02-28 19:13:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49766", "13", "2017-02-28 19:13:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49767", "10", "2017-02-28 20:22:48", "184.71.31.164", "9");
INSERT INTO `wp_rg_form_view` VALUES("49768", "10", "2017-02-28 20:22:48", "184.71.31.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("49769", "3", "2017-02-28 20:22:52", "184.71.31.164", "11");
INSERT INTO `wp_rg_form_view` VALUES("49770", "3", "2017-02-28 20:22:52", "184.71.31.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("49771", "15", "2017-02-28 20:22:52", "184.71.31.164", "5");
INSERT INTO `wp_rg_form_view` VALUES("49772", "15", "2017-02-28 20:22:52", "184.71.31.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("49773", "3", "2017-02-28 21:05:27", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("49774", "15", "2017-02-28 21:05:36", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("49775", "10", "2017-02-28 21:05:36", "66.249.79.140", "5");
INSERT INTO `wp_rg_form_view` VALUES("49776", "14", "2017-02-28 21:08:05", "154.20.197.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("49777", "3", "2017-02-28 22:02:28", "163.172.66.45", "14");
INSERT INTO `wp_rg_form_view` VALUES("49778", "15", "2017-02-28 22:02:29", "163.172.66.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("49779", "10", "2017-02-28 22:02:29", "163.172.66.45", "7");
INSERT INTO `wp_rg_form_view` VALUES("49780", "13", "2017-02-28 22:09:02", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("49781", "15", "2017-02-28 23:00:45", "184.69.163.74", "8");
INSERT INTO `wp_rg_form_view` VALUES("49782", "3", "2017-02-28 23:00:47", "184.69.163.74", "15");
INSERT INTO `wp_rg_form_view` VALUES("49783", "10", "2017-02-28 23:00:48", "184.69.163.74", "6");
INSERT INTO `wp_rg_form_view` VALUES("49784", "3", "2017-03-01 00:05:17", "202.46.50.95", "15");
INSERT INTO `wp_rg_form_view` VALUES("49785", "15", "2017-03-01 00:05:26", "202.46.50.95", "7");
INSERT INTO `wp_rg_form_view` VALUES("49786", "10", "2017-03-01 00:05:26", "202.46.50.95", "8");
INSERT INTO `wp_rg_form_view` VALUES("49787", "3", "2017-03-01 01:20:33", "77.75.78.172", "11");
INSERT INTO `wp_rg_form_view` VALUES("49788", "15", "2017-03-01 01:20:35", "77.75.78.172", "5");
INSERT INTO `wp_rg_form_view` VALUES("49789", "10", "2017-03-01 01:20:35", "77.75.78.172", "5");
INSERT INTO `wp_rg_form_view` VALUES("49790", "14", "2017-03-01 01:46:34", "46.246.36.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("49791", "3", "2017-03-01 02:30:02", "68.180.229.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("49792", "15", "2017-03-01 02:30:05", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("49793", "10", "2017-03-01 02:30:05", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("49794", "3", "2017-03-01 03:00:25", "66.249.79.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("49795", "15", "2017-03-01 03:00:25", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("49796", "10", "2017-03-01 03:00:25", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("49797", "3", "2017-03-01 04:20:37", "163.172.65.110", "13");
INSERT INTO `wp_rg_form_view` VALUES("49798", "15", "2017-03-01 04:20:40", "163.172.65.110", "6");
INSERT INTO `wp_rg_form_view` VALUES("49799", "10", "2017-03-01 04:20:41", "163.172.65.110", "6");
INSERT INTO `wp_rg_form_view` VALUES("49800", "3", "2017-03-01 05:51:42", "202.46.53.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("49801", "15", "2017-03-01 05:51:43", "202.46.53.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("49802", "10", "2017-03-01 05:51:43", "202.46.53.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("49803", "10", "2017-03-01 06:22:32", "96.50.21.43", "8");
INSERT INTO `wp_rg_form_view` VALUES("49804", "3", "2017-03-01 06:22:37", "96.50.21.43", "15");
INSERT INTO `wp_rg_form_view` VALUES("49805", "15", "2017-03-01 06:22:37", "96.50.21.43", "7");
INSERT INTO `wp_rg_form_view` VALUES("49806", "11", "2017-03-01 07:03:17", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49807", "15", "2017-03-01 07:06:15", "108.180.196.94", "4");
INSERT INTO `wp_rg_form_view` VALUES("49808", "3", "2017-03-01 07:06:18", "108.180.196.94", "29");
INSERT INTO `wp_rg_form_view` VALUES("49809", "10", "2017-03-01 07:06:18", "108.180.196.94", "5");
INSERT INTO `wp_rg_form_view` VALUES("49810", "6", "2017-03-01 07:12:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49811", "9", "2017-03-01 07:12:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49812", "8", "2017-03-01 07:12:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49813", "13", "2017-03-01 07:12:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49814", "3", "2017-03-01 08:04:03", "66.249.79.140", "5");
INSERT INTO `wp_rg_form_view` VALUES("49815", "15", "2017-03-01 08:04:04", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49816", "10", "2017-03-01 08:04:04", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("49817", "3", "2017-03-01 09:03:46", "164.132.161.79", "6");
INSERT INTO `wp_rg_form_view` VALUES("49818", "15", "2017-03-01 09:03:58", "164.132.161.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("49819", "10", "2017-03-01 09:03:58", "164.132.161.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("49820", "12", "2017-03-01 09:34:53", "202.46.53.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("49821", "3", "2017-03-01 10:32:12", "202.46.55.137", "4");
INSERT INTO `wp_rg_form_view` VALUES("49822", "15", "2017-03-01 10:32:13", "202.46.55.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("49823", "10", "2017-03-01 10:32:13", "202.46.55.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("49824", "3", "2017-03-01 11:20:48", "5.10.105.47", "6");
INSERT INTO `wp_rg_form_view` VALUES("49825", "15", "2017-03-01 11:20:53", "5.10.105.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("49826", "10", "2017-03-01 11:20:53", "5.10.105.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("49827", "3", "2017-03-01 12:06:25", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("49828", "15", "2017-03-01 12:06:29", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("49829", "10", "2017-03-01 12:06:29", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("49830", "5", "2017-03-01 12:10:53", "77.75.79.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("49831", "8", "2017-03-01 12:18:40", "163.172.66.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("49832", "3", "2017-03-01 13:25:42", "202.46.53.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("49833", "15", "2017-03-01 13:25:45", "202.46.53.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("49834", "10", "2017-03-01 13:25:45", "202.46.53.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("49835", "6", "2017-03-01 14:12:58", "202.46.53.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("49836", "3", "2017-03-01 14:13:00", "202.46.53.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("49837", "15", "2017-03-01 14:13:00", "202.46.53.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("49838", "10", "2017-03-01 14:13:00", "202.46.53.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("49839", "3", "2017-03-01 15:09:34", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("49840", "15", "2017-03-01 15:41:22", "202.46.50.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("49841", "10", "2017-03-01 15:41:22", "202.46.50.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("49842", "14", "2017-03-01 16:01:34", "195.22.127.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("49843", "3", "2017-03-01 16:01:39", "195.22.127.214", "6");
INSERT INTO `wp_rg_form_view` VALUES("49844", "15", "2017-03-01 16:01:39", "195.22.127.214", "3");
INSERT INTO `wp_rg_form_view` VALUES("49845", "10", "2017-03-01 16:01:39", "195.22.127.214", "3");
INSERT INTO `wp_rg_form_view` VALUES("49846", "3", "2017-03-01 18:03:16", "192.119.14.83", "11");
INSERT INTO `wp_rg_form_view` VALUES("49847", "15", "2017-03-01 18:16:38", "184.66.240.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("49848", "10", "2017-03-01 18:16:38", "184.66.240.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("49849", "3", "2017-03-01 19:15:46", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("49850", "6", "2017-03-01 19:15:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49851", "9", "2017-03-01 19:15:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49852", "8", "2017-03-01 19:15:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49853", "10", "2017-03-01 19:15:49", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("49854", "13", "2017-03-01 19:15:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49855", "15", "2017-03-01 19:15:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("49856", "3", "2017-03-01 20:07:26", "163.172.64.223", "6");
INSERT INTO `wp_rg_form_view` VALUES("49857", "15", "2017-03-01 20:07:26", "163.172.64.223", "3");
INSERT INTO `wp_rg_form_view` VALUES("49858", "10", "2017-03-01 20:07:26", "163.172.64.223", "3");
INSERT INTO `wp_rg_form_view` VALUES("49859", "14", "2017-03-01 21:03:04", "51.255.65.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("49860", "3", "2017-03-01 21:03:04", "51.255.65.42", "24");
INSERT INTO `wp_rg_form_view` VALUES("49861", "15", "2017-03-01 21:03:04", "51.255.65.42", "12");
INSERT INTO `wp_rg_form_view` VALUES("49862", "10", "2017-03-01 21:03:04", "51.255.65.42", "8");
INSERT INTO `wp_rg_form_view` VALUES("49863", "3", "2017-03-01 22:16:04", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("49864", "15", "2017-03-01 22:16:06", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("49865", "10", "2017-03-01 22:16:06", "66.249.79.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("49866", "6", "2017-03-01 22:24:54", "202.46.48.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("49867", "11", "2017-03-01 23:11:43", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("49868", "3", "2017-03-01 23:26:10", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("49869", "15", "2017-03-01 23:26:10", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("49870", "10", "2017-03-01 23:26:10", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("49871", "3", "2017-03-02 00:40:36", "66.249.79.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("49872", "15", "2017-03-02 00:40:37", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("49873", "10", "2017-03-02 00:40:37", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("49874", "3", "2017-03-02 02:09:10", "77.75.78.164", "10");
INSERT INTO `wp_rg_form_view` VALUES("49875", "15", "2017-03-02 02:09:11", "77.75.78.164", "5");
INSERT INTO `wp_rg_form_view` VALUES("49876", "10", "2017-03-02 02:09:11", "77.75.78.164", "5");
INSERT INTO `wp_rg_form_view` VALUES("49877", "14", "2017-03-02 02:37:13", "134.87.169.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("49878", "3", "2017-03-02 03:20:20", "157.55.39.247", "358");
INSERT INTO `wp_rg_form_view` VALUES("49879", "15", "2017-03-02 03:20:20", "157.55.39.247", "150");
INSERT INTO `wp_rg_form_view` VALUES("49880", "10", "2017-03-02 03:20:20", "157.55.39.247", "186");
INSERT INTO `wp_rg_form_view` VALUES("49881", "8", "2017-03-02 03:20:27", "157.55.39.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("49882", "13", "2017-03-02 03:20:29", "157.55.39.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("49883", "14", "2017-03-02 03:21:57", "157.55.39.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("49884", "9", "2017-03-02 03:22:12", "207.46.13.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("49885", "12", "2017-03-02 03:23:15", "40.77.167.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("49886", "2", "2017-03-02 03:23:27", "157.55.39.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("49887", "7", "2017-03-02 03:23:59", "40.77.167.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("49888", "3", "2017-03-02 04:57:38", "75.154.239.165", "5");
INSERT INTO `wp_rg_form_view` VALUES("49889", "15", "2017-03-02 04:57:38", "75.154.239.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("49890", "10", "2017-03-02 04:57:39", "75.154.239.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("49891", "3", "2017-03-02 05:03:09", "77.75.79.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("49892", "15", "2017-03-02 05:03:09", "77.75.79.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("49893", "10", "2017-03-02 05:03:09", "77.75.79.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("49894", "3", "2017-03-02 06:40:25", "51.255.65.78", "6");
INSERT INTO `wp_rg_form_view` VALUES("49895", "15", "2017-03-02 06:40:27", "51.255.65.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("49896", "10", "2017-03-02 06:40:27", "51.255.65.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("49897", "13", "2017-03-02 06:52:54", "163.172.65.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("49898", "3", "2017-03-02 07:04:36", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("49899", "6", "2017-03-02 07:04:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49900", "9", "2017-03-02 07:04:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49901", "8", "2017-03-02 07:04:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49902", "10", "2017-03-02 07:04:38", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("49903", "13", "2017-03-02 07:04:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49904", "15", "2017-03-02 07:04:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("49905", "15", "2017-03-02 08:28:46", "137.97.1.31", "4");
INSERT INTO `wp_rg_form_view` VALUES("49906", "3", "2017-03-02 08:28:48", "137.97.1.31", "4");
INSERT INTO `wp_rg_form_view` VALUES("49907", "10", "2017-03-02 08:28:48", "137.97.1.31", "2");
INSERT INTO `wp_rg_form_view` VALUES("49908", "3", "2017-03-02 10:09:12", "77.75.79.72", "196");
INSERT INTO `wp_rg_form_view` VALUES("49909", "15", "2017-03-02 10:09:13", "77.75.79.72", "91");
INSERT INTO `wp_rg_form_view` VALUES("49910", "10", "2017-03-02 10:09:14", "77.75.79.72", "85");
INSERT INTO `wp_rg_form_view` VALUES("49911", "14", "2017-03-02 10:46:23", "45.55.235.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("49912", "11", "2017-03-02 10:46:32", "45.55.235.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("49913", "6", "2017-03-02 10:55:53", "45.55.235.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("49914", "3", "2017-03-02 11:00:03", "45.55.235.249", "783");
INSERT INTO `wp_rg_form_view` VALUES("49915", "15", "2017-03-02 11:00:03", "45.55.235.249", "369");
INSERT INTO `wp_rg_form_view` VALUES("49916", "10", "2017-03-02 11:00:03", "45.55.235.249", "377");
INSERT INTO `wp_rg_form_view` VALUES("49917", "9", "2017-03-02 11:05:58", "45.55.235.249", "2");
INSERT INTO `wp_rg_form_view` VALUES("49918", "2", "2017-03-02 11:55:38", "45.55.235.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("49919", "3", "2017-03-02 12:00:03", "45.55.235.249", "91");
INSERT INTO `wp_rg_form_view` VALUES("49920", "15", "2017-03-02 12:00:03", "45.55.235.249", "41");
INSERT INTO `wp_rg_form_view` VALUES("49921", "10", "2017-03-02 12:00:03", "45.55.235.249", "41");
INSERT INTO `wp_rg_form_view` VALUES("49922", "13", "2017-03-02 12:06:03", "45.55.235.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("49923", "15", "2017-03-02 14:54:57", "24.108.38.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("49924", "3", "2017-03-02 14:55:00", "24.108.38.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("49925", "10", "2017-03-02 14:55:00", "24.108.38.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("49926", "3", "2017-03-02 15:15:41", "202.46.51.133", "5");
INSERT INTO `wp_rg_form_view` VALUES("49927", "15", "2017-03-02 15:15:42", "202.46.51.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("49928", "10", "2017-03-02 15:15:42", "202.46.51.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("49929", "3", "2017-03-02 16:11:04", "163.172.65.25", "17");
INSERT INTO `wp_rg_form_view` VALUES("49930", "15", "2017-03-02 16:11:04", "163.172.65.25", "8");
INSERT INTO `wp_rg_form_view` VALUES("49931", "10", "2017-03-02 16:11:04", "163.172.65.25", "9");
INSERT INTO `wp_rg_form_view` VALUES("49932", "14", "2017-03-02 16:30:10", "142.36.26.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("49933", "3", "2017-03-02 17:02:10", "96.50.4.172", "6");
INSERT INTO `wp_rg_form_view` VALUES("49934", "15", "2017-03-02 17:02:11", "96.50.4.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("49935", "10", "2017-03-02 17:08:08", "163.172.65.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("49936", "10", "2017-03-02 18:04:25", "184.66.49.231", "10");
INSERT INTO `wp_rg_form_view` VALUES("49937", "3", "2017-03-02 18:04:25", "184.66.49.231", "19");
INSERT INTO `wp_rg_form_view` VALUES("49938", "15", "2017-03-02 18:04:25", "184.66.49.231", "8");
INSERT INTO `wp_rg_form_view` VALUES("49939", "14", "2017-03-02 18:42:21", "24.68.101.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("49940", "10", "2017-03-02 19:01:02", "205.201.132.14", "42");
INSERT INTO `wp_rg_form_view` VALUES("49941", "3", "2017-03-02 19:01:02", "205.201.132.14", "116");
INSERT INTO `wp_rg_form_view` VALUES("49942", "15", "2017-03-02 19:01:02", "205.201.132.14", "34");
INSERT INTO `wp_rg_form_view` VALUES("49943", "2", "2017-03-02 19:11:06", "174.127.133.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("49944", "11", "2017-03-02 19:15:33", "174.127.133.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("49945", "6", "2017-03-02 19:16:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("49946", "9", "2017-03-02 19:16:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("49947", "8", "2017-03-02 19:16:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("49948", "13", "2017-03-02 19:16:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("49949", "3", "2017-03-02 20:19:03", "46.31.171.86", "30");
INSERT INTO `wp_rg_form_view` VALUES("49950", "15", "2017-03-02 20:19:04", "46.31.171.86", "13");
INSERT INTO `wp_rg_form_view` VALUES("49951", "10", "2017-03-02 20:19:04", "46.31.171.86", "14");
INSERT INTO `wp_rg_form_view` VALUES("49952", "11", "2017-03-02 20:19:11", "46.31.171.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("49953", "2", "2017-03-02 20:20:05", "46.31.171.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("49954", "15", "2017-03-02 21:05:00", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("49955", "3", "2017-03-02 21:05:00", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("49956", "10", "2017-03-02 21:05:00", "68.180.229.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("49957", "14", "2017-03-02 22:00:41", "134.87.144.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("49958", "3", "2017-03-02 22:00:41", "134.87.144.198", "10");
INSERT INTO `wp_rg_form_view` VALUES("49959", "15", "2017-03-02 22:00:42", "134.87.144.198", "6");
INSERT INTO `wp_rg_form_view` VALUES("49960", "10", "2017-03-02 22:00:42", "134.87.144.198", "6");
INSERT INTO `wp_rg_form_view` VALUES("49961", "3", "2017-03-02 23:14:48", "77.75.79.11", "6");
INSERT INTO `wp_rg_form_view` VALUES("49962", "15", "2017-03-02 23:14:49", "77.75.79.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("49963", "10", "2017-03-02 23:14:49", "77.75.79.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("49964", "3", "2017-03-03 00:16:54", "157.55.39.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("49965", "15", "2017-03-03 00:16:54", "157.55.39.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("49966", "10", "2017-03-03 00:16:54", "157.55.39.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("49967", "14", "2017-03-03 01:23:59", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("49968", "3", "2017-03-03 01:23:59", "68.180.229.247", "24");
INSERT INTO `wp_rg_form_view` VALUES("49969", "15", "2017-03-03 01:23:59", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("49970", "10", "2017-03-03 01:23:59", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("49971", "11", "2017-03-03 01:54:52", "109.70.52.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("49972", "2", "2017-03-03 01:55:46", "109.70.52.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("49973", "3", "2017-03-03 02:41:23", "45.35.113.134", "7");
INSERT INTO `wp_rg_form_view` VALUES("49974", "15", "2017-03-03 02:58:06", "184.69.173.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("49975", "10", "2017-03-03 02:58:06", "184.69.173.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("49976", "14", "2017-03-03 02:59:23", "184.69.173.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("49977", "3", "2017-03-03 03:02:20", "184.69.173.90", "11");
INSERT INTO `wp_rg_form_view` VALUES("49978", "15", "2017-03-03 03:02:20", "184.69.173.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("49979", "10", "2017-03-03 03:02:20", "184.69.173.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("49980", "14", "2017-03-03 03:28:01", "184.66.37.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("49981", "9", "2017-03-03 03:39:45", "157.55.39.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("49982", "3", "2017-03-03 04:03:07", "202.46.55.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("49983", "15", "2017-03-03 04:03:07", "202.46.55.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("49984", "10", "2017-03-03 04:03:07", "202.46.55.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("49985", "3", "2017-03-03 05:15:55", "154.5.144.97", "16");
INSERT INTO `wp_rg_form_view` VALUES("49986", "15", "2017-03-03 05:15:56", "154.5.144.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("49987", "10", "2017-03-03 05:15:56", "154.5.144.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("49988", "14", "2017-03-03 05:26:08", "157.55.39.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("49989", "3", "2017-03-03 06:08:03", "163.172.65.16", "29");
INSERT INTO `wp_rg_form_view` VALUES("49990", "15", "2017-03-03 06:08:03", "163.172.65.16", "3");
INSERT INTO `wp_rg_form_view` VALUES("49991", "10", "2017-03-03 06:08:03", "163.172.65.16", "5");
INSERT INTO `wp_rg_form_view` VALUES("49992", "6", "2017-03-03 06:55:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49993", "9", "2017-03-03 06:56:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49994", "8", "2017-03-03 06:56:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49995", "13", "2017-03-03 06:56:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("49996", "3", "2017-03-03 07:12:04", "163.172.66.152", "4");
INSERT INTO `wp_rg_form_view` VALUES("49997", "15", "2017-03-03 07:12:04", "163.172.66.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("49998", "10", "2017-03-03 07:12:04", "163.172.66.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("49999", "10", "2017-03-03 08:02:50", "202.46.58.124", "3");
INSERT INTO `wp_rg_form_view` VALUES("50000", "15", "2017-03-03 08:02:50", "202.46.58.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("50001", "3", "2017-03-03 08:02:50", "202.46.58.124", "8");
INSERT INTO `wp_rg_form_view` VALUES("50002", "13", "2017-03-03 08:02:50", "202.46.58.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("50003", "14", "2017-03-03 08:23:47", "24.68.227.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("50004", "10", "2017-03-03 09:37:15", "202.46.51.159", "25");
INSERT INTO `wp_rg_form_view` VALUES("50005", "3", "2017-03-03 09:37:17", "202.46.51.159", "49");
INSERT INTO `wp_rg_form_view` VALUES("50006", "15", "2017-03-03 09:37:17", "202.46.51.159", "19");
INSERT INTO `wp_rg_form_view` VALUES("50007", "14", "2017-03-03 09:52:41", "46.229.168.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("50008", "6", "2017-03-03 09:53:02", "46.229.168.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("50009", "3", "2017-03-03 10:00:50", "202.46.51.34", "7");
INSERT INTO `wp_rg_form_view` VALUES("50010", "15", "2017-03-03 10:00:50", "202.46.51.34", "3");
INSERT INTO `wp_rg_form_view` VALUES("50011", "10", "2017-03-03 10:00:50", "202.46.51.34", "3");
INSERT INTO `wp_rg_form_view` VALUES("50012", "3", "2017-03-03 11:11:40", "202.46.53.113", "5");
INSERT INTO `wp_rg_form_view` VALUES("50013", "15", "2017-03-03 11:11:40", "202.46.53.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("50014", "10", "2017-03-03 11:11:40", "202.46.53.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("50015", "14", "2017-03-03 11:49:08", "62.4.24.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("50016", "10", "2017-03-03 12:04:47", "163.172.66.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("50017", "3", "2017-03-03 12:04:47", "163.172.66.116", "7");
INSERT INTO `wp_rg_form_view` VALUES("50018", "15", "2017-03-03 12:04:47", "163.172.66.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("50019", "2", "2017-03-03 12:20:26", "51.255.65.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("50020", "13", "2017-03-03 13:20:31", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50021", "3", "2017-03-03 13:20:31", "68.180.229.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("50022", "15", "2017-03-03 13:20:31", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("50023", "10", "2017-03-03 13:20:31", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("50024", "3", "2017-03-03 14:35:26", "199.21.99.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("50025", "15", "2017-03-03 14:35:26", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("50026", "10", "2017-03-03 14:35:26", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("50027", "14", "2017-03-03 15:00:16", "184.66.37.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("50028", "3", "2017-03-03 15:00:16", "184.66.37.121", "6");
INSERT INTO `wp_rg_form_view` VALUES("50029", "15", "2017-03-03 15:00:16", "184.66.37.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("50030", "10", "2017-03-03 15:00:16", "184.66.37.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("50031", "3", "2017-03-03 16:05:37", "202.46.58.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("50032", "15", "2017-03-03 16:05:37", "202.46.58.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("50033", "10", "2017-03-03 16:05:37", "202.46.58.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("50034", "14", "2017-03-03 17:17:21", "70.74.164.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("50035", "3", "2017-03-03 17:17:21", "70.74.164.9", "9");
INSERT INTO `wp_rg_form_view` VALUES("50036", "15", "2017-03-03 17:17:21", "70.74.164.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("50037", "10", "2017-03-03 17:17:21", "70.74.164.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("50038", "3", "2017-03-03 18:51:34", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("50039", "6", "2017-03-03 18:51:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50040", "9", "2017-03-03 18:51:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50041", "8", "2017-03-03 18:51:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50042", "10", "2017-03-03 18:51:35", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("50043", "13", "2017-03-03 18:51:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50044", "15", "2017-03-03 18:51:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50045", "3", "2017-03-03 19:14:12", "64.114.197.158", "4");
INSERT INTO `wp_rg_form_view` VALUES("50046", "15", "2017-03-03 19:14:13", "64.114.197.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("50047", "10", "2017-03-03 19:14:13", "64.114.197.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("50048", "3", "2017-03-03 20:04:23", "163.172.64.181", "4");
INSERT INTO `wp_rg_form_view` VALUES("50049", "15", "2017-03-03 20:04:23", "163.172.64.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("50050", "10", "2017-03-03 20:04:23", "163.172.64.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("50051", "3", "2017-03-03 21:02:03", "77.75.78.161", "14");
INSERT INTO `wp_rg_form_view` VALUES("50052", "15", "2017-03-03 21:02:04", "77.75.78.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("50053", "10", "2017-03-03 21:02:04", "77.75.78.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("50054", "14", "2017-03-03 23:05:18", "144.217.33.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("50055", "3", "2017-03-03 23:05:20", "144.217.33.57", "6");
INSERT INTO `wp_rg_form_view` VALUES("50056", "15", "2017-03-03 23:05:21", "144.217.33.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("50057", "10", "2017-03-03 23:05:21", "144.217.33.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("50058", "10", "2017-03-04 00:09:00", "184.66.36.242", "6");
INSERT INTO `wp_rg_form_view` VALUES("50059", "3", "2017-03-04 00:09:00", "184.66.36.242", "10");
INSERT INTO `wp_rg_form_view` VALUES("50060", "15", "2017-03-04 00:09:00", "184.66.36.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("50061", "10", "2017-03-04 01:02:27", "75.157.25.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("50062", "3", "2017-03-04 01:02:27", "75.157.25.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("50063", "15", "2017-03-04 01:02:27", "75.157.25.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("50064", "6", "2017-03-04 01:51:51", "163.172.66.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("50065", "3", "2017-03-04 02:02:42", "202.46.50.89", "12");
INSERT INTO `wp_rg_form_view` VALUES("50066", "15", "2017-03-04 02:02:42", "202.46.50.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("50067", "10", "2017-03-04 02:02:42", "202.46.50.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("50068", "3", "2017-03-04 03:16:53", "207.46.13.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("50069", "15", "2017-03-04 03:16:53", "207.46.13.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("50070", "10", "2017-03-04 03:16:53", "207.46.13.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("50071", "3", "2017-03-04 04:33:30", "163.172.65.124", "3");
INSERT INTO `wp_rg_form_view` VALUES("50072", "15", "2017-03-04 04:38:33", "157.55.39.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("50073", "10", "2017-03-04 04:38:33", "157.55.39.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("50074", "3", "2017-03-04 05:05:01", "202.46.56.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("50075", "15", "2017-03-04 05:05:02", "202.46.56.192", "3");
INSERT INTO `wp_rg_form_view` VALUES("50076", "10", "2017-03-04 05:05:02", "202.46.56.192", "3");
INSERT INTO `wp_rg_form_view` VALUES("50077", "14", "2017-03-04 06:03:52", "1.9.171.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("50078", "3", "2017-03-04 06:03:52", "1.9.171.51", "31");
INSERT INTO `wp_rg_form_view` VALUES("50079", "15", "2017-03-04 06:03:52", "1.9.171.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("50080", "10", "2017-03-04 06:03:52", "1.9.171.51", "5");
INSERT INTO `wp_rg_form_view` VALUES("50081", "2", "2017-03-04 06:10:33", "163.172.65.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("50082", "6", "2017-03-04 06:39:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50083", "9", "2017-03-04 06:39:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50084", "8", "2017-03-04 06:39:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50085", "13", "2017-03-04 06:39:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50086", "3", "2017-03-04 07:09:32", "163.172.66.98", "13");
INSERT INTO `wp_rg_form_view` VALUES("50087", "15", "2017-03-04 07:09:32", "163.172.66.98", "5");
INSERT INTO `wp_rg_form_view` VALUES("50088", "10", "2017-03-04 07:09:32", "163.172.66.98", "6");
INSERT INTO `wp_rg_form_view` VALUES("50089", "11", "2017-03-04 07:52:40", "154.20.73.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("50090", "3", "2017-03-04 08:00:59", "154.20.73.77", "9");
INSERT INTO `wp_rg_form_view` VALUES("50091", "15", "2017-03-04 08:00:59", "154.20.73.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("50092", "10", "2017-03-04 08:00:59", "154.20.73.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("50093", "12", "2017-03-04 09:07:06", "202.46.55.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("50094", "3", "2017-03-04 09:07:06", "202.46.55.82", "37");
INSERT INTO `wp_rg_form_view` VALUES("50095", "15", "2017-03-04 09:07:06", "202.46.55.82", "17");
INSERT INTO `wp_rg_form_view` VALUES("50096", "10", "2017-03-04 09:07:06", "202.46.55.82", "17");
INSERT INTO `wp_rg_form_view` VALUES("50097", "11", "2017-03-04 09:35:07", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("50098", "2", "2017-03-04 09:41:48", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("50099", "3", "2017-03-04 10:17:54", "202.46.50.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("50100", "15", "2017-03-04 10:17:54", "202.46.50.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("50101", "10", "2017-03-04 10:17:54", "202.46.50.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("50102", "3", "2017-03-04 11:01:10", "51.255.65.70", "5");
INSERT INTO `wp_rg_form_view` VALUES("50103", "15", "2017-03-04 11:01:10", "51.255.65.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("50104", "10", "2017-03-04 11:01:10", "51.255.65.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("50105", "3", "2017-03-04 13:03:00", "163.172.66.83", "7");
INSERT INTO `wp_rg_form_view` VALUES("50106", "15", "2017-03-04 13:06:05", "202.46.55.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("50107", "10", "2017-03-04 13:06:05", "202.46.55.182", "3");
INSERT INTO `wp_rg_form_view` VALUES("50108", "3", "2017-03-04 14:07:11", "164.132.161.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("50109", "15", "2017-03-04 14:15:23", "77.75.78.167", "3");
INSERT INTO `wp_rg_form_view` VALUES("50110", "10", "2017-03-04 14:15:23", "77.75.78.167", "3");
INSERT INTO `wp_rg_form_view` VALUES("50111", "3", "2017-03-04 15:16:51", "207.46.13.98", "4");
INSERT INTO `wp_rg_form_view` VALUES("50112", "15", "2017-03-04 15:16:51", "207.46.13.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("50113", "10", "2017-03-04 15:16:51", "207.46.13.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("50114", "10", "2017-03-04 16:09:18", "66.249.79.148", "17");
INSERT INTO `wp_rg_form_view` VALUES("50115", "3", "2017-03-04 16:09:18", "66.249.79.148", "21");
INSERT INTO `wp_rg_form_view` VALUES("50116", "15", "2017-03-04 16:09:18", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("50117", "14", "2017-03-04 16:56:50", "46.246.63.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("50118", "3", "2017-03-04 17:18:45", "202.46.48.145", "20");
INSERT INTO `wp_rg_form_view` VALUES("50119", "15", "2017-03-04 17:18:45", "202.46.48.145", "9");
INSERT INTO `wp_rg_form_view` VALUES("50120", "10", "2017-03-04 17:18:45", "202.46.48.145", "10");
INSERT INTO `wp_rg_form_view` VALUES("50121", "2", "2017-03-04 17:42:11", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("50122", "6", "2017-03-04 17:42:23", "202.46.48.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("50123", "3", "2017-03-04 18:03:16", "77.75.79.32", "33");
INSERT INTO `wp_rg_form_view` VALUES("50124", "15", "2017-03-04 18:03:16", "77.75.79.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("50125", "10", "2017-03-04 18:03:16", "77.75.79.32", "6");
INSERT INTO `wp_rg_form_view` VALUES("50126", "5", "2017-03-04 18:29:37", "202.46.48.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("50127", "6", "2017-03-04 18:35:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50128", "9", "2017-03-04 18:35:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50129", "8", "2017-03-04 18:35:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50130", "13", "2017-03-04 18:35:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50131", "3", "2017-03-04 19:13:13", "163.172.66.87", "12");
INSERT INTO `wp_rg_form_view` VALUES("50132", "15", "2017-03-04 19:13:13", "163.172.66.87", "5");
INSERT INTO `wp_rg_form_view` VALUES("50133", "10", "2017-03-04 19:13:13", "163.172.66.87", "5");
INSERT INTO `wp_rg_form_view` VALUES("50134", "14", "2017-03-04 19:15:55", "89.47.22.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("50135", "10", "2017-03-04 20:13:02", "75.157.25.214", "4");
INSERT INTO `wp_rg_form_view` VALUES("50136", "3", "2017-03-04 20:13:02", "75.157.25.214", "4");
INSERT INTO `wp_rg_form_view` VALUES("50137", "15", "2017-03-04 20:13:02", "75.157.25.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("50138", "11", "2017-03-04 20:32:39", "184.161.207.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("50139", "3", "2017-03-04 21:06:19", "163.172.66.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("50140", "15", "2017-03-04 21:06:20", "163.172.66.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("50141", "10", "2017-03-04 21:06:21", "163.172.66.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("50142", "3", "2017-03-04 22:15:38", "202.46.58.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("50143", "15", "2017-03-04 22:15:39", "202.46.58.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("50144", "15", "2017-03-04 22:15:39", "51.255.65.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("50145", "10", "2017-03-04 22:15:39", "202.46.58.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("50146", "10", "2017-03-04 22:15:39", "51.255.65.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("50147", "3", "2017-03-05 00:22:36", "75.157.172.190", "30");
INSERT INTO `wp_rg_form_view` VALUES("50148", "15", "2017-03-05 00:22:38", "75.157.172.190", "12");
INSERT INTO `wp_rg_form_view` VALUES("50149", "10", "2017-03-05 00:22:38", "75.157.172.190", "12");
INSERT INTO `wp_rg_form_view` VALUES("50150", "11", "2017-03-05 00:36:22", "92.73.30.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("50151", "2", "2017-03-05 00:37:25", "92.73.30.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("50152", "3", "2017-03-05 01:03:05", "202.46.58.55", "6");
INSERT INTO `wp_rg_form_view` VALUES("50153", "15", "2017-03-05 01:03:05", "202.46.58.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("50154", "10", "2017-03-05 01:03:05", "202.46.58.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("50155", "3", "2017-03-05 02:23:16", "157.55.39.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("50156", "15", "2017-03-05 02:23:16", "157.55.39.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("50157", "10", "2017-03-05 02:23:16", "157.55.39.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("50158", "3", "2017-03-05 03:00:57", "46.246.63.161", "12");
INSERT INTO `wp_rg_form_view` VALUES("50159", "15", "2017-03-05 03:00:58", "46.246.63.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("50160", "10", "2017-03-05 03:00:58", "46.246.63.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("50161", "3", "2017-03-05 04:04:40", "163.172.64.227", "10");
INSERT INTO `wp_rg_form_view` VALUES("50162", "15", "2017-03-05 04:04:40", "163.172.64.227", "4");
INSERT INTO `wp_rg_form_view` VALUES("50163", "10", "2017-03-05 04:04:40", "163.172.64.227", "5");
INSERT INTO `wp_rg_form_view` VALUES("50164", "3", "2017-03-05 05:16:36", "24.108.169.185", "6");
INSERT INTO `wp_rg_form_view` VALUES("50165", "15", "2017-03-05 05:16:36", "24.108.169.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("50166", "10", "2017-03-05 05:16:36", "24.108.169.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("50167", "6", "2017-03-05 06:04:16", "207.46.13.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("50168", "3", "2017-03-05 06:04:16", "207.46.13.171", "31");
INSERT INTO `wp_rg_form_view` VALUES("50169", "15", "2017-03-05 06:04:16", "207.46.13.171", "4");
INSERT INTO `wp_rg_form_view` VALUES("50170", "10", "2017-03-05 06:04:16", "207.46.13.171", "6");
INSERT INTO `wp_rg_form_view` VALUES("50171", "9", "2017-03-05 06:25:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50172", "8", "2017-03-05 06:25:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50173", "13", "2017-03-05 06:25:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50174", "3", "2017-03-05 07:36:52", "51.255.65.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("50175", "15", "2017-03-05 07:36:52", "51.255.65.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("50176", "10", "2017-03-05 07:36:52", "51.255.65.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("50177", "3", "2017-03-05 09:28:29", "163.172.66.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("50178", "15", "2017-03-05 09:28:30", "163.172.66.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("50179", "10", "2017-03-05 09:28:30", "163.172.66.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("50180", "3", "2017-03-05 11:17:00", "202.46.49.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("50181", "15", "2017-03-05 11:17:02", "202.46.49.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("50182", "10", "2017-03-05 11:17:02", "202.46.49.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("50183", "3", "2017-03-05 12:04:10", "202.46.56.204", "10");
INSERT INTO `wp_rg_form_view` VALUES("50184", "15", "2017-03-05 12:04:10", "202.46.56.204", "5");
INSERT INTO `wp_rg_form_view` VALUES("50185", "10", "2017-03-05 12:04:10", "202.46.56.204", "5");
INSERT INTO `wp_rg_form_view` VALUES("50186", "14", "2017-03-05 12:32:46", "195.22.127.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("50187", "3", "2017-03-05 13:14:59", "202.46.50.139", "987");
INSERT INTO `wp_rg_form_view` VALUES("50188", "15", "2017-03-05 13:14:59", "202.46.50.139", "460");
INSERT INTO `wp_rg_form_view` VALUES("50189", "10", "2017-03-05 13:14:59", "202.46.50.139", "458");
INSERT INTO `wp_rg_form_view` VALUES("50190", "11", "2017-03-05 13:19:46", "157.55.39.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("50191", "2", "2017-03-05 13:23:22", "167.114.244.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("50192", "14", "2017-03-05 13:25:54", "167.114.244.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("50193", "13", "2017-03-05 13:43:23", "167.114.244.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("50194", "9", "2017-03-05 13:48:44", "167.114.244.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("50195", "10", "2017-03-05 14:02:11", "202.46.56.39", "7");
INSERT INTO `wp_rg_form_view` VALUES("50196", "3", "2017-03-05 14:02:11", "202.46.56.39", "11");
INSERT INTO `wp_rg_form_view` VALUES("50197", "15", "2017-03-05 14:02:12", "202.46.56.39", "5");
INSERT INTO `wp_rg_form_view` VALUES("50198", "14", "2017-03-05 14:07:44", "191.101.116.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("50199", "3", "2017-03-05 15:03:49", "163.172.66.66", "5");
INSERT INTO `wp_rg_form_view` VALUES("50200", "15", "2017-03-05 15:10:02", "220.181.108.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("50201", "10", "2017-03-05 15:10:02", "220.181.108.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("50202", "3", "2017-03-05 16:28:33", "207.46.13.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("50203", "15", "2017-03-05 16:28:43", "207.46.13.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("50204", "10", "2017-03-05 16:28:43", "207.46.13.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("50205", "10", "2017-03-05 17:04:37", "157.55.39.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("50206", "3", "2017-03-05 17:04:37", "157.55.39.171", "9");
INSERT INTO `wp_rg_form_view` VALUES("50207", "15", "2017-03-05 17:04:38", "157.55.39.171", "4");
INSERT INTO `wp_rg_form_view` VALUES("50208", "3", "2017-03-05 18:15:41", "24.108.46.122", "68");
INSERT INTO `wp_rg_form_view` VALUES("50209", "15", "2017-03-05 18:15:41", "24.108.46.122", "19");
INSERT INTO `wp_rg_form_view` VALUES("50210", "10", "2017-03-05 18:15:41", "24.108.46.122", "20");
INSERT INTO `wp_rg_form_view` VALUES("50211", "6", "2017-03-05 18:16:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50212", "9", "2017-03-05 18:16:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50213", "8", "2017-03-05 18:16:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50214", "13", "2017-03-05 18:16:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50215", "10", "2017-03-05 19:27:16", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50216", "3", "2017-03-05 19:37:30", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50217", "15", "2017-03-05 19:37:30", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50218", "3", "2017-03-05 20:16:18", "77.75.78.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("50219", "15", "2017-03-05 20:16:18", "77.75.78.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("50220", "10", "2017-03-05 20:16:19", "77.75.78.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("50221", "3", "2017-03-05 21:46:46", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("50222", "15", "2017-03-05 21:46:48", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50223", "10", "2017-03-05 21:46:48", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50224", "6", "2017-03-05 21:51:25", "163.172.66.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("50225", "3", "2017-03-05 22:27:07", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("50226", "15", "2017-03-05 22:27:07", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("50227", "10", "2017-03-05 22:27:07", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("50228", "3", "2017-03-05 23:34:34", "96.50.26.55", "12");
INSERT INTO `wp_rg_form_view` VALUES("50229", "15", "2017-03-05 23:34:34", "96.50.26.55", "5");
INSERT INTO `wp_rg_form_view` VALUES("50230", "10", "2017-03-05 23:34:34", "96.50.26.55", "4");
INSERT INTO `wp_rg_form_view` VALUES("50231", "3", "2017-03-06 00:31:48", "157.55.39.123", "8");
INSERT INTO `wp_rg_form_view` VALUES("50232", "15", "2017-03-06 00:31:48", "157.55.39.123", "4");
INSERT INTO `wp_rg_form_view` VALUES("50233", "10", "2017-03-06 00:31:48", "157.55.39.123", "5");
INSERT INTO `wp_rg_form_view` VALUES("50234", "10", "2017-03-06 01:22:43", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50235", "3", "2017-03-06 02:03:04", "202.46.52.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("50236", "15", "2017-03-06 02:03:04", "202.46.52.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("50237", "10", "2017-03-06 02:03:04", "202.46.52.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("50238", "15", "2017-03-06 03:12:30", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("50239", "3", "2017-03-06 03:12:31", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("50240", "10", "2017-03-06 03:12:31", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("50241", "12", "2017-03-06 03:34:10", "157.55.39.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("50242", "3", "2017-03-06 04:09:50", "163.172.65.121", "4");
INSERT INTO `wp_rg_form_view` VALUES("50243", "15", "2017-03-06 04:09:50", "163.172.65.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("50244", "10", "2017-03-06 04:09:50", "163.172.65.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("50245", "3", "2017-03-06 05:04:16", "163.172.65.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("50246", "15", "2017-03-06 05:04:16", "163.172.65.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("50247", "10", "2017-03-06 05:04:16", "163.172.65.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("50248", "3", "2017-03-06 06:55:01", "52.88.109.3", "52");
INSERT INTO `wp_rg_form_view` VALUES("50249", "6", "2017-03-06 06:55:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("50250", "9", "2017-03-06 06:55:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("50251", "8", "2017-03-06 06:55:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50252", "8", "2017-03-06 06:55:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50253", "10", "2017-03-06 06:55:08", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("50254", "10", "2017-03-06 06:55:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50255", "13", "2017-03-06 06:55:09", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("50256", "15", "2017-03-06 06:55:09", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("50257", "14", "2017-03-06 06:59:25", "184.66.37.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("50258", "3", "2017-03-06 07:34:54", "163.172.66.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("50259", "15", "2017-03-06 07:34:57", "163.172.66.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("50260", "10", "2017-03-06 07:34:57", "163.172.66.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("50261", "5", "2017-03-06 08:19:52", "77.75.77.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("50262", "3", "2017-03-06 08:19:52", "77.75.77.17", "12");
INSERT INTO `wp_rg_form_view` VALUES("50263", "15", "2017-03-06 08:19:52", "77.75.77.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("50264", "10", "2017-03-06 08:19:52", "77.75.77.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("50265", "14", "2017-03-06 08:44:19", "104.223.52.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("50266", "3", "2017-03-06 09:10:27", "202.46.56.68", "25");
INSERT INTO `wp_rg_form_view` VALUES("50267", "15", "2017-03-06 09:10:27", "202.46.56.68", "11");
INSERT INTO `wp_rg_form_view` VALUES("50268", "10", "2017-03-06 09:10:28", "202.46.56.68", "11");
INSERT INTO `wp_rg_form_view` VALUES("50269", "11", "2017-03-06 09:48:33", "89.123.25.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("50270", "3", "2017-03-06 10:22:58", "202.46.48.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("50271", "15", "2017-03-06 10:22:58", "202.46.48.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("50272", "10", "2017-03-06 10:22:58", "202.46.48.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("50273", "14", "2017-03-06 11:01:00", "89.47.16.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("50274", "3", "2017-03-06 11:01:01", "89.47.16.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("50275", "15", "2017-03-06 11:01:01", "89.47.16.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("50276", "10", "2017-03-06 11:01:01", "89.47.16.176", "5");
INSERT INTO `wp_rg_form_view` VALUES("50277", "3", "2017-03-06 12:08:06", "220.181.108.109", "4");
INSERT INTO `wp_rg_form_view` VALUES("50278", "15", "2017-03-06 12:08:06", "220.181.108.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("50279", "10", "2017-03-06 12:08:06", "220.181.108.109", "2");
INSERT INTO `wp_rg_form_view` VALUES("50280", "3", "2017-03-06 13:28:03", "163.172.65.240", "5");
INSERT INTO `wp_rg_form_view` VALUES("50281", "15", "2017-03-06 13:28:03", "163.172.65.240", "2");
INSERT INTO `wp_rg_form_view` VALUES("50282", "10", "2017-03-06 13:28:03", "163.172.65.240", "2");
INSERT INTO `wp_rg_form_view` VALUES("50283", "3", "2017-03-06 14:26:34", "69.77.162.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("50284", "15", "2017-03-06 14:26:34", "69.77.162.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("50285", "10", "2017-03-06 14:26:35", "69.77.162.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("50286", "3", "2017-03-06 15:31:00", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("50287", "15", "2017-03-06 15:31:00", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50288", "10", "2017-03-06 15:31:01", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50289", "14", "2017-03-06 16:41:39", "69.77.162.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("50290", "3", "2017-03-06 16:41:41", "69.77.162.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("50291", "15", "2017-03-06 16:41:42", "69.77.162.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("50292", "10", "2017-03-06 16:41:42", "69.77.162.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("50293", "8", "2017-03-06 17:28:00", "207.46.13.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("50294", "3", "2017-03-06 17:28:01", "207.46.13.176", "7");
INSERT INTO `wp_rg_form_view` VALUES("50295", "15", "2017-03-06 17:28:01", "207.46.13.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("50296", "10", "2017-03-06 17:28:01", "207.46.13.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("50297", "3", "2017-03-06 18:48:51", "163.172.66.125", "9");
INSERT INTO `wp_rg_form_view` VALUES("50298", "15", "2017-03-06 18:48:52", "163.172.66.125", "3");
INSERT INTO `wp_rg_form_view` VALUES("50299", "10", "2017-03-06 18:48:52", "163.172.66.125", "3");
INSERT INTO `wp_rg_form_view` VALUES("50300", "7", "2017-03-06 19:06:53", "46.246.62.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("50301", "3", "2017-03-06 19:06:53", "46.246.62.76", "39");
INSERT INTO `wp_rg_form_view` VALUES("50302", "15", "2017-03-06 19:06:53", "46.246.62.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("50303", "10", "2017-03-06 19:06:53", "46.246.62.76", "10");
INSERT INTO `wp_rg_form_view` VALUES("50304", "6", "2017-03-06 19:23:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50305", "9", "2017-03-06 19:23:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50306", "8", "2017-03-06 19:23:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50307", "13", "2017-03-06 19:23:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50308", "14", "2017-03-06 19:37:53", "64.180.75.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("50309", "14", "2017-03-06 20:13:16", "24.108.216.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("50310", "3", "2017-03-06 20:13:17", "24.108.216.76", "12");
INSERT INTO `wp_rg_form_view` VALUES("50311", "15", "2017-03-06 20:13:18", "24.108.216.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("50312", "10", "2017-03-06 20:13:18", "24.108.216.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("50313", "3", "2017-03-06 21:03:20", "51.255.65.89", "10");
INSERT INTO `wp_rg_form_view` VALUES("50314", "15", "2017-03-06 21:03:20", "51.255.65.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("50315", "10", "2017-03-06 21:03:20", "51.255.65.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("50316", "3", "2017-03-06 22:16:15", "202.46.56.91", "8");
INSERT INTO `wp_rg_form_view` VALUES("50317", "15", "2017-03-06 22:16:16", "202.46.56.91", "4");
INSERT INTO `wp_rg_form_view` VALUES("50318", "10", "2017-03-06 22:16:16", "202.46.56.91", "4");
INSERT INTO `wp_rg_form_view` VALUES("50319", "3", "2017-03-06 23:34:02", "157.55.39.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("50320", "15", "2017-03-06 23:34:03", "157.55.39.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("50321", "10", "2017-03-06 23:34:03", "157.55.39.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("50322", "3", "2017-03-07 00:17:21", "77.75.79.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("50323", "15", "2017-03-07 00:17:22", "77.75.79.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("50324", "10", "2017-03-07 00:17:22", "77.75.79.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("50325", "3", "2017-03-07 01:17:56", "157.55.39.2", "4");
INSERT INTO `wp_rg_form_view` VALUES("50326", "15", "2017-03-07 01:17:56", "157.55.39.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("50327", "10", "2017-03-07 01:17:56", "157.55.39.2", "3");
INSERT INTO `wp_rg_form_view` VALUES("50328", "3", "2017-03-07 02:01:15", "157.55.39.58", "9");
INSERT INTO `wp_rg_form_view` VALUES("50329", "15", "2017-03-07 02:01:15", "157.55.39.58", "4");
INSERT INTO `wp_rg_form_view` VALUES("50330", "10", "2017-03-07 02:01:15", "157.55.39.58", "4");
INSERT INTO `wp_rg_form_view` VALUES("50331", "3", "2017-03-07 03:48:32", "202.46.58.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("50332", "15", "2017-03-07 03:48:33", "202.46.58.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("50333", "10", "2017-03-07 03:48:33", "202.46.58.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("50334", "3", "2017-03-07 04:10:08", "68.180.229.247", "11");
INSERT INTO `wp_rg_form_view` VALUES("50335", "15", "2017-03-07 04:10:08", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("50336", "10", "2017-03-07 04:10:08", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("50337", "10", "2017-03-07 05:16:05", "96.50.4.172", "4");
INSERT INTO `wp_rg_form_view` VALUES("50338", "3", "2017-03-07 05:16:05", "96.50.4.172", "6");
INSERT INTO `wp_rg_form_view` VALUES("50339", "15", "2017-03-07 05:16:06", "96.50.4.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("50340", "15", "2017-03-07 06:19:06", "163.172.66.93", "10");
INSERT INTO `wp_rg_form_view` VALUES("50341", "3", "2017-03-07 06:25:54", "89.123.35.50", "18");
INSERT INTO `wp_rg_form_view` VALUES("50342", "10", "2017-03-07 06:25:54", "89.123.35.50", "8");
INSERT INTO `wp_rg_form_view` VALUES("50343", "11", "2017-03-07 06:25:58", "89.123.35.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("50344", "2", "2017-03-07 06:27:33", "89.123.35.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("50345", "3", "2017-03-07 07:24:28", "5.9.98.130", "551");
INSERT INTO `wp_rg_form_view` VALUES("50346", "15", "2017-03-07 07:24:31", "5.9.98.130", "239");
INSERT INTO `wp_rg_form_view` VALUES("50347", "10", "2017-03-07 07:24:31", "5.9.98.130", "241");
INSERT INTO `wp_rg_form_view` VALUES("50348", "11", "2017-03-07 07:24:42", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50349", "2", "2017-03-07 07:24:45", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50350", "14", "2017-03-07 07:26:22", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50351", "13", "2017-03-07 07:28:54", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50352", "8", "2017-03-07 07:32:49", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50353", "9", "2017-03-07 07:32:59", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50354", "6", "2017-03-07 07:33:47", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50355", "3", "2017-03-07 08:00:02", "5.9.98.130", "938");
INSERT INTO `wp_rg_form_view` VALUES("50356", "15", "2017-03-07 08:00:02", "5.9.98.130", "423");
INSERT INTO `wp_rg_form_view` VALUES("50357", "10", "2017-03-07 08:00:02", "5.9.98.130", "424");
INSERT INTO `wp_rg_form_view` VALUES("50358", "5", "2017-03-07 08:04:00", "51.255.65.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("50359", "14", "2017-03-07 08:06:42", "184.175.246.124", "4");
INSERT INTO `wp_rg_form_view` VALUES("50360", "6", "2017-03-07 08:12:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50361", "9", "2017-03-07 08:12:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50362", "8", "2017-03-07 08:12:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50363", "13", "2017-03-07 08:12:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50364", "3", "2017-03-07 09:00:04", "5.9.98.130", "644");
INSERT INTO `wp_rg_form_view` VALUES("50365", "15", "2017-03-07 09:00:05", "5.9.98.130", "300");
INSERT INTO `wp_rg_form_view` VALUES("50366", "10", "2017-03-07 09:00:05", "5.9.98.130", "300");
INSERT INTO `wp_rg_form_view` VALUES("50367", "2", "2017-03-07 09:44:34", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50368", "14", "2017-03-07 09:48:08", "62.210.111.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("50369", "3", "2017-03-07 10:17:13", "5.9.98.130", "576");
INSERT INTO `wp_rg_form_view` VALUES("50370", "15", "2017-03-07 10:17:14", "5.9.98.130", "272");
INSERT INTO `wp_rg_form_view` VALUES("50371", "10", "2017-03-07 10:17:14", "5.9.98.130", "272");
INSERT INTO `wp_rg_form_view` VALUES("50372", "3", "2017-03-07 11:17:09", "5.9.98.130", "574");
INSERT INTO `wp_rg_form_view` VALUES("50373", "15", "2017-03-07 11:17:10", "5.9.98.130", "255");
INSERT INTO `wp_rg_form_view` VALUES("50374", "10", "2017-03-07 11:17:10", "5.9.98.130", "255");
INSERT INTO `wp_rg_form_view` VALUES("50375", "14", "2017-03-07 11:29:56", "62.210.111.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("50376", "3", "2017-03-07 12:00:20", "5.9.98.130", "844");
INSERT INTO `wp_rg_form_view` VALUES("50377", "15", "2017-03-07 12:00:20", "5.9.98.130", "390");
INSERT INTO `wp_rg_form_view` VALUES("50378", "10", "2017-03-07 12:00:20", "5.9.98.130", "391");
INSERT INTO `wp_rg_form_view` VALUES("50379", "3", "2017-03-07 13:04:10", "164.132.161.34", "1078");
INSERT INTO `wp_rg_form_view` VALUES("50380", "15", "2017-03-07 13:04:10", "164.132.161.34", "520");
INSERT INTO `wp_rg_form_view` VALUES("50381", "10", "2017-03-07 13:04:10", "164.132.161.34", "521");
INSERT INTO `wp_rg_form_view` VALUES("50382", "14", "2017-03-07 13:10:06", "62.210.111.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("50383", "3", "2017-03-07 14:00:00", "5.9.98.130", "1170");
INSERT INTO `wp_rg_form_view` VALUES("50384", "15", "2017-03-07 14:00:01", "5.9.98.130", "507");
INSERT INTO `wp_rg_form_view` VALUES("50385", "10", "2017-03-07 14:00:01", "5.9.98.130", "507");
INSERT INTO `wp_rg_form_view` VALUES("50386", "3", "2017-03-07 15:00:00", "5.9.98.130", "710");
INSERT INTO `wp_rg_form_view` VALUES("50387", "15", "2017-03-07 15:00:00", "5.9.98.130", "252");
INSERT INTO `wp_rg_form_view` VALUES("50388", "10", "2017-03-07 15:00:01", "5.9.98.130", "253");
INSERT INTO `wp_rg_form_view` VALUES("50389", "2", "2017-03-07 15:24:16", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("50390", "11", "2017-03-07 15:24:44", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("50391", "14", "2017-03-07 15:32:21", "173.208.146.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("50392", "5", "2017-03-07 15:33:45", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("50393", "3", "2017-03-07 16:00:01", "5.9.98.130", "1084");
INSERT INTO `wp_rg_form_view` VALUES("50394", "15", "2017-03-07 16:00:02", "5.9.98.130", "581");
INSERT INTO `wp_rg_form_view` VALUES("50395", "10", "2017-03-07 16:00:02", "5.9.98.130", "578");
INSERT INTO `wp_rg_form_view` VALUES("50396", "14", "2017-03-07 16:49:12", "173.195.59.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("50397", "14", "2017-03-07 17:01:03", "173.195.59.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("50398", "3", "2017-03-07 17:01:04", "173.195.59.101", "1263");
INSERT INTO `wp_rg_form_view` VALUES("50399", "15", "2017-03-07 17:01:04", "173.195.59.101", "631");
INSERT INTO `wp_rg_form_view` VALUES("50400", "10", "2017-03-07 17:01:04", "173.195.59.101", "634");
INSERT INTO `wp_rg_form_view` VALUES("50401", "3", "2017-03-07 18:00:02", "5.9.98.130", "1060");
INSERT INTO `wp_rg_form_view` VALUES("50402", "15", "2017-03-07 18:00:02", "5.9.98.130", "466");
INSERT INTO `wp_rg_form_view` VALUES("50403", "10", "2017-03-07 18:00:02", "5.9.98.130", "467");
INSERT INTO `wp_rg_form_view` VALUES("50404", "3", "2017-03-07 19:10:59", "24.108.13.133", "344");
INSERT INTO `wp_rg_form_view` VALUES("50405", "15", "2017-03-07 19:11:00", "24.108.13.133", "115");
INSERT INTO `wp_rg_form_view` VALUES("50406", "10", "2017-03-07 19:11:00", "24.108.13.133", "115");
INSERT INTO `wp_rg_form_view` VALUES("50407", "3", "2017-03-07 20:00:01", "5.9.98.130", "1823");
INSERT INTO `wp_rg_form_view` VALUES("50408", "15", "2017-03-07 20:00:01", "5.9.98.130", "823");
INSERT INTO `wp_rg_form_view` VALUES("50409", "10", "2017-03-07 20:00:01", "5.9.98.130", "837");
INSERT INTO `wp_rg_form_view` VALUES("50410", "13", "2017-03-07 20:12:35", "157.55.39.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("50411", "8", "2017-03-07 20:12:37", "157.55.39.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("50412", "12", "2017-03-07 20:13:08", "157.55.39.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("50413", "9", "2017-03-07 20:13:10", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("50414", "3", "2017-03-07 21:00:02", "5.9.98.130", "445");
INSERT INTO `wp_rg_form_view` VALUES("50415", "15", "2017-03-07 21:00:02", "5.9.98.130", "211");
INSERT INTO `wp_rg_form_view` VALUES("50416", "10", "2017-03-07 21:00:02", "5.9.98.130", "212");
INSERT INTO `wp_rg_form_view` VALUES("50417", "2", "2017-03-07 21:23:02", "23.23.91.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("50418", "6", "2017-03-07 21:25:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50419", "9", "2017-03-07 21:25:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50420", "8", "2017-03-07 21:25:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50421", "13", "2017-03-07 21:25:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50422", "14", "2017-03-07 21:40:21", "199.60.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("50423", "3", "2017-03-07 22:00:06", "24.108.13.133", "584");
INSERT INTO `wp_rg_form_view` VALUES("50424", "15", "2017-03-07 22:00:06", "24.108.13.133", "197");
INSERT INTO `wp_rg_form_view` VALUES("50425", "10", "2017-03-07 22:00:07", "24.108.13.133", "198");
INSERT INTO `wp_rg_form_view` VALUES("50426", "11", "2017-03-07 22:50:12", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("50427", "2", "2017-03-07 22:50:14", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("50428", "3", "2017-03-07 23:00:03", "5.9.98.130", "2152");
INSERT INTO `wp_rg_form_view` VALUES("50429", "15", "2017-03-07 23:00:04", "5.9.98.130", "980");
INSERT INTO `wp_rg_form_view` VALUES("50430", "10", "2017-03-07 23:00:04", "5.9.98.130", "783");
INSERT INTO `wp_rg_form_view` VALUES("50431", "15", "2017-03-08 00:00:02", "5.9.98.130", "375");
INSERT INTO `wp_rg_form_view` VALUES("50432", "3", "2017-03-08 00:00:02", "5.9.98.130", "632");
INSERT INTO `wp_rg_form_view` VALUES("50433", "10", "2017-03-08 00:00:03", "5.9.98.130", "572");
INSERT INTO `wp_rg_form_view` VALUES("50434", "6", "2017-03-08 00:36:25", "202.46.48.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("50435", "3", "2017-03-08 01:18:04", "40.77.167.27", "174");
INSERT INTO `wp_rg_form_view` VALUES("50436", "15", "2017-03-08 01:18:04", "40.77.167.27", "90");
INSERT INTO `wp_rg_form_view` VALUES("50437", "10", "2017-03-08 01:18:04", "40.77.167.27", "87");
INSERT INTO `wp_rg_form_view` VALUES("50438", "3", "2017-03-08 02:00:03", "5.9.98.130", "1117");
INSERT INTO `wp_rg_form_view` VALUES("50439", "15", "2017-03-08 02:00:03", "5.9.98.130", "558");
INSERT INTO `wp_rg_form_view` VALUES("50440", "10", "2017-03-08 02:00:03", "5.9.98.130", "558");
INSERT INTO `wp_rg_form_view` VALUES("50441", "3", "2017-03-08 03:00:02", "5.9.98.130", "1095");
INSERT INTO `wp_rg_form_view` VALUES("50442", "15", "2017-03-08 03:00:02", "5.9.98.130", "544");
INSERT INTO `wp_rg_form_view` VALUES("50443", "10", "2017-03-08 03:00:02", "5.9.98.130", "544");
INSERT INTO `wp_rg_form_view` VALUES("50444", "3", "2017-03-08 04:00:01", "5.9.98.130", "1102");
INSERT INTO `wp_rg_form_view` VALUES("50445", "15", "2017-03-08 04:00:01", "5.9.98.130", "551");
INSERT INTO `wp_rg_form_view` VALUES("50446", "10", "2017-03-08 04:00:01", "5.9.98.130", "551");
INSERT INTO `wp_rg_form_view` VALUES("50447", "11", "2017-03-08 04:24:00", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("50448", "3", "2017-03-08 05:00:09", "5.9.98.130", "1152");
INSERT INTO `wp_rg_form_view` VALUES("50449", "15", "2017-03-08 05:00:09", "5.9.98.130", "448");
INSERT INTO `wp_rg_form_view` VALUES("50450", "10", "2017-03-08 05:00:09", "5.9.98.130", "448");
INSERT INTO `wp_rg_form_view` VALUES("50451", "14", "2017-03-08 05:37:10", "77.75.79.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("50452", "3", "2017-03-08 06:03:16", "145.132.56.2", "37");
INSERT INTO `wp_rg_form_view` VALUES("50453", "15", "2017-03-08 06:03:17", "145.132.56.2", "16");
INSERT INTO `wp_rg_form_view` VALUES("50454", "10", "2017-03-08 06:03:17", "145.132.56.2", "19");
INSERT INTO `wp_rg_form_view` VALUES("50455", "11", "2017-03-08 06:03:23", "145.132.56.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("50456", "2", "2017-03-08 06:04:19", "145.132.56.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("50457", "14", "2017-03-08 06:50:47", "24.68.49.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("50458", "3", "2017-03-08 07:11:12", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("50459", "15", "2017-03-08 07:11:13", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50460", "10", "2017-03-08 07:11:13", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("50461", "11", "2017-03-08 07:30:32", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50462", "3", "2017-03-08 08:04:15", "5.9.98.130", "1571");
INSERT INTO `wp_rg_form_view` VALUES("50463", "15", "2017-03-08 08:04:16", "5.9.98.130", "529");
INSERT INTO `wp_rg_form_view` VALUES("50464", "10", "2017-03-08 08:04:16", "5.9.98.130", "529");
INSERT INTO `wp_rg_form_view` VALUES("50465", "3", "2017-03-08 09:00:00", "5.9.98.130", "1185");
INSERT INTO `wp_rg_form_view` VALUES("50466", "15", "2017-03-08 09:00:01", "5.9.98.130", "592");
INSERT INTO `wp_rg_form_view` VALUES("50467", "10", "2017-03-08 09:00:01", "5.9.98.130", "592");
INSERT INTO `wp_rg_form_view` VALUES("50468", "3", "2017-03-08 10:00:02", "5.9.98.130", "1263");
INSERT INTO `wp_rg_form_view` VALUES("50469", "15", "2017-03-08 10:00:02", "5.9.98.130", "620");
INSERT INTO `wp_rg_form_view` VALUES("50470", "10", "2017-03-08 10:00:03", "5.9.98.130", "622");
INSERT INTO `wp_rg_form_view` VALUES("50471", "6", "2017-03-08 10:22:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50472", "9", "2017-03-08 10:22:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50473", "8", "2017-03-08 10:22:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50474", "13", "2017-03-08 10:23:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50475", "14", "2017-03-08 10:34:45", "104.202.147.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("50476", "3", "2017-03-08 11:00:02", "5.9.98.130", "632");
INSERT INTO `wp_rg_form_view` VALUES("50477", "15", "2017-03-08 11:00:03", "5.9.98.130", "316");
INSERT INTO `wp_rg_form_view` VALUES("50478", "10", "2017-03-08 11:00:03", "5.9.98.130", "316");
INSERT INTO `wp_rg_form_view` VALUES("50479", "2", "2017-03-08 11:30:26", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("50480", "3", "2017-03-08 12:03:50", "5.9.98.130", "23");
INSERT INTO `wp_rg_form_view` VALUES("50481", "15", "2017-03-08 12:03:51", "5.9.98.130", "11");
INSERT INTO `wp_rg_form_view` VALUES("50482", "10", "2017-03-08 12:03:51", "5.9.98.130", "13");
INSERT INTO `wp_rg_form_view` VALUES("50483", "9", "2017-03-08 12:03:59", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50484", "15", "2017-03-08 13:04:40", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("50485", "3", "2017-03-08 13:04:40", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("50486", "10", "2017-03-08 13:04:40", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("50487", "11", "2017-03-08 13:19:02", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("50488", "3", "2017-03-08 14:02:42", "77.75.78.170", "29");
INSERT INTO `wp_rg_form_view` VALUES("50489", "15", "2017-03-08 14:02:42", "77.75.78.170", "14");
INSERT INTO `wp_rg_form_view` VALUES("50490", "10", "2017-03-08 14:02:42", "77.75.78.170", "14");
INSERT INTO `wp_rg_form_view` VALUES("50491", "2", "2017-03-08 14:33:35", "207.46.13.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("50492", "11", "2017-03-08 14:45:25", "86.92.137.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("50493", "2", "2017-03-08 15:04:22", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("50494", "10", "2017-03-08 15:04:52", "207.46.13.65", "5");
INSERT INTO `wp_rg_form_view` VALUES("50495", "3", "2017-03-08 15:04:52", "207.46.13.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("50496", "15", "2017-03-08 15:04:52", "207.46.13.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("50497", "3", "2017-03-08 16:03:47", "142.36.234.156", "30");
INSERT INTO `wp_rg_form_view` VALUES("50498", "15", "2017-03-08 16:03:47", "142.36.234.156", "12");
INSERT INTO `wp_rg_form_view` VALUES("50499", "10", "2017-03-08 16:03:47", "142.36.234.156", "17");
INSERT INTO `wp_rg_form_view` VALUES("50500", "3", "2017-03-08 17:16:19", "202.46.56.110", "17");
INSERT INTO `wp_rg_form_view` VALUES("50501", "15", "2017-03-08 17:16:19", "202.46.56.110", "9");
INSERT INTO `wp_rg_form_view` VALUES("50502", "10", "2017-03-08 17:16:19", "202.46.56.110", "11");
INSERT INTO `wp_rg_form_view` VALUES("50503", "6", "2017-03-08 17:54:13", "202.46.54.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("50504", "14", "2017-03-08 17:58:14", "184.69.25.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("50505", "3", "2017-03-08 18:01:20", "184.69.25.118", "14");
INSERT INTO `wp_rg_form_view` VALUES("50506", "15", "2017-03-08 18:01:20", "184.69.25.118", "6");
INSERT INTO `wp_rg_form_view` VALUES("50507", "10", "2017-03-08 18:01:20", "184.69.25.118", "6");
INSERT INTO `wp_rg_form_view` VALUES("50508", "11", "2017-03-08 18:11:19", "207.46.13.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("50509", "3", "2017-03-08 19:00:26", "96.50.19.46", "26");
INSERT INTO `wp_rg_form_view` VALUES("50510", "15", "2017-03-08 19:00:27", "96.50.19.46", "11");
INSERT INTO `wp_rg_form_view` VALUES("50511", "10", "2017-03-08 19:00:27", "96.50.19.46", "12");
INSERT INTO `wp_rg_form_view` VALUES("50512", "3", "2017-03-08 20:04:42", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("50513", "15", "2017-03-08 20:04:42", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50514", "10", "2017-03-08 20:04:42", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50515", "2", "2017-03-08 20:55:38", "220.181.108.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("50516", "3", "2017-03-08 21:26:45", "202.46.57.126", "6");
INSERT INTO `wp_rg_form_view` VALUES("50517", "15", "2017-03-08 21:26:45", "202.46.57.126", "5");
INSERT INTO `wp_rg_form_view` VALUES("50518", "10", "2017-03-08 21:26:45", "202.46.57.126", "3");
INSERT INTO `wp_rg_form_view` VALUES("50519", "10", "2017-03-08 22:03:20", "184.69.188.2", "8");
INSERT INTO `wp_rg_form_view` VALUES("50520", "3", "2017-03-08 22:03:20", "184.69.188.2", "16");
INSERT INTO `wp_rg_form_view` VALUES("50521", "15", "2017-03-08 22:03:20", "184.69.188.2", "9");
INSERT INTO `wp_rg_form_view` VALUES("50522", "10", "2017-03-08 23:08:15", "24.108.25.208", "3");
INSERT INTO `wp_rg_form_view` VALUES("50523", "3", "2017-03-08 23:08:16", "24.108.25.208", "5");
INSERT INTO `wp_rg_form_view` VALUES("50524", "15", "2017-03-08 23:08:16", "24.108.25.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("50525", "3", "2017-03-09 00:18:25", "142.32.114.118", "41");
INSERT INTO `wp_rg_form_view` VALUES("50526", "15", "2017-03-09 00:18:25", "142.32.114.118", "7");
INSERT INTO `wp_rg_form_view` VALUES("50527", "10", "2017-03-09 00:18:25", "142.32.114.118", "9");
INSERT INTO `wp_rg_form_view` VALUES("50528", "6", "2017-03-09 00:50:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50529", "9", "2017-03-09 00:50:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50530", "8", "2017-03-09 00:50:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50531", "13", "2017-03-09 00:50:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50532", "11", "2017-03-09 01:29:43", "178.238.38.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("50533", "3", "2017-03-09 01:29:56", "202.46.48.199", "6");
INSERT INTO `wp_rg_form_view` VALUES("50534", "15", "2017-03-09 01:29:56", "202.46.48.199", "5");
INSERT INTO `wp_rg_form_view` VALUES("50535", "10", "2017-03-09 01:29:56", "202.46.48.199", "3");
INSERT INTO `wp_rg_form_view` VALUES("50536", "3", "2017-03-09 02:24:18", "40.77.167.27", "6");
INSERT INTO `wp_rg_form_view` VALUES("50537", "15", "2017-03-09 02:24:19", "40.77.167.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("50538", "10", "2017-03-09 02:24:19", "40.77.167.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("50539", "3", "2017-03-09 03:05:56", "202.46.58.210", "5");
INSERT INTO `wp_rg_form_view` VALUES("50540", "15", "2017-03-09 03:05:56", "202.46.58.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("50541", "10", "2017-03-09 03:05:56", "202.46.58.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("50542", "3", "2017-03-09 04:28:19", "154.20.41.119", "19");
INSERT INTO `wp_rg_form_view` VALUES("50543", "15", "2017-03-09 04:28:23", "154.20.41.119", "11");
INSERT INTO `wp_rg_form_view` VALUES("50544", "10", "2017-03-09 04:28:23", "154.20.41.119", "10");
INSERT INTO `wp_rg_form_view` VALUES("50545", "3", "2017-03-09 05:49:01", "202.46.53.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("50546", "15", "2017-03-09 05:49:02", "202.46.53.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("50547", "10", "2017-03-09 05:49:02", "202.46.53.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("50548", "3", "2017-03-09 07:29:21", "202.46.50.75", "7");
INSERT INTO `wp_rg_form_view` VALUES("50549", "15", "2017-03-09 07:29:22", "202.46.50.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("50550", "10", "2017-03-09 07:29:22", "202.46.50.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("50551", "5", "2017-03-09 08:02:49", "202.46.55.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("50552", "3", "2017-03-09 08:02:49", "202.46.55.88", "6");
INSERT INTO `wp_rg_form_view` VALUES("50553", "15", "2017-03-09 08:02:49", "202.46.55.88", "3");
INSERT INTO `wp_rg_form_view` VALUES("50554", "10", "2017-03-09 08:02:49", "202.46.55.88", "3");
INSERT INTO `wp_rg_form_view` VALUES("50555", "3", "2017-03-09 09:06:33", "157.55.39.57", "10");
INSERT INTO `wp_rg_form_view` VALUES("50556", "15", "2017-03-09 09:06:33", "157.55.39.57", "5");
INSERT INTO `wp_rg_form_view` VALUES("50557", "10", "2017-03-09 09:06:33", "157.55.39.57", "5");
INSERT INTO `wp_rg_form_view` VALUES("50558", "15", "2017-03-09 10:15:16", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50559", "3", "2017-03-09 10:20:02", "51.255.65.61", "3");
INSERT INTO `wp_rg_form_view` VALUES("50560", "10", "2017-03-09 10:20:03", "51.255.65.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("50561", "3", "2017-03-09 11:13:04", "88.99.27.172", "4");
INSERT INTO `wp_rg_form_view` VALUES("50562", "15", "2017-03-09 11:13:04", "88.99.27.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("50563", "10", "2017-03-09 11:13:04", "88.99.27.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("50564", "3", "2017-03-09 12:23:53", "46.246.38.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("50565", "15", "2017-03-09 12:23:53", "46.246.38.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("50566", "10", "2017-03-09 12:23:53", "46.246.38.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("50567", "10", "2017-03-09 13:40:44", "54.201.143.242", "3");
INSERT INTO `wp_rg_form_view` VALUES("50568", "3", "2017-03-09 13:40:44", "54.201.143.242", "5");
INSERT INTO `wp_rg_form_view` VALUES("50569", "15", "2017-03-09 13:40:45", "54.201.143.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("50570", "3", "2017-03-09 14:07:56", "81.109.85.9", "35");
INSERT INTO `wp_rg_form_view` VALUES("50571", "15", "2017-03-09 14:07:56", "81.109.85.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("50572", "10", "2017-03-09 14:07:56", "81.109.85.9", "8");
INSERT INTO `wp_rg_form_view` VALUES("50573", "6", "2017-03-09 14:38:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50574", "9", "2017-03-09 14:38:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50575", "8", "2017-03-09 14:38:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50576", "13", "2017-03-09 14:38:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50577", "3", "2017-03-09 15:40:51", "202.46.53.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("50578", "15", "2017-03-09 15:40:51", "202.46.53.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("50579", "10", "2017-03-09 15:40:51", "202.46.53.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("50580", "3", "2017-03-09 16:14:51", "40.77.167.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("50581", "15", "2017-03-09 16:14:51", "40.77.167.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("50582", "10", "2017-03-09 16:14:51", "40.77.167.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("50583", "3", "2017-03-09 17:12:39", "184.66.49.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("50584", "15", "2017-03-09 17:12:39", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("50585", "10", "2017-03-09 17:12:39", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("50586", "3", "2017-03-09 18:28:17", "202.46.56.137", "10");
INSERT INTO `wp_rg_form_view` VALUES("50587", "15", "2017-03-09 18:41:53", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("50588", "10", "2017-03-09 18:41:53", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("50589", "15", "2017-03-09 19:00:48", "24.68.45.80", "5");
INSERT INTO `wp_rg_form_view` VALUES("50590", "3", "2017-03-09 19:00:48", "24.68.45.80", "13");
INSERT INTO `wp_rg_form_view` VALUES("50591", "10", "2017-03-09 19:00:48", "24.68.45.80", "9");
INSERT INTO `wp_rg_form_view` VALUES("50592", "10", "2017-03-09 20:02:57", "24.68.36.32", "11");
INSERT INTO `wp_rg_form_view` VALUES("50593", "3", "2017-03-09 20:02:57", "24.68.36.32", "16");
INSERT INTO `wp_rg_form_view` VALUES("50594", "15", "2017-03-09 20:02:57", "24.68.36.32", "7");
INSERT INTO `wp_rg_form_view` VALUES("50595", "3", "2017-03-09 21:05:11", "24.69.161.166", "17");
INSERT INTO `wp_rg_form_view` VALUES("50596", "15", "2017-03-09 21:05:11", "24.69.161.166", "7");
INSERT INTO `wp_rg_form_view` VALUES("50597", "10", "2017-03-09 21:05:11", "24.69.161.166", "8");
INSERT INTO `wp_rg_form_view` VALUES("50598", "5", "2017-03-09 21:15:44", "202.46.51.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("50599", "3", "2017-03-09 22:42:50", "69.196.72.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("50600", "15", "2017-03-09 22:42:52", "69.196.72.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("50601", "10", "2017-03-09 22:42:52", "69.196.72.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("50602", "3", "2017-03-09 23:29:42", "202.46.56.190", "7");
INSERT INTO `wp_rg_form_view` VALUES("50603", "15", "2017-03-09 23:29:43", "202.46.56.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("50604", "10", "2017-03-09 23:29:43", "202.46.56.190", "4");
INSERT INTO `wp_rg_form_view` VALUES("50605", "3", "2017-03-10 01:05:30", "108.172.161.159", "3");
INSERT INTO `wp_rg_form_view` VALUES("50606", "15", "2017-03-10 01:05:31", "108.172.161.159", "4");
INSERT INTO `wp_rg_form_view` VALUES("50607", "10", "2017-03-10 01:05:31", "108.172.161.159", "4");
INSERT INTO `wp_rg_form_view` VALUES("50608", "3", "2017-03-10 02:10:25", "195.154.211.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("50609", "15", "2017-03-10 02:10:25", "195.154.211.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("50610", "10", "2017-03-10 02:10:25", "195.154.211.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("50611", "3", "2017-03-10 03:02:38", "163.172.66.99", "4");
INSERT INTO `wp_rg_form_view` VALUES("50612", "15", "2017-03-10 03:02:38", "163.172.66.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("50613", "10", "2017-03-10 03:02:38", "163.172.66.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("50614", "3", "2017-03-10 04:23:54", "207.46.13.3", "61");
INSERT INTO `wp_rg_form_view` VALUES("50615", "15", "2017-03-10 04:23:54", "207.46.13.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("50616", "10", "2017-03-10 04:23:54", "207.46.13.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("50617", "8", "2017-03-10 04:24:22", "157.55.39.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("50618", "6", "2017-03-10 04:24:32", "157.55.39.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("50619", "9", "2017-03-10 04:56:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50620", "13", "2017-03-10 04:56:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50621", "3", "2017-03-10 05:17:44", "202.46.55.136", "10");
INSERT INTO `wp_rg_form_view` VALUES("50622", "15", "2017-03-10 05:17:44", "202.46.55.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("50623", "10", "2017-03-10 05:17:44", "202.46.55.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("50624", "3", "2017-03-10 06:16:14", "24.69.158.129", "6");
INSERT INTO `wp_rg_form_view` VALUES("50625", "15", "2017-03-10 06:16:15", "24.69.158.129", "4");
INSERT INTO `wp_rg_form_view` VALUES("50626", "10", "2017-03-10 06:16:15", "24.69.158.129", "4");
INSERT INTO `wp_rg_form_view` VALUES("50627", "3", "2017-03-10 08:06:49", "202.46.58.13", "10");
INSERT INTO `wp_rg_form_view` VALUES("50628", "15", "2017-03-10 08:06:51", "202.46.58.13", "8");
INSERT INTO `wp_rg_form_view` VALUES("50629", "10", "2017-03-10 08:06:51", "202.46.58.13", "8");
INSERT INTO `wp_rg_form_view` VALUES("50630", "3", "2017-03-10 09:13:48", "202.46.56.134", "8");
INSERT INTO `wp_rg_form_view` VALUES("50631", "15", "2017-03-10 09:13:48", "202.46.56.134", "6");
INSERT INTO `wp_rg_form_view` VALUES("50632", "10", "2017-03-10 09:13:48", "202.46.56.134", "6");
INSERT INTO `wp_rg_form_view` VALUES("50633", "9", "2017-03-10 09:41:47", "163.172.66.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("50634", "3", "2017-03-10 10:20:44", "202.46.52.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("50635", "15", "2017-03-10 10:20:44", "202.46.52.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("50636", "10", "2017-03-10 10:20:44", "202.46.52.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("50637", "3", "2017-03-10 11:12:40", "51.255.65.2", "4");
INSERT INTO `wp_rg_form_view` VALUES("50638", "15", "2017-03-10 11:12:40", "51.255.65.2", "3");
INSERT INTO `wp_rg_form_view` VALUES("50639", "10", "2017-03-10 11:12:40", "51.255.65.2", "3");
INSERT INTO `wp_rg_form_view` VALUES("50640", "10", "2017-03-10 12:29:10", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("50641", "3", "2017-03-10 12:29:11", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50642", "15", "2017-03-10 12:29:12", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50643", "14", "2017-03-10 13:36:14", "51.255.65.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("50644", "3", "2017-03-10 13:36:14", "51.255.65.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("50645", "15", "2017-03-10 13:36:14", "51.255.65.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("50646", "10", "2017-03-10 13:36:14", "51.255.65.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("50647", "3", "2017-03-10 14:00:57", "77.75.79.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("50648", "15", "2017-03-10 14:00:57", "77.75.79.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("50649", "10", "2017-03-10 14:00:57", "77.75.79.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("50650", "3", "2017-03-10 15:12:22", "202.46.51.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("50651", "15", "2017-03-10 15:12:22", "202.46.51.35", "5");
INSERT INTO `wp_rg_form_view` VALUES("50652", "10", "2017-03-10 15:12:22", "202.46.51.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("50653", "2", "2017-03-10 15:50:07", "167.114.172.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("50654", "3", "2017-03-10 16:12:19", "164.132.161.32", "13");
INSERT INTO `wp_rg_form_view` VALUES("50655", "15", "2017-03-10 16:12:19", "164.132.161.32", "13");
INSERT INTO `wp_rg_form_view` VALUES("50656", "10", "2017-03-10 16:12:19", "164.132.161.32", "13");
INSERT INTO `wp_rg_form_view` VALUES("50657", "14", "2017-03-10 17:33:41", "96.50.96.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("50658", "3", "2017-03-10 17:33:43", "96.50.96.111", "5");
INSERT INTO `wp_rg_form_view` VALUES("50659", "15", "2017-03-10 17:33:43", "96.50.96.111", "3");
INSERT INTO `wp_rg_form_view` VALUES("50660", "10", "2017-03-10 17:33:43", "96.50.96.111", "3");
INSERT INTO `wp_rg_form_view` VALUES("50661", "14", "2017-03-10 18:14:11", "207.46.13.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50662", "3", "2017-03-10 18:14:12", "207.46.13.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("50663", "15", "2017-03-10 18:14:12", "207.46.13.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("50664", "10", "2017-03-10 18:14:12", "207.46.13.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("50665", "6", "2017-03-10 18:54:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50666", "9", "2017-03-10 18:54:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50667", "8", "2017-03-10 18:54:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50668", "13", "2017-03-10 18:54:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50669", "3", "2017-03-10 19:32:16", "202.46.50.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("50670", "15", "2017-03-10 19:32:20", "202.46.50.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("50671", "10", "2017-03-10 19:32:20", "202.46.50.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("50672", "14", "2017-03-10 20:22:01", "96.50.96.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("50673", "3", "2017-03-10 20:22:01", "96.50.96.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("50674", "15", "2017-03-10 20:22:01", "96.50.96.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("50675", "10", "2017-03-10 20:22:01", "96.50.96.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("50676", "3", "2017-03-10 21:31:07", "46.246.38.151", "4");
INSERT INTO `wp_rg_form_view` VALUES("50677", "15", "2017-03-10 21:31:10", "46.246.38.151", "4");
INSERT INTO `wp_rg_form_view` VALUES("50678", "10", "2017-03-10 21:31:10", "46.246.38.151", "4");
INSERT INTO `wp_rg_form_view` VALUES("50679", "11", "2017-03-10 21:54:18", "77.75.79.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("50680", "3", "2017-03-10 23:12:50", "51.255.65.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("50681", "10", "2017-03-10 23:23:54", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("50682", "15", "2017-03-10 23:23:55", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("50683", "13", "2017-03-11 00:38:32", "157.55.39.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("50684", "3", "2017-03-11 00:38:34", "157.55.39.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("50685", "15", "2017-03-11 00:38:34", "157.55.39.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("50686", "10", "2017-03-11 00:38:34", "157.55.39.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("50687", "3", "2017-03-11 01:01:39", "164.132.161.77", "27");
INSERT INTO `wp_rg_form_view` VALUES("50688", "15", "2017-03-11 01:01:39", "164.132.161.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("50689", "10", "2017-03-11 01:01:39", "164.132.161.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("50690", "6", "2017-03-11 01:26:16", "163.172.66.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("50691", "9", "2017-03-11 01:26:16", "163.172.66.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("50692", "8", "2017-03-11 01:26:17", "163.172.66.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("50693", "13", "2017-03-11 01:26:17", "163.172.66.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("50694", "3", "2017-03-11 02:27:09", "163.172.64.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("50695", "15", "2017-03-11 02:27:09", "163.172.64.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("50696", "10", "2017-03-11 02:27:09", "163.172.64.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("50697", "11", "2017-03-11 02:38:19", "108.175.2.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("50698", "2", "2017-03-11 02:39:47", "108.175.2.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("50699", "3", "2017-03-11 03:27:23", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("50700", "15", "2017-03-11 03:27:23", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50701", "10", "2017-03-11 03:27:23", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50702", "3", "2017-03-11 04:17:06", "202.46.50.180", "3");
INSERT INTO `wp_rg_form_view` VALUES("50703", "15", "2017-03-11 04:17:07", "202.46.50.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("50704", "10", "2017-03-11 04:17:07", "202.46.50.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("50705", "14", "2017-03-11 04:43:44", "139.129.230.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("50706", "3", "2017-03-11 05:01:02", "157.55.39.241", "4");
INSERT INTO `wp_rg_form_view` VALUES("50707", "15", "2017-03-11 05:01:02", "157.55.39.241", "3");
INSERT INTO `wp_rg_form_view` VALUES("50708", "10", "2017-03-11 05:01:02", "157.55.39.241", "4");
INSERT INTO `wp_rg_form_view` VALUES("50709", "3", "2017-03-11 06:05:51", "77.75.78.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("50710", "15", "2017-03-11 06:05:51", "77.75.78.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("50711", "10", "2017-03-11 06:05:51", "77.75.78.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("50712", "3", "2017-03-11 07:04:36", "202.46.51.14", "7");
INSERT INTO `wp_rg_form_view` VALUES("50713", "15", "2017-03-11 07:04:38", "202.46.51.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("50714", "10", "2017-03-11 07:04:38", "202.46.51.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("50715", "3", "2017-03-11 08:04:30", "163.172.66.97", "29");
INSERT INTO `wp_rg_form_view` VALUES("50716", "15", "2017-03-11 08:09:49", "157.55.39.242", "3");
INSERT INTO `wp_rg_form_view` VALUES("50717", "10", "2017-03-11 08:09:49", "157.55.39.242", "5");
INSERT INTO `wp_rg_form_view` VALUES("50718", "6", "2017-03-11 08:58:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50719", "9", "2017-03-11 08:58:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50720", "8", "2017-03-11 08:58:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50721", "13", "2017-03-11 08:58:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50722", "14", "2017-03-11 10:33:58", "163.172.65.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("50723", "3", "2017-03-11 10:34:04", "163.172.65.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("50724", "15", "2017-03-11 10:34:05", "163.172.65.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("50725", "10", "2017-03-11 10:34:05", "163.172.65.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("50726", "14", "2017-03-11 11:46:21", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("50727", "3", "2017-03-11 11:46:24", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("50728", "15", "2017-03-11 11:46:24", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("50729", "10", "2017-03-11 11:46:24", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("50730", "3", "2017-03-11 12:14:05", "141.8.143.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("50731", "15", "2017-03-11 12:14:05", "141.8.143.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("50732", "10", "2017-03-11 12:14:05", "141.8.143.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("50733", "14", "2017-03-11 12:41:39", "37.203.214.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("50734", "3", "2017-03-11 13:03:29", "163.172.65.130", "6");
INSERT INTO `wp_rg_form_view` VALUES("50735", "15", "2017-03-11 13:03:30", "163.172.65.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("50736", "10", "2017-03-11 13:03:30", "163.172.65.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("50737", "14", "2017-03-11 13:56:36", "104.223.54.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("50738", "3", "2017-03-11 14:05:14", "164.132.161.27", "3");
INSERT INTO `wp_rg_form_view` VALUES("50739", "10", "2017-03-11 14:45:41", "157.55.39.219", "2");
INSERT INTO `wp_rg_form_view` VALUES("50740", "15", "2017-03-11 14:45:41", "157.55.39.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("50741", "3", "2017-03-11 15:25:22", "202.46.54.27", "3");
INSERT INTO `wp_rg_form_view` VALUES("50742", "15", "2017-03-11 15:25:22", "202.46.54.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("50743", "10", "2017-03-11 15:25:22", "202.46.54.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("50744", "15", "2017-03-11 16:25:18", "96.50.96.111", "3");
INSERT INTO `wp_rg_form_view` VALUES("50745", "3", "2017-03-11 16:25:18", "96.50.96.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("50746", "10", "2017-03-11 16:25:19", "96.50.96.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("50747", "14", "2017-03-11 16:30:50", "24.69.27.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("50748", "14", "2017-03-11 17:01:31", "24.108.188.215", "3");
INSERT INTO `wp_rg_form_view` VALUES("50749", "3", "2017-03-11 17:01:32", "24.108.188.215", "114");
INSERT INTO `wp_rg_form_view` VALUES("50750", "15", "2017-03-11 17:01:32", "24.108.188.215", "85");
INSERT INTO `wp_rg_form_view` VALUES("50751", "10", "2017-03-11 17:01:32", "24.108.188.215", "83");
INSERT INTO `wp_rg_form_view` VALUES("50752", "11", "2017-03-11 17:48:59", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("50753", "6", "2017-03-11 17:59:15", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("50754", "15", "2017-03-11 18:00:04", "162.243.251.166", "364");
INSERT INTO `wp_rg_form_view` VALUES("50755", "3", "2017-03-11 18:00:05", "162.243.251.166", "397");
INSERT INTO `wp_rg_form_view` VALUES("50756", "10", "2017-03-11 18:00:05", "162.243.251.166", "370");
INSERT INTO `wp_rg_form_view` VALUES("50757", "9", "2017-03-11 18:08:24", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("50758", "14", "2017-03-11 18:41:32", "173.208.146.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("50759", "2", "2017-03-11 18:57:20", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("50760", "3", "2017-03-11 19:00:20", "162.243.251.166", "70");
INSERT INTO `wp_rg_form_view` VALUES("50761", "15", "2017-03-11 19:00:20", "162.243.251.166", "60");
INSERT INTO `wp_rg_form_view` VALUES("50762", "10", "2017-03-11 19:00:20", "162.243.251.166", "59");
INSERT INTO `wp_rg_form_view` VALUES("50763", "13", "2017-03-11 19:07:39", "162.243.251.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("50764", "3", "2017-03-11 20:19:35", "51.255.65.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("50765", "15", "2017-03-11 20:19:35", "51.255.65.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("50766", "10", "2017-03-11 20:19:35", "51.255.65.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("50767", "3", "2017-03-11 21:39:46", "202.46.53.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("50768", "15", "2017-03-11 21:39:52", "202.46.53.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("50769", "10", "2017-03-11 21:39:52", "202.46.53.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("50770", "3", "2017-03-11 22:46:42", "202.46.52.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("50771", "15", "2017-03-11 22:46:43", "202.46.52.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("50772", "10", "2017-03-11 22:46:43", "202.46.52.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("50773", "3", "2017-03-11 23:20:12", "202.46.54.109", "32");
INSERT INTO `wp_rg_form_view` VALUES("50774", "15", "2017-03-11 23:20:13", "202.46.54.109", "8");
INSERT INTO `wp_rg_form_view` VALUES("50775", "10", "2017-03-11 23:20:13", "202.46.54.109", "8");
INSERT INTO `wp_rg_form_view` VALUES("50776", "6", "2017-03-11 23:32:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50777", "9", "2017-03-11 23:32:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50778", "8", "2017-03-11 23:32:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50779", "13", "2017-03-11 23:32:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50780", "3", "2017-03-12 00:57:27", "163.172.64.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("50781", "10", "2017-03-12 01:18:00", "199.58.86.209", "8");
INSERT INTO `wp_rg_form_view` VALUES("50782", "3", "2017-03-12 01:18:00", "199.58.86.209", "9");
INSERT INTO `wp_rg_form_view` VALUES("50783", "15", "2017-03-12 01:18:00", "199.58.86.209", "8");
INSERT INTO `wp_rg_form_view` VALUES("50784", "14", "2017-03-12 01:38:44", "70.67.164.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("50785", "3", "2017-03-12 02:30:06", "163.172.66.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("50786", "15", "2017-03-12 02:33:55", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("50787", "10", "2017-03-12 02:33:55", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("50788", "14", "2017-03-12 03:04:03", "155.94.134.193", "3");
INSERT INTO `wp_rg_form_view` VALUES("50789", "3", "2017-03-12 03:04:03", "155.94.134.193", "4");
INSERT INTO `wp_rg_form_view` VALUES("50790", "15", "2017-03-12 03:04:03", "155.94.134.193", "4");
INSERT INTO `wp_rg_form_view` VALUES("50791", "10", "2017-03-12 03:04:03", "155.94.134.193", "4");
INSERT INTO `wp_rg_form_view` VALUES("50792", "3", "2017-03-12 04:10:25", "202.46.49.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("50793", "15", "2017-03-12 04:10:25", "202.46.49.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("50794", "10", "2017-03-12 04:10:25", "202.46.49.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("50795", "3", "2017-03-12 05:01:19", "163.172.66.115", "4");
INSERT INTO `wp_rg_form_view` VALUES("50796", "15", "2017-03-12 05:34:25", "202.46.50.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("50797", "10", "2017-03-12 05:34:25", "202.46.50.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("50798", "3", "2017-03-12 06:00:27", "163.172.66.138", "7");
INSERT INTO `wp_rg_form_view` VALUES("50799", "15", "2017-03-12 06:07:55", "202.46.50.16", "4");
INSERT INTO `wp_rg_form_view` VALUES("50800", "10", "2017-03-12 06:07:55", "202.46.50.16", "4");
INSERT INTO `wp_rg_form_view` VALUES("50801", "6", "2017-03-12 06:33:35", "163.172.66.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("50802", "15", "2017-03-12 07:01:52", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("50803", "3", "2017-03-12 07:01:54", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50804", "10", "2017-03-12 07:01:54", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50805", "10", "2017-03-12 08:00:11", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("50806", "3", "2017-03-12 08:00:13", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("50807", "15", "2017-03-12 08:00:13", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50808", "3", "2017-03-12 09:16:05", "40.77.167.123", "4");
INSERT INTO `wp_rg_form_view` VALUES("50809", "15", "2017-03-12 09:16:05", "40.77.167.123", "3");
INSERT INTO `wp_rg_form_view` VALUES("50810", "10", "2017-03-12 09:16:06", "40.77.167.123", "3");
INSERT INTO `wp_rg_form_view` VALUES("50811", "3", "2017-03-12 10:01:52", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("50812", "15", "2017-03-12 10:15:00", "77.75.76.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("50813", "10", "2017-03-12 10:15:00", "77.75.76.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("50814", "3", "2017-03-12 11:19:04", "202.46.50.124", "3");
INSERT INTO `wp_rg_form_view` VALUES("50815", "15", "2017-03-12 11:19:04", "202.46.50.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("50816", "10", "2017-03-12 11:19:04", "202.46.50.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("50817", "3", "2017-03-12 12:26:02", "202.46.54.106", "107");
INSERT INTO `wp_rg_form_view` VALUES("50818", "15", "2017-03-12 12:26:02", "202.46.54.106", "77");
INSERT INTO `wp_rg_form_view` VALUES("50819", "10", "2017-03-12 12:26:02", "202.46.54.106", "89");
INSERT INTO `wp_rg_form_view` VALUES("50820", "13", "2017-03-12 12:42:51", "40.77.167.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("50821", "8", "2017-03-12 12:42:53", "40.77.167.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("50822", "12", "2017-03-12 12:43:21", "207.46.13.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("50823", "3", "2017-03-12 13:05:47", "163.172.65.235", "30");
INSERT INTO `wp_rg_form_view` VALUES("50824", "15", "2017-03-12 13:05:47", "163.172.65.235", "3");
INSERT INTO `wp_rg_form_view` VALUES("50825", "10", "2017-03-12 13:05:47", "163.172.65.235", "5");
INSERT INTO `wp_rg_form_view` VALUES("50826", "6", "2017-03-12 13:48:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50827", "9", "2017-03-12 13:48:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50828", "8", "2017-03-12 13:48:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50829", "13", "2017-03-12 13:48:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50830", "3", "2017-03-12 14:06:32", "202.46.53.175", "5");
INSERT INTO `wp_rg_form_view` VALUES("50831", "15", "2017-03-12 14:06:32", "202.46.53.175", "4");
INSERT INTO `wp_rg_form_view` VALUES("50832", "10", "2017-03-12 14:06:32", "202.46.53.175", "4");
INSERT INTO `wp_rg_form_view` VALUES("50833", "3", "2017-03-12 15:13:30", "202.46.50.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("50834", "15", "2017-03-12 15:13:30", "202.46.50.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("50835", "10", "2017-03-12 15:13:30", "202.46.50.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("50836", "15", "2017-03-12 16:17:38", "52.86.176.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("50837", "3", "2017-03-12 16:17:38", "52.86.176.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("50838", "10", "2017-03-12 16:17:38", "52.86.176.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("50839", "3", "2017-03-12 17:01:18", "164.132.161.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("50840", "15", "2017-03-12 17:01:18", "164.132.161.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("50841", "10", "2017-03-12 17:01:19", "164.132.161.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("50842", "3", "2017-03-12 19:30:24", "202.46.58.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("50843", "15", "2017-03-12 19:30:28", "202.46.58.136", "8");
INSERT INTO `wp_rg_form_view` VALUES("50844", "10", "2017-03-12 19:30:28", "202.46.58.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("50845", "3", "2017-03-12 20:07:33", "207.46.13.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("50846", "15", "2017-03-12 20:07:33", "207.46.13.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("50847", "10", "2017-03-12 20:07:33", "207.46.13.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("50848", "3", "2017-03-12 22:26:39", "77.75.76.160", "27");
INSERT INTO `wp_rg_form_view` VALUES("50849", "15", "2017-03-12 22:26:40", "77.75.76.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("50850", "10", "2017-03-12 22:26:40", "77.75.76.160", "5");
INSERT INTO `wp_rg_form_view` VALUES("50851", "6", "2017-03-12 22:49:10", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50852", "9", "2017-03-12 22:49:11", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50853", "8", "2017-03-12 22:49:11", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50854", "13", "2017-03-12 22:49:12", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50855", "2", "2017-03-12 23:31:30", "157.55.39.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("50856", "3", "2017-03-13 00:05:53", "68.180.229.247", "28");
INSERT INTO `wp_rg_form_view` VALUES("50857", "15", "2017-03-13 00:05:54", "68.180.229.247", "19");
INSERT INTO `wp_rg_form_view` VALUES("50858", "10", "2017-03-13 00:05:54", "68.180.229.247", "22");
INSERT INTO `wp_rg_form_view` VALUES("50859", "6", "2017-03-13 00:37:40", "46.229.168.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("50860", "14", "2017-03-13 00:38:07", "46.229.168.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("50861", "3", "2017-03-13 01:12:44", "77.75.76.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("50862", "15", "2017-03-13 01:12:44", "77.75.76.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("50863", "10", "2017-03-13 01:12:44", "77.75.76.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("50864", "7", "2017-03-13 01:31:02", "202.46.49.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("50865", "3", "2017-03-13 02:14:15", "77.75.79.11", "7");
INSERT INTO `wp_rg_form_view` VALUES("50866", "15", "2017-03-13 02:14:17", "77.75.79.11", "5");
INSERT INTO `wp_rg_form_view` VALUES("50867", "10", "2017-03-13 02:14:17", "77.75.79.11", "6");
INSERT INTO `wp_rg_form_view` VALUES("50868", "14", "2017-03-13 02:25:39", "45.45.150.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("50869", "3", "2017-03-13 03:11:30", "202.46.51.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("50870", "15", "2017-03-13 03:11:30", "202.46.51.27", "3");
INSERT INTO `wp_rg_form_view` VALUES("50871", "10", "2017-03-13 03:11:30", "202.46.51.27", "3");
INSERT INTO `wp_rg_form_view` VALUES("50872", "10", "2017-03-13 04:17:04", "51.255.65.33", "7");
INSERT INTO `wp_rg_form_view` VALUES("50873", "3", "2017-03-13 04:17:04", "51.255.65.33", "29");
INSERT INTO `wp_rg_form_view` VALUES("50874", "15", "2017-03-13 04:17:04", "51.255.65.33", "4");
INSERT INTO `wp_rg_form_view` VALUES("50875", "6", "2017-03-13 04:23:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50876", "9", "2017-03-13 04:23:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50877", "8", "2017-03-13 04:23:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50878", "13", "2017-03-13 04:23:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50879", "3", "2017-03-13 05:06:06", "95.211.196.214", "5");
INSERT INTO `wp_rg_form_view` VALUES("50880", "15", "2017-03-13 05:06:06", "95.211.196.214", "4");
INSERT INTO `wp_rg_form_view` VALUES("50881", "10", "2017-03-13 05:06:06", "95.211.196.214", "4");
INSERT INTO `wp_rg_form_view` VALUES("50882", "8", "2017-03-13 05:41:09", "157.55.39.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("50883", "3", "2017-03-13 06:09:20", "77.75.78.163", "42");
INSERT INTO `wp_rg_form_view` VALUES("50884", "15", "2017-03-13 06:09:20", "77.75.78.163", "7");
INSERT INTO `wp_rg_form_view` VALUES("50885", "10", "2017-03-13 06:09:20", "77.75.78.163", "13");
INSERT INTO `wp_rg_form_view` VALUES("50886", "14", "2017-03-13 06:26:44", "45.55.72.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("50887", "13", "2017-03-13 06:53:55", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("50888", "3", "2017-03-13 07:27:23", "163.172.66.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("50889", "15", "2017-03-13 07:27:23", "163.172.66.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("50890", "10", "2017-03-13 07:27:23", "163.172.66.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("50891", "14", "2017-03-13 08:06:37", "154.16.61.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("50892", "3", "2017-03-13 08:06:37", "154.16.61.29", "3");
INSERT INTO `wp_rg_form_view` VALUES("50893", "15", "2017-03-13 08:06:38", "154.16.61.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("50894", "10", "2017-03-13 08:06:38", "154.16.61.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("50895", "8", "2017-03-13 09:33:07", "131.253.25.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("50896", "3", "2017-03-13 09:33:10", "131.253.25.217", "28");
INSERT INTO `wp_rg_form_view` VALUES("50897", "15", "2017-03-13 09:33:10", "131.253.25.217", "3");
INSERT INTO `wp_rg_form_view` VALUES("50898", "10", "2017-03-13 09:33:10", "131.253.25.217", "5");
INSERT INTO `wp_rg_form_view` VALUES("50899", "6", "2017-03-13 09:49:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50900", "9", "2017-03-13 09:49:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50901", "13", "2017-03-13 09:49:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50902", "3", "2017-03-13 10:07:48", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("50903", "15", "2017-03-13 10:07:48", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("50904", "10", "2017-03-13 10:07:49", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("50905", "3", "2017-03-13 11:37:00", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("50906", "15", "2017-03-13 11:37:01", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("50907", "10", "2017-03-13 11:37:01", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("50908", "3", "2017-03-13 12:06:42", "40.77.167.124", "5");
INSERT INTO `wp_rg_form_view` VALUES("50909", "15", "2017-03-13 12:06:42", "40.77.167.124", "4");
INSERT INTO `wp_rg_form_view` VALUES("50910", "10", "2017-03-13 12:06:42", "40.77.167.124", "5");
INSERT INTO `wp_rg_form_view` VALUES("50911", "3", "2017-03-13 13:03:12", "163.172.66.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("50912", "15", "2017-03-13 13:03:12", "163.172.66.89", "3");
INSERT INTO `wp_rg_form_view` VALUES("50913", "10", "2017-03-13 13:03:12", "163.172.66.89", "3");
INSERT INTO `wp_rg_form_view` VALUES("50914", "3", "2017-03-13 14:03:48", "66.249.79.140", "11");
INSERT INTO `wp_rg_form_view` VALUES("50915", "15", "2017-03-13 14:03:48", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("50916", "10", "2017-03-13 14:03:48", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("50917", "14", "2017-03-13 14:11:13", "95.211.196.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("50918", "3", "2017-03-13 15:09:51", "202.46.51.17", "8");
INSERT INTO `wp_rg_form_view` VALUES("50919", "15", "2017-03-13 15:09:52", "202.46.51.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("50920", "10", "2017-03-13 15:09:52", "202.46.51.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("50921", "14", "2017-03-13 16:11:31", "204.152.206.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("50922", "3", "2017-03-13 16:11:32", "204.152.206.130", "10");
INSERT INTO `wp_rg_form_view` VALUES("50923", "15", "2017-03-13 16:11:32", "204.152.206.130", "7");
INSERT INTO `wp_rg_form_view` VALUES("50924", "10", "2017-03-13 16:11:32", "204.152.206.130", "6");
INSERT INTO `wp_rg_form_view` VALUES("50925", "3", "2017-03-13 17:20:20", "95.211.196.214", "15");
INSERT INTO `wp_rg_form_view` VALUES("50926", "15", "2017-03-13 17:20:20", "95.211.196.214", "9");
INSERT INTO `wp_rg_form_view` VALUES("50927", "10", "2017-03-13 17:20:20", "95.211.196.214", "8");
INSERT INTO `wp_rg_form_view` VALUES("50928", "3", "2017-03-13 18:09:35", "24.244.32.141", "11");
INSERT INTO `wp_rg_form_view` VALUES("50929", "15", "2017-03-13 18:23:53", "163.172.65.34", "11");
INSERT INTO `wp_rg_form_view` VALUES("50930", "10", "2017-03-13 18:23:53", "163.172.65.34", "10");
INSERT INTO `wp_rg_form_view` VALUES("50931", "3", "2017-03-13 19:00:16", "202.46.52.40", "29");
INSERT INTO `wp_rg_form_view` VALUES("50932", "15", "2017-03-13 19:00:16", "202.46.52.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("50933", "10", "2017-03-13 19:00:16", "202.46.52.40", "6");
INSERT INTO `wp_rg_form_view` VALUES("50934", "6", "2017-03-13 19:29:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50935", "9", "2017-03-13 19:29:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50936", "8", "2017-03-13 19:29:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50937", "13", "2017-03-13 19:29:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50938", "3", "2017-03-13 20:03:36", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("50939", "15", "2017-03-13 20:03:36", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("50940", "10", "2017-03-13 20:03:36", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("50941", "3", "2017-03-13 21:15:29", "202.46.56.62", "10");
INSERT INTO `wp_rg_form_view` VALUES("50942", "15", "2017-03-13 21:15:30", "202.46.56.62", "9");
INSERT INTO `wp_rg_form_view` VALUES("50943", "10", "2017-03-13 21:15:30", "202.46.56.62", "7");
INSERT INTO `wp_rg_form_view` VALUES("50944", "3", "2017-03-13 22:11:03", "163.172.65.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("50945", "15", "2017-03-13 22:11:05", "163.172.65.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("50946", "10", "2017-03-13 22:11:05", "163.172.65.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("50947", "10", "2017-03-14 00:33:04", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("50948", "3", "2017-03-14 00:33:09", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("50949", "15", "2017-03-14 00:33:09", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("50950", "3", "2017-03-14 01:08:18", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("50951", "6", "2017-03-14 01:08:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50952", "9", "2017-03-14 01:08:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50953", "8", "2017-03-14 01:08:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50954", "10", "2017-03-14 01:08:19", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("50955", "13", "2017-03-14 01:08:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50956", "15", "2017-03-14 01:08:20", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("50957", "3", "2017-03-14 02:04:37", "51.255.65.12", "19");
INSERT INTO `wp_rg_form_view` VALUES("50958", "15", "2017-03-14 02:04:37", "51.255.65.12", "15");
INSERT INTO `wp_rg_form_view` VALUES("50959", "10", "2017-03-14 02:04:37", "51.255.65.12", "16");
INSERT INTO `wp_rg_form_view` VALUES("50960", "14", "2017-03-14 02:12:12", "70.67.60.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("50961", "11", "2017-03-14 02:49:15", "46.31.171.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("50962", "2", "2017-03-14 02:50:21", "46.31.171.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("50963", "10", "2017-03-14 03:32:27", "51.255.65.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("50964", "3", "2017-03-14 03:32:28", "51.255.65.56", "5");
INSERT INTO `wp_rg_form_view` VALUES("50965", "15", "2017-03-14 03:32:28", "51.255.65.56", "5");
INSERT INTO `wp_rg_form_view` VALUES("50966", "14", "2017-03-14 03:58:43", "172.103.218.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("50967", "3", "2017-03-14 04:11:31", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("50968", "15", "2017-03-14 04:11:31", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("50969", "10", "2017-03-14 04:11:31", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("50970", "10", "2017-03-14 06:00:43", "51.255.65.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("50971", "3", "2017-03-14 06:00:46", "51.255.65.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("50972", "15", "2017-03-14 06:00:46", "51.255.65.62", "4");
INSERT INTO `wp_rg_form_view` VALUES("50973", "3", "2017-03-14 07:23:58", "77.246.156.146", "70");
INSERT INTO `wp_rg_form_view` VALUES("50974", "6", "2017-03-14 07:28:40", "77.246.156.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("50975", "9", "2017-03-14 07:28:41", "77.246.156.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("50976", "8", "2017-03-14 07:28:41", "77.246.156.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("50977", "10", "2017-03-14 07:28:41", "77.246.156.146", "4");
INSERT INTO `wp_rg_form_view` VALUES("50978", "13", "2017-03-14 07:28:42", "77.246.156.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("50979", "15", "2017-03-14 07:28:42", "77.246.156.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("50980", "3", "2017-03-14 08:07:32", "202.46.50.157", "5");
INSERT INTO `wp_rg_form_view` VALUES("50981", "15", "2017-03-14 08:07:32", "202.46.50.157", "3");
INSERT INTO `wp_rg_form_view` VALUES("50982", "10", "2017-03-14 08:07:32", "202.46.50.157", "3");
INSERT INTO `wp_rg_form_view` VALUES("50983", "3", "2017-03-14 09:33:55", "213.251.182.105", "6");
INSERT INTO `wp_rg_form_view` VALUES("50984", "15", "2017-03-14 09:33:57", "213.251.182.105", "5");
INSERT INTO `wp_rg_form_view` VALUES("50985", "10", "2017-03-14 09:33:57", "213.251.182.105", "5");
INSERT INTO `wp_rg_form_view` VALUES("50986", "3", "2017-03-14 10:13:20", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("50987", "6", "2017-03-14 10:13:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50988", "9", "2017-03-14 10:13:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50989", "8", "2017-03-14 10:13:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50990", "10", "2017-03-14 10:13:21", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("50991", "13", "2017-03-14 10:13:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("50992", "15", "2017-03-14 10:13:22", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("50993", "2", "2017-03-14 10:34:52", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("50994", "3", "2017-03-14 12:28:58", "144.76.8.134", "13");
INSERT INTO `wp_rg_form_view` VALUES("50995", "15", "2017-03-14 12:29:00", "144.76.8.134", "8");
INSERT INTO `wp_rg_form_view` VALUES("50996", "10", "2017-03-14 12:29:00", "144.76.8.134", "8");
INSERT INTO `wp_rg_form_view` VALUES("50997", "14", "2017-03-14 13:03:08", "179.43.132.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("50998", "3", "2017-03-14 13:03:08", "179.43.132.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("50999", "15", "2017-03-14 13:03:08", "179.43.132.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("51000", "10", "2017-03-14 13:03:08", "179.43.132.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("51001", "3", "2017-03-14 14:02:58", "202.46.52.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("51002", "15", "2017-03-14 14:02:58", "202.46.52.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("51003", "10", "2017-03-14 14:02:58", "202.46.52.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("51004", "3", "2017-03-14 15:54:01", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("51005", "6", "2017-03-14 15:54:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51006", "9", "2017-03-14 15:54:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51007", "8", "2017-03-14 15:54:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51008", "10", "2017-03-14 15:54:03", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("51009", "13", "2017-03-14 15:54:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51010", "15", "2017-03-14 15:54:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("51011", "3", "2017-03-14 16:58:58", "51.255.65.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("51012", "15", "2017-03-14 16:59:00", "51.255.65.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("51013", "10", "2017-03-14 16:59:00", "51.255.65.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("51014", "3", "2017-03-14 17:03:50", "77.75.79.11", "8");
INSERT INTO `wp_rg_form_view` VALUES("51015", "15", "2017-03-14 17:03:50", "77.75.79.11", "10");
INSERT INTO `wp_rg_form_view` VALUES("51016", "10", "2017-03-14 17:03:50", "77.75.79.11", "11");
INSERT INTO `wp_rg_form_view` VALUES("51017", "3", "2017-03-14 18:11:53", "202.46.55.154", "7");
INSERT INTO `wp_rg_form_view` VALUES("51018", "15", "2017-03-14 18:11:53", "202.46.55.154", "6");
INSERT INTO `wp_rg_form_view` VALUES("51019", "10", "2017-03-14 18:11:53", "202.46.55.154", "6");
INSERT INTO `wp_rg_form_view` VALUES("51020", "3", "2017-03-14 19:35:23", "184.66.224.18", "5");
INSERT INTO `wp_rg_form_view` VALUES("51021", "15", "2017-03-14 19:35:27", "184.66.224.18", "4");
INSERT INTO `wp_rg_form_view` VALUES("51022", "10", "2017-03-14 19:35:28", "184.66.224.18", "4");
INSERT INTO `wp_rg_form_view` VALUES("51023", "3", "2017-03-14 20:10:43", "77.75.76.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("51024", "15", "2017-03-14 20:10:44", "77.75.76.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("51025", "10", "2017-03-14 20:10:44", "77.75.76.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("51026", "14", "2017-03-14 21:09:55", "142.31.10.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("51027", "3", "2017-03-14 21:09:57", "142.31.10.42", "7");
INSERT INTO `wp_rg_form_view` VALUES("51028", "15", "2017-03-14 21:09:57", "142.31.10.42", "6");
INSERT INTO `wp_rg_form_view` VALUES("51029", "10", "2017-03-14 21:09:57", "142.31.10.42", "6");
INSERT INTO `wp_rg_form_view` VALUES("51030", "3", "2017-03-14 22:06:28", "96.54.241.124", "5");
INSERT INTO `wp_rg_form_view` VALUES("51031", "15", "2017-03-14 22:06:30", "96.54.241.124", "4");
INSERT INTO `wp_rg_form_view` VALUES("51032", "10", "2017-03-14 22:06:30", "96.54.241.124", "4");
INSERT INTO `wp_rg_form_view` VALUES("51033", "5", "2017-03-14 22:58:46", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("51034", "3", "2017-03-14 23:19:09", "163.172.64.237", "17");
INSERT INTO `wp_rg_form_view` VALUES("51035", "15", "2017-03-14 23:19:11", "163.172.64.237", "9");
INSERT INTO `wp_rg_form_view` VALUES("51036", "10", "2017-03-14 23:19:11", "163.172.64.237", "9");
INSERT INTO `wp_rg_form_view` VALUES("51037", "3", "2017-03-15 00:04:21", "202.46.48.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("51038", "15", "2017-03-15 00:04:21", "202.46.48.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("51039", "10", "2017-03-15 00:04:21", "202.46.48.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("51040", "3", "2017-03-15 01:44:31", "202.46.49.201", "26");
INSERT INTO `wp_rg_form_view` VALUES("51041", "15", "2017-03-15 01:44:36", "202.46.49.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("51042", "10", "2017-03-15 01:44:36", "202.46.49.201", "4");
INSERT INTO `wp_rg_form_view` VALUES("51043", "6", "2017-03-15 01:45:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51044", "9", "2017-03-15 01:45:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51045", "8", "2017-03-15 01:45:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51046", "13", "2017-03-15 01:45:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51047", "3", "2017-03-15 02:09:07", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("51048", "15", "2017-03-15 02:09:07", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51049", "10", "2017-03-15 02:09:07", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51050", "3", "2017-03-15 03:17:09", "157.55.39.92", "5");
INSERT INTO `wp_rg_form_view` VALUES("51051", "15", "2017-03-15 03:17:09", "157.55.39.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("51052", "10", "2017-03-15 03:17:09", "157.55.39.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("51053", "3", "2017-03-15 05:40:35", "66.249.79.48", "28");
INSERT INTO `wp_rg_form_view` VALUES("51054", "15", "2017-03-15 05:40:37", "66.249.79.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("51055", "10", "2017-03-15 05:40:37", "66.249.79.48", "9");
INSERT INTO `wp_rg_form_view` VALUES("51056", "8", "2017-03-15 05:47:55", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("51057", "13", "2017-03-15 05:47:55", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("51058", "3", "2017-03-15 06:18:02", "88.99.27.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("51059", "15", "2017-03-15 06:18:07", "88.99.27.172", "4");
INSERT INTO `wp_rg_form_view` VALUES("51060", "10", "2017-03-15 06:18:07", "88.99.27.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("51061", "14", "2017-03-15 06:58:15", "184.175.212.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("51062", "3", "2017-03-15 07:10:38", "51.255.65.6", "31");
INSERT INTO `wp_rg_form_view` VALUES("51063", "15", "2017-03-15 07:10:38", "51.255.65.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("51064", "10", "2017-03-15 07:10:38", "51.255.65.6", "8");
INSERT INTO `wp_rg_form_view` VALUES("51065", "6", "2017-03-15 07:20:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51066", "9", "2017-03-15 07:20:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51067", "8", "2017-03-15 07:20:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51068", "13", "2017-03-15 07:20:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51069", "14", "2017-03-15 07:39:21", "188.208.0.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("51070", "3", "2017-03-15 08:17:30", "202.46.58.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("51071", "15", "2017-03-15 08:17:31", "202.46.58.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("51072", "10", "2017-03-15 08:17:31", "202.46.58.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("51073", "3", "2017-03-15 09:21:30", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51074", "15", "2017-03-15 09:21:31", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51075", "10", "2017-03-15 09:21:32", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51076", "3", "2017-03-15 10:12:59", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("51077", "15", "2017-03-15 10:12:59", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("51078", "10", "2017-03-15 10:12:59", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("51079", "3", "2017-03-15 11:03:29", "164.132.161.90", "4");
INSERT INTO `wp_rg_form_view` VALUES("51080", "15", "2017-03-15 11:03:29", "164.132.161.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("51081", "10", "2017-03-15 11:03:29", "164.132.161.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("51082", "3", "2017-03-15 12:08:19", "82.145.222.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("51083", "15", "2017-03-15 12:08:19", "82.145.222.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("51084", "10", "2017-03-15 12:08:19", "82.145.222.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("51085", "12", "2017-03-15 13:06:17", "66.249.79.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("51086", "3", "2017-03-15 13:06:19", "66.249.79.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("51087", "15", "2017-03-15 13:06:19", "66.249.79.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("51088", "10", "2017-03-15 13:06:19", "66.249.79.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("51089", "13", "2017-03-15 14:11:07", "66.249.79.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("51090", "3", "2017-03-15 14:11:09", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("51091", "15", "2017-03-15 14:11:09", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("51092", "10", "2017-03-15 14:11:09", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("51093", "11", "2017-03-15 15:09:34", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51094", "3", "2017-03-15 15:13:28", "207.46.13.184", "6");
INSERT INTO `wp_rg_form_view` VALUES("51095", "15", "2017-03-15 15:13:28", "207.46.13.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("51096", "10", "2017-03-15 15:13:29", "207.46.13.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("51097", "9", "2017-03-15 15:19:33", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51098", "3", "2017-03-15 16:00:25", "66.249.79.40", "30");
INSERT INTO `wp_rg_form_view` VALUES("51099", "15", "2017-03-15 16:00:25", "66.249.79.40", "5");
INSERT INTO `wp_rg_form_view` VALUES("51100", "10", "2017-03-15 16:00:25", "66.249.79.40", "7");
INSERT INTO `wp_rg_form_view` VALUES("51101", "11", "2017-03-15 16:03:03", "24.68.108.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("51102", "13", "2017-03-15 16:32:27", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("51103", "6", "2017-03-15 16:45:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51104", "9", "2017-03-15 16:45:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51105", "8", "2017-03-15 16:45:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51106", "3", "2017-03-15 17:44:26", "52.87.223.91", "8");
INSERT INTO `wp_rg_form_view` VALUES("51107", "15", "2017-03-15 17:44:28", "52.87.223.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("51108", "10", "2017-03-15 17:44:28", "52.87.223.91", "6");
INSERT INTO `wp_rg_form_view` VALUES("51109", "3", "2017-03-15 18:02:11", "176.9.110.70", "43");
INSERT INTO `wp_rg_form_view` VALUES("51110", "8", "2017-03-15 18:02:18", "176.9.110.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("51111", "13", "2017-03-15 18:02:18", "176.9.110.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("51112", "15", "2017-03-15 18:26:34", "54.204.207.174", "5");
INSERT INTO `wp_rg_form_view` VALUES("51113", "10", "2017-03-15 18:26:34", "54.204.207.174", "6");
INSERT INTO `wp_rg_form_view` VALUES("51114", "9", "2017-03-15 19:02:36", "202.46.49.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("51115", "3", "2017-03-15 19:02:36", "202.46.49.157", "9");
INSERT INTO `wp_rg_form_view` VALUES("51116", "15", "2017-03-15 19:02:36", "202.46.49.157", "10");
INSERT INTO `wp_rg_form_view` VALUES("51117", "10", "2017-03-15 19:02:36", "202.46.49.157", "9");
INSERT INTO `wp_rg_form_view` VALUES("51118", "14", "2017-03-15 19:31:21", "146.0.74.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("51119", "7", "2017-03-15 19:35:55", "202.46.53.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("51120", "3", "2017-03-15 20:12:58", "95.211.196.210", "9");
INSERT INTO `wp_rg_form_view` VALUES("51121", "15", "2017-03-15 20:12:59", "95.211.196.210", "9");
INSERT INTO `wp_rg_form_view` VALUES("51122", "10", "2017-03-15 20:12:59", "95.211.196.210", "8");
INSERT INTO `wp_rg_form_view` VALUES("51123", "3", "2017-03-15 21:52:53", "207.46.13.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("51124", "15", "2017-03-15 21:52:55", "207.46.13.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("51125", "10", "2017-03-15 21:52:55", "207.46.13.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("51126", "10", "2017-03-15 22:14:56", "51.255.65.82", "13");
INSERT INTO `wp_rg_form_view` VALUES("51127", "3", "2017-03-15 22:14:57", "51.255.65.82", "34");
INSERT INTO `wp_rg_form_view` VALUES("51128", "15", "2017-03-15 22:14:57", "51.255.65.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("51129", "6", "2017-03-15 22:55:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51130", "9", "2017-03-15 22:55:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51131", "8", "2017-03-15 22:55:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51132", "13", "2017-03-15 22:55:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51133", "3", "2017-03-15 23:11:07", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("51134", "15", "2017-03-15 23:11:07", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51135", "10", "2017-03-15 23:11:08", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51136", "3", "2017-03-16 00:21:19", "51.255.65.37", "4");
INSERT INTO `wp_rg_form_view` VALUES("51137", "15", "2017-03-16 00:21:21", "51.255.65.37", "5");
INSERT INTO `wp_rg_form_view` VALUES("51138", "10", "2017-03-16 00:21:21", "51.255.65.37", "4");
INSERT INTO `wp_rg_form_view` VALUES("51139", "6", "2017-03-16 01:00:59", "202.46.49.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("51140", "3", "2017-03-16 01:01:00", "202.46.49.198", "5");
INSERT INTO `wp_rg_form_view` VALUES("51141", "15", "2017-03-16 01:01:00", "202.46.49.198", "5");
INSERT INTO `wp_rg_form_view` VALUES("51142", "10", "2017-03-16 01:01:00", "202.46.49.198", "5");
INSERT INTO `wp_rg_form_view` VALUES("51143", "3", "2017-03-16 02:07:41", "202.46.57.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("51144", "15", "2017-03-16 02:07:42", "202.46.57.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("51145", "10", "2017-03-16 02:07:42", "202.46.57.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("51146", "14", "2017-03-16 03:32:19", "157.55.39.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("51147", "3", "2017-03-16 03:32:25", "157.55.39.73", "4");
INSERT INTO `wp_rg_form_view` VALUES("51148", "15", "2017-03-16 03:32:25", "157.55.39.73", "4");
INSERT INTO `wp_rg_form_view` VALUES("51149", "10", "2017-03-16 03:32:25", "157.55.39.73", "4");
INSERT INTO `wp_rg_form_view` VALUES("51150", "3", "2017-03-16 04:20:58", "77.75.78.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("51151", "15", "2017-03-16 04:20:58", "77.75.78.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("51152", "10", "2017-03-16 04:20:58", "77.75.78.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("51153", "14", "2017-03-16 04:54:20", "202.46.54.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("51154", "3", "2017-03-16 05:07:30", "77.75.76.166", "9");
INSERT INTO `wp_rg_form_view` VALUES("51155", "15", "2017-03-16 05:27:39", "202.46.52.118", "5");
INSERT INTO `wp_rg_form_view` VALUES("51156", "10", "2017-03-16 05:27:40", "202.46.52.118", "5");
INSERT INTO `wp_rg_form_view` VALUES("51157", "3", "2017-03-16 06:02:03", "77.75.78.167", "5");
INSERT INTO `wp_rg_form_view` VALUES("51158", "15", "2017-03-16 06:02:03", "77.75.78.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("51159", "10", "2017-03-16 06:02:03", "77.75.78.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("51160", "14", "2017-03-16 06:22:25", "184.66.145.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("51161", "10", "2017-03-16 07:57:03", "77.75.79.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("51162", "3", "2017-03-16 07:57:05", "77.75.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("51163", "15", "2017-03-16 07:57:05", "77.75.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("51164", "3", "2017-03-16 08:02:45", "68.180.229.247", "28");
INSERT INTO `wp_rg_form_view` VALUES("51165", "15", "2017-03-16 08:02:45", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51166", "10", "2017-03-16 08:02:45", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("51167", "6", "2017-03-16 08:17:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51168", "9", "2017-03-16 08:17:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51169", "8", "2017-03-16 08:17:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51170", "13", "2017-03-16 08:17:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51171", "15", "2017-03-16 10:41:28", "185.26.92.76", "11");
INSERT INTO `wp_rg_form_view` VALUES("51172", "3", "2017-03-16 10:41:31", "185.26.92.76", "13");
INSERT INTO `wp_rg_form_view` VALUES("51173", "10", "2017-03-16 10:41:31", "185.26.92.76", "15");
INSERT INTO `wp_rg_form_view` VALUES("51174", "3", "2017-03-16 11:20:36", "66.249.79.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("51175", "15", "2017-03-16 11:20:36", "66.249.79.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("51176", "10", "2017-03-16 11:20:36", "66.249.79.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("51177", "11", "2017-03-16 11:36:59", "185.26.92.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51178", "2", "2017-03-16 11:37:15", "185.26.92.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51179", "14", "2017-03-16 11:38:50", "185.26.92.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51180", "3", "2017-03-16 12:38:25", "185.26.92.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51181", "15", "2017-03-16 12:38:26", "185.26.92.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51182", "10", "2017-03-16 12:38:26", "185.26.92.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51183", "3", "2017-03-16 14:29:15", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("51184", "6", "2017-03-16 14:29:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51185", "9", "2017-03-16 14:29:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51186", "8", "2017-03-16 14:29:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51187", "10", "2017-03-16 14:29:17", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("51188", "13", "2017-03-16 14:29:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51189", "15", "2017-03-16 14:29:18", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("51190", "3", "2017-03-16 15:52:26", "51.255.65.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51191", "15", "2017-03-16 15:52:27", "51.255.65.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("51192", "10", "2017-03-16 15:52:27", "51.255.65.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("51193", "3", "2017-03-16 16:06:13", "24.68.248.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("51194", "15", "2017-03-16 16:06:13", "24.68.248.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("51195", "10", "2017-03-16 16:06:13", "24.68.248.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("51196", "9", "2017-03-16 17:47:09", "202.46.49.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("51197", "3", "2017-03-16 17:47:12", "202.46.49.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("51198", "15", "2017-03-16 17:47:12", "202.46.49.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("51199", "10", "2017-03-16 17:47:12", "202.46.49.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("51200", "10", "2017-03-16 18:05:37", "205.201.132.14", "7");
INSERT INTO `wp_rg_form_view` VALUES("51201", "3", "2017-03-16 18:05:37", "205.201.132.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("51202", "15", "2017-03-16 18:05:37", "205.201.132.14", "5");
INSERT INTO `wp_rg_form_view` VALUES("51203", "10", "2017-03-16 19:10:22", "163.172.66.96", "11");
INSERT INTO `wp_rg_form_view` VALUES("51204", "3", "2017-03-16 19:10:23", "163.172.66.96", "11");
INSERT INTO `wp_rg_form_view` VALUES("51205", "15", "2017-03-16 19:10:23", "163.172.66.96", "10");
INSERT INTO `wp_rg_form_view` VALUES("51206", "14", "2017-03-16 19:14:58", "64.34.217.4", "5");
INSERT INTO `wp_rg_form_view` VALUES("51207", "3", "2017-03-16 20:06:20", "24.69.27.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("51208", "15", "2017-03-16 20:06:20", "24.69.27.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("51209", "10", "2017-03-16 20:06:20", "24.69.27.66", "5");
INSERT INTO `wp_rg_form_view` VALUES("51210", "10", "2017-03-16 21:21:34", "164.132.161.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("51211", "3", "2017-03-16 21:42:17", "64.114.197.211", "4");
INSERT INTO `wp_rg_form_view` VALUES("51212", "15", "2017-03-16 21:42:18", "64.114.197.211", "3");
INSERT INTO `wp_rg_form_view` VALUES("51213", "3", "2017-03-16 22:07:38", "95.211.196.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("51214", "15", "2017-03-16 22:07:38", "95.211.196.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("51215", "10", "2017-03-16 22:07:38", "95.211.196.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("51216", "3", "2017-03-16 23:57:05", "163.172.65.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("51217", "15", "2017-03-16 23:57:06", "163.172.65.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("51218", "10", "2017-03-16 23:57:06", "163.172.65.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("51219", "3", "2017-03-17 00:27:54", "202.46.56.71", "28");
INSERT INTO `wp_rg_form_view` VALUES("51220", "15", "2017-03-17 00:27:54", "202.46.56.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("51221", "10", "2017-03-17 00:27:54", "202.46.56.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("51222", "6", "2017-03-17 00:45:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51223", "9", "2017-03-17 00:45:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51224", "8", "2017-03-17 00:45:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51225", "13", "2017-03-17 00:45:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51226", "3", "2017-03-17 01:00:25", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51227", "15", "2017-03-17 01:00:25", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51228", "10", "2017-03-17 01:00:25", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51229", "3", "2017-03-17 02:09:55", "185.9.233.4", "112");
INSERT INTO `wp_rg_form_view` VALUES("51230", "15", "2017-03-17 02:09:57", "185.9.233.4", "77");
INSERT INTO `wp_rg_form_view` VALUES("51231", "10", "2017-03-17 02:09:57", "185.9.233.4", "89");
INSERT INTO `wp_rg_form_view` VALUES("51232", "9", "2017-03-17 02:11:12", "157.55.39.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("51233", "13", "2017-03-17 02:12:50", "40.77.167.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("51234", "8", "2017-03-17 02:13:29", "40.77.167.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("51235", "14", "2017-03-17 03:14:00", "146.0.74.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("51236", "3", "2017-03-17 03:14:15", "146.0.74.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("51237", "15", "2017-03-17 03:14:16", "146.0.74.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("51238", "10", "2017-03-17 03:14:16", "146.0.74.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("51239", "3", "2017-03-17 04:34:32", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51240", "15", "2017-03-17 04:34:33", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51241", "10", "2017-03-17 04:34:33", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51242", "3", "2017-03-17 05:45:55", "202.46.48.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("51243", "15", "2017-03-17 05:45:56", "202.46.48.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("51244", "10", "2017-03-17 05:45:57", "202.46.48.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("51245", "3", "2017-03-17 06:33:14", "66.249.79.48", "31");
INSERT INTO `wp_rg_form_view` VALUES("51246", "15", "2017-03-17 06:33:18", "66.249.79.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("51247", "10", "2017-03-17 06:33:18", "66.249.79.48", "9");
INSERT INTO `wp_rg_form_view` VALUES("51248", "6", "2017-03-17 06:48:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51249", "9", "2017-03-17 06:48:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51250", "8", "2017-03-17 06:48:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51251", "13", "2017-03-17 06:48:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51252", "10", "2017-03-17 07:02:58", "24.68.137.19", "4");
INSERT INTO `wp_rg_form_view` VALUES("51253", "3", "2017-03-17 07:02:58", "24.68.137.19", "3");
INSERT INTO `wp_rg_form_view` VALUES("51254", "15", "2017-03-17 07:02:58", "24.68.137.19", "4");
INSERT INTO `wp_rg_form_view` VALUES("51255", "14", "2017-03-17 07:34:24", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51256", "3", "2017-03-17 08:01:52", "202.46.48.204", "23");
INSERT INTO `wp_rg_form_view` VALUES("51257", "15", "2017-03-17 08:01:52", "202.46.48.204", "13");
INSERT INTO `wp_rg_form_view` VALUES("51258", "10", "2017-03-17 08:01:52", "202.46.48.204", "13");
INSERT INTO `wp_rg_form_view` VALUES("51259", "3", "2017-03-17 09:41:48", "202.46.57.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("51260", "15", "2017-03-17 09:41:48", "202.46.57.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("51261", "10", "2017-03-17 09:41:48", "202.46.57.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("51262", "3", "2017-03-17 10:15:06", "202.46.54.72", "20");
INSERT INTO `wp_rg_form_view` VALUES("51263", "15", "2017-03-17 10:15:07", "202.46.54.72", "13");
INSERT INTO `wp_rg_form_view` VALUES("51264", "10", "2017-03-17 10:15:07", "202.46.54.72", "13");
INSERT INTO `wp_rg_form_view` VALUES("51265", "11", "2017-03-17 10:16:23", "145.132.56.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("51266", "2", "2017-03-17 10:17:13", "145.132.56.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("51267", "14", "2017-03-17 10:48:27", "202.46.50.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("51268", "3", "2017-03-17 12:11:09", "157.55.39.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("51269", "15", "2017-03-17 12:11:11", "157.55.39.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51270", "10", "2017-03-17 12:11:11", "157.55.39.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51271", "3", "2017-03-17 13:20:33", "202.46.49.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("51272", "15", "2017-03-17 13:20:36", "202.46.49.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("51273", "10", "2017-03-17 13:20:36", "202.46.49.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("51274", "3", "2017-03-17 14:30:09", "70.66.183.0", "3");
INSERT INTO `wp_rg_form_view` VALUES("51275", "15", "2017-03-17 14:30:10", "70.66.183.0", "2");
INSERT INTO `wp_rg_form_view` VALUES("51276", "10", "2017-03-17 14:30:10", "70.66.183.0", "2");
INSERT INTO `wp_rg_form_view` VALUES("51277", "3", "2017-03-17 15:10:43", "66.249.79.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("51278", "15", "2017-03-17 15:10:43", "66.249.79.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("51279", "10", "2017-03-17 15:10:43", "66.249.79.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("51280", "3", "2017-03-17 16:12:20", "163.172.65.11", "34");
INSERT INTO `wp_rg_form_view` VALUES("51281", "15", "2017-03-17 16:12:27", "163.172.65.11", "9");
INSERT INTO `wp_rg_form_view` VALUES("51282", "10", "2017-03-17 16:12:27", "163.172.65.11", "11");
INSERT INTO `wp_rg_form_view` VALUES("51283", "14", "2017-03-17 16:46:38", "216.232.155.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("51284", "6", "2017-03-17 16:52:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51285", "9", "2017-03-17 16:52:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51286", "8", "2017-03-17 16:52:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51287", "13", "2017-03-17 16:52:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51288", "3", "2017-03-17 17:03:29", "207.194.133.9", "10");
INSERT INTO `wp_rg_form_view` VALUES("51289", "15", "2017-03-17 17:03:29", "207.194.133.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("51290", "10", "2017-03-17 17:03:29", "207.194.133.9", "10");
INSERT INTO `wp_rg_form_view` VALUES("51291", "3", "2017-03-17 18:01:20", "151.80.31.150", "7");
INSERT INTO `wp_rg_form_view` VALUES("51292", "15", "2017-03-17 18:05:05", "202.46.49.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("51293", "10", "2017-03-17 18:05:05", "202.46.49.116", "5");
INSERT INTO `wp_rg_form_view` VALUES("51294", "3", "2017-03-17 19:11:43", "202.46.56.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("51295", "15", "2017-03-17 19:11:43", "202.46.56.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("51296", "10", "2017-03-17 19:11:43", "202.46.56.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("51297", "15", "2017-03-17 20:01:02", "151.80.31.154", "3");
INSERT INTO `wp_rg_form_view` VALUES("51298", "3", "2017-03-17 20:18:23", "202.46.51.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("51299", "10", "2017-03-17 20:18:24", "202.46.51.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("51300", "14", "2017-03-17 20:28:19", "104.140.4.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("51301", "3", "2017-03-17 21:25:06", "202.46.53.47", "10");
INSERT INTO `wp_rg_form_view` VALUES("51302", "15", "2017-03-17 21:25:10", "202.46.53.47", "2");
INSERT INTO `wp_rg_form_view` VALUES("51303", "10", "2017-03-17 21:25:10", "202.46.53.47", "2");
INSERT INTO `wp_rg_form_view` VALUES("51304", "3", "2017-03-17 22:20:57", "207.194.133.9", "30");
INSERT INTO `wp_rg_form_view` VALUES("51305", "15", "2017-03-17 22:21:01", "207.194.133.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("51306", "10", "2017-03-17 22:21:01", "207.194.133.9", "9");
INSERT INTO `wp_rg_form_view` VALUES("51307", "6", "2017-03-17 22:57:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51308", "9", "2017-03-17 22:57:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51309", "8", "2017-03-17 22:57:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51310", "13", "2017-03-17 22:57:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51311", "15", "2017-03-17 23:19:18", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("51312", "3", "2017-03-17 23:27:52", "207.46.13.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("51313", "10", "2017-03-17 23:27:52", "207.46.13.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("51314", "3", "2017-03-18 00:30:02", "24.108.4.141", "3");
INSERT INTO `wp_rg_form_view` VALUES("51315", "15", "2017-03-18 00:30:02", "24.108.4.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("51316", "10", "2017-03-18 00:30:02", "24.108.4.141", "3");
INSERT INTO `wp_rg_form_view` VALUES("51317", "3", "2017-03-18 01:27:13", "202.46.53.150", "4");
INSERT INTO `wp_rg_form_view` VALUES("51318", "15", "2017-03-18 01:27:13", "202.46.53.150", "3");
INSERT INTO `wp_rg_form_view` VALUES("51319", "10", "2017-03-18 01:27:13", "202.46.53.150", "3");
INSERT INTO `wp_rg_form_view` VALUES("51320", "15", "2017-03-18 02:27:40", "154.20.88.212", "7");
INSERT INTO `wp_rg_form_view` VALUES("51321", "3", "2017-03-18 02:27:41", "154.20.88.212", "6");
INSERT INTO `wp_rg_form_view` VALUES("51322", "10", "2017-03-18 02:27:41", "154.20.88.212", "5");
INSERT INTO `wp_rg_form_view` VALUES("51323", "3", "2017-03-18 03:43:46", "164.132.161.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("51324", "15", "2017-03-18 03:52:44", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51325", "10", "2017-03-18 03:52:44", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51326", "3", "2017-03-18 04:09:32", "163.172.66.5", "19");
INSERT INTO `wp_rg_form_view` VALUES("51327", "15", "2017-03-18 04:09:32", "163.172.66.5", "11");
INSERT INTO `wp_rg_form_view` VALUES("51328", "10", "2017-03-18 04:09:33", "163.172.66.5", "11");
INSERT INTO `wp_rg_form_view` VALUES("51329", "3", "2017-03-18 05:40:15", "77.75.78.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("51330", "15", "2017-03-18 05:40:17", "77.75.78.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("51331", "10", "2017-03-18 05:40:17", "77.75.78.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("51332", "3", "2017-03-18 06:30:42", "202.46.55.150", "2");
INSERT INTO `wp_rg_form_view` VALUES("51333", "15", "2017-03-18 06:30:44", "202.46.55.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("51334", "10", "2017-03-18 06:30:44", "202.46.55.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("51335", "3", "2017-03-18 07:04:01", "202.46.48.125", "3");
INSERT INTO `wp_rg_form_view` VALUES("51336", "15", "2017-03-18 07:04:03", "202.46.48.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("51337", "10", "2017-03-18 07:04:03", "202.46.48.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("51338", "5", "2017-03-18 08:04:07", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("51339", "3", "2017-03-18 08:04:08", "77.75.76.162", "26");
INSERT INTO `wp_rg_form_view` VALUES("51340", "15", "2017-03-18 08:04:09", "77.75.76.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("51341", "10", "2017-03-18 08:04:10", "77.75.76.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("51342", "6", "2017-03-18 08:23:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51343", "9", "2017-03-18 08:23:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51344", "8", "2017-03-18 08:23:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51345", "13", "2017-03-18 08:23:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51346", "3", "2017-03-18 09:06:30", "77.75.76.168", "28");
INSERT INTO `wp_rg_form_view` VALUES("51347", "15", "2017-03-18 09:06:30", "77.75.76.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("51348", "10", "2017-03-18 09:06:30", "77.75.76.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("51349", "6", "2017-03-18 09:41:14", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51350", "9", "2017-03-18 09:41:15", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51351", "8", "2017-03-18 09:41:15", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51352", "13", "2017-03-18 09:41:16", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51353", "14", "2017-03-18 10:18:08", "104.247.7.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("51354", "3", "2017-03-18 10:18:09", "104.247.7.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("51355", "15", "2017-03-18 10:18:09", "104.247.7.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("51356", "10", "2017-03-18 10:18:09", "104.247.7.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("51357", "3", "2017-03-18 11:04:29", "77.75.77.62", "4");
INSERT INTO `wp_rg_form_view` VALUES("51358", "15", "2017-03-18 11:04:31", "77.75.77.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("51359", "10", "2017-03-18 11:04:31", "77.75.77.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("51360", "2", "2017-03-18 11:39:40", "46.119.124.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("51361", "10", "2017-03-18 12:51:50", "157.55.39.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("51362", "3", "2017-03-18 12:51:50", "157.55.39.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("51363", "15", "2017-03-18 12:51:50", "157.55.39.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("51364", "3", "2017-03-18 13:02:09", "77.75.78.162", "27");
INSERT INTO `wp_rg_form_view` VALUES("51365", "15", "2017-03-18 13:02:09", "77.75.78.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("51366", "10", "2017-03-18 13:02:09", "77.75.78.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("51367", "9", "2017-03-18 13:33:23", "163.172.66.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("51368", "6", "2017-03-18 13:52:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51369", "8", "2017-03-18 13:52:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51370", "13", "2017-03-18 13:52:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51371", "3", "2017-03-18 14:14:14", "202.46.54.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("51372", "15", "2017-03-18 14:14:14", "202.46.54.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("51373", "10", "2017-03-18 14:14:14", "202.46.54.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("51374", "3", "2017-03-18 15:20:55", "202.46.57.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("51375", "15", "2017-03-18 15:20:58", "202.46.57.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("51376", "10", "2017-03-18 15:20:58", "202.46.57.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("51377", "11", "2017-03-18 16:27:34", "202.46.48.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("51378", "10", "2017-03-18 16:48:46", "163.172.66.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("51379", "15", "2017-03-18 17:04:34", "24.69.173.128", "6");
INSERT INTO `wp_rg_form_view` VALUES("51380", "3", "2017-03-18 17:04:35", "24.69.173.128", "24");
INSERT INTO `wp_rg_form_view` VALUES("51381", "10", "2017-03-18 17:04:35", "24.69.173.128", "7");
INSERT INTO `wp_rg_form_view` VALUES("51382", "8", "2017-03-18 17:09:09", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51383", "13", "2017-03-18 17:09:09", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51384", "3", "2017-03-18 18:07:35", "202.46.53.160", "7");
INSERT INTO `wp_rg_form_view` VALUES("51385", "15", "2017-03-18 18:07:35", "202.46.53.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("51386", "10", "2017-03-18 18:07:35", "202.46.53.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("51387", "2", "2017-03-18 18:18:21", "104.192.6.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("51388", "12", "2017-03-18 18:40:53", "202.46.58.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("51389", "3", "2017-03-18 19:31:07", "163.172.66.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("51390", "15", "2017-03-18 19:31:11", "163.172.66.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("51391", "10", "2017-03-18 19:31:11", "163.172.66.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("51392", "3", "2017-03-18 20:54:15", "202.46.55.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("51393", "15", "2017-03-18 20:54:17", "202.46.55.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("51394", "10", "2017-03-18 20:54:18", "202.46.55.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("51395", "15", "2017-03-18 22:00:56", "202.46.55.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51396", "10", "2017-03-18 22:01:00", "202.46.55.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51397", "15", "2017-03-18 23:07:34", "202.46.56.117", "10");
INSERT INTO `wp_rg_form_view` VALUES("51398", "10", "2017-03-18 23:07:37", "202.46.56.117", "13");
INSERT INTO `wp_rg_form_view` VALUES("51399", "3", "2017-03-18 23:25:13", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("51400", "6", "2017-03-18 23:25:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51401", "9", "2017-03-18 23:25:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51402", "8", "2017-03-18 23:25:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51403", "13", "2017-03-18 23:25:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51404", "15", "2017-03-19 00:14:13", "202.46.48.120", "4");
INSERT INTO `wp_rg_form_view` VALUES("51405", "10", "2017-03-19 00:14:13", "202.46.48.120", "4");
INSERT INTO `wp_rg_form_view` VALUES("51406", "15", "2017-03-19 01:20:56", "202.46.52.205", "2");
INSERT INTO `wp_rg_form_view` VALUES("51407", "10", "2017-03-19 01:20:57", "202.46.52.205", "2");
INSERT INTO `wp_rg_form_view` VALUES("51408", "3", "2017-03-19 01:24:13", "163.172.65.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("51409", "3", "2017-03-19 03:08:18", "66.249.79.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("51410", "15", "2017-03-19 03:08:21", "66.249.79.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("51411", "10", "2017-03-19 03:08:22", "66.249.79.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("51412", "15", "2017-03-19 04:27:51", "173.180.73.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("51413", "10", "2017-03-19 04:27:52", "173.180.73.58", "4");
INSERT INTO `wp_rg_form_view` VALUES("51414", "3", "2017-03-19 04:28:26", "173.180.73.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("51415", "3", "2017-03-19 05:06:28", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("51416", "6", "2017-03-19 05:06:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51417", "9", "2017-03-19 05:06:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51418", "8", "2017-03-19 05:06:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51419", "10", "2017-03-19 05:06:29", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("51420", "13", "2017-03-19 05:06:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51421", "15", "2017-03-19 05:06:30", "52.88.109.3", "11");
INSERT INTO `wp_rg_form_view` VALUES("51422", "14", "2017-03-19 05:45:56", "184.66.145.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("51423", "15", "2017-03-19 06:02:53", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("51424", "10", "2017-03-19 06:02:54", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("51425", "3", "2017-03-19 06:34:36", "202.46.52.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("51426", "15", "2017-03-19 07:00:22", "50.93.112.167", "17");
INSERT INTO `wp_rg_form_view` VALUES("51427", "10", "2017-03-19 07:00:23", "50.93.112.167", "19");
INSERT INTO `wp_rg_form_view` VALUES("51428", "3", "2017-03-19 07:03:49", "157.55.39.105", "11");
INSERT INTO `wp_rg_form_view` VALUES("51429", "3", "2017-03-19 08:04:05", "157.55.39.25", "27");
INSERT INTO `wp_rg_form_view` VALUES("51430", "15", "2017-03-19 08:04:08", "157.55.39.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("51431", "10", "2017-03-19 08:04:08", "157.55.39.25", "5");
INSERT INTO `wp_rg_form_view` VALUES("51432", "6", "2017-03-19 08:30:52", "163.172.66.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("51433", "9", "2017-03-19 08:30:53", "163.172.66.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("51434", "8", "2017-03-19 08:30:53", "163.172.66.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("51435", "13", "2017-03-19 08:30:53", "163.172.66.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("51436", "15", "2017-03-19 09:15:44", "163.172.66.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("51437", "10", "2017-03-19 09:15:45", "163.172.66.20", "3");
INSERT INTO `wp_rg_form_view` VALUES("51438", "15", "2017-03-19 11:01:20", "157.55.39.55", "7");
INSERT INTO `wp_rg_form_view` VALUES("51439", "10", "2017-03-19 11:01:21", "157.55.39.55", "9");
INSERT INTO `wp_rg_form_view` VALUES("51440", "3", "2017-03-19 11:28:23", "157.55.39.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("51441", "6", "2017-03-19 11:52:13", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("51442", "3", "2017-03-19 12:23:24", "51.255.65.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("51443", "9", "2017-03-19 12:33:49", "40.77.167.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("51444", "15", "2017-03-19 12:33:50", "40.77.167.129", "3");
INSERT INTO `wp_rg_form_view` VALUES("51445", "10", "2017-03-19 12:33:50", "40.77.167.129", "4");
INSERT INTO `wp_rg_form_view` VALUES("51446", "15", "2017-03-19 13:04:38", "66.249.79.48", "9");
INSERT INTO `wp_rg_form_view` VALUES("51447", "10", "2017-03-19 13:04:39", "66.249.79.48", "9");
INSERT INTO `wp_rg_form_view` VALUES("51448", "3", "2017-03-19 13:07:45", "207.46.13.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("51449", "3", "2017-03-19 14:35:11", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("51450", "6", "2017-03-19 14:35:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51451", "9", "2017-03-19 14:35:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51452", "8", "2017-03-19 14:35:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51453", "10", "2017-03-19 14:35:14", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("51454", "13", "2017-03-19 14:35:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51455", "15", "2017-03-19 14:35:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("51456", "3", "2017-03-19 16:21:09", "51.255.65.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("51457", "15", "2017-03-19 16:25:53", "202.46.49.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("51458", "10", "2017-03-19 16:25:53", "202.46.49.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("51459", "3", "2017-03-19 17:32:34", "202.46.56.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("51460", "15", "2017-03-19 17:32:36", "202.46.56.92", "4");
INSERT INTO `wp_rg_form_view` VALUES("51461", "10", "2017-03-19 17:32:36", "202.46.56.92", "5");
INSERT INTO `wp_rg_form_view` VALUES("51462", "15", "2017-03-19 18:20:55", "164.132.161.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("51463", "10", "2017-03-19 18:20:56", "164.132.161.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("51464", "3", "2017-03-19 18:28:45", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51465", "3", "2017-03-19 20:07:33", "173.212.216.186", "42");
INSERT INTO `wp_rg_form_view` VALUES("51466", "15", "2017-03-19 20:17:08", "68.180.229.247", "24");
INSERT INTO `wp_rg_form_view` VALUES("51467", "10", "2017-03-19 20:17:09", "68.180.229.247", "25");
INSERT INTO `wp_rg_form_view` VALUES("51468", "11", "2017-03-19 20:20:56", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("51469", "2", "2017-03-19 20:22:20", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("51470", "6", "2017-03-19 20:25:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51471", "9", "2017-03-19 20:25:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51472", "8", "2017-03-19 20:25:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51473", "13", "2017-03-19 20:25:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51474", "14", "2017-03-19 21:45:56", "134.87.170.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("51475", "15", "2017-03-19 21:45:58", "134.87.170.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("51476", "10", "2017-03-19 21:45:58", "134.87.170.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("51477", "15", "2017-03-19 22:08:19", "202.46.55.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("51478", "10", "2017-03-19 22:08:19", "202.46.55.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("51479", "3", "2017-03-19 23:15:00", "202.46.51.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("51480", "15", "2017-03-19 23:15:00", "202.46.51.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("51481", "10", "2017-03-19 23:15:00", "202.46.51.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("51482", "3", "2017-03-20 00:21:40", "202.46.49.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("51483", "15", "2017-03-20 00:21:41", "202.46.49.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("51484", "10", "2017-03-20 00:21:41", "202.46.49.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("51485", "15", "2017-03-20 01:28:21", "202.46.50.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("51486", "10", "2017-03-20 01:28:21", "202.46.50.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("51487", "15", "2017-03-20 02:06:44", "157.55.39.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("51488", "10", "2017-03-20 02:06:46", "157.55.39.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("51489", "15", "2017-03-20 03:08:22", "202.46.54.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("51490", "10", "2017-03-20 03:08:24", "202.46.54.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("51491", "5", "2017-03-20 03:28:53", "157.55.39.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("51492", "15", "2017-03-20 04:18:28", "157.55.39.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("51493", "10", "2017-03-20 04:18:28", "157.55.39.108", "3");
INSERT INTO `wp_rg_form_view` VALUES("51494", "3", "2017-03-20 05:52:03", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("51495", "6", "2017-03-20 05:52:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51496", "9", "2017-03-20 05:52:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51497", "8", "2017-03-20 05:52:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51498", "10", "2017-03-20 05:52:06", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("51499", "13", "2017-03-20 05:52:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51500", "15", "2017-03-20 05:52:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51501", "15", "2017-03-20 06:06:29", "40.77.167.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("51502", "10", "2017-03-20 06:06:30", "40.77.167.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("51503", "15", "2017-03-20 07:18:23", "136.243.152.18", "17");
INSERT INTO `wp_rg_form_view` VALUES("51504", "10", "2017-03-20 07:18:26", "136.243.152.18", "16");
INSERT INTO `wp_rg_form_view` VALUES("51505", "5", "2017-03-20 07:18:49", "136.243.152.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("51506", "3", "2017-03-20 07:30:17", "82.165.75.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("51507", "11", "2017-03-20 07:30:24", "82.165.75.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51508", "2", "2017-03-20 07:31:17", "82.165.75.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("51509", "6", "2017-03-20 07:55:09", "164.132.161.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("51510", "15", "2017-03-20 08:14:11", "66.249.79.40", "5");
INSERT INTO `wp_rg_form_view` VALUES("51511", "10", "2017-03-20 08:14:12", "66.249.79.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("51512", "3", "2017-03-20 08:24:18", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51513", "9", "2017-03-20 08:55:01", "157.55.39.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("51514", "15", "2017-03-20 09:07:57", "163.172.66.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("51515", "10", "2017-03-20 09:07:58", "163.172.66.104", "9");
INSERT INTO `wp_rg_form_view` VALUES("51516", "3", "2017-03-20 09:24:48", "68.180.229.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("51517", "13", "2017-03-20 09:43:01", "66.249.79.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("51518", "15", "2017-03-20 11:19:42", "202.46.54.21", "4");
INSERT INTO `wp_rg_form_view` VALUES("51519", "10", "2017-03-20 11:19:48", "202.46.54.21", "6");
INSERT INTO `wp_rg_form_view` VALUES("51520", "3", "2017-03-20 11:55:27", "40.77.167.50", "26");
INSERT INTO `wp_rg_form_view` VALUES("51521", "6", "2017-03-20 11:58:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51522", "9", "2017-03-20 11:58:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51523", "8", "2017-03-20 11:58:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51524", "13", "2017-03-20 11:58:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51525", "15", "2017-03-20 12:26:09", "202.46.55.64", "3");
INSERT INTO `wp_rg_form_view` VALUES("51526", "10", "2017-03-20 12:26:10", "202.46.55.64", "3");
INSERT INTO `wp_rg_form_view` VALUES("51527", "3", "2017-03-20 12:58:46", "164.132.161.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("51528", "15", "2017-03-20 14:28:25", "40.77.167.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("51529", "10", "2017-03-20 14:28:29", "40.77.167.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("51530", "3", "2017-03-20 15:57:58", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51531", "15", "2017-03-20 15:58:00", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51532", "10", "2017-03-20 15:58:00", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51533", "3", "2017-03-20 16:19:47", "40.77.167.57", "25");
INSERT INTO `wp_rg_form_view` VALUES("51534", "6", "2017-03-20 16:19:48", "40.77.167.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("51535", "9", "2017-03-20 16:19:49", "40.77.167.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("51536", "8", "2017-03-20 16:19:49", "40.77.167.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("51537", "10", "2017-03-20 16:19:49", "40.77.167.57", "4");
INSERT INTO `wp_rg_form_view` VALUES("51538", "13", "2017-03-20 16:19:50", "40.77.167.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("51539", "15", "2017-03-20 16:19:50", "40.77.167.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("51540", "14", "2017-03-20 16:45:47", "184.66.145.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("51541", "15", "2017-03-20 17:13:48", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51542", "10", "2017-03-20 17:13:49", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51543", "15", "2017-03-20 18:10:08", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("51544", "10", "2017-03-20 18:10:21", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("51545", "15", "2017-03-20 19:05:24", "202.46.50.184", "2");
INSERT INTO `wp_rg_form_view` VALUES("51546", "10", "2017-03-20 19:05:33", "202.46.50.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("51547", "3", "2017-03-20 19:40:34", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51548", "15", "2017-03-20 20:12:06", "202.46.48.208", "3");
INSERT INTO `wp_rg_form_view` VALUES("51549", "10", "2017-03-20 20:12:07", "202.46.48.208", "4");
INSERT INTO `wp_rg_form_view` VALUES("51550", "3", "2017-03-20 20:50:51", "40.77.167.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("51551", "3", "2017-03-20 21:15:21", "66.249.79.44", "26");
INSERT INTO `wp_rg_form_view` VALUES("51552", "15", "2017-03-20 21:15:22", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("51553", "10", "2017-03-20 21:15:22", "66.249.79.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("51554", "6", "2017-03-20 21:58:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51555", "9", "2017-03-20 21:58:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51556", "8", "2017-03-20 21:58:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51557", "13", "2017-03-20 21:58:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51558", "7", "2017-03-20 22:29:42", "202.46.58.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("51559", "15", "2017-03-20 22:29:44", "202.46.58.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("51560", "10", "2017-03-20 22:29:44", "202.46.58.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("51561", "15", "2017-03-20 23:24:56", "157.55.39.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("51562", "10", "2017-03-20 23:24:57", "157.55.39.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("51563", "3", "2017-03-20 23:26:37", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51564", "15", "2017-03-21 00:09:40", "202.46.55.153", "4");
INSERT INTO `wp_rg_form_view` VALUES("51565", "10", "2017-03-21 00:09:42", "202.46.55.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("51566", "3", "2017-03-21 00:43:01", "202.46.54.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("51567", "3", "2017-03-21 01:30:46", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("51568", "15", "2017-03-21 02:24:49", "104.236.221.54", "232");
INSERT INTO `wp_rg_form_view` VALUES("51569", "10", "2017-03-21 02:24:51", "104.236.221.54", "200");
INSERT INTO `wp_rg_form_view` VALUES("51570", "14", "2017-03-21 02:28:00", "104.236.221.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("51571", "11", "2017-03-21 02:28:05", "104.236.221.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("51572", "3", "2017-03-21 02:31:05", "104.236.221.54", "6");
INSERT INTO `wp_rg_form_view` VALUES("51573", "6", "2017-03-21 02:37:44", "104.236.221.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("51574", "9", "2017-03-21 02:46:44", "104.236.221.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("51575", "10", "2017-03-21 03:00:00", "104.236.221.54", "304");
INSERT INTO `wp_rg_form_view` VALUES("51576", "15", "2017-03-21 03:00:05", "104.236.221.54", "314");
INSERT INTO `wp_rg_form_view` VALUES("51577", "3", "2017-03-21 03:01:01", "104.236.221.54", "42");
INSERT INTO `wp_rg_form_view` VALUES("51578", "2", "2017-03-21 03:34:20", "104.236.221.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("51579", "13", "2017-03-21 03:47:05", "104.236.221.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("51580", "6", "2017-03-21 03:59:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51581", "9", "2017-03-21 03:59:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51582", "8", "2017-03-21 03:59:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51583", "10", "2017-03-21 04:15:08", "136.243.36.94", "48");
INSERT INTO `wp_rg_form_view` VALUES("51584", "15", "2017-03-21 04:15:09", "136.243.36.94", "39");
INSERT INTO `wp_rg_form_view` VALUES("51585", "11", "2017-03-21 04:15:47", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("51586", "2", "2017-03-21 04:16:26", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("51587", "3", "2017-03-21 04:19:06", "136.243.36.94", "90");
INSERT INTO `wp_rg_form_view` VALUES("51588", "6", "2017-03-21 04:21:15", "136.243.36.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("51589", "9", "2017-03-21 04:21:16", "136.243.36.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("51590", "8", "2017-03-21 04:21:16", "136.243.36.94", "3");
INSERT INTO `wp_rg_form_view` VALUES("51591", "13", "2017-03-21 04:21:17", "136.243.36.94", "5");
INSERT INTO `wp_rg_form_view` VALUES("51592", "14", "2017-03-21 04:22:00", "136.243.36.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("51593", "15", "2017-03-21 05:06:03", "96.50.98.209", "4");
INSERT INTO `wp_rg_form_view` VALUES("51594", "10", "2017-03-21 05:06:05", "96.50.98.209", "4");
INSERT INTO `wp_rg_form_view` VALUES("51595", "3", "2017-03-21 05:58:36", "122.57.208.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("51596", "3", "2017-03-21 05:58:36", "122.57.208.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("51597", "11", "2017-03-21 06:37:07", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("51598", "15", "2017-03-21 06:37:51", "66.249.79.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("51599", "10", "2017-03-21 06:37:51", "66.249.79.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("51600", "15", "2017-03-21 07:04:20", "66.249.79.48", "68");
INSERT INTO `wp_rg_form_view` VALUES("51601", "10", "2017-03-21 07:04:20", "66.249.79.48", "79");
INSERT INTO `wp_rg_form_view` VALUES("51602", "3", "2017-03-21 07:27:17", "202.46.54.90", "30");
INSERT INTO `wp_rg_form_view` VALUES("51603", "9", "2017-03-21 07:37:51", "157.55.39.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("51604", "8", "2017-03-21 07:39:12", "207.46.13.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("51605", "3", "2017-03-21 08:00:39", "202.46.48.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("51606", "15", "2017-03-21 08:00:40", "202.46.48.82", "3");
INSERT INTO `wp_rg_form_view` VALUES("51607", "10", "2017-03-21 08:00:41", "202.46.48.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("51608", "15", "2017-03-21 09:27:24", "207.46.13.87", "17");
INSERT INTO `wp_rg_form_view` VALUES("51609", "10", "2017-03-21 09:27:33", "207.46.13.87", "15");
INSERT INTO `wp_rg_form_view` VALUES("51610", "3", "2017-03-21 09:33:05", "116.252.148.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("51611", "15", "2017-03-21 10:07:48", "157.55.39.244", "3");
INSERT INTO `wp_rg_form_view` VALUES("51612", "10", "2017-03-21 10:07:49", "157.55.39.244", "3");
INSERT INTO `wp_rg_form_view` VALUES("51613", "2", "2017-03-21 10:27:55", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51614", "3", "2017-03-21 10:47:24", "202.46.55.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("51615", "3", "2017-03-21 11:42:00", "157.55.39.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("51616", "15", "2017-03-21 11:42:01", "157.55.39.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("51617", "10", "2017-03-21 11:42:01", "157.55.39.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("51618", "15", "2017-03-21 12:04:33", "157.55.39.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("51619", "10", "2017-03-21 12:04:33", "157.55.39.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("51620", "3", "2017-03-21 12:17:54", "163.172.66.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("51621", "3", "2017-03-21 13:00:38", "202.46.52.159", "27");
INSERT INTO `wp_rg_form_view` VALUES("51622", "15", "2017-03-21 13:00:40", "202.46.52.159", "9");
INSERT INTO `wp_rg_form_view` VALUES("51623", "10", "2017-03-21 13:00:40", "202.46.52.159", "10");
INSERT INTO `wp_rg_form_view` VALUES("51624", "6", "2017-03-21 13:24:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51625", "9", "2017-03-21 13:24:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51626", "8", "2017-03-21 13:24:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51627", "13", "2017-03-21 13:24:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51628", "14", "2017-03-21 13:27:19", "157.55.39.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("51629", "15", "2017-03-21 14:40:39", "202.46.51.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("51630", "10", "2017-03-21 14:40:41", "202.46.51.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("51631", "15", "2017-03-21 15:14:00", "202.46.58.134", "4");
INSERT INTO `wp_rg_form_view` VALUES("51632", "10", "2017-03-21 15:14:01", "202.46.58.134", "4");
INSERT INTO `wp_rg_form_view` VALUES("51633", "3", "2017-03-21 15:35:44", "38.116.192.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("51634", "8", "2017-03-21 15:40:24", "66.249.79.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("51635", "15", "2017-03-21 16:20:40", "202.46.52.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("51636", "10", "2017-03-21 16:20:42", "202.46.52.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("51637", "15", "2017-03-21 17:07:45", "184.71.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("51638", "10", "2017-03-21 17:07:50", "184.71.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("51639", "3", "2017-03-21 18:41:19", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51640", "15", "2017-03-21 18:41:25", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51641", "10", "2017-03-21 18:41:26", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51642", "15", "2017-03-21 19:23:02", "184.66.134.167", "3");
INSERT INTO `wp_rg_form_view` VALUES("51643", "10", "2017-03-21 19:23:06", "184.66.134.167", "5");
INSERT INTO `wp_rg_form_view` VALUES("51644", "3", "2017-03-21 19:24:09", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("51645", "6", "2017-03-21 19:24:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51646", "9", "2017-03-21 19:24:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51647", "8", "2017-03-21 19:24:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51648", "13", "2017-03-21 19:24:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51649", "15", "2017-03-21 20:43:48", "163.172.65.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("51650", "10", "2017-03-21 20:43:52", "163.172.65.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("51651", "3", "2017-03-21 21:03:54", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51652", "15", "2017-03-21 21:03:54", "68.180.229.247", "14");
INSERT INTO `wp_rg_form_view` VALUES("51653", "10", "2017-03-21 21:03:54", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("51654", "11", "2017-03-21 21:39:51", "163.172.65.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("51655", "2", "2017-03-21 21:41:28", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("51656", "14", "2017-03-21 22:22:25", "24.68.252.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("51657", "15", "2017-03-21 22:22:30", "24.68.252.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("51658", "10", "2017-03-21 22:22:32", "24.68.252.194", "6");
INSERT INTO `wp_rg_form_view` VALUES("51659", "3", "2017-03-21 23:23:56", "202.46.56.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("51660", "15", "2017-03-21 23:23:56", "202.46.56.205", "3");
INSERT INTO `wp_rg_form_view` VALUES("51661", "10", "2017-03-21 23:23:56", "202.46.56.205", "3");
INSERT INTO `wp_rg_form_view` VALUES("51662", "2", "2017-03-21 23:57:14", "202.46.58.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("51663", "3", "2017-03-22 00:30:36", "202.46.52.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("51664", "15", "2017-03-22 00:30:37", "202.46.52.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("51665", "10", "2017-03-22 00:30:37", "202.46.52.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("51666", "15", "2017-03-22 01:03:55", "202.46.51.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("51667", "10", "2017-03-22 01:03:55", "202.46.51.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("51668", "3", "2017-03-22 02:09:27", "51.255.65.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("51669", "15", "2017-03-22 02:09:29", "51.255.65.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("51670", "10", "2017-03-22 02:09:29", "51.255.65.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("51671", "3", "2017-03-22 03:11:26", "24.108.4.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("51672", "15", "2017-03-22 03:11:26", "24.108.4.141", "8");
INSERT INTO `wp_rg_form_view` VALUES("51673", "10", "2017-03-22 03:11:27", "24.108.4.141", "8");
INSERT INTO `wp_rg_form_view` VALUES("51674", "11", "2017-03-22 03:18:09", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("51675", "2", "2017-03-22 03:18:11", "69.58.178.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("51676", "3", "2017-03-22 04:13:22", "108.172.117.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("51677", "15", "2017-03-22 04:13:22", "108.172.117.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("51678", "10", "2017-03-22 04:13:22", "108.172.117.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("51679", "3", "2017-03-22 05:10:21", "163.172.65.28", "26");
INSERT INTO `wp_rg_form_view` VALUES("51680", "15", "2017-03-22 05:10:22", "163.172.65.28", "3");
INSERT INTO `wp_rg_form_view` VALUES("51681", "10", "2017-03-22 05:10:22", "163.172.65.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("51682", "6", "2017-03-22 05:15:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51683", "9", "2017-03-22 05:15:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51684", "8", "2017-03-22 05:15:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51685", "13", "2017-03-22 05:15:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51686", "3", "2017-03-22 06:04:02", "202.46.49.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("51687", "15", "2017-03-22 06:04:06", "202.46.49.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("51688", "10", "2017-03-22 06:04:06", "202.46.49.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("51689", "3", "2017-03-22 07:13:41", "51.255.65.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("51690", "15", "2017-03-22 07:13:43", "51.255.65.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("51691", "10", "2017-03-22 07:13:43", "51.255.65.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("51692", "15", "2017-03-22 08:02:05", "24.69.27.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("51693", "10", "2017-03-22 08:02:06", "24.69.27.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("51694", "15", "2017-03-22 09:25:07", "51.255.65.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("51695", "10", "2017-03-22 09:25:08", "51.255.65.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("51696", "15", "2017-03-22 10:36:56", "202.46.51.160", "2");
INSERT INTO `wp_rg_form_view` VALUES("51697", "10", "2017-03-22 10:36:57", "202.46.51.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("51698", "3", "2017-03-22 11:05:58", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("51699", "6", "2017-03-22 11:05:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51700", "9", "2017-03-22 11:05:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51701", "8", "2017-03-22 11:05:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51702", "10", "2017-03-22 11:06:00", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("51703", "13", "2017-03-22 11:06:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51704", "15", "2017-03-22 11:06:00", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("51705", "15", "2017-03-22 12:01:25", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("51706", "10", "2017-03-22 12:01:25", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("51707", "3", "2017-03-22 12:27:47", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51708", "15", "2017-03-22 13:25:31", "77.75.78.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("51709", "10", "2017-03-22 13:25:31", "77.75.78.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("51710", "10", "2017-03-22 14:39:04", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51711", "15", "2017-03-22 14:39:09", "66.249.79.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("51712", "15", "2017-03-22 15:01:33", "202.46.48.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("51713", "10", "2017-03-22 15:01:34", "202.46.48.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("51714", "11", "2017-03-22 15:30:32", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51715", "15", "2017-03-22 16:41:31", "202.46.57.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("51716", "10", "2017-03-22 16:41:41", "202.46.57.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("51717", "15", "2017-03-22 17:08:18", "207.6.127.203", "7");
INSERT INTO `wp_rg_form_view` VALUES("51718", "10", "2017-03-22 17:08:18", "207.6.127.203", "11");
INSERT INTO `wp_rg_form_view` VALUES("51719", "3", "2017-03-22 17:12:57", "68.180.229.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("51720", "6", "2017-03-22 17:12:57", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51721", "9", "2017-03-22 17:12:58", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51722", "8", "2017-03-22 17:12:58", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51723", "13", "2017-03-22 17:12:59", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51724", "15", "2017-03-22 18:03:45", "77.75.77.119", "3");
INSERT INTO `wp_rg_form_view` VALUES("51725", "10", "2017-03-22 18:03:46", "77.75.77.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("51726", "14", "2017-03-22 18:17:47", "209.16.117.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("51727", "15", "2017-03-22 19:24:55", "77.75.76.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("51728", "10", "2017-03-22 19:25:18", "77.75.76.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("51729", "15", "2017-03-22 20:35:16", "163.172.73.28", "4");
INSERT INTO `wp_rg_form_view` VALUES("51730", "10", "2017-03-22 20:35:41", "163.172.73.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("51731", "10", "2017-03-22 20:35:41", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51732", "2", "2017-03-22 20:40:09", "40.77.167.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("51733", "3", "2017-03-22 20:53:47", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("51734", "6", "2017-03-22 20:53:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51735", "9", "2017-03-22 20:53:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51736", "8", "2017-03-22 20:53:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51737", "13", "2017-03-22 20:53:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51738", "3", "2017-03-22 21:00:21", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51739", "15", "2017-03-22 21:00:21", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51740", "10", "2017-03-22 21:00:21", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51741", "10", "2017-03-22 22:00:03", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("51742", "15", "2017-03-22 22:52:43", "202.46.50.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("51743", "15", "2017-03-22 23:01:14", "68.180.229.247", "11");
INSERT INTO `wp_rg_form_view` VALUES("51744", "10", "2017-03-22 23:01:14", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("51745", "3", "2017-03-22 23:41:51", "164.132.161.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("51746", "15", "2017-03-23 00:33:14", "52.5.220.220", "5");
INSERT INTO `wp_rg_form_view` VALUES("51747", "10", "2017-03-23 00:33:15", "52.5.220.220", "5");
INSERT INTO `wp_rg_form_view` VALUES("51748", "2", "2017-03-23 01:06:03", "202.46.56.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("51749", "10", "2017-03-23 02:12:45", "202.46.53.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("51750", "15", "2017-03-23 02:12:46", "202.46.53.167", "5");
INSERT INTO `wp_rg_form_view` VALUES("51751", "3", "2017-03-23 02:12:46", "202.46.53.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("51752", "13", "2017-03-23 02:12:47", "202.46.53.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("51753", "3", "2017-03-23 03:02:42", "52.88.109.3", "65");
INSERT INTO `wp_rg_form_view` VALUES("51754", "6", "2017-03-23 03:02:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51755", "9", "2017-03-23 03:02:43", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("51756", "8", "2017-03-23 03:02:43", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("51757", "10", "2017-03-23 03:02:43", "52.88.109.3", "117");
INSERT INTO `wp_rg_form_view` VALUES("51758", "13", "2017-03-23 03:02:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("51759", "15", "2017-03-23 03:02:44", "52.88.109.3", "100");
INSERT INTO `wp_rg_form_view` VALUES("51760", "3", "2017-03-23 04:23:05", "66.249.79.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("51761", "15", "2017-03-23 04:23:05", "66.249.79.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("51762", "10", "2017-03-23 04:23:06", "66.249.79.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("51763", "13", "2017-03-23 04:59:26", "202.46.58.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("51764", "15", "2017-03-23 06:30:27", "40.77.167.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("51765", "10", "2017-03-23 06:30:29", "40.77.167.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("51766", "3", "2017-03-23 06:39:27", "163.172.64.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("51767", "15", "2017-03-23 07:04:09", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51768", "10", "2017-03-23 07:04:09", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51769", "15", "2017-03-23 08:06:30", "14.192.54.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("51770", "10", "2017-03-23 08:06:31", "14.192.54.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("51771", "15", "2017-03-23 09:02:52", "190.129.92.214", "8");
INSERT INTO `wp_rg_form_view` VALUES("51772", "10", "2017-03-23 09:02:53", "190.129.92.214", "9");
INSERT INTO `wp_rg_form_view` VALUES("51773", "3", "2017-03-23 10:16:52", "163.172.65.46", "3");
INSERT INTO `wp_rg_form_view` VALUES("51774", "15", "2017-03-23 10:16:52", "163.172.65.46", "5");
INSERT INTO `wp_rg_form_view` VALUES("51775", "10", "2017-03-23 10:16:52", "163.172.65.46", "6");
INSERT INTO `wp_rg_form_view` VALUES("51776", "9", "2017-03-23 10:52:00", "202.46.55.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("51777", "10", "2017-03-23 11:00:42", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("51778", "3", "2017-03-23 11:17:48", "40.77.167.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("51779", "15", "2017-03-23 11:17:48", "40.77.167.59", "5");
INSERT INTO `wp_rg_form_view` VALUES("51780", "15", "2017-03-23 12:32:20", "40.77.167.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("51781", "10", "2017-03-23 12:32:21", "40.77.167.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("51782", "3", "2017-03-23 13:25:31", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("51783", "6", "2017-03-23 13:25:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51784", "9", "2017-03-23 13:25:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51785", "8", "2017-03-23 13:25:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51786", "10", "2017-03-23 13:25:32", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("51787", "13", "2017-03-23 13:25:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51788", "15", "2017-03-23 13:25:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("51789", "15", "2017-03-23 14:07:00", "202.46.53.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("51790", "10", "2017-03-23 14:07:02", "202.46.53.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("51791", "15", "2017-03-23 15:23:41", "202.46.48.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("51792", "10", "2017-03-23 15:23:42", "202.46.48.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("51793", "3", "2017-03-23 15:58:03", "51.255.65.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("51794", "15", "2017-03-23 17:58:37", "202.46.58.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("51795", "10", "2017-03-23 17:58:39", "202.46.58.206", "3");
INSERT INTO `wp_rg_form_view` VALUES("51796", "15", "2017-03-23 18:06:28", "157.55.39.163", "3");
INSERT INTO `wp_rg_form_view` VALUES("51797", "10", "2017-03-23 18:06:28", "157.55.39.163", "3");
INSERT INTO `wp_rg_form_view` VALUES("51798", "14", "2017-03-23 18:13:07", "146.0.74.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("51799", "15", "2017-03-23 19:05:34", "54.159.179.40", "5");
INSERT INTO `wp_rg_form_view` VALUES("51800", "10", "2017-03-23 19:05:39", "54.159.179.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("51801", "2", "2017-03-23 19:05:49", "54.159.179.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("51802", "3", "2017-03-23 20:00:30", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("51803", "6", "2017-03-23 20:00:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51804", "9", "2017-03-23 20:00:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51805", "8", "2017-03-23 20:00:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51806", "10", "2017-03-23 20:00:31", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("51807", "13", "2017-03-23 20:00:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51808", "15", "2017-03-23 20:00:32", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("51809", "10", "2017-03-23 21:08:54", "207.194.133.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("51810", "10", "2017-03-23 21:08:54", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("51811", "15", "2017-03-23 21:08:55", "207.194.133.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("51812", "15", "2017-03-23 21:08:55", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("51813", "14", "2017-03-23 21:09:36", "112.198.76.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("51814", "15", "2017-03-23 22:23:11", "157.55.39.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("51815", "10", "2017-03-23 22:23:12", "157.55.39.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("51816", "9", "2017-03-23 22:25:43", "202.46.58.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("51817", "3", "2017-03-23 23:04:48", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("51818", "15", "2017-03-23 23:04:49", "66.249.79.148", "11");
INSERT INTO `wp_rg_form_view` VALUES("51819", "10", "2017-03-23 23:04:49", "66.249.79.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("51820", "14", "2017-03-23 23:22:14", "154.20.32.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("51821", "15", "2017-03-24 00:05:43", "202.46.48.16", "6");
INSERT INTO `wp_rg_form_view` VALUES("51822", "10", "2017-03-24 00:05:44", "202.46.48.16", "5");
INSERT INTO `wp_rg_form_view` VALUES("51823", "3", "2017-03-24 00:32:47", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("51824", "15", "2017-03-24 01:12:23", "202.46.53.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("51825", "10", "2017-03-24 01:12:23", "202.46.53.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("51826", "11", "2017-03-24 01:23:09", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("51827", "3", "2017-03-24 01:23:43", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("51828", "14", "2017-03-24 01:45:43", "202.46.52.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("51829", "15", "2017-03-24 02:02:56", "24.68.137.19", "10");
INSERT INTO `wp_rg_form_view` VALUES("51830", "10", "2017-03-24 02:02:56", "24.68.137.19", "8");
INSERT INTO `wp_rg_form_view` VALUES("51831", "3", "2017-03-24 02:44:11", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("51832", "3", "2017-03-24 04:19:32", "40.77.167.59", "5");
INSERT INTO `wp_rg_form_view` VALUES("51833", "8", "2017-03-24 04:19:42", "40.77.167.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("51834", "13", "2017-03-24 04:19:43", "40.77.167.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("51835", "15", "2017-03-24 04:25:15", "157.55.39.163", "3");
INSERT INTO `wp_rg_form_view` VALUES("51836", "10", "2017-03-24 04:25:17", "157.55.39.163", "3");
INSERT INTO `wp_rg_form_view` VALUES("51837", "15", "2017-03-24 05:08:16", "51.255.65.19", "11");
INSERT INTO `wp_rg_form_view` VALUES("51838", "10", "2017-03-24 05:08:17", "51.255.65.19", "12");
INSERT INTO `wp_rg_form_view` VALUES("51839", "14", "2017-03-24 05:12:29", "154.20.56.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("51840", "3", "2017-03-24 05:27:35", "154.20.56.175", "24");
INSERT INTO `wp_rg_form_view` VALUES("51841", "6", "2017-03-24 05:59:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51842", "9", "2017-03-24 05:59:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51843", "8", "2017-03-24 05:59:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51844", "13", "2017-03-24 05:59:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51845", "3", "2017-03-24 06:00:00", "52.88.109.3", "38");
INSERT INTO `wp_rg_form_view` VALUES("51846", "15", "2017-03-24 06:00:00", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("51847", "10", "2017-03-24 06:00:00", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("51848", "6", "2017-03-24 06:00:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51849", "9", "2017-03-24 06:00:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51850", "8", "2017-03-24 06:00:13", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("51851", "13", "2017-03-24 06:00:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("51852", "14", "2017-03-24 06:03:15", "184.66.50.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("51853", "15", "2017-03-24 07:02:35", "66.249.79.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("51854", "10", "2017-03-24 07:02:35", "66.249.79.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("51855", "14", "2017-03-24 07:54:48", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51856", "3", "2017-03-24 08:22:55", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("51857", "15", "2017-03-24 08:22:55", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("51858", "10", "2017-03-24 08:22:56", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("51859", "11", "2017-03-24 09:01:10", "207.46.13.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("51860", "15", "2017-03-24 09:10:45", "66.249.79.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("51861", "10", "2017-03-24 09:10:48", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("51862", "15", "2017-03-24 11:45:26", "157.55.39.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51863", "10", "2017-03-24 11:58:12", "157.55.39.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("51864", "3", "2017-03-24 11:58:16", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("51865", "6", "2017-03-24 11:58:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51866", "9", "2017-03-24 11:58:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51867", "8", "2017-03-24 11:58:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51868", "13", "2017-03-24 11:58:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51869", "10", "2017-03-24 12:02:15", "157.55.39.194", "41");
INSERT INTO `wp_rg_form_view` VALUES("51870", "15", "2017-03-24 12:02:15", "157.55.39.194", "34");
INSERT INTO `wp_rg_form_view` VALUES("51871", "3", "2017-03-24 12:02:19", "157.55.39.194", "22");
INSERT INTO `wp_rg_form_view` VALUES("51872", "9", "2017-03-24 12:02:48", "157.55.39.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("51873", "14", "2017-03-24 12:05:10", "221.211.110.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("51874", "3", "2017-03-24 13:07:37", "157.55.39.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("51875", "15", "2017-03-24 13:07:38", "157.55.39.119", "8");
INSERT INTO `wp_rg_form_view` VALUES("51876", "10", "2017-03-24 13:07:38", "157.55.39.119", "9");
INSERT INTO `wp_rg_form_view` VALUES("51877", "14", "2017-03-24 13:45:41", "124.90.52.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("51878", "3", "2017-03-24 14:02:46", "202.46.54.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("51879", "15", "2017-03-24 14:02:46", "202.46.54.165", "3");
INSERT INTO `wp_rg_form_view` VALUES("51880", "10", "2017-03-24 14:02:46", "202.46.54.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("51881", "15", "2017-03-24 16:08:17", "96.50.20.28", "10");
INSERT INTO `wp_rg_form_view` VALUES("51882", "10", "2017-03-24 16:08:53", "96.50.20.28", "10");
INSERT INTO `wp_rg_form_view` VALUES("51883", "3", "2017-03-24 17:19:12", "51.255.65.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("51884", "15", "2017-03-24 17:19:23", "51.255.65.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("51885", "10", "2017-03-24 17:19:24", "51.255.65.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("51886", "12", "2017-03-24 17:59:21", "157.55.39.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("51887", "14", "2017-03-24 18:00:51", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("51888", "15", "2017-03-24 18:00:51", "207.194.133.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("51889", "10", "2017-03-24 18:00:51", "207.194.133.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("51890", "3", "2017-03-24 18:11:43", "51.255.65.39", "3");
INSERT INTO `wp_rg_form_view` VALUES("51891", "15", "2017-03-24 19:08:17", "157.55.39.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51892", "10", "2017-03-24 19:08:18", "157.55.39.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("51893", "3", "2017-03-24 19:16:58", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51894", "14", "2017-03-24 19:18:39", "202.46.49.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("51895", "15", "2017-03-24 20:00:30", "47.150.129.197", "32");
INSERT INTO `wp_rg_form_view` VALUES("51896", "15", "2017-03-24 20:00:30", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("51897", "10", "2017-03-24 20:00:31", "47.150.129.197", "28");
INSERT INTO `wp_rg_form_view` VALUES("51898", "10", "2017-03-24 20:00:31", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("51899", "11", "2017-03-24 20:54:54", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51900", "2", "2017-03-24 20:55:01", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51901", "3", "2017-03-24 20:55:57", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("51902", "14", "2017-03-24 20:57:57", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51903", "15", "2017-03-24 21:00:02", "5.9.98.130", "526");
INSERT INTO `wp_rg_form_view` VALUES("51904", "10", "2017-03-24 21:00:02", "5.9.98.130", "422");
INSERT INTO `wp_rg_form_view` VALUES("51905", "3", "2017-03-24 21:02:16", "5.9.98.130", "24");
INSERT INTO `wp_rg_form_view` VALUES("51906", "13", "2017-03-24 21:02:53", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51907", "8", "2017-03-24 21:10:38", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51908", "9", "2017-03-24 21:10:58", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51909", "6", "2017-03-24 21:12:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("51910", "14", "2017-03-24 21:15:27", "66.249.84.52", "3");
INSERT INTO `wp_rg_form_view` VALUES("51911", "15", "2017-03-24 22:00:00", "5.9.98.130", "568");
INSERT INTO `wp_rg_form_view` VALUES("51912", "10", "2017-03-24 22:00:00", "5.9.98.130", "490");
INSERT INTO `wp_rg_form_view` VALUES("51913", "3", "2017-03-24 22:17:19", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("51914", "6", "2017-03-24 22:17:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51915", "9", "2017-03-24 22:17:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51916", "8", "2017-03-24 22:17:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51917", "13", "2017-03-24 22:17:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51918", "14", "2017-03-24 22:53:09", "158.69.244.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("51919", "15", "2017-03-24 23:11:59", "202.46.57.151", "739");
INSERT INTO `wp_rg_form_view` VALUES("51920", "10", "2017-03-24 23:12:00", "202.46.57.151", "507");
INSERT INTO `wp_rg_form_view` VALUES("51921", "3", "2017-03-24 23:37:17", "163.172.66.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("51922", "15", "2017-03-25 00:00:01", "5.9.98.130", "336");
INSERT INTO `wp_rg_form_view` VALUES("51923", "10", "2017-03-25 00:00:02", "5.9.98.130", "376");
INSERT INTO `wp_rg_form_view` VALUES("51924", "10", "2017-03-25 01:20:01", "68.180.229.247", "115");
INSERT INTO `wp_rg_form_view` VALUES("51925", "15", "2017-03-25 01:20:02", "68.180.229.247", "114");
INSERT INTO `wp_rg_form_view` VALUES("51926", "15", "2017-03-25 02:00:02", "5.9.98.130", "1067");
INSERT INTO `wp_rg_form_view` VALUES("51927", "10", "2017-03-25 02:00:02", "5.9.98.130", "752");
INSERT INTO `wp_rg_form_view` VALUES("51928", "15", "2017-03-25 03:00:00", "5.9.98.130", "845");
INSERT INTO `wp_rg_form_view` VALUES("51929", "10", "2017-03-25 03:00:02", "5.9.98.130", "647");
INSERT INTO `wp_rg_form_view` VALUES("51930", "3", "2017-03-25 04:18:27", "92.238.226.245", "37");
INSERT INTO `wp_rg_form_view` VALUES("51931", "15", "2017-03-25 04:18:28", "92.238.226.245", "155");
INSERT INTO `wp_rg_form_view` VALUES("51932", "10", "2017-03-25 04:18:28", "92.238.226.245", "286");
INSERT INTO `wp_rg_form_view` VALUES("51933", "11", "2017-03-25 04:18:42", "92.238.226.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("51934", "13", "2017-03-25 04:19:25", "92.238.226.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("51935", "12", "2017-03-25 04:20:31", "92.238.226.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("51936", "6", "2017-03-25 04:36:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51937", "9", "2017-03-25 04:36:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51938", "8", "2017-03-25 04:36:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51939", "15", "2017-03-25 06:04:30", "207.46.13.66", "688");
INSERT INTO `wp_rg_form_view` VALUES("51940", "10", "2017-03-25 06:04:32", "207.46.13.66", "688");
INSERT INTO `wp_rg_form_view` VALUES("51941", "3", "2017-03-25 06:36:13", "207.46.13.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("51942", "8", "2017-03-25 06:48:47", "202.46.51.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("51943", "15", "2017-03-25 07:00:02", "5.9.98.130", "1034");
INSERT INTO `wp_rg_form_view` VALUES("51944", "10", "2017-03-25 07:00:02", "5.9.98.130", "721");
INSERT INTO `wp_rg_form_view` VALUES("51945", "15", "2017-03-25 08:00:03", "5.9.98.130", "1576");
INSERT INTO `wp_rg_form_view` VALUES("51946", "10", "2017-03-25 08:00:03", "5.9.98.130", "865");
INSERT INTO `wp_rg_form_view` VALUES("51947", "3", "2017-03-25 08:01:04", "66.249.79.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("51948", "15", "2017-03-25 09:00:02", "5.9.98.130", "748");
INSERT INTO `wp_rg_form_view` VALUES("51949", "10", "2017-03-25 09:00:02", "5.9.98.130", "748");
INSERT INTO `wp_rg_form_view` VALUES("51950", "3", "2017-03-25 10:07:04", "66.249.79.48", "8");
INSERT INTO `wp_rg_form_view` VALUES("51951", "15", "2017-03-25 10:07:05", "66.249.79.48", "44");
INSERT INTO `wp_rg_form_view` VALUES("51952", "10", "2017-03-25 10:07:05", "66.249.79.48", "41");
INSERT INTO `wp_rg_form_view` VALUES("51953", "11", "2017-03-25 10:35:51", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("51954", "2", "2017-03-25 10:35:55", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("51955", "14", "2017-03-25 10:37:36", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("51956", "13", "2017-03-25 10:40:02", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("51957", "10", "2017-03-25 11:13:09", "5.9.98.130", "514");
INSERT INTO `wp_rg_form_view` VALUES("51958", "15", "2017-03-25 11:13:10", "5.9.98.130", "258");
INSERT INTO `wp_rg_form_view` VALUES("51959", "15", "2017-03-25 12:50:29", "202.46.53.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("51960", "10", "2017-03-25 12:50:29", "202.46.53.16", "4");
INSERT INTO `wp_rg_form_view` VALUES("51961", "3", "2017-03-25 12:57:16", "157.55.39.247", "25");
INSERT INTO `wp_rg_form_view` VALUES("51962", "6", "2017-03-25 12:57:16", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51963", "9", "2017-03-25 12:57:16", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51964", "8", "2017-03-25 12:57:16", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51965", "13", "2017-03-25 12:57:17", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51966", "15", "2017-03-25 13:57:10", "202.46.57.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("51967", "10", "2017-03-25 13:57:11", "202.46.57.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("51968", "3", "2017-03-25 14:33:27", "92.238.226.245", "28");
INSERT INTO `wp_rg_form_view` VALUES("51969", "15", "2017-03-25 14:33:27", "92.238.226.245", "190");
INSERT INTO `wp_rg_form_view` VALUES("51970", "10", "2017-03-25 14:33:28", "92.238.226.245", "192");
INSERT INTO `wp_rg_form_view` VALUES("51971", "9", "2017-03-25 14:33:44", "92.238.226.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("51972", "8", "2017-03-25 14:33:58", "92.238.226.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("51973", "6", "2017-03-25 14:41:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51974", "13", "2017-03-25 14:41:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51975", "15", "2017-03-25 15:00:03", "5.9.98.130", "542");
INSERT INTO `wp_rg_form_view` VALUES("51976", "10", "2017-03-25 15:00:03", "5.9.98.130", "544");
INSERT INTO `wp_rg_form_view` VALUES("51977", "3", "2017-03-25 15:36:19", "66.249.79.40", "27");
INSERT INTO `wp_rg_form_view` VALUES("51978", "6", "2017-03-25 15:49:22", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51979", "9", "2017-03-25 15:49:23", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51980", "8", "2017-03-25 15:49:23", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51981", "13", "2017-03-25 15:49:24", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("51982", "15", "2017-03-25 16:00:05", "5.9.98.130", "442");
INSERT INTO `wp_rg_form_view` VALUES("51983", "10", "2017-03-25 16:00:05", "5.9.98.130", "442");
INSERT INTO `wp_rg_form_view` VALUES("51984", "15", "2017-03-25 17:00:01", "5.9.98.130", "490");
INSERT INTO `wp_rg_form_view` VALUES("51985", "10", "2017-03-25 17:00:02", "5.9.98.130", "490");
INSERT INTO `wp_rg_form_view` VALUES("51986", "15", "2017-03-25 18:00:01", "5.9.98.130", "270");
INSERT INTO `wp_rg_form_view` VALUES("51987", "10", "2017-03-25 18:00:01", "5.9.98.130", "270");
INSERT INTO `wp_rg_form_view` VALUES("51988", "15", "2017-03-25 19:11:46", "5.9.98.130", "437");
INSERT INTO `wp_rg_form_view` VALUES("51989", "10", "2017-03-25 19:11:46", "5.9.98.130", "351");
INSERT INTO `wp_rg_form_view` VALUES("51990", "3", "2017-03-25 19:54:09", "88.15.30.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("51991", "11", "2017-03-25 19:54:16", "88.15.30.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("51992", "2", "2017-03-25 19:55:15", "88.15.30.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("51993", "15", "2017-03-25 20:00:03", "5.9.98.130", "774");
INSERT INTO `wp_rg_form_view` VALUES("51994", "10", "2017-03-25 20:00:04", "5.9.98.130", "390");
INSERT INTO `wp_rg_form_view` VALUES("51995", "3", "2017-03-25 20:57:36", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("51996", "6", "2017-03-25 20:57:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51997", "9", "2017-03-25 20:57:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51998", "8", "2017-03-25 20:57:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("51999", "13", "2017-03-25 20:57:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52000", "15", "2017-03-25 21:00:06", "5.9.98.130", "832");
INSERT INTO `wp_rg_form_view` VALUES("52001", "10", "2017-03-25 21:00:06", "5.9.98.130", "417");
INSERT INTO `wp_rg_form_view` VALUES("52002", "15", "2017-03-25 22:00:07", "5.9.98.130", "1001");
INSERT INTO `wp_rg_form_view` VALUES("52003", "10", "2017-03-25 22:00:07", "5.9.98.130", "501");
INSERT INTO `wp_rg_form_view` VALUES("52004", "3", "2017-03-25 22:03:52", "5.9.145.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("52005", "15", "2017-03-25 23:00:07", "5.9.98.130", "675");
INSERT INTO `wp_rg_form_view` VALUES("52006", "10", "2017-03-25 23:00:07", "5.9.98.130", "338");
INSERT INTO `wp_rg_form_view` VALUES("52007", "15", "2017-03-26 00:00:00", "5.9.98.130", "711");
INSERT INTO `wp_rg_form_view` VALUES("52008", "10", "2017-03-26 00:00:01", "5.9.98.130", "386");
INSERT INTO `wp_rg_form_view` VALUES("52009", "15", "2017-03-26 01:00:03", "5.9.98.130", "372");
INSERT INTO `wp_rg_form_view` VALUES("52010", "10", "2017-03-26 01:00:03", "5.9.98.130", "371");
INSERT INTO `wp_rg_form_view` VALUES("52011", "15", "2017-03-26 02:00:04", "5.9.98.130", "413");
INSERT INTO `wp_rg_form_view` VALUES("52012", "10", "2017-03-26 02:00:04", "5.9.98.130", "413");
INSERT INTO `wp_rg_form_view` VALUES("52013", "3", "2017-03-26 02:30:24", "51.255.65.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("52014", "9", "2017-03-26 02:43:34", "188.213.49.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("52015", "8", "2017-03-26 02:43:51", "188.213.49.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("52016", "15", "2017-03-26 03:00:02", "5.9.98.130", "317");
INSERT INTO `wp_rg_form_view` VALUES("52017", "10", "2017-03-26 03:00:02", "5.9.98.130", "317");
INSERT INTO `wp_rg_form_view` VALUES("52018", "15", "2017-03-26 04:00:03", "5.9.98.130", "342");
INSERT INTO `wp_rg_form_view` VALUES("52019", "10", "2017-03-26 04:00:04", "5.9.98.130", "342");
INSERT INTO `wp_rg_form_view` VALUES("52020", "15", "2017-03-26 05:00:12", "5.9.98.130", "140");
INSERT INTO `wp_rg_form_view` VALUES("52021", "10", "2017-03-26 05:00:12", "5.9.98.130", "141");
INSERT INTO `wp_rg_form_view` VALUES("52022", "9", "2017-03-26 05:24:52", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("52023", "3", "2017-03-26 05:55:30", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52024", "15", "2017-03-26 06:12:16", "167.114.174.95", "9");
INSERT INTO `wp_rg_form_view` VALUES("52025", "10", "2017-03-26 06:12:17", "167.114.174.95", "11");
INSERT INTO `wp_rg_form_view` VALUES("52026", "2", "2017-03-26 06:12:19", "167.114.174.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("52027", "14", "2017-03-26 06:12:43", "167.114.174.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("52028", "3", "2017-03-26 06:13:11", "167.114.174.95", "26");
INSERT INTO `wp_rg_form_view` VALUES("52029", "6", "2017-03-26 06:55:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52030", "9", "2017-03-26 06:55:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52031", "8", "2017-03-26 06:55:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52032", "13", "2017-03-26 06:55:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52033", "15", "2017-03-26 07:09:00", "167.114.173.221", "8");
INSERT INTO `wp_rg_form_view` VALUES("52034", "10", "2017-03-26 07:09:00", "167.114.173.221", "7");
INSERT INTO `wp_rg_form_view` VALUES("52035", "3", "2017-03-26 07:36:55", "46.4.0.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("52036", "14", "2017-03-26 07:57:59", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("52037", "15", "2017-03-26 08:19:30", "202.46.49.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("52038", "10", "2017-03-26 08:19:30", "202.46.49.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("52039", "3", "2017-03-26 08:21:20", "66.249.79.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("52040", "10", "2017-03-26 09:19:43", "157.55.39.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("52041", "15", "2017-03-26 09:19:46", "157.55.39.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("52042", "3", "2017-03-26 10:11:54", "202.46.56.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("52043", "15", "2017-03-26 10:11:55", "202.46.56.16", "9");
INSERT INTO `wp_rg_form_view` VALUES("52044", "10", "2017-03-26 10:11:55", "202.46.56.16", "7");
INSERT INTO `wp_rg_form_view` VALUES("52045", "14", "2017-03-26 10:36:52", "107.150.90.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("52046", "2", "2017-03-26 10:41:56", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("52047", "11", "2017-03-26 10:42:09", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("52048", "15", "2017-03-26 11:23:48", "77.75.76.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("52049", "10", "2017-03-26 11:23:49", "77.75.76.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("52050", "11", "2017-03-26 11:51:55", "202.46.49.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("52051", "15", "2017-03-26 12:16:48", "157.55.39.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("52052", "3", "2017-03-26 12:25:15", "202.46.58.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("52053", "10", "2017-03-26 12:25:16", "202.46.58.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("52054", "11", "2017-03-26 13:08:32", "77.75.76.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("52055", "3", "2017-03-26 13:15:19", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("52056", "6", "2017-03-26 13:15:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52057", "9", "2017-03-26 13:15:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52058", "8", "2017-03-26 13:15:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52059", "10", "2017-03-26 13:15:20", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("52060", "13", "2017-03-26 13:15:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52061", "15", "2017-03-26 13:15:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52062", "15", "2017-03-26 14:04:44", "77.75.77.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("52063", "10", "2017-03-26 14:04:45", "77.75.77.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("52064", "3", "2017-03-26 14:29:31", "51.255.65.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("52065", "3", "2017-03-26 15:30:10", "5.9.106.230", "3");
INSERT INTO `wp_rg_form_view` VALUES("52066", "15", "2017-03-26 15:30:10", "5.9.106.230", "6");
INSERT INTO `wp_rg_form_view` VALUES("52067", "10", "2017-03-26 15:30:10", "5.9.106.230", "6");
INSERT INTO `wp_rg_form_view` VALUES("52068", "13", "2017-03-26 15:30:24", "5.9.106.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("52069", "15", "2017-03-26 16:08:53", "208.43.225.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("52070", "10", "2017-03-26 16:08:53", "208.43.225.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("52071", "3", "2017-03-26 16:23:23", "202.46.50.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("52072", "3", "2017-03-26 18:03:36", "66.183.12.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("52073", "15", "2017-03-26 18:03:38", "66.183.12.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("52074", "10", "2017-03-26 18:03:38", "66.183.12.73", "4");
INSERT INTO `wp_rg_form_view` VALUES("52075", "3", "2017-03-26 19:52:59", "202.46.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("52076", "15", "2017-03-26 19:53:01", "202.46.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("52077", "10", "2017-03-26 19:53:01", "202.46.57.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("52078", "15", "2017-03-26 20:26:19", "202.46.49.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("52079", "10", "2017-03-26 20:26:19", "202.46.49.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("52080", "3", "2017-03-26 20:39:18", "83.18.240.138", "27");
INSERT INTO `wp_rg_form_view` VALUES("52081", "15", "2017-03-26 21:32:59", "202.46.52.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("52082", "10", "2017-03-26 21:32:59", "202.46.52.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("52083", "3", "2017-03-26 22:18:38", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("52084", "15", "2017-03-26 22:18:38", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("52085", "10", "2017-03-26 22:18:38", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("52086", "15", "2017-03-26 23:06:59", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("52087", "10", "2017-03-26 23:07:00", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("52088", "3", "2017-03-26 23:13:58", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("52089", "6", "2017-03-26 23:13:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52090", "9", "2017-03-26 23:13:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52091", "8", "2017-03-26 23:13:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52092", "13", "2017-03-26 23:13:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52093", "14", "2017-03-27 00:48:57", "94.177.233.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("52094", "15", "2017-03-27 00:48:57", "94.177.233.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("52095", "10", "2017-03-27 00:48:57", "94.177.233.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("52096", "15", "2017-03-27 02:58:36", "163.172.66.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("52097", "10", "2017-03-27 02:58:38", "163.172.66.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("52098", "15", "2017-03-27 03:21:39", "202.46.53.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("52099", "10", "2017-03-27 03:21:40", "202.46.53.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("52100", "2", "2017-03-27 03:55:00", "202.46.53.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("52101", "3", "2017-03-27 04:16:51", "192.162.227.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("52102", "13", "2017-03-27 04:16:59", "192.162.227.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("52103", "15", "2017-03-27 04:39:54", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("52104", "10", "2017-03-27 04:39:54", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52105", "15", "2017-03-27 05:01:39", "202.46.49.191", "46");
INSERT INTO `wp_rg_form_view` VALUES("52106", "10", "2017-03-27 05:01:39", "202.46.49.191", "60");
INSERT INTO `wp_rg_form_view` VALUES("52107", "3", "2017-03-27 05:05:19", "207.46.13.156", "44");
INSERT INTO `wp_rg_form_view` VALUES("52108", "9", "2017-03-27 05:05:21", "207.46.13.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("52109", "11", "2017-03-27 05:05:23", "207.46.13.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("52110", "8", "2017-03-27 05:06:24", "157.55.39.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("52111", "6", "2017-03-27 05:30:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52112", "13", "2017-03-27 05:30:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52113", "15", "2017-03-27 06:04:35", "75.155.180.209", "6");
INSERT INTO `wp_rg_form_view` VALUES("52114", "10", "2017-03-27 06:04:35", "75.155.180.209", "5");
INSERT INTO `wp_rg_form_view` VALUES("52115", "3", "2017-03-27 07:35:37", "66.249.79.40", "5");
INSERT INTO `wp_rg_form_view` VALUES("52116", "15", "2017-03-27 07:35:38", "66.249.79.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("52117", "10", "2017-03-27 07:35:38", "66.249.79.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("52118", "15", "2017-03-27 08:26:26", "207.46.13.48", "9");
INSERT INTO `wp_rg_form_view` VALUES("52119", "10", "2017-03-27 08:26:27", "207.46.13.48", "6");
INSERT INTO `wp_rg_form_view` VALUES("52120", "3", "2017-03-27 08:47:44", "157.55.39.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("52121", "15", "2017-03-27 09:31:30", "207.46.13.48", "4");
INSERT INTO `wp_rg_form_view` VALUES("52122", "10", "2017-03-27 09:31:30", "207.46.13.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("52123", "6", "2017-03-27 10:13:41", "157.55.39.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("52124", "15", "2017-03-27 10:13:41", "157.55.39.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("52125", "10", "2017-03-27 10:13:41", "157.55.39.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("52126", "3", "2017-03-27 10:17:36", "157.55.39.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("52127", "15", "2017-03-27 11:25:36", "47.150.129.197", "6");
INSERT INTO `wp_rg_form_view` VALUES("52128", "10", "2017-03-27 11:25:37", "47.150.129.197", "5");
INSERT INTO `wp_rg_form_view` VALUES("52129", "3", "2017-03-27 11:59:54", "163.172.64.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("52130", "11", "2017-03-27 12:14:38", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52131", "3", "2017-03-27 12:14:41", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52132", "15", "2017-03-27 12:14:41", "157.55.39.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("52133", "10", "2017-03-27 12:14:41", "157.55.39.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("52134", "3", "2017-03-27 13:27:26", "207.46.13.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("52135", "15", "2017-03-27 13:27:26", "207.46.13.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("52136", "10", "2017-03-27 13:27:26", "207.46.13.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("52137", "15", "2017-03-27 14:00:13", "66.249.79.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("52138", "10", "2017-03-27 14:00:14", "66.249.79.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("52139", "3", "2017-03-27 14:43:38", "178.202.133.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("52140", "15", "2017-03-27 15:25:40", "66.249.79.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("52141", "10", "2017-03-27 15:25:41", "66.249.79.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("52142", "3", "2017-03-27 15:48:48", "66.249.79.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("52143", "15", "2017-03-27 16:05:45", "164.132.161.63", "4");
INSERT INTO `wp_rg_form_view` VALUES("52144", "10", "2017-03-27 16:05:45", "164.132.161.63", "6");
INSERT INTO `wp_rg_form_view` VALUES("52145", "3", "2017-03-27 16:07:14", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("52146", "6", "2017-03-27 16:07:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52147", "9", "2017-03-27 16:07:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52148", "8", "2017-03-27 16:07:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52149", "13", "2017-03-27 16:07:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52150", "2", "2017-03-27 16:13:53", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52151", "11", "2017-03-27 16:41:09", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52152", "15", "2017-03-27 21:13:30", "202.46.49.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("52153", "10", "2017-03-27 21:14:54", "202.46.49.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("52154", "3", "2017-03-27 21:25:28", "157.55.39.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("52155", "3", "2017-03-27 22:32:11", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("52156", "6", "2017-03-27 22:32:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52157", "9", "2017-03-27 22:32:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52158", "8", "2017-03-27 22:32:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52159", "10", "2017-03-27 22:32:13", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("52160", "13", "2017-03-27 22:32:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52161", "15", "2017-03-27 22:32:14", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("52162", "15", "2017-03-27 23:26:16", "202.46.51.191", "4");
INSERT INTO `wp_rg_form_view` VALUES("52163", "10", "2017-03-27 23:26:17", "202.46.51.191", "5");
INSERT INTO `wp_rg_form_view` VALUES("52164", "3", "2017-03-27 23:35:34", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52165", "14", "2017-03-27 23:55:55", "176.103.56.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("52166", "2", "2017-03-28 01:19:39", "138.197.111.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("52167", "10", "2017-03-28 01:19:39", "138.197.111.194", "9");
INSERT INTO `wp_rg_form_view` VALUES("52168", "15", "2017-03-28 01:19:40", "138.197.111.194", "9");
INSERT INTO `wp_rg_form_view` VALUES("52169", "3", "2017-03-28 01:19:44", "138.197.111.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("52170", "11", "2017-03-28 01:19:45", "138.197.111.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("52171", "14", "2017-03-28 01:21:46", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("52172", "6", "2017-03-28 01:58:12", "202.46.53.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("52173", "15", "2017-03-28 02:20:08", "24.108.4.141", "7");
INSERT INTO `wp_rg_form_view` VALUES("52174", "10", "2017-03-28 02:20:08", "24.108.4.141", "8");
INSERT INTO `wp_rg_form_view` VALUES("52175", "3", "2017-03-28 02:48:13", "163.172.66.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("52176", "7", "2017-03-28 02:55:47", "40.77.167.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("52177", "15", "2017-03-28 04:04:35", "163.172.66.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("52178", "10", "2017-03-28 04:04:35", "163.172.66.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("52179", "15", "2017-03-28 05:07:27", "157.55.39.194", "17");
INSERT INTO `wp_rg_form_view` VALUES("52180", "10", "2017-03-28 05:07:27", "157.55.39.194", "16");
INSERT INTO `wp_rg_form_view` VALUES("52181", "2", "2017-03-28 05:09:03", "5.188.211.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("52182", "11", "2017-03-28 05:09:24", "5.188.211.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("52183", "3", "2017-03-28 05:31:38", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("52184", "5", "2017-03-28 05:50:22", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("52185", "15", "2017-03-28 06:03:07", "162.156.84.130", "8");
INSERT INTO `wp_rg_form_view` VALUES("52186", "10", "2017-03-28 06:03:07", "162.156.84.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("52187", "11", "2017-03-28 06:28:50", "162.156.84.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("52188", "3", "2017-03-28 06:34:56", "108.180.48.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("52189", "14", "2017-03-28 06:51:32", "70.66.220.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("52190", "2", "2017-03-28 06:55:48", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("52191", "3", "2017-03-28 07:20:10", "157.55.39.194", "27");
INSERT INTO `wp_rg_form_view` VALUES("52192", "8", "2017-03-28 07:20:10", "157.55.39.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("52193", "13", "2017-03-28 07:20:10", "157.55.39.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("52194", "15", "2017-03-28 07:31:33", "202.46.50.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("52195", "10", "2017-03-28 07:31:34", "202.46.50.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("52196", "15", "2017-03-28 08:05:20", "185.116.212.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("52197", "10", "2017-03-28 08:05:20", "185.116.212.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("52198", "3", "2017-03-28 08:08:42", "157.55.39.194", "52");
INSERT INTO `wp_rg_form_view` VALUES("52199", "8", "2017-03-28 08:08:42", "157.55.39.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("52200", "13", "2017-03-28 08:08:43", "157.55.39.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("52201", "6", "2017-03-28 08:34:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52202", "9", "2017-03-28 08:34:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52203", "15", "2017-03-28 09:32:27", "164.132.161.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("52204", "10", "2017-03-28 09:32:28", "164.132.161.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("52205", "15", "2017-03-28 10:28:32", "163.172.65.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("52206", "10", "2017-03-28 10:28:35", "163.172.65.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("52207", "15", "2017-03-28 11:05:47", "164.132.161.52", "4");
INSERT INTO `wp_rg_form_view` VALUES("52208", "10", "2017-03-28 11:05:47", "164.132.161.52", "6");
INSERT INTO `wp_rg_form_view` VALUES("52209", "3", "2017-03-28 11:24:31", "164.132.161.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("52210", "3", "2017-03-28 12:12:10", "163.172.66.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("52211", "15", "2017-03-28 12:12:10", "163.172.66.154", "3");
INSERT INTO `wp_rg_form_view` VALUES("52212", "10", "2017-03-28 12:12:10", "163.172.66.154", "3");
INSERT INTO `wp_rg_form_view` VALUES("52213", "15", "2017-03-28 13:23:04", "77.75.76.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("52214", "10", "2017-03-28 13:23:06", "77.75.76.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("52215", "15", "2017-03-28 14:01:44", "157.55.39.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("52216", "10", "2017-03-28 14:01:45", "157.55.39.194", "6");
INSERT INTO `wp_rg_form_view` VALUES("52217", "3", "2017-03-28 15:18:13", "52.88.109.3", "25");
INSERT INTO `wp_rg_form_view` VALUES("52218", "6", "2017-03-28 15:18:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52219", "9", "2017-03-28 15:18:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52220", "8", "2017-03-28 15:18:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52221", "10", "2017-03-28 15:18:16", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("52222", "13", "2017-03-28 15:18:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52223", "15", "2017-03-28 15:18:18", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("52224", "15", "2017-03-28 16:30:28", "66.249.79.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("52225", "10", "2017-03-28 16:30:45", "66.249.79.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("52226", "12", "2017-03-28 18:01:36", "202.46.57.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("52227", "15", "2017-03-28 18:01:47", "202.46.57.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("52228", "10", "2017-03-28 18:01:49", "202.46.57.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("52229", "14", "2017-03-28 18:06:50", "107.173.169.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("52230", "3", "2017-03-28 18:34:52", "202.46.56.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("52231", "6", "2017-03-28 19:12:13", "163.172.65.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("52232", "15", "2017-03-28 19:12:14", "163.172.65.204", "3");
INSERT INTO `wp_rg_form_view` VALUES("52233", "10", "2017-03-28 19:12:14", "163.172.65.204", "3");
INSERT INTO `wp_rg_form_view` VALUES("52234", "3", "2017-03-28 19:12:14", "163.172.65.204", "5");
INSERT INTO `wp_rg_form_view` VALUES("52235", "15", "2017-03-28 20:03:00", "46.4.97.116", "11");
INSERT INTO `wp_rg_form_view` VALUES("52236", "10", "2017-03-28 20:03:00", "46.4.97.116", "11");
INSERT INTO `wp_rg_form_view` VALUES("52237", "3", "2017-03-28 20:03:00", "46.4.97.116", "12");
INSERT INTO `wp_rg_form_view` VALUES("52238", "2", "2017-03-28 20:03:35", "46.4.97.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("52239", "6", "2017-03-28 20:04:25", "46.4.97.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("52240", "10", "2017-03-28 21:00:15", "192.99.100.21", "12");
INSERT INTO `wp_rg_form_view` VALUES("52241", "15", "2017-03-28 21:00:16", "192.99.100.21", "9");
INSERT INTO `wp_rg_form_view` VALUES("52242", "3", "2017-03-28 21:00:16", "192.99.100.21", "9");
INSERT INTO `wp_rg_form_view` VALUES("52243", "14", "2017-03-28 21:56:15", "168.235.70.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("52244", "11", "2017-03-28 22:37:44", "184.69.106.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("52245", "3", "2017-03-28 23:00:35", "68.180.229.247", "14");
INSERT INTO `wp_rg_form_view` VALUES("52246", "15", "2017-03-28 23:00:37", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("52247", "10", "2017-03-28 23:00:38", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("52248", "13", "2017-03-28 23:39:35", "207.46.13.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("52249", "14", "2017-03-28 23:56:08", "63.135.161.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("52250", "11", "2017-03-28 23:56:21", "63.135.161.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("52251", "13", "2017-03-29 00:10:36", "207.46.13.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("52252", "15", "2017-03-29 00:10:36", "207.46.13.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("52253", "10", "2017-03-29 00:10:36", "207.46.13.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("52254", "3", "2017-03-29 00:10:36", "207.46.13.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("52255", "3", "2017-03-29 01:04:33", "66.249.79.48", "13");
INSERT INTO `wp_rg_form_view` VALUES("52256", "15", "2017-03-29 01:04:33", "66.249.79.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("52257", "10", "2017-03-29 01:04:34", "66.249.79.48", "7");
INSERT INTO `wp_rg_form_view` VALUES("52258", "14", "2017-03-29 01:57:52", "146.0.74.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("52259", "13", "2017-03-29 02:03:54", "207.46.13.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("52260", "15", "2017-03-29 02:03:54", "207.46.13.161", "10");
INSERT INTO `wp_rg_form_view` VALUES("52261", "10", "2017-03-29 02:03:54", "207.46.13.161", "13");
INSERT INTO `wp_rg_form_view` VALUES("52262", "3", "2017-03-29 02:03:55", "207.46.13.161", "36");
INSERT INTO `wp_rg_form_view` VALUES("52263", "6", "2017-03-29 02:09:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52264", "9", "2017-03-29 02:09:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52265", "8", "2017-03-29 02:09:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52266", "11", "2017-03-29 02:57:30", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("52267", "13", "2017-03-29 03:09:59", "207.46.13.161", "7");
INSERT INTO `wp_rg_form_view` VALUES("52268", "15", "2017-03-29 03:09:59", "207.46.13.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("52269", "10", "2017-03-29 03:09:59", "207.46.13.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("52270", "3", "2017-03-29 03:10:00", "207.46.13.161", "9");
INSERT INTO `wp_rg_form_view` VALUES("52271", "3", "2017-03-29 04:53:29", "202.46.58.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("52272", "15", "2017-03-29 04:53:31", "202.46.58.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("52273", "10", "2017-03-29 04:53:31", "202.46.58.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("52274", "2", "2017-03-29 05:17:23", "5.188.211.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("52275", "15", "2017-03-29 05:17:32", "5.188.211.22", "6");
INSERT INTO `wp_rg_form_view` VALUES("52276", "10", "2017-03-29 05:17:33", "5.188.211.22", "5");
INSERT INTO `wp_rg_form_view` VALUES("52277", "3", "2017-03-29 05:17:34", "5.188.211.22", "6");
INSERT INTO `wp_rg_form_view` VALUES("52278", "11", "2017-03-29 05:17:43", "5.188.211.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("52279", "15", "2017-03-29 06:23:30", "202.46.51.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("52280", "10", "2017-03-29 06:23:32", "202.46.51.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("52281", "3", "2017-03-29 06:23:33", "202.46.51.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("52282", "3", "2017-03-29 07:43:35", "157.55.39.210", "6");
INSERT INTO `wp_rg_form_view` VALUES("52283", "15", "2017-03-29 07:43:36", "157.55.39.210", "6");
INSERT INTO `wp_rg_form_view` VALUES("52284", "10", "2017-03-29 07:43:36", "157.55.39.210", "5");
INSERT INTO `wp_rg_form_view` VALUES("52285", "2", "2017-03-29 07:52:30", "5.188.211.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("52286", "11", "2017-03-29 07:52:45", "5.188.211.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("52287", "3", "2017-03-29 08:30:20", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("52288", "6", "2017-03-29 08:30:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52289", "9", "2017-03-29 08:30:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52290", "8", "2017-03-29 08:30:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52291", "10", "2017-03-29 08:30:21", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("52292", "13", "2017-03-29 08:30:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52293", "15", "2017-03-29 08:30:22", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("52294", "2", "2017-03-29 08:33:35", "5.188.211.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("52295", "11", "2017-03-29 08:34:01", "163.172.66.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("52296", "11", "2017-03-29 09:04:16", "85.144.181.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("52297", "15", "2017-03-29 09:04:21", "85.144.181.178", "12");
INSERT INTO `wp_rg_form_view` VALUES("52298", "10", "2017-03-29 09:04:21", "85.144.181.178", "12");
INSERT INTO `wp_rg_form_view` VALUES("52299", "3", "2017-03-29 09:04:22", "85.144.181.178", "14");
INSERT INTO `wp_rg_form_view` VALUES("52300", "2", "2017-03-29 09:05:06", "85.144.181.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("52301", "15", "2017-03-29 10:28:25", "202.46.49.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("52302", "10", "2017-03-29 10:28:25", "202.46.49.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("52303", "3", "2017-03-29 10:28:25", "202.46.49.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("52304", "10", "2017-03-29 11:11:14", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("52305", "15", "2017-03-29 11:11:15", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("52306", "3", "2017-03-29 11:11:16", "68.180.229.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("52307", "14", "2017-03-29 11:25:08", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52308", "6", "2017-03-29 12:00:43", "69.30.198.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("52309", "15", "2017-03-29 12:01:06", "69.30.198.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("52310", "10", "2017-03-29 12:01:06", "69.30.198.202", "5");
INSERT INTO `wp_rg_form_view` VALUES("52311", "3", "2017-03-29 12:01:06", "69.30.198.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("52312", "6", "2017-03-29 13:15:03", "202.46.49.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("52313", "15", "2017-03-29 13:15:03", "202.46.49.112", "5");
INSERT INTO `wp_rg_form_view` VALUES("52314", "10", "2017-03-29 13:15:04", "202.46.49.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("52315", "3", "2017-03-29 13:15:04", "202.46.49.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("52316", "11", "2017-03-29 13:50:10", "52.26.163.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("52317", "15", "2017-03-29 14:06:04", "220.181.108.158", "24");
INSERT INTO `wp_rg_form_view` VALUES("52318", "10", "2017-03-29 14:06:04", "220.181.108.158", "33");
INSERT INTO `wp_rg_form_view` VALUES("52319", "3", "2017-03-29 14:06:04", "220.181.108.158", "102");
INSERT INTO `wp_rg_form_view` VALUES("52320", "13", "2017-03-29 14:57:12", "40.77.167.116", "6");
INSERT INTO `wp_rg_form_view` VALUES("52321", "8", "2017-03-29 14:57:27", "40.77.167.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("52322", "9", "2017-03-29 14:57:33", "40.77.167.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("52323", "15", "2017-03-29 15:21:43", "204.12.207.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("52324", "10", "2017-03-29 15:21:44", "204.12.207.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("52325", "3", "2017-03-29 15:21:44", "204.12.207.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("52326", "15", "2017-03-29 16:07:30", "202.46.53.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("52327", "10", "2017-03-29 16:07:31", "202.46.53.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("52328", "3", "2017-03-29 16:07:31", "202.46.53.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("52329", "3", "2017-03-29 17:14:11", "202.46.48.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("52330", "15", "2017-03-29 17:14:12", "202.46.48.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("52331", "10", "2017-03-29 17:14:12", "202.46.48.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("52332", "14", "2017-03-29 18:12:19", "206.127.88.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("52333", "15", "2017-03-29 18:12:19", "206.127.88.99", "9");
INSERT INTO `wp_rg_form_view` VALUES("52334", "10", "2017-03-29 18:12:19", "206.127.88.99", "8");
INSERT INTO `wp_rg_form_view` VALUES("52335", "3", "2017-03-29 18:12:19", "206.127.88.99", "7");
INSERT INTO `wp_rg_form_view` VALUES("52336", "10", "2017-03-29 19:07:14", "202.46.53.149", "8");
INSERT INTO `wp_rg_form_view` VALUES("52337", "15", "2017-03-29 19:07:14", "202.46.53.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("52338", "3", "2017-03-29 19:07:14", "202.46.53.149", "7");
INSERT INTO `wp_rg_form_view` VALUES("52339", "3", "2017-03-29 20:12:36", "52.88.109.3", "44");
INSERT INTO `wp_rg_form_view` VALUES("52340", "6", "2017-03-29 20:12:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52341", "9", "2017-03-29 20:12:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52342", "8", "2017-03-29 20:12:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52343", "10", "2017-03-29 20:12:38", "52.88.109.3", "20");
INSERT INTO `wp_rg_form_view` VALUES("52344", "13", "2017-03-29 20:12:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52345", "15", "2017-03-29 20:12:39", "52.88.109.3", "20");
INSERT INTO `wp_rg_form_view` VALUES("52346", "5", "2017-03-29 20:22:34", "163.172.65.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("52347", "2", "2017-03-29 20:28:04", "5.188.211.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("52348", "14", "2017-03-29 20:28:04", "24.108.6.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("52349", "11", "2017-03-29 20:28:28", "5.188.211.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("52350", "3", "2017-03-29 21:09:53", "104.196.24.131", "32");
INSERT INTO `wp_rg_form_view` VALUES("52351", "15", "2017-03-29 21:09:53", "104.196.24.131", "29");
INSERT INTO `wp_rg_form_view` VALUES("52352", "10", "2017-03-29 21:09:53", "104.196.24.131", "30");
INSERT INTO `wp_rg_form_view` VALUES("52353", "2", "2017-03-29 21:11:35", "104.196.24.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("52354", "11", "2017-03-29 21:13:39", "104.196.24.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("52355", "5", "2017-03-29 21:45:18", "77.75.76.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("52356", "14", "2017-03-29 21:56:50", "104.196.186.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("52357", "15", "2017-03-29 22:01:15", "104.196.186.134", "24");
INSERT INTO `wp_rg_form_view` VALUES("52358", "10", "2017-03-29 22:01:15", "104.196.186.134", "25");
INSERT INTO `wp_rg_form_view` VALUES("52359", "3", "2017-03-29 22:01:15", "104.196.186.134", "34");
INSERT INTO `wp_rg_form_view` VALUES("52360", "14", "2017-03-29 22:48:01", "104.196.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("52361", "13", "2017-03-29 22:48:13", "104.196.24.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("52362", "3", "2017-03-29 23:33:27", "104.196.183.13", "56");
INSERT INTO `wp_rg_form_view` VALUES("52363", "15", "2017-03-29 23:33:27", "104.196.183.13", "29");
INSERT INTO `wp_rg_form_view` VALUES("52364", "10", "2017-03-29 23:33:27", "104.196.183.13", "31");
INSERT INTO `wp_rg_form_view` VALUES("52365", "8", "2017-03-29 23:33:43", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("52366", "13", "2017-03-29 23:34:08", "104.196.183.13", "3");
INSERT INTO `wp_rg_form_view` VALUES("52367", "9", "2017-03-29 23:34:10", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("52368", "6", "2017-03-29 23:34:44", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("52369", "3", "2017-03-30 00:03:59", "68.180.229.247", "56");
INSERT INTO `wp_rg_form_view` VALUES("52370", "15", "2017-03-30 00:03:59", "68.180.229.247", "25");
INSERT INTO `wp_rg_form_view` VALUES("52371", "10", "2017-03-30 00:03:59", "68.180.229.247", "27");
INSERT INTO `wp_rg_form_view` VALUES("52372", "8", "2017-03-30 00:18:17", "104.196.167.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("52373", "9", "2017-03-30 00:18:29", "104.196.167.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("52374", "13", "2017-03-30 00:19:37", "104.196.167.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("52375", "15", "2017-03-30 01:01:51", "104.196.24.131", "23");
INSERT INTO `wp_rg_form_view` VALUES("52376", "10", "2017-03-30 01:01:51", "104.196.24.131", "22");
INSERT INTO `wp_rg_form_view` VALUES("52377", "3", "2017-03-30 01:01:51", "104.196.24.131", "53");
INSERT INTO `wp_rg_form_view` VALUES("52378", "6", "2017-03-30 01:02:37", "104.196.24.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("52379", "8", "2017-03-30 01:03:13", "104.196.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("52380", "9", "2017-03-30 01:03:23", "104.196.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("52381", "11", "2017-03-30 01:13:16", "142.0.35.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("52382", "2", "2017-03-30 01:14:03", "142.0.35.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("52383", "3", "2017-03-30 02:16:31", "66.249.79.44", "28");
INSERT INTO `wp_rg_form_view` VALUES("52384", "15", "2017-03-30 02:16:31", "66.249.79.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("52385", "10", "2017-03-30 02:16:31", "66.249.79.44", "4");
INSERT INTO `wp_rg_form_view` VALUES("52386", "6", "2017-03-30 02:55:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52387", "9", "2017-03-30 02:55:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52388", "8", "2017-03-30 02:55:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52389", "13", "2017-03-30 02:55:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52390", "15", "2017-03-30 03:07:18", "107.190.19.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("52391", "10", "2017-03-30 03:07:18", "107.190.19.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("52392", "3", "2017-03-30 03:07:18", "107.190.19.194", "6");
INSERT INTO `wp_rg_form_view` VALUES("52393", "13", "2017-03-30 03:37:43", "51.255.65.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("52394", "15", "2017-03-30 04:54:19", "77.75.79.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("52395", "10", "2017-03-30 04:54:19", "77.75.79.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("52396", "3", "2017-03-30 04:54:20", "77.75.79.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("52397", "10", "2017-03-30 05:10:46", "207.46.13.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("52398", "15", "2017-03-30 05:10:46", "207.46.13.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("52399", "3", "2017-03-30 05:10:46", "207.46.13.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("52400", "15", "2017-03-30 06:24:45", "24.108.6.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("52401", "10", "2017-03-30 06:24:50", "24.108.6.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("52402", "3", "2017-03-30 06:24:50", "24.108.6.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("52403", "3", "2017-03-30 07:15:24", "66.249.79.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("52404", "15", "2017-03-30 07:36:30", "77.75.79.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("52405", "10", "2017-03-30 07:36:31", "77.75.79.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("52406", "15", "2017-03-30 08:09:30", "104.215.93.5", "6");
INSERT INTO `wp_rg_form_view` VALUES("52407", "10", "2017-03-30 08:09:30", "104.215.93.5", "6");
INSERT INTO `wp_rg_form_view` VALUES("52408", "3", "2017-03-30 08:09:30", "104.215.93.5", "8");
INSERT INTO `wp_rg_form_view` VALUES("52409", "11", "2017-03-30 08:09:36", "104.215.93.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("52410", "2", "2017-03-30 08:09:37", "104.215.93.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("52411", "15", "2017-03-30 09:23:43", "202.46.55.122", "7");
INSERT INTO `wp_rg_form_view` VALUES("52412", "10", "2017-03-30 09:23:43", "202.46.55.122", "6");
INSERT INTO `wp_rg_form_view` VALUES("52413", "3", "2017-03-30 09:23:43", "202.46.55.122", "10");
INSERT INTO `wp_rg_form_view` VALUES("52414", "11", "2017-03-30 09:38:43", "138.197.96.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("52415", "2", "2017-03-30 09:38:45", "138.197.96.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("52416", "15", "2017-03-30 10:22:11", "77.75.78.166", "5");
INSERT INTO `wp_rg_form_view` VALUES("52417", "10", "2017-03-30 10:22:11", "77.75.78.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("52418", "3", "2017-03-30 10:22:12", "77.75.78.166", "6");
INSERT INTO `wp_rg_form_view` VALUES("52419", "8", "2017-03-30 10:53:46", "157.55.39.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("52420", "3", "2017-03-30 11:03:43", "202.46.48.92", "309");
INSERT INTO `wp_rg_form_view` VALUES("52421", "15", "2017-03-30 11:03:43", "202.46.48.92", "317");
INSERT INTO `wp_rg_form_view` VALUES("52422", "10", "2017-03-30 11:03:43", "202.46.48.92", "289");
INSERT INTO `wp_rg_form_view` VALUES("52423", "14", "2017-03-30 11:16:50", "104.236.109.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("52424", "11", "2017-03-30 11:16:59", "104.236.109.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("52425", "6", "2017-03-30 11:25:20", "104.236.109.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("52426", "2", "2017-03-30 11:26:54", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("52427", "9", "2017-03-30 11:35:15", "104.236.109.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("52428", "15", "2017-03-30 12:00:05", "104.236.109.129", "235");
INSERT INTO `wp_rg_form_view` VALUES("52429", "10", "2017-03-30 12:00:05", "104.236.109.129", "219");
INSERT INTO `wp_rg_form_view` VALUES("52430", "3", "2017-03-30 12:00:05", "104.236.109.129", "237");
INSERT INTO `wp_rg_form_view` VALUES("52431", "2", "2017-03-30 12:23:25", "104.236.109.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("52432", "13", "2017-03-30 12:36:10", "104.236.109.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("52433", "3", "2017-03-30 13:17:04", "202.46.57.79", "30");
INSERT INTO `wp_rg_form_view` VALUES("52434", "15", "2017-03-30 13:17:05", "202.46.57.79", "4");
INSERT INTO `wp_rg_form_view` VALUES("52435", "10", "2017-03-30 13:17:05", "202.46.57.79", "7");
INSERT INTO `wp_rg_form_view` VALUES("52436", "6", "2017-03-30 13:49:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52437", "9", "2017-03-30 13:49:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52438", "8", "2017-03-30 13:49:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52439", "13", "2017-03-30 13:49:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52440", "15", "2017-03-30 14:17:38", "220.181.108.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("52441", "10", "2017-03-30 14:17:38", "220.181.108.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("52442", "3", "2017-03-30 14:17:38", "220.181.108.114", "6");
INSERT INTO `wp_rg_form_view` VALUES("52443", "12", "2017-03-30 15:08:42", "163.172.66.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("52444", "15", "2017-03-30 15:08:42", "163.172.66.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("52445", "10", "2017-03-30 15:08:42", "163.172.66.55", "4");
INSERT INTO `wp_rg_form_view` VALUES("52446", "3", "2017-03-30 15:08:42", "163.172.66.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("52447", "10", "2017-03-30 16:02:15", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("52448", "15", "2017-03-30 16:02:27", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("52449", "3", "2017-03-30 16:02:27", "68.180.229.247", "15");
INSERT INTO `wp_rg_form_view` VALUES("52450", "6", "2017-03-30 16:28:21", "217.182.91.226", "2");
INSERT INTO `wp_rg_form_view` VALUES("52451", "15", "2017-03-30 17:10:22", "202.46.53.67", "4");
INSERT INTO `wp_rg_form_view` VALUES("52452", "10", "2017-03-30 17:10:22", "202.46.53.67", "5");
INSERT INTO `wp_rg_form_view` VALUES("52453", "3", "2017-03-30 17:10:23", "202.46.53.67", "6");
INSERT INTO `wp_rg_form_view` VALUES("52454", "10", "2017-03-30 18:00:04", "205.201.132.14", "10");
INSERT INTO `wp_rg_form_view` VALUES("52455", "15", "2017-03-30 18:00:04", "205.201.132.14", "10");
INSERT INTO `wp_rg_form_view` VALUES("52456", "3", "2017-03-30 18:00:04", "205.201.132.14", "10");
INSERT INTO `wp_rg_form_view` VALUES("52457", "16", "2017-03-30 18:28:18", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("52458", "2", "2017-03-30 18:31:54", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("52459", "11", "2017-03-30 18:32:20", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("52460", "14", "2017-03-30 18:58:31", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("52461", "14", "2017-03-30 19:00:33", "184.66.49.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("52462", "15", "2017-03-30 19:00:34", "184.66.49.231", "8");
INSERT INTO `wp_rg_form_view` VALUES("52463", "10", "2017-03-30 19:00:34", "184.66.49.231", "8");
INSERT INTO `wp_rg_form_view` VALUES("52464", "3", "2017-03-30 19:00:34", "184.66.49.231", "8");
INSERT INTO `wp_rg_form_view` VALUES("52465", "8", "2017-03-30 19:48:01", "96.54.47.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("52466", "14", "2017-03-30 20:24:30", "146.0.74.182", "3");
INSERT INTO `wp_rg_form_view` VALUES("52467", "15", "2017-03-30 20:51:30", "202.46.53.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("52468", "10", "2017-03-30 20:51:30", "202.46.53.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("52469", "3", "2017-03-30 20:51:31", "202.46.53.110", "4");
INSERT INTO `wp_rg_form_view` VALUES("52470", "3", "2017-03-30 21:04:01", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("52471", "6", "2017-03-30 21:04:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52472", "9", "2017-03-30 21:04:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52473", "8", "2017-03-30 21:04:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52474", "10", "2017-03-30 21:04:02", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("52475", "13", "2017-03-30 21:04:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52476", "15", "2017-03-30 21:04:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("52477", "15", "2017-03-30 22:09:16", "66.249.79.48", "10");
INSERT INTO `wp_rg_form_view` VALUES("52478", "10", "2017-03-30 22:09:16", "66.249.79.48", "10");
INSERT INTO `wp_rg_form_view` VALUES("52479", "3", "2017-03-30 22:09:16", "66.249.79.48", "11");
INSERT INTO `wp_rg_form_view` VALUES("52480", "10", "2017-03-30 23:38:08", "202.46.52.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("52481", "15", "2017-03-30 23:38:10", "202.46.52.149", "4");
INSERT INTO `wp_rg_form_view` VALUES("52482", "3", "2017-03-30 23:38:10", "202.46.52.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("52483", "15", "2017-03-31 00:11:27", "202.46.51.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("52484", "10", "2017-03-31 00:11:28", "202.46.51.167", "8");
INSERT INTO `wp_rg_form_view` VALUES("52485", "3", "2017-03-31 00:11:28", "202.46.51.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("52486", "2", "2017-03-31 00:39:02", "13.124.76.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("52487", "11", "2017-03-31 00:39:04", "13.124.76.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("52488", "3", "2017-03-31 01:43:54", "202.46.54.28", "3");
INSERT INTO `wp_rg_form_view` VALUES("52489", "15", "2017-03-31 01:43:55", "202.46.54.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("52490", "10", "2017-03-31 01:43:55", "202.46.54.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("52491", "13", "2017-03-31 01:55:47", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52492", "11", "2017-03-31 02:11:03", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52493", "3", "2017-03-31 02:52:11", "163.172.66.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("52494", "15", "2017-03-31 02:52:12", "163.172.66.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("52495", "10", "2017-03-31 02:52:12", "163.172.66.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("52496", "3", "2017-03-31 03:07:06", "157.55.39.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("52497", "15", "2017-03-31 03:07:06", "157.55.39.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("52498", "10", "2017-03-31 03:07:06", "157.55.39.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("52499", "15", "2017-03-31 04:01:23", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("52500", "10", "2017-03-31 04:01:24", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("52501", "3", "2017-03-31 04:01:24", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("52502", "3", "2017-03-31 05:40:29", "157.55.39.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("52503", "15", "2017-03-31 05:40:31", "157.55.39.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("52504", "10", "2017-03-31 05:40:31", "157.55.39.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("52505", "15", "2017-03-31 06:33:03", "144.76.8.66", "9");
INSERT INTO `wp_rg_form_view` VALUES("52506", "10", "2017-03-31 06:33:05", "144.76.8.66", "10");
INSERT INTO `wp_rg_form_view` VALUES("52507", "3", "2017-03-31 06:33:06", "144.76.8.66", "11");
INSERT INTO `wp_rg_form_view` VALUES("52508", "14", "2017-03-31 06:33:16", "144.76.8.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("52509", "15", "2017-03-31 07:52:03", "202.46.56.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("52510", "10", "2017-03-31 07:52:03", "202.46.56.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("52511", "3", "2017-03-31 07:52:04", "202.46.56.17", "27");
INSERT INTO `wp_rg_form_view` VALUES("52512", "6", "2017-03-31 07:52:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52513", "9", "2017-03-31 07:52:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52514", "8", "2017-03-31 07:52:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52515", "13", "2017-03-31 07:52:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52516", "15", "2017-03-31 08:07:23", "217.69.133.233", "11");
INSERT INTO `wp_rg_form_view` VALUES("52517", "10", "2017-03-31 08:07:23", "217.69.133.233", "18");
INSERT INTO `wp_rg_form_view` VALUES("52518", "3", "2017-03-31 08:07:23", "217.69.133.233", "50");
INSERT INTO `wp_rg_form_view` VALUES("52519", "13", "2017-03-31 08:36:29", "157.55.39.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("52520", "8", "2017-03-31 08:37:27", "157.55.39.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52521", "3", "2017-03-31 09:14:53", "157.55.39.120", "76");
INSERT INTO `wp_rg_form_view` VALUES("52522", "10", "2017-03-31 09:14:53", "157.55.39.120", "25");
INSERT INTO `wp_rg_form_view` VALUES("52523", "13", "2017-03-31 09:14:53", "157.55.39.120", "4");
INSERT INTO `wp_rg_form_view` VALUES("52524", "15", "2017-03-31 09:14:53", "157.55.39.120", "20");
INSERT INTO `wp_rg_form_view` VALUES("52525", "8", "2017-03-31 09:35:25", "157.55.39.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("52526", "9", "2017-03-31 09:35:30", "157.55.39.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("52527", "11", "2017-03-31 09:39:20", "217.122.185.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("52528", "2", "2017-03-31 09:40:08", "217.122.185.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("52529", "15", "2017-03-31 10:06:47", "157.55.39.97", "3");
INSERT INTO `wp_rg_form_view` VALUES("52530", "10", "2017-03-31 10:06:47", "157.55.39.97", "3");
INSERT INTO `wp_rg_form_view` VALUES("52531", "3", "2017-03-31 10:06:47", "157.55.39.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("52532", "15", "2017-03-31 11:21:46", "176.62.76.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("52533", "10", "2017-03-31 11:21:46", "176.62.76.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("52534", "3", "2017-03-31 11:21:47", "176.62.76.168", "12");
INSERT INTO `wp_rg_form_view` VALUES("52535", "11", "2017-03-31 11:48:01", "220.181.108.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("52536", "9", "2017-03-31 11:57:51", "157.55.39.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("52537", "8", "2017-03-31 11:57:55", "157.55.39.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("52538", "13", "2017-03-31 11:57:55", "157.55.39.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("52539", "3", "2017-03-31 12:29:18", "202.46.54.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("52540", "15", "2017-03-31 12:29:18", "202.46.54.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("52541", "10", "2017-03-31 12:29:18", "202.46.54.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("52542", "14", "2017-03-31 12:56:16", "24.68.156.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("52543", "3", "2017-03-31 13:02:37", "202.46.54.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("52544", "15", "2017-03-31 13:02:37", "202.46.54.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("52545", "10", "2017-03-31 13:02:37", "202.46.54.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("52546", "3", "2017-03-31 14:33:08", "52.88.109.3", "142");
INSERT INTO `wp_rg_form_view` VALUES("52547", "6", "2017-03-31 14:33:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52548", "9", "2017-03-31 14:33:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52549", "8", "2017-03-31 14:33:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52550", "10", "2017-03-31 14:33:12", "52.88.109.3", "107");
INSERT INTO `wp_rg_form_view` VALUES("52551", "13", "2017-03-31 14:33:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("52552", "15", "2017-03-31 14:33:13", "52.88.109.3", "126");
INSERT INTO `wp_rg_form_view` VALUES("52553", "11", "2017-03-31 14:33:21", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("52554", "2", "2017-03-31 14:33:22", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("52555", "14", "2017-03-31 14:34:36", "173.192.34.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("52556", "10", "2017-03-31 15:01:27", "199.16.157.180", "3");
INSERT INTO `wp_rg_form_view` VALUES("52557", "15", "2017-03-31 15:01:28", "199.16.157.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("52558", "3", "2017-03-31 15:01:28", "199.16.157.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("52559", "3", "2017-03-31 16:05:19", "163.172.66.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("52560", "15", "2017-03-31 16:05:37", "163.172.66.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("52561", "10", "2017-03-31 16:05:38", "163.172.66.184", "5");
INSERT INTO `wp_rg_form_view` VALUES("52562", "15", "2017-03-31 17:27:15", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("52563", "10", "2017-03-31 17:27:22", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("52564", "3", "2017-03-31 17:27:24", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("52565", "3", "2017-03-31 18:45:15", "202.46.48.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("52566", "15", "2017-03-31 19:01:22", "157.55.39.120", "4");
INSERT INTO `wp_rg_form_view` VALUES("52567", "10", "2017-03-31 19:01:41", "157.55.39.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("52568", "3", "2017-03-31 19:01:42", "157.55.39.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("52569", "15", "2017-03-31 20:06:24", "207.46.13.100", "33");
INSERT INTO `wp_rg_form_view` VALUES("52570", "10", "2017-03-31 20:06:25", "207.46.13.100", "27");
INSERT INTO `wp_rg_form_view` VALUES("52571", "3", "2017-03-31 20:06:25", "207.46.13.100", "31");
INSERT INTO `wp_rg_form_view` VALUES("52572", "11", "2017-03-31 20:26:53", "5.188.211.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("52573", "2", "2017-03-31 20:26:56", "5.188.211.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("52574", "3", "2017-03-31 21:15:49", "47.150.129.197", "13");
INSERT INTO `wp_rg_form_view` VALUES("52575", "15", "2017-03-31 21:15:59", "47.150.129.197", "7");
INSERT INTO `wp_rg_form_view` VALUES("52576", "10", "2017-03-31 21:15:59", "47.150.129.197", "7");
INSERT INTO `wp_rg_form_view` VALUES("52577", "6", "2017-03-31 21:16:19", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("52578", "15", "2017-03-31 22:06:25", "5.188.211.41", "27");
INSERT INTO `wp_rg_form_view` VALUES("52579", "10", "2017-03-31 22:06:26", "5.188.211.41", "23");
INSERT INTO `wp_rg_form_view` VALUES("52580", "3", "2017-03-31 22:06:26", "5.188.211.41", "26");
INSERT INTO `wp_rg_form_view` VALUES("52581", "2", "2017-03-31 22:44:21", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("52582", "3", "2017-03-31 23:05:34", "202.46.56.194", "5");
INSERT INTO `wp_rg_form_view` VALUES("52583", "15", "2017-03-31 23:05:35", "202.46.56.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("52584", "10", "2017-03-31 23:05:35", "202.46.56.194", "3");
INSERT INTO `wp_rg_form_view` VALUES("52585", "3", "2017-04-01 00:07:41", "5.188.211.22", "9");
INSERT INTO `wp_rg_form_view` VALUES("52586", "11", "2017-04-01 00:08:00", "5.188.211.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("52587", "2", "2017-04-01 00:08:04", "5.188.211.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("52588", "15", "2017-04-01 00:08:07", "5.188.211.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("52589", "10", "2017-04-01 00:08:07", "5.188.211.22", "9");
INSERT INTO `wp_rg_form_view` VALUES("52590", "3", "2017-04-01 01:01:59", "163.172.65.243", "39");
INSERT INTO `wp_rg_form_view` VALUES("52591", "15", "2017-04-01 01:01:59", "163.172.65.243", "13");
INSERT INTO `wp_rg_form_view` VALUES("52592", "10", "2017-04-01 01:01:59", "163.172.65.243", "14");
INSERT INTO `wp_rg_form_view` VALUES("52593", "6", "2017-04-01 01:36:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52594", "9", "2017-04-01 01:36:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52595", "8", "2017-04-01 01:36:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52596", "13", "2017-04-01 01:36:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52597", "11", "2017-04-01 01:42:17", "192.99.67.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("52598", "2", "2017-04-01 01:42:21", "192.99.67.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("52599", "14", "2017-04-01 01:51:38", "64.180.72.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("52600", "3", "2017-04-01 02:04:43", "66.249.79.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("52601", "15", "2017-04-01 02:04:43", "66.249.79.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("52602", "10", "2017-04-01 02:04:44", "66.249.79.48", "3");
INSERT INTO `wp_rg_form_view` VALUES("52603", "15", "2017-04-01 03:12:12", "40.77.167.14", "5");
INSERT INTO `wp_rg_form_view` VALUES("52604", "10", "2017-04-01 03:12:13", "40.77.167.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("52605", "3", "2017-04-01 03:12:13", "40.77.167.14", "5");
INSERT INTO `wp_rg_form_view` VALUES("52606", "13", "2017-04-01 03:26:57", "66.249.79.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("52607", "15", "2017-04-01 04:21:31", "202.46.55.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("52608", "10", "2017-04-01 04:21:31", "202.46.55.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("52609", "3", "2017-04-01 04:21:31", "202.46.55.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("52610", "12", "2017-04-01 05:28:10", "202.46.52.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("52611", "15", "2017-04-01 05:28:11", "202.46.52.160", "13");
INSERT INTO `wp_rg_form_view` VALUES("52612", "10", "2017-04-01 05:28:11", "202.46.52.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("52613", "3", "2017-04-01 05:28:11", "202.46.52.160", "11");
INSERT INTO `wp_rg_form_view` VALUES("52614", "15", "2017-04-01 06:01:31", "202.46.49.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("52615", "10", "2017-04-01 06:01:32", "202.46.49.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("52616", "3", "2017-04-01 06:01:32", "202.46.49.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("52617", "15", "2017-04-01 08:06:31", "77.75.76.166", "5");
INSERT INTO `wp_rg_form_view` VALUES("52618", "10", "2017-04-01 08:06:33", "77.75.76.166", "8");
INSERT INTO `wp_rg_form_view` VALUES("52619", "3", "2017-04-01 08:06:33", "77.75.76.166", "30");
INSERT INTO `wp_rg_form_view` VALUES("52620", "6", "2017-04-01 08:07:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52621", "9", "2017-04-01 08:07:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52622", "8", "2017-04-01 08:07:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52623", "13", "2017-04-01 08:07:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52624", "10", "2017-04-01 09:17:36", "163.172.65.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("52625", "15", "2017-04-01 09:17:36", "163.172.65.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("52626", "3", "2017-04-01 09:17:36", "163.172.65.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("52627", "15", "2017-04-01 11:14:32", "113.190.82.146", "65");
INSERT INTO `wp_rg_form_view` VALUES("52628", "10", "2017-04-01 11:14:36", "113.190.82.146", "56");
INSERT INTO `wp_rg_form_view` VALUES("52629", "3", "2017-04-01 11:14:36", "113.190.82.146", "64");
INSERT INTO `wp_rg_form_view` VALUES("52630", "15", "2017-04-01 12:45:30", "220.181.108.178", "28");
INSERT INTO `wp_rg_form_view` VALUES("52631", "10", "2017-04-01 12:45:31", "220.181.108.178", "24");
INSERT INTO `wp_rg_form_view` VALUES("52632", "3", "2017-04-01 12:45:31", "220.181.108.178", "26");
INSERT INTO `wp_rg_form_view` VALUES("52633", "15", "2017-04-01 13:05:49", "157.55.39.143", "3");
INSERT INTO `wp_rg_form_view` VALUES("52634", "10", "2017-04-01 13:05:49", "157.55.39.143", "3");
INSERT INTO `wp_rg_form_view` VALUES("52635", "3", "2017-04-01 13:05:49", "157.55.39.143", "3");
INSERT INTO `wp_rg_form_view` VALUES("52636", "5", "2017-04-01 13:50:35", "202.46.50.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("52637", "10", "2017-04-01 14:34:42", "77.75.76.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("52638", "15", "2017-04-01 14:34:42", "77.75.76.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("52639", "3", "2017-04-01 14:34:43", "77.75.76.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("52640", "6", "2017-04-01 15:30:37", "202.46.48.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("52641", "15", "2017-04-01 15:30:37", "202.46.48.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("52642", "10", "2017-04-01 15:30:37", "202.46.48.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("52643", "3", "2017-04-01 15:30:38", "202.46.48.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("52644", "15", "2017-04-01 16:03:55", "202.46.51.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("52645", "10", "2017-04-01 16:03:55", "202.46.51.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("52646", "3", "2017-04-01 16:03:55", "202.46.51.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("52647", "15", "2017-04-01 17:07:29", "163.172.66.126", "63");
INSERT INTO `wp_rg_form_view` VALUES("52648", "10", "2017-04-01 17:07:29", "163.172.66.126", "77");
INSERT INTO `wp_rg_form_view` VALUES("52649", "3", "2017-04-01 17:07:29", "163.172.66.126", "75");
INSERT INTO `wp_rg_form_view` VALUES("52650", "13", "2017-04-01 17:28:46", "207.46.13.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("52651", "8", "2017-04-01 17:28:48", "207.46.13.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("52652", "9", "2017-04-01 17:29:42", "157.55.39.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("52653", "3", "2017-04-01 18:32:59", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("52654", "6", "2017-04-01 18:32:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52655", "9", "2017-04-01 18:33:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52656", "8", "2017-04-01 18:33:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52657", "10", "2017-04-01 18:33:00", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("52658", "13", "2017-04-01 18:33:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52659", "15", "2017-04-01 18:33:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52660", "3", "2017-04-01 19:10:09", "207.46.13.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("52661", "15", "2017-04-01 19:10:10", "207.46.13.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("52662", "10", "2017-04-01 19:10:10", "207.46.13.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("52663", "15", "2017-04-01 20:08:50", "77.75.78.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("52664", "10", "2017-04-01 20:08:50", "77.75.78.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("52665", "3", "2017-04-01 20:08:50", "77.75.78.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("52666", "3", "2017-04-01 21:10:48", "47.150.129.197", "10");
INSERT INTO `wp_rg_form_view` VALUES("52667", "15", "2017-04-01 21:10:48", "47.150.129.197", "6");
INSERT INTO `wp_rg_form_view` VALUES("52668", "10", "2017-04-01 21:10:48", "47.150.129.197", "6");
INSERT INTO `wp_rg_form_view` VALUES("52669", "3", "2017-04-01 22:14:49", "207.46.13.104", "19");
INSERT INTO `wp_rg_form_view` VALUES("52670", "15", "2017-04-01 22:14:49", "207.46.13.104", "18");
INSERT INTO `wp_rg_form_view` VALUES("52671", "10", "2017-04-01 22:14:49", "207.46.13.104", "13");
INSERT INTO `wp_rg_form_view` VALUES("52672", "15", "2017-04-01 23:11:31", "157.55.39.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("52673", "10", "2017-04-01 23:11:31", "157.55.39.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("52674", "3", "2017-04-01 23:11:31", "157.55.39.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("52675", "3", "2017-04-02 00:47:32", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("52676", "6", "2017-04-02 00:47:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52677", "9", "2017-04-02 00:47:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52678", "8", "2017-04-02 00:47:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52679", "10", "2017-04-02 00:47:34", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("52680", "13", "2017-04-02 00:47:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52681", "15", "2017-04-02 00:47:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52682", "14", "2017-04-02 01:12:11", "207.46.13.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("52683", "15", "2017-04-02 01:15:24", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("52684", "10", "2017-04-02 01:15:24", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("52685", "3", "2017-04-02 01:15:24", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("52686", "11", "2017-04-02 02:07:52", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52687", "13", "2017-04-02 02:53:07", "163.172.65.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("52688", "15", "2017-04-02 04:26:38", "202.46.54.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("52689", "10", "2017-04-02 04:26:39", "202.46.54.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("52690", "3", "2017-04-02 04:26:39", "202.46.54.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("52691", "3", "2017-04-02 05:33:16", "202.46.53.177", "4");
INSERT INTO `wp_rg_form_view` VALUES("52692", "15", "2017-04-02 05:33:17", "202.46.53.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("52693", "10", "2017-04-02 05:33:17", "202.46.53.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("52694", "15", "2017-04-02 06:15:05", "157.55.39.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("52695", "10", "2017-04-02 06:15:06", "157.55.39.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("52696", "3", "2017-04-02 06:15:06", "157.55.39.159", "4");
INSERT INTO `wp_rg_form_view` VALUES("52697", "15", "2017-04-02 07:32:09", "164.132.161.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("52698", "10", "2017-04-02 07:32:13", "164.132.161.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("52699", "3", "2017-04-02 07:32:13", "164.132.161.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("52700", "3", "2017-04-02 08:33:22", "163.172.65.217", "4");
INSERT INTO `wp_rg_form_view` VALUES("52701", "15", "2017-04-02 08:50:29", "163.172.64.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("52702", "10", "2017-04-02 08:50:30", "163.172.64.230", "2");
INSERT INTO `wp_rg_form_view` VALUES("52703", "15", "2017-04-02 09:47:32", "157.55.39.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("52704", "10", "2017-04-02 09:47:33", "157.55.39.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("52705", "3", "2017-04-02 09:47:33", "157.55.39.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("52706", "15", "2017-04-02 10:03:11", "163.172.66.9", "5");
INSERT INTO `wp_rg_form_view` VALUES("52707", "10", "2017-04-02 10:03:11", "163.172.66.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("52708", "3", "2017-04-02 10:03:11", "163.172.66.9", "5");
INSERT INTO `wp_rg_form_view` VALUES("52709", "3", "2017-04-02 11:34:03", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("52710", "6", "2017-04-02 11:34:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52711", "9", "2017-04-02 11:34:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52712", "8", "2017-04-02 11:34:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52713", "10", "2017-04-02 11:34:05", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("52714", "13", "2017-04-02 11:34:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52715", "15", "2017-04-02 11:34:06", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("52716", "3", "2017-04-02 12:17:07", "207.46.13.187", "5");
INSERT INTO `wp_rg_form_view` VALUES("52717", "15", "2017-04-02 12:17:07", "207.46.13.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("52718", "10", "2017-04-02 12:17:07", "207.46.13.187", "5");
INSERT INTO `wp_rg_form_view` VALUES("52719", "3", "2017-04-02 13:06:34", "207.46.13.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("52720", "15", "2017-04-02 13:06:34", "207.46.13.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("52721", "10", "2017-04-02 13:06:34", "207.46.13.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("52722", "14", "2017-04-02 13:13:56", "117.14.152.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("52723", "3", "2017-04-02 14:09:27", "51.255.66.103", "7");
INSERT INTO `wp_rg_form_view` VALUES("52724", "15", "2017-04-02 14:09:27", "51.255.66.103", "5");
INSERT INTO `wp_rg_form_view` VALUES("52725", "10", "2017-04-02 14:09:27", "51.255.66.103", "5");
INSERT INTO `wp_rg_form_view` VALUES("52726", "5", "2017-04-02 14:21:16", "77.75.78.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("52727", "15", "2017-04-02 15:02:34", "24.69.144.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("52728", "10", "2017-04-02 15:02:34", "24.69.144.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("52729", "3", "2017-04-02 15:02:34", "24.69.144.171", "6");
INSERT INTO `wp_rg_form_view` VALUES("52730", "15", "2017-04-02 16:18:22", "157.55.39.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("52731", "10", "2017-04-02 16:18:22", "157.55.39.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("52732", "3", "2017-04-02 16:18:22", "157.55.39.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("52733", "15", "2017-04-02 17:03:19", "163.172.64.216", "3");
INSERT INTO `wp_rg_form_view` VALUES("52734", "10", "2017-04-02 17:03:19", "163.172.64.216", "3");
INSERT INTO `wp_rg_form_view` VALUES("52735", "3", "2017-04-02 17:03:19", "163.172.64.216", "4");
INSERT INTO `wp_rg_form_view` VALUES("52736", "14", "2017-04-02 17:17:03", "216.232.149.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("52737", "14", "2017-04-02 18:08:47", "154.5.205.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("52738", "3", "2017-04-02 18:14:41", "52.88.109.3", "51");
INSERT INTO `wp_rg_form_view` VALUES("52739", "6", "2017-04-02 18:14:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52740", "9", "2017-04-02 18:14:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52741", "8", "2017-04-02 18:14:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52742", "10", "2017-04-02 18:14:42", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("52743", "13", "2017-04-02 18:14:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52744", "15", "2017-04-02 18:14:43", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("52745", "14", "2017-04-02 19:20:18", "62.210.111.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("52746", "15", "2017-04-02 19:26:31", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("52747", "10", "2017-04-02 19:26:31", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("52748", "3", "2017-04-02 19:26:31", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("52749", "9", "2017-04-02 20:29:05", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("52750", "15", "2017-04-02 20:29:05", "47.150.129.197", "7");
INSERT INTO `wp_rg_form_view` VALUES("52751", "10", "2017-04-02 20:29:05", "47.150.129.197", "7");
INSERT INTO `wp_rg_form_view` VALUES("52752", "3", "2017-04-02 20:29:05", "47.150.129.197", "13");
INSERT INTO `wp_rg_form_view` VALUES("52753", "15", "2017-04-02 21:53:06", "202.46.57.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("52754", "10", "2017-04-02 21:53:07", "202.46.57.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("52755", "3", "2017-04-02 21:53:08", "202.46.57.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("52756", "14", "2017-04-02 22:01:07", "37.230.135.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("52757", "15", "2017-04-02 22:27:18", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("52758", "10", "2017-04-02 22:27:18", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("52759", "3", "2017-04-02 22:27:18", "66.249.79.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("52760", "3", "2017-04-02 23:06:34", "163.172.66.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("52761", "15", "2017-04-02 23:06:34", "163.172.66.106", "4");
INSERT INTO `wp_rg_form_view` VALUES("52762", "10", "2017-04-02 23:06:34", "163.172.66.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("52763", "2", "2017-04-02 23:21:55", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("52764", "15", "2017-04-03 00:52:42", "66.249.79.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("52765", "10", "2017-04-03 00:52:45", "66.249.79.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("52766", "3", "2017-04-03 00:52:45", "66.249.79.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("52767", "15", "2017-04-03 01:04:02", "202.46.55.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("52768", "10", "2017-04-03 01:04:02", "202.46.55.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("52769", "3", "2017-04-03 01:04:02", "202.46.55.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("52770", "3", "2017-04-03 02:10:42", "202.46.58.57", "5");
INSERT INTO `wp_rg_form_view` VALUES("52771", "15", "2017-04-03 02:10:44", "202.46.58.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("52772", "10", "2017-04-03 02:10:44", "202.46.58.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("52773", "3", "2017-04-03 03:17:23", "202.46.49.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("52774", "15", "2017-04-03 03:17:25", "202.46.49.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("52775", "10", "2017-04-03 03:17:25", "202.46.49.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("52776", "15", "2017-04-03 04:16:03", "66.249.79.40", "6");
INSERT INTO `wp_rg_form_view` VALUES("52777", "10", "2017-04-03 04:16:04", "66.249.79.40", "5");
INSERT INTO `wp_rg_form_view` VALUES("52778", "3", "2017-04-03 04:16:04", "66.249.79.40", "6");
INSERT INTO `wp_rg_form_view` VALUES("52779", "14", "2017-04-03 04:43:34", "208.181.174.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("52780", "3", "2017-04-03 05:09:16", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("52781", "6", "2017-04-03 05:09:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52782", "9", "2017-04-03 05:09:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52783", "8", "2017-04-03 05:09:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52784", "10", "2017-04-03 05:09:18", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("52785", "13", "2017-04-03 05:09:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52786", "15", "2017-04-03 05:09:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("52787", "14", "2017-04-03 06:06:21", "24.68.143.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("52788", "15", "2017-04-03 06:19:26", "77.75.79.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("52789", "10", "2017-04-03 06:19:26", "77.75.79.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("52790", "3", "2017-04-03 06:19:26", "77.75.79.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("52791", "5", "2017-04-03 06:49:00", "202.46.49.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("52792", "15", "2017-04-03 07:11:45", "207.46.13.193", "4");
INSERT INTO `wp_rg_form_view` VALUES("52793", "10", "2017-04-03 07:11:45", "207.46.13.193", "4");
INSERT INTO `wp_rg_form_view` VALUES("52794", "3", "2017-04-03 07:11:45", "207.46.13.193", "5");
INSERT INTO `wp_rg_form_view` VALUES("52795", "15", "2017-04-03 08:09:40", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("52796", "10", "2017-04-03 08:09:40", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("52797", "3", "2017-04-03 08:09:40", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("52798", "14", "2017-04-03 08:28:04", "132.148.76.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("52799", "3", "2017-04-03 09:20:15", "66.249.79.40", "13");
INSERT INTO `wp_rg_form_view` VALUES("52800", "15", "2017-04-03 09:20:18", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("52801", "10", "2017-04-03 09:20:18", "66.249.79.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("52802", "8", "2017-04-03 09:26:43", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("52803", "13", "2017-04-03 09:26:43", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("52804", "15", "2017-04-03 10:09:00", "202.46.56.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("52805", "10", "2017-04-03 10:09:01", "202.46.56.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("52806", "3", "2017-04-03 10:09:01", "202.46.56.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("52807", "3", "2017-04-03 11:57:42", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("52808", "6", "2017-04-03 11:57:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52809", "9", "2017-04-03 11:57:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52810", "8", "2017-04-03 11:57:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52811", "10", "2017-04-03 11:57:43", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("52812", "13", "2017-04-03 11:57:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52813", "15", "2017-04-03 11:57:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52814", "3", "2017-04-03 12:14:07", "207.46.13.68", "4");
INSERT INTO `wp_rg_form_view` VALUES("52815", "15", "2017-04-03 12:14:07", "207.46.13.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("52816", "10", "2017-04-03 12:14:07", "207.46.13.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("52817", "15", "2017-04-03 13:36:14", "220.181.108.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("52818", "10", "2017-04-03 13:36:15", "220.181.108.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("52819", "3", "2017-04-03 13:36:16", "220.181.108.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("52820", "3", "2017-04-03 14:16:03", "66.249.79.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("52821", "15", "2017-04-03 14:16:04", "66.249.79.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("52822", "10", "2017-04-03 14:16:04", "66.249.79.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("52823", "10", "2017-04-03 15:01:05", "188.40.46.135", "11");
INSERT INTO `wp_rg_form_view` VALUES("52824", "11", "2017-04-03 15:01:14", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("52825", "15", "2017-04-03 15:01:19", "188.40.46.135", "13");
INSERT INTO `wp_rg_form_view` VALUES("52826", "3", "2017-04-03 15:01:19", "188.40.46.135", "9");
INSERT INTO `wp_rg_form_view` VALUES("52827", "2", "2017-04-03 15:39:12", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("52828", "15", "2017-04-03 16:24:40", "188.40.46.135", "15");
INSERT INTO `wp_rg_form_view` VALUES("52829", "10", "2017-04-03 16:24:40", "188.40.46.135", "15");
INSERT INTO `wp_rg_form_view` VALUES("52830", "3", "2017-04-03 16:24:40", "188.40.46.135", "20");
INSERT INTO `wp_rg_form_view` VALUES("52831", "15", "2017-04-03 17:00:39", "77.75.76.168", "13");
INSERT INTO `wp_rg_form_view` VALUES("52832", "10", "2017-04-03 17:00:39", "77.75.76.168", "15");
INSERT INTO `wp_rg_form_view` VALUES("52833", "3", "2017-04-03 17:00:40", "77.75.76.168", "13");
INSERT INTO `wp_rg_form_view` VALUES("52834", "11", "2017-04-03 17:34:08", "82.2.44.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("52835", "2", "2017-04-03 17:34:52", "82.2.44.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("52836", "15", "2017-04-03 18:23:26", "209.52.88.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("52837", "10", "2017-04-03 18:23:26", "209.52.88.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("52838", "3", "2017-04-03 18:23:26", "209.52.88.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("52839", "15", "2017-04-03 19:12:40", "66.249.79.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("52840", "10", "2017-04-03 19:12:43", "66.249.79.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("52841", "3", "2017-04-03 19:12:43", "66.249.79.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("52842", "3", "2017-04-03 20:02:38", "47.150.129.197", "11");
INSERT INTO `wp_rg_form_view` VALUES("52843", "15", "2017-04-03 20:02:38", "47.150.129.197", "11");
INSERT INTO `wp_rg_form_view` VALUES("52844", "10", "2017-04-03 20:02:38", "47.150.129.197", "10");
INSERT INTO `wp_rg_form_view` VALUES("52845", "15", "2017-04-03 21:01:52", "24.68.4.16", "7");
INSERT INTO `wp_rg_form_view` VALUES("52846", "10", "2017-04-03 21:01:52", "24.68.4.16", "9");
INSERT INTO `wp_rg_form_view` VALUES("52847", "3", "2017-04-03 21:01:52", "24.68.4.16", "7");
INSERT INTO `wp_rg_form_view` VALUES("52848", "3", "2017-04-03 22:10:01", "202.46.58.26", "30");
INSERT INTO `wp_rg_form_view` VALUES("52849", "15", "2017-04-03 22:10:02", "202.46.58.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("52850", "10", "2017-04-03 22:10:02", "202.46.58.26", "5");
INSERT INTO `wp_rg_form_view` VALUES("52851", "6", "2017-04-03 22:59:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52852", "9", "2017-04-03 22:59:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52853", "8", "2017-04-03 22:59:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52854", "13", "2017-04-03 22:59:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52855", "10", "2017-04-03 23:08:52", "157.55.39.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("52856", "15", "2017-04-03 23:08:52", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("52857", "3", "2017-04-03 23:08:53", "157.55.39.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("52858", "5", "2017-04-03 23:34:17", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("52859", "15", "2017-04-04 01:29:07", "202.46.58.132", "3");
INSERT INTO `wp_rg_form_view` VALUES("52860", "10", "2017-04-04 01:29:09", "202.46.58.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("52861", "3", "2017-04-04 01:29:09", "202.46.58.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("52862", "15", "2017-04-04 02:23:52", "207.46.13.39", "5");
INSERT INTO `wp_rg_form_view` VALUES("52863", "10", "2017-04-04 02:23:53", "207.46.13.39", "5");
INSERT INTO `wp_rg_form_view` VALUES("52864", "3", "2017-04-04 02:23:53", "207.46.13.39", "5");
INSERT INTO `wp_rg_form_view` VALUES("52865", "15", "2017-04-04 03:05:42", "40.77.167.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("52866", "10", "2017-04-04 03:05:42", "40.77.167.47", "6");
INSERT INTO `wp_rg_form_view` VALUES("52867", "3", "2017-04-04 03:05:42", "40.77.167.47", "16");
INSERT INTO `wp_rg_form_view` VALUES("52868", "13", "2017-04-04 03:20:20", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52869", "15", "2017-04-04 04:08:22", "66.249.84.54", "43");
INSERT INTO `wp_rg_form_view` VALUES("52870", "10", "2017-04-04 04:08:22", "66.249.84.54", "47");
INSERT INTO `wp_rg_form_view` VALUES("52871", "3", "2017-04-04 04:08:22", "66.249.84.54", "56");
INSERT INTO `wp_rg_form_view` VALUES("52872", "6", "2017-04-04 04:46:36", "46.229.168.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("52873", "14", "2017-04-04 04:50:22", "46.229.168.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("52874", "15", "2017-04-04 05:21:42", "51.255.65.94", "16");
INSERT INTO `wp_rg_form_view` VALUES("52875", "10", "2017-04-04 05:21:42", "51.255.65.94", "17");
INSERT INTO `wp_rg_form_view` VALUES("52876", "3", "2017-04-04 05:21:43", "51.255.65.94", "43");
INSERT INTO `wp_rg_form_view` VALUES("52877", "14", "2017-04-04 05:29:52", "154.20.39.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("52878", "6", "2017-04-04 05:45:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52879", "9", "2017-04-04 05:45:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52880", "8", "2017-04-04 05:45:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52881", "13", "2017-04-04 05:45:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52882", "2", "2017-04-04 05:58:21", "149.5.113.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("52883", "11", "2017-04-04 05:58:38", "207.195.228.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("52884", "3", "2017-04-04 06:06:31", "68.180.229.247", "115");
INSERT INTO `wp_rg_form_view` VALUES("52885", "15", "2017-04-04 06:06:31", "68.180.229.247", "41");
INSERT INTO `wp_rg_form_view` VALUES("52886", "10", "2017-04-04 06:06:31", "68.180.229.247", "43");
INSERT INTO `wp_rg_form_view` VALUES("52887", "6", "2017-04-04 06:22:31", "95.143.32.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("52888", "9", "2017-04-04 06:22:32", "95.143.32.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("52889", "8", "2017-04-04 06:22:32", "95.143.32.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("52890", "13", "2017-04-04 06:22:33", "95.143.32.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("52891", "14", "2017-04-04 06:23:11", "66.160.179.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("52892", "2", "2017-04-04 06:23:25", "63.223.124.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("52893", "11", "2017-04-04 06:23:42", "66.160.179.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("52894", "3", "2017-04-04 07:16:59", "202.46.53.151", "6");
INSERT INTO `wp_rg_form_view` VALUES("52895", "15", "2017-04-04 07:28:11", "164.132.161.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("52896", "10", "2017-04-04 07:28:11", "164.132.161.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("52897", "15", "2017-04-04 08:46:07", "164.132.161.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("52898", "10", "2017-04-04 08:46:07", "164.132.161.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("52899", "3", "2017-04-04 08:46:07", "164.132.161.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("52900", "15", "2017-04-04 09:43:10", "40.77.167.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("52901", "10", "2017-04-04 09:43:11", "40.77.167.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("52902", "3", "2017-04-04 09:43:11", "40.77.167.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("52903", "15", "2017-04-04 10:21:49", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("52904", "10", "2017-04-04 10:21:49", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("52905", "3", "2017-04-04 10:21:49", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("52906", "8", "2017-04-04 10:58:55", "164.132.161.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("52907", "3", "2017-04-04 11:12:56", "202.46.56.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("52908", "15", "2017-04-04 11:12:56", "202.46.56.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("52909", "10", "2017-04-04 11:12:57", "202.46.56.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("52910", "3", "2017-04-04 12:27:24", "51.255.65.13", "4");
INSERT INTO `wp_rg_form_view` VALUES("52911", "15", "2017-04-04 12:27:24", "51.255.65.13", "3");
INSERT INTO `wp_rg_form_view` VALUES("52912", "10", "2017-04-04 12:27:24", "51.255.65.13", "3");
INSERT INTO `wp_rg_form_view` VALUES("52913", "3", "2017-04-04 13:07:44", "163.172.65.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("52914", "15", "2017-04-04 13:07:47", "163.172.65.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("52915", "10", "2017-04-04 13:07:47", "163.172.65.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("52916", "15", "2017-04-04 14:10:39", "40.77.167.110", "4");
INSERT INTO `wp_rg_form_view` VALUES("52917", "10", "2017-04-04 14:10:42", "40.77.167.110", "6");
INSERT INTO `wp_rg_form_view` VALUES("52918", "3", "2017-04-04 14:10:43", "40.77.167.110", "30");
INSERT INTO `wp_rg_form_view` VALUES("52919", "6", "2017-04-04 14:53:05", "163.172.66.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("52920", "9", "2017-04-04 14:53:05", "163.172.66.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("52921", "8", "2017-04-04 14:53:06", "163.172.66.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("52922", "13", "2017-04-04 14:53:06", "163.172.66.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("52923", "15", "2017-04-04 15:22:16", "202.46.51.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("52924", "10", "2017-04-04 15:22:16", "202.46.51.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("52925", "3", "2017-04-04 15:22:16", "202.46.51.201", "3");
INSERT INTO `wp_rg_form_view` VALUES("52926", "10", "2017-04-04 16:13:28", "75.154.240.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("52927", "15", "2017-04-04 16:13:28", "75.154.240.57", "3");
INSERT INTO `wp_rg_form_view` VALUES("52928", "3", "2017-04-04 16:13:28", "75.154.240.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("52929", "3", "2017-04-04 17:25:55", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("52930", "6", "2017-04-04 17:25:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52931", "9", "2017-04-04 17:25:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52932", "8", "2017-04-04 17:25:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52933", "10", "2017-04-04 17:25:57", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("52934", "13", "2017-04-04 17:25:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52935", "15", "2017-04-04 17:25:57", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("52936", "15", "2017-04-04 18:03:03", "202.46.58.158", "5");
INSERT INTO `wp_rg_form_view` VALUES("52937", "10", "2017-04-04 18:03:03", "202.46.58.158", "5");
INSERT INTO `wp_rg_form_view` VALUES("52938", "3", "2017-04-04 18:03:03", "202.46.58.158", "7");
INSERT INTO `wp_rg_form_view` VALUES("52939", "3", "2017-04-04 19:02:48", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("52940", "15", "2017-04-04 19:02:48", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52941", "10", "2017-04-04 19:02:48", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52942", "14", "2017-04-04 19:33:43", "96.54.58.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("52943", "15", "2017-04-04 20:05:38", "202.46.51.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("52944", "10", "2017-04-04 20:05:39", "202.46.51.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("52945", "3", "2017-04-04 20:05:39", "202.46.51.190", "4");
INSERT INTO `wp_rg_form_view` VALUES("52946", "15", "2017-04-04 21:05:09", "154.20.32.89", "10");
INSERT INTO `wp_rg_form_view` VALUES("52947", "10", "2017-04-04 21:05:09", "154.20.32.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("52948", "3", "2017-04-04 21:05:10", "154.20.32.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("52949", "13", "2017-04-04 21:45:38", "202.46.48.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("52950", "15", "2017-04-04 22:03:24", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("52951", "10", "2017-04-04 22:03:24", "68.180.229.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("52952", "3", "2017-04-04 22:03:24", "68.180.229.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("52953", "11", "2017-04-04 22:52:38", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("52954", "15", "2017-04-05 00:11:27", "24.68.137.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("52955", "10", "2017-04-05 00:11:27", "24.68.137.8", "5");
INSERT INTO `wp_rg_form_view` VALUES("52956", "3", "2017-04-05 00:11:28", "24.68.137.8", "28");
INSERT INTO `wp_rg_form_view` VALUES("52957", "6", "2017-04-05 00:35:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52958", "9", "2017-04-05 00:35:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52959", "8", "2017-04-05 00:35:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52960", "13", "2017-04-05 00:35:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52961", "15", "2017-04-05 01:11:40", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52962", "10", "2017-04-05 01:11:40", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("52963", "3", "2017-04-05 01:11:40", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("52964", "3", "2017-04-05 02:16:14", "163.172.68.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("52965", "15", "2017-04-05 02:16:16", "163.172.68.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("52966", "10", "2017-04-05 02:16:16", "163.172.68.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("52967", "15", "2017-04-05 03:10:11", "103.207.37.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("52968", "10", "2017-04-05 03:10:11", "103.207.37.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("52969", "3", "2017-04-05 03:10:11", "103.207.37.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("52970", "14", "2017-04-05 03:10:23", "195.22.127.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("52971", "15", "2017-04-05 04:19:28", "202.46.48.210", "8");
INSERT INTO `wp_rg_form_view` VALUES("52972", "10", "2017-04-05 04:19:28", "202.46.48.210", "5");
INSERT INTO `wp_rg_form_view` VALUES("52973", "3", "2017-04-05 04:19:28", "202.46.48.210", "6");
INSERT INTO `wp_rg_form_view` VALUES("52974", "15", "2017-04-05 05:22:48", "24.68.153.187", "6");
INSERT INTO `wp_rg_form_view` VALUES("52975", "10", "2017-04-05 05:22:52", "24.68.153.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("52976", "10", "2017-04-05 05:22:52", "24.68.153.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("52977", "3", "2017-04-05 05:22:53", "24.68.153.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("52978", "3", "2017-04-05 05:22:53", "24.68.153.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("52979", "2", "2017-04-05 08:12:08", "220.181.108.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("52980", "3", "2017-04-05 09:02:31", "202.46.50.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("52981", "15", "2017-04-05 09:02:32", "202.46.50.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("52982", "10", "2017-04-05 09:02:33", "202.46.50.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("52983", "15", "2017-04-05 10:21:49", "51.255.65.85", "4");
INSERT INTO `wp_rg_form_view` VALUES("52984", "10", "2017-04-05 10:21:49", "51.255.65.85", "5");
INSERT INTO `wp_rg_form_view` VALUES("52985", "3", "2017-04-05 10:21:49", "51.255.65.85", "6");
INSERT INTO `wp_rg_form_view` VALUES("52986", "14", "2017-04-05 11:09:07", "164.132.161.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("52987", "3", "2017-04-05 12:32:47", "164.132.161.28", "29");
INSERT INTO `wp_rg_form_view` VALUES("52988", "15", "2017-04-05 12:32:49", "164.132.161.28", "3");
INSERT INTO `wp_rg_form_view` VALUES("52989", "10", "2017-04-05 12:32:49", "164.132.161.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("52990", "6", "2017-04-05 12:56:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52991", "9", "2017-04-05 12:56:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52992", "8", "2017-04-05 12:56:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52993", "13", "2017-04-05 12:56:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("52994", "10", "2017-04-05 13:31:44", "157.55.39.29", "30");
INSERT INTO `wp_rg_form_view` VALUES("52995", "3", "2017-04-05 13:31:45", "157.55.39.29", "47");
INSERT INTO `wp_rg_form_view` VALUES("52996", "15", "2017-04-05 13:31:46", "157.55.39.29", "27");
INSERT INTO `wp_rg_form_view` VALUES("52997", "9", "2017-04-05 13:32:04", "157.55.39.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("52998", "13", "2017-04-05 13:32:10", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("52999", "15", "2017-04-05 14:02:31", "202.46.55.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("53000", "10", "2017-04-05 14:02:33", "202.46.55.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("53001", "3", "2017-04-05 14:02:33", "202.46.55.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("53002", "15", "2017-04-05 15:12:47", "77.75.78.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("53003", "10", "2017-04-05 15:12:47", "77.75.78.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("53004", "3", "2017-04-05 15:12:47", "77.75.78.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("53005", "15", "2017-04-05 16:03:18", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53006", "10", "2017-04-05 16:03:20", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("53007", "3", "2017-04-05 16:03:20", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("53008", "15", "2017-04-05 17:17:42", "163.172.66.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("53009", "10", "2017-04-05 17:17:42", "163.172.66.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("53010", "3", "2017-04-05 17:17:43", "163.172.66.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("53011", "15", "2017-04-05 18:18:13", "77.75.77.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("53012", "10", "2017-04-05 18:18:13", "77.75.77.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("53013", "3", "2017-04-05 18:18:14", "77.75.77.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("53014", "15", "2017-04-05 19:08:04", "202.46.49.111", "5");
INSERT INTO `wp_rg_form_view` VALUES("53015", "10", "2017-04-05 19:08:04", "202.46.49.111", "4");
INSERT INTO `wp_rg_form_view` VALUES("53016", "3", "2017-04-05 19:08:04", "202.46.49.111", "6");
INSERT INTO `wp_rg_form_view` VALUES("53017", "6", "2017-04-05 19:26:07", "164.132.161.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("53018", "15", "2017-04-05 20:02:39", "77.75.78.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("53019", "10", "2017-04-05 20:02:39", "77.75.78.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("53020", "3", "2017-04-05 20:02:39", "77.75.78.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("53021", "3", "2017-04-05 21:06:49", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("53022", "6", "2017-04-05 21:06:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53023", "9", "2017-04-05 21:06:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53024", "8", "2017-04-05 21:06:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53025", "10", "2017-04-05 21:06:50", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("53026", "13", "2017-04-05 21:06:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53027", "15", "2017-04-05 21:06:51", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53028", "15", "2017-04-05 22:12:31", "202.46.54.31", "10");
INSERT INTO `wp_rg_form_view` VALUES("53029", "10", "2017-04-05 22:12:31", "202.46.54.31", "9");
INSERT INTO `wp_rg_form_view` VALUES("53030", "3", "2017-04-05 22:12:31", "202.46.54.31", "10");
INSERT INTO `wp_rg_form_view` VALUES("53031", "2", "2017-04-05 22:38:05", "174.127.133.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("53032", "15", "2017-04-05 23:01:02", "174.127.133.56", "25");
INSERT INTO `wp_rg_form_view` VALUES("53033", "10", "2017-04-05 23:01:02", "174.127.133.56", "29");
INSERT INTO `wp_rg_form_view` VALUES("53034", "3", "2017-04-05 23:01:02", "174.127.133.56", "50");
INSERT INTO `wp_rg_form_view` VALUES("53035", "6", "2017-04-05 23:03:41", "174.127.133.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("53036", "9", "2017-04-05 23:03:42", "174.127.133.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("53037", "8", "2017-04-05 23:03:42", "174.127.133.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("53038", "13", "2017-04-05 23:03:42", "174.127.133.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("53039", "14", "2017-04-05 23:11:48", "174.127.133.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("53040", "3", "2017-04-06 00:25:52", "202.46.50.11", "28");
INSERT INTO `wp_rg_form_view` VALUES("53041", "15", "2017-04-06 00:25:53", "202.46.50.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("53042", "10", "2017-04-06 00:25:53", "202.46.50.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("53043", "6", "2017-04-06 00:57:05", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53044", "9", "2017-04-06 00:57:05", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53045", "8", "2017-04-06 00:57:05", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53046", "13", "2017-04-06 00:57:06", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53047", "3", "2017-04-06 01:32:31", "202.46.58.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("53048", "15", "2017-04-06 01:32:32", "202.46.58.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("53049", "10", "2017-04-06 01:32:32", "202.46.58.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("53050", "15", "2017-04-06 02:29:21", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("53051", "10", "2017-04-06 02:39:13", "202.46.50.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("53052", "3", "2017-04-06 02:39:13", "202.46.50.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("53053", "3", "2017-04-06 03:12:33", "202.46.52.151", "4");
INSERT INTO `wp_rg_form_view` VALUES("53054", "15", "2017-04-06 03:12:33", "202.46.52.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("53055", "10", "2017-04-06 03:12:33", "202.46.52.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("53056", "10", "2017-04-06 04:12:52", "51.255.65.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("53057", "15", "2017-04-06 04:12:52", "51.255.65.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("53058", "3", "2017-04-06 04:12:52", "51.255.65.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("53059", "15", "2017-04-06 05:21:11", "157.55.39.26", "7");
INSERT INTO `wp_rg_form_view` VALUES("53060", "10", "2017-04-06 05:21:12", "157.55.39.26", "8");
INSERT INTO `wp_rg_form_view` VALUES("53061", "3", "2017-04-06 05:21:12", "157.55.39.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("53062", "11", "2017-04-06 05:30:43", "163.172.66.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("53063", "15", "2017-04-06 06:06:55", "77.75.77.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("53064", "10", "2017-04-06 06:06:55", "77.75.77.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("53065", "3", "2017-04-06 06:06:55", "77.75.77.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("53066", "15", "2017-04-06 07:03:34", "77.75.77.72", "7");
INSERT INTO `wp_rg_form_view` VALUES("53067", "10", "2017-04-06 07:03:34", "77.75.77.72", "9");
INSERT INTO `wp_rg_form_view` VALUES("53068", "3", "2017-04-06 07:03:34", "77.75.77.72", "8");
INSERT INTO `wp_rg_form_view` VALUES("53069", "15", "2017-04-06 08:07:33", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("53070", "10", "2017-04-06 08:07:33", "68.180.229.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("53071", "3", "2017-04-06 08:07:33", "68.180.229.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("53072", "6", "2017-04-06 08:27:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53073", "9", "2017-04-06 08:27:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53074", "8", "2017-04-06 08:27:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53075", "13", "2017-04-06 08:27:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53076", "3", "2017-04-06 09:11:11", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53077", "15", "2017-04-06 09:16:12", "202.46.55.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("53078", "10", "2017-04-06 09:16:12", "202.46.55.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("53079", "15", "2017-04-06 10:07:07", "163.172.65.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("53080", "10", "2017-04-06 10:07:07", "163.172.65.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("53081", "3", "2017-04-06 10:07:07", "163.172.65.123", "3");
INSERT INTO `wp_rg_form_view` VALUES("53082", "14", "2017-04-06 10:10:51", "62.210.111.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("53083", "15", "2017-04-06 11:53:45", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("53084", "10", "2017-04-06 11:53:46", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("53085", "3", "2017-04-06 11:53:46", "66.249.79.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("53086", "15", "2017-04-06 12:50:41", "164.132.161.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("53087", "10", "2017-04-06 12:50:41", "164.132.161.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("53088", "3", "2017-04-06 12:50:42", "164.132.161.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("53089", "14", "2017-04-06 12:55:25", "37.153.169.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("53090", "3", "2017-04-06 13:12:39", "163.172.66.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("53091", "15", "2017-04-06 14:03:10", "202.46.54.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("53092", "10", "2017-04-06 14:03:12", "202.46.54.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("53093", "3", "2017-04-06 14:03:12", "202.46.54.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("53094", "3", "2017-04-06 15:50:59", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("53095", "6", "2017-04-06 15:51:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53096", "9", "2017-04-06 15:51:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53097", "8", "2017-04-06 15:51:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53098", "10", "2017-04-06 15:51:01", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53099", "13", "2017-04-06 15:51:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53100", "15", "2017-04-06 15:51:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53101", "3", "2017-04-06 16:14:01", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53102", "15", "2017-04-06 16:14:02", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53103", "10", "2017-04-06 16:14:02", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53104", "3", "2017-04-06 17:07:08", "202.46.57.19", "4");
INSERT INTO `wp_rg_form_view` VALUES("53105", "15", "2017-04-06 17:07:08", "202.46.57.19", "3");
INSERT INTO `wp_rg_form_view` VALUES("53106", "10", "2017-04-06 17:07:08", "202.46.57.19", "3");
INSERT INTO `wp_rg_form_view` VALUES("53107", "9", "2017-04-06 17:27:01", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("53108", "2", "2017-04-06 17:52:41", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("53109", "10", "2017-04-06 18:00:38", "205.201.132.14", "6");
INSERT INTO `wp_rg_form_view` VALUES("53110", "15", "2017-04-06 18:00:38", "205.201.132.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("53111", "3", "2017-04-06 18:00:39", "205.201.132.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("53112", "14", "2017-04-06 18:03:55", "107.175.65.132", "3");
INSERT INTO `wp_rg_form_view` VALUES("53113", "15", "2017-04-06 19:20:27", "202.46.51.191", "17");
INSERT INTO `wp_rg_form_view` VALUES("53114", "10", "2017-04-06 19:20:28", "202.46.51.191", "20");
INSERT INTO `wp_rg_form_view` VALUES("53115", "3", "2017-04-06 19:20:29", "202.46.51.191", "13");
INSERT INTO `wp_rg_form_view` VALUES("53116", "15", "2017-04-06 20:20:12", "108.172.119.234", "11");
INSERT INTO `wp_rg_form_view` VALUES("53117", "10", "2017-04-06 20:20:12", "108.172.119.234", "9");
INSERT INTO `wp_rg_form_view` VALUES("53118", "3", "2017-04-06 20:20:12", "108.172.119.234", "10");
INSERT INTO `wp_rg_form_view` VALUES("53119", "15", "2017-04-06 21:00:29", "202.46.53.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("53120", "10", "2017-04-06 21:00:30", "202.46.53.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("53121", "3", "2017-04-06 21:00:30", "202.46.53.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("53122", "15", "2017-04-06 22:07:05", "202.46.49.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("53123", "10", "2017-04-06 22:07:06", "202.46.49.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("53124", "3", "2017-04-06 22:07:06", "202.46.49.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("53125", "2", "2017-04-06 22:51:42", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53126", "15", "2017-04-06 23:13:47", "202.46.51.158", "4");
INSERT INTO `wp_rg_form_view` VALUES("53127", "10", "2017-04-06 23:13:48", "202.46.51.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("53128", "3", "2017-04-06 23:13:48", "202.46.51.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("53129", "14", "2017-04-06 23:16:37", "70.66.168.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("53130", "11", "2017-04-06 23:50:15", "154.20.36.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("53131", "2", "2017-04-06 23:50:21", "154.20.36.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("53132", "14", "2017-04-07 00:17:37", "23.245.152.181", "4");
INSERT INTO `wp_rg_form_view` VALUES("53133", "15", "2017-04-07 00:24:31", "108.180.147.145", "5");
INSERT INTO `wp_rg_form_view` VALUES("53134", "10", "2017-04-07 00:24:31", "108.180.147.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("53135", "3", "2017-04-07 00:24:31", "108.180.147.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("53136", "15", "2017-04-07 01:04:04", "157.55.39.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("53137", "10", "2017-04-07 01:04:04", "157.55.39.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("53138", "3", "2017-04-07 01:04:04", "157.55.39.89", "6");
INSERT INTO `wp_rg_form_view` VALUES("53139", "10", "2017-04-07 02:05:13", "163.172.66.174", "7");
INSERT INTO `wp_rg_form_view` VALUES("53140", "15", "2017-04-07 02:05:13", "163.172.66.174", "8");
INSERT INTO `wp_rg_form_view` VALUES("53141", "3", "2017-04-07 02:05:13", "163.172.66.174", "7");
INSERT INTO `wp_rg_form_view` VALUES("53142", "15", "2017-04-07 03:10:25", "24.108.29.2", "4");
INSERT INTO `wp_rg_form_view` VALUES("53143", "10", "2017-04-07 03:10:25", "24.108.29.2", "6");
INSERT INTO `wp_rg_form_view` VALUES("53144", "3", "2017-04-07 03:10:25", "24.108.29.2", "31");
INSERT INTO `wp_rg_form_view` VALUES("53145", "6", "2017-04-07 03:44:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53146", "9", "2017-04-07 03:44:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53147", "8", "2017-04-07 03:44:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53148", "13", "2017-04-07 03:44:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53149", "15", "2017-04-07 04:02:47", "216.244.66.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("53150", "10", "2017-04-07 04:02:47", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("53151", "3", "2017-04-07 04:02:47", "216.244.66.231", "8");
INSERT INTO `wp_rg_form_view` VALUES("53152", "15", "2017-04-07 05:04:10", "70.66.187.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("53153", "10", "2017-04-07 05:04:10", "70.66.187.163", "5");
INSERT INTO `wp_rg_form_view` VALUES("53154", "3", "2017-04-07 05:04:10", "70.66.187.163", "5");
INSERT INTO `wp_rg_form_view` VALUES("53155", "3", "2017-04-07 06:36:45", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53156", "15", "2017-04-07 07:53:31", "51.255.65.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("53157", "10", "2017-04-07 07:53:32", "51.255.65.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("53158", "3", "2017-04-07 07:53:32", "51.255.65.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("53159", "15", "2017-04-07 08:17:13", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53160", "10", "2017-04-07 08:17:13", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53161", "3", "2017-04-07 08:17:13", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53162", "15", "2017-04-07 09:17:17", "77.75.78.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("53163", "10", "2017-04-07 09:17:17", "77.75.78.160", "5");
INSERT INTO `wp_rg_form_view` VALUES("53164", "3", "2017-04-07 09:17:17", "77.75.78.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("53165", "13", "2017-04-07 10:48:48", "51.255.65.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("53166", "15", "2017-04-07 10:48:51", "51.255.65.49", "2");
INSERT INTO `wp_rg_form_view` VALUES("53167", "10", "2017-04-07 10:48:51", "51.255.65.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("53168", "3", "2017-04-07 10:48:52", "51.255.65.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("53169", "3", "2017-04-07 11:22:54", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("53170", "6", "2017-04-07 11:22:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53171", "9", "2017-04-07 11:22:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53172", "8", "2017-04-07 11:22:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53173", "10", "2017-04-07 11:22:55", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53174", "13", "2017-04-07 11:22:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53175", "15", "2017-04-07 11:22:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53176", "10", "2017-04-07 12:12:00", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53177", "15", "2017-04-07 12:36:05", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53178", "3", "2017-04-07 12:36:06", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53179", "15", "2017-04-07 13:06:12", "202.46.55.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("53180", "10", "2017-04-07 13:06:12", "202.46.55.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("53181", "3", "2017-04-07 13:06:12", "202.46.55.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("53182", "3", "2017-04-07 14:20:37", "202.46.55.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("53183", "15", "2017-04-07 14:20:39", "202.46.55.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("53184", "10", "2017-04-07 14:20:39", "202.46.55.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("53185", "3", "2017-04-07 15:23:26", "163.172.64.187", "7");
INSERT INTO `wp_rg_form_view` VALUES("53186", "15", "2017-04-07 15:23:27", "163.172.64.187", "4");
INSERT INTO `wp_rg_form_view` VALUES("53187", "10", "2017-04-07 15:23:27", "163.172.64.187", "7");
INSERT INTO `wp_rg_form_view` VALUES("53188", "15", "2017-04-07 16:23:52", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("53189", "10", "2017-04-07 16:23:53", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("53190", "3", "2017-04-07 16:23:54", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("53191", "15", "2017-04-07 17:07:37", "202.46.51.32", "7");
INSERT INTO `wp_rg_form_view` VALUES("53192", "10", "2017-04-07 17:09:07", "202.46.51.32", "5");
INSERT INTO `wp_rg_form_view` VALUES("53193", "3", "2017-04-07 17:09:20", "202.46.51.32", "6");
INSERT INTO `wp_rg_form_view` VALUES("53194", "15", "2017-04-07 18:00:49", "64.114.204.58", "7");
INSERT INTO `wp_rg_form_view` VALUES("53195", "10", "2017-04-07 18:00:49", "64.114.204.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("53196", "3", "2017-04-07 18:00:50", "64.114.204.58", "4");
INSERT INTO `wp_rg_form_view` VALUES("53197", "15", "2017-04-07 19:05:56", "96.50.29.134", "5");
INSERT INTO `wp_rg_form_view` VALUES("53198", "10", "2017-04-07 19:06:00", "96.50.29.134", "7");
INSERT INTO `wp_rg_form_view` VALUES("53199", "3", "2017-04-07 19:06:01", "96.50.29.134", "5");
INSERT INTO `wp_rg_form_view` VALUES("53200", "15", "2017-04-07 20:16:04", "207.194.133.9", "12");
INSERT INTO `wp_rg_form_view` VALUES("53201", "10", "2017-04-07 20:16:07", "207.194.133.9", "10");
INSERT INTO `wp_rg_form_view` VALUES("53202", "3", "2017-04-07 20:16:07", "207.194.133.9", "8");
INSERT INTO `wp_rg_form_view` VALUES("53203", "3", "2017-04-07 21:10:46", "202.46.58.164", "13");
INSERT INTO `wp_rg_form_view` VALUES("53204", "10", "2017-04-07 21:10:50", "202.46.58.164", "11");
INSERT INTO `wp_rg_form_view` VALUES("53205", "15", "2017-04-07 21:10:50", "202.46.58.164", "7");
INSERT INTO `wp_rg_form_view` VALUES("53206", "13", "2017-04-07 21:10:51", "202.46.58.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("53207", "15", "2017-04-07 22:04:40", "184.69.20.66", "4");
INSERT INTO `wp_rg_form_view` VALUES("53208", "10", "2017-04-07 22:04:41", "184.69.20.66", "5");
INSERT INTO `wp_rg_form_view` VALUES("53209", "3", "2017-04-07 22:04:41", "184.69.20.66", "4");
INSERT INTO `wp_rg_form_view` VALUES("53210", "14", "2017-04-07 22:30:14", "146.0.74.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("53211", "15", "2017-04-07 23:10:28", "24.108.10.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("53212", "10", "2017-04-07 23:10:28", "24.108.10.224", "7");
INSERT INTO `wp_rg_form_view` VALUES("53213", "3", "2017-04-07 23:10:29", "24.108.10.224", "29");
INSERT INTO `wp_rg_form_view` VALUES("53214", "6", "2017-04-07 23:34:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53215", "9", "2017-04-07 23:34:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53216", "8", "2017-04-07 23:34:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53217", "13", "2017-04-07 23:34:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53218", "3", "2017-04-08 00:07:37", "163.172.64.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("53219", "15", "2017-04-08 00:07:37", "163.172.64.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("53220", "10", "2017-04-08 00:07:37", "163.172.64.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("53221", "12", "2017-04-08 00:18:48", "163.172.66.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("53222", "14", "2017-04-08 00:39:31", "176.103.56.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("53223", "10", "2017-04-08 01:11:31", "199.16.157.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("53224", "15", "2017-04-08 01:11:31", "199.16.157.183", "3");
INSERT INTO `wp_rg_form_view` VALUES("53225", "3", "2017-04-08 01:11:31", "199.16.157.183", "3");
INSERT INTO `wp_rg_form_view` VALUES("53226", "13", "2017-04-08 01:40:36", "163.172.65.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("53227", "3", "2017-04-08 02:25:50", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53228", "10", "2017-04-08 03:44:07", "184.66.34.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("53229", "15", "2017-04-08 03:44:08", "184.66.34.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("53230", "3", "2017-04-08 03:44:08", "184.66.34.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("53231", "7", "2017-04-08 03:52:26", "202.46.58.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("53232", "3", "2017-04-08 04:02:54", "163.172.64.225", "8");
INSERT INTO `wp_rg_form_view` VALUES("53233", "15", "2017-04-08 04:02:54", "163.172.64.225", "5");
INSERT INTO `wp_rg_form_view` VALUES("53234", "10", "2017-04-08 04:02:54", "163.172.64.225", "5");
INSERT INTO `wp_rg_form_view` VALUES("53235", "15", "2017-04-08 05:36:45", "24.68.227.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("53236", "10", "2017-04-08 05:36:45", "24.68.227.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("53237", "3", "2017-04-08 05:36:45", "24.68.227.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("53238", "14", "2017-04-08 05:37:16", "24.68.227.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("53239", "3", "2017-04-08 06:44:39", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("53240", "6", "2017-04-08 06:44:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53241", "9", "2017-04-08 06:44:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53242", "8", "2017-04-08 06:44:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53243", "10", "2017-04-08 06:44:41", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("53244", "13", "2017-04-08 06:44:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53245", "15", "2017-04-08 06:44:42", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("53246", "11", "2017-04-08 07:15:22", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53247", "13", "2017-04-08 07:15:25", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53248", "15", "2017-04-08 07:15:25", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("53249", "10", "2017-04-08 07:15:26", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("53250", "3", "2017-04-08 07:15:27", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("53251", "15", "2017-04-08 08:03:35", "202.46.50.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("53252", "10", "2017-04-08 08:03:35", "202.46.50.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("53253", "3", "2017-04-08 08:03:35", "202.46.50.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("53254", "5", "2017-04-08 08:10:09", "77.75.78.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("53255", "3", "2017-04-08 09:32:00", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("53256", "15", "2017-04-08 09:32:01", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53257", "10", "2017-04-08 09:32:01", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53258", "3", "2017-04-08 10:03:31", "216.244.66.231", "56");
INSERT INTO `wp_rg_form_view` VALUES("53259", "15", "2017-04-08 10:03:32", "216.244.66.231", "54");
INSERT INTO `wp_rg_form_view` VALUES("53260", "10", "2017-04-08 10:03:32", "216.244.66.231", "48");
INSERT INTO `wp_rg_form_view` VALUES("53261", "11", "2017-04-08 10:30:08", "37.59.55.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("53262", "2", "2017-04-08 10:30:12", "37.59.55.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("53263", "14", "2017-04-08 10:31:52", "37.59.55.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("53264", "13", "2017-04-08 10:34:27", "37.59.55.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("53265", "15", "2017-04-08 11:13:39", "202.46.53.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("53266", "10", "2017-04-08 11:13:39", "202.46.53.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("53267", "3", "2017-04-08 11:13:39", "202.46.53.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("53268", "9", "2017-04-08 12:20:22", "202.46.54.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("53269", "15", "2017-04-08 12:20:24", "202.46.54.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("53270", "10", "2017-04-08 12:20:24", "202.46.54.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("53271", "3", "2017-04-08 12:20:25", "202.46.54.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("53272", "15", "2017-04-08 13:57:28", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53273", "10", "2017-04-08 13:57:32", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53274", "3", "2017-04-08 13:57:33", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53275", "3", "2017-04-08 14:25:34", "157.55.39.215", "3");
INSERT INTO `wp_rg_form_view` VALUES("53276", "15", "2017-04-08 14:25:34", "157.55.39.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("53277", "10", "2017-04-08 14:25:35", "157.55.39.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("53278", "14", "2017-04-08 14:33:30", "37.153.169.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("53279", "15", "2017-04-08 15:05:38", "207.46.13.80", "66");
INSERT INTO `wp_rg_form_view` VALUES("53280", "10", "2017-04-08 15:05:38", "207.46.13.80", "78");
INSERT INTO `wp_rg_form_view` VALUES("53281", "3", "2017-04-08 15:05:39", "207.46.13.80", "79");
INSERT INTO `wp_rg_form_view` VALUES("53282", "13", "2017-04-08 15:05:56", "207.46.13.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("53283", "8", "2017-04-08 15:06:24", "207.46.13.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("53284", "7", "2017-04-08 15:13:58", "157.55.39.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("53285", "15", "2017-04-08 16:08:28", "154.5.13.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("53286", "10", "2017-04-08 16:08:28", "154.5.13.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("53287", "3", "2017-04-08 16:08:28", "154.5.13.50", "4");
INSERT INTO `wp_rg_form_view` VALUES("53288", "10", "2017-04-08 17:04:24", "51.255.65.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("53289", "15", "2017-04-08 17:04:24", "51.255.65.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("53290", "3", "2017-04-08 17:04:24", "51.255.65.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("53291", "3", "2017-04-08 18:11:49", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("53292", "6", "2017-04-08 18:11:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53293", "9", "2017-04-08 18:11:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53294", "8", "2017-04-08 18:11:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53295", "10", "2017-04-08 18:11:52", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("53296", "13", "2017-04-08 18:11:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53297", "15", "2017-04-08 18:11:52", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("53298", "15", "2017-04-08 19:30:20", "142.134.73.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("53299", "10", "2017-04-08 19:30:24", "142.134.73.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("53300", "3", "2017-04-08 19:30:24", "142.134.73.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("53301", "3", "2017-04-08 19:30:24", "142.134.73.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("53302", "15", "2017-04-08 20:00:54", "207.46.13.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("53303", "10", "2017-04-08 20:00:54", "207.46.13.170", "4");
INSERT INTO `wp_rg_form_view` VALUES("53304", "3", "2017-04-08 20:00:54", "207.46.13.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("53305", "15", "2017-04-08 21:23:13", "24.68.130.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("53306", "10", "2017-04-08 21:23:13", "24.68.130.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("53307", "3", "2017-04-08 21:23:14", "24.68.130.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("53308", "3", "2017-04-08 22:44:28", "163.172.66.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("53309", "15", "2017-04-08 22:44:29", "163.172.66.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("53310", "10", "2017-04-08 22:44:29", "163.172.66.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("53311", "3", "2017-04-08 23:15:18", "163.172.66.118", "5");
INSERT INTO `wp_rg_form_view` VALUES("53312", "15", "2017-04-08 23:15:19", "163.172.66.118", "4");
INSERT INTO `wp_rg_form_view` VALUES("53313", "10", "2017-04-08 23:15:19", "163.172.66.118", "5");
INSERT INTO `wp_rg_form_view` VALUES("53314", "14", "2017-04-08 23:44:28", "184.66.47.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("53315", "15", "2017-04-09 01:10:45", "202.46.48.197", "4");
INSERT INTO `wp_rg_form_view` VALUES("53316", "10", "2017-04-09 01:10:47", "202.46.48.197", "6");
INSERT INTO `wp_rg_form_view` VALUES("53317", "3", "2017-04-09 01:10:48", "202.46.48.197", "30");
INSERT INTO `wp_rg_form_view` VALUES("53318", "6", "2017-04-09 01:29:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53319", "9", "2017-04-09 01:29:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53320", "8", "2017-04-09 01:29:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53321", "13", "2017-04-09 01:29:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53322", "15", "2017-04-09 02:42:30", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("53323", "10", "2017-04-09 02:42:31", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("53324", "3", "2017-04-09 02:42:31", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("53325", "15", "2017-04-09 03:11:35", "24.70.196.199", "5");
INSERT INTO `wp_rg_form_view` VALUES("53326", "10", "2017-04-09 03:11:35", "24.70.196.199", "5");
INSERT INTO `wp_rg_form_view` VALUES("53327", "3", "2017-04-09 03:11:35", "24.70.196.199", "29");
INSERT INTO `wp_rg_form_view` VALUES("53328", "6", "2017-04-09 03:31:33", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53329", "9", "2017-04-09 03:31:33", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53330", "8", "2017-04-09 03:31:33", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53331", "13", "2017-04-09 03:31:34", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53332", "15", "2017-04-09 04:41:24", "157.55.39.21", "4");
INSERT INTO `wp_rg_form_view` VALUES("53333", "10", "2017-04-09 04:41:25", "157.55.39.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("53334", "3", "2017-04-09 04:41:25", "157.55.39.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("53335", "3", "2017-04-09 05:51:38", "157.55.39.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("53336", "3", "2017-04-09 06:35:09", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53337", "15", "2017-04-09 06:40:35", "202.46.48.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("53338", "10", "2017-04-09 06:40:36", "202.46.48.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("53339", "15", "2017-04-09 07:13:55", "202.46.51.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("53340", "10", "2017-04-09 07:13:55", "202.46.51.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("53341", "3", "2017-04-09 07:13:55", "202.46.51.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("53342", "3", "2017-04-09 08:04:48", "164.132.161.92", "5");
INSERT INTO `wp_rg_form_view` VALUES("53343", "15", "2017-04-09 08:04:49", "164.132.161.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("53344", "10", "2017-04-09 08:04:49", "164.132.161.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("53345", "15", "2017-04-09 09:15:47", "163.172.66.5", "6");
INSERT INTO `wp_rg_form_view` VALUES("53346", "10", "2017-04-09 09:15:52", "163.172.66.5", "8");
INSERT INTO `wp_rg_form_view` VALUES("53347", "3", "2017-04-09 09:15:53", "163.172.66.5", "7");
INSERT INTO `wp_rg_form_view` VALUES("53348", "6", "2017-04-09 09:41:00", "202.46.50.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("53349", "14", "2017-04-09 10:12:07", "210.61.209.197", "3");
INSERT INTO `wp_rg_form_view` VALUES("53350", "15", "2017-04-09 10:26:38", "207.46.13.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("53351", "10", "2017-04-09 10:26:38", "207.46.13.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("53352", "3", "2017-04-09 10:26:38", "207.46.13.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("53353", "15", "2017-04-09 11:08:24", "77.75.79.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("53354", "10", "2017-04-09 11:08:28", "77.75.79.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("53355", "3", "2017-04-09 11:08:28", "77.75.79.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("53356", "10", "2017-04-09 12:51:17", "207.46.13.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("53357", "15", "2017-04-09 12:51:19", "207.46.13.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("53358", "3", "2017-04-09 12:51:19", "207.46.13.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("53359", "15", "2017-04-09 13:01:00", "202.46.55.141", "3");
INSERT INTO `wp_rg_form_view` VALUES("53360", "10", "2017-04-09 13:01:00", "202.46.55.141", "5");
INSERT INTO `wp_rg_form_view` VALUES("53361", "3", "2017-04-09 13:01:00", "202.46.55.141", "29");
INSERT INTO `wp_rg_form_view` VALUES("53362", "6", "2017-04-09 13:13:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53363", "9", "2017-04-09 13:13:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53364", "8", "2017-04-09 13:13:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53365", "13", "2017-04-09 13:13:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53366", "15", "2017-04-09 14:07:41", "202.46.50.181", "9");
INSERT INTO `wp_rg_form_view` VALUES("53367", "10", "2017-04-09 14:07:41", "202.46.50.181", "8");
INSERT INTO `wp_rg_form_view` VALUES("53368", "3", "2017-04-09 14:07:42", "202.46.50.181", "10");
INSERT INTO `wp_rg_form_view` VALUES("53369", "8", "2017-04-09 14:14:57", "163.172.65.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("53370", "11", "2017-04-09 14:30:39", "142.0.35.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("53371", "2", "2017-04-09 14:31:21", "142.0.35.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("53372", "15", "2017-04-09 15:14:20", "202.46.51.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("53373", "10", "2017-04-09 15:14:21", "202.46.51.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("53374", "3", "2017-04-09 15:14:21", "202.46.51.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("53375", "13", "2017-04-09 16:06:22", "164.132.161.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("53376", "15", "2017-04-09 16:08:59", "77.75.77.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("53377", "10", "2017-04-09 16:08:59", "77.75.77.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("53378", "3", "2017-04-09 16:08:59", "77.75.77.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("53379", "10", "2017-04-09 17:21:21", "40.77.179.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("53380", "15", "2017-04-09 17:21:22", "40.77.179.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("53381", "3", "2017-04-09 17:21:22", "40.77.179.32", "3");
INSERT INTO `wp_rg_form_view` VALUES("53382", "14", "2017-04-09 18:11:09", "184.66.224.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("53383", "15", "2017-04-09 18:25:52", "202.46.49.93", "4");
INSERT INTO `wp_rg_form_view` VALUES("53384", "10", "2017-04-09 18:25:52", "202.46.49.93", "6");
INSERT INTO `wp_rg_form_view` VALUES("53385", "3", "2017-04-09 18:25:52", "202.46.49.93", "30");
INSERT INTO `wp_rg_form_view` VALUES("53386", "6", "2017-04-09 18:31:06", "157.55.39.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("53387", "9", "2017-04-09 18:31:06", "157.55.39.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("53388", "8", "2017-04-09 18:31:07", "157.55.39.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("53389", "13", "2017-04-09 18:31:07", "157.55.39.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("53390", "15", "2017-04-09 19:43:17", "163.172.65.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("53391", "10", "2017-04-09 19:43:17", "163.172.65.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("53392", "3", "2017-04-09 19:43:18", "163.172.65.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("53393", "3", "2017-04-09 20:12:54", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("53394", "6", "2017-04-09 20:12:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("53395", "9", "2017-04-09 20:12:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53396", "8", "2017-04-09 20:12:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53397", "10", "2017-04-09 20:12:55", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("53398", "13", "2017-04-09 20:12:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53399", "15", "2017-04-09 20:12:56", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53400", "14", "2017-04-09 20:46:05", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53401", "10", "2017-04-09 21:22:46", "24.108.12.82", "16");
INSERT INTO `wp_rg_form_view` VALUES("53402", "15", "2017-04-09 21:22:46", "24.108.12.82", "10");
INSERT INTO `wp_rg_form_view` VALUES("53403", "3", "2017-04-09 21:22:46", "24.108.12.82", "38");
INSERT INTO `wp_rg_form_view` VALUES("53404", "6", "2017-04-09 21:24:01", "24.108.12.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("53405", "9", "2017-04-09 21:24:02", "24.108.12.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("53406", "8", "2017-04-09 21:24:02", "24.108.12.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("53407", "13", "2017-04-09 21:24:03", "24.108.12.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("53408", "15", "2017-04-09 22:00:34", "202.46.51.166", "3");
INSERT INTO `wp_rg_form_view` VALUES("53409", "10", "2017-04-09 22:00:34", "202.46.51.166", "3");
INSERT INTO `wp_rg_form_view` VALUES("53410", "3", "2017-04-09 22:00:34", "202.46.51.166", "4");
INSERT INTO `wp_rg_form_view` VALUES("53411", "14", "2017-04-09 22:49:45", "142.4.194.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("53412", "11", "2017-04-09 23:04:42", "108.175.3.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("53413", "15", "2017-04-09 23:04:45", "108.175.3.139", "8");
INSERT INTO `wp_rg_form_view` VALUES("53414", "10", "2017-04-09 23:04:45", "108.175.3.139", "7");
INSERT INTO `wp_rg_form_view` VALUES("53415", "3", "2017-04-09 23:04:46", "108.175.3.139", "8");
INSERT INTO `wp_rg_form_view` VALUES("53416", "2", "2017-04-09 23:07:25", "108.175.3.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("53417", "12", "2017-04-10 00:13:54", "202.46.53.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("53418", "15", "2017-04-10 00:13:54", "202.46.53.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("53419", "10", "2017-04-10 00:13:54", "202.46.53.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("53420", "3", "2017-04-10 00:13:54", "202.46.53.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("53421", "15", "2017-04-10 01:10:24", "77.75.76.171", "3");
INSERT INTO `wp_rg_form_view` VALUES("53422", "10", "2017-04-10 01:10:24", "77.75.76.171", "4");
INSERT INTO `wp_rg_form_view` VALUES("53423", "3", "2017-04-10 01:10:25", "77.75.76.171", "3");
INSERT INTO `wp_rg_form_view` VALUES("53424", "15", "2017-04-10 02:21:14", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("53425", "15", "2017-04-10 02:21:14", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53426", "10", "2017-04-10 02:21:17", "216.244.66.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("53427", "10", "2017-04-10 02:21:17", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53428", "3", "2017-04-10 02:21:19", "216.244.66.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("53429", "3", "2017-04-10 02:21:19", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53430", "15", "2017-04-10 03:00:34", "202.46.54.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("53431", "10", "2017-04-10 03:00:34", "202.46.54.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("53432", "3", "2017-04-10 03:00:34", "202.46.54.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("53433", "15", "2017-04-10 04:01:57", "97.115.198.180", "5");
INSERT INTO `wp_rg_form_view` VALUES("53434", "10", "2017-04-10 04:01:58", "97.115.198.180", "7");
INSERT INTO `wp_rg_form_view` VALUES("53435", "3", "2017-04-10 04:01:58", "97.115.198.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("53436", "14", "2017-04-10 04:07:55", "96.54.234.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("53437", "9", "2017-04-10 05:21:25", "163.172.64.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("53438", "15", "2017-04-10 05:21:25", "163.172.64.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("53439", "10", "2017-04-10 05:21:25", "163.172.64.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("53440", "3", "2017-04-10 05:21:25", "163.172.64.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("53441", "15", "2017-04-10 06:16:30", "207.46.13.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("53442", "10", "2017-04-10 06:16:32", "207.46.13.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("53443", "3", "2017-04-10 06:16:33", "207.46.13.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("53444", "15", "2017-04-10 07:01:51", "157.55.39.79", "5");
INSERT INTO `wp_rg_form_view` VALUES("53445", "10", "2017-04-10 07:01:52", "157.55.39.79", "7");
INSERT INTO `wp_rg_form_view` VALUES("53446", "3", "2017-04-10 07:01:52", "157.55.39.79", "31");
INSERT INTO `wp_rg_form_view` VALUES("53447", "6", "2017-04-10 07:40:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53448", "9", "2017-04-10 07:40:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53449", "8", "2017-04-10 07:40:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53450", "13", "2017-04-10 07:40:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53451", "15", "2017-04-10 08:20:35", "163.172.66.146", "3");
INSERT INTO `wp_rg_form_view` VALUES("53452", "10", "2017-04-10 08:20:35", "163.172.66.146", "3");
INSERT INTO `wp_rg_form_view` VALUES("53453", "3", "2017-04-10 08:20:35", "163.172.66.146", "4");
INSERT INTO `wp_rg_form_view` VALUES("53454", "5", "2017-04-10 08:59:30", "207.46.13.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("53455", "14", "2017-04-10 09:11:45", "146.0.74.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("53456", "15", "2017-04-10 09:28:30", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("53457", "10", "2017-04-10 09:28:30", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("53458", "3", "2017-04-10 09:28:30", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("53459", "10", "2017-04-10 10:18:40", "207.46.13.212", "10");
INSERT INTO `wp_rg_form_view` VALUES("53460", "15", "2017-04-10 10:18:41", "207.46.13.212", "10");
INSERT INTO `wp_rg_form_view` VALUES("53461", "3", "2017-04-10 10:18:42", "207.46.13.212", "12");
INSERT INTO `wp_rg_form_view` VALUES("53462", "11", "2017-04-10 10:29:29", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("53463", "2", "2017-04-10 10:31:37", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("53464", "3", "2017-04-10 11:02:07", "157.55.39.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("53465", "15", "2017-04-10 11:02:07", "157.55.39.38", "3");
INSERT INTO `wp_rg_form_view` VALUES("53466", "10", "2017-04-10 11:02:08", "157.55.39.38", "3");
INSERT INTO `wp_rg_form_view` VALUES("53467", "3", "2017-04-10 12:09:32", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("53468", "15", "2017-04-10 12:09:42", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("53469", "10", "2017-04-10 12:09:42", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("53470", "3", "2017-04-10 13:15:34", "202.46.51.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("53471", "15", "2017-04-10 13:15:39", "202.46.51.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("53472", "10", "2017-04-10 13:15:39", "202.46.51.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("53473", "15", "2017-04-10 14:15:41", "96.54.234.180", "8");
INSERT INTO `wp_rg_form_view` VALUES("53474", "10", "2017-04-10 14:15:43", "96.54.234.180", "9");
INSERT INTO `wp_rg_form_view` VALUES("53475", "3", "2017-04-10 14:15:43", "96.54.234.180", "9");
INSERT INTO `wp_rg_form_view` VALUES("53476", "9", "2017-04-10 15:00:37", "188.162.40.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("53477", "3", "2017-04-10 15:21:55", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("53478", "6", "2017-04-10 15:21:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53479", "8", "2017-04-10 15:21:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53480", "10", "2017-04-10 15:21:57", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53481", "13", "2017-04-10 15:21:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53482", "15", "2017-04-10 15:21:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53483", "15", "2017-04-10 16:45:02", "142.31.189.216", "4");
INSERT INTO `wp_rg_form_view` VALUES("53484", "10", "2017-04-10 16:45:03", "142.31.189.216", "2");
INSERT INTO `wp_rg_form_view` VALUES("53485", "3", "2017-04-10 16:45:03", "142.31.189.216", "2");
INSERT INTO `wp_rg_form_view` VALUES("53486", "3", "2017-04-10 17:16:10", "51.255.65.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("53487", "15", "2017-04-10 17:16:11", "51.255.65.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("53488", "10", "2017-04-10 17:16:11", "51.255.65.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("53489", "15", "2017-04-10 18:06:08", "207.194.133.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("53490", "10", "2017-04-10 18:06:09", "207.194.133.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("53491", "3", "2017-04-10 18:06:09", "207.194.133.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("53492", "15", "2017-04-10 19:04:47", "184.66.49.231", "8");
INSERT INTO `wp_rg_form_view` VALUES("53493", "10", "2017-04-10 19:04:50", "184.66.49.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("53494", "3", "2017-04-10 19:04:51", "184.66.49.231", "12");
INSERT INTO `wp_rg_form_view` VALUES("53495", "15", "2017-04-10 20:03:06", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("53496", "10", "2017-04-10 20:03:06", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("53497", "3", "2017-04-10 20:03:07", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("53498", "10", "2017-04-10 21:08:48", "142.36.207.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("53499", "15", "2017-04-10 21:08:48", "142.36.207.136", "4");
INSERT INTO `wp_rg_form_view` VALUES("53500", "3", "2017-04-10 21:08:49", "142.36.207.136", "4");
INSERT INTO `wp_rg_form_view` VALUES("53501", "15", "2017-04-10 22:09:14", "142.36.180.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("53502", "10", "2017-04-10 22:09:15", "142.36.180.184", "8");
INSERT INTO `wp_rg_form_view` VALUES("53503", "3", "2017-04-10 22:09:15", "142.36.180.184", "7");
INSERT INTO `wp_rg_form_view` VALUES("53504", "11", "2017-04-10 22:43:08", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("53505", "15", "2017-04-10 23:15:31", "77.75.78.163", "5");
INSERT INTO `wp_rg_form_view` VALUES("53506", "10", "2017-04-10 23:15:37", "77.75.78.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("53507", "3", "2017-04-10 23:15:38", "77.75.78.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("53508", "15", "2017-04-11 00:14:16", "51.255.65.53", "5");
INSERT INTO `wp_rg_form_view` VALUES("53509", "10", "2017-04-11 00:14:30", "51.255.65.53", "4");
INSERT INTO `wp_rg_form_view` VALUES("53510", "3", "2017-04-11 00:14:31", "51.255.65.53", "5");
INSERT INTO `wp_rg_form_view` VALUES("53511", "14", "2017-04-11 00:25:52", "108.180.145.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("53512", "15", "2017-04-11 01:03:01", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("53513", "10", "2017-04-11 01:03:02", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("53514", "3", "2017-04-11 01:03:03", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("53515", "2", "2017-04-11 01:21:24", "54.183.100.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("53516", "14", "2017-04-11 01:21:25", "54.183.100.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("53517", "15", "2017-04-11 02:55:10", "40.77.167.90", "15");
INSERT INTO `wp_rg_form_view` VALUES("53518", "10", "2017-04-11 02:55:13", "40.77.167.90", "16");
INSERT INTO `wp_rg_form_view` VALUES("53519", "3", "2017-04-11 02:55:14", "40.77.167.90", "17");
INSERT INTO `wp_rg_form_view` VALUES("53520", "9", "2017-04-11 02:55:17", "40.77.167.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("53521", "15", "2017-04-11 03:01:36", "40.77.167.1", "17");
INSERT INTO `wp_rg_form_view` VALUES("53522", "10", "2017-04-11 03:01:36", "40.77.167.1", "20");
INSERT INTO `wp_rg_form_view` VALUES("53523", "3", "2017-04-11 03:01:36", "40.77.167.1", "44");
INSERT INTO `wp_rg_form_view` VALUES("53524", "9", "2017-04-11 03:16:11", "207.46.13.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("53525", "6", "2017-04-11 03:39:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53526", "8", "2017-04-11 03:39:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53527", "13", "2017-04-11 03:39:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53528", "10", "2017-04-11 04:00:50", "217.182.132.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("53529", "15", "2017-04-11 04:00:50", "217.182.132.184", "3");
INSERT INTO `wp_rg_form_view` VALUES("53530", "3", "2017-04-11 04:00:51", "217.182.132.184", "4");
INSERT INTO `wp_rg_form_view` VALUES("53531", "2", "2017-04-11 04:54:23", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53532", "15", "2017-04-11 05:11:01", "202.46.55.39", "4");
INSERT INTO `wp_rg_form_view` VALUES("53533", "10", "2017-04-11 05:11:02", "202.46.55.39", "6");
INSERT INTO `wp_rg_form_view` VALUES("53534", "3", "2017-04-11 05:11:02", "202.46.55.39", "4");
INSERT INTO `wp_rg_form_view` VALUES("53535", "14", "2017-04-11 06:04:15", "195.22.127.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("53536", "3", "2017-04-11 06:51:09", "202.46.53.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("53537", "15", "2017-04-11 06:51:13", "202.46.53.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("53538", "10", "2017-04-11 06:51:14", "202.46.53.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("53539", "15", "2017-04-11 07:24:23", "202.46.55.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("53540", "10", "2017-04-11 07:24:23", "202.46.55.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("53541", "3", "2017-04-11 07:24:24", "202.46.55.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("53542", "14", "2017-04-11 08:31:03", "202.46.56.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("53543", "15", "2017-04-11 09:39:09", "31.210.45.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("53544", "10", "2017-04-11 09:39:11", "31.210.45.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("53545", "3", "2017-04-11 09:39:12", "31.210.45.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("53546", "15", "2017-04-11 10:06:04", "157.55.39.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("53547", "10", "2017-04-11 10:06:04", "157.55.39.8", "4");
INSERT INTO `wp_rg_form_view` VALUES("53548", "3", "2017-04-11 10:06:04", "157.55.39.8", "5");
INSERT INTO `wp_rg_form_view` VALUES("53549", "15", "2017-04-11 11:25:47", "202.46.56.91", "4");
INSERT INTO `wp_rg_form_view` VALUES("53550", "10", "2017-04-11 11:25:50", "202.46.56.91", "7");
INSERT INTO `wp_rg_form_view` VALUES("53551", "3", "2017-04-11 11:25:51", "202.46.56.91", "29");
INSERT INTO `wp_rg_form_view` VALUES("53552", "2", "2017-04-11 11:31:37", "194.187.170.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("53553", "6", "2017-04-11 11:42:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53554", "9", "2017-04-11 11:42:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53555", "8", "2017-04-11 11:42:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53556", "13", "2017-04-11 11:42:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53557", "3", "2017-04-11 12:41:40", "51.255.65.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("53558", "15", "2017-04-11 12:41:41", "51.255.65.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("53559", "10", "2017-04-11 12:41:41", "51.255.65.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("53560", "15", "2017-04-11 13:05:42", "202.46.56.182", "3");
INSERT INTO `wp_rg_form_view` VALUES("53561", "10", "2017-04-11 13:05:42", "202.46.56.182", "3");
INSERT INTO `wp_rg_form_view` VALUES("53562", "3", "2017-04-11 13:05:42", "202.46.56.182", "5");
INSERT INTO `wp_rg_form_view` VALUES("53563", "3", "2017-04-11 14:12:28", "202.46.53.193", "33");
INSERT INTO `wp_rg_form_view` VALUES("53564", "15", "2017-04-11 14:12:43", "202.46.53.193", "5");
INSERT INTO `wp_rg_form_view` VALUES("53565", "10", "2017-04-11 14:12:43", "202.46.53.193", "7");
INSERT INTO `wp_rg_form_view` VALUES("53566", "6", "2017-04-11 14:14:23", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53567", "9", "2017-04-11 14:14:24", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53568", "8", "2017-04-11 14:14:24", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53569", "13", "2017-04-11 14:14:25", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53570", "2", "2017-04-11 16:31:28", "217.182.132.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("53571", "15", "2017-04-11 17:04:57", "72.143.226.228", "5");
INSERT INTO `wp_rg_form_view` VALUES("53572", "10", "2017-04-11 17:04:59", "72.143.226.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("53573", "3", "2017-04-11 17:05:00", "72.143.226.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("53574", "15", "2017-04-11 18:04:43", "142.36.207.136", "12");
INSERT INTO `wp_rg_form_view` VALUES("53575", "3", "2017-04-11 18:04:43", "142.36.207.136", "11");
INSERT INTO `wp_rg_form_view` VALUES("53576", "10", "2017-04-11 18:09:34", "142.36.207.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("53577", "3", "2017-04-11 19:06:13", "202.46.57.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("53578", "15", "2017-04-11 19:06:14", "202.46.57.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("53579", "10", "2017-04-11 19:06:14", "202.46.57.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("53580", "10", "2017-04-11 20:51:06", "40.77.167.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("53581", "15", "2017-04-11 20:51:07", "40.77.167.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("53582", "3", "2017-04-11 20:51:08", "40.77.167.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("53583", "2", "2017-04-11 21:20:51", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("53584", "10", "2017-04-11 21:29:56", "24.108.217.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("53585", "14", "2017-04-11 21:32:51", "154.20.32.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("53586", "15", "2017-04-11 22:00:00", "66.249.79.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("53587", "10", "2017-04-11 22:00:01", "66.249.79.148", "9");
INSERT INTO `wp_rg_form_view` VALUES("53588", "3", "2017-04-11 22:00:02", "66.249.79.148", "7");
INSERT INTO `wp_rg_form_view` VALUES("53589", "14", "2017-04-11 22:29:39", "96.50.29.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("53590", "14", "2017-04-11 23:56:15", "104.227.124.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("53591", "3", "2017-04-12 00:12:39", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("53592", "6", "2017-04-12 00:12:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53593", "9", "2017-04-12 00:12:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53594", "8", "2017-04-12 00:12:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53595", "10", "2017-04-12 00:12:40", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("53596", "13", "2017-04-12 00:12:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53597", "15", "2017-04-12 00:12:40", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53598", "15", "2017-04-12 01:20:21", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53599", "10", "2017-04-12 01:20:24", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53600", "3", "2017-04-12 01:20:24", "68.180.229.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("53601", "15", "2017-04-12 02:31:12", "202.46.58.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("53602", "10", "2017-04-12 02:31:13", "202.46.58.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("53603", "3", "2017-04-12 02:31:13", "202.46.58.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("53604", "3", "2017-04-12 03:04:33", "202.46.53.120", "8");
INSERT INTO `wp_rg_form_view` VALUES("53605", "15", "2017-04-12 03:04:33", "202.46.53.120", "7");
INSERT INTO `wp_rg_form_view` VALUES("53606", "10", "2017-04-12 03:04:33", "202.46.53.120", "7");
INSERT INTO `wp_rg_form_view` VALUES("53607", "3", "2017-04-12 04:12:01", "194.187.170.143", "11");
INSERT INTO `wp_rg_form_view` VALUES("53608", "15", "2017-04-12 04:12:02", "194.187.170.143", "13");
INSERT INTO `wp_rg_form_view` VALUES("53609", "10", "2017-04-12 04:12:02", "194.187.170.143", "11");
INSERT INTO `wp_rg_form_view` VALUES("53610", "3", "2017-04-12 05:45:41", "216.244.66.231", "13");
INSERT INTO `wp_rg_form_view` VALUES("53611", "15", "2017-04-12 05:45:41", "216.244.66.231", "9");
INSERT INTO `wp_rg_form_view` VALUES("53612", "10", "2017-04-12 05:45:41", "216.244.66.231", "9");
INSERT INTO `wp_rg_form_view` VALUES("53613", "8", "2017-04-12 05:56:26", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("53614", "15", "2017-04-12 06:24:44", "202.46.50.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("53615", "10", "2017-04-12 06:24:47", "202.46.50.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("53616", "3", "2017-04-12 06:24:48", "202.46.50.139", "4");
INSERT INTO `wp_rg_form_view` VALUES("53617", "3", "2017-04-12 07:42:24", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("53618", "6", "2017-04-12 07:42:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53619", "9", "2017-04-12 07:42:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53620", "8", "2017-04-12 07:42:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53621", "10", "2017-04-12 07:42:26", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53622", "13", "2017-04-12 07:42:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53623", "15", "2017-04-12 07:42:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53624", "10", "2017-04-12 08:03:39", "51.255.65.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("53625", "15", "2017-04-12 08:03:39", "51.255.65.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("53626", "3", "2017-04-12 08:03:40", "51.255.65.28", "6");
INSERT INTO `wp_rg_form_view` VALUES("53627", "11", "2017-04-12 08:54:01", "207.46.13.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("53628", "2", "2017-04-12 08:56:01", "167.114.174.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("53629", "15", "2017-04-12 09:08:16", "69.58.178.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("53630", "10", "2017-04-12 09:08:16", "69.58.178.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("53631", "3", "2017-04-12 09:08:16", "69.58.178.59", "5");
INSERT INTO `wp_rg_form_view` VALUES("53632", "11", "2017-04-12 09:08:37", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("53633", "2", "2017-04-12 09:08:39", "69.58.178.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("53634", "15", "2017-04-12 10:26:37", "77.75.76.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("53635", "10", "2017-04-12 10:26:37", "77.75.76.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("53636", "3", "2017-04-12 10:26:38", "77.75.76.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("53637", "3", "2017-04-12 11:12:41", "77.75.78.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("53638", "15", "2017-04-12 11:18:10", "164.132.161.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("53639", "10", "2017-04-12 11:18:10", "164.132.161.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("53640", "15", "2017-04-12 12:26:32", "202.46.56.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("53641", "10", "2017-04-12 12:26:38", "202.46.56.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("53642", "3", "2017-04-12 12:26:38", "202.46.56.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("53643", "14", "2017-04-12 12:51:28", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53644", "10", "2017-04-12 13:14:33", "77.75.76.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("53645", "15", "2017-04-12 13:14:34", "77.75.76.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("53646", "3", "2017-04-12 13:14:34", "77.75.76.169", "4");
INSERT INTO `wp_rg_form_view` VALUES("53647", "8", "2017-04-12 13:41:55", "164.132.161.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("53648", "10", "2017-04-12 14:24:59", "83.24.80.64", "5");
INSERT INTO `wp_rg_form_view` VALUES("53649", "15", "2017-04-12 14:25:00", "83.24.80.64", "3");
INSERT INTO `wp_rg_form_view` VALUES("53650", "3", "2017-04-12 14:25:00", "83.24.80.64", "3");
INSERT INTO `wp_rg_form_view` VALUES("53651", "2", "2017-04-12 14:52:32", "52.74.22.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("53652", "14", "2017-04-12 15:00:39", "176.103.56.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("53653", "15", "2017-04-12 15:03:45", "52.5.220.220", "7");
INSERT INTO `wp_rg_form_view` VALUES("53654", "15", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("53655", "15", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("53656", "10", "2017-04-12 15:03:45", "52.5.220.220", "7");
INSERT INTO `wp_rg_form_view` VALUES("53657", "10", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("53658", "10", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("53659", "3", "2017-04-12 15:03:45", "52.5.220.220", "9");
INSERT INTO `wp_rg_form_view` VALUES("53660", "3", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("53661", "3", "2017-04-12 15:03:45", "52.5.220.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("53662", "13", "2017-04-12 15:15:30", "40.77.167.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("53663", "14", "2017-04-12 16:14:48", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53664", "3", "2017-04-12 16:19:35", "217.182.132.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("53665", "15", "2017-04-12 16:19:36", "217.182.132.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("53666", "10", "2017-04-12 16:19:36", "217.182.132.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("53667", "15", "2017-04-12 17:02:40", "202.46.54.207", "5");
INSERT INTO `wp_rg_form_view` VALUES("53668", "10", "2017-04-12 17:02:42", "202.46.54.207", "4");
INSERT INTO `wp_rg_form_view` VALUES("53669", "3", "2017-04-12 17:02:43", "202.46.54.207", "6");
INSERT INTO `wp_rg_form_view` VALUES("53670", "3", "2017-04-12 18:04:41", "66.249.79.144", "9");
INSERT INTO `wp_rg_form_view` VALUES("53671", "15", "2017-04-12 18:24:38", "217.182.132.241", "8");
INSERT INTO `wp_rg_form_view` VALUES("53672", "10", "2017-04-12 18:24:38", "217.182.132.241", "8");
INSERT INTO `wp_rg_form_view` VALUES("53673", "13", "2017-04-12 18:59:11", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("53674", "3", "2017-04-12 19:01:33", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("53675", "15", "2017-04-12 19:15:10", "194.187.170.124", "6");
INSERT INTO `wp_rg_form_view` VALUES("53676", "10", "2017-04-12 19:15:11", "194.187.170.124", "3");
INSERT INTO `wp_rg_form_view` VALUES("53677", "8", "2017-04-12 19:18:51", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("53678", "3", "2017-04-12 20:01:10", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("53679", "6", "2017-04-12 20:01:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53680", "9", "2017-04-12 20:01:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53681", "8", "2017-04-12 20:01:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53682", "10", "2017-04-12 20:01:12", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("53683", "13", "2017-04-12 20:01:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53684", "15", "2017-04-12 20:01:13", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("53685", "3", "2017-04-12 21:10:28", "202.46.54.205", "7");
INSERT INTO `wp_rg_form_view` VALUES("53686", "15", "2017-04-12 21:10:30", "202.46.54.205", "4");
INSERT INTO `wp_rg_form_view` VALUES("53687", "10", "2017-04-12 21:10:30", "202.46.54.205", "4");
INSERT INTO `wp_rg_form_view` VALUES("53688", "13", "2017-04-12 21:25:35", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("53689", "14", "2017-04-12 21:36:28", "192.241.119.237", "3");
INSERT INTO `wp_rg_form_view` VALUES("53690", "8", "2017-04-12 22:01:14", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("53691", "15", "2017-04-12 22:14:46", "157.55.39.111", "12");
INSERT INTO `wp_rg_form_view` VALUES("53692", "10", "2017-04-12 22:14:47", "157.55.39.111", "12");
INSERT INTO `wp_rg_form_view` VALUES("53693", "3", "2017-04-12 22:14:47", "157.55.39.111", "11");
INSERT INTO `wp_rg_form_view` VALUES("53694", "15", "2017-04-12 23:06:59", "157.55.39.171", "7");
INSERT INTO `wp_rg_form_view` VALUES("53695", "10", "2017-04-12 23:06:59", "157.55.39.171", "6");
INSERT INTO `wp_rg_form_view` VALUES("53696", "3", "2017-04-12 23:06:59", "157.55.39.171", "6");
INSERT INTO `wp_rg_form_view` VALUES("53697", "14", "2017-04-12 23:48:15", "176.103.56.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("53698", "15", "2017-04-13 00:14:17", "104.154.58.95", "9");
INSERT INTO `wp_rg_form_view` VALUES("53699", "10", "2017-04-13 00:14:17", "104.154.58.95", "7");
INSERT INTO `wp_rg_form_view` VALUES("53700", "3", "2017-04-13 00:14:17", "104.154.58.95", "8");
INSERT INTO `wp_rg_form_view` VALUES("53701", "14", "2017-04-13 00:28:15", "40.77.167.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("53702", "15", "2017-04-13 01:19:21", "104.154.58.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("53703", "10", "2017-04-13 01:19:21", "104.154.58.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("53704", "3", "2017-04-13 01:19:22", "104.154.58.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("53705", "15", "2017-04-13 02:15:43", "104.154.58.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("53706", "10", "2017-04-13 02:15:43", "104.154.58.95", "7");
INSERT INTO `wp_rg_form_view` VALUES("53707", "3", "2017-04-13 02:15:44", "104.154.58.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("53708", "14", "2017-04-13 02:24:28", "107.173.241.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("53709", "3", "2017-04-13 03:22:06", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("53710", "6", "2017-04-13 03:22:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53711", "9", "2017-04-13 03:22:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53712", "8", "2017-04-13 03:22:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53713", "10", "2017-04-13 03:22:07", "52.88.109.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("53714", "13", "2017-04-13 03:22:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53715", "15", "2017-04-13 03:22:08", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("53716", "12", "2017-04-13 04:05:31", "202.46.58.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("53717", "15", "2017-04-13 04:05:31", "202.46.58.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("53718", "10", "2017-04-13 04:05:31", "202.46.58.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("53719", "3", "2017-04-13 04:05:32", "202.46.58.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("53720", "3", "2017-04-13 05:11:42", "51.255.65.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("53721", "15", "2017-04-13 05:11:42", "51.255.65.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("53722", "10", "2017-04-13 05:11:42", "51.255.65.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("53723", "15", "2017-04-13 06:18:54", "202.46.51.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("53724", "10", "2017-04-13 06:18:55", "202.46.51.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("53725", "3", "2017-04-13 06:18:56", "202.46.51.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("53726", "15", "2017-04-13 07:25:31", "202.46.54.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("53727", "10", "2017-04-13 07:25:32", "202.46.54.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("53728", "3", "2017-04-13 07:25:32", "202.46.54.182", "3");
INSERT INTO `wp_rg_form_view` VALUES("53729", "14", "2017-04-13 07:27:23", "217.182.132.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("53730", "10", "2017-04-13 08:12:16", "137.74.207.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("53731", "15", "2017-04-13 08:12:17", "137.74.207.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("53732", "3", "2017-04-13 08:12:17", "137.74.207.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("53733", "3", "2017-04-13 09:32:39", "164.132.161.7", "11");
INSERT INTO `wp_rg_form_view` VALUES("53734", "8", "2017-04-13 09:33:40", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53735", "13", "2017-04-13 09:33:40", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53736", "15", "2017-04-13 10:03:34", "164.132.161.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("53737", "10", "2017-04-13 10:03:34", "164.132.161.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("53738", "3", "2017-04-13 10:03:34", "164.132.161.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("53739", "3", "2017-04-13 13:32:05", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("53740", "15", "2017-04-13 14:01:02", "202.46.51.177", "4");
INSERT INTO `wp_rg_form_view` VALUES("53741", "10", "2017-04-13 14:01:03", "202.46.51.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("53742", "3", "2017-04-13 14:01:03", "202.46.51.177", "4");
INSERT INTO `wp_rg_form_view` VALUES("53743", "3", "2017-04-13 15:16:45", "52.88.109.3", "49");
INSERT INTO `wp_rg_form_view` VALUES("53744", "6", "2017-04-13 15:16:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53745", "9", "2017-04-13 15:16:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53746", "8", "2017-04-13 15:16:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53747", "10", "2017-04-13 15:16:46", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("53748", "13", "2017-04-13 15:16:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53749", "15", "2017-04-13 15:16:47", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("53750", "11", "2017-04-13 15:57:08", "213.174.147.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("53751", "2", "2017-04-13 15:57:45", "213.174.147.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("53752", "15", "2017-04-13 16:00:34", "213.174.147.33", "3");
INSERT INTO `wp_rg_form_view` VALUES("53753", "10", "2017-04-13 16:00:34", "213.174.147.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("53754", "3", "2017-04-13 16:00:34", "213.174.147.33", "4");
INSERT INTO `wp_rg_form_view` VALUES("53755", "3", "2017-04-13 17:00:16", "207.46.13.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("53756", "15", "2017-04-13 17:46:00", "75.154.233.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("53757", "10", "2017-04-13 17:46:02", "75.154.233.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("53758", "10", "2017-04-13 18:00:11", "205.201.132.14", "7");
INSERT INTO `wp_rg_form_view` VALUES("53759", "15", "2017-04-13 18:00:11", "205.201.132.14", "5");
INSERT INTO `wp_rg_form_view` VALUES("53760", "3", "2017-04-13 18:00:11", "205.201.132.14", "5");
INSERT INTO `wp_rg_form_view` VALUES("53761", "15", "2017-04-13 19:25:38", "51.255.65.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("53762", "10", "2017-04-13 19:25:39", "51.255.65.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("53763", "3", "2017-04-13 19:25:39", "51.255.65.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("53764", "14", "2017-04-13 21:43:20", "195.22.127.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("53765", "3", "2017-04-13 22:32:23", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("53766", "6", "2017-04-13 22:32:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53767", "9", "2017-04-13 22:32:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53768", "8", "2017-04-13 22:32:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53769", "10", "2017-04-13 22:32:26", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("53770", "13", "2017-04-13 22:32:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53771", "15", "2017-04-13 22:32:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("53772", "14", "2017-04-13 22:52:47", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("53773", "5", "2017-04-13 23:02:05", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("53774", "15", "2017-04-13 23:02:05", "77.75.76.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("53775", "10", "2017-04-13 23:02:05", "77.75.76.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("53776", "3", "2017-04-13 23:02:05", "77.75.76.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("53777", "2", "2017-04-13 23:02:18", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53778", "8", "2017-04-13 23:17:24", "202.46.58.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("53779", "15", "2017-04-14 00:07:19", "70.67.175.5", "5");
INSERT INTO `wp_rg_form_view` VALUES("53780", "10", "2017-04-14 00:07:19", "70.67.175.5", "7");
INSERT INTO `wp_rg_form_view` VALUES("53781", "3", "2017-04-14 00:07:19", "70.67.175.5", "6");
INSERT INTO `wp_rg_form_view` VALUES("53782", "3", "2017-04-14 01:30:41", "202.46.53.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("53783", "15", "2017-04-14 01:30:42", "202.46.53.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("53784", "10", "2017-04-14 01:30:42", "202.46.53.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("53785", "15", "2017-04-14 02:03:08", "77.75.76.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("53786", "10", "2017-04-14 02:03:09", "77.75.76.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("53787", "3", "2017-04-14 02:03:10", "77.75.76.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("53788", "15", "2017-04-14 03:32:44", "164.132.161.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("53789", "10", "2017-04-14 03:32:45", "164.132.161.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("53790", "3", "2017-04-14 03:32:45", "164.132.161.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("53791", "15", "2017-04-14 04:05:38", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("53792", "10", "2017-04-14 04:05:38", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("53793", "3", "2017-04-14 04:05:38", "216.244.66.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("53794", "15", "2017-04-14 05:07:10", "47.29.21.121", "7");
INSERT INTO `wp_rg_form_view` VALUES("53795", "10", "2017-04-14 05:07:10", "47.29.21.121", "5");
INSERT INTO `wp_rg_form_view` VALUES("53796", "3", "2017-04-14 05:07:10", "47.29.21.121", "7");
INSERT INTO `wp_rg_form_view` VALUES("53797", "3", "2017-04-14 06:24:50", "51.255.173.85", "7");
INSERT INTO `wp_rg_form_view` VALUES("53798", "15", "2017-04-14 06:24:52", "51.255.173.85", "5");
INSERT INTO `wp_rg_form_view` VALUES("53799", "10", "2017-04-14 06:24:52", "51.255.173.85", "5");
INSERT INTO `wp_rg_form_view` VALUES("53800", "15", "2017-04-14 07:15:18", "51.255.65.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("53801", "10", "2017-04-14 07:15:20", "51.255.65.54", "4");
INSERT INTO `wp_rg_form_view` VALUES("53802", "3", "2017-04-14 07:15:21", "51.255.65.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("53803", "3", "2017-04-14 08:25:10", "202.46.52.179", "5");
INSERT INTO `wp_rg_form_view` VALUES("53804", "15", "2017-04-14 08:25:12", "202.46.52.179", "3");
INSERT INTO `wp_rg_form_view` VALUES("53805", "10", "2017-04-14 08:25:12", "202.46.52.179", "3");
INSERT INTO `wp_rg_form_view` VALUES("53806", "15", "2017-04-14 09:17:46", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53807", "10", "2017-04-14 09:17:46", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53808", "3", "2017-04-14 09:17:46", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53809", "11", "2017-04-14 09:21:59", "77.75.76.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("53810", "12", "2017-04-14 10:00:35", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53811", "15", "2017-04-14 10:00:37", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("53812", "10", "2017-04-14 10:00:37", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("53813", "3", "2017-04-14 10:00:38", "68.180.229.247", "27");
INSERT INTO `wp_rg_form_view` VALUES("53814", "6", "2017-04-14 10:15:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53815", "9", "2017-04-14 10:15:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53816", "8", "2017-04-14 10:15:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53817", "13", "2017-04-14 10:15:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53818", "3", "2017-04-14 11:06:45", "40.77.167.117", "7");
INSERT INTO `wp_rg_form_view` VALUES("53819", "8", "2017-04-14 11:06:46", "40.77.167.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("53820", "13", "2017-04-14 11:06:46", "40.77.167.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("53821", "15", "2017-04-14 11:07:04", "137.74.207.109", "3");
INSERT INTO `wp_rg_form_view` VALUES("53822", "10", "2017-04-14 11:07:04", "137.74.207.109", "3");
INSERT INTO `wp_rg_form_view` VALUES("53823", "3", "2017-04-14 12:40:15", "51.255.65.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("53824", "15", "2017-04-14 13:44:22", "202.46.58.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("53825", "10", "2017-04-14 13:44:25", "202.46.58.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("53826", "3", "2017-04-14 13:44:25", "202.46.58.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("53827", "8", "2017-04-14 13:58:48", "40.77.167.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("53828", "13", "2017-04-14 13:58:48", "40.77.167.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("53829", "15", "2017-04-14 14:02:34", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53830", "10", "2017-04-14 14:02:34", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53831", "3", "2017-04-14 14:02:34", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("53832", "15", "2017-04-14 15:11:15", "67.207.207.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("53833", "10", "2017-04-14 15:11:16", "67.207.207.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("53834", "3", "2017-04-14 15:11:16", "67.207.207.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("53835", "7", "2017-04-14 16:02:53", "40.77.167.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("53836", "15", "2017-04-14 16:02:53", "40.77.167.117", "382");
INSERT INTO `wp_rg_form_view` VALUES("53837", "10", "2017-04-14 16:02:53", "40.77.167.117", "338");
INSERT INTO `wp_rg_form_view` VALUES("53838", "3", "2017-04-14 16:02:53", "40.77.167.117", "379");
INSERT INTO `wp_rg_form_view` VALUES("53839", "11", "2017-04-14 16:15:55", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("53840", "2", "2017-04-14 16:15:59", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("53841", "14", "2017-04-14 16:17:42", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("53842", "13", "2017-04-14 16:20:45", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("53843", "8", "2017-04-14 16:24:52", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("53844", "9", "2017-04-14 16:25:00", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("53845", "6", "2017-04-14 16:25:54", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("53846", "15", "2017-04-14 17:00:00", "5.9.98.130", "704");
INSERT INTO `wp_rg_form_view` VALUES("53847", "10", "2017-04-14 17:00:00", "5.9.98.130", "530");
INSERT INTO `wp_rg_form_view` VALUES("53848", "3", "2017-04-14 17:00:00", "5.9.98.130", "570");
INSERT INTO `wp_rg_form_view` VALUES("53849", "6", "2017-04-14 17:40:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53850", "9", "2017-04-14 17:40:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53851", "8", "2017-04-14 17:40:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53852", "13", "2017-04-14 17:40:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53853", "3", "2017-04-14 18:02:50", "164.132.161.92", "477");
INSERT INTO `wp_rg_form_view` VALUES("53854", "15", "2017-04-14 18:02:50", "164.132.161.92", "487");
INSERT INTO `wp_rg_form_view` VALUES("53855", "10", "2017-04-14 18:02:50", "164.132.161.92", "444");
INSERT INTO `wp_rg_form_view` VALUES("53856", "15", "2017-04-14 19:00:03", "5.9.98.130", "749");
INSERT INTO `wp_rg_form_view` VALUES("53857", "10", "2017-04-14 19:00:04", "5.9.98.130", "631");
INSERT INTO `wp_rg_form_view` VALUES("53858", "3", "2017-04-14 19:00:04", "5.9.98.130", "696");
INSERT INTO `wp_rg_form_view` VALUES("53859", "15", "2017-04-14 20:01:38", "41.13.154.229", "327");
INSERT INTO `wp_rg_form_view` VALUES("53860", "10", "2017-04-14 20:01:38", "41.13.154.229", "325");
INSERT INTO `wp_rg_form_view` VALUES("53861", "3", "2017-04-14 20:01:38", "41.13.154.229", "325");
INSERT INTO `wp_rg_form_view` VALUES("53862", "15", "2017-04-14 21:00:00", "5.9.98.130", "977");
INSERT INTO `wp_rg_form_view` VALUES("53863", "10", "2017-04-14 21:00:00", "5.9.98.130", "568");
INSERT INTO `wp_rg_form_view` VALUES("53864", "3", "2017-04-14 21:00:00", "5.9.98.130", "568");
INSERT INTO `wp_rg_form_view` VALUES("53865", "13", "2017-04-14 21:35:09", "202.46.50.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("53866", "15", "2017-04-14 22:00:00", "5.9.98.130", "594");
INSERT INTO `wp_rg_form_view` VALUES("53867", "10", "2017-04-14 22:00:01", "5.9.98.130", "491");
INSERT INTO `wp_rg_form_view` VALUES("53868", "3", "2017-04-14 22:00:01", "5.9.98.130", "493");
INSERT INTO `wp_rg_form_view` VALUES("53869", "13", "2017-04-14 22:16:41", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53870", "15", "2017-04-14 23:15:08", "202.46.56.130", "385");
INSERT INTO `wp_rg_form_view` VALUES("53871", "10", "2017-04-14 23:15:09", "202.46.56.130", "513");
INSERT INTO `wp_rg_form_view` VALUES("53872", "3", "2017-04-14 23:15:10", "202.46.56.130", "641");
INSERT INTO `wp_rg_form_view` VALUES("53873", "15", "2017-04-15 01:04:17", "5.9.98.130", "803");
INSERT INTO `wp_rg_form_view` VALUES("53874", "10", "2017-04-15 01:04:19", "5.9.98.130", "801");
INSERT INTO `wp_rg_form_view` VALUES("53875", "3", "2017-04-15 01:04:19", "5.9.98.130", "801");
INSERT INTO `wp_rg_form_view` VALUES("53876", "15", "2017-04-15 02:00:04", "5.9.98.130", "673");
INSERT INTO `wp_rg_form_view` VALUES("53877", "10", "2017-04-15 02:00:04", "5.9.98.130", "419");
INSERT INTO `wp_rg_form_view` VALUES("53878", "3", "2017-04-15 02:00:04", "5.9.98.130", "418");
INSERT INTO `wp_rg_form_view` VALUES("53879", "15", "2017-04-15 03:00:02", "5.9.98.130", "1599");
INSERT INTO `wp_rg_form_view` VALUES("53880", "10", "2017-04-15 03:00:02", "5.9.98.130", "829");
INSERT INTO `wp_rg_form_view` VALUES("53881", "3", "2017-04-15 03:00:02", "5.9.98.130", "829");
INSERT INTO `wp_rg_form_view` VALUES("53882", "15", "2017-04-15 04:00:03", "5.9.98.130", "711");
INSERT INTO `wp_rg_form_view` VALUES("53883", "10", "2017-04-15 04:00:03", "5.9.98.130", "711");
INSERT INTO `wp_rg_form_view` VALUES("53884", "3", "2017-04-15 04:00:03", "5.9.98.130", "712");
INSERT INTO `wp_rg_form_view` VALUES("53885", "3", "2017-04-15 05:33:37", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("53886", "6", "2017-04-15 05:33:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53887", "9", "2017-04-15 05:33:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53888", "8", "2017-04-15 05:33:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53889", "10", "2017-04-15 05:33:39", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53890", "13", "2017-04-15 05:33:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53891", "15", "2017-04-15 05:33:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53892", "10", "2017-04-15 06:10:55", "5.9.98.130", "974");
INSERT INTO `wp_rg_form_view` VALUES("53893", "15", "2017-04-15 06:10:56", "5.9.98.130", "718");
INSERT INTO `wp_rg_form_view` VALUES("53894", "3", "2017-04-15 06:10:56", "5.9.98.130", "1179");
INSERT INTO `wp_rg_form_view` VALUES("53895", "3", "2017-04-15 07:00:01", "5.9.98.130", "105");
INSERT INTO `wp_rg_form_view` VALUES("53896", "15", "2017-04-15 07:00:02", "5.9.98.130", "53");
INSERT INTO `wp_rg_form_view` VALUES("53897", "10", "2017-04-15 07:00:02", "5.9.98.130", "53");
INSERT INTO `wp_rg_form_view` VALUES("53898", "9", "2017-04-15 07:14:34", "217.182.92.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("53899", "12", "2017-04-15 08:16:34", "51.255.65.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("53900", "15", "2017-04-15 08:16:36", "51.255.65.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("53901", "10", "2017-04-15 08:16:36", "51.255.65.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("53902", "3", "2017-04-15 08:16:37", "51.255.65.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("53903", "13", "2017-04-15 08:25:08", "51.255.65.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("53904", "15", "2017-04-15 09:27:37", "5.9.98.130", "488");
INSERT INTO `wp_rg_form_view` VALUES("53905", "10", "2017-04-15 09:27:37", "5.9.98.130", "488");
INSERT INTO `wp_rg_form_view` VALUES("53906", "3", "2017-04-15 09:27:38", "5.9.98.130", "488");
INSERT INTO `wp_rg_form_view` VALUES("53907", "15", "2017-04-15 10:00:00", "5.9.98.130", "860");
INSERT INTO `wp_rg_form_view` VALUES("53908", "10", "2017-04-15 10:00:00", "5.9.98.130", "861");
INSERT INTO `wp_rg_form_view` VALUES("53909", "3", "2017-04-15 10:00:00", "5.9.98.130", "860");
INSERT INTO `wp_rg_form_view` VALUES("53910", "8", "2017-04-15 10:47:42", "202.46.52.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("53911", "15", "2017-04-15 11:00:00", "5.9.98.130", "576");
INSERT INTO `wp_rg_form_view` VALUES("53912", "10", "2017-04-15 11:00:01", "5.9.98.130", "577");
INSERT INTO `wp_rg_form_view` VALUES("53913", "3", "2017-04-15 11:00:01", "5.9.98.130", "577");
INSERT INTO `wp_rg_form_view` VALUES("53914", "3", "2017-04-15 12:00:12", "217.182.132.147", "268");
INSERT INTO `wp_rg_form_view` VALUES("53915", "15", "2017-04-15 12:00:13", "217.182.132.147", "530");
INSERT INTO `wp_rg_form_view` VALUES("53916", "10", "2017-04-15 12:00:13", "217.182.132.147", "267");
INSERT INTO `wp_rg_form_view` VALUES("53917", "13", "2017-04-15 12:23:01", "207.46.13.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("53918", "15", "2017-04-15 13:00:02", "5.9.98.130", "1659");
INSERT INTO `wp_rg_form_view` VALUES("53919", "10", "2017-04-15 13:00:02", "5.9.98.130", "834");
INSERT INTO `wp_rg_form_view` VALUES("53920", "3", "2017-04-15 13:00:03", "5.9.98.130", "856");
INSERT INTO `wp_rg_form_view` VALUES("53921", "6", "2017-04-15 13:08:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53922", "9", "2017-04-15 13:08:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53923", "8", "2017-04-15 13:08:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53924", "13", "2017-04-15 13:08:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53925", "15", "2017-04-15 14:00:00", "5.9.98.130", "1624");
INSERT INTO `wp_rg_form_view` VALUES("53926", "10", "2017-04-15 14:00:01", "5.9.98.130", "813");
INSERT INTO `wp_rg_form_view` VALUES("53927", "3", "2017-04-15 14:00:01", "5.9.98.130", "815");
INSERT INTO `wp_rg_form_view` VALUES("53928", "15", "2017-04-15 15:00:03", "5.9.98.130", "637");
INSERT INTO `wp_rg_form_view` VALUES("53929", "10", "2017-04-15 15:00:04", "5.9.98.130", "490");
INSERT INTO `wp_rg_form_view` VALUES("53930", "3", "2017-04-15 15:00:04", "5.9.98.130", "490");
INSERT INTO `wp_rg_form_view` VALUES("53931", "13", "2017-04-15 15:04:02", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("53932", "14", "2017-04-15 15:56:22", "202.46.54.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("53933", "15", "2017-04-15 16:15:51", "164.132.161.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("53934", "10", "2017-04-15 16:15:51", "164.132.161.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("53935", "3", "2017-04-15 16:15:52", "164.132.161.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("53936", "15", "2017-04-15 17:21:55", "157.55.39.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("53937", "10", "2017-04-15 17:21:55", "157.55.39.55", "4");
INSERT INTO `wp_rg_form_view` VALUES("53938", "3", "2017-04-15 17:21:56", "157.55.39.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("53939", "5", "2017-04-15 17:46:29", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("53940", "10", "2017-04-15 18:06:25", "24.108.12.82", "6");
INSERT INTO `wp_rg_form_view` VALUES("53941", "15", "2017-04-15 18:19:04", "117.227.7.237", "6");
INSERT INTO `wp_rg_form_view` VALUES("53942", "3", "2017-04-15 18:19:05", "117.227.7.237", "4");
INSERT INTO `wp_rg_form_view` VALUES("53943", "15", "2017-04-15 19:35:25", "137.74.207.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("53944", "10", "2017-04-15 19:35:27", "137.74.207.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("53945", "3", "2017-04-15 19:35:28", "137.74.207.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("53946", "11", "2017-04-15 20:16:16", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("53947", "10", "2017-04-15 20:38:34", "157.55.39.199", "47");
INSERT INTO `wp_rg_form_view` VALUES("53948", "15", "2017-04-15 20:38:36", "157.55.39.199", "38");
INSERT INTO `wp_rg_form_view` VALUES("53949", "3", "2017-04-15 20:38:36", "157.55.39.199", "50");
INSERT INTO `wp_rg_form_view` VALUES("53950", "8", "2017-04-15 20:38:45", "157.55.39.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("53951", "9", "2017-04-15 20:49:35", "157.55.39.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("53952", "3", "2017-04-15 21:21:30", "217.182.132.183", "25");
INSERT INTO `wp_rg_form_view` VALUES("53953", "15", "2017-04-15 21:21:30", "217.182.132.183", "17");
INSERT INTO `wp_rg_form_view` VALUES("53954", "10", "2017-04-15 21:21:30", "217.182.132.183", "20");
INSERT INTO `wp_rg_form_view` VALUES("53955", "9", "2017-04-15 21:26:19", "157.55.39.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("53956", "15", "2017-04-15 22:12:38", "77.75.76.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("53957", "10", "2017-04-15 22:12:39", "77.75.76.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("53958", "3", "2017-04-15 22:12:39", "77.75.76.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("53959", "14", "2017-04-15 23:35:33", "24.244.32.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("53960", "3", "2017-04-15 23:48:09", "51.255.65.80", "4");
INSERT INTO `wp_rg_form_view` VALUES("53961", "15", "2017-04-15 23:48:10", "51.255.65.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("53962", "10", "2017-04-15 23:48:10", "51.255.65.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("53963", "15", "2017-04-16 00:22:08", "77.75.79.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("53964", "10", "2017-04-16 00:22:09", "77.75.79.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("53965", "3", "2017-04-16 00:22:09", "77.75.79.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("53966", "2", "2017-04-16 00:59:52", "52.54.103.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("53967", "3", "2017-04-16 01:08:05", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("53968", "6", "2017-04-16 01:08:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53969", "9", "2017-04-16 01:08:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53970", "8", "2017-04-16 01:08:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53971", "10", "2017-04-16 01:08:06", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("53972", "13", "2017-04-16 01:08:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53973", "15", "2017-04-16 01:08:07", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53974", "10", "2017-04-16 02:13:33", "202.46.57.208", "3");
INSERT INTO `wp_rg_form_view` VALUES("53975", "15", "2017-04-16 02:13:34", "202.46.57.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("53976", "3", "2017-04-16 02:13:34", "202.46.57.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("53977", "15", "2017-04-16 04:14:19", "207.46.13.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("53978", "10", "2017-04-16 04:14:24", "207.46.13.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("53979", "3", "2017-04-16 04:14:25", "207.46.13.183", "4");
INSERT INTO `wp_rg_form_view` VALUES("53980", "3", "2017-04-16 05:20:55", "202.46.52.165", "6");
INSERT INTO `wp_rg_form_view` VALUES("53981", "15", "2017-04-16 05:20:55", "202.46.52.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("53982", "10", "2017-04-16 05:20:55", "202.46.52.165", "5");
INSERT INTO `wp_rg_form_view` VALUES("53983", "14", "2017-04-16 05:31:23", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("53984", "15", "2017-04-16 06:16:32", "157.55.39.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("53985", "10", "2017-04-16 06:16:33", "157.55.39.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("53986", "3", "2017-04-16 06:16:33", "157.55.39.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("53987", "15", "2017-04-16 07:16:34", "148.251.50.205", "13");
INSERT INTO `wp_rg_form_view` VALUES("53988", "10", "2017-04-16 07:16:35", "148.251.50.205", "12");
INSERT INTO `wp_rg_form_view` VALUES("53989", "3", "2017-04-16 07:16:35", "148.251.50.205", "13");
INSERT INTO `wp_rg_form_view` VALUES("53990", "2", "2017-04-16 07:16:43", "148.251.50.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("53991", "11", "2017-04-16 07:17:10", "148.251.50.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("53992", "3", "2017-04-16 08:37:44", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("53993", "6", "2017-04-16 08:37:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53994", "9", "2017-04-16 08:37:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53995", "8", "2017-04-16 08:37:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53996", "10", "2017-04-16 08:37:46", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("53997", "13", "2017-04-16 08:37:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53998", "15", "2017-04-16 08:37:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("53999", "15", "2017-04-16 09:01:40", "157.55.39.118", "3");
INSERT INTO `wp_rg_form_view` VALUES("54000", "10", "2017-04-16 09:01:40", "157.55.39.118", "3");
INSERT INTO `wp_rg_form_view` VALUES("54001", "3", "2017-04-16 09:01:40", "157.55.39.118", "3");
INSERT INTO `wp_rg_form_view` VALUES("54002", "15", "2017-04-16 10:24:35", "40.77.167.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("54003", "10", "2017-04-16 10:24:35", "40.77.167.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("54004", "3", "2017-04-16 10:24:36", "40.77.167.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("54005", "14", "2017-04-16 10:27:14", "107.173.241.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("54006", "15", "2017-04-16 11:03:54", "202.46.53.118", "7");
INSERT INTO `wp_rg_form_view` VALUES("54007", "10", "2017-04-16 11:03:55", "202.46.53.118", "6");
INSERT INTO `wp_rg_form_view` VALUES("54008", "3", "2017-04-16 11:03:55", "202.46.53.118", "8");
INSERT INTO `wp_rg_form_view` VALUES("54009", "11", "2017-04-16 11:38:49", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("54010", "2", "2017-04-16 11:55:46", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("54011", "15", "2017-04-16 12:01:32", "188.40.46.135", "24");
INSERT INTO `wp_rg_form_view` VALUES("54012", "10", "2017-04-16 12:01:32", "188.40.46.135", "26");
INSERT INTO `wp_rg_form_view` VALUES("54013", "3", "2017-04-16 12:01:32", "188.40.46.135", "97");
INSERT INTO `wp_rg_form_view` VALUES("54014", "6", "2017-04-16 12:09:39", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("54015", "9", "2017-04-16 12:09:40", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("54016", "8", "2017-04-16 12:09:41", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("54017", "13", "2017-04-16 12:09:42", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("54018", "14", "2017-04-16 12:12:20", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("54019", "10", "2017-04-16 13:11:33", "68.180.229.247", "11");
INSERT INTO `wp_rg_form_view` VALUES("54020", "15", "2017-04-16 13:11:34", "68.180.229.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("54021", "3", "2017-04-16 13:11:34", "68.180.229.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("54022", "3", "2017-04-16 14:23:55", "202.46.49.110", "4");
INSERT INTO `wp_rg_form_view` VALUES("54023", "15", "2017-04-16 14:23:56", "202.46.49.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("54024", "10", "2017-04-16 14:23:56", "202.46.49.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("54025", "15", "2017-04-16 15:30:39", "202.46.53.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("54026", "10", "2017-04-16 15:30:40", "202.46.53.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("54027", "3", "2017-04-16 15:30:40", "202.46.53.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("54028", "13", "2017-04-16 16:03:54", "202.46.54.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("54029", "15", "2017-04-16 16:03:54", "202.46.54.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("54030", "10", "2017-04-16 16:03:54", "202.46.54.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("54031", "3", "2017-04-16 16:03:54", "202.46.54.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("54032", "15", "2017-04-16 17:23:19", "40.77.167.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("54033", "10", "2017-04-16 17:23:19", "40.77.167.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("54034", "3", "2017-04-16 17:23:20", "40.77.167.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("54035", "14", "2017-04-16 17:43:56", "202.46.58.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("54036", "15", "2017-04-16 18:03:46", "52.43.18.103", "4");
INSERT INTO `wp_rg_form_view` VALUES("54037", "10", "2017-04-16 18:03:47", "52.43.18.103", "6");
INSERT INTO `wp_rg_form_view` VALUES("54038", "3", "2017-04-16 18:03:47", "52.43.18.103", "5");
INSERT INTO `wp_rg_form_view` VALUES("54039", "10", "2017-04-16 19:55:49", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("54040", "15", "2017-04-16 19:55:51", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("54041", "3", "2017-04-16 19:55:52", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("54042", "5", "2017-04-16 20:09:15", "164.132.161.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("54043", "15", "2017-04-16 20:09:15", "164.132.161.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("54044", "10", "2017-04-16 20:09:15", "164.132.161.22", "4");
INSERT INTO `wp_rg_form_view` VALUES("54045", "3", "2017-04-16 20:09:15", "164.132.161.22", "27");
INSERT INTO `wp_rg_form_view` VALUES("54046", "6", "2017-04-16 20:58:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54047", "9", "2017-04-16 20:58:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54048", "8", "2017-04-16 20:58:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54049", "13", "2017-04-16 20:58:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54050", "15", "2017-04-16 21:37:21", "202.46.48.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("54051", "10", "2017-04-16 21:37:22", "202.46.48.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("54052", "3", "2017-04-16 21:37:22", "202.46.48.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("54053", "15", "2017-04-16 22:55:16", "164.132.161.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("54054", "10", "2017-04-16 22:55:18", "164.132.161.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("54055", "3", "2017-04-16 22:55:18", "164.132.161.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("54056", "3", "2017-04-16 23:12:55", "217.182.132.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("54057", "14", "2017-04-16 23:27:44", "146.0.74.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("54058", "10", "2017-04-17 00:13:33", "217.182.132.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("54059", "15", "2017-04-17 00:13:33", "217.182.132.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("54060", "3", "2017-04-17 00:13:33", "217.182.132.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("54061", "15", "2017-04-17 01:23:14", "68.180.229.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("54062", "10", "2017-04-17 01:23:18", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("54063", "3", "2017-04-17 01:23:19", "68.180.229.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("54064", "15", "2017-04-17 02:08:46", "40.77.167.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("54065", "10", "2017-04-17 02:08:46", "40.77.167.69", "7");
INSERT INTO `wp_rg_form_view` VALUES("54066", "3", "2017-04-17 02:08:46", "40.77.167.69", "7");
INSERT INTO `wp_rg_form_view` VALUES("54067", "15", "2017-04-17 03:44:04", "157.55.39.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("54068", "10", "2017-04-17 03:44:04", "157.55.39.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("54069", "3", "2017-04-17 03:44:04", "157.55.39.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("54070", "3", "2017-04-17 04:07:03", "202.46.49.90", "33");
INSERT INTO `wp_rg_form_view` VALUES("54071", "15", "2017-04-17 04:07:03", "202.46.49.90", "7");
INSERT INTO `wp_rg_form_view` VALUES("54072", "10", "2017-04-17 04:07:03", "202.46.49.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("54073", "6", "2017-04-17 04:29:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54074", "9", "2017-04-17 04:29:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54075", "8", "2017-04-17 04:29:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54076", "13", "2017-04-17 04:29:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54077", "2", "2017-04-17 04:31:18", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("54078", "3", "2017-04-17 05:15:58", "151.80.31.152", "4");
INSERT INTO `wp_rg_form_view` VALUES("54079", "15", "2017-04-17 05:15:59", "151.80.31.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("54080", "10", "2017-04-17 05:15:59", "151.80.31.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("54081", "15", "2017-04-17 06:10:51", "157.55.39.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("54082", "10", "2017-04-17 06:10:52", "157.55.39.242", "6");
INSERT INTO `wp_rg_form_view` VALUES("54083", "3", "2017-04-17 06:10:53", "157.55.39.242", "29");
INSERT INTO `wp_rg_form_view` VALUES("54084", "6", "2017-04-17 06:48:09", "157.55.39.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("54085", "9", "2017-04-17 06:48:09", "157.55.39.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("54086", "8", "2017-04-17 06:48:09", "157.55.39.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("54087", "13", "2017-04-17 06:48:10", "157.55.39.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("54088", "15", "2017-04-17 08:33:43", "202.46.51.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("54089", "10", "2017-04-17 08:33:46", "202.46.51.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("54090", "3", "2017-04-17 08:33:47", "202.46.51.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("54091", "15", "2017-04-17 09:13:20", "157.55.39.201", "5");
INSERT INTO `wp_rg_form_view` VALUES("54092", "10", "2017-04-17 09:13:21", "157.55.39.201", "4");
INSERT INTO `wp_rg_form_view` VALUES("54093", "3", "2017-04-17 09:13:23", "157.55.39.201", "5");
INSERT INTO `wp_rg_form_view` VALUES("54094", "3", "2017-04-17 10:14:34", "157.55.39.201", "3");
INSERT INTO `wp_rg_form_view` VALUES("54095", "15", "2017-04-17 10:14:34", "157.55.39.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("54096", "10", "2017-04-17 10:14:34", "157.55.39.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("54097", "3", "2017-04-17 11:12:37", "217.182.132.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("54098", "15", "2017-04-17 11:12:43", "217.182.132.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("54099", "10", "2017-04-17 11:12:44", "217.182.132.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("54100", "15", "2017-04-17 12:03:17", "202.46.49.152", "5");
INSERT INTO `wp_rg_form_view` VALUES("54101", "10", "2017-04-17 12:03:22", "202.46.49.152", "6");
INSERT INTO `wp_rg_form_view` VALUES("54102", "3", "2017-04-17 12:03:22", "202.46.49.152", "5");
INSERT INTO `wp_rg_form_view` VALUES("54103", "3", "2017-04-17 13:07:50", "164.132.162.188", "8");
INSERT INTO `wp_rg_form_view` VALUES("54104", "15", "2017-04-17 13:07:50", "164.132.162.188", "5");
INSERT INTO `wp_rg_form_view` VALUES("54105", "10", "2017-04-17 13:07:50", "164.132.162.188", "6");
INSERT INTO `wp_rg_form_view` VALUES("54106", "15", "2017-04-17 14:16:34", "202.46.58.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("54107", "10", "2017-04-17 14:16:35", "202.46.58.27", "6");
INSERT INTO `wp_rg_form_view` VALUES("54108", "3", "2017-04-17 14:16:36", "202.46.58.27", "5");
INSERT INTO `wp_rg_form_view` VALUES("54109", "15", "2017-04-17 15:09:18", "51.255.65.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("54110", "10", "2017-04-17 15:09:18", "51.255.65.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("54111", "3", "2017-04-17 15:09:18", "51.255.65.26", "4");
INSERT INTO `wp_rg_form_view` VALUES("54112", "9", "2017-04-17 15:56:37", "202.46.55.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("54113", "15", "2017-04-17 16:10:54", "77.75.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("54114", "10", "2017-04-17 16:10:54", "77.75.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("54115", "3", "2017-04-17 16:10:54", "77.75.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("54116", "15", "2017-04-17 17:03:20", "202.46.51.196", "5");
INSERT INTO `wp_rg_form_view` VALUES("54117", "10", "2017-04-17 17:03:30", "202.46.51.196", "7");
INSERT INTO `wp_rg_form_view` VALUES("54118", "3", "2017-04-17 17:03:31", "202.46.51.196", "32");
INSERT INTO `wp_rg_form_view` VALUES("54119", "6", "2017-04-17 17:09:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54120", "9", "2017-04-17 17:09:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54121", "8", "2017-04-17 17:09:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54122", "13", "2017-04-17 17:09:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54123", "3", "2017-04-17 18:19:24", "68.180.229.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("54124", "8", "2017-04-17 18:19:25", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("54125", "13", "2017-04-17 18:19:26", "68.180.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("54126", "15", "2017-04-17 18:55:14", "51.255.71.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("54127", "10", "2017-04-17 18:55:15", "51.255.71.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("54128", "3", "2017-04-17 19:47:22", "68.180.230.59", "8");
INSERT INTO `wp_rg_form_view` VALUES("54129", "8", "2017-04-17 19:47:35", "68.180.230.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("54130", "13", "2017-04-17 19:47:35", "68.180.230.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("54131", "15", "2017-04-17 19:50:26", "217.182.132.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("54132", "10", "2017-04-17 19:50:27", "217.182.132.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("54133", "15", "2017-04-17 20:00:14", "217.182.132.80", "5");
INSERT INTO `wp_rg_form_view` VALUES("54134", "10", "2017-04-17 20:00:14", "217.182.132.80", "5");
INSERT INTO `wp_rg_form_view` VALUES("54135", "3", "2017-04-17 20:00:14", "217.182.132.80", "6");
INSERT INTO `wp_rg_form_view` VALUES("54136", "13", "2017-04-17 20:53:07", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54137", "15", "2017-04-17 21:04:33", "77.75.76.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("54138", "10", "2017-04-17 21:04:33", "77.75.76.162", "7");
INSERT INTO `wp_rg_form_view` VALUES("54139", "3", "2017-04-17 21:04:33", "77.75.76.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("54140", "15", "2017-04-17 22:26:40", "40.77.167.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("54141", "15", "2017-04-17 23:07:41", "202.46.54.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("54142", "10", "2017-04-17 23:07:46", "202.46.54.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("54143", "3", "2017-04-17 23:07:47", "202.46.54.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("54144", "8", "2017-04-17 23:18:11", "157.55.39.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("54145", "15", "2017-04-18 00:50:59", "24.68.126.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("54146", "10", "2017-04-18 00:50:59", "24.68.126.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("54147", "3", "2017-04-18 00:51:00", "24.68.126.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("54148", "15", "2017-04-18 01:11:59", "164.132.161.93", "4");
INSERT INTO `wp_rg_form_view` VALUES("54149", "10", "2017-04-18 01:20:58", "202.46.50.81", "5");
INSERT INTO `wp_rg_form_view` VALUES("54150", "3", "2017-04-18 01:20:59", "202.46.50.81", "28");
INSERT INTO `wp_rg_form_view` VALUES("54151", "6", "2017-04-18 01:29:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54152", "9", "2017-04-18 01:29:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54153", "8", "2017-04-18 01:29:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54154", "13", "2017-04-18 01:29:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54155", "2", "2017-04-18 02:04:07", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("54156", "15", "2017-04-18 02:28:05", "131.253.26.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54157", "10", "2017-04-18 02:28:05", "131.253.26.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54158", "3", "2017-04-18 02:28:05", "131.253.26.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54159", "15", "2017-04-18 03:05:07", "66.249.79.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("54160", "10", "2017-04-18 03:05:07", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("54161", "3", "2017-04-18 03:05:07", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("54162", "10", "2017-04-18 04:02:05", "199.59.150.183", "5");
INSERT INTO `wp_rg_form_view` VALUES("54163", "10", "2017-04-18 04:02:05", "199.16.157.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("54164", "15", "2017-04-18 04:02:05", "199.59.150.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("54165", "3", "2017-04-18 04:02:05", "199.59.150.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("54166", "15", "2017-04-18 05:07:38", "66.249.79.148", "11");
INSERT INTO `wp_rg_form_view` VALUES("54167", "10", "2017-04-18 05:07:39", "66.249.79.148", "10");
INSERT INTO `wp_rg_form_view` VALUES("54168", "3", "2017-04-18 05:07:40", "66.249.79.148", "13");
INSERT INTO `wp_rg_form_view` VALUES("54169", "14", "2017-04-18 05:14:15", "103.28.84.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("54170", "11", "2017-04-18 05:14:59", "191.101.31.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("54171", "2", "2017-04-18 05:15:49", "191.101.31.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("54172", "14", "2017-04-18 06:29:18", "37.230.135.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("54173", "8", "2017-04-18 07:32:56", "202.46.51.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("54174", "15", "2017-04-18 07:33:00", "202.46.51.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("54175", "10", "2017-04-18 07:33:02", "202.46.51.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("54176", "3", "2017-04-18 07:33:02", "202.46.51.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("54177", "15", "2017-04-18 08:16:09", "183.171.180.253", "138");
INSERT INTO `wp_rg_form_view` VALUES("54178", "10", "2017-04-18 08:16:09", "183.171.180.253", "113");
INSERT INTO `wp_rg_form_view` VALUES("54179", "3", "2017-04-18 08:16:10", "183.171.180.253", "127");
INSERT INTO `wp_rg_form_view` VALUES("54180", "14", "2017-04-18 08:42:55", "104.236.201.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("54181", "11", "2017-04-18 08:42:59", "104.236.201.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("54182", "6", "2017-04-18 08:51:05", "104.236.201.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("54183", "15", "2017-04-18 09:00:00", "104.236.201.239", "390");
INSERT INTO `wp_rg_form_view` VALUES("54184", "10", "2017-04-18 09:00:00", "104.236.201.239", "372");
INSERT INTO `wp_rg_form_view` VALUES("54185", "3", "2017-04-18 09:00:00", "104.236.201.239", "393");
INSERT INTO `wp_rg_form_view` VALUES("54186", "9", "2017-04-18 09:01:20", "104.236.201.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("54187", "2", "2017-04-18 09:49:20", "104.236.201.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("54188", "15", "2017-04-18 10:00:00", "104.236.201.239", "25");
INSERT INTO `wp_rg_form_view` VALUES("54189", "10", "2017-04-18 10:00:00", "104.236.201.239", "22");
INSERT INTO `wp_rg_form_view` VALUES("54190", "3", "2017-04-18 10:00:00", "104.236.201.239", "27");
INSERT INTO `wp_rg_form_view` VALUES("54191", "13", "2017-04-18 10:01:56", "104.236.201.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("54192", "9", "2017-04-18 11:00:30", "202.46.54.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("54193", "15", "2017-04-18 11:00:30", "202.46.54.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("54194", "10", "2017-04-18 11:00:31", "202.46.54.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("54195", "3", "2017-04-18 11:00:31", "202.46.54.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("54196", "15", "2017-04-18 12:07:12", "202.46.53.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("54197", "10", "2017-04-18 12:07:18", "202.46.53.11", "5");
INSERT INTO `wp_rg_form_view` VALUES("54198", "3", "2017-04-18 12:07:19", "202.46.53.11", "6");
INSERT INTO `wp_rg_form_view` VALUES("54199", "3", "2017-04-18 13:04:20", "216.244.66.231", "30");
INSERT INTO `wp_rg_form_view` VALUES("54200", "15", "2017-04-18 13:04:21", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("54201", "10", "2017-04-18 13:04:21", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("54202", "6", "2017-04-18 13:07:33", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54203", "9", "2017-04-18 13:07:33", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54204", "8", "2017-04-18 13:07:34", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54205", "13", "2017-04-18 13:07:35", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54206", "15", "2017-04-18 14:04:20", "96.54.236.74", "7");
INSERT INTO `wp_rg_form_view` VALUES("54207", "10", "2017-04-18 14:04:22", "96.54.236.74", "8");
INSERT INTO `wp_rg_form_view` VALUES("54208", "3", "2017-04-18 14:04:22", "96.54.236.74", "7");
INSERT INTO `wp_rg_form_view` VALUES("54209", "11", "2017-04-18 14:05:37", "68.180.230.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("54210", "8", "2017-04-18 14:23:12", "157.55.39.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("54211", "3", "2017-04-18 15:11:26", "52.88.109.3", "35");
INSERT INTO `wp_rg_form_view` VALUES("54212", "6", "2017-04-18 15:11:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54213", "9", "2017-04-18 15:11:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54214", "8", "2017-04-18 15:11:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54215", "10", "2017-04-18 15:11:28", "52.88.109.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("54216", "13", "2017-04-18 15:11:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54217", "15", "2017-04-18 15:11:29", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("54218", "14", "2017-04-18 15:40:17", "96.8.122.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("54219", "15", "2017-04-18 16:00:59", "199.21.99.202", "12");
INSERT INTO `wp_rg_form_view` VALUES("54220", "10", "2017-04-18 16:00:59", "199.21.99.202", "11");
INSERT INTO `wp_rg_form_view` VALUES("54221", "3", "2017-04-18 16:01:00", "199.21.99.202", "13");
INSERT INTO `wp_rg_form_view` VALUES("54222", "11", "2017-04-18 16:01:04", "141.8.143.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("54223", "2", "2017-04-18 16:07:30", "96.45.202.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("54224", "15", "2017-04-18 17:11:58", "96.50.17.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("54225", "10", "2017-04-18 17:12:03", "96.50.17.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("54226", "3", "2017-04-18 17:12:03", "96.50.17.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("54227", "10", "2017-04-18 18:10:54", "207.194.133.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("54228", "15", "2017-04-18 18:10:57", "207.194.133.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("54229", "3", "2017-04-18 18:10:57", "207.194.133.9", "5");
INSERT INTO `wp_rg_form_view` VALUES("54230", "10", "2017-04-18 19:36:07", "68.180.230.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("54231", "15", "2017-04-18 20:32:09", "164.132.161.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("54232", "10", "2017-04-18 20:32:10", "164.132.161.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("54233", "3", "2017-04-18 20:32:11", "164.132.161.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("54234", "15", "2017-04-18 21:38:10", "202.46.49.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("54235", "10", "2017-04-18 21:38:15", "202.46.49.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("54236", "3", "2017-04-18 21:38:16", "202.46.49.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("54237", "15", "2017-04-18 22:12:57", "68.180.230.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("54238", "10", "2017-04-18 22:13:01", "68.180.230.59", "5");
INSERT INTO `wp_rg_form_view` VALUES("54239", "3", "2017-04-18 22:13:02", "68.180.230.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("54240", "10", "2017-04-18 23:03:24", "68.180.230.59", "9");
INSERT INTO `wp_rg_form_view` VALUES("54241", "15", "2017-04-18 23:03:26", "68.180.230.59", "8");
INSERT INTO `wp_rg_form_view` VALUES("54242", "3", "2017-04-18 23:03:27", "68.180.230.59", "31");
INSERT INTO `wp_rg_form_view` VALUES("54243", "6", "2017-04-18 23:36:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54244", "9", "2017-04-18 23:36:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54245", "8", "2017-04-18 23:36:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54246", "13", "2017-04-18 23:36:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54247", "15", "2017-04-19 01:28:38", "199.71.240.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("54248", "10", "2017-04-19 01:28:40", "199.71.240.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("54249", "3", "2017-04-19 01:28:41", "199.71.240.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("54250", "15", "2017-04-19 02:43:20", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("54251", "10", "2017-04-19 02:43:25", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54252", "3", "2017-04-19 02:43:26", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54253", "15", "2017-04-19 03:19:44", "77.75.77.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("54254", "10", "2017-04-19 03:19:44", "77.75.77.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("54255", "3", "2017-04-19 03:19:44", "77.75.77.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("54256", "10", "2017-04-19 04:17:27", "202.46.50.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("54257", "3", "2017-04-19 04:17:27", "202.46.50.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("54258", "10", "2017-04-19 05:38:57", "51.255.65.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("54259", "3", "2017-04-19 05:38:58", "51.255.65.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("54260", "10", "2017-04-19 06:26:35", "68.180.230.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("54261", "3", "2017-04-19 06:26:35", "68.180.230.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("54262", "10", "2017-04-19 07:04:07", "202.46.51.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("54263", "3", "2017-04-19 07:04:07", "202.46.51.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("54264", "14", "2017-04-19 07:23:09", "104.223.52.120", "4");
INSERT INTO `wp_rg_form_view` VALUES("54265", "3", "2017-04-19 08:32:19", "68.180.230.59", "3");
INSERT INTO `wp_rg_form_view` VALUES("54266", "10", "2017-04-19 08:51:40", "151.80.31.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("54267", "10", "2017-04-19 09:17:30", "202.46.48.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("54268", "3", "2017-04-19 09:17:30", "202.46.48.137", "4");
INSERT INTO `wp_rg_form_view` VALUES("54269", "10", "2017-04-19 12:51:02", "66.249.66.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("54270", "3", "2017-04-19 12:51:04", "66.249.66.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("54271", "3", "2017-04-19 13:04:51", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("54272", "6", "2017-04-19 13:04:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54273", "9", "2017-04-19 13:04:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54274", "8", "2017-04-19 13:04:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54275", "10", "2017-04-19 13:04:52", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("54276", "13", "2017-04-19 13:04:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54277", "15", "2017-04-19 13:04:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54278", "5", "2017-04-19 13:32:09", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("54279", "8", "2017-04-19 14:25:00", "202.46.55.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("54280", "10", "2017-04-19 14:25:01", "202.46.55.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("54281", "3", "2017-04-19 14:25:02", "202.46.55.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("54282", "3", "2017-04-19 15:10:51", "68.180.230.59", "16");
INSERT INTO `wp_rg_form_view` VALUES("54283", "10", "2017-04-19 15:10:52", "68.180.230.59", "14");
INSERT INTO `wp_rg_form_view` VALUES("54284", "2", "2017-04-19 15:20:03", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("54285", "10", "2017-04-19 16:11:20", "77.75.76.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("54286", "3", "2017-04-19 16:11:22", "77.75.76.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("54287", "10", "2017-04-19 17:13:05", "96.45.202.182", "11");
INSERT INTO `wp_rg_form_view` VALUES("54288", "3", "2017-04-19 17:13:09", "96.45.202.182", "12");
INSERT INTO `wp_rg_form_view` VALUES("54289", "10", "2017-04-19 18:06:40", "202.46.48.81", "8");
INSERT INTO `wp_rg_form_view` VALUES("54290", "3", "2017-04-19 18:06:40", "202.46.48.81", "8");
INSERT INTO `wp_rg_form_view` VALUES("54291", "3", "2017-04-19 19:11:31", "216.244.66.234", "5");
INSERT INTO `wp_rg_form_view` VALUES("54292", "10", "2017-04-19 19:33:51", "66.249.66.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("54293", "15", "2017-04-19 20:04:02", "66.249.66.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("54294", "10", "2017-04-19 20:04:02", "66.249.66.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("54295", "3", "2017-04-19 20:04:03", "66.249.66.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("54296", "13", "2017-04-19 20:40:27", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("54297", "10", "2017-04-19 21:12:32", "24.108.12.82", "6");
INSERT INTO `wp_rg_form_view` VALUES("54298", "3", "2017-04-19 21:28:44", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("54299", "6", "2017-04-19 21:28:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54300", "9", "2017-04-19 21:28:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54301", "8", "2017-04-19 21:28:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54302", "13", "2017-04-19 21:28:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54303", "15", "2017-04-19 21:28:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54304", "10", "2017-04-19 22:10:31", "202.46.58.161", "4");
INSERT INTO `wp_rg_form_view` VALUES("54305", "3", "2017-04-19 22:10:31", "202.46.58.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("54306", "3", "2017-04-19 23:27:11", "40.77.167.103", "6");
INSERT INTO `wp_rg_form_view` VALUES("54307", "10", "2017-04-19 23:27:14", "207.46.13.129", "6");
INSERT INTO `wp_rg_form_view` VALUES("54308", "2", "2017-04-19 23:31:14", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("54309", "10", "2017-04-20 00:06:34", "207.46.13.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("54310", "3", "2017-04-20 00:06:35", "207.46.13.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("54311", "11", "2017-04-20 00:08:16", "207.46.13.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("54312", "14", "2017-04-20 01:27:37", "24.68.112.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("54313", "3", "2017-04-20 01:30:29", "202.46.58.84", "2");
INSERT INTO `wp_rg_form_view` VALUES("54314", "10", "2017-04-20 01:30:29", "202.46.58.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("54315", "10", "2017-04-20 02:03:52", "202.46.52.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("54316", "3", "2017-04-20 02:03:53", "202.46.52.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("54317", "11", "2017-04-20 03:07:16", "207.46.13.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("54318", "10", "2017-04-20 03:07:21", "207.46.13.137", "10");
INSERT INTO `wp_rg_form_view` VALUES("54319", "3", "2017-04-20 03:07:22", "207.46.13.137", "9");
INSERT INTO `wp_rg_form_view` VALUES("54320", "10", "2017-04-20 04:39:01", "207.46.13.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("54321", "3", "2017-04-20 04:39:02", "207.46.13.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("54322", "3", "2017-04-20 05:17:17", "137.74.207.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("54323", "10", "2017-04-20 05:35:02", "66.249.66.39", "3");
INSERT INTO `wp_rg_form_view` VALUES("54324", "10", "2017-04-20 06:39:50", "202.46.51.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("54325", "3", "2017-04-20 06:39:51", "202.46.51.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("54326", "14", "2017-04-20 07:46:29", "191.101.106.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("54327", "11", "2017-04-20 08:11:56", "207.46.13.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("54328", "10", "2017-04-20 08:13:13", "207.46.13.47", "5");
INSERT INTO `wp_rg_form_view` VALUES("54329", "3", "2017-04-20 08:13:14", "207.46.13.47", "5");
INSERT INTO `wp_rg_form_view` VALUES("54330", "13", "2017-04-20 08:42:38", "66.249.66.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("54331", "3", "2017-04-20 10:36:13", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("54332", "6", "2017-04-20 10:36:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54333", "9", "2017-04-20 10:36:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54334", "8", "2017-04-20 10:36:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54335", "10", "2017-04-20 10:36:18", "52.88.109.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("54336", "13", "2017-04-20 10:36:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54337", "15", "2017-04-20 10:36:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54338", "3", "2017-04-20 11:20:10", "207.46.13.47", "4");
INSERT INTO `wp_rg_form_view` VALUES("54339", "10", "2017-04-20 11:20:10", "207.46.13.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("54340", "10", "2017-04-20 12:01:06", "184.66.4.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("54341", "3", "2017-04-20 12:01:07", "184.66.4.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("54342", "14", "2017-04-20 12:50:19", "107.175.154.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("54343", "10", "2017-04-20 13:58:34", "207.46.13.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("54344", "3", "2017-04-20 13:58:38", "207.46.13.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("54345", "3", "2017-04-20 14:09:21", "202.46.54.117", "18");
INSERT INTO `wp_rg_form_view` VALUES("54346", "10", "2017-04-20 14:09:21", "202.46.54.117", "7");
INSERT INTO `wp_rg_form_view` VALUES("54347", "14", "2017-04-20 14:16:02", "207.46.13.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("54348", "8", "2017-04-20 14:46:45", "66.249.66.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("54349", "13", "2017-04-20 14:46:46", "66.249.66.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("54350", "11", "2017-04-20 15:16:00", "202.46.51.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("54351", "14", "2017-04-20 15:36:00", "24.68.109.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("54352", "10", "2017-04-20 15:39:04", "162.210.196.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("54353", "3", "2017-04-20 15:39:05", "162.210.196.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("54354", "11", "2017-04-20 16:05:10", "45.32.156.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("54355", "10", "2017-04-20 16:05:23", "45.32.156.159", "10");
INSERT INTO `wp_rg_form_view` VALUES("54356", "3", "2017-04-20 16:05:23", "45.32.156.159", "10");
INSERT INTO `wp_rg_form_view` VALUES("54357", "2", "2017-04-20 16:12:38", "45.32.156.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("54358", "15", "2017-04-20 17:33:59", "207.46.13.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("54359", "10", "2017-04-20 17:37:11", "184.66.130.240", "3");
INSERT INTO `wp_rg_form_view` VALUES("54360", "3", "2017-04-20 17:37:12", "184.66.130.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("54361", "3", "2017-04-20 18:06:36", "51.255.65.69", "36");
INSERT INTO `wp_rg_form_view` VALUES("54362", "10", "2017-04-20 18:07:27", "95.158.189.118", "14");
INSERT INTO `wp_rg_form_view` VALUES("54363", "6", "2017-04-20 18:43:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54364", "9", "2017-04-20 18:43:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54365", "8", "2017-04-20 18:43:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54366", "13", "2017-04-20 18:43:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54367", "15", "2017-04-20 18:43:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54368", "3", "2017-04-20 19:09:58", "217.182.132.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("54369", "10", "2017-04-20 19:29:33", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54370", "10", "2017-04-20 20:12:12", "207.46.13.116", "5");
INSERT INTO `wp_rg_form_view` VALUES("54371", "3", "2017-04-20 20:12:13", "207.46.13.116", "5");
INSERT INTO `wp_rg_form_view` VALUES("54372", "10", "2017-04-20 21:04:24", "216.244.66.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("54373", "3", "2017-04-20 21:04:25", "216.244.66.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("54374", "8", "2017-04-20 21:32:30", "51.255.65.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("54375", "10", "2017-04-20 22:41:05", "207.46.13.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("54376", "3", "2017-04-20 22:41:08", "207.46.13.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("54377", "6", "2017-04-20 22:48:37", "51.255.65.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("54378", "14", "2017-04-20 22:48:51", "154.20.33.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("54379", "10", "2017-04-20 23:36:12", "202.46.51.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("54380", "3", "2017-04-20 23:36:15", "202.46.51.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("54381", "2", "2017-04-20 23:50:31", "5.148.165.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("54382", "6", "2017-04-21 00:13:10", "46.229.168.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("54383", "10", "2017-04-21 00:13:10", "46.229.168.75", "41");
INSERT INTO `wp_rg_form_view` VALUES("54384", "3", "2017-04-21 00:13:11", "46.229.168.75", "50");
INSERT INTO `wp_rg_form_view` VALUES("54385", "11", "2017-04-21 00:15:00", "46.229.168.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("54386", "14", "2017-04-21 00:15:57", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("54387", "3", "2017-04-21 01:13:05", "217.182.132.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("54388", "10", "2017-04-21 01:13:08", "217.182.132.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("54389", "10", "2017-04-21 02:05:47", "202.46.53.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("54390", "3", "2017-04-21 02:05:48", "202.46.53.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("54391", "10", "2017-04-21 03:48:34", "77.75.78.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("54392", "3", "2017-04-21 03:48:36", "77.75.78.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("54393", "10", "2017-04-21 05:39:24", "202.46.51.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("54394", "3", "2017-04-21 05:39:25", "202.46.51.83", "3");
INSERT INTO `wp_rg_form_view` VALUES("54395", "14", "2017-04-21 05:41:01", "217.182.132.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("54396", "10", "2017-04-21 06:42:29", "88.198.55.175", "3");
INSERT INTO `wp_rg_form_view` VALUES("54397", "3", "2017-04-21 06:42:32", "88.198.55.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("54398", "3", "2017-04-21 07:59:26", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("54399", "6", "2017-04-21 07:59:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54400", "9", "2017-04-21 07:59:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54401", "8", "2017-04-21 07:59:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54402", "10", "2017-04-21 07:59:28", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54403", "13", "2017-04-21 07:59:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54404", "15", "2017-04-21 07:59:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54405", "10", "2017-04-21 08:07:26", "77.75.78.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("54406", "3", "2017-04-21 08:07:26", "77.75.78.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("54407", "15", "2017-04-21 08:47:54", "157.55.39.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("54408", "10", "2017-04-21 09:36:18", "157.55.39.243", "3");
INSERT INTO `wp_rg_form_view` VALUES("54409", "3", "2017-04-21 09:47:45", "217.182.132.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("54410", "3", "2017-04-21 10:16:36", "51.255.65.97", "4");
INSERT INTO `wp_rg_form_view` VALUES("54411", "10", "2017-04-21 10:19:04", "34.209.169.96", "3");
INSERT INTO `wp_rg_form_view` VALUES("54412", "15", "2017-04-21 12:25:02", "39.47.50.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("54413", "10", "2017-04-21 12:25:05", "39.47.50.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("54414", "3", "2017-04-21 12:25:06", "39.47.50.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("54415", "10", "2017-04-21 13:13:21", "173.35.62.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("54416", "3", "2017-04-21 13:13:22", "173.35.62.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("54417", "10", "2017-04-21 14:33:58", "72.143.231.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("54418", "3", "2017-04-21 14:33:58", "72.143.231.82", "3");
INSERT INTO `wp_rg_form_view` VALUES("54419", "3", "2017-04-21 15:01:10", "157.55.39.244", "3");
INSERT INTO `wp_rg_form_view` VALUES("54420", "10", "2017-04-21 15:01:10", "157.55.39.244", "2");
INSERT INTO `wp_rg_form_view` VALUES("54421", "3", "2017-04-21 16:12:04", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("54422", "6", "2017-04-21 16:12:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54423", "9", "2017-04-21 16:12:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54424", "8", "2017-04-21 16:12:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54425", "10", "2017-04-21 16:12:05", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54426", "13", "2017-04-21 16:12:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54427", "15", "2017-04-21 16:12:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54428", "10", "2017-04-21 17:12:28", "207.194.40.8", "12");
INSERT INTO `wp_rg_form_view` VALUES("54429", "3", "2017-04-21 17:12:31", "207.194.40.8", "12");
INSERT INTO `wp_rg_form_view` VALUES("54430", "14", "2017-04-21 17:13:21", "207.194.40.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("54431", "10", "2017-04-21 18:16:59", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("54432", "3", "2017-04-21 18:17:00", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("54433", "3", "2017-04-21 19:38:40", "202.46.51.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("54434", "10", "2017-04-21 19:38:48", "202.46.51.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("54435", "3", "2017-04-21 20:11:27", "157.55.39.244", "4");
INSERT INTO `wp_rg_form_view` VALUES("54436", "10", "2017-04-21 20:11:28", "157.55.39.244", "3");
INSERT INTO `wp_rg_form_view` VALUES("54437", "14", "2017-04-21 21:30:44", "154.20.32.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("54438", "10", "2017-04-21 21:51:59", "202.46.48.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("54439", "3", "2017-04-21 21:52:00", "202.46.48.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("54440", "10", "2017-04-21 23:32:01", "157.55.39.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("54441", "3", "2017-04-21 23:32:06", "157.55.39.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("54442", "3", "2017-04-22 00:20:41", "40.77.167.74", "4");
INSERT INTO `wp_rg_form_view` VALUES("54443", "10", "2017-04-22 00:20:41", "40.77.167.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("54444", "6", "2017-04-22 02:58:43", "202.46.55.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54445", "10", "2017-04-22 02:58:44", "202.46.55.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54446", "3", "2017-04-22 02:58:45", "202.46.55.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54447", "10", "2017-04-22 03:32:05", "202.46.58.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("54448", "3", "2017-04-22 03:32:06", "202.46.58.55", "3");
INSERT INTO `wp_rg_form_view` VALUES("54449", "10", "2017-04-22 04:38:42", "202.46.57.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("54450", "3", "2017-04-22 04:38:43", "202.46.57.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("54451", "15", "2017-04-22 05:00:23", "217.182.132.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("54452", "10", "2017-04-22 05:00:23", "217.182.132.52", "7");
INSERT INTO `wp_rg_form_view` VALUES("54453", "3", "2017-04-22 05:00:23", "217.182.132.52", "31");
INSERT INTO `wp_rg_form_view` VALUES("54454", "6", "2017-04-22 05:33:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54455", "9", "2017-04-22 05:33:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54456", "8", "2017-04-22 05:33:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("54457", "13", "2017-04-22 05:33:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54458", "3", "2017-04-22 06:04:42", "217.182.132.75", "13");
INSERT INTO `wp_rg_form_view` VALUES("54459", "10", "2017-04-22 06:04:46", "217.182.132.75", "10");
INSERT INTO `wp_rg_form_view` VALUES("54460", "11", "2017-04-22 06:37:21", "86.123.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("54461", "2", "2017-04-22 06:38:33", "86.123.242.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("54462", "3", "2017-04-22 07:05:23", "51.255.65.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("54463", "14", "2017-04-22 08:22:06", "96.50.13.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("54464", "10", "2017-04-22 08:30:17", "37.187.56.76", "45");
INSERT INTO `wp_rg_form_view` VALUES("54465", "3", "2017-04-22 08:30:17", "37.187.56.76", "47");
INSERT INTO `wp_rg_form_view` VALUES("54466", "11", "2017-04-22 08:30:32", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("54467", "2", "2017-04-22 08:30:36", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("54468", "15", "2017-04-22 08:34:27", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("54469", "13", "2017-04-22 08:34:54", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("54470", "3", "2017-04-22 09:11:43", "164.132.161.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("54471", "10", "2017-04-22 10:14:42", "157.55.39.242", "3");
INSERT INTO `wp_rg_form_view` VALUES("54472", "3", "2017-04-22 10:14:43", "157.55.39.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("54473", "2", "2017-04-22 10:22:23", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("54474", "10", "2017-04-22 11:03:50", "40.77.167.74", "8");
INSERT INTO `wp_rg_form_view` VALUES("54475", "3", "2017-04-22 11:03:50", "40.77.167.74", "6");
INSERT INTO `wp_rg_form_view` VALUES("54476", "10", "2017-04-22 13:16:33", "96.50.22.26", "5");
INSERT INTO `wp_rg_form_view` VALUES("54477", "3", "2017-04-22 13:16:34", "96.50.22.26", "28");
INSERT INTO `wp_rg_form_view` VALUES("54478", "6", "2017-04-22 13:37:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54479", "9", "2017-04-22 13:37:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54480", "8", "2017-04-22 13:37:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54481", "13", "2017-04-22 13:37:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54482", "15", "2017-04-22 13:37:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54483", "10", "2017-04-22 14:08:20", "157.55.39.47", "2");
INSERT INTO `wp_rg_form_view` VALUES("54484", "3", "2017-04-22 14:08:21", "157.55.39.47", "2");
INSERT INTO `wp_rg_form_view` VALUES("54485", "10", "2017-04-22 15:13:11", "24.68.154.5", "14");
INSERT INTO `wp_rg_form_view` VALUES("54486", "3", "2017-04-22 15:13:11", "24.68.154.5", "11");
INSERT INTO `wp_rg_form_view` VALUES("54487", "15", "2017-04-22 15:14:07", "24.68.154.5", "3");
INSERT INTO `wp_rg_form_view` VALUES("54488", "10", "2017-04-22 16:39:15", "157.55.39.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("54489", "3", "2017-04-22 16:39:16", "157.55.39.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("54490", "3", "2017-04-22 17:15:06", "202.46.57.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("54491", "10", "2017-04-22 17:15:06", "202.46.57.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("54492", "6", "2017-04-22 17:15:26", "217.182.132.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("54493", "3", "2017-04-22 18:21:46", "202.46.52.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("54494", "10", "2017-04-22 18:21:46", "202.46.52.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("54495", "13", "2017-04-22 19:39:09", "217.182.132.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("54496", "10", "2017-04-22 19:39:10", "217.182.132.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("54497", "3", "2017-04-22 19:39:11", "217.182.132.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("54498", "10", "2017-04-22 20:34:39", "5.9.106.81", "14");
INSERT INTO `wp_rg_form_view` VALUES("54499", "3", "2017-04-22 20:34:39", "5.9.106.81", "9");
INSERT INTO `wp_rg_form_view` VALUES("54500", "14", "2017-04-22 21:11:13", "70.67.181.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("54501", "3", "2017-04-22 21:14:39", "40.77.167.4", "4");
INSERT INTO `wp_rg_form_view` VALUES("54502", "10", "2017-04-22 21:14:39", "40.77.167.4", "3");
INSERT INTO `wp_rg_form_view` VALUES("54503", "10", "2017-04-22 22:15:05", "202.46.57.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("54504", "3", "2017-04-22 22:15:06", "202.46.57.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("54505", "10", "2017-04-22 23:21:46", "202.46.51.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("54506", "3", "2017-04-22 23:21:49", "202.46.51.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("54507", "3", "2017-04-23 00:30:43", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("54508", "10", "2017-04-23 01:10:54", "199.30.25.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("54509", "3", "2017-04-23 01:10:54", "199.30.25.197", "3");
INSERT INTO `wp_rg_form_view` VALUES("54510", "3", "2017-04-23 02:41:02", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("54511", "6", "2017-04-23 02:41:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54512", "9", "2017-04-23 02:41:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54513", "8", "2017-04-23 02:41:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54514", "10", "2017-04-23 02:41:04", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54515", "13", "2017-04-23 02:41:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54516", "15", "2017-04-23 02:41:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54517", "3", "2017-04-23 03:56:12", "202.46.51.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("54518", "14", "2017-04-23 04:16:06", "184.69.4.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("54519", "3", "2017-04-23 04:56:34", "77.75.77.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("54520", "12", "2017-04-23 05:10:03", "164.132.161.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("54521", "3", "2017-04-23 05:10:03", "164.132.161.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("54522", "14", "2017-04-23 06:24:20", "207.6.120.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("54523", "3", "2017-04-23 06:29:39", "66.249.66.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("54524", "3", "2017-04-23 07:45:14", "40.77.167.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("54525", "3", "2017-04-23 08:13:33", "40.77.167.4", "3");
INSERT INTO `wp_rg_form_view` VALUES("54526", "14", "2017-04-23 09:20:38", "176.103.56.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("54527", "6", "2017-04-23 09:29:30", "202.46.50.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54528", "3", "2017-04-23 09:29:31", "202.46.50.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("54529", "3", "2017-04-23 10:10:12", "157.55.39.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("54530", "10", "2017-04-23 10:22:51", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("54531", "3", "2017-04-23 11:02:39", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("54532", "6", "2017-04-23 11:02:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54533", "9", "2017-04-23 11:02:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54534", "8", "2017-04-23 11:02:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54535", "10", "2017-04-23 11:02:40", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54536", "13", "2017-04-23 11:02:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54537", "15", "2017-04-23 11:02:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54538", "2", "2017-04-23 12:32:22", "202.46.51.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("54539", "3", "2017-04-23 14:27:29", "202.46.58.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("54540", "10", "2017-04-23 14:36:41", "66.249.66.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("54541", "10", "2017-04-23 15:06:00", "66.249.66.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("54542", "3", "2017-04-23 15:06:00", "66.249.66.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("54543", "10", "2017-04-23 16:15:08", "24.108.12.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("54544", "3", "2017-04-23 16:21:35", "202.46.54.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("54545", "2", "2017-04-23 16:26:59", "157.55.39.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("54546", "3", "2017-04-23 18:01:39", "202.46.58.95", "33");
INSERT INTO `wp_rg_form_view` VALUES("54547", "6", "2017-04-23 18:17:37", "51.255.65.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("54548", "9", "2017-04-23 18:17:37", "51.255.65.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("54549", "8", "2017-04-23 18:17:38", "51.255.65.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("54550", "10", "2017-04-23 18:17:38", "51.255.65.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("54551", "13", "2017-04-23 18:17:38", "51.255.65.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("54552", "15", "2017-04-23 18:17:39", "51.255.65.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("54553", "3", "2017-04-23 19:00:01", "154.20.29.44", "7");
INSERT INTO `wp_rg_form_view` VALUES("54554", "11", "2017-04-23 19:02:45", "154.20.29.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("54555", "3", "2017-04-23 20:48:54", "209.52.88.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("54556", "3", "2017-04-23 21:27:53", "202.46.54.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("54557", "12", "2017-04-23 22:35:29", "164.132.161.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("54558", "3", "2017-04-23 22:35:30", "164.132.161.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("54559", "3", "2017-04-23 23:23:45", "24.69.116.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("54560", "14", "2017-04-23 23:27:59", "195.22.127.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("54561", "3", "2017-04-24 00:30:52", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("54562", "6", "2017-04-24 00:30:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54563", "9", "2017-04-24 00:30:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54564", "8", "2017-04-24 00:30:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54565", "10", "2017-04-24 00:30:53", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54566", "13", "2017-04-24 00:30:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54567", "15", "2017-04-24 00:30:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54568", "3", "2017-04-24 01:03:06", "157.55.39.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("54569", "3", "2017-04-24 02:09:21", "99.245.77.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("54570", "14", "2017-04-24 02:56:24", "50.98.33.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("54571", "13", "2017-04-24 03:09:25", "217.182.132.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("54572", "3", "2017-04-24 03:09:29", "217.182.132.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("54573", "3", "2017-04-24 04:26:13", "202.46.50.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("54574", "3", "2017-04-24 06:01:21", "24.68.54.29", "5");
INSERT INTO `wp_rg_form_view` VALUES("54575", "3", "2017-04-24 07:12:58", "202.46.56.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("54576", "3", "2017-04-24 08:41:59", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("54577", "6", "2017-04-24 08:42:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54578", "9", "2017-04-24 08:42:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54579", "8", "2017-04-24 08:42:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54580", "10", "2017-04-24 08:42:05", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54581", "13", "2017-04-24 08:42:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54582", "15", "2017-04-24 08:42:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54583", "3", "2017-04-24 11:36:19", "202.46.50.163", "3");
INSERT INTO `wp_rg_form_view` VALUES("54584", "3", "2017-04-24 13:16:15", "202.46.52.154", "3");
INSERT INTO `wp_rg_form_view` VALUES("54585", "3", "2017-04-24 14:56:14", "202.46.51.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("54586", "3", "2017-04-24 16:02:53", "202.46.54.139", "5");
INSERT INTO `wp_rg_form_view` VALUES("54587", "14", "2017-04-24 16:13:26", "70.67.51.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("54588", "3", "2017-04-24 18:17:02", "193.201.225.151", "6");
INSERT INTO `wp_rg_form_view` VALUES("54589", "3", "2017-04-24 19:23:23", "202.46.56.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("54590", "3", "2017-04-24 20:08:48", "207.46.13.35", "7");
INSERT INTO `wp_rg_form_view` VALUES("54591", "10", "2017-04-24 20:33:40", "40.77.167.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("54592", "3", "2017-04-24 21:03:18", "202.46.50.161", "5");
INSERT INTO `wp_rg_form_view` VALUES("54593", "10", "2017-04-24 21:43:01", "217.182.132.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("54594", "3", "2017-04-24 22:14:47", "70.67.51.254", "29");
INSERT INTO `wp_rg_form_view` VALUES("54595", "6", "2017-04-24 22:39:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54596", "9", "2017-04-24 22:39:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54597", "8", "2017-04-24 22:39:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54598", "10", "2017-04-24 22:39:31", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54599", "13", "2017-04-24 22:39:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54600", "15", "2017-04-24 22:39:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54601", "3", "2017-04-24 23:07:56", "51.255.65.39", "9");
INSERT INTO `wp_rg_form_view` VALUES("54602", "10", "2017-04-24 23:13:48", "192.40.235.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("54603", "3", "2017-04-25 00:26:28", "52.201.153.178", "8");
INSERT INTO `wp_rg_form_view` VALUES("54604", "14", "2017-04-25 01:12:02", "155.133.43.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("54605", "3", "2017-04-25 01:40:22", "202.46.58.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("54606", "3", "2017-04-25 02:46:24", "23.253.17.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("54607", "3", "2017-04-25 03:32:23", "77.75.76.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("54608", "3", "2017-04-25 04:13:11", "157.55.39.206", "10");
INSERT INTO `wp_rg_form_view` VALUES("54609", "10", "2017-04-25 04:15:02", "157.55.39.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("54610", "3", "2017-04-25 05:45:46", "202.46.58.59", "3");
INSERT INTO `wp_rg_form_view` VALUES("54611", "3", "2017-04-25 06:12:14", "40.77.167.119", "30");
INSERT INTO `wp_rg_form_view` VALUES("54612", "5", "2017-04-25 06:35:59", "77.75.77.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("54613", "6", "2017-04-25 06:56:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54614", "9", "2017-04-25 06:56:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54615", "8", "2017-04-25 06:56:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54616", "10", "2017-04-25 06:56:42", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54617", "13", "2017-04-25 06:56:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54618", "15", "2017-04-25 06:56:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54619", "3", "2017-04-25 07:17:16", "157.55.39.153", "5");
INSERT INTO `wp_rg_form_view` VALUES("54620", "5", "2017-04-25 07:28:33", "77.75.78.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("54621", "3", "2017-04-25 08:24:54", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("54622", "3", "2017-04-25 09:00:10", "202.46.48.134", "377");
INSERT INTO `wp_rg_form_view` VALUES("54623", "2", "2017-04-25 09:34:27", "80.248.225.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("54624", "11", "2017-04-25 09:34:39", "80.248.225.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("54625", "14", "2017-04-25 09:34:39", "80.248.225.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("54626", "6", "2017-04-25 09:35:40", "80.248.225.157", "8");
INSERT INTO `wp_rg_form_view` VALUES("54627", "9", "2017-04-25 09:35:41", "80.248.225.157", "8");
INSERT INTO `wp_rg_form_view` VALUES("54628", "8", "2017-04-25 09:35:41", "80.248.225.157", "12");
INSERT INTO `wp_rg_form_view` VALUES("54629", "10", "2017-04-25 09:35:42", "80.248.225.157", "32");
INSERT INTO `wp_rg_form_view` VALUES("54630", "13", "2017-04-25 09:35:42", "80.248.225.157", "14");
INSERT INTO `wp_rg_form_view` VALUES("54631", "15", "2017-04-25 09:35:43", "80.248.225.157", "9");
INSERT INTO `wp_rg_form_view` VALUES("54632", "3", "2017-04-25 12:19:43", "202.46.56.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("54633", "3", "2017-04-25 13:11:23", "207.46.13.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("54634", "11", "2017-04-25 14:35:48", "107.22.94.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("54635", "3", "2017-04-25 14:35:53", "107.22.94.85", "11");
INSERT INTO `wp_rg_form_view` VALUES("54636", "2", "2017-04-25 14:35:54", "107.22.94.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("54637", "3", "2017-04-25 15:05:18", "202.46.49.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("54638", "3", "2017-04-25 16:11:59", "202.46.49.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("54639", "3", "2017-04-25 18:05:41", "191.96.43.11", "13");
INSERT INTO `wp_rg_form_view` VALUES("54640", "14", "2017-04-25 18:05:58", "191.96.43.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54641", "11", "2017-04-25 18:06:07", "191.96.43.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54642", "3", "2017-04-25 19:05:07", "24.69.169.166", "8");
INSERT INTO `wp_rg_form_view` VALUES("54643", "14", "2017-04-25 20:18:46", "64.180.191.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("54644", "3", "2017-04-25 20:21:58", "164.132.161.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("54645", "3", "2017-04-25 21:15:38", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("54646", "6", "2017-04-25 21:15:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54647", "9", "2017-04-25 21:15:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54648", "8", "2017-04-25 21:15:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54649", "10", "2017-04-25 21:15:43", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54650", "13", "2017-04-25 21:15:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54651", "15", "2017-04-25 21:15:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54652", "11", "2017-04-25 21:52:21", "194.187.170.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("54653", "3", "2017-04-25 22:02:49", "154.5.210.206", "3");
INSERT INTO `wp_rg_form_view` VALUES("54654", "3", "2017-04-25 23:25:36", "202.46.55.132", "8");
INSERT INTO `wp_rg_form_view` VALUES("54655", "7", "2017-04-25 23:34:39", "185.191.204.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54656", "10", "2017-04-25 23:43:46", "157.55.39.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("54657", "3", "2017-04-26 00:24:13", "46.229.168.67", "34");
INSERT INTO `wp_rg_form_view` VALUES("54658", "3", "2017-04-26 00:24:13", "46.229.168.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("54659", "2", "2017-04-26 00:24:17", "46.229.168.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("54660", "15", "2017-04-26 00:25:25", "46.229.168.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("54661", "3", "2017-04-26 01:05:29", "202.46.58.97", "2");
INSERT INTO `wp_rg_form_view` VALUES("54662", "10", "2017-04-26 01:36:54", "24.108.12.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("54663", "14", "2017-04-26 01:51:41", "209.52.88.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("54664", "3", "2017-04-26 02:53:09", "157.55.39.223", "3");
INSERT INTO `wp_rg_form_view` VALUES("54665", "3", "2017-04-26 03:35:08", "157.55.39.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54666", "3", "2017-04-26 04:35:18", "202.46.54.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("54667", "14", "2017-04-26 04:56:29", "24.68.116.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("54668", "3", "2017-04-26 05:06:50", "194.187.170.103", "6");
INSERT INTO `wp_rg_form_view` VALUES("54669", "10", "2017-04-26 05:52:50", "217.182.132.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("54670", "3", "2017-04-26 06:01:18", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("54671", "6", "2017-04-26 06:01:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54672", "9", "2017-04-26 06:01:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54673", "8", "2017-04-26 06:01:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54674", "10", "2017-04-26 06:01:21", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54675", "13", "2017-04-26 06:01:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54676", "15", "2017-04-26 06:01:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54677", "3", "2017-04-26 08:13:58", "202.46.51.157", "5");
INSERT INTO `wp_rg_form_view` VALUES("54678", "3", "2017-04-26 09:08:41", "52.5.220.220", "10");
INSERT INTO `wp_rg_form_view` VALUES("54679", "3", "2017-04-26 10:28:46", "62.138.8.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("54680", "3", "2017-04-26 11:52:34", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("54681", "3", "2017-04-26 12:09:40", "202.46.57.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("54682", "3", "2017-04-26 13:21:49", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("54683", "14", "2017-04-26 14:25:53", "207.46.13.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("54684", "3", "2017-04-26 14:26:00", "207.46.13.44", "12");
INSERT INTO `wp_rg_form_view` VALUES("54685", "3", "2017-04-26 15:38:35", "77.75.77.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("54686", "3", "2017-04-26 16:55:48", "157.55.39.222", "2");
INSERT INTO `wp_rg_form_view` VALUES("54687", "3", "2017-04-26 17:51:01", "77.75.78.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("54688", "3", "2017-04-26 18:20:37", "202.46.58.139", "197");
INSERT INTO `wp_rg_form_view` VALUES("54689", "2", "2017-04-26 18:34:36", "72.79.54.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("54690", "7", "2017-04-26 18:35:19", "72.79.54.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("54691", "14", "2017-04-26 18:35:38", "72.79.54.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("54692", "11", "2017-04-26 18:35:45", "72.79.54.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("54693", "5", "2017-04-26 18:36:06", "72.79.54.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("54694", "6", "2017-04-26 18:40:35", "72.79.54.220", "4");
INSERT INTO `wp_rg_form_view` VALUES("54695", "9", "2017-04-26 18:40:35", "72.79.54.220", "3");
INSERT INTO `wp_rg_form_view` VALUES("54696", "8", "2017-04-26 18:40:35", "72.79.54.220", "4");
INSERT INTO `wp_rg_form_view` VALUES("54697", "10", "2017-04-26 18:40:36", "72.79.54.220", "11");
INSERT INTO `wp_rg_form_view` VALUES("54698", "13", "2017-04-26 18:40:36", "72.79.54.220", "4");
INSERT INTO `wp_rg_form_view` VALUES("54699", "15", "2017-04-26 18:40:37", "72.79.54.220", "4");
INSERT INTO `wp_rg_form_view` VALUES("54700", "3", "2017-04-26 19:30:48", "157.55.39.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54701", "3", "2017-04-26 20:05:45", "24.68.186.26", "32");
INSERT INTO `wp_rg_form_view` VALUES("54702", "6", "2017-04-26 20:34:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54703", "9", "2017-04-26 20:34:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54704", "8", "2017-04-26 20:34:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54705", "10", "2017-04-26 20:34:33", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54706", "13", "2017-04-26 20:34:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54707", "15", "2017-04-26 20:34:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54708", "3", "2017-04-26 21:16:33", "142.32.114.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("54709", "3", "2017-04-26 22:12:11", "164.132.161.5", "5");
INSERT INTO `wp_rg_form_view` VALUES("54710", "13", "2017-04-26 22:47:19", "202.46.52.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("54711", "3", "2017-04-27 00:34:38", "104.154.58.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("54712", "3", "2017-04-27 02:52:31", "40.77.167.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("54713", "14", "2017-04-27 02:54:02", "37.157.216.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("54714", "3", "2017-04-27 03:10:14", "66.249.79.104", "6");
INSERT INTO `wp_rg_form_view` VALUES("54715", "9", "2017-04-27 03:15:08", "207.46.13.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("54716", "10", "2017-04-27 03:35:33", "24.108.12.82", "4");
INSERT INTO `wp_rg_form_view` VALUES("54717", "2", "2017-04-27 04:10:47", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("54718", "3", "2017-04-27 05:19:35", "202.46.49.113", "28");
INSERT INTO `wp_rg_form_view` VALUES("54719", "6", "2017-04-27 05:27:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54720", "9", "2017-04-27 05:27:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54721", "8", "2017-04-27 05:27:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54722", "10", "2017-04-27 05:27:34", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54723", "13", "2017-04-27 05:27:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54724", "15", "2017-04-27 05:27:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54725", "3", "2017-04-27 06:55:03", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("54726", "5", "2017-04-27 07:20:51", "202.46.52.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("54727", "3", "2017-04-27 07:20:54", "202.46.52.78", "2");
INSERT INTO `wp_rg_form_view` VALUES("54728", "3", "2017-04-27 08:01:23", "198.204.235.26", "6");
INSERT INTO `wp_rg_form_view` VALUES("54729", "14", "2017-04-27 08:55:53", "185.191.204.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54730", "3", "2017-04-27 10:30:34", "202.46.52.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("54731", "10", "2017-04-27 11:03:51", "202.46.58.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("54732", "3", "2017-04-27 11:03:52", "202.46.58.189", "14");
INSERT INTO `wp_rg_form_view` VALUES("54733", "11", "2017-04-27 11:07:28", "67.213.90.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("54734", "2", "2017-04-27 11:07:37", "67.213.90.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("54735", "3", "2017-04-27 12:16:56", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54736", "3", "2017-04-27 13:02:20", "202.46.53.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("54737", "3", "2017-04-27 14:33:32", "51.255.71.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("54738", "3", "2017-04-27 15:16:21", "202.46.55.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("54739", "3", "2017-04-27 16:23:05", "202.46.58.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("54740", "3", "2017-04-27 18:03:04", "202.46.52.149", "10");
INSERT INTO `wp_rg_form_view` VALUES("54741", "10", "2017-04-27 18:29:54", "164.132.161.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("54742", "11", "2017-04-27 18:41:38", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("54743", "3", "2017-04-27 19:45:45", "157.55.39.129", "28");
INSERT INTO `wp_rg_form_view` VALUES("54744", "6", "2017-04-27 19:58:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54745", "9", "2017-04-27 19:58:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54746", "8", "2017-04-27 19:58:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54747", "10", "2017-04-27 19:58:29", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54748", "13", "2017-04-27 19:58:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54749", "15", "2017-04-27 19:58:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54750", "3", "2017-04-27 20:04:33", "202.46.48.14", "3");
INSERT INTO `wp_rg_form_view` VALUES("54751", "3", "2017-04-27 21:11:21", "202.46.52.67", "7");
INSERT INTO `wp_rg_form_view` VALUES("54752", "14", "2017-04-27 22:01:15", "75.154.237.159", "3");
INSERT INTO `wp_rg_form_view` VALUES("54753", "3", "2017-04-27 22:04:03", "24.68.136.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("54754", "3", "2017-04-27 23:35:35", "202.46.57.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("54755", "10", "2017-04-28 00:19:36", "157.55.39.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("54756", "3", "2017-04-28 00:19:37", "157.55.39.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("54757", "3", "2017-04-28 01:17:21", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("54758", "3", "2017-04-28 02:19:17", "104.236.209.134", "275");
INSERT INTO `wp_rg_form_view` VALUES("54759", "14", "2017-04-28 02:21:02", "104.236.209.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("54760", "11", "2017-04-28 02:21:08", "104.236.209.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("54761", "10", "2017-04-28 02:22:06", "202.46.56.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("54762", "6", "2017-04-28 02:27:27", "104.236.209.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("54763", "9", "2017-04-28 02:38:38", "104.236.209.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("54764", "15", "2017-04-28 02:46:58", "104.236.209.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("54765", "3", "2017-04-28 03:00:03", "104.236.209.134", "283");
INSERT INTO `wp_rg_form_view` VALUES("54766", "10", "2017-04-28 03:02:07", "104.236.209.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("54767", "2", "2017-04-28 03:28:18", "104.236.209.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("54768", "13", "2017-04-28 03:40:54", "104.236.209.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("54769", "3", "2017-04-28 04:02:06", "202.46.55.66", "28");
INSERT INTO `wp_rg_form_view` VALUES("54770", "10", "2017-04-28 04:50:08", "217.182.132.22", "4");
INSERT INTO `wp_rg_form_view` VALUES("54771", "6", "2017-04-28 04:53:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54772", "9", "2017-04-28 04:53:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54773", "8", "2017-04-28 04:53:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54774", "13", "2017-04-28 04:53:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54775", "15", "2017-04-28 04:53:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54776", "3", "2017-04-28 06:01:27", "75.155.144.41", "4");
INSERT INTO `wp_rg_form_view` VALUES("54777", "3", "2017-04-28 07:15:38", "24.108.186.115", "3");
INSERT INTO `wp_rg_form_view` VALUES("54778", "3", "2017-04-28 08:25:18", "157.55.39.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("54779", "3", "2017-04-28 09:01:19", "202.46.48.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("54780", "6", "2017-04-28 09:34:41", "202.46.57.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("54781", "3", "2017-04-28 10:50:01", "51.255.65.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("54782", "3", "2017-04-28 11:14:13", "202.46.54.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("54783", "2", "2017-04-28 11:54:18", "54.202.96.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("54784", "3", "2017-04-28 12:44:26", "103.207.37.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("54785", "10", "2017-04-28 12:55:30", "157.55.39.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("54786", "3", "2017-04-28 13:22:30", "157.55.39.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("54787", "3", "2017-04-28 14:00:54", "202.46.53.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("54788", "14", "2017-04-28 16:22:57", "24.108.4.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("54789", "3", "2017-04-28 17:13:50", "40.77.167.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("54790", "14", "2017-04-28 17:43:09", "194.187.170.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("54791", "3", "2017-04-28 18:17:26", "194.187.170.140", "4");
INSERT INTO `wp_rg_form_view` VALUES("54792", "11", "2017-04-28 19:01:16", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54793", "3", "2017-04-28 19:02:01", "217.182.132.17", "8");
INSERT INTO `wp_rg_form_view` VALUES("54794", "14", "2017-04-28 19:08:15", "24.108.220.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("54795", "15", "2017-04-28 19:19:35", "40.77.167.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("54796", "3", "2017-04-28 20:08:57", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("54797", "6", "2017-04-28 20:08:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54798", "9", "2017-04-28 20:09:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54799", "8", "2017-04-28 20:09:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54800", "10", "2017-04-28 20:09:00", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54801", "13", "2017-04-28 20:09:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54802", "15", "2017-04-28 20:09:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54803", "3", "2017-04-28 21:03:02", "51.255.65.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("54804", "15", "2017-04-28 21:39:06", "202.46.55.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("54805", "8", "2017-04-28 21:49:02", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54806", "13", "2017-04-28 21:49:03", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54807", "11", "2017-04-28 22:27:11", "145.53.113.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("54808", "3", "2017-04-28 22:27:14", "145.53.113.22", "9");
INSERT INTO `wp_rg_form_view` VALUES("54809", "2", "2017-04-28 22:27:50", "145.53.113.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("54810", "3", "2017-04-28 23:38:40", "154.5.210.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("54811", "3", "2017-04-29 00:18:40", "217.182.132.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("54812", "10", "2017-04-29 00:51:30", "24.108.12.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("54813", "5", "2017-04-29 01:18:15", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("54814", "3", "2017-04-29 01:18:15", "77.75.77.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("54815", "14", "2017-04-29 01:19:00", "52.2.10.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("54816", "14", "2017-04-29 02:00:48", "64.180.191.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("54817", "3", "2017-04-29 02:10:12", "51.255.65.49", "4");
INSERT INTO `wp_rg_form_view` VALUES("54818", "3", "2017-04-29 03:57:33", "202.46.58.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("54819", "10", "2017-04-29 04:21:48", "40.77.167.0", "4");
INSERT INTO `wp_rg_form_view` VALUES("54820", "3", "2017-04-29 04:30:52", "202.46.56.189", "27");
INSERT INTO `wp_rg_form_view` VALUES("54821", "6", "2017-04-29 04:45:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54822", "9", "2017-04-29 04:45:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54823", "8", "2017-04-29 04:45:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54824", "13", "2017-04-29 04:45:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54825", "15", "2017-04-29 04:45:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54826", "3", "2017-04-29 05:00:31", "51.255.71.98", "4");
INSERT INTO `wp_rg_form_view` VALUES("54827", "10", "2017-04-29 05:47:50", "24.108.12.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("54828", "3", "2017-04-29 06:01:31", "66.249.79.144", "21");
INSERT INTO `wp_rg_form_view` VALUES("54829", "8", "2017-04-29 06:50:43", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54830", "10", "2017-04-29 06:50:44", "68.180.230.222", "3");
INSERT INTO `wp_rg_form_view` VALUES("54831", "13", "2017-04-29 06:50:44", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54832", "15", "2017-04-29 06:50:45", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54833", "3", "2017-04-29 07:08:05", "220.181.108.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("54834", "14", "2017-04-29 07:37:54", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54835", "3", "2017-04-29 08:07:30", "194.187.170.141", "31");
INSERT INTO `wp_rg_form_view` VALUES("54836", "6", "2017-04-29 08:29:50", "207.46.13.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("54837", "9", "2017-04-29 08:29:50", "207.46.13.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("54838", "8", "2017-04-29 08:29:51", "207.46.13.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("54839", "10", "2017-04-29 08:29:51", "207.46.13.121", "4");
INSERT INTO `wp_rg_form_view` VALUES("54840", "13", "2017-04-29 08:29:51", "207.46.13.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("54841", "15", "2017-04-29 08:29:52", "207.46.13.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("54842", "3", "2017-04-29 09:02:22", "194.187.170.141", "7");
INSERT INTO `wp_rg_form_view` VALUES("54843", "3", "2017-04-29 10:17:27", "217.182.132.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("54844", "8", "2017-04-29 12:09:22", "51.255.71.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("54845", "3", "2017-04-29 12:09:24", "51.255.71.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("54846", "3", "2017-04-29 13:19:11", "202.46.52.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("54847", "3", "2017-04-29 14:59:13", "202.46.57.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("54848", "3", "2017-04-29 15:32:32", "202.46.53.126", "3");
INSERT INTO `wp_rg_form_view` VALUES("54849", "3", "2017-04-29 16:05:51", "202.46.50.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("54850", "12", "2017-04-29 16:39:11", "202.46.49.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("54851", "3", "2017-04-29 17:12:30", "202.46.52.68", "19");
INSERT INTO `wp_rg_form_view` VALUES("54852", "10", "2017-04-29 17:30:48", "68.180.230.222", "3");
INSERT INTO `wp_rg_form_view` VALUES("54853", "13", "2017-04-29 17:30:48", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54854", "15", "2017-04-29 17:30:48", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54855", "3", "2017-04-29 18:00:07", "24.68.122.81", "9");
INSERT INTO `wp_rg_form_view` VALUES("54856", "3", "2017-04-29 19:11:44", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("54857", "6", "2017-04-29 19:11:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54858", "9", "2017-04-29 19:11:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54859", "8", "2017-04-29 19:11:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54860", "10", "2017-04-29 19:11:46", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54861", "13", "2017-04-29 19:11:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54862", "15", "2017-04-29 19:11:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54863", "14", "2017-04-29 20:05:19", "94.15.125.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("54864", "3", "2017-04-29 20:32:34", "202.46.56.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("54865", "3", "2017-04-29 21:21:10", "207.194.133.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("54866", "14", "2017-04-29 21:31:03", "24.108.186.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("54867", "9", "2017-04-29 22:03:54", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54868", "3", "2017-04-29 22:15:16", "24.69.177.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("54869", "10", "2017-04-29 22:35:31", "194.187.170.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("54870", "3", "2017-04-29 23:01:44", "194.187.170.101", "13");
INSERT INTO `wp_rg_form_view` VALUES("54871", "10", "2017-04-29 23:44:03", "24.108.12.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("54872", "3", "2017-04-30 00:05:03", "202.46.52.74", "11");
INSERT INTO `wp_rg_form_view` VALUES("54873", "10", "2017-04-30 00:09:56", "194.187.170.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("54874", "13", "2017-04-30 00:54:40", "194.187.170.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("54875", "12", "2017-04-30 01:22:14", "194.187.170.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("54876", "3", "2017-04-30 01:22:14", "194.187.170.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("54877", "3", "2017-04-30 02:28:09", "202.46.56.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("54878", "3", "2017-04-30 03:01:27", "202.46.57.28", "3");
INSERT INTO `wp_rg_form_view` VALUES("54879", "5", "2017-04-30 03:52:36", "207.46.13.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("54880", "3", "2017-04-30 04:21:57", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("54881", "6", "2017-04-30 04:21:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54882", "9", "2017-04-30 04:21:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54883", "8", "2017-04-30 04:21:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54884", "10", "2017-04-30 04:21:58", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54885", "13", "2017-04-30 04:21:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54886", "15", "2017-04-30 04:21:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54887", "11", "2017-04-30 05:01:43", "77.75.76.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("54888", "3", "2017-04-30 05:39:49", "104.154.58.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("54889", "3", "2017-04-30 07:01:21", "194.187.170.131", "10");
INSERT INTO `wp_rg_form_view` VALUES("54890", "14", "2017-04-30 07:24:58", "191.101.106.198", "3");
INSERT INTO `wp_rg_form_view` VALUES("54891", "3", "2017-04-30 08:08:49", "194.187.170.131", "5");
INSERT INTO `wp_rg_form_view` VALUES("54892", "3", "2017-04-30 09:02:05", "77.75.77.119", "3");
INSERT INTO `wp_rg_form_view` VALUES("54893", "2", "2017-04-30 10:00:17", "64.113.32.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("54894", "3", "2017-04-30 10:37:57", "202.46.51.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("54895", "3", "2017-04-30 11:11:15", "202.46.51.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("54896", "3", "2017-04-30 12:06:34", "51.255.71.100", "8");
INSERT INTO `wp_rg_form_view` VALUES("54897", "2", "2017-04-30 12:51:33", "92.42.30.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("54898", "10", "2017-04-30 12:58:03", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("54899", "3", "2017-04-30 13:23:12", "194.187.170.105", "51");
INSERT INTO `wp_rg_form_view` VALUES("54900", "5", "2017-04-30 13:38:30", "40.77.167.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("54901", "8", "2017-04-30 13:38:33", "40.77.167.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("54902", "9", "2017-04-30 13:38:47", "40.77.167.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("54903", "10", "2017-04-30 13:38:52", "207.46.13.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("54904", "5", "2017-04-30 14:18:07", "77.75.78.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("54905", "3", "2017-04-30 14:18:09", "77.75.78.165", "24");
INSERT INTO `wp_rg_form_view` VALUES("54906", "3", "2017-04-30 15:15:38", "202.46.48.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("54907", "2", "2017-04-30 15:28:45", "92.42.30.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("54908", "3", "2017-04-30 16:55:38", "202.46.54.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("54909", "3", "2017-04-30 17:13:42", "40.77.167.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("54910", "3", "2017-04-30 18:02:17", "202.46.51.83", "6");
INSERT INTO `wp_rg_form_view` VALUES("54911", "3", "2017-04-30 19:40:34", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("54912", "6", "2017-04-30 19:40:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54913", "9", "2017-04-30 19:40:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54914", "8", "2017-04-30 19:40:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54915", "10", "2017-04-30 19:40:37", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54916", "13", "2017-04-30 19:40:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54917", "15", "2017-04-30 19:40:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54918", "14", "2017-04-30 20:48:00", "154.5.182.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("54919", "3", "2017-04-30 20:59:15", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("54920", "3", "2017-04-30 21:04:55", "207.46.13.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("54921", "3", "2017-04-30 22:02:29", "77.75.78.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("54922", "5", "2017-04-30 22:20:44", "194.187.170.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("54923", "14", "2017-04-30 23:15:49", "154.20.197.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("54924", "3", "2017-04-30 23:20:54", "40.77.167.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("54925", "3", "2017-05-01 00:09:59", "164.132.161.25", "5");
INSERT INTO `wp_rg_form_view` VALUES("54926", "2", "2017-05-01 00:43:03", "54.167.23.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("54927", "3", "2017-05-01 01:06:43", "217.182.132.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("54928", "10", "2017-05-01 01:36:42", "199.16.157.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("54929", "3", "2017-05-01 02:40:43", "202.46.55.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("54930", "3", "2017-05-01 03:11:44", "51.255.71.116", "6");
INSERT INTO `wp_rg_form_view` VALUES("54931", "3", "2017-05-01 04:20:46", "202.46.50.132", "3");
INSERT INTO `wp_rg_form_view` VALUES("54932", "3", "2017-05-01 05:03:05", "217.69.133.233", "42");
INSERT INTO `wp_rg_form_view` VALUES("54933", "6", "2017-05-01 05:11:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54934", "9", "2017-05-01 05:11:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54935", "8", "2017-05-01 05:11:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54936", "10", "2017-05-01 05:11:51", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54937", "13", "2017-05-01 05:11:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54938", "15", "2017-05-01 05:11:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54939", "3", "2017-05-01 06:31:50", "202.46.52.103", "4");
INSERT INTO `wp_rg_form_view` VALUES("54940", "6", "2017-05-01 07:05:10", "202.46.50.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("54941", "3", "2017-05-01 07:05:10", "202.46.50.162", "54");
INSERT INTO `wp_rg_form_view` VALUES("54942", "9", "2017-05-01 07:41:26", "80.117.199.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("54943", "8", "2017-05-01 07:41:26", "80.117.199.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("54944", "10", "2017-05-01 07:41:26", "80.117.199.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("54945", "13", "2017-05-01 07:41:27", "80.117.199.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("54946", "15", "2017-05-01 07:41:27", "80.117.199.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("54947", "3", "2017-05-01 08:11:35", "217.182.132.174", "7");
INSERT INTO `wp_rg_form_view` VALUES("54948", "2", "2017-05-01 09:00:46", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("54949", "14", "2017-05-01 09:03:05", "77.75.78.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("54950", "3", "2017-05-01 09:28:56", "51.255.65.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("54951", "3", "2017-05-01 10:01:43", "217.182.132.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("54952", "10", "2017-05-01 10:50:28", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("54953", "3", "2017-05-01 11:19:19", "217.182.132.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("54954", "3", "2017-05-01 12:22:01", "202.46.58.139", "5");
INSERT INTO `wp_rg_form_view` VALUES("54955", "5", "2017-05-01 12:59:47", "217.69.133.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("54956", "15", "2017-05-01 13:08:39", "104.154.58.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("54957", "3", "2017-05-01 13:08:39", "104.154.58.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("54958", "10", "2017-05-01 13:50:56", "208.181.116.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("54959", "3", "2017-05-01 14:35:09", "217.69.133.233", "5");
INSERT INTO `wp_rg_form_view` VALUES("54960", "10", "2017-05-01 14:54:33", "51.255.65.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("54961", "3", "2017-05-01 15:24:11", "202.46.53.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("54962", "12", "2017-05-01 16:43:03", "40.77.167.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("54963", "3", "2017-05-01 16:43:05", "40.77.167.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("54964", "6", "2017-05-01 17:04:15", "202.46.58.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("54965", "3", "2017-05-01 17:04:16", "202.46.58.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("54966", "15", "2017-05-01 18:00:04", "104.154.58.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("54967", "3", "2017-05-01 18:06:12", "77.75.79.101", "15");
INSERT INTO `wp_rg_form_view` VALUES("54968", "10", "2017-05-01 18:11:35", "40.77.167.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("54969", "3", "2017-05-01 19:21:40", "217.69.133.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("54970", "3", "2017-05-01 20:33:36", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("54971", "6", "2017-05-01 20:33:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54972", "9", "2017-05-01 20:33:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54973", "8", "2017-05-01 20:33:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54974", "10", "2017-05-01 20:33:38", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54975", "13", "2017-05-01 20:33:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54976", "15", "2017-05-01 20:33:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54977", "3", "2017-05-01 21:06:47", "194.187.170.141", "7");
INSERT INTO `wp_rg_form_view` VALUES("54978", "7", "2017-05-01 22:14:21", "202.46.58.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("54979", "3", "2017-05-01 22:14:22", "202.46.58.205", "9");
INSERT INTO `wp_rg_form_view` VALUES("54980", "2", "2017-05-01 22:33:22", "217.69.133.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("54981", "11", "2017-05-01 22:59:42", "138.197.73.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("54982", "2", "2017-05-01 23:10:30", "138.197.64.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("54983", "3", "2017-05-01 23:10:30", "138.197.64.76", "14");
INSERT INTO `wp_rg_form_view` VALUES("54984", "11", "2017-05-01 23:10:33", "138.197.64.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("54985", "3", "2017-05-02 01:05:54", "202.46.53.112", "7");
INSERT INTO `wp_rg_form_view` VALUES("54986", "14", "2017-05-02 02:35:57", "157.55.39.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("54987", "11", "2017-05-02 02:36:03", "157.55.39.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("54988", "3", "2017-05-02 03:18:52", "217.69.133.232", "3");
INSERT INTO `wp_rg_form_view` VALUES("54989", "3", "2017-05-02 04:53:00", "164.132.161.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("54990", "12", "2017-05-02 05:35:02", "40.77.167.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("54991", "3", "2017-05-02 05:35:05", "40.77.167.76", "27");
INSERT INTO `wp_rg_form_view` VALUES("54992", "6", "2017-05-02 05:35:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54993", "9", "2017-05-02 05:35:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54994", "8", "2017-05-02 05:35:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54995", "10", "2017-05-02 05:35:49", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("54996", "13", "2017-05-02 05:35:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54997", "15", "2017-05-02 05:35:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("54998", "14", "2017-05-02 05:53:55", "157.55.39.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("54999", "3", "2017-05-02 06:19:46", "51.255.71.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("55000", "3", "2017-05-02 07:57:41", "202.46.51.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("55001", "3", "2017-05-02 09:36:25", "202.46.57.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("55002", "3", "2017-05-02 10:16:42", "217.182.132.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("55003", "13", "2017-05-02 10:59:49", "51.255.65.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("55004", "3", "2017-05-02 11:18:47", "202.46.51.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("55005", "3", "2017-05-02 12:02:08", "77.75.78.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("55006", "3", "2017-05-02 13:04:57", "40.77.167.76", "8");
INSERT INTO `wp_rg_form_view` VALUES("55007", "12", "2017-05-02 13:39:17", "51.255.71.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("55008", "3", "2017-05-02 14:12:59", "217.182.132.183", "13");
INSERT INTO `wp_rg_form_view` VALUES("55009", "2", "2017-05-02 14:37:19", "174.127.133.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("55010", "3", "2017-05-02 15:02:52", "174.127.133.68", "14");
INSERT INTO `wp_rg_form_view` VALUES("55011", "12", "2017-05-02 15:15:54", "40.77.167.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("55012", "14", "2017-05-02 15:17:20", "174.127.133.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("55013", "3", "2017-05-02 16:09:04", "68.180.230.222", "7");
INSERT INTO `wp_rg_form_view` VALUES("55014", "10", "2017-05-02 16:09:05", "68.180.230.222", "2");
INSERT INTO `wp_rg_form_view` VALUES("55015", "13", "2017-05-02 16:09:05", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("55016", "15", "2017-05-02 16:09:05", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("55017", "3", "2017-05-02 17:23:31", "188.243.168.99", "24");
INSERT INTO `wp_rg_form_view` VALUES("55018", "10", "2017-05-02 17:23:31", "188.243.168.99", "6");
INSERT INTO `wp_rg_form_view` VALUES("55019", "13", "2017-05-02 17:23:32", "188.243.168.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("55020", "15", "2017-05-02 17:23:32", "188.243.168.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("55021", "3", "2017-05-02 18:01:37", "40.77.167.122", "27");
INSERT INTO `wp_rg_form_view` VALUES("55022", "8", "2017-05-02 18:01:49", "40.77.167.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("55023", "9", "2017-05-02 18:01:53", "40.77.167.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("55024", "5", "2017-05-02 18:11:16", "40.77.167.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("55025", "10", "2017-05-02 18:28:16", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("55026", "3", "2017-05-02 19:06:58", "40.77.167.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("55027", "10", "2017-05-02 20:36:26", "164.132.161.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("55028", "3", "2017-05-02 20:36:28", "164.132.161.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("55029", "3", "2017-05-02 21:25:47", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("55030", "6", "2017-05-02 21:25:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55031", "9", "2017-05-02 21:25:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55032", "8", "2017-05-02 21:25:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55033", "10", "2017-05-02 21:26:01", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("55034", "13", "2017-05-02 21:26:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55035", "15", "2017-05-02 21:26:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55036", "14", "2017-05-02 21:45:03", "216.240.124.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("55037", "11", "2017-05-02 22:05:29", "40.77.167.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("55038", "3", "2017-05-02 22:29:45", "174.129.185.174", "5");
INSERT INTO `wp_rg_form_view` VALUES("55039", "2", "2017-05-02 22:29:54", "174.129.185.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("55040", "3", "2017-05-02 23:06:38", "202.46.48.12", "4");
INSERT INTO `wp_rg_form_view` VALUES("55041", "3", "2017-05-03 00:17:55", "207.46.13.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("55042", "14", "2017-05-03 00:58:31", "99.250.122.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("55043", "3", "2017-05-03 01:24:56", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("55044", "3", "2017-05-03 02:05:52", "40.77.167.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("55045", "14", "2017-05-03 02:30:36", "108.180.243.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("55046", "3", "2017-05-03 03:17:12", "51.255.65.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("55047", "3", "2017-05-03 04:17:50", "194.187.170.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("55048", "5", "2017-05-03 04:28:09", "51.255.65.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("55049", "3", "2017-05-03 05:26:52", "202.46.53.54", "4");
INSERT INTO `wp_rg_form_view` VALUES("55050", "3", "2017-05-03 06:15:19", "77.75.79.17", "29");
INSERT INTO `wp_rg_form_view` VALUES("55051", "6", "2017-05-03 06:30:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55052", "9", "2017-05-03 06:30:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55053", "8", "2017-05-03 06:30:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55054", "10", "2017-05-03 06:30:28", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("55055", "13", "2017-05-03 06:30:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55056", "15", "2017-05-03 06:30:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("55057", "3", "2017-05-03 07:18:34", "77.75.76.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("55058", "3", "2017-05-03 08:35:41", "202.46.49.146", "5");
INSERT INTO `wp_rg_form_view` VALUES("55059", "3", "2017-05-03 09:03:27", "207.46.13.185", "10");
INSERT INTO `wp_rg_form_view` VALUES("55060", "14", "2017-05-03 09:20:42", "65.254.33.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("55061", "11", "2017-05-03 09:20:53", "65.254.33.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("55062", "3", "2017-05-03 10:15:42", "202.46.58.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("55063", "3", "2017-05-03 11:14:14", "206.47.38.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("55064", "3", "2017-05-03 12:46:00", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("55065", "10", "2017-05-03 12:46:04", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("55066", "3", "2017-05-03 13:01:03", "202.46.56.16", "10");
INSERT INTO `wp_rg_form_view` VALUES("55067", "11", "2017-05-03 13:02:51", "45.55.50.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("55068", "2", "2017-05-03 13:02:52", "45.55.50.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("55069", "10", "2017-05-03 13:44:37", "157.55.39.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("55070", "3", "2017-05-03 14:07:44", "202.46.58.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("55071", "3", "2017-05-03 15:14:24", "202.46.51.210", "10");
INSERT INTO `wp_rg_form_view` VALUES("55072", "2", "2017-05-03 15:24:41", "138.197.7.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("55073", "11", "2017-05-03 15:24:41", "138.197.7.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("55074", "14", "2017-05-03 15:35:07", "70.67.186.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("55075", "3", "2017-05-03 16:00:24", "164.132.161.47", "6");
INSERT INTO `wp_rg_form_view` VALUES("55076", "3", "2017-05-03 17:05:33", "51.255.65.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("55077", "14", "2017-05-03 17:46:08", "184.66.240.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("55078", "5", "2017-05-03 18:03:43", "77.75.78.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("55079", "3", "2017-05-03 18:03:44", "77.75.78.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("55080", "10", "2017-05-03 19:34:28", "157.55.39.98", "35");
INSERT INTO `wp_rg_form_view` VALUES("55081", "3", "2017-05-03 19:34:29", "157.55.39.98", "4");
INSERT INTO `wp_rg_form_view` VALUES("55082", "3", "2017-05-03 20:10:20", "198.103.152.51", "4");
INSERT INTO `wp_rg_form_view` VALUES("55083", "10", "2017-05-03 20:10:20", "198.103.152.51", "32");
INSERT INTO `wp_rg_form_view` VALUES("55084", "2", "2017-05-03 20:38:02", "207.46.13.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("55085", "3", "2017-05-03 21:02:37", "202.46.57.168", "30");
INSERT INTO `wp_rg_form_view` VALUES("55086", "10", "2017-05-03 21:02:37", "202.46.57.168", "36");
INSERT INTO `wp_rg_form_view` VALUES("55087", "6", "2017-05-03 21:54:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55088", "9", "2017-05-03 21:54:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55089", "8", "2017-05-03 21:54:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55090", "13", "2017-05-03 21:54:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55091", "15", "2017-05-03 21:54:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55092", "3", "2017-05-03 22:03:08", "77.75.78.162", "9");
INSERT INTO `wp_rg_form_view` VALUES("55093", "10", "2017-05-03 22:03:08", "77.75.78.162", "24");
INSERT INTO `wp_rg_form_view` VALUES("55094", "2", "2017-05-03 22:24:44", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("55095", "3", "2017-05-03 23:15:59", "202.46.58.14", "6");
INSERT INTO `wp_rg_form_view` VALUES("55096", "10", "2017-05-03 23:15:59", "202.46.58.14", "50");
INSERT INTO `wp_rg_form_view` VALUES("55097", "8", "2017-05-03 23:23:36", "217.182.132.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("55098", "3", "2017-05-04 00:13:03", "24.68.248.211", "29");
INSERT INTO `wp_rg_form_view` VALUES("55099", "10", "2017-05-04 00:13:03", "24.68.248.211", "194");
INSERT INTO `wp_rg_form_view` VALUES("55100", "13", "2017-05-04 00:42:08", "96.54.47.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("55101", "3", "2017-05-04 02:15:50", "202.46.51.182", "6");
INSERT INTO `wp_rg_form_view` VALUES("55102", "10", "2017-05-04 02:15:52", "202.46.51.182", "24");
INSERT INTO `wp_rg_form_view` VALUES("55103", "14", "2017-05-04 03:31:53", "184.67.128.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("55104", "3", "2017-05-04 04:19:39", "164.132.161.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("55105", "10", "2017-05-04 04:19:40", "164.132.161.32", "24");
INSERT INTO `wp_rg_form_view` VALUES("55106", "3", "2017-05-04 05:02:16", "194.187.170.110", "8");
INSERT INTO `wp_rg_form_view` VALUES("55107", "10", "2017-05-04 05:02:16", "194.187.170.110", "40");
INSERT INTO `wp_rg_form_view` VALUES("55108", "3", "2017-05-04 06:04:30", "157.55.39.174", "6");
INSERT INTO `wp_rg_form_view` VALUES("55109", "10", "2017-05-04 06:04:31", "157.55.39.174", "32");
INSERT INTO `wp_rg_form_view` VALUES("55110", "15", "2017-05-04 06:24:16", "157.55.39.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("55111", "3", "2017-05-04 07:06:36", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("55112", "6", "2017-05-04 07:06:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55113", "9", "2017-05-04 07:06:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55114", "8", "2017-05-04 07:06:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55115", "10", "2017-05-04 07:06:38", "52.88.109.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("55116", "13", "2017-05-04 07:06:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55117", "15", "2017-05-04 07:06:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55118", "3", "2017-05-04 08:41:43", "68.180.230.222", "2");
INSERT INTO `wp_rg_form_view` VALUES("55119", "10", "2017-05-04 08:44:22", "157.55.39.174", "8");
INSERT INTO `wp_rg_form_view` VALUES("55120", "3", "2017-05-04 09:00:42", "104.154.58.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("55121", "10", "2017-05-04 09:00:42", "104.154.58.95", "8");
INSERT INTO `wp_rg_form_view` VALUES("55122", "3", "2017-05-04 10:34:32", "51.255.71.122", "3");
INSERT INTO `wp_rg_form_view` VALUES("55123", "10", "2017-05-04 10:34:35", "51.255.71.122", "24");
INSERT INTO `wp_rg_form_view` VALUES("55124", "9", "2017-05-04 11:06:10", "202.46.49.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("55125", "3", "2017-05-04 11:06:11", "202.46.49.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("55126", "10", "2017-05-04 11:06:11", "202.46.49.110", "16");
INSERT INTO `wp_rg_form_view` VALUES("55127", "3", "2017-05-04 12:09:09", "51.255.65.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("55128", "10", "2017-05-04 12:09:10", "51.255.65.91", "8");
INSERT INTO `wp_rg_form_view` VALUES("55129", "3", "2017-05-04 13:15:05", "164.132.161.67", "5");
INSERT INTO `wp_rg_form_view` VALUES("55130", "10", "2017-05-04 13:28:22", "66.249.79.148", "12");
INSERT INTO `wp_rg_form_view` VALUES("55131", "3", "2017-05-04 14:46:48", "202.46.53.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("55132", "10", "2017-05-04 14:46:49", "202.46.53.175", "8");
INSERT INTO `wp_rg_form_view` VALUES("55133", "14", "2017-05-04 14:46:58", "83.143.242.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("55134", "3", "2017-05-04 15:20:10", "202.46.48.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("55135", "10", "2017-05-04 15:20:12", "202.46.48.16", "8");
INSERT INTO `wp_rg_form_view` VALUES("55136", "14", "2017-05-04 16:21:45", "154.16.61.125", "3");
INSERT INTO `wp_rg_form_view` VALUES("55137", "10", "2017-05-04 16:25:37", "184.66.49.231", "54");
INSERT INTO `wp_rg_form_view` VALUES("55138", "3", "2017-05-04 16:25:38", "184.66.49.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("55139", "3", "2017-05-04 17:22:29", "202.46.57.179", "3");
INSERT INTO `wp_rg_form_view` VALUES("55140", "10", "2017-05-04 17:22:30", "202.46.57.179", "25");
INSERT INTO `wp_rg_form_view` VALUES("55141", "3", "2017-05-04 18:22:47", "164.132.161.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("55142", "10", "2017-05-04 18:22:48", "164.132.161.54", "16");
INSERT INTO `wp_rg_form_view` VALUES("55143", "16", "2017-05-04 18:27:42", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("55144", "3", "2017-05-04 19:43:36", "77.75.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("55145", "10", "2017-05-04 19:43:40", "77.75.76.169", "8");
INSERT INTO `wp_rg_form_view` VALUES("55146", "3", "2017-05-04 20:11:30", "40.77.167.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("55147", "10", "2017-05-04 20:11:30", "40.77.167.35", "24");
INSERT INTO `wp_rg_form_view` VALUES("55148", "14", "2017-05-04 20:53:05", "51.255.65.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("55149", "3", "2017-05-04 21:43:17", "184.68.134.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("55150", "10", "2017-05-04 21:43:19", "184.68.134.18", "16");
INSERT INTO `wp_rg_form_view` VALUES("55151", "3", "2017-05-04 22:07:16", "40.77.167.96", "31");
INSERT INTO `wp_rg_form_view` VALUES("55152", "10", "2017-05-04 22:07:16", "40.77.167.96", "45");
INSERT INTO `wp_rg_form_view` VALUES("55153", "14", "2017-05-04 22:35:01", "184.66.224.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("55154", "6", "2017-05-04 22:48:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55155", "9", "2017-05-04 22:48:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55156", "8", "2017-05-04 22:48:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55157", "13", "2017-05-04 22:48:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55158", "15", "2017-05-04 22:48:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55159", "3", "2017-05-04 23:00:40", "40.77.167.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("55160", "10", "2017-05-04 23:00:40", "40.77.167.138", "64");
INSERT INTO `wp_rg_form_view` VALUES("55161", "11", "2017-05-04 23:30:36", "194.187.170.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("55162", "3", "2017-05-05 00:05:16", "40.77.167.138", "7");
INSERT INTO `wp_rg_form_view` VALUES("55163", "10", "2017-05-05 00:05:16", "40.77.167.138", "60");
INSERT INTO `wp_rg_form_view` VALUES("55164", "10", "2017-05-05 01:06:13", "66.249.79.144", "53");
INSERT INTO `wp_rg_form_view` VALUES("55165", "3", "2017-05-05 01:06:14", "66.249.79.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("55166", "3", "2017-05-05 02:17:05", "157.55.39.67", "7");
INSERT INTO `wp_rg_form_view` VALUES("55167", "10", "2017-05-05 02:17:05", "157.55.39.67", "40");
INSERT INTO `wp_rg_form_view` VALUES("55168", "3", "2017-05-05 03:30:54", "202.46.48.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("55169", "10", "2017-05-05 03:30:55", "202.46.48.15", "8");
INSERT INTO `wp_rg_form_view` VALUES("55170", "15", "2017-05-05 03:44:47", "104.154.58.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("55171", "14", "2017-05-05 04:44:28", "107.174.9.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("55172", "3", "2017-05-05 04:47:17", "54.243.53.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("55173", "10", "2017-05-05 04:47:17", "54.243.53.148", "24");
INSERT INTO `wp_rg_form_view` VALUES("55174", "10", "2017-05-05 05:00:21", "24.108.12.82", "376");
INSERT INTO `wp_rg_form_view` VALUES("55175", "14", "2017-05-05 05:10:59", "202.46.53.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("55176", "3", "2017-05-05 05:31:25", "46.229.168.67", "65");
INSERT INTO `wp_rg_form_view` VALUES("55177", "11", "2017-05-05 05:32:26", "46.229.168.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("55178", "6", "2017-05-05 05:33:17", "46.229.168.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("55179", "2", "2017-05-05 05:54:51", "138.197.96.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("55180", "3", "2017-05-05 06:27:15", "111.69.145.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("55181", "10", "2017-05-05 06:27:17", "111.69.145.195", "64");
INSERT INTO `wp_rg_form_view` VALUES("55182", "11", "2017-05-05 06:46:29", "138.197.7.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("55183", "2", "2017-05-05 06:46:30", "138.197.7.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("55184", "14", "2017-05-05 06:57:24", "37.220.22.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("55185", "3", "2017-05-05 07:03:51", "5.9.156.43", "33");
INSERT INTO `wp_rg_form_view` VALUES("55186", "10", "2017-05-05 07:03:51", "5.9.156.43", "44");
INSERT INTO `wp_rg_form_view` VALUES("55187", "6", "2017-05-05 07:56:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55188", "9", "2017-05-05 07:56:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55189", "8", "2017-05-05 07:56:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55190", "13", "2017-05-05 07:56:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55191", "15", "2017-05-05 07:56:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55192", "3", "2017-05-05 08:05:35", "40.77.167.137", "15");
INSERT INTO `wp_rg_form_view` VALUES("55193", "10", "2017-05-05 08:05:35", "40.77.167.137", "104");
INSERT INTO `wp_rg_form_view` VALUES("55194", "3", "2017-05-05 09:56:55", "164.132.161.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("55195", "10", "2017-05-05 09:56:56", "164.132.161.58", "8");
INSERT INTO `wp_rg_form_view` VALUES("55196", "3", "2017-05-05 11:23:40", "202.46.49.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("55197", "10", "2017-05-05 11:23:42", "202.46.49.142", "8");
INSERT INTO `wp_rg_form_view` VALUES("55198", "14", "2017-05-05 12:49:06", "108.180.50.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("55199", "10", "2017-05-05 12:55:02", "77.75.76.162", "49");
INSERT INTO `wp_rg_form_view` VALUES("55200", "3", "2017-05-05 12:55:04", "77.75.76.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("55201", "11", "2017-05-05 12:59:06", "86.88.81.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("55202", "2", "2017-05-05 12:59:51", "86.88.81.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("55203", "3", "2017-05-05 13:00:12", "86.88.81.57", "6");
INSERT INTO `wp_rg_form_view` VALUES("55204", "10", "2017-05-05 13:00:17", "86.88.81.57", "32");
INSERT INTO `wp_rg_form_view` VALUES("55205", "3", "2017-05-05 14:00:53", "66.249.79.144", "4");
INSERT INTO `wp_rg_form_view` VALUES("55206", "10", "2017-05-05 14:00:53", "66.249.79.144", "34");
INSERT INTO `wp_rg_form_view` VALUES("55207", "3", "2017-05-05 15:18:39", "207.194.133.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("55208", "10", "2017-05-05 15:18:40", "207.194.133.9", "42");
INSERT INTO `wp_rg_form_view` VALUES("55209", "3", "2017-05-05 16:08:16", "194.187.170.105", "359");
INSERT INTO `wp_rg_form_view` VALUES("55210", "10", "2017-05-05 16:08:16", "194.187.170.105", "950");
INSERT INTO `wp_rg_form_view` VALUES("55211", "14", "2017-05-05 16:16:04", "62.138.14.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("55212", "11", "2017-05-05 16:16:13", "62.138.14.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("55213", "2", "2017-05-05 16:16:19", "62.138.14.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("55214", "6", "2017-05-05 16:17:42", "62.138.14.52", "9");
INSERT INTO `wp_rg_form_view` VALUES("55215", "9", "2017-05-05 16:17:43", "62.138.14.52", "9");
INSERT INTO `wp_rg_form_view` VALUES("55216", "8", "2017-05-05 16:17:43", "62.138.14.52", "9");
INSERT INTO `wp_rg_form_view` VALUES("55217", "13", "2017-05-05 16:17:44", "62.138.14.52", "9");
INSERT INTO `wp_rg_form_view` VALUES("55218", "15", "2017-05-05 16:17:45", "62.138.14.52", "9");
INSERT INTO `wp_rg_form_view` VALUES("55219", "14", "2017-05-05 17:06:17", "202.46.49.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("55220", "3", "2017-05-05 17:07:04", "96.54.46.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("55221", "10", "2017-05-05 17:07:04", "96.54.46.220", "16");
INSERT INTO `wp_rg_form_view` VALUES("55222", "3", "2017-05-05 18:25:26", "77.75.77.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("55223", "10", "2017-05-05 18:25:26", "77.75.77.62", "8");
INSERT INTO `wp_rg_form_view` VALUES("55224", "3", "2017-05-05 19:19:45", "202.46.54.141", "6");
INSERT INTO `wp_rg_form_view` VALUES("55225", "10", "2017-05-05 19:19:50", "202.46.54.141", "45");
INSERT INTO `wp_rg_form_view` VALUES("55226", "2", "2017-05-05 19:36:12", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("55227", "3", "2017-05-05 20:03:46", "40.77.167.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("55228", "10", "2017-05-05 20:03:46", "40.77.167.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("55229", "3", "2017-05-05 21:10:05", "77.75.77.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("55230", "10", "2017-05-05 21:10:07", "77.75.77.11", "17");
INSERT INTO `wp_rg_form_view` VALUES("55231", "3", "2017-05-05 22:08:17", "194.187.170.114", "6");
INSERT INTO `wp_rg_form_view` VALUES("55232", "10", "2017-05-05 22:08:18", "194.187.170.114", "51");
INSERT INTO `wp_rg_form_view` VALUES("55233", "3", "2017-05-05 23:01:57", "149.202.74.124", "41");
INSERT INTO `wp_rg_form_view` VALUES("55234", "10", "2017-05-05 23:01:57", "149.202.74.124", "92");
INSERT INTO `wp_rg_form_view` VALUES("55235", "11", "2017-05-05 23:02:14", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("55236", "2", "2017-05-05 23:02:18", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("55237", "6", "2017-05-05 23:41:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55238", "9", "2017-05-05 23:41:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55239", "8", "2017-05-05 23:41:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55240", "13", "2017-05-05 23:41:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55241", "15", "2017-05-05 23:41:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55242", "15", "2017-05-06 00:23:37", "40.77.167.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("55243", "3", "2017-05-06 00:23:38", "40.77.167.90", "7");
INSERT INTO `wp_rg_form_view` VALUES("55244", "10", "2017-05-06 00:23:38", "40.77.167.90", "40");
INSERT INTO `wp_rg_form_view` VALUES("55245", "13", "2017-05-06 01:32:27", "40.77.167.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("55246", "3", "2017-05-06 01:32:29", "40.77.167.90", "3");
INSERT INTO `wp_rg_form_view` VALUES("55247", "10", "2017-05-06 01:32:29", "40.77.167.90", "24");
INSERT INTO `wp_rg_form_view` VALUES("55248", "3", "2017-05-06 02:04:01", "51.255.71.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("55249", "10", "2017-05-06 02:04:02", "51.255.71.127", "24");
INSERT INTO `wp_rg_form_view` VALUES("55250", "11", "2017-05-06 02:54:19", "220.181.108.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("55251", "15", "2017-05-06 03:13:48", "40.77.167.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("55252", "3", "2017-05-06 03:13:50", "40.77.167.2", "46");
INSERT INTO `wp_rg_form_view` VALUES("55253", "10", "2017-05-06 03:13:50", "40.77.167.2", "282");
INSERT INTO `wp_rg_form_view` VALUES("55254", "11", "2017-05-06 03:55:12", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("55255", "2", "2017-05-06 03:55:16", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("55256", "14", "2017-05-06 03:56:33", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("55257", "13", "2017-05-06 03:58:57", "94.23.27.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("55258", "10", "2017-05-06 04:15:02", "24.108.12.82", "9");
INSERT INTO `wp_rg_form_view` VALUES("55259", "3", "2017-05-06 04:34:57", "164.132.161.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("55260", "3", "2017-05-06 05:23:52", "202.46.55.182", "3");
INSERT INTO `wp_rg_form_view` VALUES("55261", "10", "2017-05-06 05:23:54", "202.46.55.182", "8");
INSERT INTO `wp_rg_form_view` VALUES("55262", "3", "2017-05-06 06:12:22", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("55263", "10", "2017-05-06 06:12:24", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("55264", "15", "2017-05-06 07:10:24", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55265", "3", "2017-05-06 07:10:27", "35.184.189.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("55266", "10", "2017-05-06 07:10:28", "35.184.189.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("55267", "13", "2017-05-06 07:44:51", "141.8.143.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("55268", "3", "2017-05-06 08:44:16", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("55269", "6", "2017-05-06 08:44:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55270", "9", "2017-05-06 08:44:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55271", "8", "2017-05-06 08:44:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55272", "10", "2017-05-06 08:44:18", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("55273", "13", "2017-05-06 08:44:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55274", "15", "2017-05-06 08:44:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55275", "3", "2017-05-06 09:06:12", "68.180.230.222", "5");
INSERT INTO `wp_rg_form_view` VALUES("55276", "10", "2017-05-06 09:06:12", "68.180.230.222", "41");
INSERT INTO `wp_rg_form_view` VALUES("55277", "11", "2017-05-06 09:12:17", "88.198.22.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("55278", "2", "2017-05-06 09:12:20", "88.198.22.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("55279", "3", "2017-05-06 10:04:00", "164.132.161.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("55280", "10", "2017-05-06 10:04:01", "164.132.161.23", "24");
INSERT INTO `wp_rg_form_view` VALUES("55281", "3", "2017-05-06 11:28:48", "35.184.189.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("55282", "10", "2017-05-06 11:28:50", "35.184.189.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("55283", "14", "2017-05-06 12:11:41", "5.255.250.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("55284", "3", "2017-05-06 13:31:57", "202.46.50.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("55285", "10", "2017-05-06 13:40:19", "100.43.91.1", "8");
INSERT INTO `wp_rg_form_view` VALUES("55286", "10", "2017-05-06 14:09:17", "35.184.189.105", "9");
INSERT INTO `wp_rg_form_view` VALUES("55287", "3", "2017-05-06 14:09:22", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55288", "3", "2017-05-06 15:33:01", "202.46.55.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("55289", "10", "2017-05-06 15:33:05", "202.46.55.149", "34");
INSERT INTO `wp_rg_form_view` VALUES("55290", "3", "2017-05-06 16:06:17", "202.46.56.32", "10");
INSERT INTO `wp_rg_form_view` VALUES("55291", "10", "2017-05-06 16:06:17", "202.46.56.32", "57");
INSERT INTO `wp_rg_form_view` VALUES("55292", "14", "2017-05-06 16:31:51", "83.143.242.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("55293", "6", "2017-05-06 16:55:00", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("55294", "3", "2017-05-06 17:10:22", "164.132.162.158", "8");
INSERT INTO `wp_rg_form_view` VALUES("55295", "10", "2017-05-06 17:10:22", "164.132.162.158", "48");
INSERT INTO `wp_rg_form_view` VALUES("55296", "2", "2017-05-06 18:14:10", "77.88.47.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("55297", "3", "2017-05-06 18:42:30", "100.43.91.1", "8");
INSERT INTO `wp_rg_form_view` VALUES("55298", "10", "2017-05-06 18:42:31", "100.43.91.1", "48");
INSERT INTO `wp_rg_form_view` VALUES("55299", "11", "2017-05-06 18:55:11", "138.197.69.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("55300", "10", "2017-05-06 19:06:14", "35.184.189.105", "17");
INSERT INTO `wp_rg_form_view` VALUES("55301", "3", "2017-05-06 19:06:15", "35.184.189.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("55302", "3", "2017-05-06 20:09:03", "202.46.57.168", "6");
INSERT INTO `wp_rg_form_view` VALUES("55303", "10", "2017-05-06 20:09:03", "202.46.57.168", "48");
INSERT INTO `wp_rg_form_view` VALUES("55304", "3", "2017-05-06 21:14:08", "5.255.250.37", "13");
INSERT INTO `wp_rg_form_view` VALUES("55305", "10", "2017-05-06 21:14:08", "5.255.250.37", "57");
INSERT INTO `wp_rg_form_view` VALUES("55306", "3", "2017-05-06 22:05:22", "40.77.167.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("55307", "10", "2017-05-06 22:05:23", "40.77.167.2", "49");
INSERT INTO `wp_rg_form_view` VALUES("55308", "3", "2017-05-06 23:27:30", "202.46.58.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("55309", "10", "2017-05-06 23:27:34", "202.46.58.77", "8");
INSERT INTO `wp_rg_form_view` VALUES("55310", "3", "2017-05-07 00:13:11", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("55311", "6", "2017-05-07 00:13:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55312", "9", "2017-05-07 00:13:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55313", "8", "2017-05-07 00:13:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55314", "10", "2017-05-07 00:13:14", "52.88.109.3", "21");
INSERT INTO `wp_rg_form_view` VALUES("55315", "13", "2017-05-07 00:13:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55316", "15", "2017-05-07 00:13:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55317", "3", "2017-05-07 01:21:18", "202.46.58.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("55318", "10", "2017-05-07 01:21:19", "202.46.58.126", "8");
INSERT INTO `wp_rg_form_view` VALUES("55319", "10", "2017-05-07 02:00:26", "51.255.65.29", "26");
INSERT INTO `wp_rg_form_view` VALUES("55320", "3", "2017-05-07 02:21:05", "164.132.161.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("55321", "3", "2017-05-07 03:01:17", "202.46.57.174", "10");
INSERT INTO `wp_rg_form_view` VALUES("55322", "10", "2017-05-07 03:01:17", "202.46.57.174", "18");
INSERT INTO `wp_rg_form_view` VALUES("55323", "15", "2017-05-07 03:54:56", "51.255.65.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("55324", "13", "2017-05-07 03:54:57", "51.255.65.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("55325", "3", "2017-05-07 04:02:45", "66.249.79.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("55326", "10", "2017-05-07 04:02:45", "66.249.79.148", "25");
INSERT INTO `wp_rg_form_view` VALUES("55327", "3", "2017-05-07 05:00:04", "51.255.65.44", "8");
INSERT INTO `wp_rg_form_view` VALUES("55328", "10", "2017-05-07 05:00:04", "51.255.65.44", "48");
INSERT INTO `wp_rg_form_view` VALUES("55329", "3", "2017-05-07 06:39:24", "217.182.132.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("55330", "10", "2017-05-07 06:39:27", "217.182.132.188", "8");
INSERT INTO `wp_rg_form_view` VALUES("55331", "3", "2017-05-07 07:22:02", "77.75.79.101", "3");
INSERT INTO `wp_rg_form_view` VALUES("55332", "10", "2017-05-07 07:22:04", "77.75.79.101", "24");
INSERT INTO `wp_rg_form_view` VALUES("55333", "3", "2017-05-07 08:09:47", "194.187.170.142", "5");
INSERT INTO `wp_rg_form_view` VALUES("55334", "10", "2017-05-07 08:09:48", "194.187.170.142", "32");
INSERT INTO `wp_rg_form_view` VALUES("55335", "3", "2017-05-07 09:10:18", "217.182.132.84", "29");
INSERT INTO `wp_rg_form_view` VALUES("55336", "10", "2017-05-07 09:10:18", "217.182.132.84", "29");
INSERT INTO `wp_rg_form_view` VALUES("55337", "6", "2017-05-07 09:48:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55338", "9", "2017-05-07 09:48:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55339", "8", "2017-05-07 09:48:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55340", "13", "2017-05-07 09:48:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55341", "15", "2017-05-07 09:48:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55342", "12", "2017-05-07 10:16:57", "202.46.48.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("55343", "3", "2017-05-07 10:16:59", "202.46.48.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("55344", "10", "2017-05-07 10:16:59", "202.46.48.143", "16");
INSERT INTO `wp_rg_form_view` VALUES("55345", "10", "2017-05-07 11:05:57", "151.80.27.116", "49");
INSERT INTO `wp_rg_form_view` VALUES("55346", "3", "2017-05-07 11:05:58", "151.80.27.116", "7");
INSERT INTO `wp_rg_form_view` VALUES("55347", "15", "2017-05-07 11:23:29", "40.77.167.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("55348", "3", "2017-05-07 12:27:38", "35.184.189.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("55349", "10", "2017-05-07 12:46:16", "217.182.132.29", "16");
INSERT INTO `wp_rg_form_view` VALUES("55350", "3", "2017-05-07 13:23:31", "217.182.132.36", "4");
INSERT INTO `wp_rg_form_view` VALUES("55351", "10", "2017-05-07 13:23:31", "217.182.132.36", "32");
INSERT INTO `wp_rg_form_view` VALUES("55352", "5", "2017-05-07 13:54:04", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("55353", "3", "2017-05-07 14:04:05", "202.46.57.186", "6");
INSERT INTO `wp_rg_form_view` VALUES("55354", "10", "2017-05-07 14:04:05", "202.46.57.186", "40");
INSERT INTO `wp_rg_form_view` VALUES("55355", "14", "2017-05-07 14:12:17", "194.187.170.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("55356", "3", "2017-05-07 15:05:27", "157.55.39.150", "6");
INSERT INTO `wp_rg_form_view` VALUES("55357", "10", "2017-05-07 15:05:27", "157.55.39.150", "33");
INSERT INTO `wp_rg_form_view` VALUES("55358", "3", "2017-05-07 16:07:42", "194.187.170.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("55359", "10", "2017-05-07 16:07:42", "194.187.170.104", "24");
INSERT INTO `wp_rg_form_view` VALUES("55360", "14", "2017-05-07 16:20:07", "83.143.242.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("55361", "3", "2017-05-07 17:16:55", "202.46.53.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("55362", "10", "2017-05-07 17:16:55", "202.46.53.42", "25");
INSERT INTO `wp_rg_form_view` VALUES("55363", "8", "2017-05-07 17:36:41", "217.182.132.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("55364", "3", "2017-05-07 18:30:59", "35.184.189.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("55365", "10", "2017-05-07 18:31:00", "35.184.189.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("55366", "14", "2017-05-07 18:52:25", "184.66.47.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("55367", "3", "2017-05-07 19:48:40", "202.46.57.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("55368", "10", "2017-05-07 19:48:40", "202.46.57.162", "8");
INSERT INTO `wp_rg_form_view` VALUES("55369", "3", "2017-05-07 20:21:59", "202.46.48.206", "3");
INSERT INTO `wp_rg_form_view` VALUES("55370", "10", "2017-05-07 20:21:59", "202.46.48.206", "16");
INSERT INTO `wp_rg_form_view` VALUES("55371", "3", "2017-05-07 21:51:27", "40.77.167.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("55372", "10", "2017-05-07 21:51:28", "40.77.167.138", "8");
INSERT INTO `wp_rg_form_view` VALUES("55373", "3", "2017-05-07 22:42:05", "159.203.160.202", "127");
INSERT INTO `wp_rg_form_view` VALUES("55374", "10", "2017-05-07 22:42:08", "159.203.160.202", "880");
INSERT INTO `wp_rg_form_view` VALUES("55375", "14", "2017-05-07 22:43:34", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("55376", "11", "2017-05-07 22:43:39", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("55377", "6", "2017-05-07 22:50:05", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("55378", "3", "2017-05-07 23:01:19", "159.203.160.202", "404");
INSERT INTO `wp_rg_form_view` VALUES("55379", "10", "2017-05-07 23:01:20", "159.203.160.202", "2878");
INSERT INTO `wp_rg_form_view` VALUES("55380", "9", "2017-05-07 23:03:10", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("55381", "15", "2017-05-07 23:15:10", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("55382", "2", "2017-05-07 23:50:59", "159.203.160.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("55383", "11", "2017-05-07 23:57:42", "149.5.113.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("55384", "3", "2017-05-08 00:00:09", "159.203.160.202", "102");
INSERT INTO `wp_rg_form_view` VALUES("55385", "10", "2017-05-08 00:00:09", "159.203.160.202", "503");
INSERT INTO `wp_rg_form_view` VALUES("55386", "13", "2017-05-08 00:03:44", "159.203.160.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("55387", "6", "2017-05-08 00:19:30", "5.188.211.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("55388", "9", "2017-05-08 00:19:31", "5.188.211.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("55389", "8", "2017-05-08 00:19:32", "5.188.211.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("55390", "15", "2017-05-08 00:19:34", "5.188.211.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("55391", "14", "2017-05-08 00:26:27", "107.155.193.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("55392", "2", "2017-05-08 00:26:40", "94.103.43.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("55393", "11", "2017-05-08 00:26:56", "217.18.246.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("55394", "12", "2017-05-08 00:42:38", "194.187.170.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("55395", "3", "2017-05-08 01:04:10", "194.187.170.140", "35");
INSERT INTO `wp_rg_form_view` VALUES("55396", "10", "2017-05-08 01:04:11", "194.187.170.140", "69");
INSERT INTO `wp_rg_form_view` VALUES("55397", "6", "2017-05-08 01:13:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55398", "9", "2017-05-08 01:13:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55399", "8", "2017-05-08 01:13:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55400", "13", "2017-05-08 01:13:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55401", "15", "2017-05-08 01:13:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55402", "11", "2017-05-08 01:57:49", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("55403", "2", "2017-05-08 01:58:30", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("55404", "14", "2017-05-08 01:59:36", "176.103.56.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("55405", "3", "2017-05-08 02:00:04", "188.40.46.135", "29");
INSERT INTO `wp_rg_form_view` VALUES("55406", "10", "2017-05-08 02:00:04", "188.40.46.135", "215");
INSERT INTO `wp_rg_form_view` VALUES("55407", "14", "2017-05-08 03:06:35", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55408", "3", "2017-05-08 03:21:11", "202.46.50.136", "10");
INSERT INTO `wp_rg_form_view` VALUES("55409", "10", "2017-05-08 03:21:12", "202.46.50.136", "56");
INSERT INTO `wp_rg_form_view` VALUES("55410", "2", "2017-05-08 03:29:57", "5.188.211.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("55411", "11", "2017-05-08 03:30:09", "5.188.211.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("55412", "3", "2017-05-08 05:02:28", "157.55.39.150", "8");
INSERT INTO `wp_rg_form_view` VALUES("55413", "10", "2017-05-08 05:02:30", "157.55.39.150", "42");
INSERT INTO `wp_rg_form_view` VALUES("55414", "14", "2017-05-08 06:06:31", "176.103.56.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("55415", "10", "2017-05-08 06:08:37", "35.184.189.105", "89");
INSERT INTO `wp_rg_form_view` VALUES("55416", "3", "2017-05-08 06:08:39", "35.184.189.105", "15");
INSERT INTO `wp_rg_form_view` VALUES("55417", "11", "2017-05-08 06:48:19", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("55418", "3", "2017-05-08 07:02:40", "35.184.189.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("55419", "10", "2017-05-08 07:02:40", "35.184.189.105", "64");
INSERT INTO `wp_rg_form_view` VALUES("55420", "11", "2017-05-08 07:28:43", "138.197.111.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("55421", "2", "2017-05-08 07:28:48", "138.197.111.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("55422", "14", "2017-05-08 07:57:51", "176.103.56.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("55423", "3", "2017-05-08 08:39:31", "194.187.170.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("55424", "10", "2017-05-08 08:39:33", "194.187.170.125", "8");
INSERT INTO `wp_rg_form_view` VALUES("55425", "3", "2017-05-08 09:00:57", "202.46.52.110", "8");
INSERT INTO `wp_rg_form_view` VALUES("55426", "10", "2017-05-08 09:00:57", "202.46.52.110", "58");
INSERT INTO `wp_rg_form_view` VALUES("55427", "3", "2017-05-08 10:16:51", "40.77.167.2", "27");
INSERT INTO `wp_rg_form_view` VALUES("55428", "10", "2017-05-08 10:16:53", "40.77.167.2", "12");
INSERT INTO `wp_rg_form_view` VALUES("55429", "6", "2017-05-08 10:38:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55430", "9", "2017-05-08 10:38:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55431", "8", "2017-05-08 10:38:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55432", "13", "2017-05-08 10:38:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55433", "15", "2017-05-08 10:38:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55434", "3", "2017-05-08 11:01:21", "5.188.211.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("55435", "10", "2017-05-08 11:01:21", "5.188.211.62", "50");
INSERT INTO `wp_rg_form_view` VALUES("55436", "2", "2017-05-08 11:01:25", "5.188.211.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("55437", "11", "2017-05-08 11:01:39", "5.188.211.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("55438", "3", "2017-05-08 12:11:01", "51.255.65.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("55439", "10", "2017-05-08 12:11:01", "51.255.65.37", "17");
INSERT INTO `wp_rg_form_view` VALUES("55440", "3", "2017-05-08 13:15:27", "51.255.65.5", "4");
INSERT INTO `wp_rg_form_view` VALUES("55441", "10", "2017-05-08 13:15:28", "51.255.65.5", "24");
INSERT INTO `wp_rg_form_view` VALUES("55442", "3", "2017-05-08 14:11:59", "208.90.57.196", "6");
INSERT INTO `wp_rg_form_view` VALUES("55443", "10", "2017-05-08 14:12:01", "208.90.57.196", "48");
INSERT INTO `wp_rg_form_view` VALUES("55444", "10", "2017-05-08 15:42:57", "51.255.65.58", "17");
INSERT INTO `wp_rg_form_view` VALUES("55445", "3", "2017-05-08 15:43:00", "51.255.65.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("55446", "11", "2017-05-08 15:57:49", "154.20.32.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("55447", "10", "2017-05-08 16:18:46", "77.75.79.17", "33");
INSERT INTO `wp_rg_form_view` VALUES("55448", "3", "2017-05-08 16:18:50", "77.75.79.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("55449", "8", "2017-05-08 17:04:14", "217.182.132.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55450", "3", "2017-05-08 17:04:15", "217.182.132.24", "7");
INSERT INTO `wp_rg_form_view` VALUES("55451", "10", "2017-05-08 17:04:15", "217.182.132.24", "32");
INSERT INTO `wp_rg_form_view` VALUES("55452", "3", "2017-05-08 18:28:30", "40.77.167.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("55453", "10", "2017-05-08 18:28:37", "40.77.167.138", "24");
INSERT INTO `wp_rg_form_view` VALUES("55454", "2", "2017-05-08 19:03:16", "54.202.96.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("55455", "3", "2017-05-08 19:03:21", "54.202.96.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("55456", "10", "2017-05-08 19:03:22", "54.202.96.182", "25");
INSERT INTO `wp_rg_form_view` VALUES("55457", "3", "2017-05-08 20:05:55", "51.255.65.43", "12");
INSERT INTO `wp_rg_form_view` VALUES("55458", "10", "2017-05-08 20:05:56", "51.255.65.43", "84");
INSERT INTO `wp_rg_form_view` VALUES("55459", "13", "2017-05-08 20:06:09", "202.46.58.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("55460", "3", "2017-05-08 21:36:47", "35.184.189.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("55461", "10", "2017-05-08 21:36:48", "35.184.189.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("55462", "14", "2017-05-08 21:59:31", "64.180.188.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("55463", "10", "2017-05-08 22:10:58", "157.55.39.150", "100");
INSERT INTO `wp_rg_form_view` VALUES("55464", "3", "2017-05-08 22:10:59", "157.55.39.150", "14");
INSERT INTO `wp_rg_form_view` VALUES("55465", "14", "2017-05-08 22:13:17", "64.180.188.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("55466", "2", "2017-05-08 22:52:52", "5.188.211.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("55467", "11", "2017-05-08 22:53:11", "5.188.211.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("55468", "3", "2017-05-08 23:08:03", "194.187.170.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("55469", "10", "2017-05-08 23:08:04", "194.187.170.105", "89");
INSERT INTO `wp_rg_form_view` VALUES("55470", "3", "2017-05-09 00:13:51", "40.77.167.2", "15");
INSERT INTO `wp_rg_form_view` VALUES("55471", "10", "2017-05-09 00:13:53", "40.77.167.2", "97");
INSERT INTO `wp_rg_form_view` VALUES("55472", "3", "2017-05-09 01:14:28", "164.132.161.78", "6");
INSERT INTO `wp_rg_form_view` VALUES("55473", "10", "2017-05-09 01:14:28", "164.132.161.78", "41");
INSERT INTO `wp_rg_form_view` VALUES("55474", "3", "2017-05-09 02:10:16", "40.77.167.2", "29");
INSERT INTO `wp_rg_form_view` VALUES("55475", "10", "2017-05-09 02:10:16", "40.77.167.2", "28");
INSERT INTO `wp_rg_form_view` VALUES("55476", "6", "2017-05-09 02:36:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55477", "9", "2017-05-09 02:36:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55478", "8", "2017-05-09 02:36:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55479", "13", "2017-05-09 02:36:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55480", "15", "2017-05-09 02:36:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55481", "3", "2017-05-09 03:11:47", "164.132.161.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("55482", "10", "2017-05-09 03:11:48", "164.132.161.79", "16");
INSERT INTO `wp_rg_form_view` VALUES("55483", "3", "2017-05-09 04:15:41", "202.46.50.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("55484", "10", "2017-05-09 04:15:41", "202.46.50.151", "25");
INSERT INTO `wp_rg_form_view` VALUES("55485", "3", "2017-05-09 05:02:55", "77.75.79.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("55486", "10", "2017-05-09 05:02:55", "77.75.79.95", "24");
INSERT INTO `wp_rg_form_view` VALUES("55487", "3", "2017-05-09 06:04:29", "77.75.76.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("55488", "10", "2017-05-09 06:04:37", "77.75.76.172", "56");
INSERT INTO `wp_rg_form_view` VALUES("55489", "3", "2017-05-09 07:13:21", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("55490", "10", "2017-05-09 07:13:24", "66.249.79.144", "17");
INSERT INTO `wp_rg_form_view` VALUES("55491", "3", "2017-05-09 08:06:39", "194.187.170.120", "23");
INSERT INTO `wp_rg_form_view` VALUES("55492", "10", "2017-05-09 08:06:40", "194.187.170.120", "161");
INSERT INTO `wp_rg_form_view` VALUES("55493", "13", "2017-05-09 08:28:11", "77.88.47.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("55494", "3", "2017-05-09 09:19:41", "5.255.250.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("55495", "11", "2017-05-09 09:42:57", "217.69.133.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("55496", "10", "2017-05-09 10:13:23", "35.184.189.105", "17");
INSERT INTO `wp_rg_form_view` VALUES("55497", "3", "2017-05-09 10:13:27", "35.184.189.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("55498", "12", "2017-05-09 11:21:54", "118.211.212.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("55499", "3", "2017-05-09 11:22:02", "118.211.212.40", "13");
INSERT INTO `wp_rg_form_view` VALUES("55500", "10", "2017-05-09 11:22:03", "118.211.212.40", "88");
INSERT INTO `wp_rg_form_view` VALUES("55501", "2", "2017-05-09 11:31:54", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55502", "11", "2017-05-09 11:32:21", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55503", "3", "2017-05-09 12:06:18", "141.8.143.242", "33");
INSERT INTO `wp_rg_form_view` VALUES("55504", "10", "2017-05-09 12:06:18", "141.8.143.242", "52");
INSERT INTO `wp_rg_form_view` VALUES("55505", "6", "2017-05-09 12:09:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55506", "9", "2017-05-09 12:09:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55507", "8", "2017-05-09 12:09:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55508", "13", "2017-05-09 12:09:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55509", "15", "2017-05-09 12:09:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55510", "3", "2017-05-09 14:40:49", "202.46.52.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("55511", "10", "2017-05-09 14:40:50", "202.46.52.63", "8");
INSERT INTO `wp_rg_form_view` VALUES("55512", "2", "2017-05-09 14:54:26", "141.8.143.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("55513", "3", "2017-05-09 15:08:04", "141.8.143.175", "42");
INSERT INTO `wp_rg_form_view` VALUES("55514", "10", "2017-05-09 15:08:05", "141.8.143.175", "232");
INSERT INTO `wp_rg_form_view` VALUES("55515", "2", "2017-05-09 15:33:46", "46.229.168.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("55516", "15", "2017-05-09 15:35:11", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("55517", "13", "2017-05-09 16:13:49", "68.180.230.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("55518", "3", "2017-05-09 17:02:06", "194.187.170.123", "5");
INSERT INTO `wp_rg_form_view` VALUES("55519", "10", "2017-05-09 17:02:09", "194.187.170.123", "24");
INSERT INTO `wp_rg_form_view` VALUES("55520", "6", "2017-05-09 18:06:23", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("55521", "3", "2017-05-09 18:06:31", "199.21.99.202", "33");
INSERT INTO `wp_rg_form_view` VALUES("55522", "10", "2017-05-09 18:06:31", "199.21.99.202", "52");
INSERT INTO `wp_rg_form_view` VALUES("55523", "14", "2017-05-09 18:16:28", "204.239.148.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("55524", "2", "2017-05-09 18:26:30", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("55525", "8", "2017-05-09 18:39:18", "40.77.167.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("55526", "9", "2017-05-09 18:58:33", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55527", "13", "2017-05-09 18:58:34", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55528", "15", "2017-05-09 18:58:35", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55529", "3", "2017-05-09 19:16:10", "66.249.79.144", "10");
INSERT INTO `wp_rg_form_view` VALUES("55530", "10", "2017-05-09 19:16:10", "66.249.79.144", "75");
INSERT INTO `wp_rg_form_view` VALUES("55531", "12", "2017-05-09 19:51:17", "202.46.53.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("55532", "15", "2017-05-09 19:57:05", "91.103.66.203", "2");
INSERT INTO `wp_rg_form_view` VALUES("55533", "15", "2017-05-09 19:57:05", "91.103.66.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("55534", "3", "2017-05-09 20:07:03", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("55535", "10", "2017-05-09 20:07:03", "199.21.99.202", "16");
INSERT INTO `wp_rg_form_view` VALUES("55536", "14", "2017-05-09 20:58:31", "24.108.1.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("55537", "6", "2017-05-09 21:06:32", "217.182.132.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("55538", "3", "2017-05-09 21:06:37", "217.182.132.180", "15");
INSERT INTO `wp_rg_form_view` VALUES("55539", "10", "2017-05-09 21:06:37", "217.182.132.180", "89");
INSERT INTO `wp_rg_form_view` VALUES("55540", "14", "2017-05-09 21:37:14", "216.232.150.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("55541", "11", "2017-05-09 21:43:38", "138.197.96.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("55542", "2", "2017-05-09 21:43:39", "138.197.96.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("55543", "3", "2017-05-09 22:04:35", "146.185.223.45", "7");
INSERT INTO `wp_rg_form_view` VALUES("55544", "13", "2017-05-09 22:04:36", "202.46.54.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("55545", "10", "2017-05-09 22:04:36", "146.185.223.45", "50");
INSERT INTO `wp_rg_form_view` VALUES("55546", "3", "2017-05-09 23:10:33", "35.184.189.105", "21");
INSERT INTO `wp_rg_form_view` VALUES("55547", "10", "2017-05-09 23:10:34", "35.184.189.105", "165");
INSERT INTO `wp_rg_form_view` VALUES("55548", "3", "2017-05-10 00:17:01", "202.46.54.142", "8");
INSERT INTO `wp_rg_form_view` VALUES("55549", "10", "2017-05-10 00:17:03", "202.46.54.142", "48");
INSERT INTO `wp_rg_form_view` VALUES("55550", "13", "2017-05-10 00:38:42", "194.187.170.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("55551", "12", "2017-05-10 00:48:34", "164.132.161.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("55552", "14", "2017-05-10 01:23:39", "202.46.58.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("55553", "3", "2017-05-10 01:57:03", "202.46.52.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("55554", "10", "2017-05-10 01:57:04", "202.46.52.177", "8");
INSERT INTO `wp_rg_form_view` VALUES("55555", "10", "2017-05-10 02:19:19", "51.255.65.15", "9");
INSERT INTO `wp_rg_form_view` VALUES("55556", "3", "2017-05-10 02:19:23", "51.255.65.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("55557", "3", "2017-05-10 03:03:39", "202.46.49.75", "8");
INSERT INTO `wp_rg_form_view` VALUES("55558", "10", "2017-05-10 03:03:40", "202.46.49.75", "40");
INSERT INTO `wp_rg_form_view` VALUES("55559", "3", "2017-05-10 04:10:20", "202.46.51.27", "32");
INSERT INTO `wp_rg_form_view` VALUES("55560", "10", "2017-05-10 04:10:20", "202.46.51.27", "39");
INSERT INTO `wp_rg_form_view` VALUES("55561", "6", "2017-05-10 04:27:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55562", "9", "2017-05-10 04:27:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55563", "8", "2017-05-10 04:27:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55564", "13", "2017-05-10 04:27:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55565", "15", "2017-05-10 04:27:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55566", "3", "2017-05-10 05:17:02", "202.46.53.142", "16");
INSERT INTO `wp_rg_form_view` VALUES("55567", "10", "2017-05-10 05:17:06", "202.46.53.142", "25");
INSERT INTO `wp_rg_form_view` VALUES("55568", "8", "2017-05-10 05:23:04", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55569", "13", "2017-05-10 05:23:05", "35.184.189.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("55570", "15", "2017-05-10 05:23:05", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55571", "10", "2017-05-10 06:03:25", "77.75.77.54", "47");
INSERT INTO `wp_rg_form_view` VALUES("55572", "3", "2017-05-10 06:03:26", "77.75.77.54", "32");
INSERT INTO `wp_rg_form_view` VALUES("55573", "6", "2017-05-10 06:55:42", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55574", "9", "2017-05-10 06:55:42", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55575", "8", "2017-05-10 06:55:42", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55576", "13", "2017-05-10 06:55:43", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55577", "15", "2017-05-10 06:55:44", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55578", "3", "2017-05-10 07:13:10", "77.75.79.17", "4");
INSERT INTO `wp_rg_form_view` VALUES("55579", "10", "2017-05-10 07:13:10", "77.75.79.17", "34");
INSERT INTO `wp_rg_form_view` VALUES("55580", "3", "2017-05-10 08:15:29", "157.55.39.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("55581", "10", "2017-05-10 08:15:29", "157.55.39.150", "8");
INSERT INTO `wp_rg_form_view` VALUES("55582", "10", "2017-05-10 09:04:38", "51.255.71.100", "17");
INSERT INTO `wp_rg_form_view` VALUES("55583", "3", "2017-05-10 09:04:40", "51.255.71.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("55584", "3", "2017-05-10 10:03:32", "77.75.79.101", "5");
INSERT INTO `wp_rg_form_view` VALUES("55585", "10", "2017-05-10 10:03:34", "77.75.79.101", "41");
INSERT INTO `wp_rg_form_view` VALUES("55586", "3", "2017-05-10 11:02:14", "77.75.76.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("55587", "10", "2017-05-10 11:02:14", "77.75.76.160", "32");
INSERT INTO `wp_rg_form_view` VALUES("55588", "3", "2017-05-10 12:07:32", "199.21.99.201", "5");
INSERT INTO `wp_rg_form_view` VALUES("55589", "10", "2017-05-10 12:07:33", "199.21.99.201", "24");
INSERT INTO `wp_rg_form_view` VALUES("55590", "14", "2017-05-10 12:35:48", "83.69.106.178", "3");
INSERT INTO `wp_rg_form_view` VALUES("55591", "14", "2017-05-10 13:06:27", "103.79.165.236", "2");
INSERT INTO `wp_rg_form_view` VALUES("55592", "3", "2017-05-10 13:12:08", "35.184.189.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("55593", "10", "2017-05-10 13:12:08", "35.184.189.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("55594", "3", "2017-05-10 14:02:00", "199.21.99.202", "33");
INSERT INTO `wp_rg_form_view` VALUES("55595", "10", "2017-05-10 14:02:01", "199.21.99.202", "45");
INSERT INTO `wp_rg_form_view` VALUES("55596", "6", "2017-05-10 14:20:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55597", "9", "2017-05-10 14:20:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55598", "8", "2017-05-10 14:20:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55599", "13", "2017-05-10 14:20:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55600", "15", "2017-05-10 14:20:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55601", "10", "2017-05-10 15:14:19", "217.182.132.187", "89");
INSERT INTO `wp_rg_form_view` VALUES("55602", "3", "2017-05-10 15:14:19", "217.182.132.187", "15");
INSERT INTO `wp_rg_form_view` VALUES("55603", "2", "2017-05-10 15:20:06", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55604", "11", "2017-05-10 15:29:08", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55605", "11", "2017-05-10 16:04:16", "51.255.65.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("55606", "3", "2017-05-10 17:18:03", "202.46.51.154", "13");
INSERT INTO `wp_rg_form_view` VALUES("55607", "10", "2017-05-10 17:18:12", "202.46.51.154", "88");
INSERT INTO `wp_rg_form_view` VALUES("55608", "11", "2017-05-10 17:36:05", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55609", "2", "2017-05-10 17:36:07", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55610", "9", "2017-05-10 17:51:21", "202.46.55.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("55611", "10", "2017-05-10 18:21:56", "5.188.211.14", "25");
INSERT INTO `wp_rg_form_view` VALUES("55612", "3", "2017-05-10 18:21:57", "5.188.211.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("55613", "14", "2017-05-10 18:28:18", "24.68.158.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("55614", "14", "2017-05-10 20:08:55", "159.255.163.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("55615", "3", "2017-05-10 20:11:57", "202.46.49.118", "6");
INSERT INTO `wp_rg_form_view` VALUES("55616", "10", "2017-05-10 20:11:57", "202.46.49.118", "40");
INSERT INTO `wp_rg_form_view` VALUES("55617", "11", "2017-05-10 20:30:30", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("55618", "2", "2017-05-10 20:30:32", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("55619", "3", "2017-05-10 21:18:40", "202.46.54.18", "12");
INSERT INTO `wp_rg_form_view` VALUES("55620", "10", "2017-05-10 21:18:42", "202.46.54.18", "64");
INSERT INTO `wp_rg_form_view` VALUES("55621", "2", "2017-05-10 21:51:16", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("55622", "11", "2017-05-10 21:51:33", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("55623", "3", "2017-05-10 22:11:12", "35.184.189.105", "10");
INSERT INTO `wp_rg_form_view` VALUES("55624", "10", "2017-05-10 22:11:13", "35.184.189.105", "56");
INSERT INTO `wp_rg_form_view` VALUES("55625", "3", "2017-05-10 23:32:06", "202.46.56.134", "11");
INSERT INTO `wp_rg_form_view` VALUES("55626", "10", "2017-05-10 23:32:08", "202.46.56.134", "72");
INSERT INTO `wp_rg_form_view` VALUES("55627", "2", "2017-05-10 23:32:56", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55628", "11", "2017-05-10 23:34:26", "40.77.167.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("55629", "3", "2017-05-11 00:05:18", "202.46.57.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("55630", "10", "2017-05-11 00:05:19", "202.46.57.70", "8");
INSERT INTO `wp_rg_form_view` VALUES("55631", "3", "2017-05-11 01:11:36", "157.55.39.150", "10");
INSERT INTO `wp_rg_form_view` VALUES("55632", "10", "2017-05-11 01:11:37", "157.55.39.150", "74");
INSERT INTO `wp_rg_form_view` VALUES("55633", "8", "2017-05-11 01:11:55", "202.46.55.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("55634", "2", "2017-05-11 01:30:55", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55635", "11", "2017-05-11 01:31:23", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55636", "3", "2017-05-11 02:05:49", "40.77.167.138", "9");
INSERT INTO `wp_rg_form_view` VALUES("55637", "10", "2017-05-11 02:05:49", "40.77.167.138", "56");
INSERT INTO `wp_rg_form_view` VALUES("55638", "2", "2017-05-11 02:30:37", "5.188.211.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("55639", "11", "2017-05-11 02:30:59", "5.188.211.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("55640", "14", "2017-05-11 02:41:48", "80.245.114.223", "3");
INSERT INTO `wp_rg_form_view` VALUES("55641", "3", "2017-05-11 03:01:31", "51.255.65.51", "3");
INSERT INTO `wp_rg_form_view` VALUES("55642", "10", "2017-05-11 03:01:40", "51.255.65.51", "25");
INSERT INTO `wp_rg_form_view` VALUES("55643", "3", "2017-05-11 04:04:26", "202.46.53.124", "9");
INSERT INTO `wp_rg_form_view` VALUES("55644", "10", "2017-05-11 04:04:27", "202.46.53.124", "59");
INSERT INTO `wp_rg_form_view` VALUES("55645", "3", "2017-05-11 05:10:47", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55646", "10", "2017-05-11 05:10:48", "35.184.189.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("55647", "3", "2017-05-11 06:02:44", "202.46.57.185", "7");
INSERT INTO `wp_rg_form_view` VALUES("55648", "10", "2017-05-11 06:02:51", "202.46.57.185", "41");
INSERT INTO `wp_rg_form_view` VALUES("55649", "5", "2017-05-11 07:00:14", "51.255.65.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("55650", "3", "2017-05-11 07:00:15", "51.255.65.5", "37");
INSERT INTO `wp_rg_form_view` VALUES("55651", "10", "2017-05-11 07:00:15", "51.255.65.5", "84");
INSERT INTO `wp_rg_form_view` VALUES("55652", "6", "2017-05-11 07:10:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55653", "9", "2017-05-11 07:10:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55654", "8", "2017-05-11 07:10:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55655", "13", "2017-05-11 07:10:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55656", "15", "2017-05-11 07:10:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55657", "11", "2017-05-11 07:32:10", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55658", "2", "2017-05-11 07:32:11", "104.154.189.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("55659", "3", "2017-05-11 08:17:20", "207.46.13.42", "7");
INSERT INTO `wp_rg_form_view` VALUES("55660", "10", "2017-05-11 08:17:25", "207.46.13.42", "40");
INSERT INTO `wp_rg_form_view` VALUES("55661", "10", "2017-05-11 09:18:42", "207.46.13.42", "38");
INSERT INTO `wp_rg_form_view` VALUES("55662", "3", "2017-05-11 09:18:43", "207.46.13.42", "30");
INSERT INTO `wp_rg_form_view` VALUES("55663", "6", "2017-05-11 09:59:37", "40.77.167.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("55664", "9", "2017-05-11 09:59:38", "40.77.167.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("55665", "8", "2017-05-11 09:59:38", "40.77.167.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("55666", "13", "2017-05-11 09:59:39", "40.77.167.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("55667", "15", "2017-05-11 09:59:40", "40.77.167.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("55668", "3", "2017-05-11 10:09:55", "35.184.189.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("55669", "10", "2017-05-11 10:09:55", "35.184.189.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("55670", "3", "2017-05-11 11:17:48", "207.46.13.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("55671", "10", "2017-05-11 11:17:52", "207.46.13.42", "24");
INSERT INTO `wp_rg_form_view` VALUES("55672", "3", "2017-05-11 12:16:36", "51.255.65.25", "14");
INSERT INTO `wp_rg_form_view` VALUES("55673", "10", "2017-05-11 12:16:37", "51.255.65.25", "89");
INSERT INTO `wp_rg_form_view` VALUES("55674", "2", "2017-05-11 12:24:25", "138.197.104.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("55675", "11", "2017-05-11 12:24:27", "138.197.104.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("55676", "3", "2017-05-11 13:02:24", "35.184.189.105", "11");
INSERT INTO `wp_rg_form_view` VALUES("55677", "10", "2017-05-11 13:02:24", "35.184.189.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("55678", "3", "2017-05-11 14:01:56", "46.119.117.60", "15");
INSERT INTO `wp_rg_form_view` VALUES("55679", "10", "2017-05-11 14:21:00", "35.184.189.105", "74");
INSERT INTO `wp_rg_form_view` VALUES("55680", "2", "2017-05-11 14:36:00", "5.188.211.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("55681", "11", "2017-05-11 14:36:41", "5.188.211.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("55682", "3", "2017-05-11 15:04:46", "178.165.88.182", "17");
INSERT INTO `wp_rg_form_view` VALUES("55683", "10", "2017-05-11 15:04:46", "178.165.88.182", "64");
INSERT INTO `wp_rg_form_view` VALUES("55684", "3", "2017-05-11 16:09:44", "77.75.76.170", "32");
INSERT INTO `wp_rg_form_view` VALUES("55685", "10", "2017-05-11 16:09:44", "77.75.76.170", "52");
INSERT INTO `wp_rg_form_view` VALUES("55686", "6", "2017-05-11 16:54:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55687", "9", "2017-05-11 16:54:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55688", "8", "2017-05-11 16:54:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55689", "13", "2017-05-11 16:54:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55690", "15", "2017-05-11 16:54:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55691", "3", "2017-05-11 17:00:33", "40.77.167.35", "23");
INSERT INTO `wp_rg_form_view` VALUES("55692", "10", "2017-05-11 17:00:33", "40.77.167.35", "148");
INSERT INTO `wp_rg_form_view` VALUES("55693", "2", "2017-05-11 17:10:07", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("55694", "11", "2017-05-11 17:10:36", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("55695", "9", "2017-05-11 17:23:17", "51.255.64.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("55696", "14", "2017-05-11 17:45:33", "134.60.51.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("55697", "10", "2017-05-11 18:33:10", "35.184.189.105", "34");
INSERT INTO `wp_rg_form_view` VALUES("55698", "3", "2017-05-11 18:33:21", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55699", "3", "2017-05-11 19:10:49", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55700", "10", "2017-05-11 19:10:50", "35.184.189.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("55701", "10", "2017-05-11 20:01:16", "35.184.189.105", "49");
INSERT INTO `wp_rg_form_view` VALUES("55702", "3", "2017-05-11 20:01:17", "35.184.189.105", "7");
INSERT INTO `wp_rg_form_view` VALUES("55703", "14", "2017-05-11 20:48:29", "96.50.106.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("55704", "15", "2017-05-11 20:53:21", "164.132.161.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("55705", "3", "2017-05-11 21:01:28", "77.75.79.95", "4");
INSERT INTO `wp_rg_form_view` VALUES("55706", "10", "2017-05-11 21:01:28", "77.75.79.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("55707", "14", "2017-05-11 21:04:32", "96.50.106.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("55708", "3", "2017-05-11 22:13:44", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55709", "10", "2017-05-11 22:13:49", "35.184.189.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("55710", "2", "2017-05-11 22:26:58", "37.221.166.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("55711", "3", "2017-05-11 23:05:29", "202.46.53.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("55712", "10", "2017-05-11 23:05:32", "202.46.53.56", "16");
INSERT INTO `wp_rg_form_view` VALUES("55713", "3", "2017-05-12 00:09:02", "108.180.193.188", "8");
INSERT INTO `wp_rg_form_view` VALUES("55714", "10", "2017-05-12 00:09:05", "108.180.193.188", "40");
INSERT INTO `wp_rg_form_view` VALUES("55715", "10", "2017-05-12 01:01:46", "35.184.189.105", "33");
INSERT INTO `wp_rg_form_view` VALUES("55716", "3", "2017-05-12 01:01:47", "35.184.189.105", "5");
INSERT INTO `wp_rg_form_view` VALUES("55717", "3", "2017-05-12 02:06:49", "202.46.53.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("55718", "10", "2017-05-12 02:06:49", "202.46.53.126", "17");
INSERT INTO `wp_rg_form_view` VALUES("55719", "3", "2017-05-12 03:29:53", "35.184.189.105", "6");
INSERT INTO `wp_rg_form_view` VALUES("55720", "10", "2017-05-12 03:29:55", "35.184.189.105", "32");
INSERT INTO `wp_rg_form_view` VALUES("55721", "10", "2017-05-12 04:13:38", "35.184.189.105", "34");
INSERT INTO `wp_rg_form_view` VALUES("55722", "3", "2017-05-12 04:13:38", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55723", "3", "2017-05-12 05:11:03", "24.68.120.230", "11");
INSERT INTO `wp_rg_form_view` VALUES("55724", "10", "2017-05-12 05:11:04", "24.68.120.230", "37");
INSERT INTO `wp_rg_form_view` VALUES("55725", "3", "2017-05-12 06:06:14", "40.77.167.2", "6");
INSERT INTO `wp_rg_form_view` VALUES("55726", "10", "2017-05-12 06:06:22", "40.77.167.2", "49");
INSERT INTO `wp_rg_form_view` VALUES("55727", "2", "2017-05-12 06:39:13", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("55728", "11", "2017-05-12 06:39:30", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("55729", "10", "2017-05-12 07:06:46", "202.46.56.117", "85");
INSERT INTO `wp_rg_form_view` VALUES("55730", "3", "2017-05-12 07:06:48", "202.46.56.117", "28");
INSERT INTO `wp_rg_form_view` VALUES("55731", "14", "2017-05-12 07:23:45", "64.180.191.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("55732", "13", "2017-05-12 07:40:18", "68.180.228.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("55733", "15", "2017-05-12 07:40:18", "68.180.228.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("55734", "14", "2017-05-12 08:11:09", "91.108.183.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("55735", "3", "2017-05-12 08:39:33", "66.249.79.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("55736", "10", "2017-05-12 08:39:38", "66.249.79.148", "16");
INSERT INTO `wp_rg_form_view` VALUES("55737", "3", "2017-05-12 09:07:54", "52.88.109.3", "39");
INSERT INTO `wp_rg_form_view` VALUES("55738", "6", "2017-05-12 09:07:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55739", "9", "2017-05-12 09:07:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55740", "8", "2017-05-12 09:07:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55741", "10", "2017-05-12 09:07:57", "52.88.109.3", "92");
INSERT INTO `wp_rg_form_view` VALUES("55742", "13", "2017-05-12 09:07:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55743", "15", "2017-05-12 09:07:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55744", "2", "2017-05-12 09:19:01", "5.188.211.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("55745", "11", "2017-05-12 09:19:27", "5.188.211.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("55746", "3", "2017-05-12 10:02:42", "35.184.189.105", "11");
INSERT INTO `wp_rg_form_view` VALUES("55747", "10", "2017-05-12 10:02:43", "35.184.189.105", "48");
INSERT INTO `wp_rg_form_view` VALUES("55748", "2", "2017-05-12 10:17:53", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("55749", "11", "2017-05-12 10:18:07", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("55750", "3", "2017-05-12 11:59:05", "40.77.167.43", "10");
INSERT INTO `wp_rg_form_view` VALUES("55751", "8", "2017-05-12 11:59:06", "40.77.167.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("55752", "13", "2017-05-12 11:59:06", "40.77.167.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("55753", "3", "2017-05-12 12:23:47", "202.46.54.98", "3");
INSERT INTO `wp_rg_form_view` VALUES("55754", "10", "2017-05-12 12:23:51", "202.46.54.98", "24");
INSERT INTO `wp_rg_form_view` VALUES("55755", "3", "2017-05-12 13:27:57", "137.74.207.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("55756", "10", "2017-05-12 13:27:59", "137.74.207.170", "17");
INSERT INTO `wp_rg_form_view` VALUES("55757", "14", "2017-05-12 14:02:12", "137.74.207.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("55758", "3", "2017-05-12 14:12:10", "35.184.189.105", "7");
INSERT INTO `wp_rg_form_view` VALUES("55759", "10", "2017-05-12 14:12:11", "35.184.189.105", "41");
INSERT INTO `wp_rg_form_view` VALUES("55760", "2", "2017-05-12 15:11:04", "40.77.167.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("55761", "3", "2017-05-12 15:13:02", "202.46.57.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("55762", "10", "2017-05-12 15:13:04", "202.46.57.77", "16");
INSERT INTO `wp_rg_form_view` VALUES("55763", "14", "2017-05-12 15:32:38", "24.68.4.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("55764", "3", "2017-05-12 16:19:41", "202.46.58.152", "5");
INSERT INTO `wp_rg_form_view` VALUES("55765", "10", "2017-05-12 16:19:43", "202.46.58.152", "32");
INSERT INTO `wp_rg_form_view` VALUES("55766", "14", "2017-05-12 16:33:19", "24.69.141.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("55767", "3", "2017-05-12 17:03:48", "46.119.117.60", "10");
INSERT INTO `wp_rg_form_view` VALUES("55768", "3", "2017-05-12 17:03:48", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("55769", "3", "2017-05-12 17:03:48", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("55770", "3", "2017-05-12 17:03:48", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("55771", "3", "2017-05-12 17:03:48", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("55772", "10", "2017-05-12 17:25:07", "217.182.132.37", "73");
INSERT INTO `wp_rg_form_view` VALUES("55773", "3", "2017-05-12 18:03:53", "66.249.79.144", "38");
INSERT INTO `wp_rg_form_view` VALUES("55774", "10", "2017-05-12 18:03:53", "66.249.79.144", "85");
INSERT INTO `wp_rg_form_view` VALUES("55775", "6", "2017-05-12 18:59:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55776", "9", "2017-05-12 18:59:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55777", "8", "2017-05-12 18:59:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55778", "13", "2017-05-12 18:59:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55779", "15", "2017-05-12 18:59:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55780", "2", "2017-05-12 19:11:42", "52.43.117.234", "2");
INSERT INTO `wp_rg_form_view` VALUES("55781", "10", "2017-05-12 19:38:43", "35.184.189.105", "99");
INSERT INTO `wp_rg_form_view` VALUES("55782", "3", "2017-05-12 19:38:46", "35.184.189.105", "12");
INSERT INTO `wp_rg_form_view` VALUES("55783", "3", "2017-05-12 20:18:44", "207.46.13.42", "91");
INSERT INTO `wp_rg_form_view` VALUES("55784", "10", "2017-05-12 20:18:45", "207.46.13.42", "512");
INSERT INTO `wp_rg_form_view` VALUES("55785", "9", "2017-05-12 20:28:53", "40.77.167.43", "3");
INSERT INTO `wp_rg_form_view` VALUES("55786", "6", "2017-05-12 20:29:13", "157.55.39.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("55787", "8", "2017-05-12 20:29:19", "157.55.39.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("55788", "13", "2017-05-12 20:29:21", "157.55.39.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("55789", "15", "2017-05-12 20:29:22", "157.55.39.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("55790", "7", "2017-05-12 20:29:36", "157.55.39.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("55791", "14", "2017-05-12 21:13:20", "75.157.26.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("55792", "3", "2017-05-12 21:22:24", "164.132.161.58", "15");
INSERT INTO `wp_rg_form_view` VALUES("55793", "10", "2017-05-12 21:22:26", "164.132.161.58", "93");
INSERT INTO `wp_rg_form_view` VALUES("55794", "3", "2017-05-12 22:11:06", "207.102.236.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("55795", "10", "2017-05-12 22:11:07", "207.102.236.24", "17");
INSERT INTO `wp_rg_form_view` VALUES("55796", "3", "2017-05-12 23:01:40", "207.46.13.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("55797", "10", "2017-05-12 23:01:41", "207.46.13.42", "24");
INSERT INTO `wp_rg_form_view` VALUES("55798", "14", "2017-05-12 23:49:10", "207.194.133.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("55799", "10", "2017-05-13 00:00:07", "217.182.132.50", "87");
INSERT INTO `wp_rg_form_view` VALUES("55800", "3", "2017-05-13 00:00:07", "217.182.132.50", "38");
INSERT INTO `wp_rg_form_view` VALUES("55801", "6", "2017-05-13 00:38:10", "5.188.211.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("55802", "9", "2017-05-13 00:38:11", "5.188.211.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("55803", "8", "2017-05-13 00:38:11", "5.188.211.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("55804", "13", "2017-05-13 00:38:12", "5.188.211.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("55805", "15", "2017-05-13 00:38:13", "5.188.211.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("55806", "5", "2017-05-13 00:51:52", "77.75.77.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("55807", "3", "2017-05-13 01:00:10", "64.62.210.39", "23");
INSERT INTO `wp_rg_form_view` VALUES("55808", "10", "2017-05-13 01:00:10", "64.62.210.39", "44");
INSERT INTO `wp_rg_form_view` VALUES("55809", "8", "2017-05-13 01:49:28", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55810", "13", "2017-05-13 01:49:29", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55811", "15", "2017-05-13 01:49:29", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55812", "12", "2017-05-13 01:53:15", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("55813", "11", "2017-05-13 02:00:57", "138.197.96.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("55814", "3", "2017-05-13 02:00:57", "138.197.96.40", "14");
INSERT INTO `wp_rg_form_view` VALUES("55815", "2", "2017-05-13 02:00:59", "138.197.96.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("55816", "10", "2017-05-13 02:01:03", "138.197.96.40", "98");
INSERT INTO `wp_rg_form_view` VALUES("55817", "10", "2017-05-13 02:01:03", "138.197.96.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("55818", "10", "2017-05-13 02:01:03", "138.197.96.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("55819", "3", "2017-05-13 03:28:02", "46.118.155.24", "8");
INSERT INTO `wp_rg_form_view` VALUES("55820", "10", "2017-05-13 03:37:55", "35.184.189.105", "17");
INSERT INTO `wp_rg_form_view` VALUES("55821", "8", "2017-05-13 03:58:48", "202.46.54.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("55822", "3", "2017-05-13 04:20:19", "35.184.189.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("55823", "10", "2017-05-13 04:20:19", "35.184.189.105", "17");
INSERT INTO `wp_rg_form_view` VALUES("55824", "3", "2017-05-13 05:11:32", "202.46.51.205", "3");
INSERT INTO `wp_rg_form_view` VALUES("55825", "10", "2017-05-13 05:11:33", "202.46.51.205", "24");
INSERT INTO `wp_rg_form_view` VALUES("55826", "3", "2017-05-13 06:08:46", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55827", "10", "2017-05-13 06:08:49", "35.184.189.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("55828", "14", "2017-05-13 06:39:48", "154.20.32.249", "1");
INSERT INTO `wp_rg_form_view` VALUES("55829", "11", "2017-05-13 07:01:47", "217.122.185.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("55830", "3", "2017-05-13 07:01:51", "217.122.185.187", "10");
INSERT INTO `wp_rg_form_view` VALUES("55831", "10", "2017-05-13 07:01:51", "217.122.185.187", "72");
INSERT INTO `wp_rg_form_view` VALUES("55832", "2", "2017-05-13 07:02:37", "217.122.185.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("55833", "3", "2017-05-13 08:33:13", "202.46.48.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("55834", "10", "2017-05-13 08:33:15", "202.46.48.195", "25");
INSERT INTO `wp_rg_form_view` VALUES("55835", "3", "2017-05-13 09:34:40", "207.46.13.42", "11");
INSERT INTO `wp_rg_form_view` VALUES("55836", "10", "2017-05-13 09:34:42", "207.46.13.42", "80");
INSERT INTO `wp_rg_form_view` VALUES("55837", "11", "2017-05-13 09:45:40", "70.35.194.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("55838", "2", "2017-05-13 09:46:16", "70.35.194.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("55839", "3", "2017-05-13 10:03:28", "46.118.116.168", "9");
INSERT INTO `wp_rg_form_view` VALUES("55840", "10", "2017-05-13 10:34:15", "77.75.79.95", "24");
INSERT INTO `wp_rg_form_view` VALUES("55841", "3", "2017-05-13 11:20:01", "202.46.53.154", "30");
INSERT INTO `wp_rg_form_view` VALUES("55842", "10", "2017-05-13 11:20:14", "202.46.53.154", "37");
INSERT INTO `wp_rg_form_view` VALUES("55843", "6", "2017-05-13 11:45:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55844", "9", "2017-05-13 11:45:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55845", "8", "2017-05-13 11:45:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55846", "13", "2017-05-13 11:45:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55847", "15", "2017-05-13 11:45:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55848", "3", "2017-05-13 12:12:56", "35.184.189.105", "34");
INSERT INTO `wp_rg_form_view` VALUES("55849", "10", "2017-05-13 12:13:01", "35.184.189.105", "28");
INSERT INTO `wp_rg_form_view` VALUES("55850", "6", "2017-05-13 12:25:07", "164.132.161.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55851", "9", "2017-05-13 12:25:08", "164.132.161.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55852", "8", "2017-05-13 12:25:08", "164.132.161.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55853", "13", "2017-05-13 12:25:09", "164.132.161.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55854", "15", "2017-05-13 12:25:10", "164.132.161.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55855", "3", "2017-05-13 13:12:19", "202.46.49.93", "5");
INSERT INTO `wp_rg_form_view` VALUES("55856", "10", "2017-05-13 13:12:19", "202.46.49.93", "42");
INSERT INTO `wp_rg_form_view` VALUES("55857", "3", "2017-05-13 14:04:33", "40.77.167.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("55858", "10", "2017-05-13 14:04:33", "40.77.167.15", "32");
INSERT INTO `wp_rg_form_view` VALUES("55859", "14", "2017-05-13 14:55:52", "198.98.96.203", "3");
INSERT INTO `wp_rg_form_view` VALUES("55860", "3", "2017-05-13 15:00:36", "178.137.4.41", "10");
INSERT INTO `wp_rg_form_view` VALUES("55861", "10", "2017-05-13 15:08:56", "51.255.71.100", "66");
INSERT INTO `wp_rg_form_view` VALUES("55862", "2", "2017-05-13 16:05:08", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("55863", "3", "2017-05-13 16:05:16", "188.40.46.135", "111");
INSERT INTO `wp_rg_form_view` VALUES("55864", "10", "2017-05-13 16:05:16", "188.40.46.135", "191");
INSERT INTO `wp_rg_form_view` VALUES("55865", "14", "2017-05-13 16:08:36", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("55866", "6", "2017-05-13 16:37:31", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("55867", "9", "2017-05-13 16:37:31", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("55868", "8", "2017-05-13 16:37:32", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("55869", "13", "2017-05-13 16:37:32", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("55870", "15", "2017-05-13 16:37:33", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("55871", "3", "2017-05-13 17:03:09", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55872", "10", "2017-05-13 17:03:09", "35.184.189.105", "8");
INSERT INTO `wp_rg_form_view` VALUES("55873", "11", "2017-05-13 17:27:23", "77.75.76.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("55874", "3", "2017-05-13 18:04:01", "46.118.116.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("55875", "10", "2017-05-13 18:04:31", "202.46.54.131", "42");
INSERT INTO `wp_rg_form_view` VALUES("55876", "3", "2017-05-13 19:07:20", "163.172.108.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("55877", "10", "2017-05-13 19:07:20", "163.172.108.176", "32");
INSERT INTO `wp_rg_form_view` VALUES("55878", "3", "2017-05-13 20:12:12", "35.184.189.105", "33");
INSERT INTO `wp_rg_form_view` VALUES("55879", "10", "2017-05-13 20:12:16", "35.184.189.105", "53");
INSERT INTO `wp_rg_form_view` VALUES("55880", "6", "2017-05-13 20:43:47", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55881", "9", "2017-05-13 20:43:47", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55882", "8", "2017-05-13 20:43:48", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55883", "13", "2017-05-13 20:43:49", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55884", "15", "2017-05-13 20:43:51", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55885", "3", "2017-05-13 21:32:18", "46.119.117.60", "37");
INSERT INTO `wp_rg_form_view` VALUES("55886", "3", "2017-05-13 21:32:18", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("55887", "3", "2017-05-13 21:32:18", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("55888", "6", "2017-05-13 21:32:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55889", "9", "2017-05-13 21:32:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55890", "8", "2017-05-13 21:32:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55891", "10", "2017-05-13 21:32:47", "52.88.109.3", "68");
INSERT INTO `wp_rg_form_view` VALUES("55892", "13", "2017-05-13 21:32:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55893", "15", "2017-05-13 21:32:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55894", "11", "2017-05-13 21:42:04", "88.99.211.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("55895", "2", "2017-05-13 21:42:06", "88.99.211.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("55896", "10", "2017-05-13 22:12:25", "35.184.189.105", "33");
INSERT INTO `wp_rg_form_view` VALUES("55897", "3", "2017-05-13 22:12:35", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55898", "3", "2017-05-13 23:01:46", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55899", "10", "2017-05-13 23:01:48", "35.184.189.105", "32");
INSERT INTO `wp_rg_form_view` VALUES("55900", "3", "2017-05-14 00:06:04", "157.55.39.217", "4");
INSERT INTO `wp_rg_form_view` VALUES("55901", "10", "2017-05-14 00:06:04", "157.55.39.217", "32");
INSERT INTO `wp_rg_form_view` VALUES("55902", "13", "2017-05-14 00:30:26", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("55903", "3", "2017-05-14 01:22:51", "202.46.57.203", "17");
INSERT INTO `wp_rg_form_view` VALUES("55904", "10", "2017-05-14 01:22:56", "202.46.57.203", "20");
INSERT INTO `wp_rg_form_view` VALUES("55905", "13", "2017-05-14 01:25:52", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55906", "15", "2017-05-14 01:25:53", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55907", "3", "2017-05-14 02:47:28", "66.249.79.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("55908", "10", "2017-05-14 02:47:29", "66.249.79.144", "16");
INSERT INTO `wp_rg_form_view` VALUES("55909", "10", "2017-05-14 03:06:04", "35.184.189.105", "25");
INSERT INTO `wp_rg_form_view` VALUES("55910", "3", "2017-05-14 03:06:05", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55911", "3", "2017-05-14 04:00:49", "66.249.79.140", "34");
INSERT INTO `wp_rg_form_view` VALUES("55912", "10", "2017-05-14 04:00:49", "66.249.79.140", "44");
INSERT INTO `wp_rg_form_view` VALUES("55913", "6", "2017-05-14 04:27:16", "5.188.211.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("55914", "9", "2017-05-14 04:27:16", "5.188.211.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("55915", "8", "2017-05-14 04:27:16", "5.188.211.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("55916", "13", "2017-05-14 04:27:17", "5.188.211.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("55917", "15", "2017-05-14 04:27:17", "5.188.211.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("55918", "3", "2017-05-14 05:14:58", "46.118.155.24", "13");
INSERT INTO `wp_rg_form_view` VALUES("55919", "3", "2017-05-14 05:14:58", "46.118.155.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("55920", "10", "2017-05-14 05:18:24", "164.132.161.49", "75");
INSERT INTO `wp_rg_form_view` VALUES("55921", "15", "2017-05-14 05:22:21", "46.4.32.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("55922", "14", "2017-05-14 06:13:05", "68.180.228.235", "2");
INSERT INTO `wp_rg_form_view` VALUES("55923", "3", "2017-05-14 06:14:16", "178.137.4.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("55924", "10", "2017-05-14 06:41:29", "35.184.189.105", "8");
INSERT INTO `wp_rg_form_view` VALUES("55925", "3", "2017-05-14 07:31:13", "202.46.58.27", "3");
INSERT INTO `wp_rg_form_view` VALUES("55926", "10", "2017-05-14 07:31:17", "202.46.58.27", "16");
INSERT INTO `wp_rg_form_view` VALUES("55927", "3", "2017-05-14 08:09:00", "35.184.189.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("55928", "10", "2017-05-14 08:09:01", "35.184.189.105", "24");
INSERT INTO `wp_rg_form_view` VALUES("55929", "3", "2017-05-14 09:54:07", "5.188.211.70", "4");
INSERT INTO `wp_rg_form_view` VALUES("55930", "10", "2017-05-14 09:54:08", "5.188.211.70", "33");
INSERT INTO `wp_rg_form_view` VALUES("55931", "2", "2017-05-14 09:54:13", "5.188.211.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("55932", "11", "2017-05-14 09:54:46", "5.188.211.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("55933", "3", "2017-05-14 10:27:06", "217.182.132.14", "5");
INSERT INTO `wp_rg_form_view` VALUES("55934", "10", "2017-05-14 10:27:06", "217.182.132.14", "24");
INSERT INTO `wp_rg_form_view` VALUES("55935", "3", "2017-05-14 11:27:14", "46.229.168.68", "47");
INSERT INTO `wp_rg_form_view` VALUES("55936", "10", "2017-05-14 11:27:17", "46.229.168.68", "172");
INSERT INTO `wp_rg_form_view` VALUES("55937", "6", "2017-05-14 11:28:07", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55938", "9", "2017-05-14 11:28:07", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55939", "8", "2017-05-14 11:28:08", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55940", "13", "2017-05-14 11:28:08", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55941", "15", "2017-05-14 11:28:09", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55942", "10", "2017-05-14 12:33:28", "35.184.189.105", "34");
INSERT INTO `wp_rg_form_view` VALUES("55943", "3", "2017-05-14 12:33:40", "35.184.189.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("55944", "3", "2017-05-14 13:21:07", "51.255.65.52", "5");
INSERT INTO `wp_rg_form_view` VALUES("55945", "10", "2017-05-14 13:21:07", "51.255.65.52", "16");
INSERT INTO `wp_rg_form_view` VALUES("55946", "3", "2017-05-14 14:00:34", "68.180.228.235", "38");
INSERT INTO `wp_rg_form_view` VALUES("55947", "10", "2017-05-14 14:00:36", "68.180.228.235", "76");
INSERT INTO `wp_rg_form_view` VALUES("55948", "6", "2017-05-14 14:22:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55949", "9", "2017-05-14 14:22:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55950", "8", "2017-05-14 14:22:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("55951", "13", "2017-05-14 14:22:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55952", "15", "2017-05-14 14:22:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55953", "2", "2017-05-14 14:53:15", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("55954", "11", "2017-05-14 14:53:33", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("55955", "3", "2017-05-14 15:01:51", "35.184.189.105", "14");
INSERT INTO `wp_rg_form_view` VALUES("55956", "10", "2017-05-14 15:01:51", "35.184.189.105", "40");
INSERT INTO `wp_rg_form_view` VALUES("55957", "3", "2017-05-14 16:03:11", "184.69.189.158", "13");
INSERT INTO `wp_rg_form_view` VALUES("55958", "10", "2017-05-14 16:03:11", "184.69.189.158", "72");
INSERT INTO `wp_rg_form_view` VALUES("55959", "2", "2017-05-14 16:43:08", "138.197.111.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("55960", "11", "2017-05-14 16:43:09", "138.197.111.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("55961", "3", "2017-05-14 17:41:29", "136.243.17.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("55962", "10", "2017-05-14 17:41:31", "136.243.17.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("55963", "3", "2017-05-14 18:05:58", "35.184.189.105", "17");
INSERT INTO `wp_rg_form_view` VALUES("55964", "10", "2017-05-14 18:05:58", "35.184.189.105", "38");
INSERT INTO `wp_rg_form_view` VALUES("55965", "6", "2017-05-14 18:17:25", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55966", "9", "2017-05-14 18:17:25", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55967", "13", "2017-05-14 18:17:25", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55968", "15", "2017-05-14 18:17:26", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55969", "3", "2017-05-14 19:06:59", "35.184.189.105", "6");
INSERT INTO `wp_rg_form_view` VALUES("55970", "10", "2017-05-14 19:07:04", "35.184.189.105", "32");
INSERT INTO `wp_rg_form_view` VALUES("55971", "2", "2017-05-14 19:49:43", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("55972", "14", "2017-05-14 19:49:48", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("55973", "3", "2017-05-14 20:17:20", "66.249.79.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("55974", "10", "2017-05-14 20:17:21", "66.249.79.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("55975", "10", "2017-05-14 21:04:23", "68.180.228.235", "9");
INSERT INTO `wp_rg_form_view` VALUES("55976", "3", "2017-05-14 21:22:34", "46.118.116.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("55977", "3", "2017-05-14 22:03:30", "46.118.116.168", "5");
INSERT INTO `wp_rg_form_view` VALUES("55978", "10", "2017-05-14 22:04:11", "202.46.50.134", "25");
INSERT INTO `wp_rg_form_view` VALUES("55979", "14", "2017-05-14 23:02:57", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("55980", "3", "2017-05-14 23:44:10", "202.46.56.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("55981", "10", "2017-05-14 23:44:12", "202.46.56.134", "17");
INSERT INTO `wp_rg_form_view` VALUES("55982", "10", "2017-05-15 00:06:28", "35.184.189.105", "67");
INSERT INTO `wp_rg_form_view` VALUES("55983", "3", "2017-05-15 00:06:29", "35.184.189.105", "50");
INSERT INTO `wp_rg_form_view` VALUES("55984", "6", "2017-05-15 00:22:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55985", "9", "2017-05-15 00:22:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("55986", "8", "2017-05-15 00:22:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("55987", "13", "2017-05-15 00:22:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("55988", "15", "2017-05-15 00:22:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("55989", "10", "2017-05-15 01:20:16", "35.184.189.105", "17");
INSERT INTO `wp_rg_form_view` VALUES("55990", "3", "2017-05-15 01:20:17", "35.184.189.105", "6");
INSERT INTO `wp_rg_form_view` VALUES("55991", "8", "2017-05-15 01:48:59", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55992", "13", "2017-05-15 01:48:59", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55993", "15", "2017-05-15 01:48:59", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("55994", "14", "2017-05-15 02:35:49", "103.39.237.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("55995", "10", "2017-05-15 02:54:55", "24.108.13.92", "17");
INSERT INTO `wp_rg_form_view` VALUES("55996", "3", "2017-05-15 02:57:48", "35.184.189.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("55997", "3", "2017-05-15 04:00:18", "202.46.53.64", "6");
INSERT INTO `wp_rg_form_view` VALUES("55998", "10", "2017-05-15 04:00:19", "202.46.53.64", "33");
INSERT INTO `wp_rg_form_view` VALUES("55999", "3", "2017-05-15 05:30:55", "35.184.189.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("56000", "10", "2017-05-15 05:30:57", "35.184.189.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("56001", "3", "2017-05-15 06:11:31", "46.119.117.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("56002", "3", "2017-05-15 06:11:31", "77.75.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("56003", "3", "2017-05-15 06:11:31", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("56004", "10", "2017-05-15 06:11:35", "77.75.76.161", "24");
INSERT INTO `wp_rg_form_view` VALUES("56005", "11", "2017-05-15 06:43:45", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("56006", "3", "2017-05-15 07:06:54", "77.75.78.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("56007", "10", "2017-05-15 07:06:55", "77.75.78.167", "16");
INSERT INTO `wp_rg_form_view` VALUES("56008", "10", "2017-05-15 08:02:31", "35.184.189.105", "25");
INSERT INTO `wp_rg_form_view` VALUES("56009", "3", "2017-05-15 08:02:34", "35.184.189.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("56010", "3", "2017-05-15 10:21:37", "217.182.132.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("56011", "10", "2017-05-15 10:21:39", "217.182.132.185", "16");
INSERT INTO `wp_rg_form_view` VALUES("56012", "3", "2017-05-15 11:05:32", "35.184.189.105", "12");
INSERT INTO `wp_rg_form_view` VALUES("56013", "10", "2017-05-15 11:05:33", "35.184.189.105", "32");
INSERT INTO `wp_rg_form_view` VALUES("56014", "2", "2017-05-15 11:17:16", "5.62.43.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("56015", "8", "2017-05-15 11:25:14", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("56016", "13", "2017-05-15 11:25:15", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("56017", "15", "2017-05-15 11:25:15", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("56018", "3", "2017-05-15 12:03:11", "35.184.189.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("56019", "10", "2017-05-15 12:03:11", "35.184.189.105", "16");
INSERT INTO `wp_rg_form_view` VALUES("56020", "3", "2017-05-15 13:12:17", "202.46.51.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("56021", "10", "2017-05-15 13:12:19", "202.46.51.89", "16");
INSERT INTO `wp_rg_form_view` VALUES("56022", "2", "2017-05-15 14:11:29", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("56023", "3", "2017-05-15 14:52:18", "202.46.52.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("56024", "10", "2017-05-15 14:52:19", "202.46.52.179", "8");
INSERT INTO `wp_rg_form_view` VALUES("56025", "3", "2017-05-15 16:00:55", "157.55.39.217", "20");
INSERT INTO `wp_rg_form_view` VALUES("56026", "10", "2017-05-15 16:01:01", "157.55.39.217", "68");
INSERT INTO `wp_rg_form_view` VALUES("56027", "3", "2017-05-15 17:01:53", "202.46.54.142", "27");
INSERT INTO `wp_rg_form_view` VALUES("56028", "10", "2017-05-15 17:01:53", "202.46.54.142", "12");
INSERT INTO `wp_rg_form_view` VALUES("56029", "6", "2017-05-15 17:58:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56030", "9", "2017-05-15 17:58:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56031", "8", "2017-05-15 17:58:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56032", "13", "2017-05-15 17:58:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56033", "15", "2017-05-15 17:58:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56034", "3", "2017-05-15 18:14:30", "68.180.228.235", "8");
INSERT INTO `wp_rg_form_view` VALUES("56035", "10", "2017-05-15 18:14:30", "68.180.228.235", "48");
INSERT INTO `wp_rg_form_view` VALUES("56036", "2", "2017-05-15 18:51:24", "5.62.43.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("56037", "3", "2017-05-15 19:06:57", "5.62.43.52", "8");
INSERT INTO `wp_rg_form_view` VALUES("56038", "10", "2017-05-15 19:06:58", "5.62.43.52", "40");
INSERT INTO `wp_rg_form_view` VALUES("56039", "3", "2017-05-15 20:00:32", "66.249.79.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("56040", "10", "2017-05-15 20:00:32", "66.249.79.148", "16");
INSERT INTO `wp_rg_form_view` VALUES("56041", "10", "2017-05-15 21:12:08", "77.75.79.119", "73");
INSERT INTO `wp_rg_form_view` VALUES("56042", "3", "2017-05-15 21:12:13", "77.75.79.119", "11");
INSERT INTO `wp_rg_form_view` VALUES("56043", "3", "2017-05-15 22:09:14", "77.75.79.11", "7");
INSERT INTO `wp_rg_form_view` VALUES("56044", "10", "2017-05-15 22:09:17", "77.75.79.11", "40");
INSERT INTO `wp_rg_form_view` VALUES("56045", "2", "2017-05-15 22:45:50", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("56046", "11", "2017-05-15 22:46:27", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("56047", "3", "2017-05-15 23:01:08", "142.25.113.201", "3");
INSERT INTO `wp_rg_form_view` VALUES("56048", "10", "2017-05-15 23:01:08", "142.25.113.201", "24");
INSERT INTO `wp_rg_form_view` VALUES("56049", "3", "2017-05-16 00:20:56", "217.182.132.21", "4");
INSERT INTO `wp_rg_form_view` VALUES("56050", "10", "2017-05-16 00:20:56", "217.182.132.21", "25");
INSERT INTO `wp_rg_form_view` VALUES("56051", "14", "2017-05-16 00:56:28", "24.108.24.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("56052", "2", "2017-05-16 01:56:06", "24.108.24.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("56053", "3", "2017-05-16 01:59:06", "24.108.24.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("56054", "10", "2017-05-16 01:59:06", "24.108.24.50", "17");
INSERT INTO `wp_rg_form_view` VALUES("56055", "10", "2017-05-16 02:00:09", "24.108.24.50", "26");
INSERT INTO `wp_rg_form_view` VALUES("56056", "3", "2017-05-16 02:00:09", "24.108.24.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("56057", "6", "2017-05-16 02:49:56", "202.46.49.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("56058", "3", "2017-05-16 03:23:18", "202.46.55.124", "5");
INSERT INTO `wp_rg_form_view` VALUES("56059", "10", "2017-05-16 03:23:21", "202.46.55.124", "16");
INSERT INTO `wp_rg_form_view` VALUES("56060", "2", "2017-05-16 03:58:35", "66.249.79.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("56061", "3", "2017-05-16 04:20:57", "217.182.132.33", "31");
INSERT INTO `wp_rg_form_view` VALUES("56062", "10", "2017-05-16 04:20:58", "217.182.132.33", "20");
INSERT INTO `wp_rg_form_view` VALUES("56063", "6", "2017-05-16 04:26:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56064", "9", "2017-05-16 04:26:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56065", "8", "2017-05-16 04:26:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56066", "13", "2017-05-16 04:26:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56067", "15", "2017-05-16 04:26:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56068", "3", "2017-05-16 05:26:25", "40.77.167.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("56069", "10", "2017-05-16 05:26:25", "40.77.167.77", "24");
INSERT INTO `wp_rg_form_view` VALUES("56070", "11", "2017-05-16 06:04:19", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56071", "2", "2017-05-16 06:04:19", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56072", "3", "2017-05-16 06:04:20", "138.197.104.18", "12");
INSERT INTO `wp_rg_form_view` VALUES("56073", "3", "2017-05-16 06:04:20", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56074", "3", "2017-05-16 06:04:20", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56075", "3", "2017-05-16 06:04:20", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56076", "3", "2017-05-16 06:04:20", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56077", "10", "2017-05-16 06:04:35", "138.197.104.18", "95");
INSERT INTO `wp_rg_form_view` VALUES("56078", "10", "2017-05-16 06:04:35", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56079", "10", "2017-05-16 06:04:35", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56080", "10", "2017-05-16 06:04:35", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56081", "10", "2017-05-16 06:04:35", "138.197.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("56082", "3", "2017-05-16 07:14:05", "202.46.54.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("56083", "10", "2017-05-16 07:14:08", "202.46.54.130", "32");
INSERT INTO `wp_rg_form_view` VALUES("56084", "14", "2017-05-16 07:16:14", "96.50.117.220", "4");
INSERT INTO `wp_rg_form_view` VALUES("56085", "11", "2017-05-16 07:19:26", "96.50.117.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("56086", "8", "2017-05-16 07:24:07", "51.255.65.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("56087", "6", "2017-05-16 07:47:20", "202.46.53.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("56088", "3", "2017-05-16 08:04:31", "66.249.79.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("56089", "10", "2017-05-16 08:04:31", "66.249.79.140", "25");
INSERT INTO `wp_rg_form_view` VALUES("56090", "3", "2017-05-16 09:10:05", "40.77.167.43", "3");
INSERT INTO `wp_rg_form_view` VALUES("56091", "10", "2017-05-16 09:10:06", "40.77.167.43", "16");
INSERT INTO `wp_rg_form_view` VALUES("56092", "5", "2017-05-16 10:06:16", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("56093", "3", "2017-05-16 10:06:23", "77.75.79.72", "5");
INSERT INTO `wp_rg_form_view` VALUES("56094", "10", "2017-05-16 10:06:27", "77.75.79.72", "24");
INSERT INTO `wp_rg_form_view` VALUES("56095", "3", "2017-05-16 11:02:19", "77.75.77.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("56096", "10", "2017-05-16 11:02:19", "77.75.77.32", "24");
INSERT INTO `wp_rg_form_view` VALUES("56097", "3", "2017-05-16 12:06:53", "202.46.55.142", "5");
INSERT INTO `wp_rg_form_view` VALUES("56098", "10", "2017-05-16 12:06:57", "202.46.55.142", "16");
INSERT INTO `wp_rg_form_view` VALUES("56099", "3", "2017-05-16 13:04:45", "77.75.78.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("56100", "10", "2017-05-16 13:04:47", "77.75.78.167", "24");
INSERT INTO `wp_rg_form_view` VALUES("56101", "3", "2017-05-16 14:20:11", "202.46.50.199", "2");
INSERT INTO `wp_rg_form_view` VALUES("56102", "10", "2017-05-16 14:20:13", "202.46.50.199", "8");
INSERT INTO `wp_rg_form_view` VALUES("56103", "3", "2017-05-16 15:13:35", "167.114.172.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("56104", "10", "2017-05-16 15:13:37", "167.114.172.223", "16");
INSERT INTO `wp_rg_form_view` VALUES("56105", "2", "2017-05-16 15:13:43", "167.114.172.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("56106", "3", "2017-05-16 16:17:50", "68.180.228.235", "30");
INSERT INTO `wp_rg_form_view` VALUES("56107", "6", "2017-05-16 16:17:55", "68.180.228.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("56108", "9", "2017-05-16 16:17:56", "68.180.228.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("56109", "8", "2017-05-16 16:17:56", "68.180.228.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("56110", "10", "2017-05-16 16:17:57", "68.180.228.235", "29");
INSERT INTO `wp_rg_form_view` VALUES("56111", "13", "2017-05-16 16:17:57", "68.180.228.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("56112", "15", "2017-05-16 16:17:58", "68.180.228.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("56113", "3", "2017-05-16 17:18:15", "46.118.116.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("56114", "3", "2017-05-16 17:18:15", "46.118.116.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("56115", "14", "2017-05-16 17:25:53", "24.69.140.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("56116", "3", "2017-05-16 18:15:20", "184.66.49.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("56117", "10", "2017-05-16 18:15:21", "184.66.49.231", "17");
INSERT INTO `wp_rg_form_view` VALUES("56118", "14", "2017-05-16 18:28:46", "24.69.140.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("56119", "3", "2017-05-16 19:01:37", "217.182.132.177", "13");
INSERT INTO `wp_rg_form_view` VALUES("56120", "10", "2017-05-16 19:01:41", "217.182.132.177", "80");
INSERT INTO `wp_rg_form_view` VALUES("56121", "15", "2017-05-16 19:16:49", "40.77.167.124", "6");
INSERT INTO `wp_rg_form_view` VALUES("56122", "10", "2017-05-16 20:02:49", "148.163.128.145", "65");
INSERT INTO `wp_rg_form_view` VALUES("56123", "3", "2017-05-16 20:02:50", "148.163.128.145", "10");
INSERT INTO `wp_rg_form_view` VALUES("56124", "3", "2017-05-16 21:12:08", "207.194.133.9", "9");
INSERT INTO `wp_rg_form_view` VALUES("56125", "10", "2017-05-16 21:12:10", "207.194.133.9", "75");
INSERT INTO `wp_rg_form_view` VALUES("56126", "14", "2017-05-16 21:34:32", "24.68.144.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("56127", "10", "2017-05-16 22:09:35", "24.68.250.127", "34");
INSERT INTO `wp_rg_form_view` VALUES("56128", "3", "2017-05-16 22:09:36", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("56129", "6", "2017-05-16 22:09:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56130", "9", "2017-05-16 22:09:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56131", "8", "2017-05-16 22:09:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56132", "13", "2017-05-16 22:09:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56133", "15", "2017-05-16 22:09:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56134", "3", "2017-05-16 23:02:11", "154.20.29.44", "28");
INSERT INTO `wp_rg_form_view` VALUES("56135", "10", "2017-05-16 23:02:11", "154.20.29.44", "265");
INSERT INTO `wp_rg_form_view` VALUES("56136", "10", "2017-05-17 00:00:05", "37.187.165.195", "211");
INSERT INTO `wp_rg_form_view` VALUES("56137", "3", "2017-05-17 00:00:05", "37.187.165.195", "27");
INSERT INTO `wp_rg_form_view` VALUES("56138", "11", "2017-05-17 00:41:13", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("56139", "2", "2017-05-17 00:41:16", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("56140", "3", "2017-05-17 01:33:08", "173.252.74.109", "5");
INSERT INTO `wp_rg_form_view` VALUES("56141", "10", "2017-05-17 01:33:09", "173.252.74.109", "18");
INSERT INTO `wp_rg_form_view` VALUES("56142", "10", "2017-05-17 02:14:38", "195.154.172.143", "122");
INSERT INTO `wp_rg_form_view` VALUES("56143", "3", "2017-05-17 02:14:39", "195.154.172.143", "16");
INSERT INTO `wp_rg_form_view` VALUES("56144", "11", "2017-05-17 02:47:59", "79.49.152.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("56145", "2", "2017-05-17 02:48:53", "79.49.152.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("56146", "3", "2017-05-17 03:09:13", "64.180.74.246", "4");
INSERT INTO `wp_rg_form_view` VALUES("56147", "10", "2017-05-17 03:10:19", "66.249.80.20", "21");
INSERT INTO `wp_rg_form_view` VALUES("56148", "10", "2017-05-17 04:03:14", "154.20.33.216", "19");
INSERT INTO `wp_rg_form_view` VALUES("56149", "3", "2017-05-17 04:03:14", "154.20.33.216", "3");
INSERT INTO `wp_rg_form_view` VALUES("56150", "14", "2017-05-17 04:22:33", "1.209.188.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("56151", "14", "2017-05-17 04:22:33", "112.78.1.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("56152", "3", "2017-05-17 05:21:27", "46.118.115.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("56153", "3", "2017-05-17 05:21:27", "46.118.115.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("56154", "10", "2017-05-17 05:23:40", "96.50.6.156", "39");
INSERT INTO `wp_rg_form_view` VALUES("56155", "3", "2017-05-17 06:07:19", "77.75.76.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("56156", "10", "2017-05-17 06:07:20", "77.75.76.168", "28");
INSERT INTO `wp_rg_form_view` VALUES("56157", "12", "2017-05-17 06:20:53", "217.182.132.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("56158", "3", "2017-05-17 07:01:41", "202.46.51.175", "3");
INSERT INTO `wp_rg_form_view` VALUES("56159", "10", "2017-05-17 07:01:42", "202.46.51.175", "27");
INSERT INTO `wp_rg_form_view` VALUES("56160", "3", "2017-05-17 08:08:24", "202.46.54.130", "30");
INSERT INTO `wp_rg_form_view` VALUES("56161", "10", "2017-05-17 08:08:24", "202.46.54.130", "41");
INSERT INTO `wp_rg_form_view` VALUES("56162", "6", "2017-05-17 08:32:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56163", "9", "2017-05-17 08:32:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("56164", "8", "2017-05-17 08:32:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56165", "13", "2017-05-17 08:32:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56166", "15", "2017-05-17 08:32:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56167", "3", "2017-05-17 09:00:15", "68.180.228.235", "5");
INSERT INTO `wp_rg_form_view` VALUES("56168", "10", "2017-05-17 09:00:15", "68.180.228.235", "28");
INSERT INTO `wp_rg_form_view` VALUES("56169", "3", "2017-05-17 10:08:53", "202.46.55.63", "7");
INSERT INTO `wp_rg_form_view` VALUES("56170", "10", "2017-05-17 10:08:55", "202.46.55.63", "27");
INSERT INTO `wp_rg_form_view` VALUES("56171", "3", "2017-05-17 11:26:27", "164.132.161.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("56172", "10", "2017-05-17 11:26:28", "164.132.161.50", "27");
INSERT INTO `wp_rg_form_view` VALUES("56173", "3", "2017-05-17 13:09:55", "66.249.79.140", "8");
INSERT INTO `wp_rg_form_view` VALUES("56174", "10", "2017-05-17 13:09:57", "66.249.79.140", "68");
INSERT INTO `wp_rg_form_view` VALUES("56175", "2", "2017-05-17 14:04:51", "220.181.108.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("56176", "3", "2017-05-17 14:25:37", "40.77.167.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("56177", "10", "2017-05-17 14:25:37", "40.77.167.77", "37");
INSERT INTO `wp_rg_form_view` VALUES("56178", "3", "2017-05-17 15:27:05", "207.46.13.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("56179", "10", "2017-05-17 15:27:06", "207.46.13.42", "9");
INSERT INTO `wp_rg_form_view` VALUES("56180", "3", "2017-05-17 16:11:56", "104.131.16.225", "383");
INSERT INTO `wp_rg_form_view` VALUES("56181", "10", "2017-05-17 16:11:58", "104.131.16.225", "3013");
INSERT INTO `wp_rg_form_view` VALUES("56182", "14", "2017-05-17 16:13:37", "104.131.16.225", "2");
INSERT INTO `wp_rg_form_view` VALUES("56183", "11", "2017-05-17 16:13:47", "104.131.16.225", "3");
INSERT INTO `wp_rg_form_view` VALUES("56184", "6", "2017-05-17 16:20:12", "104.131.16.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("56185", "9", "2017-05-17 16:33:17", "104.131.16.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("56186", "15", "2017-05-17 16:41:57", "104.131.16.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("56187", "2", "2017-05-17 16:58:18", "82.80.230.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56188", "10", "2017-05-17 17:00:00", "82.80.230.228", "10864");
INSERT INTO `wp_rg_form_view` VALUES("56189", "3", "2017-05-17 17:00:01", "82.80.230.228", "1753");
INSERT INTO `wp_rg_form_view` VALUES("56190", "6", "2017-05-17 17:00:45", "82.80.230.228", "5");
INSERT INTO `wp_rg_form_view` VALUES("56191", "6", "2017-05-17 17:00:45", "82.80.230.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56192", "9", "2017-05-17 17:00:47", "82.80.230.228", "7");
INSERT INTO `wp_rg_form_view` VALUES("56193", "8", "2017-05-17 17:00:50", "82.80.230.228", "20");
INSERT INTO `wp_rg_form_view` VALUES("56194", "8", "2017-05-17 17:00:50", "82.80.230.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56195", "13", "2017-05-17 17:00:54", "82.80.230.228", "29");
INSERT INTO `wp_rg_form_view` VALUES("56196", "13", "2017-05-17 17:00:54", "82.80.230.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56197", "15", "2017-05-17 17:00:56", "82.80.230.228", "19");
INSERT INTO `wp_rg_form_view` VALUES("56198", "2", "2017-05-17 17:25:22", "104.131.16.225", "2");
INSERT INTO `wp_rg_form_view` VALUES("56199", "11", "2017-05-17 17:31:38", "138.197.6.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("56200", "10", "2017-05-17 18:03:10", "24.68.250.127", "29");
INSERT INTO `wp_rg_form_view` VALUES("56201", "3", "2017-05-17 18:03:14", "24.68.250.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("56202", "3", "2017-05-17 19:08:41", "46.119.117.60", "8");
INSERT INTO `wp_rg_form_view` VALUES("56203", "3", "2017-05-17 19:08:41", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("56204", "10", "2017-05-17 19:26:35", "40.77.167.77", "18");
INSERT INTO `wp_rg_form_view` VALUES("56205", "13", "2017-05-17 20:04:37", "217.182.132.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("56206", "3", "2017-05-17 20:04:52", "217.182.132.72", "7");
INSERT INTO `wp_rg_form_view` VALUES("56207", "10", "2017-05-17 20:04:53", "217.182.132.72", "37");
INSERT INTO `wp_rg_form_view` VALUES("56208", "3", "2017-05-17 21:31:35", "68.180.228.235", "3");
INSERT INTO `wp_rg_form_view` VALUES("56209", "10", "2017-05-17 21:31:37", "68.180.228.235", "27");
INSERT INTO `wp_rg_form_view` VALUES("56210", "10", "2017-05-17 22:02:46", "209.52.88.11", "47");
INSERT INTO `wp_rg_form_view` VALUES("56211", "3", "2017-05-17 22:02:47", "209.52.88.11", "5");
INSERT INTO `wp_rg_form_view` VALUES("56212", "6", "2017-05-17 22:51:13", "51.255.65.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("56213", "3", "2017-05-17 23:10:07", "68.180.228.235", "20");
INSERT INTO `wp_rg_form_view` VALUES("56214", "10", "2017-05-17 23:10:08", "68.180.228.235", "135");
INSERT INTO `wp_rg_form_view` VALUES("56215", "3", "2017-05-18 00:12:23", "217.182.132.21", "31");
INSERT INTO `wp_rg_form_view` VALUES("56216", "10", "2017-05-18 00:12:24", "217.182.132.21", "55");
INSERT INTO `wp_rg_form_view` VALUES("56217", "6", "2017-05-18 00:59:04", "40.77.167.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("56218", "9", "2017-05-18 00:59:05", "40.77.167.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("56219", "8", "2017-05-18 00:59:05", "40.77.167.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("56220", "13", "2017-05-18 00:59:06", "40.77.167.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("56221", "15", "2017-05-18 00:59:06", "40.77.167.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("56222", "3", "2017-05-18 01:04:15", "40.77.167.43", "9");
INSERT INTO `wp_rg_form_view` VALUES("56223", "10", "2017-05-18 01:04:15", "40.77.167.43", "55");
INSERT INTO `wp_rg_form_view` VALUES("56224", "3", "2017-05-18 02:30:54", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("56225", "6", "2017-05-18 02:30:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56226", "9", "2017-05-18 02:30:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56227", "8", "2017-05-18 02:30:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56228", "10", "2017-05-18 02:30:56", "52.88.109.3", "15");
INSERT INTO `wp_rg_form_view` VALUES("56229", "13", "2017-05-18 02:30:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56230", "15", "2017-05-18 02:30:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56231", "3", "2017-05-18 03:00:36", "5.188.211.40", "34");
INSERT INTO `wp_rg_form_view` VALUES("56232", "10", "2017-05-18 03:00:45", "5.188.211.40", "259");
INSERT INTO `wp_rg_form_view` VALUES("56233", "11", "2017-05-18 03:00:53", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("56234", "2", "2017-05-18 03:00:56", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("56235", "3", "2017-05-18 04:15:20", "202.46.55.150", "8");
INSERT INTO `wp_rg_form_view` VALUES("56236", "10", "2017-05-18 04:15:21", "202.46.55.150", "46");
INSERT INTO `wp_rg_form_view` VALUES("56237", "11", "2017-05-18 04:59:36", "77.75.78.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("56238", "10", "2017-05-18 05:02:09", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("56239", "10", "2017-05-18 06:05:15", "51.255.65.42", "38");
INSERT INTO `wp_rg_form_view` VALUES("56240", "3", "2017-05-18 06:05:19", "51.255.65.42", "5");
INSERT INTO `wp_rg_form_view` VALUES("56241", "6", "2017-05-18 06:45:41", "68.180.228.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("56242", "10", "2017-05-18 07:10:06", "72.14.199.70", "28");
INSERT INTO `wp_rg_form_view` VALUES("56243", "3", "2017-05-18 07:44:14", "202.46.54.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("56244", "3", "2017-05-18 08:04:40", "66.249.79.144", "6");
INSERT INTO `wp_rg_form_view` VALUES("56245", "10", "2017-05-18 08:04:41", "66.249.79.144", "19");
INSERT INTO `wp_rg_form_view` VALUES("56246", "3", "2017-05-18 09:24:14", "202.46.55.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("56247", "10", "2017-05-18 09:24:15", "202.46.55.15", "18");
INSERT INTO `wp_rg_form_view` VALUES("56248", "11", "2017-05-18 09:46:58", "40.77.167.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("56249", "10", "2017-05-18 10:14:56", "51.255.66.124", "37");
INSERT INTO `wp_rg_form_view` VALUES("56250", "3", "2017-05-18 10:14:56", "51.255.66.124", "5");
INSERT INTO `wp_rg_form_view` VALUES("56251", "10", "2017-05-18 11:00:29", "5.188.211.39", "145");
INSERT INTO `wp_rg_form_view` VALUES("56252", "3", "2017-05-18 11:00:29", "5.188.211.39", "25");
INSERT INTO `wp_rg_form_view` VALUES("56253", "3", "2017-05-18 12:02:10", "217.182.132.95", "14");
INSERT INTO `wp_rg_form_view` VALUES("56254", "11", "2017-05-18 12:38:00", "45.63.68.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("56255", "10", "2017-05-18 12:38:03", "45.63.68.97", "72");
INSERT INTO `wp_rg_form_view` VALUES("56256", "2", "2017-05-18 12:39:21", "45.63.68.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("56257", "3", "2017-05-18 13:09:39", "52.88.109.3", "109");
INSERT INTO `wp_rg_form_view` VALUES("56258", "6", "2017-05-18 13:09:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56259", "9", "2017-05-18 13:09:39", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("56260", "8", "2017-05-18 13:09:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("56261", "10", "2017-05-18 13:09:40", "52.88.109.3", "534");
INSERT INTO `wp_rg_form_view` VALUES("56262", "13", "2017-05-18 13:09:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("56263", "15", "2017-05-18 13:09:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56264", "2", "2017-05-18 14:07:31", "66.249.79.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("56265", "3", "2017-05-18 14:13:12", "77.75.77.36", "9");
INSERT INTO `wp_rg_form_view` VALUES("56266", "10", "2017-05-18 14:13:13", "77.75.77.36", "63");
INSERT INTO `wp_rg_form_view` VALUES("56267", "11", "2017-05-18 14:29:13", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("56268", "3", "2017-05-18 15:33:13", "70.67.37.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("56269", "10", "2017-05-18 15:33:15", "70.67.37.131", "28");
INSERT INTO `wp_rg_form_view` VALUES("56270", "2", "2017-05-18 16:06:08", "66.249.79.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("56271", "15", "2017-05-18 16:17:16", "5.188.211.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("56272", "3", "2017-05-18 16:17:16", "5.188.211.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("56273", "10", "2017-05-18 16:17:16", "5.188.211.72", "18");
INSERT INTO `wp_rg_form_view` VALUES("56274", "14", "2017-05-18 17:11:25", "185.104.217.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("56275", "10", "2017-05-18 18:07:47", "217.182.132.76", "28");
INSERT INTO `wp_rg_form_view` VALUES("56276", "3", "2017-05-18 18:08:04", "217.182.132.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("56277", "3", "2017-05-18 19:16:29", "66.249.79.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("56278", "10", "2017-05-18 19:16:32", "66.249.79.148", "27");
INSERT INTO `wp_rg_form_view` VALUES("56279", "3", "2017-05-18 20:07:09", "202.46.51.162", "5");
INSERT INTO `wp_rg_form_view` VALUES("56280", "10", "2017-05-18 20:07:09", "202.46.51.162", "38");
INSERT INTO `wp_rg_form_view` VALUES("56281", "10", "2017-05-18 21:13:45", "202.46.53.17", "28");
INSERT INTO `wp_rg_form_view` VALUES("56282", "3", "2017-05-18 21:13:45", "202.46.53.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("56283", "10", "2017-05-18 22:04:47", "184.66.248.195", "60");
INSERT INTO `wp_rg_form_view` VALUES("56284", "3", "2017-05-18 22:04:47", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56285", "3", "2017-05-18 23:06:47", "164.132.161.7", "15");
INSERT INTO `wp_rg_form_view` VALUES("56286", "10", "2017-05-18 23:06:47", "164.132.161.7", "56");
INSERT INTO `wp_rg_form_view` VALUES("56287", "11", "2017-05-18 23:24:44", "5.188.211.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("56288", "2", "2017-05-18 23:24:48", "5.188.211.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("56289", "3", "2017-05-19 00:00:15", "178.137.4.41", "7");
INSERT INTO `wp_rg_form_view` VALUES("56290", "10", "2017-05-19 00:07:59", "62.221.208.175", "30");
INSERT INTO `wp_rg_form_view` VALUES("56291", "10", "2017-05-19 01:20:46", "184.66.248.195", "206");
INSERT INTO `wp_rg_form_view` VALUES("56292", "3", "2017-05-19 01:32:25", "202.46.48.206", "26");
INSERT INTO `wp_rg_form_view` VALUES("56293", "3", "2017-05-19 02:10:33", "68.180.228.235", "10");
INSERT INTO `wp_rg_form_view` VALUES("56294", "10", "2017-05-19 02:10:33", "68.180.228.235", "77");
INSERT INTO `wp_rg_form_view` VALUES("56295", "3", "2017-05-19 03:07:15", "77.75.78.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("56296", "10", "2017-05-19 03:07:15", "77.75.78.168", "30");
INSERT INTO `wp_rg_form_view` VALUES("56297", "3", "2017-05-19 04:11:14", "104.144.204.208", "26");
INSERT INTO `wp_rg_form_view` VALUES("56298", "10", "2017-05-19 04:11:14", "104.144.204.208", "216");
INSERT INTO `wp_rg_form_view` VALUES("56299", "14", "2017-05-19 04:54:27", "93.119.20.38", "3");
INSERT INTO `wp_rg_form_view` VALUES("56300", "10", "2017-05-19 05:21:30", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56301", "3", "2017-05-19 05:33:22", "207.46.13.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("56302", "13", "2017-05-19 05:52:41", "202.46.57.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("56303", "3", "2017-05-19 06:04:34", "77.75.79.36", "6");
INSERT INTO `wp_rg_form_view` VALUES("56304", "10", "2017-05-19 06:04:35", "77.75.79.36", "38");
INSERT INTO `wp_rg_form_view` VALUES("56305", "11", "2017-05-19 06:24:42", "108.180.117.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("56306", "3", "2017-05-19 07:03:14", "40.77.167.43", "41");
INSERT INTO `wp_rg_form_view` VALUES("56307", "10", "2017-05-19 07:03:14", "40.77.167.43", "71");
INSERT INTO `wp_rg_form_view` VALUES("56308", "6", "2017-05-19 07:11:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56309", "9", "2017-05-19 07:11:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56310", "8", "2017-05-19 07:11:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56311", "13", "2017-05-19 07:11:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56312", "15", "2017-05-19 07:11:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56313", "11", "2017-05-19 07:40:17", "45.55.237.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("56314", "2", "2017-05-19 07:40:18", "45.55.237.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("56315", "10", "2017-05-19 08:21:32", "184.66.248.195", "251");
INSERT INTO `wp_rg_form_view` VALUES("56316", "3", "2017-05-19 08:27:39", "5.188.211.43", "30");
INSERT INTO `wp_rg_form_view` VALUES("56317", "10", "2017-05-19 09:21:36", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56318", "3", "2017-05-19 09:28:17", "202.46.53.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("56319", "3", "2017-05-19 10:01:35", "202.46.48.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("56320", "10", "2017-05-19 10:01:36", "202.46.48.17", "39");
INSERT INTO `wp_rg_form_view` VALUES("56321", "3", "2017-05-19 11:02:42", "46.118.115.89", "6");
INSERT INTO `wp_rg_form_view` VALUES("56322", "10", "2017-05-19 11:21:45", "202.46.57.39", "20");
INSERT INTO `wp_rg_form_view` VALUES("56323", "3", "2017-05-19 12:13:28", "207.46.13.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("56324", "10", "2017-05-19 12:13:28", "207.46.13.42", "21");
INSERT INTO `wp_rg_form_view` VALUES("56325", "3", "2017-05-19 13:09:18", "202.46.56.184", "33");
INSERT INTO `wp_rg_form_view` VALUES("56326", "10", "2017-05-19 13:09:18", "202.46.56.184", "233");
INSERT INTO `wp_rg_form_view` VALUES("56327", "10", "2017-05-19 14:14:19", "68.180.228.235", "39");
INSERT INTO `wp_rg_form_view` VALUES("56328", "3", "2017-05-19 14:14:20", "68.180.228.235", "4");
INSERT INTO `wp_rg_form_view` VALUES("56329", "3", "2017-05-19 15:22:34", "202.46.53.46", "5");
INSERT INTO `wp_rg_form_view` VALUES("56330", "10", "2017-05-19 15:22:35", "202.46.53.46", "20");
INSERT INTO `wp_rg_form_view` VALUES("56331", "10", "2017-05-19 16:23:22", "184.66.248.195", "111");
INSERT INTO `wp_rg_form_view` VALUES("56332", "11", "2017-05-19 16:24:02", "78.22.170.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("56333", "3", "2017-05-19 16:24:09", "78.22.170.42", "13");
INSERT INTO `wp_rg_form_view` VALUES("56334", "2", "2017-05-19 16:25:10", "78.22.170.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("56335", "3", "2017-05-19 17:21:54", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("56336", "6", "2017-05-19 17:21:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56337", "9", "2017-05-19 17:21:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56338", "8", "2017-05-19 17:22:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56339", "10", "2017-05-19 17:22:00", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("56340", "13", "2017-05-19 17:22:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56341", "15", "2017-05-19 17:22:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56342", "3", "2017-05-19 18:02:27", "40.77.167.124", "6");
INSERT INTO `wp_rg_form_view` VALUES("56343", "10", "2017-05-19 18:02:28", "40.77.167.124", "39");
INSERT INTO `wp_rg_form_view` VALUES("56344", "14", "2017-05-19 18:50:40", "24.108.0.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("56345", "10", "2017-05-19 19:00:23", "24.68.248.196", "115");
INSERT INTO `wp_rg_form_view` VALUES("56346", "3", "2017-05-19 19:00:24", "24.68.248.196", "70");
INSERT INTO `wp_rg_form_view` VALUES("56347", "6", "2017-05-19 19:52:18", "5.188.211.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("56348", "9", "2017-05-19 19:52:19", "5.188.211.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("56349", "8", "2017-05-19 19:52:19", "5.188.211.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("56350", "13", "2017-05-19 19:52:20", "5.188.211.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("56351", "15", "2017-05-19 19:52:20", "5.188.211.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("56352", "11", "2017-05-19 19:53:03", "5.188.211.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("56353", "2", "2017-05-19 19:53:05", "5.188.211.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("56354", "10", "2017-05-19 20:18:17", "68.180.228.235", "30");
INSERT INTO `wp_rg_form_view` VALUES("56355", "3", "2017-05-19 20:18:18", "68.180.228.235", "3");
INSERT INTO `wp_rg_form_view` VALUES("56356", "11", "2017-05-19 21:08:36", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56357", "3", "2017-05-19 21:20:46", "164.132.161.42", "6");
INSERT INTO `wp_rg_form_view` VALUES("56358", "10", "2017-05-19 21:20:47", "164.132.161.42", "20");
INSERT INTO `wp_rg_form_view` VALUES("56359", "10", "2017-05-19 22:23:55", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56360", "3", "2017-05-19 22:26:50", "217.182.132.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("56361", "14", "2017-05-19 22:36:50", "143.202.155.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("56362", "15", "2017-05-19 22:46:35", "202.46.50.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("56363", "9", "2017-05-19 23:16:29", "217.182.132.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("56364", "3", "2017-05-19 23:16:38", "217.182.132.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("56365", "10", "2017-05-19 23:16:39", "217.182.132.70", "58");
INSERT INTO `wp_rg_form_view` VALUES("56366", "13", "2017-05-19 23:53:16", "202.46.58.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("56367", "3", "2017-05-20 00:04:14", "68.180.229.228", "4");
INSERT INTO `wp_rg_form_view` VALUES("56368", "10", "2017-05-20 00:04:14", "68.180.229.228", "40");
INSERT INTO `wp_rg_form_view` VALUES("56369", "11", "2017-05-20 01:10:27", "40.77.167.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("56370", "10", "2017-05-20 01:23:56", "184.66.248.195", "42");
INSERT INTO `wp_rg_form_view` VALUES("56371", "3", "2017-05-20 01:36:00", "77.75.78.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("56372", "10", "2017-05-20 02:24:00", "184.66.248.195", "40");
INSERT INTO `wp_rg_form_view` VALUES("56373", "3", "2017-05-20 02:38:51", "40.77.167.124", "5");
INSERT INTO `wp_rg_form_view` VALUES("56374", "10", "2017-05-20 03:23:56", "184.66.248.195", "1271");
INSERT INTO `wp_rg_form_view` VALUES("56375", "3", "2017-05-20 03:29:48", "51.255.71.118", "188");
INSERT INTO `wp_rg_form_view` VALUES("56376", "11", "2017-05-20 03:33:28", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("56377", "2", "2017-05-20 03:33:32", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("56378", "14", "2017-05-20 03:34:53", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("56379", "15", "2017-05-20 03:37:24", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("56380", "13", "2017-05-20 03:41:33", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("56381", "8", "2017-05-20 03:42:36", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("56382", "9", "2017-05-20 03:42:48", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("56383", "6", "2017-05-20 03:43:55", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("56384", "10", "2017-05-20 04:00:02", "5.9.98.130", "2956");
INSERT INTO `wp_rg_form_view` VALUES("56385", "3", "2017-05-20 04:00:03", "5.9.98.130", "392");
INSERT INTO `wp_rg_form_view` VALUES("56386", "3", "2017-05-20 05:00:07", "5.9.98.130", "441");
INSERT INTO `wp_rg_form_view` VALUES("56387", "10", "2017-05-20 05:00:07", "5.9.98.130", "2896");
INSERT INTO `wp_rg_form_view` VALUES("56388", "8", "2017-05-20 05:14:04", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56389", "13", "2017-05-20 05:14:06", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56390", "15", "2017-05-20 05:14:07", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56391", "11", "2017-05-20 05:19:19", "5.188.211.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("56392", "2", "2017-05-20 05:19:23", "5.188.211.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("56393", "10", "2017-05-20 06:00:00", "5.9.98.130", "3518");
INSERT INTO `wp_rg_form_view` VALUES("56394", "3", "2017-05-20 06:00:05", "5.9.98.130", "383");
INSERT INTO `wp_rg_form_view` VALUES("56395", "3", "2017-05-20 07:00:02", "5.9.98.130", "581");
INSERT INTO `wp_rg_form_view` VALUES("56396", "10", "2017-05-20 07:00:02", "5.9.98.130", "3513");
INSERT INTO `wp_rg_form_view` VALUES("56397", "10", "2017-05-20 08:00:02", "5.9.98.130", "4072");
INSERT INTO `wp_rg_form_view` VALUES("56398", "3", "2017-05-20 08:00:03", "5.9.98.130", "436");
INSERT INTO `wp_rg_form_view` VALUES("56399", "3", "2017-05-20 09:00:01", "5.9.98.130", "275");
INSERT INTO `wp_rg_form_view` VALUES("56400", "10", "2017-05-20 09:00:02", "5.9.98.130", "2468");
INSERT INTO `wp_rg_form_view` VALUES("56401", "11", "2017-05-20 09:47:28", "2.228.138.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("56402", "2", "2017-05-20 09:48:29", "2.228.138.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("56403", "3", "2017-05-20 10:02:10", "202.46.48.147", "327");
INSERT INTO `wp_rg_form_view` VALUES("56404", "10", "2017-05-20 10:02:18", "202.46.48.147", "2927");
INSERT INTO `wp_rg_form_view` VALUES("56405", "9", "2017-05-20 10:30:02", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("56406", "3", "2017-05-20 11:03:28", "164.132.161.94", "824");
INSERT INTO `wp_rg_form_view` VALUES("56407", "10", "2017-05-20 11:03:28", "164.132.161.94", "3761");
INSERT INTO `wp_rg_form_view` VALUES("56408", "6", "2017-05-20 11:31:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56409", "9", "2017-05-20 11:31:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56410", "8", "2017-05-20 11:31:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56411", "13", "2017-05-20 11:31:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56412", "15", "2017-05-20 11:31:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56413", "10", "2017-05-20 12:00:00", "5.9.98.130", "3562");
INSERT INTO `wp_rg_form_view` VALUES("56414", "3", "2017-05-20 12:00:01", "5.9.98.130", "356");
INSERT INTO `wp_rg_form_view` VALUES("56415", "3", "2017-05-20 13:08:39", "5.9.98.130", "515");
INSERT INTO `wp_rg_form_view` VALUES("56416", "10", "2017-05-20 13:08:39", "5.9.98.130", "4617");
INSERT INTO `wp_rg_form_view` VALUES("56417", "14", "2017-05-20 13:39:50", "80.243.181.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("56418", "10", "2017-05-20 14:00:00", "5.9.98.130", "4700");
INSERT INTO `wp_rg_form_view` VALUES("56419", "3", "2017-05-20 14:00:04", "5.9.98.130", "524");
INSERT INTO `wp_rg_form_view` VALUES("56420", "14", "2017-05-20 14:10:57", "88.150.182.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("56421", "10", "2017-05-20 15:00:00", "5.9.98.130", "554");
INSERT INTO `wp_rg_form_view` VALUES("56422", "3", "2017-05-20 15:00:04", "5.9.98.130", "63");
INSERT INTO `wp_rg_form_view` VALUES("56423", "11", "2017-05-20 15:05:41", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("56424", "2", "2017-05-20 15:05:44", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("56425", "3", "2017-05-20 16:08:52", "46.118.115.89", "366");
INSERT INTO `wp_rg_form_view` VALUES("56426", "3", "2017-05-20 16:08:52", "46.118.115.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("56427", "10", "2017-05-20 16:18:28", "5.9.98.130", "3270");
INSERT INTO `wp_rg_form_view` VALUES("56428", "14", "2017-05-20 16:59:29", "51.255.65.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("56429", "10", "2017-05-20 17:00:00", "5.9.98.130", "2549");
INSERT INTO `wp_rg_form_view` VALUES("56430", "3", "2017-05-20 17:00:07", "5.9.98.130", "283");
INSERT INTO `wp_rg_form_view` VALUES("56431", "3", "2017-05-20 18:04:55", "107.170.16.250", "9");
INSERT INTO `wp_rg_form_view` VALUES("56432", "10", "2017-05-20 18:04:55", "107.170.16.250", "74");
INSERT INTO `wp_rg_form_view` VALUES("56433", "3", "2017-05-20 19:03:21", "46.118.116.168", "17");
INSERT INTO `wp_rg_form_view` VALUES("56434", "10", "2017-05-20 19:19:38", "162.221.207.214", "66");
INSERT INTO `wp_rg_form_view` VALUES("56435", "11", "2017-05-20 19:20:11", "162.221.207.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("56436", "2", "2017-05-20 19:34:35", "138.197.66.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("56437", "3", "2017-05-20 20:02:56", "5.9.98.130", "702");
INSERT INTO `wp_rg_form_view` VALUES("56438", "10", "2017-05-20 20:02:58", "5.9.98.130", "3152");
INSERT INTO `wp_rg_form_view` VALUES("56439", "3", "2017-05-20 21:00:00", "5.9.98.130", "705");
INSERT INTO `wp_rg_form_view` VALUES("56440", "10", "2017-05-20 21:00:00", "5.9.98.130", "3198");
INSERT INTO `wp_rg_form_view` VALUES("56441", "2", "2017-05-20 21:05:12", "51.255.71.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("56442", "11", "2017-05-20 21:12:00", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("56443", "3", "2017-05-20 22:00:02", "5.9.98.130", "475");
INSERT INTO `wp_rg_form_view` VALUES("56444", "10", "2017-05-20 22:00:03", "5.9.98.130", "3426");
INSERT INTO `wp_rg_form_view` VALUES("56445", "6", "2017-05-20 22:04:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("56446", "9", "2017-05-20 22:05:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("56447", "8", "2017-05-20 22:05:02", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("56448", "13", "2017-05-20 22:05:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("56449", "15", "2017-05-20 22:05:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("56450", "11", "2017-05-20 22:43:47", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("56451", "2", "2017-05-20 22:43:50", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("56452", "10", "2017-05-20 23:00:04", "5.9.98.130", "3490");
INSERT INTO `wp_rg_form_view` VALUES("56453", "3", "2017-05-20 23:00:05", "5.9.98.130", "350");
INSERT INTO `wp_rg_form_view` VALUES("56454", "14", "2017-05-20 23:28:47", "40.77.167.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("56455", "10", "2017-05-21 00:00:03", "5.9.98.130", "1519");
INSERT INTO `wp_rg_form_view` VALUES("56456", "3", "2017-05-21 00:00:04", "5.9.98.130", "159");
INSERT INTO `wp_rg_form_view` VALUES("56457", "3", "2017-05-21 01:04:34", "178.137.4.41", "388");
INSERT INTO `wp_rg_form_view` VALUES("56458", "10", "2017-05-21 01:23:56", "184.66.248.195", "3449");
INSERT INTO `wp_rg_form_view` VALUES("56459", "3", "2017-05-21 02:00:00", "5.9.98.130", "509");
INSERT INTO `wp_rg_form_view` VALUES("56460", "10", "2017-05-21 02:00:00", "5.9.98.130", "4555");
INSERT INTO `wp_rg_form_view` VALUES("56461", "10", "2017-05-21 03:00:00", "5.9.98.130", "3929");
INSERT INTO `wp_rg_form_view` VALUES("56462", "3", "2017-05-21 03:00:06", "5.9.98.130", "436");
INSERT INTO `wp_rg_form_view` VALUES("56463", "3", "2017-05-21 04:00:01", "5.9.98.130", "436");
INSERT INTO `wp_rg_form_view` VALUES("56464", "10", "2017-05-21 04:00:01", "5.9.98.130", "3923");
INSERT INTO `wp_rg_form_view` VALUES("56465", "10", "2017-05-21 05:00:00", "5.9.98.130", "3766");
INSERT INTO `wp_rg_form_view` VALUES("56466", "3", "2017-05-21 05:00:07", "5.9.98.130", "444");
INSERT INTO `wp_rg_form_view` VALUES("56467", "13", "2017-05-21 05:10:56", "51.255.65.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("56468", "6", "2017-05-21 05:28:48", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("56469", "9", "2017-05-21 05:28:50", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("56470", "8", "2017-05-21 05:28:50", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("56471", "15", "2017-05-21 05:28:55", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("56472", "14", "2017-05-21 05:53:45", "24.68.227.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("56473", "3", "2017-05-21 06:00:04", "5.9.98.130", "13");
INSERT INTO `wp_rg_form_view` VALUES("56474", "10", "2017-05-21 06:00:04", "5.9.98.130", "110");
INSERT INTO `wp_rg_form_view` VALUES("56475", "14", "2017-05-21 06:03:55", "83.143.242.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("56476", "10", "2017-05-21 07:23:58", "184.66.248.195", "305");
INSERT INTO `wp_rg_form_view` VALUES("56477", "3", "2017-05-21 07:41:02", "202.46.55.157", "46");
INSERT INTO `wp_rg_form_view` VALUES("56478", "11", "2017-05-21 07:49:12", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("56479", "2", "2017-05-21 07:49:21", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("56480", "14", "2017-05-21 07:57:52", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("56481", "3", "2017-05-21 08:00:09", "94.199.151.22", "197");
INSERT INTO `wp_rg_form_view` VALUES("56482", "10", "2017-05-21 08:00:10", "94.199.151.22", "990");
INSERT INTO `wp_rg_form_view` VALUES("56483", "6", "2017-05-21 08:10:43", "94.199.151.22", "6");
INSERT INTO `wp_rg_form_view` VALUES("56484", "9", "2017-05-21 08:10:43", "94.199.151.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("56485", "8", "2017-05-21 08:10:44", "94.199.151.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("56486", "13", "2017-05-21 08:10:44", "94.199.151.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("56487", "15", "2017-05-21 08:10:45", "94.199.151.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("56488", "11", "2017-05-21 08:14:52", "46.229.168.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("56489", "3", "2017-05-21 09:16:19", "178.137.4.41", "246");
INSERT INTO `wp_rg_form_view` VALUES("56490", "10", "2017-05-21 09:20:53", "5.188.211.37", "2162");
INSERT INTO `wp_rg_form_view` VALUES("56491", "11", "2017-05-21 09:21:04", "5.188.211.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("56492", "2", "2017-05-21 09:21:09", "5.188.211.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("56493", "14", "2017-05-21 09:23:44", "62.210.79.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("56494", "3", "2017-05-21 10:00:05", "5.9.98.130", "349");
INSERT INTO `wp_rg_form_view` VALUES("56495", "10", "2017-05-21 10:00:05", "5.9.98.130", "3144");
INSERT INTO `wp_rg_form_view` VALUES("56496", "11", "2017-05-21 10:50:03", "40.77.167.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("56497", "3", "2017-05-21 11:00:02", "5.9.98.130", "399");
INSERT INTO `wp_rg_form_view` VALUES("56498", "10", "2017-05-21 11:00:02", "5.9.98.130", "3418");
INSERT INTO `wp_rg_form_view` VALUES("56499", "9", "2017-05-21 11:14:31", "40.77.167.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("56500", "13", "2017-05-21 11:15:19", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("56501", "8", "2017-05-21 11:15:23", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("56502", "2", "2017-05-21 11:21:08", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("56503", "14", "2017-05-21 11:59:43", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56504", "3", "2017-05-21 12:00:08", "5.9.98.130", "359");
INSERT INTO `wp_rg_form_view` VALUES("56505", "10", "2017-05-21 12:00:08", "5.9.98.130", "3233");
INSERT INTO `wp_rg_form_view` VALUES("56506", "14", "2017-05-21 12:46:37", "23.250.78.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("56507", "3", "2017-05-21 13:00:01", "5.9.98.130", "16");
INSERT INTO `wp_rg_form_view` VALUES("56508", "10", "2017-05-21 13:00:01", "5.9.98.130", "120");
INSERT INTO `wp_rg_form_view` VALUES("56509", "11", "2017-05-21 13:18:20", "45.63.68.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("56510", "2", "2017-05-21 13:19:52", "45.63.68.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("56511", "3", "2017-05-21 14:02:03", "46.185.71.194", "4");
INSERT INTO `wp_rg_form_view` VALUES("56512", "10", "2017-05-21 14:23:57", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56513", "3", "2017-05-21 15:14:12", "5.9.98.130", "22");
INSERT INTO `wp_rg_form_view` VALUES("56514", "10", "2017-05-21 15:14:13", "5.9.98.130", "88");
INSERT INTO `wp_rg_form_view` VALUES("56515", "15", "2017-05-21 15:37:15", "66.249.79.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("56516", "13", "2017-05-21 15:57:33", "66.249.79.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("56517", "14", "2017-05-21 16:05:13", "88.150.182.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("56518", "3", "2017-05-21 16:23:38", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("56519", "6", "2017-05-21 16:23:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56520", "9", "2017-05-21 16:23:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56521", "8", "2017-05-21 16:23:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56522", "10", "2017-05-21 16:23:39", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("56523", "13", "2017-05-21 16:23:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56524", "15", "2017-05-21 16:23:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56525", "3", "2017-05-21 17:00:08", "24.69.156.108", "4");
INSERT INTO `wp_rg_form_view` VALUES("56526", "10", "2017-05-21 17:00:08", "24.69.156.108", "39");
INSERT INTO `wp_rg_form_view` VALUES("56527", "14", "2017-05-21 17:00:54", "185.104.219.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("56528", "3", "2017-05-21 18:09:25", "46.118.115.89", "5");
INSERT INTO `wp_rg_form_view` VALUES("56529", "10", "2017-05-21 18:23:58", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("56530", "10", "2017-05-21 19:24:00", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("56531", "3", "2017-05-21 19:25:39", "66.249.79.112", "4");
INSERT INTO `wp_rg_form_view` VALUES("56532", "12", "2017-05-21 19:43:07", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("56533", "3", "2017-05-21 20:20:03", "164.132.161.59", "3");
INSERT INTO `wp_rg_form_view` VALUES("56534", "10", "2017-05-21 20:20:03", "164.132.161.59", "20");
INSERT INTO `wp_rg_form_view` VALUES("56535", "3", "2017-05-21 21:11:08", "46.118.155.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("56536", "10", "2017-05-21 21:16:11", "66.249.79.108", "11");
INSERT INTO `wp_rg_form_view` VALUES("56537", "10", "2017-05-21 22:13:12", "217.182.132.5", "12");
INSERT INTO `wp_rg_form_view` VALUES("56538", "3", "2017-05-21 22:13:14", "217.182.132.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("56539", "3", "2017-05-21 23:06:18", "202.46.57.172", "10");
INSERT INTO `wp_rg_form_view` VALUES("56540", "10", "2017-05-21 23:06:18", "202.46.57.172", "83");
INSERT INTO `wp_rg_form_view` VALUES("56541", "11", "2017-05-21 23:16:59", "45.63.68.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("56542", "2", "2017-05-21 23:20:01", "45.63.68.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("56543", "10", "2017-05-22 00:23:58", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56544", "3", "2017-05-22 00:50:11", "164.132.161.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("56545", "3", "2017-05-22 01:01:38", "164.132.161.18", "9");
INSERT INTO `wp_rg_form_view` VALUES("56546", "10", "2017-05-22 01:01:38", "164.132.161.18", "65");
INSERT INTO `wp_rg_form_view` VALUES("56547", "14", "2017-05-22 01:18:16", "207.164.255.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("56548", "10", "2017-05-22 02:23:58", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("56549", "3", "2017-05-22 02:56:01", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("56550", "6", "2017-05-22 02:56:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56551", "9", "2017-05-22 02:56:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56552", "8", "2017-05-22 02:56:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56553", "13", "2017-05-22 02:56:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56554", "15", "2017-05-22 02:56:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56555", "10", "2017-05-22 03:23:58", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("56556", "3", "2017-05-22 04:17:24", "66.249.79.104", "22");
INSERT INTO `wp_rg_form_view` VALUES("56557", "10", "2017-05-22 04:17:24", "66.249.79.104", "26");
INSERT INTO `wp_rg_form_view` VALUES("56558", "8", "2017-05-22 04:28:58", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56559", "13", "2017-05-22 04:28:58", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56560", "15", "2017-05-22 04:28:59", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56561", "3", "2017-05-22 05:10:09", "202.46.49.64", "6");
INSERT INTO `wp_rg_form_view` VALUES("56562", "10", "2017-05-22 05:10:09", "202.46.49.64", "21");
INSERT INTO `wp_rg_form_view` VALUES("56563", "8", "2017-05-22 05:42:02", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("56564", "13", "2017-05-22 05:42:02", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("56565", "3", "2017-05-22 06:16:49", "202.46.55.60", "12");
INSERT INTO `wp_rg_form_view` VALUES("56566", "10", "2017-05-22 06:16:50", "202.46.55.60", "66");
INSERT INTO `wp_rg_form_view` VALUES("56567", "2", "2017-05-22 06:38:56", "45.55.255.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("56568", "11", "2017-05-22 06:38:56", "45.55.255.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("56569", "10", "2017-05-22 07:24:01", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56570", "3", "2017-05-22 07:33:16", "77.75.76.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("56571", "10", "2017-05-22 08:23:58", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56572", "3", "2017-05-22 08:49:58", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("56573", "10", "2017-05-22 09:23:58", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56574", "3", "2017-05-22 09:24:26", "217.182.132.29", "4");
INSERT INTO `wp_rg_form_view` VALUES("56575", "10", "2017-05-22 10:04:05", "217.182.132.75", "23");
INSERT INTO `wp_rg_form_view` VALUES("56576", "3", "2017-05-22 10:04:05", "217.182.132.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("56577", "12", "2017-05-22 11:03:47", "202.46.50.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("56578", "3", "2017-05-22 11:03:48", "202.46.50.180", "5");
INSERT INTO `wp_rg_form_view` VALUES("56579", "10", "2017-05-22 11:03:49", "202.46.50.180", "20");
INSERT INTO `wp_rg_form_view` VALUES("56580", "15", "2017-05-22 11:49:20", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("56581", "3", "2017-05-22 12:10:26", "202.46.56.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("56582", "10", "2017-05-22 12:10:26", "202.46.56.15", "30");
INSERT INTO `wp_rg_form_view` VALUES("56583", "3", "2017-05-22 13:21:45", "66.249.79.108", "9");
INSERT INTO `wp_rg_form_view` VALUES("56584", "10", "2017-05-22 13:21:45", "66.249.79.108", "34");
INSERT INTO `wp_rg_form_view` VALUES("56585", "13", "2017-05-22 13:36:16", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56586", "15", "2017-05-22 13:36:16", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56587", "3", "2017-05-22 14:17:40", "207.46.13.42", "5");
INSERT INTO `wp_rg_form_view` VALUES("56588", "10", "2017-05-22 14:17:40", "207.46.13.42", "38");
INSERT INTO `wp_rg_form_view` VALUES("56589", "3", "2017-05-22 15:10:54", "66.249.79.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("56590", "10", "2017-05-22 15:10:54", "66.249.79.108", "20");
INSERT INTO `wp_rg_form_view` VALUES("56591", "3", "2017-05-22 16:02:57", "77.75.76.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("56592", "10", "2017-05-22 16:02:57", "77.75.76.160", "29");
INSERT INTO `wp_rg_form_view` VALUES("56593", "12", "2017-05-22 16:13:42", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("56594", "10", "2017-05-22 17:23:59", "184.66.248.195", "74");
INSERT INTO `wp_rg_form_view` VALUES("56595", "11", "2017-05-22 17:34:18", "24.97.160.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("56596", "3", "2017-05-22 17:34:23", "24.97.160.155", "11");
INSERT INTO `wp_rg_form_view` VALUES("56597", "2", "2017-05-22 17:35:03", "24.97.160.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("56598", "3", "2017-05-22 18:13:20", "209.52.88.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("56599", "10", "2017-05-22 18:13:20", "209.52.88.22", "29");
INSERT INTO `wp_rg_form_view` VALUES("56600", "14", "2017-05-22 18:16:36", "185.104.217.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("56601", "3", "2017-05-22 19:14:42", "184.169.148.226", "24");
INSERT INTO `wp_rg_form_view` VALUES("56602", "10", "2017-05-22 19:14:42", "184.169.148.226", "130");
INSERT INTO `wp_rg_form_view` VALUES("56603", "3", "2017-05-22 20:08:00", "46.118.116.168", "10");
INSERT INTO `wp_rg_form_view` VALUES("56604", "10", "2017-05-22 20:11:17", "207.46.13.42", "21");
INSERT INTO `wp_rg_form_view` VALUES("56605", "3", "2017-05-22 21:17:28", "202.46.51.83", "31");
INSERT INTO `wp_rg_form_view` VALUES("56606", "10", "2017-05-22 21:17:31", "202.46.51.83", "27");
INSERT INTO `wp_rg_form_view` VALUES("56607", "6", "2017-05-22 21:27:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56608", "9", "2017-05-22 21:27:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56609", "8", "2017-05-22 21:27:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56610", "13", "2017-05-22 21:27:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56611", "15", "2017-05-22 21:27:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56612", "3", "2017-05-22 22:02:49", "51.255.65.42", "5");
INSERT INTO `wp_rg_form_view` VALUES("56613", "10", "2017-05-22 22:02:49", "51.255.65.42", "21");
INSERT INTO `wp_rg_form_view` VALUES("56614", "3", "2017-05-22 23:18:55", "75.157.130.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("56615", "10", "2017-05-22 23:18:58", "75.157.130.176", "20");
INSERT INTO `wp_rg_form_view` VALUES("56616", "10", "2017-05-23 00:07:06", "72.14.199.152", "12");
INSERT INTO `wp_rg_form_view` VALUES("56617", "14", "2017-05-23 00:12:46", "146.0.74.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("56618", "3", "2017-05-23 00:16:53", "202.46.51.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("56619", "10", "2017-05-23 01:23:59", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("56620", "3", "2017-05-23 01:57:13", "46.118.155.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("56621", "3", "2017-05-23 02:20:54", "202.46.48.91", "5");
INSERT INTO `wp_rg_form_view` VALUES("56622", "10", "2017-05-23 02:20:54", "202.46.48.91", "29");
INSERT INTO `wp_rg_form_view` VALUES("56623", "10", "2017-05-23 03:23:59", "184.66.248.195", "39");
INSERT INTO `wp_rg_form_view` VALUES("56624", "3", "2017-05-23 03:27:16", "66.249.79.108", "6");
INSERT INTO `wp_rg_form_view` VALUES("56625", "6", "2017-05-23 03:27:56", "66.249.79.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("56626", "15", "2017-05-23 04:00:53", "202.46.58.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("56627", "3", "2017-05-23 04:00:53", "202.46.58.194", "14");
INSERT INTO `wp_rg_form_view` VALUES("56628", "10", "2017-05-23 04:00:53", "202.46.58.194", "111");
INSERT INTO `wp_rg_form_view` VALUES("56629", "6", "2017-05-23 04:03:24", "66.249.79.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("56630", "11", "2017-05-23 04:30:20", "192.69.91.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("56631", "2", "2017-05-23 04:30:55", "192.69.91.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("56632", "10", "2017-05-23 05:24:02", "184.66.248.195", "263");
INSERT INTO `wp_rg_form_view` VALUES("56633", "3", "2017-05-23 05:27:15", "217.182.132.186", "42");
INSERT INTO `wp_rg_form_view` VALUES("56634", "2", "2017-05-23 05:53:20", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("56635", "11", "2017-05-23 05:54:02", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("56636", "9", "2017-05-23 05:54:31", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("56637", "6", "2017-05-23 05:55:29", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("56638", "14", "2017-05-23 05:56:06", "47.150.129.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("56639", "10", "2017-05-23 06:24:02", "184.66.248.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("56640", "3", "2017-05-23 06:27:37", "217.182.132.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("56641", "3", "2017-05-23 07:12:18", "77.75.76.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("56642", "10", "2017-05-23 07:12:18", "77.75.76.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("56643", "10", "2017-05-23 08:05:13", "77.75.78.172", "44");
INSERT INTO `wp_rg_form_view` VALUES("56644", "3", "2017-05-23 08:05:14", "77.75.78.172", "32");
INSERT INTO `wp_rg_form_view` VALUES("56645", "6", "2017-05-23 08:09:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56646", "9", "2017-05-23 08:09:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56647", "8", "2017-05-23 08:09:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56648", "13", "2017-05-23 08:09:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56649", "15", "2017-05-23 08:09:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56650", "10", "2017-05-23 09:24:00", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56651", "2", "2017-05-23 09:55:19", "142.4.218.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("56652", "3", "2017-05-23 09:55:23", "142.4.218.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("56653", "10", "2017-05-23 10:15:22", "34.206.145.199", "21");
INSERT INTO `wp_rg_form_view` VALUES("56654", "3", "2017-05-23 10:15:22", "34.206.145.199", "3");
INSERT INTO `wp_rg_form_view` VALUES("56655", "14", "2017-05-23 10:26:08", "198.71.87.205", "3");
INSERT INTO `wp_rg_form_view` VALUES("56656", "3", "2017-05-23 11:09:57", "46.119.117.60", "7");
INSERT INTO `wp_rg_form_view` VALUES("56657", "10", "2017-05-23 11:22:44", "77.75.76.169", "29");
INSERT INTO `wp_rg_form_view` VALUES("56658", "10", "2017-05-23 12:24:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("56659", "3", "2017-05-23 13:04:18", "202.46.55.123", "4");
INSERT INTO `wp_rg_form_view` VALUES("56660", "10", "2017-05-23 13:04:19", "202.46.55.123", "30");
INSERT INTO `wp_rg_form_view` VALUES("56661", "3", "2017-05-23 14:05:20", "40.77.167.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("56662", "10", "2017-05-23 14:05:22", "40.77.167.93", "20");
INSERT INTO `wp_rg_form_view` VALUES("56663", "11", "2017-05-23 14:27:09", "202.46.54.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("56664", "3", "2017-05-23 15:00:29", "202.46.52.205", "7");
INSERT INTO `wp_rg_form_view` VALUES("56665", "10", "2017-05-23 15:00:29", "202.46.52.205", "20");
INSERT INTO `wp_rg_form_view` VALUES("56666", "3", "2017-05-23 16:03:48", "142.25.113.201", "14");
INSERT INTO `wp_rg_form_view` VALUES("56667", "10", "2017-05-23 16:03:48", "142.25.113.201", "110");
INSERT INTO `wp_rg_form_view` VALUES("56668", "6", "2017-05-23 16:07:09", "202.46.49.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("56669", "11", "2017-05-23 16:32:07", "217.122.185.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("56670", "2", "2017-05-23 16:32:57", "217.122.185.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("56671", "3", "2017-05-23 17:20:19", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("56672", "10", "2017-05-23 17:24:40", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("56673", "11", "2017-05-23 18:07:17", "159.203.111.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("56674", "2", "2017-05-23 18:07:18", "159.203.111.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("56675", "3", "2017-05-23 18:07:18", "159.203.111.218", "17");
INSERT INTO `wp_rg_form_view` VALUES("56676", "10", "2017-05-23 18:07:21", "159.203.111.218", "113");
INSERT INTO `wp_rg_form_view` VALUES("56677", "15", "2017-05-23 18:34:22", "70.27.177.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("56678", "10", "2017-05-23 19:25:11", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56679", "3", "2017-05-23 19:42:49", "164.132.161.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("56680", "3", "2017-05-23 20:04:27", "46.118.115.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("56681", "3", "2017-05-23 20:04:27", "46.118.115.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("56682", "3", "2017-05-23 20:04:27", "46.118.115.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("56683", "10", "2017-05-23 20:24:35", "207.46.13.152", "22");
INSERT INTO `wp_rg_form_view` VALUES("56684", "3", "2017-05-23 21:05:41", "217.182.132.36", "8");
INSERT INTO `wp_rg_form_view` VALUES("56685", "10", "2017-05-23 21:05:42", "217.182.132.36", "29");
INSERT INTO `wp_rg_form_view` VALUES("56686", "10", "2017-05-23 22:25:11", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56687", "3", "2017-05-23 22:55:30", "202.46.51.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("56688", "14", "2017-05-23 23:05:14", "184.71.18.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("56689", "10", "2017-05-23 23:23:13", "199.16.157.181", "21");
INSERT INTO `wp_rg_form_view` VALUES("56690", "3", "2017-05-23 23:23:13", "199.16.157.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("56691", "10", "2017-05-24 00:25:12", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56692", "3", "2017-05-24 00:27:41", "202.46.48.18", "4");
INSERT INTO `wp_rg_form_view` VALUES("56693", "10", "2017-05-24 01:25:12", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("56694", "3", "2017-05-24 02:12:52", "199.21.99.202", "29");
INSERT INTO `wp_rg_form_view` VALUES("56695", "10", "2017-05-24 02:12:53", "199.21.99.202", "26");
INSERT INTO `wp_rg_form_view` VALUES("56696", "6", "2017-05-24 02:53:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56697", "9", "2017-05-24 02:53:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56698", "8", "2017-05-24 02:53:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56699", "13", "2017-05-24 02:53:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56700", "15", "2017-05-24 02:53:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56701", "10", "2017-05-24 03:09:30", "164.132.161.66", "21");
INSERT INTO `wp_rg_form_view` VALUES("56702", "3", "2017-05-24 03:09:30", "164.132.161.66", "4");
INSERT INTO `wp_rg_form_view` VALUES("56703", "11", "2017-05-24 03:28:43", "202.46.49.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("56704", "10", "2017-05-24 04:18:22", "72.14.199.74", "31");
INSERT INTO `wp_rg_form_view` VALUES("56705", "3", "2017-05-24 04:35:24", "202.46.51.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("56706", "14", "2017-05-24 04:36:47", "94.103.80.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("56707", "10", "2017-05-24 05:25:13", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("56708", "3", "2017-05-24 05:27:49", "66.249.79.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("56709", "3", "2017-05-24 06:08:55", "202.46.56.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("56710", "10", "2017-05-24 06:08:55", "202.46.56.130", "11");
INSERT INTO `wp_rg_form_view` VALUES("56711", "3", "2017-05-24 07:00:10", "51.255.65.224", "4");
INSERT INTO `wp_rg_form_view` VALUES("56712", "10", "2017-05-24 07:00:12", "51.255.65.224", "20");
INSERT INTO `wp_rg_form_view` VALUES("56713", "3", "2017-05-24 08:12:13", "202.46.57.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("56714", "10", "2017-05-24 08:12:14", "202.46.57.71", "21");
INSERT INTO `wp_rg_form_view` VALUES("56715", "3", "2017-05-24 09:18:53", "202.46.55.18", "9");
INSERT INTO `wp_rg_form_view` VALUES("56716", "10", "2017-05-24 09:18:54", "202.46.55.18", "47");
INSERT INTO `wp_rg_form_view` VALUES("56717", "10", "2017-05-24 10:25:14", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56718", "7", "2017-05-24 10:58:52", "202.46.49.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("56719", "3", "2017-05-24 10:58:54", "202.46.49.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("56720", "3", "2017-05-24 11:06:24", "51.255.65.224", "29");
INSERT INTO `wp_rg_form_view` VALUES("56721", "10", "2017-05-24 11:06:24", "51.255.65.224", "194");
INSERT INTO `wp_rg_form_view` VALUES("56722", "11", "2017-05-24 11:17:17", "94.23.204.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("56723", "2", "2017-05-24 11:17:19", "94.23.204.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("56724", "14", "2017-05-24 11:18:37", "94.23.204.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("56725", "3", "2017-05-24 12:18:15", "66.249.79.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("56726", "10", "2017-05-24 12:18:16", "66.249.79.148", "48");
INSERT INTO `wp_rg_form_view` VALUES("56727", "10", "2017-05-24 13:25:14", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("56728", "3", "2017-05-24 13:31:14", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("56729", "6", "2017-05-24 13:31:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56730", "9", "2017-05-24 13:31:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56731", "8", "2017-05-24 13:31:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56732", "13", "2017-05-24 13:31:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56733", "15", "2017-05-24 13:31:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56734", "3", "2017-05-24 14:11:35", "178.137.4.41", "7");
INSERT INTO `wp_rg_form_view` VALUES("56735", "10", "2017-05-24 14:25:14", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56736", "10", "2017-05-24 15:25:14", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56737", "14", "2017-05-24 15:27:50", "172.107.98.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("56738", "3", "2017-05-24 15:29:07", "68.180.229.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("56739", "9", "2017-05-24 15:30:34", "202.46.54.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("56740", "13", "2017-05-24 16:25:09", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("56741", "3", "2017-05-24 16:25:10", "40.77.167.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("56742", "10", "2017-05-24 16:25:10", "40.77.167.93", "29");
INSERT INTO `wp_rg_form_view` VALUES("56743", "14", "2017-05-24 16:51:43", "70.67.45.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("56744", "3", "2017-05-24 17:00:07", "46.118.155.24", "8");
INSERT INTO `wp_rg_form_view` VALUES("56745", "10", "2017-05-24 17:10:34", "202.46.58.161", "21");
INSERT INTO `wp_rg_form_view` VALUES("56746", "3", "2017-05-24 18:25:06", "77.75.78.160", "4");
INSERT INTO `wp_rg_form_view` VALUES("56747", "10", "2017-05-24 18:25:06", "77.75.78.160", "29");
INSERT INTO `wp_rg_form_view` VALUES("56748", "3", "2017-05-24 19:04:11", "66.249.79.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("56749", "10", "2017-05-24 19:04:11", "66.249.79.88", "21");
INSERT INTO `wp_rg_form_view` VALUES("56750", "3", "2017-05-24 20:01:53", "164.132.162.159", "15");
INSERT INTO `wp_rg_form_view` VALUES("56751", "10", "2017-05-24 20:01:53", "164.132.162.159", "66");
INSERT INTO `wp_rg_form_view` VALUES("56752", "14", "2017-05-24 20:20:32", "96.50.57.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("56753", "10", "2017-05-24 21:25:15", "184.66.248.195", "29");
INSERT INTO `wp_rg_form_view` VALUES("56754", "3", "2017-05-24 21:33:30", "202.46.53.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("56755", "10", "2017-05-24 22:25:15", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56756", "3", "2017-05-24 22:27:38", "184.71.18.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("56757", "3", "2017-05-24 23:02:33", "164.132.161.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("56758", "10", "2017-05-24 23:02:35", "164.132.161.9", "29");
INSERT INTO `wp_rg_form_view` VALUES("56759", "15", "2017-05-24 23:54:01", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("56760", "10", "2017-05-25 00:13:43", "184.66.129.248", "14");
INSERT INTO `wp_rg_form_view` VALUES("56761", "3", "2017-05-25 00:22:41", "40.77.167.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("56762", "11", "2017-05-25 01:14:22", "79.116.27.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("56763", "3", "2017-05-25 01:14:26", "79.116.27.70", "9");
INSERT INTO `wp_rg_form_view` VALUES("56764", "10", "2017-05-25 01:14:26", "79.116.27.70", "74");
INSERT INTO `wp_rg_form_view` VALUES("56765", "2", "2017-05-25 01:15:07", "79.116.27.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("56766", "10", "2017-05-25 02:25:18", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56767", "3", "2017-05-25 02:35:05", "40.77.167.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("56768", "8", "2017-05-25 02:42:00", "51.255.71.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("56769", "3", "2017-05-25 03:08:25", "46.118.155.24", "9");
INSERT INTO `wp_rg_form_view` VALUES("56770", "10", "2017-05-25 03:08:45", "54.74.221.255", "48");
INSERT INTO `wp_rg_form_view` VALUES("56771", "3", "2017-05-25 04:04:03", "40.77.167.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("56772", "10", "2017-05-25 04:04:03", "40.77.167.77", "11");
INSERT INTO `wp_rg_form_view` VALUES("56773", "3", "2017-05-25 05:16:35", "202.46.49.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("56774", "10", "2017-05-25 05:16:36", "202.46.49.144", "29");
INSERT INTO `wp_rg_form_view` VALUES("56775", "12", "2017-05-25 06:07:19", "51.255.65.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("56776", "3", "2017-05-25 06:07:20", "51.255.65.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("56777", "10", "2017-05-25 06:07:20", "51.255.65.76", "29");
INSERT INTO `wp_rg_form_view` VALUES("56778", "3", "2017-05-25 07:16:52", "66.249.79.88", "11");
INSERT INTO `wp_rg_form_view` VALUES("56779", "10", "2017-05-25 07:16:54", "66.249.79.88", "76");
INSERT INTO `wp_rg_form_view` VALUES("56780", "11", "2017-05-25 07:38:05", "138.197.73.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("56781", "2", "2017-05-25 07:38:06", "138.197.73.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("56782", "10", "2017-05-25 08:09:25", "164.132.161.26", "36");
INSERT INTO `wp_rg_form_view` VALUES("56783", "3", "2017-05-25 08:09:25", "164.132.161.26", "32");
INSERT INTO `wp_rg_form_view` VALUES("56784", "6", "2017-05-25 08:31:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56785", "9", "2017-05-25 08:31:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56786", "8", "2017-05-25 08:31:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56787", "13", "2017-05-25 08:31:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56788", "15", "2017-05-25 08:31:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56789", "10", "2017-05-25 09:25:20", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56790", "3", "2017-05-25 09:32:42", "202.46.57.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("56791", "3", "2017-05-25 10:05:03", "164.132.161.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("56792", "10", "2017-05-25 10:05:04", "164.132.161.58", "29");
INSERT INTO `wp_rg_form_view` VALUES("56793", "10", "2017-05-25 11:05:05", "51.255.71.126", "30");
INSERT INTO `wp_rg_form_view` VALUES("56794", "3", "2017-05-25 11:05:05", "51.255.71.126", "3");
INSERT INTO `wp_rg_form_view` VALUES("56795", "15", "2017-05-25 11:32:59", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("56796", "10", "2017-05-25 12:25:18", "184.66.248.195", "29");
INSERT INTO `wp_rg_form_view` VALUES("56797", "3", "2017-05-25 12:31:43", "207.46.13.98", "3");
INSERT INTO `wp_rg_form_view` VALUES("56798", "3", "2017-05-25 13:13:54", "178.137.4.41", "8");
INSERT INTO `wp_rg_form_view` VALUES("56799", "10", "2017-05-25 13:21:08", "40.77.167.93", "26");
INSERT INTO `wp_rg_form_view` VALUES("56800", "10", "2017-05-25 14:25:20", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("56801", "3", "2017-05-25 14:53:42", "66.249.79.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("56802", "11", "2017-05-25 15:02:15", "212.83.149.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("56803", "3", "2017-05-25 15:02:19", "212.83.149.185", "10");
INSERT INTO `wp_rg_form_view` VALUES("56804", "10", "2017-05-25 15:02:19", "212.83.149.185", "84");
INSERT INTO `wp_rg_form_view` VALUES("56805", "2", "2017-05-25 15:02:58", "212.83.149.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("56806", "7", "2017-05-25 15:06:41", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("56807", "3", "2017-05-25 16:11:22", "202.46.57.208", "4");
INSERT INTO `wp_rg_form_view` VALUES("56808", "10", "2017-05-25 16:11:26", "202.46.57.208", "29");
INSERT INTO `wp_rg_form_view` VALUES("56809", "3", "2017-05-25 17:12:04", "81.138.25.225", "7");
INSERT INTO `wp_rg_form_view` VALUES("56810", "10", "2017-05-25 17:12:05", "81.138.25.225", "58");
INSERT INTO `wp_rg_form_view` VALUES("56811", "2", "2017-05-25 17:12:21", "81.138.25.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("56812", "3", "2017-05-25 18:08:27", "207.46.13.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("56813", "10", "2017-05-25 18:08:27", "207.46.13.98", "21");
INSERT INTO `wp_rg_form_view` VALUES("56814", "10", "2017-05-25 19:03:11", "204.79.180.103", "116");
INSERT INTO `wp_rg_form_view` VALUES("56815", "3", "2017-05-25 19:03:12", "204.79.180.103", "41");
INSERT INTO `wp_rg_form_view` VALUES("56816", "14", "2017-05-25 19:20:54", "88.150.182.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("56817", "11", "2017-05-25 19:37:58", "86.123.245.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("56818", "2", "2017-05-25 19:39:00", "86.123.245.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("56819", "6", "2017-05-25 19:40:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56820", "9", "2017-05-25 19:40:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56821", "8", "2017-05-25 19:40:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56822", "13", "2017-05-25 19:40:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56823", "15", "2017-05-25 19:40:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56824", "3", "2017-05-25 20:09:32", "40.77.167.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("56825", "10", "2017-05-25 20:09:32", "40.77.167.77", "30");
INSERT INTO `wp_rg_form_view` VALUES("56826", "3", "2017-05-25 21:14:12", "46.118.155.24", "7");
INSERT INTO `wp_rg_form_view` VALUES("56827", "3", "2017-05-25 21:14:12", "46.118.155.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("56828", "10", "2017-05-25 21:25:25", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56829", "3", "2017-05-25 22:10:05", "40.77.167.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("56830", "10", "2017-05-25 22:10:05", "40.77.167.77", "20");
INSERT INTO `wp_rg_form_view` VALUES("56831", "3", "2017-05-25 23:07:55", "46.118.155.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("56832", "10", "2017-05-25 23:25:21", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("56833", "15", "2017-05-25 23:53:34", "204.79.180.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("56834", "3", "2017-05-26 00:06:35", "142.36.94.180", "12");
INSERT INTO `wp_rg_form_view` VALUES("56835", "10", "2017-05-26 00:06:35", "142.36.94.180", "77");
INSERT INTO `wp_rg_form_view` VALUES("56836", "10", "2017-05-26 01:25:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("56837", "13", "2017-05-26 01:41:49", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56838", "3", "2017-05-26 02:11:03", "202.46.56.208", "6");
INSERT INTO `wp_rg_form_view` VALUES("56839", "10", "2017-05-26 02:11:04", "202.46.56.208", "29");
INSERT INTO `wp_rg_form_view` VALUES("56840", "10", "2017-05-26 03:25:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("56841", "3", "2017-05-26 04:22:34", "164.132.161.96", "3");
INSERT INTO `wp_rg_form_view` VALUES("56842", "10", "2017-05-26 04:22:35", "164.132.161.96", "20");
INSERT INTO `wp_rg_form_view` VALUES("56843", "10", "2017-05-26 05:25:22", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56844", "6", "2017-05-26 05:32:23", "217.182.132.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("56845", "3", "2017-05-26 05:32:24", "217.182.132.78", "4");
INSERT INTO `wp_rg_form_view` VALUES("56846", "14", "2017-05-26 05:41:43", "104.223.31.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("56847", "3", "2017-05-26 06:09:50", "66.249.79.86", "6");
INSERT INTO `wp_rg_form_view` VALUES("56848", "10", "2017-05-26 06:09:52", "66.249.79.86", "30");
INSERT INTO `wp_rg_form_view` VALUES("56849", "14", "2017-05-26 06:25:07", "80.243.181.57", "2");
INSERT INTO `wp_rg_form_view` VALUES("56850", "6", "2017-05-26 06:43:44", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("56851", "10", "2017-05-26 07:25:23", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("56852", "3", "2017-05-26 07:26:00", "202.46.58.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("56853", "3", "2017-05-26 08:13:26", "46.229.168.73", "20");
INSERT INTO `wp_rg_form_view` VALUES("56854", "10", "2017-05-26 08:13:48", "46.229.168.65", "128");
INSERT INTO `wp_rg_form_view` VALUES("56855", "15", "2017-05-26 08:16:30", "46.229.168.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("56856", "2", "2017-05-26 08:16:56", "46.229.168.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("56857", "11", "2017-05-26 09:00:15", "5.102.1.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("56858", "3", "2017-05-26 09:00:20", "5.102.1.50", "12");
INSERT INTO `wp_rg_form_view` VALUES("56859", "10", "2017-05-26 09:00:20", "5.102.1.50", "92");
INSERT INTO `wp_rg_form_view` VALUES("56860", "2", "2017-05-26 09:01:13", "5.102.1.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("56861", "15", "2017-05-26 09:52:27", "202.46.49.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("56862", "3", "2017-05-26 10:15:01", "54.74.221.255", "7");
INSERT INTO `wp_rg_form_view` VALUES("56863", "10", "2017-05-26 10:15:04", "54.74.221.255", "48");
INSERT INTO `wp_rg_form_view` VALUES("56864", "10", "2017-05-26 11:25:24", "184.66.248.195", "178");
INSERT INTO `wp_rg_form_view` VALUES("56865", "11", "2017-05-26 11:28:53", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("56866", "3", "2017-05-26 11:29:15", "188.40.46.135", "21");
INSERT INTO `wp_rg_form_view` VALUES("56867", "14", "2017-05-26 11:33:06", "155.94.148.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("56868", "6", "2017-05-26 12:05:51", "202.46.48.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("56869", "3", "2017-05-26 12:05:56", "202.46.48.145", "8");
INSERT INTO `wp_rg_form_view` VALUES("56870", "10", "2017-05-26 12:05:56", "202.46.48.145", "38");
INSERT INTO `wp_rg_form_view` VALUES("56871", "3", "2017-05-26 13:12:29", "202.46.53.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("56872", "10", "2017-05-26 13:12:29", "202.46.53.111", "13");
INSERT INTO `wp_rg_form_view` VALUES("56873", "3", "2017-05-26 14:01:29", "46.119.117.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("56874", "3", "2017-05-26 14:01:29", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("56875", "10", "2017-05-26 14:17:56", "188.40.46.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("56876", "3", "2017-05-26 15:03:18", "40.77.167.77", "39");
INSERT INTO `wp_rg_form_view` VALUES("56877", "10", "2017-05-26 15:03:18", "40.77.167.77", "43");
INSERT INTO `wp_rg_form_view` VALUES("56878", "6", "2017-05-26 15:14:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56879", "9", "2017-05-26 15:14:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56880", "8", "2017-05-26 15:14:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56881", "13", "2017-05-26 15:14:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56882", "15", "2017-05-26 15:14:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56883", "3", "2017-05-26 16:16:08", "217.182.132.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("56884", "10", "2017-05-26 16:16:08", "217.182.132.17", "20");
INSERT INTO `wp_rg_form_view` VALUES("56885", "3", "2017-05-26 17:05:47", "202.46.56.190", "5");
INSERT INTO `wp_rg_form_view` VALUES("56886", "10", "2017-05-26 17:05:47", "202.46.56.190", "11");
INSERT INTO `wp_rg_form_view` VALUES("56887", "3", "2017-05-26 18:06:42", "198.103.109.141", "5");
INSERT INTO `wp_rg_form_view` VALUES("56888", "10", "2017-05-26 18:06:42", "198.103.109.141", "38");
INSERT INTO `wp_rg_form_view` VALUES("56889", "10", "2017-05-26 19:00:25", "68.180.229.228", "32");
INSERT INTO `wp_rg_form_view` VALUES("56890", "3", "2017-05-26 19:00:25", "68.180.229.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("56891", "10", "2017-05-26 20:25:33", "184.66.248.195", "158");
INSERT INTO `wp_rg_form_view` VALUES("56892", "3", "2017-05-26 20:36:09", "68.180.229.228", "25");
INSERT INTO `wp_rg_form_view` VALUES("56893", "13", "2017-05-26 20:40:50", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("56894", "15", "2017-05-26 20:43:30", "47.150.129.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("56895", "9", "2017-05-26 20:55:02", "202.46.52.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("56896", "10", "2017-05-26 21:25:25", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("56897", "3", "2017-05-26 22:01:46", "202.46.53.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("56898", "10", "2017-05-26 22:01:49", "202.46.53.200", "11");
INSERT INTO `wp_rg_form_view` VALUES("56899", "2", "2017-05-26 23:18:55", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56900", "3", "2017-05-26 23:45:24", "164.132.161.4", "3");
INSERT INTO `wp_rg_form_view` VALUES("56901", "10", "2017-05-26 23:46:24", "51.255.65.33", "18");
INSERT INTO `wp_rg_form_view` VALUES("56902", "11", "2017-05-27 00:44:18", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56903", "2", "2017-05-27 00:44:18", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56904", "10", "2017-05-27 00:44:19", "138.197.73.162", "65");
INSERT INTO `wp_rg_form_view` VALUES("56905", "3", "2017-05-27 00:44:19", "138.197.73.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("56906", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56907", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56908", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56909", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56910", "3", "2017-05-27 00:44:19", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56911", "3", "2017-05-27 02:00:48", "46.119.117.60", "34");
INSERT INTO `wp_rg_form_view` VALUES("56912", "10", "2017-05-27 02:04:01", "202.46.58.194", "52");
INSERT INTO `wp_rg_form_view` VALUES("56913", "6", "2017-05-27 02:23:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56914", "9", "2017-05-27 02:23:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56915", "8", "2017-05-27 02:23:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56916", "13", "2017-05-27 02:23:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56917", "15", "2017-05-27 02:23:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56918", "3", "2017-05-27 03:00:23", "68.180.229.228", "23");
INSERT INTO `wp_rg_form_view` VALUES("56919", "10", "2017-05-27 03:00:23", "68.180.229.228", "37");
INSERT INTO `wp_rg_form_view` VALUES("56920", "8", "2017-05-27 03:37:21", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56921", "13", "2017-05-27 03:37:21", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("56922", "3", "2017-05-27 04:01:06", "40.77.167.43", "5");
INSERT INTO `wp_rg_form_view` VALUES("56923", "10", "2017-05-27 04:01:07", "40.77.167.43", "18");
INSERT INTO `wp_rg_form_view` VALUES("56924", "3", "2017-05-27 05:53:57", "172.104.54.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("56925", "10", "2017-05-27 05:54:09", "172.104.54.86", "9");
INSERT INTO `wp_rg_form_view` VALUES("56926", "14", "2017-05-27 06:15:34", "68.185.106.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("56927", "3", "2017-05-27 06:39:08", "54.74.221.255", "37");
INSERT INTO `wp_rg_form_view` VALUES("56928", "10", "2017-05-27 06:39:10", "54.74.221.255", "237");
INSERT INTO `wp_rg_form_view` VALUES("56929", "9", "2017-05-27 06:49:49", "207.46.13.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("56930", "11", "2017-05-27 06:55:23", "77.75.77.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("56931", "10", "2017-05-27 07:15:56", "202.46.53.120", "19");
INSERT INTO `wp_rg_form_view` VALUES("56932", "3", "2017-05-27 07:15:56", "202.46.53.120", "6");
INSERT INTO `wp_rg_form_view` VALUES("56933", "11", "2017-05-27 08:17:41", "217.182.132.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("56934", "3", "2017-05-27 08:47:22", "40.77.167.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("56935", "10", "2017-05-27 08:47:22", "40.77.167.93", "9");
INSERT INTO `wp_rg_form_view` VALUES("56936", "3", "2017-05-27 09:14:05", "217.182.132.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("56937", "10", "2017-05-27 09:14:05", "217.182.132.24", "18");
INSERT INTO `wp_rg_form_view` VALUES("56938", "3", "2017-05-27 10:15:19", "46.119.117.60", "5");
INSERT INTO `wp_rg_form_view` VALUES("56939", "3", "2017-05-27 10:15:19", "46.119.117.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("56940", "10", "2017-05-27 10:26:01", "202.46.48.207", "18");
INSERT INTO `wp_rg_form_view` VALUES("56941", "3", "2017-05-27 11:22:14", "68.180.229.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("56942", "10", "2017-05-27 11:22:16", "68.180.229.228", "27");
INSERT INTO `wp_rg_form_view` VALUES("56943", "9", "2017-05-27 12:39:17", "202.46.55.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("56944", "3", "2017-05-27 12:39:19", "202.46.55.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("56945", "10", "2017-05-27 12:39:19", "202.46.55.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("56946", "3", "2017-05-27 13:00:40", "68.180.229.228", "51");
INSERT INTO `wp_rg_form_view` VALUES("56947", "10", "2017-05-27 13:45:57", "202.46.58.196", "351");
INSERT INTO `wp_rg_form_view` VALUES("56948", "14", "2017-05-27 13:54:43", "104.131.22.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56949", "11", "2017-05-27 13:54:48", "104.131.22.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56950", "2", "2017-05-27 13:58:06", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("56951", "10", "2017-05-27 14:00:16", "104.196.183.13", "3400");
INSERT INTO `wp_rg_form_view` VALUES("56952", "3", "2017-05-27 14:00:16", "104.196.183.13", "427");
INSERT INTO `wp_rg_form_view` VALUES("56953", "11", "2017-05-27 14:00:26", "104.196.183.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("56954", "6", "2017-05-27 14:01:13", "104.131.22.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56955", "14", "2017-05-27 14:03:07", "24.69.154.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("56956", "9", "2017-05-27 14:14:08", "104.131.22.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56957", "15", "2017-05-27 14:27:19", "104.131.22.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56958", "2", "2017-05-27 14:36:39", "35.185.0.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("56959", "3", "2017-05-27 15:00:09", "104.131.22.162", "140");
INSERT INTO `wp_rg_form_view` VALUES("56960", "10", "2017-05-27 15:00:09", "104.131.22.162", "1088");
INSERT INTO `wp_rg_form_view` VALUES("56961", "2", "2017-05-27 15:02:18", "104.131.22.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("56962", "9", "2017-05-27 15:13:53", "164.132.161.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("56963", "13", "2017-05-27 15:14:38", "104.131.22.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("56964", "14", "2017-05-27 15:56:43", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("56965", "11", "2017-05-27 15:57:22", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("56966", "10", "2017-05-27 16:00:12", "104.196.183.13", "268");
INSERT INTO `wp_rg_form_view` VALUES("56967", "3", "2017-05-27 16:00:12", "104.196.183.13", "36");
INSERT INTO `wp_rg_form_view` VALUES("56968", "14", "2017-05-27 16:05:17", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("56969", "2", "2017-05-27 16:05:32", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("56970", "11", "2017-05-27 16:05:50", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("56971", "10", "2017-05-27 17:34:33", "104.196.154.58", "190");
INSERT INTO `wp_rg_form_view` VALUES("56972", "3", "2017-05-27 17:34:37", "104.196.154.58", "32");
INSERT INTO `wp_rg_form_view` VALUES("56973", "14", "2017-05-27 17:35:21", "104.196.154.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("56974", "15", "2017-05-27 17:37:14", "104.196.154.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("56975", "3", "2017-05-27 18:02:33", "40.77.167.93", "66");
INSERT INTO `wp_rg_form_view` VALUES("56976", "10", "2017-05-27 18:02:33", "40.77.167.93", "345");
INSERT INTO `wp_rg_form_view` VALUES("56977", "2", "2017-05-27 18:09:35", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("56978", "15", "2017-05-27 18:22:54", "35.185.0.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("56979", "8", "2017-05-27 18:23:12", "35.185.0.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("56980", "13", "2017-05-27 18:24:13", "35.185.0.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("56981", "6", "2017-05-27 18:24:26", "35.185.0.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("56982", "14", "2017-05-27 18:51:30", "199.60.109.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("56983", "3", "2017-05-27 19:08:04", "104.196.33.217", "88");
INSERT INTO `wp_rg_form_view` VALUES("56984", "10", "2017-05-27 19:08:04", "104.196.33.217", "280");
INSERT INTO `wp_rg_form_view` VALUES("56985", "15", "2017-05-27 19:08:20", "104.196.33.217", "3");
INSERT INTO `wp_rg_form_view` VALUES("56986", "9", "2017-05-27 19:08:55", "104.196.33.217", "3");
INSERT INTO `wp_rg_form_view` VALUES("56987", "8", "2017-05-27 19:09:58", "104.196.33.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("56988", "6", "2017-05-27 19:55:27", "104.196.217.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("56989", "13", "2017-05-27 19:55:51", "104.196.217.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("56990", "3", "2017-05-27 20:11:38", "77.75.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("56991", "10", "2017-05-27 20:11:38", "77.75.76.169", "9");
INSERT INTO `wp_rg_form_view` VALUES("56992", "10", "2017-05-27 21:19:45", "66.249.79.136", "43");
INSERT INTO `wp_rg_form_view` VALUES("56993", "3", "2017-05-27 21:19:50", "66.249.79.136", "31");
INSERT INTO `wp_rg_form_view` VALUES("56994", "6", "2017-05-27 21:21:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56995", "9", "2017-05-27 21:21:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56996", "8", "2017-05-27 21:21:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56997", "13", "2017-05-27 21:21:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56998", "15", "2017-05-27 21:21:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("56999", "3", "2017-05-27 22:24:59", "51.255.65.44", "6");
INSERT INTO `wp_rg_form_view` VALUES("57000", "10", "2017-05-27 22:25:00", "51.255.65.44", "47");
INSERT INTO `wp_rg_form_view` VALUES("57001", "10", "2017-05-27 23:06:30", "66.249.84.200", "38");
INSERT INTO `wp_rg_form_view` VALUES("57002", "3", "2017-05-27 23:06:31", "66.249.84.200", "4");
INSERT INTO `wp_rg_form_view` VALUES("57003", "3", "2017-05-28 00:06:20", "77.75.76.169", "16");
INSERT INTO `wp_rg_form_view` VALUES("57004", "10", "2017-05-28 00:06:20", "77.75.76.169", "28");
INSERT INTO `wp_rg_form_view` VALUES("57005", "8", "2017-05-28 00:48:52", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57006", "13", "2017-05-28 00:48:52", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57007", "3", "2017-05-28 01:08:01", "77.75.78.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("57008", "10", "2017-05-28 01:08:01", "77.75.78.169", "10");
INSERT INTO `wp_rg_form_view` VALUES("57009", "2", "2017-05-28 01:18:29", "202.46.56.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("57010", "10", "2017-05-28 02:24:49", "207.6.150.150", "19");
INSERT INTO `wp_rg_form_view` VALUES("57011", "3", "2017-05-28 02:24:51", "207.6.150.150", "6");
INSERT INTO `wp_rg_form_view` VALUES("57012", "3", "2017-05-28 03:29:44", "77.75.79.17", "5");
INSERT INTO `wp_rg_form_view` VALUES("57013", "10", "2017-05-28 03:29:45", "77.75.79.17", "9");
INSERT INTO `wp_rg_form_view` VALUES("57014", "3", "2017-05-28 04:25:33", "137.74.201.100", "12");
INSERT INTO `wp_rg_form_view` VALUES("57015", "10", "2017-05-28 04:25:33", "137.74.201.100", "40");
INSERT INTO `wp_rg_form_view` VALUES("57016", "9", "2017-05-28 05:09:34", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57017", "3", "2017-05-28 05:09:35", "68.180.229.228", "4");
INSERT INTO `wp_rg_form_view` VALUES("57018", "10", "2017-05-28 05:09:35", "68.180.229.228", "36");
INSERT INTO `wp_rg_form_view` VALUES("57019", "3", "2017-05-28 06:01:07", "217.182.132.70", "4");
INSERT INTO `wp_rg_form_view` VALUES("57020", "10", "2017-05-28 06:01:10", "217.182.132.70", "27");
INSERT INTO `wp_rg_form_view` VALUES("57021", "3", "2017-05-28 07:04:46", "88.198.19.164", "7");
INSERT INTO `wp_rg_form_view` VALUES("57022", "10", "2017-05-28 07:04:46", "88.198.19.164", "65");
INSERT INTO `wp_rg_form_view` VALUES("57023", "3", "2017-05-28 08:01:17", "68.180.229.228", "38");
INSERT INTO `wp_rg_form_view` VALUES("57024", "10", "2017-05-28 08:01:17", "68.180.229.228", "78");
INSERT INTO `wp_rg_form_view` VALUES("57025", "6", "2017-05-28 08:32:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57026", "9", "2017-05-28 08:32:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57027", "8", "2017-05-28 08:32:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57028", "13", "2017-05-28 08:32:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57029", "15", "2017-05-28 08:32:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57030", "3", "2017-05-28 10:54:40", "66.249.79.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("57031", "10", "2017-05-28 10:54:42", "66.249.79.134", "9");
INSERT INTO `wp_rg_form_view` VALUES("57032", "14", "2017-05-28 11:26:05", "83.143.242.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("57033", "3", "2017-05-28 11:42:36", "46.118.116.168", "3");
INSERT INTO `wp_rg_form_view` VALUES("57034", "3", "2017-05-28 11:42:36", "46.118.116.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("57035", "15", "2017-05-28 11:56:31", "51.255.65.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("57036", "3", "2017-05-28 12:17:37", "217.182.132.193", "4");
INSERT INTO `wp_rg_form_view` VALUES("57037", "10", "2017-05-28 12:17:38", "217.182.132.193", "27");
INSERT INTO `wp_rg_form_view` VALUES("57038", "3", "2017-05-28 13:02:56", "164.132.161.33", "4");
INSERT INTO `wp_rg_form_view` VALUES("57039", "10", "2017-05-28 13:02:57", "164.132.161.33", "28");
INSERT INTO `wp_rg_form_view` VALUES("57040", "2", "2017-05-28 13:38:09", "164.132.161.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("57041", "3", "2017-05-28 14:08:23", "202.46.56.16", "17");
INSERT INTO `wp_rg_form_view` VALUES("57042", "10", "2017-05-28 14:08:24", "202.46.56.16", "99");
INSERT INTO `wp_rg_form_view` VALUES("57043", "11", "2017-05-28 14:37:20", "94.209.237.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("57044", "2", "2017-05-28 14:38:11", "94.209.237.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("57045", "10", "2017-05-28 15:19:59", "40.77.167.93", "19");
INSERT INTO `wp_rg_form_view` VALUES("57046", "3", "2017-05-28 15:20:00", "40.77.167.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("57047", "14", "2017-05-28 15:48:05", "146.0.74.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("57048", "3", "2017-05-28 16:21:40", "202.46.58.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("57049", "10", "2017-05-28 16:21:40", "202.46.58.164", "27");
INSERT INTO `wp_rg_form_view` VALUES("57050", "3", "2017-05-28 17:28:21", "202.46.52.178", "9");
INSERT INTO `wp_rg_form_view` VALUES("57051", "10", "2017-05-28 17:28:21", "202.46.52.178", "64");
INSERT INTO `wp_rg_form_view` VALUES("57052", "11", "2017-05-28 17:35:54", "159.203.112.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("57053", "2", "2017-05-28 17:35:54", "159.203.112.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("57054", "3", "2017-05-28 18:01:40", "202.46.48.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("57055", "10", "2017-05-28 18:01:41", "202.46.48.84", "18");
INSERT INTO `wp_rg_form_view` VALUES("57056", "3", "2017-05-28 19:02:17", "178.137.4.41", "4");
INSERT INTO `wp_rg_form_view` VALUES("57057", "10", "2017-05-28 19:08:23", "202.46.53.17", "18");
INSERT INTO `wp_rg_form_view` VALUES("57058", "3", "2017-05-28 20:48:21", "202.46.53.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("57059", "10", "2017-05-28 20:48:22", "202.46.53.41", "19");
INSERT INTO `wp_rg_form_view` VALUES("57060", "3", "2017-05-28 21:12:34", "217.182.132.188", "5");
INSERT INTO `wp_rg_form_view` VALUES("57061", "10", "2017-05-28 21:12:34", "217.182.132.188", "18");
INSERT INTO `wp_rg_form_view` VALUES("57062", "15", "2017-05-28 21:28:42", "66.249.79.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("57063", "10", "2017-05-28 22:20:14", "207.46.13.126", "19");
INSERT INTO `wp_rg_form_view` VALUES("57064", "3", "2017-05-28 22:20:15", "207.46.13.126", "4");
INSERT INTO `wp_rg_form_view` VALUES("57065", "3", "2017-05-28 23:35:05", "66.249.79.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("57066", "10", "2017-05-28 23:39:13", "77.75.77.62", "9");
INSERT INTO `wp_rg_form_view` VALUES("57067", "3", "2017-05-29 00:29:35", "178.137.4.41", "7");
INSERT INTO `wp_rg_form_view` VALUES("57068", "10", "2017-05-29 00:34:35", "207.46.13.126", "9");
INSERT INTO `wp_rg_form_view` VALUES("57069", "14", "2017-05-29 01:06:25", "51.255.65.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("57070", "3", "2017-05-29 01:19:42", "207.46.13.126", "4");
INSERT INTO `wp_rg_form_view` VALUES("57071", "10", "2017-05-29 01:19:42", "207.46.13.126", "36");
INSERT INTO `wp_rg_form_view` VALUES("57072", "5", "2017-05-29 01:49:23", "66.249.79.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("57073", "14", "2017-05-29 02:07:24", "155.133.64.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("57074", "3", "2017-05-29 02:12:12", "54.74.221.255", "5");
INSERT INTO `wp_rg_form_view` VALUES("57075", "10", "2017-05-29 02:12:12", "54.74.221.255", "37");
INSERT INTO `wp_rg_form_view` VALUES("57076", "15", "2017-05-29 03:09:21", "40.77.167.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("57077", "3", "2017-05-29 03:09:23", "40.77.167.93", "28");
INSERT INTO `wp_rg_form_view` VALUES("57078", "10", "2017-05-29 03:09:23", "40.77.167.93", "14");
INSERT INTO `wp_rg_form_view` VALUES("57079", "6", "2017-05-29 03:43:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57080", "9", "2017-05-29 03:43:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57081", "8", "2017-05-29 03:43:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57082", "13", "2017-05-29 03:43:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57083", "3", "2017-05-29 04:18:20", "66.249.79.138", "22");
INSERT INTO `wp_rg_form_view` VALUES("57084", "10", "2017-05-29 04:18:21", "66.249.79.138", "110");
INSERT INTO `wp_rg_form_view` VALUES("57085", "11", "2017-05-29 04:37:51", "191.101.31.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("57086", "2", "2017-05-29 04:38:35", "191.101.31.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("57087", "8", "2017-05-29 04:45:59", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57088", "13", "2017-05-29 04:45:59", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57089", "10", "2017-05-29 05:21:23", "184.66.248.195", "69");
INSERT INTO `wp_rg_form_view` VALUES("57090", "3", "2017-05-29 05:48:22", "68.180.229.228", "19");
INSERT INTO `wp_rg_form_view` VALUES("57091", "15", "2017-05-29 05:50:28", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57092", "3", "2017-05-29 06:00:11", "68.180.229.228", "5");
INSERT INTO `wp_rg_form_view` VALUES("57093", "10", "2017-05-29 06:00:11", "68.180.229.228", "38");
INSERT INTO `wp_rg_form_view` VALUES("57094", "3", "2017-05-29 07:05:44", "121.35.176.252", "6");
INSERT INTO `wp_rg_form_view` VALUES("57095", "10", "2017-05-29 07:05:44", "121.35.176.252", "38");
INSERT INTO `wp_rg_form_view` VALUES("57096", "2", "2017-05-29 07:05:45", "121.35.176.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("57097", "11", "2017-05-29 07:05:45", "121.35.176.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("57098", "8", "2017-05-29 07:09:24", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("57099", "10", "2017-05-29 08:22:04", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57100", "3", "2017-05-29 08:28:24", "207.46.13.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("57101", "3", "2017-05-29 09:11:13", "77.75.76.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("57102", "10", "2017-05-29 09:11:13", "77.75.76.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("57103", "3", "2017-05-29 10:12:39", "207.46.13.43", "39");
INSERT INTO `wp_rg_form_view` VALUES("57104", "10", "2017-05-29 10:12:40", "207.46.13.43", "255");
INSERT INTO `wp_rg_form_view` VALUES("57105", "9", "2017-05-29 10:12:57", "207.46.13.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("57106", "8", "2017-05-29 10:12:59", "207.46.13.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("57107", "14", "2017-05-29 10:51:30", "195.184.208.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("57108", "3", "2017-05-29 11:05:16", "51.255.65.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("57109", "10", "2017-05-29 11:05:17", "51.255.65.60", "11");
INSERT INTO `wp_rg_form_view` VALUES("57110", "14", "2017-05-29 11:06:19", "217.182.132.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("57111", "3", "2017-05-29 12:06:09", "202.46.54.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("57112", "10", "2017-05-29 12:06:09", "202.46.54.134", "11");
INSERT INTO `wp_rg_form_view` VALUES("57113", "10", "2017-05-29 13:22:47", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57114", "3", "2017-05-29 13:50:39", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57115", "10", "2017-05-29 14:22:47", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57116", "3", "2017-05-29 14:49:58", "217.182.132.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("57117", "3", "2017-05-29 15:03:21", "68.180.229.228", "59");
INSERT INTO `wp_rg_form_view` VALUES("57118", "6", "2017-05-29 15:03:21", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("57119", "9", "2017-05-29 15:03:21", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("57120", "8", "2017-05-29 15:03:22", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("57121", "10", "2017-05-29 15:03:22", "68.180.229.228", "59");
INSERT INTO `wp_rg_form_view` VALUES("57122", "13", "2017-05-29 15:03:22", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("57123", "15", "2017-05-29 15:03:23", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("57124", "11", "2017-05-29 16:01:14", "173.161.189.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("57125", "3", "2017-05-29 16:01:19", "173.161.189.149", "11");
INSERT INTO `wp_rg_form_view` VALUES("57126", "10", "2017-05-29 16:01:19", "173.161.189.149", "92");
INSERT INTO `wp_rg_form_view` VALUES("57127", "2", "2017-05-29 16:01:55", "173.161.189.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("57128", "10", "2017-05-29 17:02:20", "51.255.71.123", "87");
INSERT INTO `wp_rg_form_view` VALUES("57129", "6", "2017-05-29 17:10:28", "5.9.145.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("57130", "3", "2017-05-29 17:10:30", "5.9.145.132", "13");
INSERT INTO `wp_rg_form_view` VALUES("57131", "14", "2017-05-29 17:20:15", "62.210.79.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("57132", "14", "2017-05-29 18:04:13", "24.69.156.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("57133", "3", "2017-05-29 18:06:30", "202.46.54.31", "10");
INSERT INTO `wp_rg_form_view` VALUES("57134", "10", "2017-05-29 18:06:30", "202.46.54.31", "29");
INSERT INTO `wp_rg_form_view` VALUES("57135", "3", "2017-05-29 19:21:29", "164.132.161.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("57136", "10", "2017-05-29 19:21:31", "164.132.161.83", "10");
INSERT INTO `wp_rg_form_view` VALUES("57137", "10", "2017-05-29 20:00:10", "184.66.248.195", "65");
INSERT INTO `wp_rg_form_view` VALUES("57138", "3", "2017-05-29 20:08:52", "52.5.220.220", "8");
INSERT INTO `wp_rg_form_view` VALUES("57139", "10", "2017-05-29 21:00:28", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57140", "3", "2017-05-29 21:43:44", "46.118.123.232", "3");
INSERT INTO `wp_rg_form_view` VALUES("57141", "10", "2017-05-29 22:00:35", "184.66.248.195", "29");
INSERT INTO `wp_rg_form_view` VALUES("57142", "3", "2017-05-29 22:30:30", "207.46.13.126", "5");
INSERT INTO `wp_rg_form_view` VALUES("57143", "10", "2017-05-29 23:01:06", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57144", "3", "2017-05-29 23:06:31", "202.46.48.203", "3");
INSERT INTO `wp_rg_form_view` VALUES("57145", "10", "2017-05-30 00:01:12", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57146", "3", "2017-05-30 00:48:16", "68.180.229.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("57147", "10", "2017-05-30 01:01:19", "184.66.248.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("57148", "3", "2017-05-30 01:05:29", "46.118.117.131", "8");
INSERT INTO `wp_rg_form_view` VALUES("57149", "3", "2017-05-30 02:00:05", "202.46.48.93", "4");
INSERT INTO `wp_rg_form_view` VALUES("57150", "10", "2017-05-30 02:00:06", "202.46.48.93", "20");
INSERT INTO `wp_rg_form_view` VALUES("57151", "10", "2017-05-30 03:01:32", "184.66.248.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("57152", "3", "2017-05-30 03:06:44", "202.46.53.196", "4");
INSERT INTO `wp_rg_form_view` VALUES("57153", "10", "2017-05-30 04:01:32", "184.66.248.195", "39");
INSERT INTO `wp_rg_form_view` VALUES("57154", "3", "2017-05-30 04:10:39", "54.74.221.255", "8");
INSERT INTO `wp_rg_form_view` VALUES("57155", "10", "2017-05-30 05:01:54", "184.66.248.195", "103");
INSERT INTO `wp_rg_form_view` VALUES("57156", "3", "2017-05-30 05:11:49", "96.54.234.24", "13");
INSERT INTO `wp_rg_form_view` VALUES("57157", "11", "2017-05-30 05:54:50", "208.43.225.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("57158", "10", "2017-05-30 06:01:55", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57159", "3", "2017-05-30 06:30:05", "202.46.53.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("57160", "10", "2017-05-30 07:02:03", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57161", "3", "2017-05-30 07:16:49", "207.46.13.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("57162", "10", "2017-05-30 08:00:00", "207.46.13.126", "30");
INSERT INTO `wp_rg_form_view` VALUES("57163", "3", "2017-05-30 08:00:01", "207.46.13.126", "6");
INSERT INTO `wp_rg_form_view` VALUES("57164", "10", "2017-05-30 09:02:14", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57165", "3", "2017-05-30 09:31:59", "202.46.55.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("57166", "14", "2017-05-30 09:45:34", "91.235.142.224", "2");
INSERT INTO `wp_rg_form_view` VALUES("57167", "10", "2017-05-30 10:02:14", "184.66.248.195", "25");
INSERT INTO `wp_rg_form_view` VALUES("57168", "3", "2017-05-30 10:13:22", "46.118.117.131", "29");
INSERT INTO `wp_rg_form_view` VALUES("57169", "6", "2017-05-30 10:29:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57170", "9", "2017-05-30 10:29:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57171", "8", "2017-05-30 10:29:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57172", "13", "2017-05-30 10:29:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57173", "15", "2017-05-30 10:29:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57174", "10", "2017-05-30 11:00:56", "164.132.161.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("57175", "3", "2017-05-30 11:26:31", "137.74.207.101", "5");
INSERT INTO `wp_rg_form_view` VALUES("57176", "13", "2017-05-30 11:28:59", "66.249.79.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("57177", "3", "2017-05-30 12:00:46", "77.75.78.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("57178", "10", "2017-05-30 12:00:47", "77.75.78.160", "50");
INSERT INTO `wp_rg_form_view` VALUES("57179", "10", "2017-05-30 13:02:56", "184.66.248.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("57180", "3", "2017-05-30 13:03:54", "46.118.123.232", "5");
INSERT INTO `wp_rg_form_view` VALUES("57181", "10", "2017-05-30 14:03:17", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57182", "3", "2017-05-30 14:36:54", "202.46.50.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("57183", "10", "2017-05-30 15:03:28", "184.66.248.195", "47");
INSERT INTO `wp_rg_form_view` VALUES("57184", "3", "2017-05-30 15:10:20", "207.46.13.126", "6");
INSERT INTO `wp_rg_form_view` VALUES("57185", "3", "2017-05-30 16:02:43", "217.182.132.94", "7");
INSERT INTO `wp_rg_form_view` VALUES("57186", "10", "2017-05-30 16:02:43", "217.182.132.94", "20");
INSERT INTO `wp_rg_form_view` VALUES("57187", "10", "2017-05-30 17:03:51", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57188", "3", "2017-05-30 17:09:15", "164.132.161.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("57189", "10", "2017-05-30 18:03:53", "184.66.248.195", "29");
INSERT INTO `wp_rg_form_view` VALUES("57190", "3", "2017-05-30 18:10:01", "217.182.132.147", "7");
INSERT INTO `wp_rg_form_view` VALUES("57191", "3", "2017-05-30 19:03:33", "202.46.49.118", "10");
INSERT INTO `wp_rg_form_view` VALUES("57192", "10", "2017-05-30 19:03:34", "202.46.49.118", "21");
INSERT INTO `wp_rg_form_view` VALUES("57193", "8", "2017-05-30 19:17:11", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57194", "13", "2017-05-30 19:17:12", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57195", "10", "2017-05-30 20:03:52", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57196", "10", "2017-05-30 21:03:55", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57197", "3", "2017-05-30 21:04:23", "178.137.4.41", "5");
INSERT INTO `wp_rg_form_view` VALUES("57198", "14", "2017-05-30 21:15:15", "75.157.25.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("57199", "10", "2017-05-30 22:03:52", "184.66.248.195", "27");
INSERT INTO `wp_rg_form_view` VALUES("57200", "3", "2017-05-30 22:13:58", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("57201", "6", "2017-05-30 22:13:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57202", "9", "2017-05-30 22:13:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57203", "8", "2017-05-30 22:14:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57204", "13", "2017-05-30 22:14:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57205", "15", "2017-05-30 22:14:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57206", "3", "2017-05-30 23:14:59", "77.75.79.32", "3");
INSERT INTO `wp_rg_form_view` VALUES("57207", "10", "2017-05-30 23:15:07", "77.75.79.32", "9");
INSERT INTO `wp_rg_form_view` VALUES("57208", "14", "2017-05-30 23:46:17", "70.67.56.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("57209", "3", "2017-05-31 00:08:19", "37.115.187.118", "7");
INSERT INTO `wp_rg_form_view` VALUES("57210", "10", "2017-05-31 00:24:34", "24.108.38.201", "37");
INSERT INTO `wp_rg_form_view` VALUES("57211", "14", "2017-05-31 00:44:16", "184.66.238.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("57212", "3", "2017-05-31 01:40:03", "217.182.132.149", "5");
INSERT INTO `wp_rg_form_view` VALUES("57213", "10", "2017-05-31 01:40:04", "217.182.132.149", "36");
INSERT INTO `wp_rg_form_view` VALUES("57214", "8", "2017-05-31 01:54:46", "66.249.79.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("57215", "10", "2017-05-31 02:05:58", "199.16.157.182", "56");
INSERT INTO `wp_rg_form_view` VALUES("57216", "3", "2017-05-31 02:05:58", "199.16.157.182", "6");
INSERT INTO `wp_rg_form_view` VALUES("57217", "10", "2017-05-31 03:20:22", "184.66.129.248", "29");
INSERT INTO `wp_rg_form_view` VALUES("57218", "3", "2017-05-31 03:24:27", "40.77.167.93", "5");
INSERT INTO `wp_rg_form_view` VALUES("57219", "3", "2017-05-31 04:34:45", "178.137.4.41", "5");
INSERT INTO `wp_rg_form_view` VALUES("57220", "3", "2017-05-31 04:34:45", "178.137.4.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("57221", "10", "2017-05-31 04:36:58", "202.46.57.183", "27");
INSERT INTO `wp_rg_form_view` VALUES("57222", "3", "2017-05-31 05:01:35", "46.118.158.86", "10");
INSERT INTO `wp_rg_form_view` VALUES("57223", "11", "2017-05-31 05:11:17", "77.75.76.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("57224", "10", "2017-05-31 05:19:04", "207.46.13.15", "37");
INSERT INTO `wp_rg_form_view` VALUES("57225", "3", "2017-05-31 07:04:34", "207.46.13.15", "33");
INSERT INTO `wp_rg_form_view` VALUES("57226", "10", "2017-05-31 07:04:35", "207.46.13.15", "33");
INSERT INTO `wp_rg_form_view` VALUES("57227", "6", "2017-05-31 07:51:40", "217.182.132.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("57228", "9", "2017-05-31 07:51:40", "217.182.132.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("57229", "8", "2017-05-31 07:51:41", "217.182.132.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("57230", "13", "2017-05-31 07:51:41", "217.182.132.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("57231", "15", "2017-05-31 07:51:42", "217.182.132.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("57232", "3", "2017-05-31 09:02:06", "154.5.208.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("57233", "10", "2017-05-31 09:02:10", "154.5.208.77", "9");
INSERT INTO `wp_rg_form_view` VALUES("57234", "3", "2017-05-31 10:54:40", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57235", "3", "2017-05-31 12:44:36", "220.181.108.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("57236", "10", "2017-05-31 12:44:38", "220.181.108.111", "9");
INSERT INTO `wp_rg_form_view` VALUES("57237", "3", "2017-05-31 13:00:16", "207.46.13.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("57238", "10", "2017-05-31 13:00:17", "207.46.13.126", "9");
INSERT INTO `wp_rg_form_view` VALUES("57239", "3", "2017-05-31 15:19:58", "137.74.201.99", "4");
INSERT INTO `wp_rg_form_view` VALUES("57240", "10", "2017-05-31 15:29:27", "51.255.65.38", "30");
INSERT INTO `wp_rg_form_view` VALUES("57241", "3", "2017-05-31 16:20:09", "202.46.55.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("57242", "10", "2017-05-31 16:20:29", "202.46.55.176", "29");
INSERT INTO `wp_rg_form_view` VALUES("57243", "10", "2017-05-31 17:05:20", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57244", "2", "2017-05-31 17:19:45", "194.187.170.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("57245", "3", "2017-05-31 17:26:34", "202.46.50.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("57246", "3", "2017-05-31 18:02:14", "194.187.170.128", "47");
INSERT INTO `wp_rg_form_view` VALUES("57247", "10", "2017-05-31 18:02:14", "194.187.170.128", "153");
INSERT INTO `wp_rg_form_view` VALUES("57248", "2", "2017-05-31 18:11:58", "157.55.39.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("57249", "11", "2017-05-31 18:14:25", "157.55.39.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("57250", "6", "2017-05-31 18:32:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57251", "9", "2017-05-31 18:32:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57252", "8", "2017-05-31 18:32:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57253", "13", "2017-05-31 18:32:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57254", "15", "2017-05-31 18:32:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57255", "3", "2017-05-31 19:04:57", "40.77.167.93", "32");
INSERT INTO `wp_rg_form_view` VALUES("57256", "6", "2017-05-31 19:04:57", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("57257", "9", "2017-05-31 19:04:58", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("57258", "8", "2017-05-31 19:04:58", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("57259", "10", "2017-05-31 19:04:58", "40.77.167.93", "25");
INSERT INTO `wp_rg_form_view` VALUES("57260", "13", "2017-05-31 19:04:59", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("57261", "15", "2017-05-31 19:04:59", "40.77.167.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("57262", "10", "2017-05-31 20:00:18", "157.55.39.201", "49");
INSERT INTO `wp_rg_form_view` VALUES("57263", "3", "2017-05-31 20:00:18", "157.55.39.201", "5");
INSERT INTO `wp_rg_form_view` VALUES("57264", "10", "2017-05-31 21:05:44", "184.66.248.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("57265", "3", "2017-05-31 21:47:44", "66.249.79.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("57266", "10", "2017-05-31 22:05:45", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57267", "3", "2017-05-31 22:34:56", "207.46.13.126", "3");
INSERT INTO `wp_rg_form_view` VALUES("57268", "10", "2017-05-31 23:06:06", "184.66.248.195", "47");
INSERT INTO `wp_rg_form_view` VALUES("57269", "3", "2017-05-31 23:10:17", "199.21.99.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("57270", "3", "2017-06-01 00:05:33", "202.46.52.204", "9");
INSERT INTO `wp_rg_form_view` VALUES("57271", "10", "2017-06-01 00:05:34", "202.46.52.204", "75");
INSERT INTO `wp_rg_form_view` VALUES("57272", "10", "2017-06-01 01:06:27", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57273", "15", "2017-06-01 01:16:24", "217.182.132.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("57274", "3", "2017-06-01 01:16:25", "217.182.132.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("57275", "10", "2017-06-01 02:06:49", "184.66.248.195", "139");
INSERT INTO `wp_rg_form_view` VALUES("57276", "3", "2017-06-01 02:07:36", "66.249.79.84", "21");
INSERT INTO `wp_rg_form_view` VALUES("57277", "11", "2017-06-01 02:16:40", "157.55.39.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("57278", "2", "2017-06-01 02:23:29", "157.55.39.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("57279", "10", "2017-06-01 03:07:08", "184.66.248.195", "57");
INSERT INTO `wp_rg_form_view` VALUES("57280", "3", "2017-06-01 03:16:49", "54.74.221.255", "7");
INSERT INTO `wp_rg_form_view` VALUES("57281", "5", "2017-06-01 03:41:32", "217.182.132.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("57282", "10", "2017-06-01 04:07:28", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57283", "3", "2017-06-01 04:33:58", "46.118.158.86", "5");
INSERT INTO `wp_rg_form_view` VALUES("57284", "10", "2017-06-01 05:07:49", "184.66.248.195", "129");
INSERT INTO `wp_rg_form_view` VALUES("57285", "3", "2017-06-01 05:08:32", "51.255.65.16", "22");
INSERT INTO `wp_rg_form_view` VALUES("57286", "3", "2017-06-01 06:00:40", "164.132.161.96", "31");
INSERT INTO `wp_rg_form_view` VALUES("57287", "10", "2017-06-01 06:00:40", "164.132.161.96", "44");
INSERT INTO `wp_rg_form_view` VALUES("57288", "6", "2017-06-01 06:35:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57289", "9", "2017-06-01 06:35:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57290", "8", "2017-06-01 06:35:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57291", "13", "2017-06-01 06:35:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57292", "15", "2017-06-01 06:35:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57293", "3", "2017-06-01 07:08:29", "46.118.117.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("57294", "10", "2017-06-01 07:08:31", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57295", "10", "2017-06-01 08:08:31", "184.66.248.195", "56");
INSERT INTO `wp_rg_form_view` VALUES("57296", "3", "2017-06-01 08:24:33", "207.46.13.126", "6");
INSERT INTO `wp_rg_form_view` VALUES("57297", "13", "2017-06-01 08:30:47", "66.249.66.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("57298", "10", "2017-06-01 09:08:31", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57299", "3", "2017-06-01 09:26:12", "194.187.170.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("57300", "10", "2017-06-01 10:08:54", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57301", "3", "2017-06-01 10:15:14", "207.46.13.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("57302", "3", "2017-06-01 11:01:38", "46.118.123.232", "7");
INSERT INTO `wp_rg_form_view` VALUES("57303", "10", "2017-06-01 11:08:52", "184.66.248.195", "40");
INSERT INTO `wp_rg_form_view` VALUES("57304", "10", "2017-06-01 12:01:56", "66.249.92.212", "57");
INSERT INTO `wp_rg_form_view` VALUES("57305", "3", "2017-06-01 12:20:13", "217.182.132.61", "9");
INSERT INTO `wp_rg_form_view` VALUES("57306", "10", "2017-06-01 13:09:12", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57307", "3", "2017-06-01 13:25:17", "37.115.187.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57308", "10", "2017-06-01 14:09:34", "184.66.248.195", "608");
INSERT INTO `wp_rg_form_view` VALUES("57309", "3", "2017-06-01 14:24:31", "207.46.13.0", "95");
INSERT INTO `wp_rg_form_view` VALUES("57310", "9", "2017-06-01 14:24:38", "207.46.13.0", "3");
INSERT INTO `wp_rg_form_view` VALUES("57311", "8", "2017-06-01 14:24:40", "207.46.13.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("57312", "5", "2017-06-01 14:24:49", "207.46.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("57313", "13", "2017-06-01 14:24:55", "207.46.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("57314", "6", "2017-06-01 14:25:19", "207.46.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("57315", "10", "2017-06-01 15:09:35", "184.66.248.195", "67");
INSERT INTO `wp_rg_form_view` VALUES("57316", "3", "2017-06-01 15:26:59", "207.46.13.110", "10");
INSERT INTO `wp_rg_form_view` VALUES("57317", "11", "2017-06-01 15:29:23", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("57318", "2", "2017-06-01 15:29:23", "138.197.73.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("57319", "3", "2017-06-01 16:04:44", "66.249.79.88", "5");
INSERT INTO `wp_rg_form_view` VALUES("57320", "10", "2017-06-01 16:04:45", "66.249.79.88", "38");
INSERT INTO `wp_rg_form_view` VALUES("57321", "2", "2017-06-01 16:53:55", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("57322", "3", "2017-06-01 17:09:52", "77.75.79.101", "11");
INSERT INTO `wp_rg_form_view` VALUES("57323", "10", "2017-06-01 17:09:52", "77.75.79.101", "83");
INSERT INTO `wp_rg_form_view` VALUES("57324", "14", "2017-06-01 17:38:05", "194.187.170.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("57325", "8", "2017-06-01 17:52:53", "137.74.207.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("57326", "3", "2017-06-01 18:44:16", "142.104.37.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("57327", "10", "2017-06-01 18:44:17", "142.104.37.89", "18");
INSERT INTO `wp_rg_form_view` VALUES("57328", "2", "2017-06-01 19:23:11", "107.172.3.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("57329", "3", "2017-06-01 19:25:07", "194.187.170.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("57330", "10", "2017-06-01 19:25:07", "194.187.170.135", "9");
INSERT INTO `wp_rg_form_view` VALUES("57331", "3", "2017-06-01 20:24:54", "207.46.13.0", "6");
INSERT INTO `wp_rg_form_view` VALUES("57332", "10", "2017-06-01 20:24:54", "207.46.13.0", "37");
INSERT INTO `wp_rg_form_view` VALUES("57333", "3", "2017-06-01 21:10:29", "217.182.132.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("57334", "10", "2017-06-01 21:10:31", "217.182.132.192", "47");
INSERT INTO `wp_rg_form_view` VALUES("57335", "10", "2017-06-01 22:03:36", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("57336", "3", "2017-06-01 22:38:03", "66.249.79.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("57337", "10", "2017-06-01 23:13:53", "184.66.248.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("57338", "3", "2017-06-01 23:14:11", "203.173.182.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("57339", "12", "2017-06-01 23:29:56", "164.132.161.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("57340", "10", "2017-06-02 00:13:53", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57341", "10", "2017-06-02 01:05:37", "72.14.199.148", "30");
INSERT INTO `wp_rg_form_view` VALUES("57342", "3", "2017-06-02 01:07:59", "194.187.170.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("57343", "14", "2017-06-02 01:30:43", "104.166.98.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("57344", "3", "2017-06-02 02:02:22", "207.46.13.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("57345", "10", "2017-06-02 02:02:22", "207.46.13.56", "29");
INSERT INTO `wp_rg_form_view` VALUES("57346", "3", "2017-06-02 03:04:04", "202.46.52.78", "33");
INSERT INTO `wp_rg_form_view` VALUES("57347", "10", "2017-06-02 03:04:04", "202.46.52.78", "34");
INSERT INTO `wp_rg_form_view` VALUES("57348", "6", "2017-06-02 03:23:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57349", "9", "2017-06-02 03:23:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57350", "8", "2017-06-02 03:23:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57351", "13", "2017-06-02 03:23:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57352", "15", "2017-06-02 03:23:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57353", "10", "2017-06-02 04:14:05", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57354", "3", "2017-06-02 04:42:55", "207.46.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("57355", "3", "2017-06-02 05:13:01", "66.249.79.86", "5");
INSERT INTO `wp_rg_form_view` VALUES("57356", "10", "2017-06-02 05:13:01", "66.249.79.86", "38");
INSERT INTO `wp_rg_form_view` VALUES("57357", "10", "2017-06-02 06:14:15", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57358", "3", "2017-06-02 06:50:01", "202.46.55.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("57359", "3", "2017-06-02 07:05:41", "81.158.93.232", "15");
INSERT INTO `wp_rg_form_view` VALUES("57360", "10", "2017-06-02 07:05:41", "81.158.93.232", "83");
INSERT INTO `wp_rg_form_view` VALUES("57361", "10", "2017-06-02 08:14:15", "184.66.248.195", "47");
INSERT INTO `wp_rg_form_view` VALUES("57362", "3", "2017-06-02 08:18:01", "51.255.65.35", "10");
INSERT INTO `wp_rg_form_view` VALUES("57363", "3", "2017-06-02 09:05:11", "46.118.158.86", "10");
INSERT INTO `wp_rg_form_view` VALUES("57364", "10", "2017-06-02 09:06:29", "66.249.66.212", "39");
INSERT INTO `wp_rg_form_view` VALUES("57365", "3", "2017-06-02 10:03:28", "194.187.170.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("57366", "10", "2017-06-02 10:03:28", "194.187.170.137", "29");
INSERT INTO `wp_rg_form_view` VALUES("57367", "3", "2017-06-02 11:01:00", "194.187.170.137", "7");
INSERT INTO `wp_rg_form_view` VALUES("57368", "10", "2017-06-02 11:01:01", "194.187.170.137", "56");
INSERT INTO `wp_rg_form_view` VALUES("57369", "12", "2017-06-02 11:56:18", "202.46.58.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("57370", "10", "2017-06-02 12:00:05", "184.66.129.248", "21");
INSERT INTO `wp_rg_form_view` VALUES("57371", "3", "2017-06-02 12:18:38", "207.46.13.0", "5");
INSERT INTO `wp_rg_form_view` VALUES("57372", "3", "2017-06-02 13:02:58", "202.46.56.203", "2");
INSERT INTO `wp_rg_form_view` VALUES("57373", "10", "2017-06-02 13:02:58", "202.46.56.203", "20");
INSERT INTO `wp_rg_form_view` VALUES("57374", "10", "2017-06-02 14:14:21", "72.14.199.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("57375", "3", "2017-06-02 15:00:39", "202.46.49.147", "30");
INSERT INTO `wp_rg_form_view` VALUES("57376", "10", "2017-06-02 15:00:41", "202.46.49.147", "25");
INSERT INTO `wp_rg_form_view` VALUES("57377", "6", "2017-06-02 15:20:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57378", "9", "2017-06-02 15:20:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57379", "8", "2017-06-02 15:20:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57380", "13", "2017-06-02 15:20:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57381", "15", "2017-06-02 15:20:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57382", "10", "2017-06-02 16:06:23", "157.55.39.9", "21");
INSERT INTO `wp_rg_form_view` VALUES("57383", "3", "2017-06-02 16:06:23", "157.55.39.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("57384", "10", "2017-06-02 17:04:44", "194.187.170.120", "21");
INSERT INTO `wp_rg_form_view` VALUES("57385", "3", "2017-06-02 17:04:45", "194.187.170.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("57386", "3", "2017-06-02 18:09:42", "64.180.74.235", "10");
INSERT INTO `wp_rg_form_view` VALUES("57387", "10", "2017-06-02 18:09:58", "64.180.74.235", "66");
INSERT INTO `wp_rg_form_view` VALUES("57388", "10", "2017-06-02 19:07:35", "68.180.229.228", "79");
INSERT INTO `wp_rg_form_view` VALUES("57389", "3", "2017-06-02 19:07:36", "68.180.229.228", "10");
INSERT INTO `wp_rg_form_view` VALUES("57390", "3", "2017-06-02 20:03:57", "77.75.76.165", "12");
INSERT INTO `wp_rg_form_view` VALUES("57391", "10", "2017-06-02 20:03:57", "77.75.76.165", "47");
INSERT INTO `wp_rg_form_view` VALUES("57392", "3", "2017-06-02 21:01:12", "66.249.79.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("57393", "10", "2017-06-02 21:08:48", "68.180.229.228", "57");
INSERT INTO `wp_rg_form_view` VALUES("57394", "15", "2017-06-02 21:31:37", "207.46.13.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("57395", "10", "2017-06-02 22:15:56", "184.66.248.195", "66");
INSERT INTO `wp_rg_form_view` VALUES("57396", "14", "2017-06-02 22:40:33", "40.77.167.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("57397", "3", "2017-06-02 22:50:06", "100.43.85.12", "9");
INSERT INTO `wp_rg_form_view` VALUES("57398", "10", "2017-06-02 23:16:16", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57399", "3", "2017-06-02 23:33:16", "202.46.56.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("57400", "2", "2017-06-02 23:47:04", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57401", "10", "2017-06-03 00:06:34", "202.46.52.144", "30");
INSERT INTO `wp_rg_form_view` VALUES("57402", "3", "2017-06-03 00:06:35", "202.46.52.144", "8");
INSERT INTO `wp_rg_form_view` VALUES("57403", "3", "2017-06-03 01:02:40", "194.187.170.148", "6");
INSERT INTO `wp_rg_form_view` VALUES("57404", "10", "2017-06-03 01:02:41", "194.187.170.148", "58");
INSERT INTO `wp_rg_form_view` VALUES("57405", "5", "2017-06-03 01:28:30", "77.75.79.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("57406", "10", "2017-06-03 02:16:48", "184.66.248.195", "66");
INSERT INTO `wp_rg_form_view` VALUES("57407", "6", "2017-06-03 02:18:32", "217.182.132.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("57408", "3", "2017-06-03 02:18:33", "217.182.132.6", "10");
INSERT INTO `wp_rg_form_view` VALUES("57409", "3", "2017-06-03 03:07:28", "68.180.229.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("57410", "10", "2017-06-03 03:07:28", "68.180.229.228", "11");
INSERT INTO `wp_rg_form_view` VALUES("57411", "2", "2017-06-03 03:11:51", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("57412", "10", "2017-06-03 04:17:08", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57413", "10", "2017-06-03 05:17:29", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57414", "3", "2017-06-03 05:56:51", "51.255.65.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("57415", "3", "2017-06-03 06:05:42", "217.182.132.60", "51");
INSERT INTO `wp_rg_form_view` VALUES("57416", "10", "2017-06-03 06:05:42", "217.182.132.60", "360");
INSERT INTO `wp_rg_form_view` VALUES("57417", "11", "2017-06-03 06:14:17", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("57418", "2", "2017-06-03 06:14:22", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("57419", "14", "2017-06-03 06:15:54", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("57420", "15", "2017-06-03 06:18:17", "37.187.56.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("57421", "10", "2017-06-03 07:04:50", "40.77.167.12", "30");
INSERT INTO `wp_rg_form_view` VALUES("57422", "3", "2017-06-03 07:04:51", "40.77.167.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("57423", "3", "2017-06-03 08:02:55", "46.118.158.86", "7");
INSERT INTO `wp_rg_form_view` VALUES("57424", "3", "2017-06-03 08:02:55", "46.118.158.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("57425", "10", "2017-06-03 08:11:17", "66.249.79.138", "41");
INSERT INTO `wp_rg_form_view` VALUES("57426", "10", "2017-06-03 09:18:07", "184.66.248.195", "49");
INSERT INTO `wp_rg_form_view` VALUES("57427", "3", "2017-06-03 09:21:44", "194.187.170.111", "6");
INSERT INTO `wp_rg_form_view` VALUES("57428", "13", "2017-06-03 09:43:19", "194.187.170.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("57429", "10", "2017-06-03 10:05:09", "66.249.79.134", "39");
INSERT INTO `wp_rg_form_view` VALUES("57430", "3", "2017-06-03 10:05:10", "66.249.79.134", "13");
INSERT INTO `wp_rg_form_view` VALUES("57431", "10", "2017-06-03 11:18:07", "184.66.248.195", "26");
INSERT INTO `wp_rg_form_view` VALUES("57432", "3", "2017-06-03 11:27:37", "68.180.229.228", "29");
INSERT INTO `wp_rg_form_view` VALUES("57433", "6", "2017-06-03 11:42:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57434", "9", "2017-06-03 11:42:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57435", "8", "2017-06-03 11:42:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57436", "13", "2017-06-03 11:42:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57437", "15", "2017-06-03 11:42:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57438", "3", "2017-06-03 12:05:06", "202.46.58.83", "4");
INSERT INTO `wp_rg_form_view` VALUES("57439", "10", "2017-06-03 12:05:07", "202.46.58.83", "20");
INSERT INTO `wp_rg_form_view` VALUES("57440", "10", "2017-06-03 13:18:07", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57441", "3", "2017-06-03 13:40:02", "74.56.183.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("57442", "10", "2017-06-03 14:18:11", "184.66.248.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("57443", "3", "2017-06-03 14:36:03", "46.118.123.232", "2");
INSERT INTO `wp_rg_form_view` VALUES("57444", "10", "2017-06-03 15:16:25", "24.108.13.92", "41");
INSERT INTO `wp_rg_form_view` VALUES("57445", "3", "2017-06-03 15:17:51", "77.75.79.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("57446", "13", "2017-06-03 15:54:24", "217.182.132.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("57447", "3", "2017-06-03 16:10:38", "109.162.67.12", "4");
INSERT INTO `wp_rg_form_view` VALUES("57448", "10", "2017-06-03 16:18:07", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57449", "10", "2017-06-03 17:18:08", "184.66.248.195", "38");
INSERT INTO `wp_rg_form_view` VALUES("57450", "3", "2017-06-03 17:35:18", "157.55.39.208", "7");
INSERT INTO `wp_rg_form_view` VALUES("57451", "3", "2017-06-03 18:08:40", "194.187.170.111", "6");
INSERT INTO `wp_rg_form_view` VALUES("57452", "10", "2017-06-03 18:08:40", "194.187.170.111", "47");
INSERT INTO `wp_rg_form_view` VALUES("57453", "10", "2017-06-03 19:18:10", "184.66.248.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("57454", "14", "2017-06-03 19:33:58", "108.173.75.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("57455", "3", "2017-06-03 19:34:42", "108.173.75.96", "4");
INSERT INTO `wp_rg_form_view` VALUES("57456", "2", "2017-06-03 19:48:41", "107.172.3.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("57457", "3", "2017-06-03 20:03:21", "66.249.79.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("57458", "10", "2017-06-03 20:03:21", "66.249.79.136", "20");
INSERT INTO `wp_rg_form_view` VALUES("57459", "3", "2017-06-03 21:10:29", "173.208.208.34", "4");
INSERT INTO `wp_rg_form_view` VALUES("57460", "10", "2017-06-03 21:10:31", "173.208.208.34", "39");
INSERT INTO `wp_rg_form_view` VALUES("57461", "3", "2017-06-03 22:05:55", "108.173.75.96", "3");
INSERT INTO `wp_rg_form_view` VALUES("57462", "10", "2017-06-03 22:05:55", "108.173.75.96", "29");
INSERT INTO `wp_rg_form_view` VALUES("57463", "3", "2017-06-03 23:11:39", "51.255.65.35", "30");
INSERT INTO `wp_rg_form_view` VALUES("57464", "10", "2017-06-03 23:18:09", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("57465", "6", "2017-06-03 23:18:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57466", "9", "2017-06-03 23:18:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57467", "8", "2017-06-03 23:18:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57468", "13", "2017-06-03 23:18:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57469", "15", "2017-06-03 23:18:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57470", "10", "2017-06-04 00:18:08", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57471", "3", "2017-06-04 00:20:30", "66.249.79.134", "4");
INSERT INTO `wp_rg_form_view` VALUES("57472", "10", "2017-06-04 01:18:08", "184.66.248.195", "29");
INSERT INTO `wp_rg_form_view` VALUES("57473", "3", "2017-06-04 01:24:38", "194.187.170.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("57474", "3", "2017-06-04 02:08:02", "157.55.39.9", "7");
INSERT INTO `wp_rg_form_view` VALUES("57475", "10", "2017-06-04 02:08:02", "157.55.39.9", "38");
INSERT INTO `wp_rg_form_view` VALUES("57476", "14", "2017-06-04 02:24:55", "24.68.4.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("57477", "10", "2017-06-04 03:01:12", "24.108.13.92", "60");
INSERT INTO `wp_rg_form_view` VALUES("57478", "14", "2017-06-04 03:10:56", "104.168.75.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("57479", "3", "2017-06-04 03:16:14", "51.255.65.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("57480", "15", "2017-06-04 03:16:49", "207.46.13.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("57481", "3", "2017-06-04 04:12:24", "46.118.117.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("57482", "10", "2017-06-04 04:18:08", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57483", "10", "2017-06-04 05:18:08", "184.66.248.195", "39");
INSERT INTO `wp_rg_form_view` VALUES("57484", "3", "2017-06-04 05:53:47", "54.74.221.255", "5");
INSERT INTO `wp_rg_form_view` VALUES("57485", "3", "2017-06-04 06:14:05", "37.115.187.118", "4");
INSERT INTO `wp_rg_form_view` VALUES("57486", "10", "2017-06-04 06:18:09", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57487", "10", "2017-06-04 07:18:10", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57488", "3", "2017-06-04 07:19:26", "46.118.158.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("57489", "3", "2017-06-04 08:01:29", "66.249.79.136", "5");
INSERT INTO `wp_rg_form_view` VALUES("57490", "10", "2017-06-04 08:01:29", "66.249.79.136", "20");
INSERT INTO `wp_rg_form_view` VALUES("57491", "14", "2017-06-04 08:41:02", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("57492", "10", "2017-06-04 09:18:08", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57493", "3", "2017-06-04 09:21:24", "66.249.79.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("57494", "10", "2017-06-04 10:14:45", "40.77.167.17", "75");
INSERT INTO `wp_rg_form_view` VALUES("57495", "3", "2017-06-04 10:14:46", "40.77.167.17", "8");
INSERT INTO `wp_rg_form_view` VALUES("57496", "10", "2017-06-04 11:18:09", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57497", "3", "2017-06-04 11:19:41", "194.187.170.108", "3");
INSERT INTO `wp_rg_form_view` VALUES("57498", "2", "2017-06-04 11:52:45", "107.172.3.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("57499", "3", "2017-06-04 12:02:14", "202.46.58.14", "7");
INSERT INTO `wp_rg_form_view` VALUES("57500", "10", "2017-06-04 12:02:15", "202.46.58.14", "11");
INSERT INTO `wp_rg_form_view` VALUES("57501", "3", "2017-06-04 13:08:54", "202.46.57.12", "6");
INSERT INTO `wp_rg_form_view` VALUES("57502", "10", "2017-06-04 13:08:55", "202.46.57.12", "29");
INSERT INTO `wp_rg_form_view` VALUES("57503", "3", "2017-06-04 14:04:30", "51.255.65.66", "7");
INSERT INTO `wp_rg_form_view` VALUES("57504", "10", "2017-06-04 14:04:30", "51.255.65.66", "38");
INSERT INTO `wp_rg_form_view` VALUES("57505", "3", "2017-06-04 15:05:19", "217.182.132.5", "10");
INSERT INTO `wp_rg_form_view` VALUES("57506", "10", "2017-06-04 15:05:19", "217.182.132.5", "65");
INSERT INTO `wp_rg_form_view` VALUES("57507", "8", "2017-06-04 15:22:12", "202.46.51.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("57508", "9", "2017-06-04 15:54:26", "164.132.161.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("57509", "10", "2017-06-04 16:15:38", "184.66.129.248", "40");
INSERT INTO `wp_rg_form_view` VALUES("57510", "3", "2017-06-04 16:19:25", "157.55.39.208", "5");
INSERT INTO `wp_rg_form_view` VALUES("57511", "10", "2017-06-04 17:18:09", "184.66.248.195", "75");
INSERT INTO `wp_rg_form_view` VALUES("57512", "3", "2017-06-04 17:18:14", "194.187.170.138", "14");
INSERT INTO `wp_rg_form_view` VALUES("57513", "3", "2017-06-04 18:09:34", "217.182.132.51", "8");
INSERT INTO `wp_rg_form_view` VALUES("57514", "10", "2017-06-04 18:09:35", "217.182.132.51", "66");
INSERT INTO `wp_rg_form_view` VALUES("57515", "3", "2017-06-04 19:01:28", "194.187.170.138", "89");
INSERT INTO `wp_rg_form_view` VALUES("57516", "10", "2017-06-04 19:01:29", "194.187.170.138", "362");
INSERT INTO `wp_rg_form_view` VALUES("57517", "15", "2017-06-04 19:25:19", "207.46.13.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("57518", "8", "2017-06-04 19:25:34", "207.46.13.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("57519", "6", "2017-06-04 19:36:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57520", "9", "2017-06-04 19:36:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57521", "13", "2017-06-04 19:37:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57522", "10", "2017-06-04 20:18:10", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57523", "3", "2017-06-04 20:26:51", "46.118.117.131", "6");
INSERT INTO `wp_rg_form_view` VALUES("57524", "3", "2017-06-04 21:16:37", "46.118.117.131", "5");
INSERT INTO `wp_rg_form_view` VALUES("57525", "10", "2017-06-04 21:18:09", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57526", "3", "2017-06-04 22:02:10", "157.55.39.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("57527", "10", "2017-06-04 22:02:10", "157.55.39.208", "21");
INSERT INTO `wp_rg_form_view` VALUES("57528", "10", "2017-06-04 23:18:11", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57529", "3", "2017-06-04 23:25:21", "77.75.77.32", "3");
INSERT INTO `wp_rg_form_view` VALUES("57530", "3", "2017-06-05 00:11:23", "77.75.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("57531", "10", "2017-06-05 00:11:23", "77.75.76.161", "11");
INSERT INTO `wp_rg_form_view` VALUES("57532", "3", "2017-06-05 01:04:23", "94.177.236.7", "19");
INSERT INTO `wp_rg_form_view` VALUES("57533", "10", "2017-06-05 01:04:23", "94.177.236.7", "111");
INSERT INTO `wp_rg_form_view` VALUES("57534", "3", "2017-06-05 02:00:48", "68.180.229.228", "8");
INSERT INTO `wp_rg_form_view` VALUES("57535", "10", "2017-06-05 02:10:36", "66.249.79.138", "50");
INSERT INTO `wp_rg_form_view` VALUES("57536", "13", "2017-06-05 03:03:59", "194.187.170.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("57537", "3", "2017-06-05 03:03:59", "194.187.170.104", "13");
INSERT INTO `wp_rg_form_view` VALUES("57538", "10", "2017-06-05 03:04:00", "194.187.170.104", "94");
INSERT INTO `wp_rg_form_view` VALUES("57539", "12", "2017-06-05 03:10:52", "194.187.170.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("57540", "14", "2017-06-05 03:12:36", "207.6.152.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("57541", "10", "2017-06-05 04:12:04", "184.66.129.248", "48");
INSERT INTO `wp_rg_form_view` VALUES("57542", "10", "2017-06-05 04:12:04", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("57543", "3", "2017-06-05 04:12:40", "164.132.161.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("57544", "14", "2017-06-05 04:28:49", "60.20.133.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("57545", "3", "2017-06-05 05:00:02", "207.46.13.110", "5");
INSERT INTO `wp_rg_form_view` VALUES("57546", "10", "2017-06-05 05:00:02", "207.46.13.110", "38");
INSERT INTO `wp_rg_form_view` VALUES("57547", "9", "2017-06-05 06:17:52", "40.77.167.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("57548", "3", "2017-06-05 06:17:54", "40.77.167.17", "27");
INSERT INTO `wp_rg_form_view` VALUES("57549", "10", "2017-06-05 06:17:55", "40.77.167.17", "110");
INSERT INTO `wp_rg_form_view` VALUES("57550", "10", "2017-06-05 07:18:30", "184.66.248.195", "17");
INSERT INTO `wp_rg_form_view` VALUES("57551", "3", "2017-06-05 07:26:44", "46.118.123.232", "29");
INSERT INTO `wp_rg_form_view` VALUES("57552", "6", "2017-06-05 07:36:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57553", "9", "2017-06-05 07:36:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57554", "8", "2017-06-05 07:36:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57555", "13", "2017-06-05 07:36:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57556", "15", "2017-06-05 07:36:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57557", "3", "2017-06-05 08:01:16", "217.182.132.149", "10");
INSERT INTO `wp_rg_form_view` VALUES("57558", "10", "2017-06-05 08:01:16", "217.182.132.149", "39");
INSERT INTO `wp_rg_form_view` VALUES("57559", "3", "2017-06-05 09:02:49", "51.255.65.78", "5");
INSERT INTO `wp_rg_form_view` VALUES("57560", "10", "2017-06-05 09:02:49", "51.255.65.78", "29");
INSERT INTO `wp_rg_form_view` VALUES("57561", "10", "2017-06-05 10:18:30", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57562", "10", "2017-06-05 11:18:30", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57563", "3", "2017-06-05 11:42:13", "37.115.187.118", "3");
INSERT INTO `wp_rg_form_view` VALUES("57564", "10", "2017-06-05 12:18:31", "184.66.248.195", "22");
INSERT INTO `wp_rg_form_view` VALUES("57565", "3", "2017-06-05 12:18:56", "46.118.158.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("57566", "10", "2017-06-05 13:18:30", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57567", "3", "2017-06-05 13:27:32", "202.46.51.192", "2");
INSERT INTO `wp_rg_form_view` VALUES("57568", "10", "2017-06-05 14:18:31", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57569", "3", "2017-06-05 14:30:06", "51.255.65.5", "4");
INSERT INTO `wp_rg_form_view` VALUES("57570", "3", "2017-06-05 15:07:33", "202.46.51.28", "4");
INSERT INTO `wp_rg_form_view` VALUES("57571", "10", "2017-06-05 15:07:33", "202.46.51.28", "29");
INSERT INTO `wp_rg_form_view` VALUES("57572", "10", "2017-06-05 16:18:51", "184.66.248.195", "39");
INSERT INTO `wp_rg_form_view` VALUES("57573", "3", "2017-06-05 16:20:01", "202.46.54.11", "5");
INSERT INTO `wp_rg_form_view` VALUES("57574", "3", "2017-06-05 17:02:45", "157.55.39.208", "8");
INSERT INTO `wp_rg_form_view` VALUES("57575", "10", "2017-06-05 17:02:45", "157.55.39.208", "58");
INSERT INTO `wp_rg_form_view` VALUES("57576", "8", "2017-06-05 17:29:40", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57577", "3", "2017-06-05 18:11:11", "77.75.78.165", "11");
INSERT INTO `wp_rg_form_view` VALUES("57578", "10", "2017-06-05 18:11:11", "77.75.78.165", "80");
INSERT INTO `wp_rg_form_view` VALUES("57579", "15", "2017-06-05 18:42:31", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57580", "3", "2017-06-05 19:11:48", "69.197.177.50", "9");
INSERT INTO `wp_rg_form_view` VALUES("57581", "13", "2017-06-05 19:13:58", "202.46.53.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("57582", "10", "2017-06-05 19:13:58", "202.46.53.113", "29");
INSERT INTO `wp_rg_form_view` VALUES("57583", "3", "2017-06-05 20:06:59", "164.132.161.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("57584", "10", "2017-06-05 20:07:00", "164.132.161.95", "38");
INSERT INTO `wp_rg_form_view` VALUES("57585", "3", "2017-06-05 21:03:33", "142.104.37.87", "13");
INSERT INTO `wp_rg_form_view` VALUES("57586", "10", "2017-06-05 21:03:44", "142.104.37.87", "87");
INSERT INTO `wp_rg_form_view` VALUES("57587", "3", "2017-06-05 22:02:32", "51.255.65.52", "8");
INSERT INTO `wp_rg_form_view` VALUES("57588", "10", "2017-06-05 22:02:32", "51.255.65.52", "58");
INSERT INTO `wp_rg_form_view` VALUES("57589", "10", "2017-06-05 23:18:59", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57590", "3", "2017-06-05 23:38:31", "46.118.117.131", "4");
INSERT INTO `wp_rg_form_view` VALUES("57591", "3", "2017-06-06 00:14:00", "202.46.49.190", "14");
INSERT INTO `wp_rg_form_view` VALUES("57592", "10", "2017-06-06 00:14:00", "202.46.49.190", "105");
INSERT INTO `wp_rg_form_view` VALUES("57593", "14", "2017-06-06 00:15:07", "107.175.89.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("57594", "10", "2017-06-06 01:18:58", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57595", "3", "2017-06-06 01:19:43", "66.249.79.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("57596", "3", "2017-06-06 02:00:24", "157.55.39.123", "3");
INSERT INTO `wp_rg_form_view` VALUES("57597", "10", "2017-06-06 02:00:24", "157.55.39.123", "11");
INSERT INTO `wp_rg_form_view` VALUES("57598", "3", "2017-06-06 03:00:29", "37.115.187.118", "6");
INSERT INTO `wp_rg_form_view` VALUES("57599", "10", "2017-06-06 03:18:58", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57600", "3", "2017-06-06 04:04:04", "24.108.14.97", "35");
INSERT INTO `wp_rg_form_view` VALUES("57601", "10", "2017-06-06 04:04:04", "24.108.14.97", "53");
INSERT INTO `wp_rg_form_view` VALUES("57602", "6", "2017-06-06 04:17:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57603", "9", "2017-06-06 04:17:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57604", "8", "2017-06-06 04:17:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57605", "13", "2017-06-06 04:17:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57606", "15", "2017-06-06 04:17:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57607", "3", "2017-06-06 05:04:03", "66.249.79.136", "18");
INSERT INTO `wp_rg_form_view` VALUES("57608", "8", "2017-06-06 05:04:03", "66.249.79.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("57609", "13", "2017-06-06 05:04:04", "66.249.79.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("57610", "10", "2017-06-06 05:18:59", "184.66.248.195", "57");
INSERT INTO `wp_rg_form_view` VALUES("57611", "11", "2017-06-06 05:21:38", "159.203.82.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("57612", "2", "2017-06-06 05:21:38", "159.203.82.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("57613", "3", "2017-06-06 06:00:01", "172.103.55.197", "9");
INSERT INTO `wp_rg_form_view` VALUES("57614", "10", "2017-06-06 06:00:02", "172.103.55.197", "56");
INSERT INTO `wp_rg_form_view` VALUES("57615", "9", "2017-06-06 06:14:46", "217.182.132.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("57616", "14", "2017-06-06 06:56:24", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("57617", "3", "2017-06-06 07:00:10", "54.165.59.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("57618", "10", "2017-06-06 07:00:10", "54.165.59.7", "11");
INSERT INTO `wp_rg_form_view` VALUES("57619", "14", "2017-06-06 07:31:20", "62.210.79.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("57620", "3", "2017-06-06 08:00:19", "164.132.161.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("57621", "10", "2017-06-06 08:00:19", "164.132.161.92", "30");
INSERT INTO `wp_rg_form_view` VALUES("57622", "10", "2017-06-06 09:19:00", "184.66.248.195", "57");
INSERT INTO `wp_rg_form_view` VALUES("57623", "3", "2017-06-06 09:20:12", "217.182.132.59", "6");
INSERT INTO `wp_rg_form_view` VALUES("57624", "10", "2017-06-06 10:19:00", "184.66.248.195", "29");
INSERT INTO `wp_rg_form_view` VALUES("57625", "3", "2017-06-06 10:48:58", "157.55.39.208", "3");
INSERT INTO `wp_rg_form_view` VALUES("57626", "3", "2017-06-06 11:08:06", "46.118.117.131", "216");
INSERT INTO `wp_rg_form_view` VALUES("57627", "3", "2017-06-06 11:08:06", "46.118.117.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("57628", "10", "2017-06-06 11:13:20", "157.55.39.208", "1626");
INSERT INTO `wp_rg_form_view` VALUES("57629", "14", "2017-06-06 11:32:08", "45.55.156.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("57630", "11", "2017-06-06 11:32:13", "45.55.156.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("57631", "6", "2017-06-06 11:40:38", "45.55.156.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("57632", "9", "2017-06-06 11:51:53", "45.55.156.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("57633", "10", "2017-06-06 12:00:08", "45.55.156.183", "2839");
INSERT INTO `wp_rg_form_view` VALUES("57634", "3", "2017-06-06 12:00:08", "45.55.156.183", "364");
INSERT INTO `wp_rg_form_view` VALUES("57635", "15", "2017-06-06 12:04:42", "45.55.156.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("57636", "2", "2017-06-06 12:39:52", "45.55.156.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("57637", "13", "2017-06-06 12:52:17", "45.55.156.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("57638", "3", "2017-06-06 13:16:26", "157.55.39.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("57639", "10", "2017-06-06 13:16:27", "157.55.39.123", "20");
INSERT INTO `wp_rg_form_view` VALUES("57640", "10", "2017-06-06 14:19:03", "184.66.248.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("57641", "3", "2017-06-06 14:34:55", "154.5.182.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("57642", "10", "2017-06-06 15:19:02", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57643", "3", "2017-06-06 15:31:19", "202.46.52.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("57644", "3", "2017-06-06 16:00:49", "46.118.117.131", "32");
INSERT INTO `wp_rg_form_view` VALUES("57645", "10", "2017-06-06 16:03:47", "51.255.65.89", "26");
INSERT INTO `wp_rg_form_view` VALUES("57646", "6", "2017-06-06 16:52:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57647", "9", "2017-06-06 16:52:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57648", "8", "2017-06-06 16:52:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57649", "13", "2017-06-06 16:52:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57650", "15", "2017-06-06 16:52:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57651", "3", "2017-06-06 17:11:17", "202.46.57.167", "7");
INSERT INTO `wp_rg_form_view` VALUES("57652", "10", "2017-06-06 17:11:18", "202.46.57.167", "20");
INSERT INTO `wp_rg_form_view` VALUES("57653", "3", "2017-06-06 18:11:26", "184.66.225.215", "13");
INSERT INTO `wp_rg_form_view` VALUES("57654", "10", "2017-06-06 18:11:26", "184.66.225.215", "66");
INSERT INTO `wp_rg_form_view` VALUES("57655", "10", "2017-06-06 19:19:30", "184.66.248.195", "29");
INSERT INTO `wp_rg_form_view` VALUES("57656", "3", "2017-06-06 19:24:42", "202.46.56.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("57657", "13", "2017-06-06 19:57:57", "202.46.53.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57658", "3", "2017-06-06 20:08:44", "66.249.79.138", "23");
INSERT INTO `wp_rg_form_view` VALUES("57659", "10", "2017-06-06 20:08:45", "66.249.79.138", "111");
INSERT INTO `wp_rg_form_view` VALUES("57660", "6", "2017-06-06 20:50:28", "46.229.168.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("57661", "11", "2017-06-06 20:53:38", "46.229.168.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("57662", "10", "2017-06-06 21:19:59", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57663", "3", "2017-06-06 21:37:56", "202.46.58.203", "3");
INSERT INTO `wp_rg_form_view` VALUES("57664", "8", "2017-06-06 22:11:24", "202.46.49.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("57665", "3", "2017-06-06 22:11:29", "202.46.49.95", "5");
INSERT INTO `wp_rg_form_view` VALUES("57666", "10", "2017-06-06 22:11:29", "202.46.49.95", "29");
INSERT INTO `wp_rg_form_view` VALUES("57667", "3", "2017-06-06 23:05:20", "68.180.229.228", "74");
INSERT INTO `wp_rg_form_view` VALUES("57668", "10", "2017-06-06 23:05:20", "68.180.229.228", "431");
INSERT INTO `wp_rg_form_view` VALUES("57669", "9", "2017-06-06 23:18:54", "40.77.167.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("57670", "15", "2017-06-06 23:18:58", "207.46.13.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("57671", "8", "2017-06-06 23:19:15", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57672", "10", "2017-06-07 00:08:15", "96.50.61.75", "30");
INSERT INTO `wp_rg_form_view` VALUES("57673", "3", "2017-06-07 00:08:16", "96.50.61.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("57674", "3", "2017-06-07 01:10:12", "207.46.13.181", "7");
INSERT INTO `wp_rg_form_view` VALUES("57675", "10", "2017-06-07 01:10:12", "207.46.13.181", "39");
INSERT INTO `wp_rg_form_view` VALUES("57676", "3", "2017-06-07 02:04:38", "202.46.48.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("57677", "10", "2017-06-07 02:04:38", "202.46.48.143", "20");
INSERT INTO `wp_rg_form_view` VALUES("57678", "5", "2017-06-07 03:00:17", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57679", "3", "2017-06-07 03:00:18", "207.46.13.181", "17");
INSERT INTO `wp_rg_form_view` VALUES("57680", "10", "2017-06-07 03:00:18", "207.46.13.181", "137");
INSERT INTO `wp_rg_form_view` VALUES("57681", "11", "2017-06-07 03:09:48", "104.192.6.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("57682", "2", "2017-06-07 03:11:07", "104.192.6.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("57683", "10", "2017-06-07 04:21:34", "184.66.248.195", "16");
INSERT INTO `wp_rg_form_view` VALUES("57684", "3", "2017-06-07 04:30:21", "207.46.13.181", "29");
INSERT INTO `wp_rg_form_view` VALUES("57685", "6", "2017-06-07 04:30:22", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57686", "9", "2017-06-07 04:30:22", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57687", "8", "2017-06-07 04:30:22", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57688", "13", "2017-06-07 04:30:23", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57689", "15", "2017-06-07 04:30:24", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57690", "10", "2017-06-07 05:21:54", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57691", "3", "2017-06-07 05:41:50", "40.77.167.64", "3");
INSERT INTO `wp_rg_form_view` VALUES("57692", "3", "2017-06-07 06:21:44", "51.255.65.5", "4");
INSERT INTO `wp_rg_form_view` VALUES("57693", "10", "2017-06-07 06:21:47", "51.255.65.5", "29");
INSERT INTO `wp_rg_form_view` VALUES("57694", "10", "2017-06-07 07:22:21", "184.66.248.195", "47");
INSERT INTO `wp_rg_form_view` VALUES("57695", "3", "2017-06-07 07:30:46", "207.46.13.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("57696", "10", "2017-06-07 08:22:38", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57697", "3", "2017-06-07 08:30:56", "51.255.71.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("57698", "10", "2017-06-07 09:02:24", "157.55.39.208", "12");
INSERT INTO `wp_rg_form_view` VALUES("57699", "3", "2017-06-07 09:02:24", "157.55.39.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("57700", "3", "2017-06-07 10:10:35", "207.46.13.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("57701", "10", "2017-06-07 10:10:36", "207.46.13.18", "20");
INSERT INTO `wp_rg_form_view` VALUES("57702", "3", "2017-06-07 11:02:24", "46.118.123.232", "4");
INSERT INTO `wp_rg_form_view` VALUES("57703", "10", "2017-06-07 11:12:46", "164.132.161.32", "20");
INSERT INTO `wp_rg_form_view` VALUES("57704", "10", "2017-06-07 12:23:05", "184.66.248.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("57705", "3", "2017-06-07 12:42:31", "202.46.56.191", "6");
INSERT INTO `wp_rg_form_view` VALUES("57706", "15", "2017-06-07 12:42:31", "202.46.56.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("57707", "10", "2017-06-07 13:23:04", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57708", "3", "2017-06-07 13:25:06", "37.115.187.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("57709", "3", "2017-06-07 14:13:32", "199.21.99.202", "33");
INSERT INTO `wp_rg_form_view` VALUES("57710", "10", "2017-06-07 14:22:41", "141.8.143.171", "43");
INSERT INTO `wp_rg_form_view` VALUES("57711", "6", "2017-06-07 14:41:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57712", "9", "2017-06-07 14:41:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57713", "8", "2017-06-07 14:41:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57714", "13", "2017-06-07 14:41:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57715", "15", "2017-06-07 14:41:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57716", "3", "2017-06-07 15:14:59", "66.249.79.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("57717", "10", "2017-06-07 15:14:59", "66.249.79.136", "39");
INSERT INTO `wp_rg_form_view` VALUES("57718", "3", "2017-06-07 16:12:38", "202.46.50.138", "5");
INSERT INTO `wp_rg_form_view` VALUES("57719", "10", "2017-06-07 16:12:38", "202.46.50.138", "38");
INSERT INTO `wp_rg_form_view` VALUES("57720", "10", "2017-06-07 17:23:07", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57721", "3", "2017-06-07 17:39:13", "199.59.150.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("57722", "3", "2017-06-07 18:02:29", "46.118.123.232", "12");
INSERT INTO `wp_rg_form_view` VALUES("57723", "10", "2017-06-07 18:16:49", "66.249.79.138", "58");
INSERT INTO `wp_rg_form_view` VALUES("57724", "3", "2017-06-07 19:03:57", "46.118.117.131", "6");
INSERT INTO `wp_rg_form_view` VALUES("57725", "10", "2017-06-07 19:05:50", "164.132.161.81", "40");
INSERT INTO `wp_rg_form_view` VALUES("57726", "10", "2017-06-07 20:23:07", "184.66.248.195", "70");
INSERT INTO `wp_rg_form_view` VALUES("57727", "3", "2017-06-07 20:27:54", "141.8.143.171", "10");
INSERT INTO `wp_rg_form_view` VALUES("57728", "10", "2017-06-07 21:00:07", "24.68.156.6", "67");
INSERT INTO `wp_rg_form_view` VALUES("57729", "3", "2017-06-07 21:00:07", "24.68.156.6", "13");
INSERT INTO `wp_rg_form_view` VALUES("57730", "3", "2017-06-07 22:22:13", "37.115.187.118", "13");
INSERT INTO `wp_rg_form_view` VALUES("57731", "3", "2017-06-07 22:22:13", "37.115.187.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57732", "10", "2017-06-07 22:23:06", "184.66.248.195", "103");
INSERT INTO `wp_rg_form_view` VALUES("57733", "11", "2017-06-07 22:54:09", "172.94.6.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("57734", "2", "2017-06-07 22:54:55", "172.94.6.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("57735", "11", "2017-06-07 23:08:26", "66.249.79.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("57736", "3", "2017-06-07 23:10:34", "69.146.169.206", "12");
INSERT INTO `wp_rg_form_view` VALUES("57737", "10", "2017-06-07 23:10:34", "69.146.169.206", "101");
INSERT INTO `wp_rg_form_view` VALUES("57738", "2", "2017-06-07 23:10:59", "69.146.169.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("57739", "14", "2017-06-08 00:07:08", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("57740", "10", "2017-06-08 00:23:07", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57741", "3", "2017-06-08 01:06:23", "220.181.108.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("57742", "10", "2017-06-08 01:06:23", "220.181.108.117", "20");
INSERT INTO `wp_rg_form_view` VALUES("57743", "3", "2017-06-08 02:00:48", "202.46.56.111", "7");
INSERT INTO `wp_rg_form_view` VALUES("57744", "10", "2017-06-08 02:00:49", "202.46.56.111", "29");
INSERT INTO `wp_rg_form_view` VALUES("57745", "3", "2017-06-08 03:16:18", "66.249.79.136", "104");
INSERT INTO `wp_rg_form_view` VALUES("57746", "10", "2017-06-08 03:16:18", "66.249.79.136", "518");
INSERT INTO `wp_rg_form_view` VALUES("57747", "5", "2017-06-08 03:19:27", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("57748", "6", "2017-06-08 03:19:29", "207.46.13.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("57749", "9", "2017-06-08 03:19:35", "157.55.39.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("57750", "13", "2017-06-08 03:19:41", "207.46.13.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("57751", "8", "2017-06-08 03:19:58", "157.55.39.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("57752", "15", "2017-06-08 03:32:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57753", "10", "2017-06-08 04:23:07", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57754", "3", "2017-06-08 04:55:34", "217.182.132.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("57755", "10", "2017-06-08 05:07:41", "199.21.99.202", "67");
INSERT INTO `wp_rg_form_view` VALUES("57756", "3", "2017-06-08 05:07:41", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("57757", "14", "2017-06-08 06:10:51", "75.157.168.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("57758", "3", "2017-06-08 06:19:07", "202.46.57.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("57759", "10", "2017-06-08 06:19:07", "202.46.57.70", "11");
INSERT INTO `wp_rg_form_view` VALUES("57760", "3", "2017-06-08 07:07:29", "62.210.157.95", "16");
INSERT INTO `wp_rg_form_view` VALUES("57761", "10", "2017-06-08 07:07:29", "62.210.157.95", "56");
INSERT INTO `wp_rg_form_view` VALUES("57762", "5", "2017-06-08 07:08:19", "62.210.157.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("57763", "10", "2017-06-08 08:07:25", "199.21.99.202", "50");
INSERT INTO `wp_rg_form_view` VALUES("57764", "3", "2017-06-08 08:07:25", "199.21.99.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("57765", "3", "2017-06-08 09:07:01", "174.127.133.95", "32");
INSERT INTO `wp_rg_form_view` VALUES("57766", "10", "2017-06-08 09:07:01", "174.127.133.95", "243");
INSERT INTO `wp_rg_form_view` VALUES("57767", "2", "2017-06-08 09:08:50", "174.127.133.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("57768", "11", "2017-06-08 09:11:40", "174.127.133.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("57769", "14", "2017-06-08 09:38:02", "174.127.133.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("57770", "3", "2017-06-08 10:10:39", "202.46.51.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("57771", "10", "2017-06-08 10:10:39", "202.46.51.58", "20");
INSERT INTO `wp_rg_form_view` VALUES("57772", "3", "2017-06-08 11:17:21", "202.46.52.78", "6");
INSERT INTO `wp_rg_form_view` VALUES("57773", "10", "2017-06-08 11:17:23", "202.46.52.78", "20");
INSERT INTO `wp_rg_form_view` VALUES("57774", "14", "2017-06-08 12:04:29", "184.66.248.198", "4");
INSERT INTO `wp_rg_form_view` VALUES("57775", "3", "2017-06-08 12:21:52", "51.255.65.97", "3");
INSERT INTO `wp_rg_form_view` VALUES("57776", "10", "2017-06-08 12:21:52", "51.255.65.97", "20");
INSERT INTO `wp_rg_form_view` VALUES("57777", "3", "2017-06-08 13:08:53", "46.118.117.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("57778", "10", "2017-06-08 13:10:59", "141.8.143.171", "20");
INSERT INTO `wp_rg_form_view` VALUES("57779", "3", "2017-06-08 14:04:00", "202.46.52.118", "14");
INSERT INTO `wp_rg_form_view` VALUES("57780", "10", "2017-06-08 14:04:01", "202.46.52.118", "66");
INSERT INTO `wp_rg_form_view` VALUES("57781", "11", "2017-06-08 14:41:58", "159.203.109.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("57782", "2", "2017-06-08 14:41:59", "159.203.109.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("57783", "3", "2017-06-08 15:10:43", "202.46.58.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("57784", "10", "2017-06-08 15:10:43", "202.46.58.137", "21");
INSERT INTO `wp_rg_form_view` VALUES("57785", "3", "2017-06-08 16:09:22", "154.5.208.67", "7");
INSERT INTO `wp_rg_form_view` VALUES("57786", "10", "2017-06-08 16:09:31", "154.5.208.67", "38");
INSERT INTO `wp_rg_form_view` VALUES("57787", "10", "2017-06-08 17:23:14", "184.66.248.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("57788", "3", "2017-06-08 17:49:27", "54.165.59.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("57789", "10", "2017-06-08 18:23:10", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57790", "14", "2017-06-08 18:54:20", "154.20.6.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("57791", "3", "2017-06-08 19:11:06", "24.108.36.114", "10");
INSERT INTO `wp_rg_form_view` VALUES("57792", "10", "2017-06-08 19:11:06", "24.108.36.114", "77");
INSERT INTO `wp_rg_form_view` VALUES("57793", "13", "2017-06-08 20:06:29", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("57794", "3", "2017-06-08 20:06:29", "207.46.13.1", "9");
INSERT INTO `wp_rg_form_view` VALUES("57795", "10", "2017-06-08 20:06:30", "207.46.13.1", "39");
INSERT INTO `wp_rg_form_view` VALUES("57796", "2", "2017-06-08 20:24:49", "51.255.65.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("57797", "10", "2017-06-08 21:23:12", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57798", "3", "2017-06-08 21:52:42", "5.9.112.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("57799", "10", "2017-06-08 22:13:26", "72.14.199.72", "12");
INSERT INTO `wp_rg_form_view` VALUES("57800", "8", "2017-06-08 22:19:00", "51.255.71.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("57801", "3", "2017-06-08 22:26:57", "164.132.161.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("57802", "10", "2017-06-08 23:09:48", "24.69.176.191", "40");
INSERT INTO `wp_rg_form_view` VALUES("57803", "3", "2017-06-08 23:09:50", "24.69.176.191", "4");
INSERT INTO `wp_rg_form_view` VALUES("57804", "3", "2017-06-09 00:04:22", "207.46.13.1", "12");
INSERT INTO `wp_rg_form_view` VALUES("57805", "10", "2017-06-09 00:04:22", "207.46.13.1", "74");
INSERT INTO `wp_rg_form_view` VALUES("57806", "5", "2017-06-09 00:27:50", "217.182.132.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("57807", "14", "2017-06-09 01:00:14", "209.52.88.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("57808", "3", "2017-06-09 01:03:15", "70.66.174.217", "32");
INSERT INTO `wp_rg_form_view` VALUES("57809", "10", "2017-06-09 01:03:15", "70.66.174.217", "25");
INSERT INTO `wp_rg_form_view` VALUES("57810", "6", "2017-06-09 01:31:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57811", "9", "2017-06-09 01:31:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57812", "8", "2017-06-09 01:31:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57813", "13", "2017-06-09 01:31:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57814", "15", "2017-06-09 01:31:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57815", "10", "2017-06-09 02:23:13", "184.66.248.195", "38");
INSERT INTO `wp_rg_form_view` VALUES("57816", "5", "2017-06-09 02:23:56", "202.46.54.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("57817", "3", "2017-06-09 02:23:57", "202.46.54.102", "7");
INSERT INTO `wp_rg_form_view` VALUES("57818", "10", "2017-06-09 03:23:12", "184.66.248.195", "38");
INSERT INTO `wp_rg_form_view` VALUES("57819", "3", "2017-06-09 03:23:22", "51.255.65.88", "4");
INSERT INTO `wp_rg_form_view` VALUES("57820", "3", "2017-06-09 04:11:07", "202.46.55.152", "4");
INSERT INTO `wp_rg_form_view` VALUES("57821", "10", "2017-06-09 04:11:07", "202.46.55.152", "20");
INSERT INTO `wp_rg_form_view` VALUES("57822", "11", "2017-06-09 04:51:50", "51.255.71.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("57823", "10", "2017-06-09 05:23:12", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57824", "3", "2017-06-09 05:51:10", "202.46.54.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("57825", "10", "2017-06-09 06:04:17", "207.46.13.1", "48");
INSERT INTO `wp_rg_form_view` VALUES("57826", "3", "2017-06-09 06:04:19", "207.46.13.1", "6");
INSERT INTO `wp_rg_form_view` VALUES("57827", "3", "2017-06-09 07:01:41", "51.255.65.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("57828", "10", "2017-06-09 07:01:42", "51.255.65.69", "29");
INSERT INTO `wp_rg_form_view` VALUES("57829", "10", "2017-06-09 08:23:12", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57830", "15", "2017-06-09 08:56:35", "51.255.65.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("57831", "3", "2017-06-09 08:56:35", "51.255.65.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("57832", "10", "2017-06-09 09:23:12", "184.66.248.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("57833", "3", "2017-06-09 09:36:20", "164.132.161.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("57834", "3", "2017-06-09 10:20:00", "37.115.187.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("57835", "3", "2017-06-09 10:20:00", "37.115.187.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57836", "3", "2017-06-09 10:20:00", "37.115.187.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57837", "10", "2017-06-09 10:23:13", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57838", "2", "2017-06-09 10:53:54", "62.210.29.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57839", "10", "2017-06-09 11:23:13", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57840", "10", "2017-06-09 12:00:04", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("57841", "3", "2017-06-09 12:29:40", "109.162.67.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("57842", "2", "2017-06-09 12:49:51", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("57843", "3", "2017-06-09 13:22:22", "54.243.53.148", "5");
INSERT INTO `wp_rg_form_view` VALUES("57844", "10", "2017-06-09 13:22:22", "54.243.53.148", "39");
INSERT INTO `wp_rg_form_view` VALUES("57845", "14", "2017-06-09 13:48:09", "89.40.115.227", "3");
INSERT INTO `wp_rg_form_view` VALUES("57846", "3", "2017-06-09 14:11:47", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("57847", "6", "2017-06-09 14:11:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57848", "9", "2017-06-09 14:11:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57849", "8", "2017-06-09 14:11:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57850", "10", "2017-06-09 14:11:48", "52.88.109.3", "16");
INSERT INTO `wp_rg_form_view` VALUES("57851", "13", "2017-06-09 14:11:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57852", "15", "2017-06-09 14:11:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57853", "3", "2017-06-09 15:04:59", "202.46.50.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("57854", "10", "2017-06-09 15:04:59", "202.46.50.12", "29");
INSERT INTO `wp_rg_form_view` VALUES("57855", "10", "2017-06-09 16:23:15", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57856", "3", "2017-06-09 16:45:29", "202.46.56.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("57857", "10", "2017-06-09 17:05:27", "70.67.108.41", "141");
INSERT INTO `wp_rg_form_view` VALUES("57858", "3", "2017-06-09 17:05:29", "184.69.102.226", "25");
INSERT INTO `wp_rg_form_view` VALUES("57859", "3", "2017-06-09 17:05:29", "184.69.102.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("57860", "9", "2017-06-09 17:27:50", "40.77.167.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("57861", "8", "2017-06-09 17:31:34", "138.201.29.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57862", "13", "2017-06-09 17:31:35", "138.201.29.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57863", "3", "2017-06-09 18:19:05", "24.244.32.163", "22");
INSERT INTO `wp_rg_form_view` VALUES("57864", "10", "2017-06-09 18:19:29", "24.244.32.163", "113");
INSERT INTO `wp_rg_form_view` VALUES("57865", "8", "2017-06-09 18:40:54", "217.182.132.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("57866", "3", "2017-06-09 19:10:28", "68.180.229.228", "9");
INSERT INTO `wp_rg_form_view` VALUES("57867", "10", "2017-06-09 19:23:15", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57868", "2", "2017-06-09 20:04:24", "173.252.114.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("57869", "3", "2017-06-09 20:04:33", "173.252.114.112", "6");
INSERT INTO `wp_rg_form_view` VALUES("57870", "10", "2017-06-09 20:04:33", "173.252.114.112", "38");
INSERT INTO `wp_rg_form_view` VALUES("57871", "14", "2017-06-09 20:16:19", "142.36.106.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("57872", "3", "2017-06-09 21:02:52", "24.69.147.199", "8");
INSERT INTO `wp_rg_form_view` VALUES("57873", "10", "2017-06-09 21:02:52", "24.69.147.199", "49");
INSERT INTO `wp_rg_form_view` VALUES("57874", "14", "2017-06-09 21:13:12", "209.52.88.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("57875", "11", "2017-06-09 22:09:24", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("57876", "10", "2017-06-09 22:23:16", "184.66.248.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("57877", "3", "2017-06-09 22:43:53", "66.249.79.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("57878", "3", "2017-06-09 23:02:38", "202.46.55.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("57879", "10", "2017-06-09 23:02:39", "202.46.55.157", "20");
INSERT INTO `wp_rg_form_view` VALUES("57880", "3", "2017-06-10 00:00:56", "164.132.161.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("57881", "10", "2017-06-10 00:00:56", "164.132.161.22", "47");
INSERT INTO `wp_rg_form_view` VALUES("57882", "3", "2017-06-10 01:01:28", "68.180.229.228", "22");
INSERT INTO `wp_rg_form_view` VALUES("57883", "8", "2017-06-10 01:01:29", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57884", "13", "2017-06-10 01:01:29", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57885", "10", "2017-06-10 01:02:09", "54.165.59.7", "68");
INSERT INTO `wp_rg_form_view` VALUES("57886", "8", "2017-06-10 02:03:09", "207.46.13.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("57887", "3", "2017-06-10 02:03:09", "207.46.13.1", "73");
INSERT INTO `wp_rg_form_view` VALUES("57888", "10", "2017-06-10 02:03:09", "207.46.13.1", "485");
INSERT INTO `wp_rg_form_view` VALUES("57889", "5", "2017-06-10 02:50:42", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("57890", "6", "2017-06-10 02:50:43", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("57891", "9", "2017-06-10 02:50:53", "207.46.13.136", "3");
INSERT INTO `wp_rg_form_view` VALUES("57892", "13", "2017-06-10 02:50:54", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("57893", "2", "2017-06-10 03:03:01", "66.249.79.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("57894", "3", "2017-06-10 03:05:13", "68.180.229.228", "5");
INSERT INTO `wp_rg_form_view` VALUES("57895", "10", "2017-06-10 03:05:13", "68.180.229.228", "38");
INSERT INTO `wp_rg_form_view` VALUES("57896", "3", "2017-06-10 04:06:58", "46.118.117.131", "5");
INSERT INTO `wp_rg_form_view` VALUES("57897", "10", "2017-06-10 04:20:52", "207.46.13.1", "21");
INSERT INTO `wp_rg_form_view` VALUES("57898", "10", "2017-06-10 05:23:17", "184.66.248.195", "21");
INSERT INTO `wp_rg_form_view` VALUES("57899", "3", "2017-06-10 05:25:56", "202.46.52.171", "3");
INSERT INTO `wp_rg_form_view` VALUES("57900", "3", "2017-06-10 06:22:10", "136.243.59.237", "2");
INSERT INTO `wp_rg_form_view` VALUES("57901", "10", "2017-06-10 06:22:13", "136.243.59.237", "11");
INSERT INTO `wp_rg_form_view` VALUES("57902", "3", "2017-06-10 07:19:02", "46.118.117.131", "16");
INSERT INTO `wp_rg_form_view` VALUES("57903", "10", "2017-06-10 07:21:21", "164.132.161.53", "125");
INSERT INTO `wp_rg_form_view` VALUES("57904", "10", "2017-06-10 08:23:17", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57905", "3", "2017-06-10 08:42:29", "46.118.117.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("57906", "2", "2017-06-10 08:48:54", "5.101.220.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("57907", "3", "2017-06-10 09:10:35", "202.46.51.58", "61");
INSERT INTO `wp_rg_form_view` VALUES("57908", "10", "2017-06-10 09:10:35", "202.46.51.58", "421");
INSERT INTO `wp_rg_form_view` VALUES("57909", "11", "2017-06-10 09:12:56", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("57910", "14", "2017-06-10 09:14:27", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("57911", "2", "2017-06-10 09:14:35", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("57912", "15", "2017-06-10 09:18:46", "188.40.46.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("57913", "12", "2017-06-10 09:43:55", "217.182.132.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("57914", "3", "2017-06-10 10:06:42", "51.255.65.95", "10");
INSERT INTO `wp_rg_form_view` VALUES("57915", "10", "2017-06-10 10:23:17", "184.66.248.195", "56");
INSERT INTO `wp_rg_form_view` VALUES("57916", "10", "2017-06-10 11:04:55", "216.244.66.231", "58");
INSERT INTO `wp_rg_form_view` VALUES("57917", "3", "2017-06-10 11:04:56", "216.244.66.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("57918", "11", "2017-06-10 11:22:59", "136.243.59.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("57919", "3", "2017-06-10 12:12:55", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("57920", "6", "2017-06-10 12:12:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57921", "9", "2017-06-10 12:12:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57922", "8", "2017-06-10 12:12:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57923", "10", "2017-06-10 12:12:57", "52.88.109.3", "17");
INSERT INTO `wp_rg_form_view` VALUES("57924", "13", "2017-06-10 12:12:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57925", "15", "2017-06-10 12:12:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57926", "3", "2017-06-10 13:04:18", "217.182.132.25", "13");
INSERT INTO `wp_rg_form_view` VALUES("57927", "10", "2017-06-10 13:04:18", "217.182.132.25", "56");
INSERT INTO `wp_rg_form_view` VALUES("57928", "10", "2017-06-10 14:23:19", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("57929", "10", "2017-06-10 15:09:09", "72.14.199.74", "30");
INSERT INTO `wp_rg_form_view` VALUES("57930", "3", "2017-06-10 15:32:26", "157.55.39.157", "5");
INSERT INTO `wp_rg_form_view` VALUES("57931", "10", "2017-06-10 16:23:19", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57932", "3", "2017-06-10 16:23:53", "202.46.50.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("57933", "3", "2017-06-10 17:06:27", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57934", "10", "2017-06-10 17:06:27", "68.180.229.228", "11");
INSERT INTO `wp_rg_form_view` VALUES("57935", "10", "2017-06-10 18:23:22", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("57936", "3", "2017-06-10 18:40:15", "66.249.79.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("57937", "10", "2017-06-10 19:23:21", "184.66.248.195", "66");
INSERT INTO `wp_rg_form_view` VALUES("57938", "3", "2017-06-10 19:37:50", "37.115.187.118", "11");
INSERT INTO `wp_rg_form_view` VALUES("57939", "3", "2017-06-10 20:18:35", "216.244.66.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("57940", "10", "2017-06-10 20:18:35", "216.244.66.231", "29");
INSERT INTO `wp_rg_form_view` VALUES("57941", "12", "2017-06-10 20:33:33", "157.55.39.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("57942", "3", "2017-06-10 21:01:05", "46.118.123.232", "5");
INSERT INTO `wp_rg_form_view` VALUES("57943", "14", "2017-06-10 21:03:28", "172.245.68.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("57944", "10", "2017-06-10 21:14:51", "66.249.79.134", "29");
INSERT INTO `wp_rg_form_view` VALUES("57945", "10", "2017-06-10 22:05:38", "68.180.229.228", "21");
INSERT INTO `wp_rg_form_view` VALUES("57946", "3", "2017-06-10 22:05:39", "68.180.229.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("57947", "13", "2017-06-10 23:13:13", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57948", "3", "2017-06-10 23:13:13", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("57949", "10", "2017-06-10 23:13:13", "68.180.229.228", "20");
INSERT INTO `wp_rg_form_view` VALUES("57950", "3", "2017-06-11 00:21:22", "37.115.187.118", "31");
INSERT INTO `wp_rg_form_view` VALUES("57951", "10", "2017-06-11 00:23:20", "184.66.248.195", "16");
INSERT INTO `wp_rg_form_view` VALUES("57952", "6", "2017-06-11 00:32:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57953", "9", "2017-06-11 00:32:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57954", "8", "2017-06-11 00:32:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57955", "13", "2017-06-11 00:32:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57956", "15", "2017-06-11 00:32:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("57957", "14", "2017-06-11 00:53:56", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("57958", "10", "2017-06-11 01:20:49", "51.255.65.16", "44");
INSERT INTO `wp_rg_form_view` VALUES("57959", "2", "2017-06-11 01:22:21", "13.56.16.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("57960", "14", "2017-06-11 01:22:22", "13.56.16.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("57961", "3", "2017-06-11 01:37:20", "164.132.162.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("57962", "10", "2017-06-11 02:07:55", "217.182.132.16", "22");
INSERT INTO `wp_rg_form_view` VALUES("57963", "3", "2017-06-11 02:08:35", "46.118.158.86", "4");
INSERT INTO `wp_rg_form_view` VALUES("57964", "10", "2017-06-11 03:10:41", "24.108.176.13", "43");
INSERT INTO `wp_rg_form_view` VALUES("57965", "14", "2017-06-11 03:11:04", "24.108.176.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("57966", "3", "2017-06-11 03:22:23", "202.46.54.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("57967", "10", "2017-06-11 04:15:21", "207.46.13.1", "33");
INSERT INTO `wp_rg_form_view` VALUES("57968", "10", "2017-06-11 05:02:26", "202.46.58.154", "33");
INSERT INTO `wp_rg_form_view` VALUES("57969", "3", "2017-06-11 05:35:44", "202.46.58.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("57970", "3", "2017-06-11 06:09:03", "202.46.55.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("57971", "10", "2017-06-11 06:09:06", "202.46.55.142", "22");
INSERT INTO `wp_rg_form_view` VALUES("57972", "6", "2017-06-11 07:08:10", "51.255.65.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("57973", "10", "2017-06-11 07:08:12", "51.255.65.15", "12");
INSERT INTO `wp_rg_form_view` VALUES("57974", "3", "2017-06-11 07:24:22", "46.118.158.86", "4");
INSERT INTO `wp_rg_form_view` VALUES("57975", "10", "2017-06-11 08:14:15", "68.180.229.228", "54");
INSERT INTO `wp_rg_form_view` VALUES("57976", "3", "2017-06-11 08:15:30", "37.115.187.118", "14");
INSERT INTO `wp_rg_form_view` VALUES("57977", "8", "2017-06-11 08:55:38", "66.249.79.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("57978", "13", "2017-06-11 08:55:39", "66.249.79.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("57979", "10", "2017-06-11 09:00:40", "216.244.66.231", "32");
INSERT INTO `wp_rg_form_view` VALUES("57980", "6", "2017-06-11 09:29:03", "202.46.53.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("57981", "3", "2017-06-11 09:59:49", "46.118.117.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("57982", "10", "2017-06-11 10:16:56", "66.249.79.134", "13");
INSERT INTO `wp_rg_form_view` VALUES("57983", "10", "2017-06-11 11:06:45", "204.79.180.0", "44");
INSERT INTO `wp_rg_form_view` VALUES("57984", "3", "2017-06-11 11:08:44", "164.132.161.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("57985", "3", "2017-06-11 12:10:05", "217.182.132.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("57986", "10", "2017-06-11 12:10:06", "217.182.132.182", "22");
INSERT INTO `wp_rg_form_view` VALUES("57987", "10", "2017-06-11 13:01:22", "51.255.65.74", "23");
INSERT INTO `wp_rg_form_view` VALUES("57988", "3", "2017-06-11 13:51:49", "202.46.51.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("57989", "3", "2017-06-11 14:02:37", "46.118.123.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("57990", "14", "2017-06-11 14:08:07", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("57991", "10", "2017-06-11 14:23:24", "184.66.248.195", "52");
INSERT INTO `wp_rg_form_view` VALUES("57992", "10", "2017-06-11 15:05:36", "164.132.161.4", "13");
INSERT INTO `wp_rg_form_view` VALUES("57993", "3", "2017-06-11 15:10:06", "37.115.187.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("57994", "10", "2017-06-11 16:23:24", "184.66.248.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("57995", "3", "2017-06-11 16:23:31", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("57996", "3", "2017-06-11 17:07:20", "68.180.229.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("57997", "10", "2017-06-11 17:16:54", "164.132.161.75", "22");
INSERT INTO `wp_rg_form_view` VALUES("57998", "10", "2017-06-11 18:23:23", "184.66.248.195", "23");
INSERT INTO `wp_rg_form_view` VALUES("57999", "11", "2017-06-11 18:26:34", "37.48.68.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("58000", "2", "2017-06-11 18:26:35", "37.48.68.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("58001", "10", "2017-06-11 19:20:29", "202.46.57.13", "23");
INSERT INTO `wp_rg_form_view` VALUES("58002", "10", "2017-06-11 20:11:45", "164.132.161.58", "32");
INSERT INTO `wp_rg_form_view` VALUES("58003", "3", "2017-06-11 20:44:49", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("58004", "10", "2017-06-11 21:23:24", "184.66.248.195", "14");
INSERT INTO `wp_rg_form_view` VALUES("58005", "3", "2017-06-11 21:36:14", "184.151.231.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("58006", "3", "2017-06-11 22:22:53", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58007", "6", "2017-06-11 22:22:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58008", "9", "2017-06-11 22:22:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58009", "8", "2017-06-11 22:22:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58010", "10", "2017-06-11 22:22:55", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("58011", "13", "2017-06-11 22:22:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58012", "15", "2017-06-11 22:22:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58013", "10", "2017-06-11 23:04:30", "207.46.13.6", "701");
INSERT INTO `wp_rg_form_view` VALUES("58014", "3", "2017-06-11 23:04:33", "207.46.13.6", "37");
INSERT INTO `wp_rg_form_view` VALUES("58015", "9", "2017-06-11 23:04:47", "207.46.13.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("58016", "15", "2017-06-11 23:05:19", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("58017", "8", "2017-06-11 23:05:41", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("58018", "13", "2017-06-11 23:05:43", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("58019", "10", "2017-06-12 00:19:27", "51.255.71.121", "44");
INSERT INTO `wp_rg_form_view` VALUES("58020", "11", "2017-06-12 01:04:28", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("58021", "10", "2017-06-12 01:06:47", "96.54.246.55", "37");
INSERT INTO `wp_rg_form_view` VALUES("58022", "13", "2017-06-12 01:09:29", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("58023", "3", "2017-06-12 01:44:52", "192.99.108.233", "27");
INSERT INTO `wp_rg_form_view` VALUES("58024", "6", "2017-06-12 01:44:54", "192.99.108.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("58025", "9", "2017-06-12 01:44:54", "192.99.108.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("58026", "8", "2017-06-12 01:44:54", "192.99.108.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("58027", "15", "2017-06-12 01:44:56", "192.99.108.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("58028", "3", "2017-06-12 02:16:10", "66.249.79.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("58029", "10", "2017-06-12 02:23:26", "184.66.248.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("58030", "10", "2017-06-12 03:07:51", "217.182.132.172", "43");
INSERT INTO `wp_rg_form_view` VALUES("58031", "3", "2017-06-12 03:12:08", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("58032", "13", "2017-06-12 03:36:52", "51.255.65.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58033", "3", "2017-06-12 04:00:49", "202.46.57.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("58034", "10", "2017-06-12 04:00:49", "202.46.57.163", "22");
INSERT INTO `wp_rg_form_view` VALUES("58035", "15", "2017-06-12 04:34:10", "202.46.48.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("58036", "10", "2017-06-12 05:02:13", "199.21.99.202", "32");
INSERT INTO `wp_rg_form_view` VALUES("58037", "14", "2017-06-12 05:07:30", "202.46.58.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("58038", "3", "2017-06-12 05:40:50", "202.46.57.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("58039", "10", "2017-06-12 06:07:02", "176.56.62.199", "42");
INSERT INTO `wp_rg_form_view` VALUES("58040", "14", "2017-06-12 06:25:53", "24.108.40.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("58041", "3", "2017-06-12 06:56:47", "164.132.161.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("58042", "11", "2017-06-12 07:06:39", "94.209.237.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("58043", "10", "2017-06-12 07:06:42", "94.209.237.27", "92");
INSERT INTO `wp_rg_form_view` VALUES("58044", "2", "2017-06-12 07:07:30", "94.209.237.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("58045", "3", "2017-06-12 07:07:52", "94.209.237.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("58046", "10", "2017-06-12 08:23:27", "184.66.248.195", "22");
INSERT INTO `wp_rg_form_view` VALUES("58047", "3", "2017-06-12 08:44:55", "217.182.132.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("58048", "3", "2017-06-12 09:15:16", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("58049", "10", "2017-06-12 09:18:36", "72.14.199.72", "23");
INSERT INTO `wp_rg_form_view` VALUES("58050", "10", "2017-06-12 10:23:27", "184.66.248.195", "17");
INSERT INTO `wp_rg_form_view` VALUES("58051", "3", "2017-06-12 10:54:38", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58052", "6", "2017-06-12 10:54:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58053", "9", "2017-06-12 10:54:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58054", "8", "2017-06-12 10:54:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58055", "13", "2017-06-12 10:54:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58056", "15", "2017-06-12 10:54:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58057", "10", "2017-06-12 11:15:26", "207.46.13.6", "22");
INSERT INTO `wp_rg_form_view` VALUES("58058", "3", "2017-06-12 11:19:59", "217.182.132.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("58059", "10", "2017-06-12 12:23:28", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58060", "10", "2017-06-12 13:12:28", "66.249.79.138", "22");
INSERT INTO `wp_rg_form_view` VALUES("58061", "13", "2017-06-12 13:47:23", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("58062", "10", "2017-06-12 14:23:28", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58063", "3", "2017-06-12 15:06:48", "157.55.39.160", "2");
INSERT INTO `wp_rg_form_view` VALUES("58064", "10", "2017-06-12 15:06:48", "157.55.39.160", "62");
INSERT INTO `wp_rg_form_view` VALUES("58065", "8", "2017-06-12 15:07:38", "207.46.13.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("58066", "10", "2017-06-12 16:23:34", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58067", "10", "2017-06-12 17:23:28", "184.66.248.195", "42");
INSERT INTO `wp_rg_form_view` VALUES("58068", "3", "2017-06-12 17:25:54", "207.46.13.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("58069", "9", "2017-06-12 17:48:20", "207.46.13.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("58070", "10", "2017-06-12 18:23:28", "184.66.248.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("58071", "10", "2017-06-12 19:10:16", "142.103.91.1", "94");
INSERT INTO `wp_rg_form_view` VALUES("58072", "14", "2017-06-12 19:13:45", "184.69.96.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("58073", "3", "2017-06-12 19:50:25", "185.26.92.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("58074", "10", "2017-06-12 20:10:40", "185.26.92.74", "42");
INSERT INTO `wp_rg_form_view` VALUES("58075", "3", "2017-06-12 20:13:24", "185.26.92.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("58076", "8", "2017-06-12 21:19:02", "202.46.58.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("58077", "10", "2017-06-12 21:19:03", "202.46.58.87", "42");
INSERT INTO `wp_rg_form_view` VALUES("58078", "10", "2017-06-12 22:02:34", "66.249.79.136", "81");
INSERT INTO `wp_rg_form_view` VALUES("58079", "14", "2017-06-12 22:10:25", "184.66.139.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("58080", "11", "2017-06-12 22:21:04", "185.26.92.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("58081", "2", "2017-06-12 22:21:26", "185.26.92.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("58082", "3", "2017-06-12 22:38:47", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("58083", "10", "2017-06-12 23:09:35", "72.14.199.72", "11");
INSERT INTO `wp_rg_form_view` VALUES("58084", "10", "2017-06-13 00:05:39", "202.46.48.89", "10");
INSERT INTO `wp_rg_form_view` VALUES("58085", "3", "2017-06-13 01:07:15", "24.69.27.47", "5");
INSERT INTO `wp_rg_form_view` VALUES("58086", "10", "2017-06-13 01:07:18", "24.69.27.47", "61");
INSERT INTO `wp_rg_form_view` VALUES("58087", "3", "2017-06-13 02:21:59", "66.249.79.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("58088", "10", "2017-06-13 03:20:27", "24.108.40.251", "10");
INSERT INTO `wp_rg_form_view` VALUES("58089", "3", "2017-06-13 04:05:57", "68.180.229.228", "7");
INSERT INTO `wp_rg_form_view` VALUES("58090", "8", "2017-06-13 04:05:57", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58091", "13", "2017-06-13 04:05:57", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58092", "10", "2017-06-13 04:46:00", "96.50.28.110", "142");
INSERT INTO `wp_rg_form_view` VALUES("58093", "15", "2017-06-13 04:56:14", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("58094", "10", "2017-06-13 05:00:13", "46.229.168.67", "70");
INSERT INTO `wp_rg_form_view` VALUES("58095", "3", "2017-06-13 05:00:32", "46.229.168.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("58096", "2", "2017-06-13 05:01:27", "46.229.168.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("58097", "10", "2017-06-13 06:37:03", "157.55.39.160", "32");
INSERT INTO `wp_rg_form_view` VALUES("58098", "3", "2017-06-13 06:45:26", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("58099", "3", "2017-06-13 07:15:47", "207.46.13.1", "19");
INSERT INTO `wp_rg_form_view` VALUES("58100", "10", "2017-06-13 07:15:49", "207.46.13.1", "355");
INSERT INTO `wp_rg_form_view` VALUES("58101", "9", "2017-06-13 07:26:47", "144.76.8.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("58102", "8", "2017-06-13 07:27:10", "144.76.8.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("58103", "11", "2017-06-13 07:27:41", "144.76.8.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("58104", "15", "2017-06-13 07:28:46", "144.76.8.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("58105", "12", "2017-06-13 07:30:38", "144.76.8.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("58106", "14", "2017-06-13 08:25:40", "202.46.55.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("58107", "10", "2017-06-13 08:49:52", "207.46.13.6", "31");
INSERT INTO `wp_rg_form_view` VALUES("58108", "3", "2017-06-13 08:54:43", "51.255.71.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("58109", "10", "2017-06-13 09:01:57", "157.55.39.160", "15");
INSERT INTO `wp_rg_form_view` VALUES("58110", "3", "2017-06-13 09:17:54", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58111", "6", "2017-06-13 09:17:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58112", "9", "2017-06-13 09:17:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58113", "8", "2017-06-13 09:17:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58114", "13", "2017-06-13 09:17:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58115", "15", "2017-06-13 09:17:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58116", "14", "2017-06-13 09:44:52", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("58117", "10", "2017-06-13 10:05:39", "217.182.132.35", "101");
INSERT INTO `wp_rg_form_view` VALUES("58118", "3", "2017-06-13 10:05:39", "202.46.52.107", "4");
INSERT INTO `wp_rg_form_view` VALUES("58119", "14", "2017-06-13 10:09:19", "138.128.75.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("58120", "11", "2017-06-13 10:55:41", "138.197.111.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("58121", "2", "2017-06-13 10:55:42", "138.197.111.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("58122", "13", "2017-06-13 11:12:21", "202.46.56.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("58123", "10", "2017-06-13 11:12:21", "202.46.56.32", "30");
INSERT INTO `wp_rg_form_view` VALUES("58124", "3", "2017-06-13 11:19:09", "51.255.65.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("58125", "14", "2017-06-13 11:28:27", "192.3.191.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("58126", "3", "2017-06-13 12:02:03", "207.46.13.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("58127", "10", "2017-06-13 12:14:55", "51.255.65.90", "40");
INSERT INTO `wp_rg_form_view` VALUES("58128", "10", "2017-06-13 13:25:38", "202.46.52.177", "10");
INSERT INTO `wp_rg_form_view` VALUES("58129", "10", "2017-06-13 14:31:53", "72.14.199.74", "61");
INSERT INTO `wp_rg_form_view` VALUES("58130", "11", "2017-06-13 14:43:23", "52.31.245.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("58131", "2", "2017-06-13 14:43:51", "52.31.245.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("58132", "10", "2017-06-13 15:15:51", "77.75.79.72", "72");
INSERT INTO `wp_rg_form_view` VALUES("58133", "14", "2017-06-13 15:56:41", "204.209.209.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("58134", "10", "2017-06-13 16:04:51", "184.66.248.195", "42");
INSERT INTO `wp_rg_form_view` VALUES("58135", "10", "2017-06-13 17:02:01", "202.46.53.147", "23");
INSERT INTO `wp_rg_form_view` VALUES("58136", "10", "2017-06-13 18:17:08", "184.66.248.195", "153");
INSERT INTO `wp_rg_form_view` VALUES("58137", "11", "2017-06-13 18:29:43", "81.171.85.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("58138", "3", "2017-06-13 18:30:06", "66.183.165.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("58139", "2", "2017-06-13 18:30:44", "81.171.85.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("58140", "10", "2017-06-13 19:04:36", "157.55.39.160", "63");
INSERT INTO `wp_rg_form_view` VALUES("58141", "5", "2017-06-13 19:05:36", "77.75.79.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("58142", "3", "2017-06-13 19:07:56", "207.46.13.1", "2");
INSERT INTO `wp_rg_form_view` VALUES("58143", "10", "2017-06-13 20:18:13", "207.194.133.9", "70");
INSERT INTO `wp_rg_form_view` VALUES("58144", "15", "2017-06-13 20:55:19", "202.46.52.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("58145", "10", "2017-06-13 21:08:44", "51.255.71.122", "21");
INSERT INTO `wp_rg_form_view` VALUES("58146", "6", "2017-06-13 22:02:08", "202.46.58.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("58147", "10", "2017-06-13 22:02:09", "202.46.58.188", "138");
INSERT INTO `wp_rg_form_view` VALUES("58148", "3", "2017-06-13 22:28:41", "51.255.173.50", "34");
INSERT INTO `wp_rg_form_view` VALUES("58149", "9", "2017-06-13 22:29:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58150", "8", "2017-06-13 22:29:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58151", "13", "2017-06-13 22:29:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58152", "15", "2017-06-13 22:29:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58153", "14", "2017-06-13 23:03:01", "96.50.22.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("58154", "10", "2017-06-13 23:17:20", "69.58.178.57", "61");
INSERT INTO `wp_rg_form_view` VALUES("58155", "11", "2017-06-13 23:17:40", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("58156", "2", "2017-06-13 23:17:42", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("58157", "3", "2017-06-13 23:24:57", "96.54.246.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("58158", "3", "2017-06-14 00:31:35", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("58159", "10", "2017-06-14 00:50:23", "157.55.39.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("58160", "14", "2017-06-14 00:51:59", "66.249.79.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("58161", "3", "2017-06-14 01:45:40", "202.46.54.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("58162", "10", "2017-06-14 01:45:43", "202.46.54.167", "20");
INSERT INTO `wp_rg_form_view` VALUES("58163", "10", "2017-06-14 02:06:25", "157.55.39.157", "42");
INSERT INTO `wp_rg_form_view` VALUES("58164", "3", "2017-06-14 02:16:16", "51.255.65.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("58165", "10", "2017-06-14 03:09:11", "217.182.132.52", "57");
INSERT INTO `wp_rg_form_view` VALUES("58166", "14", "2017-06-14 03:37:07", "96.50.16.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("58167", "14", "2017-06-14 04:39:09", "185.145.195.171", "2");
INSERT INTO `wp_rg_form_view` VALUES("58168", "10", "2017-06-14 04:43:09", "157.55.39.157", "40");
INSERT INTO `wp_rg_form_view` VALUES("58169", "10", "2017-06-14 05:01:44", "72.14.199.118", "43");
INSERT INTO `wp_rg_form_view` VALUES("58170", "3", "2017-06-14 06:07:30", "164.132.161.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58171", "10", "2017-06-14 06:07:33", "164.132.161.56", "20");
INSERT INTO `wp_rg_form_view` VALUES("58172", "10", "2017-06-14 07:15:04", "217.182.132.75", "20");
INSERT INTO `wp_rg_form_view` VALUES("58173", "10", "2017-06-14 08:12:27", "51.255.173.13", "91");
INSERT INTO `wp_rg_form_view` VALUES("58174", "3", "2017-06-14 08:12:55", "51.255.173.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("58175", "10", "2017-06-14 09:19:26", "77.75.78.169", "20");
INSERT INTO `wp_rg_form_view` VALUES("58176", "3", "2017-06-14 09:45:15", "202.46.48.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("58177", "10", "2017-06-14 10:13:36", "77.75.76.167", "20");
INSERT INTO `wp_rg_form_view` VALUES("58178", "3", "2017-06-14 10:51:55", "202.46.51.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("58179", "10", "2017-06-14 11:20:30", "137.74.207.164", "21");
INSERT INTO `wp_rg_form_view` VALUES("58180", "3", "2017-06-14 11:58:35", "202.46.57.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("58181", "9", "2017-06-14 12:23:27", "217.182.132.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("58182", "10", "2017-06-14 12:23:27", "217.182.132.174", "20");
INSERT INTO `wp_rg_form_view` VALUES("58183", "10", "2017-06-14 13:06:59", "216.244.66.231", "1975");
INSERT INTO `wp_rg_form_view` VALUES("58184", "6", "2017-06-14 13:11:57", "5.9.111.70", "4");
INSERT INTO `wp_rg_form_view` VALUES("58185", "9", "2017-06-14 13:11:58", "5.9.111.70", "4");
INSERT INTO `wp_rg_form_view` VALUES("58186", "3", "2017-06-14 13:12:04", "5.9.111.70", "41");
INSERT INTO `wp_rg_form_view` VALUES("58187", "11", "2017-06-14 13:29:51", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58188", "2", "2017-06-14 13:29:55", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58189", "14", "2017-06-14 13:31:08", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58190", "15", "2017-06-14 13:33:19", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58191", "13", "2017-06-14 13:36:09", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58192", "8", "2017-06-14 13:37:03", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58193", "10", "2017-06-14 14:00:56", "5.9.98.130", "4168");
INSERT INTO `wp_rg_form_view` VALUES("58194", "3", "2017-06-14 14:03:37", "5.9.98.130", "24");
INSERT INTO `wp_rg_form_view` VALUES("58195", "9", "2017-06-14 14:18:43", "66.249.79.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("58196", "10", "2017-06-14 15:00:00", "5.9.98.130", "4434");
INSERT INTO `wp_rg_form_view` VALUES("58197", "3", "2017-06-14 15:21:21", "157.55.39.157", "33");
INSERT INTO `wp_rg_form_view` VALUES("58198", "10", "2017-06-14 16:00:00", "5.9.98.130", "2455");
INSERT INTO `wp_rg_form_view` VALUES("58199", "2", "2017-06-14 16:28:07", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58200", "10", "2017-06-14 17:00:01", "5.9.98.130", "5199");
INSERT INTO `wp_rg_form_view` VALUES("58201", "3", "2017-06-14 17:21:37", "5.9.98.130", "68");
INSERT INTO `wp_rg_form_view` VALUES("58202", "13", "2017-06-14 17:33:53", "213.136.73.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("58203", "10", "2017-06-14 18:00:00", "5.9.98.130", "4138");
INSERT INTO `wp_rg_form_view` VALUES("58204", "3", "2017-06-14 18:34:30", "164.132.161.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("58205", "2", "2017-06-14 18:58:42", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("58206", "10", "2017-06-14 19:09:47", "5.9.98.130", "2601");
INSERT INTO `wp_rg_form_view` VALUES("58207", "10", "2017-06-14 20:06:41", "66.249.79.138", "4410");
INSERT INTO `wp_rg_form_view` VALUES("58208", "14", "2017-06-14 20:34:49", "70.66.181.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("58209", "10", "2017-06-14 21:00:00", "5.9.98.130", "4108");
INSERT INTO `wp_rg_form_view` VALUES("58210", "3", "2017-06-14 21:12:14", "5.9.98.130", "200");
INSERT INTO `wp_rg_form_view` VALUES("58211", "6", "2017-06-14 21:19:59", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58212", "9", "2017-06-14 21:20:01", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("58213", "8", "2017-06-14 21:20:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58214", "13", "2017-06-14 21:20:06", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58215", "15", "2017-06-14 21:20:09", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58216", "5", "2017-06-14 21:40:06", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58217", "10", "2017-06-14 22:00:00", "5.9.98.130", "5638");
INSERT INTO `wp_rg_form_view` VALUES("58218", "3", "2017-06-14 22:40:44", "24.69.158.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("58219", "10", "2017-06-14 23:00:03", "5.9.98.130", "5390");
INSERT INTO `wp_rg_form_view` VALUES("58220", "3", "2017-06-14 23:24:18", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58221", "10", "2017-06-15 00:21:20", "51.255.65.7", "381");
INSERT INTO `wp_rg_form_view` VALUES("58222", "10", "2017-06-15 01:00:00", "5.9.98.130", "4771");
INSERT INTO `wp_rg_form_view` VALUES("58223", "3", "2017-06-15 02:41:35", "68.180.229.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("58224", "10", "2017-06-15 02:50:37", "217.182.132.74", "10");
INSERT INTO `wp_rg_form_view` VALUES("58225", "14", "2017-06-15 02:54:45", "96.54.157.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("58226", "10", "2017-06-15 03:09:30", "202.46.57.170", "4882");
INSERT INTO `wp_rg_form_view` VALUES("58227", "3", "2017-06-15 03:59:48", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("58228", "10", "2017-06-15 04:00:00", "5.9.98.130", "4640");
INSERT INTO `wp_rg_form_view` VALUES("58229", "3", "2017-06-15 04:40:22", "66.249.79.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("58230", "10", "2017-06-15 05:00:00", "5.9.98.130", "4353");
INSERT INTO `wp_rg_form_view` VALUES("58231", "3", "2017-06-15 05:21:54", "5.9.98.130", "257");
INSERT INTO `wp_rg_form_view` VALUES("58232", "10", "2017-06-15 06:39:15", "72.14.199.70", "1262");
INSERT INTO `wp_rg_form_view` VALUES("58233", "3", "2017-06-15 06:56:01", "144.76.12.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("58234", "9", "2017-06-15 06:56:07", "144.76.12.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("58235", "8", "2017-06-15 06:56:16", "144.76.12.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("58236", "10", "2017-06-15 07:00:01", "5.9.98.130", "4946");
INSERT INTO `wp_rg_form_view` VALUES("58237", "10", "2017-06-15 08:00:00", "5.9.98.130", "4727");
INSERT INTO `wp_rg_form_view` VALUES("58238", "12", "2017-06-15 08:14:53", "202.46.50.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("58239", "10", "2017-06-15 09:00:01", "5.9.98.130", "4790");
INSERT INTO `wp_rg_form_view` VALUES("58240", "3", "2017-06-15 09:21:34", "202.46.48.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("58241", "10", "2017-06-15 10:00:03", "5.9.98.130", "4968");
INSERT INTO `wp_rg_form_view` VALUES("58242", "3", "2017-06-15 10:54:28", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("58243", "6", "2017-06-15 10:54:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58244", "9", "2017-06-15 10:54:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58245", "8", "2017-06-15 10:54:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58246", "13", "2017-06-15 10:54:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58247", "15", "2017-06-15 10:54:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58248", "10", "2017-06-15 11:00:00", "5.9.98.130", "3761");
INSERT INTO `wp_rg_form_view` VALUES("58249", "3", "2017-06-15 11:53:44", "164.132.161.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("58250", "10", "2017-06-15 12:11:20", "202.46.55.150", "20");
INSERT INTO `wp_rg_form_view` VALUES("58251", "3", "2017-06-15 12:44:19", "51.255.65.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("58252", "14", "2017-06-15 12:44:35", "202.46.52.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("58253", "5", "2017-06-15 13:05:05", "77.75.79.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("58254", "10", "2017-06-15 13:05:06", "77.75.79.32", "335");
INSERT INTO `wp_rg_form_view` VALUES("58255", "3", "2017-06-15 13:51:17", "202.46.50.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("58256", "10", "2017-06-15 14:00:00", "5.9.98.130", "6205");
INSERT INTO `wp_rg_form_view` VALUES("58257", "3", "2017-06-15 14:45:22", "157.55.39.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("58258", "10", "2017-06-15 15:00:00", "5.9.98.130", "3760");
INSERT INTO `wp_rg_form_view` VALUES("58259", "3", "2017-06-15 15:32:36", "217.182.132.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("58260", "3", "2017-06-15 16:04:37", "202.46.50.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("58261", "10", "2017-06-15 16:04:39", "202.46.50.180", "10");
INSERT INTO `wp_rg_form_view` VALUES("58262", "10", "2017-06-15 17:01:44", "75.157.130.176", "32");
INSERT INTO `wp_rg_form_view` VALUES("58263", "3", "2017-06-15 17:02:10", "75.157.130.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("58264", "10", "2017-06-15 18:07:45", "138.197.158.245", "72");
INSERT INTO `wp_rg_form_view` VALUES("58265", "3", "2017-06-15 18:20:33", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58266", "10", "2017-06-15 19:06:48", "207.46.13.52", "152");
INSERT INTO `wp_rg_form_view` VALUES("58267", "3", "2017-06-15 19:57:35", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58268", "10", "2017-06-15 20:00:34", "195.154.172.53", "67");
INSERT INTO `wp_rg_form_view` VALUES("58269", "10", "2017-06-15 21:04:29", "72.14.199.72", "123");
INSERT INTO `wp_rg_form_view` VALUES("58270", "9", "2017-06-15 21:26:42", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("58271", "3", "2017-06-15 21:26:48", "207.46.13.52", "5");
INSERT INTO `wp_rg_form_view` VALUES("58272", "15", "2017-06-15 21:26:51", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58273", "11", "2017-06-15 21:47:33", "138.197.73.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("58274", "2", "2017-06-15 21:47:33", "138.197.73.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("58275", "3", "2017-06-15 22:06:17", "207.46.13.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("58276", "10", "2017-06-15 22:06:17", "207.46.13.52", "51");
INSERT INTO `wp_rg_form_view` VALUES("58277", "13", "2017-06-15 22:43:29", "202.46.58.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("58278", "15", "2017-06-15 22:53:47", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58279", "3", "2017-06-15 23:30:31", "164.132.161.23", "6");
INSERT INTO `wp_rg_form_view` VALUES("58280", "10", "2017-06-15 23:30:38", "164.132.161.23", "13");
INSERT INTO `wp_rg_form_view` VALUES("58281", "15", "2017-06-15 23:30:38", "164.132.161.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("58282", "10", "2017-06-16 00:19:01", "77.75.77.32", "20");
INSERT INTO `wp_rg_form_view` VALUES("58283", "3", "2017-06-16 01:13:29", "202.46.54.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("58284", "10", "2017-06-16 01:13:29", "202.46.54.144", "32");
INSERT INTO `wp_rg_form_view` VALUES("58285", "3", "2017-06-16 02:07:13", "66.249.79.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("58286", "10", "2017-06-16 02:07:14", "66.249.79.134", "31");
INSERT INTO `wp_rg_form_view` VALUES("58287", "3", "2017-06-16 03:06:11", "37.229.253.71", "30");
INSERT INTO `wp_rg_form_view` VALUES("58288", "10", "2017-06-16 03:37:30", "24.69.136.239", "16");
INSERT INTO `wp_rg_form_view` VALUES("58289", "6", "2017-06-16 03:51:20", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58290", "9", "2017-06-16 03:51:21", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58291", "8", "2017-06-16 03:51:21", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58292", "13", "2017-06-16 03:51:22", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58293", "15", "2017-06-16 03:51:22", "207.46.13.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58294", "14", "2017-06-16 04:01:38", "24.69.136.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("58295", "10", "2017-06-16 05:42:13", "66.249.79.136", "10");
INSERT INTO `wp_rg_form_view` VALUES("58296", "3", "2017-06-16 06:01:15", "51.255.65.65", "9");
INSERT INTO `wp_rg_form_view` VALUES("58297", "10", "2017-06-16 06:01:19", "51.255.65.65", "1023");
INSERT INTO `wp_rg_form_view` VALUES("58298", "14", "2017-06-16 06:45:32", "104.236.127.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("58299", "11", "2017-06-16 06:45:42", "104.236.127.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("58300", "6", "2017-06-16 06:54:07", "104.236.127.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("58301", "10", "2017-06-16 07:00:17", "104.236.127.151", "3601");
INSERT INTO `wp_rg_form_view` VALUES("58302", "3", "2017-06-16 07:02:16", "104.236.127.151", "28");
INSERT INTO `wp_rg_form_view` VALUES("58303", "9", "2017-06-16 07:05:33", "104.236.127.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("58304", "15", "2017-06-16 07:17:52", "104.236.127.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("58305", "2", "2017-06-16 07:53:22", "104.236.127.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("58306", "10", "2017-06-16 08:00:02", "104.236.127.151", "454");
INSERT INTO `wp_rg_form_view` VALUES("58307", "3", "2017-06-16 08:01:02", "104.236.127.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("58308", "13", "2017-06-16 08:06:06", "104.236.127.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("58309", "2", "2017-06-16 08:46:44", "220.181.108.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("58310", "6", "2017-06-16 09:00:12", "69.30.213.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("58311", "10", "2017-06-16 09:00:12", "69.30.213.138", "31");
INSERT INTO `wp_rg_form_view` VALUES("58312", "3", "2017-06-16 10:09:24", "51.255.65.19", "28");
INSERT INTO `wp_rg_form_view` VALUES("58313", "10", "2017-06-16 10:09:26", "51.255.65.19", "35");
INSERT INTO `wp_rg_form_view` VALUES("58314", "6", "2017-06-16 10:58:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58315", "9", "2017-06-16 10:58:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58316", "8", "2017-06-16 10:58:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58317", "13", "2017-06-16 10:58:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58318", "15", "2017-06-16 10:58:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58319", "3", "2017-06-16 11:08:01", "217.182.132.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("58320", "10", "2017-06-16 11:35:06", "66.249.79.132", "21");
INSERT INTO `wp_rg_form_view` VALUES("58321", "10", "2017-06-16 12:41:22", "51.255.65.65", "30");
INSERT INTO `wp_rg_form_view` VALUES("58322", "10", "2017-06-16 13:48:24", "157.55.39.253", "20");
INSERT INTO `wp_rg_form_view` VALUES("58323", "3", "2017-06-16 14:05:03", "220.181.108.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("58324", "10", "2017-06-16 14:05:04", "220.181.108.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("58325", "11", "2017-06-16 14:27:21", "77.75.76.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("58326", "10", "2017-06-16 15:26:40", "157.55.39.253", "10");
INSERT INTO `wp_rg_form_view` VALUES("58327", "3", "2017-06-16 16:05:55", "202.46.51.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("58328", "10", "2017-06-16 16:05:57", "202.46.51.190", "41");
INSERT INTO `wp_rg_form_view` VALUES("58329", "10", "2017-06-16 17:13:23", "202.46.55.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("58330", "10", "2017-06-16 17:13:23", "207.46.13.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("58331", "10", "2017-06-16 18:03:17", "77.75.77.119", "72");
INSERT INTO `wp_rg_form_view` VALUES("58332", "3", "2017-06-16 18:20:44", "157.55.39.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("58333", "5", "2017-06-16 19:09:17", "51.255.65.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("58334", "10", "2017-06-16 19:09:17", "51.255.65.50", "40");
INSERT INTO `wp_rg_form_view` VALUES("58335", "3", "2017-06-16 19:12:27", "164.132.162.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("58336", "14", "2017-06-16 19:40:55", "107.175.89.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("58337", "10", "2017-06-16 20:25:25", "96.54.225.248", "52");
INSERT INTO `wp_rg_form_view` VALUES("58338", "3", "2017-06-16 20:34:30", "142.104.69.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("58339", "10", "2017-06-16 21:05:32", "162.210.196.130", "51");
INSERT INTO `wp_rg_form_view` VALUES("58340", "3", "2017-06-16 21:20:28", "164.132.161.60", "3");
INSERT INTO `wp_rg_form_view` VALUES("58341", "12", "2017-06-16 21:52:31", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58342", "10", "2017-06-16 22:16:00", "207.194.133.9", "113");
INSERT INTO `wp_rg_form_view` VALUES("58343", "3", "2017-06-16 22:53:39", "146.185.223.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("58344", "10", "2017-06-16 23:56:59", "217.182.132.28", "635");
INSERT INTO `wp_rg_form_view` VALUES("58345", "3", "2017-06-16 23:57:16", "207.46.13.176", "26");
INSERT INTO `wp_rg_form_view` VALUES("58346", "9", "2017-06-16 23:57:17", "207.46.13.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("58347", "5", "2017-06-16 23:57:50", "207.46.13.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("58348", "13", "2017-06-16 23:57:56", "207.46.13.49", "2");
INSERT INTO `wp_rg_form_view` VALUES("58349", "15", "2017-06-16 23:58:11", "207.46.13.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("58350", "6", "2017-06-16 23:58:13", "207.46.13.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("58351", "8", "2017-06-16 23:58:25", "157.55.39.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("58352", "10", "2017-06-17 00:05:20", "202.46.58.99", "48");
INSERT INTO `wp_rg_form_view` VALUES("58353", "3", "2017-06-17 00:14:17", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("58354", "6", "2017-06-17 00:14:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58355", "9", "2017-06-17 00:14:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58356", "8", "2017-06-17 00:14:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58357", "13", "2017-06-17 00:14:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58358", "15", "2017-06-17 00:14:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58359", "14", "2017-06-17 00:52:30", "64.180.86.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("58360", "3", "2017-06-17 01:03:28", "66.249.79.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("58361", "10", "2017-06-17 01:03:28", "66.249.79.20", "31");
INSERT INTO `wp_rg_form_view` VALUES("58362", "3", "2017-06-17 02:19:17", "202.46.54.95", "3");
INSERT INTO `wp_rg_form_view` VALUES("58363", "10", "2017-06-17 02:19:20", "202.46.54.95", "40");
INSERT INTO `wp_rg_form_view` VALUES("58364", "10", "2017-06-17 03:12:55", "68.180.229.228", "111");
INSERT INTO `wp_rg_form_view` VALUES("58365", "3", "2017-06-17 03:20:59", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("58366", "14", "2017-06-17 03:32:01", "91.205.52.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("58367", "10", "2017-06-17 05:00:49", "24.108.13.92", "32");
INSERT INTO `wp_rg_form_view` VALUES("58368", "8", "2017-06-17 05:18:35", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("58369", "10", "2017-06-17 06:22:05", "89.144.46.17", "469");
INSERT INTO `wp_rg_form_view` VALUES("58370", "2", "2017-06-17 06:22:13", "99.192.47.207", "2");
INSERT INTO `wp_rg_form_view` VALUES("58371", "3", "2017-06-17 06:22:21", "212.69.166.17", "11");
INSERT INTO `wp_rg_form_view` VALUES("58372", "11", "2017-06-17 06:22:24", "185.15.95.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("58373", "14", "2017-06-17 06:36:49", "37.187.56.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("58374", "15", "2017-06-17 06:39:06", "37.187.56.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("58375", "10", "2017-06-17 07:03:13", "202.46.50.157", "289");
INSERT INTO `wp_rg_form_view` VALUES("58376", "3", "2017-06-17 07:58:06", "217.79.249.41", "5");
INSERT INTO `wp_rg_form_view` VALUES("58377", "14", "2017-06-17 07:58:10", "89.144.32.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("58378", "11", "2017-06-17 07:58:26", "63.223.124.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("58379", "2", "2017-06-17 07:58:49", "89.144.54.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("58380", "3", "2017-06-17 08:12:27", "202.46.58.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("58381", "10", "2017-06-17 08:12:28", "202.46.58.182", "10");
INSERT INTO `wp_rg_form_view` VALUES("58382", "10", "2017-06-17 09:08:25", "164.132.161.55", "43");
INSERT INTO `wp_rg_form_view` VALUES("58383", "3", "2017-06-17 09:39:21", "66.249.79.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("58384", "8", "2017-06-17 10:15:14", "51.255.71.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("58385", "10", "2017-06-17 10:15:16", "51.255.71.117", "30");
INSERT INTO `wp_rg_form_view` VALUES("58386", "3", "2017-06-17 10:23:43", "157.55.39.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("58387", "10", "2017-06-17 11:32:13", "68.180.229.228", "10");
INSERT INTO `wp_rg_form_view` VALUES("58388", "3", "2017-06-17 12:08:45", "51.255.71.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("58389", "10", "2017-06-17 12:08:46", "51.255.71.110", "20");
INSERT INTO `wp_rg_form_view` VALUES("58390", "10", "2017-06-17 13:06:23", "72.14.199.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("58391", "10", "2017-06-17 14:19:16", "202.46.54.180", "31");
INSERT INTO `wp_rg_form_view` VALUES("58392", "3", "2017-06-17 14:52:32", "202.46.51.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("58393", "10", "2017-06-17 15:25:26", "66.249.79.22", "31");
INSERT INTO `wp_rg_form_view` VALUES("58394", "10", "2017-06-17 16:32:40", "202.46.48.198", "10");
INSERT INTO `wp_rg_form_view` VALUES("58395", "3", "2017-06-17 17:05:55", "202.46.52.79", "9");
INSERT INTO `wp_rg_form_view` VALUES("58396", "10", "2017-06-17 17:19:59", "195.154.146.17", "20");
INSERT INTO `wp_rg_form_view` VALUES("58397", "6", "2017-06-17 18:12:34", "202.46.55.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("58398", "10", "2017-06-17 18:12:37", "202.46.55.69", "74");
INSERT INTO `wp_rg_form_view` VALUES("58399", "10", "2017-06-17 19:03:39", "204.12.228.194", "70");
INSERT INTO `wp_rg_form_view` VALUES("58400", "3", "2017-06-17 19:39:40", "51.255.65.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("58401", "10", "2017-06-17 20:59:14", "202.46.56.65", "10");
INSERT INTO `wp_rg_form_view` VALUES("58402", "8", "2017-06-17 21:26:32", "66.249.79.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("58403", "3", "2017-06-17 21:59:50", "157.55.39.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("58404", "10", "2017-06-17 21:59:51", "157.55.39.253", "10");
INSERT INTO `wp_rg_form_view` VALUES("58405", "10", "2017-06-17 22:12:13", "157.55.39.93", "20");
INSERT INTO `wp_rg_form_view` VALUES("58406", "15", "2017-06-17 23:12:56", "66.249.79.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("58407", "10", "2017-06-17 23:12:59", "66.249.79.22", "45");
INSERT INTO `wp_rg_form_view` VALUES("58408", "3", "2017-06-17 23:17:48", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("58409", "6", "2017-06-17 23:17:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58410", "9", "2017-06-17 23:17:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58411", "8", "2017-06-17 23:17:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58412", "13", "2017-06-17 23:17:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58413", "10", "2017-06-18 00:00:49", "51.255.71.122", "22");
INSERT INTO `wp_rg_form_view` VALUES("58414", "10", "2017-06-18 01:05:50", "157.55.39.149", "25");
INSERT INTO `wp_rg_form_view` VALUES("58415", "3", "2017-06-18 01:27:28", "157.55.39.188", "28");
INSERT INTO `wp_rg_form_view` VALUES("58416", "6", "2017-06-18 01:32:29", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("58417", "9", "2017-06-18 01:32:30", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("58418", "8", "2017-06-18 01:32:30", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("58419", "13", "2017-06-18 01:32:30", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("58420", "15", "2017-06-18 01:32:31", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("58421", "10", "2017-06-18 02:15:48", "164.132.161.73", "20");
INSERT INTO `wp_rg_form_view` VALUES("58422", "8", "2017-06-18 02:25:55", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("58423", "11", "2017-06-18 03:31:11", "78.48.178.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("58424", "10", "2017-06-18 03:31:21", "78.48.178.245", "90");
INSERT INTO `wp_rg_form_view` VALUES("58425", "2", "2017-06-18 03:32:17", "78.48.178.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("58426", "3", "2017-06-18 03:32:47", "78.48.178.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("58427", "6", "2017-06-18 03:59:21", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("58428", "3", "2017-06-18 04:08:59", "157.55.39.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("58429", "10", "2017-06-18 04:08:59", "157.55.39.187", "52");
INSERT INTO `wp_rg_form_view` VALUES("58430", "14", "2017-06-18 05:00:59", "96.50.16.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("58431", "10", "2017-06-18 05:08:00", "68.180.229.228", "30");
INSERT INTO `wp_rg_form_view` VALUES("58432", "3", "2017-06-18 05:19:27", "157.55.39.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("58433", "3", "2017-06-18 06:43:24", "24.69.17.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("58434", "10", "2017-06-18 06:52:56", "164.132.161.5", "11");
INSERT INTO `wp_rg_form_view` VALUES("58435", "10", "2017-06-18 07:32:11", "202.46.55.130", "10");
INSERT INTO `wp_rg_form_view` VALUES("58436", "3", "2017-06-18 07:36:50", "5.9.62.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58437", "6", "2017-06-18 07:37:29", "5.9.62.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58438", "10", "2017-06-18 08:16:22", "217.182.132.18", "40");
INSERT INTO `wp_rg_form_view` VALUES("58439", "3", "2017-06-18 09:05:49", "217.182.132.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("58440", "10", "2017-06-18 09:09:12", "68.180.229.228", "40");
INSERT INTO `wp_rg_form_view` VALUES("58441", "9", "2017-06-18 09:47:59", "202.46.53.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("58442", "10", "2017-06-18 10:09:01", "51.255.65.29", "21");
INSERT INTO `wp_rg_form_view` VALUES("58443", "2", "2017-06-18 10:33:48", "134.119.213.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("58444", "10", "2017-06-18 11:07:13", "157.55.39.93", "30");
INSERT INTO `wp_rg_form_view` VALUES("58445", "3", "2017-06-18 11:55:58", "202.46.51.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("58446", "10", "2017-06-18 12:14:45", "68.180.229.228", "21");
INSERT INTO `wp_rg_form_view` VALUES("58447", "14", "2017-06-18 13:02:41", "202.46.58.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("58448", "3", "2017-06-18 13:14:24", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("58449", "6", "2017-06-18 13:14:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58450", "9", "2017-06-18 13:14:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58451", "8", "2017-06-18 13:14:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58452", "10", "2017-06-18 13:14:40", "52.88.109.3", "35");
INSERT INTO `wp_rg_form_view` VALUES("58453", "13", "2017-06-18 13:14:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58454", "15", "2017-06-18 13:14:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58455", "10", "2017-06-18 14:06:15", "66.249.79.22", "70");
INSERT INTO `wp_rg_form_view` VALUES("58456", "3", "2017-06-18 14:15:40", "164.132.161.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("58457", "10", "2017-06-18 15:15:57", "202.46.51.186", "10");
INSERT INTO `wp_rg_form_view` VALUES("58458", "10", "2017-06-18 16:03:59", "164.132.161.75", "11");
INSERT INTO `wp_rg_form_view` VALUES("58459", "3", "2017-06-18 17:02:10", "24.114.23.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("58460", "10", "2017-06-18 17:02:11", "24.114.23.27", "72");
INSERT INTO `wp_rg_form_view` VALUES("58461", "10", "2017-06-18 18:18:24", "24.69.24.47", "25");
INSERT INTO `wp_rg_form_view` VALUES("58462", "12", "2017-06-18 18:52:02", "51.255.65.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("58463", "3", "2017-06-18 19:10:04", "217.182.132.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("58464", "10", "2017-06-18 19:10:05", "217.182.132.191", "51");
INSERT INTO `wp_rg_form_view` VALUES("58465", "14", "2017-06-18 20:01:49", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("58466", "10", "2017-06-18 20:20:28", "24.69.136.239", "31");
INSERT INTO `wp_rg_form_view` VALUES("58467", "15", "2017-06-18 21:28:09", "207.46.13.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("58468", "10", "2017-06-18 21:28:21", "207.46.13.116", "10");
INSERT INTO `wp_rg_form_view` VALUES("58469", "14", "2017-06-18 22:08:20", "24.68.36.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("58470", "10", "2017-06-18 22:39:35", "40.77.167.14", "454");
INSERT INTO `wp_rg_form_view` VALUES("58471", "3", "2017-06-18 22:39:48", "40.77.167.138", "34");
INSERT INTO `wp_rg_form_view` VALUES("58472", "8", "2017-06-18 22:39:55", "207.46.13.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("58473", "13", "2017-06-18 22:39:59", "207.46.13.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("58474", "9", "2017-06-18 22:40:26", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("58475", "10", "2017-06-18 23:11:31", "77.75.77.36", "50");
INSERT INTO `wp_rg_form_view` VALUES("58476", "3", "2017-06-18 23:18:56", "66.249.79.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("58477", "3", "2017-06-19 00:19:24", "217.182.132.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("58478", "10", "2017-06-19 00:19:26", "217.182.132.69", "10");
INSERT INTO `wp_rg_form_view` VALUES("58479", "10", "2017-06-19 01:00:28", "217.182.132.150", "50");
INSERT INTO `wp_rg_form_view` VALUES("58480", "3", "2017-06-19 01:44:26", "209.52.88.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("58481", "10", "2017-06-19 02:04:08", "40.77.167.84", "26");
INSERT INTO `wp_rg_form_view` VALUES("58482", "3", "2017-06-19 02:56:29", "51.255.65.33", "27");
INSERT INTO `wp_rg_form_view` VALUES("58483", "6", "2017-06-19 02:56:30", "51.255.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("58484", "9", "2017-06-19 02:56:30", "51.255.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("58485", "8", "2017-06-19 02:56:30", "51.255.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("58486", "13", "2017-06-19 02:56:31", "51.255.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("58487", "15", "2017-06-19 02:56:31", "51.255.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("58488", "3", "2017-06-19 04:02:29", "202.46.52.200", "4");
INSERT INTO `wp_rg_form_view` VALUES("58489", "10", "2017-06-19 04:02:31", "202.46.52.200", "103");
INSERT INTO `wp_rg_form_view` VALUES("58490", "14", "2017-06-19 04:45:51", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("58491", "11", "2017-06-19 04:45:58", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("58492", "10", "2017-06-19 05:09:15", "24.68.228.217", "20");
INSERT INTO `wp_rg_form_view` VALUES("58493", "14", "2017-06-19 06:34:26", "154.5.181.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("58494", "10", "2017-06-19 06:46:46", "51.255.203.77", "20");
INSERT INTO `wp_rg_form_view` VALUES("58495", "13", "2017-06-19 07:10:58", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58496", "10", "2017-06-19 07:10:59", "157.55.39.252", "111");
INSERT INTO `wp_rg_form_view` VALUES("58497", "3", "2017-06-19 07:11:27", "40.77.167.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("58498", "15", "2017-06-19 07:11:45", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58499", "8", "2017-06-19 07:30:12", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58500", "14", "2017-06-19 07:38:43", "5.189.170.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("58501", "3", "2017-06-19 09:02:45", "202.46.51.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("58502", "10", "2017-06-19 09:02:50", "202.46.51.177", "20");
INSERT INTO `wp_rg_form_view` VALUES("58503", "10", "2017-06-19 10:30:30", "72.14.199.116", "11");
INSERT INTO `wp_rg_form_view` VALUES("58504", "6", "2017-06-19 10:42:26", "202.46.49.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("58505", "3", "2017-06-19 11:21:50", "51.255.65.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58506", "10", "2017-06-19 11:21:58", "51.255.65.3", "52");
INSERT INTO `wp_rg_form_view` VALUES("58507", "10", "2017-06-19 12:02:50", "68.180.229.228", "45");
INSERT INTO `wp_rg_form_view` VALUES("58508", "3", "2017-06-19 12:20:45", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58509", "6", "2017-06-19 12:20:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58510", "9", "2017-06-19 12:20:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58511", "8", "2017-06-19 12:20:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58512", "13", "2017-06-19 12:20:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58513", "15", "2017-06-19 12:20:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58514", "11", "2017-06-19 13:00:54", "79.116.30.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("58515", "10", "2017-06-19 13:01:03", "77.75.77.95", "111");
INSERT INTO `wp_rg_form_view` VALUES("58516", "2", "2017-06-19 13:01:59", "79.116.30.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("58517", "3", "2017-06-19 13:02:39", "79.116.30.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("58518", "13", "2017-06-19 14:18:59", "164.132.161.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("58519", "10", "2017-06-19 14:19:01", "164.132.161.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("58520", "10", "2017-06-19 15:01:01", "202.46.50.134", "40");
INSERT INTO `wp_rg_form_view` VALUES("58521", "3", "2017-06-19 15:50:06", "157.55.39.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("58522", "10", "2017-06-19 16:07:49", "202.46.48.97", "21");
INSERT INTO `wp_rg_form_view` VALUES("58523", "10", "2017-06-19 17:14:28", "202.46.53.166", "80");
INSERT INTO `wp_rg_form_view` VALUES("58524", "3", "2017-06-19 17:19:46", "51.255.65.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58525", "10", "2017-06-19 18:01:36", "141.8.143.171", "90");
INSERT INTO `wp_rg_form_view` VALUES("58526", "3", "2017-06-19 18:25:56", "157.55.39.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("58527", "14", "2017-06-19 19:05:04", "96.54.254.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("58528", "3", "2017-06-19 19:07:03", "37.229.253.71", "7");
INSERT INTO `wp_rg_form_view` VALUES("58529", "3", "2017-06-19 19:07:03", "37.229.253.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("58530", "3", "2017-06-19 19:07:03", "37.229.253.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("58531", "10", "2017-06-19 19:07:55", "184.69.111.170", "40");
INSERT INTO `wp_rg_form_view` VALUES("58532", "13", "2017-06-19 19:11:18", "62.210.251.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("58533", "10", "2017-06-19 20:19:53", "217.182.132.83", "20");
INSERT INTO `wp_rg_form_view` VALUES("58534", "6", "2017-06-19 20:40:54", "51.255.65.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("58535", "10", "2017-06-19 21:20:51", "164.132.161.12", "90");
INSERT INTO `wp_rg_form_view` VALUES("58536", "5", "2017-06-19 21:29:18", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("58537", "3", "2017-06-19 21:31:51", "100.43.85.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("58538", "10", "2017-06-19 22:10:58", "40.77.167.14", "55");
INSERT INTO `wp_rg_form_view` VALUES("58539", "3", "2017-06-19 22:21:40", "157.55.39.252", "29");
INSERT INTO `wp_rg_form_view` VALUES("58540", "6", "2017-06-19 22:21:41", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58541", "9", "2017-06-19 22:21:42", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58542", "8", "2017-06-19 22:21:42", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58543", "13", "2017-06-19 22:21:43", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58544", "15", "2017-06-19 22:21:43", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58545", "14", "2017-06-19 22:42:25", "172.218.108.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("58546", "10", "2017-06-19 23:21:08", "202.46.57.161", "20");
INSERT INTO `wp_rg_form_view` VALUES("58547", "3", "2017-06-19 23:54:21", "202.46.49.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("58548", "10", "2017-06-20 00:10:20", "72.14.199.116", "22");
INSERT INTO `wp_rg_form_view` VALUES("58549", "7", "2017-06-20 01:01:01", "202.46.48.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("58550", "10", "2017-06-20 01:01:11", "202.46.48.196", "50");
INSERT INTO `wp_rg_form_view` VALUES("58551", "10", "2017-06-20 02:01:33", "199.59.150.183", "38");
INSERT INTO `wp_rg_form_view` VALUES("58552", "3", "2017-06-20 02:12:25", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58553", "6", "2017-06-20 02:12:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58554", "9", "2017-06-20 02:12:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58555", "8", "2017-06-20 02:12:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58556", "13", "2017-06-20 02:12:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58557", "15", "2017-06-20 02:12:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58558", "10", "2017-06-20 03:43:45", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("58559", "10", "2017-06-20 04:31:01", "164.132.162.154", "10");
INSERT INTO `wp_rg_form_view` VALUES("58560", "10", "2017-06-20 06:52:15", "68.180.229.228", "246");
INSERT INTO `wp_rg_form_view` VALUES("58561", "3", "2017-06-20 06:52:57", "46.229.168.75", "5");
INSERT INTO `wp_rg_form_view` VALUES("58562", "10", "2017-06-20 07:00:09", "46.229.168.69", "32");
INSERT INTO `wp_rg_form_view` VALUES("58563", "14", "2017-06-20 07:34:05", "181.214.4.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("58564", "10", "2017-06-20 08:59:28", "199.21.99.202", "10");
INSERT INTO `wp_rg_form_view` VALUES("58565", "13", "2017-06-20 09:08:17", "141.8.143.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("58566", "10", "2017-06-20 09:08:17", "141.8.143.171", "50");
INSERT INTO `wp_rg_form_view` VALUES("58567", "3", "2017-06-20 09:08:58", "202.46.55.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("58568", "10", "2017-06-20 10:06:29", "37.9.122.203", "71");
INSERT INTO `wp_rg_form_view` VALUES("58569", "11", "2017-06-20 10:13:11", "45.55.254.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("58570", "2", "2017-06-20 10:13:11", "45.55.254.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("58571", "3", "2017-06-20 10:13:12", "45.55.254.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("58572", "10", "2017-06-20 12:18:38", "70.65.77.74", "60");
INSERT INTO `wp_rg_form_view` VALUES("58573", "3", "2017-06-20 12:19:02", "70.65.77.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("58574", "14", "2017-06-20 12:50:00", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("58575", "10", "2017-06-20 13:37:51", "141.8.143.171", "30");
INSERT INTO `wp_rg_form_view` VALUES("58576", "3", "2017-06-20 13:58:03", "217.182.132.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("58577", "10", "2017-06-20 14:49:16", "77.75.76.160", "10");
INSERT INTO `wp_rg_form_view` VALUES("58578", "3", "2017-06-20 15:03:48", "202.46.51.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("58579", "10", "2017-06-20 15:03:49", "202.46.51.113", "31");
INSERT INTO `wp_rg_form_view` VALUES("58580", "10", "2017-06-20 16:07:23", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58581", "10", "2017-06-20 18:08:38", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58582", "10", "2017-06-20 19:06:13", "77.75.77.95", "23");
INSERT INTO `wp_rg_form_view` VALUES("58583", "3", "2017-06-20 19:37:19", "51.255.65.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("58584", "10", "2017-06-20 20:07:53", "184.66.248.195", "51");
INSERT INTO `wp_rg_form_view` VALUES("58585", "3", "2017-06-20 20:43:14", "75.155.181.187", "2");
INSERT INTO `wp_rg_form_view` VALUES("58586", "10", "2017-06-20 21:08:43", "184.66.49.231", "71");
INSERT INTO `wp_rg_form_view` VALUES("58587", "3", "2017-06-20 21:08:50", "184.66.49.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("58588", "14", "2017-06-20 21:24:58", "172.218.193.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("58589", "10", "2017-06-20 22:36:43", "202.46.57.184", "20");
INSERT INTO `wp_rg_form_view` VALUES("58590", "10", "2017-06-20 23:10:47", "24.68.20.29", "59");
INSERT INTO `wp_rg_form_view` VALUES("58591", "10", "2017-06-20 23:10:47", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58592", "10", "2017-06-20 23:10:47", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("58593", "14", "2017-06-20 23:56:23", "24.68.20.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("58594", "10", "2017-06-21 00:06:14", "157.55.39.252", "30");
INSERT INTO `wp_rg_form_view` VALUES("58595", "10", "2017-06-21 01:11:43", "202.46.58.133", "141");
INSERT INTO `wp_rg_form_view` VALUES("58596", "8", "2017-06-21 01:24:47", "66.249.79.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("58597", "11", "2017-06-21 01:55:00", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("58598", "2", "2017-06-21 01:55:04", "149.202.74.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("58599", "3", "2017-06-21 01:55:13", "51.255.71.100", "3");
INSERT INTO `wp_rg_form_view` VALUES("58600", "8", "2017-06-21 02:43:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58601", "3", "2017-06-21 02:43:51", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58602", "6", "2017-06-21 02:43:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58603", "9", "2017-06-21 02:43:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58604", "10", "2017-06-21 02:43:52", "52.88.109.3", "15");
INSERT INTO `wp_rg_form_view` VALUES("58605", "15", "2017-06-21 02:43:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58606", "10", "2017-06-21 03:22:23", "70.67.60.153", "62");
INSERT INTO `wp_rg_form_view` VALUES("58607", "3", "2017-06-21 03:24:03", "70.67.60.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("58608", "8", "2017-06-21 03:49:10", "51.255.65.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("58609", "10", "2017-06-21 04:20:40", "40.77.167.26", "30");
INSERT INTO `wp_rg_form_view` VALUES("58610", "10", "2017-06-21 05:24:53", "202.46.50.156", "20");
INSERT INTO `wp_rg_form_view` VALUES("58611", "10", "2017-06-21 06:03:12", "24.108.13.92", "43");
INSERT INTO `wp_rg_form_view` VALUES("58612", "8", "2017-06-21 06:50:24", "164.132.162.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("58613", "10", "2017-06-21 07:00:37", "141.8.143.171", "121");
INSERT INTO `wp_rg_form_view` VALUES("58614", "3", "2017-06-21 07:04:51", "202.46.54.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58615", "8", "2017-06-21 07:38:16", "202.46.52.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("58616", "10", "2017-06-21 08:09:16", "100.43.81.132", "30");
INSERT INTO `wp_rg_form_view` VALUES("58617", "3", "2017-06-21 08:24:27", "100.43.85.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("58618", "10", "2017-06-21 09:18:18", "202.46.49.207", "20");
INSERT INTO `wp_rg_form_view` VALUES("58619", "3", "2017-06-21 09:51:30", "202.46.48.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("58620", "10", "2017-06-21 10:04:37", "51.255.65.67", "20");
INSERT INTO `wp_rg_form_view` VALUES("58621", "2", "2017-06-21 10:30:08", "164.132.161.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("58622", "10", "2017-06-21 11:31:34", "202.46.58.157", "20");
INSERT INTO `wp_rg_form_view` VALUES("58623", "10", "2017-06-21 12:52:56", "202.46.51.39", "10");
INSERT INTO `wp_rg_form_view` VALUES("58624", "3", "2017-06-21 13:28:46", "195.22.127.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("58625", "10", "2017-06-21 13:28:52", "195.22.127.139", "15");
INSERT INTO `wp_rg_form_view` VALUES("58626", "10", "2017-06-21 14:39:21", "154.5.209.249", "90");
INSERT INTO `wp_rg_form_view` VALUES("58627", "2", "2017-06-21 14:47:17", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("58628", "3", "2017-06-21 14:47:57", "40.77.167.26", "4");
INSERT INTO `wp_rg_form_view` VALUES("58629", "11", "2017-06-21 14:54:19", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("58630", "10", "2017-06-21 15:00:40", "40.77.167.122", "51");
INSERT INTO `wp_rg_form_view` VALUES("58631", "3", "2017-06-21 15:39:33", "202.46.48.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("58632", "10", "2017-06-21 16:12:54", "202.46.56.185", "12");
INSERT INTO `wp_rg_form_view` VALUES("58633", "8", "2017-06-21 16:27:43", "66.249.79.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("58634", "3", "2017-06-21 17:08:23", "207.46.13.129", "29");
INSERT INTO `wp_rg_form_view` VALUES("58635", "10", "2017-06-21 17:08:33", "207.46.13.129", "78");
INSERT INTO `wp_rg_form_view` VALUES("58636", "8", "2017-06-21 17:16:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58637", "6", "2017-06-21 17:16:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58638", "9", "2017-06-21 17:16:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58639", "15", "2017-06-21 17:16:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58640", "10", "2017-06-21 18:05:29", "202.46.51.200", "61");
INSERT INTO `wp_rg_form_view` VALUES("58641", "11", "2017-06-21 18:20:59", "5.255.250.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("58642", "3", "2017-06-21 18:38:49", "202.46.51.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("58643", "6", "2017-06-21 19:12:16", "202.46.53.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("58644", "10", "2017-06-21 19:12:22", "202.46.53.156", "10");
INSERT INTO `wp_rg_form_view` VALUES("58645", "3", "2017-06-21 19:55:11", "66.249.79.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("58646", "10", "2017-06-21 20:14:40", "24.108.220.81", "539");
INSERT INTO `wp_rg_form_view` VALUES("58647", "10", "2017-06-21 20:14:40", "24.108.220.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58648", "3", "2017-06-21 20:24:35", "40.77.167.26", "21");
INSERT INTO `wp_rg_form_view` VALUES("58649", "9", "2017-06-21 20:25:10", "40.77.167.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("58650", "8", "2017-06-21 20:25:25", "40.77.167.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58651", "10", "2017-06-21 21:16:49", "202.46.53.140", "42");
INSERT INTO `wp_rg_form_view` VALUES("58652", "3", "2017-06-21 21:18:58", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("58653", "10", "2017-06-21 22:22:02", "184.66.248.195", "22");
INSERT INTO `wp_rg_form_view` VALUES("58654", "5", "2017-06-21 22:52:17", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("58655", "10", "2017-06-21 23:09:56", "40.77.167.26", "131");
INSERT INTO `wp_rg_form_view` VALUES("58656", "3", "2017-06-21 23:15:45", "40.77.167.26", "7");
INSERT INTO `wp_rg_form_view` VALUES("58657", "11", "2017-06-21 23:22:32", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("58658", "2", "2017-06-21 23:49:02", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("58659", "3", "2017-06-22 00:05:10", "40.77.167.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("58660", "10", "2017-06-22 00:14:19", "40.77.167.122", "30");
INSERT INTO `wp_rg_form_view` VALUES("58661", "10", "2017-06-22 01:06:14", "77.75.79.119", "20");
INSERT INTO `wp_rg_form_view` VALUES("58662", "10", "2017-06-22 02:27:40", "184.66.37.77", "112");
INSERT INTO `wp_rg_form_view` VALUES("58663", "2", "2017-06-22 02:35:18", "54.149.84.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("58664", "8", "2017-06-22 02:47:27", "141.8.143.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("58665", "10", "2017-06-22 03:10:44", "24.108.13.92", "11");
INSERT INTO `wp_rg_form_view` VALUES("58666", "3", "2017-06-22 05:17:45", "202.46.54.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("58667", "10", "2017-06-22 05:17:47", "202.46.54.109", "20");
INSERT INTO `wp_rg_form_view` VALUES("58668", "10", "2017-06-22 06:36:19", "96.50.5.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("58669", "10", "2017-06-22 07:11:53", "77.75.79.62", "20");
INSERT INTO `wp_rg_form_view` VALUES("58670", "11", "2017-06-22 07:46:08", "174.129.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("58671", "3", "2017-06-22 07:47:01", "174.129.133.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("58672", "3", "2017-06-22 08:03:23", "164.132.161.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("58673", "10", "2017-06-22 09:07:37", "72.14.199.118", "19");
INSERT INTO `wp_rg_form_view` VALUES("58674", "3", "2017-06-22 09:15:39", "68.180.229.228", "9");
INSERT INTO `wp_rg_form_view` VALUES("58675", "3", "2017-06-22 10:44:18", "141.8.143.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("58676", "10", "2017-06-22 10:44:45", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("58677", "3", "2017-06-22 11:06:06", "199.21.99.202", "59");
INSERT INTO `wp_rg_form_view` VALUES("58678", "8", "2017-06-22 11:29:09", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58679", "8", "2017-06-22 11:29:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58680", "6", "2017-06-22 11:29:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58681", "6", "2017-06-22 11:29:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58682", "9", "2017-06-22 11:29:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58683", "9", "2017-06-22 11:29:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58684", "10", "2017-06-22 11:29:14", "52.88.109.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("58685", "10", "2017-06-22 11:29:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58686", "15", "2017-06-22 11:29:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58687", "15", "2017-06-22 11:29:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58688", "11", "2017-06-22 11:43:05", "77.161.235.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("58689", "2", "2017-06-22 11:43:39", "77.161.235.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("58690", "15", "2017-06-22 12:51:34", "202.46.54.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("58691", "3", "2017-06-22 12:57:08", "164.132.161.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("58692", "5", "2017-06-22 13:24:55", "202.46.57.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("58693", "11", "2017-06-22 14:17:13", "51.255.65.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("58694", "3", "2017-06-22 14:23:54", "40.77.167.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58695", "8", "2017-06-22 15:05:08", "202.46.55.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("58696", "10", "2017-06-22 15:28:15", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("58697", "3", "2017-06-22 15:55:27", "96.54.240.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("58698", "14", "2017-06-22 15:56:36", "96.54.240.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("58699", "3", "2017-06-22 17:55:25", "51.255.65.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("58700", "3", "2017-06-22 18:11:58", "77.66.1.97", "30");
INSERT INTO `wp_rg_form_view` VALUES("58701", "8", "2017-06-22 18:19:10", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58702", "6", "2017-06-22 18:19:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58703", "9", "2017-06-22 18:19:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58704", "10", "2017-06-22 18:19:11", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("58705", "15", "2017-06-22 18:19:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58706", "10", "2017-06-22 19:18:27", "142.31.10.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("58707", "9", "2017-06-22 20:04:54", "202.46.56.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("58708", "10", "2017-06-22 20:08:45", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("58709", "10", "2017-06-22 21:18:58", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58710", "3", "2017-06-22 21:30:28", "207.46.13.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("58711", "3", "2017-06-22 22:03:27", "77.75.79.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("58712", "10", "2017-06-22 22:34:33", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("58713", "10", "2017-06-22 23:16:00", "77.75.78.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("58714", "14", "2017-06-22 23:40:51", "45.61.46.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("58715", "3", "2017-06-23 00:07:52", "137.74.207.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("58716", "14", "2017-06-23 00:16:32", "66.249.79.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("58717", "10", "2017-06-23 00:31:48", "66.249.79.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("58718", "3", "2017-06-23 02:13:54", "66.249.79.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("58719", "10", "2017-06-23 02:32:19", "202.46.54.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("58720", "15", "2017-06-23 03:05:40", "202.46.55.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("58721", "3", "2017-06-23 03:07:33", "51.255.65.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("58722", "10", "2017-06-23 03:10:23", "157.55.39.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("58723", "11", "2017-06-23 06:16:26", "100.43.85.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("58724", "10", "2017-06-23 06:29:43", "199.21.99.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("58725", "3", "2017-06-23 06:54:16", "40.77.167.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58726", "3", "2017-06-23 07:41:02", "66.249.79.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("58727", "10", "2017-06-23 07:41:03", "66.249.79.22", "5");
INSERT INTO `wp_rg_form_view` VALUES("58728", "8", "2017-06-23 08:31:13", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58729", "3", "2017-06-23 08:31:14", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58730", "6", "2017-06-23 08:31:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58731", "9", "2017-06-23 08:31:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58732", "10", "2017-06-23 08:31:15", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("58733", "15", "2017-06-23 08:31:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58734", "10", "2017-06-23 09:00:52", "40.77.167.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("58735", "3", "2017-06-23 09:20:48", "40.77.167.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("58736", "3", "2017-06-23 12:07:30", "51.255.65.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("58737", "3", "2017-06-23 13:34:26", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("58738", "10", "2017-06-23 13:58:25", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("58739", "10", "2017-06-23 14:01:34", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("58740", "3", "2017-06-23 15:31:19", "202.46.55.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("58741", "3", "2017-06-23 17:11:43", "202.46.52.100", "3");
INSERT INTO `wp_rg_form_view` VALUES("58742", "10", "2017-06-23 18:12:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58743", "8", "2017-06-23 18:15:06", "77.75.78.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("58744", "3", "2017-06-23 18:51:27", "202.46.48.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("58745", "10", "2017-06-23 19:12:23", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58746", "6", "2017-06-23 19:24:36", "202.46.57.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("58747", "3", "2017-06-23 19:44:05", "66.249.79.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("58748", "8", "2017-06-23 20:11:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58749", "3", "2017-06-23 20:11:38", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("58750", "6", "2017-06-23 20:11:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58751", "9", "2017-06-23 20:11:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58752", "10", "2017-06-23 20:11:39", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("58753", "15", "2017-06-23 20:11:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58754", "3", "2017-06-23 21:10:45", "40.77.167.112", "25");
INSERT INTO `wp_rg_form_view` VALUES("58755", "10", "2017-06-23 21:10:50", "40.77.167.112", "11");
INSERT INTO `wp_rg_form_view` VALUES("58756", "9", "2017-06-23 21:11:12", "157.55.39.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("58757", "15", "2017-06-23 21:11:23", "40.77.167.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("58758", "6", "2017-06-23 21:11:28", "40.77.167.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("58759", "5", "2017-06-23 21:11:29", "40.77.167.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("58760", "8", "2017-06-23 21:12:54", "40.77.167.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58761", "11", "2017-06-23 22:21:11", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58762", "3", "2017-06-23 22:24:25", "66.249.79.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("58763", "3", "2017-06-23 23:55:02", "66.249.79.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("58764", "10", "2017-06-23 23:56:07", "40.77.167.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("58765", "10", "2017-06-24 00:06:43", "72.14.199.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("58766", "3", "2017-06-24 00:10:19", "164.132.161.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("58767", "10", "2017-06-24 01:22:29", "68.180.229.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("58768", "3", "2017-06-24 01:49:56", "202.46.51.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("58769", "3", "2017-06-24 02:18:49", "192.99.66.150", "56");
INSERT INTO `wp_rg_form_view` VALUES("58770", "10", "2017-06-24 02:19:05", "192.99.66.150", "12");
INSERT INTO `wp_rg_form_view` VALUES("58771", "14", "2017-06-24 02:19:29", "192.99.66.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("58772", "8", "2017-06-24 02:38:08", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58773", "8", "2017-06-24 02:38:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58774", "6", "2017-06-24 02:38:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58775", "6", "2017-06-24 02:38:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58776", "9", "2017-06-24 02:38:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58777", "9", "2017-06-24 02:38:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58778", "15", "2017-06-24 02:38:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58779", "15", "2017-06-24 02:38:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58780", "10", "2017-06-24 03:20:41", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("58781", "3", "2017-06-24 03:37:33", "202.46.52.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("58782", "3", "2017-06-24 05:59:40", "202.46.57.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("58783", "10", "2017-06-24 07:49:50", "77.75.76.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("58784", "10", "2017-06-24 08:51:41", "66.249.79.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("58785", "8", "2017-06-24 09:03:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58786", "3", "2017-06-24 09:03:40", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58787", "6", "2017-06-24 09:03:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58788", "9", "2017-06-24 09:03:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58789", "10", "2017-06-24 09:03:41", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("58790", "15", "2017-06-24 09:03:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58791", "10", "2017-06-24 10:07:26", "40.77.167.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("58792", "3", "2017-06-24 10:13:33", "202.46.57.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("58793", "3", "2017-06-24 11:16:16", "202.46.56.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("58794", "10", "2017-06-24 11:30:46", "66.249.79.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("58795", "8", "2017-06-24 11:34:03", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58796", "8", "2017-06-24 12:12:43", "51.255.65.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("58797", "3", "2017-06-24 13:07:44", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58798", "10", "2017-06-24 13:29:32", "202.46.54.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("58799", "14", "2017-06-24 14:19:41", "77.75.79.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("58800", "15", "2017-06-24 14:28:26", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58801", "3", "2017-06-24 14:34:19", "40.77.167.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("58802", "9", "2017-06-24 15:10:12", "40.77.167.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("58803", "10", "2017-06-24 15:13:50", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("58804", "14", "2017-06-24 15:24:35", "23.94.158.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("58805", "3", "2017-06-24 15:24:37", "23.94.158.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("58806", "3", "2017-06-24 16:23:02", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58807", "3", "2017-06-24 17:23:56", "208.43.225.85", "6");
INSERT INTO `wp_rg_form_view` VALUES("58808", "10", "2017-06-24 17:24:07", "208.43.225.85", "7");
INSERT INTO `wp_rg_form_view` VALUES("58809", "8", "2017-06-24 17:24:37", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("58810", "15", "2017-06-24 17:25:19", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("58811", "11", "2017-06-24 17:25:23", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("58812", "10", "2017-06-24 18:32:34", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58813", "3", "2017-06-24 18:32:34", "40.77.167.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("58814", "11", "2017-06-24 19:16:58", "142.104.35.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("58815", "11", "2017-06-24 19:16:58", "142.104.35.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("58816", "3", "2017-06-24 19:56:56", "51.255.65.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("58817", "3", "2017-06-24 20:07:43", "217.182.132.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("58818", "3", "2017-06-24 21:37:12", "66.249.79.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("58819", "14", "2017-06-24 21:59:07", "158.69.225.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("58820", "3", "2017-06-24 22:04:22", "157.55.39.81", "14");
INSERT INTO `wp_rg_form_view` VALUES("58821", "10", "2017-06-24 22:04:31", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58822", "8", "2017-06-24 22:04:34", "157.55.39.81", "3");
INSERT INTO `wp_rg_form_view` VALUES("58823", "8", "2017-06-24 23:35:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58824", "3", "2017-06-24 23:35:44", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58825", "6", "2017-06-24 23:35:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58826", "9", "2017-06-24 23:35:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58827", "10", "2017-06-24 23:35:47", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("58828", "15", "2017-06-24 23:35:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58829", "8", "2017-06-25 00:20:45", "51.255.65.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("58830", "3", "2017-06-25 00:33:15", "141.8.143.171", "5");
INSERT INTO `wp_rg_form_view` VALUES("58831", "10", "2017-06-25 00:37:14", "218.107.10.236", "7");
INSERT INTO `wp_rg_form_view` VALUES("58832", "5", "2017-06-25 00:39:42", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("58833", "14", "2017-06-25 00:39:57", "218.107.10.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("58834", "3", "2017-06-25 01:03:29", "157.55.39.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("58835", "3", "2017-06-25 03:07:31", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("58836", "14", "2017-06-25 03:32:41", "154.16.89.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("58837", "10", "2017-06-25 04:34:40", "217.182.132.27", "2");
INSERT INTO `wp_rg_form_view` VALUES("58838", "3", "2017-06-25 04:50:06", "37.229.253.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("58839", "3", "2017-06-25 05:27:46", "40.77.167.26", "4");
INSERT INTO `wp_rg_form_view` VALUES("58840", "10", "2017-06-25 05:30:44", "72.14.199.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("58841", "3", "2017-06-25 06:45:55", "141.8.143.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("58842", "10", "2017-06-25 07:35:46", "40.77.167.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58843", "10", "2017-06-25 08:01:51", "202.46.57.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("58844", "3", "2017-06-25 08:19:31", "164.132.161.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("58845", "5", "2017-06-25 08:51:33", "217.182.132.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("58846", "3", "2017-06-25 09:08:33", "202.46.50.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("58847", "10", "2017-06-25 10:28:59", "51.255.65.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("58848", "3", "2017-06-25 10:34:02", "51.255.65.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("58849", "3", "2017-06-25 11:01:37", "46.229.168.72", "43");
INSERT INTO `wp_rg_form_view` VALUES("58850", "10", "2017-06-25 11:03:53", "46.229.168.68", "21");
INSERT INTO `wp_rg_form_view` VALUES("58851", "11", "2017-06-25 11:06:04", "46.229.168.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("58852", "14", "2017-06-25 11:09:05", "46.229.168.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("58853", "8", "2017-06-25 11:12:08", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("58854", "6", "2017-06-25 11:12:21", "46.229.168.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("58855", "9", "2017-06-25 11:33:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58856", "15", "2017-06-25 11:33:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58857", "3", "2017-06-25 12:11:15", "157.55.39.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58858", "10", "2017-06-25 12:19:29", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58859", "3", "2017-06-25 13:14:38", "202.46.58.83", "4");
INSERT INTO `wp_rg_form_view` VALUES("58860", "10", "2017-06-25 13:43:16", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("58861", "6", "2017-06-25 14:20:53", "202.46.50.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("58862", "3", "2017-06-25 15:03:47", "40.77.167.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("58863", "14", "2017-06-25 15:22:08", "184.66.240.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("58864", "11", "2017-06-25 15:27:38", "202.46.53.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("58865", "14", "2017-06-25 16:39:06", "154.16.89.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("58866", "8", "2017-06-25 17:26:19", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("58867", "3", "2017-06-25 17:26:21", "52.88.109.3", "82");
INSERT INTO `wp_rg_form_view` VALUES("58868", "6", "2017-06-25 17:26:22", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58869", "9", "2017-06-25 17:26:22", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58870", "10", "2017-06-25 17:26:23", "52.88.109.3", "15");
INSERT INTO `wp_rg_form_view` VALUES("58871", "15", "2017-06-25 17:26:24", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58872", "10", "2017-06-25 18:47:28", "72.14.199.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("58873", "3", "2017-06-25 19:14:35", "164.132.161.5", "4");
INSERT INTO `wp_rg_form_view` VALUES("58874", "3", "2017-06-25 20:11:45", "96.50.105.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("58875", "10", "2017-06-25 21:30:41", "199.21.99.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("58876", "3", "2017-06-25 21:36:14", "164.132.161.26", "4");
INSERT INTO `wp_rg_form_view` VALUES("58877", "11", "2017-06-25 21:40:11", "141.8.143.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("58878", "7", "2017-06-25 21:41:12", "141.8.143.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("58879", "6", "2017-06-25 21:43:45", "141.8.143.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("58880", "3", "2017-06-25 22:12:38", "217.182.132.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("58881", "10", "2017-06-25 22:33:00", "217.182.132.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("58882", "10", "2017-06-25 23:48:46", "24.108.200.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("58883", "10", "2017-06-26 00:05:04", "24.108.200.151", "6");
INSERT INTO `wp_rg_form_view` VALUES("58884", "8", "2017-06-26 00:48:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58885", "3", "2017-06-26 00:48:30", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58886", "6", "2017-06-26 00:48:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58887", "9", "2017-06-26 00:48:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58888", "15", "2017-06-26 00:48:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58889", "10", "2017-06-26 01:14:50", "51.255.71.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("58890", "3", "2017-06-26 04:09:28", "164.132.161.10", "6");
INSERT INTO `wp_rg_form_view` VALUES("58891", "10", "2017-06-26 05:30:34", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("58892", "10", "2017-06-26 08:15:04", "72.14.199.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("58893", "3", "2017-06-26 09:29:36", "66.249.79.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("58894", "14", "2017-06-26 10:01:05", "154.16.89.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("58895", "3", "2017-06-26 10:11:55", "202.46.49.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("58896", "10", "2017-06-26 10:40:42", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("58897", "10", "2017-06-26 11:55:46", "68.180.229.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("58898", "3", "2017-06-26 14:22:57", "207.46.13.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("58899", "8", "2017-06-26 14:32:14", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("58900", "3", "2017-06-26 15:05:55", "164.132.162.154", "29");
INSERT INTO `wp_rg_form_view` VALUES("58901", "10", "2017-06-26 15:12:13", "68.180.229.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("58902", "8", "2017-06-26 15:32:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58903", "6", "2017-06-26 15:32:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58904", "9", "2017-06-26 15:32:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58905", "15", "2017-06-26 15:32:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58906", "10", "2017-06-26 16:00:11", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58907", "10", "2017-06-26 17:01:06", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58908", "10", "2017-06-26 18:04:12", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("58909", "3", "2017-06-26 20:45:11", "202.46.50.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("58910", "10", "2017-06-26 21:00:41", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58911", "3", "2017-06-26 21:44:21", "157.55.39.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("58912", "10", "2017-06-26 22:03:26", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("58913", "3", "2017-06-26 22:31:25", "207.46.13.129", "3");
INSERT INTO `wp_rg_form_view` VALUES("58914", "14", "2017-06-26 22:50:31", "195.154.252.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("58915", "10", "2017-06-26 23:07:53", "70.66.168.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("58916", "6", "2017-06-27 00:11:13", "207.46.13.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("58917", "15", "2017-06-27 00:11:24", "207.46.13.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("58918", "3", "2017-06-27 00:11:27", "207.46.13.129", "17");
INSERT INTO `wp_rg_form_view` VALUES("58919", "10", "2017-06-27 00:11:28", "207.46.13.129", "8");
INSERT INTO `wp_rg_form_view` VALUES("58920", "9", "2017-06-27 00:11:29", "157.55.39.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("58921", "5", "2017-06-27 00:11:30", "207.46.13.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("58922", "10", "2017-06-27 01:20:54", "40.77.167.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58923", "8", "2017-06-27 01:48:02", "173.212.229.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("58924", "10", "2017-06-27 06:53:24", "77.75.76.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("58925", "3", "2017-06-27 07:20:20", "202.46.55.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("58926", "10", "2017-06-27 07:34:03", "199.21.99.202", "8");
INSERT INTO `wp_rg_form_view` VALUES("58927", "15", "2017-06-27 07:34:21", "141.8.143.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("58928", "6", "2017-06-27 07:38:36", "100.43.85.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("58929", "9", "2017-06-27 09:10:50", "202.46.55.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("58930", "3", "2017-06-27 09:44:10", "202.46.58.17", "28");
INSERT INTO `wp_rg_form_view` VALUES("58931", "8", "2017-06-27 09:54:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58932", "6", "2017-06-27 09:54:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58933", "10", "2017-06-27 09:54:56", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("58934", "15", "2017-06-27 09:54:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58935", "10", "2017-06-27 10:05:05", "40.77.167.26", "13");
INSERT INTO `wp_rg_form_view` VALUES("58936", "8", "2017-06-27 10:12:27", "213.202.242.25", "6");
INSERT INTO `wp_rg_form_view` VALUES("58937", "3", "2017-06-27 10:13:55", "213.202.242.25", "57");
INSERT INTO `wp_rg_form_view` VALUES("58938", "6", "2017-06-27 10:28:46", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58939", "9", "2017-06-27 10:28:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58940", "15", "2017-06-27 10:28:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58941", "5", "2017-06-27 10:55:51", "77.75.76.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("58942", "8", "2017-06-27 11:02:28", "66.249.79.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("58943", "3", "2017-06-27 12:54:59", "51.255.65.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("58944", "10", "2017-06-27 13:36:10", "72.14.199.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("58945", "3", "2017-06-27 15:52:01", "24.68.124.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("58946", "10", "2017-06-27 16:10:54", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("58947", "3", "2017-06-27 16:14:03", "199.21.99.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("58948", "10", "2017-06-27 17:11:03", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("58949", "3", "2017-06-27 17:18:43", "66.249.79.22", "28");
INSERT INTO `wp_rg_form_view` VALUES("58950", "8", "2017-06-27 17:31:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("58951", "6", "2017-06-27 17:31:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58952", "9", "2017-06-27 17:31:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58953", "15", "2017-06-27 17:31:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58954", "3", "2017-06-27 18:12:15", "184.71.26.18", "4");
INSERT INTO `wp_rg_form_view` VALUES("58955", "10", "2017-06-27 18:17:19", "184.71.26.18", "3");
INSERT INTO `wp_rg_form_view` VALUES("58956", "8", "2017-06-27 18:26:38", "50.62.143.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("58957", "10", "2017-06-27 21:49:07", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("58958", "10", "2017-06-27 22:19:08", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58959", "3", "2017-06-27 22:41:42", "70.66.42.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("58960", "3", "2017-06-27 23:46:15", "96.50.5.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("58961", "8", "2017-06-27 23:46:33", "96.50.5.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("58962", "5", "2017-06-27 23:59:44", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("58963", "8", "2017-06-28 00:00:51", "61.135.221.56", "6");
INSERT INTO `wp_rg_form_view` VALUES("58964", "3", "2017-06-28 00:09:16", "202.46.55.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("58965", "10", "2017-06-28 00:42:25", "202.46.55.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("58966", "3", "2017-06-28 01:16:18", "202.46.49.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("58967", "8", "2017-06-28 02:01:15", "66.249.69.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("58968", "10", "2017-06-28 02:22:06", "66.249.91.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("58969", "8", "2017-06-28 03:05:34", "66.249.69.87", "3");
INSERT INTO `wp_rg_form_view` VALUES("58970", "10", "2017-06-28 03:25:28", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("58971", "11", "2017-06-28 03:29:06", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("58972", "3", "2017-06-28 04:08:38", "207.46.13.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("58973", "8", "2017-06-28 04:13:40", "66.249.69.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("58974", "7", "2017-06-28 04:29:32", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("58975", "10", "2017-06-28 07:49:41", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("58976", "14", "2017-06-28 08:15:22", "5.157.40.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("58977", "8", "2017-06-28 08:31:52", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("58978", "3", "2017-06-28 08:31:52", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("58979", "6", "2017-06-28 08:31:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58980", "9", "2017-06-28 08:31:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58981", "10", "2017-06-28 08:31:55", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("58982", "15", "2017-06-28 08:31:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("58983", "3", "2017-06-28 09:05:45", "157.55.39.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("58984", "10", "2017-06-28 10:47:00", "220.181.108.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("58985", "3", "2017-06-28 12:26:33", "40.77.167.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("58986", "3", "2017-06-28 13:30:22", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("58987", "10", "2017-06-28 14:06:44", "77.75.78.165", "10");
INSERT INTO `wp_rg_form_view` VALUES("58988", "8", "2017-06-28 14:08:27", "74.208.87.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("58989", "5", "2017-06-28 14:14:52", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("58990", "3", "2017-06-28 14:15:09", "74.208.87.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("58991", "6", "2017-06-28 14:29:39", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("58992", "10", "2017-06-28 15:21:57", "72.14.199.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("58993", "14", "2017-06-28 16:08:49", "23.80.164.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("58994", "10", "2017-06-28 16:15:34", "207.194.130.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("58995", "3", "2017-06-28 16:24:57", "77.75.78.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("58996", "3", "2017-06-28 17:07:47", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("58997", "10", "2017-06-28 17:17:41", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("58998", "14", "2017-06-28 17:51:02", "154.20.29.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("58999", "8", "2017-06-28 18:05:53", "202.46.52.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("59000", "10", "2017-06-28 18:18:23", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59001", "8", "2017-06-28 19:01:08", "157.55.39.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("59002", "10", "2017-06-28 19:24:14", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59003", "3", "2017-06-28 19:44:31", "40.77.167.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("59004", "10", "2017-06-28 20:02:41", "184.66.248.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("59005", "8", "2017-06-28 20:11:39", "184.65.200.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("59006", "3", "2017-06-28 20:24:10", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("59007", "10", "2017-06-28 21:02:58", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("59008", "8", "2017-06-28 21:15:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59009", "3", "2017-06-28 21:15:40", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59010", "6", "2017-06-28 21:15:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59011", "9", "2017-06-28 21:15:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59012", "15", "2017-06-28 21:15:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59013", "10", "2017-06-28 22:02:26", "40.77.167.128", "3");
INSERT INTO `wp_rg_form_view` VALUES("59014", "15", "2017-06-28 22:19:33", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("59015", "5", "2017-06-28 22:58:52", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("59016", "10", "2017-06-28 23:03:31", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59017", "3", "2017-06-29 00:01:51", "202.46.55.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("59018", "10", "2017-06-29 00:03:32", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59019", "10", "2017-06-29 01:03:52", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59020", "10", "2017-06-29 02:04:13", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59021", "10", "2017-06-29 03:04:13", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("59022", "8", "2017-06-29 03:29:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59023", "3", "2017-06-29 03:29:45", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59024", "6", "2017-06-29 03:29:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59025", "9", "2017-06-29 03:29:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59026", "15", "2017-06-29 03:29:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59027", "8", "2017-06-29 04:03:30", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("59028", "3", "2017-06-29 04:03:31", "52.88.109.3", "53");
INSERT INTO `wp_rg_form_view` VALUES("59029", "3", "2017-06-29 04:03:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59030", "6", "2017-06-29 04:03:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59031", "9", "2017-06-29 04:03:34", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59032", "10", "2017-06-29 04:03:36", "52.88.109.3", "11");
INSERT INTO `wp_rg_form_view` VALUES("59033", "10", "2017-06-29 04:03:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59034", "15", "2017-06-29 04:03:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59035", "15", "2017-06-29 04:03:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59036", "10", "2017-06-29 05:04:14", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59037", "10", "2017-06-29 06:04:14", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59038", "10", "2017-06-29 07:04:14", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59039", "8", "2017-06-29 07:05:16", "70.67.60.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("59040", "10", "2017-06-29 08:04:18", "184.66.248.195", "108");
INSERT INTO `wp_rg_form_view` VALUES("59041", "3", "2017-06-29 08:33:46", "148.251.187.239", "63");
INSERT INTO `wp_rg_form_view` VALUES("59042", "10", "2017-06-29 09:04:14", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("59043", "8", "2017-06-29 09:38:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59044", "3", "2017-06-29 09:38:08", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59045", "6", "2017-06-29 09:38:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59046", "9", "2017-06-29 09:38:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59047", "15", "2017-06-29 09:38:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59048", "10", "2017-06-29 10:04:15", "184.66.248.195", "107");
INSERT INTO `wp_rg_form_view` VALUES("59049", "3", "2017-06-29 10:19:49", "157.55.39.217", "64");
INSERT INTO `wp_rg_form_view` VALUES("59050", "14", "2017-06-29 10:31:25", "192.69.90.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("59051", "8", "2017-06-29 10:51:42", "137.74.207.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("59052", "10", "2017-06-29 11:04:15", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("59053", "8", "2017-06-29 11:10:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59054", "3", "2017-06-29 11:10:39", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("59055", "6", "2017-06-29 11:10:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59056", "9", "2017-06-29 11:10:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59057", "15", "2017-06-29 11:10:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59058", "10", "2017-06-29 12:04:15", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59059", "14", "2017-06-29 12:40:51", "107.175.78.62", "5");
INSERT INTO `wp_rg_form_view` VALUES("59060", "3", "2017-06-29 12:40:55", "107.175.78.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("59061", "10", "2017-06-29 13:04:15", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59062", "8", "2017-06-29 13:22:19", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59063", "15", "2017-06-29 14:03:09", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59064", "10", "2017-06-29 14:04:15", "184.66.248.195", "107");
INSERT INTO `wp_rg_form_view` VALUES("59065", "3", "2017-06-29 14:10:22", "137.74.207.109", "64");
INSERT INTO `wp_rg_form_view` VALUES("59066", "10", "2017-06-29 15:02:13", "157.55.39.217", "3");
INSERT INTO `wp_rg_form_view` VALUES("59067", "3", "2017-06-29 15:06:14", "202.46.53.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("59068", "10", "2017-06-29 16:04:16", "184.66.248.195", "108");
INSERT INTO `wp_rg_form_view` VALUES("59069", "3", "2017-06-29 16:11:14", "78.110.50.110", "63");
INSERT INTO `wp_rg_form_view` VALUES("59070", "10", "2017-06-29 17:04:16", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("59071", "3", "2017-06-29 17:15:58", "51.255.71.132", "37");
INSERT INTO `wp_rg_form_view` VALUES("59072", "8", "2017-06-29 17:30:41", "40.77.167.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("59073", "6", "2017-06-29 17:30:41", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59074", "9", "2017-06-29 17:30:42", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59075", "15", "2017-06-29 17:30:46", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59076", "10", "2017-06-29 18:04:18", "184.66.248.195", "107");
INSERT INTO `wp_rg_form_view` VALUES("59077", "3", "2017-06-29 18:08:13", "194.187.170.147", "64");
INSERT INTO `wp_rg_form_view` VALUES("59078", "10", "2017-06-29 19:04:36", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59079", "3", "2017-06-29 19:07:21", "66.249.79.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("59080", "8", "2017-06-29 19:18:20", "77.75.78.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("59081", "10", "2017-06-29 20:04:57", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59082", "10", "2017-06-29 21:05:16", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59083", "3", "2017-06-29 22:04:33", "31.28.24.113", "64");
INSERT INTO `wp_rg_form_view` VALUES("59084", "10", "2017-06-29 22:04:33", "31.28.24.113", "108");
INSERT INTO `wp_rg_form_view` VALUES("59085", "10", "2017-06-29 23:06:00", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("59086", "3", "2017-06-29 23:20:43", "77.75.76.165", "2");
INSERT INTO `wp_rg_form_view` VALUES("59087", "12", "2017-06-30 00:50:47", "40.77.167.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("59088", "11", "2017-06-30 01:13:44", "220.181.108.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("59089", "3", "2017-06-30 01:26:20", "67.227.198.100", "57");
INSERT INTO `wp_rg_form_view` VALUES("59090", "10", "2017-06-30 01:26:21", "67.227.198.100", "95");
INSERT INTO `wp_rg_form_view` VALUES("59091", "3", "2017-06-30 02:29:58", "180.76.15.136", "28");
INSERT INTO `wp_rg_form_view` VALUES("59092", "14", "2017-06-30 02:35:40", "99.199.1.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("59093", "8", "2017-06-30 02:42:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59094", "6", "2017-06-30 02:42:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59095", "9", "2017-06-30 02:43:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59096", "10", "2017-06-30 02:43:05", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59097", "15", "2017-06-30 02:43:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59098", "3", "2017-06-30 04:24:03", "5.189.149.117", "6");
INSERT INTO `wp_rg_form_view` VALUES("59099", "10", "2017-06-30 04:24:04", "5.189.149.117", "10");
INSERT INTO `wp_rg_form_view` VALUES("59100", "10", "2017-06-30 05:05:15", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59101", "14", "2017-06-30 05:47:19", "24.69.149.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("59102", "3", "2017-06-30 05:47:32", "164.132.162.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("59103", "8", "2017-06-30 05:48:38", "154.5.205.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("59104", "3", "2017-06-30 06:27:22", "40.77.167.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("59105", "10", "2017-06-30 06:39:14", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("59106", "10", "2017-06-30 07:09:14", "184.66.248.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("59107", "8", "2017-06-30 07:15:33", "217.182.132.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("59108", "3", "2017-06-30 07:25:47", "69.89.31.109", "23");
INSERT INTO `wp_rg_form_view` VALUES("59109", "10", "2017-06-30 09:13:36", "72.14.199.117", "106");
INSERT INTO `wp_rg_form_view` VALUES("59110", "3", "2017-06-30 09:25:32", "74.220.202.45", "64");
INSERT INTO `wp_rg_form_view` VALUES("59111", "8", "2017-06-30 10:35:20", "180.76.15.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59112", "10", "2017-06-30 10:52:22", "138.197.77.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("59113", "3", "2017-06-30 11:03:42", "50.63.25.22", "4");
INSERT INTO `wp_rg_form_view` VALUES("59114", "8", "2017-06-30 11:04:00", "50.63.25.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("59115", "14", "2017-06-30 11:04:14", "50.63.25.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("59116", "10", "2017-06-30 11:04:35", "50.63.25.22", "4");
INSERT INTO `wp_rg_form_view` VALUES("59117", "3", "2017-06-30 12:04:24", "66.249.79.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("59118", "15", "2017-06-30 13:26:23", "51.255.71.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("59119", "10", "2017-06-30 13:36:03", "164.132.161.35", "106");
INSERT INTO `wp_rg_form_view` VALUES("59120", "3", "2017-06-30 13:47:19", "51.255.71.133", "64");
INSERT INTO `wp_rg_form_view` VALUES("59121", "3", "2017-06-30 14:11:26", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("59122", "14", "2017-06-30 15:11:38", "184.151.231.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("59123", "8", "2017-06-30 15:18:06", "180.76.15.19", "3");
INSERT INTO `wp_rg_form_view` VALUES("59124", "3", "2017-06-30 15:35:24", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59125", "6", "2017-06-30 15:35:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59126", "9", "2017-06-30 15:35:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59127", "10", "2017-06-30 15:35:27", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59128", "15", "2017-06-30 15:35:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59129", "10", "2017-06-30 16:19:50", "40.77.167.145", "12");
INSERT INTO `wp_rg_form_view` VALUES("59130", "3", "2017-06-30 16:54:00", "94.73.151.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("59131", "15", "2017-06-30 17:01:29", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59132", "10", "2017-06-30 17:09:39", "66.249.79.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("59133", "3", "2017-06-30 17:23:55", "194.187.170.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("59134", "14", "2017-06-30 17:37:44", "96.54.69.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("59135", "3", "2017-06-30 18:04:46", "180.76.15.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("59136", "11", "2017-06-30 18:28:44", "66.249.79.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("59137", "3", "2017-06-30 19:49:56", "78.110.50.113", "63");
INSERT INTO `wp_rg_form_view` VALUES("59138", "10", "2017-06-30 19:49:57", "78.110.50.113", "105");
INSERT INTO `wp_rg_form_view` VALUES("59139", "3", "2017-06-30 21:05:13", "217.182.132.70", "29");
INSERT INTO `wp_rg_form_view` VALUES("59140", "8", "2017-06-30 21:54:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59141", "6", "2017-06-30 21:54:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59142", "9", "2017-06-30 21:54:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59143", "10", "2017-06-30 21:54:38", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59144", "15", "2017-06-30 21:54:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59145", "10", "2017-06-30 22:04:08", "207.194.130.127", "116");
INSERT INTO `wp_rg_form_view` VALUES("59146", "11", "2017-06-30 22:12:58", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("59147", "3", "2017-06-30 22:26:51", "188.128.240.32", "128");
INSERT INTO `wp_rg_form_view` VALUES("59148", "8", "2017-06-30 22:29:21", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("59149", "6", "2017-06-30 22:29:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59150", "6", "2017-06-30 22:29:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59151", "9", "2017-06-30 22:29:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59152", "15", "2017-06-30 22:29:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59153", "15", "2017-06-30 22:29:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59154", "10", "2017-06-30 23:05:56", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("59155", "3", "2017-06-30 23:48:19", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("59156", "3", "2017-07-01 01:01:43", "23.91.66.224", "79");
INSERT INTO `wp_rg_form_view` VALUES("59157", "10", "2017-07-01 01:01:43", "23.91.66.224", "106");
INSERT INTO `wp_rg_form_view` VALUES("59158", "8", "2017-07-01 01:04:35", "68.180.229.228", "8");
INSERT INTO `wp_rg_form_view` VALUES("59159", "3", "2017-07-01 02:00:14", "66.249.79.21", "6");
INSERT INTO `wp_rg_form_view` VALUES("59160", "10", "2017-07-01 02:06:12", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("59161", "9", "2017-07-01 02:32:19", "180.76.15.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("59162", "8", "2017-07-01 02:51:07", "68.180.229.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("59163", "3", "2017-07-01 03:09:10", "66.249.79.19", "64");
INSERT INTO `wp_rg_form_view` VALUES("59164", "10", "2017-07-01 03:40:38", "78.110.50.113", "107");
INSERT INTO `wp_rg_form_view` VALUES("59165", "10", "2017-07-01 04:07:39", "77.75.77.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("59166", "8", "2017-07-01 04:22:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59167", "3", "2017-07-01 04:22:00", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59168", "6", "2017-07-01 04:22:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59169", "9", "2017-07-01 04:22:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59170", "15", "2017-07-01 04:22:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59171", "11", "2017-07-01 05:02:52", "66.249.79.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("59172", "3", "2017-07-01 05:04:28", "66.249.79.19", "96");
INSERT INTO `wp_rg_form_view` VALUES("59173", "10", "2017-07-01 05:04:56", "66.249.79.19", "115");
INSERT INTO `wp_rg_form_view` VALUES("59174", "8", "2017-07-01 05:52:14", "52.88.109.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("59175", "6", "2017-07-01 05:52:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59176", "9", "2017-07-01 05:52:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59177", "15", "2017-07-01 05:52:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59178", "14", "2017-07-01 05:57:51", "37.187.56.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("59179", "10", "2017-07-01 06:08:42", "199.59.150.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("59180", "8", "2017-07-01 06:13:27", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("59181", "3", "2017-07-01 06:47:48", "40.77.167.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59182", "3", "2017-07-01 07:34:36", "180.76.15.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("59183", "10", "2017-07-01 07:37:14", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("59184", "8", "2017-07-01 08:07:53", "180.76.15.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("59185", "3", "2017-07-01 08:34:48", "5.188.211.26", "28");
INSERT INTO `wp_rg_form_view` VALUES("59186", "6", "2017-07-01 08:34:48", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("59187", "9", "2017-07-01 08:34:49", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("59188", "10", "2017-07-01 08:34:50", "5.188.211.26", "5");
INSERT INTO `wp_rg_form_view` VALUES("59189", "15", "2017-07-01 08:34:52", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("59190", "3", "2017-07-01 09:08:50", "40.77.167.4", "95");
INSERT INTO `wp_rg_form_view` VALUES("59191", "8", "2017-07-01 09:23:23", "5.188.211.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("59192", "6", "2017-07-01 09:23:24", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("59193", "9", "2017-07-01 09:23:25", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("59194", "10", "2017-07-01 09:23:26", "5.188.211.26", "111");
INSERT INTO `wp_rg_form_view` VALUES("59195", "15", "2017-07-01 09:23:28", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("59196", "12", "2017-07-01 11:12:27", "194.187.170.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("59197", "3", "2017-07-01 11:13:28", "66.147.244.59", "63");
INSERT INTO `wp_rg_form_view` VALUES("59198", "10", "2017-07-01 11:13:29", "66.147.244.59", "105");
INSERT INTO `wp_rg_form_view` VALUES("59199", "8", "2017-07-01 11:24:30", "66.249.79.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("59200", "3", "2017-07-01 12:28:33", "217.182.132.25", "7");
INSERT INTO `wp_rg_form_view` VALUES("59201", "8", "2017-07-01 12:33:50", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("59202", "10", "2017-07-01 12:46:58", "213.32.20.191", "10");
INSERT INTO `wp_rg_form_view` VALUES("59203", "10", "2017-07-01 13:23:34", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("59204", "3", "2017-07-01 14:16:08", "69.89.31.186", "64");
INSERT INTO `wp_rg_form_view` VALUES("59205", "10", "2017-07-01 14:16:08", "69.89.31.186", "105");
INSERT INTO `wp_rg_form_view` VALUES("59206", "3", "2017-07-01 15:43:01", "194.28.172.163", "63");
INSERT INTO `wp_rg_form_view` VALUES("59207", "10", "2017-07-01 15:43:01", "194.28.172.163", "105");
INSERT INTO `wp_rg_form_view` VALUES("59208", "10", "2017-07-01 16:14:47", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("59209", "3", "2017-07-01 16:27:55", "207.46.13.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("59210", "3", "2017-07-01 17:04:43", "213.251.182.106", "63");
INSERT INTO `wp_rg_form_view` VALUES("59211", "10", "2017-07-01 17:04:43", "213.251.182.106", "105");
INSERT INTO `wp_rg_form_view` VALUES("59212", "14", "2017-07-01 18:06:12", "212.237.54.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("59213", "3", "2017-07-01 18:06:16", "212.237.54.156", "64");
INSERT INTO `wp_rg_form_view` VALUES("59214", "10", "2017-07-01 18:36:14", "148.251.187.239", "105");
INSERT INTO `wp_rg_form_view` VALUES("59215", "8", "2017-07-01 18:42:00", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("59216", "8", "2017-07-01 19:38:15", "180.76.15.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("59217", "3", "2017-07-01 20:21:53", "94.73.151.90", "9");
INSERT INTO `wp_rg_form_view` VALUES("59218", "10", "2017-07-01 20:21:54", "94.73.151.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("59219", "3", "2017-07-01 21:01:21", "40.77.167.14", "30");
INSERT INTO `wp_rg_form_view` VALUES("59220", "8", "2017-07-01 21:09:13", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59221", "6", "2017-07-01 21:09:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59222", "9", "2017-07-01 21:09:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59223", "10", "2017-07-01 21:09:15", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59224", "15", "2017-07-01 21:09:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59225", "3", "2017-07-01 22:05:41", "178.210.90.90", "64");
INSERT INTO `wp_rg_form_view` VALUES("59226", "10", "2017-07-01 22:05:42", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59227", "3", "2017-07-01 23:36:04", "69.89.31.109", "63");
INSERT INTO `wp_rg_form_view` VALUES("59228", "10", "2017-07-01 23:36:05", "69.89.31.109", "105");
INSERT INTO `wp_rg_form_view` VALUES("59229", "3", "2017-07-02 00:15:57", "40.77.167.4", "64");
INSERT INTO `wp_rg_form_view` VALUES("59230", "10", "2017-07-02 00:47:19", "199.59.150.183", "107");
INSERT INTO `wp_rg_form_view` VALUES("59231", "3", "2017-07-02 01:15:23", "5.188.211.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("59232", "10", "2017-07-02 01:45:54", "5.188.211.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("59233", "3", "2017-07-02 02:00:46", "94.73.149.109", "12");
INSERT INTO `wp_rg_form_view` VALUES("59234", "10", "2017-07-02 02:00:48", "94.73.149.109", "20");
INSERT INTO `wp_rg_form_view` VALUES("59235", "8", "2017-07-02 02:31:52", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59236", "9", "2017-07-02 02:56:40", "157.55.39.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("59237", "3", "2017-07-02 03:12:36", "78.110.50.113", "64");
INSERT INTO `wp_rg_form_view` VALUES("59238", "10", "2017-07-02 03:12:36", "78.110.50.113", "105");
INSERT INTO `wp_rg_form_view` VALUES("59239", "3", "2017-07-02 04:24:03", "94.73.146.42", "9");
INSERT INTO `wp_rg_form_view` VALUES("59240", "10", "2017-07-02 04:24:03", "94.73.146.42", "15");
INSERT INTO `wp_rg_form_view` VALUES("59241", "3", "2017-07-02 05:25:58", "180.76.15.18", "72");
INSERT INTO `wp_rg_form_view` VALUES("59242", "8", "2017-07-02 05:26:54", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("59243", "10", "2017-07-02 05:26:54", "66.249.79.23", "110");
INSERT INTO `wp_rg_form_view` VALUES("59244", "15", "2017-07-02 05:26:55", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("59245", "5", "2017-07-02 06:14:24", "77.75.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("59246", "3", "2017-07-02 06:54:18", "78.110.50.113", "63");
INSERT INTO `wp_rg_form_view` VALUES("59247", "10", "2017-07-02 06:54:19", "78.110.50.113", "105");
INSERT INTO `wp_rg_form_view` VALUES("59248", "3", "2017-07-02 07:19:24", "194.187.170.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59249", "8", "2017-07-02 07:21:53", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("59250", "10", "2017-07-02 07:42:03", "217.182.132.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("59251", "3", "2017-07-02 08:09:39", "85.128.142.53", "63");
INSERT INTO `wp_rg_form_view` VALUES("59252", "10", "2017-07-02 08:09:39", "85.128.142.53", "106");
INSERT INTO `wp_rg_form_view` VALUES("59253", "3", "2017-07-02 09:23:04", "46.165.222.10", "90");
INSERT INTO `wp_rg_form_view` VALUES("59254", "10", "2017-07-02 09:23:04", "46.165.222.10", "110");
INSERT INTO `wp_rg_form_view` VALUES("59255", "8", "2017-07-02 09:47:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59256", "6", "2017-07-02 09:47:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59257", "9", "2017-07-02 09:47:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59258", "15", "2017-07-02 09:47:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59259", "14", "2017-07-02 10:01:15", "104.223.58.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("59260", "3", "2017-07-02 10:11:41", "217.182.132.35", "64");
INSERT INTO `wp_rg_form_view` VALUES("59261", "10", "2017-07-02 10:36:30", "178.35.152.47", "107");
INSERT INTO `wp_rg_form_view` VALUES("59262", "10", "2017-07-02 11:04:17", "66.249.79.23", "106");
INSERT INTO `wp_rg_form_view` VALUES("59263", "3", "2017-07-02 11:21:37", "51.255.65.54", "65");
INSERT INTO `wp_rg_form_view` VALUES("59264", "10", "2017-07-02 12:02:55", "207.46.13.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("59265", "10", "2017-07-02 13:00:04", "66.249.79.19", "112");
INSERT INTO `wp_rg_form_view` VALUES("59266", "14", "2017-07-02 13:04:37", "89.37.65.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("59267", "3", "2017-07-02 13:11:30", "178.210.90.90", "90");
INSERT INTO `wp_rg_form_view` VALUES("59268", "8", "2017-07-02 13:12:36", "5.188.211.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("59269", "6", "2017-07-02 13:12:39", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("59270", "9", "2017-07-02 13:12:41", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("59271", "15", "2017-07-02 13:12:49", "5.188.211.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("59272", "3", "2017-07-02 14:28:30", "78.110.50.113", "73");
INSERT INTO `wp_rg_form_view` VALUES("59273", "10", "2017-07-02 14:28:30", "78.110.50.113", "106");
INSERT INTO `wp_rg_form_view` VALUES("59274", "8", "2017-07-02 14:35:32", "5.188.211.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("59275", "14", "2017-07-02 14:41:52", "68.180.229.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("59276", "3", "2017-07-02 15:04:26", "51.255.65.97", "85");
INSERT INTO `wp_rg_form_view` VALUES("59277", "8", "2017-07-02 15:11:23", "66.249.79.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("59278", "10", "2017-07-02 15:11:25", "66.249.79.19", "111");
INSERT INTO `wp_rg_form_view` VALUES("59279", "15", "2017-07-02 15:11:27", "66.249.79.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("59280", "8", "2017-07-02 16:18:23", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59281", "3", "2017-07-02 16:18:23", "52.88.109.3", "81");
INSERT INTO `wp_rg_form_view` VALUES("59282", "6", "2017-07-02 16:18:24", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("59283", "9", "2017-07-02 16:18:25", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("59284", "10", "2017-07-02 16:18:26", "52.88.109.3", "16");
INSERT INTO `wp_rg_form_view` VALUES("59285", "15", "2017-07-02 16:18:29", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("59286", "3", "2017-07-02 17:01:07", "194.28.172.163", "63");
INSERT INTO `wp_rg_form_view` VALUES("59287", "10", "2017-07-02 17:01:07", "194.28.172.163", "106");
INSERT INTO `wp_rg_form_view` VALUES("59288", "10", "2017-07-02 18:04:47", "157.55.39.85", "106");
INSERT INTO `wp_rg_form_view` VALUES("59289", "3", "2017-07-02 18:19:32", "69.195.124.70", "63");
INSERT INTO `wp_rg_form_view` VALUES("59290", "3", "2017-07-02 19:26:17", "164.132.161.14", "65");
INSERT INTO `wp_rg_form_view` VALUES("59291", "10", "2017-07-02 19:45:21", "69.195.124.70", "105");
INSERT INTO `wp_rg_form_view` VALUES("59292", "8", "2017-07-02 20:08:56", "77.75.79.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("59293", "10", "2017-07-02 20:11:29", "84.201.133.76", "5");
INSERT INTO `wp_rg_form_view` VALUES("59294", "3", "2017-07-02 20:14:30", "40.77.167.145", "4");
INSERT INTO `wp_rg_form_view` VALUES("59295", "14", "2017-07-02 20:31:31", "154.5.205.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("59296", "7", "2017-07-02 20:52:04", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59297", "3", "2017-07-02 21:10:53", "69.195.124.70", "64");
INSERT INTO `wp_rg_form_view` VALUES("59298", "10", "2017-07-02 21:10:54", "69.195.124.70", "107");
INSERT INTO `wp_rg_form_view` VALUES("59299", "8", "2017-07-02 21:20:18", "216.232.151.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59300", "5", "2017-07-02 21:38:15", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59301", "6", "2017-07-02 22:11:09", "141.8.143.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("59302", "5", "2017-07-02 22:20:07", "217.182.132.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("59303", "8", "2017-07-02 22:33:46", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59304", "3", "2017-07-02 22:33:46", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("59305", "9", "2017-07-02 22:33:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59306", "10", "2017-07-02 22:33:49", "52.88.109.3", "17");
INSERT INTO `wp_rg_form_view` VALUES("59307", "15", "2017-07-02 22:33:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59308", "3", "2017-07-02 23:52:05", "66.147.244.59", "63");
INSERT INTO `wp_rg_form_view` VALUES("59309", "10", "2017-07-02 23:52:06", "66.147.244.59", "107");
INSERT INTO `wp_rg_form_view` VALUES("59310", "8", "2017-07-03 00:02:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59311", "3", "2017-07-03 00:02:14", "52.88.109.3", "93");
INSERT INTO `wp_rg_form_view` VALUES("59312", "6", "2017-07-03 00:02:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59313", "9", "2017-07-03 00:02:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59314", "10", "2017-07-03 00:02:17", "52.88.109.3", "111");
INSERT INTO `wp_rg_form_view` VALUES("59315", "15", "2017-07-03 00:02:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59316", "14", "2017-07-03 01:28:37", "24.69.169.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("59317", "3", "2017-07-03 02:00:38", "78.110.50.113", "63");
INSERT INTO `wp_rg_form_view` VALUES("59318", "10", "2017-07-03 02:00:39", "78.110.50.113", "106");
INSERT INTO `wp_rg_form_view` VALUES("59319", "10", "2017-07-03 03:02:46", "66.249.79.23", "106");
INSERT INTO `wp_rg_form_view` VALUES("59320", "3", "2017-07-03 03:04:06", "23.227.132.78", "64");
INSERT INTO `wp_rg_form_view` VALUES("59321", "8", "2017-07-03 03:31:47", "75.154.242.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("59322", "3", "2017-07-03 04:07:15", "173.236.224.103", "9");
INSERT INTO `wp_rg_form_view` VALUES("59323", "10", "2017-07-03 04:07:16", "173.236.224.103", "15");
INSERT INTO `wp_rg_form_view` VALUES("59324", "11", "2017-07-03 05:06:35", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59325", "8", "2017-07-03 05:15:51", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("59326", "10", "2017-07-03 05:40:15", "66.249.79.23", "108");
INSERT INTO `wp_rg_form_view` VALUES("59327", "7", "2017-07-03 05:43:27", "84.201.133.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("59328", "3", "2017-07-03 05:47:40", "178.210.90.90", "63");
INSERT INTO `wp_rg_form_view` VALUES("59329", "3", "2017-07-03 06:20:13", "141.8.143.140", "66");
INSERT INTO `wp_rg_form_view` VALUES("59330", "10", "2017-07-03 06:48:58", "5.189.153.247", "107");
INSERT INTO `wp_rg_form_view` VALUES("59331", "8", "2017-07-03 06:56:48", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59332", "5", "2017-07-03 07:05:52", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59333", "8", "2017-07-03 07:38:42", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59334", "3", "2017-07-03 07:44:30", "66.249.79.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("59335", "14", "2017-07-03 07:45:58", "138.128.127.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("59336", "3", "2017-07-03 08:00:00", "69.195.124.70", "62");
INSERT INTO `wp_rg_form_view` VALUES("59337", "10", "2017-07-03 08:00:00", "69.195.124.70", "107");
INSERT INTO `wp_rg_form_view` VALUES("59338", "3", "2017-07-03 09:14:57", "69.89.22.143", "63");
INSERT INTO `wp_rg_form_view` VALUES("59339", "10", "2017-07-03 09:14:57", "69.89.22.143", "107");
INSERT INTO `wp_rg_form_view` VALUES("59340", "12", "2017-07-03 09:28:55", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("59341", "3", "2017-07-03 10:40:00", "178.210.90.90", "63");
INSERT INTO `wp_rg_form_view` VALUES("59342", "10", "2017-07-03 10:40:00", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59343", "3", "2017-07-03 11:04:00", "180.76.15.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("59344", "3", "2017-07-03 12:39:24", "94.73.147.2", "6");
INSERT INTO `wp_rg_form_view` VALUES("59345", "10", "2017-07-03 12:39:24", "94.73.147.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("59346", "3", "2017-07-03 13:04:14", "194.187.170.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("59347", "8", "2017-07-03 13:07:24", "61.52.157.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("59348", "10", "2017-07-03 13:46:50", "164.132.161.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("59349", "8", "2017-07-03 14:15:30", "217.182.132.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("59350", "3", "2017-07-03 14:50:52", "5.189.149.67", "63");
INSERT INTO `wp_rg_form_view` VALUES("59351", "10", "2017-07-03 14:50:53", "5.189.149.67", "105");
INSERT INTO `wp_rg_form_view` VALUES("59352", "10", "2017-07-03 15:42:21", "24.108.13.92", "16");
INSERT INTO `wp_rg_form_view` VALUES("59353", "8", "2017-07-03 15:44:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59354", "3", "2017-07-03 15:44:07", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("59355", "6", "2017-07-03 15:44:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59356", "9", "2017-07-03 15:44:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59357", "15", "2017-07-03 15:44:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59358", "3", "2017-07-03 16:22:24", "184.96.222.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("59359", "10", "2017-07-03 16:53:40", "217.182.132.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("59360", "3", "2017-07-03 17:16:42", "69.89.31.109", "10");
INSERT INTO `wp_rg_form_view` VALUES("59361", "10", "2017-07-03 17:16:42", "69.89.31.109", "15");
INSERT INTO `wp_rg_form_view` VALUES("59362", "14", "2017-07-03 18:15:31", "24.69.149.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("59363", "3", "2017-07-03 19:08:00", "45.76.163.222", "10");
INSERT INTO `wp_rg_form_view` VALUES("59364", "10", "2017-07-03 19:46:53", "185.48.181.104", "10");
INSERT INTO `wp_rg_form_view` VALUES("59365", "3", "2017-07-03 20:04:53", "180.76.15.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("59366", "10", "2017-07-03 20:58:11", "72.14.199.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("59367", "8", "2017-07-03 21:25:54", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("59368", "3", "2017-07-03 21:26:06", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("59369", "10", "2017-07-03 22:23:56", "217.182.132.15", "106");
INSERT INTO `wp_rg_form_view` VALUES("59370", "3", "2017-07-03 22:39:39", "178.35.152.47", "63");
INSERT INTO `wp_rg_form_view` VALUES("59371", "14", "2017-07-03 23:26:08", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("59372", "8", "2017-07-03 23:26:14", "104.196.217.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("59373", "3", "2017-07-03 23:28:54", "104.196.217.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("59374", "10", "2017-07-03 23:37:09", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("59375", "10", "2017-07-04 00:25:50", "151.80.27.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("59376", "8", "2017-07-04 00:26:53", "79.114.248.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("59377", "3", "2017-07-04 00:29:04", "79.114.248.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("59378", "5", "2017-07-04 00:30:07", "77.75.77.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("59379", "3", "2017-07-04 01:19:17", "178.210.90.90", "76");
INSERT INTO `wp_rg_form_view` VALUES("59380", "10", "2017-07-04 01:19:17", "178.210.90.90", "112");
INSERT INTO `wp_rg_form_view` VALUES("59381", "14", "2017-07-04 01:54:27", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("59382", "8", "2017-07-04 01:55:47", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("59383", "15", "2017-07-04 01:55:49", "104.196.217.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("59384", "10", "2017-07-04 02:55:14", "77.75.78.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("59385", "3", "2017-07-04 02:59:30", "178.35.152.47", "4");
INSERT INTO `wp_rg_form_view` VALUES("59386", "3", "2017-07-04 03:00:18", "178.35.152.47", "84");
INSERT INTO `wp_rg_form_view` VALUES("59387", "10", "2017-07-04 03:00:18", "178.35.152.47", "110");
INSERT INTO `wp_rg_form_view` VALUES("59388", "15", "2017-07-04 03:40:31", "104.196.217.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("59389", "8", "2017-07-04 03:40:47", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("59390", "9", "2017-07-04 03:41:41", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("59391", "6", "2017-07-04 03:43:02", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("59392", "8", "2017-07-04 04:31:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59393", "3", "2017-07-04 04:31:52", "52.88.109.3", "90");
INSERT INTO `wp_rg_form_view` VALUES("59394", "6", "2017-07-04 04:31:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59395", "9", "2017-07-04 04:31:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59396", "10", "2017-07-04 04:31:55", "52.88.109.3", "110");
INSERT INTO `wp_rg_form_view` VALUES("59397", "15", "2017-07-04 04:31:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59398", "3", "2017-07-04 05:05:32", "164.132.161.91", "90");
INSERT INTO `wp_rg_form_view` VALUES("59399", "10", "2017-07-04 05:24:44", "35.185.0.83", "108");
INSERT INTO `wp_rg_form_view` VALUES("59400", "15", "2017-07-04 05:24:49", "35.185.0.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("59401", "9", "2017-07-04 05:25:13", "35.185.0.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("59402", "8", "2017-07-04 05:27:59", "35.185.0.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("59403", "3", "2017-07-04 06:38:09", "104.196.24.131", "27");
INSERT INTO `wp_rg_form_view` VALUES("59404", "9", "2017-07-04 06:39:07", "104.196.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("59405", "6", "2017-07-04 06:39:50", "104.196.24.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("59406", "3", "2017-07-04 07:00:27", "164.132.162.155", "66");
INSERT INTO `wp_rg_form_view` VALUES("59407", "10", "2017-07-04 07:05:51", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59408", "14", "2017-07-04 08:10:00", "84.201.133.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("59409", "10", "2017-07-04 08:10:27", "141.8.143.140", "106");
INSERT INTO `wp_rg_form_view` VALUES("59410", "3", "2017-07-04 08:18:38", "78.110.50.113", "64");
INSERT INTO `wp_rg_form_view` VALUES("59411", "3", "2017-07-04 09:28:49", "178.210.90.90", "64");
INSERT INTO `wp_rg_form_view` VALUES("59412", "10", "2017-07-04 09:28:50", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59413", "3", "2017-07-04 10:56:22", "180.76.15.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("59414", "8", "2017-07-04 11:00:00", "52.88.109.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("59415", "3", "2017-07-04 11:00:01", "52.88.109.3", "227");
INSERT INTO `wp_rg_form_view` VALUES("59416", "6", "2017-07-04 11:00:02", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59417", "9", "2017-07-04 11:00:05", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59418", "10", "2017-07-04 11:00:08", "52.88.109.3", "136");
INSERT INTO `wp_rg_form_view` VALUES("59419", "15", "2017-07-04 11:00:14", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59420", "10", "2017-07-04 12:09:23", "141.8.143.140", "138");
INSERT INTO `wp_rg_form_view` VALUES("59421", "3", "2017-07-04 12:33:36", "51.255.65.71", "226");
INSERT INTO `wp_rg_form_view` VALUES("59422", "8", "2017-07-04 12:43:16", "169.45.224.180", "12");
INSERT INTO `wp_rg_form_view` VALUES("59423", "6", "2017-07-04 12:43:17", "169.45.224.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("59424", "9", "2017-07-04 12:43:18", "169.45.224.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("59425", "15", "2017-07-04 12:43:21", "169.45.224.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("59426", "7", "2017-07-04 13:10:02", "40.77.167.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("59427", "3", "2017-07-04 13:42:37", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("59428", "8", "2017-07-04 14:03:32", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59429", "10", "2017-07-04 14:26:01", "184.66.129.248", "106");
INSERT INTO `wp_rg_form_view` VALUES("59430", "3", "2017-07-04 14:49:15", "69.89.31.180", "63");
INSERT INTO `wp_rg_form_view` VALUES("59431", "3", "2017-07-04 15:32:55", "40.77.167.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("59432", "10", "2017-07-04 16:02:24", "184.66.248.195", "20");
INSERT INTO `wp_rg_form_view` VALUES("59433", "3", "2017-07-04 16:43:43", "94.73.150.132", "9");
INSERT INTO `wp_rg_form_view` VALUES("59434", "10", "2017-07-04 17:21:53", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("59435", "8", "2017-07-04 17:27:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59436", "3", "2017-07-04 17:27:05", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59437", "6", "2017-07-04 17:27:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59438", "9", "2017-07-04 17:27:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59439", "15", "2017-07-04 17:27:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59440", "14", "2017-07-04 17:51:03", "149.56.147.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("59441", "8", "2017-07-04 18:02:03", "180.76.15.18", "3");
INSERT INTO `wp_rg_form_view` VALUES("59442", "3", "2017-07-04 18:11:00", "5.44.216.9", "93");
INSERT INTO `wp_rg_form_view` VALUES("59443", "10", "2017-07-04 18:11:00", "5.44.216.9", "112");
INSERT INTO `wp_rg_form_view` VALUES("59444", "6", "2017-07-04 18:49:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59445", "9", "2017-07-04 18:49:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59446", "15", "2017-07-04 18:49:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59447", "10", "2017-07-04 19:16:38", "64.114.222.228", "108");
INSERT INTO `wp_rg_form_view` VALUES("59448", "10", "2017-07-04 19:16:38", "64.114.222.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("59449", "3", "2017-07-04 19:32:15", "178.210.90.90", "63");
INSERT INTO `wp_rg_form_view` VALUES("59450", "8", "2017-07-04 20:08:28", "104.192.6.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("59451", "10", "2017-07-04 20:09:25", "104.192.6.139", "108");
INSERT INTO `wp_rg_form_view` VALUES("59452", "3", "2017-07-04 20:10:41", "104.192.6.139", "64");
INSERT INTO `wp_rg_form_view` VALUES("59453", "8", "2017-07-04 21:00:37", "180.76.15.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("59454", "3", "2017-07-04 21:05:48", "157.55.39.114", "3");
INSERT INTO `wp_rg_form_view` VALUES("59455", "10", "2017-07-04 21:22:24", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59456", "3", "2017-07-04 22:15:01", "188.116.33.163", "3");
INSERT INTO `wp_rg_form_view` VALUES("59457", "10", "2017-07-04 22:15:02", "188.116.33.163", "7");
INSERT INTO `wp_rg_form_view` VALUES("59458", "3", "2017-07-04 23:08:16", "157.55.39.85", "79");
INSERT INTO `wp_rg_form_view` VALUES("59459", "6", "2017-07-04 23:08:46", "157.55.39.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("59460", "10", "2017-07-04 23:09:50", "157.55.39.114", "109");
INSERT INTO `wp_rg_form_view` VALUES("59461", "8", "2017-07-04 23:10:05", "157.55.39.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("59462", "15", "2017-07-04 23:10:24", "157.55.39.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("59463", "14", "2017-07-05 00:33:31", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59464", "8", "2017-07-05 01:24:08", "141.8.143.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59465", "10", "2017-07-05 01:24:17", "141.8.143.140", "106");
INSERT INTO `wp_rg_form_view` VALUES("59466", "3", "2017-07-05 01:46:50", "178.210.90.90", "63");
INSERT INTO `wp_rg_form_view` VALUES("59467", "15", "2017-07-05 02:03:48", "157.55.39.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("59468", "10", "2017-07-05 02:12:09", "157.55.39.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("59469", "3", "2017-07-05 02:16:36", "40.77.167.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("59470", "8", "2017-07-05 02:17:04", "157.55.39.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("59471", "3", "2017-07-05 03:07:05", "178.210.90.90", "63");
INSERT INTO `wp_rg_form_view` VALUES("59472", "10", "2017-07-05 03:07:07", "178.210.90.90", "106");
INSERT INTO `wp_rg_form_view` VALUES("59473", "3", "2017-07-05 04:26:19", "69.89.31.180", "63");
INSERT INTO `wp_rg_form_view` VALUES("59474", "10", "2017-07-05 04:26:20", "69.89.31.180", "107");
INSERT INTO `wp_rg_form_view` VALUES("59475", "3", "2017-07-05 05:18:52", "51.255.65.86", "65");
INSERT INTO `wp_rg_form_view` VALUES("59476", "8", "2017-07-05 05:27:54", "204.79.180.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("59477", "10", "2017-07-05 05:43:01", "69.89.31.180", "105");
INSERT INTO `wp_rg_form_view` VALUES("59478", "3", "2017-07-05 06:11:00", "77.75.77.119", "5");
INSERT INTO `wp_rg_form_view` VALUES("59479", "8", "2017-07-05 06:22:36", "51.255.65.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("59480", "10", "2017-07-05 06:57:32", "213.32.20.191", "5");
INSERT INTO `wp_rg_form_view` VALUES("59481", "8", "2017-07-05 07:04:19", "149.202.184.37", "10");
INSERT INTO `wp_rg_form_view` VALUES("59482", "3", "2017-07-05 07:04:44", "149.202.184.37", "2");
INSERT INTO `wp_rg_form_view` VALUES("59483", "14", "2017-07-05 07:05:17", "149.202.184.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("59484", "10", "2017-07-05 07:05:23", "149.202.184.37", "7");
INSERT INTO `wp_rg_form_view` VALUES("59485", "3", "2017-07-05 08:15:16", "45.35.89.23", "63");
INSERT INTO `wp_rg_form_view` VALUES("59486", "10", "2017-07-05 08:15:17", "45.35.89.23", "105");
INSERT INTO `wp_rg_form_view` VALUES("59487", "11", "2017-07-05 09:31:17", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("59488", "3", "2017-07-05 09:31:46", "173.236.224.103", "12");
INSERT INTO `wp_rg_form_view` VALUES("59489", "10", "2017-07-05 09:31:46", "173.236.224.103", "20");
INSERT INTO `wp_rg_form_view` VALUES("59490", "8", "2017-07-05 10:22:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59491", "3", "2017-07-05 10:22:50", "52.88.109.3", "90");
INSERT INTO `wp_rg_form_view` VALUES("59492", "6", "2017-07-05 10:22:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59493", "9", "2017-07-05 10:22:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59494", "10", "2017-07-05 10:22:52", "52.88.109.3", "110");
INSERT INTO `wp_rg_form_view` VALUES("59495", "15", "2017-07-05 10:22:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59496", "10", "2017-07-05 12:05:24", "157.55.39.114", "106");
INSERT INTO `wp_rg_form_view` VALUES("59497", "3", "2017-07-05 12:05:32", "217.182.132.185", "65");
INSERT INTO `wp_rg_form_view` VALUES("59498", "3", "2017-07-05 13:50:28", "66.249.79.21", "12");
INSERT INTO `wp_rg_form_view` VALUES("59499", "10", "2017-07-05 13:58:00", "178.210.90.90", "16");
INSERT INTO `wp_rg_form_view` VALUES("59500", "3", "2017-07-05 14:00:00", "178.210.90.90", "52");
INSERT INTO `wp_rg_form_view` VALUES("59501", "10", "2017-07-05 14:00:00", "178.210.90.90", "89");
INSERT INTO `wp_rg_form_view` VALUES("59502", "6", "2017-07-05 14:55:54", "66.249.79.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("59503", "10", "2017-07-05 15:04:24", "180.76.15.138", "11");
INSERT INTO `wp_rg_form_view` VALUES("59504", "3", "2017-07-05 15:31:45", "213.32.20.191", "6");
INSERT INTO `wp_rg_form_view` VALUES("59505", "10", "2017-07-05 16:03:43", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59506", "3", "2017-07-05 16:13:42", "51.255.65.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("59507", "3", "2017-07-05 17:03:51", "69.195.124.70", "63");
INSERT INTO `wp_rg_form_view` VALUES("59508", "10", "2017-07-05 17:03:51", "69.195.124.70", "109");
INSERT INTO `wp_rg_form_view` VALUES("59509", "10", "2017-07-05 18:28:45", "184.66.248.195", "106");
INSERT INTO `wp_rg_form_view` VALUES("59510", "3", "2017-07-05 18:32:44", "45.35.89.23", "64");
INSERT INTO `wp_rg_form_view` VALUES("59511", "8", "2017-07-05 18:48:12", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("59512", "3", "2017-07-05 19:48:12", "164.132.161.39", "64");
INSERT INTO `wp_rg_form_view` VALUES("59513", "10", "2017-07-05 19:51:56", "66.147.244.54", "105");
INSERT INTO `wp_rg_form_view` VALUES("59514", "10", "2017-07-05 20:46:34", "184.66.248.195", "106");
INSERT INTO `wp_rg_form_view` VALUES("59515", "3", "2017-07-05 20:46:46", "89.161.188.130", "65");
INSERT INTO `wp_rg_form_view` VALUES("59516", "14", "2017-07-05 20:47:25", "210.35.171.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("59517", "14", "2017-07-05 21:11:52", "96.50.28.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("59518", "10", "2017-07-05 21:16:46", "184.66.248.195", "106");
INSERT INTO `wp_rg_form_view` VALUES("59519", "3", "2017-07-05 21:41:26", "85.128.142.54", "63");
INSERT INTO `wp_rg_form_view` VALUES("59520", "3", "2017-07-05 22:31:11", "216.244.66.231", "64");
INSERT INTO `wp_rg_form_view` VALUES("59521", "10", "2017-07-05 22:37:13", "23.227.132.78", "105");
INSERT INTO `wp_rg_form_view` VALUES("59522", "8", "2017-07-05 23:05:46", "96.50.28.252", "4");
INSERT INTO `wp_rg_form_view` VALUES("59523", "3", "2017-07-05 23:16:36", "96.50.28.252", "92");
INSERT INTO `wp_rg_form_view` VALUES("59524", "6", "2017-07-05 23:29:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59525", "9", "2017-07-05 23:29:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59526", "10", "2017-07-05 23:29:37", "52.88.109.3", "110");
INSERT INTO `wp_rg_form_view` VALUES("59527", "15", "2017-07-05 23:29:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59528", "3", "2017-07-06 00:16:25", "68.180.228.163", "85");
INSERT INTO `wp_rg_form_view` VALUES("59529", "10", "2017-07-06 00:23:42", "69.89.31.220", "146");
INSERT INTO `wp_rg_form_view` VALUES("59530", "14", "2017-07-06 00:27:32", "45.55.225.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("59531", "6", "2017-07-06 00:33:36", "45.55.225.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("59532", "8", "2017-07-06 00:39:06", "45.55.225.20", "54");
INSERT INTO `wp_rg_form_view` VALUES("59533", "9", "2017-07-06 00:46:14", "45.55.225.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("59534", "15", "2017-07-06 00:49:45", "45.55.225.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("59535", "3", "2017-07-06 01:00:04", "45.55.225.20", "40");
INSERT INTO `wp_rg_form_view` VALUES("59536", "10", "2017-07-06 01:01:46", "45.55.225.20", "58");
INSERT INTO `wp_rg_form_view` VALUES("59537", "8", "2017-07-06 01:02:56", "45.55.225.20", "166");
INSERT INTO `wp_rg_form_view` VALUES("59538", "3", "2017-07-06 02:42:00", "69.89.31.180", "63");
INSERT INTO `wp_rg_form_view` VALUES("59539", "10", "2017-07-06 02:42:00", "69.89.31.180", "105");
INSERT INTO `wp_rg_form_view` VALUES("59540", "3", "2017-07-06 03:48:16", "51.255.65.94", "7");
INSERT INTO `wp_rg_form_view` VALUES("59541", "10", "2017-07-06 03:58:49", "69.195.124.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("59542", "3", "2017-07-06 04:00:14", "69.195.124.70", "57");
INSERT INTO `wp_rg_form_view` VALUES("59543", "10", "2017-07-06 04:00:14", "69.195.124.70", "95");
INSERT INTO `wp_rg_form_view` VALUES("59544", "8", "2017-07-06 04:56:39", "192.187.31.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("59545", "3", "2017-07-06 05:15:37", "45.35.89.23", "90");
INSERT INTO `wp_rg_form_view` VALUES("59546", "10", "2017-07-06 05:15:37", "45.35.89.23", "110");
INSERT INTO `wp_rg_form_view` VALUES("59547", "8", "2017-07-06 05:46:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59548", "6", "2017-07-06 05:46:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59549", "9", "2017-07-06 05:46:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59550", "15", "2017-07-06 05:46:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59551", "8", "2017-07-06 06:22:31", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("59552", "3", "2017-07-06 06:22:33", "52.88.109.3", "58");
INSERT INTO `wp_rg_form_view` VALUES("59553", "6", "2017-07-06 06:22:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59554", "9", "2017-07-06 06:22:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59555", "10", "2017-07-06 06:22:41", "52.88.109.3", "15");
INSERT INTO `wp_rg_form_view` VALUES("59556", "15", "2017-07-06 06:22:46", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59557", "10", "2017-07-06 08:24:12", "66.249.79.137", "106");
INSERT INTO `wp_rg_form_view` VALUES("59558", "3", "2017-07-06 08:49:17", "178.210.90.90", "63");
INSERT INTO `wp_rg_form_view` VALUES("59559", "3", "2017-07-06 09:21:43", "180.76.15.140", "7");
INSERT INTO `wp_rg_form_view` VALUES("59560", "10", "2017-07-06 09:59:08", "178.210.90.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("59561", "3", "2017-07-06 10:00:35", "178.210.90.90", "58");
INSERT INTO `wp_rg_form_view` VALUES("59562", "10", "2017-07-06 10:00:35", "178.210.90.90", "96");
INSERT INTO `wp_rg_form_view` VALUES("59563", "15", "2017-07-06 10:49:24", "164.132.162.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("59564", "3", "2017-07-06 11:04:57", "94.73.149.109", "8");
INSERT INTO `wp_rg_form_view` VALUES("59565", "10", "2017-07-06 11:04:58", "94.73.149.109", "10");
INSERT INTO `wp_rg_form_view` VALUES("59566", "10", "2017-07-06 12:00:05", "184.66.129.248", "114");
INSERT INTO `wp_rg_form_view` VALUES("59567", "3", "2017-07-06 12:07:24", "69.89.31.180", "90");
INSERT INTO `wp_rg_form_view` VALUES("59568", "8", "2017-07-06 12:08:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59569", "6", "2017-07-06 12:08:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59570", "9", "2017-07-06 12:08:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59571", "15", "2017-07-06 12:08:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59572", "5", "2017-07-06 13:14:46", "180.76.15.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("59573", "3", "2017-07-06 13:28:33", "31.210.156.230", "90");
INSERT INTO `wp_rg_form_view` VALUES("59574", "10", "2017-07-06 13:28:34", "31.210.156.230", "110");
INSERT INTO `wp_rg_form_view` VALUES("59575", "8", "2017-07-06 13:40:46", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59576", "6", "2017-07-06 13:40:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59577", "9", "2017-07-06 13:40:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59578", "15", "2017-07-06 13:40:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59579", "3", "2017-07-06 14:52:06", "178.210.90.90", "63");
INSERT INTO `wp_rg_form_view` VALUES("59580", "10", "2017-07-06 14:52:07", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59581", "15", "2017-07-06 14:56:58", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("59582", "3", "2017-07-06 15:01:56", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("59583", "10", "2017-07-06 15:13:08", "213.239.205.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("59584", "8", "2017-07-06 16:28:01", "142.104.160.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("59585", "3", "2017-07-06 16:38:02", "5.44.216.9", "63");
INSERT INTO `wp_rg_form_view` VALUES("59586", "10", "2017-07-06 16:38:03", "5.44.216.9", "105");
INSERT INTO `wp_rg_form_view` VALUES("59587", "14", "2017-07-06 17:55:12", "96.50.22.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("59588", "3", "2017-07-06 18:03:43", "94.73.151.90", "6");
INSERT INTO `wp_rg_form_view` VALUES("59589", "10", "2017-07-06 18:03:43", "94.73.151.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("59590", "8", "2017-07-06 19:17:53", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("59591", "3", "2017-07-06 20:00:51", "178.210.90.90", "65");
INSERT INTO `wp_rg_form_view` VALUES("59592", "10", "2017-07-06 20:00:51", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59593", "8", "2017-07-06 20:20:05", "158.69.225.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("59594", "6", "2017-07-06 20:53:27", "217.182.92.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("59595", "3", "2017-07-06 21:14:44", "94.73.149.109", "9");
INSERT INTO `wp_rg_form_view` VALUES("59596", "10", "2017-07-06 21:14:44", "94.73.149.109", "15");
INSERT INTO `wp_rg_form_view` VALUES("59597", "3", "2017-07-06 22:28:22", "31.28.24.112", "64");
INSERT INTO `wp_rg_form_view` VALUES("59598", "10", "2017-07-06 22:28:22", "31.28.24.112", "105");
INSERT INTO `wp_rg_form_view` VALUES("59599", "3", "2017-07-06 23:13:53", "164.132.161.15", "64");
INSERT INTO `wp_rg_form_view` VALUES("59600", "15", "2017-07-06 23:37:07", "77.66.1.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("59601", "10", "2017-07-06 23:40:40", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59602", "3", "2017-07-07 00:12:59", "207.46.13.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("59603", "7", "2017-07-07 00:15:22", "77.66.1.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("59604", "10", "2017-07-07 00:21:16", "194.187.170.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("59605", "10", "2017-07-07 01:08:52", "77.75.78.165", "108");
INSERT INTO `wp_rg_form_view` VALUES("59606", "3", "2017-07-07 01:16:52", "54.165.59.7", "68");
INSERT INTO `wp_rg_form_view` VALUES("59607", "14", "2017-07-07 01:17:55", "179.61.213.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("59608", "11", "2017-07-07 01:21:30", "77.66.1.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("59609", "3", "2017-07-07 02:18:32", "77.66.1.97", "9");
INSERT INTO `wp_rg_form_view` VALUES("59610", "10", "2017-07-07 02:23:13", "216.244.66.247", "11");
INSERT INTO `wp_rg_form_view` VALUES("59611", "10", "2017-07-07 03:21:48", "24.108.13.92", "109");
INSERT INTO `wp_rg_form_view` VALUES("59612", "3", "2017-07-07 03:39:36", "163.172.120.155", "64");
INSERT INTO `wp_rg_form_view` VALUES("59613", "3", "2017-07-07 04:20:07", "24.244.32.134", "64");
INSERT INTO `wp_rg_form_view` VALUES("59614", "10", "2017-07-07 04:38:43", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59615", "9", "2017-07-07 04:39:42", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("59616", "3", "2017-07-07 05:38:26", "178.210.90.90", "92");
INSERT INTO `wp_rg_form_view` VALUES("59617", "10", "2017-07-07 05:38:26", "178.210.90.90", "114");
INSERT INTO `wp_rg_form_view` VALUES("59618", "8", "2017-07-07 05:58:06", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("59619", "6", "2017-07-07 05:58:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59620", "9", "2017-07-07 05:58:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59621", "15", "2017-07-07 05:58:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59622", "10", "2017-07-07 06:00:00", "5.188.211.15", "111");
INSERT INTO `wp_rg_form_view` VALUES("59623", "8", "2017-07-07 06:04:45", "180.76.15.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59624", "3", "2017-07-07 06:36:36", "77.66.1.97", "64");
INSERT INTO `wp_rg_form_view` VALUES("59625", "14", "2017-07-07 07:29:07", "77.66.1.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("59626", "3", "2017-07-07 07:49:37", "77.66.1.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("59627", "3", "2017-07-07 08:00:03", "207.46.13.140", "64");
INSERT INTO `wp_rg_form_view` VALUES("59628", "10", "2017-07-07 08:08:46", "213.251.182.106", "106");
INSERT INTO `wp_rg_form_view` VALUES("59629", "3", "2017-07-07 09:28:29", "69.89.31.180", "65");
INSERT INTO `wp_rg_form_view` VALUES("59630", "10", "2017-07-07 09:28:29", "69.89.31.180", "106");
INSERT INTO `wp_rg_form_view` VALUES("59631", "9", "2017-07-07 09:34:10", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("59632", "3", "2017-07-07 10:01:56", "5.188.211.14", "66");
INSERT INTO `wp_rg_form_view` VALUES("59633", "10", "2017-07-07 10:41:30", "178.210.90.90", "105");
INSERT INTO `wp_rg_form_view` VALUES("59634", "8", "2017-07-07 11:08:56", "51.255.71.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("59635", "3", "2017-07-07 11:36:00", "207.46.13.140", "64");
INSERT INTO `wp_rg_form_view` VALUES("59636", "10", "2017-07-07 11:49:44", "213.251.182.106", "105");
INSERT INTO `wp_rg_form_view` VALUES("59637", "3", "2017-07-07 12:13:02", "180.76.15.13", "66");
INSERT INTO `wp_rg_form_view` VALUES("59638", "10", "2017-07-07 12:40:17", "208.43.225.85", "106");
INSERT INTO `wp_rg_form_view` VALUES("59639", "3", "2017-07-07 14:04:54", "5.188.211.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("59640", "3", "2017-07-07 15:33:02", "217.182.132.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("59641", "3", "2017-07-07 16:16:00", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("59642", "3", "2017-07-07 17:26:45", "180.76.15.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59643", "3", "2017-07-07 18:13:36", "5.188.211.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("59644", "8", "2017-07-07 19:35:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59645", "3", "2017-07-07 19:35:54", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59646", "6", "2017-07-07 19:35:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59647", "9", "2017-07-07 19:35:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59648", "10", "2017-07-07 19:35:57", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59649", "15", "2017-07-07 19:35:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59650", "8", "2017-07-07 20:12:28", "180.76.15.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("59651", "3", "2017-07-07 20:30:06", "194.187.170.113", "3");
INSERT INTO `wp_rg_form_view` VALUES("59652", "10", "2017-07-07 20:38:40", "86.88.81.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("59653", "3", "2017-07-07 21:06:47", "207.46.13.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("59654", "10", "2017-07-07 21:26:57", "51.255.65.96", "3");
INSERT INTO `wp_rg_form_view` VALUES("59655", "8", "2017-07-07 21:40:44", "104.192.7.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("59656", "10", "2017-07-07 22:02:12", "194.187.170.113", "3");
INSERT INTO `wp_rg_form_view` VALUES("59657", "3", "2017-07-07 22:18:44", "207.46.13.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("59658", "8", "2017-07-07 22:46:00", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("59659", "11", "2017-07-07 23:05:37", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("59660", "3", "2017-07-07 23:23:20", "217.182.132.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("59661", "14", "2017-07-07 23:27:32", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("59662", "3", "2017-07-08 01:08:47", "180.76.15.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("59663", "14", "2017-07-08 01:32:55", "24.69.136.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("59664", "8", "2017-07-08 02:11:24", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59665", "3", "2017-07-08 02:11:25", "52.88.109.3", "82");
INSERT INTO `wp_rg_form_view` VALUES("59666", "6", "2017-07-08 02:11:25", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("59667", "9", "2017-07-08 02:11:26", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("59668", "10", "2017-07-08 02:11:27", "52.88.109.3", "15");
INSERT INTO `wp_rg_form_view` VALUES("59669", "15", "2017-07-08 02:11:29", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("59670", "11", "2017-07-08 02:12:31", "217.182.132.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("59671", "10", "2017-07-08 03:29:28", "208.43.225.85", "3");
INSERT INTO `wp_rg_form_view` VALUES("59672", "8", "2017-07-08 03:29:31", "208.43.225.85", "3");
INSERT INTO `wp_rg_form_view` VALUES("59673", "15", "2017-07-08 03:29:47", "208.43.225.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("59674", "3", "2017-07-08 03:30:01", "208.43.225.85", "7");
INSERT INTO `wp_rg_form_view` VALUES("59675", "5", "2017-07-08 05:03:13", "77.75.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("59676", "3", "2017-07-08 06:09:04", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59677", "3", "2017-07-08 07:15:28", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("59678", "8", "2017-07-08 08:42:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59679", "3", "2017-07-08 08:42:40", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59680", "6", "2017-07-08 08:42:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59681", "9", "2017-07-08 08:42:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59682", "10", "2017-07-08 08:42:42", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59683", "15", "2017-07-08 08:42:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59684", "3", "2017-07-08 09:19:08", "217.182.132.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("59685", "8", "2017-07-08 10:15:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59686", "3", "2017-07-08 10:15:54", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59687", "6", "2017-07-08 10:15:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59688", "9", "2017-07-08 10:15:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59689", "10", "2017-07-08 10:15:56", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("59690", "15", "2017-07-08 10:15:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59691", "10", "2017-07-08 11:53:46", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59692", "8", "2017-07-08 12:05:59", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("59693", "10", "2017-07-08 14:26:06", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("59694", "3", "2017-07-08 15:40:36", "194.187.170.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("59695", "10", "2017-07-08 16:25:10", "194.187.170.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("59696", "3", "2017-07-08 16:38:24", "137.74.207.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("59697", "3", "2017-07-08 17:17:42", "180.76.15.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("59698", "3", "2017-07-08 18:07:13", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("59699", "3", "2017-07-08 19:04:43", "68.180.228.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("59700", "3", "2017-07-08 20:00:57", "51.255.65.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("59701", "3", "2017-07-08 21:17:58", "180.76.15.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("59702", "12", "2017-07-08 23:18:05", "217.182.132.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("59703", "3", "2017-07-09 00:38:00", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("59704", "3", "2017-07-09 01:09:23", "51.255.65.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("59705", "10", "2017-07-09 01:32:47", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("59706", "8", "2017-07-09 02:14:39", "40.77.167.58", "8");
INSERT INTO `wp_rg_form_view` VALUES("59707", "3", "2017-07-09 02:24:55", "5.188.211.35", "49");
INSERT INTO `wp_rg_form_view` VALUES("59708", "6", "2017-07-09 02:38:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59709", "9", "2017-07-09 02:38:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59710", "10", "2017-07-09 02:38:12", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59711", "15", "2017-07-09 02:38:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59712", "8", "2017-07-09 03:36:45", "184.69.31.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("59713", "3", "2017-07-09 03:37:27", "184.69.31.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("59714", "10", "2017-07-09 04:00:33", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59715", "3", "2017-07-09 05:16:33", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("59716", "10", "2017-07-09 05:36:06", "77.75.76.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("59717", "3", "2017-07-09 06:23:15", "180.76.15.27", "11");
INSERT INTO `wp_rg_form_view` VALUES("59718", "10", "2017-07-09 06:54:21", "157.55.39.85", "9");
INSERT INTO `wp_rg_form_view` VALUES("59719", "8", "2017-07-09 06:56:49", "40.77.167.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("59720", "8", "2017-07-09 07:09:57", "89.123.19.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("59721", "3", "2017-07-09 07:11:36", "89.123.19.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("59722", "10", "2017-07-09 08:17:28", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("59723", "3", "2017-07-09 08:36:26", "51.255.65.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("59724", "3", "2017-07-09 09:05:54", "5.9.98.130", "36");
INSERT INTO `wp_rg_form_view` VALUES("59725", "8", "2017-07-09 09:06:36", "5.9.98.130", "44");
INSERT INTO `wp_rg_form_view` VALUES("59726", "14", "2017-07-09 09:06:41", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("59727", "10", "2017-07-09 09:06:52", "5.9.98.130", "34");
INSERT INTO `wp_rg_form_view` VALUES("59728", "15", "2017-07-09 09:09:16", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("59729", "9", "2017-07-09 09:16:21", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("59730", "6", "2017-07-09 09:17:36", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("59731", "3", "2017-07-09 10:02:54", "5.9.98.130", "24");
INSERT INTO `wp_rg_form_view` VALUES("59732", "10", "2017-07-09 10:03:46", "5.9.98.130", "64");
INSERT INTO `wp_rg_form_view` VALUES("59733", "8", "2017-07-09 10:04:38", "5.9.98.130", "119");
INSERT INTO `wp_rg_form_view` VALUES("59734", "8", "2017-07-09 11:00:05", "5.9.98.130", "26");
INSERT INTO `wp_rg_form_view` VALUES("59735", "10", "2017-07-09 11:02:47", "5.9.98.130", "32");
INSERT INTO `wp_rg_form_view` VALUES("59736", "3", "2017-07-09 11:21:02", "213.127.117.93", "3");
INSERT INTO `wp_rg_form_view` VALUES("59737", "3", "2017-07-09 12:20:01", "5.9.98.130", "59");
INSERT INTO `wp_rg_form_view` VALUES("59738", "10", "2017-07-09 12:23:23", "5.9.98.130", "101");
INSERT INTO `wp_rg_form_view` VALUES("59739", "8", "2017-07-09 12:26:49", "5.9.98.130", "194");
INSERT INTO `wp_rg_form_view` VALUES("59740", "6", "2017-07-09 12:36:33", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("59741", "9", "2017-07-09 12:36:36", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("59742", "15", "2017-07-09 12:36:43", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("59743", "10", "2017-07-09 13:32:54", "5.9.98.130", "33");
INSERT INTO `wp_rg_form_view` VALUES("59744", "14", "2017-07-09 14:49:56", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("59745", "3", "2017-07-09 15:19:46", "5.9.98.130", "64");
INSERT INTO `wp_rg_form_view` VALUES("59746", "10", "2017-07-09 15:26:56", "5.9.98.130", "65");
INSERT INTO `wp_rg_form_view` VALUES("59747", "8", "2017-07-09 15:33:52", "5.9.98.130", "237");
INSERT INTO `wp_rg_form_view` VALUES("59748", "6", "2017-07-09 15:41:30", "51.255.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("59749", "8", "2017-07-09 16:00:00", "5.9.98.130", "149");
INSERT INTO `wp_rg_form_view` VALUES("59750", "10", "2017-07-09 16:02:03", "5.9.98.130", "133");
INSERT INTO `wp_rg_form_view` VALUES("59751", "3", "2017-07-09 16:05:20", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59752", "6", "2017-07-09 16:05:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59753", "9", "2017-07-09 16:05:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59754", "15", "2017-07-09 16:05:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59755", "10", "2017-07-09 17:47:05", "5.9.98.130", "64");
INSERT INTO `wp_rg_form_view` VALUES("59756", "3", "2017-07-09 18:17:46", "217.182.132.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("59757", "10", "2017-07-09 19:05:59", "51.255.65.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("59758", "3", "2017-07-09 19:21:15", "157.55.39.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("59759", "6", "2017-07-09 20:16:36", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("59760", "3", "2017-07-09 21:21:02", "5.9.98.130", "128");
INSERT INTO `wp_rg_form_view` VALUES("59761", "10", "2017-07-09 21:34:58", "5.9.98.130", "130");
INSERT INTO `wp_rg_form_view` VALUES("59762", "8", "2017-07-09 21:49:25", "5.9.98.130", "98");
INSERT INTO `wp_rg_form_view` VALUES("59763", "8", "2017-07-09 22:00:05", "5.9.98.130", "424");
INSERT INTO `wp_rg_form_view` VALUES("59764", "3", "2017-07-09 22:28:57", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59765", "6", "2017-07-09 22:28:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59766", "9", "2017-07-09 22:29:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59767", "10", "2017-07-09 22:29:05", "52.88.109.3", "133");
INSERT INTO `wp_rg_form_view` VALUES("59768", "15", "2017-07-09 22:29:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59769", "8", "2017-07-09 23:00:05", "5.9.98.130", "252");
INSERT INTO `wp_rg_form_view` VALUES("59770", "3", "2017-07-09 23:04:07", "52.88.109.3", "56");
INSERT INTO `wp_rg_form_view` VALUES("59771", "6", "2017-07-09 23:04:09", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59772", "9", "2017-07-09 23:04:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59773", "10", "2017-07-09 23:04:22", "52.88.109.3", "138");
INSERT INTO `wp_rg_form_view` VALUES("59774", "15", "2017-07-09 23:04:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59775", "10", "2017-07-10 00:20:30", "51.255.65.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("59776", "3", "2017-07-10 00:39:00", "164.132.161.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("59777", "3", "2017-07-10 01:03:10", "66.249.79.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("59778", "8", "2017-07-10 01:57:19", "185.29.10.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("59779", "10", "2017-07-10 01:59:14", "185.29.10.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("59780", "3", "2017-07-10 02:02:03", "185.29.10.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("59781", "10", "2017-07-10 02:19:37", "5.9.98.130", "129");
INSERT INTO `wp_rg_form_view` VALUES("59782", "14", "2017-07-10 03:03:09", "96.50.16.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("59783", "10", "2017-07-10 03:32:56", "194.187.170.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("59784", "3", "2017-07-10 04:12:12", "180.76.15.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("59785", "10", "2017-07-10 04:13:24", "194.187.170.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("59786", "8", "2017-07-10 05:06:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59787", "3", "2017-07-10 05:06:59", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59788", "6", "2017-07-10 05:06:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59789", "9", "2017-07-10 05:07:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59790", "10", "2017-07-10 05:07:04", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("59791", "15", "2017-07-10 05:07:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59792", "5", "2017-07-10 06:14:51", "51.255.71.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("59793", "8", "2017-07-10 06:36:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59794", "3", "2017-07-10 06:36:17", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("59795", "6", "2017-07-10 06:36:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59796", "9", "2017-07-10 06:36:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59797", "10", "2017-07-10 06:36:22", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("59798", "15", "2017-07-10 06:36:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59799", "3", "2017-07-10 07:20:38", "217.182.132.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("59800", "10", "2017-07-10 09:05:35", "180.76.15.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("59801", "3", "2017-07-10 10:14:07", "5.9.98.130", "257");
INSERT INTO `wp_rg_form_view` VALUES("59802", "10", "2017-07-10 10:42:15", "5.9.98.130", "163");
INSERT INTO `wp_rg_form_view` VALUES("59803", "10", "2017-07-10 11:00:03", "5.9.98.130", "94");
INSERT INTO `wp_rg_form_view` VALUES("59804", "8", "2017-07-10 11:10:09", "5.9.98.130", "454");
INSERT INTO `wp_rg_form_view` VALUES("59805", "3", "2017-07-10 11:23:50", "40.77.167.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("59806", "15", "2017-07-10 11:50:39", "180.76.15.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("59807", "8", "2017-07-10 12:00:00", "5.9.98.130", "538");
INSERT INTO `wp_rg_form_view` VALUES("59808", "3", "2017-07-10 12:14:17", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59809", "10", "2017-07-10 12:20:14", "157.55.39.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("59810", "9", "2017-07-10 12:20:21", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59811", "8", "2017-07-10 13:00:05", "5.9.98.130", "213");
INSERT INTO `wp_rg_form_view` VALUES("59812", "10", "2017-07-10 13:03:41", "5.9.98.130", "262");
INSERT INTO `wp_rg_form_view` VALUES("59813", "14", "2017-07-10 13:19:48", "75.157.168.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("59814", "3", "2017-07-10 13:30:42", "180.76.15.13", "27");
INSERT INTO `wp_rg_form_view` VALUES("59815", "6", "2017-07-10 13:51:11", "157.55.39.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("59816", "9", "2017-07-10 13:51:42", "207.46.13.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("59817", "8", "2017-07-10 14:00:00", "5.9.98.130", "333");
INSERT INTO `wp_rg_form_view` VALUES("59818", "10", "2017-07-10 14:37:49", "5.9.98.130", "198");
INSERT INTO `wp_rg_form_view` VALUES("59819", "3", "2017-07-10 14:58:30", "40.77.167.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("59820", "10", "2017-07-10 15:00:03", "5.9.98.130", "58");
INSERT INTO `wp_rg_form_view` VALUES("59821", "3", "2017-07-10 15:10:42", "180.76.15.32", "2");
INSERT INTO `wp_rg_form_view` VALUES("59822", "10", "2017-07-10 16:19:18", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59823", "14", "2017-07-10 16:53:07", "78.97.84.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("59824", "3", "2017-07-10 16:53:15", "78.97.84.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("59825", "8", "2017-07-10 16:54:18", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("59826", "10", "2017-07-10 17:17:13", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59827", "10", "2017-07-10 18:17:36", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59828", "10", "2017-07-10 19:18:01", "184.66.248.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("59829", "10", "2017-07-10 20:01:45", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("59830", "15", "2017-07-10 20:05:55", "180.76.15.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("59831", "14", "2017-07-10 20:25:22", "24.69.158.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59832", "3", "2017-07-10 20:39:10", "180.76.15.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("59833", "3", "2017-07-10 21:07:05", "64.180.188.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("59834", "10", "2017-07-10 21:18:32", "184.66.248.195", "258");
INSERT INTO `wp_rg_form_view` VALUES("59835", "10", "2017-07-10 22:18:52", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("59836", "8", "2017-07-10 23:33:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59837", "3", "2017-07-10 23:33:31", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59838", "6", "2017-07-10 23:33:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59839", "9", "2017-07-10 23:33:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59840", "10", "2017-07-10 23:33:34", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59841", "15", "2017-07-10 23:33:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59842", "3", "2017-07-11 01:37:05", "46.229.168.66", "96");
INSERT INTO `wp_rg_form_view` VALUES("59843", "11", "2017-07-11 01:38:29", "46.229.168.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("59844", "8", "2017-07-11 01:44:57", "46.229.168.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("59845", "6", "2017-07-11 01:44:59", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("59846", "9", "2017-07-11 01:45:03", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("59847", "10", "2017-07-11 01:45:06", "46.229.168.71", "19");
INSERT INTO `wp_rg_form_view` VALUES("59848", "15", "2017-07-11 01:45:09", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("59849", "3", "2017-07-11 02:20:36", "164.132.161.67", "2");
INSERT INTO `wp_rg_form_view` VALUES("59850", "3", "2017-07-11 03:02:41", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("59851", "10", "2017-07-11 03:29:18", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("59852", "10", "2017-07-11 04:26:32", "164.132.161.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59853", "5", "2017-07-11 04:30:16", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("59854", "8", "2017-07-11 04:54:19", "184.66.229.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("59855", "3", "2017-07-11 05:20:18", "217.182.132.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("59856", "10", "2017-07-11 06:07:11", "157.55.39.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("59857", "3", "2017-07-11 06:09:20", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("59858", "15", "2017-07-11 06:21:09", "184.66.154.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("59859", "10", "2017-07-11 07:24:45", "72.14.199.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("59860", "8", "2017-07-11 07:47:42", "51.254.190.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("59861", "3", "2017-07-11 07:50:16", "51.254.190.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("59862", "5", "2017-07-11 08:33:01", "77.75.77.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("59863", "3", "2017-07-11 08:53:38", "207.46.13.107", "3");
INSERT INTO `wp_rg_form_view` VALUES("59864", "10", "2017-07-11 09:21:37", "77.75.77.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("59865", "3", "2017-07-11 09:32:25", "180.76.15.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("59866", "10", "2017-07-11 10:15:01", "217.182.132.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("59867", "8", "2017-07-11 10:22:08", "217.182.132.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("59868", "10", "2017-07-11 13:03:47", "40.77.167.42", "6");
INSERT INTO `wp_rg_form_view` VALUES("59869", "8", "2017-07-11 13:27:42", "51.255.71.113", "3");
INSERT INTO `wp_rg_form_view` VALUES("59870", "3", "2017-07-11 13:52:13", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59871", "6", "2017-07-11 13:52:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59872", "9", "2017-07-11 13:52:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59873", "15", "2017-07-11 13:52:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59874", "3", "2017-07-11 14:20:00", "66.183.103.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("59875", "8", "2017-07-11 14:23:04", "180.76.15.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("59876", "10", "2017-07-11 14:24:47", "217.182.132.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("59877", "10", "2017-07-11 16:03:09", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59878", "14", "2017-07-11 16:38:19", "207.194.253.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("59879", "3", "2017-07-11 16:39:25", "164.132.161.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("59880", "10", "2017-07-11 18:02:53", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("59881", "3", "2017-07-11 18:10:47", "192.210.186.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("59882", "8", "2017-07-11 18:18:43", "207.194.133.9", "8");
INSERT INTO `wp_rg_form_view` VALUES("59883", "10", "2017-07-11 19:20:16", "51.255.65.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("59884", "15", "2017-07-11 19:28:22", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("59885", "3", "2017-07-11 19:49:18", "180.76.15.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("59886", "10", "2017-07-11 20:22:41", "180.76.15.32", "3");
INSERT INTO `wp_rg_form_view` VALUES("59887", "8", "2017-07-11 21:13:34", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("59888", "3", "2017-07-11 21:13:35", "52.88.109.3", "135");
INSERT INTO `wp_rg_form_view` VALUES("59889", "6", "2017-07-11 21:13:35", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59890", "9", "2017-07-11 21:13:37", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59891", "10", "2017-07-11 21:13:38", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("59892", "15", "2017-07-11 21:13:40", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59893", "14", "2017-07-11 21:41:19", "24.108.164.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("59894", "10", "2017-07-11 22:23:24", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59895", "3", "2017-07-11 23:18:00", "164.132.161.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("59896", "14", "2017-07-11 23:19:30", "23.245.152.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("59897", "10", "2017-07-11 23:23:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59898", "10", "2017-07-12 00:23:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59899", "10", "2017-07-12 01:02:09", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("59900", "10", "2017-07-12 02:23:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59901", "3", "2017-07-12 02:37:30", "137.74.207.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("59902", "10", "2017-07-12 03:23:24", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59903", "11", "2017-07-12 03:31:50", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("59904", "8", "2017-07-12 04:11:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59905", "3", "2017-07-12 04:11:34", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("59906", "6", "2017-07-12 04:11:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59907", "9", "2017-07-12 04:11:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59908", "10", "2017-07-12 04:11:40", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("59909", "15", "2017-07-12 04:11:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59910", "3", "2017-07-12 05:18:56", "180.76.15.150", "28");
INSERT INTO `wp_rg_form_view` VALUES("59911", "10", "2017-07-12 05:23:25", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("59912", "8", "2017-07-12 05:47:11", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59913", "6", "2017-07-12 05:47:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59914", "9", "2017-07-12 05:47:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59915", "15", "2017-07-12 05:47:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59916", "10", "2017-07-12 06:23:24", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("59917", "10", "2017-07-12 07:23:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59918", "3", "2017-07-12 07:49:57", "180.76.15.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("59919", "10", "2017-07-12 08:23:24", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59920", "10", "2017-07-12 09:23:25", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59921", "10", "2017-07-12 10:23:23", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59922", "3", "2017-07-12 10:26:54", "51.255.71.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("59923", "10", "2017-07-12 11:23:26", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59924", "10", "2017-07-12 12:00:22", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("59925", "3", "2017-07-12 12:26:39", "157.55.39.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("59926", "8", "2017-07-12 12:37:52", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("59927", "10", "2017-07-12 13:19:21", "164.132.162.159", "3");
INSERT INTO `wp_rg_form_view` VALUES("59928", "5", "2017-07-12 13:37:45", "77.75.78.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("59929", "3", "2017-07-12 13:54:29", "180.76.15.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("59930", "10", "2017-07-12 14:15:30", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("59931", "3", "2017-07-12 14:59:58", "164.132.161.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("59932", "3", "2017-07-12 15:09:04", "217.182.132.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("59933", "14", "2017-07-12 15:13:38", "51.255.65.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("59934", "10", "2017-07-12 15:23:23", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59935", "3", "2017-07-12 16:10:46", "142.25.27.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("59936", "10", "2017-07-12 16:23:25", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59937", "10", "2017-07-12 17:23:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59938", "8", "2017-07-12 17:47:54", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("59939", "10", "2017-07-12 18:23:24", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59940", "3", "2017-07-12 18:54:28", "180.76.15.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("59941", "15", "2017-07-12 19:02:58", "207.46.13.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("59942", "10", "2017-07-12 19:23:26", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("59943", "3", "2017-07-12 19:38:15", "137.74.207.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("59944", "14", "2017-07-12 19:56:39", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("59945", "10", "2017-07-12 20:02:40", "66.249.79.137", "4");
INSERT INTO `wp_rg_form_view` VALUES("59946", "8", "2017-07-12 20:07:19", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("59947", "3", "2017-07-12 20:09:52", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("59948", "3", "2017-07-12 21:07:47", "180.76.15.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("59949", "10", "2017-07-12 21:23:26", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59950", "10", "2017-07-12 22:23:23", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59951", "3", "2017-07-12 23:01:45", "142.104.18.238", "29");
INSERT INTO `wp_rg_form_view` VALUES("59952", "8", "2017-07-12 23:02:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59953", "6", "2017-07-12 23:02:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59954", "9", "2017-07-12 23:02:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59955", "10", "2017-07-12 23:02:57", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("59956", "15", "2017-07-12 23:02:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59957", "10", "2017-07-13 00:23:26", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59958", "3", "2017-07-13 00:27:55", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("59959", "10", "2017-07-13 01:23:26", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59960", "14", "2017-07-13 01:35:13", "209.52.88.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("59961", "10", "2017-07-13 02:15:46", "217.182.132.62", "4");
INSERT INTO `wp_rg_form_view` VALUES("59962", "10", "2017-07-13 03:23:26", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59963", "10", "2017-07-13 04:04:54", "217.182.132.149", "7");
INSERT INTO `wp_rg_form_view` VALUES("59964", "8", "2017-07-13 04:20:10", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("59965", "9", "2017-07-13 04:28:45", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("59966", "3", "2017-07-13 04:30:54", "164.132.161.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("59967", "8", "2017-07-13 05:08:45", "217.182.132.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("59968", "3", "2017-07-13 05:15:48", "207.46.13.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("59969", "10", "2017-07-13 05:22:43", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("59970", "3", "2017-07-13 06:07:22", "207.46.13.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("59971", "10", "2017-07-13 06:23:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59972", "3", "2017-07-13 07:16:46", "40.77.167.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("59973", "10", "2017-07-13 07:16:56", "157.55.39.85", "9");
INSERT INTO `wp_rg_form_view` VALUES("59974", "10", "2017-07-13 08:23:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59975", "3", "2017-07-13 08:56:19", "180.76.15.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("59976", "10", "2017-07-13 09:23:26", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("59977", "10", "2017-07-13 10:23:24", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("59978", "10", "2017-07-13 11:51:53", "217.182.132.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("59979", "3", "2017-07-13 11:55:42", "51.255.65.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("59980", "10", "2017-07-13 12:01:09", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("59981", "8", "2017-07-13 13:04:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("59982", "3", "2017-07-13 13:04:07", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("59983", "6", "2017-07-13 13:04:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59984", "9", "2017-07-13 13:04:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59985", "10", "2017-07-13 13:04:10", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("59986", "15", "2017-07-13 13:04:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("59987", "10", "2017-07-13 14:23:49", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("59988", "14", "2017-07-13 15:28:55", "24.68.52.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("59989", "10", "2017-07-13 15:50:16", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("59990", "10", "2017-07-13 16:20:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59991", "3", "2017-07-13 17:05:32", "217.182.132.34", "3");
INSERT INTO `wp_rg_form_view` VALUES("59992", "10", "2017-07-13 17:09:44", "137.74.207.109", "3");
INSERT INTO `wp_rg_form_view` VALUES("59993", "3", "2017-07-13 18:08:40", "77.75.78.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("59994", "10", "2017-07-13 18:20:51", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59995", "10", "2017-07-13 19:20:48", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("59996", "14", "2017-07-13 19:32:26", "181.214.10.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("59997", "10", "2017-07-13 20:01:19", "157.55.39.250", "24");
INSERT INTO `wp_rg_form_view` VALUES("59998", "8", "2017-07-13 20:20:06", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("59999", "3", "2017-07-13 20:20:07", "52.88.109.3", "111");
INSERT INTO `wp_rg_form_view` VALUES("60000", "6", "2017-07-13 20:20:08", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60001", "9", "2017-07-13 20:20:11", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60002", "15", "2017-07-13 20:20:18", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60003", "15", "2017-07-13 21:15:19", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("60004", "10", "2017-07-13 21:20:51", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("60005", "9", "2017-07-13 21:31:15", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60006", "3", "2017-07-13 21:43:14", "180.76.15.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("60007", "10", "2017-07-13 22:20:55", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("60008", "6", "2017-07-13 22:49:54", "180.76.15.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("60009", "14", "2017-07-13 23:19:26", "70.66.168.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("60010", "10", "2017-07-13 23:43:01", "77.75.77.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("60011", "14", "2017-07-14 00:09:21", "70.67.52.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("60012", "10", "2017-07-14 01:09:48", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("60013", "8", "2017-07-14 01:20:15", "220.181.108.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("60014", "3", "2017-07-14 01:43:30", "184.69.99.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("60015", "3", "2017-07-14 02:33:20", "217.182.132.177", "28");
INSERT INTO `wp_rg_form_view` VALUES("60016", "8", "2017-07-14 02:58:44", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60017", "6", "2017-07-14 02:58:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60018", "9", "2017-07-14 02:58:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60019", "10", "2017-07-14 02:58:46", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60020", "15", "2017-07-14 02:58:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60021", "12", "2017-07-14 03:32:30", "180.76.15.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("60022", "10", "2017-07-14 04:35:10", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("60023", "8", "2017-07-14 04:41:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60024", "3", "2017-07-14 04:41:26", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60025", "6", "2017-07-14 04:41:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60026", "9", "2017-07-14 04:41:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60027", "15", "2017-07-14 04:41:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60028", "14", "2017-07-14 05:06:49", "24.69.140.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("60029", "5", "2017-07-14 06:10:37", "77.75.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("60030", "10", "2017-07-14 06:28:53", "72.14.199.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("60031", "9", "2017-07-14 06:55:45", "217.182.91.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("60032", "3", "2017-07-14 07:35:04", "66.249.79.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("60033", "10", "2017-07-14 08:36:48", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60034", "8", "2017-07-14 08:58:41", "180.76.15.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("60035", "8", "2017-07-14 09:12:04", "40.77.167.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60036", "3", "2017-07-14 09:12:05", "40.77.167.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60037", "6", "2017-07-14 09:12:05", "40.77.167.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60038", "9", "2017-07-14 09:12:06", "40.77.167.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60039", "10", "2017-07-14 09:12:07", "40.77.167.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60040", "15", "2017-07-14 09:12:09", "40.77.167.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60041", "3", "2017-07-14 10:11:30", "108.172.127.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("60042", "10", "2017-07-14 10:42:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60043", "8", "2017-07-14 11:51:47", "164.132.161.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("60044", "10", "2017-07-14 12:00:19", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60045", "3", "2017-07-14 12:13:05", "164.132.161.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("60046", "15", "2017-07-14 13:59:19", "137.74.207.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("60047", "3", "2017-07-14 18:30:19", "77.75.79.32", "2");
INSERT INTO `wp_rg_form_view` VALUES("60048", "10", "2017-07-14 18:36:42", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60049", "10", "2017-07-14 19:51:50", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60050", "3", "2017-07-14 20:08:27", "207.46.13.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("60051", "10", "2017-07-14 20:42:45", "68.180.228.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("60052", "10", "2017-07-14 21:03:52", "199.59.150.183", "8");
INSERT INTO `wp_rg_form_view` VALUES("60053", "9", "2017-07-14 21:13:02", "99.238.37.90", "7");
INSERT INTO `wp_rg_form_view` VALUES("60054", "8", "2017-07-14 21:45:44", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60055", "3", "2017-07-14 21:45:44", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("60056", "6", "2017-07-14 21:45:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60057", "15", "2017-07-14 21:45:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60058", "10", "2017-07-14 22:04:31", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("60059", "14", "2017-07-14 23:36:21", "180.76.15.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("60060", "8", "2017-07-15 00:18:27", "50.62.143.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("60061", "3", "2017-07-15 00:20:02", "50.62.143.234", "3");
INSERT INTO `wp_rg_form_view` VALUES("60062", "3", "2017-07-15 01:14:43", "207.46.13.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("60063", "3", "2017-07-15 02:11:39", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60064", "10", "2017-07-15 02:16:47", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60065", "3", "2017-07-15 03:07:20", "104.198.249.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("60066", "14", "2017-07-15 04:22:05", "24.69.158.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("60067", "12", "2017-07-15 04:43:50", "180.76.15.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("60068", "3", "2017-07-15 05:05:46", "35.184.210.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("60069", "14", "2017-07-15 05:20:39", "24.69.140.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("60070", "10", "2017-07-15 05:50:47", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60071", "8", "2017-07-15 06:21:10", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("60072", "10", "2017-07-15 06:30:03", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("60073", "3", "2017-07-15 08:10:44", "207.46.13.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("60074", "10", "2017-07-15 08:33:56", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60075", "9", "2017-07-15 08:55:55", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60076", "3", "2017-07-15 09:32:21", "164.132.162.153", "7");
INSERT INTO `wp_rg_form_view` VALUES("60077", "9", "2017-07-15 09:43:51", "180.76.15.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("60078", "8", "2017-07-15 09:52:09", "176.31.126.56", "9");
INSERT INTO `wp_rg_form_view` VALUES("60079", "14", "2017-07-15 09:52:15", "176.31.126.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("60080", "3", "2017-07-15 10:17:15", "180.76.15.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("60081", "10", "2017-07-15 10:25:26", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("60082", "8", "2017-07-15 11:48:43", "77.75.78.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("60083", "3", "2017-07-15 11:58:04", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60084", "6", "2017-07-15 11:58:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60085", "9", "2017-07-15 11:58:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60086", "10", "2017-07-15 11:58:07", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60087", "15", "2017-07-15 11:58:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60088", "10", "2017-07-15 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60089", "3", "2017-07-15 13:05:32", "157.55.39.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("60090", "5", "2017-07-15 13:33:41", "40.77.167.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("60091", "10", "2017-07-15 13:42:50", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("60092", "10", "2017-07-15 14:26:11", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60093", "3", "2017-07-15 14:48:25", "40.77.167.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60094", "10", "2017-07-15 15:15:19", "217.182.132.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("60095", "3", "2017-07-15 15:47:39", "180.76.15.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("60096", "10", "2017-07-15 16:08:38", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("60097", "3", "2017-07-15 17:31:01", "40.77.167.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60098", "14", "2017-07-15 17:40:03", "184.66.246.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("60099", "8", "2017-07-15 17:46:15", "207.46.13.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("60100", "10", "2017-07-15 18:01:02", "180.76.15.22", "6");
INSERT INTO `wp_rg_form_view` VALUES("60101", "3", "2017-07-15 18:07:31", "35.192.136.76", "28");
INSERT INTO `wp_rg_form_view` VALUES("60102", "8", "2017-07-15 18:34:18", "180.76.15.136", "3");
INSERT INTO `wp_rg_form_view` VALUES("60103", "6", "2017-07-15 18:57:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60104", "9", "2017-07-15 18:57:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60105", "15", "2017-07-15 18:57:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60106", "3", "2017-07-15 19:07:44", "180.76.15.14", "57");
INSERT INTO `wp_rg_form_view` VALUES("60107", "8", "2017-07-15 19:36:10", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("60108", "8", "2017-07-15 19:36:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60109", "6", "2017-07-15 19:36:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60110", "6", "2017-07-15 19:36:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60111", "9", "2017-07-15 19:36:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60112", "10", "2017-07-15 19:36:16", "52.88.109.3", "11");
INSERT INTO `wp_rg_form_view` VALUES("60113", "15", "2017-07-15 19:36:21", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60114", "7", "2017-07-15 20:14:18", "180.76.15.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("60115", "3", "2017-07-15 20:14:35", "157.55.39.250", "19");
INSERT INTO `wp_rg_form_view` VALUES("60116", "10", "2017-07-15 20:14:40", "157.55.39.250", "3");
INSERT INTO `wp_rg_form_view` VALUES("60117", "11", "2017-07-15 20:16:44", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60118", "9", "2017-07-15 20:17:09", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60119", "5", "2017-07-15 20:17:38", "40.77.167.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60120", "8", "2017-07-15 20:36:57", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60121", "3", "2017-07-15 21:00:15", "51.255.65.89", "26");
INSERT INTO `wp_rg_form_view` VALUES("60122", "14", "2017-07-15 21:29:13", "104.131.78.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("60123", "6", "2017-07-15 21:33:43", "104.131.78.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("60124", "10", "2017-07-15 21:35:59", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("60125", "8", "2017-07-15 21:36:19", "104.131.78.25", "59");
INSERT INTO `wp_rg_form_view` VALUES("60126", "9", "2017-07-15 21:50:20", "104.131.78.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("60127", "15", "2017-07-15 21:55:13", "104.131.78.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("60128", "8", "2017-07-15 22:00:25", "104.131.78.25", "140");
INSERT INTO `wp_rg_form_view` VALUES("60129", "3", "2017-07-15 22:01:04", "104.131.78.25", "52");
INSERT INTO `wp_rg_form_view` VALUES("60130", "10", "2017-07-15 22:05:40", "104.131.78.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("60131", "8", "2017-07-15 23:34:09", "77.75.79.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("60132", "10", "2017-07-16 00:27:00", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("60133", "10", "2017-07-16 01:09:09", "24.108.13.92", "7");
INSERT INTO `wp_rg_form_view` VALUES("60134", "3", "2017-07-16 01:12:37", "207.46.13.24", "30");
INSERT INTO `wp_rg_form_view` VALUES("60135", "15", "2017-07-16 01:52:17", "207.46.13.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("60136", "8", "2017-07-16 01:53:20", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60137", "6", "2017-07-16 01:53:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60138", "9", "2017-07-16 01:53:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60139", "10", "2017-07-16 02:53:03", "207.46.13.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("60140", "3", "2017-07-16 02:53:12", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60141", "8", "2017-07-16 03:30:50", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("60142", "3", "2017-07-16 03:30:50", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60143", "6", "2017-07-16 03:30:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60144", "9", "2017-07-16 03:30:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60145", "10", "2017-07-16 03:30:56", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60146", "15", "2017-07-16 03:30:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60147", "3", "2017-07-16 04:21:53", "77.75.78.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("60148", "10", "2017-07-16 06:06:36", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("60149", "11", "2017-07-16 06:27:52", "164.132.161.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("60150", "3", "2017-07-16 06:37:48", "164.132.161.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("60151", "3", "2017-07-16 07:38:04", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("60152", "10", "2017-07-16 10:29:46", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("60153", "3", "2017-07-16 11:03:45", "51.255.71.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("60154", "9", "2017-07-16 11:19:59", "180.76.15.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("60155", "10", "2017-07-16 12:00:23", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60156", "10", "2017-07-16 13:03:49", "164.132.161.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("60157", "9", "2017-07-16 13:08:21", "164.132.162.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("60158", "3", "2017-07-16 13:11:28", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("60159", "10", "2017-07-16 14:20:52", "72.14.199.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("60160", "8", "2017-07-16 15:19:22", "207.46.13.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("60161", "12", "2017-07-16 15:32:39", "217.182.132.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("60162", "8", "2017-07-16 16:21:54", "66.249.79.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("60163", "3", "2017-07-16 16:21:54", "66.249.79.135", "22");
INSERT INTO `wp_rg_form_view` VALUES("60164", "10", "2017-07-16 16:21:56", "66.249.79.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("60165", "15", "2017-07-16 16:21:58", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60166", "11", "2017-07-16 17:47:34", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60167", "3", "2017-07-16 17:50:38", "188.40.46.135", "9");
INSERT INTO `wp_rg_form_view` VALUES("60168", "10", "2017-07-16 17:52:37", "188.40.46.135", "13");
INSERT INTO `wp_rg_form_view` VALUES("60169", "8", "2017-07-16 17:59:29", "188.40.46.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("60170", "8", "2017-07-16 18:00:06", "188.40.46.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("60171", "3", "2017-07-16 18:01:11", "188.40.46.135", "48");
INSERT INTO `wp_rg_form_view` VALUES("60172", "10", "2017-07-16 18:03:01", "188.40.46.135", "12");
INSERT INTO `wp_rg_form_view` VALUES("60173", "15", "2017-07-16 18:03:26", "188.40.46.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("60174", "6", "2017-07-16 18:03:38", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60175", "9", "2017-07-16 18:03:39", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60176", "5", "2017-07-16 18:13:41", "194.187.170.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("60177", "8", "2017-07-16 19:48:15", "104.192.7.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("60178", "3", "2017-07-16 19:49:53", "104.192.7.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("60179", "7", "2017-07-16 20:19:32", "180.76.15.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("60180", "10", "2017-07-16 20:28:39", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("60181", "15", "2017-07-16 20:35:15", "68.180.228.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("60182", "8", "2017-07-16 20:50:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60183", "3", "2017-07-16 20:50:56", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60184", "6", "2017-07-16 20:50:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60185", "9", "2017-07-16 20:50:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60186", "3", "2017-07-16 21:00:33", "217.69.133.225", "2");
INSERT INTO `wp_rg_form_view` VALUES("60187", "14", "2017-07-16 21:26:17", "180.76.15.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("60188", "3", "2017-07-16 22:47:59", "164.132.161.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("60189", "3", "2017-07-16 23:44:46", "51.255.65.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("60190", "3", "2017-07-17 00:18:44", "164.132.161.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("60191", "10", "2017-07-17 01:24:43", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60192", "10", "2017-07-17 02:10:54", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60193", "14", "2017-07-17 02:25:18", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("60194", "10", "2017-07-17 03:51:55", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("60195", "11", "2017-07-17 03:58:14", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60196", "10", "2017-07-17 04:07:28", "66.249.79.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("60197", "3", "2017-07-17 05:20:36", "164.132.161.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("60198", "8", "2017-07-17 05:52:03", "75.157.174.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("60199", "3", "2017-07-17 06:15:01", "180.76.15.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("60200", "10", "2017-07-17 08:49:08", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60201", "3", "2017-07-17 09:01:22", "180.76.15.146", "3");
INSERT INTO `wp_rg_form_view` VALUES("60202", "8", "2017-07-17 09:25:03", "51.255.71.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("60203", "10", "2017-07-17 11:05:33", "66.249.79.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("60204", "8", "2017-07-17 11:16:09", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60205", "3", "2017-07-17 11:16:10", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60206", "6", "2017-07-17 11:16:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60207", "9", "2017-07-17 11:16:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60208", "15", "2017-07-17 11:16:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60209", "10", "2017-07-17 12:00:25", "184.66.129.248", "18");
INSERT INTO `wp_rg_form_view` VALUES("60210", "9", "2017-07-17 12:02:54", "180.76.15.146", "3");
INSERT INTO `wp_rg_form_view` VALUES("60211", "3", "2017-07-17 12:27:11", "46.229.168.75", "61");
INSERT INTO `wp_rg_form_view` VALUES("60212", "8", "2017-07-17 12:27:29", "46.229.168.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("60213", "6", "2017-07-17 12:27:29", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("60214", "15", "2017-07-17 12:27:34", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("60215", "3", "2017-07-17 13:39:13", "51.255.65.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("60216", "10", "2017-07-17 14:26:00", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60217", "8", "2017-07-17 14:43:24", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("60218", "14", "2017-07-17 14:43:29", "217.23.14.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("60219", "3", "2017-07-17 15:25:42", "207.46.13.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("60220", "10", "2017-07-17 15:50:30", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("60221", "10", "2017-07-17 16:26:54", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60222", "5", "2017-07-17 18:04:26", "164.132.161.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("60223", "10", "2017-07-17 18:24:02", "199.59.150.180", "7");
INSERT INTO `wp_rg_form_view` VALUES("60224", "8", "2017-07-17 18:37:42", "180.76.15.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("60225", "3", "2017-07-17 18:38:38", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60226", "6", "2017-07-17 18:38:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60227", "9", "2017-07-17 18:38:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60228", "15", "2017-07-17 18:38:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60229", "8", "2017-07-17 19:19:23", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60230", "3", "2017-07-17 19:19:24", "52.88.109.3", "55");
INSERT INTO `wp_rg_form_view` VALUES("60231", "6", "2017-07-17 19:19:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60232", "9", "2017-07-17 19:19:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60233", "10", "2017-07-17 19:19:33", "52.88.109.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("60234", "10", "2017-07-17 19:19:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60235", "15", "2017-07-17 19:19:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60236", "10", "2017-07-17 20:28:37", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60237", "15", "2017-07-17 20:43:02", "207.46.13.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("60238", "3", "2017-07-17 21:14:38", "207.46.13.24", "16");
INSERT INTO `wp_rg_form_view` VALUES("60239", "10", "2017-07-17 21:15:06", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60240", "11", "2017-07-17 21:16:28", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60241", "9", "2017-07-17 21:16:46", "157.55.39.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("60242", "8", "2017-07-17 21:46:58", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("60243", "10", "2017-07-17 22:29:21", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60244", "14", "2017-07-17 22:47:06", "104.129.4.32", "2");
INSERT INTO `wp_rg_form_view` VALUES("60245", "14", "2017-07-18 00:07:09", "70.67.111.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("60246", "10", "2017-07-18 00:30:09", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60247", "8", "2017-07-18 00:48:13", "77.75.76.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("60248", "3", "2017-07-18 00:53:06", "164.132.161.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("60249", "6", "2017-07-18 00:53:15", "217.182.132.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("60250", "3", "2017-07-18 01:22:39", "164.132.161.84", "29");
INSERT INTO `wp_rg_form_view` VALUES("60251", "8", "2017-07-18 01:44:08", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60252", "6", "2017-07-18 01:44:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60253", "9", "2017-07-18 01:44:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60254", "10", "2017-07-18 01:44:10", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60255", "15", "2017-07-18 01:44:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60256", "3", "2017-07-18 02:29:36", "217.182.132.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("60257", "10", "2017-07-18 02:31:01", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60258", "14", "2017-07-18 02:55:55", "184.66.255.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("60259", "14", "2017-07-18 03:05:09", "184.66.255.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("60260", "8", "2017-07-18 03:33:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60261", "3", "2017-07-18 03:33:28", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60262", "6", "2017-07-18 03:33:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60263", "9", "2017-07-18 03:33:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60264", "10", "2017-07-18 03:33:30", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60265", "15", "2017-07-18 03:33:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60266", "3", "2017-07-18 04:00:24", "180.76.15.150", "2");
INSERT INTO `wp_rg_form_view` VALUES("60267", "10", "2017-07-18 04:09:12", "72.14.199.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("60268", "3", "2017-07-18 05:19:11", "180.76.15.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("60269", "10", "2017-07-18 06:01:10", "151.80.27.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("60270", "3", "2017-07-18 06:41:15", "164.132.161.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("60271", "15", "2017-07-18 08:33:23", "180.76.15.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("60272", "10", "2017-07-18 08:33:28", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60273", "10", "2017-07-18 10:34:17", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60274", "10", "2017-07-18 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60275", "6", "2017-07-18 13:08:09", "180.76.15.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("60276", "5", "2017-07-18 13:41:31", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("60277", "3", "2017-07-18 13:42:47", "157.55.39.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("60278", "10", "2017-07-18 14:04:28", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("60279", "8", "2017-07-18 14:12:01", "164.132.161.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("60280", "3", "2017-07-18 14:46:46", "207.46.13.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("60281", "3", "2017-07-18 15:07:33", "180.76.15.21", "3");
INSERT INTO `wp_rg_form_view` VALUES("60282", "10", "2017-07-18 15:19:53", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("60283", "3", "2017-07-18 16:09:51", "137.74.207.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("60284", "10", "2017-07-18 16:26:59", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60285", "14", "2017-07-18 16:51:13", "75.154.237.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("60286", "10", "2017-07-18 17:00:01", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("60287", "8", "2017-07-18 17:08:57", "205.250.181.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("60288", "14", "2017-07-18 17:26:15", "184.66.255.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("60289", "3", "2017-07-18 17:36:17", "180.76.15.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("60290", "10", "2017-07-18 18:27:54", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60291", "10", "2017-07-18 20:28:43", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60292", "3", "2017-07-18 21:23:31", "217.182.132.32", "55");
INSERT INTO `wp_rg_form_view` VALUES("60293", "8", "2017-07-18 21:36:45", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60294", "6", "2017-07-18 21:36:46", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60295", "9", "2017-07-18 21:36:48", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60296", "10", "2017-07-18 21:36:51", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("60297", "15", "2017-07-18 21:36:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60298", "3", "2017-07-18 22:06:48", "180.76.15.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("60299", "10", "2017-07-18 22:29:31", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60300", "3", "2017-07-18 23:13:29", "63.243.252.153", "55");
INSERT INTO `wp_rg_form_view` VALUES("60301", "8", "2017-07-18 23:15:03", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60302", "6", "2017-07-18 23:15:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60303", "9", "2017-07-18 23:15:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60304", "10", "2017-07-18 23:15:07", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("60305", "15", "2017-07-18 23:15:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60306", "5", "2017-07-19 00:08:09", "77.75.78.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("60307", "14", "2017-07-19 00:09:09", "24.244.32.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("60308", "10", "2017-07-19 00:17:42", "217.182.132.64", "3");
INSERT INTO `wp_rg_form_view` VALUES("60309", "12", "2017-07-19 00:21:55", "207.46.13.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("60310", "3", "2017-07-19 00:43:47", "159.203.161.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("60311", "10", "2017-07-19 02:31:09", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60312", "10", "2017-07-19 03:51:08", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60313", "3", "2017-07-19 04:48:42", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60314", "10", "2017-07-19 05:11:54", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60315", "3", "2017-07-19 05:27:43", "180.76.15.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("60316", "10", "2017-07-19 06:19:49", "72.14.199.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("60317", "10", "2017-07-19 07:12:45", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60318", "3", "2017-07-19 08:08:38", "164.132.161.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("60319", "10", "2017-07-19 09:13:39", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60320", "3", "2017-07-19 10:28:31", "199.47.87.140", "63");
INSERT INTO `wp_rg_form_view` VALUES("60321", "8", "2017-07-19 10:28:53", "199.47.87.140", "11");
INSERT INTO `wp_rg_form_view` VALUES("60322", "6", "2017-07-19 10:28:54", "199.47.87.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("60323", "9", "2017-07-19 10:28:56", "199.47.87.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("60324", "10", "2017-07-19 10:28:57", "199.47.87.140", "12");
INSERT INTO `wp_rg_form_view` VALUES("60325", "15", "2017-07-19 10:28:59", "199.47.87.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("60326", "14", "2017-07-19 10:30:51", "199.47.87.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("60327", "10", "2017-07-19 11:14:28", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60328", "10", "2017-07-19 12:00:15", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("60329", "8", "2017-07-19 12:21:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60330", "3", "2017-07-19 12:21:07", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("60331", "6", "2017-07-19 12:21:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60332", "9", "2017-07-19 12:21:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60333", "15", "2017-07-19 12:21:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60334", "3", "2017-07-19 13:41:13", "207.46.13.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("60335", "10", "2017-07-19 14:25:56", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60336", "3", "2017-07-19 14:28:41", "96.50.52.144", "2");
INSERT INTO `wp_rg_form_view` VALUES("60337", "3", "2017-07-19 15:23:05", "180.76.15.140", "22");
INSERT INTO `wp_rg_form_view` VALUES("60338", "10", "2017-07-19 15:40:01", "157.55.39.198", "3");
INSERT INTO `wp_rg_form_view` VALUES("60339", "5", "2017-07-19 15:41:12", "157.55.39.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("60340", "11", "2017-07-19 15:42:29", "40.77.167.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("60341", "9", "2017-07-19 15:43:12", "40.77.167.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("60342", "10", "2017-07-19 16:26:44", "184.66.129.248", "11");
INSERT INTO `wp_rg_form_view` VALUES("60343", "8", "2017-07-19 16:53:33", "192.210.164.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("60344", "3", "2017-07-19 16:53:33", "192.210.164.77", "54");
INSERT INTO `wp_rg_form_view` VALUES("60345", "6", "2017-07-19 16:53:34", "192.210.164.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("60346", "9", "2017-07-19 16:53:35", "192.210.164.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("60347", "15", "2017-07-19 16:53:41", "192.210.164.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("60348", "3", "2017-07-19 17:21:14", "207.46.13.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("60349", "10", "2017-07-19 18:14:48", "72.14.199.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("60350", "3", "2017-07-19 18:43:19", "217.182.132.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("60351", "14", "2017-07-19 19:50:40", "189.122.176.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("60352", "8", "2017-07-19 19:55:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60353", "3", "2017-07-19 19:55:59", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60354", "6", "2017-07-19 19:56:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60355", "9", "2017-07-19 19:56:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60356", "10", "2017-07-19 19:56:04", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60357", "15", "2017-07-19 19:56:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60358", "8", "2017-07-19 20:10:30", "157.55.39.198", "6");
INSERT INTO `wp_rg_form_view` VALUES("60359", "3", "2017-07-19 20:10:30", "157.55.39.198", "82");
INSERT INTO `wp_rg_form_view` VALUES("60360", "6", "2017-07-19 20:10:31", "157.55.39.198", "3");
INSERT INTO `wp_rg_form_view` VALUES("60361", "9", "2017-07-19 20:10:33", "157.55.39.198", "3");
INSERT INTO `wp_rg_form_view` VALUES("60362", "10", "2017-07-19 20:10:36", "157.55.39.198", "18");
INSERT INTO `wp_rg_form_view` VALUES("60363", "15", "2017-07-19 20:10:42", "157.55.39.198", "3");
INSERT INTO `wp_rg_form_view` VALUES("60364", "14", "2017-07-19 21:17:37", "72.93.213.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("60365", "3", "2017-07-19 21:41:25", "180.76.15.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("60366", "10", "2017-07-19 22:12:16", "207.46.13.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("60367", "14", "2017-07-19 22:35:04", "193.201.224.225", "2");
INSERT INTO `wp_rg_form_view` VALUES("60368", "14", "2017-07-19 23:06:45", "206.87.160.235", "2");
INSERT INTO `wp_rg_form_view` VALUES("60369", "3", "2017-07-19 23:28:10", "157.55.39.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("60370", "10", "2017-07-19 23:41:29", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60371", "3", "2017-07-20 00:26:14", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60372", "10", "2017-07-20 01:42:18", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60373", "3", "2017-07-20 02:35:13", "24.69.138.197", "2");
INSERT INTO `wp_rg_form_view` VALUES("60374", "8", "2017-07-20 03:09:56", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60375", "3", "2017-07-20 03:09:57", "52.88.109.3", "55");
INSERT INTO `wp_rg_form_view` VALUES("60376", "6", "2017-07-20 03:09:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60377", "9", "2017-07-20 03:09:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60378", "10", "2017-07-20 03:09:59", "52.88.109.3", "11");
INSERT INTO `wp_rg_form_view` VALUES("60379", "15", "2017-07-20 03:10:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60380", "14", "2017-07-20 03:24:45", "64.180.20.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("60381", "8", "2017-07-20 04:51:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60382", "3", "2017-07-20 04:51:44", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60383", "6", "2017-07-20 04:51:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60384", "9", "2017-07-20 04:51:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60385", "10", "2017-07-20 04:51:51", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60386", "15", "2017-07-20 04:51:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60387", "3", "2017-07-20 05:11:23", "51.255.71.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("60388", "10", "2017-07-20 05:43:53", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60389", "14", "2017-07-20 05:52:17", "191.101.112.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("60390", "10", "2017-07-20 06:18:16", "164.132.161.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("60391", "3", "2017-07-20 07:33:42", "180.76.15.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("60392", "10", "2017-07-20 07:44:44", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60393", "8", "2017-07-20 08:27:10", "40.77.167.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("60394", "10", "2017-07-20 08:50:26", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("60395", "10", "2017-07-20 09:45:33", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60396", "8", "2017-07-20 11:04:25", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("60397", "3", "2017-07-20 11:06:17", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("60398", "10", "2017-07-20 11:46:27", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60399", "10", "2017-07-20 12:00:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60400", "3", "2017-07-20 12:15:24", "51.255.71.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("60401", "10", "2017-07-20 13:00:24", "66.249.79.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("60402", "10", "2017-07-20 14:26:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60403", "15", "2017-07-20 14:29:02", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("60404", "3", "2017-07-20 14:46:50", "180.76.15.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("60405", "10", "2017-07-20 15:12:26", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("60406", "3", "2017-07-20 15:18:02", "24.108.13.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60407", "14", "2017-07-20 15:36:09", "164.132.161.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("60408", "10", "2017-07-20 16:27:02", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60409", "3", "2017-07-20 17:19:39", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("60410", "8", "2017-07-20 17:20:03", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("60411", "3", "2017-07-20 18:06:52", "180.76.15.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("60412", "10", "2017-07-20 18:27:52", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60413", "3", "2017-07-20 19:28:58", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60414", "3", "2017-07-20 20:11:34", "157.55.39.198", "3");
INSERT INTO `wp_rg_form_view` VALUES("60415", "10", "2017-07-20 20:16:32", "180.76.15.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("60416", "8", "2017-07-20 20:20:12", "104.192.7.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60417", "10", "2017-07-20 21:11:08", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60418", "3", "2017-07-20 21:24:16", "217.182.132.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("60419", "3", "2017-07-20 22:58:26", "217.182.132.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("60420", "10", "2017-07-20 22:59:52", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("60421", "8", "2017-07-20 23:03:29", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60422", "3", "2017-07-20 23:03:29", "52.88.109.3", "54");
INSERT INTO `wp_rg_form_view` VALUES("60423", "6", "2017-07-20 23:03:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60424", "9", "2017-07-20 23:03:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60425", "10", "2017-07-20 23:03:32", "52.88.109.3", "11");
INSERT INTO `wp_rg_form_view` VALUES("60426", "15", "2017-07-20 23:03:34", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60427", "14", "2017-07-20 23:14:48", "89.33.71.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("60428", "8", "2017-07-21 00:47:46", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60429", "3", "2017-07-21 00:47:46", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60430", "6", "2017-07-21 00:47:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60431", "9", "2017-07-21 00:47:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60432", "10", "2017-07-21 00:47:49", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60433", "15", "2017-07-21 00:47:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60434", "3", "2017-07-21 01:06:25", "180.76.15.139", "3");
INSERT INTO `wp_rg_form_view` VALUES("60435", "10", "2017-07-21 01:20:27", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("60436", "8", "2017-07-21 02:13:06", "180.76.15.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("60437", "3", "2017-07-21 02:29:56", "51.255.65.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("60438", "10", "2017-07-21 02:48:13", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60439", "14", "2017-07-21 03:01:05", "139.167.11.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("60440", "10", "2017-07-21 06:41:24", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("60441", "3", "2017-07-21 06:54:23", "164.132.161.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("60442", "3", "2017-07-21 09:12:58", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("60443", "3", "2017-07-21 10:27:54", "207.46.13.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("60444", "3", "2017-07-21 11:20:43", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("60445", "10", "2017-07-21 12:00:22", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("60446", "8", "2017-07-21 12:07:47", "164.132.161.33", "3");
INSERT INTO `wp_rg_form_view` VALUES("60447", "3", "2017-07-21 12:17:15", "66.249.79.133", "27");
INSERT INTO `wp_rg_form_view` VALUES("60448", "6", "2017-07-21 12:17:16", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60449", "9", "2017-07-21 12:17:17", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60450", "15", "2017-07-21 12:17:20", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60451", "8", "2017-07-21 14:00:22", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60452", "3", "2017-07-21 14:00:22", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("60453", "6", "2017-07-21 14:00:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60454", "9", "2017-07-21 14:00:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60455", "10", "2017-07-21 14:00:25", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("60456", "15", "2017-07-21 14:00:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60457", "14", "2017-07-21 14:09:13", "207.46.13.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("60458", "3", "2017-07-21 15:10:34", "180.76.15.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("60459", "10", "2017-07-21 15:31:52", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("60460", "3", "2017-07-21 16:39:34", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("60461", "8", "2017-07-21 16:41:06", "40.77.167.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("60462", "7", "2017-07-21 16:53:53", "93.158.161.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("60463", "10", "2017-07-21 16:54:01", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("60464", "3", "2017-07-21 17:25:47", "51.255.65.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("60465", "8", "2017-07-21 17:59:29", "93.158.161.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("60466", "8", "2017-07-21 18:23:06", "114.38.147.34", "4");
INSERT INTO `wp_rg_form_view` VALUES("60467", "3", "2017-07-21 18:23:07", "114.38.147.34", "27");
INSERT INTO `wp_rg_form_view` VALUES("60468", "6", "2017-07-21 18:23:07", "114.38.147.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("60469", "9", "2017-07-21 18:23:08", "114.38.147.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("60470", "10", "2017-07-21 18:23:09", "114.38.147.34", "5");
INSERT INTO `wp_rg_form_view` VALUES("60471", "15", "2017-07-21 18:23:11", "114.38.147.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("60472", "14", "2017-07-21 18:31:43", "184.71.11.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("60473", "8", "2017-07-21 19:00:08", "68.180.228.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("60474", "10", "2017-07-21 19:06:05", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("60475", "10", "2017-07-21 20:52:11", "217.182.132.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("60476", "10", "2017-07-21 21:06:48", "217.182.132.83", "6");
INSERT INTO `wp_rg_form_view` VALUES("60477", "8", "2017-07-21 21:33:11", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60478", "3", "2017-07-21 21:33:12", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("60479", "6", "2017-07-21 21:33:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60480", "9", "2017-07-21 21:33:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60481", "15", "2017-07-21 21:33:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60482", "14", "2017-07-21 21:41:20", "189.100.55.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("60483", "3", "2017-07-21 22:01:08", "207.46.13.24", "56");
INSERT INTO `wp_rg_form_view` VALUES("60484", "10", "2017-07-21 22:06:24", "217.182.132.170", "11");
INSERT INTO `wp_rg_form_view` VALUES("60485", "8", "2017-07-21 22:11:48", "142.36.24.121", "5");
INSERT INTO `wp_rg_form_view` VALUES("60486", "6", "2017-07-21 22:18:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60487", "6", "2017-07-21 22:18:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60488", "9", "2017-07-21 22:18:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60489", "15", "2017-07-21 22:18:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60490", "10", "2017-07-21 23:19:43", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60491", "8", "2017-07-21 23:47:37", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60492", "14", "2017-07-22 00:12:44", "184.66.129.87", "4");
INSERT INTO `wp_rg_form_view` VALUES("60493", "3", "2017-07-22 00:23:04", "180.76.15.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("60494", "10", "2017-07-22 00:28:56", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("60495", "8", "2017-07-22 01:21:50", "207.46.13.107", "3");
INSERT INTO `wp_rg_form_view` VALUES("60496", "3", "2017-07-22 01:21:50", "207.46.13.107", "28");
INSERT INTO `wp_rg_form_view` VALUES("60497", "6", "2017-07-22 01:21:51", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60498", "9", "2017-07-22 01:21:52", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60499", "10", "2017-07-22 01:21:53", "207.46.13.107", "6");
INSERT INTO `wp_rg_form_view` VALUES("60500", "15", "2017-07-22 01:21:55", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60501", "14", "2017-07-22 01:52:57", "191.101.69.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("60502", "3", "2017-07-22 02:24:44", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60503", "8", "2017-07-22 04:43:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60504", "3", "2017-07-22 04:43:57", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60505", "6", "2017-07-22 04:43:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60506", "9", "2017-07-22 04:43:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60507", "10", "2017-07-22 04:43:59", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("60508", "15", "2017-07-22 04:44:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60509", "3", "2017-07-22 05:19:23", "66.249.79.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("60510", "10", "2017-07-22 06:12:04", "66.249.79.137", "6");
INSERT INTO `wp_rg_form_view` VALUES("60511", "8", "2017-07-22 06:20:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60512", "3", "2017-07-22 06:20:51", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("60513", "6", "2017-07-22 06:20:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60514", "9", "2017-07-22 06:20:53", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("60515", "15", "2017-07-22 06:20:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60516", "10", "2017-07-22 07:22:58", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60517", "3", "2017-07-22 08:35:30", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60518", "3", "2017-07-22 09:17:02", "46.229.168.80", "15");
INSERT INTO `wp_rg_form_view` VALUES("60519", "10", "2017-07-22 09:17:42", "46.229.168.76", "11");
INSERT INTO `wp_rg_form_view` VALUES("60520", "8", "2017-07-22 09:20:35", "46.229.168.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("60521", "3", "2017-07-22 10:00:05", "40.77.167.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("60522", "11", "2017-07-22 11:03:01", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60523", "3", "2017-07-22 11:06:43", "188.40.46.135", "58");
INSERT INTO `wp_rg_form_view` VALUES("60524", "10", "2017-07-22 11:08:44", "188.40.46.135", "24");
INSERT INTO `wp_rg_form_view` VALUES("60525", "8", "2017-07-22 11:17:32", "188.40.46.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("60526", "15", "2017-07-22 11:23:57", "188.40.46.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("60527", "6", "2017-07-22 11:24:17", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60528", "9", "2017-07-22 11:24:18", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60529", "10", "2017-07-22 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60530", "3", "2017-07-22 12:09:48", "138.197.7.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("60531", "8", "2017-07-22 12:54:38", "74.208.251.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("60532", "3", "2017-07-22 13:06:13", "207.46.13.188", "17");
INSERT INTO `wp_rg_form_view` VALUES("60533", "10", "2017-07-22 13:06:40", "157.55.39.41", "7");
INSERT INTO `wp_rg_form_view` VALUES("60534", "11", "2017-07-22 13:07:50", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("60535", "5", "2017-07-22 13:07:55", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60536", "9", "2017-07-22 13:08:26", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("60537", "8", "2017-07-22 13:34:59", "217.182.132.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("60538", "15", "2017-07-22 13:35:00", "217.182.132.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("60539", "3", "2017-07-22 14:04:21", "180.76.15.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("60540", "10", "2017-07-22 14:26:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60541", "3", "2017-07-22 15:07:01", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60542", "10", "2017-07-22 15:31:38", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("60543", "10", "2017-07-22 16:27:09", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60544", "14", "2017-07-22 16:55:52", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("60545", "3", "2017-07-22 17:29:13", "180.76.15.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("60546", "10", "2017-07-22 18:28:01", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60547", "3", "2017-07-22 18:41:28", "217.182.132.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("60548", "6", "2017-07-22 19:33:22", "47.88.18.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("60549", "10", "2017-07-22 19:50:13", "180.76.15.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("60550", "10", "2017-07-22 20:28:51", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60551", "8", "2017-07-22 21:09:15", "184.69.106.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("60552", "3", "2017-07-22 22:13:16", "77.75.76.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("60553", "10", "2017-07-22 22:29:35", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60554", "3", "2017-07-22 23:18:14", "40.77.167.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("60555", "8", "2017-07-23 00:07:33", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60556", "3", "2017-07-23 00:07:34", "52.88.109.3", "54");
INSERT INTO `wp_rg_form_view` VALUES("60557", "6", "2017-07-23 00:07:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60558", "9", "2017-07-23 00:07:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60559", "10", "2017-07-23 00:07:41", "52.88.109.3", "13");
INSERT INTO `wp_rg_form_view` VALUES("60560", "15", "2017-07-23 00:07:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60561", "8", "2017-07-23 01:10:55", "77.75.79.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("60562", "3", "2017-07-23 01:47:47", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60563", "6", "2017-07-23 01:47:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60564", "9", "2017-07-23 01:47:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60565", "10", "2017-07-23 01:47:54", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60566", "15", "2017-07-23 01:48:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60567", "8", "2017-07-23 02:28:54", "66.249.66.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("60568", "3", "2017-07-23 02:28:55", "66.249.66.29", "27");
INSERT INTO `wp_rg_form_view` VALUES("60569", "6", "2017-07-23 02:28:57", "66.249.66.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("60570", "9", "2017-07-23 02:28:58", "66.249.66.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("60571", "10", "2017-07-23 02:29:00", "66.249.66.29", "5");
INSERT INTO `wp_rg_form_view` VALUES("60572", "15", "2017-07-23 02:29:02", "66.249.66.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("60573", "10", "2017-07-23 03:40:59", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60574", "14", "2017-07-23 04:20:08", "201.53.251.208", "1");
INSERT INTO `wp_rg_form_view` VALUES("60575", "8", "2017-07-23 04:44:17", "51.255.65.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("60576", "15", "2017-07-23 05:12:27", "207.46.13.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("60577", "8", "2017-07-23 05:13:11", "164.132.161.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("60578", "3", "2017-07-23 05:13:11", "164.132.161.4", "28");
INSERT INTO `wp_rg_form_view` VALUES("60579", "6", "2017-07-23 05:13:11", "164.132.161.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("60580", "9", "2017-07-23 05:13:13", "164.132.161.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("60581", "10", "2017-07-23 05:13:14", "164.132.161.4", "6");
INSERT INTO `wp_rg_form_view` VALUES("60582", "10", "2017-07-23 06:19:56", "51.255.66.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("60583", "3", "2017-07-23 06:43:09", "173.44.165.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("60584", "15", "2017-07-23 06:55:36", "217.182.132.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("60585", "10", "2017-07-23 07:42:33", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60586", "10", "2017-07-23 08:56:53", "180.76.15.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("60587", "3", "2017-07-23 09:10:35", "51.255.65.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("60588", "3", "2017-07-23 10:36:57", "180.76.15.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("60589", "10", "2017-07-23 12:00:21", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60590", "3", "2017-07-23 12:16:52", "180.76.15.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("60591", "3", "2017-07-23 13:23:36", "180.76.15.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("60592", "10", "2017-07-23 13:34:27", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60593", "6", "2017-07-23 13:56:54", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("60594", "10", "2017-07-23 14:25:36", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60595", "8", "2017-07-23 14:47:27", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("60596", "14", "2017-07-23 14:59:58", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("60597", "8", "2017-07-23 15:03:43", "180.76.15.139", "9");
INSERT INTO `wp_rg_form_view` VALUES("60598", "3", "2017-07-23 15:04:59", "52.88.109.3", "54");
INSERT INTO `wp_rg_form_view` VALUES("60599", "6", "2017-07-23 15:05:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60600", "9", "2017-07-23 15:05:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60601", "10", "2017-07-23 15:05:06", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("60602", "15", "2017-07-23 15:05:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60603", "10", "2017-07-23 16:52:01", "217.182.132.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("60604", "8", "2017-07-23 17:02:14", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("60605", "3", "2017-07-23 17:04:28", "157.55.39.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("60606", "10", "2017-07-23 17:36:30", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("60607", "15", "2017-07-23 18:28:11", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60608", "3", "2017-07-23 19:11:20", "217.182.132.187", "33");
INSERT INTO `wp_rg_form_view` VALUES("60609", "8", "2017-07-23 19:27:47", "207.46.13.107", "12");
INSERT INTO `wp_rg_form_view` VALUES("60610", "6", "2017-07-23 19:27:48", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60611", "9", "2017-07-23 19:27:49", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60612", "10", "2017-07-23 19:27:50", "207.46.13.107", "5");
INSERT INTO `wp_rg_form_view` VALUES("60613", "15", "2017-07-23 19:27:52", "207.46.13.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("60614", "14", "2017-07-23 19:36:32", "207.255.192.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("60615", "10", "2017-07-23 20:42:37", "217.182.132.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("60616", "3", "2017-07-23 20:59:01", "47.88.19.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("60617", "10", "2017-07-23 21:06:25", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60618", "3", "2017-07-23 21:35:16", "51.255.65.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("60619", "3", "2017-07-23 22:26:22", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("60620", "6", "2017-07-23 22:26:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60621", "9", "2017-07-23 22:26:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60622", "8", "2017-07-23 22:26:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60623", "10", "2017-07-23 22:26:25", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60624", "15", "2017-07-23 22:26:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60625", "3", "2017-07-23 23:05:45", "52.88.109.3", "54");
INSERT INTO `wp_rg_form_view` VALUES("60626", "6", "2017-07-23 23:05:46", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60627", "9", "2017-07-23 23:05:48", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60628", "8", "2017-07-23 23:05:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60629", "10", "2017-07-23 23:05:51", "52.88.109.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("60630", "15", "2017-07-23 23:05:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60631", "3", "2017-07-24 00:15:43", "217.182.132.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("60632", "14", "2017-07-24 00:18:33", "193.17.219.81", "3");
INSERT INTO `wp_rg_form_view` VALUES("60633", "10", "2017-07-24 00:18:46", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60634", "3", "2017-07-24 01:22:22", "51.255.65.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("60635", "3", "2017-07-24 02:13:27", "180.76.15.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("60636", "10", "2017-07-24 02:44:57", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60637", "3", "2017-07-24 03:27:04", "70.66.221.147", "3");
INSERT INTO `wp_rg_form_view` VALUES("60638", "8", "2017-07-24 04:42:38", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60639", "3", "2017-07-24 04:55:48", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("60640", "3", "2017-07-24 05:03:05", "207.46.13.58", "29");
INSERT INTO `wp_rg_form_view` VALUES("60641", "6", "2017-07-24 05:27:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60642", "9", "2017-07-24 05:27:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60643", "8", "2017-07-24 05:27:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60644", "10", "2017-07-24 05:27:35", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60645", "15", "2017-07-24 05:27:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60646", "14", "2017-07-24 05:42:39", "24.68.154.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("60647", "15", "2017-07-24 06:51:40", "207.46.13.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("60648", "3", "2017-07-24 07:03:12", "217.182.132.66", "30");
INSERT INTO `wp_rg_form_view` VALUES("60649", "6", "2017-07-24 07:06:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60650", "9", "2017-07-24 07:06:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60651", "8", "2017-07-24 07:06:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60652", "10", "2017-07-24 07:06:26", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("60653", "15", "2017-07-24 07:06:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60654", "5", "2017-07-24 08:24:59", "77.75.78.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("60655", "10", "2017-07-24 08:47:23", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60656", "3", "2017-07-24 09:03:17", "180.76.15.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("60657", "11", "2017-07-24 10:06:04", "217.182.132.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("60658", "3", "2017-07-24 11:13:53", "157.55.39.213", "2");
INSERT INTO `wp_rg_form_view` VALUES("60659", "10", "2017-07-24 12:00:15", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60660", "9", "2017-07-24 12:14:52", "51.255.65.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("60661", "8", "2017-07-24 13:54:11", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("60662", "3", "2017-07-24 14:10:27", "51.255.65.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("60663", "10", "2017-07-24 14:26:17", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60664", "10", "2017-07-24 15:04:27", "217.182.132.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("60665", "3", "2017-07-24 15:34:11", "180.76.15.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("60666", "10", "2017-07-24 16:13:47", "207.46.13.58", "3");
INSERT INTO `wp_rg_form_view` VALUES("60667", "3", "2017-07-24 16:54:58", "164.132.161.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("60668", "3", "2017-07-24 17:23:05", "164.132.162.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("60669", "10", "2017-07-24 17:25:34", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60670", "12", "2017-07-24 17:37:15", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("60671", "14", "2017-07-24 18:21:08", "24.68.117.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("60672", "3", "2017-07-24 18:30:09", "51.255.71.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("60673", "10", "2017-07-24 19:17:04", "51.255.71.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("60674", "3", "2017-07-24 19:52:59", "180.76.15.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("60675", "10", "2017-07-24 20:06:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60676", "10", "2017-07-24 22:07:03", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60677", "12", "2017-07-24 22:51:30", "51.255.65.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("60678", "11", "2017-07-24 23:43:02", "79.142.68.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("60679", "3", "2017-07-25 01:16:04", "40.77.167.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("60680", "10", "2017-07-25 02:08:44", "184.66.129.248", "5");
INSERT INTO `wp_rg_form_view` VALUES("60681", "3", "2017-07-25 02:49:23", "157.55.39.213", "9");
INSERT INTO `wp_rg_form_view` VALUES("60682", "15", "2017-07-25 02:50:44", "207.46.13.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("60683", "6", "2017-07-25 02:50:53", "207.46.13.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("60684", "3", "2017-07-25 03:46:34", "164.132.162.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("60685", "10", "2017-07-25 04:09:32", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60686", "3", "2017-07-25 05:51:52", "184.66.255.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("60687", "10", "2017-07-25 08:11:09", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60688", "14", "2017-07-25 08:14:27", "24.108.169.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("60689", "8", "2017-07-25 08:26:14", "180.76.15.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("60690", "10", "2017-07-25 10:02:54", "66.249.91.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("60691", "3", "2017-07-25 10:17:28", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("60692", "3", "2017-07-25 11:20:52", "207.46.13.58", "137");
INSERT INTO `wp_rg_form_view` VALUES("60693", "6", "2017-07-25 11:57:41", "212.129.21.56", "5");
INSERT INTO `wp_rg_form_view` VALUES("60694", "9", "2017-07-25 11:57:42", "212.129.21.56", "5");
INSERT INTO `wp_rg_form_view` VALUES("60695", "8", "2017-07-25 11:57:42", "212.129.21.56", "5");
INSERT INTO `wp_rg_form_view` VALUES("60696", "10", "2017-07-25 11:57:43", "212.129.21.56", "25");
INSERT INTO `wp_rg_form_view` VALUES("60697", "15", "2017-07-25 11:57:45", "212.129.21.56", "5");
INSERT INTO `wp_rg_form_view` VALUES("60698", "10", "2017-07-25 12:00:09", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60699", "3", "2017-07-25 12:17:04", "180.76.15.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("60700", "10", "2017-07-25 13:46:46", "66.249.69.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("60701", "3", "2017-07-25 13:57:05", "180.76.15.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("60702", "3", "2017-07-25 14:04:04", "207.46.13.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("60703", "10", "2017-07-25 14:26:09", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60704", "3", "2017-07-25 15:03:45", "180.76.15.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("60705", "3", "2017-07-25 16:10:25", "180.76.15.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("60706", "3", "2017-07-25 17:17:16", "180.76.15.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("60707", "3", "2017-07-25 18:23:51", "180.76.15.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("60708", "10", "2017-07-25 19:18:40", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("60709", "3", "2017-07-25 20:07:09", "207.46.13.131", "28");
INSERT INTO `wp_rg_form_view` VALUES("60710", "6", "2017-07-25 20:07:10", "207.46.13.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("60711", "9", "2017-07-25 20:07:11", "207.46.13.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("60712", "8", "2017-07-25 20:07:12", "207.46.13.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("60713", "10", "2017-07-25 20:07:13", "207.46.13.131", "7");
INSERT INTO `wp_rg_form_view` VALUES("60714", "15", "2017-07-25 20:07:15", "207.46.13.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("60715", "3", "2017-07-25 21:32:06", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60716", "6", "2017-07-25 21:32:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60717", "9", "2017-07-25 21:32:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60718", "8", "2017-07-25 21:32:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60719", "10", "2017-07-25 21:32:09", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60720", "15", "2017-07-25 21:32:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60721", "10", "2017-07-25 22:29:35", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60722", "3", "2017-07-26 00:33:12", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60723", "6", "2017-07-26 00:33:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60724", "9", "2017-07-26 00:33:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60725", "8", "2017-07-26 00:33:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60726", "10", "2017-07-26 00:33:15", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60727", "15", "2017-07-26 00:33:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60728", "10", "2017-07-26 02:09:53", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60729", "3", "2017-07-26 03:39:15", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60730", "6", "2017-07-26 03:39:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60731", "9", "2017-07-26 03:39:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60732", "8", "2017-07-26 03:39:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60733", "10", "2017-07-26 03:39:18", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60734", "15", "2017-07-26 03:39:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60735", "14", "2017-07-26 03:47:34", "216.232.194.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("60736", "10", "2017-07-26 04:18:33", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60737", "14", "2017-07-26 06:04:22", "62.210.79.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("60738", "3", "2017-07-26 06:04:27", "172.245.134.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("60739", "10", "2017-07-26 06:46:28", "51.255.65.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("60740", "10", "2017-07-26 08:20:09", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60741", "10", "2017-07-26 10:26:06", "164.132.161.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("60742", "3", "2017-07-26 11:11:52", "217.182.132.17", "6");
INSERT INTO `wp_rg_form_view` VALUES("60743", "10", "2017-07-26 11:12:31", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("60744", "10", "2017-07-26 12:00:09", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("60745", "3", "2017-07-26 12:13:30", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("60746", "6", "2017-07-26 13:08:59", "51.255.65.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("60747", "3", "2017-07-26 13:24:34", "217.182.132.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("60748", "3", "2017-07-26 14:12:20", "46.161.9.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("60749", "10", "2017-07-26 14:21:16", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60750", "3", "2017-07-26 16:09:00", "83.55.34.210", "3");
INSERT INTO `wp_rg_form_view` VALUES("60751", "10", "2017-07-26 16:23:28", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60752", "3", "2017-07-26 17:17:54", "81.209.177.189", "291");
INSERT INTO `wp_rg_form_view` VALUES("60753", "8", "2017-07-26 17:21:25", "81.209.177.189", "12");
INSERT INTO `wp_rg_form_view` VALUES("60754", "10", "2017-07-26 17:21:25", "81.209.177.189", "74");
INSERT INTO `wp_rg_form_view` VALUES("60755", "15", "2017-07-26 17:21:27", "81.209.177.189", "10");
INSERT INTO `wp_rg_form_view` VALUES("60756", "14", "2017-07-26 17:27:30", "81.209.177.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("60757", "6", "2017-07-26 17:28:24", "81.209.177.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("60758", "9", "2017-07-26 17:28:25", "81.209.177.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("60759", "8", "2017-07-26 18:00:09", "81.209.177.136", "14");
INSERT INTO `wp_rg_form_view` VALUES("60760", "3", "2017-07-26 18:00:21", "81.209.177.136", "218");
INSERT INTO `wp_rg_form_view` VALUES("60761", "10", "2017-07-26 18:01:12", "81.209.177.136", "24");
INSERT INTO `wp_rg_form_view` VALUES("60762", "6", "2017-07-26 18:02:00", "81.209.177.189", "8");
INSERT INTO `wp_rg_form_view` VALUES("60763", "9", "2017-07-26 18:02:00", "81.209.177.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("60764", "15", "2017-07-26 18:05:13", "81.209.177.189", "7");
INSERT INTO `wp_rg_form_view` VALUES("60765", "3", "2017-07-26 19:10:02", "176.31.231.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("60766", "10", "2017-07-26 19:47:45", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60767", "14", "2017-07-26 21:03:47", "96.50.19.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("60768", "3", "2017-07-26 21:17:50", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60769", "6", "2017-07-26 21:17:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60770", "9", "2017-07-26 21:17:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60771", "8", "2017-07-26 21:17:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60772", "10", "2017-07-26 21:17:54", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60773", "15", "2017-07-26 21:17:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60774", "10", "2017-07-26 22:20:13", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60775", "3", "2017-07-26 23:20:33", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("60776", "14", "2017-07-26 23:26:20", "198.46.210.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("60777", "10", "2017-07-26 23:28:17", "66.249.89.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("60778", "10", "2017-07-27 00:14:41", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("60779", "3", "2017-07-27 00:19:29", "51.255.65.51", "31");
INSERT INTO `wp_rg_form_view` VALUES("60780", "6", "2017-07-27 00:48:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60781", "9", "2017-07-27 00:48:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60782", "8", "2017-07-27 00:48:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60783", "15", "2017-07-27 00:48:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60784", "10", "2017-07-27 01:27:09", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("60785", "3", "2017-07-27 01:33:53", "180.76.15.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("60786", "12", "2017-07-27 03:13:49", "180.76.15.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("60787", "3", "2017-07-27 03:30:57", "51.255.71.112", "28");
INSERT INTO `wp_rg_form_view` VALUES("60788", "6", "2017-07-27 03:51:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60789", "9", "2017-07-27 03:51:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60790", "8", "2017-07-27 03:51:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60791", "10", "2017-07-27 03:51:54", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60792", "15", "2017-07-27 03:51:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60793", "3", "2017-07-27 04:20:25", "51.255.65.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("60794", "3", "2017-07-27 05:43:53", "46.229.168.69", "95");
INSERT INTO `wp_rg_form_view` VALUES("60795", "10", "2017-07-27 05:45:25", "46.229.168.74", "28");
INSERT INTO `wp_rg_form_view` VALUES("60796", "6", "2017-07-27 05:49:02", "46.229.168.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("60797", "9", "2017-07-27 05:50:57", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("60798", "8", "2017-07-27 05:50:59", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("60799", "15", "2017-07-27 05:51:04", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("60800", "11", "2017-07-27 05:58:43", "46.229.168.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("60801", "15", "2017-07-27 06:12:29", "66.249.64.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("60802", "3", "2017-07-27 06:16:42", "66.249.64.83", "31");
INSERT INTO `wp_rg_form_view` VALUES("60803", "10", "2017-07-27 06:28:19", "217.182.132.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("60804", "14", "2017-07-27 06:30:19", "24.68.116.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("60805", "6", "2017-07-27 06:55:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60806", "9", "2017-07-27 06:55:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60807", "8", "2017-07-27 06:55:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60808", "14", "2017-07-27 07:21:09", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("60809", "10", "2017-07-27 08:24:17", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60810", "10", "2017-07-27 09:37:13", "207.46.13.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("60811", "6", "2017-07-27 09:54:08", "217.182.132.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("60812", "3", "2017-07-27 10:03:52", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("60813", "6", "2017-07-27 10:03:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60814", "9", "2017-07-27 10:03:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60815", "8", "2017-07-27 10:03:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60816", "10", "2017-07-27 10:03:55", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60817", "15", "2017-07-27 10:03:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60818", "3", "2017-07-27 11:03:11", "104.192.7.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("60819", "6", "2017-07-27 11:56:32", "157.55.39.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("60820", "10", "2017-07-27 12:00:03", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60821", "3", "2017-07-27 12:01:14", "217.182.132.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("60822", "3", "2017-07-27 13:14:26", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60823", "6", "2017-07-27 13:14:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60824", "9", "2017-07-27 13:14:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60825", "8", "2017-07-27 13:14:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60826", "10", "2017-07-27 13:14:29", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("60827", "15", "2017-07-27 13:14:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60828", "10", "2017-07-27 14:25:52", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60829", "10", "2017-07-27 15:32:52", "66.249.89.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("60830", "14", "2017-07-27 15:51:15", "66.183.174.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60831", "3", "2017-07-27 15:51:55", "217.182.132.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("60832", "3", "2017-07-27 16:00:26", "207.46.13.50", "29");
INSERT INTO `wp_rg_form_view` VALUES("60833", "10", "2017-07-27 16:26:38", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("60834", "6", "2017-07-27 16:33:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60835", "9", "2017-07-27 16:33:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60836", "8", "2017-07-27 16:33:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60837", "15", "2017-07-27 16:33:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60838", "3", "2017-07-27 17:11:18", "24.108.168.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("60839", "3", "2017-07-27 18:09:51", "66.249.64.85", "2");
INSERT INTO `wp_rg_form_view` VALUES("60840", "3", "2017-07-27 19:23:31", "154.5.209.143", "28");
INSERT INTO `wp_rg_form_view` VALUES("60841", "8", "2017-07-27 19:24:10", "154.5.209.143", "5");
INSERT INTO `wp_rg_form_view` VALUES("60842", "6", "2017-07-27 19:43:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60843", "9", "2017-07-27 19:43:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60844", "10", "2017-07-27 19:43:54", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("60845", "15", "2017-07-27 19:43:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60846", "8", "2017-07-27 20:23:56", "184.66.49.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("60847", "10", "2017-07-27 20:28:17", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60848", "3", "2017-07-27 20:52:07", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("60849", "3", "2017-07-27 21:33:39", "180.76.15.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("60850", "10", "2017-07-27 21:39:57", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60851", "3", "2017-07-27 22:07:02", "180.76.15.17", "30");
INSERT INTO `wp_rg_form_view` VALUES("60852", "16", "2017-07-27 22:19:46", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("60853", "8", "2017-07-27 22:38:17", "66.249.79.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("60854", "6", "2017-07-27 22:46:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60855", "9", "2017-07-27 22:46:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60856", "10", "2017-07-27 22:46:31", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60857", "15", "2017-07-27 22:46:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60858", "9", "2017-07-27 23:13:39", "180.76.15.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("60859", "3", "2017-07-27 23:47:28", "207.46.13.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("60860", "14", "2017-07-27 23:54:00", "96.50.19.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("60861", "10", "2017-07-27 23:58:28", "157.55.39.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("60862", "10", "2017-07-28 00:10:16", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60863", "14", "2017-07-28 00:18:04", "96.50.19.46", "3");
INSERT INTO `wp_rg_form_view` VALUES("60864", "3", "2017-07-28 01:56:01", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("60865", "3", "2017-07-28 02:20:14", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("60866", "6", "2017-07-28 02:20:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60867", "9", "2017-07-28 02:20:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60868", "8", "2017-07-28 02:20:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60869", "10", "2017-07-28 02:20:16", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60870", "15", "2017-07-28 02:20:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60871", "5", "2017-07-28 03:35:28", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("60872", "11", "2017-07-28 03:38:23", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("60873", "7", "2017-07-28 03:38:42", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("60874", "3", "2017-07-28 03:40:05", "109.169.29.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("60875", "3", "2017-07-28 04:15:59", "180.76.15.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("60876", "10", "2017-07-28 04:51:30", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("60877", "3", "2017-07-28 05:34:16", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60878", "6", "2017-07-28 05:34:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60879", "9", "2017-07-28 05:34:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60880", "8", "2017-07-28 05:34:18", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60881", "10", "2017-07-28 05:34:19", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60882", "15", "2017-07-28 05:34:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60883", "3", "2017-07-28 06:50:44", "51.255.71.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("60884", "10", "2017-07-28 08:13:34", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("60885", "3", "2017-07-28 08:22:45", "217.182.132.20", "29");
INSERT INTO `wp_rg_form_view` VALUES("60886", "6", "2017-07-28 08:44:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60887", "9", "2017-07-28 08:44:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60888", "8", "2017-07-28 08:44:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60889", "15", "2017-07-28 08:44:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60890", "16", "2017-07-28 09:50:35", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("60891", "10", "2017-07-28 10:29:32", "51.255.65.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("60892", "3", "2017-07-28 11:03:24", "66.249.79.137", "28");
INSERT INTO `wp_rg_form_view` VALUES("60893", "10", "2017-07-28 11:42:40", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("60894", "6", "2017-07-28 11:54:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60895", "9", "2017-07-28 11:54:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60896", "8", "2017-07-28 11:54:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60897", "15", "2017-07-28 11:54:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60898", "10", "2017-07-28 12:00:21", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60899", "3", "2017-07-28 12:38:29", "185.93.182.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("60900", "3", "2017-07-28 13:03:52", "107.174.239.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("60901", "14", "2017-07-28 13:13:15", "51.255.65.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("60902", "14", "2017-07-28 14:48:36", "24.108.12.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("60903", "3", "2017-07-28 15:05:43", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60904", "6", "2017-07-28 15:05:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60905", "9", "2017-07-28 15:05:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60906", "8", "2017-07-28 15:05:48", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60907", "10", "2017-07-28 15:05:48", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60908", "15", "2017-07-28 15:05:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60909", "3", "2017-07-28 16:05:50", "37.49.224.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("60910", "8", "2017-07-28 16:06:02", "37.49.224.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60911", "16", "2017-07-28 16:41:38", "68.180.228.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("60912", "8", "2017-07-28 17:15:47", "40.77.167.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("60913", "3", "2017-07-28 17:29:44", "157.55.39.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("60914", "3", "2017-07-28 18:19:16", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("60915", "6", "2017-07-28 18:19:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60916", "9", "2017-07-28 18:19:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60917", "8", "2017-07-28 18:19:18", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60918", "10", "2017-07-28 18:19:18", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("60919", "15", "2017-07-28 18:19:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60920", "10", "2017-07-28 19:16:22", "77.75.76.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("60921", "3", "2017-07-28 19:33:51", "168.235.195.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("60922", "10", "2017-07-28 20:15:40", "72.14.199.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("60923", "3", "2017-07-28 20:36:47", "142.104.35.60", "8");
INSERT INTO `wp_rg_form_view` VALUES("60924", "10", "2017-07-28 21:04:05", "157.55.39.44", "7");
INSERT INTO `wp_rg_form_view` VALUES("60925", "3", "2017-07-28 21:04:09", "157.55.39.44", "31");
INSERT INTO `wp_rg_form_view` VALUES("60926", "6", "2017-07-28 21:21:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60927", "9", "2017-07-28 21:21:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60928", "8", "2017-07-28 21:21:13", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60929", "15", "2017-07-28 21:21:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60930", "3", "2017-07-28 22:14:21", "51.255.65.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("60931", "14", "2017-07-28 22:33:05", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("60932", "10", "2017-07-28 22:42:36", "199.16.157.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("60933", "11", "2017-07-28 22:55:51", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("60934", "3", "2017-07-28 23:01:02", "180.76.15.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("60935", "3", "2017-07-29 00:00:52", "51.255.50.158", "28");
INSERT INTO `wp_rg_form_view` VALUES("60936", "8", "2017-07-29 00:01:04", "51.255.50.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("60937", "10", "2017-07-29 00:29:52", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("60938", "6", "2017-07-29 00:30:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60939", "9", "2017-07-29 00:30:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60940", "15", "2017-07-29 00:30:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60941", "3", "2017-07-29 01:27:18", "47.88.7.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("60942", "8", "2017-07-29 02:51:29", "164.132.162.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("60943", "3", "2017-07-29 03:05:13", "164.132.162.157", "28");
INSERT INTO `wp_rg_form_view` VALUES("60944", "6", "2017-07-29 03:42:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60945", "9", "2017-07-29 03:42:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60946", "8", "2017-07-29 03:42:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60947", "10", "2017-07-29 03:42:36", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60948", "15", "2017-07-29 03:42:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60949", "10", "2017-07-29 04:53:34", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("60950", "5", "2017-07-29 04:56:00", "77.75.77.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("60951", "3", "2017-07-29 05:05:35", "180.76.15.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("60952", "16", "2017-07-29 05:15:21", "68.180.230.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("60953", "3", "2017-07-29 06:32:30", "207.46.13.184", "29");
INSERT INTO `wp_rg_form_view` VALUES("60954", "6", "2017-07-29 06:53:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60955", "9", "2017-07-29 06:53:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60956", "8", "2017-07-29 06:53:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60957", "10", "2017-07-29 06:53:35", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60958", "15", "2017-07-29 06:53:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60959", "10", "2017-07-29 07:06:23", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("60960", "10", "2017-07-29 08:33:16", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60961", "10", "2017-07-29 09:14:08", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("60962", "3", "2017-07-29 09:57:45", "88.198.55.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("60963", "3", "2017-07-29 10:01:39", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("60964", "6", "2017-07-29 10:01:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60965", "9", "2017-07-29 10:01:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60966", "8", "2017-07-29 10:01:42", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60967", "10", "2017-07-29 10:01:44", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60968", "15", "2017-07-29 10:01:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60969", "14", "2017-07-29 11:00:20", "5.39.85.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("60970", "3", "2017-07-29 11:00:34", "5.39.85.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("60971", "10", "2017-07-29 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("60972", "3", "2017-07-29 12:18:55", "180.76.15.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("60973", "5", "2017-07-29 12:25:25", "207.46.13.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("60974", "3", "2017-07-29 13:01:32", "40.77.167.147", "57");
INSERT INTO `wp_rg_form_view` VALUES("60975", "6", "2017-07-29 13:04:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60976", "9", "2017-07-29 13:04:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60977", "8", "2017-07-29 13:04:56", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("60978", "10", "2017-07-29 13:04:57", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("60979", "15", "2017-07-29 13:04:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60980", "10", "2017-07-29 14:25:52", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("60981", "3", "2017-07-29 16:04:49", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60982", "6", "2017-07-29 16:04:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60983", "9", "2017-07-29 16:04:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60984", "8", "2017-07-29 16:04:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60985", "10", "2017-07-29 16:04:52", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60986", "15", "2017-07-29 16:04:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60987", "14", "2017-07-29 16:35:51", "23.94.229.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("60988", "3", "2017-07-29 17:56:29", "164.132.161.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("60989", "3", "2017-07-29 19:07:28", "157.55.39.252", "28");
INSERT INTO `wp_rg_form_view` VALUES("60990", "6", "2017-07-29 19:17:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60991", "9", "2017-07-29 19:17:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60992", "8", "2017-07-29 19:17:46", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("60993", "10", "2017-07-29 19:17:46", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("60994", "15", "2017-07-29 19:17:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60995", "10", "2017-07-29 21:04:23", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("60996", "8", "2017-07-29 21:16:41", "157.55.39.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("60997", "3", "2017-07-29 22:22:47", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("60998", "6", "2017-07-29 22:22:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("60999", "9", "2017-07-29 22:22:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61000", "8", "2017-07-29 22:22:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61001", "10", "2017-07-29 22:22:50", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61002", "15", "2017-07-29 22:22:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61003", "10", "2017-07-30 00:59:34", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("61004", "6", "2017-07-30 01:33:00", "47.88.18.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("61005", "3", "2017-07-30 01:33:48", "47.88.2.245", "28");
INSERT INTO `wp_rg_form_view` VALUES("61006", "9", "2017-07-30 01:35:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61007", "8", "2017-07-30 01:35:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61008", "10", "2017-07-30 01:35:58", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61009", "15", "2017-07-30 01:36:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61010", "3", "2017-07-30 02:52:36", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("61011", "3", "2017-07-30 03:19:37", "66.249.79.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("61012", "3", "2017-07-30 04:48:42", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61013", "6", "2017-07-30 04:48:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61014", "9", "2017-07-30 04:48:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61015", "8", "2017-07-30 04:48:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61016", "10", "2017-07-30 04:48:47", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61017", "15", "2017-07-30 04:48:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61018", "10", "2017-07-30 05:03:33", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("61019", "12", "2017-07-30 05:45:45", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61020", "3", "2017-07-30 06:12:40", "157.55.39.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("61021", "3", "2017-07-30 07:59:27", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61022", "6", "2017-07-30 07:59:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61023", "9", "2017-07-30 07:59:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61024", "8", "2017-07-30 07:59:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61025", "10", "2017-07-30 07:59:30", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61026", "15", "2017-07-30 07:59:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61027", "10", "2017-07-30 08:59:16", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("61028", "3", "2017-07-30 09:15:42", "164.132.161.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("61029", "3", "2017-07-30 11:04:24", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61030", "6", "2017-07-30 11:04:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61031", "9", "2017-07-30 11:04:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61032", "8", "2017-07-30 11:04:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61033", "10", "2017-07-30 11:04:27", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61034", "15", "2017-07-30 11:04:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61035", "10", "2017-07-30 12:00:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61036", "3", "2017-07-30 14:07:40", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61037", "6", "2017-07-30 14:07:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61038", "9", "2017-07-30 14:07:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61039", "8", "2017-07-30 14:07:42", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61040", "10", "2017-07-30 14:07:43", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61041", "15", "2017-07-30 14:07:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61042", "10", "2017-07-30 15:06:19", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("61043", "3", "2017-07-30 15:17:33", "5.188.211.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("61044", "3", "2017-07-30 16:15:57", "51.255.71.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("61045", "14", "2017-07-30 16:56:53", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("61046", "3", "2017-07-30 17:07:12", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61047", "6", "2017-07-30 17:07:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61048", "9", "2017-07-30 17:07:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61049", "8", "2017-07-30 17:07:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61050", "10", "2017-07-30 17:07:15", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61051", "15", "2017-07-30 17:07:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61052", "14", "2017-07-30 17:10:10", "24.108.12.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("61053", "11", "2017-07-30 18:19:41", "180.76.15.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("61054", "3", "2017-07-30 19:06:18", "154.20.46.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("61055", "14", "2017-07-30 19:16:30", "154.20.46.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("61056", "3", "2017-07-30 20:06:37", "52.88.109.3", "351");
INSERT INTO `wp_rg_form_view` VALUES("61057", "6", "2017-07-30 20:06:38", "52.88.109.3", "13");
INSERT INTO `wp_rg_form_view` VALUES("61058", "9", "2017-07-30 20:06:39", "52.88.109.3", "13");
INSERT INTO `wp_rg_form_view` VALUES("61059", "8", "2017-07-30 20:06:40", "52.88.109.3", "26");
INSERT INTO `wp_rg_form_view` VALUES("61060", "10", "2017-07-30 20:06:40", "52.88.109.3", "66");
INSERT INTO `wp_rg_form_view` VALUES("61061", "15", "2017-07-30 20:06:42", "52.88.109.3", "13");
INSERT INTO `wp_rg_form_view` VALUES("61062", "10", "2017-07-30 21:15:55", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61063", "3", "2017-07-30 22:28:16", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("61064", "3", "2017-07-30 23:06:58", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61065", "6", "2017-07-30 23:06:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61066", "9", "2017-07-30 23:07:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61067", "8", "2017-07-30 23:07:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61068", "10", "2017-07-30 23:07:01", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61069", "15", "2017-07-30 23:07:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61070", "14", "2017-07-30 23:39:29", "81.171.53.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("61071", "3", "2017-07-31 01:15:27", "104.142.127.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("61072", "10", "2017-07-31 01:38:40", "157.55.39.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("61073", "3", "2017-07-31 02:12:21", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61074", "6", "2017-07-31 02:12:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61075", "9", "2017-07-31 02:12:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61076", "8", "2017-07-31 02:12:23", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61077", "10", "2017-07-31 02:12:24", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61078", "15", "2017-07-31 02:12:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61079", "10", "2017-07-31 03:32:46", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("61080", "10", "2017-07-31 04:02:50", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("61081", "8", "2017-07-31 04:20:51", "96.50.4.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("61082", "3", "2017-07-31 04:21:59", "96.50.4.204", "2");
INSERT INTO `wp_rg_form_view` VALUES("61083", "15", "2017-07-31 04:44:13", "164.132.161.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("61084", "3", "2017-07-31 05:17:56", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("61085", "6", "2017-07-31 05:17:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61086", "9", "2017-07-31 05:17:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61087", "8", "2017-07-31 05:17:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61088", "10", "2017-07-31 05:17:58", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61089", "15", "2017-07-31 05:18:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61090", "10", "2017-07-31 06:20:41", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("61091", "10", "2017-07-31 07:34:46", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("61092", "3", "2017-07-31 07:42:50", "180.76.15.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("61093", "3", "2017-07-31 08:14:07", "141.8.144.38", "28");
INSERT INTO `wp_rg_form_view` VALUES("61094", "6", "2017-07-31 08:34:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61095", "9", "2017-07-31 08:34:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61096", "8", "2017-07-31 08:34:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61097", "10", "2017-07-31 08:34:02", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61098", "15", "2017-07-31 08:34:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61099", "3", "2017-07-31 09:22:28", "180.76.15.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61100", "14", "2017-07-31 09:43:50", "66.220.156.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("61101", "10", "2017-07-31 09:48:45", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61102", "5", "2017-07-31 11:09:00", "157.55.39.230", "1");
INSERT INTO `wp_rg_form_view` VALUES("61103", "3", "2017-07-31 11:11:00", "188.226.139.54", "30");
INSERT INTO `wp_rg_form_view` VALUES("61104", "6", "2017-07-31 11:43:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61105", "9", "2017-07-31 11:43:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61106", "8", "2017-07-31 11:43:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61107", "10", "2017-07-31 11:43:48", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61108", "15", "2017-07-31 11:43:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61109", "10", "2017-07-31 12:00:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61110", "3", "2017-07-31 12:09:08", "180.76.15.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("61111", "10", "2017-07-31 14:31:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61112", "3", "2017-07-31 15:08:52", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("61113", "6", "2017-07-31 15:08:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61114", "9", "2017-07-31 15:08:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61115", "8", "2017-07-31 15:08:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61116", "10", "2017-07-31 15:08:54", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61117", "15", "2017-07-31 15:08:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61118", "10", "2017-07-31 16:27:31", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61119", "10", "2017-07-31 17:27:33", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61120", "10", "2017-07-31 18:02:47", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("61121", "3", "2017-07-31 18:28:10", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61122", "6", "2017-07-31 18:28:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61123", "9", "2017-07-31 18:28:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61124", "8", "2017-07-31 18:28:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61125", "15", "2017-07-31 18:28:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61126", "11", "2017-07-31 18:44:54", "180.76.15.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("61127", "10", "2017-07-31 19:07:23", "72.14.199.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("61128", "3", "2017-07-31 19:41:43", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("61129", "8", "2017-07-31 20:19:19", "192.41.148.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("61130", "10", "2017-07-31 20:28:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61131", "3", "2017-07-31 20:29:31", "40.77.167.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("61132", "14", "2017-07-31 20:42:52", "168.235.66.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("61133", "10", "2017-07-31 21:28:40", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61134", "11", "2017-07-31 21:30:44", "164.132.161.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("61135", "14", "2017-07-31 21:31:34", "180.76.15.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("61136", "3", "2017-07-31 21:41:56", "217.182.132.67", "28");
INSERT INTO `wp_rg_form_view` VALUES("61137", "6", "2017-07-31 21:44:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61138", "9", "2017-07-31 21:44:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61139", "8", "2017-07-31 21:44:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61140", "15", "2017-07-31 21:44:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61141", "10", "2017-07-31 22:28:40", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61142", "10", "2017-07-31 23:28:42", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61143", "10", "2017-08-01 00:28:40", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61144", "3", "2017-08-01 00:56:39", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61145", "6", "2017-08-01 00:56:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61146", "9", "2017-08-01 00:56:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61147", "8", "2017-08-01 00:56:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61148", "15", "2017-08-01 00:56:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61149", "3", "2017-08-01 01:09:41", "185.93.182.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("61150", "10", "2017-08-01 01:29:03", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61151", "3", "2017-08-01 02:10:21", "164.132.161.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("61152", "10", "2017-08-01 02:29:23", "184.66.248.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("61153", "15", "2017-08-01 02:38:31", "46.229.168.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("61154", "6", "2017-08-01 02:40:21", "46.229.168.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("61155", "3", "2017-08-01 03:06:20", "51.255.65.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("61156", "10", "2017-08-01 03:29:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61157", "3", "2017-08-01 04:08:43", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("61158", "6", "2017-08-01 04:08:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61159", "9", "2017-08-01 04:08:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61160", "8", "2017-08-01 04:08:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61161", "10", "2017-08-01 04:08:45", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("61162", "15", "2017-08-01 04:08:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61163", "10", "2017-08-01 05:30:02", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61164", "9", "2017-08-01 05:37:53", "51.255.71.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("61165", "3", "2017-08-01 05:52:18", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61166", "10", "2017-08-01 06:00:03", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61167", "3", "2017-08-01 06:39:12", "164.132.161.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("61168", "10", "2017-08-01 07:00:24", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("61169", "14", "2017-08-01 07:25:03", "23.245.152.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("61170", "3", "2017-08-01 07:26:31", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61171", "6", "2017-08-01 07:26:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61172", "9", "2017-08-01 07:26:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61173", "8", "2017-08-01 07:26:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61174", "15", "2017-08-01 07:26:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61175", "10", "2017-08-01 08:00:44", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("61176", "3", "2017-08-01 08:47:19", "216.244.66.247", "27");
INSERT INTO `wp_rg_form_view` VALUES("61177", "6", "2017-08-01 08:47:19", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61178", "9", "2017-08-01 08:47:20", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61179", "8", "2017-08-01 08:47:21", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("61180", "15", "2017-08-01 08:47:23", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61181", "10", "2017-08-01 09:00:44", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61182", "10", "2017-08-01 10:00:55", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61183", "3", "2017-08-01 10:22:21", "180.76.15.162", "29");
INSERT INTO `wp_rg_form_view` VALUES("61184", "6", "2017-08-01 10:50:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61185", "9", "2017-08-01 10:50:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61186", "8", "2017-08-01 10:50:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61187", "15", "2017-08-01 10:50:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61188", "3", "2017-08-01 11:29:01", "180.76.15.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("61189", "8", "2017-08-01 11:36:56", "68.180.230.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("61190", "10", "2017-08-01 11:59:13", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61191", "3", "2017-08-01 12:01:02", "157.55.39.72", "4");
INSERT INTO `wp_rg_form_view` VALUES("61192", "10", "2017-08-01 12:01:08", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61193", "3", "2017-08-01 13:08:36", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61194", "3", "2017-08-01 14:05:53", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61195", "6", "2017-08-01 14:05:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61196", "9", "2017-08-01 14:05:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61197", "8", "2017-08-01 14:05:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61198", "10", "2017-08-01 14:05:56", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("61199", "15", "2017-08-01 14:05:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61200", "14", "2017-08-01 15:11:48", "77.75.77.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("61201", "10", "2017-08-01 15:48:25", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61202", "10", "2017-08-01 16:18:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61203", "14", "2017-08-01 17:03:37", "50.92.251.174", "1");
INSERT INTO `wp_rg_form_view` VALUES("61204", "10", "2017-08-01 17:18:30", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61205", "3", "2017-08-01 17:25:27", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61206", "6", "2017-08-01 17:25:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61207", "9", "2017-08-01 17:25:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61208", "8", "2017-08-01 17:25:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61209", "15", "2017-08-01 17:25:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61210", "10", "2017-08-01 18:02:50", "217.182.132.177", "11");
INSERT INTO `wp_rg_form_view` VALUES("61211", "11", "2017-08-01 18:20:08", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61212", "3", "2017-08-01 18:29:11", "188.40.46.135", "8");
INSERT INTO `wp_rg_form_view` VALUES("61213", "14", "2017-08-01 18:34:13", "24.69.188.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("61214", "15", "2017-08-01 18:55:42", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61215", "10", "2017-08-01 19:18:59", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61216", "3", "2017-08-01 19:45:00", "164.132.161.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("61217", "10", "2017-08-01 20:19:17", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61218", "3", "2017-08-01 20:36:18", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61219", "6", "2017-08-01 20:36:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61220", "9", "2017-08-01 20:36:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61221", "8", "2017-08-01 20:36:20", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61222", "15", "2017-08-01 20:36:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61223", "14", "2017-08-01 20:42:23", "96.50.28.78", "2");
INSERT INTO `wp_rg_form_view` VALUES("61224", "3", "2017-08-01 21:06:53", "75.154.241.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("61225", "10", "2017-08-01 21:19:37", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61226", "3", "2017-08-01 22:13:22", "142.36.249.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("61227", "14", "2017-08-01 22:17:57", "24.68.130.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("61228", "10", "2017-08-01 22:20:01", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61229", "8", "2017-08-01 22:53:48", "24.108.207.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("61230", "3", "2017-08-01 23:50:40", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61231", "6", "2017-08-01 23:50:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61232", "9", "2017-08-01 23:50:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61233", "8", "2017-08-01 23:50:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61234", "10", "2017-08-01 23:51:05", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61235", "15", "2017-08-01 23:51:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61236", "10", "2017-08-02 00:33:16", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("61237", "3", "2017-08-02 00:56:10", "40.77.167.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("61238", "8", "2017-08-02 01:21:53", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("61239", "3", "2017-08-02 01:22:47", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("61240", "3", "2017-08-02 03:18:32", "52.88.109.3", "56");
INSERT INTO `wp_rg_form_view` VALUES("61241", "6", "2017-08-02 03:18:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61242", "9", "2017-08-02 03:18:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61243", "8", "2017-08-02 03:18:33", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61244", "10", "2017-08-02 03:18:34", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("61245", "15", "2017-08-02 03:18:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61246", "14", "2017-08-02 03:28:10", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("61247", "11", "2017-08-02 04:35:37", "180.76.15.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61248", "10", "2017-08-02 05:06:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61249", "8", "2017-08-02 06:40:07", "141.8.144.38", "3");
INSERT INTO `wp_rg_form_view` VALUES("61250", "3", "2017-08-02 06:43:49", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61251", "6", "2017-08-02 06:43:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61252", "9", "2017-08-02 06:43:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61253", "10", "2017-08-02 06:43:53", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61254", "15", "2017-08-02 06:43:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61255", "14", "2017-08-02 06:48:56", "180.76.15.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("61256", "10", "2017-08-02 07:07:01", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61257", "10", "2017-08-02 08:05:12", "198.204.243.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("61258", "15", "2017-08-02 08:05:26", "198.204.243.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("61259", "3", "2017-08-02 10:03:01", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61260", "6", "2017-08-02 10:03:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61261", "9", "2017-08-02 10:03:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61262", "8", "2017-08-02 10:03:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61263", "10", "2017-08-02 10:03:08", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61264", "15", "2017-08-02 10:03:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61265", "10", "2017-08-02 12:00:24", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61266", "5", "2017-08-02 12:22:06", "157.55.39.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("61267", "14", "2017-08-02 12:41:16", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("61268", "10", "2017-08-02 13:19:37", "72.14.199.71", "11");
INSERT INTO `wp_rg_form_view` VALUES("61269", "3", "2017-08-02 13:20:00", "52.88.109.3", "54");
INSERT INTO `wp_rg_form_view` VALUES("61270", "6", "2017-08-02 13:20:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61271", "9", "2017-08-02 13:20:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61272", "8", "2017-08-02 13:20:05", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("61273", "15", "2017-08-02 13:20:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61274", "10", "2017-08-02 14:26:28", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61275", "10", "2017-08-02 15:46:57", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61276", "10", "2017-08-02 16:17:13", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61277", "3", "2017-08-02 16:46:14", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61278", "6", "2017-08-02 16:46:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61279", "9", "2017-08-02 16:46:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61280", "8", "2017-08-02 16:46:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61281", "15", "2017-08-02 16:46:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61282", "3", "2017-08-02 17:29:53", "180.76.15.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("61283", "10", "2017-08-02 17:51:02", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61284", "10", "2017-08-02 18:21:06", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("61285", "11", "2017-08-02 18:36:25", "180.76.15.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("61286", "3", "2017-08-02 19:49:08", "141.193.12.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("61287", "3", "2017-08-02 20:14:00", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61288", "6", "2017-08-02 20:14:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61289", "9", "2017-08-02 20:14:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61290", "8", "2017-08-02 20:14:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61291", "10", "2017-08-02 20:14:06", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("61292", "15", "2017-08-02 20:14:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61293", "10", "2017-08-02 21:21:37", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61294", "14", "2017-08-02 21:23:08", "180.76.15.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("61295", "3", "2017-08-02 21:56:33", "180.76.15.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("61296", "3", "2017-08-02 22:25:04", "107.173.112.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("61297", "14", "2017-08-02 23:35:14", "96.50.125.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("61298", "3", "2017-08-02 23:47:50", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61299", "6", "2017-08-02 23:47:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61300", "9", "2017-08-02 23:47:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61301", "8", "2017-08-02 23:47:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61302", "10", "2017-08-02 23:47:55", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61303", "15", "2017-08-02 23:47:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61304", "3", "2017-08-03 00:43:11", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("61305", "3", "2017-08-03 01:22:48", "31.28.24.112", "189");
INSERT INTO `wp_rg_form_view` VALUES("61306", "6", "2017-08-03 01:22:49", "31.28.24.112", "7");
INSERT INTO `wp_rg_form_view` VALUES("61307", "9", "2017-08-03 01:22:50", "31.28.24.112", "7");
INSERT INTO `wp_rg_form_view` VALUES("61308", "8", "2017-08-03 01:22:51", "31.28.24.112", "14");
INSERT INTO `wp_rg_form_view` VALUES("61309", "10", "2017-08-03 01:22:52", "31.28.24.112", "35");
INSERT INTO `wp_rg_form_view` VALUES("61310", "15", "2017-08-03 01:22:57", "31.28.24.112", "7");
INSERT INTO `wp_rg_form_view` VALUES("61311", "10", "2017-08-03 02:30:49", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("61312", "14", "2017-08-03 02:44:53", "104.142.118.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("61313", "3", "2017-08-03 03:08:55", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61314", "6", "2017-08-03 03:08:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61315", "9", "2017-08-03 03:08:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61316", "8", "2017-08-03 03:08:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61317", "10", "2017-08-03 03:08:58", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61318", "15", "2017-08-03 03:09:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61319", "3", "2017-08-03 04:07:47", "94.73.151.90", "54");
INSERT INTO `wp_rg_form_view` VALUES("61320", "6", "2017-08-03 04:07:48", "94.73.151.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("61321", "9", "2017-08-03 04:07:50", "94.73.151.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("61322", "8", "2017-08-03 04:07:51", "94.73.151.90", "4");
INSERT INTO `wp_rg_form_view` VALUES("61323", "10", "2017-08-03 04:07:51", "94.73.151.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("61324", "15", "2017-08-03 04:07:56", "94.73.151.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("61325", "14", "2017-08-03 05:23:22", "24.244.32.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("61326", "10", "2017-08-03 05:49:29", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("61327", "3", "2017-08-03 06:24:50", "52.88.109.3", "55");
INSERT INTO `wp_rg_form_view` VALUES("61328", "6", "2017-08-03 06:24:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61329", "9", "2017-08-03 06:24:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61330", "8", "2017-08-03 06:24:54", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("61331", "10", "2017-08-03 06:24:54", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("61332", "15", "2017-08-03 06:24:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61333", "3", "2017-08-03 07:19:15", "69.89.31.109", "162");
INSERT INTO `wp_rg_form_view` VALUES("61334", "6", "2017-08-03 07:19:16", "69.89.31.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("61335", "9", "2017-08-03 07:19:17", "69.89.31.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("61336", "8", "2017-08-03 07:19:17", "69.89.31.109", "12");
INSERT INTO `wp_rg_form_view` VALUES("61337", "10", "2017-08-03 07:19:18", "69.89.31.109", "30");
INSERT INTO `wp_rg_form_view` VALUES("61338", "15", "2017-08-03 07:19:22", "69.89.31.109", "6");
INSERT INTO `wp_rg_form_view` VALUES("61339", "3", "2017-08-03 08:11:17", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61340", "10", "2017-08-03 08:30:55", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("61341", "3", "2017-08-03 09:26:32", "180.76.15.146", "55");
INSERT INTO `wp_rg_form_view` VALUES("61342", "10", "2017-08-03 09:31:52", "216.244.66.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("61343", "14", "2017-08-03 09:41:20", "81.171.81.227", "2");
INSERT INTO `wp_rg_form_view` VALUES("61344", "6", "2017-08-03 09:51:42", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61345", "9", "2017-08-03 09:51:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61346", "8", "2017-08-03 09:51:46", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("61347", "15", "2017-08-03 09:51:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61348", "3", "2017-08-03 10:33:10", "180.76.15.147", "112");
INSERT INTO `wp_rg_form_view` VALUES("61349", "6", "2017-08-03 10:35:04", "94.73.146.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("61350", "9", "2017-08-03 10:35:07", "94.73.146.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("61351", "8", "2017-08-03 10:35:09", "94.73.146.42", "8");
INSERT INTO `wp_rg_form_view` VALUES("61352", "10", "2017-08-03 10:35:10", "94.73.146.42", "20");
INSERT INTO `wp_rg_form_view` VALUES("61353", "15", "2017-08-03 10:35:16", "94.73.146.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("61354", "3", "2017-08-03 11:52:45", "217.182.132.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("61355", "10", "2017-08-03 12:00:20", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61356", "10", "2017-08-03 13:03:55", "207.46.13.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("61357", "3", "2017-08-03 13:32:21", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61358", "6", "2017-08-03 13:32:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61359", "9", "2017-08-03 13:32:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61360", "8", "2017-08-03 13:32:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61361", "15", "2017-08-03 13:32:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61362", "3", "2017-08-03 14:06:21", "185.5.53.39", "162");
INSERT INTO `wp_rg_form_view` VALUES("61363", "6", "2017-08-03 14:06:23", "185.5.53.39", "6");
INSERT INTO `wp_rg_form_view` VALUES("61364", "9", "2017-08-03 14:06:24", "185.5.53.39", "6");
INSERT INTO `wp_rg_form_view` VALUES("61365", "8", "2017-08-03 14:06:25", "185.5.53.39", "12");
INSERT INTO `wp_rg_form_view` VALUES("61366", "10", "2017-08-03 14:06:25", "185.5.53.39", "31");
INSERT INTO `wp_rg_form_view` VALUES("61367", "15", "2017-08-03 14:06:30", "185.5.53.39", "6");
INSERT INTO `wp_rg_form_view` VALUES("61368", "10", "2017-08-03 15:30:01", "207.46.13.102", "3");
INSERT INTO `wp_rg_form_view` VALUES("61369", "3", "2017-08-03 15:30:13", "207.46.13.102", "13");
INSERT INTO `wp_rg_form_view` VALUES("61370", "6", "2017-08-03 15:30:37", "157.55.39.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("61371", "15", "2017-08-03 15:32:07", "157.55.39.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("61372", "3", "2017-08-03 16:34:45", "184.71.11.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("61373", "3", "2017-08-03 17:09:22", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("61374", "6", "2017-08-03 17:09:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61375", "9", "2017-08-03 17:09:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61376", "8", "2017-08-03 17:09:25", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61377", "10", "2017-08-03 17:09:26", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("61378", "15", "2017-08-03 17:09:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61379", "10", "2017-08-03 18:10:05", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("61380", "3", "2017-08-03 18:34:59", "77.75.76.167", "2");
INSERT INTO `wp_rg_form_view` VALUES("61381", "10", "2017-08-03 19:26:38", "180.76.15.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("61382", "3", "2017-08-03 19:34:47", "51.255.65.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("61383", "10", "2017-08-03 20:06:47", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("61384", "3", "2017-08-03 20:28:28", "52.88.109.3", "37");
INSERT INTO `wp_rg_form_view` VALUES("61385", "6", "2017-08-03 20:28:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61386", "9", "2017-08-03 20:28:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61387", "8", "2017-08-03 20:28:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61388", "15", "2017-08-03 20:28:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61389", "10", "2017-08-03 22:00:43", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("61390", "11", "2017-08-03 22:30:58", "207.46.13.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("61391", "3", "2017-08-03 22:37:38", "5.9.98.130", "3");
INSERT INTO `wp_rg_form_view` VALUES("61392", "9", "2017-08-03 22:48:30", "207.46.13.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("61393", "10", "2017-08-03 23:00:43", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61394", "3", "2017-08-03 23:33:02", "184.71.14.170", "28");
INSERT INTO `wp_rg_form_view` VALUES("61395", "8", "2017-08-03 23:34:12", "184.71.14.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("61396", "6", "2017-08-03 23:49:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61397", "9", "2017-08-03 23:49:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61398", "15", "2017-08-03 23:49:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61399", "3", "2017-08-04 00:03:24", "217.182.132.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("61400", "14", "2017-08-04 00:17:54", "184.71.25.154", "2");
INSERT INTO `wp_rg_form_view` VALUES("61401", "5", "2017-08-04 00:51:10", "77.75.78.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("61402", "3", "2017-08-04 01:56:24", "164.132.162.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("61403", "6", "2017-08-04 02:58:49", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61404", "9", "2017-08-04 02:58:59", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61405", "3", "2017-08-04 02:59:21", "188.40.46.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("61406", "3", "2017-08-04 03:00:18", "188.40.46.135", "118");
INSERT INTO `wp_rg_form_view` VALUES("61407", "8", "2017-08-04 03:02:16", "188.40.46.135", "8");
INSERT INTO `wp_rg_form_view` VALUES("61408", "6", "2017-08-04 03:07:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61409", "9", "2017-08-04 03:07:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61410", "10", "2017-08-04 03:07:09", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61411", "15", "2017-08-04 03:07:14", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61412", "11", "2017-08-04 04:01:35", "5.255.250.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("61413", "3", "2017-08-04 04:13:06", "5.255.250.47", "9");
INSERT INTO `wp_rg_form_view` VALUES("61414", "10", "2017-08-04 04:21:09", "188.40.46.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61415", "6", "2017-08-04 04:45:29", "51.255.65.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("61416", "3", "2017-08-04 05:41:19", "5.255.250.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("61417", "10", "2017-08-04 05:56:23", "207.46.13.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("61418", "3", "2017-08-04 06:17:52", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61419", "6", "2017-08-04 06:17:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61420", "9", "2017-08-04 06:17:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61421", "8", "2017-08-04 06:17:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61422", "10", "2017-08-04 06:17:54", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61423", "15", "2017-08-04 06:17:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61424", "3", "2017-08-04 09:35:47", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61425", "6", "2017-08-04 09:35:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61426", "9", "2017-08-04 09:35:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61427", "8", "2017-08-04 09:35:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61428", "10", "2017-08-04 09:35:50", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61429", "15", "2017-08-04 09:35:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61430", "3", "2017-08-04 11:11:51", "68.180.229.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("61431", "10", "2017-08-04 12:00:16", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("61432", "3", "2017-08-04 12:21:57", "180.76.15.157", "28");
INSERT INTO `wp_rg_form_view` VALUES("61433", "6", "2017-08-04 12:53:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61434", "9", "2017-08-04 12:53:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61435", "8", "2017-08-04 12:53:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61436", "15", "2017-08-04 12:53:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61437", "3", "2017-08-04 13:23:35", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61438", "3", "2017-08-04 14:04:06", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("61439", "10", "2017-08-04 14:26:05", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61440", "3", "2017-08-04 15:01:06", "217.182.132.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("61441", "14", "2017-08-04 16:01:56", "66.70.191.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("61442", "3", "2017-08-04 16:11:34", "66.249.79.135", "29");
INSERT INTO `wp_rg_form_view` VALUES("61443", "6", "2017-08-04 16:18:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61444", "9", "2017-08-04 16:18:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61445", "8", "2017-08-04 16:18:27", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("61446", "10", "2017-08-04 16:18:27", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("61447", "15", "2017-08-04 16:18:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61448", "3", "2017-08-04 17:02:12", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("61449", "10", "2017-08-04 18:27:42", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61450", "3", "2017-08-04 18:58:55", "217.182.132.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("61451", "10", "2017-08-04 19:30:58", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("61452", "3", "2017-08-04 19:36:47", "52.88.109.3", "38");
INSERT INTO `wp_rg_form_view` VALUES("61453", "6", "2017-08-04 19:36:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61454", "9", "2017-08-04 19:36:48", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61455", "8", "2017-08-04 19:36:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61456", "15", "2017-08-04 19:36:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61457", "14", "2017-08-04 19:44:15", "104.236.119.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("61458", "3", "2017-08-04 20:01:06", "104.236.119.206", "17");
INSERT INTO `wp_rg_form_view` VALUES("61459", "10", "2017-08-04 20:02:28", "104.236.119.206", "4");
INSERT INTO `wp_rg_form_view` VALUES("61460", "8", "2017-08-04 20:18:45", "104.236.119.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("61461", "3", "2017-08-04 21:05:23", "142.36.94.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("61462", "10", "2017-08-04 21:47:02", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61463", "10", "2017-08-04 22:08:29", "72.14.199.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("61464", "3", "2017-08-04 22:11:54", "66.249.79.137", "28");
INSERT INTO `wp_rg_form_view` VALUES("61465", "15", "2017-08-04 22:42:01", "157.55.39.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("61466", "6", "2017-08-04 22:45:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61467", "9", "2017-08-04 22:45:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61468", "8", "2017-08-04 22:45:42", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61469", "3", "2017-08-05 00:30:21", "40.77.167.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("61470", "14", "2017-08-05 00:31:49", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("61471", "3", "2017-08-05 01:25:47", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("61472", "10", "2017-08-05 01:41:34", "96.44.120.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("61473", "3", "2017-08-05 02:04:04", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("61474", "6", "2017-08-05 02:04:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61475", "9", "2017-08-05 02:04:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61476", "8", "2017-08-05 02:04:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61477", "10", "2017-08-05 02:04:06", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("61478", "15", "2017-08-05 02:04:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61479", "3", "2017-08-05 04:11:54", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("61480", "3", "2017-08-05 05:29:25", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61481", "6", "2017-08-05 05:29:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61482", "9", "2017-08-05 05:29:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61483", "8", "2017-08-05 05:29:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61484", "10", "2017-08-05 05:29:28", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61485", "15", "2017-08-05 05:29:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61486", "3", "2017-08-05 07:15:14", "137.74.207.102", "28");
INSERT INTO `wp_rg_form_view` VALUES("61487", "10", "2017-08-05 07:30:22", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("61488", "6", "2017-08-05 07:41:49", "217.11.128.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("61489", "9", "2017-08-05 07:41:50", "217.11.128.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("61490", "8", "2017-08-05 07:41:50", "217.11.128.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("61491", "15", "2017-08-05 07:41:53", "217.11.128.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("61492", "3", "2017-08-05 08:41:31", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61493", "6", "2017-08-05 08:41:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61494", "9", "2017-08-05 08:41:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61495", "8", "2017-08-05 08:41:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61496", "10", "2017-08-05 08:41:34", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61497", "15", "2017-08-05 08:41:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61498", "10", "2017-08-05 09:31:10", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61499", "3", "2017-08-05 11:21:21", "40.77.167.92", "28");
INSERT INTO `wp_rg_form_view` VALUES("61500", "10", "2017-08-05 11:31:57", "217.182.132.175", "7");
INSERT INTO `wp_rg_form_view` VALUES("61501", "6", "2017-08-05 11:52:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61502", "9", "2017-08-05 11:52:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61503", "8", "2017-08-05 11:52:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61504", "15", "2017-08-05 11:52:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61505", "10", "2017-08-05 12:00:21", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61506", "3", "2017-08-05 12:17:29", "217.182.132.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("61507", "3", "2017-08-05 13:06:35", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61508", "10", "2017-08-05 14:26:26", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61509", "14", "2017-08-05 14:34:36", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61510", "3", "2017-08-05 15:09:25", "216.244.66.231", "30");
INSERT INTO `wp_rg_form_view` VALUES("61511", "6", "2017-08-05 15:16:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61512", "9", "2017-08-05 15:16:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61513", "8", "2017-08-05 15:16:23", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61514", "10", "2017-08-05 15:16:23", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61515", "15", "2017-08-05 15:16:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61516", "10", "2017-08-05 16:27:16", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61517", "10", "2017-08-05 17:15:02", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61518", "15", "2017-08-05 17:34:57", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61519", "3", "2017-08-05 17:52:31", "164.132.161.78", "4");
INSERT INTO `wp_rg_form_view` VALUES("61520", "8", "2017-08-05 17:58:00", "138.201.49.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("61521", "3", "2017-08-05 18:00:11", "138.201.49.101", "30");
INSERT INTO `wp_rg_form_view` VALUES("61522", "14", "2017-08-05 18:00:30", "138.201.49.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("61523", "10", "2017-08-05 18:25:58", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("61524", "6", "2017-08-05 18:33:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61525", "9", "2017-08-05 18:33:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61526", "8", "2017-08-05 18:33:10", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61527", "15", "2017-08-05 18:33:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61528", "5", "2017-08-05 19:47:37", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("61529", "12", "2017-08-05 20:35:32", "40.77.167.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("61530", "3", "2017-08-05 20:52:47", "70.66.221.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("61531", "3", "2017-08-05 21:05:02", "180.76.15.8", "29");
INSERT INTO `wp_rg_form_view` VALUES("61532", "6", "2017-08-05 21:41:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61533", "9", "2017-08-05 21:41:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61534", "8", "2017-08-05 21:41:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61535", "10", "2017-08-05 21:41:38", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61536", "15", "2017-08-05 21:41:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61537", "3", "2017-08-05 22:28:20", "164.132.161.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("61538", "3", "2017-08-05 23:03:53", "217.182.132.53", "5");
INSERT INTO `wp_rg_form_view` VALUES("61539", "10", "2017-08-05 23:05:35", "157.55.39.70", "5");
INSERT INTO `wp_rg_form_view` VALUES("61540", "15", "2017-08-05 23:18:25", "180.76.15.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("61541", "14", "2017-08-05 23:48:14", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("61542", "3", "2017-08-06 00:51:39", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61543", "6", "2017-08-06 00:51:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61544", "9", "2017-08-06 00:51:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61545", "8", "2017-08-06 00:51:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61546", "10", "2017-08-06 00:51:41", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61547", "15", "2017-08-06 00:51:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61548", "10", "2017-08-06 01:50:56", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61549", "14", "2017-08-06 01:54:57", "68.180.229.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("61550", "3", "2017-08-06 02:08:33", "51.255.65.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("61551", "10", "2017-08-06 02:58:48", "217.182.132.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("61552", "10", "2017-08-06 03:56:57", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("61553", "3", "2017-08-06 04:09:29", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("61554", "6", "2017-08-06 04:09:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61555", "9", "2017-08-06 04:09:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61556", "8", "2017-08-06 04:09:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61557", "10", "2017-08-06 04:09:31", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61558", "15", "2017-08-06 04:09:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61559", "14", "2017-08-06 04:32:50", "207.194.133.9", "6");
INSERT INTO `wp_rg_form_view` VALUES("61560", "3", "2017-08-06 05:19:34", "217.182.132.51", "2");
INSERT INTO `wp_rg_form_view` VALUES("61561", "10", "2017-08-06 05:38:31", "96.44.120.218", "4");
INSERT INTO `wp_rg_form_view` VALUES("61562", "10", "2017-08-06 07:06:49", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("61563", "3", "2017-08-06 07:22:48", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61564", "6", "2017-08-06 07:22:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61565", "9", "2017-08-06 07:22:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61566", "8", "2017-08-06 07:22:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61567", "15", "2017-08-06 07:22:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61568", "10", "2017-08-06 09:07:33", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61569", "3", "2017-08-06 10:41:45", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61570", "6", "2017-08-06 10:41:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61571", "9", "2017-08-06 10:41:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61572", "8", "2017-08-06 10:41:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61573", "10", "2017-08-06 10:41:47", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61574", "15", "2017-08-06 10:41:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61575", "10", "2017-08-06 11:08:24", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61576", "14", "2017-08-06 11:26:13", "103.79.164.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("61577", "10", "2017-08-06 12:00:21", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61578", "3", "2017-08-06 12:38:23", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("61579", "14", "2017-08-06 13:48:21", "193.201.224.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("61580", "3", "2017-08-06 13:55:03", "52.88.109.3", "54");
INSERT INTO `wp_rg_form_view` VALUES("61581", "6", "2017-08-06 13:55:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61582", "9", "2017-08-06 13:55:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61583", "8", "2017-08-06 13:55:05", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("61584", "10", "2017-08-06 13:55:05", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("61585", "15", "2017-08-06 13:55:08", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61586", "10", "2017-08-06 14:12:47", "96.44.120.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("61587", "3", "2017-08-06 14:59:30", "180.76.15.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("61588", "3", "2017-08-06 15:32:50", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("61589", "10", "2017-08-06 15:35:01", "157.55.39.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("61590", "3", "2017-08-06 16:08:29", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("61591", "10", "2017-08-06 16:26:25", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61592", "3", "2017-08-06 17:11:14", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61593", "6", "2017-08-06 17:11:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61594", "9", "2017-08-06 17:11:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61595", "8", "2017-08-06 17:11:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61596", "10", "2017-08-06 17:11:17", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("61597", "15", "2017-08-06 17:11:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61598", "14", "2017-08-06 17:58:05", "24.68.134.70", "1");
INSERT INTO `wp_rg_form_view` VALUES("61599", "3", "2017-08-06 18:37:01", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61600", "10", "2017-08-06 19:05:28", "96.44.120.218", "7");
INSERT INTO `wp_rg_form_view` VALUES("61601", "3", "2017-08-06 19:23:49", "216.244.66.247", "29");
INSERT INTO `wp_rg_form_view` VALUES("61602", "6", "2017-08-06 19:23:50", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61603", "9", "2017-08-06 19:23:51", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61604", "8", "2017-08-06 19:23:51", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("61605", "15", "2017-08-06 19:23:54", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61606", "3", "2017-08-06 20:35:54", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61607", "6", "2017-08-06 20:35:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61608", "9", "2017-08-06 20:35:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61609", "8", "2017-08-06 20:35:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61610", "10", "2017-08-06 20:35:56", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61611", "15", "2017-08-06 20:35:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61612", "10", "2017-08-06 21:14:39", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61613", "10", "2017-08-06 22:41:09", "51.255.65.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("61614", "11", "2017-08-06 22:41:26", "5.255.250.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("61615", "10", "2017-08-06 23:46:55", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("61616", "8", "2017-08-06 23:49:20", "69.10.148.164", "3");
INSERT INTO `wp_rg_form_view` VALUES("61617", "3", "2017-08-06 23:56:53", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61618", "6", "2017-08-06 23:56:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61619", "9", "2017-08-06 23:56:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61620", "15", "2017-08-06 23:56:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61621", "10", "2017-08-07 00:01:13", "96.44.120.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("61622", "3", "2017-08-07 01:15:08", "180.76.15.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("61623", "10", "2017-08-07 02:26:19", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("61624", "3", "2017-08-07 03:04:18", "24.71.229.24", "29");
INSERT INTO `wp_rg_form_view` VALUES("61625", "6", "2017-08-07 03:19:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61626", "9", "2017-08-07 03:19:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61627", "8", "2017-08-07 03:19:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61628", "10", "2017-08-07 03:19:12", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61629", "15", "2017-08-07 03:19:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61630", "10", "2017-08-07 04:01:50", "180.76.15.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("61631", "3", "2017-08-07 04:22:04", "24.71.229.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("61632", "10", "2017-08-07 06:27:50", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("61633", "3", "2017-08-07 06:38:06", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61634", "6", "2017-08-07 06:38:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61635", "9", "2017-08-07 06:38:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61636", "8", "2017-08-07 06:38:08", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61637", "15", "2017-08-07 06:38:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61638", "10", "2017-08-07 07:49:21", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("61639", "10", "2017-08-07 08:28:40", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61640", "3", "2017-08-07 09:28:32", "51.255.65.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("61641", "10", "2017-08-07 09:44:34", "157.55.39.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("61642", "3", "2017-08-07 10:15:44", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61643", "6", "2017-08-07 10:15:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61644", "9", "2017-08-07 10:15:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61645", "8", "2017-08-07 10:15:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61646", "10", "2017-08-07 10:15:51", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61647", "15", "2017-08-07 10:15:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61648", "10", "2017-08-07 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61649", "3", "2017-08-07 13:10:21", "157.55.39.73", "28");
INSERT INTO `wp_rg_form_view` VALUES("61650", "6", "2017-08-07 13:33:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61651", "9", "2017-08-07 13:33:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61652", "8", "2017-08-07 13:33:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61653", "10", "2017-08-07 13:33:14", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61654", "15", "2017-08-07 13:33:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61655", "10", "2017-08-07 14:00:10", "96.44.120.218", "4");
INSERT INTO `wp_rg_form_view` VALUES("61656", "3", "2017-08-07 15:25:44", "40.77.167.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("61657", "10", "2017-08-07 16:34:30", "180.76.15.140", "6");
INSERT INTO `wp_rg_form_view` VALUES("61658", "3", "2017-08-07 16:53:40", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61659", "6", "2017-08-07 16:53:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61660", "9", "2017-08-07 16:53:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61661", "8", "2017-08-07 16:53:42", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61662", "15", "2017-08-07 16:53:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61663", "3", "2017-08-07 17:04:12", "217.182.132.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("61664", "10", "2017-08-07 18:05:07", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61665", "10", "2017-08-07 20:07:00", "72.14.199.73", "11");
INSERT INTO `wp_rg_form_view` VALUES("61666", "3", "2017-08-07 20:14:57", "52.88.109.3", "54");
INSERT INTO `wp_rg_form_view` VALUES("61667", "6", "2017-08-07 20:14:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61668", "9", "2017-08-07 20:14:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61669", "8", "2017-08-07 20:14:59", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("61670", "15", "2017-08-07 20:15:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61671", "10", "2017-08-07 21:04:49", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61672", "14", "2017-08-07 21:33:07", "70.67.111.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("61673", "10", "2017-08-07 22:11:30", "164.132.161.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("61674", "15", "2017-08-07 22:13:42", "217.182.132.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("61675", "10", "2017-08-07 23:22:24", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("61676", "3", "2017-08-07 23:33:52", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61677", "6", "2017-08-07 23:33:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61678", "9", "2017-08-07 23:33:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61679", "8", "2017-08-07 23:33:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61680", "15", "2017-08-07 23:33:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61681", "10", "2017-08-08 00:04:17", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("61682", "10", "2017-08-08 01:23:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61683", "6", "2017-08-08 01:30:18", "180.76.15.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("61684", "14", "2017-08-08 01:32:24", "75.157.168.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("61685", "3", "2017-08-08 02:50:40", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61686", "6", "2017-08-08 02:50:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61687", "9", "2017-08-08 02:50:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61688", "8", "2017-08-08 02:50:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61689", "10", "2017-08-08 02:50:47", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61690", "15", "2017-08-08 02:50:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61691", "10", "2017-08-08 03:24:04", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("61692", "10", "2017-08-08 04:15:34", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61693", "10", "2017-08-08 05:24:52", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61694", "3", "2017-08-08 06:12:36", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61695", "6", "2017-08-08 06:12:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61696", "9", "2017-08-08 06:12:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61697", "8", "2017-08-08 06:12:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61698", "10", "2017-08-08 06:12:39", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("61699", "15", "2017-08-08 06:12:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61700", "11", "2017-08-08 06:23:55", "217.182.132.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("61701", "3", "2017-08-08 07:02:22", "180.76.15.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("61702", "10", "2017-08-08 07:25:43", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61703", "10", "2017-08-08 09:26:35", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("61704", "3", "2017-08-08 09:29:17", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61705", "6", "2017-08-08 09:29:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61706", "9", "2017-08-08 09:29:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61707", "8", "2017-08-08 09:29:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61708", "15", "2017-08-08 09:29:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61709", "5", "2017-08-08 10:01:12", "51.255.65.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("61710", "14", "2017-08-08 10:06:36", "157.55.39.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("61711", "11", "2017-08-08 11:12:31", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("61712", "10", "2017-08-08 11:27:24", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61713", "8", "2017-08-08 11:43:12", "68.180.229.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("61714", "10", "2017-08-08 12:00:26", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("61715", "3", "2017-08-08 12:24:13", "66.249.79.137", "40");
INSERT INTO `wp_rg_form_view` VALUES("61716", "15", "2017-08-08 12:42:22", "157.55.39.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("61717", "6", "2017-08-08 12:49:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61718", "9", "2017-08-08 12:49:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61719", "8", "2017-08-08 12:49:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61720", "3", "2017-08-08 13:42:24", "180.76.15.141", "28");
INSERT INTO `wp_rg_form_view` VALUES("61721", "6", "2017-08-08 13:45:08", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61722", "9", "2017-08-08 13:45:09", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61723", "8", "2017-08-08 13:45:09", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("61724", "10", "2017-08-08 13:45:10", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("61725", "15", "2017-08-08 13:45:12", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61726", "3", "2017-08-08 14:15:41", "180.76.15.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("61727", "10", "2017-08-08 14:26:30", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("61728", "14", "2017-08-08 14:44:46", "154.16.43.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("61729", "3", "2017-08-08 15:17:11", "164.132.161.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("61730", "10", "2017-08-08 15:48:10", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61731", "3", "2017-08-08 16:07:24", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61732", "6", "2017-08-08 16:07:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61733", "9", "2017-08-08 16:07:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61734", "8", "2017-08-08 16:07:25", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61735", "10", "2017-08-08 16:07:26", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("61736", "15", "2017-08-08 16:07:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61737", "10", "2017-08-08 17:04:02", "40.77.167.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("61738", "14", "2017-08-08 17:07:03", "24.108.172.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("61739", "10", "2017-08-08 18:02:19", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("61740", "8", "2017-08-08 18:17:01", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("61741", "10", "2017-08-08 19:02:34", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("61742", "14", "2017-08-08 19:28:42", "184.66.252.209", "2");
INSERT INTO `wp_rg_form_view` VALUES("61743", "3", "2017-08-08 19:39:21", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61744", "6", "2017-08-08 19:39:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61745", "9", "2017-08-08 19:39:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61746", "8", "2017-08-08 19:39:23", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61747", "15", "2017-08-08 19:39:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61748", "3", "2017-08-08 20:00:04", "157.55.39.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("61749", "14", "2017-08-08 20:02:32", "24.68.106.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("61750", "10", "2017-08-08 20:03:05", "184.66.248.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("61751", "10", "2017-08-08 21:17:15", "194.187.170.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("61752", "10", "2017-08-08 22:12:29", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61753", "3", "2017-08-08 22:39:08", "162.211.109.198", "5");
INSERT INTO `wp_rg_form_view` VALUES("61754", "8", "2017-08-08 22:40:12", "162.211.109.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("61755", "14", "2017-08-08 22:41:09", "162.211.109.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("61756", "3", "2017-08-08 23:09:32", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61757", "6", "2017-08-08 23:09:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61758", "9", "2017-08-08 23:09:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61759", "8", "2017-08-08 23:09:34", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61760", "10", "2017-08-08 23:09:35", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("61761", "15", "2017-08-08 23:09:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61762", "10", "2017-08-09 00:12:40", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61763", "10", "2017-08-09 01:13:02", "184.66.248.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("61764", "3", "2017-08-09 01:24:50", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("61765", "15", "2017-08-09 01:24:51", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61766", "14", "2017-08-09 02:02:04", "96.44.123.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("61767", "10", "2017-08-09 02:13:21", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61768", "3", "2017-08-09 02:27:09", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61769", "6", "2017-08-09 02:27:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61770", "9", "2017-08-09 02:27:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61771", "8", "2017-08-09 02:27:11", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61772", "15", "2017-08-09 02:27:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61773", "10", "2017-08-09 03:00:01", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("61774", "10", "2017-08-09 04:14:02", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61775", "3", "2017-08-09 04:41:39", "194.187.170.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("61776", "10", "2017-08-09 05:14:03", "184.66.248.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("61777", "3", "2017-08-09 05:43:18", "216.244.66.195", "28");
INSERT INTO `wp_rg_form_view` VALUES("61778", "6", "2017-08-09 05:52:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61779", "9", "2017-08-09 05:52:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61780", "8", "2017-08-09 05:52:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61781", "15", "2017-08-09 05:52:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61782", "3", "2017-08-09 06:03:52", "137.74.207.120", "2");
INSERT INTO `wp_rg_form_view` VALUES("61783", "10", "2017-08-09 06:14:23", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61784", "10", "2017-08-09 07:14:45", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61785", "10", "2017-08-09 08:15:05", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61786", "3", "2017-08-09 08:19:57", "164.132.161.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("61787", "10", "2017-08-09 09:15:25", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("61788", "3", "2017-08-09 09:18:24", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61789", "6", "2017-08-09 09:18:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61790", "9", "2017-08-09 09:18:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61791", "8", "2017-08-09 09:18:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61792", "15", "2017-08-09 09:18:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61793", "10", "2017-08-09 10:15:47", "184.66.248.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61794", "10", "2017-08-09 12:00:22", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("61795", "3", "2017-08-09 12:41:54", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61796", "6", "2017-08-09 12:41:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61797", "9", "2017-08-09 12:41:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61798", "8", "2017-08-09 12:41:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61799", "15", "2017-08-09 12:41:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61800", "3", "2017-08-09 13:40:31", "217.182.132.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("61801", "10", "2017-08-09 14:26:12", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("61802", "3", "2017-08-09 14:31:53", "180.76.15.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("61803", "14", "2017-08-09 15:03:41", "193.201.224.225", "3");
INSERT INTO `wp_rg_form_view` VALUES("61804", "10", "2017-08-09 15:08:59", "137.74.207.109", "3");
INSERT INTO `wp_rg_form_view` VALUES("61805", "3", "2017-08-09 16:12:36", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61806", "6", "2017-08-09 16:12:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61807", "9", "2017-08-09 16:12:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61808", "8", "2017-08-09 16:12:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61809", "10", "2017-08-09 16:12:39", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("61810", "15", "2017-08-09 16:12:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61811", "3", "2017-08-09 17:14:45", "109.169.29.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("61812", "10", "2017-08-09 17:17:43", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61813", "14", "2017-08-09 18:06:03", "96.50.19.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("61814", "10", "2017-08-09 18:18:08", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61815", "10", "2017-08-09 19:09:17", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("61816", "3", "2017-08-09 19:20:58", "157.55.39.124", "29");
INSERT INTO `wp_rg_form_view` VALUES("61817", "6", "2017-08-09 19:31:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61818", "9", "2017-08-09 19:31:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61819", "8", "2017-08-09 19:31:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61820", "15", "2017-08-09 19:31:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61821", "3", "2017-08-09 20:09:07", "154.20.232.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("61822", "10", "2017-08-09 20:18:36", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61823", "14", "2017-08-09 20:20:09", "24.68.146.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("61824", "10", "2017-08-09 21:18:50", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61825", "8", "2017-08-09 21:27:00", "66.249.66.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("61826", "3", "2017-08-09 22:07:25", "24.11.116.220", "30");
INSERT INTO `wp_rg_form_view` VALUES("61827", "10", "2017-08-09 22:18:58", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61828", "8", "2017-08-09 22:47:57", "66.249.66.28", "3");
INSERT INTO `wp_rg_form_view` VALUES("61829", "6", "2017-08-09 22:56:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61830", "9", "2017-08-09 22:56:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61831", "15", "2017-08-09 22:56:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61832", "10", "2017-08-09 23:09:20", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("61833", "3", "2017-08-09 23:49:21", "174.127.133.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("61834", "10", "2017-08-10 00:20:16", "184.66.248.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("61835", "11", "2017-08-10 00:51:47", "77.75.78.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("61836", "3", "2017-08-10 00:58:26", "216.244.66.195", "27");
INSERT INTO `wp_rg_form_view` VALUES("61837", "6", "2017-08-10 00:58:26", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61838", "9", "2017-08-10 00:58:27", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61839", "8", "2017-08-10 00:58:27", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61840", "15", "2017-08-10 00:58:30", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("61841", "3", "2017-08-10 01:14:25", "70.66.192.163", "2");
INSERT INTO `wp_rg_form_view` VALUES("61842", "10", "2017-08-10 01:20:37", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61843", "10", "2017-08-10 02:20:57", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61844", "3", "2017-08-10 02:31:52", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61845", "6", "2017-08-10 02:31:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61846", "9", "2017-08-10 02:31:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61847", "8", "2017-08-10 02:31:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61848", "15", "2017-08-10 02:31:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61849", "14", "2017-08-10 03:15:31", "24.68.144.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("61850", "10", "2017-08-10 03:21:16", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61851", "3", "2017-08-10 03:45:08", "180.76.15.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("61852", "14", "2017-08-10 04:18:33", "180.76.15.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("61853", "10", "2017-08-10 04:21:36", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61854", "10", "2017-08-10 05:22:03", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61855", "3", "2017-08-10 05:52:56", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61856", "6", "2017-08-10 05:52:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61857", "9", "2017-08-10 05:52:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61858", "8", "2017-08-10 05:52:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61859", "15", "2017-08-10 05:53:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61860", "10", "2017-08-10 06:12:55", "24.108.13.92", "5");
INSERT INTO `wp_rg_form_view` VALUES("61861", "10", "2017-08-10 07:22:27", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61862", "10", "2017-08-10 08:22:52", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61863", "3", "2017-08-10 09:15:37", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61864", "6", "2017-08-10 09:15:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61865", "9", "2017-08-10 09:15:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61866", "8", "2017-08-10 09:15:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61867", "10", "2017-08-10 09:15:40", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("61868", "15", "2017-08-10 09:15:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61869", "10", "2017-08-10 10:23:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61870", "3", "2017-08-10 11:09:58", "5.255.250.47", "4");
INSERT INTO `wp_rg_form_view` VALUES("61871", "10", "2017-08-10 11:23:19", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61872", "10", "2017-08-10 12:00:21", "184.66.129.248", "9");
INSERT INTO `wp_rg_form_view` VALUES("61873", "3", "2017-08-10 12:41:17", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("61874", "6", "2017-08-10 12:41:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61875", "9", "2017-08-10 12:41:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61876", "8", "2017-08-10 12:41:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61877", "15", "2017-08-10 12:41:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61878", "10", "2017-08-10 13:09:25", "66.249.92.28", "3");
INSERT INTO `wp_rg_form_view` VALUES("61879", "14", "2017-08-10 13:42:03", "212.129.61.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("61880", "3", "2017-08-10 13:46:46", "40.77.167.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("61881", "10", "2017-08-10 14:24:04", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("61882", "10", "2017-08-10 15:24:38", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61883", "3", "2017-08-10 15:28:30", "217.182.132.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("61884", "3", "2017-08-10 16:23:16", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61885", "6", "2017-08-10 16:23:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61886", "9", "2017-08-10 16:23:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61887", "8", "2017-08-10 16:23:18", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61888", "10", "2017-08-10 16:23:19", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("61889", "15", "2017-08-10 16:23:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61890", "9", "2017-08-10 17:05:09", "51.255.65.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("61891", "14", "2017-08-10 17:16:52", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61892", "10", "2017-08-10 17:25:05", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61893", "10", "2017-08-10 18:25:03", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61894", "3", "2017-08-10 18:48:29", "180.76.15.141", "3");
INSERT INTO `wp_rg_form_view` VALUES("61895", "6", "2017-08-10 18:55:09", "46.229.168.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("61896", "10", "2017-08-10 19:00:31", "46.229.168.75", "13");
INSERT INTO `wp_rg_form_view` VALUES("61897", "3", "2017-08-10 19:06:29", "46.229.168.67", "33");
INSERT INTO `wp_rg_form_view` VALUES("61898", "11", "2017-08-10 19:08:22", "46.229.168.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("61899", "6", "2017-08-10 19:50:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61900", "9", "2017-08-10 19:50:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61901", "8", "2017-08-10 19:50:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61902", "15", "2017-08-10 19:50:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61903", "15", "2017-08-10 20:15:18", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61904", "3", "2017-08-10 20:22:49", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61905", "10", "2017-08-10 20:25:03", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61906", "10", "2017-08-10 21:25:05", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61907", "10", "2017-08-10 22:19:52", "180.76.15.153", "4");
INSERT INTO `wp_rg_form_view` VALUES("61908", "3", "2017-08-10 23:11:53", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("61909", "6", "2017-08-10 23:11:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61910", "9", "2017-08-10 23:11:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61911", "8", "2017-08-10 23:11:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61912", "10", "2017-08-10 23:11:56", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("61913", "15", "2017-08-10 23:11:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61914", "10", "2017-08-11 00:25:03", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61915", "3", "2017-08-11 00:35:29", "24.108.13.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("61916", "10", "2017-08-11 01:11:20", "217.182.132.28", "5");
INSERT INTO `wp_rg_form_view` VALUES("61917", "3", "2017-08-11 02:00:39", "141.8.144.124", "28");
INSERT INTO `wp_rg_form_view` VALUES("61918", "10", "2017-08-11 02:25:06", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61919", "6", "2017-08-11 02:30:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61920", "9", "2017-08-11 02:30:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61921", "8", "2017-08-11 02:30:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61922", "15", "2017-08-11 02:30:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61923", "10", "2017-08-11 03:25:05", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61924", "3", "2017-08-11 03:40:22", "217.182.132.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("61925", "3", "2017-08-11 04:00:58", "157.55.39.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("61926", "10", "2017-08-11 04:01:39", "72.14.199.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("61927", "14", "2017-08-11 04:53:23", "68.180.229.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("61928", "10", "2017-08-11 05:25:05", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61929", "3", "2017-08-11 05:58:01", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61930", "6", "2017-08-11 05:58:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61931", "9", "2017-08-11 05:58:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61932", "8", "2017-08-11 05:58:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61933", "15", "2017-08-11 05:58:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61934", "10", "2017-08-11 06:25:19", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("61935", "10", "2017-08-11 07:25:19", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61936", "14", "2017-08-11 07:28:33", "193.201.224.225", "2");
INSERT INTO `wp_rg_form_view` VALUES("61937", "14", "2017-08-11 08:04:12", "180.76.15.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("61938", "10", "2017-08-11 08:25:22", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61939", "15", "2017-08-11 08:37:29", "180.76.15.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("61940", "3", "2017-08-11 09:10:29", "68.180.229.245", "28");
INSERT INTO `wp_rg_form_view` VALUES("61941", "6", "2017-08-11 09:23:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61942", "9", "2017-08-11 09:23:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61943", "8", "2017-08-11 09:23:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61944", "10", "2017-08-11 09:23:14", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("61945", "15", "2017-08-11 09:23:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61946", "3", "2017-08-11 10:03:03", "157.55.39.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("61947", "10", "2017-08-11 10:25:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61948", "8", "2017-08-11 10:29:17", "40.77.167.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("61949", "10", "2017-08-11 11:25:22", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61950", "10", "2017-08-11 12:00:19", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("61951", "3", "2017-08-11 12:20:02", "157.55.39.214", "42");
INSERT INTO `wp_rg_form_view` VALUES("61952", "15", "2017-08-11 12:20:38", "40.77.167.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("61953", "9", "2017-08-11 12:21:52", "157.55.39.214", "2");
INSERT INTO `wp_rg_form_view` VALUES("61954", "6", "2017-08-11 12:22:09", "40.77.167.96", "3");
INSERT INTO `wp_rg_form_view` VALUES("61955", "8", "2017-08-11 12:48:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61956", "10", "2017-08-11 13:12:26", "157.55.39.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("61957", "10", "2017-08-11 14:25:21", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61958", "3", "2017-08-11 14:30:52", "51.255.71.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("61959", "3", "2017-08-11 15:05:15", "180.76.15.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("61960", "10", "2017-08-11 15:25:21", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61961", "3", "2017-08-11 16:12:51", "138.197.96.169", "28");
INSERT INTO `wp_rg_form_view` VALUES("61962", "8", "2017-08-11 16:13:02", "138.197.96.169", "3");
INSERT INTO `wp_rg_form_view` VALUES("61963", "6", "2017-08-11 16:15:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61964", "9", "2017-08-11 16:15:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61965", "10", "2017-08-11 16:15:56", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("61966", "15", "2017-08-11 16:15:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61967", "10", "2017-08-11 17:25:21", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61968", "10", "2017-08-11 18:18:12", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("61969", "3", "2017-08-11 19:04:49", "40.77.167.96", "29");
INSERT INTO `wp_rg_form_view` VALUES("61970", "10", "2017-08-11 19:05:43", "72.14.199.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("61971", "6", "2017-08-11 19:36:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61972", "9", "2017-08-11 19:36:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61973", "8", "2017-08-11 19:36:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61974", "15", "2017-08-11 19:36:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61975", "3", "2017-08-11 20:21:19", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61976", "10", "2017-08-11 20:25:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61977", "3", "2017-08-11 21:07:06", "23.95.27.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("61978", "10", "2017-08-11 21:25:25", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61979", "3", "2017-08-11 22:21:48", "50.98.165.111", "30");
INSERT INTO `wp_rg_form_view` VALUES("61980", "10", "2017-08-11 22:25:22", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("61981", "8", "2017-08-11 22:28:53", "99.199.2.175", "3");
INSERT INTO `wp_rg_form_view` VALUES("61982", "6", "2017-08-11 22:51:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61983", "9", "2017-08-11 22:51:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61984", "15", "2017-08-11 22:51:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61985", "3", "2017-08-11 23:00:36", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("61986", "10", "2017-08-11 23:25:23", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("61987", "10", "2017-08-12 00:18:05", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("61988", "10", "2017-08-12 01:25:24", "184.66.248.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("61989", "3", "2017-08-12 01:37:28", "216.244.66.247", "28");
INSERT INTO `wp_rg_form_view` VALUES("61990", "6", "2017-08-12 01:37:29", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61991", "9", "2017-08-12 01:37:30", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61992", "8", "2017-08-12 01:37:30", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("61993", "15", "2017-08-12 01:37:33", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("61994", "3", "2017-08-12 02:19:52", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("61995", "6", "2017-08-12 02:19:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61996", "9", "2017-08-12 02:19:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("61997", "8", "2017-08-12 02:19:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("61998", "10", "2017-08-12 02:19:55", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("61999", "15", "2017-08-12 02:19:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62000", "10", "2017-08-12 03:02:40", "180.76.15.141", "3");
INSERT INTO `wp_rg_form_view` VALUES("62001", "15", "2017-08-12 04:19:30", "40.77.167.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("62002", "10", "2017-08-12 04:25:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62003", "3", "2017-08-12 05:09:35", "108.180.119.43", "29");
INSERT INTO `wp_rg_form_view` VALUES("62004", "10", "2017-08-12 05:25:26", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62005", "14", "2017-08-12 05:30:17", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("62006", "6", "2017-08-12 05:40:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62007", "9", "2017-08-12 05:40:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62008", "8", "2017-08-12 05:40:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62009", "15", "2017-08-12 05:40:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62010", "10", "2017-08-12 06:25:26", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62011", "3", "2017-08-12 06:41:44", "37.187.56.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("62012", "8", "2017-08-12 06:43:12", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("62013", "14", "2017-08-12 06:43:33", "37.187.56.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("62014", "10", "2017-08-12 07:25:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62015", "10", "2017-08-12 08:25:27", "184.66.248.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("62016", "3", "2017-08-12 08:49:17", "51.255.71.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("62017", "3", "2017-08-12 09:00:26", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62018", "6", "2017-08-12 09:00:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62019", "9", "2017-08-12 09:00:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62020", "8", "2017-08-12 09:00:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62021", "10", "2017-08-12 09:00:31", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("62022", "15", "2017-08-12 09:00:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62023", "3", "2017-08-12 10:20:24", "180.76.15.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("62024", "10", "2017-08-12 10:25:25", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62025", "10", "2017-08-12 11:25:25", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62026", "10", "2017-08-12 12:00:21", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("62027", "3", "2017-08-12 12:23:18", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62028", "6", "2017-08-12 12:23:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62029", "9", "2017-08-12 12:23:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62030", "8", "2017-08-12 12:23:20", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62031", "15", "2017-08-12 12:23:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62032", "15", "2017-08-12 13:03:18", "180.76.15.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("62033", "10", "2017-08-12 13:25:28", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62034", "3", "2017-08-12 13:28:34", "99.199.80.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("62035", "10", "2017-08-12 14:21:59", "164.132.161.55", "6");
INSERT INTO `wp_rg_form_view` VALUES("62036", "14", "2017-08-12 14:32:29", "212.129.61.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("62037", "3", "2017-08-12 15:10:43", "164.132.162.164", "30");
INSERT INTO `wp_rg_form_view` VALUES("62038", "10", "2017-08-12 15:25:26", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62039", "14", "2017-08-12 15:32:37", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("62040", "9", "2017-08-12 15:42:20", "180.76.15.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("62041", "6", "2017-08-12 15:42:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62042", "8", "2017-08-12 15:42:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62043", "15", "2017-08-12 15:42:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62044", "10", "2017-08-12 16:25:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62045", "3", "2017-08-12 17:11:43", "164.132.161.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("62046", "10", "2017-08-12 17:25:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62047", "10", "2017-08-12 18:25:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62048", "3", "2017-08-12 18:29:04", "180.76.15.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("62049", "3", "2017-08-12 19:01:15", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62050", "6", "2017-08-12 19:01:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62051", "9", "2017-08-12 19:01:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62052", "8", "2017-08-12 19:01:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62053", "10", "2017-08-12 19:01:18", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("62054", "15", "2017-08-12 19:01:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62055", "3", "2017-08-12 20:07:50", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62056", "10", "2017-08-12 20:11:59", "207.46.13.164", "4");
INSERT INTO `wp_rg_form_view` VALUES("62057", "10", "2017-08-12 21:07:17", "72.14.199.73", "4");
INSERT INTO `wp_rg_form_view` VALUES("62058", "3", "2017-08-12 21:17:50", "157.55.39.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("62059", "3", "2017-08-12 22:00:26", "217.182.132.152", "29");
INSERT INTO `wp_rg_form_view` VALUES("62060", "6", "2017-08-12 22:12:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62061", "9", "2017-08-12 22:12:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62062", "8", "2017-08-12 22:12:24", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62063", "10", "2017-08-12 22:12:25", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("62064", "15", "2017-08-12 22:12:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62065", "10", "2017-08-12 23:06:04", "157.55.39.214", "3");
INSERT INTO `wp_rg_form_view` VALUES("62066", "10", "2017-08-13 00:25:30", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62067", "10", "2017-08-13 01:25:34", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62068", "3", "2017-08-13 01:30:17", "216.244.66.247", "28");
INSERT INTO `wp_rg_form_view` VALUES("62069", "6", "2017-08-13 01:49:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62070", "9", "2017-08-13 01:49:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62071", "8", "2017-08-13 01:49:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62072", "15", "2017-08-13 01:49:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62073", "10", "2017-08-13 02:25:30", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62074", "3", "2017-08-13 02:30:24", "217.182.132.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("62075", "12", "2017-08-13 02:30:26", "217.182.132.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("62076", "10", "2017-08-13 03:25:28", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62077", "3", "2017-08-13 04:20:21", "180.76.15.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("62078", "10", "2017-08-13 04:25:28", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62079", "3", "2017-08-13 05:19:56", "52.88.109.3", "54");
INSERT INTO `wp_rg_form_view` VALUES("62080", "6", "2017-08-13 05:19:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62081", "9", "2017-08-13 05:19:58", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("62082", "8", "2017-08-13 05:19:58", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("62083", "10", "2017-08-13 05:19:59", "52.88.109.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("62084", "15", "2017-08-13 05:20:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62085", "14", "2017-08-13 05:27:57", "31.187.66.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("62086", "10", "2017-08-13 06:11:41", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("62087", "3", "2017-08-13 07:07:01", "180.76.15.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("62088", "10", "2017-08-13 07:25:31", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62089", "10", "2017-08-13 08:07:49", "164.132.161.9", "10");
INSERT INTO `wp_rg_form_view` VALUES("62090", "3", "2017-08-13 08:51:16", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62091", "6", "2017-08-13 08:51:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62092", "9", "2017-08-13 08:51:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62093", "8", "2017-08-13 08:51:18", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62094", "15", "2017-08-13 08:51:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62095", "10", "2017-08-13 09:25:29", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62096", "10", "2017-08-13 10:13:19", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("62097", "10", "2017-08-13 11:25:32", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62098", "10", "2017-08-13 12:00:22", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("62099", "3", "2017-08-13 12:08:17", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62100", "6", "2017-08-13 12:08:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62101", "9", "2017-08-13 12:08:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62102", "8", "2017-08-13 12:08:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62103", "15", "2017-08-13 12:08:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62104", "3", "2017-08-13 13:01:01", "40.77.167.23", "20");
INSERT INTO `wp_rg_form_view` VALUES("62105", "15", "2017-08-13 13:01:15", "40.77.167.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("62106", "9", "2017-08-13 13:03:04", "157.55.39.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("62107", "6", "2017-08-13 13:03:13", "40.77.167.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("62108", "10", "2017-08-13 13:25:32", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62109", "10", "2017-08-13 14:25:32", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62110", "10", "2017-08-13 15:25:33", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62111", "3", "2017-08-13 15:32:50", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62112", "6", "2017-08-13 15:32:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62113", "9", "2017-08-13 15:32:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62114", "8", "2017-08-13 15:32:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62115", "15", "2017-08-13 15:32:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62116", "3", "2017-08-13 16:16:56", "180.76.15.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("62117", "10", "2017-08-13 16:25:33", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62118", "10", "2017-08-13 17:25:31", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62119", "3", "2017-08-13 17:58:36", "216.244.66.195", "27");
INSERT INTO `wp_rg_form_view` VALUES("62120", "6", "2017-08-13 17:58:36", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62121", "9", "2017-08-13 17:58:37", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62122", "8", "2017-08-13 17:58:38", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62123", "15", "2017-08-13 17:58:41", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62124", "10", "2017-08-13 18:25:31", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62125", "3", "2017-08-13 18:54:05", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62126", "6", "2017-08-13 18:54:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62127", "9", "2017-08-13 18:54:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62128", "8", "2017-08-13 18:54:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62129", "15", "2017-08-13 18:54:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62130", "3", "2017-08-13 19:11:05", "217.182.132.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("62131", "10", "2017-08-13 19:25:31", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62132", "3", "2017-08-13 20:09:07", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62133", "10", "2017-08-13 20:25:34", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62134", "15", "2017-08-13 21:16:06", "40.77.167.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("62135", "10", "2017-08-13 21:25:32", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62136", "3", "2017-08-13 22:13:27", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62137", "6", "2017-08-13 22:13:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62138", "9", "2017-08-13 22:13:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62139", "8", "2017-08-13 22:13:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62140", "10", "2017-08-13 22:13:29", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("62141", "15", "2017-08-13 22:13:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62142", "3", "2017-08-13 23:07:42", "164.132.161.2", "2");
INSERT INTO `wp_rg_form_view` VALUES("62143", "10", "2017-08-13 23:25:34", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62144", "10", "2017-08-14 00:25:37", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62145", "14", "2017-08-14 00:31:21", "40.77.167.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("62146", "3", "2017-08-14 00:51:43", "157.55.39.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("62147", "10", "2017-08-14 01:25:35", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62148", "3", "2017-08-14 01:46:20", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62149", "6", "2017-08-14 01:46:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62150", "9", "2017-08-14 01:46:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62151", "8", "2017-08-14 01:46:25", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62152", "15", "2017-08-14 01:46:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62153", "10", "2017-08-14 02:25:37", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62154", "3", "2017-08-14 02:49:25", "217.182.132.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("62155", "10", "2017-08-14 03:21:56", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("62156", "3", "2017-08-14 04:12:10", "40.77.167.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("62157", "10", "2017-08-14 04:25:33", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62158", "3", "2017-08-14 05:06:30", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62159", "6", "2017-08-14 05:06:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62160", "9", "2017-08-14 05:06:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62161", "8", "2017-08-14 05:06:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62162", "10", "2017-08-14 05:06:33", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("62163", "15", "2017-08-14 05:06:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62164", "10", "2017-08-14 06:15:35", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("62165", "3", "2017-08-14 06:34:17", "24.68.135.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("62166", "3", "2017-08-14 07:14:06", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("62167", "10", "2017-08-14 07:14:07", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("62168", "15", "2017-08-14 07:14:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62169", "8", "2017-08-14 08:01:58", "217.182.132.147", "3");
INSERT INTO `wp_rg_form_view` VALUES("62170", "3", "2017-08-14 08:18:18", "180.76.15.9", "28");
INSERT INTO `wp_rg_form_view` VALUES("62171", "10", "2017-08-14 08:25:34", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62172", "6", "2017-08-14 08:26:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62173", "9", "2017-08-14 08:26:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62174", "15", "2017-08-14 08:26:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62175", "10", "2017-08-14 09:25:34", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62176", "3", "2017-08-14 10:11:50", "51.255.65.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("62177", "10", "2017-08-14 10:25:34", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62178", "10", "2017-08-14 11:25:37", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62179", "3", "2017-08-14 11:46:49", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62180", "6", "2017-08-14 11:46:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62181", "9", "2017-08-14 11:46:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62182", "8", "2017-08-14 11:46:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62183", "15", "2017-08-14 11:46:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62184", "10", "2017-08-14 12:00:22", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("62185", "10", "2017-08-14 13:25:35", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62186", "3", "2017-08-14 14:02:04", "180.76.15.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("62187", "10", "2017-08-14 14:25:35", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62188", "3", "2017-08-14 15:09:10", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62189", "6", "2017-08-14 15:09:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62190", "9", "2017-08-14 15:09:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62191", "8", "2017-08-14 15:09:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62192", "10", "2017-08-14 15:09:15", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("62193", "15", "2017-08-14 15:09:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62194", "14", "2017-08-14 15:19:00", "70.67.58.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("62195", "3", "2017-08-14 16:02:49", "24.69.189.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("62196", "10", "2017-08-14 16:25:36", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62197", "9", "2017-08-14 16:55:54", "180.76.15.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("62198", "10", "2017-08-14 17:05:12", "72.14.199.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("62199", "14", "2017-08-14 17:35:31", "196.16.7.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("62200", "3", "2017-08-14 17:45:09", "51.255.65.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("62201", "10", "2017-08-14 18:25:39", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62202", "3", "2017-08-14 18:32:48", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62203", "6", "2017-08-14 18:32:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62204", "9", "2017-08-14 18:32:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62205", "8", "2017-08-14 18:32:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62206", "15", "2017-08-14 18:32:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62207", "3", "2017-08-14 19:09:15", "180.76.15.134", "35");
INSERT INTO `wp_rg_form_view` VALUES("62208", "14", "2017-08-14 19:19:40", "104.236.89.15", "6");
INSERT INTO `wp_rg_form_view` VALUES("62209", "6", "2017-08-14 19:23:32", "104.236.89.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("62210", "10", "2017-08-14 19:25:16", "104.236.89.15", "7");
INSERT INTO `wp_rg_form_view` VALUES("62211", "9", "2017-08-14 19:29:37", "104.236.89.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("62212", "15", "2017-08-14 19:35:43", "104.236.89.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("62213", "8", "2017-08-14 19:56:50", "104.236.89.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("62214", "10", "2017-08-14 20:25:47", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62215", "10", "2017-08-14 21:25:42", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62216", "3", "2017-08-14 21:57:29", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62217", "6", "2017-08-14 21:57:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62218", "9", "2017-08-14 21:57:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62219", "8", "2017-08-14 21:57:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62220", "15", "2017-08-14 21:57:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62221", "3", "2017-08-14 22:24:44", "104.196.24.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("62222", "10", "2017-08-14 22:25:40", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62223", "8", "2017-08-14 22:26:19", "104.196.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("62224", "10", "2017-08-14 23:04:43", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62225", "3", "2017-08-14 23:10:10", "51.255.71.116", "4");
INSERT INTO `wp_rg_form_view` VALUES("62226", "8", "2017-08-14 23:25:47", "159.203.169.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("62227", "14", "2017-08-14 23:55:46", "104.196.167.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("62228", "3", "2017-08-15 00:01:14", "104.196.167.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("62229", "10", "2017-08-15 00:05:01", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62230", "10", "2017-08-15 01:05:05", "184.66.248.195", "16");
INSERT INTO `wp_rg_form_view` VALUES("62231", "3", "2017-08-15 01:13:03", "104.196.167.196", "36");
INSERT INTO `wp_rg_form_view` VALUES("62232", "14", "2017-08-15 01:14:22", "104.196.167.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("62233", "15", "2017-08-15 01:16:48", "104.196.167.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("62234", "6", "2017-08-15 01:24:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62235", "9", "2017-08-15 01:24:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62236", "8", "2017-08-15 01:24:39", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("62237", "10", "2017-08-15 02:05:26", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("62238", "11", "2017-08-15 02:07:28", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("62239", "3", "2017-08-15 02:39:25", "104.196.159.88", "16");
INSERT INTO `wp_rg_form_view` VALUES("62240", "15", "2017-08-15 02:39:45", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("62241", "8", "2017-08-15 02:40:01", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("62242", "9", "2017-08-15 02:40:38", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("62243", "6", "2017-08-15 02:41:15", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("62244", "10", "2017-08-15 03:05:47", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62245", "10", "2017-08-15 04:06:07", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62246", "3", "2017-08-15 04:08:05", "104.196.217.246", "41");
INSERT INTO `wp_rg_form_view` VALUES("62247", "6", "2017-08-15 04:10:47", "104.196.217.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("62248", "9", "2017-08-15 04:53:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62249", "8", "2017-08-15 04:53:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62250", "15", "2017-08-15 04:53:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62251", "3", "2017-08-15 05:03:09", "104.196.24.131", "9");
INSERT INTO `wp_rg_form_view` VALUES("62252", "10", "2017-08-15 05:06:07", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62253", "10", "2017-08-15 06:06:28", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62254", "10", "2017-08-15 07:06:49", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62255", "10", "2017-08-15 08:07:09", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62256", "3", "2017-08-15 08:17:26", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62257", "6", "2017-08-15 08:17:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62258", "9", "2017-08-15 08:17:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62259", "8", "2017-08-15 08:17:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62260", "15", "2017-08-15 08:17:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62261", "10", "2017-08-15 09:07:30", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62262", "3", "2017-08-15 10:01:54", "24.69.147.84", "28");
INSERT INTO `wp_rg_form_view` VALUES("62263", "10", "2017-08-15 10:07:50", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62264", "6", "2017-08-15 10:49:02", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62265", "9", "2017-08-15 10:49:03", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62266", "8", "2017-08-15 10:49:03", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("62267", "15", "2017-08-15 10:49:06", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62268", "10", "2017-08-15 11:08:11", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62269", "3", "2017-08-15 11:36:48", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62270", "6", "2017-08-15 11:36:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62271", "9", "2017-08-15 11:36:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62272", "8", "2017-08-15 11:36:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62273", "15", "2017-08-15 11:36:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62274", "10", "2017-08-15 12:01:58", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("62275", "10", "2017-08-15 13:00:31", "180.76.15.9", "5");
INSERT INTO `wp_rg_form_view` VALUES("62276", "8", "2017-08-15 13:20:47", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("62277", "15", "2017-08-15 13:32:22", "164.132.161.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("62278", "3", "2017-08-15 13:33:51", "180.76.15.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("62279", "3", "2017-08-15 14:06:53", "51.255.65.27", "31");
INSERT INTO `wp_rg_form_view` VALUES("62280", "10", "2017-08-15 14:09:13", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62281", "6", "2017-08-15 14:59:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62282", "9", "2017-08-15 14:59:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62283", "8", "2017-08-15 14:59:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62284", "15", "2017-08-15 14:59:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62285", "10", "2017-08-15 15:09:33", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62286", "6", "2017-08-15 15:38:32", "46.229.168.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("62287", "3", "2017-08-15 15:39:08", "46.229.168.73", "10");
INSERT INTO `wp_rg_form_view` VALUES("62288", "15", "2017-08-15 15:41:38", "46.229.168.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("62289", "10", "2017-08-15 16:09:37", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62290", "8", "2017-08-15 16:56:01", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("62291", "3", "2017-08-15 16:56:37", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("62292", "10", "2017-08-15 17:09:42", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62293", "3", "2017-08-15 17:10:25", "40.77.167.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("62294", "8", "2017-08-15 17:36:11", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("62295", "10", "2017-08-15 18:09:42", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62296", "3", "2017-08-15 18:36:44", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62297", "6", "2017-08-15 18:36:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62298", "9", "2017-08-15 18:36:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62299", "8", "2017-08-15 18:36:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62300", "15", "2017-08-15 18:36:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62301", "5", "2017-08-15 18:47:01", "164.132.161.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("62302", "3", "2017-08-15 19:13:48", "180.76.15.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("62303", "10", "2017-08-15 19:15:58", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62304", "3", "2017-08-15 20:10:50", "154.5.209.143", "4");
INSERT INTO `wp_rg_form_view` VALUES("62305", "10", "2017-08-15 20:10:57", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("62306", "10", "2017-08-15 21:04:21", "72.14.199.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("62307", "3", "2017-08-15 21:56:03", "52.88.109.3", "27");
INSERT INTO `wp_rg_form_view` VALUES("62308", "6", "2017-08-15 21:56:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62309", "9", "2017-08-15 21:56:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62310", "8", "2017-08-15 21:56:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62311", "15", "2017-08-15 21:56:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62312", "10", "2017-08-15 22:16:40", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62313", "8", "2017-08-15 22:32:05", "70.67.51.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("62314", "10", "2017-08-15 23:05:52", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("62315", "3", "2017-08-16 00:10:59", "154.5.209.143", "30");
INSERT INTO `wp_rg_form_view` VALUES("62316", "10", "2017-08-16 00:12:05", "216.244.66.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("62317", "6", "2017-08-16 00:14:32", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62318", "9", "2017-08-16 00:14:34", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62319", "8", "2017-08-16 00:14:35", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("62320", "15", "2017-08-16 00:14:41", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62321", "11", "2017-08-16 00:19:09", "164.132.161.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("62322", "3", "2017-08-16 01:13:53", "96.50.5.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("62323", "10", "2017-08-16 01:17:44", "184.66.248.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("62324", "6", "2017-08-16 01:21:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62325", "9", "2017-08-16 01:21:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62326", "8", "2017-08-16 01:21:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62327", "15", "2017-08-16 01:21:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62328", "11", "2017-08-16 01:53:08", "40.77.167.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("62329", "10", "2017-08-16 02:11:11", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("62330", "3", "2017-08-16 02:44:25", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("62331", "3", "2017-08-16 03:12:50", "180.76.15.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("62332", "10", "2017-08-16 03:18:02", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62333", "3", "2017-08-16 04:07:39", "66.249.79.135", "29");
INSERT INTO `wp_rg_form_view` VALUES("62334", "10", "2017-08-16 04:11:59", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("62335", "6", "2017-08-16 04:43:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62336", "9", "2017-08-16 04:43:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62337", "8", "2017-08-16 04:43:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62338", "15", "2017-08-16 04:44:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62339", "10", "2017-08-16 05:18:44", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62340", "3", "2017-08-16 05:27:56", "40.77.167.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("62341", "3", "2017-08-16 06:01:26", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("62342", "10", "2017-08-16 06:19:04", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62343", "10", "2017-08-16 07:19:05", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62344", "3", "2017-08-16 08:11:12", "151.80.46.90", "30");
INSERT INTO `wp_rg_form_view` VALUES("62345", "6", "2017-08-16 08:14:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62346", "9", "2017-08-16 08:14:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62347", "8", "2017-08-16 08:14:19", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("62348", "10", "2017-08-16 08:14:20", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("62349", "15", "2017-08-16 08:14:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62350", "10", "2017-08-16 09:19:27", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62351", "10", "2017-08-16 10:19:28", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62352", "10", "2017-08-16 11:19:49", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62353", "3", "2017-08-16 11:36:24", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62354", "6", "2017-08-16 11:36:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62355", "9", "2017-08-16 11:36:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62356", "8", "2017-08-16 11:36:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62357", "15", "2017-08-16 11:36:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62358", "14", "2017-08-16 11:37:56", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("62359", "10", "2017-08-16 12:00:23", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("62360", "3", "2017-08-16 12:17:10", "46.118.154.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("62361", "8", "2017-08-16 12:25:08", "174.3.52.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("62362", "3", "2017-08-16 13:08:47", "194.187.170.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("62363", "10", "2017-08-16 13:20:09", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62364", "11", "2017-08-16 13:29:40", "194.187.170.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("62365", "10", "2017-08-16 14:20:30", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62366", "3", "2017-08-16 14:43:01", "51.255.71.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("62367", "3", "2017-08-16 15:07:46", "52.88.109.3", "38");
INSERT INTO `wp_rg_form_view` VALUES("62368", "6", "2017-08-16 15:07:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62369", "9", "2017-08-16 15:07:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62370", "8", "2017-08-16 15:07:48", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62371", "10", "2017-08-16 15:07:49", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("62372", "15", "2017-08-16 15:07:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62373", "11", "2017-08-16 15:17:51", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("62374", "5", "2017-08-16 15:18:49", "207.46.13.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("62375", "10", "2017-08-16 16:20:48", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62376", "3", "2017-08-16 16:33:50", "184.66.49.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("62377", "10", "2017-08-16 17:20:48", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62378", "3", "2017-08-16 18:01:15", "180.76.15.14", "34");
INSERT INTO `wp_rg_form_view` VALUES("62379", "10", "2017-08-16 18:20:48", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62380", "6", "2017-08-16 18:30:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62381", "9", "2017-08-16 18:30:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62382", "8", "2017-08-16 18:30:20", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("62383", "15", "2017-08-16 18:30:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62384", "10", "2017-08-16 19:20:46", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62385", "3", "2017-08-16 19:28:43", "180.76.15.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("62386", "9", "2017-08-16 19:51:07", "207.46.13.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("62387", "10", "2017-08-16 20:20:49", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62388", "10", "2017-08-16 21:20:48", "184.66.248.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("62389", "3", "2017-08-16 21:39:14", "138.201.34.170", "38");
INSERT INTO `wp_rg_form_view` VALUES("62390", "8", "2017-08-16 21:40:33", "138.201.34.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("62391", "14", "2017-08-16 21:42:27", "138.201.34.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("62392", "15", "2017-08-16 21:43:54", "138.201.34.170", "3");
INSERT INTO `wp_rg_form_view` VALUES("62393", "6", "2017-08-16 21:57:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62394", "9", "2017-08-16 21:57:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62395", "10", "2017-08-16 22:11:17", "164.132.161.54", "4");
INSERT INTO `wp_rg_form_view` VALUES("62396", "10", "2017-08-16 23:20:46", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62397", "3", "2017-08-16 23:58:43", "72.143.223.159", "3");
INSERT INTO `wp_rg_form_view` VALUES("62398", "10", "2017-08-17 00:20:49", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62399", "14", "2017-08-17 00:32:37", "5.255.250.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("62400", "3", "2017-08-17 00:44:09", "96.50.20.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("62401", "3", "2017-08-17 01:19:49", "52.88.109.3", "57");
INSERT INTO `wp_rg_form_view` VALUES("62402", "6", "2017-08-17 01:19:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62403", "9", "2017-08-17 01:19:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62404", "8", "2017-08-17 01:19:55", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("62405", "10", "2017-08-17 01:19:56", "52.88.109.3", "13");
INSERT INTO `wp_rg_form_view` VALUES("62406", "15", "2017-08-17 01:19:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62407", "10", "2017-08-17 02:20:49", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62408", "3", "2017-08-17 02:39:35", "164.132.161.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("62409", "3", "2017-08-17 03:05:43", "157.55.39.119", "195");
INSERT INTO `wp_rg_form_view` VALUES("62410", "10", "2017-08-17 03:20:49", "184.66.248.195", "37");
INSERT INTO `wp_rg_form_view` VALUES("62411", "14", "2017-08-17 03:32:43", "31.187.66.52", "4");
INSERT INTO `wp_rg_form_view` VALUES("62412", "12", "2017-08-17 03:38:51", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("62413", "8", "2017-08-17 03:40:02", "138.201.34.170", "15");
INSERT INTO `wp_rg_form_view` VALUES("62414", "15", "2017-08-17 03:43:31", "138.201.34.170", "7");
INSERT INTO `wp_rg_form_view` VALUES("62415", "6", "2017-08-17 03:46:34", "138.201.34.170", "6");
INSERT INTO `wp_rg_form_view` VALUES("62416", "9", "2017-08-17 03:46:35", "138.201.34.170", "6");
INSERT INTO `wp_rg_form_view` VALUES("62417", "10", "2017-08-17 04:20:46", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62418", "3", "2017-08-17 04:48:48", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62419", "6", "2017-08-17 04:48:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62420", "9", "2017-08-17 04:48:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62421", "8", "2017-08-17 04:48:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62422", "15", "2017-08-17 04:48:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62423", "10", "2017-08-17 05:20:48", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62424", "10", "2017-08-17 06:20:49", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62425", "3", "2017-08-17 06:30:46", "207.46.13.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("62426", "10", "2017-08-17 07:20:46", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62427", "3", "2017-08-17 08:18:20", "52.88.109.3", "133");
INSERT INTO `wp_rg_form_view` VALUES("62428", "6", "2017-08-17 08:18:21", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62429", "9", "2017-08-17 08:18:22", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62430", "8", "2017-08-17 08:18:22", "52.88.109.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("62431", "10", "2017-08-17 08:18:23", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("62432", "15", "2017-08-17 08:18:25", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("62433", "10", "2017-08-17 09:20:49", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62434", "3", "2017-08-17 10:04:15", "180.76.15.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("62435", "10", "2017-08-17 10:20:47", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62436", "10", "2017-08-17 11:10:59", "180.76.15.148", "8");
INSERT INTO `wp_rg_form_view` VALUES("62437", "3", "2017-08-17 11:44:26", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62438", "6", "2017-08-17 11:44:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62439", "9", "2017-08-17 11:44:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62440", "8", "2017-08-17 11:44:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62441", "15", "2017-08-17 11:44:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62442", "10", "2017-08-17 12:00:19", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("62443", "14", "2017-08-17 12:08:58", "58.187.170.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("62444", "3", "2017-08-17 12:17:35", "180.76.15.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("62445", "10", "2017-08-17 13:20:49", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("62446", "3", "2017-08-17 13:25:11", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("62447", "11", "2017-08-17 14:00:19", "194.187.170.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("62448", "10", "2017-08-17 14:20:54", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62449", "3", "2017-08-17 15:12:28", "104.155.189.59", "56");
INSERT INTO `wp_rg_form_view` VALUES("62450", "6", "2017-08-17 15:12:29", "104.155.189.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("62451", "9", "2017-08-17 15:12:30", "104.155.189.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("62452", "8", "2017-08-17 15:12:30", "104.155.189.59", "4");
INSERT INTO `wp_rg_form_view` VALUES("62453", "10", "2017-08-17 15:12:31", "104.155.189.59", "12");
INSERT INTO `wp_rg_form_view` VALUES("62454", "15", "2017-08-17 15:12:33", "104.155.189.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("62455", "3", "2017-08-17 16:17:12", "180.76.15.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("62456", "10", "2017-08-17 16:20:49", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62457", "10", "2017-08-17 17:08:28", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("62458", "3", "2017-08-17 17:51:44", "70.67.56.20", "3");
INSERT INTO `wp_rg_form_view` VALUES("62459", "14", "2017-08-17 17:55:52", "70.67.56.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("62460", "3", "2017-08-17 18:01:48", "109.169.29.30", "35");
INSERT INTO `wp_rg_form_view` VALUES("62461", "14", "2017-08-17 18:14:05", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62462", "10", "2017-08-17 18:20:56", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62463", "6", "2017-08-17 18:47:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62464", "9", "2017-08-17 18:47:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62465", "8", "2017-08-17 18:47:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62466", "15", "2017-08-17 18:47:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62467", "10", "2017-08-17 19:21:10", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62468", "10", "2017-08-17 20:21:10", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62469", "10", "2017-08-17 21:17:56", "68.180.230.188", "4");
INSERT INTO `wp_rg_form_view` VALUES("62470", "15", "2017-08-17 21:22:40", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62471", "3", "2017-08-17 21:28:17", "142.25.150.212", "2");
INSERT INTO `wp_rg_form_view` VALUES("62472", "3", "2017-08-17 22:00:26", "216.244.66.195", "56");
INSERT INTO `wp_rg_form_view` VALUES("62473", "6", "2017-08-17 22:00:27", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62474", "9", "2017-08-17 22:00:28", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62475", "8", "2017-08-17 22:00:28", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("62476", "10", "2017-08-17 22:00:29", "216.244.66.195", "13");
INSERT INTO `wp_rg_form_view` VALUES("62477", "15", "2017-08-17 22:00:31", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62478", "8", "2017-08-17 23:10:07", "180.76.15.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("62479", "10", "2017-08-17 23:21:08", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62480", "3", "2017-08-17 23:43:26", "180.76.15.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("62481", "10", "2017-08-18 00:10:58", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("62482", "10", "2017-08-18 01:21:12", "184.66.248.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("62483", "3", "2017-08-18 01:48:25", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62484", "6", "2017-08-18 01:48:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62485", "9", "2017-08-18 01:48:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62486", "8", "2017-08-18 01:48:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62487", "15", "2017-08-18 01:48:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62488", "10", "2017-08-18 02:21:12", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62489", "10", "2017-08-18 03:21:13", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62490", "10", "2017-08-18 04:21:11", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62491", "3", "2017-08-18 04:54:25", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("62492", "15", "2017-08-18 05:05:36", "40.77.167.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("62493", "3", "2017-08-18 05:07:27", "158.69.229.6", "35");
INSERT INTO `wp_rg_form_view` VALUES("62494", "8", "2017-08-18 05:08:24", "158.69.229.6", "3");
INSERT INTO `wp_rg_form_view` VALUES("62495", "10", "2017-08-18 05:21:12", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62496", "6", "2017-08-18 05:29:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62497", "9", "2017-08-18 05:29:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62498", "10", "2017-08-18 06:21:12", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62499", "3", "2017-08-18 06:50:14", "68.180.230.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("62500", "3", "2017-08-18 07:02:29", "24.108.168.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("62501", "10", "2017-08-18 07:21:12", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62502", "10", "2017-08-18 08:21:12", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62503", "3", "2017-08-18 08:58:27", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62504", "6", "2017-08-18 08:58:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62505", "9", "2017-08-18 08:58:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62506", "8", "2017-08-18 08:58:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62507", "15", "2017-08-18 08:58:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62508", "10", "2017-08-18 09:21:10", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62509", "10", "2017-08-18 10:21:12", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62510", "10", "2017-08-18 11:12:07", "157.55.39.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("62511", "10", "2017-08-18 12:00:20", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("62512", "3", "2017-08-18 12:15:02", "180.76.15.145", "29");
INSERT INTO `wp_rg_form_view` VALUES("62513", "6", "2017-08-18 12:31:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62514", "9", "2017-08-18 12:31:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62515", "8", "2017-08-18 12:31:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62516", "15", "2017-08-18 12:31:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62517", "10", "2017-08-18 13:21:11", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62518", "3", "2017-08-18 13:53:32", "207.115.104.72", "6");
INSERT INTO `wp_rg_form_view` VALUES("62519", "8", "2017-08-18 13:53:45", "207.115.104.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("62520", "3", "2017-08-18 14:06:04", "207.115.104.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("62521", "8", "2017-08-18 14:06:50", "207.115.104.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("62522", "10", "2017-08-18 14:18:41", "157.55.39.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("62523", "10", "2017-08-18 15:21:14", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62524", "3", "2017-08-18 15:58:12", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62525", "6", "2017-08-18 15:58:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62526", "9", "2017-08-18 15:58:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62527", "8", "2017-08-18 15:58:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62528", "15", "2017-08-18 15:58:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62529", "3", "2017-08-18 16:02:43", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("62530", "6", "2017-08-18 16:02:44", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62531", "9", "2017-08-18 16:02:45", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62532", "8", "2017-08-18 16:02:45", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("62533", "10", "2017-08-18 16:02:46", "216.244.66.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("62534", "15", "2017-08-18 16:02:48", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62535", "10", "2017-08-18 17:21:14", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62536", "10", "2017-08-18 18:21:14", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62537", "14", "2017-08-18 18:54:40", "70.67.60.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("62538", "3", "2017-08-18 18:55:01", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("62539", "3", "2017-08-18 19:10:35", "66.249.79.137", "29");
INSERT INTO `wp_rg_form_view` VALUES("62540", "10", "2017-08-18 19:21:14", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62541", "6", "2017-08-18 19:27:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62542", "9", "2017-08-18 19:27:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62543", "8", "2017-08-18 19:27:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62544", "15", "2017-08-18 19:27:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62545", "10", "2017-08-18 20:21:14", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62546", "11", "2017-08-18 20:38:32", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("62547", "3", "2017-08-18 20:58:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62548", "3", "2017-08-18 21:17:46", "157.55.39.210", "6");
INSERT INTO `wp_rg_form_view` VALUES("62549", "10", "2017-08-18 21:20:27", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("62550", "10", "2017-08-18 22:21:15", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62551", "3", "2017-08-18 22:32:36", "157.55.39.210", "32");
INSERT INTO `wp_rg_form_view` VALUES("62552", "8", "2017-08-18 22:38:57", "40.77.167.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("62553", "6", "2017-08-18 22:59:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62554", "9", "2017-08-18 22:59:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62555", "15", "2017-08-18 22:59:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62556", "10", "2017-08-18 23:21:15", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62557", "8", "2017-08-18 23:21:45", "180.76.15.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("62558", "3", "2017-08-18 23:55:05", "180.76.15.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("62559", "10", "2017-08-19 00:21:15", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62560", "10", "2017-08-19 01:21:17", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62561", "10", "2017-08-19 02:21:15", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62562", "3", "2017-08-19 02:29:27", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62563", "6", "2017-08-19 02:29:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62564", "9", "2017-08-19 02:29:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62565", "8", "2017-08-19 02:29:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62566", "15", "2017-08-19 02:29:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62567", "10", "2017-08-19 03:09:24", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62568", "3", "2017-08-19 03:35:07", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62569", "14", "2017-08-19 03:50:29", "190.112.193.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62570", "10", "2017-08-19 04:21:16", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62571", "3", "2017-08-19 04:51:43", "180.76.15.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("62572", "3", "2017-08-19 05:03:50", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("62573", "10", "2017-08-19 05:21:16", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("62574", "3", "2017-08-19 06:00:57", "52.88.109.3", "61");
INSERT INTO `wp_rg_form_view` VALUES("62575", "6", "2017-08-19 06:00:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62576", "9", "2017-08-19 06:00:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62577", "8", "2017-08-19 06:00:59", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62578", "10", "2017-08-19 06:01:00", "52.88.109.3", "13");
INSERT INTO `wp_rg_form_view` VALUES("62579", "15", "2017-08-19 06:01:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62580", "10", "2017-08-19 07:21:16", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62581", "3", "2017-08-19 07:38:21", "180.76.15.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("62582", "10", "2017-08-19 08:12:01", "157.55.39.99", "3");
INSERT INTO `wp_rg_form_view` VALUES("62583", "3", "2017-08-19 08:37:49", "77.75.76.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("62584", "10", "2017-08-19 09:21:17", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62585", "3", "2017-08-19 09:37:15", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62586", "6", "2017-08-19 09:37:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62587", "9", "2017-08-19 09:37:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62588", "8", "2017-08-19 09:37:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62589", "15", "2017-08-19 09:37:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62590", "10", "2017-08-19 10:21:15", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62591", "14", "2017-08-19 10:23:25", "77.75.78.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("62592", "3", "2017-08-19 11:14:02", "178.210.90.90", "141");
INSERT INTO `wp_rg_form_view` VALUES("62593", "6", "2017-08-19 11:14:03", "178.210.90.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("62594", "9", "2017-08-19 11:14:04", "178.210.90.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("62595", "8", "2017-08-19 11:14:04", "178.210.90.90", "10");
INSERT INTO `wp_rg_form_view` VALUES("62596", "10", "2017-08-19 11:14:05", "178.210.90.90", "27");
INSERT INTO `wp_rg_form_view` VALUES("62597", "15", "2017-08-19 11:14:07", "178.210.90.90", "5");
INSERT INTO `wp_rg_form_view` VALUES("62598", "10", "2017-08-19 12:00:22", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("62599", "3", "2017-08-19 12:20:15", "180.76.15.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("62600", "3", "2017-08-19 13:01:37", "216.244.66.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("62601", "6", "2017-08-19 13:12:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62602", "9", "2017-08-19 13:12:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62603", "8", "2017-08-19 13:12:18", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62604", "10", "2017-08-19 13:12:18", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("62605", "15", "2017-08-19 13:12:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62606", "10", "2017-08-19 14:21:16", "184.66.248.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("62607", "3", "2017-08-19 14:24:26", "40.77.167.0", "17");
INSERT INTO `wp_rg_form_view` VALUES("62608", "9", "2017-08-19 14:25:00", "157.55.39.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("62609", "10", "2017-08-19 15:10:05", "68.180.230.188", "4");
INSERT INTO `wp_rg_form_view` VALUES("62610", "9", "2017-08-19 15:17:31", "217.182.132.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("62611", "3", "2017-08-19 15:26:35", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("62612", "3", "2017-08-19 16:13:35", "180.76.15.141", "31");
INSERT INTO `wp_rg_form_view` VALUES("62613", "10", "2017-08-19 16:21:16", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62614", "14", "2017-08-19 16:34:56", "96.50.26.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("62615", "6", "2017-08-19 16:43:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62616", "9", "2017-08-19 16:43:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62617", "8", "2017-08-19 16:43:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62618", "15", "2017-08-19 16:43:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62619", "12", "2017-08-19 17:20:17", "180.76.15.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("62620", "10", "2017-08-19 17:21:16", "184.66.248.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("62621", "3", "2017-08-19 17:48:04", "164.132.161.36", "31");
INSERT INTO `wp_rg_form_view` VALUES("62622", "6", "2017-08-19 17:57:48", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62623", "9", "2017-08-19 17:57:50", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62624", "8", "2017-08-19 17:57:51", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("62625", "15", "2017-08-19 17:57:53", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62626", "10", "2017-08-19 18:16:43", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("62627", "3", "2017-08-19 18:35:34", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("62628", "10", "2017-08-19 19:21:21", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62629", "3", "2017-08-19 19:32:49", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62630", "3", "2017-08-19 20:01:52", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("62631", "6", "2017-08-19 20:01:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62632", "9", "2017-08-19 20:01:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62633", "8", "2017-08-19 20:01:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62634", "10", "2017-08-19 20:01:54", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("62635", "15", "2017-08-19 20:01:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62636", "3", "2017-08-19 21:13:05", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("62637", "10", "2017-08-19 21:21:19", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62638", "3", "2017-08-19 22:04:32", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62639", "10", "2017-08-19 22:21:19", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62640", "14", "2017-08-19 22:27:48", "209.52.88.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("62641", "10", "2017-08-19 23:21:19", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62642", "3", "2017-08-19 23:25:47", "157.55.39.164", "30");
INSERT INTO `wp_rg_form_view` VALUES("62643", "6", "2017-08-19 23:29:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62644", "9", "2017-08-19 23:29:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62645", "8", "2017-08-19 23:29:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62646", "15", "2017-08-19 23:29:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62647", "6", "2017-08-20 00:05:41", "51.255.71.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("62648", "10", "2017-08-20 00:21:20", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62649", "3", "2017-08-20 00:25:15", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62650", "10", "2017-08-20 01:08:25", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("62651", "3", "2017-08-20 01:17:21", "180.76.15.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("62652", "14", "2017-08-20 02:04:51", "149.56.201.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("62653", "10", "2017-08-20 02:21:20", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62654", "3", "2017-08-20 02:48:27", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62655", "3", "2017-08-20 03:00:22", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62656", "6", "2017-08-20 03:00:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62657", "9", "2017-08-20 03:00:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62658", "8", "2017-08-20 03:00:24", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62659", "10", "2017-08-20 03:00:25", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("62660", "15", "2017-08-20 03:00:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62661", "14", "2017-08-20 03:01:16", "70.66.184.25", "3");
INSERT INTO `wp_rg_form_view` VALUES("62662", "3", "2017-08-20 04:03:58", "180.76.15.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("62663", "10", "2017-08-20 04:21:18", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62664", "10", "2017-08-20 05:21:19", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62665", "10", "2017-08-20 06:21:22", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62666", "3", "2017-08-20 06:39:28", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62667", "6", "2017-08-20 06:39:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62668", "9", "2017-08-20 06:39:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62669", "8", "2017-08-20 06:39:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62670", "15", "2017-08-20 06:39:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62671", "10", "2017-08-20 07:21:21", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62672", "15", "2017-08-20 07:37:40", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62673", "9", "2017-08-20 07:37:44", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62674", "10", "2017-08-20 08:21:22", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("62675", "15", "2017-08-20 09:02:12", "40.77.167.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("62676", "10", "2017-08-20 09:21:22", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62677", "3", "2017-08-20 09:40:37", "40.77.167.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("62678", "3", "2017-08-20 10:14:11", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("62679", "12", "2017-08-20 10:17:56", "51.255.65.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("62680", "10", "2017-08-20 10:21:20", "184.66.248.195", "13");
INSERT INTO `wp_rg_form_view` VALUES("62681", "6", "2017-08-20 10:25:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62682", "9", "2017-08-20 10:25:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62683", "8", "2017-08-20 10:25:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62684", "15", "2017-08-20 10:25:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62685", "10", "2017-08-20 11:08:44", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62686", "10", "2017-08-20 12:00:20", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("62687", "3", "2017-08-20 12:45:01", "207.115.104.72", "6");
INSERT INTO `wp_rg_form_view` VALUES("62688", "8", "2017-08-20 12:45:15", "207.115.104.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("62689", "8", "2017-08-20 13:00:13", "207.115.104.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("62690", "3", "2017-08-20 13:01:08", "207.115.104.72", "29");
INSERT INTO `wp_rg_form_view` VALUES("62691", "10", "2017-08-20 13:21:22", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62692", "6", "2017-08-20 13:51:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62693", "9", "2017-08-20 13:51:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62694", "15", "2017-08-20 13:51:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62695", "3", "2017-08-20 14:19:11", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62696", "10", "2017-08-20 14:21:21", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62697", "10", "2017-08-20 15:21:23", "184.66.248.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("62698", "3", "2017-08-20 15:31:35", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("62699", "15", "2017-08-20 15:31:36", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62700", "3", "2017-08-20 16:11:28", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("62701", "10", "2017-08-20 16:21:23", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62702", "10", "2017-08-20 17:21:23", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62703", "3", "2017-08-20 17:21:50", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62704", "6", "2017-08-20 17:21:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62705", "9", "2017-08-20 17:21:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62706", "8", "2017-08-20 17:21:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62707", "15", "2017-08-20 17:21:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62708", "3", "2017-08-20 18:11:37", "137.74.207.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("62709", "10", "2017-08-20 18:21:25", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62710", "3", "2017-08-20 19:18:19", "54.156.76.240", "3");
INSERT INTO `wp_rg_form_view` VALUES("62711", "8", "2017-08-20 19:20:18", "54.156.76.240", "2");
INSERT INTO `wp_rg_form_view` VALUES("62712", "10", "2017-08-20 19:21:31", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62713", "10", "2017-08-20 20:21:25", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62714", "3", "2017-08-20 20:30:46", "180.76.15.21", "29");
INSERT INTO `wp_rg_form_view` VALUES("62715", "6", "2017-08-20 20:48:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62716", "9", "2017-08-20 20:48:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62717", "8", "2017-08-20 20:48:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62718", "15", "2017-08-20 20:48:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62719", "10", "2017-08-20 21:21:25", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62720", "15", "2017-08-20 22:04:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62721", "3", "2017-08-20 22:10:46", "180.76.15.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("62722", "10", "2017-08-20 22:21:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62723", "14", "2017-08-20 23:02:45", "103.75.182.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("62724", "10", "2017-08-20 23:13:13", "72.14.199.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("62725", "3", "2017-08-20 23:17:29", "180.76.15.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("62726", "10", "2017-08-21 00:21:22", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62727", "3", "2017-08-21 00:24:50", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("62728", "6", "2017-08-21 00:24:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62729", "9", "2017-08-21 00:24:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62730", "8", "2017-08-21 00:24:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62731", "15", "2017-08-21 00:24:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62732", "10", "2017-08-21 01:21:23", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62733", "3", "2017-08-21 01:50:47", "51.255.65.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("62734", "10", "2017-08-21 02:21:25", "184.66.248.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62735", "14", "2017-08-21 02:29:10", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("62736", "3", "2017-08-21 02:40:06", "164.132.162.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("62737", "3", "2017-08-21 03:10:19", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("62738", "10", "2017-08-21 03:21:25", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62739", "6", "2017-08-21 03:54:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62740", "9", "2017-08-21 03:54:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62741", "8", "2017-08-21 03:54:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62742", "15", "2017-08-21 03:54:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62743", "10", "2017-08-21 04:21:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62744", "3", "2017-08-21 05:04:52", "51.255.65.31", "2");
INSERT INTO `wp_rg_form_view` VALUES("62745", "10", "2017-08-21 05:21:26", "184.66.248.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("62746", "3", "2017-08-21 06:08:26", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62747", "10", "2017-08-21 06:21:24", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62748", "3", "2017-08-21 07:16:12", "89.98.140.88", "33");
INSERT INTO `wp_rg_form_view` VALUES("62749", "10", "2017-08-21 07:21:26", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62750", "6", "2017-08-21 07:29:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62751", "9", "2017-08-21 07:29:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62752", "8", "2017-08-21 07:29:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62753", "15", "2017-08-21 07:29:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62754", "10", "2017-08-21 08:21:27", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62755", "10", "2017-08-21 09:21:27", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62756", "15", "2017-08-21 10:04:19", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62757", "10", "2017-08-21 10:21:25", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62758", "3", "2017-08-21 10:43:17", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62759", "3", "2017-08-21 11:03:15", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62760", "6", "2017-08-21 11:03:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62761", "9", "2017-08-21 11:03:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62762", "8", "2017-08-21 11:03:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62763", "10", "2017-08-21 11:03:17", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("62764", "15", "2017-08-21 11:03:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62765", "14", "2017-08-21 11:18:32", "180.76.15.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("62766", "12", "2017-08-21 11:51:46", "180.76.15.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("62767", "10", "2017-08-21 12:00:20", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("62768", "10", "2017-08-21 13:10:27", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("62769", "3", "2017-08-21 14:02:56", "180.76.15.27", "29");
INSERT INTO `wp_rg_form_view` VALUES("62770", "10", "2017-08-21 14:21:28", "184.66.248.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("62771", "6", "2017-08-21 14:41:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62772", "9", "2017-08-21 14:41:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62773", "8", "2017-08-21 14:41:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62774", "15", "2017-08-21 14:41:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62775", "3", "2017-08-21 15:02:24", "24.244.32.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("62776", "10", "2017-08-21 15:21:28", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62777", "3", "2017-08-21 16:16:12", "24.68.157.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("62778", "10", "2017-08-21 16:21:26", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62779", "10", "2017-08-21 17:21:29", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62780", "10", "2017-08-21 18:09:12", "192.40.235.106", "9");
INSERT INTO `wp_rg_form_view` VALUES("62781", "3", "2017-08-21 18:14:38", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62782", "6", "2017-08-21 18:14:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62783", "9", "2017-08-21 18:14:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62784", "8", "2017-08-21 18:14:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62785", "15", "2017-08-21 18:14:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62786", "14", "2017-08-21 18:54:16", "180.76.15.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("62787", "3", "2017-08-21 19:17:07", "40.77.167.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("62788", "10", "2017-08-21 19:21:34", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62789", "3", "2017-08-21 20:04:12", "24.244.32.146", "3");
INSERT INTO `wp_rg_form_view` VALUES("62790", "10", "2017-08-21 20:21:50", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62791", "14", "2017-08-21 20:21:54", "62.210.25.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("62792", "3", "2017-08-21 21:07:18", "207.194.40.8", "29");
INSERT INTO `wp_rg_form_view` VALUES("62793", "10", "2017-08-21 21:21:53", "184.66.248.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("62794", "6", "2017-08-21 21:52:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62795", "9", "2017-08-21 21:52:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62796", "8", "2017-08-21 21:52:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62797", "15", "2017-08-21 21:53:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62798", "10", "2017-08-21 22:21:50", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62799", "3", "2017-08-21 22:34:33", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("62800", "10", "2017-08-21 23:29:42", "51.255.65.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("62801", "3", "2017-08-22 00:39:59", "164.132.162.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("62802", "3", "2017-08-22 01:20:48", "77.88.5.25", "30");
INSERT INTO `wp_rg_form_view` VALUES("62803", "6", "2017-08-22 01:25:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62804", "9", "2017-08-22 01:25:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62805", "8", "2017-08-22 01:25:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62806", "10", "2017-08-22 01:25:37", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("62807", "15", "2017-08-22 01:25:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62808", "10", "2017-08-22 02:30:46", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62809", "10", "2017-08-22 03:27:21", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("62810", "3", "2017-08-22 04:08:23", "180.76.15.137", "29");
INSERT INTO `wp_rg_form_view` VALUES("62811", "8", "2017-08-22 04:10:30", "154.20.28.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("62812", "10", "2017-08-22 04:25:30", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("62813", "6", "2017-08-22 04:58:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62814", "9", "2017-08-22 04:58:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62815", "15", "2017-08-22 04:58:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62816", "10", "2017-08-22 05:57:51", "217.182.132.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("62817", "3", "2017-08-22 06:03:02", "34.228.147.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("62818", "3", "2017-08-22 07:01:14", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("62819", "3", "2017-08-22 08:17:26", "180.76.15.158", "29");
INSERT INTO `wp_rg_form_view` VALUES("62820", "6", "2017-08-22 08:28:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62821", "9", "2017-08-22 08:28:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62822", "8", "2017-08-22 08:28:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62823", "10", "2017-08-22 08:28:56", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("62824", "15", "2017-08-22 08:28:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62825", "3", "2017-08-22 09:57:23", "180.76.15.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("62826", "3", "2017-08-22 11:37:29", "180.76.15.144", "30");
INSERT INTO `wp_rg_form_view` VALUES("62827", "6", "2017-08-22 11:59:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62828", "9", "2017-08-22 11:59:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62829", "8", "2017-08-22 11:59:18", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62830", "10", "2017-08-22 11:59:19", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62831", "15", "2017-08-22 11:59:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62832", "10", "2017-08-22 12:00:21", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62833", "3", "2017-08-22 12:44:06", "180.76.15.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("62834", "8", "2017-08-22 12:51:23", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62835", "8", "2017-08-22 13:20:27", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("62836", "3", "2017-08-22 14:04:01", "51.255.71.122", "4");
INSERT INTO `wp_rg_form_view` VALUES("62837", "14", "2017-08-22 14:15:10", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62838", "10", "2017-08-22 14:26:28", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62839", "3", "2017-08-22 15:06:56", "66.249.79.137", "29");
INSERT INTO `wp_rg_form_view` VALUES("62840", "10", "2017-08-22 15:15:47", "180.76.15.28", "6");
INSERT INTO `wp_rg_form_view` VALUES("62841", "6", "2017-08-22 15:38:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62842", "9", "2017-08-22 15:38:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62843", "8", "2017-08-22 15:38:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62844", "15", "2017-08-22 15:38:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62845", "10", "2017-08-22 16:10:59", "40.77.167.123", "3");
INSERT INTO `wp_rg_form_view` VALUES("62846", "3", "2017-08-22 16:22:30", "180.76.15.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("62847", "10", "2017-08-22 17:13:36", "184.66.248.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("62848", "15", "2017-08-22 17:17:20", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("62849", "3", "2017-08-22 17:24:46", "37.17.172.122", "12");
INSERT INTO `wp_rg_form_view` VALUES("62850", "8", "2017-08-22 17:26:04", "37.17.172.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("62851", "10", "2017-08-22 18:13:52", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62852", "10", "2017-08-22 19:13:10", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("62853", "3", "2017-08-22 19:18:29", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62854", "6", "2017-08-22 19:18:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62855", "9", "2017-08-22 19:18:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62856", "8", "2017-08-22 19:18:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62857", "15", "2017-08-22 19:18:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62858", "10", "2017-08-22 20:14:02", "184.66.248.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62859", "14", "2017-08-22 20:14:10", "107.175.128.104", "1");
INSERT INTO `wp_rg_form_view` VALUES("62860", "3", "2017-08-22 20:36:07", "5.255.250.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("62861", "9", "2017-08-22 20:54:51", "157.55.39.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("62862", "3", "2017-08-22 21:04:27", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("62863", "10", "2017-08-22 21:13:58", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62864", "3", "2017-08-22 22:11:08", "180.76.15.153", "29");
INSERT INTO `wp_rg_form_view` VALUES("62865", "6", "2017-08-22 22:57:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62866", "9", "2017-08-22 22:57:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62867", "8", "2017-08-22 22:57:11", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62868", "10", "2017-08-22 22:57:12", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62869", "15", "2017-08-22 22:57:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62870", "3", "2017-08-23 00:06:28", "180.76.15.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("62871", "8", "2017-08-23 00:06:50", "51.255.65.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("62872", "11", "2017-08-23 00:49:16", "157.55.39.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("62873", "10", "2017-08-23 00:59:54", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("62874", "10", "2017-08-23 01:46:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62875", "3", "2017-08-23 01:57:21", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("62876", "3", "2017-08-23 02:02:32", "157.55.39.209", "30");
INSERT INTO `wp_rg_form_view` VALUES("62877", "10", "2017-08-23 02:07:30", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("62878", "6", "2017-08-23 02:29:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62879", "9", "2017-08-23 02:29:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62880", "8", "2017-08-23 02:29:24", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62881", "15", "2017-08-23 02:29:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62882", "10", "2017-08-23 03:09:30", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62883", "3", "2017-08-23 06:03:42", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62884", "6", "2017-08-23 06:03:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62885", "9", "2017-08-23 06:03:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62886", "8", "2017-08-23 06:03:44", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62887", "10", "2017-08-23 06:03:45", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62888", "15", "2017-08-23 06:03:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62889", "3", "2017-08-23 07:22:47", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62890", "3", "2017-08-23 08:00:06", "5.255.250.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("62891", "10", "2017-08-23 09:33:11", "72.14.199.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("62892", "3", "2017-08-23 09:39:35", "180.76.15.155", "29");
INSERT INTO `wp_rg_form_view` VALUES("62893", "6", "2017-08-23 09:49:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62894", "9", "2017-08-23 09:49:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62895", "8", "2017-08-23 09:49:44", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62896", "15", "2017-08-23 09:49:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62897", "14", "2017-08-23 10:08:11", "77.75.77.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("62898", "10", "2017-08-23 10:46:35", "51.255.65.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("62899", "15", "2017-08-23 10:51:34", "217.182.132.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("62900", "10", "2017-08-23 11:08:56", "137.74.207.120", "6");
INSERT INTO `wp_rg_form_view` VALUES("62901", "3", "2017-08-23 11:20:52", "216.244.66.247", "29");
INSERT INTO `wp_rg_form_view` VALUES("62902", "6", "2017-08-23 11:20:53", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62903", "9", "2017-08-23 11:20:54", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62904", "8", "2017-08-23 11:20:54", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("62905", "15", "2017-08-23 11:20:57", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62906", "10", "2017-08-23 12:00:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62907", "3", "2017-08-23 13:27:49", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62908", "6", "2017-08-23 13:27:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62909", "9", "2017-08-23 13:27:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62910", "8", "2017-08-23 13:27:51", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62911", "10", "2017-08-23 13:27:52", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62912", "15", "2017-08-23 13:27:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62913", "10", "2017-08-23 14:25:43", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62914", "3", "2017-08-23 15:04:39", "157.55.39.98", "6");
INSERT INTO `wp_rg_form_view` VALUES("62915", "8", "2017-08-23 16:17:33", "24.108.184.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("62916", "10", "2017-08-23 16:26:36", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("62917", "3", "2017-08-23 16:28:34", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62918", "3", "2017-08-23 17:02:33", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("62919", "6", "2017-08-23 17:02:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62920", "9", "2017-08-23 17:02:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62921", "8", "2017-08-23 17:02:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62922", "10", "2017-08-23 17:02:36", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62923", "15", "2017-08-23 17:02:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62924", "8", "2017-08-23 18:03:16", "108.180.145.171", "4");
INSERT INTO `wp_rg_form_view` VALUES("62925", "5", "2017-08-23 18:04:28", "217.182.132.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("62926", "3", "2017-08-23 18:37:05", "184.69.7.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("62927", "10", "2017-08-23 19:14:03", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62928", "3", "2017-08-23 20:20:46", "217.182.132.157", "31");
INSERT INTO `wp_rg_form_view` VALUES("62929", "6", "2017-08-23 20:34:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62930", "9", "2017-08-23 20:34:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62931", "8", "2017-08-23 20:34:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62932", "10", "2017-08-23 20:34:05", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62933", "15", "2017-08-23 20:34:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62934", "3", "2017-08-23 21:20:18", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62935", "3", "2017-08-23 22:05:37", "180.76.15.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("62936", "14", "2017-08-23 23:08:17", "208.181.174.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("62937", "3", "2017-08-23 23:08:48", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("62938", "8", "2017-08-23 23:33:14", "136.243.133.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("62939", "3", "2017-08-24 00:03:09", "216.244.66.247", "30");
INSERT INTO `wp_rg_form_view` VALUES("62940", "10", "2017-08-24 00:10:40", "72.14.199.69", "7");
INSERT INTO `wp_rg_form_view` VALUES("62941", "6", "2017-08-24 00:17:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62942", "9", "2017-08-24 00:17:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62943", "8", "2017-08-24 00:17:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62944", "15", "2017-08-24 00:17:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62945", "14", "2017-08-24 00:25:00", "96.50.117.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("62946", "11", "2017-08-24 00:46:31", "51.255.71.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("62947", "3", "2017-08-24 02:32:14", "144.76.153.198", "5");
INSERT INTO `wp_rg_form_view` VALUES("62948", "8", "2017-08-24 02:34:18", "144.76.153.198", "3");
INSERT INTO `wp_rg_form_view` VALUES("62949", "3", "2017-08-24 03:07:46", "180.76.15.140", "57");
INSERT INTO `wp_rg_form_view` VALUES("62950", "6", "2017-08-24 03:54:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62951", "9", "2017-08-24 03:54:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62952", "8", "2017-08-24 03:54:57", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("62953", "10", "2017-08-24 03:54:58", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("62954", "15", "2017-08-24 03:55:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62955", "10", "2017-08-24 04:10:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("62956", "3", "2017-08-24 04:35:14", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62957", "10", "2017-08-24 06:12:00", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("62958", "3", "2017-08-24 06:13:05", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("62959", "3", "2017-08-24 07:35:13", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62960", "6", "2017-08-24 07:35:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62961", "9", "2017-08-24 07:35:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62962", "8", "2017-08-24 07:35:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62963", "10", "2017-08-24 07:35:16", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62964", "15", "2017-08-24 07:35:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62965", "3", "2017-08-24 08:49:26", "164.132.161.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("62966", "3", "2017-08-24 09:33:06", "180.76.15.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("62967", "3", "2017-08-24 10:16:37", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("62968", "3", "2017-08-24 11:09:43", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("62969", "6", "2017-08-24 11:09:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62970", "9", "2017-08-24 11:09:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62971", "8", "2017-08-24 11:09:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62972", "10", "2017-08-24 11:09:45", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("62973", "15", "2017-08-24 11:09:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62974", "10", "2017-08-24 12:00:17", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("62975", "3", "2017-08-24 12:13:13", "198.144.157.39", "12");
INSERT INTO `wp_rg_form_view` VALUES("62976", "3", "2017-08-24 13:04:58", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("62977", "10", "2017-08-24 14:26:27", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("62978", "3", "2017-08-24 14:48:22", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("62979", "6", "2017-08-24 14:48:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62980", "9", "2017-08-24 14:48:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62981", "8", "2017-08-24 14:48:24", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62982", "15", "2017-08-24 14:48:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("62983", "10", "2017-08-24 15:14:47", "164.132.161.53", "9");
INSERT INTO `wp_rg_form_view` VALUES("62984", "3", "2017-08-24 15:33:28", "216.244.66.247", "29");
INSERT INTO `wp_rg_form_view` VALUES("62985", "6", "2017-08-24 15:33:29", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62986", "9", "2017-08-24 15:33:30", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62987", "8", "2017-08-24 15:33:30", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("62988", "15", "2017-08-24 15:33:33", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("62989", "3", "2017-08-24 17:22:28", "164.132.161.29", "3");
INSERT INTO `wp_rg_form_view` VALUES("62990", "10", "2017-08-24 18:27:18", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("62991", "3", "2017-08-24 18:29:16", "52.88.109.3", "50");
INSERT INTO `wp_rg_form_view` VALUES("62992", "6", "2017-08-24 18:29:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("62993", "9", "2017-08-24 18:29:25", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("62994", "8", "2017-08-24 18:29:27", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("62995", "15", "2017-08-24 18:29:37", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("62996", "5", "2017-08-24 18:37:09", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("62997", "3", "2017-08-24 19:04:56", "164.132.161.30", "10");
INSERT INTO `wp_rg_form_view` VALUES("62998", "14", "2017-08-24 19:19:00", "24.108.19.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("62999", "6", "2017-08-24 19:47:37", "159.203.125.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("63000", "10", "2017-08-24 19:49:19", "159.203.125.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("63001", "9", "2017-08-24 19:53:18", "159.203.125.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("63002", "15", "2017-08-24 19:55:47", "159.203.125.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("63003", "10", "2017-08-24 20:00:05", "159.203.125.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("63004", "3", "2017-08-24 20:00:13", "149.202.7.207", "28");
INSERT INTO `wp_rg_form_view` VALUES("63005", "8", "2017-08-24 20:01:16", "149.202.7.207", "3");
INSERT INTO `wp_rg_form_view` VALUES("63006", "10", "2017-08-24 21:12:57", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("63007", "3", "2017-08-24 21:13:56", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63008", "10", "2017-08-24 22:09:19", "157.55.39.98", "6");
INSERT INTO `wp_rg_form_view` VALUES("63009", "3", "2017-08-24 22:09:39", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("63010", "6", "2017-08-24 22:09:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63011", "9", "2017-08-24 22:09:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63012", "8", "2017-08-24 22:09:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63013", "15", "2017-08-24 22:09:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63014", "10", "2017-08-24 23:10:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("63015", "14", "2017-08-24 23:39:43", "180.76.15.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("63016", "3", "2017-08-25 00:12:57", "180.76.15.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("63017", "10", "2017-08-25 00:49:50", "151.80.27.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("63018", "3", "2017-08-25 01:29:37", "216.244.66.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("63019", "10", "2017-08-25 01:31:22", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("63020", "6", "2017-08-25 01:56:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63021", "9", "2017-08-25 01:56:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63022", "8", "2017-08-25 01:56:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63023", "15", "2017-08-25 01:56:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63024", "3", "2017-08-25 02:04:33", "180.76.15.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("63025", "3", "2017-08-25 03:44:30", "180.76.15.158", "2");
INSERT INTO `wp_rg_form_view` VALUES("63026", "10", "2017-08-25 04:18:42", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63027", "10", "2017-08-25 05:18:36", "66.249.89.53", "6");
INSERT INTO `wp_rg_form_view` VALUES("63028", "3", "2017-08-25 05:45:58", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63029", "6", "2017-08-25 05:45:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63030", "9", "2017-08-25 05:45:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63031", "8", "2017-08-25 05:46:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63032", "15", "2017-08-25 05:46:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63033", "3", "2017-08-25 06:13:22", "180.76.15.154", "12");
INSERT INTO `wp_rg_form_view` VALUES("63034", "10", "2017-08-25 06:37:22", "46.229.168.77", "8");
INSERT INTO `wp_rg_form_view` VALUES("63035", "6", "2017-08-25 06:38:57", "46.229.168.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("63036", "14", "2017-08-25 06:40:44", "46.229.168.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("63037", "11", "2017-08-25 06:42:38", "46.229.168.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("63038", "15", "2017-08-25 07:56:51", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63039", "9", "2017-08-25 07:57:20", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63040", "10", "2017-08-25 09:13:42", "217.182.132.179", "7");
INSERT INTO `wp_rg_form_view` VALUES("63041", "3", "2017-08-25 09:27:02", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63042", "6", "2017-08-25 09:27:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63043", "9", "2017-08-25 09:27:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63044", "8", "2017-08-25 09:27:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63045", "15", "2017-08-25 09:27:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63046", "3", "2017-08-25 10:06:42", "180.76.15.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("63047", "3", "2017-08-25 11:18:34", "77.75.76.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("63048", "14", "2017-08-25 11:27:38", "62.210.25.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("63049", "10", "2017-08-25 12:00:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63050", "3", "2017-08-25 12:00:28", "66.249.70.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("63051", "5", "2017-08-25 12:32:34", "66.249.70.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("63052", "3", "2017-08-25 13:04:06", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63053", "6", "2017-08-25 13:04:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63054", "9", "2017-08-25 13:04:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63055", "8", "2017-08-25 13:04:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63056", "10", "2017-08-25 13:04:08", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63057", "15", "2017-08-25 13:04:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63058", "10", "2017-08-25 14:26:13", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("63059", "8", "2017-08-25 14:41:54", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("63060", "3", "2017-08-25 15:02:37", "180.76.15.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("63061", "8", "2017-08-25 15:18:02", "155.94.168.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63062", "3", "2017-08-25 16:00:05", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("63063", "10", "2017-08-25 16:00:06", "216.244.66.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("63064", "15", "2017-08-25 16:00:07", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("63065", "6", "2017-08-25 16:47:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63066", "9", "2017-08-25 16:47:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63067", "8", "2017-08-25 16:47:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63068", "3", "2017-08-25 17:20:47", "207.46.13.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("63069", "3", "2017-08-25 18:06:35", "24.68.44.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("63070", "10", "2017-08-25 18:25:49", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("63071", "14", "2017-08-25 18:42:00", "184.69.178.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("63072", "8", "2017-08-25 18:45:31", "68.232.76.18", "4");
INSERT INTO `wp_rg_form_view` VALUES("63073", "3", "2017-08-25 19:09:07", "68.180.230.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("63074", "3", "2017-08-25 20:19:33", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63075", "6", "2017-08-25 20:19:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63076", "9", "2017-08-25 20:19:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63077", "8", "2017-08-25 20:19:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63078", "10", "2017-08-25 20:19:36", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("63079", "15", "2017-08-25 20:19:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63080", "6", "2017-08-25 21:21:49", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63081", "3", "2017-08-25 21:26:58", "24.108.19.129", "2");
INSERT INTO `wp_rg_form_view` VALUES("63082", "10", "2017-08-25 21:46:45", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63083", "3", "2017-08-25 22:15:07", "180.76.15.143", "4");
INSERT INTO `wp_rg_form_view` VALUES("63084", "14", "2017-08-25 22:22:37", "142.36.123.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("63085", "8", "2017-08-25 23:43:35", "24.68.114.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("63086", "10", "2017-08-25 23:46:37", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("63087", "3", "2017-08-25 23:52:27", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63088", "6", "2017-08-25 23:52:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63089", "9", "2017-08-25 23:52:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63090", "15", "2017-08-25 23:52:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63091", "3", "2017-08-26 00:02:40", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("63092", "10", "2017-08-26 00:28:32", "180.76.15.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("63093", "3", "2017-08-26 01:02:10", "184.66.21.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("63094", "15", "2017-08-26 01:43:47", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63095", "3", "2017-08-26 03:31:47", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("63096", "6", "2017-08-26 03:31:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63097", "9", "2017-08-26 03:31:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63098", "8", "2017-08-26 03:31:52", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("63099", "10", "2017-08-26 03:31:53", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63100", "15", "2017-08-26 03:31:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63101", "14", "2017-08-26 03:48:10", "198.27.80.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("63102", "10", "2017-08-26 04:17:14", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("63103", "3", "2017-08-26 05:17:59", "68.180.230.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("63104", "3", "2017-08-26 06:14:49", "154.5.208.218", "2");
INSERT INTO `wp_rg_form_view` VALUES("63105", "8", "2017-08-26 07:02:49", "167.114.209.38", "3");
INSERT INTO `wp_rg_form_view` VALUES("63106", "3", "2017-08-26 07:02:57", "167.114.209.38", "33");
INSERT INTO `wp_rg_form_view` VALUES("63107", "6", "2017-08-26 07:11:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63108", "9", "2017-08-26 07:11:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63109", "10", "2017-08-26 07:11:02", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63110", "15", "2017-08-26 07:11:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63111", "10", "2017-08-26 08:16:39", "207.46.13.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("63112", "15", "2017-08-26 08:25:09", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("63113", "3", "2017-08-26 08:25:17", "180.76.15.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("63114", "10", "2017-08-26 09:38:13", "72.14.199.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("63115", "3", "2017-08-26 09:47:36", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63116", "15", "2017-08-26 10:46:40", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63117", "3", "2017-08-26 11:06:17", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63118", "6", "2017-08-26 11:06:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63119", "9", "2017-08-26 11:06:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63120", "8", "2017-08-26 11:06:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63121", "10", "2017-08-26 11:06:19", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63122", "15", "2017-08-26 11:06:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63123", "10", "2017-08-26 12:00:23", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63124", "10", "2017-08-26 13:28:12", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63125", "3", "2017-08-26 13:40:53", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("63126", "10", "2017-08-26 14:26:37", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("63127", "3", "2017-08-26 14:46:28", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63128", "6", "2017-08-26 14:46:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63129", "9", "2017-08-26 14:46:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63130", "8", "2017-08-26 14:46:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63131", "15", "2017-08-26 14:46:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63132", "3", "2017-08-26 15:11:04", "180.76.15.28", "7");
INSERT INTO `wp_rg_form_view` VALUES("63133", "8", "2017-08-26 15:21:22", "70.67.60.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("63134", "3", "2017-08-26 16:17:15", "216.244.66.195", "24");
INSERT INTO `wp_rg_form_view` VALUES("63135", "12", "2017-08-26 16:31:17", "207.46.13.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("63136", "10", "2017-08-26 16:43:54", "157.55.39.105", "4");
INSERT INTO `wp_rg_form_view` VALUES("63137", "8", "2017-08-26 16:44:00", "207.46.13.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("63138", "9", "2017-08-26 16:45:53", "207.46.13.4", "2");
INSERT INTO `wp_rg_form_view` VALUES("63139", "6", "2017-08-26 16:47:20", "157.55.39.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("63140", "15", "2017-08-26 16:48:41", "157.55.39.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("63141", "14", "2017-08-26 17:23:53", "70.67.170.1", "1");
INSERT INTO `wp_rg_form_view` VALUES("63142", "3", "2017-08-26 17:24:24", "180.76.15.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("63143", "3", "2017-08-26 18:18:15", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("63144", "14", "2017-08-26 18:31:07", "180.76.15.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("63145", "6", "2017-08-26 18:31:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63146", "9", "2017-08-26 18:31:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63147", "8", "2017-08-26 18:31:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63148", "10", "2017-08-26 18:31:16", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63149", "15", "2017-08-26 18:31:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63150", "10", "2017-08-26 19:05:36", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("63151", "3", "2017-08-26 20:24:23", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("63152", "10", "2017-08-26 20:38:50", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63153", "3", "2017-08-26 21:28:13", "62.210.151.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("63154", "9", "2017-08-26 21:32:32", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("63155", "14", "2017-08-26 21:50:06", "109.73.79.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("63156", "10", "2017-08-26 22:01:13", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("63157", "3", "2017-08-26 22:02:50", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63158", "6", "2017-08-26 22:02:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63159", "9", "2017-08-26 22:02:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63160", "8", "2017-08-26 22:02:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63161", "15", "2017-08-26 22:02:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63162", "10", "2017-08-26 23:14:06", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("63163", "3", "2017-08-26 23:37:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63164", "10", "2017-08-27 00:04:49", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("63165", "3", "2017-08-27 00:05:06", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("63166", "8", "2017-08-27 00:31:19", "84.38.135.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("63167", "6", "2017-08-27 01:16:00", "180.76.15.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("63168", "10", "2017-08-27 01:23:18", "157.55.39.105", "7");
INSERT INTO `wp_rg_form_view` VALUES("63169", "3", "2017-08-27 01:41:30", "164.132.161.54", "29");
INSERT INTO `wp_rg_form_view` VALUES("63170", "9", "2017-08-27 01:44:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63171", "8", "2017-08-27 01:44:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63172", "15", "2017-08-27 01:44:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63173", "10", "2017-08-27 02:14:26", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63174", "3", "2017-08-27 03:00:46", "70.67.60.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("63175", "10", "2017-08-27 04:17:15", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63176", "3", "2017-08-27 05:12:32", "216.244.66.247", "30");
INSERT INTO `wp_rg_form_view` VALUES("63177", "6", "2017-08-27 05:23:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63178", "9", "2017-08-27 05:23:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63179", "8", "2017-08-27 05:23:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63180", "10", "2017-08-27 05:23:02", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63181", "15", "2017-08-27 05:23:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63182", "14", "2017-08-27 05:31:31", "157.55.39.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("63183", "10", "2017-08-27 06:08:36", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("63184", "3", "2017-08-27 07:15:16", "180.76.15.20", "2");
INSERT INTO `wp_rg_form_view` VALUES("63185", "10", "2017-08-27 07:47:50", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63186", "3", "2017-08-27 08:02:05", "216.244.66.247", "58");
INSERT INTO `wp_rg_form_view` VALUES("63187", "6", "2017-08-27 08:55:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63188", "9", "2017-08-27 08:55:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63189", "8", "2017-08-27 08:55:01", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("63190", "10", "2017-08-27 08:55:02", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("63191", "15", "2017-08-27 08:55:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63192", "3", "2017-08-27 09:29:48", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63193", "14", "2017-08-27 10:08:42", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("63194", "5", "2017-08-27 10:31:41", "79.143.185.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("63195", "3", "2017-08-27 10:59:30", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("63196", "3", "2017-08-27 11:07:23", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63197", "9", "2017-08-27 11:33:50", "51.255.65.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("63198", "14", "2017-08-27 11:45:20", "23.229.105.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("63199", "10", "2017-08-27 12:00:22", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("63200", "6", "2017-08-27 12:28:07", "180.76.15.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("63201", "3", "2017-08-27 12:34:13", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("63202", "9", "2017-08-27 12:34:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63203", "8", "2017-08-27 12:34:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63204", "15", "2017-08-27 12:34:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63205", "3", "2017-08-27 13:01:21", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("63206", "10", "2017-08-27 14:25:45", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63207", "3", "2017-08-27 14:42:59", "164.132.161.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("63208", "8", "2017-08-27 15:02:19", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63209", "3", "2017-08-27 15:03:49", "216.244.66.195", "24");
INSERT INTO `wp_rg_form_view` VALUES("63210", "10", "2017-08-27 15:25:44", "72.14.199.71", "17");
INSERT INTO `wp_rg_form_view` VALUES("63211", "11", "2017-08-27 15:39:01", "207.46.13.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("63212", "3", "2017-08-27 16:09:10", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63213", "6", "2017-08-27 16:09:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63214", "9", "2017-08-27 16:09:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63215", "8", "2017-08-27 16:09:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63216", "10", "2017-08-27 16:09:12", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63217", "15", "2017-08-27 16:09:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63218", "14", "2017-08-27 16:30:23", "24.69.5.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("63219", "6", "2017-08-27 17:52:12", "51.255.65.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("63220", "3", "2017-08-27 18:05:51", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("63221", "8", "2017-08-27 18:06:35", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63222", "3", "2017-08-27 19:12:02", "180.76.15.156", "59");
INSERT INTO `wp_rg_form_view` VALUES("63223", "6", "2017-08-27 19:45:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63224", "9", "2017-08-27 19:45:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63225", "8", "2017-08-27 19:45:03", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("63226", "10", "2017-08-27 19:45:03", "52.88.109.3", "11");
INSERT INTO `wp_rg_form_view` VALUES("63227", "15", "2017-08-27 19:45:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63228", "3", "2017-08-27 20:09:41", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("63229", "8", "2017-08-27 20:10:23", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63230", "10", "2017-08-27 20:52:01", "180.76.15.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("63231", "10", "2017-08-27 21:02:37", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63232", "10", "2017-08-27 22:32:02", "180.76.15.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("63233", "14", "2017-08-27 23:10:01", "69.4.85.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("63234", "3", "2017-08-27 23:10:05", "69.4.85.171", "30");
INSERT INTO `wp_rg_form_view` VALUES("63235", "6", "2017-08-27 23:22:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63236", "9", "2017-08-27 23:22:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63237", "8", "2017-08-27 23:23:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63238", "10", "2017-08-27 23:23:01", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("63239", "15", "2017-08-27 23:23:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63240", "3", "2017-08-28 00:44:42", "157.55.39.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("63241", "3", "2017-08-28 01:19:09", "37.115.215.125", "9");
INSERT INTO `wp_rg_form_view` VALUES("63242", "8", "2017-08-28 01:23:08", "5.62.43.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("63243", "3", "2017-08-28 02:16:12", "83.103.171.221", "4");
INSERT INTO `wp_rg_form_view` VALUES("63244", "8", "2017-08-28 02:16:20", "83.103.171.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("63245", "3", "2017-08-28 03:14:07", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63246", "6", "2017-08-28 03:14:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63247", "9", "2017-08-28 03:14:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63248", "8", "2017-08-28 03:14:09", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63249", "10", "2017-08-28 03:14:09", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63250", "15", "2017-08-28 03:14:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63251", "10", "2017-08-28 04:28:20", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("63252", "10", "2017-08-28 05:19:13", "199.16.157.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("63253", "3", "2017-08-28 05:48:39", "5.188.211.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("63254", "3", "2017-08-28 06:09:08", "217.182.132.192", "34");
INSERT INTO `wp_rg_form_view` VALUES("63255", "8", "2017-08-28 06:48:26", "37.44.176.249", "3");
INSERT INTO `wp_rg_form_view` VALUES("63256", "6", "2017-08-28 06:52:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63257", "9", "2017-08-28 06:52:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63258", "10", "2017-08-28 06:52:41", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63259", "15", "2017-08-28 06:52:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63260", "14", "2017-08-28 07:00:38", "64.180.190.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("63261", "3", "2017-08-28 07:26:57", "188.165.200.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("63262", "10", "2017-08-28 09:08:50", "217.182.132.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("63263", "3", "2017-08-28 10:34:06", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63264", "6", "2017-08-28 10:34:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63265", "9", "2017-08-28 10:34:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63266", "8", "2017-08-28 10:34:09", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63267", "10", "2017-08-28 10:34:10", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63268", "15", "2017-08-28 10:34:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63269", "10", "2017-08-28 11:10:12", "137.74.201.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("63270", "10", "2017-08-28 12:00:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63271", "12", "2017-08-28 12:57:46", "180.76.15.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("63272", "3", "2017-08-28 13:08:45", "137.74.207.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("63273", "14", "2017-08-28 13:18:48", "149.56.43.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("63274", "3", "2017-08-28 14:08:57", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63275", "6", "2017-08-28 14:08:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63276", "9", "2017-08-28 14:08:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63277", "8", "2017-08-28 14:08:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63278", "10", "2017-08-28 14:09:00", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("63279", "15", "2017-08-28 14:09:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63280", "14", "2017-08-28 14:10:00", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("63281", "3", "2017-08-28 16:28:19", "217.182.132.153", "5");
INSERT INTO `wp_rg_form_view` VALUES("63282", "8", "2017-08-28 16:40:12", "46.183.222.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("63283", "10", "2017-08-28 16:42:06", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("63284", "3", "2017-08-28 17:48:04", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63285", "6", "2017-08-28 17:48:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63286", "9", "2017-08-28 17:48:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63287", "8", "2017-08-28 17:48:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63288", "10", "2017-08-28 17:48:07", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63289", "15", "2017-08-28 17:48:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63290", "10", "2017-08-28 18:30:45", "207.46.13.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("63291", "10", "2017-08-28 19:20:43", "217.182.132.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("63292", "3", "2017-08-28 20:44:27", "180.76.15.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("63293", "14", "2017-08-28 20:54:30", "96.50.25.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("63294", "12", "2017-08-28 21:17:46", "180.76.15.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("63295", "3", "2017-08-28 21:28:49", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63296", "6", "2017-08-28 21:28:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63297", "9", "2017-08-28 21:28:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63298", "8", "2017-08-28 21:28:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63299", "10", "2017-08-28 21:28:52", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63300", "15", "2017-08-28 21:28:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63301", "10", "2017-08-28 22:08:34", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63302", "3", "2017-08-29 00:22:23", "66.249.79.133", "30");
INSERT INTO `wp_rg_form_view` VALUES("63303", "10", "2017-08-29 00:33:51", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("63304", "6", "2017-08-29 00:56:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63305", "9", "2017-08-29 00:56:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63306", "8", "2017-08-29 00:56:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63307", "15", "2017-08-29 00:56:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63308", "14", "2017-08-29 01:03:25", "172.241.56.103", "3");
INSERT INTO `wp_rg_form_view` VALUES("63309", "12", "2017-08-29 03:18:14", "217.182.132.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("63310", "3", "2017-08-29 03:24:17", "217.182.132.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("63311", "8", "2017-08-29 03:27:14", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("63312", "3", "2017-08-29 04:00:37", "180.76.15.11", "29");
INSERT INTO `wp_rg_form_view` VALUES("63313", "6", "2017-08-29 04:30:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63314", "9", "2017-08-29 04:30:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63315", "8", "2017-08-29 04:30:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63316", "10", "2017-08-29 04:30:34", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63317", "15", "2017-08-29 04:30:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63318", "3", "2017-08-29 05:39:08", "84.38.135.159", "4");
INSERT INTO `wp_rg_form_view` VALUES("63319", "8", "2017-08-29 05:39:16", "84.38.135.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("63320", "10", "2017-08-29 06:09:18", "72.14.199.73", "4");
INSERT INTO `wp_rg_form_view` VALUES("63321", "3", "2017-08-29 06:53:39", "66.249.79.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("63322", "15", "2017-08-29 06:53:40", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63323", "3", "2017-08-29 08:05:58", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63324", "6", "2017-08-29 08:05:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63325", "9", "2017-08-29 08:06:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63326", "8", "2017-08-29 08:06:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63327", "10", "2017-08-29 08:06:01", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("63328", "15", "2017-08-29 08:06:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63329", "3", "2017-08-29 09:04:21", "217.182.132.76", "29");
INSERT INTO `wp_rg_form_view` VALUES("63330", "6", "2017-08-29 09:46:44", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("63331", "9", "2017-08-29 09:46:45", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("63332", "8", "2017-08-29 09:46:46", "5.188.211.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("63333", "10", "2017-08-29 09:46:46", "5.188.211.26", "5");
INSERT INTO `wp_rg_form_view` VALUES("63334", "15", "2017-08-29 09:46:49", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("63335", "10", "2017-08-29 10:38:01", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63336", "14", "2017-08-29 10:44:54", "193.180.245.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("63337", "3", "2017-08-29 10:45:16", "193.180.245.42", "3");
INSERT INTO `wp_rg_form_view` VALUES("63338", "3", "2017-08-29 11:23:29", "157.55.39.192", "46");
INSERT INTO `wp_rg_form_view` VALUES("63339", "15", "2017-08-29 11:24:32", "157.55.39.254", "3");
INSERT INTO `wp_rg_form_view` VALUES("63340", "10", "2017-08-29 11:25:58", "157.55.39.192", "9");
INSERT INTO `wp_rg_form_view` VALUES("63341", "8", "2017-08-29 11:26:54", "157.55.39.192", "3");
INSERT INTO `wp_rg_form_view` VALUES("63342", "9", "2017-08-29 11:28:16", "157.55.39.192", "2");
INSERT INTO `wp_rg_form_view` VALUES("63343", "6", "2017-08-29 11:29:51", "157.55.39.254", "2");
INSERT INTO `wp_rg_form_view` VALUES("63344", "10", "2017-08-29 12:00:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63345", "10", "2017-08-29 14:25:37", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63346", "3", "2017-08-29 15:11:39", "164.132.161.16", "29");
INSERT INTO `wp_rg_form_view` VALUES("63347", "10", "2017-08-29 15:11:46", "164.132.161.18", "6");
INSERT INTO `wp_rg_form_view` VALUES("63348", "6", "2017-08-29 15:36:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63349", "9", "2017-08-29 15:36:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63350", "8", "2017-08-29 15:36:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63351", "15", "2017-08-29 15:36:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63352", "10", "2017-08-29 16:10:23", "180.76.15.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("63353", "14", "2017-08-29 17:14:51", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("63354", "10", "2017-08-29 17:36:52", "51.255.71.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("63355", "3", "2017-08-29 17:48:09", "157.55.39.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("63356", "15", "2017-08-29 18:11:34", "157.55.39.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("63357", "3", "2017-08-29 18:12:29", "157.55.39.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("63358", "14", "2017-08-29 18:31:32", "184.69.173.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("63359", "10", "2017-08-29 18:32:47", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("63360", "3", "2017-08-29 19:17:55", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63361", "6", "2017-08-29 19:17:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63362", "9", "2017-08-29 19:18:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63363", "8", "2017-08-29 19:18:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63364", "10", "2017-08-29 19:18:02", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63365", "15", "2017-08-29 19:18:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63366", "3", "2017-08-29 20:52:27", "51.255.71.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("63367", "3", "2017-08-29 21:06:40", "51.255.65.84", "7");
INSERT INTO `wp_rg_form_view` VALUES("63368", "10", "2017-08-29 21:06:40", "51.255.65.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("63369", "15", "2017-08-29 21:06:41", "51.255.65.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("63370", "14", "2017-08-29 21:24:50", "45.35.255.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("63371", "3", "2017-08-29 23:01:38", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63372", "6", "2017-08-29 23:01:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63373", "9", "2017-08-29 23:01:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63374", "8", "2017-08-29 23:01:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63375", "10", "2017-08-29 23:01:41", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63376", "15", "2017-08-29 23:01:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63377", "3", "2017-08-30 00:30:20", "180.76.15.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("63378", "9", "2017-08-30 01:03:40", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("63379", "6", "2017-08-30 01:37:00", "180.76.15.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("63380", "10", "2017-08-30 02:01:30", "51.255.65.95", "6");
INSERT INTO `wp_rg_form_view` VALUES("63381", "3", "2017-08-30 02:20:06", "164.132.161.93", "29");
INSERT INTO `wp_rg_form_view` VALUES("63382", "6", "2017-08-30 02:44:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63383", "9", "2017-08-30 02:44:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63384", "8", "2017-08-30 02:44:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63385", "15", "2017-08-30 02:44:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63386", "3", "2017-08-30 03:49:33", "46.229.168.69", "11");
INSERT INTO `wp_rg_form_view` VALUES("63387", "6", "2017-08-30 03:50:45", "46.229.168.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("63388", "10", "2017-08-30 03:51:21", "46.229.168.71", "8");
INSERT INTO `wp_rg_form_view` VALUES("63389", "15", "2017-08-30 03:56:46", "46.229.168.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("63390", "10", "2017-08-30 06:20:18", "194.187.170.113", "11");
INSERT INTO `wp_rg_form_view` VALUES("63391", "3", "2017-08-30 06:36:35", "52.88.109.3", "56");
INSERT INTO `wp_rg_form_view` VALUES("63392", "6", "2017-08-30 06:36:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63393", "9", "2017-08-30 06:36:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63394", "8", "2017-08-30 06:36:37", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("63395", "15", "2017-08-30 06:36:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63396", "10", "2017-08-30 07:07:17", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("63397", "3", "2017-08-30 07:18:31", "96.54.56.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("63398", "10", "2017-08-30 08:33:02", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("63399", "14", "2017-08-30 09:33:56", "52.65.157.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("63400", "3", "2017-08-30 09:34:49", "52.65.157.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("63401", "10", "2017-08-30 09:47:49", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("63402", "3", "2017-08-30 10:14:38", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63403", "6", "2017-08-30 10:14:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63404", "9", "2017-08-30 10:14:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63405", "8", "2017-08-30 10:14:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63406", "10", "2017-08-30 10:14:42", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("63407", "15", "2017-08-30 10:14:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63408", "10", "2017-08-30 11:38:42", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("63409", "10", "2017-08-30 12:00:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63410", "3", "2017-08-30 12:13:41", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63411", "8", "2017-08-30 12:59:30", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("63412", "10", "2017-08-30 13:35:28", "164.132.161.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("63413", "3", "2017-08-30 13:50:17", "167.114.219.41", "29");
INSERT INTO `wp_rg_form_view` VALUES("63414", "6", "2017-08-30 13:53:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63415", "9", "2017-08-30 13:53:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63416", "8", "2017-08-30 13:53:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63417", "15", "2017-08-30 13:53:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63418", "10", "2017-08-30 14:25:36", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("63419", "10", "2017-08-30 15:08:36", "162.210.196.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("63420", "11", "2017-08-30 15:33:46", "40.77.167.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("63421", "10", "2017-08-30 16:26:28", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63422", "11", "2017-08-30 16:30:00", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("63423", "3", "2017-08-30 17:36:24", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63424", "6", "2017-08-30 17:36:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63425", "9", "2017-08-30 17:36:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63426", "8", "2017-08-30 17:36:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63427", "10", "2017-08-30 17:36:27", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63428", "15", "2017-08-30 17:36:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63429", "10", "2017-08-30 18:27:15", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63430", "3", "2017-08-30 18:31:17", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("63431", "10", "2017-08-30 20:28:02", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63432", "8", "2017-08-30 20:35:05", "157.55.39.219", "1");
INSERT INTO `wp_rg_form_view` VALUES("63433", "3", "2017-08-30 21:17:05", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63434", "6", "2017-08-30 21:17:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63435", "9", "2017-08-30 21:17:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63436", "8", "2017-08-30 21:17:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63437", "10", "2017-08-30 21:17:08", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63438", "15", "2017-08-30 21:17:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63439", "3", "2017-08-30 22:08:15", "51.255.65.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("63440", "10", "2017-08-30 22:10:03", "72.14.199.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("63441", "10", "2017-08-30 23:13:42", "164.132.162.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("63442", "8", "2017-08-30 23:56:58", "108.180.145.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("63443", "14", "2017-08-30 23:59:31", "89.175.148.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("63444", "3", "2017-08-30 23:59:39", "89.175.148.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("63445", "11", "2017-08-31 00:17:41", "180.76.15.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63446", "10", "2017-08-31 00:29:46", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("63447", "3", "2017-08-31 00:55:14", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63448", "6", "2017-08-31 00:55:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63449", "9", "2017-08-31 00:55:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63450", "8", "2017-08-31 00:55:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63451", "15", "2017-08-31 00:55:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63452", "3", "2017-08-31 01:36:07", "96.50.28.252", "2");
INSERT INTO `wp_rg_form_view` VALUES("63453", "8", "2017-08-31 01:38:44", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("63454", "10", "2017-08-31 02:19:45", "217.182.132.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("63455", "10", "2017-08-31 03:38:29", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63456", "14", "2017-08-31 04:02:10", "23.244.128.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("63457", "3", "2017-08-31 04:02:15", "23.244.128.69", "32");
INSERT INTO `wp_rg_form_view` VALUES("63458", "6", "2017-08-31 04:32:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63459", "9", "2017-08-31 04:32:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63460", "8", "2017-08-31 04:32:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63461", "10", "2017-08-31 04:32:31", "52.88.109.3", "9");
INSERT INTO `wp_rg_form_view` VALUES("63462", "15", "2017-08-31 04:32:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63463", "10", "2017-08-31 05:22:26", "207.46.13.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("63464", "9", "2017-08-31 06:28:19", "180.76.15.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("63465", "10", "2017-08-31 06:48:43", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63466", "3", "2017-08-31 07:09:16", "207.46.13.37", "4");
INSERT INTO `wp_rg_form_view` VALUES("63467", "14", "2017-08-31 07:19:12", "196.245.7.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("63468", "3", "2017-08-31 08:08:43", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("63469", "6", "2017-08-31 08:08:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63470", "9", "2017-08-31 08:08:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63471", "8", "2017-08-31 08:08:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63472", "10", "2017-08-31 08:08:46", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63473", "15", "2017-08-31 08:08:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63474", "10", "2017-08-31 09:10:51", "199.16.157.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("63475", "3", "2017-08-31 10:13:59", "51.255.71.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("63476", "10", "2017-08-31 10:50:46", "40.77.167.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("63477", "11", "2017-08-31 11:35:14", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("63478", "3", "2017-08-31 11:35:43", "207.46.13.37", "43");
INSERT INTO `wp_rg_form_view` VALUES("63479", "10", "2017-08-31 11:37:45", "157.55.39.41", "6");
INSERT INTO `wp_rg_form_view` VALUES("63480", "6", "2017-08-31 11:49:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63481", "9", "2017-08-31 11:49:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63482", "8", "2017-08-31 11:49:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63483", "15", "2017-08-31 11:49:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63484", "10", "2017-08-31 12:00:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63485", "15", "2017-08-31 12:58:40", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("63486", "10", "2017-08-31 13:58:01", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("63487", "14", "2017-08-31 14:22:02", "104.142.123.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("63488", "3", "2017-08-31 14:55:23", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("63489", "3", "2017-08-31 15:20:21", "66.249.79.133", "30");
INSERT INTO `wp_rg_form_view` VALUES("63490", "6", "2017-08-31 15:25:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63491", "9", "2017-08-31 15:25:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63492", "8", "2017-08-31 15:25:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63493", "10", "2017-08-31 15:25:27", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63494", "15", "2017-08-31 15:25:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63495", "3", "2017-08-31 16:49:54", "51.255.65.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("63496", "3", "2017-08-31 17:50:05", "24.68.35.40", "5");
INSERT INTO `wp_rg_form_view` VALUES("63497", "8", "2017-08-31 17:52:58", "24.68.35.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("63498", "10", "2017-08-31 17:58:16", "217.182.132.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("63499", "3", "2017-08-31 19:05:01", "52.88.109.3", "57");
INSERT INTO `wp_rg_form_view` VALUES("63500", "6", "2017-08-31 19:05:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63501", "9", "2017-08-31 19:05:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63502", "8", "2017-08-31 19:05:03", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("63503", "10", "2017-08-31 19:05:04", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("63504", "15", "2017-08-31 19:05:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63505", "3", "2017-08-31 20:13:16", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("63506", "10", "2017-08-31 21:03:48", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("63507", "14", "2017-08-31 21:06:42", "75.157.27.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("63508", "3", "2017-08-31 21:35:24", "207.46.13.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("63509", "3", "2017-08-31 22:35:48", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63510", "6", "2017-08-31 22:35:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63511", "9", "2017-08-31 22:35:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63512", "8", "2017-08-31 22:35:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63513", "10", "2017-08-31 22:35:51", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("63514", "15", "2017-08-31 22:35:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63515", "11", "2017-08-31 23:07:26", "180.76.15.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("63516", "10", "2017-09-01 00:06:58", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("63517", "3", "2017-09-01 01:50:06", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("63518", "3", "2017-09-01 02:18:46", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63519", "6", "2017-09-01 02:18:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63520", "9", "2017-09-01 02:18:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63521", "8", "2017-09-01 02:18:48", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63522", "10", "2017-09-01 02:18:48", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63523", "15", "2017-09-01 02:18:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63524", "3", "2017-09-01 04:20:28", "54.74.221.255", "3");
INSERT INTO `wp_rg_form_view` VALUES("63525", "8", "2017-09-01 05:12:35", "66.249.79.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("63526", "14", "2017-09-01 05:13:32", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("63527", "3", "2017-09-01 05:56:27", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63528", "6", "2017-09-01 05:56:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63529", "9", "2017-09-01 05:56:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63530", "10", "2017-09-01 05:56:30", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63531", "15", "2017-09-01 05:56:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63532", "10", "2017-09-01 06:42:44", "51.255.65.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("63533", "3", "2017-09-01 07:13:27", "198.204.243.138", "17");
INSERT INTO `wp_rg_form_view` VALUES("63534", "9", "2017-09-01 07:14:05", "198.204.243.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("63535", "8", "2017-09-01 07:14:52", "198.204.243.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("63536", "11", "2017-09-01 07:15:54", "198.204.243.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("63537", "10", "2017-09-01 07:19:18", "198.204.243.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("63538", "15", "2017-09-01 07:19:19", "198.204.243.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("63539", "12", "2017-09-01 07:21:58", "198.204.243.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("63540", "3", "2017-09-01 09:18:09", "164.132.161.93", "29");
INSERT INTO `wp_rg_form_view` VALUES("63541", "6", "2017-09-01 09:41:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63542", "9", "2017-09-01 09:41:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63543", "8", "2017-09-01 09:41:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63544", "10", "2017-09-01 09:41:17", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63545", "15", "2017-09-01 09:41:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63546", "3", "2017-09-01 10:49:58", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("63547", "15", "2017-09-01 11:09:34", "192.99.10.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("63548", "3", "2017-09-01 12:01:03", "74.213.69.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("63549", "10", "2017-09-01 12:01:44", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("63550", "3", "2017-09-01 13:22:55", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63551", "6", "2017-09-01 13:22:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63552", "9", "2017-09-01 13:22:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63553", "8", "2017-09-01 13:22:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63554", "10", "2017-09-01 13:22:58", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63555", "15", "2017-09-01 13:23:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63556", "3", "2017-09-01 14:43:48", "69.147.252.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("63557", "3", "2017-09-01 15:50:21", "5.188.211.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("63558", "3", "2017-09-01 17:11:52", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63559", "6", "2017-09-01 17:11:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63560", "9", "2017-09-01 17:11:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63561", "8", "2017-09-01 17:11:54", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("63562", "10", "2017-09-01 17:11:55", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("63563", "15", "2017-09-01 17:11:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63564", "10", "2017-09-01 18:08:37", "51.255.65.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("63565", "3", "2017-09-01 18:19:17", "217.182.132.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("63566", "3", "2017-09-01 19:42:01", "173.212.241.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("63567", "10", "2017-09-01 20:12:05", "217.182.132.97", "6");
INSERT INTO `wp_rg_form_view` VALUES("63568", "3", "2017-09-01 20:18:42", "207.194.133.9", "30");
INSERT INTO `wp_rg_form_view` VALUES("63569", "6", "2017-09-01 20:56:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63570", "9", "2017-09-01 20:56:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63571", "8", "2017-09-01 20:56:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63572", "15", "2017-09-01 20:56:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63573", "3", "2017-09-01 21:25:19", "180.76.15.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("63574", "3", "2017-09-01 22:31:32", "198.44.206.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("63575", "3", "2017-09-02 00:38:20", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63576", "6", "2017-09-02 00:38:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63577", "9", "2017-09-02 00:38:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63578", "8", "2017-09-02 00:38:23", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63579", "10", "2017-09-02 00:38:23", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63580", "15", "2017-09-02 00:38:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63581", "10", "2017-09-02 01:25:04", "194.187.170.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("63582", "3", "2017-09-02 01:37:08", "217.182.132.56", "2");
INSERT INTO `wp_rg_form_view` VALUES("63583", "10", "2017-09-02 02:20:52", "72.14.199.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("63584", "3", "2017-09-02 03:09:44", "5.188.211.26", "29");
INSERT INTO `wp_rg_form_view` VALUES("63585", "6", "2017-09-02 03:09:45", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("63586", "9", "2017-09-02 03:09:46", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("63587", "8", "2017-09-02 03:09:46", "5.188.211.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("63588", "10", "2017-09-02 03:09:47", "5.188.211.26", "8");
INSERT INTO `wp_rg_form_view` VALUES("63589", "15", "2017-09-02 03:09:51", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("63590", "3", "2017-09-02 04:09:39", "218.94.86.18", "61");
INSERT INTO `wp_rg_form_view` VALUES("63591", "6", "2017-09-02 04:25:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63592", "9", "2017-09-02 04:25:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63593", "8", "2017-09-02 04:25:01", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("63594", "10", "2017-09-02 04:25:02", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("63595", "15", "2017-09-02 04:25:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63596", "14", "2017-09-02 04:52:09", "184.66.36.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("63597", "14", "2017-09-02 05:01:23", "184.66.49.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("63598", "3", "2017-09-02 05:29:09", "184.66.49.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("63599", "3", "2017-09-02 06:49:40", "137.74.207.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("63600", "3", "2017-09-02 07:04:15", "5.188.211.35", "28");
INSERT INTO `wp_rg_form_view` VALUES("63601", "6", "2017-09-02 07:04:16", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("63602", "9", "2017-09-02 07:04:19", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("63603", "8", "2017-09-02 07:04:20", "5.188.211.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("63604", "10", "2017-09-02 07:04:20", "5.188.211.35", "5");
INSERT INTO `wp_rg_form_view` VALUES("63605", "15", "2017-09-02 07:04:22", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("63606", "3", "2017-09-02 08:09:19", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63607", "6", "2017-09-02 08:09:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63608", "9", "2017-09-02 08:09:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63609", "8", "2017-09-02 08:09:21", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63610", "10", "2017-09-02 08:09:22", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("63611", "15", "2017-09-02 08:09:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63612", "14", "2017-09-02 09:17:17", "31.187.66.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("63613", "14", "2017-09-02 10:34:58", "104.202.102.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("63614", "10", "2017-09-02 11:05:12", "178.203.120.140", "7");
INSERT INTO `wp_rg_form_view` VALUES("63615", "3", "2017-09-02 11:05:26", "178.203.120.140", "29");
INSERT INTO `wp_rg_form_view` VALUES("63616", "6", "2017-09-02 11:43:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63617", "9", "2017-09-02 11:43:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63618", "8", "2017-09-02 11:43:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63619", "15", "2017-09-02 11:43:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63620", "10", "2017-09-02 13:06:07", "199.59.150.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("63621", "3", "2017-09-02 14:31:56", "70.67.60.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("63622", "3", "2017-09-02 15:21:10", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63623", "6", "2017-09-02 15:21:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63624", "9", "2017-09-02 15:21:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63625", "8", "2017-09-02 15:21:13", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63626", "10", "2017-09-02 15:21:15", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63627", "15", "2017-09-02 15:21:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63628", "3", "2017-09-02 16:16:18", "40.77.167.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("63629", "10", "2017-09-02 16:27:53", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("63630", "14", "2017-09-02 17:43:59", "139.59.125.112", "4");
INSERT INTO `wp_rg_form_view` VALUES("63631", "3", "2017-09-02 17:44:12", "139.59.125.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("63632", "3", "2017-09-02 18:10:20", "40.77.167.109", "29");
INSERT INTO `wp_rg_form_view` VALUES("63633", "15", "2017-09-02 18:29:20", "66.249.79.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("63634", "6", "2017-09-02 18:46:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63635", "9", "2017-09-02 18:46:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63636", "8", "2017-09-02 18:46:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63637", "10", "2017-09-02 18:46:59", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63638", "14", "2017-09-02 19:30:38", "128.199.138.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("63639", "3", "2017-09-02 21:13:59", "40.77.167.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("63640", "14", "2017-09-02 22:22:55", "181.215.147.91", "5");
INSERT INTO `wp_rg_form_view` VALUES("63641", "3", "2017-09-02 22:22:58", "181.215.147.91", "31");
INSERT INTO `wp_rg_form_view` VALUES("63642", "6", "2017-09-02 22:24:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63643", "9", "2017-09-02 22:24:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63644", "8", "2017-09-02 22:24:38", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("63645", "10", "2017-09-02 22:24:39", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63646", "15", "2017-09-02 22:24:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63647", "14", "2017-09-02 23:01:33", "125.141.200.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("63648", "3", "2017-09-02 23:09:53", "5.188.211.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("63649", "10", "2017-09-03 00:14:20", "40.77.167.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("63650", "3", "2017-09-03 01:02:03", "157.55.39.41", "11");
INSERT INTO `wp_rg_form_view` VALUES("63651", "10", "2017-09-03 01:03:11", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("63652", "15", "2017-09-03 01:03:20", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("63653", "6", "2017-09-03 01:03:32", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("63654", "3", "2017-09-03 02:01:26", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63655", "6", "2017-09-03 02:01:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63656", "9", "2017-09-03 02:01:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63657", "8", "2017-09-03 02:01:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63658", "10", "2017-09-03 02:01:29", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63659", "15", "2017-09-03 02:01:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63660", "3", "2017-09-03 03:28:48", "24.108.10.44", "2");
INSERT INTO `wp_rg_form_view` VALUES("63661", "3", "2017-09-03 05:42:26", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63662", "6", "2017-09-03 05:42:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63663", "9", "2017-09-03 05:42:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63664", "8", "2017-09-03 05:42:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63665", "10", "2017-09-03 05:42:32", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63666", "15", "2017-09-03 05:42:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63667", "10", "2017-09-03 06:30:27", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("63668", "10", "2017-09-03 09:16:56", "51.255.65.61", "6");
INSERT INTO `wp_rg_form_view` VALUES("63669", "3", "2017-09-03 09:25:31", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63670", "6", "2017-09-03 09:25:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63671", "9", "2017-09-03 09:25:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63672", "8", "2017-09-03 09:25:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63673", "15", "2017-09-03 09:25:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63674", "10", "2017-09-03 10:20:16", "157.55.39.41", "4");
INSERT INTO `wp_rg_form_view` VALUES("63675", "3", "2017-09-03 11:46:55", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("63676", "15", "2017-09-03 11:47:58", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("63677", "10", "2017-09-03 12:28:53", "217.182.132.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("63678", "3", "2017-09-03 13:11:25", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63679", "6", "2017-09-03 13:11:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63680", "9", "2017-09-03 13:11:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63681", "8", "2017-09-03 13:11:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63682", "10", "2017-09-03 13:11:28", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63683", "15", "2017-09-03 13:11:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63684", "3", "2017-09-03 14:43:40", "180.76.15.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("63685", "10", "2017-09-03 15:20:06", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("63686", "14", "2017-09-03 16:18:06", "107.173.68.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("63687", "3", "2017-09-03 16:18:13", "107.173.68.62", "29");
INSERT INTO `wp_rg_form_view` VALUES("63688", "6", "2017-09-03 16:43:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63689", "9", "2017-09-03 16:43:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63690", "8", "2017-09-03 16:43:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63691", "10", "2017-09-03 16:43:12", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63692", "15", "2017-09-03 16:43:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63693", "3", "2017-09-03 19:51:08", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("63694", "10", "2017-09-03 20:18:18", "72.14.199.73", "7");
INSERT INTO `wp_rg_form_view` VALUES("63695", "3", "2017-09-03 20:21:48", "52.88.109.3", "36");
INSERT INTO `wp_rg_form_view` VALUES("63696", "6", "2017-09-03 20:21:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63697", "9", "2017-09-03 20:21:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63698", "8", "2017-09-03 20:21:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63699", "15", "2017-09-03 20:21:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63700", "14", "2017-09-03 20:43:12", "108.175.52.169", "5");
INSERT INTO `wp_rg_form_view` VALUES("63701", "15", "2017-09-03 21:01:43", "159.203.110.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("63702", "10", "2017-09-03 21:01:57", "159.203.110.210", "4");
INSERT INTO `wp_rg_form_view` VALUES("63703", "3", "2017-09-03 21:02:03", "159.203.110.210", "20");
INSERT INTO `wp_rg_form_view` VALUES("63704", "8", "2017-09-03 21:24:50", "159.203.110.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("63705", "14", "2017-09-03 22:23:05", "103.253.147.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("63706", "10", "2017-09-03 22:41:02", "46.229.168.70", "7");
INSERT INTO `wp_rg_form_view` VALUES("63707", "3", "2017-09-03 22:41:39", "46.229.168.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("63708", "14", "2017-09-03 23:00:29", "125.141.200.46", "5");
INSERT INTO `wp_rg_form_view` VALUES("63709", "3", "2017-09-03 23:00:45", "125.141.200.46", "32");
INSERT INTO `wp_rg_form_view` VALUES("63710", "6", "2017-09-03 23:55:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63711", "9", "2017-09-03 23:55:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63712", "8", "2017-09-03 23:55:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63713", "10", "2017-09-03 23:55:16", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63714", "15", "2017-09-03 23:55:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63715", "3", "2017-09-04 00:22:46", "180.76.15.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("63716", "10", "2017-09-04 00:25:14", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("63717", "3", "2017-09-04 02:02:44", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("63718", "10", "2017-09-04 03:09:24", "180.76.15.138", "7");
INSERT INTO `wp_rg_form_view` VALUES("63719", "3", "2017-09-04 03:39:12", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("63720", "6", "2017-09-04 03:39:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63721", "9", "2017-09-04 03:39:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63722", "8", "2017-09-04 03:39:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63723", "15", "2017-09-04 03:39:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63724", "14", "2017-09-04 03:42:41", "107.173.68.91", "5");
INSERT INTO `wp_rg_form_view` VALUES("63725", "3", "2017-09-04 05:22:46", "180.76.15.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("63726", "9", "2017-09-04 05:41:17", "137.74.207.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("63727", "6", "2017-09-04 05:42:17", "83.161.67.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("63728", "15", "2017-09-04 05:46:10", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("63729", "3", "2017-09-04 06:04:18", "157.55.39.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("63730", "8", "2017-09-04 06:58:33", "185.13.202.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("63731", "3", "2017-09-04 07:02:08", "185.13.202.215", "29");
INSERT INTO `wp_rg_form_view` VALUES("63732", "6", "2017-09-04 07:22:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63733", "9", "2017-09-04 07:22:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63734", "8", "2017-09-04 07:22:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63735", "10", "2017-09-04 07:22:06", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63736", "15", "2017-09-04 07:22:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63737", "14", "2017-09-04 07:55:15", "217.182.132.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("63738", "3", "2017-09-04 09:49:02", "13.56.168.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("63739", "10", "2017-09-04 09:49:44", "51.255.65.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("63740", "14", "2017-09-04 10:07:03", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("63741", "10", "2017-09-04 11:00:57", "180.76.15.146", "12");
INSERT INTO `wp_rg_form_view` VALUES("63742", "3", "2017-09-04 11:04:52", "52.88.109.3", "56");
INSERT INTO `wp_rg_form_view` VALUES("63743", "6", "2017-09-04 11:04:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63744", "9", "2017-09-04 11:04:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63745", "8", "2017-09-04 11:04:56", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("63746", "15", "2017-09-04 11:04:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63747", "5", "2017-09-04 11:45:42", "77.75.79.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("63748", "14", "2017-09-04 12:20:11", "23.94.228.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("63749", "3", "2017-09-04 13:14:17", "180.76.15.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("63750", "10", "2017-09-04 13:17:13", "40.77.167.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("63751", "3", "2017-09-04 14:30:47", "217.182.132.71", "29");
INSERT INTO `wp_rg_form_view` VALUES("63752", "6", "2017-09-04 14:48:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63753", "9", "2017-09-04 14:48:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63754", "8", "2017-09-04 14:48:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63755", "10", "2017-09-04 14:48:04", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63756", "15", "2017-09-04 14:48:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63757", "3", "2017-09-04 15:28:28", "40.77.167.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("63758", "3", "2017-09-04 16:00:41", "217.182.132.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("63759", "3", "2017-09-04 17:11:24", "180.76.15.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("63760", "3", "2017-09-04 18:23:48", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63761", "6", "2017-09-04 18:23:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63762", "9", "2017-09-04 18:23:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63763", "8", "2017-09-04 18:23:50", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63764", "10", "2017-09-04 18:23:51", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63765", "15", "2017-09-04 18:23:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63766", "3", "2017-09-04 19:50:07", "180.76.15.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("63767", "3", "2017-09-04 20:13:10", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63768", "3", "2017-09-04 22:06:50", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("63769", "6", "2017-09-04 22:06:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63770", "9", "2017-09-04 22:06:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63771", "8", "2017-09-04 22:06:52", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("63772", "10", "2017-09-04 22:06:53", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63773", "15", "2017-09-04 22:06:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63774", "14", "2017-09-04 23:09:07", "107.173.68.62", "3");
INSERT INTO `wp_rg_form_view` VALUES("63775", "3", "2017-09-04 23:22:39", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("63776", "3", "2017-09-05 00:06:12", "180.76.15.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("63777", "10", "2017-09-05 00:17:12", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("63778", "10", "2017-09-05 01:18:08", "192.99.10.173", "6");
INSERT INTO `wp_rg_form_view` VALUES("63779", "3", "2017-09-05 01:39:37", "70.66.211.204", "29");
INSERT INTO `wp_rg_form_view` VALUES("63780", "6", "2017-09-05 01:40:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63781", "9", "2017-09-05 01:40:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63782", "8", "2017-09-05 01:40:25", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63783", "15", "2017-09-05 01:40:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63784", "3", "2017-09-05 04:19:55", "154.5.209.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("63785", "3", "2017-09-05 05:19:04", "52.88.109.3", "28");
INSERT INTO `wp_rg_form_view` VALUES("63786", "6", "2017-09-05 05:19:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63787", "9", "2017-09-05 05:19:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63788", "8", "2017-09-05 05:19:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63789", "10", "2017-09-05 05:19:07", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63790", "15", "2017-09-05 05:19:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63791", "10", "2017-09-05 06:14:57", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("63792", "6", "2017-09-05 06:45:30", "51.255.65.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("63793", "3", "2017-09-05 07:06:56", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63794", "3", "2017-09-05 08:20:13", "68.180.230.188", "5");
INSERT INTO `wp_rg_form_view` VALUES("63795", "3", "2017-09-05 09:04:06", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("63796", "6", "2017-09-05 09:04:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63797", "9", "2017-09-05 09:04:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63798", "8", "2017-09-05 09:04:08", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63799", "10", "2017-09-05 09:04:09", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63800", "15", "2017-09-05 09:04:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63801", "3", "2017-09-05 10:18:08", "164.132.161.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("63802", "3", "2017-09-05 11:00:38", "180.76.15.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("63803", "10", "2017-09-05 11:28:41", "51.255.71.128", "2");
INSERT INTO `wp_rg_form_view` VALUES("63804", "3", "2017-09-05 12:31:47", "157.55.39.221", "30");
INSERT INTO `wp_rg_form_view` VALUES("63805", "6", "2017-09-05 12:49:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63806", "9", "2017-09-05 12:49:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63807", "8", "2017-09-05 12:49:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63808", "10", "2017-09-05 12:49:33", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63809", "15", "2017-09-05 12:49:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63810", "3", "2017-09-05 13:23:33", "180.76.15.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("63811", "8", "2017-09-05 13:36:39", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("63812", "14", "2017-09-05 14:07:59", "45.35.255.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63813", "3", "2017-09-05 14:08:09", "45.35.255.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63814", "8", "2017-09-05 14:17:17", "164.132.161.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("63815", "10", "2017-09-05 15:28:47", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("63816", "14", "2017-09-05 15:32:56", "50.3.197.64", "4");
INSERT INTO `wp_rg_form_view` VALUES("63817", "3", "2017-09-05 16:27:20", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63818", "6", "2017-09-05 16:27:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63819", "9", "2017-09-05 16:27:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63820", "8", "2017-09-05 16:27:22", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63821", "10", "2017-09-05 16:27:23", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63822", "15", "2017-09-05 16:27:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63823", "3", "2017-09-05 18:03:57", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("63824", "14", "2017-09-05 18:20:41", "5.188.211.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("63825", "3", "2017-09-05 20:13:50", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63826", "6", "2017-09-05 20:13:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63827", "9", "2017-09-05 20:13:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63828", "8", "2017-09-05 20:13:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63829", "10", "2017-09-05 20:13:53", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63830", "15", "2017-09-05 20:13:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63831", "14", "2017-09-05 21:49:08", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("63832", "3", "2017-09-05 22:31:48", "51.255.65.55", "2");
INSERT INTO `wp_rg_form_view` VALUES("63833", "10", "2017-09-05 22:35:52", "64.114.222.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("63834", "3", "2017-09-05 23:52:47", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63835", "6", "2017-09-05 23:52:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63836", "9", "2017-09-05 23:52:49", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63837", "8", "2017-09-05 23:52:49", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63838", "10", "2017-09-05 23:52:50", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63839", "15", "2017-09-05 23:52:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63840", "10", "2017-09-06 00:16:10", "51.255.65.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("63841", "3", "2017-09-06 01:23:57", "5.188.211.15", "29");
INSERT INTO `wp_rg_form_view` VALUES("63842", "6", "2017-09-06 01:23:58", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("63843", "9", "2017-09-06 01:24:00", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("63844", "8", "2017-09-06 01:24:01", "5.188.211.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("63845", "10", "2017-09-06 01:24:02", "5.188.211.15", "5");
INSERT INTO `wp_rg_form_view` VALUES("63846", "15", "2017-09-06 01:24:05", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("63847", "3", "2017-09-06 02:01:25", "49.178.14.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("63848", "3", "2017-09-06 03:17:19", "46.161.9.57", "31");
INSERT INTO `wp_rg_form_view` VALUES("63849", "6", "2017-09-06 03:41:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63850", "9", "2017-09-06 03:41:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63851", "8", "2017-09-06 03:41:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63852", "10", "2017-09-06 03:41:40", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63853", "15", "2017-09-06 03:41:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63854", "3", "2017-09-06 04:29:08", "52.71.155.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("63855", "15", "2017-09-06 04:36:38", "180.76.15.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("63856", "10", "2017-09-06 04:43:32", "72.14.199.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("63857", "3", "2017-09-06 05:43:23", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("63858", "3", "2017-09-06 07:18:56", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("63859", "6", "2017-09-06 07:18:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63860", "9", "2017-09-06 07:19:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63861", "8", "2017-09-06 07:19:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63862", "10", "2017-09-06 07:19:05", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63863", "15", "2017-09-06 07:19:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63864", "3", "2017-09-06 08:19:42", "180.76.15.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("63865", "3", "2017-09-06 09:38:26", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("63866", "3", "2017-09-06 11:10:29", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63867", "6", "2017-09-06 11:10:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63868", "9", "2017-09-06 11:10:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63869", "8", "2017-09-06 11:10:34", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63870", "10", "2017-09-06 11:10:36", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63871", "15", "2017-09-06 11:10:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63872", "3", "2017-09-06 12:55:13", "157.55.39.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("63873", "3", "2017-09-06 13:26:25", "5.9.98.130", "30");
INSERT INTO `wp_rg_form_view` VALUES("63874", "8", "2017-09-06 13:29:14", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("63875", "14", "2017-09-06 13:30:14", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("63876", "10", "2017-09-06 13:33:58", "5.9.98.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("63877", "15", "2017-09-06 13:34:31", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("63878", "9", "2017-09-06 13:42:52", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("63879", "6", "2017-09-06 13:45:02", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("63880", "3", "2017-09-06 14:03:07", "96.50.28.252", "30");
INSERT INTO `wp_rg_form_view` VALUES("63881", "11", "2017-09-06 14:08:27", "180.76.15.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63882", "6", "2017-09-06 14:58:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63883", "9", "2017-09-06 14:58:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63884", "8", "2017-09-06 14:58:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63885", "10", "2017-09-06 14:58:33", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63886", "15", "2017-09-06 14:58:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63887", "3", "2017-09-06 15:24:29", "75.156.34.137", "16");
INSERT INTO `wp_rg_form_view` VALUES("63888", "15", "2017-09-06 15:26:54", "40.77.167.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("63889", "10", "2017-09-06 15:27:13", "40.77.167.145", "3");
INSERT INTO `wp_rg_form_view` VALUES("63890", "6", "2017-09-06 15:32:01", "40.77.167.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("63891", "9", "2017-09-06 15:38:01", "207.46.13.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("63892", "10", "2017-09-06 17:01:06", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("63893", "3", "2017-09-06 18:03:59", "51.255.65.82", "30");
INSERT INTO `wp_rg_form_view` VALUES("63894", "10", "2017-09-06 18:31:08", "24.108.13.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("63895", "6", "2017-09-06 18:52:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63896", "9", "2017-09-06 18:52:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63897", "8", "2017-09-06 18:52:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63898", "15", "2017-09-06 18:52:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63899", "14", "2017-09-06 19:15:49", "70.67.174.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("63900", "15", "2017-09-06 19:26:05", "180.76.15.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("63901", "3", "2017-09-06 21:05:55", "180.76.15.7", "3");
INSERT INTO `wp_rg_form_view` VALUES("63902", "3", "2017-09-06 22:36:18", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63903", "6", "2017-09-06 22:36:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63904", "9", "2017-09-06 22:36:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63905", "8", "2017-09-06 22:36:21", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63906", "10", "2017-09-06 22:36:23", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63907", "15", "2017-09-06 22:36:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63908", "8", "2017-09-06 23:07:51", "24.69.151.198", "2");
INSERT INTO `wp_rg_form_view` VALUES("63909", "10", "2017-09-06 23:24:33", "217.182.132.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("63910", "3", "2017-09-06 23:26:40", "174.127.133.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("63911", "10", "2017-09-07 00:45:19", "207.46.13.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("63912", "10", "2017-09-07 01:06:38", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("63913", "3", "2017-09-07 01:23:01", "157.55.39.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("63914", "14", "2017-09-07 01:56:11", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("63915", "14", "2017-09-07 02:17:14", "193.17.219.81", "3");
INSERT INTO `wp_rg_form_view` VALUES("63916", "3", "2017-09-07 02:17:24", "193.17.219.81", "30");
INSERT INTO `wp_rg_form_view` VALUES("63917", "6", "2017-09-07 02:22:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63918", "9", "2017-09-07 02:22:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63919", "8", "2017-09-07 02:22:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63920", "10", "2017-09-07 02:22:35", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63921", "15", "2017-09-07 02:22:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63922", "8", "2017-09-07 03:14:04", "154.20.234.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("63923", "3", "2017-09-07 03:14:13", "154.20.234.215", "4");
INSERT INTO `wp_rg_form_view` VALUES("63924", "3", "2017-09-07 04:03:03", "144.76.80.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("63925", "10", "2017-09-07 05:39:20", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("63926", "3", "2017-09-07 05:57:08", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63927", "6", "2017-09-07 05:57:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63928", "9", "2017-09-07 05:57:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63929", "8", "2017-09-07 05:57:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63930", "15", "2017-09-07 05:57:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63931", "3", "2017-09-07 08:00:50", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("63932", "3", "2017-09-07 09:03:38", "180.76.15.141", "30");
INSERT INTO `wp_rg_form_view` VALUES("63933", "14", "2017-09-07 09:11:09", "213.136.73.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("63934", "6", "2017-09-07 09:43:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63935", "9", "2017-09-07 09:43:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63936", "8", "2017-09-07 09:43:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63937", "10", "2017-09-07 09:43:56", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63938", "15", "2017-09-07 09:44:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63939", "3", "2017-09-07 10:38:16", "217.182.132.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("63940", "3", "2017-09-07 12:10:47", "51.255.65.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("63941", "3", "2017-09-07 13:30:26", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("63942", "6", "2017-09-07 13:30:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63943", "9", "2017-09-07 13:30:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63944", "8", "2017-09-07 13:30:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63945", "10", "2017-09-07 13:30:33", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63946", "15", "2017-09-07 13:30:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63947", "3", "2017-09-07 14:03:55", "180.76.15.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("63948", "14", "2017-09-07 15:41:06", "155.94.237.30", "5");
INSERT INTO `wp_rg_form_view` VALUES("63949", "3", "2017-09-07 15:41:15", "155.94.237.30", "4");
INSERT INTO `wp_rg_form_view` VALUES("63950", "14", "2017-09-07 16:33:26", "96.54.252.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("63951", "10", "2017-09-07 16:53:16", "199.59.150.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("63952", "3", "2017-09-07 17:20:25", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63953", "6", "2017-09-07 17:20:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63954", "9", "2017-09-07 17:20:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63955", "8", "2017-09-07 17:20:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63956", "10", "2017-09-07 17:20:31", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63957", "15", "2017-09-07 17:20:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63958", "3", "2017-09-07 18:07:26", "142.36.92.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("63959", "3", "2017-09-07 19:07:05", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("63960", "14", "2017-09-07 19:26:07", "24.68.96.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("63961", "10", "2017-09-07 20:24:55", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("63962", "3", "2017-09-07 20:44:02", "180.76.15.160", "30");
INSERT INTO `wp_rg_form_view` VALUES("63963", "6", "2017-09-07 20:55:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63964", "9", "2017-09-07 20:55:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63965", "8", "2017-09-07 20:55:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63966", "15", "2017-09-07 20:56:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63967", "3", "2017-09-07 21:10:41", "185.75.242.136", "7");
INSERT INTO `wp_rg_form_view` VALUES("63968", "8", "2017-09-07 21:12:38", "91.223.159.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("63969", "14", "2017-09-07 21:32:56", "69.61.28.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("63970", "10", "2017-09-07 22:03:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63971", "3", "2017-09-07 22:43:22", "96.54.45.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("63972", "3", "2017-09-07 23:34:42", "184.69.116.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("63973", "3", "2017-09-08 00:39:37", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("63974", "6", "2017-09-08 00:39:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63975", "9", "2017-09-08 00:39:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63976", "8", "2017-09-08 00:39:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63977", "10", "2017-09-08 00:39:43", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63978", "15", "2017-09-08 00:39:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63979", "10", "2017-09-08 02:06:03", "40.77.167.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("63980", "3", "2017-09-08 02:37:31", "67.2.254.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("63981", "8", "2017-09-08 02:44:33", "70.66.169.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("63982", "10", "2017-09-08 03:16:57", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("63983", "3", "2017-09-08 04:25:34", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("63984", "6", "2017-09-08 04:25:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63985", "9", "2017-09-08 04:25:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63986", "8", "2017-09-08 04:25:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63987", "10", "2017-09-08 04:25:39", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("63988", "15", "2017-09-08 04:25:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63989", "3", "2017-09-08 05:15:41", "182.161.38.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("63990", "10", "2017-09-08 05:24:54", "217.182.132.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("63991", "14", "2017-09-08 06:09:14", "190.112.200.234", "3");
INSERT INTO `wp_rg_form_view` VALUES("63992", "3", "2017-09-08 06:09:29", "190.112.200.234", "3");
INSERT INTO `wp_rg_form_view` VALUES("63993", "3", "2017-09-08 07:05:18", "157.55.39.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("63994", "3", "2017-09-08 08:03:49", "52.88.109.3", "51");
INSERT INTO `wp_rg_form_view` VALUES("63995", "6", "2017-09-08 08:03:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("63996", "9", "2017-09-08 08:03:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63997", "8", "2017-09-08 08:03:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("63998", "10", "2017-09-08 08:03:54", "52.88.109.3", "11");
INSERT INTO `wp_rg_form_view` VALUES("63999", "15", "2017-09-08 08:03:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64000", "3", "2017-09-08 09:49:08", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("64001", "3", "2017-09-08 10:42:50", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("64002", "8", "2017-09-08 10:54:25", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("64003", "3", "2017-09-08 11:15:25", "180.76.15.13", "30");
INSERT INTO `wp_rg_form_view` VALUES("64004", "6", "2017-09-08 11:46:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64005", "9", "2017-09-08 11:46:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64006", "8", "2017-09-08 11:46:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64007", "10", "2017-09-08 11:46:42", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64008", "15", "2017-09-08 11:46:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64009", "10", "2017-09-08 12:16:22", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("64010", "8", "2017-09-08 13:36:17", "94.209.237.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("64011", "3", "2017-09-08 13:36:25", "94.209.237.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("64012", "3", "2017-09-08 15:25:13", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64013", "6", "2017-09-08 15:25:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64014", "9", "2017-09-08 15:25:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64015", "8", "2017-09-08 15:25:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64016", "10", "2017-09-08 15:25:16", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64017", "15", "2017-09-08 15:25:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64018", "14", "2017-09-08 15:33:56", "209.52.88.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("64019", "3", "2017-09-08 16:15:15", "216.197.203.98", "3");
INSERT INTO `wp_rg_form_view` VALUES("64020", "14", "2017-09-08 16:25:53", "108.180.146.220", "2");
INSERT INTO `wp_rg_form_view` VALUES("64021", "3", "2017-09-08 17:13:37", "184.71.18.250", "2");
INSERT INTO `wp_rg_form_view` VALUES("64022", "10", "2017-09-08 17:19:04", "51.255.65.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("64023", "14", "2017-09-08 17:37:54", "202.159.36.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("64024", "8", "2017-09-08 18:00:44", "24.108.14.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("64025", "3", "2017-09-08 18:43:10", "164.132.161.12", "32");
INSERT INTO `wp_rg_form_view` VALUES("64026", "6", "2017-09-08 18:59:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64027", "9", "2017-09-08 18:59:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64028", "10", "2017-09-08 18:59:53", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64029", "15", "2017-09-08 18:59:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64030", "3", "2017-09-08 19:18:58", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("64031", "10", "2017-09-08 19:26:43", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("64032", "3", "2017-09-08 20:02:09", "46.229.168.80", "12");
INSERT INTO `wp_rg_form_view` VALUES("64033", "10", "2017-09-08 20:04:07", "46.229.168.78", "9");
INSERT INTO `wp_rg_form_view` VALUES("64034", "6", "2017-09-08 20:07:14", "46.229.168.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("64035", "11", "2017-09-08 20:10:59", "46.229.168.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("64036", "14", "2017-09-08 20:13:55", "46.229.168.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("64037", "3", "2017-09-08 22:42:41", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("64038", "6", "2017-09-08 22:42:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64039", "9", "2017-09-08 22:42:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64040", "8", "2017-09-08 22:42:44", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64041", "10", "2017-09-08 22:42:44", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64042", "15", "2017-09-08 22:42:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64043", "10", "2017-09-08 23:51:25", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("64044", "3", "2017-09-09 00:34:08", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("64045", "3", "2017-09-09 01:49:51", "157.55.39.254", "1");
INSERT INTO `wp_rg_form_view` VALUES("64046", "10", "2017-09-09 02:07:36", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("64047", "3", "2017-09-09 02:29:33", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("64048", "6", "2017-09-09 02:29:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64049", "9", "2017-09-09 02:29:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64050", "8", "2017-09-09 02:29:36", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("64051", "15", "2017-09-09 02:29:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64052", "14", "2017-09-09 02:45:28", "46.105.100.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("64053", "6", "2017-09-09 03:50:30", "180.76.15.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("64054", "14", "2017-09-09 04:16:35", "45.35.255.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("64055", "3", "2017-09-09 04:16:39", "45.35.255.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("64056", "3", "2017-09-09 05:22:53", "68.180.230.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("64057", "3", "2017-09-09 06:06:34", "180.76.15.155", "30");
INSERT INTO `wp_rg_form_view` VALUES("64058", "6", "2017-09-09 06:15:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64059", "9", "2017-09-09 06:15:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64060", "8", "2017-09-09 06:15:23", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64061", "10", "2017-09-09 06:15:24", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64062", "15", "2017-09-09 06:15:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64063", "14", "2017-09-09 07:01:49", "190.60.234.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("64064", "3", "2017-09-09 07:02:06", "190.60.234.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("64065", "14", "2017-09-09 09:50:14", "96.50.117.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("64066", "3", "2017-09-09 09:55:41", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("64067", "6", "2017-09-09 09:55:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64068", "9", "2017-09-09 09:55:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64069", "8", "2017-09-09 09:55:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64070", "10", "2017-09-09 09:55:44", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64071", "15", "2017-09-09 09:55:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64072", "3", "2017-09-09 11:07:51", "157.55.39.208", "2");
INSERT INTO `wp_rg_form_view` VALUES("64073", "3", "2017-09-09 12:53:43", "207.46.13.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("64074", "8", "2017-09-09 12:58:47", "40.77.167.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("64075", "14", "2017-09-09 13:05:23", "62.210.25.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("64076", "10", "2017-09-09 13:37:07", "180.76.15.14", "6");
INSERT INTO `wp_rg_form_view` VALUES("64077", "3", "2017-09-09 13:43:31", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64078", "6", "2017-09-09 13:43:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64079", "9", "2017-09-09 13:43:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64080", "8", "2017-09-09 13:43:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64081", "15", "2017-09-09 13:43:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64082", "3", "2017-09-09 14:09:21", "207.46.13.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("64083", "10", "2017-09-09 14:14:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("64084", "10", "2017-09-09 16:03:52", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("64085", "3", "2017-09-09 17:13:27", "180.76.15.34", "35");
INSERT INTO `wp_rg_form_view` VALUES("64086", "14", "2017-09-09 17:23:32", "89.37.65.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("64087", "6", "2017-09-09 17:35:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64088", "9", "2017-09-09 17:35:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64089", "8", "2017-09-09 17:35:39", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("64090", "10", "2017-09-09 17:35:40", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64091", "15", "2017-09-09 17:35:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64092", "3", "2017-09-09 19:17:28", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("64093", "3", "2017-09-09 20:00:10", "180.76.15.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("64094", "3", "2017-09-09 21:18:06", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("64095", "6", "2017-09-09 21:18:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64096", "9", "2017-09-09 21:18:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64097", "8", "2017-09-09 21:18:08", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64098", "10", "2017-09-09 21:18:08", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64099", "15", "2017-09-09 21:18:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64100", "3", "2017-09-09 22:02:35", "164.132.161.86", "6");
INSERT INTO `wp_rg_form_view` VALUES("64101", "8", "2017-09-09 22:18:21", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("64102", "3", "2017-09-09 23:14:15", "207.46.13.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("64103", "3", "2017-09-10 00:03:19", "207.46.13.69", "36");
INSERT INTO `wp_rg_form_view` VALUES("64104", "12", "2017-09-10 00:03:41", "207.46.13.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("64105", "10", "2017-09-10 00:04:10", "207.46.13.69", "12");
INSERT INTO `wp_rg_form_view` VALUES("64106", "11", "2017-09-10 00:04:21", "157.55.39.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("64107", "8", "2017-09-10 00:04:58", "157.55.39.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("64108", "14", "2017-09-10 00:08:07", "202.201.64.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("64109", "3", "2017-09-10 01:05:03", "52.88.109.3", "64");
INSERT INTO `wp_rg_form_view` VALUES("64110", "6", "2017-09-10 01:05:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64111", "9", "2017-09-10 01:05:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64112", "8", "2017-09-10 01:05:05", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64113", "10", "2017-09-10 01:05:05", "52.88.109.3", "15");
INSERT INTO `wp_rg_form_view` VALUES("64114", "15", "2017-09-10 01:05:08", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("64115", "3", "2017-09-10 02:08:55", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("64116", "10", "2017-09-10 02:33:53", "157.55.39.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("64117", "3", "2017-09-10 04:18:42", "207.6.209.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("64118", "3", "2017-09-10 05:01:20", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64119", "6", "2017-09-10 05:01:20", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64120", "9", "2017-09-10 05:01:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64121", "8", "2017-09-10 05:01:22", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64122", "10", "2017-09-10 05:01:22", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64123", "15", "2017-09-10 05:01:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64124", "9", "2017-09-10 06:03:08", "217.182.88.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("64125", "3", "2017-09-10 06:03:38", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("64126", "3", "2017-09-10 07:02:47", "40.77.167.79", "12");
INSERT INTO `wp_rg_form_view` VALUES("64127", "9", "2017-09-10 07:03:08", "40.77.167.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("64128", "10", "2017-09-10 07:03:22", "40.77.167.79", "7");
INSERT INTO `wp_rg_form_view` VALUES("64129", "8", "2017-09-10 08:08:59", "180.76.15.140", "3");
INSERT INTO `wp_rg_form_view` VALUES("64130", "3", "2017-09-10 08:09:59", "180.76.15.147", "30");
INSERT INTO `wp_rg_form_view` VALUES("64131", "6", "2017-09-10 08:44:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64132", "9", "2017-09-10 08:44:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64133", "10", "2017-09-10 08:44:39", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64134", "15", "2017-09-10 08:44:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64135", "3", "2017-09-10 10:55:33", "52.214.197.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("64136", "3", "2017-09-10 11:30:02", "180.76.15.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("64137", "3", "2017-09-10 12:37:41", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("64138", "6", "2017-09-10 12:37:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64139", "9", "2017-09-10 12:37:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64140", "8", "2017-09-10 12:37:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64141", "10", "2017-09-10 12:37:43", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64142", "15", "2017-09-10 12:37:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64143", "14", "2017-09-10 12:47:47", "198.12.68.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("64144", "8", "2017-09-10 13:40:16", "52.5.220.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("64145", "3", "2017-09-10 14:23:22", "180.76.15.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("64146", "6", "2017-09-10 14:31:18", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("64147", "3", "2017-09-10 15:14:02", "5.188.211.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("64148", "3", "2017-09-10 16:36:02", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64149", "6", "2017-09-10 16:36:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64150", "9", "2017-09-10 16:36:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64151", "8", "2017-09-10 16:36:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64152", "10", "2017-09-10 16:36:05", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64153", "15", "2017-09-10 16:36:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64154", "14", "2017-09-10 17:03:46", "165.231.45.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("64155", "3", "2017-09-10 18:14:01", "5.188.211.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("64156", "3", "2017-09-10 19:10:35", "180.76.15.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("64157", "3", "2017-09-10 20:18:59", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64158", "6", "2017-09-10 20:18:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64159", "9", "2017-09-10 20:19:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64160", "8", "2017-09-10 20:19:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64161", "10", "2017-09-10 20:19:01", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64162", "15", "2017-09-10 20:19:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64163", "10", "2017-09-10 22:31:55", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("64164", "3", "2017-09-10 22:55:30", "207.46.13.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("64165", "3", "2017-09-11 00:08:51", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64166", "6", "2017-09-11 00:08:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64167", "9", "2017-09-11 00:08:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64168", "8", "2017-09-11 00:08:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64169", "10", "2017-09-11 00:08:54", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64170", "15", "2017-09-11 00:08:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64171", "14", "2017-09-11 01:06:42", "196.196.160.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("64172", "3", "2017-09-11 01:06:46", "196.196.160.171", "6");
INSERT INTO `wp_rg_form_view` VALUES("64173", "3", "2017-09-11 02:00:02", "217.182.132.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("64174", "15", "2017-09-11 02:06:20", "5.188.211.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("64175", "10", "2017-09-11 02:42:20", "137.74.201.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("64176", "3", "2017-09-11 03:11:04", "180.76.15.29", "31");
INSERT INTO `wp_rg_form_view` VALUES("64177", "6", "2017-09-11 03:58:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64178", "9", "2017-09-11 03:58:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64179", "8", "2017-09-11 03:58:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64180", "10", "2017-09-11 03:58:57", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64181", "15", "2017-09-11 03:58:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64182", "3", "2017-09-11 04:39:36", "40.77.167.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("64183", "3", "2017-09-11 06:45:33", "207.46.13.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("64184", "14", "2017-09-11 06:54:16", "67.2.254.235", "1");
INSERT INTO `wp_rg_form_view` VALUES("64185", "10", "2017-09-11 07:33:54", "40.77.167.53", "6");
INSERT INTO `wp_rg_form_view` VALUES("64186", "3", "2017-09-11 07:43:36", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64187", "6", "2017-09-11 07:43:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64188", "9", "2017-09-11 07:43:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64189", "8", "2017-09-11 07:43:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64190", "15", "2017-09-11 07:43:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64191", "3", "2017-09-11 09:05:13", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("64192", "3", "2017-09-11 10:11:52", "180.76.15.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("64193", "3", "2017-09-11 11:32:00", "52.88.109.3", "31");
INSERT INTO `wp_rg_form_view` VALUES("64194", "6", "2017-09-11 11:32:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64195", "9", "2017-09-11 11:32:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64196", "8", "2017-09-11 11:32:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64197", "10", "2017-09-11 11:32:03", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64198", "15", "2017-09-11 11:32:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64199", "14", "2017-09-11 13:00:09", "196.196.31.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("64200", "3", "2017-09-11 14:36:02", "40.77.167.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("64201", "3", "2017-09-11 15:00:57", "217.182.132.93", "30");
INSERT INTO `wp_rg_form_view` VALUES("64202", "6", "2017-09-11 15:31:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64203", "9", "2017-09-11 15:31:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64204", "8", "2017-09-11 15:31:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64205", "10", "2017-09-11 15:31:45", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64206", "15", "2017-09-11 15:31:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64207", "3", "2017-09-11 17:06:40", "184.66.146.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("64208", "3", "2017-09-11 19:27:12", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("64209", "6", "2017-09-11 19:27:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64210", "9", "2017-09-11 19:27:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64211", "8", "2017-09-11 19:27:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64212", "10", "2017-09-11 19:27:16", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64213", "15", "2017-09-11 19:27:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64214", "8", "2017-09-11 20:41:40", "217.182.93.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("64215", "14", "2017-09-11 20:44:22", "62.210.25.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("64216", "14", "2017-09-11 21:38:04", "217.182.132.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("64217", "8", "2017-09-11 22:40:34", "184.66.233.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("64218", "3", "2017-09-11 22:43:35", "184.66.233.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("64219", "3", "2017-09-11 23:00:17", "217.182.88.168", "30");
INSERT INTO `wp_rg_form_view` VALUES("64220", "6", "2017-09-11 23:19:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64221", "9", "2017-09-11 23:19:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64222", "8", "2017-09-11 23:19:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64223", "10", "2017-09-11 23:19:05", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64224", "15", "2017-09-11 23:19:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64225", "10", "2017-09-12 00:17:37", "5.188.211.35", "5");
INSERT INTO `wp_rg_form_view` VALUES("64226", "3", "2017-09-12 00:18:50", "5.188.211.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("64227", "3", "2017-09-12 01:00:13", "70.74.228.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("64228", "14", "2017-09-12 01:03:09", "70.74.228.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("64229", "3", "2017-09-12 03:17:17", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("64230", "6", "2017-09-12 03:17:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64231", "9", "2017-09-12 03:17:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64232", "8", "2017-09-12 03:17:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64233", "10", "2017-09-12 03:17:20", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64234", "15", "2017-09-12 03:17:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64235", "10", "2017-09-12 04:56:57", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("64236", "10", "2017-09-12 05:08:38", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("64237", "3", "2017-09-12 05:23:12", "157.55.39.110", "6");
INSERT INTO `wp_rg_form_view` VALUES("64238", "8", "2017-09-12 05:28:21", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("64239", "3", "2017-09-12 07:06:26", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64240", "6", "2017-09-12 07:06:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64241", "9", "2017-09-12 07:06:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64242", "8", "2017-09-12 07:06:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64243", "10", "2017-09-12 07:06:29", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64244", "15", "2017-09-12 07:06:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64245", "3", "2017-09-12 09:08:49", "5.188.211.13", "29");
INSERT INTO `wp_rg_form_view` VALUES("64246", "6", "2017-09-12 09:08:51", "5.188.211.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("64247", "9", "2017-09-12 09:08:52", "5.188.211.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("64248", "8", "2017-09-12 09:08:52", "5.188.211.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("64249", "10", "2017-09-12 09:08:53", "5.188.211.13", "5");
INSERT INTO `wp_rg_form_view` VALUES("64250", "15", "2017-09-12 09:08:55", "5.188.211.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("64251", "3", "2017-09-12 10:46:37", "180.76.15.6", "31");
INSERT INTO `wp_rg_form_view` VALUES("64252", "14", "2017-09-12 10:50:03", "155.94.176.234", "3");
INSERT INTO `wp_rg_form_view` VALUES("64253", "6", "2017-09-12 10:56:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64254", "9", "2017-09-12 10:56:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64255", "8", "2017-09-12 10:56:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64256", "10", "2017-09-12 10:56:41", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64257", "15", "2017-09-12 10:56:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64258", "3", "2017-09-12 11:31:44", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("64259", "15", "2017-09-12 12:25:30", "207.46.13.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("64260", "3", "2017-09-12 12:26:32", "180.76.15.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("64261", "10", "2017-09-12 12:41:19", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("64262", "3", "2017-09-12 13:28:33", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("64263", "8", "2017-09-12 13:40:06", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("64264", "10", "2017-09-12 13:51:36", "207.46.13.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("64265", "10", "2017-09-12 14:10:08", "199.59.150.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("64266", "3", "2017-09-12 14:53:32", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64267", "6", "2017-09-12 14:53:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64268", "9", "2017-09-12 14:53:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64269", "8", "2017-09-12 14:53:34", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64270", "15", "2017-09-12 14:53:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64271", "3", "2017-09-12 16:32:43", "180.76.15.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("64272", "14", "2017-09-12 17:21:35", "96.54.252.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("64273", "8", "2017-09-12 18:24:28", "96.54.248.136", "3");
INSERT INTO `wp_rg_form_view` VALUES("64274", "3", "2017-09-12 18:57:30", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64275", "6", "2017-09-12 18:57:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64276", "9", "2017-09-12 18:57:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64277", "10", "2017-09-12 18:57:33", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64278", "15", "2017-09-12 18:57:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64279", "8", "2017-09-12 19:14:50", "185.13.202.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("64280", "3", "2017-09-12 19:14:58", "185.13.202.215", "4");
INSERT INTO `wp_rg_form_view` VALUES("64281", "3", "2017-09-12 20:14:40", "157.55.39.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("64282", "8", "2017-09-12 22:15:05", "173.183.79.145", "5");
INSERT INTO `wp_rg_form_view` VALUES("64283", "3", "2017-09-12 22:59:34", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64284", "6", "2017-09-12 22:59:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64285", "9", "2017-09-12 22:59:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64286", "10", "2017-09-12 22:59:40", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64287", "15", "2017-09-12 22:59:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64288", "6", "2017-09-12 23:22:43", "207.46.13.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("64289", "3", "2017-09-12 23:45:01", "180.76.15.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("64290", "3", "2017-09-13 02:46:26", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64291", "6", "2017-09-13 02:46:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64292", "9", "2017-09-13 02:46:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64293", "8", "2017-09-13 02:46:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64294", "10", "2017-09-13 02:46:30", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64295", "15", "2017-09-13 02:46:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64296", "14", "2017-09-13 02:58:02", "139.59.243.186", "2");
INSERT INTO `wp_rg_form_view` VALUES("64297", "3", "2017-09-13 03:09:53", "217.182.132.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("64298", "8", "2017-09-13 04:07:05", "109.102.111.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("64299", "3", "2017-09-13 04:07:13", "109.102.111.89", "3");
INSERT INTO `wp_rg_form_view` VALUES("64300", "10", "2017-09-13 04:13:00", "72.14.199.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("64301", "3", "2017-09-13 06:29:01", "180.76.15.7", "30");
INSERT INTO `wp_rg_form_view` VALUES("64302", "6", "2017-09-13 06:36:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64303", "9", "2017-09-13 06:36:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64304", "8", "2017-09-13 06:36:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64305", "10", "2017-09-13 06:36:56", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64306", "15", "2017-09-13 06:36:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64307", "9", "2017-09-13 07:09:13", "157.55.39.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("64308", "15", "2017-09-13 08:08:58", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("64309", "3", "2017-09-13 08:10:29", "157.55.39.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("64310", "10", "2017-09-13 08:13:26", "157.55.39.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("64311", "3", "2017-09-13 10:27:24", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64312", "6", "2017-09-13 10:27:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64313", "9", "2017-09-13 10:27:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64314", "8", "2017-09-13 10:27:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64315", "10", "2017-09-13 10:27:28", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64316", "15", "2017-09-13 10:27:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64317", "14", "2017-09-13 10:46:47", "24.68.142.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("64318", "3", "2017-09-13 11:48:29", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("64319", "3", "2017-09-13 14:25:56", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("64320", "6", "2017-09-13 14:25:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64321", "9", "2017-09-13 14:25:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64322", "8", "2017-09-13 14:25:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64323", "10", "2017-09-13 14:25:59", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64324", "15", "2017-09-13 14:26:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64325", "8", "2017-09-13 15:09:39", "173.183.79.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("64326", "14", "2017-09-13 15:48:31", "209.52.88.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("64327", "8", "2017-09-13 16:46:08", "96.50.18.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("64328", "3", "2017-09-13 16:51:07", "46.229.168.75", "4");
INSERT INTO `wp_rg_form_view` VALUES("64329", "10", "2017-09-13 16:53:28", "46.229.168.74", "7");
INSERT INTO `wp_rg_form_view` VALUES("64330", "15", "2017-09-13 16:53:51", "46.229.168.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("64331", "6", "2017-09-13 16:58:30", "46.229.168.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("64332", "10", "2017-09-13 17:01:22", "46.229.168.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("64333", "3", "2017-09-13 17:02:38", "46.229.168.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("64334", "14", "2017-09-13 17:47:59", "50.2.36.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("64335", "3", "2017-09-13 18:32:34", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64336", "6", "2017-09-13 18:32:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64337", "9", "2017-09-13 18:32:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64338", "8", "2017-09-13 18:32:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64339", "10", "2017-09-13 18:32:38", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64340", "15", "2017-09-13 18:32:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64341", "10", "2017-09-13 19:38:16", "162.210.196.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("64342", "14", "2017-09-13 20:12:31", "193.17.219.35", "6");
INSERT INTO `wp_rg_form_view` VALUES("64343", "3", "2017-09-13 20:12:41", "193.17.219.35", "10");
INSERT INTO `wp_rg_form_view` VALUES("64344", "10", "2017-09-13 20:17:18", "72.14.199.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("64345", "6", "2017-09-13 20:50:15", "159.203.110.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("64346", "9", "2017-09-13 20:57:31", "159.203.110.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("64347", "15", "2017-09-13 20:59:58", "159.203.110.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("64348", "10", "2017-09-13 21:04:03", "159.203.110.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("64349", "3", "2017-09-13 21:04:12", "159.203.110.32", "25");
INSERT INTO `wp_rg_form_view` VALUES("64350", "14", "2017-09-13 21:17:10", "196.19.112.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("64351", "8", "2017-09-13 21:25:41", "159.203.110.32", "2");
INSERT INTO `wp_rg_form_view` VALUES("64352", "3", "2017-09-13 22:03:34", "45.35.255.17", "31");
INSERT INTO `wp_rg_form_view` VALUES("64353", "6", "2017-09-13 22:19:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64354", "9", "2017-09-13 22:19:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64355", "8", "2017-09-13 22:19:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64356", "10", "2017-09-13 22:19:14", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64357", "15", "2017-09-13 22:19:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64358", "8", "2017-09-13 23:09:27", "24.69.176.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("64359", "3", "2017-09-13 23:26:00", "198.245.115.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("64360", "14", "2017-09-13 23:48:30", "190.112.201.12", "3");
INSERT INTO `wp_rg_form_view` VALUES("64361", "3", "2017-09-14 01:39:44", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("64362", "3", "2017-09-14 02:12:36", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64363", "6", "2017-09-14 02:12:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64364", "9", "2017-09-14 02:12:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64365", "8", "2017-09-14 02:12:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64366", "10", "2017-09-14 02:12:39", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64367", "15", "2017-09-14 02:12:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64368", "10", "2017-09-14 03:37:51", "217.182.132.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("64369", "3", "2017-09-14 06:05:59", "52.88.109.3", "29");
INSERT INTO `wp_rg_form_view` VALUES("64370", "6", "2017-09-14 06:06:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64371", "9", "2017-09-14 06:06:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64372", "8", "2017-09-14 06:06:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64373", "10", "2017-09-14 06:06:02", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64374", "15", "2017-09-14 06:06:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64375", "11", "2017-09-14 07:12:42", "157.55.39.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("64376", "8", "2017-09-14 07:46:00", "167.114.181.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("64377", "3", "2017-09-14 07:46:15", "167.114.181.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("64378", "9", "2017-09-14 07:54:46", "157.55.39.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("64379", "3", "2017-09-14 08:05:22", "207.46.13.147", "10");
INSERT INTO `wp_rg_form_view` VALUES("64380", "10", "2017-09-14 08:05:29", "157.55.39.89", "3");
INSERT INTO `wp_rg_form_view` VALUES("64381", "11", "2017-09-14 08:06:05", "157.55.39.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("64382", "9", "2017-09-14 08:06:14", "207.46.13.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("64383", "3", "2017-09-14 09:53:57", "41.251.91.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("64384", "3", "2017-09-14 10:05:03", "52.88.109.3", "60");
INSERT INTO `wp_rg_form_view` VALUES("64385", "6", "2017-09-14 10:05:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64386", "9", "2017-09-14 10:05:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64387", "8", "2017-09-14 10:05:05", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64388", "10", "2017-09-14 10:05:06", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("64389", "15", "2017-09-14 10:05:09", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64390", "14", "2017-09-14 10:40:21", "131.153.28.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("64391", "10", "2017-09-14 11:03:22", "51.255.66.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("64392", "3", "2017-09-14 11:14:58", "180.76.15.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("64393", "3", "2017-09-14 12:12:32", "66.249.79.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("64394", "3", "2017-09-14 13:26:48", "46.161.9.59", "32");
INSERT INTO `wp_rg_form_view` VALUES("64395", "6", "2017-09-14 13:54:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64396", "9", "2017-09-14 13:54:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64397", "8", "2017-09-14 13:54:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64398", "10", "2017-09-14 13:54:31", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64399", "15", "2017-09-14 13:54:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64400", "3", "2017-09-14 14:01:41", "180.76.15.31", "2");
INSERT INTO `wp_rg_form_view` VALUES("64401", "8", "2017-09-14 15:55:25", "24.108.29.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("64402", "3", "2017-09-14 16:14:58", "180.76.15.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("64403", "3", "2017-09-14 17:16:08", "209.52.88.31", "61");
INSERT INTO `wp_rg_form_view` VALUES("64404", "6", "2017-09-14 17:49:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64405", "9", "2017-09-14 17:49:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64406", "8", "2017-09-14 17:49:58", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64407", "10", "2017-09-14 17:49:59", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("64408", "15", "2017-09-14 17:50:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64409", "9", "2017-09-14 18:28:24", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("64410", "3", "2017-09-14 19:01:48", "180.76.15.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("64411", "10", "2017-09-14 20:35:44", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("64412", "3", "2017-09-14 20:36:38", "108.180.177.111", "5");
INSERT INTO `wp_rg_form_view` VALUES("64413", "14", "2017-09-14 21:01:22", "177.180.173.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("64414", "3", "2017-09-14 21:47:27", "52.88.109.3", "30");
INSERT INTO `wp_rg_form_view` VALUES("64415", "6", "2017-09-14 21:47:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64416", "9", "2017-09-14 21:47:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64417", "8", "2017-09-14 21:47:30", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64418", "10", "2017-09-14 21:47:30", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64419", "15", "2017-09-14 21:47:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64420", "10", "2017-09-14 22:01:10", "178.208.12.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64421", "3", "2017-09-14 23:20:14", "70.66.168.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("64422", "8", "2017-09-14 23:26:03", "24.108.184.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("64423", "3", "2017-09-15 00:00:54", "70.66.190.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("64424", "11", "2017-09-15 00:38:43", "77.75.76.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("64425", "3", "2017-09-15 01:43:56", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64426", "6", "2017-09-15 01:43:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64427", "9", "2017-09-15 01:43:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64428", "8", "2017-09-15 01:43:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64429", "10", "2017-09-15 01:43:59", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64430", "15", "2017-09-15 01:44:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64431", "3", "2017-09-15 03:07:56", "180.76.15.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("64432", "3", "2017-09-15 04:07:39", "66.249.79.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("64433", "10", "2017-09-15 04:43:38", "51.255.65.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("64434", "3", "2017-09-15 05:16:18", "99.199.3.13", "35");
INSERT INTO `wp_rg_form_view` VALUES("64435", "6", "2017-09-15 05:36:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64436", "9", "2017-09-15 05:36:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64437", "8", "2017-09-15 05:36:22", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64438", "10", "2017-09-15 05:36:23", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64439", "15", "2017-09-15 05:36:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64440", "14", "2017-09-15 06:03:51", "100.35.47.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("64441", "8", "2017-09-15 06:07:20", "100.35.47.77", "17");
INSERT INTO `wp_rg_form_view` VALUES("64442", "3", "2017-09-15 06:07:27", "100.35.47.77", "244");
INSERT INTO `wp_rg_form_view` VALUES("64443", "9", "2017-09-15 06:12:20", "100.35.47.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("64444", "6", "2017-09-15 06:13:18", "100.35.47.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("64445", "10", "2017-09-15 06:13:49", "100.35.47.77", "41");
INSERT INTO `wp_rg_form_view` VALUES("64446", "15", "2017-09-15 06:14:17", "100.35.47.77", "12");
INSERT INTO `wp_rg_form_view` VALUES("64447", "3", "2017-09-15 08:44:15", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("64448", "3", "2017-09-15 09:28:54", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("64449", "6", "2017-09-15 09:28:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64450", "9", "2017-09-15 09:28:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64451", "8", "2017-09-15 09:28:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64452", "10", "2017-09-15 09:28:57", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64453", "15", "2017-09-15 09:28:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64454", "3", "2017-09-15 10:15:58", "180.76.15.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("64455", "3", "2017-09-15 11:26:25", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("64456", "12", "2017-09-15 11:39:44", "157.55.39.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("64457", "3", "2017-09-15 13:28:39", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("64458", "6", "2017-09-15 13:28:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64459", "9", "2017-09-15 13:28:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64460", "8", "2017-09-15 13:28:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64461", "10", "2017-09-15 13:28:41", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64462", "15", "2017-09-15 13:28:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64463", "3", "2017-09-15 14:00:27", "167.114.172.229", "42");
INSERT INTO `wp_rg_form_view` VALUES("64464", "8", "2017-09-15 14:00:43", "167.114.172.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("64465", "14", "2017-09-15 14:01:38", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("64466", "10", "2017-09-15 14:03:11", "167.114.172.229", "6");
INSERT INTO `wp_rg_form_view` VALUES("64467", "15", "2017-09-15 14:07:19", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("64468", "9", "2017-09-15 14:09:50", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("64469", "6", "2017-09-15 14:11:00", "167.114.172.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("64470", "3", "2017-09-15 15:48:23", "180.76.15.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("64471", "3", "2017-09-15 17:15:31", "66.249.66.213", "38");
INSERT INTO `wp_rg_form_view` VALUES("64472", "6", "2017-09-15 17:28:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64473", "9", "2017-09-15 17:28:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64474", "8", "2017-09-15 17:28:13", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("64475", "10", "2017-09-15 17:28:14", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64476", "15", "2017-09-15 17:28:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64477", "3", "2017-09-15 18:58:07", "207.6.150.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("64478", "15", "2017-09-15 19:07:35", "66.249.66.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("64479", "3", "2017-09-15 20:15:58", "173.212.223.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("64480", "10", "2017-09-15 21:12:25", "164.132.161.55", "6");
INSERT INTO `wp_rg_form_view` VALUES("64481", "3", "2017-09-15 21:15:41", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("64482", "6", "2017-09-15 21:15:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64483", "9", "2017-09-15 21:15:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64484", "8", "2017-09-15 21:15:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64485", "15", "2017-09-15 21:15:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64486", "14", "2017-09-15 22:04:04", "184.71.26.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("64487", "3", "2017-09-15 22:15:02", "24.68.248.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("64488", "10", "2017-09-15 23:48:17", "66.249.92.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("64489", "3", "2017-09-16 00:59:34", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64490", "6", "2017-09-16 00:59:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64491", "9", "2017-09-16 00:59:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64492", "8", "2017-09-16 00:59:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64493", "10", "2017-09-16 00:59:36", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64494", "15", "2017-09-16 00:59:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64495", "3", "2017-09-16 04:48:48", "207.46.13.53", "33");
INSERT INTO `wp_rg_form_view` VALUES("64496", "6", "2017-09-16 04:52:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64497", "9", "2017-09-16 04:52:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64498", "8", "2017-09-16 04:52:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64499", "10", "2017-09-16 04:52:02", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64500", "15", "2017-09-16 04:52:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64501", "10", "2017-09-16 05:35:30", "66.249.66.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("64502", "3", "2017-09-16 06:01:45", "178.63.1.153", "12");
INSERT INTO `wp_rg_form_view` VALUES("64503", "8", "2017-09-16 06:04:10", "178.63.1.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("64504", "10", "2017-09-16 06:29:14", "157.55.39.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("64505", "11", "2017-09-16 06:29:38", "157.55.39.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("64506", "9", "2017-09-16 06:30:26", "157.55.39.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("64507", "3", "2017-09-16 07:21:27", "180.76.15.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("64508", "14", "2017-09-16 07:41:32", "40.77.167.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("64509", "3", "2017-09-16 08:16:52", "157.55.39.10", "65");
INSERT INTO `wp_rg_form_view` VALUES("64510", "6", "2017-09-16 08:50:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64511", "9", "2017-09-16 08:50:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64512", "8", "2017-09-16 08:50:04", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64513", "10", "2017-09-16 08:50:05", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("64514", "15", "2017-09-16 08:50:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64515", "3", "2017-09-16 10:30:42", "66.249.66.215", "2");
INSERT INTO `wp_rg_form_view` VALUES("64516", "15", "2017-09-16 11:54:37", "40.77.167.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("64517", "3", "2017-09-16 12:41:56", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64518", "6", "2017-09-16 12:41:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64519", "9", "2017-09-16 12:41:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64520", "8", "2017-09-16 12:41:59", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64521", "10", "2017-09-16 12:41:59", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64522", "15", "2017-09-16 12:42:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64523", "10", "2017-09-16 13:41:58", "66.249.92.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("64524", "10", "2017-09-16 14:47:42", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("64525", "14", "2017-09-16 14:57:34", "138.128.226.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("64526", "3", "2017-09-16 15:13:11", "157.55.39.10", "2");
INSERT INTO `wp_rg_form_view` VALUES("64527", "10", "2017-09-16 16:02:59", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("64528", "3", "2017-09-16 16:19:52", "157.55.39.71", "34");
INSERT INTO `wp_rg_form_view` VALUES("64529", "6", "2017-09-16 16:35:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64530", "9", "2017-09-16 16:35:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64531", "8", "2017-09-16 16:35:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64532", "15", "2017-09-16 16:35:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64533", "3", "2017-09-16 17:20:35", "189.100.8.192", "2");
INSERT INTO `wp_rg_form_view` VALUES("64534", "8", "2017-09-16 17:45:31", "24.69.15.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("64535", "9", "2017-09-16 18:04:29", "180.76.15.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("64536", "10", "2017-09-16 18:24:44", "157.55.39.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("64537", "14", "2017-09-16 18:50:01", "184.66.229.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("64538", "14", "2017-09-16 19:36:17", "96.50.117.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("64539", "3", "2017-09-16 20:28:31", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64540", "6", "2017-09-16 20:28:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64541", "9", "2017-09-16 20:28:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64542", "8", "2017-09-16 20:28:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64543", "10", "2017-09-16 20:28:34", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64544", "15", "2017-09-16 20:28:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64545", "3", "2017-09-16 22:03:48", "180.76.15.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("64546", "8", "2017-09-16 22:11:09", "70.67.107.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("64547", "3", "2017-09-16 23:03:16", "217.27.220.88", "11");
INSERT INTO `wp_rg_form_view` VALUES("64548", "8", "2017-09-16 23:04:14", "217.27.220.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("64549", "14", "2017-09-16 23:05:02", "217.27.220.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("64550", "3", "2017-09-17 00:21:23", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64551", "6", "2017-09-17 00:21:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64552", "9", "2017-09-17 00:21:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64553", "8", "2017-09-17 00:21:25", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64554", "10", "2017-09-17 00:21:26", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64555", "15", "2017-09-17 00:21:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64556", "10", "2017-09-17 03:27:48", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("64557", "3", "2017-09-17 03:38:43", "109.102.111.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("64558", "14", "2017-09-17 03:39:25", "109.102.111.87", "2");
INSERT INTO `wp_rg_form_view` VALUES("64559", "3", "2017-09-17 04:10:08", "5.255.250.107", "33");
INSERT INTO `wp_rg_form_view` VALUES("64560", "6", "2017-09-17 04:16:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64561", "9", "2017-09-17 04:16:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64562", "8", "2017-09-17 04:16:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64563", "10", "2017-09-17 04:16:08", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64564", "15", "2017-09-17 04:16:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64565", "14", "2017-09-17 04:40:39", "64.114.250.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("64566", "8", "2017-09-17 05:32:04", "70.67.196.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("64567", "3", "2017-09-17 06:24:29", "180.76.15.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("64568", "3", "2017-09-17 08:10:51", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64569", "6", "2017-09-17 08:10:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64570", "9", "2017-09-17 08:10:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64571", "8", "2017-09-17 08:10:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64572", "10", "2017-09-17 08:10:54", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64573", "15", "2017-09-17 08:10:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64574", "8", "2017-09-17 09:17:53", "12.202.16.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("64575", "3", "2017-09-17 09:18:01", "12.202.16.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("64576", "10", "2017-09-17 12:00:13", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("64577", "3", "2017-09-17 12:05:58", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64578", "6", "2017-09-17 12:05:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64579", "9", "2017-09-17 12:05:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64580", "8", "2017-09-17 12:06:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64581", "15", "2017-09-17 12:06:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64582", "14", "2017-09-17 15:00:24", "180.76.15.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("64583", "3", "2017-09-17 15:53:42", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64584", "6", "2017-09-17 15:53:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64585", "9", "2017-09-17 15:53:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64586", "8", "2017-09-17 15:53:44", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64587", "10", "2017-09-17 15:53:45", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64588", "15", "2017-09-17 15:53:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64589", "10", "2017-09-17 16:00:24", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("64590", "10", "2017-09-17 18:46:30", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("64591", "10", "2017-09-17 19:26:48", "24.108.13.92", "7");
INSERT INTO `wp_rg_form_view` VALUES("64592", "3", "2017-09-17 19:45:33", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64593", "6", "2017-09-17 19:45:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64594", "9", "2017-09-17 19:45:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64595", "8", "2017-09-17 19:45:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64596", "15", "2017-09-17 19:45:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64597", "14", "2017-09-17 20:41:24", "91.198.127.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("64598", "3", "2017-09-17 20:41:59", "185.101.69.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("64599", "14", "2017-09-17 22:11:54", "24.108.166.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("64600", "8", "2017-09-17 22:33:03", "207.46.13.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("64601", "3", "2017-09-17 23:40:26", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64602", "6", "2017-09-17 23:40:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64603", "9", "2017-09-17 23:40:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64604", "8", "2017-09-17 23:40:30", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64605", "10", "2017-09-17 23:40:30", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64606", "15", "2017-09-17 23:40:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64607", "14", "2017-09-18 03:27:23", "107.150.74.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("64608", "3", "2017-09-18 03:28:10", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64609", "6", "2017-09-18 03:28:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64610", "9", "2017-09-18 03:28:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64611", "8", "2017-09-18 03:28:13", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64612", "10", "2017-09-18 03:28:14", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64613", "15", "2017-09-18 03:28:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64614", "3", "2017-09-18 04:08:20", "51.255.65.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("64615", "14", "2017-09-18 04:30:27", "94.75.13.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("64616", "3", "2017-09-18 05:17:18", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("64617", "14", "2017-09-18 05:55:11", "207.6.123.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("64618", "10", "2017-09-18 06:45:20", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("64619", "3", "2017-09-18 07:18:07", "66.249.79.133", "66");
INSERT INTO `wp_rg_form_view` VALUES("64620", "6", "2017-09-18 07:20:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64621", "9", "2017-09-18 07:20:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64622", "8", "2017-09-18 07:20:02", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64623", "10", "2017-09-18 07:20:03", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("64624", "15", "2017-09-18 07:20:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64625", "10", "2017-09-18 10:11:09", "180.76.15.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("64626", "14", "2017-09-18 10:44:27", "180.76.15.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("64627", "14", "2017-09-18 11:06:14", "198.46.210.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("64628", "3", "2017-09-18 11:14:12", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64629", "6", "2017-09-18 11:14:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64630", "9", "2017-09-18 11:14:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64631", "8", "2017-09-18 11:14:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64632", "10", "2017-09-18 11:14:15", "52.88.109.3", "7");
INSERT INTO `wp_rg_form_view` VALUES("64633", "15", "2017-09-18 11:14:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64634", "10", "2017-09-18 14:07:45", "66.249.79.133", "11");
INSERT INTO `wp_rg_form_view` VALUES("64635", "3", "2017-09-18 14:17:15", "46.229.168.70", "10");
INSERT INTO `wp_rg_form_view` VALUES("64636", "3", "2017-09-18 15:16:33", "40.77.167.27", "33");
INSERT INTO `wp_rg_form_view` VALUES("64637", "6", "2017-09-18 15:17:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64638", "9", "2017-09-18 15:17:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64639", "8", "2017-09-18 15:17:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64640", "10", "2017-09-18 15:17:52", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64641", "15", "2017-09-18 15:17:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64642", "10", "2017-09-18 16:28:32", "51.255.71.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("64643", "3", "2017-09-18 16:36:43", "142.104.19.218", "1");
INSERT INTO `wp_rg_form_view` VALUES("64644", "3", "2017-09-18 17:18:44", "40.77.167.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("64645", "10", "2017-09-18 17:44:32", "40.77.167.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("64646", "3", "2017-09-18 19:10:53", "66.249.79.137", "33");
INSERT INTO `wp_rg_form_view` VALUES("64647", "6", "2017-09-18 19:22:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64648", "9", "2017-09-18 19:22:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64649", "8", "2017-09-18 19:22:18", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("64650", "10", "2017-09-18 19:22:18", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64651", "15", "2017-09-18 19:22:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64652", "3", "2017-09-18 20:24:05", "184.66.49.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("64653", "8", "2017-09-18 21:30:24", "24.108.184.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("64654", "10", "2017-09-18 22:19:56", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("64655", "3", "2017-09-18 22:22:33", "69.196.72.126", "8");
INSERT INTO `wp_rg_form_view` VALUES("64656", "8", "2017-09-18 22:58:14", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("64657", "3", "2017-09-18 23:15:38", "151.80.31.154", "33");
INSERT INTO `wp_rg_form_view` VALUES("64658", "6", "2017-09-18 23:22:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64659", "9", "2017-09-18 23:22:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64660", "8", "2017-09-18 23:22:13", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64661", "10", "2017-09-18 23:22:14", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64662", "15", "2017-09-18 23:22:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64663", "3", "2017-09-19 00:35:52", "151.80.31.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("64664", "8", "2017-09-19 00:56:23", "184.66.18.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("64665", "3", "2017-09-19 01:02:11", "184.66.18.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("64666", "8", "2017-09-19 01:40:42", "151.80.31.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("64667", "3", "2017-09-19 03:21:34", "52.88.109.3", "45");
INSERT INTO `wp_rg_form_view` VALUES("64668", "6", "2017-09-19 03:21:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64669", "9", "2017-09-19 03:21:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64670", "8", "2017-09-19 03:21:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64671", "10", "2017-09-19 03:21:36", "52.88.109.3", "8");
INSERT INTO `wp_rg_form_view` VALUES("64672", "15", "2017-09-19 03:21:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64673", "11", "2017-09-19 03:57:37", "40.77.167.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("64674", "3", "2017-09-19 04:27:22", "24.68.248.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("64675", "14", "2017-09-19 04:41:10", "184.66.150.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("64676", "8", "2017-09-19 05:24:25", "158.69.27.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("64677", "3", "2017-09-19 05:24:34", "158.69.27.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("64678", "3", "2017-09-19 07:20:32", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64679", "6", "2017-09-19 07:20:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64680", "9", "2017-09-19 07:20:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64681", "8", "2017-09-19 07:20:34", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64682", "10", "2017-09-19 07:20:35", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64683", "15", "2017-09-19 07:20:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64684", "3", "2017-09-19 08:21:13", "68.180.230.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("64685", "3", "2017-09-19 09:15:19", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("64686", "10", "2017-09-19 10:40:15", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("64687", "10", "2017-09-19 11:06:36", "180.76.15.27", "6");
INSERT INTO `wp_rg_form_view` VALUES("64688", "3", "2017-09-19 11:15:40", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("64689", "6", "2017-09-19 11:15:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64690", "9", "2017-09-19 11:15:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64691", "8", "2017-09-19 11:15:42", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64692", "15", "2017-09-19 11:15:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64693", "3", "2017-09-19 13:42:31", "173.44.222.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("64694", "10", "2017-09-19 13:51:13", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("64695", "10", "2017-09-19 14:10:06", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("64696", "3", "2017-09-19 15:11:41", "52.88.109.3", "37");
INSERT INTO `wp_rg_form_view` VALUES("64697", "6", "2017-09-19 15:11:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64698", "9", "2017-09-19 15:11:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64699", "8", "2017-09-19 15:11:44", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("64700", "10", "2017-09-19 15:11:44", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64701", "15", "2017-09-19 15:11:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64702", "8", "2017-09-19 17:24:59", "154.20.4.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("64703", "10", "2017-09-19 18:19:59", "180.76.15.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("64704", "3", "2017-09-19 19:08:00", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("64705", "6", "2017-09-19 19:08:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64706", "9", "2017-09-19 19:08:02", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64707", "8", "2017-09-19 19:08:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64708", "10", "2017-09-19 19:08:03", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64709", "15", "2017-09-19 19:08:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64710", "3", "2017-09-19 20:35:29", "134.87.168.2", "10");
INSERT INTO `wp_rg_form_view` VALUES("64711", "8", "2017-09-19 20:43:40", "104.254.244.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("64712", "3", "2017-09-19 21:37:13", "70.67.107.36", "2");
INSERT INTO `wp_rg_form_view` VALUES("64713", "8", "2017-09-19 21:38:35", "70.67.107.36", "7");
INSERT INTO `wp_rg_form_view` VALUES("64714", "3", "2017-09-19 23:10:54", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64715", "6", "2017-09-19 23:10:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64716", "9", "2017-09-19 23:10:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64717", "8", "2017-09-19 23:10:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64718", "10", "2017-09-19 23:10:57", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64719", "15", "2017-09-19 23:10:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64720", "14", "2017-09-20 00:36:37", "192.36.168.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("64721", "3", "2017-09-20 02:07:08", "51.255.71.123", "7");
INSERT INTO `wp_rg_form_view` VALUES("64722", "10", "2017-09-20 02:10:05", "72.14.199.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("64723", "14", "2017-09-20 02:22:06", "108.180.146.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("64724", "3", "2017-09-20 03:10:58", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64725", "6", "2017-09-20 03:10:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64726", "9", "2017-09-20 03:10:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64727", "8", "2017-09-20 03:11:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64728", "10", "2017-09-20 03:11:01", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64729", "15", "2017-09-20 03:11:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64730", "14", "2017-09-20 04:13:41", "108.180.145.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("64731", "10", "2017-09-20 06:33:00", "178.208.12.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("64732", "3", "2017-09-20 07:06:09", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("64733", "6", "2017-09-20 07:06:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64734", "9", "2017-09-20 07:06:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64735", "8", "2017-09-20 07:06:11", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64736", "10", "2017-09-20 07:06:12", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64737", "15", "2017-09-20 07:06:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64738", "14", "2017-09-20 07:33:08", "51.255.65.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("64739", "14", "2017-09-20 09:38:03", "178.216.49.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("64740", "3", "2017-09-20 09:38:15", "178.216.49.178", "2");
INSERT INTO `wp_rg_form_view` VALUES("64741", "3", "2017-09-20 10:30:49", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("64742", "3", "2017-09-20 11:15:03", "52.88.109.3", "65");
INSERT INTO `wp_rg_form_view` VALUES("64743", "6", "2017-09-20 11:15:03", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64744", "9", "2017-09-20 11:15:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64745", "8", "2017-09-20 11:15:05", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64746", "10", "2017-09-20 11:15:06", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("64747", "15", "2017-09-20 11:15:10", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64748", "14", "2017-09-20 11:19:18", "91.108.177.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("64749", "3", "2017-09-20 12:31:04", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("64750", "10", "2017-09-20 14:08:48", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("64751", "8", "2017-09-20 14:11:04", "180.76.15.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("64752", "10", "2017-09-20 15:14:34", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("64753", "3", "2017-09-20 15:20:59", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64754", "6", "2017-09-20 15:20:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64755", "9", "2017-09-20 15:21:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64756", "8", "2017-09-20 15:21:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64757", "15", "2017-09-20 15:21:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64758", "3", "2017-09-20 16:24:21", "180.76.15.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("64759", "3", "2017-09-20 17:31:05", "180.76.15.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("64760", "8", "2017-09-20 17:49:08", "154.20.7.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("64761", "3", "2017-09-20 18:35:17", "70.66.175.202", "3");
INSERT INTO `wp_rg_form_view` VALUES("64762", "8", "2017-09-20 18:46:16", "70.66.175.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("64763", "3", "2017-09-20 19:25:54", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("64764", "6", "2017-09-20 19:25:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64765", "9", "2017-09-20 19:25:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64766", "8", "2017-09-20 19:25:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64767", "10", "2017-09-20 19:25:57", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64768", "15", "2017-09-20 19:25:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64769", "14", "2017-09-20 22:04:57", "184.69.11.186", "3");
INSERT INTO `wp_rg_form_view` VALUES("64770", "3", "2017-09-20 22:31:04", "180.76.15.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("64771", "8", "2017-09-20 23:17:06", "104.254.247.188", "4");
INSERT INTO `wp_rg_form_view` VALUES("64772", "3", "2017-09-20 23:17:24", "104.254.247.188", "37");
INSERT INTO `wp_rg_form_view` VALUES("64773", "6", "2017-09-20 23:27:13", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64774", "9", "2017-09-20 23:27:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64775", "10", "2017-09-20 23:27:18", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64776", "15", "2017-09-20 23:27:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64777", "11", "2017-09-21 00:41:26", "182.74.164.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("64778", "3", "2017-09-21 01:25:11", "51.255.71.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("64779", "14", "2017-09-21 02:33:22", "36.67.78.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("64780", "3", "2017-09-21 02:33:45", "36.67.78.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("64781", "3", "2017-09-21 03:28:40", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64782", "6", "2017-09-21 03:28:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64783", "9", "2017-09-21 03:28:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64784", "8", "2017-09-21 03:28:43", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64785", "10", "2017-09-21 03:28:43", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64786", "15", "2017-09-21 03:28:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64787", "3", "2017-09-21 04:08:37", "207.46.13.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("64788", "8", "2017-09-21 05:16:44", "154.20.4.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("64789", "3", "2017-09-21 06:33:43", "91.121.97.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("64790", "3", "2017-09-21 07:29:29", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64791", "6", "2017-09-21 07:29:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64792", "9", "2017-09-21 07:29:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64793", "8", "2017-09-21 07:29:32", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64794", "10", "2017-09-21 07:29:32", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64795", "15", "2017-09-21 07:29:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64796", "3", "2017-09-21 10:19:49", "180.76.15.21", "5");
INSERT INTO `wp_rg_form_view` VALUES("64797", "12", "2017-09-21 10:53:11", "180.76.15.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("64798", "14", "2017-09-21 10:54:36", "191.96.247.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("64799", "3", "2017-09-21 11:24:52", "52.88.109.3", "66");
INSERT INTO `wp_rg_form_view` VALUES("64800", "6", "2017-09-21 11:24:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64801", "9", "2017-09-21 11:24:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64802", "8", "2017-09-21 11:24:54", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64803", "10", "2017-09-21 11:24:55", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("64804", "15", "2017-09-21 11:24:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64805", "3", "2017-09-21 12:27:58", "157.55.39.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("64806", "3", "2017-09-21 13:06:29", "180.76.15.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("64807", "3", "2017-09-21 14:13:09", "180.76.15.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("64808", "3", "2017-09-21 15:25:54", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64809", "6", "2017-09-21 15:25:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64810", "9", "2017-09-21 15:25:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64811", "8", "2017-09-21 15:25:56", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64812", "10", "2017-09-21 15:25:57", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64813", "15", "2017-09-21 15:25:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64814", "3", "2017-09-21 16:30:27", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("64815", "10", "2017-09-21 16:45:51", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("64816", "3", "2017-09-21 17:13:29", "194.187.170.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("64817", "10", "2017-09-21 17:33:12", "180.76.15.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("64818", "3", "2017-09-21 18:06:32", "180.76.15.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("64819", "10", "2017-09-21 19:13:12", "180.76.15.138", "6");
INSERT INTO `wp_rg_form_view` VALUES("64820", "3", "2017-09-21 19:23:39", "52.88.109.3", "35");
INSERT INTO `wp_rg_form_view` VALUES("64821", "6", "2017-09-21 19:23:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64822", "9", "2017-09-21 19:23:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64823", "8", "2017-09-21 19:23:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64824", "15", "2017-09-21 19:23:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64825", "3", "2017-09-21 20:14:59", "157.55.39.78", "13");
INSERT INTO `wp_rg_form_view` VALUES("64826", "14", "2017-09-21 20:27:35", "96.54.226.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("64827", "10", "2017-09-21 20:36:22", "157.55.39.78", "2");
INSERT INTO `wp_rg_form_view` VALUES("64828", "9", "2017-09-21 20:43:30", "157.55.39.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("64829", "8", "2017-09-21 20:43:57", "157.55.39.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("64830", "3", "2017-09-21 21:13:27", "157.55.39.67", "5");
INSERT INTO `wp_rg_form_view` VALUES("64831", "8", "2017-09-21 21:18:21", "157.55.39.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("64832", "10", "2017-09-21 21:18:26", "157.55.39.78", "3");
INSERT INTO `wp_rg_form_view` VALUES("64833", "3", "2017-09-21 22:07:33", "207.46.13.66", "9");
INSERT INTO `wp_rg_form_view` VALUES("64834", "10", "2017-09-21 22:07:53", "207.46.13.66", "7");
INSERT INTO `wp_rg_form_view` VALUES("64835", "14", "2017-09-21 22:17:35", "23.245.152.181", "5");
INSERT INTO `wp_rg_form_view` VALUES("64836", "8", "2017-09-21 22:26:11", "154.20.28.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("64837", "9", "2017-09-21 22:36:50", "157.55.39.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("64838", "3", "2017-09-21 23:26:44", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("64839", "6", "2017-09-21 23:26:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64840", "9", "2017-09-21 23:26:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64841", "8", "2017-09-21 23:26:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64842", "10", "2017-09-21 23:26:47", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64843", "15", "2017-09-21 23:26:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64844", "8", "2017-09-22 00:05:34", "208.123.8.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("64845", "3", "2017-09-22 00:05:50", "208.123.8.103", "7");
INSERT INTO `wp_rg_form_view` VALUES("64846", "10", "2017-09-22 00:18:12", "207.46.13.66", "4");
INSERT INTO `wp_rg_form_view` VALUES("64847", "3", "2017-09-22 01:16:24", "180.76.15.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("64848", "3", "2017-09-22 02:23:08", "180.76.15.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("64849", "3", "2017-09-22 03:29:13", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("64850", "6", "2017-09-22 03:29:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64851", "9", "2017-09-22 03:29:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64852", "8", "2017-09-22 03:29:15", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64853", "10", "2017-09-22 03:29:16", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64854", "15", "2017-09-22 03:29:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64855", "3", "2017-09-22 04:06:37", "136.243.59.237", "6");
INSERT INTO `wp_rg_form_view` VALUES("64856", "14", "2017-09-22 04:28:08", "96.54.63.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("64857", "10", "2017-09-22 05:10:27", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("64858", "14", "2017-09-22 05:50:54", "184.66.150.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("64859", "3", "2017-09-22 05:54:24", "209.52.88.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("64860", "3", "2017-09-22 07:11:05", "115.215.40.161", "35");
INSERT INTO `wp_rg_form_view` VALUES("64861", "6", "2017-09-22 07:24:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64862", "9", "2017-09-22 07:24:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64863", "8", "2017-09-22 07:24:42", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64864", "10", "2017-09-22 07:24:43", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64865", "15", "2017-09-22 07:24:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64866", "3", "2017-09-22 08:21:06", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("64867", "14", "2017-09-22 10:41:14", "77.75.76.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("64868", "3", "2017-09-22 10:54:02", "157.55.39.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("64869", "3", "2017-09-22 11:16:37", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("64870", "6", "2017-09-22 11:16:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64871", "9", "2017-09-22 11:16:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64872", "8", "2017-09-22 11:16:39", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64873", "10", "2017-09-22 11:16:39", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64874", "15", "2017-09-22 11:16:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64875", "10", "2017-09-22 13:27:17", "164.132.161.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("64876", "8", "2017-09-22 13:40:44", "12.202.16.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("64877", "3", "2017-09-22 13:40:55", "12.202.16.36", "6");
INSERT INTO `wp_rg_form_view` VALUES("64878", "3", "2017-09-22 15:04:55", "52.88.109.3", "64");
INSERT INTO `wp_rg_form_view` VALUES("64879", "6", "2017-09-22 15:04:55", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64880", "9", "2017-09-22 15:04:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64881", "8", "2017-09-22 15:04:57", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64882", "10", "2017-09-22 15:04:58", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("64883", "15", "2017-09-22 15:05:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64884", "5", "2017-09-22 15:57:56", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("64885", "8", "2017-09-22 17:00:00", "184.66.18.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("64886", "3", "2017-09-22 18:59:03", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64887", "6", "2017-09-22 18:59:03", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64888", "9", "2017-09-22 18:59:05", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64889", "8", "2017-09-22 18:59:05", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64890", "10", "2017-09-22 18:59:06", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64891", "15", "2017-09-22 18:59:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64892", "10", "2017-09-22 19:18:25", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("64893", "3", "2017-09-22 20:46:55", "207.46.13.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("64894", "8", "2017-09-22 20:50:32", "70.67.107.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("64895", "3", "2017-09-22 21:50:31", "180.76.15.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("64896", "3", "2017-09-22 22:13:53", "216.244.66.231", "41");
INSERT INTO `wp_rg_form_view` VALUES("64897", "10", "2017-09-22 22:25:36", "207.46.13.59", "6");
INSERT INTO `wp_rg_form_view` VALUES("64898", "15", "2017-09-22 22:25:36", "207.46.13.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("64899", "6", "2017-09-22 22:46:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64900", "9", "2017-09-22 22:46:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64901", "8", "2017-09-22 22:46:47", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("64902", "3", "2017-09-22 23:30:29", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("64903", "3", "2017-09-23 00:37:07", "180.76.15.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("64904", "10", "2017-09-23 01:04:30", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("64905", "3", "2017-09-23 02:12:11", "99.199.3.24", "34");
INSERT INTO `wp_rg_form_view` VALUES("64906", "6", "2017-09-23 02:33:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64907", "9", "2017-09-23 02:33:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64908", "8", "2017-09-23 02:33:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64909", "10", "2017-09-23 02:33:18", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64910", "15", "2017-09-23 02:33:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64911", "10", "2017-09-23 03:43:30", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("64912", "14", "2017-09-23 04:27:10", "198.20.181.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("64913", "3", "2017-09-23 04:27:16", "198.20.181.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("64914", "3", "2017-09-23 06:20:45", "52.88.109.3", "41");
INSERT INTO `wp_rg_form_view` VALUES("64915", "6", "2017-09-23 06:20:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64916", "9", "2017-09-23 06:20:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64917", "8", "2017-09-23 06:20:47", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("64918", "10", "2017-09-23 06:20:48", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64919", "15", "2017-09-23 06:20:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64920", "14", "2017-09-23 06:27:02", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("64921", "10", "2017-09-23 07:42:03", "180.76.15.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("64922", "3", "2017-09-23 09:27:08", "207.46.13.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("64923", "3", "2017-09-23 10:23:27", "194.187.170.104", "34");
INSERT INTO `wp_rg_form_view` VALUES("64924", "6", "2017-09-23 10:29:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64925", "9", "2017-09-23 10:29:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64926", "8", "2017-09-23 10:29:44", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64927", "10", "2017-09-23 10:29:45", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64928", "15", "2017-09-23 10:29:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64929", "10", "2017-09-23 11:09:33", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("64930", "3", "2017-09-23 11:31:26", "51.255.65.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("64931", "3", "2017-09-23 12:14:46", "46.229.168.65", "33");
INSERT INTO `wp_rg_form_view` VALUES("64932", "9", "2017-09-23 12:16:38", "46.229.168.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("64933", "10", "2017-09-23 12:18:29", "46.229.168.68", "5");
INSERT INTO `wp_rg_form_view` VALUES("64934", "8", "2017-09-23 12:19:31", "46.229.168.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("64935", "11", "2017-09-23 12:22:38", "46.229.168.65", "1");
INSERT INTO `wp_rg_form_view` VALUES("64936", "14", "2017-09-23 12:26:31", "46.229.168.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("64937", "6", "2017-09-23 12:28:21", "46.229.168.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("64938", "3", "2017-09-23 13:00:18", "80.211.130.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("64939", "10", "2017-09-23 13:10:18", "180.76.15.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("64940", "3", "2017-09-23 14:16:59", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("64941", "6", "2017-09-23 14:16:59", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64942", "9", "2017-09-23 14:17:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64943", "8", "2017-09-23 14:17:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64944", "10", "2017-09-23 14:17:02", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("64945", "15", "2017-09-23 14:17:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64946", "14", "2017-09-23 14:58:43", "196.196.37.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("64947", "3", "2017-09-23 16:26:20", "157.55.39.156", "11");
INSERT INTO `wp_rg_form_view` VALUES("64948", "14", "2017-09-23 16:33:57", "192.154.231.104", "3");
INSERT INTO `wp_rg_form_view` VALUES("64949", "6", "2017-09-23 16:46:40", "104.236.32.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("64950", "10", "2017-09-23 16:48:45", "104.236.32.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("64951", "9", "2017-09-23 16:53:01", "104.236.32.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("64952", "15", "2017-09-23 16:59:13", "104.236.32.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("64953", "3", "2017-09-23 17:01:26", "104.236.32.242", "22");
INSERT INTO `wp_rg_form_view` VALUES("64954", "10", "2017-09-23 17:03:17", "104.236.32.242", "3");
INSERT INTO `wp_rg_form_view` VALUES("64955", "8", "2017-09-23 17:21:31", "104.236.32.242", "2");
INSERT INTO `wp_rg_form_view` VALUES("64956", "3", "2017-09-23 18:12:32", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64957", "6", "2017-09-23 18:12:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64958", "9", "2017-09-23 18:12:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64959", "8", "2017-09-23 18:12:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64960", "10", "2017-09-23 18:12:38", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64961", "15", "2017-09-23 18:12:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64962", "10", "2017-09-23 20:25:05", "157.55.39.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("64963", "3", "2017-09-23 20:59:08", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("64964", "3", "2017-09-23 21:52:17", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64965", "6", "2017-09-23 21:52:18", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64966", "9", "2017-09-23 21:52:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64967", "8", "2017-09-23 21:52:19", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64968", "10", "2017-09-23 21:52:20", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64969", "15", "2017-09-23 21:52:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64970", "9", "2017-09-23 22:31:04", "207.46.13.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("64971", "3", "2017-09-23 22:31:14", "207.46.13.139", "29");
INSERT INTO `wp_rg_form_view` VALUES("64972", "8", "2017-09-23 22:32:33", "207.46.13.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("64973", "10", "2017-09-23 22:32:53", "207.46.13.140", "17");
INSERT INTO `wp_rg_form_view` VALUES("64974", "15", "2017-09-23 22:37:24", "157.55.39.96", "2");
INSERT INTO `wp_rg_form_view` VALUES("64975", "10", "2017-09-24 01:15:48", "72.14.199.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("64976", "3", "2017-09-24 01:39:06", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64977", "6", "2017-09-24 01:39:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64978", "9", "2017-09-24 01:39:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64979", "8", "2017-09-24 01:39:08", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64980", "15", "2017-09-24 01:39:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64981", "14", "2017-09-24 01:43:30", "155.94.221.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("64982", "10", "2017-09-24 02:10:21", "217.182.132.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("64983", "3", "2017-09-24 02:55:06", "217.182.88.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("64984", "10", "2017-09-24 04:41:41", "180.76.15.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("64985", "3", "2017-09-24 05:36:40", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("64986", "6", "2017-09-24 05:36:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64987", "9", "2017-09-24 05:36:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64988", "8", "2017-09-24 05:36:42", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64989", "10", "2017-09-24 05:36:42", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("64990", "15", "2017-09-24 05:36:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("64991", "3", "2017-09-24 06:18:37", "194.187.170.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("64992", "8", "2017-09-24 07:09:41", "51.255.65.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("64993", "3", "2017-09-24 07:55:26", "184.66.35.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("64994", "3", "2017-09-24 08:03:56", "180.76.15.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("64995", "3", "2017-09-24 09:10:36", "180.76.15.152", "65");
INSERT INTO `wp_rg_form_view` VALUES("64996", "6", "2017-09-24 09:29:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64997", "9", "2017-09-24 09:29:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("64998", "8", "2017-09-24 09:29:54", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("64999", "10", "2017-09-24 09:29:55", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("65000", "15", "2017-09-24 09:29:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65001", "3", "2017-09-24 10:18:53", "51.255.65.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("65002", "3", "2017-09-24 11:11:31", "207.46.13.63", "2");
INSERT INTO `wp_rg_form_view` VALUES("65003", "10", "2017-09-24 13:17:31", "51.255.65.49", "6");
INSERT INTO `wp_rg_form_view` VALUES("65004", "3", "2017-09-24 13:21:42", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65005", "6", "2017-09-24 13:21:42", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65006", "9", "2017-09-24 13:21:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65007", "8", "2017-09-24 13:21:44", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65008", "15", "2017-09-24 13:21:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65009", "10", "2017-09-24 14:55:56", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("65010", "10", "2017-09-24 15:16:48", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("65011", "3", "2017-09-24 15:37:57", "180.76.15.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("65012", "3", "2017-09-24 16:47:50", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("65013", "3", "2017-09-24 17:07:48", "217.182.132.83", "34");
INSERT INTO `wp_rg_form_view` VALUES("65014", "6", "2017-09-24 17:12:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65015", "9", "2017-09-24 17:12:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65016", "8", "2017-09-24 17:12:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65017", "10", "2017-09-24 17:12:27", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65018", "15", "2017-09-24 17:12:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65019", "3", "2017-09-24 19:01:51", "180.76.15.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("65020", "14", "2017-09-24 20:29:21", "107.150.73.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("65021", "3", "2017-09-24 20:54:24", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65022", "6", "2017-09-24 20:54:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65023", "9", "2017-09-24 20:54:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65024", "8", "2017-09-24 20:54:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65025", "10", "2017-09-24 20:54:27", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65026", "15", "2017-09-24 20:54:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65027", "8", "2017-09-24 21:25:22", "180.76.15.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("65028", "3", "2017-09-24 21:36:37", "24.68.40.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("65029", "10", "2017-09-24 22:32:05", "180.76.15.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("65030", "3", "2017-09-24 23:23:17", "64.180.207.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("65031", "3", "2017-09-25 00:45:50", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65032", "6", "2017-09-25 00:45:51", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65033", "9", "2017-09-25 00:45:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65034", "8", "2017-09-25 00:45:52", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65035", "10", "2017-09-25 00:45:53", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65036", "15", "2017-09-25 00:45:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65037", "3", "2017-09-25 01:15:27", "104.196.217.246", "6");
INSERT INTO `wp_rg_form_view` VALUES("65038", "8", "2017-09-25 01:20:51", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("65039", "10", "2017-09-25 03:02:19", "157.55.39.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("65040", "3", "2017-09-25 03:08:20", "180.76.15.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("65041", "8", "2017-09-25 03:25:01", "24.69.160.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("65042", "14", "2017-09-25 03:48:49", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("65043", "3", "2017-09-25 04:30:21", "180.76.15.160", "33");
INSERT INTO `wp_rg_form_view` VALUES("65044", "6", "2017-09-25 04:36:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65045", "9", "2017-09-25 04:36:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65046", "8", "2017-09-25 04:36:28", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65047", "10", "2017-09-25 04:36:29", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65048", "15", "2017-09-25 04:36:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65049", "3", "2017-09-25 05:55:40", "104.196.217.246", "9");
INSERT INTO `wp_rg_form_view` VALUES("65050", "14", "2017-09-25 05:56:37", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("65051", "10", "2017-09-25 05:59:06", "104.196.217.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("65052", "3", "2017-09-25 06:00:21", "104.196.217.246", "14");
INSERT INTO `wp_rg_form_view` VALUES("65053", "10", "2017-09-25 06:14:44", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("65054", "8", "2017-09-25 06:58:26", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("65055", "6", "2017-09-25 07:00:24", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("65056", "3", "2017-09-25 07:00:36", "104.196.183.13", "21");
INSERT INTO `wp_rg_form_view` VALUES("65057", "10", "2017-09-25 07:02:51", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("65058", "9", "2017-09-25 07:56:13", "104.196.167.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("65059", "3", "2017-09-25 08:37:04", "52.88.109.3", "40");
INSERT INTO `wp_rg_form_view` VALUES("65060", "6", "2017-09-25 08:37:04", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65061", "9", "2017-09-25 08:37:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65062", "8", "2017-09-25 08:37:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65063", "10", "2017-09-25 08:37:07", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65064", "15", "2017-09-25 08:37:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65065", "10", "2017-09-25 09:41:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("65066", "10", "2017-09-25 10:00:30", "157.55.39.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("65067", "3", "2017-09-25 10:21:49", "195.154.230.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("65068", "10", "2017-09-25 12:00:06", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("65069", "3", "2017-09-25 12:27:01", "180.76.15.33", "33");
INSERT INTO `wp_rg_form_view` VALUES("65070", "6", "2017-09-25 12:42:25", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65071", "9", "2017-09-25 12:42:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65072", "8", "2017-09-25 12:42:26", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65073", "15", "2017-09-25 12:42:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65074", "14", "2017-09-25 12:57:33", "118.179.206.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("65075", "3", "2017-09-25 14:03:24", "180.76.15.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("65076", "3", "2017-09-25 15:16:01", "192.99.10.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("65077", "8", "2017-09-25 15:43:15", "180.76.15.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("65078", "3", "2017-09-25 16:42:33", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65079", "6", "2017-09-25 16:42:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65080", "9", "2017-09-25 16:42:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65081", "8", "2017-09-25 16:42:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65082", "10", "2017-09-25 16:42:37", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65083", "15", "2017-09-25 16:42:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65084", "3", "2017-09-25 17:01:10", "66.249.69.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("65085", "3", "2017-09-25 18:38:03", "69.196.72.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("65086", "14", "2017-09-25 19:37:44", "194.187.170.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("65087", "10", "2017-09-25 19:50:27", "194.187.170.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("65088", "10", "2017-09-25 20:19:48", "194.187.170.126", "7");
INSERT INTO `wp_rg_form_view` VALUES("65089", "3", "2017-09-25 20:47:08", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65090", "6", "2017-09-25 20:47:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65091", "9", "2017-09-25 20:47:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65092", "8", "2017-09-25 20:47:10", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65093", "15", "2017-09-25 20:47:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65094", "3", "2017-09-25 21:13:31", "142.36.92.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("65095", "10", "2017-09-25 22:00:03", "66.249.91.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("65096", "14", "2017-09-25 23:13:09", "91.108.177.239", "3");
INSERT INTO `wp_rg_form_view` VALUES("65097", "3", "2017-09-25 23:13:14", "91.108.177.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("65098", "10", "2017-09-26 00:04:28", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65099", "3", "2017-09-26 00:24:33", "180.76.15.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("65100", "3", "2017-09-26 01:10:39", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65101", "6", "2017-09-26 01:10:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65102", "9", "2017-09-26 01:10:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65103", "8", "2017-09-26 01:10:41", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65104", "10", "2017-09-26 01:10:42", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65105", "15", "2017-09-26 01:10:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65106", "3", "2017-09-26 02:53:25", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65107", "10", "2017-09-26 03:47:26", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("65108", "3", "2017-09-26 04:41:40", "51.255.65.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("65109", "8", "2017-09-26 04:54:46", "154.20.28.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("65110", "3", "2017-09-26 05:23:07", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65111", "6", "2017-09-26 05:23:07", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65112", "9", "2017-09-26 05:23:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65113", "8", "2017-09-26 05:23:09", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65114", "10", "2017-09-26 05:23:09", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65115", "15", "2017-09-26 05:23:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65116", "3", "2017-09-26 06:09:29", "180.76.15.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("65117", "3", "2017-09-26 07:16:09", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("65118", "10", "2017-09-26 07:49:28", "180.76.15.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("65119", "3", "2017-09-26 08:22:29", "68.180.230.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("65120", "3", "2017-09-26 09:22:27", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("65121", "6", "2017-09-26 09:22:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65122", "9", "2017-09-26 09:22:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65123", "8", "2017-09-26 09:22:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65124", "10", "2017-09-26 09:22:29", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65125", "15", "2017-09-26 09:22:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65126", "3", "2017-09-26 10:34:07", "66.249.69.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("65127", "10", "2017-09-26 11:04:36", "66.249.91.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("65128", "14", "2017-09-26 12:23:02", "91.200.12.106", "12");
INSERT INTO `wp_rg_form_view` VALUES("65129", "3", "2017-09-26 12:37:54", "180.76.15.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("65130", "14", "2017-09-26 13:04:26", "91.200.12.7", "4");
INSERT INTO `wp_rg_form_view` VALUES("65131", "3", "2017-09-26 13:33:34", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("65132", "6", "2017-09-26 13:33:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65133", "9", "2017-09-26 13:33:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65134", "8", "2017-09-26 13:33:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65135", "10", "2017-09-26 13:33:37", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65136", "15", "2017-09-26 13:33:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65137", "8", "2017-09-26 14:00:37", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65138", "3", "2017-09-26 15:48:02", "51.255.71.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("65139", "3", "2017-09-26 16:20:13", "77.75.76.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("65140", "3", "2017-09-26 17:45:11", "52.88.109.3", "66");
INSERT INTO `wp_rg_form_view` VALUES("65141", "6", "2017-09-26 17:45:13", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65142", "9", "2017-09-26 17:45:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65143", "8", "2017-09-26 17:45:18", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("65144", "10", "2017-09-26 17:45:20", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("65145", "15", "2017-09-26 17:45:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65146", "3", "2017-09-26 18:04:12", "184.66.49.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("65147", "14", "2017-09-26 18:48:18", "180.76.15.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("65148", "3", "2017-09-26 20:01:13", "164.132.161.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("65149", "14", "2017-09-26 20:18:52", "216.232.152.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("65150", "3", "2017-09-26 21:01:39", "180.76.15.15", "36");
INSERT INTO `wp_rg_form_view` VALUES("65151", "10", "2017-09-26 21:21:39", "194.187.170.107", "6");
INSERT INTO `wp_rg_form_view` VALUES("65152", "6", "2017-09-26 21:47:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65153", "9", "2017-09-26 21:47:54", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65154", "8", "2017-09-26 21:47:54", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65155", "15", "2017-09-26 21:47:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65156", "10", "2017-09-26 22:04:23", "194.187.170.107", "2");
INSERT INTO `wp_rg_form_view` VALUES("65157", "10", "2017-09-26 23:25:55", "194.187.170.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("65158", "3", "2017-09-27 00:16:34", "178.63.1.153", "6");
INSERT INTO `wp_rg_form_view` VALUES("65159", "8", "2017-09-27 00:20:20", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("65160", "14", "2017-09-27 00:24:02", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("65161", "10", "2017-09-27 01:01:47", "199.16.157.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("65162", "3", "2017-09-27 01:15:23", "66.249.64.21", "34");
INSERT INTO `wp_rg_form_view` VALUES("65163", "6", "2017-09-27 01:49:10", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65164", "9", "2017-09-27 01:49:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65165", "8", "2017-09-27 01:49:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65166", "15", "2017-09-27 01:49:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65167", "3", "2017-09-27 02:00:23", "66.249.64.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("65168", "15", "2017-09-27 02:21:54", "157.55.39.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("65169", "10", "2017-09-27 02:33:00", "66.249.89.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("65170", "3", "2017-09-27 03:16:20", "180.76.15.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("65171", "14", "2017-09-27 05:22:10", "91.200.12.63", "5");
INSERT INTO `wp_rg_form_view` VALUES("65172", "3", "2017-09-27 05:42:32", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65173", "6", "2017-09-27 05:42:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65174", "9", "2017-09-27 05:42:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65175", "8", "2017-09-27 05:42:34", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65176", "10", "2017-09-27 05:42:35", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65177", "15", "2017-09-27 05:42:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65178", "3", "2017-09-27 07:20:31", "68.180.230.223", "8");
INSERT INTO `wp_rg_form_view` VALUES("65179", "10", "2017-09-27 07:20:32", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65180", "3", "2017-09-27 09:40:21", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65181", "6", "2017-09-27 09:40:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65182", "9", "2017-09-27 09:40:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65183", "8", "2017-09-27 09:40:23", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65184", "10", "2017-09-27 09:40:23", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65185", "15", "2017-09-27 09:40:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65186", "3", "2017-09-27 13:10:02", "180.76.15.144", "39");
INSERT INTO `wp_rg_form_view` VALUES("65187", "8", "2017-09-27 13:38:06", "12.202.16.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("65188", "6", "2017-09-27 13:38:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65189", "9", "2017-09-27 13:38:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65190", "10", "2017-09-27 13:38:18", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65191", "15", "2017-09-27 13:38:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65192", "8", "2017-09-27 16:28:30", "216.220.37.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("65193", "3", "2017-09-27 16:28:44", "216.220.37.161", "8");
INSERT INTO `wp_rg_form_view` VALUES("65194", "15", "2017-09-27 16:51:12", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("65195", "3", "2017-09-27 17:08:25", "184.71.24.158", "39");
INSERT INTO `wp_rg_form_view` VALUES("65196", "6", "2017-09-27 17:40:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65197", "9", "2017-09-27 17:40:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65198", "8", "2017-09-27 17:40:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65199", "10", "2017-09-27 17:40:58", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("65200", "15", "2017-09-27 17:41:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65201", "10", "2017-09-27 18:11:43", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("65202", "14", "2017-09-27 18:18:27", "189.100.139.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("65203", "3", "2017-09-27 18:27:10", "184.71.14.182", "3");
INSERT INTO `wp_rg_form_view` VALUES("65204", "14", "2017-09-27 19:30:44", "216.232.156.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("65205", "3", "2017-09-27 19:39:24", "199.71.174.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("65206", "3", "2017-09-27 20:44:42", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("65207", "3", "2017-09-27 21:40:22", "184.69.106.198", "34");
INSERT INTO `wp_rg_form_view` VALUES("65208", "6", "2017-09-27 21:42:09", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65209", "9", "2017-09-27 21:42:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65210", "8", "2017-09-27 21:42:11", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("65211", "10", "2017-09-27 21:42:12", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65212", "15", "2017-09-27 21:42:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65213", "3", "2017-09-27 23:24:48", "180.76.15.19", "2");
INSERT INTO `wp_rg_form_view` VALUES("65214", "3", "2017-09-28 00:31:27", "180.76.15.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("65215", "3", "2017-09-28 01:42:22", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65216", "6", "2017-09-28 01:42:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65217", "9", "2017-09-28 01:42:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65218", "8", "2017-09-28 01:42:24", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65219", "10", "2017-09-28 01:42:25", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65220", "15", "2017-09-28 01:42:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65221", "10", "2017-09-28 02:00:45", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("65222", "10", "2017-09-28 03:08:32", "199.58.86.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("65223", "3", "2017-09-28 03:18:18", "207.6.120.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("65224", "14", "2017-09-28 03:59:17", "58.56.117.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("65225", "10", "2017-09-28 05:39:19", "24.108.13.92", "8");
INSERT INTO `wp_rg_form_view` VALUES("65226", "3", "2017-09-28 05:48:27", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65227", "6", "2017-09-28 05:48:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65228", "9", "2017-09-28 05:48:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65229", "8", "2017-09-28 05:48:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65230", "15", "2017-09-28 05:48:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65231", "3", "2017-09-28 06:11:29", "180.76.15.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("65232", "3", "2017-09-28 07:18:08", "180.76.15.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("65233", "10", "2017-09-28 08:04:34", "51.255.65.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("65234", "10", "2017-09-28 09:16:19", "68.180.230.223", "6");
INSERT INTO `wp_rg_form_view` VALUES("65235", "3", "2017-09-28 09:54:33", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65236", "6", "2017-09-28 09:54:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65237", "9", "2017-09-28 09:54:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65238", "8", "2017-09-28 09:54:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65239", "15", "2017-09-28 09:54:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65240", "10", "2017-09-28 10:30:43", "46.229.168.78", "7");
INSERT INTO `wp_rg_form_view` VALUES("65241", "3", "2017-09-28 10:33:19", "46.229.168.74", "16");
INSERT INTO `wp_rg_form_view` VALUES("65242", "15", "2017-09-28 10:33:50", "46.229.168.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("65243", "6", "2017-09-28 10:41:23", "46.229.168.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("65244", "14", "2017-09-28 11:32:52", "91.108.177.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("65245", "3", "2017-09-28 13:47:33", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65246", "6", "2017-09-28 13:47:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65247", "9", "2017-09-28 13:47:35", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65248", "8", "2017-09-28 13:47:35", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65249", "10", "2017-09-28 13:47:36", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65250", "15", "2017-09-28 13:47:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65251", "10", "2017-09-28 14:13:57", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("65252", "6", "2017-09-28 15:25:13", "180.76.15.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("65253", "10", "2017-09-28 15:35:55", "207.46.13.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("65254", "3", "2017-09-28 17:54:11", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65255", "6", "2017-09-28 17:54:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65256", "9", "2017-09-28 17:54:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65257", "8", "2017-09-28 17:54:14", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65258", "10", "2017-09-28 17:54:15", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65259", "15", "2017-09-28 17:54:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65260", "6", "2017-09-28 18:11:54", "180.76.15.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("65261", "3", "2017-09-28 18:45:18", "180.76.15.140", "1");
INSERT INTO `wp_rg_form_view` VALUES("65262", "3", "2017-09-28 19:04:42", "88.99.19.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("65263", "10", "2017-09-28 19:33:48", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("65264", "14", "2017-09-28 19:51:56", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("65265", "3", "2017-09-28 20:25:13", "180.76.15.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("65266", "10", "2017-09-28 21:01:15", "184.71.47.146", "6");
INSERT INTO `wp_rg_form_view` VALUES("65267", "3", "2017-09-28 21:01:52", "184.71.47.146", "33");
INSERT INTO `wp_rg_form_view` VALUES("65268", "14", "2017-09-28 21:34:59", "91.121.83.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("65269", "6", "2017-09-28 21:59:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65270", "9", "2017-09-28 21:59:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65271", "8", "2017-09-28 21:59:31", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65272", "15", "2017-09-28 21:59:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65273", "3", "2017-09-28 22:05:12", "180.76.15.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("65274", "8", "2017-09-28 22:17:52", "184.66.137.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("65275", "14", "2017-09-28 23:18:01", "217.182.132.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("65276", "3", "2017-09-29 00:13:09", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("65277", "8", "2017-09-29 00:17:38", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("65278", "3", "2017-09-29 01:54:25", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65279", "6", "2017-09-29 01:54:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65280", "9", "2017-09-29 01:54:27", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65281", "8", "2017-09-29 01:54:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65282", "10", "2017-09-29 01:54:28", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65283", "15", "2017-09-29 01:54:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65284", "3", "2017-09-29 02:31:54", "180.76.15.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("65285", "8", "2017-09-29 05:09:02", "157.55.39.82", "3");
INSERT INTO `wp_rg_form_view` VALUES("65286", "3", "2017-09-29 05:34:07", "180.76.15.158", "33");
INSERT INTO `wp_rg_form_view` VALUES("65287", "6", "2017-09-29 05:52:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65288", "9", "2017-09-29 05:52:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65289", "10", "2017-09-29 05:52:06", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65290", "15", "2017-09-29 05:52:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65291", "14", "2017-09-29 06:44:57", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65292", "3", "2017-09-29 07:07:19", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("65293", "10", "2017-09-29 08:17:40", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("65294", "3", "2017-09-29 09:58:31", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65295", "6", "2017-09-29 09:58:31", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65296", "9", "2017-09-29 09:58:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65297", "8", "2017-09-29 09:58:33", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65298", "10", "2017-09-29 09:58:34", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65299", "15", "2017-09-29 09:58:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65300", "14", "2017-09-29 12:51:54", "104.255.68.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("65301", "3", "2017-09-29 13:36:56", "24.108.38.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("65302", "3", "2017-09-29 14:01:10", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65303", "6", "2017-09-29 14:01:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65304", "9", "2017-09-29 14:01:12", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65305", "8", "2017-09-29 14:01:12", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65306", "10", "2017-09-29 14:01:13", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65307", "15", "2017-09-29 14:01:17", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65308", "10", "2017-09-29 16:13:39", "180.76.15.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("65309", "3", "2017-09-29 17:20:16", "180.76.15.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("65310", "3", "2017-09-29 18:00:00", "52.88.109.3", "64");
INSERT INTO `wp_rg_form_view` VALUES("65311", "6", "2017-09-29 18:00:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65312", "9", "2017-09-29 18:00:02", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65313", "8", "2017-09-29 18:00:03", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("65314", "10", "2017-09-29 18:00:04", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("65315", "15", "2017-09-29 18:00:07", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65316", "10", "2017-09-29 19:00:17", "180.76.15.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("65317", "3", "2017-09-29 19:32:14", "68.180.230.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("65318", "8", "2017-09-29 20:29:06", "192.99.150.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("65319", "3", "2017-09-29 20:29:15", "192.99.150.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("65320", "9", "2017-09-29 20:33:15", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("65321", "14", "2017-09-29 21:14:09", "107.150.73.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("65322", "3", "2017-09-29 22:02:03", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("65323", "6", "2017-09-29 22:02:04", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65324", "9", "2017-09-29 22:02:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65325", "8", "2017-09-29 22:02:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65326", "10", "2017-09-29 22:02:07", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("65327", "15", "2017-09-29 22:02:11", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65328", "14", "2017-09-29 22:35:02", "96.50.12.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("65329", "3", "2017-09-29 23:16:35", "68.180.230.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("65330", "14", "2017-09-30 00:00:16", "180.76.15.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("65331", "12", "2017-09-30 01:06:56", "180.76.15.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("65332", "3", "2017-09-30 02:05:36", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65333", "6", "2017-09-30 02:05:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65334", "9", "2017-09-30 02:05:38", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65335", "8", "2017-09-30 02:05:38", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65336", "10", "2017-09-30 02:05:39", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65337", "15", "2017-09-30 02:05:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65338", "3", "2017-09-30 04:39:19", "217.182.132.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("65339", "3", "2017-09-30 05:18:25", "176.215.71.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("65340", "10", "2017-09-30 05:34:31", "96.44.120.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("65341", "10", "2017-09-30 06:01:58", "194.187.170.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("65342", "3", "2017-09-30 06:04:55", "194.187.170.113", "36");
INSERT INTO `wp_rg_form_view` VALUES("65343", "6", "2017-09-30 06:05:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65344", "9", "2017-09-30 06:05:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65345", "8", "2017-09-30 06:05:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65346", "15", "2017-09-30 06:05:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65347", "3", "2017-09-30 09:59:11", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("65348", "3", "2017-09-30 10:04:27", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65349", "6", "2017-09-30 10:04:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65350", "9", "2017-09-30 10:04:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65351", "8", "2017-09-30 10:04:29", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65352", "10", "2017-09-30 10:04:30", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65353", "15", "2017-09-30 10:04:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65354", "8", "2017-09-30 11:35:47", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("65355", "3", "2017-09-30 12:08:24", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65356", "14", "2017-09-30 12:42:35", "180.76.15.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("65357", "3", "2017-09-30 14:02:23", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65358", "6", "2017-09-30 14:02:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65359", "9", "2017-09-30 14:02:26", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65360", "8", "2017-09-30 14:02:27", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65361", "10", "2017-09-30 14:02:28", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65362", "15", "2017-09-30 14:02:32", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65363", "3", "2017-09-30 15:32:45", "36.57.178.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("65364", "14", "2017-09-30 15:55:06", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("65365", "3", "2017-09-30 16:43:45", "40.77.167.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("65366", "14", "2017-09-30 16:57:17", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("65367", "3", "2017-09-30 18:09:04", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65368", "6", "2017-09-30 18:09:06", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65369", "9", "2017-09-30 18:09:08", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65370", "8", "2017-09-30 18:09:09", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65371", "10", "2017-09-30 18:09:10", "52.88.109.3", "6");
INSERT INTO `wp_rg_form_view` VALUES("65372", "15", "2017-09-30 18:09:14", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65373", "5", "2017-09-30 19:12:42", "164.132.161.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("65374", "3", "2017-09-30 19:52:18", "23.228.86.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("65375", "8", "2017-09-30 21:08:12", "180.76.15.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("65376", "3", "2017-09-30 21:27:33", "217.182.132.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("65377", "14", "2017-09-30 22:04:34", "107.150.74.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("65378", "3", "2017-09-30 22:07:20", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("65379", "6", "2017-09-30 22:07:21", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65380", "9", "2017-09-30 22:07:22", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65381", "8", "2017-09-30 22:07:23", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65382", "10", "2017-09-30 22:07:24", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65383", "15", "2017-09-30 22:07:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65384", "12", "2017-09-30 22:14:51", "180.76.15.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("65385", "10", "2017-10-01 00:13:55", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("65386", "3", "2017-10-01 00:24:47", "154.16.89.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("65387", "10", "2017-10-01 01:01:31", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("65388", "3", "2017-10-01 01:46:22", "36.57.178.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("65389", "10", "2017-10-01 02:05:18", "96.44.120.225", "7");
INSERT INTO `wp_rg_form_view` VALUES("65390", "3", "2017-10-01 02:14:28", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("65391", "6", "2017-10-01 02:14:29", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65392", "9", "2017-10-01 02:14:30", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65393", "8", "2017-10-01 02:14:30", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("65394", "15", "2017-10-01 02:14:33", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65395", "8", "2017-10-01 04:07:41", "40.77.167.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("65396", "3", "2017-10-01 05:00:18", "40.77.167.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("65397", "3", "2017-10-01 06:18:56", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65398", "6", "2017-10-01 06:18:57", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65399", "9", "2017-10-01 06:18:58", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65400", "8", "2017-10-01 06:18:58", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65401", "10", "2017-10-01 06:18:59", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65402", "15", "2017-10-01 06:19:01", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65403", "3", "2017-10-01 07:14:31", "40.77.167.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("65404", "3", "2017-10-01 09:10:49", "198.58.75.9", "21");
INSERT INTO `wp_rg_form_view` VALUES("65405", "8", "2017-10-01 09:11:30", "198.58.75.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("65406", "14", "2017-10-01 09:16:29", "198.58.75.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("65407", "10", "2017-10-01 09:19:26", "198.58.75.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("65408", "3", "2017-10-01 10:17:51", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("65409", "6", "2017-10-01 10:17:52", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65410", "9", "2017-10-01 10:17:53", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65411", "8", "2017-10-01 10:17:53", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65412", "10", "2017-10-01 10:17:54", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65413", "15", "2017-10-01 10:17:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65414", "8", "2017-10-01 11:44:44", "104.243.26.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("65415", "3", "2017-10-01 11:44:52", "104.243.26.250", "6");
INSERT INTO `wp_rg_form_view` VALUES("65416", "6", "2017-10-01 13:22:39", "180.76.15.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("65417", "3", "2017-10-01 13:55:45", "69.30.213.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("65418", "3", "2017-10-01 14:14:20", "40.77.167.74", "65");
INSERT INTO `wp_rg_form_view` VALUES("65419", "6", "2017-10-01 14:20:00", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65420", "9", "2017-10-01 14:20:01", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65421", "8", "2017-10-01 14:20:02", "52.88.109.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("65422", "10", "2017-10-01 14:20:03", "52.88.109.3", "10");
INSERT INTO `wp_rg_form_view` VALUES("65423", "15", "2017-10-01 14:20:06", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65424", "3", "2017-10-01 15:02:45", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("65425", "10", "2017-10-01 15:22:41", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("65426", "3", "2017-10-01 17:32:57", "51.255.65.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("65427", "10", "2017-10-01 17:44:54", "51.255.65.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("65428", "3", "2017-10-01 18:11:18", "180.76.15.12", "33");
INSERT INTO `wp_rg_form_view` VALUES("65429", "6", "2017-10-01 18:17:46", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65430", "9", "2017-10-01 18:17:47", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65431", "8", "2017-10-01 18:17:47", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65432", "10", "2017-10-01 18:17:48", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65433", "15", "2017-10-01 18:17:50", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65434", "10", "2017-10-01 19:03:45", "194.187.170.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("65435", "3", "2017-10-01 19:04:12", "194.187.170.143", "7");
INSERT INTO `wp_rg_form_view` VALUES("65436", "3", "2017-10-01 21:07:22", "194.187.170.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("65437", "12", "2017-10-01 21:25:06", "194.187.170.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("65438", "3", "2017-10-01 22:11:38", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65439", "6", "2017-10-01 22:11:39", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65440", "9", "2017-10-01 22:11:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65441", "8", "2017-10-01 22:11:40", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65442", "10", "2017-10-01 22:11:41", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65443", "15", "2017-10-01 22:11:43", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65444", "6", "2017-10-02 00:04:17", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("65445", "3", "2017-10-02 00:31:33", "66.249.79.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("65446", "3", "2017-10-02 02:02:56", "51.255.65.59", "33");
INSERT INTO `wp_rg_form_view` VALUES("65447", "6", "2017-10-02 02:14:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65448", "9", "2017-10-02 02:14:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65449", "8", "2017-10-02 02:14:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65450", "10", "2017-10-02 02:14:38", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65451", "15", "2017-10-02 02:14:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65452", "14", "2017-10-02 03:12:33", "216.232.157.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("65453", "3", "2017-10-02 03:13:46", "216.232.157.185", "5");
INSERT INTO `wp_rg_form_view` VALUES("65454", "9", "2017-10-02 03:30:04", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("65455", "10", "2017-10-02 04:01:12", "72.14.199.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("65456", "3", "2017-10-02 06:20:35", "52.88.109.3", "33");
INSERT INTO `wp_rg_form_view` VALUES("65457", "6", "2017-10-02 06:20:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65458", "9", "2017-10-02 06:20:37", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65459", "8", "2017-10-02 06:20:37", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65460", "10", "2017-10-02 06:20:38", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65461", "15", "2017-10-02 06:20:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65462", "3", "2017-10-02 08:06:14", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("65463", "3", "2017-10-02 09:12:47", "207.46.13.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("65464", "3", "2017-10-02 10:18:43", "52.88.109.3", "32");
INSERT INTO `wp_rg_form_view` VALUES("65465", "6", "2017-10-02 10:18:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65466", "9", "2017-10-02 10:18:45", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65467", "8", "2017-10-02 10:18:45", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65468", "10", "2017-10-02 10:18:46", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65469", "15", "2017-10-02 10:18:48", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65470", "3", "2017-10-02 11:17:24", "104.192.74.38", "11");
INSERT INTO `wp_rg_form_view` VALUES("65471", "8", "2017-10-02 11:18:46", "104.192.74.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("65472", "10", "2017-10-02 12:00:12", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("65473", "3", "2017-10-02 12:48:36", "194.187.170.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("65474", "3", "2017-10-02 13:08:33", "194.187.170.123", "6");
INSERT INTO `wp_rg_form_view` VALUES("65475", "3", "2017-10-02 14:30:33", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("65476", "6", "2017-10-02 14:30:34", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65477", "9", "2017-10-02 14:30:36", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65478", "8", "2017-10-02 14:30:36", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65479", "10", "2017-10-02 14:30:37", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65480", "15", "2017-10-02 14:30:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65481", "12", "2017-10-02 15:06:09", "194.187.170.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("65482", "3", "2017-10-02 15:34:41", "194.187.170.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("65483", "3", "2017-10-02 16:17:11", "147.135.137.81", "5");
INSERT INTO `wp_rg_form_view` VALUES("65484", "8", "2017-10-02 16:18:23", "147.135.137.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("65485", "3", "2017-10-02 17:39:02", "217.182.132.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("65486", "10", "2017-10-02 18:02:01", "51.255.71.131", "6");
INSERT INTO `wp_rg_form_view` VALUES("65487", "3", "2017-10-02 18:21:18", "180.76.15.137", "35");
INSERT INTO `wp_rg_form_view` VALUES("65488", "6", "2017-10-02 18:40:40", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65489", "9", "2017-10-02 18:40:41", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65490", "8", "2017-10-02 18:40:41", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("65491", "15", "2017-10-02 18:40:44", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65492", "12", "2017-10-02 18:55:27", "75.157.238.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("65493", "3", "2017-10-02 19:13:22", "64.180.207.31", "5");
INSERT INTO `wp_rg_form_view` VALUES("65494", "8", "2017-10-02 19:13:48", "24.68.32.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("65495", "10", "2017-10-02 19:21:41", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("65496", "14", "2017-10-02 20:07:10", "75.156.35.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("65497", "3", "2017-10-02 21:14:55", "180.76.15.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("65498", "8", "2017-10-02 22:00:29", "12.202.16.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("65499", "3", "2017-10-02 22:00:38", "12.202.16.36", "7");
INSERT INTO `wp_rg_form_view` VALUES("65500", "14", "2017-10-02 22:15:12", "179.61.209.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("65501", "3", "2017-10-02 23:05:54", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("65502", "6", "2017-10-02 23:05:55", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65503", "9", "2017-10-02 23:05:56", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65504", "8", "2017-10-02 23:05:57", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65505", "10", "2017-10-02 23:05:57", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65506", "15", "2017-10-02 23:06:00", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65507", "3", "2017-10-03 00:17:29", "66.249.79.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("65508", "3", "2017-10-03 01:04:39", "164.132.161.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("65509", "10", "2017-10-03 02:12:27", "51.255.71.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("65510", "3", "2017-10-03 03:12:14", "52.88.109.3", "34");
INSERT INTO `wp_rg_form_view` VALUES("65511", "6", "2017-10-03 03:12:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65512", "9", "2017-10-03 03:12:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65513", "8", "2017-10-03 03:12:17", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65514", "10", "2017-10-03 03:12:17", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65515", "15", "2017-10-03 03:12:20", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65516", "10", "2017-10-03 04:19:05", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("65517", "3", "2017-10-03 04:44:03", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65518", "3", "2017-10-03 05:20:56", "24.108.21.7", "3");
INSERT INTO `wp_rg_form_view` VALUES("65519", "14", "2017-10-03 05:24:07", "212.12.31.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("65520", "3", "2017-10-03 07:11:14", "52.88.109.3", "40");
INSERT INTO `wp_rg_form_view` VALUES("65521", "6", "2017-10-03 07:11:15", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65522", "9", "2017-10-03 07:11:16", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65523", "8", "2017-10-03 07:11:16", "52.88.109.3", "2");
INSERT INTO `wp_rg_form_view` VALUES("65524", "10", "2017-10-03 07:11:17", "52.88.109.3", "12");
INSERT INTO `wp_rg_form_view` VALUES("65525", "15", "2017-10-03 07:11:19", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65526", "3", "2017-10-03 08:31:51", "68.180.230.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("65527", "14", "2017-10-03 11:04:01", "104.223.52.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("65528", "3", "2017-10-03 11:16:22", "52.88.109.3", "35");
INSERT INTO `wp_rg_form_view` VALUES("65529", "6", "2017-10-03 11:16:23", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65530", "9", "2017-10-03 11:16:24", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65531", "8", "2017-10-03 11:16:25", "52.88.109.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("65532", "10", "2017-10-03 11:16:25", "52.88.109.3", "5");
INSERT INTO `wp_rg_form_view` VALUES("65533", "15", "2017-10-03 11:16:28", "52.88.109.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("65534", "10", "2017-10-03 13:06:41", "164.132.161.47", "3");
INSERT INTO `wp_rg_form_view` VALUES("65535", "3", "2017-10-03 13:38:29", "40.77.167.68", "7");
INSERT INTO `wp_rg_form_view` VALUES("65536", "8", "2017-10-03 13:41:52", "213.127.48.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("65537", "3", "2017-10-03 14:19:56", "207.46.13.142", "16");
INSERT INTO `wp_rg_form_view` VALUES("65538", "8", "2017-10-03 14:24:39", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65539", "10", "2017-10-03 14:37:09", "40.77.167.68", "10");
INSERT INTO `wp_rg_form_view` VALUES("65540", "9", "2017-10-03 14:37:18", "157.55.39.94", "4");
INSERT INTO `wp_rg_form_view` VALUES("65541", "3", "2017-10-03 15:03:41", "164.132.161.44", "44");
INSERT INTO `wp_rg_form_view` VALUES("65542", "10", "2017-10-03 15:37:00", "157.55.39.34", "10");
INSERT INTO `wp_rg_form_view` VALUES("65543", "6", "2017-10-03 15:37:18", "157.55.39.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("65544", "9", "2017-10-03 15:53:21", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65545", "8", "2017-10-03 15:53:22", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65546", "15", "2017-10-03 15:53:25", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65547", "14", "2017-10-03 16:02:06", "104.131.71.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("65548", "6", "2017-10-03 16:03:13", "104.131.71.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("65549", "3", "2017-10-03 16:04:27", "104.131.71.33", "30");
INSERT INTO `wp_rg_form_view` VALUES("65550", "10", "2017-10-03 16:05:45", "104.131.71.33", "5");
INSERT INTO `wp_rg_form_view` VALUES("65551", "9", "2017-10-03 16:10:15", "104.131.71.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("65552", "15", "2017-10-03 16:17:03", "104.131.71.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("65553", "8", "2017-10-03 16:17:36", "24.68.252.32", "4");
INSERT INTO `wp_rg_form_view` VALUES("65554", "3", "2017-10-03 17:29:15", "180.76.15.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("65555", "3", "2017-10-03 18:02:21", "174.127.133.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("65556", "8", "2017-10-03 18:42:16", "54.85.182.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("65557", "14", "2017-10-03 18:51:43", "24.68.32.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("65558", "3", "2017-10-03 19:22:27", "180.76.15.159", "34");
INSERT INTO `wp_rg_form_view` VALUES("65559", "8", "2017-10-03 19:39:38", "24.108.184.241", "3");
INSERT INTO `wp_rg_form_view` VALUES("65560", "14", "2017-10-03 19:44:03", "91.108.177.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("65561", "6", "2017-10-03 19:49:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65562", "9", "2017-10-03 19:49:02", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65563", "10", "2017-10-03 19:49:03", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65564", "15", "2017-10-03 19:49:06", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65565", "3", "2017-10-03 20:20:50", "142.24.79.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("65566", "10", "2017-10-03 21:04:19", "66.249.90.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("65567", "15", "2017-10-03 22:46:15", "157.55.39.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("65568", "3", "2017-10-03 22:52:32", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("65569", "10", "2017-10-03 22:59:43", "164.132.161.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("65570", "8", "2017-10-03 23:14:26", "24.108.184.241", "3");
INSERT INTO `wp_rg_form_view` VALUES("65571", "3", "2017-10-03 23:28:06", "35.160.137.253", "33");
INSERT INTO `wp_rg_form_view` VALUES("65572", "6", "2017-10-03 23:28:06", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65573", "9", "2017-10-03 23:28:08", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65574", "10", "2017-10-03 23:28:09", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65575", "15", "2017-10-03 23:28:11", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65576", "8", "2017-10-04 00:44:34", "139.162.246.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("65577", "3", "2017-10-04 01:34:00", "96.54.227.7", "9");
INSERT INTO `wp_rg_form_view` VALUES("65578", "10", "2017-10-04 01:55:49", "137.74.207.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("65579", "10", "2017-10-04 02:39:04", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("65580", "3", "2017-10-04 03:14:03", "35.160.137.253", "33");
INSERT INTO `wp_rg_form_view` VALUES("65581", "6", "2017-10-04 03:14:04", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65582", "9", "2017-10-04 03:14:05", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65583", "8", "2017-10-04 03:14:06", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65584", "10", "2017-10-04 03:14:06", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65585", "15", "2017-10-04 03:14:09", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65586", "3", "2017-10-04 04:18:11", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("65587", "3", "2017-10-04 05:06:54", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("65588", "3", "2017-10-04 06:17:01", "157.55.39.141", "36");
INSERT INTO `wp_rg_form_view` VALUES("65589", "6", "2017-10-04 06:54:16", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65590", "9", "2017-10-04 06:54:17", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65591", "8", "2017-10-04 06:54:17", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65592", "10", "2017-10-04 06:54:18", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65593", "15", "2017-10-04 06:54:20", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65594", "3", "2017-10-04 08:26:55", "180.76.15.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("65595", "10", "2017-10-04 08:50:07", "164.132.161.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("65596", "3", "2017-10-04 09:46:39", "157.55.39.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("65597", "3", "2017-10-04 10:41:21", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("65598", "6", "2017-10-04 10:41:22", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65599", "9", "2017-10-04 10:41:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65600", "8", "2017-10-04 10:41:23", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65601", "10", "2017-10-04 10:41:24", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("65602", "15", "2017-10-04 10:41:26", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65603", "14", "2017-10-04 11:29:54", "192.210.210.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("65604", "3", "2017-10-04 13:09:09", "66.249.73.223", "3");
INSERT INTO `wp_rg_form_view` VALUES("65605", "10", "2017-10-04 14:08:06", "217.182.132.21", "6");
INSERT INTO `wp_rg_form_view` VALUES("65606", "3", "2017-10-04 14:32:50", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("65607", "6", "2017-10-04 14:32:51", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65608", "9", "2017-10-04 14:32:52", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65609", "8", "2017-10-04 14:32:53", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65610", "15", "2017-10-04 14:32:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65611", "8", "2017-10-04 16:00:20", "216.113.204.83", "2");
INSERT INTO `wp_rg_form_view` VALUES("65612", "3", "2017-10-04 16:22:10", "64.114.223.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("65613", "3", "2017-10-04 17:40:44", "180.76.15.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("65614", "3", "2017-10-04 18:28:00", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65615", "6", "2017-10-04 18:28:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65616", "9", "2017-10-04 18:28:02", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65617", "8", "2017-10-04 18:28:03", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65618", "10", "2017-10-04 18:28:04", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65619", "15", "2017-10-04 18:28:06", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65620", "12", "2017-10-04 19:08:05", "51.255.65.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("65621", "3", "2017-10-04 19:14:10", "66.249.73.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("65622", "8", "2017-10-04 19:19:53", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("65623", "8", "2017-10-04 20:28:29", "24.68.35.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("65624", "3", "2017-10-04 20:29:56", "66.249.73.193", "3");
INSERT INTO `wp_rg_form_view` VALUES("65625", "8", "2017-10-04 21:34:08", "24.68.35.40", "4");
INSERT INTO `wp_rg_form_view` VALUES("65626", "3", "2017-10-04 22:11:44", "142.104.153.6", "38");
INSERT INTO `wp_rg_form_view` VALUES("65627", "6", "2017-10-04 22:12:43", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65628", "9", "2017-10-04 22:12:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65629", "8", "2017-10-04 22:12:45", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65630", "10", "2017-10-04 22:12:45", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65631", "15", "2017-10-04 22:12:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65632", "8", "2017-10-04 23:16:29", "64.233.172.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("65633", "3", "2017-10-04 23:25:54", "194.187.170.110", "5");
INSERT INTO `wp_rg_form_view` VALUES("65634", "10", "2017-10-04 23:52:05", "199.59.150.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("65635", "8", "2017-10-05 00:01:20", "139.162.246.62", "6");
INSERT INTO `wp_rg_form_view` VALUES("65636", "10", "2017-10-05 00:05:50", "66.249.90.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("65637", "3", "2017-10-05 00:12:04", "180.76.15.18", "4");
INSERT INTO `wp_rg_form_view` VALUES("65638", "3", "2017-10-05 02:05:43", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65639", "6", "2017-10-05 02:05:43", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65640", "9", "2017-10-05 02:05:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65641", "8", "2017-10-05 02:05:45", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65642", "10", "2017-10-05 02:05:46", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65643", "15", "2017-10-05 02:05:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65644", "14", "2017-10-05 02:15:01", "129.205.210.90", "2");
INSERT INTO `wp_rg_form_view` VALUES("65645", "3", "2017-10-05 04:04:36", "66.249.79.135", "5");
INSERT INTO `wp_rg_form_view` VALUES("65646", "3", "2017-10-05 05:59:03", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65647", "6", "2017-10-05 05:59:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65648", "9", "2017-10-05 05:59:04", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65649", "8", "2017-10-05 05:59:04", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65650", "10", "2017-10-05 05:59:05", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65651", "15", "2017-10-05 05:59:07", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65652", "10", "2017-10-05 07:23:18", "51.255.66.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("65653", "3", "2017-10-05 07:45:29", "180.76.15.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("65654", "3", "2017-10-05 08:02:25", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("65655", "8", "2017-10-05 08:14:56", "139.162.246.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("65656", "3", "2017-10-05 09:16:29", "66.249.79.133", "32");
INSERT INTO `wp_rg_form_view` VALUES("65657", "6", "2017-10-05 09:56:19", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65658", "9", "2017-10-05 09:56:20", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65659", "8", "2017-10-05 09:56:21", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65660", "10", "2017-10-05 09:56:22", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65661", "15", "2017-10-05 09:56:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65662", "3", "2017-10-05 11:57:08", "180.76.15.30", "7");
INSERT INTO `wp_rg_form_view` VALUES("65663", "10", "2017-10-05 11:57:10", "180.76.15.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("65664", "14", "2017-10-05 13:41:11", "91.108.177.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("65665", "3", "2017-10-05 13:51:48", "35.160.137.253", "37");
INSERT INTO `wp_rg_form_view` VALUES("65666", "6", "2017-10-05 13:51:49", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65667", "9", "2017-10-05 13:51:50", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65668", "8", "2017-10-05 13:51:51", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65669", "10", "2017-10-05 13:51:52", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65670", "15", "2017-10-05 13:51:55", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65671", "3", "2017-10-05 14:32:43", "194.187.170.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("65672", "10", "2017-10-05 14:52:43", "194.187.170.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("65673", "10", "2017-10-05 15:03:56", "194.187.170.111", "2");
INSERT INTO `wp_rg_form_view` VALUES("65674", "3", "2017-10-05 15:09:26", "164.132.162.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("65675", "10", "2017-10-05 16:08:59", "194.187.170.111", "3");
INSERT INTO `wp_rg_form_view` VALUES("65676", "3", "2017-10-05 17:12:09", "139.162.246.62", "34");
INSERT INTO `wp_rg_form_view` VALUES("65677", "6", "2017-10-05 17:43:42", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65678", "9", "2017-10-05 17:43:43", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65679", "8", "2017-10-05 17:43:43", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65680", "10", "2017-10-05 17:43:44", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65681", "15", "2017-10-05 17:43:46", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65682", "3", "2017-10-05 18:49:11", "139.162.246.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("65683", "8", "2017-10-05 18:58:44", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("65684", "3", "2017-10-05 20:23:01", "139.162.246.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("65685", "3", "2017-10-05 21:36:08", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65686", "6", "2017-10-05 21:36:09", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65687", "9", "2017-10-05 21:36:10", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65688", "8", "2017-10-05 21:36:10", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65689", "10", "2017-10-05 21:36:11", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65690", "15", "2017-10-05 21:36:16", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65691", "3", "2017-10-05 22:10:49", "180.76.15.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("65692", "8", "2017-10-05 22:21:02", "24.108.184.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("65693", "3", "2017-10-05 23:17:29", "180.76.15.12", "7");
INSERT INTO `wp_rg_form_view` VALUES("65694", "8", "2017-10-05 23:23:12", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("65695", "14", "2017-10-05 23:24:50", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("65696", "3", "2017-10-06 00:23:33", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("65697", "3", "2017-10-06 01:33:55", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65698", "6", "2017-10-06 01:33:55", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65699", "9", "2017-10-06 01:33:56", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65700", "8", "2017-10-06 01:33:58", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65701", "10", "2017-10-06 01:34:00", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65702", "15", "2017-10-06 01:34:05", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65703", "3", "2017-10-06 02:16:04", "104.236.154.246", "12");
INSERT INTO `wp_rg_form_view` VALUES("65704", "8", "2017-10-06 02:16:54", "104.236.154.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("65705", "14", "2017-10-06 02:17:41", "104.236.154.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("65706", "10", "2017-10-06 03:13:22", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("65707", "3", "2017-10-06 03:14:26", "40.77.167.49", "2");
INSERT INTO `wp_rg_form_view` VALUES("65708", "3", "2017-10-06 05:26:00", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65709", "6", "2017-10-06 05:26:00", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65710", "9", "2017-10-06 05:26:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65711", "8", "2017-10-06 05:26:02", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65712", "10", "2017-10-06 05:26:02", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65713", "15", "2017-10-06 05:26:04", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65714", "14", "2017-10-06 06:18:25", "77.75.79.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("65715", "3", "2017-10-06 06:44:54", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("65716", "5", "2017-10-06 07:19:59", "157.55.39.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("65717", "15", "2017-10-06 07:39:35", "180.76.15.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("65718", "3", "2017-10-06 09:05:41", "164.132.161.5", "32");
INSERT INTO `wp_rg_form_view` VALUES("65719", "6", "2017-10-06 09:11:59", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65720", "9", "2017-10-06 09:12:00", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65721", "8", "2017-10-06 09:12:00", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65722", "10", "2017-10-06 09:12:01", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65723", "15", "2017-10-06 09:12:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65724", "10", "2017-10-06 10:14:58", "157.55.39.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("65725", "3", "2017-10-06 10:15:08", "207.46.13.145", "7");
INSERT INTO `wp_rg_form_view` VALUES("65726", "9", "2017-10-06 10:16:06", "207.46.13.145", "2");
INSERT INTO `wp_rg_form_view` VALUES("65727", "3", "2017-10-06 12:37:15", "139.162.246.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("65728", "10", "2017-10-06 12:50:24", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("65729", "3", "2017-10-06 13:07:55", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("65730", "6", "2017-10-06 13:07:55", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65731", "9", "2017-10-06 13:07:56", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65732", "8", "2017-10-06 13:07:57", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65733", "10", "2017-10-06 13:07:58", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65734", "15", "2017-10-06 13:08:00", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65735", "10", "2017-10-06 14:36:15", "51.255.65.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("65736", "3", "2017-10-06 14:58:25", "139.162.246.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("65737", "10", "2017-10-06 15:52:08", "66.249.92.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("65738", "3", "2017-10-06 16:09:15", "139.162.246.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("65739", "10", "2017-10-06 16:15:58", "217.182.132.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("65740", "3", "2017-10-06 17:01:27", "35.160.137.253", "33");
INSERT INTO `wp_rg_form_view` VALUES("65741", "6", "2017-10-06 17:01:27", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65742", "9", "2017-10-06 17:01:28", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65743", "8", "2017-10-06 17:01:28", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65744", "10", "2017-10-06 17:01:29", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65745", "15", "2017-10-06 17:01:31", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65746", "8", "2017-10-06 18:05:03", "24.108.29.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("65747", "14", "2017-10-06 18:08:41", "51.255.71.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("65748", "15", "2017-10-06 18:15:54", "51.255.65.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("65749", "3", "2017-10-06 18:28:05", "139.162.246.62", "2");
INSERT INTO `wp_rg_form_view` VALUES("65750", "8", "2017-10-06 19:31:08", "107.172.227.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("65751", "14", "2017-10-06 19:32:50", "107.172.227.150", "2");
INSERT INTO `wp_rg_form_view` VALUES("65752", "3", "2017-10-06 19:43:20", "24.108.202.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("65753", "3", "2017-10-06 21:29:01", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65754", "6", "2017-10-06 21:29:02", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65755", "9", "2017-10-06 21:29:04", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65756", "8", "2017-10-06 21:29:04", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65757", "10", "2017-10-06 21:29:05", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65758", "15", "2017-10-06 21:29:07", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65759", "14", "2017-10-06 21:35:26", "66.183.101.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("65760", "14", "2017-10-06 22:26:10", "187.190.221.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("65761", "3", "2017-10-06 22:54:53", "139.162.246.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("65762", "3", "2017-10-07 00:14:15", "184.72.208.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("65763", "3", "2017-10-07 01:28:40", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65764", "6", "2017-10-07 01:28:41", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65765", "9", "2017-10-07 01:28:42", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65766", "8", "2017-10-07 01:28:43", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65767", "10", "2017-10-07 01:28:45", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65768", "15", "2017-10-07 01:28:49", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65769", "5", "2017-10-07 01:33:42", "194.187.170.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("65770", "3", "2017-10-07 02:22:40", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("65771", "14", "2017-10-07 02:58:52", "107.172.225.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("65772", "3", "2017-10-07 04:14:26", "96.50.18.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("65773", "3", "2017-10-07 05:09:29", "180.76.15.20", "63");
INSERT INTO `wp_rg_form_view` VALUES("65774", "6", "2017-10-07 05:45:07", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65775", "9", "2017-10-07 05:45:12", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65776", "8", "2017-10-07 05:45:13", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("65777", "10", "2017-10-07 05:45:16", "35.160.137.253", "11");
INSERT INTO `wp_rg_form_view` VALUES("65778", "15", "2017-10-07 05:45:25", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65779", "3", "2017-10-07 06:59:10", "180.76.15.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("65780", "3", "2017-10-07 07:17:19", "164.132.161.79", "11");
INSERT INTO `wp_rg_form_view` VALUES("65781", "8", "2017-10-07 07:22:35", "142.4.215.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("65782", "14", "2017-10-07 07:23:00", "142.4.215.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("65783", "10", "2017-10-07 07:24:11", "142.4.215.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("65784", "3", "2017-10-07 08:05:53", "180.76.15.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("65785", "3", "2017-10-07 10:00:37", "35.160.137.253", "57");
INSERT INTO `wp_rg_form_view` VALUES("65786", "6", "2017-10-07 10:00:39", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65787", "9", "2017-10-07 10:00:40", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65788", "8", "2017-10-07 10:00:41", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("65789", "10", "2017-10-07 10:00:42", "35.160.137.253", "22");
INSERT INTO `wp_rg_form_view` VALUES("65790", "15", "2017-10-07 10:00:44", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65791", "11", "2017-10-07 10:14:08", "207.46.13.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("65792", "3", "2017-10-07 11:18:33", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("65793", "3", "2017-10-07 12:27:58", "69.30.221.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("65794", "15", "2017-10-07 12:42:28", "180.76.15.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("65795", "9", "2017-10-07 13:40:17", "207.46.13.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("65796", "3", "2017-10-07 13:59:21", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65797", "6", "2017-10-07 13:59:22", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65798", "8", "2017-10-07 13:59:24", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65799", "10", "2017-10-07 13:59:26", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65800", "15", "2017-10-07 13:59:30", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65801", "3", "2017-10-07 14:15:52", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65802", "8", "2017-10-07 17:40:50", "93.158.161.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("65803", "3", "2017-10-07 18:15:21", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65804", "6", "2017-10-07 18:15:22", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65805", "9", "2017-10-07 18:15:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65806", "8", "2017-10-07 18:15:23", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65807", "10", "2017-10-07 18:15:24", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65808", "15", "2017-10-07 18:15:26", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65809", "10", "2017-10-07 19:07:44", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("65810", "14", "2017-10-07 19:27:43", "104.223.31.46", "2");
INSERT INTO `wp_rg_form_view` VALUES("65811", "10", "2017-10-07 20:02:46", "51.255.71.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("65812", "3", "2017-10-07 20:03:03", "180.76.15.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("65813", "15", "2017-10-07 21:43:04", "180.76.15.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("65814", "3", "2017-10-07 22:23:39", "35.160.137.253", "41");
INSERT INTO `wp_rg_form_view` VALUES("65815", "6", "2017-10-07 22:23:39", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65816", "9", "2017-10-07 22:23:40", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65817", "8", "2017-10-07 22:23:41", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("65818", "10", "2017-10-07 22:23:41", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65819", "15", "2017-10-07 22:23:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65820", "3", "2017-10-07 23:00:06", "94.199.151.22", "27");
INSERT INTO `wp_rg_form_view` VALUES("65821", "14", "2017-10-07 23:01:18", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("65822", "10", "2017-10-07 23:03:18", "94.199.151.22", "5");
INSERT INTO `wp_rg_form_view` VALUES("65823", "8", "2017-10-07 23:15:15", "94.199.151.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("65824", "15", "2017-10-07 23:19:15", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("65825", "9", "2017-10-07 23:25:10", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("65826", "11", "2017-10-08 00:21:54", "77.75.76.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("65827", "3", "2017-10-08 00:39:16", "51.255.65.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("65828", "3", "2017-10-08 01:09:37", "24.68.130.225", "3");
INSERT INTO `wp_rg_form_view` VALUES("65829", "10", "2017-10-08 02:09:43", "180.76.15.5", "6");
INSERT INTO `wp_rg_form_view` VALUES("65830", "3", "2017-10-08 02:26:56", "35.160.137.253", "39");
INSERT INTO `wp_rg_form_view` VALUES("65831", "6", "2017-10-08 02:26:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65832", "9", "2017-10-08 02:26:58", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65833", "8", "2017-10-08 02:26:58", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65834", "15", "2017-10-08 02:27:01", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65835", "11", "2017-10-08 02:43:03", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("65836", "3", "2017-10-08 03:00:02", "5.9.98.130", "38");
INSERT INTO `wp_rg_form_view` VALUES("65837", "8", "2017-10-08 03:00:17", "5.9.98.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("65838", "14", "2017-10-08 03:02:11", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("65839", "10", "2017-10-08 03:02:48", "5.9.98.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("65840", "15", "2017-10-08 03:07:28", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("65841", "9", "2017-10-08 03:09:35", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("65842", "6", "2017-10-08 03:10:52", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("65843", "14", "2017-10-08 04:41:42", "131.153.28.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("65844", "10", "2017-10-08 05:48:57", "46.229.168.72", "7");
INSERT INTO `wp_rg_form_view` VALUES("65845", "3", "2017-10-08 05:49:18", "46.229.168.75", "12");
INSERT INTO `wp_rg_form_view` VALUES("65846", "8", "2017-10-08 05:50:29", "46.229.168.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("65847", "14", "2017-10-08 05:56:51", "46.229.168.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("65848", "3", "2017-10-08 06:01:47", "46.229.168.77", "41");
INSERT INTO `wp_rg_form_view` VALUES("65849", "6", "2017-10-08 06:03:25", "46.229.168.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("65850", "9", "2017-10-08 06:04:54", "46.229.168.78", "4");
INSERT INTO `wp_rg_form_view` VALUES("65851", "11", "2017-10-08 06:07:19", "46.229.168.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("65852", "8", "2017-10-08 06:33:49", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65853", "10", "2017-10-08 06:33:51", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65854", "15", "2017-10-08 06:33:55", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65855", "3", "2017-10-08 09:59:38", "180.76.15.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("65856", "3", "2017-10-08 10:38:34", "185.43.45.204", "32");
INSERT INTO `wp_rg_form_view` VALUES("65857", "6", "2017-10-08 10:41:14", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65858", "9", "2017-10-08 10:41:16", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65859", "8", "2017-10-08 10:41:17", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65860", "10", "2017-10-08 10:41:18", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("65861", "15", "2017-10-08 10:41:22", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65862", "10", "2017-10-08 12:41:00", "207.46.13.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("65863", "3", "2017-10-08 14:39:31", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65864", "6", "2017-10-08 14:39:32", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65865", "9", "2017-10-08 14:39:34", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65866", "8", "2017-10-08 14:39:35", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65867", "10", "2017-10-08 14:39:37", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65868", "15", "2017-10-08 14:39:40", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65869", "10", "2017-10-08 17:06:12", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("65870", "10", "2017-10-08 18:09:49", "184.66.129.248", "15");
INSERT INTO `wp_rg_form_view` VALUES("65871", "3", "2017-10-08 18:37:21", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("65872", "6", "2017-10-08 18:37:21", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65873", "9", "2017-10-08 18:37:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65874", "8", "2017-10-08 18:37:25", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65875", "15", "2017-10-08 18:37:31", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65876", "14", "2017-10-08 18:42:45", "197.32.62.46", "3");
INSERT INTO `wp_rg_form_view` VALUES("65877", "8", "2017-10-08 19:02:40", "167.114.172.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65878", "3", "2017-10-08 19:02:54", "167.114.172.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("65879", "3", "2017-10-08 20:52:37", "180.76.15.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("65880", "3", "2017-10-08 21:25:56", "180.76.15.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("65881", "3", "2017-10-08 22:07:12", "157.55.39.56", "63");
INSERT INTO `wp_rg_form_view` VALUES("65882", "6", "2017-10-08 22:45:03", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65883", "9", "2017-10-08 22:45:05", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65884", "8", "2017-10-08 22:45:05", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("65885", "10", "2017-10-08 22:45:06", "35.160.137.253", "10");
INSERT INTO `wp_rg_form_view` VALUES("65886", "15", "2017-10-08 22:45:11", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65887", "10", "2017-10-08 23:38:48", "194.187.170.125", "2");
INSERT INTO `wp_rg_form_view` VALUES("65888", "3", "2017-10-09 01:51:59", "52.210.53.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("65889", "10", "2017-10-09 02:00:11", "72.14.199.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("65890", "3", "2017-10-09 02:58:53", "207.46.13.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("65891", "15", "2017-10-09 02:59:17", "180.76.15.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("65892", "3", "2017-10-09 03:06:01", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65893", "6", "2017-10-09 03:06:02", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65894", "9", "2017-10-09 03:06:04", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65895", "8", "2017-10-09 03:06:05", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65896", "10", "2017-10-09 03:06:07", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65897", "15", "2017-10-09 03:06:09", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65898", "3", "2017-10-09 04:20:12", "52.210.53.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("65899", "3", "2017-10-09 05:50:03", "24.68.105.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("65900", "3", "2017-10-09 07:11:19", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65901", "6", "2017-10-09 07:11:19", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65902", "9", "2017-10-09 07:11:21", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65903", "8", "2017-10-09 07:11:22", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65904", "10", "2017-10-09 07:11:24", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65905", "15", "2017-10-09 07:11:29", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65906", "3", "2017-10-09 08:50:42", "180.76.15.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("65907", "3", "2017-10-09 09:23:59", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("65908", "3", "2017-10-09 11:15:46", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65909", "6", "2017-10-09 11:15:47", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65910", "9", "2017-10-09 11:15:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65911", "8", "2017-10-09 11:15:49", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65912", "10", "2017-10-09 11:15:50", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65913", "15", "2017-10-09 11:15:55", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65914", "10", "2017-10-09 12:00:21", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("65915", "3", "2017-10-09 13:45:46", "216.121.132.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("65916", "14", "2017-10-09 14:00:57", "91.108.177.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("65917", "10", "2017-10-09 14:14:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("65918", "9", "2017-10-09 15:19:24", "40.77.167.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("65919", "3", "2017-10-09 15:19:44", "40.77.167.115", "62");
INSERT INTO `wp_rg_form_view` VALUES("65920", "15", "2017-10-09 15:19:45", "207.46.13.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("65921", "10", "2017-10-09 15:20:39", "40.77.167.115", "25");
INSERT INTO `wp_rg_form_view` VALUES("65922", "6", "2017-10-09 15:22:16", "207.46.13.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("65923", "11", "2017-10-09 15:25:58", "40.77.167.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("65924", "8", "2017-10-09 15:31:30", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65925", "3", "2017-10-09 17:06:52", "96.54.244.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("65926", "10", "2017-10-09 17:42:59", "72.14.199.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("65927", "3", "2017-10-09 18:14:43", "96.50.126.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("65928", "10", "2017-10-09 19:35:36", "154.5.182.60", "6");
INSERT INTO `wp_rg_form_view` VALUES("65929", "3", "2017-10-09 19:49:34", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65930", "6", "2017-10-09 19:49:34", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65931", "9", "2017-10-09 19:49:37", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65932", "8", "2017-10-09 19:49:38", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65933", "15", "2017-10-09 19:49:45", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65934", "8", "2017-10-09 20:02:43", "96.54.159.213", "3");
INSERT INTO `wp_rg_form_view` VALUES("65935", "3", "2017-10-09 21:06:42", "180.76.15.18", "4");
INSERT INTO `wp_rg_form_view` VALUES("65936", "8", "2017-10-09 22:02:32", "40.77.167.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("65937", "3", "2017-10-09 23:19:57", "180.76.15.24", "38");
INSERT INTO `wp_rg_form_view` VALUES("65938", "8", "2017-10-09 23:26:06", "67.68.134.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("65939", "6", "2017-10-09 23:54:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65940", "9", "2017-10-09 23:54:25", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65941", "10", "2017-10-09 23:54:27", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65942", "15", "2017-10-09 23:54:29", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65943", "3", "2017-10-10 00:41:47", "40.77.167.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("65944", "14", "2017-10-10 02:03:05", "216.232.148.95", "2");
INSERT INTO `wp_rg_form_view` VALUES("65945", "3", "2017-10-10 02:14:38", "180.76.15.12", "7");
INSERT INTO `wp_rg_form_view` VALUES("65946", "8", "2017-10-10 02:32:13", "50.247.200.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("65947", "8", "2017-10-10 04:01:25", "70.67.110.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("65948", "3", "2017-10-10 04:20:56", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65949", "6", "2017-10-10 04:20:56", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65950", "9", "2017-10-10 04:20:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65951", "10", "2017-10-10 04:20:58", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("65952", "15", "2017-10-10 04:21:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65953", "10", "2017-10-10 06:31:07", "72.14.199.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("65954", "3", "2017-10-10 08:39:39", "68.180.230.223", "35");
INSERT INTO `wp_rg_form_view` VALUES("65955", "6", "2017-10-10 08:46:27", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65956", "9", "2017-10-10 08:46:28", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65957", "8", "2017-10-10 08:46:28", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65958", "10", "2017-10-10 08:46:29", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65959", "15", "2017-10-10 08:46:31", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65960", "3", "2017-10-10 09:01:48", "180.76.15.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("65961", "9", "2017-10-10 11:15:12", "180.76.15.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("65962", "8", "2017-10-10 11:30:38", "194.187.170.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("65963", "3", "2017-10-10 12:18:56", "40.77.167.100", "7");
INSERT INTO `wp_rg_form_view` VALUES("65964", "9", "2017-10-10 12:20:00", "207.46.13.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("65965", "10", "2017-10-10 12:21:37", "40.77.167.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("65966", "3", "2017-10-10 13:06:21", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65967", "6", "2017-10-10 13:06:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65968", "9", "2017-10-10 13:06:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65969", "8", "2017-10-10 13:06:25", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65970", "10", "2017-10-10 13:06:26", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65971", "15", "2017-10-10 13:06:29", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65972", "10", "2017-10-10 14:14:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("65973", "15", "2017-10-10 14:43:43", "173.239.219.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("65974", "3", "2017-10-10 17:02:25", "180.76.15.148", "32");
INSERT INTO `wp_rg_form_view` VALUES("65975", "6", "2017-10-10 17:22:38", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65976", "9", "2017-10-10 17:22:39", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65977", "8", "2017-10-10 17:22:40", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("65978", "10", "2017-10-10 17:22:40", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65979", "15", "2017-10-10 17:22:43", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65980", "3", "2017-10-10 18:04:31", "184.71.21.162", "6");
INSERT INTO `wp_rg_form_view` VALUES("65981", "8", "2017-10-10 18:05:01", "184.71.21.162", "3");
INSERT INTO `wp_rg_form_view` VALUES("65982", "14", "2017-10-10 18:53:28", "198.103.109.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("65983", "8", "2017-10-10 19:15:47", "216.232.155.179", "1");
INSERT INTO `wp_rg_form_view` VALUES("65984", "10", "2017-10-10 19:34:40", "72.14.199.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("65985", "8", "2017-10-10 20:24:28", "70.67.110.128", "2");
INSERT INTO `wp_rg_form_view` VALUES("65986", "3", "2017-10-10 21:29:20", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("65987", "6", "2017-10-10 21:29:20", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65988", "9", "2017-10-10 21:29:21", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65989", "8", "2017-10-10 21:29:22", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("65990", "10", "2017-10-10 21:29:23", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("65991", "15", "2017-10-10 21:29:25", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65992", "14", "2017-10-10 22:18:09", "107.150.74.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("65993", "8", "2017-10-10 23:35:29", "66.102.6.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("65994", "8", "2017-10-10 23:35:29", "66.102.6.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("65995", "3", "2017-10-10 23:45:47", "180.76.15.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("65996", "10", "2017-10-11 00:40:31", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("65997", "3", "2017-10-11 01:28:07", "66.249.79.149", "32");
INSERT INTO `wp_rg_form_view` VALUES("65998", "6", "2017-10-11 01:35:58", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("65999", "9", "2017-10-11 01:35:59", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66000", "8", "2017-10-11 01:36:00", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66001", "10", "2017-10-11 01:36:00", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66002", "15", "2017-10-11 01:36:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66003", "8", "2017-10-11 02:11:24", "64.180.23.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("66004", "3", "2017-10-11 02:27:20", "24.69.169.218", "3");
INSERT INTO `wp_rg_form_view` VALUES("66005", "10", "2017-10-11 04:57:07", "180.76.15.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("66006", "14", "2017-10-11 05:33:06", "107.150.70.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("66007", "3", "2017-10-11 05:49:14", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66008", "6", "2017-10-11 05:49:14", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66009", "9", "2017-10-11 05:49:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66010", "8", "2017-10-11 05:49:16", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66011", "10", "2017-10-11 05:49:16", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66012", "15", "2017-10-11 05:49:19", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66013", "10", "2017-10-11 06:25:48", "199.16.157.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("66014", "9", "2017-10-11 06:36:45", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("66015", "3", "2017-10-11 07:03:20", "5.188.211.13", "31");
INSERT INTO `wp_rg_form_view` VALUES("66016", "6", "2017-10-11 07:03:21", "5.188.211.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("66017", "9", "2017-10-11 07:03:22", "5.188.211.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("66018", "8", "2017-10-11 07:03:22", "5.188.211.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("66019", "10", "2017-10-11 07:03:23", "5.188.211.13", "5");
INSERT INTO `wp_rg_form_view` VALUES("66020", "15", "2017-10-11 07:03:25", "5.188.211.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("66021", "10", "2017-10-11 08:27:43", "194.187.170.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("66022", "3", "2017-10-11 08:51:56", "180.76.15.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("66023", "3", "2017-10-11 09:33:14", "194.187.170.121", "2");
INSERT INTO `wp_rg_form_view` VALUES("66024", "10", "2017-10-11 10:02:49", "194.187.170.121", "6");
INSERT INTO `wp_rg_form_view` VALUES("66025", "3", "2017-10-11 10:02:53", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66026", "6", "2017-10-11 10:02:54", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66027", "9", "2017-10-11 10:02:55", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66028", "8", "2017-10-11 10:02:55", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66029", "15", "2017-10-11 10:02:58", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66030", "3", "2017-10-11 11:05:17", "180.76.15.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("66031", "3", "2017-10-11 14:14:58", "35.160.137.253", "62");
INSERT INTO `wp_rg_form_view` VALUES("66032", "6", "2017-10-11 14:14:59", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66033", "9", "2017-10-11 14:15:00", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66034", "8", "2017-10-11 14:15:00", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("66035", "10", "2017-10-11 14:15:01", "35.160.137.253", "10");
INSERT INTO `wp_rg_form_view` VALUES("66036", "15", "2017-10-11 14:15:03", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66037", "3", "2017-10-11 15:03:47", "24.68.106.237", "8");
INSERT INTO `wp_rg_form_view` VALUES("66038", "8", "2017-10-11 15:23:20", "40.77.167.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("66039", "3", "2017-10-11 16:40:37", "24.68.106.237", "2");
INSERT INTO `wp_rg_form_view` VALUES("66040", "3", "2017-10-11 17:52:58", "24.68.248.211", "3");
INSERT INTO `wp_rg_form_view` VALUES("66041", "8", "2017-10-11 18:22:50", "104.254.247.188", "6");
INSERT INTO `wp_rg_form_view` VALUES("66042", "3", "2017-10-11 18:23:07", "104.254.247.188", "64");
INSERT INTO `wp_rg_form_view` VALUES("66043", "6", "2017-10-11 18:40:02", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66044", "9", "2017-10-11 18:40:03", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66045", "10", "2017-10-11 18:40:04", "35.160.137.253", "10");
INSERT INTO `wp_rg_form_view` VALUES("66046", "15", "2017-10-11 18:40:07", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66047", "8", "2017-10-11 19:32:16", "24.108.184.241", "2");
INSERT INTO `wp_rg_form_view` VALUES("66048", "3", "2017-10-11 20:30:34", "5.188.211.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("66049", "3", "2017-10-11 21:09:44", "180.76.15.11", "2");
INSERT INTO `wp_rg_form_view` VALUES("66050", "3", "2017-10-11 22:16:20", "180.76.15.147", "32");
INSERT INTO `wp_rg_form_view` VALUES("66051", "6", "2017-10-11 22:46:42", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66052", "9", "2017-10-11 22:46:43", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66053", "8", "2017-10-11 22:46:44", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66054", "10", "2017-10-11 22:46:45", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66055", "15", "2017-10-11 22:46:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66056", "10", "2017-10-11 23:33:19", "72.14.199.161", "2");
INSERT INTO `wp_rg_form_view` VALUES("66057", "3", "2017-10-11 23:35:17", "157.55.39.153", "5");
INSERT INTO `wp_rg_form_view` VALUES("66058", "8", "2017-10-11 23:40:14", "40.77.167.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("66059", "14", "2017-10-11 23:53:03", "24.69.164.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("66060", "10", "2017-10-12 00:29:43", "180.76.15.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("66061", "10", "2017-10-12 01:07:38", "194.187.170.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("66062", "6", "2017-10-12 02:09:44", "180.76.15.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("66063", "3", "2017-10-12 03:10:42", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66064", "6", "2017-10-12 03:10:43", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66065", "9", "2017-10-12 03:10:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66066", "8", "2017-10-12 03:10:44", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66067", "10", "2017-10-12 03:10:45", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66068", "15", "2017-10-12 03:10:47", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66069", "10", "2017-10-12 04:42:28", "199.59.150.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("66070", "8", "2017-10-12 05:32:50", "180.76.15.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("66071", "3", "2017-10-12 06:06:10", "180.76.15.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("66072", "3", "2017-10-12 07:18:40", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66073", "6", "2017-10-12 07:18:40", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66074", "9", "2017-10-12 07:18:41", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66075", "8", "2017-10-12 07:18:41", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66076", "10", "2017-10-12 07:18:42", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66077", "15", "2017-10-12 07:18:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66078", "3", "2017-10-12 08:38:14", "5.188.211.21", "32");
INSERT INTO `wp_rg_form_view` VALUES("66079", "6", "2017-10-12 08:38:15", "5.188.211.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("66080", "9", "2017-10-12 08:38:16", "5.188.211.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("66081", "8", "2017-10-12 08:38:17", "5.188.211.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("66082", "10", "2017-10-12 08:38:17", "5.188.211.21", "5");
INSERT INTO `wp_rg_form_view` VALUES("66083", "15", "2017-10-12 08:38:20", "5.188.211.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("66084", "14", "2017-10-12 09:06:10", "131.153.28.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("66085", "14", "2017-10-12 11:00:07", "201.37.77.230", "5");
INSERT INTO `wp_rg_form_view` VALUES("66086", "3", "2017-10-12 11:16:19", "68.180.230.223", "33");
INSERT INTO `wp_rg_form_view` VALUES("66087", "6", "2017-10-12 11:27:47", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66088", "9", "2017-10-12 11:27:49", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66089", "8", "2017-10-12 11:27:49", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66090", "10", "2017-10-12 11:27:50", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66091", "15", "2017-10-12 11:27:53", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66092", "3", "2017-10-12 13:20:45", "180.76.15.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("66093", "3", "2017-10-12 14:06:48", "66.249.79.61", "2");
INSERT INTO `wp_rg_form_view` VALUES("66094", "10", "2017-10-12 15:14:21", "207.46.13.18", "7");
INSERT INTO `wp_rg_form_view` VALUES("66095", "3", "2017-10-12 15:23:21", "180.76.15.12", "33");
INSERT INTO `wp_rg_form_view` VALUES("66096", "6", "2017-10-12 15:39:43", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66097", "9", "2017-10-12 15:39:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66098", "8", "2017-10-12 15:39:45", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66099", "15", "2017-10-12 15:39:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66100", "8", "2017-10-12 16:03:01", "184.66.137.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("66101", "14", "2017-10-12 16:14:19", "64.251.78.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("66102", "3", "2017-10-12 16:22:26", "46.4.58.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("66103", "3", "2017-10-12 17:09:46", "207.46.13.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("66104", "14", "2017-10-12 17:27:04", "212.237.56.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("66105", "8", "2017-10-12 17:56:59", "66.102.6.209", "2");
INSERT INTO `wp_rg_form_view` VALUES("66106", "8", "2017-10-12 19:03:03", "184.69.2.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("66107", "9", "2017-10-12 19:12:16", "217.182.91.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("66108", "3", "2017-10-12 19:48:53", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66109", "6", "2017-10-12 19:48:54", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66110", "10", "2017-10-12 19:48:56", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66111", "15", "2017-10-12 19:48:59", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66112", "8", "2017-10-12 20:15:18", "66.249.79.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("66113", "10", "2017-10-12 22:04:11", "157.55.39.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("66114", "10", "2017-10-12 23:02:45", "199.59.150.183", "11");
INSERT INTO `wp_rg_form_view` VALUES("66115", "3", "2017-10-12 23:55:01", "35.160.137.253", "62");
INSERT INTO `wp_rg_form_view` VALUES("66116", "6", "2017-10-12 23:55:02", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66117", "9", "2017-10-12 23:55:03", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66118", "8", "2017-10-12 23:55:03", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("66119", "15", "2017-10-12 23:55:07", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66120", "3", "2017-10-13 01:36:19", "180.76.15.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("66121", "8", "2017-10-13 02:09:38", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("66122", "3", "2017-10-13 02:31:24", "64.66.25.129", "4");
INSERT INTO `wp_rg_form_view` VALUES("66123", "10", "2017-10-13 02:35:58", "66.249.79.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("66124", "3", "2017-10-13 03:48:42", "180.76.15.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("66125", "8", "2017-10-13 04:31:35", "66.249.79.35", "3");
INSERT INTO `wp_rg_form_view` VALUES("66126", "3", "2017-10-13 04:37:55", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66127", "6", "2017-10-13 04:37:56", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66128", "9", "2017-10-13 04:37:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66129", "10", "2017-10-13 04:37:58", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66130", "15", "2017-10-13 04:38:00", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66131", "3", "2017-10-13 05:13:11", "24.68.32.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("66132", "10", "2017-10-13 05:53:31", "24.108.13.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("66133", "8", "2017-10-13 06:28:00", "184.69.126.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("66134", "3", "2017-10-13 06:35:30", "180.76.15.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("66135", "3", "2017-10-13 08:04:28", "66.249.79.87", "33");
INSERT INTO `wp_rg_form_view` VALUES("66136", "6", "2017-10-13 08:42:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66137", "9", "2017-10-13 08:42:02", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66138", "8", "2017-10-13 08:42:03", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66139", "10", "2017-10-13 08:42:04", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66140", "15", "2017-10-13 08:42:06", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66141", "14", "2017-10-13 11:39:47", "157.55.39.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("66142", "3", "2017-10-13 12:12:30", "178.255.41.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66143", "6", "2017-10-13 12:51:19", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66144", "9", "2017-10-13 12:51:20", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66145", "8", "2017-10-13 12:51:21", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66146", "10", "2017-10-13 12:51:21", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66147", "15", "2017-10-13 12:51:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66148", "8", "2017-10-13 13:57:50", "157.55.39.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("66149", "3", "2017-10-13 14:08:50", "180.76.15.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("66150", "10", "2017-10-13 14:28:50", "70.67.50.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("66151", "3", "2017-10-13 15:12:08", "144.76.6.230", "3");
INSERT INTO `wp_rg_form_view` VALUES("66152", "14", "2017-10-13 15:33:13", "23.245.152.154", "3");
INSERT INTO `wp_rg_form_view` VALUES("66153", "10", "2017-10-13 16:02:59", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("66154", "3", "2017-10-13 16:56:53", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66155", "6", "2017-10-13 16:56:53", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66156", "9", "2017-10-13 16:56:54", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66157", "8", "2017-10-13 16:56:55", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66158", "15", "2017-10-13 16:56:58", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66159", "3", "2017-10-13 17:30:17", "180.76.15.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("66160", "10", "2017-10-13 17:51:01", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66161", "10", "2017-10-13 18:01:23", "72.14.199.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("66162", "3", "2017-10-13 18:12:32", "184.66.146.174", "3");
INSERT INTO `wp_rg_form_view` VALUES("66163", "14", "2017-10-13 18:37:25", "96.54.246.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("66164", "8", "2017-10-13 18:46:58", "173.183.121.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("66165", "3", "2017-10-13 19:47:54", "178.63.1.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("66166", "8", "2017-10-13 19:49:21", "178.63.1.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("66167", "14", "2017-10-13 19:50:46", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("66168", "3", "2017-10-13 20:50:22", "157.55.39.153", "32");
INSERT INTO `wp_rg_form_view` VALUES("66169", "6", "2017-10-13 20:57:25", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66170", "9", "2017-10-13 20:57:27", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66171", "8", "2017-10-13 20:57:27", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66172", "10", "2017-10-13 20:57:28", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66173", "15", "2017-10-13 20:57:30", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66174", "8", "2017-10-13 21:40:16", "154.20.7.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("66175", "10", "2017-10-13 22:39:46", "180.76.15.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("66176", "8", "2017-10-13 23:18:34", "154.20.28.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("66177", "3", "2017-10-13 23:38:50", "24.68.252.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("66178", "8", "2017-10-14 00:03:13", "216.232.151.3", "3");
INSERT INTO `wp_rg_form_view` VALUES("66179", "8", "2017-10-14 01:07:34", "184.66.42.23", "4");
INSERT INTO `wp_rg_form_view` VALUES("66180", "3", "2017-10-14 01:14:14", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66181", "6", "2017-10-14 01:14:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66182", "9", "2017-10-14 01:14:17", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66183", "10", "2017-10-14 01:14:19", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66184", "15", "2017-10-14 01:14:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66185", "14", "2017-10-14 01:26:12", "96.54.246.107", "1");
INSERT INTO `wp_rg_form_view` VALUES("66186", "8", "2017-10-14 02:27:21", "40.77.167.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("66187", "3", "2017-10-14 03:39:46", "180.76.15.157", "5");
INSERT INTO `wp_rg_form_view` VALUES("66188", "8", "2017-10-14 03:57:42", "217.217.179.17", "2");
INSERT INTO `wp_rg_form_view` VALUES("66189", "3", "2017-10-14 04:01:17", "217.217.179.17", "11");
INSERT INTO `wp_rg_form_view` VALUES("66190", "12", "2017-10-14 04:39:51", "157.55.39.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("66191", "10", "2017-10-14 04:43:12", "157.55.39.73", "5");
INSERT INTO `wp_rg_form_view` VALUES("66192", "9", "2017-10-14 04:43:16", "157.55.39.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("66193", "3", "2017-10-14 05:30:34", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66194", "6", "2017-10-14 05:30:35", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66195", "9", "2017-10-14 05:30:36", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66196", "8", "2017-10-14 05:30:37", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66197", "10", "2017-10-14 05:30:37", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66198", "15", "2017-10-14 05:30:40", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66199", "8", "2017-10-14 06:21:21", "24.108.23.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("66200", "10", "2017-10-14 07:26:13", "77.88.5.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("66201", "3", "2017-10-14 07:31:44", "66.183.101.202", "6");
INSERT INTO `wp_rg_form_view` VALUES("66202", "15", "2017-10-14 07:56:33", "46.229.168.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("66203", "10", "2017-10-14 08:01:53", "46.229.168.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("66204", "3", "2017-10-14 08:06:28", "46.229.168.79", "4");
INSERT INTO `wp_rg_form_view` VALUES("66205", "6", "2017-10-14 08:14:44", "46.229.168.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("66206", "3", "2017-10-14 09:32:41", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66207", "6", "2017-10-14 09:32:41", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66208", "9", "2017-10-14 09:32:42", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66209", "8", "2017-10-14 09:32:43", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66210", "10", "2017-10-14 09:32:43", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66211", "15", "2017-10-14 09:32:46", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66212", "3", "2017-10-14 10:00:23", "77.88.5.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("66213", "11", "2017-10-14 10:14:06", "93.158.161.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("66214", "10", "2017-10-14 11:05:38", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("66215", "10", "2017-10-14 12:00:15", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66216", "3", "2017-10-14 12:29:54", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("66217", "3", "2017-10-14 13:39:53", "35.160.137.253", "62");
INSERT INTO `wp_rg_form_view` VALUES("66218", "6", "2017-10-14 13:39:53", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66219", "9", "2017-10-14 13:39:55", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66220", "8", "2017-10-14 13:39:55", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("66221", "10", "2017-10-14 13:39:56", "35.160.137.253", "11");
INSERT INTO `wp_rg_form_view` VALUES("66222", "15", "2017-10-14 13:39:58", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66223", "10", "2017-10-14 14:55:26", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66224", "10", "2017-10-14 15:32:34", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66225", "3", "2017-10-14 15:34:01", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("66226", "3", "2017-10-14 16:33:32", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("66227", "10", "2017-10-14 16:45:07", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66228", "3", "2017-10-14 17:44:21", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66229", "6", "2017-10-14 17:44:22", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66230", "9", "2017-10-14 17:44:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66231", "8", "2017-10-14 17:44:23", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66232", "10", "2017-10-14 17:44:24", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66233", "15", "2017-10-14 17:44:26", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66234", "3", "2017-10-14 18:05:29", "24.68.252.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("66235", "10", "2017-10-14 18:29:08", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66236", "10", "2017-10-14 19:43:03", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("66237", "3", "2017-10-14 21:35:52", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66238", "6", "2017-10-14 21:35:52", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66239", "9", "2017-10-14 21:35:53", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66240", "8", "2017-10-14 21:35:54", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66241", "10", "2017-10-14 21:35:54", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66242", "15", "2017-10-14 21:35:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66243", "10", "2017-10-14 22:29:36", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("66244", "3", "2017-10-15 01:43:47", "180.76.15.140", "32");
INSERT INTO `wp_rg_form_view` VALUES("66245", "6", "2017-10-15 01:58:59", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66246", "9", "2017-10-15 01:59:00", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66247", "8", "2017-10-15 01:59:01", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66248", "10", "2017-10-15 01:59:01", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66249", "15", "2017-10-15 01:59:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66250", "10", "2017-10-15 02:01:25", "24.108.13.92", "3");
INSERT INTO `wp_rg_form_view` VALUES("66251", "3", "2017-10-15 02:31:10", "146.185.223.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("66252", "8", "2017-10-15 03:18:03", "212.225.203.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("66253", "3", "2017-10-15 03:18:10", "212.225.203.134", "8");
INSERT INTO `wp_rg_form_view` VALUES("66254", "3", "2017-10-15 04:48:07", "151.80.31.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("66255", "3", "2017-10-15 05:41:18", "157.55.39.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("66256", "3", "2017-10-15 06:03:18", "35.160.137.253", "33");
INSERT INTO `wp_rg_form_view` VALUES("66257", "6", "2017-10-15 06:03:18", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66258", "9", "2017-10-15 06:03:19", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66259", "8", "2017-10-15 06:03:20", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66260", "10", "2017-10-15 06:03:21", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66261", "15", "2017-10-15 06:03:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66262", "10", "2017-10-15 08:33:41", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("66263", "3", "2017-10-15 10:09:53", "35.160.137.253", "62");
INSERT INTO `wp_rg_form_view` VALUES("66264", "6", "2017-10-15 10:09:53", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66265", "9", "2017-10-15 10:09:54", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66266", "8", "2017-10-15 10:09:55", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("66267", "10", "2017-10-15 10:09:56", "35.160.137.253", "11");
INSERT INTO `wp_rg_form_view` VALUES("66268", "15", "2017-10-15 10:10:00", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66269", "3", "2017-10-15 11:11:02", "207.46.13.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("66270", "10", "2017-10-15 12:00:24", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("66271", "3", "2017-10-15 12:50:37", "180.76.15.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("66272", "3", "2017-10-15 14:12:14", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66273", "6", "2017-10-15 14:12:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66274", "9", "2017-10-15 14:12:16", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66275", "8", "2017-10-15 14:12:17", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66276", "10", "2017-10-15 14:12:19", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66277", "15", "2017-10-15 14:12:22", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66278", "3", "2017-10-15 15:29:49", "5.188.211.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("66279", "10", "2017-10-15 15:37:07", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("66280", "3", "2017-10-15 16:10:31", "180.76.15.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("66281", "10", "2017-10-15 16:27:16", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66282", "3", "2017-10-15 18:13:44", "164.132.161.94", "32");
INSERT INTO `wp_rg_form_view` VALUES("66283", "6", "2017-10-15 18:15:20", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66284", "9", "2017-10-15 18:15:22", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66285", "8", "2017-10-15 18:15:22", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66286", "10", "2017-10-15 18:15:23", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66287", "15", "2017-10-15 18:15:28", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66288", "14", "2017-10-15 18:54:12", "70.67.53.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("66289", "3", "2017-10-15 19:07:25", "24.69.17.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("66290", "14", "2017-10-15 19:42:15", "148.64.56.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("66291", "10", "2017-10-15 22:04:06", "72.14.199.115", "6");
INSERT INTO `wp_rg_form_view` VALUES("66292", "3", "2017-10-15 22:04:44", "180.76.15.157", "32");
INSERT INTO `wp_rg_form_view` VALUES("66293", "6", "2017-10-15 22:18:11", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66294", "9", "2017-10-15 22:18:12", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66295", "8", "2017-10-15 22:18:12", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66296", "15", "2017-10-15 22:18:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66297", "3", "2017-10-15 23:05:28", "71.219.108.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("66298", "14", "2017-10-15 23:06:02", "71.219.108.183", "3");
INSERT INTO `wp_rg_form_view` VALUES("66299", "10", "2017-10-15 23:15:05", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("66300", "14", "2017-10-16 00:21:44", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("66301", "3", "2017-10-16 00:38:57", "169.60.128.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("66302", "10", "2017-10-16 01:50:23", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66303", "3", "2017-10-16 02:21:00", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66304", "6", "2017-10-16 02:21:00", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66305", "9", "2017-10-16 02:21:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66306", "8", "2017-10-16 02:21:02", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66307", "10", "2017-10-16 02:21:02", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66308", "15", "2017-10-16 02:21:05", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66309", "3", "2017-10-16 03:52:33", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("66310", "3", "2017-10-16 04:00:29", "169.48.66.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("66311", "3", "2017-10-16 06:30:14", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66312", "6", "2017-10-16 06:30:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66313", "9", "2017-10-16 06:30:16", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66314", "8", "2017-10-16 06:30:16", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66315", "10", "2017-10-16 06:30:17", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66316", "15", "2017-10-16 06:30:19", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66317", "3", "2017-10-16 07:42:28", "5.188.211.26", "18");
INSERT INTO `wp_rg_form_view` VALUES("66318", "8", "2017-10-16 07:42:30", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("66319", "10", "2017-10-16 07:42:31", "5.188.211.26", "5");
INSERT INTO `wp_rg_form_view` VALUES("66320", "15", "2017-10-16 07:42:33", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("66321", "3", "2017-10-16 09:22:19", "180.76.15.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("66322", "3", "2017-10-16 10:28:58", "180.76.15.139", "32");
INSERT INTO `wp_rg_form_view` VALUES("66323", "6", "2017-10-16 10:38:42", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66324", "9", "2017-10-16 10:38:43", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66325", "8", "2017-10-16 10:38:44", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66326", "10", "2017-10-16 10:38:44", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66327", "15", "2017-10-16 10:38:47", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66328", "14", "2017-10-16 11:46:40", "198.148.15.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("66329", "10", "2017-10-16 12:00:17", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("66330", "3", "2017-10-16 12:50:41", "217.182.132.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("66331", "3", "2017-10-16 13:06:21", "70.67.188.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("66332", "3", "2017-10-16 14:06:53", "180.76.15.149", "33");
INSERT INTO `wp_rg_form_view` VALUES("66333", "10", "2017-10-16 14:20:06", "66.249.79.21", "8");
INSERT INTO `wp_rg_form_view` VALUES("66334", "6", "2017-10-16 14:47:09", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66335", "9", "2017-10-16 14:47:10", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66336", "8", "2017-10-16 14:47:11", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66337", "15", "2017-10-16 14:47:14", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66338", "3", "2017-10-16 15:13:39", "180.76.15.25", "2");
INSERT INTO `wp_rg_form_view` VALUES("66339", "6", "2017-10-16 16:35:04", "66.249.79.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("66340", "10", "2017-10-16 16:51:47", "51.255.71.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("66341", "3", "2017-10-16 17:22:32", "154.20.28.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("66342", "15", "2017-10-16 17:44:43", "69.171.225.154", "3");
INSERT INTO `wp_rg_form_view` VALUES("66343", "8", "2017-10-16 18:07:42", "12.202.16.36", "3");
INSERT INTO `wp_rg_form_view` VALUES("66344", "3", "2017-10-16 18:07:54", "12.202.16.36", "7");
INSERT INTO `wp_rg_form_view` VALUES("66345", "3", "2017-10-16 19:06:21", "35.160.137.253", "39");
INSERT INTO `wp_rg_form_view` VALUES("66346", "6", "2017-10-16 19:06:21", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66347", "9", "2017-10-16 19:06:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66348", "8", "2017-10-16 19:06:23", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("66349", "10", "2017-10-16 19:06:24", "35.160.137.253", "9");
INSERT INTO `wp_rg_form_view` VALUES("66350", "15", "2017-10-16 19:06:26", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66351", "3", "2017-10-16 20:03:28", "180.76.15.16", "4");
INSERT INTO `wp_rg_form_view` VALUES("66352", "3", "2017-10-16 21:01:07", "164.132.162.155", "3");
INSERT INTO `wp_rg_form_view` VALUES("66353", "10", "2017-10-16 22:32:17", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("66354", "3", "2017-10-16 23:17:40", "35.160.137.253", "39");
INSERT INTO `wp_rg_form_view` VALUES("66355", "6", "2017-10-16 23:17:41", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66356", "9", "2017-10-16 23:17:42", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66357", "8", "2017-10-16 23:17:43", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66358", "10", "2017-10-16 23:17:43", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66359", "15", "2017-10-16 23:17:46", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66360", "10", "2017-10-17 01:47:20", "66.249.89.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("66361", "14", "2017-10-17 02:38:25", "103.204.110.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("66362", "10", "2017-10-17 03:26:38", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("66363", "3", "2017-10-17 03:39:14", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66364", "6", "2017-10-17 03:39:14", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66365", "9", "2017-10-17 03:39:16", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66366", "8", "2017-10-17 03:39:16", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66367", "15", "2017-10-17 03:39:19", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66368", "3", "2017-10-17 04:32:34", "164.132.161.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("66369", "3", "2017-10-17 05:03:52", "96.50.16.229", "4");
INSERT INTO `wp_rg_form_view` VALUES("66370", "14", "2017-10-17 05:05:15", "64.180.75.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("66371", "3", "2017-10-17 06:09:04", "46.4.32.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("66372", "8", "2017-10-17 06:09:15", "46.4.32.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("66373", "10", "2017-10-17 06:46:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66374", "10", "2017-10-17 07:07:33", "51.255.65.83", "7");
INSERT INTO `wp_rg_form_view` VALUES("66375", "3", "2017-10-17 07:47:04", "35.160.137.253", "36");
INSERT INTO `wp_rg_form_view` VALUES("66376", "6", "2017-10-17 07:47:05", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66377", "9", "2017-10-17 07:47:06", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66378", "8", "2017-10-17 07:47:07", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66379", "15", "2017-10-17 07:47:12", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66380", "10", "2017-10-17 08:31:29", "180.76.15.12", "2");
INSERT INTO `wp_rg_form_view` VALUES("66381", "8", "2017-10-17 09:04:44", "144.76.115.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("66382", "3", "2017-10-17 09:09:36", "5.188.211.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("66383", "14", "2017-10-17 10:24:36", "118.140.38.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("66384", "3", "2017-10-17 10:25:49", "118.140.38.6", "5");
INSERT INTO `wp_rg_form_view` VALUES("66385", "8", "2017-10-17 10:29:24", "118.140.38.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("66386", "3", "2017-10-17 11:26:32", "180.76.15.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("66387", "10", "2017-10-17 12:00:28", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("66388", "3", "2017-10-17 12:04:38", "68.180.230.223", "35");
INSERT INTO `wp_rg_form_view` VALUES("66389", "6", "2017-10-17 12:12:28", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66390", "9", "2017-10-17 12:12:29", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66391", "8", "2017-10-17 12:12:30", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66392", "15", "2017-10-17 12:12:34", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66393", "10", "2017-10-17 13:06:26", "180.76.15.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("66394", "3", "2017-10-17 13:39:45", "180.76.15.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("66395", "10", "2017-10-17 14:13:16", "180.76.15.31", "3");
INSERT INTO `wp_rg_form_view` VALUES("66396", "10", "2017-10-17 15:01:42", "66.249.89.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("66397", "3", "2017-10-17 15:17:37", "70.67.110.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("66398", "3", "2017-10-17 16:20:50", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66399", "6", "2017-10-17 16:20:51", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66400", "9", "2017-10-17 16:20:52", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66401", "8", "2017-10-17 16:20:53", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66402", "10", "2017-10-17 16:20:54", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66403", "15", "2017-10-17 16:20:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66404", "3", "2017-10-17 17:12:10", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("66405", "10", "2017-10-17 18:28:05", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66406", "3", "2017-10-17 19:09:39", "89.123.49.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("66407", "8", "2017-10-17 19:42:54", "180.76.15.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("66408", "3", "2017-10-17 20:16:07", "180.76.15.28", "32");
INSERT INTO `wp_rg_form_view` VALUES("66409", "6", "2017-10-17 20:31:26", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66410", "9", "2017-10-17 20:31:28", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66411", "8", "2017-10-17 20:31:28", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66412", "10", "2017-10-17 20:31:29", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66413", "15", "2017-10-17 20:31:31", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66414", "10", "2017-10-17 22:45:28", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66415", "3", "2017-10-18 00:49:29", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66416", "6", "2017-10-18 00:49:29", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66417", "9", "2017-10-18 00:49:30", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66418", "8", "2017-10-18 00:49:31", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66419", "10", "2017-10-18 00:49:31", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66420", "15", "2017-10-18 00:49:33", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66421", "10", "2017-10-18 01:16:04", "180.76.15.27", "3");
INSERT INTO `wp_rg_form_view` VALUES("66422", "3", "2017-10-18 02:22:43", "180.76.15.33", "4");
INSERT INTO `wp_rg_form_view` VALUES("66423", "10", "2017-10-18 03:19:43", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66424", "3", "2017-10-18 04:43:06", "24.108.181.21", "34");
INSERT INTO `wp_rg_form_view` VALUES("66425", "10", "2017-10-18 04:56:55", "77.88.5.64", "6");
INSERT INTO `wp_rg_form_view` VALUES("66426", "6", "2017-10-18 04:57:20", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66427", "9", "2017-10-18 04:57:21", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66428", "8", "2017-10-18 04:57:21", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66429", "15", "2017-10-18 04:57:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66430", "3", "2017-10-18 05:11:14", "64.180.75.215", "10");
INSERT INTO `wp_rg_form_view` VALUES("66431", "14", "2017-10-18 05:14:35", "64.180.75.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("66432", "10", "2017-10-18 05:20:32", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("66433", "10", "2017-10-18 07:08:16", "199.59.150.183", "2");
INSERT INTO `wp_rg_form_view` VALUES("66434", "3", "2017-10-18 07:43:28", "68.180.230.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("66435", "3", "2017-10-18 08:10:35", "184.66.8.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("66436", "3", "2017-10-18 09:13:49", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66437", "6", "2017-10-18 09:13:49", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66438", "9", "2017-10-18 09:13:50", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66439", "8", "2017-10-18 09:13:51", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66440", "10", "2017-10-18 09:13:51", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66441", "15", "2017-10-18 09:13:54", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66442", "3", "2017-10-18 10:04:24", "5.188.211.22", "31");
INSERT INTO `wp_rg_form_view` VALUES("66443", "6", "2017-10-18 10:04:24", "5.188.211.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("66444", "9", "2017-10-18 10:04:25", "5.188.211.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("66445", "8", "2017-10-18 10:04:26", "5.188.211.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("66446", "10", "2017-10-18 10:04:27", "5.188.211.22", "5");
INSERT INTO `wp_rg_form_view` VALUES("66447", "15", "2017-10-18 10:04:30", "5.188.211.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("66448", "10", "2017-10-18 13:19:52", "217.182.132.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("66449", "3", "2017-10-18 13:22:55", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66450", "6", "2017-10-18 13:22:56", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66451", "9", "2017-10-18 13:22:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66452", "8", "2017-10-18 13:22:57", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66453", "15", "2017-10-18 13:23:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66454", "3", "2017-10-18 14:26:01", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("66455", "3", "2017-10-18 15:23:49", "180.76.15.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("66456", "3", "2017-10-18 16:10:17", "184.71.24.158", "4");
INSERT INTO `wp_rg_form_view` VALUES("66457", "3", "2017-10-18 17:03:50", "180.76.15.140", "42");
INSERT INTO `wp_rg_form_view` VALUES("66458", "10", "2017-10-18 17:26:05", "51.255.71.114", "14");
INSERT INTO `wp_rg_form_view` VALUES("66459", "6", "2017-10-18 17:33:09", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66460", "9", "2017-10-18 17:33:11", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("66461", "8", "2017-10-18 17:33:11", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66462", "15", "2017-10-18 17:33:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66463", "3", "2017-10-18 18:16:29", "40.77.167.36", "6");
INSERT INTO `wp_rg_form_view` VALUES("66464", "10", "2017-10-18 18:18:39", "40.77.167.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("66465", "6", "2017-10-18 18:33:37", "40.77.167.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("66466", "8", "2017-10-18 19:55:00", "180.76.15.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("66467", "3", "2017-10-18 20:00:22", "209.52.88.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("66468", "3", "2017-10-18 22:14:43", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66469", "6", "2017-10-18 22:14:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66470", "9", "2017-10-18 22:14:45", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66471", "8", "2017-10-18 22:14:46", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66472", "10", "2017-10-18 22:14:46", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66473", "15", "2017-10-18 22:14:49", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66474", "3", "2017-10-19 00:16:05", "207.46.13.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("66475", "3", "2017-10-19 01:00:29", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("66476", "10", "2017-10-19 01:38:15", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66477", "3", "2017-10-19 02:21:29", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66478", "6", "2017-10-19 02:21:30", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66479", "9", "2017-10-19 02:21:33", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66480", "8", "2017-10-19 02:21:34", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66481", "10", "2017-10-19 02:21:35", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66482", "15", "2017-10-19 02:21:39", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66483", "10", "2017-10-19 04:37:46", "40.77.167.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("66484", "10", "2017-10-19 06:32:11", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("66485", "3", "2017-10-19 06:34:23", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66486", "6", "2017-10-19 06:34:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66487", "9", "2017-10-19 06:34:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66488", "8", "2017-10-19 06:34:25", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66489", "15", "2017-10-19 06:34:28", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66490", "3", "2017-10-19 08:00:08", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("66491", "10", "2017-10-19 09:13:33", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("66492", "3", "2017-10-19 09:28:09", "180.76.15.23", "3");
INSERT INTO `wp_rg_form_view` VALUES("66493", "3", "2017-10-19 10:46:01", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66494", "6", "2017-10-19 10:46:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66495", "9", "2017-10-19 10:46:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66496", "8", "2017-10-19 10:46:04", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66497", "10", "2017-10-19 10:46:05", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66498", "15", "2017-10-19 10:46:09", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66499", "3", "2017-10-19 11:08:03", "180.76.15.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("66500", "10", "2017-10-19 12:00:24", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66501", "3", "2017-10-19 12:02:28", "217.182.132.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("66502", "3", "2017-10-19 14:57:23", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66503", "6", "2017-10-19 14:57:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66504", "9", "2017-10-19 14:57:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66505", "8", "2017-10-19 14:57:25", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66506", "10", "2017-10-19 14:57:26", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66507", "15", "2017-10-19 14:57:28", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66508", "3", "2017-10-19 16:03:47", "207.194.133.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("66509", "3", "2017-10-19 17:01:24", "207.194.133.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("66510", "3", "2017-10-19 18:21:19", "180.76.15.27", "4");
INSERT INTO `wp_rg_form_view` VALUES("66511", "3", "2017-10-19 19:03:34", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66512", "6", "2017-10-19 19:03:35", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66513", "9", "2017-10-19 19:03:37", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66514", "8", "2017-10-19 19:03:39", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66515", "10", "2017-10-19 19:03:40", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66516", "15", "2017-10-19 19:03:45", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66517", "10", "2017-10-19 20:46:05", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66518", "3", "2017-10-19 21:33:11", "74.208.200.94", "6");
INSERT INTO `wp_rg_form_view` VALUES("66519", "3", "2017-10-19 22:13:36", "51.255.65.73", "5");
INSERT INTO `wp_rg_form_view` VALUES("66520", "3", "2017-10-19 23:04:11", "164.132.161.91", "43");
INSERT INTO `wp_rg_form_view` VALUES("66521", "6", "2017-10-19 23:18:26", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66522", "9", "2017-10-19 23:18:29", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66523", "8", "2017-10-19 23:18:30", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66524", "10", "2017-10-19 23:18:31", "35.160.137.253", "13");
INSERT INTO `wp_rg_form_view` VALUES("66525", "15", "2017-10-19 23:18:36", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66526", "3", "2017-10-20 00:01:27", "46.229.168.72", "6");
INSERT INTO `wp_rg_form_view` VALUES("66527", "14", "2017-10-20 01:01:32", "107.158.216.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("66528", "3", "2017-10-20 02:03:20", "71.43.105.234", "7");
INSERT INTO `wp_rg_form_view` VALUES("66529", "3", "2017-10-20 03:25:46", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66530", "6", "2017-10-20 03:25:47", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66531", "9", "2017-10-20 03:25:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66532", "8", "2017-10-20 03:25:48", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66533", "10", "2017-10-20 03:25:49", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66534", "15", "2017-10-20 03:25:51", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66535", "11", "2017-10-20 05:16:50", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66536", "14", "2017-10-20 06:09:41", "180.76.15.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("66537", "3", "2017-10-20 06:46:21", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("66538", "3", "2017-10-20 07:16:19", "180.76.15.33", "33");
INSERT INTO `wp_rg_form_view` VALUES("66539", "6", "2017-10-20 07:37:06", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66540", "9", "2017-10-20 07:37:07", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66541", "8", "2017-10-20 07:37:07", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66542", "10", "2017-10-20 07:37:08", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66543", "15", "2017-10-20 07:37:10", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66544", "3", "2017-10-20 08:22:59", "180.76.15.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("66545", "3", "2017-10-20 09:00:55", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("66546", "10", "2017-10-20 11:41:06", "51.255.65.7", "6");
INSERT INTO `wp_rg_form_view` VALUES("66547", "3", "2017-10-20 11:44:21", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66548", "6", "2017-10-20 11:44:21", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66549", "9", "2017-10-20 11:44:22", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66550", "8", "2017-10-20 11:44:23", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66551", "15", "2017-10-20 11:44:26", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66552", "10", "2017-10-20 12:27:44", "66.249.92.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("66553", "3", "2017-10-20 12:47:49", "104.254.247.188", "15");
INSERT INTO `wp_rg_form_view` VALUES("66554", "14", "2017-10-20 12:56:00", "104.254.247.188", "2");
INSERT INTO `wp_rg_form_view` VALUES("66555", "3", "2017-10-20 13:00:05", "104.254.247.188", "3");
INSERT INTO `wp_rg_form_view` VALUES("66556", "10", "2017-10-20 13:25:31", "199.16.157.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("66557", "3", "2017-10-20 14:24:01", "207.46.13.105", "2");
INSERT INTO `wp_rg_form_view` VALUES("66558", "10", "2017-10-20 14:28:57", "51.255.65.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("66559", "3", "2017-10-20 15:51:58", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66560", "6", "2017-10-20 15:51:58", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66561", "9", "2017-10-20 15:51:59", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66562", "8", "2017-10-20 15:52:00", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66563", "10", "2017-10-20 15:52:01", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66564", "15", "2017-10-20 15:52:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66565", "10", "2017-10-20 16:51:59", "70.67.196.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("66566", "3", "2017-10-20 16:52:22", "70.67.196.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("66567", "3", "2017-10-20 18:20:09", "51.255.65.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("66568", "14", "2017-10-20 18:53:40", "24.108.24.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("66569", "3", "2017-10-20 19:11:27", "51.255.65.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("66570", "10", "2017-10-20 20:09:15", "207.46.13.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("66571", "3", "2017-10-20 20:15:53", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66572", "6", "2017-10-20 20:15:53", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66573", "9", "2017-10-20 20:15:54", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66574", "8", "2017-10-20 20:15:54", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("66575", "15", "2017-10-20 20:15:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66576", "3", "2017-10-20 23:39:09", "207.46.13.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("66577", "3", "2017-10-21 00:13:44", "35.160.137.253", "37");
INSERT INTO `wp_rg_form_view` VALUES("66578", "6", "2017-10-21 00:13:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66579", "9", "2017-10-21 00:13:45", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66580", "8", "2017-10-21 00:13:46", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66581", "10", "2017-10-21 00:13:46", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66582", "15", "2017-10-21 00:13:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66583", "14", "2017-10-21 01:21:23", "144.217.116.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("66584", "10", "2017-10-21 01:28:34", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("66585", "10", "2017-10-21 02:35:01", "66.249.92.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("66586", "10", "2017-10-21 03:09:26", "207.46.13.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("66587", "10", "2017-10-21 04:22:50", "80.241.214.124", "6");
INSERT INTO `wp_rg_form_view` VALUES("66588", "15", "2017-10-21 04:22:57", "80.241.214.124", "2");
INSERT INTO `wp_rg_form_view` VALUES("66589", "3", "2017-10-21 04:31:29", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66590", "6", "2017-10-21 04:31:30", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66591", "9", "2017-10-21 04:31:31", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66592", "8", "2017-10-21 04:31:31", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66593", "3", "2017-10-21 06:38:49", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("66594", "3", "2017-10-21 08:40:46", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66595", "6", "2017-10-21 08:40:47", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66596", "9", "2017-10-21 08:40:49", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66597", "8", "2017-10-21 08:40:49", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66598", "10", "2017-10-21 08:40:50", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66599", "15", "2017-10-21 08:40:52", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66600", "10", "2017-10-21 09:04:29", "5.188.211.10", "5");
INSERT INTO `wp_rg_form_view` VALUES("66601", "3", "2017-10-21 09:05:44", "5.188.211.10", "6");
INSERT INTO `wp_rg_form_view` VALUES("66602", "8", "2017-10-21 10:12:24", "66.249.66.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("66603", "10", "2017-10-21 10:20:14", "137.74.207.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("66604", "10", "2017-10-21 12:18:26", "61.132.116.202", "9");
INSERT INTO `wp_rg_form_view` VALUES("66605", "3", "2017-10-21 12:30:28", "68.180.230.223", "32");
INSERT INTO `wp_rg_form_view` VALUES("66606", "6", "2017-10-21 12:59:24", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66607", "9", "2017-10-21 12:59:27", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66608", "8", "2017-10-21 12:59:28", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66609", "15", "2017-10-21 12:59:34", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66610", "3", "2017-10-21 13:00:45", "68.180.230.223", "11");
INSERT INTO `wp_rg_form_view` VALUES("66611", "3", "2017-10-21 14:15:08", "51.255.65.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("66612", "3", "2017-10-21 15:27:00", "68.180.230.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("66613", "12", "2017-10-21 16:22:24", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66614", "10", "2017-10-21 16:26:18", "51.255.65.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("66615", "3", "2017-10-21 16:26:40", "75.156.99.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("66616", "3", "2017-10-21 17:03:20", "45.55.242.204", "36");
INSERT INTO `wp_rg_form_view` VALUES("66617", "14", "2017-10-21 17:09:15", "179.208.201.94", "2");
INSERT INTO `wp_rg_form_view` VALUES("66618", "6", "2017-10-21 17:17:07", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66619", "9", "2017-10-21 17:17:10", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66620", "8", "2017-10-21 17:17:11", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66621", "10", "2017-10-21 17:17:13", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66622", "15", "2017-10-21 17:17:17", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66623", "10", "2017-10-21 18:37:28", "217.182.132.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("66624", "3", "2017-10-21 19:07:47", "5.188.211.22", "8");
INSERT INTO `wp_rg_form_view` VALUES("66625", "14", "2017-10-21 20:03:53", "180.76.15.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("66626", "3", "2017-10-21 20:39:32", "50.247.200.57", "6");
INSERT INTO `wp_rg_form_view` VALUES("66627", "10", "2017-10-21 20:56:58", "61.132.116.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("66628", "3", "2017-10-21 21:10:34", "180.76.15.18", "32");
INSERT INTO `wp_rg_form_view` VALUES("66629", "6", "2017-10-21 21:19:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66630", "9", "2017-10-21 21:19:04", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66631", "8", "2017-10-21 21:19:04", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66632", "10", "2017-10-21 21:19:05", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66633", "15", "2017-10-21 21:19:07", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66634", "3", "2017-10-21 22:17:11", "180.76.15.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("66635", "3", "2017-10-21 23:23:51", "180.76.15.146", "2");
INSERT INTO `wp_rg_form_view` VALUES("66636", "10", "2017-10-22 00:34:01", "217.182.132.80", "1");
INSERT INTO `wp_rg_form_view` VALUES("66637", "3", "2017-10-22 01:27:33", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66638", "6", "2017-10-22 01:27:34", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66639", "9", "2017-10-22 01:27:35", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66640", "8", "2017-10-22 01:27:36", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66641", "10", "2017-10-22 01:27:37", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66642", "15", "2017-10-22 01:27:39", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66643", "10", "2017-10-22 02:00:57", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66644", "6", "2017-10-22 02:10:31", "180.76.15.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("66645", "8", "2017-10-22 02:37:30", "51.255.65.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("66646", "3", "2017-10-22 03:01:21", "5.188.211.35", "63");
INSERT INTO `wp_rg_form_view` VALUES("66647", "6", "2017-10-22 03:01:21", "5.188.211.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("66648", "9", "2017-10-22 03:01:22", "5.188.211.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("66649", "8", "2017-10-22 03:01:23", "5.188.211.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("66650", "10", "2017-10-22 03:01:24", "5.188.211.35", "10");
INSERT INTO `wp_rg_form_view` VALUES("66651", "15", "2017-10-22 03:01:26", "5.188.211.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("66652", "3", "2017-10-22 04:23:51", "180.76.15.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("66653", "9", "2017-10-22 04:46:12", "137.74.207.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("66654", "11", "2017-10-22 04:49:34", "164.132.161.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("66655", "3", "2017-10-22 05:34:10", "40.77.167.59", "33");
INSERT INTO `wp_rg_form_view` VALUES("66656", "6", "2017-10-22 05:42:58", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66657", "9", "2017-10-22 05:42:59", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66658", "8", "2017-10-22 05:43:00", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66659", "10", "2017-10-22 05:43:01", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66660", "15", "2017-10-22 05:43:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66661", "3", "2017-10-22 07:38:19", "138.197.64.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("66662", "10", "2017-10-22 07:55:21", "51.255.71.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("66663", "14", "2017-10-22 08:50:34", "180.76.15.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("66664", "3", "2017-10-22 09:23:51", "180.76.15.141", "34");
INSERT INTO `wp_rg_form_view` VALUES("66665", "10", "2017-10-22 09:28:12", "216.244.66.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("66666", "6", "2017-10-22 09:57:18", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66667", "9", "2017-10-22 09:57:19", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66668", "8", "2017-10-22 09:57:20", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66669", "15", "2017-10-22 09:57:23", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66670", "3", "2017-10-22 10:39:31", "217.182.132.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("66671", "14", "2017-10-22 11:07:13", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("66672", "3", "2017-10-22 11:28:32", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("66673", "3", "2017-10-22 12:04:37", "66.249.66.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("66674", "3", "2017-10-22 13:05:00", "5.188.211.22", "4");
INSERT INTO `wp_rg_form_view` VALUES("66675", "3", "2017-10-22 14:02:30", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66676", "6", "2017-10-22 14:02:31", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66677", "9", "2017-10-22 14:02:32", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66678", "8", "2017-10-22 14:02:32", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66679", "10", "2017-10-22 14:02:33", "35.160.137.253", "7");
INSERT INTO `wp_rg_form_view` VALUES("66680", "15", "2017-10-22 14:02:35", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66681", "3", "2017-10-22 15:06:12", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66682", "3", "2017-10-22 16:03:58", "180.76.15.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("66683", "10", "2017-10-22 16:45:47", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66684", "3", "2017-10-22 17:04:13", "5.188.211.22", "3");
INSERT INTO `wp_rg_form_view` VALUES("66685", "3", "2017-10-22 18:12:12", "35.160.137.253", "38");
INSERT INTO `wp_rg_form_view` VALUES("66686", "6", "2017-10-22 18:12:12", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66687", "9", "2017-10-22 18:12:13", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66688", "8", "2017-10-22 18:12:13", "35.160.137.253", "3");
INSERT INTO `wp_rg_form_view` VALUES("66689", "10", "2017-10-22 18:12:14", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66690", "15", "2017-10-22 18:12:16", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66691", "14", "2017-10-22 18:54:33", "185.2.248.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("66692", "3", "2017-10-22 19:09:40", "68.180.230.223", "8");
INSERT INTO `wp_rg_form_view` VALUES("66693", "10", "2017-10-22 19:30:08", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66694", "3", "2017-10-22 20:30:35", "180.76.15.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("66695", "14", "2017-10-22 22:04:45", "98.158.90.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("66696", "3", "2017-10-22 22:09:53", "35.160.137.253", "62");
INSERT INTO `wp_rg_form_view` VALUES("66697", "6", "2017-10-22 22:09:53", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66698", "9", "2017-10-22 22:09:54", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66699", "8", "2017-10-22 22:09:55", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("66700", "10", "2017-10-22 22:09:56", "35.160.137.253", "10");
INSERT INTO `wp_rg_form_view` VALUES("66701", "15", "2017-10-22 22:09:58", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66702", "10", "2017-10-22 23:23:06", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66703", "3", "2017-10-22 23:40:21", "180.76.15.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("66704", "3", "2017-10-23 00:18:49", "164.132.161.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("66705", "10", "2017-10-23 00:51:44", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66706", "3", "2017-10-23 01:17:54", "158.69.251.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("66707", "10", "2017-10-23 01:38:03", "66.249.92.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("66708", "3", "2017-10-23 02:22:13", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66709", "6", "2017-10-23 02:22:14", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66710", "9", "2017-10-23 02:22:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66711", "8", "2017-10-23 02:22:15", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66712", "10", "2017-10-23 02:22:16", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66713", "15", "2017-10-23 02:22:18", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66714", "3", "2017-10-23 03:03:00", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66715", "14", "2017-10-23 03:51:18", "180.76.15.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("66716", "12", "2017-10-23 04:12:13", "66.249.66.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("66717", "10", "2017-10-23 05:11:37", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("66718", "3", "2017-10-23 05:35:24", "70.67.161.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("66719", "3", "2017-10-23 05:35:24", "70.67.161.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("66720", "3", "2017-10-23 06:40:43", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66721", "6", "2017-10-23 06:40:44", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66722", "9", "2017-10-23 06:40:45", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66723", "8", "2017-10-23 06:40:45", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66724", "10", "2017-10-23 06:40:46", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66725", "15", "2017-10-23 06:40:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66726", "10", "2017-10-23 08:38:04", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66727", "11", "2017-10-23 08:50:17", "77.75.78.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("66728", "6", "2017-10-23 09:04:12", "180.76.15.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("66729", "3", "2017-10-23 09:39:37", "75.75.235.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("66730", "3", "2017-10-23 10:10:54", "180.76.15.33", "32");
INSERT INTO `wp_rg_form_view` VALUES("66731", "6", "2017-10-23 10:47:08", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66732", "9", "2017-10-23 10:47:10", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66733", "8", "2017-10-23 10:47:10", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66734", "10", "2017-10-23 10:47:11", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66735", "15", "2017-10-23 10:47:13", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66736", "3", "2017-10-23 11:15:26", "204.79.180.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("66737", "3", "2017-10-23 12:03:33", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66738", "3", "2017-10-23 13:27:42", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66739", "3", "2017-10-23 14:08:13", "217.182.132.32", "3");
INSERT INTO `wp_rg_form_view` VALUES("66740", "5", "2017-10-23 14:12:56", "77.75.77.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("66741", "3", "2017-10-23 15:04:08", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66742", "6", "2017-10-23 15:04:09", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66743", "9", "2017-10-23 15:04:10", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66744", "8", "2017-10-23 15:04:11", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66745", "10", "2017-10-23 15:04:12", "35.160.137.253", "6");
INSERT INTO `wp_rg_form_view` VALUES("66746", "15", "2017-10-23 15:04:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66747", "3", "2017-10-23 16:19:24", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("66748", "3", "2017-10-23 17:33:26", "212.129.59.196", "7");
INSERT INTO `wp_rg_form_view` VALUES("66749", "10", "2017-10-23 17:42:37", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66750", "8", "2017-10-23 18:16:33", "66.102.6.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("66751", "3", "2017-10-23 18:42:10", "144.76.62.20", "7");
INSERT INTO `wp_rg_form_view` VALUES("66752", "10", "2017-10-23 18:42:12", "144.76.62.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("66753", "8", "2017-10-23 19:31:02", "180.76.15.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("66754", "3", "2017-10-23 19:32:49", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66755", "6", "2017-10-23 19:32:50", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66756", "9", "2017-10-23 19:32:51", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66757", "10", "2017-10-23 19:32:52", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66758", "15", "2017-10-23 19:32:54", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66759", "3", "2017-10-23 20:07:40", "180.76.15.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("66760", "3", "2017-10-23 21:03:09", "202.155.200.74", "6");
INSERT INTO `wp_rg_form_view` VALUES("66761", "8", "2017-10-23 21:53:25", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("66762", "14", "2017-10-23 22:16:31", "207.46.13.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("66763", "10", "2017-10-23 23:22:40", "207.46.13.181", "13");
INSERT INTO `wp_rg_form_view` VALUES("66764", "3", "2017-10-23 23:39:15", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66765", "6", "2017-10-23 23:39:15", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66766", "9", "2017-10-23 23:39:17", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66767", "8", "2017-10-23 23:39:18", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66768", "15", "2017-10-23 23:39:21", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66769", "14", "2017-10-24 00:13:38", "23.94.229.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("66770", "3", "2017-10-24 00:21:35", "180.76.15.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("66771", "10", "2017-10-24 00:54:58", "180.76.15.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("66772", "3", "2017-10-24 01:43:15", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66773", "3", "2017-10-24 02:01:39", "180.76.15.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("66774", "10", "2017-10-24 02:24:08", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66775", "3", "2017-10-24 03:09:00", "207.46.13.177", "32");
INSERT INTO `wp_rg_form_view` VALUES("66776", "14", "2017-10-24 03:38:26", "96.54.236.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("66777", "6", "2017-10-24 03:55:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66778", "9", "2017-10-24 03:55:49", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66779", "8", "2017-10-24 03:55:50", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66780", "10", "2017-10-24 03:55:50", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66781", "15", "2017-10-24 03:55:53", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66782", "3", "2017-10-24 04:26:43", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66783", "8", "2017-10-24 05:00:13", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("66784", "10", "2017-10-24 06:16:42", "66.249.92.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("66785", "14", "2017-10-24 06:36:40", "207.46.13.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("66786", "3", "2017-10-24 07:34:16", "24.68.176.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("66787", "3", "2017-10-24 08:15:44", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66788", "6", "2017-10-24 08:15:45", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66789", "9", "2017-10-24 08:15:46", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66790", "8", "2017-10-24 08:15:46", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66791", "10", "2017-10-24 08:15:47", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66792", "15", "2017-10-24 08:15:49", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66793", "10", "2017-10-24 09:42:50", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66794", "3", "2017-10-24 10:22:25", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("66795", "3", "2017-10-24 11:41:24", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("66796", "3", "2017-10-24 12:24:26", "109.102.111.66", "39");
INSERT INTO `wp_rg_form_view` VALUES("66797", "6", "2017-10-24 12:40:47", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66798", "9", "2017-10-24 12:40:48", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66799", "8", "2017-10-24 12:40:49", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66800", "10", "2017-10-24 12:40:49", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66801", "15", "2017-10-24 12:40:52", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66802", "3", "2017-10-24 13:03:23", "180.76.15.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("66803", "3", "2017-10-24 17:01:33", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66804", "6", "2017-10-24 17:01:34", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66805", "9", "2017-10-24 17:01:35", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66806", "8", "2017-10-24 17:01:36", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66807", "10", "2017-10-24 17:01:37", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66808", "15", "2017-10-24 17:01:41", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66809", "3", "2017-10-24 18:22:24", "66.249.66.71", "4");
INSERT INTO `wp_rg_form_view` VALUES("66810", "3", "2017-10-24 19:42:40", "23.16.66.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("66811", "14", "2017-10-24 19:46:44", "184.66.236.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("66812", "3", "2017-10-24 21:21:41", "54.165.59.7", "31");
INSERT INTO `wp_rg_form_view` VALUES("66813", "6", "2017-10-24 21:23:56", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66814", "9", "2017-10-24 21:23:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66815", "8", "2017-10-24 21:23:57", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66816", "10", "2017-10-24 21:23:58", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66817", "15", "2017-10-24 21:24:00", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66818", "8", "2017-10-24 22:23:34", "66.102.6.207", "1");
INSERT INTO `wp_rg_form_view` VALUES("66819", "3", "2017-10-24 23:15:42", "204.228.248.200", "31");
INSERT INTO `wp_rg_form_view` VALUES("66820", "10", "2017-10-24 23:29:55", "46.229.168.70", "12");
INSERT INTO `wp_rg_form_view` VALUES("66821", "14", "2017-10-24 23:30:09", "46.229.168.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("66822", "9", "2017-10-24 23:30:31", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("66823", "8", "2017-10-24 23:39:20", "46.229.168.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("66824", "11", "2017-10-24 23:43:54", "46.229.168.71", "3");
INSERT INTO `wp_rg_form_view` VALUES("66825", "6", "2017-10-24 23:45:23", "46.229.168.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("66826", "14", "2017-10-25 00:06:09", "117.3.69.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("66827", "3", "2017-10-25 00:08:43", "117.3.69.163", "7");
INSERT INTO `wp_rg_form_view` VALUES("66828", "3", "2017-10-25 01:51:59", "35.160.137.253", "30");
INSERT INTO `wp_rg_form_view` VALUES("66829", "6", "2017-10-25 01:52:00", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66830", "9", "2017-10-25 01:52:01", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66831", "8", "2017-10-25 01:52:01", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66832", "10", "2017-10-25 01:52:02", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66833", "15", "2017-10-25 01:52:04", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66834", "6", "2017-10-25 04:39:20", "180.76.15.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("66835", "3", "2017-10-25 05:12:37", "180.76.15.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("66836", "12", "2017-10-25 05:45:59", "180.76.15.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66837", "3", "2017-10-25 06:28:50", "35.160.137.253", "32");
INSERT INTO `wp_rg_form_view` VALUES("66838", "6", "2017-10-25 06:28:50", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66839", "9", "2017-10-25 06:28:51", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66840", "8", "2017-10-25 06:28:51", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66841", "10", "2017-10-25 06:28:52", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66842", "15", "2017-10-25 06:28:54", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66843", "3", "2017-10-25 07:25:59", "180.76.15.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("66844", "10", "2017-10-25 07:33:43", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("66845", "14", "2017-10-25 10:11:08", "195.154.252.120", "3");
INSERT INTO `wp_rg_form_view` VALUES("66846", "3", "2017-10-25 10:11:43", "107.172.44.254", "35");
INSERT INTO `wp_rg_form_view` VALUES("66847", "10", "2017-10-25 10:35:30", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("66848", "6", "2017-10-25 10:57:27", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66849", "9", "2017-10-25 10:57:28", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66850", "8", "2017-10-25 10:57:28", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66851", "15", "2017-10-25 10:57:31", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66852", "3", "2017-10-25 11:45:20", "164.132.161.27", "3");
INSERT INTO `wp_rg_form_view` VALUES("66853", "3", "2017-10-25 12:00:04", "184.66.49.63", "3");
INSERT INTO `wp_rg_form_view` VALUES("66854", "10", "2017-10-25 12:00:13", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66855", "3", "2017-10-25 13:11:25", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("66856", "10", "2017-10-25 14:06:07", "180.76.15.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("66857", "3", "2017-10-25 14:40:05", "35.184.189.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("66858", "14", "2017-10-25 14:52:23", "96.54.56.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("66859", "3", "2017-10-25 15:18:55", "35.160.137.253", "31");
INSERT INTO `wp_rg_form_view` VALUES("66860", "6", "2017-10-25 15:18:55", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66861", "9", "2017-10-25 15:18:57", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66862", "8", "2017-10-25 15:18:58", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66863", "10", "2017-10-25 15:18:59", "35.160.137.253", "5");
INSERT INTO `wp_rg_form_view` VALUES("66864", "15", "2017-10-25 15:19:03", "35.160.137.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("66865", "10", "2017-10-25 16:27:07", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66866", "3", "2017-10-25 16:33:37", "184.71.2.222", "3");
INSERT INTO `wp_rg_form_view` VALUES("66867", "6", "2017-10-25 16:52:40", "180.76.15.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("66868", "14", "2017-10-25 17:26:48", "24.114.22.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("66869", "3", "2017-10-25 17:59:23", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("66870", "3", "2017-10-25 18:09:22", "37.17.172.122", "12");
INSERT INTO `wp_rg_form_view` VALUES("66871", "8", "2017-10-25 18:18:15", "37.17.172.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("66872", "10", "2017-10-25 18:28:07", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66873", "14", "2017-10-25 18:28:36", "37.17.172.122", "3");
INSERT INTO `wp_rg_form_view` VALUES("66874", "3", "2017-10-25 19:06:01", "180.76.15.23", "62");
INSERT INTO `wp_rg_form_view` VALUES("66875", "6", "2017-10-25 19:45:02", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66876", "9", "2017-10-25 19:45:03", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66877", "8", "2017-10-25 19:45:04", "35.160.137.253", "4");
INSERT INTO `wp_rg_form_view` VALUES("66878", "10", "2017-10-25 19:45:05", "35.160.137.253", "10");
INSERT INTO `wp_rg_form_view` VALUES("66879", "15", "2017-10-25 19:45:08", "35.160.137.253", "2");
INSERT INTO `wp_rg_form_view` VALUES("66880", "3", "2017-10-25 20:12:38", "180.76.15.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("66881", "10", "2017-10-25 20:16:29", "72.14.199.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("66882", "14", "2017-10-25 20:36:01", "184.66.236.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("66883", "3", "2017-10-25 21:43:40", "74.208.41.83", "6");
INSERT INTO `wp_rg_form_view` VALUES("66884", "10", "2017-10-25 22:39:40", "207.46.13.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("66885", "3", "2017-10-25 22:55:54", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66886", "3", "2017-10-25 23:27:35", "52.42.57.189", "30");
INSERT INTO `wp_rg_form_view` VALUES("66887", "6", "2017-10-25 23:27:35", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66888", "9", "2017-10-25 23:27:36", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66889", "8", "2017-10-25 23:27:37", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("66890", "10", "2017-10-25 23:27:38", "52.42.57.189", "8");
INSERT INTO `wp_rg_form_view` VALUES("66891", "15", "2017-10-25 23:27:40", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66892", "14", "2017-10-25 23:41:42", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66893", "3", "2017-10-26 00:08:18", "178.63.1.153", "6");
INSERT INTO `wp_rg_form_view` VALUES("66894", "8", "2017-10-26 00:09:45", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("66895", "14", "2017-10-26 00:12:02", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("66896", "3", "2017-10-26 01:03:22", "142.0.201.156", "63");
INSERT INTO `wp_rg_form_view` VALUES("66897", "8", "2017-10-26 01:03:42", "142.0.201.156", "5");
INSERT INTO `wp_rg_form_view` VALUES("66898", "6", "2017-10-26 01:29:57", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("66899", "9", "2017-10-26 01:30:00", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("66900", "10", "2017-10-26 01:30:01", "52.42.57.189", "11");
INSERT INTO `wp_rg_form_view` VALUES("66901", "15", "2017-10-26 01:30:04", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("66902", "14", "2017-10-26 01:55:54", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66903", "15", "2017-10-26 02:51:00", "157.55.39.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("66904", "3", "2017-10-26 03:35:52", "142.0.201.156", "39");
INSERT INTO `wp_rg_form_view` VALUES("66905", "8", "2017-10-26 03:36:27", "142.0.201.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("66906", "6", "2017-10-26 03:36:40", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66907", "9", "2017-10-26 03:36:43", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66908", "10", "2017-10-26 03:36:48", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("66909", "15", "2017-10-26 03:36:55", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66910", "10", "2017-10-26 04:43:16", "51.255.65.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("66911", "3", "2017-10-26 05:12:32", "144.76.8.132", "31");
INSERT INTO `wp_rg_form_view` VALUES("66912", "6", "2017-10-26 05:12:56", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66913", "9", "2017-10-26 05:12:57", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66914", "8", "2017-10-26 05:12:57", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("66915", "10", "2017-10-26 05:12:58", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("66916", "15", "2017-10-26 05:13:00", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66917", "3", "2017-10-26 06:13:54", "142.0.201.156", "61");
INSERT INTO `wp_rg_form_view` VALUES("66918", "6", "2017-10-26 06:13:55", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("66919", "9", "2017-10-26 06:13:56", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("66920", "8", "2017-10-26 06:13:56", "142.0.201.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("66921", "10", "2017-10-26 06:13:57", "142.0.201.156", "11");
INSERT INTO `wp_rg_form_view` VALUES("66922", "15", "2017-10-26 06:13:59", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("66923", "3", "2017-10-26 07:32:55", "180.76.15.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("66924", "3", "2017-10-26 08:14:27", "52.42.57.189", "30");
INSERT INTO `wp_rg_form_view` VALUES("66925", "6", "2017-10-26 08:14:28", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66926", "9", "2017-10-26 08:14:29", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66927", "8", "2017-10-26 08:14:30", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("66928", "10", "2017-10-26 08:14:30", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("66929", "15", "2017-10-26 08:14:33", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66930", "14", "2017-10-26 09:09:57", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("66931", "3", "2017-10-26 09:27:03", "142.0.201.156", "51");
INSERT INTO `wp_rg_form_view` VALUES("66932", "8", "2017-10-26 09:27:04", "142.0.201.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("66933", "10", "2017-10-26 09:29:41", "142.0.201.156", "7");
INSERT INTO `wp_rg_form_view` VALUES("66934", "15", "2017-10-26 09:30:11", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("66935", "6", "2017-10-26 09:30:38", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("66936", "9", "2017-10-26 09:40:48", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66937", "14", "2017-10-26 10:35:48", "160.202.32.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("66938", "3", "2017-10-26 10:57:49", "155.133.82.166", "5");
INSERT INTO `wp_rg_form_view` VALUES("66939", "3", "2017-10-26 11:01:37", "155.133.82.166", "156");
INSERT INTO `wp_rg_form_view` VALUES("66940", "6", "2017-10-26 11:30:29", "52.42.57.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("66941", "9", "2017-10-26 11:30:30", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("66942", "8", "2017-10-26 11:30:31", "52.42.57.189", "8");
INSERT INTO `wp_rg_form_view` VALUES("66943", "10", "2017-10-26 11:30:31", "52.42.57.189", "37");
INSERT INTO `wp_rg_form_view` VALUES("66944", "15", "2017-10-26 11:30:34", "52.42.57.189", "8");
INSERT INTO `wp_rg_form_view` VALUES("66945", "10", "2017-10-26 12:00:23", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("66946", "3", "2017-10-26 12:49:40", "164.132.161.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("66947", "3", "2017-10-26 13:15:41", "52.42.57.189", "30");
INSERT INTO `wp_rg_form_view` VALUES("66948", "6", "2017-10-26 13:15:41", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("66949", "9", "2017-10-26 13:15:42", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("66950", "8", "2017-10-26 13:15:43", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("66951", "10", "2017-10-26 13:15:44", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("66952", "15", "2017-10-26 13:15:46", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66953", "5", "2017-10-26 13:38:18", "180.76.15.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("66954", "3", "2017-10-26 14:02:20", "142.0.201.156", "161");
INSERT INTO `wp_rg_form_view` VALUES("66955", "10", "2017-10-26 14:02:21", "142.0.201.156", "47");
INSERT INTO `wp_rg_form_view` VALUES("66956", "15", "2017-10-26 14:02:23", "142.0.201.156", "11");
INSERT INTO `wp_rg_form_view` VALUES("66957", "8", "2017-10-26 14:14:43", "142.0.201.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("66958", "6", "2017-10-26 14:27:45", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("66959", "9", "2017-10-26 14:27:45", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("66960", "6", "2017-10-26 15:39:16", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66961", "3", "2017-10-26 15:39:17", "142.0.201.156", "91");
INSERT INTO `wp_rg_form_view` VALUES("66962", "9", "2017-10-26 15:39:17", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66963", "8", "2017-10-26 15:39:18", "142.0.201.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("66964", "10", "2017-10-26 15:42:31", "142.0.201.156", "21");
INSERT INTO `wp_rg_form_view` VALUES("66965", "15", "2017-10-26 15:42:33", "142.0.201.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("66966", "3", "2017-10-26 16:06:23", "142.0.201.156", "46");
INSERT INTO `wp_rg_form_view` VALUES("66967", "8", "2017-10-26 16:06:23", "142.0.201.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("66968", "10", "2017-10-26 16:27:21", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("66969", "6", "2017-10-26 16:48:42", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66970", "9", "2017-10-26 16:48:43", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66971", "15", "2017-10-26 16:48:46", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66972", "8", "2017-10-26 17:07:40", "64.233.172.181", "8");
INSERT INTO `wp_rg_form_view` VALUES("66973", "3", "2017-10-26 17:29:37", "64.114.199.97", "98");
INSERT INTO `wp_rg_form_view` VALUES("66974", "6", "2017-10-26 17:31:21", "142.0.201.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("66975", "9", "2017-10-26 17:31:22", "142.0.201.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("66976", "10", "2017-10-26 17:31:24", "142.0.201.156", "34");
INSERT INTO `wp_rg_form_view` VALUES("66977", "15", "2017-10-26 17:31:29", "142.0.201.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("66978", "3", "2017-10-26 18:08:25", "142.0.201.156", "16");
INSERT INTO `wp_rg_form_view` VALUES("66979", "15", "2017-10-26 18:08:26", "142.0.201.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("66980", "10", "2017-10-26 18:28:04", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("66981", "8", "2017-10-26 18:30:29", "205.233.121.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("66982", "3", "2017-10-26 19:19:46", "52.42.57.189", "116");
INSERT INTO `wp_rg_form_view` VALUES("66983", "6", "2017-10-26 19:19:47", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("66984", "9", "2017-10-26 19:19:48", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("66985", "8", "2017-10-26 19:19:48", "52.42.57.189", "9");
INSERT INTO `wp_rg_form_view` VALUES("66986", "10", "2017-10-26 19:19:49", "52.42.57.189", "26");
INSERT INTO `wp_rg_form_view` VALUES("66987", "15", "2017-10-26 19:19:51", "52.42.57.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("66988", "3", "2017-10-26 20:01:46", "142.0.201.156", "67");
INSERT INTO `wp_rg_form_view` VALUES("66989", "8", "2017-10-26 20:01:47", "142.0.201.156", "8");
INSERT INTO `wp_rg_form_view` VALUES("66990", "10", "2017-10-26 20:02:35", "142.0.201.156", "15");
INSERT INTO `wp_rg_form_view` VALUES("66991", "15", "2017-10-26 20:07:11", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66992", "6", "2017-10-26 20:08:35", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66993", "9", "2017-10-26 20:08:36", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("66994", "3", "2017-10-26 21:41:14", "52.42.57.189", "31");
INSERT INTO `wp_rg_form_view` VALUES("66995", "6", "2017-10-26 21:41:15", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66996", "9", "2017-10-26 21:41:16", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("66997", "8", "2017-10-26 21:41:16", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("66998", "10", "2017-10-26 21:41:17", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("66999", "15", "2017-10-26 21:41:20", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67000", "3", "2017-10-26 22:52:50", "15.211.201.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("67001", "3", "2017-10-26 23:32:07", "52.42.57.189", "30");
INSERT INTO `wp_rg_form_view` VALUES("67002", "6", "2017-10-26 23:32:07", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67003", "9", "2017-10-26 23:32:09", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67004", "8", "2017-10-26 23:32:09", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67005", "10", "2017-10-26 23:32:10", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("67006", "15", "2017-10-26 23:32:12", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67007", "10", "2017-10-27 00:52:06", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("67008", "3", "2017-10-27 00:54:18", "74.208.200.94", "6");
INSERT INTO `wp_rg_form_view` VALUES("67009", "3", "2017-10-27 01:18:54", "52.42.57.189", "30");
INSERT INTO `wp_rg_form_view` VALUES("67010", "6", "2017-10-27 01:18:54", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67011", "9", "2017-10-27 01:18:55", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67012", "8", "2017-10-27 01:18:56", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67013", "10", "2017-10-27 01:18:57", "52.42.57.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("67014", "15", "2017-10-27 01:18:59", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67015", "3", "2017-10-27 02:00:36", "142.0.201.156", "158");
INSERT INTO `wp_rg_form_view` VALUES("67016", "8", "2017-10-27 02:00:36", "142.0.201.156", "11");
INSERT INTO `wp_rg_form_view` VALUES("67017", "10", "2017-10-27 02:00:37", "142.0.201.156", "49");
INSERT INTO `wp_rg_form_view` VALUES("67018", "15", "2017-10-27 02:00:44", "142.0.201.156", "7");
INSERT INTO `wp_rg_form_view` VALUES("67019", "6", "2017-10-27 02:26:04", "142.0.201.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("67020", "9", "2017-10-27 02:26:05", "142.0.201.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("67021", "3", "2017-10-27 03:12:17", "185.43.45.204", "6");
INSERT INTO `wp_rg_form_view` VALUES("67022", "10", "2017-10-27 03:32:31", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("67023", "3", "2017-10-27 04:27:56", "52.42.57.189", "30");
INSERT INTO `wp_rg_form_view` VALUES("67024", "6", "2017-10-27 04:27:56", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67025", "9", "2017-10-27 04:27:57", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67026", "8", "2017-10-27 04:27:58", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67027", "10", "2017-10-27 04:27:58", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("67028", "15", "2017-10-27 04:28:01", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67029", "14", "2017-10-27 05:01:06", "77.75.78.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("67030", "3", "2017-10-27 05:22:01", "142.0.201.156", "48");
INSERT INTO `wp_rg_form_view` VALUES("67031", "8", "2017-10-27 05:22:52", "142.0.201.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("67032", "15", "2017-10-27 05:33:41", "142.0.201.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("67033", "10", "2017-10-27 05:34:19", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67034", "3", "2017-10-27 06:07:36", "52.42.57.189", "125");
INSERT INTO `wp_rg_form_view` VALUES("67035", "6", "2017-10-27 06:07:37", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("67036", "9", "2017-10-27 06:07:41", "52.42.57.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("67037", "8", "2017-10-27 06:07:42", "52.42.57.189", "9");
INSERT INTO `wp_rg_form_view` VALUES("67038", "10", "2017-10-27 06:07:45", "52.42.57.189", "35");
INSERT INTO `wp_rg_form_view` VALUES("67039", "15", "2017-10-27 06:07:51", "52.42.57.189", "7");
INSERT INTO `wp_rg_form_view` VALUES("67040", "3", "2017-10-27 07:24:23", "24.68.145.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("67041", "3", "2017-10-27 08:06:28", "52.42.57.189", "42");
INSERT INTO `wp_rg_form_view` VALUES("67042", "6", "2017-10-27 08:06:29", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67043", "9", "2017-10-27 08:06:32", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67044", "8", "2017-10-27 08:06:34", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("67045", "10", "2017-10-27 08:06:36", "52.42.57.189", "7");
INSERT INTO `wp_rg_form_view` VALUES("67046", "15", "2017-10-27 08:06:43", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67047", "3", "2017-10-27 09:23:37", "142.0.201.156", "44");
INSERT INTO `wp_rg_form_view` VALUES("67048", "6", "2017-10-27 09:25:52", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("67049", "9", "2017-10-27 09:25:53", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("67050", "10", "2017-10-27 09:25:53", "142.0.201.156", "10");
INSERT INTO `wp_rg_form_view` VALUES("67051", "15", "2017-10-27 09:25:55", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("67052", "8", "2017-10-27 09:51:36", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67053", "14", "2017-10-27 10:03:56", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("67054", "10", "2017-10-27 10:39:32", "142.0.201.156", "5");
INSERT INTO `wp_rg_form_view` VALUES("67055", "3", "2017-10-27 10:39:45", "142.0.201.156", "13");
INSERT INTO `wp_rg_form_view` VALUES("67056", "6", "2017-10-27 10:39:45", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67057", "9", "2017-10-27 10:39:46", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67058", "8", "2017-10-27 10:39:46", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67059", "15", "2017-10-27 10:39:48", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67060", "6", "2017-10-27 11:08:34", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("67061", "3", "2017-10-27 11:08:35", "142.0.201.156", "67");
INSERT INTO `wp_rg_form_view` VALUES("67062", "9", "2017-10-27 11:08:35", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("67063", "10", "2017-10-27 11:08:35", "142.0.201.156", "25");
INSERT INTO `wp_rg_form_view` VALUES("67064", "8", "2017-10-27 11:19:08", "142.0.201.156", "4");
INSERT INTO `wp_rg_form_view` VALUES("67065", "15", "2017-10-27 11:19:10", "142.0.201.156", "2");
INSERT INTO `wp_rg_form_view` VALUES("67066", "14", "2017-10-27 11:25:06", "104.168.7.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("67067", "3", "2017-10-27 12:00:14", "142.0.201.156", "31");
INSERT INTO `wp_rg_form_view` VALUES("67068", "6", "2017-10-27 12:08:46", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67069", "9", "2017-10-27 12:08:47", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67070", "8", "2017-10-27 12:08:48", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67071", "10", "2017-10-27 12:08:48", "142.0.201.156", "5");
INSERT INTO `wp_rg_form_view` VALUES("67072", "15", "2017-10-27 12:08:52", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67073", "3", "2017-10-27 13:13:49", "142.0.201.156", "69");
INSERT INTO `wp_rg_form_view` VALUES("67074", "6", "2017-10-27 13:20:02", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("67075", "9", "2017-10-27 13:20:04", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("67076", "8", "2017-10-27 13:20:06", "52.42.57.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("67077", "10", "2017-10-27 13:20:07", "52.42.57.189", "15");
INSERT INTO `wp_rg_form_view` VALUES("67078", "15", "2017-10-27 13:20:13", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67079", "3", "2017-10-27 14:02:46", "142.0.201.156", "29");
INSERT INTO `wp_rg_form_view` VALUES("67080", "10", "2017-10-27 14:12:23", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("67081", "8", "2017-10-27 14:24:11", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67082", "15", "2017-10-27 14:24:16", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67083", "3", "2017-10-27 15:00:01", "142.0.201.156", "71");
INSERT INTO `wp_rg_form_view` VALUES("67084", "6", "2017-10-27 15:24:45", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67085", "9", "2017-10-27 15:24:48", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67086", "8", "2017-10-27 15:24:50", "52.42.57.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("67087", "10", "2017-10-27 15:24:51", "52.42.57.189", "10");
INSERT INTO `wp_rg_form_view` VALUES("67088", "15", "2017-10-27 15:24:56", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67089", "3", "2017-10-27 16:11:00", "142.0.201.156", "11");
INSERT INTO `wp_rg_form_view` VALUES("67090", "6", "2017-10-27 16:40:58", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67091", "9", "2017-10-27 16:40:59", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67092", "10", "2017-10-27 16:41:00", "142.0.201.156", "6");
INSERT INTO `wp_rg_form_view` VALUES("67093", "15", "2017-10-27 16:41:01", "142.0.201.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("67094", "3", "2017-10-27 17:10:51", "52.42.57.189", "41");
INSERT INTO `wp_rg_form_view` VALUES("67095", "6", "2017-10-27 17:10:51", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67096", "9", "2017-10-27 17:10:54", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67097", "8", "2017-10-27 17:10:55", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67098", "10", "2017-10-27 17:10:56", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("67099", "15", "2017-10-27 17:11:03", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67100", "3", "2017-10-27 18:10:48", "142.0.201.156", "70");
INSERT INTO `wp_rg_form_view` VALUES("67101", "8", "2017-10-27 18:19:21", "64.233.172.179", "5");
INSERT INTO `wp_rg_form_view` VALUES("67102", "6", "2017-10-27 18:50:12", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67103", "9", "2017-10-27 18:50:16", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67104", "10", "2017-10-27 18:50:19", "52.42.57.189", "10");
INSERT INTO `wp_rg_form_view` VALUES("67105", "15", "2017-10-27 18:50:25", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67106", "3", "2017-10-27 19:06:57", "24.68.121.190", "18");
INSERT INTO `wp_rg_form_view` VALUES("67107", "3", "2017-10-27 20:20:53", "142.0.201.156", "33");
INSERT INTO `wp_rg_form_view` VALUES("67108", "6", "2017-10-27 20:46:14", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67109", "9", "2017-10-27 20:46:17", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67110", "8", "2017-10-27 20:46:19", "52.42.57.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("67111", "10", "2017-10-27 20:46:21", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("67112", "15", "2017-10-27 20:46:25", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67113", "3", "2017-10-27 21:19:18", "142.0.201.156", "14");
INSERT INTO `wp_rg_form_view` VALUES("67114", "14", "2017-10-27 21:51:30", "96.50.19.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("67115", "14", "2017-10-27 22:46:14", "24.108.164.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("67116", "3", "2017-10-27 22:50:06", "52.42.57.189", "31");
INSERT INTO `wp_rg_form_view` VALUES("67117", "6", "2017-10-27 22:50:06", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67118", "9", "2017-10-27 22:50:11", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67119", "8", "2017-10-27 22:50:13", "52.42.57.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("67120", "10", "2017-10-27 22:50:16", "52.42.57.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("67121", "15", "2017-10-27 22:50:26", "52.42.57.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("67122", "3", "2017-10-27 23:04:22", "142.0.201.156", "12");
INSERT INTO `wp_rg_form_view` VALUES("67123", "10", "2017-10-27 23:16:59", "207.46.13.54", "3");
INSERT INTO `wp_rg_form_view` VALUES("67124", "3", "2017-10-28 00:08:05", "40.77.167.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("67125", "3", "2017-10-28 01:10:07", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("67126", "6", "2017-10-28 01:10:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67127", "9", "2017-10-28 01:10:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67128", "8", "2017-10-28 01:10:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67129", "10", "2017-10-28 01:10:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67130", "15", "2017-10-28 01:10:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67131", "12", "2017-10-28 02:46:59", "180.76.15.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("67132", "10", "2017-10-28 03:15:11", "203.93.105.34", "6");
INSERT INTO `wp_rg_form_view` VALUES("67133", "3", "2017-10-28 03:16:50", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67134", "6", "2017-10-28 03:16:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67135", "9", "2017-10-28 03:16:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67136", "8", "2017-10-28 03:16:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67137", "15", "2017-10-28 03:17:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67138", "14", "2017-10-28 03:55:30", "96.54.158.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("67139", "10", "2017-10-28 04:43:19", "106.91.56.130", "12");
INSERT INTO `wp_rg_form_view` VALUES("67140", "3", "2017-10-28 04:55:05", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("67141", "6", "2017-10-28 04:55:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67142", "9", "2017-10-28 04:55:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67143", "8", "2017-10-28 04:55:06", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67144", "15", "2017-10-28 04:55:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67145", "3", "2017-10-28 05:02:17", "180.76.15.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("67146", "3", "2017-10-28 06:46:40", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67147", "6", "2017-10-28 06:46:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67148", "9", "2017-10-28 06:46:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67149", "8", "2017-10-28 06:46:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67150", "10", "2017-10-28 06:46:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67151", "15", "2017-10-28 06:46:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67152", "8", "2017-10-28 08:12:25", "157.55.39.196", "3");
INSERT INTO `wp_rg_form_view` VALUES("67153", "3", "2017-10-28 08:46:44", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67154", "6", "2017-10-28 08:46:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67155", "9", "2017-10-28 08:46:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67156", "10", "2017-10-28 08:46:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67157", "15", "2017-10-28 08:46:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67158", "6", "2017-10-28 09:03:11", "180.76.15.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("67159", "3", "2017-10-28 10:33:17", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67160", "6", "2017-10-28 10:33:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67161", "9", "2017-10-28 10:33:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67162", "8", "2017-10-28 10:33:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67163", "10", "2017-10-28 10:33:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67164", "15", "2017-10-28 10:33:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67165", "3", "2017-10-28 11:32:36", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("67166", "3", "2017-10-28 12:27:22", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("67167", "6", "2017-10-28 12:27:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67168", "9", "2017-10-28 12:27:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67169", "8", "2017-10-28 12:27:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67170", "10", "2017-10-28 12:27:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67171", "15", "2017-10-28 12:27:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67172", "3", "2017-10-28 14:14:11", "66.249.79.133", "33");
INSERT INTO `wp_rg_form_view` VALUES("67173", "6", "2017-10-28 14:17:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67174", "9", "2017-10-28 14:17:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67175", "8", "2017-10-28 14:17:41", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("67176", "10", "2017-10-28 14:17:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67177", "15", "2017-10-28 14:17:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67178", "3", "2017-10-28 15:09:23", "180.76.15.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("67179", "10", "2017-10-28 15:28:59", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("67180", "3", "2017-10-28 16:19:38", "24.108.0.171", "33");
INSERT INTO `wp_rg_form_view` VALUES("67181", "6", "2017-10-28 16:32:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67182", "9", "2017-10-28 16:32:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67183", "8", "2017-10-28 16:32:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67184", "10", "2017-10-28 16:32:04", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67185", "15", "2017-10-28 16:32:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67186", "14", "2017-10-28 17:18:13", "117.4.136.11", "3");
INSERT INTO `wp_rg_form_view` VALUES("67187", "10", "2017-10-28 18:12:40", "180.76.15.135", "6");
INSERT INTO `wp_rg_form_view` VALUES("67188", "3", "2017-10-28 18:16:19", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67189", "6", "2017-10-28 18:16:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67190", "9", "2017-10-28 18:16:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67191", "8", "2017-10-28 18:16:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67192", "15", "2017-10-28 18:16:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67193", "3", "2017-10-28 20:00:02", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("67194", "6", "2017-10-28 20:00:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67195", "9", "2017-10-28 20:00:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67196", "8", "2017-10-28 20:00:05", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67197", "10", "2017-10-28 20:00:05", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67198", "15", "2017-10-28 20:00:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67199", "3", "2017-10-28 21:54:53", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("67200", "6", "2017-10-28 21:54:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67201", "9", "2017-10-28 21:54:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67202", "8", "2017-10-28 21:54:55", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67203", "10", "2017-10-28 21:54:55", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67204", "15", "2017-10-28 21:54:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67205", "10", "2017-10-28 23:37:38", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("67206", "3", "2017-10-28 23:41:56", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67207", "6", "2017-10-28 23:41:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67208", "9", "2017-10-28 23:41:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67209", "8", "2017-10-28 23:41:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67210", "15", "2017-10-28 23:42:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67211", "3", "2017-10-29 01:27:10", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67212", "6", "2017-10-29 01:27:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67213", "9", "2017-10-29 01:27:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67214", "8", "2017-10-29 01:27:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67215", "10", "2017-10-29 01:27:12", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67216", "15", "2017-10-29 01:27:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67217", "3", "2017-10-29 02:00:22", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("67218", "3", "2017-10-29 03:11:09", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67219", "6", "2017-10-29 03:11:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67220", "9", "2017-10-29 03:11:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67221", "8", "2017-10-29 03:11:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67222", "10", "2017-10-29 03:11:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67223", "15", "2017-10-29 03:11:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67224", "10", "2017-10-29 04:44:04", "199.59.150.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("67225", "3", "2017-10-29 04:46:58", "96.50.28.252", "33");
INSERT INTO `wp_rg_form_view` VALUES("67226", "6", "2017-10-29 04:56:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67227", "9", "2017-10-29 04:56:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67228", "8", "2017-10-29 04:56:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67229", "15", "2017-10-29 04:56:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67230", "10", "2017-10-29 05:34:27", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("67231", "3", "2017-10-29 05:38:36", "40.77.167.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("67232", "3", "2017-10-29 06:46:06", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("67233", "6", "2017-10-29 06:46:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67234", "9", "2017-10-29 06:46:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67235", "8", "2017-10-29 06:46:08", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67236", "10", "2017-10-29 06:46:09", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67237", "15", "2017-10-29 06:46:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67238", "3", "2017-10-29 07:38:34", "207.46.13.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("67239", "3", "2017-10-29 08:12:20", "180.76.15.159", "31");
INSERT INTO `wp_rg_form_view` VALUES("67240", "6", "2017-10-29 08:19:19", "157.55.39.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("67241", "9", "2017-10-29 08:41:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67242", "8", "2017-10-29 08:41:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67243", "10", "2017-10-29 08:41:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67244", "15", "2017-10-29 08:41:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67245", "3", "2017-10-29 09:49:49", "47.195.251.227", "1");
INSERT INTO `wp_rg_form_view` VALUES("67246", "3", "2017-10-29 10:07:18", "51.255.71.125", "32");
INSERT INTO `wp_rg_form_view` VALUES("67247", "6", "2017-10-29 10:36:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67248", "9", "2017-10-29 10:36:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67249", "8", "2017-10-29 10:36:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67250", "10", "2017-10-29 10:36:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67251", "15", "2017-10-29 10:36:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67252", "14", "2017-10-29 10:45:43", "125.141.200.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("67253", "3", "2017-10-29 11:43:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("67254", "3", "2017-10-29 12:26:16", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67255", "6", "2017-10-29 12:26:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67256", "9", "2017-10-29 12:26:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67257", "8", "2017-10-29 12:26:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67258", "10", "2017-10-29 12:26:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67259", "15", "2017-10-29 12:26:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67260", "10", "2017-10-29 13:07:01", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("67261", "3", "2017-10-29 13:15:10", "157.55.39.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("67262", "3", "2017-10-29 14:19:57", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("67263", "6", "2017-10-29 14:19:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67264", "9", "2017-10-29 14:19:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67265", "8", "2017-10-29 14:19:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67266", "10", "2017-10-29 14:20:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67267", "15", "2017-10-29 14:20:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67268", "3", "2017-10-29 16:06:57", "207.46.13.177", "31");
INSERT INTO `wp_rg_form_view` VALUES("67269", "6", "2017-10-29 16:13:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67270", "9", "2017-10-29 16:13:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67271", "8", "2017-10-29 16:13:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67272", "10", "2017-10-29 16:13:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67273", "15", "2017-10-29 16:13:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67274", "3", "2017-10-29 17:43:29", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67275", "6", "2017-10-29 17:43:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67276", "9", "2017-10-29 17:43:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67277", "8", "2017-10-29 17:43:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67278", "10", "2017-10-29 17:43:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67279", "15", "2017-10-29 17:43:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67280", "3", "2017-10-29 19:26:33", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("67281", "6", "2017-10-29 19:26:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67282", "9", "2017-10-29 19:26:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67283", "8", "2017-10-29 19:26:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67284", "10", "2017-10-29 19:26:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67285", "15", "2017-10-29 19:26:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67286", "10", "2017-10-29 20:36:31", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("67287", "3", "2017-10-29 21:11:16", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("67288", "6", "2017-10-29 21:11:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67289", "9", "2017-10-29 21:11:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67290", "8", "2017-10-29 21:11:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67291", "10", "2017-10-29 21:11:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67292", "15", "2017-10-29 21:11:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67293", "3", "2017-10-29 22:41:51", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67294", "6", "2017-10-29 22:41:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67295", "9", "2017-10-29 22:41:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67296", "8", "2017-10-29 22:41:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67297", "10", "2017-10-29 22:41:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67298", "15", "2017-10-29 22:41:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67299", "9", "2017-10-29 23:28:21", "207.46.13.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("67300", "3", "2017-10-30 00:24:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67301", "6", "2017-10-30 00:24:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67302", "9", "2017-10-30 00:24:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67303", "8", "2017-10-30 00:24:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67304", "10", "2017-10-30 00:24:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67305", "15", "2017-10-30 00:24:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67306", "3", "2017-10-30 02:09:58", "216.86.119.93", "33");
INSERT INTO `wp_rg_form_view` VALUES("67307", "14", "2017-10-30 02:14:51", "216.86.119.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("67308", "6", "2017-10-30 02:41:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67309", "9", "2017-10-30 02:41:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67310", "8", "2017-10-30 02:41:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67311", "10", "2017-10-30 02:41:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67312", "15", "2017-10-30 02:41:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67313", "3", "2017-10-30 04:06:18", "40.77.167.0", "31");
INSERT INTO `wp_rg_form_view` VALUES("67314", "6", "2017-10-30 04:34:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67315", "9", "2017-10-30 04:34:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67316", "8", "2017-10-30 04:34:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67317", "10", "2017-10-30 04:34:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67318", "15", "2017-10-30 04:34:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67319", "3", "2017-10-30 05:40:43", "184.66.40.177", "33");
INSERT INTO `wp_rg_form_view` VALUES("67320", "8", "2017-10-30 05:44:04", "46.229.168.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("67321", "10", "2017-10-30 05:45:49", "46.229.168.68", "7");
INSERT INTO `wp_rg_form_view` VALUES("67322", "15", "2017-10-30 05:46:41", "46.229.168.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("67323", "6", "2017-10-30 05:58:32", "46.229.168.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("67324", "3", "2017-10-30 06:29:58", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("67325", "6", "2017-10-30 06:29:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67326", "9", "2017-10-30 06:30:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67327", "8", "2017-10-30 06:30:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67328", "10", "2017-10-30 06:30:01", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67329", "15", "2017-10-30 06:30:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67330", "3", "2017-10-30 07:07:57", "164.132.161.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("67331", "5", "2017-10-30 07:28:33", "146.185.223.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("67332", "3", "2017-10-30 08:36:02", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67333", "6", "2017-10-30 08:36:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67334", "9", "2017-10-30 08:36:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67335", "8", "2017-10-30 08:36:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67336", "10", "2017-10-30 08:36:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67337", "15", "2017-10-30 08:36:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67338", "3", "2017-10-30 09:16:06", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("67339", "10", "2017-10-30 10:24:34", "72.14.199.75", "11");
INSERT INTO `wp_rg_form_view` VALUES("67340", "3", "2017-10-30 10:24:53", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("67341", "6", "2017-10-30 10:24:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67342", "9", "2017-10-30 10:24:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67343", "8", "2017-10-30 10:24:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67344", "15", "2017-10-30 10:24:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67345", "3", "2017-10-30 12:09:55", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("67346", "6", "2017-10-30 12:09:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67347", "9", "2017-10-30 12:09:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67348", "8", "2017-10-30 12:09:57", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67349", "10", "2017-10-30 12:09:58", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67350", "15", "2017-10-30 12:10:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67351", "3", "2017-10-30 13:52:11", "40.77.167.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("67352", "3", "2017-10-30 14:09:52", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("67353", "6", "2017-10-30 14:09:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67354", "9", "2017-10-30 14:09:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67355", "8", "2017-10-30 14:09:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67356", "10", "2017-10-30 14:09:55", "52.37.180.245", "12");
INSERT INTO `wp_rg_form_view` VALUES("67357", "15", "2017-10-30 14:09:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67358", "3", "2017-10-30 16:06:13", "74.208.41.83", "39");
INSERT INTO `wp_rg_form_view` VALUES("67359", "6", "2017-10-30 16:06:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67360", "9", "2017-10-30 16:06:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67361", "8", "2017-10-30 16:06:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67362", "10", "2017-10-30 16:06:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67363", "15", "2017-10-30 16:06:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67364", "15", "2017-10-30 17:52:44", "37.113.61.179", "2");
INSERT INTO `wp_rg_form_view` VALUES("67365", "6", "2017-10-30 18:11:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67366", "3", "2017-10-30 18:11:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67367", "9", "2017-10-30 18:11:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67368", "8", "2017-10-30 18:11:40", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("67369", "10", "2017-10-30 18:11:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67370", "15", "2017-10-30 18:11:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67371", "6", "2017-10-30 20:29:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67372", "3", "2017-10-30 20:29:57", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("67373", "9", "2017-10-30 20:29:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67374", "8", "2017-10-30 20:29:59", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67375", "10", "2017-10-30 20:29:59", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67376", "15", "2017-10-30 20:30:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67377", "6", "2017-10-30 22:42:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67378", "3", "2017-10-30 22:42:37", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67379", "9", "2017-10-30 22:42:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67380", "8", "2017-10-30 22:42:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67381", "10", "2017-10-30 22:42:40", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67382", "15", "2017-10-30 22:42:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67383", "6", "2017-10-31 00:32:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67384", "3", "2017-10-31 00:32:06", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67385", "9", "2017-10-31 00:32:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67386", "8", "2017-10-31 00:32:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67387", "10", "2017-10-31 00:32:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67388", "15", "2017-10-31 00:32:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67389", "3", "2017-10-31 01:03:13", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("67390", "10", "2017-10-31 01:27:03", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("67391", "6", "2017-10-31 02:38:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67392", "3", "2017-10-31 02:38:40", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67393", "9", "2017-10-31 02:38:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67394", "8", "2017-10-31 02:38:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67395", "10", "2017-10-31 02:38:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67396", "15", "2017-10-31 02:38:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67397", "14", "2017-10-31 03:20:16", "75.154.241.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("67398", "3", "2017-10-31 03:24:41", "185.158.116.174", "5");
INSERT INTO `wp_rg_form_view` VALUES("67399", "6", "2017-10-31 04:11:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67400", "3", "2017-10-31 04:11:48", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67401", "9", "2017-10-31 04:11:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67402", "8", "2017-10-31 04:11:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67403", "10", "2017-10-31 04:11:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67404", "15", "2017-10-31 04:11:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67405", "3", "2017-10-31 05:59:30", "217.61.20.200", "4");
INSERT INTO `wp_rg_form_view` VALUES("67406", "3", "2017-10-31 06:00:27", "217.61.20.200", "31");
INSERT INTO `wp_rg_form_view` VALUES("67407", "6", "2017-10-31 06:02:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67408", "9", "2017-10-31 06:02:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67409", "8", "2017-10-31 06:02:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67410", "10", "2017-10-31 06:02:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67411", "15", "2017-10-31 06:02:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67412", "6", "2017-10-31 07:58:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67413", "3", "2017-10-31 07:58:44", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67414", "9", "2017-10-31 07:58:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67415", "8", "2017-10-31 07:58:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67416", "10", "2017-10-31 07:58:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67417", "15", "2017-10-31 07:58:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67418", "6", "2017-10-31 09:32:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67419", "3", "2017-10-31 09:33:00", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67420", "9", "2017-10-31 09:33:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67421", "8", "2017-10-31 09:33:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67422", "10", "2017-10-31 09:33:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67423", "15", "2017-10-31 09:33:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67424", "3", "2017-10-31 10:09:30", "180.76.15.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("67425", "6", "2017-10-31 11:12:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67426", "3", "2017-10-31 11:12:20", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("67427", "9", "2017-10-31 11:12:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67428", "8", "2017-10-31 11:12:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67429", "10", "2017-10-31 11:12:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67430", "15", "2017-10-31 11:12:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67431", "3", "2017-10-31 12:46:43", "68.180.230.223", "2");
INSERT INTO `wp_rg_form_view` VALUES("67432", "6", "2017-10-31 13:12:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67433", "3", "2017-10-31 13:12:59", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67434", "9", "2017-10-31 13:13:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67435", "8", "2017-10-31 13:13:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67436", "10", "2017-10-31 13:13:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67437", "15", "2017-10-31 13:13:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67438", "3", "2017-10-31 14:49:01", "74.6.168.202", "30");
INSERT INTO `wp_rg_form_view` VALUES("67439", "6", "2017-10-31 14:52:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67440", "9", "2017-10-31 14:52:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67441", "8", "2017-10-31 14:52:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67442", "10", "2017-10-31 14:52:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67443", "15", "2017-10-31 14:52:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67444", "6", "2017-10-31 17:12:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67445", "3", "2017-10-31 17:12:47", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67446", "9", "2017-10-31 17:12:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67447", "8", "2017-10-31 17:12:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67448", "10", "2017-10-31 17:12:50", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67449", "15", "2017-10-31 17:12:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67450", "14", "2017-10-31 17:53:43", "196.247.17.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("67451", "3", "2017-10-31 18:01:02", "64.114.223.2", "8");
INSERT INTO `wp_rg_form_view` VALUES("67452", "10", "2017-10-31 18:49:53", "64.114.222.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("67453", "6", "2017-10-31 19:01:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67454", "3", "2017-10-31 19:01:01", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67455", "9", "2017-10-31 19:01:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67456", "8", "2017-10-31 19:01:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67457", "10", "2017-10-31 19:01:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67458", "15", "2017-10-31 19:01:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67459", "14", "2017-10-31 20:22:51", "24.108.174.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("67460", "3", "2017-10-31 20:42:49", "180.76.15.152", "2");
INSERT INTO `wp_rg_form_view` VALUES("67461", "10", "2017-10-31 21:02:14", "157.55.39.217", "9");
INSERT INTO `wp_rg_form_view` VALUES("67462", "3", "2017-10-31 21:02:21", "157.55.39.171", "36");
INSERT INTO `wp_rg_form_view` VALUES("67463", "9", "2017-10-31 21:02:41", "157.55.39.171", "4");
INSERT INTO `wp_rg_form_view` VALUES("67464", "6", "2017-10-31 21:12:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67465", "8", "2017-10-31 21:12:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67466", "15", "2017-10-31 21:12:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67467", "3", "2017-10-31 22:39:00", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("67468", "6", "2017-10-31 23:28:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67469", "3", "2017-10-31 23:28:03", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67470", "9", "2017-10-31 23:28:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67471", "8", "2017-10-31 23:28:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67472", "10", "2017-10-31 23:28:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67473", "15", "2017-10-31 23:28:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67474", "3", "2017-11-01 00:39:14", "204.79.180.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("67475", "9", "2017-11-01 00:42:09", "157.55.39.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("67476", "10", "2017-11-01 00:52:27", "60.247.101.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("67477", "3", "2017-11-01 01:05:05", "66.249.79.135", "60");
INSERT INTO `wp_rg_form_view` VALUES("67478", "6", "2017-11-01 01:34:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67479", "9", "2017-11-01 01:34:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67480", "8", "2017-11-01 01:34:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67481", "10", "2017-11-01 01:34:59", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67482", "15", "2017-11-01 01:35:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67483", "3", "2017-11-01 02:16:10", "180.76.15.30", "2");
INSERT INTO `wp_rg_form_view` VALUES("67484", "10", "2017-11-01 02:49:32", "180.76.15.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("67485", "6", "2017-11-01 04:08:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67486", "3", "2017-11-01 04:08:55", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("67487", "9", "2017-11-01 04:08:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67488", "8", "2017-11-01 04:08:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67489", "10", "2017-11-01 04:08:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67490", "15", "2017-11-01 04:08:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67491", "6", "2017-11-01 06:04:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67492", "3", "2017-11-01 06:04:42", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67493", "9", "2017-11-01 06:04:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67494", "8", "2017-11-01 06:04:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67495", "10", "2017-11-01 06:04:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67496", "15", "2017-11-01 06:04:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67497", "10", "2017-11-01 07:15:40", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("67498", "6", "2017-11-01 08:08:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67499", "3", "2017-11-01 08:08:29", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67500", "9", "2017-11-01 08:08:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67501", "8", "2017-11-01 08:08:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67502", "10", "2017-11-01 08:08:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67503", "15", "2017-11-01 08:08:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67504", "14", "2017-11-01 08:26:04", "103.197.171.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("67505", "3", "2017-11-01 10:07:12", "66.249.79.137", "30");
INSERT INTO `wp_rg_form_view` VALUES("67506", "6", "2017-11-01 10:13:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67507", "9", "2017-11-01 10:13:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67508", "8", "2017-11-01 10:13:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67509", "10", "2017-11-01 10:13:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67510", "15", "2017-11-01 10:13:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67511", "6", "2017-11-01 11:53:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67512", "3", "2017-11-01 11:53:06", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67513", "9", "2017-11-01 11:53:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67514", "8", "2017-11-01 11:53:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67515", "10", "2017-11-01 11:53:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67516", "15", "2017-11-01 11:53:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67517", "14", "2017-11-01 12:14:57", "180.76.15.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("67518", "3", "2017-11-01 12:53:52", "51.255.47.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("67519", "10", "2017-11-01 13:06:50", "60.247.101.190", "8");
INSERT INTO `wp_rg_form_view` VALUES("67520", "6", "2017-11-01 13:33:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67521", "3", "2017-11-01 13:33:16", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67522", "9", "2017-11-01 13:33:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67523", "8", "2017-11-01 13:33:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67524", "15", "2017-11-01 13:33:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67525", "5", "2017-11-01 13:46:46", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("67526", "6", "2017-11-01 15:24:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67527", "3", "2017-11-01 15:24:15", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67528", "9", "2017-11-01 15:24:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67529", "8", "2017-11-01 15:24:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67530", "10", "2017-11-01 15:24:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67531", "15", "2017-11-01 15:24:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67532", "12", "2017-11-01 15:55:32", "157.55.39.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("67533", "8", "2017-11-01 16:30:55", "64.233.172.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("67534", "6", "2017-11-01 17:08:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67535", "3", "2017-11-01 17:08:44", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67536", "9", "2017-11-01 17:08:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67537", "8", "2017-11-01 17:08:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67538", "10", "2017-11-01 17:08:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67539", "15", "2017-11-01 17:08:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67540", "14", "2017-11-01 17:11:55", "184.66.239.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("67541", "3", "2017-11-01 18:39:52", "172.245.90.69", "32");
INSERT INTO `wp_rg_form_view` VALUES("67542", "6", "2017-11-01 18:54:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67543", "9", "2017-11-01 18:54:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67544", "8", "2017-11-01 18:54:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67545", "10", "2017-11-01 18:54:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67546", "15", "2017-11-01 18:54:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67547", "6", "2017-11-01 21:19:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67548", "3", "2017-11-01 21:19:17", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67549", "9", "2017-11-01 21:19:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67550", "8", "2017-11-01 21:19:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67551", "10", "2017-11-01 21:19:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67552", "15", "2017-11-01 21:19:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67553", "3", "2017-11-01 22:03:16", "24.69.175.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("67554", "6", "2017-11-01 23:01:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67555", "3", "2017-11-01 23:01:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67556", "9", "2017-11-01 23:01:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67557", "8", "2017-11-01 23:01:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67558", "10", "2017-11-01 23:01:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67559", "15", "2017-11-01 23:01:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67560", "6", "2017-11-02 00:57:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67561", "3", "2017-11-02 00:57:17", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67562", "9", "2017-11-02 00:57:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67563", "8", "2017-11-02 00:57:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67564", "10", "2017-11-02 00:57:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67565", "15", "2017-11-02 00:57:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67566", "8", "2017-11-02 01:47:44", "180.76.15.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("67567", "10", "2017-11-02 01:54:15", "164.132.161.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("67568", "6", "2017-11-02 02:35:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67569", "3", "2017-11-02 02:35:18", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67570", "9", "2017-11-02 02:35:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67571", "8", "2017-11-02 02:35:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67572", "10", "2017-11-02 02:35:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67573", "15", "2017-11-02 02:35:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67574", "6", "2017-11-02 04:52:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67575", "3", "2017-11-02 04:52:23", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67576", "9", "2017-11-02 04:52:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67577", "8", "2017-11-02 04:52:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67578", "10", "2017-11-02 04:52:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67579", "15", "2017-11-02 04:52:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67580", "6", "2017-11-02 06:50:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67581", "3", "2017-11-02 06:50:58", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67582", "9", "2017-11-02 06:51:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67583", "8", "2017-11-02 06:51:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67584", "10", "2017-11-02 06:51:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67585", "15", "2017-11-02 06:51:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67586", "3", "2017-11-02 08:25:06", "217.182.132.171", "30");
INSERT INTO `wp_rg_form_view` VALUES("67587", "6", "2017-11-02 08:31:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67588", "9", "2017-11-02 08:31:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67589", "8", "2017-11-02 08:31:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67590", "10", "2017-11-02 08:31:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67591", "15", "2017-11-02 08:31:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67592", "6", "2017-11-02 10:14:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67593", "3", "2017-11-02 10:14:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67594", "9", "2017-11-02 10:14:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67595", "8", "2017-11-02 10:14:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67596", "10", "2017-11-02 10:14:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67597", "15", "2017-11-02 10:14:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67598", "10", "2017-11-02 11:05:01", "72.14.199.65", "6");
INSERT INTO `wp_rg_form_view` VALUES("67599", "3", "2017-11-02 11:25:53", "180.76.15.7", "30");
INSERT INTO `wp_rg_form_view` VALUES("67600", "6", "2017-11-02 11:53:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67601", "9", "2017-11-02 11:53:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67602", "8", "2017-11-02 11:53:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67603", "15", "2017-11-02 11:53:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67604", "3", "2017-11-02 12:39:01", "40.77.167.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("67605", "6", "2017-11-02 13:37:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67606", "3", "2017-11-02 13:37:48", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67607", "9", "2017-11-02 13:37:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67608", "8", "2017-11-02 13:37:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67609", "10", "2017-11-02 13:37:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67610", "15", "2017-11-02 13:37:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67611", "10", "2017-11-02 14:03:03", "60.247.101.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("67612", "8", "2017-11-02 14:24:34", "217.182.132.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("67613", "14", "2017-11-02 15:30:14", "69.58.178.56", "1");
INSERT INTO `wp_rg_form_view` VALUES("67614", "6", "2017-11-02 15:37:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67615", "3", "2017-11-02 15:37:45", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67616", "9", "2017-11-02 15:37:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67617", "8", "2017-11-02 15:37:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67618", "10", "2017-11-02 15:37:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67619", "15", "2017-11-02 15:37:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67620", "3", "2017-11-02 16:04:55", "217.182.132.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("67621", "14", "2017-11-02 16:37:57", "96.54.240.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("67622", "6", "2017-11-02 17:21:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67623", "3", "2017-11-02 17:21:22", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67624", "9", "2017-11-02 17:21:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67625", "8", "2017-11-02 17:21:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67626", "10", "2017-11-02 17:21:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67627", "15", "2017-11-02 17:21:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67628", "3", "2017-11-02 18:38:42", "144.76.5.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("67629", "6", "2017-11-02 19:14:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67630", "3", "2017-11-02 19:14:43", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67631", "9", "2017-11-02 19:14:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67632", "8", "2017-11-02 19:14:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67633", "10", "2017-11-02 19:14:46", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67634", "15", "2017-11-02 19:14:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67635", "8", "2017-11-02 20:22:52", "40.77.167.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("67636", "14", "2017-11-02 20:23:53", "75.157.26.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("67637", "3", "2017-11-02 20:46:06", "64.251.80.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("67638", "6", "2017-11-02 21:22:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67639", "3", "2017-11-02 21:22:41", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67640", "9", "2017-11-02 21:22:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67641", "8", "2017-11-02 21:22:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67642", "10", "2017-11-02 21:22:43", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67643", "15", "2017-11-02 21:22:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67644", "3", "2017-11-02 22:14:47", "109.169.29.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("67645", "6", "2017-11-02 23:08:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67646", "3", "2017-11-02 23:08:41", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("67647", "9", "2017-11-02 23:08:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67648", "8", "2017-11-02 23:08:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67649", "10", "2017-11-02 23:08:43", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67650", "15", "2017-11-02 23:08:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67651", "14", "2017-11-02 23:21:18", "137.74.247.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("67652", "3", "2017-11-03 00:56:37", "108.180.5.19", "30");
INSERT INTO `wp_rg_form_view` VALUES("67653", "6", "2017-11-03 00:56:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67654", "9", "2017-11-03 00:56:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67655", "8", "2017-11-03 00:56:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67656", "10", "2017-11-03 00:56:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67657", "15", "2017-11-03 00:56:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67658", "3", "2017-11-03 02:07:38", "157.55.39.146", "31");
INSERT INTO `wp_rg_form_view` VALUES("67659", "6", "2017-11-03 02:47:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67660", "9", "2017-11-03 02:47:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67661", "8", "2017-11-03 02:47:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67662", "10", "2017-11-03 02:47:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67663", "15", "2017-11-03 02:47:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67664", "6", "2017-11-03 04:46:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67665", "3", "2017-11-03 04:46:21", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67666", "9", "2017-11-03 04:46:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67667", "8", "2017-11-03 04:46:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67668", "10", "2017-11-03 04:46:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67669", "15", "2017-11-03 04:46:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67670", "10", "2017-11-03 05:33:16", "207.46.13.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("67671", "6", "2017-11-03 06:44:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67672", "3", "2017-11-03 06:44:12", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67673", "9", "2017-11-03 06:44:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67674", "8", "2017-11-03 06:44:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67675", "10", "2017-11-03 06:44:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67676", "15", "2017-11-03 06:44:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67677", "10", "2017-11-03 07:28:18", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("67678", "6", "2017-11-03 08:24:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67679", "3", "2017-11-03 08:24:56", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("67680", "9", "2017-11-03 08:24:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67681", "8", "2017-11-03 08:24:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67682", "10", "2017-11-03 08:24:58", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67683", "15", "2017-11-03 08:25:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67684", "10", "2017-11-03 09:36:37", "40.77.167.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("67685", "6", "2017-11-03 10:25:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67686", "3", "2017-11-03 10:25:36", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67687", "9", "2017-11-03 10:25:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67688", "8", "2017-11-03 10:25:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67689", "10", "2017-11-03 10:25:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67690", "15", "2017-11-03 10:25:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67691", "10", "2017-11-03 12:04:54", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("67692", "6", "2017-11-03 12:16:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67693", "3", "2017-11-03 12:16:17", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67694", "9", "2017-11-03 12:16:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67695", "8", "2017-11-03 12:16:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67696", "15", "2017-11-03 12:16:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67697", "3", "2017-11-03 14:03:06", "36.57.181.153", "59");
INSERT INTO `wp_rg_form_view` VALUES("67698", "6", "2017-11-03 14:13:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67699", "9", "2017-11-03 14:13:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67700", "8", "2017-11-03 14:13:49", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67701", "10", "2017-11-03 14:13:50", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("67702", "15", "2017-11-03 14:13:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67703", "3", "2017-11-03 15:02:39", "5.9.98.130", "34");
INSERT INTO `wp_rg_form_view` VALUES("67704", "14", "2017-11-03 15:05:51", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("67705", "8", "2017-11-03 15:06:11", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("67706", "10", "2017-11-03 15:09:41", "5.9.98.130", "5");
INSERT INTO `wp_rg_form_view` VALUES("67707", "15", "2017-11-03 15:13:29", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("67708", "9", "2017-11-03 15:15:55", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("67709", "6", "2017-11-03 15:17:26", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("67710", "6", "2017-11-03 16:18:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67711", "3", "2017-11-03 16:18:16", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("67712", "9", "2017-11-03 16:18:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67713", "8", "2017-11-03 16:18:19", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("67714", "10", "2017-11-03 16:18:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67715", "15", "2017-11-03 16:18:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67716", "14", "2017-11-03 16:19:51", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("67717", "3", "2017-11-03 17:04:18", "31.53.48.222", "4");
INSERT INTO `wp_rg_form_view` VALUES("67718", "8", "2017-11-03 17:19:45", "31.53.48.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("67719", "6", "2017-11-03 18:18:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67720", "3", "2017-11-03 18:18:51", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67721", "9", "2017-11-03 18:18:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67722", "8", "2017-11-03 18:18:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67723", "10", "2017-11-03 18:18:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67724", "15", "2017-11-03 18:18:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67725", "3", "2017-11-03 19:54:40", "157.55.39.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("67726", "6", "2017-11-03 20:49:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67727", "3", "2017-11-03 20:49:10", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67728", "9", "2017-11-03 20:49:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67729", "8", "2017-11-03 20:49:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67730", "10", "2017-11-03 20:49:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67731", "15", "2017-11-03 20:49:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67732", "14", "2017-11-03 21:04:52", "186.220.167.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("67733", "10", "2017-11-03 21:40:28", "157.55.39.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("67734", "6", "2017-11-03 22:34:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67735", "3", "2017-11-03 22:34:42", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("67736", "9", "2017-11-03 22:34:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67737", "8", "2017-11-03 22:34:45", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67738", "10", "2017-11-03 22:34:46", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67739", "15", "2017-11-03 22:34:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67740", "3", "2017-11-04 00:12:12", "109.169.29.30", "59");
INSERT INTO `wp_rg_form_view` VALUES("67741", "6", "2017-11-04 00:25:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67742", "9", "2017-11-04 00:25:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67743", "8", "2017-11-04 00:25:08", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67744", "10", "2017-11-04 00:25:09", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("67745", "15", "2017-11-04 00:25:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67746", "3", "2017-11-04 01:32:26", "46.229.168.71", "19");
INSERT INTO `wp_rg_form_view` VALUES("67747", "10", "2017-11-04 01:36:01", "46.229.168.71", "15");
INSERT INTO `wp_rg_form_view` VALUES("67748", "8", "2017-11-04 01:40:38", "66.102.6.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("67749", "14", "2017-11-04 01:46:47", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("67750", "6", "2017-11-04 02:21:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67751", "3", "2017-11-04 02:21:54", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67752", "9", "2017-11-04 02:21:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67753", "8", "2017-11-04 02:21:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67754", "10", "2017-11-04 02:21:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67755", "15", "2017-11-04 02:22:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67756", "10", "2017-11-04 04:07:46", "204.239.253.217", "8");
INSERT INTO `wp_rg_form_view` VALUES("67757", "6", "2017-11-04 04:14:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67758", "3", "2017-11-04 04:14:21", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67759", "9", "2017-11-04 04:14:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67760", "8", "2017-11-04 04:14:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67761", "15", "2017-11-04 04:14:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67762", "11", "2017-11-04 05:33:26", "77.75.76.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("67763", "6", "2017-11-04 05:58:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67764", "3", "2017-11-04 05:58:44", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67765", "9", "2017-11-04 05:58:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67766", "8", "2017-11-04 05:58:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67767", "10", "2017-11-04 05:58:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67768", "15", "2017-11-04 05:58:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67769", "3", "2017-11-04 06:48:49", "100.43.91.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("67770", "3", "2017-11-04 07:23:27", "216.244.66.231", "32");
INSERT INTO `wp_rg_form_view` VALUES("67771", "6", "2017-11-04 07:47:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67772", "9", "2017-11-04 07:47:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67773", "8", "2017-11-04 07:48:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67774", "10", "2017-11-04 07:48:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67775", "15", "2017-11-04 07:48:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67776", "10", "2017-11-04 08:43:07", "24.108.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("67777", "3", "2017-11-04 09:34:27", "69.30.221.250", "31");
INSERT INTO `wp_rg_form_view` VALUES("67778", "6", "2017-11-04 09:48:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67779", "9", "2017-11-04 09:48:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67780", "8", "2017-11-04 09:48:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67781", "10", "2017-11-04 09:48:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67782", "15", "2017-11-04 09:48:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67783", "6", "2017-11-04 11:58:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67784", "3", "2017-11-04 11:58:43", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67785", "9", "2017-11-04 11:58:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67786", "8", "2017-11-04 11:58:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67787", "10", "2017-11-04 11:58:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67788", "15", "2017-11-04 11:58:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67789", "10", "2017-11-04 12:00:17", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("67790", "3", "2017-11-04 12:53:29", "68.180.230.223", "1");
INSERT INTO `wp_rg_form_view` VALUES("67791", "6", "2017-11-04 13:56:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67792", "3", "2017-11-04 13:56:57", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67793", "9", "2017-11-04 13:56:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67794", "8", "2017-11-04 13:57:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67795", "10", "2017-11-04 13:57:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67796", "15", "2017-11-04 13:57:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67797", "10", "2017-11-04 14:39:13", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("67798", "3", "2017-11-04 15:09:05", "180.76.15.22", "2");
INSERT INTO `wp_rg_form_view` VALUES("67799", "14", "2017-11-04 15:42:20", "180.76.15.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("67800", "6", "2017-11-04 16:07:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67801", "3", "2017-11-04 16:07:28", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("67802", "9", "2017-11-04 16:07:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67803", "8", "2017-11-04 16:07:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67804", "10", "2017-11-04 16:07:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67805", "15", "2017-11-04 16:07:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67806", "10", "2017-11-04 17:02:11", "207.46.13.177", "6");
INSERT INTO `wp_rg_form_view` VALUES("67807", "3", "2017-11-04 17:22:25", "180.76.15.5", "31");
INSERT INTO `wp_rg_form_view` VALUES("67808", "6", "2017-11-04 17:47:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67809", "9", "2017-11-04 17:47:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67810", "8", "2017-11-04 17:47:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67811", "15", "2017-11-04 17:47:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67812", "3", "2017-11-04 18:57:31", "5.62.41.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("67813", "3", "2017-11-04 19:02:24", "180.76.15.18", "31");
INSERT INTO `wp_rg_form_view` VALUES("67814", "6", "2017-11-04 19:28:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67815", "9", "2017-11-04 19:28:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67816", "8", "2017-11-04 19:28:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67817", "10", "2017-11-04 19:28:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67818", "15", "2017-11-04 19:28:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67819", "10", "2017-11-04 20:04:18", "157.55.39.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("67820", "3", "2017-11-04 20:11:23", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("67821", "6", "2017-11-04 21:08:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67822", "3", "2017-11-04 21:08:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67823", "9", "2017-11-04 21:08:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67824", "8", "2017-11-04 21:08:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67825", "10", "2017-11-04 21:08:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67826", "15", "2017-11-04 21:08:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67827", "3", "2017-11-04 22:53:04", "104.196.154.58", "34");
INSERT INTO `wp_rg_form_view` VALUES("67828", "6", "2017-11-04 22:53:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67829", "9", "2017-11-04 22:53:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67830", "8", "2017-11-04 22:53:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67831", "10", "2017-11-04 22:53:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67832", "15", "2017-11-04 22:53:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67833", "3", "2017-11-04 23:51:55", "104.196.186.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("67834", "14", "2017-11-04 23:53:04", "104.196.186.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("67835", "8", "2017-11-04 23:57:27", "104.196.186.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("67836", "3", "2017-11-05 00:02:17", "180.76.15.138", "40");
INSERT INTO `wp_rg_form_view` VALUES("67837", "6", "2017-11-05 00:47:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67838", "9", "2017-11-05 00:47:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67839", "8", "2017-11-05 00:47:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67840", "10", "2017-11-05 00:47:58", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("67841", "15", "2017-11-05 00:48:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67842", "14", "2017-11-05 00:53:03", "104.196.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("67843", "3", "2017-11-05 02:08:38", "157.55.39.159", "30");
INSERT INTO `wp_rg_form_view` VALUES("67844", "6", "2017-11-05 02:33:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67845", "9", "2017-11-05 02:33:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67846", "8", "2017-11-05 02:33:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67847", "10", "2017-11-05 02:33:23", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67848", "15", "2017-11-05 02:33:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67849", "10", "2017-11-05 03:07:00", "51.255.65.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("67850", "3", "2017-11-05 03:08:50", "104.196.159.88", "23");
INSERT INTO `wp_rg_form_view` VALUES("67851", "8", "2017-11-05 03:09:14", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("67852", "9", "2017-11-05 03:10:16", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("67853", "6", "2017-11-05 03:11:50", "104.196.159.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("67854", "6", "2017-11-05 04:22:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67855", "3", "2017-11-05 04:22:36", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67856", "9", "2017-11-05 04:22:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67857", "8", "2017-11-05 04:22:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67858", "10", "2017-11-05 04:22:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67859", "15", "2017-11-05 04:22:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67860", "3", "2017-11-05 05:20:14", "216.244.66.247", "41");
INSERT INTO `wp_rg_form_view` VALUES("67861", "6", "2017-11-05 05:43:44", "104.196.142.132", "2");
INSERT INTO `wp_rg_form_view` VALUES("67862", "10", "2017-11-05 05:43:55", "104.196.142.132", "6");
INSERT INTO `wp_rg_form_view` VALUES("67863", "9", "2017-11-05 05:58:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67864", "8", "2017-11-05 05:58:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67865", "15", "2017-11-05 05:59:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67866", "10", "2017-11-05 06:05:22", "72.14.199.69", "9");
INSERT INTO `wp_rg_form_view` VALUES("67867", "8", "2017-11-05 06:12:15", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("67868", "10", "2017-11-05 07:00:34", "24.108.13.92", "14");
INSERT INTO `wp_rg_form_view` VALUES("67869", "3", "2017-11-05 07:03:34", "216.244.66.247", "38");
INSERT INTO `wp_rg_form_view` VALUES("67870", "6", "2017-11-05 07:39:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67871", "9", "2017-11-05 07:39:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67872", "8", "2017-11-05 07:39:25", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("67873", "15", "2017-11-05 07:39:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67874", "3", "2017-11-05 08:29:28", "180.76.15.20", "4");
INSERT INTO `wp_rg_form_view` VALUES("67875", "6", "2017-11-05 09:34:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67876", "3", "2017-11-05 09:34:14", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67877", "9", "2017-11-05 09:34:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67878", "8", "2017-11-05 09:34:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67879", "10", "2017-11-05 09:34:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67880", "15", "2017-11-05 09:34:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67881", "3", "2017-11-05 10:07:14", "5.188.211.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("67882", "6", "2017-11-05 11:25:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67883", "3", "2017-11-05 11:25:32", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67884", "9", "2017-11-05 11:25:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67885", "8", "2017-11-05 11:25:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67886", "10", "2017-11-05 11:25:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67887", "15", "2017-11-05 11:25:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67888", "3", "2017-11-05 12:10:49", "180.76.15.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("67889", "6", "2017-11-05 13:08:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67890", "3", "2017-11-05 13:08:37", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("67891", "9", "2017-11-05 13:08:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67892", "8", "2017-11-05 13:08:39", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("67893", "10", "2017-11-05 13:08:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67894", "15", "2017-11-05 13:08:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67895", "6", "2017-11-05 14:48:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67896", "3", "2017-11-05 14:48:59", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67897", "9", "2017-11-05 14:49:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67898", "8", "2017-11-05 14:49:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67899", "10", "2017-11-05 14:49:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67900", "15", "2017-11-05 14:49:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67901", "14", "2017-11-05 15:13:51", "207.46.13.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("67902", "6", "2017-11-05 16:34:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67903", "3", "2017-11-05 16:34:20", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67904", "9", "2017-11-05 16:34:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67905", "8", "2017-11-05 16:34:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67906", "10", "2017-11-05 16:34:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67907", "15", "2017-11-05 16:34:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67908", "3", "2017-11-05 17:26:34", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("67909", "8", "2017-11-05 17:26:57", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("67910", "10", "2017-11-05 18:11:42", "24.108.13.92", "7");
INSERT INTO `wp_rg_form_view` VALUES("67911", "6", "2017-11-05 18:28:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67912", "3", "2017-11-05 18:28:11", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67913", "9", "2017-11-05 18:28:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67914", "8", "2017-11-05 18:28:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67915", "15", "2017-11-05 18:28:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67916", "10", "2017-11-05 19:44:11", "24.108.13.92", "6");
INSERT INTO `wp_rg_form_view` VALUES("67917", "3", "2017-11-05 19:48:41", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("67918", "6", "2017-11-05 20:10:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67919", "3", "2017-11-05 20:10:23", "52.37.180.245", "43");
INSERT INTO `wp_rg_form_view` VALUES("67920", "9", "2017-11-05 20:10:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67921", "8", "2017-11-05 20:10:25", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("67922", "10", "2017-11-05 20:10:25", "52.37.180.245", "14");
INSERT INTO `wp_rg_form_view` VALUES("67923", "15", "2017-11-05 20:10:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67924", "11", "2017-11-05 20:47:07", "157.55.39.146", "1");
INSERT INTO `wp_rg_form_view` VALUES("67925", "14", "2017-11-05 20:58:13", "185.158.107.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("67926", "6", "2017-11-05 21:48:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67927", "3", "2017-11-05 21:48:19", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("67928", "9", "2017-11-05 21:48:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67929", "8", "2017-11-05 21:48:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67930", "10", "2017-11-05 21:48:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67931", "15", "2017-11-05 21:48:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67932", "6", "2017-11-05 23:34:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67933", "3", "2017-11-05 23:34:39", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67934", "9", "2017-11-05 23:34:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67935", "8", "2017-11-05 23:34:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67936", "10", "2017-11-05 23:34:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67937", "15", "2017-11-05 23:34:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67938", "3", "2017-11-06 00:23:33", "207.46.13.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("67939", "6", "2017-11-06 01:28:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67940", "3", "2017-11-06 01:28:36", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67941", "9", "2017-11-06 01:28:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67942", "8", "2017-11-06 01:28:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67943", "10", "2017-11-06 01:28:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67944", "15", "2017-11-06 01:28:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67945", "3", "2017-11-06 03:06:36", "216.244.66.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("67946", "6", "2017-11-06 03:07:01", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("67947", "9", "2017-11-06 03:14:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67948", "8", "2017-11-06 03:14:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67949", "10", "2017-11-06 03:14:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67950", "15", "2017-11-06 03:14:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67951", "15", "2017-11-06 04:48:14", "37.113.61.179", "3");
INSERT INTO `wp_rg_form_view` VALUES("67952", "6", "2017-11-06 04:48:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67953", "3", "2017-11-06 04:48:53", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67954", "9", "2017-11-06 04:48:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67955", "8", "2017-11-06 04:48:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67956", "10", "2017-11-06 04:48:55", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67957", "3", "2017-11-06 05:18:16", "100.43.91.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("67958", "6", "2017-11-06 06:34:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67959", "3", "2017-11-06 06:34:59", "52.37.180.245", "59");
INSERT INTO `wp_rg_form_view` VALUES("67960", "9", "2017-11-06 06:35:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67961", "8", "2017-11-06 06:35:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("67962", "10", "2017-11-06 06:35:01", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("67963", "15", "2017-11-06 06:35:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67964", "3", "2017-11-06 08:02:19", "184.66.40.177", "33");
INSERT INTO `wp_rg_form_view` VALUES("67965", "8", "2017-11-06 08:02:23", "184.66.40.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("67966", "6", "2017-11-06 08:34:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67967", "9", "2017-11-06 08:34:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67968", "10", "2017-11-06 08:34:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67969", "15", "2017-11-06 08:34:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67970", "10", "2017-11-06 09:30:28", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("67971", "3", "2017-11-06 09:31:01", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("67972", "6", "2017-11-06 10:16:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67973", "3", "2017-11-06 10:16:43", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67974", "9", "2017-11-06 10:16:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67975", "8", "2017-11-06 10:16:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67976", "10", "2017-11-06 10:16:45", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("67977", "15", "2017-11-06 10:16:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67978", "15", "2017-11-06 11:00:15", "164.132.161.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("67979", "3", "2017-11-06 11:18:58", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("67980", "3", "2017-11-06 12:07:02", "217.182.132.62", "31");
INSERT INTO `wp_rg_form_view` VALUES("67981", "6", "2017-11-06 12:13:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67982", "9", "2017-11-06 12:13:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67983", "8", "2017-11-06 12:13:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67984", "10", "2017-11-06 12:13:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67985", "15", "2017-11-06 12:13:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67986", "3", "2017-11-06 13:18:33", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("67987", "10", "2017-11-06 13:49:40", "40.77.167.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("67988", "6", "2017-11-06 14:03:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67989", "3", "2017-11-06 14:03:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("67990", "9", "2017-11-06 14:03:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67991", "8", "2017-11-06 14:03:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67992", "10", "2017-11-06 14:03:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67993", "15", "2017-11-06 14:03:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67994", "6", "2017-11-06 15:38:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67995", "3", "2017-11-06 15:38:34", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("67996", "9", "2017-11-06 15:38:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("67997", "8", "2017-11-06 15:38:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("67998", "10", "2017-11-06 15:38:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("67999", "15", "2017-11-06 15:38:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68000", "8", "2017-11-06 16:27:38", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68001", "3", "2017-11-06 16:28:25", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68002", "3", "2017-11-06 17:22:53", "207.194.133.9", "30");
INSERT INTO `wp_rg_form_view` VALUES("68003", "10", "2017-11-06 17:31:41", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("68004", "6", "2017-11-06 17:37:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68005", "9", "2017-11-06 17:37:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68006", "8", "2017-11-06 17:37:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68007", "15", "2017-11-06 17:37:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68008", "3", "2017-11-06 18:11:56", "96.54.224.73", "30");
INSERT INTO `wp_rg_form_view` VALUES("68009", "6", "2017-11-06 18:39:18", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68010", "9", "2017-11-06 18:39:21", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68011", "8", "2017-11-06 18:39:22", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68012", "10", "2017-11-06 18:39:23", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("68013", "15", "2017-11-06 18:39:25", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68014", "3", "2017-11-06 19:33:36", "217.182.132.63", "30");
INSERT INTO `wp_rg_form_view` VALUES("68015", "6", "2017-11-06 19:38:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68016", "9", "2017-11-06 19:38:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68017", "8", "2017-11-06 19:38:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68018", "10", "2017-11-06 19:38:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68019", "15", "2017-11-06 19:38:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68020", "10", "2017-11-06 20:00:05", "40.77.167.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("68021", "8", "2017-11-06 20:03:44", "66.102.6.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("68022", "3", "2017-11-06 20:19:20", "194.187.170.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("68023", "14", "2017-11-06 20:27:42", "134.87.139.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("68024", "10", "2017-11-06 21:16:02", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("68025", "6", "2017-11-06 21:34:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68026", "3", "2017-11-06 21:34:21", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68027", "9", "2017-11-06 21:34:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68028", "8", "2017-11-06 21:34:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68029", "15", "2017-11-06 21:34:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68030", "14", "2017-11-06 23:03:43", "216.232.132.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("68031", "3", "2017-11-06 23:21:57", "216.244.66.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("68032", "6", "2017-11-06 23:45:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68033", "9", "2017-11-06 23:45:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68034", "8", "2017-11-06 23:45:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68035", "10", "2017-11-06 23:46:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68036", "15", "2017-11-06 23:46:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68037", "3", "2017-11-07 00:27:08", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68038", "10", "2017-11-07 00:35:46", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68039", "3", "2017-11-07 01:31:59", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("68040", "14", "2017-11-07 01:59:42", "40.132.242.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("68041", "3", "2017-11-07 02:00:14", "217.182.132.82", "31");
INSERT INTO `wp_rg_form_view` VALUES("68042", "6", "2017-11-07 02:09:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68043", "9", "2017-11-07 02:09:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68044", "8", "2017-11-07 02:09:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68045", "10", "2017-11-07 02:09:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68046", "15", "2017-11-07 02:09:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68047", "6", "2017-11-07 03:59:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68048", "3", "2017-11-07 03:59:55", "52.37.180.245", "22");
INSERT INTO `wp_rg_form_view` VALUES("68049", "9", "2017-11-07 03:59:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68050", "8", "2017-11-07 03:59:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68051", "10", "2017-11-07 03:59:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68052", "15", "2017-11-07 04:00:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68053", "10", "2017-11-07 04:00:00", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("68054", "3", "2017-11-07 04:00:00", "52.37.180.245", "37");
INSERT INTO `wp_rg_form_view` VALUES("68055", "8", "2017-11-07 04:00:01", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("68056", "6", "2017-11-07 04:00:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68057", "9", "2017-11-07 04:00:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68058", "3", "2017-11-07 05:08:15", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("68059", "15", "2017-11-07 05:08:38", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68060", "14", "2017-11-07 06:06:49", "70.66.183.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("68061", "6", "2017-11-07 06:09:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68062", "3", "2017-11-07 06:09:08", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("68063", "9", "2017-11-07 06:09:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68064", "8", "2017-11-07 06:09:10", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68065", "10", "2017-11-07 06:09:11", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("68066", "15", "2017-11-07 06:09:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68067", "10", "2017-11-07 07:12:23", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68068", "3", "2017-11-07 07:49:55", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("68069", "9", "2017-11-07 07:59:52", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68070", "6", "2017-11-07 07:59:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68071", "9", "2017-11-07 08:00:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68072", "3", "2017-11-07 08:00:00", "52.37.180.245", "52");
INSERT INTO `wp_rg_form_view` VALUES("68073", "8", "2017-11-07 08:00:00", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68074", "10", "2017-11-07 08:00:01", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("68075", "15", "2017-11-07 08:00:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68076", "6", "2017-11-07 08:00:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68077", "3", "2017-11-07 09:39:20", "77.75.78.165", "59");
INSERT INTO `wp_rg_form_view` VALUES("68078", "6", "2017-11-07 09:39:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68079", "9", "2017-11-07 09:39:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68080", "8", "2017-11-07 09:39:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68081", "10", "2017-11-07 09:39:55", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("68082", "15", "2017-11-07 09:39:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68083", "3", "2017-11-07 10:07:10", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68084", "3", "2017-11-07 11:09:44", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("68085", "6", "2017-11-07 11:26:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68086", "9", "2017-11-07 11:26:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68087", "8", "2017-11-07 11:26:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68088", "10", "2017-11-07 11:26:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68089", "15", "2017-11-07 11:27:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68090", "14", "2017-11-07 11:41:58", "82.211.9.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("68091", "10", "2017-11-07 12:10:48", "66.249.69.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("68092", "3", "2017-11-07 12:56:18", "164.132.161.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("68093", "3", "2017-11-07 13:02:23", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("68094", "6", "2017-11-07 13:15:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68095", "9", "2017-11-07 13:15:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68096", "8", "2017-11-07 13:15:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68097", "10", "2017-11-07 13:15:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68098", "15", "2017-11-07 13:15:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68099", "3", "2017-11-07 14:04:54", "216.244.66.247", "9");
INSERT INTO `wp_rg_form_view` VALUES("68100", "6", "2017-11-07 15:05:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68101", "3", "2017-11-07 15:05:51", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("68102", "9", "2017-11-07 15:05:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68103", "8", "2017-11-07 15:05:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68104", "10", "2017-11-07 15:05:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68105", "15", "2017-11-07 15:05:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68106", "10", "2017-11-07 16:00:26", "216.244.66.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("68107", "3", "2017-11-07 16:00:50", "216.244.66.195", "63");
INSERT INTO `wp_rg_form_view` VALUES("68108", "6", "2017-11-07 16:46:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68109", "9", "2017-11-07 16:46:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68110", "8", "2017-11-07 16:46:04", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68111", "15", "2017-11-07 16:46:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68112", "10", "2017-11-07 17:14:53", "180.76.15.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("68113", "3", "2017-11-07 17:15:08", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68114", "6", "2017-11-07 18:31:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68115", "3", "2017-11-07 18:31:07", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68116", "9", "2017-11-07 18:31:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68117", "8", "2017-11-07 18:31:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68118", "10", "2017-11-07 18:31:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68119", "15", "2017-11-07 18:31:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68120", "10", "2017-11-07 19:52:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68121", "3", "2017-11-07 20:01:55", "5.9.144.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("68122", "6", "2017-11-07 20:32:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68123", "9", "2017-11-07 20:32:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68124", "8", "2017-11-07 20:32:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68125", "10", "2017-11-07 20:32:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68126", "15", "2017-11-07 20:32:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68127", "8", "2017-11-07 21:00:44", "66.102.6.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("68128", "3", "2017-11-07 21:01:20", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68129", "10", "2017-11-07 21:04:41", "51.255.65.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("68130", "14", "2017-11-07 21:27:17", "217.23.14.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("68131", "10", "2017-11-07 22:01:33", "216.244.66.247", "8");
INSERT INTO `wp_rg_form_view` VALUES("68132", "8", "2017-11-07 22:18:14", "24.69.176.158", "3");
INSERT INTO `wp_rg_form_view` VALUES("68133", "6", "2017-11-07 22:22:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68134", "3", "2017-11-07 22:22:10", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68135", "9", "2017-11-07 22:22:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68136", "15", "2017-11-07 22:22:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68137", "8", "2017-11-07 23:08:23", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68138", "6", "2017-11-08 00:16:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68139", "3", "2017-11-08 00:16:29", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68140", "9", "2017-11-08 00:16:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68141", "8", "2017-11-08 00:16:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68142", "10", "2017-11-08 00:16:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68143", "15", "2017-11-08 00:16:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68144", "3", "2017-11-08 01:03:56", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("68145", "10", "2017-11-08 01:04:33", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68146", "11", "2017-11-08 01:52:52", "194.187.170.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("68147", "3", "2017-11-08 02:00:10", "104.131.97.64", "63");
INSERT INTO `wp_rg_form_view` VALUES("68148", "14", "2017-11-08 02:04:02", "104.131.97.64", "1");
INSERT INTO `wp_rg_form_view` VALUES("68149", "6", "2017-11-08 02:04:39", "104.131.97.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("68150", "10", "2017-11-08 02:06:46", "104.131.97.64", "10");
INSERT INTO `wp_rg_form_view` VALUES("68151", "9", "2017-11-08 02:10:21", "104.131.97.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("68152", "8", "2017-11-08 02:12:21", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68153", "15", "2017-11-08 02:12:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68154", "3", "2017-11-08 03:21:29", "216.244.66.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("68155", "6", "2017-11-08 03:45:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68156", "9", "2017-11-08 03:45:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68157", "8", "2017-11-08 03:45:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68158", "10", "2017-11-08 03:45:28", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68159", "15", "2017-11-08 03:45:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68160", "14", "2017-11-08 03:45:47", "207.216.80.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("68161", "3", "2017-11-08 05:14:14", "5.62.41.67", "36");
INSERT INTO `wp_rg_form_view` VALUES("68162", "8", "2017-11-08 05:15:50", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("68163", "6", "2017-11-08 05:32:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68164", "9", "2017-11-08 05:32:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68165", "10", "2017-11-08 05:32:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68166", "15", "2017-11-08 05:32:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68167", "3", "2017-11-08 06:02:53", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68168", "12", "2017-11-08 06:59:59", "164.132.161.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("68169", "6", "2017-11-08 07:12:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68170", "3", "2017-11-08 07:12:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68171", "9", "2017-11-08 07:12:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68172", "8", "2017-11-08 07:12:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68173", "10", "2017-11-08 07:12:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68174", "15", "2017-11-08 07:12:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68175", "6", "2017-11-08 08:57:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68176", "3", "2017-11-08 08:57:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68177", "9", "2017-11-08 08:57:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68178", "8", "2017-11-08 08:57:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68179", "10", "2017-11-08 08:57:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68180", "15", "2017-11-08 08:57:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68181", "3", "2017-11-08 09:17:36", "216.244.66.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("68182", "10", "2017-11-08 09:18:00", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68183", "3", "2017-11-08 10:04:11", "194.187.170.137", "32");
INSERT INTO `wp_rg_form_view` VALUES("68184", "10", "2017-11-08 10:12:44", "194.187.170.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("68185", "6", "2017-11-08 10:43:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68186", "9", "2017-11-08 10:43:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68187", "8", "2017-11-08 10:43:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68188", "15", "2017-11-08 10:43:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68189", "3", "2017-11-08 11:02:32", "194.187.170.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("68190", "10", "2017-11-08 11:08:49", "194.187.170.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("68191", "6", "2017-11-08 11:32:08", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68192", "6", "2017-11-08 12:21:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68193", "3", "2017-11-08 12:21:43", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("68194", "9", "2017-11-08 12:21:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68195", "8", "2017-11-08 12:21:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68196", "10", "2017-11-08 12:21:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68197", "15", "2017-11-08 12:21:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68198", "6", "2017-11-08 14:10:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68199", "3", "2017-11-08 14:10:05", "52.37.180.245", "65");
INSERT INTO `wp_rg_form_view` VALUES("68200", "9", "2017-11-08 14:10:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68201", "8", "2017-11-08 14:10:07", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("68202", "10", "2017-11-08 14:10:08", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("68203", "15", "2017-11-08 14:10:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68204", "14", "2017-11-08 14:48:17", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("68205", "3", "2017-11-08 15:23:24", "77.75.78.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("68206", "6", "2017-11-08 16:02:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68207", "3", "2017-11-08 16:02:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68208", "9", "2017-11-08 16:02:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68209", "8", "2017-11-08 16:02:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68210", "10", "2017-11-08 16:02:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68211", "15", "2017-11-08 16:02:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68212", "3", "2017-11-08 17:12:38", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("68213", "6", "2017-11-08 17:51:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68214", "9", "2017-11-08 17:51:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68215", "8", "2017-11-08 17:51:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68216", "10", "2017-11-08 17:51:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68217", "15", "2017-11-08 17:52:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68218", "10", "2017-11-08 18:45:35", "72.14.199.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("68219", "8", "2017-11-08 19:31:52", "37.204.50.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("68220", "10", "2017-11-08 19:45:13", "194.187.170.147", "3");
INSERT INTO `wp_rg_form_view` VALUES("68221", "3", "2017-11-08 19:46:56", "144.76.62.20", "7");
INSERT INTO `wp_rg_form_view` VALUES("68222", "10", "2017-11-08 20:05:51", "194.187.170.147", "7");
INSERT INTO `wp_rg_form_view` VALUES("68223", "6", "2017-11-08 20:11:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68224", "3", "2017-11-08 20:11:02", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("68225", "9", "2017-11-08 20:11:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68226", "8", "2017-11-08 20:11:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68227", "15", "2017-11-08 20:11:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68228", "3", "2017-11-08 21:02:49", "216.244.66.247", "40");
INSERT INTO `wp_rg_form_view` VALUES("68229", "10", "2017-11-08 21:47:31", "144.76.62.20", "6");
INSERT INTO `wp_rg_form_view` VALUES("68230", "6", "2017-11-08 21:51:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68231", "9", "2017-11-08 21:51:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68232", "8", "2017-11-08 21:51:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68233", "15", "2017-11-08 21:51:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68234", "9", "2017-11-08 22:33:11", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68235", "14", "2017-11-08 22:45:11", "36.67.8.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("68236", "10", "2017-11-08 22:52:21", "217.182.132.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("68237", "3", "2017-11-08 23:11:14", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("68238", "8", "2017-11-08 23:16:54", "64.233.172.250", "4");
INSERT INTO `wp_rg_form_view` VALUES("68239", "6", "2017-11-08 23:40:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68240", "9", "2017-11-08 23:41:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68241", "10", "2017-11-08 23:41:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68242", "15", "2017-11-08 23:41:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68243", "14", "2017-11-09 00:39:46", "75.157.168.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("68244", "3", "2017-11-09 01:07:11", "104.223.94.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("68245", "10", "2017-11-09 01:52:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68246", "6", "2017-11-09 02:01:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68247", "3", "2017-11-09 02:01:44", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68248", "9", "2017-11-09 02:01:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68249", "8", "2017-11-09 02:01:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68250", "10", "2017-11-09 02:01:47", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("68251", "15", "2017-11-09 02:01:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68252", "6", "2017-11-09 03:42:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68253", "3", "2017-11-09 03:42:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68254", "9", "2017-11-09 03:42:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68255", "8", "2017-11-09 03:42:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68256", "10", "2017-11-09 03:42:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68257", "15", "2017-11-09 03:42:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68258", "10", "2017-11-09 04:56:55", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68259", "3", "2017-11-09 05:10:48", "216.244.66.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("68260", "6", "2017-11-09 05:26:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68261", "9", "2017-11-09 05:26:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68262", "8", "2017-11-09 05:26:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68263", "10", "2017-11-09 05:26:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68264", "15", "2017-11-09 05:26:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68265", "10", "2017-11-09 06:00:32", "199.59.150.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("68266", "3", "2017-11-09 06:22:06", "194.187.170.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("68267", "10", "2017-11-09 07:01:17", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("68268", "3", "2017-11-09 07:09:39", "46.229.168.75", "53");
INSERT INTO `wp_rg_form_view` VALUES("68269", "14", "2017-11-09 07:12:32", "46.229.168.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("68270", "9", "2017-11-09 07:13:24", "46.229.168.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("68271", "8", "2017-11-09 07:15:13", "46.229.168.79", "6");
INSERT INTO `wp_rg_form_view` VALUES("68272", "11", "2017-11-09 07:15:37", "46.229.168.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("68273", "6", "2017-11-09 07:16:46", "46.229.168.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("68274", "15", "2017-11-09 07:25:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68275", "10", "2017-11-09 08:04:06", "72.14.199.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("68276", "3", "2017-11-09 08:07:52", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68277", "6", "2017-11-09 09:30:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68278", "3", "2017-11-09 09:30:26", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68279", "9", "2017-11-09 09:30:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68280", "8", "2017-11-09 09:30:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68281", "10", "2017-11-09 09:30:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68282", "15", "2017-11-09 09:30:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68283", "8", "2017-11-09 10:06:47", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("68284", "3", "2017-11-09 10:09:57", "95.91.11.130", "7");
INSERT INTO `wp_rg_form_view` VALUES("68285", "10", "2017-11-09 10:59:50", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68286", "3", "2017-11-09 11:06:15", "216.244.66.247", "30");
INSERT INTO `wp_rg_form_view` VALUES("68287", "8", "2017-11-09 11:06:38", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("68288", "6", "2017-11-09 11:31:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68289", "9", "2017-11-09 11:31:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68290", "10", "2017-11-09 11:31:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68291", "15", "2017-11-09 11:32:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68292", "3", "2017-11-09 12:24:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68293", "3", "2017-11-09 13:18:37", "104.202.122.130", "64");
INSERT INTO `wp_rg_form_view` VALUES("68294", "6", "2017-11-09 13:18:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68295", "9", "2017-11-09 13:18:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68296", "8", "2017-11-09 13:18:49", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68297", "10", "2017-11-09 13:18:49", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("68298", "15", "2017-11-09 13:18:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68299", "6", "2017-11-09 14:59:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68300", "3", "2017-11-09 14:59:41", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68301", "9", "2017-11-09 14:59:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68302", "8", "2017-11-09 14:59:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68303", "10", "2017-11-09 14:59:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68304", "15", "2017-11-09 14:59:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68305", "3", "2017-11-09 15:27:26", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68306", "10", "2017-11-09 16:26:14", "40.77.167.10", "6");
INSERT INTO `wp_rg_form_view` VALUES("68307", "6", "2017-11-09 16:45:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68308", "3", "2017-11-09 16:45:39", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68309", "9", "2017-11-09 16:45:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68310", "8", "2017-11-09 16:45:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68311", "15", "2017-11-09 16:45:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68312", "3", "2017-11-09 17:48:24", "144.76.62.20", "15");
INSERT INTO `wp_rg_form_view` VALUES("68313", "10", "2017-11-09 17:48:26", "144.76.62.20", "1");
INSERT INTO `wp_rg_form_view` VALUES("68314", "6", "2017-11-09 18:20:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68315", "3", "2017-11-09 18:20:32", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("68316", "9", "2017-11-09 18:20:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68317", "8", "2017-11-09 18:20:34", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("68318", "10", "2017-11-09 18:20:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68319", "15", "2017-11-09 18:20:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68320", "3", "2017-11-09 19:14:15", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68321", "15", "2017-11-09 19:14:34", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68322", "10", "2017-11-09 19:33:15", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68323", "3", "2017-11-09 20:05:17", "64.251.80.162", "31");
INSERT INTO `wp_rg_form_view` VALUES("68324", "6", "2017-11-09 20:14:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68325", "9", "2017-11-09 20:14:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68326", "8", "2017-11-09 20:14:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68327", "10", "2017-11-09 20:14:31", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68328", "15", "2017-11-09 20:14:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68329", "3", "2017-11-09 21:08:39", "107.172.35.40", "11");
INSERT INTO `wp_rg_form_view` VALUES("68330", "6", "2017-11-09 22:01:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68331", "3", "2017-11-09 22:01:05", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68332", "9", "2017-11-09 22:01:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68333", "8", "2017-11-09 22:01:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68334", "10", "2017-11-09 22:01:10", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68335", "15", "2017-11-09 22:01:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68336", "14", "2017-11-09 23:12:09", "36.66.213.25", "5");
INSERT INTO `wp_rg_form_view` VALUES("68337", "3", "2017-11-09 23:12:22", "36.66.213.25", "42");
INSERT INTO `wp_rg_form_view` VALUES("68338", "10", "2017-11-09 23:54:21", "164.132.161.57", "6");
INSERT INTO `wp_rg_form_view` VALUES("68339", "6", "2017-11-09 23:55:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68340", "9", "2017-11-09 23:55:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68341", "8", "2017-11-09 23:55:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68342", "15", "2017-11-09 23:55:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68343", "9", "2017-11-10 00:16:57", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68344", "3", "2017-11-10 00:17:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68345", "14", "2017-11-10 01:02:46", "68.180.231.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("68346", "6", "2017-11-10 01:40:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68347", "3", "2017-11-10 01:40:00", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("68348", "9", "2017-11-10 01:40:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68349", "8", "2017-11-10 01:40:02", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68350", "10", "2017-11-10 01:40:02", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("68351", "15", "2017-11-10 01:40:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68352", "3", "2017-11-10 02:54:10", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68353", "6", "2017-11-10 03:30:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68354", "3", "2017-11-10 03:30:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68355", "9", "2017-11-10 03:30:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68356", "8", "2017-11-10 03:30:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68357", "10", "2017-11-10 03:30:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68358", "15", "2017-11-10 03:30:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68359", "3", "2017-11-10 04:02:57", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("68360", "6", "2017-11-10 05:15:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68361", "3", "2017-11-10 05:15:04", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("68362", "9", "2017-11-10 05:15:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68363", "8", "2017-11-10 05:15:06", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68364", "10", "2017-11-10 05:15:06", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("68365", "15", "2017-11-10 05:15:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68366", "3", "2017-11-10 06:17:57", "216.244.66.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("68367", "8", "2017-11-10 06:18:46", "184.66.40.177", "3");
INSERT INTO `wp_rg_form_view` VALUES("68368", "6", "2017-11-10 06:59:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68369", "9", "2017-11-10 06:59:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68370", "10", "2017-11-10 06:59:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68371", "15", "2017-11-10 06:59:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68372", "3", "2017-11-10 07:45:22", "51.255.65.38", "4");
INSERT INTO `wp_rg_form_view` VALUES("68373", "6", "2017-11-10 08:52:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68374", "3", "2017-11-10 08:52:42", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68375", "9", "2017-11-10 08:52:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68376", "8", "2017-11-10 08:52:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68377", "10", "2017-11-10 08:52:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68378", "15", "2017-11-10 08:52:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68379", "3", "2017-11-10 09:16:15", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("68380", "10", "2017-11-10 09:16:35", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68381", "10", "2017-11-10 10:02:12", "216.244.66.247", "14");
INSERT INTO `wp_rg_form_view` VALUES("68382", "6", "2017-11-10 10:08:36", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68383", "3", "2017-11-10 10:08:36", "216.244.66.247", "60");
INSERT INTO `wp_rg_form_view` VALUES("68384", "9", "2017-11-10 10:08:37", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68385", "8", "2017-11-10 10:08:38", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("68386", "15", "2017-11-10 10:08:41", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68387", "10", "2017-11-10 11:01:25", "194.187.170.128", "4");
INSERT INTO `wp_rg_form_view` VALUES("68388", "3", "2017-11-10 11:12:17", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("68389", "3", "2017-11-10 12:03:32", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("68390", "6", "2017-11-10 12:15:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68391", "9", "2017-11-10 12:15:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68392", "8", "2017-11-10 12:15:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68393", "10", "2017-11-10 12:15:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68394", "15", "2017-11-10 12:15:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68395", "10", "2017-11-10 13:00:37", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("68396", "3", "2017-11-10 13:12:36", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("68397", "6", "2017-11-10 14:11:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68398", "3", "2017-11-10 14:11:02", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68399", "9", "2017-11-10 14:11:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68400", "8", "2017-11-10 14:11:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68401", "10", "2017-11-10 14:11:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68402", "15", "2017-11-10 14:11:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68403", "10", "2017-11-10 15:16:35", "51.255.65.85", "9");
INSERT INTO `wp_rg_form_view` VALUES("68404", "6", "2017-11-10 15:55:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68405", "3", "2017-11-10 15:55:18", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68406", "9", "2017-11-10 15:55:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68407", "8", "2017-11-10 15:55:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68408", "15", "2017-11-10 15:55:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68409", "3", "2017-11-10 16:21:04", "194.187.170.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("68410", "10", "2017-11-10 16:56:27", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68411", "10", "2017-11-10 17:35:16", "207.46.13.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("68412", "6", "2017-11-10 17:55:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68413", "3", "2017-11-10 17:55:19", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68414", "9", "2017-11-10 17:55:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68415", "8", "2017-11-10 17:55:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68416", "15", "2017-11-10 17:55:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68417", "3", "2017-11-10 18:19:28", "91.121.116.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("68418", "5", "2017-11-10 18:51:37", "180.76.15.15", "1");
INSERT INTO `wp_rg_form_view` VALUES("68419", "14", "2017-11-10 19:55:13", "173.183.122.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("68420", "3", "2017-11-10 20:08:14", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("68421", "10", "2017-11-10 20:08:49", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("68422", "6", "2017-11-10 20:10:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68423", "9", "2017-11-10 20:10:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68424", "8", "2017-11-10 20:10:57", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("68425", "15", "2017-11-10 20:11:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68426", "3", "2017-11-10 21:34:43", "198.71.55.90", "7");
INSERT INTO `wp_rg_form_view` VALUES("68427", "6", "2017-11-10 22:08:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68428", "3", "2017-11-10 22:08:29", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68429", "9", "2017-11-10 22:08:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68430", "8", "2017-11-10 22:08:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68431", "10", "2017-11-10 22:08:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68432", "15", "2017-11-10 22:08:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68433", "3", "2017-11-10 23:31:50", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("68434", "10", "2017-11-11 00:07:48", "72.14.199.73", "7");
INSERT INTO `wp_rg_form_view` VALUES("68435", "6", "2017-11-11 00:08:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68436", "3", "2017-11-11 00:08:28", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68437", "9", "2017-11-11 00:08:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68438", "8", "2017-11-11 00:08:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68439", "15", "2017-11-11 00:08:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68440", "3", "2017-11-11 01:08:44", "51.255.65.96", "35");
INSERT INTO `wp_rg_form_view` VALUES("68441", "6", "2017-11-11 01:57:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68442", "9", "2017-11-11 01:57:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68443", "8", "2017-11-11 01:57:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68444", "10", "2017-11-11 01:57:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68445", "15", "2017-11-11 01:57:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68446", "3", "2017-11-11 02:02:22", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("68447", "8", "2017-11-11 02:36:34", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68448", "6", "2017-11-11 03:50:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68449", "3", "2017-11-11 03:50:35", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68450", "9", "2017-11-11 03:50:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68451", "8", "2017-11-11 03:50:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68452", "10", "2017-11-11 03:50:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68453", "15", "2017-11-11 03:50:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68454", "14", "2017-11-11 03:51:07", "51.255.65.60", "1");
INSERT INTO `wp_rg_form_view` VALUES("68455", "3", "2017-11-11 04:16:47", "194.187.170.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("68456", "3", "2017-11-11 05:04:39", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("68457", "6", "2017-11-11 05:52:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68458", "9", "2017-11-11 05:52:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68459", "8", "2017-11-11 05:52:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68460", "10", "2017-11-11 05:52:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68461", "15", "2017-11-11 05:53:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68462", "8", "2017-11-11 06:17:59", "194.187.170.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("68463", "3", "2017-11-11 06:25:09", "194.187.170.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("68464", "8", "2017-11-11 07:07:44", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("68465", "3", "2017-11-11 07:08:06", "216.244.66.247", "71");
INSERT INTO `wp_rg_form_view` VALUES("68466", "10", "2017-11-11 07:48:19", "216.244.66.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("68467", "6", "2017-11-11 07:54:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68468", "9", "2017-11-11 07:54:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68469", "15", "2017-11-11 07:55:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68470", "10", "2017-11-11 08:00:16", "51.255.65.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("68471", "3", "2017-11-11 08:26:29", "157.55.39.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("68472", "3", "2017-11-11 09:02:25", "216.244.66.247", "45");
INSERT INTO `wp_rg_form_view` VALUES("68473", "8", "2017-11-11 09:14:21", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("68474", "5", "2017-11-11 09:18:39", "137.74.207.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("68475", "6", "2017-11-11 09:49:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68476", "9", "2017-11-11 09:49:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68477", "10", "2017-11-11 09:49:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68478", "15", "2017-11-11 09:49:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68479", "6", "2017-11-11 11:35:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68480", "3", "2017-11-11 11:35:49", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68481", "9", "2017-11-11 11:35:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68482", "8", "2017-11-11 11:35:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68483", "10", "2017-11-11 11:35:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68484", "15", "2017-11-11 11:35:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68485", "6", "2017-11-11 12:27:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68486", "3", "2017-11-11 12:27:36", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68487", "10", "2017-11-11 12:39:11", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("68488", "10", "2017-11-11 13:00:14", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("68489", "6", "2017-11-11 13:27:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68490", "3", "2017-11-11 13:27:18", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68491", "9", "2017-11-11 13:27:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68492", "8", "2017-11-11 13:27:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68493", "15", "2017-11-11 13:27:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68494", "3", "2017-11-11 14:34:56", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("68495", "6", "2017-11-11 14:35:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68496", "3", "2017-11-11 15:42:19", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("68497", "6", "2017-11-11 15:43:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68498", "9", "2017-11-11 15:43:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68499", "8", "2017-11-11 15:43:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68500", "10", "2017-11-11 15:43:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68501", "15", "2017-11-11 15:43:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68502", "3", "2017-11-11 16:24:44", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68503", "6", "2017-11-11 16:35:46", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68504", "14", "2017-11-11 17:26:13", "107.174.143.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("68505", "6", "2017-11-11 17:34:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68506", "3", "2017-11-11 17:34:24", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68507", "9", "2017-11-11 17:34:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68508", "8", "2017-11-11 17:34:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68509", "10", "2017-11-11 17:34:26", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68510", "15", "2017-11-11 17:34:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68511", "3", "2017-11-11 18:22:17", "51.255.65.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("68512", "3", "2017-11-11 19:02:26", "216.244.66.195", "61");
INSERT INTO `wp_rg_form_view` VALUES("68513", "10", "2017-11-11 19:02:43", "216.244.66.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("68514", "8", "2017-11-11 19:09:33", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("68515", "6", "2017-11-11 19:29:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68516", "9", "2017-11-11 19:29:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68517", "15", "2017-11-11 19:30:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68518", "9", "2017-11-11 20:11:52", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68519", "14", "2017-11-11 20:42:43", "108.180.146.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("68520", "10", "2017-11-11 21:19:00", "207.46.13.14", "6");
INSERT INTO `wp_rg_form_view` VALUES("68521", "6", "2017-11-11 21:19:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68522", "3", "2017-11-11 21:19:45", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68523", "9", "2017-11-11 21:19:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68524", "8", "2017-11-11 21:19:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68525", "15", "2017-11-11 21:19:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68526", "3", "2017-11-11 22:12:21", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("68527", "6", "2017-11-11 23:15:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68528", "3", "2017-11-11 23:15:47", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68529", "9", "2017-11-11 23:15:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68530", "8", "2017-11-11 23:15:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68531", "10", "2017-11-11 23:15:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68532", "15", "2017-11-11 23:15:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68533", "3", "2017-11-12 00:02:51", "217.182.132.57", "6");
INSERT INTO `wp_rg_form_view` VALUES("68534", "14", "2017-11-12 01:01:25", "66.51.139.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("68535", "3", "2017-11-12 01:04:34", "216.244.66.195", "63");
INSERT INTO `wp_rg_form_view` VALUES("68536", "6", "2017-11-12 01:09:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68537", "9", "2017-11-12 01:09:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68538", "8", "2017-11-12 01:09:48", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68539", "10", "2017-11-12 01:09:49", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("68540", "15", "2017-11-12 01:09:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68541", "3", "2017-11-12 02:07:00", "207.46.13.33", "33");
INSERT INTO `wp_rg_form_view` VALUES("68542", "6", "2017-11-12 02:54:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68543", "9", "2017-11-12 02:54:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68544", "8", "2017-11-12 02:54:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68545", "10", "2017-11-12 02:54:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68546", "15", "2017-11-12 02:54:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68547", "3", "2017-11-12 03:36:47", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("68548", "8", "2017-11-12 04:03:56", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("68549", "3", "2017-11-12 04:04:12", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("68550", "6", "2017-11-12 04:51:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68551", "9", "2017-11-12 04:51:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68552", "10", "2017-11-12 04:51:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68553", "15", "2017-11-12 04:51:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68554", "3", "2017-11-12 05:22:11", "51.255.65.8", "8");
INSERT INTO `wp_rg_form_view` VALUES("68555", "6", "2017-11-12 06:50:52", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68556", "3", "2017-11-12 06:50:52", "216.244.66.247", "60");
INSERT INTO `wp_rg_form_view` VALUES("68557", "9", "2017-11-12 06:50:53", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68558", "8", "2017-11-12 06:50:53", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("68559", "10", "2017-11-12 06:50:54", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("68560", "15", "2017-11-12 06:50:56", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68561", "3", "2017-11-12 07:01:34", "207.46.13.33", "3");
INSERT INTO `wp_rg_form_view` VALUES("68562", "3", "2017-11-12 08:22:45", "142.4.218.201", "62");
INSERT INTO `wp_rg_form_view` VALUES("68563", "6", "2017-11-12 08:34:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68564", "9", "2017-11-12 08:34:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68565", "8", "2017-11-12 08:34:31", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68566", "10", "2017-11-12 08:34:32", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("68567", "15", "2017-11-12 08:34:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68568", "3", "2017-11-12 09:17:22", "173.212.246.139", "10");
INSERT INTO `wp_rg_form_view` VALUES("68569", "5", "2017-11-12 09:34:36", "40.77.167.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("68570", "10", "2017-11-12 09:52:25", "164.132.161.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("68571", "6", "2017-11-12 10:19:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68572", "3", "2017-11-12 10:19:04", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("68573", "9", "2017-11-12 10:19:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68574", "8", "2017-11-12 10:19:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68575", "10", "2017-11-12 10:19:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68576", "15", "2017-11-12 10:19:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68577", "6", "2017-11-12 11:54:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68578", "3", "2017-11-12 11:54:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68579", "9", "2017-11-12 11:54:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68580", "8", "2017-11-12 11:54:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68581", "10", "2017-11-12 11:54:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68582", "15", "2017-11-12 11:54:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68583", "3", "2017-11-12 12:08:00", "52.176.95.204", "4");
INSERT INTO `wp_rg_form_view` VALUES("68584", "10", "2017-11-12 13:00:30", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("68585", "6", "2017-11-12 13:34:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68586", "3", "2017-11-12 13:34:27", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68587", "9", "2017-11-12 13:34:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68588", "8", "2017-11-12 13:34:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68589", "15", "2017-11-12 13:34:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68590", "3", "2017-11-12 15:10:35", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("68591", "6", "2017-11-12 15:23:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68592", "9", "2017-11-12 15:24:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68593", "8", "2017-11-12 15:24:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68594", "10", "2017-11-12 15:24:01", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68595", "15", "2017-11-12 15:24:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68596", "9", "2017-11-12 16:19:17", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68597", "3", "2017-11-12 16:19:31", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("68598", "6", "2017-11-12 17:06:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68599", "3", "2017-11-12 17:06:09", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68600", "9", "2017-11-12 17:06:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68601", "8", "2017-11-12 17:06:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68602", "10", "2017-11-12 17:06:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68603", "15", "2017-11-12 17:06:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68604", "3", "2017-11-12 18:38:39", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("68605", "6", "2017-11-12 18:54:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68606", "9", "2017-11-12 18:54:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68607", "8", "2017-11-12 18:54:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68608", "10", "2017-11-12 18:54:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68609", "15", "2017-11-12 18:54:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68610", "10", "2017-11-12 20:32:01", "137.74.201.100", "11");
INSERT INTO `wp_rg_form_view` VALUES("68611", "6", "2017-11-12 20:45:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68612", "3", "2017-11-12 20:45:02", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("68613", "9", "2017-11-12 20:45:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68614", "8", "2017-11-12 20:45:03", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68615", "15", "2017-11-12 20:45:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68616", "3", "2017-11-12 22:12:19", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("68617", "6", "2017-11-12 22:31:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68618", "9", "2017-11-12 22:31:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68619", "8", "2017-11-12 22:31:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68620", "10", "2017-11-12 22:31:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68621", "15", "2017-11-12 22:31:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68622", "3", "2017-11-12 23:01:19", "213.239.205.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("68623", "6", "2017-11-13 00:18:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68624", "3", "2017-11-13 00:18:58", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68625", "9", "2017-11-13 00:18:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68626", "8", "2017-11-13 00:18:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68627", "10", "2017-11-13 00:19:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68628", "15", "2017-11-13 00:19:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68629", "3", "2017-11-13 01:39:17", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68630", "6", "2017-11-13 02:05:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68631", "3", "2017-11-13 02:05:20", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68632", "9", "2017-11-13 02:05:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68633", "8", "2017-11-13 02:05:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68634", "10", "2017-11-13 02:05:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68635", "15", "2017-11-13 02:05:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68636", "3", "2017-11-13 03:07:34", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("68637", "10", "2017-11-13 03:39:47", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("68638", "6", "2017-11-13 03:49:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68639", "9", "2017-11-13 03:49:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68640", "8", "2017-11-13 03:49:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68641", "15", "2017-11-13 03:49:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68642", "3", "2017-11-13 04:37:30", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68643", "15", "2017-11-13 04:37:52", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68644", "3", "2017-11-13 05:03:30", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("68645", "6", "2017-11-13 05:44:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68646", "9", "2017-11-13 05:44:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68647", "8", "2017-11-13 05:44:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68648", "10", "2017-11-13 05:44:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68649", "15", "2017-11-13 05:44:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68650", "14", "2017-11-13 06:03:46", "104.223.67.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("68651", "3", "2017-11-13 06:40:10", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68652", "15", "2017-11-13 06:43:53", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68653", "6", "2017-11-13 07:24:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68654", "3", "2017-11-13 07:24:45", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68655", "9", "2017-11-13 07:24:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68656", "8", "2017-11-13 07:24:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68657", "10", "2017-11-13 07:24:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68658", "15", "2017-11-13 07:24:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68659", "3", "2017-11-13 08:12:29", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("68660", "14", "2017-11-13 08:17:18", "108.175.52.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("68661", "9", "2017-11-13 09:11:01", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68662", "6", "2017-11-13 09:23:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68663", "3", "2017-11-13 09:23:03", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68664", "8", "2017-11-13 09:23:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68665", "10", "2017-11-13 09:23:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68666", "15", "2017-11-13 09:23:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68667", "6", "2017-11-13 11:13:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68668", "3", "2017-11-13 11:13:24", "52.37.180.245", "61");
INSERT INTO `wp_rg_form_view` VALUES("68669", "9", "2017-11-13 11:13:25", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("68670", "8", "2017-11-13 11:13:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68671", "10", "2017-11-13 11:13:26", "52.37.180.245", "12");
INSERT INTO `wp_rg_form_view` VALUES("68672", "15", "2017-11-13 11:13:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68673", "3", "2017-11-13 12:50:03", "207.46.13.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("68674", "6", "2017-11-13 13:02:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68675", "3", "2017-11-13 13:02:28", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("68676", "9", "2017-11-13 13:02:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68677", "8", "2017-11-13 13:02:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68678", "10", "2017-11-13 13:02:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68679", "15", "2017-11-13 13:02:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68680", "3", "2017-11-13 14:13:21", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("68681", "6", "2017-11-13 14:37:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68682", "9", "2017-11-13 14:37:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68683", "8", "2017-11-13 14:37:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68684", "10", "2017-11-13 14:37:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68685", "15", "2017-11-13 14:37:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68686", "9", "2017-11-13 15:50:18", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("68687", "3", "2017-11-13 15:59:29", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68688", "6", "2017-11-13 16:28:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68689", "3", "2017-11-13 16:28:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68690", "9", "2017-11-13 16:28:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68691", "8", "2017-11-13 16:28:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68692", "10", "2017-11-13 16:28:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68693", "15", "2017-11-13 16:28:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68694", "3", "2017-11-13 17:22:05", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("68695", "10", "2017-11-13 17:58:10", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68696", "3", "2017-11-13 18:14:06", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("68697", "6", "2017-11-13 18:18:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68698", "9", "2017-11-13 18:18:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68699", "8", "2017-11-13 18:18:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68700", "10", "2017-11-13 18:18:33", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68701", "15", "2017-11-13 18:18:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68702", "3", "2017-11-13 19:07:11", "180.76.15.30", "31");
INSERT INTO `wp_rg_form_view` VALUES("68703", "6", "2017-11-13 19:59:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68704", "9", "2017-11-13 19:59:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68705", "8", "2017-11-13 19:59:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68706", "10", "2017-11-13 19:59:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68707", "15", "2017-11-13 19:59:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68708", "10", "2017-11-13 20:18:16", "209.52.88.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("68709", "3", "2017-11-13 20:41:07", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("68710", "8", "2017-11-13 20:42:23", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68711", "3", "2017-11-13 21:09:51", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("68712", "10", "2017-11-13 21:10:32", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("68713", "6", "2017-11-13 21:43:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68714", "9", "2017-11-13 21:43:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68715", "8", "2017-11-13 21:43:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68716", "15", "2017-11-13 21:43:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68717", "3", "2017-11-13 22:02:43", "79.211.64.211", "5");
INSERT INTO `wp_rg_form_view` VALUES("68718", "8", "2017-11-13 22:48:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68719", "6", "2017-11-13 23:33:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68720", "3", "2017-11-13 23:33:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68721", "9", "2017-11-13 23:33:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68722", "8", "2017-11-13 23:33:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68723", "10", "2017-11-13 23:33:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68724", "15", "2017-11-13 23:33:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68725", "3", "2017-11-14 00:06:22", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68726", "6", "2017-11-14 01:14:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68727", "3", "2017-11-14 01:14:21", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68728", "9", "2017-11-14 01:14:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68729", "8", "2017-11-14 01:14:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68730", "10", "2017-11-14 01:14:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68731", "15", "2017-11-14 01:14:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68732", "14", "2017-11-14 02:09:52", "24.69.174.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("68733", "3", "2017-11-14 03:00:04", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("68734", "6", "2017-11-14 03:07:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68735", "9", "2017-11-14 03:07:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68736", "8", "2017-11-14 03:07:21", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("68737", "10", "2017-11-14 03:07:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68738", "15", "2017-11-14 03:07:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68739", "3", "2017-11-14 04:46:58", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("68740", "10", "2017-11-14 04:47:39", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("68741", "6", "2017-11-14 04:53:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68742", "9", "2017-11-14 04:53:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68743", "8", "2017-11-14 04:53:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68744", "15", "2017-11-14 04:53:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68745", "14", "2017-11-14 06:19:02", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("68746", "6", "2017-11-14 06:29:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68747", "3", "2017-11-14 06:29:13", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68748", "9", "2017-11-14 06:29:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68749", "8", "2017-11-14 06:29:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68750", "10", "2017-11-14 06:29:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68751", "15", "2017-11-14 06:29:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68752", "6", "2017-11-14 08:09:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68753", "3", "2017-11-14 08:09:09", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68754", "9", "2017-11-14 08:09:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68755", "8", "2017-11-14 08:09:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68756", "10", "2017-11-14 08:09:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68757", "15", "2017-11-14 08:09:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68758", "10", "2017-11-14 09:03:11", "72.14.199.73", "12");
INSERT INTO `wp_rg_form_view` VALUES("68759", "14", "2017-11-14 09:07:46", "154.16.45.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("68760", "3", "2017-11-14 09:18:15", "216.244.66.195", "68");
INSERT INTO `wp_rg_form_view` VALUES("68761", "8", "2017-11-14 09:41:08", "46.229.168.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("68762", "6", "2017-11-14 09:45:50", "46.229.168.65", "4");
INSERT INTO `wp_rg_form_view` VALUES("68763", "9", "2017-11-14 09:59:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68764", "15", "2017-11-14 09:59:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68765", "15", "2017-11-14 10:00:14", "46.229.168.69", "3");
INSERT INTO `wp_rg_form_view` VALUES("68766", "3", "2017-11-14 10:23:49", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("68767", "6", "2017-11-14 11:59:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68768", "3", "2017-11-14 11:59:08", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68769", "9", "2017-11-14 11:59:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68770", "8", "2017-11-14 11:59:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68771", "10", "2017-11-14 11:59:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68772", "15", "2017-11-14 11:59:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68773", "3", "2017-11-14 12:08:29", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("68774", "3", "2017-11-14 13:42:06", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("68775", "6", "2017-11-14 13:59:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68776", "9", "2017-11-14 13:59:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68777", "8", "2017-11-14 13:59:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68778", "10", "2017-11-14 13:59:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68779", "15", "2017-11-14 13:59:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68780", "3", "2017-11-14 14:06:26", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68781", "6", "2017-11-14 15:39:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68782", "3", "2017-11-14 15:39:10", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68783", "9", "2017-11-14 15:39:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68784", "8", "2017-11-14 15:39:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68785", "10", "2017-11-14 15:39:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68786", "15", "2017-11-14 15:39:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68787", "8", "2017-11-14 16:40:23", "108.172.248.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("68788", "14", "2017-11-14 16:41:43", "66.51.139.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("68789", "3", "2017-11-14 16:58:53", "216.244.66.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("68790", "14", "2017-11-14 17:04:10", "221.214.208.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("68791", "6", "2017-11-14 17:14:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68792", "3", "2017-11-14 17:14:42", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68793", "9", "2017-11-14 17:14:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68794", "8", "2017-11-14 17:14:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68795", "10", "2017-11-14 17:14:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68796", "15", "2017-11-14 17:14:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68797", "10", "2017-11-14 18:52:28", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68798", "3", "2017-11-14 18:53:10", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("68799", "6", "2017-11-14 19:10:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68800", "3", "2017-11-14 19:10:32", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("68801", "9", "2017-11-14 19:10:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68802", "8", "2017-11-14 19:10:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68803", "10", "2017-11-14 19:10:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68804", "15", "2017-11-14 19:10:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68805", "14", "2017-11-14 19:48:28", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("68806", "5", "2017-11-14 19:51:56", "100.43.91.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("68807", "14", "2017-11-14 20:29:32", "54.85.182.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("68808", "3", "2017-11-14 20:36:12", "184.66.133.192", "4");
INSERT INTO `wp_rg_form_view` VALUES("68809", "6", "2017-11-14 21:05:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68810", "3", "2017-11-14 21:05:49", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68811", "9", "2017-11-14 21:05:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68812", "8", "2017-11-14 21:05:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68813", "10", "2017-11-14 21:05:51", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68814", "15", "2017-11-14 21:05:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68815", "14", "2017-11-14 21:16:16", "96.54.241.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("68816", "3", "2017-11-14 22:02:59", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68817", "6", "2017-11-14 22:03:17", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68818", "14", "2017-11-14 22:08:25", "96.54.241.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("68819", "10", "2017-11-14 22:15:35", "72.14.199.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("68820", "6", "2017-11-14 23:02:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68821", "3", "2017-11-14 23:02:09", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68822", "9", "2017-11-14 23:02:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68823", "8", "2017-11-14 23:02:10", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("68824", "10", "2017-11-14 23:02:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68825", "15", "2017-11-14 23:02:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68826", "3", "2017-11-15 00:09:30", "66.249.79.133", "4");
INSERT INTO `wp_rg_form_view` VALUES("68827", "14", "2017-11-15 00:32:55", "24.69.169.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("68828", "8", "2017-11-15 00:42:30", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68829", "16", "2017-11-15 01:01:13", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("68830", "6", "2017-11-15 01:04:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68831", "3", "2017-11-15 01:04:54", "52.37.180.245", "61");
INSERT INTO `wp_rg_form_view` VALUES("68832", "9", "2017-11-15 01:04:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68833", "8", "2017-11-15 01:04:57", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("68834", "10", "2017-11-15 01:04:59", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("68835", "15", "2017-11-15 01:05:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68836", "14", "2017-11-15 01:48:32", "75.154.240.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("68837", "3", "2017-11-15 02:03:25", "157.55.39.30", "33");
INSERT INTO `wp_rg_form_view` VALUES("68838", "6", "2017-11-15 02:08:08", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68839", "9", "2017-11-15 02:08:09", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68840", "8", "2017-11-15 02:08:09", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68841", "10", "2017-11-15 02:08:10", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("68842", "15", "2017-11-15 02:08:12", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68843", "6", "2017-11-15 03:10:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68844", "3", "2017-11-15 03:10:54", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68845", "9", "2017-11-15 03:10:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68846", "8", "2017-11-15 03:10:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68847", "10", "2017-11-15 03:10:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68848", "15", "2017-11-15 03:10:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68849", "6", "2017-11-15 04:07:26", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68850", "3", "2017-11-15 04:07:26", "216.244.66.247", "60");
INSERT INTO `wp_rg_form_view` VALUES("68851", "9", "2017-11-15 04:07:27", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68852", "8", "2017-11-15 04:07:27", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("68853", "10", "2017-11-15 04:07:28", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("68854", "15", "2017-11-15 04:07:30", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68855", "3", "2017-11-15 05:04:49", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("68856", "6", "2017-11-15 06:08:05", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68857", "3", "2017-11-15 06:08:05", "216.244.66.247", "63");
INSERT INTO `wp_rg_form_view` VALUES("68858", "9", "2017-11-15 06:08:06", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68859", "8", "2017-11-15 06:08:07", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("68860", "10", "2017-11-15 06:08:07", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("68861", "15", "2017-11-15 06:08:09", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68862", "3", "2017-11-15 07:22:03", "217.182.132.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("68863", "10", "2017-11-15 07:58:08", "194.187.170.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("68864", "3", "2017-11-15 08:10:16", "216.244.66.195", "62");
INSERT INTO `wp_rg_form_view` VALUES("68865", "6", "2017-11-15 08:15:01", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68866", "9", "2017-11-15 08:15:02", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68867", "8", "2017-11-15 08:15:02", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("68868", "10", "2017-11-15 08:15:03", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("68869", "15", "2017-11-15 08:15:06", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68870", "6", "2017-11-15 10:16:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68871", "3", "2017-11-15 10:16:12", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68872", "9", "2017-11-15 10:16:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68873", "8", "2017-11-15 10:16:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68874", "10", "2017-11-15 10:16:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68875", "15", "2017-11-15 10:16:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68876", "6", "2017-11-15 12:15:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68877", "3", "2017-11-15 12:15:20", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("68878", "9", "2017-11-15 12:15:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68879", "8", "2017-11-15 12:15:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68880", "10", "2017-11-15 12:15:22", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68881", "15", "2017-11-15 12:15:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68882", "5", "2017-11-15 12:40:28", "5.9.63.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("68883", "6", "2017-11-15 14:15:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68884", "3", "2017-11-15 14:15:54", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("68885", "9", "2017-11-15 14:15:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68886", "8", "2017-11-15 14:15:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68887", "10", "2017-11-15 14:15:57", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68888", "15", "2017-11-15 14:15:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68889", "3", "2017-11-15 15:12:34", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("68890", "9", "2017-11-15 15:57:38", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68891", "6", "2017-11-15 15:59:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68892", "8", "2017-11-15 15:59:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68893", "10", "2017-11-15 15:59:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68894", "15", "2017-11-15 15:59:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68895", "10", "2017-11-15 16:31:50", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68896", "3", "2017-11-15 16:37:26", "194.187.170.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("68897", "3", "2017-11-15 17:00:36", "66.195.33.222", "11");
INSERT INTO `wp_rg_form_view` VALUES("68898", "10", "2017-11-15 17:23:58", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("68899", "8", "2017-11-15 17:46:51", "66.102.6.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("68900", "10", "2017-11-15 18:02:37", "194.187.170.141", "6");
INSERT INTO `wp_rg_form_view` VALUES("68901", "3", "2017-11-15 18:10:43", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("68902", "9", "2017-11-15 18:11:02", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68903", "6", "2017-11-15 18:25:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68904", "8", "2017-11-15 18:26:01", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("68905", "15", "2017-11-15 18:26:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68906", "14", "2017-11-15 19:19:08", "209.52.88.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("68907", "8", "2017-11-15 19:28:02", "66.249.79.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("68908", "10", "2017-11-15 19:32:45", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68909", "3", "2017-11-15 19:55:44", "144.76.62.20", "8");
INSERT INTO `wp_rg_form_view` VALUES("68910", "8", "2017-11-15 20:13:19", "66.249.79.35", "3");
INSERT INTO `wp_rg_form_view` VALUES("68911", "6", "2017-11-15 20:17:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68912", "3", "2017-11-15 20:17:50", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68913", "9", "2017-11-15 20:17:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68914", "10", "2017-11-15 20:17:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68915", "15", "2017-11-15 20:17:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68916", "3", "2017-11-15 21:33:19", "69.1.39.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("68917", "3", "2017-11-15 22:01:12", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("68918", "6", "2017-11-15 22:16:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68919", "9", "2017-11-15 22:16:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68920", "8", "2017-11-15 22:16:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68921", "10", "2017-11-15 22:16:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68922", "15", "2017-11-15 22:16:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68923", "10", "2017-11-15 23:31:34", "199.16.157.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("68924", "3", "2017-11-15 23:47:01", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68925", "6", "2017-11-16 00:45:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68926", "3", "2017-11-16 00:45:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68927", "9", "2017-11-16 00:45:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68928", "8", "2017-11-16 00:45:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68929", "10", "2017-11-16 00:45:40", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68930", "15", "2017-11-16 00:45:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68931", "8", "2017-11-16 01:27:12", "66.102.6.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("68932", "6", "2017-11-16 02:29:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68933", "3", "2017-11-16 02:29:39", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68934", "9", "2017-11-16 02:29:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68935", "8", "2017-11-16 02:29:41", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("68936", "10", "2017-11-16 02:29:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68937", "15", "2017-11-16 02:29:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68938", "14", "2017-11-16 03:08:40", "104.223.52.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("68939", "3", "2017-11-16 03:08:46", "104.223.52.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("68940", "15", "2017-11-16 03:47:37", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68941", "9", "2017-11-16 04:12:40", "207.46.13.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("68942", "3", "2017-11-16 04:12:50", "157.55.39.160", "56");
INSERT INTO `wp_rg_form_view` VALUES("68943", "10", "2017-11-16 04:15:22", "207.46.13.172", "16");
INSERT INTO `wp_rg_form_view` VALUES("68944", "6", "2017-11-16 04:38:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68945", "8", "2017-11-16 04:38:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68946", "15", "2017-11-16 04:38:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68947", "14", "2017-11-16 04:53:16", "24.244.32.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("68948", "6", "2017-11-16 06:47:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68949", "3", "2017-11-16 06:47:18", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68950", "9", "2017-11-16 06:47:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68951", "8", "2017-11-16 06:47:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68952", "10", "2017-11-16 06:47:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68953", "15", "2017-11-16 06:47:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68954", "14", "2017-11-16 07:01:40", "172.218.195.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("68955", "3", "2017-11-16 07:13:59", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("68956", "9", "2017-11-16 07:15:09", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68957", "3", "2017-11-16 08:02:07", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("68958", "6", "2017-11-16 08:56:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68959", "9", "2017-11-16 08:56:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68960", "8", "2017-11-16 08:56:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68961", "10", "2017-11-16 08:56:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68962", "15", "2017-11-16 08:56:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68963", "9", "2017-11-16 09:24:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("68964", "14", "2017-11-16 09:47:52", "207.46.13.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("68965", "6", "2017-11-16 10:52:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68966", "3", "2017-11-16 10:52:20", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68967", "9", "2017-11-16 10:52:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68968", "8", "2017-11-16 10:52:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68969", "10", "2017-11-16 10:52:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68970", "15", "2017-11-16 10:52:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68971", "3", "2017-11-16 11:08:27", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68972", "8", "2017-11-16 11:26:37", "180.76.15.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("68973", "6", "2017-11-16 12:35:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68974", "3", "2017-11-16 12:35:31", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68975", "9", "2017-11-16 12:35:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68976", "8", "2017-11-16 12:35:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68977", "10", "2017-11-16 12:35:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68978", "15", "2017-11-16 12:35:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68979", "3", "2017-11-16 13:16:48", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("68980", "10", "2017-11-16 13:35:23", "72.14.199.73", "7");
INSERT INTO `wp_rg_form_view` VALUES("68981", "8", "2017-11-16 13:40:51", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("68982", "6", "2017-11-16 13:45:58", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68983", "9", "2017-11-16 13:45:59", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68984", "15", "2017-11-16 13:46:02", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("68985", "6", "2017-11-16 14:17:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68986", "3", "2017-11-16 14:17:03", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("68987", "9", "2017-11-16 14:17:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68988", "8", "2017-11-16 14:17:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68989", "10", "2017-11-16 14:17:06", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("68990", "15", "2017-11-16 14:17:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68991", "3", "2017-11-16 15:24:20", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("68992", "3", "2017-11-16 16:18:39", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("68993", "6", "2017-11-16 16:19:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68994", "9", "2017-11-16 16:19:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68995", "8", "2017-11-16 16:19:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("68996", "10", "2017-11-16 16:19:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("68997", "15", "2017-11-16 16:19:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("68998", "3", "2017-11-16 17:02:55", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("68999", "10", "2017-11-16 17:18:36", "157.55.39.160", "2");
INSERT INTO `wp_rg_form_view` VALUES("69000", "14", "2017-11-16 17:21:57", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("69001", "6", "2017-11-16 18:04:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69002", "3", "2017-11-16 18:04:07", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69003", "9", "2017-11-16 18:04:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69004", "8", "2017-11-16 18:04:10", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("69005", "10", "2017-11-16 18:04:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69006", "15", "2017-11-16 18:04:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69007", "3", "2017-11-16 19:17:17", "216.244.66.247", "37");
INSERT INTO `wp_rg_form_view` VALUES("69008", "6", "2017-11-16 19:46:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69009", "9", "2017-11-16 19:46:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69010", "8", "2017-11-16 19:46:57", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("69011", "10", "2017-11-16 19:46:59", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69012", "15", "2017-11-16 19:47:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69013", "10", "2017-11-16 21:03:47", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("69014", "6", "2017-11-16 21:36:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69015", "3", "2017-11-16 21:36:29", "52.37.180.245", "39");
INSERT INTO `wp_rg_form_view` VALUES("69016", "9", "2017-11-16 21:36:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69017", "8", "2017-11-16 21:36:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69018", "15", "2017-11-16 21:36:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69019", "6", "2017-11-16 23:40:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69020", "3", "2017-11-16 23:40:18", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69021", "9", "2017-11-16 23:40:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69022", "8", "2017-11-16 23:40:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69023", "10", "2017-11-16 23:40:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69024", "15", "2017-11-16 23:40:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69025", "10", "2017-11-17 00:12:04", "157.55.39.206", "3");
INSERT INTO `wp_rg_form_view` VALUES("69026", "3", "2017-11-17 00:26:14", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("69027", "14", "2017-11-17 00:47:34", "206.87.162.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("69028", "3", "2017-11-17 01:00:15", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("69029", "6", "2017-11-17 01:36:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69030", "9", "2017-11-17 01:36:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69031", "8", "2017-11-17 01:36:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69032", "10", "2017-11-17 01:36:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69033", "15", "2017-11-17 01:36:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69034", "10", "2017-11-17 02:31:10", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69035", "3", "2017-11-17 02:31:44", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("69036", "6", "2017-11-17 03:34:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69037", "3", "2017-11-17 03:34:31", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69038", "9", "2017-11-17 03:34:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69039", "8", "2017-11-17 03:34:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69040", "10", "2017-11-17 03:34:34", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69041", "15", "2017-11-17 03:34:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69042", "10", "2017-11-17 04:02:28", "72.14.199.71", "8");
INSERT INTO `wp_rg_form_view` VALUES("69043", "3", "2017-11-17 04:19:16", "157.55.39.30", "25");
INSERT INTO `wp_rg_form_view` VALUES("69044", "9", "2017-11-17 04:19:21", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("69045", "6", "2017-11-17 04:19:49", "40.77.167.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("69046", "11", "2017-11-17 04:23:26", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("69047", "8", "2017-11-17 04:24:25", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("69048", "15", "2017-11-17 04:26:17", "40.77.167.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("69049", "6", "2017-11-17 05:31:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69050", "3", "2017-11-17 05:31:41", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69051", "9", "2017-11-17 05:31:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69052", "8", "2017-11-17 05:31:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69053", "10", "2017-11-17 05:31:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69054", "15", "2017-11-17 05:31:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69055", "3", "2017-11-17 06:36:04", "96.50.54.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("69056", "6", "2017-11-17 07:18:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69057", "3", "2017-11-17 07:18:34", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69058", "9", "2017-11-17 07:18:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69059", "8", "2017-11-17 07:18:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69060", "10", "2017-11-17 07:18:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69061", "15", "2017-11-17 07:18:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69062", "3", "2017-11-17 08:20:36", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("69063", "6", "2017-11-17 09:07:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69064", "3", "2017-11-17 09:07:11", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69065", "9", "2017-11-17 09:07:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69066", "8", "2017-11-17 09:07:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69067", "10", "2017-11-17 09:07:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69068", "15", "2017-11-17 09:07:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69069", "3", "2017-11-17 10:45:46", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("69070", "6", "2017-11-17 11:01:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69071", "3", "2017-11-17 11:01:23", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("69072", "9", "2017-11-17 11:01:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69073", "8", "2017-11-17 11:01:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69074", "10", "2017-11-17 11:01:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69075", "15", "2017-11-17 11:01:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69076", "6", "2017-11-17 12:44:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69077", "3", "2017-11-17 12:44:00", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69078", "9", "2017-11-17 12:44:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69079", "8", "2017-11-17 12:44:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69080", "10", "2017-11-17 12:44:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69081", "15", "2017-11-17 12:44:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69082", "3", "2017-11-17 13:52:36", "216.244.66.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("69083", "6", "2017-11-17 14:36:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69084", "3", "2017-11-17 14:36:55", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69085", "9", "2017-11-17 14:36:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69086", "8", "2017-11-17 14:36:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69087", "10", "2017-11-17 14:36:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69088", "15", "2017-11-17 14:37:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69089", "10", "2017-11-17 15:05:23", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("69090", "3", "2017-11-17 15:06:09", "216.244.66.195", "14");
INSERT INTO `wp_rg_form_view` VALUES("69091", "6", "2017-11-17 16:26:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69092", "3", "2017-11-17 16:26:39", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69093", "9", "2017-11-17 16:26:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69094", "8", "2017-11-17 16:26:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69095", "10", "2017-11-17 16:26:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69096", "15", "2017-11-17 16:26:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69097", "10", "2017-11-17 17:24:08", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("69098", "3", "2017-11-17 18:09:14", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("69099", "6", "2017-11-17 18:31:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69100", "9", "2017-11-17 18:31:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69101", "8", "2017-11-17 18:31:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69102", "10", "2017-11-17 18:31:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69103", "15", "2017-11-17 18:31:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69104", "3", "2017-11-17 19:02:08", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("69105", "6", "2017-11-17 19:02:32", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("69106", "3", "2017-11-17 20:16:16", "216.244.66.195", "63");
INSERT INTO `wp_rg_form_view` VALUES("69107", "6", "2017-11-17 20:20:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69108", "9", "2017-11-17 20:20:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69109", "8", "2017-11-17 20:20:03", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69110", "10", "2017-11-17 20:20:04", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69111", "15", "2017-11-17 20:20:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69112", "3", "2017-11-17 21:07:34", "194.187.170.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("69113", "8", "2017-11-17 22:06:30", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("69114", "3", "2017-11-17 22:07:13", "216.244.66.247", "63");
INSERT INTO `wp_rg_form_view` VALUES("69115", "6", "2017-11-17 22:10:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69116", "9", "2017-11-17 22:10:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69117", "10", "2017-11-17 22:10:06", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69118", "15", "2017-11-17 22:10:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69119", "3", "2017-11-17 23:17:45", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("69120", "14", "2017-11-17 23:39:46", "96.54.241.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("69121", "6", "2017-11-17 23:55:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69122", "9", "2017-11-17 23:55:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69123", "8", "2017-11-17 23:55:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69124", "10", "2017-11-17 23:55:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69125", "15", "2017-11-17 23:55:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69126", "8", "2017-11-18 00:09:27", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("69127", "14", "2017-11-18 00:19:11", "23.245.152.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("69128", "3", "2017-11-18 00:19:16", "23.245.152.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("69129", "3", "2017-11-18 01:24:14", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("69130", "9", "2017-11-18 01:24:17", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69131", "8", "2017-11-18 01:25:42", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69132", "6", "2017-11-18 02:06:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69133", "3", "2017-11-18 02:06:00", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69134", "9", "2017-11-18 02:06:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69135", "8", "2017-11-18 02:06:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69136", "10", "2017-11-18 02:06:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69137", "15", "2017-11-18 02:06:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69138", "3", "2017-11-18 03:01:31", "207.46.13.136", "33");
INSERT INTO `wp_rg_form_view` VALUES("69139", "6", "2017-11-18 03:51:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69140", "9", "2017-11-18 03:51:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69141", "8", "2017-11-18 03:51:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69142", "10", "2017-11-18 03:51:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69143", "15", "2017-11-18 03:51:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69144", "6", "2017-11-18 04:03:16", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69145", "3", "2017-11-18 04:03:16", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("69146", "9", "2017-11-18 04:03:17", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69147", "8", "2017-11-18 04:03:18", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("69148", "10", "2017-11-18 04:03:18", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("69149", "15", "2017-11-18 04:03:22", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69150", "10", "2017-11-18 05:24:32", "72.14.199.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("69151", "6", "2017-11-18 05:41:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69152", "3", "2017-11-18 05:41:15", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69153", "9", "2017-11-18 05:41:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69154", "8", "2017-11-18 05:41:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69155", "15", "2017-11-18 05:41:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69156", "3", "2017-11-18 06:18:40", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("69157", "3", "2017-11-18 07:34:30", "5.39.85.81", "67");
INSERT INTO `wp_rg_form_view` VALUES("69158", "6", "2017-11-18 07:34:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69159", "9", "2017-11-18 07:34:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69160", "8", "2017-11-18 07:34:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69161", "10", "2017-11-18 07:34:47", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69162", "15", "2017-11-18 07:34:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69163", "14", "2017-11-18 07:36:45", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("69164", "3", "2017-11-18 09:23:45", "157.55.39.160", "33");
INSERT INTO `wp_rg_form_view` VALUES("69165", "14", "2017-11-18 09:25:02", "104.223.31.75", "3");
INSERT INTO `wp_rg_form_view` VALUES("69166", "6", "2017-11-18 09:25:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69167", "9", "2017-11-18 09:25:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69168", "8", "2017-11-18 09:25:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69169", "10", "2017-11-18 09:25:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69170", "15", "2017-11-18 09:25:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69171", "10", "2017-11-18 10:23:25", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69172", "3", "2017-11-18 11:12:23", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("69173", "6", "2017-11-18 11:15:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69174", "9", "2017-11-18 11:15:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69175", "8", "2017-11-18 11:15:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69176", "10", "2017-11-18 11:15:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69177", "15", "2017-11-18 11:16:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69178", "10", "2017-11-18 12:42:33", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("69179", "6", "2017-11-18 12:55:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69180", "3", "2017-11-18 12:55:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69181", "9", "2017-11-18 12:55:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69182", "8", "2017-11-18 12:55:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69183", "15", "2017-11-18 12:55:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69184", "3", "2017-11-18 13:15:35", "77.75.76.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("69185", "3", "2017-11-18 14:29:27", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("69186", "10", "2017-11-18 14:39:15", "199.16.157.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("69187", "6", "2017-11-18 14:50:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69188", "9", "2017-11-18 14:50:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69189", "8", "2017-11-18 14:50:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69190", "15", "2017-11-18 14:50:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69191", "9", "2017-11-18 15:07:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("69192", "3", "2017-11-18 15:08:15", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("69193", "10", "2017-11-18 15:38:27", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("69194", "6", "2017-11-18 16:50:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69195", "3", "2017-11-18 16:50:37", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69196", "9", "2017-11-18 16:50:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69197", "8", "2017-11-18 16:50:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69198", "10", "2017-11-18 16:50:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69199", "15", "2017-11-18 16:50:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69200", "3", "2017-11-18 17:13:01", "158.222.15.3", "4");
INSERT INTO `wp_rg_form_view` VALUES("69201", "10", "2017-11-18 17:38:42", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("69202", "6", "2017-11-18 18:50:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69203", "3", "2017-11-18 18:50:56", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69204", "9", "2017-11-18 18:50:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69205", "8", "2017-11-18 18:50:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69206", "10", "2017-11-18 18:50:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69207", "15", "2017-11-18 18:51:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69208", "6", "2017-11-18 19:00:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69209", "3", "2017-11-18 19:00:20", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("69210", "9", "2017-11-18 19:00:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69211", "8", "2017-11-18 19:00:21", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69212", "10", "2017-11-18 19:00:22", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("69213", "15", "2017-11-18 19:00:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69214", "3", "2017-11-18 20:34:26", "216.244.66.195", "62");
INSERT INTO `wp_rg_form_view` VALUES("69215", "6", "2017-11-18 20:54:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69216", "9", "2017-11-18 20:54:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69217", "8", "2017-11-18 20:54:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69218", "10", "2017-11-18 20:54:55", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69219", "15", "2017-11-18 20:54:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69220", "3", "2017-11-18 21:11:46", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("69221", "3", "2017-11-18 22:45:15", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("69222", "6", "2017-11-18 22:51:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69223", "9", "2017-11-18 22:51:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69224", "8", "2017-11-18 22:51:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69225", "10", "2017-11-18 22:51:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69226", "15", "2017-11-18 22:51:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69227", "3", "2017-11-18 23:16:26", "46.165.228.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69228", "3", "2017-11-19 00:06:56", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("69229", "6", "2017-11-19 00:55:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69230", "9", "2017-11-19 00:55:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69231", "8", "2017-11-19 00:55:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69232", "10", "2017-11-19 00:55:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69233", "15", "2017-11-19 00:55:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69234", "3", "2017-11-19 02:45:59", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("69235", "6", "2017-11-19 02:49:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69236", "9", "2017-11-19 02:49:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69237", "8", "2017-11-19 02:49:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69238", "10", "2017-11-19 02:49:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69239", "15", "2017-11-19 02:49:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69240", "3", "2017-11-19 03:19:11", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69241", "15", "2017-11-19 04:40:24", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("69242", "3", "2017-11-19 04:40:39", "216.244.66.195", "61");
INSERT INTO `wp_rg_form_view` VALUES("69243", "6", "2017-11-19 04:44:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69244", "9", "2017-11-19 04:44:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69245", "8", "2017-11-19 04:44:51", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69246", "10", "2017-11-19 04:44:51", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69247", "3", "2017-11-19 06:14:10", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("69248", "6", "2017-11-19 06:41:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69249", "9", "2017-11-19 06:41:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69250", "8", "2017-11-19 06:41:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69251", "10", "2017-11-19 06:41:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69252", "15", "2017-11-19 06:41:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69253", "9", "2017-11-19 07:26:55", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("69254", "14", "2017-11-19 08:19:39", "195.154.21.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("69255", "6", "2017-11-19 08:25:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69256", "3", "2017-11-19 08:25:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69257", "9", "2017-11-19 08:25:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69258", "8", "2017-11-19 08:25:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69259", "10", "2017-11-19 08:25:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69260", "15", "2017-11-19 08:25:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69261", "6", "2017-11-19 10:23:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69262", "3", "2017-11-19 10:23:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69263", "9", "2017-11-19 10:23:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69264", "8", "2017-11-19 10:23:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69265", "10", "2017-11-19 10:23:50", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69266", "15", "2017-11-19 10:23:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69267", "6", "2017-11-19 12:29:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69268", "3", "2017-11-19 12:29:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69269", "9", "2017-11-19 12:29:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69270", "8", "2017-11-19 12:29:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69271", "10", "2017-11-19 12:29:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69272", "15", "2017-11-19 12:29:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69273", "10", "2017-11-19 13:00:32", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("69274", "6", "2017-11-19 14:36:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69275", "3", "2017-11-19 14:36:23", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69276", "9", "2017-11-19 14:36:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69277", "8", "2017-11-19 14:36:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69278", "10", "2017-11-19 14:36:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69279", "15", "2017-11-19 14:36:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69280", "14", "2017-11-19 16:24:06", "104.142.127.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("69281", "6", "2017-11-19 16:35:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69282", "3", "2017-11-19 16:35:29", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69283", "9", "2017-11-19 16:35:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69284", "8", "2017-11-19 16:35:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69285", "10", "2017-11-19 16:35:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69286", "15", "2017-11-19 16:35:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69287", "6", "2017-11-19 18:21:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69288", "3", "2017-11-19 18:21:56", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69289", "9", "2017-11-19 18:21:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69290", "8", "2017-11-19 18:21:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69291", "10", "2017-11-19 18:21:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69292", "15", "2017-11-19 18:22:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69293", "10", "2017-11-19 19:30:59", "180.76.15.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("69294", "8", "2017-11-19 20:06:24", "24.108.184.241", "3");
INSERT INTO `wp_rg_form_view` VALUES("69295", "6", "2017-11-19 20:29:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69296", "3", "2017-11-19 20:29:41", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69297", "9", "2017-11-19 20:29:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69298", "10", "2017-11-19 20:29:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69299", "15", "2017-11-19 20:29:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69300", "14", "2017-11-19 22:01:21", "24.108.26.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("69301", "6", "2017-11-19 22:24:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69302", "3", "2017-11-19 22:24:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69303", "9", "2017-11-19 22:24:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69304", "8", "2017-11-19 22:24:38", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("69305", "10", "2017-11-19 22:24:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69306", "15", "2017-11-19 22:24:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69307", "3", "2017-11-19 23:23:58", "24.108.26.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("69308", "6", "2017-11-20 00:06:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69309", "3", "2017-11-20 00:06:28", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69310", "9", "2017-11-20 00:06:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69311", "8", "2017-11-20 00:06:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69312", "10", "2017-11-20 00:06:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69313", "15", "2017-11-20 00:06:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69314", "3", "2017-11-20 01:36:14", "96.241.76.204", "33");
INSERT INTO `wp_rg_form_view` VALUES("69315", "6", "2017-11-20 01:57:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69316", "9", "2017-11-20 01:57:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69317", "8", "2017-11-20 01:57:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69318", "10", "2017-11-20 01:57:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69319", "15", "2017-11-20 01:57:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69320", "3", "2017-11-20 02:39:47", "191.101.116.172", "8");
INSERT INTO `wp_rg_form_view` VALUES("69321", "6", "2017-11-20 03:37:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69322", "3", "2017-11-20 03:37:05", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69323", "9", "2017-11-20 03:37:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69324", "8", "2017-11-20 03:37:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69325", "10", "2017-11-20 03:37:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69326", "15", "2017-11-20 03:37:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69327", "3", "2017-11-20 04:01:42", "66.249.79.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("69328", "3", "2017-11-20 05:02:30", "69.11.67.130", "32");
INSERT INTO `wp_rg_form_view` VALUES("69329", "8", "2017-11-20 05:03:47", "69.11.67.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("69330", "6", "2017-11-20 05:23:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69331", "9", "2017-11-20 05:23:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69332", "10", "2017-11-20 05:23:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69333", "15", "2017-11-20 05:23:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69334", "3", "2017-11-20 07:03:54", "180.76.15.140", "55");
INSERT INTO `wp_rg_form_view` VALUES("69335", "6", "2017-11-20 07:06:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69336", "9", "2017-11-20 07:06:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69337", "8", "2017-11-20 07:06:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69338", "10", "2017-11-20 07:06:10", "52.37.180.245", "19");
INSERT INTO `wp_rg_form_view` VALUES("69339", "15", "2017-11-20 07:06:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69340", "6", "2017-11-20 08:50:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69341", "3", "2017-11-20 08:50:18", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69342", "9", "2017-11-20 08:50:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69343", "8", "2017-11-20 08:50:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69344", "10", "2017-11-20 08:50:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69345", "15", "2017-11-20 08:50:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69346", "6", "2017-11-20 10:46:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69347", "3", "2017-11-20 10:46:05", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69348", "9", "2017-11-20 10:46:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69349", "8", "2017-11-20 10:46:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69350", "10", "2017-11-20 10:46:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69351", "15", "2017-11-20 10:46:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69352", "3", "2017-11-20 11:44:30", "180.76.15.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("69353", "10", "2017-11-20 11:57:43", "174.129.1.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("69354", "10", "2017-11-20 12:05:38", "72.14.199.71", "8");
INSERT INTO `wp_rg_form_view` VALUES("69355", "3", "2017-11-20 12:09:38", "144.76.4.148", "52");
INSERT INTO `wp_rg_form_view` VALUES("69356", "9", "2017-11-20 12:10:38", "144.76.4.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("69357", "8", "2017-11-20 12:11:41", "144.76.4.148", "4");
INSERT INTO `wp_rg_form_view` VALUES("69358", "11", "2017-11-20 12:13:50", "144.76.4.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("69359", "12", "2017-11-20 12:41:30", "144.76.4.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("69360", "6", "2017-11-20 12:51:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69361", "15", "2017-11-20 12:51:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69362", "14", "2017-11-20 14:52:44", "46.42.164.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("69363", "6", "2017-11-20 15:12:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69364", "3", "2017-11-20 15:12:10", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69365", "9", "2017-11-20 15:12:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69366", "8", "2017-11-20 15:12:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69367", "10", "2017-11-20 15:12:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69368", "15", "2017-11-20 15:12:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69369", "3", "2017-11-20 16:05:12", "180.76.15.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("69370", "6", "2017-11-20 17:07:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69371", "3", "2017-11-20 17:07:42", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("69372", "9", "2017-11-20 17:07:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69373", "8", "2017-11-20 17:07:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69374", "10", "2017-11-20 17:07:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69375", "15", "2017-11-20 17:07:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69376", "3", "2017-11-20 18:03:23", "164.132.162.157", "32");
INSERT INTO `wp_rg_form_view` VALUES("69377", "6", "2017-11-20 18:57:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69378", "9", "2017-11-20 18:57:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69379", "8", "2017-11-20 18:57:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69380", "10", "2017-11-20 18:57:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69381", "15", "2017-11-20 18:57:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69382", "3", "2017-11-20 19:21:55", "75.157.130.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("69383", "8", "2017-11-20 20:40:01", "66.102.6.152", "5");
INSERT INTO `wp_rg_form_view` VALUES("69384", "6", "2017-11-20 20:49:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69385", "3", "2017-11-20 20:49:55", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("69386", "9", "2017-11-20 20:49:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69387", "10", "2017-11-20 20:49:58", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69388", "15", "2017-11-20 20:50:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69389", "3", "2017-11-20 21:28:03", "24.108.20.122", "3");
INSERT INTO `wp_rg_form_view` VALUES("69390", "10", "2017-11-20 22:00:07", "100.43.91.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("69391", "6", "2017-11-20 22:52:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69392", "3", "2017-11-20 22:52:19", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69393", "9", "2017-11-20 22:52:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69394", "8", "2017-11-20 22:52:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69395", "15", "2017-11-20 22:52:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69396", "11", "2017-11-20 23:27:06", "157.55.39.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("69397", "3", "2017-11-21 00:08:27", "194.187.170.119", "35");
INSERT INTO `wp_rg_form_view` VALUES("69398", "14", "2017-11-21 00:11:27", "194.187.170.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("69399", "10", "2017-11-21 00:22:52", "194.187.170.119", "8");
INSERT INTO `wp_rg_form_view` VALUES("69400", "6", "2017-11-21 00:46:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69401", "9", "2017-11-21 00:46:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69402", "8", "2017-11-21 00:46:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69403", "15", "2017-11-21 00:46:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69404", "3", "2017-11-21 01:09:23", "194.187.170.119", "4");
INSERT INTO `wp_rg_form_view` VALUES("69405", "10", "2017-11-21 01:16:35", "194.187.170.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("69406", "3", "2017-11-21 02:00:20", "68.180.228.176", "31");
INSERT INTO `wp_rg_form_view` VALUES("69407", "10", "2017-11-21 02:06:39", "72.14.199.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("69408", "6", "2017-11-21 02:51:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69409", "9", "2017-11-21 02:51:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69410", "8", "2017-11-21 02:51:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69411", "15", "2017-11-21 02:51:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69412", "8", "2017-11-21 03:01:58", "157.55.39.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("69413", "3", "2017-11-21 03:46:10", "180.76.15.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("69414", "3", "2017-11-21 04:21:41", "51.255.65.59", "33");
INSERT INTO `wp_rg_form_view` VALUES("69415", "6", "2017-11-21 04:37:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69416", "9", "2017-11-21 04:37:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69417", "8", "2017-11-21 04:37:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69418", "10", "2017-11-21 04:37:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69419", "15", "2017-11-21 04:37:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69420", "3", "2017-11-21 06:13:54", "209.206.127.137", "31");
INSERT INTO `wp_rg_form_view` VALUES("69421", "6", "2017-11-21 06:36:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69422", "9", "2017-11-21 06:36:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69423", "8", "2017-11-21 06:36:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69424", "10", "2017-11-21 06:36:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69425", "15", "2017-11-21 06:36:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69426", "3", "2017-11-21 08:16:11", "157.55.39.36", "39");
INSERT INTO `wp_rg_form_view` VALUES("69427", "6", "2017-11-21 08:20:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69428", "9", "2017-11-21 08:20:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69429", "8", "2017-11-21 08:20:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69430", "10", "2017-11-21 08:20:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69431", "15", "2017-11-21 08:21:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69432", "10", "2017-11-21 09:04:11", "217.182.132.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("69433", "6", "2017-11-21 10:11:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69434", "3", "2017-11-21 10:11:52", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("69435", "9", "2017-11-21 10:11:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69436", "8", "2017-11-21 10:11:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69437", "10", "2017-11-21 10:11:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69438", "15", "2017-11-21 10:11:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69439", "3", "2017-11-21 11:11:16", "164.132.161.37", "31");
INSERT INTO `wp_rg_form_view` VALUES("69440", "6", "2017-11-21 11:57:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69441", "9", "2017-11-21 11:57:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69442", "8", "2017-11-21 11:57:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69443", "10", "2017-11-21 11:57:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69444", "15", "2017-11-21 11:57:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69445", "3", "2017-11-21 12:22:20", "92.156.242.49", "15");
INSERT INTO `wp_rg_form_view` VALUES("69446", "10", "2017-11-21 12:25:47", "92.156.242.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("69447", "6", "2017-11-21 13:36:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69448", "3", "2017-11-21 13:36:45", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69449", "9", "2017-11-21 13:36:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69450", "8", "2017-11-21 13:36:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69451", "10", "2017-11-21 13:36:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69452", "15", "2017-11-21 13:36:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69453", "6", "2017-11-21 15:26:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69454", "3", "2017-11-21 15:26:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69455", "9", "2017-11-21 15:26:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69456", "8", "2017-11-21 15:26:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69457", "10", "2017-11-21 15:26:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69458", "15", "2017-11-21 15:26:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69459", "14", "2017-11-21 15:29:34", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("69460", "6", "2017-11-21 17:01:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69461", "3", "2017-11-21 17:01:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69462", "9", "2017-11-21 17:01:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69463", "8", "2017-11-21 17:01:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69464", "10", "2017-11-21 17:01:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69465", "15", "2017-11-21 17:01:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69466", "6", "2017-11-21 18:34:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69467", "3", "2017-11-21 18:34:28", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69468", "9", "2017-11-21 18:34:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69469", "8", "2017-11-21 18:34:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69470", "10", "2017-11-21 18:34:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69471", "15", "2017-11-21 18:34:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69472", "3", "2017-11-21 19:08:35", "184.71.18.250", "4");
INSERT INTO `wp_rg_form_view` VALUES("69473", "14", "2017-11-21 19:46:23", "24.68.101.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("69474", "6", "2017-11-21 20:11:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69475", "3", "2017-11-21 20:11:46", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69476", "9", "2017-11-21 20:11:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69477", "8", "2017-11-21 20:11:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69478", "10", "2017-11-21 20:11:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69479", "15", "2017-11-21 20:11:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69480", "3", "2017-11-21 21:30:06", "178.63.1.153", "5");
INSERT INTO `wp_rg_form_view` VALUES("69481", "8", "2017-11-21 21:33:22", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("69482", "14", "2017-11-21 21:37:13", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("69483", "6", "2017-11-21 22:02:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69484", "3", "2017-11-21 22:02:21", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69485", "9", "2017-11-21 22:02:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69486", "8", "2017-11-21 22:02:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69487", "10", "2017-11-21 22:02:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69488", "15", "2017-11-21 22:02:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69489", "6", "2017-11-21 23:36:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69490", "3", "2017-11-21 23:36:54", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69491", "9", "2017-11-21 23:36:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69492", "8", "2017-11-21 23:36:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69493", "10", "2017-11-21 23:36:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69494", "15", "2017-11-21 23:37:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69495", "3", "2017-11-22 00:34:06", "180.76.15.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("69496", "6", "2017-11-22 01:22:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69497", "3", "2017-11-22 01:22:09", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69498", "9", "2017-11-22 01:22:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69499", "8", "2017-11-22 01:22:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69500", "10", "2017-11-22 01:22:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69501", "15", "2017-11-22 01:22:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69502", "3", "2017-11-22 02:25:49", "217.182.132.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("69503", "6", "2017-11-22 03:07:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69504", "3", "2017-11-22 03:07:15", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69505", "9", "2017-11-22 03:07:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69506", "8", "2017-11-22 03:07:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69507", "10", "2017-11-22 03:07:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69508", "15", "2017-11-22 03:07:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69509", "3", "2017-11-22 04:17:08", "24.68.32.106", "33");
INSERT INTO `wp_rg_form_view` VALUES("69510", "6", "2017-11-22 04:55:35", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69511", "9", "2017-11-22 04:55:36", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69512", "8", "2017-11-22 04:55:36", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("69513", "10", "2017-11-22 04:55:37", "216.244.66.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("69514", "15", "2017-11-22 04:55:39", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69515", "6", "2017-11-22 05:03:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69516", "3", "2017-11-22 05:03:34", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69517", "9", "2017-11-22 05:03:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69518", "8", "2017-11-22 05:03:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69519", "10", "2017-11-22 05:03:36", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69520", "15", "2017-11-22 05:03:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69521", "3", "2017-11-22 06:06:12", "50.65.184.219", "34");
INSERT INTO `wp_rg_form_view` VALUES("69522", "6", "2017-11-22 06:37:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69523", "9", "2017-11-22 06:37:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69524", "8", "2017-11-22 06:37:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69525", "10", "2017-11-22 06:37:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69526", "15", "2017-11-22 06:37:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69527", "6", "2017-11-22 08:17:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69528", "3", "2017-11-22 08:17:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69529", "9", "2017-11-22 08:17:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69530", "8", "2017-11-22 08:17:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69531", "10", "2017-11-22 08:17:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69532", "15", "2017-11-22 08:17:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69533", "6", "2017-11-22 09:58:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69534", "3", "2017-11-22 09:58:46", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69535", "9", "2017-11-22 09:58:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69536", "8", "2017-11-22 09:58:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69537", "10", "2017-11-22 09:58:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69538", "15", "2017-11-22 09:58:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69539", "10", "2017-11-22 10:25:40", "5.189.169.91", "2");
INSERT INTO `wp_rg_form_view` VALUES("69540", "3", "2017-11-22 10:44:58", "54.162.166.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("69541", "3", "2017-11-22 11:25:49", "180.76.15.10", "31");
INSERT INTO `wp_rg_form_view` VALUES("69542", "6", "2017-11-22 11:38:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69543", "9", "2017-11-22 11:38:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69544", "8", "2017-11-22 11:38:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69545", "10", "2017-11-22 11:38:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69546", "15", "2017-11-22 11:38:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69547", "3", "2017-11-22 12:01:57", "207.46.13.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("69548", "10", "2017-11-22 12:54:54", "79.143.186.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("69549", "6", "2017-11-22 13:31:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69550", "3", "2017-11-22 13:31:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69551", "9", "2017-11-22 13:31:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69552", "8", "2017-11-22 13:31:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69553", "10", "2017-11-22 13:31:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69554", "15", "2017-11-22 13:31:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69555", "10", "2017-11-22 14:12:37", "51.255.65.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("69556", "9", "2017-11-22 14:30:37", "164.132.161.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("69557", "3", "2017-11-22 15:08:24", "62.210.157.95", "32");
INSERT INTO `wp_rg_form_view` VALUES("69558", "6", "2017-11-22 15:17:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69559", "9", "2017-11-22 15:17:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69560", "8", "2017-11-22 15:17:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69561", "10", "2017-11-22 15:17:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69562", "15", "2017-11-22 15:17:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69563", "3", "2017-11-22 16:20:22", "62.210.101.101", "6");
INSERT INTO `wp_rg_form_view` VALUES("69564", "6", "2017-11-22 17:18:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69565", "3", "2017-11-22 17:18:03", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69566", "9", "2017-11-22 17:18:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69567", "8", "2017-11-22 17:18:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69568", "10", "2017-11-22 17:18:05", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69569", "15", "2017-11-22 17:18:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69570", "14", "2017-11-22 17:43:07", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69571", "8", "2017-11-22 18:54:48", "66.102.6.151", "1");
INSERT INTO `wp_rg_form_view` VALUES("69572", "6", "2017-11-22 19:07:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69573", "3", "2017-11-22 19:07:12", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("69574", "9", "2017-11-22 19:07:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69575", "8", "2017-11-22 19:07:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69576", "10", "2017-11-22 19:07:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69577", "15", "2017-11-22 19:07:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69578", "14", "2017-11-22 19:30:12", "195.154.21.212", "4");
INSERT INTO `wp_rg_form_view` VALUES("69579", "10", "2017-11-22 20:18:28", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("69580", "3", "2017-11-22 20:46:26", "144.76.62.20", "8");
INSERT INTO `wp_rg_form_view` VALUES("69581", "6", "2017-11-22 21:02:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69582", "3", "2017-11-22 21:02:16", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69583", "9", "2017-11-22 21:02:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69584", "8", "2017-11-22 21:02:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69585", "10", "2017-11-22 21:02:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69586", "15", "2017-11-22 21:02:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69587", "6", "2017-11-22 22:58:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69588", "3", "2017-11-22 22:58:00", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69589", "9", "2017-11-22 22:58:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69590", "8", "2017-11-22 22:58:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69591", "10", "2017-11-22 22:58:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69592", "15", "2017-11-22 22:58:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69593", "3", "2017-11-23 00:24:26", "157.55.39.197", "31");
INSERT INTO `wp_rg_form_view` VALUES("69594", "6", "2017-11-23 00:46:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69595", "9", "2017-11-23 00:46:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69596", "8", "2017-11-23 00:46:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69597", "10", "2017-11-23 00:46:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69598", "15", "2017-11-23 00:46:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69599", "3", "2017-11-23 01:00:15", "164.132.161.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("69600", "3", "2017-11-23 02:16:24", "180.76.15.14", "32");
INSERT INTO `wp_rg_form_view` VALUES("69601", "9", "2017-11-23 02:31:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69602", "8", "2017-11-23 02:31:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69603", "10", "2017-11-23 02:31:05", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69604", "15", "2017-11-23 02:31:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69605", "3", "2017-11-23 04:11:54", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69606", "9", "2017-11-23 04:11:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69607", "8", "2017-11-23 04:11:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69608", "10", "2017-11-23 04:11:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69609", "15", "2017-11-23 04:11:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69610", "10", "2017-11-23 05:39:08", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("69611", "3", "2017-11-23 05:49:20", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69612", "9", "2017-11-23 05:49:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69613", "8", "2017-11-23 05:49:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69614", "15", "2017-11-23 05:49:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69615", "3", "2017-11-23 07:21:24", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69616", "9", "2017-11-23 07:21:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69617", "8", "2017-11-23 07:21:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69618", "10", "2017-11-23 07:21:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69619", "15", "2017-11-23 07:21:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69620", "10", "2017-11-23 08:43:17", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("69621", "3", "2017-11-23 09:01:35", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("69622", "9", "2017-11-23 09:01:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69623", "8", "2017-11-23 09:01:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69624", "10", "2017-11-23 09:01:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69625", "15", "2017-11-23 09:01:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69626", "14", "2017-11-23 09:03:06", "134.255.243.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("69627", "6", "2017-11-23 09:54:07", "217.182.132.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("69628", "3", "2017-11-23 10:45:27", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69629", "9", "2017-11-23 10:45:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69630", "8", "2017-11-23 10:45:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69631", "10", "2017-11-23 10:45:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69632", "15", "2017-11-23 10:45:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69633", "3", "2017-11-23 11:38:21", "180.76.15.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("69634", "3", "2017-11-23 12:54:18", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69635", "9", "2017-11-23 12:54:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69636", "8", "2017-11-23 12:54:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69637", "10", "2017-11-23 12:54:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69638", "15", "2017-11-23 12:54:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69639", "6", "2017-11-23 13:00:23", "144.76.30.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("69640", "15", "2017-11-23 14:45:46", "40.77.167.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("69641", "3", "2017-11-23 15:05:46", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69642", "9", "2017-11-23 15:05:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69643", "8", "2017-11-23 15:05:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69644", "10", "2017-11-23 15:05:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69645", "15", "2017-11-23 15:05:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69646", "10", "2017-11-23 16:07:15", "51.255.71.121", "6");
INSERT INTO `wp_rg_form_view` VALUES("69647", "3", "2017-11-23 16:39:20", "80.241.214.123", "31");
INSERT INTO `wp_rg_form_view` VALUES("69648", "9", "2017-11-23 16:46:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69649", "8", "2017-11-23 16:46:27", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("69650", "15", "2017-11-23 16:46:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69651", "10", "2017-11-23 18:17:17", "157.55.39.122", "6");
INSERT INTO `wp_rg_form_view` VALUES("69652", "8", "2017-11-23 18:45:42", "66.102.6.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("69653", "3", "2017-11-23 18:50:45", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69654", "9", "2017-11-23 18:50:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69655", "15", "2017-11-23 18:50:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69656", "3", "2017-11-23 20:30:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69657", "9", "2017-11-23 20:30:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69658", "8", "2017-11-23 20:30:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69659", "10", "2017-11-23 20:30:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69660", "15", "2017-11-23 20:30:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69661", "3", "2017-11-23 21:14:10", "144.76.62.20", "8");
INSERT INTO `wp_rg_form_view` VALUES("69662", "11", "2017-11-23 21:57:39", "77.75.77.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("69663", "3", "2017-11-23 22:21:35", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69664", "9", "2017-11-23 22:21:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69665", "8", "2017-11-23 22:21:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69666", "10", "2017-11-23 22:21:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69667", "15", "2017-11-23 22:21:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69668", "14", "2017-11-23 22:59:35", "24.69.154.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("69669", "10", "2017-11-23 23:03:13", "66.249.92.30", "6");
INSERT INTO `wp_rg_form_view` VALUES("69670", "14", "2017-11-23 23:07:21", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("69671", "3", "2017-11-23 23:50:22", "66.249.66.29", "31");
INSERT INTO `wp_rg_form_view` VALUES("69672", "9", "2017-11-23 23:59:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69673", "8", "2017-11-23 23:59:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69674", "15", "2017-11-23 23:59:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69675", "3", "2017-11-24 00:10:31", "66.249.66.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("69676", "3", "2017-11-24 01:01:22", "217.182.132.148", "31");
INSERT INTO `wp_rg_form_view` VALUES("69677", "10", "2017-11-24 01:05:10", "217.182.132.178", "6");
INSERT INTO `wp_rg_form_view` VALUES("69678", "9", "2017-11-24 01:37:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69679", "8", "2017-11-24 01:37:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69680", "15", "2017-11-24 01:37:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69681", "3", "2017-11-24 02:02:21", "220.181.108.109", "33");
INSERT INTO `wp_rg_form_view` VALUES("69682", "9", "2017-11-24 02:21:28", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69683", "8", "2017-11-24 02:21:29", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("69684", "10", "2017-11-24 02:21:31", "216.244.66.231", "5");
INSERT INTO `wp_rg_form_view` VALUES("69685", "15", "2017-11-24 02:21:35", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69686", "3", "2017-11-24 03:14:58", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("69687", "9", "2017-11-24 03:15:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69688", "8", "2017-11-24 03:15:00", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69689", "10", "2017-11-24 03:15:01", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("69690", "15", "2017-11-24 03:15:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69691", "3", "2017-11-24 05:04:05", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69692", "9", "2017-11-24 05:04:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69693", "8", "2017-11-24 05:04:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69694", "10", "2017-11-24 05:04:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69695", "15", "2017-11-24 05:04:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69696", "3", "2017-11-24 06:41:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69697", "9", "2017-11-24 06:41:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69698", "8", "2017-11-24 06:41:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69699", "10", "2017-11-24 06:41:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69700", "15", "2017-11-24 06:41:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69701", "3", "2017-11-24 07:41:43", "157.55.39.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("69702", "3", "2017-11-24 08:16:24", "164.132.161.47", "35");
INSERT INTO `wp_rg_form_view` VALUES("69703", "9", "2017-11-24 08:26:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69704", "8", "2017-11-24 08:26:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69705", "10", "2017-11-24 08:26:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69706", "15", "2017-11-24 08:26:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69707", "3", "2017-11-24 10:11:43", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69708", "9", "2017-11-24 10:11:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69709", "8", "2017-11-24 10:11:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69710", "10", "2017-11-24 10:11:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69711", "15", "2017-11-24 10:11:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69712", "3", "2017-11-24 12:18:12", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69713", "9", "2017-11-24 12:18:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69714", "8", "2017-11-24 12:18:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69715", "10", "2017-11-24 12:18:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69716", "15", "2017-11-24 12:18:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69717", "10", "2017-11-24 13:08:25", "66.249.92.28", "9");
INSERT INTO `wp_rg_form_view` VALUES("69718", "15", "2017-11-24 13:13:58", "157.55.39.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("69719", "9", "2017-11-24 13:14:00", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("69720", "3", "2017-11-24 13:14:20", "157.55.39.210", "21");
INSERT INTO `wp_rg_form_view` VALUES("69721", "11", "2017-11-24 13:14:56", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("69722", "8", "2017-11-24 13:17:44", "157.55.39.215", "1");
INSERT INTO `wp_rg_form_view` VALUES("69723", "6", "2017-11-24 13:21:04", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("69724", "3", "2017-11-24 14:11:26", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69725", "9", "2017-11-24 14:11:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69726", "8", "2017-11-24 14:11:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69727", "10", "2017-11-24 14:11:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69728", "15", "2017-11-24 14:11:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69729", "3", "2017-11-24 15:22:34", "216.244.66.231", "31");
INSERT INTO `wp_rg_form_view` VALUES("69730", "10", "2017-11-24 15:36:30", "51.255.65.55", "6");
INSERT INTO `wp_rg_form_view` VALUES("69731", "9", "2017-11-24 15:51:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69732", "8", "2017-11-24 15:51:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69733", "15", "2017-11-24 15:51:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69734", "10", "2017-11-24 17:02:11", "51.255.65.56", "8");
INSERT INTO `wp_rg_form_view` VALUES("69735", "3", "2017-11-24 17:41:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69736", "9", "2017-11-24 17:41:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69737", "8", "2017-11-24 17:41:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69738", "15", "2017-11-24 17:41:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69739", "3", "2017-11-24 19:26:41", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69740", "9", "2017-11-24 19:26:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69741", "8", "2017-11-24 19:26:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69742", "10", "2017-11-24 19:26:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69743", "15", "2017-11-24 19:26:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69744", "3", "2017-11-24 21:17:08", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("69745", "9", "2017-11-24 21:17:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69746", "8", "2017-11-24 21:17:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69747", "10", "2017-11-24 21:17:10", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69748", "15", "2017-11-24 21:17:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69749", "3", "2017-11-24 23:01:21", "51.255.71.110", "32");
INSERT INTO `wp_rg_form_view` VALUES("69750", "10", "2017-11-24 23:02:10", "194.187.170.141", "7");
INSERT INTO `wp_rg_form_view` VALUES("69751", "9", "2017-11-24 23:18:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69752", "8", "2017-11-24 23:18:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69753", "15", "2017-11-24 23:18:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69754", "10", "2017-11-25 00:08:17", "194.187.170.141", "2");
INSERT INTO `wp_rg_form_view` VALUES("69755", "3", "2017-11-25 01:00:05", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("69756", "9", "2017-11-25 01:00:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69757", "8", "2017-11-25 01:00:06", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69758", "10", "2017-11-25 01:00:07", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69759", "15", "2017-11-25 01:00:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69760", "14", "2017-11-25 02:00:50", "24.108.29.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("69761", "10", "2017-11-25 02:16:11", "72.14.199.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("69762", "3", "2017-11-25 03:05:40", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69763", "9", "2017-11-25 03:05:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69764", "8", "2017-11-25 03:05:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69765", "10", "2017-11-25 03:05:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69766", "15", "2017-11-25 03:05:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69767", "3", "2017-11-25 04:04:18", "180.76.15.139", "31");
INSERT INTO `wp_rg_form_view` VALUES("69768", "10", "2017-11-25 04:05:48", "199.16.157.183", "6");
INSERT INTO `wp_rg_form_view` VALUES("69769", "9", "2017-11-25 04:44:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69770", "8", "2017-11-25 04:44:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69771", "15", "2017-11-25 04:44:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69772", "14", "2017-11-25 05:05:53", "46.229.168.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("69773", "3", "2017-11-25 05:07:25", "46.229.168.71", "43");
INSERT INTO `wp_rg_form_view` VALUES("69774", "9", "2017-11-25 05:08:09", "46.229.168.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("69775", "6", "2017-11-25 05:11:30", "46.229.168.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("69776", "10", "2017-11-25 05:15:42", "46.229.168.66", "7");
INSERT INTO `wp_rg_form_view` VALUES("69777", "8", "2017-11-25 05:18:33", "46.229.168.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("69778", "11", "2017-11-25 05:25:45", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("69779", "3", "2017-11-25 06:36:57", "180.76.15.29", "31");
INSERT INTO `wp_rg_form_view` VALUES("69780", "9", "2017-11-25 06:52:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69781", "8", "2017-11-25 06:52:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69782", "10", "2017-11-25 06:52:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69783", "15", "2017-11-25 06:52:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69784", "3", "2017-11-25 07:06:59", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("69785", "3", "2017-11-25 08:44:29", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69786", "9", "2017-11-25 08:44:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69787", "8", "2017-11-25 08:44:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69788", "10", "2017-11-25 08:44:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69789", "15", "2017-11-25 08:44:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69790", "3", "2017-11-25 09:23:25", "180.76.15.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("69791", "3", "2017-11-25 11:09:57", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("69792", "9", "2017-11-25 11:09:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69793", "8", "2017-11-25 11:09:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69794", "10", "2017-11-25 11:09:59", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69795", "15", "2017-11-25 11:10:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69796", "3", "2017-11-25 12:50:02", "69.30.210.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("69797", "3", "2017-11-25 13:24:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69798", "9", "2017-11-25 13:24:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69799", "8", "2017-11-25 13:24:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69800", "10", "2017-11-25 13:24:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69801", "15", "2017-11-25 13:24:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69802", "14", "2017-11-25 13:41:50", "95.28.184.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("69803", "3", "2017-11-25 15:10:02", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("69804", "9", "2017-11-25 15:10:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69805", "8", "2017-11-25 15:10:04", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69806", "10", "2017-11-25 15:10:04", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("69807", "15", "2017-11-25 15:10:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69808", "10", "2017-11-25 16:27:54", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("69809", "10", "2017-11-25 17:05:41", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("69810", "3", "2017-11-25 17:10:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69811", "9", "2017-11-25 17:10:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69812", "8", "2017-11-25 17:10:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69813", "15", "2017-11-25 17:10:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69814", "3", "2017-11-25 18:54:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69815", "9", "2017-11-25 18:54:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69816", "8", "2017-11-25 18:54:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69817", "10", "2017-11-25 18:54:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69818", "15", "2017-11-25 18:54:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69819", "3", "2017-11-25 20:17:52", "220.181.108.117", "31");
INSERT INTO `wp_rg_form_view` VALUES("69820", "10", "2017-11-25 20:33:31", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("69821", "9", "2017-11-25 20:54:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69822", "8", "2017-11-25 20:54:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69823", "15", "2017-11-25 20:54:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69824", "10", "2017-11-25 21:26:29", "51.255.71.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("69825", "3", "2017-11-25 22:40:59", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69826", "9", "2017-11-25 22:41:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69827", "8", "2017-11-25 22:41:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69828", "10", "2017-11-25 22:41:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69829", "15", "2017-11-25 22:41:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69830", "3", "2017-11-25 23:49:55", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("69831", "3", "2017-11-26 00:44:13", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69832", "9", "2017-11-26 00:44:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69833", "8", "2017-11-26 00:44:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69834", "10", "2017-11-26 00:44:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69835", "15", "2017-11-26 00:44:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69836", "3", "2017-11-26 01:23:12", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("69837", "3", "2017-11-26 02:59:08", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69838", "9", "2017-11-26 02:59:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69839", "8", "2017-11-26 02:59:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69840", "10", "2017-11-26 02:59:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69841", "15", "2017-11-26 02:59:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69842", "3", "2017-11-26 03:35:20", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("69843", "15", "2017-11-26 03:36:34", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69844", "3", "2017-11-26 04:10:29", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69845", "3", "2017-11-26 05:10:52", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69846", "9", "2017-11-26 05:10:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69847", "8", "2017-11-26 05:10:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69848", "10", "2017-11-26 05:10:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69849", "15", "2017-11-26 05:10:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69850", "3", "2017-11-26 06:08:58", "24.108.0.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("69851", "10", "2017-11-26 07:14:46", "72.14.199.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("69852", "3", "2017-11-26 07:37:19", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69853", "9", "2017-11-26 07:37:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69854", "8", "2017-11-26 07:37:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69855", "15", "2017-11-26 07:37:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69856", "9", "2017-11-26 08:29:03", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("69857", "3", "2017-11-26 08:34:49", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("69858", "14", "2017-11-26 09:17:39", "5.9.88.103", "2");
INSERT INTO `wp_rg_form_view` VALUES("69859", "3", "2017-11-26 09:28:57", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("69860", "9", "2017-11-26 09:28:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69861", "8", "2017-11-26 09:28:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69862", "10", "2017-11-26 09:29:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69863", "15", "2017-11-26 09:29:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69864", "3", "2017-11-26 10:07:45", "180.76.15.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("69865", "3", "2017-11-26 11:21:41", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69866", "9", "2017-11-26 11:21:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69867", "8", "2017-11-26 11:21:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69868", "10", "2017-11-26 11:21:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69869", "15", "2017-11-26 11:21:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69870", "3", "2017-11-26 13:10:31", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69871", "9", "2017-11-26 13:10:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69872", "8", "2017-11-26 13:10:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69873", "10", "2017-11-26 13:10:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69874", "15", "2017-11-26 13:10:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69875", "3", "2017-11-26 15:08:13", "66.249.79.135", "34");
INSERT INTO `wp_rg_form_view` VALUES("69876", "9", "2017-11-26 15:08:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69877", "8", "2017-11-26 15:08:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69878", "10", "2017-11-26 15:08:34", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69879", "15", "2017-11-26 15:08:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69880", "14", "2017-11-26 16:00:44", "138.197.13.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69881", "6", "2017-11-26 16:01:49", "138.197.13.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69882", "3", "2017-11-26 16:03:02", "138.197.13.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("69883", "10", "2017-11-26 16:04:04", "138.197.13.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("69884", "9", "2017-11-26 16:08:23", "138.197.13.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69885", "15", "2017-11-26 16:10:45", "138.197.13.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("69886", "8", "2017-11-26 16:37:02", "138.197.13.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("69887", "3", "2017-11-26 17:01:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69888", "9", "2017-11-26 17:01:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69889", "8", "2017-11-26 17:01:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69890", "10", "2017-11-26 17:01:52", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69891", "15", "2017-11-26 17:01:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69892", "3", "2017-11-26 18:41:13", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69893", "9", "2017-11-26 18:41:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69894", "8", "2017-11-26 18:41:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69895", "10", "2017-11-26 18:41:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69896", "15", "2017-11-26 18:41:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69897", "3", "2017-11-26 20:33:07", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69898", "9", "2017-11-26 20:33:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69899", "8", "2017-11-26 20:33:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69900", "10", "2017-11-26 20:33:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69901", "15", "2017-11-26 20:33:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69902", "10", "2017-11-26 21:45:10", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("69903", "3", "2017-11-26 21:50:28", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69904", "14", "2017-11-26 22:10:55", "184.66.50.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("69905", "10", "2017-11-26 22:16:12", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("69906", "3", "2017-11-26 22:30:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69907", "9", "2017-11-26 22:30:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69908", "8", "2017-11-26 22:30:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69909", "15", "2017-11-26 22:30:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69910", "3", "2017-11-27 00:07:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69911", "9", "2017-11-27 00:07:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69912", "8", "2017-11-27 00:07:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69913", "10", "2017-11-27 00:07:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69914", "15", "2017-11-27 00:07:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69915", "10", "2017-11-27 01:28:25", "40.77.167.65", "7");
INSERT INTO `wp_rg_form_view` VALUES("69916", "3", "2017-11-27 01:56:05", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69917", "9", "2017-11-27 01:56:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69918", "8", "2017-11-27 01:56:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69919", "15", "2017-11-27 01:56:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69920", "3", "2017-11-27 02:13:11", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("69921", "10", "2017-11-27 03:07:11", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69922", "3", "2017-11-27 03:15:33", "184.149.29.56", "3");
INSERT INTO `wp_rg_form_view` VALUES("69923", "3", "2017-11-27 04:30:32", "217.182.132.18", "61");
INSERT INTO `wp_rg_form_view` VALUES("69924", "9", "2017-11-27 04:30:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69925", "8", "2017-11-27 04:30:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("69926", "10", "2017-11-27 04:30:58", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("69927", "15", "2017-11-27 04:31:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69928", "3", "2017-11-27 05:32:06", "180.76.15.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("69929", "10", "2017-11-27 05:53:40", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("69930", "3", "2017-11-27 06:16:15", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69931", "9", "2017-11-27 06:16:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69932", "8", "2017-11-27 06:16:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69933", "10", "2017-11-27 06:16:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69934", "15", "2017-11-27 06:16:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69935", "3", "2017-11-27 07:30:40", "51.255.65.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("69936", "3", "2017-11-27 08:20:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69937", "9", "2017-11-27 08:20:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69938", "8", "2017-11-27 08:20:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69939", "10", "2017-11-27 08:20:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69940", "15", "2017-11-27 08:20:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69941", "10", "2017-11-27 09:12:55", "199.16.157.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("69942", "14", "2017-11-27 09:58:11", "40.77.167.33", "1");
INSERT INTO `wp_rg_form_view` VALUES("69943", "3", "2017-11-27 10:00:52", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69944", "9", "2017-11-27 10:00:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69945", "8", "2017-11-27 10:00:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69946", "10", "2017-11-27 10:00:54", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("69947", "15", "2017-11-27 10:00:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69948", "15", "2017-11-27 11:37:01", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("69949", "3", "2017-11-27 11:41:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69950", "9", "2017-11-27 11:41:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69951", "8", "2017-11-27 11:41:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69952", "10", "2017-11-27 11:41:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69953", "10", "2017-11-27 12:04:08", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69954", "3", "2017-11-27 13:16:03", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69955", "9", "2017-11-27 13:16:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69956", "8", "2017-11-27 13:16:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69957", "10", "2017-11-27 13:16:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69958", "15", "2017-11-27 13:16:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69959", "14", "2017-11-27 14:41:00", "128.68.18.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("69960", "3", "2017-11-27 15:01:13", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69961", "9", "2017-11-27 15:01:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69962", "8", "2017-11-27 15:01:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69963", "10", "2017-11-27 15:01:17", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69964", "15", "2017-11-27 15:01:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69965", "3", "2017-11-27 16:51:11", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69966", "9", "2017-11-27 16:51:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69967", "8", "2017-11-27 16:51:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69968", "10", "2017-11-27 16:51:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69969", "15", "2017-11-27 16:51:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69970", "14", "2017-11-27 17:28:42", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("69971", "3", "2017-11-27 18:35:56", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("69972", "9", "2017-11-27 18:35:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69973", "8", "2017-11-27 18:35:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69974", "10", "2017-11-27 18:35:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69975", "15", "2017-11-27 18:36:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69976", "10", "2017-11-27 19:36:12", "51.255.71.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("69977", "8", "2017-11-27 19:46:31", "137.74.207.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("69978", "3", "2017-11-27 19:54:57", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("69979", "3", "2017-11-27 20:07:40", "154.20.198.114", "31");
INSERT INTO `wp_rg_form_view` VALUES("69980", "8", "2017-11-27 20:32:29", "66.102.6.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("69981", "9", "2017-11-27 20:34:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69982", "10", "2017-11-27 20:34:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69983", "15", "2017-11-27 20:34:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69984", "3", "2017-11-27 22:18:35", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69985", "9", "2017-11-27 22:18:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69986", "8", "2017-11-27 22:18:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69987", "10", "2017-11-27 22:18:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("69988", "15", "2017-11-27 22:18:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69989", "3", "2017-11-28 00:08:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69990", "9", "2017-11-28 00:08:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69991", "8", "2017-11-28 00:08:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69992", "10", "2017-11-28 00:08:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("69993", "15", "2017-11-28 00:08:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69994", "10", "2017-11-28 01:30:48", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("69995", "3", "2017-11-28 01:57:26", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("69996", "9", "2017-11-28 01:57:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69997", "8", "2017-11-28 01:57:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("69998", "15", "2017-11-28 01:57:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("69999", "3", "2017-11-28 02:16:36", "192.151.152.98", "5");
INSERT INTO `wp_rg_form_view` VALUES("70000", "3", "2017-11-28 03:41:15", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70001", "9", "2017-11-28 03:41:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70002", "8", "2017-11-28 03:41:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70003", "10", "2017-11-28 03:41:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70004", "15", "2017-11-28 03:41:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70005", "8", "2017-11-28 05:13:35", "180.76.15.160", "5");
INSERT INTO `wp_rg_form_view` VALUES("70006", "3", "2017-11-28 05:27:47", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70007", "9", "2017-11-28 05:27:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70008", "10", "2017-11-28 05:27:50", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70009", "15", "2017-11-28 05:27:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70010", "3", "2017-11-28 06:29:35", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("70011", "3", "2017-11-28 07:33:54", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70012", "9", "2017-11-28 07:33:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70013", "8", "2017-11-28 07:33:56", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70014", "10", "2017-11-28 07:33:56", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70015", "15", "2017-11-28 07:33:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70016", "3", "2017-11-28 08:57:31", "51.255.65.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("70017", "3", "2017-11-28 09:05:05", "40.77.167.33", "31");
INSERT INTO `wp_rg_form_view` VALUES("70018", "9", "2017-11-28 09:15:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70019", "8", "2017-11-28 09:15:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70020", "10", "2017-11-28 09:15:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70021", "15", "2017-11-28 09:15:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70022", "3", "2017-11-28 10:58:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70023", "9", "2017-11-28 10:58:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70024", "8", "2017-11-28 10:58:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70025", "10", "2017-11-28 10:58:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70026", "15", "2017-11-28 10:58:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70027", "10", "2017-11-28 11:02:01", "72.14.199.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("70028", "3", "2017-11-28 12:48:53", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70029", "9", "2017-11-28 12:48:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70030", "8", "2017-11-28 12:48:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70031", "10", "2017-11-28 12:48:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70032", "15", "2017-11-28 12:48:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70033", "10", "2017-11-28 13:00:43", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("70034", "3", "2017-11-28 13:17:24", "180.76.15.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("70035", "3", "2017-11-28 14:32:39", "62.210.101.96", "32");
INSERT INTO `wp_rg_form_view` VALUES("70036", "9", "2017-11-28 14:39:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70037", "8", "2017-11-28 14:39:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70038", "10", "2017-11-28 14:39:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70039", "15", "2017-11-28 14:39:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70040", "3", "2017-11-28 15:12:57", "164.132.161.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("70041", "3", "2017-11-28 16:25:01", "52.37.180.245", "90");
INSERT INTO `wp_rg_form_view` VALUES("70042", "9", "2017-11-28 16:25:02", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70043", "8", "2017-11-28 16:25:03", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70044", "10", "2017-11-28 16:25:03", "52.37.180.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("70045", "15", "2017-11-28 16:25:06", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70046", "14", "2017-11-28 17:38:17", "24.68.44.253", "1");
INSERT INTO `wp_rg_form_view` VALUES("70047", "3", "2017-11-28 18:29:03", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70048", "9", "2017-11-28 18:29:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70049", "8", "2017-11-28 18:29:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70050", "10", "2017-11-28 18:29:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70051", "15", "2017-11-28 18:29:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70052", "3", "2017-11-28 20:07:45", "184.66.152.214", "31");
INSERT INTO `wp_rg_form_view` VALUES("70053", "9", "2017-11-28 20:37:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70054", "8", "2017-11-28 20:37:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70055", "10", "2017-11-28 20:37:49", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70056", "15", "2017-11-28 20:37:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70057", "14", "2017-11-28 20:39:45", "75.154.236.71", "2");
INSERT INTO `wp_rg_form_view` VALUES("70058", "3", "2017-11-28 22:03:33", "139.162.247.24", "37");
INSERT INTO `wp_rg_form_view` VALUES("70059", "9", "2017-11-28 22:13:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70060", "8", "2017-11-28 22:13:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70061", "10", "2017-11-28 22:13:53", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70062", "15", "2017-11-28 22:13:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70063", "3", "2017-11-28 23:00:02", "194.187.170.139", "34");
INSERT INTO `wp_rg_form_view` VALUES("70064", "10", "2017-11-28 23:08:50", "180.76.15.147", "6");
INSERT INTO `wp_rg_form_view` VALUES("70065", "9", "2017-11-28 23:53:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70066", "8", "2017-11-28 23:53:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70067", "15", "2017-11-28 23:53:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70068", "3", "2017-11-29 00:14:45", "184.69.126.246", "6");
INSERT INTO `wp_rg_form_view` VALUES("70069", "12", "2017-11-29 00:33:03", "194.187.170.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("70070", "10", "2017-11-29 01:01:28", "216.244.66.231", "7");
INSERT INTO `wp_rg_form_view` VALUES("70071", "3", "2017-11-29 01:47:26", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70072", "9", "2017-11-29 01:47:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70073", "8", "2017-11-29 01:47:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70074", "15", "2017-11-29 01:47:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70075", "10", "2017-11-29 02:06:36", "199.58.86.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("70076", "8", "2017-11-29 02:31:38", "139.162.247.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("70077", "3", "2017-11-29 03:17:25", "139.162.247.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("70078", "8", "2017-11-29 03:28:55", "70.67.176.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("70079", "14", "2017-11-29 03:35:02", "139.162.247.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("70080", "14", "2017-11-29 04:03:05", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("70081", "3", "2017-11-29 04:13:17", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70082", "9", "2017-11-29 04:13:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70083", "8", "2017-11-29 04:13:19", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70084", "10", "2017-11-29 04:13:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70085", "15", "2017-11-29 04:13:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70086", "3", "2017-11-29 05:02:56", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70087", "15", "2017-11-29 05:44:21", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("70088", "3", "2017-11-29 06:02:26", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70089", "9", "2017-11-29 06:02:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70090", "8", "2017-11-29 06:02:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70091", "10", "2017-11-29 06:02:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70092", "15", "2017-11-29 06:02:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70093", "3", "2017-11-29 07:16:05", "194.187.170.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("70094", "10", "2017-11-29 07:24:36", "194.187.170.138", "4");
INSERT INTO `wp_rg_form_view` VALUES("70095", "3", "2017-11-29 08:12:26", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("70096", "9", "2017-11-29 08:12:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70097", "8", "2017-11-29 08:12:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70098", "10", "2017-11-29 08:12:28", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("70099", "15", "2017-11-29 08:12:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70100", "10", "2017-11-29 09:30:21", "51.255.65.30", "6");
INSERT INTO `wp_rg_form_view` VALUES("70101", "3", "2017-11-29 09:57:52", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70102", "9", "2017-11-29 09:57:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70103", "8", "2017-11-29 09:57:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70104", "15", "2017-11-29 09:57:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70105", "3", "2017-11-29 10:56:46", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("70106", "10", "2017-11-29 11:37:07", "217.182.132.96", "6");
INSERT INTO `wp_rg_form_view` VALUES("70107", "3", "2017-11-29 11:46:58", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70108", "9", "2017-11-29 11:46:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70109", "8", "2017-11-29 11:46:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70110", "15", "2017-11-29 11:47:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70111", "3", "2017-11-29 13:20:42", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("70112", "9", "2017-11-29 13:20:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70113", "8", "2017-11-29 13:20:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70114", "10", "2017-11-29 13:20:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70115", "15", "2017-11-29 13:20:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70116", "3", "2017-11-29 14:49:19", "164.132.161.46", "31");
INSERT INTO `wp_rg_form_view` VALUES("70117", "10", "2017-11-29 14:51:49", "164.132.161.74", "6");
INSERT INTO `wp_rg_form_view` VALUES("70118", "9", "2017-11-29 14:56:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70119", "8", "2017-11-29 14:56:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70120", "15", "2017-11-29 14:56:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70121", "10", "2017-11-29 15:35:08", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("70122", "3", "2017-11-29 16:01:56", "40.77.167.2", "9");
INSERT INTO `wp_rg_form_view` VALUES("70123", "9", "2017-11-29 16:59:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70124", "3", "2017-11-29 17:00:00", "52.37.180.245", "53");
INSERT INTO `wp_rg_form_view` VALUES("70125", "8", "2017-11-29 17:00:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70126", "10", "2017-11-29 17:00:00", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("70127", "15", "2017-11-29 17:00:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70128", "9", "2017-11-29 17:00:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70129", "3", "2017-11-29 18:33:07", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70130", "9", "2017-11-29 18:33:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70131", "8", "2017-11-29 18:33:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70132", "10", "2017-11-29 18:33:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70133", "15", "2017-11-29 18:33:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70134", "3", "2017-11-29 20:18:10", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70135", "9", "2017-11-29 20:18:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70136", "8", "2017-11-29 20:18:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70137", "10", "2017-11-29 20:18:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70138", "15", "2017-11-29 20:18:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70139", "10", "2017-11-29 21:20:23", "180.76.15.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("70140", "3", "2017-11-29 22:02:03", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70141", "9", "2017-11-29 22:02:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70142", "8", "2017-11-29 22:02:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70143", "10", "2017-11-29 22:02:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70144", "15", "2017-11-29 22:02:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70145", "15", "2017-11-29 23:12:18", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70146", "10", "2017-11-29 23:12:41", "68.180.228.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("70147", "3", "2017-11-29 23:13:24", "68.180.228.176", "10");
INSERT INTO `wp_rg_form_view` VALUES("70148", "14", "2017-11-29 23:15:28", "5.3.144.236", "1");
INSERT INTO `wp_rg_form_view` VALUES("70149", "9", "2017-11-29 23:16:05", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70150", "8", "2017-11-29 23:21:24", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70151", "3", "2017-11-30 00:11:40", "68.180.228.176", "31");
INSERT INTO `wp_rg_form_view` VALUES("70152", "9", "2017-11-30 00:32:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70153", "8", "2017-11-30 00:32:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70154", "10", "2017-11-30 00:32:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70155", "15", "2017-11-30 00:32:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70156", "3", "2017-11-30 01:28:29", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70157", "3", "2017-11-30 02:37:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70158", "9", "2017-11-30 02:37:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70159", "8", "2017-11-30 02:37:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70160", "10", "2017-11-30 02:37:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70161", "15", "2017-11-30 02:37:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70162", "3", "2017-11-30 04:07:29", "68.180.228.176", "42");
INSERT INTO `wp_rg_form_view` VALUES("70163", "9", "2017-11-30 04:27:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70164", "8", "2017-11-30 04:27:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70165", "10", "2017-11-30 04:27:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70166", "15", "2017-11-30 04:27:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70167", "3", "2017-11-30 05:00:10", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70168", "3", "2017-11-30 06:14:42", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70169", "9", "2017-11-30 06:14:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70170", "8", "2017-11-30 06:14:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70171", "10", "2017-11-30 06:14:44", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70172", "15", "2017-11-30 06:14:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70173", "3", "2017-11-30 07:18:49", "68.180.228.176", "31");
INSERT INTO `wp_rg_form_view` VALUES("70174", "10", "2017-11-30 07:39:23", "46.229.168.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("70175", "15", "2017-11-30 07:42:13", "46.229.168.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("70176", "6", "2017-11-30 07:52:21", "46.229.168.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("70177", "8", "2017-11-30 07:58:13", "46.229.168.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("70178", "3", "2017-11-30 08:00:45", "46.229.168.79", "47");
INSERT INTO `wp_rg_form_view` VALUES("70179", "10", "2017-11-30 08:06:29", "46.229.168.73", "11");
INSERT INTO `wp_rg_form_view` VALUES("70180", "9", "2017-11-30 08:11:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70181", "8", "2017-11-30 08:11:53", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70182", "15", "2017-11-30 08:11:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70183", "3", "2017-11-30 09:56:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70184", "9", "2017-11-30 09:56:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70185", "8", "2017-11-30 09:56:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70186", "10", "2017-11-30 09:56:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70187", "15", "2017-11-30 09:56:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70188", "3", "2017-11-30 11:34:05", "68.180.228.176", "31");
INSERT INTO `wp_rg_form_view` VALUES("70189", "9", "2017-11-30 11:47:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70190", "8", "2017-11-30 11:47:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70191", "10", "2017-11-30 11:47:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70192", "15", "2017-11-30 11:48:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70193", "3", "2017-11-30 12:27:34", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70194", "3", "2017-11-30 13:24:30", "192.151.157.210", "31");
INSERT INTO `wp_rg_form_view` VALUES("70195", "9", "2017-11-30 13:33:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70196", "8", "2017-11-30 13:33:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70197", "10", "2017-11-30 13:33:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70198", "15", "2017-11-30 13:33:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70199", "3", "2017-11-30 14:02:51", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("70200", "3", "2017-11-30 15:22:57", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70201", "9", "2017-11-30 15:22:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70202", "8", "2017-11-30 15:22:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70203", "10", "2017-11-30 15:23:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70204", "15", "2017-11-30 15:23:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70205", "3", "2017-11-30 16:12:01", "40.77.167.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("70206", "5", "2017-11-30 17:21:16", "40.77.167.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("70207", "3", "2017-11-30 17:21:57", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70208", "9", "2017-11-30 17:21:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70209", "8", "2017-11-30 17:22:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70210", "10", "2017-11-30 17:22:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70211", "15", "2017-11-30 17:22:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70212", "3", "2017-11-30 18:02:45", "207.46.13.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("70213", "10", "2017-11-30 18:30:05", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("70214", "6", "2017-11-30 18:38:38", "180.76.15.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("70215", "14", "2017-11-30 18:58:06", "96.50.18.183", "1");
INSERT INTO `wp_rg_form_view` VALUES("70216", "3", "2017-11-30 19:12:01", "180.76.15.151", "33");
INSERT INTO `wp_rg_form_view` VALUES("70217", "14", "2017-11-30 19:12:39", "24.69.171.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("70218", "9", "2017-11-30 19:16:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70219", "8", "2017-11-30 19:16:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70220", "10", "2017-11-30 19:16:53", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70221", "15", "2017-11-30 19:16:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70222", "10", "2017-11-30 20:18:39", "180.76.15.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("70223", "3", "2017-11-30 20:57:19", "79.13.156.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("70224", "3", "2017-11-30 21:01:42", "79.13.156.92", "31");
INSERT INTO `wp_rg_form_view` VALUES("70225", "9", "2017-11-30 21:22:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70226", "8", "2017-11-30 21:22:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70227", "10", "2017-11-30 21:22:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70228", "15", "2017-11-30 21:22:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70229", "14", "2017-11-30 21:57:16", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("70230", "3", "2017-11-30 22:51:58", "66.249.79.137", "61");
INSERT INTO `wp_rg_form_view` VALUES("70231", "9", "2017-11-30 22:55:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70232", "8", "2017-11-30 22:55:09", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70233", "10", "2017-11-30 22:55:10", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70234", "15", "2017-11-30 22:55:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70235", "14", "2017-11-30 23:15:38", "24.69.172.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("70236", "3", "2017-11-30 23:19:26", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70237", "3", "2017-12-01 00:44:44", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70238", "9", "2017-12-01 00:44:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70239", "8", "2017-12-01 00:44:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70240", "10", "2017-12-01 00:44:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70241", "15", "2017-12-01 00:44:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70242", "3", "2017-12-01 01:28:42", "194.187.170.108", "2");
INSERT INTO `wp_rg_form_view` VALUES("70243", "3", "2017-12-01 02:04:47", "194.187.170.108", "32");
INSERT INTO `wp_rg_form_view` VALUES("70244", "15", "2017-12-01 02:10:33", "40.77.167.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("70245", "9", "2017-12-01 02:25:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70246", "8", "2017-12-01 02:25:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70247", "10", "2017-12-01 02:25:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70248", "3", "2017-12-01 03:06:26", "50.3.134.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("70249", "10", "2017-12-01 03:27:13", "194.187.170.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("70250", "10", "2017-12-01 04:06:23", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70251", "3", "2017-12-01 04:11:58", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70252", "9", "2017-12-01 04:11:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70253", "8", "2017-12-01 04:11:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70254", "15", "2017-12-01 04:12:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70255", "3", "2017-12-01 05:47:55", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70256", "9", "2017-12-01 05:47:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70257", "8", "2017-12-01 05:47:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70258", "10", "2017-12-01 05:47:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70259", "15", "2017-12-01 05:47:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70260", "3", "2017-12-01 07:14:18", "86.89.33.19", "33");
INSERT INTO `wp_rg_form_view` VALUES("70261", "9", "2017-12-01 07:43:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70262", "8", "2017-12-01 07:43:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70263", "10", "2017-12-01 07:43:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70264", "15", "2017-12-01 07:43:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70265", "10", "2017-12-01 08:44:54", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("70266", "3", "2017-12-01 09:46:07", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70267", "9", "2017-12-01 09:46:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70268", "8", "2017-12-01 09:46:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70269", "10", "2017-12-01 09:46:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70270", "15", "2017-12-01 09:46:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70271", "3", "2017-12-01 11:44:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70272", "9", "2017-12-01 11:44:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70273", "8", "2017-12-01 11:44:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70274", "10", "2017-12-01 11:44:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70275", "15", "2017-12-01 11:44:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70276", "10", "2017-12-01 12:33:58", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70277", "10", "2017-12-01 13:00:17", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70278", "3", "2017-12-01 13:49:40", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70279", "9", "2017-12-01 13:49:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70280", "8", "2017-12-01 13:49:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70281", "15", "2017-12-01 13:49:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70282", "3", "2017-12-01 14:31:49", "151.80.44.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("70283", "10", "2017-12-01 14:45:52", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70284", "14", "2017-12-01 14:48:13", "154.5.210.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("70285", "3", "2017-12-01 15:37:42", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70286", "9", "2017-12-01 15:37:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70287", "8", "2017-12-01 15:37:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70288", "10", "2017-12-01 15:37:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70289", "15", "2017-12-01 15:37:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70290", "10", "2017-12-01 17:24:21", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70291", "3", "2017-12-01 17:41:27", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70292", "9", "2017-12-01 17:41:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70293", "8", "2017-12-01 17:41:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70294", "15", "2017-12-01 17:41:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70295", "3", "2017-12-01 18:13:23", "24.68.32.106", "3");
INSERT INTO `wp_rg_form_view` VALUES("70296", "3", "2017-12-01 19:36:28", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70297", "9", "2017-12-01 19:36:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70298", "8", "2017-12-01 19:36:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70299", "10", "2017-12-01 19:36:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70300", "15", "2017-12-01 19:36:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70301", "10", "2017-12-01 20:22:06", "217.182.132.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("70302", "3", "2017-12-01 21:19:10", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70303", "9", "2017-12-01 21:19:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70304", "8", "2017-12-01 21:19:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70305", "10", "2017-12-01 21:19:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70306", "15", "2017-12-01 21:19:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70307", "3", "2017-12-01 22:31:00", "207.46.13.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("70308", "3", "2017-12-01 23:24:53", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70309", "9", "2017-12-01 23:24:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70310", "8", "2017-12-01 23:24:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70311", "10", "2017-12-01 23:24:55", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70312", "15", "2017-12-01 23:24:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70313", "3", "2017-12-02 01:27:59", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70314", "9", "2017-12-02 01:28:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70315", "8", "2017-12-02 01:28:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70316", "10", "2017-12-02 01:28:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70317", "15", "2017-12-02 01:28:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70318", "10", "2017-12-02 02:07:07", "184.66.129.248", "9");
INSERT INTO `wp_rg_form_view` VALUES("70319", "3", "2017-12-02 02:07:52", "207.46.13.9", "11");
INSERT INTO `wp_rg_form_view` VALUES("70320", "15", "2017-12-02 02:08:29", "207.46.13.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("70321", "8", "2017-12-02 02:10:01", "157.55.39.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("70322", "11", "2017-12-02 02:10:39", "157.55.39.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("70323", "3", "2017-12-02 03:17:10", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70324", "9", "2017-12-02 03:17:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70325", "8", "2017-12-02 03:17:12", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70326", "10", "2017-12-02 03:17:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70327", "15", "2017-12-02 03:17:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70328", "8", "2017-12-02 04:12:36", "157.55.39.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("70329", "3", "2017-12-02 04:26:15", "51.255.65.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("70330", "3", "2017-12-02 05:23:52", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70331", "9", "2017-12-02 05:23:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70332", "8", "2017-12-02 05:23:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70333", "10", "2017-12-02 05:23:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70334", "15", "2017-12-02 05:23:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70335", "3", "2017-12-02 06:20:51", "180.76.15.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("70336", "3", "2017-12-02 07:06:34", "192.95.29.116", "36");
INSERT INTO `wp_rg_form_view` VALUES("70337", "14", "2017-12-02 07:08:40", "192.95.29.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("70338", "8", "2017-12-02 07:08:56", "192.95.29.116", "3");
INSERT INTO `wp_rg_form_view` VALUES("70339", "9", "2017-12-02 07:28:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70340", "10", "2017-12-02 07:28:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70341", "15", "2017-12-02 07:28:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70342", "10", "2017-12-02 08:04:14", "164.132.161.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("70343", "8", "2017-12-02 08:07:51", "199.30.24.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("70344", "3", "2017-12-02 09:33:52", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70345", "9", "2017-12-02 09:33:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70346", "8", "2017-12-02 09:33:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70347", "10", "2017-12-02 09:33:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70348", "15", "2017-12-02 09:33:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70349", "3", "2017-12-02 11:06:34", "217.182.132.53", "31");
INSERT INTO `wp_rg_form_view` VALUES("70350", "9", "2017-12-02 11:18:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70351", "8", "2017-12-02 11:18:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70352", "10", "2017-12-02 11:18:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70353", "15", "2017-12-02 11:18:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70354", "10", "2017-12-02 12:01:05", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("70355", "8", "2017-12-02 12:20:53", "139.162.247.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("70356", "3", "2017-12-02 12:52:53", "173.234.153.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("70357", "10", "2017-12-02 13:00:16", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("70358", "6", "2017-12-02 13:27:03", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70359", "3", "2017-12-02 13:29:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70360", "9", "2017-12-02 13:29:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70361", "8", "2017-12-02 13:29:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70362", "15", "2017-12-02 13:29:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70363", "3", "2017-12-02 15:15:00", "180.76.15.33", "62");
INSERT INTO `wp_rg_form_view` VALUES("70364", "9", "2017-12-02 15:35:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70365", "8", "2017-12-02 15:35:02", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70366", "10", "2017-12-02 15:35:02", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70367", "15", "2017-12-02 15:35:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70368", "3", "2017-12-02 16:07:13", "217.182.132.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("70369", "10", "2017-12-02 16:39:57", "207.46.13.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("70370", "3", "2017-12-02 17:25:00", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70371", "9", "2017-12-02 17:25:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70372", "8", "2017-12-02 17:25:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70373", "10", "2017-12-02 17:25:02", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70374", "15", "2017-12-02 17:25:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70375", "3", "2017-12-02 19:19:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70376", "9", "2017-12-02 19:19:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70377", "8", "2017-12-02 19:19:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70378", "10", "2017-12-02 19:19:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70379", "15", "2017-12-02 19:19:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70380", "3", "2017-12-02 20:20:57", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70381", "10", "2017-12-02 21:00:00", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70382", "3", "2017-12-02 21:17:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70383", "9", "2017-12-02 21:17:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70384", "8", "2017-12-02 21:17:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70385", "15", "2017-12-02 21:17:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70386", "10", "2017-12-02 23:00:49", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("70387", "3", "2017-12-02 23:09:16", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70388", "9", "2017-12-02 23:09:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70389", "8", "2017-12-02 23:09:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70390", "15", "2017-12-02 23:09:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70391", "10", "2017-12-03 00:38:13", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("70392", "3", "2017-12-03 01:01:01", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70393", "9", "2017-12-03 01:01:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70394", "8", "2017-12-03 01:01:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70395", "10", "2017-12-03 01:01:03", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70396", "15", "2017-12-03 01:01:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70397", "3", "2017-12-03 02:44:00", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70398", "9", "2017-12-03 02:44:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70399", "8", "2017-12-03 02:44:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70400", "10", "2017-12-03 02:44:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70401", "15", "2017-12-03 02:44:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70402", "10", "2017-12-03 03:08:42", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70403", "3", "2017-12-03 03:33:57", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("70404", "3", "2017-12-03 04:23:53", "192.99.6.164", "33");
INSERT INTO `wp_rg_form_view` VALUES("70405", "9", "2017-12-03 04:36:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70406", "8", "2017-12-03 04:36:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70407", "10", "2017-12-03 04:36:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70408", "15", "2017-12-03 04:36:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70409", "10", "2017-12-03 05:09:31", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70410", "3", "2017-12-03 05:28:31", "180.76.15.16", "1");
INSERT INTO `wp_rg_form_view` VALUES("70411", "14", "2017-12-03 06:25:55", "213.154.3.102", "4");
INSERT INTO `wp_rg_form_view` VALUES("70412", "3", "2017-12-03 06:31:14", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("70413", "9", "2017-12-03 06:31:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70414", "8", "2017-12-03 06:31:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70415", "10", "2017-12-03 06:31:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70416", "15", "2017-12-03 06:31:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70417", "10", "2017-12-03 07:10:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70418", "3", "2017-12-03 07:41:54", "96.54.48.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("70419", "3", "2017-12-03 08:11:53", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70420", "9", "2017-12-03 08:11:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70421", "8", "2017-12-03 08:11:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70422", "10", "2017-12-03 08:11:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70423", "15", "2017-12-03 08:11:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70424", "10", "2017-12-03 09:11:13", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70425", "3", "2017-12-03 09:33:31", "207.46.13.44", "31");
INSERT INTO `wp_rg_form_view` VALUES("70426", "9", "2017-12-03 09:59:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70427", "8", "2017-12-03 09:59:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70428", "15", "2017-12-03 09:59:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70429", "3", "2017-12-03 10:24:59", "51.255.65.26", "2");
INSERT INTO `wp_rg_form_view` VALUES("70430", "10", "2017-12-03 11:12:02", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70431", "3", "2017-12-03 11:41:43", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70432", "9", "2017-12-03 11:41:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70433", "8", "2017-12-03 11:41:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70434", "15", "2017-12-03 11:41:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70435", "10", "2017-12-03 13:00:14", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("70436", "3", "2017-12-03 13:38:23", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70437", "9", "2017-12-03 13:38:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70438", "8", "2017-12-03 13:38:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70439", "15", "2017-12-03 13:38:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70440", "10", "2017-12-03 15:26:19", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70441", "3", "2017-12-03 15:27:22", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70442", "9", "2017-12-03 15:27:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70443", "8", "2017-12-03 15:27:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70444", "15", "2017-12-03 15:27:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70445", "5", "2017-12-03 16:08:49", "77.75.79.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("70446", "3", "2017-12-03 16:33:29", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("70447", "3", "2017-12-03 17:14:27", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70448", "9", "2017-12-03 17:14:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70449", "8", "2017-12-03 17:14:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70450", "10", "2017-12-03 17:14:29", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70451", "15", "2017-12-03 17:14:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70452", "11", "2017-12-03 18:03:17", "164.132.161.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("70453", "3", "2017-12-03 19:09:40", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70454", "9", "2017-12-03 19:09:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70455", "8", "2017-12-03 19:09:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70456", "10", "2017-12-03 19:09:42", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70457", "15", "2017-12-03 19:09:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70458", "3", "2017-12-03 20:44:23", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70459", "9", "2017-12-03 20:44:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70460", "8", "2017-12-03 20:44:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70461", "10", "2017-12-03 20:44:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70462", "15", "2017-12-03 20:44:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70463", "10", "2017-12-03 21:28:50", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70464", "3", "2017-12-03 22:31:50", "180.76.15.10", "31");
INSERT INTO `wp_rg_form_view` VALUES("70465", "9", "2017-12-03 22:35:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70466", "8", "2017-12-03 22:35:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70467", "10", "2017-12-03 22:35:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70468", "15", "2017-12-03 22:35:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70469", "10", "2017-12-03 23:29:40", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70470", "8", "2017-12-03 23:36:50", "64.233.172.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("70471", "3", "2017-12-04 00:25:41", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70472", "9", "2017-12-04 00:25:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70473", "8", "2017-12-04 00:25:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70474", "10", "2017-12-04 00:25:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70475", "15", "2017-12-04 00:25:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70476", "10", "2017-12-04 01:30:31", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70477", "14", "2017-12-04 01:51:46", "180.76.15.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("70478", "14", "2017-12-04 02:00:24", "172.218.222.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("70479", "3", "2017-12-04 02:05:16", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("70480", "9", "2017-12-04 02:05:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70481", "8", "2017-12-04 02:05:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70482", "10", "2017-12-04 02:05:18", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70483", "15", "2017-12-04 02:05:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70484", "11", "2017-12-04 02:25:06", "180.76.15.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("70485", "3", "2017-12-04 03:49:44", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70486", "9", "2017-12-04 03:49:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70487", "8", "2017-12-04 03:49:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70488", "10", "2017-12-04 03:49:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70489", "15", "2017-12-04 03:49:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70490", "10", "2017-12-04 04:26:00", "72.14.199.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("70491", "3", "2017-12-04 05:40:21", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70492", "9", "2017-12-04 05:40:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70493", "8", "2017-12-04 05:40:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70494", "10", "2017-12-04 05:40:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70495", "15", "2017-12-04 05:40:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70496", "10", "2017-12-04 06:10:48", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70497", "3", "2017-12-04 06:27:57", "64.180.87.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("70498", "3", "2017-12-04 07:30:19", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70499", "9", "2017-12-04 07:30:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70500", "8", "2017-12-04 07:30:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70501", "10", "2017-12-04 07:30:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70502", "15", "2017-12-04 07:30:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70503", "10", "2017-12-04 08:08:55", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70504", "3", "2017-12-04 09:02:29", "144.76.115.190", "31");
INSERT INTO `wp_rg_form_view` VALUES("70505", "9", "2017-12-04 09:41:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70506", "8", "2017-12-04 09:41:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70507", "10", "2017-12-04 09:41:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70508", "15", "2017-12-04 09:41:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70509", "10", "2017-12-04 10:51:05", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70510", "3", "2017-12-04 11:30:03", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70511", "9", "2017-12-04 11:30:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70512", "8", "2017-12-04 11:30:04", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70513", "10", "2017-12-04 11:30:05", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70514", "15", "2017-12-04 11:30:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70515", "10", "2017-12-04 13:00:22", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70516", "3", "2017-12-04 13:37:22", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70517", "9", "2017-12-04 13:37:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70518", "8", "2017-12-04 13:37:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70519", "15", "2017-12-04 13:37:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70520", "10", "2017-12-04 15:25:45", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70521", "3", "2017-12-04 15:37:27", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70522", "9", "2017-12-04 15:37:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70523", "8", "2017-12-04 15:37:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70524", "15", "2017-12-04 15:37:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70525", "3", "2017-12-04 16:54:26", "37.17.172.122", "11");
INSERT INTO `wp_rg_form_view` VALUES("70526", "3", "2017-12-04 17:00:58", "37.17.172.122", "34");
INSERT INTO `wp_rg_form_view` VALUES("70527", "8", "2017-12-04 17:05:54", "37.17.172.122", "3");
INSERT INTO `wp_rg_form_view` VALUES("70528", "14", "2017-12-04 17:23:25", "37.17.172.122", "3");
INSERT INTO `wp_rg_form_view` VALUES("70529", "9", "2017-12-04 17:37:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70530", "10", "2017-12-04 17:37:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70531", "15", "2017-12-04 17:37:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70532", "10", "2017-12-04 18:08:35", "72.14.199.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("70533", "10", "2017-12-04 19:27:26", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70534", "3", "2017-12-04 19:32:16", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70535", "9", "2017-12-04 19:32:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70536", "8", "2017-12-04 19:32:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70537", "15", "2017-12-04 19:32:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70538", "14", "2017-12-04 20:02:28", "172.218.222.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("70539", "10", "2017-12-04 20:08:19", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("70540", "3", "2017-12-04 20:40:11", "168.244.11.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("70541", "10", "2017-12-04 21:28:18", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70542", "3", "2017-12-04 21:41:41", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70543", "9", "2017-12-04 21:41:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70544", "8", "2017-12-04 21:41:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70545", "15", "2017-12-04 21:41:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70546", "14", "2017-12-04 23:02:29", "75.157.24.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("70547", "3", "2017-12-04 23:23:07", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70548", "9", "2017-12-04 23:23:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70549", "8", "2017-12-04 23:23:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70550", "10", "2017-12-04 23:23:10", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70551", "15", "2017-12-04 23:23:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70552", "3", "2017-12-05 01:05:30", "59.127.15.17", "33");
INSERT INTO `wp_rg_form_view` VALUES("70553", "10", "2017-12-05 01:09:48", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70554", "9", "2017-12-05 01:22:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70555", "8", "2017-12-05 01:22:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70556", "15", "2017-12-05 01:22:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70557", "3", "2017-12-05 02:03:20", "66.249.79.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("70558", "3", "2017-12-05 03:31:20", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70559", "9", "2017-12-05 03:31:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70560", "8", "2017-12-05 03:31:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70561", "10", "2017-12-05 03:31:22", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70562", "15", "2017-12-05 03:31:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70563", "3", "2017-12-05 04:57:32", "46.161.9.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("70564", "3", "2017-12-05 05:34:01", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70565", "9", "2017-12-05 05:34:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70566", "8", "2017-12-05 05:34:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70567", "10", "2017-12-05 05:34:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70568", "15", "2017-12-05 05:34:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70569", "10", "2017-12-05 07:00:51", "72.14.199.115", "6");
INSERT INTO `wp_rg_form_view` VALUES("70570", "3", "2017-12-05 07:01:19", "46.9.164.75", "32");
INSERT INTO `wp_rg_form_view` VALUES("70571", "9", "2017-12-05 07:18:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70572", "8", "2017-12-05 07:18:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70573", "15", "2017-12-05 07:18:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70574", "3", "2017-12-05 09:06:10", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70575", "9", "2017-12-05 09:06:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70576", "8", "2017-12-05 09:06:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70577", "10", "2017-12-05 09:06:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70578", "15", "2017-12-05 09:06:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70579", "3", "2017-12-05 10:46:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70580", "9", "2017-12-05 10:46:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70581", "8", "2017-12-05 10:46:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70582", "10", "2017-12-05 10:46:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70583", "15", "2017-12-05 10:46:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70584", "3", "2017-12-05 12:05:46", "68.180.228.176", "32");
INSERT INTO `wp_rg_form_view` VALUES("70585", "14", "2017-12-05 12:10:58", "195.154.253.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("70586", "9", "2017-12-05 12:46:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70587", "8", "2017-12-05 12:46:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70588", "10", "2017-12-05 12:46:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70589", "15", "2017-12-05 12:46:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70590", "10", "2017-12-05 13:00:21", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("70591", "3", "2017-12-05 13:20:59", "174.127.133.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("70592", "3", "2017-12-05 14:43:35", "52.37.180.245", "63");
INSERT INTO `wp_rg_form_view` VALUES("70593", "9", "2017-12-05 14:43:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70594", "8", "2017-12-05 14:43:36", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70595", "10", "2017-12-05 14:43:37", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70596", "15", "2017-12-05 14:43:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70597", "14", "2017-12-05 14:54:41", "108.180.240.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("70598", "10", "2017-12-05 15:26:23", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70599", "14", "2017-12-05 16:20:12", "180.76.15.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("70600", "3", "2017-12-05 16:51:16", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70601", "9", "2017-12-05 16:51:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70602", "8", "2017-12-05 16:51:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70603", "10", "2017-12-05 16:51:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70604", "15", "2017-12-05 16:51:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70605", "3", "2017-12-05 18:23:40", "5.9.106.230", "31");
INSERT INTO `wp_rg_form_view` VALUES("70606", "9", "2017-12-05 18:40:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70607", "8", "2017-12-05 18:40:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70608", "10", "2017-12-05 18:40:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70609", "15", "2017-12-05 18:40:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70610", "3", "2017-12-05 19:02:00", "46.229.168.68", "38");
INSERT INTO `wp_rg_form_view` VALUES("70611", "10", "2017-12-05 19:02:27", "46.229.168.80", "14");
INSERT INTO `wp_rg_form_view` VALUES("70612", "14", "2017-12-05 19:16:21", "46.229.168.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("70613", "10", "2017-12-05 20:08:03", "72.14.199.119", "11");
INSERT INTO `wp_rg_form_view` VALUES("70614", "3", "2017-12-05 20:24:47", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70615", "9", "2017-12-05 20:24:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70616", "8", "2017-12-05 20:24:49", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70617", "15", "2017-12-05 20:24:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70618", "3", "2017-12-05 22:31:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70619", "9", "2017-12-05 22:31:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70620", "8", "2017-12-05 22:31:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70621", "10", "2017-12-05 22:31:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70622", "15", "2017-12-05 22:31:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70623", "3", "2017-12-05 23:25:14", "157.55.39.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("70624", "10", "2017-12-05 23:28:17", "66.249.79.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("70625", "3", "2017-12-06 00:14:50", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("70626", "9", "2017-12-06 00:14:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70627", "8", "2017-12-06 00:14:52", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70628", "10", "2017-12-06 00:14:53", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70629", "15", "2017-12-06 00:14:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70630", "3", "2017-12-06 02:09:55", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70631", "9", "2017-12-06 02:09:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70632", "8", "2017-12-06 02:09:57", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70633", "10", "2017-12-06 02:09:58", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("70634", "15", "2017-12-06 02:10:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70635", "3", "2017-12-06 04:00:04", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70636", "9", "2017-12-06 04:00:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70637", "8", "2017-12-06 04:00:06", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70638", "10", "2017-12-06 04:00:06", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("70639", "15", "2017-12-06 04:00:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70640", "3", "2017-12-06 05:44:02", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70641", "9", "2017-12-06 05:44:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70642", "8", "2017-12-06 05:44:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70643", "10", "2017-12-06 05:44:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70644", "15", "2017-12-06 05:44:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70645", "10", "2017-12-06 06:48:36", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70646", "3", "2017-12-06 06:55:00", "54.74.221.255", "1");
INSERT INTO `wp_rg_form_view` VALUES("70647", "3", "2017-12-06 07:24:15", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70648", "9", "2017-12-06 07:24:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70649", "8", "2017-12-06 07:24:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70650", "10", "2017-12-06 07:24:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70651", "15", "2017-12-06 07:24:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70652", "10", "2017-12-06 08:49:29", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70653", "3", "2017-12-06 09:24:07", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70654", "9", "2017-12-06 09:24:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70655", "8", "2017-12-06 09:24:08", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70656", "10", "2017-12-06 09:24:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70657", "15", "2017-12-06 09:24:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70658", "3", "2017-12-06 10:44:30", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("70659", "10", "2017-12-06 10:54:23", "100.43.91.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("70660", "3", "2017-12-06 11:15:01", "52.37.180.245", "90");
INSERT INTO `wp_rg_form_view` VALUES("70661", "9", "2017-12-06 11:15:03", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70662", "8", "2017-12-06 11:15:03", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70663", "10", "2017-12-06 11:15:04", "52.37.180.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("70664", "15", "2017-12-06 11:15:07", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70665", "11", "2017-12-06 11:20:37", "100.43.91.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("70666", "3", "2017-12-06 12:59:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70667", "9", "2017-12-06 12:59:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70668", "8", "2017-12-06 12:59:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70669", "10", "2017-12-06 12:59:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70670", "15", "2017-12-06 12:59:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70671", "10", "2017-12-06 13:00:17", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70672", "3", "2017-12-06 13:32:48", "5.157.1.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("70673", "3", "2017-12-06 14:51:16", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70674", "9", "2017-12-06 14:51:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70675", "8", "2017-12-06 14:51:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70676", "10", "2017-12-06 14:51:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70677", "15", "2017-12-06 14:51:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70678", "10", "2017-12-06 15:26:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70679", "3", "2017-12-06 16:05:40", "180.76.15.147", "33");
INSERT INTO `wp_rg_form_view` VALUES("70680", "9", "2017-12-06 16:44:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70681", "8", "2017-12-06 16:44:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70682", "10", "2017-12-06 16:44:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70683", "15", "2017-12-06 16:44:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70684", "10", "2017-12-06 17:27:08", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70685", "3", "2017-12-06 17:46:37", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70686", "8", "2017-12-06 18:00:37", "64.233.172.250", "1");
INSERT INTO `wp_rg_form_view` VALUES("70687", "3", "2017-12-06 18:35:37", "159.203.160.202", "13");
INSERT INTO `wp_rg_form_view` VALUES("70688", "14", "2017-12-06 18:39:38", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("70689", "6", "2017-12-06 18:40:43", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("70690", "10", "2017-12-06 18:43:17", "159.203.160.202", "4");
INSERT INTO `wp_rg_form_view` VALUES("70691", "9", "2017-12-06 18:47:49", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("70692", "15", "2017-12-06 18:50:29", "159.203.160.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("70693", "3", "2017-12-06 19:01:53", "159.203.160.202", "49");
INSERT INTO `wp_rg_form_view` VALUES("70694", "10", "2017-12-06 19:05:08", "159.203.160.202", "7");
INSERT INTO `wp_rg_form_view` VALUES("70695", "9", "2017-12-06 19:11:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70696", "8", "2017-12-06 19:11:02", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70697", "15", "2017-12-06 19:11:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70698", "3", "2017-12-06 20:59:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70699", "9", "2017-12-06 20:59:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70700", "8", "2017-12-06 20:59:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70701", "10", "2017-12-06 20:59:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70702", "15", "2017-12-06 20:59:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70703", "10", "2017-12-06 21:28:48", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70704", "3", "2017-12-06 22:16:09", "24.69.158.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("70705", "8", "2017-12-06 22:49:23", "139.162.247.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("70706", "3", "2017-12-06 23:09:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70707", "9", "2017-12-06 23:09:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70708", "8", "2017-12-06 23:09:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70709", "10", "2017-12-06 23:09:16", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70710", "15", "2017-12-06 23:09:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70711", "10", "2017-12-07 00:53:55", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70712", "3", "2017-12-07 00:54:35", "217.182.132.172", "2");
INSERT INTO `wp_rg_form_view` VALUES("70713", "3", "2017-12-07 01:14:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70714", "9", "2017-12-07 01:14:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70715", "8", "2017-12-07 01:14:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70716", "10", "2017-12-07 01:14:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70717", "15", "2017-12-07 01:14:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70718", "5", "2017-12-07 01:23:46", "77.75.78.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("70719", "3", "2017-12-07 03:01:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70720", "9", "2017-12-07 03:01:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70721", "8", "2017-12-07 03:01:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70722", "10", "2017-12-07 03:01:34", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70723", "15", "2017-12-07 03:01:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70724", "3", "2017-12-07 04:49:41", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70725", "9", "2017-12-07 04:49:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70726", "8", "2017-12-07 04:49:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70727", "10", "2017-12-07 04:49:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70728", "15", "2017-12-07 04:49:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70729", "3", "2017-12-07 07:01:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70730", "9", "2017-12-07 07:01:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70731", "8", "2017-12-07 07:01:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70732", "10", "2017-12-07 07:01:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70733", "15", "2017-12-07 07:01:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70734", "3", "2017-12-07 09:08:39", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70735", "9", "2017-12-07 09:08:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70736", "8", "2017-12-07 09:08:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70737", "10", "2017-12-07 09:08:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70738", "15", "2017-12-07 09:08:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70739", "14", "2017-12-07 09:18:55", "23.245.152.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("70740", "10", "2017-12-07 10:28:45", "217.182.132.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("70741", "3", "2017-12-07 10:55:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70742", "9", "2017-12-07 10:55:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70743", "8", "2017-12-07 10:55:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70744", "15", "2017-12-07 10:55:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70745", "3", "2017-12-07 12:19:04", "180.76.15.152", "32");
INSERT INTO `wp_rg_form_view` VALUES("70746", "10", "2017-12-07 12:34:19", "72.14.199.117", "6");
INSERT INTO `wp_rg_form_view` VALUES("70747", "9", "2017-12-07 12:57:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70748", "8", "2017-12-07 12:57:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70749", "15", "2017-12-07 12:57:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70750", "10", "2017-12-07 13:00:15", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70751", "3", "2017-12-07 14:54:54", "178.63.1.153", "31");
INSERT INTO `wp_rg_form_view` VALUES("70752", "9", "2017-12-07 14:56:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70753", "8", "2017-12-07 14:56:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70754", "10", "2017-12-07 14:56:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70755", "15", "2017-12-07 14:56:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70756", "3", "2017-12-07 15:02:07", "178.63.1.153", "19");
INSERT INTO `wp_rg_form_view` VALUES("70757", "8", "2017-12-07 15:04:06", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("70758", "10", "2017-12-07 15:20:35", "178.63.1.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("70759", "3", "2017-12-07 16:42:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70760", "9", "2017-12-07 16:42:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70761", "8", "2017-12-07 16:42:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70762", "10", "2017-12-07 16:42:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70763", "15", "2017-12-07 16:42:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70764", "10", "2017-12-07 17:27:06", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70765", "3", "2017-12-07 18:30:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70766", "9", "2017-12-07 18:30:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70767", "8", "2017-12-07 18:30:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70768", "10", "2017-12-07 18:30:49", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70769", "15", "2017-12-07 18:30:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70770", "3", "2017-12-07 19:19:20", "91.121.211.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("70771", "8", "2017-12-07 20:00:13", "96.50.21.88", "3");
INSERT INTO `wp_rg_form_view` VALUES("70772", "3", "2017-12-07 20:16:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70773", "9", "2017-12-07 20:16:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70774", "10", "2017-12-07 20:16:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70775", "15", "2017-12-07 20:16:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70776", "3", "2017-12-07 22:13:32", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70777", "9", "2017-12-07 22:13:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70778", "8", "2017-12-07 22:13:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70779", "10", "2017-12-07 22:13:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70780", "15", "2017-12-07 22:13:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70781", "3", "2017-12-08 00:01:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70782", "9", "2017-12-08 00:01:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70783", "8", "2017-12-08 00:01:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70784", "10", "2017-12-08 00:01:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70785", "15", "2017-12-08 00:01:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70786", "3", "2017-12-08 01:57:39", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70787", "9", "2017-12-08 01:57:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70788", "8", "2017-12-08 01:57:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70789", "10", "2017-12-08 01:57:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70790", "15", "2017-12-08 01:57:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70791", "10", "2017-12-08 02:40:51", "72.14.199.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("70792", "3", "2017-12-08 03:51:11", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70793", "9", "2017-12-08 03:51:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70794", "8", "2017-12-08 03:51:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70795", "10", "2017-12-08 03:51:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70796", "15", "2017-12-08 03:51:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70797", "3", "2017-12-08 05:36:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70798", "9", "2017-12-08 05:36:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70799", "8", "2017-12-08 05:36:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70800", "10", "2017-12-08 05:36:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70801", "15", "2017-12-08 05:36:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70802", "3", "2017-12-08 06:43:21", "66.249.79.2", "1");
INSERT INTO `wp_rg_form_view` VALUES("70803", "3", "2017-12-08 07:23:26", "93.158.161.83", "31");
INSERT INTO `wp_rg_form_view` VALUES("70804", "9", "2017-12-08 07:31:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70805", "8", "2017-12-08 07:31:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70806", "10", "2017-12-08 07:31:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70807", "15", "2017-12-08 07:31:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70808", "3", "2017-12-08 09:37:40", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70809", "9", "2017-12-08 09:37:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70810", "8", "2017-12-08 09:37:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70811", "10", "2017-12-08 09:37:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70812", "15", "2017-12-08 09:37:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70813", "3", "2017-12-08 11:22:43", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70814", "9", "2017-12-08 11:22:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70815", "8", "2017-12-08 11:22:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70816", "10", "2017-12-08 11:22:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70817", "15", "2017-12-08 11:22:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70818", "3", "2017-12-08 13:06:23", "52.37.180.245", "39");
INSERT INTO `wp_rg_form_view` VALUES("70819", "9", "2017-12-08 13:06:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70820", "8", "2017-12-08 13:06:25", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("70821", "10", "2017-12-08 13:06:25", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70822", "15", "2017-12-08 13:06:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70823", "14", "2017-12-08 13:54:04", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("70824", "10", "2017-12-08 14:00:06", "5.9.98.130", "9");
INSERT INTO `wp_rg_form_view` VALUES("70825", "15", "2017-12-08 14:00:25", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("70826", "3", "2017-12-08 14:00:34", "5.9.98.130", "55");
INSERT INTO `wp_rg_form_view` VALUES("70827", "8", "2017-12-08 14:03:04", "5.9.98.130", "3");
INSERT INTO `wp_rg_form_view` VALUES("70828", "9", "2017-12-08 14:03:20", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("70829", "6", "2017-12-08 14:05:01", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("70830", "10", "2017-12-08 15:27:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70831", "3", "2017-12-08 16:30:12", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70832", "9", "2017-12-08 16:30:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70833", "8", "2017-12-08 16:30:20", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70834", "10", "2017-12-08 16:30:22", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70835", "15", "2017-12-08 16:30:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70836", "10", "2017-12-08 17:51:56", "72.14.199.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("70837", "3", "2017-12-08 18:24:42", "195.22.127.196", "4");
INSERT INTO `wp_rg_form_view` VALUES("70838", "10", "2017-12-08 18:24:42", "195.22.127.196", "5");
INSERT INTO `wp_rg_form_view` VALUES("70839", "3", "2017-12-08 19:01:23", "40.77.167.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("70840", "3", "2017-12-08 20:22:03", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70841", "9", "2017-12-08 20:22:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70842", "8", "2017-12-08 20:22:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70843", "10", "2017-12-08 20:22:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70844", "15", "2017-12-08 20:22:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70845", "3", "2017-12-08 22:27:57", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70846", "9", "2017-12-08 22:27:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70847", "8", "2017-12-08 22:28:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70848", "10", "2017-12-08 22:28:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70849", "15", "2017-12-08 22:28:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70850", "3", "2017-12-09 00:18:42", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70851", "9", "2017-12-09 00:18:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70852", "8", "2017-12-09 00:18:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70853", "10", "2017-12-09 00:18:48", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70854", "15", "2017-12-09 00:18:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70855", "3", "2017-12-09 01:43:35", "207.46.13.105", "47");
INSERT INTO `wp_rg_form_view` VALUES("70856", "6", "2017-12-09 01:43:44", "207.46.13.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("70857", "9", "2017-12-09 01:44:23", "207.46.13.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("70858", "10", "2017-12-09 01:44:26", "207.46.13.37", "6");
INSERT INTO `wp_rg_form_view` VALUES("70859", "8", "2017-12-09 01:52:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70860", "15", "2017-12-09 01:52:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70861", "10", "2017-12-09 03:38:41", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70862", "14", "2017-12-09 03:43:21", "157.55.39.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("70863", "3", "2017-12-09 03:46:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70864", "9", "2017-12-09 03:46:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70865", "8", "2017-12-09 03:46:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70866", "15", "2017-12-09 03:46:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70867", "3", "2017-12-09 05:40:59", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70868", "9", "2017-12-09 05:41:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70869", "8", "2017-12-09 05:41:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70870", "10", "2017-12-09 05:41:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70871", "15", "2017-12-09 05:41:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70872", "10", "2017-12-09 06:35:08", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("70873", "3", "2017-12-09 07:24:59", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70874", "9", "2017-12-09 07:25:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70875", "8", "2017-12-09 07:25:02", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70876", "10", "2017-12-09 07:25:03", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70877", "15", "2017-12-09 07:25:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70878", "3", "2017-12-09 09:15:01", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70879", "9", "2017-12-09 09:15:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70880", "8", "2017-12-09 09:15:03", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70881", "10", "2017-12-09 09:15:05", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70882", "15", "2017-12-09 09:15:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70883", "3", "2017-12-09 11:00:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70884", "9", "2017-12-09 11:00:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70885", "8", "2017-12-09 11:00:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70886", "10", "2017-12-09 11:00:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70887", "15", "2017-12-09 11:00:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70888", "3", "2017-12-09 12:44:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70889", "9", "2017-12-09 12:44:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70890", "8", "2017-12-09 12:44:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70891", "10", "2017-12-09 12:44:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70892", "15", "2017-12-09 12:44:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70893", "10", "2017-12-09 13:00:29", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70894", "3", "2017-12-09 14:23:59", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70895", "9", "2017-12-09 14:24:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70896", "8", "2017-12-09 14:24:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70897", "10", "2017-12-09 14:24:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70898", "15", "2017-12-09 14:24:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70899", "3", "2017-12-09 16:17:07", "109.169.29.30", "62");
INSERT INTO `wp_rg_form_view` VALUES("70900", "8", "2017-12-09 16:28:26", "178.140.235.235", "5");
INSERT INTO `wp_rg_form_view` VALUES("70901", "9", "2017-12-09 16:29:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70902", "10", "2017-12-09 16:29:51", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70903", "15", "2017-12-09 16:29:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70904", "10", "2017-12-09 17:06:41", "194.187.170.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("70905", "3", "2017-12-09 17:25:27", "194.187.170.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("70906", "3", "2017-12-09 18:01:18", "194.187.170.121", "34");
INSERT INTO `wp_rg_form_view` VALUES("70907", "10", "2017-12-09 18:08:05", "194.187.170.121", "9");
INSERT INTO `wp_rg_form_view` VALUES("70908", "9", "2017-12-09 18:24:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70909", "8", "2017-12-09 18:24:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70910", "15", "2017-12-09 18:24:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70911", "8", "2017-12-09 19:45:21", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70912", "3", "2017-12-09 20:16:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70913", "9", "2017-12-09 20:16:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70914", "8", "2017-12-09 20:16:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70915", "10", "2017-12-09 20:16:18", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70916", "15", "2017-12-09 20:16:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70917", "10", "2017-12-09 21:11:05", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70918", "3", "2017-12-09 22:34:47", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("70919", "9", "2017-12-09 22:34:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70920", "8", "2017-12-09 22:34:48", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("70921", "10", "2017-12-09 22:34:49", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("70922", "15", "2017-12-09 22:34:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70923", "14", "2017-12-09 23:33:13", "70.67.181.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("70924", "10", "2017-12-10 00:30:46", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70925", "3", "2017-12-10 00:59:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70926", "9", "2017-12-10 00:59:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70927", "8", "2017-12-10 00:59:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70928", "15", "2017-12-10 00:59:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70929", "10", "2017-12-10 01:05:40", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70930", "3", "2017-12-10 02:41:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70931", "9", "2017-12-10 02:41:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70932", "8", "2017-12-10 02:41:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70933", "10", "2017-12-10 02:41:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70934", "15", "2017-12-10 02:41:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70935", "3", "2017-12-10 03:53:41", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("70936", "10", "2017-12-10 04:02:07", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70937", "3", "2017-12-10 04:51:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70938", "9", "2017-12-10 04:51:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70939", "8", "2017-12-10 04:51:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70940", "15", "2017-12-10 04:51:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70941", "3", "2017-12-10 05:33:01", "194.187.170.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("70942", "3", "2017-12-10 06:00:16", "194.187.170.112", "36");
INSERT INTO `wp_rg_form_view` VALUES("70943", "9", "2017-12-10 06:34:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70944", "8", "2017-12-10 06:34:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70945", "10", "2017-12-10 06:34:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70946", "15", "2017-12-10 06:34:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70947", "10", "2017-12-10 07:05:25", "194.187.170.112", "3");
INSERT INTO `wp_rg_form_view` VALUES("70948", "8", "2017-12-10 07:45:19", "194.187.170.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("70949", "3", "2017-12-10 07:52:39", "194.187.170.112", "2");
INSERT INTO `wp_rg_form_view` VALUES("70950", "3", "2017-12-10 08:01:38", "194.187.170.112", "31");
INSERT INTO `wp_rg_form_view` VALUES("70951", "9", "2017-12-10 08:21:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70952", "8", "2017-12-10 08:21:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70953", "10", "2017-12-10 08:21:41", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("70954", "15", "2017-12-10 08:21:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70955", "10", "2017-12-10 09:49:42", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("70956", "10", "2017-12-10 10:04:35", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("70957", "3", "2017-12-10 10:11:17", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70958", "9", "2017-12-10 10:11:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70959", "8", "2017-12-10 10:11:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70960", "15", "2017-12-10 10:11:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70961", "3", "2017-12-10 12:11:20", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("70962", "9", "2017-12-10 12:11:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70963", "8", "2017-12-10 12:11:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70964", "10", "2017-12-10 12:11:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70965", "15", "2017-12-10 12:11:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70966", "10", "2017-12-10 13:00:26", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("70967", "3", "2017-12-10 13:08:22", "207.46.13.118", "36");
INSERT INTO `wp_rg_form_view` VALUES("70968", "9", "2017-12-10 13:54:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70969", "8", "2017-12-10 13:54:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70970", "15", "2017-12-10 13:54:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70971", "3", "2017-12-10 14:10:18", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("70972", "10", "2017-12-10 15:25:44", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("70973", "3", "2017-12-10 16:06:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70974", "9", "2017-12-10 16:06:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70975", "8", "2017-12-10 16:06:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70976", "10", "2017-12-10 16:06:37", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("70977", "15", "2017-12-10 16:06:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70978", "3", "2017-12-10 17:34:29", "40.77.167.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("70979", "3", "2017-12-10 18:01:16", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("70980", "9", "2017-12-10 18:01:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70981", "8", "2017-12-10 18:01:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70982", "10", "2017-12-10 18:01:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("70983", "15", "2017-12-10 18:01:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70984", "3", "2017-12-10 19:55:35", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("70985", "9", "2017-12-10 19:55:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70986", "8", "2017-12-10 19:55:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("70987", "10", "2017-12-10 19:55:39", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("70988", "15", "2017-12-10 19:55:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70989", "14", "2017-12-10 19:58:15", "46.229.168.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("70990", "3", "2017-12-10 20:00:12", "46.229.168.68", "35");
INSERT INTO `wp_rg_form_view` VALUES("70991", "9", "2017-12-10 20:00:29", "46.229.168.68", "3");
INSERT INTO `wp_rg_form_view` VALUES("70992", "8", "2017-12-10 20:01:21", "46.229.168.75", "5");
INSERT INTO `wp_rg_form_view` VALUES("70993", "10", "2017-12-10 20:02:41", "46.229.168.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("70994", "14", "2017-12-10 20:04:51", "46.229.168.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("70995", "11", "2017-12-10 20:11:37", "46.229.168.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("70996", "6", "2017-12-10 20:17:55", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("70997", "3", "2017-12-10 21:50:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("70998", "9", "2017-12-10 21:50:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("70999", "8", "2017-12-10 21:50:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71000", "10", "2017-12-10 21:50:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71001", "15", "2017-12-10 21:50:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71002", "10", "2017-12-10 23:07:47", "72.14.199.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("71003", "3", "2017-12-10 23:28:48", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("71004", "3", "2017-12-11 00:10:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71005", "9", "2017-12-11 00:10:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71006", "8", "2017-12-11 00:10:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71007", "10", "2017-12-11 00:10:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71008", "15", "2017-12-11 00:10:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71009", "3", "2017-12-11 02:05:21", "5.9.98.130", "31");
INSERT INTO `wp_rg_form_view` VALUES("71010", "9", "2017-12-11 02:15:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71011", "8", "2017-12-11 02:15:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71012", "10", "2017-12-11 02:15:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71013", "15", "2017-12-11 02:15:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71014", "10", "2017-12-11 03:57:28", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71015", "3", "2017-12-11 04:09:36", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71016", "9", "2017-12-11 04:09:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71017", "8", "2017-12-11 04:09:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71018", "10", "2017-12-11 04:09:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71019", "15", "2017-12-11 04:09:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71020", "14", "2017-12-11 04:40:36", "24.68.137.88", "2");
INSERT INTO `wp_rg_form_view` VALUES("71021", "8", "2017-12-11 05:27:09", "51.255.71.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("71022", "3", "2017-12-11 06:10:27", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71023", "9", "2017-12-11 06:10:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71024", "8", "2017-12-11 06:10:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71025", "10", "2017-12-11 06:10:29", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71026", "15", "2017-12-11 06:10:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71027", "3", "2017-12-11 08:11:40", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71028", "9", "2017-12-11 08:11:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71029", "8", "2017-12-11 08:11:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71030", "10", "2017-12-11 08:11:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71031", "15", "2017-12-11 08:11:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71032", "10", "2017-12-11 09:13:13", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71033", "8", "2017-12-11 09:15:29", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71034", "3", "2017-12-11 10:02:06", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71035", "9", "2017-12-11 10:02:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71036", "8", "2017-12-11 10:02:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71037", "10", "2017-12-11 10:02:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71038", "15", "2017-12-11 10:02:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71039", "3", "2017-12-11 11:45:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71040", "9", "2017-12-11 11:45:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71041", "8", "2017-12-11 11:45:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71042", "10", "2017-12-11 11:45:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71043", "15", "2017-12-11 11:45:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71044", "10", "2017-12-11 12:50:46", "72.14.199.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("71045", "10", "2017-12-11 13:00:21", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71046", "3", "2017-12-11 13:27:06", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71047", "9", "2017-12-11 13:27:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71048", "8", "2017-12-11 13:27:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71049", "15", "2017-12-11 13:27:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71050", "15", "2017-12-11 14:35:22", "157.55.39.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("71051", "3", "2017-12-11 15:21:35", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71052", "9", "2017-12-11 15:21:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71053", "8", "2017-12-11 15:21:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71054", "10", "2017-12-11 15:21:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71055", "15", "2017-12-11 15:21:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71056", "3", "2017-12-11 17:12:37", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71057", "9", "2017-12-11 17:12:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71058", "8", "2017-12-11 17:12:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71059", "10", "2017-12-11 17:12:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71060", "15", "2017-12-11 17:12:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71061", "3", "2017-12-11 19:11:42", "208.110.93.78", "32");
INSERT INTO `wp_rg_form_view` VALUES("71062", "9", "2017-12-11 19:21:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71063", "8", "2017-12-11 19:21:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71064", "10", "2017-12-11 19:21:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71065", "15", "2017-12-11 19:21:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71066", "3", "2017-12-11 20:23:14", "185.138.241.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("71067", "14", "2017-12-11 20:50:04", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("71068", "3", "2017-12-11 21:00:19", "185.138.241.45", "32");
INSERT INTO `wp_rg_form_view` VALUES("71069", "8", "2017-12-11 21:06:09", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("71070", "9", "2017-12-11 21:27:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71071", "10", "2017-12-11 21:27:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71072", "15", "2017-12-11 21:27:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71073", "14", "2017-12-11 21:39:09", "96.50.61.101", "2");
INSERT INTO `wp_rg_form_view` VALUES("71074", "3", "2017-12-11 23:23:27", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71075", "9", "2017-12-11 23:23:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71076", "8", "2017-12-11 23:23:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71077", "10", "2017-12-11 23:23:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71078", "15", "2017-12-11 23:23:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71079", "10", "2017-12-12 01:06:41", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("71080", "3", "2017-12-12 01:16:03", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71081", "9", "2017-12-12 01:16:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71082", "8", "2017-12-12 01:16:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71083", "15", "2017-12-12 01:16:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71084", "10", "2017-12-12 02:13:30", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71085", "3", "2017-12-12 02:47:47", "54.90.207.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("71086", "3", "2017-12-12 03:03:47", "34.229.146.143", "32");
INSERT INTO `wp_rg_form_view` VALUES("71087", "9", "2017-12-12 03:16:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71088", "8", "2017-12-12 03:16:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71089", "10", "2017-12-12 03:16:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71090", "15", "2017-12-12 03:16:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71091", "14", "2017-12-12 03:45:49", "195.154.180.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("71092", "10", "2017-12-12 04:14:15", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71093", "3", "2017-12-12 04:59:21", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71094", "9", "2017-12-12 04:59:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71095", "8", "2017-12-12 04:59:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71096", "15", "2017-12-12 04:59:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71097", "10", "2017-12-12 06:15:09", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71098", "3", "2017-12-12 06:47:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71099", "9", "2017-12-12 06:47:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71100", "8", "2017-12-12 06:47:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71101", "15", "2017-12-12 06:47:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71102", "10", "2017-12-12 07:23:14", "100.43.91.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("71103", "3", "2017-12-12 07:50:45", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("71104", "10", "2017-12-12 08:15:59", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71105", "3", "2017-12-12 08:38:09", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71106", "9", "2017-12-12 08:38:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71107", "8", "2017-12-12 08:38:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71108", "15", "2017-12-12 08:38:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71109", "3", "2017-12-12 09:15:43", "157.55.39.240", "19");
INSERT INTO `wp_rg_form_view` VALUES("71110", "10", "2017-12-12 09:17:45", "164.132.161.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("71111", "9", "2017-12-12 09:18:11", "40.77.167.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("71112", "11", "2017-12-12 09:55:02", "157.55.39.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("71113", "3", "2017-12-12 10:53:07", "34.229.146.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("71114", "3", "2017-12-12 11:05:15", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71115", "9", "2017-12-12 11:05:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71116", "8", "2017-12-12 11:05:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71117", "10", "2017-12-12 11:05:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71118", "15", "2017-12-12 11:05:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71119", "14", "2017-12-12 11:53:09", "199.195.253.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("71120", "3", "2017-12-12 12:48:52", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71121", "9", "2017-12-12 12:48:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71122", "8", "2017-12-12 12:48:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71123", "10", "2017-12-12 12:48:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71124", "15", "2017-12-12 12:48:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71125", "10", "2017-12-12 13:00:23", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71126", "3", "2017-12-12 14:11:15", "68.180.228.176", "32");
INSERT INTO `wp_rg_form_view` VALUES("71127", "9", "2017-12-12 14:40:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71128", "8", "2017-12-12 14:40:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71129", "10", "2017-12-12 14:40:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71130", "15", "2017-12-12 14:40:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71131", "10", "2017-12-12 15:26:23", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71132", "3", "2017-12-12 15:57:43", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("71133", "3", "2017-12-12 16:22:16", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71134", "9", "2017-12-12 16:22:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71135", "8", "2017-12-12 16:22:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71136", "10", "2017-12-12 16:22:19", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71137", "15", "2017-12-12 16:22:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71138", "10", "2017-12-12 17:27:14", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("71139", "3", "2017-12-12 18:35:50", "173.234.153.122", "31");
INSERT INTO `wp_rg_form_view` VALUES("71140", "9", "2017-12-12 18:47:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71141", "8", "2017-12-12 18:47:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71142", "10", "2017-12-12 18:47:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71143", "15", "2017-12-12 18:47:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71144", "10", "2017-12-12 19:28:01", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71145", "14", "2017-12-12 19:35:07", "75.157.24.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("71146", "3", "2017-12-12 20:44:12", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71147", "9", "2017-12-12 20:44:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71148", "8", "2017-12-12 20:44:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71149", "10", "2017-12-12 20:44:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71150", "15", "2017-12-12 20:44:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71151", "10", "2017-12-12 21:28:53", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71152", "3", "2017-12-12 22:44:44", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71153", "9", "2017-12-12 22:44:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71154", "8", "2017-12-12 22:44:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71155", "10", "2017-12-12 22:44:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71156", "15", "2017-12-12 22:44:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71157", "10", "2017-12-12 23:29:42", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("71158", "10", "2017-12-13 00:15:46", "199.16.157.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("71159", "3", "2017-12-13 00:48:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71160", "9", "2017-12-13 00:48:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71161", "8", "2017-12-13 00:48:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71162", "15", "2017-12-13 00:48:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71163", "10", "2017-12-13 01:12:26", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71164", "12", "2017-12-13 02:28:05", "51.255.65.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("71165", "9", "2017-12-13 02:49:04", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71166", "3", "2017-12-13 03:17:08", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71167", "9", "2017-12-13 03:17:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71168", "8", "2017-12-13 03:17:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71169", "10", "2017-12-13 03:17:10", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71170", "15", "2017-12-13 03:17:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71171", "3", "2017-12-13 05:13:29", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71172", "9", "2017-12-13 05:13:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71173", "8", "2017-12-13 05:13:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71174", "10", "2017-12-13 05:13:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71175", "15", "2017-12-13 05:13:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71176", "10", "2017-12-13 07:06:36", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71177", "3", "2017-12-13 07:13:31", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71178", "9", "2017-12-13 07:13:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71179", "8", "2017-12-13 07:13:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71180", "15", "2017-12-13 07:13:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71181", "3", "2017-12-13 08:01:24", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("71182", "10", "2017-12-13 09:07:25", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71183", "3", "2017-12-13 09:23:05", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71184", "9", "2017-12-13 09:23:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71185", "8", "2017-12-13 09:23:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71186", "15", "2017-12-13 09:23:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71187", "3", "2017-12-13 11:19:00", "66.249.79.135", "32");
INSERT INTO `wp_rg_form_view` VALUES("71188", "9", "2017-12-13 11:31:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71189", "8", "2017-12-13 11:31:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71190", "10", "2017-12-13 11:31:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71191", "15", "2017-12-13 11:31:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71192", "8", "2017-12-13 12:35:35", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71193", "3", "2017-12-13 12:55:09", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("71194", "3", "2017-12-13 13:16:52", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("71195", "9", "2017-12-13 13:16:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71196", "8", "2017-12-13 13:16:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71197", "10", "2017-12-13 13:16:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71198", "15", "2017-12-13 13:16:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71199", "3", "2017-12-13 14:45:27", "180.76.15.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("71200", "3", "2017-12-13 15:01:42", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71201", "9", "2017-12-13 15:01:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71202", "8", "2017-12-13 15:01:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71203", "10", "2017-12-13 15:01:45", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("71204", "15", "2017-12-13 15:01:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71205", "14", "2017-12-13 16:02:55", "69.58.178.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("71206", "3", "2017-12-13 16:48:43", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71207", "9", "2017-12-13 16:48:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71208", "8", "2017-12-13 16:48:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71209", "10", "2017-12-13 16:48:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71210", "15", "2017-12-13 16:48:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71211", "3", "2017-12-13 17:46:48", "68.180.228.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("71212", "10", "2017-12-13 18:20:46", "72.14.199.119", "7");
INSERT INTO `wp_rg_form_view` VALUES("71213", "3", "2017-12-13 18:29:50", "216.244.66.231", "31");
INSERT INTO `wp_rg_form_view` VALUES("71214", "9", "2017-12-13 18:37:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71215", "8", "2017-12-13 18:37:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71216", "15", "2017-12-13 18:37:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71217", "10", "2017-12-13 20:23:38", "100.43.90.200", "6");
INSERT INTO `wp_rg_form_view` VALUES("71218", "3", "2017-12-13 20:32:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71219", "9", "2017-12-13 20:32:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71220", "8", "2017-12-13 20:32:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71221", "15", "2017-12-13 20:32:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71222", "3", "2017-12-13 21:36:40", "5.9.156.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("71223", "3", "2017-12-13 22:22:20", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71224", "9", "2017-12-13 22:22:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71225", "8", "2017-12-13 22:22:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71226", "10", "2017-12-13 22:22:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71227", "15", "2017-12-13 22:22:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71228", "9", "2017-12-13 23:25:13", "217.182.132.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("71229", "3", "2017-12-14 00:12:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71230", "9", "2017-12-14 00:12:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71231", "8", "2017-12-14 00:12:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71232", "10", "2017-12-14 00:12:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71233", "15", "2017-12-14 00:12:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71234", "8", "2017-12-14 01:11:09", "176.77.2.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("71235", "3", "2017-12-14 02:02:41", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71236", "9", "2017-12-14 02:02:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71237", "8", "2017-12-14 02:02:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71238", "10", "2017-12-14 02:02:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71239", "15", "2017-12-14 02:02:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71240", "11", "2017-12-14 02:58:58", "66.249.79.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("71241", "3", "2017-12-14 03:46:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71242", "9", "2017-12-14 03:46:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71243", "8", "2017-12-14 03:46:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71244", "10", "2017-12-14 03:46:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71245", "15", "2017-12-14 03:46:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71246", "3", "2017-12-14 05:27:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71247", "9", "2017-12-14 05:27:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71248", "8", "2017-12-14 05:27:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71249", "10", "2017-12-14 05:27:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71250", "15", "2017-12-14 05:27:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71251", "3", "2017-12-14 06:12:58", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71252", "3", "2017-12-14 07:23:50", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71253", "9", "2017-12-14 07:23:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71254", "8", "2017-12-14 07:23:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71255", "10", "2017-12-14 07:23:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71256", "15", "2017-12-14 07:23:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71257", "8", "2017-12-14 08:01:16", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71258", "10", "2017-12-14 08:27:25", "72.14.199.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("71259", "3", "2017-12-14 08:36:15", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71260", "3", "2017-12-14 09:07:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71261", "9", "2017-12-14 09:07:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71262", "8", "2017-12-14 09:07:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71263", "10", "2017-12-14 09:07:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71264", "15", "2017-12-14 09:07:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71265", "8", "2017-12-14 10:27:02", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("71266", "3", "2017-12-14 10:52:39", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71267", "9", "2017-12-14 10:52:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71268", "10", "2017-12-14 10:52:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71269", "15", "2017-12-14 10:52:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71270", "3", "2017-12-14 11:02:34", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("71271", "10", "2017-12-14 12:20:16", "207.46.13.72", "6");
INSERT INTO `wp_rg_form_view` VALUES("71272", "3", "2017-12-14 12:47:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71273", "9", "2017-12-14 12:47:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71274", "8", "2017-12-14 12:47:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71275", "15", "2017-12-14 12:47:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71276", "10", "2017-12-14 13:00:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71277", "3", "2017-12-14 13:19:27", "164.132.161.54", "2");
INSERT INTO `wp_rg_form_view` VALUES("71278", "3", "2017-12-14 14:06:12", "216.244.66.231", "32");
INSERT INTO `wp_rg_form_view` VALUES("71279", "9", "2017-12-14 14:59:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71280", "8", "2017-12-14 14:59:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71281", "10", "2017-12-14 14:59:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71282", "15", "2017-12-14 14:59:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71283", "10", "2017-12-14 15:26:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71284", "3", "2017-12-14 16:05:13", "216.244.66.231", "31");
INSERT INTO `wp_rg_form_view` VALUES("71285", "9", "2017-12-14 16:53:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71286", "8", "2017-12-14 16:53:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71287", "10", "2017-12-14 16:53:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71288", "15", "2017-12-14 16:53:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71289", "3", "2017-12-14 18:42:44", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71290", "9", "2017-12-14 18:42:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71291", "8", "2017-12-14 18:42:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71292", "10", "2017-12-14 18:42:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71293", "15", "2017-12-14 18:42:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71294", "3", "2017-12-14 20:05:37", "178.203.120.211", "32");
INSERT INTO `wp_rg_form_view` VALUES("71295", "9", "2017-12-14 20:47:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71296", "8", "2017-12-14 20:47:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71297", "10", "2017-12-14 20:47:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71298", "15", "2017-12-14 20:47:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71299", "10", "2017-12-14 21:13:10", "157.55.39.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("71300", "14", "2017-12-14 22:51:22", "108.166.233.152", "3");
INSERT INTO `wp_rg_form_view` VALUES("71301", "3", "2017-12-14 22:52:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71302", "9", "2017-12-14 22:52:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71303", "8", "2017-12-14 22:52:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71304", "10", "2017-12-14 22:52:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71305", "15", "2017-12-14 22:52:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71306", "10", "2017-12-14 23:42:44", "72.14.199.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("71307", "3", "2017-12-14 23:52:04", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71308", "14", "2017-12-15 00:10:36", "24.108.203.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("71309", "3", "2017-12-15 00:41:56", "217.182.132.190", "31");
INSERT INTO `wp_rg_form_view` VALUES("71310", "9", "2017-12-15 00:44:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71311", "8", "2017-12-15 00:44:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71312", "10", "2017-12-15 00:44:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71313", "15", "2017-12-15 00:44:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71314", "3", "2017-12-15 01:17:33", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71315", "3", "2017-12-15 02:23:30", "164.132.161.41", "31");
INSERT INTO `wp_rg_form_view` VALUES("71316", "9", "2017-12-15 02:37:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71317", "8", "2017-12-15 02:37:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71318", "10", "2017-12-15 02:37:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71319", "15", "2017-12-15 02:37:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71320", "3", "2017-12-15 03:37:42", "66.249.79.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("71321", "3", "2017-12-15 04:14:01", "51.255.65.17", "34");
INSERT INTO `wp_rg_form_view` VALUES("71322", "9", "2017-12-15 04:43:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71323", "8", "2017-12-15 04:43:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71324", "10", "2017-12-15 04:43:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71325", "15", "2017-12-15 04:43:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71326", "11", "2017-12-15 04:51:50", "157.55.39.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("71327", "10", "2017-12-15 05:05:57", "157.55.39.188", "4");
INSERT INTO `wp_rg_form_view` VALUES("71328", "3", "2017-12-15 05:06:13", "157.55.39.188", "6");
INSERT INTO `wp_rg_form_view` VALUES("71329", "9", "2017-12-15 05:48:30", "157.55.39.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("71330", "10", "2017-12-15 06:41:48", "72.14.199.119", "6");
INSERT INTO `wp_rg_form_view` VALUES("71331", "3", "2017-12-15 06:42:16", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71332", "9", "2017-12-15 06:42:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71333", "8", "2017-12-15 06:42:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71334", "15", "2017-12-15 06:42:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71335", "10", "2017-12-15 07:14:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71336", "14", "2017-12-15 07:21:04", "182.253.209.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("71337", "3", "2017-12-15 08:15:53", "51.255.65.74", "31");
INSERT INTO `wp_rg_form_view` VALUES("71338", "9", "2017-12-15 08:29:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71339", "8", "2017-12-15 08:29:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71340", "10", "2017-12-15 08:29:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71341", "15", "2017-12-15 08:29:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71342", "14", "2017-12-15 09:49:34", "207.46.13.3", "1");
INSERT INTO `wp_rg_form_view` VALUES("71343", "3", "2017-12-15 09:53:41", "157.55.39.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("71344", "3", "2017-12-15 10:24:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71345", "9", "2017-12-15 10:24:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71346", "8", "2017-12-15 10:24:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71347", "10", "2017-12-15 10:24:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71348", "15", "2017-12-15 10:24:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71349", "3", "2017-12-15 12:15:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71350", "9", "2017-12-15 12:15:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71351", "8", "2017-12-15 12:15:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71352", "10", "2017-12-15 12:15:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71353", "15", "2017-12-15 12:15:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71354", "10", "2017-12-15 13:00:23", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("71355", "8", "2017-12-15 13:42:31", "184.145.143.233", "2");
INSERT INTO `wp_rg_form_view` VALUES("71356", "3", "2017-12-15 14:13:10", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("71357", "9", "2017-12-15 14:13:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71358", "8", "2017-12-15 14:13:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71359", "10", "2017-12-15 14:13:12", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71360", "15", "2017-12-15 14:13:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71361", "10", "2017-12-15 15:26:00", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71362", "3", "2017-12-15 16:03:55", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("71363", "9", "2017-12-15 16:03:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71364", "8", "2017-12-15 16:03:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71365", "10", "2017-12-15 16:03:58", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71366", "15", "2017-12-15 16:04:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71367", "3", "2017-12-15 17:58:07", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71368", "9", "2017-12-15 17:58:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71369", "8", "2017-12-15 17:58:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71370", "10", "2017-12-15 17:58:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71371", "15", "2017-12-15 17:58:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71372", "3", "2017-12-15 18:11:05", "40.77.167.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("71373", "10", "2017-12-15 19:31:56", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71374", "3", "2017-12-15 19:52:52", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71375", "9", "2017-12-15 19:52:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71376", "8", "2017-12-15 19:52:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71377", "15", "2017-12-15 19:52:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71378", "3", "2017-12-15 20:28:57", "95.91.13.61", "4");
INSERT INTO `wp_rg_form_view` VALUES("71379", "3", "2017-12-15 21:02:25", "70.67.201.51", "71");
INSERT INTO `wp_rg_form_view` VALUES("71380", "15", "2017-12-15 21:11:59", "46.229.168.73", "4");
INSERT INTO `wp_rg_form_view` VALUES("71381", "8", "2017-12-15 21:17:43", "46.229.168.80", "5");
INSERT INTO `wp_rg_form_view` VALUES("71382", "6", "2017-12-15 21:18:26", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("71383", "9", "2017-12-15 21:43:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71384", "10", "2017-12-15 21:43:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71385", "3", "2017-12-15 23:43:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71386", "9", "2017-12-15 23:43:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71387", "8", "2017-12-15 23:43:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71388", "10", "2017-12-15 23:43:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71389", "15", "2017-12-15 23:43:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71390", "3", "2017-12-16 01:34:27", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71391", "9", "2017-12-16 01:34:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71392", "8", "2017-12-16 01:34:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71393", "10", "2017-12-16 01:34:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71394", "15", "2017-12-16 01:34:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71395", "3", "2017-12-16 03:29:12", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71396", "9", "2017-12-16 03:29:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71397", "8", "2017-12-16 03:29:16", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("71398", "10", "2017-12-16 03:29:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71399", "15", "2017-12-16 03:29:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71400", "3", "2017-12-16 04:09:07", "13.58.153.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("71401", "3", "2017-12-16 05:10:54", "139.162.246.24", "31");
INSERT INTO `wp_rg_form_view` VALUES("71402", "9", "2017-12-16 05:12:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71403", "8", "2017-12-16 05:12:58", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("71404", "10", "2017-12-16 05:12:58", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71405", "15", "2017-12-16 05:13:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71406", "3", "2017-12-16 06:54:23", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71407", "9", "2017-12-16 06:54:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71408", "8", "2017-12-16 06:54:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71409", "10", "2017-12-16 06:54:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71410", "15", "2017-12-16 06:54:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71411", "15", "2017-12-16 07:00:38", "217.182.132.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("71412", "3", "2017-12-16 07:34:19", "180.76.15.9", "3");
INSERT INTO `wp_rg_form_view` VALUES("71413", "3", "2017-12-16 08:37:50", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71414", "9", "2017-12-16 08:37:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71415", "8", "2017-12-16 08:37:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71416", "10", "2017-12-16 08:37:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71417", "15", "2017-12-16 08:37:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71418", "3", "2017-12-16 09:44:53", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71419", "3", "2017-12-16 10:47:46", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71420", "9", "2017-12-16 10:47:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71421", "8", "2017-12-16 10:47:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71422", "10", "2017-12-16 10:47:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71423", "15", "2017-12-16 10:47:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71424", "3", "2017-12-16 11:35:31", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("71425", "10", "2017-12-16 11:38:29", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71426", "3", "2017-12-16 12:42:44", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71427", "9", "2017-12-16 12:42:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71428", "8", "2017-12-16 12:42:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71429", "10", "2017-12-16 12:42:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71430", "15", "2017-12-16 12:42:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71431", "10", "2017-12-16 13:00:25", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71432", "3", "2017-12-16 13:05:12", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("71433", "8", "2017-12-16 13:08:09", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71434", "3", "2017-12-16 14:29:40", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71435", "9", "2017-12-16 14:29:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71436", "8", "2017-12-16 14:29:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71437", "10", "2017-12-16 14:29:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71438", "15", "2017-12-16 14:29:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71439", "10", "2017-12-16 15:31:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71440", "3", "2017-12-16 15:36:37", "216.244.66.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("71441", "3", "2017-12-16 16:03:25", "216.244.66.231", "32");
INSERT INTO `wp_rg_form_view` VALUES("71442", "9", "2017-12-16 16:34:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71443", "8", "2017-12-16 16:34:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71444", "10", "2017-12-16 16:34:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71445", "15", "2017-12-16 16:34:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71446", "3", "2017-12-16 17:33:30", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71447", "3", "2017-12-16 18:02:31", "139.162.246.24", "51");
INSERT INTO `wp_rg_form_view` VALUES("71448", "10", "2017-12-16 18:27:05", "157.55.39.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("71449", "9", "2017-12-16 18:28:09", "157.55.39.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("71450", "8", "2017-12-16 18:29:32", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("71451", "15", "2017-12-16 18:29:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71452", "10", "2017-12-16 19:51:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71453", "3", "2017-12-16 20:19:59", "52.37.180.245", "61");
INSERT INTO `wp_rg_form_view` VALUES("71454", "9", "2017-12-16 20:20:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71455", "8", "2017-12-16 20:20:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("71456", "10", "2017-12-16 20:20:01", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("71457", "15", "2017-12-16 20:20:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71458", "3", "2017-12-16 21:06:55", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71459", "10", "2017-12-16 21:13:17", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("71460", "3", "2017-12-16 22:14:13", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71461", "9", "2017-12-16 22:14:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71462", "8", "2017-12-16 22:14:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71463", "10", "2017-12-16 22:14:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71464", "15", "2017-12-16 22:14:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71465", "3", "2017-12-16 23:06:03", "144.76.38.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("71466", "3", "2017-12-17 00:25:18", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("71467", "9", "2017-12-17 00:25:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71468", "8", "2017-12-17 00:25:20", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("71469", "10", "2017-12-17 00:25:21", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("71470", "15", "2017-12-17 00:25:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71471", "3", "2017-12-17 01:01:57", "178.63.1.153", "16");
INSERT INTO `wp_rg_form_view` VALUES("71472", "10", "2017-12-17 01:03:16", "178.63.1.153", "2");
INSERT INTO `wp_rg_form_view` VALUES("71473", "8", "2017-12-17 01:04:40", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("71474", "3", "2017-12-17 02:06:16", "157.55.39.86", "32");
INSERT INTO `wp_rg_form_view` VALUES("71475", "9", "2017-12-17 02:29:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71476", "8", "2017-12-17 02:29:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71477", "10", "2017-12-17 02:29:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71478", "15", "2017-12-17 02:29:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71479", "14", "2017-12-17 03:08:50", "24.69.8.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("71480", "3", "2017-12-17 04:04:22", "157.55.39.86", "31");
INSERT INTO `wp_rg_form_view` VALUES("71481", "9", "2017-12-17 04:09:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71482", "8", "2017-12-17 04:09:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71483", "10", "2017-12-17 04:09:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71484", "15", "2017-12-17 04:09:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71485", "10", "2017-12-17 05:36:13", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71486", "14", "2017-12-17 05:51:36", "165.231.133.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("71487", "3", "2017-12-17 05:58:25", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71488", "9", "2017-12-17 05:58:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71489", "8", "2017-12-17 05:58:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71490", "15", "2017-12-17 05:58:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71491", "3", "2017-12-17 06:48:20", "157.55.39.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("71492", "3", "2017-12-17 08:23:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71493", "9", "2017-12-17 08:23:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71494", "8", "2017-12-17 08:23:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71495", "10", "2017-12-17 08:23:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71496", "15", "2017-12-17 08:23:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71497", "11", "2017-12-17 08:50:16", "77.75.76.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("71498", "10", "2017-12-17 09:08:15", "199.16.157.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("71499", "3", "2017-12-17 10:20:48", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71500", "9", "2017-12-17 10:20:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71501", "8", "2017-12-17 10:20:49", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("71502", "10", "2017-12-17 10:20:50", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71503", "15", "2017-12-17 10:20:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71504", "3", "2017-12-17 11:07:44", "207.46.13.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("71505", "3", "2017-12-17 12:10:31", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71506", "9", "2017-12-17 12:10:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71507", "8", "2017-12-17 12:10:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71508", "10", "2017-12-17 12:10:33", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("71509", "15", "2017-12-17 12:10:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71510", "10", "2017-12-17 13:00:21", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71511", "3", "2017-12-17 13:31:40", "207.46.13.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("71512", "3", "2017-12-17 14:15:50", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71513", "9", "2017-12-17 14:15:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71514", "8", "2017-12-17 14:15:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71515", "10", "2017-12-17 14:15:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71516", "15", "2017-12-17 14:15:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71517", "10", "2017-12-17 15:26:26", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71518", "3", "2017-12-17 16:05:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71519", "9", "2017-12-17 16:05:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71520", "8", "2017-12-17 16:05:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71521", "10", "2017-12-17 16:05:32", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71522", "15", "2017-12-17 16:05:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71523", "10", "2017-12-17 17:52:55", "157.55.39.75", "6");
INSERT INTO `wp_rg_form_view` VALUES("71524", "3", "2017-12-17 17:54:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71525", "9", "2017-12-17 17:54:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71526", "8", "2017-12-17 17:54:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71527", "15", "2017-12-17 17:54:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71528", "3", "2017-12-17 18:05:25", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71529", "9", "2017-12-17 18:05:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71530", "8", "2017-12-17 18:05:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71531", "10", "2017-12-17 18:05:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71532", "15", "2017-12-17 18:05:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71533", "10", "2017-12-17 19:20:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71534", "3", "2017-12-17 20:16:01", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71535", "9", "2017-12-17 20:16:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71536", "8", "2017-12-17 20:16:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71537", "10", "2017-12-17 20:16:03", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71538", "15", "2017-12-17 20:16:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71539", "3", "2017-12-17 21:03:07", "66.249.79.137", "31");
INSERT INTO `wp_rg_form_view` VALUES("71540", "10", "2017-12-17 21:13:09", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("71541", "15", "2017-12-17 21:35:50", "66.249.79.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("71542", "9", "2017-12-17 21:59:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71543", "8", "2017-12-17 21:59:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71544", "3", "2017-12-17 22:09:16", "68.180.228.176", "6");
INSERT INTO `wp_rg_form_view` VALUES("71545", "10", "2017-12-17 22:18:34", "217.182.132.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("71546", "8", "2017-12-17 22:32:45", "70.66.152.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("71547", "10", "2017-12-17 23:08:21", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("71548", "3", "2017-12-17 23:11:00", "40.77.167.145", "32");
INSERT INTO `wp_rg_form_view` VALUES("71549", "9", "2017-12-17 23:51:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71550", "8", "2017-12-17 23:51:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71551", "15", "2017-12-17 23:51:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71552", "3", "2017-12-18 00:03:49", "164.132.162.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("71553", "10", "2017-12-18 00:28:37", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71554", "3", "2017-12-18 01:57:18", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71555", "9", "2017-12-18 01:57:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71556", "8", "2017-12-18 01:57:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71557", "10", "2017-12-18 01:57:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71558", "15", "2017-12-18 01:57:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71559", "14", "2017-12-18 03:02:00", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("71560", "10", "2017-12-18 03:45:23", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71561", "3", "2017-12-18 03:54:28", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71562", "9", "2017-12-18 03:54:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71563", "8", "2017-12-18 03:54:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71564", "15", "2017-12-18 03:54:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71565", "3", "2017-12-18 05:19:52", "88.198.67.69", "31");
INSERT INTO `wp_rg_form_view` VALUES("71566", "10", "2017-12-18 05:46:17", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71567", "9", "2017-12-18 05:46:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71568", "8", "2017-12-18 05:46:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71569", "15", "2017-12-18 05:46:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71570", "5", "2017-12-18 06:21:07", "51.255.65.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("71571", "3", "2017-12-18 07:40:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71572", "9", "2017-12-18 07:40:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71573", "8", "2017-12-18 07:40:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71574", "10", "2017-12-18 07:40:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71575", "15", "2017-12-18 07:40:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71576", "3", "2017-12-18 08:42:01", "40.77.167.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("71577", "3", "2017-12-18 09:21:42", "40.77.167.49", "31");
INSERT INTO `wp_rg_form_view` VALUES("71578", "9", "2017-12-18 09:34:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71579", "8", "2017-12-18 09:34:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71580", "10", "2017-12-18 09:34:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71581", "15", "2017-12-18 09:34:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71582", "10", "2017-12-18 10:59:49", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("71583", "3", "2017-12-18 11:29:35", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71584", "9", "2017-12-18 11:29:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71585", "8", "2017-12-18 11:29:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71586", "10", "2017-12-18 11:29:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71587", "15", "2017-12-18 11:29:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71588", "10", "2017-12-18 12:27:02", "51.255.65.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("71589", "10", "2017-12-18 13:00:20", "184.66.129.248", "11");
INSERT INTO `wp_rg_form_view` VALUES("71590", "3", "2017-12-18 13:14:53", "52.37.180.245", "61");
INSERT INTO `wp_rg_form_view` VALUES("71591", "9", "2017-12-18 13:14:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71592", "8", "2017-12-18 13:14:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("71593", "15", "2017-12-18 13:14:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71594", "10", "2017-12-18 14:04:47", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("71595", "3", "2017-12-18 15:05:49", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("71596", "9", "2017-12-18 15:05:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71597", "8", "2017-12-18 15:05:51", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("71598", "10", "2017-12-18 15:05:52", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("71599", "15", "2017-12-18 15:05:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71600", "11", "2017-12-18 15:33:10", "77.75.76.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("71601", "10", "2017-12-18 16:34:47", "199.16.157.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("71602", "3", "2017-12-18 16:51:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71603", "9", "2017-12-18 16:51:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71604", "8", "2017-12-18 16:51:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71605", "15", "2017-12-18 16:51:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71606", "10", "2017-12-18 17:27:15", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71607", "14", "2017-12-18 18:17:17", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("71608", "3", "2017-12-18 18:44:20", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71609", "9", "2017-12-18 18:44:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71610", "8", "2017-12-18 18:44:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71611", "10", "2017-12-18 18:44:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71612", "15", "2017-12-18 18:44:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71613", "10", "2017-12-18 19:28:06", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71614", "3", "2017-12-18 20:39:25", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("71615", "9", "2017-12-18 20:39:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71616", "8", "2017-12-18 20:39:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71617", "10", "2017-12-18 20:39:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71618", "15", "2017-12-18 20:39:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71619", "8", "2017-12-18 21:07:35", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("71620", "14", "2017-12-18 21:09:23", "50.92.226.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("71621", "3", "2017-12-18 21:14:20", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("71622", "10", "2017-12-18 21:28:52", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71623", "3", "2017-12-18 22:38:21", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71624", "9", "2017-12-18 22:38:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71625", "8", "2017-12-18 22:38:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71626", "10", "2017-12-18 22:38:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71627", "15", "2017-12-18 22:38:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71628", "10", "2017-12-18 23:29:46", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("71629", "3", "2017-12-19 00:15:33", "207.46.13.182", "31");
INSERT INTO `wp_rg_form_view` VALUES("71630", "9", "2017-12-19 00:32:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71631", "8", "2017-12-19 00:32:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71632", "10", "2017-12-19 00:32:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71633", "15", "2017-12-19 00:32:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71634", "3", "2017-12-19 02:16:54", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71635", "9", "2017-12-19 02:16:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71636", "8", "2017-12-19 02:16:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71637", "10", "2017-12-19 02:16:57", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71638", "15", "2017-12-19 02:17:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71639", "3", "2017-12-19 04:07:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71640", "9", "2017-12-19 04:07:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71641", "8", "2017-12-19 04:07:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71642", "10", "2017-12-19 04:07:17", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71643", "15", "2017-12-19 04:07:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71644", "3", "2017-12-19 05:16:30", "207.46.13.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("71645", "14", "2017-12-19 05:20:47", "139.130.67.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("71646", "10", "2017-12-19 05:47:45", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("71647", "3", "2017-12-19 06:05:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71648", "9", "2017-12-19 06:05:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71649", "8", "2017-12-19 06:05:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71650", "10", "2017-12-19 06:05:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71651", "15", "2017-12-19 06:05:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71652", "3", "2017-12-19 07:51:01", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71653", "9", "2017-12-19 07:51:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71654", "8", "2017-12-19 07:51:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71655", "10", "2017-12-19 07:51:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71656", "15", "2017-12-19 07:51:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71657", "10", "2017-12-19 08:02:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71658", "3", "2017-12-19 09:50:51", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71659", "9", "2017-12-19 09:50:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71660", "8", "2017-12-19 09:50:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71661", "10", "2017-12-19 09:50:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71662", "15", "2017-12-19 09:50:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71663", "3", "2017-12-19 11:36:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71664", "9", "2017-12-19 11:36:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71665", "8", "2017-12-19 11:36:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71666", "10", "2017-12-19 11:36:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71667", "15", "2017-12-19 11:36:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71668", "10", "2017-12-19 13:00:18", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71669", "3", "2017-12-19 13:16:20", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71670", "9", "2017-12-19 13:16:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71671", "8", "2017-12-19 13:16:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71672", "15", "2017-12-19 13:16:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71673", "3", "2017-12-19 15:04:09", "216.244.66.231", "47");
INSERT INTO `wp_rg_form_view` VALUES("71674", "9", "2017-12-19 15:07:20", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("71675", "8", "2017-12-19 15:07:21", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("71676", "10", "2017-12-19 15:07:21", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("71677", "15", "2017-12-19 15:07:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71678", "3", "2017-12-19 17:10:27", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71679", "9", "2017-12-19 17:10:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71680", "8", "2017-12-19 17:10:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71681", "10", "2017-12-19 17:10:30", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71682", "15", "2017-12-19 17:10:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71683", "3", "2017-12-19 18:21:57", "217.182.132.52", "31");
INSERT INTO `wp_rg_form_view` VALUES("71684", "8", "2017-12-19 18:48:57", "96.50.27.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("71685", "10", "2017-12-19 18:56:18", "72.14.199.65", "6");
INSERT INTO `wp_rg_form_view` VALUES("71686", "9", "2017-12-19 18:56:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71687", "15", "2017-12-19 18:56:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71688", "10", "2017-12-19 19:50:10", "207.46.13.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("71689", "3", "2017-12-19 19:58:32", "207.46.13.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("71690", "3", "2017-12-19 20:38:46", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71691", "9", "2017-12-19 20:38:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71692", "8", "2017-12-19 20:38:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71693", "10", "2017-12-19 20:38:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71694", "15", "2017-12-19 20:38:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71695", "3", "2017-12-19 21:42:26", "89.35.39.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("71696", "8", "2017-12-19 22:09:55", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("71697", "3", "2017-12-19 22:29:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71698", "9", "2017-12-19 22:29:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71699", "10", "2017-12-19 22:29:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71700", "15", "2017-12-19 22:29:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71701", "10", "2017-12-19 23:55:51", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71702", "3", "2017-12-20 00:09:17", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71703", "9", "2017-12-20 00:09:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71704", "8", "2017-12-20 00:09:18", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("71705", "10", "2017-12-20 00:09:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71706", "15", "2017-12-20 00:09:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71707", "10", "2017-12-20 01:53:38", "162.210.196.100", "6");
INSERT INTO `wp_rg_form_view` VALUES("71708", "3", "2017-12-20 01:54:40", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71709", "9", "2017-12-20 01:54:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71710", "8", "2017-12-20 01:54:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71711", "15", "2017-12-20 01:54:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71712", "3", "2017-12-20 03:03:47", "66.249.79.133", "61");
INSERT INTO `wp_rg_form_view` VALUES("71713", "9", "2017-12-20 03:35:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71714", "8", "2017-12-20 03:35:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71715", "10", "2017-12-20 03:35:08", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("71716", "15", "2017-12-20 03:35:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71717", "14", "2017-12-20 04:12:02", "96.50.18.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("71718", "8", "2017-12-20 04:35:41", "184.66.244.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("71719", "3", "2017-12-20 05:14:50", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("71720", "9", "2017-12-20 05:14:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71721", "8", "2017-12-20 05:14:52", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("71722", "10", "2017-12-20 05:14:52", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("71723", "15", "2017-12-20 05:14:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71724", "8", "2017-12-20 06:16:09", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("71725", "3", "2017-12-20 06:52:39", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71726", "9", "2017-12-20 06:52:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71727", "10", "2017-12-20 06:52:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71728", "15", "2017-12-20 06:52:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71729", "3", "2017-12-20 07:00:25", "164.132.161.18", "2");
INSERT INTO `wp_rg_form_view` VALUES("71730", "3", "2017-12-20 08:25:00", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("71731", "9", "2017-12-20 08:25:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71732", "8", "2017-12-20 08:25:02", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("71733", "10", "2017-12-20 08:25:02", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("71734", "15", "2017-12-20 08:25:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71735", "14", "2017-12-20 08:58:38", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("71736", "8", "2017-12-20 09:15:20", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("71737", "3", "2017-12-20 09:16:09", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("71738", "3", "2017-12-20 10:07:42", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71739", "9", "2017-12-20 10:07:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71740", "8", "2017-12-20 10:07:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71741", "10", "2017-12-20 10:07:44", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71742", "15", "2017-12-20 10:07:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71743", "9", "2017-12-20 11:26:07", "207.46.13.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("71744", "3", "2017-12-20 11:50:44", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71745", "8", "2017-12-20 11:50:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71746", "10", "2017-12-20 11:50:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71747", "15", "2017-12-20 11:50:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71748", "11", "2017-12-20 12:06:17", "77.75.76.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("71749", "8", "2017-12-20 13:23:37", "185.138.241.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("71750", "3", "2017-12-20 13:23:47", "185.138.241.45", "67");
INSERT INTO `wp_rg_form_view` VALUES("71751", "9", "2017-12-20 13:23:48", "185.138.241.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("71752", "10", "2017-12-20 13:23:49", "185.138.241.45", "10");
INSERT INTO `wp_rg_form_view` VALUES("71753", "15", "2017-12-20 13:23:51", "185.138.241.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("71754", "14", "2017-12-20 13:24:53", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("71755", "3", "2017-12-20 14:21:19", "207.46.13.182", "31");
INSERT INTO `wp_rg_form_view` VALUES("71756", "8", "2017-12-20 14:50:01", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("71757", "9", "2017-12-20 14:57:36", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("71758", "10", "2017-12-20 14:57:37", "185.138.241.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("71759", "15", "2017-12-20 14:57:39", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("71760", "3", "2017-12-20 15:01:42", "185.138.241.45", "63");
INSERT INTO `wp_rg_form_view` VALUES("71761", "9", "2017-12-20 15:05:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71762", "8", "2017-12-20 15:05:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71763", "10", "2017-12-20 15:05:47", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("71764", "15", "2017-12-20 15:05:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71765", "3", "2017-12-20 16:37:45", "139.162.246.24", "31");
INSERT INTO `wp_rg_form_view` VALUES("71766", "9", "2017-12-20 16:42:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71767", "8", "2017-12-20 16:42:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71768", "10", "2017-12-20 16:42:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71769", "15", "2017-12-20 16:42:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71770", "3", "2017-12-20 17:15:33", "46.229.168.69", "30");
INSERT INTO `wp_rg_form_view` VALUES("71771", "14", "2017-12-20 17:31:07", "46.229.168.76", "3");
INSERT INTO `wp_rg_form_view` VALUES("71772", "3", "2017-12-20 18:16:59", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71773", "9", "2017-12-20 18:17:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71774", "8", "2017-12-20 18:17:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71775", "10", "2017-12-20 18:17:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71776", "15", "2017-12-20 18:17:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71777", "3", "2017-12-20 19:01:08", "151.80.31.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("71778", "3", "2017-12-20 20:00:03", "52.37.180.245", "61");
INSERT INTO `wp_rg_form_view` VALUES("71779", "9", "2017-12-20 20:00:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71780", "8", "2017-12-20 20:00:06", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("71781", "10", "2017-12-20 20:00:06", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("71782", "15", "2017-12-20 20:00:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71783", "3", "2017-12-20 21:21:08", "151.80.31.151", "32");
INSERT INTO `wp_rg_form_view` VALUES("71784", "10", "2017-12-20 21:34:02", "72.14.199.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("71785", "9", "2017-12-20 21:41:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71786", "8", "2017-12-20 21:41:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71787", "15", "2017-12-20 21:41:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71788", "3", "2017-12-20 22:10:39", "66.249.79.135", "2");
INSERT INTO `wp_rg_form_view` VALUES("71789", "8", "2017-12-20 22:38:02", "96.50.5.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("71790", "3", "2017-12-20 23:19:28", "68.180.228.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("71791", "9", "2017-12-20 23:38:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71792", "8", "2017-12-20 23:38:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71793", "10", "2017-12-20 23:38:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71794", "15", "2017-12-20 23:38:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71795", "18", "2017-12-20 23:38:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71796", "14", "2017-12-20 23:44:45", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("71797", "10", "2017-12-21 00:12:38", "207.46.13.14", "2");
INSERT INTO `wp_rg_form_view` VALUES("71798", "3", "2017-12-21 01:25:34", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("71799", "9", "2017-12-21 01:25:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71800", "8", "2017-12-21 01:25:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71801", "10", "2017-12-21 01:25:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71802", "15", "2017-12-21 01:25:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71803", "18", "2017-12-21 01:25:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71804", "3", "2017-12-21 02:02:47", "185.138.241.45", "20");
INSERT INTO `wp_rg_form_view` VALUES("71805", "10", "2017-12-21 02:04:40", "185.138.241.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("71806", "8", "2017-12-21 02:18:33", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("71807", "18", "2017-12-21 02:20:21", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("71808", "3", "2017-12-21 03:00:33", "185.138.241.45", "47");
INSERT INTO `wp_rg_form_view` VALUES("71809", "9", "2017-12-21 03:10:39", "185.138.241.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("71810", "6", "2017-12-21 03:12:10", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("71811", "8", "2017-12-21 03:13:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71812", "10", "2017-12-21 03:13:10", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71813", "15", "2017-12-21 03:13:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71814", "18", "2017-12-21 03:13:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71815", "3", "2017-12-21 04:51:04", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71816", "9", "2017-12-21 04:51:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71817", "8", "2017-12-21 04:51:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71818", "10", "2017-12-21 04:51:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71819", "15", "2017-12-21 04:51:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71820", "18", "2017-12-21 04:51:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71821", "14", "2017-12-21 05:54:00", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("71822", "3", "2017-12-21 06:39:26", "216.244.66.231", "31");
INSERT INTO `wp_rg_form_view` VALUES("71823", "9", "2017-12-21 06:47:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71824", "8", "2017-12-21 06:47:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71825", "10", "2017-12-21 06:47:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71826", "15", "2017-12-21 06:47:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71827", "18", "2017-12-21 06:47:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71828", "3", "2017-12-21 07:56:53", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("71829", "3", "2017-12-21 08:37:04", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71830", "9", "2017-12-21 08:37:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71831", "8", "2017-12-21 08:37:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71832", "10", "2017-12-21 08:37:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71833", "15", "2017-12-21 08:37:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71834", "18", "2017-12-21 08:37:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71835", "3", "2017-12-21 10:17:30", "164.132.161.92", "37");
INSERT INTO `wp_rg_form_view` VALUES("71836", "18", "2017-12-21 10:25:05", "77.75.76.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("71837", "9", "2017-12-21 10:47:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71838", "8", "2017-12-21 10:47:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71839", "10", "2017-12-21 10:47:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71840", "15", "2017-12-21 10:47:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71841", "3", "2017-12-21 11:12:17", "157.55.39.84", "16");
INSERT INTO `wp_rg_form_view` VALUES("71842", "10", "2017-12-21 11:13:33", "207.46.13.14", "4");
INSERT INTO `wp_rg_form_view` VALUES("71843", "9", "2017-12-21 11:13:42", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("71844", "18", "2017-12-21 11:55:59", "180.76.15.152", "1");
INSERT INTO `wp_rg_form_view` VALUES("71845", "3", "2017-12-21 12:21:54", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71846", "9", "2017-12-21 12:21:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71847", "8", "2017-12-21 12:21:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71848", "10", "2017-12-21 12:21:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71849", "15", "2017-12-21 12:21:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71850", "18", "2017-12-21 12:22:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71851", "10", "2017-12-21 13:00:21", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("71852", "3", "2017-12-21 13:56:38", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71853", "9", "2017-12-21 13:56:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71854", "8", "2017-12-21 13:56:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71855", "15", "2017-12-21 13:56:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71856", "18", "2017-12-21 13:56:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71857", "10", "2017-12-21 15:26:25", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71858", "3", "2017-12-21 15:32:48", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71859", "9", "2017-12-21 15:32:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71860", "8", "2017-12-21 15:32:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71861", "15", "2017-12-21 15:32:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71862", "18", "2017-12-21 15:32:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71863", "18", "2017-12-21 16:07:55", "138.197.64.72", "1");
INSERT INTO `wp_rg_form_view` VALUES("71864", "3", "2017-12-21 17:17:47", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71865", "9", "2017-12-21 17:17:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71866", "8", "2017-12-21 17:17:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71867", "10", "2017-12-21 17:17:49", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71868", "15", "2017-12-21 17:17:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71869", "18", "2017-12-21 17:17:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71870", "10", "2017-12-21 18:49:20", "199.16.157.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("71871", "3", "2017-12-21 18:57:19", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71872", "9", "2017-12-21 18:57:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71873", "8", "2017-12-21 18:57:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71874", "15", "2017-12-21 18:57:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71875", "18", "2017-12-21 18:57:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71876", "3", "2017-12-21 19:03:51", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("71877", "3", "2017-12-21 20:14:53", "194.187.170.119", "31");
INSERT INTO `wp_rg_form_view` VALUES("71878", "10", "2017-12-21 20:28:07", "51.255.71.98", "6");
INSERT INTO `wp_rg_form_view` VALUES("71879", "9", "2017-12-21 20:38:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71880", "8", "2017-12-21 20:38:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71881", "15", "2017-12-21 20:38:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71882", "18", "2017-12-21 20:38:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71883", "3", "2017-12-21 21:27:49", "194.187.170.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("71884", "3", "2017-12-21 22:22:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71885", "9", "2017-12-21 22:22:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71886", "8", "2017-12-21 22:22:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71887", "10", "2017-12-21 22:22:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71888", "15", "2017-12-21 22:22:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71889", "18", "2017-12-21 22:22:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71890", "10", "2017-12-21 23:29:50", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71891", "3", "2017-12-22 00:02:57", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71892", "9", "2017-12-22 00:02:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71893", "8", "2017-12-22 00:02:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71894", "10", "2017-12-22 00:03:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71895", "15", "2017-12-22 00:03:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71896", "18", "2017-12-22 00:03:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71897", "18", "2017-12-22 01:14:18", "92.221.165.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("71898", "3", "2017-12-22 01:16:16", "92.221.165.181", "30");
INSERT INTO `wp_rg_form_view` VALUES("71899", "9", "2017-12-22 01:42:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71900", "8", "2017-12-22 01:42:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71901", "10", "2017-12-22 01:42:36", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71902", "15", "2017-12-22 01:42:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71903", "14", "2017-12-22 01:56:33", "77.75.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("71904", "3", "2017-12-22 03:22:13", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71905", "9", "2017-12-22 03:22:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71906", "8", "2017-12-22 03:22:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71907", "10", "2017-12-22 03:22:16", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71908", "15", "2017-12-22 03:22:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71909", "18", "2017-12-22 03:22:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71910", "10", "2017-12-22 04:34:45", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71911", "3", "2017-12-22 05:01:30", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71912", "9", "2017-12-22 05:01:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71913", "8", "2017-12-22 05:01:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71914", "10", "2017-12-22 05:01:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71915", "15", "2017-12-22 05:01:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71916", "18", "2017-12-22 05:01:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71917", "11", "2017-12-22 05:50:02", "77.75.79.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("71918", "3", "2017-12-22 06:41:18", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71919", "9", "2017-12-22 06:41:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71920", "8", "2017-12-22 06:41:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71921", "10", "2017-12-22 06:41:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71922", "15", "2017-12-22 06:41:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71923", "18", "2017-12-22 06:41:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71924", "10", "2017-12-22 07:41:50", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("71925", "3", "2017-12-22 08:10:05", "82.80.249.137", "233");
INSERT INTO `wp_rg_form_view` VALUES("71926", "18", "2017-12-22 08:10:36", "82.80.249.137", "61");
INSERT INTO `wp_rg_form_view` VALUES("71927", "14", "2017-12-22 08:11:30", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("71928", "8", "2017-12-22 08:12:18", "82.80.249.137", "18");
INSERT INTO `wp_rg_form_view` VALUES("71929", "9", "2017-12-22 08:19:32", "82.80.249.137", "8");
INSERT INTO `wp_rg_form_view` VALUES("71930", "10", "2017-12-22 08:19:37", "82.80.249.137", "26");
INSERT INTO `wp_rg_form_view` VALUES("71931", "15", "2017-12-22 08:19:47", "82.80.249.137", "5");
INSERT INTO `wp_rg_form_view` VALUES("71932", "6", "2017-12-22 08:25:37", "82.80.249.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("71933", "3", "2017-12-22 10:12:24", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71934", "9", "2017-12-22 10:12:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71935", "8", "2017-12-22 10:12:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71936", "10", "2017-12-22 10:12:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71937", "15", "2017-12-22 10:12:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71938", "18", "2017-12-22 10:12:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71939", "3", "2017-12-22 11:51:17", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71940", "9", "2017-12-22 11:51:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71941", "8", "2017-12-22 11:51:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71942", "10", "2017-12-22 11:51:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71943", "15", "2017-12-22 11:51:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71944", "18", "2017-12-22 11:51:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71945", "10", "2017-12-22 13:00:22", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("71946", "3", "2017-12-22 13:06:10", "194.187.170.118", "31");
INSERT INTO `wp_rg_form_view` VALUES("71947", "9", "2017-12-22 13:26:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71948", "8", "2017-12-22 13:26:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71949", "15", "2017-12-22 13:26:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71950", "18", "2017-12-22 13:26:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71951", "3", "2017-12-22 15:16:49", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("71952", "9", "2017-12-22 15:16:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71953", "8", "2017-12-22 15:16:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71954", "10", "2017-12-22 15:16:52", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71955", "15", "2017-12-22 15:16:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71956", "18", "2017-12-22 15:16:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71957", "14", "2017-12-22 15:47:47", "107.174.5.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("71958", "3", "2017-12-22 17:14:00", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71959", "9", "2017-12-22 17:14:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71960", "8", "2017-12-22 17:14:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71961", "10", "2017-12-22 17:14:02", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("71962", "15", "2017-12-22 17:14:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71963", "18", "2017-12-22 17:14:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71964", "3", "2017-12-22 18:56:00", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71965", "9", "2017-12-22 18:56:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71966", "8", "2017-12-22 18:56:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71967", "10", "2017-12-22 18:56:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71968", "15", "2017-12-22 18:56:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71969", "18", "2017-12-22 18:56:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71970", "10", "2017-12-22 19:14:04", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("71971", "18", "2017-12-22 19:49:49", "194.187.170.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("71972", "3", "2017-12-22 20:20:49", "207.46.13.182", "30");
INSERT INTO `wp_rg_form_view` VALUES("71973", "9", "2017-12-22 20:31:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71974", "8", "2017-12-22 20:31:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71975", "10", "2017-12-22 20:31:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71976", "15", "2017-12-22 20:31:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71977", "18", "2017-12-22 20:31:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71978", "10", "2017-12-22 21:28:11", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("71979", "3", "2017-12-22 21:35:41", "91.121.211.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("71980", "3", "2017-12-22 22:17:00", "157.55.39.84", "30");
INSERT INTO `wp_rg_form_view` VALUES("71981", "9", "2017-12-22 22:22:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71982", "8", "2017-12-22 22:22:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71983", "10", "2017-12-22 22:22:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71984", "15", "2017-12-22 22:22:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71985", "18", "2017-12-22 22:22:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71986", "3", "2017-12-23 00:07:50", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71987", "9", "2017-12-23 00:07:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71988", "8", "2017-12-23 00:07:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71989", "10", "2017-12-23 00:07:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71990", "15", "2017-12-23 00:07:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71991", "18", "2017-12-23 00:07:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71992", "3", "2017-12-23 01:43:13", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("71993", "9", "2017-12-23 01:43:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71994", "8", "2017-12-23 01:43:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("71995", "10", "2017-12-23 01:43:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("71996", "15", "2017-12-23 01:43:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71997", "18", "2017-12-23 01:43:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("71998", "3", "2017-12-23 03:20:47", "66.249.79.135", "30");
INSERT INTO `wp_rg_form_view` VALUES("71999", "9", "2017-12-23 03:22:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72000", "8", "2017-12-23 03:22:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72001", "10", "2017-12-23 03:22:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72002", "15", "2017-12-23 03:22:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72003", "18", "2017-12-23 03:23:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72004", "3", "2017-12-23 05:02:54", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72005", "9", "2017-12-23 05:02:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72006", "8", "2017-12-23 05:02:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72007", "10", "2017-12-23 05:02:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72008", "15", "2017-12-23 05:02:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72009", "18", "2017-12-23 05:03:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72010", "3", "2017-12-23 06:52:24", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72011", "9", "2017-12-23 06:52:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72012", "8", "2017-12-23 06:52:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72013", "10", "2017-12-23 06:52:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72014", "15", "2017-12-23 06:52:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72015", "18", "2017-12-23 06:52:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72016", "10", "2017-12-23 07:22:20", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("72017", "3", "2017-12-23 08:36:05", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72018", "9", "2017-12-23 08:36:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72019", "8", "2017-12-23 08:36:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72020", "10", "2017-12-23 08:36:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72021", "15", "2017-12-23 08:36:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72022", "18", "2017-12-23 08:36:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72023", "3", "2017-12-23 10:23:06", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72024", "9", "2017-12-23 10:23:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72025", "8", "2017-12-23 10:23:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72026", "10", "2017-12-23 10:23:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72027", "15", "2017-12-23 10:23:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72028", "18", "2017-12-23 10:23:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72029", "3", "2017-12-23 12:03:28", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72030", "9", "2017-12-23 12:03:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72031", "8", "2017-12-23 12:03:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72032", "10", "2017-12-23 12:03:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72033", "15", "2017-12-23 12:03:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72034", "18", "2017-12-23 12:03:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72035", "10", "2017-12-23 13:00:24", "184.66.129.248", "16");
INSERT INTO `wp_rg_form_view` VALUES("72036", "3", "2017-12-23 13:26:59", "207.46.13.182", "50");
INSERT INTO `wp_rg_form_view` VALUES("72037", "15", "2017-12-23 13:27:01", "40.77.167.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("72038", "6", "2017-12-23 13:31:35", "40.77.167.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("72039", "8", "2017-12-23 13:31:43", "207.46.13.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("72040", "9", "2017-12-23 13:31:57", "207.46.13.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("72041", "18", "2017-12-23 13:52:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72042", "10", "2017-12-23 15:26:23", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72043", "3", "2017-12-23 15:37:17", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72044", "9", "2017-12-23 15:37:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72045", "8", "2017-12-23 15:37:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72046", "15", "2017-12-23 15:37:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72047", "18", "2017-12-23 15:37:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72048", "3", "2017-12-23 17:13:41", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72049", "9", "2017-12-23 17:13:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72050", "8", "2017-12-23 17:13:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72051", "10", "2017-12-23 17:13:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72052", "15", "2017-12-23 17:13:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72053", "18", "2017-12-23 17:13:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72054", "10", "2017-12-23 18:03:16", "194.187.170.136", "8");
INSERT INTO `wp_rg_form_view` VALUES("72055", "3", "2017-12-23 18:54:42", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72056", "9", "2017-12-23 18:54:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72057", "8", "2017-12-23 18:54:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72058", "15", "2017-12-23 18:54:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72059", "18", "2017-12-23 18:54:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72060", "18", "2017-12-23 19:00:05", "194.187.170.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("72061", "10", "2017-12-23 19:07:30", "194.187.170.136", "4");
INSERT INTO `wp_rg_form_view` VALUES("72062", "3", "2017-12-23 19:12:50", "194.187.170.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("72063", "14", "2017-12-23 20:09:30", "158.222.11.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("72064", "3", "2017-12-23 20:33:19", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72065", "9", "2017-12-23 20:33:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72066", "8", "2017-12-23 20:33:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72067", "10", "2017-12-23 20:33:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72068", "15", "2017-12-23 20:33:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72069", "18", "2017-12-23 20:33:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72070", "3", "2017-12-23 22:19:28", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72071", "9", "2017-12-23 22:19:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72072", "8", "2017-12-23 22:19:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72073", "10", "2017-12-23 22:19:31", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72074", "15", "2017-12-23 22:19:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72075", "18", "2017-12-23 22:19:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72076", "10", "2017-12-23 23:01:45", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("72077", "3", "2017-12-23 23:05:42", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("72078", "3", "2017-12-24 00:10:30", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72079", "9", "2017-12-24 00:10:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72080", "8", "2017-12-24 00:10:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72081", "10", "2017-12-24 00:10:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72082", "15", "2017-12-24 00:10:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72083", "18", "2017-12-24 00:10:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72084", "6", "2017-12-24 00:15:52", "5.9.112.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("72085", "3", "2017-12-24 01:45:54", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72086", "9", "2017-12-24 01:45:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72087", "8", "2017-12-24 01:45:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72088", "10", "2017-12-24 01:45:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72089", "15", "2017-12-24 01:45:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72090", "18", "2017-12-24 01:46:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72091", "3", "2017-12-24 02:41:26", "80.241.214.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("72092", "14", "2017-12-24 03:10:20", "155.94.176.234", "3");
INSERT INTO `wp_rg_form_view` VALUES("72093", "3", "2017-12-24 03:25:25", "5.9.80.133", "30");
INSERT INTO `wp_rg_form_view` VALUES("72094", "9", "2017-12-24 03:25:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72095", "8", "2017-12-24 03:25:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72096", "10", "2017-12-24 03:25:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72097", "15", "2017-12-24 03:25:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72098", "18", "2017-12-24 03:25:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72099", "3", "2017-12-24 04:11:10", "207.46.13.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("72100", "3", "2017-12-24 05:06:13", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72101", "9", "2017-12-24 05:06:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72102", "8", "2017-12-24 05:06:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72103", "10", "2017-12-24 05:06:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72104", "15", "2017-12-24 05:06:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72105", "18", "2017-12-24 05:06:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72106", "3", "2017-12-24 06:48:00", "194.187.170.145", "31");
INSERT INTO `wp_rg_form_view` VALUES("72107", "9", "2017-12-24 06:50:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72108", "8", "2017-12-24 06:50:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72109", "10", "2017-12-24 06:50:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72110", "15", "2017-12-24 06:51:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72111", "18", "2017-12-24 06:51:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72112", "11", "2017-12-24 08:21:39", "194.187.170.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("72113", "3", "2017-12-24 08:38:23", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72114", "9", "2017-12-24 08:38:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72115", "8", "2017-12-24 08:38:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72116", "10", "2017-12-24 08:38:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72117", "15", "2017-12-24 08:38:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72118", "18", "2017-12-24 08:38:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72119", "3", "2017-12-24 09:23:14", "51.255.71.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("72120", "3", "2017-12-24 10:15:00", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("72121", "9", "2017-12-24 10:15:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72122", "8", "2017-12-24 10:15:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("72123", "10", "2017-12-24 10:15:02", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("72124", "15", "2017-12-24 10:15:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72125", "18", "2017-12-24 10:15:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72126", "3", "2017-12-24 11:55:20", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72127", "9", "2017-12-24 11:55:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72128", "8", "2017-12-24 11:55:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72129", "10", "2017-12-24 11:55:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72130", "15", "2017-12-24 11:55:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72131", "18", "2017-12-24 11:55:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72132", "3", "2017-12-24 12:04:54", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("72133", "10", "2017-12-24 12:28:59", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("72134", "10", "2017-12-24 13:00:19", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72135", "3", "2017-12-24 13:34:40", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72136", "9", "2017-12-24 13:34:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72137", "8", "2017-12-24 13:34:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72138", "15", "2017-12-24 13:34:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72139", "18", "2017-12-24 13:34:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72140", "14", "2017-12-24 13:37:42", "77.75.76.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("72141", "3", "2017-12-24 15:22:21", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72142", "9", "2017-12-24 15:22:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72143", "8", "2017-12-24 15:22:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72144", "10", "2017-12-24 15:22:23", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72145", "15", "2017-12-24 15:22:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72146", "18", "2017-12-24 15:22:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72147", "18", "2017-12-24 16:04:25", "194.187.170.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("72148", "10", "2017-12-24 16:12:11", "194.187.170.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("72149", "3", "2017-12-24 16:27:18", "96.54.225.178", "31");
INSERT INTO `wp_rg_form_view` VALUES("72150", "9", "2017-12-24 16:54:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72151", "8", "2017-12-24 16:54:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72152", "15", "2017-12-24 16:54:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72153", "3", "2017-12-24 17:01:20", "194.187.170.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("72154", "5", "2017-12-24 18:11:09", "194.187.170.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("72155", "3", "2017-12-24 18:40:53", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72156", "9", "2017-12-24 18:40:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72157", "8", "2017-12-24 18:40:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72158", "10", "2017-12-24 18:40:55", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("72159", "15", "2017-12-24 18:40:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72160", "18", "2017-12-24 18:40:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72161", "3", "2017-12-24 20:24:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72162", "9", "2017-12-24 20:24:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72163", "8", "2017-12-24 20:24:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72164", "10", "2017-12-24 20:24:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72165", "15", "2017-12-24 20:24:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72166", "18", "2017-12-24 20:24:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72167", "10", "2017-12-24 21:36:16", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72168", "3", "2017-12-24 21:58:39", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72169", "9", "2017-12-24 21:58:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72170", "8", "2017-12-24 21:58:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72171", "15", "2017-12-24 21:58:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72172", "18", "2017-12-24 21:58:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72173", "3", "2017-12-24 23:34:07", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72174", "9", "2017-12-24 23:34:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72175", "8", "2017-12-24 23:34:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72176", "10", "2017-12-24 23:34:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72177", "15", "2017-12-24 23:34:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72178", "18", "2017-12-24 23:34:13", "52.37.180.245", "9");
INSERT INTO `wp_rg_form_view` VALUES("72179", "18", "2017-12-25 00:00:01", "104.236.95.195", "66");
INSERT INTO `wp_rg_form_view` VALUES("72180", "14", "2017-12-25 00:00:20", "104.236.95.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("72181", "6", "2017-12-25 00:01:19", "104.236.95.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("72182", "3", "2017-12-25 00:03:05", "104.236.95.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("72183", "10", "2017-12-25 00:04:28", "104.236.95.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("72184", "9", "2017-12-25 00:09:03", "104.236.95.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("72185", "15", "2017-12-25 00:11:35", "104.236.95.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("72186", "8", "2017-12-25 00:41:17", "104.236.95.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("72187", "18", "2017-12-25 01:00:18", "104.236.95.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("72188", "3", "2017-12-25 01:14:28", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72189", "9", "2017-12-25 01:14:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72190", "8", "2017-12-25 01:14:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72191", "10", "2017-12-25 01:14:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72192", "15", "2017-12-25 01:14:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72193", "14", "2017-12-25 01:28:07", "185.124.84.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("72194", "10", "2017-12-25 02:11:22", "72.14.199.69", "5");
INSERT INTO `wp_rg_form_view` VALUES("72195", "3", "2017-12-25 02:28:13", "144.76.115.190", "11");
INSERT INTO `wp_rg_form_view` VALUES("72196", "3", "2017-12-25 03:14:17", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72197", "9", "2017-12-25 03:14:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72198", "8", "2017-12-25 03:14:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72199", "10", "2017-12-25 03:14:20", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72200", "15", "2017-12-25 03:14:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72201", "18", "2017-12-25 03:14:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72202", "3", "2017-12-25 04:59:24", "194.187.170.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("72203", "3", "2017-12-25 05:17:53", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72204", "9", "2017-12-25 05:17:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72205", "8", "2017-12-25 05:17:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72206", "10", "2017-12-25 05:17:55", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72207", "15", "2017-12-25 05:17:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72208", "18", "2017-12-25 05:17:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72209", "3", "2017-12-25 06:28:22", "194.187.170.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("72210", "3", "2017-12-25 07:11:30", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("72211", "9", "2017-12-25 07:11:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72212", "8", "2017-12-25 07:11:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72213", "10", "2017-12-25 07:11:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72214", "15", "2017-12-25 07:11:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72215", "18", "2017-12-25 07:11:36", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("72216", "3", "2017-12-25 08:57:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72217", "9", "2017-12-25 08:57:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72218", "8", "2017-12-25 08:57:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72219", "10", "2017-12-25 08:57:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72220", "15", "2017-12-25 08:57:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72221", "18", "2017-12-25 08:57:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72222", "3", "2017-12-25 10:35:44", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72223", "9", "2017-12-25 10:35:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72224", "8", "2017-12-25 10:35:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72225", "10", "2017-12-25 10:35:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72226", "15", "2017-12-25 10:35:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72227", "18", "2017-12-25 10:35:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72228", "10", "2017-12-25 11:57:51", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72229", "10", "2017-12-25 12:03:09", "46.229.168.79", "11");
INSERT INTO `wp_rg_form_view` VALUES("72230", "3", "2017-12-25 12:03:31", "46.229.168.79", "80");
INSERT INTO `wp_rg_form_view` VALUES("72231", "14", "2017-12-25 12:05:08", "46.229.168.69", "4");
INSERT INTO `wp_rg_form_view` VALUES("72232", "18", "2017-12-25 12:07:25", "46.229.168.68", "7");
INSERT INTO `wp_rg_form_view` VALUES("72233", "8", "2017-12-25 12:09:24", "46.229.168.65", "8");
INSERT INTO `wp_rg_form_view` VALUES("72234", "11", "2017-12-25 12:16:51", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("72235", "9", "2017-12-25 12:28:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72236", "15", "2017-12-25 12:28:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72237", "6", "2017-12-25 12:30:10", "46.229.168.73", "3");
INSERT INTO `wp_rg_form_view` VALUES("72238", "10", "2017-12-25 13:00:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72239", "18", "2017-12-25 13:25:34", "77.75.79.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("72240", "3", "2017-12-25 14:17:12", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72241", "9", "2017-12-25 14:17:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72242", "8", "2017-12-25 14:17:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72243", "10", "2017-12-25 14:17:14", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72244", "15", "2017-12-25 14:17:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72245", "18", "2017-12-25 14:17:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72246", "10", "2017-12-25 15:26:24", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("72247", "3", "2017-12-25 16:01:20", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72248", "9", "2017-12-25 16:01:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72249", "8", "2017-12-25 16:01:22", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("72250", "10", "2017-12-25 16:01:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72251", "15", "2017-12-25 16:01:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72252", "18", "2017-12-25 16:01:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72253", "3", "2017-12-25 17:46:54", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72254", "9", "2017-12-25 17:46:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72255", "8", "2017-12-25 17:46:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72256", "10", "2017-12-25 17:46:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72257", "15", "2017-12-25 17:46:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72258", "18", "2017-12-25 17:47:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72259", "3", "2017-12-25 19:48:35", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72260", "9", "2017-12-25 19:48:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72261", "8", "2017-12-25 19:48:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72262", "10", "2017-12-25 19:48:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72263", "15", "2017-12-25 19:48:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72264", "18", "2017-12-25 19:48:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72265", "10", "2017-12-25 20:45:35", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("72266", "3", "2017-12-25 21:34:14", "144.76.115.190", "30");
INSERT INTO `wp_rg_form_view` VALUES("72267", "9", "2017-12-25 21:37:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72268", "8", "2017-12-25 21:37:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72269", "10", "2017-12-25 21:37:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72270", "15", "2017-12-25 21:37:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72271", "18", "2017-12-25 21:37:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72272", "10", "2017-12-25 22:12:28", "54.36.148.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("72273", "3", "2017-12-25 23:16:45", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72274", "9", "2017-12-25 23:16:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72275", "8", "2017-12-25 23:16:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72276", "10", "2017-12-25 23:16:48", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72277", "15", "2017-12-25 23:16:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72278", "18", "2017-12-25 23:16:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("72279", "3", "2017-12-26 01:42:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72280", "9", "2017-12-26 01:42:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72281", "8", "2017-12-26 01:42:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72282", "10", "2017-12-26 01:42:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72283", "15", "2017-12-26 01:42:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72284", "18", "2017-12-26 01:42:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72285", "3", "2017-12-26 03:32:26", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72286", "9", "2017-12-26 03:32:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72287", "8", "2017-12-26 03:32:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72288", "10", "2017-12-26 03:32:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72289", "15", "2017-12-26 03:32:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72290", "18", "2017-12-26 03:32:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72291", "10", "2017-12-26 04:08:49", "194.187.170.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("72292", "3", "2017-12-26 05:11:51", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72293", "9", "2017-12-26 05:11:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72294", "8", "2017-12-26 05:11:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72295", "10", "2017-12-26 05:11:53", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72296", "15", "2017-12-26 05:11:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72297", "18", "2017-12-26 05:11:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72298", "10", "2017-12-26 06:22:23", "54.36.149.79", "6");
INSERT INTO `wp_rg_form_view` VALUES("72299", "18", "2017-12-26 06:29:43", "54.36.149.86", "2");
INSERT INTO `wp_rg_form_view` VALUES("72300", "3", "2017-12-26 06:51:54", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72301", "9", "2017-12-26 06:51:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72302", "8", "2017-12-26 06:51:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72303", "15", "2017-12-26 06:51:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72304", "10", "2017-12-26 07:05:23", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72305", "3", "2017-12-26 08:14:13", "68.180.228.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("72306", "18", "2017-12-26 08:15:43", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("72307", "9", "2017-12-26 08:41:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72308", "8", "2017-12-26 08:41:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72309", "10", "2017-12-26 08:41:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72310", "15", "2017-12-26 08:41:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72311", "3", "2017-12-26 10:16:57", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72312", "9", "2017-12-26 10:16:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72313", "8", "2017-12-26 10:16:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72314", "10", "2017-12-26 10:17:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72315", "15", "2017-12-26 10:17:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72316", "18", "2017-12-26 10:17:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72317", "14", "2017-12-26 10:36:53", "77.75.78.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("72318", "18", "2017-12-26 11:25:41", "40.77.167.82", "2");
INSERT INTO `wp_rg_form_view` VALUES("72319", "3", "2017-12-26 11:57:40", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72320", "9", "2017-12-26 11:57:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72321", "8", "2017-12-26 11:57:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72322", "10", "2017-12-26 11:57:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72323", "15", "2017-12-26 11:57:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72324", "10", "2017-12-26 13:00:23", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72325", "3", "2017-12-26 13:37:01", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72326", "9", "2017-12-26 13:37:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72327", "8", "2017-12-26 13:37:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72328", "15", "2017-12-26 13:37:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72329", "18", "2017-12-26 13:37:20", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("72330", "10", "2017-12-26 15:26:20", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72331", "3", "2017-12-26 15:27:07", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72332", "9", "2017-12-26 15:27:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72333", "8", "2017-12-26 15:27:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72334", "15", "2017-12-26 15:27:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72335", "18", "2017-12-26 15:27:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72336", "3", "2017-12-26 17:17:24", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72337", "9", "2017-12-26 17:17:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72338", "8", "2017-12-26 17:17:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72339", "10", "2017-12-26 17:17:27", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72340", "15", "2017-12-26 17:17:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72341", "18", "2017-12-26 17:17:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72342", "10", "2017-12-26 18:18:25", "66.249.91.205", "6");
INSERT INTO `wp_rg_form_view` VALUES("72343", "3", "2017-12-26 18:22:07", "68.180.228.176", "30");
INSERT INTO `wp_rg_form_view` VALUES("72344", "9", "2017-12-26 18:57:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72345", "8", "2017-12-26 18:57:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72346", "15", "2017-12-26 18:57:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72347", "18", "2017-12-26 18:57:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72348", "10", "2017-12-26 19:04:36", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72349", "3", "2017-12-26 20:33:24", "104.196.28.123", "31");
INSERT INTO `wp_rg_form_view` VALUES("72350", "18", "2017-12-26 20:35:03", "104.196.28.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("72351", "9", "2017-12-26 20:40:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72352", "8", "2017-12-26 20:40:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72353", "10", "2017-12-26 20:40:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72354", "15", "2017-12-26 20:40:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72355", "3", "2017-12-26 21:25:04", "104.196.183.13", "6");
INSERT INTO `wp_rg_form_view` VALUES("72356", "14", "2017-12-26 21:26:05", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("72357", "8", "2017-12-26 21:29:27", "104.196.183.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("72358", "10", "2017-12-26 22:16:41", "54.36.149.52", "7");
INSERT INTO `wp_rg_form_view` VALUES("72359", "3", "2017-12-26 22:28:48", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("72360", "9", "2017-12-26 22:28:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72361", "8", "2017-12-26 22:28:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72362", "15", "2017-12-26 22:28:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72363", "18", "2017-12-26 22:28:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72364", "14", "2017-12-26 22:57:54", "104.196.217.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("72365", "3", "2017-12-26 23:00:26", "104.196.217.246", "23");
INSERT INTO `wp_rg_form_view` VALUES("72366", "10", "2017-12-26 23:45:33", "157.55.39.216", "9");
INSERT INTO `wp_rg_form_view` VALUES("72367", "9", "2017-12-26 23:45:37", "157.55.39.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("72368", "11", "2017-12-26 23:45:49", "157.55.39.216", "1");
INSERT INTO `wp_rg_form_view` VALUES("72369", "8", "2017-12-26 23:47:59", "157.55.39.216", "2");
INSERT INTO `wp_rg_form_view` VALUES("72370", "3", "2017-12-27 00:03:38", "104.196.186.134", "50");
INSERT INTO `wp_rg_form_view` VALUES("72371", "8", "2017-12-27 00:03:57", "104.196.186.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("72372", "9", "2017-12-27 00:04:38", "104.196.186.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("72373", "6", "2017-12-27 00:05:45", "104.196.186.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("72374", "10", "2017-12-27 00:31:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72375", "15", "2017-12-27 00:31:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72376", "18", "2017-12-27 00:31:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72377", "3", "2017-12-27 02:16:28", "104.196.59.73", "42");
INSERT INTO `wp_rg_form_view` VALUES("72378", "10", "2017-12-27 02:19:21", "104.196.59.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("72379", "14", "2017-12-27 02:35:43", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("72380", "9", "2017-12-27 02:50:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72381", "8", "2017-12-27 02:50:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72382", "15", "2017-12-27 02:50:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72383", "18", "2017-12-27 02:50:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72384", "3", "2017-12-27 03:08:57", "180.76.15.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("72385", "8", "2017-12-27 04:14:40", "104.196.28.123", "5");
INSERT INTO `wp_rg_form_view` VALUES("72386", "3", "2017-12-27 04:14:55", "104.196.28.123", "65");
INSERT INTO `wp_rg_form_view` VALUES("72387", "18", "2017-12-27 04:48:28", "38.77.218.236", "3");
INSERT INTO `wp_rg_form_view` VALUES("72388", "9", "2017-12-27 04:50:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72389", "10", "2017-12-27 04:50:03", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("72390", "15", "2017-12-27 04:50:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72391", "3", "2017-12-27 05:48:53", "88.198.19.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("72392", "3", "2017-12-27 06:42:37", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72393", "9", "2017-12-27 06:42:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72394", "8", "2017-12-27 06:42:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72395", "10", "2017-12-27 06:42:39", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72396", "15", "2017-12-27 06:42:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72397", "18", "2017-12-27 06:42:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72398", "3", "2017-12-27 08:27:44", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72399", "9", "2017-12-27 08:27:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72400", "8", "2017-12-27 08:27:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72401", "10", "2017-12-27 08:27:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72402", "15", "2017-12-27 08:27:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72403", "18", "2017-12-27 08:27:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72404", "8", "2017-12-27 10:01:30", "40.77.167.32", "3");
INSERT INTO `wp_rg_form_view` VALUES("72405", "3", "2017-12-27 10:22:53", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72406", "9", "2017-12-27 10:22:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72407", "10", "2017-12-27 10:22:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72408", "15", "2017-12-27 10:22:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72409", "18", "2017-12-27 10:22:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72410", "18", "2017-12-27 11:44:47", "51.255.71.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("72411", "3", "2017-12-27 12:10:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72412", "9", "2017-12-27 12:10:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72413", "8", "2017-12-27 12:10:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72414", "10", "2017-12-27 12:10:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72415", "15", "2017-12-27 12:10:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72416", "18", "2017-12-27 12:10:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72417", "10", "2017-12-27 13:00:26", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72418", "3", "2017-12-27 13:22:44", "110.12.162.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("72419", "3", "2017-12-27 14:00:47", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72420", "9", "2017-12-27 14:00:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72421", "8", "2017-12-27 14:00:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72422", "10", "2017-12-27 14:00:49", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72423", "15", "2017-12-27 14:00:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72424", "18", "2017-12-27 14:00:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72425", "10", "2017-12-27 15:25:44", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72426", "3", "2017-12-27 15:45:18", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72427", "9", "2017-12-27 15:45:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72428", "8", "2017-12-27 15:45:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72429", "15", "2017-12-27 15:45:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72430", "18", "2017-12-27 15:45:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72431", "18", "2017-12-27 16:04:42", "5.188.211.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("72432", "3", "2017-12-27 17:11:17", "66.249.75.143", "31");
INSERT INTO `wp_rg_form_view` VALUES("72433", "10", "2017-12-27 17:26:32", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72434", "9", "2017-12-27 17:28:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72435", "8", "2017-12-27 17:28:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72436", "15", "2017-12-27 17:29:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72437", "18", "2017-12-27 17:29:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72438", "10", "2017-12-27 18:54:27", "157.55.39.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("72439", "3", "2017-12-27 19:12:27", "198.103.152.52", "30");
INSERT INTO `wp_rg_form_view` VALUES("72440", "9", "2017-12-27 19:27:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72441", "8", "2017-12-27 19:27:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72442", "10", "2017-12-27 19:27:26", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72443", "15", "2017-12-27 19:27:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72444", "18", "2017-12-27 19:27:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72445", "3", "2017-12-27 21:19:27", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72446", "9", "2017-12-27 21:19:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72447", "8", "2017-12-27 21:19:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72448", "10", "2017-12-27 21:19:30", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("72449", "15", "2017-12-27 21:19:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72450", "18", "2017-12-27 21:19:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72451", "14", "2017-12-27 21:31:03", "172.245.119.155", "1");
INSERT INTO `wp_rg_form_view` VALUES("72452", "3", "2017-12-27 23:04:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72453", "9", "2017-12-27 23:04:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72454", "8", "2017-12-27 23:04:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72455", "10", "2017-12-27 23:04:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72456", "15", "2017-12-27 23:04:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72457", "18", "2017-12-27 23:04:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72458", "3", "2017-12-28 00:34:35", "5.188.211.14", "37");
INSERT INTO `wp_rg_form_view` VALUES("72459", "8", "2017-12-28 00:34:36", "5.188.211.14", "3");
INSERT INTO `wp_rg_form_view` VALUES("72460", "9", "2017-12-28 00:59:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72461", "10", "2017-12-28 00:59:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72462", "15", "2017-12-28 00:59:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72463", "18", "2017-12-28 00:59:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72464", "10", "2017-12-28 01:13:33", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72465", "3", "2017-12-28 01:58:48", "174.138.63.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("72466", "3", "2017-12-28 02:05:06", "159.203.67.240", "31");
INSERT INTO `wp_rg_form_view` VALUES("72467", "9", "2017-12-28 02:47:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72468", "8", "2017-12-28 02:47:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72469", "10", "2017-12-28 02:47:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72470", "15", "2017-12-28 02:47:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72471", "18", "2017-12-28 02:47:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72472", "10", "2017-12-28 03:14:20", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72473", "3", "2017-12-28 04:14:46", "66.249.79.133", "31");
INSERT INTO `wp_rg_form_view` VALUES("72474", "9", "2017-12-28 04:34:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72475", "8", "2017-12-28 04:34:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72476", "10", "2017-12-28 04:34:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72477", "15", "2017-12-28 04:34:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72478", "18", "2017-12-28 04:34:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72479", "10", "2017-12-28 05:18:40", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72480", "3", "2017-12-28 05:39:38", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("72481", "14", "2017-12-28 06:13:28", "46.102.103.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("72482", "3", "2017-12-28 06:13:38", "46.102.103.163", "35");
INSERT INTO `wp_rg_form_view` VALUES("72483", "9", "2017-12-28 06:47:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72484", "8", "2017-12-28 06:47:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72485", "10", "2017-12-28 06:47:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72486", "15", "2017-12-28 06:47:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72487", "18", "2017-12-28 06:47:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72488", "14", "2017-12-28 07:09:34", "185.124.84.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("72489", "18", "2017-12-28 08:11:24", "77.75.78.172", "3");
INSERT INTO `wp_rg_form_view` VALUES("72490", "3", "2017-12-28 08:24:52", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("72491", "9", "2017-12-28 08:24:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72492", "8", "2017-12-28 08:24:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("72493", "10", "2017-12-28 08:24:54", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("72494", "15", "2017-12-28 08:24:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72495", "3", "2017-12-28 10:11:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72496", "9", "2017-12-28 10:11:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72497", "8", "2017-12-28 10:11:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72498", "10", "2017-12-28 10:11:36", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72499", "15", "2017-12-28 10:11:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72500", "18", "2017-12-28 10:11:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72501", "3", "2017-12-28 11:50:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72502", "9", "2017-12-28 11:50:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72503", "8", "2017-12-28 11:50:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72504", "10", "2017-12-28 11:50:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72505", "15", "2017-12-28 11:50:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72506", "18", "2017-12-28 11:50:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72507", "3", "2017-12-28 12:46:40", "54.36.148.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("72508", "10", "2017-12-28 13:00:24", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72509", "3", "2017-12-28 13:46:33", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72510", "9", "2017-12-28 13:46:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72511", "8", "2017-12-28 13:46:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72512", "15", "2017-12-28 13:46:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72513", "18", "2017-12-28 13:46:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72514", "14", "2017-12-28 14:05:00", "104.223.38.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("72515", "10", "2017-12-28 15:26:23", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72516", "3", "2017-12-28 15:31:28", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72517", "9", "2017-12-28 15:31:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72518", "8", "2017-12-28 15:31:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72519", "15", "2017-12-28 15:31:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72520", "18", "2017-12-28 15:31:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72521", "3", "2017-12-28 16:19:04", "54.36.148.93", "2");
INSERT INTO `wp_rg_form_view` VALUES("72522", "3", "2017-12-28 17:24:59", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("72523", "9", "2017-12-28 17:25:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72524", "8", "2017-12-28 17:25:02", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("72525", "10", "2017-12-28 17:25:04", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("72526", "15", "2017-12-28 17:25:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72527", "18", "2017-12-28 17:25:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72528", "3", "2017-12-28 18:01:27", "54.36.148.127", "2");
INSERT INTO `wp_rg_form_view` VALUES("72529", "3", "2017-12-28 19:10:55", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72530", "9", "2017-12-28 19:10:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72531", "8", "2017-12-28 19:10:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72532", "10", "2017-12-28 19:10:57", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("72533", "15", "2017-12-28 19:10:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72534", "18", "2017-12-28 19:11:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72535", "3", "2017-12-28 20:49:51", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("72536", "9", "2017-12-28 20:49:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72537", "8", "2017-12-28 20:49:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("72538", "10", "2017-12-28 20:49:53", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("72539", "15", "2017-12-28 20:49:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72540", "18", "2017-12-28 20:49:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72541", "9", "2017-12-28 21:55:42", "157.55.39.84", "3");
INSERT INTO `wp_rg_form_view` VALUES("72542", "3", "2017-12-28 21:55:48", "207.46.13.159", "7");
INSERT INTO `wp_rg_form_view` VALUES("72543", "10", "2017-12-28 21:55:52", "157.55.39.84", "4");
INSERT INTO `wp_rg_form_view` VALUES("72544", "11", "2017-12-28 21:56:37", "207.46.13.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("72545", "8", "2017-12-28 21:58:38", "207.46.13.159", "2");
INSERT INTO `wp_rg_form_view` VALUES("72546", "3", "2017-12-28 22:00:00", "207.46.13.159", "37");
INSERT INTO `wp_rg_form_view` VALUES("72547", "10", "2017-12-28 22:00:39", "207.46.13.159", "12");
INSERT INTO `wp_rg_form_view` VALUES("72548", "18", "2017-12-28 22:12:26", "194.187.170.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("72549", "9", "2017-12-28 22:26:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72550", "8", "2017-12-28 22:26:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72551", "15", "2017-12-28 22:26:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72552", "3", "2017-12-28 23:31:21", "54.36.149.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("72553", "3", "2017-12-29 00:06:09", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72554", "9", "2017-12-29 00:06:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72555", "8", "2017-12-29 00:06:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72556", "10", "2017-12-29 00:06:11", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("72557", "15", "2017-12-29 00:06:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72558", "18", "2017-12-29 00:06:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72559", "10", "2017-12-29 01:06:04", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72560", "18", "2017-12-29 01:38:44", "199.180.115.111", "3");
INSERT INTO `wp_rg_form_view` VALUES("72561", "3", "2017-12-29 01:39:06", "199.180.115.111", "33");
INSERT INTO `wp_rg_form_view` VALUES("72562", "9", "2017-12-29 01:46:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72563", "8", "2017-12-29 01:46:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72564", "15", "2017-12-29 01:46:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72565", "3", "2017-12-29 03:30:24", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72566", "9", "2017-12-29 03:30:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72567", "8", "2017-12-29 03:30:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72568", "10", "2017-12-29 03:30:27", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72569", "15", "2017-12-29 03:30:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72570", "18", "2017-12-29 03:30:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72571", "18", "2017-12-29 04:20:28", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("72572", "3", "2017-12-29 05:11:13", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72573", "9", "2017-12-29 05:11:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72574", "8", "2017-12-29 05:11:15", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("72575", "10", "2017-12-29 05:11:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72576", "15", "2017-12-29 05:11:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72577", "18", "2017-12-29 05:11:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72578", "3", "2017-12-29 06:56:03", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72579", "9", "2017-12-29 06:56:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72580", "8", "2017-12-29 06:56:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72581", "10", "2017-12-29 06:56:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72582", "15", "2017-12-29 06:56:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72583", "18", "2017-12-29 06:56:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72584", "10", "2017-12-29 08:07:12", "54.36.149.88", "6");
INSERT INTO `wp_rg_form_view` VALUES("72585", "3", "2017-12-29 08:50:48", "151.80.31.153", "30");
INSERT INTO `wp_rg_form_view` VALUES("72586", "9", "2017-12-29 08:51:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72587", "8", "2017-12-29 08:51:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72588", "15", "2017-12-29 08:51:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72589", "18", "2017-12-29 08:51:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72590", "3", "2017-12-29 10:17:26", "151.80.31.153", "59");
INSERT INTO `wp_rg_form_view` VALUES("72591", "9", "2017-12-29 10:35:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72592", "8", "2017-12-29 10:35:07", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("72593", "10", "2017-12-29 10:35:08", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("72594", "15", "2017-12-29 10:35:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72595", "18", "2017-12-29 10:35:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72596", "3", "2017-12-29 12:21:01", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72597", "9", "2017-12-29 12:21:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72598", "8", "2017-12-29 12:21:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72599", "10", "2017-12-29 12:21:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72600", "15", "2017-12-29 12:21:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72601", "18", "2017-12-29 12:21:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72602", "10", "2017-12-29 13:00:21", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72603", "8", "2017-12-29 13:50:48", "108.172.248.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("72604", "3", "2017-12-29 14:06:25", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72605", "9", "2017-12-29 14:06:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72606", "8", "2017-12-29 14:06:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72607", "10", "2017-12-29 14:06:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72608", "15", "2017-12-29 14:06:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72609", "18", "2017-12-29 14:06:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72610", "5", "2017-12-29 14:13:47", "77.75.76.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("72611", "10", "2017-12-29 15:26:24", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72612", "3", "2017-12-29 15:47:45", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72613", "9", "2017-12-29 15:47:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72614", "8", "2017-12-29 15:47:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72615", "15", "2017-12-29 15:47:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72616", "18", "2017-12-29 15:47:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72617", "3", "2017-12-29 16:21:20", "185.138.241.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("72618", "10", "2017-12-29 16:21:40", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("72619", "14", "2017-12-29 16:31:00", "194.187.170.123", "2");
INSERT INTO `wp_rg_form_view` VALUES("72620", "18", "2017-12-29 16:46:30", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("72621", "3", "2017-12-29 17:05:12", "185.138.241.45", "99");
INSERT INTO `wp_rg_form_view` VALUES("72622", "8", "2017-12-29 17:07:04", "185.138.241.45", "11");
INSERT INTO `wp_rg_form_view` VALUES("72623", "9", "2017-12-29 17:16:50", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("72624", "10", "2017-12-29 17:16:51", "185.138.241.45", "16");
INSERT INTO `wp_rg_form_view` VALUES("72625", "15", "2017-12-29 17:16:54", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("72626", "18", "2017-12-29 17:16:58", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("72627", "10", "2017-12-29 18:02:40", "54.36.149.15", "7");
INSERT INTO `wp_rg_form_view` VALUES("72628", "3", "2017-12-29 18:06:27", "185.138.241.45", "30");
INSERT INTO `wp_rg_form_view` VALUES("72629", "9", "2017-12-29 18:06:28", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("72630", "8", "2017-12-29 18:06:29", "185.138.241.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("72631", "15", "2017-12-29 18:06:33", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("72632", "18", "2017-12-29 18:06:36", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("72633", "10", "2017-12-29 19:08:54", "207.46.13.69", "7");
INSERT INTO `wp_rg_form_view` VALUES("72634", "3", "2017-12-29 19:29:36", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72635", "9", "2017-12-29 19:29:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72636", "8", "2017-12-29 19:29:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72637", "15", "2017-12-29 19:29:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72638", "18", "2017-12-29 19:29:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72639", "3", "2017-12-29 21:23:55", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72640", "9", "2017-12-29 21:23:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72641", "8", "2017-12-29 21:23:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72642", "10", "2017-12-29 21:23:57", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72643", "15", "2017-12-29 21:23:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72644", "18", "2017-12-29 21:24:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72645", "3", "2017-12-29 22:36:14", "207.46.13.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("72646", "3", "2017-12-29 22:36:14", "207.46.13.159", "1");
INSERT INTO `wp_rg_form_view` VALUES("72647", "10", "2017-12-29 22:36:53", "40.77.167.178", "3");
INSERT INTO `wp_rg_form_view` VALUES("72648", "3", "2017-12-29 23:01:20", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72649", "9", "2017-12-29 23:01:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72650", "8", "2017-12-29 23:01:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72651", "10", "2017-12-29 23:01:22", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("72652", "15", "2017-12-29 23:01:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72653", "18", "2017-12-29 23:01:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72654", "3", "2017-12-30 00:16:45", "54.36.148.150", "30");
INSERT INTO `wp_rg_form_view` VALUES("72655", "9", "2017-12-30 00:43:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72656", "8", "2017-12-30 00:43:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72657", "10", "2017-12-30 00:43:19", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72658", "15", "2017-12-30 00:43:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72659", "18", "2017-12-30 00:43:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72660", "10", "2017-12-30 01:58:48", "40.77.167.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("72661", "6", "2017-12-30 01:59:47", "54.36.149.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("72662", "3", "2017-12-30 02:18:29", "5.188.211.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("72663", "3", "2017-12-30 03:05:33", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72664", "9", "2017-12-30 03:05:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72665", "8", "2017-12-30 03:05:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72666", "10", "2017-12-30 03:05:36", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72667", "15", "2017-12-30 03:05:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72668", "18", "2017-12-30 03:05:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72669", "3", "2017-12-30 04:49:01", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72670", "9", "2017-12-30 04:49:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72671", "8", "2017-12-30 04:49:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72672", "10", "2017-12-30 04:49:03", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72673", "15", "2017-12-30 04:49:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72674", "18", "2017-12-30 04:49:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72675", "10", "2017-12-30 05:38:53", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("72676", "3", "2017-12-30 06:01:33", "207.46.13.66", "33");
INSERT INTO `wp_rg_form_view` VALUES("72677", "9", "2017-12-30 06:34:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72678", "8", "2017-12-30 06:34:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72679", "10", "2017-12-30 06:34:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72680", "15", "2017-12-30 06:34:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72681", "18", "2017-12-30 06:34:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72682", "18", "2017-12-30 07:51:18", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("72683", "3", "2017-12-30 08:25:59", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("72684", "9", "2017-12-30 08:26:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72685", "8", "2017-12-30 08:26:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72686", "10", "2017-12-30 08:26:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72687", "15", "2017-12-30 08:26:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72688", "18", "2017-12-30 08:26:06", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("72689", "10", "2017-12-30 09:39:06", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72690", "3", "2017-12-30 10:16:18", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72691", "9", "2017-12-30 10:16:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72692", "8", "2017-12-30 10:16:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72693", "10", "2017-12-30 10:16:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72694", "15", "2017-12-30 10:16:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72695", "18", "2017-12-30 10:16:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72696", "3", "2017-12-30 12:12:51", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72697", "9", "2017-12-30 12:12:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72698", "8", "2017-12-30 12:12:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72699", "10", "2017-12-30 12:12:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72700", "15", "2017-12-30 12:12:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72701", "18", "2017-12-30 12:12:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72702", "10", "2017-12-30 13:00:21", "184.66.129.248", "11");
INSERT INTO `wp_rg_form_view` VALUES("72703", "3", "2017-12-30 13:50:29", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("72704", "9", "2017-12-30 13:50:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72705", "8", "2017-12-30 13:50:31", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("72706", "15", "2017-12-30 13:50:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72707", "18", "2017-12-30 13:50:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72708", "10", "2017-12-30 15:26:26", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72709", "3", "2017-12-30 15:38:50", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72710", "9", "2017-12-30 15:38:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72711", "8", "2017-12-30 15:38:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72712", "15", "2017-12-30 15:38:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72713", "18", "2017-12-30 15:39:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72714", "3", "2017-12-30 16:52:12", "46.229.168.73", "19");
INSERT INTO `wp_rg_form_view` VALUES("72715", "3", "2017-12-30 17:00:01", "46.229.168.79", "63");
INSERT INTO `wp_rg_form_view` VALUES("72716", "18", "2017-12-30 17:00:45", "46.229.168.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("72717", "8", "2017-12-30 17:15:50", "46.229.168.72", "5");
INSERT INTO `wp_rg_form_view` VALUES("72718", "11", "2017-12-30 17:17:21", "46.229.168.74", "3");
INSERT INTO `wp_rg_form_view` VALUES("72719", "15", "2017-12-30 17:23:44", "46.229.168.76", "4");
INSERT INTO `wp_rg_form_view` VALUES("72720", "14", "2017-12-30 17:26:37", "72.143.224.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("72721", "10", "2017-12-30 17:27:11", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72722", "9", "2017-12-30 17:59:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72723", "3", "2017-12-30 18:04:03", "54.36.148.102", "2");
INSERT INTO `wp_rg_form_view` VALUES("72724", "8", "2017-12-30 18:30:14", "24.69.172.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("72725", "10", "2017-12-30 19:28:02", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("72726", "18", "2017-12-30 19:30:24", "104.193.9.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("72727", "3", "2017-12-30 19:30:33", "104.193.9.229", "2");
INSERT INTO `wp_rg_form_view` VALUES("72728", "3", "2017-12-30 20:17:09", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72729", "9", "2017-12-30 20:17:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72730", "8", "2017-12-30 20:17:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72731", "10", "2017-12-30 20:17:11", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72732", "15", "2017-12-30 20:17:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72733", "18", "2017-12-30 20:17:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72734", "10", "2017-12-30 21:41:33", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72735", "3", "2017-12-30 21:59:08", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72736", "9", "2017-12-30 21:59:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72737", "8", "2017-12-30 21:59:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72738", "15", "2017-12-30 21:59:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72739", "18", "2017-12-30 21:59:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72740", "3", "2017-12-30 22:35:22", "178.63.1.153", "25");
INSERT INTO `wp_rg_form_view` VALUES("72741", "8", "2017-12-30 22:37:29", "178.63.1.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("72742", "18", "2017-12-30 22:39:51", "178.63.1.153", "6");
INSERT INTO `wp_rg_form_view` VALUES("72743", "10", "2017-12-30 22:45:13", "178.63.1.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("72744", "14", "2017-12-30 22:47:53", "188.165.234.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("72745", "10", "2017-12-30 23:21:33", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("72746", "3", "2017-12-30 23:53:40", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72747", "9", "2017-12-30 23:53:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72748", "8", "2017-12-30 23:53:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72749", "15", "2017-12-30 23:53:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72750", "18", "2017-12-30 23:53:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72751", "3", "2017-12-31 00:34:13", "185.138.241.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("72752", "10", "2017-12-31 00:44:21", "54.36.148.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("72753", "14", "2017-12-31 00:58:27", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("72754", "3", "2017-12-31 01:08:18", "185.138.241.45", "38");
INSERT INTO `wp_rg_form_view` VALUES("72755", "8", "2017-12-31 01:09:57", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("72756", "9", "2017-12-31 01:33:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72757", "10", "2017-12-31 01:33:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72758", "15", "2017-12-31 01:34:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72759", "18", "2017-12-31 01:34:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72760", "3", "2017-12-31 03:29:10", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72761", "9", "2017-12-31 03:29:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72762", "8", "2017-12-31 03:29:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72763", "10", "2017-12-31 03:29:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72764", "15", "2017-12-31 03:29:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72765", "18", "2017-12-31 03:29:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72766", "14", "2017-12-31 04:04:41", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("72767", "10", "2017-12-31 04:58:09", "157.55.39.131", "2");
INSERT INTO `wp_rg_form_view` VALUES("72768", "3", "2017-12-31 04:58:33", "157.55.39.131", "3");
INSERT INTO `wp_rg_form_view` VALUES("72769", "9", "2017-12-31 04:59:19", "157.55.39.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("72770", "10", "2017-12-31 05:03:36", "207.46.13.50", "8");
INSERT INTO `wp_rg_form_view` VALUES("72771", "3", "2017-12-31 05:06:43", "207.46.13.50", "38");
INSERT INTO `wp_rg_form_view` VALUES("72772", "15", "2017-12-31 05:08:40", "207.46.13.50", "3");
INSERT INTO `wp_rg_form_view` VALUES("72773", "6", "2017-12-31 05:09:54", "207.46.13.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("72774", "9", "2017-12-31 05:20:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72775", "8", "2017-12-31 05:20:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72776", "18", "2017-12-31 05:20:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72777", "3", "2017-12-31 07:11:06", "144.76.115.190", "31");
INSERT INTO `wp_rg_form_view` VALUES("72778", "9", "2017-12-31 07:13:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72779", "8", "2017-12-31 07:13:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72780", "10", "2017-12-31 07:13:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72781", "15", "2017-12-31 07:13:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72782", "18", "2017-12-31 07:13:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72783", "3", "2017-12-31 09:03:50", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72784", "9", "2017-12-31 09:03:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72785", "8", "2017-12-31 09:03:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72786", "10", "2017-12-31 09:03:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72787", "15", "2017-12-31 09:03:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72788", "18", "2017-12-31 09:03:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72789", "10", "2017-12-31 10:24:46", "72.14.199.71", "7");
INSERT INTO `wp_rg_form_view` VALUES("72790", "3", "2017-12-31 10:53:08", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72791", "9", "2017-12-31 10:53:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72792", "8", "2017-12-31 10:53:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72793", "15", "2017-12-31 10:53:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72794", "18", "2017-12-31 10:53:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72795", "3", "2017-12-31 11:34:03", "151.80.44.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("72796", "3", "2017-12-31 12:48:04", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72797", "9", "2017-12-31 12:48:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72798", "8", "2017-12-31 12:48:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72799", "10", "2017-12-31 12:48:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72800", "15", "2017-12-31 12:48:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72801", "18", "2017-12-31 12:48:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72802", "10", "2017-12-31 13:00:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72803", "18", "2017-12-31 13:13:42", "77.75.78.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("72804", "3", "2017-12-31 14:38:28", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72805", "9", "2017-12-31 14:38:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72806", "8", "2017-12-31 14:38:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72807", "10", "2017-12-31 14:38:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72808", "15", "2017-12-31 14:38:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72809", "18", "2017-12-31 14:38:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72810", "5", "2017-12-31 15:03:04", "77.75.76.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("72811", "10", "2017-12-31 15:26:34", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72812", "3", "2017-12-31 16:29:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72813", "9", "2017-12-31 16:29:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72814", "8", "2017-12-31 16:29:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72815", "10", "2017-12-31 16:29:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72816", "15", "2017-12-31 16:29:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72817", "18", "2017-12-31 16:29:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72818", "10", "2017-12-31 17:27:24", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72819", "3", "2017-12-31 18:22:20", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72820", "9", "2017-12-31 18:22:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72821", "8", "2017-12-31 18:22:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72822", "10", "2017-12-31 18:22:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72823", "15", "2017-12-31 18:22:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72824", "18", "2017-12-31 18:22:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72825", "3", "2017-12-31 19:13:17", "54.36.148.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("72826", "18", "2017-12-31 19:52:55", "147.135.137.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("72827", "3", "2017-12-31 20:17:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72828", "9", "2017-12-31 20:17:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72829", "8", "2017-12-31 20:17:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72830", "10", "2017-12-31 20:17:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72831", "15", "2017-12-31 20:17:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72832", "18", "2017-12-31 20:17:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72833", "10", "2017-12-31 21:29:06", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("72834", "3", "2017-12-31 22:21:50", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72835", "9", "2017-12-31 22:21:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72836", "8", "2017-12-31 22:21:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72837", "10", "2017-12-31 22:21:52", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72838", "15", "2017-12-31 22:21:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72839", "18", "2017-12-31 22:21:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72840", "3", "2017-12-31 23:20:54", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("72841", "3", "2018-01-01 00:13:13", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72842", "9", "2018-01-01 00:13:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72843", "8", "2018-01-01 00:13:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72844", "10", "2018-01-01 00:13:16", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("72845", "15", "2018-01-01 00:13:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72846", "18", "2018-01-01 00:13:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72847", "3", "2018-01-01 02:07:54", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("72848", "9", "2018-01-01 02:07:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72849", "8", "2018-01-01 02:07:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72850", "10", "2018-01-01 02:07:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72851", "15", "2018-01-01 02:07:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72852", "18", "2018-01-01 02:08:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72853", "10", "2018-01-01 03:23:32", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72854", "3", "2018-01-01 03:52:46", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72855", "9", "2018-01-01 03:52:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72856", "8", "2018-01-01 03:52:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72857", "15", "2018-01-01 03:52:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72858", "18", "2018-01-01 03:52:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72859", "14", "2018-01-01 04:31:38", "181.215.147.81", "4");
INSERT INTO `wp_rg_form_view` VALUES("72860", "3", "2018-01-01 05:33:11", "54.36.148.85", "31");
INSERT INTO `wp_rg_form_view` VALUES("72861", "9", "2018-01-01 05:48:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72862", "8", "2018-01-01 05:48:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72863", "10", "2018-01-01 05:48:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72864", "15", "2018-01-01 05:48:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72865", "18", "2018-01-01 05:48:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72866", "10", "2018-01-01 06:45:19", "40.77.167.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("72867", "10", "2018-01-01 07:04:29", "207.46.13.160", "6");
INSERT INTO `wp_rg_form_view` VALUES("72868", "3", "2018-01-01 07:53:22", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72869", "9", "2018-01-01 07:53:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72870", "8", "2018-01-01 07:53:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72871", "15", "2018-01-01 07:53:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72872", "18", "2018-01-01 07:53:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72873", "10", "2018-01-01 08:57:43", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72874", "3", "2018-01-01 09:47:34", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72875", "9", "2018-01-01 09:47:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72876", "8", "2018-01-01 09:47:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72877", "10", "2018-01-01 09:47:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72878", "15", "2018-01-01 09:47:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72879", "18", "2018-01-01 09:47:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72880", "3", "2018-01-01 10:01:35", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("72881", "10", "2018-01-01 10:58:32", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72882", "3", "2018-01-01 11:39:35", "216.244.66.231", "30");
INSERT INTO `wp_rg_form_view` VALUES("72883", "9", "2018-01-01 11:50:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72884", "8", "2018-01-01 11:50:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72885", "10", "2018-01-01 11:50:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72886", "15", "2018-01-01 11:50:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72887", "18", "2018-01-01 11:50:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72888", "10", "2018-01-01 12:59:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72889", "10", "2018-01-01 13:01:15", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("72890", "3", "2018-01-01 13:45:43", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72891", "9", "2018-01-01 13:45:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72892", "8", "2018-01-01 13:45:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72893", "15", "2018-01-01 13:45:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72894", "18", "2018-01-01 13:45:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72895", "10", "2018-01-01 14:41:36", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("72896", "10", "2018-01-01 15:27:22", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72897", "3", "2018-01-01 15:48:45", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72898", "9", "2018-01-01 15:48:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72899", "8", "2018-01-01 15:48:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72900", "15", "2018-01-01 15:48:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72901", "18", "2018-01-01 15:48:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72902", "10", "2018-01-01 17:28:15", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72903", "3", "2018-01-01 17:32:17", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72904", "9", "2018-01-01 17:32:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72905", "8", "2018-01-01 17:32:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72906", "15", "2018-01-01 17:32:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72907", "18", "2018-01-01 17:32:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72908", "3", "2018-01-01 19:19:10", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72909", "9", "2018-01-01 19:19:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72910", "8", "2018-01-01 19:19:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72911", "10", "2018-01-01 19:19:12", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72912", "15", "2018-01-01 19:19:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72913", "18", "2018-01-01 19:19:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72914", "3", "2018-01-01 21:15:32", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72915", "9", "2018-01-01 21:15:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72916", "8", "2018-01-01 21:15:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72917", "10", "2018-01-01 21:15:34", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72918", "15", "2018-01-01 21:15:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72919", "18", "2018-01-01 21:15:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72920", "18", "2018-01-01 23:32:59", "68.180.228.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("72921", "3", "2018-01-01 23:42:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72922", "9", "2018-01-01 23:42:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72923", "8", "2018-01-01 23:42:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72924", "10", "2018-01-01 23:42:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72925", "15", "2018-01-01 23:42:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72926", "10", "2018-01-02 01:03:45", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72927", "3", "2018-01-02 01:32:44", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72928", "9", "2018-01-02 01:32:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72929", "8", "2018-01-02 01:32:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72930", "15", "2018-01-02 01:32:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72931", "18", "2018-01-02 01:32:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72932", "10", "2018-01-02 03:24:46", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("72933", "3", "2018-01-02 03:38:41", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72934", "9", "2018-01-02 03:38:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72935", "8", "2018-01-02 03:38:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72936", "15", "2018-01-02 03:38:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72937", "18", "2018-01-02 03:38:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72938", "10", "2018-01-02 04:17:01", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("72939", "3", "2018-01-02 05:41:54", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72940", "9", "2018-01-02 05:41:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72941", "8", "2018-01-02 05:41:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72942", "10", "2018-01-02 05:41:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72943", "15", "2018-01-02 05:41:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72944", "18", "2018-01-02 05:42:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72945", "3", "2018-01-02 07:11:45", "103.204.108.169", "34");
INSERT INTO `wp_rg_form_view` VALUES("72946", "10", "2018-01-02 07:27:02", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72947", "9", "2018-01-02 07:36:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72948", "8", "2018-01-02 07:36:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72949", "15", "2018-01-02 07:36:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72950", "18", "2018-01-02 07:36:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72951", "8", "2018-01-02 08:09:20", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("72952", "3", "2018-01-02 09:39:26", "178.151.245.174", "30");
INSERT INTO `wp_rg_form_view` VALUES("72953", "9", "2018-01-02 09:55:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72954", "8", "2018-01-02 09:55:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72955", "10", "2018-01-02 09:55:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72956", "15", "2018-01-02 09:55:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72957", "18", "2018-01-02 09:55:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72958", "3", "2018-01-02 11:56:22", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72959", "9", "2018-01-02 11:56:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72960", "8", "2018-01-02 11:56:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72961", "10", "2018-01-02 11:56:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72962", "15", "2018-01-02 11:56:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72963", "18", "2018-01-02 11:56:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72964", "3", "2018-01-02 12:03:27", "54.36.149.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("72965", "10", "2018-01-02 13:00:24", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72966", "3", "2018-01-02 13:41:07", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72967", "9", "2018-01-02 13:41:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72968", "8", "2018-01-02 13:41:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72969", "15", "2018-01-02 13:41:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72970", "18", "2018-01-02 13:41:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72971", "10", "2018-01-02 14:38:44", "207.46.13.174", "2");
INSERT INTO `wp_rg_form_view` VALUES("72972", "3", "2018-01-02 14:39:13", "207.46.13.157", "6");
INSERT INTO `wp_rg_form_view` VALUES("72973", "9", "2018-01-02 14:44:33", "207.46.13.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("72974", "10", "2018-01-02 15:25:41", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72975", "3", "2018-01-02 15:28:29", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72976", "9", "2018-01-02 15:28:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72977", "8", "2018-01-02 15:28:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72978", "15", "2018-01-02 15:28:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72979", "18", "2018-01-02 15:28:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72980", "3", "2018-01-02 17:26:07", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72981", "9", "2018-01-02 17:26:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72982", "8", "2018-01-02 17:26:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72983", "10", "2018-01-02 17:26:09", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("72984", "15", "2018-01-02 17:26:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72985", "18", "2018-01-02 17:26:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72986", "3", "2018-01-02 19:37:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("72987", "9", "2018-01-02 19:37:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72988", "8", "2018-01-02 19:37:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72989", "10", "2018-01-02 19:37:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("72990", "15", "2018-01-02 19:37:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72991", "18", "2018-01-02 19:37:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72992", "3", "2018-01-02 20:10:44", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("72993", "10", "2018-01-02 21:12:54", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("72994", "3", "2018-01-02 21:58:20", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("72995", "9", "2018-01-02 21:58:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72996", "8", "2018-01-02 21:58:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("72997", "15", "2018-01-02 21:58:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72998", "18", "2018-01-02 21:58:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("72999", "10", "2018-01-02 22:39:13", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73000", "18", "2018-01-02 23:05:38", "54.36.149.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("73001", "3", "2018-01-02 23:20:41", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("73002", "3", "2018-01-03 00:07:19", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73003", "9", "2018-01-03 00:07:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73004", "8", "2018-01-03 00:07:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73005", "10", "2018-01-03 00:07:21", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73006", "15", "2018-01-03 00:07:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73007", "18", "2018-01-03 00:07:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73008", "3", "2018-01-03 02:12:38", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73009", "9", "2018-01-03 02:12:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73010", "8", "2018-01-03 02:12:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73011", "10", "2018-01-03 02:12:39", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73012", "15", "2018-01-03 02:12:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73013", "18", "2018-01-03 02:12:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73014", "14", "2018-01-03 02:34:33", "24.69.154.212", "2");
INSERT INTO `wp_rg_form_view` VALUES("73015", "3", "2018-01-03 03:52:35", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73016", "9", "2018-01-03 03:52:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73017", "8", "2018-01-03 03:52:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73018", "10", "2018-01-03 03:52:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73019", "15", "2018-01-03 03:52:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73020", "18", "2018-01-03 03:52:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73021", "18", "2018-01-03 04:04:43", "149.91.123.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("73022", "3", "2018-01-03 04:04:53", "149.91.123.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("73023", "18", "2018-01-03 05:31:45", "24.108.16.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("73024", "3", "2018-01-03 05:32:08", "24.108.16.138", "30");
INSERT INTO `wp_rg_form_view` VALUES("73025", "9", "2018-01-03 05:37:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73026", "8", "2018-01-03 05:37:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73027", "10", "2018-01-03 05:37:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73028", "15", "2018-01-03 05:37:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73029", "10", "2018-01-03 06:25:51", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("73030", "3", "2018-01-03 06:39:13", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("73031", "3", "2018-01-03 07:32:17", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73032", "9", "2018-01-03 07:32:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73033", "8", "2018-01-03 07:32:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73034", "10", "2018-01-03 07:32:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73035", "15", "2018-01-03 07:32:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73036", "18", "2018-01-03 07:32:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73037", "3", "2018-01-03 09:24:23", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73038", "9", "2018-01-03 09:24:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73039", "8", "2018-01-03 09:24:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73040", "10", "2018-01-03 09:24:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73041", "15", "2018-01-03 09:24:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73042", "18", "2018-01-03 09:24:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73043", "3", "2018-01-03 11:08:20", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73044", "9", "2018-01-03 11:08:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73045", "8", "2018-01-03 11:08:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73046", "10", "2018-01-03 11:08:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73047", "15", "2018-01-03 11:08:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73048", "18", "2018-01-03 11:08:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73049", "10", "2018-01-03 13:00:22", "184.66.129.248", "16");
INSERT INTO `wp_rg_form_view` VALUES("73050", "3", "2018-01-03 13:04:53", "52.37.180.245", "71");
INSERT INTO `wp_rg_form_view` VALUES("73051", "9", "2018-01-03 13:04:54", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("73052", "8", "2018-01-03 13:04:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73053", "15", "2018-01-03 13:04:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73054", "18", "2018-01-03 13:04:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73055", "11", "2018-01-03 13:35:47", "157.55.39.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("73056", "6", "2018-01-03 13:36:20", "40.77.167.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("73057", "3", "2018-01-03 14:01:45", "54.36.148.82", "31");
INSERT INTO `wp_rg_form_view` VALUES("73058", "9", "2018-01-03 14:57:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73059", "8", "2018-01-03 14:57:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73060", "10", "2018-01-03 14:57:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73061", "15", "2018-01-03 14:57:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73062", "18", "2018-01-03 14:57:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73063", "10", "2018-01-03 15:25:42", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73064", "8", "2018-01-03 16:48:22", "54.36.148.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("73065", "3", "2018-01-03 17:08:39", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73066", "9", "2018-01-03 17:08:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73067", "8", "2018-01-03 17:08:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73068", "10", "2018-01-03 17:08:41", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73069", "15", "2018-01-03 17:08:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73070", "18", "2018-01-03 17:08:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73071", "10", "2018-01-03 18:28:58", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("73072", "3", "2018-01-03 18:58:06", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73073", "9", "2018-01-03 18:58:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73074", "8", "2018-01-03 18:58:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73075", "15", "2018-01-03 18:58:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73076", "18", "2018-01-03 18:58:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73077", "8", "2018-01-03 19:08:09", "184.66.49.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("73078", "10", "2018-01-03 19:08:51", "72.14.199.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("73079", "3", "2018-01-03 19:11:13", "184.66.49.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("73080", "18", "2018-01-03 19:12:11", "184.66.49.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("73081", "18", "2018-01-03 20:48:47", "69.77.162.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("73082", "3", "2018-01-03 20:57:49", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73083", "9", "2018-01-03 20:57:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73084", "8", "2018-01-03 20:57:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73085", "10", "2018-01-03 20:57:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73086", "15", "2018-01-03 20:57:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73087", "10", "2018-01-03 21:57:09", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73088", "3", "2018-01-03 23:08:11", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("73089", "9", "2018-01-03 23:08:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73090", "8", "2018-01-03 23:08:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73091", "10", "2018-01-03 23:08:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73092", "15", "2018-01-03 23:08:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73093", "18", "2018-01-03 23:08:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73094", "8", "2018-01-04 00:10:31", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("73095", "3", "2018-01-04 00:37:51", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("73096", "18", "2018-01-04 00:47:27", "154.5.209.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("73097", "3", "2018-01-04 01:06:41", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73098", "9", "2018-01-04 01:06:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73099", "8", "2018-01-04 01:06:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73100", "10", "2018-01-04 01:06:43", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73101", "15", "2018-01-04 01:06:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73102", "18", "2018-01-04 01:06:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73103", "3", "2018-01-04 02:41:18", "173.234.153.122", "30");
INSERT INTO `wp_rg_form_view` VALUES("73104", "9", "2018-01-04 02:48:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73105", "8", "2018-01-04 02:48:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73106", "10", "2018-01-04 02:48:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73107", "15", "2018-01-04 02:48:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73108", "18", "2018-01-04 02:48:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73109", "3", "2018-01-04 04:10:48", "216.244.66.231", "30");
INSERT INTO `wp_rg_form_view` VALUES("73110", "9", "2018-01-04 04:38:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73111", "8", "2018-01-04 04:38:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73112", "10", "2018-01-04 04:38:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73113", "15", "2018-01-04 04:38:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73114", "18", "2018-01-04 04:38:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73115", "18", "2018-01-04 06:25:35", "185.138.241.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("73116", "3", "2018-01-04 06:32:06", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73117", "9", "2018-01-04 06:32:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73118", "8", "2018-01-04 06:32:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73119", "10", "2018-01-04 06:32:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73120", "15", "2018-01-04 06:32:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73121", "3", "2018-01-04 08:22:39", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73122", "9", "2018-01-04 08:22:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73123", "8", "2018-01-04 08:22:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73124", "10", "2018-01-04 08:22:41", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73125", "15", "2018-01-04 08:22:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73126", "18", "2018-01-04 08:22:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73127", "3", "2018-01-04 09:14:56", "174.127.133.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("73128", "10", "2018-01-04 09:39:17", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73129", "3", "2018-01-04 10:15:38", "216.244.66.231", "30");
INSERT INTO `wp_rg_form_view` VALUES("73130", "9", "2018-01-04 10:18:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73131", "8", "2018-01-04 10:18:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73132", "10", "2018-01-04 10:18:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73133", "15", "2018-01-04 10:18:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73134", "18", "2018-01-04 10:18:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73135", "3", "2018-01-04 12:08:58", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73136", "9", "2018-01-04 12:08:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73137", "8", "2018-01-04 12:08:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73138", "10", "2018-01-04 12:09:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73139", "15", "2018-01-04 12:09:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73140", "18", "2018-01-04 12:09:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73141", "10", "2018-01-04 13:00:21", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("73142", "3", "2018-01-04 13:03:42", "5.9.80.133", "30");
INSERT INTO `wp_rg_form_view` VALUES("73143", "9", "2018-01-04 13:56:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73144", "8", "2018-01-04 13:56:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73145", "15", "2018-01-04 13:56:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73146", "18", "2018-01-04 13:56:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73147", "10", "2018-01-04 15:31:51", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("73148", "3", "2018-01-04 15:47:58", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73149", "9", "2018-01-04 15:47:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73150", "8", "2018-01-04 15:48:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73151", "15", "2018-01-04 15:48:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73152", "18", "2018-01-04 15:48:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73153", "10", "2018-01-04 16:08:16", "54.36.148.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("73154", "14", "2018-01-04 17:45:26", "69.77.162.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("73155", "3", "2018-01-04 17:48:52", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73156", "9", "2018-01-04 17:48:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73157", "8", "2018-01-04 17:48:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73158", "10", "2018-01-04 17:48:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73159", "15", "2018-01-04 17:48:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73160", "18", "2018-01-04 17:48:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73161", "14", "2018-01-04 18:01:14", "46.229.168.68", "4");
INSERT INTO `wp_rg_form_view` VALUES("73162", "3", "2018-01-04 18:02:02", "46.229.168.72", "34");
INSERT INTO `wp_rg_form_view` VALUES("73163", "11", "2018-01-04 18:03:05", "46.229.168.79", "3");
INSERT INTO `wp_rg_form_view` VALUES("73164", "18", "2018-01-04 18:06:12", "46.229.168.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("73165", "14", "2018-01-04 19:39:11", "24.69.11.33", "2");
INSERT INTO `wp_rg_form_view` VALUES("73166", "3", "2018-01-04 19:40:02", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73167", "9", "2018-01-04 19:40:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73168", "8", "2018-01-04 19:40:06", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73169", "10", "2018-01-04 19:40:07", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("73170", "15", "2018-01-04 19:40:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73171", "18", "2018-01-04 19:40:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73172", "3", "2018-01-04 20:13:59", "54.36.149.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("73173", "10", "2018-01-04 20:46:38", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("73174", "10", "2018-01-04 21:09:30", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("73175", "3", "2018-01-04 21:53:28", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73176", "9", "2018-01-04 21:53:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73177", "8", "2018-01-04 21:53:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73178", "15", "2018-01-04 21:53:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73179", "18", "2018-01-04 21:53:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73180", "3", "2018-01-04 22:31:49", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("73181", "3", "2018-01-04 23:18:00", "89.249.74.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("73182", "10", "2018-01-04 23:18:09", "72.14.199.69", "2");
INSERT INTO `wp_rg_form_view` VALUES("73183", "18", "2018-01-04 23:18:32", "89.249.74.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("73184", "3", "2018-01-05 00:11:30", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73185", "9", "2018-01-05 00:11:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73186", "8", "2018-01-05 00:11:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73187", "10", "2018-01-05 00:11:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73188", "15", "2018-01-05 00:11:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73189", "18", "2018-01-05 00:11:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73190", "3", "2018-01-05 02:19:12", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73191", "9", "2018-01-05 02:19:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73192", "8", "2018-01-05 02:19:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73193", "10", "2018-01-05 02:19:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73194", "15", "2018-01-05 02:19:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73195", "18", "2018-01-05 02:19:20", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("73196", "3", "2018-01-05 03:35:36", "24.86.145.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("73197", "10", "2018-01-05 03:54:49", "54.36.148.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("73198", "3", "2018-01-05 04:18:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73199", "9", "2018-01-05 04:18:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73200", "8", "2018-01-05 04:18:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73201", "10", "2018-01-05 04:18:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73202", "15", "2018-01-05 04:18:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73203", "18", "2018-01-05 04:18:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73204", "3", "2018-01-05 05:03:24", "45.55.228.55", "27");
INSERT INTO `wp_rg_form_view` VALUES("73205", "18", "2018-01-05 05:03:35", "45.55.228.55", "46");
INSERT INTO `wp_rg_form_view` VALUES("73206", "14", "2018-01-05 05:08:40", "45.55.228.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("73207", "6", "2018-01-05 05:09:18", "45.55.228.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("73208", "9", "2018-01-05 05:17:21", "45.55.228.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("73209", "10", "2018-01-05 05:28:56", "45.55.228.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("73210", "3", "2018-01-05 06:37:56", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73211", "9", "2018-01-05 06:37:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73212", "8", "2018-01-05 06:37:57", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("73213", "10", "2018-01-05 06:37:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73214", "15", "2018-01-05 06:38:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73215", "18", "2018-01-05 06:38:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73216", "10", "2018-01-05 08:31:07", "54.36.148.157", "6");
INSERT INTO `wp_rg_form_view` VALUES("73217", "3", "2018-01-05 08:39:00", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73218", "9", "2018-01-05 08:39:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73219", "8", "2018-01-05 08:39:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73220", "15", "2018-01-05 08:39:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73221", "18", "2018-01-05 08:39:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73222", "10", "2018-01-05 09:46:50", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73223", "3", "2018-01-05 10:23:48", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73224", "9", "2018-01-05 10:23:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73225", "8", "2018-01-05 10:23:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73226", "10", "2018-01-05 10:23:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73227", "15", "2018-01-05 10:23:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73228", "18", "2018-01-05 10:23:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73229", "3", "2018-01-05 12:05:04", "157.55.39.135", "30");
INSERT INTO `wp_rg_form_view` VALUES("73230", "10", "2018-01-05 12:09:40", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("73231", "9", "2018-01-05 12:19:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73232", "8", "2018-01-05 12:19:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73233", "15", "2018-01-05 12:19:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73234", "18", "2018-01-05 12:19:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73235", "10", "2018-01-05 13:00:24", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73236", "3", "2018-01-05 14:25:29", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73237", "9", "2018-01-05 14:25:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73238", "8", "2018-01-05 14:25:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73239", "10", "2018-01-05 14:25:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73240", "15", "2018-01-05 14:25:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73241", "18", "2018-01-05 14:25:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73242", "10", "2018-01-05 15:26:25", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73243", "14", "2018-01-05 15:34:41", "211.233.56.228", "1");
INSERT INTO `wp_rg_form_view` VALUES("73244", "3", "2018-01-05 16:15:19", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73245", "9", "2018-01-05 16:15:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73246", "8", "2018-01-05 16:15:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73247", "10", "2018-01-05 16:15:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73248", "15", "2018-01-05 16:15:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73249", "18", "2018-01-05 16:15:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73250", "3", "2018-01-05 17:08:59", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("73251", "10", "2018-01-05 17:27:14", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("73252", "18", "2018-01-05 18:07:48", "184.66.50.161", "3");
INSERT INTO `wp_rg_form_view` VALUES("73253", "3", "2018-01-05 18:18:26", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("73254", "9", "2018-01-05 18:18:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73255", "8", "2018-01-05 18:18:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73256", "10", "2018-01-05 18:18:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73257", "15", "2018-01-05 18:18:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73258", "14", "2018-01-05 18:20:41", "96.50.120.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("73259", "10", "2018-01-05 19:28:11", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73260", "3", "2018-01-05 20:25:42", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73261", "9", "2018-01-05 20:25:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73262", "8", "2018-01-05 20:25:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73263", "10", "2018-01-05 20:25:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73264", "15", "2018-01-05 20:25:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73265", "18", "2018-01-05 20:25:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73266", "10", "2018-01-05 21:28:54", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73267", "3", "2018-01-05 22:40:02", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73268", "9", "2018-01-05 22:40:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73269", "8", "2018-01-05 22:40:03", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73270", "10", "2018-01-05 22:40:04", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("73271", "15", "2018-01-05 22:40:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73272", "18", "2018-01-05 22:40:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73273", "3", "2018-01-05 23:43:31", "66.249.79.141", "1");
INSERT INTO `wp_rg_form_view` VALUES("73274", "3", "2018-01-06 00:47:38", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73275", "9", "2018-01-06 00:47:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73276", "8", "2018-01-06 00:47:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73277", "10", "2018-01-06 00:47:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73278", "15", "2018-01-06 00:47:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73279", "18", "2018-01-06 00:47:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73280", "18", "2018-01-06 01:32:21", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("73281", "10", "2018-01-06 02:02:21", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("73282", "3", "2018-01-06 02:48:10", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73283", "9", "2018-01-06 02:48:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73284", "8", "2018-01-06 02:48:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73285", "15", "2018-01-06 02:48:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73286", "18", "2018-01-06 02:48:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73287", "10", "2018-01-06 03:33:19", "72.14.199.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("73288", "18", "2018-01-06 04:06:02", "213.127.68.237", "3");
INSERT INTO `wp_rg_form_view` VALUES("73289", "3", "2018-01-06 04:06:10", "213.127.68.237", "31");
INSERT INTO `wp_rg_form_view` VALUES("73290", "9", "2018-01-06 04:57:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73291", "8", "2018-01-06 04:57:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73292", "10", "2018-01-06 04:57:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73293", "15", "2018-01-06 04:57:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73294", "10", "2018-01-06 06:25:23", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("73295", "3", "2018-01-06 06:42:54", "47.89.27.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("73296", "18", "2018-01-06 06:43:28", "47.89.27.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("73297", "3", "2018-01-06 07:03:41", "157.55.39.29", "40");
INSERT INTO `wp_rg_form_view` VALUES("73298", "9", "2018-01-06 07:08:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73299", "8", "2018-01-06 07:08:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73300", "10", "2018-01-06 07:08:11", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("73301", "15", "2018-01-06 07:08:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73302", "18", "2018-01-06 07:08:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73303", "10", "2018-01-06 08:04:44", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73304", "14", "2018-01-06 08:11:39", "157.55.39.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("73305", "3", "2018-01-06 09:14:26", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73306", "9", "2018-01-06 09:14:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73307", "8", "2018-01-06 09:14:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73308", "10", "2018-01-06 09:14:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73309", "15", "2018-01-06 09:14:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73310", "18", "2018-01-06 09:14:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73311", "3", "2018-01-06 11:13:08", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73312", "9", "2018-01-06 11:13:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73313", "8", "2018-01-06 11:13:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73314", "10", "2018-01-06 11:13:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73315", "15", "2018-01-06 11:13:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73316", "18", "2018-01-06 11:13:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73317", "3", "2018-01-06 12:54:46", "157.55.39.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("73318", "10", "2018-01-06 13:00:17", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("73319", "3", "2018-01-06 13:14:07", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73320", "9", "2018-01-06 13:14:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73321", "8", "2018-01-06 13:14:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73322", "15", "2018-01-06 13:14:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73323", "18", "2018-01-06 13:14:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73324", "18", "2018-01-06 14:31:41", "157.55.39.203", "1");
INSERT INTO `wp_rg_form_view` VALUES("73325", "10", "2018-01-06 14:40:12", "157.55.39.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("73326", "3", "2018-01-06 15:07:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73327", "9", "2018-01-06 15:07:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73328", "8", "2018-01-06 15:07:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73329", "10", "2018-01-06 15:07:18", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73330", "15", "2018-01-06 15:07:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73331", "18", "2018-01-06 15:07:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73332", "3", "2018-01-06 16:04:02", "5.9.98.130", "63");
INSERT INTO `wp_rg_form_view` VALUES("73333", "18", "2018-01-06 16:05:37", "5.9.98.130", "48");
INSERT INTO `wp_rg_form_view` VALUES("73334", "14", "2018-01-06 16:05:59", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("73335", "10", "2018-01-06 16:12:11", "5.9.98.130", "10");
INSERT INTO `wp_rg_form_view` VALUES("73336", "15", "2018-01-06 16:12:30", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("73337", "8", "2018-01-06 16:14:07", "5.9.98.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("73338", "9", "2018-01-06 16:14:26", "5.9.98.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("73339", "6", "2018-01-06 16:15:39", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("73340", "10", "2018-01-06 17:21:44", "72.14.199.81", "2");
INSERT INTO `wp_rg_form_view` VALUES("73341", "18", "2018-01-06 17:28:41", "5.9.98.130", "48");
INSERT INTO `wp_rg_form_view` VALUES("73342", "3", "2018-01-06 18:27:08", "109.169.29.30", "31");
INSERT INTO `wp_rg_form_view` VALUES("73343", "18", "2018-01-06 18:30:50", "109.169.29.30", "98");
INSERT INTO `wp_rg_form_view` VALUES("73344", "8", "2018-01-06 18:36:51", "68.180.228.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("73345", "9", "2018-01-06 18:58:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73346", "10", "2018-01-06 18:58:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73347", "15", "2018-01-06 18:58:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73348", "14", "2018-01-06 19:26:10", "157.55.39.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("73349", "10", "2018-01-06 19:28:01", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73350", "10", "2018-01-06 20:05:36", "54.36.148.27", "6");
INSERT INTO `wp_rg_form_view` VALUES("73351", "3", "2018-01-06 20:39:37", "5.188.211.15", "46");
INSERT INTO `wp_rg_form_view` VALUES("73352", "8", "2018-01-06 20:39:37", "5.188.211.15", "4");
INSERT INTO `wp_rg_form_view` VALUES("73353", "18", "2018-01-06 20:42:51", "5.188.211.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("73354", "9", "2018-01-06 20:59:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73355", "15", "2018-01-06 20:59:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73356", "18", "2018-01-06 21:03:56", "5.9.98.130", "192");
INSERT INTO `wp_rg_form_view` VALUES("73357", "10", "2018-01-06 21:28:52", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73358", "3", "2018-01-06 22:53:17", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73359", "9", "2018-01-06 22:53:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73360", "8", "2018-01-06 22:53:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73361", "10", "2018-01-06 22:53:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73362", "15", "2018-01-06 22:53:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73363", "18", "2018-01-06 22:53:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73364", "18", "2018-01-06 23:19:56", "154.20.28.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("73365", "10", "2018-01-06 23:29:39", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73366", "3", "2018-01-07 00:42:29", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73367", "9", "2018-01-07 00:42:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73368", "8", "2018-01-07 00:42:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73369", "10", "2018-01-07 00:42:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73370", "15", "2018-01-07 00:42:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73371", "18", "2018-01-07 00:42:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73372", "18", "2018-01-07 01:09:38", "154.20.28.203", "222");
INSERT INTO `wp_rg_form_view` VALUES("73373", "10", "2018-01-07 01:30:31", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("73374", "14", "2018-01-07 01:52:58", "157.55.39.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("73375", "18", "2018-01-07 02:00:02", "5.9.98.130", "166");
INSERT INTO `wp_rg_form_view` VALUES("73376", "3", "2018-01-07 02:43:42", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73377", "9", "2018-01-07 02:43:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73378", "8", "2018-01-07 02:43:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73379", "10", "2018-01-07 02:43:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73380", "15", "2018-01-07 02:43:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73381", "10", "2018-01-07 03:31:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73382", "3", "2018-01-07 03:32:14", "136.243.59.237", "1");
INSERT INTO `wp_rg_form_view` VALUES("73383", "3", "2018-01-07 04:22:27", "54.36.148.180", "2");
INSERT INTO `wp_rg_form_view` VALUES("73384", "3", "2018-01-07 05:08:31", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73385", "9", "2018-01-07 05:08:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73386", "8", "2018-01-07 05:08:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73387", "10", "2018-01-07 05:08:36", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73388", "15", "2018-01-07 05:08:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73389", "18", "2018-01-07 05:08:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73390", "3", "2018-01-07 07:05:02", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73391", "9", "2018-01-07 07:05:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73392", "8", "2018-01-07 07:05:05", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73393", "10", "2018-01-07 07:05:07", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("73394", "15", "2018-01-07 07:05:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73395", "18", "2018-01-07 07:05:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73396", "3", "2018-01-07 08:56:11", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73397", "9", "2018-01-07 08:56:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73398", "8", "2018-01-07 08:56:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73399", "10", "2018-01-07 08:56:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73400", "15", "2018-01-07 08:56:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73401", "18", "2018-01-07 08:56:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73402", "8", "2018-01-07 10:35:15", "207.46.13.78", "5");
INSERT INTO `wp_rg_form_view` VALUES("73403", "3", "2018-01-07 10:55:09", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73404", "9", "2018-01-07 10:55:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73405", "10", "2018-01-07 10:55:13", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("73406", "15", "2018-01-07 10:55:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73407", "18", "2018-01-07 10:55:21", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73408", "18", "2018-01-07 11:00:01", "5.9.98.130", "498");
INSERT INTO `wp_rg_form_view` VALUES("73409", "18", "2018-01-07 12:00:01", "5.9.98.130", "269");
INSERT INTO `wp_rg_form_view` VALUES("73410", "3", "2018-01-07 12:16:01", "88.198.54.49", "30");
INSERT INTO `wp_rg_form_view` VALUES("73411", "9", "2018-01-07 12:45:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73412", "8", "2018-01-07 12:45:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73413", "10", "2018-01-07 12:45:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73414", "15", "2018-01-07 12:45:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73415", "10", "2018-01-07 13:00:26", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73416", "18", "2018-01-07 13:08:48", "66.249.79.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("73417", "3", "2018-01-07 14:39:47", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73418", "9", "2018-01-07 14:39:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73419", "8", "2018-01-07 14:39:50", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73420", "10", "2018-01-07 14:39:52", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("73421", "15", "2018-01-07 14:39:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73422", "18", "2018-01-07 14:40:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73423", "10", "2018-01-07 15:32:00", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73424", "3", "2018-01-07 16:46:11", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73425", "9", "2018-01-07 16:46:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73426", "8", "2018-01-07 16:46:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73427", "10", "2018-01-07 16:46:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73428", "15", "2018-01-07 16:46:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73429", "18", "2018-01-07 16:46:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73430", "3", "2018-01-07 17:19:48", "54.36.148.97", "1");
INSERT INTO `wp_rg_form_view` VALUES("73431", "10", "2018-01-07 17:32:50", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73432", "10", "2018-01-07 18:03:34", "199.16.157.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("73433", "3", "2018-01-07 18:30:39", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73434", "9", "2018-01-07 18:30:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73435", "8", "2018-01-07 18:30:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73436", "15", "2018-01-07 18:30:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73437", "18", "2018-01-07 18:30:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73438", "14", "2018-01-07 19:09:09", "108.180.51.239", "1");
INSERT INTO `wp_rg_form_view` VALUES("73439", "10", "2018-01-07 19:19:55", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73440", "3", "2018-01-07 20:14:40", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73441", "9", "2018-01-07 20:14:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73442", "8", "2018-01-07 20:14:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73443", "10", "2018-01-07 20:14:42", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("73444", "15", "2018-01-07 20:14:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73445", "18", "2018-01-07 20:14:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73446", "14", "2018-01-07 21:47:48", "134.87.137.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("73447", "3", "2018-01-07 22:16:15", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("73448", "9", "2018-01-07 22:16:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73449", "8", "2018-01-07 22:16:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73450", "10", "2018-01-07 22:16:18", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73451", "15", "2018-01-07 22:16:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73452", "18", "2018-01-07 22:16:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73453", "18", "2018-01-07 23:08:05", "96.54.47.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("73454", "3", "2018-01-07 23:37:10", "180.76.15.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("73455", "3", "2018-01-08 00:26:44", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73456", "9", "2018-01-08 00:26:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73457", "8", "2018-01-08 00:26:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73458", "10", "2018-01-08 00:26:47", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73459", "15", "2018-01-08 00:26:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73460", "18", "2018-01-08 00:26:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73461", "10", "2018-01-08 01:33:46", "54.36.149.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("73462", "3", "2018-01-08 01:35:02", "54.36.148.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("73463", "3", "2018-01-08 02:31:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73464", "9", "2018-01-08 02:31:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73465", "8", "2018-01-08 02:31:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73466", "10", "2018-01-08 02:31:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73467", "15", "2018-01-08 02:31:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73468", "18", "2018-01-08 02:31:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73469", "10", "2018-01-08 03:16:47", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73470", "3", "2018-01-08 06:46:15", "54.36.148.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("73471", "10", "2018-01-08 08:44:16", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("73472", "3", "2018-01-08 08:45:36", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73473", "9", "2018-01-08 08:45:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73474", "8", "2018-01-08 08:45:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73475", "15", "2018-01-08 08:45:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73476", "18", "2018-01-08 08:45:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73477", "10", "2018-01-08 09:35:02", "66.249.91.4", "1");
INSERT INTO `wp_rg_form_view` VALUES("73478", "18", "2018-01-08 09:48:19", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("73479", "3", "2018-01-08 10:45:54", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73480", "9", "2018-01-08 10:45:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73481", "8", "2018-01-08 10:45:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73482", "10", "2018-01-08 10:45:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73483", "15", "2018-01-08 10:45:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73484", "18", "2018-01-08 10:46:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73485", "3", "2018-01-08 11:29:20", "157.55.39.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("73486", "3", "2018-01-08 12:14:29", "5.188.211.16", "33");
INSERT INTO `wp_rg_form_view` VALUES("73487", "9", "2018-01-08 12:42:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73488", "8", "2018-01-08 12:42:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73489", "10", "2018-01-08 12:42:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73490", "15", "2018-01-08 12:42:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73491", "18", "2018-01-08 12:42:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73492", "10", "2018-01-08 13:00:19", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73493", "3", "2018-01-08 14:42:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73494", "9", "2018-01-08 14:42:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73495", "8", "2018-01-08 14:42:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73496", "10", "2018-01-08 14:42:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73497", "15", "2018-01-08 14:42:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73498", "18", "2018-01-08 14:42:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73499", "18", "2018-01-08 15:13:09", "77.75.77.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("73500", "10", "2018-01-08 15:26:25", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73501", "3", "2018-01-08 16:05:29", "108.180.147.111", "32");
INSERT INTO `wp_rg_form_view` VALUES("73502", "9", "2018-01-08 16:52:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73503", "8", "2018-01-08 16:52:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73504", "10", "2018-01-08 16:52:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73505", "15", "2018-01-08 16:52:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73506", "18", "2018-01-08 16:52:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73507", "10", "2018-01-08 17:04:41", "207.46.13.206", "7");
INSERT INTO `wp_rg_form_view` VALUES("73508", "3", "2018-01-08 17:12:01", "157.55.39.5", "20");
INSERT INTO `wp_rg_form_view` VALUES("73509", "9", "2018-01-08 17:12:17", "207.46.13.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("73510", "8", "2018-01-08 17:13:18", "40.77.167.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("73511", "6", "2018-01-08 17:13:23", "157.55.39.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("73512", "11", "2018-01-08 17:16:07", "40.77.167.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("73513", "18", "2018-01-08 17:44:21", "23.16.121.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("73514", "18", "2018-01-08 18:38:29", "24.108.184.241", "2");
INSERT INTO `wp_rg_form_view` VALUES("73515", "3", "2018-01-08 18:57:22", "40.77.167.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("73516", "3", "2018-01-08 19:14:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73517", "9", "2018-01-08 19:14:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73518", "8", "2018-01-08 19:14:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73519", "10", "2018-01-08 19:14:18", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73520", "15", "2018-01-08 19:14:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73521", "18", "2018-01-08 19:14:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73522", "10", "2018-01-08 21:28:57", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73523", "3", "2018-01-08 22:19:19", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73524", "9", "2018-01-08 22:19:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73525", "8", "2018-01-08 22:19:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73526", "10", "2018-01-08 22:19:21", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73527", "15", "2018-01-08 22:19:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73528", "18", "2018-01-08 22:19:25", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("73529", "14", "2018-01-08 22:50:10", "207.81.10.162", "1");
INSERT INTO `wp_rg_form_view` VALUES("73530", "10", "2018-01-08 23:29:45", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73531", "18", "2018-01-08 23:39:14", "68.180.228.176", "3");
INSERT INTO `wp_rg_form_view` VALUES("73532", "3", "2018-01-09 00:46:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73533", "9", "2018-01-09 00:46:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73534", "8", "2018-01-09 00:46:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73535", "10", "2018-01-09 00:46:18", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73536", "15", "2018-01-09 00:46:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73537", "18", "2018-01-09 00:46:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73538", "10", "2018-01-09 01:30:35", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73539", "3", "2018-01-09 02:52:57", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73540", "9", "2018-01-09 02:52:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73541", "8", "2018-01-09 02:52:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73542", "10", "2018-01-09 02:52:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73543", "15", "2018-01-09 02:53:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73544", "18", "2018-01-09 02:53:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73545", "10", "2018-01-09 03:31:26", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73546", "3", "2018-01-09 03:41:19", "207.46.13.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("73547", "10", "2018-01-09 04:09:20", "207.46.13.183", "7");
INSERT INTO `wp_rg_form_view` VALUES("73548", "3", "2018-01-09 04:50:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73549", "9", "2018-01-09 04:50:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73550", "8", "2018-01-09 04:50:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73551", "15", "2018-01-09 04:50:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73552", "18", "2018-01-09 04:50:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73553", "10", "2018-01-09 05:32:14", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73554", "3", "2018-01-09 07:06:31", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73555", "9", "2018-01-09 07:06:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73556", "8", "2018-01-09 07:06:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73557", "10", "2018-01-09 07:06:33", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73558", "15", "2018-01-09 07:06:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73559", "18", "2018-01-09 07:06:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73560", "8", "2018-01-09 08:09:14", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("73561", "3", "2018-01-09 08:16:48", "180.76.15.15", "3");
INSERT INTO `wp_rg_form_view` VALUES("73562", "10", "2018-01-09 09:00:47", "194.187.170.117", "8");
INSERT INTO `wp_rg_form_view` VALUES("73563", "3", "2018-01-09 09:07:15", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73564", "9", "2018-01-09 09:07:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73565", "8", "2018-01-09 09:07:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73566", "15", "2018-01-09 09:07:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73567", "18", "2018-01-09 09:07:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73568", "10", "2018-01-09 10:06:01", "194.187.170.117", "4");
INSERT INTO `wp_rg_form_view` VALUES("73569", "3", "2018-01-09 10:11:11", "194.187.170.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("73570", "3", "2018-01-09 11:22:52", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73571", "9", "2018-01-09 11:22:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73572", "8", "2018-01-09 11:22:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73573", "10", "2018-01-09 11:22:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73574", "15", "2018-01-09 11:22:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73575", "18", "2018-01-09 11:22:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73576", "10", "2018-01-09 13:00:20", "184.66.129.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("73577", "15", "2018-01-09 13:16:13", "62.210.251.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("73578", "3", "2018-01-09 13:19:44", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73579", "9", "2018-01-09 13:19:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73580", "8", "2018-01-09 13:19:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73581", "18", "2018-01-09 13:19:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73582", "3", "2018-01-09 15:19:05", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73583", "9", "2018-01-09 15:19:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73584", "8", "2018-01-09 15:19:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73585", "10", "2018-01-09 15:19:07", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73586", "15", "2018-01-09 15:19:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73587", "18", "2018-01-09 15:19:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73588", "3", "2018-01-09 16:47:45", "5.9.156.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("73589", "18", "2018-01-09 16:52:42", "96.54.47.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("73590", "3", "2018-01-09 17:17:20", "46.229.168.79", "106");
INSERT INTO `wp_rg_form_view` VALUES("73591", "11", "2018-01-09 17:19:07", "46.229.168.68", "7");
INSERT INTO `wp_rg_form_view` VALUES("73592", "6", "2018-01-09 17:22:05", "46.229.168.67", "3");
INSERT INTO `wp_rg_form_view` VALUES("73593", "9", "2018-01-09 17:23:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73594", "8", "2018-01-09 17:23:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73595", "10", "2018-01-09 17:23:21", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("73596", "15", "2018-01-09 17:23:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73597", "18", "2018-01-09 17:23:26", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73598", "14", "2018-01-09 17:37:52", "46.229.168.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("73599", "10", "2018-01-09 18:00:46", "207.46.13.184", "1");
INSERT INTO `wp_rg_form_view` VALUES("73600", "18", "2018-01-09 18:14:38", "96.54.47.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("73601", "3", "2018-01-09 18:18:44", "96.54.232.157", "2");
INSERT INTO `wp_rg_form_view` VALUES("73602", "18", "2018-01-09 19:12:58", "96.54.47.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("73603", "3", "2018-01-09 19:15:08", "173.183.121.164", "1");
INSERT INTO `wp_rg_form_view` VALUES("73604", "14", "2018-01-09 19:44:14", "154.5.205.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("73605", "3", "2018-01-09 20:13:47", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("73606", "9", "2018-01-09 20:13:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73607", "8", "2018-01-09 20:13:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73608", "10", "2018-01-09 20:13:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73609", "15", "2018-01-09 20:13:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73610", "18", "2018-01-09 20:13:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73611", "18", "2018-01-09 21:36:49", "138.197.167.244", "3");
INSERT INTO `wp_rg_form_view` VALUES("73612", "14", "2018-01-09 21:42:30", "104.223.52.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("73613", "3", "2018-01-09 21:42:34", "104.223.52.151", "3");
INSERT INTO `wp_rg_form_view` VALUES("73614", "3", "2018-01-09 22:19:28", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73615", "9", "2018-01-09 22:19:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73616", "8", "2018-01-09 22:19:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73617", "10", "2018-01-09 22:19:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73618", "15", "2018-01-09 22:19:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73619", "18", "2018-01-09 22:19:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73620", "3", "2018-01-09 23:14:15", "64.114.207.91", "4");
INSERT INTO `wp_rg_form_view` VALUES("73621", "3", "2018-01-10 00:22:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73622", "9", "2018-01-10 00:22:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73623", "8", "2018-01-10 00:22:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73624", "10", "2018-01-10 00:22:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73625", "15", "2018-01-10 00:22:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73626", "18", "2018-01-10 00:22:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73627", "3", "2018-01-10 02:38:40", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73628", "9", "2018-01-10 02:38:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73629", "8", "2018-01-10 02:38:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73630", "10", "2018-01-10 02:38:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73631", "15", "2018-01-10 02:38:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73632", "18", "2018-01-10 02:38:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73633", "3", "2018-01-10 03:53:37", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("73634", "10", "2018-01-10 04:13:03", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("73635", "3", "2018-01-10 04:36:35", "180.76.15.6", "30");
INSERT INTO `wp_rg_form_view` VALUES("73636", "9", "2018-01-10 04:41:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73637", "8", "2018-01-10 04:41:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73638", "15", "2018-01-10 04:41:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73639", "18", "2018-01-10 04:41:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73640", "3", "2018-01-10 05:09:55", "180.76.15.27", "1");
INSERT INTO `wp_rg_form_view` VALUES("73641", "10", "2018-01-10 06:19:19", "194.187.170.147", "8");
INSERT INTO `wp_rg_form_view` VALUES("73642", "3", "2018-01-10 06:49:03", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73643", "9", "2018-01-10 06:49:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73644", "8", "2018-01-10 06:49:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73645", "15", "2018-01-10 06:49:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73646", "18", "2018-01-10 06:49:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73647", "3", "2018-01-10 07:02:11", "194.187.170.147", "2");
INSERT INTO `wp_rg_form_view` VALUES("73648", "3", "2018-01-10 08:54:50", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73649", "9", "2018-01-10 08:54:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73650", "8", "2018-01-10 08:54:51", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73651", "10", "2018-01-10 08:54:52", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("73652", "15", "2018-01-10 08:54:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73653", "18", "2018-01-10 08:54:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73654", "18", "2018-01-10 09:22:18", "70.36.107.190", "3");
INSERT INTO `wp_rg_form_view` VALUES("73655", "8", "2018-01-10 09:38:48", "65.132.59.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("73656", "18", "2018-01-10 10:16:35", "70.36.107.190", "2");
INSERT INTO `wp_rg_form_view` VALUES("73657", "3", "2018-01-10 10:46:39", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73658", "9", "2018-01-10 10:46:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73659", "8", "2018-01-10 10:46:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73660", "10", "2018-01-10 10:46:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73661", "15", "2018-01-10 10:46:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73662", "18", "2018-01-10 11:00:04", "70.36.107.50", "5");
INSERT INTO `wp_rg_form_view` VALUES("73663", "18", "2018-01-10 12:00:01", "70.36.107.190", "4");
INSERT INTO `wp_rg_form_view` VALUES("73664", "3", "2018-01-10 12:49:37", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73665", "9", "2018-01-10 12:49:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73666", "8", "2018-01-10 12:49:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73667", "10", "2018-01-10 12:49:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73668", "15", "2018-01-10 12:49:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73669", "10", "2018-01-10 13:00:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73670", "18", "2018-01-10 13:06:43", "70.36.107.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("73671", "3", "2018-01-10 13:19:00", "173.212.242.246", "2");
INSERT INTO `wp_rg_form_view` VALUES("73672", "10", "2018-01-10 14:38:04", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73673", "3", "2018-01-10 15:00:00", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73674", "9", "2018-01-10 15:00:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73675", "8", "2018-01-10 15:00:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73676", "10", "2018-01-10 15:00:02", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("73677", "15", "2018-01-10 15:00:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73678", "18", "2018-01-10 15:00:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73679", "3", "2018-01-10 16:51:10", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73680", "9", "2018-01-10 16:51:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73681", "8", "2018-01-10 16:51:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73682", "10", "2018-01-10 16:51:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73683", "15", "2018-01-10 16:51:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73684", "18", "2018-01-10 16:51:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73685", "10", "2018-01-10 17:01:53", "194.187.170.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("73686", "18", "2018-01-10 17:04:40", "142.36.92.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("73687", "3", "2018-01-10 17:45:19", "194.187.170.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("73688", "10", "2018-01-10 18:08:00", "184.66.129.248", "8");
INSERT INTO `wp_rg_form_view` VALUES("73689", "3", "2018-01-10 18:10:14", "54.36.149.32", "30");
INSERT INTO `wp_rg_form_view` VALUES("73690", "9", "2018-01-10 18:45:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73691", "8", "2018-01-10 18:45:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73692", "15", "2018-01-10 18:45:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73693", "18", "2018-01-10 18:45:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73694", "10", "2018-01-10 19:19:35", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("73695", "3", "2018-01-10 20:35:29", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73696", "9", "2018-01-10 20:35:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73697", "8", "2018-01-10 20:35:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73698", "10", "2018-01-10 20:35:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73699", "15", "2018-01-10 20:35:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73700", "18", "2018-01-10 20:35:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73701", "10", "2018-01-10 21:44:04", "157.55.39.126", "8");
INSERT INTO `wp_rg_form_view` VALUES("73702", "9", "2018-01-10 21:44:13", "157.55.39.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("73703", "3", "2018-01-10 21:44:26", "40.77.167.59", "12");
INSERT INTO `wp_rg_form_view` VALUES("73704", "3", "2018-01-10 22:02:02", "157.55.39.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("73705", "3", "2018-01-10 23:08:35", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73706", "9", "2018-01-10 23:08:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73707", "8", "2018-01-10 23:08:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73708", "10", "2018-01-10 23:08:37", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73709", "15", "2018-01-10 23:08:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73710", "18", "2018-01-10 23:08:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73711", "3", "2018-01-11 00:14:56", "34.234.83.0", "2");
INSERT INTO `wp_rg_form_view` VALUES("73712", "3", "2018-01-11 01:09:57", "52.37.180.245", "59");
INSERT INTO `wp_rg_form_view` VALUES("73713", "9", "2018-01-11 01:09:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73714", "8", "2018-01-11 01:09:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73715", "10", "2018-01-11 01:09:59", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("73716", "15", "2018-01-11 01:10:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73717", "18", "2018-01-11 01:10:04", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("73718", "10", "2018-01-11 02:11:16", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73719", "3", "2018-01-11 02:48:08", "75.157.25.101", "1");
INSERT INTO `wp_rg_form_view` VALUES("73720", "3", "2018-01-11 03:20:36", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73721", "9", "2018-01-11 03:20:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73722", "8", "2018-01-11 03:20:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73723", "10", "2018-01-11 03:20:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73724", "15", "2018-01-11 03:20:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73725", "18", "2018-01-11 03:20:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73726", "14", "2018-01-11 04:00:02", "184.66.247.1", "5");
INSERT INTO `wp_rg_form_view` VALUES("73727", "10", "2018-01-11 05:20:03", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("73728", "3", "2018-01-11 05:22:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73729", "9", "2018-01-11 05:22:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73730", "8", "2018-01-11 05:22:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73731", "15", "2018-01-11 05:22:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73732", "18", "2018-01-11 05:22:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73733", "3", "2018-01-11 06:01:56", "34.227.7.60", "3");
INSERT INTO `wp_rg_form_view` VALUES("73734", "10", "2018-01-11 07:20:50", "184.66.129.248", "11");
INSERT INTO `wp_rg_form_view` VALUES("73735", "3", "2018-01-11 07:29:53", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73736", "9", "2018-01-11 07:29:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73737", "8", "2018-01-11 07:29:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73738", "15", "2018-01-11 07:29:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73739", "18", "2018-01-11 07:29:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73740", "10", "2018-01-11 09:09:09", "66.249.92.73", "7");
INSERT INTO `wp_rg_form_view` VALUES("73741", "3", "2018-01-11 09:22:51", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73742", "9", "2018-01-11 09:22:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73743", "8", "2018-01-11 09:22:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73744", "15", "2018-01-11 09:22:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73745", "18", "2018-01-11 09:23:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73746", "3", "2018-01-11 11:17:58", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73747", "9", "2018-01-11 11:17:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73748", "8", "2018-01-11 11:18:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73749", "10", "2018-01-11 11:18:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73750", "15", "2018-01-11 11:18:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73751", "18", "2018-01-11 11:18:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73752", "3", "2018-01-11 13:18:01", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73753", "9", "2018-01-11 13:18:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73754", "8", "2018-01-11 13:18:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73755", "10", "2018-01-11 13:18:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73756", "15", "2018-01-11 13:18:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73757", "18", "2018-01-11 13:18:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73758", "3", "2018-01-11 15:14:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73759", "9", "2018-01-11 15:14:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73760", "8", "2018-01-11 15:14:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73761", "10", "2018-01-11 15:14:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73762", "15", "2018-01-11 15:14:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73763", "18", "2018-01-11 15:14:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73764", "14", "2018-01-11 16:47:06", "195.154.21.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("73765", "3", "2018-01-11 17:14:16", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73766", "9", "2018-01-11 17:14:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73767", "8", "2018-01-11 17:14:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73768", "10", "2018-01-11 17:14:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73769", "15", "2018-01-11 17:14:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73770", "18", "2018-01-11 17:14:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73771", "3", "2018-01-11 19:02:11", "184.66.42.23", "30");
INSERT INTO `wp_rg_form_view` VALUES("73772", "18", "2018-01-11 19:02:48", "184.66.42.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("73773", "9", "2018-01-11 19:14:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73774", "8", "2018-01-11 19:14:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73775", "10", "2018-01-11 19:14:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73776", "15", "2018-01-11 19:14:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73777", "18", "2018-01-11 20:13:12", "24.108.184.241", "1");
INSERT INTO `wp_rg_form_view` VALUES("73778", "3", "2018-01-11 20:26:22", "184.71.14.6", "1");
INSERT INTO `wp_rg_form_view` VALUES("73779", "3", "2018-01-11 21:47:15", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73780", "9", "2018-01-11 21:47:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73781", "8", "2018-01-11 21:47:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73782", "10", "2018-01-11 21:47:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73783", "15", "2018-01-11 21:47:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73784", "18", "2018-01-11 21:47:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73785", "3", "2018-01-11 23:23:55", "195.154.146.17", "30");
INSERT INTO `wp_rg_form_view` VALUES("73786", "9", "2018-01-11 23:33:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73787", "8", "2018-01-11 23:33:51", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73788", "10", "2018-01-11 23:33:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73789", "15", "2018-01-11 23:33:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73790", "18", "2018-01-11 23:33:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73791", "10", "2018-01-12 00:13:47", "72.14.199.119", "1");
INSERT INTO `wp_rg_form_view` VALUES("73792", "18", "2018-01-12 00:41:42", "75.157.169.59", "1");
INSERT INTO `wp_rg_form_view` VALUES("73793", "10", "2018-01-12 01:26:16", "184.66.129.248", "10");
INSERT INTO `wp_rg_form_view` VALUES("73794", "3", "2018-01-12 01:41:39", "207.46.13.143", "30");
INSERT INTO `wp_rg_form_view` VALUES("73795", "9", "2018-01-12 01:50:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73796", "8", "2018-01-12 01:50:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73797", "15", "2018-01-12 01:51:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73798", "18", "2018-01-12 01:51:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73799", "18", "2018-01-12 02:31:11", "70.67.110.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("73800", "3", "2018-01-12 03:48:36", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73801", "9", "2018-01-12 03:48:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73802", "8", "2018-01-12 03:48:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73803", "10", "2018-01-12 03:48:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73804", "15", "2018-01-12 03:48:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73805", "18", "2018-01-12 03:48:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73806", "3", "2018-01-12 05:47:13", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73807", "9", "2018-01-12 05:47:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73808", "8", "2018-01-12 05:47:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73809", "10", "2018-01-12 05:47:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73810", "15", "2018-01-12 05:47:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73811", "18", "2018-01-12 05:47:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73812", "18", "2018-01-12 06:16:19", "54.36.148.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("73813", "3", "2018-01-12 08:05:40", "52.37.180.245", "38");
INSERT INTO `wp_rg_form_view` VALUES("73814", "9", "2018-01-12 08:05:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73815", "8", "2018-01-12 08:05:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73816", "10", "2018-01-12 08:05:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73817", "15", "2018-01-12 08:05:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73818", "18", "2018-01-12 08:05:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73819", "14", "2018-01-12 09:05:27", "104.223.58.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("73820", "3", "2018-01-12 10:04:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73821", "9", "2018-01-12 10:04:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73822", "8", "2018-01-12 10:04:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73823", "10", "2018-01-12 10:04:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73824", "15", "2018-01-12 10:04:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73825", "18", "2018-01-12 10:04:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73826", "3", "2018-01-12 11:09:47", "54.165.59.7", "30");
INSERT INTO `wp_rg_form_view` VALUES("73827", "9", "2018-01-12 11:54:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73828", "8", "2018-01-12 11:54:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73829", "10", "2018-01-12 11:54:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73830", "15", "2018-01-12 11:54:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73831", "18", "2018-01-12 11:54:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73832", "10", "2018-01-12 12:23:09", "72.14.199.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("73833", "3", "2018-01-12 13:43:27", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73834", "9", "2018-01-12 13:43:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73835", "8", "2018-01-12 13:43:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73836", "10", "2018-01-12 13:43:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73837", "15", "2018-01-12 13:43:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73838", "18", "2018-01-12 13:43:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73839", "10", "2018-01-12 15:05:09", "184.66.129.248", "10");
INSERT INTO `wp_rg_form_view` VALUES("73840", "3", "2018-01-12 15:30:14", "70.79.70.221", "30");
INSERT INTO `wp_rg_form_view` VALUES("73841", "9", "2018-01-12 15:46:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73842", "8", "2018-01-12 15:46:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73843", "15", "2018-01-12 15:46:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73844", "18", "2018-01-12 15:46:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73845", "3", "2018-01-12 17:35:07", "207.6.155.37", "32");
INSERT INTO `wp_rg_form_view` VALUES("73846", "18", "2018-01-12 17:35:56", "207.6.155.37", "3");
INSERT INTO `wp_rg_form_view` VALUES("73847", "9", "2018-01-12 17:47:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73848", "8", "2018-01-12 17:47:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73849", "10", "2018-01-12 17:47:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73850", "15", "2018-01-12 17:47:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73851", "10", "2018-01-12 19:33:30", "54.36.148.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("73852", "14", "2018-01-12 19:35:21", "202.159.36.70", "3");
INSERT INTO `wp_rg_form_view` VALUES("73853", "18", "2018-01-12 19:50:54", "145.132.2.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("73854", "3", "2018-01-12 19:51:06", "145.132.2.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("73855", "3", "2018-01-12 20:08:25", "52.37.180.245", "44");
INSERT INTO `wp_rg_form_view` VALUES("73856", "9", "2018-01-12 20:08:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73857", "8", "2018-01-12 20:08:27", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("73858", "10", "2018-01-12 20:08:28", "52.37.180.245", "12");
INSERT INTO `wp_rg_form_view` VALUES("73859", "15", "2018-01-12 20:08:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73860", "18", "2018-01-12 20:08:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73861", "11", "2018-01-12 20:48:09", "157.55.39.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("73862", "6", "2018-01-12 20:48:14", "157.55.39.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("73863", "3", "2018-01-12 21:09:58", "142.31.172.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("73864", "18", "2018-01-12 21:18:22", "142.4.218.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("73865", "3", "2018-01-12 22:08:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73866", "9", "2018-01-12 22:08:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73867", "8", "2018-01-12 22:08:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73868", "10", "2018-01-12 22:08:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73869", "15", "2018-01-12 22:08:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73870", "18", "2018-01-12 22:08:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73871", "3", "2018-01-12 23:41:48", "54.36.148.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("73872", "3", "2018-01-13 00:01:58", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73873", "9", "2018-01-13 00:01:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73874", "8", "2018-01-13 00:01:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73875", "10", "2018-01-13 00:02:00", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73876", "15", "2018-01-13 00:02:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73877", "18", "2018-01-13 00:02:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73878", "10", "2018-01-13 01:19:33", "72.14.199.117", "6");
INSERT INTO `wp_rg_form_view` VALUES("73879", "3", "2018-01-13 01:51:45", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73880", "9", "2018-01-13 01:51:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73881", "8", "2018-01-13 01:51:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73882", "15", "2018-01-13 01:51:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73883", "18", "2018-01-13 01:51:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73884", "15", "2018-01-13 02:15:58", "100.43.91.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("73885", "10", "2018-01-13 02:16:04", "100.43.91.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("73886", "15", "2018-01-13 03:05:53", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("73887", "10", "2018-01-13 03:47:13", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("73888", "3", "2018-01-13 03:49:07", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("73889", "9", "2018-01-13 03:49:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73890", "8", "2018-01-13 03:49:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73891", "18", "2018-01-13 03:49:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73892", "10", "2018-01-13 04:08:22", "40.77.167.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("73893", "3", "2018-01-13 04:18:13", "216.244.66.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("73894", "3", "2018-01-13 05:47:24", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73895", "9", "2018-01-13 05:47:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73896", "8", "2018-01-13 05:47:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73897", "10", "2018-01-13 05:47:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73898", "15", "2018-01-13 05:47:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73899", "18", "2018-01-13 05:47:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73900", "3", "2018-01-13 06:13:42", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("73901", "10", "2018-01-13 07:28:46", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("73902", "3", "2018-01-13 07:51:50", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73903", "9", "2018-01-13 07:51:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73904", "8", "2018-01-13 07:51:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73905", "15", "2018-01-13 07:51:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73906", "18", "2018-01-13 07:52:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73907", "3", "2018-01-13 08:09:03", "54.36.149.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("73908", "15", "2018-01-13 09:13:48", "100.43.91.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("73909", "10", "2018-01-13 09:24:58", "100.43.91.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("73910", "6", "2018-01-13 09:28:22", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("73911", "3", "2018-01-13 09:29:17", "216.244.66.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("73912", "9", "2018-01-13 09:37:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73913", "8", "2018-01-13 09:37:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73914", "18", "2018-01-13 09:37:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73915", "14", "2018-01-13 09:47:05", "142.234.203.166", "3");
INSERT INTO `wp_rg_form_view` VALUES("73916", "3", "2018-01-13 10:06:32", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("73917", "18", "2018-01-13 10:31:10", "46.105.98.166", "5");
INSERT INTO `wp_rg_form_view` VALUES("73918", "14", "2018-01-13 10:31:33", "46.105.98.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("73919", "3", "2018-01-13 11:26:11", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73920", "9", "2018-01-13 11:26:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73921", "8", "2018-01-13 11:26:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73922", "10", "2018-01-13 11:26:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73923", "15", "2018-01-13 11:26:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73924", "18", "2018-01-13 11:26:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73925", "3", "2018-01-13 12:39:22", "54.36.148.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("73926", "18", "2018-01-13 12:52:32", "207.46.13.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("73927", "3", "2018-01-13 13:02:55", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("73928", "9", "2018-01-13 13:07:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73929", "8", "2018-01-13 13:07:26", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("73930", "10", "2018-01-13 13:07:27", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("73931", "15", "2018-01-13 13:07:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73932", "18", "2018-01-13 13:07:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73933", "3", "2018-01-13 14:51:43", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73934", "9", "2018-01-13 14:51:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73935", "8", "2018-01-13 14:51:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73936", "10", "2018-01-13 14:51:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73937", "15", "2018-01-13 14:51:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73938", "18", "2018-01-13 14:51:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73939", "3", "2018-01-13 15:38:29", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("73940", "3", "2018-01-13 16:21:06", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("73941", "18", "2018-01-13 16:21:33", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("73942", "9", "2018-01-13 16:37:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73943", "8", "2018-01-13 16:37:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73944", "10", "2018-01-13 16:37:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73945", "15", "2018-01-13 16:37:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73946", "3", "2018-01-13 17:14:43", "128.177.10.232", "2");
INSERT INTO `wp_rg_form_view` VALUES("73947", "18", "2018-01-13 17:14:48", "128.177.10.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("73948", "3", "2018-01-13 18:21:44", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73949", "9", "2018-01-13 18:21:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73950", "8", "2018-01-13 18:21:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73951", "10", "2018-01-13 18:21:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73952", "15", "2018-01-13 18:21:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73953", "18", "2018-01-13 18:21:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73954", "3", "2018-01-13 19:21:55", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("73955", "3", "2018-01-13 20:04:24", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("73956", "9", "2018-01-13 20:16:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73957", "8", "2018-01-13 20:16:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73958", "10", "2018-01-13 20:16:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73959", "15", "2018-01-13 20:16:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73960", "18", "2018-01-13 20:16:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73961", "18", "2018-01-13 21:14:59", "154.20.28.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("73962", "18", "2018-01-13 22:19:05", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("73963", "3", "2018-01-13 22:22:09", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73964", "9", "2018-01-13 22:22:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73965", "8", "2018-01-13 22:22:11", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("73966", "10", "2018-01-13 22:22:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73967", "15", "2018-01-13 22:22:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73968", "10", "2018-01-13 23:34:47", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73969", "3", "2018-01-14 00:02:38", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73970", "9", "2018-01-14 00:02:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73971", "8", "2018-01-14 00:02:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73972", "10", "2018-01-14 00:02:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("73973", "15", "2018-01-14 00:02:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73974", "18", "2018-01-14 00:02:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73975", "3", "2018-01-14 01:33:23", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("73976", "10", "2018-01-14 01:39:44", "72.14.199.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("73977", "9", "2018-01-14 01:46:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73978", "8", "2018-01-14 01:46:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73979", "15", "2018-01-14 01:46:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73980", "18", "2018-01-14 01:46:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73981", "10", "2018-01-14 02:41:48", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("73982", "3", "2018-01-14 03:35:00", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("73983", "9", "2018-01-14 03:35:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73984", "8", "2018-01-14 03:35:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("73985", "10", "2018-01-14 03:35:02", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("73986", "15", "2018-01-14 03:35:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73987", "18", "2018-01-14 03:35:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73988", "14", "2018-01-14 04:35:23", "190.242.119.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("73989", "10", "2018-01-14 05:15:14", "40.77.167.175", "6");
INSERT INTO `wp_rg_form_view` VALUES("73990", "3", "2018-01-14 05:31:24", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("73991", "9", "2018-01-14 05:31:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73992", "8", "2018-01-14 05:31:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73993", "15", "2018-01-14 05:31:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73994", "18", "2018-01-14 05:31:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("73995", "18", "2018-01-14 06:44:18", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("73996", "3", "2018-01-14 07:20:19", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("73997", "9", "2018-01-14 07:20:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73998", "8", "2018-01-14 07:20:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("73999", "10", "2018-01-14 07:20:22", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74000", "15", "2018-01-14 07:20:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74001", "18", "2018-01-14 07:20:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74002", "3", "2018-01-14 08:12:30", "151.80.31.152", "31");
INSERT INTO `wp_rg_form_view` VALUES("74003", "9", "2018-01-14 08:57:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74004", "8", "2018-01-14 08:57:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74005", "10", "2018-01-14 08:57:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74006", "15", "2018-01-14 08:57:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74007", "18", "2018-01-14 08:57:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74008", "18", "2018-01-14 09:57:42", "151.80.31.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("74009", "3", "2018-01-14 10:12:30", "151.80.31.152", "30");
INSERT INTO `wp_rg_form_view` VALUES("74010", "9", "2018-01-14 10:48:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74011", "8", "2018-01-14 10:49:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74012", "10", "2018-01-14 10:49:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74013", "15", "2018-01-14 10:49:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74014", "18", "2018-01-14 10:49:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74015", "3", "2018-01-14 11:31:50", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("74016", "3", "2018-01-14 12:24:51", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("74017", "9", "2018-01-14 12:24:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74018", "8", "2018-01-14 12:24:52", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74019", "10", "2018-01-14 12:24:53", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74020", "15", "2018-01-14 12:24:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74021", "18", "2018-01-14 12:24:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74022", "8", "2018-01-14 13:30:15", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74023", "3", "2018-01-14 13:33:08", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74024", "3", "2018-01-14 14:04:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74025", "9", "2018-01-14 14:04:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74026", "8", "2018-01-14 14:04:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74027", "10", "2018-01-14 14:04:36", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74028", "15", "2018-01-14 14:04:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74029", "18", "2018-01-14 14:04:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74030", "18", "2018-01-14 15:16:31", "54.165.59.7", "6");
INSERT INTO `wp_rg_form_view` VALUES("74031", "3", "2018-01-14 15:40:37", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74032", "9", "2018-01-14 15:40:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74033", "8", "2018-01-14 15:40:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74034", "10", "2018-01-14 15:40:39", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74035", "15", "2018-01-14 15:40:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74036", "14", "2018-01-14 16:06:16", "189.120.0.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("74037", "3", "2018-01-14 16:11:28", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74038", "3", "2018-01-14 17:26:26", "52.37.180.245", "64");
INSERT INTO `wp_rg_form_view` VALUES("74039", "9", "2018-01-14 17:26:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74040", "8", "2018-01-14 17:26:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74041", "10", "2018-01-14 17:26:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74042", "15", "2018-01-14 17:26:31", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74043", "18", "2018-01-14 17:26:33", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("74044", "11", "2018-01-14 17:57:29", "46.229.168.70", "2");
INSERT INTO `wp_rg_form_view` VALUES("74045", "3", "2018-01-14 18:00:07", "46.229.168.65", "10");
INSERT INTO `wp_rg_form_view` VALUES("74046", "3", "2018-01-14 19:15:42", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74047", "9", "2018-01-14 19:15:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74048", "8", "2018-01-14 19:15:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74049", "10", "2018-01-14 19:15:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74050", "15", "2018-01-14 19:15:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74051", "18", "2018-01-14 19:15:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74052", "14", "2018-01-14 19:58:29", "179.218.7.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("74053", "3", "2018-01-14 21:01:15", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("74054", "9", "2018-01-14 21:01:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74055", "8", "2018-01-14 21:01:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74056", "10", "2018-01-14 21:01:18", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74057", "15", "2018-01-14 21:01:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74058", "18", "2018-01-14 21:01:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74059", "3", "2018-01-14 22:46:31", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74060", "9", "2018-01-14 22:46:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74061", "8", "2018-01-14 22:46:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74062", "10", "2018-01-14 22:46:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74063", "15", "2018-01-14 22:46:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74064", "18", "2018-01-14 22:46:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74065", "3", "2018-01-14 23:04:37", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("74066", "10", "2018-01-14 23:59:20", "54.36.149.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("74067", "3", "2018-01-15 00:08:44", "24.68.121.173", "30");
INSERT INTO `wp_rg_form_view` VALUES("74068", "9", "2018-01-15 00:51:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74069", "8", "2018-01-15 00:51:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74070", "10", "2018-01-15 00:51:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74071", "15", "2018-01-15 00:51:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74072", "18", "2018-01-15 00:51:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74073", "3", "2018-01-15 01:20:02", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74074", "8", "2018-01-15 01:20:30", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74075", "3", "2018-01-15 02:41:45", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74076", "9", "2018-01-15 02:41:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74077", "8", "2018-01-15 02:41:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74078", "10", "2018-01-15 02:41:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74079", "15", "2018-01-15 02:41:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74080", "18", "2018-01-15 02:41:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74081", "5", "2018-01-15 03:58:13", "77.75.76.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("74082", "3", "2018-01-15 04:24:17", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74083", "9", "2018-01-15 04:24:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74084", "8", "2018-01-15 04:24:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74085", "10", "2018-01-15 04:24:20", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74086", "15", "2018-01-15 04:24:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74087", "18", "2018-01-15 04:24:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74088", "14", "2018-01-15 05:30:11", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("74089", "3", "2018-01-15 06:17:02", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74090", "9", "2018-01-15 06:17:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74091", "8", "2018-01-15 06:17:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74092", "10", "2018-01-15 06:17:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74093", "15", "2018-01-15 06:17:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74094", "18", "2018-01-15 06:17:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74095", "14", "2018-01-15 06:32:16", "184.66.139.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("74096", "3", "2018-01-15 07:59:58", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("74097", "9", "2018-01-15 07:59:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74098", "3", "2018-01-15 08:00:00", "52.37.180.245", "55");
INSERT INTO `wp_rg_form_view` VALUES("74099", "8", "2018-01-15 08:00:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74100", "10", "2018-01-15 08:00:01", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74101", "15", "2018-01-15 08:00:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74102", "18", "2018-01-15 08:00:07", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74103", "9", "2018-01-15 08:00:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74104", "14", "2018-01-15 09:35:16", "54.85.182.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("74105", "10", "2018-01-15 09:36:08", "66.249.79.137", "6");
INSERT INTO `wp_rg_form_view` VALUES("74106", "3", "2018-01-15 09:41:20", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74107", "9", "2018-01-15 09:41:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74108", "8", "2018-01-15 09:41:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74109", "15", "2018-01-15 09:41:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74110", "18", "2018-01-15 09:41:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74111", "3", "2018-01-15 10:14:22", "185.86.77.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("74112", "14", "2018-01-15 10:15:49", "185.86.77.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74113", "10", "2018-01-15 10:39:47", "207.46.13.128", "5");
INSERT INTO `wp_rg_form_view` VALUES("74114", "9", "2018-01-15 10:41:16", "207.46.13.128", "2");
INSERT INTO `wp_rg_form_view` VALUES("74115", "8", "2018-01-15 10:49:31", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74116", "10", "2018-01-15 11:25:58", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("74117", "3", "2018-01-15 11:26:30", "216.244.66.195", "30");
INSERT INTO `wp_rg_form_view` VALUES("74118", "14", "2018-01-15 11:26:32", "201.218.97.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("74119", "9", "2018-01-15 11:26:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74120", "8", "2018-01-15 11:26:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74121", "15", "2018-01-15 11:26:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74122", "18", "2018-01-15 11:26:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74123", "3", "2018-01-15 13:10:48", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("74124", "9", "2018-01-15 13:10:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74125", "8", "2018-01-15 13:10:50", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74126", "10", "2018-01-15 13:10:51", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74127", "15", "2018-01-15 13:10:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74128", "18", "2018-01-15 13:10:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74129", "3", "2018-01-15 14:22:48", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("74130", "18", "2018-01-15 14:35:16", "66.249.79.135", "4");
INSERT INTO `wp_rg_form_view` VALUES("74131", "9", "2018-01-15 14:56:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74132", "8", "2018-01-15 14:56:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74133", "10", "2018-01-15 14:56:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74134", "15", "2018-01-15 14:56:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74135", "3", "2018-01-15 15:53:35", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74136", "3", "2018-01-15 16:24:26", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("74137", "9", "2018-01-15 16:57:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74138", "8", "2018-01-15 16:57:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74139", "10", "2018-01-15 16:57:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74140", "15", "2018-01-15 16:57:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74141", "18", "2018-01-15 16:57:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74142", "18", "2018-01-15 17:47:07", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("74143", "18", "2018-01-15 18:01:30", "154.20.28.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("74144", "3", "2018-01-15 18:06:41", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74145", "3", "2018-01-15 19:01:25", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74146", "9", "2018-01-15 19:01:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74147", "8", "2018-01-15 19:01:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74148", "10", "2018-01-15 19:01:27", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74149", "15", "2018-01-15 19:01:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74150", "18", "2018-01-15 19:01:34", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74151", "10", "2018-01-15 20:07:29", "72.14.199.73", "6");
INSERT INTO `wp_rg_form_view` VALUES("74152", "18", "2018-01-15 20:10:34", "24.108.184.241", "2");
INSERT INTO `wp_rg_form_view` VALUES("74153", "3", "2018-01-15 20:46:11", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74154", "9", "2018-01-15 20:46:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74155", "8", "2018-01-15 20:46:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74156", "15", "2018-01-15 20:46:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74157", "18", "2018-01-15 21:19:53", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74158", "14", "2018-01-15 21:27:12", "154.20.28.177", "1");
INSERT INTO `wp_rg_form_view` VALUES("74159", "3", "2018-01-15 21:29:41", "184.69.27.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("74160", "10", "2018-01-15 21:45:19", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74161", "10", "2018-01-15 22:05:09", "216.244.66.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("74162", "3", "2018-01-15 22:05:55", "216.244.66.247", "61");
INSERT INTO `wp_rg_form_view` VALUES("74163", "9", "2018-01-15 22:06:18", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74164", "8", "2018-01-15 22:06:18", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("74165", "15", "2018-01-15 22:06:22", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74166", "18", "2018-01-15 22:06:24", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74167", "14", "2018-01-15 22:07:36", "104.144.242.142", "5");
INSERT INTO `wp_rg_form_view` VALUES("74168", "18", "2018-01-15 23:03:21", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74169", "3", "2018-01-15 23:07:17", "88.198.54.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("74170", "15", "2018-01-15 23:15:19", "207.46.13.105", "1");
INSERT INTO `wp_rg_form_view` VALUES("74171", "10", "2018-01-15 23:49:32", "207.46.13.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("74172", "18", "2018-01-16 00:02:46", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("74173", "3", "2018-01-16 00:14:58", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("74174", "9", "2018-01-16 00:14:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74175", "8", "2018-01-16 00:15:00", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74176", "10", "2018-01-16 00:15:00", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74177", "15", "2018-01-16 00:15:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74178", "3", "2018-01-16 01:26:32", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("74179", "18", "2018-01-16 01:33:25", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74180", "9", "2018-01-16 01:55:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74181", "8", "2018-01-16 01:55:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74182", "10", "2018-01-16 01:55:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74183", "15", "2018-01-16 01:56:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74184", "3", "2018-01-16 02:19:52", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74185", "14", "2018-01-16 02:39:48", "108.180.146.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("74186", "3", "2018-01-16 03:36:45", "216.244.66.247", "30");
INSERT INTO `wp_rg_form_view` VALUES("74187", "9", "2018-01-16 03:41:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74188", "8", "2018-01-16 03:41:28", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74189", "10", "2018-01-16 03:41:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74190", "15", "2018-01-16 03:41:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74191", "18", "2018-01-16 03:41:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74192", "18", "2018-01-16 04:10:01", "24.108.23.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("74193", "3", "2018-01-16 04:12:05", "75.154.241.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("74194", "10", "2018-01-16 04:22:45", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74195", "18", "2018-01-16 05:09:43", "77.75.76.160", "3");
INSERT INTO `wp_rg_form_view` VALUES("74196", "3", "2018-01-16 05:13:10", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("74197", "9", "2018-01-16 05:32:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74198", "8", "2018-01-16 05:32:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74199", "10", "2018-01-16 05:32:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74200", "15", "2018-01-16 05:32:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74201", "18", "2018-01-16 06:26:31", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("74202", "18", "2018-01-16 07:09:39", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74203", "14", "2018-01-16 07:14:01", "184.66.145.43", "2");
INSERT INTO `wp_rg_form_view` VALUES("74204", "3", "2018-01-16 07:14:29", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("74205", "9", "2018-01-16 07:27:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74206", "8", "2018-01-16 07:27:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74207", "10", "2018-01-16 07:27:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74208", "15", "2018-01-16 07:27:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74209", "3", "2018-01-16 08:37:10", "216.244.66.195", "8");
INSERT INTO `wp_rg_form_view` VALUES("74210", "10", "2018-01-16 08:38:04", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("74211", "14", "2018-01-16 09:09:12", "52.163.62.13", "3");
INSERT INTO `wp_rg_form_view` VALUES("74212", "3", "2018-01-16 09:15:16", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74213", "9", "2018-01-16 09:15:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74214", "8", "2018-01-16 09:15:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74215", "10", "2018-01-16 09:15:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74216", "15", "2018-01-16 09:15:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74217", "18", "2018-01-16 09:15:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74218", "3", "2018-01-16 10:49:30", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74219", "9", "2018-01-16 10:49:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74220", "8", "2018-01-16 10:49:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74221", "10", "2018-01-16 10:49:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74222", "15", "2018-01-16 10:49:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74223", "18", "2018-01-16 10:49:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74224", "18", "2018-01-16 11:04:40", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74225", "3", "2018-01-16 11:30:50", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74226", "6", "2018-01-16 11:31:39", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74227", "3", "2018-01-16 12:28:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74228", "9", "2018-01-16 12:28:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74229", "8", "2018-01-16 12:28:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74230", "10", "2018-01-16 12:28:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74231", "15", "2018-01-16 12:28:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74232", "18", "2018-01-16 12:28:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74233", "18", "2018-01-16 13:22:44", "54.163.39.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("74234", "3", "2018-01-16 13:29:12", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74235", "14", "2018-01-16 14:05:03", "92.222.1.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("74236", "3", "2018-01-16 14:05:41", "52.37.180.245", "29");
INSERT INTO `wp_rg_form_view` VALUES("74237", "9", "2018-01-16 14:05:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74238", "8", "2018-01-16 14:05:43", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74239", "10", "2018-01-16 14:05:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74240", "15", "2018-01-16 14:05:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74241", "18", "2018-01-16 14:05:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74242", "14", "2018-01-16 15:18:14", "89.204.135.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("74243", "18", "2018-01-16 15:23:57", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74244", "3", "2018-01-16 15:25:31", "89.204.135.50", "31");
INSERT INTO `wp_rg_form_view` VALUES("74245", "9", "2018-01-16 15:43:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74246", "8", "2018-01-16 15:43:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74247", "10", "2018-01-16 15:43:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74248", "15", "2018-01-16 15:43:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74249", "3", "2018-01-16 16:30:53", "207.46.13.98", "16");
INSERT INTO `wp_rg_form_view` VALUES("74250", "15", "2018-01-16 16:30:54", "40.77.167.76", "2");
INSERT INTO `wp_rg_form_view` VALUES("74251", "18", "2018-01-16 16:32:11", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74252", "9", "2018-01-16 16:33:01", "207.46.13.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("74253", "6", "2018-01-16 16:33:20", "40.77.167.76", "1");
INSERT INTO `wp_rg_form_view` VALUES("74254", "11", "2018-01-16 16:33:26", "207.46.13.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("74255", "10", "2018-01-16 16:33:51", "207.46.13.48", "5");
INSERT INTO `wp_rg_form_view` VALUES("74256", "8", "2018-01-16 16:35:50", "207.46.13.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("74257", "3", "2018-01-16 17:16:34", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("74258", "9", "2018-01-16 17:32:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74259", "8", "2018-01-16 17:32:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74260", "10", "2018-01-16 17:32:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74261", "15", "2018-01-16 17:32:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74262", "18", "2018-01-16 17:32:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74263", "18", "2018-01-16 18:00:08", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74264", "3", "2018-01-16 18:03:15", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74265", "14", "2018-01-16 18:16:00", "199.60.104.18", "1");
INSERT INTO `wp_rg_form_view` VALUES("74266", "3", "2018-01-16 19:15:42", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("74267", "9", "2018-01-16 19:15:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74268", "8", "2018-01-16 19:15:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74269", "10", "2018-01-16 19:15:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74270", "15", "2018-01-16 19:15:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74271", "18", "2018-01-16 19:15:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74272", "14", "2018-01-16 19:41:51", "96.54.237.166", "2");
INSERT INTO `wp_rg_form_view` VALUES("74273", "3", "2018-01-16 20:44:57", "88.99.2.203", "11");
INSERT INTO `wp_rg_form_view` VALUES("74274", "18", "2018-01-16 21:03:21", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("74275", "3", "2018-01-16 21:05:13", "68.180.228.176", "31");
INSERT INTO `wp_rg_form_view` VALUES("74276", "9", "2018-01-16 21:12:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74277", "8", "2018-01-16 21:12:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74278", "10", "2018-01-16 21:12:49", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74279", "15", "2018-01-16 21:12:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74280", "18", "2018-01-16 22:10:06", "96.54.232.157", "3");
INSERT INTO `wp_rg_form_view` VALUES("74281", "3", "2018-01-16 22:43:53", "184.69.99.230", "39");
INSERT INTO `wp_rg_form_view` VALUES("74282", "9", "2018-01-16 22:48:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74283", "8", "2018-01-16 22:48:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74284", "10", "2018-01-16 22:48:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74285", "15", "2018-01-16 22:48:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74286", "14", "2018-01-16 23:53:27", "154.5.182.82", "1");
INSERT INTO `wp_rg_form_view` VALUES("74287", "18", "2018-01-17 00:19:40", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("74288", "3", "2018-01-17 00:28:34", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74289", "9", "2018-01-17 00:28:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74290", "8", "2018-01-17 00:28:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74291", "10", "2018-01-17 00:28:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74292", "15", "2018-01-17 00:28:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74293", "18", "2018-01-17 01:03:26", "77.75.78.167", "3");
INSERT INTO `wp_rg_form_view` VALUES("74294", "14", "2018-01-17 01:07:00", "182.148.75.61", "5");
INSERT INTO `wp_rg_form_view` VALUES("74295", "3", "2018-01-17 01:07:05", "182.148.75.61", "6");
INSERT INTO `wp_rg_form_view` VALUES("74296", "10", "2018-01-17 01:16:13", "154.5.182.60", "4");
INSERT INTO `wp_rg_form_view` VALUES("74297", "3", "2018-01-17 02:24:51", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("74298", "9", "2018-01-17 02:24:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74299", "8", "2018-01-17 02:24:52", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74300", "10", "2018-01-17 02:24:53", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74301", "15", "2018-01-17 02:24:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74302", "18", "2018-01-17 02:24:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74303", "3", "2018-01-17 03:34:25", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74304", "18", "2018-01-17 03:40:35", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74305", "3", "2018-01-17 04:11:03", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74306", "9", "2018-01-17 04:11:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74307", "8", "2018-01-17 04:11:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74308", "10", "2018-01-17 04:11:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74309", "15", "2018-01-17 04:11:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74310", "18", "2018-01-17 04:11:10", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74311", "18", "2018-01-17 05:43:25", "54.36.149.0", "3");
INSERT INTO `wp_rg_form_view` VALUES("74312", "3", "2018-01-17 05:55:05", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("74313", "9", "2018-01-17 05:55:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74314", "8", "2018-01-17 05:55:07", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74315", "10", "2018-01-17 05:55:07", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74316", "15", "2018-01-17 05:55:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74317", "18", "2018-01-17 06:13:40", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74318", "10", "2018-01-17 06:24:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74319", "3", "2018-01-17 06:51:40", "54.36.148.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("74320", "3", "2018-01-17 07:47:43", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74321", "9", "2018-01-17 07:47:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74322", "8", "2018-01-17 07:47:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74323", "10", "2018-01-17 07:47:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74324", "15", "2018-01-17 07:47:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74325", "18", "2018-01-17 07:47:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74326", "3", "2018-01-17 08:52:30", "45.55.224.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("74327", "18", "2018-01-17 08:52:41", "45.55.224.200", "13");
INSERT INTO `wp_rg_form_view` VALUES("74328", "14", "2018-01-17 08:57:25", "45.55.224.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("74329", "6", "2018-01-17 08:58:31", "45.55.224.200", "1");
INSERT INTO `wp_rg_form_view` VALUES("74330", "18", "2018-01-17 09:01:30", "45.55.224.200", "63");
INSERT INTO `wp_rg_form_view` VALUES("74331", "10", "2018-01-17 09:01:58", "45.55.224.200", "10");
INSERT INTO `wp_rg_form_view` VALUES("74332", "3", "2018-01-17 09:02:57", "45.55.224.200", "61");
INSERT INTO `wp_rg_form_view` VALUES("74333", "9", "2018-01-17 09:06:45", "45.55.224.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("74334", "15", "2018-01-17 09:09:15", "45.55.224.200", "2");
INSERT INTO `wp_rg_form_view` VALUES("74335", "8", "2018-01-17 09:27:31", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74336", "18", "2018-01-17 10:00:18", "45.55.224.200", "38");
INSERT INTO `wp_rg_form_view` VALUES("74337", "10", "2018-01-17 10:49:02", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("74338", "3", "2018-01-17 10:53:11", "109.102.111.84", "6");
INSERT INTO `wp_rg_form_view` VALUES("74339", "18", "2018-01-17 11:00:17", "158.46.159.255", "7");
INSERT INTO `wp_rg_form_view` VALUES("74340", "3", "2018-01-17 11:03:06", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("74341", "9", "2018-01-17 11:17:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74342", "8", "2018-01-17 11:17:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74343", "10", "2018-01-17 11:17:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74344", "15", "2018-01-17 11:17:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74345", "3", "2018-01-17 12:57:11", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74346", "9", "2018-01-17 12:57:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74347", "8", "2018-01-17 12:57:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74348", "10", "2018-01-17 12:57:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74349", "15", "2018-01-17 12:57:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74350", "18", "2018-01-17 12:57:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74351", "10", "2018-01-17 13:31:20", "54.36.148.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("74352", "8", "2018-01-17 13:42:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74353", "3", "2018-01-17 14:42:42", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74354", "9", "2018-01-17 14:42:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74355", "8", "2018-01-17 14:42:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74356", "10", "2018-01-17 14:42:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74357", "15", "2018-01-17 14:42:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74358", "18", "2018-01-17 14:42:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74359", "18", "2018-01-17 15:28:54", "194.187.170.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("74360", "10", "2018-01-17 15:55:19", "194.187.170.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("74361", "10", "2018-01-17 16:09:46", "194.187.170.133", "8");
INSERT INTO `wp_rg_form_view` VALUES("74362", "3", "2018-01-17 16:27:56", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74363", "9", "2018-01-17 16:27:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74364", "8", "2018-01-17 16:27:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74365", "15", "2018-01-17 16:28:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74366", "18", "2018-01-17 16:28:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74367", "14", "2018-01-17 16:56:19", "154.16.206.13", "3");
INSERT INTO `wp_rg_form_view` VALUES("74368", "3", "2018-01-17 17:17:16", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74369", "18", "2018-01-17 17:22:17", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74370", "10", "2018-01-17 17:26:29", "194.187.170.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("74371", "3", "2018-01-17 18:23:24", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74372", "9", "2018-01-17 18:23:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74373", "8", "2018-01-17 18:23:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74374", "10", "2018-01-17 18:23:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74375", "15", "2018-01-17 18:23:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74376", "18", "2018-01-17 18:23:32", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74377", "3", "2018-01-17 19:33:01", "24.69.158.97", "5");
INSERT INTO `wp_rg_form_view` VALUES("74378", "18", "2018-01-17 19:38:41", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74379", "3", "2018-01-17 20:11:40", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74380", "9", "2018-01-17 20:11:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74381", "8", "2018-01-17 20:11:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74382", "10", "2018-01-17 20:11:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74383", "15", "2018-01-17 20:11:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74384", "18", "2018-01-17 20:11:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74385", "18", "2018-01-17 21:11:13", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74386", "15", "2018-01-17 21:44:48", "207.46.13.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("74387", "3", "2018-01-17 21:52:31", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("74388", "9", "2018-01-17 21:52:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74389", "8", "2018-01-17 21:52:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74390", "10", "2018-01-17 21:52:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74391", "18", "2018-01-17 22:41:08", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74392", "3", "2018-01-17 22:43:30", "88.99.2.203", "10");
INSERT INTO `wp_rg_form_view` VALUES("74393", "3", "2018-01-17 23:36:13", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74394", "9", "2018-01-17 23:36:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74395", "8", "2018-01-17 23:36:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74396", "10", "2018-01-17 23:36:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74397", "15", "2018-01-17 23:36:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74398", "18", "2018-01-17 23:36:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74399", "14", "2018-01-17 23:58:02", "70.67.230.197", "1");
INSERT INTO `wp_rg_form_view` VALUES("74400", "8", "2018-01-18 00:04:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74401", "3", "2018-01-18 00:04:32", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74402", "18", "2018-01-18 00:11:28", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74403", "3", "2018-01-18 01:21:31", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("74404", "9", "2018-01-18 01:21:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74405", "8", "2018-01-18 01:21:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74406", "10", "2018-01-18 01:21:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74407", "15", "2018-01-18 01:21:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74408", "18", "2018-01-18 01:21:38", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74409", "18", "2018-01-18 02:28:41", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74410", "3", "2018-01-18 02:56:40", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74411", "9", "2018-01-18 02:56:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74412", "8", "2018-01-18 02:56:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74413", "10", "2018-01-18 02:56:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74414", "15", "2018-01-18 02:56:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74415", "3", "2018-01-18 03:06:07", "209.52.88.38", "2");
INSERT INTO `wp_rg_form_view` VALUES("74416", "14", "2018-01-18 04:15:49", "212.237.56.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("74417", "3", "2018-01-18 04:41:20", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74418", "9", "2018-01-18 04:41:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74419", "8", "2018-01-18 04:41:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74420", "10", "2018-01-18 04:41:23", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74421", "15", "2018-01-18 04:41:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74422", "18", "2018-01-18 04:41:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74423", "3", "2018-01-18 05:37:55", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("74424", "8", "2018-01-18 05:38:19", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74425", "18", "2018-01-18 05:39:03", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74426", "14", "2018-01-18 05:52:48", "184.66.145.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("74427", "3", "2018-01-18 06:22:40", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("74428", "9", "2018-01-18 06:22:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74429", "8", "2018-01-18 06:22:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74430", "10", "2018-01-18 06:22:43", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74431", "15", "2018-01-18 06:22:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74432", "18", "2018-01-18 06:22:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74433", "8", "2018-01-18 07:13:09", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74434", "3", "2018-01-18 07:13:32", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74435", "14", "2018-01-18 07:26:40", "62.210.80.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("74436", "18", "2018-01-18 07:31:50", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74437", "3", "2018-01-18 08:06:21", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74438", "9", "2018-01-18 08:06:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74439", "8", "2018-01-18 08:06:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74440", "10", "2018-01-18 08:06:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74441", "15", "2018-01-18 08:06:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74442", "18", "2018-01-18 08:06:28", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74443", "3", "2018-01-18 09:09:14", "154.20.40.44", "9");
INSERT INTO `wp_rg_form_view` VALUES("74444", "18", "2018-01-18 09:17:09", "154.20.40.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("74445", "18", "2018-01-18 10:00:34", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("74446", "3", "2018-01-18 10:11:21", "52.37.180.245", "63");
INSERT INTO `wp_rg_form_view` VALUES("74447", "9", "2018-01-18 10:11:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74448", "8", "2018-01-18 10:11:23", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74449", "10", "2018-01-18 10:11:23", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74450", "15", "2018-01-18 10:11:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74451", "10", "2018-01-18 11:15:23", "72.14.199.119", "7");
INSERT INTO `wp_rg_form_view` VALUES("74452", "3", "2018-01-18 11:50:01", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("74453", "9", "2018-01-18 11:54:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74454", "8", "2018-01-18 11:54:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74455", "15", "2018-01-18 11:54:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74456", "18", "2018-01-18 11:54:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74457", "18", "2018-01-18 12:04:50", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("74458", "3", "2018-01-18 12:30:05", "194.187.170.101", "32");
INSERT INTO `wp_rg_form_view` VALUES("74459", "9", "2018-01-18 12:43:10", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74460", "8", "2018-01-18 12:43:11", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74461", "10", "2018-01-18 12:43:12", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("74462", "15", "2018-01-18 12:43:14", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74463", "3", "2018-01-18 13:03:04", "194.187.170.101", "32");
INSERT INTO `wp_rg_form_view` VALUES("74464", "10", "2018-01-18 13:07:14", "194.187.170.101", "7");
INSERT INTO `wp_rg_form_view` VALUES("74465", "9", "2018-01-18 13:42:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74466", "8", "2018-01-18 13:42:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74467", "15", "2018-01-18 13:42:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74468", "18", "2018-01-18 13:42:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74469", "18", "2018-01-18 14:07:32", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74470", "10", "2018-01-18 14:18:39", "194.187.170.101", "6");
INSERT INTO `wp_rg_form_view` VALUES("74471", "3", "2018-01-18 14:18:49", "194.187.170.101", "32");
INSERT INTO `wp_rg_form_view` VALUES("74472", "9", "2018-01-18 14:46:25", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74473", "8", "2018-01-18 14:46:26", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74474", "15", "2018-01-18 14:46:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74475", "10", "2018-01-18 15:01:00", "100.43.91.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("74476", "3", "2018-01-18 15:32:50", "52.37.180.245", "37");
INSERT INTO `wp_rg_form_view` VALUES("74477", "9", "2018-01-18 15:32:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74478", "8", "2018-01-18 15:32:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74479", "15", "2018-01-18 15:32:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74480", "18", "2018-01-18 15:32:58", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74481", "18", "2018-01-18 16:22:52", "154.20.28.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("74482", "18", "2018-01-18 17:02:41", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("74483", "3", "2018-01-18 17:22:57", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("74484", "9", "2018-01-18 17:22:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74485", "8", "2018-01-18 17:22:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74486", "10", "2018-01-18 17:22:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74487", "15", "2018-01-18 17:23:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74488", "3", "2018-01-18 18:20:15", "220.181.108.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("74489", "18", "2018-01-18 18:41:23", "24.68.205.68", "2");
INSERT INTO `wp_rg_form_view` VALUES("74490", "10", "2018-01-18 18:56:39", "54.36.148.178", "1");
INSERT INTO `wp_rg_form_view` VALUES("74491", "3", "2018-01-18 19:08:35", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74492", "9", "2018-01-18 19:08:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74493", "8", "2018-01-18 19:08:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74494", "10", "2018-01-18 19:08:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74495", "15", "2018-01-18 19:08:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74496", "18", "2018-01-18 19:08:42", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74497", "18", "2018-01-18 20:05:33", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74498", "3", "2018-01-18 20:06:27", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("74499", "9", "2018-01-18 20:53:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74500", "8", "2018-01-18 20:53:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74501", "10", "2018-01-18 20:53:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74502", "15", "2018-01-18 20:53:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74503", "18", "2018-01-18 21:42:21", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74504", "3", "2018-01-18 21:48:20", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("74505", "18", "2018-01-18 22:00:46", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("74506", "10", "2018-01-18 22:13:25", "199.16.157.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("74507", "3", "2018-01-18 22:36:11", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74508", "9", "2018-01-18 22:36:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74509", "8", "2018-01-18 22:36:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74510", "15", "2018-01-18 22:36:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74511", "3", "2018-01-18 23:17:52", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("74512", "14", "2018-01-18 23:29:42", "205.250.182.202", "2");
INSERT INTO `wp_rg_form_view` VALUES("74513", "18", "2018-01-19 00:01:11", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("74514", "3", "2018-01-19 00:12:13", "24.69.17.34", "33");
INSERT INTO `wp_rg_form_view` VALUES("74515", "10", "2018-01-19 00:21:52", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("74516", "9", "2018-01-19 00:25:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74517", "8", "2018-01-19 00:26:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74518", "15", "2018-01-19 00:26:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74519", "10", "2018-01-19 01:03:50", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74520", "3", "2018-01-19 01:04:21", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("74521", "8", "2018-01-19 01:34:34", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("74522", "18", "2018-01-19 01:34:35", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("74523", "3", "2018-01-19 02:01:31", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("74524", "9", "2018-01-19 02:17:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74525", "8", "2018-01-19 02:17:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74526", "10", "2018-01-19 02:17:55", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74527", "15", "2018-01-19 02:17:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74528", "18", "2018-01-19 02:18:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74529", "3", "2018-01-19 03:11:46", "88.99.2.203", "9");
INSERT INTO `wp_rg_form_view` VALUES("74530", "18", "2018-01-19 04:06:26", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74531", "3", "2018-01-19 04:08:45", "52.37.180.245", "44");
INSERT INTO `wp_rg_form_view` VALUES("74532", "9", "2018-01-19 04:08:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74533", "8", "2018-01-19 04:08:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74534", "10", "2018-01-19 04:08:47", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74535", "15", "2018-01-19 04:08:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74536", "14", "2018-01-19 04:19:49", "154.20.90.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("74537", "10", "2018-01-19 05:11:25", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("74538", "3", "2018-01-19 05:12:07", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("74539", "9", "2018-01-19 05:12:37", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74540", "8", "2018-01-19 05:12:38", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74541", "15", "2018-01-19 05:12:41", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74542", "18", "2018-01-19 05:12:43", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("74543", "3", "2018-01-19 06:03:05", "52.37.180.245", "42");
INSERT INTO `wp_rg_form_view` VALUES("74544", "9", "2018-01-19 06:03:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74545", "8", "2018-01-19 06:03:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74546", "10", "2018-01-19 06:03:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74547", "15", "2018-01-19 06:03:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74548", "18", "2018-01-19 06:03:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74549", "3", "2018-01-19 07:46:46", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74550", "9", "2018-01-19 07:46:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74551", "8", "2018-01-19 07:46:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74552", "10", "2018-01-19 07:46:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74553", "15", "2018-01-19 07:46:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74554", "18", "2018-01-19 07:46:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74555", "18", "2018-01-19 08:27:46", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74556", "3", "2018-01-19 08:28:50", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74557", "15", "2018-01-19 08:39:11", "54.36.148.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("74558", "3", "2018-01-19 09:31:19", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("74559", "9", "2018-01-19 09:31:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74560", "8", "2018-01-19 09:31:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74561", "10", "2018-01-19 09:31:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74562", "15", "2018-01-19 09:31:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74563", "18", "2018-01-19 09:31:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74564", "6", "2018-01-19 09:31:34", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74565", "18", "2018-01-19 10:03:26", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74566", "3", "2018-01-19 10:32:02", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74567", "3", "2018-01-19 11:05:13", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("74568", "9", "2018-01-19 11:08:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74569", "8", "2018-01-19 11:08:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74570", "10", "2018-01-19 11:08:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74571", "15", "2018-01-19 11:08:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74572", "18", "2018-01-19 11:08:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74573", "3", "2018-01-19 12:07:55", "216.244.66.231", "33");
INSERT INTO `wp_rg_form_view` VALUES("74574", "11", "2018-01-19 12:25:57", "77.75.76.172", "1");
INSERT INTO `wp_rg_form_view` VALUES("74575", "8", "2018-01-19 12:35:32", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("74576", "10", "2018-01-19 12:36:59", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("74577", "9", "2018-01-19 12:47:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74578", "15", "2018-01-19 12:47:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74579", "18", "2018-01-19 12:47:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74580", "14", "2018-01-19 13:14:33", "77.75.79.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("74581", "10", "2018-01-19 14:00:28", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("74582", "3", "2018-01-19 14:11:49", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("74583", "8", "2018-01-19 14:37:23", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("74584", "9", "2018-01-19 14:39:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74585", "15", "2018-01-19 14:39:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74586", "18", "2018-01-19 14:39:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74587", "10", "2018-01-19 15:29:15", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("74588", "3", "2018-01-19 15:58:57", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74589", "3", "2018-01-19 16:31:59", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("74590", "9", "2018-01-19 16:32:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74591", "8", "2018-01-19 16:32:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74592", "10", "2018-01-19 16:32:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74593", "15", "2018-01-19 16:32:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74594", "18", "2018-01-19 16:32:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74595", "14", "2018-01-19 17:05:45", "54.36.149.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("74596", "10", "2018-01-19 17:26:53", "54.36.149.8", "2");
INSERT INTO `wp_rg_form_view` VALUES("74597", "3", "2018-01-19 17:27:41", "80.241.214.124", "5");
INSERT INTO `wp_rg_form_view` VALUES("74598", "3", "2018-01-19 18:23:03", "52.37.180.245", "58");
INSERT INTO `wp_rg_form_view` VALUES("74599", "9", "2018-01-19 18:23:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74600", "8", "2018-01-19 18:23:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74601", "10", "2018-01-19 18:23:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74602", "15", "2018-01-19 18:23:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74603", "18", "2018-01-19 18:23:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74604", "11", "2018-01-19 18:58:12", "46.229.168.80", "3");
INSERT INTO `wp_rg_form_view` VALUES("74605", "3", "2018-01-19 19:00:57", "46.229.168.67", "19");
INSERT INTO `wp_rg_form_view` VALUES("74606", "18", "2018-01-19 19:17:34", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74607", "14", "2018-01-19 19:38:15", "94.199.151.22", "1");
INSERT INTO `wp_rg_form_view` VALUES("74608", "3", "2018-01-19 20:16:46", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74609", "9", "2018-01-19 20:17:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74610", "8", "2018-01-19 20:17:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74611", "10", "2018-01-19 20:17:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74612", "15", "2018-01-19 20:17:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74613", "18", "2018-01-19 20:17:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74614", "3", "2018-01-19 21:03:14", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("74615", "18", "2018-01-19 21:25:58", "66.183.230.246", "3");
INSERT INTO `wp_rg_form_view` VALUES("74616", "9", "2018-01-19 21:57:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74617", "8", "2018-01-19 21:57:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74618", "10", "2018-01-19 21:57:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74619", "15", "2018-01-19 21:58:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74620", "3", "2018-01-19 22:29:44", "204.12.226.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("74621", "18", "2018-01-19 22:48:13", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74622", "3", "2018-01-19 23:42:49", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74623", "9", "2018-01-19 23:42:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74624", "8", "2018-01-19 23:42:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74625", "10", "2018-01-19 23:42:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74626", "15", "2018-01-19 23:42:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74627", "18", "2018-01-19 23:42:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74628", "3", "2018-01-20 00:10:12", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74629", "9", "2018-01-20 00:12:52", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74630", "18", "2018-01-20 00:40:07", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74631", "3", "2018-01-20 01:22:43", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74632", "9", "2018-01-20 01:22:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74633", "8", "2018-01-20 01:22:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74634", "10", "2018-01-20 01:22:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74635", "15", "2018-01-20 01:22:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74636", "18", "2018-01-20 01:22:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74637", "3", "2018-01-20 02:08:51", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("74638", "9", "2018-01-20 02:10:21", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74639", "8", "2018-01-20 02:58:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74640", "10", "2018-01-20 02:58:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74641", "15", "2018-01-20 02:58:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74642", "18", "2018-01-20 02:58:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74643", "3", "2018-01-20 03:07:05", "209.52.88.203", "3");
INSERT INTO `wp_rg_form_view` VALUES("74644", "18", "2018-01-20 03:47:45", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74645", "3", "2018-01-20 04:24:37", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("74646", "9", "2018-01-20 04:51:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74647", "8", "2018-01-20 04:51:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74648", "10", "2018-01-20 04:51:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74649", "15", "2018-01-20 04:51:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74650", "18", "2018-01-20 04:51:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74651", "11", "2018-01-20 05:19:02", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("74652", "10", "2018-01-20 05:38:33", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74653", "3", "2018-01-20 05:43:07", "220.181.108.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("74654", "18", "2018-01-20 05:54:32", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74655", "3", "2018-01-20 06:09:40", "54.36.148.234", "34");
INSERT INTO `wp_rg_form_view` VALUES("74656", "10", "2018-01-20 06:34:03", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("74657", "9", "2018-01-20 06:38:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74658", "8", "2018-01-20 06:38:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74659", "15", "2018-01-20 06:38:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74660", "18", "2018-01-20 06:38:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74661", "3", "2018-01-20 07:06:59", "154.20.40.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("74662", "18", "2018-01-20 07:54:43", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74663", "3", "2018-01-20 08:24:57", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("74664", "8", "2018-01-20 08:34:20", "194.187.170.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("74665", "10", "2018-01-20 08:36:08", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("74666", "9", "2018-01-20 08:42:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74667", "15", "2018-01-20 08:42:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74668", "18", "2018-01-20 08:42:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74669", "3", "2018-01-20 10:12:16", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("74670", "9", "2018-01-20 10:40:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74671", "8", "2018-01-20 10:40:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74672", "10", "2018-01-20 10:40:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74673", "15", "2018-01-20 10:40:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74674", "18", "2018-01-20 10:40:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74675", "3", "2018-01-20 11:25:19", "40.77.167.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("74676", "3", "2018-01-20 12:02:45", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("74677", "9", "2018-01-20 12:42:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74678", "8", "2018-01-20 12:42:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74679", "10", "2018-01-20 12:42:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74680", "15", "2018-01-20 12:42:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74681", "18", "2018-01-20 12:42:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74682", "3", "2018-01-20 14:05:58", "216.244.66.247", "41");
INSERT INTO `wp_rg_form_view` VALUES("74683", "9", "2018-01-20 14:30:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74684", "8", "2018-01-20 14:30:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74685", "10", "2018-01-20 14:30:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74686", "15", "2018-01-20 14:30:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74687", "18", "2018-01-20 14:31:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74688", "3", "2018-01-20 15:03:26", "51.255.71.114", "2");
INSERT INTO `wp_rg_form_view` VALUES("74689", "10", "2018-01-20 15:26:11", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("74690", "3", "2018-01-20 16:08:41", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74691", "9", "2018-01-20 16:08:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74692", "8", "2018-01-20 16:08:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74693", "10", "2018-01-20 16:08:43", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74694", "15", "2018-01-20 16:08:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74695", "18", "2018-01-20 16:08:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74696", "18", "2018-01-20 17:25:09", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74697", "3", "2018-01-20 17:32:54", "24.68.250.82", "33");
INSERT INTO `wp_rg_form_view` VALUES("74698", "6", "2018-01-20 17:44:03", "159.203.67.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("74699", "9", "2018-01-20 17:46:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74700", "8", "2018-01-20 17:46:36", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74701", "10", "2018-01-20 17:46:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74702", "15", "2018-01-20 17:46:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74703", "18", "2018-01-20 18:10:51", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74704", "3", "2018-01-20 18:59:36", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74705", "3", "2018-01-20 19:00:06", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("74706", "18", "2018-01-20 19:07:45", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74707", "9", "2018-01-20 19:28:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74708", "8", "2018-01-20 19:28:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74709", "10", "2018-01-20 19:28:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74710", "15", "2018-01-20 19:28:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74711", "15", "2018-01-20 20:09:36", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74712", "3", "2018-01-20 20:09:50", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74713", "10", "2018-01-20 20:13:16", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("74714", "14", "2018-01-20 20:56:32", "23.254.12.126", "4");
INSERT INTO `wp_rg_form_view` VALUES("74715", "3", "2018-01-20 21:13:27", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("74716", "9", "2018-01-20 21:13:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74717", "8", "2018-01-20 21:13:28", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74718", "10", "2018-01-20 21:13:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74719", "15", "2018-01-20 21:13:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74720", "18", "2018-01-20 21:13:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74721", "10", "2018-01-20 22:26:33", "72.14.199.71", "11");
INSERT INTO `wp_rg_form_view` VALUES("74722", "18", "2018-01-20 22:35:32", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74723", "3", "2018-01-20 22:55:05", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("74724", "9", "2018-01-20 22:55:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74725", "8", "2018-01-20 22:55:07", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74726", "15", "2018-01-20 22:55:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74727", "10", "2018-01-20 23:01:22", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("74728", "9", "2018-01-20 23:27:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74729", "3", "2018-01-21 00:00:02", "191.101.66.237", "38");
INSERT INTO `wp_rg_form_view` VALUES("74730", "9", "2018-01-21 00:41:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74731", "8", "2018-01-21 00:41:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74732", "10", "2018-01-21 00:41:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74733", "15", "2018-01-21 00:41:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74734", "18", "2018-01-21 00:41:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74735", "3", "2018-01-21 01:01:21", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("74736", "18", "2018-01-21 01:16:45", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74737", "18", "2018-01-21 02:23:25", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74738", "3", "2018-01-21 02:31:45", "180.76.15.136", "32");
INSERT INTO `wp_rg_form_view` VALUES("74739", "9", "2018-01-21 02:39:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74740", "8", "2018-01-21 02:39:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74741", "10", "2018-01-21 02:39:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74742", "15", "2018-01-21 02:39:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74743", "3", "2018-01-21 04:16:55", "216.244.66.195", "40");
INSERT INTO `wp_rg_form_view` VALUES("74744", "8", "2018-01-21 04:17:10", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("74745", "18", "2018-01-21 04:17:36", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74746", "9", "2018-01-21 04:18:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74747", "10", "2018-01-21 04:18:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74748", "15", "2018-01-21 04:18:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74749", "18", "2018-01-21 05:02:02", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74750", "3", "2018-01-21 05:57:36", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74751", "9", "2018-01-21 05:57:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74752", "8", "2018-01-21 05:57:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74753", "10", "2018-01-21 05:57:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74754", "15", "2018-01-21 05:57:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74755", "3", "2018-01-21 06:09:03", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("74756", "8", "2018-01-21 06:29:17", "54.36.148.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("74757", "18", "2018-01-21 06:32:50", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74758", "12", "2018-01-21 06:38:14", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("74759", "9", "2018-01-21 06:48:25", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74760", "10", "2018-01-21 07:30:25", "194.187.170.106", "6");
INSERT INTO `wp_rg_form_view` VALUES("74761", "3", "2018-01-21 07:30:52", "194.187.170.106", "35");
INSERT INTO `wp_rg_form_view` VALUES("74762", "9", "2018-01-21 07:32:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74763", "8", "2018-01-21 07:32:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74764", "15", "2018-01-21 07:32:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74765", "18", "2018-01-21 07:32:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74766", "3", "2018-01-21 08:06:46", "194.187.170.106", "5");
INSERT INTO `wp_rg_form_view` VALUES("74767", "10", "2018-01-21 08:53:17", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74768", "3", "2018-01-21 09:17:02", "157.55.39.165", "52");
INSERT INTO `wp_rg_form_view` VALUES("74769", "8", "2018-01-21 09:17:25", "157.55.39.165", "4");
INSERT INTO `wp_rg_form_view` VALUES("74770", "10", "2018-01-21 09:18:08", "157.55.39.254", "15");
INSERT INTO `wp_rg_form_view` VALUES("74771", "9", "2018-01-21 09:18:32", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74772", "15", "2018-01-21 09:18:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74773", "18", "2018-01-21 09:18:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74774", "11", "2018-01-21 09:20:24", "157.55.39.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("74775", "12", "2018-01-21 09:43:18", "194.187.170.106", "1");
INSERT INTO `wp_rg_form_view` VALUES("74776", "18", "2018-01-21 10:46:16", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74777", "3", "2018-01-21 10:57:29", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74778", "10", "2018-01-21 10:58:01", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74779", "3", "2018-01-21 11:06:57", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74780", "9", "2018-01-21 11:06:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74781", "8", "2018-01-21 11:06:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74782", "10", "2018-01-21 11:06:59", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74783", "15", "2018-01-21 11:07:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74784", "18", "2018-01-21 11:07:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74785", "3", "2018-01-21 12:16:24", "220.181.108.175", "33");
INSERT INTO `wp_rg_form_view` VALUES("74786", "9", "2018-01-21 12:43:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74787", "8", "2018-01-21 12:43:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74788", "10", "2018-01-21 12:43:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74789", "15", "2018-01-21 12:43:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74790", "18", "2018-01-21 12:43:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74791", "3", "2018-01-21 14:29:20", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74792", "9", "2018-01-21 14:29:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74793", "8", "2018-01-21 14:29:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74794", "10", "2018-01-21 14:29:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74795", "15", "2018-01-21 14:29:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74796", "18", "2018-01-21 14:29:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74797", "18", "2018-01-21 16:10:52", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74798", "3", "2018-01-21 16:19:03", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("74799", "9", "2018-01-21 16:19:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74800", "8", "2018-01-21 16:19:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74801", "10", "2018-01-21 16:19:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74802", "15", "2018-01-21 16:19:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74803", "14", "2018-01-21 16:54:49", "104.227.190.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("74804", "3", "2018-01-21 18:08:37", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74805", "9", "2018-01-21 18:08:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74806", "8", "2018-01-21 18:08:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74807", "10", "2018-01-21 18:08:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74808", "15", "2018-01-21 18:08:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74809", "18", "2018-01-21 18:08:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74810", "3", "2018-01-21 19:47:15", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("74811", "9", "2018-01-21 19:48:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74812", "8", "2018-01-21 19:48:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74813", "10", "2018-01-21 19:48:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74814", "15", "2018-01-21 19:48:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74815", "18", "2018-01-21 19:48:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74816", "3", "2018-01-21 20:43:42", "88.198.55.175", "2");
INSERT INTO `wp_rg_form_view` VALUES("74817", "3", "2018-01-21 21:45:49", "216.244.66.231", "32");
INSERT INTO `wp_rg_form_view` VALUES("74818", "18", "2018-01-21 21:52:00", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74819", "9", "2018-01-21 21:53:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74820", "8", "2018-01-21 21:53:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74821", "10", "2018-01-21 21:53:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74822", "15", "2018-01-21 21:53:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74823", "3", "2018-01-21 22:18:11", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("74824", "3", "2018-01-21 23:03:19", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("74825", "9", "2018-01-21 23:39:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74826", "8", "2018-01-21 23:39:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74827", "10", "2018-01-21 23:39:11", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("74828", "15", "2018-01-21 23:39:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74829", "18", "2018-01-21 23:39:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74830", "18", "2018-01-22 00:11:51", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74831", "10", "2018-01-22 00:16:27", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("74832", "3", "2018-01-22 01:39:28", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("74833", "9", "2018-01-22 01:40:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74834", "8", "2018-01-22 01:40:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74835", "10", "2018-01-22 01:40:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74836", "15", "2018-01-22 01:40:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74837", "18", "2018-01-22 01:40:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74838", "10", "2018-01-22 02:29:32", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74839", "3", "2018-01-22 02:30:30", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("74840", "3", "2018-01-22 03:06:56", "51.255.71.117", "32");
INSERT INTO `wp_rg_form_view` VALUES("74841", "9", "2018-01-22 03:19:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74842", "8", "2018-01-22 03:19:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74843", "10", "2018-01-22 03:19:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74844", "15", "2018-01-22 03:19:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74845", "18", "2018-01-22 03:19:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74846", "18", "2018-01-22 04:56:20", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74847", "3", "2018-01-22 05:04:56", "216.244.66.195", "43");
INSERT INTO `wp_rg_form_view` VALUES("74848", "9", "2018-01-22 05:10:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74849", "8", "2018-01-22 05:10:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74850", "10", "2018-01-22 05:10:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74851", "15", "2018-01-22 05:10:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74852", "18", "2018-01-22 05:11:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74853", "18", "2018-01-22 06:47:41", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74854", "3", "2018-01-22 07:00:57", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74855", "9", "2018-01-22 07:00:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74856", "8", "2018-01-22 07:00:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74857", "10", "2018-01-22 07:00:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74858", "15", "2018-01-22 07:01:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74859", "18", "2018-01-22 07:01:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74860", "3", "2018-01-22 08:05:01", "216.244.66.195", "64");
INSERT INTO `wp_rg_form_view` VALUES("74861", "6", "2018-01-22 08:05:47", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74862", "9", "2018-01-22 08:49:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74863", "8", "2018-01-22 08:49:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74864", "10", "2018-01-22 08:49:54", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74865", "15", "2018-01-22 08:49:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74866", "18", "2018-01-22 08:49:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74867", "3", "2018-01-22 09:22:15", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("74868", "3", "2018-01-22 10:29:34", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("74869", "9", "2018-01-22 10:29:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74870", "8", "2018-01-22 10:29:36", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74871", "10", "2018-01-22 10:29:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74872", "15", "2018-01-22 10:29:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74873", "18", "2018-01-22 10:29:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74874", "3", "2018-01-22 11:00:03", "192.227.182.244", "2");
INSERT INTO `wp_rg_form_view` VALUES("74875", "10", "2018-01-22 12:04:33", "66.249.89.22", "7");
INSERT INTO `wp_rg_form_view` VALUES("74876", "18", "2018-01-22 12:05:41", "74.208.178.149", "2");
INSERT INTO `wp_rg_form_view` VALUES("74877", "3", "2018-01-22 12:05:53", "74.208.178.149", "36");
INSERT INTO `wp_rg_form_view` VALUES("74878", "9", "2018-01-22 12:15:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74879", "8", "2018-01-22 12:15:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74880", "15", "2018-01-22 12:15:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74881", "3", "2018-01-22 13:50:04", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("74882", "9", "2018-01-22 13:50:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74883", "8", "2018-01-22 13:50:05", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74884", "10", "2018-01-22 13:50:06", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74885", "15", "2018-01-22 13:50:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74886", "18", "2018-01-22 13:50:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74887", "3", "2018-01-22 14:24:22", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("74888", "18", "2018-01-22 14:37:36", "58.65.9.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("74889", "3", "2018-01-22 15:31:17", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74890", "9", "2018-01-22 15:31:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74891", "8", "2018-01-22 15:31:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74892", "10", "2018-01-22 15:31:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74893", "15", "2018-01-22 15:31:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74894", "18", "2018-01-22 15:31:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74895", "10", "2018-01-22 16:02:16", "54.36.148.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("74896", "3", "2018-01-22 16:03:51", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("74897", "18", "2018-01-22 16:41:22", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74898", "3", "2018-01-22 17:19:42", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74899", "9", "2018-01-22 17:19:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74900", "8", "2018-01-22 17:19:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74901", "10", "2018-01-22 17:19:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74902", "15", "2018-01-22 17:19:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74903", "18", "2018-01-22 17:19:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74904", "18", "2018-01-22 18:51:10", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74905", "3", "2018-01-22 19:07:07", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("74906", "9", "2018-01-22 19:07:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74907", "8", "2018-01-22 19:07:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74908", "10", "2018-01-22 19:07:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74909", "15", "2018-01-22 19:07:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74910", "18", "2018-01-22 19:07:14", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74911", "14", "2018-01-22 19:15:16", "184.66.132.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("74912", "3", "2018-01-22 20:03:56", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("74913", "10", "2018-01-22 20:46:24", "51.255.71.115", "6");
INSERT INTO `wp_rg_form_view` VALUES("74914", "9", "2018-01-22 20:46:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74915", "8", "2018-01-22 20:46:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74916", "15", "2018-01-22 20:46:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74917", "18", "2018-01-22 20:46:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74918", "18", "2018-01-22 21:30:31", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74919", "3", "2018-01-22 21:40:32", "207.46.13.49", "2");
INSERT INTO `wp_rg_form_view` VALUES("74920", "18", "2018-01-22 22:21:33", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("74921", "10", "2018-01-22 22:21:51", "216.244.66.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("74922", "3", "2018-01-22 22:22:33", "216.244.66.247", "63");
INSERT INTO `wp_rg_form_view` VALUES("74923", "9", "2018-01-22 22:22:54", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74924", "8", "2018-01-22 22:22:55", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("74925", "15", "2018-01-22 22:22:58", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("74926", "18", "2018-01-22 23:06:57", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74927", "10", "2018-01-22 23:17:05", "194.187.170.127", "3");
INSERT INTO `wp_rg_form_view` VALUES("74928", "12", "2018-01-22 23:51:16", "164.132.161.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("74929", "3", "2018-01-23 00:03:15", "108.180.147.111", "41");
INSERT INTO `wp_rg_form_view` VALUES("74930", "18", "2018-01-23 00:15:48", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("74931", "9", "2018-01-23 00:28:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74932", "8", "2018-01-23 00:28:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74933", "10", "2018-01-23 00:28:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74934", "15", "2018-01-23 00:29:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74935", "14", "2018-01-23 00:36:15", "184.66.132.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("74936", "18", "2018-01-23 01:02:36", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("74937", "3", "2018-01-23 01:46:56", "40.77.167.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("74938", "3", "2018-01-23 02:12:14", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("74939", "9", "2018-01-23 02:12:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74940", "8", "2018-01-23 02:12:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74941", "10", "2018-01-23 02:12:20", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("74942", "15", "2018-01-23 02:12:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74943", "18", "2018-01-23 02:12:31", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("74944", "3", "2018-01-23 03:46:01", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("74945", "9", "2018-01-23 03:46:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74946", "8", "2018-01-23 03:46:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74947", "10", "2018-01-23 03:46:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74948", "15", "2018-01-23 03:46:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74949", "18", "2018-01-23 03:46:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74950", "18", "2018-01-23 04:19:33", "159.203.169.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("74951", "3", "2018-01-23 04:56:52", "62.210.103.36", "1");
INSERT INTO `wp_rg_form_view` VALUES("74952", "10", "2018-01-23 05:07:39", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("74953", "3", "2018-01-23 05:37:16", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74954", "9", "2018-01-23 05:37:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74955", "8", "2018-01-23 05:37:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74956", "15", "2018-01-23 05:37:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74957", "18", "2018-01-23 05:37:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74958", "18", "2018-01-23 06:34:30", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74959", "10", "2018-01-23 07:18:28", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("74960", "3", "2018-01-23 07:20:08", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("74961", "18", "2018-01-23 07:30:43", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("74962", "9", "2018-01-23 07:30:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74963", "8", "2018-01-23 07:30:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74964", "15", "2018-01-23 07:30:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74965", "3", "2018-01-23 08:03:31", "68.180.228.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("74966", "10", "2018-01-23 08:26:16", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74967", "18", "2018-01-23 08:45:07", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74968", "3", "2018-01-23 09:25:35", "52.37.180.245", "46");
INSERT INTO `wp_rg_form_view` VALUES("74969", "9", "2018-01-23 09:25:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74970", "8", "2018-01-23 09:25:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74971", "10", "2018-01-23 09:25:38", "52.37.180.245", "13");
INSERT INTO `wp_rg_form_view` VALUES("74972", "15", "2018-01-23 09:25:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74973", "18", "2018-01-23 09:25:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74974", "3", "2018-01-23 10:23:28", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("74975", "10", "2018-01-23 10:23:43", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("74976", "18", "2018-01-23 10:49:04", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("74977", "3", "2018-01-23 11:14:51", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("74978", "9", "2018-01-23 11:14:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74979", "8", "2018-01-23 11:14:52", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("74980", "10", "2018-01-23 11:14:53", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("74981", "15", "2018-01-23 11:14:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74982", "18", "2018-01-23 11:14:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74983", "10", "2018-01-23 12:24:24", "137.74.207.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("74984", "14", "2018-01-23 12:25:42", "176.61.139.153", "3");
INSERT INTO `wp_rg_form_view` VALUES("74985", "3", "2018-01-23 12:56:56", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("74986", "10", "2018-01-23 13:00:38", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("74987", "3", "2018-01-23 13:40:22", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("74988", "9", "2018-01-23 13:40:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74989", "8", "2018-01-23 13:40:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74990", "15", "2018-01-23 13:40:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74991", "18", "2018-01-23 13:40:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74992", "10", "2018-01-23 14:34:08", "194.187.170.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("74993", "3", "2018-01-23 15:15:56", "144.76.8.231", "33");
INSERT INTO `wp_rg_form_view` VALUES("74994", "9", "2018-01-23 15:35:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74995", "8", "2018-01-23 15:35:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("74996", "10", "2018-01-23 15:35:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("74997", "15", "2018-01-23 15:35:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74998", "18", "2018-01-23 15:35:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("74999", "9", "2018-01-23 16:27:21", "138.197.72.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("75000", "3", "2018-01-23 16:34:58", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75001", "18", "2018-01-23 17:08:58", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75002", "3", "2018-01-23 17:16:46", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75003", "15", "2018-01-23 17:17:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75004", "3", "2018-01-23 18:23:56", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("75005", "9", "2018-01-23 18:23:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75006", "8", "2018-01-23 18:23:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75007", "10", "2018-01-23 18:23:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75008", "15", "2018-01-23 18:24:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75009", "18", "2018-01-23 18:24:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75010", "18", "2018-01-23 19:01:38", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75011", "14", "2018-01-23 19:45:53", "82.196.13.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("75012", "18", "2018-01-23 20:08:58", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75013", "3", "2018-01-23 20:12:00", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75014", "9", "2018-01-23 20:12:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75015", "8", "2018-01-23 20:12:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75016", "10", "2018-01-23 20:12:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75017", "15", "2018-01-23 20:12:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75018", "3", "2018-01-23 21:47:19", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75019", "9", "2018-01-23 21:47:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75020", "8", "2018-01-23 21:47:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75021", "10", "2018-01-23 21:47:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75022", "15", "2018-01-23 21:47:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75023", "18", "2018-01-23 21:47:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75024", "8", "2018-01-23 22:30:49", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75025", "3", "2018-01-23 22:31:45", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75026", "10", "2018-01-23 22:34:49", "70.66.148.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("75027", "18", "2018-01-23 22:59:04", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75028", "18", "2018-01-23 23:19:37", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75029", "3", "2018-01-23 23:29:20", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("75030", "9", "2018-01-23 23:29:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75031", "8", "2018-01-23 23:29:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75032", "10", "2018-01-23 23:29:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75033", "15", "2018-01-23 23:29:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75034", "18", "2018-01-24 00:20:29", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75035", "10", "2018-01-24 00:25:45", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75036", "8", "2018-01-24 00:34:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75037", "3", "2018-01-24 00:34:36", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75038", "3", "2018-01-24 01:13:36", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75039", "9", "2018-01-24 01:13:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75040", "8", "2018-01-24 01:13:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75041", "10", "2018-01-24 01:13:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75042", "15", "2018-01-24 01:13:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75043", "18", "2018-01-24 01:13:44", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75044", "18", "2018-01-24 02:13:50", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("75045", "3", "2018-01-24 02:33:46", "157.55.39.19", "32");
INSERT INTO `wp_rg_form_view` VALUES("75046", "9", "2018-01-24 02:57:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75047", "8", "2018-01-24 02:57:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75048", "10", "2018-01-24 02:57:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75049", "15", "2018-01-24 02:57:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75050", "18", "2018-01-24 03:06:06", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75051", "3", "2018-01-24 03:19:38", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75052", "10", "2018-01-24 03:46:32", "184.66.129.248", "4");
INSERT INTO `wp_rg_form_view` VALUES("75053", "3", "2018-01-24 04:06:26", "216.244.66.195", "39");
INSERT INTO `wp_rg_form_view` VALUES("75054", "18", "2018-01-24 04:43:00", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75055", "9", "2018-01-24 04:57:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75056", "8", "2018-01-24 04:57:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75057", "10", "2018-01-24 04:57:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75058", "15", "2018-01-24 04:57:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75059", "10", "2018-01-24 06:19:11", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("75060", "3", "2018-01-24 06:19:45", "216.244.66.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("75061", "9", "2018-01-24 06:38:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75062", "8", "2018-01-24 06:38:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75063", "15", "2018-01-24 06:38:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75064", "18", "2018-01-24 06:38:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75065", "3", "2018-01-24 07:26:15", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("75066", "8", "2018-01-24 07:26:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75067", "18", "2018-01-24 07:27:03", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75068", "3", "2018-01-24 08:21:02", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75069", "9", "2018-01-24 08:21:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75070", "8", "2018-01-24 08:21:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75071", "10", "2018-01-24 08:21:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75072", "15", "2018-01-24 08:21:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75073", "18", "2018-01-24 08:21:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75074", "14", "2018-01-24 08:25:17", "40.77.167.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("75075", "3", "2018-01-24 09:18:08", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("75076", "9", "2018-01-24 09:58:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75077", "8", "2018-01-24 09:58:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75078", "10", "2018-01-24 09:58:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75079", "15", "2018-01-24 09:58:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75080", "18", "2018-01-24 09:58:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75081", "14", "2018-01-24 10:04:26", "64.180.23.148", "2");
INSERT INTO `wp_rg_form_view` VALUES("75082", "3", "2018-01-24 11:39:56", "52.37.180.245", "64");
INSERT INTO `wp_rg_form_view` VALUES("75083", "9", "2018-01-24 11:39:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75084", "8", "2018-01-24 11:39:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75085", "10", "2018-01-24 11:39:59", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75086", "15", "2018-01-24 11:40:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75087", "18", "2018-01-24 11:40:05", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75088", "14", "2018-01-24 11:50:52", "195.12.135.154", "1");
INSERT INTO `wp_rg_form_view` VALUES("75089", "3", "2018-01-24 13:19:21", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75090", "9", "2018-01-24 13:19:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75091", "8", "2018-01-24 13:19:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75092", "10", "2018-01-24 13:19:24", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75093", "15", "2018-01-24 13:19:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75094", "18", "2018-01-24 13:19:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75095", "3", "2018-01-24 14:34:59", "70.67.44.227", "33");
INSERT INTO `wp_rg_form_view` VALUES("75096", "18", "2018-01-24 14:45:21", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75097", "9", "2018-01-24 14:58:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75098", "8", "2018-01-24 14:58:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75099", "10", "2018-01-24 14:58:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75100", "15", "2018-01-24 14:58:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75101", "14", "2018-01-24 15:06:24", "109.230.203.134", "3");
INSERT INTO `wp_rg_form_view` VALUES("75102", "10", "2018-01-24 16:34:20", "209.85.238.23", "6");
INSERT INTO `wp_rg_form_view` VALUES("75103", "3", "2018-01-24 16:45:54", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75104", "9", "2018-01-24 16:45:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75105", "8", "2018-01-24 16:45:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75106", "15", "2018-01-24 16:45:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75107", "18", "2018-01-24 16:46:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75108", "10", "2018-01-24 17:05:14", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75109", "3", "2018-01-24 18:26:27", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("75110", "9", "2018-01-24 18:26:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75111", "8", "2018-01-24 18:26:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75112", "10", "2018-01-24 18:26:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75113", "15", "2018-01-24 18:26:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75114", "18", "2018-01-24 18:26:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75115", "14", "2018-01-24 18:54:37", "185.182.48.14", "3");
INSERT INTO `wp_rg_form_view` VALUES("75116", "8", "2018-01-24 19:03:30", "46.242.115.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("75117", "3", "2018-01-24 19:35:57", "40.77.167.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("75118", "3", "2018-01-24 20:08:45", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75119", "9", "2018-01-24 20:08:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75120", "8", "2018-01-24 20:08:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75121", "10", "2018-01-24 20:08:48", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("75122", "15", "2018-01-24 20:08:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75123", "18", "2018-01-24 20:08:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75124", "3", "2018-01-24 21:07:44", "194.187.170.127", "89");
INSERT INTO `wp_rg_form_view` VALUES("75125", "14", "2018-01-24 21:18:11", "46.229.168.77", "6");
INSERT INTO `wp_rg_form_view` VALUES("75126", "11", "2018-01-24 21:24:56", "46.229.168.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("75127", "18", "2018-01-24 21:28:16", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75128", "10", "2018-01-24 21:29:01", "194.187.170.127", "6");
INSERT INTO `wp_rg_form_view` VALUES("75129", "6", "2018-01-24 21:33:37", "46.229.168.74", "2");
INSERT INTO `wp_rg_form_view` VALUES("75130", "9", "2018-01-24 21:49:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75131", "8", "2018-01-24 21:49:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75132", "15", "2018-01-24 21:49:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75133", "10", "2018-01-24 22:14:49", "194.187.170.127", "1");
INSERT INTO `wp_rg_form_view` VALUES("75134", "9", "2018-01-24 22:33:09", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75135", "3", "2018-01-24 22:33:41", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75136", "18", "2018-01-24 22:42:04", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75137", "3", "2018-01-24 23:00:50", "216.244.66.231", "44");
INSERT INTO `wp_rg_form_view` VALUES("75138", "9", "2018-01-24 23:33:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75139", "8", "2018-01-24 23:33:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75140", "10", "2018-01-24 23:33:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75141", "15", "2018-01-24 23:33:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75142", "18", "2018-01-24 23:33:53", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75143", "18", "2018-01-25 00:09:34", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75144", "3", "2018-01-25 00:26:27", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75145", "3", "2018-01-25 01:17:48", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("75146", "9", "2018-01-25 01:17:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75147", "8", "2018-01-25 01:17:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75148", "10", "2018-01-25 01:17:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75149", "15", "2018-01-25 01:17:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75150", "18", "2018-01-25 01:17:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75151", "3", "2018-01-25 02:24:33", "40.77.167.79", "18");
INSERT INTO `wp_rg_form_view` VALUES("75152", "10", "2018-01-25 02:24:53", "207.46.13.182", "8");
INSERT INTO `wp_rg_form_view` VALUES("75153", "9", "2018-01-25 02:26:34", "207.46.13.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("75154", "6", "2018-01-25 02:28:41", "40.77.167.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("75155", "8", "2018-01-25 02:29:03", "40.77.167.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("75156", "18", "2018-01-25 02:36:57", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75157", "14", "2018-01-25 03:07:31", "134.87.172.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("75158", "3", "2018-01-25 03:10:54", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("75159", "9", "2018-01-25 03:10:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75160", "8", "2018-01-25 03:10:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75161", "10", "2018-01-25 03:10:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75162", "15", "2018-01-25 03:10:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75163", "18", "2018-01-25 03:11:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75164", "14", "2018-01-25 04:11:32", "42.115.105.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("75165", "18", "2018-01-25 04:34:31", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("75166", "3", "2018-01-25 04:50:51", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75167", "9", "2018-01-25 04:50:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75168", "8", "2018-01-25 04:50:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75169", "10", "2018-01-25 04:50:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75170", "15", "2018-01-25 04:50:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75171", "3", "2018-01-25 05:11:43", "216.232.205.45", "11");
INSERT INTO `wp_rg_form_view` VALUES("75172", "18", "2018-01-25 05:49:34", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75173", "10", "2018-01-25 05:57:52", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75174", "3", "2018-01-25 06:03:32", "24.68.248.211", "33");
INSERT INTO `wp_rg_form_view` VALUES("75175", "9", "2018-01-25 06:37:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75176", "8", "2018-01-25 06:37:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75177", "10", "2018-01-25 06:37:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75178", "15", "2018-01-25 06:37:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75179", "18", "2018-01-25 06:38:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75180", "10", "2018-01-25 07:11:52", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("75181", "3", "2018-01-25 07:12:45", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("75182", "8", "2018-01-25 07:53:54", "194.187.170.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("75183", "18", "2018-01-25 08:17:34", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75184", "3", "2018-01-25 08:33:10", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75185", "9", "2018-01-25 08:33:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75186", "8", "2018-01-25 08:33:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75187", "10", "2018-01-25 08:33:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75188", "15", "2018-01-25 08:33:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75189", "6", "2018-01-25 08:47:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75190", "3", "2018-01-25 10:04:54", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("75191", "9", "2018-01-25 10:21:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75192", "8", "2018-01-25 10:21:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75193", "10", "2018-01-25 10:21:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75194", "15", "2018-01-25 10:21:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75195", "18", "2018-01-25 10:21:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75196", "8", "2018-01-25 11:52:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75197", "3", "2018-01-25 12:01:29", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75198", "9", "2018-01-25 12:01:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75199", "8", "2018-01-25 12:01:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75200", "10", "2018-01-25 12:01:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75201", "15", "2018-01-25 12:01:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75202", "18", "2018-01-25 12:01:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75203", "3", "2018-01-25 13:47:58", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75204", "9", "2018-01-25 13:47:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75205", "8", "2018-01-25 13:47:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75206", "10", "2018-01-25 13:48:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75207", "15", "2018-01-25 13:48:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75208", "18", "2018-01-25 13:48:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75209", "10", "2018-01-25 15:14:23", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("75210", "3", "2018-01-25 15:34:25", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("75211", "9", "2018-01-25 15:38:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75212", "8", "2018-01-25 15:38:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75213", "15", "2018-01-25 15:38:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75214", "18", "2018-01-25 15:38:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75215", "3", "2018-01-25 16:35:59", "133.130.110.198", "6");
INSERT INTO `wp_rg_form_view` VALUES("75216", "14", "2018-01-25 16:38:32", "133.130.110.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("75217", "10", "2018-01-25 16:42:15", "133.130.110.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("75218", "3", "2018-01-25 17:06:27", "216.244.66.231", "33");
INSERT INTO `wp_rg_form_view` VALUES("75219", "9", "2018-01-25 17:27:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75220", "8", "2018-01-25 17:27:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75221", "10", "2018-01-25 17:27:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75222", "15", "2018-01-25 17:27:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75223", "18", "2018-01-25 17:27:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75224", "18", "2018-01-25 18:09:58", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75225", "3", "2018-01-25 18:52:14", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75226", "18", "2018-01-25 19:19:16", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75227", "3", "2018-01-25 19:26:04", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("75228", "9", "2018-01-25 19:26:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75229", "8", "2018-01-25 19:26:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75230", "10", "2018-01-25 19:26:07", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75231", "15", "2018-01-25 19:26:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75232", "3", "2018-01-25 20:46:16", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("75233", "3", "2018-01-25 21:12:06", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("75234", "9", "2018-01-25 21:12:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75235", "8", "2018-01-25 21:12:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75236", "10", "2018-01-25 21:12:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75237", "15", "2018-01-25 21:12:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75238", "18", "2018-01-25 21:12:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75239", "10", "2018-01-25 22:31:43", "194.187.170.144", "7");
INSERT INTO `wp_rg_form_view` VALUES("75240", "3", "2018-01-25 22:37:37", "194.187.170.144", "36");
INSERT INTO `wp_rg_form_view` VALUES("75241", "18", "2018-01-25 22:38:40", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75242", "9", "2018-01-25 22:48:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75243", "8", "2018-01-25 22:48:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75244", "15", "2018-01-25 22:48:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75245", "10", "2018-01-25 23:00:48", "194.187.170.144", "5");
INSERT INTO `wp_rg_form_view` VALUES("75246", "18", "2018-01-25 23:48:12", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75247", "3", "2018-01-25 23:48:34", "194.187.170.144", "1");
INSERT INTO `wp_rg_form_view` VALUES("75248", "3", "2018-01-26 00:02:04", "194.187.170.144", "34");
INSERT INTO `wp_rg_form_view` VALUES("75249", "18", "2018-01-26 00:02:17", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75250", "9", "2018-01-26 00:33:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75251", "8", "2018-01-26 00:33:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75252", "10", "2018-01-26 00:33:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75253", "15", "2018-01-26 00:33:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75254", "10", "2018-01-26 01:58:57", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75255", "3", "2018-01-26 02:23:04", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75256", "9", "2018-01-26 02:23:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75257", "8", "2018-01-26 02:23:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75258", "10", "2018-01-26 02:23:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75259", "15", "2018-01-26 02:23:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75260", "18", "2018-01-26 02:23:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75261", "3", "2018-01-26 03:10:03", "207.46.13.136", "101");
INSERT INTO `wp_rg_form_view` VALUES("75262", "8", "2018-01-26 03:30:14", "185.138.241.45", "9");
INSERT INTO `wp_rg_form_view` VALUES("75263", "9", "2018-01-26 03:30:53", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("75264", "10", "2018-01-26 03:30:55", "185.138.241.45", "15");
INSERT INTO `wp_rg_form_view` VALUES("75265", "15", "2018-01-26 03:30:59", "185.138.241.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("75266", "18", "2018-01-26 03:31:02", "185.138.241.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("75267", "3", "2018-01-26 04:07:19", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75268", "9", "2018-01-26 04:07:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75269", "8", "2018-01-26 04:07:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75270", "10", "2018-01-26 04:07:21", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75271", "15", "2018-01-26 04:07:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75272", "18", "2018-01-26 04:07:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75273", "14", "2018-01-26 04:21:36", "192.154.231.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("75274", "3", "2018-01-26 05:47:24", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75275", "9", "2018-01-26 05:47:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75276", "8", "2018-01-26 05:47:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75277", "10", "2018-01-26 05:47:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75278", "15", "2018-01-26 05:47:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75279", "18", "2018-01-26 05:47:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75280", "18", "2018-01-26 06:12:15", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75281", "3", "2018-01-26 06:14:07", "70.66.132.162", "4");
INSERT INTO `wp_rg_form_view` VALUES("75282", "9", "2018-01-26 06:25:23", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75283", "10", "2018-01-26 07:10:13", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("75284", "18", "2018-01-26 07:11:44", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75285", "3", "2018-01-26 07:32:33", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75286", "9", "2018-01-26 07:32:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75287", "8", "2018-01-26 07:32:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75288", "15", "2018-01-26 07:32:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75289", "3", "2018-01-26 08:10:56", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75290", "10", "2018-01-26 08:32:28", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75291", "3", "2018-01-26 09:16:39", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75292", "9", "2018-01-26 09:16:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75293", "8", "2018-01-26 09:16:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75294", "10", "2018-01-26 09:16:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75295", "15", "2018-01-26 09:16:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75296", "18", "2018-01-26 09:16:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75297", "10", "2018-01-26 10:06:21", "216.244.66.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("75298", "3", "2018-01-26 10:20:25", "104.236.216.196", "65");
INSERT INTO `wp_rg_form_view` VALUES("75299", "18", "2018-01-26 10:21:58", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75300", "14", "2018-01-26 10:23:32", "104.236.216.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("75301", "6", "2018-01-26 10:24:27", "104.236.216.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("75302", "9", "2018-01-26 10:30:24", "104.236.216.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("75303", "15", "2018-01-26 10:32:51", "104.236.216.196", "2");
INSERT INTO `wp_rg_form_view` VALUES("75304", "8", "2018-01-26 10:56:42", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75305", "3", "2018-01-26 11:04:36", "104.236.216.196", "1");
INSERT INTO `wp_rg_form_view` VALUES("75306", "3", "2018-01-26 12:38:09", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75307", "9", "2018-01-26 12:38:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75308", "8", "2018-01-26 12:38:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75309", "10", "2018-01-26 12:38:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75310", "15", "2018-01-26 12:38:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75311", "18", "2018-01-26 12:38:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75312", "3", "2018-01-26 13:15:47", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("75313", "10", "2018-01-26 13:38:07", "199.16.157.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("75314", "10", "2018-01-26 14:12:53", "209.85.238.19", "6");
INSERT INTO `wp_rg_form_view` VALUES("75315", "3", "2018-01-26 14:27:47", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75316", "9", "2018-01-26 14:27:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75317", "8", "2018-01-26 14:27:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75318", "15", "2018-01-26 14:27:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75319", "18", "2018-01-26 14:27:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75320", "3", "2018-01-26 15:16:39", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("75321", "18", "2018-01-26 16:15:24", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75322", "3", "2018-01-26 16:28:10", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75323", "9", "2018-01-26 16:28:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75324", "8", "2018-01-26 16:28:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75325", "10", "2018-01-26 16:28:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75326", "15", "2018-01-26 16:28:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75327", "3", "2018-01-26 17:16:51", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75328", "3", "2018-01-26 18:18:24", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75329", "9", "2018-01-26 18:18:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75330", "8", "2018-01-26 18:18:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75331", "10", "2018-01-26 18:18:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75332", "15", "2018-01-26 18:18:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75333", "18", "2018-01-26 18:18:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75334", "3", "2018-01-26 20:01:03", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("75335", "9", "2018-01-26 20:01:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75336", "8", "2018-01-26 20:01:06", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75337", "10", "2018-01-26 20:01:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75338", "15", "2018-01-26 20:01:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75339", "18", "2018-01-26 20:01:11", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75340", "10", "2018-01-26 21:17:24", "64.114.222.228", "6");
INSERT INTO `wp_rg_form_view` VALUES("75341", "18", "2018-01-26 21:24:50", "70.66.152.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("75342", "3", "2018-01-26 21:37:52", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75343", "9", "2018-01-26 21:37:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75344", "8", "2018-01-26 21:37:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75345", "15", "2018-01-26 21:37:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75346", "8", "2018-01-26 22:17:24", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75347", "3", "2018-01-26 22:17:40", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("75348", "15", "2018-01-26 22:19:49", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75349", "18", "2018-01-26 22:30:37", "70.66.152.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("75350", "18", "2018-01-26 23:01:07", "194.187.170.130", "2");
INSERT INTO `wp_rg_form_view` VALUES("75351", "3", "2018-01-26 23:28:07", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75352", "9", "2018-01-26 23:28:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75353", "8", "2018-01-26 23:28:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75354", "10", "2018-01-26 23:28:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75355", "15", "2018-01-26 23:28:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75356", "18", "2018-01-27 00:48:34", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75357", "18", "2018-01-27 01:05:30", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75358", "3", "2018-01-27 01:14:49", "70.67.170.9", "65");
INSERT INTO `wp_rg_form_view` VALUES("75359", "9", "2018-01-27 01:15:40", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("75360", "8", "2018-01-27 01:15:40", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("75361", "10", "2018-01-27 01:15:41", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("75362", "15", "2018-01-27 01:15:43", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("75363", "3", "2018-01-27 02:57:25", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75364", "9", "2018-01-27 02:57:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75365", "8", "2018-01-27 02:57:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75366", "10", "2018-01-27 02:57:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75367", "15", "2018-01-27 02:57:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75368", "18", "2018-01-27 02:57:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75369", "3", "2018-01-27 03:02:00", "157.55.39.7", "12");
INSERT INTO `wp_rg_form_view` VALUES("75370", "18", "2018-01-27 03:14:40", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75371", "14", "2018-01-27 03:36:18", "65.18.199.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("75372", "10", "2018-01-27 03:44:14", "66.249.87.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("75373", "8", "2018-01-27 04:17:05", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("75374", "3", "2018-01-27 04:17:26", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("75375", "9", "2018-01-27 04:36:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75376", "10", "2018-01-27 04:36:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75377", "15", "2018-01-27 04:36:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75378", "18", "2018-01-27 04:36:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75379", "3", "2018-01-27 06:07:39", "188.165.196.25", "39");
INSERT INTO `wp_rg_form_view` VALUES("75380", "18", "2018-01-27 06:09:38", "188.165.196.25", "4");
INSERT INTO `wp_rg_form_view` VALUES("75381", "14", "2018-01-27 06:10:16", "188.165.196.25", "1");
INSERT INTO `wp_rg_form_view` VALUES("75382", "9", "2018-01-27 06:12:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75383", "8", "2018-01-27 06:12:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75384", "10", "2018-01-27 06:12:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75385", "15", "2018-01-27 06:12:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75386", "3", "2018-01-27 07:21:51", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("75387", "10", "2018-01-27 07:22:25", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("75388", "9", "2018-01-27 07:57:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75389", "8", "2018-01-27 07:57:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75390", "15", "2018-01-27 07:57:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75391", "18", "2018-01-27 07:57:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75392", "3", "2018-01-27 09:27:44", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("75393", "10", "2018-01-27 09:28:36", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("75394", "9", "2018-01-27 09:39:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75395", "8", "2018-01-27 09:39:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75396", "15", "2018-01-27 09:39:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75397", "18", "2018-01-27 09:39:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75398", "18", "2018-01-27 10:08:27", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("75399", "3", "2018-01-27 10:50:28", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("75400", "8", "2018-01-27 10:50:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75401", "10", "2018-01-27 10:56:43", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75402", "3", "2018-01-27 11:22:02", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75403", "9", "2018-01-27 11:22:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75404", "8", "2018-01-27 11:22:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75405", "10", "2018-01-27 11:22:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75406", "15", "2018-01-27 11:22:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75407", "18", "2018-01-27 11:22:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75408", "3", "2018-01-27 12:57:43", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75409", "9", "2018-01-27 12:57:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75410", "8", "2018-01-27 12:57:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75411", "10", "2018-01-27 12:57:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75412", "15", "2018-01-27 12:57:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75413", "18", "2018-01-27 12:57:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75414", "18", "2018-01-27 13:53:16", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75415", "3", "2018-01-27 14:04:48", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("75416", "14", "2018-01-27 14:22:05", "179.218.53.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("75417", "18", "2018-01-27 14:26:42", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75418", "9", "2018-01-27 14:47:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75419", "8", "2018-01-27 14:47:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75420", "10", "2018-01-27 14:47:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75421", "15", "2018-01-27 14:47:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75422", "3", "2018-01-27 15:37:23", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75423", "3", "2018-01-27 16:19:35", "139.162.246.24", "33");
INSERT INTO `wp_rg_form_view` VALUES("75424", "9", "2018-01-27 16:22:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75425", "8", "2018-01-27 16:22:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75426", "10", "2018-01-27 16:22:31", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75427", "15", "2018-01-27 16:22:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75428", "18", "2018-01-27 16:22:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75429", "10", "2018-01-27 17:13:47", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75430", "3", "2018-01-27 17:14:02", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75431", "18", "2018-01-27 17:19:08", "70.66.152.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("75432", "3", "2018-01-27 18:13:20", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75433", "9", "2018-01-27 18:13:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75434", "8", "2018-01-27 18:13:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75435", "10", "2018-01-27 18:13:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75436", "15", "2018-01-27 18:13:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75437", "18", "2018-01-27 18:13:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75438", "3", "2018-01-27 19:33:56", "139.162.246.24", "32");
INSERT INTO `wp_rg_form_view` VALUES("75439", "18", "2018-01-27 19:54:26", "70.66.152.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("75440", "9", "2018-01-27 19:57:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75441", "8", "2018-01-27 19:57:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75442", "10", "2018-01-27 19:57:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75443", "15", "2018-01-27 19:57:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75444", "18", "2018-01-27 20:01:37", "70.66.152.210", "1");
INSERT INTO `wp_rg_form_view` VALUES("75445", "14", "2018-01-27 21:39:11", "154.20.199.212", "1");
INSERT INTO `wp_rg_form_view` VALUES("75446", "3", "2018-01-27 21:44:39", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("75447", "9", "2018-01-27 21:52:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75448", "8", "2018-01-27 21:52:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75449", "10", "2018-01-27 21:52:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75450", "15", "2018-01-27 21:52:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75451", "18", "2018-01-27 21:52:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75452", "3", "2018-01-27 22:12:23", "157.55.39.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("75453", "18", "2018-01-27 22:33:51", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75454", "18", "2018-01-27 23:10:51", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75455", "3", "2018-01-27 23:33:05", "52.37.180.245", "38");
INSERT INTO `wp_rg_form_view` VALUES("75456", "9", "2018-01-27 23:33:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75457", "8", "2018-01-27 23:33:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75458", "10", "2018-01-27 23:33:07", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("75459", "15", "2018-01-27 23:33:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75460", "3", "2018-01-28 00:12:13", "84.38.129.20", "3");
INSERT INTO `wp_rg_form_view` VALUES("75461", "18", "2018-01-28 00:12:56", "220.181.108.93", "1");
INSERT INTO `wp_rg_form_view` VALUES("75462", "3", "2018-01-28 01:23:02", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("75463", "9", "2018-01-28 01:23:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75464", "8", "2018-01-28 01:23:04", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75465", "10", "2018-01-28 01:23:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75466", "15", "2018-01-28 01:23:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75467", "18", "2018-01-28 01:23:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75468", "3", "2018-01-28 02:59:20", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75469", "18", "2018-01-28 03:10:44", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75470", "3", "2018-01-28 03:13:24", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75471", "9", "2018-01-28 03:13:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75472", "8", "2018-01-28 03:13:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75473", "10", "2018-01-28 03:13:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75474", "15", "2018-01-28 03:13:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75475", "10", "2018-01-28 04:21:02", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75476", "3", "2018-01-28 04:35:48", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("75477", "3", "2018-01-28 05:03:09", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75478", "9", "2018-01-28 05:03:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75479", "8", "2018-01-28 05:03:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75480", "10", "2018-01-28 05:03:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75481", "15", "2018-01-28 05:03:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75482", "18", "2018-01-28 05:03:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75483", "10", "2018-01-28 06:05:54", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("75484", "3", "2018-01-28 06:06:30", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("75485", "18", "2018-01-28 06:13:46", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75486", "9", "2018-01-28 06:53:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75487", "8", "2018-01-28 06:53:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75488", "15", "2018-01-28 06:53:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75489", "18", "2018-01-28 07:04:40", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75490", "10", "2018-01-28 07:34:21", "66.249.87.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("75491", "3", "2018-01-28 07:37:00", "173.208.200.154", "15");
INSERT INTO `wp_rg_form_view` VALUES("75492", "3", "2018-01-28 08:32:40", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75493", "9", "2018-01-28 08:32:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75494", "8", "2018-01-28 08:32:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75495", "10", "2018-01-28 08:32:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75496", "15", "2018-01-28 08:32:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75497", "18", "2018-01-28 08:32:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75498", "3", "2018-01-28 09:15:57", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("75499", "10", "2018-01-28 09:17:00", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75500", "3", "2018-01-28 10:00:23", "66.249.69.53", "32");
INSERT INTO `wp_rg_form_view` VALUES("75501", "9", "2018-01-28 10:18:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75502", "8", "2018-01-28 10:18:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75503", "10", "2018-01-28 10:18:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75504", "15", "2018-01-28 10:18:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75505", "18", "2018-01-28 10:18:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75506", "11", "2018-01-28 10:56:25", "77.75.79.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("75507", "3", "2018-01-28 11:09:57", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("75508", "6", "2018-01-28 11:10:39", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75509", "9", "2018-01-28 11:59:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75510", "8", "2018-01-28 11:59:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75511", "10", "2018-01-28 11:59:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75512", "15", "2018-01-28 11:59:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75513", "18", "2018-01-28 11:59:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75514", "3", "2018-01-28 12:09:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75515", "3", "2018-01-28 13:12:52", "216.244.66.195", "63");
INSERT INTO `wp_rg_form_view` VALUES("75516", "6", "2018-01-28 13:13:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75517", "9", "2018-01-28 13:44:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75518", "8", "2018-01-28 13:44:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75519", "10", "2018-01-28 13:44:54", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75520", "15", "2018-01-28 13:44:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75521", "18", "2018-01-28 13:44:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75522", "14", "2018-01-28 13:47:47", "104.144.242.142", "4");
INSERT INTO `wp_rg_form_view` VALUES("75523", "3", "2018-01-28 14:13:24", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75524", "3", "2018-01-28 15:28:14", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75525", "9", "2018-01-28 15:28:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75526", "8", "2018-01-28 15:28:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75527", "10", "2018-01-28 15:28:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75528", "15", "2018-01-28 15:28:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75529", "18", "2018-01-28 15:28:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75530", "8", "2018-01-28 16:04:25", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75531", "18", "2018-01-28 16:11:50", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75532", "10", "2018-01-28 16:17:50", "157.55.39.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("75533", "3", "2018-01-28 17:08:49", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75534", "9", "2018-01-28 17:08:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75535", "8", "2018-01-28 17:08:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75536", "10", "2018-01-28 17:08:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75537", "15", "2018-01-28 17:08:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75538", "18", "2018-01-28 17:08:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75539", "14", "2018-01-28 17:16:25", "70.66.150.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("75540", "3", "2018-01-28 18:53:53", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75541", "9", "2018-01-28 18:53:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75542", "8", "2018-01-28 18:53:55", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75543", "10", "2018-01-28 18:53:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75544", "15", "2018-01-28 18:53:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75545", "18", "2018-01-28 18:54:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75546", "18", "2018-01-28 19:16:31", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75547", "3", "2018-01-28 19:22:36", "138.197.77.243", "4");
INSERT INTO `wp_rg_form_view` VALUES("75548", "3", "2018-01-28 20:38:55", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75549", "9", "2018-01-28 20:38:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75550", "8", "2018-01-28 20:38:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75551", "10", "2018-01-28 20:38:57", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75552", "15", "2018-01-28 20:38:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75553", "18", "2018-01-28 20:39:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75554", "3", "2018-01-28 21:03:06", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75555", "10", "2018-01-28 21:14:40", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75556", "18", "2018-01-28 22:14:16", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75557", "3", "2018-01-28 22:17:20", "213.133.111.165", "36");
INSERT INTO `wp_rg_form_view` VALUES("75558", "9", "2018-01-28 22:19:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75559", "8", "2018-01-28 22:19:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75560", "10", "2018-01-28 22:19:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75561", "15", "2018-01-28 22:19:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75562", "18", "2018-01-29 00:00:20", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75563", "3", "2018-01-29 00:10:39", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("75564", "9", "2018-01-29 00:10:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75565", "8", "2018-01-29 00:10:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75566", "10", "2018-01-29 00:10:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75567", "15", "2018-01-29 00:10:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75568", "14", "2018-01-29 00:48:09", "198.71.87.205", "5");
INSERT INTO `wp_rg_form_view` VALUES("75569", "18", "2018-01-29 01:08:37", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75570", "3", "2018-01-29 01:23:36", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("75571", "3", "2018-01-29 02:03:33", "52.37.180.245", "71");
INSERT INTO `wp_rg_form_view` VALUES("75572", "9", "2018-01-29 02:03:34", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75573", "8", "2018-01-29 02:03:34", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75574", "10", "2018-01-29 02:03:35", "52.37.180.245", "16");
INSERT INTO `wp_rg_form_view` VALUES("75575", "15", "2018-01-29 02:03:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75576", "18", "2018-01-29 02:03:39", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75577", "6", "2018-01-29 02:19:28", "157.55.39.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("75578", "11", "2018-01-29 02:19:45", "207.46.13.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("75579", "14", "2018-01-29 03:13:40", "107.158.199.105", "9");
INSERT INTO `wp_rg_form_view` VALUES("75580", "3", "2018-01-29 03:14:04", "107.158.199.105", "3");
INSERT INTO `wp_rg_form_view` VALUES("75581", "8", "2018-01-29 03:18:13", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("75582", "18", "2018-01-29 03:18:14", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("75583", "3", "2018-01-29 04:03:49", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("75584", "9", "2018-01-29 04:03:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75585", "8", "2018-01-29 04:03:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75586", "10", "2018-01-29 04:03:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75587", "15", "2018-01-29 04:03:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75588", "18", "2018-01-29 04:03:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75589", "14", "2018-01-29 04:48:45", "96.50.28.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("75590", "10", "2018-01-29 05:02:16", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("75591", "18", "2018-01-29 05:27:31", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75592", "3", "2018-01-29 05:27:53", "24.114.27.213", "32");
INSERT INTO `wp_rg_form_view` VALUES("75593", "9", "2018-01-29 05:44:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75594", "8", "2018-01-29 05:44:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75595", "15", "2018-01-29 05:44:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75596", "9", "2018-01-29 06:09:36", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75597", "3", "2018-01-29 06:09:50", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75598", "3", "2018-01-29 07:28:23", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75599", "9", "2018-01-29 07:28:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75600", "8", "2018-01-29 07:28:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75601", "10", "2018-01-29 07:28:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75602", "15", "2018-01-29 07:28:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75603", "18", "2018-01-29 07:28:30", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75604", "14", "2018-01-29 07:54:57", "23.94.5.68", "4");
INSERT INTO `wp_rg_form_view` VALUES("75605", "10", "2018-01-29 08:16:53", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75606", "18", "2018-01-29 08:16:57", "144.217.211.201", "1");
INSERT INTO `wp_rg_form_view` VALUES("75607", "3", "2018-01-29 08:17:04", "144.217.211.201", "4");
INSERT INTO `wp_rg_form_view` VALUES("75608", "3", "2018-01-29 09:09:56", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("75609", "9", "2018-01-29 09:09:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75610", "8", "2018-01-29 09:09:57", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75611", "10", "2018-01-29 09:09:58", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75612", "15", "2018-01-29 09:10:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75613", "18", "2018-01-29 09:10:02", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75614", "18", "2018-01-29 10:24:23", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75615", "3", "2018-01-29 10:48:52", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75616", "9", "2018-01-29 10:48:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75617", "8", "2018-01-29 10:48:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75618", "10", "2018-01-29 10:48:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75619", "15", "2018-01-29 10:48:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75620", "10", "2018-01-29 11:07:19", "66.249.87.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("75621", "3", "2018-01-29 11:21:47", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75622", "3", "2018-01-29 12:23:44", "144.76.38.40", "36");
INSERT INTO `wp_rg_form_view` VALUES("75623", "9", "2018-01-29 12:39:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75624", "8", "2018-01-29 12:39:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75625", "10", "2018-01-29 12:39:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75626", "15", "2018-01-29 12:39:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75627", "18", "2018-01-29 12:39:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75628", "10", "2018-01-29 13:51:54", "40.77.167.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("75629", "3", "2018-01-29 13:53:40", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75630", "3", "2018-01-29 14:18:29", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75631", "9", "2018-01-29 14:18:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75632", "8", "2018-01-29 14:18:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75633", "10", "2018-01-29 14:18:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75634", "15", "2018-01-29 14:18:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75635", "18", "2018-01-29 14:18:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75636", "3", "2018-01-29 15:55:54", "35.226.23.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("75637", "3", "2018-01-29 16:10:47", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75638", "9", "2018-01-29 16:10:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75639", "8", "2018-01-29 16:10:48", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75640", "10", "2018-01-29 16:10:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75641", "15", "2018-01-29 16:10:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75642", "18", "2018-01-29 16:10:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75643", "18", "2018-01-29 17:11:08", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("75644", "3", "2018-01-29 17:43:06", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("75645", "15", "2018-01-29 17:43:21", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75646", "9", "2018-01-29 17:49:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75647", "8", "2018-01-29 17:49:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75648", "10", "2018-01-29 17:49:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75649", "18", "2018-01-29 18:07:18", "184.66.233.226", "1");
INSERT INTO `wp_rg_form_view` VALUES("75650", "3", "2018-01-29 18:35:44", "46.229.168.76", "33");
INSERT INTO `wp_rg_form_view` VALUES("75651", "11", "2018-01-29 18:38:25", "46.229.168.77", "3");
INSERT INTO `wp_rg_form_view` VALUES("75652", "18", "2018-01-29 19:23:29", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75653", "3", "2018-01-29 19:24:37", "52.37.180.245", "63");
INSERT INTO `wp_rg_form_view` VALUES("75654", "9", "2018-01-29 19:24:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75655", "8", "2018-01-29 19:24:38", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75656", "10", "2018-01-29 19:24:39", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("75657", "15", "2018-01-29 19:24:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75658", "18", "2018-01-29 20:04:02", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75659", "3", "2018-01-29 20:42:15", "96.50.101.176", "6");
INSERT INTO `wp_rg_form_view` VALUES("75660", "9", "2018-01-29 20:45:21", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75661", "3", "2018-01-29 21:01:25", "96.50.101.176", "65");
INSERT INTO `wp_rg_form_view` VALUES("75662", "18", "2018-01-29 21:14:57", "184.66.27.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("75663", "9", "2018-01-29 21:15:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75664", "8", "2018-01-29 21:15:11", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75665", "10", "2018-01-29 21:15:11", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75666", "15", "2018-01-29 21:15:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75667", "3", "2018-01-29 22:06:39", "184.66.49.231", "35");
INSERT INTO `wp_rg_form_view` VALUES("75668", "18", "2018-01-29 22:33:57", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75669", "9", "2018-01-29 22:53:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75670", "8", "2018-01-29 22:53:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75671", "10", "2018-01-29 22:53:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75672", "15", "2018-01-29 22:53:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75673", "18", "2018-01-29 23:13:43", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75674", "10", "2018-01-29 23:24:27", "66.249.87.53", "1");
INSERT INTO `wp_rg_form_view` VALUES("75675", "3", "2018-01-29 23:40:22", "64.180.72.229", "1");
INSERT INTO `wp_rg_form_view` VALUES("75676", "3", "2018-01-30 00:44:16", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75677", "9", "2018-01-30 00:44:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75678", "8", "2018-01-30 00:44:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75679", "10", "2018-01-30 00:44:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75680", "15", "2018-01-30 00:44:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75681", "18", "2018-01-30 00:44:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75682", "8", "2018-01-30 01:17:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75683", "3", "2018-01-30 01:18:09", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75684", "14", "2018-01-30 01:38:44", "24.69.160.103", "1");
INSERT INTO `wp_rg_form_view` VALUES("75685", "10", "2018-01-30 02:19:13", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("75686", "3", "2018-01-30 02:19:37", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("75687", "9", "2018-01-30 02:43:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75688", "8", "2018-01-30 02:43:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75689", "15", "2018-01-30 02:43:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75690", "18", "2018-01-30 02:43:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75691", "10", "2018-01-30 03:11:46", "194.187.170.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("75692", "3", "2018-01-30 03:17:08", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("75693", "18", "2018-01-30 03:44:51", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75694", "3", "2018-01-30 04:28:58", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("75695", "9", "2018-01-30 04:28:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75696", "8", "2018-01-30 04:28:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75697", "10", "2018-01-30 04:29:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75698", "15", "2018-01-30 04:29:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75699", "18", "2018-01-30 04:29:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75700", "14", "2018-01-30 04:41:06", "177.33.166.237", "4");
INSERT INTO `wp_rg_form_view` VALUES("75701", "18", "2018-01-30 05:46:54", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75702", "3", "2018-01-30 06:12:28", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("75703", "9", "2018-01-30 06:12:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75704", "8", "2018-01-30 06:12:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75705", "10", "2018-01-30 06:12:30", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75706", "15", "2018-01-30 06:12:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75707", "18", "2018-01-30 06:12:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75708", "3", "2018-01-30 07:07:34", "34.207.57.50", "64");
INSERT INTO `wp_rg_form_view` VALUES("75709", "9", "2018-01-30 07:41:17", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("75710", "8", "2018-01-30 07:41:18", "139.162.246.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("75711", "10", "2018-01-30 07:41:19", "139.162.246.24", "10");
INSERT INTO `wp_rg_form_view` VALUES("75712", "15", "2018-01-30 07:41:21", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("75713", "18", "2018-01-30 07:41:23", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("75714", "3", "2018-01-30 08:11:02", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75715", "18", "2018-01-30 09:15:12", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75716", "3", "2018-01-30 09:23:25", "66.249.69.115", "38");
INSERT INTO `wp_rg_form_view` VALUES("75717", "9", "2018-01-30 09:33:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75718", "8", "2018-01-30 09:33:35", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75719", "10", "2018-01-30 09:33:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75720", "15", "2018-01-30 09:33:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75721", "3", "2018-01-30 10:18:21", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("75722", "9", "2018-01-30 10:42:48", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("75723", "8", "2018-01-30 10:42:48", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("75724", "10", "2018-01-30 10:42:49", "139.162.246.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("75725", "15", "2018-01-30 10:42:51", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("75726", "18", "2018-01-30 10:42:53", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("75727", "3", "2018-01-30 11:19:29", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75728", "9", "2018-01-30 11:19:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75729", "8", "2018-01-30 11:19:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75730", "10", "2018-01-30 11:19:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75731", "15", "2018-01-30 11:19:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75732", "18", "2018-01-30 11:19:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75733", "10", "2018-01-30 12:02:23", "66.249.87.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("75734", "10", "2018-01-30 13:00:37", "184.66.129.248", "12");
INSERT INTO `wp_rg_form_view` VALUES("75735", "3", "2018-01-30 13:11:17", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("75736", "9", "2018-01-30 13:11:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75737", "8", "2018-01-30 13:11:19", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75738", "15", "2018-01-30 13:11:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75739", "18", "2018-01-30 13:11:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75740", "10", "2018-01-30 15:03:30", "157.55.39.54", "7");
INSERT INTO `wp_rg_form_view` VALUES("75741", "3", "2018-01-30 15:12:45", "174.138.63.96", "33");
INSERT INTO `wp_rg_form_view` VALUES("75742", "9", "2018-01-30 15:24:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75743", "8", "2018-01-30 15:24:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75744", "15", "2018-01-30 15:24:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75745", "18", "2018-01-30 15:24:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75746", "3", "2018-01-30 16:06:31", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75747", "18", "2018-01-30 16:22:31", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("75748", "3", "2018-01-30 17:16:31", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75749", "9", "2018-01-30 17:16:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75750", "8", "2018-01-30 17:16:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75751", "10", "2018-01-30 17:16:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75752", "15", "2018-01-30 17:16:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75753", "18", "2018-01-30 17:16:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75754", "11", "2018-01-30 17:47:00", "194.187.170.124", "1");
INSERT INTO `wp_rg_form_view` VALUES("75755", "3", "2018-01-30 18:01:13", "23.95.43.21", "3");
INSERT INTO `wp_rg_form_view` VALUES("75756", "10", "2018-01-30 18:15:10", "64.114.222.228", "2");
INSERT INTO `wp_rg_form_view` VALUES("75757", "3", "2018-01-30 19:06:07", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("75758", "9", "2018-01-30 19:06:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75759", "8", "2018-01-30 19:06:08", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75760", "10", "2018-01-30 19:06:09", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75761", "15", "2018-01-30 19:06:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75762", "18", "2018-01-30 19:06:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75763", "14", "2018-01-30 19:49:46", "209.123.79.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("75764", "3", "2018-01-30 20:04:46", "209.123.79.176", "63");
INSERT INTO `wp_rg_form_view` VALUES("75765", "18", "2018-01-30 20:31:36", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("75766", "9", "2018-01-30 20:55:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75767", "8", "2018-01-30 20:55:07", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75768", "10", "2018-01-30 20:55:07", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75769", "15", "2018-01-30 20:55:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75770", "18", "2018-01-30 21:04:41", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75771", "3", "2018-01-30 21:22:29", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75772", "14", "2018-01-30 21:41:08", "184.69.181.174", "2");
INSERT INTO `wp_rg_form_view` VALUES("75773", "14", "2018-01-30 22:16:07", "172.245.112.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("75774", "3", "2018-01-30 22:16:15", "172.245.112.57", "32");
INSERT INTO `wp_rg_form_view` VALUES("75775", "9", "2018-01-30 22:37:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75776", "8", "2018-01-30 22:37:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75777", "10", "2018-01-30 22:37:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75778", "15", "2018-01-30 22:37:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75779", "18", "2018-01-30 22:37:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75780", "18", "2018-01-30 23:26:41", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75781", "3", "2018-01-31 00:07:28", "216.244.66.195", "64");
INSERT INTO `wp_rg_form_view` VALUES("75782", "18", "2018-01-31 00:08:40", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75783", "9", "2018-01-31 00:14:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75784", "8", "2018-01-31 00:14:56", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75785", "10", "2018-01-31 00:14:57", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75786", "15", "2018-01-31 00:14:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75787", "3", "2018-01-31 01:44:14", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("75788", "9", "2018-01-31 01:59:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75789", "8", "2018-01-31 01:59:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75790", "10", "2018-01-31 01:59:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75791", "15", "2018-01-31 01:59:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75792", "18", "2018-01-31 01:59:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75793", "18", "2018-01-31 02:01:32", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75794", "10", "2018-01-31 02:59:31", "66.249.87.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("75795", "18", "2018-01-31 03:03:24", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("75796", "3", "2018-01-31 03:35:12", "216.244.66.195", "41");
INSERT INTO `wp_rg_form_view` VALUES("75797", "9", "2018-01-31 03:39:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75798", "8", "2018-01-31 03:39:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75799", "10", "2018-01-31 03:39:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75800", "15", "2018-01-31 03:39:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75801", "10", "2018-01-31 04:15:25", "207.46.13.96", "6");
INSERT INTO `wp_rg_form_view` VALUES("75802", "3", "2018-01-31 04:15:31", "157.55.39.161", "6");
INSERT INTO `wp_rg_form_view` VALUES("75803", "18", "2018-01-31 05:19:10", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75804", "3", "2018-01-31 05:24:37", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75805", "9", "2018-01-31 05:24:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75806", "8", "2018-01-31 05:24:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75807", "10", "2018-01-31 05:24:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75808", "15", "2018-01-31 05:24:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75809", "3", "2018-01-31 06:02:56", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("75810", "18", "2018-01-31 06:14:56", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75811", "6", "2018-01-31 06:18:43", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75812", "3", "2018-01-31 07:06:24", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("75813", "9", "2018-01-31 07:06:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75814", "8", "2018-01-31 07:06:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75815", "10", "2018-01-31 07:06:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75816", "15", "2018-01-31 07:06:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75817", "18", "2018-01-31 07:06:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75818", "3", "2018-01-31 08:50:55", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75819", "9", "2018-01-31 08:50:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75820", "8", "2018-01-31 08:50:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75821", "10", "2018-01-31 08:50:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75822", "15", "2018-01-31 08:51:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75823", "18", "2018-01-31 08:51:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75824", "18", "2018-01-31 09:46:21", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75825", "8", "2018-01-31 09:48:59", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75826", "3", "2018-01-31 10:29:35", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75827", "9", "2018-01-31 10:29:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75828", "8", "2018-01-31 10:29:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75829", "10", "2018-01-31 10:29:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75830", "15", "2018-01-31 10:29:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75831", "18", "2018-01-31 10:29:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75832", "3", "2018-01-31 11:03:50", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75833", "3", "2018-01-31 12:15:33", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75834", "9", "2018-01-31 12:15:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75835", "8", "2018-01-31 12:15:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75836", "10", "2018-01-31 12:15:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75837", "15", "2018-01-31 12:15:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75838", "18", "2018-01-31 12:15:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75839", "3", "2018-01-31 13:37:46", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("75840", "5", "2018-01-31 13:56:05", "146.185.223.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("75841", "9", "2018-01-31 13:59:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75842", "8", "2018-01-31 13:59:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75843", "10", "2018-01-31 13:59:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75844", "15", "2018-01-31 13:59:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75845", "18", "2018-01-31 13:59:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75846", "18", "2018-01-31 14:16:14", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75847", "3", "2018-01-31 14:20:40", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75848", "3", "2018-01-31 15:04:08", "216.244.66.247", "64");
INSERT INTO `wp_rg_form_view` VALUES("75849", "8", "2018-01-31 15:04:34", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("75850", "9", "2018-01-31 15:39:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75851", "10", "2018-01-31 15:39:53", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75852", "15", "2018-01-31 15:39:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75853", "18", "2018-01-31 15:39:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75854", "18", "2018-01-31 16:45:13", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75855", "3", "2018-01-31 17:25:15", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75856", "9", "2018-01-31 17:25:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75857", "8", "2018-01-31 17:25:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75858", "10", "2018-01-31 17:25:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75859", "15", "2018-01-31 17:25:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75860", "18", "2018-01-31 17:25:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75861", "3", "2018-01-31 18:39:44", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("75862", "10", "2018-01-31 18:46:41", "66.249.87.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("75863", "3", "2018-01-31 19:05:56", "108.180.147.111", "35");
INSERT INTO `wp_rg_form_view` VALUES("75864", "9", "2018-01-31 19:06:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75865", "8", "2018-01-31 19:06:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75866", "10", "2018-01-31 19:06:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75867", "15", "2018-01-31 19:06:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75868", "18", "2018-01-31 19:06:52", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75869", "3", "2018-01-31 20:00:32", "164.132.161.27", "32");
INSERT INTO `wp_rg_form_view` VALUES("75870", "18", "2018-01-31 20:07:33", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75871", "9", "2018-01-31 20:56:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75872", "8", "2018-01-31 20:56:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75873", "10", "2018-01-31 20:56:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75874", "15", "2018-01-31 20:56:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75875", "3", "2018-01-31 21:11:49", "51.255.65.13", "2");
INSERT INTO `wp_rg_form_view` VALUES("75876", "10", "2018-01-31 22:36:12", "217.182.132.61", "7");
INSERT INTO `wp_rg_form_view` VALUES("75877", "3", "2018-01-31 22:46:25", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("75878", "9", "2018-01-31 22:46:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75879", "8", "2018-01-31 22:46:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75880", "15", "2018-01-31 22:46:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75881", "18", "2018-01-31 22:46:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75882", "3", "2018-01-31 23:01:49", "66.249.69.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("75883", "14", "2018-01-31 23:12:25", "142.36.194.64", "2");
INSERT INTO `wp_rg_form_view` VALUES("75884", "3", "2018-02-01 00:24:54", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("75885", "9", "2018-02-01 00:24:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75886", "8", "2018-02-01 00:24:55", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75887", "10", "2018-02-01 00:24:56", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75888", "15", "2018-02-01 00:24:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75889", "18", "2018-02-01 00:25:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75890", "14", "2018-02-01 00:33:17", "45.44.120.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("75891", "14", "2018-02-01 01:07:11", "96.54.61.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("75892", "18", "2018-02-01 01:20:17", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75893", "10", "2018-02-01 01:26:23", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75894", "9", "2018-02-01 01:55:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75895", "3", "2018-02-01 01:55:29", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75896", "18", "2018-02-01 02:09:42", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("75897", "3", "2018-02-01 02:14:28", "216.244.66.247", "42");
INSERT INTO `wp_rg_form_view` VALUES("75898", "9", "2018-02-01 02:22:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75899", "8", "2018-02-01 02:22:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75900", "10", "2018-02-01 02:22:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75901", "15", "2018-02-01 02:22:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75902", "10", "2018-02-01 03:26:33", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75903", "3", "2018-02-01 04:02:09", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("75904", "9", "2018-02-01 04:02:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75905", "8", "2018-02-01 04:02:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75906", "10", "2018-02-01 04:02:11", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75907", "15", "2018-02-01 04:02:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75908", "18", "2018-02-01 04:02:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75909", "18", "2018-02-01 05:36:55", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75910", "3", "2018-02-01 05:45:29", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("75911", "9", "2018-02-01 05:45:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75912", "8", "2018-02-01 05:45:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75913", "10", "2018-02-01 05:45:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75914", "15", "2018-02-01 05:45:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75915", "18", "2018-02-01 06:25:25", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("75916", "10", "2018-02-01 06:45:18", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("75917", "3", "2018-02-01 06:46:12", "75.156.34.148", "3");
INSERT INTO `wp_rg_form_view` VALUES("75918", "3", "2018-02-01 07:32:56", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75919", "9", "2018-02-01 07:32:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75920", "8", "2018-02-01 07:32:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75921", "10", "2018-02-01 07:32:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75922", "15", "2018-02-01 07:33:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75923", "18", "2018-02-01 07:33:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75924", "3", "2018-02-01 08:02:32", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("75925", "3", "2018-02-01 09:15:30", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("75926", "9", "2018-02-01 09:15:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75927", "8", "2018-02-01 09:15:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75928", "10", "2018-02-01 09:15:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75929", "15", "2018-02-01 09:15:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75930", "18", "2018-02-01 09:15:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75931", "3", "2018-02-01 10:08:05", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("75932", "8", "2018-02-01 10:12:37", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("75933", "18", "2018-02-01 10:38:13", "138.197.7.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("75934", "10", "2018-02-01 10:39:39", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("75935", "9", "2018-02-01 10:40:08", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75936", "15", "2018-02-01 10:40:11", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75937", "18", "2018-02-01 11:05:16", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75938", "3", "2018-02-01 11:13:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("75939", "9", "2018-02-01 11:13:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75940", "8", "2018-02-01 11:13:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75941", "10", "2018-02-01 11:13:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75942", "15", "2018-02-01 11:13:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75943", "18", "2018-02-01 13:00:59", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("75944", "3", "2018-02-01 13:02:15", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("75945", "9", "2018-02-01 13:02:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75946", "8", "2018-02-01 13:02:16", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75947", "10", "2018-02-01 13:02:17", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("75948", "15", "2018-02-01 13:02:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75949", "3", "2018-02-01 14:01:43", "34.207.57.50", "59");
INSERT INTO `wp_rg_form_view` VALUES("75950", "14", "2018-02-01 14:28:07", "104.131.186.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("75951", "6", "2018-02-01 14:29:03", "104.131.186.134", "1");
INSERT INTO `wp_rg_form_view` VALUES("75952", "10", "2018-02-01 14:31:24", "104.131.186.134", "10");
INSERT INTO `wp_rg_form_view` VALUES("75953", "9", "2018-02-01 14:35:51", "104.131.186.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("75954", "15", "2018-02-01 14:42:11", "104.131.186.134", "2");
INSERT INTO `wp_rg_form_view` VALUES("75955", "8", "2018-02-01 14:43:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75956", "18", "2018-02-01 14:43:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75957", "3", "2018-02-01 15:01:01", "104.131.186.134", "36");
INSERT INTO `wp_rg_form_view` VALUES("75958", "18", "2018-02-01 15:03:27", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("75959", "8", "2018-02-01 15:05:32", "104.131.186.134", "4");
INSERT INTO `wp_rg_form_view` VALUES("75960", "10", "2018-02-01 15:18:14", "217.182.132.21", "7");
INSERT INTO `wp_rg_form_view` VALUES("75961", "9", "2018-02-01 15:30:51", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75962", "15", "2018-02-01 15:30:57", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("75963", "3", "2018-02-01 16:20:49", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("75964", "15", "2018-02-01 16:21:04", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75965", "9", "2018-02-01 16:24:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75966", "8", "2018-02-01 16:24:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75967", "10", "2018-02-01 16:24:38", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("75968", "18", "2018-02-01 16:24:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75969", "18", "2018-02-01 17:11:25", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("75970", "3", "2018-02-01 18:05:30", "96.50.12.121", "35");
INSERT INTO `wp_rg_form_view` VALUES("75971", "9", "2018-02-01 18:15:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75972", "8", "2018-02-01 18:15:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75973", "10", "2018-02-01 18:15:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75974", "15", "2018-02-01 18:15:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75975", "18", "2018-02-01 18:16:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75976", "10", "2018-02-01 19:30:06", "217.182.132.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("75977", "18", "2018-02-01 19:40:24", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75978", "3", "2018-02-01 20:10:06", "52.37.180.245", "63");
INSERT INTO `wp_rg_form_view` VALUES("75979", "9", "2018-02-01 20:10:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75980", "8", "2018-02-01 20:10:07", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("75981", "10", "2018-02-01 20:10:08", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("75982", "15", "2018-02-01 20:10:10", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("75983", "18", "2018-02-01 20:10:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75984", "18", "2018-02-01 21:05:59", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("75985", "10", "2018-02-01 21:49:57", "66.249.87.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("75986", "3", "2018-02-01 22:01:10", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("75987", "9", "2018-02-01 22:01:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75988", "8", "2018-02-01 22:01:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75989", "10", "2018-02-01 22:01:12", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("75990", "15", "2018-02-01 22:01:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75991", "18", "2018-02-01 22:01:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("75992", "8", "2018-02-01 23:02:11", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("75993", "3", "2018-02-01 23:02:35", "216.244.66.195", "37");
INSERT INTO `wp_rg_form_view` VALUES("75994", "9", "2018-02-01 23:15:50", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("75995", "18", "2018-02-01 23:20:43", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("75996", "10", "2018-02-01 23:41:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("75997", "15", "2018-02-01 23:41:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("75998", "3", "2018-02-02 01:30:56", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("75999", "9", "2018-02-02 01:30:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76000", "8", "2018-02-02 01:30:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76001", "10", "2018-02-02 01:30:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76002", "15", "2018-02-02 01:31:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76003", "18", "2018-02-02 01:31:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76004", "18", "2018-02-02 02:02:20", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76005", "3", "2018-02-02 02:44:49", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("76006", "3", "2018-02-02 03:33:00", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76007", "9", "2018-02-02 03:33:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76008", "8", "2018-02-02 03:33:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76009", "10", "2018-02-02 03:33:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76010", "15", "2018-02-02 03:33:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76011", "18", "2018-02-02 03:33:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76012", "18", "2018-02-02 04:28:46", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76013", "3", "2018-02-02 05:17:17", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("76014", "8", "2018-02-02 05:17:53", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("76015", "18", "2018-02-02 05:18:17", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76016", "9", "2018-02-02 05:23:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76017", "10", "2018-02-02 05:23:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76018", "15", "2018-02-02 05:23:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76019", "3", "2018-02-02 06:15:20", "216.244.66.247", "15");
INSERT INTO `wp_rg_form_view` VALUES("76020", "8", "2018-02-02 06:16:52", "157.55.39.237", "2");
INSERT INTO `wp_rg_form_view` VALUES("76021", "10", "2018-02-02 06:19:12", "40.77.167.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("76022", "6", "2018-02-02 06:19:44", "40.77.167.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("76023", "3", "2018-02-02 07:04:52", "164.132.161.31", "31");
INSERT INTO `wp_rg_form_view` VALUES("76024", "9", "2018-02-02 07:05:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76025", "8", "2018-02-02 07:05:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76026", "10", "2018-02-02 07:05:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76027", "15", "2018-02-02 07:05:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76028", "18", "2018-02-02 07:05:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76029", "3", "2018-02-02 08:12:50", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("76030", "9", "2018-02-02 08:58:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76031", "8", "2018-02-02 08:58:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76032", "10", "2018-02-02 08:58:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76033", "15", "2018-02-02 08:58:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76034", "18", "2018-02-02 08:58:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76035", "10", "2018-02-02 09:28:49", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76036", "3", "2018-02-02 09:29:32", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76037", "18", "2018-02-02 09:49:03", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76038", "18", "2018-02-02 10:21:42", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76039", "3", "2018-02-02 10:40:00", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("76040", "9", "2018-02-02 10:40:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76041", "8", "2018-02-02 10:40:02", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76042", "10", "2018-02-02 10:40:02", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("76043", "15", "2018-02-02 10:40:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76044", "3", "2018-02-02 11:21:12", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("76045", "18", "2018-02-02 11:49:59", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76046", "3", "2018-02-02 12:16:56", "216.244.66.247", "63");
INSERT INTO `wp_rg_form_view` VALUES("76047", "9", "2018-02-02 12:35:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76048", "8", "2018-02-02 12:35:00", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76049", "10", "2018-02-02 12:35:01", "52.37.180.245", "12");
INSERT INTO `wp_rg_form_view` VALUES("76050", "15", "2018-02-02 12:35:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76051", "18", "2018-02-02 12:35:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76052", "3", "2018-02-02 14:20:44", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("76053", "9", "2018-02-02 14:20:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76054", "8", "2018-02-02 14:20:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76055", "10", "2018-02-02 14:20:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76056", "15", "2018-02-02 14:20:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76057", "18", "2018-02-02 14:20:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76058", "3", "2018-02-02 16:13:18", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76059", "9", "2018-02-02 16:13:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76060", "8", "2018-02-02 16:13:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76061", "10", "2018-02-02 16:13:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76062", "15", "2018-02-02 16:13:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76063", "18", "2018-02-02 16:13:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76064", "10", "2018-02-02 17:16:18", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("76065", "18", "2018-02-02 17:21:17", "184.66.27.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("76066", "9", "2018-02-02 17:30:49", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76067", "3", "2018-02-02 17:31:28", "216.244.66.247", "31");
INSERT INTO `wp_rg_form_view` VALUES("76068", "8", "2018-02-02 17:58:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76069", "15", "2018-02-02 17:58:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76070", "18", "2018-02-02 18:04:55", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76071", "3", "2018-02-02 18:37:26", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76072", "18", "2018-02-02 19:00:52", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76073", "5", "2018-02-02 19:31:06", "54.36.149.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("76074", "3", "2018-02-02 19:34:02", "54.36.149.84", "31");
INSERT INTO `wp_rg_form_view` VALUES("76075", "9", "2018-02-02 19:54:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76076", "8", "2018-02-02 19:54:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76077", "10", "2018-02-02 19:54:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76078", "15", "2018-02-02 19:54:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76079", "10", "2018-02-02 20:46:41", "199.59.150.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("76080", "18", "2018-02-02 21:23:33", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76081", "3", "2018-02-02 21:48:59", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("76082", "9", "2018-02-02 21:50:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76083", "8", "2018-02-02 21:50:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76084", "10", "2018-02-02 21:50:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76085", "15", "2018-02-02 21:50:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76086", "14", "2018-02-02 21:56:48", "187.36.145.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("76087", "3", "2018-02-02 22:05:58", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76088", "18", "2018-02-02 22:45:35", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76089", "18", "2018-02-02 23:12:30", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76090", "3", "2018-02-02 23:31:01", "180.76.15.21", "33");
INSERT INTO `wp_rg_form_view` VALUES("76091", "9", "2018-02-02 23:48:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76092", "8", "2018-02-02 23:48:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76093", "10", "2018-02-02 23:48:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76094", "15", "2018-02-02 23:48:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76095", "3", "2018-02-03 00:11:42", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("76096", "10", "2018-02-03 00:22:29", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76097", "18", "2018-02-03 00:47:52", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76098", "18", "2018-02-03 01:06:38", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76099", "10", "2018-02-03 01:17:29", "54.36.148.239", "6");
INSERT INTO `wp_rg_form_view` VALUES("76100", "3", "2018-02-03 01:26:03", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76101", "9", "2018-02-03 01:26:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76102", "8", "2018-02-03 01:26:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76103", "15", "2018-02-03 01:26:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76104", "10", "2018-02-03 02:04:39", "66.249.87.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("76105", "3", "2018-02-03 02:39:51", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76106", "3", "2018-02-03 03:17:07", "52.37.180.245", "41");
INSERT INTO `wp_rg_form_view` VALUES("76107", "9", "2018-02-03 03:17:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76108", "8", "2018-02-03 03:17:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76109", "10", "2018-02-03 03:17:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76110", "15", "2018-02-03 03:17:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76111", "18", "2018-02-03 03:17:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76112", "18", "2018-02-03 04:00:32", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76113", "10", "2018-02-03 04:14:00", "184.66.129.248", "9");
INSERT INTO `wp_rg_form_view` VALUES("76114", "3", "2018-02-03 04:14:57", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("76115", "9", "2018-02-03 04:57:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76116", "8", "2018-02-03 04:57:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76117", "15", "2018-02-03 04:57:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76118", "3", "2018-02-03 05:04:24", "66.249.69.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("76119", "5", "2018-02-03 06:09:02", "173.208.128.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("76120", "18", "2018-02-03 06:22:05", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76121", "6", "2018-02-03 06:32:29", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76122", "3", "2018-02-03 06:33:35", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("76123", "9", "2018-02-03 06:40:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76124", "8", "2018-02-03 06:40:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76125", "10", "2018-02-03 06:40:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76126", "15", "2018-02-03 06:40:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76127", "3", "2018-02-03 07:30:27", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76128", "3", "2018-02-03 08:23:59", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76129", "9", "2018-02-03 08:24:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76130", "8", "2018-02-03 08:24:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76131", "10", "2018-02-03 08:24:01", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76132", "15", "2018-02-03 08:24:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76133", "18", "2018-02-03 08:24:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76134", "8", "2018-02-03 09:11:37", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76135", "3", "2018-02-03 09:11:58", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76136", "8", "2018-02-03 10:05:36", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("76137", "3", "2018-02-03 10:08:25", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76138", "9", "2018-02-03 10:08:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76139", "10", "2018-02-03 10:08:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76140", "15", "2018-02-03 10:08:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76141", "18", "2018-02-03 10:08:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76142", "18", "2018-02-03 11:05:50", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76143", "3", "2018-02-03 11:51:35", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76144", "9", "2018-02-03 11:51:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76145", "8", "2018-02-03 11:51:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76146", "10", "2018-02-03 11:51:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76147", "15", "2018-02-03 11:51:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76148", "3", "2018-02-03 12:43:04", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76149", "3", "2018-02-03 13:05:11", "216.244.66.195", "61");
INSERT INTO `wp_rg_form_view` VALUES("76150", "9", "2018-02-03 13:31:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76151", "8", "2018-02-03 13:31:30", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76152", "10", "2018-02-03 13:31:30", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("76153", "15", "2018-02-03 13:31:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76154", "18", "2018-02-03 13:31:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76155", "3", "2018-02-03 15:20:26", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("76156", "9", "2018-02-03 15:25:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76157", "8", "2018-02-03 15:25:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76158", "10", "2018-02-03 15:25:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76159", "15", "2018-02-03 15:26:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76160", "18", "2018-02-03 15:26:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76161", "10", "2018-02-03 16:56:56", "164.132.161.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("76162", "10", "2018-02-03 17:00:12", "66.249.89.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("76163", "18", "2018-02-03 17:17:27", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("76164", "3", "2018-02-03 17:22:45", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76165", "9", "2018-02-03 17:22:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76166", "8", "2018-02-03 17:22:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76167", "15", "2018-02-03 17:22:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76168", "3", "2018-02-03 18:25:33", "46.229.168.71", "9");
INSERT INTO `wp_rg_form_view` VALUES("76169", "18", "2018-02-03 18:28:16", "46.229.168.74", "4");
INSERT INTO `wp_rg_form_view` VALUES("76170", "11", "2018-02-03 18:29:41", "46.229.168.65", "3");
INSERT INTO `wp_rg_form_view` VALUES("76171", "3", "2018-02-03 19:10:48", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("76172", "9", "2018-02-03 19:10:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76173", "8", "2018-02-03 19:10:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76174", "10", "2018-02-03 19:10:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76175", "15", "2018-02-03 19:10:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76176", "18", "2018-02-03 19:10:57", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76177", "3", "2018-02-03 20:08:52", "40.77.167.112", "32");
INSERT INTO `wp_rg_form_view` VALUES("76178", "18", "2018-02-03 20:32:53", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("76179", "9", "2018-02-03 20:50:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76180", "8", "2018-02-03 20:50:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76181", "10", "2018-02-03 20:50:44", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76182", "15", "2018-02-03 20:50:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76183", "3", "2018-02-03 21:04:41", "24.69.155.121", "3");
INSERT INTO `wp_rg_form_view` VALUES("76184", "18", "2018-02-03 21:41:50", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76185", "3", "2018-02-03 22:03:11", "164.132.161.86", "32");
INSERT INTO `wp_rg_form_view` VALUES("76186", "14", "2018-02-03 22:10:20", "24.69.168.10", "1");
INSERT INTO `wp_rg_form_view` VALUES("76187", "18", "2018-02-03 22:15:42", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76188", "10", "2018-02-03 22:33:37", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("76189", "9", "2018-02-03 22:48:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76190", "8", "2018-02-03 22:48:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76191", "15", "2018-02-03 22:48:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76192", "18", "2018-02-04 00:22:15", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76193", "3", "2018-02-04 00:36:14", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76194", "9", "2018-02-04 00:36:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76195", "8", "2018-02-04 00:36:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76196", "10", "2018-02-04 00:36:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76197", "15", "2018-02-04 00:36:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76198", "3", "2018-02-04 01:04:05", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("76199", "18", "2018-02-04 02:03:56", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76200", "10", "2018-02-04 02:25:12", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("76201", "3", "2018-02-04 02:26:10", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("76202", "9", "2018-02-04 02:26:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76203", "8", "2018-02-04 02:26:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76204", "15", "2018-02-04 02:26:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76205", "18", "2018-02-04 03:10:21", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76206", "3", "2018-02-04 03:25:34", "54.36.149.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("76207", "10", "2018-02-04 04:16:07", "216.244.66.247", "16");
INSERT INTO `wp_rg_form_view` VALUES("76208", "3", "2018-02-04 04:16:17", "52.37.180.245", "73");
INSERT INTO `wp_rg_form_view` VALUES("76209", "9", "2018-02-04 04:16:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76210", "8", "2018-02-04 04:16:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76211", "15", "2018-02-04 04:16:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76212", "18", "2018-02-04 04:16:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76213", "3", "2018-02-04 05:30:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76214", "18", "2018-02-04 05:35:44", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76215", "3", "2018-02-04 06:01:38", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76216", "9", "2018-02-04 06:01:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76217", "8", "2018-02-04 06:01:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76218", "10", "2018-02-04 06:01:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76219", "15", "2018-02-04 06:01:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76220", "18", "2018-02-04 06:01:44", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76221", "3", "2018-02-04 07:18:39", "216.244.66.247", "61");
INSERT INTO `wp_rg_form_view` VALUES("76222", "18", "2018-02-04 07:19:08", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("76223", "10", "2018-02-04 07:20:32", "66.249.89.147", "11");
INSERT INTO `wp_rg_form_view` VALUES("76224", "9", "2018-02-04 07:25:03", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76225", "8", "2018-02-04 07:25:03", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("76226", "15", "2018-02-04 07:25:08", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76227", "3", "2018-02-04 09:36:57", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76228", "9", "2018-02-04 09:36:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76229", "8", "2018-02-04 09:36:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76230", "10", "2018-02-04 09:36:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76231", "15", "2018-02-04 09:37:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76232", "18", "2018-02-04 09:37:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76233", "14", "2018-02-04 09:44:36", "77.75.78.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("76234", "10", "2018-02-04 10:15:52", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76235", "8", "2018-02-04 11:01:02", "66.249.64.85", "3");
INSERT INTO `wp_rg_form_view` VALUES("76236", "10", "2018-02-04 11:05:46", "66.249.64.83", "6");
INSERT INTO `wp_rg_form_view` VALUES("76237", "18", "2018-02-04 11:19:43", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76238", "3", "2018-02-04 11:24:39", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76239", "9", "2018-02-04 11:24:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76240", "15", "2018-02-04 11:24:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76241", "18", "2018-02-04 12:27:05", "138.197.111.12", "1");
INSERT INTO `wp_rg_form_view` VALUES("76242", "14", "2018-02-04 12:55:17", "92.114.61.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("76243", "3", "2018-02-04 13:12:36", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("76244", "9", "2018-02-04 13:12:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76245", "8", "2018-02-04 13:12:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76246", "10", "2018-02-04 13:12:38", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("76247", "15", "2018-02-04 13:12:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76248", "18", "2018-02-04 13:12:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76249", "18", "2018-02-04 14:44:13", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76250", "8", "2018-02-04 14:51:28", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("76251", "3", "2018-02-04 14:51:42", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("76252", "9", "2018-02-04 14:59:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76253", "10", "2018-02-04 14:59:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76254", "15", "2018-02-04 14:59:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76255", "18", "2018-02-04 15:37:52", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76256", "18", "2018-02-04 16:05:25", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("76257", "9", "2018-02-04 16:47:41", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76258", "3", "2018-02-04 16:48:52", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76259", "8", "2018-02-04 16:48:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76260", "10", "2018-02-04 16:48:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76261", "15", "2018-02-04 16:48:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76262", "3", "2018-02-04 17:42:40", "62.210.251.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76263", "3", "2018-02-04 18:04:34", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("76264", "9", "2018-02-04 18:32:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76265", "8", "2018-02-04 18:32:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76266", "10", "2018-02-04 18:32:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76267", "15", "2018-02-04 18:32:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76268", "18", "2018-02-04 18:32:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76269", "3", "2018-02-04 19:51:13", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76270", "3", "2018-02-04 20:01:36", "217.182.132.184", "41");
INSERT INTO `wp_rg_form_view` VALUES("76271", "10", "2018-02-04 20:12:52", "66.249.89.151", "6");
INSERT INTO `wp_rg_form_view` VALUES("76272", "9", "2018-02-04 20:30:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76273", "8", "2018-02-04 20:30:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76274", "15", "2018-02-04 20:31:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76275", "18", "2018-02-04 20:31:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76276", "3", "2018-02-04 21:00:25", "70.67.56.127", "5");
INSERT INTO `wp_rg_form_view` VALUES("76277", "8", "2018-02-04 21:01:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76278", "18", "2018-02-04 21:02:00", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76279", "14", "2018-02-04 21:25:29", "154.20.30.110", "1");
INSERT INTO `wp_rg_form_view` VALUES("76280", "3", "2018-02-04 22:21:34", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76281", "9", "2018-02-04 22:21:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76282", "8", "2018-02-04 22:21:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76283", "10", "2018-02-04 22:21:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76284", "15", "2018-02-04 22:21:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76285", "18", "2018-02-04 22:21:40", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("76286", "18", "2018-02-04 23:55:26", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76287", "3", "2018-02-05 00:04:17", "217.182.132.93", "31");
INSERT INTO `wp_rg_form_view` VALUES("76288", "18", "2018-02-05 00:07:30", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76289", "9", "2018-02-05 00:11:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76290", "8", "2018-02-05 00:11:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76291", "10", "2018-02-05 00:11:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76292", "15", "2018-02-05 00:11:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76293", "9", "2018-02-05 01:01:12", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76294", "3", "2018-02-05 01:32:41", "68.180.228.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("76295", "8", "2018-02-05 01:51:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76296", "10", "2018-02-05 01:51:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76297", "15", "2018-02-05 01:51:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76298", "18", "2018-02-05 01:51:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76299", "3", "2018-02-05 02:44:06", "54.36.148.85", "1");
INSERT INTO `wp_rg_form_view` VALUES("76300", "3", "2018-02-05 03:13:59", "194.187.170.139", "31");
INSERT INTO `wp_rg_form_view` VALUES("76301", "10", "2018-02-05 03:23:05", "194.187.170.139", "8");
INSERT INTO `wp_rg_form_view` VALUES("76302", "9", "2018-02-05 03:46:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76303", "8", "2018-02-05 03:46:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76304", "15", "2018-02-05 03:46:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76305", "18", "2018-02-05 03:46:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76306", "14", "2018-02-05 03:48:38", "207.6.121.96", "1");
INSERT INTO `wp_rg_form_view` VALUES("76307", "10", "2018-02-05 04:22:21", "194.187.170.139", "2");
INSERT INTO `wp_rg_form_view` VALUES("76308", "18", "2018-02-05 04:44:50", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76309", "3", "2018-02-05 04:45:54", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76310", "10", "2018-02-05 05:01:12", "194.187.170.139", "7");
INSERT INTO `wp_rg_form_view` VALUES("76311", "3", "2018-02-05 05:26:51", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76312", "9", "2018-02-05 05:26:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76313", "8", "2018-02-05 05:26:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76314", "15", "2018-02-05 05:26:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76315", "18", "2018-02-05 05:26:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76316", "18", "2018-02-05 06:41:40", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76317", "3", "2018-02-05 06:45:26", "51.255.71.100", "2");
INSERT INTO `wp_rg_form_view` VALUES("76318", "3", "2018-02-05 07:21:45", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76319", "9", "2018-02-05 07:21:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76320", "8", "2018-02-05 07:21:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76321", "10", "2018-02-05 07:21:47", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("76322", "15", "2018-02-05 07:21:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76323", "18", "2018-02-05 07:21:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76324", "10", "2018-02-05 08:28:36", "72.14.199.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("76325", "3", "2018-02-05 08:56:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76326", "9", "2018-02-05 08:56:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76327", "8", "2018-02-05 08:56:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76328", "15", "2018-02-05 08:56:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76329", "18", "2018-02-05 08:56:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76330", "18", "2018-02-05 09:02:18", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76331", "3", "2018-02-05 09:41:02", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76332", "14", "2018-02-05 10:47:03", "125.141.200.36", "5");
INSERT INTO `wp_rg_form_view` VALUES("76333", "3", "2018-02-05 10:47:13", "125.141.200.36", "32");
INSERT INTO `wp_rg_form_view` VALUES("76334", "9", "2018-02-05 10:49:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76335", "8", "2018-02-05 10:49:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76336", "10", "2018-02-05 10:49:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76337", "15", "2018-02-05 10:49:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76338", "18", "2018-02-05 10:49:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76339", "9", "2018-02-05 11:08:03", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76340", "3", "2018-02-05 11:08:19", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76341", "3", "2018-02-05 12:51:05", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76342", "9", "2018-02-05 12:51:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76343", "8", "2018-02-05 12:51:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76344", "10", "2018-02-05 12:51:07", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76345", "15", "2018-02-05 12:51:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76346", "18", "2018-02-05 12:51:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76347", "3", "2018-02-05 13:29:29", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76348", "3", "2018-02-05 14:38:23", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76349", "9", "2018-02-05 14:38:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76350", "8", "2018-02-05 14:38:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76351", "10", "2018-02-05 14:38:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76352", "15", "2018-02-05 14:38:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76353", "18", "2018-02-05 14:38:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76354", "3", "2018-02-05 16:07:00", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("76355", "9", "2018-02-05 16:46:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76356", "8", "2018-02-05 16:46:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76357", "10", "2018-02-05 16:46:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76358", "15", "2018-02-05 16:46:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76359", "18", "2018-02-05 16:46:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76360", "18", "2018-02-05 17:03:15", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76361", "3", "2018-02-05 17:04:21", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("76362", "3", "2018-02-05 18:37:53", "24.108.38.201", "31");
INSERT INTO `wp_rg_form_view` VALUES("76363", "9", "2018-02-05 18:45:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76364", "8", "2018-02-05 18:45:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76365", "10", "2018-02-05 18:45:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76366", "15", "2018-02-05 18:45:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76367", "18", "2018-02-05 18:45:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76368", "6", "2018-02-05 19:29:59", "51.255.71.118", "1");
INSERT INTO `wp_rg_form_view` VALUES("76369", "10", "2018-02-05 20:16:44", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("76370", "3", "2018-02-05 20:18:54", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("76371", "9", "2018-02-05 20:33:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76372", "8", "2018-02-05 20:33:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76373", "15", "2018-02-05 20:33:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76374", "18", "2018-02-05 20:33:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76375", "3", "2018-02-05 21:21:56", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76376", "3", "2018-02-05 22:26:29", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76377", "9", "2018-02-05 22:26:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76378", "8", "2018-02-05 22:26:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76379", "10", "2018-02-05 22:26:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76380", "15", "2018-02-05 22:26:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76381", "18", "2018-02-05 22:26:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76382", "14", "2018-02-05 23:11:30", "70.66.128.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("76383", "3", "2018-02-05 23:13:06", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76384", "18", "2018-02-06 00:02:23", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76385", "10", "2018-02-06 00:10:08", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("76386", "3", "2018-02-06 00:21:43", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76387", "9", "2018-02-06 00:21:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76388", "8", "2018-02-06 00:21:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76389", "15", "2018-02-06 00:21:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76390", "18", "2018-02-06 01:04:31", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76391", "8", "2018-02-06 01:29:19", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76392", "3", "2018-02-06 01:29:48", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("76393", "3", "2018-02-06 02:12:45", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76394", "9", "2018-02-06 02:12:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76395", "8", "2018-02-06 02:12:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76396", "10", "2018-02-06 02:12:47", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76397", "15", "2018-02-06 02:12:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76398", "18", "2018-02-06 02:12:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76399", "18", "2018-02-06 03:44:59", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76400", "3", "2018-02-06 04:11:33", "52.37.180.245", "52");
INSERT INTO `wp_rg_form_view` VALUES("76401", "9", "2018-02-06 04:11:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76402", "8", "2018-02-06 04:11:35", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76403", "10", "2018-02-06 04:11:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76404", "15", "2018-02-06 04:11:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76405", "18", "2018-02-06 04:11:40", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("76406", "3", "2018-02-06 05:45:48", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("76407", "14", "2018-02-06 05:56:17", "99.199.2.116", "1");
INSERT INTO `wp_rg_form_view` VALUES("76408", "9", "2018-02-06 05:57:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76409", "8", "2018-02-06 05:57:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76410", "10", "2018-02-06 05:57:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76411", "15", "2018-02-06 05:57:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76412", "18", "2018-02-06 05:57:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76413", "18", "2018-02-06 06:08:32", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76414", "18", "2018-02-06 07:01:26", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76415", "3", "2018-02-06 07:27:01", "40.77.167.22", "45");
INSERT INTO `wp_rg_form_view` VALUES("76416", "9", "2018-02-06 07:27:18", "40.77.167.88", "4");
INSERT INTO `wp_rg_form_view` VALUES("76417", "10", "2018-02-06 07:27:47", "40.77.167.20", "10");
INSERT INTO `wp_rg_form_view` VALUES("76418", "8", "2018-02-06 07:57:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76419", "15", "2018-02-06 07:57:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76420", "3", "2018-02-06 08:18:19", "216.244.66.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("76421", "3", "2018-02-06 09:05:21", "40.77.167.88", "31");
INSERT INTO `wp_rg_form_view` VALUES("76422", "9", "2018-02-06 09:52:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76423", "8", "2018-02-06 09:52:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76424", "10", "2018-02-06 09:52:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76425", "15", "2018-02-06 09:52:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76426", "18", "2018-02-06 09:52:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76427", "3", "2018-02-06 10:20:36", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("76428", "3", "2018-02-06 11:46:57", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76429", "9", "2018-02-06 11:46:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76430", "8", "2018-02-06 11:47:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76431", "10", "2018-02-06 11:47:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76432", "15", "2018-02-06 11:47:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76433", "18", "2018-02-06 11:47:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76434", "3", "2018-02-06 12:48:58", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("76435", "10", "2018-02-06 12:52:36", "54.36.148.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76436", "10", "2018-02-06 13:00:37", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("76437", "6", "2018-02-06 13:30:10", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76438", "3", "2018-02-06 13:30:45", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("76439", "9", "2018-02-06 13:46:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76440", "8", "2018-02-06 13:46:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76441", "15", "2018-02-06 13:46:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76442", "18", "2018-02-06 13:46:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76443", "10", "2018-02-06 14:13:13", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("76444", "6", "2018-02-06 15:30:34", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76445", "3", "2018-02-06 15:31:11", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("76446", "9", "2018-02-06 15:54:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76447", "8", "2018-02-06 15:54:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76448", "10", "2018-02-06 15:54:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76449", "15", "2018-02-06 15:54:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76450", "18", "2018-02-06 15:54:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76451", "3", "2018-02-06 16:03:04", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("76452", "18", "2018-02-06 16:27:51", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76453", "14", "2018-02-06 16:48:19", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("76454", "3", "2018-02-06 17:52:05", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76455", "9", "2018-02-06 17:52:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76456", "8", "2018-02-06 17:52:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76457", "10", "2018-02-06 17:52:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76458", "15", "2018-02-06 17:52:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76459", "18", "2018-02-06 17:52:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76460", "18", "2018-02-06 18:15:09", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76461", "3", "2018-02-06 18:40:50", "208.110.93.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("76462", "8", "2018-02-06 19:02:52", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("76463", "3", "2018-02-06 19:03:37", "216.244.66.247", "37");
INSERT INTO `wp_rg_form_view` VALUES("76464", "9", "2018-02-06 19:08:48", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76465", "10", "2018-02-06 19:40:06", "194.187.170.124", "6");
INSERT INTO `wp_rg_form_view` VALUES("76466", "15", "2018-02-06 19:43:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76467", "18", "2018-02-06 19:43:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76468", "10", "2018-02-06 20:00:20", "194.187.170.124", "3");
INSERT INTO `wp_rg_form_view` VALUES("76469", "3", "2018-02-06 20:09:24", "70.67.244.136", "2");
INSERT INTO `wp_rg_form_view` VALUES("76470", "18", "2018-02-06 21:06:05", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76471", "10", "2018-02-06 21:16:53", "194.187.170.124", "7");
INSERT INTO `wp_rg_form_view` VALUES("76472", "3", "2018-02-06 21:32:36", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("76473", "9", "2018-02-06 21:32:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76474", "8", "2018-02-06 21:32:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76475", "15", "2018-02-06 21:32:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76476", "10", "2018-02-06 22:15:54", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("76477", "3", "2018-02-06 22:16:38", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("76478", "9", "2018-02-06 22:17:18", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76479", "8", "2018-02-06 22:17:18", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76480", "15", "2018-02-06 22:17:22", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76481", "18", "2018-02-06 22:17:24", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76482", "3", "2018-02-06 23:09:54", "216.244.66.247", "62");
INSERT INTO `wp_rg_form_view` VALUES("76483", "9", "2018-02-06 23:09:55", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76484", "8", "2018-02-06 23:09:56", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("76485", "10", "2018-02-06 23:09:57", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("76486", "15", "2018-02-06 23:09:59", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76487", "18", "2018-02-06 23:10:02", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76488", "18", "2018-02-07 00:20:12", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76489", "3", "2018-02-07 00:26:49", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76490", "3", "2018-02-07 01:03:19", "216.244.66.195", "38");
INSERT INTO `wp_rg_form_view` VALUES("76491", "18", "2018-02-07 01:10:37", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("76492", "9", "2018-02-07 01:17:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76493", "8", "2018-02-07 01:17:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76494", "10", "2018-02-07 01:17:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76495", "15", "2018-02-07 01:17:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76496", "18", "2018-02-07 02:00:04", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76497", "3", "2018-02-07 02:37:35", "40.77.167.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("76498", "10", "2018-02-07 02:46:54", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("76499", "3", "2018-02-07 03:12:36", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76500", "9", "2018-02-07 03:12:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76501", "8", "2018-02-07 03:12:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76502", "10", "2018-02-07 03:12:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76503", "15", "2018-02-07 03:12:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76504", "18", "2018-02-07 03:12:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76505", "10", "2018-02-07 04:17:52", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("76506", "6", "2018-02-07 05:03:33", "144.76.71.83", "1");
INSERT INTO `wp_rg_form_view` VALUES("76507", "3", "2018-02-07 05:11:11", "139.162.246.24", "37");
INSERT INTO `wp_rg_form_view` VALUES("76508", "10", "2018-02-07 05:11:11", "139.162.246.24", "10");
INSERT INTO `wp_rg_form_view` VALUES("76509", "15", "2018-02-07 05:11:12", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("76510", "9", "2018-02-07 05:12:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76511", "8", "2018-02-07 05:12:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76512", "18", "2018-02-07 05:12:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76513", "3", "2018-02-07 06:15:19", "68.180.228.176", "8");
INSERT INTO `wp_rg_form_view` VALUES("76514", "18", "2018-02-07 06:51:49", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76515", "10", "2018-02-07 06:53:04", "139.162.246.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("76516", "15", "2018-02-07 06:53:05", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("76517", "10", "2018-02-07 07:00:06", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("76518", "3", "2018-02-07 07:10:35", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76519", "9", "2018-02-07 07:10:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76520", "8", "2018-02-07 07:10:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76521", "15", "2018-02-07 07:10:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76522", "18", "2018-02-07 07:10:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76523", "3", "2018-02-07 08:36:38", "139.162.246.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("76524", "10", "2018-02-07 08:36:39", "139.162.246.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("76525", "15", "2018-02-07 08:36:40", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("76526", "3", "2018-02-07 09:14:01", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76527", "9", "2018-02-07 09:14:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76528", "8", "2018-02-07 09:14:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76529", "10", "2018-02-07 09:14:03", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76530", "15", "2018-02-07 09:14:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76531", "18", "2018-02-07 09:14:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76532", "3", "2018-02-07 11:01:41", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("76533", "9", "2018-02-07 11:01:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76534", "8", "2018-02-07 11:01:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76535", "10", "2018-02-07 11:01:43", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76536", "15", "2018-02-07 11:01:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76537", "18", "2018-02-07 11:01:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76538", "3", "2018-02-07 12:02:02", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("76539", "9", "2018-02-07 12:43:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76540", "8", "2018-02-07 12:43:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76541", "10", "2018-02-07 12:43:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76542", "15", "2018-02-07 12:43:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76543", "18", "2018-02-07 12:43:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76544", "14", "2018-02-07 13:13:39", "82.211.57.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("76545", "3", "2018-02-07 13:42:29", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("76546", "3", "2018-02-07 14:33:50", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("76547", "9", "2018-02-07 14:33:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76548", "8", "2018-02-07 14:33:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76549", "10", "2018-02-07 14:33:52", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76550", "15", "2018-02-07 14:33:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76551", "18", "2018-02-07 14:33:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76552", "3", "2018-02-07 15:16:40", "66.249.79.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("76553", "10", "2018-02-07 15:44:59", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("76554", "18", "2018-02-07 16:31:13", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76555", "3", "2018-02-07 16:48:59", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("76556", "9", "2018-02-07 16:52:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76557", "8", "2018-02-07 16:52:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76558", "10", "2018-02-07 16:52:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76559", "15", "2018-02-07 16:52:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76560", "3", "2018-02-07 17:57:10", "88.99.19.242", "1");
INSERT INTO `wp_rg_form_view` VALUES("76561", "3", "2018-02-07 18:03:53", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("76562", "10", "2018-02-07 18:24:30", "54.36.149.80", "6");
INSERT INTO `wp_rg_form_view` VALUES("76563", "18", "2018-02-07 18:33:59", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76564", "9", "2018-02-07 18:37:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76565", "8", "2018-02-07 18:37:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76566", "15", "2018-02-07 18:37:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76567", "18", "2018-02-07 19:14:16", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76568", "10", "2018-02-07 19:17:55", "194.187.170.143", "3");
INSERT INTO `wp_rg_form_view` VALUES("76569", "3", "2018-02-07 19:32:10", "194.187.170.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("76570", "3", "2018-02-07 20:02:55", "194.187.170.143", "39");
INSERT INTO `wp_rg_form_view` VALUES("76571", "9", "2018-02-07 20:29:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76572", "8", "2018-02-07 20:29:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76573", "10", "2018-02-07 20:29:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76574", "15", "2018-02-07 20:29:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76575", "18", "2018-02-07 20:29:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76576", "14", "2018-02-07 20:43:32", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("76577", "18", "2018-02-07 21:10:48", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("76578", "3", "2018-02-07 21:26:07", "5.188.211.26", "4");
INSERT INTO `wp_rg_form_view` VALUES("76579", "8", "2018-02-07 21:59:32", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76580", "3", "2018-02-07 22:00:01", "216.244.66.195", "70");
INSERT INTO `wp_rg_form_view` VALUES("76581", "9", "2018-02-07 22:17:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76582", "8", "2018-02-07 22:17:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76583", "10", "2018-02-07 22:17:13", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("76584", "15", "2018-02-07 22:17:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76585", "18", "2018-02-07 22:17:18", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76586", "14", "2018-02-07 22:37:59", "45.55.240.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("76587", "6", "2018-02-07 22:40:00", "45.55.240.206", "1");
INSERT INTO `wp_rg_form_view` VALUES("76588", "10", "2018-02-07 23:00:01", "45.55.240.206", "3");
INSERT INTO `wp_rg_form_view` VALUES("76589", "3", "2018-02-07 23:00:05", "45.55.240.206", "56");
INSERT INTO `wp_rg_form_view` VALUES("76590", "8", "2018-02-07 23:21:04", "45.55.240.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("76591", "18", "2018-02-07 23:21:30", "45.55.240.206", "2");
INSERT INTO `wp_rg_form_view` VALUES("76592", "3", "2018-02-08 00:02:37", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76593", "9", "2018-02-08 00:02:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76594", "8", "2018-02-08 00:02:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76595", "10", "2018-02-08 00:02:41", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("76596", "15", "2018-02-08 00:02:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76597", "18", "2018-02-08 00:02:49", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("76598", "18", "2018-02-08 01:05:39", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76599", "3", "2018-02-08 01:19:59", "207.46.13.157", "31");
INSERT INTO `wp_rg_form_view` VALUES("76600", "9", "2018-02-08 01:53:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76601", "8", "2018-02-08 01:53:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76602", "10", "2018-02-08 01:53:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76603", "15", "2018-02-08 01:53:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76604", "18", "2018-02-08 02:13:40", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76605", "18", "2018-02-08 03:13:28", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76606", "3", "2018-02-08 03:15:30", "180.76.15.160", "32");
INSERT INTO `wp_rg_form_view` VALUES("76607", "9", "2018-02-08 03:38:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76608", "8", "2018-02-08 03:38:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76609", "10", "2018-02-08 03:38:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76610", "15", "2018-02-08 03:38:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76611", "3", "2018-02-08 05:28:46", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76612", "9", "2018-02-08 05:28:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76613", "8", "2018-02-08 05:28:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76614", "10", "2018-02-08 05:28:48", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76615", "15", "2018-02-08 05:28:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76616", "18", "2018-02-08 05:28:52", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("76617", "3", "2018-02-08 06:08:48", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76618", "15", "2018-02-08 06:09:02", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76619", "18", "2018-02-08 06:17:15", "194.187.170.139", "1");
INSERT INTO `wp_rg_form_view` VALUES("76620", "3", "2018-02-08 07:04:36", "68.180.228.176", "34");
INSERT INTO `wp_rg_form_view` VALUES("76621", "9", "2018-02-08 07:09:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76622", "8", "2018-02-08 07:09:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76623", "10", "2018-02-08 07:09:24", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76624", "15", "2018-02-08 07:09:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76625", "18", "2018-02-08 07:09:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76626", "3", "2018-02-08 08:51:57", "52.37.180.245", "38");
INSERT INTO `wp_rg_form_view` VALUES("76627", "9", "2018-02-08 08:51:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76628", "8", "2018-02-08 08:51:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76629", "10", "2018-02-08 08:51:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76630", "15", "2018-02-08 08:52:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76631", "18", "2018-02-08 08:52:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76632", "14", "2018-02-08 08:58:22", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("76633", "3", "2018-02-08 09:01:28", "5.9.98.130", "92");
INSERT INTO `wp_rg_form_view` VALUES("76634", "10", "2018-02-08 09:09:58", "5.9.98.130", "7");
INSERT INTO `wp_rg_form_view` VALUES("76635", "15", "2018-02-08 09:10:16", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("76636", "8", "2018-02-08 09:11:48", "5.9.98.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("76637", "9", "2018-02-08 09:12:04", "5.9.98.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("76638", "6", "2018-02-08 09:13:17", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("76639", "18", "2018-02-08 09:17:25", "89.221.215.5", "2");
INSERT INTO `wp_rg_form_view` VALUES("76640", "11", "2018-02-08 09:18:24", "89.221.215.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("76641", "12", "2018-02-08 09:26:50", "89.221.215.5", "1");
INSERT INTO `wp_rg_form_view` VALUES("76642", "3", "2018-02-08 10:33:24", "5.9.98.130", "79");
INSERT INTO `wp_rg_form_view` VALUES("76643", "9", "2018-02-08 10:49:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76644", "8", "2018-02-08 10:49:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76645", "10", "2018-02-08 10:49:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76646", "15", "2018-02-08 10:49:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76647", "18", "2018-02-08 10:49:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76648", "18", "2018-02-08 11:52:13", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76649", "3", "2018-02-08 11:52:36", "5.9.98.130", "43");
INSERT INTO `wp_rg_form_view` VALUES("76650", "3", "2018-02-08 12:00:05", "5.9.98.130", "102");
INSERT INTO `wp_rg_form_view` VALUES("76651", "10", "2018-02-08 12:32:47", "207.46.13.9", "18");
INSERT INTO `wp_rg_form_view` VALUES("76652", "11", "2018-02-08 12:33:13", "207.46.13.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("76653", "6", "2018-02-08 12:34:09", "207.46.13.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("76654", "15", "2018-02-08 12:34:20", "207.46.13.79", "2");
INSERT INTO `wp_rg_form_view` VALUES("76655", "8", "2018-02-08 12:34:49", "207.46.13.9", "4");
INSERT INTO `wp_rg_form_view` VALUES("76656", "9", "2018-02-08 12:52:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76657", "18", "2018-02-08 12:52:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76658", "18", "2018-02-08 13:41:01", "194.187.170.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("76659", "3", "2018-02-08 13:42:41", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76660", "3", "2018-02-08 14:41:08", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76661", "9", "2018-02-08 14:41:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76662", "8", "2018-02-08 14:41:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76663", "10", "2018-02-08 14:41:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76664", "15", "2018-02-08 14:41:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76665", "18", "2018-02-08 14:41:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76666", "14", "2018-02-08 15:07:22", "68.180.228.176", "2");
INSERT INTO `wp_rg_form_view` VALUES("76667", "3", "2018-02-08 15:12:43", "5.9.98.130", "195");
INSERT INTO `wp_rg_form_view` VALUES("76668", "3", "2018-02-08 16:24:08", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("76669", "9", "2018-02-08 16:24:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76670", "8", "2018-02-08 16:24:10", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("76671", "10", "2018-02-08 16:24:12", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("76672", "15", "2018-02-08 16:24:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76673", "18", "2018-02-08 16:24:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76674", "18", "2018-02-08 17:00:27", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76675", "3", "2018-02-08 17:03:28", "51.255.65.40", "2");
INSERT INTO `wp_rg_form_view` VALUES("76676", "3", "2018-02-08 18:17:46", "64.114.222.225", "33");
INSERT INTO `wp_rg_form_view` VALUES("76677", "10", "2018-02-08 18:22:33", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("76678", "9", "2018-02-08 18:24:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76679", "8", "2018-02-08 18:24:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76680", "15", "2018-02-08 18:24:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76681", "18", "2018-02-08 18:24:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76682", "3", "2018-02-08 19:18:07", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("76683", "3", "2018-02-08 20:01:06", "51.255.65.50", "32");
INSERT INTO `wp_rg_form_view` VALUES("76684", "9", "2018-02-08 20:18:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76685", "8", "2018-02-08 20:18:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76686", "10", "2018-02-08 20:18:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76687", "15", "2018-02-08 20:18:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76688", "18", "2018-02-08 20:18:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76689", "18", "2018-02-08 21:00:47", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76690", "3", "2018-02-08 21:03:34", "184.66.49.231", "12");
INSERT INTO `wp_rg_form_view` VALUES("76691", "14", "2018-02-08 21:04:35", "64.251.78.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("76692", "3", "2018-02-08 22:00:05", "5.9.98.130", "375");
INSERT INTO `wp_rg_form_view` VALUES("76693", "9", "2018-02-08 22:07:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76694", "8", "2018-02-08 22:07:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76695", "10", "2018-02-08 22:07:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76696", "15", "2018-02-08 22:07:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76697", "18", "2018-02-08 22:07:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76698", "3", "2018-02-08 23:00:00", "5.9.98.130", "34");
INSERT INTO `wp_rg_form_view` VALUES("76699", "18", "2018-02-08 23:42:00", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76700", "3", "2018-02-09 00:07:31", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76701", "9", "2018-02-09 00:07:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76702", "8", "2018-02-09 00:07:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76703", "10", "2018-02-09 00:07:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76704", "15", "2018-02-09 00:07:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76705", "18", "2018-02-09 00:07:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76706", "3", "2018-02-09 01:07:44", "5.188.211.14", "31");
INSERT INTO `wp_rg_form_view` VALUES("76707", "9", "2018-02-09 01:52:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76708", "8", "2018-02-09 01:52:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76709", "10", "2018-02-09 01:52:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76710", "15", "2018-02-09 01:52:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76711", "18", "2018-02-09 01:52:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76712", "3", "2018-02-09 02:10:04", "216.244.66.195", "13");
INSERT INTO `wp_rg_form_view` VALUES("76713", "18", "2018-02-09 03:04:35", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("76714", "3", "2018-02-09 03:31:20", "88.99.162.162", "31");
INSERT INTO `wp_rg_form_view` VALUES("76715", "9", "2018-02-09 03:47:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76716", "8", "2018-02-09 03:47:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76717", "10", "2018-02-09 03:47:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76718", "15", "2018-02-09 03:47:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76719", "3", "2018-02-09 04:12:35", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76720", "18", "2018-02-09 05:07:44", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76721", "10", "2018-02-09 05:15:19", "164.132.161.55", "6");
INSERT INTO `wp_rg_form_view` VALUES("76722", "3", "2018-02-09 05:37:21", "52.3.243.204", "36");
INSERT INTO `wp_rg_form_view` VALUES("76723", "9", "2018-02-09 05:37:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76724", "8", "2018-02-09 05:37:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76725", "15", "2018-02-09 05:37:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76726", "18", "2018-02-09 06:48:38", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76727", "10", "2018-02-09 07:18:57", "52.3.243.204", "6");
INSERT INTO `wp_rg_form_view` VALUES("76728", "3", "2018-02-09 07:36:41", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76729", "9", "2018-02-09 07:36:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76730", "8", "2018-02-09 07:36:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76731", "15", "2018-02-09 07:36:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76732", "18", "2018-02-09 07:36:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76733", "14", "2018-02-09 08:00:39", "179.43.132.229", "3");
INSERT INTO `wp_rg_form_view` VALUES("76734", "3", "2018-02-09 08:14:57", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("76735", "3", "2018-02-09 09:06:13", "46.229.168.74", "49");
INSERT INTO `wp_rg_form_view` VALUES("76736", "9", "2018-02-09 09:26:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76737", "8", "2018-02-09 09:26:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76738", "10", "2018-02-09 09:26:53", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("76739", "15", "2018-02-09 09:26:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76740", "18", "2018-02-09 09:26:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76741", "14", "2018-02-09 09:32:27", "104.227.168.41", "1");
INSERT INTO `wp_rg_form_view` VALUES("76742", "3", "2018-02-09 10:05:55", "68.180.228.176", "59");
INSERT INTO `wp_rg_form_view` VALUES("76743", "3", "2018-02-09 11:00:02", "5.9.98.130", "474");
INSERT INTO `wp_rg_form_view` VALUES("76744", "9", "2018-02-09 11:10:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76745", "8", "2018-02-09 11:10:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76746", "10", "2018-02-09 11:10:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76747", "15", "2018-02-09 11:10:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76748", "18", "2018-02-09 11:10:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76749", "14", "2018-02-09 11:32:26", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("76750", "3", "2018-02-09 12:00:05", "5.9.98.130", "282");
INSERT INTO `wp_rg_form_view` VALUES("76751", "10", "2018-02-09 12:18:32", "144.76.4.148", "1");
INSERT INTO `wp_rg_form_view` VALUES("76752", "3", "2018-02-09 13:09:54", "68.180.228.176", "33");
INSERT INTO `wp_rg_form_view` VALUES("76753", "9", "2018-02-09 13:12:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76754", "8", "2018-02-09 13:13:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76755", "10", "2018-02-09 13:13:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76756", "15", "2018-02-09 13:13:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76757", "18", "2018-02-09 13:13:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76758", "14", "2018-02-09 13:40:13", "189.102.8.180", "3");
INSERT INTO `wp_rg_form_view` VALUES("76759", "3", "2018-02-09 15:07:43", "52.37.180.245", "41");
INSERT INTO `wp_rg_form_view` VALUES("76760", "9", "2018-02-09 15:07:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76761", "8", "2018-02-09 15:07:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76762", "10", "2018-02-09 15:07:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76763", "15", "2018-02-09 15:07:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76764", "18", "2018-02-09 15:07:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76765", "12", "2018-02-09 15:52:06", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("76766", "18", "2018-02-09 16:13:19", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76767", "3", "2018-02-09 16:28:08", "66.249.79.133", "32");
INSERT INTO `wp_rg_form_view` VALUES("76768", "14", "2018-02-09 16:40:27", "173.44.167.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("76769", "9", "2018-02-09 16:51:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76770", "8", "2018-02-09 16:51:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76771", "10", "2018-02-09 16:51:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76772", "15", "2018-02-09 16:51:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76773", "3", "2018-02-09 17:00:08", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76774", "18", "2018-02-09 17:21:32", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76775", "3", "2018-02-09 18:36:04", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("76776", "6", "2018-02-09 18:36:42", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76777", "9", "2018-02-09 18:42:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76778", "8", "2018-02-09 18:42:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76779", "10", "2018-02-09 18:42:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76780", "15", "2018-02-09 18:43:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76781", "18", "2018-02-09 18:43:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76782", "18", "2018-02-09 19:24:03", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76783", "3", "2018-02-09 19:34:31", "70.67.110.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("76784", "3", "2018-02-09 20:14:33", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("76785", "14", "2018-02-09 20:14:41", "5.135.142.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("76786", "9", "2018-02-09 20:33:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76787", "8", "2018-02-09 20:33:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76788", "10", "2018-02-09 20:33:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76789", "15", "2018-02-09 20:33:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76790", "18", "2018-02-09 20:33:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76791", "3", "2018-02-09 21:14:50", "157.55.39.201", "2");
INSERT INTO `wp_rg_form_view` VALUES("76792", "10", "2018-02-09 21:20:48", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("76793", "8", "2018-02-09 21:44:22", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76794", "3", "2018-02-09 22:28:44", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76795", "9", "2018-02-09 22:28:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76796", "8", "2018-02-09 22:28:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76797", "10", "2018-02-09 22:28:48", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76798", "15", "2018-02-09 22:28:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76799", "18", "2018-02-09 22:28:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76800", "14", "2018-02-09 22:39:43", "199.180.115.179", "5");
INSERT INTO `wp_rg_form_view` VALUES("76801", "3", "2018-02-09 23:14:56", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("76802", "3", "2018-02-10 00:16:05", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("76803", "9", "2018-02-10 00:16:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76804", "8", "2018-02-10 00:16:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76805", "10", "2018-02-10 00:16:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76806", "15", "2018-02-10 00:16:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76807", "18", "2018-02-10 00:16:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76808", "10", "2018-02-10 01:59:34", "164.132.161.40", "1");
INSERT INTO `wp_rg_form_view` VALUES("76809", "3", "2018-02-10 02:07:41", "144.76.8.134", "33");
INSERT INTO `wp_rg_form_view` VALUES("76810", "9", "2018-02-10 02:12:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76811", "8", "2018-02-10 02:12:26", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("76812", "10", "2018-02-10 02:12:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76813", "15", "2018-02-10 02:12:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76814", "18", "2018-02-10 02:12:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76815", "3", "2018-02-10 03:09:52", "180.76.15.15", "33");
INSERT INTO `wp_rg_form_view` VALUES("76816", "14", "2018-02-10 03:29:15", "184.66.41.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("76817", "9", "2018-02-10 03:59:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76818", "8", "2018-02-10 03:59:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76819", "10", "2018-02-10 03:59:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76820", "15", "2018-02-10 03:59:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76821", "18", "2018-02-10 03:59:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76822", "18", "2018-02-10 04:19:12", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76823", "3", "2018-02-10 04:31:15", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76824", "3", "2018-02-10 05:16:23", "66.249.79.135", "31");
INSERT INTO `wp_rg_form_view` VALUES("76825", "10", "2018-02-10 05:28:14", "162.210.196.100", "6");
INSERT INTO `wp_rg_form_view` VALUES("76826", "18", "2018-02-10 05:49:02", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76827", "9", "2018-02-10 05:52:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76828", "8", "2018-02-10 05:52:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76829", "15", "2018-02-10 05:52:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76830", "18", "2018-02-10 06:40:34", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76831", "3", "2018-02-10 06:58:48", "37.187.56.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("76832", "3", "2018-02-10 07:01:52", "37.187.56.66", "69");
INSERT INTO `wp_rg_form_view` VALUES("76833", "14", "2018-02-10 07:02:53", "37.187.56.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("76834", "18", "2018-02-10 07:03:17", "37.187.56.66", "3");
INSERT INTO `wp_rg_form_view` VALUES("76835", "9", "2018-02-10 07:44:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76836", "8", "2018-02-10 07:44:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76837", "10", "2018-02-10 07:44:55", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("76838", "15", "2018-02-10 07:44:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76839", "10", "2018-02-10 08:05:09", "51.255.71.126", "3");
INSERT INTO `wp_rg_form_view` VALUES("76840", "3", "2018-02-10 08:38:50", "5.9.62.130", "4");
INSERT INTO `wp_rg_form_view` VALUES("76841", "8", "2018-02-10 08:44:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76842", "3", "2018-02-10 09:31:13", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76843", "9", "2018-02-10 09:31:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76844", "8", "2018-02-10 09:31:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76845", "10", "2018-02-10 09:31:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76846", "15", "2018-02-10 09:31:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76847", "18", "2018-02-10 09:31:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76848", "3", "2018-02-10 10:29:44", "5.9.98.130", "267");
INSERT INTO `wp_rg_form_view` VALUES("76849", "3", "2018-02-10 11:00:01", "5.9.98.130", "545");
INSERT INTO `wp_rg_form_view` VALUES("76850", "9", "2018-02-10 11:22:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76851", "8", "2018-02-10 11:22:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76852", "10", "2018-02-10 11:22:17", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("76853", "15", "2018-02-10 11:22:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76854", "18", "2018-02-10 11:22:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76855", "3", "2018-02-10 12:00:09", "5.9.98.130", "506");
INSERT INTO `wp_rg_form_view` VALUES("76856", "10", "2018-02-10 12:35:22", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76857", "3", "2018-02-10 13:00:08", "5.9.98.130", "285");
INSERT INTO `wp_rg_form_view` VALUES("76858", "9", "2018-02-10 13:12:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76859", "8", "2018-02-10 13:12:51", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("76860", "10", "2018-02-10 13:12:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76861", "15", "2018-02-10 13:13:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76862", "18", "2018-02-10 13:13:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76863", "18", "2018-02-10 14:25:19", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76864", "3", "2018-02-10 15:06:29", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("76865", "9", "2018-02-10 15:06:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76866", "8", "2018-02-10 15:06:32", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("76867", "10", "2018-02-10 15:06:33", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76868", "15", "2018-02-10 15:06:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76869", "18", "2018-02-10 15:06:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76870", "14", "2018-02-10 16:08:34", "189.122.80.72", "2");
INSERT INTO `wp_rg_form_view` VALUES("76871", "3", "2018-02-10 16:49:41", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("76872", "9", "2018-02-10 16:49:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76873", "8", "2018-02-10 16:49:44", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76874", "10", "2018-02-10 16:49:45", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("76875", "15", "2018-02-10 16:49:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76876", "18", "2018-02-10 16:49:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76877", "18", "2018-02-10 17:19:41", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76878", "3", "2018-02-10 18:03:56", "180.76.15.6", "32");
INSERT INTO `wp_rg_form_view` VALUES("76879", "9", "2018-02-10 18:39:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76880", "8", "2018-02-10 18:39:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76881", "10", "2018-02-10 18:39:17", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76882", "15", "2018-02-10 18:39:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76883", "18", "2018-02-10 18:39:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76884", "18", "2018-02-10 19:09:03", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76885", "3", "2018-02-10 19:36:06", "195.154.146.17", "3");
INSERT INTO `wp_rg_form_view` VALUES("76886", "3", "2018-02-10 20:00:54", "66.249.79.135", "31");
INSERT INTO `wp_rg_form_view` VALUES("76887", "9", "2018-02-10 20:27:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76888", "8", "2018-02-10 20:27:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76889", "10", "2018-02-10 20:27:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76890", "15", "2018-02-10 20:27:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76891", "18", "2018-02-10 20:27:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76892", "10", "2018-02-10 21:39:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76893", "3", "2018-02-10 21:40:45", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76894", "3", "2018-02-10 22:15:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76895", "9", "2018-02-10 22:15:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76896", "8", "2018-02-10 22:15:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76897", "10", "2018-02-10 22:15:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76898", "15", "2018-02-10 22:15:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76899", "18", "2018-02-10 22:15:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76900", "14", "2018-02-10 22:43:06", "182.253.66.42", "2");
INSERT INTO `wp_rg_form_view` VALUES("76901", "3", "2018-02-10 23:17:15", "66.249.79.133", "2");
INSERT INTO `wp_rg_form_view` VALUES("76902", "3", "2018-02-11 00:08:09", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("76903", "9", "2018-02-11 00:08:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76904", "8", "2018-02-11 00:08:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76905", "10", "2018-02-11 00:08:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76906", "15", "2018-02-11 00:08:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76907", "18", "2018-02-11 00:08:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76908", "14", "2018-02-11 00:12:18", "70.65.234.43", "1");
INSERT INTO `wp_rg_form_view` VALUES("76909", "3", "2018-02-11 01:17:55", "68.180.228.176", "4");
INSERT INTO `wp_rg_form_view` VALUES("76910", "18", "2018-02-11 02:05:13", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("76911", "3", "2018-02-11 02:29:57", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("76912", "9", "2018-02-11 02:29:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76913", "8", "2018-02-11 02:29:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76914", "10", "2018-02-11 02:29:59", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("76915", "15", "2018-02-11 02:30:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76916", "5", "2018-02-11 02:40:31", "146.185.223.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("76917", "18", "2018-02-11 03:22:51", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("76918", "3", "2018-02-11 03:45:47", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76919", "9", "2018-02-11 04:08:57", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76920", "3", "2018-02-11 04:15:24", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("76921", "8", "2018-02-11 04:15:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76922", "10", "2018-02-11 04:15:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76923", "15", "2018-02-11 04:15:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76924", "18", "2018-02-11 04:15:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76925", "3", "2018-02-11 05:49:00", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("76926", "9", "2018-02-11 05:58:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76927", "8", "2018-02-11 05:58:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76928", "10", "2018-02-11 05:58:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76929", "15", "2018-02-11 05:58:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76930", "18", "2018-02-11 05:58:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76931", "18", "2018-02-11 06:04:50", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76932", "9", "2018-02-11 06:11:00", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76933", "3", "2018-02-11 07:47:32", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("76934", "9", "2018-02-11 07:47:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76935", "8", "2018-02-11 07:47:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76936", "10", "2018-02-11 07:47:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76937", "15", "2018-02-11 07:47:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76938", "18", "2018-02-11 07:47:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76939", "18", "2018-02-11 08:12:53", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("76940", "14", "2018-02-11 08:47:03", "196.245.185.47", "1");
INSERT INTO `wp_rg_form_view` VALUES("76941", "3", "2018-02-11 09:28:42", "66.249.79.137", "35");
INSERT INTO `wp_rg_form_view` VALUES("76942", "9", "2018-02-11 09:41:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76943", "8", "2018-02-11 09:41:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76944", "10", "2018-02-11 09:41:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76945", "15", "2018-02-11 09:41:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76946", "18", "2018-02-11 09:41:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76947", "3", "2018-02-11 10:00:50", "69.30.226.234", "6");
INSERT INTO `wp_rg_form_view` VALUES("76948", "6", "2018-02-11 10:07:27", "69.30.226.234", "1");
INSERT INTO `wp_rg_form_view` VALUES("76949", "3", "2018-02-11 11:34:37", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76950", "9", "2018-02-11 11:34:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76951", "8", "2018-02-11 11:34:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76952", "10", "2018-02-11 11:34:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76953", "15", "2018-02-11 11:34:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76954", "18", "2018-02-11 11:34:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76955", "3", "2018-02-11 12:00:16", "66.249.79.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("76956", "3", "2018-02-11 13:20:35", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76957", "9", "2018-02-11 13:20:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76958", "8", "2018-02-11 13:20:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76959", "10", "2018-02-11 13:20:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76960", "15", "2018-02-11 13:20:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76961", "18", "2018-02-11 13:20:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76962", "14", "2018-02-11 14:36:37", "115.74.211.141", "3");
INSERT INTO `wp_rg_form_view` VALUES("76963", "3", "2018-02-11 15:15:30", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76964", "9", "2018-02-11 15:15:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76965", "8", "2018-02-11 15:15:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76966", "10", "2018-02-11 15:15:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76967", "15", "2018-02-11 15:15:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76968", "18", "2018-02-11 15:15:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76969", "14", "2018-02-11 15:57:07", "189.206.107.6", "2");
INSERT INTO `wp_rg_form_view` VALUES("76970", "10", "2018-02-11 16:16:45", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("76971", "3", "2018-02-11 16:17:14", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("76972", "18", "2018-02-11 16:44:58", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76973", "18", "2018-02-11 17:01:54", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("76974", "3", "2018-02-11 17:03:27", "66.249.79.137", "31");
INSERT INTO `wp_rg_form_view` VALUES("76975", "9", "2018-02-11 17:09:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76976", "8", "2018-02-11 17:09:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76977", "10", "2018-02-11 17:09:28", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("76978", "15", "2018-02-11 17:09:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76979", "14", "2018-02-11 17:42:31", "171.255.199.129", "1");
INSERT INTO `wp_rg_form_view` VALUES("76980", "10", "2018-02-11 18:17:15", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("76981", "3", "2018-02-11 18:18:05", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("76982", "9", "2018-02-11 18:51:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76983", "8", "2018-02-11 18:51:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76984", "15", "2018-02-11 18:51:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76985", "18", "2018-02-11 18:51:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76986", "10", "2018-02-11 19:52:10", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76987", "3", "2018-02-11 19:52:27", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("76988", "3", "2018-02-11 20:40:00", "52.37.180.245", "60");
INSERT INTO `wp_rg_form_view` VALUES("76989", "9", "2018-02-11 20:40:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76990", "8", "2018-02-11 20:40:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("76991", "10", "2018-02-11 20:40:02", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("76992", "15", "2018-02-11 20:40:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76993", "18", "2018-02-11 20:40:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76994", "3", "2018-02-11 21:33:38", "96.54.231.182", "4");
INSERT INTO `wp_rg_form_view` VALUES("76995", "3", "2018-02-11 22:32:32", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("76996", "9", "2018-02-11 22:32:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("76997", "8", "2018-02-11 22:32:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("76998", "10", "2018-02-11 22:32:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("76999", "15", "2018-02-11 22:32:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77000", "18", "2018-02-11 22:32:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77001", "10", "2018-02-11 23:05:08", "151.80.27.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("77002", "3", "2018-02-11 23:10:28", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77003", "3", "2018-02-12 00:20:29", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77004", "9", "2018-02-12 00:20:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77005", "8", "2018-02-12 00:20:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77006", "10", "2018-02-12 00:20:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77007", "15", "2018-02-12 00:20:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77008", "18", "2018-02-12 00:20:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77009", "3", "2018-02-12 01:56:45", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77010", "3", "2018-02-12 02:04:22", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77011", "9", "2018-02-12 02:04:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77012", "8", "2018-02-12 02:04:23", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77013", "10", "2018-02-12 02:04:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77014", "15", "2018-02-12 02:04:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77015", "18", "2018-02-12 02:04:28", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77016", "3", "2018-02-12 03:07:28", "5.188.211.21", "33");
INSERT INTO `wp_rg_form_view` VALUES("77017", "8", "2018-02-12 03:53:26", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("77018", "18", "2018-02-12 03:53:26", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("77019", "9", "2018-02-12 03:54:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77020", "10", "2018-02-12 03:54:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77021", "15", "2018-02-12 03:54:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77022", "18", "2018-02-12 04:32:37", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77023", "8", "2018-02-12 05:16:46", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("77024", "3", "2018-02-12 05:16:48", "139.162.246.24", "31");
INSERT INTO `wp_rg_form_view` VALUES("77025", "18", "2018-02-12 05:16:48", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("77026", "9", "2018-02-12 05:39:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77027", "10", "2018-02-12 05:39:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77028", "15", "2018-02-12 05:39:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77029", "10", "2018-02-12 06:53:55", "164.132.161.84", "1");
INSERT INTO `wp_rg_form_view` VALUES("77030", "3", "2018-02-12 06:56:37", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77031", "18", "2018-02-12 07:01:03", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77032", "3", "2018-02-12 07:28:03", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("77033", "9", "2018-02-12 07:28:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77034", "8", "2018-02-12 07:28:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77035", "10", "2018-02-12 07:28:05", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77036", "15", "2018-02-12 07:28:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77037", "3", "2018-02-12 08:59:17", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77038", "3", "2018-02-12 09:23:40", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("77039", "9", "2018-02-12 09:23:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77040", "8", "2018-02-12 09:23:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77041", "10", "2018-02-12 09:23:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77042", "15", "2018-02-12 09:23:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77043", "18", "2018-02-12 09:23:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77044", "3", "2018-02-12 10:38:51", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77045", "3", "2018-02-12 11:13:26", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77046", "9", "2018-02-12 11:13:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77047", "8", "2018-02-12 11:13:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77048", "10", "2018-02-12 11:13:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77049", "15", "2018-02-12 11:13:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77050", "18", "2018-02-12 11:13:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77051", "3", "2018-02-12 12:58:18", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("77052", "9", "2018-02-12 12:58:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77053", "8", "2018-02-12 12:58:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77054", "10", "2018-02-12 12:58:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77055", "15", "2018-02-12 12:58:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77056", "18", "2018-02-12 12:58:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77057", "3", "2018-02-12 13:43:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77058", "3", "2018-02-12 14:03:56", "157.55.39.56", "46");
INSERT INTO `wp_rg_form_view` VALUES("77059", "10", "2018-02-12 14:04:37", "157.55.39.114", "8");
INSERT INTO `wp_rg_form_view` VALUES("77060", "11", "2018-02-12 14:04:51", "157.55.39.114", "1");
INSERT INTO `wp_rg_form_view` VALUES("77061", "8", "2018-02-12 14:05:05", "157.55.39.56", "4");
INSERT INTO `wp_rg_form_view` VALUES("77062", "6", "2018-02-12 14:07:33", "157.55.39.173", "1");
INSERT INTO `wp_rg_form_view` VALUES("77063", "9", "2018-02-12 14:50:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77064", "15", "2018-02-12 14:50:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77065", "18", "2018-02-12 14:50:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77066", "9", "2018-02-12 15:25:26", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77067", "3", "2018-02-12 15:25:40", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77068", "3", "2018-02-12 16:30:17", "65.49.2.181", "74");
INSERT INTO `wp_rg_form_view` VALUES("77069", "9", "2018-02-12 16:49:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77070", "8", "2018-02-12 16:49:45", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77071", "10", "2018-02-12 16:49:46", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("77072", "15", "2018-02-12 16:49:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77073", "18", "2018-02-12 16:49:50", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77074", "9", "2018-02-12 17:28:57", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77075", "3", "2018-02-12 17:29:26", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77076", "3", "2018-02-12 18:20:05", "180.76.15.143", "31");
INSERT INTO `wp_rg_form_view` VALUES("77077", "9", "2018-02-12 18:35:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77078", "8", "2018-02-12 18:35:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77079", "10", "2018-02-12 18:36:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77080", "15", "2018-02-12 18:36:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77081", "18", "2018-02-12 18:36:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77082", "18", "2018-02-12 19:06:25", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77083", "6", "2018-02-12 20:07:21", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77084", "3", "2018-02-12 20:07:36", "216.244.66.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("77085", "9", "2018-02-12 20:26:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77086", "8", "2018-02-12 20:26:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77087", "10", "2018-02-12 20:26:06", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77088", "15", "2018-02-12 20:26:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77089", "18", "2018-02-12 20:26:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77090", "18", "2018-02-12 21:09:39", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77091", "3", "2018-02-12 21:32:47", "65.49.2.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("77092", "10", "2018-02-12 21:58:01", "72.14.199.188", "1");
INSERT INTO `wp_rg_form_view` VALUES("77093", "6", "2018-02-12 22:08:10", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77094", "3", "2018-02-12 22:08:28", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("77095", "9", "2018-02-12 22:27:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77096", "8", "2018-02-12 22:27:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77097", "10", "2018-02-12 22:27:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77098", "15", "2018-02-12 22:27:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77099", "18", "2018-02-12 22:27:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77100", "18", "2018-02-12 23:24:29", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77101", "3", "2018-02-12 23:30:49", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("77102", "8", "2018-02-12 23:46:12", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77103", "14", "2018-02-13 00:26:47", "180.76.15.28", "1");
INSERT INTO `wp_rg_form_view` VALUES("77104", "18", "2018-02-13 00:27:20", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77105", "3", "2018-02-13 00:28:47", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("77106", "9", "2018-02-13 00:28:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77107", "8", "2018-02-13 00:28:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77108", "10", "2018-02-13 00:28:49", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77109", "15", "2018-02-13 00:28:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77110", "14", "2018-02-13 01:00:05", "180.76.15.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("77111", "3", "2018-02-13 01:00:23", "54.36.148.80", "2");
INSERT INTO `wp_rg_form_view` VALUES("77112", "8", "2018-02-13 01:20:20", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77113", "10", "2018-02-13 01:28:36", "199.30.25.104", "2");
INSERT INTO `wp_rg_form_view` VALUES("77114", "18", "2018-02-13 01:32:07", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("77115", "14", "2018-02-13 02:14:22", "189.122.112.187", "3");
INSERT INTO `wp_rg_form_view` VALUES("77116", "3", "2018-02-13 02:17:59", "65.49.2.181", "93");
INSERT INTO `wp_rg_form_view` VALUES("77117", "18", "2018-02-13 02:22:46", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("77118", "9", "2018-02-13 02:27:45", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77119", "8", "2018-02-13 02:27:45", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77120", "10", "2018-02-13 02:27:46", "52.37.180.245", "17");
INSERT INTO `wp_rg_form_view` VALUES("77121", "15", "2018-02-13 02:27:48", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77122", "14", "2018-02-13 03:06:31", "64.187.227.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("77123", "3", "2018-02-13 04:03:51", "139.162.246.24", "32");
INSERT INTO `wp_rg_form_view` VALUES("77124", "9", "2018-02-13 04:15:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77125", "8", "2018-02-13 04:15:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77126", "10", "2018-02-13 04:15:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77127", "15", "2018-02-13 04:15:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77128", "18", "2018-02-13 04:15:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77129", "3", "2018-02-13 05:23:39", "54.36.148.124", "34");
INSERT INTO `wp_rg_form_view` VALUES("77130", "9", "2018-02-13 05:56:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77131", "8", "2018-02-13 05:56:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77132", "10", "2018-02-13 05:56:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77133", "15", "2018-02-13 05:56:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77134", "18", "2018-02-13 05:56:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77135", "3", "2018-02-13 06:03:01", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("77136", "18", "2018-02-13 06:05:10", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77137", "10", "2018-02-13 06:32:14", "54.36.148.108", "1");
INSERT INTO `wp_rg_form_view` VALUES("77138", "3", "2018-02-13 07:19:30", "139.162.246.24", "34");
INSERT INTO `wp_rg_form_view` VALUES("77139", "18", "2018-02-13 07:20:07", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77140", "9", "2018-02-13 07:50:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77141", "8", "2018-02-13 07:50:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77142", "10", "2018-02-13 07:51:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77143", "15", "2018-02-13 07:51:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77144", "3", "2018-02-13 09:14:11", "46.4.0.246", "34");
INSERT INTO `wp_rg_form_view` VALUES("77145", "10", "2018-02-13 09:34:23", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("77146", "9", "2018-02-13 09:41:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77147", "8", "2018-02-13 09:41:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77148", "15", "2018-02-13 09:41:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77149", "18", "2018-02-13 09:41:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77150", "3", "2018-02-13 11:23:06", "157.55.39.186", "32");
INSERT INTO `wp_rg_form_view` VALUES("77151", "9", "2018-02-13 11:32:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77152", "8", "2018-02-13 11:32:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77153", "10", "2018-02-13 11:32:05", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77154", "15", "2018-02-13 11:32:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77155", "18", "2018-02-13 11:32:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77156", "3", "2018-02-13 12:36:59", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77157", "8", "2018-02-13 12:37:15", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77158", "10", "2018-02-13 12:40:24", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77159", "3", "2018-02-13 13:12:12", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("77160", "9", "2018-02-13 13:12:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77161", "8", "2018-02-13 13:12:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77162", "10", "2018-02-13 13:12:14", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77163", "15", "2018-02-13 13:12:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77164", "18", "2018-02-13 13:12:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77165", "3", "2018-02-13 14:24:57", "216.244.66.247", "20");
INSERT INTO `wp_rg_form_view` VALUES("77166", "10", "2018-02-13 14:25:12", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77167", "8", "2018-02-13 14:28:42", "46.4.104.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("77168", "3", "2018-02-13 15:03:08", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("77169", "9", "2018-02-13 15:03:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77170", "8", "2018-02-13 15:03:09", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77171", "10", "2018-02-13 15:03:10", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77172", "15", "2018-02-13 15:03:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77173", "18", "2018-02-13 15:03:14", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77174", "14", "2018-02-13 15:50:03", "41.242.117.242", "4");
INSERT INTO `wp_rg_form_view` VALUES("77175", "10", "2018-02-13 16:00:15", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("77176", "18", "2018-02-13 16:14:23", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77177", "3", "2018-02-13 16:40:36", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("77178", "9", "2018-02-13 16:52:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77179", "8", "2018-02-13 16:52:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77180", "15", "2018-02-13 16:52:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77181", "3", "2018-02-13 17:48:32", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("77182", "18", "2018-02-13 18:05:08", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77183", "8", "2018-02-13 18:11:08", "184.66.243.35", "4");
INSERT INTO `wp_rg_form_view` VALUES("77184", "3", "2018-02-13 18:26:51", "64.114.222.230", "36");
INSERT INTO `wp_rg_form_view` VALUES("77185", "9", "2018-02-13 18:40:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77186", "10", "2018-02-13 18:40:57", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77187", "15", "2018-02-13 18:41:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77188", "14", "2018-02-13 19:57:18", "24.69.162.74", "1");
INSERT INTO `wp_rg_form_view` VALUES("77189", "3", "2018-02-13 20:07:07", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("77190", "9", "2018-02-13 20:27:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77191", "8", "2018-02-13 20:27:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77192", "10", "2018-02-13 20:27:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77193", "15", "2018-02-13 20:27:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77194", "18", "2018-02-13 20:27:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77195", "3", "2018-02-13 21:57:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77196", "3", "2018-02-13 22:27:36", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77197", "9", "2018-02-13 22:27:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77198", "8", "2018-02-13 22:27:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77199", "10", "2018-02-13 22:27:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77200", "15", "2018-02-13 22:27:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77201", "18", "2018-02-13 22:27:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77202", "18", "2018-02-13 23:18:45", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77203", "3", "2018-02-13 23:57:48", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77204", "18", "2018-02-14 00:03:22", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77205", "3", "2018-02-14 00:09:07", "24.108.164.242", "31");
INSERT INTO `wp_rg_form_view` VALUES("77206", "9", "2018-02-14 00:17:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77207", "8", "2018-02-14 00:17:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77208", "10", "2018-02-14 00:17:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77209", "15", "2018-02-14 00:17:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77210", "3", "2018-02-14 01:05:14", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("77211", "10", "2018-02-14 01:24:37", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77212", "18", "2018-02-14 01:56:57", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77213", "3", "2018-02-14 02:12:23", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77214", "9", "2018-02-14 02:12:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77215", "8", "2018-02-14 02:12:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77216", "10", "2018-02-14 02:12:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77217", "15", "2018-02-14 02:12:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77218", "18", "2018-02-14 02:12:30", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77219", "3", "2018-02-14 03:23:48", "65.49.2.181", "4");
INSERT INTO `wp_rg_form_view` VALUES("77220", "18", "2018-02-14 03:33:45", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77221", "3", "2018-02-14 04:02:37", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77222", "9", "2018-02-14 04:02:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77223", "8", "2018-02-14 04:02:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77224", "10", "2018-02-14 04:02:38", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77225", "15", "2018-02-14 04:02:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77226", "14", "2018-02-14 04:02:45", "212.12.31.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("77227", "18", "2018-02-14 04:02:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77228", "3", "2018-02-14 05:04:43", "5.188.211.35", "34");
INSERT INTO `wp_rg_form_view` VALUES("77229", "9", "2018-02-14 05:47:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77230", "8", "2018-02-14 05:47:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77231", "10", "2018-02-14 05:47:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77232", "15", "2018-02-14 05:47:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77233", "18", "2018-02-14 05:47:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77234", "3", "2018-02-14 06:46:50", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77235", "3", "2018-02-14 07:06:39", "54.36.148.133", "31");
INSERT INTO `wp_rg_form_view` VALUES("77236", "14", "2018-02-14 07:41:46", "79.144.119.61", "1");
INSERT INTO `wp_rg_form_view` VALUES("77237", "9", "2018-02-14 07:44:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77238", "8", "2018-02-14 07:44:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77239", "10", "2018-02-14 07:44:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77240", "15", "2018-02-14 07:44:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77241", "18", "2018-02-14 07:44:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77242", "3", "2018-02-14 08:01:44", "65.49.2.181", "45");
INSERT INTO `wp_rg_form_view` VALUES("77243", "9", "2018-02-14 08:01:51", "65.49.2.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("77244", "8", "2018-02-14 08:01:52", "65.49.2.181", "2");
INSERT INTO `wp_rg_form_view` VALUES("77245", "10", "2018-02-14 08:01:53", "65.49.2.181", "11");
INSERT INTO `wp_rg_form_view` VALUES("77246", "15", "2018-02-14 08:01:58", "65.49.2.181", "3");
INSERT INTO `wp_rg_form_view` VALUES("77247", "18", "2018-02-14 08:02:02", "65.49.2.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("77248", "3", "2018-02-14 09:50:19", "216.244.66.195", "31");
INSERT INTO `wp_rg_form_view` VALUES("77249", "9", "2018-02-14 09:57:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77250", "8", "2018-02-14 09:57:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77251", "10", "2018-02-14 09:57:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77252", "15", "2018-02-14 09:57:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77253", "18", "2018-02-14 09:57:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77254", "3", "2018-02-14 10:07:52", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("77255", "15", "2018-02-14 10:08:06", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77256", "3", "2018-02-14 11:10:41", "104.131.2.194", "116");
INSERT INTO `wp_rg_form_view` VALUES("77257", "14", "2018-02-14 11:14:04", "104.131.2.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("77258", "6", "2018-02-14 11:15:57", "104.131.2.194", "1");
INSERT INTO `wp_rg_form_view` VALUES("77259", "10", "2018-02-14 11:18:35", "104.131.2.194", "10");
INSERT INTO `wp_rg_form_view` VALUES("77260", "9", "2018-02-14 11:23:29", "104.131.2.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("77261", "15", "2018-02-14 11:26:08", "104.131.2.194", "2");
INSERT INTO `wp_rg_form_view` VALUES("77262", "8", "2018-02-14 11:45:40", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77263", "18", "2018-02-14 11:45:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77264", "3", "2018-02-14 12:00:03", "104.131.2.194", "20");
INSERT INTO `wp_rg_form_view` VALUES("77265", "8", "2018-02-14 12:48:52", "65.49.2.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("77266", "9", "2018-02-14 13:16:07", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77267", "3", "2018-02-14 13:27:00", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("77268", "8", "2018-02-14 13:27:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77269", "10", "2018-02-14 13:27:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77270", "15", "2018-02-14 13:27:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77271", "18", "2018-02-14 13:27:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77272", "3", "2018-02-14 14:32:43", "154.20.45.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("77273", "3", "2018-02-14 15:22:27", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77274", "9", "2018-02-14 15:22:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77275", "8", "2018-02-14 15:22:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77276", "10", "2018-02-14 15:22:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77277", "15", "2018-02-14 15:22:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77278", "18", "2018-02-14 15:22:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77279", "18", "2018-02-14 16:40:28", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77280", "9", "2018-02-14 16:58:49", "207.46.13.31", "1");
INSERT INTO `wp_rg_form_view` VALUES("77281", "3", "2018-02-14 16:58:54", "157.55.39.238", "6");
INSERT INTO `wp_rg_form_view` VALUES("77282", "10", "2018-02-14 16:59:00", "157.55.39.30", "3");
INSERT INTO `wp_rg_form_view` VALUES("77283", "3", "2018-02-14 17:00:01", "157.55.39.30", "37");
INSERT INTO `wp_rg_form_view` VALUES("77284", "10", "2018-02-14 17:00:06", "157.55.39.238", "12");
INSERT INTO `wp_rg_form_view` VALUES("77285", "15", "2018-02-14 17:00:18", "157.55.39.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("77286", "9", "2018-02-14 17:06:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77287", "8", "2018-02-14 17:06:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77288", "18", "2018-02-14 17:06:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77289", "3", "2018-02-14 18:00:37", "96.50.16.187", "36");
INSERT INTO `wp_rg_form_view` VALUES("77290", "10", "2018-02-14 18:14:06", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("77291", "9", "2018-02-14 18:58:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77292", "8", "2018-02-14 18:58:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77293", "15", "2018-02-14 18:58:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77294", "18", "2018-02-14 18:58:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77295", "18", "2018-02-14 19:28:36", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77296", "3", "2018-02-14 19:46:59", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77297", "10", "2018-02-14 20:03:29", "72.14.199.161", "16");
INSERT INTO `wp_rg_form_view` VALUES("77298", "3", "2018-02-14 20:12:28", "147.135.137.81", "95");
INSERT INTO `wp_rg_form_view` VALUES("77299", "9", "2018-02-14 20:27:39", "65.49.2.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("77300", "8", "2018-02-14 20:27:41", "65.49.2.185", "6");
INSERT INTO `wp_rg_form_view` VALUES("77301", "15", "2018-02-14 20:27:52", "65.49.2.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("77302", "18", "2018-02-14 20:27:56", "65.49.2.185", "3");
INSERT INTO `wp_rg_form_view` VALUES("77303", "18", "2018-02-14 21:10:46", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77304", "3", "2018-02-14 21:29:24", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77305", "18", "2018-02-14 22:11:35", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77306", "3", "2018-02-14 22:12:14", "54.36.148.215", "32");
INSERT INTO `wp_rg_form_view` VALUES("77307", "9", "2018-02-14 22:31:37", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77308", "8", "2018-02-14 22:38:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77309", "10", "2018-02-14 22:38:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77310", "15", "2018-02-14 22:38:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77311", "10", "2018-02-14 23:01:11", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77312", "3", "2018-02-14 23:01:29", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77313", "18", "2018-02-14 23:22:54", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77314", "3", "2018-02-15 00:12:57", "46.229.168.69", "44");
INSERT INTO `wp_rg_form_view` VALUES("77315", "8", "2018-02-15 00:14:33", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("77316", "18", "2018-02-15 00:14:42", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("77317", "9", "2018-02-15 00:32:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77318", "10", "2018-02-15 00:32:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77319", "15", "2018-02-15 00:32:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77320", "3", "2018-02-15 01:11:36", "65.49.2.185", "1");
INSERT INTO `wp_rg_form_view` VALUES("77321", "3", "2018-02-15 02:16:45", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("77322", "9", "2018-02-15 02:16:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77323", "8", "2018-02-15 02:16:45", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77324", "10", "2018-02-15 02:16:46", "52.37.180.245", "9");
INSERT INTO `wp_rg_form_view` VALUES("77325", "15", "2018-02-15 02:16:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77326", "18", "2018-02-15 02:16:50", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77327", "3", "2018-02-15 03:24:51", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77328", "3", "2018-02-15 04:01:57", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77329", "9", "2018-02-15 04:01:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77330", "8", "2018-02-15 04:01:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77331", "10", "2018-02-15 04:01:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77332", "15", "2018-02-15 04:02:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77333", "18", "2018-02-15 04:02:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77334", "3", "2018-02-15 05:22:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77335", "18", "2018-02-15 05:54:29", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77336", "3", "2018-02-15 06:18:21", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77337", "9", "2018-02-15 06:18:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77338", "8", "2018-02-15 06:18:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77339", "10", "2018-02-15 06:18:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77340", "15", "2018-02-15 06:18:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77341", "18", "2018-02-15 06:18:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77342", "3", "2018-02-15 07:04:19", "139.162.246.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("77343", "8", "2018-02-15 07:04:20", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("77344", "10", "2018-02-15 07:04:20", "139.162.246.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("77345", "15", "2018-02-15 07:04:21", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("77346", "18", "2018-02-15 07:04:21", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("77347", "3", "2018-02-15 08:04:43", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("77348", "9", "2018-02-15 08:04:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77349", "8", "2018-02-15 08:04:44", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77350", "10", "2018-02-15 08:04:44", "52.37.180.245", "9");
INSERT INTO `wp_rg_form_view` VALUES("77351", "15", "2018-02-15 08:04:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77352", "18", "2018-02-15 08:04:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77353", "3", "2018-02-15 09:48:50", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("77354", "9", "2018-02-15 09:48:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77355", "8", "2018-02-15 09:48:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77356", "10", "2018-02-15 09:48:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77357", "15", "2018-02-15 09:48:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77358", "18", "2018-02-15 09:48:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77359", "10", "2018-02-15 10:06:38", "72.14.199.191", "1");
INSERT INTO `wp_rg_form_view` VALUES("77360", "18", "2018-02-15 10:41:17", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77361", "14", "2018-02-15 11:07:53", "68.180.228.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("77362", "3", "2018-02-15 11:39:08", "52.37.180.245", "30");
INSERT INTO `wp_rg_form_view` VALUES("77363", "9", "2018-02-15 11:39:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77364", "8", "2018-02-15 11:39:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77365", "10", "2018-02-15 11:39:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77366", "15", "2018-02-15 11:39:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77367", "18", "2018-02-15 11:39:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77368", "3", "2018-02-15 12:00:19", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("77369", "18", "2018-02-15 12:07:09", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77370", "10", "2018-02-15 13:00:39", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("77371", "3", "2018-02-15 13:32:40", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77372", "9", "2018-02-15 13:32:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77373", "8", "2018-02-15 13:32:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77374", "15", "2018-02-15 13:32:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77375", "18", "2018-02-15 13:32:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77376", "3", "2018-02-15 14:23:10", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77377", "3", "2018-02-15 15:11:10", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("77378", "10", "2018-02-15 15:26:15", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("77379", "14", "2018-02-15 15:39:11", "94.242.246.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("77380", "9", "2018-02-15 15:47:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77381", "8", "2018-02-15 15:47:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77382", "15", "2018-02-15 15:47:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77383", "18", "2018-02-15 15:48:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77384", "3", "2018-02-15 16:03:01", "180.76.15.162", "2");
INSERT INTO `wp_rg_form_view` VALUES("77385", "18", "2018-02-15 16:40:03", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77386", "3", "2018-02-15 17:05:32", "5.188.211.26", "31");
INSERT INTO `wp_rg_form_view` VALUES("77387", "18", "2018-02-15 17:06:43", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("77388", "9", "2018-02-15 17:33:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77389", "8", "2018-02-15 17:33:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77390", "10", "2018-02-15 17:33:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77391", "15", "2018-02-15 17:33:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77392", "3", "2018-02-15 18:18:33", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("77393", "8", "2018-02-15 18:32:30", "180.76.15.149", "1");
INSERT INTO `wp_rg_form_view` VALUES("77394", "8", "2018-02-15 19:01:50", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("77395", "3", "2018-02-15 19:02:13", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("77396", "18", "2018-02-15 19:06:36", "184.66.27.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("77397", "9", "2018-02-15 19:33:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77398", "10", "2018-02-15 19:33:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77399", "15", "2018-02-15 19:33:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77400", "3", "2018-02-15 20:26:10", "184.69.102.142", "2");
INSERT INTO `wp_rg_form_view` VALUES("77401", "6", "2018-02-15 21:37:48", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77402", "3", "2018-02-15 21:38:04", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("77403", "9", "2018-02-15 21:39:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77404", "8", "2018-02-15 21:39:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77405", "10", "2018-02-15 21:39:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77406", "15", "2018-02-15 21:39:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77407", "18", "2018-02-15 21:39:19", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77408", "3", "2018-02-15 22:08:50", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("77409", "9", "2018-02-15 22:08:51", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77410", "8", "2018-02-15 22:08:51", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77411", "10", "2018-02-15 22:08:52", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("77412", "15", "2018-02-15 22:08:54", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77413", "18", "2018-02-15 22:08:56", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77414", "18", "2018-02-15 23:16:31", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("77415", "3", "2018-02-15 23:39:00", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77416", "9", "2018-02-15 23:39:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77417", "8", "2018-02-15 23:39:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77418", "10", "2018-02-15 23:39:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77419", "15", "2018-02-15 23:39:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77420", "18", "2018-02-16 00:41:24", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77421", "3", "2018-02-16 00:45:21", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77422", "8", "2018-02-16 00:46:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77423", "18", "2018-02-16 01:03:46", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77424", "3", "2018-02-16 01:38:25", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77425", "9", "2018-02-16 01:38:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77426", "8", "2018-02-16 01:38:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77427", "10", "2018-02-16 01:38:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77428", "15", "2018-02-16 01:38:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77429", "10", "2018-02-16 02:21:07", "54.36.148.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("77430", "18", "2018-02-16 02:35:18", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77431", "3", "2018-02-16 02:46:12", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("77432", "8", "2018-02-16 02:47:35", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77433", "18", "2018-02-16 03:22:47", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77434", "3", "2018-02-16 03:28:53", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("77435", "9", "2018-02-16 03:28:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77436", "8", "2018-02-16 03:28:55", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77437", "10", "2018-02-16 03:28:57", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("77438", "15", "2018-02-16 03:29:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77439", "3", "2018-02-16 04:23:27", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77440", "10", "2018-02-16 04:23:33", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77441", "6", "2018-02-16 04:34:28", "157.55.39.238", "1");
INSERT INTO `wp_rg_form_view` VALUES("77442", "8", "2018-02-16 04:51:03", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77443", "3", "2018-02-16 05:09:33", "207.6.127.222", "34");
INSERT INTO `wp_rg_form_view` VALUES("77444", "9", "2018-02-16 05:32:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77445", "8", "2018-02-16 05:32:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77446", "10", "2018-02-16 05:32:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77447", "15", "2018-02-16 05:32:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77448", "18", "2018-02-16 05:32:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77449", "18", "2018-02-16 06:58:09", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77450", "3", "2018-02-16 07:19:30", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77451", "9", "2018-02-16 07:19:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77452", "8", "2018-02-16 07:19:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77453", "10", "2018-02-16 07:19:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77454", "15", "2018-02-16 07:19:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77455", "18", "2018-02-16 07:19:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77456", "3", "2018-02-16 08:05:00", "220.181.108.106", "33");
INSERT INTO `wp_rg_form_view` VALUES("77457", "18", "2018-02-16 08:14:30", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77458", "10", "2018-02-16 08:58:15", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("77459", "9", "2018-02-16 08:58:54", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77460", "8", "2018-02-16 08:58:55", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77461", "15", "2018-02-16 08:58:57", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77462", "3", "2018-02-16 09:08:42", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77463", "9", "2018-02-16 09:08:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77464", "8", "2018-02-16 09:08:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77465", "10", "2018-02-16 09:08:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77466", "15", "2018-02-16 09:08:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77467", "18", "2018-02-16 09:08:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77468", "3", "2018-02-16 10:23:18", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("77469", "8", "2018-02-16 10:49:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77470", "3", "2018-02-16 11:00:00", "52.37.180.245", "78");
INSERT INTO `wp_rg_form_view` VALUES("77471", "9", "2018-02-16 11:00:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77472", "8", "2018-02-16 11:00:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77473", "10", "2018-02-16 11:00:01", "52.37.180.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("77474", "15", "2018-02-16 11:00:03", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77475", "18", "2018-02-16 11:00:05", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77476", "3", "2018-02-16 12:04:03", "216.244.66.247", "17");
INSERT INTO `wp_rg_form_view` VALUES("77477", "8", "2018-02-16 12:13:11", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("77478", "10", "2018-02-16 12:13:12", "139.162.246.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("77479", "15", "2018-02-16 12:13:14", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("77480", "18", "2018-02-16 12:13:15", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("77481", "3", "2018-02-16 13:05:48", "139.162.246.24", "46");
INSERT INTO `wp_rg_form_view` VALUES("77482", "8", "2018-02-16 13:05:48", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("77483", "10", "2018-02-16 13:05:49", "139.162.246.24", "11");
INSERT INTO `wp_rg_form_view` VALUES("77484", "15", "2018-02-16 13:05:51", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("77485", "18", "2018-02-16 13:05:52", "139.162.246.24", "2");
INSERT INTO `wp_rg_form_view` VALUES("77486", "9", "2018-02-16 13:09:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77487", "3", "2018-02-16 14:05:35", "173.212.213.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("77488", "3", "2018-02-16 15:09:21", "52.37.180.245", "37");
INSERT INTO `wp_rg_form_view` VALUES("77489", "9", "2018-02-16 15:09:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77490", "8", "2018-02-16 15:09:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77491", "10", "2018-02-16 15:09:23", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77492", "15", "2018-02-16 15:09:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77493", "18", "2018-02-16 15:09:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77494", "18", "2018-02-16 16:14:42", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("77495", "3", "2018-02-16 16:51:00", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("77496", "8", "2018-02-16 16:51:39", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("77497", "9", "2018-02-16 16:54:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77498", "10", "2018-02-16 16:54:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77499", "15", "2018-02-16 16:54:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77500", "18", "2018-02-16 17:02:18", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77501", "10", "2018-02-16 17:11:59", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77502", "14", "2018-02-16 18:12:52", "194.187.170.117", "1");
INSERT INTO `wp_rg_form_view` VALUES("77503", "3", "2018-02-16 18:14:41", "216.244.66.247", "65");
INSERT INTO `wp_rg_form_view` VALUES("77504", "10", "2018-02-16 18:14:58", "216.244.66.247", "11");
INSERT INTO `wp_rg_form_view` VALUES("77505", "9", "2018-02-16 18:49:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77506", "8", "2018-02-16 18:49:58", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77507", "15", "2018-02-16 18:50:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77508", "18", "2018-02-16 18:50:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77509", "3", "2018-02-16 19:54:11", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77510", "10", "2018-02-16 20:12:00", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("77511", "3", "2018-02-16 20:12:05", "54.36.149.4", "33");
INSERT INTO `wp_rg_form_view` VALUES("77512", "18", "2018-02-16 20:16:50", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77513", "9", "2018-02-16 20:48:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77514", "8", "2018-02-16 20:48:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77515", "15", "2018-02-16 20:48:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77516", "14", "2018-02-16 21:18:57", "64.180.23.187", "1");
INSERT INTO `wp_rg_form_view` VALUES("77517", "18", "2018-02-16 21:20:06", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77518", "3", "2018-02-16 22:13:16", "54.36.148.152", "36");
INSERT INTO `wp_rg_form_view` VALUES("77519", "9", "2018-02-16 22:58:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77520", "8", "2018-02-16 22:58:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77521", "10", "2018-02-16 22:58:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77522", "15", "2018-02-16 22:58:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77523", "18", "2018-02-16 22:58:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77524", "3", "2018-02-16 23:11:36", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("77525", "18", "2018-02-16 23:11:38", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77526", "10", "2018-02-16 23:12:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77527", "18", "2018-02-17 00:22:52", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77528", "10", "2018-02-17 00:23:08", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("77529", "3", "2018-02-17 00:31:33", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("77530", "9", "2018-02-17 00:48:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77531", "8", "2018-02-17 00:48:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77532", "15", "2018-02-17 00:48:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77533", "3", "2018-02-17 01:11:09", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77534", "10", "2018-02-17 01:11:25", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77535", "18", "2018-02-17 01:49:00", "167.114.65.240", "1");
INSERT INTO `wp_rg_form_view` VALUES("77536", "10", "2018-02-17 02:02:26", "66.249.90.190", "6");
INSERT INTO `wp_rg_form_view` VALUES("77537", "3", "2018-02-17 02:43:13", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77538", "9", "2018-02-17 02:43:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77539", "8", "2018-02-17 02:43:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77540", "15", "2018-02-17 02:43:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77541", "18", "2018-02-17 02:43:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77542", "3", "2018-02-17 03:33:12", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77543", "18", "2018-02-17 03:45:36", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77544", "3", "2018-02-17 04:53:35", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77545", "9", "2018-02-17 04:53:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77546", "8", "2018-02-17 04:53:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77547", "10", "2018-02-17 04:53:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77548", "15", "2018-02-17 04:53:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77549", "18", "2018-02-17 04:53:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77550", "3", "2018-02-17 05:11:37", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77551", "15", "2018-02-17 05:32:41", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77552", "18", "2018-02-17 05:37:29", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77553", "3", "2018-02-17 06:44:51", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("77554", "3", "2018-02-17 07:12:41", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("77555", "18", "2018-02-17 07:17:42", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77556", "9", "2018-02-17 07:23:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77557", "8", "2018-02-17 07:23:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77558", "10", "2018-02-17 07:23:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77559", "15", "2018-02-17 07:23:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77560", "9", "2018-02-17 08:37:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77561", "3", "2018-02-17 09:23:39", "52.37.180.245", "39");
INSERT INTO `wp_rg_form_view` VALUES("77562", "9", "2018-02-17 09:23:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77563", "8", "2018-02-17 09:23:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77564", "10", "2018-02-17 09:23:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77565", "15", "2018-02-17 09:23:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77566", "18", "2018-02-17 09:23:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77567", "3", "2018-02-17 10:13:04", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("77568", "3", "2018-02-17 11:13:23", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77569", "9", "2018-02-17 11:13:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77570", "8", "2018-02-17 11:13:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77571", "10", "2018-02-17 11:13:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77572", "15", "2018-02-17 11:13:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77573", "18", "2018-02-17 11:13:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77574", "18", "2018-02-17 12:19:43", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77575", "3", "2018-02-17 13:08:50", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("77576", "9", "2018-02-17 13:08:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77577", "8", "2018-02-17 13:08:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77578", "10", "2018-02-17 13:08:51", "52.37.180.245", "9");
INSERT INTO `wp_rg_form_view` VALUES("77579", "15", "2018-02-17 13:08:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77580", "18", "2018-02-17 13:08:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77581", "14", "2018-02-17 13:20:12", "165.231.234.45", "3");
INSERT INTO `wp_rg_form_view` VALUES("77582", "10", "2018-02-17 14:04:25", "194.187.170.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("77583", "6", "2018-02-17 14:18:57", "180.76.15.143", "1");
INSERT INTO `wp_rg_form_view` VALUES("77584", "3", "2018-02-17 14:41:27", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("77585", "8", "2018-02-17 14:41:43", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77586", "10", "2018-02-17 15:13:13", "194.187.170.126", "7");
INSERT INTO `wp_rg_form_view` VALUES("77587", "3", "2018-02-17 15:24:35", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77588", "9", "2018-02-17 15:24:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77589", "8", "2018-02-17 15:24:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77590", "15", "2018-02-17 15:24:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77591", "18", "2018-02-17 15:24:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77592", "10", "2018-02-17 16:07:15", "66.249.87.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("77593", "3", "2018-02-17 16:12:08", "66.249.69.51", "6");
INSERT INTO `wp_rg_form_view` VALUES("77594", "9", "2018-02-17 16:18:36", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77595", "8", "2018-02-17 16:46:10", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77596", "18", "2018-02-17 17:02:16", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77597", "3", "2018-02-17 17:11:50", "24.108.8.90", "32");
INSERT INTO `wp_rg_form_view` VALUES("77598", "9", "2018-02-17 17:23:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77599", "8", "2018-02-17 17:23:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77600", "10", "2018-02-17 17:23:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77601", "15", "2018-02-17 17:23:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77602", "10", "2018-02-17 18:03:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77603", "3", "2018-02-17 18:04:11", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("77604", "8", "2018-02-17 18:45:57", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77605", "3", "2018-02-17 19:18:33", "52.37.180.245", "38");
INSERT INTO `wp_rg_form_view` VALUES("77606", "9", "2018-02-17 19:18:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77607", "8", "2018-02-17 19:18:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77608", "10", "2018-02-17 19:18:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77609", "15", "2018-02-17 19:18:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77610", "18", "2018-02-17 19:18:38", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77611", "18", "2018-02-17 20:23:59", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77612", "3", "2018-02-17 20:38:56", "5.188.211.21", "6");
INSERT INTO `wp_rg_form_view` VALUES("77613", "3", "2018-02-17 21:14:31", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("77614", "9", "2018-02-17 21:14:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77615", "8", "2018-02-17 21:14:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77616", "10", "2018-02-17 21:14:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77617", "15", "2018-02-17 21:14:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77618", "18", "2018-02-17 21:14:37", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77619", "3", "2018-02-17 22:16:19", "5.188.211.10", "3");
INSERT INTO `wp_rg_form_view` VALUES("77620", "10", "2018-02-17 23:02:36", "194.187.170.108", "8");
INSERT INTO `wp_rg_form_view` VALUES("77621", "3", "2018-02-17 23:19:34", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("77622", "9", "2018-02-17 23:19:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77623", "8", "2018-02-17 23:19:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77624", "15", "2018-02-17 23:19:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77625", "18", "2018-02-17 23:19:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77626", "3", "2018-02-18 00:17:56", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77627", "18", "2018-02-18 00:33:14", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77628", "3", "2018-02-18 01:04:14", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("77629", "9", "2018-02-18 01:08:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77630", "8", "2018-02-18 01:08:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77631", "10", "2018-02-18 01:08:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77632", "15", "2018-02-18 01:08:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77633", "18", "2018-02-18 01:08:15", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77634", "3", "2018-02-18 02:08:22", "5.188.211.15", "2");
INSERT INTO `wp_rg_form_view` VALUES("77635", "14", "2018-02-18 02:46:43", "34.204.60.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("77636", "3", "2018-02-18 03:03:07", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("77637", "9", "2018-02-18 03:03:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77638", "8", "2018-02-18 03:03:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77639", "10", "2018-02-18 03:03:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77640", "15", "2018-02-18 03:03:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77641", "18", "2018-02-18 03:03:13", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77642", "14", "2018-02-18 03:53:40", "66.249.69.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("77643", "3", "2018-02-18 04:07:54", "34.204.60.128", "61");
INSERT INTO `wp_rg_form_view` VALUES("77644", "18", "2018-02-18 04:08:17", "34.204.60.128", "3");
INSERT INTO `wp_rg_form_view` VALUES("77645", "14", "2018-02-18 04:14:11", "179.61.160.169", "1");
INSERT INTO `wp_rg_form_view` VALUES("77646", "9", "2018-02-18 04:53:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77647", "8", "2018-02-18 04:53:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77648", "10", "2018-02-18 04:53:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77649", "15", "2018-02-18 04:53:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77650", "10", "2018-02-18 05:13:53", "66.249.87.23", "1");
INSERT INTO `wp_rg_form_view` VALUES("77651", "3", "2018-02-18 05:34:40", "54.187.117.110", "8");
INSERT INTO `wp_rg_form_view` VALUES("77652", "18", "2018-02-18 05:43:55", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77653", "5", "2018-02-18 06:25:58", "66.249.69.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("77654", "3", "2018-02-18 06:26:34", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("77655", "18", "2018-02-18 06:37:49", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77656", "9", "2018-02-18 06:42:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77657", "8", "2018-02-18 06:42:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77658", "10", "2018-02-18 06:42:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77659", "15", "2018-02-18 06:42:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77660", "3", "2018-02-18 07:28:46", "54.36.148.251", "2");
INSERT INTO `wp_rg_form_view` VALUES("77661", "10", "2018-02-18 08:05:35", "70.66.174.129", "7");
INSERT INTO `wp_rg_form_view` VALUES("77662", "9", "2018-02-18 08:05:54", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77663", "3", "2018-02-18 08:06:06", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("77664", "8", "2018-02-18 08:33:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77665", "15", "2018-02-18 08:33:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77666", "18", "2018-02-18 08:33:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77667", "3", "2018-02-18 09:27:12", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77668", "3", "2018-02-18 10:06:04", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("77669", "14", "2018-02-18 10:25:47", "157.55.39.186", "1");
INSERT INTO `wp_rg_form_view` VALUES("77670", "9", "2018-02-18 10:37:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77671", "8", "2018-02-18 10:37:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77672", "10", "2018-02-18 10:37:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77673", "15", "2018-02-18 10:38:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77674", "18", "2018-02-18 10:38:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77675", "3", "2018-02-18 11:19:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77676", "3", "2018-02-18 12:33:19", "52.37.180.245", "41");
INSERT INTO `wp_rg_form_view` VALUES("77677", "9", "2018-02-18 12:33:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77678", "8", "2018-02-18 12:33:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77679", "10", "2018-02-18 12:33:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77680", "15", "2018-02-18 12:33:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77681", "18", "2018-02-18 12:33:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77682", "3", "2018-02-18 13:04:00", "194.187.170.115", "5");
INSERT INTO `wp_rg_form_view` VALUES("77683", "8", "2018-02-18 13:07:07", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77684", "18", "2018-02-18 13:17:41", "194.187.170.115", "1");
INSERT INTO `wp_rg_form_view` VALUES("77685", "18", "2018-02-18 14:25:24", "194.187.170.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("77686", "3", "2018-02-18 14:28:09", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("77687", "9", "2018-02-18 14:28:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77688", "8", "2018-02-18 14:28:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77689", "10", "2018-02-18 14:28:11", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77690", "15", "2018-02-18 14:28:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77691", "14", "2018-02-18 15:03:38", "185.138.241.45", "1");
INSERT INTO `wp_rg_form_view` VALUES("77692", "8", "2018-02-18 15:08:11", "194.187.170.115", "2");
INSERT INTO `wp_rg_form_view` VALUES("77693", "3", "2018-02-18 15:12:14", "185.138.241.45", "11");
INSERT INTO `wp_rg_form_view` VALUES("77694", "18", "2018-02-18 15:45:13", "185.138.241.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("77695", "6", "2018-02-18 15:59:17", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77696", "18", "2018-02-18 16:00:59", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("77697", "3", "2018-02-18 16:12:53", "216.244.66.247", "65");
INSERT INTO `wp_rg_form_view` VALUES("77698", "9", "2018-02-18 16:12:54", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77699", "8", "2018-02-18 16:12:54", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("77700", "10", "2018-02-18 16:12:55", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("77701", "15", "2018-02-18 16:12:57", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77702", "10", "2018-02-18 17:11:45", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("77703", "3", "2018-02-18 18:12:50", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77704", "9", "2018-02-18 18:12:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77705", "8", "2018-02-18 18:12:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77706", "10", "2018-02-18 18:12:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77707", "15", "2018-02-18 18:12:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77708", "18", "2018-02-18 18:12:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77709", "10", "2018-02-18 19:01:32", "72.14.199.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("77710", "3", "2018-02-18 19:08:15", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77711", "8", "2018-02-18 19:09:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77712", "14", "2018-02-18 19:27:06", "184.66.232.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("77713", "3", "2018-02-18 20:12:40", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77714", "9", "2018-02-18 20:12:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77715", "8", "2018-02-18 20:12:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77716", "10", "2018-02-18 20:12:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77717", "15", "2018-02-18 20:12:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77718", "18", "2018-02-18 20:12:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77719", "3", "2018-02-18 21:04:52", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77720", "18", "2018-02-18 21:20:23", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77721", "3", "2018-02-18 22:09:23", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("77722", "9", "2018-02-18 22:09:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77723", "8", "2018-02-18 22:09:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77724", "10", "2018-02-18 22:09:26", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77725", "15", "2018-02-18 22:09:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77726", "18", "2018-02-18 22:09:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77727", "3", "2018-02-18 23:01:10", "54.36.148.115", "65");
INSERT INTO `wp_rg_form_view` VALUES("77728", "18", "2018-02-18 23:24:38", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77729", "8", "2018-02-18 23:57:09", "185.138.241.45", "5");
INSERT INTO `wp_rg_form_view` VALUES("77730", "9", "2018-02-18 23:57:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77731", "10", "2018-02-18 23:57:49", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("77732", "15", "2018-02-18 23:57:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77733", "8", "2018-02-19 00:00:05", "185.138.241.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("77734", "3", "2018-02-19 00:02:07", "157.55.39.188", "85");
INSERT INTO `wp_rg_form_view` VALUES("77735", "9", "2018-02-19 00:02:22", "157.55.39.186", "4");
INSERT INTO `wp_rg_form_view` VALUES("77736", "10", "2018-02-19 00:03:30", "157.55.39.254", "12");
INSERT INTO `wp_rg_form_view` VALUES("77737", "15", "2018-02-19 00:19:59", "185.138.241.45", "2");
INSERT INTO `wp_rg_form_view` VALUES("77738", "18", "2018-02-19 00:20:02", "185.138.241.45", "6");
INSERT INTO `wp_rg_form_view` VALUES("77739", "18", "2018-02-19 01:07:38", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77740", "3", "2018-02-19 01:54:13", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("77741", "9", "2018-02-19 01:54:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77742", "8", "2018-02-19 01:54:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77743", "10", "2018-02-19 01:54:15", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77744", "15", "2018-02-19 01:54:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77745", "3", "2018-02-19 03:06:48", "5.188.211.16", "66");
INSERT INTO `wp_rg_form_view` VALUES("77746", "10", "2018-02-19 03:22:43", "216.244.66.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("77747", "9", "2018-02-19 03:23:29", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77748", "8", "2018-02-19 03:23:30", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("77749", "15", "2018-02-19 03:23:32", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77750", "18", "2018-02-19 03:23:34", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77751", "3", "2018-02-19 04:04:24", "24.114.25.213", "4");
INSERT INTO `wp_rg_form_view` VALUES("77752", "18", "2018-02-19 04:26:23", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77753", "18", "2018-02-19 05:47:19", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77754", "3", "2018-02-19 05:47:32", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("77755", "9", "2018-02-19 05:47:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77756", "8", "2018-02-19 05:47:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77757", "10", "2018-02-19 05:47:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77758", "15", "2018-02-19 05:47:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77759", "10", "2018-02-19 06:06:40", "54.36.148.48", "1");
INSERT INTO `wp_rg_form_view` VALUES("77760", "3", "2018-02-19 06:13:01", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("77761", "8", "2018-02-19 06:43:42", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77762", "18", "2018-02-19 06:44:17", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77763", "10", "2018-02-19 07:37:49", "72.14.199.21", "7");
INSERT INTO `wp_rg_form_view` VALUES("77764", "3", "2018-02-19 07:54:37", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77765", "9", "2018-02-19 07:54:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77766", "8", "2018-02-19 07:54:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77767", "15", "2018-02-19 07:54:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77768", "18", "2018-02-19 07:54:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77769", "3", "2018-02-19 08:10:04", "220.181.108.118", "2");
INSERT INTO `wp_rg_form_view` VALUES("77770", "18", "2018-02-19 08:20:35", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77771", "14", "2018-02-19 08:22:15", "194.187.170.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("77772", "10", "2018-02-19 08:40:29", "54.36.149.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("77773", "8", "2018-02-19 08:40:49", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77774", "10", "2018-02-19 09:15:39", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("77775", "18", "2018-02-19 09:16:47", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77776", "3", "2018-02-19 09:36:51", "220.181.108.102", "32");
INSERT INTO `wp_rg_form_view` VALUES("77777", "9", "2018-02-19 09:42:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77778", "8", "2018-02-19 09:42:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77779", "15", "2018-02-19 09:42:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77780", "10", "2018-02-19 10:42:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77781", "3", "2018-02-19 10:42:19", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77782", "3", "2018-02-19 11:33:22", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("77783", "9", "2018-02-19 11:33:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77784", "8", "2018-02-19 11:33:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77785", "10", "2018-02-19 11:33:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77786", "15", "2018-02-19 11:33:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77787", "18", "2018-02-19 11:33:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77788", "14", "2018-02-19 11:49:37", "192.186.147.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("77789", "10", "2018-02-19 12:16:30", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77790", "3", "2018-02-19 12:16:57", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77791", "3", "2018-02-19 13:04:29", "66.249.79.119", "33");
INSERT INTO `wp_rg_form_view` VALUES("77792", "9", "2018-02-19 13:22:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77793", "8", "2018-02-19 13:22:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77794", "10", "2018-02-19 13:22:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77795", "15", "2018-02-19 13:23:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77796", "18", "2018-02-19 13:23:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77797", "18", "2018-02-19 14:23:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77798", "3", "2018-02-19 14:26:30", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77799", "10", "2018-02-19 14:29:32", "199.59.150.180", "1");
INSERT INTO `wp_rg_form_view` VALUES("77800", "8", "2018-02-19 15:02:35", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("77801", "3", "2018-02-19 15:02:48", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("77802", "9", "2018-02-19 15:09:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77803", "10", "2018-02-19 15:09:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77804", "15", "2018-02-19 15:09:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77805", "18", "2018-02-19 15:09:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77806", "18", "2018-02-19 16:34:12", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77807", "3", "2018-02-19 16:38:39", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77808", "10", "2018-02-19 16:47:30", "199.16.157.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("77809", "3", "2018-02-19 17:07:42", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77810", "9", "2018-02-19 17:07:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77811", "8", "2018-02-19 17:07:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77812", "10", "2018-02-19 17:07:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77813", "15", "2018-02-19 17:07:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77814", "18", "2018-02-19 17:07:49", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("77815", "14", "2018-02-19 17:39:01", "184.66.49.224", "1");
INSERT INTO `wp_rg_form_view` VALUES("77816", "3", "2018-02-19 18:27:12", "146.185.223.202", "1");
INSERT INTO `wp_rg_form_view` VALUES("77817", "18", "2018-02-19 18:27:31", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77818", "18", "2018-02-19 19:04:49", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77819", "14", "2018-02-19 19:05:58", "24.108.48.16", "5");
INSERT INTO `wp_rg_form_view` VALUES("77820", "3", "2018-02-19 19:13:55", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("77821", "9", "2018-02-19 19:13:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77822", "8", "2018-02-19 19:13:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77823", "10", "2018-02-19 19:13:57", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77824", "15", "2018-02-19 19:13:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77825", "3", "2018-02-19 20:00:18", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("77826", "15", "2018-02-19 20:00:46", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77827", "18", "2018-02-19 20:01:29", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77828", "14", "2018-02-19 20:54:10", "96.50.27.199", "1");
INSERT INTO `wp_rg_form_view` VALUES("77829", "3", "2018-02-19 21:12:57", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("77830", "9", "2018-02-19 21:12:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77831", "8", "2018-02-19 21:12:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77832", "10", "2018-02-19 21:13:00", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77833", "15", "2018-02-19 21:13:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77834", "18", "2018-02-19 21:13:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77835", "18", "2018-02-19 22:10:08", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77836", "3", "2018-02-19 22:48:28", "198.103.109.141", "32");
INSERT INTO `wp_rg_form_view` VALUES("77837", "9", "2018-02-19 22:58:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77838", "8", "2018-02-19 22:58:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77839", "10", "2018-02-19 22:58:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77840", "15", "2018-02-19 22:58:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77841", "3", "2018-02-20 00:02:15", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("77842", "9", "2018-02-20 00:59:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77843", "8", "2018-02-20 00:59:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77844", "10", "2018-02-20 00:59:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77845", "15", "2018-02-20 00:59:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77846", "18", "2018-02-20 00:59:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77847", "9", "2018-02-20 01:04:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77848", "3", "2018-02-20 01:25:50", "35.185.101.6", "6");
INSERT INTO `wp_rg_form_view` VALUES("77849", "18", "2018-02-20 01:29:07", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77850", "14", "2018-02-20 02:09:42", "23.250.70.239", "6");
INSERT INTO `wp_rg_form_view` VALUES("77851", "18", "2018-02-20 02:30:54", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("77852", "3", "2018-02-20 02:31:39", "104.196.59.73", "36");
INSERT INTO `wp_rg_form_view` VALUES("77853", "9", "2018-02-20 02:59:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77854", "8", "2018-02-20 02:59:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77855", "10", "2018-02-20 02:59:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77856", "15", "2018-02-20 02:59:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77857", "18", "2018-02-20 03:04:17", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77858", "3", "2018-02-20 03:06:42", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("77859", "3", "2018-02-20 04:06:28", "180.76.15.19", "48");
INSERT INTO `wp_rg_form_view` VALUES("77860", "18", "2018-02-20 04:16:29", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77861", "14", "2018-02-20 04:36:45", "104.196.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("77862", "9", "2018-02-20 04:54:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77863", "8", "2018-02-20 04:54:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77864", "10", "2018-02-20 04:54:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77865", "15", "2018-02-20 04:54:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77866", "3", "2018-02-20 05:45:34", "46.9.164.75", "1");
INSERT INTO `wp_rg_form_view` VALUES("77867", "3", "2018-02-20 06:25:19", "216.244.66.195", "50");
INSERT INTO `wp_rg_form_view` VALUES("77868", "8", "2018-02-20 06:49:12", "104.196.142.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("77869", "9", "2018-02-20 06:49:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77870", "10", "2018-02-20 06:49:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77871", "15", "2018-02-20 06:49:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77872", "18", "2018-02-20 06:49:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77873", "6", "2018-02-20 06:54:37", "104.196.142.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("77874", "3", "2018-02-20 07:00:09", "104.196.142.132", "4");
INSERT INTO `wp_rg_form_view` VALUES("77875", "18", "2018-02-20 08:15:12", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("77876", "3", "2018-02-20 08:38:51", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77877", "9", "2018-02-20 08:38:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77878", "8", "2018-02-20 08:38:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77879", "10", "2018-02-20 08:38:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77880", "15", "2018-02-20 08:38:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77881", "10", "2018-02-20 09:23:15", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("77882", "3", "2018-02-20 09:23:28", "216.244.66.195", "13");
INSERT INTO `wp_rg_form_view` VALUES("77883", "9", "2018-02-20 09:25:06", "104.196.142.132", "1");
INSERT INTO `wp_rg_form_view` VALUES("77884", "3", "2018-02-20 10:20:12", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("77885", "10", "2018-02-20 10:20:28", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("77886", "9", "2018-02-20 10:33:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77887", "8", "2018-02-20 10:33:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77888", "15", "2018-02-20 10:33:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77889", "18", "2018-02-20 10:33:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77890", "10", "2018-02-20 11:10:19", "72.14.199.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("77891", "3", "2018-02-20 11:26:37", "207.46.13.118", "9");
INSERT INTO `wp_rg_form_view` VALUES("77892", "8", "2018-02-20 11:36:29", "104.196.24.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("77893", "9", "2018-02-20 12:14:33", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("77894", "3", "2018-02-20 12:14:49", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("77895", "8", "2018-02-20 12:23:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77896", "10", "2018-02-20 12:23:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77897", "15", "2018-02-20 12:23:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77898", "18", "2018-02-20 12:23:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77899", "3", "2018-02-20 13:17:36", "5.9.106.230", "3");
INSERT INTO `wp_rg_form_view` VALUES("77900", "3", "2018-02-20 14:19:45", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("77901", "9", "2018-02-20 14:19:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77902", "8", "2018-02-20 14:19:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77903", "10", "2018-02-20 14:19:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77904", "15", "2018-02-20 14:19:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77905", "18", "2018-02-20 14:19:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77906", "3", "2018-02-20 15:37:21", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77907", "8", "2018-02-20 15:37:38", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77908", "10", "2018-02-20 15:45:47", "54.36.149.94", "1");
INSERT INTO `wp_rg_form_view` VALUES("77909", "18", "2018-02-20 15:57:32", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77910", "3", "2018-02-20 16:14:42", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("77911", "9", "2018-02-20 16:14:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77912", "8", "2018-02-20 16:14:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77913", "10", "2018-02-20 16:14:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77914", "15", "2018-02-20 16:14:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77915", "18", "2018-02-20 16:14:49", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77916", "3", "2018-02-20 17:58:24", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("77917", "3", "2018-02-20 18:18:11", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77918", "9", "2018-02-20 18:18:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77919", "8", "2018-02-20 18:18:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77920", "10", "2018-02-20 18:18:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77921", "15", "2018-02-20 18:18:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77922", "18", "2018-02-20 18:18:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77923", "8", "2018-02-20 19:13:16", "180.76.15.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("77924", "18", "2018-02-20 20:10:28", "70.67.115.58", "5");
INSERT INTO `wp_rg_form_view` VALUES("77925", "3", "2018-02-20 20:10:48", "70.67.115.58", "71");
INSERT INTO `wp_rg_form_view` VALUES("77926", "9", "2018-02-20 20:14:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77927", "8", "2018-02-20 20:14:55", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77928", "10", "2018-02-20 20:14:57", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("77929", "15", "2018-02-20 20:15:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77930", "10", "2018-02-20 21:17:42", "54.36.148.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("77931", "3", "2018-02-20 21:28:08", "165.227.220.31", "4");
INSERT INTO `wp_rg_form_view` VALUES("77932", "18", "2018-02-20 21:45:46", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77933", "3", "2018-02-20 22:13:37", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("77934", "9", "2018-02-20 22:13:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77935", "8", "2018-02-20 22:13:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77936", "10", "2018-02-20 22:13:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77937", "15", "2018-02-20 22:13:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77938", "18", "2018-02-20 22:13:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77939", "3", "2018-02-20 23:03:14", "104.236.245.170", "94");
INSERT INTO `wp_rg_form_view` VALUES("77940", "14", "2018-02-20 23:06:43", "104.236.245.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("77941", "6", "2018-02-20 23:08:28", "104.236.245.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("77942", "10", "2018-02-20 23:11:24", "104.236.245.170", "5");
INSERT INTO `wp_rg_form_view` VALUES("77943", "9", "2018-02-20 23:16:32", "104.236.245.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("77944", "15", "2018-02-20 23:22:46", "104.236.245.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("77945", "8", "2018-02-20 23:49:28", "104.236.245.170", "2");
INSERT INTO `wp_rg_form_view` VALUES("77946", "18", "2018-02-20 23:49:52", "104.236.245.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("77947", "3", "2018-02-21 00:00:31", "104.236.245.170", "77");
INSERT INTO `wp_rg_form_view` VALUES("77948", "18", "2018-02-21 00:03:36", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77949", "9", "2018-02-21 00:19:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77950", "8", "2018-02-21 00:19:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77951", "10", "2018-02-21 00:19:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77952", "15", "2018-02-21 00:19:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77953", "3", "2018-02-21 01:01:49", "216.244.66.195", "15");
INSERT INTO `wp_rg_form_view` VALUES("77954", "18", "2018-02-21 01:35:15", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77955", "9", "2018-02-21 01:42:25", "207.46.13.155", "2");
INSERT INTO `wp_rg_form_view` VALUES("77956", "3", "2018-02-21 02:03:19", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("77957", "18", "2018-02-21 02:15:21", "184.66.27.189", "10");
INSERT INTO `wp_rg_form_view` VALUES("77958", "9", "2018-02-21 02:18:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77959", "8", "2018-02-21 02:18:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77960", "10", "2018-02-21 02:18:44", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("77961", "15", "2018-02-21 02:18:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77962", "3", "2018-02-21 03:04:19", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("77963", "18", "2018-02-21 03:19:49", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77964", "18", "2018-02-21 04:05:07", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("77965", "3", "2018-02-21 04:14:35", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("77966", "9", "2018-02-21 04:18:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77967", "8", "2018-02-21 04:18:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77968", "10", "2018-02-21 04:18:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77969", "15", "2018-02-21 04:18:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77970", "9", "2018-02-21 06:04:29", "66.249.79.137", "2");
INSERT INTO `wp_rg_form_view` VALUES("77971", "3", "2018-02-21 06:13:56", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77972", "8", "2018-02-21 06:13:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77973", "10", "2018-02-21 06:13:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77974", "15", "2018-02-21 06:14:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77975", "18", "2018-02-21 06:14:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("77976", "3", "2018-02-21 07:48:26", "216.244.66.195", "9");
INSERT INTO `wp_rg_form_view` VALUES("77977", "3", "2018-02-21 08:00:58", "54.197.21.167", "40");
INSERT INTO `wp_rg_form_view` VALUES("77978", "9", "2018-02-21 08:14:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77979", "8", "2018-02-21 08:14:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77980", "10", "2018-02-21 08:14:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77981", "15", "2018-02-21 08:14:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77982", "18", "2018-02-21 08:14:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77983", "3", "2018-02-21 09:58:49", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77984", "9", "2018-02-21 09:58:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77985", "8", "2018-02-21 09:58:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77986", "10", "2018-02-21 09:58:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77987", "15", "2018-02-21 09:58:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77988", "18", "2018-02-21 09:58:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77989", "18", "2018-02-21 10:01:34", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("77990", "3", "2018-02-21 11:48:14", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77991", "9", "2018-02-21 11:48:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77992", "8", "2018-02-21 11:48:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77993", "10", "2018-02-21 11:48:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("77994", "15", "2018-02-21 11:48:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77995", "18", "2018-02-21 11:48:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77996", "3", "2018-02-21 13:33:34", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("77997", "9", "2018-02-21 13:33:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("77998", "8", "2018-02-21 13:33:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("77999", "10", "2018-02-21 13:33:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78000", "15", "2018-02-21 13:33:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78001", "18", "2018-02-21 13:33:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78002", "11", "2018-02-21 14:02:50", "54.36.148.79", "1");
INSERT INTO `wp_rg_form_view` VALUES("78003", "3", "2018-02-21 14:41:39", "207.102.214.114", "4");
INSERT INTO `wp_rg_form_view` VALUES("78004", "10", "2018-02-21 15:15:54", "54.197.21.167", "6");
INSERT INTO `wp_rg_form_view` VALUES("78005", "18", "2018-02-21 15:16:11", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78006", "3", "2018-02-21 15:31:31", "216.244.66.195", "37");
INSERT INTO `wp_rg_form_view` VALUES("78007", "8", "2018-02-21 15:32:42", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("78008", "9", "2018-02-21 15:41:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78009", "15", "2018-02-21 15:41:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78010", "3", "2018-02-21 16:55:00", "54.86.14.255", "3");
INSERT INTO `wp_rg_form_view` VALUES("78011", "3", "2018-02-21 17:00:05", "54.86.14.255", "36");
INSERT INTO `wp_rg_form_view` VALUES("78012", "18", "2018-02-21 17:05:04", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("78013", "8", "2018-02-21 17:22:45", "66.249.79.117", "3");
INSERT INTO `wp_rg_form_view` VALUES("78014", "9", "2018-02-21 17:34:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78015", "10", "2018-02-21 17:34:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78016", "15", "2018-02-21 17:34:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78017", "18", "2018-02-21 18:00:45", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78018", "3", "2018-02-21 18:02:41", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("78019", "14", "2018-02-21 18:14:31", "54.197.21.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("78020", "9", "2018-02-21 18:18:25", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78021", "8", "2018-02-21 18:18:25", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78022", "10", "2018-02-21 18:18:26", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("78023", "15", "2018-02-21 18:18:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78024", "3", "2018-02-21 19:30:50", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78025", "9", "2018-02-21 19:30:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78026", "8", "2018-02-21 19:30:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78027", "10", "2018-02-21 19:30:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78028", "15", "2018-02-21 19:30:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78029", "18", "2018-02-21 19:30:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78030", "3", "2018-02-21 20:21:57", "54.36.149.11", "4");
INSERT INTO `wp_rg_form_view` VALUES("78031", "18", "2018-02-21 20:49:19", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78032", "3", "2018-02-21 21:11:50", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("78033", "18", "2018-02-21 21:16:52", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78034", "9", "2018-02-21 21:33:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78035", "8", "2018-02-21 21:33:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78036", "10", "2018-02-21 21:33:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78037", "15", "2018-02-21 21:33:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78038", "14", "2018-02-21 22:13:14", "142.104.199.153", "1");
INSERT INTO `wp_rg_form_view` VALUES("78039", "18", "2018-02-21 23:01:08", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78040", "3", "2018-02-21 23:31:02", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78041", "9", "2018-02-21 23:31:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78042", "8", "2018-02-21 23:31:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78043", "10", "2018-02-21 23:31:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78044", "15", "2018-02-21 23:31:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78045", "14", "2018-02-21 23:58:47", "184.69.108.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("78046", "3", "2018-02-22 00:07:18", "54.36.148.237", "35");
INSERT INTO `wp_rg_form_view` VALUES("78047", "10", "2018-02-22 00:08:34", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("78048", "9", "2018-02-22 00:09:14", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78049", "8", "2018-02-22 00:09:15", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78050", "15", "2018-02-22 00:09:17", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78051", "18", "2018-02-22 00:09:19", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("78052", "14", "2018-02-22 00:18:36", "66.249.79.137", "1");
INSERT INTO `wp_rg_form_view` VALUES("78053", "3", "2018-02-22 01:12:53", "207.46.13.47", "34");
INSERT INTO `wp_rg_form_view` VALUES("78054", "9", "2018-02-22 01:26:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78055", "8", "2018-02-22 01:26:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78056", "10", "2018-02-22 01:26:05", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78057", "15", "2018-02-22 01:26:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78058", "18", "2018-02-22 01:26:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78059", "3", "2018-02-22 02:02:57", "54.37.85.55", "33");
INSERT INTO `wp_rg_form_view` VALUES("78060", "10", "2018-02-22 02:16:07", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("78061", "9", "2018-02-22 02:16:50", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78062", "8", "2018-02-22 02:16:51", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78063", "15", "2018-02-22 02:16:54", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78064", "18", "2018-02-22 02:16:55", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78065", "18", "2018-02-22 03:12:09", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78066", "3", "2018-02-22 03:14:46", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78067", "9", "2018-02-22 03:14:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78068", "8", "2018-02-22 03:14:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78069", "10", "2018-02-22 03:14:48", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78070", "15", "2018-02-22 03:14:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78071", "14", "2018-02-22 03:21:41", "24.68.109.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("78072", "3", "2018-02-22 04:29:33", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("78073", "3", "2018-02-22 05:04:12", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78074", "9", "2018-02-22 05:04:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78075", "8", "2018-02-22 05:04:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78076", "10", "2018-02-22 05:04:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78077", "15", "2018-02-22 05:04:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78078", "18", "2018-02-22 05:04:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78079", "10", "2018-02-22 06:44:17", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("78080", "3", "2018-02-22 06:44:34", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("78081", "9", "2018-02-22 06:50:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78082", "8", "2018-02-22 06:50:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78083", "15", "2018-02-22 06:50:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78084", "18", "2018-02-22 06:50:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78085", "8", "2018-02-22 07:31:04", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78086", "3", "2018-02-22 07:31:08", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("78087", "10", "2018-02-22 07:56:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78088", "3", "2018-02-22 08:16:58", "5.189.191.207", "32");
INSERT INTO `wp_rg_form_view` VALUES("78089", "18", "2018-02-22 08:45:13", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78090", "9", "2018-02-22 08:50:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78091", "8", "2018-02-22 08:50:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78092", "10", "2018-02-22 08:50:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78093", "15", "2018-02-22 08:50:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78094", "18", "2018-02-22 09:02:05", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78095", "10", "2018-02-22 09:12:41", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("78096", "3", "2018-02-22 10:05:01", "216.244.66.195", "39");
INSERT INTO `wp_rg_form_view` VALUES("78097", "18", "2018-02-22 10:32:52", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78098", "9", "2018-02-22 10:33:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78099", "8", "2018-02-22 10:34:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78100", "10", "2018-02-22 10:34:00", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78101", "15", "2018-02-22 10:34:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78102", "3", "2018-02-22 11:00:06", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78103", "11", "2018-02-22 11:00:18", "46.229.168.66", "2");
INSERT INTO `wp_rg_form_view` VALUES("78104", "14", "2018-02-22 11:43:43", "68.180.229.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("78105", "3", "2018-02-22 12:05:59", "157.55.39.125", "48");
INSERT INTO `wp_rg_form_view` VALUES("78106", "10", "2018-02-22 12:06:21", "207.46.13.129", "8");
INSERT INTO `wp_rg_form_view` VALUES("78107", "8", "2018-02-22 12:06:39", "207.46.13.129", "4");
INSERT INTO `wp_rg_form_view` VALUES("78108", "6", "2018-02-22 12:07:04", "157.55.39.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("78109", "9", "2018-02-22 12:49:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78110", "15", "2018-02-22 12:49:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78111", "18", "2018-02-22 12:49:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78112", "3", "2018-02-22 13:00:22", "54.85.74.248", "5");
INSERT INTO `wp_rg_form_view` VALUES("78113", "18", "2018-02-22 13:07:45", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78114", "8", "2018-02-22 13:55:15", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78115", "3", "2018-02-22 14:43:54", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78116", "9", "2018-02-22 14:43:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78117", "8", "2018-02-22 14:43:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78118", "10", "2018-02-22 14:43:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78119", "15", "2018-02-22 14:43:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78120", "18", "2018-02-22 14:43:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78121", "18", "2018-02-22 15:35:26", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78122", "18", "2018-02-22 16:16:38", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78123", "3", "2018-02-22 16:18:44", "66.249.79.137", "38");
INSERT INTO `wp_rg_form_view` VALUES("78124", "15", "2018-02-22 16:36:40", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78125", "9", "2018-02-22 16:43:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78126", "8", "2018-02-22 16:43:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78127", "10", "2018-02-22 16:43:44", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78128", "14", "2018-02-22 18:11:40", "209.52.88.26", "1");
INSERT INTO `wp_rg_form_view` VALUES("78129", "3", "2018-02-22 18:22:47", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("78130", "9", "2018-02-22 18:43:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78131", "8", "2018-02-22 18:43:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78132", "10", "2018-02-22 18:43:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78133", "15", "2018-02-22 18:43:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78134", "18", "2018-02-22 18:43:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78135", "3", "2018-02-22 19:00:22", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("78136", "9", "2018-02-22 19:35:52", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78137", "10", "2018-02-22 20:09:19", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("78138", "3", "2018-02-22 20:09:40", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("78139", "14", "2018-02-22 20:39:25", "196.196.50.208", "4");
INSERT INTO `wp_rg_form_view` VALUES("78140", "9", "2018-02-22 20:49:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78141", "8", "2018-02-22 20:49:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78142", "15", "2018-02-22 20:49:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78143", "18", "2018-02-22 20:49:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78144", "9", "2018-02-22 21:37:46", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78145", "3", "2018-02-22 21:55:35", "180.76.15.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("78146", "10", "2018-02-22 22:01:15", "54.85.74.248", "7");
INSERT INTO `wp_rg_form_view` VALUES("78147", "3", "2018-02-22 22:11:23", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("78148", "9", "2018-02-22 22:49:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78149", "8", "2018-02-22 22:49:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78150", "15", "2018-02-22 22:49:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78151", "18", "2018-02-22 22:49:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78152", "14", "2018-02-22 23:16:15", "45.199.192.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("78153", "3", "2018-02-22 23:25:16", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("78154", "3", "2018-02-23 00:08:34", "139.162.246.24", "34");
INSERT INTO `wp_rg_form_view` VALUES("78155", "9", "2018-02-23 00:43:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78156", "8", "2018-02-23 00:43:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78157", "10", "2018-02-23 00:43:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78158", "15", "2018-02-23 00:43:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78159", "18", "2018-02-23 00:43:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78160", "10", "2018-02-23 01:08:08", "72.14.199.73", "2");
INSERT INTO `wp_rg_form_view` VALUES("78161", "3", "2018-02-23 01:20:36", "35.168.2.89", "28");
INSERT INTO `wp_rg_form_view` VALUES("78162", "14", "2018-02-23 01:28:47", "35.168.2.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("78163", "18", "2018-02-23 01:39:14", "35.168.2.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("78164", "3", "2018-02-23 02:00:23", "35.168.2.89", "202");
INSERT INTO `wp_rg_form_view` VALUES("78165", "14", "2018-02-23 02:09:36", "35.168.2.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("78166", "10", "2018-02-23 02:11:27", "35.168.2.89", "28");
INSERT INTO `wp_rg_form_view` VALUES("78167", "18", "2018-02-23 02:17:15", "35.168.2.89", "11");
INSERT INTO `wp_rg_form_view` VALUES("78168", "9", "2018-02-23 02:28:40", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78169", "8", "2018-02-23 02:28:41", "52.37.180.245", "14");
INSERT INTO `wp_rg_form_view` VALUES("78170", "15", "2018-02-23 02:28:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78171", "3", "2018-02-23 03:00:27", "35.168.2.89", "44");
INSERT INTO `wp_rg_form_view` VALUES("78172", "10", "2018-02-23 03:14:51", "54.36.148.100", "14");
INSERT INTO `wp_rg_form_view` VALUES("78173", "18", "2018-02-23 03:16:10", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78174", "8", "2018-02-23 03:21:23", "35.168.2.89", "2");
INSERT INTO `wp_rg_form_view` VALUES("78175", "9", "2018-02-23 03:26:08", "35.168.2.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("78176", "6", "2018-02-23 03:33:43", "35.168.2.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("78177", "15", "2018-02-23 03:50:40", "35.168.2.89", "4");
INSERT INTO `wp_rg_form_view` VALUES("78178", "3", "2018-02-23 04:01:33", "35.168.2.89", "102");
INSERT INTO `wp_rg_form_view` VALUES("78179", "18", "2018-02-23 04:06:22", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78180", "10", "2018-02-23 04:18:48", "35.168.2.89", "9");
INSERT INTO `wp_rg_form_view` VALUES("78181", "9", "2018-02-23 04:23:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78182", "8", "2018-02-23 04:23:23", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("78183", "15", "2018-02-23 04:23:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78184", "3", "2018-02-23 05:04:28", "35.168.2.89", "3");
INSERT INTO `wp_rg_form_view` VALUES("78185", "6", "2018-02-23 05:14:07", "35.168.2.89", "1");
INSERT INTO `wp_rg_form_view` VALUES("78186", "3", "2018-02-23 06:14:56", "52.37.180.245", "63");
INSERT INTO `wp_rg_form_view` VALUES("78187", "9", "2018-02-23 06:14:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78188", "8", "2018-02-23 06:14:57", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78189", "10", "2018-02-23 06:14:58", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("78190", "15", "2018-02-23 06:15:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78191", "18", "2018-02-23 06:15:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78192", "3", "2018-02-23 07:32:00", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78193", "8", "2018-02-23 07:32:08", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78194", "10", "2018-02-23 07:50:11", "54.37.85.55", "1");
INSERT INTO `wp_rg_form_view` VALUES("78195", "3", "2018-02-23 08:08:40", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78196", "9", "2018-02-23 08:08:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78197", "8", "2018-02-23 08:08:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78198", "10", "2018-02-23 08:08:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78199", "15", "2018-02-23 08:08:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78200", "18", "2018-02-23 08:08:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78201", "9", "2018-02-23 09:52:27", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78202", "3", "2018-02-23 09:52:44", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("78203", "8", "2018-02-23 09:59:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78204", "10", "2018-02-23 09:59:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78205", "15", "2018-02-23 09:59:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78206", "18", "2018-02-23 09:59:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78207", "10", "2018-02-23 10:36:27", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78208", "3", "2018-02-23 10:37:41", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78209", "11", "2018-02-23 10:52:44", "77.75.77.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("78210", "18", "2018-02-23 11:36:45", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78211", "3", "2018-02-23 11:55:58", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78212", "9", "2018-02-23 11:55:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78213", "8", "2018-02-23 11:56:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78214", "10", "2018-02-23 11:56:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78215", "15", "2018-02-23 11:56:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78216", "3", "2018-02-23 12:57:43", "66.249.79.145", "1");
INSERT INTO `wp_rg_form_view` VALUES("78217", "10", "2018-02-23 13:00:13", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("78218", "3", "2018-02-23 13:04:35", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("78219", "18", "2018-02-23 13:48:57", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78220", "9", "2018-02-23 13:49:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78221", "8", "2018-02-23 13:49:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78222", "15", "2018-02-23 13:49:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78223", "3", "2018-02-23 14:10:34", "66.249.79.149", "3");
INSERT INTO `wp_rg_form_view` VALUES("78224", "10", "2018-02-23 14:21:10", "54.36.148.232", "1");
INSERT INTO `wp_rg_form_view` VALUES("78225", "3", "2018-02-23 15:06:12", "138.197.72.0", "32");
INSERT INTO `wp_rg_form_view` VALUES("78226", "9", "2018-02-23 15:39:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78227", "8", "2018-02-23 15:39:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78228", "10", "2018-02-23 15:39:27", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78229", "15", "2018-02-23 15:39:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78230", "18", "2018-02-23 15:39:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78231", "10", "2018-02-23 17:16:32", "54.36.149.100", "11");
INSERT INTO `wp_rg_form_view` VALUES("78232", "3", "2018-02-23 17:29:56", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("78233", "9", "2018-02-23 17:29:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78234", "8", "2018-02-23 17:29:57", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78235", "15", "2018-02-23 17:30:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78236", "18", "2018-02-23 17:30:02", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78237", "14", "2018-02-23 18:20:10", "207.164.79.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("78238", "18", "2018-02-23 18:20:16", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78239", "3", "2018-02-23 19:29:17", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78240", "9", "2018-02-23 19:29:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78241", "8", "2018-02-23 19:29:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78242", "10", "2018-02-23 19:29:19", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("78243", "15", "2018-02-23 19:29:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78244", "18", "2018-02-23 19:29:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78245", "3", "2018-02-23 20:00:09", "216.244.66.247", "21");
INSERT INTO `wp_rg_form_view` VALUES("78246", "18", "2018-02-23 20:00:56", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78247", "18", "2018-02-23 21:07:40", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78248", "3", "2018-02-23 21:40:59", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78249", "9", "2018-02-23 21:41:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78250", "8", "2018-02-23 21:41:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78251", "10", "2018-02-23 21:41:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78252", "15", "2018-02-23 21:41:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78253", "3", "2018-02-23 22:19:24", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("78254", "8", "2018-02-23 22:19:38", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78255", "14", "2018-02-23 22:20:36", "191.101.108.176", "1");
INSERT INTO `wp_rg_form_view` VALUES("78256", "3", "2018-02-23 23:24:53", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("78257", "9", "2018-02-23 23:24:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78258", "8", "2018-02-23 23:24:55", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78259", "10", "2018-02-23 23:24:56", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("78260", "15", "2018-02-23 23:24:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78261", "18", "2018-02-23 23:25:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78262", "18", "2018-02-24 00:25:59", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78263", "18", "2018-02-24 01:02:38", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78264", "3", "2018-02-24 01:26:00", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78265", "9", "2018-02-24 01:26:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78266", "8", "2018-02-24 01:26:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78267", "10", "2018-02-24 01:26:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78268", "15", "2018-02-24 01:26:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78269", "3", "2018-02-24 03:05:37", "216.244.66.195", "92");
INSERT INTO `wp_rg_form_view` VALUES("78270", "9", "2018-02-24 03:20:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78271", "8", "2018-02-24 03:20:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78272", "10", "2018-02-24 03:20:10", "52.37.180.245", "16");
INSERT INTO `wp_rg_form_view` VALUES("78273", "15", "2018-02-24 03:20:15", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78274", "18", "2018-02-24 03:20:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78275", "14", "2018-02-24 03:20:50", "5.39.85.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("78276", "3", "2018-02-24 04:26:33", "139.162.246.24", "15");
INSERT INTO `wp_rg_form_view` VALUES("78277", "8", "2018-02-24 04:26:33", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("78278", "10", "2018-02-24 04:26:34", "139.162.246.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("78279", "15", "2018-02-24 04:26:36", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("78280", "18", "2018-02-24 04:26:36", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("78281", "3", "2018-02-24 05:03:58", "139.162.246.24", "77");
INSERT INTO `wp_rg_form_view` VALUES("78282", "8", "2018-02-24 05:03:59", "139.162.246.24", "5");
INSERT INTO `wp_rg_form_view` VALUES("78283", "10", "2018-02-24 05:03:59", "139.162.246.24", "15");
INSERT INTO `wp_rg_form_view` VALUES("78284", "15", "2018-02-24 05:04:01", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("78285", "18", "2018-02-24 05:04:02", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("78286", "9", "2018-02-24 05:45:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78287", "14", "2018-02-24 05:58:37", "96.50.2.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("78288", "18", "2018-02-24 06:03:05", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78289", "3", "2018-02-24 06:22:34", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("78290", "10", "2018-02-24 06:24:08", "72.14.199.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("78291", "3", "2018-02-24 07:31:31", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78292", "9", "2018-02-24 07:31:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78293", "8", "2018-02-24 07:31:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78294", "10", "2018-02-24 07:31:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78295", "15", "2018-02-24 07:31:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78296", "18", "2018-02-24 07:31:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78297", "3", "2018-02-24 09:15:04", "52.37.180.245", "63");
INSERT INTO `wp_rg_form_view` VALUES("78298", "9", "2018-02-24 09:15:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78299", "8", "2018-02-24 09:15:05", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78300", "10", "2018-02-24 09:15:06", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("78301", "15", "2018-02-24 09:15:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78302", "18", "2018-02-24 09:15:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78303", "3", "2018-02-24 10:08:51", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("78304", "3", "2018-02-24 11:11:30", "52.37.180.245", "38");
INSERT INTO `wp_rg_form_view` VALUES("78305", "9", "2018-02-24 11:11:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78306", "8", "2018-02-24 11:11:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78307", "10", "2018-02-24 11:11:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78308", "15", "2018-02-24 11:11:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78309", "18", "2018-02-24 11:11:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78310", "3", "2018-02-24 12:00:57", "157.55.39.186", "41");
INSERT INTO `wp_rg_form_view` VALUES("78311", "10", "2018-02-24 12:01:21", "157.55.39.186", "8");
INSERT INTO `wp_rg_form_view` VALUES("78312", "8", "2018-02-24 12:01:47", "157.55.39.186", "4");
INSERT INTO `wp_rg_form_view` VALUES("78313", "6", "2018-02-24 12:02:15", "157.55.39.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("78314", "9", "2018-02-24 12:59:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78315", "15", "2018-02-24 12:59:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78316", "18", "2018-02-24 12:59:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78317", "3", "2018-02-24 13:19:38", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78318", "12", "2018-02-24 13:33:17", "54.36.148.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("78319", "3", "2018-02-24 14:23:19", "40.77.167.189", "32");
INSERT INTO `wp_rg_form_view` VALUES("78320", "9", "2018-02-24 14:54:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78321", "8", "2018-02-24 14:54:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78322", "10", "2018-02-24 14:54:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78323", "15", "2018-02-24 14:54:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78324", "18", "2018-02-24 14:54:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78325", "3", "2018-02-24 15:11:25", "139.162.246.24", "219");
INSERT INTO `wp_rg_form_view` VALUES("78326", "14", "2018-02-24 15:28:31", "100.35.47.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("78327", "10", "2018-02-24 15:30:39", "100.35.47.77", "37");
INSERT INTO `wp_rg_form_view` VALUES("78328", "15", "2018-02-24 15:30:45", "100.35.47.77", "8");
INSERT INTO `wp_rg_form_view` VALUES("78329", "6", "2018-02-24 15:31:44", "100.35.47.77", "1");
INSERT INTO `wp_rg_form_view` VALUES("78330", "18", "2018-02-24 15:37:27", "100.35.47.77", "7");
INSERT INTO `wp_rg_form_view` VALUES("78331", "8", "2018-02-24 15:41:19", "100.35.47.77", "15");
INSERT INTO `wp_rg_form_view` VALUES("78332", "9", "2018-02-24 15:42:51", "100.35.47.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("78333", "3", "2018-02-24 16:00:08", "100.35.47.77", "100");
INSERT INTO `wp_rg_form_view` VALUES("78334", "10", "2018-02-24 16:00:32", "100.35.47.77", "19");
INSERT INTO `wp_rg_form_view` VALUES("78335", "15", "2018-02-24 16:00:34", "100.35.47.77", "4");
INSERT INTO `wp_rg_form_view` VALUES("78336", "8", "2018-02-24 16:01:14", "100.35.47.77", "7");
INSERT INTO `wp_rg_form_view` VALUES("78337", "18", "2018-02-24 16:01:19", "100.35.47.77", "5");
INSERT INTO `wp_rg_form_view` VALUES("78338", "9", "2018-02-24 16:59:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78339", "3", "2018-02-24 17:00:21", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78340", "9", "2018-02-24 17:00:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78341", "8", "2018-02-24 17:00:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78342", "10", "2018-02-24 17:00:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78343", "15", "2018-02-24 17:00:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78344", "18", "2018-02-24 17:00:28", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78345", "10", "2018-02-24 18:33:49", "54.36.148.126", "6");
INSERT INTO `wp_rg_form_view` VALUES("78346", "3", "2018-02-24 18:51:16", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78347", "9", "2018-02-24 18:51:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78348", "8", "2018-02-24 18:51:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78349", "15", "2018-02-24 18:51:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78350", "18", "2018-02-24 18:51:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78351", "10", "2018-02-24 19:14:44", "54.36.148.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("78352", "18", "2018-02-24 19:19:35", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78353", "18", "2018-02-24 20:09:57", "54.36.148.133", "3");
INSERT INTO `wp_rg_form_view` VALUES("78354", "3", "2018-02-24 20:56:05", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78355", "9", "2018-02-24 20:56:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78356", "8", "2018-02-24 20:56:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78357", "10", "2018-02-24 20:56:07", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78358", "15", "2018-02-24 20:56:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78359", "3", "2018-02-24 21:46:55", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78360", "3", "2018-02-24 23:00:42", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("78361", "9", "2018-02-24 23:00:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78362", "8", "2018-02-24 23:00:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78363", "10", "2018-02-24 23:00:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78364", "15", "2018-02-24 23:00:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78365", "18", "2018-02-24 23:00:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78366", "3", "2018-02-25 00:09:23", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("78367", "18", "2018-02-25 00:40:29", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78368", "9", "2018-02-25 00:56:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78369", "8", "2018-02-25 00:56:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78370", "10", "2018-02-25 00:56:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78371", "15", "2018-02-25 00:56:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78372", "3", "2018-02-25 01:02:30", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78373", "18", "2018-02-25 01:46:05", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("78374", "3", "2018-02-25 02:27:42", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("78375", "9", "2018-02-25 02:46:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78376", "8", "2018-02-25 02:46:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78377", "10", "2018-02-25 02:46:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78378", "15", "2018-02-25 02:46:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78379", "18", "2018-02-25 02:46:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78380", "3", "2018-02-25 03:21:09", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78381", "18", "2018-02-25 03:30:31", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78382", "3", "2018-02-25 04:00:49", "139.162.246.24", "37");
INSERT INTO `wp_rg_form_view` VALUES("78383", "8", "2018-02-25 04:00:49", "139.162.246.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("78384", "9", "2018-02-25 04:40:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78385", "10", "2018-02-25 04:40:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78386", "15", "2018-02-25 04:40:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78387", "18", "2018-02-25 04:40:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78388", "3", "2018-02-25 05:16:00", "139.162.246.24", "7");
INSERT INTO `wp_rg_form_view` VALUES("78389", "8", "2018-02-25 05:16:00", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("78390", "10", "2018-02-25 05:38:00", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78391", "3", "2018-02-25 06:36:37", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78392", "9", "2018-02-25 06:36:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78393", "8", "2018-02-25 06:36:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78394", "10", "2018-02-25 06:36:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78395", "15", "2018-02-25 06:36:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78396", "18", "2018-02-25 06:36:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78397", "18", "2018-02-25 07:04:12", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78398", "3", "2018-02-25 07:04:36", "157.55.39.60", "2");
INSERT INTO `wp_rg_form_view` VALUES("78399", "18", "2018-02-25 08:14:02", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78400", "3", "2018-02-25 08:26:14", "180.76.15.12", "34");
INSERT INTO `wp_rg_form_view` VALUES("78401", "9", "2018-02-25 08:36:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78402", "8", "2018-02-25 08:36:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78403", "10", "2018-02-25 08:36:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78404", "15", "2018-02-25 08:36:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78405", "18", "2018-02-25 09:22:28", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78406", "3", "2018-02-25 09:47:22", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("78407", "3", "2018-02-25 10:31:55", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("78408", "9", "2018-02-25 10:31:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78409", "8", "2018-02-25 10:31:56", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78410", "10", "2018-02-25 10:31:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78411", "15", "2018-02-25 10:31:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78412", "18", "2018-02-25 10:32:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78413", "3", "2018-02-25 11:02:45", "46.4.104.39", "18");
INSERT INTO `wp_rg_form_view` VALUES("78414", "10", "2018-02-25 11:13:25", "46.4.104.39", "2");
INSERT INTO `wp_rg_form_view` VALUES("78415", "8", "2018-02-25 11:15:19", "46.4.104.39", "1");
INSERT INTO `wp_rg_form_view` VALUES("78416", "14", "2018-02-25 11:32:02", "198.12.68.52", "4");
INSERT INTO `wp_rg_form_view` VALUES("78417", "3", "2018-02-25 12:15:34", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("78418", "9", "2018-02-25 12:15:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78419", "8", "2018-02-25 12:15:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78420", "10", "2018-02-25 12:15:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78421", "15", "2018-02-25 12:15:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78422", "18", "2018-02-25 12:15:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78423", "10", "2018-02-25 13:54:32", "54.36.148.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("78424", "3", "2018-02-25 13:58:19", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("78425", "3", "2018-02-25 14:14:59", "52.37.180.245", "95");
INSERT INTO `wp_rg_form_view` VALUES("78426", "9", "2018-02-25 14:14:59", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78427", "8", "2018-02-25 14:15:00", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78428", "10", "2018-02-25 14:15:00", "52.37.180.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("78429", "15", "2018-02-25 14:15:02", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78430", "18", "2018-02-25 14:15:04", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78431", "8", "2018-02-25 15:27:51", "54.36.149.51", "1");
INSERT INTO `wp_rg_form_view` VALUES("78432", "18", "2018-02-25 15:58:04", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78433", "3", "2018-02-25 16:17:24", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78434", "9", "2018-02-25 16:17:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78435", "8", "2018-02-25 16:17:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78436", "10", "2018-02-25 16:17:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78437", "15", "2018-02-25 16:17:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78438", "18", "2018-02-25 16:17:29", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78439", "14", "2018-02-25 16:23:21", "70.67.107.142", "1");
INSERT INTO `wp_rg_form_view` VALUES("78440", "3", "2018-02-25 17:46:35", "173.208.206.50", "2");
INSERT INTO `wp_rg_form_view` VALUES("78441", "18", "2018-02-25 18:04:26", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78442", "3", "2018-02-25 18:15:57", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78443", "9", "2018-02-25 18:15:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78444", "8", "2018-02-25 18:15:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78445", "10", "2018-02-25 18:15:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78446", "15", "2018-02-25 18:16:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78447", "3", "2018-02-25 19:14:08", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("78448", "9", "2018-02-25 19:59:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78449", "8", "2018-02-25 19:59:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78450", "10", "2018-02-25 19:59:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78451", "15", "2018-02-25 19:59:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78452", "18", "2018-02-25 19:59:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78453", "3", "2018-02-25 20:14:05", "180.76.15.9", "13");
INSERT INTO `wp_rg_form_view` VALUES("78454", "18", "2018-02-25 20:31:22", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78455", "3", "2018-02-25 21:24:43", "207.46.13.110", "37");
INSERT INTO `wp_rg_form_view` VALUES("78456", "9", "2018-02-25 21:24:54", "157.55.39.164", "2");
INSERT INTO `wp_rg_form_view` VALUES("78457", "8", "2018-02-25 21:25:09", "207.46.13.110", "3");
INSERT INTO `wp_rg_form_view` VALUES("78458", "10", "2018-02-25 21:25:41", "157.55.39.164", "6");
INSERT INTO `wp_rg_form_view` VALUES("78459", "15", "2018-02-25 21:26:01", "207.46.13.110", "2");
INSERT INTO `wp_rg_form_view` VALUES("78460", "18", "2018-02-25 21:54:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78461", "8", "2018-02-25 22:03:27", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78462", "3", "2018-02-25 22:03:40", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78463", "18", "2018-02-25 22:06:11", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78464", "10", "2018-02-25 22:09:53", "66.249.92.30", "1");
INSERT INTO `wp_rg_form_view` VALUES("78465", "3", "2018-02-25 23:46:49", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78466", "9", "2018-02-25 23:46:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78467", "8", "2018-02-25 23:46:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78468", "10", "2018-02-25 23:46:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78469", "15", "2018-02-25 23:46:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78470", "18", "2018-02-25 23:46:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78471", "18", "2018-02-26 00:02:10", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78472", "3", "2018-02-26 00:56:32", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78473", "18", "2018-02-26 01:11:46", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78474", "3", "2018-02-26 01:49:24", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78475", "9", "2018-02-26 01:49:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78476", "8", "2018-02-26 01:49:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78477", "10", "2018-02-26 01:49:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78478", "15", "2018-02-26 01:49:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78479", "3", "2018-02-26 02:01:09", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("78480", "9", "2018-02-26 02:01:10", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78481", "8", "2018-02-26 02:01:10", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78482", "10", "2018-02-26 02:01:11", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("78483", "15", "2018-02-26 02:01:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78484", "18", "2018-02-26 02:01:15", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78485", "6", "2018-02-26 02:22:20", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78486", "3", "2018-02-26 03:43:55", "216.244.66.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("78487", "9", "2018-02-26 03:50:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78488", "8", "2018-02-26 03:50:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78489", "10", "2018-02-26 03:50:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78490", "15", "2018-02-26 03:50:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78491", "18", "2018-02-26 03:50:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78492", "3", "2018-02-26 04:05:06", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("78493", "9", "2018-02-26 04:05:07", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78494", "8", "2018-02-26 04:05:07", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78495", "10", "2018-02-26 04:05:08", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("78496", "15", "2018-02-26 04:05:10", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78497", "18", "2018-02-26 04:05:12", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78498", "10", "2018-02-26 05:00:45", "216.244.66.231", "6");
INSERT INTO `wp_rg_form_view` VALUES("78499", "18", "2018-02-26 05:06:25", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78500", "9", "2018-02-26 05:20:23", "157.55.39.239", "2");
INSERT INTO `wp_rg_form_view` VALUES("78501", "3", "2018-02-26 05:44:10", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78502", "8", "2018-02-26 05:44:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78503", "15", "2018-02-26 05:44:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78504", "3", "2018-02-26 06:12:27", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("78505", "9", "2018-02-26 06:12:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78506", "8", "2018-02-26 06:12:28", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78507", "10", "2018-02-26 06:12:29", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("78508", "15", "2018-02-26 06:12:31", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78509", "18", "2018-02-26 06:12:34", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78510", "11", "2018-02-26 06:21:15", "77.75.77.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("78511", "3", "2018-02-26 07:06:33", "54.36.148.163", "32");
INSERT INTO `wp_rg_form_view` VALUES("78512", "9", "2018-02-26 07:31:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78513", "8", "2018-02-26 07:31:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78514", "10", "2018-02-26 07:31:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78515", "15", "2018-02-26 07:31:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78516", "18", "2018-02-26 07:31:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78517", "18", "2018-02-26 08:20:07", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78518", "8", "2018-02-26 08:44:33", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78519", "3", "2018-02-26 08:45:03", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78520", "3", "2018-02-26 09:21:44", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78521", "9", "2018-02-26 09:21:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78522", "8", "2018-02-26 09:21:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78523", "10", "2018-02-26 09:21:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78524", "15", "2018-02-26 09:21:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78525", "18", "2018-02-26 09:21:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78526", "14", "2018-02-26 10:01:21", "54.36.148.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("78527", "10", "2018-02-26 11:09:06", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("78528", "3", "2018-02-26 11:30:53", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78529", "9", "2018-02-26 11:30:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78530", "8", "2018-02-26 11:30:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78531", "15", "2018-02-26 11:30:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78532", "18", "2018-02-26 11:30:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78533", "3", "2018-02-26 12:27:39", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78534", "9", "2018-02-26 13:00:05", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78535", "3", "2018-02-26 13:00:18", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("78536", "8", "2018-02-26 13:25:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78537", "10", "2018-02-26 13:25:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78538", "15", "2018-02-26 13:25:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78539", "18", "2018-02-26 13:25:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78540", "18", "2018-02-26 14:26:40", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78541", "3", "2018-02-26 14:42:30", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("78542", "3", "2018-02-26 15:30:18", "216.244.66.231", "32");
INSERT INTO `wp_rg_form_view` VALUES("78543", "9", "2018-02-26 15:31:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78544", "8", "2018-02-26 15:31:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78545", "10", "2018-02-26 15:31:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78546", "15", "2018-02-26 15:31:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78547", "18", "2018-02-26 15:31:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78548", "3", "2018-02-26 16:34:41", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("78549", "18", "2018-02-26 17:13:10", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78550", "3", "2018-02-26 17:21:49", "184.69.1.190", "33");
INSERT INTO `wp_rg_form_view` VALUES("78551", "9", "2018-02-26 17:26:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78552", "8", "2018-02-26 17:26:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78553", "10", "2018-02-26 17:26:22", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78554", "15", "2018-02-26 17:26:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78555", "14", "2018-02-26 17:40:11", "184.66.49.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("78556", "3", "2018-02-26 18:19:54", "184.66.247.127", "9");
INSERT INTO `wp_rg_form_view` VALUES("78557", "3", "2018-02-26 19:09:27", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("78558", "9", "2018-02-26 19:21:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78559", "8", "2018-02-26 19:21:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78560", "10", "2018-02-26 19:21:32", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("78561", "15", "2018-02-26 19:21:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78562", "18", "2018-02-26 19:21:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78563", "14", "2018-02-26 20:16:51", "108.180.146.44", "3");
INSERT INTO `wp_rg_form_view` VALUES("78564", "18", "2018-02-26 20:17:37", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("78565", "3", "2018-02-26 20:35:20", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("78566", "18", "2018-02-26 21:02:49", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78567", "3", "2018-02-26 21:07:52", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("78568", "9", "2018-02-26 21:07:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78569", "8", "2018-02-26 21:07:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78570", "10", "2018-02-26 21:07:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78571", "15", "2018-02-26 21:07:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78572", "3", "2018-02-26 22:02:34", "180.76.15.28", "2");
INSERT INTO `wp_rg_form_view` VALUES("78573", "18", "2018-02-26 22:42:57", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78574", "3", "2018-02-26 23:05:43", "52.37.180.245", "63");
INSERT INTO `wp_rg_form_view` VALUES("78575", "9", "2018-02-26 23:05:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78576", "8", "2018-02-26 23:05:45", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78577", "10", "2018-02-26 23:05:45", "52.37.180.245", "12");
INSERT INTO `wp_rg_form_view` VALUES("78578", "15", "2018-02-26 23:05:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78579", "18", "2018-02-26 23:05:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78580", "18", "2018-02-27 00:19:47", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78581", "3", "2018-02-27 01:10:01", "52.37.180.245", "65");
INSERT INTO `wp_rg_form_view` VALUES("78582", "9", "2018-02-27 01:10:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78583", "8", "2018-02-27 01:10:02", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78584", "10", "2018-02-27 01:10:03", "52.37.180.245", "12");
INSERT INTO `wp_rg_form_view` VALUES("78585", "15", "2018-02-27 01:10:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78586", "18", "2018-02-27 01:10:08", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78587", "3", "2018-02-27 02:13:12", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("78588", "18", "2018-02-27 02:37:45", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78589", "14", "2018-02-27 02:52:07", "207.46.13.35", "1");
INSERT INTO `wp_rg_form_view` VALUES("78590", "18", "2018-02-27 03:00:34", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78591", "3", "2018-02-27 03:05:33", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78592", "9", "2018-02-27 03:05:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78593", "8", "2018-02-27 03:05:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78594", "10", "2018-02-27 03:05:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78595", "15", "2018-02-27 03:05:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78596", "10", "2018-02-27 04:37:34", "216.244.66.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("78597", "3", "2018-02-27 04:49:59", "52.37.180.245", "62");
INSERT INTO `wp_rg_form_view` VALUES("78598", "9", "2018-02-27 04:49:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78599", "8", "2018-02-27 04:50:00", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78600", "15", "2018-02-27 04:50:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78601", "18", "2018-02-27 04:50:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78602", "10", "2018-02-27 05:11:46", "184.66.129.248", "5");
INSERT INTO `wp_rg_form_view` VALUES("78603", "3", "2018-02-27 06:03:14", "180.76.15.154", "33");
INSERT INTO `wp_rg_form_view` VALUES("78604", "18", "2018-02-27 06:30:57", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78605", "14", "2018-02-27 06:49:50", "205.250.183.217", "1");
INSERT INTO `wp_rg_form_view` VALUES("78606", "9", "2018-02-27 06:54:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78607", "8", "2018-02-27 06:54:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78608", "10", "2018-02-27 06:54:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78609", "15", "2018-02-27 06:54:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78610", "18", "2018-02-27 07:26:21", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78611", "10", "2018-02-27 07:45:13", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78612", "3", "2018-02-27 07:45:36", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78613", "3", "2018-02-27 08:45:57", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78614", "9", "2018-02-27 08:45:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78615", "8", "2018-02-27 08:45:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78616", "10", "2018-02-27 08:45:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78617", "15", "2018-02-27 08:46:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78618", "18", "2018-02-27 08:46:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78619", "18", "2018-02-27 09:36:41", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78620", "3", "2018-02-27 09:44:11", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78621", "3", "2018-02-27 10:14:27", "137.74.92.77", "34");
INSERT INTO `wp_rg_form_view` VALUES("78622", "9", "2018-02-27 10:39:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78623", "8", "2018-02-27 10:39:45", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78624", "10", "2018-02-27 10:39:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78625", "15", "2018-02-27 10:39:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78626", "18", "2018-02-27 10:39:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78627", "18", "2018-02-27 11:36:46", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78628", "3", "2018-02-27 11:40:39", "146.185.223.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("78629", "3", "2018-02-27 12:30:40", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78630", "9", "2018-02-27 12:30:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78631", "8", "2018-02-27 12:30:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78632", "10", "2018-02-27 12:30:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78633", "15", "2018-02-27 12:30:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78634", "18", "2018-02-27 12:30:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78635", "3", "2018-02-27 13:31:14", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("78636", "3", "2018-02-27 14:22:52", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78637", "9", "2018-02-27 14:22:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78638", "8", "2018-02-27 14:22:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78639", "10", "2018-02-27 14:22:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78640", "15", "2018-02-27 14:22:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78641", "18", "2018-02-27 14:22:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78642", "12", "2018-02-27 14:56:55", "157.55.39.78", "1");
INSERT INTO `wp_rg_form_view` VALUES("78643", "3", "2018-02-27 15:17:08", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("78644", "10", "2018-02-27 15:37:46", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("78645", "3", "2018-02-27 16:17:14", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("78646", "18", "2018-02-27 16:20:56", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("78647", "9", "2018-02-27 16:24:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78648", "8", "2018-02-27 16:24:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78649", "10", "2018-02-27 16:24:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78650", "15", "2018-02-27 16:24:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78651", "3", "2018-02-27 17:04:26", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("78652", "15", "2018-02-27 17:04:43", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78653", "8", "2018-02-27 17:24:32", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78654", "14", "2018-02-27 17:42:16", "184.66.49.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("78655", "18", "2018-02-27 18:10:26", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78656", "3", "2018-02-27 18:14:52", "52.37.180.245", "65");
INSERT INTO `wp_rg_form_view` VALUES("78657", "9", "2018-02-27 18:14:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78658", "8", "2018-02-27 18:14:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78659", "10", "2018-02-27 18:14:55", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("78660", "15", "2018-02-27 18:14:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78661", "14", "2018-02-27 19:12:14", "184.66.49.231", "3");
INSERT INTO `wp_rg_form_view` VALUES("78662", "3", "2018-02-27 19:24:35", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78663", "8", "2018-02-27 19:25:11", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78664", "18", "2018-02-27 20:06:47", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78665", "9", "2018-02-27 20:13:57", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78666", "3", "2018-02-27 20:16:01", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78667", "8", "2018-02-27 20:16:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78668", "10", "2018-02-27 20:16:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78669", "15", "2018-02-27 20:16:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78670", "18", "2018-02-27 21:04:03", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78671", "3", "2018-02-27 21:18:13", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("78672", "8", "2018-02-27 21:18:53", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78673", "12", "2018-02-27 21:45:20", "40.77.178.156", "1");
INSERT INTO `wp_rg_form_view` VALUES("78674", "3", "2018-02-27 22:00:52", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78675", "9", "2018-02-27 22:00:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78676", "8", "2018-02-27 22:00:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78677", "10", "2018-02-27 22:00:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78678", "15", "2018-02-27 22:00:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78679", "18", "2018-02-27 22:00:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78680", "14", "2018-02-27 22:25:29", "108.180.147.111", "1");
INSERT INTO `wp_rg_form_view` VALUES("78681", "18", "2018-02-27 23:46:11", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78682", "3", "2018-02-27 23:54:32", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78683", "9", "2018-02-27 23:54:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78684", "8", "2018-02-27 23:54:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78685", "10", "2018-02-27 23:54:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78686", "15", "2018-02-27 23:54:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78687", "10", "2018-02-28 01:40:42", "64.180.22.23", "3");
INSERT INTO `wp_rg_form_view` VALUES("78688", "3", "2018-02-28 02:06:59", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("78689", "9", "2018-02-28 02:06:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78690", "8", "2018-02-28 02:07:00", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78691", "10", "2018-02-28 02:07:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78692", "15", "2018-02-28 02:07:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78693", "18", "2018-02-28 02:07:05", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78694", "3", "2018-02-28 03:05:30", "216.244.66.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("78695", "10", "2018-02-28 03:33:13", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("78696", "9", "2018-02-28 03:56:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78697", "8", "2018-02-28 03:56:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78698", "15", "2018-02-28 03:56:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78699", "18", "2018-02-28 03:56:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78700", "18", "2018-02-28 04:34:07", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78701", "3", "2018-02-28 05:25:38", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("78702", "9", "2018-02-28 05:43:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78703", "8", "2018-02-28 05:43:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78704", "10", "2018-02-28 05:43:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78705", "15", "2018-02-28 05:44:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78706", "18", "2018-02-28 05:44:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78707", "10", "2018-02-28 06:03:24", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78708", "3", "2018-02-28 06:03:50", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78709", "18", "2018-02-28 07:37:13", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78710", "3", "2018-02-28 07:38:17", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78711", "9", "2018-02-28 07:38:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78712", "8", "2018-02-28 07:38:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78713", "10", "2018-02-28 07:38:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78714", "15", "2018-02-28 07:38:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78715", "3", "2018-02-28 08:11:24", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78716", "18", "2018-02-28 09:14:09", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78717", "3", "2018-02-28 09:20:00", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("78718", "9", "2018-02-28 09:27:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78719", "8", "2018-02-28 09:27:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78720", "10", "2018-02-28 09:27:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78721", "15", "2018-02-28 09:27:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78722", "3", "2018-02-28 10:11:28", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("78723", "10", "2018-02-28 10:14:00", "54.36.148.46", "1");
INSERT INTO `wp_rg_form_view` VALUES("78724", "3", "2018-02-28 11:17:20", "216.244.66.195", "63");
INSERT INTO `wp_rg_form_view` VALUES("78725", "9", "2018-02-28 11:40:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78726", "8", "2018-02-28 11:40:03", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78727", "10", "2018-02-28 11:40:04", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("78728", "15", "2018-02-28 11:40:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78729", "18", "2018-02-28 11:40:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78730", "3", "2018-02-28 12:10:13", "144.76.8.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("78731", "3", "2018-02-28 13:10:32", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("78732", "9", "2018-02-28 13:26:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78733", "8", "2018-02-28 13:26:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78734", "10", "2018-02-28 13:26:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78735", "15", "2018-02-28 13:26:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78736", "18", "2018-02-28 13:26:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78737", "3", "2018-02-28 14:18:38", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78738", "3", "2018-02-28 15:12:56", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78739", "9", "2018-02-28 15:12:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78740", "8", "2018-02-28 15:12:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78741", "10", "2018-02-28 15:12:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78742", "15", "2018-02-28 15:12:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78743", "18", "2018-02-28 15:13:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78744", "10", "2018-02-28 16:21:32", "66.249.90.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("78745", "3", "2018-02-28 16:22:27", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("78746", "3", "2018-02-28 17:06:42", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("78747", "9", "2018-02-28 17:06:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78748", "8", "2018-02-28 17:06:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78749", "10", "2018-02-28 17:06:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78750", "15", "2018-02-28 17:06:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78751", "18", "2018-02-28 17:06:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78752", "3", "2018-02-28 18:11:50", "70.66.152.210", "38");
INSERT INTO `wp_rg_form_view` VALUES("78753", "10", "2018-02-28 18:31:26", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("78754", "6", "2018-02-28 18:40:22", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("78755", "18", "2018-02-28 18:51:50", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78756", "9", "2018-02-28 18:52:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78757", "8", "2018-02-28 18:52:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78758", "15", "2018-02-28 18:52:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78759", "3", "2018-02-28 19:32:00", "88.99.2.203", "9");
INSERT INTO `wp_rg_form_view` VALUES("78760", "18", "2018-02-28 19:34:30", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78761", "8", "2018-02-28 20:01:00", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("78762", "3", "2018-02-28 20:05:00", "108.180.150.79", "36");
INSERT INTO `wp_rg_form_view` VALUES("78763", "18", "2018-02-28 20:05:11", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78764", "9", "2018-02-28 20:36:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78765", "10", "2018-02-28 20:36:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78766", "15", "2018-02-28 20:36:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78767", "18", "2018-02-28 21:16:57", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78768", "3", "2018-02-28 21:36:44", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("78769", "3", "2018-02-28 22:03:04", "96.54.241.191", "67");
INSERT INTO `wp_rg_form_view` VALUES("78770", "14", "2018-02-28 22:14:02", "104.223.52.151", "5");
INSERT INTO `wp_rg_form_view` VALUES("78771", "10", "2018-02-28 22:17:09", "216.244.66.231", "11");
INSERT INTO `wp_rg_form_view` VALUES("78772", "9", "2018-02-28 22:25:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78773", "8", "2018-02-28 22:25:49", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("78774", "15", "2018-02-28 22:25:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78775", "18", "2018-02-28 22:25:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78776", "3", "2018-02-28 23:09:25", "137.74.92.77", "12");
INSERT INTO `wp_rg_form_view` VALUES("78777", "18", "2018-02-28 23:27:07", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78778", "18", "2018-03-01 00:19:11", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78779", "3", "2018-03-01 00:24:48", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78780", "9", "2018-03-01 00:24:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78781", "8", "2018-03-01 00:24:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78782", "10", "2018-03-01 00:24:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78783", "15", "2018-03-01 00:24:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78784", "14", "2018-03-01 01:35:12", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("78785", "3", "2018-03-01 02:22:07", "52.37.180.245", "42");
INSERT INTO `wp_rg_form_view` VALUES("78786", "9", "2018-03-01 02:22:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78787", "8", "2018-03-01 02:22:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78788", "10", "2018-03-01 02:22:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78789", "15", "2018-03-01 02:22:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78790", "18", "2018-03-01 02:22:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78791", "10", "2018-03-01 03:21:39", "50.99.205.217", "2");
INSERT INTO `wp_rg_form_view` VALUES("78792", "18", "2018-03-01 03:40:05", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78793", "3", "2018-03-01 03:46:12", "144.76.19.144", "3");
INSERT INTO `wp_rg_form_view` VALUES("78794", "3", "2018-03-01 04:11:12", "70.66.53.14", "35");
INSERT INTO `wp_rg_form_view` VALUES("78795", "14", "2018-03-01 04:16:15", "70.66.53.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("78796", "9", "2018-03-01 04:18:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78797", "8", "2018-03-01 04:18:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78798", "10", "2018-03-01 04:18:21", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("78799", "15", "2018-03-01 04:18:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78800", "18", "2018-03-01 04:18:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78801", "18", "2018-03-01 05:01:20", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78802", "3", "2018-03-01 05:21:08", "216.244.66.231", "4");
INSERT INTO `wp_rg_form_view` VALUES("78803", "6", "2018-03-01 06:06:40", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78804", "3", "2018-03-01 06:06:56", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("78805", "18", "2018-03-01 06:11:37", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78806", "9", "2018-03-01 06:21:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78807", "8", "2018-03-01 06:21:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78808", "10", "2018-03-01 06:21:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78809", "15", "2018-03-01 06:21:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78810", "18", "2018-03-01 07:01:02", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78811", "3", "2018-03-01 08:25:51", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("78812", "9", "2018-03-01 08:25:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78813", "8", "2018-03-01 08:25:52", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78814", "10", "2018-03-01 08:25:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78815", "15", "2018-03-01 08:25:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78816", "18", "2018-03-01 08:25:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78817", "3", "2018-03-01 10:06:12", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("78818", "9", "2018-03-01 10:24:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78819", "8", "2018-03-01 10:24:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78820", "10", "2018-03-01 10:24:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78821", "15", "2018-03-01 10:24:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78822", "18", "2018-03-01 10:24:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78823", "3", "2018-03-01 11:14:08", "207.194.133.9", "37");
INSERT INTO `wp_rg_form_view` VALUES("78824", "18", "2018-03-01 11:18:31", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78825", "10", "2018-03-01 11:21:21", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("78826", "9", "2018-03-01 11:22:10", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78827", "8", "2018-03-01 11:22:10", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78828", "15", "2018-03-01 11:22:13", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78829", "3", "2018-03-01 12:47:39", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("78830", "9", "2018-03-01 12:47:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78831", "8", "2018-03-01 12:47:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78832", "10", "2018-03-01 12:47:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78833", "15", "2018-03-01 12:47:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78834", "18", "2018-03-01 12:47:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78835", "3", "2018-03-01 13:34:54", "91.121.116.72", "3");
INSERT INTO `wp_rg_form_view` VALUES("78836", "3", "2018-03-01 14:00:04", "216.244.66.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("78837", "9", "2018-03-01 14:36:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78838", "8", "2018-03-01 14:36:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78839", "10", "2018-03-01 14:36:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78840", "15", "2018-03-01 14:36:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78841", "18", "2018-03-01 14:36:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78842", "9", "2018-03-01 15:04:32", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78843", "3", "2018-03-01 15:04:46", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("78844", "18", "2018-03-01 16:02:07", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78845", "3", "2018-03-01 16:27:48", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("78846", "9", "2018-03-01 16:27:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78847", "8", "2018-03-01 16:27:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78848", "10", "2018-03-01 16:27:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78849", "15", "2018-03-01 16:27:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78850", "18", "2018-03-01 17:01:49", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78851", "3", "2018-03-01 17:03:50", "184.69.102.142", "3");
INSERT INTO `wp_rg_form_view` VALUES("78852", "10", "2018-03-01 17:16:22", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78853", "3", "2018-03-01 18:04:11", "24.108.21.208", "51");
INSERT INTO `wp_rg_form_view` VALUES("78854", "9", "2018-03-01 18:16:37", "157.55.39.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("78855", "8", "2018-03-01 18:17:57", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78856", "10", "2018-03-01 18:18:00", "52.37.180.245", "8");
INSERT INTO `wp_rg_form_view` VALUES("78857", "15", "2018-03-01 18:18:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78858", "18", "2018-03-01 18:18:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78859", "14", "2018-03-01 18:43:50", "70.66.167.205", "2");
INSERT INTO `wp_rg_form_view` VALUES("78860", "3", "2018-03-01 19:18:15", "157.55.39.41", "2");
INSERT INTO `wp_rg_form_view` VALUES("78861", "3", "2018-03-01 20:10:37", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("78862", "10", "2018-03-01 20:10:54", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("78863", "9", "2018-03-01 20:13:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78864", "8", "2018-03-01 20:13:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78865", "15", "2018-03-01 20:13:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78866", "18", "2018-03-01 20:13:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78867", "3", "2018-03-01 21:31:21", "123.125.71.96", "5");
INSERT INTO `wp_rg_form_view` VALUES("78868", "14", "2018-03-01 22:00:36", "70.66.167.205", "1");
INSERT INTO `wp_rg_form_view` VALUES("78869", "3", "2018-03-01 22:03:00", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78870", "9", "2018-03-01 22:03:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78871", "8", "2018-03-01 22:03:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78872", "10", "2018-03-01 22:03:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78873", "15", "2018-03-01 22:03:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78874", "18", "2018-03-01 22:03:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78875", "10", "2018-03-01 23:03:19", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78876", "3", "2018-03-02 00:09:20", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78877", "9", "2018-03-02 00:09:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78878", "8", "2018-03-02 00:09:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78879", "10", "2018-03-02 00:09:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78880", "15", "2018-03-02 00:09:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78881", "18", "2018-03-02 00:09:25", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78882", "18", "2018-03-02 01:18:51", "194.187.170.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("78883", "3", "2018-03-02 02:07:06", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("78884", "9", "2018-03-02 02:07:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78885", "8", "2018-03-02 02:07:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78886", "10", "2018-03-02 02:07:07", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78887", "15", "2018-03-02 02:07:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78888", "18", "2018-03-02 02:07:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78889", "3", "2018-03-02 03:23:48", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("78890", "14", "2018-03-02 03:25:44", "96.54.230.75", "2");
INSERT INTO `wp_rg_form_view` VALUES("78891", "18", "2018-03-02 03:34:42", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78892", "9", "2018-03-02 03:52:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78893", "8", "2018-03-02 03:52:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78894", "10", "2018-03-02 03:52:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78895", "15", "2018-03-02 03:52:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78896", "18", "2018-03-02 04:07:24", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78897", "14", "2018-03-02 04:49:31", "96.50.18.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("78898", "3", "2018-03-02 04:50:47", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78899", "3", "2018-03-02 05:32:49", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("78900", "9", "2018-03-02 05:46:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78901", "8", "2018-03-02 05:46:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78902", "10", "2018-03-02 05:46:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78903", "15", "2018-03-02 05:46:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78904", "18", "2018-03-02 05:46:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78905", "3", "2018-03-02 06:18:29", "75.156.35.44", "1");
INSERT INTO `wp_rg_form_view` VALUES("78906", "3", "2018-03-02 07:11:04", "66.249.69.55", "36");
INSERT INTO `wp_rg_form_view` VALUES("78907", "18", "2018-03-02 07:13:46", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78908", "9", "2018-03-02 07:51:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78909", "8", "2018-03-02 07:51:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78910", "10", "2018-03-02 07:51:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78911", "15", "2018-03-02 07:51:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78912", "10", "2018-03-02 08:33:06", "207.46.13.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("78913", "18", "2018-03-02 09:21:51", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78914", "3", "2018-03-02 09:36:22", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78915", "9", "2018-03-02 09:36:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78916", "8", "2018-03-02 09:36:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78917", "10", "2018-03-02 09:36:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78918", "15", "2018-03-02 09:36:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78919", "3", "2018-03-02 10:21:12", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78920", "8", "2018-03-02 10:21:29", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78921", "3", "2018-03-02 11:15:43", "220.181.108.93", "43");
INSERT INTO `wp_rg_form_view` VALUES("78922", "9", "2018-03-02 11:26:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78923", "8", "2018-03-02 11:26:39", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78924", "10", "2018-03-02 11:26:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78925", "15", "2018-03-02 11:26:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78926", "18", "2018-03-02 11:26:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78927", "3", "2018-03-02 12:01:20", "82.102.24.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("78928", "10", "2018-03-02 13:00:03", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("78929", "3", "2018-03-02 13:13:33", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("78930", "9", "2018-03-02 13:13:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78931", "8", "2018-03-02 13:13:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78932", "15", "2018-03-02 13:13:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78933", "18", "2018-03-02 13:13:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78934", "3", "2018-03-02 14:40:39", "46.229.168.74", "16");
INSERT INTO `wp_rg_form_view` VALUES("78935", "3", "2018-03-02 15:01:31", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78936", "9", "2018-03-02 15:01:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78937", "8", "2018-03-02 15:01:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78938", "10", "2018-03-02 15:01:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78939", "15", "2018-03-02 15:01:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78940", "18", "2018-03-02 15:01:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78941", "3", "2018-03-02 16:17:12", "216.244.66.247", "45");
INSERT INTO `wp_rg_form_view` VALUES("78942", "9", "2018-03-02 16:17:31", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("78943", "8", "2018-03-02 16:19:08", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("78944", "18", "2018-03-02 16:47:10", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("78945", "10", "2018-03-02 16:56:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78946", "15", "2018-03-02 16:56:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78947", "18", "2018-03-02 17:24:11", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78948", "3", "2018-03-02 17:44:09", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78949", "3", "2018-03-02 18:45:38", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78950", "9", "2018-03-02 18:45:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78951", "8", "2018-03-02 18:45:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78952", "10", "2018-03-02 18:45:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78953", "15", "2018-03-02 18:45:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78954", "18", "2018-03-02 18:45:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78955", "18", "2018-03-02 20:17:50", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78956", "3", "2018-03-02 20:41:50", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("78957", "9", "2018-03-02 20:41:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78958", "8", "2018-03-02 20:41:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78959", "10", "2018-03-02 20:41:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78960", "15", "2018-03-02 20:41:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78961", "3", "2018-03-02 21:37:01", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("78962", "3", "2018-03-02 22:42:34", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("78963", "9", "2018-03-02 22:42:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78964", "8", "2018-03-02 22:42:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78965", "10", "2018-03-02 22:42:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78966", "15", "2018-03-02 22:42:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78967", "18", "2018-03-02 22:42:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78968", "18", "2018-03-02 23:08:43", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78969", "3", "2018-03-02 23:25:50", "137.74.92.77", "2");
INSERT INTO `wp_rg_form_view` VALUES("78970", "10", "2018-03-02 23:39:05", "184.66.129.248", "3");
INSERT INTO `wp_rg_form_view` VALUES("78971", "18", "2018-03-03 00:24:23", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("78972", "3", "2018-03-03 00:30:43", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("78973", "9", "2018-03-03 00:30:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78974", "8", "2018-03-03 00:30:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78975", "10", "2018-03-03 00:30:46", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78976", "15", "2018-03-03 00:30:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78977", "14", "2018-03-03 00:33:57", "103.89.89.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("78978", "3", "2018-03-03 01:58:33", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("78979", "3", "2018-03-03 02:30:56", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78980", "9", "2018-03-03 02:30:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78981", "8", "2018-03-03 02:30:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("78982", "10", "2018-03-03 02:30:58", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("78983", "15", "2018-03-03 02:31:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78984", "18", "2018-03-03 02:31:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78985", "3", "2018-03-03 03:47:29", "66.249.79.117", "2");
INSERT INTO `wp_rg_form_view` VALUES("78986", "18", "2018-03-03 04:03:05", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78987", "3", "2018-03-03 04:16:07", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("78988", "9", "2018-03-03 04:16:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78989", "8", "2018-03-03 04:16:08", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("78990", "10", "2018-03-03 04:16:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("78991", "15", "2018-03-03 04:16:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78992", "14", "2018-03-03 04:37:44", "64.180.22.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("78993", "10", "2018-03-03 05:46:54", "199.16.157.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("78994", "18", "2018-03-03 05:54:26", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("78995", "3", "2018-03-03 05:55:52", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("78996", "18", "2018-03-03 06:04:29", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("78997", "3", "2018-03-03 06:06:18", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("78998", "9", "2018-03-03 06:06:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("78999", "8", "2018-03-03 06:06:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79000", "10", "2018-03-03 06:06:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79001", "15", "2018-03-03 06:06:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79002", "18", "2018-03-03 07:17:06", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79003", "3", "2018-03-03 07:36:30", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("79004", "9", "2018-03-03 07:36:31", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79005", "8", "2018-03-03 07:36:31", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79006", "10", "2018-03-03 07:36:32", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("79007", "15", "2018-03-03 07:36:34", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79008", "3", "2018-03-03 08:01:11", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79009", "9", "2018-03-03 08:01:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79010", "8", "2018-03-03 08:01:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79011", "10", "2018-03-03 08:01:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79012", "15", "2018-03-03 08:01:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79013", "18", "2018-03-03 08:01:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79014", "18", "2018-03-03 09:17:06", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79015", "3", "2018-03-03 09:22:47", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79016", "3", "2018-03-03 10:08:30", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79017", "9", "2018-03-03 10:08:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79018", "8", "2018-03-03 10:08:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79019", "10", "2018-03-03 10:08:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79020", "15", "2018-03-03 10:08:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79021", "18", "2018-03-03 10:08:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79022", "3", "2018-03-03 11:55:14", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("79023", "9", "2018-03-03 11:55:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79024", "8", "2018-03-03 11:55:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79025", "10", "2018-03-03 11:55:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79026", "15", "2018-03-03 11:55:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79027", "18", "2018-03-03 11:55:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79028", "3", "2018-03-03 12:33:22", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("79029", "10", "2018-03-03 13:13:14", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("79030", "3", "2018-03-03 13:13:39", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("79031", "9", "2018-03-03 13:50:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79032", "8", "2018-03-03 13:50:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79033", "15", "2018-03-03 13:50:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79034", "18", "2018-03-03 13:50:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79035", "10", "2018-03-03 14:43:56", "72.14.199.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("79036", "3", "2018-03-03 15:12:18", "66.249.79.115", "64");
INSERT INTO `wp_rg_form_view` VALUES("79037", "10", "2018-03-03 15:39:04", "216.244.66.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("79038", "9", "2018-03-03 15:40:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79039", "8", "2018-03-03 15:40:01", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79040", "15", "2018-03-03 15:40:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79041", "18", "2018-03-03 15:40:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79042", "3", "2018-03-03 16:22:38", "157.55.39.147", "1");
INSERT INTO `wp_rg_form_view` VALUES("79043", "18", "2018-03-03 16:23:55", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79044", "3", "2018-03-03 17:01:58", "216.244.66.231", "38");
INSERT INTO `wp_rg_form_view` VALUES("79045", "18", "2018-03-03 17:10:49", "184.66.27.189", "6");
INSERT INTO `wp_rg_form_view` VALUES("79046", "9", "2018-03-03 17:26:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79047", "8", "2018-03-03 17:26:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79048", "10", "2018-03-03 17:26:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79049", "15", "2018-03-03 17:26:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79050", "3", "2018-03-03 18:56:45", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79051", "3", "2018-03-03 19:05:54", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("79052", "9", "2018-03-03 19:20:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79053", "8", "2018-03-03 19:20:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79054", "10", "2018-03-03 19:20:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79055", "15", "2018-03-03 19:20:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79056", "18", "2018-03-03 19:20:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79057", "3", "2018-03-03 20:03:01", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("79058", "3", "2018-03-03 21:05:59", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("79059", "9", "2018-03-03 21:05:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79060", "8", "2018-03-03 21:06:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79061", "10", "2018-03-03 21:06:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79062", "15", "2018-03-03 21:06:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79063", "18", "2018-03-03 21:06:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79064", "3", "2018-03-03 22:12:59", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("79065", "18", "2018-03-03 22:15:41", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79066", "9", "2018-03-03 22:56:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79067", "8", "2018-03-03 22:56:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79068", "10", "2018-03-03 22:56:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79069", "15", "2018-03-03 22:56:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79070", "10", "2018-03-03 23:22:50", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("79071", "3", "2018-03-03 23:23:16", "216.244.66.247", "43");
INSERT INTO `wp_rg_form_view` VALUES("79072", "9", "2018-03-03 23:23:36", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79073", "8", "2018-03-03 23:23:37", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79074", "15", "2018-03-03 23:23:40", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79075", "18", "2018-03-03 23:23:42", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("79076", "14", "2018-03-03 23:53:02", "75.154.241.251", "1");
INSERT INTO `wp_rg_form_view` VALUES("79077", "18", "2018-03-04 00:47:01", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79078", "3", "2018-03-04 00:52:37", "216.244.66.247", "63");
INSERT INTO `wp_rg_form_view` VALUES("79079", "9", "2018-03-04 00:54:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79080", "8", "2018-03-04 00:54:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79081", "10", "2018-03-04 00:54:54", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("79082", "15", "2018-03-04 00:54:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79083", "3", "2018-03-04 01:23:33", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79084", "18", "2018-03-04 01:43:41", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79085", "10", "2018-03-04 01:53:04", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("79086", "18", "2018-03-04 02:12:36", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("79087", "3", "2018-03-04 02:14:59", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("79088", "6", "2018-03-04 02:57:54", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79089", "18", "2018-03-04 03:01:04", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79090", "3", "2018-03-04 03:20:29", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79091", "9", "2018-03-04 03:20:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79092", "8", "2018-03-04 03:20:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79093", "10", "2018-03-04 03:20:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79094", "15", "2018-03-04 03:20:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79095", "18", "2018-03-04 04:39:58", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79096", "14", "2018-03-04 04:50:42", "191.101.198.52", "1");
INSERT INTO `wp_rg_form_view` VALUES("79097", "3", "2018-03-04 04:53:10", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79098", "10", "2018-03-04 05:07:18", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("79099", "3", "2018-03-04 05:11:10", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79100", "9", "2018-03-04 05:11:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79101", "8", "2018-03-04 05:11:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79102", "15", "2018-03-04 05:11:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79103", "18", "2018-03-04 05:11:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79104", "8", "2018-03-04 06:12:35", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("79105", "3", "2018-03-04 06:13:47", "216.244.66.195", "32");
INSERT INTO `wp_rg_form_view` VALUES("79106", "5", "2018-03-04 06:50:22", "77.75.78.160", "1");
INSERT INTO `wp_rg_form_view` VALUES("79107", "9", "2018-03-04 06:55:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79108", "10", "2018-03-04 06:55:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79109", "15", "2018-03-04 06:55:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79110", "18", "2018-03-04 06:55:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79111", "10", "2018-03-04 07:09:34", "54.36.149.177", "2");
INSERT INTO `wp_rg_form_view` VALUES("79112", "3", "2018-03-04 07:25:19", "207.46.13.151", "2");
INSERT INTO `wp_rg_form_view` VALUES("79113", "18", "2018-03-04 07:26:11", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79114", "3", "2018-03-04 08:47:15", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("79115", "9", "2018-03-04 08:47:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79116", "8", "2018-03-04 08:47:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79117", "10", "2018-03-04 08:47:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79118", "15", "2018-03-04 08:47:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79119", "18", "2018-03-04 08:47:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79120", "3", "2018-03-04 09:31:18", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79121", "3", "2018-03-04 10:35:53", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("79122", "9", "2018-03-04 10:35:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79123", "8", "2018-03-04 10:35:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79124", "10", "2018-03-04 10:35:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79125", "15", "2018-03-04 10:36:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79126", "18", "2018-03-04 10:36:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79127", "9", "2018-03-04 11:22:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79128", "3", "2018-03-04 11:23:15", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("79129", "3", "2018-03-04 12:25:44", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("79130", "9", "2018-03-04 12:25:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79131", "8", "2018-03-04 12:25:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79132", "10", "2018-03-04 12:25:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79133", "15", "2018-03-04 12:25:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79134", "18", "2018-03-04 12:25:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79135", "14", "2018-03-04 12:33:44", "103.89.89.211", "1");
INSERT INTO `wp_rg_form_view` VALUES("79136", "3", "2018-03-04 13:48:06", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79137", "3", "2018-03-04 14:10:34", "52.37.180.245", "43");
INSERT INTO `wp_rg_form_view` VALUES("79138", "9", "2018-03-04 14:10:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79139", "8", "2018-03-04 14:10:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79140", "10", "2018-03-04 14:10:36", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79141", "15", "2018-03-04 14:10:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79142", "18", "2018-03-04 14:10:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79143", "14", "2018-03-04 14:58:15", "45.55.141.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("79144", "6", "2018-03-04 15:00:05", "45.55.141.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("79145", "3", "2018-03-04 15:00:56", "45.55.141.157", "177");
INSERT INTO `wp_rg_form_view` VALUES("79146", "10", "2018-03-04 15:02:59", "45.55.141.157", "15");
INSERT INTO `wp_rg_form_view` VALUES("79147", "9", "2018-03-04 15:07:50", "45.55.141.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("79148", "15", "2018-03-04 15:14:28", "45.55.141.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("79149", "8", "2018-03-04 15:40:34", "45.55.141.157", "7");
INSERT INTO `wp_rg_form_view` VALUES("79150", "14", "2018-03-04 15:40:59", "107.183.94.163", "1");
INSERT INTO `wp_rg_form_view` VALUES("79151", "18", "2018-03-04 15:41:04", "45.55.141.157", "4");
INSERT INTO `wp_rg_form_view` VALUES("79152", "3", "2018-03-04 16:00:10", "45.55.141.157", "81");
INSERT INTO `wp_rg_form_view` VALUES("79153", "18", "2018-03-04 16:25:22", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79154", "3", "2018-03-04 17:09:29", "180.76.15.13", "35");
INSERT INTO `wp_rg_form_view` VALUES("79155", "9", "2018-03-04 17:45:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79156", "8", "2018-03-04 17:45:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79157", "10", "2018-03-04 17:45:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79158", "15", "2018-03-04 17:45:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79159", "18", "2018-03-04 17:45:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79160", "14", "2018-03-04 18:25:01", "196.196.92.121", "1");
INSERT INTO `wp_rg_form_view` VALUES("79161", "3", "2018-03-04 19:01:48", "96.50.101.176", "36");
INSERT INTO `wp_rg_form_view` VALUES("79162", "9", "2018-03-04 19:41:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79163", "8", "2018-03-04 19:41:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79164", "10", "2018-03-04 19:41:08", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79165", "15", "2018-03-04 19:41:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79166", "18", "2018-03-04 19:41:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79167", "8", "2018-03-04 20:46:29", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79168", "3", "2018-03-04 20:46:48", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79169", "3", "2018-03-04 21:36:10", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("79170", "9", "2018-03-04 21:36:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79171", "8", "2018-03-04 21:36:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79172", "10", "2018-03-04 21:36:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79173", "15", "2018-03-04 21:36:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79174", "18", "2018-03-04 21:36:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79175", "18", "2018-03-04 22:08:50", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79176", "10", "2018-03-04 22:56:49", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79177", "3", "2018-03-04 23:21:12", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79178", "9", "2018-03-04 23:21:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79179", "8", "2018-03-04 23:21:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79180", "10", "2018-03-04 23:21:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79181", "15", "2018-03-04 23:21:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79182", "18", "2018-03-04 23:21:18", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79183", "10", "2018-03-05 00:11:29", "54.36.148.87", "1");
INSERT INTO `wp_rg_form_view` VALUES("79184", "3", "2018-03-05 01:15:44", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("79185", "9", "2018-03-05 01:15:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79186", "8", "2018-03-05 01:15:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79187", "10", "2018-03-05 01:15:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79188", "15", "2018-03-05 01:15:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79189", "18", "2018-03-05 01:15:50", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79190", "3", "2018-03-05 02:12:57", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("79191", "10", "2018-03-05 02:24:43", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79192", "3", "2018-03-05 03:01:28", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("79193", "9", "2018-03-05 03:01:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79194", "8", "2018-03-05 03:01:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79195", "10", "2018-03-05 03:01:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79196", "15", "2018-03-05 03:01:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79197", "18", "2018-03-05 03:01:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79198", "18", "2018-03-05 04:06:59", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79199", "3", "2018-03-05 04:47:45", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79200", "9", "2018-03-05 04:47:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79201", "8", "2018-03-05 04:47:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79202", "10", "2018-03-05 04:47:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79203", "15", "2018-03-05 04:47:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79204", "18", "2018-03-05 05:19:27", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79205", "3", "2018-03-05 06:01:11", "216.244.66.247", "32");
INSERT INTO `wp_rg_form_view` VALUES("79206", "9", "2018-03-05 06:01:25", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79207", "8", "2018-03-05 06:31:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79208", "10", "2018-03-05 06:31:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79209", "15", "2018-03-05 06:31:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79210", "18", "2018-03-05 06:31:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79211", "10", "2018-03-05 08:27:59", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("79212", "3", "2018-03-05 08:36:08", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("79213", "9", "2018-03-05 08:36:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79214", "8", "2018-03-05 08:36:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79215", "15", "2018-03-05 08:36:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79216", "18", "2018-03-05 08:36:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79217", "3", "2018-03-05 10:26:58", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79218", "9", "2018-03-05 10:26:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79219", "8", "2018-03-05 10:26:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79220", "10", "2018-03-05 10:27:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79221", "15", "2018-03-05 10:27:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79222", "18", "2018-03-05 10:27:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79223", "15", "2018-03-05 11:28:01", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79224", "3", "2018-03-05 11:28:32", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79225", "10", "2018-03-05 12:01:50", "66.249.79.133", "6");
INSERT INTO `wp_rg_form_view` VALUES("79226", "18", "2018-03-05 12:11:58", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79227", "3", "2018-03-05 12:36:10", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79228", "9", "2018-03-05 12:36:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79229", "8", "2018-03-05 12:36:12", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79230", "15", "2018-03-05 12:36:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79231", "8", "2018-03-05 13:54:20", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79232", "3", "2018-03-05 13:54:38", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79233", "18", "2018-03-05 14:07:52", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79234", "3", "2018-03-05 14:13:24", "207.46.13.61", "35");
INSERT INTO `wp_rg_form_view` VALUES("79235", "9", "2018-03-05 14:37:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79236", "8", "2018-03-05 14:37:49", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79237", "10", "2018-03-05 14:37:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79238", "15", "2018-03-05 14:37:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79239", "11", "2018-03-05 15:37:43", "194.187.170.126", "1");
INSERT INTO `wp_rg_form_view` VALUES("79240", "18", "2018-03-05 16:20:07", "184.66.27.189", "8");
INSERT INTO `wp_rg_form_view` VALUES("79241", "3", "2018-03-05 16:41:06", "216.244.66.247", "64");
INSERT INTO `wp_rg_form_view` VALUES("79242", "9", "2018-03-05 16:41:07", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79243", "8", "2018-03-05 16:41:08", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("79244", "10", "2018-03-05 16:41:10", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("79245", "15", "2018-03-05 16:41:12", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79246", "14", "2018-03-05 16:42:14", "192.186.147.220", "1");
INSERT INTO `wp_rg_form_view` VALUES("79247", "18", "2018-03-05 17:06:10", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79248", "3", "2018-03-05 17:39:57", "207.46.13.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("79249", "3", "2018-03-05 18:32:05", "52.37.180.245", "31");
INSERT INTO `wp_rg_form_view` VALUES("79250", "9", "2018-03-05 18:32:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79251", "8", "2018-03-05 18:32:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79252", "10", "2018-03-05 18:32:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79253", "15", "2018-03-05 18:32:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79254", "18", "2018-03-05 18:32:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79255", "10", "2018-03-05 20:00:01", "54.36.148.60", "6");
INSERT INTO `wp_rg_form_view` VALUES("79256", "3", "2018-03-05 20:21:09", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("79257", "9", "2018-03-05 20:21:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79258", "8", "2018-03-05 20:21:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79259", "15", "2018-03-05 20:21:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79260", "18", "2018-03-05 20:21:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79261", "14", "2018-03-05 21:01:37", "207.194.133.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("79262", "3", "2018-03-05 21:03:08", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("79263", "10", "2018-03-05 21:03:16", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79264", "3", "2018-03-05 22:11:16", "216.244.66.247", "38");
INSERT INTO `wp_rg_form_view` VALUES("79265", "10", "2018-03-05 22:11:31", "216.244.66.247", "6");
INSERT INTO `wp_rg_form_view` VALUES("79266", "9", "2018-03-05 22:11:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79267", "8", "2018-03-05 22:11:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79268", "15", "2018-03-05 22:11:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79269", "18", "2018-03-05 22:11:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79270", "3", "2018-03-05 23:21:28", "194.187.170.114", "3");
INSERT INTO `wp_rg_form_view` VALUES("79271", "14", "2018-03-05 23:24:03", "96.50.18.131", "1");
INSERT INTO `wp_rg_form_view` VALUES("79272", "10", "2018-03-06 00:06:33", "72.14.199.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("79273", "3", "2018-03-06 00:06:40", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("79274", "9", "2018-03-06 00:06:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79275", "8", "2018-03-06 00:06:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79276", "15", "2018-03-06 00:06:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79277", "18", "2018-03-06 00:06:45", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79278", "18", "2018-03-06 01:22:09", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79279", "10", "2018-03-06 01:41:44", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("79280", "3", "2018-03-06 01:42:02", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("79281", "9", "2018-03-06 01:57:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79282", "8", "2018-03-06 01:57:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79283", "15", "2018-03-06 01:57:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79284", "18", "2018-03-06 02:07:34", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79285", "3", "2018-03-06 02:12:22", "24.108.38.201", "5");
INSERT INTO `wp_rg_form_view` VALUES("79286", "8", "2018-03-06 02:31:13", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("79287", "3", "2018-03-06 03:20:58", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("79288", "9", "2018-03-06 03:47:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79289", "8", "2018-03-06 03:47:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79290", "10", "2018-03-06 03:47:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79291", "15", "2018-03-06 03:47:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79292", "18", "2018-03-06 03:47:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79293", "18", "2018-03-06 04:08:14", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79294", "3", "2018-03-06 04:17:00", "154.5.208.115", "7");
INSERT INTO `wp_rg_form_view` VALUES("79295", "3", "2018-03-06 05:32:40", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79296", "9", "2018-03-06 05:32:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79297", "8", "2018-03-06 05:32:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79298", "10", "2018-03-06 05:32:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79299", "15", "2018-03-06 05:32:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79300", "18", "2018-03-06 05:32:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79301", "18", "2018-03-06 06:24:23", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79302", "3", "2018-03-06 06:29:01", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79303", "3", "2018-03-06 07:17:29", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79304", "9", "2018-03-06 07:17:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79305", "8", "2018-03-06 07:17:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79306", "10", "2018-03-06 07:17:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79307", "15", "2018-03-06 07:17:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79308", "18", "2018-03-06 07:17:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79309", "3", "2018-03-06 08:06:04", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79310", "3", "2018-03-06 09:01:36", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79311", "9", "2018-03-06 09:01:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79312", "8", "2018-03-06 09:01:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79313", "10", "2018-03-06 09:01:38", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("79314", "15", "2018-03-06 09:01:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79315", "18", "2018-03-06 09:01:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79316", "3", "2018-03-06 10:27:22", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("79317", "14", "2018-03-06 10:31:03", "104.144.7.251", "4");
INSERT INTO `wp_rg_form_view` VALUES("79318", "9", "2018-03-06 10:51:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79319", "8", "2018-03-06 10:52:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79320", "10", "2018-03-06 10:52:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79321", "15", "2018-03-06 10:52:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79322", "18", "2018-03-06 10:52:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79323", "3", "2018-03-06 11:50:06", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79324", "8", "2018-03-06 12:30:02", "54.36.148.53", "3");
INSERT INTO `wp_rg_form_view` VALUES("79325", "3", "2018-03-06 12:41:40", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79326", "9", "2018-03-06 12:41:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79327", "10", "2018-03-06 12:41:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79328", "15", "2018-03-06 12:41:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79329", "18", "2018-03-06 12:41:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79330", "3", "2018-03-06 13:44:35", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79331", "3", "2018-03-06 14:09:46", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("79332", "9", "2018-03-06 14:31:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79333", "8", "2018-03-06 14:31:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79334", "10", "2018-03-06 14:31:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79335", "15", "2018-03-06 14:31:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79336", "18", "2018-03-06 14:31:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79337", "14", "2018-03-06 14:35:09", "104.144.179.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("79338", "5", "2018-03-06 14:38:51", "146.185.223.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("79339", "18", "2018-03-06 15:24:29", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79340", "3", "2018-03-06 15:56:31", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79341", "3", "2018-03-06 16:14:24", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("79342", "18", "2018-03-06 16:20:58", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("79343", "9", "2018-03-06 16:27:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79344", "8", "2018-03-06 16:27:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79345", "10", "2018-03-06 16:27:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79346", "15", "2018-03-06 16:27:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79347", "3", "2018-03-06 17:39:52", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79348", "3", "2018-03-06 18:17:06", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("79349", "9", "2018-03-06 18:17:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79350", "8", "2018-03-06 18:17:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79351", "10", "2018-03-06 18:17:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79352", "15", "2018-03-06 18:17:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79353", "18", "2018-03-06 18:17:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79354", "3", "2018-03-06 19:14:11", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79355", "5", "2018-03-06 19:53:22", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("79356", "3", "2018-03-06 20:02:10", "52.37.180.245", "44");
INSERT INTO `wp_rg_form_view` VALUES("79357", "9", "2018-03-06 20:02:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79358", "8", "2018-03-06 20:02:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79359", "10", "2018-03-06 20:02:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79360", "15", "2018-03-06 20:02:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79361", "18", "2018-03-06 20:02:21", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79362", "18", "2018-03-06 21:20:14", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("79363", "3", "2018-03-06 21:58:05", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79364", "9", "2018-03-06 21:58:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79365", "8", "2018-03-06 21:58:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79366", "10", "2018-03-06 21:58:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79367", "15", "2018-03-06 21:58:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79368", "3", "2018-03-06 22:34:49", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("79369", "9", "2018-03-06 22:40:01", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79370", "8", "2018-03-06 22:40:02", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79371", "10", "2018-03-06 22:40:03", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("79372", "15", "2018-03-06 22:40:08", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79373", "18", "2018-03-06 22:40:11", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79374", "18", "2018-03-06 23:20:33", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("79375", "3", "2018-03-06 23:32:32", "220.181.108.182", "34");
INSERT INTO `wp_rg_form_view` VALUES("79376", "9", "2018-03-06 23:56:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79377", "8", "2018-03-06 23:56:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79378", "10", "2018-03-06 23:56:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79379", "15", "2018-03-06 23:56:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79380", "6", "2018-03-06 23:58:01", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79381", "18", "2018-03-07 00:28:14", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79382", "3", "2018-03-07 00:37:49", "18.222.35.199", "2");
INSERT INTO `wp_rg_form_view` VALUES("79383", "14", "2018-03-07 01:00:02", "200.0.61.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("79384", "18", "2018-03-07 01:07:36", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79385", "3", "2018-03-07 01:16:27", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("79386", "6", "2018-03-07 01:54:50", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79387", "9", "2018-03-07 01:55:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79388", "8", "2018-03-07 01:55:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79389", "10", "2018-03-07 01:55:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79390", "15", "2018-03-07 01:55:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79391", "5", "2018-03-07 01:55:54", "77.75.79.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("79392", "3", "2018-03-07 02:21:32", "18.188.64.119", "2");
INSERT INTO `wp_rg_form_view` VALUES("79393", "18", "2018-03-07 03:13:01", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79394", "8", "2018-03-07 03:32:57", "139.162.246.24", "3");
INSERT INTO `wp_rg_form_view` VALUES("79395", "3", "2018-03-07 03:54:12", "96.50.18.131", "33");
INSERT INTO `wp_rg_form_view` VALUES("79396", "9", "2018-03-07 03:55:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79397", "10", "2018-03-07 03:55:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79398", "15", "2018-03-07 03:55:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79399", "3", "2018-03-07 04:23:12", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79400", "10", "2018-03-07 04:48:12", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79401", "8", "2018-03-07 04:50:12", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79402", "10", "2018-03-08 20:44:33", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79403", "3", "2018-03-08 20:44:48", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79404", "18", "2018-03-08 20:57:53", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79405", "3", "2018-03-08 21:03:51", "159.65.133.29", "34");
INSERT INTO `wp_rg_form_view` VALUES("79406", "14", "2018-03-08 21:04:49", "159.65.133.29", "2");
INSERT INTO `wp_rg_form_view` VALUES("79407", "18", "2018-03-08 21:17:17", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79408", "10", "2018-03-08 21:37:11", "199.59.150.181", "6");
INSERT INTO `wp_rg_form_view` VALUES("79409", "9", "2018-03-08 21:46:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79410", "8", "2018-03-08 21:46:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79411", "15", "2018-03-08 21:46:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79412", "3", "2018-03-08 22:02:23", "88.99.2.203", "13");
INSERT INTO `wp_rg_form_view` VALUES("79413", "14", "2018-03-08 22:50:37", "24.69.135.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("79414", "14", "2018-03-08 23:05:43", "24.108.25.92", "2");
INSERT INTO `wp_rg_form_view` VALUES("79415", "18", "2018-03-08 23:06:39", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79416", "10", "2018-03-08 23:19:33", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("79417", "3", "2018-03-08 23:19:51", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("79418", "9", "2018-03-08 23:31:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79419", "8", "2018-03-08 23:31:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79420", "15", "2018-03-08 23:31:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79421", "3", "2018-03-09 00:47:10", "54.36.148.120", "1");
INSERT INTO `wp_rg_form_view` VALUES("79422", "18", "2018-03-09 00:58:50", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79423", "3", "2018-03-09 01:22:52", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79424", "9", "2018-03-09 01:22:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79425", "8", "2018-03-09 01:22:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79426", "10", "2018-03-09 01:22:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79427", "15", "2018-03-09 01:22:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79428", "18", "2018-03-09 01:22:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79429", "3", "2018-03-09 02:37:24", "54.36.149.52", "2");
INSERT INTO `wp_rg_form_view` VALUES("79430", "18", "2018-03-09 03:13:36", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79431", "3", "2018-03-09 03:20:32", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("79432", "9", "2018-03-09 03:26:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79433", "8", "2018-03-09 03:26:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79434", "10", "2018-03-09 03:26:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79435", "15", "2018-03-09 03:26:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79436", "3", "2018-03-09 04:00:03", "66.249.79.137", "3");
INSERT INTO `wp_rg_form_view` VALUES("79437", "3", "2018-03-09 05:15:13", "66.249.79.133", "33");
INSERT INTO `wp_rg_form_view` VALUES("79438", "9", "2018-03-09 05:16:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79439", "8", "2018-03-09 05:16:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79440", "10", "2018-03-09 05:16:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79441", "15", "2018-03-09 05:16:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79442", "18", "2018-03-09 05:16:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79443", "3", "2018-03-09 06:06:17", "216.244.66.247", "5");
INSERT INTO `wp_rg_form_view` VALUES("79444", "10", "2018-03-09 06:45:38", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("79445", "3", "2018-03-09 07:03:35", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("79446", "18", "2018-03-09 07:10:18", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79447", "9", "2018-03-09 07:11:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79448", "8", "2018-03-09 07:11:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79449", "10", "2018-03-09 07:11:23", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79450", "15", "2018-03-09 07:11:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79451", "10", "2018-03-09 08:19:09", "54.36.149.37", "1");
INSERT INTO `wp_rg_form_view` VALUES("79452", "3", "2018-03-09 09:06:58", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79453", "9", "2018-03-09 09:06:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79454", "8", "2018-03-09 09:06:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79455", "10", "2018-03-09 09:07:00", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("79456", "15", "2018-03-09 09:07:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79457", "18", "2018-03-09 09:07:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79458", "3", "2018-03-09 10:56:33", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79459", "9", "2018-03-09 10:56:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79460", "8", "2018-03-09 10:56:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79461", "10", "2018-03-09 10:56:34", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79462", "15", "2018-03-09 10:56:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79463", "18", "2018-03-09 10:56:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79464", "3", "2018-03-09 11:18:29", "216.244.66.231", "2");
INSERT INTO `wp_rg_form_view` VALUES("79465", "18", "2018-03-09 11:26:08", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79466", "3", "2018-03-09 12:33:00", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("79467", "9", "2018-03-09 12:56:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79468", "8", "2018-03-09 12:56:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79469", "10", "2018-03-09 12:56:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79470", "15", "2018-03-09 12:56:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79471", "18", "2018-03-09 12:56:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79472", "3", "2018-03-09 14:19:14", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79473", "3", "2018-03-09 15:16:27", "52.37.180.245", "44");
INSERT INTO `wp_rg_form_view` VALUES("79474", "9", "2018-03-09 15:16:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79475", "8", "2018-03-09 15:16:28", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79476", "10", "2018-03-09 15:16:29", "52.37.180.245", "12");
INSERT INTO `wp_rg_form_view` VALUES("79477", "15", "2018-03-09 15:16:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79478", "18", "2018-03-09 15:16:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79479", "6", "2018-03-09 15:26:48", "207.46.13.92", "1");
INSERT INTO `wp_rg_form_view` VALUES("79480", "3", "2018-03-09 16:05:57", "151.80.41.169", "2");
INSERT INTO `wp_rg_form_view` VALUES("79481", "18", "2018-03-09 16:51:20", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79482", "3", "2018-03-09 17:11:33", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79483", "9", "2018-03-09 17:11:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79484", "8", "2018-03-09 17:11:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79485", "10", "2018-03-09 17:11:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79486", "15", "2018-03-09 17:11:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79487", "18", "2018-03-09 17:11:39", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79488", "14", "2018-03-09 17:39:49", "24.69.135.66", "1");
INSERT INTO `wp_rg_form_view` VALUES("79489", "3", "2018-03-09 18:01:23", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79490", "18", "2018-03-09 18:49:20", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79491", "18", "2018-03-09 19:11:33", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79492", "3", "2018-03-09 19:18:18", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79493", "9", "2018-03-09 19:18:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79494", "8", "2018-03-09 19:18:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79495", "10", "2018-03-09 19:18:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79496", "15", "2018-03-09 19:18:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79497", "14", "2018-03-09 19:57:33", "96.54.238.13", "1");
INSERT INTO `wp_rg_form_view` VALUES("79498", "18", "2018-03-09 20:21:20", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79499", "3", "2018-03-09 20:34:23", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("79500", "3", "2018-03-09 21:00:59", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("79501", "9", "2018-03-09 21:11:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79502", "8", "2018-03-09 21:11:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79503", "10", "2018-03-09 21:11:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79504", "15", "2018-03-09 21:11:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79505", "18", "2018-03-09 21:11:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79506", "14", "2018-03-09 21:51:17", "138.122.192.233", "1");
INSERT INTO `wp_rg_form_view` VALUES("79507", "10", "2018-03-09 22:38:41", "72.14.199.67", "1");
INSERT INTO `wp_rg_form_view` VALUES("79508", "3", "2018-03-09 22:47:27", "216.244.66.247", "11");
INSERT INTO `wp_rg_form_view` VALUES("79509", "14", "2018-03-09 22:50:05", "72.9.226.150", "1");
INSERT INTO `wp_rg_form_view` VALUES("79510", "3", "2018-03-09 23:07:13", "52.37.180.245", "37");
INSERT INTO `wp_rg_form_view` VALUES("79511", "9", "2018-03-09 23:07:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79512", "8", "2018-03-09 23:07:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79513", "10", "2018-03-09 23:07:15", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("79514", "15", "2018-03-09 23:07:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79515", "18", "2018-03-09 23:07:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79516", "6", "2018-03-09 23:41:41", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79517", "3", "2018-03-10 00:07:59", "216.244.66.247", "40");
INSERT INTO `wp_rg_form_view` VALUES("79518", "9", "2018-03-10 00:52:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79519", "8", "2018-03-10 00:52:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79520", "10", "2018-03-10 00:52:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79521", "15", "2018-03-10 00:52:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79522", "18", "2018-03-10 00:52:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79523", "3", "2018-03-10 01:00:44", "64.114.207.106", "8");
INSERT INTO `wp_rg_form_view` VALUES("79524", "8", "2018-03-10 01:06:08", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("79525", "3", "2018-03-10 02:08:39", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79526", "8", "2018-03-10 02:30:38", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79527", "3", "2018-03-10 03:06:34", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79528", "9", "2018-03-10 03:06:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79529", "8", "2018-03-10 03:06:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79530", "10", "2018-03-10 03:06:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79531", "15", "2018-03-10 03:06:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79532", "18", "2018-03-10 03:06:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79533", "3", "2018-03-10 04:10:32", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79534", "14", "2018-03-10 04:17:48", "200.0.61.49", "1");
INSERT INTO `wp_rg_form_view` VALUES("79535", "3", "2018-03-10 05:09:24", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79536", "9", "2018-03-10 05:09:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79537", "8", "2018-03-10 05:09:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79538", "10", "2018-03-10 05:09:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79539", "15", "2018-03-10 05:09:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79540", "18", "2018-03-10 05:09:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79541", "18", "2018-03-10 06:43:36", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79542", "3", "2018-03-10 06:48:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79543", "18", "2018-03-10 07:02:23", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("79544", "3", "2018-03-10 07:03:34", "216.244.66.247", "78");
INSERT INTO `wp_rg_form_view` VALUES("79545", "9", "2018-03-10 07:03:34", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79546", "8", "2018-03-10 07:03:35", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("79547", "10", "2018-03-10 07:03:35", "216.244.66.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("79548", "15", "2018-03-10 07:03:37", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79549", "14", "2018-03-10 07:53:17", "37.187.56.81", "1");
INSERT INTO `wp_rg_form_view` VALUES("79550", "3", "2018-03-10 09:02:34", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("79551", "9", "2018-03-10 09:07:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79552", "8", "2018-03-10 09:07:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79553", "10", "2018-03-10 09:07:54", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79554", "15", "2018-03-10 09:07:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79555", "18", "2018-03-10 09:08:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79556", "3", "2018-03-10 10:16:03", "216.244.66.247", "139");
INSERT INTO `wp_rg_form_view` VALUES("79557", "8", "2018-03-10 10:26:54", "185.138.241.45", "11");
INSERT INTO `wp_rg_form_view` VALUES("79558", "9", "2018-03-10 10:27:38", "185.138.241.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("79559", "10", "2018-03-10 10:27:39", "185.138.241.45", "20");
INSERT INTO `wp_rg_form_view` VALUES("79560", "15", "2018-03-10 10:27:41", "185.138.241.45", "4");
INSERT INTO `wp_rg_form_view` VALUES("79561", "18", "2018-03-10 10:27:43", "185.138.241.45", "7");
INSERT INTO `wp_rg_form_view` VALUES("79562", "3", "2018-03-10 11:09:39", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79563", "3", "2018-03-10 12:46:29", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79564", "9", "2018-03-10 12:46:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79565", "8", "2018-03-10 12:46:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79566", "10", "2018-03-10 12:46:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79567", "15", "2018-03-10 12:46:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79568", "18", "2018-03-10 12:46:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79569", "3", "2018-03-10 13:06:31", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79570", "10", "2018-03-10 13:19:46", "66.249.92.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("79571", "3", "2018-03-10 14:36:56", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79572", "9", "2018-03-10 14:36:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79573", "8", "2018-03-10 14:36:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79574", "10", "2018-03-10 14:36:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79575", "15", "2018-03-10 14:37:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79576", "18", "2018-03-10 14:37:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79577", "14", "2018-03-10 15:24:22", "54.36.148.158", "1");
INSERT INTO `wp_rg_form_view` VALUES("79578", "3", "2018-03-10 15:40:35", "54.36.148.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("79579", "10", "2018-03-10 15:40:59", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79580", "3", "2018-03-10 16:24:15", "220.181.108.180", "36");
INSERT INTO `wp_rg_form_view` VALUES("79581", "9", "2018-03-10 16:27:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79582", "8", "2018-03-10 16:27:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79583", "10", "2018-03-10 16:27:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79584", "15", "2018-03-10 16:27:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79585", "18", "2018-03-10 16:27:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79586", "18", "2018-03-10 17:16:12", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79587", "3", "2018-03-10 18:16:39", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("79588", "9", "2018-03-10 18:16:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79589", "8", "2018-03-10 18:16:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79590", "10", "2018-03-10 18:16:41", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79591", "15", "2018-03-10 18:16:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79592", "18", "2018-03-10 18:16:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79593", "18", "2018-03-10 19:33:12", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79594", "18", "2018-03-10 20:10:55", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("79595", "3", "2018-03-10 20:26:58", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("79596", "9", "2018-03-10 20:26:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79597", "8", "2018-03-10 20:26:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79598", "10", "2018-03-10 20:27:00", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79599", "15", "2018-03-10 20:27:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79600", "3", "2018-03-10 21:01:01", "72.143.225.150", "4");
INSERT INTO `wp_rg_form_view` VALUES("79601", "14", "2018-03-10 21:13:34", "24.108.14.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("79602", "18", "2018-03-10 21:37:08", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("79603", "3", "2018-03-10 22:16:52", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79604", "9", "2018-03-10 22:16:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79605", "8", "2018-03-10 22:16:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79606", "10", "2018-03-10 22:16:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79607", "15", "2018-03-10 22:16:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79608", "18", "2018-03-10 22:16:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79609", "3", "2018-03-11 00:05:11", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("79610", "9", "2018-03-11 00:06:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79611", "8", "2018-03-11 00:06:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79612", "10", "2018-03-11 00:06:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79613", "15", "2018-03-11 00:06:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79614", "18", "2018-03-11 00:06:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79615", "18", "2018-03-11 01:11:27", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79616", "10", "2018-03-11 01:52:57", "66.249.92.213", "1");
INSERT INTO `wp_rg_form_view` VALUES("79617", "3", "2018-03-11 02:02:30", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79618", "9", "2018-03-11 02:02:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79619", "8", "2018-03-11 02:02:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79620", "10", "2018-03-11 02:02:31", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79621", "15", "2018-03-11 02:02:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79622", "18", "2018-03-11 02:02:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79623", "3", "2018-03-11 03:07:02", "157.55.39.34", "33");
INSERT INTO `wp_rg_form_view` VALUES("79624", "18", "2018-03-11 03:45:49", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79625", "9", "2018-03-11 03:54:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79626", "8", "2018-03-11 03:54:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79627", "10", "2018-03-11 03:54:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79628", "15", "2018-03-11 03:54:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79629", "18", "2018-03-11 04:43:33", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79630", "8", "2018-03-11 05:26:53", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("79631", "3", "2018-03-11 05:27:09", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("79632", "9", "2018-03-11 05:47:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79633", "10", "2018-03-11 05:47:46", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79634", "15", "2018-03-11 05:47:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79635", "18", "2018-03-11 05:47:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79636", "3", "2018-03-11 06:02:33", "220.181.108.112", "1");
INSERT INTO `wp_rg_form_view` VALUES("79637", "18", "2018-03-11 06:21:56", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79638", "8", "2018-03-11 07:18:04", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("79639", "3", "2018-03-11 07:18:43", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("79640", "9", "2018-03-11 07:38:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79641", "10", "2018-03-11 07:38:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79642", "15", "2018-03-11 07:38:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79643", "18", "2018-03-11 07:38:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79644", "8", "2018-03-11 09:15:38", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("79645", "3", "2018-03-11 09:16:17", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("79646", "9", "2018-03-11 09:39:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79647", "10", "2018-03-11 09:39:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79648", "15", "2018-03-11 09:39:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79649", "18", "2018-03-11 09:39:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79650", "3", "2018-03-11 11:34:57", "52.37.180.245", "66");
INSERT INTO `wp_rg_form_view` VALUES("79651", "9", "2018-03-11 11:34:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79652", "8", "2018-03-11 11:34:59", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79653", "10", "2018-03-11 11:35:00", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("79654", "15", "2018-03-11 11:35:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79655", "18", "2018-03-11 11:35:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79656", "10", "2018-03-11 12:22:27", "54.36.149.54", "1");
INSERT INTO `wp_rg_form_view` VALUES("79657", "3", "2018-03-11 13:34:28", "52.37.180.245", "114");
INSERT INTO `wp_rg_form_view` VALUES("79658", "9", "2018-03-11 13:34:33", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79659", "8", "2018-03-11 13:34:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79660", "10", "2018-03-11 13:34:38", "52.37.180.245", "15");
INSERT INTO `wp_rg_form_view` VALUES("79661", "15", "2018-03-11 13:34:45", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79662", "18", "2018-03-11 13:34:46", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79663", "10", "2018-03-11 14:22:40", "66.249.89.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("79664", "18", "2018-03-11 14:26:13", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79665", "3", "2018-03-11 15:22:13", "77.75.77.54", "33");
INSERT INTO `wp_rg_form_view` VALUES("79666", "18", "2018-03-11 15:24:35", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79667", "9", "2018-03-11 15:27:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79668", "8", "2018-03-11 15:27:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79669", "10", "2018-03-11 15:27:58", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79670", "15", "2018-03-11 15:28:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79671", "9", "2018-03-11 16:40:12", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79672", "3", "2018-03-11 16:40:48", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79673", "3", "2018-03-11 17:13:39", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79674", "9", "2018-03-11 17:13:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79675", "8", "2018-03-11 17:13:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79676", "10", "2018-03-11 17:13:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79677", "15", "2018-03-11 17:13:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79678", "18", "2018-03-11 17:13:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79679", "10", "2018-03-11 18:52:25", "207.46.13.119", "13");
INSERT INTO `wp_rg_form_view` VALUES("79680", "3", "2018-03-11 18:52:27", "207.46.13.44", "47");
INSERT INTO `wp_rg_form_view` VALUES("79681", "8", "2018-03-11 18:52:37", "207.46.13.119", "4");
INSERT INTO `wp_rg_form_view` VALUES("79682", "6", "2018-03-11 18:56:20", "157.55.39.34", "1");
INSERT INTO `wp_rg_form_view` VALUES("79683", "9", "2018-03-11 18:58:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79684", "15", "2018-03-11 18:58:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79685", "18", "2018-03-11 18:58:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79686", "3", "2018-03-11 20:03:39", "207.81.253.38", "5");
INSERT INTO `wp_rg_form_view` VALUES("79687", "8", "2018-03-11 20:20:25", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79688", "18", "2018-03-11 20:20:56", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79689", "3", "2018-03-11 21:05:55", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79690", "9", "2018-03-11 21:05:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79691", "8", "2018-03-11 21:05:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79692", "10", "2018-03-11 21:05:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79693", "15", "2018-03-11 21:05:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79694", "18", "2018-03-11 21:06:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79695", "3", "2018-03-11 22:01:56", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("79696", "10", "2018-03-11 22:02:15", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("79697", "18", "2018-03-11 22:10:35", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79698", "9", "2018-03-11 22:57:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79699", "8", "2018-03-11 22:57:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79700", "15", "2018-03-11 22:57:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79701", "10", "2018-03-11 23:04:48", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79702", "3", "2018-03-11 23:05:07", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79703", "18", "2018-03-12 00:24:42", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79704", "3", "2018-03-12 00:36:18", "66.249.64.20", "41");
INSERT INTO `wp_rg_form_view` VALUES("79705", "9", "2018-03-12 00:53:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79706", "8", "2018-03-12 00:53:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79707", "10", "2018-03-12 00:53:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79708", "15", "2018-03-12 00:53:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79709", "3", "2018-03-12 01:11:34", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79710", "18", "2018-03-12 01:49:28", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79711", "3", "2018-03-12 02:24:53", "54.36.149.78", "33");
INSERT INTO `wp_rg_form_view` VALUES("79712", "9", "2018-03-12 02:48:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79713", "8", "2018-03-12 02:48:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79714", "10", "2018-03-12 02:48:01", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79715", "15", "2018-03-12 02:48:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79716", "18", "2018-03-12 02:48:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79717", "3", "2018-03-12 03:28:37", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79718", "18", "2018-03-12 03:50:27", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79719", "10", "2018-03-12 03:52:11", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("79720", "10", "2018-03-12 04:18:00", "207.46.13.175", "1");
INSERT INTO `wp_rg_form_view` VALUES("79721", "3", "2018-03-12 04:34:53", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79722", "3", "2018-03-12 05:03:20", "24.68.109.41", "34");
INSERT INTO `wp_rg_form_view` VALUES("79723", "9", "2018-03-12 05:13:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79724", "8", "2018-03-12 05:13:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79725", "10", "2018-03-12 05:13:43", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79726", "15", "2018-03-12 05:13:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79727", "18", "2018-03-12 05:13:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79728", "18", "2018-03-12 06:11:07", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79729", "3", "2018-03-12 06:12:38", "100.43.91.113", "3");
INSERT INTO `wp_rg_form_view` VALUES("79730", "3", "2018-03-12 07:09:53", "52.37.180.245", "65");
INSERT INTO `wp_rg_form_view` VALUES("79731", "9", "2018-03-12 07:09:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79732", "8", "2018-03-12 07:09:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79733", "10", "2018-03-12 07:09:55", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("79734", "15", "2018-03-12 07:09:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79735", "18", "2018-03-12 07:09:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79736", "3", "2018-03-12 09:01:12", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("79737", "9", "2018-03-12 09:01:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79738", "8", "2018-03-12 09:01:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79739", "10", "2018-03-12 09:02:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79740", "15", "2018-03-12 09:02:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79741", "18", "2018-03-12 09:02:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79742", "3", "2018-03-12 10:37:44", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("79743", "9", "2018-03-12 10:53:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79744", "8", "2018-03-12 10:53:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79745", "10", "2018-03-12 10:53:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79746", "15", "2018-03-12 10:53:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79747", "18", "2018-03-12 10:53:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79748", "3", "2018-03-12 11:14:36", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79749", "3", "2018-03-12 12:11:28", "66.249.79.135", "34");
INSERT INTO `wp_rg_form_view` VALUES("79750", "9", "2018-03-12 12:46:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79751", "8", "2018-03-12 12:46:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79752", "10", "2018-03-12 12:46:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79753", "15", "2018-03-12 12:46:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79754", "18", "2018-03-12 12:46:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79755", "3", "2018-03-12 13:45:58", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79756", "3", "2018-03-12 14:18:14", "216.244.66.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("79757", "9", "2018-03-12 14:34:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79758", "8", "2018-03-12 14:34:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79759", "10", "2018-03-12 14:34:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79760", "15", "2018-03-12 14:34:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79761", "18", "2018-03-12 14:34:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79762", "18", "2018-03-12 16:23:25", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("79763", "3", "2018-03-12 16:30:46", "52.37.180.245", "42");
INSERT INTO `wp_rg_form_view` VALUES("79764", "9", "2018-03-12 16:30:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79765", "8", "2018-03-12 16:30:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79766", "10", "2018-03-12 16:30:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79767", "15", "2018-03-12 16:30:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79768", "3", "2018-03-12 17:07:46", "70.67.254.99", "2");
INSERT INTO `wp_rg_form_view` VALUES("79769", "14", "2018-03-12 17:17:47", "193.200.76.203", "4");
INSERT INTO `wp_rg_form_view` VALUES("79770", "18", "2018-03-12 17:46:07", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79771", "10", "2018-03-12 17:53:19", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("79772", "10", "2018-03-12 18:08:46", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("79773", "3", "2018-03-12 18:09:14", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("79774", "9", "2018-03-12 18:38:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79775", "8", "2018-03-12 18:38:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79776", "15", "2018-03-12 18:38:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79777", "18", "2018-03-12 18:38:12", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79778", "3", "2018-03-12 19:01:56", "216.244.66.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("79779", "14", "2018-03-12 19:09:55", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("79780", "18", "2018-03-12 20:15:01", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79781", "3", "2018-03-12 20:54:16", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79782", "9", "2018-03-12 20:54:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79783", "8", "2018-03-12 20:54:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79784", "10", "2018-03-12 20:54:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79785", "15", "2018-03-12 20:54:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79786", "18", "2018-03-12 21:17:06", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79787", "3", "2018-03-12 21:35:20", "157.55.39.197", "3");
INSERT INTO `wp_rg_form_view` VALUES("79788", "3", "2018-03-12 22:24:35", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("79789", "6", "2018-03-12 22:24:55", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79790", "9", "2018-03-12 22:52:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79791", "8", "2018-03-12 22:52:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79792", "10", "2018-03-12 22:52:47", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79793", "15", "2018-03-12 22:52:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79794", "18", "2018-03-12 22:52:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79795", "3", "2018-03-12 23:18:04", "66.249.79.133", "1");
INSERT INTO `wp_rg_form_view` VALUES("79796", "18", "2018-03-12 23:26:01", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79797", "10", "2018-03-12 23:40:26", "24.108.14.81", "3");
INSERT INTO `wp_rg_form_view` VALUES("79798", "10", "2018-03-13 00:02:42", "194.187.170.116", "11");
INSERT INTO `wp_rg_form_view` VALUES("79799", "3", "2018-03-13 00:21:12", "46.4.91.109", "34");
INSERT INTO `wp_rg_form_view` VALUES("79800", "18", "2018-03-13 00:38:49", "194.187.170.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("79801", "9", "2018-03-13 00:39:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79802", "8", "2018-03-13 00:39:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79803", "15", "2018-03-13 00:39:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79804", "10", "2018-03-13 01:00:38", "209.52.88.191", "3");
INSERT INTO `wp_rg_form_view` VALUES("79805", "18", "2018-03-13 01:01:38", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79806", "3", "2018-03-13 01:23:14", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("79807", "8", "2018-03-13 01:31:00", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79808", "18", "2018-03-13 02:02:53", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79809", "3", "2018-03-13 02:27:49", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("79810", "9", "2018-03-13 02:46:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79811", "8", "2018-03-13 02:46:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79812", "10", "2018-03-13 02:46:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79813", "15", "2018-03-13 02:46:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79814", "14", "2018-03-13 02:56:35", "54.165.59.7", "1");
INSERT INTO `wp_rg_form_view` VALUES("79815", "3", "2018-03-13 03:17:59", "54.36.148.42", "4");
INSERT INTO `wp_rg_form_view` VALUES("79816", "18", "2018-03-13 03:39:02", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79817", "3", "2018-03-13 04:29:16", "180.76.15.151", "34");
INSERT INTO `wp_rg_form_view` VALUES("79818", "18", "2018-03-13 04:35:30", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79819", "6", "2018-03-13 04:36:52", "54.36.149.58", "1");
INSERT INTO `wp_rg_form_view` VALUES("79820", "9", "2018-03-13 04:38:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79821", "8", "2018-03-13 04:38:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79822", "10", "2018-03-13 04:38:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79823", "15", "2018-03-13 04:38:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79824", "3", "2018-03-13 05:02:41", "180.76.15.156", "3");
INSERT INTO `wp_rg_form_view` VALUES("79825", "3", "2018-03-13 06:25:47", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("79826", "9", "2018-03-13 06:29:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79827", "8", "2018-03-13 06:29:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79828", "10", "2018-03-13 06:29:45", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79829", "15", "2018-03-13 06:29:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79830", "18", "2018-03-13 06:29:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79831", "15", "2018-03-13 07:15:57", "180.76.15.9", "1");
INSERT INTO `wp_rg_form_view` VALUES("79832", "3", "2018-03-13 07:18:00", "220.181.108.100", "3");
INSERT INTO `wp_rg_form_view` VALUES("79833", "3", "2018-03-13 08:19:36", "52.37.180.245", "37");
INSERT INTO `wp_rg_form_view` VALUES("79834", "9", "2018-03-13 08:19:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79835", "8", "2018-03-13 08:19:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79836", "10", "2018-03-13 08:19:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79837", "15", "2018-03-13 08:19:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79838", "18", "2018-03-13 08:19:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79839", "18", "2018-03-13 09:03:05", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79840", "3", "2018-03-13 09:29:20", "180.76.15.31", "34");
INSERT INTO `wp_rg_form_view` VALUES("79841", "10", "2018-03-13 09:38:07", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("79842", "9", "2018-03-13 09:38:47", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79843", "8", "2018-03-13 09:38:47", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("79844", "15", "2018-03-13 09:38:50", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79845", "3", "2018-03-13 10:01:29", "216.244.66.195", "74");
INSERT INTO `wp_rg_form_view` VALUES("79846", "10", "2018-03-13 10:08:40", "54.36.149.49", "16");
INSERT INTO `wp_rg_form_view` VALUES("79847", "9", "2018-03-13 10:09:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79848", "8", "2018-03-13 10:09:03", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79849", "15", "2018-03-13 10:09:07", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79850", "18", "2018-03-13 10:09:09", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79851", "3", "2018-03-13 11:01:31", "185.138.241.45", "71");
INSERT INTO `wp_rg_form_view` VALUES("79852", "9", "2018-03-13 11:54:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79853", "8", "2018-03-13 11:54:57", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79854", "10", "2018-03-13 11:54:58", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("79855", "15", "2018-03-13 11:55:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79856", "18", "2018-03-13 11:55:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79857", "3", "2018-03-13 12:00:33", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("79858", "3", "2018-03-13 13:00:49", "216.244.66.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("79859", "9", "2018-03-13 13:46:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79860", "8", "2018-03-13 13:46:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79861", "10", "2018-03-13 13:46:03", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79862", "15", "2018-03-13 13:46:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79863", "18", "2018-03-13 13:46:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79864", "18", "2018-03-13 14:40:12", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79865", "18", "2018-03-13 15:03:35", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("79866", "3", "2018-03-13 15:21:44", "54.36.149.78", "33");
INSERT INTO `wp_rg_form_view` VALUES("79867", "9", "2018-03-13 15:44:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79868", "8", "2018-03-13 15:44:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79869", "10", "2018-03-13 15:44:33", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79870", "15", "2018-03-13 15:44:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79871", "3", "2018-03-13 16:20:19", "54.36.148.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("79872", "9", "2018-03-13 17:09:01", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("79873", "3", "2018-03-13 17:10:19", "216.244.66.195", "69");
INSERT INTO `wp_rg_form_view` VALUES("79874", "8", "2018-03-13 17:27:36", "64.180.23.149", "6");
INSERT INTO `wp_rg_form_view` VALUES("79875", "14", "2018-03-13 17:29:29", "64.251.78.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("79876", "10", "2018-03-13 17:30:06", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("79877", "15", "2018-03-13 17:30:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79878", "18", "2018-03-13 17:30:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79879", "10", "2018-03-13 18:09:34", "194.187.170.107", "3");
INSERT INTO `wp_rg_form_view` VALUES("79880", "3", "2018-03-13 18:20:25", "194.187.170.107", "12");
INSERT INTO `wp_rg_form_view` VALUES("79881", "3", "2018-03-13 19:12:06", "216.244.66.195", "39");
INSERT INTO `wp_rg_form_view` VALUES("79882", "14", "2018-03-13 19:18:00", "72.143.230.116", "2");
INSERT INTO `wp_rg_form_view` VALUES("79883", "8", "2018-03-13 19:18:13", "194.187.170.107", "3");
INSERT INTO `wp_rg_form_view` VALUES("79884", "9", "2018-03-13 19:29:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79885", "10", "2018-03-13 19:29:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79886", "15", "2018-03-13 19:29:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79887", "18", "2018-03-13 19:29:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79888", "3", "2018-03-13 20:01:36", "24.108.169.126", "2");
INSERT INTO `wp_rg_form_view` VALUES("79889", "3", "2018-03-13 21:00:45", "66.249.69.55", "33");
INSERT INTO `wp_rg_form_view` VALUES("79890", "9", "2018-03-13 21:36:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79891", "8", "2018-03-13 21:36:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79892", "10", "2018-03-13 21:36:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79893", "15", "2018-03-13 21:36:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79894", "18", "2018-03-13 21:36:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79895", "18", "2018-03-13 22:20:01", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79896", "3", "2018-03-13 22:40:50", "64.114.207.106", "2");
INSERT INTO `wp_rg_form_view` VALUES("79897", "18", "2018-03-13 23:03:52", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79898", "3", "2018-03-13 23:15:15", "70.67.61.20", "35");
INSERT INTO `wp_rg_form_view` VALUES("79899", "9", "2018-03-13 23:46:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79900", "8", "2018-03-13 23:46:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79901", "10", "2018-03-13 23:46:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79902", "15", "2018-03-13 23:46:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79903", "18", "2018-03-14 00:24:46", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79904", "18", "2018-03-14 01:07:12", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79905", "3", "2018-03-14 01:28:41", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("79906", "9", "2018-03-14 01:36:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79907", "8", "2018-03-14 01:36:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79908", "10", "2018-03-14 01:36:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79909", "15", "2018-03-14 01:36:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79910", "18", "2018-03-14 02:38:13", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79911", "3", "2018-03-14 03:33:30", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("79912", "9", "2018-03-14 03:33:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79913", "8", "2018-03-14 03:33:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79914", "10", "2018-03-14 03:33:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79915", "15", "2018-03-14 03:33:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79916", "18", "2018-03-14 03:33:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79917", "3", "2018-03-14 04:13:01", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("79918", "18", "2018-03-14 04:13:21", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79919", "15", "2018-03-14 04:52:29", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79920", "3", "2018-03-14 05:07:26", "54.36.149.91", "68");
INSERT INTO `wp_rg_form_view` VALUES("79921", "9", "2018-03-14 05:24:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79922", "8", "2018-03-14 05:24:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("79923", "10", "2018-03-14 05:24:53", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("79924", "15", "2018-03-14 05:24:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79925", "18", "2018-03-14 05:24:57", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79926", "8", "2018-03-14 07:11:07", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("79927", "3", "2018-03-14 07:11:41", "216.244.66.247", "44");
INSERT INTO `wp_rg_form_view` VALUES("79928", "9", "2018-03-14 07:14:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79929", "10", "2018-03-14 07:14:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79930", "15", "2018-03-14 07:14:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79931", "18", "2018-03-14 07:14:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79932", "3", "2018-03-14 08:01:05", "38.132.124.147", "5");
INSERT INTO `wp_rg_form_view` VALUES("79933", "18", "2018-03-14 08:11:56", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("79934", "14", "2018-03-14 08:26:11", "203.162.13.172", "6");
INSERT INTO `wp_rg_form_view` VALUES("79935", "3", "2018-03-14 09:05:40", "52.37.180.245", "41");
INSERT INTO `wp_rg_form_view` VALUES("79936", "9", "2018-03-14 09:05:41", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("79937", "8", "2018-03-14 09:05:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79938", "10", "2018-03-14 09:05:43", "52.37.180.245", "9");
INSERT INTO `wp_rg_form_view` VALUES("79939", "15", "2018-03-14 09:05:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79940", "18", "2018-03-14 09:05:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79941", "5", "2018-03-14 09:53:55", "157.55.39.88", "1");
INSERT INTO `wp_rg_form_view` VALUES("79942", "3", "2018-03-14 10:08:57", "180.76.15.6", "34");
INSERT INTO `wp_rg_form_view` VALUES("79943", "9", "2018-03-14 10:56:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79944", "8", "2018-03-14 10:56:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79945", "10", "2018-03-14 10:56:07", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79946", "15", "2018-03-14 10:56:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79947", "18", "2018-03-14 10:56:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79948", "10", "2018-03-14 11:02:48", "66.249.87.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("79949", "15", "2018-03-14 11:48:59", "180.76.15.14", "1");
INSERT INTO `wp_rg_form_view` VALUES("79950", "3", "2018-03-14 12:22:17", "180.76.15.31", "33");
INSERT INTO `wp_rg_form_view` VALUES("79951", "9", "2018-03-14 12:47:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79952", "8", "2018-03-14 12:47:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79953", "10", "2018-03-14 12:47:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79954", "15", "2018-03-14 12:48:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79955", "18", "2018-03-14 12:48:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79956", "10", "2018-03-14 14:08:58", "54.167.181.25", "6");
INSERT INTO `wp_rg_form_view` VALUES("79957", "3", "2018-03-14 14:43:55", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79958", "9", "2018-03-14 14:43:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79959", "8", "2018-03-14 14:43:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79960", "15", "2018-03-14 14:43:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79961", "18", "2018-03-14 14:44:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79962", "3", "2018-03-14 15:42:42", "194.187.170.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("79963", "18", "2018-03-14 16:04:57", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("79964", "14", "2018-03-14 16:27:33", "172.218.233.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("79965", "3", "2018-03-14 16:33:18", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79966", "9", "2018-03-14 16:33:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79967", "8", "2018-03-14 16:33:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79968", "10", "2018-03-14 16:33:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79969", "15", "2018-03-14 16:33:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79970", "3", "2018-03-14 17:49:41", "77.75.78.167", "1");
INSERT INTO `wp_rg_form_view` VALUES("79971", "11", "2018-03-14 18:02:27", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("79972", "14", "2018-03-14 18:08:45", "72.143.230.157", "1");
INSERT INTO `wp_rg_form_view` VALUES("79973", "3", "2018-03-14 18:20:43", "96.50.18.183", "36");
INSERT INTO `wp_rg_form_view` VALUES("79974", "9", "2018-03-14 18:25:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79975", "8", "2018-03-14 18:25:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79976", "10", "2018-03-14 18:25:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("79977", "15", "2018-03-14 18:25:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79978", "18", "2018-03-14 18:25:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79979", "8", "2018-03-14 19:02:12", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("79980", "3", "2018-03-14 19:02:29", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("79981", "9", "2018-03-14 19:03:07", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("79982", "18", "2018-03-14 19:04:31", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("79983", "14", "2018-03-14 20:15:12", "184.71.7.214", "1");
INSERT INTO `wp_rg_form_view` VALUES("79984", "3", "2018-03-14 20:17:49", "54.36.148.133", "43");
INSERT INTO `wp_rg_form_view` VALUES("79985", "18", "2018-03-14 20:17:51", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79986", "9", "2018-03-14 20:24:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79987", "8", "2018-03-14 20:24:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79988", "10", "2018-03-14 20:24:02", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79989", "15", "2018-03-14 20:24:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79990", "3", "2018-03-14 21:08:45", "180.76.15.34", "2");
INSERT INTO `wp_rg_form_view` VALUES("79991", "3", "2018-03-14 22:14:50", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("79992", "9", "2018-03-14 22:14:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79993", "8", "2018-03-14 22:14:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("79994", "10", "2018-03-14 22:14:52", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("79995", "15", "2018-03-14 22:14:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79996", "18", "2018-03-14 22:14:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("79997", "18", "2018-03-14 23:14:45", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("79998", "10", "2018-03-14 23:59:38", "72.14.199.69", "1");
INSERT INTO `wp_rg_form_view` VALUES("79999", "3", "2018-03-15 00:09:46", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80000", "9", "2018-03-15 00:09:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80001", "8", "2018-03-15 00:09:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80002", "10", "2018-03-15 00:09:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80003", "15", "2018-03-15 00:09:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80004", "18", "2018-03-15 00:09:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80005", "18", "2018-03-15 01:20:48", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80006", "10", "2018-03-15 01:30:51", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80007", "3", "2018-03-15 01:31:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80008", "3", "2018-03-15 02:01:49", "54.162.49.69", "33");
INSERT INTO `wp_rg_form_view` VALUES("80009", "9", "2018-03-15 02:28:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80010", "8", "2018-03-15 02:28:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80011", "10", "2018-03-15 02:28:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80012", "15", "2018-03-15 02:29:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80013", "18", "2018-03-15 02:29:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80014", "3", "2018-03-15 03:48:41", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80015", "3", "2018-03-15 04:19:53", "52.37.180.245", "64");
INSERT INTO `wp_rg_form_view` VALUES("80016", "9", "2018-03-15 04:19:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80017", "8", "2018-03-15 04:19:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80018", "10", "2018-03-15 04:19:54", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80019", "15", "2018-03-15 04:19:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80020", "18", "2018-03-15 04:19:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80021", "18", "2018-03-15 05:08:10", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("80022", "18", "2018-03-15 06:03:14", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80023", "3", "2018-03-15 06:04:41", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80024", "9", "2018-03-15 06:04:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80025", "8", "2018-03-15 06:04:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80026", "10", "2018-03-15 06:04:43", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80027", "15", "2018-03-15 06:04:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80028", "3", "2018-03-15 07:09:03", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("80029", "9", "2018-03-15 07:49:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80030", "8", "2018-03-15 07:49:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80031", "10", "2018-03-15 07:49:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80032", "15", "2018-03-15 07:49:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80033", "18", "2018-03-15 07:49:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80034", "3", "2018-03-15 09:33:48", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80035", "9", "2018-03-15 09:33:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80036", "8", "2018-03-15 09:33:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80037", "10", "2018-03-15 09:33:50", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80038", "15", "2018-03-15 09:33:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80039", "18", "2018-03-15 09:33:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80040", "3", "2018-03-15 10:16:52", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("80041", "5", "2018-03-15 10:21:28", "194.187.170.109", "1");
INSERT INTO `wp_rg_form_view` VALUES("80042", "3", "2018-03-15 11:01:16", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("80043", "9", "2018-03-15 11:25:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80044", "8", "2018-03-15 11:25:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80045", "10", "2018-03-15 11:25:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80046", "15", "2018-03-15 11:25:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80047", "18", "2018-03-15 11:25:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80048", "3", "2018-03-15 12:23:29", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("80049", "3", "2018-03-15 13:13:19", "5.9.98.130", "93");
INSERT INTO `wp_rg_form_view` VALUES("80050", "9", "2018-03-15 13:14:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80051", "8", "2018-03-15 13:14:17", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80052", "10", "2018-03-15 13:14:18", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("80053", "15", "2018-03-15 13:14:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80054", "18", "2018-03-15 13:14:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80055", "14", "2018-03-15 13:16:38", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("80056", "6", "2018-03-15 13:31:10", "5.9.98.130", "1");
INSERT INTO `wp_rg_form_view` VALUES("80057", "3", "2018-03-15 14:17:09", "5.9.98.130", "67");
INSERT INTO `wp_rg_form_view` VALUES("80058", "9", "2018-03-15 14:28:16", "216.244.66.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("80059", "10", "2018-03-15 14:34:40", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80060", "3", "2018-03-15 15:00:00", "5.9.98.130", "71");
INSERT INTO `wp_rg_form_view` VALUES("80061", "9", "2018-03-15 15:09:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80062", "8", "2018-03-15 15:09:49", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80063", "10", "2018-03-15 15:09:50", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80064", "15", "2018-03-15 15:09:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80065", "18", "2018-03-15 15:09:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80066", "3", "2018-03-15 16:01:32", "38.132.124.147", "136");
INSERT INTO `wp_rg_form_view` VALUES("80067", "18", "2018-03-15 16:09:10", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80068", "9", "2018-03-15 16:55:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80069", "8", "2018-03-15 16:55:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80070", "10", "2018-03-15 16:55:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80071", "15", "2018-03-15 16:55:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80072", "18", "2018-03-15 17:03:07", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80073", "3", "2018-03-15 17:36:57", "216.244.66.195", "10");
INSERT INTO `wp_rg_form_view` VALUES("80074", "18", "2018-03-15 18:18:22", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80075", "3", "2018-03-15 18:44:22", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80076", "9", "2018-03-15 18:44:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80077", "8", "2018-03-15 18:44:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80078", "10", "2018-03-15 18:44:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80079", "15", "2018-03-15 18:44:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80080", "18", "2018-03-15 19:10:29", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80081", "18", "2018-03-15 20:01:53", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80082", "3", "2018-03-15 20:05:13", "216.244.66.231", "221");
INSERT INTO `wp_rg_form_view` VALUES("80083", "9", "2018-03-15 20:44:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80084", "8", "2018-03-15 20:44:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80085", "10", "2018-03-15 20:44:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80086", "15", "2018-03-15 20:44:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80087", "3", "2018-03-15 21:00:04", "5.9.98.130", "6");
INSERT INTO `wp_rg_form_view` VALUES("80088", "14", "2018-03-15 21:50:21", "198.12.108.35", "2");
INSERT INTO `wp_rg_form_view` VALUES("80089", "18", "2018-03-15 21:51:58", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80090", "3", "2018-03-15 22:55:54", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80091", "9", "2018-03-15 22:55:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80092", "8", "2018-03-15 22:55:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80093", "10", "2018-03-15 22:55:56", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80094", "15", "2018-03-15 22:55:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80095", "18", "2018-03-15 22:56:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80096", "3", "2018-03-15 23:12:29", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80097", "18", "2018-03-16 00:12:23", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("80098", "3", "2018-03-16 00:23:32", "216.244.66.195", "67");
INSERT INTO `wp_rg_form_view` VALUES("80099", "9", "2018-03-16 00:44:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80100", "8", "2018-03-16 00:44:46", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80101", "10", "2018-03-16 00:44:47", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80102", "15", "2018-03-16 00:44:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80103", "3", "2018-03-16 01:49:11", "37.150.2.193", "1");
INSERT INTO `wp_rg_form_view` VALUES("80104", "10", "2018-03-16 01:53:31", "72.14.199.71", "1");
INSERT INTO `wp_rg_form_view` VALUES("80105", "3", "2018-03-16 02:18:44", "216.244.66.195", "65");
INSERT INTO `wp_rg_form_view` VALUES("80106", "9", "2018-03-16 02:40:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80107", "8", "2018-03-16 02:40:09", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80108", "10", "2018-03-16 02:40:10", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80109", "15", "2018-03-16 02:40:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80110", "18", "2018-03-16 02:40:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80111", "10", "2018-03-16 03:12:22", "199.16.157.182", "1");
INSERT INTO `wp_rg_form_view` VALUES("80112", "3", "2018-03-16 03:17:10", "216.244.66.247", "136");
INSERT INTO `wp_rg_form_view` VALUES("80113", "3", "2018-03-16 04:00:01", "5.9.98.130", "284");
INSERT INTO `wp_rg_form_view` VALUES("80114", "9", "2018-03-16 04:51:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80115", "8", "2018-03-16 04:51:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80116", "10", "2018-03-16 04:51:33", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80117", "15", "2018-03-16 04:51:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80118", "18", "2018-03-16 04:51:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80119", "18", "2018-03-16 05:25:10", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80120", "5", "2018-03-16 05:25:58", "54.36.149.102", "1");
INSERT INTO `wp_rg_form_view` VALUES("80121", "3", "2018-03-16 06:12:33", "180.76.15.19", "36");
INSERT INTO `wp_rg_form_view` VALUES("80122", "18", "2018-03-16 06:18:24", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("80123", "9", "2018-03-16 06:46:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80124", "8", "2018-03-16 06:46:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80125", "10", "2018-03-16 06:46:20", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80126", "15", "2018-03-16 06:46:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80127", "3", "2018-03-16 07:16:54", "54.36.148.217", "34");
INSERT INTO `wp_rg_form_view` VALUES("80128", "9", "2018-03-16 07:29:59", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80129", "8", "2018-03-16 07:30:00", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80130", "10", "2018-03-16 07:30:02", "216.244.66.247", "7");
INSERT INTO `wp_rg_form_view` VALUES("80131", "15", "2018-03-16 07:30:05", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80132", "18", "2018-03-16 07:30:07", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80133", "3", "2018-03-16 08:36:16", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80134", "9", "2018-03-16 08:36:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80135", "8", "2018-03-16 08:36:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80136", "10", "2018-03-16 08:36:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80137", "15", "2018-03-16 08:36:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80138", "18", "2018-03-16 08:36:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80139", "3", "2018-03-16 09:44:19", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80140", "3", "2018-03-16 10:20:20", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80141", "9", "2018-03-16 10:20:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80142", "8", "2018-03-16 10:20:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80143", "10", "2018-03-16 10:20:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80144", "15", "2018-03-16 10:20:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80145", "18", "2018-03-16 10:20:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80146", "3", "2018-03-16 12:05:26", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80147", "9", "2018-03-16 12:05:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80148", "8", "2018-03-16 12:05:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80149", "10", "2018-03-16 12:05:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80150", "15", "2018-03-16 12:05:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80151", "18", "2018-03-16 12:05:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80152", "10", "2018-03-16 13:04:46", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("80153", "3", "2018-03-16 13:05:38", "54.165.59.7", "35");
INSERT INTO `wp_rg_form_view` VALUES("80154", "9", "2018-03-16 13:55:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80155", "8", "2018-03-16 13:55:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80156", "15", "2018-03-16 13:55:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80157", "18", "2018-03-16 13:55:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80158", "10", "2018-03-16 14:15:02", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("80159", "9", "2018-03-16 14:31:13", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80160", "3", "2018-03-16 14:32:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80161", "3", "2018-03-16 15:23:55", "66.249.79.143", "35");
INSERT INTO `wp_rg_form_view` VALUES("80162", "18", "2018-03-16 15:27:17", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80163", "9", "2018-03-16 15:50:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80164", "8", "2018-03-16 15:50:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80165", "10", "2018-03-16 15:50:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80166", "15", "2018-03-16 15:50:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80167", "10", "2018-03-16 16:12:01", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80168", "3", "2018-03-16 16:12:31", "216.244.66.195", "76");
INSERT INTO `wp_rg_form_view` VALUES("80169", "3", "2018-03-16 17:00:04", "5.9.98.130", "577");
INSERT INTO `wp_rg_form_view` VALUES("80170", "9", "2018-03-16 17:36:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80171", "8", "2018-03-16 17:36:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80172", "10", "2018-03-16 17:36:05", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80173", "15", "2018-03-16 17:36:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80174", "18", "2018-03-16 17:36:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80175", "3", "2018-03-16 18:00:00", "5.9.98.130", "150");
INSERT INTO `wp_rg_form_view` VALUES("80176", "10", "2018-03-16 18:00:16", "209.52.88.86", "3");
INSERT INTO `wp_rg_form_view` VALUES("80177", "3", "2018-03-16 19:21:11", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("80178", "9", "2018-03-16 19:23:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80179", "8", "2018-03-16 19:23:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80180", "10", "2018-03-16 19:23:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80181", "15", "2018-03-16 19:24:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80182", "18", "2018-03-16 19:24:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80183", "3", "2018-03-16 20:04:23", "180.76.15.154", "3");
INSERT INTO `wp_rg_form_view` VALUES("80184", "3", "2018-03-16 21:10:44", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80185", "9", "2018-03-16 21:10:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80186", "8", "2018-03-16 21:10:47", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80187", "10", "2018-03-16 21:10:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80188", "15", "2018-03-16 21:10:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80189", "18", "2018-03-16 21:10:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80190", "3", "2018-03-16 22:22:18", "220.181.108.158", "34");
INSERT INTO `wp_rg_form_view` VALUES("80191", "10", "2018-03-16 22:50:07", "54.36.149.8", "6");
INSERT INTO `wp_rg_form_view` VALUES("80192", "9", "2018-03-16 22:58:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80193", "8", "2018-03-16 22:58:46", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80194", "15", "2018-03-16 22:58:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80195", "18", "2018-03-16 22:58:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80196", "3", "2018-03-16 23:04:20", "24.108.4.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("80197", "18", "2018-03-16 23:07:57", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80198", "3", "2018-03-17 00:40:36", "54.36.148.174", "65");
INSERT INTO `wp_rg_form_view` VALUES("80199", "9", "2018-03-17 00:49:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80200", "8", "2018-03-17 00:49:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80201", "10", "2018-03-17 00:49:54", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80202", "15", "2018-03-17 00:49:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80203", "18", "2018-03-17 00:50:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80204", "3", "2018-03-17 01:37:22", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80205", "11", "2018-03-17 01:37:43", "180.76.15.138", "1");
INSERT INTO `wp_rg_form_view` VALUES("80206", "3", "2018-03-17 02:03:11", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("80207", "15", "2018-03-17 02:04:12", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80208", "9", "2018-03-17 02:35:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80209", "8", "2018-03-17 02:35:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80210", "10", "2018-03-17 02:35:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80211", "18", "2018-03-17 02:35:51", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80212", "18", "2018-03-17 03:01:10", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80213", "10", "2018-03-17 03:06:27", "54.36.148.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("80214", "3", "2018-03-17 03:44:09", "54.36.149.59", "2");
INSERT INTO `wp_rg_form_view` VALUES("80215", "3", "2018-03-17 04:25:36", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("80216", "9", "2018-03-17 04:25:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80217", "8", "2018-03-17 04:25:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80218", "10", "2018-03-17 04:25:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80219", "15", "2018-03-17 04:25:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80220", "18", "2018-03-17 04:25:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80221", "18", "2018-03-17 05:01:35", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80222", "14", "2018-03-17 05:02:23", "23.250.23.104", "4");
INSERT INTO `wp_rg_form_view` VALUES("80223", "3", "2018-03-17 05:19:01", "40.77.167.167", "4");
INSERT INTO `wp_rg_form_view` VALUES("80224", "3", "2018-03-17 06:19:51", "52.37.180.245", "64");
INSERT INTO `wp_rg_form_view` VALUES("80225", "9", "2018-03-17 06:19:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80226", "8", "2018-03-17 06:19:54", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80227", "10", "2018-03-17 06:19:55", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80228", "15", "2018-03-17 06:19:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80229", "18", "2018-03-17 06:20:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80230", "10", "2018-03-17 07:33:57", "54.36.148.38", "1");
INSERT INTO `wp_rg_form_view` VALUES("80231", "8", "2018-03-17 07:43:56", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80232", "3", "2018-03-17 07:44:31", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80233", "3", "2018-03-17 08:05:48", "52.37.180.245", "41");
INSERT INTO `wp_rg_form_view` VALUES("80234", "9", "2018-03-17 08:05:50", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80235", "8", "2018-03-17 08:05:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80236", "10", "2018-03-17 08:05:52", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80237", "15", "2018-03-17 08:05:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80238", "18", "2018-03-17 08:05:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80239", "8", "2018-03-17 09:46:52", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80240", "3", "2018-03-17 09:47:32", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80241", "3", "2018-03-17 10:01:14", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80242", "9", "2018-03-17 10:01:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80243", "8", "2018-03-17 10:01:15", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("80244", "10", "2018-03-17 10:01:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80245", "15", "2018-03-17 10:01:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80246", "18", "2018-03-17 10:01:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80247", "3", "2018-03-17 12:00:58", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80248", "9", "2018-03-17 12:01:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80249", "8", "2018-03-17 12:01:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80250", "10", "2018-03-17 12:01:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80251", "15", "2018-03-17 12:01:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80252", "18", "2018-03-17 12:01:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80253", "10", "2018-03-17 13:06:07", "207.46.13.120", "11");
INSERT INTO `wp_rg_form_view` VALUES("80254", "3", "2018-03-17 13:10:21", "216.244.66.247", "308");
INSERT INTO `wp_rg_form_view` VALUES("80255", "9", "2018-03-17 13:10:22", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80256", "8", "2018-03-17 13:10:23", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("80257", "15", "2018-03-17 13:10:28", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80258", "18", "2018-03-17 13:10:31", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80259", "3", "2018-03-17 14:00:03", "5.9.98.130", "391");
INSERT INTO `wp_rg_form_view` VALUES("80260", "9", "2018-03-17 15:06:52", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80261", "3", "2018-03-17 15:07:07", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("80262", "18", "2018-03-17 15:33:40", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80263", "10", "2018-03-17 15:53:20", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("80264", "8", "2018-03-17 15:57:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80265", "15", "2018-03-17 15:57:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80266", "8", "2018-03-17 16:44:16", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80267", "3", "2018-03-17 16:44:29", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80268", "18", "2018-03-17 16:44:43", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80269", "10", "2018-03-17 16:59:47", "199.59.150.182", "2");
INSERT INTO `wp_rg_form_view` VALUES("80270", "3", "2018-03-17 17:36:33", "54.36.148.164", "33");
INSERT INTO `wp_rg_form_view` VALUES("80271", "9", "2018-03-17 17:42:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80272", "8", "2018-03-17 17:42:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80273", "10", "2018-03-17 17:42:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80274", "15", "2018-03-17 17:42:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80275", "18", "2018-03-17 17:42:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80276", "3", "2018-03-17 18:39:22", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("80277", "3", "2018-03-17 19:29:39", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80278", "9", "2018-03-17 19:29:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80279", "8", "2018-03-17 19:29:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80280", "10", "2018-03-17 19:29:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80281", "15", "2018-03-17 19:29:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80282", "18", "2018-03-17 19:29:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80283", "3", "2018-03-17 21:22:56", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("80284", "9", "2018-03-17 21:22:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80285", "8", "2018-03-17 21:22:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80286", "10", "2018-03-17 21:22:58", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80287", "15", "2018-03-17 21:23:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80288", "18", "2018-03-17 21:23:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80289", "18", "2018-03-17 22:12:45", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80290", "3", "2018-03-17 23:22:28", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80291", "9", "2018-03-17 23:22:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80292", "8", "2018-03-17 23:22:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80293", "10", "2018-03-17 23:22:30", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("80294", "15", "2018-03-17 23:22:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80295", "18", "2018-03-17 23:22:33", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("80296", "18", "2018-03-18 00:01:52", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80297", "3", "2018-03-18 00:09:17", "180.76.15.136", "6");
INSERT INTO `wp_rg_form_view` VALUES("80298", "10", "2018-03-18 00:30:26", "72.14.199.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("80299", "3", "2018-03-18 01:15:34", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80300", "9", "2018-03-18 01:15:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80301", "8", "2018-03-18 01:15:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80302", "10", "2018-03-18 01:15:36", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80303", "15", "2018-03-18 01:15:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80304", "18", "2018-03-18 01:15:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80305", "18", "2018-03-18 02:01:51", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80306", "18", "2018-03-18 03:00:54", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("80307", "3", "2018-03-18 03:09:13", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80308", "9", "2018-03-18 03:09:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80309", "8", "2018-03-18 03:09:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80310", "10", "2018-03-18 03:09:15", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80311", "15", "2018-03-18 03:09:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80312", "3", "2018-03-18 04:26:46", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80313", "3", "2018-03-18 05:04:07", "216.244.66.195", "36");
INSERT INTO `wp_rg_form_view` VALUES("80314", "9", "2018-03-18 05:08:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80315", "8", "2018-03-18 05:08:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80316", "10", "2018-03-18 05:08:31", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80317", "15", "2018-03-18 05:08:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80318", "18", "2018-03-18 05:08:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80319", "10", "2018-03-18 06:21:23", "54.36.148.41", "6");
INSERT INTO `wp_rg_form_view` VALUES("80320", "3", "2018-03-18 06:59:29", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80321", "9", "2018-03-18 06:59:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80322", "8", "2018-03-18 06:59:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80323", "15", "2018-03-18 06:59:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80324", "18", "2018-03-18 06:59:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80325", "18", "2018-03-18 07:05:05", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80326", "3", "2018-03-18 07:10:37", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("80327", "10", "2018-03-18 07:42:10", "54.36.149.91", "1");
INSERT INTO `wp_rg_form_view` VALUES("80328", "10", "2018-03-18 08:21:21", "199.16.157.182", "6");
INSERT INTO `wp_rg_form_view` VALUES("80329", "3", "2018-03-18 08:51:11", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80330", "9", "2018-03-18 08:51:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80331", "8", "2018-03-18 08:51:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80332", "15", "2018-03-18 08:51:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80333", "18", "2018-03-18 08:51:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80334", "3", "2018-03-18 10:33:57", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("80335", "9", "2018-03-18 10:35:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80336", "8", "2018-03-18 10:35:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80337", "10", "2018-03-18 10:35:51", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80338", "15", "2018-03-18 10:35:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80339", "18", "2018-03-18 10:35:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80340", "3", "2018-03-18 11:05:42", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80341", "3", "2018-03-18 12:30:29", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80342", "9", "2018-03-18 12:30:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80343", "8", "2018-03-18 12:30:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80344", "10", "2018-03-18 12:30:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80345", "15", "2018-03-18 12:30:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80346", "18", "2018-03-18 12:30:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80347", "3", "2018-03-18 13:09:20", "54.156.86.61", "16");
INSERT INTO `wp_rg_form_view` VALUES("80348", "10", "2018-03-18 14:19:02", "72.14.199.19", "11");
INSERT INTO `wp_rg_form_view` VALUES("80349", "3", "2018-03-18 14:19:55", "52.37.180.245", "65");
INSERT INTO `wp_rg_form_view` VALUES("80350", "9", "2018-03-18 14:19:56", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80351", "8", "2018-03-18 14:19:56", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80352", "15", "2018-03-18 14:19:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80353", "18", "2018-03-18 14:20:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80354", "3", "2018-03-18 15:05:42", "216.244.66.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("80355", "18", "2018-03-18 15:07:15", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80356", "14", "2018-03-18 16:05:24", "194.182.74.168", "1");
INSERT INTO `wp_rg_form_view` VALUES("80357", "3", "2018-03-18 16:05:27", "194.182.74.168", "34");
INSERT INTO `wp_rg_form_view` VALUES("80358", "9", "2018-03-18 16:29:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80359", "8", "2018-03-18 16:29:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80360", "10", "2018-03-18 16:29:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80361", "15", "2018-03-18 16:29:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80362", "18", "2018-03-18 16:29:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80363", "3", "2018-03-18 17:00:53", "50.65.90.85", "11");
INSERT INTO `wp_rg_form_view` VALUES("80364", "3", "2018-03-18 18:20:25", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80365", "9", "2018-03-18 18:20:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80366", "8", "2018-03-18 18:20:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80367", "10", "2018-03-18 18:20:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80368", "15", "2018-03-18 18:20:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80369", "18", "2018-03-18 18:20:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80370", "3", "2018-03-18 19:15:17", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("80371", "10", "2018-03-18 19:15:56", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80372", "3", "2018-03-18 20:32:36", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("80373", "6", "2018-03-18 20:55:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80374", "9", "2018-03-18 20:55:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80375", "8", "2018-03-18 20:55:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80376", "10", "2018-03-18 20:55:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80377", "15", "2018-03-18 20:55:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80378", "18", "2018-03-18 20:55:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80379", "3", "2018-03-18 21:17:28", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80380", "10", "2018-03-18 21:18:38", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80381", "14", "2018-03-18 21:45:55", "72.143.226.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("80382", "3", "2018-03-18 22:46:15", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80383", "9", "2018-03-18 22:46:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80384", "8", "2018-03-18 22:46:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80385", "10", "2018-03-18 22:46:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80386", "15", "2018-03-18 22:46:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80387", "18", "2018-03-18 22:46:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80388", "18", "2018-03-18 23:04:05", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80389", "3", "2018-03-18 23:30:01", "54.36.149.21", "2");
INSERT INTO `wp_rg_form_view` VALUES("80390", "8", "2018-03-18 23:54:11", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80391", "3", "2018-03-19 00:07:24", "184.66.33.103", "34");
INSERT INTO `wp_rg_form_view` VALUES("80392", "9", "2018-03-19 00:49:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80393", "8", "2018-03-19 00:49:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80394", "10", "2018-03-19 00:49:40", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80395", "15", "2018-03-19 00:49:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80396", "18", "2018-03-19 00:49:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80397", "3", "2018-03-19 01:41:05", "188.166.53.100", "1");
INSERT INTO `wp_rg_form_view` VALUES("80398", "3", "2018-03-19 02:32:28", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("80399", "9", "2018-03-19 02:40:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80400", "8", "2018-03-19 02:40:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80401", "10", "2018-03-19 02:40:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80402", "15", "2018-03-19 02:40:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80403", "18", "2018-03-19 02:40:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80404", "3", "2018-03-19 03:05:10", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80405", "18", "2018-03-19 04:03:06", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80406", "3", "2018-03-19 04:11:59", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("80407", "9", "2018-03-19 04:56:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80408", "8", "2018-03-19 04:56:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80409", "10", "2018-03-19 04:56:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80410", "15", "2018-03-19 04:56:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80411", "10", "2018-03-19 05:03:50", "66.249.90.191", "2");
INSERT INTO `wp_rg_form_view` VALUES("80412", "3", "2018-03-19 05:27:31", "204.79.180.7", "2");
INSERT INTO `wp_rg_form_view` VALUES("80413", "18", "2018-03-19 05:35:31", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80414", "3", "2018-03-19 06:11:08", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("80415", "9", "2018-03-19 06:47:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80416", "8", "2018-03-19 06:47:14", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80417", "10", "2018-03-19 06:47:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80418", "15", "2018-03-19 06:47:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80419", "18", "2018-03-19 06:47:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80420", "3", "2018-03-19 07:03:52", "5.9.98.130", "462");
INSERT INTO `wp_rg_form_view` VALUES("80421", "3", "2018-03-19 08:00:03", "5.9.98.130", "472");
INSERT INTO `wp_rg_form_view` VALUES("80422", "9", "2018-03-19 08:47:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80423", "8", "2018-03-19 08:47:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80424", "10", "2018-03-19 08:47:13", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80425", "15", "2018-03-19 08:47:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80426", "18", "2018-03-19 08:47:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80427", "3", "2018-03-19 09:13:06", "5.9.98.130", "130");
INSERT INTO `wp_rg_form_view` VALUES("80428", "10", "2018-03-19 10:35:27", "216.244.66.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("80429", "3", "2018-03-19 10:36:38", "52.37.180.245", "65");
INSERT INTO `wp_rg_form_view` VALUES("80430", "9", "2018-03-19 10:36:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80431", "8", "2018-03-19 10:36:41", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80432", "15", "2018-03-19 10:36:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80433", "18", "2018-03-19 10:36:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80434", "3", "2018-03-19 11:12:53", "198.251.72.110", "9");
INSERT INTO `wp_rg_form_view` VALUES("80435", "3", "2018-03-19 12:06:30", "157.55.39.173", "71");
INSERT INTO `wp_rg_form_view` VALUES("80436", "14", "2018-03-19 12:07:39", "185.93.3.123", "1");
INSERT INTO `wp_rg_form_view` VALUES("80437", "10", "2018-03-19 12:18:19", "216.244.66.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("80438", "9", "2018-03-19 12:21:08", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80439", "8", "2018-03-19 12:21:10", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("80440", "15", "2018-03-19 12:21:15", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80441", "18", "2018-03-19 12:21:20", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("80442", "3", "2018-03-19 13:49:21", "144.76.185.181", "1");
INSERT INTO `wp_rg_form_view` VALUES("80443", "18", "2018-03-19 14:09:43", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80444", "3", "2018-03-19 14:11:23", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80445", "9", "2018-03-19 14:11:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80446", "8", "2018-03-19 14:11:26", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80447", "10", "2018-03-19 14:11:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80448", "15", "2018-03-19 14:11:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80449", "18", "2018-03-19 15:21:52", "70.66.152.210", "2");
INSERT INTO `wp_rg_form_view` VALUES("80450", "3", "2018-03-19 15:53:35", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80451", "10", "2018-03-19 15:54:40", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80452", "3", "2018-03-19 16:11:28", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("80453", "9", "2018-03-19 16:16:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80454", "8", "2018-03-19 16:16:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80455", "10", "2018-03-19 16:16:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80456", "15", "2018-03-19 16:16:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80457", "18", "2018-03-19 16:16:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80458", "14", "2018-03-19 16:24:02", "209.52.88.221", "1");
INSERT INTO `wp_rg_form_view` VALUES("80459", "10", "2018-03-19 17:12:23", "66.249.90.161", "1");
INSERT INTO `wp_rg_form_view` VALUES("80460", "3", "2018-03-19 18:13:03", "52.37.180.245", "42");
INSERT INTO `wp_rg_form_view` VALUES("80461", "9", "2018-03-19 18:13:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80462", "8", "2018-03-19 18:13:10", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80463", "10", "2018-03-19 18:13:13", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80464", "15", "2018-03-19 18:13:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80465", "18", "2018-03-19 18:13:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80466", "3", "2018-03-19 19:12:08", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80467", "9", "2018-03-19 19:13:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80468", "3", "2018-03-19 20:11:50", "52.37.180.245", "43");
INSERT INTO `wp_rg_form_view` VALUES("80469", "9", "2018-03-19 20:11:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80470", "8", "2018-03-19 20:11:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80471", "10", "2018-03-19 20:11:52", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80472", "15", "2018-03-19 20:11:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80473", "18", "2018-03-19 20:11:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80474", "3", "2018-03-19 21:46:06", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80475", "10", "2018-03-19 21:57:05", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80476", "9", "2018-03-19 22:06:33", "54.36.148.48", "2");
INSERT INTO `wp_rg_form_view` VALUES("80477", "3", "2018-03-19 22:08:42", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80478", "8", "2018-03-19 22:08:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80479", "10", "2018-03-19 22:08:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80480", "15", "2018-03-19 22:08:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80481", "18", "2018-03-19 22:08:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80482", "18", "2018-03-19 23:45:10", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80483", "3", "2018-03-20 00:01:42", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("80484", "9", "2018-03-20 00:01:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80485", "8", "2018-03-20 00:01:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80486", "10", "2018-03-20 00:01:44", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80487", "15", "2018-03-20 00:01:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80488", "18", "2018-03-20 00:01:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80489", "18", "2018-03-20 01:39:54", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80490", "3", "2018-03-20 01:46:34", "24.108.4.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("80491", "3", "2018-03-20 02:02:27", "52.37.180.245", "37");
INSERT INTO `wp_rg_form_view` VALUES("80492", "9", "2018-03-20 02:02:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80493", "8", "2018-03-20 02:02:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80494", "10", "2018-03-20 02:02:28", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80495", "15", "2018-03-20 02:02:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80496", "18", "2018-03-20 02:02:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80497", "14", "2018-03-20 02:57:06", "96.50.28.252", "1");
INSERT INTO `wp_rg_form_view` VALUES("80498", "3", "2018-03-20 03:52:17", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80499", "9", "2018-03-20 03:52:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80500", "8", "2018-03-20 03:52:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80501", "10", "2018-03-20 03:52:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80502", "15", "2018-03-20 03:52:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80503", "18", "2018-03-20 03:52:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80504", "3", "2018-03-20 04:34:53", "107.190.27.32", "2");
INSERT INTO `wp_rg_form_view` VALUES("80505", "5", "2018-03-20 04:43:18", "100.43.91.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("80506", "18", "2018-03-20 04:52:23", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80507", "18", "2018-03-20 05:14:12", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80508", "10", "2018-03-20 05:16:55", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("80509", "3", "2018-03-20 05:38:26", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80510", "9", "2018-03-20 05:38:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80511", "8", "2018-03-20 05:38:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80512", "15", "2018-03-20 05:38:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80513", "18", "2018-03-20 06:09:11", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80514", "3", "2018-03-20 07:26:35", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80515", "9", "2018-03-20 07:26:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80516", "8", "2018-03-20 07:26:37", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80517", "10", "2018-03-20 07:26:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80518", "15", "2018-03-20 07:26:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80519", "18", "2018-03-20 07:26:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80520", "3", "2018-03-20 09:05:24", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("80521", "9", "2018-03-20 09:21:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80522", "8", "2018-03-20 09:21:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80523", "10", "2018-03-20 09:21:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80524", "15", "2018-03-20 09:21:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80525", "18", "2018-03-20 09:21:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80526", "3", "2018-03-20 11:05:32", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("80527", "9", "2018-03-20 11:22:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80528", "8", "2018-03-20 11:22:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80529", "10", "2018-03-20 11:22:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80530", "15", "2018-03-20 11:22:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80531", "18", "2018-03-20 11:22:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80532", "10", "2018-03-20 12:01:45", "54.36.148.90", "1");
INSERT INTO `wp_rg_form_view` VALUES("80533", "3", "2018-03-20 12:51:30", "178.137.95.244", "1");
INSERT INTO `wp_rg_form_view` VALUES("80534", "3", "2018-03-20 13:11:57", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80535", "9", "2018-03-20 13:11:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80536", "8", "2018-03-20 13:11:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80537", "10", "2018-03-20 13:11:59", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80538", "15", "2018-03-20 13:12:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80539", "18", "2018-03-20 13:12:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80540", "3", "2018-03-20 14:00:25", "216.232.148.41", "3");
INSERT INTO `wp_rg_form_view` VALUES("80541", "18", "2018-03-20 14:17:47", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("80542", "8", "2018-03-20 14:28:41", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80543", "3", "2018-03-20 15:17:22", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80544", "9", "2018-03-20 15:17:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80545", "8", "2018-03-20 15:17:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80546", "10", "2018-03-20 15:17:24", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80547", "15", "2018-03-20 15:17:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80548", "18", "2018-03-20 15:17:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80549", "3", "2018-03-20 16:16:01", "192.158.231.99", "8");
INSERT INTO `wp_rg_form_view` VALUES("80550", "3", "2018-03-20 17:17:05", "52.37.180.245", "64");
INSERT INTO `wp_rg_form_view` VALUES("80551", "9", "2018-03-20 17:17:06", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80552", "8", "2018-03-20 17:17:07", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80553", "10", "2018-03-20 17:17:07", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80554", "15", "2018-03-20 17:17:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80555", "18", "2018-03-20 17:17:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80556", "3", "2018-03-20 18:30:32", "24.69.149.40", "3");
INSERT INTO `wp_rg_form_view` VALUES("80557", "3", "2018-03-20 19:06:24", "24.69.155.121", "35");
INSERT INTO `wp_rg_form_view` VALUES("80558", "9", "2018-03-20 19:08:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80559", "8", "2018-03-20 19:08:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80560", "10", "2018-03-20 19:08:43", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80561", "15", "2018-03-20 19:08:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80562", "18", "2018-03-20 19:08:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80563", "3", "2018-03-20 21:04:52", "52.37.180.245", "65");
INSERT INTO `wp_rg_form_view` VALUES("80564", "9", "2018-03-20 21:04:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80565", "8", "2018-03-20 21:04:53", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80566", "10", "2018-03-20 21:04:53", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80567", "15", "2018-03-20 21:04:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80568", "18", "2018-03-20 21:04:57", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("80569", "18", "2018-03-20 22:35:41", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80570", "18", "2018-03-20 23:01:27", "184.66.27.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("80571", "3", "2018-03-20 23:18:01", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80572", "9", "2018-03-20 23:18:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80573", "8", "2018-03-20 23:18:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80574", "10", "2018-03-20 23:18:03", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80575", "15", "2018-03-20 23:18:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80576", "14", "2018-03-21 00:02:17", "69.58.178.57", "1");
INSERT INTO `wp_rg_form_view` VALUES("80577", "3", "2018-03-21 00:31:28", "157.55.39.73", "9");
INSERT INTO `wp_rg_form_view` VALUES("80578", "10", "2018-03-21 00:33:21", "157.55.39.234", "4");
INSERT INTO `wp_rg_form_view` VALUES("80579", "9", "2018-03-21 00:34:16", "157.55.39.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("80580", "8", "2018-03-21 00:34:40", "40.77.167.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("80581", "18", "2018-03-21 01:08:02", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80582", "3", "2018-03-21 01:13:38", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80583", "9", "2018-03-21 01:13:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80584", "8", "2018-03-21 01:13:39", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80585", "10", "2018-03-21 01:13:40", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80586", "15", "2018-03-21 01:13:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80587", "14", "2018-03-21 01:38:47", "24.65.142.192", "1");
INSERT INTO `wp_rg_form_view` VALUES("80588", "3", "2018-03-21 02:19:26", "144.140.233.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("80589", "18", "2018-03-21 02:53:55", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80590", "3", "2018-03-21 03:03:12", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80591", "9", "2018-03-21 03:03:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80592", "8", "2018-03-21 03:03:13", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80593", "10", "2018-03-21 03:03:14", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80594", "15", "2018-03-21 03:03:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80595", "18", "2018-03-21 03:03:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80596", "18", "2018-03-21 04:01:24", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80597", "9", "2018-03-21 04:05:24", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80598", "3", "2018-03-21 04:05:45", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("80599", "8", "2018-03-21 04:52:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80600", "10", "2018-03-21 04:52:39", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80601", "15", "2018-03-21 04:52:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80602", "3", "2018-03-21 05:11:12", "180.76.15.32", "1");
INSERT INTO `wp_rg_form_view` VALUES("80603", "18", "2018-03-21 05:32:30", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80604", "14", "2018-03-21 06:40:22", "70.67.56.246", "1");
INSERT INTO `wp_rg_form_view` VALUES("80605", "3", "2018-03-21 06:43:11", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80606", "9", "2018-03-21 06:43:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80607", "8", "2018-03-21 06:43:12", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80608", "10", "2018-03-21 06:43:12", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80609", "15", "2018-03-21 06:43:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80610", "18", "2018-03-21 06:43:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80611", "3", "2018-03-21 07:21:46", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80612", "3", "2018-03-21 08:04:09", "216.244.66.247", "37");
INSERT INTO `wp_rg_form_view` VALUES("80613", "9", "2018-03-21 08:36:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80614", "8", "2018-03-21 08:36:44", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80615", "10", "2018-03-21 08:36:45", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80616", "15", "2018-03-21 08:36:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80617", "18", "2018-03-21 08:36:49", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80618", "3", "2018-03-21 09:38:19", "40.77.167.171", "1");
INSERT INTO `wp_rg_form_view` VALUES("80619", "3", "2018-03-21 10:27:48", "157.55.39.218", "57");
INSERT INTO `wp_rg_form_view` VALUES("80620", "9", "2018-03-21 10:31:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80621", "8", "2018-03-21 10:31:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80622", "10", "2018-03-21 10:31:43", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("80623", "15", "2018-03-21 10:31:45", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80624", "18", "2018-03-21 10:31:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80625", "14", "2018-03-21 10:47:42", "159.65.253.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("80626", "6", "2018-03-21 10:53:04", "159.65.253.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("80627", "3", "2018-03-21 11:00:31", "159.65.253.98", "109");
INSERT INTO `wp_rg_form_view` VALUES("80628", "10", "2018-03-21 11:02:28", "159.65.253.98", "4");
INSERT INTO `wp_rg_form_view` VALUES("80629", "15", "2018-03-21 11:05:36", "159.65.253.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("80630", "8", "2018-03-21 11:30:10", "159.65.253.98", "2");
INSERT INTO `wp_rg_form_view` VALUES("80631", "18", "2018-03-21 11:30:30", "159.65.253.98", "1");
INSERT INTO `wp_rg_form_view` VALUES("80632", "3", "2018-03-21 12:00:57", "159.65.253.98", "53");
INSERT INTO `wp_rg_form_view` VALUES("80633", "9", "2018-03-21 12:31:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80634", "8", "2018-03-21 12:31:41", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80635", "10", "2018-03-21 12:31:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80636", "15", "2018-03-21 12:31:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80637", "18", "2018-03-21 12:31:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80638", "3", "2018-03-21 13:35:31", "192.3.191.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80639", "3", "2018-03-21 14:11:02", "216.244.66.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("80640", "18", "2018-03-21 14:22:10", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80641", "9", "2018-03-21 14:23:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80642", "8", "2018-03-21 14:23:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80643", "10", "2018-03-21 14:23:35", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80644", "15", "2018-03-21 14:23:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80645", "3", "2018-03-21 15:15:33", "216.244.66.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("80646", "3", "2018-03-21 16:09:03", "24.69.139.130", "38");
INSERT INTO `wp_rg_form_view` VALUES("80647", "9", "2018-03-21 16:23:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80648", "8", "2018-03-21 16:23:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80649", "10", "2018-03-21 16:23:35", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80650", "15", "2018-03-21 16:23:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80651", "18", "2018-03-21 16:23:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80652", "3", "2018-03-21 17:05:10", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("80653", "3", "2018-03-21 18:06:48", "154.20.34.204", "37");
INSERT INTO `wp_rg_form_view` VALUES("80654", "9", "2018-03-21 18:22:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80655", "8", "2018-03-21 18:22:27", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80656", "10", "2018-03-21 18:22:27", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80657", "15", "2018-03-21 18:22:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80658", "18", "2018-03-21 18:22:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80659", "3", "2018-03-21 19:02:35", "24.68.109.13", "6");
INSERT INTO `wp_rg_form_view` VALUES("80660", "3", "2018-03-21 20:22:27", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80661", "9", "2018-03-21 20:22:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80662", "8", "2018-03-21 20:22:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80663", "10", "2018-03-21 20:22:29", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80664", "15", "2018-03-21 20:22:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80665", "18", "2018-03-21 20:22:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80666", "3", "2018-03-21 21:37:53", "194.187.170.125", "1");
INSERT INTO `wp_rg_form_view` VALUES("80667", "3", "2018-03-21 22:12:23", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80668", "9", "2018-03-21 22:12:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80669", "8", "2018-03-21 22:12:24", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("80670", "10", "2018-03-21 22:12:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80671", "15", "2018-03-21 22:12:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80672", "18", "2018-03-21 22:12:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80673", "18", "2018-03-21 23:18:34", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80674", "3", "2018-03-21 23:23:09", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80675", "3", "2018-03-22 00:07:19", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80676", "9", "2018-03-22 00:07:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80677", "8", "2018-03-22 00:07:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80678", "10", "2018-03-22 00:07:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80679", "15", "2018-03-22 00:07:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80680", "18", "2018-03-22 00:07:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80681", "18", "2018-03-22 02:06:30", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("80682", "3", "2018-03-22 02:11:58", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("80683", "9", "2018-03-22 02:11:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80684", "8", "2018-03-22 02:11:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80685", "10", "2018-03-22 02:12:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80686", "15", "2018-03-22 02:12:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80687", "3", "2018-03-22 03:20:15", "24.69.8.243", "3");
INSERT INTO `wp_rg_form_view` VALUES("80688", "3", "2018-03-22 04:02:35", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80689", "9", "2018-03-22 04:02:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80690", "8", "2018-03-22 04:02:36", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80691", "10", "2018-03-22 04:02:37", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80692", "15", "2018-03-22 04:02:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80693", "18", "2018-03-22 04:02:41", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("80694", "18", "2018-03-22 05:00:06", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80695", "3", "2018-03-22 05:17:40", "24.108.29.221", "34");
INSERT INTO `wp_rg_form_view` VALUES("80696", "9", "2018-03-22 05:57:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80697", "8", "2018-03-22 05:57:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80698", "10", "2018-03-22 05:57:42", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80699", "15", "2018-03-22 05:57:44", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80700", "18", "2018-03-22 06:41:42", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80701", "10", "2018-03-22 07:36:12", "40.77.167.17", "1");
INSERT INTO `wp_rg_form_view` VALUES("80702", "14", "2018-03-22 07:40:23", "75.156.35.8", "1");
INSERT INTO `wp_rg_form_view` VALUES("80703", "3", "2018-03-22 07:44:38", "37.57.218.243", "1");
INSERT INTO `wp_rg_form_view` VALUES("80704", "3", "2018-03-22 08:12:59", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80705", "9", "2018-03-22 08:12:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80706", "8", "2018-03-22 08:13:00", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80707", "10", "2018-03-22 08:13:00", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80708", "15", "2018-03-22 08:13:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80709", "18", "2018-03-22 08:13:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80710", "3", "2018-03-22 09:30:19", "198.251.72.110", "8");
INSERT INTO `wp_rg_form_view` VALUES("80711", "10", "2018-03-22 09:38:41", "54.36.148.86", "1");
INSERT INTO `wp_rg_form_view` VALUES("80712", "3", "2018-03-22 10:12:07", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80713", "9", "2018-03-22 10:12:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80714", "8", "2018-03-22 10:12:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80715", "10", "2018-03-22 10:12:10", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80716", "15", "2018-03-22 10:12:12", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80717", "18", "2018-03-22 10:12:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80718", "3", "2018-03-22 11:33:02", "66.249.79.133", "33");
INSERT INTO `wp_rg_form_view` VALUES("80719", "10", "2018-03-22 11:52:29", "72.14.199.69", "6");
INSERT INTO `wp_rg_form_view` VALUES("80720", "9", "2018-03-22 11:58:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80721", "8", "2018-03-22 11:58:49", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80722", "15", "2018-03-22 11:58:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80723", "18", "2018-03-22 11:58:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80724", "14", "2018-03-22 13:02:28", "62.201.225.42", "1");
INSERT INTO `wp_rg_form_view` VALUES("80725", "3", "2018-03-22 13:59:30", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80726", "9", "2018-03-22 13:59:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80727", "8", "2018-03-22 13:59:31", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80728", "10", "2018-03-22 13:59:32", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80729", "15", "2018-03-22 13:59:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80730", "18", "2018-03-22 13:59:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80731", "18", "2018-03-22 14:30:16", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("80732", "14", "2018-03-22 14:39:52", "24.108.126.185", "2");
INSERT INTO `wp_rg_form_view` VALUES("80733", "3", "2018-03-22 14:45:55", "154.20.34.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("80734", "3", "2018-03-22 15:59:17", "176.115.96.204", "1");
INSERT INTO `wp_rg_form_view` VALUES("80735", "3", "2018-03-22 16:08:22", "52.37.180.245", "36");
INSERT INTO `wp_rg_form_view` VALUES("80736", "9", "2018-03-22 16:08:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80737", "8", "2018-03-22 16:08:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80738", "10", "2018-03-22 16:08:23", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("80739", "15", "2018-03-22 16:08:25", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80740", "18", "2018-03-22 16:08:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80741", "10", "2018-03-22 17:02:37", "194.187.170.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("80742", "3", "2018-03-22 17:04:52", "194.187.170.122", "7");
INSERT INTO `wp_rg_form_view` VALUES("80743", "10", "2018-03-22 18:05:02", "194.187.170.122", "6");
INSERT INTO `wp_rg_form_view` VALUES("80744", "3", "2018-03-22 18:11:51", "52.37.180.245", "46");
INSERT INTO `wp_rg_form_view` VALUES("80745", "9", "2018-03-22 18:11:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80746", "8", "2018-03-22 18:11:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80747", "15", "2018-03-22 18:11:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80748", "18", "2018-03-22 18:11:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80749", "3", "2018-03-22 19:04:30", "180.76.15.25", "4");
INSERT INTO `wp_rg_form_view` VALUES("80750", "18", "2018-03-22 19:09:30", "194.187.170.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("80751", "10", "2018-03-22 19:51:48", "194.187.170.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("80752", "3", "2018-03-22 20:04:00", "139.162.246.24", "45");
INSERT INTO `wp_rg_form_view` VALUES("80753", "9", "2018-03-22 20:04:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80754", "8", "2018-03-22 20:04:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80755", "10", "2018-03-22 20:04:22", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80756", "15", "2018-03-22 20:04:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80757", "18", "2018-03-22 20:04:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80758", "14", "2018-03-22 20:18:17", "23.94.108.101", "4");
INSERT INTO `wp_rg_form_view` VALUES("80759", "18", "2018-03-22 21:48:11", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80760", "3", "2018-03-22 21:50:13", "194.187.170.122", "66");
INSERT INTO `wp_rg_form_view` VALUES("80761", "9", "2018-03-22 21:53:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80762", "8", "2018-03-22 21:53:59", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80763", "10", "2018-03-22 21:54:00", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("80764", "15", "2018-03-22 21:54:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80765", "3", "2018-03-22 22:01:30", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80766", "10", "2018-03-22 22:01:46", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80767", "18", "2018-03-22 22:42:06", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80768", "3", "2018-03-22 23:17:11", "216.244.66.195", "46");
INSERT INTO `wp_rg_form_view` VALUES("80769", "10", "2018-03-22 23:20:50", "207.46.13.143", "13");
INSERT INTO `wp_rg_form_view` VALUES("80770", "9", "2018-03-22 23:21:27", "207.46.13.143", "2");
INSERT INTO `wp_rg_form_view` VALUES("80771", "8", "2018-03-22 23:23:58", "207.46.13.8", "3");
INSERT INTO `wp_rg_form_view` VALUES("80772", "18", "2018-03-22 23:48:19", "194.187.170.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("80773", "15", "2018-03-22 23:51:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80774", "3", "2018-03-23 00:03:42", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80775", "3", "2018-03-23 01:01:35", "216.244.66.247", "35");
INSERT INTO `wp_rg_form_view` VALUES("80776", "9", "2018-03-23 01:46:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80777", "8", "2018-03-23 01:46:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80778", "10", "2018-03-23 01:46:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80779", "15", "2018-03-23 01:46:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80780", "18", "2018-03-23 01:46:25", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80781", "18", "2018-03-23 02:38:04", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80782", "3", "2018-03-23 03:03:06", "194.187.170.122", "39");
INSERT INTO `wp_rg_form_view` VALUES("80783", "10", "2018-03-23 03:03:13", "194.187.170.122", "8");
INSERT INTO `wp_rg_form_view` VALUES("80784", "18", "2018-03-23 03:35:33", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80785", "9", "2018-03-23 03:39:01", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80786", "8", "2018-03-23 03:39:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80787", "15", "2018-03-23 03:39:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80788", "12", "2018-03-23 03:40:46", "194.187.170.122", "1");
INSERT INTO `wp_rg_form_view` VALUES("80789", "3", "2018-03-23 04:14:32", "24.68.101.198", "9");
INSERT INTO `wp_rg_form_view` VALUES("80790", "10", "2018-03-23 04:58:37", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80791", "3", "2018-03-23 05:00:55", "81.209.177.189", "386");
INSERT INTO `wp_rg_form_view` VALUES("80792", "18", "2018-03-23 05:01:02", "184.66.27.189", "19");
INSERT INTO `wp_rg_form_view` VALUES("80793", "14", "2018-03-23 05:01:55", "81.209.177.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("80794", "8", "2018-03-23 05:14:25", "81.209.177.189", "22");
INSERT INTO `wp_rg_form_view` VALUES("80795", "10", "2018-03-23 05:15:28", "81.209.177.189", "92");
INSERT INTO `wp_rg_form_view` VALUES("80796", "9", "2018-03-23 05:16:25", "81.209.177.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("80797", "15", "2018-03-23 05:16:28", "81.209.177.189", "17");
INSERT INTO `wp_rg_form_view` VALUES("80798", "8", "2018-03-23 06:00:08", "216.244.66.247", "13");
INSERT INTO `wp_rg_form_view` VALUES("80799", "3", "2018-03-23 06:00:13", "216.244.66.247", "84");
INSERT INTO `wp_rg_form_view` VALUES("80800", "10", "2018-03-23 06:04:09", "81.209.177.189", "5");
INSERT INTO `wp_rg_form_view` VALUES("80801", "15", "2018-03-23 06:09:30", "81.209.177.136", "4");
INSERT INTO `wp_rg_form_view` VALUES("80802", "9", "2018-03-23 06:09:53", "81.209.177.189", "7");
INSERT INTO `wp_rg_form_view` VALUES("80803", "6", "2018-03-23 06:33:06", "81.209.177.136", "1");
INSERT INTO `wp_rg_form_view` VALUES("80804", "3", "2018-03-23 07:12:27", "216.244.66.231", "33");
INSERT INTO `wp_rg_form_view` VALUES("80805", "9", "2018-03-23 07:33:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80806", "8", "2018-03-23 07:33:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80807", "10", "2018-03-23 07:33:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80808", "15", "2018-03-23 07:33:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80809", "18", "2018-03-23 07:33:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80810", "14", "2018-03-23 07:35:02", "207.46.13.95", "1");
INSERT INTO `wp_rg_form_view` VALUES("80811", "3", "2018-03-23 08:12:08", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80812", "10", "2018-03-23 08:12:20", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80813", "9", "2018-03-23 08:36:39", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80814", "3", "2018-03-23 09:06:26", "216.244.66.247", "64");
INSERT INTO `wp_rg_form_view` VALUES("80815", "9", "2018-03-23 09:06:26", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80816", "8", "2018-03-23 09:06:27", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("80817", "10", "2018-03-23 09:06:27", "216.244.66.247", "10");
INSERT INTO `wp_rg_form_view` VALUES("80818", "15", "2018-03-23 09:06:29", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80819", "18", "2018-03-23 09:06:32", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80820", "14", "2018-03-23 10:16:26", "203.162.13.172", "4");
INSERT INTO `wp_rg_form_view` VALUES("80821", "18", "2018-03-23 10:42:07", "52.91.123.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("80822", "8", "2018-03-23 10:56:40", "52.91.123.0", "1");
INSERT INTO `wp_rg_form_view` VALUES("80823", "3", "2018-03-23 11:10:04", "52.37.180.245", "64");
INSERT INTO `wp_rg_form_view` VALUES("80824", "9", "2018-03-23 11:10:04", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80825", "8", "2018-03-23 11:10:05", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80826", "10", "2018-03-23 11:10:06", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80827", "15", "2018-03-23 11:10:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80828", "18", "2018-03-23 11:10:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80829", "10", "2018-03-23 12:35:48", "54.36.149.32", "6");
INSERT INTO `wp_rg_form_view` VALUES("80830", "3", "2018-03-23 12:56:59", "24.68.101.198", "33");
INSERT INTO `wp_rg_form_view` VALUES("80831", "9", "2018-03-23 12:58:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80832", "8", "2018-03-23 12:58:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80833", "15", "2018-03-23 12:58:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80834", "18", "2018-03-23 12:59:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80835", "3", "2018-03-23 13:19:23", "24.68.101.198", "1");
INSERT INTO `wp_rg_form_view` VALUES("80836", "18", "2018-03-23 13:43:17", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80837", "18", "2018-03-23 14:12:20", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("80838", "3", "2018-03-23 14:48:52", "24.68.101.198", "35");
INSERT INTO `wp_rg_form_view` VALUES("80839", "9", "2018-03-23 14:54:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80840", "8", "2018-03-23 14:54:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80841", "10", "2018-03-23 14:54:21", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80842", "15", "2018-03-23 14:54:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80843", "3", "2018-03-23 15:13:31", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("80844", "10", "2018-03-23 15:14:05", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("80845", "14", "2018-03-23 15:38:40", "96.47.239.213", "5");
INSERT INTO `wp_rg_form_view` VALUES("80846", "3", "2018-03-23 16:15:33", "54.36.148.205", "35");
INSERT INTO `wp_rg_form_view` VALUES("80847", "8", "2018-03-23 16:46:50", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("80848", "9", "2018-03-23 16:47:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80849", "10", "2018-03-23 16:47:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80850", "15", "2018-03-23 16:47:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80851", "18", "2018-03-23 16:47:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80852", "3", "2018-03-23 17:59:46", "207.194.133.9", "2");
INSERT INTO `wp_rg_form_view` VALUES("80853", "3", "2018-03-23 18:00:08", "207.194.133.9", "36");
INSERT INTO `wp_rg_form_view` VALUES("80854", "10", "2018-03-23 18:06:17", "216.244.66.195", "7");
INSERT INTO `wp_rg_form_view` VALUES("80855", "9", "2018-03-23 18:47:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80856", "8", "2018-03-23 18:47:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80857", "15", "2018-03-23 18:47:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80858", "18", "2018-03-23 18:47:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80859", "3", "2018-03-23 19:05:52", "134.87.140.96", "4");
INSERT INTO `wp_rg_form_view` VALUES("80860", "10", "2018-03-23 19:25:37", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("80861", "18", "2018-03-23 20:03:09", "194.187.170.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("80862", "3", "2018-03-23 20:10:30", "216.244.66.195", "34");
INSERT INTO `wp_rg_form_view` VALUES("80863", "9", "2018-03-23 20:40:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80864", "8", "2018-03-23 20:40:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80865", "10", "2018-03-23 20:40:44", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("80866", "15", "2018-03-23 20:40:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80867", "3", "2018-03-23 21:02:29", "66.249.79.135", "3");
INSERT INTO `wp_rg_form_view` VALUES("80868", "18", "2018-03-23 22:09:07", "194.187.170.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("80869", "3", "2018-03-23 22:11:34", "194.187.170.113", "39");
INSERT INTO `wp_rg_form_view` VALUES("80870", "10", "2018-03-23 22:39:03", "51.255.66.104", "7");
INSERT INTO `wp_rg_form_view` VALUES("80871", "9", "2018-03-23 22:45:42", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80872", "8", "2018-03-23 22:45:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80873", "15", "2018-03-23 22:45:48", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80874", "10", "2018-03-23 23:03:18", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("80875", "3", "2018-03-23 23:06:44", "194.187.170.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("80876", "18", "2018-03-23 23:17:31", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80877", "8", "2018-03-23 23:18:34", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80878", "3", "2018-03-24 00:00:11", "194.187.170.113", "35");
INSERT INTO `wp_rg_form_view` VALUES("80879", "18", "2018-03-24 00:22:39", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("80880", "9", "2018-03-24 00:41:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80881", "8", "2018-03-24 00:41:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80882", "10", "2018-03-24 00:41:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80883", "15", "2018-03-24 00:41:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80884", "11", "2018-03-24 00:56:12", "77.75.78.170", "1");
INSERT INTO `wp_rg_form_view` VALUES("80885", "3", "2018-03-24 01:05:42", "207.46.13.95", "9");
INSERT INTO `wp_rg_form_view` VALUES("80886", "18", "2018-03-24 01:16:08", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80887", "8", "2018-03-24 01:17:06", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80888", "10", "2018-03-24 01:58:53", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("80889", "3", "2018-03-24 02:39:28", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80890", "9", "2018-03-24 02:39:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80891", "8", "2018-03-24 02:39:29", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80892", "10", "2018-03-24 02:39:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80893", "15", "2018-03-24 02:39:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80894", "18", "2018-03-24 02:39:34", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80895", "3", "2018-03-24 03:01:05", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("80896", "10", "2018-03-24 03:55:27", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("80897", "18", "2018-03-24 04:07:04", "194.187.170.113", "2");
INSERT INTO `wp_rg_form_view` VALUES("80898", "3", "2018-03-24 04:37:11", "66.249.79.119", "33");
INSERT INTO `wp_rg_form_view` VALUES("80899", "9", "2018-03-24 04:37:17", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80900", "8", "2018-03-24 04:37:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80901", "10", "2018-03-24 04:37:18", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80902", "15", "2018-03-24 04:37:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80903", "10", "2018-03-24 05:00:05", "194.187.170.113", "3");
INSERT INTO `wp_rg_form_view` VALUES("80904", "14", "2018-03-24 05:18:17", "140.82.34.168", "4");
INSERT INTO `wp_rg_form_view` VALUES("80905", "3", "2018-03-24 05:18:20", "140.82.34.168", "2");
INSERT INTO `wp_rg_form_view` VALUES("80906", "10", "2018-03-24 06:03:27", "194.187.170.113", "6");
INSERT INTO `wp_rg_form_view` VALUES("80907", "3", "2018-03-24 06:34:27", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80908", "9", "2018-03-24 06:34:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80909", "8", "2018-03-24 06:34:28", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80910", "15", "2018-03-24 06:34:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80911", "18", "2018-03-24 06:34:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80912", "3", "2018-03-24 07:43:22", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("80913", "10", "2018-03-24 07:43:41", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80914", "3", "2018-03-24 08:01:32", "46.105.98.166", "50");
INSERT INTO `wp_rg_form_view` VALUES("80915", "14", "2018-03-24 08:02:28", "46.105.98.166", "1");
INSERT INTO `wp_rg_form_view` VALUES("80916", "18", "2018-03-24 08:02:43", "46.105.98.166", "2");
INSERT INTO `wp_rg_form_view` VALUES("80917", "9", "2018-03-24 08:04:54", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("80918", "10", "2018-03-24 08:18:29", "194.187.170.113", "8");
INSERT INTO `wp_rg_form_view` VALUES("80919", "8", "2018-03-24 08:41:50", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80920", "15", "2018-03-24 08:41:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80921", "3", "2018-03-24 09:03:42", "216.244.66.247", "11");
INSERT INTO `wp_rg_form_view` VALUES("80922", "12", "2018-03-24 09:06:20", "194.187.170.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("80923", "18", "2018-03-24 09:12:42", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80924", "3", "2018-03-24 10:39:57", "52.37.180.245", "64");
INSERT INTO `wp_rg_form_view` VALUES("80925", "9", "2018-03-24 10:39:58", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80926", "8", "2018-03-24 10:39:59", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("80927", "10", "2018-03-24 10:39:59", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("80928", "15", "2018-03-24 10:40:01", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80929", "18", "2018-03-24 10:40:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80930", "3", "2018-03-24 11:08:37", "207.46.13.113", "1");
INSERT INTO `wp_rg_form_view` VALUES("80931", "3", "2018-03-24 12:32:24", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("80932", "9", "2018-03-24 12:35:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80933", "8", "2018-03-24 12:35:57", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80934", "10", "2018-03-24 12:35:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80935", "15", "2018-03-24 12:36:00", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80936", "18", "2018-03-24 12:36:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80937", "3", "2018-03-24 13:44:50", "54.36.148.190", "1");
INSERT INTO `wp_rg_form_view` VALUES("80938", "10", "2018-03-24 14:25:30", "184.66.129.248", "6");
INSERT INTO `wp_rg_form_view` VALUES("80939", "3", "2018-03-24 14:26:20", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80940", "9", "2018-03-24 14:26:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80941", "8", "2018-03-24 14:26:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80942", "15", "2018-03-24 14:26:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80943", "18", "2018-03-24 14:26:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80944", "18", "2018-03-24 15:05:33", "184.66.27.189", "9");
INSERT INTO `wp_rg_form_view` VALUES("80945", "3", "2018-03-24 15:40:57", "216.244.66.195", "11");
INSERT INTO `wp_rg_form_view` VALUES("80946", "3", "2018-03-24 16:26:23", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("80947", "9", "2018-03-24 16:26:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80948", "8", "2018-03-24 16:26:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80949", "10", "2018-03-24 16:26:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80950", "15", "2018-03-24 16:26:28", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80951", "18", "2018-03-24 16:26:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80952", "18", "2018-03-24 17:45:53", "54.208.248.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("80953", "8", "2018-03-24 17:56:21", "54.208.248.222", "1");
INSERT INTO `wp_rg_form_view` VALUES("80954", "3", "2018-03-24 17:59:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80955", "3", "2018-03-24 18:14:59", "216.244.66.247", "34");
INSERT INTO `wp_rg_form_view` VALUES("80956", "9", "2018-03-24 18:26:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80957", "8", "2018-03-24 18:26:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80958", "10", "2018-03-24 18:26:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80959", "15", "2018-03-24 18:26:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80960", "18", "2018-03-24 18:26:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80961", "3", "2018-03-24 19:00:13", "172.218.222.155", "4");
INSERT INTO `wp_rg_form_view` VALUES("80962", "6", "2018-03-24 19:12:37", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("80963", "3", "2018-03-24 20:28:16", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("80964", "9", "2018-03-24 20:28:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80965", "8", "2018-03-24 20:28:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80966", "10", "2018-03-24 20:28:19", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80967", "15", "2018-03-24 20:28:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80968", "18", "2018-03-24 20:28:24", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("80969", "3", "2018-03-24 21:17:12", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80970", "10", "2018-03-24 21:17:47", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("80971", "3", "2018-03-24 22:08:40", "46.229.168.67", "41");
INSERT INTO `wp_rg_form_view` VALUES("80972", "8", "2018-03-24 22:14:53", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("80973", "9", "2018-03-24 22:36:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80974", "10", "2018-03-24 22:36:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80975", "15", "2018-03-24 22:36:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80976", "18", "2018-03-24 22:36:30", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80977", "3", "2018-03-24 23:13:40", "180.76.15.16", "2");
INSERT INTO `wp_rg_form_view` VALUES("80978", "10", "2018-03-24 23:37:04", "72.14.199.21", "1");
INSERT INTO `wp_rg_form_view` VALUES("80979", "18", "2018-03-24 23:47:05", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("80980", "3", "2018-03-25 00:31:53", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("80981", "9", "2018-03-25 00:31:54", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80982", "8", "2018-03-25 00:31:54", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80983", "10", "2018-03-25 00:31:55", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80984", "15", "2018-03-25 00:31:57", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80985", "18", "2018-03-25 00:31:59", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80986", "3", "2018-03-25 01:22:44", "216.244.66.195", "14");
INSERT INTO `wp_rg_form_view` VALUES("80987", "10", "2018-03-25 01:55:42", "207.46.13.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("80988", "6", "2018-03-25 01:55:47", "207.46.13.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("80989", "8", "2018-03-25 01:56:34", "207.46.13.128", "2");
INSERT INTO `wp_rg_form_view` VALUES("80990", "15", "2018-03-25 01:57:15", "207.46.13.128", "1");
INSERT INTO `wp_rg_form_view` VALUES("80991", "9", "2018-03-25 01:59:12", "40.77.167.99", "1");
INSERT INTO `wp_rg_form_view` VALUES("80992", "3", "2018-03-25 02:04:57", "24.108.194.40", "34");
INSERT INTO `wp_rg_form_view` VALUES("80993", "18", "2018-03-25 02:09:25", "184.66.27.189", "8");
INSERT INTO `wp_rg_form_view` VALUES("80994", "9", "2018-03-25 02:40:47", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80995", "8", "2018-03-25 02:40:48", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("80996", "10", "2018-03-25 02:40:48", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("80997", "15", "2018-03-25 02:40:51", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("80998", "3", "2018-03-25 03:19:13", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("80999", "18", "2018-03-25 03:57:55", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("81000", "18", "2018-03-25 04:06:33", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("81001", "14", "2018-03-25 04:29:26", "196.247.229.225", "1");
INSERT INTO `wp_rg_form_view` VALUES("81002", "3", "2018-03-25 04:29:51", "52.37.180.245", "67");
INSERT INTO `wp_rg_form_view` VALUES("81003", "9", "2018-03-25 04:29:51", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81004", "8", "2018-03-25 04:29:52", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81005", "10", "2018-03-25 04:29:52", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("81006", "15", "2018-03-25 04:29:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81007", "18", "2018-03-25 05:27:25", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81008", "3", "2018-03-25 05:39:54", "103.207.39.170", "9");
INSERT INTO `wp_rg_form_view` VALUES("81009", "3", "2018-03-25 06:30:15", "139.162.246.24", "34");
INSERT INTO `wp_rg_form_view` VALUES("81010", "9", "2018-03-25 06:45:53", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81011", "8", "2018-03-25 06:45:53", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81012", "10", "2018-03-25 06:45:54", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81013", "15", "2018-03-25 06:45:56", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81014", "18", "2018-03-25 06:45:58", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81015", "3", "2018-03-25 07:07:29", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("81016", "3", "2018-03-25 08:06:22", "157.55.39.187", "33");
INSERT INTO `wp_rg_form_view` VALUES("81017", "9", "2018-03-25 08:50:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81018", "8", "2018-03-25 08:50:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81019", "10", "2018-03-25 08:50:57", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81020", "15", "2018-03-25 08:51:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81021", "18", "2018-03-25 08:51:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81022", "3", "2018-03-25 09:55:05", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("81023", "3", "2018-03-25 10:56:13", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("81024", "9", "2018-03-25 10:56:14", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81025", "8", "2018-03-25 10:56:15", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81026", "10", "2018-03-25 10:56:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81027", "15", "2018-03-25 10:56:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81028", "18", "2018-03-25 10:56:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81029", "18", "2018-03-25 11:10:24", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("81030", "3", "2018-03-25 11:25:10", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("81031", "10", "2018-03-25 11:44:28", "72.14.199.19", "1");
INSERT INTO `wp_rg_form_view` VALUES("81032", "3", "2018-03-25 12:07:45", "54.36.148.23", "2");
INSERT INTO `wp_rg_form_view` VALUES("81033", "3", "2018-03-25 13:05:30", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("81034", "9", "2018-03-25 13:05:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81035", "8", "2018-03-25 13:05:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81036", "10", "2018-03-25 13:05:33", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("81037", "15", "2018-03-25 13:05:36", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81038", "18", "2018-03-25 13:05:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81039", "3", "2018-03-25 14:00:17", "146.185.223.150", "4");
INSERT INTO `wp_rg_form_view` VALUES("81040", "10", "2018-03-25 14:26:10", "184.66.129.248", "1");
INSERT INTO `wp_rg_form_view` VALUES("81041", "3", "2018-03-25 15:06:28", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("81042", "9", "2018-03-25 15:06:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81043", "8", "2018-03-25 15:06:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81044", "10", "2018-03-25 15:06:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81045", "15", "2018-03-25 15:06:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81046", "18", "2018-03-25 15:06:36", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81047", "3", "2018-03-25 16:13:45", "54.36.149.53", "2");
INSERT INTO `wp_rg_form_view` VALUES("81048", "11", "2018-03-25 16:19:27", "157.55.39.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("81049", "10", "2018-03-25 16:22:47", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("81050", "3", "2018-03-25 17:01:02", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("81051", "9", "2018-03-25 17:01:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81052", "8", "2018-03-25 17:01:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81053", "10", "2018-03-25 17:01:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81054", "15", "2018-03-25 17:01:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81055", "18", "2018-03-25 17:01:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81056", "10", "2018-03-25 18:08:19", "216.244.66.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("81057", "3", "2018-03-25 18:08:53", "216.244.66.247", "69");
INSERT INTO `wp_rg_form_view` VALUES("81058", "9", "2018-03-25 18:09:11", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("81059", "8", "2018-03-25 18:09:11", "216.244.66.247", "4");
INSERT INTO `wp_rg_form_view` VALUES("81060", "15", "2018-03-25 18:09:15", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("81061", "18", "2018-03-25 18:09:17", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("81062", "14", "2018-03-25 18:11:48", "23.250.23.104", "5");
INSERT INTO `wp_rg_form_view` VALUES("81063", "3", "2018-03-25 19:03:39", "139.162.246.24", "4");
INSERT INTO `wp_rg_form_view` VALUES("81064", "3", "2018-03-25 20:45:40", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("81065", "9", "2018-03-25 20:52:16", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81066", "8", "2018-03-25 20:52:17", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81067", "10", "2018-03-25 20:52:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81068", "15", "2018-03-25 20:52:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81069", "18", "2018-03-25 20:52:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81070", "3", "2018-03-25 21:09:38", "184.151.231.163", "4");
INSERT INTO `wp_rg_form_view` VALUES("81071", "18", "2018-03-25 21:18:42", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81072", "8", "2018-03-25 21:44:15", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("81073", "10", "2018-03-25 22:36:53", "199.16.157.180", "6");
INSERT INTO `wp_rg_form_view` VALUES("81074", "3", "2018-03-25 22:39:47", "192.158.231.99", "40");
INSERT INTO `wp_rg_form_view` VALUES("81075", "9", "2018-03-25 22:47:18", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81076", "8", "2018-03-25 22:47:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81077", "15", "2018-03-25 22:47:22", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81078", "18", "2018-03-25 22:47:24", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81079", "18", "2018-03-25 23:13:33", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("81080", "3", "2018-03-25 23:27:25", "216.244.66.195", "4");
INSERT INTO `wp_rg_form_view` VALUES("81081", "14", "2018-03-26 00:00:08", "96.54.230.222", "3");
INSERT INTO `wp_rg_form_view` VALUES("81082", "10", "2018-03-26 00:17:05", "216.244.66.247", "12");
INSERT INTO `wp_rg_form_view` VALUES("81083", "3", "2018-03-26 00:24:53", "139.162.246.24", "65");
INSERT INTO `wp_rg_form_view` VALUES("81084", "9", "2018-03-26 00:37:18", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81085", "8", "2018-03-26 00:37:18", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81086", "15", "2018-03-26 00:37:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81087", "18", "2018-03-26 00:37:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81088", "3", "2018-03-26 01:49:48", "154.20.46.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("81089", "3", "2018-03-26 02:26:06", "216.244.66.195", "33");
INSERT INTO `wp_rg_form_view` VALUES("81090", "15", "2018-03-26 02:26:24", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("81091", "9", "2018-03-26 02:46:20", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81092", "8", "2018-03-26 02:46:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81093", "10", "2018-03-26 02:46:22", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81094", "18", "2018-03-26 02:46:31", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81095", "3", "2018-03-26 03:20:32", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("81096", "10", "2018-03-26 03:20:45", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("81097", "8", "2018-03-26 03:47:17", "95.216.0.58", "2");
INSERT INTO `wp_rg_form_view` VALUES("81098", "18", "2018-03-26 03:48:46", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81099", "3", "2018-03-26 04:08:02", "24.68.248.211", "66");
INSERT INTO `wp_rg_form_view` VALUES("81100", "10", "2018-03-26 04:25:56", "66.249.79.133", "11");
INSERT INTO `wp_rg_form_view` VALUES("81101", "9", "2018-03-26 04:44:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81102", "8", "2018-03-26 04:44:16", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81103", "15", "2018-03-26 04:44:19", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81104", "18", "2018-03-26 04:44:22", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81105", "18", "2018-03-26 05:36:30", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81106", "9", "2018-03-26 05:41:45", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("81107", "3", "2018-03-26 06:51:39", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("81108", "9", "2018-03-26 06:51:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81109", "8", "2018-03-26 06:51:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81110", "10", "2018-03-26 06:51:41", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("81111", "15", "2018-03-26 06:51:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81112", "18", "2018-03-26 06:51:46", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81113", "18", "2018-03-26 08:22:38", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81114", "3", "2018-03-26 08:42:22", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("81115", "9", "2018-03-26 08:42:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81116", "8", "2018-03-26 08:42:23", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81117", "10", "2018-03-26 08:42:24", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("81118", "15", "2018-03-26 08:42:26", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81119", "18", "2018-03-26 09:39:27", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("81120", "3", "2018-03-26 10:11:00", "216.244.66.247", "33");
INSERT INTO `wp_rg_form_view` VALUES("81121", "9", "2018-03-26 10:32:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81122", "8", "2018-03-26 10:32:30", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81123", "10", "2018-03-26 10:32:31", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81124", "15", "2018-03-26 10:32:32", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81125", "18", "2018-03-26 10:32:34", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81126", "3", "2018-03-26 11:17:41", "139.162.246.24", "1");
INSERT INTO `wp_rg_form_view` VALUES("81127", "3", "2018-03-26 12:07:32", "216.244.66.195", "67");
INSERT INTO `wp_rg_form_view` VALUES("81128", "8", "2018-03-26 12:11:49", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("81129", "9", "2018-03-26 12:25:02", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81130", "10", "2018-03-26 12:25:03", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("81131", "15", "2018-03-26 12:25:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81132", "18", "2018-03-26 12:25:08", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81133", "3", "2018-03-26 14:22:05", "52.37.180.245", "35");
INSERT INTO `wp_rg_form_view` VALUES("81134", "9", "2018-03-26 14:22:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81135", "8", "2018-03-26 14:22:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81136", "10", "2018-03-26 14:22:08", "52.37.180.245", "6");
INSERT INTO `wp_rg_form_view` VALUES("81137", "15", "2018-03-26 14:22:11", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81138", "18", "2018-03-26 14:22:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81139", "10", "2018-03-26 15:18:57", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("81140", "3", "2018-03-26 15:19:35", "216.244.66.195", "5");
INSERT INTO `wp_rg_form_view` VALUES("81141", "18", "2018-03-26 15:21:13", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("81142", "3", "2018-03-26 16:11:53", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("81143", "9", "2018-03-26 16:11:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81144", "8", "2018-03-26 16:11:55", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81145", "10", "2018-03-26 16:11:56", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("81146", "15", "2018-03-26 16:11:59", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81147", "18", "2018-03-26 16:12:02", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81148", "14", "2018-03-26 16:25:06", "172.218.233.62", "1");
INSERT INTO `wp_rg_form_view` VALUES("81149", "3", "2018-03-26 17:30:17", "216.244.66.195", "2");
INSERT INTO `wp_rg_form_view` VALUES("81150", "3", "2018-03-26 18:10:04", "52.37.180.245", "72");
INSERT INTO `wp_rg_form_view` VALUES("81151", "9", "2018-03-26 18:10:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81152", "8", "2018-03-26 18:10:06", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81153", "10", "2018-03-26 18:10:06", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("81154", "15", "2018-03-26 18:10:09", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81155", "18", "2018-03-26 18:10:12", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81156", "3", "2018-03-26 19:44:19", "66.249.79.135", "1");
INSERT INTO `wp_rg_form_view` VALUES("81157", "3", "2018-03-26 20:16:28", "52.37.180.245", "38");
INSERT INTO `wp_rg_form_view` VALUES("81158", "9", "2018-03-26 20:16:29", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81159", "8", "2018-03-26 20:16:29", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("81160", "10", "2018-03-26 20:16:30", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81161", "15", "2018-03-26 20:16:33", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81162", "18", "2018-03-26 20:16:35", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("81163", "18", "2018-03-26 21:10:28", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("81164", "3", "2018-03-26 21:51:28", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("81165", "3", "2018-03-26 22:20:15", "52.37.180.245", "34");
INSERT INTO `wp_rg_form_view` VALUES("81166", "9", "2018-03-26 22:20:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81167", "8", "2018-03-26 22:20:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81168", "10", "2018-03-26 22:20:17", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81169", "15", "2018-03-26 22:20:19", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81170", "18", "2018-03-26 22:20:21", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81171", "18", "2018-03-26 23:01:03", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("81172", "14", "2018-03-26 23:48:59", "216.232.153.68", "1");
INSERT INTO `wp_rg_form_view` VALUES("81173", "3", "2018-03-26 23:56:49", "216.244.66.247", "1");
INSERT INTO `wp_rg_form_view` VALUES("81174", "3", "2018-03-27 00:22:03", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("81175", "9", "2018-03-27 00:22:04", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81176", "8", "2018-03-27 00:22:05", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81177", "10", "2018-03-27 00:22:05", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81178", "15", "2018-03-27 00:22:07", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81179", "18", "2018-03-27 00:22:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81180", "3", "2018-03-27 01:35:55", "94.177.244.201", "8");
INSERT INTO `wp_rg_form_view` VALUES("81181", "10", "2018-03-27 02:14:40", "35.153.231.209", "6");
INSERT INTO `wp_rg_form_view` VALUES("81182", "3", "2018-03-27 02:24:37", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("81183", "9", "2018-03-27 02:24:38", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81184", "8", "2018-03-27 02:24:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81185", "15", "2018-03-27 02:24:41", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81186", "18", "2018-03-27 02:24:43", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81187", "3", "2018-03-27 03:03:05", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("81188", "10", "2018-03-27 03:03:24", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("81189", "18", "2018-03-27 03:25:34", "35.153.231.209", "1");
INSERT INTO `wp_rg_form_view` VALUES("81190", "3", "2018-03-27 04:19:04", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("81191", "9", "2018-03-27 04:19:05", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81192", "8", "2018-03-27 04:19:05", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("81193", "10", "2018-03-27 04:19:06", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81194", "15", "2018-03-27 04:19:08", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81195", "18", "2018-03-27 04:19:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81196", "14", "2018-03-27 04:35:11", "184.66.233.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("81197", "3", "2018-03-27 05:07:44", "216.244.66.195", "6");
INSERT INTO `wp_rg_form_view` VALUES("81198", "10", "2018-03-27 05:08:00", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("81199", "18", "2018-03-27 05:53:19", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("81200", "14", "2018-03-27 06:04:26", "184.66.233.165", "1");
INSERT INTO `wp_rg_form_view` VALUES("81201", "9", "2018-03-27 06:05:21", "216.244.66.247", "2");
INSERT INTO `wp_rg_form_view` VALUES("81202", "3", "2018-03-27 06:05:36", "216.244.66.247", "36");
INSERT INTO `wp_rg_form_view` VALUES("81203", "10", "2018-03-27 06:08:24", "72.14.199.71", "6");
INSERT INTO `wp_rg_form_view` VALUES("81204", "8", "2018-03-27 06:12:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81205", "15", "2018-03-27 06:12:13", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81206", "18", "2018-03-27 06:12:15", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81207", "14", "2018-03-27 07:27:56", "190.205.45.26", "3");
INSERT INTO `wp_rg_form_view` VALUES("81208", "18", "2018-03-27 07:28:48", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("81209", "14", "2018-03-27 08:02:54", "176.53.248.63", "1");
INSERT INTO `wp_rg_form_view` VALUES("81210", "3", "2018-03-27 08:03:48", "96.54.241.191", "34");
INSERT INTO `wp_rg_form_view` VALUES("81211", "9", "2018-03-27 08:07:03", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81212", "8", "2018-03-27 08:07:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81213", "10", "2018-03-27 08:07:04", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81214", "15", "2018-03-27 08:07:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81215", "18", "2018-03-27 08:07:09", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81216", "18", "2018-03-27 09:46:51", "184.66.27.189", "1");
INSERT INTO `wp_rg_form_view` VALUES("81217", "3", "2018-03-27 10:06:51", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("81218", "9", "2018-03-27 10:06:52", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81219", "8", "2018-03-27 10:06:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81220", "10", "2018-03-27 10:06:53", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81221", "15", "2018-03-27 10:06:55", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81222", "18", "2018-03-27 10:06:57", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("81223", "3", "2018-03-27 11:07:59", "216.244.66.195", "43");
INSERT INTO `wp_rg_form_view` VALUES("81224", "18", "2018-03-27 11:50:49", "194.187.170.140", "2");
INSERT INTO `wp_rg_form_view` VALUES("81225", "9", "2018-03-27 11:56:39", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81226", "8", "2018-03-27 11:56:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81227", "10", "2018-03-27 11:56:41", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81228", "15", "2018-03-27 11:56:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81229", "3", "2018-03-27 12:09:14", "146.185.223.150", "5");
INSERT INTO `wp_rg_form_view` VALUES("81230", "3", "2018-03-27 13:47:06", "216.244.66.195", "1");
INSERT INTO `wp_rg_form_view` VALUES("81231", "3", "2018-03-27 14:01:22", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("81232", "9", "2018-03-27 14:01:23", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81233", "8", "2018-03-27 14:01:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81234", "10", "2018-03-27 14:01:25", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81235", "15", "2018-03-27 14:01:27", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81236", "18", "2018-03-27 14:01:29", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("81237", "18", "2018-03-27 15:22:36", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81238", "3", "2018-03-27 15:57:10", "52.37.180.245", "65");
INSERT INTO `wp_rg_form_view` VALUES("81239", "9", "2018-03-27 15:57:11", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81240", "8", "2018-03-27 15:57:11", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81241", "10", "2018-03-27 15:57:12", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("81242", "15", "2018-03-27 15:57:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81243", "14", "2018-03-27 17:21:42", "184.66.49.231", "1");
INSERT INTO `wp_rg_form_view` VALUES("81244", "3", "2018-03-27 17:56:01", "52.37.180.245", "33");
INSERT INTO `wp_rg_form_view` VALUES("81245", "9", "2018-03-27 17:56:02", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81246", "8", "2018-03-27 17:56:03", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81247", "10", "2018-03-27 17:56:04", "52.37.180.245", "7");
INSERT INTO `wp_rg_form_view` VALUES("81248", "15", "2018-03-27 17:56:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81249", "18", "2018-03-27 17:56:08", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("81250", "18", "2018-03-27 18:48:06", "66.246.224.11", "1");
INSERT INTO `wp_rg_form_view` VALUES("81251", "3", "2018-03-27 19:00:46", "24.68.248.211", "50");
INSERT INTO `wp_rg_form_view` VALUES("81252", "14", "2018-03-27 19:08:04", "159.65.133.29", "1");
INSERT INTO `wp_rg_form_view` VALUES("81253", "18", "2018-03-27 19:51:05", "194.187.170.122", "2");
INSERT INTO `wp_rg_form_view` VALUES("81254", "9", "2018-03-27 19:56:06", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81255", "8", "2018-03-27 19:56:07", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81256", "10", "2018-03-27 19:56:08", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81257", "15", "2018-03-27 19:56:10", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81258", "18", "2018-03-27 20:03:31", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81259", "10", "2018-03-27 20:26:31", "72.14.199.73", "1");
INSERT INTO `wp_rg_form_view` VALUES("81260", "3", "2018-03-27 20:34:10", "24.68.248.211", "2");
INSERT INTO `wp_rg_form_view` VALUES("81261", "3", "2018-03-27 21:15:55", "216.244.66.195", "48");
INSERT INTO `wp_rg_form_view` VALUES("81262", "14", "2018-03-27 21:16:21", "104.223.70.228", "3");
INSERT INTO `wp_rg_form_view` VALUES("81263", "9", "2018-03-27 21:54:37", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81264", "8", "2018-03-27 21:54:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81265", "10", "2018-03-27 21:54:38", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81266", "15", "2018-03-27 21:54:40", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81267", "18", "2018-03-27 21:54:43", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81268", "18", "2018-03-27 22:14:49", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81269", "3", "2018-03-27 22:25:55", "184.69.96.50", "38");
INSERT INTO `wp_rg_form_view` VALUES("81270", "11", "2018-03-27 22:27:26", "184.69.96.50", "1");
INSERT INTO `wp_rg_form_view` VALUES("81271", "3", "2018-03-27 23:07:45", "66.246.224.11", "39");
INSERT INTO `wp_rg_form_view` VALUES("81272", "18", "2018-03-27 23:25:05", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("81273", "9", "2018-03-27 23:55:35", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("81274", "8", "2018-03-27 23:55:35", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81275", "10", "2018-03-27 23:55:36", "52.37.180.245", "10");
INSERT INTO `wp_rg_form_view` VALUES("81276", "15", "2018-03-27 23:55:38", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81277", "3", "2018-03-28 00:07:50", "66.246.224.11", "42");
INSERT INTO `wp_rg_form_view` VALUES("81278", "18", "2018-03-28 00:08:02", "184.66.27.189", "3");
INSERT INTO `wp_rg_form_view` VALUES("81279", "14", "2018-03-28 00:58:23", "45.57.163.166", "5");
INSERT INTO `wp_rg_form_view` VALUES("81280", "3", "2018-03-28 01:33:21", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("81281", "18", "2018-03-28 01:57:00", "184.66.27.189", "2");
INSERT INTO `wp_rg_form_view` VALUES("81282", "3", "2018-03-28 02:03:31", "52.37.180.245", "32");
INSERT INTO `wp_rg_form_view` VALUES("81283", "9", "2018-03-28 02:03:32", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81284", "8", "2018-03-28 02:03:33", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81285", "10", "2018-03-28 02:03:33", "52.37.180.245", "13");
INSERT INTO `wp_rg_form_view` VALUES("81286", "15", "2018-03-28 02:03:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81287", "18", "2018-03-28 02:03:37", "52.37.180.245", "3");
INSERT INTO `wp_rg_form_view` VALUES("81288", "3", "2018-03-28 03:42:33", "216.244.66.195", "66");
INSERT INTO `wp_rg_form_view` VALUES("81289", "9", "2018-03-28 03:59:21", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81290", "8", "2018-03-28 03:59:21", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81291", "10", "2018-03-28 03:59:22", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("81292", "15", "2018-03-28 03:59:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81293", "18", "2018-03-28 03:59:26", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81294", "3", "2018-03-28 04:48:34", "24.68.117.202", "34");
INSERT INTO `wp_rg_form_view` VALUES("81295", "18", "2018-03-28 04:54:36", "184.66.27.189", "4");
INSERT INTO `wp_rg_form_view` VALUES("81296", "3", "2018-03-28 05:12:10", "24.68.117.202", "47");
INSERT INTO `wp_rg_form_view` VALUES("81297", "10", "2018-03-28 05:16:53", "184.66.129.248", "18");
INSERT INTO `wp_rg_form_view` VALUES("81298", "9", "2018-03-28 05:37:37", "40.77.167.179", "4");
INSERT INTO `wp_rg_form_view` VALUES("81299", "8", "2018-03-28 05:40:43", "40.77.167.39", "5");
INSERT INTO `wp_rg_form_view` VALUES("81300", "15", "2018-03-28 05:53:40", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81301", "18", "2018-03-28 05:53:42", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81302", "14", "2018-03-28 06:54:28", "165.73.246.238", "2");
INSERT INTO `wp_rg_form_view` VALUES("81303", "10", "2018-03-28 07:14:17", "216.244.66.195", "12");
INSERT INTO `wp_rg_form_view` VALUES("81304", "3", "2018-03-28 07:53:20", "52.37.180.245", "66");
INSERT INTO `wp_rg_form_view` VALUES("81305", "9", "2018-03-28 07:53:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81306", "8", "2018-03-28 07:53:21", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81307", "15", "2018-03-28 07:53:24", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81308", "18", "2018-03-28 07:53:26", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81309", "3", "2018-03-28 09:53:33", "52.37.180.245", "68");
INSERT INTO `wp_rg_form_view` VALUES("81310", "9", "2018-03-28 09:53:35", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81311", "8", "2018-03-28 09:53:37", "52.37.180.245", "4");
INSERT INTO `wp_rg_form_view` VALUES("81312", "10", "2018-03-28 09:53:39", "52.37.180.245", "11");
INSERT INTO `wp_rg_form_view` VALUES("81313", "15", "2018-03-28 09:53:45", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81314", "18", "2018-03-28 09:53:52", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81315", "10", "2018-03-28 11:06:42", "72.14.199.19", "12");
INSERT INTO `wp_rg_form_view` VALUES("81316", "3", "2018-03-28 11:24:57", "194.187.170.138", "71");
INSERT INTO `wp_rg_form_view` VALUES("81317", "18", "2018-03-28 11:43:24", "194.187.170.138", "3");
INSERT INTO `wp_rg_form_view` VALUES("81318", "9", "2018-03-28 11:52:16", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81319", "8", "2018-03-28 11:52:16", "52.37.180.245", "5");
INSERT INTO `wp_rg_form_view` VALUES("81320", "15", "2018-03-28 11:52:20", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81321", "3", "2018-03-28 12:26:26", "216.244.66.247", "44");
INSERT INTO `wp_rg_form_view` VALUES("81322", "18", "2018-03-28 12:48:56", "194.187.170.138", "2");
INSERT INTO `wp_rg_form_view` VALUES("81323", "14", "2018-03-28 13:05:46", "196.247.235.232", "4");
INSERT INTO `wp_rg_form_view` VALUES("81324", "9", "2018-03-28 13:12:17", "216.244.66.195", "3");
INSERT INTO `wp_rg_form_view` VALUES("81325", "3", "2018-03-28 13:13:02", "216.244.66.195", "47");
INSERT INTO `wp_rg_form_view` VALUES("81326", "8", "2018-03-28 13:14:23", "139.162.246.24", "6");
INSERT INTO `wp_rg_form_view` VALUES("81327", "10", "2018-03-28 13:17:30", "194.187.170.138", "11");
INSERT INTO `wp_rg_form_view` VALUES("81328", "15", "2018-03-28 13:54:33", "52.37.180.245", "2");
INSERT INTO `wp_rg_form_view` VALUES("81329", "18", "2018-03-28 13:54:35", "52.37.180.245", "1");
INSERT INTO `wp_rg_form_view` VALUES("81330", "3", "2018-03-28 14:20:27", "5.9.61.111", "4");
INSERT INTO `wp_rg_form_view` VALUES("81331", "10", "2018-03-28 14:25:25", "184.66.129.248", "2");
INSERT INTO `wp_rg_form_view` VALUES("81332", "8", "2018-03-28 14:57:28", "216.244.66.247", "3");
INSERT INTO `wp_rg_form_view` VALUES("81333", "3", "2018-03-28 15:32:08", "216.244.66.195", "35");
INSERT INTO `wp_rg_form_view` VALUES("81334", "16", "2018-03-29 12:19:55", "", "1");
INSERT INTO `wp_rg_form_view` VALUES("81335", "9", "2018-03-29 14:40:18", "", "18");
INSERT INTO `wp_rg_form_view` VALUES("81336", "10", "2018-03-29 14:40:18", "", "106");
INSERT INTO `wp_rg_form_view` VALUES("81337", "15", "2018-03-29 14:40:19", "", "20");
INSERT INTO `wp_rg_form_view` VALUES("81338", "18", "2018-03-29 14:40:20", "", "34");
INSERT INTO `wp_rg_form_view` VALUES("81339", "8", "2018-03-29 15:03:21", "", "35");
INSERT INTO `wp_rg_form_view` VALUES("81340", "3", "2018-03-29 15:48:18", "", "627");
INSERT INTO `wp_rg_form_view` VALUES("81341", "14", "2018-03-29 18:50:10", "", "3");
INSERT INTO `wp_rg_form_view` VALUES("81342", "6", "2018-03-30 10:59:11", "", "1");
INSERT INTO `wp_rg_form_view` VALUES("81343", "9", "2018-03-30 15:18:10", "", "12");
INSERT INTO `wp_rg_form_view` VALUES("81344", "8", "2018-03-30 15:18:11", "", "26");
INSERT INTO `wp_rg_form_view` VALUES("81345", "10", "2018-03-30 15:18:11", "", "66");
INSERT INTO `wp_rg_form_view` VALUES("81346", "15", "2018-03-30 15:18:12", "", "14");
INSERT INTO `wp_rg_form_view` VALUES("81347", "18", "2018-03-30 15:18:13", "", "24");
INSERT INTO `wp_rg_form_view` VALUES("81348", "3", "2018-03-30 16:40:59", "", "878");
INSERT INTO `wp_rg_form_view` VALUES("81349", "14", "2018-03-30 21:31:18", "", "6");
INSERT INTO `wp_rg_form_view` VALUES("81350", "11", "2018-03-31 12:27:44", "", "1");
INSERT INTO `wp_rg_form_view` VALUES("81351", "18", "2018-03-31 15:29:26", "", "32");
INSERT INTO `wp_rg_form_view` VALUES("81352", "9", "2018-03-31 16:03:51", "", "23");
INSERT INTO `wp_rg_form_view` VALUES("81353", "8", "2018-03-31 16:03:52", "", "46");
INSERT INTO `wp_rg_form_view` VALUES("81354", "10", "2018-03-31 16:03:52", "", "118");
INSERT INTO `wp_rg_form_view` VALUES("81355", "15", "2018-03-31 16:03:54", "", "24");
INSERT INTO `wp_rg_form_view` VALUES("81356", "3", "2018-03-31 18:13:11", "", "884");
INSERT INTO `wp_rg_form_view` VALUES("81357", "14", "2018-04-01 00:33:33", "", "5");
INSERT INTO `wp_rg_form_view` VALUES("81358", "18", "2018-04-01 15:33:43", "", "42");
INSERT INTO `wp_rg_form_view` VALUES("81359", "11", "2018-04-01 15:38:49", "", "1");
INSERT INTO `wp_rg_form_view` VALUES("81360", "9", "2018-04-01 16:18:54", "", "27");
INSERT INTO `wp_rg_form_view` VALUES("81361", "8", "2018-04-01 16:18:54", "", "56");
INSERT INTO `wp_rg_form_view` VALUES("81362", "10", "2018-04-01 16:18:54", "", "139");
INSERT INTO `wp_rg_form_view` VALUES("81363", "15", "2018-04-01 16:18:55", "", "26");
INSERT INTO `wp_rg_form_view` VALUES("81364", "3", "2018-04-01 18:23:13", "", "860");
INSERT INTO `wp_rg_form_view` VALUES("81365", "6", "2018-04-02 08:42:42", "", "1");
INSERT INTO `wp_rg_form_view` VALUES("81366", "14", "2018-04-02 10:51:59", "", "5");
INSERT INTO `wp_rg_form_view` VALUES("81367", "18", "2018-04-02 15:43:20", "", "50");
INSERT INTO `wp_rg_form_view` VALUES("81368", "10", "2018-04-02 16:18:58", "", "133");
INSERT INTO `wp_rg_form_view` VALUES("81369", "9", "2018-04-02 17:23:54", "", "24");
INSERT INTO `wp_rg_form_view` VALUES("81370", "8", "2018-04-02 17:23:55", "", "58");
INSERT INTO `wp_rg_form_view` VALUES("81371", "15", "2018-04-02 17:23:56", "", "25");
INSERT INTO `wp_rg_form_view` VALUES("81372", "12", "2018-04-02 17:30:29", "", "3");
INSERT INTO `wp_rg_form_view` VALUES("81373", "3", "2018-04-02 18:59:13", "", "945");
INSERT INTO `wp_rg_form_view` VALUES("81374", "5", "2018-04-02 19:14:48", "", "2");
INSERT INTO `wp_rg_form_view` VALUES("81375", "18", "2018-04-03 16:14:42", "", "56");
INSERT INTO `wp_rg_form_view` VALUES("81376", "10", "2018-04-03 16:33:40", "", "153");
INSERT INTO `wp_rg_form_view` VALUES("81377", "9", "2018-04-03 18:06:30", "", "27");
INSERT INTO `wp_rg_form_view` VALUES("81378", "8", "2018-04-03 18:06:30", "", "66");
INSERT INTO `wp_rg_form_view` VALUES("81379", "15", "2018-04-03 18:06:31", "", "27");
INSERT INTO `wp_rg_form_view` VALUES("81380", "3", "2018-04-03 18:59:54", "", "1011");
INSERT INTO `wp_rg_form_view` VALUES("81381", "14", "2018-04-03 19:43:03", "", "9");
INSERT INTO `wp_rg_form_view` VALUES("81382", "11", "2018-04-04 15:33:34", "", "2");
INSERT INTO `wp_rg_form_view` VALUES("81383", "18", "2018-04-04 16:33:02", "", "42");
INSERT INTO `wp_rg_form_view` VALUES("81384", "10", "2018-04-04 16:54:35", "", "128");
INSERT INTO `wp_rg_form_view` VALUES("81385", "9", "2018-04-04 18:54:32", "", "24");
INSERT INTO `wp_rg_form_view` VALUES("81386", "8", "2018-04-04 18:54:33", "", "56");
INSERT INTO `wp_rg_form_view` VALUES("81387", "15", "2018-04-04 18:54:34", "", "25");
INSERT INTO `wp_rg_form_view` VALUES("81388", "3", "2018-04-04 19:02:41", "", "894");
INSERT INTO `wp_rg_form_view` VALUES("81389", "6", "2018-04-04 20:16:12", "", "2");
INSERT INTO `wp_rg_form_view` VALUES("81390", "12", "2018-04-04 21:00:40", "", "1");
INSERT INTO `wp_rg_form_view` VALUES("81391", "14", "2018-04-04 22:19:34", "", "4");
INSERT INTO `wp_rg_form_view` VALUES("81392", "5", "2018-04-04 22:51:38", "", "1");
INSERT INTO `wp_rg_form_view` VALUES("81393", "10", "2018-04-05 17:04:13", "", "26");
INSERT INTO `wp_rg_form_view` VALUES("81394", "18", "2018-04-05 17:04:15", "", "8");
INSERT INTO `wp_rg_form_view` VALUES("81395", "3", "2018-04-05 19:04:42", "", "70");
INSERT INTO `wp_rg_form_view` VALUES("81396", "9", "2018-04-05 19:24:35", "", "2");
INSERT INTO `wp_rg_form_view` VALUES("81397", "8", "2018-04-05 19:24:35", "", "4");
INSERT INTO `wp_rg_form_view` VALUES("81398", "15", "2018-04-05 19:24:36", "", "2");
INSERT INTO `wp_rg_form_view` VALUES("81399", "3", "2018-04-23 16:29:57", "", "841");
INSERT INTO `wp_rg_form_view` VALUES("81400", "9", "2018-04-23 16:29:57", "", "26");
INSERT INTO `wp_rg_form_view` VALUES("81401", "8", "2018-04-23 16:29:57", "", "52");
INSERT INTO `wp_rg_form_view` VALUES("81402", "10", "2018-04-23 16:29:58", "", "131");
INSERT INTO `wp_rg_form_view` VALUES("81403", "15", "2018-04-23 16:29:59", "", "26");
INSERT INTO `wp_rg_form_view` VALUES("81404", "18", "2018-04-23 16:30:00", "", "36");
INSERT INTO `wp_rg_form_view` VALUES("81405", "14", "2018-04-23 22:34:11", "", "10");
INSERT INTO `wp_rg_form_view` VALUES("81406", "3", "2018-04-24 16:50:57", "", "754");
INSERT INTO `wp_rg_form_view` VALUES("81407", "9", "2018-04-24 16:50:58", "", "23");
INSERT INTO `wp_rg_form_view` VALUES("81408", "8", "2018-04-24 16:50:58", "", "47");
INSERT INTO `wp_rg_form_view` VALUES("81409", "10", "2018-04-24 16:50:59", "", "119");
INSERT INTO `wp_rg_form_view` VALUES("81410", "15", "2018-04-24 16:50:59", "", "23");
INSERT INTO `wp_rg_form_view` VALUES("81411", "18", "2018-04-24 16:51:00", "", "41");
INSERT INTO `wp_rg_form_view` VALUES("81412", "14", "2018-04-25 03:15:35", "", "9");
INSERT INTO `wp_rg_form_view` VALUES("81413", "3", "2018-04-25 17:55:36", "", "714");
INSERT INTO `wp_rg_form_view` VALUES("81414", "18", "2018-04-25 18:14:20", "", "39");
INSERT INTO `wp_rg_form_view` VALUES("81415", "9", "2018-04-25 18:28:04", "", "22");
INSERT INTO `wp_rg_form_view` VALUES("81416", "8", "2018-04-25 18:28:05", "", "45");
INSERT INTO `wp_rg_form_view` VALUES("81417", "10", "2018-04-25 18:28:05", "", "115");
INSERT INTO `wp_rg_form_view` VALUES("81418", "15", "2018-04-25 18:28:05", "", "22");
INSERT INTO `wp_rg_form_view` VALUES("81419", "6", "2018-04-25 19:42:15", "", "1");
INSERT INTO `wp_rg_form_view` VALUES("81420", "14", "2018-04-26 11:55:24", "", "4");

/* INSERT TABLE DATA: wp_rg_lead */
INSERT INTO `wp_rg_lead` VALUES("1", "1", NULL, "2014-07-28 19:11:53", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("2", "2", NULL, "2014-07-28 19:12:48", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("3", "1", NULL, "2014-07-29 13:51:44", "0", "0", "207.81.253.66", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("4", "2", NULL, "2014-07-31 00:25:21", "0", "0", "70.71.238.144", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("5", "1", NULL, "2014-08-18 19:21:44", "0", "0", "184.151.231.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.4.4; C6906 Build/14.4.A.0.108) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.135 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("6", "3", NULL, "2014-08-27 17:53:20", "0", "0", "216.86.119.221", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("7", "2", NULL, "2014-08-28 18:04:04", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("8", "2", NULL, "2014-08-28 18:48:06", "0", "0", "154.20.41.154", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("9", "2", NULL, "2014-08-28 20:08:58", "0", "0", "70.67.253.229", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("10", "2", NULL, "2014-08-28 21:03:03", "0", "0", "131.137.245.206", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("11", "2", NULL, "2014-08-28 23:20:44", "0", "0", "142.36.252.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("12", "2", NULL, "2014-08-29 02:14:33", "0", "0", "66.189.159.162", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Firefox/31.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("13", "1", NULL, "2014-09-02 20:38:56", "0", "0", "207.6.182.49", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("14", "1", NULL, "2014-09-04 06:22:06", "0", "0", "24.68.157.160", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("15", "1", NULL, "2014-09-07 14:49:16", "0", "0", "216.232.3.230", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("16", "1", NULL, "2014-09-08 23:11:25", "0", "0", "184.66.152.99", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("17", "1", NULL, "2014-09-09 21:03:16", "0", "0", "184.66.97.35", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("18", "3", NULL, "2014-09-14 22:59:00", "0", "0", "96.54.196.122", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("19", "2", NULL, "2014-09-18 15:43:35", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("20", "2", NULL, "2014-09-20 20:16:10", "0", "0", "24.68.157.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDS; .NET4.0C; .NET4.0E)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("21", "1", NULL, "2014-09-22 18:33:00", "0", "0", "70.67.66.233", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("22", "3", NULL, "2014-09-23 16:55:02", "0", "0", "24.68.129.169", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("23", "1", NULL, "2014-09-23 18:07:00", "0", "0", "96.50.43.132", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_0 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) GSA/4.2.0.37439 Mobile/12A365 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("24", "3", NULL, "2014-09-24 08:20:04", "0", "0", "96.50.108.62", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("25", "3", NULL, "2014-09-24 14:47:12", "0", "0", "216.113.222.106", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; LCJB; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("26", "3", NULL, "2014-09-25 00:13:42", "0", "0", "184.69.27.158", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("27", "1", NULL, "2014-09-25 20:37:43", "0", "0", "24.68.131.250", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("28", "3", NULL, "2014-10-01 21:23:00", "0", "0", "70.67.67.46", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/pastoral-care-team-training-saturday-october-4-2014/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("29", "2", NULL, "2014-10-11 05:59:32", "0", "0", "96.50.109.85", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("30", "3", NULL, "2014-10-14 19:24:16", "0", "0", "24.68.129.169", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.1.17 (KHTML, like Gecko) Version/7.1 Safari/537.85.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("31", "3", NULL, "2014-10-15 16:36:20", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/helping-people-change-youth-leader-workshop-october-30-2014/?instance_id=189", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("32", "3", NULL, "2014-10-16 15:45:17", "0", "0", "96.54.166.193", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:32.0) Gecko/20100101 Firefox/32.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("33", "3", NULL, "2014-10-16 18:58:48", "0", "0", "70.67.185.137", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("34", "3", NULL, "2014-10-16 19:58:35", "0", "0", "24.108.133.208", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("35", "3", NULL, "2014-10-17 02:49:56", "0", "0", "207.216.39.113", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-facilitator-margaret-anderson-saturday-november-29-2014/", "Mozilla/5.0 (Linux; Android 4.4.2; SGH-I337M Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.102 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("36", "3", NULL, "2014-10-17 17:53:37", "0", "0", "96.50.64.37", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/the-enneagram-a-journey-of-self-discovery/?instance_id=149", "Mozilla/5.0 (iPad; CPU OS 8.0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) 1Password/5.1 (like Version/12A365 Mobile/8.0 Safari/8536.25)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("37", "1", NULL, "2014-10-23 16:56:30", "0", "0", "108.180.29.10", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("38", "1", NULL, "2014-11-02 22:47:26", "0", "0", "216.13.187.190", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.1.17 (KHTML, like Gecko) Version/7.1 Safari/537.85.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("39", "6", NULL, "2014-11-02 23:58:45", "0", "0", "96.50.76.246", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("40", "3", NULL, "2014-11-04 18:50:15", "0", "0", "108.180.146.46", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("41", "1", NULL, "2014-11-04 23:28:19", "0", "0", "184.66.16.43", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("42", "3", NULL, "2014-11-05 00:41:07", "0", "0", "24.244.23.66", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Linux; Android 4.4.2; HTC One Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.114 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("43", "1", NULL, "2014-11-05 16:05:19", "0", "0", "184.66.16.43", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("44", "1", NULL, "2014-11-10 22:27:21", "0", "0", "64.141.7.66", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("45", "1", NULL, "2014-11-14 04:41:31", "0", "0", "24.68.112.161", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.74.9 (KHTML, like Gecko) Version/7.0.2 Safari/537.74.9", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("46", "1", NULL, "2014-11-14 05:16:05", "0", "0", "24.68.112.161", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("47", "6", NULL, "2014-11-16 00:41:22", "0", "0", "154.5.209.178", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/2014-fundraising-dessert-party/?instance_id=201", "Mozilla/5.0 (Windows NT 5.1; rv:33.0) Gecko/20100101 Firefox/33.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("48", "1", NULL, "2014-11-17 18:37:10", "0", "0", "24.108.148.145", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.1.17 (KHTML, like Gecko) Version/7.1 Safari/537.85.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("49", "3", NULL, "2014-11-23 23:52:05", "0", "0", "24.68.113.20", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.1.25 (KHTML, like Gecko) Version/8.0 Safari/600.1.25", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("50", "1", NULL, "2014-11-24 20:15:21", "0", "0", "96.50.10.195", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B436 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("51", "1", NULL, "2014-12-04 19:32:05", "0", "0", "96.50.84.237", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:33.0) Gecko/20100101 Firefox/33.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("52", "2", NULL, "2014-12-15 19:11:58", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("53", "1", NULL, "2014-12-23 17:17:39", "0", "0", "24.108.150.98", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; ASU2JS; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("54", "1", NULL, "2014-12-29 16:18:30", "0", "0", "24.108.86.144", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.2.2; B1-730HD Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.93 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("55", "1", NULL, "2014-12-29 20:30:42", "0", "0", "24.68.113.71", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("56", "1", NULL, "2015-01-07 22:56:36", "0", "0", "24.108.82.185", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("57", "1", NULL, "2015-01-13 23:57:43", "0", "0", "24.68.12.158", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("58", "3", NULL, "2015-01-17 01:58:06", "0", "0", "184.66.139.3", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("59", "3", NULL, "2015-01-24 05:57:08", "0", "0", "24.69.67.71", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/caregiver-burnout-need-self-care-professional-caregivers-saturday-january-31-2015/", "Mozilla/5.0 (Windows NT 6.0; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("60", "1", NULL, "2015-01-28 22:43:38", "0", "0", "207.216.0.57", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("61", "1", NULL, "2015-02-05 19:06:50", "0", "0", "75.156.75.95", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("62", "1", NULL, "2015-02-06 18:07:47", "0", "0", "207.194.65.204", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("63", "1", NULL, "2015-02-10 20:20:07", "0", "0", "96.50.106.97", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/537.75.14", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("64", "1", NULL, "2015-02-12 16:56:39", "0", "0", "96.54.36.14", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("65", "1", NULL, "2015-02-17 05:51:02", "0", "0", "96.54.193.130", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("66", "7", NULL, "2015-02-18 20:30:04", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("67", "7", NULL, "2015-02-18 20:36:42", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, "1", NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("68", "7", NULL, "2015-02-18 20:46:08", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, "1", NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("69", "7", NULL, "2015-02-18 20:54:49", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, "1", NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("70", "1", NULL, "2015-02-24 00:54:02", "0", "0", "184.151.231.222", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("71", "1", NULL, "2015-02-24 20:46:09", "0", "0", "184.69.26.218", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("72", "1", NULL, "2015-02-25 22:26:42", "0", "0", "209.91.107.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D169 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("73", "1", NULL, "2015-03-06 02:25:00", "0", "0", "184.66.38.210", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("74", "1", NULL, "2015-03-06 04:40:20", "0", "0", "184.66.68.233", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("75", "1", NULL, "2015-03-09 09:33:18", "0", "0", "24.69.80.72", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; Nexus 5 Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.109 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("76", "1", NULL, "2015-03-21 22:13:47", "0", "0", "142.104.37.93", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("77", "2", NULL, "2015-03-23 17:58:46", "0", "0", "184.66.135.231", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("78", "1", NULL, "2015-03-25 20:56:22", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("79", "3", NULL, "2015-03-25 21:09:15", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("80", "1", NULL, "2015-03-31 18:23:45", "0", "0", "184.66.135.231", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.104 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("81", "7", NULL, "2015-04-01 13:21:49", "0", "0", "96.50.110.41", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (iPad; CPU OS 7_0_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) GSA/3.2.0.25255 Mobile/11B511 Safari/8536.25", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("82", "3", NULL, "2015-04-07 16:35:15", "0", "0", "142.104.35.101", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("83", "1", NULL, "2015-04-12 05:12:47", "0", "0", "99.199.0.210", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("84", "1", NULL, "2015-04-12 16:53:43", "0", "0", "216.232.157.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F69 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("85", "1", NULL, "2015-04-12 16:53:44", "0", "0", "216.232.157.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F69 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("86", "7", NULL, "2015-04-14 16:16:26", "0", "0", "198.168.152.20", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("87", "3", NULL, "2015-04-14 22:00:36", "0", "0", "184.66.132.93", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/?instance_id=294", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("88", "1", NULL, "2015-04-16 00:45:16", "0", "0", "108.180.150.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("89", "3", NULL, "2015-04-16 15:41:20", "0", "0", "131.137.245.206", "http://localhost:8888/TestSICPage/wordpress/ai1ec_event/boundaries-balance-burnout-selfcare-women-facilitators-margaret-anderson-chere-harbridge/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("90", "3", NULL, "2015-04-29 04:24:32", "0", "0", "24.108.115.169", "http://localhost:8888/TestSICPage/wordpress/calendar/?request_type=json&ai1ec_doing_ajax=true", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.5.17 (KHTML, like Gecko) Version/8.0.5 Safari/600.5.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("91", "3", NULL, "2015-04-29 04:25:50", "0", "0", "24.108.115.169", "http://localhost:8888/TestSICPage/wordpress/calendar/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.5.17 (KHTML, like Gecko) Version/8.0.5 Safari/600.5.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("92", "1", NULL, "2015-04-30 13:58:55", "0", "0", "216.232.157.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F69 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("93", "1", NULL, "2015-05-03 15:34:36", "0", "0", "207.6.127.99", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("94", "1", NULL, "2015-05-05 15:35:39", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("95", "3", NULL, "2015-05-10 23:34:31", "0", "0", "184.66.154.230", "http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-mondays-may-25-june-1-8-2015-facilitator-rosemary-merritt/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("96", "3", NULL, "2015-05-14 16:35:27", "0", "0", "24.108.74.120", "http://localhost:8888/TestSICPage/wordpress/event/ebb-flow-life-introduction-grief-loss-2-day-intensive-thursday-april-16-2015-day-1-friday-april-17-day-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("97", "3", NULL, "2015-05-19 17:15:42", "0", "0", "192.40.236.6", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-6-2015/?instance_id=293", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("98", "3", NULL, "2015-05-20 22:47:59", "0", "0", "184.66.41.195", "http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-june-13-2015/?instance_id=297", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.65 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("99", "1", NULL, "2015-05-20 23:06:49", "0", "0", "96.50.86.105", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.2.2; ME173X Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("100", "3", NULL, "2015-05-23 23:14:14", "0", "0", "173.180.30.181", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-6-2015/?instance_id=293", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("101", "1", NULL, "2015-05-26 23:49:18", "0", "0", "72.143.232.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/5.2.43972 Mobile/12F70 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("102", "1", NULL, "2015-05-30 02:05:48", "0", "0", "24.108.129.237", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("103", "2", NULL, "2015-06-02 02:34:50", "0", "0", "24.108.88.96", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:38.0) Gecko/20100101 Firefox/38.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("104", "3", NULL, "2015-06-02 18:54:06", "0", "0", "24.68.120.185", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("105", "1", NULL, "2015-06-03 17:50:22", "0", "0", "184.69.177.34", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("106", "1", NULL, "2015-06-04 14:11:53", "0", "0", "144.173.28.149", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("107", "1", NULL, "2015-06-12 04:36:00", "0", "0", "96.50.80.186", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/7.1.6 Safari/537.85.15", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("108", "3", NULL, "2015-06-15 20:14:40", "0", "0", "72.2.1.5", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-june-20-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("109", "3", NULL, "2015-06-16 18:16:03", "0", "0", "10.21.80.1", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("110", "1", NULL, "2015-06-28 17:58:10", "0", "0", "104.142.119.40", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("111", "1", NULL, "2015-07-06 13:49:38", "0", "0", "97.75.177.149", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("112", "1", NULL, "2015-07-11 01:16:47", "0", "0", "24.114.91.161", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_1 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D201 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("113", "1", NULL, "2015-07-16 18:44:44", "0", "0", "75.157.168.146", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("114", "8", NULL, "2015-07-30 19:54:12", "0", "0", "24.108.93.67", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("115", "2", NULL, "2015-08-06 21:23:33", "0", "0", "96.50.8.53", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/7.1.7 Safari/537.85.16", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("116", "8", NULL, "2015-08-16 01:38:37", "0", "0", "64.180.86.215", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("117", "1", NULL, "2015-08-21 03:19:39", "0", "0", "154.20.40.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.155 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("118", "2", NULL, "2015-08-25 21:53:21", "0", "0", "108.180.165.26", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.155 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("119", "1", NULL, "2015-08-25 21:56:50", "0", "0", "108.180.165.26", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.155 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("120", "1", NULL, "2015-08-29 18:25:17", "0", "0", "154.20.68.46", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("121", "1", NULL, "2015-09-07 05:49:05", "0", "0", "24.68.159.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("122", "2", NULL, "2015-09-08 18:16:25", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("123", "2", NULL, "2015-09-10 17:39:08", "0", "0", "199.107.64.228", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("124", "1", NULL, "2015-09-14 20:43:04", "0", "0", "154.20.32.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("125", "1", NULL, "2015-09-17 00:14:24", "0", "0", "154.5.183.23", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.1.1; D6603 Build/23.4.A.0.570) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/40.0.2214.89 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("126", "1", NULL, "2015-09-23 20:37:16", "0", "0", "184.71.15.166", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("127", "1", NULL, "2015-09-24 16:45:12", "0", "0", "96.54.167.1", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("128", "3", NULL, "2015-09-24 16:47:25", "0", "0", "162.156.84.37", "http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-caring-for-the-family-caregiver-saturday-october-3-2015/", "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B435 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("129", "1", NULL, "2015-09-25 00:50:57", "0", "0", "184.66.114.65", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("130", "3", NULL, "2015-09-30 22:56:01", "0", "0", "184.66.114.65", "http://localhost:8888/TestSICPage/wordpress/event/14103/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("131", "1", NULL, "2015-10-11 20:37:05", "0", "0", "24.68.124.97", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("132", "8", NULL, "2015-10-12 17:17:03", "0", "0", "24.69.73.122", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("133", "1", NULL, "2015-10-13 19:32:39", "0", "0", "24.108.112.16", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("134", "1", NULL, "2015-10-14 22:29:08", "0", "0", "104.200.154.48", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("135", "1", NULL, "2015-10-15 01:03:21", "0", "0", "96.54.165.249", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("136", "1", NULL, "2015-10-16 18:32:50", "0", "0", "96.50.29.185", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS x86_64 7262.57.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.98 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("137", "3", NULL, "2015-10-19 16:25:01", "0", "0", "96.54.165.77", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("138", "1", NULL, "2015-10-20 13:01:22", "0", "0", "24.108.66.171", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("139", "3", NULL, "2015-10-20 17:01:21", "0", "0", "184.71.12.218", "http://localhost:8888/TestSICPage/wordpress/event/caregiver-burnout-the-need-for-self-care-professional-caregivers-facilitator-margaret-anderson-saturday-november-28-2015/?instance_i", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("140", "8", NULL, "2015-10-21 00:32:31", "0", "0", "24.108.128.2", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/?instance_id=318", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; LCJB; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("141", "1", NULL, "2015-10-22 22:40:31", "0", "0", "131.137.245.208", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("142", "1", NULL, "2015-10-24 00:25:27", "0", "0", "184.66.128.166", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/6.1.3 Safari/537.75.14", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("143", "3", NULL, "2015-10-27 22:01:28", "0", "0", "184.69.2.234", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("144", "1", NULL, "2015-10-29 04:04:53", "0", "0", "96.54.177.120", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("145", "1", NULL, "2015-10-30 02:47:57", "0", "0", "24.68.101.123", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; rv:41.0) Gecko/20100101 Firefox/41.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("146", "1", NULL, "2015-10-31 16:51:16", "0", "0", "154.20.49.202", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("147", "1", NULL, "2015-11-02 18:45:35", "0", "0", "184.66.108.237", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:41.0) Gecko/20100101 Firefox/41.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("148", "8", NULL, "2015-11-02 23:06:50", "0", "0", "70.67.82.215", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/41.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("149", "8", NULL, "2015-11-02 23:11:08", "0", "0", "70.67.82.215", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-saturday-november-7-2015/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:41.0) Gecko/20100101 Firefox/41.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("150", "1", NULL, "2015-11-04 20:34:47", "0", "0", "170.146.14.42", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("151", "1", NULL, "2015-11-06 22:46:48", "0", "0", "24.108.76.147", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("152", "7", NULL, "2015-11-10 07:00:41", "0", "0", "112.196.169.152", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-director-development/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("153", "1", NULL, "2015-11-15 20:44:08", "0", "0", "24.68.65.98", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("154", "5", NULL, "2015-11-16 04:33:17", "0", "0", "24.68.30.24", "http://localhost:8888/TestSICPage/wordpress/contact-us/contact-form-general-submission/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; MASBJS; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("155", "3", NULL, "2015-11-22 12:48:34", "0", "0", "69.12.79.149", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("156", "3", NULL, "2015-11-23 19:16:13", "0", "0", "64.114.18.129", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("157", "3", NULL, "2015-11-23 19:17:57", "0", "0", "64.114.18.129", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("158", "3", NULL, "2015-11-23 22:53:51", "0", "0", "64.114.18.129", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("159", "3", NULL, "2015-11-23 22:55:23", "0", "0", "64.114.18.129", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("160", "3", NULL, "2015-11-25 18:07:14", "0", "0", "64.114.222.252", "http://localhost:8888/TestSICPage/wordpress/event/self-injurying-youth-understanding-and-responding-facilitator-dave-prette-rcc-saturday-october-31-2015/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("161", "1", NULL, "2015-11-25 21:52:00", "0", "0", "96.50.108.129", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:42.0) Gecko/20100101 Firefox/42.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("162", "8", NULL, "2015-11-27 03:16:59", "0", "0", "154.20.196.21", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("163", "1", NULL, "2015-11-30 05:11:11", "0", "0", "184.69.163.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("164", "3", NULL, "2015-11-30 20:05:16", "0", "0", "24.108.136.68", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("165", "1", NULL, "2015-12-02 22:11:31", "0", "0", "184.66.161.123", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13B143 [FBAN/MessengerForiOS;FBAV/50.0.0.15.72;FBBV/17975388;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/9.1;FBSS/2; FBCR/Rogers;FBID/phone;FBLC/", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("166", "1", NULL, "2015-12-03 22:44:08", "0", "0", "96.54.200.228", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("167", "8", NULL, "2015-12-08 20:37:36", "0", "0", "24.108.93.67", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("168", "1", NULL, "2015-12-09 03:56:16", "0", "0", "24.68.66.211", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("169", "3", NULL, "2015-12-19 10:58:04", "0", "0", "157.7.242.53", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("170", "3", NULL, "2015-12-19 13:46:33", "0", "0", "45.40.35.131", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("171", "3", NULL, "2015-12-24 17:31:44", "0", "0", "216.158.205.235", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("172", "1", NULL, "2015-12-24 21:26:07", "0", "0", "162.156.87.15", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("173", "3", NULL, "2015-12-27 19:40:03", "0", "0", "23.92.219.19", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("174", "1", NULL, "2015-12-31 14:58:50", "0", "0", "184.66.28.163", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("175", "1", NULL, "2016-01-01 04:32:30", "0", "0", "172.218.192.82", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("176", "1", NULL, "2016-01-05 02:00:29", "0", "0", "24.108.7.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("177", "1", NULL, "2016-01-05 16:59:05", "0", "0", "162.156.87.15", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("178", "8", NULL, "2016-01-05 21:17:23", "0", "0", "24.108.22.54", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-february-6-2016-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("179", "1", NULL, "2016-01-12 16:46:44", "0", "0", "204.209.209.131", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("180", "1", NULL, "2016-01-12 17:42:19", "0", "0", "96.54.214.30", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("181", "1", NULL, "2016-01-13 19:24:55", "0", "0", "70.77.194.67", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("182", "1", NULL, "2016-01-16 00:38:32", "0", "0", "154.5.182.86", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F69 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("183", "1", NULL, "2016-01-16 23:39:10", "0", "0", "96.50.8.84", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("184", "1", NULL, "2016-01-17 00:13:16", "0", "0", "184.66.14.57", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; LG-D852 Build/LRX21Y) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("185", "3", NULL, "2016-01-18 11:17:43", "0", "0", "24.69.36.80", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/", "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("186", "1", NULL, "2016-01-18 11:24:53", "0", "0", "24.69.36.80", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("187", "1", NULL, "2016-01-20 08:40:21", "0", "0", "172.218.233.109", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("188", "3", NULL, "2016-01-20 19:47:39", "0", "0", "24.108.7.45", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("189", "2", NULL, "2016-01-21 00:54:52", "0", "0", "24.108.7.45", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("190", "1", NULL, "2016-01-22 23:11:10", "0", "0", "96.50.18.202", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("191", "1", NULL, "2016-01-24 01:18:12", "0", "0", "24.244.23.132", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("192", "3", NULL, "2016-01-27 19:58:10", "0", "0", "96.50.7.9", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-loss-6-weeks/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("193", "3", NULL, "2016-01-29 19:35:58", "0", "0", "64.114.197.221", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("194", "1", NULL, "2016-01-30 21:40:59", "0", "0", "154.5.144.158", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("195", "3", NULL, "2016-02-02 23:55:11", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-february-13-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("196", "2", NULL, "2016-02-05 17:26:42", "0", "0", "64.114.223.3", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("197", "1", NULL, "2016-02-06 01:53:43", "0", "0", "24.108.7.45", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("198", "3", NULL, "2016-02-11 09:49:26", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("199", "3", NULL, "2016-02-12 17:03:54", "0", "0", "216.232.157.182", "http://localhost:8888/TestSICPage/wordpress/event/midlife-directions-intensive-saturday-february-27-facilitator-barbara-baillie/", "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("200", "1", NULL, "2016-02-16 19:25:41", "0", "0", "134.87.151.89", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("201", "3", NULL, "2016-02-16 19:51:27", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("202", "1", NULL, "2016-02-16 23:12:31", "0", "0", "99.199.3.118", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13C75 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("203", "1", NULL, "2016-02-17 20:04:08", "0", "0", "162.156.84.12", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("204", "3", NULL, "2016-02-22 20:31:18", "0", "0", "96.50.93.42", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("205", "1", NULL, "2016-02-24 23:04:37", "0", "0", "154.20.5.227", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("206", "1", NULL, "2016-02-26 23:32:20", "0", "0", "216.232.153.63", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("207", "3", NULL, "2016-03-03 22:28:20", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/?instance_id=438", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("208", "2", NULL, "2016-03-10 00:19:39", "0", "0", "184.69.163.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("209", "3", NULL, "2016-03-11 05:45:43", "0", "0", "24.69.36.80", "http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/", "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("210", "1", NULL, "2016-03-15 23:23:24", "0", "0", "96.50.99.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("211", "1", NULL, "2016-03-18 20:08:47", "0", "0", "24.69.57.30", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("212", "3", NULL, "2016-03-24 21:35:29", "0", "0", "154.20.89.65", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("213", "1", NULL, "2016-03-25 12:04:15", "0", "0", "70.67.47.128", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("214", "10", NULL, "2016-03-25 20:33:09", "0", "0", "24.108.172.84", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("215", "1", NULL, "2016-03-30 17:16:06", "0", "0", "207.34.170.253", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("216", "10", NULL, "2016-04-01 12:36:21", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("217", "3", NULL, "2016-04-01 19:09:22", "0", "0", "64.114.199.100", "http://localhost:8888/TestSICPage/wordpress/event/marriage-preparation-workshop-saturday-june-4-2016-facilitators-bill-cole-and-glenda-pryce/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("218", "10", NULL, "2016-04-02 05:27:36", "0", "0", "24.108.95.242", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("219", "3", NULL, "2016-04-04 16:16:18", "0", "0", "216.86.119.7", "http://localhost:8888/TestSICPage/wordpress/event/the-twilight-journey-grief-loss-and-the-very-elderly-6-thursdays-april-14-may-19-2016/", "Mozilla/5.0 (iPad; CPU OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("220", "10", NULL, "2016-04-06 00:12:35", "0", "0", "104.142.126.77", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Linux; Android 4.4.2; SGH-I337M Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.105 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("221", "10", NULL, "2016-04-06 16:31:15", "0", "0", "24.68.38.17", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("222", "10", NULL, "2016-04-06 18:58:02", "0", "0", "64.114.222.239", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("223", "1", NULL, "2016-04-06 22:43:37", "0", "0", "184.71.27.166", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("224", "3", NULL, "2016-04-07 19:18:32", "0", "0", "64.114.239.182", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("225", "3", NULL, "2016-04-09 15:55:17", "0", "0", "24.108.129.184", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("226", "10", NULL, "2016-04-09 21:17:23", "0", "0", "24.108.150.27", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("227", "3", NULL, "2016-04-11 15:59:30", "0", "0", "142.36.94.177", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("228", "10", NULL, "2016-04-11 19:20:25", "0", "0", "64.114.222.242", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("229", "3", NULL, "2016-04-11 23:02:29", "0", "0", "24.108.42.254", "http://localhost:8888/TestSICPage/wordpress/calendar/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("230", "10", NULL, "2016-04-12 15:38:17", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("231", "3", NULL, "2016-04-12 22:27:24", "0", "0", "64.180.191.57", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("232", "10", NULL, "2016-04-12 23:13:34", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-for-anxiety-8-saturdays-april-16-june-11-2016/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("233", "1", NULL, "2016-04-13 02:20:29", "0", "0", "24.68.231.154", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("234", "3", NULL, "2016-04-13 06:23:57", "0", "0", "24.69.2.163", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("235", "3", NULL, "2016-04-13 23:55:58", "0", "0", "207.6.123.218", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("236", "1", NULL, "2016-04-14 04:00:09", "0", "0", "96.50.12.218", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("237", "1", NULL, "2016-04-15 22:29:38", "0", "0", "24.69.20.181", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("238", "3", NULL, "2016-04-19 21:11:21", "0", "0", "184.69.23.166", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("239", "3", NULL, "2016-04-20 04:18:32", "0", "0", "24.68.132.183", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("240", "3", NULL, "2016-04-20 04:36:12", "0", "0", "154.20.43.165", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("241", "1", NULL, "2016-04-20 20:14:22", "0", "0", "70.67.233.215", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("242", "3", NULL, "2016-04-23 20:26:23", "0", "0", "154.20.37.37", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("243", "1", NULL, "2016-04-26 15:51:40", "0", "0", "96.50.57.61", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("244", "3", NULL, "2016-04-26 19:50:01", "0", "0", "184.69.163.74", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("245", "1", NULL, "2016-04-27 20:03:13", "0", "0", "24.68.32.78", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("246", "12", NULL, "2016-04-28 21:49:42", "0", "0", "209.207.97.205", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("247", "3", NULL, "2016-04-30 23:45:06", "0", "0", "117.177.250.151", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("248", "3", NULL, "2016-05-05 06:28:37", "0", "0", "184.66.34.145", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("249", "1", NULL, "2016-05-05 18:28:06", "0", "0", "24.244.23.185", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("250", "1", NULL, "2016-05-05 18:31:33", "0", "0", "207.102.57.146", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("251", "1", NULL, "2016-05-06 00:49:00", "0", "0", "216.232.2.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:46.0) Gecko/20100101 Firefox/46.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("252", "1", NULL, "2016-05-06 01:07:51", "0", "0", "70.67.56.101", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("253", "3", NULL, "2016-05-06 05:30:20", "0", "0", "70.66.171.207", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("254", "3", NULL, "2016-05-09 21:16:56", "0", "0", "24.69.27.169", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("255", "1", NULL, "2016-05-11 20:53:32", "0", "0", "24.68.146.22", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("256", "3", NULL, "2016-05-11 22:22:39", "0", "0", "24.68.20.52", "http://localhost:8888/TestSICPage/wordpress/event/self-injuring-youth-understanding-and-responding-saturday-may-28-2016-facilitator-dave-prette-rcc/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("257", "12", NULL, "2016-05-11 23:28:42", "0", "0", "142.31.166.243", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("258", "1", NULL, "2016-05-12 20:56:04", "0", "0", "24.69.154.153", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("259", "1", NULL, "2016-05-13 18:02:18", "0", "0", "70.66.166.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("260", "1", NULL, "2016-05-17 22:22:46", "0", "0", "142.104.37.85", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("261", "2", NULL, "2016-05-18 05:49:09", "0", "0", "50.92.248.185", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:46.0) Gecko/20100101 Firefox/46.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("262", "1", NULL, "2016-05-20 03:21:47", "0", "0", "154.5.180.134", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("263", "1", NULL, "2016-05-23 20:16:01", "0", "0", "184.66.44.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("264", "1", NULL, "2016-05-31 19:13:50", "0", "0", "96.50.28.226", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("265", "2", NULL, "2016-06-01 23:16:38", "0", "0", "24.108.184.241", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("266", "1", NULL, "2016-06-02 03:04:57", "0", "0", "199.60.104.18", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("267", "1", NULL, "2016-06-02 21:18:24", "0", "0", "24.69.132.110", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G900W8 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.0 Chrome/44.0.2403.133 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("268", "12", NULL, "2016-06-06 22:22:24", "0", "0", "207.6.162.114", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("269", "1", NULL, "2016-06-08 03:14:14", "0", "0", "24.114.42.127", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("270", "2", NULL, "2016-06-10 20:03:51", "0", "0", "24.68.146.132", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("271", "1", NULL, "2016-06-13 18:33:37", "0", "0", "24.68.124.51", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("272", "3", NULL, "2016-06-16 15:41:29", "0", "0", "24.69.158.129", "http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("273", "2", NULL, "2016-06-17 11:02:27", "0", "0", "1.124.48.205", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (iPad; CPU OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("274", "1", NULL, "2016-06-17 18:08:11", "0", "0", "24.69.133.52", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("275", "1", NULL, "2016-06-22 13:35:51", "0", "0", "96.54.52.194", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("276", "2", NULL, "2016-06-22 15:59:43", "0", "0", "96.50.7.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("277", "12", NULL, "2016-06-25 05:59:43", "0", "0", "24.108.193.4", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("278", "3", NULL, "2016-06-27 23:30:34", "0", "0", "24.114.36.121", "http://localhost:8888/TestSICPage/wordpress/event/family-systems-intensive-monday-friday-july-4-8-2016/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G900W8 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.81 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("279", "1", NULL, "2016-06-28 01:13:41", "0", "0", "96.54.210.232", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("280", "12", NULL, "2016-06-28 05:36:39", "0", "0", "24.108.193.4", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("281", "1", NULL, "2016-06-30 05:27:07", "0", "0", "24.108.162.39", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("282", "1", NULL, "2016-06-30 21:56:24", "0", "0", "24.68.21.147", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("283", "12", NULL, "2016-07-01 02:42:30", "0", "0", "96.50.12.121", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 10.0; WOW64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("284", "12", NULL, "2016-07-09 03:25:13", "0", "0", "24.69.158.129", "http://localhost:8888/TestSICPage/wordpress/indicate-interest-for-a-workshopcoursetraining-program/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("285", "1", NULL, "2016-07-11 23:00:45", "0", "0", "24.108.7.33", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("286", "1", NULL, "2016-07-12 00:37:21", "0", "0", "184.66.244.73", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("287", "1", NULL, "2016-07-14 18:54:44", "0", "0", "24.68.126.61", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("288", "3", NULL, "2016-07-18 23:38:48", "0", "0", "24.108.193.4", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("289", "3", NULL, "2016-07-19 22:01:16", "0", "0", "131.137.245.209", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/?i", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("290", "2", NULL, "2016-07-26 07:20:04", "0", "0", "207.216.68.46", "http://localhost:8888/TestSICPage/wordpress/contact-us/sign-up-on-line-newsletter-or-courseworkshoptraining-programme-notification-option/", "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("291", "1", NULL, "2016-07-26 15:05:27", "0", "0", "75.154.241.186", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("292", "1", NULL, "2016-07-28 19:04:39", "0", "0", "70.66.188.50", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("293", "3", NULL, "2016-07-30 18:25:07", "0", "0", "221.132.113.70", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("294", "1", NULL, "2016-08-02 21:52:53", "0", "0", "99.199.2.59", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("295", "1", NULL, "2016-08-03 07:04:22", "0", "0", "24.108.37.193", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("296", "1", NULL, "2016-08-09 13:35:27", "0", "0", "75.156.73.139", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; MotoG3 Build/MPI24.65-25) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.81 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("297", "3", NULL, "2016-08-17 20:46:39", "0", "0", "96.50.28.249", "http://localhost:8888/TestSICPage/wordpress/event/caring-for-the-caregiver-saturday-august-20-2016-facilitator-margaret-anderson/?instance_id=563", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("298", "1", NULL, "2016-08-19 19:07:37", "0", "0", "96.54.213.145", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("299", "1", NULL, "2016-08-22 21:53:07", "0", "0", "154.5.209.196", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("300", "10", NULL, "2016-08-24 02:18:50", "0", "0", "64.114.29.243", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("301", "1", NULL, "2016-08-24 21:23:17", "0", "0", "75.157.168.146", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("302", "1", NULL, "2016-08-25 15:54:17", "0", "0", "69.157.5.88", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("303", "1", NULL, "2016-08-26 23:31:19", "0", "0", "64.180.21.31", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("304", "10", NULL, "2016-08-29 20:32:34", "0", "0", "184.66.35.140", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("305", "10", NULL, "2016-08-31 16:45:32", "0", "0", "24.68.236.68", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Linux; Android 4.4.2; en-ca; SM-G386W-parrot Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("306", "1", NULL, "2016-09-01 22:01:36", "0", "0", "199.60.104.18", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("307", "10", NULL, "2016-09-01 22:24:50", "0", "0", "24.108.189.102", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Linux; Android 5.0.1; YOGA Tablet 2-1050F Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("308", "10", NULL, "2016-09-03 05:46:50", "0", "0", "154.5.181.30", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("309", "10", NULL, "2016-09-06 18:57:51", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("310", "3", NULL, "2016-09-07 00:22:44", "0", "0", "75.157.239.7", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-an-introduction-to-grief-and-loss-6-thursdays-september-15-october-20-2016-facilitator-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("311", "10", NULL, "2016-09-09 17:42:13", "0", "0", "184.66.36.84", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("312", "1", NULL, "2016-09-10 02:42:00", "0", "0", "154.20.7.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("313", "10", NULL, "2016-09-10 15:52:18", "0", "0", "216.232.154.254", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("314", "10", NULL, "2016-09-12 01:38:13", "0", "0", "24.69.81.140", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:17.0) Gecko/20100101 Firefox/17.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("315", "13", NULL, "2016-09-12 18:18:50", "0", "0", "70.66.210.236", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/?instance_id=592", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("316", "1", NULL, "2016-09-12 19:16:11", "0", "0", "184.71.24.162", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-A500W Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("317", "3", NULL, "2016-09-13 19:58:41", "0", "0", "24.108.4.19", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-counselling-training-12-thursdays-oct-6-2016-jan-12-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("318", "1", NULL, "2016-09-14 01:18:57", "0", "0", "96.50.6.244", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("319", "10", NULL, "2016-09-16 15:36:29", "0", "0", "184.71.27.162", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; MDDRJS; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("320", "10", NULL, "2016-09-17 22:05:32", "0", "0", "154.5.180.158", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("321", "1", NULL, "2016-09-19 23:25:39", "0", "0", "154.20.28.177", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("322", "1", NULL, "2016-09-21 22:51:45", "0", "0", "24.244.32.215", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("323", "1", NULL, "2016-09-22 05:39:46", "0", "0", "184.66.251.150", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS armv7l 8530.81.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.103 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("324", "1", NULL, "2016-09-22 13:41:04", "0", "0", "184.66.33.214", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("325", "1", NULL, "2016-09-22 16:06:36", "0", "0", "96.54.196.85", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("326", "13", NULL, "2016-09-22 18:48:16", "0", "0", "184.66.18.249", "http://localhost:8888/TestSICPage/wordpress/calendar/cat_ids~5/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("327", "1", NULL, "2016-09-22 20:03:26", "0", "0", "184.69.124.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("328", "1", NULL, "2016-09-22 20:04:08", "0", "0", "184.69.124.182", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("329", "13", NULL, "2016-09-24 21:29:19", "0", "0", "184.66.19.15", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("330", "3", NULL, "2016-09-26 18:38:11", "0", "0", "24.114.38.128", "http://localhost:8888/TestSICPage/wordpress/event/strengthening-well-being-a-time-for-renewal-tuesdays-november-8-15-22-2016/", "Mozilla/5.0 (Linux; Android 5.0; SM-N900W8 Build/LRX21V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("331", "10", NULL, "2016-09-26 23:56:52", "0", "0", "75.157.238.24", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("332", "13", NULL, "2016-09-30 01:37:10", "0", "0", "184.66.14.230", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("333", "1", NULL, "2016-10-02 22:58:59", "0", "0", "50.92.67.95", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("334", "1", NULL, "2016-10-04 00:05:25", "0", "0", "184.69.26.206", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("335", "1", NULL, "2016-10-04 12:10:44", "0", "0", "70.67.232.58", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("336", "13", NULL, "2016-10-04 16:56:01", "0", "0", "70.66.204.233", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("337", "1", NULL, "2016-10-05 18:55:25", "0", "0", "24.68.5.69", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("338", "1", NULL, "2016-10-06 00:10:59", "0", "0", "154.20.39.150", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A403 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("339", "1", NULL, "2016-10-09 02:50:03", "0", "0", "108.172.100.97", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_2 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/53.0.2785.109 Mobile/13F69 Safari/601.1.46", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("340", "1", NULL, "2016-10-11 01:52:18", "0", "0", "24.68.30.24", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("341", "10", NULL, "2016-10-11 18:59:35", "0", "0", "184.66.128.19", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-8-saturdays-oct-22-dec-10-2016-facilitator-amber-eves/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("342", "1", NULL, "2016-10-12 17:05:18", "0", "0", "184.66.135.78", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("343", "1", NULL, "2016-10-14 00:08:15", "0", "0", "24.68.152.224", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("344", "1", NULL, "2016-10-14 07:38:59", "0", "0", "96.50.98.58", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("345", "1", NULL, "2016-10-14 22:11:40", "0", "0", "64.114.222.220", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("346", "13", NULL, "2016-10-17 18:15:50", "0", "0", "184.66.26.145", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-22-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("347", "1", NULL, "2016-10-20 01:18:03", "0", "0", "24.69.82.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("348", "1", NULL, "2016-10-25 16:28:02", "0", "0", "74.202.28.6", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("349", "1", NULL, "2016-10-25 18:01:08", "0", "0", "96.50.6.157", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("350", "1", NULL, "2016-10-30 02:00:23", "0", "0", "108.180.150.101", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/20.3.136880903 Mobile/14A456 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("351", "1", NULL, "2016-10-30 06:25:35", "0", "0", "70.68.244.108", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("352", "1", NULL, "2016-10-31 21:19:29", "0", "0", "184.69.96.10", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("353", "1", NULL, "2016-11-04 15:51:14", "0", "0", "96.50.18.6", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("354", "1", NULL, "2016-11-05 02:46:06", "0", "0", "24.108.1.27", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("355", "3", NULL, "2016-11-08 20:54:16", "0", "0", "162.211.116.80", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("357", "1", NULL, "2016-11-09 22:10:33", "0", "0", "216.232.150.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("358", "1", NULL, "2016-11-11 06:21:47", "0", "0", "50.92.250.233", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("359", "14", NULL, "2016-11-16 22:12:08", "0", "0", "24.69.18.38", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("360", "14", NULL, "2016-11-21 17:22:23", "0", "0", "24.108.180.144", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("361", "14", NULL, "2016-11-21 23:35:45", "0", "0", "184.71.13.222", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("362", "14", NULL, "2016-11-22 19:45:17", "0", "0", "96.54.203.192", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("363", "14", NULL, "2016-11-23 07:05:36", "0", "0", "96.50.63.233", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("364", "14", NULL, "2016-11-24 18:31:28", "0", "0", "96.50.29.83", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("365", "14", NULL, "2016-11-25 03:14:14", "0", "0", "24.68.28.15", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("366", "14", NULL, "2016-11-28 19:05:08", "0", "0", "24.108.21.151", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4) Build/MPJ24.139-23.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("367", "14", NULL, "2016-12-02 07:12:14", "0", "0", "184.66.128.52", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("368", "14", NULL, "2016-12-06 17:13:23", "0", "0", "96.50.1.71", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("369", "14", NULL, "2016-12-06 21:02:10", "0", "0", "184.66.231.48", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("370", "14", NULL, "2016-12-13 09:58:29", "0", "0", "75.157.131.149", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("371", "14", NULL, "2016-12-15 00:03:41", "0", "0", "70.66.179.52", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("372", "14", NULL, "2016-12-15 06:39:55", "0", "0", "24.108.212.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.4.2; SGH-I747M Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("373", "14", NULL, "2016-12-19 20:51:59", "0", "0", "96.53.5.106", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("374", "14", NULL, "2016-12-28 03:02:47", "0", "0", "24.108.11.144", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G930P Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("375", "14", NULL, "2016-12-28 17:14:54", "0", "0", "24.68.50.67", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("376", "14", NULL, "2016-12-30 04:01:23", "0", "0", "50.92.126.11", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("377", "14", NULL, "2017-01-01 19:08:54", "0", "0", "96.50.57.45", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("378", "14", NULL, "2017-01-03 03:59:15", "0", "0", "64.251.72.251", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("379", "14", NULL, "2017-01-04 19:34:54", "0", "0", "142.104.9.22", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("380", "14", NULL, "2017-01-04 22:07:53", "0", "0", "132.156.2.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("381", "14", NULL, "2017-01-05 08:02:57", "0", "0", "70.67.48.204", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("382", "14", NULL, "2017-01-08 00:20:57", "0", "0", "24.108.14.97", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-D852 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("383", "14", NULL, "2017-01-09 21:00:55", "0", "0", "24.69.142.134", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("384", "14", NULL, "2017-01-09 22:29:39", "0", "0", "24.68.14.228", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:50.0) Gecko/20100101 Firefox/50.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("385", "14", NULL, "2017-01-11 21:44:05", "0", "0", "184.66.3.24", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.0 Chrome/44.0.2403.133 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("386", "14", NULL, "2017-01-12 05:25:28", "0", "0", "184.66.238.30", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("387", "14", NULL, "2017-01-12 19:20:56", "0", "0", "184.66.234.239", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("388", "3", NULL, "2017-01-12 21:17:33", "0", "0", "24.108.212.9", "http://localhost:8888/TestSICPage/wordpress/calendar/action~agenda/page_offset~1/time_limit~1488510001/request_format~html/?request_type=json&ai1ec_doing_ajax=true", "Mozilla/5.0 (iPad; CPU OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("389", "14", NULL, "2017-01-12 22:15:52", "0", "0", "70.66.168.98", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("390", "14", NULL, "2017-01-17 03:42:46", "0", "0", "24.68.113.67", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("391", "14", NULL, "2017-01-17 16:18:30", "0", "0", "50.92.249.152", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows Phone 10.0; Android 6.0.1; Microsoft; Lumia 950 Dual SIM) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Mobile Safari/537.36 Edge/14.14393", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("392", "3", NULL, "2017-01-18 05:45:39", "0", "0", "108.172.163.250", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("393", "14", NULL, "2017-01-18 12:20:35", "0", "0", "125.22.105.35", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("394", "14", NULL, "2017-01-19 03:56:00", "0", "0", "24.69.75.25", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("395", "3", NULL, "2017-01-20 00:39:04", "0", "0", "70.67.51.254", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-january-28-20", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("396", "14", NULL, "2017-01-21 04:25:01", "0", "0", "70.66.186.183", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("397", "3", NULL, "2017-01-23 20:09:18", "0", "0", "184.69.188.106", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("398", "3", NULL, "2017-01-24 18:49:21", "0", "0", "142.36.249.97", "http://localhost:8888/TestSICPage/wordpress/event/the-ebb-and-flow-of-life-6-thursdays-february-2-march-9-2017/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("399", "14", NULL, "2017-01-25 21:30:22", "0", "0", "142.36.26.36", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("400", "14", NULL, "2017-01-27 02:45:54", "0", "0", "24.68.20.54", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("401", "14", NULL, "2017-01-29 09:39:03", "0", "0", "24.68.100.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("402", "14", NULL, "2017-01-31 17:57:51", "0", "0", "24.108.181.27", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("403", "14", NULL, "2017-02-01 00:28:41", "0", "0", "142.36.27.82", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("404", "14", NULL, "2017-02-02 00:24:38", "0", "0", "96.50.25.74", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("405", "14", NULL, "2017-02-06 19:39:56", "0", "0", "24.69.158.171", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("406", "14", NULL, "2017-02-07 01:53:20", "0", "0", "24.69.159.172", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("407", "3", NULL, "2017-02-08 04:08:53", "0", "0", "154.20.232.17", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-saturday-march-18-2017/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("408", "14", NULL, "2017-02-10 20:42:43", "0", "0", "134.87.151.186", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("409", "14", NULL, "2017-02-10 20:55:12", "0", "0", "184.69.184.26", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("410", "14", NULL, "2017-02-10 22:38:47", "0", "0", "184.69.106.198", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("411", "14", NULL, "2017-02-19 21:39:11", "0", "0", "216.232.152.160", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; LG-V522 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("412", "14", NULL, "2017-02-21 18:50:15", "0", "0", "70.67.53.250", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("413", "15", NULL, "2017-02-22 03:01:48", "0", "0", "154.20.41.244", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("414", "14", NULL, "2017-02-22 16:14:38", "0", "0", "24.108.188.215", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("415", "14", NULL, "2017-02-22 19:03:45", "0", "0", "184.69.174.226", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("416", "14", NULL, "2017-02-22 19:07:36", "0", "0", "184.66.134.122", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("417", "14", NULL, "2017-02-23 01:07:55", "0", "0", "154.20.39.22", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.78.2 (KHTML, like Gecko) Version/7.0.6 Safari/537.78.2", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("418", "15", NULL, "2017-02-23 17:44:21", "0", "0", "24.69.186.96", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("419", "14", NULL, "2017-02-25 23:52:16", "0", "0", "184.66.17.217", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("420", "14", NULL, "2017-02-27 17:50:47", "0", "0", "24.108.171.124", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("421", "14", NULL, "2017-02-27 22:57:50", "0", "0", "173.180.44.190", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("422", "14", NULL, "2017-03-02 02:40:54", "0", "0", "134.87.169.155", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 OPR/43.0.2442.991", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("423", "14", NULL, "2017-03-02 18:59:56", "0", "0", "24.68.101.167", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("424", "14", NULL, "2017-03-03 03:02:20", "0", "0", "184.69.173.90", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("425", "10", NULL, "2017-03-07 05:21:55", "0", "0", "96.50.4.172", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("426", "14", NULL, "2017-03-07 17:10:13", "0", "0", "173.195.59.101", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("427", "3", NULL, "2017-03-07 20:56:10", "0", "0", "10.101.131.13", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-saturday-march-18-2017/", "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("428", "14", NULL, "2017-03-07 21:44:25", "0", "0", "199.60.104.18", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("429", "14", NULL, "2017-03-08 18:01:19", "0", "0", "184.69.25.118", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("430", "10", NULL, "2017-03-08 19:08:15", "0", "0", "192.40.235.106", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("431", "15", NULL, "2017-03-09 19:03:24", "0", "0", "24.68.45.80", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("432", "10", NULL, "2017-03-09 21:28:08", "0", "0", "98.158.90.229", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (Linux; Android 7.0; ONEPLUS A3000 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("433", "14", NULL, "2017-03-10 20:44:34", "0", "0", "96.50.96.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("434", "10", NULL, "2017-03-10 21:57:15", "0", "0", "132.246.193.136", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("435", "14", NULL, "2017-03-12 01:45:29", "0", "0", "70.67.164.243", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("436", "15", NULL, "2017-03-13 18:44:03", "0", "0", "24.68.45.80", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G925W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("437", "15", NULL, "2017-03-15 22:28:08", "0", "0", "70.67.164.243", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("438", "14", NULL, "2017-03-16 06:25:24", "0", "0", "184.66.145.43", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("439", "14", NULL, "2017-03-16 19:16:37", "0", "0", "64.34.217.4", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("440", "14", NULL, "2017-03-16 19:35:49", "0", "0", "216.232.155.208", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("441", "14", NULL, "2017-03-16 20:06:19", "0", "0", "24.69.27.66", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 4.4.2; B1-730 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("442", "14", NULL, "2017-03-19 21:48:21", "0", "0", "134.87.170.95", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("443", "15", NULL, "2017-03-21 19:57:15", "0", "0", "184.66.134.167", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("444", "14", NULL, "2017-03-21 22:28:15", "0", "0", "24.68.252.194", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("445", "14", NULL, "2017-03-24 18:02:39", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("446", "14", NULL, "2017-03-24 21:22:26", "0", "0", "24.68.112.59", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G935W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("447", "14", NULL, "2017-03-29 20:32:34", "0", "0", "24.108.6.56", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("448", "16", NULL, "2017-03-30 18:29:29", "0", "0", "184.66.49.231", "http://localhost:8888/TestSICPage/wordpress/client-counsellor-feedback-form/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("449", "14", NULL, "2017-03-31 13:02:24", "0", "0", "24.68.156.86", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("450", "14", NULL, "2017-04-02 17:26:42", "0", "0", "216.232.149.110", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("451", "14", NULL, "2017-04-03 06:06:11", "0", "0", "24.68.143.191", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G920W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("452", "14", NULL, "2017-04-04 05:37:01", "0", "0", "154.20.39.150", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("453", "14", NULL, "2017-04-04 19:43:12", "0", "0", "96.54.58.57", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/57.0.2987.137 Mobile/13G36 Safari/601.1.46", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("454", "14", NULL, "2017-04-06 23:40:47", "0", "0", "70.66.168.47", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("455", "15", NULL, "2017-04-07 15:53:00", "0", "0", "24.69.18.57", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("456", "14", NULL, "2017-04-08 05:40:45", "0", "0", "24.68.227.120", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("457", "14", NULL, "2017-04-10 04:34:50", "0", "0", "24.68.112.59", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G935W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("458", "14", NULL, "2017-04-10 04:48:40", "0", "0", "96.54.234.24", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("459", "10", NULL, "2017-04-11 18:09:08", "0", "0", "142.36.207.136", "http://localhost:8888/TestSICPage/wordpress/event/teen-support-group-saturday-april-22-june-17-2017-except-may-20/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("460", "14", NULL, "2017-04-11 22:01:01", "0", "0", "154.20.32.99", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("461", "14", NULL, "2017-04-11 22:34:54", "0", "0", "96.50.29.52", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("462", "14", NULL, "2017-04-11 22:51:54", "0", "0", "24.69.164.81", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; Moto G (4) Build/NPJ25.93-14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("463", "15", NULL, "2017-04-12 03:17:33", "0", "0", "96.50.17.242", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("464", "15", NULL, "2017-04-12 04:23:38", "0", "0", "64.180.21.231", "http://localhost:8888/TestSICPage/wordpress/event/young-adult-support-group-tuesday-april-18-june-6-2017/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("465", "14", NULL, "2017-04-20 19:26:59", "0", "0", "24.68.109.238", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("466", "14", NULL, "2017-04-21 17:16:33", "0", "0", "207.194.40.8", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("467", "14", NULL, "2017-04-21 21:34:21", "0", "0", "154.20.32.249", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("468", "14", NULL, "2017-04-23 06:27:08", "0", "0", "207.6.120.197", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.2; Pixel Build/N2G47E) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("469", "14", NULL, "2017-04-23 06:48:30", "0", "0", "205.250.181.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("470", "14", NULL, "2017-04-23 23:52:33", "0", "0", "184.66.241.146", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_3_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/57.0.2987.137 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("471", "14", NULL, "2017-04-26 01:54:58", "0", "0", "209.52.88.81", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; XT1563 Build/MPDS24.107-52-3-5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("472", "14", NULL, "2017-04-26 05:11:57", "0", "0", "24.68.116.125", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("473", "14", NULL, "2017-04-27 22:43:32", "0", "0", "142.104.63.53", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("474", "14", NULL, "2017-04-28 19:12:21", "0", "0", "24.108.220.111", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("475", "14", NULL, "2017-04-29 21:37:49", "0", "0", "24.108.186.115", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("476", "14", NULL, "2017-04-30 23:18:52", "0", "0", "154.20.197.158", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("477", "14", NULL, "2017-05-02 21:50:44", "0", "0", "216.240.124.126", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("478", "14", NULL, "2017-05-03 02:36:53", "0", "0", "108.180.243.123", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("479", "14", NULL, "2017-05-03 15:39:00", "0", "0", "70.67.186.18", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("480", "14", NULL, "2017-05-04 22:39:10", "0", "0", "184.66.224.178", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("481", "14", NULL, "2017-05-08 22:28:02", "0", "0", "64.180.188.57", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("482", "14", NULL, "2017-05-09 18:28:08", "0", "0", "204.239.148.2", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("483", "14", NULL, "2017-05-10 18:41:16", "0", "0", "24.68.158.237", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("484", "14", NULL, "2017-05-11 21:04:22", "0", "0", "96.50.106.92", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; SAMSUNG-SM-N910A Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("485", "14", NULL, "2017-05-12 21:17:04", "0", "0", "75.157.26.163", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("486", "14", NULL, "2017-05-12 21:43:13", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("487", "3", NULL, "2017-05-12 21:49:25", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.81 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("488", "14", NULL, "2017-05-16 01:53:55", "0", "0", "24.108.24.50", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("489", "14", NULL, "2017-05-16 17:29:45", "0", "0", "24.69.140.83", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("490", "14", NULL, "2017-05-16 17:58:38", "0", "0", "24.69.140.27", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/58.0.3029.83 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("491", "10", NULL, "2017-05-17 03:09:13", "0", "0", "64.180.74.246", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("492", "10", NULL, "2017-05-17 20:40:28", "0", "0", "24.68.228.217", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-support-group-july-2017/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("493", "10", NULL, "2017-05-18 22:07:52", "0", "0", "184.66.248.195", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-support-group-july-2017/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("494", "10", NULL, "2017-05-19 19:09:04", "0", "0", "24.68.248.196", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/?instance_id=863", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; Win64; x64; Trident/7.0; Touch; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; Tablet PC 2.0)", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("495", "14", NULL, "2017-05-22 01:25:37", "0", "0", "207.164.255.141", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("496", "14", NULL, "2017-05-24 16:57:27", "0", "0", "70.67.45.167", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("497", "14", NULL, "2017-05-24 20:25:19", "0", "0", "96.50.57.105", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("498", "3", NULL, "2017-05-24 20:32:04", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("499", "14", NULL, "2017-05-27 18:55:19", "0", "0", "199.60.109.231", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("500", "14", NULL, "2017-05-31 00:48:29", "0", "0", "184.66.238.247", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("501", "14", NULL, "2017-06-04 02:31:49", "0", "0", "24.68.4.162", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("502", "10", NULL, "2017-06-05 18:21:09", "0", "0", "142.104.18.231", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("503", "10", NULL, "2017-06-07 18:46:13", "0", "0", "96.54.225.248", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("504", "14", NULL, "2017-06-08 20:31:56", "0", "0", "154.20.6.208", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("505", "14", NULL, "2017-06-09 20:18:51", "0", "0", "142.36.106.133", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("506", "14", NULL, "2017-06-09 21:15:24", "0", "0", "209.52.88.145", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("507", "14", NULL, "2017-06-11 03:19:39", "0", "0", "24.108.176.13", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("508", "10", NULL, "2017-06-13 22:50:16", "0", "0", "70.66.168.46", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-support-group-july-2017/", "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("509", "14", NULL, "2017-06-13 23:06:52", "0", "0", "96.50.22.45", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("510", "10", NULL, "2017-06-16 03:44:15", "0", "0", "24.69.136.239", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-support-group-july-2017/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("511", "14", NULL, "2017-06-17 00:56:27", "0", "0", "64.180.86.138", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("512", "14", NULL, "2017-06-19 06:43:37", "0", "0", "154.5.181.171", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("513", "14", NULL, "2017-06-19 19:10:56", "0", "0", "96.54.254.164", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G920W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("514", "3", NULL, "2017-06-20 21:11:01", "0", "0", "184.66.49.231", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("515", "14", NULL, "2017-06-21 02:49:22", "0", "0", "24.68.36.206", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("516", "14", NULL, "2017-06-22 16:12:27", "0", "0", "96.54.240.139", "http://localhost:8888/TestSICPage/wordpress/contact-us/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("517", "3", NULL, "2017-06-27 15:53:06", "0", "0", "24.68.124.237", "http://localhost:8888/TestSICPage/wordpress/courses/register-course-training-program/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("518", "14", NULL, "2017-06-30 02:52:33", "0", "0", "99.199.1.31", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("519", "14", NULL, "2017-06-30 05:56:50", "0", "0", "24.69.149.95", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("520", "14", NULL, "2017-06-30 15:16:51", "0", "0", "184.151.231.29", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("521", "10", NULL, "2017-07-03 00:09:35", "0", "0", "24.108.177.179", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-2-week-workshop-july-3-6-and-10-13-2017/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("522", "14", NULL, "2017-07-03 01:36:25", "0", "0", "24.69.169.227", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:51.0) Gecko/20100101 Firefox/51.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("523", "14", NULL, "2017-07-06 17:59:54", "0", "0", "96.50.22.207", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("524", "14", NULL, "2017-07-08 01:36:28", "0", "0", "24.69.136.239", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("525", "14", NULL, "2017-07-11 16:41:04", "0", "0", "207.194.253.26", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("526", "14", NULL, "2017-07-11 22:32:40", "0", "0", "24.108.164.184", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("527", "14", NULL, "2017-07-13 01:41:20", "0", "0", "209.52.88.27", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("528", "14", NULL, "2017-07-13 15:31:39", "0", "0", "24.68.52.250", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.1; Z850 Build/LMY47O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("529", "14", NULL, "2017-07-13 23:26:25", "0", "0", "70.66.168.46", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/29.0.159059490 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("530", "14", NULL, "2017-07-14 05:09:00", "0", "0", "24.69.140.208", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("531", "14", NULL, "2017-07-15 04:27:42", "0", "0", "24.69.158.195", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("532", "14", NULL, "2017-07-15 05:24:39", "0", "0", "24.69.140.27", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("533", "14", NULL, "2017-07-15 17:59:31", "0", "0", "96.50.105.162", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("534", "14", NULL, "2017-07-15 18:22:10", "0", "0", "184.66.246.158", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("535", "14", NULL, "2017-07-18 00:17:49", "0", "0", "70.67.111.1", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("536", "14", NULL, "2017-07-18 03:04:51", "0", "0", "184.66.255.213", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS x86_64 9460.60.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.92 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("537", "14", NULL, "2017-07-18 17:06:53", "0", "0", "75.154.237.159", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("538", "14", NULL, "2017-07-19 00:16:23", "0", "0", "24.244.32.144", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; HTC One_M8 Build/MRA58K; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("539", "14", NULL, "2017-07-19 23:12:20", "0", "0", "206.87.160.235", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("540", "14", NULL, "2017-07-21 18:36:40", "0", "0", "184.71.11.226", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("541", "14", NULL, "2017-07-22 00:16:34", "0", "0", "184.66.129.87", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("542", "14", NULL, "2017-07-27 06:34:04", "0", "0", "24.68.116.221", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-G903W Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("543", "14", NULL, "2017-07-27 15:55:09", "0", "0", "66.183.174.248", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.1.1; E6560T Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("544", "14", NULL, "2017-07-28 00:21:31", "0", "0", "64.180.190.16", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("545", "14", NULL, "2017-08-01 18:43:28", "0", "0", "24.69.188.123", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("546", "14", NULL, "2017-08-01 21:06:29", "0", "0", "96.50.28.78", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("547", "14", NULL, "2017-08-01 22:21:57", "0", "0", "24.68.130.38", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("548", "14", NULL, "2017-08-03 02:50:01", "0", "0", "104.142.118.10", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; HTC 10 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("549", "14", NULL, "2017-08-04 00:29:40", "0", "0", "184.71.25.154", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; Nexus 6 Build/NBD92G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("550", "14", NULL, "2017-08-06 22:09:04", "0", "0", "24.108.12.127", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("551", "14", NULL, "2017-08-08 17:10:54", "0", "0", "24.108.172.203", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("552", "14", NULL, "2017-08-08 20:03:17", "0", "0", "24.68.106.219", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.2; Pixel Build/NJH47D) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("553", "14", NULL, "2017-08-10 03:16:52", "0", "0", "24.68.144.224", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G920W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("554", "14", NULL, "2017-08-14 15:27:17", "0", "0", "70.67.58.138", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("555", "8", NULL, "2017-08-15 22:35:06", "0", "0", "70.67.51.254", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("556", "14", NULL, "2017-08-18 19:00:14", "0", "0", "70.67.60.170", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("557", "14", NULL, "2017-08-19 16:41:31", "0", "0", "96.50.26.59", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("558", "14", NULL, "2017-08-23 23:15:48", "0", "0", "2001:569:6fe3:ef51:0:4d:346b:3b01", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G920W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.107 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("559", "14", NULL, "2017-08-24 19:25:24", "0", "0", "24.108.19.129", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("560", "14", NULL, "2017-08-28 07:37:26", "0", "0", "64.180.190.16", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("561", "14", NULL, "2017-08-28 21:08:27", "0", "0", "96.50.25.118", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Android 6.0.1; Mobile; rv:55.0) Gecko/55.0 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("562", "14", NULL, "2017-08-29 18:06:31", "0", "0", "154.5.182.123", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("563", "14", NULL, "2017-08-29 18:36:17", "0", "0", "184.69.173.146", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("564", "3", NULL, "2017-08-30 23:59:51", "0", "0", "89.175.148.162", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("565", "14", NULL, "2017-08-31 14:28:42", "0", "0", "104.142.123.32", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("566", "14", NULL, "2017-09-02 05:11:17", "0", "0", "184.66.49.28", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("567", "14", NULL, "2017-09-02 05:53:51", "0", "0", "184.66.36.188", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("568", "14", NULL, "2017-09-02 06:33:07", "0", "0", "184.66.36.188", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("569", "3", NULL, "2017-09-02 14:38:45", "0", "0", "70.67.60.133", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-october-28-20", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("570", "8", NULL, "2017-09-07 03:21:30", "0", "0", "154.20.234.215", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("571", "3", NULL, "2017-09-07 18:15:34", "0", "0", "142.36.92.50", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-october-28-20", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("572", "14", NULL, "2017-09-07 19:44:44", "0", "0", "184.151.231.172", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.116 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("573", "14", NULL, "2017-09-07 20:42:45", "0", "0", "184.151.231.172", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.116 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("574", "14", NULL, "2017-09-08 16:29:28", "0", "0", "108.180.146.220", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("575", "3", NULL, "2017-09-09 07:02:18", "0", "0", "190.60.234.131", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("576", "14", NULL, "2017-09-12 17:31:41", "0", "0", "96.54.252.91", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("577", "14", NULL, "2017-09-13 10:48:32", "0", "0", "24.68.142.228", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("578", "8", NULL, "2017-09-13 15:14:48", "0", "0", "173.183.79.145", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("579", "14", NULL, "2017-09-13 15:50:07", "0", "0", "209.52.88.28", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("580", "3", NULL, "2017-09-14 23:24:49", "0", "0", "70.66.168.136", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("581", "3", NULL, "2017-09-15 05:19:36", "0", "0", "99.199.3.13", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.116 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("582", "3", NULL, "2017-09-15 05:55:29", "0", "0", "154.5.208.18", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("583", "14", NULL, "2017-09-17 22:23:05", "0", "0", "24.108.166.170", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("584", "14", NULL, "2017-09-18 05:59:35", "0", "0", "207.6.123.98", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("585", "3", NULL, "2017-09-18 20:48:22", "0", "0", "108.180.6.77", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("586", "3", NULL, "2017-09-18 22:40:45", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-for-teens-%ef%bc%883-sessions-saturdays-oct-14-nov-4-2017/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("587", "8", NULL, "2017-09-19 17:38:13", "0", "0", "154.20.4.5", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) CriOS/61.0.3163.73 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("588", "8", NULL, "2017-09-19 21:46:41", "0", "0", "70.67.107.36", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("589", "14", NULL, "2017-09-20 02:23:50", "0", "0", "108.180.146.220", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("590", "3", NULL, "2017-09-20 18:38:09", "0", "0", "70.66.175.202", "http://localhost:8888/TestSICPage/wordpress/event/making-it-work-for-teens-%ef%bc%883-sessions-saturdays-oct-14-nov-4-2017/", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("591", "14", NULL, "2017-09-20 22:27:36", "0", "0", "184.69.11.186", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("592", "14", NULL, "2017-09-21 02:56:54", "0", "0", "172.218.195.146", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("593", "8", NULL, "2017-09-21 03:59:21", "0", "0", "154.20.7.128", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:48.0) Gecko/20100101 Firefox/48.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("594", "8", NULL, "2017-09-25 03:29:44", "0", "0", "24.69.160.117", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("595", "8", NULL, "2017-09-26 05:29:31", "0", "0", "154.20.28.35", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("596", "14", NULL, "2017-09-27 19:38:40", "0", "0", "216.232.156.190", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("597", "8", NULL, "2017-09-28 22:26:12", "0", "0", "184.66.137.14", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (iPad; CPU OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("598", "14", NULL, "2017-09-29 22:40:23", "0", "0", "96.50.12.26", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("599", "14", NULL, "2017-09-30 15:58:10", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("600", "3", NULL, "2017-10-01 00:25:06", "0", "0", "154.16.89.98", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("601", "8", NULL, "2017-10-02 19:20:36", "0", "0", "24.108.28.108", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("602", "8", NULL, "2017-10-03 16:38:30", "0", "0", "24.68.35.40", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("603", "3", NULL, "2017-10-04 04:27:58", "0", "0", "24.108.13.92", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/23.1.148956103 Mobile/12H321 Safari/600.1.4", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("604", "8", NULL, "2017-10-04 20:32:22", "0", "0", "24.68.35.40", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("605", "3", NULL, "2017-10-04 20:39:33", "0", "0", "96.54.227.7", "http://localhost:8888/TestSICPage/wordpress/event/15175/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("606", "8", NULL, "2017-10-05 22:23:19", "0", "0", "24.108.184.241", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("607", "3", NULL, "2017-10-07 04:16:47", "0", "0", "96.50.18.5", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("608", "3", NULL, "2017-10-09 13:50:29", "0", "0", "216.121.132.118", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("609", "8", NULL, "2017-10-09 20:53:35", "0", "0", "154.20.6.166", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("610", "14", NULL, "2017-10-10 02:22:39", "0", "0", "216.232.148.95", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:56.0) Gecko/20100101 Firefox/56.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("611", "8", NULL, "2017-10-10 18:08:26", "0", "0", "184.71.21.162", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("612", "14", NULL, "2017-10-10 19:11:14", "0", "0", "198.103.109.141", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("613", "8", NULL, "2017-10-10 19:21:19", "0", "0", "216.232.155.179", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:56.0) Gecko/20100101 Firefox/56.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("614", "8", NULL, "2017-10-10 20:27:05", "0", "0", "70.67.110.128", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("615", "8", NULL, "2017-10-11 02:15:53", "0", "0", "64.180.23.107", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:55.0) Gecko/20100101 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("616", "8", NULL, "2017-10-11 16:29:08", "0", "0", "24.244.32.246", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("617", "3", NULL, "2017-10-11 16:49:40", "0", "0", "24.68.106.237", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_2 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A421 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("618", "14", NULL, "2017-10-12 16:24:32", "0", "0", "64.251.78.50", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("619", "3", NULL, "2017-10-13 02:35:49", "0", "0", "64.66.25.129", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Linux; Android 5.1; XT1032 Build/LPBS23.13-57-2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("620", "8", NULL, "2017-10-13 06:30:32", "0", "0", "184.69.126.246", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-workshop-saturday-october-14-2017-facilitators-bill-cole-and-margaret-anderson/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("621", "14", NULL, "2017-10-14 09:09:20", "0", "0", "96.54.246.107", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36 OPR/48.0.2685.35", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("622", "14", NULL, "2017-10-15 18:58:58", "0", "0", "70.67.53.71", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("623", "3", NULL, "2017-10-16 20:34:01", "0", "0", "154.20.28.35", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-oct-19-nov-23-2017-7pm-9pm/", "Mozilla/5.0 (iPad; CPU OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("624", "3", NULL, "2017-10-18 04:58:42", "0", "0", "173.183.79.145", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("625", "14", NULL, "2017-10-20 19:47:34", "0", "0", "24.108.24.162", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("626", "14", NULL, "2017-10-22 22:12:35", "0", "0", "98.158.90.229", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("627", "14", NULL, "2017-10-24 03:42:31", "0", "0", "96.54.236.52", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/37.1.171590344 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("628", "14", NULL, "2017-10-25 20:41:00", "0", "0", "184.66.236.32", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("629", "3", NULL, "2017-10-27 22:00:38", "0", "0", "24.108.0.171", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 6.1; rv:56.0) Gecko/20100101 Firefox/56.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("630", "14", NULL, "2017-10-27 22:54:42", "0", "0", "24.108.164.74", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("631", "14", NULL, "2017-10-31 20:35:51", "0", "0", "24.108.174.202", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("632", "14", NULL, "2017-10-31 21:00:52", "0", "0", "184.66.239.73", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.1.1; SAMSUNG SM-J500FN Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.3 Chrome/38.0.2125.102 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("633", "14", NULL, "2017-11-02 16:45:21", "0", "0", "96.54.240.139", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("634", "14", NULL, "2017-11-02 20:36:37", "0", "0", "75.157.26.64", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("635", "14", NULL, "2017-11-06 20:33:05", "0", "0", "134.87.139.116", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 5.0.1; SGH-I337M Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.98 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("636", "14", NULL, "2017-11-07 07:05:56", "0", "0", "24.69.25.215", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("637", "14", NULL, "2017-11-10 20:12:11", "0", "0", "173.183.122.106", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; LG-H873 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.84 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("638", "14", NULL, "2017-11-14 02:15:42", "0", "0", "24.69.174.133", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:55.0) Gecko/20100101 Firefox/55.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("639", "14", NULL, "2017-11-14 16:46:04", "0", "0", "66.51.139.243", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("640", "14", NULL, "2017-11-14 20:02:33", "0", "0", "207.194.133.9", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("641", "14", NULL, "2017-11-15 01:59:48", "0", "0", "75.154.240.119", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("642", "14", NULL, "2017-11-16 05:48:34", "0", "0", "24.244.32.215", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("643", "14", NULL, "2017-11-16 07:09:30", "0", "0", "172.218.195.112", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("644", "14", NULL, "2017-11-18 00:31:12", "0", "0", "96.54.241.201", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B150 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("645", "14", NULL, "2017-11-19 16:32:09", "0", "0", "104.142.127.38", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0.1; SM-J320W8 Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.84 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("646", "14", NULL, "2017-11-19 22:09:59", "0", "0", "24.108.26.82", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS armv7l 9901.66.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.82 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("647", "14", NULL, "2017-11-21 20:49:10", "0", "0", "24.68.101.61", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("648", "14", NULL, "2017-11-23 23:09:29", "0", "0", "24.69.154.212", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("649", "14", NULL, "2017-11-26 23:43:30", "0", "0", "184.66.50.16", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_2 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Mobile/15A421 [FBAN/MessengerForiOS;FBAV/144.0.0.30.133;FBBV/80159736;FBDV/iPhone10,5;FBMD/iPhone;FBSN/iOS;FBSV/11.0.2;FBSS/3;FBCR/Rogers;FBID/phone;FBL", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("650", "14", NULL, "2017-11-28 17:45:20", "0", "0", "24.68.44.253", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("651", "14", NULL, "2017-11-28 20:41:46", "0", "0", "75.154.236.71", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("652", "3", NULL, "2017-11-30 15:46:20", "0", "0", "5.189.201.107", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("653", "14", NULL, "2017-12-01 00:02:01", "0", "0", "24.108.33.69", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("654", "14", NULL, "2017-12-01 15:01:18", "0", "0", "154.5.210.186", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("655", "14", NULL, "2017-12-09 23:39:52", "0", "0", "70.67.181.214", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("656", "14", NULL, "2017-12-11 04:48:52", "0", "0", "24.68.137.88", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("657", "14", NULL, "2017-12-11 21:46:36", "0", "0", "96.50.61.101", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_2 like Mac OS X) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.0 Mobile/14F89 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("658", "14", NULL, "2017-12-11 22:05:08", "0", "0", "24.108.28.65", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.1; Moto X Play Build/NPD26.48-24-1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.83 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("659", "14", NULL, "2017-12-15 00:20:52", "0", "0", "24.108.203.48", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (X11; CrOS x86_64 9901.77.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.97 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("660", "14", NULL, "2017-12-30 17:41:06", "0", "0", "72.143.224.189", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/27.0.155813979 Mobile/15C153 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("661", "14", NULL, "2018-01-04 19:44:13", "0", "0", "24.69.11.33", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.108 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("662", "14", NULL, "2018-01-05 18:34:10", "0", "0", "96.50.120.23", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("663", "14", NULL, "2018-01-07 21:51:35", "0", "0", "134.87.137.240", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("664", "18", NULL, "2018-01-08 23:22:13", "0", "0", "96.50.5.195", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-18-2018/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, "6", NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("665", "3", NULL, "2018-01-09 18:20:57", "0", "0", "96.54.232.157", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("666", "3", NULL, "2018-01-09 18:23:52", "0", "0", "96.54.232.157", "http://localhost:8888/TestSICPage/wordpress/training/register-course-training-program/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("667", "14", NULL, "2018-01-09 20:15:12", "0", "0", "154.5.205.18", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("668", "18", NULL, "2018-01-11 19:04:33", "0", "0", "184.66.42.23", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-18-2018/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("669", "14", NULL, "2018-01-15 07:29:53", "0", "0", "184.66.139.71", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("670", "18", NULL, "2018-01-15 18:01:08", "0", "0", "154.20.28.35", "http://localhost:8888/TestSICPage/wordpress/event/pastoral-care-team-training-the-nuts-and-bolts-of-forming-maintaining-and-nurturing-your-team-january-18-2018/", "Mozilla/5.0 (iPad; CPU OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("671", "14", NULL, "2018-01-16 02:41:47", "0", "0", "108.180.146.220", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("672", "14", NULL, "2018-01-17 00:13:25", "0", "0", "154.5.182.82", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("673", "14", NULL, "2018-01-18 00:04:24", "0", "0", "70.67.230.197", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.1; SAMSUNG SM-T350 Build/NMF26X) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/6.2 Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("674", "14", NULL, "2018-01-18 00:04:39", "0", "0", "70.67.230.197", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.1.1; SAMSUNG SM-T350 Build/NMF26X) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/6.2 Chrome/56.0.2924.87 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("675", "14", NULL, "2018-01-18 05:55:54", "0", "0", "184.66.145.43", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("676", "3", NULL, "2018-01-23 00:11:04", "0", "0", "108.180.147.111", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-feb-8-mar-15-2018-7pm-9pm/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("677", "14", NULL, "2018-01-23 00:54:45", "0", "0", "154.20.90.229", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("678", "14", NULL, "2018-01-24 10:10:29", "0", "0", "64.180.23.148", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("679", "14", NULL, "2018-01-25 03:14:42", "0", "0", "134.87.172.238", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("680", "14", NULL, "2018-01-28 23:00:33", "0", "0", "154.20.199.212", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("681", "14", NULL, "2018-01-29 04:50:39", "0", "0", "96.50.28.81", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("682", "3", NULL, "2018-01-29 20:23:34", "0", "0", "108.180.147.111", "http://localhost:8888/TestSICPage/wordpress/event/living-loss-part-1-introduction-grief-loss-thursdays-feb-8-mar-15-2018-7pm-9pm/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_2 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("683", "14", NULL, "2018-01-30 01:48:29", "0", "0", "24.69.160.103", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_1 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B150 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("684", "14", NULL, "2018-01-30 21:46:37", "0", "0", "184.69.181.174", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("685", "14", NULL, "2018-01-31 23:48:35", "0", "0", "142.36.194.64", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("686", "14", NULL, "2018-02-01 00:36:52", "0", "0", "45.44.120.34", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("687", "14", NULL, "2018-02-04 21:30:20", "0", "0", "154.20.30.110", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G935W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.137 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("688", "14", NULL, "2018-02-05 23:46:40", "0", "0", "184.69.98.174", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("689", "3", NULL, "2018-02-09 02:55:54", "0", "0", "24.108.220.83", "http://localhost:8888/TestSICPage/wordpress/event/triple-p-positive-parenting-program-wednesdays-jmar-28-may-16-2018-7pm-9pm/", "Mozilla/5.0 (Linux; Android 7.0; LG-H831 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.137 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("690", "14", NULL, "2018-02-11 00:16:19", "0", "0", "70.65.234.43", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 11_2_5 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D60 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("691", "14", NULL, "2018-02-13 20:13:33", "0", "0", "24.69.162.74", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("692", "14", NULL, "2018-02-16 21:38:03", "0", "0", "64.180.23.187", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("693", "3", NULL, "2018-02-18 03:36:47", "0", "0", "184.66.37.195", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-personality-an-introduction-to-the-myers-briggs-type-indicator-mbti-and-your-personality-preference-saturday-may-26-2018-2", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("694", "14", NULL, "2018-02-18 19:32:10", "0", "0", "184.66.232.233", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SM-G925W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.137 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("695", "14", NULL, "2018-02-19 17:41:30", "0", "0", "184.66.49.224", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("696", "14", NULL, "2018-02-19 19:25:08", "0", "0", "24.108.48.16", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("697", "14", NULL, "2018-02-20 02:36:22", "0", "0", "154.5.210.62", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("698", "14", NULL, "2018-02-21 18:44:10", "0", "0", "66.244.240.225", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:57.0) Gecko/20100101 Firefox/57.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("699", "14", NULL, "2018-02-22 00:10:23", "0", "0", "184.69.108.166", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("700", "14", NULL, "2018-02-22 03:25:38", "0", "0", "24.68.109.145", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("701", "14", NULL, "2018-02-25 16:40:15", "0", "0", "70.67.107.142", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("702", "14", NULL, "2018-02-26 18:07:13", "0", "0", "70.67.116.148", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("703", "14", NULL, "2018-02-26 20:36:22", "0", "0", "24.244.32.200", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0_3 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A432 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("704", "14", NULL, "2018-02-27 07:03:49", "0", "0", "205.250.183.217", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("705", "14", NULL, "2018-02-27 19:28:33", "0", "0", "216.113.204.43", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("706", "14", NULL, "2018-02-27 22:35:00", "0", "0", "108.180.147.111", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_5 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D60 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("707", "3", NULL, "2018-02-28 23:20:50", "0", "0", "96.54.241.191", "http://localhost:8888/TestSICPage/wordpress/event/triple-p-positive-parenting-program-wednesdays-jmar-28-may-16-2018-7pm-9pm/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("708", "14", NULL, "2018-03-01 22:07:47", "0", "0", "70.66.167.205", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("709", "14", NULL, "2018-03-02 03:30:27", "0", "0", "209.52.88.129", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 8.1.0; Pixel 2 Build/OPM1.171019.019; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/64.0.3282.137 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("710", "14", NULL, "2018-03-02 04:55:51", "0", "0", "96.50.18.131", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("711", "14", NULL, "2018-03-03 23:59:44", "0", "0", "75.154.241.251", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("712", "3", NULL, "2018-03-06 02:19:19", "0", "0", "24.108.38.201", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-family-an-introduction-an-introduction-to-bowen-family-systems-thinking-and-family-dynamics-friday-night-april-27-saturday", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("713", "14", NULL, "2018-03-08 21:40:01", "0", "0", "154.5.210.5", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 6.0; LG-H812 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("714", "14", NULL, "2018-03-08 23:35:58", "0", "0", "24.108.25.92", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("715", "14", NULL, "2018-03-09 20:02:54", "0", "0", "96.54.238.13", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("716", "14", NULL, "2018-03-10 21:21:04", "0", "0", "24.108.14.71", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("717", "3", NULL, "2018-03-18 00:48:44", "0", "0", "184.66.33.103", "http://localhost:8888/TestSICPage/wordpress/event/support-group-for-stress-and-anxiety-thursdays-march-29-april-19-2018/", "Mozilla/5.0 (iPad; CPU OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B202 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("718", "14", NULL, "2018-03-19 16:26:17", "0", "0", "209.52.88.221", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("719", "14", NULL, "2018-03-21 01:46:20", "0", "0", "24.65.142.192", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("720", "14", NULL, "2018-03-22 14:51:23", "0", "0", "24.108.126.185", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Linux; Android 7.0; SAMSUNG SM-G930W8 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/6.4 Chrome/56.0.2924.87 Mobile Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("721", "14", NULL, "2018-03-26 00:19:51", "0", "0", "24.108.176.69", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("722", "14", NULL, "2018-03-26 00:53:21", "0", "0", "96.54.230.238", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("723", "14", NULL, "2018-03-26 16:29:25", "0", "0", "172.218.233.62", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("724", "3", NULL, "2018-03-27 05:33:17", "0", "0", "24.108.194.40", "http://localhost:8888/TestSICPage/wordpress/event/me-and-my-family-an-introduction-an-introduction-to-bowen-family-systems-thinking-and-family-dynamics-friday-night-april-27-saturday", "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("725", "14", NULL, "2018-04-02 21:58:43", "0", "0", "162.158.146.57", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("726", "14", NULL, "2018-04-03 22:09:33", "0", "0", "162.158.146.111", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("727", "14", NULL, "2018-04-24 14:53:20", "0", "0", "154.20.233.227", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("728", "14", NULL, "2018-04-24 16:30:19", "0", "0", "50.99.160.126", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, "3", NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("729", "14", NULL, "2018-04-24 21:25:48", "0", "0", "96.54.226.202", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);
INSERT INTO `wp_rg_lead` VALUES("730", "14", NULL, "2018-04-25 20:03:48", "0", "0", "107.190.20.36", "http://localhost:8888/TestSICPage/wordpress/leave-a-comment-2/", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36", "CAD", NULL, NULL, NULL, NULL, NULL, NULL, NULL, "active", NULL);

/* INSERT TABLE DATA: wp_rg_lead_detail */
INSERT INTO `wp_rg_lead_detail` VALUES("1", "1", "1", "1.3", "Susanne");
INSERT INTO `wp_rg_lead_detail` VALUES("2", "1", "1", "1.6", "Reul-Zastre");
INSERT INTO `wp_rg_lead_detail` VALUES("3", "1", "1", "2", "sreul@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4", "1", "1", "3", "Test");
INSERT INTO `wp_rg_lead_detail` VALUES("5", "2", "2", "1.3", "Susanne");
INSERT INTO `wp_rg_lead_detail` VALUES("6", "2", "2", "1.6", "Reul-Zastre");
INSERT INTO `wp_rg_lead_detail` VALUES("7", "2", "2", "2", "sreul@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("10", "3", "1", "1.3", "Laurel");
INSERT INTO `wp_rg_lead_detail` VALUES("11", "3", "1", "1.6", "Lawford");
INSERT INTO `wp_rg_lead_detail` VALUES("12", "3", "1", "2", "lasl52@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("13", "3", "1", "3", "This is a message for Bill Cole. I left a message for you last Friday but am just wanting to make sure you received it. The next day I have off available for an appointment is Tuesday Aug 5th. Please let me know if sometime that day would work. Thank you.");
INSERT INTO `wp_rg_lead_detail` VALUES("14", "4", "2", "1.3", "Kim");
INSERT INTO `wp_rg_lead_detail` VALUES("15", "4", "2", "1.6", "Watt");
INSERT INTO `wp_rg_lead_detail` VALUES("16", "4", "2", "2", "prostar99@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("17", "4", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("18", "5", "1", "1.3", "mario");
INSERT INTO `wp_rg_lead_detail` VALUES("19", "5", "1", "1.6", "roy");
INSERT INTO `wp_rg_lead_detail` VALUES("20", "5", "1", "2", "Mario.roy@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("21", "5", "1", "3", "Hi there,  me and my fiancÃ© are looking to get married and i was told by my padre on base that I need a course to get married and he gave me your contact information.  I am just wondering what course this would be and what the cost would be. \r\n\r\nThank you for your time");
INSERT INTO `wp_rg_lead_detail` VALUES("22", "6", "3", "1.3", "Carol");
INSERT INTO `wp_rg_lead_detail` VALUES("23", "6", "3", "1.6", "Straiton");
INSERT INTO `wp_rg_lead_detail` VALUES("24", "6", "3", "2", "cstraiton@pacificcoast.net");
INSERT INTO `wp_rg_lead_detail` VALUES("25", "6", "3", "3.1", "3114 Flannagan Place");
INSERT INTO `wp_rg_lead_detail` VALUES("26", "6", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("27", "6", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("28", "6", "3", "3.5", "V9B 5K5");
INSERT INTO `wp_rg_lead_detail` VALUES("29", "6", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("30", "6", "3", "4", "(250)474-2883");
INSERT INTO `wp_rg_lead_detail` VALUES("31", "6", "3", "7", "10/04/2014");
INSERT INTO `wp_rg_lead_detail` VALUES("32", "6", "3", "5", "Pastoral Counselling Training Workshop on Oct. 4th , 2014");
INSERT INTO `wp_rg_lead_detail` VALUES("33", "7", "2", "1.3", "Marija");
INSERT INTO `wp_rg_lead_detail` VALUES("34", "7", "2", "1.6", "Filipovic");
INSERT INTO `wp_rg_lead_detail` VALUES("35", "7", "2", "2", "marija.filipovic@viha.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("36", "7", "2", "6.3", "Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("37", "8", "2", "1.3", "Helen");
INSERT INTO `wp_rg_lead_detail` VALUES("38", "8", "2", "1.6", "Halpert");
INSERT INTO `wp_rg_lead_detail` VALUES("39", "8", "2", "2", "helen.halpert2@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("40", "8", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("41", "9", "2", "1.3", "Dianne");
INSERT INTO `wp_rg_lead_detail` VALUES("42", "9", "2", "1.6", "Collery");
INSERT INTO `wp_rg_lead_detail` VALUES("43", "9", "2", "2", "diannecollery@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("44", "9", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("45", "10", "2", "1.3", "Colleen");
INSERT INTO `wp_rg_lead_detail` VALUES("46", "10", "2", "1.6", "Cahoon");
INSERT INTO `wp_rg_lead_detail` VALUES("47", "10", "2", "2", "colleen.cahoon@forces.gc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("48", "10", "2", "6.3", "Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("49", "11", "2", "1.3", "Barbara");
INSERT INTO `wp_rg_lead_detail` VALUES("50", "11", "2", "1.6", "Underhill");
INSERT INTO `wp_rg_lead_detail` VALUES("51", "11", "2", "2", "bunderhill2012@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("52", "11", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("53", "12", "2", "1.3", "Terry");
INSERT INTO `wp_rg_lead_detail` VALUES("54", "12", "2", "1.6", "Harper");
INSERT INTO `wp_rg_lead_detail` VALUES("55", "12", "2", "2", "terry.harper@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("56", "12", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("57", "13", "1", "1.3", "David");
INSERT INTO `wp_rg_lead_detail` VALUES("58", "13", "1", "1.6", "Southern");
INSERT INTO `wp_rg_lead_detail` VALUES("59", "13", "1", "2", "southern_david@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("60", "13", "1", "3", "Hello, your agency was recommended by Kiran Bolaria,Transition Team Case Manager for the Victoria Mental Health Centre as a resource to provide help for my daughter, Nahanni, who is 40 years old.\r\n\r\nNahanni is very depressed and feels her life is not worth living, although certainly some of the depression is attributable to not quite having her meds balanced at the moment.  She has had some psychotic episodes in the past (she went off her meds a couple of months ago and ended up delusional and was apprehended under the mental health act and spent a couple of weeks at the Jubilee Psych ward).  She\'s been diagnosed in the past with schizophrenia and/or borderline personality disorder.  She was also struck by a car about 8 years ago and was in a coma for a couple of days, while she\'s recovered amazingly well I think it has had an impact on her memory and judgement.  She\'s been on long term disability through social assistance since then.\r\n\r\nSome of her problems stem from a psychologically abusive relationship with her mother (who fits the description of a narcissistic mother fairly closely, I think).  Since then she\'s had 3 or 4 relationships with males that I would also describe as abusive.  She very much wants a social life but is afraid to be around people.\r\n\r\nAnyway, I think that she has a number of issues from her past that she hasn\'t been able to successfully deal with or unpack on her own and she has (finally) agreed that a therapist/counselling might be able to help her move forward and begin to find some happiness in her life.\r\n\r\nAs I mentioned, she is on Long Term Disability and thus has income of less than $12,000 per year, however, I am able to cover the cost of her therapy (I\'m retired - my income is under $50,000 per year).  Do you think you would be able to provide some assistance to Nahanni?  She is open to counselling/therapy but, at this time, lacks the initiative to make the first move, which is why you\'re hearing from me and not her.\r\n\r\n");
INSERT INTO `wp_rg_lead_detail` VALUES("61", "14", "1", "1.3", "Whitney");
INSERT INTO `wp_rg_lead_detail` VALUES("62", "14", "1", "1.6", "Hobbs");
INSERT INTO `wp_rg_lead_detail` VALUES("63", "14", "1", "2", "the.math.geek@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("64", "14", "1", "5", "(250)884-5100");
INSERT INTO `wp_rg_lead_detail` VALUES("65", "14", "1", "3", "I am interested in communicating with Rosemary Merritt about possible counseling. If you could have her email me so we can see if it\'s the right fit, that would be appreciated. \r\n\r\nThank you,\r\n\r\nWhitney");
INSERT INTO `wp_rg_lead_detail` VALUES("66", "15", "1", "1.3", "Amber");
INSERT INTO `wp_rg_lead_detail` VALUES("67", "15", "1", "1.6", "Olson");
INSERT INTO `wp_rg_lead_detail` VALUES("68", "15", "1", "2", "amolson1012@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("69", "15", "1", "5", "(250)884-0144");
INSERT INTO `wp_rg_lead_detail` VALUES("70", "15", "1", "3", "Hello\r\nI am a licensed mental health practitioner recently moved here from Nebraska. I have my Masters in Counselling from UVic and have been practicing as a therapist in Nebraska since 2007 and have 3000 hours of direct and in-direct supervision combined. I found out that to become a registered clinical counsellor here in BC I need an additional 25 hours of \"observed\" supervision and I\'m wondering if I can make an appointment with Bill Cole so that I could see clients as an intern and get this criteria met. \r\nOr, if there is someone there who would have any other suggestions for me, I would really appreciate it! It\'s challenging to have to go through this process when I\'ve already been working as a therapist but I understand the concept of \"when in Rome...\". Please get back to me as soon as possible because the next BC College of Counsellors\' review date is December 1\r\nAmber Olson, M.Ed.");
INSERT INTO `wp_rg_lead_detail` VALUES("71", "16", "1", "1.3", "Erica");
INSERT INTO `wp_rg_lead_detail` VALUES("72", "16", "1", "1.6", "Giroux");
INSERT INTO `wp_rg_lead_detail` VALUES("73", "16", "1", "2", "ericagiroux@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("74", "16", "1", "5", "(250)896-9574");
INSERT INTO `wp_rg_lead_detail` VALUES("75", "16", "1", "3", "Hello,\r\n\r\nI would like to book an initial appointment to talk about getting some counselling services. What do I need to do to book this appointment?\r\n\r\nThank you,\r\nErica Giroux");
INSERT INTO `wp_rg_lead_detail` VALUES("76", "17", "1", "1.3", "Laurel");
INSERT INTO `wp_rg_lead_detail` VALUES("77", "17", "1", "1.6", "Lawford");
INSERT INTO `wp_rg_lead_detail` VALUES("78", "17", "1", "2", "lasl52@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("79", "17", "1", "5", "(778)426-3228");
INSERT INTO `wp_rg_lead_detail` VALUES("80", "17", "1", "3", "Hello Bill,\r\n\r\nI would be able to have an appointment with you on Friday Sept. 12th or 19th. Preferable times are between 11 & 2, however I can try to make alternate arrangements to try to fit in at another time.\r\n\r\nThank you,\r\n\r\nLaurel");
INSERT INTO `wp_rg_lead_detail` VALUES("81", "18", "3", "1.3", "Frances");
INSERT INTO `wp_rg_lead_detail` VALUES("82", "18", "3", "1.6", "Pook");
INSERT INTO `wp_rg_lead_detail` VALUES("83", "18", "3", "2", "bryderbay@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("84", "18", "3", "3.1", "2 - 1203 Beach Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("85", "18", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("86", "18", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("87", "18", "3", "3.5", "V8S 2N2");
INSERT INTO `wp_rg_lead_detail` VALUES("88", "18", "3", "4", "(250)360-0507");
INSERT INTO `wp_rg_lead_detail` VALUES("89", "18", "3", "7", "October 4, 2014");
INSERT INTO `wp_rg_lead_detail` VALUES("90", "18", "3", "5", "Pastoral Care Team Training");
INSERT INTO `wp_rg_lead_detail` VALUES("91", "19", "2", "1.3", "joanna");
INSERT INTO `wp_rg_lead_detail` VALUES("92", "19", "2", "1.6", "titus");
INSERT INTO `wp_rg_lead_detail` VALUES("93", "19", "2", "2", "joanna.titus@viha.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("94", "19", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("95", "20", "2", "1.3", "Barb");
INSERT INTO `wp_rg_lead_detail` VALUES("96", "20", "2", "1.6", "Johnson");
INSERT INTO `wp_rg_lead_detail` VALUES("97", "20", "2", "2", "brj_johnson@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("98", "20", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("99", "21", "1", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("100", "21", "1", "1.6", "Freeman");
INSERT INTO `wp_rg_lead_detail` VALUES("101", "21", "1", "2", "karenfreeman@coscowichan.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("102", "21", "1", "5", "(250)748-0232");
INSERT INTO `wp_rg_lead_detail` VALUES("103", "21", "1", "3", "Hello!  We are looking for a staff inservice/training around trauma-informed practice.  We are a not for profit counselling agency (for teens and their families) in the Cowichan Valley.  We engaged you 4-5 yrs ago to do a training in family therapy.  I would be interested in talking  about having you do another training with us.  Thanks!");
INSERT INTO `wp_rg_lead_detail` VALUES("104", "22", "3", "1.3", "susan");
INSERT INTO `wp_rg_lead_detail` VALUES("105", "22", "3", "1.6", "ghitan");
INSERT INTO `wp_rg_lead_detail` VALUES("106", "22", "3", "2", "ghitan@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("107", "22", "3", "3.1", "1609 knight ave");
INSERT INTO `wp_rg_lead_detail` VALUES("108", "22", "3", "3.3", "1609  knight ave");
INSERT INTO `wp_rg_lead_detail` VALUES("109", "22", "3", "3.4", "bc");
INSERT INTO `wp_rg_lead_detail` VALUES("110", "22", "3", "3.5", "victoria V8P 1L2");
INSERT INTO `wp_rg_lead_detail` VALUES("111", "22", "3", "4", "(250)592-7076");
INSERT INTO `wp_rg_lead_detail` VALUES("112", "22", "3", "7", "10/04/2014");
INSERT INTO `wp_rg_lead_detail` VALUES("113", "22", "3", "5", "Pastoral Care Tean Training");
INSERT INTO `wp_rg_lead_detail` VALUES("115", "23", "1", "1.3", "Linda");
INSERT INTO `wp_rg_lead_detail` VALUES("116", "23", "1", "1.6", "pinay");
INSERT INTO `wp_rg_lead_detail` VALUES("117", "23", "1", "2", "lpinay1@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("118", "23", "1", "5", "(250)478-6782");
INSERT INTO `wp_rg_lead_detail` VALUES("119", "23", "1", "3", "Hi,  how long does it take to get an appointment with a trauma/grief counsellor?");
INSERT INTO `wp_rg_lead_detail` VALUES("120", "24", "3", "1.3", "Guillermo");
INSERT INTO `wp_rg_lead_detail` VALUES("121", "24", "3", "1.6", "Carcamo");
INSERT INTO `wp_rg_lead_detail` VALUES("122", "24", "3", "2", "guicar@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("123", "24", "3", "3.1", "25-1506 Admirals Rd.");
INSERT INTO `wp_rg_lead_detail` VALUES("124", "24", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("125", "24", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("126", "24", "3", "3.5", "V9A 7B1");
INSERT INTO `wp_rg_lead_detail` VALUES("127", "24", "3", "4", "(250)884-4190");
INSERT INTO `wp_rg_lead_detail` VALUES("128", "24", "3", "7", "Oct/04/2014");
INSERT INTO `wp_rg_lead_detail` VALUES("129", "24", "3", "5", "Pastoral Care Team Training");
INSERT INTO `wp_rg_lead_detail` VALUES("131", "25", "3", "1.3", "Bill");
INSERT INTO `wp_rg_lead_detail` VALUES("132", "25", "3", "1.6", "Townsend");
INSERT INTO `wp_rg_lead_detail` VALUES("133", "25", "3", "2", "BandD2@uniserve.com");
INSERT INTO `wp_rg_lead_detail` VALUES("134", "25", "3", "3.1", "1020 McBriar Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("135", "25", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("136", "25", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("137", "25", "3", "3.5", "V8X3M5");
INSERT INTO `wp_rg_lead_detail` VALUES("138", "25", "3", "4", "(250)727-6174");
INSERT INTO `wp_rg_lead_detail` VALUES("139", "25", "3", "7", "10/4/2014");
INSERT INTO `wp_rg_lead_detail` VALUES("140", "25", "3", "5", "Pastoral Care Team Training");
INSERT INTO `wp_rg_lead_detail` VALUES("142", "26", "3", "1.3", "Dion  &   Grace");
INSERT INTO `wp_rg_lead_detail` VALUES("143", "26", "3", "1.6", "Pomponio");
INSERT INTO `wp_rg_lead_detail` VALUES("144", "26", "3", "2", "dion@pomponio.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("145", "26", "3", "3.1", "927A Goldstream Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("146", "26", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("147", "26", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("148", "26", "3", "3.5", "V9B 2Y2");
INSERT INTO `wp_rg_lead_detail` VALUES("149", "26", "3", "4", "(250)478-3230");
INSERT INTO `wp_rg_lead_detail` VALUES("150", "26", "3", "7", "10/04/2014");
INSERT INTO `wp_rg_lead_detail` VALUES("151", "26", "3", "5", "Pastoral Care Team Training, Saturday, October 4, 2014\r\n\r\n* will call in tomorrow before the 1pm cutoff time to pay for these two registrations   \r\nGrace Pomponio \r\nDion Pomponio");
INSERT INTO `wp_rg_lead_detail` VALUES("153", "27", "1", "1.3", "Philip");
INSERT INTO `wp_rg_lead_detail` VALUES("154", "27", "1", "1.6", "Ross");
INSERT INTO `wp_rg_lead_detail` VALUES("155", "27", "1", "2", "philiplaross@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("156", "27", "1", "5", "(250)370-0423");
INSERT INTO `wp_rg_lead_detail` VALUES("157", "28", "3", "1.3", "Claire");
INSERT INTO `wp_rg_lead_detail` VALUES("158", "28", "3", "1.6", "Coombs");
INSERT INTO `wp_rg_lead_detail` VALUES("159", "28", "3", "2", "gwcoombs@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("160", "28", "3", "3.1", "5980 Rothwell Rd.");
INSERT INTO `wp_rg_lead_detail` VALUES("161", "28", "3", "3.3", "Duncan");
INSERT INTO `wp_rg_lead_detail` VALUES("162", "28", "3", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("163", "28", "3", "3.5", "V9L 3B7");
INSERT INTO `wp_rg_lead_detail` VALUES("164", "28", "3", "4", "(250)748-4772");
INSERT INTO `wp_rg_lead_detail` VALUES("165", "28", "3", "7", "October 4, 2014");
INSERT INTO `wp_rg_lead_detail` VALUES("166", "28", "3", "5", "Pastoral Counselling Training Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("168", "29", "2", "1.3", "William");
INSERT INTO `wp_rg_lead_detail` VALUES("169", "29", "2", "1.6", "Foster");
INSERT INTO `wp_rg_lead_detail` VALUES("170", "29", "2", "2", "WilliamF@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("171", "29", "2", "7.1", "Newsletter");
INSERT INTO `wp_rg_lead_detail` VALUES("172", "29", "2", "7.2", "Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("173", "29", "2", "7.3", "All Notifications from South Island Centre");
INSERT INTO `wp_rg_lead_detail` VALUES("174", "30", "3", "1.3", "susan");
INSERT INTO `wp_rg_lead_detail` VALUES("175", "30", "3", "1.6", "ghitan");
INSERT INTO `wp_rg_lead_detail` VALUES("176", "30", "3", "2", "ghitan@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("177", "30", "3", "3.1", "1609 knight ave");
INSERT INTO `wp_rg_lead_detail` VALUES("178", "30", "3", "3.3", "victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("179", "30", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("180", "30", "3", "3.5", "V8P1L2");
INSERT INTO `wp_rg_lead_detail` VALUES("181", "30", "3", "4", "(250)592-7076");
INSERT INTO `wp_rg_lead_detail` VALUES("182", "30", "3", "7", "Oct 24/14");
INSERT INTO `wp_rg_lead_detail` VALUES("183", "30", "3", "5", "Enneagram");
INSERT INTO `wp_rg_lead_detail` VALUES("185", "31", "3", "1.3", "James");
INSERT INTO `wp_rg_lead_detail` VALUES("186", "31", "3", "1.6", "Kerr");
INSERT INTO `wp_rg_lead_detail` VALUES("187", "31", "3", "2", "arbutustreed@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("188", "31", "3", "3.1", "#604-655 Douglas St");
INSERT INTO `wp_rg_lead_detail` VALUES("189", "31", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("190", "31", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("191", "31", "3", "3.5", "v8v 0b6");
INSERT INTO `wp_rg_lead_detail` VALUES("192", "31", "3", "4", "(250)580-9050");
INSERT INTO `wp_rg_lead_detail` VALUES("193", "31", "3", "7", "Oct/30/2014");
INSERT INTO `wp_rg_lead_detail` VALUES("194", "31", "3", "5", "Helping People Change");
INSERT INTO `wp_rg_lead_detail` VALUES("196", "32", "3", "1.3", "Carol");
INSERT INTO `wp_rg_lead_detail` VALUES("197", "32", "3", "1.6", "Stockall");
INSERT INTO `wp_rg_lead_detail` VALUES("198", "32", "3", "2", "carolstockall@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("199", "32", "3", "3.1", "505-1630 Quadra Stree");
INSERT INTO `wp_rg_lead_detail` VALUES("200", "32", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("201", "32", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("202", "32", "3", "3.5", "V8W 3J5");
INSERT INTO `wp_rg_lead_detail` VALUES("203", "32", "3", "4", "(250)532-0667");
INSERT INTO `wp_rg_lead_detail` VALUES("204", "32", "3", "7", "October 17");
INSERT INTO `wp_rg_lead_detail` VALUES("205", "32", "3", "5", "Enneagram");
INSERT INTO `wp_rg_lead_detail` VALUES("207", "33", "3", "1.3", "Michelle");
INSERT INTO `wp_rg_lead_detail` VALUES("208", "33", "3", "1.6", "Redfern");
INSERT INTO `wp_rg_lead_detail` VALUES("209", "33", "3", "2", "bonkferns@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("210", "33", "3", "3.1", "1251 Fisher Road");
INSERT INTO `wp_rg_lead_detail` VALUES("211", "33", "3", "3.3", "Cobble Hill");
INSERT INTO `wp_rg_lead_detail` VALUES("212", "33", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("213", "33", "3", "3.5", "V0R 1L4");
INSERT INTO `wp_rg_lead_detail` VALUES("214", "33", "3", "4", "(250)743-6937");
INSERT INTO `wp_rg_lead_detail` VALUES("215", "33", "3", "7", "October 24, 2014");
INSERT INTO `wp_rg_lead_detail` VALUES("216", "33", "3", "5", "The Enneagram");
INSERT INTO `wp_rg_lead_detail` VALUES("218", "34", "3", "1.3", "Ernie");
INSERT INTO `wp_rg_lead_detail` VALUES("219", "34", "3", "1.6", "Fraser");
INSERT INTO `wp_rg_lead_detail` VALUES("220", "34", "3", "2", "erniefraser@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("221", "34", "3", "3.1", "19 - 1480 Garnet Road");
INSERT INTO `wp_rg_lead_detail` VALUES("222", "34", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("223", "34", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("224", "34", "3", "3.5", "V8P 5K9");
INSERT INTO `wp_rg_lead_detail` VALUES("225", "34", "3", "4", "(250)721-1124");
INSERT INTO `wp_rg_lead_detail` VALUES("226", "34", "3", "7", "Oct. 24, 2014");
INSERT INTO `wp_rg_lead_detail` VALUES("227", "34", "3", "5", "The Enneagram - A Journey of Self Discovery");
INSERT INTO `wp_rg_lead_detail` VALUES("229", "35", "3", "1.3", "emilie");
INSERT INTO `wp_rg_lead_detail` VALUES("230", "35", "3", "1.6", "campeau");
INSERT INTO `wp_rg_lead_detail` VALUES("231", "35", "3", "2", "emcampeau@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("232", "35", "3", "3.1", "2-2824 heath drive");
INSERT INTO `wp_rg_lead_detail` VALUES("233", "35", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("234", "35", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("235", "35", "3", "3.5", "v9a 2j5");
INSERT INTO `wp_rg_lead_detail` VALUES("236", "35", "3", "4", "(250)507-2857");
INSERT INTO `wp_rg_lead_detail` VALUES("237", "35", "3", "7", "11/29/2014");
INSERT INTO `wp_rg_lead_detail` VALUES("238", "35", "3", "5", "caregiver burnout and the need for self care");
INSERT INTO `wp_rg_lead_detail` VALUES("240", "36", "3", "1.3", "Mary");
INSERT INTO `wp_rg_lead_detail` VALUES("241", "36", "3", "1.6", "parry");
INSERT INTO `wp_rg_lead_detail` VALUES("242", "36", "3", "2", "maryparry3@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("243", "36", "3", "3.1", "5230 Beckton RoD");
INSERT INTO `wp_rg_lead_detail` VALUES("244", "36", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("245", "36", "3", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("246", "36", "3", "3.5", "V8Y 2C 1");
INSERT INTO `wp_rg_lead_detail` VALUES("247", "36", "3", "4", "(250)477-0593");
INSERT INTO `wp_rg_lead_detail` VALUES("248", "36", "3", "7", "10/24/2014");
INSERT INTO `wp_rg_lead_detail` VALUES("249", "36", "3", "5", "The Ennegram Journey");
INSERT INTO `wp_rg_lead_detail` VALUES("251", "37", "1", "1.3", "LARRY");
INSERT INTO `wp_rg_lead_detail` VALUES("252", "37", "1", "1.6", "SENZIG");
INSERT INTO `wp_rg_lead_detail` VALUES("253", "37", "1", "2", "judy52@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("254", "37", "1", "5", "(250)391-9797");
INSERT INTO `wp_rg_lead_detail` VALUES("255", "37", "1", "3", "HI I AM 54,I RECENTLY LOST MY WIFE.I AM A NEW CHRISTIAN OF 2 YEARS.I HAVE HAD A PASSION TO BE A COUNSILLOR FOR MANY YEARS.I WANT TO CHANGE MY CAREER.COULD YOU PLEASE GUIDE ME ON WHERE OR HOW I CAN GO ABOUT THIS.I HAVE LOOKED ON THE INTERNET AND FOUND YOUR SITE TO BE THE MOST PROMISING.THANK YOU FOR YOUR TIME.");
INSERT INTO `wp_rg_lead_detail` VALUES("256", "38", "1", "1.3", "Karli");
INSERT INTO `wp_rg_lead_detail` VALUES("257", "38", "1", "1.6", "Mann");
INSERT INTO `wp_rg_lead_detail` VALUES("258", "38", "1", "2", "karlirmann@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("259", "38", "1", "5", "(780)953-2553");
INSERT INTO `wp_rg_lead_detail` VALUES("260", "38", "1", "3", "Hi there, I am interested in having some counselling. I am dealing with a lot of depression, anxiety and overall stress regarding my relationships, with a recent medical diagnosis and struggling how to follow what is best for myself and what God wants for me to do. I am struggling trying to sort out my cycle of thoughts by myself. I recently donated during a Church offering which is where I heard about you. If you could get back to me, I would appreciate it greatly. I am in school at UVIC from monday to friday until either 12:30 (W,F) or 2:30 (T,Th,F). I work one night per weekend at a restaurant so I mostly am free in the early afternoons, evenings and some weekends. Thanks again. My name is Karli, I can be contacted easily by phone, text or email.");
INSERT INTO `wp_rg_lead_detail` VALUES("261", "39", "6", "1.3", "Deborah");
INSERT INTO `wp_rg_lead_detail` VALUES("262", "39", "6", "1.6", "Jantzen");
INSERT INTO `wp_rg_lead_detail` VALUES("263", "39", "6", "5", "aunt_ducks@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("264", "39", "6", "6", "(250)727-6060");
INSERT INTO `wp_rg_lead_detail` VALUES("265", "39", "6", "7.1", "915 Falaise Crescent");
INSERT INTO `wp_rg_lead_detail` VALUES("266", "39", "6", "7.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("267", "39", "6", "7.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("268", "39", "6", "7.5", "V8Y1A2");
INSERT INTO `wp_rg_lead_detail` VALUES("269", "39", "6", "8.2", "Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)");
INSERT INTO `wp_rg_lead_detail` VALUES("270", "39", "6", "9", "4");
INSERT INTO `wp_rg_lead_detail` VALUES("271", "39", "6", "11.1", "cash (drop off in person when you pick up your ticket (by November 14)");
INSERT INTO `wp_rg_lead_detail` VALUES("272", "40", "3", "1.3", "Janette");
INSERT INTO `wp_rg_lead_detail` VALUES("273", "40", "3", "1.6", "Taylor");
INSERT INTO `wp_rg_lead_detail` VALUES("274", "40", "3", "2", "jat0930@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("275", "40", "3", "3.1", "423 3255 Cook St");
INSERT INTO `wp_rg_lead_detail` VALUES("276", "40", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("277", "40", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("278", "40", "3", "3.5", "v8x1a4");
INSERT INTO `wp_rg_lead_detail` VALUES("279", "40", "3", "4", "(778)430-0383");
INSERT INTO `wp_rg_lead_detail` VALUES("280", "40", "3", "7", "11/12/14");
INSERT INTO `wp_rg_lead_detail` VALUES("281", "40", "3", "5", "The Twilight Journey");
INSERT INTO `wp_rg_lead_detail` VALUES("283", "41", "1", "1.3", "Peter");
INSERT INTO `wp_rg_lead_detail` VALUES("284", "41", "1", "1.6", "Hickman");
INSERT INTO `wp_rg_lead_detail` VALUES("285", "41", "1", "2", "peter_hickman@can.salvationarmy.org");
INSERT INTO `wp_rg_lead_detail` VALUES("286", "41", "1", "5", "(778)433-7292");
INSERT INTO `wp_rg_lead_detail` VALUES("287", "41", "1", "3", "Good afternoon Bill, \r\n\r\nThis is Peter Hickman here; the reason I am contacting you is that I was wondering if I could take 20 minutes of your time this coming Friday (Nov 7). I am taking an counseling course and I have been asked to interview an active counselor. I am available anytime before 2:30 Just thought I ask - no worries if you can\'t fit me in. \r\n\r\nThanks, \r\nPeter.");
INSERT INTO `wp_rg_lead_detail` VALUES("288", "42", "3", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("289", "42", "3", "1.6", "Nixon");
INSERT INTO `wp_rg_lead_detail` VALUES("290", "42", "3", "2", "sarahnixon04@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("291", "42", "3", "3.1", "3171 Stevenson Place");
INSERT INTO `wp_rg_lead_detail` VALUES("292", "42", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("293", "42", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("294", "42", "3", "3.5", "V8X 1C4");
INSERT INTO `wp_rg_lead_detail` VALUES("295", "42", "3", "4", "(778)678-1704");
INSERT INTO `wp_rg_lead_detail` VALUES("296", "42", "3", "7", "Any");
INSERT INTO `wp_rg_lead_detail` VALUES("297", "42", "3", "5", "Any, just wanting general information updates");
INSERT INTO `wp_rg_lead_detail` VALUES("299", "43", "1", "1.3", "Peter");
INSERT INTO `wp_rg_lead_detail` VALUES("300", "43", "1", "1.6", "Hickman");
INSERT INTO `wp_rg_lead_detail` VALUES("301", "43", "1", "2", "peter_hickman@can.salvationarmy.org");
INSERT INTO `wp_rg_lead_detail` VALUES("302", "43", "1", "5", "(778)433-7292");
INSERT INTO `wp_rg_lead_detail` VALUES("303", "43", "1", "3", "Good Morning Bill, \r\n\r\nPlease disregard my last email. It looks like I found an interviewee in my neighborhood.\r\n\r\nThanks anyways, \r\nPeter Hickman.");
INSERT INTO `wp_rg_lead_detail` VALUES("304", "44", "1", "1.3", "Carolyn");
INSERT INTO `wp_rg_lead_detail` VALUES("305", "44", "1", "1.6", "Davies");
INSERT INTO `wp_rg_lead_detail` VALUES("306", "44", "1", "2", "Carolyn@cedavies.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("307", "44", "1", "5", "(778)879-3689");
INSERT INTO `wp_rg_lead_detail` VALUES("308", "44", "1", "3", "I am interested in individual or group counselling in the afternoon or evening, any day of the week but Wednesday.");
INSERT INTO `wp_rg_lead_detail` VALUES("309", "45", "1", "1.3", "Debbie");
INSERT INTO `wp_rg_lead_detail` VALUES("310", "45", "1", "1.6", "Brotherston");
INSERT INTO `wp_rg_lead_detail` VALUES("311", "45", "1", "2", "debbie.brotherston@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("312", "45", "1", "5", "(250)727-6141");
INSERT INTO `wp_rg_lead_detail` VALUES("313", "45", "1", "3", "Hi, I\'m looking into getting some counselling for my husband and me. Our medical plan covers the services of a registered psychologist or a registered social worker, but not a registered clinical counsellor. Would any of your counsellors have either of these designations? \r\n\r\nThanks for your help.\r\n\r\nDebbie");
INSERT INTO `wp_rg_lead_detail` VALUES("314", "46", "1", "1.3", "Debbie");
INSERT INTO `wp_rg_lead_detail` VALUES("315", "46", "1", "1.6", "Brotherston");
INSERT INTO `wp_rg_lead_detail` VALUES("316", "46", "1", "2", "debbie.brotherston@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("317", "46", "1", "5", "(250)727-6141");
INSERT INTO `wp_rg_lead_detail` VALUES("318", "46", "1", "3", "Hi, I sent you an email a short while ago and forgot to also ask if you provide counselling services after normal working hours or on Saturdays?\r\n\r\nThanks,\r\n\r\nDebbie");
INSERT INTO `wp_rg_lead_detail` VALUES("319", "47", "6", "1.3", "Kathy");
INSERT INTO `wp_rg_lead_detail` VALUES("320", "47", "6", "1.6", "Campbell");
INSERT INTO `wp_rg_lead_detail` VALUES("321", "47", "6", "5", "kath_chip@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("322", "47", "6", "6", "(250)598-6188");
INSERT INTO `wp_rg_lead_detail` VALUES("323", "47", "6", "7.1", "409   1436 Harrison Street");
INSERT INTO `wp_rg_lead_detail` VALUES("324", "47", "6", "7.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("325", "47", "6", "7.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("326", "47", "6", "7.5", "V8S 3S2");
INSERT INTO `wp_rg_lead_detail` VALUES("327", "47", "6", "8.2", "Multiple Tickets (up to 5 tickets; payment is due when you pick up your tickets)");
INSERT INTO `wp_rg_lead_detail` VALUES("328", "47", "6", "9", "3");
INSERT INTO `wp_rg_lead_detail` VALUES("329", "47", "6", "11.2", "cheque (may be post-dated to Nov. 14 and mailed to us)");
INSERT INTO `wp_rg_lead_detail` VALUES("330", "47", "6", "12", "I am writing a cheque and will drop it off early Monday afternoon - Nov 17");
INSERT INTO `wp_rg_lead_detail` VALUES("331", "48", "1", "1.3", "Linda");
INSERT INTO `wp_rg_lead_detail` VALUES("332", "48", "1", "1.6", "Dickson");
INSERT INTO `wp_rg_lead_detail` VALUES("333", "48", "1", "2", "dickson.lindam@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("334", "48", "1", "5", "(250)721-3599");
INSERT INTO `wp_rg_lead_detail` VALUES("335", "48", "1", "3", "Please let Laurie know that I would be happy to donate art work for the silent auction, if she is interested, thank you. \r\nLinda Dickson\r\n250-721-3599\r\nAbstract Art\r\nemail:dickson.lindam@gmail.com\r\nwww.lindadicksonart.com\r\n");
INSERT INTO `wp_rg_lead_detail` VALUES("336", "49", "3", "1.3", "Erin");
INSERT INTO `wp_rg_lead_detail` VALUES("337", "49", "3", "1.6", "Bremner");
INSERT INTO `wp_rg_lead_detail` VALUES("338", "49", "3", "2", "eebremner@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("339", "49", "3", "3.1", "618 Baker st");
INSERT INTO `wp_rg_lead_detail` VALUES("340", "49", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("341", "49", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("342", "49", "3", "3.5", "V8Z 2H7");
INSERT INTO `wp_rg_lead_detail` VALUES("343", "49", "3", "4", "(250)818-1840");
INSERT INTO `wp_rg_lead_detail` VALUES("344", "49", "3", "7", "Feb 7 2015");
INSERT INTO `wp_rg_lead_detail` VALUES("345", "49", "3", "5", "Preparing for Marriage\r\n\r\n$225.00 per couple for one-day workshop + two 1-hour follow-up sessions\r\n\r\nOr \r\n\r\nPricing for a private full day workshop\r\n\r\n");
INSERT INTO `wp_rg_lead_detail` VALUES("347", "50", "1", "1.3", "Justice");
INSERT INTO `wp_rg_lead_detail` VALUES("348", "50", "1", "1.6", "Wilson");
INSERT INTO `wp_rg_lead_detail` VALUES("349", "50", "1", "2", "Justicewilson@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("350", "50", "1", "5", "(250)217-2118");
INSERT INTO `wp_rg_lead_detail` VALUES("351", "50", "1", "3", "Good afternoon, \r\n\r\nI am wondering what the process is to get in an see a counsellor, how the scale works as i am currently barely employed, and what the waiting list is like if there is one. \r\n\r\nAny information you could provide would be greatly appreciated, as I would like to make an appointment soon. \r\n\r\nThank you, \r\nJustice");
INSERT INTO `wp_rg_lead_detail` VALUES("352", "51", "1", "1.3", "Lacey");
INSERT INTO `wp_rg_lead_detail` VALUES("353", "51", "1", "1.6", "Hawthorne");
INSERT INTO `wp_rg_lead_detail` VALUES("354", "51", "1", "2", "lacey.d.hawthorne@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("355", "51", "1", "5", "(250)213-7781");
INSERT INTO `wp_rg_lead_detail` VALUES("356", "51", "1", "3", "Hi there, \r\n\r\nI wanted to get in touch regarding making an initial appointment. I\'ve recently moved to Victoria from Northern BC and am seeking help with ongoing issues of depression and anxiety. \r\n\r\nI\'ve had a look at your sliding fee scale, and I\'m not sure how it would work out -- I\'m a self-employed book editor, and am currently making between $26,000-30,000 a year. My husband has just gone back to university, so I\'m supporting us both. Would it be best to call and discuss a payment method before making an appointment? \r\n\r\nMany thanks,\r\n\r\nLacey");
INSERT INTO `wp_rg_lead_detail` VALUES("357", "52", "2", "1.3", "Wendy");
INSERT INTO `wp_rg_lead_detail` VALUES("358", "52", "2", "1.6", "Margetts");
INSERT INTO `wp_rg_lead_detail` VALUES("359", "52", "2", "2", "wendy.margetts@viha.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("360", "52", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("361", "52", "2", "6.3", "Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("362", "53", "1", "1.3", "Margaret");
INSERT INTO `wp_rg_lead_detail` VALUES("363", "53", "1", "1.6", "Boyes");
INSERT INTO `wp_rg_lead_detail` VALUES("364", "53", "1", "2", "margboyes@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("365", "53", "1", "5", "(250)370-1573");
INSERT INTO `wp_rg_lead_detail` VALUES("366", "53", "1", "3", "Could you please tell me the best time to contact someone by phone?\r\n\r\nI\'ve tried unsuccessfully to navigate your voicemail system. Also, I can\'t get your sliding scale webpage to work.\r\n\r\nThanks so much!");
INSERT INTO `wp_rg_lead_detail` VALUES("367", "54", "1", "1.3", "Sara");
INSERT INTO `wp_rg_lead_detail` VALUES("368", "54", "1", "1.6", "McKerracher");
INSERT INTO `wp_rg_lead_detail` VALUES("369", "54", "1", "2", "mckerracher.sa@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("370", "54", "1", "5", "(250)893-6177");
INSERT INTO `wp_rg_lead_detail` VALUES("371", "54", "1", "3", "I am currently on Social Assistance, waiting for my referral to see a Psychiatrist to go through (which won\'t be for another month at least). I\'ve experienced a fair amount of trauma (sexual, physical, and emotional) in the last 4-5 months and desperately need to talk to a professional, for my own sanity. I am no longer experiencing abuse, as I discharged myself from the situation a month ago. The counsellors at Transition House are impossible to set appointments up with, unfortunately. I\'m not seeking a women\'s shelter or looking to report anything to victim services. I just need a counsellor to talk to. Since I am on Social Assistance, I can\'t afford much, so if you can let me know what fee you think seems fair. Also, please let me know if there is a waiting list for new patients, and if so, how long is the waiting list? \r\n\r\n\r\nThank you,\r\n\r\nSara");
INSERT INTO `wp_rg_lead_detail` VALUES("372", "55", "1", "1.3", "Denis");
INSERT INTO `wp_rg_lead_detail` VALUES("373", "55", "1", "1.6", "Mannion");
INSERT INTO `wp_rg_lead_detail` VALUES("374", "55", "1", "2", "tfog199@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("375", "55", "1", "5", "(250)893-4711");
INSERT INTO `wp_rg_lead_detail` VALUES("376", "55", "1", "3", "Hi, \r\nMy situation has become quite stressful due to unemployment, a lack of resources, not really knowing how to turn things around nor who to go to for guidance. I have recently ended a relationship that can only be described as a cataract of disaster from start to finish. My ex partner has called the police on me, unfairly I feel, and I am fearful that she will \"engineer\" a situation the could see me deprived of my liberty. Everywhere I go I am constantly watching my back for any sign of her just in case she uses the sighting of me to call the police! \r\nI\'m not sure if you can, or even want to help me, but if there is a possibility, I would be interested to hear how I may possibly be able to recover some of myself in all of this chaos.\r\n\r\nSincerely\r\nDenis Mannion");
INSERT INTO `wp_rg_lead_detail` VALUES("377", "56", "1", "1.3", "Susie");
INSERT INTO `wp_rg_lead_detail` VALUES("378", "56", "1", "1.6", "Davis");
INSERT INTO `wp_rg_lead_detail` VALUES("379", "56", "1", "2", "davis_sue_z_q@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("380", "56", "1", "5", "(250)744-7922");
INSERT INTO `wp_rg_lead_detail` VALUES("381", "56", "1", "3", "Hi there,\r\nI called a few days ago, hoping I would be able to schedule an appointment for my 17 year old daughter, who is having problems with anxiety.  I wanted to see if Laurie Truant had availabilty.  I left my name and number, but have not heard back from Laurie yet.  Just wanted to make sure that she received my message.\r\nCheers,\r\nSusie Davis");
INSERT INTO `wp_rg_lead_detail` VALUES("382", "57", "1", "1.3", "Angelique");
INSERT INTO `wp_rg_lead_detail` VALUES("383", "57", "1", "1.6", "Kambeitz");
INSERT INTO `wp_rg_lead_detail` VALUES("384", "57", "1", "2", "angelique@unition.com");
INSERT INTO `wp_rg_lead_detail` VALUES("385", "57", "1", "5", "(250)580-1293");
INSERT INTO `wp_rg_lead_detail` VALUES("386", "57", "1", "3", "Please pass on my email to Laurie Truant if she wants another way to contact me. Thx :) Angelique (Amber Ikle\'s Mom)");
INSERT INTO `wp_rg_lead_detail` VALUES("387", "58", "3", "1.3", "Anika");
INSERT INTO `wp_rg_lead_detail` VALUES("388", "58", "3", "1.6", "Ursuliak");
INSERT INTO `wp_rg_lead_detail` VALUES("389", "58", "3", "2", "anika.ursuliak@viha.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("390", "58", "3", "3.1", "307-825 Cook Street");
INSERT INTO `wp_rg_lead_detail` VALUES("391", "58", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("392", "58", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("393", "58", "3", "3.5", "V8V 3Z1");
INSERT INTO `wp_rg_lead_detail` VALUES("394", "58", "3", "4", "(250)532-1944");
INSERT INTO `wp_rg_lead_detail` VALUES("395", "58", "3", "7", "01/31/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("396", "58", "3", "5", "Caregiver Burnout: The Need for Self-Care (Professional Caregivers),");
INSERT INTO `wp_rg_lead_detail` VALUES("398", "59", "3", "1.3", "Suzanne");
INSERT INTO `wp_rg_lead_detail` VALUES("399", "59", "3", "1.6", "MacLeod");
INSERT INTO `wp_rg_lead_detail` VALUES("400", "59", "3", "2", "macsuz@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("401", "59", "3", "3.1", "2170 Pentland Road");
INSERT INTO `wp_rg_lead_detail` VALUES("402", "59", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("403", "59", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("404", "59", "3", "3.5", "V8S 2W6");
INSERT INTO `wp_rg_lead_detail` VALUES("405", "59", "3", "4", "(250)721-4452");
INSERT INTO `wp_rg_lead_detail` VALUES("406", "59", "3", "7", "January 31, 2015");
INSERT INTO `wp_rg_lead_detail` VALUES("407", "59", "3", "5", "Caregiver Burnout: The Need for Self-Care (Professional Caregivers)");
INSERT INTO `wp_rg_lead_detail` VALUES("409", "60", "1", "1.3", "Melissa");
INSERT INTO `wp_rg_lead_detail` VALUES("410", "60", "1", "1.6", "Kelly");
INSERT INTO `wp_rg_lead_detail` VALUES("411", "60", "1", "2", "mkelly_82@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("412", "60", "1", "5", "(250)893-8828");
INSERT INTO `wp_rg_lead_detail` VALUES("413", "60", "1", "3", "I\'m looking for counselling, my cowoker told me about your office. if I could make an appointment soon that would be wonderful.\r\n\r\nThanks so much\r\n\r\nMelissa");
INSERT INTO `wp_rg_lead_detail` VALUES("414", "61", "1", "1.3", "Mike");
INSERT INTO `wp_rg_lead_detail` VALUES("415", "61", "1", "1.6", "Schmalz");
INSERT INTO `wp_rg_lead_detail` VALUES("416", "61", "1", "2", "mi.ke@mac.com");
INSERT INTO `wp_rg_lead_detail` VALUES("417", "61", "1", "5", "(778)677-6453");
INSERT INTO `wp_rg_lead_detail` VALUES("418", "61", "1", "3", "Hi, \r\nI am searching for a counsellor. I\'m newer to the Island and am a grad student at UVic. Ideally, I\'m looking for a counsellor, for longer term, with a solid understanding of the Christian perspective and perhaps with some background in attachment/interpersonal therapy. Is there anyone at your site that might fit the bill? I\'d be open to discussing options. I\'d prefer contact through email since I\'m either working or at school most days. \r\n\r\nLooking forward to hearing back from you. \r\nThanks, \r\nMike");
INSERT INTO `wp_rg_lead_detail` VALUES("419", "62", "1", "1.3", "Susan");
INSERT INTO `wp_rg_lead_detail` VALUES("420", "62", "1", "1.6", "Lewis");
INSERT INTO `wp_rg_lead_detail` VALUES("421", "62", "1", "2", "shelby350m@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("422", "62", "1", "5", "(250)516-6823");
INSERT INTO `wp_rg_lead_detail` VALUES("423", "62", "1", "3", "Hello, I was given your name by Cedar Hill School, I would like to make an appointment for my daughter, she is struggling in school and her father and I have separated and I don\'t  believe she is dealing well with it.");
INSERT INTO `wp_rg_lead_detail` VALUES("424", "63", "1", "1.3", "Jay and christa");
INSERT INTO `wp_rg_lead_detail` VALUES("425", "63", "1", "1.6", "faujd");
INSERT INTO `wp_rg_lead_detail` VALUES("426", "63", "1", "2", "jairavia@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("427", "63", "1", "5", "(250)891-4011");
INSERT INTO `wp_rg_lead_detail` VALUES("428", "63", "1", "3", "we are a couples in our mid-thirties and need couples counselling on an emergency basis. \r\nWe\'d appreciate it if someone could call us?");
INSERT INTO `wp_rg_lead_detail` VALUES("429", "64", "1", "1.3", "Stan & Brenda");
INSERT INTO `wp_rg_lead_detail` VALUES("430", "64", "1", "1.6", "Rozendal");
INSERT INTO `wp_rg_lead_detail` VALUES("431", "64", "1", "2", "sbrozendal@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("432", "64", "1", "5", "(250)652-9896");
INSERT INTO `wp_rg_lead_detail` VALUES("433", "64", "1", "3", "We would like to make an initial appointment with Bill Coles. \r\nOur available time for an appointment is evenings (after 5:30) Monday, Tuesday, Wednesday.\r\nPlease contact us by email or by leaving a message on our machine. \r\nThank you\r\n.");
INSERT INTO `wp_rg_lead_detail` VALUES("434", "65", "1", "1.3", "Elisa");
INSERT INTO `wp_rg_lead_detail` VALUES("435", "65", "1", "1.6", "Herrala");
INSERT INTO `wp_rg_lead_detail` VALUES("436", "65", "1", "2", "eherrala@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("437", "65", "1", "5", "(250)818-7176");
INSERT INTO `wp_rg_lead_detail` VALUES("438", "65", "1", "3", "Hello. I am interested in seeing a counselor and I\'m wondering what you might have available. Thanks.");
INSERT INTO `wp_rg_lead_detail` VALUES("439", "66", "7", "8.3", "Susanne");
INSERT INTO `wp_rg_lead_detail` VALUES("440", "66", "7", "8.6", "Reul-Zastre");
INSERT INTO `wp_rg_lead_detail` VALUES("441", "66", "7", "6", "(250)472-2851");
INSERT INTO `wp_rg_lead_detail` VALUES("442", "66", "7", "7", "info@localhost");
INSERT INTO `wp_rg_lead_detail` VALUES("443", "66", "7", "5", "test");
INSERT INTO `wp_rg_lead_detail` VALUES("444", "67", "7", "8.3", "Susanne");
INSERT INTO `wp_rg_lead_detail` VALUES("445", "67", "7", "8.6", "Reul-Zastre");
INSERT INTO `wp_rg_lead_detail` VALUES("446", "67", "7", "6", "(250)472-2851");
INSERT INTO `wp_rg_lead_detail` VALUES("447", "67", "7", "7", "info@localhost");
INSERT INTO `wp_rg_lead_detail` VALUES("448", "67", "7", "5", "test 1");
INSERT INTO `wp_rg_lead_detail` VALUES("449", "68", "7", "8.3", "Susanne");
INSERT INTO `wp_rg_lead_detail` VALUES("450", "68", "7", "8.6", "Reul-Zastre");
INSERT INTO `wp_rg_lead_detail` VALUES("451", "68", "7", "6", "(250)472-2851");
INSERT INTO `wp_rg_lead_detail` VALUES("452", "68", "7", "7", "info@localhost");
INSERT INTO `wp_rg_lead_detail` VALUES("453", "68", "7", "5", "test");
INSERT INTO `wp_rg_lead_detail` VALUES("454", "69", "7", "8.3", "Susanne");
INSERT INTO `wp_rg_lead_detail` VALUES("455", "69", "7", "8.6", "Reul-Zastre");
INSERT INTO `wp_rg_lead_detail` VALUES("456", "69", "7", "6", "(250)472-2851");
INSERT INTO `wp_rg_lead_detail` VALUES("457", "69", "7", "7", "info@localhost");
INSERT INTO `wp_rg_lead_detail` VALUES("458", "69", "7", "5", "test 3");
INSERT INTO `wp_rg_lead_detail` VALUES("459", "70", "1", "1.3", "Emily");
INSERT INTO `wp_rg_lead_detail` VALUES("460", "70", "1", "1.6", "Madigan");
INSERT INTO `wp_rg_lead_detail` VALUES("461", "70", "1", "2", "madigan.emily@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("462", "70", "1", "5", "(250)634-2060");
INSERT INTO `wp_rg_lead_detail` VALUES("463", "70", "1", "3", "I\'m very interested in receiving counselling, so I would love to start seeing someone at you facility as soon as I can. Thanks!");
INSERT INTO `wp_rg_lead_detail` VALUES("464", "71", "1", "1.3", "Rob");
INSERT INTO `wp_rg_lead_detail` VALUES("465", "71", "1", "1.6", "Ringma");
INSERT INTO `wp_rg_lead_detail` VALUES("466", "71", "1", "2", "rob.ringma@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("467", "71", "1", "5", "(250)361-6105");
INSERT INTO `wp_rg_lead_detail` VALUES("468", "71", "1", "3", "Hello,\r\nSeveral years ago I had some sessions with Mr. Bill Cole and found them very helpful.\r\nI am interested in visiting him again and was hoping for the opportunity to make an appointment with him.\r\nCan you please let me know if this is a possibility and what his possible  availability looks like?\r\n\r\nThank-You,\r\n\r\nRob");
INSERT INTO `wp_rg_lead_detail` VALUES("469", "72", "1", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("470", "72", "1", "1.6", "Grant");
INSERT INTO `wp_rg_lead_detail` VALUES("471", "72", "1", "2", "sarahjeangrant@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("472", "72", "1", "5", "(778)676-1431");
INSERT INTO `wp_rg_lead_detail` VALUES("473", "72", "1", "3", "As I work full time till 4:30 every day I was wondering if you offer later hours for appointments?");
INSERT INTO `wp_rg_lead_detail` VALUES("474", "73", "1", "1.3", "Mallory");
INSERT INTO `wp_rg_lead_detail` VALUES("475", "73", "1", "1.6", "Webster");
INSERT INTO `wp_rg_lead_detail` VALUES("476", "73", "1", "2", "m-webster@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("477", "73", "1", "5", "(250)507-9681");
INSERT INTO `wp_rg_lead_detail` VALUES("478", "73", "1", "3", "Hello , my partner and I are looking for couples councelling ASAP . We have been on so many Waite lists and looking for Somthing affordable for a long time and are having no luck . We are a low income family with 2 children and a third on the way ! We would appreciate even 1 appointment soon !");
INSERT INTO `wp_rg_lead_detail` VALUES("479", "74", "1", "1.3", "Esther");
INSERT INTO `wp_rg_lead_detail` VALUES("480", "74", "1", "1.6", "Wilzewski");
INSERT INTO `wp_rg_lead_detail` VALUES("481", "74", "1", "2", "ewilzewski@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("482", "74", "1", "5", "(778)427-2220");
INSERT INTO `wp_rg_lead_detail` VALUES("483", "74", "1", "3", "Attn: Bill Cole\r\n\r\nAs per our conversation these are the resources I spoke about:\r\n\r\nhttp://www.purgatory.net/merits/somatoform.htm\r\nwww.menstrauma.com");
INSERT INTO `wp_rg_lead_detail` VALUES("484", "75", "1", "1.3", "kaitlyn");
INSERT INTO `wp_rg_lead_detail` VALUES("485", "75", "1", "1.6", "hathaway");
INSERT INTO `wp_rg_lead_detail` VALUES("486", "75", "1", "2", "katehathaway11@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("487", "75", "1", "5", "(250)616-2178");
INSERT INTO `wp_rg_lead_detail` VALUES("488", "75", "1", "3", "Hello my name is Kaitlyn and I was wondering about your availability for councils. I really need to talk to someone immediately but I don\'t know how to go about it. \r\nI have Sundays, Mondays and Tuesdays off work I can\'t afford a lot but I can\'t afford not to start counselling.\r\nAnything helps or a direction to someone who can. \r\nThank you,\r\n-K");
INSERT INTO `wp_rg_lead_detail` VALUES("489", "76", "1", "1.3", "June");
INSERT INTO `wp_rg_lead_detail` VALUES("490", "76", "1", "1.6", "Saracuse");
INSERT INTO `wp_rg_lead_detail` VALUES("491", "76", "1", "2", "jts@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("492", "76", "1", "5", "(250)721-8341");
INSERT INTO `wp_rg_lead_detail` VALUES("493", "76", "1", "3", "Hello Bill and Counsellors, \r\nI wanted to let you know about the BC Post Secondary Counsellors\' Association (PSCA) Conference entitled: Perspectives on Diversity in Post-Secondary Education that is happening May 4 - 6th, 2015 at the Parkside Hotel and Spa on Humboldt Street in Victoria. We are hoping that our theme of Diversity and the variety of speakers and panels that we have will be of interest to you and we would encourage to have a look at the website and register to join us. Here is the link to copy & paste into your browser: http://bcpsca.com/index.php/conference/perspectives-on-diversity-in-post-secondary-education/. Please let me know if you have any questions. \r\nBest Regards,\r\nJune Saracuse, M.Ed. RCC \r\nUniversity of Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("494", "77", "2", "1.3", "Angela");
INSERT INTO `wp_rg_lead_detail` VALUES("495", "77", "2", "1.6", "Cote");
INSERT INTO `wp_rg_lead_detail` VALUES("496", "77", "2", "2", "angecote@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("497", "77", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("498", "78", "1", "1.3", "Caroline");
INSERT INTO `wp_rg_lead_detail` VALUES("499", "78", "1", "1.6", "Donelle");
INSERT INTO `wp_rg_lead_detail` VALUES("500", "78", "1", "2", "directordevelopment.sic@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("501", "78", "1", "5", "(250)888-7441");
INSERT INTO `wp_rg_lead_detail` VALUES("502", "78", "1", "3", "Testing testing");
INSERT INTO `wp_rg_lead_detail` VALUES("503", "79", "3", "1.3", "Caroline");
INSERT INTO `wp_rg_lead_detail` VALUES("504", "79", "3", "1.6", "Donelle");
INSERT INTO `wp_rg_lead_detail` VALUES("505", "79", "3", "2", "directordevelopment.sic@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("506", "79", "3", "3.1", "3-370 Richmond Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("507", "79", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("508", "79", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("509", "79", "3", "3.5", "V8S 3Y1");
INSERT INTO `wp_rg_lead_detail` VALUES("510", "79", "3", "4", "(250)888-7441");
INSERT INTO `wp_rg_lead_detail` VALUES("511", "79", "3", "7", "April 16");
INSERT INTO `wp_rg_lead_detail` VALUES("512", "79", "3", "5", "The Ebb and Flow of Life \r\n\r\nTESTING TESTING");
INSERT INTO `wp_rg_lead_detail` VALUES("514", "80", "1", "1.3", "Angela");
INSERT INTO `wp_rg_lead_detail` VALUES("515", "80", "1", "1.6", "Cote");
INSERT INTO `wp_rg_lead_detail` VALUES("516", "80", "1", "2", "angecote@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("517", "80", "1", "5", "(250)213-7277");
INSERT INTO `wp_rg_lead_detail` VALUES("518", "80", "1", "3", "Hello, I am looking for counselling and came across your website.  After reviewing your team it looks like Laurie Truant might be a good fit for what I am looking for (i.e. help with anxiety/depression).  Could she perhaps phone me to discuss a consultation?\r\nAngela");
INSERT INTO `wp_rg_lead_detail` VALUES("519", "81", "7", "8.3", "Leigh");
INSERT INTO `wp_rg_lead_detail` VALUES("520", "81", "7", "8.6", "Thornton");
INSERT INTO `wp_rg_lead_detail` VALUES("521", "81", "7", "6", "(778)677-0055");
INSERT INTO `wp_rg_lead_detail` VALUES("522", "81", "7", "7", "Lennylee@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("523", "81", "7", "5", "Hello;\r\n\r\nI\'m writing to inquire about becoming a crisis counsellor;  I have a BScN and my interests lie completely in the counselling area but I\'m not sure how or where to go about getting the training. Is there any direction you can offer me or any such thing as a mentorship with yourselves? I\'m willing to do a mentorship where I\'m not paid because I\'m so passionate about helping others and feel this is my calling.\r\n\r\nThankyou for anything you may be able to offer me:)\r\n\r\nLeigh Thornton");
INSERT INTO `wp_rg_lead_detail` VALUES("524", "82", "3", "1.3", "Divya");
INSERT INTO `wp_rg_lead_detail` VALUES("525", "82", "3", "1.6", "Bhalaik");
INSERT INTO `wp_rg_lead_detail` VALUES("526", "82", "3", "2", "dbhalaik@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("527", "82", "3", "3.1", "4081");
INSERT INTO `wp_rg_lead_detail` VALUES("528", "82", "3", "3.3", "Longview Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("529", "82", "3", "3.4", "B.C");
INSERT INTO `wp_rg_lead_detail` VALUES("530", "82", "3", "3.5", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("531", "82", "3", "4", "(604)653-6906");
INSERT INTO `wp_rg_lead_detail` VALUES("532", "82", "3", "7", "04/16/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("533", "82", "3", "5", "The ebb and flow of life: an introduction to grief and loss");
INSERT INTO `wp_rg_lead_detail` VALUES("535", "83", "1", "1.3", "Rhea");
INSERT INTO `wp_rg_lead_detail` VALUES("536", "83", "1", "1.6", "Lonsdale");
INSERT INTO `wp_rg_lead_detail` VALUES("537", "83", "1", "2", "rhea.lonsdale@usask.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("538", "83", "1", "5", "(306)880-7798");
INSERT INTO `wp_rg_lead_detail` VALUES("539", "83", "1", "3", "Hello,\r\n\r\nI would like to inquire about making an initial appointment. I was referred to your practice from the Vancouver Island Crisis Line. I am a recent graduate of a BFA program, and have been meaning to find counseling since I graduated but have not found an affordable solution. I continue to put seeking help off on the basis of not having the funds to do so and feel guilty about not being able to pay full fees, but I am eager for professional help.\r\n\r\nIf I could set up an initial appointment that would be great. Please let me know what I should bring in remuneration. Thank you,\r\n\r\n\r\nRhea");
INSERT INTO `wp_rg_lead_detail` VALUES("540", "84", "1", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("541", "84", "1", "1.6", "Fenimore");
INSERT INTO `wp_rg_lead_detail` VALUES("542", "84", "1", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("543", "84", "1", "5", "(250)508-2498");
INSERT INTO `wp_rg_lead_detail` VALUES("544", "84", "1", "3", "I have some anxieties around family relationships I\'d like some help with.  If possible, I would like an inital visit with Bill, to determine a course of counselling or therapy.  He would know me as Karen Brantley...\r\n\r\nCheers,\r\nKaren");
INSERT INTO `wp_rg_lead_detail` VALUES("545", "85", "1", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("546", "85", "1", "1.6", "Fenimore");
INSERT INTO `wp_rg_lead_detail` VALUES("547", "85", "1", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("548", "85", "1", "5", "(250)508-2498");
INSERT INTO `wp_rg_lead_detail` VALUES("549", "85", "1", "3", "I have some anxieties around family relationships I\'d like some help with.  If possible, I would like an inital visit with Bill, to determine a course of counselling or therapy.  He would know me as Karen Brantley...\r\n\r\nCheers,\r\nKaren");
INSERT INTO `wp_rg_lead_detail` VALUES("550", "86", "7", "8.3", "Judith");
INSERT INTO `wp_rg_lead_detail` VALUES("551", "86", "7", "8.6", "Horrell");
INSERT INTO `wp_rg_lead_detail` VALUES("552", "86", "7", "6", "(450)923-9986");
INSERT INTO `wp_rg_lead_detail` VALUES("553", "86", "7", "7", "horrellj@sympatico.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("554", "86", "7", "5", "Caroline, I have been wondering about you for quite awhile, and my Google search today landed me here. I thought I would reach out and say hello. I hope you are happy in your new surroundings and healthy. I faced my own health troubles in 2013-2014 with clinical depression followed by bilateral mastectomy for breast cancer, and am now reclaiming what I want out of life. Let me know that life is treating you well again...   Judith");
INSERT INTO `wp_rg_lead_detail` VALUES("555", "87", "3", "1.3", "carol");
INSERT INTO `wp_rg_lead_detail` VALUES("556", "87", "3", "1.6", "stockall");
INSERT INTO `wp_rg_lead_detail` VALUES("557", "87", "3", "2", "carolstockall@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("558", "87", "3", "3.1", "505-1630 Quadra Street");
INSERT INTO `wp_rg_lead_detail` VALUES("559", "87", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("560", "87", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("561", "87", "3", "3.5", "V8W 3J5");
INSERT INTO `wp_rg_lead_detail` VALUES("562", "87", "3", "4", "(250)532-0667");
INSERT INTO `wp_rg_lead_detail` VALUES("563", "87", "3", "7", "May 2");
INSERT INTO `wp_rg_lead_detail` VALUES("564", "87", "3", "5", "boundaries balance burnout");
INSERT INTO `wp_rg_lead_detail` VALUES("566", "88", "1", "1.3", "Eva");
INSERT INTO `wp_rg_lead_detail` VALUES("567", "88", "1", "1.6", "Yan");
INSERT INTO `wp_rg_lead_detail` VALUES("568", "88", "1", "2", "yan.macleod@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("569", "88", "1", "5", "(250)477-9020");
INSERT INTO `wp_rg_lead_detail` VALUES("570", "88", "1", "3", "I am interested in setting up a counselling appointment with Amber Eves regarding issues in our family.");
INSERT INTO `wp_rg_lead_detail` VALUES("571", "89", "3", "1.3", "Susan");
INSERT INTO `wp_rg_lead_detail` VALUES("572", "89", "3", "1.6", "Johnson");
INSERT INTO `wp_rg_lead_detail` VALUES("573", "89", "3", "2", "Susan.Johnson@forces.gc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("574", "89", "3", "3.1", "Nanoose RAP6 1st Floor PO Box 17000 Stn Forces");
INSERT INTO `wp_rg_lead_detail` VALUES("575", "89", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("576", "89", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("577", "89", "3", "3.5", "V9A 7N2");
INSERT INTO `wp_rg_lead_detail` VALUES("578", "89", "3", "4", "(250)468-5011");
INSERT INTO `wp_rg_lead_detail` VALUES("579", "89", "3", "7", "05/02/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("580", "89", "3", "5", "Boundries, Balance and Burnout: Self-Care for Women Workship");
INSERT INTO `wp_rg_lead_detail` VALUES("582", "90", "3", "1.3", "Wendy");
INSERT INTO `wp_rg_lead_detail` VALUES("583", "90", "3", "1.6", "Woollven");
INSERT INTO `wp_rg_lead_detail` VALUES("584", "90", "3", "2", "wwoollven@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("585", "90", "3", "3.1", "2112 Wildflower Rd.");
INSERT INTO `wp_rg_lead_detail` VALUES("586", "90", "3", "3.3", "Shawnigan Lake");
INSERT INTO `wp_rg_lead_detail` VALUES("587", "90", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("588", "90", "3", "3.5", "V0R2W1");
INSERT INTO `wp_rg_lead_detail` VALUES("589", "90", "3", "4", "(250)701-8072");
INSERT INTO `wp_rg_lead_detail` VALUES("590", "90", "3", "7", "06/06/15");
INSERT INTO `wp_rg_lead_detail` VALUES("591", "90", "3", "5", "Option 1: $150.00 per couple for a one-day workshop (9:00am-5:00pm)");
INSERT INTO `wp_rg_lead_detail` VALUES("593", "91", "3", "1.3", "Wendy");
INSERT INTO `wp_rg_lead_detail` VALUES("594", "91", "3", "1.6", "Woollven");
INSERT INTO `wp_rg_lead_detail` VALUES("595", "91", "3", "2", "wwoollven@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("596", "91", "3", "3.1", "2112 Wildflower Rd.");
INSERT INTO `wp_rg_lead_detail` VALUES("597", "91", "3", "3.3", "Shawnigan Lake");
INSERT INTO `wp_rg_lead_detail` VALUES("598", "91", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("599", "91", "3", "3.5", "V0R2W1");
INSERT INTO `wp_rg_lead_detail` VALUES("600", "91", "3", "4", "(250)701-8072");
INSERT INTO `wp_rg_lead_detail` VALUES("601", "91", "3", "7", "06/06/15");
INSERT INTO `wp_rg_lead_detail` VALUES("602", "91", "3", "5", "Option 1: $150.00 per couple for a one-day workshop (9:00am-5:00pm)\r\n\r\nFiance: Jeff Milne");
INSERT INTO `wp_rg_lead_detail` VALUES("604", "92", "1", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("605", "92", "1", "1.6", "Fenimore");
INSERT INTO `wp_rg_lead_detail` VALUES("606", "92", "1", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("607", "92", "1", "5", "(250)508-2498");
INSERT INTO `wp_rg_lead_detail` VALUES("608", "92", "1", "3", "Hi Bill,\r\n\r\nAfter reflecting, I would like to make an appointment for next week after all.  If you could please give me a call to arrange a time, I would be grateful.\r\nCheers,\r\nKaren");
INSERT INTO `wp_rg_lead_detail` VALUES("609", "93", "1", "1.3", "June Heather");
INSERT INTO `wp_rg_lead_detail` VALUES("610", "93", "1", "1.6", "Anderson");
INSERT INTO `wp_rg_lead_detail` VALUES("611", "93", "1", "2", "jh_anderson9@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("612", "93", "1", "5", "(250)381-8499");
INSERT INTO `wp_rg_lead_detail` VALUES("613", "93", "1", "3", "would like a counsellor to help with low self-esteem, bullying at work, taking care of myself.");
INSERT INTO `wp_rg_lead_detail` VALUES("614", "94", "1", "1.3", "daphne");
INSERT INTO `wp_rg_lead_detail` VALUES("615", "94", "1", "1.6", "dobko walsh");
INSERT INTO `wp_rg_lead_detail` VALUES("616", "94", "1", "2", "daphne.dobko-walsh@viha.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("617", "94", "1", "5", "(250)889-4279");
INSERT INTO `wp_rg_lead_detail` VALUES("618", "94", "1", "3", "I am interested in the workshop on Family Systems beginning July and am wondering about the dates as it is posted it will be 5 day intensive. Thanks\r\n\r\nDaphne");
INSERT INTO `wp_rg_lead_detail` VALUES("619", "95", "3", "1.3", "Joanna");
INSERT INTO `wp_rg_lead_detail` VALUES("620", "95", "3", "1.6", "Gnilica");
INSERT INTO `wp_rg_lead_detail` VALUES("621", "95", "3", "2", "joannagnilica@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("622", "95", "3", "3.1", "#201 - 505 Quadra Street");
INSERT INTO `wp_rg_lead_detail` VALUES("623", "95", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("624", "95", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("625", "95", "3", "3.5", "V8V 3S2");
INSERT INTO `wp_rg_lead_detail` VALUES("626", "95", "3", "4", "(250)857-1272");
INSERT INTO `wp_rg_lead_detail` VALUES("627", "95", "3", "7", "05/25/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("628", "95", "3", "5", "Strengthening well-being: A time for renewal");
INSERT INTO `wp_rg_lead_detail` VALUES("630", "96", "3", "1.3", "Susan");
INSERT INTO `wp_rg_lead_detail` VALUES("631", "96", "3", "1.6", "Benesch");
INSERT INTO `wp_rg_lead_detail` VALUES("632", "96", "3", "2", "susan@earthsoption.com");
INSERT INTO `wp_rg_lead_detail` VALUES("633", "96", "3", "3.1", "10 Kaleigh Lane");
INSERT INTO `wp_rg_lead_detail` VALUES("634", "96", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("635", "96", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("636", "96", "3", "3.5", "V9B 0A2");
INSERT INTO `wp_rg_lead_detail` VALUES("637", "96", "3", "4", "(250)884-8745");
INSERT INTO `wp_rg_lead_detail` VALUES("638", "96", "3", "7", "August");
INSERT INTO `wp_rg_lead_detail` VALUES("639", "96", "3", "5", "Grief and Loss");
INSERT INTO `wp_rg_lead_detail` VALUES("641", "97", "3", "1.3", "Melissa");
INSERT INTO `wp_rg_lead_detail` VALUES("642", "97", "3", "1.6", "Blais");
INSERT INTO `wp_rg_lead_detail` VALUES("643", "97", "3", "2", "mblais25@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("644", "97", "3", "3.1", "Unit 12 - 617 Battery Street");
INSERT INTO `wp_rg_lead_detail` VALUES("645", "97", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("646", "97", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("647", "97", "3", "3.5", "V8V 1E6");
INSERT INTO `wp_rg_lead_detail` VALUES("648", "97", "3", "4", "(250)881-5170");
INSERT INTO `wp_rg_lead_detail` VALUES("649", "97", "3", "7", "June 6, 2015");
INSERT INTO `wp_rg_lead_detail` VALUES("650", "97", "3", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("652", "98", "3", "1.3", "Kim");
INSERT INTO `wp_rg_lead_detail` VALUES("653", "98", "3", "1.6", "Creally");
INSERT INTO `wp_rg_lead_detail` VALUES("654", "98", "3", "2", "kcreally@phoenixhumanservices.org");
INSERT INTO `wp_rg_lead_detail` VALUES("655", "98", "3", "3.1", "4th Floor, 1095 McKenzie Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("656", "98", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("657", "98", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("658", "98", "3", "3.5", "V8P 2L5");
INSERT INTO `wp_rg_lead_detail` VALUES("659", "98", "3", "4", "(250)208-9197");
INSERT INTO `wp_rg_lead_detail` VALUES("660", "98", "3", "7", "June 13, 2015");
INSERT INTO `wp_rg_lead_detail` VALUES("661", "98", "3", "5", "Caregiver Burnout");
INSERT INTO `wp_rg_lead_detail` VALUES("663", "99", "1", "1.3", "Andrew");
INSERT INTO `wp_rg_lead_detail` VALUES("664", "99", "1", "1.6", "Fletcher");
INSERT INTO `wp_rg_lead_detail` VALUES("665", "99", "1", "2", "Andrew_Fletcher27@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("666", "99", "1", "5", "(250)380-8416");
INSERT INTO `wp_rg_lead_detail` VALUES("667", "99", "1", "3", "Hi there, my names Andrew I\'m 28, I deal with cronic back pain and such. Its been difficult so my friend suggested I come and try one of your counsellors. Just want information on costs and times available, late in the day is best if possible. Thank you.");
INSERT INTO `wp_rg_lead_detail` VALUES("668", "100", "3", "1.3", "Ellen");
INSERT INTO `wp_rg_lead_detail` VALUES("669", "100", "3", "1.6", "Chen");
INSERT INTO `wp_rg_lead_detail` VALUES("670", "100", "3", "2", "ellen_chen8@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("671", "100", "3", "3.1", "4765 Gothard Street");
INSERT INTO `wp_rg_lead_detail` VALUES("672", "100", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("673", "100", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("674", "100", "3", "3.5", "V5R 3L1");
INSERT INTO `wp_rg_lead_detail` VALUES("675", "100", "3", "4", "(250)818-8162");
INSERT INTO `wp_rg_lead_detail` VALUES("676", "100", "3", "7", "06/06/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("677", "100", "3", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("679", "101", "1", "1.3", "Deanna");
INSERT INTO `wp_rg_lead_detail` VALUES("680", "101", "1", "1.6", "Raffle");
INSERT INTO `wp_rg_lead_detail` VALUES("681", "101", "1", "2", "deannaraffle@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("682", "101", "1", "5", "(250)507-3436");
INSERT INTO `wp_rg_lead_detail` VALUES("683", "101", "1", "3", "hi I am looking for addictions counselling do you do that type of counselling? If yes can I make an appointment?");
INSERT INTO `wp_rg_lead_detail` VALUES("684", "102", "1", "1.3", "Werner");
INSERT INTO `wp_rg_lead_detail` VALUES("685", "102", "1", "1.6", "Hofstatter");
INSERT INTO `wp_rg_lead_detail` VALUES("686", "102", "1", "2", "Wernerhofstatter@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("687", "102", "1", "5", "(250)858-6634");
INSERT INTO `wp_rg_lead_detail` VALUES("688", "102", "1", "3", "Hi Margaret. I am Debbie Roberts husband and we have met before. You know her background and I realize that it affects me deeply as well.\r\n\r\nPlease let me know if I can have an appointment with you as well, separately. Anytime next week would be fine.   \r\n\r\nThanks.");
INSERT INTO `wp_rg_lead_detail` VALUES("689", "103", "2", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("690", "103", "2", "1.6", "Hall");
INSERT INTO `wp_rg_lead_detail` VALUES("691", "103", "2", "2", "jenjeanhall@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("692", "103", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("693", "104", "3", "1.3", "Beth");
INSERT INTO `wp_rg_lead_detail` VALUES("694", "104", "3", "1.6", "Leghorn");
INSERT INTO `wp_rg_lead_detail` VALUES("695", "104", "3", "2", "beth.leghorn@phoenixhumanservices.org");
INSERT INTO `wp_rg_lead_detail` VALUES("696", "104", "3", "3.1", "1095 McKenzie Ave 4th floor");
INSERT INTO `wp_rg_lead_detail` VALUES("697", "104", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("698", "104", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("699", "104", "3", "3.5", "V8P2L5");
INSERT INTO `wp_rg_lead_detail` VALUES("700", "104", "3", "4", "(250)920-8530");
INSERT INTO `wp_rg_lead_detail` VALUES("701", "104", "3", "7", "Saturday, June 20, 2015");
INSERT INTO `wp_rg_lead_detail` VALUES("702", "104", "3", "5", "Self-Injuring Youth: Understanding and Responding \r\n\r\n");
INSERT INTO `wp_rg_lead_detail` VALUES("704", "105", "1", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("705", "105", "1", "1.6", "Bjorgan");
INSERT INTO `wp_rg_lead_detail` VALUES("706", "105", "1", "2", "sjbjorgan@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("707", "105", "1", "5", "(250)857-4180");
INSERT INTO `wp_rg_lead_detail` VALUES("708", "105", "1", "3", "Hi there,\r\n\r\nI am interested in booking an appointment for my 6 year old Evelyn Bjorgan, with Amber. I am not really worried about her but a few months ago, one night she was having trouble going to sleep and telling me all her worries and troubles. I mentioned that she could talk to a counselor about things that kept bothering her. Recently she has started asking to talk to someone. So, I said I would make her an appointment. If nothing else, it is a good exercise to teach self care but I am sure we could learn some tricks for lowering anxiety and managing strife. My phone number is 250-857-4180 but I have forgotten my phone at home today so I need to email with you if you reply today. Fridays are the best day for us, also monday and wednesday am are good as well.\r\n\r\nAs for fees, I am not sure off the top of my head what our household income is but I am a full time student and I think we would qualify for the sliding scale. What do I need to provide for you to prove income.\r\n\r\nThank you.\r\nSarah Bjorgan\r\n");
INSERT INTO `wp_rg_lead_detail` VALUES("709", "106", "1", "1.3", "Antonia");
INSERT INTO `wp_rg_lead_detail` VALUES("710", "106", "1", "1.6", "Jacobson");
INSERT INTO `wp_rg_lead_detail` VALUES("711", "106", "1", "2", "hopecounselling@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("712", "106", "1", "5", "(044)752-2227");
INSERT INTO `wp_rg_lead_detail` VALUES("713", "106", "1", "3", "Dear South Island Centre Team,\r\n\r\nI have come across your Family Systems Theory â€“ 5 Day Summer Intensive (Monday-Friday, July 27-31, 2015) course and have some questions about it. \r\n\r\nI am a counsellor in England, and will be spending some time in July on Vancouver Island. I am currently reseraching options for some professional (and inevitably then personal) development options, particularly in the area of systemic therapy, which is how I stumbled across your website. Now, my question is whether this course is geared towards professionals or rather more suitable for lay persons, seeking to understand their family better. \r\n\r\nWould you also be able to provide some information on the course content in more detail? Thank you.\r\n\r\nKind regards,\r\nAntonia Jacobson\r\n\r\nPS: Please only contact me via email as the phone number above is incorrect (it would not let me enter my phone number due to the different format of international phone numbers).");
INSERT INTO `wp_rg_lead_detail` VALUES("714", "107", "1", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("715", "107", "1", "1.6", "Smith");
INSERT INTO `wp_rg_lead_detail` VALUES("716", "107", "1", "2", "sfsmith8@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("717", "107", "1", "5", "(250)889-0784");
INSERT INTO `wp_rg_lead_detail` VALUES("718", "107", "1", "3", "Hi there,\r\n\r\nMy fiancÃ© and I are getting married in November and are interested in doing some pre-marital counselling. Could you please advise what kind of services you recommend, pricing and availability?\r\n\r\nThank you,\r\nSarah");
INSERT INTO `wp_rg_lead_detail` VALUES("719", "108", "3", "1.3", "Andrea");
INSERT INTO `wp_rg_lead_detail` VALUES("720", "108", "3", "1.6", "Giese");
INSERT INTO `wp_rg_lead_detail` VALUES("721", "108", "3", "2", "andreakgiese@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("722", "108", "3", "3.1", "1375 Laurel Road");
INSERT INTO `wp_rg_lead_detail` VALUES("723", "108", "3", "3.3", "North Saanich");
INSERT INTO `wp_rg_lead_detail` VALUES("724", "108", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("725", "108", "3", "3.5", "V8L5K8");
INSERT INTO `wp_rg_lead_detail` VALUES("726", "108", "3", "4", "(250)882-0875");
INSERT INTO `wp_rg_lead_detail` VALUES("727", "108", "3", "7", "06/20/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("728", "108", "3", "5", "Self injury workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("730", "109", "3", "1.3", "Whitney");
INSERT INTO `wp_rg_lead_detail` VALUES("731", "109", "3", "1.6", "Johnstone");
INSERT INTO `wp_rg_lead_detail` VALUES("732", "109", "3", "2", "whitney.johnstone@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("733", "109", "3", "3.1", "6269 Marie Meadows Road");
INSERT INTO `wp_rg_lead_detail` VALUES("734", "109", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("735", "109", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("736", "109", "3", "3.5", "V8Z 5Z9");
INSERT INTO `wp_rg_lead_detail` VALUES("737", "109", "3", "4", "(250)882-9419");
INSERT INTO `wp_rg_lead_detail` VALUES("738", "109", "3", "7", "July");
INSERT INTO `wp_rg_lead_detail` VALUES("739", "109", "3", "5", "Preparing for Marriage - 3 hour private sessions option ($175.00)");
INSERT INTO `wp_rg_lead_detail` VALUES("741", "110", "1", "1.3", "Chelsea");
INSERT INTO `wp_rg_lead_detail` VALUES("742", "110", "1", "1.6", "Williams");
INSERT INTO `wp_rg_lead_detail` VALUES("743", "110", "1", "2", "chelseawilliams6@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("744", "110", "1", "5", "(778)678-1024");
INSERT INTO `wp_rg_lead_detail` VALUES("745", "110", "1", "3", "Hi there,\r\n\r\nI\'m hoping to receive some counselling for intimacy issues/counselling.  I\'m really tired of being considered \"cold\" as I don\'t feel like this on the inside and it is starting to put a lot of strain on my personal relationships.  I don\'t really know where to go as when I have discussed this issue with other it has been brushed off.  If you are accepting new patients I would greatly appreciate the opportunity to talk to someone or to be referred somewhere that can help me.\r\n\r\nThank you,\r\nChelsea");
INSERT INTO `wp_rg_lead_detail` VALUES("746", "111", "1", "1.3", "Ted");
INSERT INTO `wp_rg_lead_detail` VALUES("747", "111", "1", "1.6", "Smith");
INSERT INTO `wp_rg_lead_detail` VALUES("748", "111", "1", "2", "tedsmith575@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("749", "111", "1", "5", "(801)456-8856");
INSERT INTO `wp_rg_lead_detail` VALUES("750", "111", "1", "3", "Hello, my name is Ted Smith and I am wondering what kind of counselling services you offer. Do you offer business counselling? If so, that would be great because my business is struggling and I need some help. I have been open for about six months and business hasn\'t been doing well. Perhaps I am being a little impatient, but I really want my business to do well. \r\nhttp://rivieracounselling.com.au");
INSERT INTO `wp_rg_lead_detail` VALUES("751", "112", "1", "1.3", "Mallory");
INSERT INTO `wp_rg_lead_detail` VALUES("752", "112", "1", "1.6", "Cooper");
INSERT INTO `wp_rg_lead_detail` VALUES("753", "112", "1", "2", "m_cooper7@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("754", "112", "1", "5", "(587)930-1697");
INSERT INTO `wp_rg_lead_detail` VALUES("755", "112", "1", "3", "Hello there. I\'m wondering about your counselling services and if I would need a referral for an appointment? I live in St. Albert Ab at this time but my family and I are moving to Victoria at the end of the month. My counsellor here gave me this contact info and can also send a referral if need be.\r\nThanks so much,\r\nMallory\r\n");
INSERT INTO `wp_rg_lead_detail` VALUES("756", "113", "1", "1.3", "Stephanie");
INSERT INTO `wp_rg_lead_detail` VALUES("757", "113", "1", "1.6", "Landucci");
INSERT INTO `wp_rg_lead_detail` VALUES("758", "113", "1", "2", "stephanie.landucci@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("759", "113", "1", "5", "(250)882-3821");
INSERT INTO `wp_rg_lead_detail` VALUES("760", "113", "1", "3", "Hello there,\r\n\r\nI was hoping to set up an appointment to see a counselor. The South Island Centre was recommended to me by my mother.  I have been struggling with issues with anxiety and depression and have been for many years. I have seen counselors in the past but it has been a long while I feel I would benefit from speaking with someone.\r\n\r\nAny information you can provide to me would be greatly appreciated.\r\n\r\nThank you,\r\n\r\nS. Landucci");
INSERT INTO `wp_rg_lead_detail` VALUES("761", "114", "8", "1.3", "Christine");
INSERT INTO `wp_rg_lead_detail` VALUES("762", "114", "8", "1.6", "Langerak");
INSERT INTO `wp_rg_lead_detail` VALUES("763", "114", "8", "2", "cllangerak@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("764", "114", "8", "3.1", "#36-2206 Church Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("765", "114", "8", "3.3", "Sooke");
INSERT INTO `wp_rg_lead_detail` VALUES("766", "114", "8", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("767", "114", "8", "3.5", "V9Z 0W1");
INSERT INTO `wp_rg_lead_detail` VALUES("768", "114", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("769", "114", "8", "4", "(250) 216-9057");
INSERT INTO `wp_rg_lead_detail` VALUES("770", "114", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("771", "114", "8", "6", "Holy Trinity Anglican Church Sooke");
INSERT INTO `wp_rg_lead_detail` VALUES("774", "114", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("775", "114", "8", "11.2", "cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("776", "115", "2", "1.3", "Chantale");
INSERT INTO `wp_rg_lead_detail` VALUES("777", "115", "2", "1.6", "Laplante");
INSERT INTO `wp_rg_lead_detail` VALUES("778", "115", "2", "2", "laplante@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("779", "115", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("780", "116", "8", "1.3", "Wally");
INSERT INTO `wp_rg_lead_detail` VALUES("781", "116", "8", "1.6", "Eamer");
INSERT INTO `wp_rg_lead_detail` VALUES("782", "116", "8", "2", "wallyeamer@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("783", "116", "8", "3.1", "3876 Duke Road");
INSERT INTO `wp_rg_lead_detail` VALUES("784", "116", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("785", "116", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("786", "116", "8", "3.5", "V9C4A5");
INSERT INTO `wp_rg_lead_detail` VALUES("787", "116", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("788", "116", "8", "4", "(259) 888-6376");
INSERT INTO `wp_rg_lead_detail` VALUES("789", "116", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("790", "116", "8", "6", "St. Peter & St Paul Anglican Church \r\nEsquimalt, B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("793", "116", "8", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_rg_lead_detail` VALUES("795", "116", "8", "11.1", "credit card");
INSERT INTO `wp_rg_lead_detail` VALUES("796", "117", "1", "1.3", "Kirsten");
INSERT INTO `wp_rg_lead_detail` VALUES("797", "117", "1", "1.6", "Proctor");
INSERT INTO `wp_rg_lead_detail` VALUES("798", "117", "1", "2", "specialk@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("799", "117", "1", "5", "(250) 477-4075");
INSERT INTO `wp_rg_lead_detail` VALUES("800", "117", "1", "3", "My partner, David and I, are looking for relationship counselling together, as we have been having problems since we moved in together a year ago.");
INSERT INTO `wp_rg_lead_detail` VALUES("801", "118", "2", "1.3", "Julia");
INSERT INTO `wp_rg_lead_detail` VALUES("802", "118", "2", "1.6", "Montague");
INSERT INTO `wp_rg_lead_detail` VALUES("803", "118", "2", "2", "acctjulia@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("804", "118", "2", "6.3", "Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("805", "119", "1", "1.3", "Julia");
INSERT INTO `wp_rg_lead_detail` VALUES("806", "119", "1", "1.6", "Montague");
INSERT INTO `wp_rg_lead_detail` VALUES("807", "119", "1", "2", "acctjulia@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("808", "119", "1", "5", "(604) 354-3009");
INSERT INTO `wp_rg_lead_detail` VALUES("809", "119", "1", "3", "Hi there,\r\n\r\nI represent the Association of Cooperative Counselling Therapists (ACCT) of Canada - we are a national organization with 250+ counsellors registered across the country.\r\n\r\nI am in the midst of putting together a list of approved professional development resources, and would love to include a discount or offer for workshops offered by the South Island Centre, either some sort of early-bird offer, or an overall discount exclusive to ACCT members.\r\n\r\nWe would then publish information about upcoming workshops in our member newsletters and on a page in the members-only section of our website.\r\n\r\nI have subscribed to updates about workshops and courses as well - will this be the best way to stay up to date on upcoming events?\r\n\r\nThank you for your time!\r\nJulia");
INSERT INTO `wp_rg_lead_detail` VALUES("810", "120", "1", "1.3", "Don");
INSERT INTO `wp_rg_lead_detail` VALUES("811", "120", "1", "1.6", "Craig");
INSERT INTO `wp_rg_lead_detail` VALUES("812", "120", "1", "2", "donc3@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("813", "120", "1", "5", "(250) 758-4457");
INSERT INTO `wp_rg_lead_detail` VALUES("814", "120", "1", "3", "I desperately need help.  I am in emotional turmoi;  I have had one or two men really help me but I need some professional help.");
INSERT INTO `wp_rg_lead_detail` VALUES("815", "121", "1", "1.3", "Samantha");
INSERT INTO `wp_rg_lead_detail` VALUES("816", "121", "1", "1.6", "White");
INSERT INTO `wp_rg_lead_detail` VALUES("817", "121", "1", "2", "Samikwhite@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("818", "121", "1", "5", "(250) 216-2563");
INSERT INTO `wp_rg_lead_detail` VALUES("819", "121", "1", "3", "Hello, my name is Samantha. My partner and I had an appointment booked with Bill Cole about a month ago, but was unable to make it. I am hoping to reschedule with Bill, perhaps this message will reach him so we can discuss further. Thank you.\r\n\r\nSamantha");
INSERT INTO `wp_rg_lead_detail` VALUES("820", "122", "2", "1.3", "Carlin");
INSERT INTO `wp_rg_lead_detail` VALUES("821", "122", "2", "1.6", "Lindsay");
INSERT INTO `wp_rg_lead_detail` VALUES("822", "122", "2", "2", "carlinlindsay@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("823", "122", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("824", "123", "2", "1.3", "Becca");
INSERT INTO `wp_rg_lead_detail` VALUES("825", "123", "2", "1.6", "Chartrand");
INSERT INTO `wp_rg_lead_detail` VALUES("826", "123", "2", "2", "pure_joy89@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("827", "123", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("828", "123", "2", "6.3", "Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("829", "124", "1", "1.3", "geoffrey (geoff)");
INSERT INTO `wp_rg_lead_detail` VALUES("830", "124", "1", "1.6", "machin");
INSERT INTO `wp_rg_lead_detail` VALUES("831", "124", "1", "2", "geoff.a.machin@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("832", "124", "1", "5", "(250) 477-7116");
INSERT INTO `wp_rg_lead_detail` VALUES("833", "124", "1", "3", "My wife of 51 years (Ann) has just been diagnosed by Maureen Matthew (Headway) with progressive supra-nuclear palsy (PSP disease). We both know and understand the course of the disease (I am a physician), but as the carer I have gone down with fairly severe anxiety and some depression in facing up to all the decisions we have to make in the medium and long term. I know I am susceptible to this, as it has happened before in the face of other types of crises (mostly in my career). I know I need counselling and Maureen Matthew feels that Margaret Anderson is a good fit. I have left a voicemail with her. I hope it may be possible for us to meet within 2-3 weeks.");
INSERT INTO `wp_rg_lead_detail` VALUES("834", "125", "1", "1.3", "sheena");
INSERT INTO `wp_rg_lead_detail` VALUES("835", "125", "1", "1.6", "atchison");
INSERT INTO `wp_rg_lead_detail` VALUES("836", "125", "1", "2", "maid_for_hire@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("837", "125", "1", "5", "(778) 350-0446");
INSERT INTO `wp_rg_lead_detail` VALUES("838", "125", "1", "3", "Hello,\r\nI\'m looking for counselling for my depression and anxiety. We are a family of 5 with a gross income last year of 42,000.00.\r\nWe do not have benefits so I\'m looking for something affordable as I do not have much to spend on counselling. I\'d like some feedback from you, to see if this is something I can afford to do.\r\nThank you for your time.\r\nSheena.");
INSERT INTO `wp_rg_lead_detail` VALUES("839", "126", "1", "1.3", "Trystan");
INSERT INTO `wp_rg_lead_detail` VALUES("840", "126", "1", "1.6", "Smyth");
INSERT INTO `wp_rg_lead_detail` VALUES("841", "126", "1", "2", "Crysshe@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("842", "126", "1", "5", "(250) 686-5666");
INSERT INTO `wp_rg_lead_detail` VALUES("843", "126", "1", "3", "Hello I am inquiring on a price for individual counselling for my fiancÃ© Trystan. He has a job and is normally not able to answer phone or emails. Wondering what the rate would be because he makes quite abit less then 50000 a year");
INSERT INTO `wp_rg_lead_detail` VALUES("844", "127", "1", "1.3", "hayley");
INSERT INTO `wp_rg_lead_detail` VALUES("845", "127", "1", "1.6", "davis");
INSERT INTO `wp_rg_lead_detail` VALUES("846", "127", "1", "2", "davishayley@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("847", "127", "1", "5", "(250) 361-5747");
INSERT INTO `wp_rg_lead_detail` VALUES("848", "127", "1", "3", "hi jozef  ter-mitchell(previous client of yours) and I Hayley Davis would really appreciate a chance to come for individual councelling as well as couples councelling.  im not sure all of what  you do but would love any help we can get i have a background of abuse growing up and trauma  and previous post dramatic stress issues and he comes with his own background of head injury time in and out of the system, both of us have previous addictions issues that are hopefully behind us but we all know how that can go.  if theres any help available pls let us know his number is 250-213 9269  mine is 250 3615747  i work till 1130am today and till 8 tomorrow .");
INSERT INTO `wp_rg_lead_detail` VALUES("849", "128", "3", "1.3", "Clementien");
INSERT INTO `wp_rg_lead_detail` VALUES("850", "128", "3", "1.6", "Wolferstan");
INSERT INTO `wp_rg_lead_detail` VALUES("851", "128", "3", "2", "2clemmy@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("852", "128", "3", "3.1", "305-845 Burdett Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("853", "128", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("854", "128", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("855", "128", "3", "3.5", "V8W 1B3");
INSERT INTO `wp_rg_lead_detail` VALUES("856", "128", "3", "4", "(250) 382-0235");
INSERT INTO `wp_rg_lead_detail` VALUES("857", "128", "3", "7", "October 03, 2015");
INSERT INTO `wp_rg_lead_detail` VALUES("858", "128", "3", "5", "Caregiver Burnout");
INSERT INTO `wp_rg_lead_detail` VALUES("860", "129", "1", "1.3", "Bishop Charles");
INSERT INTO `wp_rg_lead_detail` VALUES("861", "129", "1", "1.6", "Dorrington");
INSERT INTO `wp_rg_lead_detail` VALUES("862", "129", "1", "2", "revchas@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("863", "129", "1", "5", "(778) 426-3212");
INSERT INTO `wp_rg_lead_detail` VALUES("864", "129", "1", "3", "I am interested in The Twilight Journey Course being offered starting in October. How many points does this represent for the Canadian Counselling and Psychotherapy Association.");
INSERT INTO `wp_rg_lead_detail` VALUES("865", "130", "3", "1.3", "Rt. Rev\'d. Dr. Charles");
INSERT INTO `wp_rg_lead_detail` VALUES("866", "130", "3", "1.6", "Dorrington");
INSERT INTO `wp_rg_lead_detail` VALUES("867", "130", "3", "2", "revchas@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("868", "130", "3", "3.1", "70-7570 Tetayut Road");
INSERT INTO `wp_rg_lead_detail` VALUES("869", "130", "3", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("870", "130", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("871", "130", "3", "3.5", "V8M 2H4");
INSERT INTO `wp_rg_lead_detail` VALUES("872", "130", "3", "4", "(250) 652-8850");
INSERT INTO `wp_rg_lead_detail` VALUES("873", "130", "3", "7", "28 October, 2015");
INSERT INTO `wp_rg_lead_detail` VALUES("874", "130", "3", "5", "The Twilight Journey");
INSERT INTO `wp_rg_lead_detail` VALUES("876", "131", "1", "1.3", "Nicole");
INSERT INTO `wp_rg_lead_detail` VALUES("877", "131", "1", "1.6", "Sleeth");
INSERT INTO `wp_rg_lead_detail` VALUES("878", "131", "1", "2", "nsleeth@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("879", "131", "1", "5", "(250) 216-0552");
INSERT INTO `wp_rg_lead_detail` VALUES("880", "131", "1", "3", "Hi, I am searching for a counsellor to help with issues such as family of origin, family dynamics, and boundary setting with family.\r\n\r\nThank you,\r\n\r\n- Nicole");
INSERT INTO `wp_rg_lead_detail` VALUES("881", "132", "8", "1.3", "Sheila");
INSERT INTO `wp_rg_lead_detail` VALUES("882", "132", "8", "1.6", "Dearsley");
INSERT INTO `wp_rg_lead_detail` VALUES("883", "132", "8", "2", "lsdearbc@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("884", "132", "8", "3.1", "617 St Charles St");
INSERT INTO `wp_rg_lead_detail` VALUES("885", "132", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("886", "132", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("887", "132", "8", "3.5", "V8S 3P2");
INSERT INTO `wp_rg_lead_detail` VALUES("888", "132", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("889", "132", "8", "4", "(250) 474-2459");
INSERT INTO `wp_rg_lead_detail` VALUES("890", "132", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("891", "132", "8", "6", "Church of the Advent in Colwood");
INSERT INTO `wp_rg_lead_detail` VALUES("894", "132", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("895", "132", "8", "11.1", "credit card");
INSERT INTO `wp_rg_lead_detail` VALUES("896", "133", "1", "1.3", "Lisa");
INSERT INTO `wp_rg_lead_detail` VALUES("897", "133", "1", "1.6", "Meier");
INSERT INTO `wp_rg_lead_detail` VALUES("898", "133", "1", "2", "franzlisameier@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("899", "133", "1", "5", "(778) 967-2933");
INSERT INTO `wp_rg_lead_detail` VALUES("900", "133", "1", "3", "I will be attending Soulstreamâ€™s, Abbotsfordm Living From the Heart course in 2015/2016, a first step for myself to work towards pursuing the vocation of Spiritual Direction.  One of the requirements of the program is monthly spiritual direction concurrent with the course duration.  I am interested in connecting with one of your Spiritual Directors, Pamela Welle if she is available.  \r\n\r\nI look forward to hearing from you,\r\nSincere thanks\r\nLisa Meier");
INSERT INTO `wp_rg_lead_detail` VALUES("901", "134", "1", "1.3", "Alyssa");
INSERT INTO `wp_rg_lead_detail` VALUES("902", "134", "1", "1.6", "Koehler");
INSERT INTO `wp_rg_lead_detail` VALUES("903", "134", "1", "2", "alyssa.koehler@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("904", "134", "1", "5", "(604) 562-6625");
INSERT INTO `wp_rg_lead_detail` VALUES("905", "134", "1", "3", "Hi, this is a general inquiry about making an appointment... I\'m not sure what information you need at this point, so i\'ll leave it at that for now\r\n\r\nthanks\r\nAlyssa");
INSERT INTO `wp_rg_lead_detail` VALUES("906", "135", "1", "1.3", "Marli");
INSERT INTO `wp_rg_lead_detail` VALUES("907", "135", "1", "1.6", "Postulo");
INSERT INTO `wp_rg_lead_detail` VALUES("908", "135", "1", "2", "postulomer@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("909", "135", "1", "5", "(250) 208-3390");
INSERT INTO `wp_rg_lead_detail` VALUES("910", "135", "1", "3", "I\'m looking for more information on your sliding scale. I\'m searching for individual counselling for myself, hopefully on a weekly basis. I am transitioning from counseling that was paid for through my employer, but the sessions have all been used and I still feel I need help. Thank you.");
INSERT INTO `wp_rg_lead_detail` VALUES("911", "136", "1", "1.3", "Amie");
INSERT INTO `wp_rg_lead_detail` VALUES("912", "136", "1", "1.6", "Jamin");
INSERT INTO `wp_rg_lead_detail` VALUES("913", "136", "1", "2", "amiejamin1@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("914", "136", "1", "5", "(250) 595-6577");
INSERT INTO `wp_rg_lead_detail` VALUES("915", "136", "1", "3", "My husband Aaron and I would like to see a counselor about some life changes we are going through.");
INSERT INTO `wp_rg_lead_detail` VALUES("916", "137", "3", "1.3", "Penni");
INSERT INTO `wp_rg_lead_detail` VALUES("917", "137", "3", "1.6", "Foresman");
INSERT INTO `wp_rg_lead_detail` VALUES("918", "137", "3", "2", "pforesman@powertobe.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("919", "137", "3", "3.1", "1017 Fort Street");
INSERT INTO `wp_rg_lead_detail` VALUES("920", "137", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("921", "137", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("922", "137", "3", "3.5", "V8V 3K5");
INSERT INTO `wp_rg_lead_detail` VALUES("923", "137", "3", "4", "(250) 385-2363");
INSERT INTO `wp_rg_lead_detail` VALUES("924", "137", "3", "7", "10/31/15");
INSERT INTO `wp_rg_lead_detail` VALUES("925", "137", "3", "5", "Self-Injuring Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("927", "138", "1", "1.3", "Dion");
INSERT INTO `wp_rg_lead_detail` VALUES("928", "138", "1", "1.6", "Pomponio");
INSERT INTO `wp_rg_lead_detail` VALUES("929", "138", "1", "2", "dion@pomponio.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("930", "138", "1", "5", "(250) 589-6467");
INSERT INTO `wp_rg_lead_detail` VALUES("931", "138", "1", "3", "I would like to book an appointment with Margaret Anderson if possible for my daughter Michaela.  Michaela is 18 years old, and has a sister and best friend who are struggling with mental health issues.   She is supporting them both as they seek treatment both while within institutional care and on out patient basis.   Michaela\'s faith has been severely challenged during this experience.");
INSERT INTO `wp_rg_lead_detail` VALUES("932", "139", "3", "1.3", "Marjorie");
INSERT INTO `wp_rg_lead_detail` VALUES("933", "139", "3", "1.6", "van Orden");
INSERT INTO `wp_rg_lead_detail` VALUES("934", "139", "3", "2", "lgabitous@phoenixhumanservices.org");
INSERT INTO `wp_rg_lead_detail` VALUES("935", "139", "3", "3.1", "Phoenix Human Services Association");
INSERT INTO `wp_rg_lead_detail` VALUES("936", "139", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("937", "139", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("938", "139", "3", "3.5", "V8P 2L5");
INSERT INTO `wp_rg_lead_detail` VALUES("939", "139", "3", "4", "(250) 995-5519");
INSERT INTO `wp_rg_lead_detail` VALUES("940", "139", "3", "7", "Nov 28th");
INSERT INTO `wp_rg_lead_detail` VALUES("941", "139", "3", "5", "Caregiver Burnout");
INSERT INTO `wp_rg_lead_detail` VALUES("943", "140", "8", "1.3", "Marion");
INSERT INTO `wp_rg_lead_detail` VALUES("944", "140", "8", "1.6", "Edgar");
INSERT INTO `wp_rg_lead_detail` VALUES("945", "140", "8", "2", "marion@danieledgar.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("946", "140", "8", "3.1", "#101 - 5110 Cordova Bay Rd.,");
INSERT INTO `wp_rg_lead_detail` VALUES("947", "140", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("948", "140", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("949", "140", "8", "3.5", "V8Y 2K5");
INSERT INTO `wp_rg_lead_detail` VALUES("950", "140", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("951", "140", "8", "4", "(250) 658-1125");
INSERT INTO `wp_rg_lead_detail` VALUES("952", "140", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("953", "140", "8", "6", "St. Michael & All Angels - 4733 West Saanich Rd. Victoria (Anglican)");
INSERT INTO `wp_rg_lead_detail` VALUES("956", "140", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("957", "140", "8", "11.1", "credit card");
INSERT INTO `wp_rg_lead_detail` VALUES("958", "141", "1", "1.3", "Nora");
INSERT INTO `wp_rg_lead_detail` VALUES("959", "141", "1", "1.6", "Johnson");
INSERT INTO `wp_rg_lead_detail` VALUES("960", "141", "1", "2", "nora.johnson@forces.gc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("961", "141", "1", "5", "(250) 363-7968");
INSERT INTO `wp_rg_lead_detail` VALUES("962", "141", "1", "3", "I\'m wondering if you still run group sessions for grief and loss or if you know of any other organizations in Victoria or Westshore that do?");
INSERT INTO `wp_rg_lead_detail` VALUES("963", "142", "1", "1.3", "Sepora");
INSERT INTO `wp_rg_lead_detail` VALUES("964", "142", "1", "1.6", "Jacobson");
INSERT INTO `wp_rg_lead_detail` VALUES("965", "142", "1", "2", "seporamayim@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("966", "142", "1", "5", "(250) 208-8813");
INSERT INTO `wp_rg_lead_detail` VALUES("967", "142", "1", "3", "I am seeking counselling. I was referred by Jennifer Sutton from Island Health. I phoned & left a message today but wasn\'t sure it was the right extension. I am dealing w/ anxiety, insomnia & depression (grief too) after being diagnosed w/ Parkinson\'s. Could someone please phone me soon to make an appointment. I\"m not sure which counsellor is right for me. please advise. Thankyou.");
INSERT INTO `wp_rg_lead_detail` VALUES("968", "143", "3", "1.3", "Kate");
INSERT INTO `wp_rg_lead_detail` VALUES("969", "143", "3", "1.6", "Ritchie");
INSERT INTO `wp_rg_lead_detail` VALUES("970", "143", "3", "2", "kritchie@bgcvic.org");
INSERT INTO `wp_rg_lead_detail` VALUES("971", "143", "3", "3.1", "1195 Esquimalt Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("972", "143", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("973", "143", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("974", "143", "3", "3.5", "V9A 3N6");
INSERT INTO `wp_rg_lead_detail` VALUES("975", "143", "3", "4", "(250) 384-9133");
INSERT INTO `wp_rg_lead_detail` VALUES("976", "143", "3", "7", "Dec 5 2015");
INSERT INTO `wp_rg_lead_detail` VALUES("977", "143", "3", "5", "Self Injuring Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("979", "144", "1", "1.3", "Mandy");
INSERT INTO `wp_rg_lead_detail` VALUES("980", "144", "1", "1.6", "Rosts");
INSERT INTO `wp_rg_lead_detail` VALUES("981", "144", "1", "2", "amandarosts@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("982", "144", "1", "5", "(289) 241-1017");
INSERT INTO `wp_rg_lead_detail` VALUES("983", "144", "1", "3", "Hello,\r\n\r\nI have an appointment scheduled for tomorrow at 5:00 p.m. Unfortunately, I have been called into work at this time and I will be unable to make the appointment. Sorry about that.\r\n\r\nAll the best,\r\nMandy");
INSERT INTO `wp_rg_lead_detail` VALUES("984", "145", "1", "1.3", "Kate");
INSERT INTO `wp_rg_lead_detail` VALUES("985", "145", "1", "1.6", "Jenkins");
INSERT INTO `wp_rg_lead_detail` VALUES("986", "145", "1", "2", "katejenkins7@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("987", "145", "1", "5", "(250) 508-1689");
INSERT INTO `wp_rg_lead_detail` VALUES("988", "145", "1", "3", "I am so happy to have found your services. I would like to talk to you about setting up an appointment to see a counsellor. Please feel free to call me at 250-5081689. Thank you, Kate");
INSERT INTO `wp_rg_lead_detail` VALUES("989", "146", "1", "1.3", "Lauren");
INSERT INTO `wp_rg_lead_detail` VALUES("990", "146", "1", "1.6", "McKenzie");
INSERT INTO `wp_rg_lead_detail` VALUES("991", "146", "1", "2", "ljmckenz@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("992", "146", "1", "5", "(250) 588-3411");
INSERT INTO `wp_rg_lead_detail` VALUES("993", "146", "1", "3", "Hello,\r\n\r\nI was referred to you by Pastor Lyle at Lutheran Church of the Cross in regards to premarital couples counselling. I was just hoping to touch base to see what your recommendations are for how that looks and when we might be able to make it work!\r\n\r\nThanks,\r\n\r\nLauren");
INSERT INTO `wp_rg_lead_detail` VALUES("994", "147", "1", "1.3", "Lisa");
INSERT INTO `wp_rg_lead_detail` VALUES("995", "147", "1", "1.6", "Willott");
INSERT INTO `wp_rg_lead_detail` VALUES("996", "147", "1", "2", "lisawillott@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("997", "147", "1", "5", "(778) 977-7769");
INSERT INTO `wp_rg_lead_detail` VALUES("998", "147", "1", "3", "Hi there,\r\nI am interested in getting some counseling over a past relationship ending. Several months ago I had previously seen Darrel at the centre, and he was lovely, but I think I would be more comfortable speaking with a woman, if that\'s possible. The number above is my cell phone and I can be reached anytime.  Thanks,\r\nLisa Willott");
INSERT INTO `wp_rg_lead_detail` VALUES("999", "148", "8", "1.3", "Michael");
INSERT INTO `wp_rg_lead_detail` VALUES("1000", "148", "8", "1.6", "Crockford");
INSERT INTO `wp_rg_lead_detail` VALUES("1001", "148", "8", "2", "crockfordm@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1002", "148", "8", "3.1", "640 Springbank Place");
INSERT INTO `wp_rg_lead_detail` VALUES("1003", "148", "8", "3.3", "Mill Bay");
INSERT INTO `wp_rg_lead_detail` VALUES("1004", "148", "8", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("1005", "148", "8", "3.5", "V0R2P4");
INSERT INTO `wp_rg_lead_detail` VALUES("1006", "148", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1007", "148", "8", "4", "(250) 929-6704");
INSERT INTO `wp_rg_lead_detail` VALUES("1008", "148", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("1009", "148", "8", "6", "St Peter\'s Lakehill, Anglican, 3939 St Peter Street, Saanich");
INSERT INTO `wp_rg_lead_detail` VALUES("1012", "148", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("1014", "148", "8", "11.1", "credit card");
INSERT INTO `wp_rg_lead_detail` VALUES("1015", "149", "8", "1.3", "Brenda");
INSERT INTO `wp_rg_lead_detail` VALUES("1016", "149", "8", "1.6", "Crockford");
INSERT INTO `wp_rg_lead_detail` VALUES("1017", "149", "8", "2", "crockford@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1018", "149", "8", "3.1", "640 Springbank Place");
INSERT INTO `wp_rg_lead_detail` VALUES("1019", "149", "8", "3.3", "Mill Bay");
INSERT INTO `wp_rg_lead_detail` VALUES("1020", "149", "8", "3.4", "B");
INSERT INTO `wp_rg_lead_detail` VALUES("1021", "149", "8", "3.5", "V0R2P4");
INSERT INTO `wp_rg_lead_detail` VALUES("1022", "149", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1023", "149", "8", "4", "(250) 929-6704");
INSERT INTO `wp_rg_lead_detail` VALUES("1024", "149", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("1025", "149", "8", "6", "St Peter\'s Lakehill, Anglican, 3939 St Peter Street, Saanich");
INSERT INTO `wp_rg_lead_detail` VALUES("1028", "149", "8", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_rg_lead_detail` VALUES("1030", "149", "8", "11.1", "credit card");
INSERT INTO `wp_rg_lead_detail` VALUES("1031", "150", "1", "1.3", "Dami");
INSERT INTO `wp_rg_lead_detail` VALUES("1032", "150", "1", "1.6", "Adeola");
INSERT INTO `wp_rg_lead_detail` VALUES("1033", "150", "1", "2", "damilola.adeola@adp.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1034", "150", "1", "5", "(905) 364-5762");
INSERT INTO `wp_rg_lead_detail` VALUES("1035", "150", "1", "3", "Hi Susanne, \r\n\r\nI had a conversation with Caroline yesterday regarding Payroll, and she said you were definitely the best person to chat with, and show the solution to determine if it would be the right fit for your organization. \r\n\r\nWhen would be the best time this week to chat? \r\n\r\nBest regards, \r\nDamilola Adeola");
INSERT INTO `wp_rg_lead_detail` VALUES("1036", "151", "1", "1.3", "Bruce");
INSERT INTO `wp_rg_lead_detail` VALUES("1037", "151", "1", "1.6", "Barnes");
INSERT INTO `wp_rg_lead_detail` VALUES("1038", "151", "1", "2", "Bruce.Edward.Barnes@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1039", "151", "1", "5", "(778) 676-3673");
INSERT INTO `wp_rg_lead_detail` VALUES("1040", "151", "1", "3", "my wife is currently seeing Margaret Anderson, she directed my wife for me to contact you to receive counselling. You may contact me at the number above or my home number 250-590-8364. \r\n\r\nBruce");
INSERT INTO `wp_rg_lead_detail` VALUES("1041", "152", "7", "8.3", "Amphil");
INSERT INTO `wp_rg_lead_detail` VALUES("1042", "152", "7", "8.6", "Solutions");
INSERT INTO `wp_rg_lead_detail` VALUES("1043", "152", "7", "6", "(989) 165-6508");
INSERT INTO `wp_rg_lead_detail` VALUES("1044", "152", "7", "7", "sales@amphilsolutions.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1045", "152", "7", "5", "If you are interested we want to increase the number of \"online customers for your business\".\r\n\r\nWe strictly work on Performance basis and can assure you of getting quality links with a proper reporting format for your site as well.\r\n\r\nPlease do let me know if you have any questions, If interested please reply with your skype id, you can also add me on your skype, my skype id is \"amphilsolutions\".\r\n\r\nWe are looking forward to a long and healthy business relationship with you and your company. If you have any questions, we will be more than happy to provide you quick assistance.");
INSERT INTO `wp_rg_lead_detail` VALUES("1046", "153", "1", "1.3", "Christina");
INSERT INTO `wp_rg_lead_detail` VALUES("1047", "153", "1", "1.6", "Price");
INSERT INTO `wp_rg_lead_detail` VALUES("1048", "153", "1", "2", "christinarprice@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1049", "153", "1", "5", "(250) 893-5972");
INSERT INTO `wp_rg_lead_detail` VALUES("1050", "153", "1", "3", "Hi there, \r\nRob Fitterer from Lambrick Park Church recommended South Island Centre for pre-marital counselling. \r\nWhat do you usually recommend for that? How many sessions? How long before the wedding? etc. \r\nThanks, \r\nChristina Price (& Jonah Timms)");
INSERT INTO `wp_rg_lead_detail` VALUES("1051", "154", "5", "1.3", "Judy");
INSERT INTO `wp_rg_lead_detail` VALUES("1052", "154", "5", "1.6", "Joyce");
INSERT INTO `wp_rg_lead_detail` VALUES("1053", "154", "5", "2", "judycjoyce@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1054", "154", "5", "3", "(250) 590-5215");
INSERT INTO `wp_rg_lead_detail` VALUES("1055", "154", "5", "4", "Good evening Mr. Cole:  \r\n\r\nI am hoping you can help me.  I am looking for a psychiatrist here in Victoria, whose practice is based on traditional Biblical teachings and Christian values.  Would you happen to know of one?\r\n\r\nThank you,\r\nJudy Joyce");
INSERT INTO `wp_rg_lead_detail` VALUES("1056", "155", "3", "1.3", "Davida");
INSERT INTO `wp_rg_lead_detail` VALUES("1057", "155", "3", "1.6", "Ceja");
INSERT INTO `wp_rg_lead_detail` VALUES("1058", "155", "3", "2", "dyudyueva.nata@mail.ru");
INSERT INTO `wp_rg_lead_detail` VALUES("1059", "155", "3", "3.1", "2329 Owen Lane");
INSERT INTO `wp_rg_lead_detail` VALUES("1060", "155", "3", "3.3", "Whitehall");
INSERT INTO `wp_rg_lead_detail` VALUES("1061", "155", "3", "3.4", "MI");
INSERT INTO `wp_rg_lead_detail` VALUES("1062", "155", "3", "3.5", "49461");
INSERT INTO `wp_rg_lead_detail` VALUES("1063", "155", "3", "4", "(231) 894-5629");
INSERT INTO `wp_rg_lead_detail` VALUES("1064", "155", "3", "7", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("1065", "155", "3", "5", "Getting The Best Call of Duty Black Ops 3 ESP");
INSERT INTO `wp_rg_lead_detail` VALUES("1069", "156", "3", "1.3", "Alana");
INSERT INTO `wp_rg_lead_detail` VALUES("1070", "156", "3", "1.6", "Goddard");
INSERT INTO `wp_rg_lead_detail` VALUES("1071", "156", "3", "2", "alana.goddard@saanich.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1072", "156", "3", "3.1", "4636 Elk Lake Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("1073", "156", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1074", "156", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1075", "156", "3", "3.5", "V8Z 5M1");
INSERT INTO `wp_rg_lead_detail` VALUES("1076", "156", "3", "4", "(250) 475-7624");
INSERT INTO `wp_rg_lead_detail` VALUES("1077", "156", "3", "7", "12/05/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("1078", "156", "3", "5", "Self-Injurying Youth: Understanding and Responding");
INSERT INTO `wp_rg_lead_detail` VALUES("1080", "157", "3", "1.3", "Courtney");
INSERT INTO `wp_rg_lead_detail` VALUES("1081", "157", "3", "1.6", "Demone");
INSERT INTO `wp_rg_lead_detail` VALUES("1082", "157", "3", "2", "court.demone@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1083", "157", "3", "3.1", "4636 Elk Lake Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("1084", "157", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1085", "157", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1086", "157", "3", "3.5", "V8Z 5M1");
INSERT INTO `wp_rg_lead_detail` VALUES("1087", "157", "3", "4", "(250) 475-7624");
INSERT INTO `wp_rg_lead_detail` VALUES("1088", "157", "3", "7", "12/05/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("1089", "157", "3", "5", "Self-Injurying Youth: Understanding and Responding\r\n\r\n*Alana Goddard (Saanich) to cover cost of all Saanich staff");
INSERT INTO `wp_rg_lead_detail` VALUES("1091", "158", "3", "1.3", "Jackson");
INSERT INTO `wp_rg_lead_detail` VALUES("1092", "158", "3", "1.6", "Martin");
INSERT INTO `wp_rg_lead_detail` VALUES("1093", "158", "3", "2", "justformar@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1094", "158", "3", "3.1", "4636 Elk Lake Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("1095", "158", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1096", "158", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1097", "158", "3", "3.5", "V8W 5M1");
INSERT INTO `wp_rg_lead_detail` VALUES("1098", "158", "3", "4", "(250) 475-7624");
INSERT INTO `wp_rg_lead_detail` VALUES("1099", "158", "3", "7", "12/05/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("1100", "158", "3", "5", "Self-Injurying Youth: Understanding and Responding\r\n\r\nAlana Goddard (Saanich) will pay for this workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("1102", "159", "3", "1.3", "Macayla");
INSERT INTO `wp_rg_lead_detail` VALUES("1103", "159", "3", "1.6", "Yan");
INSERT INTO `wp_rg_lead_detail` VALUES("1104", "159", "3", "2", "macayla.y@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1105", "159", "3", "3.1", "4636 Elk Lake Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("1106", "159", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1107", "159", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1108", "159", "3", "3.5", "V8Z 5M1");
INSERT INTO `wp_rg_lead_detail` VALUES("1109", "159", "3", "4", "(250) 475-7624");
INSERT INTO `wp_rg_lead_detail` VALUES("1110", "159", "3", "7", "12/05/2015");
INSERT INTO `wp_rg_lead_detail` VALUES("1111", "159", "3", "5", "Self-Injurying Youth: Understanding and Responding\r\n\r\nAlana Goddard (Saanich) will provide payment");
INSERT INTO `wp_rg_lead_detail` VALUES("1113", "160", "3", "1.3", "Liane");
INSERT INTO `wp_rg_lead_detail` VALUES("1114", "160", "3", "1.6", "Wohlberg");
INSERT INTO `wp_rg_lead_detail` VALUES("1115", "160", "3", "2", "lwohlberg@sd61.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1116", "160", "3", "3.1", "2829 Wyndeatt Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("1117", "160", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1118", "160", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1119", "160", "3", "3.5", "V9A 2L7");
INSERT INTO `wp_rg_lead_detail` VALUES("1120", "160", "3", "4", "(250) 418-5220");
INSERT INTO `wp_rg_lead_detail` VALUES("1121", "160", "3", "7", "December 5 10am-12pm");
INSERT INTO `wp_rg_lead_detail` VALUES("1122", "160", "3", "5", "Self Injurying Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("1124", "161", "1", "1.3", "Lale");
INSERT INTO `wp_rg_lead_detail` VALUES("1125", "161", "1", "1.6", "Minielly");
INSERT INTO `wp_rg_lead_detail` VALUES("1126", "161", "1", "2", "lalejess@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1127", "161", "1", "5", "(250) 592-7192");
INSERT INTO `wp_rg_lead_detail` VALUES("1128", "161", "1", "3", "Hi,\r\nMy husband and I are looking for couples counseling and counseling for us individually. We\'ve never had counseling so we\'re wondering how this works. Do we meet with counselors first before a session?\r\nI\'ve left phone messages, one just now and one last week. Is email the best way to be in contact?\r\nThank you,\r\nLale");
INSERT INTO `wp_rg_lead_detail` VALUES("1129", "162", "8", "1.3", "Adam");
INSERT INTO `wp_rg_lead_detail` VALUES("1130", "162", "8", "1.6", "Beaton");
INSERT INTO `wp_rg_lead_detail` VALUES("1131", "162", "8", "2", "writeadam@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1132", "162", "8", "3.1", "4248 Shelbourne St");
INSERT INTO `wp_rg_lead_detail` VALUES("1133", "162", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1134", "162", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1135", "162", "8", "3.5", "V8N 3G2");
INSERT INTO `wp_rg_lead_detail` VALUES("1136", "162", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1137", "162", "8", "4", "(250) 216-3289");
INSERT INTO `wp_rg_lead_detail` VALUES("1138", "162", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("1139", "162", "8", "6", "Emmanuel Baptist Church, 2121 Cedar Hill Crossroad, Victoria, BC.");
INSERT INTO `wp_rg_lead_detail` VALUES("1142", "162", "8", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_rg_lead_detail` VALUES("1143", "162", "8", "11.2", "cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("1144", "163", "1", "1.3", "Maria");
INSERT INTO `wp_rg_lead_detail` VALUES("1145", "163", "1", "1.6", "Ebenal");
INSERT INTO `wp_rg_lead_detail` VALUES("1146", "163", "1", "2", "m.ebenal@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1147", "163", "1", "5", "(250) 857-4719");
INSERT INTO `wp_rg_lead_detail` VALUES("1148", "163", "1", "3", "Hello,\r\n\r\nI am a volunteer counsellor with Citizens and I am wondering about your counselling services. I have a client whom I feel may benefit from longer term counselling (we only offer sets of 10 sessions). I am curious as to your session limitations (if you have any). Additionally, you mention that your scale is negotiable. The client in question currently pays $40/session and I do not think $50 is doable for them. Is this amount within your range of acceptance (of course this is require conversation with the client and a negotiation directly and I have no intention of guaranteeing this price for them, I just do not want to have them reach out and this not be a possibility upon discussion). \r\n\r\nThank you in advance for any and all information related to my questions you are able to provide.\r\nThanks for your time and energy,\r\nMaria");
INSERT INTO `wp_rg_lead_detail` VALUES("1149", "164", "3", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("1150", "164", "3", "1.6", "Wingert");
INSERT INTO `wp_rg_lead_detail` VALUES("1151", "164", "3", "2", "jennifer.m.wingert@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1152", "164", "3", "3.1", "4429 Torrington Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1153", "164", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1154", "164", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1155", "164", "3", "3.5", "V8N 4N8");
INSERT INTO `wp_rg_lead_detail` VALUES("1156", "164", "3", "4", "(250) 882-4056");
INSERT INTO `wp_rg_lead_detail` VALUES("1157", "164", "3", "7", "February 13, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1158", "164", "3", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("1160", "165", "1", "1.3", "Nyk");
INSERT INTO `wp_rg_lead_detail` VALUES("1161", "165", "1", "1.6", "Danu");
INSERT INTO `wp_rg_lead_detail` VALUES("1162", "165", "1", "2", "tattooedgurl@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1163", "165", "1", "5", "(250) 580-7377");
INSERT INTO `wp_rg_lead_detail` VALUES("1164", "165", "1", "3", "Please reply via email.\r\n\r\nHi I was looking at tut sliding scale counseling online and have a question.\r\nOn your website it says \'South Island Centre normally sets its fees on a sliding scale between $50 and $120 per 60-minute session (includes GST) depending on the level of your household income. \'\r\n\r\nDoes that mean your services don\'t go lower than $50? \r\nI am a full time student and I really need help but there is no way I can afford  $50 at this point.\r\nThanks for your time");
INSERT INTO `wp_rg_lead_detail` VALUES("1165", "166", "1", "1.3", "Taylor");
INSERT INTO `wp_rg_lead_detail` VALUES("1166", "166", "1", "1.6", "Bleaney");
INSERT INTO `wp_rg_lead_detail` VALUES("1167", "166", "1", "2", "taylorableaney@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1168", "166", "1", "5", "(604) 414-6141");
INSERT INTO `wp_rg_lead_detail` VALUES("1169", "166", "1", "3", "I was advise to seek out counselling as per my doctor. I suffer from anxiety and depression and she recommended Laurie Truant. I am a 21 year old female attending University of Victoria and find both of these disorders crippling and am desperate to find the root causes and skill in which to manage them as I find they play a role in my schooling my home life my work and my relationships.");
INSERT INTO `wp_rg_lead_detail` VALUES("1170", "167", "8", "1.3", "Elizabeth");
INSERT INTO `wp_rg_lead_detail` VALUES("1171", "167", "8", "1.6", "Johnson");
INSERT INTO `wp_rg_lead_detail` VALUES("1172", "167", "8", "2", "elljay35@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1173", "167", "8", "3.1", "16-6110 Seabroom Rd.,");
INSERT INTO `wp_rg_lead_detail` VALUES("1174", "167", "8", "3.3", "Sooke");
INSERT INTO `wp_rg_lead_detail` VALUES("1175", "167", "8", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1176", "167", "8", "3.5", "V9Z 0B8");
INSERT INTO `wp_rg_lead_detail` VALUES("1177", "167", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1178", "167", "8", "4", "(250) 642-6418");
INSERT INTO `wp_rg_lead_detail` VALUES("1179", "167", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("1180", "167", "8", "6", "Holy Trinity Anglican Church,   1962 Murray,  Box 519, Sooke B.C.  V9Z 1H5");
INSERT INTO `wp_rg_lead_detail` VALUES("1183", "167", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("1184", "167", "8", "11.2", "cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("1185", "168", "1", "1.3", "Gillian");
INSERT INTO `wp_rg_lead_detail` VALUES("1186", "168", "1", "1.6", "Gaffney");
INSERT INTO `wp_rg_lead_detail` VALUES("1187", "168", "1", "2", "Gillianatcookstreet@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1188", "168", "1", "5", "(250) 893-4455");
INSERT INTO `wp_rg_lead_detail` VALUES("1189", "168", "1", "3", "Hi there, my name is Gillian Gaffney.  I am a stay at home mom to a 3 year old girl and full time step mom to my partner\'s two nine year old boys.  We have a very complex family dynamic and deal with a challenging relationship with the boys\' mother.  We are a very low income family but do have some coverage through my partner\'s work insurance.  The counsellor at my step sons\' school has urged us to find a sliding scale family therapist to help us and we are hoping someone at your office could do that.  Does this sound like something you could help with?  \r\n\r\nHope to hear from you soon, \r\nGillian");
INSERT INTO `wp_rg_lead_detail` VALUES("1190", "169", "3", "1.3", "Georgia");
INSERT INTO `wp_rg_lead_detail` VALUES("1191", "169", "3", "1.6", "Cloutier");
INSERT INTO `wp_rg_lead_detail` VALUES("1192", "169", "3", "2", "khalachyane@mail.ru");
INSERT INTO `wp_rg_lead_detail` VALUES("1193", "169", "3", "3.1", "3806 Pheasant Ridge Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1194", "169", "3", "3.3", "Philadelphia");
INSERT INTO `wp_rg_lead_detail` VALUES("1195", "169", "3", "3.4", "PA");
INSERT INTO `wp_rg_lead_detail` VALUES("1196", "169", "3", "3.5", "19107");
INSERT INTO `wp_rg_lead_detail` VALUES("1197", "169", "3", "4", "(215) 507-0391");
INSERT INTO `wp_rg_lead_detail` VALUES("1198", "169", "3", "7", "26");
INSERT INTO `wp_rg_lead_detail` VALUES("1199", "169", "3", "5", "The pointers for planning a intimate breakfast within just mattress start out with offering by yourself adequate season for the arrangements, then through natural environment the alarm clock, arranging your course, getting to be geared up the adornments, masking the tray, environment up the tray, finishing the breakfast arrangements, arranging the meals and far too consume upon the plate and tray, relocating towards the bed room with the breakfast tray, waking your sweetheart up and offering the tray in the direction of him or her.");
INSERT INTO `wp_rg_lead_detail` VALUES("1203", "170", "3", "1.3", "Princess");
INSERT INTO `wp_rg_lead_detail` VALUES("1204", "170", "3", "1.6", "Milner");
INSERT INTO `wp_rg_lead_detail` VALUES("1205", "170", "3", "2", "hsigdlkiv@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1206", "170", "3", "3.1", "3390 Scheuvront Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("1207", "170", "3", "3.3", "Boulder");
INSERT INTO `wp_rg_lead_detail` VALUES("1208", "170", "3", "3.4", "CO");
INSERT INTO `wp_rg_lead_detail` VALUES("1209", "170", "3", "3.5", "80301");
INSERT INTO `wp_rg_lead_detail` VALUES("1210", "170", "3", "4", "(303) 516-3810");
INSERT INTO `wp_rg_lead_detail` VALUES("1211", "170", "3", "7", "12");
INSERT INTO `wp_rg_lead_detail` VALUES("1212", "170", "3", "5", "you locomote roughly looking sad, then it isn\'t change surface Cheap Jordan Shoes");
INSERT INTO `wp_rg_lead_detail` VALUES("1216", "171", "3", "1.3", "Estela");
INSERT INTO `wp_rg_lead_detail` VALUES("1217", "171", "3", "1.6", "Himmel");
INSERT INTO `wp_rg_lead_detail` VALUES("1218", "171", "3", "2", "belotsvetov91@mail.ru");
INSERT INTO `wp_rg_lead_detail` VALUES("1219", "171", "3", "3.1", "44 Davis Court");
INSERT INTO `wp_rg_lead_detail` VALUES("1220", "171", "3", "3.3", "De Soto");
INSERT INTO `wp_rg_lead_detail` VALUES("1221", "171", "3", "3.4", "IL");
INSERT INTO `wp_rg_lead_detail` VALUES("1222", "171", "3", "3.5", "62924");
INSERT INTO `wp_rg_lead_detail` VALUES("1223", "171", "3", "4", "(618) 867-8618");
INSERT INTO `wp_rg_lead_detail` VALUES("1224", "171", "3", "7", "23");
INSERT INTO `wp_rg_lead_detail` VALUES("1225", "171", "3", "5", "Very Suggestions About Writing a blog Which Help Construct Good results");
INSERT INTO `wp_rg_lead_detail` VALUES("1229", "172", "1", "1.3", "Felicia");
INSERT INTO `wp_rg_lead_detail` VALUES("1230", "172", "1", "1.6", "Ramirez");
INSERT INTO `wp_rg_lead_detail` VALUES("1231", "172", "1", "2", "fleicia.t.r@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1232", "172", "1", "5", "(250) 634-4183");
INSERT INTO `wp_rg_lead_detail` VALUES("1233", "172", "1", "3", "I looked at your web site and wanted to set up an appointment with Amber Eaves for myself and abuse I have been through.  I have not made an appointment with this office before and would like to discuss the fees. I have just moved from Ontario with two children, I am not working as yet as I am waiting on paper work to be completed here to work as an ECE.  I have employment set up and should be starting within the month.  What step do I need to take next?\r\nThank you\r\nFelicia Ramirez");
INSERT INTO `wp_rg_lead_detail` VALUES("1234", "173", "3", "1.3", "Henrietta");
INSERT INTO `wp_rg_lead_detail` VALUES("1235", "173", "3", "1.6", "Harmer");
INSERT INTO `wp_rg_lead_detail` VALUES("1236", "173", "3", "2", "staydl1979@mail.ru");
INSERT INTO `wp_rg_lead_detail` VALUES("1237", "173", "3", "3.1", "1676 Haul Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1238", "173", "3", "3.3", "Golden Valley");
INSERT INTO `wp_rg_lead_detail` VALUES("1239", "173", "3", "3.4", "MN");
INSERT INTO `wp_rg_lead_detail` VALUES("1240", "173", "3", "3.5", "55427");
INSERT INTO `wp_rg_lead_detail` VALUES("1241", "173", "3", "4", "(651) 245-2034");
INSERT INTO `wp_rg_lead_detail` VALUES("1242", "173", "3", "7", "12");
INSERT INTO `wp_rg_lead_detail` VALUES("1243", "173", "3", "5", "Temple Run 2 Cheats For Cash And Gems Hack");
INSERT INTO `wp_rg_lead_detail` VALUES("1247", "174", "1", "1.3", "Shawna");
INSERT INTO `wp_rg_lead_detail` VALUES("1248", "174", "1", "1.6", "Milne");
INSERT INTO `wp_rg_lead_detail` VALUES("1249", "174", "1", "2", "shbeamish@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1250", "174", "1", "5", "(778) 533-3841");
INSERT INTO `wp_rg_lead_detail` VALUES("1251", "174", "1", "3", "Hello - I am seeking counselling for myself, and possibly for my son.  I work full-time, but do not receive health benefits, so I fall under the less than $50,000 annual income threshold.  \r\nWhat I am seeking is help with processing my part in the relationship with my son, who is currently involved with the justice system.  I have been a single parent for most of his upbringing, and have invested much of myself in the relationship, and now I am struggling with how to navigate this relationship from where it is, as well as recognizing my possible co-dependent tendencies within the relationship.  I have a hard time setting boundaries, and am living with a lot of anxiety, resentment, and obsessive thinking.  I need to get a life, at the same time, I want to work on maintaining a healthy relationship with my son, who is currently making choices that contradict everything I feel I have tried to impress upon him.  I have relied on family and friends for support, but I feel like I am exhausting those resources, and people are tired of hearing about my troubles.  There are many other details, I would like to discuss, and am willing to pay whatever is fair for the services of a counselor who may be able to address my situation.  Thanks");
INSERT INTO `wp_rg_lead_detail` VALUES("1252", "175", "1", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("1253", "175", "1", "1.6", "Pelletier");
INSERT INTO `wp_rg_lead_detail` VALUES("1254", "175", "1", "2", "Jenniferpelletier13@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1255", "175", "1", "5", "(250) 580-3212");
INSERT INTO `wp_rg_lead_detail` VALUES("1256", "175", "1", "3", "Hello, \r\nMy name is Jennifer and I am 22.I am looking for help. A couple years ago I lost my little brother, at the time I thought I was grieving, but I think I was more distracting myself. I am now feeling I am ready to talk about how I am feeling and help try to solve my feelings in been having because the last few months have been tough. Thank you so much for your time.\r\n\r\nJenn");
INSERT INTO `wp_rg_lead_detail` VALUES("1257", "176", "1", "1.3", "Melissa");
INSERT INTO `wp_rg_lead_detail` VALUES("1258", "176", "1", "1.6", "Henderson");
INSERT INTO `wp_rg_lead_detail` VALUES("1259", "176", "1", "2", "Mrandmrshenderson@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1260", "176", "1", "5", "(250) 818-9403");
INSERT INTO `wp_rg_lead_detail` VALUES("1261", "176", "1", "3", "Hi there, \r\nI\'d like to set up an initial meeting to discuss starting counselling. I\'m currently unemployed so it would have to be on the sliding scale. Please let me know if this is possible. \r\nThank you \r\nMelissa");
INSERT INTO `wp_rg_lead_detail` VALUES("1262", "177", "1", "1.3", "Felicia");
INSERT INTO `wp_rg_lead_detail` VALUES("1263", "177", "1", "1.6", "Ramirez");
INSERT INTO `wp_rg_lead_detail` VALUES("1264", "177", "1", "2", "felicia.t.r@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1265", "177", "1", "5", "(250) 634-4183");
INSERT INTO `wp_rg_lead_detail` VALUES("1266", "177", "1", "3", "I would like to cancel a first appointment with Amber Eves for now until I begin work which is just a few weeks.\r\nThank you\r\nFelicia Ramirez");
INSERT INTO `wp_rg_lead_detail` VALUES("1267", "178", "8", "1.3", "Charles");
INSERT INTO `wp_rg_lead_detail` VALUES("1268", "178", "8", "1.6", "Dorrington");
INSERT INTO `wp_rg_lead_detail` VALUES("1269", "178", "8", "2", "revchas@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1270", "178", "8", "3.1", "70-7570 Tetayut Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1271", "178", "8", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("1272", "178", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1273", "178", "8", "3.5", "V8M 2H4");
INSERT INTO `wp_rg_lead_detail` VALUES("1274", "178", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1275", "178", "8", "4", "(778) 426-3212");
INSERT INTO `wp_rg_lead_detail` VALUES("1276", "178", "8", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("1277", "178", "8", "6", "The Reformed Episcopal Church of the Holy Trinity\r\n537 Glencairn Lane\r\nColwood, B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("1280", "178", "8", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_rg_lead_detail` VALUES("1282", "178", "8", "10", "n/a");
INSERT INTO `wp_rg_lead_detail` VALUES("1283", "178", "8", "11.1", "credit card");
INSERT INTO `wp_rg_lead_detail` VALUES("1284", "179", "1", "1.3", "sydney");
INSERT INTO `wp_rg_lead_detail` VALUES("1285", "179", "1", "1.6", "dover");
INSERT INTO `wp_rg_lead_detail` VALUES("1286", "179", "1", "2", "sydneydover@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1287", "179", "1", "5", "(250) 686-2766");
INSERT INTO `wp_rg_lead_detail` VALUES("1288", "179", "1", "3", "Hi there,\r\n\r\nI am looking for counselling for my partner and I. It seems like everything we find is too expensive and we just want to try and get help resolving our issues and move forward in our relationship. Looking to do any kind of counselling or group therapy. Is there an option for relationship counselling?\r\n\r\nThanks so much,\r\n\r\nSydney");
INSERT INTO `wp_rg_lead_detail` VALUES("1289", "180", "1", "1.3", "Faith");
INSERT INTO `wp_rg_lead_detail` VALUES("1290", "180", "1", "1.6", "Gildenhuys");
INSERT INTO `wp_rg_lead_detail` VALUES("1291", "180", "1", "2", "fgilden@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1292", "180", "1", "5", "(250) 598-5803");
INSERT INTO `wp_rg_lead_detail` VALUES("1293", "180", "1", "3", "Maureen Matthew recommended that I meet with Margaret Anderson to discuss my caregiving for my husband who suffers from Parkinson\'s and Lewy body dementia.\r\nThank you.");
INSERT INTO `wp_rg_lead_detail` VALUES("1294", "181", "1", "1.3", "Catharine");
INSERT INTO `wp_rg_lead_detail` VALUES("1295", "181", "1", "1.6", "Kintoff");
INSERT INTO `wp_rg_lead_detail` VALUES("1296", "181", "1", "2", "catkinfarrier@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1297", "181", "1", "5", "(250) 362-5524");
INSERT INTO `wp_rg_lead_detail` VALUES("1298", "181", "1", "3", "Years ago, Dr. Robert Vaughan counselled me and I wonder how he is?");
INSERT INTO `wp_rg_lead_detail` VALUES("1299", "182", "1", "1.3", "Lynne");
INSERT INTO `wp_rg_lead_detail` VALUES("1300", "182", "1", "1.6", "Humphry-Baker");
INSERT INTO `wp_rg_lead_detail` VALUES("1301", "182", "1", "2", "Chica4344@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1302", "182", "1", "5", "(250) 479-2541");
INSERT INTO `wp_rg_lead_detail` VALUES("1303", "182", "1", "3", "My partner of 25 years and I are experiencing a relationship stalemate.  I have tried to get him to talk about it, but he is reluctant or in denial. I\'m not willing to give up on us without at least trying counselling.  I feel that if I initiate the process he may consider counselling for himself too.");
INSERT INTO `wp_rg_lead_detail` VALUES("1304", "183", "1", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("1305", "183", "1", "1.6", "Renowden");
INSERT INTO `wp_rg_lead_detail` VALUES("1306", "183", "1", "2", "sarahpoberg@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1307", "183", "1", "5", "(250) 857-1879");
INSERT INTO `wp_rg_lead_detail` VALUES("1308", "183", "1", "3", "Hi there,\r\n\r\nJust curious about your counselling, is it all faith based? Is it LGBT friendly?");
INSERT INTO `wp_rg_lead_detail` VALUES("1309", "184", "1", "1.3", "Jonathan");
INSERT INTO `wp_rg_lead_detail` VALUES("1310", "184", "1", "1.6", "Seymour");
INSERT INTO `wp_rg_lead_detail` VALUES("1311", "184", "1", "2", "J.seymour89@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1312", "184", "1", "5", "(250) 507-8983");
INSERT INTO `wp_rg_lead_detail` VALUES("1313", "184", "1", "3", "Hi there i was hoping to set up an appointment for couples counselling. We were recomended here due to our low income. We strongly feel this is our last chance to save our relationship. I look forward to hearing back from you.\r\n\r\nThank you,");
INSERT INTO `wp_rg_lead_detail` VALUES("1314", "185", "3", "1.3", "Siu Lai (Gwen)");
INSERT INTO `wp_rg_lead_detail` VALUES("1315", "185", "3", "1.6", "Lam");
INSERT INTO `wp_rg_lead_detail` VALUES("1316", "185", "3", "2", "glambasham@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1317", "185", "3", "3.1", "3517 Sunheights Dr.");
INSERT INTO `wp_rg_lead_detail` VALUES("1318", "185", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1319", "185", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1320", "185", "3", "3.5", "V9C3T7");
INSERT INTO `wp_rg_lead_detail` VALUES("1321", "185", "3", "4", "(250) 857-9375");
INSERT INTO `wp_rg_lead_detail` VALUES("1322", "185", "3", "7", "Feb 3, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1323", "185", "3", "5", "The Ebb & Flow of Life");
INSERT INTO `wp_rg_lead_detail` VALUES("1325", "186", "1", "1.3", "Gwen");
INSERT INTO `wp_rg_lead_detail` VALUES("1326", "186", "1", "1.6", "Lam");
INSERT INTO `wp_rg_lead_detail` VALUES("1327", "186", "1", "2", "glambasham@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1328", "186", "1", "5", "(250) 857-9375");
INSERT INTO `wp_rg_lead_detail` VALUES("1329", "186", "1", "3", "Interested in Pastoral Counselling Training, pls provide more info.\r\nThanks.");
INSERT INTO `wp_rg_lead_detail` VALUES("1330", "187", "1", "1.3", "Heidi");
INSERT INTO `wp_rg_lead_detail` VALUES("1331", "187", "1", "1.6", "Bada");
INSERT INTO `wp_rg_lead_detail` VALUES("1332", "187", "1", "2", "heidibada@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1333", "187", "1", "5", "(250) 479-4232");
INSERT INTO `wp_rg_lead_detail` VALUES("1334", "187", "1", "3", "I am getting frustrated with panic-like symptoms that appear out of the blue. Toughing it out isn\'t working, because the symptoms are the same or very similar to a low blood sugar, so I have been struggling to distinguish anxiety from low blood sugar, with disastrous results with diabetes. I\'ve been seen at emergency and clinics (again, thinking I am having an unusual diabetes event) and their staff have repeatedly told me to deal with anxiety that appears obvious to them, and totally new to me. I\'m on provincial PWD income and probably could not afford much. I\'d like to make an appointment though. I feel unsafe living alone with diabetes now, unsure of being able to treat highs and lows on my own.");
INSERT INTO `wp_rg_lead_detail` VALUES("1335", "188", "3", "1.3", "Ken");
INSERT INTO `wp_rg_lead_detail` VALUES("1336", "188", "3", "1.6", "Gill");
INSERT INTO `wp_rg_lead_detail` VALUES("1337", "188", "3", "2", "obfdchaplain@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1338", "188", "3", "3.1", "2244 Cooperidge Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("1339", "188", "3", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("1340", "188", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1341", "188", "3", "3.5", "V8M 1N2");
INSERT INTO `wp_rg_lead_detail` VALUES("1342", "188", "3", "4", "(250) 889-4082");
INSERT INTO `wp_rg_lead_detail` VALUES("1343", "188", "3", "7", "February 3, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1344", "188", "3", "5", "The Ebb and Flow of Life: An Introduction to Grief Loss");
INSERT INTO `wp_rg_lead_detail` VALUES("1346", "189", "2", "1.3", "Ken");
INSERT INTO `wp_rg_lead_detail` VALUES("1347", "189", "2", "1.6", "Gill");
INSERT INTO `wp_rg_lead_detail` VALUES("1348", "189", "2", "2", "obfdchaplain@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1349", "189", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("1350", "190", "1", "1.3", "Roger");
INSERT INTO `wp_rg_lead_detail` VALUES("1351", "190", "1", "1.6", "Sangha");
INSERT INTO `wp_rg_lead_detail` VALUES("1352", "190", "1", "2", "roger1519@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1353", "190", "1", "5", "(250) 893-1817");
INSERT INTO `wp_rg_lead_detail` VALUES("1354", "190", "1", "3", "I am looking at getting some counseling on several issues, marriage, relationship, personel and self esteem, overall confidence, was looking to set up an appointment");
INSERT INTO `wp_rg_lead_detail` VALUES("1355", "191", "1", "1.3", "Rachel");
INSERT INTO `wp_rg_lead_detail` VALUES("1356", "191", "1", "1.6", "Trebilco");
INSERT INTO `wp_rg_lead_detail` VALUES("1357", "191", "1", "2", "Rachel.trebilco@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1358", "191", "1", "5", "(250) 661-4893");
INSERT INTO `wp_rg_lead_detail` VALUES("1359", "191", "1", "3", "Good evening!\r\n\r\nI am interested in seeking some personal and relationship counselling. What are the office hours and who might be available to help? \r\n\r\nThank you for your time,\r\n\r\nRachel Trebilco");
INSERT INTO `wp_rg_lead_detail` VALUES("1360", "192", "3", "1.3", "Lisa");
INSERT INTO `wp_rg_lead_detail` VALUES("1361", "192", "3", "1.6", "Coulson");
INSERT INTO `wp_rg_lead_detail` VALUES("1362", "192", "3", "2", "lisacoulson@silverthreads.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1363", "192", "3", "3.1", "Silver Threads Service, 286 Hampton Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1364", "192", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1365", "192", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1366", "192", "3", "3.5", "V8Z 1H1");
INSERT INTO `wp_rg_lead_detail` VALUES("1367", "192", "3", "4", "(250) 382-3151");
INSERT INTO `wp_rg_lead_detail` VALUES("1368", "192", "3", "7", "February 3, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1369", "192", "3", "5", "The Ebb and Flow of Life: An Introduction to Grief Loss");
INSERT INTO `wp_rg_lead_detail` VALUES("1371", "193", "3", "1.3", "Donna");
INSERT INTO `wp_rg_lead_detail` VALUES("1372", "193", "3", "1.6", "Newman");
INSERT INTO `wp_rg_lead_detail` VALUES("1373", "193", "3", "2", "donnanewmanis@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1374", "193", "3", "3.1", "2919 Glen Lake Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1375", "193", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1376", "193", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1377", "193", "3", "3.5", "V9B 4B2");
INSERT INTO `wp_rg_lead_detail` VALUES("1378", "193", "3", "4", "(250) 881-4182");
INSERT INTO `wp_rg_lead_detail` VALUES("1379", "193", "3", "7", "02/13/16");
INSERT INTO `wp_rg_lead_detail` VALUES("1380", "193", "3", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("1382", "194", "1", "1.3", "Emma");
INSERT INTO `wp_rg_lead_detail` VALUES("1383", "194", "1", "1.6", "Hillian");
INSERT INTO `wp_rg_lead_detail` VALUES("1384", "194", "1", "2", "hillian.emma@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1385", "194", "1", "5", "(250) 386-5699");
INSERT INTO `wp_rg_lead_detail` VALUES("1386", "194", "1", "3", "I would like to speak to someone about going through transition and my general life direction and relationship issues.");
INSERT INTO `wp_rg_lead_detail` VALUES("1387", "195", "3", "1.3", "Salvetina");
INSERT INTO `wp_rg_lead_detail` VALUES("1388", "195", "3", "1.6", "Agba");
INSERT INTO `wp_rg_lead_detail` VALUES("1389", "195", "3", "2", "salvetinaagba@yahoo.vom");
INSERT INTO `wp_rg_lead_detail` VALUES("1390", "195", "3", "3.1", "2083 Byron Street");
INSERT INTO `wp_rg_lead_detail` VALUES("1391", "195", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1392", "195", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1393", "195", "3", "3.5", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1394", "195", "3", "4", "(250) 893-1646");
INSERT INTO `wp_rg_lead_detail` VALUES("1395", "195", "3", "7", "Feb 13/16");
INSERT INTO `wp_rg_lead_detail` VALUES("1396", "195", "3", "5", "Marriage Preparation Workshop, Saturday, February 13, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1398", "196", "2", "1.3", "Jessica");
INSERT INTO `wp_rg_lead_detail` VALUES("1399", "196", "2", "1.6", "Hamilton");
INSERT INTO `wp_rg_lead_detail` VALUES("1400", "196", "2", "2", "jessicac_hamilton@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1401", "196", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("1402", "197", "1", "1.3", "Ken");
INSERT INTO `wp_rg_lead_detail` VALUES("1403", "197", "1", "1.6", "Gill");
INSERT INTO `wp_rg_lead_detail` VALUES("1404", "197", "1", "2", "obfdchaplain@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1405", "197", "1", "5", "(250) 889-4082");
INSERT INTO `wp_rg_lead_detail` VALUES("1406", "197", "1", "3", "Hello,\r\nI would like to express interest in the Pastoral Counselling Training Course mentioned on your website. \r\nAre you planning on running this course in the new future? \r\n \r\nI would be interested and available for the 5 day course, however, I would also consider other format options.\r\n\r\nOn a side note, I attended the first â€œEbb and Flow of Lifeâ€ course session last night and found it extremely informative and interesting!  I am definitely looking forward to our future sessions. \r\n\r\nThank you,\r\n\r\nKen\r\n\r\n     \r\nOak Bay Fire Department\r\nChaplain Ken Gill\r\nobfdchaplain@shaw.ca\r\n250-889-4082");
INSERT INTO `wp_rg_lead_detail` VALUES("1407", "198", "3", "1.3", "Catherine");
INSERT INTO `wp_rg_lead_detail` VALUES("1408", "198", "3", "1.6", "Hack");
INSERT INTO `wp_rg_lead_detail` VALUES("1409", "198", "3", "2", "chack657@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1410", "198", "3", "3.1", "2129 Pan Dion Plc");
INSERT INTO `wp_rg_lead_detail` VALUES("1411", "198", "3", "3.3", "Sooke");
INSERT INTO `wp_rg_lead_detail` VALUES("1412", "198", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1413", "198", "3", "3.5", "V9Z 0G1");
INSERT INTO `wp_rg_lead_detail` VALUES("1414", "198", "3", "4", "(250) 642-2003");
INSERT INTO `wp_rg_lead_detail` VALUES("1415", "198", "3", "7", "July 2-8, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1416", "198", "3", "5", "Family Systems");
INSERT INTO `wp_rg_lead_detail` VALUES("1418", "199", "3", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("1419", "199", "3", "1.6", "Fenimore");
INSERT INTO `wp_rg_lead_detail` VALUES("1420", "199", "3", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1421", "199", "3", "3.1", "2625 Avebury Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("1422", "199", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1423", "199", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1424", "199", "3", "3.5", "V8R 3W3");
INSERT INTO `wp_rg_lead_detail` VALUES("1425", "199", "3", "4", "(250) 477-7257");
INSERT INTO `wp_rg_lead_detail` VALUES("1426", "199", "3", "7", "02/27/16");
INSERT INTO `wp_rg_lead_detail` VALUES("1427", "199", "3", "5", "Midlife Directions Intensive");
INSERT INTO `wp_rg_lead_detail` VALUES("1429", "200", "1", "1.3", "jeff");
INSERT INTO `wp_rg_lead_detail` VALUES("1430", "200", "1", "1.6", "Stokes");
INSERT INTO `wp_rg_lead_detail` VALUES("1431", "200", "1", "2", "jeffstok@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1432", "200", "1", "5", "(778) 677-2676");
INSERT INTO `wp_rg_lead_detail` VALUES("1433", "200", "1", "3", "Hi, I\'m jeff I\'m 21 and going to school at Uvic. Over the summer I was working as a raft guide and had a couple of traumatic experiences that disoriented my person. Mainly these forced me to revert back to emotions from my teenage years where my Dad had a brain tumor and died over a period of two years. I thought that if I just stayed busy and kept propelling myself forwards that I could simply  push my way through and live life but I\'ve been hitting walls of depression and confusion, which I feel is related to this big question mark in my own history as well as my understanding of myself. I want to get counselling so that I can deal with some of these issues and live life free of internal problems within my head that prevent me from making positive decisions and the joy that I know I am capable of attaining. I feel like this is a roadblock that I have to deal with now, and hope that through counselling I can understand my self and story better and change my personal outlook to alot more optomistic perspective on my life and the world around me.");
INSERT INTO `wp_rg_lead_detail` VALUES("1434", "201", "3", "1.3", "Marija");
INSERT INTO `wp_rg_lead_detail` VALUES("1435", "201", "3", "1.6", "Filipovic");
INSERT INTO `wp_rg_lead_detail` VALUES("1436", "201", "3", "2", "marija.filipovic@viha.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1437", "201", "3", "3.1", "1030 Iris Ave.");
INSERT INTO `wp_rg_lead_detail` VALUES("1438", "201", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1439", "201", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1440", "201", "3", "3.5", "V8Z 2N7");
INSERT INTO `wp_rg_lead_detail` VALUES("1441", "201", "3", "4", "(250) 704-1046");
INSERT INTO `wp_rg_lead_detail` VALUES("1442", "201", "3", "7", "4 July, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1443", "201", "3", "5", "Family Systems Intensive");
INSERT INTO `wp_rg_lead_detail` VALUES("1445", "202", "1", "1.3", "Nina");
INSERT INTO `wp_rg_lead_detail` VALUES("1446", "202", "1", "1.6", "Dow");
INSERT INTO `wp_rg_lead_detail` VALUES("1447", "202", "1", "2", "Ninadow9@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1448", "202", "1", "5", "(250) 588-6561");
INSERT INTO `wp_rg_lead_detail` VALUES("1449", "202", "1", "3", "My husband Will and I have been having some marriage problems due to him having to stop working because of his MS, which has caused him depression and isolation, which has caused him to make some bad choices regarding the Internet. We are a low income family, I am on medical EI at the moment unable to work due to stress and Will is on Disability and LTD. We have had counselling through Citizens but their wait list is 6-8 weeks. We have two children 15 and 11 and I hope they could join in on some of our counselling too. We hope you have room for us.");
INSERT INTO `wp_rg_lead_detail` VALUES("1450", "203", "1", "1.3", "Josh");
INSERT INTO `wp_rg_lead_detail` VALUES("1451", "203", "1", "1.6", "Howell");
INSERT INTO `wp_rg_lead_detail` VALUES("1452", "203", "1", "2", "joshhowell@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1453", "203", "1", "5", "(250) 850-4170");
INSERT INTO `wp_rg_lead_detail` VALUES("1454", "203", "1", "3", "To whom it may concern, \r\n\r\nRecent events in my life have made me realize that the social anxiety and mood issues that have been existed my whole life have been affecting my happiness and the happiness of those I love more than I realized.  I am by no means suffering a crisis or suicidal, but I am starting to recognize that the way I think about and deal with interpersonal issues has and continues to hamper my ability to create and sustain healthy relationships, romantic and otherwise.  Specifically, I believe my tendency to be over analytical and take things very personally had inhibited my ability to naturally feel empathy towards others.  However I have a perfect life and no real troubles to speak of, so this makes me think I\'m just selfish and have been too lazy to do anything about it.  What finally made me do something about it was my fiance commenting that she did not understand me sometimes after I did something specifically un-empathetic.  This has happened many times in my life with different people pointing out insensitive things I\'ve done and the scary part is that I don\'t realize whatsoever that I am in the wrong right up until it is spelled out for me.  Then I immediately and with blinding clarity recognize the pattern of insensitive actions.  I am a relatively intelligent person and this level of obliviousness truly concerns me.  I realize that I don\'t fully understand how my brain works a lot of the time and I\'m smart enough to understand that I could be a lot happier if I did.  At this point I am messaging a few different counselling resources in the Victoria area to assess the different resources available to me.  Thank you for your time and I look forward to your response.\r\n\r\nSincerely,\r\nJosh Howell");
INSERT INTO `wp_rg_lead_detail` VALUES("1455", "204", "3", "1.3", "Caroline");
INSERT INTO `wp_rg_lead_detail` VALUES("1456", "204", "3", "1.6", "Donelle");
INSERT INTO `wp_rg_lead_detail` VALUES("1457", "204", "3", "2", "directordevelopment.sic@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1458", "204", "3", "3.1", "6-1677 Hollywood Crescent");
INSERT INTO `wp_rg_lead_detail` VALUES("1459", "204", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1460", "204", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1461", "204", "3", "3.5", "V8S 1J2");
INSERT INTO `wp_rg_lead_detail` VALUES("1462", "204", "3", "4", "(250) 888-7441");
INSERT INTO `wp_rg_lead_detail` VALUES("1463", "204", "3", "7", "April 14, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1464", "204", "3", "5", "The Twilight Journey");
INSERT INTO `wp_rg_lead_detail` VALUES("1466", "205", "1", "1.3", "Diane");
INSERT INTO `wp_rg_lead_detail` VALUES("1467", "205", "1", "1.6", "Appleton");
INSERT INTO `wp_rg_lead_detail` VALUES("1468", "205", "1", "2", "dianeponte@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1469", "205", "1", "5", "(250) 216-9094");
INSERT INTO `wp_rg_lead_detail` VALUES("1470", "205", "1", "3", "Hi There,\r\n\r\nJust inquiring about booking a time to meet with someone to discuss dealing with grief from recent pregnancy complications. \r\n\r\nI look forward to hearing from you!\r\n\r\nDiane");
INSERT INTO `wp_rg_lead_detail` VALUES("1471", "206", "1", "1.3", "Amanda");
INSERT INTO `wp_rg_lead_detail` VALUES("1472", "206", "1", "1.6", "Rudolph");
INSERT INTO `wp_rg_lead_detail` VALUES("1473", "206", "1", "2", "amandarudo@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1474", "206", "1", "5", "(250) 701-5993");
INSERT INTO `wp_rg_lead_detail` VALUES("1475", "206", "1", "3", "Good evening,\r\nMy name is Amanda Rudolph. I have a counselling and caregiving Diploma. But... I am struggling to help my boyfriend with his depression. It runs in his family, his dad has manic depression and his mother also suffers from depression.\r\n\r\nHis name is Keith Begg. He has suffered with depression most of his life. He has gone to counselling before but has not found success. He has also tried anti depressants that have just numbed his feelings, but not helped.\r\n\r\nHe expressed to me of having suicidal thoughts. He has had them before but lately he has been angry not sad. \r\n\r\nHe works until close to 4pm everyday. Is there anyway there are weekend or later sessions during the week?\r\n\r\nFinances are a problem in our lives at the moment. I am currently on ei and he literally has no money. I will put as much money aside as I can for his sessions. I love him and want him to get better. He knows he needs help and has agreed to go to counselling to better himself.\r\n\r\nPlease help us\r\n\r\nCheers,\r\nAmanda Rudolph\r\n250-701-5993");
INSERT INTO `wp_rg_lead_detail` VALUES("1476", "207", "3", "1.3", "shelly");
INSERT INTO `wp_rg_lead_detail` VALUES("1477", "207", "3", "1.6", "olsen");
INSERT INTO `wp_rg_lead_detail` VALUES("1478", "207", "3", "2", "shelly.olsen@viha.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1479", "207", "3", "3.1", "2nd Flr - 1947 Cook Street");
INSERT INTO `wp_rg_lead_detail` VALUES("1480", "207", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1481", "207", "3", "3.4", "bc");
INSERT INTO `wp_rg_lead_detail` VALUES("1482", "207", "3", "3.5", "V8T 3P7");
INSERT INTO `wp_rg_lead_detail` VALUES("1483", "207", "3", "4", "(250) 519-3007");
INSERT INTO `wp_rg_lead_detail` VALUES("1484", "207", "3", "7", "04/17/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1485", "207", "3", "5", "The Twilight Journey");
INSERT INTO `wp_rg_lead_detail` VALUES("1487", "208", "2", "1.3", "Liz");
INSERT INTO `wp_rg_lead_detail` VALUES("1488", "208", "2", "1.6", "Radermacher");
INSERT INTO `wp_rg_lead_detail` VALUES("1489", "208", "2", "2", "lradermacher@need2.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1490", "208", "2", "6.3", "Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("1491", "209", "3", "1.3", "Siu Lai (Gwen)");
INSERT INTO `wp_rg_lead_detail` VALUES("1492", "209", "3", "1.6", "Lam");
INSERT INTO `wp_rg_lead_detail` VALUES("1493", "209", "3", "2", "glambasham@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1494", "209", "3", "3.1", "3517 Sunheights");
INSERT INTO `wp_rg_lead_detail` VALUES("1495", "209", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1496", "209", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1497", "209", "3", "3.5", "V9C 3T7");
INSERT INTO `wp_rg_lead_detail` VALUES("1498", "209", "3", "4", "(250) 857-9375");
INSERT INTO `wp_rg_lead_detail` VALUES("1499", "209", "3", "7", "April 14, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1500", "209", "3", "5", "The Twilight Journey - Grief, Loss & the Very Elderly");
INSERT INTO `wp_rg_lead_detail` VALUES("1502", "210", "1", "1.3", "Brittany");
INSERT INTO `wp_rg_lead_detail` VALUES("1503", "210", "1", "1.6", "MacDougall");
INSERT INTO `wp_rg_lead_detail` VALUES("1504", "210", "1", "2", "brittanymacdougall@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1505", "210", "1", "5", "(250) 589-8871");
INSERT INTO `wp_rg_lead_detail` VALUES("1506", "210", "1", "3", "hi, \r\n\r\nwanting to get an appointment for counselling.\r\n\r\nIn need of low income counselling.\r\n\r\nI\'m 16 years old.\r\n\r\nthe phone number above is for my worker at Holly House- Rebekah.\r\n\r\nThank you, \r\nBrittany");
INSERT INTO `wp_rg_lead_detail` VALUES("1507", "211", "1", "1.3", "Joshua");
INSERT INTO `wp_rg_lead_detail` VALUES("1508", "211", "1", "1.6", "Crowley");
INSERT INTO `wp_rg_lead_detail` VALUES("1509", "211", "1", "2", "Joshuadanielcrowley@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1510", "211", "1", "5", "(250) 474-9149");
INSERT INTO `wp_rg_lead_detail` VALUES("1511", "211", "1", "3", "Hi i was wondering if i could set something up so i could talk to a counseller. I am 25 years old with a 5 year old daughter. I am currently not working because of my anxiety and depression. Thank you for your time");
INSERT INTO `wp_rg_lead_detail` VALUES("1512", "212", "3", "1.3", "Danielle");
INSERT INTO `wp_rg_lead_detail` VALUES("1513", "212", "3", "1.6", "Sherwin");
INSERT INTO `wp_rg_lead_detail` VALUES("1514", "212", "3", "2", "Dsherwin10@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1515", "212", "3", "3.1", "1280 oakmount rd");
INSERT INTO `wp_rg_lead_detail` VALUES("1516", "212", "3", "3.3", "victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1517", "212", "3", "3.4", "bc");
INSERT INTO `wp_rg_lead_detail` VALUES("1518", "212", "3", "3.5", "v8p1m2");
INSERT INTO `wp_rg_lead_detail` VALUES("1519", "212", "3", "4", "(250) 208-9523");
INSERT INTO `wp_rg_lead_detail` VALUES("1520", "212", "3", "7", "05/04/16");
INSERT INTO `wp_rg_lead_detail` VALUES("1521", "212", "3", "5", "Marriage Prep Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("1523", "213", "1", "1.3", "Heather");
INSERT INTO `wp_rg_lead_detail` VALUES("1524", "213", "1", "1.6", "Furneaux");
INSERT INTO `wp_rg_lead_detail` VALUES("1525", "213", "1", "2", "heather@cloveandanchor.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1526", "213", "1", "5", "(250) 891-4851");
INSERT INTO `wp_rg_lead_detail` VALUES("1527", "213", "1", "3", "Hello, I would like to know more about your sliding scale counseling and what makes you eligible?");
INSERT INTO `wp_rg_lead_detail` VALUES("1529", "214", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("1530", "214", "10", "10", "Feb 27, 1998");
INSERT INTO `wp_rg_lead_detail` VALUES("1531", "214", "10", "4", "laurabarleemorris@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1532", "214", "10", "7", "(778) 679-8724");
INSERT INTO `wp_rg_lead_detail` VALUES("1533", "214", "10", "2", "Veronica Barlee");
INSERT INTO `wp_rg_lead_detail` VALUES("1534", "214", "10", "3.1", "305-967 Collinson Street");
INSERT INTO `wp_rg_lead_detail` VALUES("1535", "214", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1536", "214", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1537", "214", "10", "3.5", "V8V 3B7");
INSERT INTO `wp_rg_lead_detail` VALUES("1538", "214", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1539", "214", "10", "5", "Veronica.Barlee@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1540", "214", "10", "6", "(778) 679-9655");
INSERT INTO `wp_rg_lead_detail` VALUES("1541", "214", "10", "8", "phone");
INSERT INTO `wp_rg_lead_detail` VALUES("1543", "214", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("1544", "214", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1545", "214", "10", "17", "Zoloft (100 daily) and occasionally Ativan");
INSERT INTO `wp_rg_lead_detail` VALUES("1547", "215", "1", "1.3", "Sandy");
INSERT INTO `wp_rg_lead_detail` VALUES("1548", "215", "1", "1.6", "Bourbeau");
INSERT INTO `wp_rg_lead_detail` VALUES("1549", "215", "1", "2", "san.beau@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1550", "215", "1", "5", "(250) 881-0140");
INSERT INTO `wp_rg_lead_detail` VALUES("1551", "215", "1", "3", "Hi, One year ago, my husband and I separated after 22 years of marriage.  I am the classic codependent and he has Borderline Personality Disorder/Narcissistic Tendencies & several other diagnoses.  I have a 16 year old daughter who started to deal with the separation, the dysfunctional Dad, the dysfunctional Mom & historic physical and psychological abuse by her sister.  She was attending the Family Services for counseling when the counselor departed. She also had no closure with the counselor and this was her first time in counseling. I paid $30 per session for her. I also need counseling around bitterness, resentment, grief, low self-esteem, co-dependency- boundaries; isolation... I earn $45000 per year. My ex is supposed to pay $840 per month but that is hit and miss.  I am willing to let my daughter go to counseling first and then I will go afterwards.  Thank you.");
INSERT INTO `wp_rg_lead_detail` VALUES("1553", "216", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("1554", "216", "10", "10", "24/05/2002");
INSERT INTO `wp_rg_lead_detail` VALUES("1555", "216", "10", "4", "junkiebuddie@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1556", "216", "10", "2", "Tyson & Rachel King");
INSERT INTO `wp_rg_lead_detail` VALUES("1557", "216", "10", "3.1", "6973 Wallace Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("1558", "216", "10", "3.3", "Brentwood Bay");
INSERT INTO `wp_rg_lead_detail` VALUES("1559", "216", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1560", "216", "10", "3.5", "V8M 1G2");
INSERT INTO `wp_rg_lead_detail` VALUES("1561", "216", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1562", "216", "10", "5", "trt3kings@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1563", "216", "10", "6", "(250) 889-6642");
INSERT INTO `wp_rg_lead_detail` VALUES("1564", "216", "10", "8", "Phone please");
INSERT INTO `wp_rg_lead_detail` VALUES("1566", "216", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1567", "216", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("1568", "216", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("1569", "216", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("1570", "216", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1571", "216", "10", "17", "Vyvanse 40 mg daily and ADHD meds");
INSERT INTO `wp_rg_lead_detail` VALUES("1572", "217", "3", "1.3", "Alison");
INSERT INTO `wp_rg_lead_detail` VALUES("1573", "217", "3", "1.6", "Donnelly");
INSERT INTO `wp_rg_lead_detail` VALUES("1574", "217", "3", "2", "a.donnellybikes@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1575", "217", "3", "3.1", "1758 Wilmot Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("1576", "217", "3", "3.3", "Cowichan Bay");
INSERT INTO `wp_rg_lead_detail` VALUES("1577", "217", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1578", "217", "3", "3.5", "V0R 1N1");
INSERT INTO `wp_rg_lead_detail` VALUES("1579", "217", "3", "4", "(250) 466-5846");
INSERT INTO `wp_rg_lead_detail` VALUES("1580", "217", "3", "7", "06/04/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1581", "217", "3", "5", "Marriage Preparation Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("1584", "218", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("1585", "218", "10", "10", "04/09/99");
INSERT INTO `wp_rg_lead_detail` VALUES("1586", "218", "10", "4", "gloworm.delene@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1587", "218", "10", "2", "Miriam Rashleigh");
INSERT INTO `wp_rg_lead_detail` VALUES("1588", "218", "10", "3.1", "20 Newcastle Court");
INSERT INTO `wp_rg_lead_detail` VALUES("1589", "218", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1590", "218", "10", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("1591", "218", "10", "3.5", "V9B 6V5");
INSERT INTO `wp_rg_lead_detail` VALUES("1592", "218", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1593", "218", "10", "5", "petemiriam@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1594", "218", "10", "6", "(778) 265-5113");
INSERT INTO `wp_rg_lead_detail` VALUES("1595", "218", "10", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("1597", "218", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1598", "218", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("1599", "218", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("1600", "218", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1601", "218", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("1602", "218", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1603", "218", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("1604", "219", "3", "1.3", "Marnie");
INSERT INTO `wp_rg_lead_detail` VALUES("1605", "219", "3", "1.6", "Bradfield");
INSERT INTO `wp_rg_lead_detail` VALUES("1606", "219", "3", "2", "Mbradfield@pacificcoast.net");
INSERT INTO `wp_rg_lead_detail` VALUES("1607", "219", "3", "3.1", "3400 Woodburn avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("1608", "219", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1609", "219", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1610", "219", "3", "3.5", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1611", "219", "3", "4", "(250) 598-1380");
INSERT INTO `wp_rg_lead_detail` VALUES("1612", "219", "3", "7", "Aprol 14th - May 19th, 2016.");
INSERT INTO `wp_rg_lead_detail` VALUES("1613", "219", "3", "5", "The Twillight Journey: Grief and Loss and the very Elderly");
INSERT INTO `wp_rg_lead_detail` VALUES("1616", "220", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("1617", "220", "10", "10", "08/04/2002");
INSERT INTO `wp_rg_lead_detail` VALUES("1618", "220", "10", "4", "Amelie.beauvais@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1619", "220", "10", "7", "(250) 514-1079");
INSERT INTO `wp_rg_lead_detail` VALUES("1620", "220", "10", "2", "Eileen Beauvais");
INSERT INTO `wp_rg_lead_detail` VALUES("1621", "220", "10", "3.1", "1318 Treebank Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("1622", "220", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1623", "220", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1624", "220", "10", "3.5", "V9A 7G1");
INSERT INTO `wp_rg_lead_detail` VALUES("1625", "220", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1626", "220", "10", "5", "EileenBeauvais@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1627", "220", "10", "6", "(250) 514-1079");
INSERT INTO `wp_rg_lead_detail` VALUES("1628", "220", "10", "8", "Email");
INSERT INTO `wp_rg_lead_detail` VALUES("1630", "220", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1631", "220", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("1632", "220", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1633", "220", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1634", "220", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("1636", "221", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("1637", "221", "10", "10", "29/03/1998");
INSERT INTO `wp_rg_lead_detail` VALUES("1638", "221", "10", "4", "tristonic98@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1639", "221", "10", "7", "(250) 217-2505");
INSERT INTO `wp_rg_lead_detail` VALUES("1640", "221", "10", "2", "Trevor Howard");
INSERT INTO `wp_rg_lead_detail` VALUES("1641", "221", "10", "3.1", "3880B Cedar Hill Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("1642", "221", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1643", "221", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1644", "221", "10", "3.5", "V8P3Z6");
INSERT INTO `wp_rg_lead_detail` VALUES("1645", "221", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1646", "221", "10", "5", "midgardserpent@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1647", "221", "10", "6", "(778) 977-6066");
INSERT INTO `wp_rg_lead_detail` VALUES("1648", "221", "10", "8", "Text if at all possible please. Otherwise by phone.");
INSERT INTO `wp_rg_lead_detail` VALUES("1650", "221", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("1651", "221", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("1652", "221", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("1653", "221", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1654", "221", "10", "17", "Zoloft- 150 mg\r\nSeroquel- 75 mg to sleep at night, 12.5 mg as required through the day to alleviate anxiety spikes\r\n\r\n\r\nMichael Kinch from IMCRT strongly recommended we sign Tristan up for this program.");
INSERT INTO `wp_rg_lead_detail` VALUES("1656", "222", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("1657", "222", "10", "10", "03/12/2001");
INSERT INTO `wp_rg_lead_detail` VALUES("1658", "222", "10", "4", "leviholland89@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1659", "222", "10", "7", "(778) 533-4602");
INSERT INTO `wp_rg_lead_detail` VALUES("1660", "222", "10", "2", "Jolette Holland");
INSERT INTO `wp_rg_lead_detail` VALUES("1661", "222", "10", "3.1", "4630 Falaise Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("1662", "222", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1663", "222", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1664", "222", "10", "3.5", "V8Y 1B3");
INSERT INTO `wp_rg_lead_detail` VALUES("1665", "222", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1666", "222", "10", "5", "jolette.holland@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1667", "222", "10", "6", "(778) 676-0446");
INSERT INTO `wp_rg_lead_detail` VALUES("1668", "222", "10", "8", "phone (number above - cell)");
INSERT INTO `wp_rg_lead_detail` VALUES("1670", "222", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1671", "222", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("1672", "222", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1673", "222", "10", "17", "Concerta - 54 mg");
INSERT INTO `wp_rg_lead_detail` VALUES("1674", "223", "1", "1.3", "Peter");
INSERT INTO `wp_rg_lead_detail` VALUES("1675", "223", "1", "1.6", "Graham");
INSERT INTO `wp_rg_lead_detail` VALUES("1676", "223", "1", "2", "LMcKenzie@luthercourt.org");
INSERT INTO `wp_rg_lead_detail` VALUES("1677", "223", "1", "5", "(250) 388-0919");
INSERT INTO `wp_rg_lead_detail` VALUES("1678", "223", "1", "3", "Hello,\r\n\r\nMy name is Josee Frigon and I am social work student at Luther Court Society. I am seeking counseling services on behalf of a client I have been working with, Peter Graham. Peter moved in to Luther Court four months ago and is having a hard time with the transition. Peter also has a history of depression and anxiety and has said that he really benefitted from counseling in the past. He is on the minimum allowed income from the government and 80 percent of his income comes to Luther Court for the cost of his care so he would require subsidized. Peter also has mobility issues and does not get out so easily. We were hoping that someone would be able to come over to Luther Court and meet him here if that is at all possible. \r\n\r\n The phone number I have provided goes straight to Peter\'s room so if you have any further questions or need to complete the intake process he can be reached there. I am done at LC this Friday and if you have any questions the email I provided goes to Lori McKenzie who is the registered social worker here. \r\n\r\nThank you so much. Peter is looking forward to hearing from you!\r\nJosee");
INSERT INTO `wp_rg_lead_detail` VALUES("1679", "224", "3", "1.3", "Shannon");
INSERT INTO `wp_rg_lead_detail` VALUES("1680", "224", "3", "1.6", "McRae");
INSERT INTO `wp_rg_lead_detail` VALUES("1681", "224", "3", "2", "shannon.mcrae@sd68.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1682", "224", "3", "3.1", "3431 Hammond Bay road");
INSERT INTO `wp_rg_lead_detail` VALUES("1683", "224", "3", "3.3", "Nanaimo");
INSERT INTO `wp_rg_lead_detail` VALUES("1684", "224", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1685", "224", "3", "3.5", "v9s 1e7");
INSERT INTO `wp_rg_lead_detail` VALUES("1686", "224", "3", "4", "(250) 760-0833");
INSERT INTO `wp_rg_lead_detail` VALUES("1687", "224", "3", "7", "May 28th");
INSERT INTO `wp_rg_lead_detail` VALUES("1688", "224", "3", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_rg_lead_detail` VALUES("1690", "225", "3", "1.3", "Amanda");
INSERT INTO `wp_rg_lead_detail` VALUES("1691", "225", "3", "1.6", "Gillis");
INSERT INTO `wp_rg_lead_detail` VALUES("1692", "225", "3", "2", "agillis@sd61.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1693", "225", "3", "3.1", "4042 Magdelin Street");
INSERT INTO `wp_rg_lead_detail` VALUES("1694", "225", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1695", "225", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1696", "225", "3", "3.5", "V8N 3M8");
INSERT INTO `wp_rg_lead_detail` VALUES("1697", "225", "3", "4", "(250) 885-6478");
INSERT INTO `wp_rg_lead_detail` VALUES("1698", "225", "3", "7", "May 28/16");
INSERT INTO `wp_rg_lead_detail` VALUES("1699", "225", "3", "5", "Self-Injuring Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("1702", "226", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("1703", "226", "10", "10", "26/02/2001");
INSERT INTO `wp_rg_lead_detail` VALUES("1704", "226", "10", "4", "Cheesycow58@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1705", "226", "10", "2", "Anne Pickup");
INSERT INTO `wp_rg_lead_detail` VALUES("1706", "226", "10", "3.1", "Apt. 106-3936 Gordon Head Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1707", "226", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1708", "226", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1709", "226", "10", "3.5", "V8p4x3");
INSERT INTO `wp_rg_lead_detail` VALUES("1710", "226", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1711", "226", "10", "5", "Sectmely49@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1712", "226", "10", "6", "(250) 590-1906");
INSERT INTO `wp_rg_lead_detail` VALUES("1713", "226", "10", "8", "E-mail");
INSERT INTO `wp_rg_lead_detail` VALUES("1715", "226", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1716", "226", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("1717", "226", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("1718", "226", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1719", "226", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("1720", "226", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1721", "226", "10", "17", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("1722", "227", "3", "1.3", "Stephanie");
INSERT INTO `wp_rg_lead_detail` VALUES("1723", "227", "3", "1.6", "Slater");
INSERT INTO `wp_rg_lead_detail` VALUES("1724", "227", "3", "2", "simpson9@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1725", "227", "3", "3.1", "213-1013 Vancouver St.");
INSERT INTO `wp_rg_lead_detail` VALUES("1726", "227", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1727", "227", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1728", "227", "3", "3.5", "V8V3V9");
INSERT INTO `wp_rg_lead_detail` VALUES("1729", "227", "3", "4", "(250) 891-3917");
INSERT INTO `wp_rg_lead_detail` VALUES("1730", "227", "3", "7", "May 28, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1731", "227", "3", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_rg_lead_detail` VALUES("1734", "228", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("1735", "228", "10", "10", "12/06/2001");
INSERT INTO `wp_rg_lead_detail` VALUES("1736", "228", "10", "4", "bonnie.alexander@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1737", "228", "10", "7", "(250) 592-8468");
INSERT INTO `wp_rg_lead_detail` VALUES("1738", "228", "10", "2", "Bonnie Alexander");
INSERT INTO `wp_rg_lead_detail` VALUES("1739", "228", "10", "3.1", "1227 Lockley rd");
INSERT INTO `wp_rg_lead_detail` VALUES("1740", "228", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1741", "228", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1742", "228", "10", "3.5", "V9A 4S9");
INSERT INTO `wp_rg_lead_detail` VALUES("1743", "228", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1744", "228", "10", "5", "bonnie.alexander@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1745", "228", "10", "6", "(250) 858-1462");
INSERT INTO `wp_rg_lead_detail` VALUES("1746", "228", "10", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("1748", "228", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1749", "228", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("1750", "228", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("1751", "228", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1752", "228", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("1754", "229", "3", "1.3", "Claudia");
INSERT INTO `wp_rg_lead_detail` VALUES("1755", "229", "3", "1.6", "Dorrington");
INSERT INTO `wp_rg_lead_detail` VALUES("1756", "229", "3", "2", "revchas@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1757", "229", "3", "3.1", "70-7570 Tetayut Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1758", "229", "3", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("1759", "229", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1760", "229", "3", "3.5", "V8M 2H4");
INSERT INTO `wp_rg_lead_detail` VALUES("1761", "229", "3", "4", "(250) 652-8850");
INSERT INTO `wp_rg_lead_detail` VALUES("1762", "229", "3", "7", "April 14, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1763", "229", "3", "5", "The Twilight Journey");
INSERT INTO `wp_rg_lead_detail` VALUES("1766", "230", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("1767", "230", "10", "10", "08/07/2000");
INSERT INTO `wp_rg_lead_detail` VALUES("1768", "230", "10", "4", "brynnharlow@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1769", "230", "10", "7", "(250) 857-8243");
INSERT INTO `wp_rg_lead_detail` VALUES("1770", "230", "10", "2", "Davana & Mike Harlow");
INSERT INTO `wp_rg_lead_detail` VALUES("1771", "230", "10", "3.1", "1627 Wilmot Place");
INSERT INTO `wp_rg_lead_detail` VALUES("1772", "230", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1773", "230", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1774", "230", "10", "3.5", "V8R 5S3");
INSERT INTO `wp_rg_lead_detail` VALUES("1775", "230", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1776", "230", "10", "5", "davonaharlow@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1777", "230", "10", "6", "(250) 857-8644");
INSERT INTO `wp_rg_lead_detail` VALUES("1778", "230", "10", "8", "Email or cell.");
INSERT INTO `wp_rg_lead_detail` VALUES("1780", "230", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1781", "230", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("1782", "230", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("1783", "230", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1784", "230", "10", "17", "Not at this time, but most likely will be prescribed on Friday when we see Dr. Lauderdale. Brynn has been diagnosed with depression.\r\n-Davona");
INSERT INTO `wp_rg_lead_detail` VALUES("1785", "231", "3", "1.3", "Cori");
INSERT INTO `wp_rg_lead_detail` VALUES("1786", "231", "3", "1.6", "Luchuck");
INSERT INTO `wp_rg_lead_detail` VALUES("1787", "231", "3", "2", "Toosassy99@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1788", "231", "3", "3.1", "4054 knibbs green");
INSERT INTO `wp_rg_lead_detail` VALUES("1789", "231", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1790", "231", "3", "3.4", "Bc");
INSERT INTO `wp_rg_lead_detail` VALUES("1791", "231", "3", "3.5", "V8z 6y7");
INSERT INTO `wp_rg_lead_detail` VALUES("1792", "231", "3", "4", "(778) 977-2674");
INSERT INTO `wp_rg_lead_detail` VALUES("1793", "231", "3", "7", "05/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1794", "231", "3", "5", "Self injuring youth: understanding and responding");
INSERT INTO `wp_rg_lead_detail` VALUES("1797", "232", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("1798", "232", "10", "10", "07/12/1999");
INSERT INTO `wp_rg_lead_detail` VALUES("1799", "232", "10", "4", "chasejgbarker@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1800", "232", "10", "7", "(250) 888-2108");
INSERT INTO `wp_rg_lead_detail` VALUES("1801", "232", "10", "2", "Olga Denissova");
INSERT INTO `wp_rg_lead_detail` VALUES("1802", "232", "10", "3.1", "2946 Richmond Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1803", "232", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1804", "232", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1805", "232", "10", "3.5", "V8R4V1");
INSERT INTO `wp_rg_lead_detail` VALUES("1806", "232", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1807", "232", "10", "5", "odenissova10@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1808", "232", "10", "6", "(250) 389-1771");
INSERT INTO `wp_rg_lead_detail` VALUES("1809", "232", "10", "8", "Please, contact Olga first by phone or e-mail");
INSERT INTO `wp_rg_lead_detail` VALUES("1811", "232", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("1812", "232", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("1813", "232", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("1814", "232", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("1815", "233", "1", "1.3", "Travis");
INSERT INTO `wp_rg_lead_detail` VALUES("1816", "233", "1", "1.6", "Brundage");
INSERT INTO `wp_rg_lead_detail` VALUES("1817", "233", "1", "2", "travislbrundage@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1818", "233", "1", "5", "(778) 678-3511");
INSERT INTO `wp_rg_lead_detail` VALUES("1819", "233", "1", "3", "Greetings,\r\n\r\nI\'m writing to you today to ask about your counselling services. My boyfriend and I are having difficulties with our open relationship, and I was wondering if you had the expertise in such a situation to aid us working such a relationship style out. If not, if you know of any service in the area that might have experience or be able to provide counselling for this situation, I would greatly appreciate any recommendations you could give us.\r\n\r\nRegards,\r\nTravis");
INSERT INTO `wp_rg_lead_detail` VALUES("1820", "234", "3", "1.3", "TAZAR");
INSERT INTO `wp_rg_lead_detail` VALUES("1821", "234", "3", "1.6", "GREWAL");
INSERT INTO `wp_rg_lead_detail` VALUES("1822", "234", "3", "2", "G-PGREWAL@SHAW.CA");
INSERT INTO `wp_rg_lead_detail` VALUES("1823", "234", "3", "3.1", "2519 FIELDING PL");
INSERT INTO `wp_rg_lead_detail` VALUES("1824", "234", "3", "3.3", "VICTORIA");
INSERT INTO `wp_rg_lead_detail` VALUES("1825", "234", "3", "3.4", "British Columbia (BC)");
INSERT INTO `wp_rg_lead_detail` VALUES("1826", "234", "3", "3.5", "V8Z 7Z8");
INSERT INTO `wp_rg_lead_detail` VALUES("1827", "234", "3", "4", "(250) 544-0219");
INSERT INTO `wp_rg_lead_detail` VALUES("1828", "234", "3", "7", "APRIL 16, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1829", "234", "3", "5", "TEEN ANXIETY SUPPORT GROUP");
INSERT INTO `wp_rg_lead_detail` VALUES("1831", "235", "3", "1.3", "Elana");
INSERT INTO `wp_rg_lead_detail` VALUES("1832", "235", "3", "1.6", "Angus");
INSERT INTO `wp_rg_lead_detail` VALUES("1833", "235", "3", "2", "her.email@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1834", "235", "3", "3.1", "66-420 Sitkum Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("1835", "235", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1836", "235", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1837", "235", "3", "3.5", "V9A 7G6");
INSERT INTO `wp_rg_lead_detail` VALUES("1838", "235", "3", "4", "(250) 419-2366");
INSERT INTO `wp_rg_lead_detail` VALUES("1839", "235", "3", "7", "05/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1840", "235", "3", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_rg_lead_detail` VALUES("1842", "236", "1", "1.3", "Ron");
INSERT INTO `wp_rg_lead_detail` VALUES("1843", "236", "1", "1.6", "Canning");
INSERT INTO `wp_rg_lead_detail` VALUES("1844", "236", "1", "2", "canning.ron@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1845", "236", "1", "5", "(250) 857-3909");
INSERT INTO `wp_rg_lead_detail` VALUES("1846", "236", "1", "3", "Hello,\r\n\r\nI would like to set up an initial appointment with the Counselling Supervisor and discuss the sliding scale fee.\r\n\r\nI work Tuesday to Saturday 9-5:30, so I\'m not available during those times.\r\n\r\nThank you, \r\nRon");
INSERT INTO `wp_rg_lead_detail` VALUES("1847", "237", "1", "1.3", "Allison");
INSERT INTO `wp_rg_lead_detail` VALUES("1848", "237", "1", "1.6", "Peters");
INSERT INTO `wp_rg_lead_detail` VALUES("1849", "237", "1", "2", "allicoll@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1850", "237", "1", "5", "(250) 480-9513");
INSERT INTO `wp_rg_lead_detail` VALUES("1851", "237", "1", "3", "Looking for an appointment, loss of my father unexpectedly and some trauma.  I was referred to your centre from Maryanne Tinney.");
INSERT INTO `wp_rg_lead_detail` VALUES("1852", "238", "3", "1.3", "Katarina");
INSERT INTO `wp_rg_lead_detail` VALUES("1853", "238", "3", "1.6", "Mauro");
INSERT INTO `wp_rg_lead_detail` VALUES("1854", "238", "3", "2", "katarinamauro86@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1855", "238", "3", "3.1", "208-157 Gorge Road East");
INSERT INTO `wp_rg_lead_detail` VALUES("1856", "238", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1857", "238", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1858", "238", "3", "3.5", "V9A 6Y2");
INSERT INTO `wp_rg_lead_detail` VALUES("1859", "238", "3", "4", "(250) 588-6533");
INSERT INTO `wp_rg_lead_detail` VALUES("1860", "238", "3", "7", "05/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1861", "238", "3", "5", "Self-Injuring Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("1863", "239", "3", "1.3", "Danika");
INSERT INTO `wp_rg_lead_detail` VALUES("1864", "239", "3", "1.6", "Bisjak");
INSERT INTO `wp_rg_lead_detail` VALUES("1865", "239", "3", "2", "danbisja@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1866", "239", "3", "3.1", "1160 Reynolds Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1867", "239", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1868", "239", "3", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("1869", "239", "3", "3.5", "V8P 2K6");
INSERT INTO `wp_rg_lead_detail` VALUES("1870", "239", "3", "4", "(250) 514-4644");
INSERT INTO `wp_rg_lead_detail` VALUES("1871", "239", "3", "7", "05/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1872", "239", "3", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_rg_lead_detail` VALUES("1874", "240", "3", "1.3", "Katarina");
INSERT INTO `wp_rg_lead_detail` VALUES("1875", "240", "3", "1.6", "Mauro");
INSERT INTO `wp_rg_lead_detail` VALUES("1876", "240", "3", "2", "katarinamauro86@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1877", "240", "3", "3.1", "208-157 Gorge Rd East");
INSERT INTO `wp_rg_lead_detail` VALUES("1878", "240", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1879", "240", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1880", "240", "3", "3.5", "V9A 6Y2");
INSERT INTO `wp_rg_lead_detail` VALUES("1881", "240", "3", "4", "(250) 588-6533");
INSERT INTO `wp_rg_lead_detail` VALUES("1882", "240", "3", "7", "05/28/16");
INSERT INTO `wp_rg_lead_detail` VALUES("1883", "240", "3", "5", "Self-Injuring Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("1885", "241", "1", "1.3", "Caroline");
INSERT INTO `wp_rg_lead_detail` VALUES("1886", "241", "1", "1.6", "Dickson");
INSERT INTO `wp_rg_lead_detail` VALUES("1887", "241", "1", "2", "Carolinedickson@live.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1888", "241", "1", "5", "(403) 991-4009");
INSERT INTO `wp_rg_lead_detail` VALUES("1889", "241", "1", "3", "Caroline asked me (her mom Judy) to contact you about counselling. She has been diagnosed with bipolar 2 after a misdiagnosis of bipolar 1. Her Meds were changed about 8 weeks ago. She is depressed and very anxious. She has been unemployed for over one year and is applying for jobs which is building her anxiety. She moved to Victoria with her boyfriend and dog in June last year so she was closer to us (we are 2 1/2 hours away).  Their savings are running out and she knows she needs help to move forward. \r\n\r\nIf Caroline doesn\'t answer her phone, please leave a message. She will return your call. \r\n\r\nThank you!");
INSERT INTO `wp_rg_lead_detail` VALUES("1890", "242", "3", "1.3", "Sue");
INSERT INTO `wp_rg_lead_detail` VALUES("1891", "242", "3", "1.6", "Lane");
INSERT INTO `wp_rg_lead_detail` VALUES("1892", "242", "3", "2", "Suzanne.Lane@gov.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1893", "242", "3", "3.1", "669 Charmar Cr");
INSERT INTO `wp_rg_lead_detail` VALUES("1894", "242", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1895", "242", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1896", "242", "3", "3.5", "V9B 5W2");
INSERT INTO `wp_rg_lead_detail` VALUES("1897", "242", "3", "4", "(250) 415-9724");
INSERT INTO `wp_rg_lead_detail` VALUES("1898", "242", "3", "7", "05/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1899", "242", "3", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_rg_lead_detail` VALUES("1901", "243", "1", "1.3", "Brenda");
INSERT INTO `wp_rg_lead_detail` VALUES("1902", "243", "1", "1.6", "McCreight");
INSERT INTO `wp_rg_lead_detail` VALUES("1903", "243", "1", "2", "brenda@lifespanmediation.org");
INSERT INTO `wp_rg_lead_detail` VALUES("1904", "243", "1", "5", "(778) 678-4138");
INSERT INTO `wp_rg_lead_detail` VALUES("1905", "243", "1", "3", "Hello Bill - I haven\'t heard back from you regarding the interview so I assume that I was not the successful candidate. I\'m sure you had many highly qualified professionals from which to choose and I am pleased that I had the opportunity to be considered. Moving forward, I hope that the Pastoral Counselling course will be offered in the near future as I am very interested in taking that to add to both my counselling and mediation practices. I am intending to expand my mediation practice to work with clergy and congregations who are experiencing discord and I would appreciate it if you would keep my in mind for a referral should you hear of any need for this service. It was a pleasure to meet with you all and I hope our paths cross again.");
INSERT INTO `wp_rg_lead_detail` VALUES("1906", "244", "3", "1.3", "Melanie");
INSERT INTO `wp_rg_lead_detail` VALUES("1907", "244", "3", "1.6", "Winter");
INSERT INTO `wp_rg_lead_detail` VALUES("1908", "244", "3", "2", "mwinter@need2.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1909", "244", "3", "3.1", "1524 Fort Street");
INSERT INTO `wp_rg_lead_detail` VALUES("1910", "244", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1911", "244", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1912", "244", "3", "3.5", "V8V");
INSERT INTO `wp_rg_lead_detail` VALUES("1913", "244", "3", "4", "(778) 679-8358");
INSERT INTO `wp_rg_lead_detail` VALUES("1914", "244", "3", "7", "05/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1915", "244", "3", "5", "Self-injuring Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("1917", "245", "1", "1.3", "Miriam");
INSERT INTO `wp_rg_lead_detail` VALUES("1918", "245", "1", "1.6", "Enkel");
INSERT INTO `wp_rg_lead_detail` VALUES("1919", "245", "1", "2", "miriamenkel@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1920", "245", "1", "5", "(250) 634-4024");
INSERT INTO `wp_rg_lead_detail` VALUES("1921", "245", "1", "3", "South Island Centre, \r\nHi I would like to inquire about counselling for anxiety and depression. I am 19 year old, female and currently taking online courses and will be starting UVIC in the fall. Currently, I work part-time but make less than $100 per week. I am really interested in doing one on one counselling with a session once a week. \r\nDo you have any recommendations of where I could go for counselling or any free counselling options?\r\nThank you so much for your time, \r\nMiriam");
INSERT INTO `wp_rg_lead_detail` VALUES("1922", "246", "12", "1.3", "Peter");
INSERT INTO `wp_rg_lead_detail` VALUES("1923", "246", "12", "1.6", "Rashleigh");
INSERT INTO `wp_rg_lead_detail` VALUES("1924", "246", "12", "2.1", "20 Newcastle Court");
INSERT INTO `wp_rg_lead_detail` VALUES("1925", "246", "12", "2.5", "Victoria  BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1926", "246", "12", "2.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("1927", "246", "12", "3", "prashleigh@baptisthousing.org");
INSERT INTO `wp_rg_lead_detail` VALUES("1928", "246", "12", "4", "(250) 818-3222");
INSERT INTO `wp_rg_lead_detail` VALUES("1929", "246", "12", "5", "The Twilight Journey- Grief, Loss and the Very Elderly");
INSERT INTO `wp_rg_lead_detail` VALUES("1930", "247", "3", "1.3", "Son");
INSERT INTO `wp_rg_lead_detail` VALUES("1931", "247", "3", "1.6", "Steadman");
INSERT INTO `wp_rg_lead_detail` VALUES("1932", "247", "3", "2", "simonovvitimii@bk.ru");
INSERT INTO `wp_rg_lead_detail` VALUES("1933", "247", "3", "3.1", "3292 Keyser Ridge Road");
INSERT INTO `wp_rg_lead_detail` VALUES("1934", "247", "3", "3.3", "Greensboro");
INSERT INTO `wp_rg_lead_detail` VALUES("1935", "247", "3", "3.4", "NC");
INSERT INTO `wp_rg_lead_detail` VALUES("1936", "247", "3", "3.5", "27406");
INSERT INTO `wp_rg_lead_detail` VALUES("1937", "247", "3", "4", "(336) 462-2338");
INSERT INTO `wp_rg_lead_detail` VALUES("1938", "247", "3", "7", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("1939", "247", "3", "5", "Promote Your Conjunto de pÃ¡ginas da Internet conjunto de pÃ¡ginas da Internet");
INSERT INTO `wp_rg_lead_detail` VALUES("1943", "248", "3", "1.3", "Maria");
INSERT INTO `wp_rg_lead_detail` VALUES("1944", "248", "3", "1.6", "Butler");
INSERT INTO `wp_rg_lead_detail` VALUES("1945", "248", "3", "2", "mbutler2002@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1946", "248", "3", "3.1", "1585 Bonita Place");
INSERT INTO `wp_rg_lead_detail` VALUES("1947", "248", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1948", "248", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1949", "248", "3", "3.5", "V8N 2W1");
INSERT INTO `wp_rg_lead_detail` VALUES("1950", "248", "3", "4", "(250) 475-1920");
INSERT INTO `wp_rg_lead_detail` VALUES("1951", "248", "3", "7", "05/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("1952", "248", "3", "5", "Self-Injuring Youth: Understanding and Responding");
INSERT INTO `wp_rg_lead_detail` VALUES("1954", "249", "1", "1.3", "Denise");
INSERT INTO `wp_rg_lead_detail` VALUES("1955", "249", "1", "1.6", "Brown");
INSERT INTO `wp_rg_lead_detail` VALUES("1956", "249", "1", "2", "deniseannebrown@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1957", "249", "1", "5", "(250) 589-5596");
INSERT INTO `wp_rg_lead_detail` VALUES("1958", "249", "1", "3", "Hello,\r\n\r\nI would like to see about couples counselling, please. My fiance and I are getting married June 25th and I\'d like to meet with a counsellor beforehand. \r\n\r\nPlease let me know.\r\n\r\nThanks,\r\nDenise");
INSERT INTO `wp_rg_lead_detail` VALUES("1959", "250", "1", "1.3", "Denise");
INSERT INTO `wp_rg_lead_detail` VALUES("1960", "250", "1", "1.6", "Brown");
INSERT INTO `wp_rg_lead_detail` VALUES("1961", "250", "1", "2", "deniseannebrown@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1962", "250", "1", "5", "(250) 589-5596");
INSERT INTO `wp_rg_lead_detail` VALUES("1963", "250", "1", "3", "Hello,\r\n\r\nI would like to see about couples counselling, please. My fiance and I are getting married June 25th and I\'d like to meet with a counsellor beforehand. \r\n\r\nPlease let me know.\r\n\r\nThanks,\r\nDenise");
INSERT INTO `wp_rg_lead_detail` VALUES("1964", "251", "1", "1.3", "Heather");
INSERT INTO `wp_rg_lead_detail` VALUES("1965", "251", "1", "1.6", "Furneaux");
INSERT INTO `wp_rg_lead_detail` VALUES("1966", "251", "1", "2", "heather@cloveandanchor.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1967", "251", "1", "5", "(250) 891-4851");
INSERT INTO `wp_rg_lead_detail` VALUES("1968", "251", "1", "3", "Hello,\r\n\r\nI would like some counseling sessions. Am I able to do a phone in take?\r\n\r\nThank you,\r\n\r\nHeather");
INSERT INTO `wp_rg_lead_detail` VALUES("1969", "252", "1", "1.3", "Amy");
INSERT INTO `wp_rg_lead_detail` VALUES("1970", "252", "1", "1.6", "Culliford");
INSERT INTO `wp_rg_lead_detail` VALUES("1971", "252", "1", "2", "amyculliford@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1972", "252", "1", "5", "(250) 857-9283");
INSERT INTO `wp_rg_lead_detail` VALUES("1973", "252", "1", "3", "Hi there,\r\n\r\nMy name is Amy Culliford and I\'ve been looking to get individual counselling now for a few months. It\'s been quite the extensive search for me to find a counsellor - I make around $13,000 a year, recently graduated from University, still receiving financial help from family, so price for services has hindered me quite a bit from seeking help. I think it\'s time I pool my resources together and pay however much I can to receive some guidance. \r\n\r\nAbout 5 years ago when I was 19 years old I had a major falling out with my mother and step-father. Since then we have communicated on and off - now once again I haven\'t spoken to them for at least a year. I\'m not interested in re-introducing them back into my life just yet, but I would like to start building the skills and tools to help me cope with the loss of their relationships in my life, and how to cope with the possibility of communicating with them again in the future. My long term boyfriend is planning to propose, and I\'m having some difficulties with the idea (due to my mother, possibly) and would like some guidance. I find myself anxious and stressed when I think or talk about anything to do with my mother. \r\n\r\nI think this conflict is emerging in other areas of my life, so hopefully I can receive some help to sort this all out. Thanks and I look forward to hearing from you.");
INSERT INTO `wp_rg_lead_detail` VALUES("1974", "253", "3", "1.3", "Maggie");
INSERT INTO `wp_rg_lead_detail` VALUES("1975", "253", "3", "1.6", "Reidy");
INSERT INTO `wp_rg_lead_detail` VALUES("1976", "253", "3", "2", "lighthousemaggie@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1977", "253", "3", "3.1", "2313 Evelyn Heights");
INSERT INTO `wp_rg_lead_detail` VALUES("1978", "253", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("1979", "253", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("1980", "253", "3", "3.5", "V9B 6C7");
INSERT INTO `wp_rg_lead_detail` VALUES("1981", "253", "3", "4", "(250) 380-3504");
INSERT INTO `wp_rg_lead_detail` VALUES("1982", "253", "3", "7", "May 28/16");
INSERT INTO `wp_rg_lead_detail` VALUES("1983", "253", "3", "5", "Self Injuring Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("1985", "254", "3", "1.3", "JoAnn");
INSERT INTO `wp_rg_lead_detail` VALUES("1986", "254", "3", "1.6", "Gillespie");
INSERT INTO `wp_rg_lead_detail` VALUES("1987", "254", "3", "2", "jogillespie_1@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("1988", "254", "3", "3.1", "7998 Tiffany Place");
INSERT INTO `wp_rg_lead_detail` VALUES("1989", "254", "3", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("1990", "254", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("1991", "254", "3", "3.5", "V8M 1V5");
INSERT INTO `wp_rg_lead_detail` VALUES("1992", "254", "3", "4", "(250) 652-5899");
INSERT INTO `wp_rg_lead_detail` VALUES("1993", "254", "3", "7", "05/28/16");
INSERT INTO `wp_rg_lead_detail` VALUES("1994", "254", "3", "5", "Self-Injuring Youth");
INSERT INTO `wp_rg_lead_detail` VALUES("1996", "255", "1", "1.3", "Caitlyn");
INSERT INTO `wp_rg_lead_detail` VALUES("1997", "255", "1", "1.6", "Redford");
INSERT INTO `wp_rg_lead_detail` VALUES("1998", "255", "1", "2", "Caitlynlarraine@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("1999", "255", "1", "5", "(250) 634-3261");
INSERT INTO `wp_rg_lead_detail` VALUES("2000", "255", "1", "3", "Hi there,\r\n\r\nMy husband and I have a 2.5 year old and are expecting another in September. We are having a real hard time coping with tantrums and the life transition, as well as our marriage. Initially I thought we might need a parenting course, but can you help guide us in the right direction? Not sure what will help the most. Probably anything at this point!\r\nThanks!\r\n\r\nCaitlyn");
INSERT INTO `wp_rg_lead_detail` VALUES("2001", "256", "3", "1.3", "Wendy");
INSERT INTO `wp_rg_lead_detail` VALUES("2002", "256", "3", "1.6", "Wilkins");
INSERT INTO `wp_rg_lead_detail` VALUES("2003", "256", "3", "2", "wendyberi74@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2004", "256", "3", "3.1", "2897 Parkview Dr.");
INSERT INTO `wp_rg_lead_detail` VALUES("2005", "256", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2006", "256", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2007", "256", "3", "3.5", "V9A2J3");
INSERT INTO `wp_rg_lead_detail` VALUES("2008", "256", "3", "4", "(250) 885-7011");
INSERT INTO `wp_rg_lead_detail` VALUES("2009", "256", "3", "7", "May/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2010", "256", "3", "5", "Self injuring youth.");
INSERT INTO `wp_rg_lead_detail` VALUES("2012", "257", "12", "1.3", "Sheila");
INSERT INTO `wp_rg_lead_detail` VALUES("2013", "257", "12", "1.6", "Needs");
INSERT INTO `wp_rg_lead_detail` VALUES("2014", "257", "12", "2.1", "6290 Soule rd");
INSERT INTO `wp_rg_lead_detail` VALUES("2015", "257", "12", "2.3", "Sooke");
INSERT INTO `wp_rg_lead_detail` VALUES("2016", "257", "12", "2.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2017", "257", "12", "2.5", "V9Z 0X5");
INSERT INTO `wp_rg_lead_detail` VALUES("2018", "257", "12", "2.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2019", "257", "12", "3", "sneeds@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2020", "257", "12", "4", "(250) 642-6939");
INSERT INTO `wp_rg_lead_detail` VALUES("2021", "257", "12", "5", "The eb and flow of life");
INSERT INTO `wp_rg_lead_detail` VALUES("2022", "258", "1", "1.3", "Kristal");
INSERT INTO `wp_rg_lead_detail` VALUES("2023", "258", "1", "1.6", "Busby");
INSERT INTO `wp_rg_lead_detail` VALUES("2024", "258", "1", "2", "kristalbusby@icloud.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2025", "258", "1", "5", "(250) 891-7241");
INSERT INTO `wp_rg_lead_detail` VALUES("2026", "258", "1", "3", "I am a fifty year old trans-woman. For the last year I have been continually harassed by an individual. The person has been evicted from my apartment building. However he still verbally assaults me in the street.\r\n\r\nI have developed a physical reaction to this person and I need counselling to find a way to not let it affect me.\r\n\r\nIs this something you can help with.\r\n\r\nMy income is $18,000.00 annually so I would be making use of the sliding scale.\r\n\r\nThank you for any info.\r\n\r\nKristal");
INSERT INTO `wp_rg_lead_detail` VALUES("2027", "259", "1", "1.3", "Lisa");
INSERT INTO `wp_rg_lead_detail` VALUES("2028", "259", "1", "1.6", "Alderson");
INSERT INTO `wp_rg_lead_detail` VALUES("2029", "259", "1", "2", "lisaalders@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2030", "259", "1", "5", "(778) 433-4138");
INSERT INTO `wp_rg_lead_detail` VALUES("2031", "259", "1", "3", "Hi, I need some counselling. I am on disability and have depression among other things. I met a fellow 12 years ago 20 years my senior and now I\'m in a caregiver position as well which is causing some of the depression. I feel very isolated and can\'t seem to figure out what to do for myself. When I go out and leave this fellow by himself I feel very guilty. Of course I know depression can make you feel guilt and I am in the middle of a new course of medication. I feel that I\'ve lost myself somewhere along the way. Nothing interests me anymore other than going for walks. And I\'m always very, very tired.  Thanks");
INSERT INTO `wp_rg_lead_detail` VALUES("2032", "260", "1", "1.3", "John");
INSERT INTO `wp_rg_lead_detail` VALUES("2033", "260", "1", "1.6", "Libson");
INSERT INTO `wp_rg_lead_detail` VALUES("2034", "260", "1", "2", "jlibson@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2035", "260", "1", "5", "(250) 721-8341");
INSERT INTO `wp_rg_lead_detail` VALUES("2036", "260", "1", "3", "Hello,\r\nA student at UVic has signed a consent to release information from Laurie Truant to a counselor at UVic for continuity of care. I would like to send the ROI over to you, but I don\'t know if I should fax it to you with the attention of the counselor if there is another way that you prefer. I would appreciate if you could get back to me.\r\nThanks,\r\n\r\nJohn");
INSERT INTO `wp_rg_lead_detail` VALUES("2037", "261", "2", "1.3", "Scott");
INSERT INTO `wp_rg_lead_detail` VALUES("2038", "261", "2", "1.6", "Guffey");
INSERT INTO `wp_rg_lead_detail` VALUES("2039", "261", "2", "2", "scottguffey@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2040", "261", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("2041", "262", "1", "1.3", "Valeria");
INSERT INTO `wp_rg_lead_detail` VALUES("2042", "262", "1", "1.6", "Almeida");
INSERT INTO `wp_rg_lead_detail` VALUES("2043", "262", "1", "2", "valeria5166191@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2044", "262", "1", "5", "(250) 516-6191");
INSERT INTO `wp_rg_lead_detail` VALUES("2045", "262", "1", "3", "I am seeking for couples counselling. Concerns about anger, low self-esteem, depression and high level of anxiety.");
INSERT INTO `wp_rg_lead_detail` VALUES("2046", "263", "1", "1.3", "Daelyn");
INSERT INTO `wp_rg_lead_detail` VALUES("2047", "263", "1", "1.6", "Cahoon");
INSERT INTO `wp_rg_lead_detail` VALUES("2048", "263", "1", "2", "daelyn16@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2049", "263", "1", "5", "(250) 898-4030");
INSERT INTO `wp_rg_lead_detail` VALUES("2050", "263", "1", "3", "Hello,\r\nI am inquiring about counselling for my boyfriend, who is just out of town right now. His current income is less than 50,000 and is currently working to get into school in spring of next year. What is the approximate cost he would be looking at? As well, are the hours flexible as he works 10-7 shift most days. Thank you");
INSERT INTO `wp_rg_lead_detail` VALUES("2051", "264", "1", "1.3", "Jill");
INSERT INTO `wp_rg_lead_detail` VALUES("2052", "264", "1", "1.6", "Ciceri");
INSERT INTO `wp_rg_lead_detail` VALUES("2053", "264", "1", "2", "sandj2@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2054", "264", "1", "5", "(250) 744-1580");
INSERT INTO `wp_rg_lead_detail` VALUES("2055", "264", "1", "3", "Hello, I was wondering if you provide seniour at home counselling services. If you do not could you steer me in the right direction. My parents have recently moved into our suite and are experiencing emotional issues around the need to move here and the reasons why they needed to.  So I would guess transition counselling as well as dealing with medical issues and the emotions that arise.\r\nThanks for your time and info.\r\nJill Ciceri");
INSERT INTO `wp_rg_lead_detail` VALUES("2056", "265", "2", "1.3", "Gillian");
INSERT INTO `wp_rg_lead_detail` VALUES("2057", "265", "2", "1.6", "Hoyer");
INSERT INTO `wp_rg_lead_detail` VALUES("2058", "265", "2", "2", "gillian.hoyer@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2059", "265", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("2060", "266", "1", "1.3", "Catherine");
INSERT INTO `wp_rg_lead_detail` VALUES("2061", "266", "1", "1.6", "Sindani");
INSERT INTO `wp_rg_lead_detail` VALUES("2062", "266", "1", "2", "sindani595@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2063", "266", "1", "5", "(250) 588-6074");
INSERT INTO `wp_rg_lead_detail` VALUES("2064", "266", "1", "3", "Hello, I would like to set up an appointment with a counselor to discuss issues related to my children. I am available Mondays.\r\nThank you");
INSERT INTO `wp_rg_lead_detail` VALUES("2065", "267", "1", "1.3", "Tessa");
INSERT INTO `wp_rg_lead_detail` VALUES("2066", "267", "1", "1.6", "Carlson");
INSERT INTO `wp_rg_lead_detail` VALUES("2067", "267", "1", "2", "carlson.tess@Gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2068", "267", "1", "5", "(250) 661-1742");
INSERT INTO `wp_rg_lead_detail` VALUES("2069", "267", "1", "3", "Good afternoon,\r\n\r\nMy name is Tessa Carlson and I have been suffering from depression and anxiety for many years now and I have done my fair share of counselling but I find myself in a deep hole and I am looking for help.\r\n\r\nAfter looking at your website I was interested in trying the services that you provide. I was wondering what my next steps are?\r\n\r\nThank you,\r\nTessa Carlson");
INSERT INTO `wp_rg_lead_detail` VALUES("2070", "268", "12", "1.3", "Laura");
INSERT INTO `wp_rg_lead_detail` VALUES("2071", "268", "12", "1.6", "Cochrane");
INSERT INTO `wp_rg_lead_detail` VALUES("2072", "268", "12", "2.1", "5310 Parker Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("2073", "268", "12", "2.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2074", "268", "12", "2.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2075", "268", "12", "2.5", "V8Y 2M9");
INSERT INTO `wp_rg_lead_detail` VALUES("2076", "268", "12", "2.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2077", "268", "12", "3", "lacoch@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("2078", "268", "12", "4", "(250) 727-1495");
INSERT INTO `wp_rg_lead_detail` VALUES("2079", "268", "12", "5", "Caregiver Support for Professionals");
INSERT INTO `wp_rg_lead_detail` VALUES("2080", "269", "1", "1.3", "Nicole");
INSERT INTO `wp_rg_lead_detail` VALUES("2081", "269", "1", "1.6", "Day");
INSERT INTO `wp_rg_lead_detail` VALUES("2082", "269", "1", "2", "daynicole75@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2083", "269", "1", "5", "(250) 884-7076");
INSERT INTO `wp_rg_lead_detail` VALUES("2084", "269", "1", "3", "My husband & I are wanting to start going for marriage counselling. Would like to find someone who would be willing to work out payments on a sliding scale. \r\nMonday, June 13th would work well. Any time after 2pm. If that doesn\'t work, any Monday, Wed, Fri, & Sat work. Later afternoon preferable. \r\n\r\nThank you \r\n\r\nNicole");
INSERT INTO `wp_rg_lead_detail` VALUES("2085", "270", "2", "1.3", "Cathy");
INSERT INTO `wp_rg_lead_detail` VALUES("2086", "270", "2", "1.6", "Weicker");
INSERT INTO `wp_rg_lead_detail` VALUES("2087", "270", "2", "2", "cathyweicker@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2088", "270", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("2089", "271", "1", "1.3", "Kevin");
INSERT INTO `wp_rg_lead_detail` VALUES("2090", "271", "1", "1.6", "Kuypers");
INSERT INTO `wp_rg_lead_detail` VALUES("2091", "271", "1", "2", "Dakuyp@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2092", "271", "1", "5", "(250) 920-8594");
INSERT INTO `wp_rg_lead_detail` VALUES("2093", "271", "1", "3", "Hello. I would like to book an appointment to get help. This weekend I ended up n the ER PES unit, they  think I have OCD and Aspberger\'s. I spend about 3hrs a day talking to myself  out loud,I can\'t stop the thoughts and conversations in my head, I can\'t stop thinking. It interferes with my work and marriage. I forget to eat , I stop working and forget to talk to my wife.\r\nThey have started me on medication, but i need help. It takes over my life and I lose track of hours and days because I can\'t stop thinking.");
INSERT INTO `wp_rg_lead_detail` VALUES("2094", "272", "3", "1.3", "Moira");
INSERT INTO `wp_rg_lead_detail` VALUES("2095", "272", "3", "1.6", "Madamombe");
INSERT INTO `wp_rg_lead_detail` VALUES("2096", "272", "3", "2", "moiramajachani@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2097", "272", "3", "3.1", "302 S-737 Humboldt st");
INSERT INTO `wp_rg_lead_detail` VALUES("2098", "272", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2099", "272", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("2100", "272", "3", "3.5", "V8W 1B1");
INSERT INTO `wp_rg_lead_detail` VALUES("2101", "272", "3", "4", "(647) 955-2031");
INSERT INTO `wp_rg_lead_detail` VALUES("2102", "272", "3", "7", "4 july 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2103", "272", "3", "5", "Family systems");
INSERT INTO `wp_rg_lead_detail` VALUES("2105", "273", "2", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("2106", "273", "2", "1.6", "Cole");
INSERT INTO `wp_rg_lead_detail` VALUES("2107", "273", "2", "2", "jencole9@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2108", "273", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("2109", "273", "2", "6.3", "Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("2110", "274", "1", "1.3", "Gill");
INSERT INTO `wp_rg_lead_detail` VALUES("2111", "274", "1", "1.6", "Grant");
INSERT INTO `wp_rg_lead_detail` VALUES("2112", "274", "1", "2", "gillpgrant@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2113", "274", "1", "5", "(250) 208-6425");
INSERT INTO `wp_rg_lead_detail` VALUES("2114", "274", "1", "3", "Hi there, \r\n\r\nI would like to set up an initial appointment with your Counselling Supervisor. Please let me know any additional information that is required.\r\n\r\nThanks!\r\nGill");
INSERT INTO `wp_rg_lead_detail` VALUES("2115", "275", "1", "1.3", "Allison");
INSERT INTO `wp_rg_lead_detail` VALUES("2116", "275", "1", "1.6", "Peters");
INSERT INTO `wp_rg_lead_detail` VALUES("2117", "275", "1", "2", "allicoll@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2118", "275", "1", "5", "(250) 480-9513");
INSERT INTO `wp_rg_lead_detail` VALUES("2119", "275", "1", "3", "I am so sorry for the late notice, I have a 9 am appointment with Margaret I was looking forward to but have been sick \r\nthe night and won\'t be able to be there this morning.  I would like to make another appointment and will call to do so as well as leave a message this morning.  Allison");
INSERT INTO `wp_rg_lead_detail` VALUES("2120", "276", "2", "1.3", "Toby");
INSERT INTO `wp_rg_lead_detail` VALUES("2121", "276", "2", "1.6", "Schnoor");
INSERT INTO `wp_rg_lead_detail` VALUES("2122", "276", "2", "2", "tobyschnoor@silverthreads.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2123", "276", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("2124", "277", "12", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("2125", "277", "12", "1.6", "Daviau");
INSERT INTO `wp_rg_lead_detail` VALUES("2126", "277", "12", "2.1", "n/a");
INSERT INTO `wp_rg_lead_detail` VALUES("2127", "277", "12", "2.5", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2128", "277", "12", "2.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2129", "277", "12", "3", "pieceofcakecommunications@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2130", "277", "12", "4", "(250) 220-2036");
INSERT INTO `wp_rg_lead_detail` VALUES("2131", "277", "12", "5", "Ebb and flow of life");
INSERT INTO `wp_rg_lead_detail` VALUES("2132", "278", "3", "1.3", "Rebekah");
INSERT INTO `wp_rg_lead_detail` VALUES("2133", "278", "3", "1.6", "Humphrey");
INSERT INTO `wp_rg_lead_detail` VALUES("2134", "278", "3", "2", "gypsyinfinity@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2135", "278", "3", "3.1", "561 raynor Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("2136", "278", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2137", "278", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2138", "278", "3", "3.5", "V9a 3a9");
INSERT INTO `wp_rg_lead_detail` VALUES("2139", "278", "3", "4", "(250) 589-8871");
INSERT INTO `wp_rg_lead_detail` VALUES("2140", "278", "3", "7", "July 4th, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2141", "278", "3", "5", "Family System Intensive");
INSERT INTO `wp_rg_lead_detail` VALUES("2145", "279", "1", "1.3", "Bruce");
INSERT INTO `wp_rg_lead_detail` VALUES("2146", "279", "1", "1.6", "Bryant-Scott");
INSERT INTO `wp_rg_lead_detail` VALUES("2147", "279", "1", "2", "bbryantscott@bc.anglican.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2148", "279", "1", "5", "(250) 889-8917");
INSERT INTO `wp_rg_lead_detail` VALUES("2149", "279", "1", "3", "I am the Rector of the Anglican Parish of St. Matthias at Richmond and Richardson. Can you tell me if you have any Marriage Preparation courses planned for between now and the middle of November of 2016? Thank you!  \r\n\r\nThe Rev. Canon D. Bruce Bryant-Scott");
INSERT INTO `wp_rg_lead_detail` VALUES("2150", "280", "12", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("2151", "280", "12", "1.6", "Daviau");
INSERT INTO `wp_rg_lead_detail` VALUES("2152", "280", "12", "2.5", "V9C 3T1");
INSERT INTO `wp_rg_lead_detail` VALUES("2153", "280", "12", "2.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2154", "280", "12", "3", "pieceofcakecommunications@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2155", "280", "12", "4", "(250) 220-2036");
INSERT INTO `wp_rg_lead_detail` VALUES("2156", "280", "12", "5", "Grief and Loss");
INSERT INTO `wp_rg_lead_detail` VALUES("2157", "281", "1", "1.3", "Louise");
INSERT INTO `wp_rg_lead_detail` VALUES("2158", "281", "1", "1.6", "de Lugt");
INSERT INTO `wp_rg_lead_detail` VALUES("2159", "281", "1", "2", "ldelugt@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2160", "281", "1", "5", "(250) 382-7564");
INSERT INTO `wp_rg_lead_detail` VALUES("2161", "281", "1", "3", "Please pass this on ASAP: I want to stop seeing Amber Eves for counselling sessions effectively immediately. Thank you. Louise de Lugt\r\nP.S. Please let me know when Amber has received this information. She needs to get it before July 5.");
INSERT INTO `wp_rg_lead_detail` VALUES("2162", "282", "1", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("2163", "282", "1", "1.6", "Horgan");
INSERT INTO `wp_rg_lead_detail` VALUES("2164", "282", "1", "2", "s_horgan@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2165", "282", "1", "5", "(778) 587-7363");
INSERT INTO `wp_rg_lead_detail` VALUES("2166", "282", "1", "3", "Hi there, I\'m seeking counselling services for my anxiety and depression. I\'m new to Victoria, just moved from Courtenay in March. I had a regular doctor there that has diagnosed me with clinical depression. I have been on and off anti depressants, but aren\'t effective on their own. I\'ve seen counsellors in the past for a variety of issues, and am in need of someone to talk with again. Thanks very much");
INSERT INTO `wp_rg_lead_detail` VALUES("2167", "283", "12", "1.3", "Sandy");
INSERT INTO `wp_rg_lead_detail` VALUES("2168", "283", "12", "1.6", "Walker");
INSERT INTO `wp_rg_lead_detail` VALUES("2169", "283", "12", "3", "sandyandty@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2170", "283", "12", "4", "(250) 686-7676");
INSERT INTO `wp_rg_lead_detail` VALUES("2171", "283", "12", "5", "ebb and flow of life course");
INSERT INTO `wp_rg_lead_detail` VALUES("2172", "284", "12", "1.3", "Moira");
INSERT INTO `wp_rg_lead_detail` VALUES("2173", "284", "12", "1.6", "Madamombe");
INSERT INTO `wp_rg_lead_detail` VALUES("2174", "284", "12", "2.1", "1701 Norwood house rd");
INSERT INTO `wp_rg_lead_detail` VALUES("2175", "284", "12", "2.3", "Downingtown");
INSERT INTO `wp_rg_lead_detail` VALUES("2176", "284", "12", "2.4", "Pennsylvania");
INSERT INTO `wp_rg_lead_detail` VALUES("2177", "284", "12", "2.5", "19325");
INSERT INTO `wp_rg_lead_detail` VALUES("2178", "284", "12", "3", "moiramajachani@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2179", "284", "12", "4", "(250) 891-2618");
INSERT INTO `wp_rg_lead_detail` VALUES("2180", "284", "12", "5", "Moira Madamombe");
INSERT INTO `wp_rg_lead_detail` VALUES("2181", "285", "1", "1.3", "Angeline");
INSERT INTO `wp_rg_lead_detail` VALUES("2182", "285", "1", "1.6", "Wilde");
INSERT INTO `wp_rg_lead_detail` VALUES("2183", "285", "1", "2", "angiejwilde@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2184", "285", "1", "5", "(778) 433-2464");
INSERT INTO `wp_rg_lead_detail` VALUES("2185", "285", "1", "3", "Hi there,\r\nInquiring re: counselling services, availability and cost.\r\nWas recently released from hospital and was referred to your centre for issues related to post traumatic stress.\r\nI can be reached easiest via email, as the land-line is shared.\r\nMuch thanks!");
INSERT INTO `wp_rg_lead_detail` VALUES("2186", "286", "1", "1.3", "Christie");
INSERT INTO `wp_rg_lead_detail` VALUES("2187", "286", "1", "1.6", "Ross");
INSERT INTO `wp_rg_lead_detail` VALUES("2188", "286", "1", "2", "dance_88@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2189", "286", "1", "5", "(250) 619-2823");
INSERT INTO `wp_rg_lead_detail` VALUES("2190", "286", "1", "3", "Hi. I\'m just wanting to inquire about your counselling services and what that would look like to set something up. \r\n\r\nThank you,\r\n\r\nChristie");
INSERT INTO `wp_rg_lead_detail` VALUES("2191", "287", "1", "1.3", "Shannon");
INSERT INTO `wp_rg_lead_detail` VALUES("2192", "287", "1", "1.6", "Demontigny");
INSERT INTO `wp_rg_lead_detail` VALUES("2193", "287", "1", "2", "shannon.demontigny@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2194", "287", "1", "5", "(250) 509-1221");
INSERT INTO `wp_rg_lead_detail` VALUES("2195", "287", "1", "3", "Hello, my husband is yet to be diagnosed with depression and anxiety. He is beginning the process of seeing a doctor or antidepressants after struggling for more than 8 years. It is affecting our marriage more than ever now. I think it would best for he to see someone on his own first then eventually have couple counseling. Which counselor should he see. Please contact me so I can make an appointment, thank you so much.");
INSERT INTO `wp_rg_lead_detail` VALUES("2196", "288", "3", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("2197", "288", "3", "1.6", "Daviau");
INSERT INTO `wp_rg_lead_detail` VALUES("2198", "288", "3", "2", "pieceofcakecommunications@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2199", "288", "3", "3.1", "3542 Desmond Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("2200", "288", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2201", "288", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2202", "288", "3", "3.5", "V9C 3T1");
INSERT INTO `wp_rg_lead_detail` VALUES("2203", "288", "3", "4", "(250) 220-2036");
INSERT INTO `wp_rg_lead_detail` VALUES("2204", "288", "3", "7", "September/15/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2205", "288", "3", "5", "Ebb and Flow of Life");
INSERT INTO `wp_rg_lead_detail` VALUES("2207", "289", "3", "1.3", "Eliza");
INSERT INTO `wp_rg_lead_detail` VALUES("2208", "289", "3", "1.6", "Holst");
INSERT INTO `wp_rg_lead_detail` VALUES("2209", "289", "3", "2", "holsteliza@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2210", "289", "3", "3.1", "646 Galiano Crescent");
INSERT INTO `wp_rg_lead_detail` VALUES("2211", "289", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2212", "289", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2213", "289", "3", "3.5", "V9C 1E6");
INSERT INTO `wp_rg_lead_detail` VALUES("2214", "289", "3", "4", "(250) 478-5584");
INSERT INTO `wp_rg_lead_detail` VALUES("2215", "289", "3", "7", "September 15 (Thursday)");
INSERT INTO `wp_rg_lead_detail` VALUES("2216", "289", "3", "5", "The Ebb and Flow of Life: An Introduction to Grief and Loss");
INSERT INTO `wp_rg_lead_detail` VALUES("2218", "290", "2", "1.3", "Jamie");
INSERT INTO `wp_rg_lead_detail` VALUES("2219", "290", "2", "1.6", "Walden");
INSERT INTO `wp_rg_lead_detail` VALUES("2220", "290", "2", "2", "01jwalden@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2221", "290", "2", "6.2", "Newsletter, Courses and Training Programs");
INSERT INTO `wp_rg_lead_detail` VALUES("2222", "290", "2", "8", "North Saanich");
INSERT INTO `wp_rg_lead_detail` VALUES("2223", "291", "1", "1.3", "Cyril");
INSERT INTO `wp_rg_lead_detail` VALUES("2224", "291", "1", "1.6", "Lacko");
INSERT INTO `wp_rg_lead_detail` VALUES("2225", "291", "1", "2", "clacko099@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2226", "291", "1", "5", "(250) 508-6877");
INSERT INTO `wp_rg_lead_detail` VALUES("2227", "291", "1", "3", "I\'m on a fixed income and I\'m curious about what the costs would be.");
INSERT INTO `wp_rg_lead_detail` VALUES("2228", "292", "1", "1.3", "Catherine");
INSERT INTO `wp_rg_lead_detail` VALUES("2229", "292", "1", "1.6", "Klassen");
INSERT INTO `wp_rg_lead_detail` VALUES("2230", "292", "1", "2", "purpleplantagenet@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2231", "292", "1", "5", "(250) 479-7414");
INSERT INTO `wp_rg_lead_detail` VALUES("2232", "292", "1", "3", "Dear South Island Centre (Attn: Laurie Truant/ Counsellor):\r\n\r\nI am familiar with your volunteer counsellor driven agency in Victoria & wonder what counterpart (s) agencies/ services would be available in Montreal?\r\n\r\nMy mother Bev; deceased in 1980; was a parishioner of St. Lukes for many years & back when I went with her to church I was not aware of South Island Centre then  but have since been made aware of it.\r\n\r\nI had actually chatted with Bill Cole & others there about other issues a few years ago but am not sure if your counselling services have changed much/ would like to be brought up to date?.\r\n\r\nSince my daughter lives in Montreal your services would maybe not be practical unless you offer online or k\r\nlong distance chat/ phone services thus why I have asked for your advice/ blessing re: which counselling services(s) might be similar in Montreal?\r\n \r\nMy daughter (not a Christian but I am hoping one day) with limited funds lives there (still at present with her boyfriend of 5 years) but has begun mentioning openly to her Aunt, myself & others closer to her that things are troubled.\r\n \r\nI have just been told today that after she returned from a work related trip; which is common with her line of work; that her boyfriend has decided to move out in September.\r\n \r\nTherefore I thought instead of my reviewing web advertised agencies in Montreal without any advice; that  it would be more helpful if people at your agency could hopefullly give me any knowledge/ tips  \r\nabout the counselling scene there ie. (who fits a similar profile to yourselves/ which one/s have you heard good things about)?\r\n \r\nAlso any online resources that you might commonly refer clients to would be helpful to know as she could also access these?\r\n\r\n(My daughter is up against it as her boyfriend  \"at first blush\" has said he is not interested in working on things; so her knowing how to bring up this topic again in the least provocative/ most positive way would seem to be very important?).\r\n \r\nThankyou so much for getting back to me by internet or by letting me know a good time that I could phone & have a conversation with you?\r\n \r\nSincerely,\r\n \r\nCathy Klassen\r\npurpleplantagenet@shaw.ca \r\n(250)479-7414\r\n7/28/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2233", "293", "3", "1.3", "Babar");
INSERT INTO `wp_rg_lead_detail` VALUES("2234", "293", "3", "1.6", "Habib");
INSERT INTO `wp_rg_lead_detail` VALUES("2235", "293", "3", "2", "pastor.babarhabib@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2236", "293", "3", "3.1", "887/03 Essa Nagri Karachi-74800,Pakistan.");
INSERT INTO `wp_rg_lead_detail` VALUES("2237", "293", "3", "3.3", "Karachi");
INSERT INTO `wp_rg_lead_detail` VALUES("2238", "293", "3", "3.4", "Sindh");
INSERT INTO `wp_rg_lead_detail` VALUES("2239", "293", "3", "3.5", "74800");
INSERT INTO `wp_rg_lead_detail` VALUES("2240", "293", "3", "4", "(300) 285-1836");
INSERT INTO `wp_rg_lead_detail` VALUES("2241", "293", "3", "7", "(12 Thursdays, Oct 6, 2016 â€“ Jan. 12, 2017)");
INSERT INTO `wp_rg_lead_detail` VALUES("2242", "293", "3", "5", "Pastoral Counselling Training (12 Thursdays, Oct 6, 2016 â€“ Jan. 12, 2017)");
INSERT INTO `wp_rg_lead_detail` VALUES("2244", "294", "1", "1.3", "Susan");
INSERT INTO `wp_rg_lead_detail` VALUES("2245", "294", "1", "1.6", "Giles");
INSERT INTO `wp_rg_lead_detail` VALUES("2246", "294", "1", "2", "susan.giles@pinezone.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2247", "294", "1", "5", "(778) 977-1125");
INSERT INTO `wp_rg_lead_detail` VALUES("2248", "294", "1", "3", "I am inquiring on behalf of my son who turns 19 soon. Are any of your counsellors knowledgeable about Asperger\'s? We would like to talk to someone with SOME knowledge of the issue. I can usually be reached at 778-977-1125 on my cell during the day.\r\n\r\nThank You,\r\n\r\nSusan");
INSERT INTO `wp_rg_lead_detail` VALUES("2249", "295", "1", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("2250", "295", "1", "1.6", "Rosang");
INSERT INTO `wp_rg_lead_detail` VALUES("2251", "295", "1", "2", "jenrosang@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2252", "295", "1", "5", "(250) 544-0005");
INSERT INTO `wp_rg_lead_detail` VALUES("2253", "295", "1", "3", "Hello!\r\n\r\nI would like to enquire if any of the counsellors at South Island Centre take on practicum students?  \r\n\r\nThanks so much for your time,\r\n\r\nJen");
INSERT INTO `wp_rg_lead_detail` VALUES("2254", "296", "1", "1.3", "Alison");
INSERT INTO `wp_rg_lead_detail` VALUES("2255", "296", "1", "1.6", "Callaghan");
INSERT INTO `wp_rg_lead_detail` VALUES("2256", "296", "1", "2", "alcallaghan@hotmail.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2257", "296", "1", "5", "(778) 678-2405");
INSERT INTO `wp_rg_lead_detail` VALUES("2258", "296", "1", "3", "I\'m hoping to set up an initial consultation with an available Counselor. My focus is needed around childhood emotional abuse, BPD and destructive relationship patterns in adulthood. I am a student at UVIC looking for an affordable option. Please let me know if you have some spots available. Thank you");
INSERT INTO `wp_rg_lead_detail` VALUES("2259", "297", "3", "1.3", "Margaret");
INSERT INTO `wp_rg_lead_detail` VALUES("2260", "297", "3", "1.6", "Jacques");
INSERT INTO `wp_rg_lead_detail` VALUES("2261", "297", "3", "2", "mjacques@ssabc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2262", "297", "3", "3.1", "1550 Begbie Street");
INSERT INTO `wp_rg_lead_detail` VALUES("2263", "297", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2264", "297", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2265", "297", "3", "3.5", "V8R1K8");
INSERT INTO `wp_rg_lead_detail` VALUES("2266", "297", "3", "4", "(250) 589-4378");
INSERT INTO `wp_rg_lead_detail` VALUES("2267", "297", "3", "7", "August 20, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2268", "297", "3", "5", "Caring for the Caregiver");
INSERT INTO `wp_rg_lead_detail` VALUES("2270", "298", "1", "1.3", "Silas");
INSERT INTO `wp_rg_lead_detail` VALUES("2271", "298", "1", "1.6", "Rosenblatt");
INSERT INTO `wp_rg_lead_detail` VALUES("2272", "298", "1", "2", "silasmail@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2273", "298", "1", "5", "(250) 884-7061");
INSERT INTO `wp_rg_lead_detail` VALUES("2274", "298", "1", "3", "greetings\r\n\r\nI would like to set up an initial counselling appointment with Laurie Truant for counseling related to anxiety attacks and mid life change\r\n\r\nI am free most mornings\r\n\r\nthanks\r\nSilas");
INSERT INTO `wp_rg_lead_detail` VALUES("2275", "299", "1", "1.3", "Alexandra");
INSERT INTO `wp_rg_lead_detail` VALUES("2276", "299", "1", "1.6", "Shewan");
INSERT INTO `wp_rg_lead_detail` VALUES("2277", "299", "1", "2", "alexandra.shewan@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2278", "299", "1", "5", "(778) 678-8216");
INSERT INTO `wp_rg_lead_detail` VALUES("2279", "299", "1", "3", "I would like to learn more about your counselling services for anxiety. Please let me know at your earliest convenience.");
INSERT INTO `wp_rg_lead_detail` VALUES("2281", "300", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2282", "300", "10", "10", "19/09/01");
INSERT INTO `wp_rg_lead_detail` VALUES("2283", "300", "10", "4", "elliot.bigsby@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2284", "300", "10", "7", "(778) 679-7434");
INSERT INTO `wp_rg_lead_detail` VALUES("2285", "300", "10", "2", "Andrea Scott");
INSERT INTO `wp_rg_lead_detail` VALUES("2286", "300", "10", "3.1", "1466 Gladstone Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("2287", "300", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2288", "300", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2289", "300", "10", "3.5", "V8R1S3");
INSERT INTO `wp_rg_lead_detail` VALUES("2290", "300", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2291", "300", "10", "5", "andrea@islandnet.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2292", "300", "10", "6", "(250) 893-3348");
INSERT INTO `wp_rg_lead_detail` VALUES("2293", "300", "10", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("2294", "300", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2295", "300", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2296", "300", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("2297", "300", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2298", "300", "10", "17", "Sertraline 100mg");
INSERT INTO `wp_rg_lead_detail` VALUES("2299", "301", "1", "1.3", "Jamie");
INSERT INTO `wp_rg_lead_detail` VALUES("2300", "301", "1", "1.6", "Walden");
INSERT INTO `wp_rg_lead_detail` VALUES("2301", "301", "1", "2", "01jwalden@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2302", "301", "1", "5", "(250) 818-0433");
INSERT INTO `wp_rg_lead_detail` VALUES("2303", "301", "1", "3", "I would like to meet with Barbara Ballie to explore some counselling and support sessions.");
INSERT INTO `wp_rg_lead_detail` VALUES("2304", "302", "1", "1.3", "Tui");
INSERT INTO `wp_rg_lead_detail` VALUES("2305", "302", "1", "1.6", "Hartman");
INSERT INTO `wp_rg_lead_detail` VALUES("2306", "302", "1", "2", "tui.hartman@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2307", "302", "1", "5", "(289) 689-7877");
INSERT INTO `wp_rg_lead_detail` VALUES("2308", "302", "1", "3", "I currently live in Ontario, but I will be moving to BC in the winter. I would like to get therapy to deal with some issues. I think that I could be an interesting case study for someone. At any rate, I need to know how I could manage to set an appointment up with someone for when I get there. \r\n\r\nI would need a sliding scale fee. First I will be in school and looking for work. Once my financial situation is more stable I would be happy to adjust what I am paying. \r\n\r\nI have had success with cognitive behavioral therapy in the past.\r\nIssues I want to cover over time. \r\n- relationship issues (general, family and romantic) \r\n- social anxiety\r\n- emotional control\r\n- over eating \r\n-self hatred\r\n-  more\r\n\r\nI have already dealt with \r\n- sexual assault \r\n- loss (best friend suicide) \r\n- more positive outlook (cbt) \r\n- addiction\r\n- more\r\n \r\nThank you for your feedback. \r\n\r\nBest Regards, \r\nTui Hartman");
INSERT INTO `wp_rg_lead_detail` VALUES("2309", "303", "1", "1.3", "Jessica");
INSERT INTO `wp_rg_lead_detail` VALUES("2310", "303", "1", "1.6", "Pletzer");
INSERT INTO `wp_rg_lead_detail` VALUES("2311", "303", "1", "2", "Jmpletzer@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2312", "303", "1", "5", "(250) 216-4417");
INSERT INTO `wp_rg_lead_detail` VALUES("2313", "303", "1", "3", "Hi there,\r\nI\'m looking to making an appointment for my ex husband and I to attend counselling together. Our goal is to improve our relationship in order to be able to effectively co-parent our two young children.\r\nBoth of our children are in counselling with Amber Eves. Our situation is complex as I\'m sure most are. \r\nMy ex is a student and I am on disability income assistance. We have little to offer financially. We are very desperate to start counselling as soon as possible before things get worse. \r\n\r\nI am also looking for individual counselling for myself. I struggle with complex PTSD, depression, anxiety and addiction. If there is a counsellor experienced in these areas it would be perfect. \r\n\r\nThanks so much,\r\nJessica Pletzer");
INSERT INTO `wp_rg_lead_detail` VALUES("2315", "304", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2316", "304", "10", "10", "11/09/1999");
INSERT INTO `wp_rg_lead_detail` VALUES("2317", "304", "10", "4", "daniakhalifa@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2318", "304", "10", "7", "(250) 477-5785");
INSERT INTO `wp_rg_lead_detail` VALUES("2319", "304", "10", "2", "Grace Khalifa");
INSERT INTO `wp_rg_lead_detail` VALUES("2320", "304", "10", "3.1", "3969 Larchwood Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("2321", "304", "10", "3.3", "Victoria.");
INSERT INTO `wp_rg_lead_detail` VALUES("2322", "304", "10", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("2323", "304", "10", "3.5", "V8N 3P4");
INSERT INTO `wp_rg_lead_detail` VALUES("2324", "304", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2325", "304", "10", "5", "gracekhalifa@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2326", "304", "10", "6", "(250) 477-5785");
INSERT INTO `wp_rg_lead_detail` VALUES("2327", "304", "10", "8", "phone");
INSERT INTO `wp_rg_lead_detail` VALUES("2328", "304", "10", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("2329", "304", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2330", "304", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2331", "304", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("2332", "304", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2333", "304", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("2334", "304", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2335", "304", "10", "17", "sertraline 175mg\r\npropranolol 20mg");
INSERT INTO `wp_rg_lead_detail` VALUES("2337", "305", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2338", "305", "10", "10", "28/03/1999");
INSERT INTO `wp_rg_lead_detail` VALUES("2339", "305", "10", "4", "bakuiscute99@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2340", "305", "10", "7", "(778) 922-4216");
INSERT INTO `wp_rg_lead_detail` VALUES("2341", "305", "10", "2", "Linda Foster");
INSERT INTO `wp_rg_lead_detail` VALUES("2342", "305", "10", "3.1", "1415 Tovido Lane");
INSERT INTO `wp_rg_lead_detail` VALUES("2343", "305", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2344", "305", "10", "3.4", "bc");
INSERT INTO `wp_rg_lead_detail` VALUES("2345", "305", "10", "3.5", "V8T2S8");
INSERT INTO `wp_rg_lead_detail` VALUES("2346", "305", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2347", "305", "10", "5", "lfoster@sd63.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2348", "305", "10", "6", "(250) 382-1683");
INSERT INTO `wp_rg_lead_detail` VALUES("2349", "305", "10", "8", "Email");
INSERT INTO `wp_rg_lead_detail` VALUES("2350", "305", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("2351", "305", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2352", "305", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("2353", "305", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2354", "305", "10", "17", "None");
INSERT INTO `wp_rg_lead_detail` VALUES("2355", "306", "1", "1.3", "Linda");
INSERT INTO `wp_rg_lead_detail` VALUES("2356", "306", "1", "1.6", "Morrison");
INSERT INTO `wp_rg_lead_detail` VALUES("2357", "306", "1", "2", "IslandGirl778@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2358", "306", "1", "5", "(778) 679-7900");
INSERT INTO `wp_rg_lead_detail` VALUES("2359", "306", "1", "3", "I would like to speak to someone about counseling.  I left my job on June 3rd as a result of burn-out and am wondering if it is normal to feel a lack of motivation?\r\n\r\nAlso, do you direct bill to First Nations Health Authority?");
INSERT INTO `wp_rg_lead_detail` VALUES("2361", "307", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2362", "307", "10", "10", "14/06/2002");
INSERT INTO `wp_rg_lead_detail` VALUES("2363", "307", "10", "4", "Elihlefaith@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2364", "307", "10", "7", "(778) 440-6666");
INSERT INTO `wp_rg_lead_detail` VALUES("2365", "307", "10", "2", "Luanna Larusson");
INSERT INTO `wp_rg_lead_detail` VALUES("2366", "307", "10", "3.1", "#210-1020 Park Blvd");
INSERT INTO `wp_rg_lead_detail` VALUES("2367", "307", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2368", "307", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("2369", "307", "10", "3.5", "V8V 2T4");
INSERT INTO `wp_rg_lead_detail` VALUES("2370", "307", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2371", "307", "10", "5", "mamazala@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2372", "307", "10", "6", "(778) 440-6666");
INSERT INTO `wp_rg_lead_detail` VALUES("2373", "307", "10", "8", "Email.");
INSERT INTO `wp_rg_lead_detail` VALUES("2374", "307", "10", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("2375", "307", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2376", "307", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2377", "307", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("2378", "307", "10", "17", "No.");
INSERT INTO `wp_rg_lead_detail` VALUES("2380", "308", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("2381", "308", "10", "10", "27 March 2001");
INSERT INTO `wp_rg_lead_detail` VALUES("2382", "308", "10", "4", "Sadokha.david@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2383", "308", "10", "7", "(250) 891-4207");
INSERT INTO `wp_rg_lead_detail` VALUES("2384", "308", "10", "2", "Mila");
INSERT INTO `wp_rg_lead_detail` VALUES("2385", "308", "10", "3.1", "9-0421 Saanich Road");
INSERT INTO `wp_rg_lead_detail` VALUES("2386", "308", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2387", "308", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("2388", "308", "10", "3.5", "V8X1Z2");
INSERT INTO `wp_rg_lead_detail` VALUES("2389", "308", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2390", "308", "10", "5", "Mila.sadokha@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2391", "308", "10", "6", "(250) 891-4207");
INSERT INTO `wp_rg_lead_detail` VALUES("2392", "308", "10", "8", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2393", "308", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("2394", "308", "10", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("2395", "308", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2396", "308", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("2397", "308", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("2398", "308", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2399", "308", "10", "17", "Sertralin, bifidin");
INSERT INTO `wp_rg_lead_detail` VALUES("2401", "309", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2402", "309", "10", "10", "March 8th, 2002");
INSERT INTO `wp_rg_lead_detail` VALUES("2403", "309", "10", "4", "tayloratoz@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2404", "309", "10", "7", "(250) 370-0053");
INSERT INTO `wp_rg_lead_detail` VALUES("2405", "309", "10", "2", "Andrea and Jason Taylor");
INSERT INTO `wp_rg_lead_detail` VALUES("2406", "309", "10", "3.1", "435 Woodcrest Place");
INSERT INTO `wp_rg_lead_detail` VALUES("2407", "309", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2408", "309", "10", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("2409", "309", "10", "3.5", "V8N 2C2");
INSERT INTO `wp_rg_lead_detail` VALUES("2410", "309", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2411", "309", "10", "5", "andreatayloratoz@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2412", "309", "10", "6", "(778) 679-1313");
INSERT INTO `wp_rg_lead_detail` VALUES("2413", "309", "10", "8", "Can you call parents first using Mom\'s cell Number 778-679-1313. Thank you :)");
INSERT INTO `wp_rg_lead_detail` VALUES("2414", "309", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("2415", "309", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2416", "309", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2417", "309", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("2418", "309", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("2419", "309", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2420", "309", "10", "17", "Strattera 80 mg\r\nIn the process to change anxiety medication on the 14th of September");
INSERT INTO `wp_rg_lead_detail` VALUES("2421", "310", "3", "1.3", "Gabriela");
INSERT INTO `wp_rg_lead_detail` VALUES("2422", "310", "3", "1.6", "Townsend");
INSERT INTO `wp_rg_lead_detail` VALUES("2423", "310", "3", "2", "gtownsend@alzheimerbc.org");
INSERT INTO `wp_rg_lead_detail` VALUES("2424", "310", "3", "3.1", "202-306 Burnside Road W.");
INSERT INTO `wp_rg_lead_detail` VALUES("2425", "310", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2426", "310", "3", "3.4", "bc");
INSERT INTO `wp_rg_lead_detail` VALUES("2427", "310", "3", "3.5", "V8Z 1M1");
INSERT INTO `wp_rg_lead_detail` VALUES("2428", "310", "3", "4", "(250) 896-8577");
INSERT INTO `wp_rg_lead_detail` VALUES("2429", "310", "3", "7", "Sept 15");
INSERT INTO `wp_rg_lead_detail` VALUES("2430", "310", "3", "5", "Ebb and Flow of Life");
INSERT INTO `wp_rg_lead_detail` VALUES("2433", "311", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("2434", "311", "10", "10", "04/01/2000");
INSERT INTO `wp_rg_lead_detail` VALUES("2435", "311", "10", "4", "joe-mayer@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2436", "311", "10", "7", "(250) 580-2095");
INSERT INTO `wp_rg_lead_detail` VALUES("2437", "311", "10", "2", "Jennifer Mayer");
INSERT INTO `wp_rg_lead_detail` VALUES("2438", "311", "10", "3.1", "4939 Wesley Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("2439", "311", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2440", "311", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("2441", "311", "10", "3.5", "V8Y 1Y8");
INSERT INTO `wp_rg_lead_detail` VALUES("2442", "311", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2443", "311", "10", "5", "mayerzoo@me.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2444", "311", "10", "6", "(250) 580-2108");
INSERT INTO `wp_rg_lead_detail` VALUES("2445", "311", "10", "8", "email preferred, but phone or text is great too");
INSERT INTO `wp_rg_lead_detail` VALUES("2446", "311", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("2447", "311", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2448", "311", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("2449", "311", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2450", "311", "10", "17", "None");
INSERT INTO `wp_rg_lead_detail` VALUES("2451", "312", "1", "1.3", "Kent");
INSERT INTO `wp_rg_lead_detail` VALUES("2452", "312", "1", "1.6", "Watts");
INSERT INTO `wp_rg_lead_detail` VALUES("2453", "312", "1", "2", "kentgwatts@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2454", "312", "1", "5", "(250) 889-1516");
INSERT INTO `wp_rg_lead_detail` VALUES("2455", "312", "1", "3", "I am father ( age 68 )interested in counselling to address challenges in my relationship with \r\nmy daughter ( age 24) who has been diagnosed with PTSD. \r\nPlease refer me to one of your staff who is trained and experienced to offer guidance in this area. \r\nThank you.");
INSERT INTO `wp_rg_lead_detail` VALUES("2457", "313", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2458", "313", "10", "10", "1/11/2002");
INSERT INTO `wp_rg_lead_detail` VALUES("2459", "313", "10", "4", "c.alexander@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("2460", "313", "10", "7", "(250) 893-1856");
INSERT INTO `wp_rg_lead_detail` VALUES("2461", "313", "10", "2", "Christina alexander");
INSERT INTO `wp_rg_lead_detail` VALUES("2462", "313", "10", "3.1", "1760 Taylor street");
INSERT INTO `wp_rg_lead_detail` VALUES("2463", "313", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2464", "313", "10", "3.4", "Bc");
INSERT INTO `wp_rg_lead_detail` VALUES("2465", "313", "10", "3.5", "V8r 3e9");
INSERT INTO `wp_rg_lead_detail` VALUES("2466", "313", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2467", "313", "10", "5", "c.alexander@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("2468", "313", "10", "6", "(250) 893-1856");
INSERT INTO `wp_rg_lead_detail` VALUES("2469", "313", "10", "8", "Cell phone or email");
INSERT INTO `wp_rg_lead_detail` VALUES("2470", "313", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("2471", "313", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2472", "313", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2473", "313", "10", "17", "Melatonin 10 mg, rescue medicine");
INSERT INTO `wp_rg_lead_detail` VALUES("2476", "314", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2477", "314", "10", "10", "24/06/2000");
INSERT INTO `wp_rg_lead_detail` VALUES("2478", "314", "10", "4", "quarians69@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2479", "314", "10", "7", "(250) 507-7460");
INSERT INTO `wp_rg_lead_detail` VALUES("2480", "314", "10", "2", "Julia Stolk");
INSERT INTO `wp_rg_lead_detail` VALUES("2481", "314", "10", "3.1", "2494 Windsor Road");
INSERT INTO `wp_rg_lead_detail` VALUES("2482", "314", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2483", "314", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2484", "314", "10", "3.5", "V8S 3E8");
INSERT INTO `wp_rg_lead_detail` VALUES("2485", "314", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2486", "314", "10", "5", "juliastolk@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2487", "314", "10", "6", "(250) 589-7379");
INSERT INTO `wp_rg_lead_detail` VALUES("2488", "314", "10", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("2489", "314", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("2490", "314", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("2491", "314", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("2492", "314", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2493", "314", "10", "17", "Sertraline 100 mg daily");
INSERT INTO `wp_rg_lead_detail` VALUES("2494", "315", "13", "1.3", "Laura");
INSERT INTO `wp_rg_lead_detail` VALUES("2495", "315", "13", "1.6", "Dey");
INSERT INTO `wp_rg_lead_detail` VALUES("2496", "315", "13", "2", "lauradey18@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2497", "315", "13", "3.1", "671 Country Club Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("2498", "315", "13", "3.3", "Cobble Hill");
INSERT INTO `wp_rg_lead_detail` VALUES("2499", "315", "13", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2500", "315", "13", "3.5", "V0R 1L1");
INSERT INTO `wp_rg_lead_detail` VALUES("2501", "315", "13", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2502", "315", "13", "4", "(250) 929-8591");
INSERT INTO `wp_rg_lead_detail` VALUES("2503", "315", "13", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2504", "315", "13", "6", "St. John\'s South Cowichan");
INSERT INTO `wp_rg_lead_detail` VALUES("2505", "315", "13", "7.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2506", "315", "13", "8", "October 22, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2507", "315", "13", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("2508", "315", "13", "13", "shellfish, hazelnuts, brazilnuts, walnuts and pecans, pork, msg, strawberries, blueberries, mangoes, salmon, halibut and soybeans");
INSERT INTO `wp_rg_lead_detail` VALUES("2509", "315", "13", "11.3", "credit card (surcharges apply)");
INSERT INTO `wp_rg_lead_detail` VALUES("2510", "316", "1", "1.3", "Ellie");
INSERT INTO `wp_rg_lead_detail` VALUES("2511", "316", "1", "1.6", "Koski");
INSERT INTO `wp_rg_lead_detail` VALUES("2512", "316", "1", "2", "elliek1111@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2513", "316", "1", "5", "(250) 813-0254");
INSERT INTO `wp_rg_lead_detail` VALUES("2514", "316", "1", "3", "I\'m in need of counselling on a sliding fee scale as I don\'t have very much money but I am in desperate need of talking to someone. Please let me know wat I do next in order to see someone here. Thank you so much.\r\n\r\nEllie");
INSERT INTO `wp_rg_lead_detail` VALUES("2515", "317", "3", "1.3", "Moira");
INSERT INTO `wp_rg_lead_detail` VALUES("2516", "317", "3", "1.6", "Madamombe");
INSERT INTO `wp_rg_lead_detail` VALUES("2517", "317", "3", "2", "moiramajachani@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2518", "317", "3", "3.1", "302S-737 Humboldt st,");
INSERT INTO `wp_rg_lead_detail` VALUES("2519", "317", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2520", "317", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2521", "317", "3", "3.5", "V8w1b1");
INSERT INTO `wp_rg_lead_detail` VALUES("2522", "317", "3", "4", "(250) 891-2618");
INSERT INTO `wp_rg_lead_detail` VALUES("2523", "317", "3", "7", "october 6, 2012");
INSERT INTO `wp_rg_lead_detail` VALUES("2524", "317", "3", "5", "Pastoral counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("2526", "318", "1", "1.3", "Coraline");
INSERT INTO `wp_rg_lead_detail` VALUES("2527", "318", "1", "1.6", "Thomas");
INSERT INTO `wp_rg_lead_detail` VALUES("2528", "318", "1", "2", "corythomas.home@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2529", "318", "1", "5", "(250) 857-9538");
INSERT INTO `wp_rg_lead_detail` VALUES("2530", "318", "1", "3", "Hi,\r\n\r\nMy name is Coraline Thomas, I have an appt with Amber on Friday the sixteenth at one pm. \r\nTwo things, I am mute and can\'t call in to cancel/change my appt, and my school schedule is in conflict with my appt which is well and fully my fault. Can you contact me via email so we can discuss this? I really don\'t have any other options.\r\n\r\nRegards,\r\nCora");
INSERT INTO `wp_rg_lead_detail` VALUES("2532", "319", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2533", "319", "10", "10", "05/04/1999");
INSERT INTO `wp_rg_lead_detail` VALUES("2534", "319", "10", "4", "erintomlinson22@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2535", "319", "10", "7", "(250) 217-0136");
INSERT INTO `wp_rg_lead_detail` VALUES("2536", "319", "10", "2", "Sherri Water Chief");
INSERT INTO `wp_rg_lead_detail` VALUES("2537", "319", "10", "3.1", "3205 Kenya Place");
INSERT INTO `wp_rg_lead_detail` VALUES("2538", "319", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2539", "319", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2540", "319", "10", "3.5", "V8P 3T9");
INSERT INTO `wp_rg_lead_detail` VALUES("2541", "319", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2542", "319", "10", "5", "swaterchief@clvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2543", "319", "10", "6", "(250) 508-9283");
INSERT INTO `wp_rg_lead_detail` VALUES("2544", "319", "10", "8", "e-mail or text");
INSERT INTO `wp_rg_lead_detail` VALUES("2545", "319", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("2546", "319", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2547", "319", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2548", "319", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2549", "319", "10", "17", "Yes. Trazodone and Sertraline (she can provide you with the dosages).");
INSERT INTO `wp_rg_lead_detail` VALUES("2551", "320", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2552", "320", "10", "10", "25/08/2001");
INSERT INTO `wp_rg_lead_detail` VALUES("2553", "320", "10", "4", "Jenllitwin@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2554", "320", "10", "7", "(778) 977-2674");
INSERT INTO `wp_rg_lead_detail` VALUES("2555", "320", "10", "2", "Cori Luchuck");
INSERT INTO `wp_rg_lead_detail` VALUES("2556", "320", "10", "3.1", "4054 knibbs green");
INSERT INTO `wp_rg_lead_detail` VALUES("2557", "320", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2558", "320", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2559", "320", "10", "3.5", "V8z 6y7");
INSERT INTO `wp_rg_lead_detail` VALUES("2560", "320", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2561", "320", "10", "5", "Toosassy99@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2562", "320", "10", "6", "(778) 977-2674");
INSERT INTO `wp_rg_lead_detail` VALUES("2563", "320", "10", "8", "Call or email");
INSERT INTO `wp_rg_lead_detail` VALUES("2564", "320", "10", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("2565", "320", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2566", "320", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2567", "320", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("2568", "320", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2569", "320", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("2570", "320", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2571", "320", "10", "17", "Fluvoxitine Trazadone");
INSERT INTO `wp_rg_lead_detail` VALUES("2573", "321", "1", "1.3", "Jennie");
INSERT INTO `wp_rg_lead_detail` VALUES("2574", "321", "1", "1.6", "Carleton");
INSERT INTO `wp_rg_lead_detail` VALUES("2575", "321", "1", "2", "jenniecarleton@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2576", "321", "1", "5", "(250) 588-2018");
INSERT INTO `wp_rg_lead_detail` VALUES("2577", "321", "1", "3", "Hello,\r\n\r\nI would like to inquire about sliding-scale counselling. Thank you in advance for your assistance. My phone number is 250-588-2018.\r\n\r\nKind regards,\r\n\r\nJennie Carleton");
INSERT INTO `wp_rg_lead_detail` VALUES("2578", "322", "1", "1.3", "Amanda");
INSERT INTO `wp_rg_lead_detail` VALUES("2579", "322", "1", "1.6", "Moulton");
INSERT INTO `wp_rg_lead_detail` VALUES("2580", "322", "1", "2", "ammoulton12@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2581", "322", "1", "5", "(250) 417-9482");
INSERT INTO `wp_rg_lead_detail` VALUES("2582", "322", "1", "3", "Good Afternoon, \r\n\r\nMy name is Amanda Moulton and I\'m a Canadian Certified Counsellor, specializing in child, youth, and family therapy, who is currently looking to offer my counselling services in either an employment or volunteer capacity. If this is something that would be possible, I could send you my resume and portfolio or could pop by your centre in-person to drop off my resume and portfolio. \r\n\r\nThank you for your time and consideration, \r\n\r\n\r\nAmanda");
INSERT INTO `wp_rg_lead_detail` VALUES("2583", "323", "1", "1.3", "Selenne");
INSERT INTO `wp_rg_lead_detail` VALUES("2584", "323", "1", "1.6", "hough");
INSERT INTO `wp_rg_lead_detail` VALUES("2585", "323", "1", "2", "selennehough@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2586", "323", "1", "5", "(778) 677-0539");
INSERT INTO `wp_rg_lead_detail` VALUES("2587", "323", "1", "3", "Hi, \r\n\r\nI am looking for family counseling sessions and one-one sessions as well.  We are struggling with family anxiety and tension right now . anger and depression. Family separation too.  I am dealing with stress and anxiety anyways without these \"new\" family issues. I guess family counselling is long overdue. ..Thank you! I look forward to hearing from you. there is 5 of us.\r\n\r\nSelenne");
INSERT INTO `wp_rg_lead_detail` VALUES("2588", "324", "1", "1.3", "Lucy");
INSERT INTO `wp_rg_lead_detail` VALUES("2589", "324", "1", "1.6", "Teo");
INSERT INTO `wp_rg_lead_detail` VALUES("2590", "324", "1", "2", "swteo@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2591", "324", "1", "5", "(250) 472-8045");
INSERT INTO `wp_rg_lead_detail` VALUES("2592", "324", "1", "3", "I would like to know more about your counseling services. I am struggling with managing my teenage daughter. Please call me after 5 pm or email if it is not convenient. Thanks.");
INSERT INTO `wp_rg_lead_detail` VALUES("2593", "325", "1", "1.3", "Irmgard");
INSERT INTO `wp_rg_lead_detail` VALUES("2594", "325", "1", "1.6", "Koloska");
INSERT INTO `wp_rg_lead_detail` VALUES("2595", "325", "1", "2", "ikoloska@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2596", "325", "1", "5", "(250) 592-3392");
INSERT INTO `wp_rg_lead_detail` VALUES("2597", "325", "1", "3", "I am looking for some help with overcoming grief and feelings of betrayal and of being overwhelmed as a result of my marriage break up, which took place 3 years ago (marriage of 23 years.) I feel that I should be farther along in the process than I am. I am interested in counselling/therapy with a christian component.\r\nI am a part-time teacher, so have some insurance coverage for psychologists, but not for counsellors. My availability is Tuesdays and Thursdays during the day. Thank you.");
INSERT INTO `wp_rg_lead_detail` VALUES("2598", "326", "13", "1.3", "Kathie");
INSERT INTO `wp_rg_lead_detail` VALUES("2599", "326", "13", "1.6", "Fielding");
INSERT INTO `wp_rg_lead_detail` VALUES("2600", "326", "13", "2", "kathiefielding@duncanunited.org");
INSERT INTO `wp_rg_lead_detail` VALUES("2601", "326", "13", "3.1", "PO Box 261");
INSERT INTO `wp_rg_lead_detail` VALUES("2602", "326", "13", "3.2", "17 Elk Road");
INSERT INTO `wp_rg_lead_detail` VALUES("2603", "326", "13", "3.3", "Lake Cowichan");
INSERT INTO `wp_rg_lead_detail` VALUES("2604", "326", "13", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2605", "326", "13", "3.5", "V0R 2G0");
INSERT INTO `wp_rg_lead_detail` VALUES("2606", "326", "13", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2607", "326", "13", "4", "(250) 746-6043");
INSERT INTO `wp_rg_lead_detail` VALUES("2608", "326", "13", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2609", "326", "13", "6", "Duncan United, 246 Ingram Street, Duncan, BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2610", "326", "13", "7.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("2611", "326", "13", "8", "October 22, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2612", "326", "13", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_rg_lead_detail` VALUES("2613", "326", "13", "13", "gluten free");
INSERT INTO `wp_rg_lead_detail` VALUES("2614", "326", "13", "10", "unknown at this time");
INSERT INTO `wp_rg_lead_detail` VALUES("2615", "326", "13", "11.2", "cheque (mail or drop off)");
INSERT INTO `wp_rg_lead_detail` VALUES("2616", "327", "1", "1.3", "Doug");
INSERT INTO `wp_rg_lead_detail` VALUES("2617", "327", "1", "1.6", "Vaughan");
INSERT INTO `wp_rg_lead_detail` VALUES("2618", "327", "1", "2", "tlvaughan56@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2619", "327", "1", "5", "(403) 835-4465");
INSERT INTO `wp_rg_lead_detail` VALUES("2620", "328", "1", "1.3", "Doug");
INSERT INTO `wp_rg_lead_detail` VALUES("2621", "328", "1", "1.6", "Vaughan");
INSERT INTO `wp_rg_lead_detail` VALUES("2622", "328", "1", "2", "tlvaughan56@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2623", "328", "1", "5", "(403) 835-4465");
INSERT INTO `wp_rg_lead_detail` VALUES("2624", "328", "1", "3", "I am interested in booking an appointment with a counsellor, hopefully as soon as next week. \r\n\r\nThanks.");
INSERT INTO `wp_rg_lead_detail` VALUES("2625", "329", "13", "1.3", "Tricia");
INSERT INTO `wp_rg_lead_detail` VALUES("2626", "329", "13", "1.6", "DatenÃ©");
INSERT INTO `wp_rg_lead_detail` VALUES("2627", "329", "13", "2", "tricia.datene@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2628", "329", "13", "3.1", "6231 Selkirk Terrace");
INSERT INTO `wp_rg_lead_detail` VALUES("2629", "329", "13", "3.3", "Duncan");
INSERT INTO `wp_rg_lead_detail` VALUES("2630", "329", "13", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2631", "329", "13", "3.5", "V9L0A6");
INSERT INTO `wp_rg_lead_detail` VALUES("2632", "329", "13", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2633", "329", "13", "4", "(250) 746-6377");
INSERT INTO `wp_rg_lead_detail` VALUES("2634", "329", "13", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2635", "329", "13", "6", "St. Peter Quamichan, (Anglican), Duncan, BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2636", "329", "13", "7.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2637", "329", "13", "8", "Oct. 22, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2638", "329", "13", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_rg_lead_detail` VALUES("2639", "329", "13", "13", "N/A");
INSERT INTO `wp_rg_lead_detail` VALUES("2640", "329", "13", "11.2", "cheque (mail or drop off)");
INSERT INTO `wp_rg_lead_detail` VALUES("2641", "330", "3", "1.3", "Emilie");
INSERT INTO `wp_rg_lead_detail` VALUES("2642", "330", "3", "1.6", "Morris-Campeau");
INSERT INTO `wp_rg_lead_detail` VALUES("2643", "330", "3", "2", "emcampeau344@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2644", "330", "3", "3.1", "425-2885 jacklin rd");
INSERT INTO `wp_rg_lead_detail` VALUES("2645", "330", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2646", "330", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2647", "330", "3", "3.5", "V9b3y3");
INSERT INTO `wp_rg_lead_detail` VALUES("2648", "330", "3", "4", "(250) 508-6473");
INSERT INTO `wp_rg_lead_detail` VALUES("2649", "330", "3", "7", "Nov 8 start");
INSERT INTO `wp_rg_lead_detail` VALUES("2650", "330", "3", "5", "Strengthening self");
INSERT INTO `wp_rg_lead_detail` VALUES("2653", "331", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2654", "331", "10", "10", "08/04/2002");
INSERT INTO `wp_rg_lead_detail` VALUES("2655", "331", "10", "4", "Eileen.beauvais@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2656", "331", "10", "7", "(250) 514-1079");
INSERT INTO `wp_rg_lead_detail` VALUES("2657", "331", "10", "2", "Eileen Beauvais");
INSERT INTO `wp_rg_lead_detail` VALUES("2658", "331", "10", "3.1", "1318 Treebank Road West");
INSERT INTO `wp_rg_lead_detail` VALUES("2659", "331", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2660", "331", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("2661", "331", "10", "3.5", "V9A 7G1");
INSERT INTO `wp_rg_lead_detail` VALUES("2662", "331", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2663", "331", "10", "5", "Eileen.beauvais@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2664", "331", "10", "6", "(250) 514-1079");
INSERT INTO `wp_rg_lead_detail` VALUES("2665", "331", "10", "8", "Phone");
INSERT INTO `wp_rg_lead_detail` VALUES("2666", "331", "10", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("2667", "331", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2668", "331", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("2669", "331", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2670", "331", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2671", "332", "13", "1.3", "Marilyn");
INSERT INTO `wp_rg_lead_detail` VALUES("2672", "332", "13", "1.6", "Klizs");
INSERT INTO `wp_rg_lead_detail` VALUES("2673", "332", "13", "2", "mklizs@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2674", "332", "13", "3.1", "301-275 First Street");
INSERT INTO `wp_rg_lead_detail` VALUES("2675", "332", "13", "3.3", "Duncan");
INSERT INTO `wp_rg_lead_detail` VALUES("2676", "332", "13", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("2677", "332", "13", "3.5", "V9L 1R3");
INSERT INTO `wp_rg_lead_detail` VALUES("2678", "332", "13", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2679", "332", "13", "4", "(250) 748-4534");
INSERT INTO `wp_rg_lead_detail` VALUES("2680", "332", "13", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2681", "332", "13", "6", "St. Edward the Confessor Roman Catholic Church, Duncan, BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2682", "332", "13", "7.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("2683", "332", "13", "8", "10/22/2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2684", "332", "13", "9.2", "Advanced (attended a basic PCTT workshop or have relevant experience)");
INSERT INTO `wp_rg_lead_detail` VALUES("2685", "332", "13", "11.2", "cheque (mail or drop off)");
INSERT INTO `wp_rg_lead_detail` VALUES("2686", "333", "1", "1.3", "Sean");
INSERT INTO `wp_rg_lead_detail` VALUES("2687", "333", "1", "1.6", "Doe");
INSERT INTO `wp_rg_lead_detail` VALUES("2688", "333", "1", "2", "s_doe@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2689", "333", "1", "5", "(250) 902-8368");
INSERT INTO `wp_rg_lead_detail` VALUES("2690", "333", "1", "3", "I would like to set up an initial appointment for counselling please.");
INSERT INTO `wp_rg_lead_detail` VALUES("2691", "334", "1", "1.3", "Lana");
INSERT INTO `wp_rg_lead_detail` VALUES("2692", "334", "1", "1.6", "Millott");
INSERT INTO `wp_rg_lead_detail` VALUES("2693", "334", "1", "2", "lmillott@beaconcs.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2694", "334", "1", "5", "(778) 433-8280");
INSERT INTO `wp_rg_lead_detail` VALUES("2695", "334", "1", "3", "Hi,\r\nI facilitate a program called Springboard to Success for at-risk youth for Beacon Community Services. I am looking for someone to come in and give a talk on mental health and addictions to my group of twelve participants. Can you please get back to me if this is something that you think you can help me out with. If not and you know someone who could please let me know. Thanks, Lana");
INSERT INTO `wp_rg_lead_detail` VALUES("2696", "335", "1", "1.3", "Melanie");
INSERT INTO `wp_rg_lead_detail` VALUES("2697", "335", "1", "1.6", "Abela");
INSERT INTO `wp_rg_lead_detail` VALUES("2698", "335", "1", "2", "Melanieabela@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2699", "335", "1", "5", "(250) 228-2122");
INSERT INTO `wp_rg_lead_detail` VALUES("2700", "335", "1", "3", "Hi, \r\nI am interested in spiritual direction sessions. I am hearing impaired and would prefer a text message by cell phone or an email for communication.\r\n   Could you tell me the price of Spiritual Direction sessions?\r\nThank you, Melanie Abela, melanieabela@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2701", "336", "13", "1.3", "Trish");
INSERT INTO `wp_rg_lead_detail` VALUES("2702", "336", "13", "1.6", "Holland");
INSERT INTO `wp_rg_lead_detail` VALUES("2703", "336", "13", "2", "info@stjohnscobblehill.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2704", "336", "13", "3.1", "3295 Cobble Hill Road");
INSERT INTO `wp_rg_lead_detail` VALUES("2705", "336", "13", "3.3", "Cobble Hill");
INSERT INTO `wp_rg_lead_detail` VALUES("2706", "336", "13", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2707", "336", "13", "3.5", "V0R 1L6");
INSERT INTO `wp_rg_lead_detail` VALUES("2708", "336", "13", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2709", "336", "13", "4", "(250) 743-3095");
INSERT INTO `wp_rg_lead_detail` VALUES("2710", "336", "13", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2711", "336", "13", "6", "St. John\'s Anglican Church \r\n3295 Cobble Hill Road\r\nCobble Hill BC\r\nV0R 1L6");
INSERT INTO `wp_rg_lead_detail` VALUES("2712", "336", "13", "7.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2713", "336", "13", "8", "October 22, 2016");
INSERT INTO `wp_rg_lead_detail` VALUES("2714", "336", "13", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("2715", "336", "13", "13", "No.");
INSERT INTO `wp_rg_lead_detail` VALUES("2716", "336", "13", "10", "Bonnie-Jean Loewen - Basic");
INSERT INTO `wp_rg_lead_detail` VALUES("2717", "336", "13", "11.2", "cheque (mail or drop off)");
INSERT INTO `wp_rg_lead_detail` VALUES("2718", "337", "1", "1.3", "Justine");
INSERT INTO `wp_rg_lead_detail` VALUES("2719", "337", "1", "1.6", "Fitzsimmons");
INSERT INTO `wp_rg_lead_detail` VALUES("2720", "337", "1", "2", "Justine@shelbournecommunitykitchen.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2721", "337", "1", "5", "(250) 590-0980");
INSERT INTO `wp_rg_lead_detail` VALUES("2722", "337", "1", "3", "Hi there,\r\n\r\nDo you have any brochures available? If so, what is the best way to obtain them? We would love to have some information available in our main room for people coming in.\r\n\r\nThank you,\r\n\r\nJustine");
INSERT INTO `wp_rg_lead_detail` VALUES("2723", "338", "1", "1.3", "Lanza");
INSERT INTO `wp_rg_lead_detail` VALUES("2724", "338", "1", "1.6", "Norris-jones");
INSERT INTO `wp_rg_lead_detail` VALUES("2725", "338", "1", "2", "Lanzanojo@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2726", "338", "1", "5", "(250) 882-9417");
INSERT INTO `wp_rg_lead_detail` VALUES("2727", "338", "1", "3", "My husband and I are newly married and have a 19 month old daughter. I got referred to you by my public health nurse. We are looking for some counselling support. Thanks");
INSERT INTO `wp_rg_lead_detail` VALUES("2728", "339", "1", "1.3", "Joanna");
INSERT INTO `wp_rg_lead_detail` VALUES("2729", "339", "1", "1.6", "Gower");
INSERT INTO `wp_rg_lead_detail` VALUES("2730", "339", "1", "2", "joanna.k.gower@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2731", "339", "1", "5", "(250) 888-1424");
INSERT INTO `wp_rg_lead_detail` VALUES("2732", "339", "1", "3", "Hello,\r\nI would like to set up a first appointment with your councilling centre. I am interested in talking to someone about issues with depression and relationships \r\n\r\nJoanna");
INSERT INTO `wp_rg_lead_detail` VALUES("2733", "340", "1", "1.3", "Els");
INSERT INTO `wp_rg_lead_detail` VALUES("2734", "340", "1", "1.6", "van Strien");
INSERT INTO `wp_rg_lead_detail` VALUES("2735", "340", "1", "2", "elsvanstrien@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2736", "340", "1", "5", "(250) 475-0016");
INSERT INTO `wp_rg_lead_detail` VALUES("2737", "340", "1", "3", "Hi  I would like to set up an initial appointment with your counselling supervisor to discuss counselling options for me.  Thank you.  Els van Strien");
INSERT INTO `wp_rg_lead_detail` VALUES("2739", "341", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("2740", "341", "10", "10", "16/02/2003");
INSERT INTO `wp_rg_lead_detail` VALUES("2741", "341", "10", "4", "saxdudette@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2742", "341", "10", "7", "(250) 857-8685");
INSERT INTO `wp_rg_lead_detail` VALUES("2743", "341", "10", "2", "Kelly Dahmer");
INSERT INTO `wp_rg_lead_detail` VALUES("2744", "341", "10", "3.1", "7048 Wright Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("2745", "341", "10", "3.3", "Sooke");
INSERT INTO `wp_rg_lead_detail` VALUES("2746", "341", "10", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2747", "341", "10", "3.5", "V9Z 1M5");
INSERT INTO `wp_rg_lead_detail` VALUES("2748", "341", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2749", "341", "10", "5", "kelly.dahmer@starware.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2750", "341", "10", "6", "(250) 642-7255");
INSERT INTO `wp_rg_lead_detail` VALUES("2751", "341", "10", "8", "phone");
INSERT INTO `wp_rg_lead_detail` VALUES("2752", "341", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("2753", "341", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("2754", "341", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("2755", "341", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("2756", "341", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("2757", "341", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2758", "342", "1", "1.3", "cassie");
INSERT INTO `wp_rg_lead_detail` VALUES("2759", "342", "1", "1.6", "lehna");
INSERT INTO `wp_rg_lead_detail` VALUES("2760", "342", "1", "2", "cutecassy@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2761", "342", "1", "5", "(250) 532-7637");
INSERT INTO `wp_rg_lead_detail` VALUES("2762", "342", "1", "3", "I would like to book an initial appointment with your counselling supervisor..  I have anxiety and depression.");
INSERT INTO `wp_rg_lead_detail` VALUES("2763", "343", "1", "1.3", "Chelsea");
INSERT INTO `wp_rg_lead_detail` VALUES("2764", "343", "1", "1.6", "Dymonds");
INSERT INTO `wp_rg_lead_detail` VALUES("2765", "343", "1", "2", "farfenugie@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2766", "343", "1", "5", "(250) 634-0788");
INSERT INTO `wp_rg_lead_detail` VALUES("2767", "343", "1", "3", "I have had counseling before, i suffer with depression, anxiety, and other issues. My father just died, i feel like ive lost all control on life. I feel i need counseling again. \r\nFeel free to leave a message on the phone number or the email. Thank you, \r\nChelsea");
INSERT INTO `wp_rg_lead_detail` VALUES("2768", "344", "1", "1.3", "Kristy");
INSERT INTO `wp_rg_lead_detail` VALUES("2769", "344", "1", "1.6", "Hoffman");
INSERT INTO `wp_rg_lead_detail` VALUES("2770", "344", "1", "2", "Bmdesigns@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2771", "344", "1", "5", "(613) 602-0571");
INSERT INTO `wp_rg_lead_detail` VALUES("2772", "344", "1", "3", "I could really use someone to talk to who is not my husband, family or friends and without judgment. I have been in counselling before and although it\'s been a while I think it\'s time to come back to it. Let\'s face it; adulting is hard sometimes! So, I\'m taking action and reaching out before things get too crappy. \r\n\r\nI\'m a married, working full time mom who\'s also in school part time. I live in Sooke but work in Victoria. I could use some help. Please get in touch, I can be reached at the email or the number above. It\'s okay if you leave a message as it is my own and its a mobile phone so I don\'t answer when driving. I will call back as soon as I can. \r\n\r\nThanks so much,\r\n  Kristy");
INSERT INTO `wp_rg_lead_detail` VALUES("2773", "345", "1", "1.3", "Irmgard");
INSERT INTO `wp_rg_lead_detail` VALUES("2774", "345", "1", "1.6", "Koloska");
INSERT INTO `wp_rg_lead_detail` VALUES("2775", "345", "1", "2", "ikoloska@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2776", "345", "1", "5", "(250) 812-3827");
INSERT INTO `wp_rg_lead_detail` VALUES("2777", "345", "1", "3", "I have an appointment with Bill Cole on Tuesday morning, Oct. 18th at 10:00. I have to cancel due to a work commitment. Please reschedule the appointment for the following Tuesday, if possible.");
INSERT INTO `wp_rg_lead_detail` VALUES("2778", "346", "13", "1.3", "AFFIE");
INSERT INTO `wp_rg_lead_detail` VALUES("2779", "346", "13", "1.6", "DUIFHUIS");
INSERT INTO `wp_rg_lead_detail` VALUES("2780", "346", "13", "2", "jduifhuis@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2781", "346", "13", "3.1", "5995 Jaynes Road");
INSERT INTO `wp_rg_lead_detail` VALUES("2782", "346", "13", "3.3", "DUNCAN");
INSERT INTO `wp_rg_lead_detail` VALUES("2783", "346", "13", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2784", "346", "13", "3.5", "V9L 3C4");
INSERT INTO `wp_rg_lead_detail` VALUES("2785", "346", "13", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("2786", "346", "13", "4", "(250) 748-8205");
INSERT INTO `wp_rg_lead_detail` VALUES("2787", "346", "13", "5.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2788", "346", "13", "6", "DUNCAN CHRISTIAN REFORMED CHURCH\r\n930 TRUNK ROAD\r\nDUNCAN");
INSERT INTO `wp_rg_lead_detail` VALUES("2789", "346", "13", "7.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("2790", "346", "13", "8", "10/22/2016 9:00 AM");
INSERT INTO `wp_rg_lead_detail` VALUES("2791", "346", "13", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("2792", "346", "13", "13", "NONE");
INSERT INTO `wp_rg_lead_detail` VALUES("2793", "346", "13", "10", "SUZANNE GABEL  -  basic\r\nDEANNA NAGTEGAAL  -  basic\r\nSUSAN WITTEVEEN  - basic");
INSERT INTO `wp_rg_lead_detail` VALUES("2794", "346", "13", "11.3", "credit card (surcharges apply)");
INSERT INTO `wp_rg_lead_detail` VALUES("2795", "347", "1", "1.3", "brie");
INSERT INTO `wp_rg_lead_detail` VALUES("2796", "347", "1", "1.6", "cassidy");
INSERT INTO `wp_rg_lead_detail` VALUES("2797", "347", "1", "2", "briealicia17@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2798", "347", "1", "5", "(250) 514-3086");
INSERT INTO `wp_rg_lead_detail` VALUES("2799", "347", "1", "3", "Hello my name is brie. I have been dealing with some anxiety, panic attacks,  and sadness/depression?  I am low income and barely afford my rent / food/ bills so financing has been a concern for me but I would really like to get some help and strategies.. \r\nThanks and I look forward to hearing from you!\r\nBrie");
INSERT INTO `wp_rg_lead_detail` VALUES("2800", "348", "1", "1.3", "Evan");
INSERT INTO `wp_rg_lead_detail` VALUES("2801", "348", "1", "1.6", "Greenbaum");
INSERT INTO `wp_rg_lead_detail` VALUES("2802", "348", "1", "2", "egreenbaum@drugrehab.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2803", "348", "1", "5", "(561) 987-2221");
INSERT INTO `wp_rg_lead_detail` VALUES("2804", "348", "1", "3", "Good Afternoon,\r\n\r\nMy name is Evan and I work with DrugRehab.com, a resource that provides information about addiction and substance abuse.\r\n\r\nSome people who suffer from PTSD turn to drugs and alcohol to self-medicate. Our organization works to spread awareness of this issue and to be an informational resource for those impacted by alcohol and drug dependence. \r\n\r\nI believe that our website would be a valuable addition to the resources listed on your page, http://localhost:8888/TestSICPage/wordpress/resources-2/\r\n\r\nPlease feel free to review our information at drugrehab.com/co-occurring-disorder/ptsd/\r\n\r\nI would love feedback on our information and to see if this is something you would like to share with others.\r\n\r\nRespectfully,\r\n\r\nEvan Greenbaum");
INSERT INTO `wp_rg_lead_detail` VALUES("2805", "349", "1", "1.3", "Michelle");
INSERT INTO `wp_rg_lead_detail` VALUES("2806", "349", "1", "1.6", "Steeves");
INSERT INTO `wp_rg_lead_detail` VALUES("2807", "349", "1", "2", "misseymoo@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2808", "349", "1", "5", "(250) 508-9000");
INSERT INTO `wp_rg_lead_detail` VALUES("2809", "349", "1", "3", "Hi. I am looking for a counselor to help with severe anxiety as well as other issues. I\'m hoping you can help? I would prefer a woman counselor, but if that can\'t be arranged that\'s ok too .I work until 5:30 or 5:45, so are evening appointments available? 6:00 pm maybe? I have reached out to other therapists, but I cannot afford the fees. I understand you charge on a sliding scale based on income? I hope to hear from you very soon. Thanks for your time.\r\nMichelle");
INSERT INTO `wp_rg_lead_detail` VALUES("2810", "350", "1", "1.3", "Melis");
INSERT INTO `wp_rg_lead_detail` VALUES("2811", "350", "1", "1.6", "Bekiroglu");
INSERT INTO `wp_rg_lead_detail` VALUES("2812", "350", "1", "2", "Melisbekiroglu7@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2813", "350", "1", "5", "(778) 922-2368");
INSERT INTO `wp_rg_lead_detail` VALUES("2814", "350", "1", "3", "Hello. I would like to make and appointment and I wonder how much it would cost. Im an international student and dont have a work here so money is a problem for me and Im im need of help. I have bpd and severe depression and anxiety issues and I would love to talk to somebody. Thank you");
INSERT INTO `wp_rg_lead_detail` VALUES("2815", "351", "1", "1.3", "Curtis");
INSERT INTO `wp_rg_lead_detail` VALUES("2816", "351", "1", "1.6", "French");
INSERT INTO `wp_rg_lead_detail` VALUES("2817", "351", "1", "2", "Curtisrfrench@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2818", "351", "1", "5", "(250) 231-5787");
INSERT INTO `wp_rg_lead_detail` VALUES("2819", "351", "1", "3", "Hi, I am seeking counselling services for depression and anxiety. Please get back to me at your earliest convenience.");
INSERT INTO `wp_rg_lead_detail` VALUES("2820", "352", "1", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("2821", "352", "1", "1.6", "McMillan");
INSERT INTO `wp_rg_lead_detail` VALUES("2822", "352", "1", "2", "sarah@woodwardandcompany.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2823", "352", "1", "5", "(250) 588-7098");
INSERT INTO `wp_rg_lead_detail` VALUES("2824", "352", "1", "3", "Good afternoon,\r\nA friend of mine was recently the victim of a very violent attack and home invasion. She has been offered counselling services through victim services but can\'t be seen for several weeks. That seems like a travesty. She is having panic attacks and is having trouble caring for her infant while sheâ€™s at home on mat leave.\r\n \r\nHer husband is self-employed and I get the sense that funds are tight. I am reaching out to people in my community to see if we can arrange for a couple of interim sessions until she can be seen through victimâ€™s services.  There may be a chance at reimbursement once sheâ€™s been processed through the system.\r\n \r\nDue to pending charges, Iâ€™m reluctant to share too many specific details but Iâ€™m happy to fill in some blanks if it helps.\r\n \r\nThank you â€“ and advice or direction is appreciated.");
INSERT INTO `wp_rg_lead_detail` VALUES("2825", "353", "1", "1.3", "Noella");
INSERT INTO `wp_rg_lead_detail` VALUES("2826", "353", "1", "1.6", "May");
INSERT INTO `wp_rg_lead_detail` VALUES("2827", "353", "1", "2", "noellamay128@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2828", "353", "1", "5", "(250) 380-0015");
INSERT INTO `wp_rg_lead_detail` VALUES("2829", "353", "1", "3", "Kindly pass this along to Margaret Anderson...\r\nWas so nice to see you this morning, Margaret.\r\nThanks for asking about the invitation and feel free to forward my email to those sending out invites.\r\nPerhaps I\'ll see you there.\r\nHave a fabulous Friday!\r\nNoella");
INSERT INTO `wp_rg_lead_detail` VALUES("2830", "354", "1", "1.3", "Elizabeth");
INSERT INTO `wp_rg_lead_detail` VALUES("2831", "354", "1", "1.6", "Cronin");
INSERT INTO `wp_rg_lead_detail` VALUES("2832", "354", "1", "2", "elcronin@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2833", "354", "1", "5", "(250) 812-6889");
INSERT INTO `wp_rg_lead_detail` VALUES("2834", "354", "1", "3", "Hi!\r\n\r\nI did a number of counselling sessions over the summer with Rosemary.  I got a longer receipt for some of them, but mostly just short little receipts.  I thought this would be alright but the insurance company is denying my claim.  Could I get more official receipts for each session? \r\n\r\nAlso, if this claim is denied I think the price I was charged is higher than it would have been based on the sliding scale, but hopefully it will be alright.  \r\n\r\nIf you could send the receipts to this address that would be great:\r\n\r\nElizabeth Cronin\r\n1284 Lonsdale Place \r\nVictoria, BC,\r\nV8P 5L3\r\n\r\nThanks!\r\n\r\nLiz (Elizabeth) Cronin");
INSERT INTO `wp_rg_lead_detail` VALUES("2835", "355", "3", "1.3", "Moira");
INSERT INTO `wp_rg_lead_detail` VALUES("2836", "355", "3", "1.6", "Madamombe");
INSERT INTO `wp_rg_lead_detail` VALUES("2837", "355", "3", "2", "moiramajachani@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2838", "355", "3", "3.1", "302S-7373 Humboldt st");
INSERT INTO `wp_rg_lead_detail` VALUES("2839", "355", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("2840", "355", "3", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("2841", "355", "3", "3.5", "V8W 1B1");
INSERT INTO `wp_rg_lead_detail` VALUES("2842", "355", "3", "4", "(250) 891-2618");
INSERT INTO `wp_rg_lead_detail` VALUES("2843", "355", "3", "7", "February 2 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("2844", "355", "3", "5", "The Ebb and Flow of Life");
INSERT INTO `wp_rg_lead_detail` VALUES("2846", "357", "1", "1.3", "Herschel");
INSERT INTO `wp_rg_lead_detail` VALUES("2847", "357", "1", "1.6", "Krustovsky");
INSERT INTO `wp_rg_lead_detail` VALUES("2848", "357", "1", "2", "ocean123@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("2849", "357", "1", "5", "(250) 999-3056");
INSERT INTO `wp_rg_lead_detail` VALUES("2850", "357", "1", "3", "What are your administrative costs?");
INSERT INTO `wp_rg_lead_detail` VALUES("2851", "358", "1", "1.3", "Amanda");
INSERT INTO `wp_rg_lead_detail` VALUES("2852", "358", "1", "1.6", "St.Pierre");
INSERT INTO `wp_rg_lead_detail` VALUES("2853", "358", "1", "2", "Amandast.pierre@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2854", "358", "1", "5", "(778) 679-2139");
INSERT INTO `wp_rg_lead_detail` VALUES("2855", "358", "1", "3", "My partner and I are young parents and we have both struggled with mental health and addictions in the past. We are looking for an affordable safe place to to have healthy conversations and take care of our mental well beings and our recovery.\r\n\r\nThank you");
INSERT INTO `wp_rg_lead_detail` VALUES("2856", "359", "14", "1.3", "Emmory");
INSERT INTO `wp_rg_lead_detail` VALUES("2857", "359", "14", "1.6", "Collins");
INSERT INTO `wp_rg_lead_detail` VALUES("2858", "359", "14", "2", "24");
INSERT INTO `wp_rg_lead_detail` VALUES("2859", "359", "14", "3", "(250) 886-8116");
INSERT INTO `wp_rg_lead_detail` VALUES("2860", "359", "14", "4", "emmory_collins@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2861", "359", "14", "5", "Concerns: Depression, life transitions, relational conflict, and issues related to faith and spirituality. Referred from a GP to Mental Health intake (USTAT), completed a phone consultation and was referred to physchiatry. Had an appt. today (Nov. 16) w/ Dr. Malavi, counseling was recommended as a next step along w/ my current Rx\'s. \r\nSchedule: Available all day on Mondays, after 4:30 on Tuesdays, and evening (after 6pm) availability Wed-Sat. No preference in regards to a male or female therapist. \r\nFees: No extended benefits. Single, average of $33,000 gross annual income.");
INSERT INTO `wp_rg_lead_detail` VALUES("2862", "359", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2863", "359", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2864", "359", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2865", "359", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("2866", "360", "14", "1.3", "Vicky");
INSERT INTO `wp_rg_lead_detail` VALUES("2867", "360", "14", "1.6", "Edmiston");
INSERT INTO `wp_rg_lead_detail` VALUES("2868", "360", "14", "2", "27");
INSERT INTO `wp_rg_lead_detail` VALUES("2869", "360", "14", "3", "(778) 877-4769");
INSERT INTO `wp_rg_lead_detail` VALUES("2870", "360", "14", "4", "tori.leigh89@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2871", "360", "14", "5", "Mental health issues (confirmed depression & anxiety). Currently unemployed (on EI right now) so have open availability. Preference would be for a female therapist.");
INSERT INTO `wp_rg_lead_detail` VALUES("2872", "360", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2873", "360", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2874", "360", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2875", "360", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2876", "360", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("2877", "361", "14", "1.3", "Matthew");
INSERT INTO `wp_rg_lead_detail` VALUES("2878", "361", "14", "1.6", "Cook");
INSERT INTO `wp_rg_lead_detail` VALUES("2879", "361", "14", "2", "39");
INSERT INTO `wp_rg_lead_detail` VALUES("2880", "361", "14", "3", "(250) 508-1791");
INSERT INTO `wp_rg_lead_detail` VALUES("2881", "361", "14", "4", "mcook@pacificahousing.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2882", "361", "14", "5", "I\'m actually just touching base for a client of mine who\'s on income assistance and looking for Christian based counseling and I was wondering if you could recommend anything? \r\nCheers, \r\nMatthew of pacifica housing.");
INSERT INTO `wp_rg_lead_detail` VALUES("2883", "361", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2884", "361", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2885", "361", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("2886", "362", "14", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("2887", "362", "14", "1.6", "Kobylka");
INSERT INTO `wp_rg_lead_detail` VALUES("2888", "362", "14", "2", "48");
INSERT INTO `wp_rg_lead_detail` VALUES("2889", "362", "14", "3", "(778) 533-8768");
INSERT INTO `wp_rg_lead_detail` VALUES("2890", "362", "14", "4", "kobylkakaren@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2891", "362", "14", "5", "Hi, I am going through alot, this December 27th coming up it will be 4 years that i left my husband and walked away with nothing, it was not a great relationship but when I left the police were involved and later he tried chasing me down via a high speed chase.. UGH. then a few months after that my mother unexpectantly passed away. during this time my family disowned me as they really loved my ex, so that was hard, my moms passing was hard, but a few months after that my 2 dogs passed away (I do not have children they were like my children) a month after that my friend passed away and the next month my best friend get diagnosed with thyroid cancer. I spent the next few years just getting by. last year my father passed away on fathers day. when i was 12 i was raped and never told anyone. i was at a spiritual healing retreat about 1 month ago and it was amazing, but since then i have had new memories of my rape and it is causing me to realize that gee maybe not telling anyone is not such a great idea. i do my best to deal with all this by myself but my one sister that i am closest to is in the hospital and not doing good at all. I have moved to Victoria just since this July and I am doing way better than in Edmonton where i lived for 47 and 3/4 years. but being in a new place with no friends not really helping, i really hate to ask for help but kind of at the end of my rope, i have wished spirit to take me home several times but dam it ...they are not ready for me yet so here i seek your help.");
INSERT INTO `wp_rg_lead_detail` VALUES("2892", "362", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2893", "362", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2894", "362", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("2895", "362", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2896", "362", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("2897", "363", "14", "1.3", "Mayumi");
INSERT INTO `wp_rg_lead_detail` VALUES("2898", "363", "14", "1.6", "Baker");
INSERT INTO `wp_rg_lead_detail` VALUES("2899", "363", "14", "2", "47");
INSERT INTO `wp_rg_lead_detail` VALUES("2900", "363", "14", "3", "(250) 478-3190");
INSERT INTO `wp_rg_lead_detail` VALUES("2901", "363", "14", "4", "mayumiyuma@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2902", "363", "14", "5", "I\'m seeking for counselling (separation).\r\nI prefer female therapist.");
INSERT INTO `wp_rg_lead_detail` VALUES("2903", "363", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2904", "363", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2905", "363", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2906", "363", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("2907", "364", "14", "1.3", "Rachelle");
INSERT INTO `wp_rg_lead_detail` VALUES("2908", "364", "14", "1.6", "Renaud");
INSERT INTO `wp_rg_lead_detail` VALUES("2909", "364", "14", "2", "23");
INSERT INTO `wp_rg_lead_detail` VALUES("2910", "364", "14", "3", "(250) 710-1104");
INSERT INTO `wp_rg_lead_detail` VALUES("2911", "364", "14", "4", "Greenwitchyrenaud@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("2912", "364", "14", "5", "Jealousy and insecurity issues with friendships, also sexual dysfunction/lack of sexual desire in relationships.\r\nPrefer a female therapist. No health benefits.\r\nAvailable: Wednesdays 1-2:30, Mondays after 2, Saturdays after 2, Sundays.");
INSERT INTO `wp_rg_lead_detail` VALUES("2913", "364", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2914", "364", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2915", "364", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2916", "364", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("2917", "365", "14", "1.3", "Lacey");
INSERT INTO `wp_rg_lead_detail` VALUES("2918", "365", "14", "1.6", "Mullett");
INSERT INTO `wp_rg_lead_detail` VALUES("2919", "365", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("2920", "365", "14", "3", "(250) 812-0045");
INSERT INTO `wp_rg_lead_detail` VALUES("2921", "365", "14", "4", "Laceyjanette@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2922", "365", "14", "5", "I have a history of moderate anxiety and have accessed counselling many times throughout my adult life to cope. I\'ve been quiet anxious the past few months, but it\'s definitely increased in severity the past few weeks. I\'m available pretty much any time as I\'m self-employed. I don\'t currently have extended health benefits but am in the process of becoming covered under my partners\'s plan and could actually have that within the week. I would prefer a female therapist but am comfortable with a male if necessary.");
INSERT INTO `wp_rg_lead_detail` VALUES("2923", "365", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2924", "365", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2925", "365", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2926", "365", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("2927", "365", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2928", "365", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("2929", "366", "14", "1.3", "Bayley");
INSERT INTO `wp_rg_lead_detail` VALUES("2930", "366", "14", "1.6", "Gale");
INSERT INTO `wp_rg_lead_detail` VALUES("2931", "366", "14", "2", "30");
INSERT INTO `wp_rg_lead_detail` VALUES("2932", "366", "14", "3", "(778) 679-4215");
INSERT INTO `wp_rg_lead_detail` VALUES("2933", "366", "14", "4", "bayleygale@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2934", "366", "14", "5", "I am hoping to discuss issues related to grief and loss, particularly with regards to my son who passed away this summer after arriving prematurely. \r\n\r\nI am not available for appointments on weekdays between 2:00pm and 6:00pm, but outside of that I have a flexible schedule and am available for morning or evening appointments. \r\n\r\nI am comfortable with a male or female therapist. \r\n\r\nI do not currently have extended health benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("2935", "366", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2936", "366", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2937", "366", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2938", "366", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2939", "366", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("2940", "367", "14", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("2941", "367", "14", "1.6", "Laurendeau");
INSERT INTO `wp_rg_lead_detail` VALUES("2942", "367", "14", "2", "33");
INSERT INTO `wp_rg_lead_detail` VALUES("2943", "367", "14", "3", "(250) 507-6240");
INSERT INTO `wp_rg_lead_detail` VALUES("2944", "367", "14", "4", "Remingtonsteele195@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2945", "367", "14", "5", "I feel lonely ie no friends, stress, anxiety, low self esteem, and sadness sometimes. Thursday mornings would work best for me and I prefer a female please.");
INSERT INTO `wp_rg_lead_detail` VALUES("2946", "367", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2947", "367", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2948", "367", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2949", "367", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("2950", "367", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2951", "367", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("2952", "368", "14", "1.3", "Dylan");
INSERT INTO `wp_rg_lead_detail` VALUES("2953", "368", "14", "1.6", "Roberts");
INSERT INTO `wp_rg_lead_detail` VALUES("2954", "368", "14", "2", "32");
INSERT INTO `wp_rg_lead_detail` VALUES("2955", "368", "14", "3", "(204) 995-9319");
INSERT INTO `wp_rg_lead_detail` VALUES("2956", "368", "14", "4", "dylan.jb.roberts@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2957", "368", "14", "5", "Suffering from fairly longstanding (>1 year) anxiety and depression - feelings of despair, almost-constant low-level panic which makes it difficult to function (although still generally able to get through the day-to-day by \"faking it\"). Temporary improvement after attending a couple of crisis counselling sessions last year. Temporary improvement after daily exercise at the gym (ongoing), but I feel as though my mental health is deteriorating again. Fully available M-F and weekends, eager to attend session(s) at whatever time is most convenient for a therapist. No preference re: male or female therapist. No extended health benefits at present. Currently unemployed and collecting employment insurance benefits but anticipate starting work in the new year.");
INSERT INTO `wp_rg_lead_detail` VALUES("2958", "368", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2959", "368", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2960", "368", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2961", "368", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2962", "368", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("2963", "369", "14", "1.3", "Lauren");
INSERT INTO `wp_rg_lead_detail` VALUES("2964", "369", "14", "1.6", "Sleziak");
INSERT INTO `wp_rg_lead_detail` VALUES("2965", "369", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("2966", "369", "14", "3", "(250) 893-5795");
INSERT INTO `wp_rg_lead_detail` VALUES("2967", "369", "14", "4", "laurensleziak@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2968", "369", "14", "5", "chronic major depression, generalized anxiety and social anxiety/anxiety attacks, general stress, and relationship issues.");
INSERT INTO `wp_rg_lead_detail` VALUES("2969", "369", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2970", "369", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("2971", "369", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("2972", "370", "14", "1.3", "Leah");
INSERT INTO `wp_rg_lead_detail` VALUES("2973", "370", "14", "1.6", "Hayward");
INSERT INTO `wp_rg_lead_detail` VALUES("2974", "370", "14", "2", "30");
INSERT INTO `wp_rg_lead_detail` VALUES("2975", "370", "14", "3", "(250) 634-0315");
INSERT INTO `wp_rg_lead_detail` VALUES("2976", "370", "14", "4", "Leah_bean@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2977", "370", "14", "5", "I need some guidance on how to have productive, clear conversations with my partner about major life decisions, specifically marriage and children. I am indifferent about the gender of my counsellor. I am a new BC resident, no coverage yet (still waiting for a care card) and wanted to see what my options are for a low cost counselling in the interim (a single, focused individual session would probably suffice for now - possibility for a handful of couples sessions down the road if needed). I am best reached by email. Thank you, I look forward to hearing from you soon! Leah");
INSERT INTO `wp_rg_lead_detail` VALUES("2978", "370", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2979", "370", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2980", "370", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("2981", "370", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2982", "370", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("2983", "371", "14", "1.3", "Kristy");
INSERT INTO `wp_rg_lead_detail` VALUES("2984", "371", "14", "1.6", "Hoffman");
INSERT INTO `wp_rg_lead_detail` VALUES("2985", "371", "14", "2", "39");
INSERT INTO `wp_rg_lead_detail` VALUES("2986", "371", "14", "3", "(613) 602-0571");
INSERT INTO `wp_rg_lead_detail` VALUES("2987", "371", "14", "4", "Bmdesigns@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2988", "371", "14", "5", "I am looking to talk to someone about day to day issues as well as exploring the idea of counselling for past trauma related issues. \r\n\r\nI work in Victoria and live in Sooke so it is better for me to come during working hours. I prefer a female.");
INSERT INTO `wp_rg_lead_detail` VALUES("2989", "371", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2990", "371", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("2991", "371", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("2992", "372", "14", "1.3", "Kathryn");
INSERT INTO `wp_rg_lead_detail` VALUES("2993", "372", "14", "1.6", "Robertson");
INSERT INTO `wp_rg_lead_detail` VALUES("2994", "372", "14", "2", "38");
INSERT INTO `wp_rg_lead_detail` VALUES("2995", "372", "14", "3", "(250) 882-1477");
INSERT INTO `wp_rg_lead_detail` VALUES("2996", "372", "14", "4", "kathrynnichol6@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("2997", "372", "14", "5", "Feeling inadequate and insecure \r\n Sometimes Depressed \r\nWould like to understand why I feel so awful about myself and no sense of security in my relationship ( which leads to problems)");
INSERT INTO `wp_rg_lead_detail` VALUES("2998", "372", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("2999", "372", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3000", "372", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3001", "372", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3002", "372", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3003", "373", "14", "1.3", "Tasha");
INSERT INTO `wp_rg_lead_detail` VALUES("3004", "373", "14", "1.6", "Bray");
INSERT INTO `wp_rg_lead_detail` VALUES("3005", "373", "14", "2", "23");
INSERT INTO `wp_rg_lead_detail` VALUES("3006", "373", "14", "3", "(778) 679-1901");
INSERT INTO `wp_rg_lead_detail` VALUES("3007", "373", "14", "4", "nebray@live.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3008", "373", "14", "5", "Depression, anxiety, difficulty coping with daily life activities.");
INSERT INTO `wp_rg_lead_detail` VALUES("3009", "373", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3010", "373", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3011", "373", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3012", "373", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3013", "373", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3014", "374", "14", "1.3", "Sheryll");
INSERT INTO `wp_rg_lead_detail` VALUES("3015", "374", "14", "1.6", "Tabamo");
INSERT INTO `wp_rg_lead_detail` VALUES("3016", "374", "14", "2", "1591 Glencraig Place");
INSERT INTO `wp_rg_lead_detail` VALUES("3017", "374", "14", "3", "(250) 580-1108");
INSERT INTO `wp_rg_lead_detail` VALUES("3018", "374", "14", "4", "tsheryll0@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3019", "374", "14", "5", "Recently got diagnosed with depression");
INSERT INTO `wp_rg_lead_detail` VALUES("3020", "374", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3021", "374", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3022", "374", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3023", "375", "14", "1.3", "Tannis");
INSERT INTO `wp_rg_lead_detail` VALUES("3024", "375", "14", "1.6", "Henwood");
INSERT INTO `wp_rg_lead_detail` VALUES("3025", "375", "14", "2", "29");
INSERT INTO `wp_rg_lead_detail` VALUES("3026", "375", "14", "3", "(250) 893-5092");
INSERT INTO `wp_rg_lead_detail` VALUES("3027", "375", "14", "4", "tannis.lee@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3028", "375", "14", "5", "I  have various issues which include poor self esteem, dependence on a certain family member, greif of a parent, and my intimate relationships dont last, which I think has to do with my self esteem issues and in experience of healthy relationships. I would prefer a female therapist.");
INSERT INTO `wp_rg_lead_detail` VALUES("3029", "375", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3030", "375", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3031", "375", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3032", "375", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("3033", "376", "14", "1.3", "Randy and Cindy");
INSERT INTO `wp_rg_lead_detail` VALUES("3034", "376", "14", "1.6", "Leggett");
INSERT INTO `wp_rg_lead_detail` VALUES("3035", "376", "14", "2", "Randy age 55\r\nCindy age 57");
INSERT INTO `wp_rg_lead_detail` VALUES("3036", "376", "14", "3", "(250) 634-4902");
INSERT INTO `wp_rg_lead_detail` VALUES("3037", "376", "14", "4", "cinleg2@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3038", "376", "14", "5", "Hi \r\nArnie Toews suggested we see Amber Eves for marriage counselling. Our marriage is really falling apart but neither one wants to see it end.\r\nThank you");
INSERT INTO `wp_rg_lead_detail` VALUES("3039", "376", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3040", "376", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3041", "376", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3042", "376", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("3043", "377", "14", "1.3", "Siobhan");
INSERT INTO `wp_rg_lead_detail` VALUES("3044", "377", "14", "1.6", "Prasad");
INSERT INTO `wp_rg_lead_detail` VALUES("3045", "377", "14", "2", "27");
INSERT INTO `wp_rg_lead_detail` VALUES("3046", "377", "14", "3", "(226) 456-7436");
INSERT INTO `wp_rg_lead_detail` VALUES("3047", "377", "14", "4", "siobhan.sheo@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3048", "377", "14", "5", "No preference for male/female or time/day of week. I do have very bad anxiety which can very much affect my ability to answer a call so, if possible, if I don\'t answer please don\'t give up and try calling again either right after, later that day, or next day.\r\nThank You.");
INSERT INTO `wp_rg_lead_detail` VALUES("3049", "377", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3050", "377", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3051", "377", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3052", "377", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3053", "377", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3054", "378", "14", "1.3", "Ash");
INSERT INTO `wp_rg_lead_detail` VALUES("3055", "378", "14", "1.6", "Chandler-Pease");
INSERT INTO `wp_rg_lead_detail` VALUES("3056", "378", "14", "2", "30");
INSERT INTO `wp_rg_lead_detail` VALUES("3057", "378", "14", "3", "(250) 882-0046");
INSERT INTO `wp_rg_lead_detail` VALUES("3058", "378", "14", "4", "ashcp@live.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3059", "378", "14", "5", "I don\'t really know what to say here. I feel emotionless 90% of the time, and when I do feel emotion it is almost always irritation or cynicism - sometimes outright anger. It has become progressively worse over the past two years to the point now where I suspect, though I am unsure, that I am using alcohol as a crutch for my inability to convey emotion (the detachment came first, it was not at the behest of the alcohol - for the record). I recognize the state that I\'m in and the potential danger, but I find myself enjoying the emptiness and self-imposed isolation and as such don\'t really want to change my situation. There are rare moments, like this, where I can convince myself that no, I do need help - which is difficult since I am ex-army and the concept of emotional vulnerability is anathema to me. I work from 1530 to 2400hrs during the week at a hotel. I would prefer a male therapist. I have medical coverage (Morneau Shepell) through my work.");
INSERT INTO `wp_rg_lead_detail` VALUES("3060", "378", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3061", "378", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3062", "378", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3063", "378", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3064", "379", "14", "1.3", "Anders");
INSERT INTO `wp_rg_lead_detail` VALUES("3065", "379", "14", "1.6", "Jenstad-Fritz");
INSERT INTO `wp_rg_lead_detail` VALUES("3066", "379", "14", "2", "8\r\n(Mom = Janelle Jenstad. Janelle is filling out the form for Anders.)");
INSERT INTO `wp_rg_lead_detail` VALUES("3067", "379", "14", "3", "(250) 858-7269");
INSERT INTO `wp_rg_lead_detail` VALUES("3068", "379", "14", "4", "janellejenstad@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3069", "379", "14", "5", "Current issues: ADHD; sensory processing issues; anxiety about school; delayed academic achievement; impulsivity; threats of self-harm; physical violence towards older brother; swearing; lying; destruction of property; running away; separation and divorce of parents; transitions from one parent to another.\r\n\r\nHistory: Has witnessed domestic violence and been physically abused.\r\n\r\nAnders has many strengths: High verbal fluency, performance skills, musical talent, confidence on stage, good with younger children, socially adept, highly creative and imaginative, funny, athletically talented (rock climbing, skateboarding, biking, ballet, dance in general, most individual sports).");
INSERT INTO `wp_rg_lead_detail` VALUES("3070", "379", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3071", "379", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3072", "379", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3073", "379", "14", "9.1", "$120-80");
INSERT INTO `wp_rg_lead_detail` VALUES("3074", "380", "14", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("3075", "380", "14", "1.6", "Hogg");
INSERT INTO `wp_rg_lead_detail` VALUES("3076", "380", "14", "2", "46");
INSERT INTO `wp_rg_lead_detail` VALUES("3077", "380", "14", "3", "(250) 995-9200");
INSERT INTO `wp_rg_lead_detail` VALUES("3078", "380", "14", "4", "karh01@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3079", "380", "14", "5", "I am looking for a spiritual director and would like to get in touch with Barb Baillie.\r\n\r\nI can be available evenings, weekends, and some Mondays.");
INSERT INTO `wp_rg_lead_detail` VALUES("3080", "380", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3081", "380", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3082", "380", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3083", "380", "14", "9.1", "$120-80");
INSERT INTO `wp_rg_lead_detail` VALUES("3084", "381", "14", "1.3", "Genevieve");
INSERT INTO `wp_rg_lead_detail` VALUES("3085", "381", "14", "1.6", "Bartlam");
INSERT INTO `wp_rg_lead_detail` VALUES("3086", "381", "14", "2", "30");
INSERT INTO `wp_rg_lead_detail` VALUES("3087", "381", "14", "3", "(778) 533-0128");
INSERT INTO `wp_rg_lead_detail` VALUES("3088", "381", "14", "4", "bartlamgenevieve@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3089", "381", "14", "5", "I have been dealing with depression and anxiety for as long as I remember, it doesn\'t interfere dramatically with my daily life but does negatively affect some close relationships as well as my sense of self. I have never been to see someone about it before. I am in school full time, 8:30-4:30 Mon-Friday. I do not have any extended health coverage and only have time to work very part time. I have no preference over gender of a therapist");
INSERT INTO `wp_rg_lead_detail` VALUES("3090", "381", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3091", "381", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3092", "381", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3093", "381", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3094", "382", "14", "1.3", "Tim");
INSERT INTO `wp_rg_lead_detail` VALUES("3095", "382", "14", "1.6", "Stewart");
INSERT INTO `wp_rg_lead_detail` VALUES("3096", "382", "14", "2", "32");
INSERT INTO `wp_rg_lead_detail` VALUES("3097", "382", "14", "3", "(250) 884-8869");
INSERT INTO `wp_rg_lead_detail` VALUES("3098", "382", "14", "4", "Timraystew@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3099", "382", "14", "5", "Spiritual direction\r\nPastoral counseling \r\nCoverage for registered counselors");
INSERT INTO `wp_rg_lead_detail` VALUES("3100", "382", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3101", "382", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3102", "382", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("3103", "383", "14", "1.3", "Josh");
INSERT INTO `wp_rg_lead_detail` VALUES("3104", "383", "14", "1.6", "Clark");
INSERT INTO `wp_rg_lead_detail` VALUES("3105", "383", "14", "2", "35 years old");
INSERT INTO `wp_rg_lead_detail` VALUES("3106", "383", "14", "3", "(902) 220-8252");
INSERT INTO `wp_rg_lead_detail` VALUES("3107", "383", "14", "4", "jrclark@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3108", "383", "14", "5", "Hi, I am writing to inquire about a certain type of counseling experience.  I\'m wondering if anyone who works at South Island Center has experience working with people who have a speech impediment?  I\'m not looking for speech therapy, but more-so someone who has worked with a client who has a mental health issue and also a speech impediment.  I struggle with anxiety and also have a severe stutter, so I\'m looking for someone to talk to who maybe has worked with someone like me before.  If I could be contacted by email, that would be great.  Thanks");
INSERT INTO `wp_rg_lead_detail` VALUES("3109", "383", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3110", "383", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3111", "383", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3112", "383", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("3113", "384", "14", "1.3", "Kenji");
INSERT INTO `wp_rg_lead_detail` VALUES("3114", "384", "14", "1.6", "Fuse");
INSERT INTO `wp_rg_lead_detail` VALUES("3115", "384", "14", "2", "51");
INSERT INTO `wp_rg_lead_detail` VALUES("3116", "384", "14", "3", "(250) 381-6502");
INSERT INTO `wp_rg_lead_detail` VALUES("3117", "384", "14", "4", "kenjijamesfuse@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3118", "384", "14", "5", "Relationship problems; I would like to learn techniques to deal with anger issues in regards to my primary relationship\r\nMy schedule is varied, and much of it is working from home, so I am fairly flexible\r\nI have no preference for a male or female therapist\r\nI do not have extended health benefits");
INSERT INTO `wp_rg_lead_detail` VALUES("3119", "384", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3120", "384", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("3121", "384", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3122", "384", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3123", "385", "14", "1.3", "Laura");
INSERT INTO `wp_rg_lead_detail` VALUES("3124", "385", "14", "1.6", "Jones");
INSERT INTO `wp_rg_lead_detail` VALUES("3125", "385", "14", "2", "29");
INSERT INTO `wp_rg_lead_detail` VALUES("3126", "385", "14", "3", "(250) 889-5127");
INSERT INTO `wp_rg_lead_detail` VALUES("3127", "385", "14", "4", "ljones87.lj@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3128", "385", "14", "5", "On social assistance\r\nWork injury.\r\n2 years of recovery.\r\nTraumatic events.\r\nDiagnosed with g.a.d.\r\nDiagnosed with depression.\r\nSaw psychiatrist through duncan mental health.\r\n\r\nAvailability: mon-thurs.\r\nNo preference as to male or female therapist.\r\nNo extended health benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("3129", "385", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3130", "385", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3131", "385", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3132", "385", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3133", "385", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3134", "386", "14", "1.3", "Rachelle");
INSERT INTO `wp_rg_lead_detail` VALUES("3135", "386", "14", "1.6", "Premack");
INSERT INTO `wp_rg_lead_detail` VALUES("3136", "386", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("3137", "386", "14", "3", "(778) 533-3555");
INSERT INTO `wp_rg_lead_detail` VALUES("3138", "386", "14", "4", "rachellepremack@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3139", "386", "14", "5", "Mother is diagnosed bipolar, spent time in Centre For Adult Psychiatry (CAP) in Brandon, MB. \r\nI\'ve been exhibiting behaviours consistently for past decade and am ready for diagnosis/ mild medication if recommended. \r\nUnable to focus or stay in job long term. Problem for debt and finances.\r\nWork 7am-5:30pm daily, bus transit- I could make last session of weekday or anytime weekend. Prefer female therapist if available, also fine with male but not first choice. \r\nNeed 180 more hours at work at least before possibility of benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("3140", "386", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3141", "386", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3142", "386", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("3143", "386", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3144", "386", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("3145", "387", "14", "1.3", "Matthew");
INSERT INTO `wp_rg_lead_detail` VALUES("3146", "387", "14", "1.6", "DE Souza");
INSERT INTO `wp_rg_lead_detail` VALUES("3147", "387", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("3148", "387", "14", "3", "(613) 483-7424");
INSERT INTO `wp_rg_lead_detail` VALUES("3149", "387", "14", "4", "mdesouzaphoto@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3150", "387", "14", "5", "- female therapist preferred \r\n- looking for counsel regarding relationship communication, conflict in relationships, letting go of/forgiving negative past experiences, and future life steps \r\n- the above phone number provided is my girlfriend\'s, as I do not have my own at this time; however, I respond to emails promptly");
INSERT INTO `wp_rg_lead_detail` VALUES("3151", "387", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3152", "387", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3153", "387", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3154", "387", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3155", "388", "3", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("3156", "388", "3", "1.6", "Coke");
INSERT INTO `wp_rg_lead_detail` VALUES("3157", "388", "3", "2", "Jencole9@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3158", "388", "3", "3.1", "302-2881 Peatt Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("3159", "388", "3", "3.3", "Langford");
INSERT INTO `wp_rg_lead_detail` VALUES("3160", "388", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3161", "388", "3", "3.5", "V9B 3V7");
INSERT INTO `wp_rg_lead_detail` VALUES("3162", "388", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3163", "388", "3", "4", "(403) 415-4823");
INSERT INTO `wp_rg_lead_detail` VALUES("3164", "388", "3", "7", "3/9/2017");
INSERT INTO `wp_rg_lead_detail` VALUES("3165", "388", "3", "5", "Family Systems");
INSERT INTO `wp_rg_lead_detail` VALUES("3167", "389", "14", "1.3", "William");
INSERT INTO `wp_rg_lead_detail` VALUES("3168", "389", "14", "1.6", "Shipwright");
INSERT INTO `wp_rg_lead_detail` VALUES("3169", "389", "14", "2", "7");
INSERT INTO `wp_rg_lead_detail` VALUES("3170", "389", "14", "3", "(250) 415-6156");
INSERT INTO `wp_rg_lead_detail` VALUES("3171", "389", "14", "4", "jraebryant@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3172", "389", "14", "5", "I\'m looking for counselling for my son William who is 7 , to learn coping skills for his anxiety and possible ADHD.  I\'m hoping for an appointment on any Wednesday or Thursday after school around 4:00 pm , he may like seeing a male counsellor but open to either, and looking for play therapy, Thankyou ! Jayna ( mother)");
INSERT INTO `wp_rg_lead_detail` VALUES("3173", "389", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3174", "389", "14", "7", "http://localhost:8888/TestSICPage/wordpress/");
INSERT INTO `wp_rg_lead_detail` VALUES("3175", "389", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3176", "389", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3177", "390", "14", "1.3", "Emily");
INSERT INTO `wp_rg_lead_detail` VALUES("3178", "390", "14", "1.6", "Savage");
INSERT INTO `wp_rg_lead_detail` VALUES("3179", "390", "14", "2", "27");
INSERT INTO `wp_rg_lead_detail` VALUES("3180", "390", "14", "3", "(250) 882-1612");
INSERT INTO `wp_rg_lead_detail` VALUES("3181", "390", "14", "4", "Bellasavage52@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3182", "390", "14", "5", "Concerns: Anxiety, depression, addictions, relationship issues ( professionally and personal) stress, anger, body image, grief. \r\nI work Friday to Monday from 930 am to 6 pm. Tues, Wednesdays and Thursdays are best to meet. I would prefer a female therapist but am open to a male as well if needed. \r\nI have benefits through work, but only for clinical psychologists/ psychiatrists I believe.");
INSERT INTO `wp_rg_lead_detail` VALUES("3183", "390", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3184", "390", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3185", "390", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3186", "390", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3187", "391", "14", "1.3", "sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("3188", "391", "14", "1.6", "spencer");
INSERT INTO `wp_rg_lead_detail` VALUES("3189", "391", "14", "2", "21");
INSERT INTO `wp_rg_lead_detail` VALUES("3190", "391", "14", "3", "(250) 915-0006");
INSERT INTO `wp_rg_lead_detail` VALUES("3191", "391", "14", "4", "spencer.sarah@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3192", "391", "14", "5", "I am looking for income based counseling for mainly my little brother, but for my boyfriend and myself. My little brother recently ran away from parents to live with me after failing university for the second time. Depression and lying are issues with him.");
INSERT INTO `wp_rg_lead_detail` VALUES("3193", "391", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3194", "391", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3195", "391", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3196", "391", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3197", "391", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3198", "392", "3", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("3199", "392", "3", "1.6", "Perry");
INSERT INTO `wp_rg_lead_detail` VALUES("3200", "392", "3", "2", "jennifer@exedra.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3201", "392", "3", "3.1", "#14-6038 Sterling Dr");
INSERT INTO `wp_rg_lead_detail` VALUES("3202", "392", "3", "3.3", "Duncan");
INSERT INTO `wp_rg_lead_detail` VALUES("3203", "392", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3204", "392", "3", "3.5", "V9L 5K4");
INSERT INTO `wp_rg_lead_detail` VALUES("3205", "392", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3206", "392", "3", "4", "(250) 748-3250");
INSERT INTO `wp_rg_lead_detail` VALUES("3207", "392", "3", "7", "January31, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("3208", "392", "3", "5", "Pastoral Care Team Dialogue");
INSERT INTO `wp_rg_lead_detail` VALUES("3210", "393", "14", "1.3", "Malisa");
INSERT INTO `wp_rg_lead_detail` VALUES("3211", "393", "14", "1.6", "Cwing");
INSERT INTO `wp_rg_lead_detail` VALUES("3212", "393", "14", "2", "12840 NE 21st Place");
INSERT INTO `wp_rg_lead_detail` VALUES("3213", "393", "14", "3", "(626) 361-3080");
INSERT INTO `wp_rg_lead_detail` VALUES("3214", "393", "14", "4", "malisa.cwing@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3215", "393", "14", "5", "Hi,\r\n \r\nI am Malisa Cwing.\r\n\r\nI was reviewing your company\'s website and believe our Hospice and Palliative Care Industry Contact List would make a big impact on your email marketing and prospecting efforts.\r\n\r\nAvailable Titles for Hospice and Palliative Care Industry Users Email List: Decision Makers, CEO, CFO, President, Chief Clinical Officer, Chief Compliance Officers, Executive Director, Hospice Medical Director, Palliative Care Program Manager, Hospice/Hospice Provisional Provider, Palliative/Spiritual Care Provider, Health Care Providers, Homecare Providers, Doctors, Nurses, Physician, Pharmacists, Psychologists, Nursing Assistants, Nurse Practitioner, Clinical Care Coordinator, Clinical Supervisor, Care Giver, Administrator, Hospice Care Consultant, Counselors, Social Workers, Healthcare Professionals, Services Provider, Home Care Aides, Hospice Agencies, Nursing Home/Hospitals and Others.\r\n\r\nPlease fill in your exact Target criteria in the below mentioned format, So that I can run counts and get back to you with samples and benefits for your review.\r\n \r\n Target Titles: _________ Target Industry: ______________   Target Geography: _____________\r\n \r\nWe have complete contacts details and verified e-mail address across all industry.\r\n 	\r\nList suitable for: Direct Mailing, Email Marketing, Tele Marketing and Fax Marketing.\r\n\r\nOur list includes: Name, title, Company Name, Permission Based E-mail address, Contact number, address and many more.\r\n\r\nGuarantee: We guarantee up to 90% on our lists. If anything does not meet our guarantee agreement, weâ€™d replace with fresh records and complete Ownership of list.\r\n  \r\nLook forward to your response. Thank you so much for reading my email even in your busy schedule.\r\n \r\nWarm Regards,\r\n\r\nMalisa Cwing\r\nMarketing Executive\r\nUS Data - European Data - Email Append - Data Append - Technology Specific Data - Email Marketing.\r\n12840 NE 21st Place, Bellevue, WA 98005, United States\r\nEmail: malisa.cwing@outlook.com\r\n________________________________________\r\nIf you\'re not interested please reply subject line as \"Leave Out\".");
INSERT INTO `wp_rg_lead_detail` VALUES("3216", "393", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3217", "393", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3218", "393", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3219", "394", "14", "1.3", "Rachel");
INSERT INTO `wp_rg_lead_detail` VALUES("3220", "394", "14", "1.6", "Jones");
INSERT INTO `wp_rg_lead_detail` VALUES("3221", "394", "14", "2", "20");
INSERT INTO `wp_rg_lead_detail` VALUES("3222", "394", "14", "3", "(250) 709-8652");
INSERT INTO `wp_rg_lead_detail` VALUES("3223", "394", "14", "4", "rachelvnjones@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3224", "394", "14", "5", "Looking to work through issues related to past sexual abuse and other emotional issues. I usually have Tuesday, Wednesday, and Thursday off. On Friday and Saturday I am off work at 1:30 so I am available then. I don\'t have a preference about the gender of therapist. I do not have health benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("3225", "394", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3226", "394", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3227", "394", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3228", "394", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3229", "394", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3230", "395", "3", "1.3", "Joy");
INSERT INTO `wp_rg_lead_detail` VALUES("3231", "395", "3", "1.6", "Gillett");
INSERT INTO `wp_rg_lead_detail` VALUES("3232", "395", "3", "2", "j.gillett@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3233", "395", "3", "3.1", "1103-325 Maitland St");
INSERT INTO `wp_rg_lead_detail` VALUES("3234", "395", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("3235", "395", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3236", "395", "3", "3.5", "V9A 7E9");
INSERT INTO `wp_rg_lead_detail` VALUES("3237", "395", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3238", "395", "3", "4", "(778) 350-5801");
INSERT INTO `wp_rg_lead_detail` VALUES("3239", "395", "3", "7", "January 28, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("3240", "395", "3", "5", "Me and my personality");
INSERT INTO `wp_rg_lead_detail` VALUES("3242", "396", "14", "1.3", "Lisa");
INSERT INTO `wp_rg_lead_detail` VALUES("3243", "396", "14", "1.6", "Morrison");
INSERT INTO `wp_rg_lead_detail` VALUES("3244", "396", "14", "2", "48");
INSERT INTO `wp_rg_lead_detail` VALUES("3245", "396", "14", "3", "(306) 617-9446");
INSERT INTO `wp_rg_lead_detail` VALUES("3246", "396", "14", "4", "borve25@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3247", "396", "14", "5", "Grief counselling for loss of parents - my father to pancreatic cancer where I provided the palliative care and my mother to pneumonia within 2 yrs of each other. Prefer a female counsellor please");
INSERT INTO `wp_rg_lead_detail` VALUES("3248", "396", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3249", "396", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3250", "396", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3251", "397", "3", "1.3", "Maureen");
INSERT INTO `wp_rg_lead_detail` VALUES("3252", "397", "3", "1.6", "Matthew");
INSERT INTO `wp_rg_lead_detail` VALUES("3253", "397", "3", "2", "mmatthew@vepc.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3254", "397", "3", "3.1", "202-1640 Oak Bay Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("3255", "397", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("3256", "397", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3257", "397", "3", "3.5", "V8R 1B2");
INSERT INTO `wp_rg_lead_detail` VALUES("3258", "397", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3259", "397", "3", "4", "(250) 475-6677");
INSERT INTO `wp_rg_lead_detail` VALUES("3260", "397", "3", "7", "2/2/2017");
INSERT INTO `wp_rg_lead_detail` VALUES("3261", "397", "3", "5", "The Ebb & Flow of Life");
INSERT INTO `wp_rg_lead_detail` VALUES("3263", "398", "3", "1.3", "Janet");
INSERT INTO `wp_rg_lead_detail` VALUES("3264", "398", "3", "1.6", "Sawatsky");
INSERT INTO `wp_rg_lead_detail` VALUES("3265", "398", "3", "2", "janet.sawatsky@gov.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3266", "398", "3", "3.1", "#66 2600 Ferguson Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("3267", "398", "3", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("3268", "398", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3269", "398", "3", "3.5", "V8M2C1");
INSERT INTO `wp_rg_lead_detail` VALUES("3270", "398", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3271", "398", "3", "4", "(250) 588-2789");
INSERT INTO `wp_rg_lead_detail` VALUES("3272", "398", "3", "7", "Feb/02/2017");
INSERT INTO `wp_rg_lead_detail` VALUES("3273", "398", "3", "5", "Ebb and Fow course ( Feb2 - March 9 2017 )");
INSERT INTO `wp_rg_lead_detail` VALUES("3275", "399", "14", "1.3", "Melissa");
INSERT INTO `wp_rg_lead_detail` VALUES("3276", "399", "14", "1.6", "Westaff");
INSERT INTO `wp_rg_lead_detail` VALUES("3277", "399", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("3278", "399", "14", "3", "(306) 501-7114");
INSERT INTO `wp_rg_lead_detail` VALUES("3279", "399", "14", "4", "mel.westaff@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3280", "399", "14", "5", "Needing grief counselling, advising on life-transition, career change etc. \r\nAvailable Monday-Friday 3:30 pm and later\r\nPrefer a female therapist");
INSERT INTO `wp_rg_lead_detail` VALUES("3281", "399", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3282", "399", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3283", "399", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3284", "399", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3285", "400", "14", "1.3", "Jaclyn");
INSERT INTO `wp_rg_lead_detail` VALUES("3286", "400", "14", "1.6", "Casler");
INSERT INTO `wp_rg_lead_detail` VALUES("3287", "400", "14", "2", "31");
INSERT INTO `wp_rg_lead_detail` VALUES("3288", "400", "14", "3", "(250) 213-5247");
INSERT INTO `wp_rg_lead_detail` VALUES("3289", "400", "14", "4", "Jaclyn.casler@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3290", "400", "14", "5", "Relationship conflict. My spouse and I are very different people but we also share many things. We\'ve been together for almost 8 years so we have a significant life history. But we have yet to learn how to manage life stress collaboratively and or make future goals. He is 42 and gender queer, coming from a family of abuse.");
INSERT INTO `wp_rg_lead_detail` VALUES("3291", "400", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3292", "400", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3293", "400", "14", "9.1", "$120-80");
INSERT INTO `wp_rg_lead_detail` VALUES("3294", "401", "14", "1.3", "Michaela");
INSERT INTO `wp_rg_lead_detail` VALUES("3295", "401", "14", "1.6", "Baur-Samborn");
INSERT INTO `wp_rg_lead_detail` VALUES("3296", "401", "14", "2", "22");
INSERT INTO `wp_rg_lead_detail` VALUES("3297", "401", "14", "3", "(403) 968-8247");
INSERT INTO `wp_rg_lead_detail` VALUES("3298", "401", "14", "4", "Michaela.baursamborn@hotmail.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3299", "401", "14", "5", "I am looking for counselling services for me and my boyfriend of 3 years. We are available evenings and weekends, and would be happy with either a male or female counsellor. We don\'t have any extended health benefits that we are aware of, but are looking into it. We are struggling with balancing both of our needs and expectations in our relationship, mostly relating to cleaning and diet and exercise.");
INSERT INTO `wp_rg_lead_detail` VALUES("3300", "401", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3301", "401", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3302", "401", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3303", "401", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("3304", "401", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3305", "402", "14", "1.3", "Amy");
INSERT INTO `wp_rg_lead_detail` VALUES("3306", "402", "14", "1.6", "Collins");
INSERT INTO `wp_rg_lead_detail` VALUES("3307", "402", "14", "2", "32");
INSERT INTO `wp_rg_lead_detail` VALUES("3308", "402", "14", "3", "(778) 668-8425");
INSERT INTO `wp_rg_lead_detail` VALUES("3309", "402", "14", "4", "amyonsidewalks@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3310", "402", "14", "5", "anxiety, depression, self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3311", "402", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3312", "402", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3313", "402", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3314", "402", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("3315", "402", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3316", "402", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3317", "403", "14", "1.3", "Adrian");
INSERT INTO `wp_rg_lead_detail` VALUES("3318", "403", "14", "1.6", "Chalifour");
INSERT INTO `wp_rg_lead_detail` VALUES("3319", "403", "14", "2", "33");
INSERT INTO `wp_rg_lead_detail` VALUES("3320", "403", "14", "3", "(250) 884-3302");
INSERT INTO `wp_rg_lead_detail` VALUES("3321", "403", "14", "4", "adrian.chalifour@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3322", "403", "14", "5", "Hello, I am looking for regular, ongoing counseling/therapy to help me work through strong feelings of depression and anxiety that I have been struggling with for just over a year now.\r\n- I am an artist/musician now in my 30\'s and coping with a sense of failure after spending years working hard towards goals that haven\'t materialized\r\n- I am a new, first-time father of a baby born in December. This was an unplanned event that has knocked the wind out of my sails. Mother and I are together but our relationship is under a lot of strain.\r\n- General issues of low self-worth, failure, lack of confidence/faith in myself, anger, etc. that seem to culminate into major depressive episodes every 5 or so years.\r\n- I was raised in the charismatic Christian faith and was an active, passionate believer for most of my 20\'s, until I went through a divorce at 28. I accessed prayer counseling in my mid-twenties to help deal with depression, but have struggled for the past few years to reconcile any faith/spiritual-based treatment with my disillusionment with the church and religion.\r\n- I occasionally accessed short-term counseling from Homewood Health through my employer (BC Public Service) over the past couple years, but struggled to maintain any consistency because I had to book each appointment individually and was limited to 6 sessions per issue.\r\n- I was diagnosed with depression by a physician and prescribed antidepressants, but I haven\'t started taking them.\r\n\r\nI\'d like to try more consistent, ongoing counseling (e.g. once per week) before considering antidepressants. My hope is to find a counselor who can help me progress beyond just verbal processing and \'talking it out\', towards a deeper exploration of the underlying thought patterns, beliefs, etc. that may influence my immediate thoughts and behaviour.\r\n\r\nI work full-time daytime hours (9-5:30) with every second Friday off.");
INSERT INTO `wp_rg_lead_detail` VALUES("3323", "403", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3324", "403", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3325", "403", "14", "9.1", "$120-80");
INSERT INTO `wp_rg_lead_detail` VALUES("3326", "404", "14", "1.3", "Jasper");
INSERT INTO `wp_rg_lead_detail` VALUES("3327", "404", "14", "1.6", "Thomas");
INSERT INTO `wp_rg_lead_detail` VALUES("3328", "404", "14", "2", "21");
INSERT INTO `wp_rg_lead_detail` VALUES("3329", "404", "14", "3", "(250) 702-6938");
INSERT INTO `wp_rg_lead_detail` VALUES("3330", "404", "14", "4", "madcaparchaeologist@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3331", "404", "14", "5", "Depression, stress, just relocated to Victoria and have no clinical supports here. UVIC counseling services and Dr. Brydon recommended finding an off-campus councilor as the resources there are swamped.\r\n\r\nSchedule:\r\nMo: After 2:30pm\r\nTues: Pre 11:30am and after 1:30pm\r\nWed: Pre 11:30am and after 1:30pm\r\nThu: After 2:30pm\r\nFri: Pre 11:30am and after 1:30pm\r\nWeekends: open\r\n\r\nTherapist preference: male\r\n\r\nExtended medical through UVIC student plan.");
INSERT INTO `wp_rg_lead_detail` VALUES("3332", "404", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3333", "404", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3334", "404", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3335", "404", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3336", "405", "14", "1.3", "Mawney");
INSERT INTO `wp_rg_lead_detail` VALUES("3337", "405", "14", "1.6", "Somerville");
INSERT INTO `wp_rg_lead_detail` VALUES("3338", "405", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("3339", "405", "14", "3", "(250) 896-0447");
INSERT INTO `wp_rg_lead_detail` VALUES("3340", "405", "14", "4", "mawneysomerville@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3341", "405", "14", "5", "Experiencing symptoms of anxiety and depression. Would prefer a female therapist.");
INSERT INTO `wp_rg_lead_detail` VALUES("3342", "405", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3343", "405", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3344", "405", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3345", "405", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3346", "406", "14", "1.3", "Manolito");
INSERT INTO `wp_rg_lead_detail` VALUES("3347", "406", "14", "1.6", "Gulla");
INSERT INTO `wp_rg_lead_detail` VALUES("3348", "406", "14", "2", "63");
INSERT INTO `wp_rg_lead_detail` VALUES("3349", "406", "14", "3", "(778) 967-3585");
INSERT INTO `wp_rg_lead_detail` VALUES("3350", "406", "14", "4", "mgulla7@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3351", "406", "14", "5", "I have persistent pain in my lower right abdomen. Medical tests turn out negative. My doctor says the pain could be the result of emotional stress, trauma or past experiences. He recommended me to you cause he said you might be able to help. Do you do prayer healing? I am on government Income Assistance. My annual income is less than $10,000. I prefer female therapist.");
INSERT INTO `wp_rg_lead_detail` VALUES("3352", "406", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3353", "406", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3354", "406", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3355", "407", "3", "1.3", "Jamie");
INSERT INTO `wp_rg_lead_detail` VALUES("3356", "407", "3", "1.6", "Walden");
INSERT INTO `wp_rg_lead_detail` VALUES("3357", "407", "3", "2", "01jwalden@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3358", "407", "3", "3.1", "1807 Barrett Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("3359", "407", "3", "3.3", "North Saanich");
INSERT INTO `wp_rg_lead_detail` VALUES("3360", "407", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3361", "407", "3", "3.5", "V8l5a3");
INSERT INTO `wp_rg_lead_detail` VALUES("3362", "407", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3363", "407", "3", "4", "(250) 818-0433");
INSERT INTO `wp_rg_lead_detail` VALUES("3364", "407", "3", "7", "Mar/18/2017");
INSERT INTO `wp_rg_lead_detail` VALUES("3365", "407", "3", "5", "Me and my personality..Intro to Myers Briggs");
INSERT INTO `wp_rg_lead_detail` VALUES("3367", "408", "14", "1.3", "Erin");
INSERT INTO `wp_rg_lead_detail` VALUES("3368", "408", "14", "1.6", "Bonin");
INSERT INTO `wp_rg_lead_detail` VALUES("3369", "408", "14", "2", "20");
INSERT INTO `wp_rg_lead_detail` VALUES("3370", "408", "14", "3", "(604) 902-1488");
INSERT INTO `wp_rg_lead_detail` VALUES("3371", "408", "14", "4", "erinbonin@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3372", "408", "14", "5", "Depression, anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3373", "408", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3374", "408", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3375", "408", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3376", "408", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3377", "409", "14", "1.3", "Aaron");
INSERT INTO `wp_rg_lead_detail` VALUES("3378", "409", "14", "1.6", "Brook");
INSERT INTO `wp_rg_lead_detail` VALUES("3379", "409", "14", "2", "27 (September 12th, 1989)");
INSERT INTO `wp_rg_lead_detail` VALUES("3380", "409", "14", "3", "(250) 888-8169");
INSERT INTO `wp_rg_lead_detail` VALUES("3381", "409", "14", "4", "aaronbrook@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3382", "409", "14", "5", "I have some extended coverage from GWL, but I don\'t believe it includes counselling apart from psychologists.  Have history with psychiatry and anti-depressants, but been flying solo for about a year and a half now.");
INSERT INTO `wp_rg_lead_detail` VALUES("3383", "409", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3384", "409", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3385", "409", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("3386", "409", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3387", "409", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3388", "410", "14", "1.3", "Milah");
INSERT INTO `wp_rg_lead_detail` VALUES("3389", "410", "14", "1.6", "Smith");
INSERT INTO `wp_rg_lead_detail` VALUES("3390", "410", "14", "2", "33");
INSERT INTO `wp_rg_lead_detail` VALUES("3391", "410", "14", "3", "(778) 350-1983");
INSERT INTO `wp_rg_lead_detail` VALUES("3392", "410", "14", "4", "milahrsmith@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3393", "410", "14", "5", "I would like support with some grief issues and ongoing support with insecurity and I would prefer a female counsellor.");
INSERT INTO `wp_rg_lead_detail` VALUES("3394", "410", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3395", "410", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3396", "410", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3397", "411", "14", "1.3", "Michael");
INSERT INTO `wp_rg_lead_detail` VALUES("3398", "411", "14", "1.6", "Llarena");
INSERT INTO `wp_rg_lead_detail` VALUES("3399", "411", "14", "2", "23");
INSERT INTO `wp_rg_lead_detail` VALUES("3400", "411", "14", "3", "(778) 587-7488");
INSERT INTO `wp_rg_lead_detail` VALUES("3401", "411", "14", "4", "michael.llarena21@gmail.comme");
INSERT INTO `wp_rg_lead_detail` VALUES("3402", "411", "14", "5", "Me and my girlfriend are having a baby in july and are having relationship problems and would like some help.  My girlfriend brandie is 26 and she has extended health benefits and we always have sunday monday and if possible a female therapiat . Thank you for your time");
INSERT INTO `wp_rg_lead_detail` VALUES("3403", "411", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3404", "411", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3405", "411", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3406", "411", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3407", "412", "14", "1.3", "Regan");
INSERT INTO `wp_rg_lead_detail` VALUES("3408", "412", "14", "1.6", "Shrumm");
INSERT INTO `wp_rg_lead_detail` VALUES("3409", "412", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("3410", "412", "14", "3", "(250) 896-8266");
INSERT INTO `wp_rg_lead_detail` VALUES("3411", "412", "14", "4", "rshrumm@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3412", "412", "14", "5", "I have been diagnosed with depression and anxiety, and use to use UVic\'s counselling services when I was a student there. However, it has been over a year since I graduated, and I have been in a long depression slump. I have been taking on more and more projects to make the world a better place, but it has been crippling on my own health. I am feeling very overwhelmed.\r\n\r\nI prefer a female therapist, and I do not have extended health benefits. I work Tuesday to Saturday, 8 am to 5 pm. So I would be able to come in after 5pm or during the day on Mondays and Sundays.");
INSERT INTO `wp_rg_lead_detail` VALUES("3413", "412", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3414", "412", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3415", "412", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3416", "412", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("3417", "413", "15", "1", "Renaud Dufresne");
INSERT INTO `wp_rg_lead_detail` VALUES("3418", "413", "15", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3419", "413", "15", "10", "20/02/1996");
INSERT INTO `wp_rg_lead_detail` VALUES("3420", "413", "15", "4", "kingult@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3421", "413", "15", "7", "(250) 475-3839");
INSERT INTO `wp_rg_lead_detail` VALUES("3422", "413", "15", "3.1", "12-3535 Calumet Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("3423", "413", "15", "3.2", "12-3535 Calumet Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("3424", "413", "15", "3.3", "VICTORIA");
INSERT INTO `wp_rg_lead_detail` VALUES("3425", "413", "15", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3426", "413", "15", "3.5", "V8X 1V7");
INSERT INTO `wp_rg_lead_detail` VALUES("3427", "413", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3428", "413", "15", "8", "Email:\r\nkingult@yahoo.ca\r\nor \r\nPhone:\r\n250-475-3839");
INSERT INTO `wp_rg_lead_detail` VALUES("3429", "413", "15", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("3430", "413", "15", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("3431", "413", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3432", "413", "15", "17", "20 mg. citalopram");
INSERT INTO `wp_rg_lead_detail` VALUES("3433", "413", "15", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_rg_lead_detail` VALUES("3434", "414", "14", "1.3", "Ellen");
INSERT INTO `wp_rg_lead_detail` VALUES("3435", "414", "14", "1.6", "Reynolds");
INSERT INTO `wp_rg_lead_detail` VALUES("3436", "414", "14", "2", "47");
INSERT INTO `wp_rg_lead_detail` VALUES("3437", "414", "14", "3", "(250) 882-3616");
INSERT INTO `wp_rg_lead_detail` VALUES("3438", "414", "14", "4", "ellenandcharlie@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3439", "414", "14", "5", "Depression and anxiety related to life transition and work.");
INSERT INTO `wp_rg_lead_detail` VALUES("3440", "414", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3441", "414", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("3442", "414", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3443", "414", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3444", "415", "14", "1.3", "Adrienne");
INSERT INTO `wp_rg_lead_detail` VALUES("3445", "415", "14", "1.6", "Jopp");
INSERT INTO `wp_rg_lead_detail` VALUES("3446", "415", "14", "2", "38");
INSERT INTO `wp_rg_lead_detail` VALUES("3447", "415", "14", "3", "(250) 661-5462");
INSERT INTO `wp_rg_lead_detail` VALUES("3448", "415", "14", "4", "adriennejopp@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3449", "415", "14", "5", "For the last 4 years I have really been struggling in my marriage and my husband is not really interested in talking about it or participating in counselling. We have two little kids who are 2 and 4 and I do everything. All the cleaning, cooking, driving, grocery shopping etc, but I also fully provide financially for myself and the two kids which is very stressful for me. My husband works full time  and has a business on the side where he works on the weekend, so he is never home  but he doesn\'t make enough money to support us and he is not willing to make changes to his lifestyle in order to make enough money to support us. I am at the end of my rope and want a divorce.I prefer a female therapist and am available to come to appointments during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3450", "415", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3451", "415", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3452", "415", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("3453", "416", "14", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("3454", "416", "14", "1.6", "Sabourin");
INSERT INTO `wp_rg_lead_detail` VALUES("3455", "416", "14", "2", "32");
INSERT INTO `wp_rg_lead_detail` VALUES("3456", "416", "14", "3", "(403) 703-5366");
INSERT INTO `wp_rg_lead_detail` VALUES("3457", "416", "14", "4", "jensabourin@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3458", "416", "14", "5", "Complete loss of drive and passion for advancing career, interests, hobbies and life. Probably depression. \r\nAnxiety. Though not at the point of full blown attacks anymore. Mostly social anxiety.\r\nInability to maintain friendships or regular contact. I\'ve been trying to work on it this year, but have not been very effective.  \r\nLoss/grief for a family member that I haven\'t been able to let go of for 5 years for some reason. \r\nVery low self confidence. \r\nRelationship issues. Four years ago I accepted that I am predominantly interested in women. However, I now have deep anxieties with being part of the community later in life. I have been single four years. I don\'t know how to talk to people anymore, and feel there may be a lot of expectations or judgments surrounding me being so new, yet older.  \r\nNote: I do have Graves Disease, so this could potentially be a contributing factor.");
INSERT INTO `wp_rg_lead_detail` VALUES("3459", "416", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3460", "416", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3461", "416", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3462", "416", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3463", "416", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("3464", "417", "14", "1.3", "Evan");
INSERT INTO `wp_rg_lead_detail` VALUES("3465", "417", "14", "1.6", "Somerville");
INSERT INTO `wp_rg_lead_detail` VALUES("3466", "417", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("3467", "417", "14", "3", "(250) 896-7545");
INSERT INTO `wp_rg_lead_detail` VALUES("3468", "417", "14", "4", "esomer_9@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3469", "417", "14", "5", "Anxiety: related to\r\n \r\nâž¢	Sleep \r\no	Difficulty falling asleep \r\no	Mild somniphobia â†’ Anxious to fall asleep\r\nâž¢	Hobbies\r\no	Exercise â†’ fixated / OCD / canâ€™t focus on anything else until complete unless set time pre determined \r\nâž¢	Physical health\r\no	IBS â†’ flare up when stressed / anxious / nervous \r\no	Eczema â†’ flare up when stressed / anxious / nervous \r\no	Picking â†’ constantly nails (+biting) / skin / chest / face\r\no	Acid Reflux â†’ exercise and stressed induced \r\nâž¢	Work\r\no	Stressed / anxious even when good day ahead/low stress \r\no	Anxious about only working part time \r\nâž¢	Tasks\r\no	Procrastinate despite feeling stressed \r\no	Constantly thinking â€˜what is happening nextâ€™ (canâ€™t live in moment) \r\no	Canâ€™t concentrate \r\n\r\nEmotion: related to\r\n\r\nâž¢	Hobbies: \r\no	Guitar â†’ â€˜what is the pointâ€™\r\no	Video gaming â†’ â€˜brain goes numb donâ€™t have to thinkâ€™\r\no	Exercise â†’ unrealistic goals \r\nâž¢	Affect: \r\no	Inappropriate to the situation \r\nâ€¢	Example: says happy when facial expression, body language, tone of voice all express low/sad/irritable â†’ becomes defensive and irrational when questioned or asked about it \r\nâž¢	Mood: \r\no	Low / sad\r\no	Foggy \r\no	Loss of interest â†’ sex/hobbies/work/exercise \r\no	Angry / irritable / restless \r\no	Glass half empty attitude about everything \r\no	Hopeless \r\nâ€¢	â€œlife isnâ€™t â€˜working outâ€™ no matter what I doâ€\r\nâ€¢	â€œwish/hope work would just let me go so I donâ€™t have to worry about itâ€ \r\no	fear of rejection â†’ distressing/hurtful work feedback from past    \r\n\r\nRelationships:\r\n\r\nâž¢	personal relationships â€“ wife \r\nâž¢	social â€“ talking over people / unable to focus \r\n\r\nPersonal:\r\n\r\nâž¢	self reflection / perspective \r\nâž¢	prayer \r\nâž¢	journaling \r\nâž¢	counselor\r\nâž¢	exercise\r\nâž¢	3 things each day thankful for \r\nâž¢	follow the rabbit trail â€“ ie what is the worst case scenario \r\n\r\nWant:\r\nâž¢	plan\r\nâž¢	goal / marked progress \r\nâž¢	help \r\nâž¢	assessment / diagnosis");
INSERT INTO `wp_rg_lead_detail` VALUES("3470", "417", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3471", "417", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3472", "417", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3473", "417", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3474", "417", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("3475", "418", "15", "1", "Lidia White");
INSERT INTO `wp_rg_lead_detail` VALUES("3476", "418", "15", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("3477", "418", "15", "10", "Aug.4, 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("3478", "418", "15", "4", "lidia_44@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3479", "418", "15", "7", "(250) 896-3656");
INSERT INTO `wp_rg_lead_detail` VALUES("3480", "418", "15", "3.1", "111-3187 Shelbourne St.");
INSERT INTO `wp_rg_lead_detail` VALUES("3481", "418", "15", "3.3", "Victoria,");
INSERT INTO `wp_rg_lead_detail` VALUES("3482", "418", "15", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3483", "418", "15", "3.5", "V8P 3A6");
INSERT INTO `wp_rg_lead_detail` VALUES("3484", "418", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3485", "418", "15", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("3486", "418", "15", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("3487", "418", "15", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("3488", "418", "15", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3489", "418", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3490", "418", "15", "17", "Risperadal 1mg twice daily\r\nZoloft 100mg once a day in morning");
INSERT INTO `wp_rg_lead_detail` VALUES("3491", "418", "15", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_rg_lead_detail` VALUES("3492", "419", "14", "1.3", "Jake");
INSERT INTO `wp_rg_lead_detail` VALUES("3493", "419", "14", "1.6", "Zaiss");
INSERT INTO `wp_rg_lead_detail` VALUES("3494", "419", "14", "2", "41");
INSERT INTO `wp_rg_lead_detail` VALUES("3495", "419", "14", "3", "(250) 510-6720");
INSERT INTO `wp_rg_lead_detail` VALUES("3496", "419", "14", "4", "jakezaiss@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3497", "419", "14", "5", "I\'m worried my marriage is breaking down. Many of the issues that we\'ve been having are not going away. Things just seem to be magnifying. \r\nMy wife and I made a deal to each look into counselling.");
INSERT INTO `wp_rg_lead_detail` VALUES("3498", "419", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3499", "419", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3500", "419", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3501", "419", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3502", "420", "14", "1.3", "Mari-Etha");
INSERT INTO `wp_rg_lead_detail` VALUES("3503", "420", "14", "1.6", "Alston");
INSERT INTO `wp_rg_lead_detail` VALUES("3504", "420", "14", "2", "56");
INSERT INTO `wp_rg_lead_detail` VALUES("3505", "420", "14", "3", "(250) 598-4286");
INSERT INTO `wp_rg_lead_detail` VALUES("3506", "420", "14", "4", "marietha@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("3507", "420", "14", "5", "I have an extensive history of counseling through an abusive marriage, traumatic divorce, grief counseling (Dr. Philip Ney) following death of spouse, single parenting and most recent abusive marriage and presently legally separated.  Recent conflicts and loss and pain caused serious thoughts of suicide over the weekend. Friends and crisis line got me through the weekend. Coping enough to show up at work and exercise. Can\'t pray and can\'t talk to loved ones.  Too scared to communicate with children, pray or go to church.\r\n\r\nMargaret Andersen, please.");
INSERT INTO `wp_rg_lead_detail` VALUES("3508", "420", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3509", "420", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3510", "420", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3511", "420", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3512", "421", "14", "1.3", "Erin");
INSERT INTO `wp_rg_lead_detail` VALUES("3513", "421", "14", "1.6", "Harland");
INSERT INTO `wp_rg_lead_detail` VALUES("3514", "421", "14", "2", "30");
INSERT INTO `wp_rg_lead_detail` VALUES("3515", "421", "14", "3", "(250) 419-3366");
INSERT INTO `wp_rg_lead_detail` VALUES("3516", "421", "14", "4", "erinharland10@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3517", "421", "14", "5", "I work M-F until 3:30pm downtown, so appointments outside of that would work best for me. I prefer a female therapist. I have extended health benefits with Empire Life. One of my close friends passed away recently, so I would like counselling in helping to deal with the loss.");
INSERT INTO `wp_rg_lead_detail` VALUES("3518", "421", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3519", "421", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3520", "421", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3521", "421", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3522", "422", "14", "1.3", "Jacqueline");
INSERT INTO `wp_rg_lead_detail` VALUES("3523", "422", "14", "1.6", "Irvine");
INSERT INTO `wp_rg_lead_detail` VALUES("3524", "422", "14", "2", "29");
INSERT INTO `wp_rg_lead_detail` VALUES("3525", "422", "14", "3", "(778) 350-1050");
INSERT INTO `wp_rg_lead_detail` VALUES("3526", "422", "14", "4", "qui.est@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3527", "422", "14", "5", "Fiance and I both struggle with severe mood disorders. Looking for premarital / marriage preparedness counselling to help be ready to support each other fully. I am a UVic student, he works as a counter top manufacturer. Prefer a male therapist, but not too picky.");
INSERT INTO `wp_rg_lead_detail` VALUES("3528", "422", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3529", "422", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("3530", "422", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3531", "422", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3532", "423", "14", "1.3", "Crystal");
INSERT INTO `wp_rg_lead_detail` VALUES("3533", "423", "14", "1.6", "Derry");
INSERT INTO `wp_rg_lead_detail` VALUES("3534", "423", "14", "2", "24");
INSERT INTO `wp_rg_lead_detail` VALUES("3535", "423", "14", "3", "(778) 533-0463");
INSERT INTO `wp_rg_lead_detail` VALUES("3536", "423", "14", "4", "crystal@synqtech.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3537", "423", "14", "5", "I was referred to you by Citizens Counselling. I saw a counsellor there last year for depression, anxiety and anorexia. I have had all these issues ongoing on and off for the last 12 years. It became worse last year as I was getting out of an abusive relationship and I sought out help again. I was better for a while after counselling at Citizens,  but it is getting worse again, and I would really like to break this cycle. \r\n\r\nI work Monday-Friday 9-5:30, so sometime outside of that would be ideal. \r\nI do not have a preference in male or female therapist.  \r\nI have no health coverage. $30 is probably all I can afford.");
INSERT INTO `wp_rg_lead_detail` VALUES("3538", "423", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3539", "423", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3540", "423", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3541", "423", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3542", "424", "14", "1.3", "Duncan");
INSERT INTO `wp_rg_lead_detail` VALUES("3543", "424", "14", "1.6", "McAllister");
INSERT INTO `wp_rg_lead_detail` VALUES("3544", "424", "14", "2", "19");
INSERT INTO `wp_rg_lead_detail` VALUES("3545", "424", "14", "3", "(604) 996-1227");
INSERT INTO `wp_rg_lead_detail` VALUES("3546", "424", "14", "4", "duncan.mcallsiter13@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3547", "424", "14", "5", "Looking for a counsellor to help with my depression and mental health concerns. Available throughout the day and evening. I would prefer a male therapist. Currently a Camosun student with the student benefits package.");
INSERT INTO `wp_rg_lead_detail` VALUES("3548", "424", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3549", "424", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3550", "424", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3551", "424", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3552", "424", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3554", "425", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3555", "425", "10", "10", "07/12/1999");
INSERT INTO `wp_rg_lead_detail` VALUES("3556", "425", "10", "4", "Dawnadrapeau@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3557", "425", "10", "2", "Dawna Drapeau");
INSERT INTO `wp_rg_lead_detail` VALUES("3558", "425", "10", "3.1", "592 Baran Place");
INSERT INTO `wp_rg_lead_detail` VALUES("3559", "425", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("3560", "425", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3561", "425", "10", "3.5", "V8Z 2A2");
INSERT INTO `wp_rg_lead_detail` VALUES("3562", "425", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3563", "425", "10", "5", "Dawnadrapeau@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3564", "425", "10", "6", "(250) 477-2995");
INSERT INTO `wp_rg_lead_detail` VALUES("3565", "425", "10", "8", "Phone or e-mail");
INSERT INTO `wp_rg_lead_detail` VALUES("3566", "425", "10", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("3567", "425", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3568", "425", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("3569", "425", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("3570", "425", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3571", "425", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3572", "425", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3573", "425", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3575", "426", "14", "1.3", "Maggie");
INSERT INTO `wp_rg_lead_detail` VALUES("3576", "426", "14", "1.6", "Campbell");
INSERT INTO `wp_rg_lead_detail` VALUES("3577", "426", "14", "2", "59");
INSERT INTO `wp_rg_lead_detail` VALUES("3578", "426", "14", "3", "(250) 216-9966");
INSERT INTO `wp_rg_lead_detail` VALUES("3579", "426", "14", "4", "maggie3@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3580", "426", "14", "5", "I just need someone to talk to. I prefer a female therapist.  I have been a pastor\'s wife for almost 29 years,  As well, I have a job outside of the church.  The past few months I have felt at the breaking point.  I am not certain I need ongoing counselling, I just need a safe listening ear where I can unload everything without fear.   Due to the nature of ministry life, having close friends is not a reality, so I am seeking the next best thing I guess.    My benefits package at work does not cover counselling services.");
INSERT INTO `wp_rg_lead_detail` VALUES("3581", "426", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3582", "426", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3583", "426", "14", "9.1", "$120-80");
INSERT INTO `wp_rg_lead_detail` VALUES("3584", "427", "3", "1.3", "Sophia");
INSERT INTO `wp_rg_lead_detail` VALUES("3585", "427", "3", "1.6", "Pettigrew");
INSERT INTO `wp_rg_lead_detail` VALUES("3586", "427", "3", "2", "spettigrew@sd63.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3587", "427", "3", "3.1", "1024 Benvenuto Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("3588", "427", "3", "3.3", "1024 Benventuo Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("3589", "427", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3590", "427", "3", "3.5", "Brentwood Bay");
INSERT INTO `wp_rg_lead_detail` VALUES("3591", "427", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3592", "427", "3", "4", "(250) 216-4530");
INSERT INTO `wp_rg_lead_detail` VALUES("3593", "427", "3", "7", "03/18/2017");
INSERT INTO `wp_rg_lead_detail` VALUES("3594", "427", "3", "5", "March 18th");
INSERT INTO `wp_rg_lead_detail` VALUES("3596", "428", "14", "1.3", "Vanisa");
INSERT INTO `wp_rg_lead_detail` VALUES("3597", "428", "14", "1.6", "Punwani");
INSERT INTO `wp_rg_lead_detail` VALUES("3598", "428", "14", "2", "23");
INSERT INTO `wp_rg_lead_detail` VALUES("3599", "428", "14", "3", "(250) 813-0151");
INSERT INTO `wp_rg_lead_detail` VALUES("3600", "428", "14", "4", "vanisapunwani@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3601", "428", "14", "5", "Tuesday afternoon\r\nWednesday afternoon or evening\r\nThursday afternoon\r\nFriday afternoon or evening\r\n\r\nPrefer female therapist\r\n\r\nYes,extended health through Greenshield.");
INSERT INTO `wp_rg_lead_detail` VALUES("3602", "428", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3603", "428", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3604", "428", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3605", "428", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3606", "429", "14", "1.3", "Ellen");
INSERT INTO `wp_rg_lead_detail` VALUES("3607", "429", "14", "1.6", "Reynolds");
INSERT INTO `wp_rg_lead_detail` VALUES("3608", "429", "14", "2", "47");
INSERT INTO `wp_rg_lead_detail` VALUES("3609", "429", "14", "3", "(250) 882-3616");
INSERT INTO `wp_rg_lead_detail` VALUES("3610", "429", "14", "4", "ellenandcharlie@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3611", "429", "14", "5", "Anxiety, life/work transitions. Vicarious trauma. I called in a few weeks ago and and did this intake but my financial situation has changed since then. Thanks :)");
INSERT INTO `wp_rg_lead_detail` VALUES("3612", "429", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3613", "429", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3614", "429", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("3615", "429", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3616", "429", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3618", "430", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3619", "430", "10", "10", "June 11, 1999");
INSERT INTO `wp_rg_lead_detail` VALUES("3620", "430", "10", "4", "nt5432@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3621", "430", "10", "7", "(778) 977-8176");
INSERT INTO `wp_rg_lead_detail` VALUES("3622", "430", "10", "2", "Scott Treble and Kristine Allison");
INSERT INTO `wp_rg_lead_detail` VALUES("3623", "430", "10", "3.1", "1829 Knutsford Place");
INSERT INTO `wp_rg_lead_detail` VALUES("3624", "430", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("3625", "430", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3626", "430", "10", "3.5", "V8N6E3");
INSERT INTO `wp_rg_lead_detail` VALUES("3627", "430", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3628", "430", "10", "5", "scott.treble@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3629", "430", "10", "6", "(250) 477-4438");
INSERT INTO `wp_rg_lead_detail` VALUES("3630", "430", "10", "8", "Email:\r\nkristine.allison@shaw.ca\r\nscott.treble@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3631", "430", "10", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("3632", "430", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3633", "430", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("3634", "430", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("3635", "430", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3636", "430", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3637", "430", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3638", "431", "15", "1", "Stefan Overgaard");
INSERT INTO `wp_rg_lead_detail` VALUES("3639", "431", "15", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3640", "431", "15", "10", "23/03/1996");
INSERT INTO `wp_rg_lead_detail` VALUES("3641", "431", "15", "4", "sovergaard96@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3642", "431", "15", "7", "(780) 952-9877");
INSERT INTO `wp_rg_lead_detail` VALUES("3643", "431", "15", "3.1", "66 Cranfield Green SE");
INSERT INTO `wp_rg_lead_detail` VALUES("3644", "431", "15", "3.3", "Calgary");
INSERT INTO `wp_rg_lead_detail` VALUES("3645", "431", "15", "3.4", "Alberta");
INSERT INTO `wp_rg_lead_detail` VALUES("3646", "431", "15", "3.5", "T3M1C5");
INSERT INTO `wp_rg_lead_detail` VALUES("3647", "431", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3648", "431", "15", "8", "7809529877");
INSERT INTO `wp_rg_lead_detail` VALUES("3649", "431", "15", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("3650", "431", "15", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3651", "431", "15", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("3652", "431", "15", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3653", "431", "15", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3654", "431", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3655", "431", "15", "17", "No. Trying supplements such as magnesium and holy basil.");
INSERT INTO `wp_rg_lead_detail` VALUES("3656", "431", "15", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_rg_lead_detail` VALUES("3658", "432", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("3659", "432", "10", "10", "31/05/2001");
INSERT INTO `wp_rg_lead_detail` VALUES("3660", "432", "10", "4", "sarah_morris@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3661", "432", "10", "7", "(250) 508-3224");
INSERT INTO `wp_rg_lead_detail` VALUES("3662", "432", "10", "2", "Julie Morris");
INSERT INTO `wp_rg_lead_detail` VALUES("3663", "432", "10", "3.1", "1121 totem lane");
INSERT INTO `wp_rg_lead_detail` VALUES("3664", "432", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("3665", "432", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3666", "432", "10", "3.5", "V8y1e8");
INSERT INTO `wp_rg_lead_detail` VALUES("3667", "432", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3668", "432", "10", "5", "julie.morris@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3669", "432", "10", "6", "(250) 813-0788");
INSERT INTO `wp_rg_lead_detail` VALUES("3670", "432", "10", "8", "Cell phone");
INSERT INTO `wp_rg_lead_detail` VALUES("3671", "432", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("3672", "432", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3673", "432", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("3674", "432", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3675", "432", "10", "17", "54 mg Strattera, 3.5mg olanzapene, 20 mg escitalopram");
INSERT INTO `wp_rg_lead_detail` VALUES("3676", "433", "14", "1.3", "Hayley");
INSERT INTO `wp_rg_lead_detail` VALUES("3677", "433", "14", "1.6", "Dunahee");
INSERT INTO `wp_rg_lead_detail` VALUES("3678", "433", "14", "2", "19 (on March 27)");
INSERT INTO `wp_rg_lead_detail` VALUES("3679", "433", "14", "3", "(778) 430-0670");
INSERT INTO `wp_rg_lead_detail` VALUES("3680", "433", "14", "4", "kmdunahee@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3681", "433", "14", "5", "My name is Karen Dunahee, I am contacting you on behalf of my niece Hayley.  Hayley, who is turning 19yrs in a few weeks, has very low self esteem and social skills.  She has never really had any friends and isn\'t able to make friendships very easily.  She also has a tough home life.... I took her to counselling when she was 11yrs old because of all the difficulty she had in school and at home but because of her age her parents needed to be informed.  Unfortunately her mother forbade it and made Hayley feel guilty for going and her father didn\'t want to upset his wife.  Now that Hayley is out of the school system, she if feeling very lost... she has no direction, cannot make decisions even about simple things, and doesn\'t understand why she is so different from others.  I love my niece very much and I am very worried about her.  I don\'t know how to help her.... I try to go out for \"coffee\" once a week so that she \"can talk\" and text her daily to say hi but.... how to help her feel better about herself or to get involved with society.... is beyond what I know how to do.  \r\nI have spoken to Hayley about speaking to a professional, she was open to it a little and she didn\'t say \"no\"...but knowing her like I do, I know she just needs help taking the first step.  Obviously, I would get her permission before actually setting up an appointment but all I know how to do, right now, is reach out and get the conversation started for her.\r\nI have left my contact phone number and email to speak with me.  Meanwhile, I will let her know that I have contacted you today.\r\nI hope you can help me to help my niece.\r\n\r\nSincerely\r\nKaren Dunahee\r\n778-430-0670\r\nkmdunahee@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3682", "433", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3683", "433", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3684", "433", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3686", "434", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3687", "434", "10", "10", "05/11/2001");
INSERT INTO `wp_rg_lead_detail` VALUES("3688", "434", "10", "4", "cowman800@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3689", "434", "10", "7", "(778) 587-8378");
INSERT INTO `wp_rg_lead_detail` VALUES("3690", "434", "10", "2", "Briana Wafer");
INSERT INTO `wp_rg_lead_detail` VALUES("3691", "434", "10", "3.1", "1950 Casa Marcia Cr.");
INSERT INTO `wp_rg_lead_detail` VALUES("3692", "434", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("3693", "434", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3694", "434", "10", "3.5", "V8N 2X3");
INSERT INTO `wp_rg_lead_detail` VALUES("3695", "434", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3696", "434", "10", "5", "briana.wafer@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3697", "434", "10", "6", "(778) 584-0778");
INSERT INTO `wp_rg_lead_detail` VALUES("3698", "434", "10", "8", "Email to guardian (cc to participant)");
INSERT INTO `wp_rg_lead_detail` VALUES("3699", "434", "10", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("3700", "434", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3701", "434", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3702", "434", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3703", "434", "10", "17", "Has complex migraines which cannot be medicated beyond ibuprofen and anti-nausea medication, so managing stress and anxiety is very important.");
INSERT INTO `wp_rg_lead_detail` VALUES("3704", "435", "14", "1.3", "Marina");
INSERT INTO `wp_rg_lead_detail` VALUES("3705", "435", "14", "1.6", "Glassford");
INSERT INTO `wp_rg_lead_detail` VALUES("3706", "435", "14", "2", "24");
INSERT INTO `wp_rg_lead_detail` VALUES("3707", "435", "14", "3", "(250) 213-6263");
INSERT INTO `wp_rg_lead_detail` VALUES("3708", "435", "14", "4", "m.glassford@live.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3709", "435", "14", "5", "I\'m struggling with anxiety and depression and I need some help to overcome these issues so I can live a better, more productive life. I\'m available anytime at the moment. I don\'t have any extended medical benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("3710", "435", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3711", "435", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3712", "435", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("3713", "436", "15", "1", "Stefan Overgaard");
INSERT INTO `wp_rg_lead_detail` VALUES("3714", "436", "15", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3715", "436", "15", "10", "23/03/1996");
INSERT INTO `wp_rg_lead_detail` VALUES("3716", "436", "15", "4", "sovergaard96@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3717", "436", "15", "7", "(780) 952-9877");
INSERT INTO `wp_rg_lead_detail` VALUES("3718", "436", "15", "3.1", "66 Cranfield Green SE");
INSERT INTO `wp_rg_lead_detail` VALUES("3719", "436", "15", "3.3", "Calgary");
INSERT INTO `wp_rg_lead_detail` VALUES("3720", "436", "15", "3.4", "Alberta");
INSERT INTO `wp_rg_lead_detail` VALUES("3721", "436", "15", "3.5", "T3M1C5");
INSERT INTO `wp_rg_lead_detail` VALUES("3722", "436", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3723", "436", "15", "8", "7809529877");
INSERT INTO `wp_rg_lead_detail` VALUES("3724", "436", "15", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("3725", "436", "15", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3726", "436", "15", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("3727", "436", "15", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3728", "436", "15", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3729", "436", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3730", "436", "15", "17", "No. Trying supplements such as magnesium and holy basil.");
INSERT INTO `wp_rg_lead_detail` VALUES("3731", "436", "15", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_rg_lead_detail` VALUES("3732", "437", "15", "1", "Marina Glassford");
INSERT INTO `wp_rg_lead_detail` VALUES("3733", "437", "15", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("3734", "437", "15", "10", "22/05/1992");
INSERT INTO `wp_rg_lead_detail` VALUES("3735", "437", "15", "4", "m.glassford@live.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3736", "437", "15", "7", "(250) 213-6263");
INSERT INTO `wp_rg_lead_detail` VALUES("3737", "437", "15", "3.1", "2840 mt newton x rd");
INSERT INTO `wp_rg_lead_detail` VALUES("3738", "437", "15", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("3739", "437", "15", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3740", "437", "15", "3.5", "V8m2e4");
INSERT INTO `wp_rg_lead_detail` VALUES("3741", "437", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3742", "437", "15", "8", "Email");
INSERT INTO `wp_rg_lead_detail` VALUES("3743", "437", "15", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("3744", "437", "15", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("3745", "437", "15", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("3746", "437", "15", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3747", "437", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3748", "437", "15", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3749", "437", "15", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_rg_lead_detail` VALUES("3750", "438", "14", "1.3", "Ashley");
INSERT INTO `wp_rg_lead_detail` VALUES("3751", "438", "14", "1.6", "Creed");
INSERT INTO `wp_rg_lead_detail` VALUES("3752", "438", "14", "2", "20");
INSERT INTO `wp_rg_lead_detail` VALUES("3753", "438", "14", "3", "(250) 508-9087");
INSERT INTO `wp_rg_lead_detail` VALUES("3754", "438", "14", "4", "Crashley64@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3755", "438", "14", "5", "Self esstem issues\r\nAvailability wednsday\'s after 2 or Friday\'s after 2\r\nPrefer female counsler");
INSERT INTO `wp_rg_lead_detail` VALUES("3756", "438", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3757", "438", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3758", "438", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3759", "439", "14", "1.3", "Denise");
INSERT INTO `wp_rg_lead_detail` VALUES("3760", "439", "14", "1.6", "Morales");
INSERT INTO `wp_rg_lead_detail` VALUES("3761", "439", "14", "2", "n/a");
INSERT INTO `wp_rg_lead_detail` VALUES("3762", "439", "14", "3", "(547) 458-4585");
INSERT INTO `wp_rg_lead_detail` VALUES("3763", "439", "14", "4", "dmorales@thewaterpage.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3764", "439", "14", "5", "I wanted to send you a short email to say thanks for your page, http://localhost:8888/TestSICPage/wordpress/resources-2. I volunteer with a children\'s group, where I help plan different events. One of our members is teaching the teen group about mental health and suicide prevention, so I wanted to find some online resources for it. Your page has some great info for this - thanks so much!\r\n\r\nMy daughter, Alicia, found another page on suicide prevention while helping me research, http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/ . Can you include this in your list of links? She very passionate about spreading the word about mental health because her cousin has depression, so I thought her sharing her suggestion would give her an extra boost, plus help others online. :-)\r\n\r\nIf you have any advice for our group, feel free to share. Thanks again!\r\n\r\nBest,\r\nDenise Morales");
INSERT INTO `wp_rg_lead_detail` VALUES("3765", "439", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3766", "439", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3767", "439", "14", "9.1", "$120-80");
INSERT INTO `wp_rg_lead_detail` VALUES("3768", "440", "14", "1.3", "Kerry-anne");
INSERT INTO `wp_rg_lead_detail` VALUES("3769", "440", "14", "1.6", "Doole");
INSERT INTO `wp_rg_lead_detail` VALUES("3770", "440", "14", "2", "44");
INSERT INTO `wp_rg_lead_detail` VALUES("3771", "440", "14", "3", "(250) 813-2161");
INSERT INTO `wp_rg_lead_detail` VALUES("3772", "440", "14", "4", "Sammie2372@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3773", "440", "14", "5", "Struggling with weight and food issues");
INSERT INTO `wp_rg_lead_detail` VALUES("3774", "440", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3775", "440", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3776", "440", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3777", "440", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3778", "441", "14", "1.3", "Daniel");
INSERT INTO `wp_rg_lead_detail` VALUES("3779", "441", "14", "1.6", "Philion");
INSERT INTO `wp_rg_lead_detail` VALUES("3780", "441", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("3781", "441", "14", "3", "(250) 419-2270");
INSERT INTO `wp_rg_lead_detail` VALUES("3782", "441", "14", "4", "daniel.philion@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3783", "441", "14", "5", "I am looking for someone to discuss past issues with and the current state of my mental health. I have been struggling with some depressed feelings and have had several life changes such as deaths of friends and family, and a long term relationship ending. I have not been through formal counselling before, but I think it would be good to be proactive about it before I get worse. I work overnight so days and weekend days work best for me. As far as preference of person, I do tend to open up faster to women because most of my friends and trusted family are, but I\'m happy with anyone as I\'m sure everyone is professional and fantastic. Thank you for taking the time to read this.");
INSERT INTO `wp_rg_lead_detail` VALUES("3784", "441", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3785", "441", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3786", "441", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3787", "441", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3788", "442", "14", "1.3", "Matthew");
INSERT INTO `wp_rg_lead_detail` VALUES("3789", "442", "14", "1.6", "Spencer");
INSERT INTO `wp_rg_lead_detail` VALUES("3790", "442", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("3791", "442", "14", "3", "(306) 361-8361");
INSERT INTO `wp_rg_lead_detail` VALUES("3792", "442", "14", "4", "matthew.derek.spencer@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3793", "442", "14", "5", "Career transition, self-esteem.");
INSERT INTO `wp_rg_lead_detail` VALUES("3794", "442", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3795", "442", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3796", "442", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3797", "442", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3798", "443", "15", "1", "Dawson Vouriot");
INSERT INTO `wp_rg_lead_detail` VALUES("3799", "443", "15", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3800", "443", "15", "10", "19/10/1998");
INSERT INTO `wp_rg_lead_detail` VALUES("3801", "443", "15", "4", "Melodyvouriot@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3802", "443", "15", "7", "(250) 474-0609");
INSERT INTO `wp_rg_lead_detail` VALUES("3803", "443", "15", "3.1", "963 Bray Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("3804", "443", "15", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("3805", "443", "15", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3806", "443", "15", "3.5", "V9B2S9");
INSERT INTO `wp_rg_lead_detail` VALUES("3807", "443", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3808", "443", "15", "8", "Email");
INSERT INTO `wp_rg_lead_detail` VALUES("3809", "443", "15", "18.2", "Credit Card ($3 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("3810", "443", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3811", "443", "15", "17", "Zoloft 200 mg");
INSERT INTO `wp_rg_lead_detail` VALUES("3812", "443", "15", "19.3", "Weekend");
INSERT INTO `wp_rg_lead_detail` VALUES("3813", "444", "14", "1.3", "Danielle");
INSERT INTO `wp_rg_lead_detail` VALUES("3814", "444", "14", "1.6", "Ruhigisha");
INSERT INTO `wp_rg_lead_detail` VALUES("3815", "444", "14", "2", "16");
INSERT INTO `wp_rg_lead_detail` VALUES("3816", "444", "14", "3", "(778) 533-9177");
INSERT INTO `wp_rg_lead_detail` VALUES("3817", "444", "14", "4", "danielle.ruhigisha@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3818", "444", "14", "5", "Hello, \r\n\r\nMy name is Danielle Ruhigisha, I\'m part of the committee of mental health at Victor Brodeur, we are organizing a day of mental awareness  at our school and were wondering if there was a representative from your organization that would be willing to come to our school May 9th and set up a kiosk (Table would be provided if you could bring a few promotional objects that would be great) and talk to the students coming around in rotations about what your organization does for youth. \r\n\r\nThank you for your time,\r\n\r\nDanielle");
INSERT INTO `wp_rg_lead_detail` VALUES("3819", "444", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3820", "444", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3821", "444", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3822", "445", "14", "1.3", "Morgan");
INSERT INTO `wp_rg_lead_detail` VALUES("3823", "445", "14", "1.6", "McPherson");
INSERT INTO `wp_rg_lead_detail` VALUES("3824", "445", "14", "2", "32");
INSERT INTO `wp_rg_lead_detail` VALUES("3825", "445", "14", "3", "(250) 889-7151");
INSERT INTO `wp_rg_lead_detail` VALUES("3826", "445", "14", "4", "mcpherson.morgan@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3827", "445", "14", "5", "I have always been somewhat anxious, but I have had a few incidences of feeling like it got really out of control.\r\n\r\nI am also currently struggling with a situation of my partner\'s, and having a huge increase in anxiety accordingly.");
INSERT INTO `wp_rg_lead_detail` VALUES("3828", "445", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3829", "445", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3830", "445", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3831", "445", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3832", "446", "14", "1.3", "shianne");
INSERT INTO `wp_rg_lead_detail` VALUES("3833", "446", "14", "1.6", "Adams");
INSERT INTO `wp_rg_lead_detail` VALUES("3834", "446", "14", "2", "19");
INSERT INTO `wp_rg_lead_detail` VALUES("3835", "446", "14", "3", "(250) 686-4557");
INSERT INTO `wp_rg_lead_detail` VALUES("3836", "446", "14", "4", "shirules@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3837", "446", "14", "5", "Anxiety, depression, anger. No preference. No.");
INSERT INTO `wp_rg_lead_detail` VALUES("3838", "446", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3839", "446", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3840", "446", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3841", "446", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3842", "447", "14", "1.3", "Tiffany");
INSERT INTO `wp_rg_lead_detail` VALUES("3843", "447", "14", "1.6", "Douglas");
INSERT INTO `wp_rg_lead_detail` VALUES("3844", "447", "14", "2", "21");
INSERT INTO `wp_rg_lead_detail` VALUES("3845", "447", "14", "3", "(403) 627-9697");
INSERT INTO `wp_rg_lead_detail` VALUES("3846", "447", "14", "4", "douglas.tiffany27@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3847", "447", "14", "5", "Help with figuring out my depression. Prefer female therapist. Available Mondays all day and occasional Thursdays. No extended health benefits");
INSERT INTO `wp_rg_lead_detail` VALUES("3848", "447", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3849", "447", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3850", "447", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3851", "447", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("3852", "448", "16", "17", "2017-03-30");
INSERT INTO `wp_rg_lead_detail` VALUES("3853", "448", "16", "16", "Amber");
INSERT INTO `wp_rg_lead_detail` VALUES("3854", "448", "16", "2", "Strongly agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3855", "448", "16", "3", "Strongly agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3856", "448", "16", "4", "Strongly agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3857", "448", "16", "5", "Strongly agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3858", "448", "16", "6", "Strongly agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3859", "448", "16", "7", "Somewhat agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3860", "448", "16", "8", "Somewhat agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3861", "448", "16", "9", "Somewhat agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3862", "448", "16", "10", "Strongly agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3863", "448", "16", "11", "Somewhat agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3864", "448", "16", "12", "Strongly agree");
INSERT INTO `wp_rg_lead_detail` VALUES("3865", "448", "16", "13", "Very satisfied");
INSERT INTO `wp_rg_lead_detail` VALUES("3866", "448", "16", "14", "Very satisfied");
INSERT INTO `wp_rg_lead_detail` VALUES("3867", "448", "16", "15", "Susanne making sure that this indeed works!");
INSERT INTO `wp_rg_lead_detail` VALUES("3868", "449", "14", "1.3", "Elyse");
INSERT INTO `wp_rg_lead_detail` VALUES("3869", "449", "14", "1.6", "MacDowell");
INSERT INTO `wp_rg_lead_detail` VALUES("3870", "449", "14", "2", "30");
INSERT INTO `wp_rg_lead_detail` VALUES("3871", "449", "14", "3", "(250) 709-5053");
INSERT INTO `wp_rg_lead_detail` VALUES("3872", "449", "14", "4", "emacdowell86@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3873", "449", "14", "5", "I have anxiety and phobia problems. I\'m off medication but have been on anti anxiety meds in the past. I have seen Amber Eves before through Waypoint counselling but I need something more affordable. I make about 30k a year and I have a small benefit through my work.");
INSERT INTO `wp_rg_lead_detail` VALUES("3874", "449", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3875", "449", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3876", "449", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3877", "449", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("3878", "450", "14", "1.3", "Colin");
INSERT INTO `wp_rg_lead_detail` VALUES("3879", "450", "14", "1.6", "Harper");
INSERT INTO `wp_rg_lead_detail` VALUES("3880", "450", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("3881", "450", "14", "3", "(250) 720-5759");
INSERT INTO `wp_rg_lead_detail` VALUES("3882", "450", "14", "4", "Colmeng@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3883", "450", "14", "5", "Me and my girlfriend are looking for couples counselling. We both have trust issues and feel that counselling may be right for us if it is affordable enough. Availability is tough because both of our schedules move around, but weekends or weekdays after 6:30 would likely be best. No preference for male or female therapist. We may have some coverage under extended health benefits. I am a UVic student (back to school in May) and my girlfriend goes to Camosun (Currently). I\'m unsure whether or not UVic/Camosun\'s insurance plans would cover any of the cost. If it does this could be a great option for us.\r\n\r\nThank you for your time.");
INSERT INTO `wp_rg_lead_detail` VALUES("3884", "450", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3885", "450", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3886", "450", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3887", "450", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3888", "450", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3889", "451", "14", "1.3", "Michaela");
INSERT INTO `wp_rg_lead_detail` VALUES("3890", "451", "14", "1.6", "Baur-Samborn");
INSERT INTO `wp_rg_lead_detail` VALUES("3891", "451", "14", "2", "22");
INSERT INTO `wp_rg_lead_detail` VALUES("3892", "451", "14", "3", "(403) 968-8247");
INSERT INTO `wp_rg_lead_detail` VALUES("3893", "451", "14", "4", "Michaela.baursamborn@hotmail.ca2");
INSERT INTO `wp_rg_lead_detail` VALUES("3894", "451", "14", "5", "I deal with a lot of anxiety, problems with self worth, depression, and disordered eating. I prefer a female therapist, am currently available everyday, and do not have any extended health benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("3895", "451", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3896", "451", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3897", "451", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3898", "451", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3899", "451", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3900", "452", "14", "1.3", "Lanza");
INSERT INTO `wp_rg_lead_detail` VALUES("3901", "452", "14", "1.6", "Camden");
INSERT INTO `wp_rg_lead_detail` VALUES("3902", "452", "14", "2", "26");
INSERT INTO `wp_rg_lead_detail` VALUES("3903", "452", "14", "3", "(250) 882-9417");
INSERT INTO `wp_rg_lead_detail` VALUES("3904", "452", "14", "4", "Lanzanojo@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3905", "452", "14", "5", "My husband and I are unable to properly communicate.   We would like to do individual sessions as well as a couple. Female therapist is preferred. And we do no have extended benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("3906", "452", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3907", "452", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3908", "452", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3909", "452", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3910", "453", "14", "1.3", "Barbara");
INSERT INTO `wp_rg_lead_detail` VALUES("3911", "453", "14", "1.6", "Rider");
INSERT INTO `wp_rg_lead_detail` VALUES("3912", "453", "14", "2", "61");
INSERT INTO `wp_rg_lead_detail` VALUES("3913", "453", "14", "3", "(778) 426-1969");
INSERT INTO `wp_rg_lead_detail` VALUES("3914", "453", "14", "4", "barbararider1984@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3915", "453", "14", "5", "Not actually new client. My husband and myself saw Bill Cole for some couples counseling, related to communication issues. I now need one on one counseling for stress, anxiety and anger issues. Do not mind male or female, but I think Bill is more family, rather than individual.");
INSERT INTO `wp_rg_lead_detail` VALUES("3916", "453", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3917", "453", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3918", "453", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("3919", "454", "14", "1.3", "Benjamin");
INSERT INTO `wp_rg_lead_detail` VALUES("3920", "454", "14", "1.6", "James-Groom");
INSERT INTO `wp_rg_lead_detail` VALUES("3921", "454", "14", "2", "27");
INSERT INTO `wp_rg_lead_detail` VALUES("3922", "454", "14", "3", "(250) 889-2976");
INSERT INTO `wp_rg_lead_detail` VALUES("3923", "454", "14", "4", "groom.benjamin@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3924", "454", "14", "5", "I cope with depression and high anxiety, and at times I have existential crises. I feel disillusioned with the world as a broke millennial, and betrayed by our classist, capitalist society. Despite holding a university degree, I feel helpless and underprepared in my futile search for gainful employment. I currently work four on-call jobs, and live in a perpetual state of apprehension around when the phone will ring (or not) for my next job. As such, I am theoretically available for an appointment at any time.\r\n\r\nI have no extended benefits as I am primarily self-employed. I have no gender preference for my therapist.");
INSERT INTO `wp_rg_lead_detail` VALUES("3925", "454", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3926", "454", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3927", "454", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3928", "454", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3929", "454", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("3930", "455", "15", "1", "Jeffrey Sendall");
INSERT INTO `wp_rg_lead_detail` VALUES("3931", "455", "15", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3932", "455", "15", "10", "22/Aug/1994");
INSERT INTO `wp_rg_lead_detail` VALUES("3933", "455", "15", "4", "jeffreysendall@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3934", "455", "15", "7", "(250) 896-6742");
INSERT INTO `wp_rg_lead_detail` VALUES("3935", "455", "15", "3.1", "2385 Twin View Dr");
INSERT INTO `wp_rg_lead_detail` VALUES("3936", "455", "15", "3.3", "VICTORIA");
INSERT INTO `wp_rg_lead_detail` VALUES("3937", "455", "15", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3938", "455", "15", "3.5", "V8Z 7E9");
INSERT INTO `wp_rg_lead_detail` VALUES("3939", "455", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3940", "455", "15", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("3941", "455", "15", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("3942", "455", "15", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3943", "455", "15", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3944", "455", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("3945", "455", "15", "17", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("3946", "455", "15", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_rg_lead_detail` VALUES("3947", "455", "15", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_rg_lead_detail` VALUES("3948", "455", "15", "19.3", "Weekend");
INSERT INTO `wp_rg_lead_detail` VALUES("3949", "456", "14", "1.3", "Jackson");
INSERT INTO `wp_rg_lead_detail` VALUES("3950", "456", "14", "1.6", "McDonald");
INSERT INTO `wp_rg_lead_detail` VALUES("3951", "456", "14", "2", "23");
INSERT INTO `wp_rg_lead_detail` VALUES("3952", "456", "14", "3", "(250) 858-9225");
INSERT INTO `wp_rg_lead_detail` VALUES("3953", "456", "14", "4", "johnnyperogy@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3954", "456", "14", "5", "Depression, loss of energy, alcohol dependency. Feelings of hopelessness, low self-esteem, and general dissatisfaction with life. \r\n\r\nI am available all day Wednesday and Thursday and would prefer a female therapist.");
INSERT INTO `wp_rg_lead_detail` VALUES("3955", "456", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3956", "456", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3957", "456", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3958", "456", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("3959", "457", "14", "1.3", "Shianne");
INSERT INTO `wp_rg_lead_detail` VALUES("3960", "457", "14", "1.6", "Adams");
INSERT INTO `wp_rg_lead_detail` VALUES("3961", "457", "14", "2", "19");
INSERT INTO `wp_rg_lead_detail` VALUES("3962", "457", "14", "3", "(250) 686-4557");
INSERT INTO `wp_rg_lead_detail` VALUES("3963", "457", "14", "4", "natadams@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3964", "457", "14", "5", "Anxiety stress depression.  The Anxiety affects my everyday life.  I have issues with my father and childhood.  I can\'t seem to control it. I recently lost my grandma who I was close too");
INSERT INTO `wp_rg_lead_detail` VALUES("3965", "457", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3966", "457", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3967", "457", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3968", "457", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("3969", "457", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("3970", "458", "14", "1.3", "Shannon");
INSERT INTO `wp_rg_lead_detail` VALUES("3971", "458", "14", "1.6", "Cummings");
INSERT INTO `wp_rg_lead_detail` VALUES("3972", "458", "14", "2", "30");
INSERT INTO `wp_rg_lead_detail` VALUES("3973", "458", "14", "3", "(250) 643-0372");
INSERT INTO `wp_rg_lead_detail` VALUES("3974", "458", "14", "4", "Shancummings@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("3975", "458", "14", "5", "Generalized depression, stress and anxiety effecting school, work, relationships.  Gets worse roughly 2 weeks out of a month, has lasted about a year now.  Daily tasks like driving or social occasions have become difficult or stressful and are avoided when overly stressed.  Possibly effecting health in other ways - lack of sleep, appetite, rash on arms, prolonged cold/flu symptoms since November.   Looking for tools to manage my problems, not my reactions to or perceptions of my problems.  No preference of gender for therapist.  I am available some weekdays from 9-11 depending on a changing work schedule, and on the weekends.   Thanks!");
INSERT INTO `wp_rg_lead_detail` VALUES("3976", "458", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("3977", "458", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("3978", "458", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("3979", "458", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("3981", "459", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("3982", "459", "10", "10", "02/10/2001");
INSERT INTO `wp_rg_lead_detail` VALUES("3983", "459", "10", "4", "mrspye@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3984", "459", "10", "2", "Janet Pye");
INSERT INTO `wp_rg_lead_detail` VALUES("3985", "459", "10", "3.1", "1647 Little Road");
INSERT INTO `wp_rg_lead_detail` VALUES("3986", "459", "10", "3.2", "1647 Little Road");
INSERT INTO `wp_rg_lead_detail` VALUES("3987", "459", "10", "3.3", "1647 Little Road");
INSERT INTO `wp_rg_lead_detail` VALUES("3988", "459", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("3989", "459", "10", "3.5", "Victiria");
INSERT INTO `wp_rg_lead_detail` VALUES("3990", "459", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("3991", "459", "10", "5", "mrspye@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("3992", "459", "10", "6", "(250) 216-8311");
INSERT INTO `wp_rg_lead_detail` VALUES("3993", "459", "10", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("3994", "459", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("3995", "459", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3996", "459", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("3997", "459", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("3998", "459", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("3999", "459", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4000", "459", "10", "17", "Resperidon\r\nStratera");
INSERT INTO `wp_rg_lead_detail` VALUES("4001", "460", "14", "1.3", "Denise");
INSERT INTO `wp_rg_lead_detail` VALUES("4002", "460", "14", "1.6", "Schreyer");
INSERT INTO `wp_rg_lead_detail` VALUES("4003", "460", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("4004", "460", "14", "3", "(250) 208-8341");
INSERT INTO `wp_rg_lead_detail` VALUES("4005", "460", "14", "4", "denise_morris11@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4006", "460", "14", "11", "through friends");
INSERT INTO `wp_rg_lead_detail` VALUES("4007", "460", "14", "5", "I am struggling with my work/life balance and feel it is affecting my relationships. Communication is a skill that I have a hard time with and doesn\'t come easily for me and I feel this is also impacting my relationships, especially with my husband.");
INSERT INTO `wp_rg_lead_detail` VALUES("4008", "460", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4009", "460", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4010", "460", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("4011", "461", "14", "1.3", "Brianne");
INSERT INTO `wp_rg_lead_detail` VALUES("4012", "461", "14", "1.6", "Gutowski");
INSERT INTO `wp_rg_lead_detail` VALUES("4013", "461", "14", "2", "32");
INSERT INTO `wp_rg_lead_detail` VALUES("4014", "461", "14", "3", "(250) 812-5972");
INSERT INTO `wp_rg_lead_detail` VALUES("4015", "461", "14", "4", "branners99@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4016", "461", "14", "11", "Referred from another counseling service that was booked for next 8wks");
INSERT INTO `wp_rg_lead_detail` VALUES("4017", "461", "14", "5", "suicidal thoughts. No reason to be going through pain. Not caring about life. Stresses include family health concers, Mom recently diagnosed with cancer. In final semester of university for degree, grades have fallen, attendance has fallen. Exams start next week. started changing medication 3.5 weeks ago. currently no effect felt by new ones so at rock bottom. extended health through UVic but that may end May 1st. then I have nothing. No preference on sex of counselor.");
INSERT INTO `wp_rg_lead_detail` VALUES("4018", "461", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4019", "461", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4020", "461", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4021", "461", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4022", "462", "14", "1.3", "Denise");
INSERT INTO `wp_rg_lead_detail` VALUES("4023", "462", "14", "1.6", "Schreyer");
INSERT INTO `wp_rg_lead_detail` VALUES("4024", "462", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("4025", "462", "14", "3", "(250) 208-8341");
INSERT INTO `wp_rg_lead_detail` VALUES("4026", "462", "14", "4", "denise_morris11@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4027", "462", "14", "11", "Through friends");
INSERT INTO `wp_rg_lead_detail` VALUES("4028", "462", "14", "5", "I am struggling with my work/life balance and it is affecting my relationships. Communication is a skill I have trouble with and I also feel it is impacting my relationships, especially with my husband. I would prefer a female counsellor and I have extended benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("4029", "462", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4030", "462", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4031", "462", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4032", "462", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("4033", "463", "15", "1", "Kennedy Gardiner");
INSERT INTO `wp_rg_lead_detail` VALUES("4034", "463", "15", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("4035", "463", "15", "10", "18/03/1998");
INSERT INTO `wp_rg_lead_detail` VALUES("4036", "463", "15", "4", "meagmckay@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4037", "463", "15", "7", "(250) 532-3158");
INSERT INTO `wp_rg_lead_detail` VALUES("4038", "463", "15", "3.1", "3951 Glanford Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("4039", "463", "15", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4040", "463", "15", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4041", "463", "15", "3.5", "V8Z3Z5");
INSERT INTO `wp_rg_lead_detail` VALUES("4042", "463", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4043", "463", "15", "8", "email pls");
INSERT INTO `wp_rg_lead_detail` VALUES("4044", "463", "15", "18.2", "Credit Card ($3 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("4045", "463", "15", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4046", "463", "15", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("4047", "463", "15", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("4048", "463", "15", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4049", "463", "15", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4050", "463", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4051", "463", "15", "17", "Kennedy is taking a medication for depression however I am not sure what it is.  I am her former foster parent and still support her.  I saw this group and offered to pay for it if she thought it would be of benefit.  She agreed so I am registering her.");
INSERT INTO `wp_rg_lead_detail` VALUES("4052", "463", "15", "19.1", "Weekday AM (9-noon)");
INSERT INTO `wp_rg_lead_detail` VALUES("4053", "463", "15", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_rg_lead_detail` VALUES("4054", "463", "15", "19.3", "Weekend");
INSERT INTO `wp_rg_lead_detail` VALUES("4055", "464", "15", "1", "Macoy Jackson");
INSERT INTO `wp_rg_lead_detail` VALUES("4056", "464", "15", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("4057", "464", "15", "10", "30/11/1994");
INSERT INTO `wp_rg_lead_detail` VALUES("4058", "464", "15", "4", "macoy.jackson@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4059", "464", "15", "7", "(604) 698-6764");
INSERT INTO `wp_rg_lead_detail` VALUES("4060", "464", "15", "3.1", "3516 Henderson Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("4061", "464", "15", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4062", "464", "15", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4063", "464", "15", "3.5", "V8P 5B1");
INSERT INTO `wp_rg_lead_detail` VALUES("4064", "464", "15", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4065", "464", "15", "8", "Email");
INSERT INTO `wp_rg_lead_detail` VALUES("4066", "464", "15", "18.2", "Credit Card ($3 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("4067", "464", "15", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4068", "464", "15", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("4069", "464", "15", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("4070", "464", "15", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4071", "464", "15", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4072", "464", "15", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4073", "464", "15", "17", "Sertroline 100mg.");
INSERT INTO `wp_rg_lead_detail` VALUES("4074", "464", "15", "19.2", "Weekday PM (noon-5)");
INSERT INTO `wp_rg_lead_detail` VALUES("4075", "465", "14", "1.3", "Angela");
INSERT INTO `wp_rg_lead_detail` VALUES("4076", "465", "14", "1.6", "Wilkinson");
INSERT INTO `wp_rg_lead_detail` VALUES("4077", "465", "14", "2", "DOB: July 28, 1976 - 40 yrs");
INSERT INTO `wp_rg_lead_detail` VALUES("4078", "465", "14", "3", "(250) 686-9569");
INSERT INTO `wp_rg_lead_detail` VALUES("4079", "465", "14", "4", "wilkinsonangela@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4080", "465", "14", "11", "internet");
INSERT INTO `wp_rg_lead_detail` VALUES("4081", "465", "14", "5", "Hi there, I work full-time Mon-Friday 830-6ish but do get an hour lunch (not scheduled times).  I have no extended benefits and am lower income.  I make less than $40,000 per year, less than 39,000 even.  I have an adult child who still lives at home but he pays very little towards rent.  I have no preference male or female for a therapist.\r\n\r\nI am dealing with grief and loss (as recent as yesterday, plus 5 months ago and going as far back as 21 years), I have major smiling depression, I have anxiety and sleep issues, I have self confidence issues and many past guilt issues.  I do not take any medication for any depression (firstly I can\'t afford any plus I am not able to remember to take meds daily).  I am having an issue with motivation to do even the simplest of tasks ie: putting away laundry, doing banking, booking appointments.");
INSERT INTO `wp_rg_lead_detail` VALUES("4082", "465", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4083", "465", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4084", "465", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4085", "465", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4086", "465", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4087", "466", "14", "1.3", "Courtenay");
INSERT INTO `wp_rg_lead_detail` VALUES("4088", "466", "14", "1.6", "Skipsey");
INSERT INTO `wp_rg_lead_detail` VALUES("4089", "466", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("4090", "466", "14", "3", "(250) 886-3218");
INSERT INTO `wp_rg_lead_detail` VALUES("4091", "466", "14", "4", "courtenayskipsey@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4092", "466", "14", "11", "Friend");
INSERT INTO `wp_rg_lead_detail` VALUES("4093", "466", "14", "5", "Looking to build my Non Violent Communication skill set and work towards building a healthier communication style and softening my \'edges\'. Learn to let go of past issues/arguments. Interested in 1 on 1 counselling or any group courses that may be available.");
INSERT INTO `wp_rg_lead_detail` VALUES("4094", "466", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4095", "466", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4096", "466", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4097", "466", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4098", "466", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4099", "466", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4100", "466", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4101", "467", "14", "1.3", "Chris");
INSERT INTO `wp_rg_lead_detail` VALUES("4102", "467", "14", "1.6", "Rowlands");
INSERT INTO `wp_rg_lead_detail` VALUES("4103", "467", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("4104", "467", "14", "3", "(778) 678-8862");
INSERT INTO `wp_rg_lead_detail` VALUES("4105", "467", "14", "4", "chrisrowlands01@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4106", "467", "14", "11", "referral from other counseling services");
INSERT INTO `wp_rg_lead_detail` VALUES("4107", "467", "14", "5", "Difficulty connecting with positive emotions; existential confusion, seeking healthy life direction; struggles to connect with creative impulses");
INSERT INTO `wp_rg_lead_detail` VALUES("4108", "467", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4109", "467", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4110", "467", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4111", "467", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4112", "468", "14", "1.3", "Chantaya");
INSERT INTO `wp_rg_lead_detail` VALUES("4113", "468", "14", "1.6", "Roloson");
INSERT INTO `wp_rg_lead_detail` VALUES("4114", "468", "14", "2", "28, but for my son who is 6.");
INSERT INTO `wp_rg_lead_detail` VALUES("4115", "468", "14", "3", "(250) 891-5312");
INSERT INTO `wp_rg_lead_detail` VALUES("4116", "468", "14", "4", "Chantaya_roloson@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4117", "468", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("4118", "468", "14", "5", "I\'m requesting counselling for my son. We have an older son who is special needs, as well as has ADHD and ODD and issues with control and aggression. Our younger son had always been a target of our older son and has become emotionally irregulated due to it.");
INSERT INTO `wp_rg_lead_detail` VALUES("4119", "468", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4120", "468", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4121", "468", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4122", "469", "14", "1.3", "Heather");
INSERT INTO `wp_rg_lead_detail` VALUES("4123", "469", "14", "1.6", "Bishop");
INSERT INTO `wp_rg_lead_detail` VALUES("4124", "469", "14", "2", "43");
INSERT INTO `wp_rg_lead_detail` VALUES("4125", "469", "14", "3", "(250) 813-2083");
INSERT INTO `wp_rg_lead_detail` VALUES("4126", "469", "14", "4", "hbishop506@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4127", "469", "14", "11", "Single parent resource center");
INSERT INTO `wp_rg_lead_detail` VALUES("4128", "469", "14", "5", "I have relationship issues with my 13 year old daughter and my mother who is her primary care taker. \r\nI am available any day as I am on disability.");
INSERT INTO `wp_rg_lead_detail` VALUES("4129", "469", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4130", "469", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4131", "469", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4132", "469", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4133", "469", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4134", "469", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4135", "470", "14", "1.3", "Trent");
INSERT INTO `wp_rg_lead_detail` VALUES("4136", "470", "14", "1.6", "Folan");
INSERT INTO `wp_rg_lead_detail` VALUES("4137", "470", "14", "2", "27");
INSERT INTO `wp_rg_lead_detail` VALUES("4138", "470", "14", "3", "(778) 350-5409");
INSERT INTO `wp_rg_lead_detail` VALUES("4139", "470", "14", "4", "Trentfolan@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4140", "470", "14", "11", "Sign by your offices");
INSERT INTO `wp_rg_lead_detail` VALUES("4141", "470", "14", "5", "After several years of having a low mood I feel it is time to approach it. It has become clear that it isn\'t going to simply pass and it is starting the to have an increasing impact on my day to day life. Currently, it takes hours to get up, I cannot open my email for weeks at a time due to anxiety, avoidance of most commitments including preferred activities. \r\n\r\nI had myself convinced that it was fine and that ultra-endurance cycling would aid with all of this. However, it simply worked by isolating myself from everything for hours at a time. This realisation of avoidance only became clear upon having to spend a few weeks off of the bike due to injuries/medical orders.");
INSERT INTO `wp_rg_lead_detail` VALUES("4142", "470", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4143", "470", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4144", "470", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4145", "470", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4146", "471", "14", "1.3", "Lindsay");
INSERT INTO `wp_rg_lead_detail` VALUES("4147", "471", "14", "1.6", "Epp");
INSERT INTO `wp_rg_lead_detail` VALUES("4148", "471", "14", "2", "24");
INSERT INTO `wp_rg_lead_detail` VALUES("4149", "471", "14", "3", "(778) 677-6673");
INSERT INTO `wp_rg_lead_detail` VALUES("4150", "471", "14", "4", "lindsaymepp@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4151", "471", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("4152", "471", "14", "5", "I am a new teacher and in my first classroom. I need help navigating regular work stress and not allowing it to take over my life. I am medicated for Generalized Anxiety Disorder which likely enhances my stress and worry.");
INSERT INTO `wp_rg_lead_detail` VALUES("4153", "471", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4154", "471", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4155", "471", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4156", "471", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("4157", "472", "14", "1.3", "Tina");
INSERT INTO `wp_rg_lead_detail` VALUES("4158", "472", "14", "1.6", "Stokvis");
INSERT INTO `wp_rg_lead_detail` VALUES("4159", "472", "14", "2", "31");
INSERT INTO `wp_rg_lead_detail` VALUES("4160", "472", "14", "3", "(604) 250-3569");
INSERT INTO `wp_rg_lead_detail` VALUES("4161", "472", "14", "4", "tstokvis@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4162", "472", "14", "11", "Website");
INSERT INTO `wp_rg_lead_detail` VALUES("4163", "472", "14", "5", "- OCD\'s - I live my life mostly fine with them, but they are affecting my relationship, and they have affected my work in the past\r\n- Need for breathing exercises/therapy? (began holding my breath as a child in sports, and I do it when I sleep now as an adult.  I can explain more, I\'ve been to sleep clinics.  I do not have sleep apnea, and I do not snore.  Holding my breath intermittently while I sleep has affected my last 3 long term relationships in a big way)\r\n- Father is an alcoholic; mother suffers from mental health issues (both sides of my family have experienced (mild?) sexual abuse)\r\n- Am a bit anxious, but feel like that\'s going away now that I don\'t juggle multiple low paying NGO jobs, although still worth working on\r\n(Generally I\'m doing pretty well in life, like my work, and have a lot of friends, but I\'m sure I\'m affected by the latter things, and the former are rearing their heads in my relationship)\r\nPrefer M - F 5 - 8 pm, if possible.  Possibly prefer a female, though maybe either.  No extended health benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("4164", "472", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4165", "472", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("4166", "472", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4167", "472", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("4168", "473", "14", "1.3", "Caleb");
INSERT INTO `wp_rg_lead_detail` VALUES("4169", "473", "14", "1.6", "Miller");
INSERT INTO `wp_rg_lead_detail` VALUES("4170", "473", "14", "2", "25, same for Fiance: Allison Weick");
INSERT INTO `wp_rg_lead_detail` VALUES("4171", "473", "14", "3", "(778) 349-2535");
INSERT INTO `wp_rg_lead_detail` VALUES("4172", "473", "14", "4", "calebmiller@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4173", "473", "14", "11", "From retired pastor(Ross White)");
INSERT INTO `wp_rg_lead_detail` VALUES("4174", "473", "14", "5", "We were recommended to see Bill by Ross, as he\'s out of town, for marriage counselling. We\'re available most weekdays, with the exception of Thursdays.");
INSERT INTO `wp_rg_lead_detail` VALUES("4175", "473", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4176", "473", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4177", "473", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("4178", "474", "14", "1.3", "shelley");
INSERT INTO `wp_rg_lead_detail` VALUES("4179", "474", "14", "1.6", "travis");
INSERT INTO `wp_rg_lead_detail` VALUES("4180", "474", "14", "2", "52");
INSERT INTO `wp_rg_lead_detail` VALUES("4181", "474", "14", "3", "(250) 661-2800");
INSERT INTO `wp_rg_lead_detail` VALUES("4182", "474", "14", "4", "shellstravis@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4183", "474", "14", "11", "Citizens Counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("4184", "474", "14", "5", "I suffered some severe trauma when I was a teenager (possibly much earlier). I have buried it for 35 years... and now I was triggered a couple days ago and I have so much going on inside I feel like I am disconnected from my own body.  I am emotionally all over the place and I don\'t know how to handle it. It is affecting my work and personal relationship. I am in need of help as soon as possible.");
INSERT INTO `wp_rg_lead_detail` VALUES("4185", "474", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4186", "474", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4187", "474", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4188", "474", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4189", "474", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("4190", "475", "14", "1.3", "Suzanne");
INSERT INTO `wp_rg_lead_detail` VALUES("4191", "475", "14", "1.6", "Boase");
INSERT INTO `wp_rg_lead_detail` VALUES("4192", "475", "14", "2", "61");
INSERT INTO `wp_rg_lead_detail` VALUES("4193", "475", "14", "3", "(250) 391-7449");
INSERT INTO `wp_rg_lead_detail` VALUES("4194", "475", "14", "4", "sboase@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4195", "475", "14", "11", "Mental Health");
INSERT INTO `wp_rg_lead_detail` VALUES("4196", "475", "14", "5", "PTSD\r\nI am employed as a Emergency Support Worker at a local homeless shelter.  Part of my job is as a first responder to critical incidents. I have been impacted by the fentanyl crisis.");
INSERT INTO `wp_rg_lead_detail` VALUES("4197", "475", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4198", "475", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4199", "475", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4200", "476", "14", "1.3", "Anne");
INSERT INTO `wp_rg_lead_detail` VALUES("4201", "476", "14", "1.6", "Dick");
INSERT INTO `wp_rg_lead_detail` VALUES("4202", "476", "14", "2", "33");
INSERT INTO `wp_rg_lead_detail` VALUES("4203", "476", "14", "3", "(250) 881-4205");
INSERT INTO `wp_rg_lead_detail` VALUES("4204", "476", "14", "4", "anne_dick@icloud.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4205", "476", "14", "11", "google");
INSERT INTO `wp_rg_lead_detail` VALUES("4206", "476", "14", "5", "Hello, I am looking for a counsellor who can assist me with anxiety management and difficulties allowing myself to really engage in my relationship.");
INSERT INTO `wp_rg_lead_detail` VALUES("4207", "476", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4208", "476", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4209", "476", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4210", "476", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("4211", "477", "14", "1.3", "Jon");
INSERT INTO `wp_rg_lead_detail` VALUES("4212", "477", "14", "1.6", "Newton");
INSERT INTO `wp_rg_lead_detail` VALUES("4213", "477", "14", "2", "54");
INSERT INTO `wp_rg_lead_detail` VALUES("4214", "477", "14", "3", "(250) 893-9606");
INSERT INTO `wp_rg_lead_detail` VALUES("4215", "477", "14", "4", "joncnewton@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4216", "477", "14", "11", "Wife recommended");
INSERT INTO `wp_rg_lead_detail` VALUES("4217", "477", "14", "5", "Issues with marriage concerning care and appreciation for my wife, historical issues and how to correct, make amends, and move past.");
INSERT INTO `wp_rg_lead_detail` VALUES("4218", "477", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4219", "477", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4220", "477", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("4221", "477", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4222", "477", "14", "9.1", "$120-80");
INSERT INTO `wp_rg_lead_detail` VALUES("4223", "478", "14", "1.3", "Emily");
INSERT INTO `wp_rg_lead_detail` VALUES("4224", "478", "14", "1.6", "Trenchard");
INSERT INTO `wp_rg_lead_detail` VALUES("4225", "478", "14", "2", "26");
INSERT INTO `wp_rg_lead_detail` VALUES("4226", "478", "14", "3", "(250) 327-4026");
INSERT INTO `wp_rg_lead_detail` VALUES("4227", "478", "14", "4", "eltrenchard@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4228", "478", "14", "11", "UVic");
INSERT INTO `wp_rg_lead_detail` VALUES("4229", "478", "14", "5", "Severe anxiety disorder and depression.\r\nopen availability\r\nfemale therapist\r\nstudent health benefits at University of Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4230", "478", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4231", "478", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4232", "478", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4233", "478", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4234", "478", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4235", "479", "14", "1.3", "Elizabeth");
INSERT INTO `wp_rg_lead_detail` VALUES("4236", "479", "14", "1.6", "Taylor");
INSERT INTO `wp_rg_lead_detail` VALUES("4237", "479", "14", "2", "21-10542 McDonald Park Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("4238", "479", "14", "3", "(250) 655-0633");
INSERT INTO `wp_rg_lead_detail` VALUES("4239", "479", "14", "4", "lizeat@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4240", "479", "14", "11", "Website");
INSERT INTO `wp_rg_lead_detail` VALUES("4241", "479", "14", "5", "This is for my 11 year old daughter who has mentioned suicidal thoughts. Her grade 5 teacher just called me saying that my daughter has mentioned her thoughts to the Councillor at the middle school she will be transitioning into this September.");
INSERT INTO `wp_rg_lead_detail` VALUES("4242", "479", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4243", "479", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4244", "479", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4245", "480", "14", "1.3", "Tui");
INSERT INTO `wp_rg_lead_detail` VALUES("4246", "480", "14", "1.6", "Hartman");
INSERT INTO `wp_rg_lead_detail` VALUES("4247", "480", "14", "2", "32");
INSERT INTO `wp_rg_lead_detail` VALUES("4248", "480", "14", "3", "(250) 884-8257");
INSERT INTO `wp_rg_lead_detail` VALUES("4249", "480", "14", "4", "tui.hartman@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4250", "480", "14", "11", "google");
INSERT INTO `wp_rg_lead_detail` VALUES("4251", "480", "14", "5", "Allow men to control and use me. Allow them to pressure me into have sex. Dont like who I am. I need to heal. I hang out with drug addicts even though I have been clean for years. I need to learn to trust men.");
INSERT INTO `wp_rg_lead_detail` VALUES("4252", "480", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4253", "480", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4254", "480", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4255", "480", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4256", "480", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4257", "481", "14", "1.3", "Tiffany");
INSERT INTO `wp_rg_lead_detail` VALUES("4258", "481", "14", "1.6", "Saari");
INSERT INTO `wp_rg_lead_detail` VALUES("4259", "481", "14", "2", "32");
INSERT INTO `wp_rg_lead_detail` VALUES("4260", "481", "14", "3", "(250) 479-9573");
INSERT INTO `wp_rg_lead_detail` VALUES("4261", "481", "14", "4", "dm2saari@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("4262", "481", "14", "11", "internet search");
INSERT INTO `wp_rg_lead_detail` VALUES("4263", "481", "14", "5", "Severe depression/anxiety, bordering on agoraphobia. ADD\r\nUnder psychiatric care for medications.\r\nOn social assistance, designated as a Person with Disabilities.\r\nFemale.");
INSERT INTO `wp_rg_lead_detail` VALUES("4264", "481", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4265", "481", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4266", "481", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4267", "482", "14", "1.3", "Tyler");
INSERT INTO `wp_rg_lead_detail` VALUES("4268", "482", "14", "1.6", "Johnson");
INSERT INTO `wp_rg_lead_detail` VALUES("4269", "482", "14", "2", "15");
INSERT INTO `wp_rg_lead_detail` VALUES("4270", "482", "14", "3", "(250) 889-0378");
INSERT INTO `wp_rg_lead_detail` VALUES("4271", "482", "14", "4", "tarantanderson@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4272", "482", "14", "11", "a friend");
INSERT INTO `wp_rg_lead_detail` VALUES("4273", "482", "14", "5", "I\'m Tara Anderson, Tyler\'s Mom and am the one completing this form and that is my contact info. Tyler has severe social anxiety, some general anxiety and at times has struggled with depression and last Fall had suicidal thoughts. The social anxiety has prevented him from attending \'regular\' school. I\'ve tried smaller class sizes at Westshore Learning and Training, but Tyler didn\'t like his cohort of peers, as Tyler is quite bright and was bored, and it wasn\'t the right fit for him. He is currently doing grade 9 through SIDES online schooling and I\'m working from home to be there for him and to help him. His goal is to return to regular school in the fall as he misses the social interaction, but he\'ll need some great support and tools to overcome his fears and manage his anxiety. Tyler has been bullied at school in his past and was verbally/emotionally abused by his father, who he has refused to see for 6 years, so I think there is also some trauma at the root of his symptoms. For a long time Tyler was not willing to see a counsellor, but is now open to it, so I want to book an appointment as soon as possible before he might close the door again. I\'d prefer a therapist with experience in teens with anxiety, if possible a male might be good, but the main thing is someone Tyler will feel comfortable with, that has the experience to truly help make a difference. I don\'t have extended health benefits, am working in a casual position with Interior Health. Given I\'m working from home the majority of the time (with some travel to Interior as needed) and Tyler is doing school online, we are fairly flexible in our schedule of availability. Thank you, Tara");
INSERT INTO `wp_rg_lead_detail` VALUES("4274", "482", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4275", "482", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4276", "482", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4277", "482", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("4278", "483", "14", "1.3", "Tanya");
INSERT INTO `wp_rg_lead_detail` VALUES("4279", "483", "14", "1.6", "King");
INSERT INTO `wp_rg_lead_detail` VALUES("4280", "483", "14", "2", "35");
INSERT INTO `wp_rg_lead_detail` VALUES("4281", "483", "14", "3", "(778) 440-4334");
INSERT INTO `wp_rg_lead_detail` VALUES("4282", "483", "14", "4", "tanyaking1982@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4283", "483", "14", "11", "Through a friend who has had counselling through your services.");
INSERT INTO `wp_rg_lead_detail` VALUES("4284", "483", "14", "5", "Navigating through a new discovery of personal identity that concerns my sexuality (LGBT).");
INSERT INTO `wp_rg_lead_detail` VALUES("4285", "483", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4286", "483", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4287", "483", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4288", "484", "14", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("4289", "484", "14", "1.6", "Thompson");
INSERT INTO `wp_rg_lead_detail` VALUES("4290", "484", "14", "2", "34");
INSERT INTO `wp_rg_lead_detail` VALUES("4291", "484", "14", "3", "(778) 677-0755");
INSERT INTO `wp_rg_lead_detail` VALUES("4292", "484", "14", "4", "Thompson.Sarah@Hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4293", "484", "14", "11", "Social worker at VGH");
INSERT INTO `wp_rg_lead_detail` VALUES("4294", "484", "14", "5", "Was in an accident and have a mild tramatic brain injury. I working on neuro rehab at VGH but am looking for a little more support and guidance as I learn to work with my new brain.\r\nMain concerns: loss of self, inconsistent support from the people in my support system, lack of energy most likely due to mood issues (have had testing to rule out medical concerns such as thyroid, iron levels, etc).\r\nPrefer female therapist. I have a little coverage if it is through a registered counselor. On gradual return to work, I am making less money than cost of living. Not available mon 11-2, 6-7, tues 11-2, 7-8, we\'d 3-4, 6-7, thurs 4:30-5:30, fri 11-2, other than that I\'m fairly open.");
INSERT INTO `wp_rg_lead_detail` VALUES("4295", "484", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4296", "484", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4297", "484", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4298", "484", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4299", "484", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4300", "485", "14", "1.3", "Katie");
INSERT INTO `wp_rg_lead_detail` VALUES("4301", "485", "14", "1.6", "Preiswerck");
INSERT INTO `wp_rg_lead_detail` VALUES("4302", "485", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("4303", "485", "14", "3", "(250) 415-0548");
INSERT INTO `wp_rg_lead_detail` VALUES("4304", "485", "14", "4", "kpreiswerck@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4305", "485", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("4306", "485", "14", "5", "My partner and I of twelve years are seeking some help. We are available evenings and weekends possibly Monday mornings");
INSERT INTO `wp_rg_lead_detail` VALUES("4307", "485", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4308", "485", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4309", "485", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4310", "485", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4311", "486", "14", "1.3", "Pauline");
INSERT INTO `wp_rg_lead_detail` VALUES("4312", "486", "14", "1.6", "Robertson");
INSERT INTO `wp_rg_lead_detail` VALUES("4313", "486", "14", "2", "inquiring re: counselling services for my daughter (age 11)");
INSERT INTO `wp_rg_lead_detail` VALUES("4314", "486", "14", "3", "(250) 889-1668");
INSERT INTO `wp_rg_lead_detail` VALUES("4315", "486", "14", "4", "pnrobertson@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4316", "486", "14", "11", "St. George\'s Anglican Church");
INSERT INTO `wp_rg_lead_detail` VALUES("4317", "486", "14", "5", "My 11 year-old daughter is \"neurodiverse\" (official diagnoses are general LD, developmental coordination disorder, and sensory processing disorder). She recently has expressed some negative self-talk & has been having some food issues at school (self regulation is tricky for her). We don\'t want to over-react, but we also don\'t want to ignore early warning signs/symptoms. We\'d like some professional support to explore these things with her. Wondering if/how/where this might fit within your practice. \r\n\r\nI have extended health coverage for registered counsellors only.");
INSERT INTO `wp_rg_lead_detail` VALUES("4318", "486", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4319", "486", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4320", "486", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4321", "486", "14", "9.2", "$80-50");
INSERT INTO `wp_rg_lead_detail` VALUES("4322", "487", "3", "1.3", "Pauline");
INSERT INTO `wp_rg_lead_detail` VALUES("4323", "487", "3", "1.6", "Robertson");
INSERT INTO `wp_rg_lead_detail` VALUES("4324", "487", "3", "2", "pnrobertson@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4325", "487", "3", "3.1", "1918 San Pedro Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("4326", "487", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4327", "487", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4328", "487", "3", "3.5", "V8N 2G8");
INSERT INTO `wp_rg_lead_detail` VALUES("4329", "487", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4330", "487", "3", "4", "(250) 385-1668");
INSERT INTO `wp_rg_lead_detail` VALUES("4331", "487", "3", "7", "n/a");
INSERT INTO `wp_rg_lead_detail` VALUES("4332", "487", "3", "5", "would like to be added to e-mail list for future courses");
INSERT INTO `wp_rg_lead_detail` VALUES("4334", "488", "14", "1.3", "Willo");
INSERT INTO `wp_rg_lead_detail` VALUES("4335", "488", "14", "1.6", "Stevenson");
INSERT INTO `wp_rg_lead_detail` VALUES("4336", "488", "14", "2", "67");
INSERT INTO `wp_rg_lead_detail` VALUES("4337", "488", "14", "3", "(250) 893-8134");
INSERT INTO `wp_rg_lead_detail` VALUES("4338", "488", "14", "4", "tjoys@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4339", "488", "14", "11", "Maureen at Headway provided a referral.");
INSERT INTO `wp_rg_lead_detail` VALUES("4340", "488", "14", "5", "My mother, Willo Stevenson, has Parkinson\'s Disease. She was diagnosed in 2003. One year ago, she was living at home alone on Salt Spring Island managing her own affairs with regular help, which she organized and paid for herself. She walked with a cane at home and needed a wheelchair or scooter for longer distances. She was first on the waitlist for an independent living facility in Victoria.\r\nIn June 2016 she fell, and while she had only minor cuts and bruises from the fall, her PD symptoms advanced significantly so that she was almost completely helpless. Since then, she has been in acute care at Lady Minto Hospital, acute care at Victoria General Hospital and a rehab program at Aberdeen Hospital. She is now waiting for subsidized placement at a complex care facility in Victoria. She has regained some abilities, but needs a wheelchair for mobility and can only walk several steps with assistance. She can feed herself but needs help with most other activities related to self care. She also has mild cognitive impairment and is no longer able to manage her affairs. I am her daughter and POA. My phone and email are provided in this form.\r\nWillo has struggled with depression for many years, anxiety since her PD diagnosis and now has difficulty controlling her emotions. Maureen at Headway recommended Margaret Anderson as a resource for Willo, who is desperately in need of support with navigating her feelings of grief and loss associated with this major life transition. We would also benefit from Margaret\'s assistance with end-of-life conversations and preparedness.\r\nCurrently, afternoons between 1:00pm and 5:00pm any day of the week are best for Willo\'s schedule. With notice, I have a flexible schedule.\r\nWillo does not have extended health benefits. I do.\r\nMany thanks!\r\nTia Robertson (Willo\'s daughter)");
INSERT INTO `wp_rg_lead_detail` VALUES("4341", "488", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4342", "488", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4343", "488", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4344", "488", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4345", "489", "14", "1.3", "Deborah");
INSERT INTO `wp_rg_lead_detail` VALUES("4346", "489", "14", "1.6", "Carroll");
INSERT INTO `wp_rg_lead_detail` VALUES("4347", "489", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("4348", "489", "14", "3", "(613) 407-6858");
INSERT INTO `wp_rg_lead_detail` VALUES("4349", "489", "14", "4", "deborahcarroll@live.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4350", "489", "14", "11", "Internet search");
INSERT INTO `wp_rg_lead_detail` VALUES("4351", "489", "14", "5", "I have been diagnosed with generalized anxiety in the past. I am new to Victoria having just moved here from Ottawa and am looking for support.");
INSERT INTO `wp_rg_lead_detail` VALUES("4352", "489", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4353", "489", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4354", "489", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4355", "489", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4356", "490", "14", "1.3", "Erik");
INSERT INTO `wp_rg_lead_detail` VALUES("4357", "490", "14", "1.6", "Deplonty");
INSERT INTO `wp_rg_lead_detail` VALUES("4358", "490", "14", "2", "240 Superior ST");
INSERT INTO `wp_rg_lead_detail` VALUES("4359", "490", "14", "3", "(250) 739-1069");
INSERT INTO `wp_rg_lead_detail` VALUES("4360", "490", "14", "4", "Eridk.es.neopet@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4361", "490", "14", "11", "Through a friend");
INSERT INTO `wp_rg_lead_detail` VALUES("4362", "490", "14", "5", "I have many issues, and I don\'t know where to begin. I am grieving the loss of my grandmother, and feel I have no safe place to go, or supportive member in my life at times. Will make anytime work. I prefer a therapist who is accepting of all, and everyone; all walks of life. I do not have benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("4363", "490", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4364", "490", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4365", "490", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4366", "490", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4367", "490", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4368", "491", "10", "20.3", "William");
INSERT INTO `wp_rg_lead_detail` VALUES("4369", "491", "10", "20.6", "LeBlanc");
INSERT INTO `wp_rg_lead_detail` VALUES("4370", "491", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("4371", "491", "10", "10", "30/04/2003");
INSERT INTO `wp_rg_lead_detail` VALUES("4372", "491", "10", "4", "jncleblanc@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("4373", "491", "10", "7", "(250) 385-3971");
INSERT INTO `wp_rg_lead_detail` VALUES("4374", "491", "10", "2", "Jennifer LeBlanc");
INSERT INTO `wp_rg_lead_detail` VALUES("4375", "491", "10", "3.1", "689 Daffodil Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("4376", "491", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4377", "491", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4378", "491", "10", "3.5", "V8Z 2S8");
INSERT INTO `wp_rg_lead_detail` VALUES("4379", "491", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4380", "491", "10", "5", "jncleblanc@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("4381", "491", "10", "6", "(250) 508-4648");
INSERT INTO `wp_rg_lead_detail` VALUES("4382", "491", "10", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("4383", "491", "10", "19", "work email");
INSERT INTO `wp_rg_lead_detail` VALUES("4384", "491", "10", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4385", "491", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("4386", "491", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4387", "491", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("4388", "491", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4389", "491", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4390", "491", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4391", "492", "10", "20.3", "Jake");
INSERT INTO `wp_rg_lead_detail` VALUES("4392", "492", "10", "20.6", "Takeda");
INSERT INTO `wp_rg_lead_detail` VALUES("4393", "492", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("4394", "492", "10", "10", "20/01/2003");
INSERT INTO `wp_rg_lead_detail` VALUES("4395", "492", "10", "4", "jetfusion@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4396", "492", "10", "7", "(250) 744-0644");
INSERT INTO `wp_rg_lead_detail` VALUES("4397", "492", "10", "2", "Christine Takeda");
INSERT INTO `wp_rg_lead_detail` VALUES("4398", "492", "10", "3.1", "4147 Carey Road");
INSERT INTO `wp_rg_lead_detail` VALUES("4399", "492", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4400", "492", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4401", "492", "10", "3.5", "V8Z 4G7");
INSERT INTO `wp_rg_lead_detail` VALUES("4402", "492", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4403", "492", "10", "5", "takefour@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4404", "492", "10", "6", "(250) 213-8249");
INSERT INTO `wp_rg_lead_detail` VALUES("4405", "492", "10", "8", "email.");
INSERT INTO `wp_rg_lead_detail` VALUES("4406", "492", "10", "19", "Christ Community Church");
INSERT INTO `wp_rg_lead_detail` VALUES("4407", "492", "10", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4408", "492", "10", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("4409", "492", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("4410", "492", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("4411", "492", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4412", "492", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4413", "492", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4414", "492", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4415", "493", "10", "20.3", "Kailyn");
INSERT INTO `wp_rg_lead_detail` VALUES("4416", "493", "10", "20.6", "Groth");
INSERT INTO `wp_rg_lead_detail` VALUES("4417", "493", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("4418", "493", "10", "10", "03/11/2004");
INSERT INTO `wp_rg_lead_detail` VALUES("4419", "493", "10", "4", "kailynxoxo@me.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4420", "493", "10", "7", "(778) 977-6394");
INSERT INTO `wp_rg_lead_detail` VALUES("4421", "493", "10", "2", "Lori Ferguson");
INSERT INTO `wp_rg_lead_detail` VALUES("4422", "493", "10", "3.1", "1620 Wycliffe Place");
INSERT INTO `wp_rg_lead_detail` VALUES("4423", "493", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4424", "493", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4425", "493", "10", "3.5", "V8N 4X4");
INSERT INTO `wp_rg_lead_detail` VALUES("4426", "493", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4427", "493", "10", "5", "leferguson@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4428", "493", "10", "6", "(250) 213-6100");
INSERT INTO `wp_rg_lead_detail` VALUES("4429", "493", "10", "8", "Parent\'s email or text youth");
INSERT INTO `wp_rg_lead_detail` VALUES("4430", "493", "10", "19", "Volunteer Victoria e-news");
INSERT INTO `wp_rg_lead_detail` VALUES("4431", "493", "10", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4432", "493", "10", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("4433", "493", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4434", "493", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("4435", "493", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4436", "493", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4437", "493", "10", "17", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4438", "494", "10", "20.3", "Mary-Anne");
INSERT INTO `wp_rg_lead_detail` VALUES("4439", "494", "10", "20.6", "Gervais");
INSERT INTO `wp_rg_lead_detail` VALUES("4440", "494", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("4441", "494", "10", "10", "24/09/2000");
INSERT INTO `wp_rg_lead_detail` VALUES("4442", "494", "10", "4", "catherinegervais1@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4443", "494", "10", "7", "(250) 891-4277");
INSERT INTO `wp_rg_lead_detail` VALUES("4444", "494", "10", "2", "Catherine Gervais");
INSERT INTO `wp_rg_lead_detail` VALUES("4445", "494", "10", "3.1", "A14 - 2820 Harriet Road");
INSERT INTO `wp_rg_lead_detail` VALUES("4446", "494", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4447", "494", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4448", "494", "10", "3.5", "V9A 1T1");
INSERT INTO `wp_rg_lead_detail` VALUES("4449", "494", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4450", "494", "10", "5", "catherinegervais1@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4451", "494", "10", "6", "(250) 891-4277");
INSERT INTO `wp_rg_lead_detail` VALUES("4452", "494", "10", "8", "phone");
INSERT INTO `wp_rg_lead_detail` VALUES("4453", "494", "10", "19", "word of mouth");
INSERT INTO `wp_rg_lead_detail` VALUES("4454", "494", "10", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4455", "494", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("4456", "494", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4457", "494", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4458", "494", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4459", "494", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4460", "494", "10", "17", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("4461", "495", "14", "1.3", "Shelby");
INSERT INTO `wp_rg_lead_detail` VALUES("4462", "495", "14", "1.6", "McCoy");
INSERT INTO `wp_rg_lead_detail` VALUES("4463", "495", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("4464", "495", "14", "3", "(250) 739-0981");
INSERT INTO `wp_rg_lead_detail` VALUES("4465", "495", "14", "4", "Mccoy.shelby@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4466", "495", "14", "11", "Recommended by friend");
INSERT INTO `wp_rg_lead_detail` VALUES("4467", "495", "14", "5", "Depression, anxiety attacks. \r\nFemale therapist. \r\nNo exteded health.\r\nTuesday\'s until the end of May. Then may change.");
INSERT INTO `wp_rg_lead_detail` VALUES("4468", "495", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4469", "495", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4470", "495", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4471", "496", "14", "1.3", "Joseph");
INSERT INTO `wp_rg_lead_detail` VALUES("4472", "496", "14", "1.6", "Lake");
INSERT INTO `wp_rg_lead_detail` VALUES("4473", "496", "14", "2", "44");
INSERT INTO `wp_rg_lead_detail` VALUES("4474", "496", "14", "3", "(250) 888-4906");
INSERT INTO `wp_rg_lead_detail` VALUES("4475", "496", "14", "4", "lakejoseph@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4476", "496", "14", "11", "online");
INSERT INTO `wp_rg_lead_detail` VALUES("4477", "496", "14", "5", "i am in a 20+ year marriage. I have Rapid Cycling Bi-Polar 1, PTSD, and ADHD. I am on CPP Disability and attending Camosun college. We have 2 children (11,8) My wife is at her wit\'s end living being with me and we fight ALL the time horribly. I need help!!! WE NEED HELP!\r\nPlease call if you can help at all. I have a hard time filling out these forms.");
INSERT INTO `wp_rg_lead_detail` VALUES("4478", "496", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4479", "496", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4480", "496", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4481", "496", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4482", "496", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4483", "497", "14", "1.3", "Allison");
INSERT INTO `wp_rg_lead_detail` VALUES("4484", "497", "14", "1.6", "Saturley");
INSERT INTO `wp_rg_lead_detail` VALUES("4485", "497", "14", "2", "41");
INSERT INTO `wp_rg_lead_detail` VALUES("4486", "497", "14", "3", "(250) 514-3663");
INSERT INTO `wp_rg_lead_detail` VALUES("4487", "497", "14", "4", "amsaturley@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4488", "497", "14", "11", "CMHA");
INSERT INTO `wp_rg_lead_detail` VALUES("4489", "497", "14", "5", "My daughter and I need counselling to deal with the recent death of her father and anger and fear and loss problems\r\n\r\nPrefer a female counsellor as she is afraid of strange men and afternoons would work best after school. I\'m not employed at this time and struggling so cannot afford much");
INSERT INTO `wp_rg_lead_detail` VALUES("4490", "497", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4491", "497", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4492", "497", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4493", "497", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4494", "498", "3", "1.3", "Carla");
INSERT INTO `wp_rg_lead_detail` VALUES("4495", "498", "3", "1.6", "Willock");
INSERT INTO `wp_rg_lead_detail` VALUES("4496", "498", "3", "2", "carlawillock@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4497", "498", "3", "3.1", "3361 Linwood Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("4498", "498", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4499", "498", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4500", "498", "3", "3.5", "V8X 1E5");
INSERT INTO `wp_rg_lead_detail` VALUES("4501", "498", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4502", "498", "3", "4", "(778) 835-9549");
INSERT INTO `wp_rg_lead_detail` VALUES("4503", "498", "3", "7", "01/01/01");
INSERT INTO `wp_rg_lead_detail` VALUES("4504", "498", "3", "5", "interested in email list for any upcoming courses");
INSERT INTO `wp_rg_lead_detail` VALUES("4506", "499", "14", "1.3", "Monika");
INSERT INTO `wp_rg_lead_detail` VALUES("4507", "499", "14", "1.6", "Pakstas");
INSERT INTO `wp_rg_lead_detail` VALUES("4508", "499", "14", "2", "30");
INSERT INTO `wp_rg_lead_detail` VALUES("4509", "499", "14", "3", "(647) 213-0095");
INSERT INTO `wp_rg_lead_detail` VALUES("4510", "499", "14", "4", "monika.pakstas@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4511", "499", "14", "11", "Saw your brochure");
INSERT INTO `wp_rg_lead_detail` VALUES("4512", "499", "14", "5", "Mild anxiety & depression\r\nPast eating disorder");
INSERT INTO `wp_rg_lead_detail` VALUES("4513", "499", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4514", "499", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("4515", "499", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4516", "499", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4517", "500", "14", "1.3", "Julian");
INSERT INTO `wp_rg_lead_detail` VALUES("4518", "500", "14", "1.6", "Drouin");
INSERT INTO `wp_rg_lead_detail` VALUES("4519", "500", "14", "2", "26");
INSERT INTO `wp_rg_lead_detail` VALUES("4520", "500", "14", "3", "(778) 350-7707");
INSERT INTO `wp_rg_lead_detail` VALUES("4521", "500", "14", "4", "Julian.drouin@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4522", "500", "14", "11", "FiancÃ© screamed your name at me and demanded that I \"Fix myself\"");
INSERT INTO `wp_rg_lead_detail` VALUES("4523", "500", "14", "5", "Need help dealing with repressed memories and relationship counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("4524", "500", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4525", "500", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4526", "500", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4527", "500", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4528", "500", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4529", "501", "14", "1.3", "Emily");
INSERT INTO `wp_rg_lead_detail` VALUES("4530", "501", "14", "1.6", "Coldwell");
INSERT INTO `wp_rg_lead_detail` VALUES("4531", "501", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("4532", "501", "14", "3", "(250) 213-6350");
INSERT INTO `wp_rg_lead_detail` VALUES("4533", "501", "14", "4", "emilysaidthis@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4534", "501", "14", "11", "Online search");
INSERT INTO `wp_rg_lead_detail` VALUES("4535", "501", "14", "5", "Currently going through a trial-separation with my husband. Feeling depressed and I think I need some help with coping mechanisms and getting myself back. I would prefer a female therapist. My availability is kind of all over the place, but generally Thursday or Friday could work earlier in the morning. Monday late afternoon is available too. I don\'t have benefits, and would need income-based pricing as I\'m a minimum wage worker.");
INSERT INTO `wp_rg_lead_detail` VALUES("4536", "501", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4537", "501", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4538", "501", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4539", "502", "10", "20.3", "Kaylen");
INSERT INTO `wp_rg_lead_detail` VALUES("4540", "502", "10", "20.6", "Eardley");
INSERT INTO `wp_rg_lead_detail` VALUES("4541", "502", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("4542", "502", "10", "10", "03/02/2004");
INSERT INTO `wp_rg_lead_detail` VALUES("4543", "502", "10", "4", "7livelaughlove@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4544", "502", "10", "7", "(778) 678-6848");
INSERT INTO `wp_rg_lead_detail` VALUES("4545", "502", "10", "2", "Marie Eardley");
INSERT INTO `wp_rg_lead_detail` VALUES("4546", "502", "10", "3.1", "3946 Emerald Place");
INSERT INTO `wp_rg_lead_detail` VALUES("4547", "502", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4548", "502", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4549", "502", "10", "3.5", "V8P 4T6");
INSERT INTO `wp_rg_lead_detail` VALUES("4550", "502", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4551", "502", "10", "5", "meardley@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4552", "502", "10", "6", "(250) 216-6042");
INSERT INTO `wp_rg_lead_detail` VALUES("4553", "502", "10", "8", "Email or text");
INSERT INTO `wp_rg_lead_detail` VALUES("4554", "502", "10", "19", "Big Brothers Big Sisters");
INSERT INTO `wp_rg_lead_detail` VALUES("4555", "502", "10", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4556", "502", "10", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4557", "502", "10", "18.1", "Cheque");
INSERT INTO `wp_rg_lead_detail` VALUES("4558", "502", "10", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("4559", "502", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4560", "502", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("4561", "502", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4562", "502", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4563", "502", "10", "17", "Sertraline - 75 mg, nexium - 20 mg.");
INSERT INTO `wp_rg_lead_detail` VALUES("4564", "503", "10", "20.3", "Tayah");
INSERT INTO `wp_rg_lead_detail` VALUES("4565", "503", "10", "20.6", "Thomson");
INSERT INTO `wp_rg_lead_detail` VALUES("4566", "503", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("4567", "503", "10", "10", "24/03/2002");
INSERT INTO `wp_rg_lead_detail` VALUES("4568", "503", "10", "4", "xb33qu33nx@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4569", "503", "10", "7", "(778) 677-5743");
INSERT INTO `wp_rg_lead_detail` VALUES("4570", "503", "10", "2", "Andrea Koschzeck");
INSERT INTO `wp_rg_lead_detail` VALUES("4571", "503", "10", "3.1", "3182 Donald Street");
INSERT INTO `wp_rg_lead_detail` VALUES("4572", "503", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4573", "503", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4574", "503", "10", "3.5", "V9A 1Y3");
INSERT INTO `wp_rg_lead_detail` VALUES("4575", "503", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4576", "503", "10", "5", "tayahs_mommy@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4577", "503", "10", "6", "(250) 744-4267");
INSERT INTO `wp_rg_lead_detail` VALUES("4578", "503", "10", "8", "Phone or email");
INSERT INTO `wp_rg_lead_detail` VALUES("4579", "503", "10", "19", "From sister who is a minister");
INSERT INTO `wp_rg_lead_detail` VALUES("4580", "503", "10", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4581", "503", "10", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4582", "503", "10", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("4583", "503", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("4584", "503", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4585", "503", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4586", "503", "10", "17", "No.");
INSERT INTO `wp_rg_lead_detail` VALUES("4587", "504", "14", "1.3", "Thea");
INSERT INTO `wp_rg_lead_detail` VALUES("4588", "504", "14", "1.6", "Smith");
INSERT INTO `wp_rg_lead_detail` VALUES("4589", "504", "14", "2", "20");
INSERT INTO `wp_rg_lead_detail` VALUES("4590", "504", "14", "3", "(250) 888-6327");
INSERT INTO `wp_rg_lead_detail` VALUES("4591", "504", "14", "4", "theasmith@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("4592", "504", "14", "11", "Through the University of Victoria\'s website.");
INSERT INTO `wp_rg_lead_detail` VALUES("4593", "504", "14", "5", "I am having issues with stress and anxiety about school, work and my social life. I also struggle with anger in my personal relationships. I think I also struggle with a low self-esteem and problems trusting people in my life. \r\nI work two jobs, so my availability is only Thursday or Friday, but any time of day. \r\nI don\'t have a preference for a male or female therapist.\r\nI do have health benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("4594", "504", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4595", "504", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4596", "504", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4597", "504", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4598", "505", "14", "1.3", "Tabitha");
INSERT INTO `wp_rg_lead_detail` VALUES("4599", "505", "14", "1.6", "Bennett");
INSERT INTO `wp_rg_lead_detail` VALUES("4600", "505", "14", "2", "31");
INSERT INTO `wp_rg_lead_detail` VALUES("4601", "505", "14", "3", "(250) 415-0517");
INSERT INTO `wp_rg_lead_detail` VALUES("4602", "505", "14", "4", "tabi74@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4603", "505", "14", "11", "internet");
INSERT INTO `wp_rg_lead_detail` VALUES("4604", "505", "14", "5", "Dealing with stress of being a new parent, major relationship issues with spouse, and stressors due to financial problems");
INSERT INTO `wp_rg_lead_detail` VALUES("4605", "505", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4606", "505", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4607", "505", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4608", "505", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("4609", "506", "14", "1.3", "Jorden");
INSERT INTO `wp_rg_lead_detail` VALUES("4610", "506", "14", "1.6", "Donovan");
INSERT INTO `wp_rg_lead_detail` VALUES("4611", "506", "14", "2", "20");
INSERT INTO `wp_rg_lead_detail` VALUES("4612", "506", "14", "3", "(250) 634-1097");
INSERT INTO `wp_rg_lead_detail` VALUES("4613", "506", "14", "4", "jordendonovan@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4614", "506", "14", "11", "fellow counsellor");
INSERT INTO `wp_rg_lead_detail` VALUES("4615", "506", "14", "5", "anxiety, depression");
INSERT INTO `wp_rg_lead_detail` VALUES("4616", "506", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4617", "506", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4618", "506", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4619", "507", "14", "1.3", "Jessica");
INSERT INTO `wp_rg_lead_detail` VALUES("4620", "507", "14", "1.6", "Speed");
INSERT INTO `wp_rg_lead_detail` VALUES("4621", "507", "14", "2", "25");
INSERT INTO `wp_rg_lead_detail` VALUES("4622", "507", "14", "3", "(250) 532-8478");
INSERT INTO `wp_rg_lead_detail` VALUES("4623", "507", "14", "4", "Jessicamspeed@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4624", "507", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("4625", "507", "14", "5", "-Female therapist preferred\r\n-Health benefits through Sunlife I am not sure if it covers counselling\r\n-Best days for an appointment would be sunday or monday or any other day after 6pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4626", "507", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4627", "507", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4628", "507", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("4629", "507", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4630", "507", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4631", "508", "10", "20.3", "Jaida");
INSERT INTO `wp_rg_lead_detail` VALUES("4632", "508", "10", "20.6", "Ready");
INSERT INTO `wp_rg_lead_detail` VALUES("4633", "508", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("4634", "508", "10", "10", "26/04/2005");
INSERT INTO `wp_rg_lead_detail` VALUES("4635", "508", "10", "4", "jaidar1416@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4636", "508", "10", "7", "(250) 508-2829");
INSERT INTO `wp_rg_lead_detail` VALUES("4637", "508", "10", "2", "Jaime Ready");
INSERT INTO `wp_rg_lead_detail` VALUES("4638", "508", "10", "3.1", "952 Walker St");
INSERT INTO `wp_rg_lead_detail` VALUES("4639", "508", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4640", "508", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4641", "508", "10", "3.5", "V9A4C4");
INSERT INTO `wp_rg_lead_detail` VALUES("4642", "508", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4643", "508", "10", "5", "jaiready@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4644", "508", "10", "6", "(778) 977-3135");
INSERT INTO `wp_rg_lead_detail` VALUES("4645", "508", "10", "8", "email to set up or schedule   / call or email for anything else.");
INSERT INTO `wp_rg_lead_detail` VALUES("4646", "508", "10", "19", "Shawna - Lansdowne Middle School");
INSERT INTO `wp_rg_lead_detail` VALUES("4647", "508", "10", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4648", "508", "10", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4649", "508", "10", "18.3", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("4650", "508", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4651", "508", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("4652", "508", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4653", "508", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4654", "508", "10", "17", "Not at this time.");
INSERT INTO `wp_rg_lead_detail` VALUES("4655", "509", "14", "1.3", "Bryce");
INSERT INTO `wp_rg_lead_detail` VALUES("4656", "509", "14", "1.6", "Starling");
INSERT INTO `wp_rg_lead_detail` VALUES("4657", "509", "14", "2", "20");
INSERT INTO `wp_rg_lead_detail` VALUES("4658", "509", "14", "3", "(125) 068-6253");
INSERT INTO `wp_rg_lead_detail` VALUES("4659", "509", "14", "4", "Brycestarling@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4660", "509", "14", "11", "Friend");
INSERT INTO `wp_rg_lead_detail` VALUES("4661", "509", "14", "5", "I have relationship issues that i cant get over with a current relationship that im in. I also have issues from my childhood with past relationships that i feel i never resolved. For example being assulted by my x\'s uncle. Im free 5-8 anyday of the week an female or male therapist is okay!");
INSERT INTO `wp_rg_lead_detail` VALUES("4662", "509", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4663", "509", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4664", "509", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("4665", "509", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4666", "509", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4667", "509", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4668", "510", "10", "20.3", "Julio");
INSERT INTO `wp_rg_lead_detail` VALUES("4669", "510", "10", "20.6", "Gonzalez-Bernal");
INSERT INTO `wp_rg_lead_detail` VALUES("4670", "510", "10", "9.1", "Male");
INSERT INTO `wp_rg_lead_detail` VALUES("4671", "510", "10", "10", "13/ 12/ 2003");
INSERT INTO `wp_rg_lead_detail` VALUES("4672", "510", "10", "4", "julio1966x@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4673", "510", "10", "7", "(250) 483-5605");
INSERT INTO `wp_rg_lead_detail` VALUES("4674", "510", "10", "2", "Julissa Bernal Mora");
INSERT INTO `wp_rg_lead_detail` VALUES("4675", "510", "10", "3.1", "378 St Charles St");
INSERT INTO `wp_rg_lead_detail` VALUES("4676", "510", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4677", "510", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4678", "510", "10", "3.5", "V8S 3N3");
INSERT INTO `wp_rg_lead_detail` VALUES("4679", "510", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4680", "510", "10", "5", "bernaljulissa@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4681", "510", "10", "6", "(250) 483-5605");
INSERT INTO `wp_rg_lead_detail` VALUES("4682", "510", "10", "8", "email");
INSERT INTO `wp_rg_lead_detail` VALUES("4683", "510", "10", "19", "Volunteer Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4684", "510", "10", "21.2", "Saturday, June 24/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4685", "510", "10", "18.2", "Credit Card ($2 surcharge applies)");
INSERT INTO `wp_rg_lead_detail` VALUES("4686", "510", "10", "12.3", "relationship challenges");
INSERT INTO `wp_rg_lead_detail` VALUES("4687", "510", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4688", "510", "10", "17", "No, he is not currently taking any medication");
INSERT INTO `wp_rg_lead_detail` VALUES("4689", "511", "14", "1.3", "Sebastien");
INSERT INTO `wp_rg_lead_detail` VALUES("4690", "511", "14", "1.6", "Thuot");
INSERT INTO `wp_rg_lead_detail` VALUES("4691", "511", "14", "2", "994 Tayberry Terrace");
INSERT INTO `wp_rg_lead_detail` VALUES("4692", "511", "14", "3", "(250) 588-6127");
INSERT INTO `wp_rg_lead_detail` VALUES("4693", "511", "14", "4", "sthuot009@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4694", "511", "14", "11", "word of mouth");
INSERT INTO `wp_rg_lead_detail` VALUES("4695", "511", "14", "5", "anxiety, depression");
INSERT INTO `wp_rg_lead_detail` VALUES("4696", "511", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4697", "511", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4698", "511", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4699", "512", "14", "1.3", "Jessica");
INSERT INTO `wp_rg_lead_detail` VALUES("4700", "512", "14", "1.6", "Matthias");
INSERT INTO `wp_rg_lead_detail` VALUES("4701", "512", "14", "2", "33");
INSERT INTO `wp_rg_lead_detail` VALUES("4702", "512", "14", "3", "(250) 889-8276");
INSERT INTO `wp_rg_lead_detail` VALUES("4703", "512", "14", "4", "matthias.jessica@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4704", "512", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("4705", "512", "14", "5", "Been experiencing fluctuating anxiety and panic attacks for the last 26 years. Lots of childhood trauma, sexual abuse etc. I have done a lot of counselling in the past and have made great strides. Im currently struggling with unhealthy relationships and choosing partners who are not healthy for me. This is tied into low self esteem. I will be finishing school in the next 4 weeks so currently I can do a 4pm and on appointment but my availability will open up fully after that. I prefer a female counsellor but if there is a long wait then I am open to a male. Im hoping to work with someone who has expereince with anxiety/relationship/childhood trauma issues. Please let me know if I also need to call or if this is sufficiant to get the ball rolling.");
INSERT INTO `wp_rg_lead_detail` VALUES("4706", "512", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4707", "512", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4708", "512", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4709", "512", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4710", "513", "14", "1.3", "Samantha");
INSERT INTO `wp_rg_lead_detail` VALUES("4711", "513", "14", "1.6", "Fink");
INSERT INTO `wp_rg_lead_detail` VALUES("4712", "513", "14", "2", "24");
INSERT INTO `wp_rg_lead_detail` VALUES("4713", "513", "14", "3", "(250) 208-2814");
INSERT INTO `wp_rg_lead_detail` VALUES("4714", "513", "14", "4", "Sammi3.0x@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4715", "513", "14", "11", "Councillor & Online");
INSERT INTO `wp_rg_lead_detail` VALUES("4716", "513", "14", "5", "I need counselling for my mother & myself. We have communication problems. I also have history of drug addiction been getting clean for 2 years for my daughter which my mom has custody of.  I am on income assistance.");
INSERT INTO `wp_rg_lead_detail` VALUES("4717", "513", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4718", "513", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4719", "513", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4720", "514", "3", "1.3", "Amber");
INSERT INTO `wp_rg_lead_detail` VALUES("4721", "514", "3", "1.6", "Eves");
INSERT INTO `wp_rg_lead_detail` VALUES("4722", "514", "3", "2", "aeves1228@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4723", "514", "3", "3.1", "640 Dunedin St.");
INSERT INTO `wp_rg_lead_detail` VALUES("4724", "514", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4725", "514", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4726", "514", "3", "3.5", "V8T 2L8");
INSERT INTO `wp_rg_lead_detail` VALUES("4727", "514", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4728", "514", "3", "4", "(250) 884-0144");
INSERT INTO `wp_rg_lead_detail` VALUES("4729", "514", "3", "7", "October 14, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("4730", "514", "3", "5", "Pastoral Care Team Training");
INSERT INTO `wp_rg_lead_detail` VALUES("4732", "515", "14", "1.3", "Kaleigh");
INSERT INTO `wp_rg_lead_detail` VALUES("4733", "515", "14", "1.6", "Giles");
INSERT INTO `wp_rg_lead_detail` VALUES("4734", "515", "14", "2", "28");
INSERT INTO `wp_rg_lead_detail` VALUES("4735", "515", "14", "3", "(250) 415-8840");
INSERT INTO `wp_rg_lead_detail` VALUES("4736", "515", "14", "4", "kegiles@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4737", "515", "14", "11", "Citizen\'s counselling had a 2 month waiting list and forwarded me your information.");
INSERT INTO `wp_rg_lead_detail` VALUES("4738", "515", "14", "5", "I\'m in the middle of a life transition and would like some feedback. I have self esteem issues and anxiety around people, and doing the perceived \"right thing\". As a result, I often have difficulty making decisions, and following through on those decisions.\r\nI work 2-3 jobs 5 days a week, and I often feel too exhausted and apathetic to make the important decisions in my life. \r\nWhile I do work a lot during the day, many of my hours are flexible, but weekday afternoons or anytime on the weekend is preferable for a meeting.\r\nI don\'t have any extend health benefits.");
INSERT INTO `wp_rg_lead_detail` VALUES("4739", "515", "14", "6.1", "M-F, 9am-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4740", "515", "14", "6.3", "Saturday/Sunday during the day");
INSERT INTO `wp_rg_lead_detail` VALUES("4741", "515", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4742", "515", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4743", "516", "14", "1.3", "Brad");
INSERT INTO `wp_rg_lead_detail` VALUES("4744", "516", "14", "1.6", "Lewis");
INSERT INTO `wp_rg_lead_detail` VALUES("4745", "516", "14", "2", "42");
INSERT INTO `wp_rg_lead_detail` VALUES("4746", "516", "14", "3", "(250) 686-1793");
INSERT INTO `wp_rg_lead_detail` VALUES("4747", "516", "14", "4", "Brad.fl@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4748", "516", "14", "11", "Wife has used your services");
INSERT INTO `wp_rg_lead_detail` VALUES("4749", "516", "14", "5", "Life stress and coping skills, communication skills.\r\nI don\'t have any preference between a man or a woman.\r\nI unfortunately don\'t have extended health benefits that would cover this cost");
INSERT INTO `wp_rg_lead_detail` VALUES("4750", "516", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4751", "516", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4752", "516", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4753", "517", "3", "1.3", "Brody");
INSERT INTO `wp_rg_lead_detail` VALUES("4754", "517", "3", "1.6", "Hennebery");
INSERT INTO `wp_rg_lead_detail` VALUES("4755", "517", "3", "2", "lunakits@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4756", "517", "3", "3.1", "10-2111 Spring Road");
INSERT INTO `wp_rg_lead_detail` VALUES("4757", "517", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4758", "517", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4759", "517", "3", "3.5", "V8T3G1");
INSERT INTO `wp_rg_lead_detail` VALUES("4760", "517", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4761", "517", "3", "4", "(778) 977-5253");
INSERT INTO `wp_rg_lead_detail` VALUES("4762", "517", "3", "7", "07/03/17");
INSERT INTO `wp_rg_lead_detail` VALUES("4763", "517", "3", "5", "Making it Work for Teens");
INSERT INTO `wp_rg_lead_detail` VALUES("4765", "518", "14", "1.3", "Mikke");
INSERT INTO `wp_rg_lead_detail` VALUES("4766", "518", "14", "1.6", "Duquette");
INSERT INTO `wp_rg_lead_detail` VALUES("4767", "518", "14", "2", "July 27th 1988");
INSERT INTO `wp_rg_lead_detail` VALUES("4768", "518", "14", "3", "(306) 216-5501");
INSERT INTO `wp_rg_lead_detail` VALUES("4769", "518", "14", "4", "Mikkeduquette@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4770", "518", "14", "11", "Google search");
INSERT INTO `wp_rg_lead_detail` VALUES("4771", "518", "14", "5", "Hello, \r\n\r\nMy name is Mikke. I moved here recently to start a new life. I have struggled with mental health issues since I was quite young. I was diagnosed with ADHD, most times people with acclimate to this by adulthood, I still struggle with it today. This illness is like a grab bag of mental illness that seem to change in severity at random. Some days I am riddled with ainxiety that it consumes every thought, other days I feel like I\'m drowning in my own depression. Not all days are bad, I\'ve spent a lot of energy trying to self manage myself as I know there are others worse then me. \r\n\r\nI want to start a new life, a better one with genuine happiness. My fear is that I am stuck in these perpetual cycles of which I cannot control. I find myself involuntarily making the same mistakes each time. I can no longer continue trying to self manage these issues, I do not want to continue feeling this way, I do not want to feel like a backseat driver in my own mind. \r\n\r\nI am committed to change, committed to improving my life and mental health. I\'ve come to the conclusion that I need help outside myself. I am low Income, that\'s why therapy has been a difficult challenge for me, even if I know it\'s what I need. I am hoping I can find some help with your services. \r\n\r\nI work Monday to Friday days. \r\n\r\nThank you very much for your time");
INSERT INTO `wp_rg_lead_detail` VALUES("4772", "518", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4773", "518", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4774", "518", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4775", "518", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4776", "519", "14", "1.3", "Rachel");
INSERT INTO `wp_rg_lead_detail` VALUES("4777", "519", "14", "1.6", "Saunders");
INSERT INTO `wp_rg_lead_detail` VALUES("4778", "519", "14", "2", "January 27, 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("4779", "519", "14", "3", "(250) 858-1901");
INSERT INTO `wp_rg_lead_detail` VALUES("4780", "519", "14", "4", "rachel.saunders1234@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4781", "519", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("4782", "519", "14", "5", "I need help changing negative thought patterns and behaviours in my life. I need to make serious improvement in my stress and anxiety mangement as it is currently affecting my day to day life and relationships. I am very inerested in CBT, and have tried countless ways to better myself but feel I desperately need the help of a professional.");
INSERT INTO `wp_rg_lead_detail` VALUES("4783", "519", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4784", "519", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4785", "519", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4786", "519", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4787", "519", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("4788", "520", "14", "1.3", "Loveica");
INSERT INTO `wp_rg_lead_detail` VALUES("4789", "520", "14", "1.6", "Mackenzie");
INSERT INTO `wp_rg_lead_detail` VALUES("4790", "520", "14", "2", "July 15 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("4791", "520", "14", "3", "(250) 740-5869");
INSERT INTO `wp_rg_lead_detail` VALUES("4792", "520", "14", "4", "Loveica.mackenzie@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4793", "520", "14", "11", "A friend");
INSERT INTO `wp_rg_lead_detail` VALUES("4794", "520", "14", "5", "A lot.. I\'m hoping to make this a regular thing if at all possible. \r\n\r\nI need to work through some of the following:\r\n-self esteem\r\n-childhood abuse\r\n-sexual abuse\r\n-feeling peace in life \r\n-depression/anxiety\r\n\r\n*I am only available Monday during the day, and Tuesday anytime. My work schedule is a bit demanding. \r\n*I also have some health coverage, up to 300, after that I\'d be paying out of pocket.");
INSERT INTO `wp_rg_lead_detail` VALUES("4795", "520", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4796", "520", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4797", "520", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4798", "521", "10", "20.3", "Mahleeah");
INSERT INTO `wp_rg_lead_detail` VALUES("4799", "521", "10", "20.6", "Peters");
INSERT INTO `wp_rg_lead_detail` VALUES("4800", "521", "10", "9.2", "Female");
INSERT INTO `wp_rg_lead_detail` VALUES("4801", "521", "10", "10", "July 8 2002");
INSERT INTO `wp_rg_lead_detail` VALUES("4802", "521", "10", "4", "Speters2614@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4803", "521", "10", "7", "(250) 508-3887");
INSERT INTO `wp_rg_lead_detail` VALUES("4804", "521", "10", "2", "Sue Peters");
INSERT INTO `wp_rg_lead_detail` VALUES("4805", "521", "10", "3.1", "2614 Dowler Pl");
INSERT INTO `wp_rg_lead_detail` VALUES("4806", "521", "10", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4807", "521", "10", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("4808", "521", "10", "3.5", "V8T 4H8");
INSERT INTO `wp_rg_lead_detail` VALUES("4809", "521", "10", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("4810", "521", "10", "5", "Speters2614@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4811", "521", "10", "6", "(250) 508-3887");
INSERT INTO `wp_rg_lead_detail` VALUES("4812", "521", "10", "8", "Email");
INSERT INTO `wp_rg_lead_detail` VALUES("4813", "521", "10", "19", "Hulitan");
INSERT INTO `wp_rg_lead_detail` VALUES("4814", "521", "10", "21.1", "Saturday, June17/pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4815", "521", "10", "18.2", "Debit Card (in person only)");
INSERT INTO `wp_rg_lead_detail` VALUES("4816", "521", "10", "12.1", "academic pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4817", "521", "10", "12.2", "family stress");
INSERT INTO `wp_rg_lead_detail` VALUES("4818", "521", "10", "12.4", "peer pressure");
INSERT INTO `wp_rg_lead_detail` VALUES("4819", "521", "10", "12.5", "self-esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("4820", "521", "10", "12.6", "general anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4821", "521", "10", "17", "Fluoxetine 5mg");
INSERT INTO `wp_rg_lead_detail` VALUES("4822", "522", "14", "1.3", "Rosalinde (Roz)");
INSERT INTO `wp_rg_lead_detail` VALUES("4823", "522", "14", "1.6", "Harper");
INSERT INTO `wp_rg_lead_detail` VALUES("4824", "522", "14", "2", "May 8, 1963");
INSERT INTO `wp_rg_lead_detail` VALUES("4825", "522", "14", "3", "(250) 570-2204");
INSERT INTO `wp_rg_lead_detail` VALUES("4826", "522", "14", "4", "rahrah942@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4827", "522", "14", "11", "a friend from work");
INSERT INTO `wp_rg_lead_detail` VALUES("4828", "522", "14", "5", "grief - I lost both my parents within3 months of each other, I am an only child.  Anxiety - I find myself anxious and unable to deal with stress.");
INSERT INTO `wp_rg_lead_detail` VALUES("4829", "522", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4830", "522", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4831", "522", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("4832", "522", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4833", "522", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4834", "523", "14", "1.3", "Joshua");
INSERT INTO `wp_rg_lead_detail` VALUES("4835", "523", "14", "1.6", "Perez Horsland");
INSERT INTO `wp_rg_lead_detail` VALUES("4836", "523", "14", "2", "2, May, 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("4837", "523", "14", "3", "(250) 590-7301");
INSERT INTO `wp_rg_lead_detail` VALUES("4838", "523", "14", "4", "blue_joshua@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4839", "523", "14", "11", "Island Health");
INSERT INTO `wp_rg_lead_detail` VALUES("4840", "523", "14", "5", "Severe Anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("4841", "523", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4842", "523", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4843", "523", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4844", "524", "14", "1.3", "Julio");
INSERT INTO `wp_rg_lead_detail` VALUES("4845", "524", "14", "1.6", "Gonzalez-Bernal");
INSERT INTO `wp_rg_lead_detail` VALUES("4846", "524", "14", "2", "December 13, 2003");
INSERT INTO `wp_rg_lead_detail` VALUES("4847", "524", "14", "3", "(250) 483-5605");
INSERT INTO `wp_rg_lead_detail` VALUES("4848", "524", "14", "4", "bernaljulissa@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4849", "524", "14", "11", "Amy Mckendrick");
INSERT INTO `wp_rg_lead_detail` VALUES("4850", "524", "14", "5", "Julio join the Amy youth support group. However, he asked for an individual session. He has been presenting depression and anxiety.");
INSERT INTO `wp_rg_lead_detail` VALUES("4851", "524", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4852", "524", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4853", "524", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("4854", "525", "14", "1.3", "Robert");
INSERT INTO `wp_rg_lead_detail` VALUES("4855", "525", "14", "1.6", "Hill");
INSERT INTO `wp_rg_lead_detail` VALUES("4856", "525", "14", "2", "May 13, 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("4857", "525", "14", "3", "(250) 382-4472");
INSERT INTO `wp_rg_lead_detail` VALUES("4858", "525", "14", "4", "robertnhill@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4859", "525", "14", "11", "online");
INSERT INTO `wp_rg_lead_detail` VALUES("4860", "525", "14", "5", "anger, anxiety, stress, sexuality issues, family issues, spousal issues.");
INSERT INTO `wp_rg_lead_detail` VALUES("4861", "525", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4862", "525", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4863", "525", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4864", "525", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4865", "526", "14", "1.3", "Julia");
INSERT INTO `wp_rg_lead_detail` VALUES("4866", "526", "14", "1.6", "Asmundson");
INSERT INTO `wp_rg_lead_detail` VALUES("4867", "526", "14", "2", "20 OCT 1974");
INSERT INTO `wp_rg_lead_detail` VALUES("4868", "526", "14", "3", "(250) 208-8064");
INSERT INTO `wp_rg_lead_detail` VALUES("4869", "526", "14", "4", "healthcaring@icloud.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4870", "526", "14", "11", "Sean Lewis at The Mustard Seed Street Church");
INSERT INTO `wp_rg_lead_detail` VALUES("4871", "526", "14", "5", "I am on long term disability. I manage a bipolar type 1 disorder well with medication and am stable mood wise. I am having significant anxiety. I struggling not to isolate and eject out of my ministry and my relationship. I am engaged and long to heal from past as to not have fear about moving forward. Most difficulty is trusting my own judgement after having regained insight after psychosis. I also desire to renter the work force and my medical recommendation is to see a CBT therapist specializing in anxiety. I can tell you more about my experience iwith such a therapist.");
INSERT INTO `wp_rg_lead_detail` VALUES("4872", "526", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4873", "526", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4874", "526", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4875", "527", "14", "1.3", "Katie");
INSERT INTO `wp_rg_lead_detail` VALUES("4876", "527", "14", "1.6", "Forbes");
INSERT INTO `wp_rg_lead_detail` VALUES("4877", "527", "14", "2", "Jan. 2 1994");
INSERT INTO `wp_rg_lead_detail` VALUES("4878", "527", "14", "3", "(587) 226-2608");
INSERT INTO `wp_rg_lead_detail` VALUES("4879", "527", "14", "4", "katie_forbes@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4880", "527", "14", "11", "Employer");
INSERT INTO `wp_rg_lead_detail` VALUES("4881", "527", "14", "5", "I am an individual who suffer from depression, anxiety, stress and in a life transition. I recently been self harming in the form of cutting but I don\'t feel that I am suicidal. I would prefer to be counselled by another woman.");
INSERT INTO `wp_rg_lead_detail` VALUES("4882", "527", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4883", "527", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4884", "527", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4885", "527", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4886", "527", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("4887", "528", "14", "1.3", "Natasha");
INSERT INTO `wp_rg_lead_detail` VALUES("4888", "528", "14", "1.6", "Breitkreuz");
INSERT INTO `wp_rg_lead_detail` VALUES("4889", "528", "14", "2", "June 9/1981");
INSERT INTO `wp_rg_lead_detail` VALUES("4890", "528", "14", "3", "(778) 533-1880");
INSERT INTO `wp_rg_lead_detail` VALUES("4891", "528", "14", "4", "Tazzdark@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4892", "528", "14", "11", "Mustard seed");
INSERT INTO `wp_rg_lead_detail` VALUES("4893", "528", "14", "5", "I\'m not gonna make my appointment today. I\'m sorry but I\'ve driven myself into a bit of a spiral so I wish to wait until all the disturbing and shocking news ends before I try to heal. Thank you Bill for giving me a shot but I just can\'t do it today. I have no phone until the 27.");
INSERT INTO `wp_rg_lead_detail` VALUES("4894", "528", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4895", "528", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4896", "528", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4897", "529", "14", "1.3", "Jaime");
INSERT INTO `wp_rg_lead_detail` VALUES("4898", "529", "14", "1.6", "Ready");
INSERT INTO `wp_rg_lead_detail` VALUES("4899", "529", "14", "2", "It is for my son Jeffery - 02/09/1999");
INSERT INTO `wp_rg_lead_detail` VALUES("4900", "529", "14", "3", "(778) 977-3135");
INSERT INTO `wp_rg_lead_detail` VALUES("4901", "529", "14", "4", "Jaiready@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4902", "529", "14", "11", "My daughter is currently taking a mindfulness camp with tou");
INSERT INTO `wp_rg_lead_detail` VALUES("4903", "529", "14", "5", "My son suffers from depression. We are looking for someone to meet with him and help him develop skills / strategies to help him on his h\r\nDaily life.");
INSERT INTO `wp_rg_lead_detail` VALUES("4904", "529", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4905", "529", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4906", "529", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4907", "529", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("4908", "530", "14", "1.3", "Patricia");
INSERT INTO `wp_rg_lead_detail` VALUES("4909", "530", "14", "1.6", "Garner");
INSERT INTO `wp_rg_lead_detail` VALUES("4910", "530", "14", "2", "April 26 1994");
INSERT INTO `wp_rg_lead_detail` VALUES("4911", "530", "14", "3", "(250) 886-2024");
INSERT INTO `wp_rg_lead_detail` VALUES("4912", "530", "14", "4", "patricia.garner88@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4913", "530", "14", "11", "Mother");
INSERT INTO `wp_rg_lead_detail` VALUES("4914", "530", "14", "5", "social anxiety, self esteem, depression, emotional instability");
INSERT INTO `wp_rg_lead_detail` VALUES("4915", "530", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4916", "530", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4917", "530", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4918", "530", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4919", "530", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4920", "531", "14", "1.3", "James");
INSERT INTO `wp_rg_lead_detail` VALUES("4921", "531", "14", "1.6", "McEwen");
INSERT INTO `wp_rg_lead_detail` VALUES("4922", "531", "14", "2", "September 20th, 1984");
INSERT INTO `wp_rg_lead_detail` VALUES("4923", "531", "14", "3", "(778) 676-6836");
INSERT INTO `wp_rg_lead_detail` VALUES("4924", "531", "14", "4", "jamesalexander@hotmail.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4925", "531", "14", "11", "A friend");
INSERT INTO `wp_rg_lead_detail` VALUES("4926", "531", "14", "5", "Anxiety, existential crisis, sadness, depression, etc.");
INSERT INTO `wp_rg_lead_detail` VALUES("4927", "531", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4928", "531", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4929", "531", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4930", "531", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4931", "531", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4932", "532", "14", "1.3", "Cody (Preferred: Grayson)");
INSERT INTO `wp_rg_lead_detail` VALUES("4933", "532", "14", "1.6", "Draves");
INSERT INTO `wp_rg_lead_detail` VALUES("4934", "532", "14", "2", "March 21, 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("4935", "532", "14", "3", "(250) 739-1069");
INSERT INTO `wp_rg_lead_detail` VALUES("4936", "532", "14", "4", "truesthufflepuff@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4937", "532", "14", "11", "Friend");
INSERT INTO `wp_rg_lead_detail` VALUES("4938", "532", "14", "5", "Anxiety, Depression");
INSERT INTO `wp_rg_lead_detail` VALUES("4939", "532", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4940", "532", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4941", "532", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4942", "532", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("4943", "532", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4944", "532", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4945", "533", "14", "1.3", "Biancha");
INSERT INTO `wp_rg_lead_detail` VALUES("4946", "533", "14", "1.6", "King");
INSERT INTO `wp_rg_lead_detail` VALUES("4947", "533", "14", "2", "November 8th 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("4948", "533", "14", "3", "(250) 217-2471");
INSERT INTO `wp_rg_lead_detail` VALUES("4949", "533", "14", "4", "bianchaking@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4950", "533", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("4951", "533", "14", "5", "I am currently dealing with a lot of anxiety related to my body image, I have been struggling to lose weight over the course of the year, despite going to the gym, hot yoga, 10k runs all during the week. I am hoping to get some help with the anxiety that I have been feeling, and hope to try and reduce the panic attacks I feel.");
INSERT INTO `wp_rg_lead_detail` VALUES("4952", "533", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4953", "533", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4954", "533", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("4955", "534", "14", "1.3", "Allisha");
INSERT INTO `wp_rg_lead_detail` VALUES("4956", "534", "14", "1.6", "Smith");
INSERT INTO `wp_rg_lead_detail` VALUES("4957", "534", "14", "2", "August 8 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("4958", "534", "14", "3", "(236) 882-2927");
INSERT INTO `wp_rg_lead_detail` VALUES("4959", "534", "14", "4", "allishasmith@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4960", "534", "14", "11", "Aaron Brook");
INSERT INTO `wp_rg_lead_detail` VALUES("4961", "534", "14", "5", "Exposed to many childhood traumas, emotionally and physically absuive alcoholic parents, lost my mother a few years ago dealing with extreme anxiety and depression since.");
INSERT INTO `wp_rg_lead_detail` VALUES("4962", "534", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4963", "534", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4964", "534", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("4965", "535", "14", "1.3", "Lynsey");
INSERT INTO `wp_rg_lead_detail` VALUES("4966", "535", "14", "1.6", "Cawdle");
INSERT INTO `wp_rg_lead_detail` VALUES("4967", "535", "14", "2", "October 13 1986");
INSERT INTO `wp_rg_lead_detail` VALUES("4968", "535", "14", "3", "(403) 813-0402");
INSERT INTO `wp_rg_lead_detail` VALUES("4969", "535", "14", "4", "lynsey.cawdle@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4970", "535", "14", "11", "internet");
INSERT INTO `wp_rg_lead_detail` VALUES("4971", "535", "14", "5", "possible anxiety/depression. Fear of relationships, moving forward from past relationship. Becoming a better human.");
INSERT INTO `wp_rg_lead_detail` VALUES("4972", "535", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4973", "535", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4974", "535", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("4975", "535", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("4976", "536", "14", "1.3", "Elvira");
INSERT INTO `wp_rg_lead_detail` VALUES("4977", "536", "14", "1.6", "Sentes");
INSERT INTO `wp_rg_lead_detail` VALUES("4978", "536", "14", "2", "March 31, 1939");
INSERT INTO `wp_rg_lead_detail` VALUES("4979", "536", "14", "3", "(778) 265-0025");
INSERT INTO `wp_rg_lead_detail` VALUES("4980", "536", "14", "4", "elvirasentes@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("4981", "536", "14", "11", "Joanne Henning recommended Barbara Baillie");
INSERT INTO `wp_rg_lead_detail` VALUES("4982", "536", "14", "5", "Depression, searching for my truth");
INSERT INTO `wp_rg_lead_detail` VALUES("4983", "536", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4984", "536", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4985", "536", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("4986", "537", "14", "1.3", "Carly");
INSERT INTO `wp_rg_lead_detail` VALUES("4987", "537", "14", "1.6", "Eldstrom");
INSERT INTO `wp_rg_lead_detail` VALUES("4988", "537", "14", "2", "July 8, 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("4989", "537", "14", "3", "(604) 250-3248");
INSERT INTO `wp_rg_lead_detail` VALUES("4990", "537", "14", "4", "carlye@hotmail.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("4991", "537", "14", "11", "I work for Family Services of Greater Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("4992", "537", "14", "5", "Chronic depression (diagnosed) that ebbs and flows, but my bigger concern right now is my anxiety (undiagnosed). I have been having flare-ups and \"attacks\" that paralyze me. For background: I recovered from anorexia as a teenager and benefited from inpatient treatment and a combination of DBT/CBT methods. Afterward came an addiction to cocaine, but I have been clean for 6 years. I believe that it all stems from the trauma of losing my mom to breast cancer when I was nine years old. I am a high-achieving, hard-working, and educated individual, but I am haunted every night by voices in my head that leave me in tears.");
INSERT INTO `wp_rg_lead_detail` VALUES("4993", "537", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("4994", "537", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("4995", "537", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("4996", "537", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("4997", "538", "14", "1.3", "Brittany");
INSERT INTO `wp_rg_lead_detail` VALUES("4998", "538", "14", "1.6", "Witherspoon");
INSERT INTO `wp_rg_lead_detail` VALUES("4999", "538", "14", "2", "February 27 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("5000", "538", "14", "3", "(250) 889-5348");
INSERT INTO `wp_rg_lead_detail` VALUES("5001", "538", "14", "4", "bwither1@lakeheadu.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5002", "538", "14", "11", "My sister told me to contact you");
INSERT INTO `wp_rg_lead_detail` VALUES("5003", "538", "14", "5", "Major anxiety issues that I am having issues dealing with I am not able to calm down and focus, having issues eating and sleeping.");
INSERT INTO `wp_rg_lead_detail` VALUES("5004", "538", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5005", "538", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5006", "538", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5007", "538", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5008", "539", "14", "1.3", "Michael");
INSERT INTO `wp_rg_lead_detail` VALUES("5009", "539", "14", "1.6", "Gignac");
INSERT INTO `wp_rg_lead_detail` VALUES("5010", "539", "14", "2", "Oct 17, 1984");
INSERT INTO `wp_rg_lead_detail` VALUES("5011", "539", "14", "3", "(250) 886-5113");
INSERT INTO `wp_rg_lead_detail` VALUES("5012", "539", "14", "4", "mgignac@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5013", "539", "14", "11", "Citizens Counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("5014", "539", "14", "5", "Acute Situational Depression. Severe enough to be held in emergency at the Royal Jubilee. Having extremely difficult time dealing with a breakup from someone I work with (sits right next to me). The breakup has caused me to have a lot of difficulties with how to move on, internal anger, hopelessness, loss of self esteem, inability to understand, and more. The relationship was very complicated and I\'m trying to prevent it from doing long term mental/emotional damage. Had suicidal thoughts at points.");
INSERT INTO `wp_rg_lead_detail` VALUES("5015", "539", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5016", "539", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5017", "539", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5018", "539", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("5019", "540", "14", "1.3", "Sheena");
INSERT INTO `wp_rg_lead_detail` VALUES("5020", "540", "14", "1.6", "Andersson");
INSERT INTO `wp_rg_lead_detail` VALUES("5021", "540", "14", "2", "August 10, 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("5022", "540", "14", "3", "(604) 649-0905");
INSERT INTO `wp_rg_lead_detail` VALUES("5023", "540", "14", "4", "svla22@icloud.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5024", "540", "14", "11", "Recommended via Citizens Counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("5025", "540", "14", "5", "Grief Counselling. My mom passed away unexpectedly about 4 months ago. My Dad, brothers, and I have been to some family counselling. I feel that I need some separate sessions on an affordable scale .");
INSERT INTO `wp_rg_lead_detail` VALUES("5026", "540", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5027", "540", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5028", "540", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5029", "540", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("5030", "540", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("5031", "541", "14", "1.3", "Carole");
INSERT INTO `wp_rg_lead_detail` VALUES("5032", "541", "14", "1.6", "Harrison");
INSERT INTO `wp_rg_lead_detail` VALUES("5033", "541", "14", "2", "April 15 1953");
INSERT INTO `wp_rg_lead_detail` VALUES("5034", "541", "14", "3", "(250) 984-1362");
INSERT INTO `wp_rg_lead_detail` VALUES("5035", "541", "14", "4", "Caroleharrison111@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5036", "541", "14", "11", "My son found it online");
INSERT INTO `wp_rg_lead_detail` VALUES("5037", "541", "14", "5", "Depression, sleep problems, feelings of hopelessness, emotionally dealing with physical symptoms.");
INSERT INTO `wp_rg_lead_detail` VALUES("5038", "541", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5039", "541", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5040", "541", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5041", "541", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5042", "542", "14", "1.3", "Mark");
INSERT INTO `wp_rg_lead_detail` VALUES("5043", "542", "14", "1.6", "Leigh");
INSERT INTO `wp_rg_lead_detail` VALUES("5044", "542", "14", "2", "1984-04-14");
INSERT INTO `wp_rg_lead_detail` VALUES("5045", "542", "14", "3", "(250) 888-7918");
INSERT INTO `wp_rg_lead_detail` VALUES("5046", "542", "14", "4", "mark.leigh@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5047", "542", "14", "11", "Search");
INSERT INTO `wp_rg_lead_detail` VALUES("5048", "542", "14", "5", "Lack of motivation, lack of empathy, depression.");
INSERT INTO `wp_rg_lead_detail` VALUES("5049", "542", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5050", "542", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5051", "542", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5052", "542", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("5053", "543", "14", "1.3", "Jasper");
INSERT INTO `wp_rg_lead_detail` VALUES("5054", "543", "14", "1.6", "LaBounty");
INSERT INTO `wp_rg_lead_detail` VALUES("5055", "543", "14", "2", "September 14 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("5056", "543", "14", "3", "(250) 816-9639");
INSERT INTO `wp_rg_lead_detail` VALUES("5057", "543", "14", "4", "Jasperlabounty@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5058", "543", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("5059", "543", "14", "5", "Codependency\r\nSocial anxiety\r\nAbandonment and trust issues");
INSERT INTO `wp_rg_lead_detail` VALUES("5060", "543", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5061", "543", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5062", "543", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5063", "543", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5064", "544", "14", "1.3", "Mohammed");
INSERT INTO `wp_rg_lead_detail` VALUES("5065", "544", "14", "1.6", "Alkathiri");
INSERT INTO `wp_rg_lead_detail` VALUES("5066", "544", "14", "2", "June 17 1977");
INSERT INTO `wp_rg_lead_detail` VALUES("5067", "544", "14", "3", "(778) 967-2993");
INSERT INTO `wp_rg_lead_detail` VALUES("5068", "544", "14", "4", "norahca@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5069", "544", "14", "11", "Citizens\' Counselling Centre");
INSERT INTO `wp_rg_lead_detail` VALUES("5070", "544", "14", "5", "Hi, I have a friend who is Canadian citizen 40 years old (his name is mohammed) who has lots of mental issues. Has been in Canada for 10 years and was once a refugee. Depression,\r\nanxiety, suicidal  ideation, other stuff I don\'t know how to describe.\r\nSuffered in last job with something that makes him disassociates\r\nfrom one\'s surrounding and got laid off and now on EI. I would like to help him see a psychologist please!! You can email me or phone me..");
INSERT INTO `wp_rg_lead_detail` VALUES("5071", "544", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5072", "544", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5073", "544", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("5074", "544", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5075", "544", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5076", "545", "14", "1.3", "Amy");
INSERT INTO `wp_rg_lead_detail` VALUES("5077", "545", "14", "1.6", "Lee-Radigan");
INSERT INTO `wp_rg_lead_detail` VALUES("5078", "545", "14", "2", "August 21, 1988");
INSERT INTO `wp_rg_lead_detail` VALUES("5079", "545", "14", "3", "(250) 592-5001");
INSERT INTO `wp_rg_lead_detail` VALUES("5080", "545", "14", "4", "amy.leeradigan@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5081", "545", "14", "11", "Received counselling here previously when I was covered under the BC employee family assistant program");
INSERT INTO `wp_rg_lead_detail` VALUES("5082", "545", "14", "5", "i have struggled with bulimia and anorexia for most of my adult life though I received previous counselling for it and it has been very manageable for much of the past 5 years, however it has recently become a significant problem for me again and I think speaking to someone about it again would be a smart thing for me to do.");
INSERT INTO `wp_rg_lead_detail` VALUES("5083", "545", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5084", "545", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5085", "545", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5086", "545", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5087", "546", "14", "1.3", "Sharon");
INSERT INTO `wp_rg_lead_detail` VALUES("5088", "546", "14", "1.6", "Caldwell");
INSERT INTO `wp_rg_lead_detail` VALUES("5089", "546", "14", "2", "June 3, 1983");
INSERT INTO `wp_rg_lead_detail` VALUES("5090", "546", "14", "3", "(705) 931-7484");
INSERT INTO `wp_rg_lead_detail` VALUES("5091", "546", "14", "4", "caldwell.sharon@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5092", "546", "14", "11", "Google search :)");
INSERT INTO `wp_rg_lead_detail` VALUES("5093", "546", "14", "5", "Chronic pain (fibromyalgia), severe anxiety (GAD and social anxiety worsening again), depression. My ability to manage everything is very up and down, but it\'s been getting progressively more unmanageable. I have been seeing a trauma-focused therapist for the past few months, but am having difficulties affording it on a regular basis (I\'m on a very low income). I would be grateful for any additional support you could provide.");
INSERT INTO `wp_rg_lead_detail` VALUES("5094", "546", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5095", "546", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5096", "546", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5097", "546", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5098", "546", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5099", "547", "14", "1.3", "Adrian");
INSERT INTO `wp_rg_lead_detail` VALUES("5100", "547", "14", "1.6", "Tomei");
INSERT INTO `wp_rg_lead_detail` VALUES("5101", "547", "14", "2", "Nov 20 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("5102", "547", "14", "3", "(250) 709-9239");
INSERT INTO `wp_rg_lead_detail` VALUES("5103", "547", "14", "4", "adrianvr6@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5104", "547", "14", "11", "Googled \"affordable counselling\" or something");
INSERT INTO `wp_rg_lead_detail` VALUES("5105", "547", "14", "5", "Stress, anxiety, time management, relationship issues");
INSERT INTO `wp_rg_lead_detail` VALUES("5106", "547", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5107", "547", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5108", "547", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5109", "547", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5110", "548", "14", "1.3", "Will");
INSERT INTO `wp_rg_lead_detail` VALUES("5111", "548", "14", "1.6", "Fillion");
INSERT INTO `wp_rg_lead_detail` VALUES("5112", "548", "14", "2", "October 29, 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("5113", "548", "14", "3", "(250) 385-7421");
INSERT INTO `wp_rg_lead_detail` VALUES("5114", "548", "14", "4", "williamfillion@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5115", "548", "14", "11", "Google search for local therapy options");
INSERT INTO `wp_rg_lead_detail` VALUES("5116", "548", "14", "5", "Anxiety, depression, grief from losing a parent, generally feeling lost in the world, inability to stand up for myself.");
INSERT INTO `wp_rg_lead_detail` VALUES("5117", "548", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5118", "548", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5119", "548", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("5120", "549", "14", "1.3", "Becca");
INSERT INTO `wp_rg_lead_detail` VALUES("5121", "549", "14", "1.6", "Jorgensen");
INSERT INTO `wp_rg_lead_detail` VALUES("5122", "549", "14", "2", "January 15, 1994");
INSERT INTO `wp_rg_lead_detail` VALUES("5123", "549", "14", "3", "(250) 507-6763");
INSERT INTO `wp_rg_lead_detail` VALUES("5124", "549", "14", "4", "Mail@beccajorgensen.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5125", "549", "14", "11", "Researched online");
INSERT INTO `wp_rg_lead_detail` VALUES("5126", "549", "14", "5", "Seeking counselling for concerns regarding personal relationships, stress management, and self esteem and self worth. \r\nI recently left a short term romantic relationship with a self described abuser, as well as a relationship earlier this year with someone who was grieving the loss of a parent. \r\nI am seeking counselling to discuss and find solutions regarding my relationship with my mother, and stress management from my job as a young stage manager. \r\n\r\nPreferred appointment times: Monday evenings 5-8 (first choice), Tuesday - Friday 9-5");
INSERT INTO `wp_rg_lead_detail` VALUES("5127", "549", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5128", "549", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5129", "549", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5130", "549", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5131", "550", "14", "1.3", "Emily");
INSERT INTO `wp_rg_lead_detail` VALUES("5132", "550", "14", "1.6", "McIvor");
INSERT INTO `wp_rg_lead_detail` VALUES("5133", "550", "14", "2", "October 9, 1974");
INSERT INTO `wp_rg_lead_detail` VALUES("5134", "550", "14", "3", "(250) 213-9319");
INSERT INTO `wp_rg_lead_detail` VALUES("5135", "550", "14", "4", "mlmcvr9@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5136", "550", "14", "11", "Referral from former client, Miyoko Caubet. Requesting counsilor Peter Simmons.");
INSERT INTO `wp_rg_lead_detail` VALUES("5137", "550", "14", "5", "I\'ve been experiencing deep grief and distress triggered by my friend\'s current domestic abuse. She is leaving an abusive relationship and it\'s bringing up a lot of pain from my own past history. \r\nSymptoms include: deep sadness, distrust of men; distrust of relationships; numbness; anger; hopelessness; inability to focus;");
INSERT INTO `wp_rg_lead_detail` VALUES("5138", "550", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5139", "550", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5140", "550", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5141", "550", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5142", "551", "14", "1.3", "Susan");
INSERT INTO `wp_rg_lead_detail` VALUES("5143", "551", "14", "1.6", "Burke");
INSERT INTO `wp_rg_lead_detail` VALUES("5144", "551", "14", "2", "March 24 82");
INSERT INTO `wp_rg_lead_detail` VALUES("5145", "551", "14", "3", "(647) 988-0459");
INSERT INTO `wp_rg_lead_detail` VALUES("5146", "551", "14", "4", "q.burke@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5147", "551", "14", "11", "From a former client");
INSERT INTO `wp_rg_lead_detail` VALUES("5148", "551", "14", "5", "Depression that is severely impacting my life, work, and relationships. A partner with bi-polar whose verbal abuse and emotional manipulation is breaking me.");
INSERT INTO `wp_rg_lead_detail` VALUES("5149", "551", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5150", "551", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5151", "551", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5152", "551", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("5153", "551", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5154", "551", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5155", "552", "14", "1.3", "Samantha");
INSERT INTO `wp_rg_lead_detail` VALUES("5156", "552", "14", "1.6", "Seltenrich");
INSERT INTO `wp_rg_lead_detail` VALUES("5157", "552", "14", "2", "Oct 6, 1981");
INSERT INTO `wp_rg_lead_detail` VALUES("5158", "552", "14", "3", "(250) 857-1035");
INSERT INTO `wp_rg_lead_detail` VALUES("5159", "552", "14", "4", "sseltenrich@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5160", "552", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("5161", "552", "14", "5", "Anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("5162", "552", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5163", "552", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5164", "552", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5165", "552", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5166", "553", "14", "1.3", "Tyler");
INSERT INTO `wp_rg_lead_detail` VALUES("5167", "553", "14", "1.6", "Beland");
INSERT INTO `wp_rg_lead_detail` VALUES("5168", "553", "14", "2", "3428 Happy Valley Road");
INSERT INTO `wp_rg_lead_detail` VALUES("5169", "553", "14", "3", "(250) 532-1570");
INSERT INTO `wp_rg_lead_detail` VALUES("5170", "553", "14", "4", "tylerbeland928@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5171", "553", "14", "11", "Online search");
INSERT INTO `wp_rg_lead_detail` VALUES("5172", "553", "14", "5", "I have anger issues and problems dealing with my reactions. I am on probation and have been asked to find 1 on 1 counseling to help in my progress in becoming less reactive.");
INSERT INTO `wp_rg_lead_detail` VALUES("5173", "553", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5174", "553", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5175", "553", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5176", "553", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("5177", "554", "14", "1.3", "Bryan");
INSERT INTO `wp_rg_lead_detail` VALUES("5178", "554", "14", "1.6", "Truong");
INSERT INTO `wp_rg_lead_detail` VALUES("5179", "554", "14", "2", "Feb 17 1987");
INSERT INTO `wp_rg_lead_detail` VALUES("5180", "554", "14", "3", "(250) 507-7509");
INSERT INTO `wp_rg_lead_detail` VALUES("5181", "554", "14", "4", "bryanbtruong@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5182", "554", "14", "11", "Friend");
INSERT INTO `wp_rg_lead_detail` VALUES("5183", "554", "14", "5", "concerns about my life, depression and bad habbits");
INSERT INTO `wp_rg_lead_detail` VALUES("5184", "554", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5185", "554", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5186", "554", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5187", "554", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("5188", "554", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("5189", "554", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("5190", "555", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5191", "555", "8", "14.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("5192", "555", "8", "15.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("5193", "555", "8", "6", "Open Gate Church (ANiC)\r\nLangford");
INSERT INTO `wp_rg_lead_detail` VALUES("5194", "555", "8", "1.3", "Joy");
INSERT INTO `wp_rg_lead_detail` VALUES("5195", "555", "8", "1.6", "Gillett");
INSERT INTO `wp_rg_lead_detail` VALUES("5196", "555", "8", "2", "j.gillett@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5197", "555", "8", "3.1", "1103-325 Maitland St");
INSERT INTO `wp_rg_lead_detail` VALUES("5198", "555", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5199", "555", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5200", "555", "8", "3.5", "V9A7E9");
INSERT INTO `wp_rg_lead_detail` VALUES("5201", "555", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5202", "555", "8", "4", "(778) 350-5801");
INSERT INTO `wp_rg_lead_detail` VALUES("5203", "555", "8", "9.2", "Advanced (attended a basic PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5204", "555", "8", "11.1", "Non-bursary option: cheque ($105 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5205", "556", "14", "1.3", "Neala");
INSERT INTO `wp_rg_lead_detail` VALUES("5206", "556", "14", "1.6", "Griffin");
INSERT INTO `wp_rg_lead_detail` VALUES("5207", "556", "14", "2", "June 22,79");
INSERT INTO `wp_rg_lead_detail` VALUES("5208", "556", "14", "3", "(709) 639-0716");
INSERT INTO `wp_rg_lead_detail` VALUES("5209", "556", "14", "4", "info@yogainmotion.guru");
INSERT INTO `wp_rg_lead_detail` VALUES("5210", "556", "14", "11", "Word of mouth");
INSERT INTO `wp_rg_lead_detail` VALUES("5211", "556", "14", "5", "Have recently lost a friend to suicide, and have lost many family members over the past few years. I have just moved here from NL and am trying to get my own business running...don\'t have a strong support system in place. Have struggled with anxiety and depression for years and need affordable counselling.");
INSERT INTO `wp_rg_lead_detail` VALUES("5212", "556", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5213", "556", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5214", "556", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5215", "556", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5216", "556", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5217", "557", "14", "1.3", "Andrew");
INSERT INTO `wp_rg_lead_detail` VALUES("5218", "557", "14", "1.6", "Rose");
INSERT INTO `wp_rg_lead_detail` VALUES("5219", "557", "14", "2", "October 14 1981");
INSERT INTO `wp_rg_lead_detail` VALUES("5220", "557", "14", "3", "(250) 686-4759");
INSERT INTO `wp_rg_lead_detail` VALUES("5221", "557", "14", "4", "ndru_ross@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5222", "557", "14", "11", "Citizens Counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("5223", "557", "14", "5", "I\'m having concerns about my relationship, pursuing marriage and such. I\'m struggling with decision making in all aspects of my life. I\'m often angry or disgruntled and it effects others around me.");
INSERT INTO `wp_rg_lead_detail` VALUES("5224", "557", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5225", "557", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5226", "557", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("5227", "557", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5228", "557", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("5229", "558", "14", "1.3", "Andy");
INSERT INTO `wp_rg_lead_detail` VALUES("5230", "558", "14", "1.6", "Platt");
INSERT INTO `wp_rg_lead_detail` VALUES("5231", "558", "14", "2", "July 26 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("5232", "558", "14", "3", "(250) 818-0222");
INSERT INTO `wp_rg_lead_detail` VALUES("5233", "558", "14", "4", "Andyplatt6505@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5234", "558", "14", "11", "Google search for sliding scale counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("5235", "558", "14", "5", "History of depression and anxiety, ptsd from psychiatric hospitalization, difficulty related to the previous in maintaining emotionally intimate relationships. Recently have felt more intense unpleasant feelings and depressed thoughts than usual.\r\n\r\nI have seen a handful of different counsellors since 2010, and most recently couldn\'t make the schedule work with a counselor i had seen for 3 years.\r\n\r\nI would prefer to talk to a male counselor, as i have primarily seen female counselors and i think that it would help to talk about certain issues with a male.");
INSERT INTO `wp_rg_lead_detail` VALUES("5236", "558", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5237", "558", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5238", "558", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("5239", "559", "14", "1.3", "Eryn");
INSERT INTO `wp_rg_lead_detail` VALUES("5240", "559", "14", "1.6", "Wale");
INSERT INTO `wp_rg_lead_detail` VALUES("5241", "559", "14", "2", "June 7 2005");
INSERT INTO `wp_rg_lead_detail` VALUES("5242", "559", "14", "3", "(250) 208-5111");
INSERT INTO `wp_rg_lead_detail` VALUES("5243", "559", "14", "4", "manwale@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5244", "559", "14", "11", "website");
INSERT INTO `wp_rg_lead_detail` VALUES("5245", "559", "14", "5", "My name is Margaret Manville and I have a daughter Eryn who is 12 years old.  She is usually a great, happy kid but struggles with issues of self esteem and acceptance at school due to her weight.  I don\'t believe she is being bullied but she is very self conscious.  We have been dealing with this for many years, and would appreciate some advice/help with this issue of how to support her to love/accept herself as she is.");
INSERT INTO `wp_rg_lead_detail` VALUES("5246", "559", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5247", "559", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5248", "559", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5249", "559", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("5250", "560", "14", "1.3", "Nora");
INSERT INTO `wp_rg_lead_detail` VALUES("5251", "560", "14", "1.6", "Marsh");
INSERT INTO `wp_rg_lead_detail` VALUES("5252", "560", "14", "2", "10/9/1990");
INSERT INTO `wp_rg_lead_detail` VALUES("5253", "560", "14", "3", "(778) 967-2993");
INSERT INTO `wp_rg_lead_detail` VALUES("5254", "560", "14", "4", "lighttheworld3@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5255", "560", "14", "11", "Friend.");
INSERT INTO `wp_rg_lead_detail` VALUES("5256", "560", "14", "5", "Hi there,\r\n\r\nI am going through a hard time dealing with my anxieties. I have insecurities that started from a young age.\r\nIn my everyday life i tend to have:\r\n- Social anxiety. \r\n- Constant fear of the future/ being alone / cheating / failing / judgment / not being good enough /\r\n    not knowing what I want from life and school / not feeling emotionally secure or safe....etc.\r\n\r\n \r\nBut I would like to have some help dealing mostly with my:\r\n- Social anxiety.\r\n- Emotional attachment. \r\n\r\nThank you.");
INSERT INTO `wp_rg_lead_detail` VALUES("5257", "560", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5258", "560", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5259", "560", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5260", "561", "14", "1.3", "Ilona");
INSERT INTO `wp_rg_lead_detail` VALUES("5261", "561", "14", "1.6", "Gerrand");
INSERT INTO `wp_rg_lead_detail` VALUES("5262", "561", "14", "2", "March 4 1987");
INSERT INTO `wp_rg_lead_detail` VALUES("5263", "561", "14", "3", "(250) 661-4576");
INSERT INTO `wp_rg_lead_detail` VALUES("5264", "561", "14", "4", "ilona.jane@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5265", "561", "14", "11", "online");
INSERT INTO `wp_rg_lead_detail` VALUES("5266", "561", "14", "5", "Anxiety/mood disorder information, substance and food abuse as a result of a mood disorder, developmental sexual trauma and current grief from loss. Issues with trust in personal and professional relationships. Currently in an emotional state of apathy and depression, following an extended period of mania (at least 12 weeks). No theology, please.\r\nMondays 9am-9pm\r\nTuesday- Saturday 6pm- 9pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5267", "561", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5268", "561", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5269", "561", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5270", "562", "14", "1.3", "Cheryl");
INSERT INTO `wp_rg_lead_detail` VALUES("5271", "562", "14", "1.6", "Grossman");
INSERT INTO `wp_rg_lead_detail` VALUES("5272", "562", "14", "2", "August 27, 1956");
INSERT INTO `wp_rg_lead_detail` VALUES("5273", "562", "14", "3", "(250) 686-9438");
INSERT INTO `wp_rg_lead_detail` VALUES("5274", "562", "14", "4", "itsabeautifulday@bell.net");
INSERT INTO `wp_rg_lead_detail` VALUES("5275", "562", "14", "11", "Citizen\'s Counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("5276", "562", "14", "5", "Moved to BC in April 2017, transitioning.  Seeking employment.  Family aging.  Difficulty maintaining daily routines/schedules.  Aging (just turned 61).  Mother passed in 2015, family dynamics are changing causing various stresses.");
INSERT INTO `wp_rg_lead_detail` VALUES("5277", "562", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5278", "562", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5279", "562", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("5280", "562", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5281", "562", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5282", "563", "14", "1.3", "Christina");
INSERT INTO `wp_rg_lead_detail` VALUES("5283", "563", "14", "1.6", "Tromp");
INSERT INTO `wp_rg_lead_detail` VALUES("5284", "563", "14", "2", "July 10, 1994");
INSERT INTO `wp_rg_lead_detail` VALUES("5285", "563", "14", "3", "(778) 686-0990");
INSERT INTO `wp_rg_lead_detail` VALUES("5286", "563", "14", "4", "christinatromp94@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5287", "563", "14", "11", "Work reference.  The Mustard Seed Street Church.");
INSERT INTO `wp_rg_lead_detail` VALUES("5288", "563", "14", "5", "I suffered a traumatic incident.  I was at work, serving food to community members in need, and one became very angry with me and threw a bowl of hot soup at me.");
INSERT INTO `wp_rg_lead_detail` VALUES("5289", "563", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5290", "563", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5291", "563", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5292", "563", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5293", "563", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("5294", "564", "3", "1.3", "Hildred");
INSERT INTO `wp_rg_lead_detail` VALUES("5295", "564", "3", "1.6", "Bingaman");
INSERT INTO `wp_rg_lead_detail` VALUES("5296", "564", "3", "2", "hildred_bingaman14@kipolongsleeve.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5297", "564", "3", "3.1", "742 Losh Lane");
INSERT INTO `wp_rg_lead_detail` VALUES("5298", "564", "3", "3.3", "Pittsburgh");
INSERT INTO `wp_rg_lead_detail` VALUES("5299", "564", "3", "3.4", "Saskatchewan");
INSERT INTO `wp_rg_lead_detail` VALUES("5300", "564", "3", "3.5", "15236");
INSERT INTO `wp_rg_lead_detail` VALUES("5301", "564", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5302", "564", "3", "4", "(412) 650-6160");
INSERT INTO `wp_rg_lead_detail` VALUES("5303", "564", "3", "7", "KC");
INSERT INTO `wp_rg_lead_detail` VALUES("5304", "564", "3", "5", "5 winter Season style developments For males");
INSERT INTO `wp_rg_lead_detail` VALUES("5305", "564", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("5306", "564", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5307", "564", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5308", "565", "14", "1.3", "Heather");
INSERT INTO `wp_rg_lead_detail` VALUES("5309", "565", "14", "1.6", "Bergink");
INSERT INTO `wp_rg_lead_detail` VALUES("5310", "565", "14", "2", "September 14, 1983");
INSERT INTO `wp_rg_lead_detail` VALUES("5311", "565", "14", "3", "(250) 812-5628");
INSERT INTO `wp_rg_lead_detail` VALUES("5312", "565", "14", "4", "heather.bergink@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5313", "565", "14", "11", "From several people I know");
INSERT INTO `wp_rg_lead_detail` VALUES("5314", "565", "14", "5", "Stress management, suspected depression, social withdrawal and food/eating issues.\r\n\r\nAnother consideration - one of my work colleagues, Jamie McCrum, is a volunteer counsellor with your organization.  She is very good about confidentiality, but I wonder if it is possible for me to access your services without her knowledge or participation?");
INSERT INTO `wp_rg_lead_detail` VALUES("5315", "565", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5316", "565", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5317", "565", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5318", "565", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("5319", "566", "14", "1.3", "Yola");
INSERT INTO `wp_rg_lead_detail` VALUES("5320", "566", "14", "1.6", "Hurwitz");
INSERT INTO `wp_rg_lead_detail` VALUES("5321", "566", "14", "2", "October 28, 1948");
INSERT INTO `wp_rg_lead_detail` VALUES("5322", "566", "14", "3", "(250) 480-7685");
INSERT INTO `wp_rg_lead_detail` VALUES("5323", "566", "14", "4", "firstviolincov@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5324", "566", "14", "11", "From the UVic Roman Catholic chaplain");
INSERT INTO `wp_rg_lead_detail` VALUES("5325", "566", "14", "5", "Generalized Anxiety Disorder (including OCD);  depression;  loss;  grief (as well as \"tertiary grief\").  After an appointment with the above chaplain, I have decided that I need help in working on these issues, for the sake of further healing.\r\n\r\nI am a member of a faith community (Roman Catholic).");
INSERT INTO `wp_rg_lead_detail` VALUES("5326", "566", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5327", "566", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5328", "566", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5329", "566", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("5330", "566", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("5331", "566", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("5332", "567", "14", "1.3", "Derrick");
INSERT INTO `wp_rg_lead_detail` VALUES("5333", "567", "14", "1.6", "Wood");
INSERT INTO `wp_rg_lead_detail` VALUES("5334", "567", "14", "2", "September 24 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("5335", "567", "14", "3", "(778) 587-8657");
INSERT INTO `wp_rg_lead_detail` VALUES("5336", "567", "14", "4", "Derrick_Wood_6@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5337", "567", "14", "11", "Friend");
INSERT INTO `wp_rg_lead_detail` VALUES("5338", "567", "14", "5", "i need someone to bounce all my thoughts off of instead of certian thoughts to certain people , my doctor told me to get councdling before but i didnt believe in it. There are a lot of things i need help with");
INSERT INTO `wp_rg_lead_detail` VALUES("5339", "567", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5340", "567", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5341", "567", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5342", "567", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5343", "567", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5344", "568", "14", "1.3", "Derrick");
INSERT INTO `wp_rg_lead_detail` VALUES("5345", "568", "14", "1.6", "Wood");
INSERT INTO `wp_rg_lead_detail` VALUES("5346", "568", "14", "2", "September 24 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("5347", "568", "14", "3", "(778) 587-8657");
INSERT INTO `wp_rg_lead_detail` VALUES("5348", "568", "14", "4", "Derrick_Wood_6@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5349", "568", "14", "11", "Friend");
INSERT INTO `wp_rg_lead_detail` VALUES("5350", "568", "14", "5", "i need someone to bounce all my thoughts off of instead of certian thoughts to certain people , my doctor told me to get councdling before but i didnt believe in it. There are a lot of things i need help with");
INSERT INTO `wp_rg_lead_detail` VALUES("5351", "568", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5352", "568", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5353", "568", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5354", "568", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5355", "568", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5356", "569", "3", "1.3", "Pamela");
INSERT INTO `wp_rg_lead_detail` VALUES("5357", "569", "3", "1.6", "Brown");
INSERT INTO `wp_rg_lead_detail` VALUES("5358", "569", "3", "2", "paganda@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5359", "569", "3", "3.1", "301-404 Dundas St");
INSERT INTO `wp_rg_lead_detail` VALUES("5360", "569", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5361", "569", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5362", "569", "3", "3.5", "V9A 3K2");
INSERT INTO `wp_rg_lead_detail` VALUES("5363", "569", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5364", "569", "3", "4", "(778) 233-4900");
INSERT INTO `wp_rg_lead_detail` VALUES("5365", "569", "3", "7", "October 28, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("5366", "569", "3", "5", "Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference");
INSERT INTO `wp_rg_lead_detail` VALUES("5367", "569", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5368", "570", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5369", "570", "8", "14.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("5370", "570", "8", "6", "St. Johns United Church North Saanich BC 10990 West Saanich Rd.");
INSERT INTO `wp_rg_lead_detail` VALUES("5371", "570", "8", "1.3", "Eva");
INSERT INTO `wp_rg_lead_detail` VALUES("5372", "570", "8", "1.6", "Kerr");
INSERT INTO `wp_rg_lead_detail` VALUES("5373", "570", "8", "2", "eve.kerr@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("5374", "570", "8", "3.1", "8518 Moxon Tce.");
INSERT INTO `wp_rg_lead_detail` VALUES("5375", "570", "8", "3.3", "Sidney");
INSERT INTO `wp_rg_lead_detail` VALUES("5376", "570", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5377", "570", "8", "3.5", "V8L1K6");
INSERT INTO `wp_rg_lead_detail` VALUES("5378", "570", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5379", "570", "8", "4", "(250) 656-5273");
INSERT INTO `wp_rg_lead_detail` VALUES("5380", "570", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5381", "570", "8", "11.1", "Non-bursary option: cheque ($105 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5382", "571", "3", "1.3", "Sue");
INSERT INTO `wp_rg_lead_detail` VALUES("5383", "571", "3", "1.6", "Reid");
INSERT INTO `wp_rg_lead_detail` VALUES("5384", "571", "3", "2", "susanjreid@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5385", "571", "3", "3.1", "401-4351 West Saanich Road");
INSERT INTO `wp_rg_lead_detail` VALUES("5386", "571", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5387", "571", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5388", "571", "3", "3.5", "V8Z 3E8");
INSERT INTO `wp_rg_lead_detail` VALUES("5389", "571", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5390", "571", "3", "4", "(250) 589-6307");
INSERT INTO `wp_rg_lead_detail` VALUES("5391", "571", "3", "7", "October 28, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("5392", "571", "3", "5", "Me and My Personality");
INSERT INTO `wp_rg_lead_detail` VALUES("5393", "571", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("5394", "572", "14", "1.3", "Jonathan");
INSERT INTO `wp_rg_lead_detail` VALUES("5395", "572", "14", "1.6", "Ross");
INSERT INTO `wp_rg_lead_detail` VALUES("5396", "572", "14", "2", "July 12, 1988");
INSERT INTO `wp_rg_lead_detail` VALUES("5397", "572", "14", "3", "(778) 587-7001");
INSERT INTO `wp_rg_lead_detail` VALUES("5398", "572", "14", "4", "Wolfenhart@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5399", "572", "14", "11", "My partner recommended you.");
INSERT INTO `wp_rg_lead_detail` VALUES("5400", "572", "14", "5", "I prefer female counsellors to male, as I have a much more difficult time relating and opening up to males.\r\n\r\nIve been facing a lot of issues with depression, anxiety, and some resurging anger/frustration.");
INSERT INTO `wp_rg_lead_detail` VALUES("5401", "572", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5402", "572", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5403", "572", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5404", "572", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5405", "573", "14", "1.3", "Jonathan");
INSERT INTO `wp_rg_lead_detail` VALUES("5406", "573", "14", "1.6", "Ross");
INSERT INTO `wp_rg_lead_detail` VALUES("5407", "573", "14", "2", "July 12, 1988");
INSERT INTO `wp_rg_lead_detail` VALUES("5408", "573", "14", "3", "(778) 587-7001");
INSERT INTO `wp_rg_lead_detail` VALUES("5409", "573", "14", "4", "Wolfenhart@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5410", "573", "14", "11", "My partner recommended you.");
INSERT INTO `wp_rg_lead_detail` VALUES("5411", "573", "14", "5", "I prefer female counsellors to male, as I have a much more difficult time relating and opening up to males.\r\n\r\nIve been facing a lot of issues with depression, anxiety, and some resurging anger/frustration.");
INSERT INTO `wp_rg_lead_detail` VALUES("5412", "573", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5413", "573", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5414", "573", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5415", "573", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5416", "574", "14", "1.3", "Lucy");
INSERT INTO `wp_rg_lead_detail` VALUES("5417", "574", "14", "1.6", "Brandt");
INSERT INTO `wp_rg_lead_detail` VALUES("5418", "574", "14", "2", "July 30, 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("5419", "574", "14", "3", "(250) 812-1185");
INSERT INTO `wp_rg_lead_detail` VALUES("5420", "574", "14", "4", "Lucybrandt@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5421", "574", "14", "11", "Family member");
INSERT INTO `wp_rg_lead_detail` VALUES("5422", "574", "14", "5", "Major anxiety, depression.");
INSERT INTO `wp_rg_lead_detail` VALUES("5423", "574", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5424", "574", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5425", "574", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5426", "575", "3", "1.3", "Loren");
INSERT INTO `wp_rg_lead_detail` VALUES("5427", "575", "3", "1.6", "Camarena");
INSERT INTO `wp_rg_lead_detail` VALUES("5428", "575", "3", "2", "loren_camarena@womentopswear.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5429", "575", "3", "3.1", "3978 137th Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("5430", "575", "3", "3.3", "Edmonton");
INSERT INTO `wp_rg_lead_detail` VALUES("5431", "575", "3", "3.4", "Newfoundland &amp; Labrador");
INSERT INTO `wp_rg_lead_detail` VALUES("5432", "575", "3", "3.5", "T5b 3v4");
INSERT INTO `wp_rg_lead_detail` VALUES("5433", "575", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5434", "575", "3", "4", "(780) 474-6931");
INSERT INTO `wp_rg_lead_detail` VALUES("5435", "575", "3", "7", "SJ");
INSERT INTO `wp_rg_lead_detail` VALUES("5436", "575", "3", "5", "This Is The One You Need");
INSERT INTO `wp_rg_lead_detail` VALUES("5437", "575", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("5438", "575", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5439", "575", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5440", "576", "14", "1.3", "Hannah");
INSERT INTO `wp_rg_lead_detail` VALUES("5441", "576", "14", "1.6", "Wilkinson");
INSERT INTO `wp_rg_lead_detail` VALUES("5442", "576", "14", "2", "May 26th, 1995");
INSERT INTO `wp_rg_lead_detail` VALUES("5443", "576", "14", "3", "(250) 661-6888");
INSERT INTO `wp_rg_lead_detail` VALUES("5444", "576", "14", "4", "hannahwilkinson1@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5445", "576", "14", "11", "Anxiety Clinic at RJH");
INSERT INTO `wp_rg_lead_detail` VALUES("5446", "576", "14", "5", "Anxiety and panic, depression, I was also sexually assaulted and am trying to cope with that. I had a consult with the anxiety clinic and they recommended I contact you due to the affordable sliding scale you use.");
INSERT INTO `wp_rg_lead_detail` VALUES("5447", "576", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5448", "576", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5449", "576", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5450", "576", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5451", "577", "14", "1.3", "Aerye");
INSERT INTO `wp_rg_lead_detail` VALUES("5452", "577", "14", "1.6", "Swarek");
INSERT INTO `wp_rg_lead_detail` VALUES("5453", "577", "14", "2", "March 6, 1984");
INSERT INTO `wp_rg_lead_detail` VALUES("5454", "577", "14", "3", "(778) 762-3725");
INSERT INTO `wp_rg_lead_detail` VALUES("5455", "577", "14", "4", "Aerye.Swarek@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5456", "577", "14", "11", "Referral");
INSERT INTO `wp_rg_lead_detail` VALUES("5457", "577", "14", "5", "Complex PTSD");
INSERT INTO `wp_rg_lead_detail` VALUES("5458", "577", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5459", "577", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5460", "577", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5461", "578", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5462", "578", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5463", "578", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5464", "578", "8", "6", "St Phillips");
INSERT INTO `wp_rg_lead_detail` VALUES("5465", "578", "8", "1.3", "Evelyn");
INSERT INTO `wp_rg_lead_detail` VALUES("5466", "578", "8", "1.6", "Savage");
INSERT INTO `wp_rg_lead_detail` VALUES("5467", "578", "8", "2", "cedar@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("5468", "578", "8", "3.1", "1723 mamich Circle");
INSERT INTO `wp_rg_lead_detail` VALUES("5469", "578", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5470", "578", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5471", "578", "8", "3.5", "V8n 6M9");
INSERT INTO `wp_rg_lead_detail` VALUES("5472", "578", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5473", "578", "8", "4", "(250) 479-0489");
INSERT INTO `wp_rg_lead_detail` VALUES("5474", "578", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5475", "578", "8", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5476", "579", "14", "1.3", "Kalika");
INSERT INTO `wp_rg_lead_detail` VALUES("5477", "579", "14", "1.6", "Fetchuk");
INSERT INTO `wp_rg_lead_detail` VALUES("5478", "579", "14", "2", "February 14th, 1995");
INSERT INTO `wp_rg_lead_detail` VALUES("5479", "579", "14", "3", "(250) 540-8155");
INSERT INTO `wp_rg_lead_detail` VALUES("5480", "579", "14", "4", "Fetchukkalika@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5481", "579", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("5482", "579", "14", "5", "Anxiety, depression and stress");
INSERT INTO `wp_rg_lead_detail` VALUES("5483", "579", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5484", "579", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5485", "579", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5486", "579", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5487", "579", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5488", "580", "3", "1.3", "Seren");
INSERT INTO `wp_rg_lead_detail` VALUES("5489", "580", "3", "1.6", "Bengtson");
INSERT INTO `wp_rg_lead_detail` VALUES("5490", "580", "3", "2", "suebeng@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5491", "580", "3", "3.1", "933 Admirals Road #43");
INSERT INTO `wp_rg_lead_detail` VALUES("5492", "580", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5493", "580", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5494", "580", "3", "3.5", "V9A 2P1");
INSERT INTO `wp_rg_lead_detail` VALUES("5495", "580", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5496", "580", "3", "4", "(778) 440-5836");
INSERT INTO `wp_rg_lead_detail` VALUES("5497", "580", "3", "7", "21/10/17");
INSERT INTO `wp_rg_lead_detail` VALUES("5498", "580", "3", "5", "Teen Anxiety Support Group: Making It Work for Teens!");
INSERT INTO `wp_rg_lead_detail` VALUES("5499", "580", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5500", "581", "3", "1.3", "Tanisha");
INSERT INTO `wp_rg_lead_detail` VALUES("5501", "581", "3", "1.6", "Jensen");
INSERT INTO `wp_rg_lead_detail` VALUES("5502", "581", "3", "2", "Tanisha.k.jensen@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5503", "581", "3", "3.1", "1694 cedar hill xrd");
INSERT INTO `wp_rg_lead_detail` VALUES("5504", "581", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5505", "581", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5506", "581", "3", "3.5", "V8p2p7");
INSERT INTO `wp_rg_lead_detail` VALUES("5507", "581", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5508", "581", "3", "4", "(778) 533-1866");
INSERT INTO `wp_rg_lead_detail` VALUES("5509", "581", "3", "7", "Sepr 26th");
INSERT INTO `wp_rg_lead_detail` VALUES("5510", "581", "3", "5", "Young adult support group");
INSERT INTO `wp_rg_lead_detail` VALUES("5511", "581", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5512", "582", "3", "1.3", "Chiyoko");
INSERT INTO `wp_rg_lead_detail` VALUES("5513", "582", "3", "1.6", "Allison");
INSERT INTO `wp_rg_lead_detail` VALUES("5514", "582", "3", "2", "sunflowersun88@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5515", "582", "3", "3.1", "#308-1519 Hillside Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("5516", "582", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5517", "582", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5518", "582", "3", "3.5", "V8T2C1");
INSERT INTO `wp_rg_lead_detail` VALUES("5519", "582", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5520", "582", "3", "4", "(250) 598-8658");
INSERT INTO `wp_rg_lead_detail` VALUES("5521", "582", "3", "7", "September 26");
INSERT INTO `wp_rg_lead_detail` VALUES("5522", "582", "3", "5", "Young adults support group for anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("5523", "582", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5524", "583", "14", "1.3", "Jared");
INSERT INTO `wp_rg_lead_detail` VALUES("5525", "583", "14", "1.6", "Brown");
INSERT INTO `wp_rg_lead_detail` VALUES("5526", "583", "14", "2", "August 27th 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("5527", "583", "14", "3", "(250) 532-4619");
INSERT INTO `wp_rg_lead_detail` VALUES("5528", "583", "14", "4", "jaredbrownsound@yahoo.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5529", "583", "14", "11", "A friend used your counseling services and said it helped him and his girlfriend a lot.");
INSERT INTO `wp_rg_lead_detail` VALUES("5530", "583", "14", "5", "Dealing with PTSD and Schizophrenia. Feel extremely unstable, depressed, unable to work full time. Have family issues, in debt, I think people through demonic entities are trying to kill me and or driving me to take  my own life. unable to develop disciplined good habits and routine. Insomnia, paranoia, hallucinations, sex addiction, drug addiction. Extremely complicated. Have been seeing a registered councilor, made 5 visits at $230 per visit. Not seeing any significant improvement. I feel helpless and unable to cope. Believe in God and regularly communicate with him but feel a extraordinary force of evil at ever corner and am unable to enjoy life.");
INSERT INTO `wp_rg_lead_detail` VALUES("5531", "583", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5532", "583", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5533", "583", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5534", "583", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5535", "583", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("5536", "583", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("5537", "584", "14", "1.3", "Rachael");
INSERT INTO `wp_rg_lead_detail` VALUES("5538", "584", "14", "1.6", "Bourbeau");
INSERT INTO `wp_rg_lead_detail` VALUES("5539", "584", "14", "2", "December 11, 1995");
INSERT INTO `wp_rg_lead_detail` VALUES("5540", "584", "14", "3", "(250) 891-4090");
INSERT INTO `wp_rg_lead_detail` VALUES("5541", "584", "14", "4", "rbourbeaupl10@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5542", "584", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("5543", "584", "14", "5", "Depression and Anxiety\r\n\r\nSeverely mentally ill father whose care has been left solely for me to deal with\r\n\r\nDifficult familial relationships \r\n\r\nFinancial stress\r\n\r\n\r\nJennifer is my partners counselor, if possible I\'d like to see someone different");
INSERT INTO `wp_rg_lead_detail` VALUES("5544", "584", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5545", "584", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5546", "584", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5547", "585", "3", "1.3", "Carly");
INSERT INTO `wp_rg_lead_detail` VALUES("5548", "585", "3", "1.6", "Eldstrom");
INSERT INTO `wp_rg_lead_detail` VALUES("5549", "585", "3", "2", "carlye@hotmail.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5550", "585", "3", "3.1", "404-785 Caledonia Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("5551", "585", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5552", "585", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5553", "585", "3", "3.5", "V8T 0C3");
INSERT INTO `wp_rg_lead_detail` VALUES("5554", "585", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5555", "585", "3", "4", "(604) 250-3248");
INSERT INTO `wp_rg_lead_detail` VALUES("5556", "585", "3", "7", "September 26");
INSERT INTO `wp_rg_lead_detail` VALUES("5557", "585", "3", "5", "Young adults\' Support Group for Anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("5558", "585", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5559", "586", "3", "1.3", "Ava");
INSERT INTO `wp_rg_lead_detail` VALUES("5560", "586", "3", "1.6", "Alexander");
INSERT INTO `wp_rg_lead_detail` VALUES("5561", "586", "3", "2", "c.alexander@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("5562", "586", "3", "3.1", "1760 taylor street");
INSERT INTO `wp_rg_lead_detail` VALUES("5563", "586", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5564", "586", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5565", "586", "3", "3.5", "V8R 3E9");
INSERT INTO `wp_rg_lead_detail` VALUES("5566", "586", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5567", "586", "3", "4", "(250) 893-1856");
INSERT INTO `wp_rg_lead_detail` VALUES("5568", "586", "3", "7", "October 21");
INSERT INTO `wp_rg_lead_detail` VALUES("5569", "586", "3", "5", "Making it work for Teens");
INSERT INTO `wp_rg_lead_detail` VALUES("5570", "586", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5571", "587", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5572", "587", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5573", "587", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5574", "587", "8", "6", "St  Mary the Virgin Oak Bay");
INSERT INTO `wp_rg_lead_detail` VALUES("5575", "587", "8", "1.3", "Craig");
INSERT INTO `wp_rg_lead_detail` VALUES("5576", "587", "8", "1.6", "Hiebert");
INSERT INTO `wp_rg_lead_detail` VALUES("5577", "587", "8", "2", "hellojwwatson@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5578", "587", "8", "3.1", "760 Genevieve Road");
INSERT INTO `wp_rg_lead_detail` VALUES("5579", "587", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5580", "587", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5581", "587", "8", "3.5", "v8X3R5");
INSERT INTO `wp_rg_lead_detail` VALUES("5582", "587", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5583", "587", "8", "4", "(250) 893-5106");
INSERT INTO `wp_rg_lead_detail` VALUES("5584", "587", "8", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_rg_lead_detail` VALUES("5585", "587", "8", "11.5", "Bursary option: debit card ($15 per registrant) - in person only");
INSERT INTO `wp_rg_lead_detail` VALUES("5586", "588", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5587", "588", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5588", "588", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5589", "588", "8", "6", "The Church of St. Mary the Virgin, Oak Bay\r\n1702 Elgin Road\r\nVictoria, BC, V8R 5L7\r\n\r\nAnglican");
INSERT INTO `wp_rg_lead_detail` VALUES("5590", "588", "8", "1.3", "Anne");
INSERT INTO `wp_rg_lead_detail` VALUES("5591", "588", "8", "1.6", "Underhill");
INSERT INTO `wp_rg_lead_detail` VALUES("5592", "588", "8", "2", "jamesunderhill@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5593", "588", "8", "3.1", "205 - 2333 Beach Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("5594", "588", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5595", "588", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5596", "588", "8", "3.5", "V8R 6K2");
INSERT INTO `wp_rg_lead_detail` VALUES("5597", "588", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5598", "588", "8", "4", "(250) 370-5027");
INSERT INTO `wp_rg_lead_detail` VALUES("5599", "588", "8", "9.2", "Advanced (attended a basic PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5600", "588", "8", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5601", "589", "14", "1.3", "Lucy");
INSERT INTO `wp_rg_lead_detail` VALUES("5602", "589", "14", "1.6", "Brandt");
INSERT INTO `wp_rg_lead_detail` VALUES("5603", "589", "14", "2", "July 30, 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("5604", "589", "14", "3", "(250) 812-1185");
INSERT INTO `wp_rg_lead_detail` VALUES("5605", "589", "14", "4", "Lucybrandt@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5606", "589", "14", "11", "Family");
INSERT INTO `wp_rg_lead_detail` VALUES("5607", "589", "14", "5", "Depression, anxiety, BPD");
INSERT INTO `wp_rg_lead_detail` VALUES("5608", "589", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5609", "589", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5610", "589", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5611", "589", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5612", "590", "3", "1.3", "Scarlett");
INSERT INTO `wp_rg_lead_detail` VALUES("5613", "590", "3", "1.6", "Waters");
INSERT INTO `wp_rg_lead_detail` VALUES("5614", "590", "3", "2", "janeices@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5615", "590", "3", "3.1", "665 grenville ave");
INSERT INTO `wp_rg_lead_detail` VALUES("5616", "590", "3", "3.3", "victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5617", "590", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5618", "590", "3", "3.5", "v9a6l5");
INSERT INTO `wp_rg_lead_detail` VALUES("5619", "590", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5620", "590", "3", "4", "(250) 220-5964");
INSERT INTO `wp_rg_lead_detail` VALUES("5621", "590", "3", "7", "Oct. 21. 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("5622", "590", "3", "5", "Making it work for teens");
INSERT INTO `wp_rg_lead_detail` VALUES("5623", "590", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5624", "591", "14", "1.3", "Eryn");
INSERT INTO `wp_rg_lead_detail` VALUES("5625", "591", "14", "1.6", "Brett");
INSERT INTO `wp_rg_lead_detail` VALUES("5626", "591", "14", "2", "Nov 29/1967");
INSERT INTO `wp_rg_lead_detail` VALUES("5627", "591", "14", "3", "(250) 858-8140");
INSERT INTO `wp_rg_lead_detail` VALUES("5628", "591", "14", "4", "erynbrett@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5629", "591", "14", "11", "Jan Mahoney");
INSERT INTO `wp_rg_lead_detail` VALUES("5630", "591", "14", "5", "My 17 year old daughter suffers from extreme anxiety and depression and is self medicating with marijuana and street Xanax. She has left my home last week and is staying with her drug addicted boyfriend and his parents. She is very angry with me and her older siblings, who live at my house, and refuses to come home or get help. I could really use some advice and counselling on how to handle this situation as the mom. Ultimately, we could use some family counselling to reunite our family. This is beyond my scope of experience and I am desperate to save my daughter before it is too late.");
INSERT INTO `wp_rg_lead_detail` VALUES("5631", "591", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5632", "591", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5633", "591", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("5634", "592", "14", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("5635", "592", "14", "1.6", "Hansen");
INSERT INTO `wp_rg_lead_detail` VALUES("5636", "592", "14", "2", "Feb. 9,1981");
INSERT INTO `wp_rg_lead_detail` VALUES("5637", "592", "14", "3", "(250) 634-2191");
INSERT INTO `wp_rg_lead_detail` VALUES("5638", "592", "14", "4", "hansen.jennifer03@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5639", "592", "14", "11", "Previously been");
INSERT INTO `wp_rg_lead_detail` VALUES("5640", "592", "14", "5", "Anxiety and Depression.");
INSERT INTO `wp_rg_lead_detail` VALUES("5641", "592", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5642", "592", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5643", "592", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5644", "593", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5645", "593", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5646", "593", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5647", "593", "8", "6", "Saint Philip Anglican Church\r\n 2928 Eastdowne Rd, Victoria, BC V8R 5R8");
INSERT INTO `wp_rg_lead_detail` VALUES("5648", "593", "8", "1.3", "Gerianne");
INSERT INTO `wp_rg_lead_detail` VALUES("5649", "593", "8", "1.6", "Knowles-Robson");
INSERT INTO `wp_rg_lead_detail` VALUES("5650", "593", "8", "2", "whenpigsfly2@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("5651", "593", "8", "3.1", "1767 Saint Ann Street");
INSERT INTO `wp_rg_lead_detail` VALUES("5652", "593", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5653", "593", "8", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("5654", "593", "8", "3.5", "V8R 5V7");
INSERT INTO `wp_rg_lead_detail` VALUES("5655", "593", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5656", "593", "8", "4", "(250) 595-0232");
INSERT INTO `wp_rg_lead_detail` VALUES("5657", "593", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5658", "593", "8", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5659", "594", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5660", "594", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5661", "594", "8", "6", "St. Michaels and All Angels   Church   West Saanich Road");
INSERT INTO `wp_rg_lead_detail` VALUES("5662", "594", "8", "1.3", "Nancy");
INSERT INTO `wp_rg_lead_detail` VALUES("5663", "594", "8", "1.6", "Paxton");
INSERT INTO `wp_rg_lead_detail` VALUES("5664", "594", "8", "2", "npaxton@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5665", "594", "8", "3.1", "301-1550 Richmond Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("5666", "594", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5667", "594", "8", "3.4", "British Columbia (BC)");
INSERT INTO `wp_rg_lead_detail` VALUES("5668", "594", "8", "3.5", "V8R4P6");
INSERT INTO `wp_rg_lead_detail` VALUES("5669", "594", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5670", "594", "8", "4", "(250) 370-2794");
INSERT INTO `wp_rg_lead_detail` VALUES("5671", "594", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5672", "594", "8", "11.5", "Bursary option: debit card ($15 per registrant) - in person only");
INSERT INTO `wp_rg_lead_detail` VALUES("5673", "595", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5674", "595", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5675", "595", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5676", "595", "8", "6", "St. Philip\'s Anglican Church\r\n2928 Eastdowne Rd\r\nVictoria, BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5677", "595", "8", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("5678", "595", "8", "1.6", "Fenimore");
INSERT INTO `wp_rg_lead_detail` VALUES("5679", "595", "8", "2", "karenfenimore@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5680", "595", "8", "3.1", "2625 Avebury Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("5681", "595", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5682", "595", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5683", "595", "8", "3.5", "V8R 3W3");
INSERT INTO `wp_rg_lead_detail` VALUES("5684", "595", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5685", "595", "8", "4", "(250) 477-7257");
INSERT INTO `wp_rg_lead_detail` VALUES("5686", "595", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5687", "595", "8", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5688", "596", "14", "1.3", "Erin");
INSERT INTO `wp_rg_lead_detail` VALUES("5689", "596", "14", "1.6", "McDermott");
INSERT INTO `wp_rg_lead_detail` VALUES("5690", "596", "14", "2", "June 15 1074");
INSERT INTO `wp_rg_lead_detail` VALUES("5691", "596", "14", "3", "(250) 516-7465");
INSERT INTO `wp_rg_lead_detail` VALUES("5692", "596", "14", "4", "erinmhome@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5693", "596", "14", "11", "Trent Warlow (Fiance)");
INSERT INTO `wp_rg_lead_detail` VALUES("5694", "596", "14", "5", "PTSD (Diagnosed 3 yrs ago) Panic attacks, Relationship issues (accute and contributing to my anxiety), feeling confused and helpless, interfering with work, past trauma\r\nMy mental health needs are critical at the moment. \r\n\r\nI do not work Fridays and am available all day. Amber called me today while I was working. I will return her call at 6pm as indicated.");
INSERT INTO `wp_rg_lead_detail` VALUES("5695", "596", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5696", "596", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5697", "596", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5698", "596", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("5699", "597", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5700", "597", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5701", "597", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5702", "597", "8", "6", "St. Michaels and All Angels, Anglican, West Saanich Rd.  Victoria, BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5703", "597", "8", "1.3", "Jo Ellen");
INSERT INTO `wp_rg_lead_detail` VALUES("5704", "597", "8", "1.6", "Schoblom");
INSERT INTO `wp_rg_lead_detail` VALUES("5705", "597", "8", "2", "joellenbbr@msn.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5706", "597", "8", "3.1", "Jo Ellen Schoblom");
INSERT INTO `wp_rg_lead_detail` VALUES("5707", "597", "8", "3.2", "642 Southwood Dr.");
INSERT INTO `wp_rg_lead_detail` VALUES("5708", "597", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5709", "597", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5710", "597", "8", "3.5", "V9B 6R9");
INSERT INTO `wp_rg_lead_detail` VALUES("5711", "597", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5712", "597", "8", "4", "(778) 265-2675");
INSERT INTO `wp_rg_lead_detail` VALUES("5713", "597", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5714", "597", "8", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5715", "598", "14", "1.3", "Scott");
INSERT INTO `wp_rg_lead_detail` VALUES("5716", "598", "14", "1.6", "Thompson");
INSERT INTO `wp_rg_lead_detail` VALUES("5717", "598", "14", "2", "11/30/85");
INSERT INTO `wp_rg_lead_detail` VALUES("5718", "598", "14", "3", "(250) 508-5267");
INSERT INTO `wp_rg_lead_detail` VALUES("5719", "598", "14", "4", "seescotttalk@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5720", "598", "14", "11", "A friend");
INSERT INTO `wp_rg_lead_detail` VALUES("5721", "598", "14", "5", "I feel as though I have been cycling through the same challenges in my life for most of my adult life, it\'s held me back, and I\'m looking to get ahead of it. I\'ve tried on my own, each time failing to varying degrees. I would love some help in getting past this.");
INSERT INTO `wp_rg_lead_detail` VALUES("5722", "598", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5723", "598", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5724", "598", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5725", "599", "14", "1.3", "Alanna");
INSERT INTO `wp_rg_lead_detail` VALUES("5726", "599", "14", "1.6", "Blishen");
INSERT INTO `wp_rg_lead_detail` VALUES("5727", "599", "14", "2", "December 22, 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("5728", "599", "14", "3", "(778) 679-7126");
INSERT INTO `wp_rg_lead_detail` VALUES("5729", "599", "14", "4", "amblishen@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5730", "599", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("5731", "599", "14", "5", "Depression, Anxiety, Anger");
INSERT INTO `wp_rg_lead_detail` VALUES("5732", "599", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5733", "599", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5734", "599", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5735", "599", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5736", "599", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5737", "600", "3", "1.3", "Roberto");
INSERT INTO `wp_rg_lead_detail` VALUES("5738", "600", "3", "1.6", "Volz");
INSERT INTO `wp_rg_lead_detail` VALUES("5739", "600", "3", "2", "robertovolz47@silver.variots.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5740", "600", "3", "3.1", "3020 Upton Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("5741", "600", "3", "3.3", "Westbrook");
INSERT INTO `wp_rg_lead_detail` VALUES("5742", "600", "3", "3.4", "Saskatchewan");
INSERT INTO `wp_rg_lead_detail` VALUES("5743", "600", "3", "3.5", "4092");
INSERT INTO `wp_rg_lead_detail` VALUES("5744", "600", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5745", "600", "3", "4", "(207) 918-5924");
INSERT INTO `wp_rg_lead_detail` VALUES("5746", "600", "3", "7", "NZ");
INSERT INTO `wp_rg_lead_detail` VALUES("5747", "600", "3", "5", "Homeschooling-Lessons Of Opportunity: The Racing Pigeon");
INSERT INTO `wp_rg_lead_detail` VALUES("5748", "600", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("5749", "600", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5750", "600", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5751", "601", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5752", "601", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5753", "601", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5754", "601", "8", "6", "Two Saints (St. Peter)");
INSERT INTO `wp_rg_lead_detail` VALUES("5755", "601", "8", "1.3", "Merle");
INSERT INTO `wp_rg_lead_detail` VALUES("5756", "601", "8", "1.6", "Campbell-Moore");
INSERT INTO `wp_rg_lead_detail` VALUES("5757", "601", "8", "2", "mcampbell-moore@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5758", "601", "8", "3.1", "1715 Feltham Road");
INSERT INTO `wp_rg_lead_detail` VALUES("5759", "601", "8", "3.2", "(NONE)");
INSERT INTO `wp_rg_lead_detail` VALUES("5760", "601", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5761", "601", "8", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("5762", "601", "8", "3.5", "V8N 2A4");
INSERT INTO `wp_rg_lead_detail` VALUES("5763", "601", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5764", "601", "8", "4", "(250) 477-6255");
INSERT INTO `wp_rg_lead_detail` VALUES("5765", "601", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5766", "601", "8", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5767", "602", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5768", "602", "8", "14.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("5769", "602", "8", "15.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("5770", "602", "8", "1.3", "Soraya");
INSERT INTO `wp_rg_lead_detail` VALUES("5771", "602", "8", "1.6", "Centeno");
INSERT INTO `wp_rg_lead_detail` VALUES("5772", "602", "8", "2", "sorayacenteno@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5773", "602", "8", "3.1", "3939 Saint Peter\'s Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("5774", "602", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5775", "602", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5776", "602", "8", "3.5", "V8P2J9");
INSERT INTO `wp_rg_lead_detail` VALUES("5777", "602", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5778", "602", "8", "4", "(778) 533-0900");
INSERT INTO `wp_rg_lead_detail` VALUES("5779", "602", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5780", "602", "8", "11.3", "Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)");
INSERT INTO `wp_rg_lead_detail` VALUES("5781", "603", "3", "1.3", "Nathan");
INSERT INTO `wp_rg_lead_detail` VALUES("5782", "603", "3", "1.6", "Treble");
INSERT INTO `wp_rg_lead_detail` VALUES("5783", "603", "3", "2", "nt5432@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5784", "603", "3", "3.1", "1829");
INSERT INTO `wp_rg_lead_detail` VALUES("5785", "603", "3", "3.3", "Knutsford Place");
INSERT INTO `wp_rg_lead_detail` VALUES("5786", "603", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5787", "603", "3", "3.5", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5788", "603", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5789", "603", "3", "4", "(250) 477-4438");
INSERT INTO `wp_rg_lead_detail` VALUES("5790", "603", "3", "7", "Oct. 10, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("5791", "603", "3", "5", "Young Adults Support Group For Anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("5792", "603", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("5793", "604", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5794", "604", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5795", "604", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5796", "604", "8", "6", "Rector, The Two Saints Ministry: St. David by-the-Sea, Cordova Bay, and St. Peter, Lakehill");
INSERT INTO `wp_rg_lead_detail` VALUES("5797", "604", "8", "1.3", "Matthew");
INSERT INTO `wp_rg_lead_detail` VALUES("5798", "604", "8", "1.6", "Brown");
INSERT INTO `wp_rg_lead_detail` VALUES("5799", "604", "8", "2", "mbrown@bc.anglican.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5800", "604", "8", "3.1", "4-753 Pemberton Road");
INSERT INTO `wp_rg_lead_detail` VALUES("5801", "604", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5802", "604", "8", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5803", "604", "8", "3.5", "V8S 3R3");
INSERT INTO `wp_rg_lead_detail` VALUES("5804", "604", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5805", "604", "8", "4", "(250) 588-5959");
INSERT INTO `wp_rg_lead_detail` VALUES("5806", "604", "8", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_rg_lead_detail` VALUES("5807", "604", "8", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5808", "605", "3", "1.3", "Elizabeth");
INSERT INTO `wp_rg_lead_detail` VALUES("5809", "605", "3", "1.6", "Underhill");
INSERT INTO `wp_rg_lead_detail` VALUES("5810", "605", "3", "2", "mouse.speak@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5811", "605", "3", "3.1", "3915 Persimmon Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("5812", "605", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5813", "605", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5814", "605", "3", "3.5", "V8P 3R8");
INSERT INTO `wp_rg_lead_detail` VALUES("5815", "605", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5816", "605", "3", "4", "(250) 414-0154");
INSERT INTO `wp_rg_lead_detail` VALUES("5817", "605", "3", "7", "October tenth 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("5818", "605", "3", "5", "Young adult support group for anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("5819", "605", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5820", "606", "8", "5.2", "myself and additional persons from the same congregation.");
INSERT INTO `wp_rg_lead_detail` VALUES("5821", "606", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5822", "606", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5823", "606", "8", "6", "St John the Divine Anglican, Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5824", "606", "8", "1.3", "Gillian");
INSERT INTO `wp_rg_lead_detail` VALUES("5825", "606", "8", "1.6", "Hoyer");
INSERT INTO `wp_rg_lead_detail` VALUES("5826", "606", "8", "2", "gillian.hoyer@stjohnthedivine.bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5827", "606", "8", "3.1", "1611 Quadra St");
INSERT INTO `wp_rg_lead_detail` VALUES("5828", "606", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5829", "606", "8", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5830", "606", "8", "3.5", "V8W 2L5");
INSERT INTO `wp_rg_lead_detail` VALUES("5831", "606", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5832", "606", "8", "4", "(250) 383-7169");
INSERT INTO `wp_rg_lead_detail` VALUES("5833", "606", "8", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_rg_lead_detail` VALUES("5834", "606", "8", "10", "Barry Salter - Basic\r\nChris Eve - Basic\r\nAl Lehmann - Basic");
INSERT INTO `wp_rg_lead_detail` VALUES("5835", "606", "8", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5836", "607", "3", "1.3", "Anthony");
INSERT INTO `wp_rg_lead_detail` VALUES("5837", "607", "3", "1.6", "Wick");
INSERT INTO `wp_rg_lead_detail` VALUES("5838", "607", "3", "2", "anthonywick@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5839", "607", "3", "3.1", "3835 Quadra St");
INSERT INTO `wp_rg_lead_detail` VALUES("5840", "607", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5841", "607", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5842", "607", "3", "3.5", "V8X 1H9");
INSERT INTO `wp_rg_lead_detail` VALUES("5843", "607", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5844", "607", "3", "4", "(250) 888-5676");
INSERT INTO `wp_rg_lead_detail` VALUES("5845", "607", "3", "7", "October 14, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("5846", "607", "3", "5", "Pastoral Care in the 21st Century");
INSERT INTO `wp_rg_lead_detail` VALUES("5847", "607", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5848", "608", "3", "1.3", "Moira");
INSERT INTO `wp_rg_lead_detail` VALUES("5849", "608", "3", "1.6", "Madamombe");
INSERT INTO `wp_rg_lead_detail` VALUES("5850", "608", "3", "2", "moiramajachani@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5851", "608", "3", "3.1", "302S HUMBOLDT ST");
INSERT INTO `wp_rg_lead_detail` VALUES("5852", "608", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5853", "608", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5854", "608", "3", "3.5", "V8W1B1");
INSERT INTO `wp_rg_lead_detail` VALUES("5855", "608", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5856", "608", "3", "4", "(250) 891-2618");
INSERT INTO `wp_rg_lead_detail` VALUES("5857", "608", "3", "7", "(Thursdays Oct. 19â€”Nov. 23, 2017: 7pmâ€”9pm)");
INSERT INTO `wp_rg_lead_detail` VALUES("5858", "608", "3", "5", "Living with Loss Part 1, an Introduction to Grief and Loss (TCNov. 23, 2017: 7pmâ€”9pm)");
INSERT INTO `wp_rg_lead_detail` VALUES("5859", "608", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("5860", "609", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5861", "609", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5862", "609", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5863", "609", "8", "6", "St. Michael\'s and All Angels. \r\nAnglican\r\n4733 West Saanich Rd. \r\nVictoria, B. C. V8Z 3G9");
INSERT INTO `wp_rg_lead_detail` VALUES("5864", "609", "8", "1.3", "Margaret");
INSERT INTO `wp_rg_lead_detail` VALUES("5865", "609", "8", "1.6", "Eagle");
INSERT INTO `wp_rg_lead_detail` VALUES("5866", "609", "8", "2", "margeagle@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("5867", "609", "8", "3.1", "2912 Island View Rd.");
INSERT INTO `wp_rg_lead_detail` VALUES("5868", "609", "8", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("5869", "609", "8", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("5870", "609", "8", "3.5", "V8M 1W4");
INSERT INTO `wp_rg_lead_detail` VALUES("5871", "609", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5872", "609", "8", "4", "(250) 652-9657");
INSERT INTO `wp_rg_lead_detail` VALUES("5873", "609", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5874", "609", "8", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5875", "610", "14", "1.3", "Ashley");
INSERT INTO `wp_rg_lead_detail` VALUES("5876", "610", "14", "1.6", "Berard");
INSERT INTO `wp_rg_lead_detail` VALUES("5877", "610", "14", "2", "Feb 11,1992");
INSERT INTO `wp_rg_lead_detail` VALUES("5878", "610", "14", "3", "(250) 819-9108");
INSERT INTO `wp_rg_lead_detail` VALUES("5879", "610", "14", "4", "ashleyaberard@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5880", "610", "14", "11", "A friend");
INSERT INTO `wp_rg_lead_detail` VALUES("5881", "610", "14", "5", "Previous unhealthy relationship, been having a difficult time moving on");
INSERT INTO `wp_rg_lead_detail` VALUES("5882", "610", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5883", "610", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5884", "610", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5885", "610", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5886", "610", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5887", "611", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5888", "611", "8", "14.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("5889", "611", "8", "15.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("5890", "611", "8", "6", "Christ Community Church; Christian Reformed Church; Victoria, B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("5891", "611", "8", "1.3", "Renee");
INSERT INTO `wp_rg_lead_detail` VALUES("5892", "611", "8", "1.6", "Vander Meulen");
INSERT INTO `wp_rg_lead_detail` VALUES("5893", "611", "8", "2", "renee.vander.meulen@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5894", "611", "8", "3.1", "4058 Copperfield Lane");
INSERT INTO `wp_rg_lead_detail` VALUES("5895", "611", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5896", "611", "8", "3.4", "B.C.");
INSERT INTO `wp_rg_lead_detail` VALUES("5897", "611", "8", "3.5", "V8Z OA6");
INSERT INTO `wp_rg_lead_detail` VALUES("5898", "611", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5899", "611", "8", "4", "(250) 893-9327");
INSERT INTO `wp_rg_lead_detail` VALUES("5900", "611", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5901", "611", "8", "11.1", "Non-bursary option: cheque ($105 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5902", "612", "14", "1.3", "Samantha");
INSERT INTO `wp_rg_lead_detail` VALUES("5903", "612", "14", "1.6", "Proffitt");
INSERT INTO `wp_rg_lead_detail` VALUES("5904", "612", "14", "2", "1978-12-19");
INSERT INTO `wp_rg_lead_detail` VALUES("5905", "612", "14", "3", "(778) 533-0474");
INSERT INTO `wp_rg_lead_detail` VALUES("5906", "612", "14", "4", "Samantha.Proffitt@csc-scc.gc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5907", "612", "14", "11", "I live around the corner.");
INSERT INTO `wp_rg_lead_detail` VALUES("5908", "612", "14", "5", "My husband and I are experiencing a great deal of conflict and stress within our relationship.  My husband is mentally ill, which is an ongoing struggle, but I would prefer to have each of us present our sides of this struggle in person.  We have two young children and I am trying my absolutely best to keep the conflict from having a negative impact on them.");
INSERT INTO `wp_rg_lead_detail` VALUES("5909", "612", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5910", "612", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("5911", "612", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5912", "612", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("5913", "613", "8", "5.2", "myself and additional persons from the same congregation.");
INSERT INTO `wp_rg_lead_detail` VALUES("5914", "613", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5915", "613", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5916", "613", "8", "6", "Church of St Mary the Virgin, Oak Bay (Tolmie Region, Anglican Diocese of BC), 1701 Elgin Rd, Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5917", "613", "8", "1.3", "Craig");
INSERT INTO `wp_rg_lead_detail` VALUES("5918", "613", "8", "1.6", "Hiebert");
INSERT INTO `wp_rg_lead_detail` VALUES("5919", "613", "8", "2", "craig.hiebert@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5920", "613", "8", "3.1", "1701 Elgin Rd");
INSERT INTO `wp_rg_lead_detail` VALUES("5921", "613", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5922", "613", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5923", "613", "8", "3.5", "V8R5L7");
INSERT INTO `wp_rg_lead_detail` VALUES("5924", "613", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5925", "613", "8", "4", "(250) 727-1328");
INSERT INTO `wp_rg_lead_detail` VALUES("5926", "613", "8", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_rg_lead_detail` VALUES("5927", "613", "8", "10", "Jane Anderson (basic)\r\nMary Creighton (advanced - prior training & experience, not South Island Centre)");
INSERT INTO `wp_rg_lead_detail` VALUES("5928", "613", "8", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5929", "614", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("5930", "614", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5931", "614", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5932", "614", "8", "6", "St Philip Anglican Church\r\n2928 Eastdowne Road\r\nVictoria BC");
INSERT INTO `wp_rg_lead_detail` VALUES("5933", "614", "8", "1.3", "Sharon");
INSERT INTO `wp_rg_lead_detail` VALUES("5934", "614", "8", "1.6", "Richmond");
INSERT INTO `wp_rg_lead_detail` VALUES("5935", "614", "8", "2", "sharonlrichmond@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5936", "614", "8", "3.1", "2751 dewdney avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("5937", "614", "8", "3.3", "victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5938", "614", "8", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5939", "614", "8", "3.5", "V8R 3M3");
INSERT INTO `wp_rg_lead_detail` VALUES("5940", "614", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5941", "614", "8", "4", "(250) 592-4073");
INSERT INTO `wp_rg_lead_detail` VALUES("5942", "614", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5943", "614", "8", "11.6", "Bursary option: credit card ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5944", "615", "8", "5.2", "myself and additional persons from the same congregation.");
INSERT INTO `wp_rg_lead_detail` VALUES("5945", "615", "8", "14.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5946", "615", "8", "15.1", "yes");
INSERT INTO `wp_rg_lead_detail` VALUES("5947", "615", "8", "6", "St. George the Martyr,\r\nAnglican\r\n3909 St. George\'s Lane, Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5948", "615", "8", "1.3", "Veronica");
INSERT INTO `wp_rg_lead_detail` VALUES("5949", "615", "8", "1.6", "Druce");
INSERT INTO `wp_rg_lead_detail` VALUES("5950", "615", "8", "2", "vmdruce@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("5951", "615", "8", "3.1", "1068 Monterey Avenue,");
INSERT INTO `wp_rg_lead_detail` VALUES("5952", "615", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5953", "615", "8", "3.4", "British Coliumbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5954", "615", "8", "3.5", "V8S 4V5");
INSERT INTO `wp_rg_lead_detail` VALUES("5955", "615", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5956", "615", "8", "4", "(250) 598-1790");
INSERT INTO `wp_rg_lead_detail` VALUES("5957", "615", "8", "9.3", "Advanced (have prior relevant experience and have consulted with my parish priest that this is the appropriate level for me)");
INSERT INTO `wp_rg_lead_detail` VALUES("5958", "615", "8", "10", "Sue Morrison - advanced\r\nMargaret Smart - advanced\r\nMarnie Bradfield - advanced");
INSERT INTO `wp_rg_lead_detail` VALUES("5959", "615", "8", "11.4", "Bursary option: cheque ($15 per registrant)");
INSERT INTO `wp_rg_lead_detail` VALUES("5960", "616", "8", "5.2", "myself and additional persons from the same congregation.");
INSERT INTO `wp_rg_lead_detail` VALUES("5961", "616", "8", "14.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("5962", "616", "8", "6", "Victoria Alliance Church");
INSERT INTO `wp_rg_lead_detail` VALUES("5963", "616", "8", "1.3", "Rob");
INSERT INTO `wp_rg_lead_detail` VALUES("5964", "616", "8", "1.6", "Olsen");
INSERT INTO `wp_rg_lead_detail` VALUES("5965", "616", "8", "2", "pastor.robolsen@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5966", "616", "8", "3.1", "1792 Townley");
INSERT INTO `wp_rg_lead_detail` VALUES("5967", "616", "8", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5968", "616", "8", "3.4", "BB");
INSERT INTO `wp_rg_lead_detail` VALUES("5969", "616", "8", "3.5", "V8R 3A7");
INSERT INTO `wp_rg_lead_detail` VALUES("5970", "616", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5971", "616", "8", "4", "(250) 744-0561");
INSERT INTO `wp_rg_lead_detail` VALUES("5972", "616", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("5973", "616", "8", "10", "Cathy Stone\r\nGreg Stone");
INSERT INTO `wp_rg_lead_detail` VALUES("5974", "616", "8", "11.3", "Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)");
INSERT INTO `wp_rg_lead_detail` VALUES("5975", "617", "3", "1.3", "Sylvia");
INSERT INTO `wp_rg_lead_detail` VALUES("5976", "617", "3", "1.6", "May");
INSERT INTO `wp_rg_lead_detail` VALUES("5977", "617", "3", "2", "robsyl@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("5978", "617", "3", "3.1", "31-14 Erskine Lane");
INSERT INTO `wp_rg_lead_detail` VALUES("5979", "617", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("5980", "617", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("5981", "617", "3", "3.5", "V8Z7J7");
INSERT INTO `wp_rg_lead_detail` VALUES("5982", "617", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("5983", "617", "3", "4", "(250) 213-7414");
INSERT INTO `wp_rg_lead_detail` VALUES("5984", "617", "3", "7", "Oct 19");
INSERT INTO `wp_rg_lead_detail` VALUES("5985", "617", "3", "5", "Living with Loss - Part 1");
INSERT INTO `wp_rg_lead_detail` VALUES("5986", "617", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("5987", "618", "14", "1.3", "Megan");
INSERT INTO `wp_rg_lead_detail` VALUES("5988", "618", "14", "1.6", "Bilski");
INSERT INTO `wp_rg_lead_detail` VALUES("5989", "618", "14", "2", "07/07/1994");
INSERT INTO `wp_rg_lead_detail` VALUES("5990", "618", "14", "3", "(807) 621-0915");
INSERT INTO `wp_rg_lead_detail` VALUES("5991", "618", "14", "4", "meganbilski@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("5992", "618", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("5993", "618", "14", "5", "I struggle with anxiety (generalized anxiety disorder, panic disorder) & depression. I have been to different counsellors over the years for talk therapy but would really like to start a therapy with more distinct goals. Something like CBT or DBT but I\'m open to anything that might help me.");
INSERT INTO `wp_rg_lead_detail` VALUES("5994", "618", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("5995", "618", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("5996", "618", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("5997", "619", "3", "1.3", "Angela");
INSERT INTO `wp_rg_lead_detail` VALUES("5998", "619", "3", "1.6", "Bates");
INSERT INTO `wp_rg_lead_detail` VALUES("5999", "619", "3", "2", "vicladybug@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6000", "619", "3", "3.1", "4560 William Head Rd.");
INSERT INTO `wp_rg_lead_detail` VALUES("6001", "619", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6002", "619", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6003", "619", "3", "3.5", "V9C3Y6");
INSERT INTO `wp_rg_lead_detail` VALUES("6004", "619", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6005", "619", "3", "4", "(250) 882-0734");
INSERT INTO `wp_rg_lead_detail` VALUES("6006", "619", "3", "7", "Oct 21/2017");
INSERT INTO `wp_rg_lead_detail` VALUES("6007", "619", "3", "5", "Making it work for teens for my son Mattias McDonald");
INSERT INTO `wp_rg_lead_detail` VALUES("6008", "619", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6009", "620", "8", "5.1", "just myself");
INSERT INTO `wp_rg_lead_detail` VALUES("6010", "620", "8", "14.2", "no");
INSERT INTO `wp_rg_lead_detail` VALUES("6011", "620", "8", "1.3", "ANA MARIA");
INSERT INTO `wp_rg_lead_detail` VALUES("6012", "620", "8", "1.6", "MARIN");
INSERT INTO `wp_rg_lead_detail` VALUES("6013", "620", "8", "2", "pavonmarin@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6014", "620", "8", "3.1", "1869 SHAWNIGAN LAKE");
INSERT INTO `wp_rg_lead_detail` VALUES("6015", "620", "8", "3.3", "SHAWNIGAN LAKE");
INSERT INTO `wp_rg_lead_detail` VALUES("6016", "620", "8", "3.4", "BC");
INSERT INTO `wp_rg_lead_detail` VALUES("6017", "620", "8", "3.5", "VOR2WO");
INSERT INTO `wp_rg_lead_detail` VALUES("6018", "620", "8", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6019", "620", "8", "4", "(250) 216-5722");
INSERT INTO `wp_rg_lead_detail` VALUES("6020", "620", "8", "9.1", "Basic (never attended a PCTT workshop)");
INSERT INTO `wp_rg_lead_detail` VALUES("6021", "620", "8", "11.3", "Non-bursary option: credit card ($110 per registrant; $5 surcharge has been added)");
INSERT INTO `wp_rg_lead_detail` VALUES("6022", "621", "14", "1.3", "Kainan");
INSERT INTO `wp_rg_lead_detail` VALUES("6023", "621", "14", "1.6", "Duggan");
INSERT INTO `wp_rg_lead_detail` VALUES("6024", "621", "14", "2", "September 30th 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("6025", "621", "14", "3", "(778) 350-1050");
INSERT INTO `wp_rg_lead_detail` VALUES("6026", "621", "14", "4", "qui.est@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6027", "621", "14", "11", "Previous patient for couples counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6028", "621", "14", "5", "Severe depression, suicidal thoughts, inability to function normally.");
INSERT INTO `wp_rg_lead_detail` VALUES("6029", "621", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6030", "621", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6031", "621", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6032", "621", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6033", "621", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6034", "622", "14", "1.3", "Aaron and Christina");
INSERT INTO `wp_rg_lead_detail` VALUES("6035", "622", "14", "1.6", "Jones");
INSERT INTO `wp_rg_lead_detail` VALUES("6036", "622", "14", "2", "March 7 1973 and March 8 1978");
INSERT INTO `wp_rg_lead_detail` VALUES("6037", "622", "14", "3", "(250) 208-7388");
INSERT INTO `wp_rg_lead_detail` VALUES("6038", "622", "14", "4", "aaronjones29@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6039", "622", "14", "11", "I visited the centre to gather info");
INSERT INTO `wp_rg_lead_detail` VALUES("6040", "622", "14", "5", "We have been married for 13 years. We have two kids.  We have had communication issues. We both have had work stress and health issues. \r\nWe want to communicate better and resolve some issues. We need coping strategies.");
INSERT INTO `wp_rg_lead_detail` VALUES("6041", "622", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6042", "622", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6043", "622", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("6044", "623", "3", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("6045", "623", "3", "1.6", "Fenimore");
INSERT INTO `wp_rg_lead_detail` VALUES("6046", "623", "3", "2", "Karenfenimore@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6047", "623", "3", "3.1", "2625 Avebury Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("6048", "623", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6049", "623", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6050", "623", "3", "3.5", "V8R 3W3");
INSERT INTO `wp_rg_lead_detail` VALUES("6051", "623", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6052", "623", "3", "4", "(250) 477-7257");
INSERT INTO `wp_rg_lead_detail` VALUES("6053", "623", "3", "7", "Oct. 19, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("6054", "623", "3", "5", "Grief and Loss - Part 1");
INSERT INTO `wp_rg_lead_detail` VALUES("6055", "623", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6056", "624", "3", "1.3", "Evelyn");
INSERT INTO `wp_rg_lead_detail` VALUES("6057", "624", "3", "1.6", "Savage");
INSERT INTO `wp_rg_lead_detail` VALUES("6058", "624", "3", "2", "cedar@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("6059", "624", "3", "3.1", "1723 Mamich Circle");
INSERT INTO `wp_rg_lead_detail` VALUES("6060", "624", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6061", "624", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6062", "624", "3", "3.5", "V8N 6M9");
INSERT INTO `wp_rg_lead_detail` VALUES("6063", "624", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6064", "624", "3", "4", "(250) 479-0489");
INSERT INTO `wp_rg_lead_detail` VALUES("6065", "624", "3", "7", "Oct 19, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("6066", "624", "3", "5", "Living with Loss Part One");
INSERT INTO `wp_rg_lead_detail` VALUES("6067", "624", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("6068", "625", "14", "1.3", "Kristin");
INSERT INTO `wp_rg_lead_detail` VALUES("6069", "625", "14", "1.6", "Devine");
INSERT INTO `wp_rg_lead_detail` VALUES("6070", "625", "14", "2", "December 17, 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("6071", "625", "14", "3", "(204) 509-2006");
INSERT INTO `wp_rg_lead_detail` VALUES("6072", "625", "14", "4", "krisdevine1991@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6073", "625", "14", "11", "Online google search");
INSERT INTO `wp_rg_lead_detail` VALUES("6074", "625", "14", "5", "I would like to find new ways to cope with my anxiety, mostly social anxiety. I would like to develop ways to practice being more assertive in my daily life. I would like to refrain from using drugs (cocaine) to help cope with anxiety.");
INSERT INTO `wp_rg_lead_detail` VALUES("6075", "625", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6076", "625", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6077", "625", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6078", "625", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6079", "626", "14", "1.3", "Melissa");
INSERT INTO `wp_rg_lead_detail` VALUES("6080", "626", "14", "1.6", "McKnight");
INSERT INTO `wp_rg_lead_detail` VALUES("6081", "626", "14", "2", "April 27 1979");
INSERT INTO `wp_rg_lead_detail` VALUES("6082", "626", "14", "3", "(250) 858-3407");
INSERT INTO `wp_rg_lead_detail` VALUES("6083", "626", "14", "4", "mckmel435@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6084", "626", "14", "11", "Pastor");
INSERT INTO `wp_rg_lead_detail` VALUES("6085", "626", "14", "5", "Anxiety following a family emergency .  Recurring memories and trouble sleeping.");
INSERT INTO `wp_rg_lead_detail` VALUES("6086", "626", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6087", "626", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6088", "626", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6089", "626", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("6090", "627", "14", "1.3", "Deanna");
INSERT INTO `wp_rg_lead_detail` VALUES("6091", "627", "14", "1.6", "Raffle");
INSERT INTO `wp_rg_lead_detail` VALUES("6092", "627", "14", "2", "October 11, 86");
INSERT INTO `wp_rg_lead_detail` VALUES("6093", "627", "14", "3", "(250) 507-3436");
INSERT INTO `wp_rg_lead_detail` VALUES("6094", "627", "14", "4", "Deannaraffle@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6095", "627", "14", "11", "Internet");
INSERT INTO `wp_rg_lead_detail` VALUES("6096", "627", "14", "5", "Anxiety, up and down moods, drinking");
INSERT INTO `wp_rg_lead_detail` VALUES("6097", "627", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6098", "627", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6099", "627", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6100", "627", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("6101", "628", "14", "1.3", "Nicolah");
INSERT INTO `wp_rg_lead_detail` VALUES("6102", "628", "14", "1.6", "Dinesen");
INSERT INTO `wp_rg_lead_detail` VALUES("6103", "628", "14", "2", "November 12th 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("6104", "628", "14", "3", "(250) 213-7374");
INSERT INTO `wp_rg_lead_detail` VALUES("6105", "628", "14", "4", "ndinesen1@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6106", "628", "14", "11", "Friend");
INSERT INTO `wp_rg_lead_detail` VALUES("6107", "628", "14", "5", "Anxiety and stress relating to family issues. Relationship problems with significant other.");
INSERT INTO `wp_rg_lead_detail` VALUES("6108", "628", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6109", "628", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6110", "628", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("6111", "629", "3", "1.3", "Anneli");
INSERT INTO `wp_rg_lead_detail` VALUES("6112", "629", "3", "1.6", "Driessen");
INSERT INTO `wp_rg_lead_detail` VALUES("6113", "629", "3", "2", "annelid@telus.net");
INSERT INTO `wp_rg_lead_detail` VALUES("6114", "629", "3", "3.1", "1516 Louise Place");
INSERT INTO `wp_rg_lead_detail` VALUES("6115", "629", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6116", "629", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6117", "629", "3", "3.5", "V8P2T9");
INSERT INTO `wp_rg_lead_detail` VALUES("6118", "629", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6119", "629", "3", "4", "(250) 472-0909");
INSERT INTO `wp_rg_lead_detail` VALUES("6120", "629", "3", "7", "October 28, 2017");
INSERT INTO `wp_rg_lead_detail` VALUES("6121", "629", "3", "5", "Me And My Personality: An Introduction to the Myers-Briggs Type Indicator (MBTI) and Your Personality Preference");
INSERT INTO `wp_rg_lead_detail` VALUES("6122", "629", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6123", "630", "14", "1.3", "Don");
INSERT INTO `wp_rg_lead_detail` VALUES("6124", "630", "14", "1.6", "Winsor");
INSERT INTO `wp_rg_lead_detail` VALUES("6125", "630", "14", "2", "May 4th 1961");
INSERT INTO `wp_rg_lead_detail` VALUES("6126", "630", "14", "3", "(778) 350-7001");
INSERT INTO `wp_rg_lead_detail` VALUES("6127", "630", "14", "4", "donwinsor@me.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6128", "630", "14", "11", "Island health");
INSERT INTO `wp_rg_lead_detail` VALUES("6129", "630", "14", "5", "PTSD \r\nPanic attacks \r\nAnxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("6130", "630", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6131", "630", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6132", "630", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6133", "630", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6134", "631", "14", "1.3", "Jessica");
INSERT INTO `wp_rg_lead_detail` VALUES("6135", "631", "14", "1.6", "Fram");
INSERT INTO `wp_rg_lead_detail` VALUES("6136", "631", "14", "2", "March 10, 1987");
INSERT INTO `wp_rg_lead_detail` VALUES("6137", "631", "14", "3", "(416) 520-7538");
INSERT INTO `wp_rg_lead_detail` VALUES("6138", "631", "14", "4", "jessfram@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6139", "631", "14", "11", "Google search");
INSERT INTO `wp_rg_lead_detail` VALUES("6140", "631", "14", "5", "Unrelenting depression, hopelessness about my future, many/most times wishing there wasn\'t a future. Have been single for 4 years, no friends, social anxiety. Re-traumatized by all the sex abuse things in the news. I was \"date raped\" at 16 years of age. In the last few months I have had a strong sexual aversion. If people would even kiss in a movie I would be disgusted and have to fast forward. I currently work part time, am underemployed and dislike my job. I suffer from Crohns and Colitis. I am also dealing with pure O of OCD which seems to be getting worse in the form of panic attacks and nightmares. I could write more but that would be overwhelming.");
INSERT INTO `wp_rg_lead_detail` VALUES("6141", "631", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6142", "631", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6143", "631", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6144", "631", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6145", "631", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6146", "631", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6147", "632", "14", "1.3", "Filippa");
INSERT INTO `wp_rg_lead_detail` VALUES("6148", "632", "14", "1.6", "Bahrke");
INSERT INTO `wp_rg_lead_detail` VALUES("6149", "632", "14", "2", "13/02/1992");
INSERT INTO `wp_rg_lead_detail` VALUES("6150", "632", "14", "3", "(778) 584-1155");
INSERT INTO `wp_rg_lead_detail` VALUES("6151", "632", "14", "4", "filippabahrke@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6152", "632", "14", "11", "from someone going into counsellor training");
INSERT INTO `wp_rg_lead_detail` VALUES("6153", "632", "14", "5", "I have experienced symptoms of depression back and forth for some time, and am currently in a rather dark place. I have previously seen counsellors and found that a constructive approach to breaking negative thought patterns helps. I\'m hoping I can be elegible although I am not (yet) a Canadian citizen.");
INSERT INTO `wp_rg_lead_detail` VALUES("6154", "632", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6155", "632", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6156", "632", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6157", "632", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6158", "632", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6159", "633", "14", "1.3", "Lauren");
INSERT INTO `wp_rg_lead_detail` VALUES("6160", "633", "14", "1.6", "Williams");
INSERT INTO `wp_rg_lead_detail` VALUES("6161", "633", "14", "2", "May 14, 1979");
INSERT INTO `wp_rg_lead_detail` VALUES("6162", "633", "14", "3", "(250) 385-0996");
INSERT INTO `wp_rg_lead_detail` VALUES("6163", "633", "14", "4", "sparkygirl1989@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6164", "633", "14", "11", "Have attended in the past.");
INSERT INTO `wp_rg_lead_detail` VALUES("6165", "633", "14", "5", "I\'m actually looking for counselling for my husband and I together. We have communication issues that I feel we cannot work through by ourselves and I\'m looking for someone to help us.\r\nWe are available anytime after 3:30 Monday, Tuesday, Thursday, Friday.");
INSERT INTO `wp_rg_lead_detail` VALUES("6166", "633", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6167", "633", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6168", "633", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6169", "633", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("6170", "634", "14", "1.3", "Anne-Sophie");
INSERT INTO `wp_rg_lead_detail` VALUES("6171", "634", "14", "1.6", "Corriveau");
INSERT INTO `wp_rg_lead_detail` VALUES("6172", "634", "14", "2", "Feb 18 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("6173", "634", "14", "3", "(418) 805-2676");
INSERT INTO `wp_rg_lead_detail` VALUES("6174", "634", "14", "4", "anne_so156@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6175", "634", "14", "11", "Doctor");
INSERT INTO `wp_rg_lead_detail` VALUES("6176", "634", "14", "5", "Feeling depressed for the last tow years, was hoping that time and change in my life would help, but still struggling.");
INSERT INTO `wp_rg_lead_detail` VALUES("6177", "634", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6178", "634", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6179", "634", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6180", "634", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6181", "635", "14", "1.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6182", "635", "14", "1.6", "Gagnon");
INSERT INTO `wp_rg_lead_detail` VALUES("6183", "635", "14", "2", "Nov 5 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("6184", "635", "14", "3", "(250) 802-3637");
INSERT INTO `wp_rg_lead_detail` VALUES("6185", "635", "14", "4", "vlgagnon@uvic.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6186", "635", "14", "11", "Internet search");
INSERT INTO `wp_rg_lead_detail` VALUES("6187", "635", "14", "5", "Fear of presentations in classes (civil engineering bach) to the point where I feel like I should drop out, social anxiety, hopelessness, fear of abandonment (my dad committed suicide when I was 14)");
INSERT INTO `wp_rg_lead_detail` VALUES("6188", "635", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6189", "635", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6190", "635", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6191", "635", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6192", "636", "14", "1.3", "Katherine");
INSERT INTO `wp_rg_lead_detail` VALUES("6193", "636", "14", "1.6", "Andrews");
INSERT INTO `wp_rg_lead_detail` VALUES("6194", "636", "14", "2", "Feb 10 1972");
INSERT INTO `wp_rg_lead_detail` VALUES("6195", "636", "14", "3", "(258) 896-1182");
INSERT INTO `wp_rg_lead_detail` VALUES("6196", "636", "14", "4", "Kleeandrews@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6197", "636", "14", "11", "Web");
INSERT INTO `wp_rg_lead_detail` VALUES("6198", "636", "14", "5", "Test anxiety \r\nTrust issues\r\nHistory of ptsd /clinical depression\r\nM to Friday between 8 and 1 preferred");
INSERT INTO `wp_rg_lead_detail` VALUES("6199", "636", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6200", "636", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6201", "636", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6202", "637", "14", "1.3", "Ashley");
INSERT INTO `wp_rg_lead_detail` VALUES("6203", "637", "14", "1.6", "Rolland");
INSERT INTO `wp_rg_lead_detail` VALUES("6204", "637", "14", "2", "May 18 1997");
INSERT INTO `wp_rg_lead_detail` VALUES("6205", "637", "14", "3", "(778) 938-8607");
INSERT INTO `wp_rg_lead_detail` VALUES("6206", "637", "14", "4", "ashleyrolland17@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6207", "637", "14", "11", "Through my doctor.");
INSERT INTO `wp_rg_lead_detail` VALUES("6208", "637", "14", "5", "Need an up to date mental health assessment and weekly counselling. Diagnosed depression and anxiety disorders. \r\n\r\nWould like to get tested for and discuss mood disorders as I\'ve I am having difficulty controlling my emotions and have family history of BPD and bipolar disorder. \r\n\r\nI am not interested in medication.");
INSERT INTO `wp_rg_lead_detail` VALUES("6209", "637", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6210", "637", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6211", "637", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6212", "637", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6213", "638", "14", "1.3", "Heather");
INSERT INTO `wp_rg_lead_detail` VALUES("6214", "638", "14", "1.6", "Storie");
INSERT INTO `wp_rg_lead_detail` VALUES("6215", "638", "14", "2", "March 23 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("6216", "638", "14", "3", "(250) 858-1379");
INSERT INTO `wp_rg_lead_detail` VALUES("6217", "638", "14", "4", "heatheraudralynn@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6218", "638", "14", "11", "VIHA Mental Health Referral");
INSERT INTO `wp_rg_lead_detail` VALUES("6219", "638", "14", "5", "I experienced a traumatic event in the summer and have ptsd as a result. I need support to work through my symptoms and regain my quality of life before my attack.");
INSERT INTO `wp_rg_lead_detail` VALUES("6220", "638", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6221", "638", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6222", "638", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6223", "638", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6224", "639", "14", "1.3", "Dan");
INSERT INTO `wp_rg_lead_detail` VALUES("6225", "639", "14", "1.6", "Hickman");
INSERT INTO `wp_rg_lead_detail` VALUES("6226", "639", "14", "2", "17 July 1955");
INSERT INTO `wp_rg_lead_detail` VALUES("6227", "639", "14", "3", "(250) 893-2940");
INSERT INTO `wp_rg_lead_detail` VALUES("6228", "639", "14", "4", "LtDan@Mail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6229", "639", "14", "11", "Shelbourne Street Church of Christ");
INSERT INTO `wp_rg_lead_detail` VALUES("6230", "639", "14", "5", "dealing with memory of former church leader.");
INSERT INTO `wp_rg_lead_detail` VALUES("6231", "639", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6232", "639", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6233", "639", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6234", "639", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("6235", "640", "14", "1.3", "Lucas");
INSERT INTO `wp_rg_lead_detail` VALUES("6236", "640", "14", "1.6", "Girouard-Stranks");
INSERT INTO `wp_rg_lead_detail` VALUES("6237", "640", "14", "2", "August 25th 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("6238", "640", "14", "3", "(250) 306-2587");
INSERT INTO `wp_rg_lead_detail` VALUES("6239", "640", "14", "4", "lustranks@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6240", "640", "14", "11", "Doctor.");
INSERT INTO `wp_rg_lead_detail` VALUES("6241", "640", "14", "5", "Major depression; worldview.");
INSERT INTO `wp_rg_lead_detail` VALUES("6242", "640", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6243", "640", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6244", "640", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6245", "641", "14", "1.3", "Megan");
INSERT INTO `wp_rg_lead_detail` VALUES("6246", "641", "14", "1.6", "Schulz");
INSERT INTO `wp_rg_lead_detail` VALUES("6247", "641", "14", "2", "March 24, 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("6248", "641", "14", "3", "(778) 899-9234");
INSERT INTO `wp_rg_lead_detail` VALUES("6249", "641", "14", "4", "mjs.schulz@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6250", "641", "14", "11", "From a friend");
INSERT INTO `wp_rg_lead_detail` VALUES("6251", "641", "14", "5", "Depression, grief, anger. I would like to see Jennifer Cole (counsellor) please.");
INSERT INTO `wp_rg_lead_detail` VALUES("6252", "641", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6253", "641", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6254", "641", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6255", "641", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6256", "641", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("6257", "642", "14", "1.3", "Glen");
INSERT INTO `wp_rg_lead_detail` VALUES("6258", "642", "14", "1.6", "Williams");
INSERT INTO `wp_rg_lead_detail` VALUES("6259", "642", "14", "2", "February 15th, 1985");
INSERT INTO `wp_rg_lead_detail` VALUES("6260", "642", "14", "3", "(778) 350-0729");
INSERT INTO `wp_rg_lead_detail` VALUES("6261", "642", "14", "4", "gjwilliams1585@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6262", "642", "14", "11", "Referral");
INSERT INTO `wp_rg_lead_detail` VALUES("6263", "642", "14", "5", "Plenty of concerns regarding how Iâ€™ve managed being adopted and the secret of said adoption within my family and my upbringing. Plus Iâ€™m expecting my first child with my partner which I love to pieces but we argue to a point that makes me believe counselling is needed for myself or for us collectively.");
INSERT INTO `wp_rg_lead_detail` VALUES("6264", "642", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6265", "642", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6266", "642", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6267", "643", "14", "1.3", "JoHanna");
INSERT INTO `wp_rg_lead_detail` VALUES("6268", "643", "14", "1.6", "Berginc");
INSERT INTO `wp_rg_lead_detail` VALUES("6269", "643", "14", "2", "September 17. 1999");
INSERT INTO `wp_rg_lead_detail` VALUES("6270", "643", "14", "3", "(250) 661-4387");
INSERT INTO `wp_rg_lead_detail` VALUES("6271", "643", "14", "4", "jojo.berginc@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6272", "643", "14", "11", "Through a Google search for Youth counsellors");
INSERT INTO `wp_rg_lead_detail` VALUES("6273", "643", "14", "5", "Social Anxiety, Depression, academic pressure, relationship advice (how to maintain healthy relationships and fix existing problems), self image/esteem, coping mechanisms for early childhood trauma, coping mechanisms for panic attacks.");
INSERT INTO `wp_rg_lead_detail` VALUES("6274", "643", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6275", "643", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6276", "643", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6277", "643", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6278", "644", "14", "1.3", "Rhonda");
INSERT INTO `wp_rg_lead_detail` VALUES("6279", "644", "14", "1.6", "Kirwan");
INSERT INTO `wp_rg_lead_detail` VALUES("6280", "644", "14", "2", "Jan 11 1964");
INSERT INTO `wp_rg_lead_detail` VALUES("6281", "644", "14", "3", "(250) 896-9018");
INSERT INTO `wp_rg_lead_detail` VALUES("6282", "644", "14", "4", "rlmkrhonda@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6283", "644", "14", "11", "Dr. Referal");
INSERT INTO `wp_rg_lead_detail` VALUES("6284", "644", "14", "5", "Iâ€™m 5yrs into relationship, 1.5yr married. Also itâ€™s been 2yrs since I met my birth sister. She is older was adopted before my birth, now found me, now lives in Victoria from Ont. 6mths... she moved in with us till , a huge fight between she and my partner, they do not get along, Iâ€™m caught in the middle and need help with setting boundaries, what are appropriate boundaries for my situation. Iâ€™m recovering from PTSD brought on by three MVAâ€™s in 9mths, 6yr ago, compounding long term childhood incest. Stress is daily.... I have had a lot of counseling on and off over the past 30 yrs.");
INSERT INTO `wp_rg_lead_detail` VALUES("6285", "644", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6286", "644", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6287", "644", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6288", "644", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6289", "644", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("6290", "645", "14", "1.3", "Jennie");
INSERT INTO `wp_rg_lead_detail` VALUES("6291", "645", "14", "1.6", "Bartosik");
INSERT INTO `wp_rg_lead_detail` VALUES("6292", "645", "14", "2", "March 20, 1984");
INSERT INTO `wp_rg_lead_detail` VALUES("6293", "645", "14", "3", "(778) 677-5307");
INSERT INTO `wp_rg_lead_detail` VALUES("6294", "645", "14", "4", "jenniebartosik@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6295", "645", "14", "11", "Sign");
INSERT INTO `wp_rg_lead_detail` VALUES("6296", "645", "14", "5", "I believe I may have Body-Focused Repetitive Behavior (a habit in which I constantly pick at skin imperfections). From what I\'ve read it may be a form of OCD. I don\'t know but it is interfering with my life and I\'d like to stop. \r\n\r\nI am available Tuesdays or Wednesdays between 9:30am and 2pm.");
INSERT INTO `wp_rg_lead_detail` VALUES("6297", "645", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6298", "645", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6299", "645", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6300", "646", "14", "1.3", "Juanito");
INSERT INTO `wp_rg_lead_detail` VALUES("6301", "646", "14", "1.6", "Santos de Dios");
INSERT INTO `wp_rg_lead_detail` VALUES("6302", "646", "14", "2", "July 12, 1947");
INSERT INTO `wp_rg_lead_detail` VALUES("6303", "646", "14", "3", "(250) 580-0486");
INSERT INTO `wp_rg_lead_detail` VALUES("6304", "646", "14", "4", "revjcsd@juno.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6305", "646", "14", "11", "Referred by Gillian Hoyer");
INSERT INTO `wp_rg_lead_detail` VALUES("6306", "646", "14", "5", "Symptoms of depressive illness");
INSERT INTO `wp_rg_lead_detail` VALUES("6307", "646", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6308", "646", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6309", "646", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6310", "646", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6311", "646", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6312", "647", "14", "1.3", "Erin");
INSERT INTO `wp_rg_lead_detail` VALUES("6313", "647", "14", "1.6", "Clair");
INSERT INTO `wp_rg_lead_detail` VALUES("6314", "647", "14", "2", "August 3, 1982");
INSERT INTO `wp_rg_lead_detail` VALUES("6315", "647", "14", "3", "(250) 686-9477");
INSERT INTO `wp_rg_lead_detail` VALUES("6316", "647", "14", "4", "erin82clair@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6317", "647", "14", "11", "Family doctor");
INSERT INTO `wp_rg_lead_detail` VALUES("6318", "647", "14", "5", "Mild depression, moderate alcohol and substance concerns");
INSERT INTO `wp_rg_lead_detail` VALUES("6319", "647", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6320", "647", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6321", "647", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6322", "647", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6323", "648", "14", "1.3", "Sophia");
INSERT INTO `wp_rg_lead_detail` VALUES("6324", "648", "14", "1.6", "Siegel");
INSERT INTO `wp_rg_lead_detail` VALUES("6325", "648", "14", "2", "02/14/69");
INSERT INTO `wp_rg_lead_detail` VALUES("6326", "648", "14", "3", "(250) 514-1214");
INSERT INTO `wp_rg_lead_detail` VALUES("6327", "648", "14", "4", "sophiasiegel@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6328", "648", "14", "11", "referral (from Prince George) for Greg Beattie");
INSERT INTO `wp_rg_lead_detail` VALUES("6329", "648", "14", "5", "Anxiety/Depression due to external factors (separation) mainly.\r\nGreg Beattie comes highly recommended to me.");
INSERT INTO `wp_rg_lead_detail` VALUES("6330", "648", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6331", "648", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6332", "648", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6333", "648", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("6334", "649", "14", "1.3", "Elizabeth");
INSERT INTO `wp_rg_lead_detail` VALUES("6335", "649", "14", "1.6", "Walker");
INSERT INTO `wp_rg_lead_detail` VALUES("6336", "649", "14", "2", "December 2, 1995");
INSERT INTO `wp_rg_lead_detail` VALUES("6337", "649", "14", "3", "(778) 977-5466");
INSERT INTO `wp_rg_lead_detail` VALUES("6338", "649", "14", "4", "Liz.walker@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6339", "649", "14", "11", "Recommended by family life coordinator at our church");
INSERT INTO `wp_rg_lead_detail` VALUES("6340", "649", "14", "5", "Looking for couples counselling. \r\nOur present concerns are communication, commitment, intimacy and happiness");
INSERT INTO `wp_rg_lead_detail` VALUES("6341", "649", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6342", "649", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6343", "649", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("6344", "649", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("6345", "650", "14", "1.3", "Jennifer");
INSERT INTO `wp_rg_lead_detail` VALUES("6346", "650", "14", "1.6", "Naunheimer");
INSERT INTO `wp_rg_lead_detail` VALUES("6347", "650", "14", "2", "June 13, 1974");
INSERT INTO `wp_rg_lead_detail` VALUES("6348", "650", "14", "3", "(250) 889-0182");
INSERT INTO `wp_rg_lead_detail` VALUES("6349", "650", "14", "4", "jnaunheimer@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6350", "650", "14", "11", "Internet");
INSERT INTO `wp_rg_lead_detail` VALUES("6351", "650", "14", "5", "Family unity is our desired outcome. Presently, we have respect issues, resentment, and anger rule our home.  Unkind words are said, and behaviour remains unchanged for all parties.   My older son has anxiety issues that impact his health and well-being.  My younger son is unhappy, and will not divulge his concerns to me - only to his brother, if at all. I am in the grips of a major depressive episode and have anger and anxiety issues as well. There has been a lot of grief to process as well, with the loss of both of my parents, and my brother over the past 5 years.  Faking it isn\'t working anymore and we need help working our way back to peace and some semblance of peace.");
INSERT INTO `wp_rg_lead_detail` VALUES("6352", "650", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6353", "650", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6354", "650", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6355", "650", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6356", "650", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6357", "651", "14", "1.3", "Jada");
INSERT INTO `wp_rg_lead_detail` VALUES("6358", "651", "14", "1.6", "Belleau");
INSERT INTO `wp_rg_lead_detail` VALUES("6359", "651", "14", "2", "June 29, 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("6360", "651", "14", "3", "(250) 891-4165");
INSERT INTO `wp_rg_lead_detail` VALUES("6361", "651", "14", "4", "j.belleau@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6362", "651", "14", "11", "through a friend");
INSERT INTO `wp_rg_lead_detail` VALUES("6363", "651", "14", "5", "anxiety, depression,");
INSERT INTO `wp_rg_lead_detail` VALUES("6364", "651", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6365", "651", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6366", "651", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6367", "651", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6368", "651", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6369", "652", "3", "1.3", "Charles");
INSERT INTO `wp_rg_lead_detail` VALUES("6370", "652", "3", "1.6", "Cheyne");
INSERT INTO `wp_rg_lead_detail` VALUES("6371", "652", "3", "2", "bedrunnisaerkinel@sweethome.ga");
INSERT INTO `wp_rg_lead_detail` VALUES("6372", "652", "3", "3.1", "2734 43rd Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("6373", "652", "3", "3.3", "Joussard");
INSERT INTO `wp_rg_lead_detail` VALUES("6374", "652", "3", "3.4", "Newfoundland &amp; Labrador");
INSERT INTO `wp_rg_lead_detail` VALUES("6375", "652", "3", "3.5", "Y1y 1y1");
INSERT INTO `wp_rg_lead_detail` VALUES("6376", "652", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6377", "652", "3", "4", "(780) 776-2101");
INSERT INTO `wp_rg_lead_detail` VALUES("6378", "652", "3", "7", "LE");
INSERT INTO `wp_rg_lead_detail` VALUES("6379", "652", "3", "5", "The Correct Wedding Etiquette On wedding Event Day");
INSERT INTO `wp_rg_lead_detail` VALUES("6380", "652", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("6381", "652", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6382", "652", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6383", "653", "14", "1.3", "Edna");
INSERT INTO `wp_rg_lead_detail` VALUES("6384", "653", "14", "1.6", "Shaw");
INSERT INTO `wp_rg_lead_detail` VALUES("6385", "653", "14", "2", "July 6, 1963");
INSERT INTO `wp_rg_lead_detail` VALUES("6386", "653", "14", "3", "(250) 544-1271");
INSERT INTO `wp_rg_lead_detail` VALUES("6387", "653", "14", "4", "ednashaw@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6388", "653", "14", "11", "Fr. Rolf Hasenack , Saanich Peninsula Parish Priest");
INSERT INTO `wp_rg_lead_detail` VALUES("6389", "653", "14", "5", "My husband & I have marital issues.\r\nWe are working on moving towards being together but have questions on how to proceed with our living arrangement .");
INSERT INTO `wp_rg_lead_detail` VALUES("6390", "653", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6391", "653", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6392", "653", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("6393", "654", "14", "1.3", "Joan");
INSERT INTO `wp_rg_lead_detail` VALUES("6394", "654", "14", "1.6", "Duckett");
INSERT INTO `wp_rg_lead_detail` VALUES("6395", "654", "14", "2", "February 9, 1955");
INSERT INTO `wp_rg_lead_detail` VALUES("6396", "654", "14", "3", "(250) 381-2560");
INSERT INTO `wp_rg_lead_detail` VALUES("6397", "654", "14", "4", "Joan.duckett@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6398", "654", "14", "11", "Church newspaper");
INSERT INTO `wp_rg_lead_detail` VALUES("6399", "654", "14", "5", "Life stage changes, childhood issues, relationship oncerns.  When reading the counsellors\' bios, I thought Barbara  Baillie would be a good fit.");
INSERT INTO `wp_rg_lead_detail` VALUES("6400", "654", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6401", "654", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6402", "654", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("6403", "655", "14", "1.3", "Scott");
INSERT INTO `wp_rg_lead_detail` VALUES("6404", "655", "14", "1.6", "Matthews");
INSERT INTO `wp_rg_lead_detail` VALUES("6405", "655", "14", "2", "July 13, 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("6406", "655", "14", "3", "(250) 208-8836");
INSERT INTO `wp_rg_lead_detail` VALUES("6407", "655", "14", "4", "scmatthews@live.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6408", "655", "14", "11", "Google Search");
INSERT INTO `wp_rg_lead_detail` VALUES("6409", "655", "14", "5", "Stress and anxiety management, self-esteem issues, family relationship conflicts, career and life path concerns");
INSERT INTO `wp_rg_lead_detail` VALUES("6410", "655", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6411", "655", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6412", "655", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6413", "655", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6414", "656", "14", "1.3", "Evan");
INSERT INTO `wp_rg_lead_detail` VALUES("6415", "656", "14", "1.6", "Foulds");
INSERT INTO `wp_rg_lead_detail` VALUES("6416", "656", "14", "2", "06/19/992");
INSERT INTO `wp_rg_lead_detail` VALUES("6417", "656", "14", "3", "(250) 885-1234");
INSERT INTO `wp_rg_lead_detail` VALUES("6418", "656", "14", "4", "efoulds@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6419", "656", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("6420", "656", "14", "5", "Childhood abuse trauma anxiety, depression");
INSERT INTO `wp_rg_lead_detail` VALUES("6421", "656", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6422", "656", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6423", "656", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6424", "656", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6425", "657", "14", "1.3", "Robyn");
INSERT INTO `wp_rg_lead_detail` VALUES("6426", "657", "14", "1.6", "Mollena");
INSERT INTO `wp_rg_lead_detail` VALUES("6427", "657", "14", "2", "December 17th 1997");
INSERT INTO `wp_rg_lead_detail` VALUES("6428", "657", "14", "3", "(604) 300-4957");
INSERT INTO `wp_rg_lead_detail` VALUES("6429", "657", "14", "4", "Kama_mollena@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6430", "657", "14", "11", "Searching google");
INSERT INTO `wp_rg_lead_detail` VALUES("6431", "657", "14", "5", "Stress and anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("6432", "657", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6433", "657", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6434", "657", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6435", "657", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6436", "657", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6437", "657", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6438", "657", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("6439", "657", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6440", "658", "14", "1.3", "Lisa");
INSERT INTO `wp_rg_lead_detail` VALUES("6441", "658", "14", "1.6", "Kent");
INSERT INTO `wp_rg_lead_detail` VALUES("6442", "658", "14", "2", "Oct 7, 1962");
INSERT INTO `wp_rg_lead_detail` VALUES("6443", "658", "14", "3", "(250) 588-3876");
INSERT INTO `wp_rg_lead_detail` VALUES("6444", "658", "14", "4", "noticebyorder@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6445", "658", "14", "11", "Victoria mental health");
INSERT INTO `wp_rg_lead_detail` VALUES("6446", "658", "14", "5", "Depression, anxiety, stress");
INSERT INTO `wp_rg_lead_detail` VALUES("6447", "658", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6448", "658", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6449", "658", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6450", "659", "14", "1.3", "Maria");
INSERT INTO `wp_rg_lead_detail` VALUES("6451", "659", "14", "1.6", "Lironi");
INSERT INTO `wp_rg_lead_detail` VALUES("6452", "659", "14", "2", "Aug 21, 1963");
INSERT INTO `wp_rg_lead_detail` VALUES("6453", "659", "14", "3", "(778) 977-8618");
INSERT INTO `wp_rg_lead_detail` VALUES("6454", "659", "14", "4", "redmango99@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6455", "659", "14", "11", "From your client Daniel Allen");
INSERT INTO `wp_rg_lead_detail` VALUES("6456", "659", "14", "5", "Hello,\r\n\r\nMy friend Daniel recommended Margaret to me. I have experienced a number of losses this year--my father died, then my mentor, and then my counsellor. My grief is complicated by the fact that I have bipolar disorder, and I have been severely depressed and unable to work since February.");
INSERT INTO `wp_rg_lead_detail` VALUES("6457", "659", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6458", "659", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6459", "659", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6460", "659", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6461", "659", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6462", "660", "14", "1.3", "Apryl");
INSERT INTO `wp_rg_lead_detail` VALUES("6463", "660", "14", "1.6", "Sweenie");
INSERT INTO `wp_rg_lead_detail` VALUES("6464", "660", "14", "2", "11/28/97");
INSERT INTO `wp_rg_lead_detail` VALUES("6465", "660", "14", "3", "(250) 812-3430");
INSERT INTO `wp_rg_lead_detail` VALUES("6466", "660", "14", "4", "Apryl190@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6467", "660", "14", "11", "Web");
INSERT INTO `wp_rg_lead_detail` VALUES("6468", "660", "14", "5", "Iâ€™ve seen a few Counsellors in the past, and have been working with my doctor since May 2017 to find someone affordable that I can continue to see. I have been diagnosed with Anxiety, depression and PTSD in the past. I was on Citalopram for a year and a half, and successfully was off prescription meds for almost 10 months. Recently I have gone back into antidepressants, as my luck finding a Counsellor is not working well. I am finding life hard to cope, and missed a lot of work due to depression and anxiety. I used to be a competitive horseback rider, but last year I lost my horse that I rescued due to colic. I havenâ€™t been able to go to the barn and see my other horse, or ever ride since then. I have constant dreams where I can see events from the night he died over and over. In September, a close friend to me died in a motorcycle accident, and it extremely affected me to the point of getting night terrors again, losing lots weight from stress, and quitting my job. My boyfriend and I also had to move out of our home due to mold on Boxing Day, and currently are living in a hotel. I am always stressed and in an agitated mood. I am wanting to be able to work through this and these feelings so I can live a semi â€œnormalâ€ life again.");
INSERT INTO `wp_rg_lead_detail` VALUES("6469", "660", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6470", "660", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6471", "660", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6472", "660", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6473", "661", "14", "1.3", "Elli");
INSERT INTO `wp_rg_lead_detail` VALUES("6474", "661", "14", "1.6", "Reilander");
INSERT INTO `wp_rg_lead_detail` VALUES("6475", "661", "14", "2", "Jan 16, 1985");
INSERT INTO `wp_rg_lead_detail` VALUES("6476", "661", "14", "3", "(778) 888-6492");
INSERT INTO `wp_rg_lead_detail` VALUES("6477", "661", "14", "4", "elli.reilander@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6478", "661", "14", "11", "friend recently used your services");
INSERT INTO `wp_rg_lead_detail` VALUES("6479", "661", "14", "5", "grief, anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("6480", "661", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6481", "661", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6482", "661", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6483", "661", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6484", "662", "14", "1.3", "Marie");
INSERT INTO `wp_rg_lead_detail` VALUES("6485", "662", "14", "1.6", "Draper");
INSERT INTO `wp_rg_lead_detail` VALUES("6486", "662", "14", "2", "August 13, 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("6487", "662", "14", "3", "(778) 679-1428");
INSERT INTO `wp_rg_lead_detail` VALUES("6488", "662", "14", "4", "mariepdraper@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6489", "662", "14", "11", "Urgent Short Term Assessment and Treatment");
INSERT INTO `wp_rg_lead_detail` VALUES("6490", "662", "14", "5", "I am looking to receive CBT to help manage some generalized anxiety and negative thought patterns");
INSERT INTO `wp_rg_lead_detail` VALUES("6491", "662", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6492", "662", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6493", "662", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6494", "662", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6495", "663", "14", "1.3", "Marita");
INSERT INTO `wp_rg_lead_detail` VALUES("6496", "663", "14", "1.6", "Lindenbach");
INSERT INTO `wp_rg_lead_detail` VALUES("6497", "663", "14", "2", "December 5th, 1997");
INSERT INTO `wp_rg_lead_detail` VALUES("6498", "663", "14", "3", "(000) 000-0000");
INSERT INTO `wp_rg_lead_detail` VALUES("6499", "663", "14", "4", "marita.lindenbach@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6500", "663", "14", "11", "Pastor");
INSERT INTO `wp_rg_lead_detail` VALUES("6501", "663", "14", "5", "Anxiety\r\nSelf-Esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("6502", "663", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6503", "663", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6504", "663", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6505", "664", "18", "1.3", "TEST");
INSERT INTO `wp_rg_lead_detail` VALUES("6506", "664", "18", "1.6", "Test");
INSERT INTO `wp_rg_lead_detail` VALUES("6507", "664", "18", "2", "leaf.p@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6508", "664", "18", "3.1", "111 XXX Rd E");
INSERT INTO `wp_rg_lead_detail` VALUES("6509", "664", "18", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6510", "664", "18", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6511", "664", "18", "3.5", "V9A1A6");
INSERT INTO `wp_rg_lead_detail` VALUES("6512", "664", "18", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6513", "664", "18", "4", "(111) 111-1111");
INSERT INTO `wp_rg_lead_detail` VALUES("6514", "664", "18", "7", "01-01-2018");
INSERT INTO `wp_rg_lead_detail` VALUES("6515", "664", "18", "5", "Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team");
INSERT INTO `wp_rg_lead_detail` VALUES("6516", "664", "18", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6517", "665", "3", "1.3", "Heather");
INSERT INTO `wp_rg_lead_detail` VALUES("6518", "665", "3", "1.6", "Prendergast");
INSERT INTO `wp_rg_lead_detail` VALUES("6519", "665", "3", "2", "heather.hpconsult@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6520", "665", "3", "3.1", "Apt. 328");
INSERT INTO `wp_rg_lead_detail` VALUES("6521", "665", "3", "3.3", "984 McKenzie Avenue");
INSERT INTO `wp_rg_lead_detail` VALUES("6522", "665", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6523", "665", "3", "3.5", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6524", "665", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6525", "665", "3", "4", "(250) 812-3100");
INSERT INTO `wp_rg_lead_detail` VALUES("6526", "665", "3", "7", "January 18, 2018");
INSERT INTO `wp_rg_lead_detail` VALUES("6527", "665", "3", "5", "Pastoral Care Team Training Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("6528", "665", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("6529", "666", "3", "1.3", "Patti");
INSERT INTO `wp_rg_lead_detail` VALUES("6530", "666", "3", "1.6", "Dobroski");
INSERT INTO `wp_rg_lead_detail` VALUES("6531", "666", "3", "2", "pattido@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6532", "666", "3", "3.1", "4553");
INSERT INTO `wp_rg_lead_detail` VALUES("6533", "666", "3", "3.3", "Pheasantwood Terrace");
INSERT INTO `wp_rg_lead_detail` VALUES("6534", "666", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6535", "666", "3", "3.5", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6536", "666", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6537", "666", "3", "4", "(250) 216-5854");
INSERT INTO `wp_rg_lead_detail` VALUES("6538", "666", "3", "7", "January 18, 2018");
INSERT INTO `wp_rg_lead_detail` VALUES("6539", "666", "3", "5", "Pastoral Care Team Training Workshop");
INSERT INTO `wp_rg_lead_detail` VALUES("6540", "666", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("6541", "667", "14", "1.3", "Brent");
INSERT INTO `wp_rg_lead_detail` VALUES("6542", "667", "14", "1.6", "Yardley");
INSERT INTO `wp_rg_lead_detail` VALUES("6543", "667", "14", "2", "September 30, l96l");
INSERT INTO `wp_rg_lead_detail` VALUES("6544", "667", "14", "3", "(250) 888-9358");
INSERT INTO `wp_rg_lead_detail` VALUES("6545", "667", "14", "4", "Adelina.gotera@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6546", "667", "14", "11", "website searches");
INSERT INTO `wp_rg_lead_detail` VALUES("6547", "667", "14", "5", "I am writing in behalf of my partner, Brent Yardley, who is a skilled worker  at a company in Sidney, BC,. From 2006 to the present, his wages remain the same.  It was because of a  self study course of 20 books requirement  for reclassification,  which he could not do.   Brent is a slow reader, usually overwhelmed with words and gets distracted, confused when he reads books or any reading materials.  He could not comprehend what was read.  In this regard, we thought that he should be assessed professionally for a learning disability or dyslexia.  This professional assessment will pave the way for him to bring the matter to the employer to change specifically the rule for reclassification for workers like  him who have a learning disability. \r\n\r\nWe look forward to your kind help.  \r\n\r\n\r\n\r\n\r\n him for promotion due to what he can not do. to the employer his");
INSERT INTO `wp_rg_lead_detail` VALUES("6548", "667", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6549", "667", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6550", "667", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("6551", "668", "18", "1.3", "Matthew");
INSERT INTO `wp_rg_lead_detail` VALUES("6552", "668", "18", "1.6", "Brown");
INSERT INTO `wp_rg_lead_detail` VALUES("6553", "668", "18", "2", "mbrown@bc.anglican.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6554", "668", "18", "3.1", "4-753 Pemberton Road");
INSERT INTO `wp_rg_lead_detail` VALUES("6555", "668", "18", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6556", "668", "18", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6557", "668", "18", "3.5", "V8S 3R3");
INSERT INTO `wp_rg_lead_detail` VALUES("6558", "668", "18", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6559", "668", "18", "4", "(250) 588-5959");
INSERT INTO `wp_rg_lead_detail` VALUES("6560", "668", "18", "7", "Jan 18, 2018");
INSERT INTO `wp_rg_lead_detail` VALUES("6561", "668", "18", "5", "Pastoral Care Team Training: The Nuts and Bolts of Forming, Maintaining and Nurturing Your Team (January 18, 2018)\r\nYou are here:");
INSERT INTO `wp_rg_lead_detail` VALUES("6562", "668", "18", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("6563", "669", "14", "1.3", "Courtney");
INSERT INTO `wp_rg_lead_detail` VALUES("6564", "669", "14", "1.6", "Poole");
INSERT INTO `wp_rg_lead_detail` VALUES("6565", "669", "14", "2", "March 17, 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("6566", "669", "14", "3", "(250) 507-1023");
INSERT INTO `wp_rg_lead_detail` VALUES("6567", "669", "14", "4", "courtney.meadow@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6568", "669", "14", "11", "Citizens Counselling resources webpage");
INSERT INTO `wp_rg_lead_detail` VALUES("6569", "669", "14", "5", "Depression and anxiety-- acute hopelessness, fixation on mortality and purpose, feelings of inferiority, undue stress about work, inappropriate sense of guilt, lack of energy, troubled sleep. I work 8-4 M-F so evening appointments would be ideal.");
INSERT INTO `wp_rg_lead_detail` VALUES("6570", "669", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6571", "669", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6572", "669", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6573", "669", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6574", "670", "18", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("6575", "670", "18", "1.6", "Fenimore");
INSERT INTO `wp_rg_lead_detail` VALUES("6576", "670", "18", "2", "karenfenimore@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6577", "670", "18", "3.1", "2625 Avebury Ave");
INSERT INTO `wp_rg_lead_detail` VALUES("6578", "670", "18", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6579", "670", "18", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6580", "670", "18", "3.5", "V8R 3W3");
INSERT INTO `wp_rg_lead_detail` VALUES("6581", "670", "18", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6582", "670", "18", "4", "(250) 508-2498");
INSERT INTO `wp_rg_lead_detail` VALUES("6583", "670", "18", "7", "Jan 18");
INSERT INTO `wp_rg_lead_detail` VALUES("6584", "670", "18", "5", "Nuts and Bolts of Pastoral Care");
INSERT INTO `wp_rg_lead_detail` VALUES("6585", "670", "18", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6586", "671", "14", "1.3", "Lucy");
INSERT INTO `wp_rg_lead_detail` VALUES("6587", "671", "14", "1.6", "Brandt");
INSERT INTO `wp_rg_lead_detail` VALUES("6588", "671", "14", "2", "July 30 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("6589", "671", "14", "3", "(250) 812-1185");
INSERT INTO `wp_rg_lead_detail` VALUES("6590", "671", "14", "4", "Lucybrandt@outlook.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6591", "671", "14", "11", "Family");
INSERT INTO `wp_rg_lead_detail` VALUES("6592", "671", "14", "5", "Anxiety, depression, BPD");
INSERT INTO `wp_rg_lead_detail` VALUES("6593", "671", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6594", "671", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6595", "671", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6596", "672", "14", "1.3", "RACHELLE");
INSERT INTO `wp_rg_lead_detail` VALUES("6597", "672", "14", "1.6", "ANDERSON");
INSERT INTO `wp_rg_lead_detail` VALUES("6598", "672", "14", "2", "12/28/1979");
INSERT INTO `wp_rg_lead_detail` VALUES("6599", "672", "14", "3", "(250) 927-7913");
INSERT INTO `wp_rg_lead_detail` VALUES("6600", "672", "14", "4", "soulfulviolet@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6601", "672", "14", "11", "Sister");
INSERT INTO `wp_rg_lead_detail` VALUES("6602", "672", "14", "5", "I would actually like counseling for my 7 year old daughter, she has anxiety and is having problems dealing with my separation from her father and his lack of parenting.  I also have anxiety and am low income with PWD designation for rheumatoid arthritis/fibromyalgia, but I\'m more concerned about her.");
INSERT INTO `wp_rg_lead_detail` VALUES("6603", "672", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6604", "672", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6605", "672", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6606", "673", "14", "1.3", "Gary");
INSERT INTO `wp_rg_lead_detail` VALUES("6607", "673", "14", "1.6", "Lavoie");
INSERT INTO `wp_rg_lead_detail` VALUES("6608", "673", "14", "2", "Jan 03 1981");
INSERT INTO `wp_rg_lead_detail` VALUES("6609", "673", "14", "3", "(250) 619-8106");
INSERT INTO `wp_rg_lead_detail` VALUES("6610", "673", "14", "4", "jj1781@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6611", "673", "14", "11", "My kids attended there");
INSERT INTO `wp_rg_lead_detail` VALUES("6612", "673", "14", "5", "Looking for help with anger jealousy insecurity insufficiencies Within Myself and how to learn to deal with them and someone to talk to");
INSERT INTO `wp_rg_lead_detail` VALUES("6613", "673", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6614", "673", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6615", "673", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6616", "673", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6617", "674", "14", "1.3", "Gary");
INSERT INTO `wp_rg_lead_detail` VALUES("6618", "674", "14", "1.6", "Lavoie");
INSERT INTO `wp_rg_lead_detail` VALUES("6619", "674", "14", "2", "Jan 03 1981");
INSERT INTO `wp_rg_lead_detail` VALUES("6620", "674", "14", "3", "(250) 619-8106");
INSERT INTO `wp_rg_lead_detail` VALUES("6621", "674", "14", "4", "jj1781@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6622", "674", "14", "11", "My kids attended there");
INSERT INTO `wp_rg_lead_detail` VALUES("6623", "674", "14", "5", "Looking for help with anger jealousy insecurity insufficiencies Within Myself and how to learn to deal with them and someone to talk to");
INSERT INTO `wp_rg_lead_detail` VALUES("6624", "674", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6625", "674", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6626", "674", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6627", "674", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6628", "675", "14", "1.3", "Ashley");
INSERT INTO `wp_rg_lead_detail` VALUES("6629", "675", "14", "1.6", "Creed");
INSERT INTO `wp_rg_lead_detail` VALUES("6630", "675", "14", "2", "February 19,1997");
INSERT INTO `wp_rg_lead_detail` VALUES("6631", "675", "14", "3", "(250) 508-9087");
INSERT INTO `wp_rg_lead_detail` VALUES("6632", "675", "14", "4", "Crashley64@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6633", "675", "14", "11", "Website");
INSERT INTO `wp_rg_lead_detail` VALUES("6634", "675", "14", "5", "Self-esteem, self-confidence, anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("6635", "675", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6636", "675", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6637", "675", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6638", "676", "3", "1.3", "Amoraea (Amaya)");
INSERT INTO `wp_rg_lead_detail` VALUES("6639", "676", "3", "1.6", "O\'Duir");
INSERT INTO `wp_rg_lead_detail` VALUES("6640", "676", "3", "2", "awakeningsolshine@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6641", "676", "3", "3.1", "504~1235 Johnson St.");
INSERT INTO `wp_rg_lead_detail` VALUES("6642", "676", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6643", "676", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6644", "676", "3", "3.5", "V8V 3N9");
INSERT INTO `wp_rg_lead_detail` VALUES("6645", "676", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6646", "676", "3", "4", "(250) 920-8097");
INSERT INTO `wp_rg_lead_detail` VALUES("6647", "676", "3", "7", "February 8");
INSERT INTO `wp_rg_lead_detail` VALUES("6648", "676", "3", "5", "Living Through Loss 2");
INSERT INTO `wp_rg_lead_detail` VALUES("6649", "676", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6650", "677", "14", "1.3", "Kaylie");
INSERT INTO `wp_rg_lead_detail` VALUES("6651", "677", "14", "1.6", "Coates");
INSERT INTO `wp_rg_lead_detail` VALUES("6652", "677", "14", "2", "January 8th, 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("6653", "677", "14", "3", "(778) 679-4605");
INSERT INTO `wp_rg_lead_detail` VALUES("6654", "677", "14", "4", "k_coates@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6655", "677", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("6656", "677", "14", "5", "Self-esteem, depression, anxiety, relationship issues.");
INSERT INTO `wp_rg_lead_detail` VALUES("6657", "677", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6658", "677", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6659", "677", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6660", "677", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6661", "677", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6662", "678", "14", "1.3", "Emily");
INSERT INTO `wp_rg_lead_detail` VALUES("6663", "678", "14", "1.6", "Morrison");
INSERT INTO `wp_rg_lead_detail` VALUES("6664", "678", "14", "2", "February 6 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("6665", "678", "14", "3", "(778) 533-9639");
INSERT INTO `wp_rg_lead_detail` VALUES("6666", "678", "14", "4", "e_morrison3@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6667", "678", "14", "11", "Internet");
INSERT INTO `wp_rg_lead_detail` VALUES("6668", "678", "14", "5", "I have always struggled with anxiety, it presented itself as an eating disorder as a teenager and as an adult it has evolved into anxiety around self esteem, relationships and trust issues. Iâ€™ve had a very stressful year - break up, moving house, finishing university, new job, making a decision to move home to Canada after living overseas for five years. I just feel like Iâ€™m not coping with my anxiety at the moment.");
INSERT INTO `wp_rg_lead_detail` VALUES("6669", "678", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6670", "678", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6671", "678", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6672", "678", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6673", "678", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6674", "679", "14", "1.3", "Alena");
INSERT INTO `wp_rg_lead_detail` VALUES("6675", "679", "14", "1.6", "Leonova");
INSERT INTO `wp_rg_lead_detail` VALUES("6676", "679", "14", "2", "1998/08/14");
INSERT INTO `wp_rg_lead_detail` VALUES("6677", "679", "14", "3", "(403) 968-3962");
INSERT INTO `wp_rg_lead_detail` VALUES("6678", "679", "14", "4", "alenaileonova@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6679", "679", "14", "11", "UVic Health Centre");
INSERT INTO `wp_rg_lead_detail` VALUES("6680", "679", "14", "5", "I am a student at UVic and was referred to the centre by my doctor. In the past I have struggled with mainly borderline personality disorder, as well as depression and anxiety. I have found that DBT therapy has helped me enormously. I have recently been struggling with my mood and was hoping for some weekly or biweekly counselling to give me some support. Since I am a university student, I do not have much money to spend on counselling and South Island Centre seemed like the best option. My hope is that I can be connected with someone who is well-versed in DBT therapy.");
INSERT INTO `wp_rg_lead_detail` VALUES("6681", "679", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6682", "679", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6683", "679", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6684", "679", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6685", "679", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6686", "680", "14", "1.3", "Kathryn");
INSERT INTO `wp_rg_lead_detail` VALUES("6687", "680", "14", "1.6", "Robertson");
INSERT INTO `wp_rg_lead_detail` VALUES("6688", "680", "14", "2", "515 Falkland Road");
INSERT INTO `wp_rg_lead_detail` VALUES("6689", "680", "14", "3", "(778) 533-8623");
INSERT INTO `wp_rg_lead_detail` VALUES("6690", "680", "14", "4", "kathryn.gaby.moko@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6691", "680", "14", "11", "Friend who uses the service");
INSERT INTO `wp_rg_lead_detail` VALUES("6692", "680", "14", "5", "At the end of June, I returned to Canada after 16 years of working overseas in Indonesia and East Timor. My husband is from East Timor, and remains there for now as we go through the process of Immigration. I invested alot of myself in my work on the other side of the world, and now I am trying to figure out where I fit back here in Canada. This is prompting in me some issues around self-confidence, as well as motivation and sense of purpose. I am interested in counselling to help me: 1) integrate all of these changes; 2) recognise and honour my strengths and skills; 3) find more purpose; 4) help me to develop more positive coping strategies. I have two children, 14 and 12 so daytime appointments are better for me.");
INSERT INTO `wp_rg_lead_detail` VALUES("6693", "680", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6694", "680", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6695", "680", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6696", "680", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6697", "681", "14", "1.3", "Yona");
INSERT INTO `wp_rg_lead_detail` VALUES("6698", "681", "14", "1.6", "Chow");
INSERT INTO `wp_rg_lead_detail` VALUES("6699", "681", "14", "2", "January 28, 1995");
INSERT INTO `wp_rg_lead_detail` VALUES("6700", "681", "14", "3", "(403) 680-0298");
INSERT INTO `wp_rg_lead_detail` VALUES("6701", "681", "14", "4", "yona.chow@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6702", "681", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("6703", "681", "14", "5", "Feelings of depression and anxiety, loss of self, lots of sadness, hopelessness, confusion, and anger");
INSERT INTO `wp_rg_lead_detail` VALUES("6704", "681", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6705", "681", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6706", "681", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6707", "681", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6708", "682", "3", "1.3", "Maury");
INSERT INTO `wp_rg_lead_detail` VALUES("6709", "682", "3", "1.6", "Peterman");
INSERT INTO `wp_rg_lead_detail` VALUES("6710", "682", "3", "2", "laffingmo@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6711", "682", "3", "3.1", "504- 1235 Johnson St");
INSERT INTO `wp_rg_lead_detail` VALUES("6712", "682", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6713", "682", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6714", "682", "3", "3.5", "V8V3N9");
INSERT INTO `wp_rg_lead_detail` VALUES("6715", "682", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6716", "682", "3", "4", "(250) 580-5954");
INSERT INTO `wp_rg_lead_detail` VALUES("6717", "682", "3", "7", "February 8");
INSERT INTO `wp_rg_lead_detail` VALUES("6718", "682", "3", "5", "Living with loss part two");
INSERT INTO `wp_rg_lead_detail` VALUES("6719", "682", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6720", "683", "14", "1.3", "Nicholas");
INSERT INTO `wp_rg_lead_detail` VALUES("6721", "683", "14", "1.6", "Pearce");
INSERT INTO `wp_rg_lead_detail` VALUES("6722", "683", "14", "2", "February 1st, 1998");
INSERT INTO `wp_rg_lead_detail` VALUES("6723", "683", "14", "3", "(250) 216-4969");
INSERT INTO `wp_rg_lead_detail` VALUES("6724", "683", "14", "4", "njpearce98@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6725", "683", "14", "11", "My mom");
INSERT INTO `wp_rg_lead_detail` VALUES("6726", "683", "14", "5", "I have been struggling with depression and anxiety for as long as i can remember. I feel as though it stems from my childhood and parental relationships, specifically my dad (being emotionally unattached). Itâ€™s important to note that he is recently remarried. I have come to him before and tried to explain my issues yet he was unwilling to listen.");
INSERT INTO `wp_rg_lead_detail` VALUES("6727", "683", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6728", "683", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6729", "683", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6730", "683", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6731", "684", "14", "1.3", "Amanda");
INSERT INTO `wp_rg_lead_detail` VALUES("6732", "684", "14", "1.6", "Erickson");
INSERT INTO `wp_rg_lead_detail` VALUES("6733", "684", "14", "2", "August 18, 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("6734", "684", "14", "3", "(250) 812-3134");
INSERT INTO `wp_rg_lead_detail` VALUES("6735", "684", "14", "4", "aerickson@restorehealthvictoria.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6736", "684", "14", "11", "friend");
INSERT INTO `wp_rg_lead_detail` VALUES("6737", "684", "14", "5", "recently ended a long term relationship; going through a lot of self growth and reading Brene Brown\'s books which are terrific and helpful, but looking to work with someone on a bit more; concerned about communication skills in the past and into present;");
INSERT INTO `wp_rg_lead_detail` VALUES("6738", "684", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6739", "684", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6740", "684", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6741", "684", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6742", "684", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("6743", "685", "14", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("6744", "685", "14", "1.6", "Clark");
INSERT INTO `wp_rg_lead_detail` VALUES("6745", "685", "14", "2", "December 16, 29164");
INSERT INTO `wp_rg_lead_detail` VALUES("6746", "685", "14", "3", "(250) 415-3586");
INSERT INTO `wp_rg_lead_detail` VALUES("6747", "685", "14", "4", "karen.clark@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6748", "685", "14", "11", "website");
INSERT INTO `wp_rg_lead_detail` VALUES("6749", "685", "14", "5", "Significant anxiety related to financial and marital concerns.  Had to seek medication to help with sleep which I only want to do on a very short-term basis.  Seeking financial assistance with a financial advisor but am struggling to get through the days and focus and be able to sleep/eat etc.  Our home/retirement plans may be compromised due to these financial events which were based on some bad decisions on my part.");
INSERT INTO `wp_rg_lead_detail` VALUES("6750", "685", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6751", "685", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6752", "685", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("6753", "686", "14", "1.3", "Natasha");
INSERT INTO `wp_rg_lead_detail` VALUES("6754", "686", "14", "1.6", "Craig");
INSERT INTO `wp_rg_lead_detail` VALUES("6755", "686", "14", "2", "January 22 1988");
INSERT INTO `wp_rg_lead_detail` VALUES("6756", "686", "14", "3", "(778) 679-2688");
INSERT INTO `wp_rg_lead_detail` VALUES("6757", "686", "14", "4", "ncraig22@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6758", "686", "14", "11", "Victoria Mental Heath Centre");
INSERT INTO `wp_rg_lead_detail` VALUES("6759", "686", "14", "5", "Counselling for diagnosis of General Anxiety Disorder and Bipolar 2\r\n\r\nAppointment preferences - next available appointment");
INSERT INTO `wp_rg_lead_detail` VALUES("6760", "686", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6761", "686", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6762", "686", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6763", "686", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("6764", "686", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6765", "686", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6766", "687", "14", "1.3", "Eric");
INSERT INTO `wp_rg_lead_detail` VALUES("6767", "687", "14", "1.6", "Oliver");
INSERT INTO `wp_rg_lead_detail` VALUES("6768", "687", "14", "2", "Jan 27 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("6769", "687", "14", "3", "(778) 967-5205");
INSERT INTO `wp_rg_lead_detail` VALUES("6770", "687", "14", "4", "Jensaunders3@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6771", "687", "14", "11", "Girlfriend");
INSERT INTO `wp_rg_lead_detail` VALUES("6772", "687", "14", "5", "Suffer from Multiple Sclerosis and having troubles dealing with my mood. Its effecting my relationship and my girlfriend recommended I seek professional help.");
INSERT INTO `wp_rg_lead_detail` VALUES("6773", "687", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6774", "687", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6775", "687", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6776", "687", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6777", "687", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6778", "688", "14", "1.3", "Ericka");
INSERT INTO `wp_rg_lead_detail` VALUES("6779", "688", "14", "1.6", "Amador");
INSERT INTO `wp_rg_lead_detail` VALUES("6780", "688", "14", "2", "June 18, 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("6781", "688", "14", "3", "(250) 891-5771");
INSERT INTO `wp_rg_lead_detail` VALUES("6782", "688", "14", "4", "ericka.amador18@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6783", "688", "14", "11", "Island Health");
INSERT INTO `wp_rg_lead_detail` VALUES("6784", "688", "14", "5", "Anxiety, hypochondria");
INSERT INTO `wp_rg_lead_detail` VALUES("6785", "688", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6786", "688", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6787", "688", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6788", "688", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6789", "688", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6790", "689", "3", "1.3", "Gina");
INSERT INTO `wp_rg_lead_detail` VALUES("6791", "689", "3", "1.6", "McKay");
INSERT INTO `wp_rg_lead_detail` VALUES("6792", "689", "3", "2", "info@victoriapregnancy.org");
INSERT INTO `wp_rg_lead_detail` VALUES("6793", "689", "3", "3.1", "#112-826 North Park Street");
INSERT INTO `wp_rg_lead_detail` VALUES("6794", "689", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6795", "689", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6796", "689", "3", "3.5", "V8W 3B4");
INSERT INTO `wp_rg_lead_detail` VALUES("6797", "689", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6798", "689", "3", "4", "(250) 380-6883");
INSERT INTO `wp_rg_lead_detail` VALUES("6799", "689", "3", "7", "Apr 12");
INSERT INTO `wp_rg_lead_detail` VALUES("6800", "689", "3", "5", "Level 1 Basics of Grief and Loss. \r\n\r\nWould also like to include another staff member in the training. Emily Stewart (same contract info)");
INSERT INTO `wp_rg_lead_detail` VALUES("6801", "689", "3", "9.2", "debit card (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("6802", "690", "14", "1.3", "James");
INSERT INTO `wp_rg_lead_detail` VALUES("6803", "690", "14", "1.6", "Cooper");
INSERT INTO `wp_rg_lead_detail` VALUES("6804", "690", "14", "2", "August 2, 1991");
INSERT INTO `wp_rg_lead_detail` VALUES("6805", "690", "14", "3", "(403) 497-5352");
INSERT INTO `wp_rg_lead_detail` VALUES("6806", "690", "14", "4", "Susanmiller675@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6807", "690", "14", "11", "Internet search");
INSERT INTO `wp_rg_lead_detail` VALUES("6808", "690", "14", "5", "I suffer from anxiety and depression. I was a student at camosun college and was doing very well and then I started to experience severe anxiety. I dropped out for this semester because I couldnâ€™t sleep or really even leave my house.");
INSERT INTO `wp_rg_lead_detail` VALUES("6809", "690", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6810", "690", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6811", "690", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6812", "690", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6813", "690", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6814", "690", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6815", "691", "14", "1.3", "Mark");
INSERT INTO `wp_rg_lead_detail` VALUES("6816", "691", "14", "1.6", "Ednie");
INSERT INTO `wp_rg_lead_detail` VALUES("6817", "691", "14", "2", "January 19 1981");
INSERT INTO `wp_rg_lead_detail` VALUES("6818", "691", "14", "3", "(250) 896-5450");
INSERT INTO `wp_rg_lead_detail` VALUES("6819", "691", "14", "4", "mupfins@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6820", "691", "14", "11", "Friend");
INSERT INTO `wp_rg_lead_detail` VALUES("6821", "691", "14", "5", "Depression and alcohol abuse");
INSERT INTO `wp_rg_lead_detail` VALUES("6822", "691", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6823", "691", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6824", "691", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6825", "691", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6826", "691", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6827", "692", "14", "1.3", "Kristina");
INSERT INTO `wp_rg_lead_detail` VALUES("6828", "692", "14", "1.6", "Durst");
INSERT INTO `wp_rg_lead_detail` VALUES("6829", "692", "14", "2", "January 15, 1985");
INSERT INTO `wp_rg_lead_detail` VALUES("6830", "692", "14", "3", "(778) 587-0252");
INSERT INTO `wp_rg_lead_detail` VALUES("6831", "692", "14", "4", "kristinadurst@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6832", "692", "14", "11", "Doctor referral / Victoria Mental Health and Addictions");
INSERT INTO `wp_rg_lead_detail` VALUES("6833", "692", "14", "5", "Depression, anxiety, suicidal thoughts. Preferred availability for appointments is Tues or Thurs between 11am and 5pm.");
INSERT INTO `wp_rg_lead_detail` VALUES("6834", "692", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6835", "692", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6836", "692", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6837", "692", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6838", "692", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6839", "693", "3", "1.3", "MAY");
INSERT INTO `wp_rg_lead_detail` VALUES("6840", "693", "3", "1.6", "Shihadeh");
INSERT INTO `wp_rg_lead_detail` VALUES("6841", "693", "3", "2", "mayshihadeh@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6842", "693", "3", "3.1", "4402 SHORE WAY, saanich");
INSERT INTO `wp_rg_lead_detail` VALUES("6843", "693", "3", "3.3", "victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6844", "693", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("6845", "693", "3", "3.5", "v8n 3t9");
INSERT INTO `wp_rg_lead_detail` VALUES("6846", "693", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("6847", "693", "3", "4", "(778) 350-3907");
INSERT INTO `wp_rg_lead_detail` VALUES("6848", "693", "3", "7", "May 26");
INSERT INTO `wp_rg_lead_detail` VALUES("6849", "693", "3", "5", "Me & My Personality and Introduction");
INSERT INTO `wp_rg_lead_detail` VALUES("6850", "693", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("6851", "694", "14", "1.3", "Naomi");
INSERT INTO `wp_rg_lead_detail` VALUES("6852", "694", "14", "1.6", "Sturrock");
INSERT INTO `wp_rg_lead_detail` VALUES("6853", "694", "14", "2", "02/03/93");
INSERT INTO `wp_rg_lead_detail` VALUES("6854", "694", "14", "3", "(250) 589-7012");
INSERT INTO `wp_rg_lead_detail` VALUES("6855", "694", "14", "4", "naeverick@googlemail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6856", "694", "14", "11", "Reddit");
INSERT INTO `wp_rg_lead_detail` VALUES("6857", "694", "14", "5", "I feel like I constantly yoyo between feeling very anxious, depressed and hating myself and then feeling on top of the world and loving everyone. It scares me and is making it hard to have relationships with people and keep up with work.");
INSERT INTO `wp_rg_lead_detail` VALUES("6858", "694", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6859", "694", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6860", "694", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6861", "694", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6862", "694", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6863", "695", "14", "1.3", "Amal");
INSERT INTO `wp_rg_lead_detail` VALUES("6864", "695", "14", "1.6", "Khan");
INSERT INTO `wp_rg_lead_detail` VALUES("6865", "695", "14", "2", "April 9 1996");
INSERT INTO `wp_rg_lead_detail` VALUES("6866", "695", "14", "3", "(250) 444-8441");
INSERT INTO `wp_rg_lead_detail` VALUES("6867", "695", "14", "4", "amalfkhan@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6868", "695", "14", "11", "VIHA");
INSERT INTO `wp_rg_lead_detail` VALUES("6869", "695", "14", "5", "Severe depression\r\nHistory of abuse and assult");
INSERT INTO `wp_rg_lead_detail` VALUES("6870", "695", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6871", "695", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6872", "695", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6873", "695", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6874", "695", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("6875", "696", "14", "1.3", "DahKarai");
INSERT INTO `wp_rg_lead_detail` VALUES("6876", "696", "14", "1.6", "Rempel-Moe");
INSERT INTO `wp_rg_lead_detail` VALUES("6877", "696", "14", "2", "11/08/2009");
INSERT INTO `wp_rg_lead_detail` VALUES("6878", "696", "14", "3", "(403) 336-3325");
INSERT INTO `wp_rg_lead_detail` VALUES("6879", "696", "14", "4", "jessikahmoe@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6880", "696", "14", "11", "google search");
INSERT INTO `wp_rg_lead_detail` VALUES("6881", "696", "14", "5", "My name is Jessikah Moe, and I am looking for counseling on behalf of my son. My son, DahKarai, is having many issues at school this last year in regards to his anger outbursts, and it is now to the point where his teachers feel unsafe bringing him on field trips due to his unpredictable behavior. We just moved here from Calgary, so my son needs some more support in dealing with his anxiety, depression, and anger. He used to see a counselor back in Calgary, and I am a counselor as well so he is used to the process. My son has witnessed and experienced many forms of abuse and domestic violence in his life time, and since moving here it definitely appears that his issues relating to that trauma have gotten significantly worse. I am a single mother so I would appreciate any sliding scale opportunities your agency may have.");
INSERT INTO `wp_rg_lead_detail` VALUES("6882", "696", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6883", "696", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6884", "696", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6885", "696", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6886", "696", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6887", "696", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6888", "696", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("6889", "697", "14", "1.3", "Ashley");
INSERT INTO `wp_rg_lead_detail` VALUES("6890", "697", "14", "1.6", "Rolland");
INSERT INTO `wp_rg_lead_detail` VALUES("6891", "697", "14", "2", "979 Wilmer St.");
INSERT INTO `wp_rg_lead_detail` VALUES("6892", "697", "14", "3", "(778) 938-8607");
INSERT INTO `wp_rg_lead_detail` VALUES("6893", "697", "14", "4", "ashleyrolland17@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6894", "697", "14", "11", "Psychiatrist");
INSERT INTO `wp_rg_lead_detail` VALUES("6895", "697", "14", "5", "Mood disorder, Depression and Anxiety management");
INSERT INTO `wp_rg_lead_detail` VALUES("6896", "697", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6897", "697", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6898", "697", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6899", "697", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6900", "698", "14", "1.3", "Roger");
INSERT INTO `wp_rg_lead_detail` VALUES("6901", "698", "14", "1.6", "Mennell");
INSERT INTO `wp_rg_lead_detail` VALUES("6902", "698", "14", "2", "November 24, 1986");
INSERT INTO `wp_rg_lead_detail` VALUES("6903", "698", "14", "3", "(250) 885-0459");
INSERT INTO `wp_rg_lead_detail` VALUES("6904", "698", "14", "4", "laychusa@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6905", "698", "14", "11", "Reference from another counselling centre (citizen counselling)");
INSERT INTO `wp_rg_lead_detail` VALUES("6906", "698", "14", "5", "I am not entirely clear on the exact concerns but understand that I am in a state of self work and am coming across some barriers that I can\'t seem to find a solution to.  I am hoping for assistance in working through the things I can\'t seem to see around and developing new perspective and tools to aid in further growth.\r\nI can say luckily, I am not dealing with any severe trauma or depression, usually fairly even keeled.");
INSERT INTO `wp_rg_lead_detail` VALUES("6907", "698", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6908", "698", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6909", "698", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6910", "698", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6911", "698", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("6912", "699", "14", "1.3", "Rebecca");
INSERT INTO `wp_rg_lead_detail` VALUES("6913", "699", "14", "1.6", "Wall");
INSERT INTO `wp_rg_lead_detail` VALUES("6914", "699", "14", "2", "January 4, 1985");
INSERT INTO `wp_rg_lead_detail` VALUES("6915", "699", "14", "3", "(250) 686-6827");
INSERT INTO `wp_rg_lead_detail` VALUES("6916", "699", "14", "4", "rwall@csta-bc.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6917", "699", "14", "11", "Greg Beattie - RMSE Coordinator, Roman Catholic Diocese of Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("6918", "699", "14", "5", "I am looking to find a counsellor to deal with anxiety/depression following a series of work place bullying issues over a 4 year period. Mr. Beattie was the chief investigator and has recommended I contact Amber Eves to inquire if she is current taking new clients. I would like to find out if there is possibility for an initial interview to determine if your program would be a good fit for the issue I am working on.  i have strong background in Psychology as well as a M.Ed in Special Education which could be a help with counselling but also a challenge.  I am looking for someone who can use CBT approaches with me and explore what is really going to help. \r\n\r\nThe Diocese of Victoria will be paying for the first 10 sessions of my therapy.");
INSERT INTO `wp_rg_lead_detail` VALUES("6919", "699", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6920", "699", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6921", "699", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6922", "699", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6923", "699", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("6924", "699", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("6925", "700", "14", "1.3", "Emily");
INSERT INTO `wp_rg_lead_detail` VALUES("6926", "700", "14", "1.6", "Trenchard");
INSERT INTO `wp_rg_lead_detail` VALUES("6927", "700", "14", "2", "June 23rd, 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("6928", "700", "14", "3", "(240) 386-6526");
INSERT INTO `wp_rg_lead_detail` VALUES("6929", "700", "14", "4", "eltrenchard@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6930", "700", "14", "11", "UVIC Health Services");
INSERT INTO `wp_rg_lead_detail` VALUES("6931", "700", "14", "5", "Depression, Severe Anxiety Disorder");
INSERT INTO `wp_rg_lead_detail` VALUES("6932", "700", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6933", "700", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6934", "700", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6935", "700", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6936", "700", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6937", "701", "14", "1.3", "Bryony");
INSERT INTO `wp_rg_lead_detail` VALUES("6938", "701", "14", "1.6", "Anderson");
INSERT INTO `wp_rg_lead_detail` VALUES("6939", "701", "14", "2", "07/07/1990");
INSERT INTO `wp_rg_lead_detail` VALUES("6940", "701", "14", "3", "(778) 350-6406");
INSERT INTO `wp_rg_lead_detail` VALUES("6941", "701", "14", "4", "bryony.a.anderson@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6942", "701", "14", "11", "Researching the internet for counselling options");
INSERT INTO `wp_rg_lead_detail` VALUES("6943", "701", "14", "5", "A few things. \r\n1. Grief. Someone I really loved died before Christmas at the age of 46, he was an alcoholic. I keep thinking it will get better on its own, but I\'m still angry, and it\'s affecting my life and my relationship\r\n2. Since this event, the pre-existing anxiety that I had gotten really good at dealing with has gotten a lot worse. \r\n\r\nPreferences: I prefer to speak with women, who are older than me, otherwise I struggle to open up.");
INSERT INTO `wp_rg_lead_detail` VALUES("6944", "701", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6945", "701", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6946", "701", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6947", "701", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6948", "701", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6949", "701", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6950", "702", "14", "1.3", "Leona");
INSERT INTO `wp_rg_lead_detail` VALUES("6951", "702", "14", "1.6", "hanson");
INSERT INTO `wp_rg_lead_detail` VALUES("6952", "702", "14", "2", "October 24, 1954");
INSERT INTO `wp_rg_lead_detail` VALUES("6953", "702", "14", "3", "(250) 360-9075");
INSERT INTO `wp_rg_lead_detail` VALUES("6954", "702", "14", "4", "lhanson1024@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6955", "702", "14", "11", "I have seen this name on notice board");
INSERT INTO `wp_rg_lead_detail` VALUES("6956", "702", "14", "5", "I am very frustrated with myself as I have been trying to loose weight and instead I gain weight, lose a bit and gain.  I have tried different methods and about 1 year ago, started to loose and lost about 30 pounds.  I did have an accident and hurt hip and gained it back.  I am interested in CBT, I have seen books at Chapters and there are workbooks, I would need help to do this. I live alone which does not mean it makes it easier. I also do not have a job and have trouble finishing things I start.\r\n\r\nIf there is CBT counselling available, I would like to change the inside.  I do pray and have a religion, but my weight is so bad, I do not want to try new things.  I am still having my hip heal.\r\n\r\nPlease call me in the mornings when you are ready to set up an appointment.");
INSERT INTO `wp_rg_lead_detail` VALUES("6957", "702", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6958", "702", "14", "12.2", "I would participate in a support group");
INSERT INTO `wp_rg_lead_detail` VALUES("6959", "702", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6960", "702", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6961", "702", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6962", "702", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6963", "702", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6964", "702", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("6965", "703", "14", "1.3", "Tonya");
INSERT INTO `wp_rg_lead_detail` VALUES("6966", "703", "14", "1.6", "Tudway-cains");
INSERT INTO `wp_rg_lead_detail` VALUES("6967", "703", "14", "2", "June 8, 1974");
INSERT INTO `wp_rg_lead_detail` VALUES("6968", "703", "14", "3", "(250) 208-9442");
INSERT INTO `wp_rg_lead_detail` VALUES("6969", "703", "14", "4", "Geminitonya@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("6970", "703", "14", "11", "1up");
INSERT INTO `wp_rg_lead_detail` VALUES("6971", "703", "14", "5", "My daughter is 17. Has really taken a very quick turn. Full of anxiety, trouble sleeping, eating. Started smoking, pot, drinking. Has had some trama - that she has not yet worked through.");
INSERT INTO `wp_rg_lead_detail` VALUES("6972", "703", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6973", "703", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6974", "703", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6975", "703", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6976", "703", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("6977", "704", "14", "1.3", "Bradford");
INSERT INTO `wp_rg_lead_detail` VALUES("6978", "704", "14", "1.6", "Sinclair");
INSERT INTO `wp_rg_lead_detail` VALUES("6979", "704", "14", "2", "08/18/94");
INSERT INTO `wp_rg_lead_detail` VALUES("6980", "704", "14", "3", "(250) 580-0794");
INSERT INTO `wp_rg_lead_detail` VALUES("6981", "704", "14", "4", "bford.sinclair@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6982", "704", "14", "11", "Calvin Black");
INSERT INTO `wp_rg_lead_detail` VALUES("6983", "704", "14", "5", "I have had some issues with depression, lack of confidence, and attachment.");
INSERT INTO `wp_rg_lead_detail` VALUES("6984", "704", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6985", "704", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6986", "704", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("6987", "704", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("6988", "704", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("6989", "705", "14", "1.3", "Dan");
INSERT INTO `wp_rg_lead_detail` VALUES("6990", "705", "14", "1.6", "Stark");
INSERT INTO `wp_rg_lead_detail` VALUES("6991", "705", "14", "2", "Dec. 31/19");
INSERT INTO `wp_rg_lead_detail` VALUES("6992", "705", "14", "3", "(250) 386-4210");
INSERT INTO `wp_rg_lead_detail` VALUES("6993", "705", "14", "4", "djs@uniserve.com");
INSERT INTO `wp_rg_lead_detail` VALUES("6994", "705", "14", "11", "From my Doctor");
INSERT INTO `wp_rg_lead_detail` VALUES("6995", "705", "14", "5", "I lost my job at the end of last year and it\'s very stressful and I am depressed.\r\nI need some feedback from a counselor to help me with my depression and other emotional issues.\r\nAs well I would like to get some feedback on how I can address my problem.");
INSERT INTO `wp_rg_lead_detail` VALUES("6996", "705", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("6997", "705", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6998", "705", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("6999", "705", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7000", "705", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7001", "705", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("7002", "706", "14", "1.3", "Amoraea");
INSERT INTO `wp_rg_lead_detail` VALUES("7003", "706", "14", "1.6", "O\'Duir");
INSERT INTO `wp_rg_lead_detail` VALUES("7004", "706", "14", "2", "June 20, 1972");
INSERT INTO `wp_rg_lead_detail` VALUES("7005", "706", "14", "3", "(250) 920-8097");
INSERT INTO `wp_rg_lead_detail` VALUES("7006", "706", "14", "4", "awakeningsolshine@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7007", "706", "14", "11", "Taking a course with Margaret Anderson");
INSERT INTO `wp_rg_lead_detail` VALUES("7008", "706", "14", "5", "*processing family of origin dysfunctionality \r\n*recently discovered parents â€˜functional alcholismâ€™ has amplified in retirement \r\n*primary relationship strain\r\n*professional challenges \r\n\r\n(Please, I would prefer a counsellor other than my current mentor, Margaret Anderson, thank you)");
INSERT INTO `wp_rg_lead_detail` VALUES("7009", "706", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7010", "706", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7011", "706", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7012", "706", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("7013", "707", "3", "1.3", "Katy");
INSERT INTO `wp_rg_lead_detail` VALUES("7014", "707", "3", "1.6", "Earl");
INSERT INTO `wp_rg_lead_detail` VALUES("7015", "707", "3", "2", "KATY.EARL@GMAIL.COM");
INSERT INTO `wp_rg_lead_detail` VALUES("7016", "707", "3", "3.1", "862 Ralph St.");
INSERT INTO `wp_rg_lead_detail` VALUES("7017", "707", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("7018", "707", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("7019", "707", "3", "3.5", "V8X 3E2");
INSERT INTO `wp_rg_lead_detail` VALUES("7020", "707", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("7021", "707", "3", "4", "(250) 216-0044");
INSERT INTO `wp_rg_lead_detail` VALUES("7022", "707", "3", "7", "March 28");
INSERT INTO `wp_rg_lead_detail` VALUES("7023", "707", "3", "5", "Positive Parenting");
INSERT INTO `wp_rg_lead_detail` VALUES("7024", "707", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("7025", "708", "14", "1.3", "Albina");
INSERT INTO `wp_rg_lead_detail` VALUES("7026", "708", "14", "1.6", "Vaughan");
INSERT INTO `wp_rg_lead_detail` VALUES("7027", "708", "14", "2", "921 SHIRLEY RD");
INSERT INTO `wp_rg_lead_detail` VALUES("7028", "708", "14", "3", "(250) 507-6987");
INSERT INTO `wp_rg_lead_detail` VALUES("7029", "708", "14", "4", "vons@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("7030", "708", "14", "11", "BC Health Guide");
INSERT INTO `wp_rg_lead_detail` VALUES("7031", "708", "14", "5", "Marital difficulties. My husband has mood swings, is including me less in decision-making.....he displays behaviors that make it extremely challenging to get along with him.\r\nWe\'ve been to marriage counseling in the past. I\'ve spoken privately to his former GP re his inappropriate behaviors.");
INSERT INTO `wp_rg_lead_detail` VALUES("7032", "708", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7033", "708", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7034", "708", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7035", "708", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7036", "708", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("7037", "708", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("7038", "709", "14", "1.3", "Jessica");
INSERT INTO `wp_rg_lead_detail` VALUES("7039", "709", "14", "1.6", "Nenson");
INSERT INTO `wp_rg_lead_detail` VALUES("7040", "709", "14", "2", "August 20th 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("7041", "709", "14", "3", "(306) 450-5059");
INSERT INTO `wp_rg_lead_detail` VALUES("7042", "709", "14", "4", "Jess.nenson@gnail.ckm");
INSERT INTO `wp_rg_lead_detail` VALUES("7043", "709", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("7044", "709", "14", "5", "Co dependency and low self esteem");
INSERT INTO `wp_rg_lead_detail` VALUES("7045", "709", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7046", "709", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7047", "709", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7048", "709", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("7049", "710", "14", "1.3", "Shelley");
INSERT INTO `wp_rg_lead_detail` VALUES("7050", "710", "14", "1.6", "Cooper");
INSERT INTO `wp_rg_lead_detail` VALUES("7051", "710", "14", "2", "05/13/59");
INSERT INTO `wp_rg_lead_detail` VALUES("7052", "710", "14", "3", "(250) 474-0880");
INSERT INTO `wp_rg_lead_detail` VALUES("7053", "710", "14", "4", "sccooper@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("7054", "710", "14", "11", "Google search");
INSERT INTO `wp_rg_lead_detail` VALUES("7055", "710", "14", "5", "Depression / anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("7056", "710", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7057", "710", "14", "12.2", "I would participate in a support group");
INSERT INTO `wp_rg_lead_detail` VALUES("7058", "710", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7059", "710", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7060", "710", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("7061", "710", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("7062", "711", "14", "1.3", "Beatrice");
INSERT INTO `wp_rg_lead_detail` VALUES("7063", "711", "14", "1.6", "Toner");
INSERT INTO `wp_rg_lead_detail` VALUES("7064", "711", "14", "2", "June 14, 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("7065", "711", "14", "3", "(778) 677-4099");
INSERT INTO `wp_rg_lead_detail` VALUES("7066", "711", "14", "4", "toner.beatrice@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7067", "711", "14", "11", "search engine - looking for sliding scale and affordable counselling in BC");
INSERT INTO `wp_rg_lead_detail` VALUES("7068", "711", "14", "5", "-strategies for coping with ADHD/time management/feeling \"spread too thin\"\r\n-inter-personal relationships/habits in friendships");
INSERT INTO `wp_rg_lead_detail` VALUES("7069", "711", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7070", "711", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7071", "711", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7072", "711", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7073", "711", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7074", "711", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7075", "711", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("7076", "712", "3", "1.3", "Jen");
INSERT INTO `wp_rg_lead_detail` VALUES("7077", "712", "3", "1.6", "Rosang");
INSERT INTO `wp_rg_lead_detail` VALUES("7078", "712", "3", "2", "Jenrosang@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7079", "712", "3", "3.1", "3203 island view rd");
INSERT INTO `wp_rg_lead_detail` VALUES("7080", "712", "3", "3.3", "Saanichton");
INSERT INTO `wp_rg_lead_detail` VALUES("7081", "712", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("7082", "712", "3", "3.5", "V8m1w3");
INSERT INTO `wp_rg_lead_detail` VALUES("7083", "712", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("7084", "712", "3", "4", "(250) 882-1595");
INSERT INTO `wp_rg_lead_detail` VALUES("7085", "712", "3", "7", "April 27th & 28th");
INSERT INTO `wp_rg_lead_detail` VALUES("7086", "712", "3", "5", "Intro to family systems");
INSERT INTO `wp_rg_lead_detail` VALUES("7087", "712", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("7088", "713", "14", "1.3", "Rebecca");
INSERT INTO `wp_rg_lead_detail` VALUES("7089", "713", "14", "1.6", "Carlos");
INSERT INTO `wp_rg_lead_detail` VALUES("7090", "713", "14", "2", "April 7th, 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("7091", "713", "14", "3", "(250) 589-0407");
INSERT INTO `wp_rg_lead_detail` VALUES("7092", "713", "14", "4", "rebecca.carlos92@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7093", "713", "14", "11", "Recommendation from Citizens Councilling. Said that you might have a shorter waitlist.");
INSERT INTO `wp_rg_lead_detail` VALUES("7094", "713", "14", "5", "Present concerns are realtionship and sexual issues. I feel quite powerless and unhappy in my life. I have never seen a councillor on a regualar bases and i think its time, because i also have unresolved childhood trama.");
INSERT INTO `wp_rg_lead_detail` VALUES("7095", "713", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7096", "713", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7097", "713", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7098", "713", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("7099", "713", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7100", "713", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("7101", "714", "14", "1.3", "Martin");
INSERT INTO `wp_rg_lead_detail` VALUES("7102", "714", "14", "1.6", "Drinnan");
INSERT INTO `wp_rg_lead_detail` VALUES("7103", "714", "14", "2", "14 September 1993");
INSERT INTO `wp_rg_lead_detail` VALUES("7104", "714", "14", "3", "(250) 893-9213");
INSERT INTO `wp_rg_lead_detail` VALUES("7105", "714", "14", "4", "mrdrinnan@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7106", "714", "14", "11", "Googling counselling places");
INSERT INTO `wp_rg_lead_detail` VALUES("7107", "714", "14", "5", "My girlfriend and I are looking for relationship counselling. She has not been feeling respected, as for a while I was hoping that she would change. As a result, she has developed some confidence issues.\r\nI am looking for techniques and advice to help me respect our differences more.\r\nShe is looking for advice on how to respect herself more and not be as sensitive to disrespect.");
INSERT INTO `wp_rg_lead_detail` VALUES("7108", "714", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7109", "714", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7110", "714", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7111", "714", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7112", "714", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("7113", "714", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("7114", "715", "14", "1.3", "Tahani");
INSERT INTO `wp_rg_lead_detail` VALUES("7115", "715", "14", "1.6", "Peters");
INSERT INTO `wp_rg_lead_detail` VALUES("7116", "715", "14", "2", "June 2nd 1995");
INSERT INTO `wp_rg_lead_detail` VALUES("7117", "715", "14", "3", "(250) 537-7002");
INSERT INTO `wp_rg_lead_detail` VALUES("7118", "715", "14", "4", "tahanip@hotmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7119", "715", "14", "11", "Google Search");
INSERT INTO `wp_rg_lead_detail` VALUES("7120", "715", "14", "5", "Anxiety\r\nSelf-deprecating thought cycle\r\nSome signs of depression\r\nChildhood trauma");
INSERT INTO `wp_rg_lead_detail` VALUES("7121", "715", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7122", "715", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7123", "715", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("7124", "715", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7125", "715", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("7126", "716", "14", "1.3", "Cassandra");
INSERT INTO `wp_rg_lead_detail` VALUES("7127", "716", "14", "1.6", "Sinclair");
INSERT INTO `wp_rg_lead_detail` VALUES("7128", "716", "14", "2", "July 23, 1992");
INSERT INTO `wp_rg_lead_detail` VALUES("7129", "716", "14", "3", "(250) 220-2032");
INSERT INTO `wp_rg_lead_detail` VALUES("7130", "716", "14", "4", "cassy.sinclair@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7131", "716", "14", "11", "Calvin Black");
INSERT INTO `wp_rg_lead_detail` VALUES("7132", "716", "14", "5", "Depression, anxiety, traumatic past, emotional swings");
INSERT INTO `wp_rg_lead_detail` VALUES("7133", "716", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7134", "716", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7135", "716", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7136", "716", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7137", "716", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7138", "716", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("7139", "717", "3", "1.3", "Chris");
INSERT INTO `wp_rg_lead_detail` VALUES("7140", "717", "3", "1.6", "Harbord");
INSERT INTO `wp_rg_lead_detail` VALUES("7141", "717", "3", "2", "chrisharbord@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("7142", "717", "3", "3.1", "5174 Agate Lane");
INSERT INTO `wp_rg_lead_detail` VALUES("7143", "717", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("7144", "717", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("7145", "717", "3", "3.5", "V8Y 2L9");
INSERT INTO `wp_rg_lead_detail` VALUES("7146", "717", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("7147", "717", "3", "4", "(250) 480-5920");
INSERT INTO `wp_rg_lead_detail` VALUES("7148", "717", "3", "7", "March 29");
INSERT INTO `wp_rg_lead_detail` VALUES("7149", "717", "3", "5", "Group Support for Stress and Anxiety");
INSERT INTO `wp_rg_lead_detail` VALUES("7150", "717", "3", "9.3", "cash (in person)");
INSERT INTO `wp_rg_lead_detail` VALUES("7151", "718", "14", "1.3", "Courtney");
INSERT INTO `wp_rg_lead_detail` VALUES("7152", "718", "14", "1.6", "Norris-Jones");
INSERT INTO `wp_rg_lead_detail` VALUES("7153", "718", "14", "2", "1979Nov22");
INSERT INTO `wp_rg_lead_detail` VALUES("7154", "718", "14", "3", "(604) 928-9573");
INSERT INTO `wp_rg_lead_detail` VALUES("7155", "718", "14", "4", "Cmnorrisjones@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7156", "718", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("7157", "718", "14", "5", "Chronic depression\r\nLife stress (relationship, financial)");
INSERT INTO `wp_rg_lead_detail` VALUES("7158", "718", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7159", "718", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7160", "718", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7161", "718", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("7162", "719", "14", "1.3", "Elyse");
INSERT INTO `wp_rg_lead_detail` VALUES("7163", "719", "14", "1.6", "Kornhauser");
INSERT INTO `wp_rg_lead_detail` VALUES("7164", "719", "14", "2", "January 17, 1990");
INSERT INTO `wp_rg_lead_detail` VALUES("7165", "719", "14", "3", "(867) 335-0874");
INSERT INTO `wp_rg_lead_detail` VALUES("7166", "719", "14", "4", "elyse.kornhauser@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7167", "719", "14", "11", "bc211");
INSERT INTO `wp_rg_lead_detail` VALUES("7168", "719", "14", "5", "Hi there. I\'m looking to find a counsellor or psychologist that would be able to provide counselling via Skype. My boyfriend is currently living in Brazil (he moved there 7 months ago), and is feeling lonely, helpless and depressed. He has mentioned considering suicide.\r\nHe went to see a counsellor in Brazil, but he finds the cultural differences to be a huge barrier. He feels that they cannot understand him nor help him there.\r\n\r\nIs this a service that you would be able to provide?");
INSERT INTO `wp_rg_lead_detail` VALUES("7169", "719", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7170", "719", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7171", "719", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7172", "719", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7173", "719", "14", "9.2", "$50-80");
INSERT INTO `wp_rg_lead_detail` VALUES("7174", "720", "14", "1.3", "Pendragon");
INSERT INTO `wp_rg_lead_detail` VALUES("7175", "720", "14", "1.6", "Smith");
INSERT INTO `wp_rg_lead_detail` VALUES("7176", "720", "14", "2", "May 3/1976");
INSERT INTO `wp_rg_lead_detail` VALUES("7177", "720", "14", "3", "(250) 709-0233");
INSERT INTO `wp_rg_lead_detail` VALUES("7178", "720", "14", "4", "pendragonloki69@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7179", "720", "14", "11", "Mental health services");
INSERT INTO `wp_rg_lead_detail` VALUES("7180", "720", "14", "5", "I have past truma from a very abusive mother growing up and have little self worth because of it.  Is affecting my relationship with my partner and I\'m very overwhelmed.");
INSERT INTO `wp_rg_lead_detail` VALUES("7181", "720", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7182", "720", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7183", "720", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7184", "720", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7185", "720", "14", "9.3", "$50");
INSERT INTO `wp_rg_lead_detail` VALUES("7186", "721", "14", "1.3", "Katey");
INSERT INTO `wp_rg_lead_detail` VALUES("7187", "721", "14", "1.6", "King");
INSERT INTO `wp_rg_lead_detail` VALUES("7188", "721", "14", "2", "April 30, 1996");
INSERT INTO `wp_rg_lead_detail` VALUES("7189", "721", "14", "3", "(403) 870-2279");
INSERT INTO `wp_rg_lead_detail` VALUES("7190", "721", "14", "4", "kateyk@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("7191", "721", "14", "11", "Boyfriend goes to counselling here");
INSERT INTO `wp_rg_lead_detail` VALUES("7192", "721", "14", "5", "Mild depression and anxiety which have recently seemed to increase; recent significant life events which are still being worked through.");
INSERT INTO `wp_rg_lead_detail` VALUES("7193", "721", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7194", "721", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7195", "721", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7196", "721", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7197", "721", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7198", "721", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7199", "721", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("7200", "722", "14", "1.3", "Douglas");
INSERT INTO `wp_rg_lead_detail` VALUES("7201", "722", "14", "1.6", "Kropp");
INSERT INTO `wp_rg_lead_detail` VALUES("7202", "722", "14", "2", "1990/12/02");
INSERT INTO `wp_rg_lead_detail` VALUES("7203", "722", "14", "3", "(250) 208-0790");
INSERT INTO `wp_rg_lead_detail` VALUES("7204", "722", "14", "4", "Dougjkropp@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7205", "722", "14", "11", "Sister");
INSERT INTO `wp_rg_lead_detail` VALUES("7206", "722", "14", "5", "Depression");
INSERT INTO `wp_rg_lead_detail` VALUES("7207", "722", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7208", "722", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7209", "722", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7210", "722", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7211", "722", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7212", "722", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("7213", "723", "14", "1.3", "Karen");
INSERT INTO `wp_rg_lead_detail` VALUES("7214", "723", "14", "1.6", "Barkhouse");
INSERT INTO `wp_rg_lead_detail` VALUES("7215", "723", "14", "2", "february 3,1964");
INSERT INTO `wp_rg_lead_detail` VALUES("7216", "723", "14", "3", "(250) 744-2344");
INSERT INTO `wp_rg_lead_detail` VALUES("7217", "723", "14", "4", "k.barkhouse@shaw.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("7218", "723", "14", "11", "work mate");
INSERT INTO `wp_rg_lead_detail` VALUES("7219", "723", "14", "5", "depressed, struggling to trust amd find myself.");
INSERT INTO `wp_rg_lead_detail` VALUES("7220", "723", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7221", "723", "14", "12.3", "I would consider being in a support group along with receiving individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7222", "723", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7223", "723", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("7224", "723", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("7225", "724", "3", "1.3", "Sarah");
INSERT INTO `wp_rg_lead_detail` VALUES("7226", "724", "3", "1.6", "Daviau");
INSERT INTO `wp_rg_lead_detail` VALUES("7227", "724", "3", "2", "pieceofcakecommunications@yahoo.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("7228", "724", "3", "3.1", "3542 Desmond Drive");
INSERT INTO `wp_rg_lead_detail` VALUES("7229", "724", "3", "3.3", "Victoria");
INSERT INTO `wp_rg_lead_detail` VALUES("7230", "724", "3", "3.4", "British Columbia");
INSERT INTO `wp_rg_lead_detail` VALUES("7231", "724", "3", "3.5", "V9C 3T1");
INSERT INTO `wp_rg_lead_detail` VALUES("7232", "724", "3", "3.6", "Canada");
INSERT INTO `wp_rg_lead_detail` VALUES("7233", "724", "3", "4", "(250) 220-2036");
INSERT INTO `wp_rg_lead_detail` VALUES("7234", "724", "3", "7", "April 27, 2018");
INSERT INTO `wp_rg_lead_detail` VALUES("7235", "724", "3", "5", "Me and My Family\r\n\r\nRequest:  Can I find out what I could expect to learn in this course?  I can\'t seem to see a poster.  Thanks.");
INSERT INTO `wp_rg_lead_detail` VALUES("7236", "724", "3", "9.1", "credit card (surcharge applies; transactions can be processed over the phone)");
INSERT INTO `wp_rg_lead_detail` VALUES("7237", "725", "14", "1.3", "Aleksandra");
INSERT INTO `wp_rg_lead_detail` VALUES("7238", "725", "14", "1.6", "Konieczna");
INSERT INTO `wp_rg_lead_detail` VALUES("7239", "725", "14", "2", "12/06/1997");
INSERT INTO `wp_rg_lead_detail` VALUES("7240", "725", "14", "3", "(250) 896-9610");
INSERT INTO `wp_rg_lead_detail` VALUES("7241", "725", "14", "4", "olenka.kon@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7242", "725", "14", "11", "The UVic counselling resources page");
INSERT INTO `wp_rg_lead_detail` VALUES("7243", "725", "14", "5", "I\'ve struggled with depression and anxiety for quite some years now. I\'ve had a troubling childhood, and I\'ve worked through some things when I was a bit younger, but I still struggle with issues as an adult. I can\'t take care of myself properly, I get upset really easily, I overthink things constantly sometimes to the point of panicking, I feel sad and unhappy most of the time, and often withdraw from the people and tasks around me. I don\'t have much support in my life, and I\'m looking for some advice and help with healing and getting through this.");
INSERT INTO `wp_rg_lead_detail` VALUES("7244", "725", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7245", "725", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7246", "725", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7247", "725", "14", "7", "http://localhost:8888/TestSICPage/wordpress/counselling/affordable-counselling/");
INSERT INTO `wp_rg_lead_detail` VALUES("7248", "725", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7249", "725", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("7250", "726", "14", "1.3", "Gloria");
INSERT INTO `wp_rg_lead_detail` VALUES("7251", "726", "14", "1.6", "Romain");
INSERT INTO `wp_rg_lead_detail` VALUES("7252", "726", "14", "2", "July 29th, 1995");
INSERT INTO `wp_rg_lead_detail` VALUES("7253", "726", "14", "3", "(250) 634-4004");
INSERT INTO `wp_rg_lead_detail` VALUES("7254", "726", "14", "4", "gloriaromain@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7255", "726", "14", "11", "Google");
INSERT INTO `wp_rg_lead_detail` VALUES("7256", "726", "14", "5", "Anxiety, panic attacks");
INSERT INTO `wp_rg_lead_detail` VALUES("7257", "726", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7258", "726", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7259", "726", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7260", "726", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7261", "726", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("7262", "727", "14", "1.3", "Kelsey");
INSERT INTO `wp_rg_lead_detail` VALUES("7263", "727", "14", "1.6", "Green");
INSERT INTO `wp_rg_lead_detail` VALUES("7264", "727", "14", "2", "March 14 1994");
INSERT INTO `wp_rg_lead_detail` VALUES("7265", "727", "14", "3", "(778) 533-8478");
INSERT INTO `wp_rg_lead_detail` VALUES("7266", "727", "14", "4", "Kelsey_green@live.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("7267", "727", "14", "11", "Online");
INSERT INTO `wp_rg_lead_detail` VALUES("7268", "727", "14", "5", "Looking for couple counselling with my boyfriend of 3 years (we also have a 2 year old)");
INSERT INTO `wp_rg_lead_detail` VALUES("7269", "727", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7270", "727", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7271", "727", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7272", "727", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7273", "727", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7274", "727", "14", "9.5", "$30");
INSERT INTO `wp_rg_lead_detail` VALUES("7275", "727", "14", "9.6", "$20");
INSERT INTO `wp_rg_lead_detail` VALUES("7276", "727", "14", "9.7", "$10");
INSERT INTO `wp_rg_lead_detail` VALUES("7277", "728", "14", "1.3", "David");
INSERT INTO `wp_rg_lead_detail` VALUES("7278", "728", "14", "1.6", "Van Dusen");
INSERT INTO `wp_rg_lead_detail` VALUES("7279", "728", "14", "2", "01/01/1901");
INSERT INTO `wp_rg_lead_detail` VALUES("7280", "728", "14", "3", "(250) 896-2704");
INSERT INTO `wp_rg_lead_detail` VALUES("7281", "728", "14", "4", "dave@urbanweb.net");
INSERT INTO `wp_rg_lead_detail` VALUES("7282", "728", "14", "11", "internet");
INSERT INTO `wp_rg_lead_detail` VALUES("7283", "728", "14", "5", "Internet Quirks");
INSERT INTO `wp_rg_lead_detail` VALUES("7284", "728", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7285", "728", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7286", "728", "14", "8.1", "Yes");
INSERT INTO `wp_rg_lead_detail` VALUES("7287", "728", "14", "9.1", "$80-120");
INSERT INTO `wp_rg_lead_detail` VALUES("7288", "729", "14", "1.3", "Gabrielle");
INSERT INTO `wp_rg_lead_detail` VALUES("7289", "729", "14", "1.6", "Canuel");
INSERT INTO `wp_rg_lead_detail` VALUES("7290", "729", "14", "2", "June 23 1999");
INSERT INTO `wp_rg_lead_detail` VALUES("7291", "729", "14", "3", "(778) 870-9821");
INSERT INTO `wp_rg_lead_detail` VALUES("7292", "729", "14", "4", "skata@hotmail.ca");
INSERT INTO `wp_rg_lead_detail` VALUES("7293", "729", "14", "11", "Internet");
INSERT INTO `wp_rg_lead_detail` VALUES("7294", "729", "14", "5", "Social anxiety, depression, issues with my mother (we don\'t have a good relationship).");
INSERT INTO `wp_rg_lead_detail` VALUES("7295", "729", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7296", "729", "14", "6.1", "M-F, 9-5pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7297", "729", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7298", "729", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7299", "729", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7300", "729", "14", "9.4", "$40");
INSERT INTO `wp_rg_lead_detail` VALUES("7301", "730", "14", "1.3", "Seth");
INSERT INTO `wp_rg_lead_detail` VALUES("7302", "730", "14", "1.6", "Eggler");
INSERT INTO `wp_rg_lead_detail` VALUES("7303", "730", "14", "2", "January 21st 1988");
INSERT INTO `wp_rg_lead_detail` VALUES("7304", "730", "14", "3", "(250) 891-8889");
INSERT INTO `wp_rg_lead_detail` VALUES("7305", "730", "14", "4", "setheggler@gmail.com");
INSERT INTO `wp_rg_lead_detail` VALUES("7306", "730", "14", "11", "From a friend receiving counselling from this centre");
INSERT INTO `wp_rg_lead_detail` VALUES("7307", "730", "14", "5", "Looking to seek help for issues concerning childhood sexual abuse and problems forming intimate relationships.");
INSERT INTO `wp_rg_lead_detail` VALUES("7308", "730", "14", "12.1", "I only want individual counselling");
INSERT INTO `wp_rg_lead_detail` VALUES("7309", "730", "14", "6.2", "M-F, 5-8pm");
INSERT INTO `wp_rg_lead_detail` VALUES("7310", "730", "14", "6.3", "Saturday daytime");
INSERT INTO `wp_rg_lead_detail` VALUES("7311", "730", "14", "8.2", "No");
INSERT INTO `wp_rg_lead_detail` VALUES("7312", "730", "14", "9.6", "$20");

/* INSERT TABLE DATA: wp_rg_lead_detail_long */
INSERT INTO `wp_rg_lead_detail_long` VALUES("13", "This is a message for Bill Cole. I left a message for you last Friday but am just wanting to make sure you received it. The next day I have off available for an appointment is Tuesday Aug 5th. Please let me know if sometime that day would work. Thank you.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("21", "Hi there,  me and my fiancÃ© are looking to get married and i was told by my padre on base that I need a course to get married and he gave me your contact information.  I am just wondering what course this would be and what the cost would be. \r\n\r\nThank you for your time");
INSERT INTO `wp_rg_lead_detail_long` VALUES("60", "Hello, your agency was recommended by Kiran Bolaria,Transition Team Case Manager for the Victoria Mental Health Centre as a resource to provide help for my daughter, Nahanni, who is 40 years old.\r\n\r\nNahanni is very depressed and feels her life is not worth living, although certainly some of the depression is attributable to not quite having her meds balanced at the moment.  She has had some psychotic episodes in the past (she went off her meds a couple of months ago and ended up delusional and was apprehended under the mental health act and spent a couple of weeks at the Jubilee Psych ward).  She\'s been diagnosed in the past with schizophrenia and/or borderline personality disorder.  She was also struck by a car about 8 years ago and was in a coma for a couple of days, while she\'s recovered amazingly well I think it has had an impact on her memory and judgement.  She\'s been on long term disability through social assistance since then.\r\n\r\nSome of her problems stem from a psychologically abusive relationship with her mother (who fits the description of a narcissistic mother fairly closely, I think).  Since then she\'s had 3 or 4 relationships with males that I would also describe as abusive.  She very much wants a social life but is afraid to be around people.\r\n\r\nAnyway, I think that she has a number of issues from her past that she hasn\'t been able to successfully deal with or unpack on her own and she has (finally) agreed that a therapist/counselling might be able to help her move forward and begin to find some happiness in her life.\r\n\r\nAs I mentioned, she is on Long Term Disability and thus has income of less than $12,000 per year, however, I am able to cover the cost of her therapy (I\'m retired - my income is under $50,000 per year).  Do you think you would be able to provide some assistance to Nahanni?  She is open to counselling/therapy but, at this time, lacks the initiative to make the first move, which is why you\'re hearing from me and not her.\r\n\r\n");
INSERT INTO `wp_rg_lead_detail_long` VALUES("65", "I am interested in communicating with Rosemary Merritt about possible counseling. If you could have her email me so we can see if it\'s the right fit, that would be appreciated. \r\n\r\nThank you,\r\n\r\nWhitney");
INSERT INTO `wp_rg_lead_detail_long` VALUES("70", "Hello\r\nI am a licensed mental health practitioner recently moved here from Nebraska. I have my Masters in Counselling from UVic and have been practicing as a therapist in Nebraska since 2007 and have 3000 hours of direct and in-direct supervision combined. I found out that to become a registered clinical counsellor here in BC I need an additional 25 hours of \"observed\" supervision and I\'m wondering if I can make an appointment with Bill Cole so that I could see clients as an intern and get this criteria met. \r\nOr, if there is someone there who would have any other suggestions for me, I would really appreciate it! It\'s challenging to have to go through this process when I\'ve already been working as a therapist but I understand the concept of \"when in Rome...\". Please get back to me as soon as possible because the next BC College of Counsellors\' review date is December 1\r\nAmber Olson, M.Ed.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("80", "Hello Bill,\r\n\r\nI would be able to have an appointment with you on Friday Sept. 12th or 19th. Preferable times are between 11 & 2, however I can try to make alternate arrangements to try to fit in at another time.\r\n\r\nThank you,\r\n\r\nLaurel");
INSERT INTO `wp_rg_lead_detail_long` VALUES("103", "Hello!  We are looking for a staff inservice/training around trauma-informed practice.  We are a not for profit counselling agency (for teens and their families) in the Cowichan Valley.  We engaged you 4-5 yrs ago to do a training in family therapy.  I would be interested in talking  about having you do another training with us.  Thanks!");
INSERT INTO `wp_rg_lead_detail_long` VALUES("255", "HI I AM 54,I RECENTLY LOST MY WIFE.I AM A NEW CHRISTIAN OF 2 YEARS.I HAVE HAD A PASSION TO BE A COUNSILLOR FOR MANY YEARS.I WANT TO CHANGE MY CAREER.COULD YOU PLEASE GUIDE ME ON WHERE OR HOW I CAN GO ABOUT THIS.I HAVE LOOKED ON THE INTERNET AND FOUND YOUR SITE TO BE THE MOST PROMISING.THANK YOU FOR YOUR TIME.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("260", "Hi there, I am interested in having some counselling. I am dealing with a lot of depression, anxiety and overall stress regarding my relationships, with a recent medical diagnosis and struggling how to follow what is best for myself and what God wants for me to do. I am struggling trying to sort out my cycle of thoughts by myself. I recently donated during a Church offering which is where I heard about you. If you could get back to me, I would appreciate it greatly. I am in school at UVIC from monday to friday until either 12:30 (W,F) or 2:30 (T,Th,F). I work one night per weekend at a restaurant so I mostly am free in the early afternoons, evenings and some weekends. Thanks again. My name is Karli, I can be contacted easily by phone, text or email.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("287", "Good afternoon Bill, \r\n\r\nThis is Peter Hickman here; the reason I am contacting you is that I was wondering if I could take 20 minutes of your time this coming Friday (Nov 7). I am taking an counseling course and I have been asked to interview an active counselor. I am available anytime before 2:30 Just thought I ask - no worries if you can\'t fit me in. \r\n\r\nThanks, \r\nPeter.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("313", "Hi, I\'m looking into getting some counselling for my husband and me. Our medical plan covers the services of a registered psychologist or a registered social worker, but not a registered clinical counsellor. Would any of your counsellors have either of these designations? \r\n\r\nThanks for your help.\r\n\r\nDebbie");
INSERT INTO `wp_rg_lead_detail_long` VALUES("335", "Please let Laurie know that I would be happy to donate art work for the silent auction, if she is interested, thank you. \r\nLinda Dickson\r\n250-721-3599\r\nAbstract Art\r\nemail:dickson.lindam@gmail.com\r\nwww.lindadicksonart.com\r\n");
INSERT INTO `wp_rg_lead_detail_long` VALUES("351", "Good afternoon, \r\n\r\nI am wondering what the process is to get in an see a counsellor, how the scale works as i am currently barely employed, and what the waiting list is like if there is one. \r\n\r\nAny information you could provide would be greatly appreciated, as I would like to make an appointment soon. \r\n\r\nThank you, \r\nJustice");
INSERT INTO `wp_rg_lead_detail_long` VALUES("356", "Hi there, \r\n\r\nI wanted to get in touch regarding making an initial appointment. I\'ve recently moved to Victoria from Northern BC and am seeking help with ongoing issues of depression and anxiety. \r\n\r\nI\'ve had a look at your sliding fee scale, and I\'m not sure how it would work out -- I\'m a self-employed book editor, and am currently making between $26,000-30,000 a year. My husband has just gone back to university, so I\'m supporting us both. Would it be best to call and discuss a payment method before making an appointment? \r\n\r\nMany thanks,\r\n\r\nLacey");
INSERT INTO `wp_rg_lead_detail_long` VALUES("366", "Could you please tell me the best time to contact someone by phone?\r\n\r\nI\'ve tried unsuccessfully to navigate your voicemail system. Also, I can\'t get your sliding scale webpage to work.\r\n\r\nThanks so much!");
INSERT INTO `wp_rg_lead_detail_long` VALUES("371", "I am currently on Social Assistance, waiting for my referral to see a Psychiatrist to go through (which won\'t be for another month at least). I\'ve experienced a fair amount of trauma (sexual, physical, and emotional) in the last 4-5 months and desperately need to talk to a professional, for my own sanity. I am no longer experiencing abuse, as I discharged myself from the situation a month ago. The counsellors at Transition House are impossible to set appointments up with, unfortunately. I\'m not seeking a women\'s shelter or looking to report anything to victim services. I just need a counsellor to talk to. Since I am on Social Assistance, I can\'t afford much, so if you can let me know what fee you think seems fair. Also, please let me know if there is a waiting list for new patients, and if so, how long is the waiting list? \r\n\r\n\r\nThank you,\r\n\r\nSara");
INSERT INTO `wp_rg_lead_detail_long` VALUES("376", "Hi, \r\nMy situation has become quite stressful due to unemployment, a lack of resources, not really knowing how to turn things around nor who to go to for guidance. I have recently ended a relationship that can only be described as a cataract of disaster from start to finish. My ex partner has called the police on me, unfairly I feel, and I am fearful that she will \"engineer\" a situation the could see me deprived of my liberty. Everywhere I go I am constantly watching my back for any sign of her just in case she uses the sighting of me to call the police! \r\nI\'m not sure if you can, or even want to help me, but if there is a possibility, I would be interested to hear how I may possibly be able to recover some of myself in all of this chaos.\r\n\r\nSincerely\r\nDenis Mannion");
INSERT INTO `wp_rg_lead_detail_long` VALUES("381", "Hi there,\r\nI called a few days ago, hoping I would be able to schedule an appointment for my 17 year old daughter, who is having problems with anxiety.  I wanted to see if Laurie Truant had availabilty.  I left my name and number, but have not heard back from Laurie yet.  Just wanted to make sure that she received my message.\r\nCheers,\r\nSusie Davis");
INSERT INTO `wp_rg_lead_detail_long` VALUES("418", "Hi, \r\nI am searching for a counsellor. I\'m newer to the Island and am a grad student at UVic. Ideally, I\'m looking for a counsellor, for longer term, with a solid understanding of the Christian perspective and perhaps with some background in attachment/interpersonal therapy. Is there anyone at your site that might fit the bill? I\'d be open to discussing options. I\'d prefer contact through email since I\'m either working or at school most days. \r\n\r\nLooking forward to hearing back from you. \r\nThanks, \r\nMike");
INSERT INTO `wp_rg_lead_detail_long` VALUES("423", "Hello, I was given your name by Cedar Hill School, I would like to make an appointment for my daughter, she is struggling in school and her father and I have separated and I don\'t  believe she is dealing well with it.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("433", "We would like to make an initial appointment with Bill Coles. \r\nOur available time for an appointment is evenings (after 5:30) Monday, Tuesday, Wednesday.\r\nPlease contact us by email or by leaving a message on our machine. \r\nThank you\r\n.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("468", "Hello,\r\nSeveral years ago I had some sessions with Mr. Bill Cole and found them very helpful.\r\nI am interested in visiting him again and was hoping for the opportunity to make an appointment with him.\r\nCan you please let me know if this is a possibility and what his possible  availability looks like?\r\n\r\nThank-You,\r\n\r\nRob");
INSERT INTO `wp_rg_lead_detail_long` VALUES("478", "Hello , my partner and I are looking for couples councelling ASAP . We have been on so many Waite lists and looking for Somthing affordable for a long time and are having no luck . We are a low income family with 2 children and a third on the way ! We would appreciate even 1 appointment soon !");
INSERT INTO `wp_rg_lead_detail_long` VALUES("488", "Hello my name is Kaitlyn and I was wondering about your availability for councils. I really need to talk to someone immediately but I don\'t know how to go about it. \r\nI have Sundays, Mondays and Tuesdays off work I can\'t afford a lot but I can\'t afford not to start counselling.\r\nAnything helps or a direction to someone who can. \r\nThank you,\r\n-K");
INSERT INTO `wp_rg_lead_detail_long` VALUES("493", "Hello Bill and Counsellors, \r\nI wanted to let you know about the BC Post Secondary Counsellors\' Association (PSCA) Conference entitled: Perspectives on Diversity in Post-Secondary Education that is happening May 4 - 6th, 2015 at the Parkside Hotel and Spa on Humboldt Street in Victoria. We are hoping that our theme of Diversity and the variety of speakers and panels that we have will be of interest to you and we would encourage to have a look at the website and register to join us. Here is the link to copy & paste into your browser: http://bcpsca.com/index.php/conference/perspectives-on-diversity-in-post-secondary-education/. Please let me know if you have any questions. \r\nBest Regards,\r\nJune Saracuse, M.Ed. RCC \r\nUniversity of Victoria");
INSERT INTO `wp_rg_lead_detail_long` VALUES("518", "Hello, I am looking for counselling and came across your website.  After reviewing your team it looks like Laurie Truant might be a good fit for what I am looking for (i.e. help with anxiety/depression).  Could she perhaps phone me to discuss a consultation?\r\nAngela");
INSERT INTO `wp_rg_lead_detail_long` VALUES("523", "Hello;\r\n\r\nI\'m writing to inquire about becoming a crisis counsellor;  I have a BScN and my interests lie completely in the counselling area but I\'m not sure how or where to go about getting the training. Is there any direction you can offer me or any such thing as a mentorship with yourselves? I\'m willing to do a mentorship where I\'m not paid because I\'m so passionate about helping others and feel this is my calling.\r\n\r\nThankyou for anything you may be able to offer me:)\r\n\r\nLeigh Thornton");
INSERT INTO `wp_rg_lead_detail_long` VALUES("539", "Hello,\r\n\r\nI would like to inquire about making an initial appointment. I was referred to your practice from the Vancouver Island Crisis Line. I am a recent graduate of a BFA program, and have been meaning to find counseling since I graduated but have not found an affordable solution. I continue to put seeking help off on the basis of not having the funds to do so and feel guilty about not being able to pay full fees, but I am eager for professional help.\r\n\r\nIf I could set up an initial appointment that would be great. Please let me know what I should bring in remuneration. Thank you,\r\n\r\n\r\nRhea");
INSERT INTO `wp_rg_lead_detail_long` VALUES("544", "I have some anxieties around family relationships I\'d like some help with.  If possible, I would like an inital visit with Bill, to determine a course of counselling or therapy.  He would know me as Karen Brantley...\r\n\r\nCheers,\r\nKaren");
INSERT INTO `wp_rg_lead_detail_long` VALUES("549", "I have some anxieties around family relationships I\'d like some help with.  If possible, I would like an inital visit with Bill, to determine a course of counselling or therapy.  He would know me as Karen Brantley...\r\n\r\nCheers,\r\nKaren");
INSERT INTO `wp_rg_lead_detail_long` VALUES("554", "Caroline, I have been wondering about you for quite awhile, and my Google search today landed me here. I thought I would reach out and say hello. I hope you are happy in your new surroundings and healthy. I faced my own health troubles in 2013-2014 with clinical depression followed by bilateral mastectomy for breast cancer, and am now reclaiming what I want out of life. Let me know that life is treating you well again...   Judith");
INSERT INTO `wp_rg_lead_detail_long` VALUES("667", "Hi there, my names Andrew I\'m 28, I deal with cronic back pain and such. Its been difficult so my friend suggested I come and try one of your counsellors. Just want information on costs and times available, late in the day is best if possible. Thank you.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("688", "Hi Margaret. I am Debbie Roberts husband and we have met before. You know her background and I realize that it affects me deeply as well.\r\n\r\nPlease let me know if I can have an appointment with you as well, separately. Anytime next week would be fine.   \r\n\r\nThanks.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("708", "Hi there,\r\n\r\nI am interested in booking an appointment for my 6 year old Evelyn Bjorgan, with Amber. I am not really worried about her but a few months ago, one night she was having trouble going to sleep and telling me all her worries and troubles. I mentioned that she could talk to a counselor about things that kept bothering her. Recently she has started asking to talk to someone. So, I said I would make her an appointment. If nothing else, it is a good exercise to teach self care but I am sure we could learn some tricks for lowering anxiety and managing strife. My phone number is 250-857-4180 but I have forgotten my phone at home today so I need to email with you if you reply today. Fridays are the best day for us, also monday and wednesday am are good as well.\r\n\r\nAs for fees, I am not sure off the top of my head what our household income is but I am a full time student and I think we would qualify for the sliding scale. What do I need to provide for you to prove income.\r\n\r\nThank you.\r\nSarah Bjorgan\r\n");
INSERT INTO `wp_rg_lead_detail_long` VALUES("713", "Dear South Island Centre Team,\r\n\r\nI have come across your Family Systems Theory â€“ 5 Day Summer Intensive (Monday-Friday, July 27-31, 2015) course and have some questions about it. \r\n\r\nI am a counsellor in England, and will be spending some time in July on Vancouver Island. I am currently reseraching options for some professional (and inevitably then personal) development options, particularly in the area of systemic therapy, which is how I stumbled across your website. Now, my question is whether this course is geared towards professionals or rather more suitable for lay persons, seeking to understand their family better. \r\n\r\nWould you also be able to provide some information on the course content in more detail? Thank you.\r\n\r\nKind regards,\r\nAntonia Jacobson\r\n\r\nPS: Please only contact me via email as the phone number above is incorrect (it would not let me enter my phone number due to the different format of international phone numbers).");
INSERT INTO `wp_rg_lead_detail_long` VALUES("718", "Hi there,\r\n\r\nMy fiancÃ© and I are getting married in November and are interested in doing some pre-marital counselling. Could you please advise what kind of services you recommend, pricing and availability?\r\n\r\nThank you,\r\nSarah");
INSERT INTO `wp_rg_lead_detail_long` VALUES("745", "Hi there,\r\n\r\nI\'m hoping to receive some counselling for intimacy issues/counselling.  I\'m really tired of being considered \"cold\" as I don\'t feel like this on the inside and it is starting to put a lot of strain on my personal relationships.  I don\'t really know where to go as when I have discussed this issue with other it has been brushed off.  If you are accepting new patients I would greatly appreciate the opportunity to talk to someone or to be referred somewhere that can help me.\r\n\r\nThank you,\r\nChelsea");
INSERT INTO `wp_rg_lead_detail_long` VALUES("750", "Hello, my name is Ted Smith and I am wondering what kind of counselling services you offer. Do you offer business counselling? If so, that would be great because my business is struggling and I need some help. I have been open for about six months and business hasn\'t been doing well. Perhaps I am being a little impatient, but I really want my business to do well. \r\nhttp://rivieracounselling.com.au");
INSERT INTO `wp_rg_lead_detail_long` VALUES("755", "Hello there. I\'m wondering about your counselling services and if I would need a referral for an appointment? I live in St. Albert Ab at this time but my family and I are moving to Victoria at the end of the month. My counsellor here gave me this contact info and can also send a referral if need be.\r\nThanks so much,\r\nMallory\r\n");
INSERT INTO `wp_rg_lead_detail_long` VALUES("760", "Hello there,\r\n\r\nI was hoping to set up an appointment to see a counselor. The South Island Centre was recommended to me by my mother.  I have been struggling with issues with anxiety and depression and have been for many years. I have seen counselors in the past but it has been a long while I feel I would benefit from speaking with someone.\r\n\r\nAny information you can provide to me would be greatly appreciated.\r\n\r\nThank you,\r\n\r\nS. Landucci");
INSERT INTO `wp_rg_lead_detail_long` VALUES("809", "Hi there,\r\n\r\nI represent the Association of Cooperative Counselling Therapists (ACCT) of Canada - we are a national organization with 250+ counsellors registered across the country.\r\n\r\nI am in the midst of putting together a list of approved professional development resources, and would love to include a discount or offer for workshops offered by the South Island Centre, either some sort of early-bird offer, or an overall discount exclusive to ACCT members.\r\n\r\nWe would then publish information about upcoming workshops in our member newsletters and on a page in the members-only section of our website.\r\n\r\nI have subscribed to updates about workshops and courses as well - will this be the best way to stay up to date on upcoming events?\r\n\r\nThank you for your time!\r\nJulia");
INSERT INTO `wp_rg_lead_detail_long` VALUES("819", "Hello, my name is Samantha. My partner and I had an appointment booked with Bill Cole about a month ago, but was unable to make it. I am hoping to reschedule with Bill, perhaps this message will reach him so we can discuss further. Thank you.\r\n\r\nSamantha");
INSERT INTO `wp_rg_lead_detail_long` VALUES("833", "My wife of 51 years (Ann) has just been diagnosed by Maureen Matthew (Headway) with progressive supra-nuclear palsy (PSP disease). We both know and understand the course of the disease (I am a physician), but as the carer I have gone down with fairly severe anxiety and some depression in facing up to all the decisions we have to make in the medium and long term. I know I am susceptible to this, as it has happened before in the face of other types of crises (mostly in my career). I know I need counselling and Maureen Matthew feels that Margaret Anderson is a good fit. I have left a voicemail with her. I hope it may be possible for us to meet within 2-3 weeks.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("838", "Hello,\r\nI\'m looking for counselling for my depression and anxiety. We are a family of 5 with a gross income last year of 42,000.00.\r\nWe do not have benefits so I\'m looking for something affordable as I do not have much to spend on counselling. I\'d like some feedback from you, to see if this is something I can afford to do.\r\nThank you for your time.\r\nSheena.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("843", "Hello I am inquiring on a price for individual counselling for my fiancÃ© Trystan. He has a job and is normally not able to answer phone or emails. Wondering what the rate would be because he makes quite abit less then 50000 a year");
INSERT INTO `wp_rg_lead_detail_long` VALUES("848", "hi jozef  ter-mitchell(previous client of yours) and I Hayley Davis would really appreciate a chance to come for individual councelling as well as couples councelling.  im not sure all of what  you do but would love any help we can get i have a background of abuse growing up and trauma  and previous post dramatic stress issues and he comes with his own background of head injury time in and out of the system, both of us have previous addictions issues that are hopefully behind us but we all know how that can go.  if theres any help available pls let us know his number is 250-213 9269  mine is 250 3615747  i work till 1130am today and till 8 tomorrow .");
INSERT INTO `wp_rg_lead_detail_long` VALUES("900", "I will be attending Soulstreamâ€™s, Abbotsfordm Living From the Heart course in 2015/2016, a first step for myself to work towards pursuing the vocation of Spiritual Direction.  One of the requirements of the program is monthly spiritual direction concurrent with the course duration.  I am interested in connecting with one of your Spiritual Directors, Pamela Welle if she is available.  \r\n\r\nI look forward to hearing from you,\r\nSincere thanks\r\nLisa Meier");
INSERT INTO `wp_rg_lead_detail_long` VALUES("910", "I\'m looking for more information on your sliding scale. I\'m searching for individual counselling for myself, hopefully on a weekly basis. I am transitioning from counseling that was paid for through my employer, but the sessions have all been used and I still feel I need help. Thank you.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("931", "I would like to book an appointment with Margaret Anderson if possible for my daughter Michaela.  Michaela is 18 years old, and has a sister and best friend who are struggling with mental health issues.   She is supporting them both as they seek treatment both while within institutional care and on out patient basis.   Michaela\'s faith has been severely challenged during this experience.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("967", "I am seeking counselling. I was referred by Jennifer Sutton from Island Health. I phoned & left a message today but wasn\'t sure it was the right extension. I am dealing w/ anxiety, insomnia & depression (grief too) after being diagnosed w/ Parkinson\'s. Could someone please phone me soon to make an appointment. I\"m not sure which counsellor is right for me. please advise. Thankyou.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("983", "Hello,\r\n\r\nI have an appointment scheduled for tomorrow at 5:00 p.m. Unfortunately, I have been called into work at this time and I will be unable to make the appointment. Sorry about that.\r\n\r\nAll the best,\r\nMandy");
INSERT INTO `wp_rg_lead_detail_long` VALUES("993", "Hello,\r\n\r\nI was referred to you by Pastor Lyle at Lutheran Church of the Cross in regards to premarital couples counselling. I was just hoping to touch base to see what your recommendations are for how that looks and when we might be able to make it work!\r\n\r\nThanks,\r\n\r\nLauren");
INSERT INTO `wp_rg_lead_detail_long` VALUES("998", "Hi there,\r\nI am interested in getting some counseling over a past relationship ending. Several months ago I had previously seen Darrel at the centre, and he was lovely, but I think I would be more comfortable speaking with a woman, if that\'s possible. The number above is my cell phone and I can be reached anytime.  Thanks,\r\nLisa Willott");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1035", "Hi Susanne, \r\n\r\nI had a conversation with Caroline yesterday regarding Payroll, and she said you were definitely the best person to chat with, and show the solution to determine if it would be the right fit for your organization. \r\n\r\nWhen would be the best time this week to chat? \r\n\r\nBest regards, \r\nDamilola Adeola");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1045", "If you are interested we want to increase the number of \"online customers for your business\".\r\n\r\nWe strictly work on Performance basis and can assure you of getting quality links with a proper reporting format for your site as well.\r\n\r\nPlease do let me know if you have any questions, If interested please reply with your skype id, you can also add me on your skype, my skype id is \"amphilsolutions\".\r\n\r\nWe are looking forward to a long and healthy business relationship with you and your company. If you have any questions, we will be more than happy to provide you quick assistance.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1050", "Hi there, \r\nRob Fitterer from Lambrick Park Church recommended South Island Centre for pre-marital counselling. \r\nWhat do you usually recommend for that? How many sessions? How long before the wedding? etc. \r\nThanks, \r\nChristina Price (& Jonah Timms)");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1055", "Good evening Mr. Cole:  \r\n\r\nI am hoping you can help me.  I am looking for a psychiatrist here in Victoria, whose practice is based on traditional Biblical teachings and Christian values.  Would you happen to know of one?\r\n\r\nThank you,\r\nJudy Joyce");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1128", "Hi,\r\nMy husband and I are looking for couples counseling and counseling for us individually. We\'ve never had counseling so we\'re wondering how this works. Do we meet with counselors first before a session?\r\nI\'ve left phone messages, one just now and one last week. Is email the best way to be in contact?\r\nThank you,\r\nLale");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1148", "Hello,\r\n\r\nI am a volunteer counsellor with Citizens and I am wondering about your counselling services. I have a client whom I feel may benefit from longer term counselling (we only offer sets of 10 sessions). I am curious as to your session limitations (if you have any). Additionally, you mention that your scale is negotiable. The client in question currently pays $40/session and I do not think $50 is doable for them. Is this amount within your range of acceptance (of course this is require conversation with the client and a negotiation directly and I have no intention of guaranteeing this price for them, I just do not want to have them reach out and this not be a possibility upon discussion). \r\n\r\nThank you in advance for any and all information related to my questions you are able to provide.\r\nThanks for your time and energy,\r\nMaria");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1164", "Please reply via email.\r\n\r\nHi I was looking at tut sliding scale counseling online and have a question.\r\nOn your website it says \'South Island Centre normally sets its fees on a sliding scale between $50 and $120 per 60-minute session (includes GST) depending on the level of your household income. \'\r\n\r\nDoes that mean your services don\'t go lower than $50? \r\nI am a full time student and I really need help but there is no way I can afford  $50 at this point.\r\nThanks for your time");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1169", "I was advise to seek out counselling as per my doctor. I suffer from anxiety and depression and she recommended Laurie Truant. I am a 21 year old female attending University of Victoria and find both of these disorders crippling and am desperate to find the root causes and skill in which to manage them as I find they play a role in my schooling my home life my work and my relationships.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1189", "Hi there, my name is Gillian Gaffney.  I am a stay at home mom to a 3 year old girl and full time step mom to my partner\'s two nine year old boys.  We have a very complex family dynamic and deal with a challenging relationship with the boys\' mother.  We are a very low income family but do have some coverage through my partner\'s work insurance.  The counsellor at my step sons\' school has urged us to find a sliding scale family therapist to help us and we are hoping someone at your office could do that.  Does this sound like something you could help with?  \r\n\r\nHope to hear from you soon, \r\nGillian");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1199", "The pointers for planning a intimate breakfast within just mattress start out with offering by yourself adequate season for the arrangements, then through natural environment the alarm clock, arranging your course, getting to be geared up the adornments, masking the tray, environment up the tray, finishing the breakfast arrangements, arranging the meals and far too consume upon the plate and tray, relocating towards the bed room with the breakfast tray, waking your sweetheart up and offering the tray in the direction of him or her.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1233", "I looked at your web site and wanted to set up an appointment with Amber Eaves for myself and abuse I have been through.  I have not made an appointment with this office before and would like to discuss the fees. I have just moved from Ontario with two children, I am not working as yet as I am waiting on paper work to be completed here to work as an ECE.  I have employment set up and should be starting within the month.  What step do I need to take next?\r\nThank you\r\nFelicia Ramirez");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1251", "Hello - I am seeking counselling for myself, and possibly for my son.  I work full-time, but do not receive health benefits, so I fall under the less than $50,000 annual income threshold.  \r\nWhat I am seeking is help with processing my part in the relationship with my son, who is currently involved with the justice system.  I have been a single parent for most of his upbringing, and have invested much of myself in the relationship, and now I am struggling with how to navigate this relationship from where it is, as well as recognizing my possible co-dependent tendencies within the relationship.  I have a hard time setting boundaries, and am living with a lot of anxiety, resentment, and obsessive thinking.  I need to get a life, at the same time, I want to work on maintaining a healthy relationship with my son, who is currently making choices that contradict everything I feel I have tried to impress upon him.  I have relied on family and friends for support, but I feel like I am exhausting those resources, and people are tired of hearing about my troubles.  There are many other details, I would like to discuss, and am willing to pay whatever is fair for the services of a counselor who may be able to address my situation.  Thanks");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1256", "Hello, \r\nMy name is Jennifer and I am 22.I am looking for help. A couple years ago I lost my little brother, at the time I thought I was grieving, but I think I was more distracting myself. I am now feeling I am ready to talk about how I am feeling and help try to solve my feelings in been having because the last few months have been tough. Thank you so much for your time.\r\n\r\nJenn");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1261", "Hi there, \r\nI\'d like to set up an initial meeting to discuss starting counselling. I\'m currently unemployed so it would have to be on the sliding scale. Please let me know if this is possible. \r\nThank you \r\nMelissa");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1288", "Hi there,\r\n\r\nI am looking for counselling for my partner and I. It seems like everything we find is too expensive and we just want to try and get help resolving our issues and move forward in our relationship. Looking to do any kind of counselling or group therapy. Is there an option for relationship counselling?\r\n\r\nThanks so much,\r\n\r\nSydney");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1303", "My partner of 25 years and I are experiencing a relationship stalemate.  I have tried to get him to talk about it, but he is reluctant or in denial. I\'m not willing to give up on us without at least trying counselling.  I feel that if I initiate the process he may consider counselling for himself too.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1313", "Hi there i was hoping to set up an appointment for couples counselling. We were recomended here due to our low income. We strongly feel this is our last chance to save our relationship. I look forward to hearing back from you.\r\n\r\nThank you,");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1334", "I am getting frustrated with panic-like symptoms that appear out of the blue. Toughing it out isn\'t working, because the symptoms are the same or very similar to a low blood sugar, so I have been struggling to distinguish anxiety from low blood sugar, with disastrous results with diabetes. I\'ve been seen at emergency and clinics (again, thinking I am having an unusual diabetes event) and their staff have repeatedly told me to deal with anxiety that appears obvious to them, and totally new to me. I\'m on provincial PWD income and probably could not afford much. I\'d like to make an appointment though. I feel unsafe living alone with diabetes now, unsure of being able to treat highs and lows on my own.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1406", "Hello,\r\nI would like to express interest in the Pastoral Counselling Training Course mentioned on your website. \r\nAre you planning on running this course in the new future? \r\n \r\nI would be interested and available for the 5 day course, however, I would also consider other format options.\r\n\r\nOn a side note, I attended the first â€œEbb and Flow of Lifeâ€ course session last night and found it extremely informative and interesting!  I am definitely looking forward to our future sessions. \r\n\r\nThank you,\r\n\r\nKen\r\n\r\n     \r\nOak Bay Fire Department\r\nChaplain Ken Gill\r\nobfdchaplain@shaw.ca\r\n250-889-4082");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1433", "Hi, I\'m jeff I\'m 21 and going to school at Uvic. Over the summer I was working as a raft guide and had a couple of traumatic experiences that disoriented my person. Mainly these forced me to revert back to emotions from my teenage years where my Dad had a brain tumor and died over a period of two years. I thought that if I just stayed busy and kept propelling myself forwards that I could simply  push my way through and live life but I\'ve been hitting walls of depression and confusion, which I feel is related to this big question mark in my own history as well as my understanding of myself. I want to get counselling so that I can deal with some of these issues and live life free of internal problems within my head that prevent me from making positive decisions and the joy that I know I am capable of attaining. I feel like this is a roadblock that I have to deal with now, and hope that through counselling I can understand my self and story better and change my personal outlook to alot more optomistic perspective on my life and the world around me.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1449", "My husband Will and I have been having some marriage problems due to him having to stop working because of his MS, which has caused him depression and isolation, which has caused him to make some bad choices regarding the Internet. We are a low income family, I am on medical EI at the moment unable to work due to stress and Will is on Disability and LTD. We have had counselling through Citizens but their wait list is 6-8 weeks. We have two children 15 and 11 and I hope they could join in on some of our counselling too. We hope you have room for us.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1454", "To whom it may concern, \r\n\r\nRecent events in my life have made me realize that the social anxiety and mood issues that have been existed my whole life have been affecting my happiness and the happiness of those I love more than I realized.  I am by no means suffering a crisis or suicidal, but I am starting to recognize that the way I think about and deal with interpersonal issues has and continues to hamper my ability to create and sustain healthy relationships, romantic and otherwise.  Specifically, I believe my tendency to be over analytical and take things very personally had inhibited my ability to naturally feel empathy towards others.  However I have a perfect life and no real troubles to speak of, so this makes me think I\'m just selfish and have been too lazy to do anything about it.  What finally made me do something about it was my fiance commenting that she did not understand me sometimes after I did something specifically un-empathetic.  This has happened many times in my life with different people pointing out insensitive things I\'ve done and the scary part is that I don\'t realize whatsoever that I am in the wrong right up until it is spelled out for me.  Then I immediately and with blinding clarity recognize the pattern of insensitive actions.  I am a relatively intelligent person and this level of obliviousness truly concerns me.  I realize that I don\'t fully understand how my brain works a lot of the time and I\'m smart enough to understand that I could be a lot happier if I did.  At this point I am messaging a few different counselling resources in the Victoria area to assess the different resources available to me.  Thank you for your time and I look forward to your response.\r\n\r\nSincerely,\r\nJosh Howell");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1475", "Good evening,\r\nMy name is Amanda Rudolph. I have a counselling and caregiving Diploma. But... I am struggling to help my boyfriend with his depression. It runs in his family, his dad has manic depression and his mother also suffers from depression.\r\n\r\nHis name is Keith Begg. He has suffered with depression most of his life. He has gone to counselling before but has not found success. He has also tried anti depressants that have just numbed his feelings, but not helped.\r\n\r\nHe expressed to me of having suicidal thoughts. He has had them before but lately he has been angry not sad. \r\n\r\nHe works until close to 4pm everyday. Is there anyway there are weekend or later sessions during the week?\r\n\r\nFinances are a problem in our lives at the moment. I am currently on ei and he literally has no money. I will put as much money aside as I can for his sessions. I love him and want him to get better. He knows he needs help and has agreed to go to counselling to better himself.\r\n\r\nPlease help us\r\n\r\nCheers,\r\nAmanda Rudolph\r\n250-701-5993");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1506", "hi, \r\n\r\nwanting to get an appointment for counselling.\r\n\r\nIn need of low income counselling.\r\n\r\nI\'m 16 years old.\r\n\r\nthe phone number above is for my worker at Holly House- Rebekah.\r\n\r\nThank you, \r\nBrittany");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1511", "Hi i was wondering if i could set something up so i could talk to a counseller. I am 25 years old with a 5 year old daughter. I am currently not working because of my anxiety and depression. Thank you for your time");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1551", "Hi, One year ago, my husband and I separated after 22 years of marriage.  I am the classic codependent and he has Borderline Personality Disorder/Narcissistic Tendencies & several other diagnoses.  I have a 16 year old daughter who started to deal with the separation, the dysfunctional Dad, the dysfunctional Mom & historic physical and psychological abuse by her sister.  She was attending the Family Services for counseling when the counselor departed. She also had no closure with the counselor and this was her first time in counseling. I paid $30 per session for her. I also need counseling around bitterness, resentment, grief, low self-esteem, co-dependency- boundaries; isolation... I earn $45000 per year. My ex is supposed to pay $840 per month but that is hit and miss.  I am willing to let my daughter go to counseling first and then I will go afterwards.  Thank you.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1654", "Zoloft- 150 mg\r\nSeroquel- 75 mg to sleep at night, 12.5 mg as required through the day to alleviate anxiety spikes\r\n\r\n\r\nMichael Kinch from IMCRT strongly recommended we sign Tristan up for this program.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1678", "Hello,\r\n\r\nMy name is Josee Frigon and I am social work student at Luther Court Society. I am seeking counseling services on behalf of a client I have been working with, Peter Graham. Peter moved in to Luther Court four months ago and is having a hard time with the transition. Peter also has a history of depression and anxiety and has said that he really benefitted from counseling in the past. He is on the minimum allowed income from the government and 80 percent of his income comes to Luther Court for the cost of his care so he would require subsidized. Peter also has mobility issues and does not get out so easily. We were hoping that someone would be able to come over to Luther Court and meet him here if that is at all possible. \r\n\r\n The phone number I have provided goes straight to Peter\'s room so if you have any further questions or need to complete the intake process he can be reached there. I am done at LC this Friday and if you have any questions the email I provided goes to Lori McKenzie who is the registered social worker here. \r\n\r\nThank you so much. Peter is looking forward to hearing from you!\r\nJosee");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1819", "Greetings,\r\n\r\nI\'m writing to you today to ask about your counselling services. My boyfriend and I are having difficulties with our open relationship, and I was wondering if you had the expertise in such a situation to aid us working such a relationship style out. If not, if you know of any service in the area that might have experience or be able to provide counselling for this situation, I would greatly appreciate any recommendations you could give us.\r\n\r\nRegards,\r\nTravis");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1846", "Hello,\r\n\r\nI would like to set up an initial appointment with the Counselling Supervisor and discuss the sliding scale fee.\r\n\r\nI work Tuesday to Saturday 9-5:30, so I\'m not available during those times.\r\n\r\nThank you, \r\nRon");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1889", "Caroline asked me (her mom Judy) to contact you about counselling. She has been diagnosed with bipolar 2 after a misdiagnosis of bipolar 1. Her Meds were changed about 8 weeks ago. She is depressed and very anxious. She has been unemployed for over one year and is applying for jobs which is building her anxiety. She moved to Victoria with her boyfriend and dog in June last year so she was closer to us (we are 2 1/2 hours away).  Their savings are running out and she knows she needs help to move forward. \r\n\r\nIf Caroline doesn\'t answer her phone, please leave a message. She will return your call. \r\n\r\nThank you!");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1905", "Hello Bill - I haven\'t heard back from you regarding the interview so I assume that I was not the successful candidate. I\'m sure you had many highly qualified professionals from which to choose and I am pleased that I had the opportunity to be considered. Moving forward, I hope that the Pastoral Counselling course will be offered in the near future as I am very interested in taking that to add to both my counselling and mediation practices. I am intending to expand my mediation practice to work with clergy and congregations who are experiencing discord and I would appreciate it if you would keep my in mind for a referral should you hear of any need for this service. It was a pleasure to meet with you all and I hope our paths cross again.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1921", "South Island Centre, \r\nHi I would like to inquire about counselling for anxiety and depression. I am 19 year old, female and currently taking online courses and will be starting UVIC in the fall. Currently, I work part-time but make less than $100 per week. I am really interested in doing one on one counselling with a session once a week. \r\nDo you have any recommendations of where I could go for counselling or any free counselling options?\r\nThank you so much for your time, \r\nMiriam");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1958", "Hello,\r\n\r\nI would like to see about couples counselling, please. My fiance and I are getting married June 25th and I\'d like to meet with a counsellor beforehand. \r\n\r\nPlease let me know.\r\n\r\nThanks,\r\nDenise");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1963", "Hello,\r\n\r\nI would like to see about couples counselling, please. My fiance and I are getting married June 25th and I\'d like to meet with a counsellor beforehand. \r\n\r\nPlease let me know.\r\n\r\nThanks,\r\nDenise");
INSERT INTO `wp_rg_lead_detail_long` VALUES("1973", "Hi there,\r\n\r\nMy name is Amy Culliford and I\'ve been looking to get individual counselling now for a few months. It\'s been quite the extensive search for me to find a counsellor - I make around $13,000 a year, recently graduated from University, still receiving financial help from family, so price for services has hindered me quite a bit from seeking help. I think it\'s time I pool my resources together and pay however much I can to receive some guidance. \r\n\r\nAbout 5 years ago when I was 19 years old I had a major falling out with my mother and step-father. Since then we have communicated on and off - now once again I haven\'t spoken to them for at least a year. I\'m not interested in re-introducing them back into my life just yet, but I would like to start building the skills and tools to help me cope with the loss of their relationships in my life, and how to cope with the possibility of communicating with them again in the future. My long term boyfriend is planning to propose, and I\'m having some difficulties with the idea (due to my mother, possibly) and would like some guidance. I find myself anxious and stressed when I think or talk about anything to do with my mother. \r\n\r\nI think this conflict is emerging in other areas of my life, so hopefully I can receive some help to sort this all out. Thanks and I look forward to hearing from you.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2000", "Hi there,\r\n\r\nMy husband and I have a 2.5 year old and are expecting another in September. We are having a real hard time coping with tantrums and the life transition, as well as our marriage. Initially I thought we might need a parenting course, but can you help guide us in the right direction? Not sure what will help the most. Probably anything at this point!\r\nThanks!\r\n\r\nCaitlyn");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2026", "I am a fifty year old trans-woman. For the last year I have been continually harassed by an individual. The person has been evicted from my apartment building. However he still verbally assaults me in the street.\r\n\r\nI have developed a physical reaction to this person and I need counselling to find a way to not let it affect me.\r\n\r\nIs this something you can help with.\r\n\r\nMy income is $18,000.00 annually so I would be making use of the sliding scale.\r\n\r\nThank you for any info.\r\n\r\nKristal");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2031", "Hi, I need some counselling. I am on disability and have depression among other things. I met a fellow 12 years ago 20 years my senior and now I\'m in a caregiver position as well which is causing some of the depression. I feel very isolated and can\'t seem to figure out what to do for myself. When I go out and leave this fellow by himself I feel very guilty. Of course I know depression can make you feel guilt and I am in the middle of a new course of medication. I feel that I\'ve lost myself somewhere along the way. Nothing interests me anymore other than going for walks. And I\'m always very, very tired.  Thanks");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2036", "Hello,\r\nA student at UVic has signed a consent to release information from Laurie Truant to a counselor at UVic for continuity of care. I would like to send the ROI over to you, but I don\'t know if I should fax it to you with the attention of the counselor if there is another way that you prefer. I would appreciate if you could get back to me.\r\nThanks,\r\n\r\nJohn");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2050", "Hello,\r\nI am inquiring about counselling for my boyfriend, who is just out of town right now. His current income is less than 50,000 and is currently working to get into school in spring of next year. What is the approximate cost he would be looking at? As well, are the hours flexible as he works 10-7 shift most days. Thank you");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2055", "Hello, I was wondering if you provide seniour at home counselling services. If you do not could you steer me in the right direction. My parents have recently moved into our suite and are experiencing emotional issues around the need to move here and the reasons why they needed to.  So I would guess transition counselling as well as dealing with medical issues and the emotions that arise.\r\nThanks for your time and info.\r\nJill Ciceri");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2069", "Good afternoon,\r\n\r\nMy name is Tessa Carlson and I have been suffering from depression and anxiety for many years now and I have done my fair share of counselling but I find myself in a deep hole and I am looking for help.\r\n\r\nAfter looking at your website I was interested in trying the services that you provide. I was wondering what my next steps are?\r\n\r\nThank you,\r\nTessa Carlson");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2084", "My husband & I are wanting to start going for marriage counselling. Would like to find someone who would be willing to work out payments on a sliding scale. \r\nMonday, June 13th would work well. Any time after 2pm. If that doesn\'t work, any Monday, Wed, Fri, & Sat work. Later afternoon preferable. \r\n\r\nThank you \r\n\r\nNicole");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2093", "Hello. I would like to book an appointment to get help. This weekend I ended up n the ER PES unit, they  think I have OCD and Aspberger\'s. I spend about 3hrs a day talking to myself  out loud,I can\'t stop the thoughts and conversations in my head, I can\'t stop thinking. It interferes with my work and marriage. I forget to eat , I stop working and forget to talk to my wife.\r\nThey have started me on medication, but i need help. It takes over my life and I lose track of hours and days because I can\'t stop thinking.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2119", "I am so sorry for the late notice, I have a 9 am appointment with Margaret I was looking forward to but have been sick \r\nthe night and won\'t be able to be there this morning.  I would like to make another appointment and will call to do so as well as leave a message this morning.  Allison");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2149", "I am the Rector of the Anglican Parish of St. Matthias at Richmond and Richardson. Can you tell me if you have any Marriage Preparation courses planned for between now and the middle of November of 2016? Thank you!  \r\n\r\nThe Rev. Canon D. Bruce Bryant-Scott");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2161", "Please pass this on ASAP: I want to stop seeing Amber Eves for counselling sessions effectively immediately. Thank you. Louise de Lugt\r\nP.S. Please let me know when Amber has received this information. She needs to get it before July 5.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2166", "Hi there, I\'m seeking counselling services for my anxiety and depression. I\'m new to Victoria, just moved from Courtenay in March. I had a regular doctor there that has diagnosed me with clinical depression. I have been on and off anti depressants, but aren\'t effective on their own. I\'ve seen counsellors in the past for a variety of issues, and am in need of someone to talk with again. Thanks very much");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2185", "Hi there,\r\nInquiring re: counselling services, availability and cost.\r\nWas recently released from hospital and was referred to your centre for issues related to post traumatic stress.\r\nI can be reached easiest via email, as the land-line is shared.\r\nMuch thanks!");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2195", "Hello, my husband is yet to be diagnosed with depression and anxiety. He is beginning the process of seeing a doctor or antidepressants after struggling for more than 8 years. It is affecting our marriage more than ever now. I think it would best for he to see someone on his own first then eventually have couple counseling. Which counselor should he see. Please contact me so I can make an appointment, thank you so much.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2232", "Dear South Island Centre (Attn: Laurie Truant/ Counsellor):\r\n\r\nI am familiar with your volunteer counsellor driven agency in Victoria & wonder what counterpart (s) agencies/ services would be available in Montreal?\r\n\r\nMy mother Bev; deceased in 1980; was a parishioner of St. Lukes for many years & back when I went with her to church I was not aware of South Island Centre then  but have since been made aware of it.\r\n\r\nI had actually chatted with Bill Cole & others there about other issues a few years ago but am not sure if your counselling services have changed much/ would like to be brought up to date?.\r\n\r\nSince my daughter lives in Montreal your services would maybe not be practical unless you offer online or k\r\nlong distance chat/ phone services thus why I have asked for your advice/ blessing re: which counselling services(s) might be similar in Montreal?\r\n \r\nMy daughter (not a Christian but I am hoping one day) with limited funds lives there (still at present with her boyfriend of 5 years) but has begun mentioning openly to her Aunt, myself & others closer to her that things are troubled.\r\n \r\nI have just been told today that after she returned from a work related trip; which is common with her line of work; that her boyfriend has decided to move out in September.\r\n \r\nTherefore I thought instead of my reviewing web advertised agencies in Montreal without any advice; that  it would be more helpful if people at your agency could hopefullly give me any knowledge/ tips  \r\nabout the counselling scene there ie. (who fits a similar profile to yourselves/ which one/s have you heard good things about)?\r\n \r\nAlso any online resources that you might commonly refer clients to would be helpful to know as she could also access these?\r\n\r\n(My daughter is up against it as her boyfriend  \"at first blush\" has said he is not interested in working on things; so her knowing how to bring up this topic again in the least provocative/ most positive way would seem to be very important?).\r\n \r\nThankyou so much for getting back to me by internet or by letting me know a good time that I could phone & have a conversation with you?\r\n \r\nSincerely,\r\n \r\nCathy Klassen\r\npurpleplantagenet@shaw.ca \r\n(250)479-7414\r\n7/28/2016");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2248", "I am inquiring on behalf of my son who turns 19 soon. Are any of your counsellors knowledgeable about Asperger\'s? We would like to talk to someone with SOME knowledge of the issue. I can usually be reached at 778-977-1125 on my cell during the day.\r\n\r\nThank You,\r\n\r\nSusan");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2258", "I\'m hoping to set up an initial consultation with an available Counselor. My focus is needed around childhood emotional abuse, BPD and destructive relationship patterns in adulthood. I am a student at UVIC looking for an affordable option. Please let me know if you have some spots available. Thank you");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2308", "I currently live in Ontario, but I will be moving to BC in the winter. I would like to get therapy to deal with some issues. I think that I could be an interesting case study for someone. At any rate, I need to know how I could manage to set an appointment up with someone for when I get there. \r\n\r\nI would need a sliding scale fee. First I will be in school and looking for work. Once my financial situation is more stable I would be happy to adjust what I am paying. \r\n\r\nI have had success with cognitive behavioral therapy in the past.\r\nIssues I want to cover over time. \r\n- relationship issues (general, family and romantic) \r\n- social anxiety\r\n- emotional control\r\n- over eating \r\n-self hatred\r\n-  more\r\n\r\nI have already dealt with \r\n- sexual assault \r\n- loss (best friend suicide) \r\n- more positive outlook (cbt) \r\n- addiction\r\n- more\r\n \r\nThank you for your feedback. \r\n\r\nBest Regards, \r\nTui Hartman");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2313", "Hi there,\r\nI\'m looking to making an appointment for my ex husband and I to attend counselling together. Our goal is to improve our relationship in order to be able to effectively co-parent our two young children.\r\nBoth of our children are in counselling with Amber Eves. Our situation is complex as I\'m sure most are. \r\nMy ex is a student and I am on disability income assistance. We have little to offer financially. We are very desperate to start counselling as soon as possible before things get worse. \r\n\r\nI am also looking for individual counselling for myself. I struggle with complex PTSD, depression, anxiety and addiction. If there is a counsellor experienced in these areas it would be perfect. \r\n\r\nThanks so much,\r\nJessica Pletzer");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2359", "I would like to speak to someone about counseling.  I left my job on June 3rd as a result of burn-out and am wondering if it is normal to feel a lack of motivation?\r\n\r\nAlso, do you direct bill to First Nations Health Authority?");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2455", "I am father ( age 68 )interested in counselling to address challenges in my relationship with \r\nmy daughter ( age 24) who has been diagnosed with PTSD. \r\nPlease refer me to one of your staff who is trained and experienced to offer guidance in this area. \r\nThank you.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2514", "I\'m in need of counselling on a sliding fee scale as I don\'t have very much money but I am in desperate need of talking to someone. Please let me know wat I do next in order to see someone here. Thank you so much.\r\n\r\nEllie");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2530", "Hi,\r\n\r\nMy name is Coraline Thomas, I have an appt with Amber on Friday the sixteenth at one pm. \r\nTwo things, I am mute and can\'t call in to cancel/change my appt, and my school schedule is in conflict with my appt which is well and fully my fault. Can you contact me via email so we can discuss this? I really don\'t have any other options.\r\n\r\nRegards,\r\nCora");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2582", "Good Afternoon, \r\n\r\nMy name is Amanda Moulton and I\'m a Canadian Certified Counsellor, specializing in child, youth, and family therapy, who is currently looking to offer my counselling services in either an employment or volunteer capacity. If this is something that would be possible, I could send you my resume and portfolio or could pop by your centre in-person to drop off my resume and portfolio. \r\n\r\nThank you for your time and consideration, \r\n\r\n\r\nAmanda");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2587", "Hi, \r\n\r\nI am looking for family counseling sessions and one-one sessions as well.  We are struggling with family anxiety and tension right now . anger and depression. Family separation too.  I am dealing with stress and anxiety anyways without these \"new\" family issues. I guess family counselling is long overdue. ..Thank you! I look forward to hearing from you. there is 5 of us.\r\n\r\nSelenne");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2597", "I am looking for some help with overcoming grief and feelings of betrayal and of being overwhelmed as a result of my marriage break up, which took place 3 years ago (marriage of 23 years.) I feel that I should be farther along in the process than I am. I am interested in counselling/therapy with a christian component.\r\nI am a part-time teacher, so have some insurance coverage for psychologists, but not for counsellors. My availability is Tuesdays and Thursdays during the day. Thank you.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2695", "Hi,\r\nI facilitate a program called Springboard to Success for at-risk youth for Beacon Community Services. I am looking for someone to come in and give a talk on mental health and addictions to my group of twelve participants. Can you please get back to me if this is something that you think you can help me out with. If not and you know someone who could please let me know. Thanks, Lana");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2700", "Hi, \r\nI am interested in spiritual direction sessions. I am hearing impaired and would prefer a text message by cell phone or an email for communication.\r\n   Could you tell me the price of Spiritual Direction sessions?\r\nThank you, Melanie Abela, melanieabela@shaw.ca");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2722", "Hi there,\r\n\r\nDo you have any brochures available? If so, what is the best way to obtain them? We would love to have some information available in our main room for people coming in.\r\n\r\nThank you,\r\n\r\nJustine");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2767", "I have had counseling before, i suffer with depression, anxiety, and other issues. My father just died, i feel like ive lost all control on life. I feel i need counseling again. \r\nFeel free to leave a message on the phone number or the email. Thank you, \r\nChelsea");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2772", "I could really use someone to talk to who is not my husband, family or friends and without judgment. I have been in counselling before and although it\'s been a while I think it\'s time to come back to it. Let\'s face it; adulting is hard sometimes! So, I\'m taking action and reaching out before things get too crappy. \r\n\r\nI\'m a married, working full time mom who\'s also in school part time. I live in Sooke but work in Victoria. I could use some help. Please get in touch, I can be reached at the email or the number above. It\'s okay if you leave a message as it is my own and its a mobile phone so I don\'t answer when driving. I will call back as soon as I can. \r\n\r\nThanks so much,\r\n  Kristy");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2799", "Hello my name is brie. I have been dealing with some anxiety, panic attacks,  and sadness/depression?  I am low income and barely afford my rent / food/ bills so financing has been a concern for me but I would really like to get some help and strategies.. \r\nThanks and I look forward to hearing from you!\r\nBrie");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2804", "Good Afternoon,\r\n\r\nMy name is Evan and I work with DrugRehab.com, a resource that provides information about addiction and substance abuse.\r\n\r\nSome people who suffer from PTSD turn to drugs and alcohol to self-medicate. Our organization works to spread awareness of this issue and to be an informational resource for those impacted by alcohol and drug dependence. \r\n\r\nI believe that our website would be a valuable addition to the resources listed on your page, http://localhost:8888/TestSICPage/wordpress/resources-2/\r\n\r\nPlease feel free to review our information at drugrehab.com/co-occurring-disorder/ptsd/\r\n\r\nI would love feedback on our information and to see if this is something you would like to share with others.\r\n\r\nRespectfully,\r\n\r\nEvan Greenbaum");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2809", "Hi. I am looking for a counselor to help with severe anxiety as well as other issues. I\'m hoping you can help? I would prefer a woman counselor, but if that can\'t be arranged that\'s ok too .I work until 5:30 or 5:45, so are evening appointments available? 6:00 pm maybe? I have reached out to other therapists, but I cannot afford the fees. I understand you charge on a sliding scale based on income? I hope to hear from you very soon. Thanks for your time.\r\nMichelle");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2814", "Hello. I would like to make and appointment and I wonder how much it would cost. Im an international student and dont have a work here so money is a problem for me and Im im need of help. I have bpd and severe depression and anxiety issues and I would love to talk to somebody. Thank you");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2824", "Good afternoon,\r\nA friend of mine was recently the victim of a very violent attack and home invasion. She has been offered counselling services through victim services but can\'t be seen for several weeks. That seems like a travesty. She is having panic attacks and is having trouble caring for her infant while sheâ€™s at home on mat leave.\r\n \r\nHer husband is self-employed and I get the sense that funds are tight. I am reaching out to people in my community to see if we can arrange for a couple of interim sessions until she can be seen through victimâ€™s services.  There may be a chance at reimbursement once sheâ€™s been processed through the system.\r\n \r\nDue to pending charges, Iâ€™m reluctant to share too many specific details but Iâ€™m happy to fill in some blanks if it helps.\r\n \r\nThank you â€“ and advice or direction is appreciated.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2829", "Kindly pass this along to Margaret Anderson...\r\nWas so nice to see you this morning, Margaret.\r\nThanks for asking about the invitation and feel free to forward my email to those sending out invites.\r\nPerhaps I\'ll see you there.\r\nHave a fabulous Friday!\r\nNoella");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2834", "Hi!\r\n\r\nI did a number of counselling sessions over the summer with Rosemary.  I got a longer receipt for some of them, but mostly just short little receipts.  I thought this would be alright but the insurance company is denying my claim.  Could I get more official receipts for each session? \r\n\r\nAlso, if this claim is denied I think the price I was charged is higher than it would have been based on the sliding scale, but hopefully it will be alright.  \r\n\r\nIf you could send the receipts to this address that would be great:\r\n\r\nElizabeth Cronin\r\n1284 Lonsdale Place \r\nVictoria, BC,\r\nV8P 5L3\r\n\r\nThanks!\r\n\r\nLiz (Elizabeth) Cronin");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2855", "My partner and I are young parents and we have both struggled with mental health and addictions in the past. We are looking for an affordable safe place to to have healthy conversations and take care of our mental well beings and our recovery.\r\n\r\nThank you");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2861", "Concerns: Depression, life transitions, relational conflict, and issues related to faith and spirituality. Referred from a GP to Mental Health intake (USTAT), completed a phone consultation and was referred to physchiatry. Had an appt. today (Nov. 16) w/ Dr. Malavi, counseling was recommended as a next step along w/ my current Rx\'s. \r\nSchedule: Available all day on Mondays, after 4:30 on Tuesdays, and evening (after 6pm) availability Wed-Sat. No preference in regards to a male or female therapist. \r\nFees: No extended benefits. Single, average of $33,000 gross annual income.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2882", "I\'m actually just touching base for a client of mine who\'s on income assistance and looking for Christian based counseling and I was wondering if you could recommend anything? \r\nCheers, \r\nMatthew of pacifica housing.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2891", "Hi, I am going through alot, this December 27th coming up it will be 4 years that i left my husband and walked away with nothing, it was not a great relationship but when I left the police were involved and later he tried chasing me down via a high speed chase.. UGH. then a few months after that my mother unexpectantly passed away. during this time my family disowned me as they really loved my ex, so that was hard, my moms passing was hard, but a few months after that my 2 dogs passed away (I do not have children they were like my children) a month after that my friend passed away and the next month my best friend get diagnosed with thyroid cancer. I spent the next few years just getting by. last year my father passed away on fathers day. when i was 12 i was raped and never told anyone. i was at a spiritual healing retreat about 1 month ago and it was amazing, but since then i have had new memories of my rape and it is causing me to realize that gee maybe not telling anyone is not such a great idea. i do my best to deal with all this by myself but my one sister that i am closest to is in the hospital and not doing good at all. I have moved to Victoria just since this July and I am doing way better than in Edmonton where i lived for 47 and 3/4 years. but being in a new place with no friends not really helping, i really hate to ask for help but kind of at the end of my rope, i have wished spirit to take me home several times but dam it ...they are not ready for me yet so here i seek your help.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2912", "Jealousy and insecurity issues with friendships, also sexual dysfunction/lack of sexual desire in relationships.\r\nPrefer a female therapist. No health benefits.\r\nAvailable: Wednesdays 1-2:30, Mondays after 2, Saturdays after 2, Sundays.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2922", "I have a history of moderate anxiety and have accessed counselling many times throughout my adult life to cope. I\'ve been quiet anxious the past few months, but it\'s definitely increased in severity the past few weeks. I\'m available pretty much any time as I\'m self-employed. I don\'t currently have extended health benefits but am in the process of becoming covered under my partners\'s plan and could actually have that within the week. I would prefer a female therapist but am comfortable with a male if necessary.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2934", "I am hoping to discuss issues related to grief and loss, particularly with regards to my son who passed away this summer after arriving prematurely. \r\n\r\nI am not available for appointments on weekdays between 2:00pm and 6:00pm, but outside of that I have a flexible schedule and am available for morning or evening appointments. \r\n\r\nI am comfortable with a male or female therapist. \r\n\r\nI do not currently have extended health benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2957", "Suffering from fairly longstanding (>1 year) anxiety and depression - feelings of despair, almost-constant low-level panic which makes it difficult to function (although still generally able to get through the day-to-day by \"faking it\"). Temporary improvement after attending a couple of crisis counselling sessions last year. Temporary improvement after daily exercise at the gym (ongoing), but I feel as though my mental health is deteriorating again. Fully available M-F and weekends, eager to attend session(s) at whatever time is most convenient for a therapist. No preference re: male or female therapist. No extended health benefits at present. Currently unemployed and collecting employment insurance benefits but anticipate starting work in the new year.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2977", "I need some guidance on how to have productive, clear conversations with my partner about major life decisions, specifically marriage and children. I am indifferent about the gender of my counsellor. I am a new BC resident, no coverage yet (still waiting for a care card) and wanted to see what my options are for a low cost counselling in the interim (a single, focused individual session would probably suffice for now - possibility for a handful of couples sessions down the road if needed). I am best reached by email. Thank you, I look forward to hearing from you soon! Leah");
INSERT INTO `wp_rg_lead_detail_long` VALUES("2988", "I am looking to talk to someone about day to day issues as well as exploring the idea of counselling for past trauma related issues. \r\n\r\nI work in Victoria and live in Sooke so it is better for me to come during working hours. I prefer a female.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3028", "I  have various issues which include poor self esteem, dependence on a certain family member, greif of a parent, and my intimate relationships dont last, which I think has to do with my self esteem issues and in experience of healthy relationships. I would prefer a female therapist.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3048", "No preference for male/female or time/day of week. I do have very bad anxiety which can very much affect my ability to answer a call so, if possible, if I don\'t answer please don\'t give up and try calling again either right after, later that day, or next day.\r\nThank You.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3059", "I don\'t really know what to say here. I feel emotionless 90% of the time, and when I do feel emotion it is almost always irritation or cynicism - sometimes outright anger. It has become progressively worse over the past two years to the point now where I suspect, though I am unsure, that I am using alcohol as a crutch for my inability to convey emotion (the detachment came first, it was not at the behest of the alcohol - for the record). I recognize the state that I\'m in and the potential danger, but I find myself enjoying the emptiness and self-imposed isolation and as such don\'t really want to change my situation. There are rare moments, like this, where I can convince myself that no, I do need help - which is difficult since I am ex-army and the concept of emotional vulnerability is anathema to me. I work from 1530 to 2400hrs during the week at a hotel. I would prefer a male therapist. I have medical coverage (Morneau Shepell) through my work.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3069", "Current issues: ADHD; sensory processing issues; anxiety about school; delayed academic achievement; impulsivity; threats of self-harm; physical violence towards older brother; swearing; lying; destruction of property; running away; separation and divorce of parents; transitions from one parent to another.\r\n\r\nHistory: Has witnessed domestic violence and been physically abused.\r\n\r\nAnders has many strengths: High verbal fluency, performance skills, musical talent, confidence on stage, good with younger children, socially adept, highly creative and imaginative, funny, athletically talented (rock climbing, skateboarding, biking, ballet, dance in general, most individual sports).");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3089", "I have been dealing with depression and anxiety for as long as I remember, it doesn\'t interfere dramatically with my daily life but does negatively affect some close relationships as well as my sense of self. I have never been to see someone about it before. I am in school full time, 8:30-4:30 Mon-Friday. I do not have any extended health coverage and only have time to work very part time. I have no preference over gender of a therapist");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3108", "Hi, I am writing to inquire about a certain type of counseling experience.  I\'m wondering if anyone who works at South Island Center has experience working with people who have a speech impediment?  I\'m not looking for speech therapy, but more-so someone who has worked with a client who has a mental health issue and also a speech impediment.  I struggle with anxiety and also have a severe stutter, so I\'m looking for someone to talk to who maybe has worked with someone like me before.  If I could be contacted by email, that would be great.  Thanks");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3118", "Relationship problems; I would like to learn techniques to deal with anger issues in regards to my primary relationship\r\nMy schedule is varied, and much of it is working from home, so I am fairly flexible\r\nI have no preference for a male or female therapist\r\nI do not have extended health benefits");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3128", "On social assistance\r\nWork injury.\r\n2 years of recovery.\r\nTraumatic events.\r\nDiagnosed with g.a.d.\r\nDiagnosed with depression.\r\nSaw psychiatrist through duncan mental health.\r\n\r\nAvailability: mon-thurs.\r\nNo preference as to male or female therapist.\r\nNo extended health benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3139", "Mother is diagnosed bipolar, spent time in Centre For Adult Psychiatry (CAP) in Brandon, MB. \r\nI\'ve been exhibiting behaviours consistently for past decade and am ready for diagnosis/ mild medication if recommended. \r\nUnable to focus or stay in job long term. Problem for debt and finances.\r\nWork 7am-5:30pm daily, bus transit- I could make last session of weekday or anytime weekend. Prefer female therapist if available, also fine with male but not first choice. \r\nNeed 180 more hours at work at least before possibility of benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3150", "- female therapist preferred \r\n- looking for counsel regarding relationship communication, conflict in relationships, letting go of/forgiving negative past experiences, and future life steps \r\n- the above phone number provided is my girlfriend\'s, as I do not have my own at this time; however, I respond to emails promptly");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3172", "I\'m looking for counselling for my son William who is 7 , to learn coping skills for his anxiety and possible ADHD.  I\'m hoping for an appointment on any Wednesday or Thursday after school around 4:00 pm , he may like seeing a male counsellor but open to either, and looking for play therapy, Thankyou ! Jayna ( mother)");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3182", "Concerns: Anxiety, depression, addictions, relationship issues ( professionally and personal) stress, anger, body image, grief. \r\nI work Friday to Monday from 930 am to 6 pm. Tues, Wednesdays and Thursdays are best to meet. I would prefer a female therapist but am open to a male as well if needed. \r\nI have benefits through work, but only for clinical psychologists/ psychiatrists I believe.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3192", "I am looking for income based counseling for mainly my little brother, but for my boyfriend and myself. My little brother recently ran away from parents to live with me after failing university for the second time. Depression and lying are issues with him.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3215", "Hi,\r\n \r\nI am Malisa Cwing.\r\n\r\nI was reviewing your company\'s website and believe our Hospice and Palliative Care Industry Contact List would make a big impact on your email marketing and prospecting efforts.\r\n\r\nAvailable Titles for Hospice and Palliative Care Industry Users Email List: Decision Makers, CEO, CFO, President, Chief Clinical Officer, Chief Compliance Officers, Executive Director, Hospice Medical Director, Palliative Care Program Manager, Hospice/Hospice Provisional Provider, Palliative/Spiritual Care Provider, Health Care Providers, Homecare Providers, Doctors, Nurses, Physician, Pharmacists, Psychologists, Nursing Assistants, Nurse Practitioner, Clinical Care Coordinator, Clinical Supervisor, Care Giver, Administrator, Hospice Care Consultant, Counselors, Social Workers, Healthcare Professionals, Services Provider, Home Care Aides, Hospice Agencies, Nursing Home/Hospitals and Others.\r\n\r\nPlease fill in your exact Target criteria in the below mentioned format, So that I can run counts and get back to you with samples and benefits for your review.\r\n \r\n Target Titles: _________ Target Industry: ______________   Target Geography: _____________\r\n \r\nWe have complete contacts details and verified e-mail address across all industry.\r\n 	\r\nList suitable for: Direct Mailing, Email Marketing, Tele Marketing and Fax Marketing.\r\n\r\nOur list includes: Name, title, Company Name, Permission Based E-mail address, Contact number, address and many more.\r\n\r\nGuarantee: We guarantee up to 90% on our lists. If anything does not meet our guarantee agreement, weâ€™d replace with fresh records and complete Ownership of list.\r\n  \r\nLook forward to your response. Thank you so much for reading my email even in your busy schedule.\r\n \r\nWarm Regards,\r\n\r\nMalisa Cwing\r\nMarketing Executive\r\nUS Data - European Data - Email Append - Data Append - Technology Specific Data - Email Marketing.\r\n12840 NE 21st Place, Bellevue, WA 98005, United States\r\nEmail: malisa.cwing@outlook.com\r\n________________________________________\r\nIf you\'re not interested please reply subject line as \"Leave Out\".");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3224", "Looking to work through issues related to past sexual abuse and other emotional issues. I usually have Tuesday, Wednesday, and Thursday off. On Friday and Saturday I am off work at 1:30 so I am available then. I don\'t have a preference about the gender of therapist. I do not have health benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3290", "Relationship conflict. My spouse and I are very different people but we also share many things. We\'ve been together for almost 8 years so we have a significant life history. But we have yet to learn how to manage life stress collaboratively and or make future goals. He is 42 and gender queer, coming from a family of abuse.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3299", "I am looking for counselling services for me and my boyfriend of 3 years. We are available evenings and weekends, and would be happy with either a male or female counsellor. We don\'t have any extended health benefits that we are aware of, but are looking into it. We are struggling with balancing both of our needs and expectations in our relationship, mostly relating to cleaning and diet and exercise.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3322", "Hello, I am looking for regular, ongoing counseling/therapy to help me work through strong feelings of depression and anxiety that I have been struggling with for just over a year now.\r\n- I am an artist/musician now in my 30\'s and coping with a sense of failure after spending years working hard towards goals that haven\'t materialized\r\n- I am a new, first-time father of a baby born in December. This was an unplanned event that has knocked the wind out of my sails. Mother and I are together but our relationship is under a lot of strain.\r\n- General issues of low self-worth, failure, lack of confidence/faith in myself, anger, etc. that seem to culminate into major depressive episodes every 5 or so years.\r\n- I was raised in the charismatic Christian faith and was an active, passionate believer for most of my 20\'s, until I went through a divorce at 28. I accessed prayer counseling in my mid-twenties to help deal with depression, but have struggled for the past few years to reconcile any faith/spiritual-based treatment with my disillusionment with the church and religion.\r\n- I occasionally accessed short-term counseling from Homewood Health through my employer (BC Public Service) over the past couple years, but struggled to maintain any consistency because I had to book each appointment individually and was limited to 6 sessions per issue.\r\n- I was diagnosed with depression by a physician and prescribed antidepressants, but I haven\'t started taking them.\r\n\r\nI\'d like to try more consistent, ongoing counseling (e.g. once per week) before considering antidepressants. My hope is to find a counselor who can help me progress beyond just verbal processing and \'talking it out\', towards a deeper exploration of the underlying thought patterns, beliefs, etc. that may influence my immediate thoughts and behaviour.\r\n\r\nI work full-time daytime hours (9-5:30) with every second Friday off.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3331", "Depression, stress, just relocated to Victoria and have no clinical supports here. UVIC counseling services and Dr. Brydon recommended finding an off-campus councilor as the resources there are swamped.\r\n\r\nSchedule:\r\nMo: After 2:30pm\r\nTues: Pre 11:30am and after 1:30pm\r\nWed: Pre 11:30am and after 1:30pm\r\nThu: After 2:30pm\r\nFri: Pre 11:30am and after 1:30pm\r\nWeekends: open\r\n\r\nTherapist preference: male\r\n\r\nExtended medical through UVIC student plan.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3351", "I have persistent pain in my lower right abdomen. Medical tests turn out negative. My doctor says the pain could be the result of emotional stress, trauma or past experiences. He recommended me to you cause he said you might be able to help. Do you do prayer healing? I am on government Income Assistance. My annual income is less than $10,000. I prefer female therapist.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3382", "I have some extended coverage from GWL, but I don\'t believe it includes counselling apart from psychologists.  Have history with psychiatry and anti-depressants, but been flying solo for about a year and a half now.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3402", "Me and my girlfriend are having a baby in july and are having relationship problems and would like some help.  My girlfriend brandie is 26 and she has extended health benefits and we always have sunday monday and if possible a female therapiat . Thank you for your time");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3412", "I have been diagnosed with depression and anxiety, and use to use UVic\'s counselling services when I was a student there. However, it has been over a year since I graduated, and I have been in a long depression slump. I have been taking on more and more projects to make the world a better place, but it has been crippling on my own health. I am feeling very overwhelmed.\r\n\r\nI prefer a female therapist, and I do not have extended health benefits. I work Tuesday to Saturday, 8 am to 5 pm. So I would be able to come in after 5pm or during the day on Mondays and Sundays.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3449", "For the last 4 years I have really been struggling in my marriage and my husband is not really interested in talking about it or participating in counselling. We have two little kids who are 2 and 4 and I do everything. All the cleaning, cooking, driving, grocery shopping etc, but I also fully provide financially for myself and the two kids which is very stressful for me. My husband works full time  and has a business on the side where he works on the weekend, so he is never home  but he doesn\'t make enough money to support us and he is not willing to make changes to his lifestyle in order to make enough money to support us. I am at the end of my rope and want a divorce.I prefer a female therapist and am available to come to appointments during the day");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3458", "Complete loss of drive and passion for advancing career, interests, hobbies and life. Probably depression. \r\nAnxiety. Though not at the point of full blown attacks anymore. Mostly social anxiety.\r\nInability to maintain friendships or regular contact. I\'ve been trying to work on it this year, but have not been very effective.  \r\nLoss/grief for a family member that I haven\'t been able to let go of for 5 years for some reason. \r\nVery low self confidence. \r\nRelationship issues. Four years ago I accepted that I am predominantly interested in women. However, I now have deep anxieties with being part of the community later in life. I have been single four years. I don\'t know how to talk to people anymore, and feel there may be a lot of expectations or judgments surrounding me being so new, yet older.  \r\nNote: I do have Graves Disease, so this could potentially be a contributing factor.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3469", "Anxiety: related to\r\n \r\nâž¢	Sleep \r\no	Difficulty falling asleep \r\no	Mild somniphobia â†’ Anxious to fall asleep\r\nâž¢	Hobbies\r\no	Exercise â†’ fixated / OCD / canâ€™t focus on anything else until complete unless set time pre determined \r\nâž¢	Physical health\r\no	IBS â†’ flare up when stressed / anxious / nervous \r\no	Eczema â†’ flare up when stressed / anxious / nervous \r\no	Picking â†’ constantly nails (+biting) / skin / chest / face\r\no	Acid Reflux â†’ exercise and stressed induced \r\nâž¢	Work\r\no	Stressed / anxious even when good day ahead/low stress \r\no	Anxious about only working part time \r\nâž¢	Tasks\r\no	Procrastinate despite feeling stressed \r\no	Constantly thinking â€˜what is happening nextâ€™ (canâ€™t live in moment) \r\no	Canâ€™t concentrate \r\n\r\nEmotion: related to\r\n\r\nâž¢	Hobbies: \r\no	Guitar â†’ â€˜what is the pointâ€™\r\no	Video gaming â†’ â€˜brain goes numb donâ€™t have to thinkâ€™\r\no	Exercise â†’ unrealistic goals \r\nâž¢	Affect: \r\no	Inappropriate to the situation \r\nâ€¢	Example: says happy when facial expression, body language, tone of voice all express low/sad/irritable â†’ becomes defensive and irrational when questioned or asked about it \r\nâž¢	Mood: \r\no	Low / sad\r\no	Foggy \r\no	Loss of interest â†’ sex/hobbies/work/exercise \r\no	Angry / irritable / restless \r\no	Glass half empty attitude about everything \r\no	Hopeless \r\nâ€¢	â€œlife isnâ€™t â€˜working outâ€™ no matter what I doâ€\r\nâ€¢	â€œwish/hope work would just let me go so I donâ€™t have to worry about itâ€ \r\no	fear of rejection â†’ distressing/hurtful work feedback from past    \r\n\r\nRelationships:\r\n\r\nâž¢	personal relationships â€“ wife \r\nâž¢	social â€“ talking over people / unable to focus \r\n\r\nPersonal:\r\n\r\nâž¢	self reflection / perspective \r\nâž¢	prayer \r\nâž¢	journaling \r\nâž¢	counselor\r\nâž¢	exercise\r\nâž¢	3 things each day thankful for \r\nâž¢	follow the rabbit trail â€“ ie what is the worst case scenario \r\n\r\nWant:\r\nâž¢	plan\r\nâž¢	goal / marked progress \r\nâž¢	help \r\nâž¢	assessment / diagnosis");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3507", "I have an extensive history of counseling through an abusive marriage, traumatic divorce, grief counseling (Dr. Philip Ney) following death of spouse, single parenting and most recent abusive marriage and presently legally separated.  Recent conflicts and loss and pain caused serious thoughts of suicide over the weekend. Friends and crisis line got me through the weekend. Coping enough to show up at work and exercise. Can\'t pray and can\'t talk to loved ones.  Too scared to communicate with children, pray or go to church.\r\n\r\nMargaret Andersen, please.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3517", "I work M-F until 3:30pm downtown, so appointments outside of that would work best for me. I prefer a female therapist. I have extended health benefits with Empire Life. One of my close friends passed away recently, so I would like counselling in helping to deal with the loss.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3527", "Fiance and I both struggle with severe mood disorders. Looking for premarital / marriage preparedness counselling to help be ready to support each other fully. I am a UVic student, he works as a counter top manufacturer. Prefer a male therapist, but not too picky.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3537", "I was referred to you by Citizens Counselling. I saw a counsellor there last year for depression, anxiety and anorexia. I have had all these issues ongoing on and off for the last 12 years. It became worse last year as I was getting out of an abusive relationship and I sought out help again. I was better for a while after counselling at Citizens,  but it is getting worse again, and I would really like to break this cycle. \r\n\r\nI work Monday-Friday 9-5:30, so sometime outside of that would be ideal. \r\nI do not have a preference in male or female therapist.  \r\nI have no health coverage. $30 is probably all I can afford.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3547", "Looking for a counsellor to help with my depression and mental health concerns. Available throughout the day and evening. I would prefer a male therapist. Currently a Camosun student with the student benefits package.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3580", "I just need someone to talk to. I prefer a female therapist.  I have been a pastor\'s wife for almost 29 years,  As well, I have a job outside of the church.  The past few months I have felt at the breaking point.  I am not certain I need ongoing counselling, I just need a safe listening ear where I can unload everything without fear.   Due to the nature of ministry life, having close friends is not a reality, so I am seeking the next best thing I guess.    My benefits package at work does not cover counselling services.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3681", "My name is Karen Dunahee, I am contacting you on behalf of my niece Hayley.  Hayley, who is turning 19yrs in a few weeks, has very low self esteem and social skills.  She has never really had any friends and isn\'t able to make friendships very easily.  She also has a tough home life.... I took her to counselling when she was 11yrs old because of all the difficulty she had in school and at home but because of her age her parents needed to be informed.  Unfortunately her mother forbade it and made Hayley feel guilty for going and her father didn\'t want to upset his wife.  Now that Hayley is out of the school system, she if feeling very lost... she has no direction, cannot make decisions even about simple things, and doesn\'t understand why she is so different from others.  I love my niece very much and I am very worried about her.  I don\'t know how to help her.... I try to go out for \"coffee\" once a week so that she \"can talk\" and text her daily to say hi but.... how to help her feel better about herself or to get involved with society.... is beyond what I know how to do.  \r\nI have spoken to Hayley about speaking to a professional, she was open to it a little and she didn\'t say \"no\"...but knowing her like I do, I know she just needs help taking the first step.  Obviously, I would get her permission before actually setting up an appointment but all I know how to do, right now, is reach out and get the conversation started for her.\r\nI have left my contact phone number and email to speak with me.  Meanwhile, I will let her know that I have contacted you today.\r\nI hope you can help me to help my niece.\r\n\r\nSincerely\r\nKaren Dunahee\r\n778-430-0670\r\nkmdunahee@shaw.ca");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3709", "I\'m struggling with anxiety and depression and I need some help to overcome these issues so I can live a better, more productive life. I\'m available anytime at the moment. I don\'t have any extended medical benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3764", "I wanted to send you a short email to say thanks for your page, http://localhost:8888/TestSICPage/wordpress/resources-2. I volunteer with a children\'s group, where I help plan different events. One of our members is teaching the teen group about mental health and suicide prevention, so I wanted to find some online resources for it. Your page has some great info for this - thanks so much!\r\n\r\nMy daughter, Alicia, found another page on suicide prevention while helping me research, http://counseling.online.wfu.edu/online-counseling-guide-on-suicide-prevention/ . Can you include this in your list of links? She very passionate about spreading the word about mental health because her cousin has depression, so I thought her sharing her suggestion would give her an extra boost, plus help others online. :-)\r\n\r\nIf you have any advice for our group, feel free to share. Thanks again!\r\n\r\nBest,\r\nDenise Morales");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3783", "I am looking for someone to discuss past issues with and the current state of my mental health. I have been struggling with some depressed feelings and have had several life changes such as deaths of friends and family, and a long term relationship ending. I have not been through formal counselling before, but I think it would be good to be proactive about it before I get worse. I work overnight so days and weekend days work best for me. As far as preference of person, I do tend to open up faster to women because most of my friends and trusted family are, but I\'m happy with anyone as I\'m sure everyone is professional and fantastic. Thank you for taking the time to read this.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3818", "Hello, \r\n\r\nMy name is Danielle Ruhigisha, I\'m part of the committee of mental health at Victor Brodeur, we are organizing a day of mental awareness  at our school and were wondering if there was a representative from your organization that would be willing to come to our school May 9th and set up a kiosk (Table would be provided if you could bring a few promotional objects that would be great) and talk to the students coming around in rotations about what your organization does for youth. \r\n\r\nThank you for your time,\r\n\r\nDanielle");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3827", "I have always been somewhat anxious, but I have had a few incidences of feeling like it got really out of control.\r\n\r\nI am also currently struggling with a situation of my partner\'s, and having a huge increase in anxiety accordingly.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3873", "I have anxiety and phobia problems. I\'m off medication but have been on anti anxiety meds in the past. I have seen Amber Eves before through Waypoint counselling but I need something more affordable. I make about 30k a year and I have a small benefit through my work.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3883", "Me and my girlfriend are looking for couples counselling. We both have trust issues and feel that counselling may be right for us if it is affordable enough. Availability is tough because both of our schedules move around, but weekends or weekdays after 6:30 would likely be best. No preference for male or female therapist. We may have some coverage under extended health benefits. I am a UVic student (back to school in May) and my girlfriend goes to Camosun (Currently). I\'m unsure whether or not UVic/Camosun\'s insurance plans would cover any of the cost. If it does this could be a great option for us.\r\n\r\nThank you for your time.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3915", "Not actually new client. My husband and myself saw Bill Cole for some couples counseling, related to communication issues. I now need one on one counseling for stress, anxiety and anger issues. Do not mind male or female, but I think Bill is more family, rather than individual.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3924", "I cope with depression and high anxiety, and at times I have existential crises. I feel disillusioned with the world as a broke millennial, and betrayed by our classist, capitalist society. Despite holding a university degree, I feel helpless and underprepared in my futile search for gainful employment. I currently work four on-call jobs, and live in a perpetual state of apprehension around when the phone will ring (or not) for my next job. As such, I am theoretically available for an appointment at any time.\r\n\r\nI have no extended benefits as I am primarily self-employed. I have no gender preference for my therapist.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3954", "Depression, loss of energy, alcohol dependency. Feelings of hopelessness, low self-esteem, and general dissatisfaction with life. \r\n\r\nI am available all day Wednesday and Thursday and would prefer a female therapist.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("3975", "Generalized depression, stress and anxiety effecting school, work, relationships.  Gets worse roughly 2 weeks out of a month, has lasted about a year now.  Daily tasks like driving or social occasions have become difficult or stressful and are avoided when overly stressed.  Possibly effecting health in other ways - lack of sleep, appetite, rash on arms, prolonged cold/flu symptoms since November.   Looking for tools to manage my problems, not my reactions to or perceptions of my problems.  No preference of gender for therapist.  I am available some weekdays from 9-11 depending on a changing work schedule, and on the weekends.   Thanks!");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4007", "I am struggling with my work/life balance and feel it is affecting my relationships. Communication is a skill that I have a hard time with and doesn\'t come easily for me and I feel this is also impacting my relationships, especially with my husband.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4017", "suicidal thoughts. No reason to be going through pain. Not caring about life. Stresses include family health concers, Mom recently diagnosed with cancer. In final semester of university for degree, grades have fallen, attendance has fallen. Exams start next week. started changing medication 3.5 weeks ago. currently no effect felt by new ones so at rock bottom. extended health through UVic but that may end May 1st. then I have nothing. No preference on sex of counselor.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4028", "I am struggling with my work/life balance and it is affecting my relationships. Communication is a skill I have trouble with and I also feel it is impacting my relationships, especially with my husband. I would prefer a female counsellor and I have extended benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4051", "Kennedy is taking a medication for depression however I am not sure what it is.  I am her former foster parent and still support her.  I saw this group and offered to pay for it if she thought it would be of benefit.  She agreed so I am registering her.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4081", "Hi there, I work full-time Mon-Friday 830-6ish but do get an hour lunch (not scheduled times).  I have no extended benefits and am lower income.  I make less than $40,000 per year, less than 39,000 even.  I have an adult child who still lives at home but he pays very little towards rent.  I have no preference male or female for a therapist.\r\n\r\nI am dealing with grief and loss (as recent as yesterday, plus 5 months ago and going as far back as 21 years), I have major smiling depression, I have anxiety and sleep issues, I have self confidence issues and many past guilt issues.  I do not take any medication for any depression (firstly I can\'t afford any plus I am not able to remember to take meds daily).  I am having an issue with motivation to do even the simplest of tasks ie: putting away laundry, doing banking, booking appointments.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4093", "Looking to build my Non Violent Communication skill set and work towards building a healthier communication style and softening my \'edges\'. Learn to let go of past issues/arguments. Interested in 1 on 1 counselling or any group courses that may be available.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4118", "I\'m requesting counselling for my son. We have an older son who is special needs, as well as has ADHD and ODD and issues with control and aggression. Our younger son had always been a target of our older son and has become emotionally irregulated due to it.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4141", "After several years of having a low mood I feel it is time to approach it. It has become clear that it isn\'t going to simply pass and it is starting the to have an increasing impact on my day to day life. Currently, it takes hours to get up, I cannot open my email for weeks at a time due to anxiety, avoidance of most commitments including preferred activities. \r\n\r\nI had myself convinced that it was fine and that ultra-endurance cycling would aid with all of this. However, it simply worked by isolating myself from everything for hours at a time. This realisation of avoidance only became clear upon having to spend a few weeks off of the bike due to injuries/medical orders.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4152", "I am a new teacher and in my first classroom. I need help navigating regular work stress and not allowing it to take over my life. I am medicated for Generalized Anxiety Disorder which likely enhances my stress and worry.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4163", "- OCD\'s - I live my life mostly fine with them, but they are affecting my relationship, and they have affected my work in the past\r\n- Need for breathing exercises/therapy? (began holding my breath as a child in sports, and I do it when I sleep now as an adult.  I can explain more, I\'ve been to sleep clinics.  I do not have sleep apnea, and I do not snore.  Holding my breath intermittently while I sleep has affected my last 3 long term relationships in a big way)\r\n- Father is an alcoholic; mother suffers from mental health issues (both sides of my family have experienced (mild?) sexual abuse)\r\n- Am a bit anxious, but feel like that\'s going away now that I don\'t juggle multiple low paying NGO jobs, although still worth working on\r\n(Generally I\'m doing pretty well in life, like my work, and have a lot of friends, but I\'m sure I\'m affected by the latter things, and the former are rearing their heads in my relationship)\r\nPrefer M - F 5 - 8 pm, if possible.  Possibly prefer a female, though maybe either.  No extended health benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4184", "I suffered some severe trauma when I was a teenager (possibly much earlier). I have buried it for 35 years... and now I was triggered a couple days ago and I have so much going on inside I feel like I am disconnected from my own body.  I am emotionally all over the place and I don\'t know how to handle it. It is affecting my work and personal relationship. I am in need of help as soon as possible.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4241", "This is for my 11 year old daughter who has mentioned suicidal thoughts. Her grade 5 teacher just called me saying that my daughter has mentioned her thoughts to the Councillor at the middle school she will be transitioning into this September.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4251", "Allow men to control and use me. Allow them to pressure me into have sex. Dont like who I am. I need to heal. I hang out with drug addicts even though I have been clean for years. I need to learn to trust men.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4273", "I\'m Tara Anderson, Tyler\'s Mom and am the one completing this form and that is my contact info. Tyler has severe social anxiety, some general anxiety and at times has struggled with depression and last Fall had suicidal thoughts. The social anxiety has prevented him from attending \'regular\' school. I\'ve tried smaller class sizes at Westshore Learning and Training, but Tyler didn\'t like his cohort of peers, as Tyler is quite bright and was bored, and it wasn\'t the right fit for him. He is currently doing grade 9 through SIDES online schooling and I\'m working from home to be there for him and to help him. His goal is to return to regular school in the fall as he misses the social interaction, but he\'ll need some great support and tools to overcome his fears and manage his anxiety. Tyler has been bullied at school in his past and was verbally/emotionally abused by his father, who he has refused to see for 6 years, so I think there is also some trauma at the root of his symptoms. For a long time Tyler was not willing to see a counsellor, but is now open to it, so I want to book an appointment as soon as possible before he might close the door again. I\'d prefer a therapist with experience in teens with anxiety, if possible a male might be good, but the main thing is someone Tyler will feel comfortable with, that has the experience to truly help make a difference. I don\'t have extended health benefits, am working in a casual position with Interior Health. Given I\'m working from home the majority of the time (with some travel to Interior as needed) and Tyler is doing school online, we are fairly flexible in our schedule of availability. Thank you, Tara");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4294", "Was in an accident and have a mild tramatic brain injury. I working on neuro rehab at VGH but am looking for a little more support and guidance as I learn to work with my new brain.\r\nMain concerns: loss of self, inconsistent support from the people in my support system, lack of energy most likely due to mood issues (have had testing to rule out medical concerns such as thyroid, iron levels, etc).\r\nPrefer female therapist. I have a little coverage if it is through a registered counselor. On gradual return to work, I am making less money than cost of living. Not available mon 11-2, 6-7, tues 11-2, 7-8, we\'d 3-4, 6-7, thurs 4:30-5:30, fri 11-2, other than that I\'m fairly open.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4317", "My 11 year-old daughter is \"neurodiverse\" (official diagnoses are general LD, developmental coordination disorder, and sensory processing disorder). She recently has expressed some negative self-talk & has been having some food issues at school (self regulation is tricky for her). We don\'t want to over-react, but we also don\'t want to ignore early warning signs/symptoms. We\'d like some professional support to explore these things with her. Wondering if/how/where this might fit within your practice. \r\n\r\nI have extended health coverage for registered counsellors only.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4340", "My mother, Willo Stevenson, has Parkinson\'s Disease. She was diagnosed in 2003. One year ago, she was living at home alone on Salt Spring Island managing her own affairs with regular help, which she organized and paid for herself. She walked with a cane at home and needed a wheelchair or scooter for longer distances. She was first on the waitlist for an independent living facility in Victoria.\r\nIn June 2016 she fell, and while she had only minor cuts and bruises from the fall, her PD symptoms advanced significantly so that she was almost completely helpless. Since then, she has been in acute care at Lady Minto Hospital, acute care at Victoria General Hospital and a rehab program at Aberdeen Hospital. She is now waiting for subsidized placement at a complex care facility in Victoria. She has regained some abilities, but needs a wheelchair for mobility and can only walk several steps with assistance. She can feed herself but needs help with most other activities related to self care. She also has mild cognitive impairment and is no longer able to manage her affairs. I am her daughter and POA. My phone and email are provided in this form.\r\nWillo has struggled with depression for many years, anxiety since her PD diagnosis and now has difficulty controlling her emotions. Maureen at Headway recommended Margaret Anderson as a resource for Willo, who is desperately in need of support with navigating her feelings of grief and loss associated with this major life transition. We would also benefit from Margaret\'s assistance with end-of-life conversations and preparedness.\r\nCurrently, afternoons between 1:00pm and 5:00pm any day of the week are best for Willo\'s schedule. With notice, I have a flexible schedule.\r\nWillo does not have extended health benefits. I do.\r\nMany thanks!\r\nTia Robertson (Willo\'s daughter)");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4362", "I have many issues, and I don\'t know where to begin. I am grieving the loss of my grandmother, and feel I have no safe place to go, or supportive member in my life at times. Will make anytime work. I prefer a therapist who is accepting of all, and everyone; all walks of life. I do not have benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4477", "i am in a 20+ year marriage. I have Rapid Cycling Bi-Polar 1, PTSD, and ADHD. I am on CPP Disability and attending Camosun college. We have 2 children (11,8) My wife is at her wit\'s end living being with me and we fight ALL the time horribly. I need help!!! WE NEED HELP!\r\nPlease call if you can help at all. I have a hard time filling out these forms.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4489", "My daughter and I need counselling to deal with the recent death of her father and anger and fear and loss problems\r\n\r\nPrefer a female counsellor as she is afraid of strange men and afternoons would work best after school. I\'m not employed at this time and struggling so cannot afford much");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4535", "Currently going through a trial-separation with my husband. Feeling depressed and I think I need some help with coping mechanisms and getting myself back. I would prefer a female therapist. My availability is kind of all over the place, but generally Thursday or Friday could work earlier in the morning. Monday late afternoon is available too. I don\'t have benefits, and would need income-based pricing as I\'m a minimum wage worker.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4593", "I am having issues with stress and anxiety about school, work and my social life. I also struggle with anger in my personal relationships. I think I also struggle with a low self-esteem and problems trusting people in my life. \r\nI work two jobs, so my availability is only Thursday or Friday, but any time of day. \r\nI don\'t have a preference for a male or female therapist.\r\nI do have health benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4661", "I have relationship issues that i cant get over with a current relationship that im in. I also have issues from my childhood with past relationships that i feel i never resolved. For example being assulted by my x\'s uncle. Im free 5-8 anyday of the week an female or male therapist is okay!");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4705", "Been experiencing fluctuating anxiety and panic attacks for the last 26 years. Lots of childhood trauma, sexual abuse etc. I have done a lot of counselling in the past and have made great strides. Im currently struggling with unhealthy relationships and choosing partners who are not healthy for me. This is tied into low self esteem. I will be finishing school in the next 4 weeks so currently I can do a 4pm and on appointment but my availability will open up fully after that. I prefer a female counsellor but if there is a long wait then I am open to a male. Im hoping to work with someone who has expereince with anxiety/relationship/childhood trauma issues. Please let me know if I also need to call or if this is sufficiant to get the ball rolling.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4716", "I need counselling for my mother & myself. We have communication problems. I also have history of drug addiction been getting clean for 2 years for my daughter which my mom has custody of.  I am on income assistance.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4738", "I\'m in the middle of a life transition and would like some feedback. I have self esteem issues and anxiety around people, and doing the perceived \"right thing\". As a result, I often have difficulty making decisions, and following through on those decisions.\r\nI work 2-3 jobs 5 days a week, and I often feel too exhausted and apathetic to make the important decisions in my life. \r\nWhile I do work a lot during the day, many of my hours are flexible, but weekday afternoons or anytime on the weekend is preferable for a meeting.\r\nI don\'t have any extend health benefits.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4771", "Hello, \r\n\r\nMy name is Mikke. I moved here recently to start a new life. I have struggled with mental health issues since I was quite young. I was diagnosed with ADHD, most times people with acclimate to this by adulthood, I still struggle with it today. This illness is like a grab bag of mental illness that seem to change in severity at random. Some days I am riddled with ainxiety that it consumes every thought, other days I feel like I\'m drowning in my own depression. Not all days are bad, I\'ve spent a lot of energy trying to self manage myself as I know there are others worse then me. \r\n\r\nI want to start a new life, a better one with genuine happiness. My fear is that I am stuck in these perpetual cycles of which I cannot control. I find myself involuntarily making the same mistakes each time. I can no longer continue trying to self manage these issues, I do not want to continue feeling this way, I do not want to feel like a backseat driver in my own mind. \r\n\r\nI am committed to change, committed to improving my life and mental health. I\'ve come to the conclusion that I need help outside myself. I am low Income, that\'s why therapy has been a difficult challenge for me, even if I know it\'s what I need. I am hoping I can find some help with your services. \r\n\r\nI work Monday to Friday days. \r\n\r\nThank you very much for your time");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4782", "I need help changing negative thought patterns and behaviours in my life. I need to make serious improvement in my stress and anxiety mangement as it is currently affecting my day to day life and relationships. I am very inerested in CBT, and have tried countless ways to better myself but feel I desperately need the help of a professional.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4794", "A lot.. I\'m hoping to make this a regular thing if at all possible. \r\n\r\nI need to work through some of the following:\r\n-self esteem\r\n-childhood abuse\r\n-sexual abuse\r\n-feeling peace in life \r\n-depression/anxiety\r\n\r\n*I am only available Monday during the day, and Tuesday anytime. My work schedule is a bit demanding. \r\n*I also have some health coverage, up to 300, after that I\'d be paying out of pocket.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4871", "I am on long term disability. I manage a bipolar type 1 disorder well with medication and am stable mood wise. I am having significant anxiety. I struggling not to isolate and eject out of my ministry and my relationship. I am engaged and long to heal from past as to not have fear about moving forward. Most difficulty is trusting my own judgement after having regained insight after psychosis. I also desire to renter the work force and my medical recommendation is to see a CBT therapist specializing in anxiety. I can tell you more about my experience iwith such a therapist.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4881", "I am an individual who suffer from depression, anxiety, stress and in a life transition. I recently been self harming in the form of cutting but I don\'t feel that I am suicidal. I would prefer to be counselled by another woman.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4893", "I\'m not gonna make my appointment today. I\'m sorry but I\'ve driven myself into a bit of a spiral so I wish to wait until all the disturbing and shocking news ends before I try to heal. Thank you Bill for giving me a shot but I just can\'t do it today. I have no phone until the 27.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4951", "I am currently dealing with a lot of anxiety related to my body image, I have been struggling to lose weight over the course of the year, despite going to the gym, hot yoga, 10k runs all during the week. I am hoping to get some help with the anxiety that I have been feeling, and hope to try and reduce the panic attacks I feel.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("4992", "Chronic depression (diagnosed) that ebbs and flows, but my bigger concern right now is my anxiety (undiagnosed). I have been having flare-ups and \"attacks\" that paralyze me. For background: I recovered from anorexia as a teenager and benefited from inpatient treatment and a combination of DBT/CBT methods. Afterward came an addiction to cocaine, but I have been clean for 6 years. I believe that it all stems from the trauma of losing my mom to breast cancer when I was nine years old. I am a high-achieving, hard-working, and educated individual, but I am haunted every night by voices in my head that leave me in tears.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5014", "Acute Situational Depression. Severe enough to be held in emergency at the Royal Jubilee. Having extremely difficult time dealing with a breakup from someone I work with (sits right next to me). The breakup has caused me to have a lot of difficulties with how to move on, internal anger, hopelessness, loss of self esteem, inability to understand, and more. The relationship was very complicated and I\'m trying to prevent it from doing long term mental/emotional damage. Had suicidal thoughts at points.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5070", "Hi, I have a friend who is Canadian citizen 40 years old (his name is mohammed) who has lots of mental issues. Has been in Canada for 10 years and was once a refugee. Depression,\r\nanxiety, suicidal  ideation, other stuff I don\'t know how to describe.\r\nSuffered in last job with something that makes him disassociates\r\nfrom one\'s surrounding and got laid off and now on EI. I would like to help him see a psychologist please!! You can email me or phone me..");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5082", "i have struggled with bulimia and anorexia for most of my adult life though I received previous counselling for it and it has been very manageable for much of the past 5 years, however it has recently become a significant problem for me again and I think speaking to someone about it again would be a smart thing for me to do.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5093", "Chronic pain (fibromyalgia), severe anxiety (GAD and social anxiety worsening again), depression. My ability to manage everything is very up and down, but it\'s been getting progressively more unmanageable. I have been seeing a trauma-focused therapist for the past few months, but am having difficulties affording it on a regular basis (I\'m on a very low income). I would be grateful for any additional support you could provide.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5126", "Seeking counselling for concerns regarding personal relationships, stress management, and self esteem and self worth. \r\nI recently left a short term romantic relationship with a self described abuser, as well as a relationship earlier this year with someone who was grieving the loss of a parent. \r\nI am seeking counselling to discuss and find solutions regarding my relationship with my mother, and stress management from my job as a young stage manager. \r\n\r\nPreferred appointment times: Monday evenings 5-8 (first choice), Tuesday - Friday 9-5");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5137", "I\'ve been experiencing deep grief and distress triggered by my friend\'s current domestic abuse. She is leaving an abusive relationship and it\'s bringing up a lot of pain from my own past history. \r\nSymptoms include: deep sadness, distrust of men; distrust of relationships; numbness; anger; hopelessness; inability to focus;");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5211", "Have recently lost a friend to suicide, and have lost many family members over the past few years. I have just moved here from NL and am trying to get my own business running...don\'t have a strong support system in place. Have struggled with anxiety and depression for years and need affordable counselling.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5235", "History of depression and anxiety, ptsd from psychiatric hospitalization, difficulty related to the previous in maintaining emotionally intimate relationships. Recently have felt more intense unpleasant feelings and depressed thoughts than usual.\r\n\r\nI have seen a handful of different counsellors since 2010, and most recently couldn\'t make the schedule work with a counselor i had seen for 3 years.\r\n\r\nI would prefer to talk to a male counselor, as i have primarily seen female counselors and i think that it would help to talk about certain issues with a male.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5245", "My name is Margaret Manville and I have a daughter Eryn who is 12 years old.  She is usually a great, happy kid but struggles with issues of self esteem and acceptance at school due to her weight.  I don\'t believe she is being bullied but she is very self conscious.  We have been dealing with this for many years, and would appreciate some advice/help with this issue of how to support her to love/accept herself as she is.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5256", "Hi there,\r\n\r\nI am going through a hard time dealing with my anxieties. I have insecurities that started from a young age.\r\nIn my everyday life i tend to have:\r\n- Social anxiety. \r\n- Constant fear of the future/ being alone / cheating / failing / judgment / not being good enough /\r\n    not knowing what I want from life and school / not feeling emotionally secure or safe....etc.\r\n\r\n \r\nBut I would like to have some help dealing mostly with my:\r\n- Social anxiety.\r\n- Emotional attachment. \r\n\r\nThank you.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5266", "Anxiety/mood disorder information, substance and food abuse as a result of a mood disorder, developmental sexual trauma and current grief from loss. Issues with trust in personal and professional relationships. Currently in an emotional state of apathy and depression, following an extended period of mania (at least 12 weeks). No theology, please.\r\nMondays 9am-9pm\r\nTuesday- Saturday 6pm- 9pm");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5276", "Moved to BC in April 2017, transitioning.  Seeking employment.  Family aging.  Difficulty maintaining daily routines/schedules.  Aging (just turned 61).  Mother passed in 2015, family dynamics are changing causing various stresses.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5314", "Stress management, suspected depression, social withdrawal and food/eating issues.\r\n\r\nAnother consideration - one of my work colleagues, Jamie McCrum, is a volunteer counsellor with your organization.  She is very good about confidentiality, but I wonder if it is possible for me to access your services without her knowledge or participation?");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5325", "Generalized Anxiety Disorder (including OCD);  depression;  loss;  grief (as well as \"tertiary grief\").  After an appointment with the above chaplain, I have decided that I need help in working on these issues, for the sake of further healing.\r\n\r\nI am a member of a faith community (Roman Catholic).");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5338", "i need someone to bounce all my thoughts off of instead of certian thoughts to certain people , my doctor told me to get councdling before but i didnt believe in it. There are a lot of things i need help with");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5350", "i need someone to bounce all my thoughts off of instead of certian thoughts to certain people , my doctor told me to get councdling before but i didnt believe in it. There are a lot of things i need help with");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5400", "I prefer female counsellors to male, as I have a much more difficult time relating and opening up to males.\r\n\r\nIve been facing a lot of issues with depression, anxiety, and some resurging anger/frustration.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5411", "I prefer female counsellors to male, as I have a much more difficult time relating and opening up to males.\r\n\r\nIve been facing a lot of issues with depression, anxiety, and some resurging anger/frustration.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5446", "Anxiety and panic, depression, I was also sexually assaulted and am trying to cope with that. I had a consult with the anxiety clinic and they recommended I contact you due to the affordable sliding scale you use.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5530", "Dealing with PTSD and Schizophrenia. Feel extremely unstable, depressed, unable to work full time. Have family issues, in debt, I think people through demonic entities are trying to kill me and or driving me to take  my own life. unable to develop disciplined good habits and routine. Insomnia, paranoia, hallucinations, sex addiction, drug addiction. Extremely complicated. Have been seeing a registered councilor, made 5 visits at $230 per visit. Not seeing any significant improvement. I feel helpless and unable to cope. Believe in God and regularly communicate with him but feel a extraordinary force of evil at ever corner and am unable to enjoy life.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5543", "Depression and Anxiety\r\n\r\nSeverely mentally ill father whose care has been left solely for me to deal with\r\n\r\nDifficult familial relationships \r\n\r\nFinancial stress\r\n\r\n\r\nJennifer is my partners counselor, if possible I\'d like to see someone different");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5630", "My 17 year old daughter suffers from extreme anxiety and depression and is self medicating with marijuana and street Xanax. She has left my home last week and is staying with her drug addicted boyfriend and his parents. She is very angry with me and her older siblings, who live at my house, and refuses to come home or get help. I could really use some advice and counselling on how to handle this situation as the mom. Ultimately, we could use some family counselling to reunite our family. This is beyond my scope of experience and I am desperate to save my daughter before it is too late.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5694", "PTSD (Diagnosed 3 yrs ago) Panic attacks, Relationship issues (accute and contributing to my anxiety), feeling confused and helpless, interfering with work, past trauma\r\nMy mental health needs are critical at the moment. \r\n\r\nI do not work Fridays and am available all day. Amber called me today while I was working. I will return her call at 6pm as indicated.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5721", "I feel as though I have been cycling through the same challenges in my life for most of my adult life, it\'s held me back, and I\'m looking to get ahead of it. I\'ve tried on my own, each time failing to varying degrees. I would love some help in getting past this.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5908", "My husband and I are experiencing a great deal of conflict and stress within our relationship.  My husband is mentally ill, which is an ongoing struggle, but I would prefer to have each of us present our sides of this struggle in person.  We have two young children and I am trying my absolutely best to keep the conflict from having a negative impact on them.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("5993", "I struggle with anxiety (generalized anxiety disorder, panic disorder) & depression. I have been to different counsellors over the years for talk therapy but would really like to start a therapy with more distinct goals. Something like CBT or DBT but I\'m open to anything that might help me.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6040", "We have been married for 13 years. We have two kids.  We have had communication issues. We both have had work stress and health issues. \r\nWe want to communicate better and resolve some issues. We need coping strategies.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6074", "I would like to find new ways to cope with my anxiety, mostly social anxiety. I would like to develop ways to practice being more assertive in my daily life. I would like to refrain from using drugs (cocaine) to help cope with anxiety.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6140", "Unrelenting depression, hopelessness about my future, many/most times wishing there wasn\'t a future. Have been single for 4 years, no friends, social anxiety. Re-traumatized by all the sex abuse things in the news. I was \"date raped\" at 16 years of age. In the last few months I have had a strong sexual aversion. If people would even kiss in a movie I would be disgusted and have to fast forward. I currently work part time, am underemployed and dislike my job. I suffer from Crohns and Colitis. I am also dealing with pure O of OCD which seems to be getting worse in the form of panic attacks and nightmares. I could write more but that would be overwhelming.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6153", "I have experienced symptoms of depression back and forth for some time, and am currently in a rather dark place. I have previously seen counsellors and found that a constructive approach to breaking negative thought patterns helps. I\'m hoping I can be elegible although I am not (yet) a Canadian citizen.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6165", "I\'m actually looking for counselling for my husband and I together. We have communication issues that I feel we cannot work through by ourselves and I\'m looking for someone to help us.\r\nWe are available anytime after 3:30 Monday, Tuesday, Thursday, Friday.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6208", "Need an up to date mental health assessment and weekly counselling. Diagnosed depression and anxiety disorders. \r\n\r\nWould like to get tested for and discuss mood disorders as I\'ve I am having difficulty controlling my emotions and have family history of BPD and bipolar disorder. \r\n\r\nI am not interested in medication.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6263", "Plenty of concerns regarding how Iâ€™ve managed being adopted and the secret of said adoption within my family and my upbringing. Plus Iâ€™m expecting my first child with my partner which I love to pieces but we argue to a point that makes me believe counselling is needed for myself or for us collectively.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6273", "Social Anxiety, Depression, academic pressure, relationship advice (how to maintain healthy relationships and fix existing problems), self image/esteem, coping mechanisms for early childhood trauma, coping mechanisms for panic attacks.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6284", "Iâ€™m 5yrs into relationship, 1.5yr married. Also itâ€™s been 2yrs since I met my birth sister. She is older was adopted before my birth, now found me, now lives in Victoria from Ont. 6mths... she moved in with us till , a huge fight between she and my partner, they do not get along, Iâ€™m caught in the middle and need help with setting boundaries, what are appropriate boundaries for my situation. Iâ€™m recovering from PTSD brought on by three MVAâ€™s in 9mths, 6yr ago, compounding long term childhood incest. Stress is daily.... I have had a lot of counseling on and off over the past 30 yrs.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6296", "I believe I may have Body-Focused Repetitive Behavior (a habit in which I constantly pick at skin imperfections). From what I\'ve read it may be a form of OCD. I don\'t know but it is interfering with my life and I\'d like to stop. \r\n\r\nI am available Tuesdays or Wednesdays between 9:30am and 2pm.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6351", "Family unity is our desired outcome. Presently, we have respect issues, resentment, and anger rule our home.  Unkind words are said, and behaviour remains unchanged for all parties.   My older son has anxiety issues that impact his health and well-being.  My younger son is unhappy, and will not divulge his concerns to me - only to his brother, if at all. I am in the grips of a major depressive episode and have anger and anxiety issues as well. There has been a lot of grief to process as well, with the loss of both of my parents, and my brother over the past 5 years.  Faking it isn\'t working anymore and we need help working our way back to peace and some semblance of peace.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6456", "Hello,\r\n\r\nMy friend Daniel recommended Margaret to me. I have experienced a number of losses this year--my father died, then my mentor, and then my counsellor. My grief is complicated by the fact that I have bipolar disorder, and I have been severely depressed and unable to work since February.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6468", "Iâ€™ve seen a few Counsellors in the past, and have been working with my doctor since May 2017 to find someone affordable that I can continue to see. I have been diagnosed with Anxiety, depression and PTSD in the past. I was on Citalopram for a year and a half, and successfully was off prescription meds for almost 10 months. Recently I have gone back into antidepressants, as my luck finding a Counsellor is not working well. I am finding life hard to cope, and missed a lot of work due to depression and anxiety. I used to be a competitive horseback rider, but last year I lost my horse that I rescued due to colic. I havenâ€™t been able to go to the barn and see my other horse, or ever ride since then. I have constant dreams where I can see events from the night he died over and over. In September, a close friend to me died in a motorcycle accident, and it extremely affected me to the point of getting night terrors again, losing lots weight from stress, and quitting my job. My boyfriend and I also had to move out of our home due to mold on Boxing Day, and currently are living in a hotel. I am always stressed and in an agitated mood. I am wanting to be able to work through this and these feelings so I can live a semi â€œnormalâ€ life again.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6547", "I am writing in behalf of my partner, Brent Yardley, who is a skilled worker  at a company in Sidney, BC,. From 2006 to the present, his wages remain the same.  It was because of a  self study course of 20 books requirement  for reclassification,  which he could not do.   Brent is a slow reader, usually overwhelmed with words and gets distracted, confused when he reads books or any reading materials.  He could not comprehend what was read.  In this regard, we thought that he should be assessed professionally for a learning disability or dyslexia.  This professional assessment will pave the way for him to bring the matter to the employer to change specifically the rule for reclassification for workers like  him who have a learning disability. \r\n\r\nWe look forward to your kind help.  \r\n\r\n\r\n\r\n\r\n him for promotion due to what he can not do. to the employer his");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6569", "Depression and anxiety-- acute hopelessness, fixation on mortality and purpose, feelings of inferiority, undue stress about work, inappropriate sense of guilt, lack of energy, troubled sleep. I work 8-4 M-F so evening appointments would be ideal.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6602", "I would actually like counseling for my 7 year old daughter, she has anxiety and is having problems dealing with my separation from her father and his lack of parenting.  I also have anxiety and am low income with PWD designation for rheumatoid arthritis/fibromyalgia, but I\'m more concerned about her.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6668", "I have always struggled with anxiety, it presented itself as an eating disorder as a teenager and as an adult it has evolved into anxiety around self esteem, relationships and trust issues. Iâ€™ve had a very stressful year - break up, moving house, finishing university, new job, making a decision to move home to Canada after living overseas for five years. I just feel like Iâ€™m not coping with my anxiety at the moment.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6680", "I am a student at UVic and was referred to the centre by my doctor. In the past I have struggled with mainly borderline personality disorder, as well as depression and anxiety. I have found that DBT therapy has helped me enormously. I have recently been struggling with my mood and was hoping for some weekly or biweekly counselling to give me some support. Since I am a university student, I do not have much money to spend on counselling and South Island Centre seemed like the best option. My hope is that I can be connected with someone who is well-versed in DBT therapy.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6692", "At the end of June, I returned to Canada after 16 years of working overseas in Indonesia and East Timor. My husband is from East Timor, and remains there for now as we go through the process of Immigration. I invested alot of myself in my work on the other side of the world, and now I am trying to figure out where I fit back here in Canada. This is prompting in me some issues around self-confidence, as well as motivation and sense of purpose. I am interested in counselling to help me: 1) integrate all of these changes; 2) recognise and honour my strengths and skills; 3) find more purpose; 4) help me to develop more positive coping strategies. I have two children, 14 and 12 so daytime appointments are better for me.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6726", "I have been struggling with depression and anxiety for as long as i can remember. I feel as though it stems from my childhood and parental relationships, specifically my dad (being emotionally unattached). Itâ€™s important to note that he is recently remarried. I have come to him before and tried to explain my issues yet he was unwilling to listen.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6737", "recently ended a long term relationship; going through a lot of self growth and reading Brene Brown\'s books which are terrific and helpful, but looking to work with someone on a bit more; concerned about communication skills in the past and into present;");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6749", "Significant anxiety related to financial and marital concerns.  Had to seek medication to help with sleep which I only want to do on a very short-term basis.  Seeking financial assistance with a financial advisor but am struggling to get through the days and focus and be able to sleep/eat etc.  Our home/retirement plans may be compromised due to these financial events which were based on some bad decisions on my part.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6808", "I suffer from anxiety and depression. I was a student at camosun college and was doing very well and then I started to experience severe anxiety. I dropped out for this semester because I couldnâ€™t sleep or really even leave my house.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6857", "I feel like I constantly yoyo between feeling very anxious, depressed and hating myself and then feeling on top of the world and loving everyone. It scares me and is making it hard to have relationships with people and keep up with work.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6881", "My name is Jessikah Moe, and I am looking for counseling on behalf of my son. My son, DahKarai, is having many issues at school this last year in regards to his anger outbursts, and it is now to the point where his teachers feel unsafe bringing him on field trips due to his unpredictable behavior. We just moved here from Calgary, so my son needs some more support in dealing with his anxiety, depression, and anger. He used to see a counselor back in Calgary, and I am a counselor as well so he is used to the process. My son has witnessed and experienced many forms of abuse and domestic violence in his life time, and since moving here it definitely appears that his issues relating to that trauma have gotten significantly worse. I am a single mother so I would appreciate any sliding scale opportunities your agency may have.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6906", "I am not entirely clear on the exact concerns but understand that I am in a state of self work and am coming across some barriers that I can\'t seem to find a solution to.  I am hoping for assistance in working through the things I can\'t seem to see around and developing new perspective and tools to aid in further growth.\r\nI can say luckily, I am not dealing with any severe trauma or depression, usually fairly even keeled.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6918", "I am looking to find a counsellor to deal with anxiety/depression following a series of work place bullying issues over a 4 year period. Mr. Beattie was the chief investigator and has recommended I contact Amber Eves to inquire if she is current taking new clients. I would like to find out if there is possibility for an initial interview to determine if your program would be a good fit for the issue I am working on.  i have strong background in Psychology as well as a M.Ed in Special Education which could be a help with counselling but also a challenge.  I am looking for someone who can use CBT approaches with me and explore what is really going to help. \r\n\r\nThe Diocese of Victoria will be paying for the first 10 sessions of my therapy.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6943", "A few things. \r\n1. Grief. Someone I really loved died before Christmas at the age of 46, he was an alcoholic. I keep thinking it will get better on its own, but I\'m still angry, and it\'s affecting my life and my relationship\r\n2. Since this event, the pre-existing anxiety that I had gotten really good at dealing with has gotten a lot worse. \r\n\r\nPreferences: I prefer to speak with women, who are older than me, otherwise I struggle to open up.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6956", "I am very frustrated with myself as I have been trying to loose weight and instead I gain weight, lose a bit and gain.  I have tried different methods and about 1 year ago, started to loose and lost about 30 pounds.  I did have an accident and hurt hip and gained it back.  I am interested in CBT, I have seen books at Chapters and there are workbooks, I would need help to do this. I live alone which does not mean it makes it easier. I also do not have a job and have trouble finishing things I start.\r\n\r\nIf there is CBT counselling available, I would like to change the inside.  I do pray and have a religion, but my weight is so bad, I do not want to try new things.  I am still having my hip heal.\r\n\r\nPlease call me in the mornings when you are ready to set up an appointment.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("6995", "I lost my job at the end of last year and it\'s very stressful and I am depressed.\r\nI need some feedback from a counselor to help me with my depression and other emotional issues.\r\nAs well I would like to get some feedback on how I can address my problem.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("7008", "*processing family of origin dysfunctionality \r\n*recently discovered parents â€˜functional alcholismâ€™ has amplified in retirement \r\n*primary relationship strain\r\n*professional challenges \r\n\r\n(Please, I would prefer a counsellor other than my current mentor, Margaret Anderson, thank you)");
INSERT INTO `wp_rg_lead_detail_long` VALUES("7031", "Marital difficulties. My husband has mood swings, is including me less in decision-making.....he displays behaviors that make it extremely challenging to get along with him.\r\nWe\'ve been to marriage counseling in the past. I\'ve spoken privately to his former GP re his inappropriate behaviors.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("7094", "Present concerns are realtionship and sexual issues. I feel quite powerless and unhappy in my life. I have never seen a councillor on a regualar bases and i think its time, because i also have unresolved childhood trama.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("7107", "My girlfriend and I are looking for relationship counselling. She has not been feeling respected, as for a while I was hoping that she would change. As a result, she has developed some confidence issues.\r\nI am looking for techniques and advice to help me respect our differences more.\r\nShe is looking for advice on how to respect herself more and not be as sensitive to disrespect.");
INSERT INTO `wp_rg_lead_detail_long` VALUES("7168", "Hi there. I\'m looking to find a counsellor or psychologist that would be able to provide counselling via Skype. My boyfriend is currently living in Brazil (he moved there 7 months ago), and is feeling lonely, helpless and depressed. He has mentioned considering suicide.\r\nHe went to see a counsellor in Brazil, but he finds the cultural differences to be a huge barrier. He feels that they cannot understand him nor help him there.\r\n\r\nIs this a service that you would be able to provide?");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("13", "102", "0");
INSERT INTO `wp_term_relationships` VALUES("21", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("22", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("26", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("32", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("133", "102", "0");
INSERT INTO `wp_term_relationships` VALUES("183", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("274", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("274", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("274", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("274", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("274", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("274", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("274", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("274", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("277", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("277", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("277", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("277", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("277", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("277", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("369", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("369", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("369", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("369", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("369", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("369", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("371", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("371", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("371", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("371", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("371", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("371", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("388", "29", "0");
INSERT INTO `wp_term_relationships` VALUES("558", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("604", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("605", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("606", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("607", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("608", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("611", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("612", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("614", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("615", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("616", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("617", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("618", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("619", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("620", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("625", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("625", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("625", "21", "0");
INSERT INTO `wp_term_relationships` VALUES("627", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("627", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("629", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("629", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("701", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("701", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("759", "29", "0");
INSERT INTO `wp_term_relationships` VALUES("806", "26", "0");
INSERT INTO `wp_term_relationships` VALUES("806", "28", "0");
INSERT INTO `wp_term_relationships` VALUES("833", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("837", "27", "0");
INSERT INTO `wp_term_relationships` VALUES("11896", "44", "0");
INSERT INTO `wp_term_relationships` VALUES("11897", "44", "0");
INSERT INTO `wp_term_relationships` VALUES("11898", "44", "0");
INSERT INTO `wp_term_relationships` VALUES("11899", "44", "0");
INSERT INTO `wp_term_relationships` VALUES("11900", "44", "0");
INSERT INTO `wp_term_relationships` VALUES("12649", "44", "0");
INSERT INTO `wp_term_relationships` VALUES("12966", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("12971", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("12972", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("12985", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("12986", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("12987", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("12988", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("13071", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("13071", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("13071", "74", "0");
INSERT INTO `wp_term_relationships` VALUES("13071", "75", "0");
INSERT INTO `wp_term_relationships` VALUES("13077", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13080", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13082", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13083", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13084", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13101", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13105", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13106", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13108", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13112", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13113", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13145", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13261", "51", "0");
INSERT INTO `wp_term_relationships` VALUES("13262", "51", "0");
INSERT INTO `wp_term_relationships` VALUES("13567", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("13739", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("13739", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("13760", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("13760", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("13760", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("13760", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("13760", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("13760", "78", "0");
INSERT INTO `wp_term_relationships` VALUES("13768", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("13768", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("13768", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("13768", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("13768", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("13768", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("13768", "78", "0");
INSERT INTO `wp_term_relationships` VALUES("13801", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("13801", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("13813", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("13813", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("13813", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("13813", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("13813", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("13813", "63", "0");
INSERT INTO `wp_term_relationships` VALUES("13813", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("13813", "78", "0");
INSERT INTO `wp_term_relationships` VALUES("13900", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("13900", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("13973", "63", "0");
INSERT INTO `wp_term_relationships` VALUES("13973", "78", "0");
INSERT INTO `wp_term_relationships` VALUES("13973", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("13979", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("13979", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("13979", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("13995", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("13995", "81", "0");
INSERT INTO `wp_term_relationships` VALUES("14112", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14112", "81", "0");
INSERT INTO `wp_term_relationships` VALUES("14118", "27", "0");
INSERT INTO `wp_term_relationships` VALUES("14174", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("14174", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("14174", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("14174", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("14174", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14174", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14200", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("14200", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14200", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14200", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14235", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("14235", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("14235", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("14235", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14235", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14235", "78", "0");
INSERT INTO `wp_term_relationships` VALUES("14235", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14247", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("14268", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("14268", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14268", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14270", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("14270", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("14270", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("14270", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14270", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14270", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14278", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("14278", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14278", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14297", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14297", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14297", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14297", "81", "0");
INSERT INTO `wp_term_relationships` VALUES("14311", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14311", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14311", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14311", "81", "0");
INSERT INTO `wp_term_relationships` VALUES("14369", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("14369", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("14369", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14369", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14369", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14376", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14376", "63", "0");
INSERT INTO `wp_term_relationships` VALUES("14376", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14376", "78", "0");
INSERT INTO `wp_term_relationships` VALUES("14376", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14382", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("14382", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("14382", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("14382", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14382", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14408", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14408", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14408", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14408", "81", "0");
INSERT INTO `wp_term_relationships` VALUES("14469", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("14595", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("14595", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("14595", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14597", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14597", "82", "0");
INSERT INTO `wp_term_relationships` VALUES("14609", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("14629", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("14629", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14629", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14629", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14654", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14654", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14654", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14654", "82", "0");
INSERT INTO `wp_term_relationships` VALUES("14673", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14673", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14673", "81", "0");
INSERT INTO `wp_term_relationships` VALUES("14676", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14676", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14676", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14676", "83", "0");
INSERT INTO `wp_term_relationships` VALUES("14705", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("14705", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14705", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14746", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14746", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14746", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14746", "81", "0");
INSERT INTO `wp_term_relationships` VALUES("14752", "73", "0");
INSERT INTO `wp_term_relationships` VALUES("14752", "77", "0");
INSERT INTO `wp_term_relationships` VALUES("14752", "79", "0");
INSERT INTO `wp_term_relationships` VALUES("14752", "81", "0");
INSERT INTO `wp_term_relationships` VALUES("15276", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("15469", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("15498", "102", "0");
INSERT INTO `wp_term_relationships` VALUES("15499", "102", "0");
INSERT INTO `wp_term_relationships` VALUES("15500", "102", "0");
INSERT INTO `wp_term_relationships` VALUES("15501", "102", "0");
INSERT INTO `wp_term_relationships` VALUES("15575", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15576", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15577", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15578", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15579", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15581", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15582", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15583", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15585", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15588", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15589", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15590", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15591", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15628", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("15720", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("15732", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("15798", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("15801", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("15804", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("15807", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("15860", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("15863", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("15896", "25", "0");
INSERT INTO `wp_term_relationships` VALUES("16074", "104", "0");
INSERT INTO `wp_term_relationships` VALUES("16077", "104", "0");

/* INSERT TABLE DATA: wp_term_taxonomy */
INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("3", "3", "nav_menu", "", "0", "5");
INSERT INTO `wp_term_taxonomy` VALUES("5", "5", "events_tags", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "events_tags", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("7", "7", "events_tags", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "nav_menu", "", "0", "14");
INSERT INTO `wp_term_taxonomy` VALUES("9", "9", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("10", "80", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("11", "10", "events_categories", "", "0", "11");
INSERT INTO `wp_term_taxonomy` VALUES("12", "11", "events_categories", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("13", "12", "events_categories", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("14", "13", "events_categories", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("15", "14", "events_categories", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("16", "81", "events_categories", "", "0", "13");
INSERT INTO `wp_term_taxonomy` VALUES("17", "15", "events_categories", "", "0", "8");
INSERT INTO `wp_term_taxonomy` VALUES("18", "82", "events_tags", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("19", "83", "events_categories", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("20", "16", "events_tags", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("21", "17", "category", "Courses offered in 2014", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("22", "18", "events_categories", "", "0", "14");
INSERT INTO `wp_term_taxonomy` VALUES("23", "84", "events_tags", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("24", "19", "events_tags", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("25", "20", "nav_menu", "", "0", "15");
INSERT INTO `wp_term_taxonomy` VALUES("26", "21", "events_categories", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("27", "22", "events_categories", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("28", "85", "events_tags", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("29", "23", "ml-slider", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("30", "24", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("31", "25", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("32", "26", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("33", "27", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("34", "28", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("35", "29", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("36", "30", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("37", "31", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("38", "32", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("39", "33", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("40", "34", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("41", "35", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("42", "36", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("43", "37", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("44", "38", "dt_benefits_category", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("45", "39", "dt_logos_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("46", "40", "dt_benefits_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("51", "45", "dt_testimonials_category", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("52", "46", "dt_testimonials_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("53", "47", "nav_menu", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("54", "48", "post_format", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("55", "49", "post_format", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("56", "50", "post_format", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("57", "51", "post_format", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("58", "52", "post_format", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("59", "53", "post_format", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("60", "54", "post_format", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("61", "55", "nav_menu", "", "0", "17");
INSERT INTO `wp_term_taxonomy` VALUES("62", "56", "events_tags", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("63", "57", "events_categories", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("64", "58", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("66", "60", "dt_portfolio_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("67", "61", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("68", "62", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("69", "63", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("70", "64", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("71", "65", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("72", "66", "dt_gallery_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("73", "67", "events_categories", "", "0", "27");
INSERT INTO `wp_term_taxonomy` VALUES("74", "68", "events_tags", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("75", "86", "events_tags", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("76", "87", "events_tags", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("77", "69", "events_categories", "", "0", "11");
INSERT INTO `wp_term_taxonomy` VALUES("78", "70", "events_categories", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("79", "71", "events_categories", "", "0", "19");
INSERT INTO `wp_term_taxonomy` VALUES("80", "72", "events_tags", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("81", "73", "events_categories", "", "0", "8");
INSERT INTO `wp_term_taxonomy` VALUES("82", "74", "events_categories", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("83", "75", "events_categories", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("84", "76", "events_categories", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("85", "77", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("86", "78", "events_categories", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("88", "88", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("89", "89", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("90", "90", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("91", "91", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("92", "92", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("93", "93", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("94", "94", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("95", "95", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("96", "96", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("97", "97", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("98", "98", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("99", "99", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("100", "100", "product_visibility", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("101", "101", "product_cat", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("102", "102", "nav_menu", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("103", "103", "elementor_library_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("104", "104", "elementor_library_type", "", "0", "10");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("3", "Sidebar Left Menu", "sidebar-left-menu", "0");
INSERT INTO `wp_terms` VALUES("5", "Pastoral Care", "pastoral-care", "0");
INSERT INTO `wp_terms` VALUES("6", "Elderly", "elderly", "0");
INSERT INTO `wp_terms` VALUES("7", "End-of-Life", "end-of-life", "0");
INSERT INTO `wp_terms` VALUES("8", "Left Sidebar Menu", "left-sidebar-menu", "0");
INSERT INTO `wp_terms` VALUES("9", "Grief and Loss", "grief-and-loss", "0");
INSERT INTO `wp_terms` VALUES("10", "Grief &amp; Loss", "grief-loss", "0");
INSERT INTO `wp_terms` VALUES("11", "Marriage Preparation", "marriage-preparation", "0");
INSERT INTO `wp_terms` VALUES("12", "Mid-Life Directions", "mid-life-directions", "0");
INSERT INTO `wp_terms` VALUES("13", "Enneagram", "enneagram", "0");
INSERT INTO `wp_terms` VALUES("14", "Family Systems", "family-systems", "0");
INSERT INTO `wp_terms` VALUES("15", "End of Life", "end-of-life-2", "0");
INSERT INTO `wp_terms` VALUES("16", "mid-life direction", "mid-life-direction", "0");
INSERT INTO `wp_terms` VALUES("17", "Currently Offered Courses", "currently-offered-courses", "0");
INSERT INTO `wp_terms` VALUES("18", "Life Transitions", "life-transitions", "0");
INSERT INTO `wp_terms` VALUES("19", "marriage preparation", "marriage-preparation-2", "0");
INSERT INTO `wp_terms` VALUES("20", "HeaderMain", "headermain", "0");
INSERT INTO `wp_terms` VALUES("21", "Annual General Meeting", "annual-general-meeting", "0");
INSERT INTO `wp_terms` VALUES("22", "Fundraising Event", "fundraising-event", "0");
INSERT INTO `wp_terms` VALUES("23", "817", "817", "0");
INSERT INTO `wp_terms` VALUES("24", "Blog category 01", "blog-category-01", "0");
INSERT INTO `wp_terms` VALUES("25", "Blog category 02", "blog-category-02", "0");
INSERT INTO `wp_terms` VALUES("26", "Blog category 03", "blog-category-03", "0");
INSERT INTO `wp_terms` VALUES("27", "art", "art", "0");
INSERT INTO `wp_terms` VALUES("28", "business", "business", "0");
INSERT INTO `wp_terms` VALUES("29", "corporate", "corporate", "0");
INSERT INTO `wp_terms` VALUES("30", "dream-theme", "dream-theme", "0");
INSERT INTO `wp_terms` VALUES("31", "presscore", "presscore", "0");
INSERT INTO `wp_terms` VALUES("32", "theme", "theme", "0");
INSERT INTO `wp_terms` VALUES("33", "themeforest", "themeforest", "0");
INSERT INTO `wp_terms` VALUES("34", "wordpress", "wordpress", "0");
INSERT INTO `wp_terms` VALUES("35", "Albums category 01", "albums-category-01", "0");
INSERT INTO `wp_terms` VALUES("36", "Albums category 02", "albums-category-02", "0");
INSERT INTO `wp_terms` VALUES("37", "Albums category 03", "albums-category-03", "0");
INSERT INTO `wp_terms` VALUES("38", "captions1", "captions1", "0");
INSERT INTO `wp_terms` VALUES("39", "color-logos", "color-logos", "0");
INSERT INTO `wp_terms` VALUES("40", "no captions", "no-captions", "0");
INSERT INTO `wp_terms` VALUES("45", "What Our Clients Are Saying", "testimonials-category-01", "0");
INSERT INTO `wp_terms` VALUES("46", "Testimonials category 02", "testimonials-category-02", "0");
INSERT INTO `wp_terms` VALUES("47", "testing", "testing", "0");
INSERT INTO `wp_terms` VALUES("48", "Gallery", "post-format-gallery", "0");
INSERT INTO `wp_terms` VALUES("49", "Aside", "post-format-aside", "0");
INSERT INTO `wp_terms` VALUES("50", "Image", "post-format-image", "0");
INSERT INTO `wp_terms` VALUES("51", "Video", "post-format-video", "0");
INSERT INTO `wp_terms` VALUES("52", "Quote", "post-format-quote", "0");
INSERT INTO `wp_terms` VALUES("53", "Link", "post-format-link", "0");
INSERT INTO `wp_terms` VALUES("54", "Status", "post-format-status", "0");
INSERT INTO `wp_terms` VALUES("55", "Main Menu", "main-menu", "0");
INSERT INTO `wp_terms` VALUES("56", "Caregiver Burnout", "caregiverburnout", "0");
INSERT INTO `wp_terms` VALUES("57", "Caregiver Burn-out", "caregiver-burn-out", "0");
INSERT INTO `wp_terms` VALUES("58", "Contact Us", "contact-us", "0");
INSERT INTO `wp_terms` VALUES("60", "Contact", "contact", "0");
INSERT INTO `wp_terms` VALUES("61", "Virtual Tour", "virtual-tour", "0");
INSERT INTO `wp_terms` VALUES("62", "Careers", "careers", "0");
INSERT INTO `wp_terms` VALUES("63", "Courses", "courses", "0");
INSERT INTO `wp_terms` VALUES("64", "Personal Development", "personal-development", "0");
INSERT INTO `wp_terms` VALUES("65", "Volunteer and Support", "volunteer-and-support", "0");
INSERT INTO `wp_terms` VALUES("66", "Counselling", "counselling", "0");
INSERT INTO `wp_terms` VALUES("67", "Relationships", "relationships", "0");
INSERT INTO `wp_terms` VALUES("68", "The Enneagram", "the-enneagram", "0");
INSERT INTO `wp_terms` VALUES("69", "Helping People Change", "helping-people-change", "0");
INSERT INTO `wp_terms` VALUES("70", "Caregiver", "caregiver", "0");
INSERT INTO `wp_terms` VALUES("71", "Self-Care", "self-care", "0");
INSERT INTO `wp_terms` VALUES("72", "selfcare", "selfcare", "0");
INSERT INTO `wp_terms` VALUES("73", "Youth", "youth", "0");
INSERT INTO `wp_terms` VALUES("74", "MBTI", "mbti", "0");
INSERT INTO `wp_terms` VALUES("75", "Young Adults", "young-adults", "0");
INSERT INTO `wp_terms` VALUES("76", "Courses Course Offering", "courses-course-offering", "0");
INSERT INTO `wp_terms` VALUES("77", "Penny test category", "penny-test-category", "0");
INSERT INTO `wp_terms` VALUES("78", "Positive Psychology Group", "positive-psychology-group", "0");
INSERT INTO `wp_terms` VALUES("80", "Elderly", "elderly", "0");
INSERT INTO `wp_terms` VALUES("81", "Elderly", "elderly", "0");
INSERT INTO `wp_terms` VALUES("82", "Grief &amp; Loss", "grief-loss", "0");
INSERT INTO `wp_terms` VALUES("83", "Pastoral Care", "pastoral-care", "0");
INSERT INTO `wp_terms` VALUES("84", "Family Systems", "family-systems", "0");
INSERT INTO `wp_terms` VALUES("85", "Annual General Meeting", "annual-general-meeting", "0");
INSERT INTO `wp_terms` VALUES("86", "Relationships", "relationships", "0");
INSERT INTO `wp_terms` VALUES("87", "Life Transitions", "life-transitions", "0");
INSERT INTO `wp_terms` VALUES("88", "simple", "simple", "0");
INSERT INTO `wp_terms` VALUES("89", "grouped", "grouped", "0");
INSERT INTO `wp_terms` VALUES("90", "variable", "variable", "0");
INSERT INTO `wp_terms` VALUES("91", "external", "external", "0");
INSERT INTO `wp_terms` VALUES("92", "exclude-from-search", "exclude-from-search", "0");
INSERT INTO `wp_terms` VALUES("93", "exclude-from-catalog", "exclude-from-catalog", "0");
INSERT INTO `wp_terms` VALUES("94", "featured", "featured", "0");
INSERT INTO `wp_terms` VALUES("95", "outofstock", "outofstock", "0");
INSERT INTO `wp_terms` VALUES("96", "rated-1", "rated-1", "0");
INSERT INTO `wp_terms` VALUES("97", "rated-2", "rated-2", "0");
INSERT INTO `wp_terms` VALUES("98", "rated-3", "rated-3", "0");
INSERT INTO `wp_terms` VALUES("99", "rated-4", "rated-4", "0");
INSERT INTO `wp_terms` VALUES("100", "rated-5", "rated-5", "0");
INSERT INTO `wp_terms` VALUES("101", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("102", "Primary Menu", "primary-menu", "0");
INSERT INTO `wp_terms` VALUES("103", "page", "page", "0");
INSERT INTO `wp_terms` VALUES("104", "section", "section", "0");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("28", "2", "first_name", "Kai");
INSERT INTO `wp_usermeta` VALUES("29", "2", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("30", "2", "nickname", "kai");
INSERT INTO `wp_usermeta` VALUES("31", "2", "description", "");
INSERT INTO `wp_usermeta` VALUES("32", "2", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("33", "2", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("34", "2", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("35", "2", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("36", "2", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("37", "2", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("38", "2", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("39", "2", "dismissed_wp_pointers", "wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks,wp390_widgets");
INSERT INTO `wp_usermeta` VALUES("40", "2", "default_password_nag", "");
INSERT INTO `wp_usermeta` VALUES("41", "2", "wp_dashboard_quick_press_last_post_id", "14165");
INSERT INTO `wp_usermeta` VALUES("42", "2", "wp_user-settings", "libraryContent=browse&editor=tinymce");
INSERT INTO `wp_usermeta` VALUES("43", "2", "wp_user-settings-time", "1428518877");
INSERT INTO `wp_usermeta` VALUES("44", "2", "nav_menu_recently_edited", "55");
INSERT INTO `wp_usermeta` VALUES("45", "2", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO `wp_usermeta` VALUES("46", "2", "metaboxhidden_nav-menus", "a:19:{i:0;s:8:\"add-post\";i:1;s:15:\"add-ai1ec_event\";i:2;s:16:\"add-dt_portfolio\";i:3;s:19:\"add-dt_testimonials\";i:4;s:11:\"add-dt_team\";i:5;s:12:\"add-dt_logos\";i:6;s:15:\"add-dt_benefits\";i:7;s:14:\"add-dt_gallery\";i:8;s:16:\"add-dt_slideshow\";i:9;s:12:\"add-post_tag\";i:10;s:15:\"add-post_format\";i:11;s:21:\"add-events_categories\";i:12;s:15:\"add-events_tags\";i:13;s:25:\"add-dt_portfolio_category\";i:14;s:28:\"add-dt_testimonials_category\";i:15;s:20:\"add-dt_team_category\";i:16;s:21:\"add-dt_logos_category\";i:17;s:24:\"add-dt_benefits_category\";i:18;s:23:\"add-dt_gallery_category\";}");
INSERT INTO `wp_usermeta` VALUES("47", "3", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("48", "3", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("49", "3", "nickname", "David");
INSERT INTO `wp_usermeta` VALUES("50", "3", "description", "");
INSERT INTO `wp_usermeta` VALUES("51", "3", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("52", "3", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("53", "3", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("54", "3", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("55", "3", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("56", "3", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("57", "3", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("58", "3", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets");
INSERT INTO `wp_usermeta` VALUES("59", "3", "wp_dashboard_quick_press_last_post_id", "15475");
INSERT INTO `wp_usermeta` VALUES("60", "3", "nav_menu_recently_edited", "55");
INSERT INTO `wp_usermeta` VALUES("61", "3", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO `wp_usermeta` VALUES("62", "3", "metaboxhidden_nav-menus", "a:19:{i:0;s:8:\"add-post\";i:1;s:15:\"add-ai1ec_event\";i:2;s:16:\"add-dt_portfolio\";i:3;s:19:\"add-dt_testimonials\";i:4;s:11:\"add-dt_team\";i:5;s:12:\"add-dt_logos\";i:6;s:15:\"add-dt_benefits\";i:7;s:14:\"add-dt_gallery\";i:8;s:16:\"add-dt_slideshow\";i:9;s:12:\"add-post_tag\";i:10;s:15:\"add-post_format\";i:11;s:21:\"add-events_categories\";i:12;s:15:\"add-events_tags\";i:13;s:25:\"add-dt_portfolio_category\";i:14;s:28:\"add-dt_testimonials_category\";i:15;s:20:\"add-dt_team_category\";i:16;s:21:\"add-dt_logos_category\";i:17;s:24:\"add-dt_benefits_category\";i:18;s:23:\"add-dt_gallery_category\";}");
INSERT INTO `wp_usermeta` VALUES("64", "3", "wp_user-settings", "editor=tinymce&libraryContent=browse&urlbutton=none&dt_portfolio_category_tab=pop&hidetb=1&align=left&advImgDetails=show");
INSERT INTO `wp_usermeta` VALUES("65", "3", "wp_user-settings-time", "1522266685");
INSERT INTO `wp_usermeta` VALUES("66", "3", "closedpostboxes_page", "a:1:{i:0;s:12:\"postimagediv\";}");
INSERT INTO `wp_usermeta` VALUES("67", "3", "metaboxhidden_page", "a:22:{i:0;s:7:\"addthis\";i:1;s:21:\"dt_page_box-microsite\";i:2;s:32:\"dt_page_box-fancy_header_options\";i:3;s:24:\"dt_page_box-page_content\";i:4;s:24:\"dt_page_box-display_blog\";i:5;s:24:\"dt_page_box-blog_options\";i:6;s:29:\"dt_page_box-display_portfolio\";i:7;s:29:\"dt_page_box-portfolio_options\";i:8;s:32:\"dt_page_box-display_testimonials\";i:9;s:32:\"dt_page_box-testimonials_options\";i:10;s:24:\"dt_page_box-display_team\";i:11;s:24:\"dt_page_box-team_options\";i:12;s:26:\"dt_page_box-display_albums\";i:13;s:26:\"dt_page_box-albums_options\";i:14;s:32:\"dt_page_box-display_albums_media\";i:15;s:25:\"dt_page_box-media_options\";i:16;s:11:\"postexcerpt\";i:17;s:10:\"postcustom\";i:18;s:16:\"commentstatusdiv\";i:19;s:11:\"commentsdiv\";i:20;s:7:\"slugdiv\";i:21;s:9:\"authordiv\";}");
INSERT INTO `wp_usermeta` VALUES("68", "3", "default_password_nag", "");
INSERT INTO `wp_usermeta` VALUES("71", "3", "closedpostboxes_dt_portfolio", "a:1:{i:0;s:24:\"dt_portfolio_categorydiv\";}");
INSERT INTO `wp_usermeta` VALUES("72", "3", "metaboxhidden_dt_portfolio", "a:4:{i:0;s:19:\"wpb_visual_composer\";i:1;s:29:\"dt_page_box-slideshow_options\";i:2;s:32:\"dt_page_box-fancy_header_options\";i:3;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("77", "3", "closedpostboxes_dt_slideshow", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("78", "3", "metaboxhidden_dt_slideshow", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("79", "3", "closedpostboxes_ai1ec_event", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("80", "3", "metaboxhidden_ai1ec_event", "a:3:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("88", "3", "manageedit-ai1ec_eventcolumnshidden", "a:2:{i:0;s:6:\"author\";i:1;s:0:\"\";}");
INSERT INTO `wp_usermeta` VALUES("89", "3", "edit_ai1ec_event_per_page", "20");
INSERT INTO `wp_usermeta` VALUES("90", "3", "_yoast_wpseo_profile_updated", "1500247496");
INSERT INTO `wp_usermeta` VALUES("91", "2", "_yoast_wpseo_profile_updated", "1500247496");
INSERT INTO `wp_usermeta` VALUES("94", "3", "custom_login_ignore_announcement", "1");
INSERT INTO `wp_usermeta` VALUES("97", "2", "custom_login_ignore_announcement", "1");
INSERT INTO `wp_usermeta` VALUES("98", "3", "wpseo_ignore_tour", "1");
INSERT INTO `wp_usermeta` VALUES("100", "2", "wpseo_ignore_tour", "1");
INSERT INTO `wp_usermeta` VALUES("130", "6", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("131", "6", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("132", "6", "nickname", "PennyYe");
INSERT INTO `wp_usermeta` VALUES("133", "6", "description", "");
INSERT INTO `wp_usermeta` VALUES("134", "6", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("135", "6", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("136", "6", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("137", "6", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("138", "6", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("139", "6", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("140", "6", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("141", "6", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets,wps_subtitle_field_to_top");
INSERT INTO `wp_usermeta` VALUES("143", "6", "wp_dashboard_quick_press_last_post_id", "15322");
INSERT INTO `wp_usermeta` VALUES("144", "6", "wp_dashboard_quick_press_last_post_id", "15322");
INSERT INTO `wp_usermeta` VALUES("145", "6", "wpseo_ignore_tour", "1");
INSERT INTO `wp_usermeta` VALUES("146", "6", "wp_user-settings", "editor=tinymce&libraryContent=browse&ed_size=362&wplink=1");
INSERT INTO `wp_usermeta` VALUES("147", "6", "wp_user-settings-time", "1513809653");
INSERT INTO `wp_usermeta` VALUES("148", "6", "nav_menu_recently_edited", "55");
INSERT INTO `wp_usermeta` VALUES("149", "6", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO `wp_usermeta` VALUES("150", "6", "metaboxhidden_nav-menus", "a:19:{i:0;s:8:\"add-post\";i:1;s:15:\"add-ai1ec_event\";i:2;s:16:\"add-dt_portfolio\";i:3;s:19:\"add-dt_testimonials\";i:4;s:11:\"add-dt_team\";i:5;s:12:\"add-dt_logos\";i:6;s:15:\"add-dt_benefits\";i:7;s:14:\"add-dt_gallery\";i:8;s:16:\"add-dt_slideshow\";i:9;s:12:\"add-post_tag\";i:10;s:15:\"add-post_format\";i:11;s:21:\"add-events_categories\";i:12;s:15:\"add-events_tags\";i:13;s:25:\"add-dt_portfolio_category\";i:14;s:28:\"add-dt_testimonials_category\";i:15;s:20:\"add-dt_team_category\";i:16;s:21:\"add-dt_logos_category\";i:17;s:24:\"add-dt_benefits_category\";i:18;s:23:\"add-dt_gallery_category\";}");
INSERT INTO `wp_usermeta` VALUES("151", "6", "closedpostboxes_page", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("152", "6", "metaboxhidden_page", "a:24:{i:0;s:21:\"dt_page_box-microsite\";i:1;s:19:\"wpb_visual_composer\";i:2;s:29:\"dt_page_box-slideshow_options\";i:3;s:32:\"dt_page_box-fancy_header_options\";i:4;s:24:\"dt_page_box-page_content\";i:5;s:24:\"dt_page_box-display_blog\";i:6;s:24:\"dt_page_box-blog_options\";i:7;s:29:\"dt_page_box-display_portfolio\";i:8;s:29:\"dt_page_box-portfolio_options\";i:9;s:32:\"dt_page_box-display_testimonials\";i:10;s:32:\"dt_page_box-testimonials_options\";i:11;s:24:\"dt_page_box-display_team\";i:12;s:24:\"dt_page_box-team_options\";i:13;s:26:\"dt_page_box-display_albums\";i:14;s:26:\"dt_page_box-albums_options\";i:15;s:32:\"dt_page_box-display_albums_media\";i:16;s:25:\"dt_page_box-media_options\";i:17;s:12:\"revisionsdiv\";i:18;s:11:\"postexcerpt\";i:19;s:10:\"postcustom\";i:20;s:16:\"commentstatusdiv\";i:21;s:11:\"commentsdiv\";i:22;s:7:\"slugdiv\";i:23;s:9:\"authordiv\";}");
INSERT INTO `wp_usermeta` VALUES("159", "6", "_yoast_wpseo_profile_updated", "1500247496");
INSERT INTO `wp_usermeta` VALUES("160", "6", "closedpostboxes_ai1ec_event", "a:1:{i:0;s:12:\"postimagediv\";}");
INSERT INTO `wp_usermeta` VALUES("161", "6", "metaboxhidden_ai1ec_event", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("166", "6", "tgmpa_dismissed_notice", "1");
INSERT INTO `wp_usermeta` VALUES("167", "6", "custom_login_ignore_announcement", "1");
INSERT INTO `wp_usermeta` VALUES("180", "8", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("181", "8", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("182", "8", "nickname", "South Island Centre");
INSERT INTO `wp_usermeta` VALUES("183", "8", "description", "");
INSERT INTO `wp_usermeta` VALUES("184", "8", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("185", "8", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("186", "8", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("187", "8", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("188", "8", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("189", "8", "wp_capabilities", "a:1:{s:6:\"author\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("190", "8", "wp_user_level", "2");
INSERT INTO `wp_usermeta` VALUES("191", "8", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets");
INSERT INTO `wp_usermeta` VALUES("192", "6", "tribe_setDefaultNavMenuBoxes", "1");
INSERT INTO `wp_usermeta` VALUES("193", "9", "first_name", "Kathryn");
INSERT INTO `wp_usermeta` VALUES("194", "9", "last_name", "Righetti");
INSERT INTO `wp_usermeta` VALUES("195", "9", "nickname", "Kathryn Righetti");
INSERT INTO `wp_usermeta` VALUES("196", "9", "description", "");
INSERT INTO `wp_usermeta` VALUES("197", "9", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("198", "9", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("199", "9", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("200", "9", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("201", "9", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("202", "9", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("203", "9", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("204", "9", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets,wps_subtitle_field_to_top");
INSERT INTO `wp_usermeta` VALUES("205", "9", "wp_dashboard_quick_press_last_post_id", "15474");
INSERT INTO `wp_usermeta` VALUES("206", "9", "wpseo_ignore_tour", "1");
INSERT INTO `wp_usermeta` VALUES("207", "9", "wp_user-settings", "editor=tinymce&wplink=1&libraryContent=browse&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=865px&edit_element_vcUIPanelTop=74px");
INSERT INTO `wp_usermeta` VALUES("208", "9", "wp_user-settings-time", "1524598316");
INSERT INTO `wp_usermeta` VALUES("209", "9", "closedpostboxes_ai1ec_event", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("210", "9", "metaboxhidden_ai1ec_event", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("213", "9", "nav_menu_recently_edited", "55");
INSERT INTO `wp_usermeta` VALUES("214", "9", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO `wp_usermeta` VALUES("215", "9", "metaboxhidden_nav-menus", "a:19:{i:0;s:8:\"add-post\";i:1;s:15:\"add-ai1ec_event\";i:2;s:16:\"add-dt_portfolio\";i:3;s:19:\"add-dt_testimonials\";i:4;s:11:\"add-dt_team\";i:5;s:12:\"add-dt_logos\";i:6;s:15:\"add-dt_benefits\";i:7;s:14:\"add-dt_gallery\";i:8;s:16:\"add-dt_slideshow\";i:9;s:12:\"add-post_tag\";i:10;s:15:\"add-post_format\";i:11;s:21:\"add-events_categories\";i:12;s:15:\"add-events_tags\";i:13;s:25:\"add-dt_portfolio_category\";i:14;s:28:\"add-dt_testimonials_category\";i:15;s:20:\"add-dt_team_category\";i:16;s:21:\"add-dt_logos_category\";i:17;s:24:\"add-dt_benefits_category\";i:18;s:23:\"add-dt_gallery_category\";}");
INSERT INTO `wp_usermeta` VALUES("216", "3", "session_tokens", "a:1:{s:64:\"3b1e505d523e330767c4443aed167eb2e18f90b46436686d5dbc668312e8273f\";a:4:{s:10:\"expiration\";i:1525292064;s:2:\"ip\";s:13:\"50.99.160.126\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1525119264;}}");
INSERT INTO `wp_usermeta` VALUES("217", "3", "community-events-location", "a:1:{s:2:\"ip\";s:11:\"50.99.160.0\";}");
INSERT INTO `wp_usermeta` VALUES("218", "3", "_woocommerce_persistent_cart_1", "a:1:{s:4:\"cart\";a:0:{}}");
INSERT INTO `wp_usermeta` VALUES("222", "9", "community-events-location", "a:1:{s:2:\"ip\";s:11:\"184.66.49.0\";}");
INSERT INTO `wp_usermeta` VALUES("226", "9", "session_tokens", "a:1:{s:64:\"db1737db746cfb0f49a008892e8013ab454298329396558c86151860d2e403f9\";a:4:{s:10:\"expiration\";i:1524933981;s:2:\"ip\";s:13:\"184.66.49.231\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36\";s:5:\"login\";i:1524761181;}}");
INSERT INTO `wp_usermeta` VALUES("227", "10", "nickname", "Cameron");
INSERT INTO `wp_usermeta` VALUES("228", "10", "first_name", "Cameron");
INSERT INTO `wp_usermeta` VALUES("229", "10", "last_name", "Bowler");
INSERT INTO `wp_usermeta` VALUES("230", "10", "description", "");
INSERT INTO `wp_usermeta` VALUES("231", "10", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("232", "10", "syntax_highlighting", "true");
INSERT INTO `wp_usermeta` VALUES("233", "10", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("234", "10", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("235", "10", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("236", "10", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("237", "10", "locale", "");
INSERT INTO `wp_usermeta` VALUES("238", "10", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("239", "10", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("240", "10", "dismissed_wp_pointers", "wp496_privacy");
INSERT INTO `wp_usermeta` VALUES("241", "10", "default_password_nag", "");
INSERT INTO `wp_usermeta` VALUES("242", "10", "session_tokens", "a:1:{s:64:\"63a8c879fc58d57ae6c6a9f34b01523f6f8dae1000bf29a89fcc06edea131684\";a:4:{s:10:\"expiration\";i:1529614067;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:5:\"login\";i:1529441267;}}");
INSERT INTO `wp_usermeta` VALUES("243", "10", "wp_dashboard_quick_press_last_post_id", "16028");
INSERT INTO `wp_usermeta` VALUES("244", "10", "community-events-location", "a:1:{s:2:\"ip\";s:11:\"172.69.23.0\";}");
INSERT INTO `wp_usermeta` VALUES("245", "10", "closedpostboxes_page", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("246", "10", "metaboxhidden_page", "a:5:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}");
INSERT INTO `wp_usermeta` VALUES("247", "10", "wp_user-settings", "editor=html&libraryContent=browse");
INSERT INTO `wp_usermeta` VALUES("248", "10", "wp_user-settings-time", "1528994677");
INSERT INTO `wp_usermeta` VALUES("249", "10", "nav_menu_recently_edited", "20");
INSERT INTO `wp_usermeta` VALUES("250", "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\";}");
INSERT INTO `wp_usermeta` VALUES("251", "10", "metaboxhidden_nav-menus", "a:5:{i:1;s:25:\"add-post-type-ai1ec_event\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:21:\"add-events_categories\";i:5;s:15:\"add-events_tags\";}");
INSERT INTO `wp_usermeta` VALUES("252", "10", "give_is_donation_forms_menu_updated", "1");
INSERT INTO `wp_usermeta` VALUES("253", "10", "closedpostboxes_give_forms", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("254", "10", "metaboxhidden_give_forms", "a:1:{i:0;s:7:\"slugdiv\";}");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("2", "kai", "$P$BAdiLkVpE2PPEgkWKGtenzOOxqkhLm0", "kai", "kai@wescom.bc.ca", "", "2014-04-15 17:13:37", "", "0", "Kai");
INSERT INTO `wp_users` VALUES("3", "David", "$P$BOsRJXwlB33EnecTXovi63pRC0wa/S0", "david", "dave@urbanweb.net", "", "2014-07-08 16:45:04", "$P$BjrCOBgdJd1WJUrNvqHHp5zvWPepUu1", "0", "David");
INSERT INTO `wp_users` VALUES("6", "PennyYe", "$P$BMmgMZit3DX6JPA.nJ9LlMl9aszZuv.", "pennyye", "yesiyipeny@gmail.com", "", "2017-06-22 21:51:06", "", "0", "PennyYe");
INSERT INTO `wp_users` VALUES("8", "South Island Centre", "$P$BlWyzXpXT2eVZdd5WZwbfskazmbp0M1", "south-island-centre", "info@localhost", "", "2017-07-25 18:29:18", "1525125711:$P$BFuHbBKgDRLHNkHQGECGZGzIyiK4ko.", "0", "South Island Centre");
INSERT INTO `wp_users` VALUES("9", "Kathryn Righetti", "$P$Bu.VnQKoKEIB/OBbWKF/apa1Wb.T6/0", "kathryn-righetti", "officeadministrator@localhost", "", "2017-09-06 18:59:04", "$P$Blc9k2sVkpEfef22dE.xSCVsugg00.0", "0", "Kathryn Righetti");
INSERT INTO `wp_users` VALUES("10", "Cameron", "$P$Bigeo/lIsQWtuLDGAVAR4tgABYmllY0", "cameron", "cameronbowler84@gmail.com", "", "2018-04-30 20:15:16", "1528987314:$P$BUAtWMiGWWV.u2C086d92mZ7MsP2wD/", "0", "Cameron Bowler");

/* INSERT TABLE DATA: wp_wfblockediplog */
INSERT INTO `wp_wfblockediplog` VALUES("\0\0\0\0\0\0\0\0\0\0ÿÿÆ2Ÿ\n", "CA", "1", "17618", "brute");

/* INSERT TABLE DATA: wp_wfblocks7 */
INSERT INTO `wp_wfblocks7` VALUES("1", "2", "\0\0\0\0\0\0\0\0\0\0ÿÿÆ2Ÿ\n", "1522253324", "Blocked by Wordfence Security Network", "1522253324", "1", "1522253924", NULL);

/* INSERT TABLE DATA: wp_wfconfig */
INSERT INTO `wp_wfconfig` VALUES("actUpdateInterval", "2", "yes");
INSERT INTO `wp_wfconfig` VALUES("addCacheComment", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("adminUserList", "b:0;", "yes");
INSERT INTO `wp_wfconfig` VALUES("advancedCommentScanning", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("ajaxWatcherDisabled_admin", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("ajaxWatcherDisabled_front", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertEmails", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_adminLogin", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_block", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_breachLogin", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_critical", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_firstAdminLoginOnly", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_firstNonAdminLoginOnly", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_loginLockout", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_lostPasswdForm", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_nonAdminLogin", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_throttle", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_update", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_warnings", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("alertOn_wordfenceDeactivated", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("alert_maxHourly", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("allowed404s", "/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml", "yes");
INSERT INTO `wp_wfconfig` VALUES("allowed404s6116Migration", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("allowHTTPSCaching", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("allScansScheduled", "a:0:{}", "yes");
INSERT INTO `wp_wfconfig` VALUES("apiKey", "e262b3bd5fec6e3d62ddc60a97e66d6588744e2d7abe6acb6d20cf59f43289b0b9f07f037fa2815c3607f5ff6f4447fffe3a62824f70777af5a418f965f240208c5f8c545d1c58bc802e1511d8aaf98e", "yes");
INSERT INTO `wp_wfconfig` VALUES("autoBlockScanners", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("autoUpdate", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("bannedURLs", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("betaThreatDefenseFeed", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("blockedTime", "300", "yes");
INSERT INTO `wp_wfconfig` VALUES("blockFakeBots", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("blocks702Migration", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("cacheType", "disabled", "yes");
INSERT INTO `wp_wfconfig` VALUES("cbl_action", "block", "yes");
INSERT INTO `wp_wfconfig` VALUES("cbl_bypassRedirDest", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("cbl_bypassRedirURL", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("cbl_bypassViewURL", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("cbl_cookieVal", "5abbbc2dc4161", "yes");
INSERT INTO `wp_wfconfig` VALUES("cbl_loggedInBlocked", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("cbl_redirURL", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("cbl_restOfSiteBlocked", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("checkSpamIP", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("config701Migration", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("currentCronKey", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("dashboardData", "a:4:{s:9:\"generated\";i:1522251117;s:3:\"tdf\";a:3:{s:9:\"community\";i:5366;s:7:\"premium\";i:5467;s:9:\"blacklist\";i:2266;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1522162800;s:1:\"c\";i:828737;}i:1;a:2:{s:1:\"t\";i:1522166400;s:1:\"c\";i:854769;}i:2;a:2:{s:1:\"t\";i:1522170000;s:1:\"c\";i:842224;}i:3;a:2:{s:1:\"t\";i:1522173600;s:1:\"c\";i:842485;}i:4;a:2:{s:1:\"t\";i:1522177200;s:1:\"c\";i:851506;}i:5;a:2:{s:1:\"t\";i:1522180800;s:1:\"c\";i:835954;}i:6;a:2:{s:1:\"t\";i:1522184400;s:1:\"c\";i:702815;}i:7;a:2:{s:1:\"t\";i:1522188000;s:1:\"c\";i:730461;}i:8;a:2:{s:1:\"t\";i:1522191600;s:1:\"c\";i:726058;}i:9;a:2:{s:1:\"t\";i:1522195200;s:1:\"c\";i:767521;}i:10;a:2:{s:1:\"t\";i:1522198800;s:1:\"c\";i:785979;}i:11;a:2:{s:1:\"t\";i:1522202400;s:1:\"c\";i:727831;}i:12;a:2:{s:1:\"t\";i:1522206000;s:1:\"c\";i:719805;}i:13;a:2:{s:1:\"t\";i:1522209600;s:1:\"c\";i:700731;}i:14;a:2:{s:1:\"t\";i:1522213200;s:1:\"c\";i:746994;}i:15;a:2:{s:1:\"t\";i:1522216800;s:1:\"c\";i:711636;}i:16;a:2:{s:1:\"t\";i:1522220400;s:1:\"c\";i:645470;}i:17;a:2:{s:1:\"t\";i:1522224000;s:1:\"c\";i:691867;}i:18;a:2:{s:1:\"t\";i:1522227600;s:1:\"c\";i:737780;}i:19;a:2:{s:1:\"t\";i:1522231200;s:1:\"c\";i:731992;}i:20;a:2:{s:1:\"t\";i:1522234800;s:1:\"c\";i:683858;}i:21;a:2:{s:1:\"t\";i:1522238400;s:1:\"c\";i:706710;}i:22;a:2:{s:1:\"t\";i:1522242000;s:1:\"c\";i:731794;}i:23;a:2:{s:1:\"t\";i:1522245600;s:1:\"c\";i:760332;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1521590400;s:1:\"c\";i:22495061;}i:1;a:2:{s:1:\"t\";i:1521676800;s:1:\"c\";i:23946175;}i:2;a:2:{s:1:\"t\";i:1521763200;s:1:\"c\";i:24285888;}i:3;a:2:{s:1:\"t\";i:1521849600;s:1:\"c\";i:26234291;}i:4;a:2:{s:1:\"t\";i:1521936000;s:1:\"c\";i:22427351;}i:5;a:2:{s:1:\"t\";i:1522022400;s:1:\"c\";i:22046175;}i:6;a:2:{s:1:\"t\";i:1522108800;s:1:\"c\";i:20260658;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1519603200;s:1:\"c\";i:22155350;}i:1;a:2:{s:1:\"t\";i:1519689600;s:1:\"c\";i:27651939;}i:2;a:2:{s:1:\"t\";i:1519776000;s:1:\"c\";i:28834909;}i:3;a:2:{s:1:\"t\";i:1519862400;s:1:\"c\";i:25160755;}i:4;a:2:{s:1:\"t\";i:1519948800;s:1:\"c\";i:22068701;}i:5;a:2:{s:1:\"t\";i:1520035200;s:1:\"c\";i:22340486;}i:6;a:2:{s:1:\"t\";i:1520121600;s:1:\"c\";i:19993618;}i:7;a:2:{s:1:\"t\";i:1520208000;s:1:\"c\";i:18531994;}i:8;a:2:{s:1:\"t\";i:1520294400;s:1:\"c\";i:20480386;}i:9;a:2:{s:1:\"t\";i:1520380800;s:1:\"c\";i:24884467;}i:10;a:2:{s:1:\"t\";i:1520467200;s:1:\"c\";i:21480564;}i:11;a:2:{s:1:\"t\";i:1520553600;s:1:\"c\";i:29956427;}i:12;a:2:{s:1:\"t\";i:1520640000;s:1:\"c\";i:32938104;}i:13;a:2:{s:1:\"t\";i:1520726400;s:1:\"c\";i:29362254;}i:14;a:2:{s:1:\"t\";i:1520812800;s:1:\"c\";i:28611202;}i:15;a:2:{s:1:\"t\";i:1520899200;s:1:\"c\";i:29587146;}i:16;a:2:{s:1:\"t\";i:1520985600;s:1:\"c\";i:27289178;}i:17;a:2:{s:1:\"t\";i:1521072000;s:1:\"c\";i:24657307;}i:18;a:2:{s:1:\"t\";i:1521158400;s:1:\"c\";i:23484524;}i:19;a:2:{s:1:\"t\";i:1521244800;s:1:\"c\";i:25199938;}i:20;a:2:{s:1:\"t\";i:1521331200;s:1:\"c\";i:22664060;}i:21;a:2:{s:1:\"t\";i:1521417600;s:1:\"c\";i:22929637;}i:22;a:2:{s:1:\"t\";i:1521504000;s:1:\"c\";i:24633210;}i:23;a:2:{s:1:\"t\";i:1521590400;s:1:\"c\";i:22495061;}i:24;a:2:{s:1:\"t\";i:1521676800;s:1:\"c\";i:23946175;}i:25;a:2:{s:1:\"t\";i:1521763200;s:1:\"c\";i:24285888;}i:26;a:2:{s:1:\"t\";i:1521849600;s:1:\"c\";i:26234291;}i:27;a:2:{s:1:\"t\";i:1521936000;s:1:\"c\";i:22427351;}i:28;a:2:{s:1:\"t\";i:1522022400;s:1:\"c\";i:22046175;}i:29;a:2:{s:1:\"t\";i:1522108800;s:1:\"c\";i:20260658;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"TR\";s:2:\"ct\";i:28899049;}i:1;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:26915797;}i:2;a:2:{s:2:\"cd\";s:2:\"UA\";s:2:\"ct\";i:22558586;}i:3;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:16018423;}i:4;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:14920326;}i:5;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:12205790;}i:6;a:2:{s:2:\"cd\";s:2:\"PL\";s:2:\"ct\";i:5560917;}i:7;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:5204254;}i:8;a:2:{s:2:\"cd\";s:2:\"IE\";s:2:\"ct\";i:4687085;}i:9;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:4250397;}}}}", "yes");
INSERT INTO `wp_wfconfig` VALUES("debugOn", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("deleteTablesOnDeact", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("detectProxyNextCheck", "1522857644", "no");
INSERT INTO `wp_wfconfig` VALUES("detectProxyNonce", "", "no");
INSERT INTO `wp_wfconfig` VALUES("detectProxyRecommendation", "REMOTE_ADDR", "no");
INSERT INTO `wp_wfconfig` VALUES("disableCodeExecutionUploads", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("disableConfigCaching", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("disableCookies", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("disableWAFIPBlocking", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("dismissAutoPrependNotice", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("displayAutomaticBlocks", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("displayTopLevelBlocking", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("displayTopLevelLiveTraffic", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("displayTopLevelOptions", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("email_summary_dashboard_widget_enabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("email_summary_enabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("email_summary_excluded_directories", "wp-content/cache,wp-content/wflogs", "yes");
INSERT INTO `wp_wfconfig` VALUES("email_summary_interval", "weekly", "yes");
INSERT INTO `wp_wfconfig` VALUES("encKey", "3a08653a6889ec31", "yes");
INSERT INTO `wp_wfconfig` VALUES("fileContentsGSB6315Migration", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("firewallEnabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("geoIPVersionHash", "42191866fa28ae8388eae61acb0875da5fe60c812c16d4c114150aca39c89a73", "yes");
INSERT INTO `wp_wfconfig` VALUES("howGetIPs", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("howGetIPs_trusted_proxies", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("isPaid", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("keyType", "free", "yes");
INSERT INTO `wp_wfconfig` VALUES("lastBlockAggregation", "1522252844", "yes");
INSERT INTO `wp_wfconfig` VALUES("lastDailyCron", "1522252955", "yes");
INSERT INTO `wp_wfconfig` VALUES("lastDashboardCheck", "1522252955", "yes");
INSERT INTO `wp_wfconfig` VALUES("lastNotificationID", "3", "no");
INSERT INTO `wp_wfconfig` VALUES("lastScanCompleted", "ok", "yes");
INSERT INTO `wp_wfconfig` VALUES("lastScanFailureType", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("liveActivityPauseEnabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("liveTrafficEnabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("liveTraf_displayExpandedRecords", "0", "no");
INSERT INTO `wp_wfconfig` VALUES("liveTraf_ignoreIPs", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("liveTraf_ignorePublishers", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("liveTraf_ignoreUA", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("liveTraf_ignoreUsers", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("liveTraf_maxRows", "2000", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSecurityEnabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_blockAdminReg", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_breachPasswds", "admins", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_breachPasswds_enabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_countFailMins", "240", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_disableAuthorScan", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_disableOEmbedAuthor", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_enableSeparateTwoFactor", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_lockInvalidUsers", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_lockoutMins", "240", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_maskLoginErrors", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_maxFailures", "20", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_maxForgotPasswd", "20", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_requireAdminTwoFactor", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_strongPasswds", "pubs", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_strongPasswds_enabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("loginSec_userBlacklist", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("lowResourceScansEnabled", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("lowResourceScanWaitStep", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("manualScanType", "onceDaily", "yes");
INSERT INTO `wp_wfconfig` VALUES("max404Crawlers", "DISABLED", "yes");
INSERT INTO `wp_wfconfig` VALUES("max404Crawlers_action", "throttle", "yes");
INSERT INTO `wp_wfconfig` VALUES("max404Humans", "DISABLED", "yes");
INSERT INTO `wp_wfconfig` VALUES("max404Humans_action", "throttle", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxExecutionTime", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxGlobalRequests", "DISABLED", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxGlobalRequests_action", "throttle", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxMem", "256", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxRequestsCrawlers", "DISABLED", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxRequestsCrawlers_action", "throttle", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxRequestsHumans", "DISABLED", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxRequestsHumans_action", "throttle", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxScanHits", "DISABLED", "yes");
INSERT INTO `wp_wfconfig` VALUES("maxScanHits_action", "throttle", "yes");
INSERT INTO `wp_wfconfig` VALUES("migration636_email_summary_excluded_directories", "1", "no");
INSERT INTO `wp_wfconfig` VALUES("needsNewTour_blocking", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsNewTour_dashboard", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsNewTour_firewall", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsNewTour_livetraffic", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsNewTour_scan", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsUpgradeTour_blocking", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsUpgradeTour_dashboard", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsUpgradeTour_firewall", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsUpgradeTour_livetraffic", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("needsUpgradeTour_scan", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("neverBlockBG", "neverBlockVerified", "yes");
INSERT INTO `wp_wfconfig` VALUES("noc1ScanSchedule", "a:2:{i:0;i:1522443000;i:1;i:1522702200;}", "yes");
INSERT INTO `wp_wfconfig` VALUES("notification_blogHighlights", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("notification_productUpdates", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("notification_promotions", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("notification_scanStatus", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("notification_securityAlerts", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("notification_updatesNeeded", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("onboardingAttempt1", "skipped", "yes");
INSERT INTO `wp_wfconfig` VALUES("onboardingAttempt2", "", "no");
INSERT INTO `wp_wfconfig` VALUES("onboardingAttempt3", "", "no");
INSERT INTO `wp_wfconfig` VALUES("onboardingAttempt3Initial", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("other_blockBadPOST", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("other_bypassLitespeedNoabort", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("other_hideWPVersion", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("other_noAnonMemberComments", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("other_pwStrengthOnUpdate", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("other_scanComments", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("other_scanOutside", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("other_WFNet", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_checkGSB", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_checkHowGetIPs", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_checkReadableConfig", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_comments", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_core", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_coreUnknown", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_diskSpace", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_dns", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_fileContents", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_fileContentsGSB", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_highSense", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_malware", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_oldVersions", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_options", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_passwds", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_plugins", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_posts", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_scanImages", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_suspectedFiles", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_suspiciousAdminUsers", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_suspiciousOptions", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_themes", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_wpscan_directoryListingEnabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scansEnabled_wpscan_fullPathDisclosure", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("scanTime", "1522252972.7", "yes");
INSERT INTO `wp_wfconfig` VALUES("scanType", "standard", "yes");
INSERT INTO `wp_wfconfig` VALUES("scan_exclude", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("scan_include_extra", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("scan_maxDuration", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("scan_maxIssues", "1000", "yes");
INSERT INTO `wp_wfconfig` VALUES("schedMode", "auto", "yes");
INSERT INTO `wp_wfconfig` VALUES("schedStartHour", "2", "yes");
INSERT INTO `wp_wfconfig` VALUES("scheduledScansEnabled", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("showAdminBarMenu", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("spamvertizeCheck", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("ssl_verify", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("startScansRemotely", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("supportContent", "{\"top\":[{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/#i-am-locked-out-of-my-site\",\"order\":0},{\"title\":\"Wordfence 7\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/wordfence-7\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":4},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":5},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":6}],\"all\":[{\"title\":\"How to Use Wordfence 7\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-7\\/\",\"excerpt\":\"Customize your Wordfence menu, locate options and learn how to perform common tasks in Wordfence 7.\",\"order\":0},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your siteâ€™s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":1},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":1},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":4},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":6}],\"order\":2},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the Firewall rules that protect against SQL-injection, XSS and more, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Blocked or Locked Out\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/blocked-or-locked-out\\/\",\"order\":0},{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":1},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":2}],\"order\":3},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, shells that hackers have installed, known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":4},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Two Factor Authentication, Whois Lookup, Password Audit, Comment Spam Filter, Live Traffic and Diagnostics.\",\"children\":[{\"title\":\"Password Auditing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/password-auditing\\/\",\"order\":0},{\"title\":\"Whois Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":1},{\"title\":\"Comment Spam Filter\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/comment-spam-filter\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":4},{\"title\":\"Two Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5}],\"order\":5},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you\'ll find the answers in this section.\",\"children\":[{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":0},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":1},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":2},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":3},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":4},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":6}],\"order\":6},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/\",\"excerpt\":\"Wordfence Premium comes with an IP Blacklist, Real Time Protection and much more.\",\"children\":[{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/api-key\\/\",\"order\":0}],\"order\":7},{\"title\":\"Site Cleaning and Security Audits\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/security-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":8}]}", "yes");
INSERT INTO `wp_wfconfig` VALUES("supportHash", "3a1912c483708decfb5df5976bba87b9daf0fa489631b23297388361181d1043", "yes");
INSERT INTO `wp_wfconfig` VALUES("timeoffset_wf", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("timeoffset_wf_updated", "1522252844", "yes");
INSERT INTO `wp_wfconfig` VALUES("total503s", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("totalAlertsSent", "2", "yes");
INSERT INTO `wp_wfconfig` VALUES("totalIPsBlocked", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("totalLoginHits", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("totalScansRun", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("vulnerabilities_plugin", "a:15:{i:0;a:5:{s:4:\"slug\";s:21:\"really-simple-captcha\";s:9:\"toVersion\";s:5:\"2.0.1\";s:11:\"fromVersion\";s:7:\"1.8.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:4:{s:4:\"slug\";s:25:\"all-in-one-event-calendar\";s:11:\"fromVersion\";s:6:\"2.5.29\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:4:{s:4:\"slug\";s:14:\"contact-form-7\";s:11:\"fromVersion\";s:5:\"5.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:4:{s:4:\"slug\";s:20:\"recent-tweets-widget\";s:11:\"fromVersion\";s:5:\"1.6.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:4:{s:4:\"slug\";s:11:\"woocommerce\";s:11:\"fromVersion\";s:5:\"3.3.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:5:\"7.1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:20:\"wp-visual-icon-fonts\";s:11:\"fromVersion\";s:5:\"0.5.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:12:\"gravityforms\";s:11:\"fromVersion\";s:5:\"2.2.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:4:{s:4:\"slug\";s:11:\"convertplug\";s:11:\"fromVersion\";s:5:\"3.2.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:12:\"dt-the7-core\";s:11:\"fromVersion\";s:7:\"1.5.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:4:{s:4:\"slug\";s:10:\"go_pricing\";s:11:\"fromVersion\";s:5:\"3.3.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:11;a:4:{s:4:\"slug\";s:11:\"LayerSlider\";s:11:\"fromVersion\";s:5:\"6.7.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:12;a:4:{s:4:\"slug\";s:9:\"revslider\";s:11:\"fromVersion\";s:7:\"5.4.7.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:13;a:4:{s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:11:\"fromVersion\";s:7:\"3.16.21\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:14;a:4:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"fromVersion\";s:5:\"5.4.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}", "yes");
INSERT INTO `wp_wfconfig` VALUES("vulnerabilities_theme", "a:1:{i:0;a:4:{s:4:\"slug\";s:7:\"dt-the7\";s:9:\"toVersion\";s:7:\"6.3.0.1\";s:11:\"fromVersion\";s:5:\"6.3.0\";s:10:\"vulnerable\";b:0;}}", "yes");
INSERT INTO `wp_wfconfig` VALUES("vulnRegex", "/(?:wordfence_test_vuln_match|\\/timthumb\\.php|\\/thumb\\.php|\\/thumbs\\.php|\\/thumbnail\\.php|\\/thumbnails\\.php|\\/thumnails\\.php|\\/cropper\\.php|\\/picsize\\.php|\\/resizer\\.php|connectors\\/uploadtest\\.html|connectors\\/test\\.html|mingleforumaction|uploadify\\.php|allwebmenus-wordpress-menu-plugin|wp-cycle-playlist|count-per-day|wp-autoyoutube|pay-with-tweet|comment-rating\\/ck-processkarma\\.php)/i", "yes");
INSERT INTO `wp_wfconfig` VALUES("wafAlertInterval", "600", "yes");
INSERT INTO `wp_wfconfig` VALUES("wafAlertOnAttacks", "1", "yes");
INSERT INTO `wp_wfconfig` VALUES("wafAlertThreshold", "100", "yes");
INSERT INTO `wp_wfconfig` VALUES("wafAlertWhitelist", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("wfKillRequested", "0", "no");
INSERT INTO `wp_wfconfig` VALUES("wfPeakMemory", "44302336", "no");
INSERT INTO `wp_wfconfig` VALUES("wfScanStartVersion", "3.9", "yes");
INSERT INTO `wp_wfconfig` VALUES("wfStatusStartMsgs", "a:1:{i:0;s:0:\"\";}", "yes");
INSERT INTO `wp_wfconfig` VALUES("wf_scanLastStatusTime", "0", "yes");
INSERT INTO `wp_wfconfig` VALUES("wf_scanRunning", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("wf_summaryItems", "a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1522252972;}", "yes");
INSERT INTO `wp_wfconfig` VALUES("whitelisted", "", "yes");
INSERT INTO `wp_wfconfig` VALUES("wp_home_url", "http://localhost:8888/TestSICPage/wordpress", "yes");
INSERT INTO `wp_wfconfig` VALUES("wp_site_url", "http://localhost:8888/TestSICPage/wordpress", "yes");

/* INSERT TABLE DATA: wp_wfhits */
INSERT INTO `wp_wfhits` VALUES("1", "0.000000", "1522252948.694712", "\0\0\0\0\0\0\0\0\0\0ÿÿE.$", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/?_wfsf=detectProxy", "", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1", "scan:detectproxy", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("2", "0.000000", "1522252967.895439", "\0\0\0\0\0\0\0\0\0\0ÿÿ¸B1ç", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("3", "0.000000", "1522253029.289286", "\0\0\0\0\0\0\0\0\0\0ÿÿ¸B1ç", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "https://www.google.ca/", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("4", "0.000000", "1522253323.491373", "\0\0\0\0\0\0\0\0\0\0ÿÿÆ2Ÿ\n", "0", "503", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/xmlrpc.php", "", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; fr; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8", "blocked:wfsn", "Blocked by Wordfence Security Network", NULL);
INSERT INTO `wp_wfhits` VALUES("5", "0.000000", "1522253564.783459", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("6", "0.000000", "1522253568.806622", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("7", "0.000000", "1522253674.378264", "\0\0\0\0\0\0\0\0\0\0ÿÿ{}Gd", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/counselling-2/client-testimonial/", "", "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("8", "0.000000", "1522253758.776760", "\0\0\0\0\0\0\0\0\0\0ÿÿØôBÃ", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/contact-us/board/", "", "Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("9", "0.000000", "1522255837.076029", "\0\0\0\0\0\0\0\0\0\0ÿÿ‰J\\M", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/counselling-2/affordable-counselling/", "", "Barkrowler/0.7 (+http://www.exensa.com/crawl)", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("10", "0.000000", "1522255953.890453", "\0\0\0\0\0\0\0\0\0\0ÿÿÌ»F", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (X11; Linux x86_64; GTmetrix https://gtmetrix.com/) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("11", "0.000000", "1522255964.076421", "\0\0\0\0\0\0\0\0\0\0ÿÿÌ»F", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (X11; Linux x86_64; GTmetrix https://gtmetrix.com/) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("12", "0.000000", "1522256033.490454", "\0\0\0\0\0\0\0\0\0\0ÿÿFCk?", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "https://www.google.ca/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("13", "0.000000", "1522256091.086281", "\0\0\0\0\0\0\0\0\0\0ÿÿFCk?", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "https://www.google.ca/", "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("14", "0.000000", "1522256292.486670", "\0\0\0\0\0\0\0\0\0\0ÿÿ‰J\\M", "0", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Barkrowler/0.7 (+http://www.exensa.com/crawl)", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("15", "0.000000", "1522256317.992459", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("16", "0.000000", "1522256459.783082", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("17", "0.000000", "1522256528.896478", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("18", "0.000000", "1522256818.183511", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("19", "0.000000", "1522256832.176062", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("20", "0.000000", "1522256843.590030", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("21", "0.000000", "1522256902.169254", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("22", "0.000000", "1522257095.475523", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("23", "0.000000", "1522257095.192650", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);
INSERT INTO `wp_wfhits` VALUES("24", "0.000000", "1522257194.991555", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1", "200", "0", "0", "0", "http://localhost:8888/TestSICPage/wordpress/", "", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36", "", NULL, NULL);

/* INSERT TABLE DATA: wp_wfleechers */
INSERT INTO `wp_wfleechers` VALUES("25370882", "\0\0\0\0\0\0\0\0\0\0ÿÿ¸B1ç", "1");
INSERT INTO `wp_wfleechers` VALUES("25370883", "\0\0\0\0\0\0\0\0\0\0ÿÿ¸B1ç", "1");
INSERT INTO `wp_wfleechers` VALUES("25370892", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1");
INSERT INTO `wp_wfleechers` VALUES("25370894", "\0\0\0\0\0\0\0\0\0\0ÿÿ{}Gd", "1");
INSERT INTO `wp_wfleechers` VALUES("25370930", "\0\0\0\0\0\0\0\0\0\0ÿÿ‰J\\M", "1");
INSERT INTO `wp_wfleechers` VALUES("25370933", "\0\0\0\0\0\0\0\0\0\0ÿÿÌ»F", "1");
INSERT INTO `wp_wfleechers` VALUES("25370934", "\0\0\0\0\0\0\0\0\0\0ÿÿFCk?", "2");
INSERT INTO `wp_wfleechers` VALUES("25370938", "\0\0\0\0\0\0\0\0\0\0ÿÿ‰J\\M", "1");
INSERT INTO `wp_wfleechers` VALUES("25370938", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1");
INSERT INTO `wp_wfleechers` VALUES("25370941", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1");
INSERT INTO `wp_wfleechers` VALUES("25370942", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1");
INSERT INTO `wp_wfleechers` VALUES("25370947", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "4");
INSERT INTO `wp_wfleechers` VALUES("25370948", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1");
INSERT INTO `wp_wfleechers` VALUES("25370951", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "2");
INSERT INTO `wp_wfleechers` VALUES("25370953", "\0\0\0\0\0\0\0\0\0\0ÿÿØqÐ–", "1");

/* INSERT TABLE DATA: wp_wfnotifications */
INSERT INTO `wp_wfnotifications` VALUES("site-AEAAAAA", "1", "wfplugin_updates", "502", "1522256042", "<a href=\"http://localhost:8888/TestSICPage/wordpress/wp-admin/update-core.php\">Updates are available for 1 plugin and 1 theme</a>", "[]");

/* INSERT TABLE DATA: wp_wfstatus */
INSERT INTO `wp_wfstatus` VALUES("1", "1522252972.592730", "10", "info", "SUM_PREP:Preparing a new scan.");
INSERT INTO `wp_wfstatus` VALUES("2", "1522252972.595493", "1", "info", "Initiating quick scan");
INSERT INTO `wp_wfstatus` VALUES("3", "1522252972.599117", "10", "info", "SUM_START:Scanning for old themes, plugins and core files");
INSERT INTO `wp_wfstatus` VALUES("4", "1522252972.690376", "10", "info", "SUM_ENDOK:Scanning for old themes, plugins and core files");
INSERT INTO `wp_wfstatus` VALUES("5", "1522252972.693548", "1", "info", "-------------------");
INSERT INTO `wp_wfstatus` VALUES("6", "1522252972.694341", "2", "info", "Wordfence used 256 KB of memory for scan. Server peak memory usage was: 42.25 MB");
INSERT INTO `wp_wfstatus` VALUES("7", "1522252972.694627", "1", "info", "Quick Scan Complete. Scanned in less than 1 second.");
INSERT INTO `wp_wfstatus` VALUES("8", "1522252972.695069", "10", "info", "SUM_FINAL:Scan complete. Congratulations, no new problems found.");

/* INSERT TABLE DATA: wp_woocommerce_sessions */
INSERT INTO `wp_woocommerce_sessions` VALUES("1", "3", "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:705:\"a:26:{s:2:\"id\";s:1:\"3\";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:0:\"\";s:7:\"country\";s:2:\"GB\";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:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";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:17:\"dave@urbanweb.net\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}", "1522428145");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2018-06-19 20:50:02*/
/* DUPLICATOR_MYSQLDUMP_EOF */
